From 61a29c352031bac56c8e64898947cdbd13e3d78d Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Wed, 29 Oct 2025 19:20:10 +0100 Subject: [PATCH] Add Unreal Engine SDK --- TormentedSouls2/Assertions.inl | 237296 +++++++++++++++ TormentedSouls2/NameCollisions.inl | 99 + TormentedSouls2/PropertyFixup.hpp | 21 + TormentedSouls2/SDK.hpp | 1712 + .../SDK/AudioExtensions_classes.hpp | 373 + .../SDK/AudioExtensions_structs.hpp | 110 + .../AudioPlatformConfiguration_structs.hpp | 42 + TormentedSouls2/SDK/Basic.cpp | 135 + TormentedSouls2/SDK/Basic.hpp | 1271 + TormentedSouls2/SDK/Chaos_structs.hpp | 613 + ...ClothingSystemRuntimeInterface_classes.hpp | 202 + ...ClothingSystemRuntimeInterface_structs.hpp | 110 + TormentedSouls2/SDK/CoreOnline_structs.hpp | 50 + TormentedSouls2/SDK/CoreUObject_classes.hpp | 1635 + TormentedSouls2/SDK/CoreUObject_functions.cpp | 217 + .../SDK/CoreUObject_parameters.hpp | 27 + TormentedSouls2/SDK/CoreUObject_structs.hpp | 2851 + .../SDK/DeveloperSettings_classes.hpp | 111 + .../SDK/DeveloperSettings_structs.hpp | 37 + TormentedSouls2/SDK/Engine_classes.hpp | 41158 +++ TormentedSouls2/SDK/Engine_functions.cpp | 125555 ++++++++ TormentedSouls2/SDK/Engine_parameters.hpp | 45738 +++ TormentedSouls2/SDK/Engine_structs.hpp | 19598 ++ .../SDK/FieldNotification_classes.hpp | 49 + .../SDK/FieldNotification_structs.hpp | 27 + TormentedSouls2/SDK/ImageCore_classes.hpp | 48 + TormentedSouls2/SDK/ImageCore_structs.hpp | 27 + TormentedSouls2/SDK/InputCore_classes.hpp | 40 + TormentedSouls2/SDK/InputCore_structs.hpp | 97 + TormentedSouls2/SDK/IrisCore_classes.hpp | 1109 + TormentedSouls2/SDK/IrisCore_structs.hpp | 763 + .../SDK/MeshDescription_classes.hpp | 157 + TormentedSouls2/SDK/NetCore_classes.hpp | 94 + TormentedSouls2/SDK/NetCore_structs.hpp | 254 + TormentedSouls2/SDK/PacketHandler_classes.hpp | 63 + TormentedSouls2/SDK/PhysicsCore_classes.hpp | 199 + TormentedSouls2/SDK/PhysicsCore_structs.hpp | 235 + TormentedSouls2/SDK/SlateCore_classes.hpp | 222 + TormentedSouls2/SDK/SlateCore_structs.hpp | 1416 + TormentedSouls2/SDK/Slate_classes.hpp | 319 + TormentedSouls2/SDK/Slate_structs.hpp | 380 + .../SDK/TypedElementFramework_classes.hpp | 351 + .../SDK/TypedElementFramework_structs.hpp | 762 + .../SDK/UniversalObjectLocator_structs.hpp | 78 + TormentedSouls2/UnrealContainers.hpp | 909 + TormentedSouls2/UtfN.hpp | 1613 + 46 files changed, 488173 insertions(+) create mode 100644 TormentedSouls2/Assertions.inl create mode 100644 TormentedSouls2/NameCollisions.inl create mode 100644 TormentedSouls2/PropertyFixup.hpp create mode 100644 TormentedSouls2/SDK.hpp create mode 100644 TormentedSouls2/SDK/AudioExtensions_classes.hpp create mode 100644 TormentedSouls2/SDK/AudioExtensions_structs.hpp create mode 100644 TormentedSouls2/SDK/AudioPlatformConfiguration_structs.hpp create mode 100644 TormentedSouls2/SDK/Basic.cpp create mode 100644 TormentedSouls2/SDK/Basic.hpp create mode 100644 TormentedSouls2/SDK/Chaos_structs.hpp create mode 100644 TormentedSouls2/SDK/ClothingSystemRuntimeInterface_classes.hpp create mode 100644 TormentedSouls2/SDK/ClothingSystemRuntimeInterface_structs.hpp create mode 100644 TormentedSouls2/SDK/CoreOnline_structs.hpp create mode 100644 TormentedSouls2/SDK/CoreUObject_classes.hpp create mode 100644 TormentedSouls2/SDK/CoreUObject_functions.cpp create mode 100644 TormentedSouls2/SDK/CoreUObject_parameters.hpp create mode 100644 TormentedSouls2/SDK/CoreUObject_structs.hpp create mode 100644 TormentedSouls2/SDK/DeveloperSettings_classes.hpp create mode 100644 TormentedSouls2/SDK/DeveloperSettings_structs.hpp create mode 100644 TormentedSouls2/SDK/Engine_classes.hpp create mode 100644 TormentedSouls2/SDK/Engine_functions.cpp create mode 100644 TormentedSouls2/SDK/Engine_parameters.hpp create mode 100644 TormentedSouls2/SDK/Engine_structs.hpp create mode 100644 TormentedSouls2/SDK/FieldNotification_classes.hpp create mode 100644 TormentedSouls2/SDK/FieldNotification_structs.hpp create mode 100644 TormentedSouls2/SDK/ImageCore_classes.hpp create mode 100644 TormentedSouls2/SDK/ImageCore_structs.hpp create mode 100644 TormentedSouls2/SDK/InputCore_classes.hpp create mode 100644 TormentedSouls2/SDK/InputCore_structs.hpp create mode 100644 TormentedSouls2/SDK/IrisCore_classes.hpp create mode 100644 TormentedSouls2/SDK/IrisCore_structs.hpp create mode 100644 TormentedSouls2/SDK/MeshDescription_classes.hpp create mode 100644 TormentedSouls2/SDK/NetCore_classes.hpp create mode 100644 TormentedSouls2/SDK/NetCore_structs.hpp create mode 100644 TormentedSouls2/SDK/PacketHandler_classes.hpp create mode 100644 TormentedSouls2/SDK/PhysicsCore_classes.hpp create mode 100644 TormentedSouls2/SDK/PhysicsCore_structs.hpp create mode 100644 TormentedSouls2/SDK/SlateCore_classes.hpp create mode 100644 TormentedSouls2/SDK/SlateCore_structs.hpp create mode 100644 TormentedSouls2/SDK/Slate_classes.hpp create mode 100644 TormentedSouls2/SDK/Slate_structs.hpp create mode 100644 TormentedSouls2/SDK/TypedElementFramework_classes.hpp create mode 100644 TormentedSouls2/SDK/TypedElementFramework_structs.hpp create mode 100644 TormentedSouls2/SDK/UniversalObjectLocator_structs.hpp create mode 100644 TormentedSouls2/UnrealContainers.hpp create mode 100644 TormentedSouls2/UtfN.hpp diff --git a/TormentedSouls2/Assertions.inl b/TormentedSouls2/Assertions.inl new file mode 100644 index 0000000..bb07b95 --- /dev/null +++ b/TormentedSouls2/Assertions.inl @@ -0,0 +1,237296 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Debug assertions to verify member-offsets and struct-sizes + + +namespace SDK +{ +#define DUMPER7_ASSERTS_FUObjectItem \ +static_assert(alignof(FUObjectItem) == 0x000008, "Wrong alignment on FUObjectItem"); \ +static_assert(sizeof(FUObjectItem) == 0x000018, "Wrong size on FUObjectItem"); \ +static_assert(offsetof(FUObjectItem, Object) == 0x000000, "Member 'FUObjectItem::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TUObjectArray \ +static_assert(alignof(TUObjectArray) == 0x000008, "Wrong alignment on TUObjectArray"); \ +static_assert(sizeof(TUObjectArray) == 0x000020, "Wrong size on TUObjectArray"); \ +static_assert(offsetof(TUObjectArray, Objects) == 0x000000, "Member 'TUObjectArray::Objects' has a wrong offset!"); \ +static_assert(offsetof(TUObjectArray, MaxElements) == 0x000010, "Member 'TUObjectArray::MaxElements' has a wrong offset!"); \ +static_assert(offsetof(TUObjectArray, NumElements) == 0x000014, "Member 'TUObjectArray::NumElements' has a wrong offset!"); \ +static_assert(offsetof(TUObjectArray, MaxChunks) == 0x000018, "Member 'TUObjectArray::MaxChunks' has a wrong offset!"); \ +static_assert(offsetof(TUObjectArray, NumChunks) == 0x00001C, "Member 'TUObjectArray::NumChunks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FName \ +static_assert(alignof(FName) == 0x000004, "Wrong alignment on FName"); \ +static_assert(sizeof(FName) == 0x000008, "Wrong size on FName"); \ +static_assert(offsetof(FName, ComparisonIndex) == 0x000000, "Member 'FName::ComparisonIndex' has a wrong offset!"); \ +static_assert(offsetof(FName, Number) == 0x000004, "Member 'FName::Number' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextData \ +static_assert(alignof(FTextData) == 0x000008, "Wrong alignment on FTextData"); \ +static_assert(sizeof(FTextData) == 0x000038, "Wrong size on FTextData"); \ +static_assert(offsetof(FTextData, TextSource) == 0x000028, "Member 'FTextData::TextSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FText \ +static_assert(alignof(FText) == 0x000008, "Wrong alignment on FText"); \ +static_assert(sizeof(FText) == 0x000018, "Wrong size on FText"); \ +static_assert(offsetof(FText, TextData) == 0x000000, "Member 'FText::TextData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWeakObjectPtr \ +static_assert(alignof(FWeakObjectPtr) == 0x000004, "Wrong alignment on FWeakObjectPtr"); \ +static_assert(sizeof(FWeakObjectPtr) == 0x000008, "Wrong size on FWeakObjectPtr"); \ +static_assert(offsetof(FWeakObjectPtr, ObjectIndex) == 0x000000, "Member 'FWeakObjectPtr::ObjectIndex' has a wrong offset!"); \ +static_assert(offsetof(FWeakObjectPtr, ObjectSerialNumber) == 0x000004, "Member 'FWeakObjectPtr::ObjectSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueObjectGuid \ +static_assert(alignof(FUniqueObjectGuid) == 0x000004, "Wrong alignment on FUniqueObjectGuid"); \ +static_assert(sizeof(FUniqueObjectGuid) == 0x000010, "Wrong size on FUniqueObjectGuid"); \ +static_assert(offsetof(FUniqueObjectGuid, A) == 0x000000, "Member 'FUniqueObjectGuid::A' has a wrong offset!"); \ +static_assert(offsetof(FUniqueObjectGuid, B) == 0x000004, "Member 'FUniqueObjectGuid::B' has a wrong offset!"); \ +static_assert(offsetof(FUniqueObjectGuid, C) == 0x000008, "Member 'FUniqueObjectGuid::C' has a wrong offset!"); \ +static_assert(offsetof(FUniqueObjectGuid, D) == 0x00000C, "Member 'FUniqueObjectGuid::D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTopLevelAssetPath \ +static_assert(alignof(FTopLevelAssetPath) == 0x000004, "Wrong alignment on FTopLevelAssetPath"); \ +static_assert(sizeof(FTopLevelAssetPath) == 0x000010, "Wrong size on FTopLevelAssetPath"); \ +static_assert(offsetof(FTopLevelAssetPath, PackageName) == 0x000000, "Member 'FTopLevelAssetPath::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FTopLevelAssetPath, AssetName) == 0x000008, "Member 'FTopLevelAssetPath::AssetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoftObjectPath \ +static_assert(alignof(FSoftObjectPath) == 0x000008, "Wrong alignment on FSoftObjectPath"); \ +static_assert(sizeof(FSoftObjectPath) == 0x000020, "Wrong size on FSoftObjectPath"); \ +static_assert(offsetof(FSoftObjectPath, AssetPath) == 0x000000, "Member 'FSoftObjectPath::AssetPath' has a wrong offset!"); \ +static_assert(offsetof(FSoftObjectPath, SubPathString) == 0x000010, "Member 'FSoftObjectPath::SubPathString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScriptInterface \ +static_assert(alignof(FScriptInterface) == 0x000008, "Wrong alignment on FScriptInterface"); \ +static_assert(sizeof(FScriptInterface) == 0x000010, "Wrong size on FScriptInterface"); \ +static_assert(offsetof(FScriptInterface, ObjectPointer) == 0x000000, "Member 'FScriptInterface::ObjectPointer' has a wrong offset!"); \ +static_assert(offsetof(FScriptInterface, InterfacePointer) == 0x000008, "Member 'FScriptInterface::InterfacePointer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldPath \ +static_assert(alignof(FFieldPath) == 0x000008, "Wrong alignment on FFieldPath"); \ +static_assert(sizeof(FFieldPath) == 0x000020, "Wrong size on FFieldPath"); \ +static_assert(offsetof(FFieldPath, ResolvedField) == 0x000000, "Member 'FFieldPath::ResolvedField' has a wrong offset!"); \ +static_assert(offsetof(FFieldPath, ResolvedOwner) == 0x000008, "Member 'FFieldPath::ResolvedOwner' has a wrong offset!"); \ +static_assert(offsetof(FFieldPath, Path) == 0x000010, "Member 'FFieldPath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScriptDelegate \ +static_assert(alignof(FScriptDelegate) == 0x000004, "Wrong alignment on FScriptDelegate"); \ +static_assert(sizeof(FScriptDelegate) == 0x000010, "Wrong size on FScriptDelegate"); \ +static_assert(offsetof(FScriptDelegate, Object) == 0x000000, "Member 'FScriptDelegate::Object' has a wrong offset!"); \ +static_assert(offsetof(FScriptDelegate, FunctionName) == 0x000008, "Member 'FScriptDelegate::FunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldClass \ +static_assert(alignof(FFieldClass) == 0x000008, "Wrong alignment on FFieldClass"); \ +static_assert(sizeof(FFieldClass) == 0x000028, "Wrong size on FFieldClass"); \ +static_assert(offsetof(FFieldClass, Name) == 0x000000, "Member 'FFieldClass::Name' has a wrong offset!"); \ +static_assert(offsetof(FFieldClass, Id) == 0x000008, "Member 'FFieldClass::Id' has a wrong offset!"); \ +static_assert(offsetof(FFieldClass, CastFlags) == 0x000010, "Member 'FFieldClass::CastFlags' has a wrong offset!"); \ +static_assert(offsetof(FFieldClass, ClassFlags) == 0x000018, "Member 'FFieldClass::ClassFlags' has a wrong offset!"); \ +static_assert(offsetof(FFieldClass, SuperClass) == 0x000020, "Member 'FFieldClass::SuperClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldVariant \ +static_assert(alignof(FFieldVariant) == 0x000008, "Wrong alignment on FFieldVariant"); \ +static_assert(sizeof(FFieldVariant) == 0x000008, "Wrong size on FFieldVariant"); \ +static_assert(offsetof(FFieldVariant, Container) == 0x000000, "Member 'FFieldVariant::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FField \ +static_assert(alignof(FField) == 0x000008, "Wrong alignment on FField"); \ +static_assert(sizeof(FField) == 0x000030, "Wrong size on FField"); \ +static_assert(offsetof(FField, VTable) == 0x000000, "Member 'FField::VTable' has a wrong offset!"); \ +static_assert(offsetof(FField, ClassPrivate) == 0x000008, "Member 'FField::ClassPrivate' has a wrong offset!"); \ +static_assert(offsetof(FField, Owner) == 0x000010, "Member 'FField::Owner' has a wrong offset!"); \ +static_assert(offsetof(FField, Next) == 0x000018, "Member 'FField::Next' has a wrong offset!"); \ +static_assert(offsetof(FField, Name) == 0x000020, "Member 'FField::Name' has a wrong offset!"); \ +static_assert(offsetof(FField, ObjFlags) == 0x000028, "Member 'FField::ObjFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProperty \ +static_assert(alignof(FProperty) == 0x000008, "Wrong alignment on FProperty"); \ +static_assert(sizeof(FProperty) == 0x000070, "Wrong size on FProperty"); \ +static_assert(offsetof(FProperty, ArrayDim) == 0x000030, "Member 'FProperty::ArrayDim' has a wrong offset!"); \ +static_assert(offsetof(FProperty, ElementSize) == 0x000034, "Member 'FProperty::ElementSize' has a wrong offset!"); \ +static_assert(offsetof(FProperty, PropertyFlags) == 0x000038, "Member 'FProperty::PropertyFlags' has a wrong offset!"); \ +static_assert(offsetof(FProperty, Offset) == 0x000044, "Member 'FProperty::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FByteProperty \ +static_assert(alignof(FByteProperty) == 0x000008, "Wrong alignment on FByteProperty"); \ +static_assert(sizeof(FByteProperty) == 0x000078, "Wrong size on FByteProperty"); \ +static_assert(offsetof(FByteProperty, Enum) == 0x000070, "Member 'FByteProperty::Enum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolProperty \ +static_assert(alignof(FBoolProperty) == 0x000008, "Wrong alignment on FBoolProperty"); \ +static_assert(sizeof(FBoolProperty) == 0x000078, "Wrong size on FBoolProperty"); \ +static_assert(offsetof(FBoolProperty, FieldSize) == 0x000070, "Member 'FBoolProperty::FieldSize' has a wrong offset!"); \ +static_assert(offsetof(FBoolProperty, ByteOffset) == 0x000071, "Member 'FBoolProperty::ByteOffset' has a wrong offset!"); \ +static_assert(offsetof(FBoolProperty, ByteMask) == 0x000072, "Member 'FBoolProperty::ByteMask' has a wrong offset!"); \ +static_assert(offsetof(FBoolProperty, FieldMask) == 0x000073, "Member 'FBoolProperty::FieldMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectPropertyBase \ +static_assert(alignof(FObjectPropertyBase) == 0x000008, "Wrong alignment on FObjectPropertyBase"); \ +static_assert(sizeof(FObjectPropertyBase) == 0x000078, "Wrong size on FObjectPropertyBase"); \ +static_assert(offsetof(FObjectPropertyBase, PropertyClass) == 0x000070, "Member 'FObjectPropertyBase::PropertyClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClassProperty \ +static_assert(alignof(FClassProperty) == 0x000008, "Wrong alignment on FClassProperty"); \ +static_assert(sizeof(FClassProperty) == 0x000080, "Wrong size on FClassProperty"); \ +static_assert(offsetof(FClassProperty, MetaClass) == 0x000078, "Member 'FClassProperty::MetaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructProperty \ +static_assert(alignof(FStructProperty) == 0x000008, "Wrong alignment on FStructProperty"); \ +static_assert(sizeof(FStructProperty) == 0x000078, "Wrong size on FStructProperty"); \ +static_assert(offsetof(FStructProperty, Struct) == 0x000070, "Member 'FStructProperty::Struct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArrayProperty \ +static_assert(alignof(FArrayProperty) == 0x000008, "Wrong alignment on FArrayProperty"); \ +static_assert(sizeof(FArrayProperty) == 0x000080, "Wrong size on FArrayProperty"); \ +static_assert(offsetof(FArrayProperty, InnerProperty) == 0x000078, "Member 'FArrayProperty::InnerProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDelegateProperty \ +static_assert(alignof(FDelegateProperty) == 0x000008, "Wrong alignment on FDelegateProperty"); \ +static_assert(sizeof(FDelegateProperty) == 0x000078, "Wrong size on FDelegateProperty"); \ +static_assert(offsetof(FDelegateProperty, SignatureFunction) == 0x000070, "Member 'FDelegateProperty::SignatureFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMapProperty \ +static_assert(alignof(FMapProperty) == 0x000008, "Wrong alignment on FMapProperty"); \ +static_assert(sizeof(FMapProperty) == 0x000080, "Wrong size on FMapProperty"); \ +static_assert(offsetof(FMapProperty, KeyProperty) == 0x000070, "Member 'FMapProperty::KeyProperty' has a wrong offset!"); \ +static_assert(offsetof(FMapProperty, ValueProperty) == 0x000078, "Member 'FMapProperty::ValueProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetProperty \ +static_assert(alignof(FSetProperty) == 0x000008, "Wrong alignment on FSetProperty"); \ +static_assert(sizeof(FSetProperty) == 0x000078, "Wrong size on FSetProperty"); \ +static_assert(offsetof(FSetProperty, ElementProperty) == 0x000070, "Member 'FSetProperty::ElementProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumProperty \ +static_assert(alignof(FEnumProperty) == 0x000008, "Wrong alignment on FEnumProperty"); \ +static_assert(sizeof(FEnumProperty) == 0x000080, "Wrong size on FEnumProperty"); \ +static_assert(offsetof(FEnumProperty, UnderlayingProperty) == 0x000070, "Member 'FEnumProperty::UnderlayingProperty' has a wrong offset!"); \ +static_assert(offsetof(FEnumProperty, Enum) == 0x000078, "Member 'FEnumProperty::Enum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldPathProperty \ +static_assert(alignof(FFieldPathProperty) == 0x000008, "Wrong alignment on FFieldPathProperty"); \ +static_assert(sizeof(FFieldPathProperty) == 0x000078, "Wrong size on FFieldPathProperty"); \ +static_assert(offsetof(FFieldPathProperty, FieldClass) == 0x000070, "Member 'FFieldPathProperty::FieldClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOptionalProperty \ +static_assert(alignof(FOptionalProperty) == 0x000008, "Wrong alignment on FOptionalProperty"); \ +static_assert(sizeof(FOptionalProperty) == 0x000078, "Wrong size on FOptionalProperty"); \ +static_assert(offsetof(FOptionalProperty, ValueProperty) == 0x000070, "Member 'FOptionalProperty::ValueProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionDoor_Double_ProEscape_C \ +static_assert(alignof(ABP_TransitionDoor_Double_ProEscape_C) == 0x000008, "Wrong alignment on ABP_TransitionDoor_Double_ProEscape_C"); \ +static_assert(sizeof(ABP_TransitionDoor_Double_ProEscape_C) == 0x000420, "Wrong size on ABP_TransitionDoor_Double_ProEscape_C"); \ +static_assert(offsetof(ABP_TransitionDoor_Double_ProEscape_C, LeftDoorMesh) == 0x000418, "Member 'ABP_TransitionDoor_Double_ProEscape_C::LeftDoorMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTopLevelAssetPath \ +static_assert(alignof(FTopLevelAssetPath) == 0x000004, "Wrong alignment on FTopLevelAssetPath"); \ +static_assert(sizeof(FTopLevelAssetPath) == 0x000010, "Wrong size on FTopLevelAssetPath"); \ +static_assert(offsetof(FTopLevelAssetPath, PackageName) == 0x000000, "Member 'FTopLevelAssetPath::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FTopLevelAssetPath, AssetName) == 0x000008, "Member 'FTopLevelAssetPath::AssetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetData \ +static_assert(alignof(FAssetData) == 0x000008, "Wrong alignment on FAssetData"); \ +static_assert(sizeof(FAssetData) == 0x000068, "Wrong size on FAssetData"); \ +static_assert(offsetof(FAssetData, PackageName) == 0x000000, "Member 'FAssetData::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FAssetData, PackagePath) == 0x000008, "Member 'FAssetData::PackagePath' has a wrong offset!"); \ +static_assert(offsetof(FAssetData, AssetName) == 0x000010, "Member 'FAssetData::AssetName' has a wrong offset!"); \ +static_assert(offsetof(FAssetData, AssetClass) == 0x000018, "Member 'FAssetData::AssetClass' has a wrong offset!"); \ +static_assert(offsetof(FAssetData, AssetClassPath) == 0x000020, "Member 'FAssetData::AssetClassPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector \ +static_assert(alignof(FVector) == 0x000008, "Wrong alignment on FVector"); \ +static_assert(sizeof(FVector) == 0x000018, "Wrong size on FVector"); \ +static_assert(offsetof(FVector, X) == 0x000000, "Member 'FVector::X' has a wrong offset!"); \ +static_assert(offsetof(FVector, Y) == 0x000008, "Member 'FVector::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector, Z) == 0x000010, "Member 'FVector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTwoVectors \ +static_assert(alignof(FTwoVectors) == 0x000008, "Wrong alignment on FTwoVectors"); \ +static_assert(sizeof(FTwoVectors) == 0x000030, "Wrong size on FTwoVectors"); \ +static_assert(offsetof(FTwoVectors, v1) == 0x000000, "Member 'FTwoVectors::v1' has a wrong offset!"); \ +static_assert(offsetof(FTwoVectors, v2) == 0x000018, "Member 'FTwoVectors::v2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoftObjectPath \ +static_assert(alignof(FSoftObjectPath) == 0x000008, "Wrong alignment on FSoftObjectPath"); \ +static_assert(sizeof(FSoftObjectPath) == 0x000020, "Wrong size on FSoftObjectPath"); \ +static_assert(offsetof(FSoftObjectPath, AssetPath) == 0x000000, "Member 'FSoftObjectPath::AssetPath' has a wrong offset!"); \ +static_assert(offsetof(FSoftObjectPath, SubPathString) == 0x000010, "Member 'FSoftObjectPath::SubPathString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FARFilter \ +static_assert(alignof(FARFilter) == 0x000008, "Wrong alignment on FARFilter"); \ +static_assert(sizeof(FARFilter) == 0x000150, "Wrong size on FARFilter"); \ +static_assert(offsetof(FARFilter, PackageNames) == 0x000000, "Member 'FARFilter::PackageNames' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, PackagePaths) == 0x000010, "Member 'FARFilter::PackagePaths' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, SoftObjectPaths) == 0x000020, "Member 'FARFilter::SoftObjectPaths' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, ClassNames) == 0x000030, "Member 'FARFilter::ClassNames' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, ClassPaths) == 0x000040, "Member 'FARFilter::ClassPaths' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, RecursiveClassesExclusionSet) == 0x0000A0, "Member 'FARFilter::RecursiveClassesExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, RecursiveClassPathsExclusionSet) == 0x0000F0, "Member 'FARFilter::RecursiveClassPathsExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, bRecursivePaths) == 0x000140, "Member 'FARFilter::bRecursivePaths' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, bRecursiveClasses) == 0x000141, "Member 'FARFilter::bRecursiveClasses' has a wrong offset!"); \ +static_assert(offsetof(FARFilter, bIncludeOnlyOnDiskAssets) == 0x000142, "Member 'FARFilter::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointTwoVectors \ +static_assert(alignof(FInterpCurvePointTwoVectors) == 0x000008, "Wrong alignment on FInterpCurvePointTwoVectors"); \ +static_assert(sizeof(FInterpCurvePointTwoVectors) == 0x0000A0, "Wrong size on FInterpCurvePointTwoVectors"); \ +static_assert(offsetof(FInterpCurvePointTwoVectors, InVal) == 0x000000, "Member 'FInterpCurvePointTwoVectors::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointTwoVectors, OutVal) == 0x000008, "Member 'FInterpCurvePointTwoVectors::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointTwoVectors, ArriveTangent) == 0x000038, "Member 'FInterpCurvePointTwoVectors::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointTwoVectors, LeaveTangent) == 0x000068, "Member 'FInterpCurvePointTwoVectors::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointTwoVectors, InterpMode) == 0x000098, "Member 'FInterpCurvePointTwoVectors::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveTwoVectors \ +static_assert(alignof(FInterpCurveTwoVectors) == 0x000008, "Wrong alignment on FInterpCurveTwoVectors"); \ +static_assert(sizeof(FInterpCurveTwoVectors) == 0x000018, "Wrong size on FInterpCurveTwoVectors"); \ +static_assert(offsetof(FInterpCurveTwoVectors, Points) == 0x000000, "Member 'FInterpCurveTwoVectors::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveTwoVectors, bIsLooped) == 0x000010, "Member 'FInterpCurveTwoVectors::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveTwoVectors, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveTwoVectors::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointVector \ +static_assert(alignof(FInterpCurvePointVector) == 0x000008, "Wrong alignment on FInterpCurvePointVector"); \ +static_assert(sizeof(FInterpCurvePointVector) == 0x000058, "Wrong size on FInterpCurvePointVector"); \ +static_assert(offsetof(FInterpCurvePointVector, InVal) == 0x000000, "Member 'FInterpCurvePointVector::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector, OutVal) == 0x000008, "Member 'FInterpCurvePointVector::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector, ArriveTangent) == 0x000020, "Member 'FInterpCurvePointVector::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector, LeaveTangent) == 0x000038, "Member 'FInterpCurvePointVector::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector, InterpMode) == 0x000050, "Member 'FInterpCurvePointVector::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveVector \ +static_assert(alignof(FInterpCurveVector) == 0x000008, "Wrong alignment on FInterpCurveVector"); \ +static_assert(sizeof(FInterpCurveVector) == 0x000018, "Wrong size on FInterpCurveVector"); \ +static_assert(offsetof(FInterpCurveVector, Points) == 0x000000, "Member 'FInterpCurveVector::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveVector, bIsLooped) == 0x000010, "Member 'FInterpCurveVector::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveVector, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveVector::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector2D \ +static_assert(alignof(FVector2D) == 0x000008, "Wrong alignment on FVector2D"); \ +static_assert(sizeof(FVector2D) == 0x000010, "Wrong size on FVector2D"); \ +static_assert(offsetof(FVector2D, X) == 0x000000, "Member 'FVector2D::X' has a wrong offset!"); \ +static_assert(offsetof(FVector2D, Y) == 0x000008, "Member 'FVector2D::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointVector2D \ +static_assert(alignof(FInterpCurvePointVector2D) == 0x000008, "Wrong alignment on FInterpCurvePointVector2D"); \ +static_assert(sizeof(FInterpCurvePointVector2D) == 0x000040, "Wrong size on FInterpCurvePointVector2D"); \ +static_assert(offsetof(FInterpCurvePointVector2D, InVal) == 0x000000, "Member 'FInterpCurvePointVector2D::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector2D, OutVal) == 0x000008, "Member 'FInterpCurvePointVector2D::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector2D, ArriveTangent) == 0x000018, "Member 'FInterpCurvePointVector2D::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector2D, LeaveTangent) == 0x000028, "Member 'FInterpCurvePointVector2D::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointVector2D, InterpMode) == 0x000038, "Member 'FInterpCurvePointVector2D::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveVector2D \ +static_assert(alignof(FInterpCurveVector2D) == 0x000008, "Wrong alignment on FInterpCurveVector2D"); \ +static_assert(sizeof(FInterpCurveVector2D) == 0x000018, "Wrong size on FInterpCurveVector2D"); \ +static_assert(offsetof(FInterpCurveVector2D, Points) == 0x000000, "Member 'FInterpCurveVector2D::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveVector2D, bIsLooped) == 0x000010, "Member 'FInterpCurveVector2D::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveVector2D, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveVector2D::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetBundleEntry \ +static_assert(alignof(FAssetBundleEntry) == 0x000008, "Wrong alignment on FAssetBundleEntry"); \ +static_assert(sizeof(FAssetBundleEntry) == 0x000018, "Wrong size on FAssetBundleEntry"); \ +static_assert(offsetof(FAssetBundleEntry, BundleName) == 0x000000, "Member 'FAssetBundleEntry::BundleName' has a wrong offset!"); \ +static_assert(offsetof(FAssetBundleEntry, AssetPaths) == 0x000008, "Member 'FAssetBundleEntry::AssetPaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetBundleData \ +static_assert(alignof(FAssetBundleData) == 0x000008, "Wrong alignment on FAssetBundleData"); \ +static_assert(sizeof(FAssetBundleData) == 0x000010, "Wrong size on FAssetBundleData"); \ +static_assert(offsetof(FAssetBundleData, Bundles) == 0x000000, "Member 'FAssetBundleData::Bundles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGuid \ +static_assert(alignof(FGuid) == 0x000004, "Wrong alignment on FGuid"); \ +static_assert(sizeof(FGuid) == 0x000010, "Wrong size on FGuid"); \ +static_assert(offsetof(FGuid, A) == 0x000000, "Member 'FGuid::A' has a wrong offset!"); \ +static_assert(offsetof(FGuid, B) == 0x000004, "Member 'FGuid::B' has a wrong offset!"); \ +static_assert(offsetof(FGuid, C) == 0x000008, "Member 'FGuid::C' has a wrong offset!"); \ +static_assert(offsetof(FGuid, D) == 0x00000C, "Member 'FGuid::D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAutomationEvent \ +static_assert(alignof(FAutomationEvent) == 0x000008, "Wrong alignment on FAutomationEvent"); \ +static_assert(sizeof(FAutomationEvent) == 0x000038, "Wrong size on FAutomationEvent"); \ +static_assert(offsetof(FAutomationEvent, Type) == 0x000000, "Member 'FAutomationEvent::Type' has a wrong offset!"); \ +static_assert(offsetof(FAutomationEvent, Message) == 0x000008, "Member 'FAutomationEvent::Message' has a wrong offset!"); \ +static_assert(offsetof(FAutomationEvent, Context) == 0x000018, "Member 'FAutomationEvent::Context' has a wrong offset!"); \ +static_assert(offsetof(FAutomationEvent, Artifact) == 0x000028, "Member 'FAutomationEvent::Artifact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDateTime \ +static_assert(alignof(FDateTime) == 0x000008, "Wrong alignment on FDateTime"); \ +static_assert(sizeof(FDateTime) == 0x000008, "Wrong size on FDateTime"); \ + +#define DUMPER7_ASSERTS_FAutomationExecutionEntry \ +static_assert(alignof(FAutomationExecutionEntry) == 0x000008, "Wrong alignment on FAutomationExecutionEntry"); \ +static_assert(sizeof(FAutomationExecutionEntry) == 0x000058, "Wrong size on FAutomationExecutionEntry"); \ +static_assert(offsetof(FAutomationExecutionEntry, Event) == 0x000000, "Member 'FAutomationExecutionEntry::Event' has a wrong offset!"); \ +static_assert(offsetof(FAutomationExecutionEntry, Filename) == 0x000038, "Member 'FAutomationExecutionEntry::Filename' has a wrong offset!"); \ +static_assert(offsetof(FAutomationExecutionEntry, LineNumber) == 0x000048, "Member 'FAutomationExecutionEntry::LineNumber' has a wrong offset!"); \ +static_assert(offsetof(FAutomationExecutionEntry, Timestamp) == 0x000050, "Member 'FAutomationExecutionEntry::Timestamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBox \ +static_assert(alignof(FBox) == 0x000008, "Wrong alignment on FBox"); \ +static_assert(sizeof(FBox) == 0x000038, "Wrong size on FBox"); \ +static_assert(offsetof(FBox, Min) == 0x000000, "Member 'FBox::Min' has a wrong offset!"); \ +static_assert(offsetof(FBox, Max) == 0x000018, "Member 'FBox::Max' has a wrong offset!"); \ +static_assert(offsetof(FBox, IsValid) == 0x000030, "Member 'FBox::IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBox2D \ +static_assert(alignof(FBox2D) == 0x000008, "Wrong alignment on FBox2D"); \ +static_assert(sizeof(FBox2D) == 0x000028, "Wrong size on FBox2D"); \ +static_assert(offsetof(FBox2D, Min) == 0x000000, "Member 'FBox2D::Min' has a wrong offset!"); \ +static_assert(offsetof(FBox2D, Max) == 0x000010, "Member 'FBox2D::Max' has a wrong offset!"); \ +static_assert(offsetof(FBox2D, bIsValid) == 0x000020, "Member 'FBox2D::bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector2f \ +static_assert(alignof(FVector2f) == 0x000004, "Wrong alignment on FVector2f"); \ +static_assert(sizeof(FVector2f) == 0x000008, "Wrong size on FVector2f"); \ +static_assert(offsetof(FVector2f, X) == 0x000000, "Member 'FVector2f::X' has a wrong offset!"); \ +static_assert(offsetof(FVector2f, Y) == 0x000004, "Member 'FVector2f::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBox2f \ +static_assert(alignof(FBox2f) == 0x000004, "Wrong alignment on FBox2f"); \ +static_assert(sizeof(FBox2f) == 0x000014, "Wrong size on FBox2f"); \ +static_assert(offsetof(FBox2f, Min) == 0x000000, "Member 'FBox2f::Min' has a wrong offset!"); \ +static_assert(offsetof(FBox2f, Max) == 0x000008, "Member 'FBox2f::Max' has a wrong offset!"); \ +static_assert(offsetof(FBox2f, bIsValid) == 0x000010, "Member 'FBox2f::bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector3d \ +static_assert(alignof(FVector3d) == 0x000008, "Wrong alignment on FVector3d"); \ +static_assert(sizeof(FVector3d) == 0x000018, "Wrong size on FVector3d"); \ +static_assert(offsetof(FVector3d, X) == 0x000000, "Member 'FVector3d::X' has a wrong offset!"); \ +static_assert(offsetof(FVector3d, Y) == 0x000008, "Member 'FVector3d::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector3d, Z) == 0x000010, "Member 'FVector3d::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBox3d \ +static_assert(alignof(FBox3d) == 0x000008, "Wrong alignment on FBox3d"); \ +static_assert(sizeof(FBox3d) == 0x000038, "Wrong size on FBox3d"); \ +static_assert(offsetof(FBox3d, Min) == 0x000000, "Member 'FBox3d::Min' has a wrong offset!"); \ +static_assert(offsetof(FBox3d, Max) == 0x000018, "Member 'FBox3d::Max' has a wrong offset!"); \ +static_assert(offsetof(FBox3d, IsValid) == 0x000030, "Member 'FBox3d::IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector3f \ +static_assert(alignof(FVector3f) == 0x000004, "Wrong alignment on FVector3f"); \ +static_assert(sizeof(FVector3f) == 0x00000C, "Wrong size on FVector3f"); \ +static_assert(offsetof(FVector3f, X) == 0x000000, "Member 'FVector3f::X' has a wrong offset!"); \ +static_assert(offsetof(FVector3f, Y) == 0x000004, "Member 'FVector3f::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector3f, Z) == 0x000008, "Member 'FVector3f::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBox3f \ +static_assert(alignof(FBox3f) == 0x000004, "Wrong alignment on FBox3f"); \ +static_assert(sizeof(FBox3f) == 0x00001C, "Wrong size on FBox3f"); \ +static_assert(offsetof(FBox3f, Min) == 0x000000, "Member 'FBox3f::Min' has a wrong offset!"); \ +static_assert(offsetof(FBox3f, Max) == 0x00000C, "Member 'FBox3f::Max' has a wrong offset!"); \ +static_assert(offsetof(FBox3f, IsValid) == 0x000018, "Member 'FBox3f::IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoxSphereBounds \ +static_assert(alignof(FBoxSphereBounds) == 0x000008, "Wrong alignment on FBoxSphereBounds"); \ +static_assert(sizeof(FBoxSphereBounds) == 0x000038, "Wrong size on FBoxSphereBounds"); \ +static_assert(offsetof(FBoxSphereBounds, Origin) == 0x000000, "Member 'FBoxSphereBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds, BoxExtent) == 0x000018, "Member 'FBoxSphereBounds::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds, SphereRadius) == 0x000030, "Member 'FBoxSphereBounds::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoxSphereBounds3d \ +static_assert(alignof(FBoxSphereBounds3d) == 0x000008, "Wrong alignment on FBoxSphereBounds3d"); \ +static_assert(sizeof(FBoxSphereBounds3d) == 0x000038, "Wrong size on FBoxSphereBounds3d"); \ +static_assert(offsetof(FBoxSphereBounds3d, Origin) == 0x000000, "Member 'FBoxSphereBounds3d::Origin' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds3d, BoxExtent) == 0x000018, "Member 'FBoxSphereBounds3d::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds3d, SphereRadius) == 0x000030, "Member 'FBoxSphereBounds3d::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoxSphereBounds3f \ +static_assert(alignof(FBoxSphereBounds3f) == 0x000004, "Wrong alignment on FBoxSphereBounds3f"); \ +static_assert(sizeof(FBoxSphereBounds3f) == 0x00001C, "Wrong size on FBoxSphereBounds3f"); \ +static_assert(offsetof(FBoxSphereBounds3f, Origin) == 0x000000, "Member 'FBoxSphereBounds3f::Origin' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds3f, BoxExtent) == 0x00000C, "Member 'FBoxSphereBounds3f::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(FBoxSphereBounds3f, SphereRadius) == 0x000018, "Member 'FBoxSphereBounds3f::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FColor \ +static_assert(alignof(FColor) == 0x000004, "Wrong alignment on FColor"); \ +static_assert(sizeof(FColor) == 0x000004, "Wrong size on FColor"); \ +static_assert(offsetof(FColor, B) == 0x000000, "Member 'FColor::B' has a wrong offset!"); \ +static_assert(offsetof(FColor, G) == 0x000001, "Member 'FColor::G' has a wrong offset!"); \ +static_assert(offsetof(FColor, R) == 0x000002, "Member 'FColor::R' has a wrong offset!"); \ +static_assert(offsetof(FColor, A) == 0x000003, "Member 'FColor::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDirectoryPath \ +static_assert(alignof(FDirectoryPath) == 0x000008, "Wrong alignment on FDirectoryPath"); \ +static_assert(sizeof(FDirectoryPath) == 0x000010, "Wrong size on FDirectoryPath"); \ +static_assert(offsetof(FDirectoryPath, Path) == 0x000000, "Member 'FDirectoryPath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDoubleRangeBound \ +static_assert(alignof(FDoubleRangeBound) == 0x000008, "Wrong alignment on FDoubleRangeBound"); \ +static_assert(sizeof(FDoubleRangeBound) == 0x000010, "Wrong size on FDoubleRangeBound"); \ +static_assert(offsetof(FDoubleRangeBound, Type) == 0x000000, "Member 'FDoubleRangeBound::Type' has a wrong offset!"); \ +static_assert(offsetof(FDoubleRangeBound, Value) == 0x000008, "Member 'FDoubleRangeBound::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDoubleRange \ +static_assert(alignof(FDoubleRange) == 0x000008, "Wrong alignment on FDoubleRange"); \ +static_assert(sizeof(FDoubleRange) == 0x000020, "Wrong size on FDoubleRange"); \ +static_assert(offsetof(FDoubleRange, LowerBound) == 0x000000, "Member 'FDoubleRange::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FDoubleRange, UpperBound) == 0x000010, "Member 'FDoubleRange::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFallbackStruct \ +static_assert(alignof(FFallbackStruct) == 0x000001, "Wrong alignment on FFallbackStruct"); \ +static_assert(sizeof(FFallbackStruct) == 0x000001, "Wrong size on FFallbackStruct"); \ + +#define DUMPER7_ASSERTS_FFilePath \ +static_assert(alignof(FFilePath) == 0x000008, "Wrong alignment on FFilePath"); \ +static_assert(sizeof(FFilePath) == 0x000010, "Wrong size on FFilePath"); \ +static_assert(offsetof(FFilePath, FilePath) == 0x000000, "Member 'FFilePath::FilePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatInterval \ +static_assert(alignof(FFloatInterval) == 0x000004, "Wrong alignment on FFloatInterval"); \ +static_assert(sizeof(FFloatInterval) == 0x000008, "Wrong size on FFloatInterval"); \ +static_assert(offsetof(FFloatInterval, Min) == 0x000000, "Member 'FFloatInterval::Min' has a wrong offset!"); \ +static_assert(offsetof(FFloatInterval, Max) == 0x000004, "Member 'FFloatInterval::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatRangeBound \ +static_assert(alignof(FFloatRangeBound) == 0x000004, "Wrong alignment on FFloatRangeBound"); \ +static_assert(sizeof(FFloatRangeBound) == 0x000008, "Wrong size on FFloatRangeBound"); \ +static_assert(offsetof(FFloatRangeBound, Type) == 0x000000, "Member 'FFloatRangeBound::Type' has a wrong offset!"); \ +static_assert(offsetof(FFloatRangeBound, Value) == 0x000004, "Member 'FFloatRangeBound::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatRange \ +static_assert(alignof(FFloatRange) == 0x000004, "Wrong alignment on FFloatRange"); \ +static_assert(sizeof(FFloatRange) == 0x000010, "Wrong size on FFloatRange"); \ +static_assert(offsetof(FFloatRange, LowerBound) == 0x000000, "Member 'FFloatRange::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FFloatRange, UpperBound) == 0x000008, "Member 'FFloatRange::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameNumber \ +static_assert(alignof(FFrameNumber) == 0x000004, "Wrong alignment on FFrameNumber"); \ +static_assert(sizeof(FFrameNumber) == 0x000004, "Wrong size on FFrameNumber"); \ +static_assert(offsetof(FFrameNumber, Value) == 0x000000, "Member 'FFrameNumber::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameNumberRangeBound \ +static_assert(alignof(FFrameNumberRangeBound) == 0x000004, "Wrong alignment on FFrameNumberRangeBound"); \ +static_assert(sizeof(FFrameNumberRangeBound) == 0x000008, "Wrong size on FFrameNumberRangeBound"); \ +static_assert(offsetof(FFrameNumberRangeBound, Type) == 0x000000, "Member 'FFrameNumberRangeBound::Type' has a wrong offset!"); \ +static_assert(offsetof(FFrameNumberRangeBound, Value) == 0x000004, "Member 'FFrameNumberRangeBound::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameNumberRange \ +static_assert(alignof(FFrameNumberRange) == 0x000004, "Wrong alignment on FFrameNumberRange"); \ +static_assert(sizeof(FFrameNumberRange) == 0x000010, "Wrong size on FFrameNumberRange"); \ +static_assert(offsetof(FFrameNumberRange, LowerBound) == 0x000000, "Member 'FFrameNumberRange::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FFrameNumberRange, UpperBound) == 0x000008, "Member 'FFrameNumberRange::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameRate \ +static_assert(alignof(FFrameRate) == 0x000004, "Wrong alignment on FFrameRate"); \ +static_assert(sizeof(FFrameRate) == 0x000008, "Wrong size on FFrameRate"); \ +static_assert(offsetof(FFrameRate, Numerator) == 0x000000, "Member 'FFrameRate::Numerator' has a wrong offset!"); \ +static_assert(offsetof(FFrameRate, Denominator) == 0x000004, "Member 'FFrameRate::Denominator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameTime \ +static_assert(alignof(FFrameTime) == 0x000004, "Wrong alignment on FFrameTime"); \ +static_assert(sizeof(FFrameTime) == 0x000008, "Wrong size on FFrameTime"); \ +static_assert(offsetof(FFrameTime, FrameNumber) == 0x000000, "Member 'FFrameTime::FrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FFrameTime, SubFrame) == 0x000004, "Member 'FFrameTime::SubFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputDeviceId \ +static_assert(alignof(FInputDeviceId) == 0x000004, "Wrong alignment on FInputDeviceId"); \ +static_assert(sizeof(FInputDeviceId) == 0x000004, "Wrong size on FInputDeviceId"); \ +static_assert(offsetof(FInputDeviceId, InternalId) == 0x000000, "Member 'FInputDeviceId::InternalId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Interval \ +static_assert(alignof(FInt32Interval) == 0x000004, "Wrong alignment on FInt32Interval"); \ +static_assert(sizeof(FInt32Interval) == 0x000008, "Wrong size on FInt32Interval"); \ +static_assert(offsetof(FInt32Interval, Min) == 0x000000, "Member 'FInt32Interval::Min' has a wrong offset!"); \ +static_assert(offsetof(FInt32Interval, Max) == 0x000004, "Member 'FInt32Interval::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Point \ +static_assert(alignof(FInt32Point) == 0x000004, "Wrong alignment on FInt32Point"); \ +static_assert(sizeof(FInt32Point) == 0x000008, "Wrong size on FInt32Point"); \ +static_assert(offsetof(FInt32Point, X) == 0x000000, "Member 'FInt32Point::X' has a wrong offset!"); \ +static_assert(offsetof(FInt32Point, Y) == 0x000004, "Member 'FInt32Point::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32RangeBound \ +static_assert(alignof(FInt32RangeBound) == 0x000004, "Wrong alignment on FInt32RangeBound"); \ +static_assert(sizeof(FInt32RangeBound) == 0x000008, "Wrong size on FInt32RangeBound"); \ +static_assert(offsetof(FInt32RangeBound, Type) == 0x000000, "Member 'FInt32RangeBound::Type' has a wrong offset!"); \ +static_assert(offsetof(FInt32RangeBound, Value) == 0x000004, "Member 'FInt32RangeBound::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Range \ +static_assert(alignof(FInt32Range) == 0x000004, "Wrong alignment on FInt32Range"); \ +static_assert(sizeof(FInt32Range) == 0x000010, "Wrong size on FInt32Range"); \ +static_assert(offsetof(FInt32Range, LowerBound) == 0x000000, "Member 'FInt32Range::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FInt32Range, UpperBound) == 0x000008, "Member 'FInt32Range::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Vector \ +static_assert(alignof(FInt32Vector) == 0x000004, "Wrong alignment on FInt32Vector"); \ +static_assert(sizeof(FInt32Vector) == 0x00000C, "Wrong size on FInt32Vector"); \ +static_assert(offsetof(FInt32Vector, X) == 0x000000, "Member 'FInt32Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector, Y) == 0x000004, "Member 'FInt32Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector, Z) == 0x000008, "Member 'FInt32Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Vector2 \ +static_assert(alignof(FInt32Vector2) == 0x000004, "Wrong alignment on FInt32Vector2"); \ +static_assert(sizeof(FInt32Vector2) == 0x000008, "Wrong size on FInt32Vector2"); \ +static_assert(offsetof(FInt32Vector2, X) == 0x000000, "Member 'FInt32Vector2::X' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector2, Y) == 0x000004, "Member 'FInt32Vector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32Vector4 \ +static_assert(alignof(FInt32Vector4) == 0x000004, "Wrong alignment on FInt32Vector4"); \ +static_assert(sizeof(FInt32Vector4) == 0x000010, "Wrong size on FInt32Vector4"); \ +static_assert(offsetof(FInt32Vector4, X) == 0x000000, "Member 'FInt32Vector4::X' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector4, Y) == 0x000004, "Member 'FInt32Vector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector4, Z) == 0x000008, "Member 'FInt32Vector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FInt32Vector4, W) == 0x00000C, "Member 'FInt32Vector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt64Point \ +static_assert(alignof(FInt64Point) == 0x000008, "Wrong alignment on FInt64Point"); \ +static_assert(sizeof(FInt64Point) == 0x000010, "Wrong size on FInt64Point"); \ +static_assert(offsetof(FInt64Point, X) == 0x000000, "Member 'FInt64Point::X' has a wrong offset!"); \ +static_assert(offsetof(FInt64Point, Y) == 0x000008, "Member 'FInt64Point::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt64Vector \ +static_assert(alignof(FInt64Vector) == 0x000008, "Wrong alignment on FInt64Vector"); \ +static_assert(sizeof(FInt64Vector) == 0x000018, "Wrong size on FInt64Vector"); \ +static_assert(offsetof(FInt64Vector, X) == 0x000000, "Member 'FInt64Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector, Y) == 0x000008, "Member 'FInt64Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector, Z) == 0x000010, "Member 'FInt64Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt64Vector2 \ +static_assert(alignof(FInt64Vector2) == 0x000008, "Wrong alignment on FInt64Vector2"); \ +static_assert(sizeof(FInt64Vector2) == 0x000010, "Wrong size on FInt64Vector2"); \ +static_assert(offsetof(FInt64Vector2, X) == 0x000000, "Member 'FInt64Vector2::X' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector2, Y) == 0x000008, "Member 'FInt64Vector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt64Vector4 \ +static_assert(alignof(FInt64Vector4) == 0x000008, "Wrong alignment on FInt64Vector4"); \ +static_assert(sizeof(FInt64Vector4) == 0x000020, "Wrong size on FInt64Vector4"); \ +static_assert(offsetof(FInt64Vector4, X) == 0x000000, "Member 'FInt64Vector4::X' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector4, Y) == 0x000008, "Member 'FInt64Vector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector4, Z) == 0x000010, "Member 'FInt64Vector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FInt64Vector4, W) == 0x000018, "Member 'FInt64Vector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointFloat \ +static_assert(alignof(FInterpCurvePointFloat) == 0x000004, "Wrong alignment on FInterpCurvePointFloat"); \ +static_assert(sizeof(FInterpCurvePointFloat) == 0x000014, "Wrong size on FInterpCurvePointFloat"); \ +static_assert(offsetof(FInterpCurvePointFloat, InVal) == 0x000000, "Member 'FInterpCurvePointFloat::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointFloat, OutVal) == 0x000004, "Member 'FInterpCurvePointFloat::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointFloat, ArriveTangent) == 0x000008, "Member 'FInterpCurvePointFloat::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointFloat, LeaveTangent) == 0x00000C, "Member 'FInterpCurvePointFloat::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointFloat, InterpMode) == 0x000010, "Member 'FInterpCurvePointFloat::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveFloat \ +static_assert(alignof(FInterpCurveFloat) == 0x000008, "Wrong alignment on FInterpCurveFloat"); \ +static_assert(sizeof(FInterpCurveFloat) == 0x000018, "Wrong size on FInterpCurveFloat"); \ +static_assert(offsetof(FInterpCurveFloat, Points) == 0x000000, "Member 'FInterpCurveFloat::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveFloat, bIsLooped) == 0x000010, "Member 'FInterpCurveFloat::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveFloat, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveFloat::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLinearColor \ +static_assert(alignof(FLinearColor) == 0x000004, "Wrong alignment on FLinearColor"); \ +static_assert(sizeof(FLinearColor) == 0x000010, "Wrong size on FLinearColor"); \ +static_assert(offsetof(FLinearColor, R) == 0x000000, "Member 'FLinearColor::R' has a wrong offset!"); \ +static_assert(offsetof(FLinearColor, G) == 0x000004, "Member 'FLinearColor::G' has a wrong offset!"); \ +static_assert(offsetof(FLinearColor, B) == 0x000008, "Member 'FLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(FLinearColor, A) == 0x00000C, "Member 'FLinearColor::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointLinearColor \ +static_assert(alignof(FInterpCurvePointLinearColor) == 0x000004, "Wrong alignment on FInterpCurvePointLinearColor"); \ +static_assert(sizeof(FInterpCurvePointLinearColor) == 0x000038, "Wrong size on FInterpCurvePointLinearColor"); \ +static_assert(offsetof(FInterpCurvePointLinearColor, InVal) == 0x000000, "Member 'FInterpCurvePointLinearColor::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointLinearColor, OutVal) == 0x000004, "Member 'FInterpCurvePointLinearColor::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointLinearColor, ArriveTangent) == 0x000014, "Member 'FInterpCurvePointLinearColor::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointLinearColor, LeaveTangent) == 0x000024, "Member 'FInterpCurvePointLinearColor::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointLinearColor, InterpMode) == 0x000034, "Member 'FInterpCurvePointLinearColor::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveLinearColor \ +static_assert(alignof(FInterpCurveLinearColor) == 0x000008, "Wrong alignment on FInterpCurveLinearColor"); \ +static_assert(sizeof(FInterpCurveLinearColor) == 0x000018, "Wrong size on FInterpCurveLinearColor"); \ +static_assert(offsetof(FInterpCurveLinearColor, Points) == 0x000000, "Member 'FInterpCurveLinearColor::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveLinearColor, bIsLooped) == 0x000010, "Member 'FInterpCurveLinearColor::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveLinearColor, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveLinearColor::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuat \ +static_assert(alignof(FQuat) == 0x000010, "Wrong alignment on FQuat"); \ +static_assert(sizeof(FQuat) == 0x000020, "Wrong size on FQuat"); \ +static_assert(offsetof(FQuat, X) == 0x000000, "Member 'FQuat::X' has a wrong offset!"); \ +static_assert(offsetof(FQuat, Y) == 0x000008, "Member 'FQuat::Y' has a wrong offset!"); \ +static_assert(offsetof(FQuat, Z) == 0x000010, "Member 'FQuat::Z' has a wrong offset!"); \ +static_assert(offsetof(FQuat, W) == 0x000018, "Member 'FQuat::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurvePointQuat \ +static_assert(alignof(FInterpCurvePointQuat) == 0x000010, "Wrong alignment on FInterpCurvePointQuat"); \ +static_assert(sizeof(FInterpCurvePointQuat) == 0x000080, "Wrong size on FInterpCurvePointQuat"); \ +static_assert(offsetof(FInterpCurvePointQuat, InVal) == 0x000000, "Member 'FInterpCurvePointQuat::InVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointQuat, OutVal) == 0x000010, "Member 'FInterpCurvePointQuat::OutVal' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointQuat, ArriveTangent) == 0x000030, "Member 'FInterpCurvePointQuat::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointQuat, LeaveTangent) == 0x000050, "Member 'FInterpCurvePointQuat::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurvePointQuat, InterpMode) == 0x000070, "Member 'FInterpCurvePointQuat::InterpMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpCurveQuat \ +static_assert(alignof(FInterpCurveQuat) == 0x000008, "Wrong alignment on FInterpCurveQuat"); \ +static_assert(sizeof(FInterpCurveQuat) == 0x000018, "Wrong size on FInterpCurveQuat"); \ +static_assert(offsetof(FInterpCurveQuat, Points) == 0x000000, "Member 'FInterpCurveQuat::Points' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveQuat, bIsLooped) == 0x000010, "Member 'FInterpCurveQuat::bIsLooped' has a wrong offset!"); \ +static_assert(offsetof(FInterpCurveQuat, LoopKeyOffset) == 0x000014, "Member 'FInterpCurveQuat::LoopKeyOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntPoint \ +static_assert(alignof(FIntPoint) == 0x000004, "Wrong alignment on FIntPoint"); \ +static_assert(sizeof(FIntPoint) == 0x000008, "Wrong size on FIntPoint"); \ +static_assert(offsetof(FIntPoint, X) == 0x000000, "Member 'FIntPoint::X' has a wrong offset!"); \ +static_assert(offsetof(FIntPoint, Y) == 0x000004, "Member 'FIntPoint::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntVector \ +static_assert(alignof(FIntVector) == 0x000004, "Wrong alignment on FIntVector"); \ +static_assert(sizeof(FIntVector) == 0x00000C, "Wrong size on FIntVector"); \ +static_assert(offsetof(FIntVector, X) == 0x000000, "Member 'FIntVector::X' has a wrong offset!"); \ +static_assert(offsetof(FIntVector, Y) == 0x000004, "Member 'FIntVector::Y' has a wrong offset!"); \ +static_assert(offsetof(FIntVector, Z) == 0x000008, "Member 'FIntVector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntVector2 \ +static_assert(alignof(FIntVector2) == 0x000004, "Wrong alignment on FIntVector2"); \ +static_assert(sizeof(FIntVector2) == 0x000008, "Wrong size on FIntVector2"); \ +static_assert(offsetof(FIntVector2, X) == 0x000000, "Member 'FIntVector2::X' has a wrong offset!"); \ +static_assert(offsetof(FIntVector2, Y) == 0x000004, "Member 'FIntVector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntVector4 \ +static_assert(alignof(FIntVector4) == 0x000004, "Wrong alignment on FIntVector4"); \ +static_assert(sizeof(FIntVector4) == 0x000010, "Wrong size on FIntVector4"); \ +static_assert(offsetof(FIntVector4, X) == 0x000000, "Member 'FIntVector4::X' has a wrong offset!"); \ +static_assert(offsetof(FIntVector4, Y) == 0x000004, "Member 'FIntVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FIntVector4, Z) == 0x000008, "Member 'FIntVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FIntVector4, W) == 0x00000C, "Member 'FIntVector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlane \ +static_assert(alignof(FPlane) == 0x000010, "Wrong alignment on FPlane"); \ +static_assert(sizeof(FPlane) == 0x000020, "Wrong size on FPlane"); \ +static_assert(offsetof(FPlane, W) == 0x000018, "Member 'FPlane::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMatrix \ +static_assert(alignof(FMatrix) == 0x000010, "Wrong alignment on FMatrix"); \ +static_assert(sizeof(FMatrix) == 0x000080, "Wrong size on FMatrix"); \ +static_assert(offsetof(FMatrix, XPlane) == 0x000000, "Member 'FMatrix::XPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix, YPlane) == 0x000020, "Member 'FMatrix::YPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix, ZPlane) == 0x000040, "Member 'FMatrix::ZPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix, WPlane) == 0x000060, "Member 'FMatrix::WPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlane4d \ +static_assert(alignof(FPlane4d) == 0x000010, "Wrong alignment on FPlane4d"); \ +static_assert(sizeof(FPlane4d) == 0x000020, "Wrong size on FPlane4d"); \ +static_assert(offsetof(FPlane4d, W) == 0x000018, "Member 'FPlane4d::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMatrix44d \ +static_assert(alignof(FMatrix44d) == 0x000010, "Wrong alignment on FMatrix44d"); \ +static_assert(sizeof(FMatrix44d) == 0x000080, "Wrong size on FMatrix44d"); \ +static_assert(offsetof(FMatrix44d, XPlane) == 0x000000, "Member 'FMatrix44d::XPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44d, YPlane) == 0x000020, "Member 'FMatrix44d::YPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44d, ZPlane) == 0x000040, "Member 'FMatrix44d::ZPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44d, WPlane) == 0x000060, "Member 'FMatrix44d::WPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlane4f \ +static_assert(alignof(FPlane4f) == 0x000010, "Wrong alignment on FPlane4f"); \ +static_assert(sizeof(FPlane4f) == 0x000010, "Wrong size on FPlane4f"); \ +static_assert(offsetof(FPlane4f, W) == 0x00000C, "Member 'FPlane4f::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMatrix44f \ +static_assert(alignof(FMatrix44f) == 0x000010, "Wrong alignment on FMatrix44f"); \ +static_assert(sizeof(FMatrix44f) == 0x000040, "Wrong size on FMatrix44f"); \ +static_assert(offsetof(FMatrix44f, XPlane) == 0x000000, "Member 'FMatrix44f::XPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44f, YPlane) == 0x000010, "Member 'FMatrix44f::YPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44f, ZPlane) == 0x000020, "Member 'FMatrix44f::ZPlane' has a wrong offset!"); \ +static_assert(offsetof(FMatrix44f, WPlane) == 0x000030, "Member 'FMatrix44f::WPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOrientedBox \ +static_assert(alignof(FOrientedBox) == 0x000008, "Wrong alignment on FOrientedBox"); \ +static_assert(sizeof(FOrientedBox) == 0x000078, "Wrong size on FOrientedBox"); \ +static_assert(offsetof(FOrientedBox, Center) == 0x000000, "Member 'FOrientedBox::Center' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, AxisX) == 0x000018, "Member 'FOrientedBox::AxisX' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, AxisY) == 0x000030, "Member 'FOrientedBox::AxisY' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, AxisZ) == 0x000048, "Member 'FOrientedBox::AxisZ' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, ExtentX) == 0x000060, "Member 'FOrientedBox::ExtentX' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, ExtentY) == 0x000068, "Member 'FOrientedBox::ExtentY' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBox, ExtentZ) == 0x000070, "Member 'FOrientedBox::ExtentZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPackedNormal \ +static_assert(alignof(FPackedNormal) == 0x000001, "Wrong alignment on FPackedNormal"); \ +static_assert(sizeof(FPackedNormal) == 0x000004, "Wrong size on FPackedNormal"); \ +static_assert(offsetof(FPackedNormal, X) == 0x000000, "Member 'FPackedNormal::X' has a wrong offset!"); \ +static_assert(offsetof(FPackedNormal, Y) == 0x000001, "Member 'FPackedNormal::Y' has a wrong offset!"); \ +static_assert(offsetof(FPackedNormal, Z) == 0x000002, "Member 'FPackedNormal::Z' has a wrong offset!"); \ +static_assert(offsetof(FPackedNormal, W) == 0x000003, "Member 'FPackedNormal::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPackedRGB10A2N \ +static_assert(alignof(FPackedRGB10A2N) == 0x000004, "Wrong alignment on FPackedRGB10A2N"); \ +static_assert(sizeof(FPackedRGB10A2N) == 0x000004, "Wrong size on FPackedRGB10A2N"); \ +static_assert(offsetof(FPackedRGB10A2N, Packed) == 0x000000, "Member 'FPackedRGB10A2N::Packed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPackedRGBA16N \ +static_assert(alignof(FPackedRGBA16N) == 0x000004, "Wrong alignment on FPackedRGBA16N"); \ +static_assert(sizeof(FPackedRGBA16N) == 0x000008, "Wrong size on FPackedRGBA16N"); \ +static_assert(offsetof(FPackedRGBA16N, XY) == 0x000000, "Member 'FPackedRGBA16N::XY' has a wrong offset!"); \ +static_assert(offsetof(FPackedRGBA16N, ZW) == 0x000004, "Member 'FPackedRGBA16N::ZW' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformUserId \ +static_assert(alignof(FPlatformUserId) == 0x000004, "Wrong alignment on FPlatformUserId"); \ +static_assert(sizeof(FPlatformUserId) == 0x000004, "Wrong size on FPlatformUserId"); \ +static_assert(offsetof(FPlatformUserId, InternalId) == 0x000000, "Member 'FPlatformUserId::InternalId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformInputDeviceState \ +static_assert(alignof(FPlatformInputDeviceState) == 0x000004, "Wrong alignment on FPlatformInputDeviceState"); \ +static_assert(sizeof(FPlatformInputDeviceState) == 0x000008, "Wrong size on FPlatformInputDeviceState"); \ +static_assert(offsetof(FPlatformInputDeviceState, OwningPlatformUser) == 0x000000, "Member 'FPlatformInputDeviceState::OwningPlatformUser' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInputDeviceState, ConnectionState) == 0x000004, "Member 'FPlatformInputDeviceState::ConnectionState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPolyglotTextData \ +static_assert(alignof(FPolyglotTextData) == 0x000008, "Wrong alignment on FPolyglotTextData"); \ +static_assert(sizeof(FPolyglotTextData) == 0x0000B8, "Wrong size on FPolyglotTextData"); \ +static_assert(offsetof(FPolyglotTextData, Category) == 0x000000, "Member 'FPolyglotTextData::Category' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, NativeCulture) == 0x000008, "Member 'FPolyglotTextData::NativeCulture' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, Namespace) == 0x000018, "Member 'FPolyglotTextData::Namespace' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, Key) == 0x000028, "Member 'FPolyglotTextData::Key' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, NativeString) == 0x000038, "Member 'FPolyglotTextData::NativeString' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, LocalizedStrings) == 0x000048, "Member 'FPolyglotTextData::LocalizedStrings' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, bIsMinimalPatch) == 0x000098, "Member 'FPolyglotTextData::bIsMinimalPatch' has a wrong offset!"); \ +static_assert(offsetof(FPolyglotTextData, CachedText) == 0x0000A0, "Member 'FPolyglotTextData::CachedText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetType \ +static_assert(alignof(FPrimaryAssetType) == 0x000004, "Wrong alignment on FPrimaryAssetType"); \ +static_assert(sizeof(FPrimaryAssetType) == 0x000008, "Wrong size on FPrimaryAssetType"); \ +static_assert(offsetof(FPrimaryAssetType, Name) == 0x000000, "Member 'FPrimaryAssetType::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetId \ +static_assert(alignof(FPrimaryAssetId) == 0x000004, "Wrong alignment on FPrimaryAssetId"); \ +static_assert(sizeof(FPrimaryAssetId) == 0x000010, "Wrong size on FPrimaryAssetId"); \ +static_assert(offsetof(FPrimaryAssetId, PrimaryAssetType) == 0x000000, "Member 'FPrimaryAssetId::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetId, PrimaryAssetName) == 0x000008, "Member 'FPrimaryAssetId::PrimaryAssetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQualifiedFrameTime \ +static_assert(alignof(FQualifiedFrameTime) == 0x000004, "Wrong alignment on FQualifiedFrameTime"); \ +static_assert(sizeof(FQualifiedFrameTime) == 0x000010, "Wrong size on FQualifiedFrameTime"); \ +static_assert(offsetof(FQualifiedFrameTime, Time) == 0x000000, "Member 'FQualifiedFrameTime::Time' has a wrong offset!"); \ +static_assert(offsetof(FQualifiedFrameTime, Rate) == 0x000008, "Member 'FQualifiedFrameTime::Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuat4d \ +static_assert(alignof(FQuat4d) == 0x000010, "Wrong alignment on FQuat4d"); \ +static_assert(sizeof(FQuat4d) == 0x000020, "Wrong size on FQuat4d"); \ +static_assert(offsetof(FQuat4d, X) == 0x000000, "Member 'FQuat4d::X' has a wrong offset!"); \ +static_assert(offsetof(FQuat4d, Y) == 0x000008, "Member 'FQuat4d::Y' has a wrong offset!"); \ +static_assert(offsetof(FQuat4d, Z) == 0x000010, "Member 'FQuat4d::Z' has a wrong offset!"); \ +static_assert(offsetof(FQuat4d, W) == 0x000018, "Member 'FQuat4d::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuat4f \ +static_assert(alignof(FQuat4f) == 0x000010, "Wrong alignment on FQuat4f"); \ +static_assert(sizeof(FQuat4f) == 0x000010, "Wrong size on FQuat4f"); \ +static_assert(offsetof(FQuat4f, X) == 0x000000, "Member 'FQuat4f::X' has a wrong offset!"); \ +static_assert(offsetof(FQuat4f, Y) == 0x000004, "Member 'FQuat4f::Y' has a wrong offset!"); \ +static_assert(offsetof(FQuat4f, Z) == 0x000008, "Member 'FQuat4f::Z' has a wrong offset!"); \ +static_assert(offsetof(FQuat4f, W) == 0x00000C, "Member 'FQuat4f::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomStream \ +static_assert(alignof(FRandomStream) == 0x000004, "Wrong alignment on FRandomStream"); \ +static_assert(sizeof(FRandomStream) == 0x000008, "Wrong size on FRandomStream"); \ +static_assert(offsetof(FRandomStream, InitialSeed) == 0x000000, "Member 'FRandomStream::InitialSeed' has a wrong offset!"); \ +static_assert(offsetof(FRandomStream, Seed) == 0x000004, "Member 'FRandomStream::Seed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRay \ +static_assert(alignof(FRay) == 0x000008, "Wrong alignment on FRay"); \ +static_assert(sizeof(FRay) == 0x000030, "Wrong size on FRay"); \ +static_assert(offsetof(FRay, Origin) == 0x000000, "Member 'FRay::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRay, Direction) == 0x000018, "Member 'FRay::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRay3d \ +static_assert(alignof(FRay3d) == 0x000008, "Wrong alignment on FRay3d"); \ +static_assert(sizeof(FRay3d) == 0x000030, "Wrong size on FRay3d"); \ +static_assert(offsetof(FRay3d, Origin) == 0x000000, "Member 'FRay3d::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRay3d, Direction) == 0x000018, "Member 'FRay3d::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRay3f \ +static_assert(alignof(FRay3f) == 0x000004, "Wrong alignment on FRay3f"); \ +static_assert(sizeof(FRay3f) == 0x000018, "Wrong size on FRay3f"); \ +static_assert(offsetof(FRay3f, Origin) == 0x000000, "Member 'FRay3f::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRay3f, Direction) == 0x00000C, "Member 'FRay3f::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRotator \ +static_assert(alignof(FRotator) == 0x000008, "Wrong alignment on FRotator"); \ +static_assert(sizeof(FRotator) == 0x000018, "Wrong size on FRotator"); \ +static_assert(offsetof(FRotator, Pitch) == 0x000000, "Member 'FRotator::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FRotator, Yaw) == 0x000008, "Member 'FRotator::Yaw' has a wrong offset!"); \ +static_assert(offsetof(FRotator, Roll) == 0x000010, "Member 'FRotator::Roll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRotator3d \ +static_assert(alignof(FRotator3d) == 0x000008, "Wrong alignment on FRotator3d"); \ +static_assert(sizeof(FRotator3d) == 0x000018, "Wrong size on FRotator3d"); \ +static_assert(offsetof(FRotator3d, Pitch) == 0x000000, "Member 'FRotator3d::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FRotator3d, Yaw) == 0x000008, "Member 'FRotator3d::Yaw' has a wrong offset!"); \ +static_assert(offsetof(FRotator3d, Roll) == 0x000010, "Member 'FRotator3d::Roll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRotator3f \ +static_assert(alignof(FRotator3f) == 0x000004, "Wrong alignment on FRotator3f"); \ +static_assert(sizeof(FRotator3f) == 0x00000C, "Wrong size on FRotator3f"); \ +static_assert(offsetof(FRotator3f, Pitch) == 0x000000, "Member 'FRotator3f::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FRotator3f, Yaw) == 0x000004, "Member 'FRotator3f::Yaw' has a wrong offset!"); \ +static_assert(offsetof(FRotator3f, Roll) == 0x000008, "Member 'FRotator3f::Roll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoftClassPath \ +static_assert(alignof(FSoftClassPath) == 0x000008, "Wrong alignment on FSoftClassPath"); \ +static_assert(sizeof(FSoftClassPath) == 0x000020, "Wrong size on FSoftClassPath"); \ + +#define DUMPER7_ASSERTS_FSphere \ +static_assert(alignof(FSphere) == 0x000008, "Wrong alignment on FSphere"); \ +static_assert(sizeof(FSphere) == 0x000020, "Wrong size on FSphere"); \ +static_assert(offsetof(FSphere, Center) == 0x000000, "Member 'FSphere::Center' has a wrong offset!"); \ +static_assert(offsetof(FSphere, W) == 0x000018, "Member 'FSphere::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSphere3d \ +static_assert(alignof(FSphere3d) == 0x000008, "Wrong alignment on FSphere3d"); \ +static_assert(sizeof(FSphere3d) == 0x000020, "Wrong size on FSphere3d"); \ +static_assert(offsetof(FSphere3d, Center) == 0x000000, "Member 'FSphere3d::Center' has a wrong offset!"); \ +static_assert(offsetof(FSphere3d, W) == 0x000018, "Member 'FSphere3d::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSphere3f \ +static_assert(alignof(FSphere3f) == 0x000004, "Wrong alignment on FSphere3f"); \ +static_assert(sizeof(FSphere3f) == 0x000010, "Wrong size on FSphere3f"); \ +static_assert(offsetof(FSphere3f, Center) == 0x000000, "Member 'FSphere3f::Center' has a wrong offset!"); \ +static_assert(offsetof(FSphere3f, W) == 0x00000C, "Member 'FSphere3f::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTemplateString \ +static_assert(alignof(FTemplateString) == 0x000008, "Wrong alignment on FTemplateString"); \ +static_assert(sizeof(FTemplateString) == 0x000010, "Wrong size on FTemplateString"); \ +static_assert(offsetof(FTemplateString, Template) == 0x000000, "Member 'FTemplateString::Template' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTestUndeclaredScriptStructObjectReferencesTest \ +static_assert(alignof(FTestUndeclaredScriptStructObjectReferencesTest) == 0x000008, "Wrong alignment on FTestUndeclaredScriptStructObjectReferencesTest"); \ +static_assert(sizeof(FTestUndeclaredScriptStructObjectReferencesTest) == 0x000058, "Wrong size on FTestUndeclaredScriptStructObjectReferencesTest"); \ +static_assert(offsetof(FTestUndeclaredScriptStructObjectReferencesTest, StrongObjectPointer) == 0x000000, "Member 'FTestUndeclaredScriptStructObjectReferencesTest::StrongObjectPointer' has a wrong offset!"); \ +static_assert(offsetof(FTestUndeclaredScriptStructObjectReferencesTest, SoftObjectPointer) == 0x000008, "Member 'FTestUndeclaredScriptStructObjectReferencesTest::SoftObjectPointer' has a wrong offset!"); \ +static_assert(offsetof(FTestUndeclaredScriptStructObjectReferencesTest, SoftObjectPath) == 0x000030, "Member 'FTestUndeclaredScriptStructObjectReferencesTest::SoftObjectPath' has a wrong offset!"); \ +static_assert(offsetof(FTestUndeclaredScriptStructObjectReferencesTest, WeakObjectPointer) == 0x000050, "Member 'FTestUndeclaredScriptStructObjectReferencesTest::WeakObjectPointer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTestUninitializedScriptStructMembersTest \ +static_assert(alignof(FTestUninitializedScriptStructMembersTest) == 0x000008, "Wrong alignment on FTestUninitializedScriptStructMembersTest"); \ +static_assert(sizeof(FTestUninitializedScriptStructMembersTest) == 0x000018, "Wrong size on FTestUninitializedScriptStructMembersTest"); \ +static_assert(offsetof(FTestUninitializedScriptStructMembersTest, UninitializedObjectReference) == 0x000000, "Member 'FTestUninitializedScriptStructMembersTest::UninitializedObjectReference' has a wrong offset!"); \ +static_assert(offsetof(FTestUninitializedScriptStructMembersTest, InitializedObjectReference) == 0x000008, "Member 'FTestUninitializedScriptStructMembersTest::InitializedObjectReference' has a wrong offset!"); \ +static_assert(offsetof(FTestUninitializedScriptStructMembersTest, UnusedValue) == 0x000010, "Member 'FTestUninitializedScriptStructMembersTest::UnusedValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimecode \ +static_assert(alignof(FTimecode) == 0x000004, "Wrong alignment on FTimecode"); \ +static_assert(sizeof(FTimecode) == 0x000014, "Wrong size on FTimecode"); \ +static_assert(offsetof(FTimecode, Hours) == 0x000000, "Member 'FTimecode::Hours' has a wrong offset!"); \ +static_assert(offsetof(FTimecode, Minutes) == 0x000004, "Member 'FTimecode::Minutes' has a wrong offset!"); \ +static_assert(offsetof(FTimecode, Seconds) == 0x000008, "Member 'FTimecode::Seconds' has a wrong offset!"); \ +static_assert(offsetof(FTimecode, Frames) == 0x00000C, "Member 'FTimecode::Frames' has a wrong offset!"); \ +static_assert(offsetof(FTimecode, bDropFrameFormat) == 0x000010, "Member 'FTimecode::bDropFrameFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimespan \ +static_assert(alignof(FTimespan) == 0x000008, "Wrong alignment on FTimespan"); \ +static_assert(sizeof(FTimespan) == 0x000008, "Wrong size on FTimespan"); \ + +#define DUMPER7_ASSERTS_FTransform \ +static_assert(alignof(FTransform) == 0x000010, "Wrong alignment on FTransform"); \ +static_assert(sizeof(FTransform) == 0x000060, "Wrong size on FTransform"); \ +static_assert(offsetof(FTransform, Rotation) == 0x000000, "Member 'FTransform::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FTransform, Translation) == 0x000020, "Member 'FTransform::Translation' has a wrong offset!"); \ +static_assert(offsetof(FTransform, Scale3D) == 0x000040, "Member 'FTransform::Scale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransform3d \ +static_assert(alignof(FTransform3d) == 0x000010, "Wrong alignment on FTransform3d"); \ +static_assert(sizeof(FTransform3d) == 0x000060, "Wrong size on FTransform3d"); \ +static_assert(offsetof(FTransform3d, Rotation) == 0x000000, "Member 'FTransform3d::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FTransform3d, Translation) == 0x000020, "Member 'FTransform3d::Translation' has a wrong offset!"); \ +static_assert(offsetof(FTransform3d, Scale3D) == 0x000040, "Member 'FTransform3d::Scale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransform3f \ +static_assert(alignof(FTransform3f) == 0x000010, "Wrong alignment on FTransform3f"); \ +static_assert(sizeof(FTransform3f) == 0x000030, "Wrong size on FTransform3f"); \ +static_assert(offsetof(FTransform3f, Rotation) == 0x000000, "Member 'FTransform3f::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FTransform3f, Translation) == 0x000010, "Member 'FTransform3f::Translation' has a wrong offset!"); \ +static_assert(offsetof(FTransform3f, Scale3D) == 0x000020, "Member 'FTransform3f::Scale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint32Point \ +static_assert(alignof(FUint32Point) == 0x000004, "Wrong alignment on FUint32Point"); \ +static_assert(sizeof(FUint32Point) == 0x000008, "Wrong size on FUint32Point"); \ +static_assert(offsetof(FUint32Point, X) == 0x000000, "Member 'FUint32Point::X' has a wrong offset!"); \ +static_assert(offsetof(FUint32Point, Y) == 0x000004, "Member 'FUint32Point::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint32Vector \ +static_assert(alignof(FUint32Vector) == 0x000004, "Wrong alignment on FUint32Vector"); \ +static_assert(sizeof(FUint32Vector) == 0x00000C, "Wrong size on FUint32Vector"); \ +static_assert(offsetof(FUint32Vector, X) == 0x000000, "Member 'FUint32Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector, Y) == 0x000004, "Member 'FUint32Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector, Z) == 0x000008, "Member 'FUint32Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint32Vector2 \ +static_assert(alignof(FUint32Vector2) == 0x000004, "Wrong alignment on FUint32Vector2"); \ +static_assert(sizeof(FUint32Vector2) == 0x000008, "Wrong size on FUint32Vector2"); \ +static_assert(offsetof(FUint32Vector2, X) == 0x000000, "Member 'FUint32Vector2::X' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector2, Y) == 0x000004, "Member 'FUint32Vector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint32Vector4 \ +static_assert(alignof(FUint32Vector4) == 0x000004, "Wrong alignment on FUint32Vector4"); \ +static_assert(sizeof(FUint32Vector4) == 0x000010, "Wrong size on FUint32Vector4"); \ +static_assert(offsetof(FUint32Vector4, X) == 0x000000, "Member 'FUint32Vector4::X' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector4, Y) == 0x000004, "Member 'FUint32Vector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector4, Z) == 0x000008, "Member 'FUint32Vector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FUint32Vector4, W) == 0x00000C, "Member 'FUint32Vector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint64Point \ +static_assert(alignof(FUint64Point) == 0x000008, "Wrong alignment on FUint64Point"); \ +static_assert(sizeof(FUint64Point) == 0x000010, "Wrong size on FUint64Point"); \ +static_assert(offsetof(FUint64Point, X) == 0x000000, "Member 'FUint64Point::X' has a wrong offset!"); \ +static_assert(offsetof(FUint64Point, Y) == 0x000008, "Member 'FUint64Point::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint64Vector \ +static_assert(alignof(FUint64Vector) == 0x000008, "Wrong alignment on FUint64Vector"); \ +static_assert(sizeof(FUint64Vector) == 0x000018, "Wrong size on FUint64Vector"); \ +static_assert(offsetof(FUint64Vector, X) == 0x000000, "Member 'FUint64Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector, Y) == 0x000008, "Member 'FUint64Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector, Z) == 0x000010, "Member 'FUint64Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint64Vector2 \ +static_assert(alignof(FUint64Vector2) == 0x000008, "Wrong alignment on FUint64Vector2"); \ +static_assert(sizeof(FUint64Vector2) == 0x000010, "Wrong size on FUint64Vector2"); \ +static_assert(offsetof(FUint64Vector2, X) == 0x000000, "Member 'FUint64Vector2::X' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector2, Y) == 0x000008, "Member 'FUint64Vector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint64Vector4 \ +static_assert(alignof(FUint64Vector4) == 0x000008, "Wrong alignment on FUint64Vector4"); \ +static_assert(sizeof(FUint64Vector4) == 0x000020, "Wrong size on FUint64Vector4"); \ +static_assert(offsetof(FUint64Vector4, X) == 0x000000, "Member 'FUint64Vector4::X' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector4, Y) == 0x000008, "Member 'FUint64Vector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector4, Z) == 0x000010, "Member 'FUint64Vector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FUint64Vector4, W) == 0x000018, "Member 'FUint64Vector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUintPoint \ +static_assert(alignof(FUintPoint) == 0x000004, "Wrong alignment on FUintPoint"); \ +static_assert(sizeof(FUintPoint) == 0x000008, "Wrong size on FUintPoint"); \ +static_assert(offsetof(FUintPoint, X) == 0x000000, "Member 'FUintPoint::X' has a wrong offset!"); \ +static_assert(offsetof(FUintPoint, Y) == 0x000004, "Member 'FUintPoint::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUintVector \ +static_assert(alignof(FUintVector) == 0x000004, "Wrong alignment on FUintVector"); \ +static_assert(sizeof(FUintVector) == 0x00000C, "Wrong size on FUintVector"); \ +static_assert(offsetof(FUintVector, X) == 0x000000, "Member 'FUintVector::X' has a wrong offset!"); \ +static_assert(offsetof(FUintVector, Y) == 0x000004, "Member 'FUintVector::Y' has a wrong offset!"); \ +static_assert(offsetof(FUintVector, Z) == 0x000008, "Member 'FUintVector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUintVector2 \ +static_assert(alignof(FUintVector2) == 0x000004, "Wrong alignment on FUintVector2"); \ +static_assert(sizeof(FUintVector2) == 0x000008, "Wrong size on FUintVector2"); \ +static_assert(offsetof(FUintVector2, X) == 0x000000, "Member 'FUintVector2::X' has a wrong offset!"); \ +static_assert(offsetof(FUintVector2, Y) == 0x000004, "Member 'FUintVector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUintVector4 \ +static_assert(alignof(FUintVector4) == 0x000004, "Wrong alignment on FUintVector4"); \ +static_assert(sizeof(FUintVector4) == 0x000010, "Wrong size on FUintVector4"); \ +static_assert(offsetof(FUintVector4, X) == 0x000000, "Member 'FUintVector4::X' has a wrong offset!"); \ +static_assert(offsetof(FUintVector4, Y) == 0x000004, "Member 'FUintVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FUintVector4, Z) == 0x000008, "Member 'FUintVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FUintVector4, W) == 0x00000C, "Member 'FUintVector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector4 \ +static_assert(alignof(FVector4) == 0x000010, "Wrong alignment on FVector4"); \ +static_assert(sizeof(FVector4) == 0x000020, "Wrong size on FVector4"); \ +static_assert(offsetof(FVector4, X) == 0x000000, "Member 'FVector4::X' has a wrong offset!"); \ +static_assert(offsetof(FVector4, Y) == 0x000008, "Member 'FVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector4, Z) == 0x000010, "Member 'FVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FVector4, W) == 0x000018, "Member 'FVector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector4d \ +static_assert(alignof(FVector4d) == 0x000010, "Wrong alignment on FVector4d"); \ +static_assert(sizeof(FVector4d) == 0x000020, "Wrong size on FVector4d"); \ +static_assert(offsetof(FVector4d, X) == 0x000000, "Member 'FVector4d::X' has a wrong offset!"); \ +static_assert(offsetof(FVector4d, Y) == 0x000008, "Member 'FVector4d::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector4d, Z) == 0x000010, "Member 'FVector4d::Z' has a wrong offset!"); \ +static_assert(offsetof(FVector4d, W) == 0x000018, "Member 'FVector4d::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector4f \ +static_assert(alignof(FVector4f) == 0x000010, "Wrong alignment on FVector4f"); \ +static_assert(sizeof(FVector4f) == 0x000010, "Wrong size on FVector4f"); \ +static_assert(offsetof(FVector4f, X) == 0x000000, "Member 'FVector4f::X' has a wrong offset!"); \ +static_assert(offsetof(FVector4f, Y) == 0x000004, "Member 'FVector4f::Y' has a wrong offset!"); \ +static_assert(offsetof(FVector4f, Z) == 0x000008, "Member 'FVector4f::Z' has a wrong offset!"); \ +static_assert(offsetof(FVector4f, W) == 0x00000C, "Member 'FVector4f::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Object_ExecuteUbergraph \ +static_assert(alignof(Object_ExecuteUbergraph) == 0x000004, "Wrong alignment on Object_ExecuteUbergraph"); \ +static_assert(sizeof(Object_ExecuteUbergraph) == 0x000004, "Wrong size on Object_ExecuteUbergraph"); \ +static_assert(offsetof(Object_ExecuteUbergraph, EntryPoint) == 0x000000, "Member 'Object_ExecuteUbergraph::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObject \ +static_assert(alignof(UObject) == 0x000008, "Wrong alignment on UObject"); \ +static_assert(sizeof(UObject) == 0x000028, "Wrong size on UObject"); \ +static_assert(offsetof(UObject, VTable) == 0x000000, "Member 'UObject::VTable' has a wrong offset!"); \ +static_assert(offsetof(UObject, Flags) == 0x000008, "Member 'UObject::Flags' has a wrong offset!"); \ +static_assert(offsetof(UObject, Index) == 0x00000C, "Member 'UObject::Index' has a wrong offset!"); \ +static_assert(offsetof(UObject, Class) == 0x000010, "Member 'UObject::Class' has a wrong offset!"); \ +static_assert(offsetof(UObject, Name) == 0x000018, "Member 'UObject::Name' has a wrong offset!"); \ +static_assert(offsetof(UObject, Outer) == 0x000020, "Member 'UObject::Outer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UField \ +static_assert(alignof(UField) == 0x000008, "Wrong alignment on UField"); \ +static_assert(sizeof(UField) == 0x000030, "Wrong size on UField"); \ +static_assert(offsetof(UField, Next) == 0x000028, "Member 'UField::Next' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGCObjectReferencer \ +static_assert(alignof(UGCObjectReferencer) == 0x000008, "Wrong alignment on UGCObjectReferencer"); \ +static_assert(sizeof(UGCObjectReferencer) == 0x000038, "Wrong size on UGCObjectReferencer"); \ + +#define DUMPER7_ASSERTS_UTextBuffer \ +static_assert(alignof(UTextBuffer) == 0x000008, "Wrong alignment on UTextBuffer"); \ +static_assert(sizeof(UTextBuffer) == 0x000050, "Wrong size on UTextBuffer"); \ + +#define DUMPER7_ASSERTS_UStruct \ +static_assert(alignof(UStruct) == 0x000008, "Wrong alignment on UStruct"); \ +static_assert(sizeof(UStruct) == 0x0000B0, "Wrong size on UStruct"); \ +static_assert(offsetof(UStruct, Super) == 0x000040, "Member 'UStruct::Super' has a wrong offset!"); \ +static_assert(offsetof(UStruct, Children) == 0x000048, "Member 'UStruct::Children' has a wrong offset!"); \ +static_assert(offsetof(UStruct, ChildProperties) == 0x000050, "Member 'UStruct::ChildProperties' has a wrong offset!"); \ +static_assert(offsetof(UStruct, Size) == 0x000058, "Member 'UStruct::Size' has a wrong offset!"); \ +static_assert(offsetof(UStruct, MinAlignment) == 0x00005C, "Member 'UStruct::MinAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScriptStruct \ +static_assert(alignof(UScriptStruct) == 0x000008, "Wrong alignment on UScriptStruct"); \ +static_assert(sizeof(UScriptStruct) == 0x0000C0, "Wrong size on UScriptStruct"); \ + +#define DUMPER7_ASSERTS_UPackage \ +static_assert(alignof(UPackage) == 0x000008, "Wrong alignment on UPackage"); \ +static_assert(sizeof(UPackage) == 0x000090, "Wrong size on UPackage"); \ + +#define DUMPER7_ASSERTS_UClass \ +static_assert(alignof(UClass) == 0x000008, "Wrong alignment on UClass"); \ +static_assert(sizeof(UClass) == 0x000200, "Wrong size on UClass"); \ +static_assert(offsetof(UClass, CastFlags) == 0x0000D8, "Member 'UClass::CastFlags' has a wrong offset!"); \ +static_assert(offsetof(UClass, DefaultObject) == 0x000110, "Member 'UClass::DefaultObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFunction \ +static_assert(alignof(UFunction) == 0x000008, "Wrong alignment on UFunction"); \ +static_assert(sizeof(UFunction) == 0x0000E0, "Wrong size on UFunction"); \ +static_assert(offsetof(UFunction, FunctionFlags) == 0x0000B0, "Member 'UFunction::FunctionFlags' has a wrong offset!"); \ +static_assert(offsetof(UFunction, ExecFunction) == 0x0000D8, "Member 'UFunction::ExecFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDelegateFunction \ +static_assert(alignof(UDelegateFunction) == 0x000008, "Wrong alignment on UDelegateFunction"); \ +static_assert(sizeof(UDelegateFunction) == 0x0000E0, "Wrong size on UDelegateFunction"); \ + +#define DUMPER7_ASSERTS_USparseDelegateFunction \ +static_assert(alignof(USparseDelegateFunction) == 0x000008, "Wrong alignment on USparseDelegateFunction"); \ +static_assert(sizeof(USparseDelegateFunction) == 0x0000F0, "Wrong size on USparseDelegateFunction"); \ + +#define DUMPER7_ASSERTS_UDynamicClass \ +static_assert(alignof(UDynamicClass) == 0x000008, "Wrong alignment on UDynamicClass"); \ +static_assert(sizeof(UDynamicClass) == 0x000280, "Wrong size on UDynamicClass"); \ + +#define DUMPER7_ASSERTS_UPackageMap \ +static_assert(alignof(UPackageMap) == 0x000008, "Wrong alignment on UPackageMap"); \ +static_assert(sizeof(UPackageMap) == 0x0000E0, "Wrong size on UPackageMap"); \ + +#define DUMPER7_ASSERTS_UEnum \ +static_assert(alignof(UEnum) == 0x000008, "Wrong alignment on UEnum"); \ +static_assert(sizeof(UEnum) == 0x000068, "Wrong size on UEnum"); \ +static_assert(offsetof(UEnum, Names) == 0x000040, "Member 'UEnum::Names' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectReachabilityStressData \ +static_assert(alignof(UObjectReachabilityStressData) == 0x000008, "Wrong alignment on UObjectReachabilityStressData"); \ +static_assert(sizeof(UObjectReachabilityStressData) == 0x000038, "Wrong size on UObjectReachabilityStressData"); \ + +#define DUMPER7_ASSERTS_IInterface \ +static_assert(alignof(IInterface) == 0x000001, "Wrong alignment on IInterface"); \ +static_assert(sizeof(IInterface) == 0x000001, "Wrong size on IInterface"); \ + +#define DUMPER7_ASSERTS_ULinkerPlaceholderClass \ +static_assert(alignof(ULinkerPlaceholderClass) == 0x000008, "Wrong alignment on ULinkerPlaceholderClass"); \ +static_assert(sizeof(ULinkerPlaceholderClass) == 0x0003C0, "Wrong size on ULinkerPlaceholderClass"); \ + +#define DUMPER7_ASSERTS_ULinkerPlaceholderExportObject \ +static_assert(alignof(ULinkerPlaceholderExportObject) == 0x000008, "Wrong alignment on ULinkerPlaceholderExportObject"); \ +static_assert(sizeof(ULinkerPlaceholderExportObject) == 0x0000F8, "Wrong size on ULinkerPlaceholderExportObject"); \ + +#define DUMPER7_ASSERTS_ULinkerPlaceholderFunction \ +static_assert(alignof(ULinkerPlaceholderFunction) == 0x000008, "Wrong alignment on ULinkerPlaceholderFunction"); \ +static_assert(sizeof(ULinkerPlaceholderFunction) == 0x0002A0, "Wrong size on ULinkerPlaceholderFunction"); \ + +#define DUMPER7_ASSERTS_UMetaData \ +static_assert(alignof(UMetaData) == 0x000008, "Wrong alignment on UMetaData"); \ +static_assert(sizeof(UMetaData) == 0x0000C8, "Wrong size on UMetaData"); \ + +#define DUMPER7_ASSERTS_UObjectRedirector \ +static_assert(alignof(UObjectRedirector) == 0x000008, "Wrong alignment on UObjectRedirector"); \ +static_assert(sizeof(UObjectRedirector) == 0x000030, "Wrong size on UObjectRedirector"); \ + +#define DUMPER7_ASSERTS_UProperty \ +static_assert(alignof(UProperty) == 0x000008, "Wrong alignment on UProperty"); \ +static_assert(sizeof(UProperty) == 0x000070, "Wrong size on UProperty"); \ + +#define DUMPER7_ASSERTS_UEnumProperty \ +static_assert(alignof(UEnumProperty) == 0x000008, "Wrong alignment on UEnumProperty"); \ +static_assert(sizeof(UEnumProperty) == 0x000080, "Wrong size on UEnumProperty"); \ + +#define DUMPER7_ASSERTS_UArrayProperty \ +static_assert(alignof(UArrayProperty) == 0x000008, "Wrong alignment on UArrayProperty"); \ +static_assert(sizeof(UArrayProperty) == 0x000078, "Wrong size on UArrayProperty"); \ + +#define DUMPER7_ASSERTS_UObjectPropertyBase \ +static_assert(alignof(UObjectPropertyBase) == 0x000008, "Wrong alignment on UObjectPropertyBase"); \ +static_assert(sizeof(UObjectPropertyBase) == 0x000078, "Wrong size on UObjectPropertyBase"); \ + +#define DUMPER7_ASSERTS_UBoolProperty \ +static_assert(alignof(UBoolProperty) == 0x000008, "Wrong alignment on UBoolProperty"); \ +static_assert(sizeof(UBoolProperty) == 0x000078, "Wrong size on UBoolProperty"); \ + +#define DUMPER7_ASSERTS_UNumericProperty \ +static_assert(alignof(UNumericProperty) == 0x000008, "Wrong alignment on UNumericProperty"); \ +static_assert(sizeof(UNumericProperty) == 0x000070, "Wrong size on UNumericProperty"); \ + +#define DUMPER7_ASSERTS_UByteProperty \ +static_assert(alignof(UByteProperty) == 0x000008, "Wrong alignment on UByteProperty"); \ +static_assert(sizeof(UByteProperty) == 0x000078, "Wrong size on UByteProperty"); \ + +#define DUMPER7_ASSERTS_UObjectProperty \ +static_assert(alignof(UObjectProperty) == 0x000008, "Wrong alignment on UObjectProperty"); \ +static_assert(sizeof(UObjectProperty) == 0x000078, "Wrong size on UObjectProperty"); \ + +#define DUMPER7_ASSERTS_UClassProperty \ +static_assert(alignof(UClassProperty) == 0x000008, "Wrong alignment on UClassProperty"); \ +static_assert(sizeof(UClassProperty) == 0x000080, "Wrong size on UClassProperty"); \ + +#define DUMPER7_ASSERTS_UDelegateProperty \ +static_assert(alignof(UDelegateProperty) == 0x000008, "Wrong alignment on UDelegateProperty"); \ +static_assert(sizeof(UDelegateProperty) == 0x000078, "Wrong size on UDelegateProperty"); \ + +#define DUMPER7_ASSERTS_UDoubleProperty \ +static_assert(alignof(UDoubleProperty) == 0x000008, "Wrong alignment on UDoubleProperty"); \ +static_assert(sizeof(UDoubleProperty) == 0x000070, "Wrong size on UDoubleProperty"); \ + +#define DUMPER7_ASSERTS_UFloatProperty \ +static_assert(alignof(UFloatProperty) == 0x000008, "Wrong alignment on UFloatProperty"); \ +static_assert(sizeof(UFloatProperty) == 0x000070, "Wrong size on UFloatProperty"); \ + +#define DUMPER7_ASSERTS_UIntProperty \ +static_assert(alignof(UIntProperty) == 0x000008, "Wrong alignment on UIntProperty"); \ +static_assert(sizeof(UIntProperty) == 0x000070, "Wrong size on UIntProperty"); \ + +#define DUMPER7_ASSERTS_UInt8Property \ +static_assert(alignof(UInt8Property) == 0x000008, "Wrong alignment on UInt8Property"); \ +static_assert(sizeof(UInt8Property) == 0x000070, "Wrong size on UInt8Property"); \ + +#define DUMPER7_ASSERTS_UInt16Property \ +static_assert(alignof(UInt16Property) == 0x000008, "Wrong alignment on UInt16Property"); \ +static_assert(sizeof(UInt16Property) == 0x000070, "Wrong size on UInt16Property"); \ + +#define DUMPER7_ASSERTS_UInt64Property \ +static_assert(alignof(UInt64Property) == 0x000008, "Wrong alignment on UInt64Property"); \ +static_assert(sizeof(UInt64Property) == 0x000070, "Wrong size on UInt64Property"); \ + +#define DUMPER7_ASSERTS_UInterfaceProperty \ +static_assert(alignof(UInterfaceProperty) == 0x000008, "Wrong alignment on UInterfaceProperty"); \ +static_assert(sizeof(UInterfaceProperty) == 0x000078, "Wrong size on UInterfaceProperty"); \ + +#define DUMPER7_ASSERTS_ULazyObjectProperty \ +static_assert(alignof(ULazyObjectProperty) == 0x000008, "Wrong alignment on ULazyObjectProperty"); \ +static_assert(sizeof(ULazyObjectProperty) == 0x000078, "Wrong size on ULazyObjectProperty"); \ + +#define DUMPER7_ASSERTS_UMapProperty \ +static_assert(alignof(UMapProperty) == 0x000008, "Wrong alignment on UMapProperty"); \ +static_assert(sizeof(UMapProperty) == 0x000098, "Wrong size on UMapProperty"); \ + +#define DUMPER7_ASSERTS_UMulticastDelegateProperty \ +static_assert(alignof(UMulticastDelegateProperty) == 0x000008, "Wrong alignment on UMulticastDelegateProperty"); \ +static_assert(sizeof(UMulticastDelegateProperty) == 0x000078, "Wrong size on UMulticastDelegateProperty"); \ + +#define DUMPER7_ASSERTS_UMulticastInlineDelegateProperty \ +static_assert(alignof(UMulticastInlineDelegateProperty) == 0x000008, "Wrong alignment on UMulticastInlineDelegateProperty"); \ +static_assert(sizeof(UMulticastInlineDelegateProperty) == 0x000078, "Wrong size on UMulticastInlineDelegateProperty"); \ + +#define DUMPER7_ASSERTS_UMulticastSparseDelegateProperty \ +static_assert(alignof(UMulticastSparseDelegateProperty) == 0x000008, "Wrong alignment on UMulticastSparseDelegateProperty"); \ +static_assert(sizeof(UMulticastSparseDelegateProperty) == 0x000078, "Wrong size on UMulticastSparseDelegateProperty"); \ + +#define DUMPER7_ASSERTS_UNameProperty \ +static_assert(alignof(UNameProperty) == 0x000008, "Wrong alignment on UNameProperty"); \ +static_assert(sizeof(UNameProperty) == 0x000070, "Wrong size on UNameProperty"); \ + +#define DUMPER7_ASSERTS_USetProperty \ +static_assert(alignof(USetProperty) == 0x000008, "Wrong alignment on USetProperty"); \ +static_assert(sizeof(USetProperty) == 0x000090, "Wrong size on USetProperty"); \ + +#define DUMPER7_ASSERTS_USoftObjectProperty \ +static_assert(alignof(USoftObjectProperty) == 0x000008, "Wrong alignment on USoftObjectProperty"); \ +static_assert(sizeof(USoftObjectProperty) == 0x000078, "Wrong size on USoftObjectProperty"); \ + +#define DUMPER7_ASSERTS_USoftClassProperty \ +static_assert(alignof(USoftClassProperty) == 0x000008, "Wrong alignment on USoftClassProperty"); \ +static_assert(sizeof(USoftClassProperty) == 0x000080, "Wrong size on USoftClassProperty"); \ + +#define DUMPER7_ASSERTS_UStrProperty \ +static_assert(alignof(UStrProperty) == 0x000008, "Wrong alignment on UStrProperty"); \ +static_assert(sizeof(UStrProperty) == 0x000070, "Wrong size on UStrProperty"); \ + +#define DUMPER7_ASSERTS_UStructProperty \ +static_assert(alignof(UStructProperty) == 0x000008, "Wrong alignment on UStructProperty"); \ +static_assert(sizeof(UStructProperty) == 0x000078, "Wrong size on UStructProperty"); \ + +#define DUMPER7_ASSERTS_UUInt16Property \ +static_assert(alignof(UUInt16Property) == 0x000008, "Wrong alignment on UUInt16Property"); \ +static_assert(sizeof(UUInt16Property) == 0x000070, "Wrong size on UUInt16Property"); \ + +#define DUMPER7_ASSERTS_UUInt32Property \ +static_assert(alignof(UUInt32Property) == 0x000008, "Wrong alignment on UUInt32Property"); \ +static_assert(sizeof(UUInt32Property) == 0x000070, "Wrong size on UUInt32Property"); \ + +#define DUMPER7_ASSERTS_UUInt64Property \ +static_assert(alignof(UUInt64Property) == 0x000008, "Wrong alignment on UUInt64Property"); \ +static_assert(sizeof(UUInt64Property) == 0x000070, "Wrong size on UUInt64Property"); \ + +#define DUMPER7_ASSERTS_UWeakObjectProperty \ +static_assert(alignof(UWeakObjectProperty) == 0x000008, "Wrong alignment on UWeakObjectProperty"); \ +static_assert(sizeof(UWeakObjectProperty) == 0x000078, "Wrong size on UWeakObjectProperty"); \ + +#define DUMPER7_ASSERTS_UTextProperty \ +static_assert(alignof(UTextProperty) == 0x000008, "Wrong alignment on UTextProperty"); \ +static_assert(sizeof(UTextProperty) == 0x000070, "Wrong size on UTextProperty"); \ + +#define DUMPER7_ASSERTS_UPropertyWrapper \ +static_assert(alignof(UPropertyWrapper) == 0x000008, "Wrong alignment on UPropertyWrapper"); \ +static_assert(sizeof(UPropertyWrapper) == 0x000030, "Wrong size on UPropertyWrapper"); \ + +#define DUMPER7_ASSERTS_UMulticastDelegatePropertyWrapper \ +static_assert(alignof(UMulticastDelegatePropertyWrapper) == 0x000008, "Wrong alignment on UMulticastDelegatePropertyWrapper"); \ +static_assert(sizeof(UMulticastDelegatePropertyWrapper) == 0x000030, "Wrong size on UMulticastDelegatePropertyWrapper"); \ + +#define DUMPER7_ASSERTS_UMulticastInlineDelegatePropertyWrapper \ +static_assert(alignof(UMulticastInlineDelegatePropertyWrapper) == 0x000008, "Wrong alignment on UMulticastInlineDelegatePropertyWrapper"); \ +static_assert(sizeof(UMulticastInlineDelegatePropertyWrapper) == 0x000030, "Wrong size on UMulticastInlineDelegatePropertyWrapper"); \ + +#define DUMPER7_ASSERTS_BP_ClimbableAnimations_C_GetBlendshapes \ +static_assert(alignof(BP_ClimbableAnimations_C_GetBlendshapes) == 0x000008, "Wrong alignment on BP_ClimbableAnimations_C_GetBlendshapes"); \ +static_assert(sizeof(BP_ClimbableAnimations_C_GetBlendshapes) == 0x000010, "Wrong size on BP_ClimbableAnimations_C_GetBlendshapes"); \ +static_assert(offsetof(BP_ClimbableAnimations_C_GetBlendshapes, Idle) == 0x000000, "Member 'BP_ClimbableAnimations_C_GetBlendshapes::Idle' has a wrong offset!"); \ +static_assert(offsetof(BP_ClimbableAnimations_C_GetBlendshapes, Movement) == 0x000008, "Member 'BP_ClimbableAnimations_C_GetBlendshapes::Movement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ClimbableAnimations_C_GetSurfaceTypeAudio \ +static_assert(alignof(BP_ClimbableAnimations_C_GetSurfaceTypeAudio) == 0x000008, "Wrong alignment on BP_ClimbableAnimations_C_GetSurfaceTypeAudio"); \ +static_assert(sizeof(BP_ClimbableAnimations_C_GetSurfaceTypeAudio) == 0x000008, "Wrong size on BP_ClimbableAnimations_C_GetSurfaceTypeAudio"); \ +static_assert(offsetof(BP_ClimbableAnimations_C_GetSurfaceTypeAudio, AudioSwitch) == 0x000000, "Member 'BP_ClimbableAnimations_C_GetSurfaceTypeAudio::AudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBP_ClimbableAnimations_C \ +static_assert(alignof(IBP_ClimbableAnimations_C) == 0x000001, "Wrong alignment on IBP_ClimbableAnimations_C"); \ +static_assert(sizeof(IBP_ClimbableAnimations_C) == 0x000001, "Wrong size on IBP_ClimbableAnimations_C"); \ + +#define DUMPER7_ASSERTS_FStaticComponentMaskValue \ +static_assert(alignof(FStaticComponentMaskValue) == 0x000001, "Wrong alignment on FStaticComponentMaskValue"); \ +static_assert(sizeof(FStaticComponentMaskValue) == 0x000004, "Wrong size on FStaticComponentMaskValue"); \ +static_assert(offsetof(FStaticComponentMaskValue, R) == 0x000000, "Member 'FStaticComponentMaskValue::R' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskValue, G) == 0x000001, "Member 'FStaticComponentMaskValue::G' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskValue, B) == 0x000002, "Member 'FStaticComponentMaskValue::B' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskValue, A) == 0x000003, "Member 'FStaticComponentMaskValue::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector_NetQuantize10 \ +static_assert(alignof(FVector_NetQuantize10) == 0x000008, "Wrong alignment on FVector_NetQuantize10"); \ +static_assert(sizeof(FVector_NetQuantize10) == 0x000018, "Wrong size on FVector_NetQuantize10"); \ + +#define DUMPER7_ASSERTS_FWeightedBlendable \ +static_assert(alignof(FWeightedBlendable) == 0x000008, "Wrong alignment on FWeightedBlendable"); \ +static_assert(sizeof(FWeightedBlendable) == 0x000010, "Wrong size on FWeightedBlendable"); \ +static_assert(offsetof(FWeightedBlendable, Weight) == 0x000000, "Member 'FWeightedBlendable::Weight' has a wrong offset!"); \ +static_assert(offsetof(FWeightedBlendable, Object) == 0x000008, "Member 'FWeightedBlendable::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWeightedBlendables \ +static_assert(alignof(FWeightedBlendables) == 0x000008, "Wrong alignment on FWeightedBlendables"); \ +static_assert(sizeof(FWeightedBlendables) == 0x000010, "Wrong size on FWeightedBlendables"); \ +static_assert(offsetof(FWeightedBlendables, Array) == 0x000000, "Member 'FWeightedBlendables::Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPostProcessSettings \ +static_assert(alignof(FPostProcessSettings) == 0x000010, "Wrong alignment on FPostProcessSettings"); \ +static_assert(sizeof(FPostProcessSettings) == 0x0006F0, "Wrong size on FPostProcessSettings"); \ +static_assert(offsetof(FPostProcessSettings, BloomMethod) == 0x000031, "Member 'FPostProcessSettings::BloomMethod' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureMethod) == 0x000032, "Member 'FPostProcessSettings::AutoExposureMethod' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, TemperatureType) == 0x000033, "Member 'FPostProcessSettings::TemperatureType' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, WhiteTemp) == 0x000034, "Member 'FPostProcessSettings::WhiteTemp' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, WhiteTint) == 0x000038, "Member 'FPostProcessSettings::WhiteTint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorSaturation) == 0x000040, "Member 'FPostProcessSettings::ColorSaturation' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorContrast) == 0x000060, "Member 'FPostProcessSettings::ColorContrast' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGamma) == 0x000080, "Member 'FPostProcessSettings::ColorGamma' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGain) == 0x0000A0, "Member 'FPostProcessSettings::ColorGain' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorOffset) == 0x0000C0, "Member 'FPostProcessSettings::ColorOffset' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorSaturationShadows) == 0x0000E0, "Member 'FPostProcessSettings::ColorSaturationShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorContrastShadows) == 0x000100, "Member 'FPostProcessSettings::ColorContrastShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGammaShadows) == 0x000120, "Member 'FPostProcessSettings::ColorGammaShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGainShadows) == 0x000140, "Member 'FPostProcessSettings::ColorGainShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorOffsetShadows) == 0x000160, "Member 'FPostProcessSettings::ColorOffsetShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorSaturationMidtones) == 0x000180, "Member 'FPostProcessSettings::ColorSaturationMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorContrastMidtones) == 0x0001A0, "Member 'FPostProcessSettings::ColorContrastMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGammaMidtones) == 0x0001C0, "Member 'FPostProcessSettings::ColorGammaMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGainMidtones) == 0x0001E0, "Member 'FPostProcessSettings::ColorGainMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorOffsetMidtones) == 0x000200, "Member 'FPostProcessSettings::ColorOffsetMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorSaturationHighlights) == 0x000220, "Member 'FPostProcessSettings::ColorSaturationHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorContrastHighlights) == 0x000240, "Member 'FPostProcessSettings::ColorContrastHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGammaHighlights) == 0x000260, "Member 'FPostProcessSettings::ColorGammaHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGainHighlights) == 0x000280, "Member 'FPostProcessSettings::ColorGainHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorOffsetHighlights) == 0x0002A0, "Member 'FPostProcessSettings::ColorOffsetHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorCorrectionHighlightsMin) == 0x0002C0, "Member 'FPostProcessSettings::ColorCorrectionHighlightsMin' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorCorrectionHighlightsMax) == 0x0002C4, "Member 'FPostProcessSettings::ColorCorrectionHighlightsMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorCorrectionShadowsMax) == 0x0002C8, "Member 'FPostProcessSettings::ColorCorrectionShadowsMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BlueCorrection) == 0x0002CC, "Member 'FPostProcessSettings::BlueCorrection' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ExpandGamut) == 0x0002D0, "Member 'FPostProcessSettings::ExpandGamut' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ToneCurveAmount) == 0x0002D4, "Member 'FPostProcessSettings::ToneCurveAmount' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmSlope) == 0x0002D8, "Member 'FPostProcessSettings::FilmSlope' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmToe) == 0x0002DC, "Member 'FPostProcessSettings::FilmToe' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmShoulder) == 0x0002E0, "Member 'FPostProcessSettings::FilmShoulder' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmBlackClip) == 0x0002E4, "Member 'FPostProcessSettings::FilmBlackClip' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmWhiteClip) == 0x0002E8, "Member 'FPostProcessSettings::FilmWhiteClip' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SceneColorTint) == 0x0002EC, "Member 'FPostProcessSettings::SceneColorTint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SceneFringeIntensity) == 0x0002FC, "Member 'FPostProcessSettings::SceneFringeIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ChromaticAberrationStartOffset) == 0x000300, "Member 'FPostProcessSettings::ChromaticAberrationStartOffset' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomIntensity) == 0x000304, "Member 'FPostProcessSettings::BloomIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomThreshold) == 0x000308, "Member 'FPostProcessSettings::BloomThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomSizeScale) == 0x00030C, "Member 'FPostProcessSettings::BloomSizeScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom1Size) == 0x000310, "Member 'FPostProcessSettings::Bloom1Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom2Size) == 0x000314, "Member 'FPostProcessSettings::Bloom2Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom3Size) == 0x000318, "Member 'FPostProcessSettings::Bloom3Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom4Size) == 0x00031C, "Member 'FPostProcessSettings::Bloom4Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom5Size) == 0x000320, "Member 'FPostProcessSettings::Bloom5Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom6Size) == 0x000324, "Member 'FPostProcessSettings::Bloom6Size' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom1Tint) == 0x000328, "Member 'FPostProcessSettings::Bloom1Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom2Tint) == 0x000338, "Member 'FPostProcessSettings::Bloom2Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom3Tint) == 0x000348, "Member 'FPostProcessSettings::Bloom3Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom4Tint) == 0x000358, "Member 'FPostProcessSettings::Bloom4Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom5Tint) == 0x000368, "Member 'FPostProcessSettings::Bloom5Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Bloom6Tint) == 0x000378, "Member 'FPostProcessSettings::Bloom6Tint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionScatterDispersion) == 0x000388, "Member 'FPostProcessSettings::BloomConvolutionScatterDispersion' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionSize) == 0x00038C, "Member 'FPostProcessSettings::BloomConvolutionSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionTexture) == 0x000390, "Member 'FPostProcessSettings::BloomConvolutionTexture' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionCenterUV) == 0x000398, "Member 'FPostProcessSettings::BloomConvolutionCenterUV' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionPreFilterMin) == 0x0003A8, "Member 'FPostProcessSettings::BloomConvolutionPreFilterMin' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionPreFilterMax) == 0x0003AC, "Member 'FPostProcessSettings::BloomConvolutionPreFilterMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionPreFilterMult) == 0x0003B0, "Member 'FPostProcessSettings::BloomConvolutionPreFilterMult' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomConvolutionBufferScale) == 0x0003B4, "Member 'FPostProcessSettings::BloomConvolutionBufferScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomDirtMask) == 0x0003B8, "Member 'FPostProcessSettings::BloomDirtMask' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomDirtMaskIntensity) == 0x0003C0, "Member 'FPostProcessSettings::BloomDirtMaskIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, BloomDirtMaskTint) == 0x0003C4, "Member 'FPostProcessSettings::BloomDirtMaskTint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DynamicGlobalIlluminationMethod) == 0x0003D4, "Member 'FPostProcessSettings::DynamicGlobalIlluminationMethod' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, IndirectLightingColor) == 0x0003D8, "Member 'FPostProcessSettings::IndirectLightingColor' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, IndirectLightingIntensity) == 0x0003E8, "Member 'FPostProcessSettings::IndirectLightingIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSceneLightingQuality) == 0x0003EC, "Member 'FPostProcessSettings::LumenSceneLightingQuality' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSceneDetail) == 0x0003F0, "Member 'FPostProcessSettings::LumenSceneDetail' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSceneViewDistance) == 0x0003F4, "Member 'FPostProcessSettings::LumenSceneViewDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSceneLightingUpdateSpeed) == 0x0003F8, "Member 'FPostProcessSettings::LumenSceneLightingUpdateSpeed' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenFinalGatherQuality) == 0x0003FC, "Member 'FPostProcessSettings::LumenFinalGatherQuality' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenFinalGatherLightingUpdateSpeed) == 0x000400, "Member 'FPostProcessSettings::LumenFinalGatherLightingUpdateSpeed' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenMaxTraceDistance) == 0x000404, "Member 'FPostProcessSettings::LumenMaxTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenDiffuseColorBoost) == 0x000408, "Member 'FPostProcessSettings::LumenDiffuseColorBoost' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSkylightLeaking) == 0x00040C, "Member 'FPostProcessSettings::LumenSkylightLeaking' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenFullSkylightLeakingDistance) == 0x000410, "Member 'FPostProcessSettings::LumenFullSkylightLeakingDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenSurfaceCacheResolution) == 0x000414, "Member 'FPostProcessSettings::LumenSurfaceCacheResolution' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingGIType) == 0x000418, "Member 'FPostProcessSettings::RayTracingGIType' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingGIMaxBounces) == 0x00041C, "Member 'FPostProcessSettings::RayTracingGIMaxBounces' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingGISamplesPerPixel) == 0x000420, "Member 'FPostProcessSettings::RayTracingGISamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ReflectionMethod) == 0x000424, "Member 'FPostProcessSettings::ReflectionMethod' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ReflectionsType) == 0x000425, "Member 'FPostProcessSettings::ReflectionsType' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenReflectionQuality) == 0x000428, "Member 'FPostProcessSettings::LumenReflectionQuality' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenRayLightingMode) == 0x00042C, "Member 'FPostProcessSettings::LumenRayLightingMode' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LumenMaxReflectionBounces) == 0x000430, "Member 'FPostProcessSettings::LumenMaxReflectionBounces' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ScreenSpaceReflectionIntensity) == 0x000434, "Member 'FPostProcessSettings::ScreenSpaceReflectionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ScreenSpaceReflectionQuality) == 0x000438, "Member 'FPostProcessSettings::ScreenSpaceReflectionQuality' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ScreenSpaceReflectionMaxRoughness) == 0x00043C, "Member 'FPostProcessSettings::ScreenSpaceReflectionMaxRoughness' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingReflectionsMaxRoughness) == 0x000440, "Member 'FPostProcessSettings::RayTracingReflectionsMaxRoughness' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingReflectionsMaxBounces) == 0x000444, "Member 'FPostProcessSettings::RayTracingReflectionsMaxBounces' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingReflectionsSamplesPerPixel) == 0x000448, "Member 'FPostProcessSettings::RayTracingReflectionsSamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingReflectionsShadows) == 0x00044C, "Member 'FPostProcessSettings::RayTracingReflectionsShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientCubemapTint) == 0x000450, "Member 'FPostProcessSettings::AmbientCubemapTint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientCubemapIntensity) == 0x000460, "Member 'FPostProcessSettings::AmbientCubemapIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientCubemap) == 0x000468, "Member 'FPostProcessSettings::AmbientCubemap' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, CameraShutterSpeed) == 0x000470, "Member 'FPostProcessSettings::CameraShutterSpeed' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, CameraISO) == 0x000474, "Member 'FPostProcessSettings::CameraISO' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldFstop) == 0x000478, "Member 'FPostProcessSettings::DepthOfFieldFstop' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldMinFstop) == 0x00047C, "Member 'FPostProcessSettings::DepthOfFieldMinFstop' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldBladeCount) == 0x000480, "Member 'FPostProcessSettings::DepthOfFieldBladeCount' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureBias) == 0x000484, "Member 'FPostProcessSettings::AutoExposureBias' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureBiasBackup) == 0x000488, "Member 'FPostProcessSettings::AutoExposureBiasBackup' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureBiasCurve) == 0x000498, "Member 'FPostProcessSettings::AutoExposureBiasCurve' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureMeterMask) == 0x0004A0, "Member 'FPostProcessSettings::AutoExposureMeterMask' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureLowPercent) == 0x0004A8, "Member 'FPostProcessSettings::AutoExposureLowPercent' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureHighPercent) == 0x0004AC, "Member 'FPostProcessSettings::AutoExposureHighPercent' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureMinBrightness) == 0x0004B0, "Member 'FPostProcessSettings::AutoExposureMinBrightness' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureMaxBrightness) == 0x0004B4, "Member 'FPostProcessSettings::AutoExposureMaxBrightness' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureSpeedUp) == 0x0004B8, "Member 'FPostProcessSettings::AutoExposureSpeedUp' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureSpeedDown) == 0x0004BC, "Member 'FPostProcessSettings::AutoExposureSpeedDown' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, HistogramLogMin) == 0x0004C0, "Member 'FPostProcessSettings::HistogramLogMin' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, HistogramLogMax) == 0x0004C4, "Member 'FPostProcessSettings::HistogramLogMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AutoExposureCalibrationConstant) == 0x0004C8, "Member 'FPostProcessSettings::AutoExposureCalibrationConstant' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureContrastScale) == 0x0004CC, "Member 'FPostProcessSettings::LocalExposureContrastScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureHighlightContrastScale) == 0x0004D0, "Member 'FPostProcessSettings::LocalExposureHighlightContrastScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureShadowContrastScale) == 0x0004D4, "Member 'FPostProcessSettings::LocalExposureShadowContrastScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureDetailStrength) == 0x0004D8, "Member 'FPostProcessSettings::LocalExposureDetailStrength' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureBlurredLuminanceBlend) == 0x0004DC, "Member 'FPostProcessSettings::LocalExposureBlurredLuminanceBlend' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureBlurredLuminanceKernelSizePercent) == 0x0004E0, "Member 'FPostProcessSettings::LocalExposureBlurredLuminanceKernelSizePercent' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LocalExposureMiddleGreyBias) == 0x0004E4, "Member 'FPostProcessSettings::LocalExposureMiddleGreyBias' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareIntensity) == 0x0004E8, "Member 'FPostProcessSettings::LensFlareIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareTint) == 0x0004EC, "Member 'FPostProcessSettings::LensFlareTint' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareBokehSize) == 0x0004FC, "Member 'FPostProcessSettings::LensFlareBokehSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareThreshold) == 0x000500, "Member 'FPostProcessSettings::LensFlareThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareBokehShape) == 0x000508, "Member 'FPostProcessSettings::LensFlareBokehShape' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LensFlareTints) == 0x000510, "Member 'FPostProcessSettings::LensFlareTints' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, VignetteIntensity) == 0x000590, "Member 'FPostProcessSettings::VignetteIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, Sharpen) == 0x000594, "Member 'FPostProcessSettings::Sharpen' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, GrainJitter) == 0x000598, "Member 'FPostProcessSettings::GrainJitter' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, GrainIntensity) == 0x00059C, "Member 'FPostProcessSettings::GrainIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainIntensity) == 0x0005A0, "Member 'FPostProcessSettings::FilmGrainIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainIntensityShadows) == 0x0005A4, "Member 'FPostProcessSettings::FilmGrainIntensityShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainIntensityMidtones) == 0x0005A8, "Member 'FPostProcessSettings::FilmGrainIntensityMidtones' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainIntensityHighlights) == 0x0005AC, "Member 'FPostProcessSettings::FilmGrainIntensityHighlights' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainShadowsMax) == 0x0005B0, "Member 'FPostProcessSettings::FilmGrainShadowsMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainHighlightsMin) == 0x0005B4, "Member 'FPostProcessSettings::FilmGrainHighlightsMin' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainHighlightsMax) == 0x0005B8, "Member 'FPostProcessSettings::FilmGrainHighlightsMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainTexelSize) == 0x0005BC, "Member 'FPostProcessSettings::FilmGrainTexelSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, FilmGrainTexture) == 0x0005C0, "Member 'FPostProcessSettings::FilmGrainTexture' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionIntensity) == 0x0005C8, "Member 'FPostProcessSettings::AmbientOcclusionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionStaticFraction) == 0x0005CC, "Member 'FPostProcessSettings::AmbientOcclusionStaticFraction' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionRadius) == 0x0005D0, "Member 'FPostProcessSettings::AmbientOcclusionRadius' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionFadeDistance) == 0x0005D8, "Member 'FPostProcessSettings::AmbientOcclusionFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionFadeRadius) == 0x0005DC, "Member 'FPostProcessSettings::AmbientOcclusionFadeRadius' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionDistance) == 0x0005E0, "Member 'FPostProcessSettings::AmbientOcclusionDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionPower) == 0x0005E4, "Member 'FPostProcessSettings::AmbientOcclusionPower' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionBias) == 0x0005E8, "Member 'FPostProcessSettings::AmbientOcclusionBias' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionQuality) == 0x0005EC, "Member 'FPostProcessSettings::AmbientOcclusionQuality' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionMipBlend) == 0x0005F0, "Member 'FPostProcessSettings::AmbientOcclusionMipBlend' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionMipScale) == 0x0005F4, "Member 'FPostProcessSettings::AmbientOcclusionMipScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionMipThreshold) == 0x0005F8, "Member 'FPostProcessSettings::AmbientOcclusionMipThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, AmbientOcclusionTemporalBlendWeight) == 0x0005FC, "Member 'FPostProcessSettings::AmbientOcclusionTemporalBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingAOSamplesPerPixel) == 0x000604, "Member 'FPostProcessSettings::RayTracingAOSamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingAOIntensity) == 0x000608, "Member 'FPostProcessSettings::RayTracingAOIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingAORadius) == 0x00060C, "Member 'FPostProcessSettings::RayTracingAORadius' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGradingIntensity) == 0x000610, "Member 'FPostProcessSettings::ColorGradingIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ColorGradingLUT) == 0x000618, "Member 'FPostProcessSettings::ColorGradingLUT' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldSensorWidth) == 0x000620, "Member 'FPostProcessSettings::DepthOfFieldSensorWidth' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldSqueezeFactor) == 0x000624, "Member 'FPostProcessSettings::DepthOfFieldSqueezeFactor' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldFocalDistance) == 0x000628, "Member 'FPostProcessSettings::DepthOfFieldFocalDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldDepthBlurAmount) == 0x00062C, "Member 'FPostProcessSettings::DepthOfFieldDepthBlurAmount' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldDepthBlurRadius) == 0x000630, "Member 'FPostProcessSettings::DepthOfFieldDepthBlurRadius' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldFocalRegion) == 0x000634, "Member 'FPostProcessSettings::DepthOfFieldFocalRegion' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldNearTransitionRegion) == 0x000638, "Member 'FPostProcessSettings::DepthOfFieldNearTransitionRegion' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldFarTransitionRegion) == 0x00063C, "Member 'FPostProcessSettings::DepthOfFieldFarTransitionRegion' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldScale) == 0x000640, "Member 'FPostProcessSettings::DepthOfFieldScale' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldNearBlurSize) == 0x000644, "Member 'FPostProcessSettings::DepthOfFieldNearBlurSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldFarBlurSize) == 0x000648, "Member 'FPostProcessSettings::DepthOfFieldFarBlurSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldOcclusion) == 0x00064C, "Member 'FPostProcessSettings::DepthOfFieldOcclusion' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldSkyFocusDistance) == 0x000650, "Member 'FPostProcessSettings::DepthOfFieldSkyFocusDistance' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, DepthOfFieldVignetteSize) == 0x000654, "Member 'FPostProcessSettings::DepthOfFieldVignetteSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, MotionBlurAmount) == 0x000658, "Member 'FPostProcessSettings::MotionBlurAmount' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, MotionBlurMax) == 0x00065C, "Member 'FPostProcessSettings::MotionBlurMax' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, MotionBlurTargetFPS) == 0x000660, "Member 'FPostProcessSettings::MotionBlurTargetFPS' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, MotionBlurPerObjectSize) == 0x000664, "Member 'FPostProcessSettings::MotionBlurPerObjectSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVIntensity) == 0x000668, "Member 'FPostProcessSettings::LPVIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVVplInjectionBias) == 0x00066C, "Member 'FPostProcessSettings::LPVVplInjectionBias' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVSize) == 0x000670, "Member 'FPostProcessSettings::LPVSize' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVSecondaryOcclusionIntensity) == 0x000674, "Member 'FPostProcessSettings::LPVSecondaryOcclusionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVSecondaryBounceIntensity) == 0x000678, "Member 'FPostProcessSettings::LPVSecondaryBounceIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVGeometryVolumeBias) == 0x00067C, "Member 'FPostProcessSettings::LPVGeometryVolumeBias' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVEmissiveInjectionIntensity) == 0x000680, "Member 'FPostProcessSettings::LPVEmissiveInjectionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVDirectionalOcclusionIntensity) == 0x000684, "Member 'FPostProcessSettings::LPVDirectionalOcclusionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVDirectionalOcclusionRadius) == 0x000688, "Member 'FPostProcessSettings::LPVDirectionalOcclusionRadius' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVDiffuseOcclusionExponent) == 0x00068C, "Member 'FPostProcessSettings::LPVDiffuseOcclusionExponent' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVSpecularOcclusionExponent) == 0x000690, "Member 'FPostProcessSettings::LPVSpecularOcclusionExponent' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVDiffuseOcclusionIntensity) == 0x000694, "Member 'FPostProcessSettings::LPVDiffuseOcclusionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVSpecularOcclusionIntensity) == 0x000698, "Member 'FPostProcessSettings::LPVSpecularOcclusionIntensity' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, TranslucencyType) == 0x00069C, "Member 'FPostProcessSettings::TranslucencyType' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingTranslucencyMaxRoughness) == 0x0006A0, "Member 'FPostProcessSettings::RayTracingTranslucencyMaxRoughness' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingTranslucencyRefractionRays) == 0x0006A4, "Member 'FPostProcessSettings::RayTracingTranslucencyRefractionRays' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingTranslucencySamplesPerPixel) == 0x0006A8, "Member 'FPostProcessSettings::RayTracingTranslucencySamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, RayTracingTranslucencyShadows) == 0x0006AC, "Member 'FPostProcessSettings::RayTracingTranslucencyShadows' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, PathTracingMaxBounces) == 0x0006B0, "Member 'FPostProcessSettings::PathTracingMaxBounces' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, PathTracingSamplesPerPixel) == 0x0006B4, "Member 'FPostProcessSettings::PathTracingSamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, PathTracingMaxPathExposure) == 0x0006B8, "Member 'FPostProcessSettings::PathTracingMaxPathExposure' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVFadeRange) == 0x0006C0, "Member 'FPostProcessSettings::LPVFadeRange' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, LPVDirectionalOcclusionFadeRange) == 0x0006C4, "Member 'FPostProcessSettings::LPVDirectionalOcclusionFadeRange' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, ScreenPercentage) == 0x0006C8, "Member 'FPostProcessSettings::ScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SMRTAdaptiveRayCount) == 0x0006CC, "Member 'FPostProcessSettings::SMRTAdaptiveRayCount' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SMRTRayCountLocal) == 0x0006D0, "Member 'FPostProcessSettings::SMRTRayCountLocal' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SMRTSamplesPerRayLocal) == 0x0006D4, "Member 'FPostProcessSettings::SMRTSamplesPerRayLocal' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SMRTRayCountDirectional) == 0x0006D8, "Member 'FPostProcessSettings::SMRTRayCountDirectional' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, SMRTSamplesPerRayDirectional) == 0x0006DC, "Member 'FPostProcessSettings::SMRTSamplesPerRayDirectional' has a wrong offset!"); \ +static_assert(offsetof(FPostProcessSettings, WeightedBlendables) == 0x0006E0, "Member 'FPostProcessSettings::WeightedBlendables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialInput \ +static_assert(alignof(FMaterialInput) == 0x000008, "Wrong alignment on FMaterialInput"); \ +static_assert(sizeof(FMaterialInput) == 0x000028, "Wrong size on FMaterialInput"); \ +static_assert(offsetof(FMaterialInput, Expression) == 0x000000, "Member 'FMaterialInput::Expression' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, OutputIndex) == 0x000008, "Member 'FMaterialInput::OutputIndex' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, InputName) == 0x00000C, "Member 'FMaterialInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, Mask) == 0x000014, "Member 'FMaterialInput::Mask' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, MaskR) == 0x000018, "Member 'FMaterialInput::MaskR' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, MaskG) == 0x00001C, "Member 'FMaterialInput::MaskG' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, MaskB) == 0x000020, "Member 'FMaterialInput::MaskB' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInput, MaskA) == 0x000024, "Member 'FMaterialInput::MaskA' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessIndirection \ +static_assert(alignof(FPropertyAccessIndirection) == 0x000008, "Wrong alignment on FPropertyAccessIndirection"); \ +static_assert(sizeof(FPropertyAccessIndirection) == 0x000040, "Wrong size on FPropertyAccessIndirection"); \ +static_assert(offsetof(FPropertyAccessIndirection, Property) == 0x000000, "Member 'FPropertyAccessIndirection::Property' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, Function) == 0x000020, "Member 'FPropertyAccessIndirection::Function' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, ReturnBufferSize) == 0x000028, "Member 'FPropertyAccessIndirection::ReturnBufferSize' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, ReturnBufferAlignment) == 0x00002C, "Member 'FPropertyAccessIndirection::ReturnBufferAlignment' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, ArrayIndex) == 0x000030, "Member 'FPropertyAccessIndirection::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, Offset) == 0x000034, "Member 'FPropertyAccessIndirection::Offset' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, ObjectType) == 0x000038, "Member 'FPropertyAccessIndirection::ObjectType' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirection, Type) == 0x000039, "Member 'FPropertyAccessIndirection::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorInstanceHandle \ +static_assert(alignof(FActorInstanceHandle) == 0x000004, "Wrong alignment on FActorInstanceHandle"); \ +static_assert(sizeof(FActorInstanceHandle) == 0x000018, "Wrong size on FActorInstanceHandle"); \ +static_assert(offsetof(FActorInstanceHandle, Actor) == 0x000000, "Member 'FActorInstanceHandle::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakedFloatCustomAttribute \ +static_assert(alignof(FBakedFloatCustomAttribute) == 0x000001, "Wrong alignment on FBakedFloatCustomAttribute"); \ +static_assert(sizeof(FBakedFloatCustomAttribute) == 0x000001, "Wrong size on FBakedFloatCustomAttribute"); \ + +#define DUMPER7_ASSERTS_FPoseLinkBase \ +static_assert(alignof(FPoseLinkBase) == 0x000008, "Wrong alignment on FPoseLinkBase"); \ +static_assert(sizeof(FPoseLinkBase) == 0x000010, "Wrong size on FPoseLinkBase"); \ +static_assert(offsetof(FPoseLinkBase, LinkID) == 0x000008, "Member 'FPoseLinkBase::LinkID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseLink \ +static_assert(alignof(FPoseLink) == 0x000008, "Wrong alignment on FPoseLink"); \ +static_assert(sizeof(FPoseLink) == 0x000010, "Wrong size on FPoseLink"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Base \ +static_assert(alignof(FAnimNode_Base) == 0x000008, "Wrong alignment on FAnimNode_Base"); \ +static_assert(sizeof(FAnimNode_Base) == 0x000010, "Wrong size on FAnimNode_Base"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Root \ +static_assert(alignof(FAnimNode_Root) == 0x000008, "Wrong alignment on FAnimNode_Root"); \ +static_assert(sizeof(FAnimNode_Root) == 0x000020, "Wrong size on FAnimNode_Root"); \ +static_assert(offsetof(FAnimNode_Root, Result) == 0x000010, "Member 'FAnimNode_Root::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributeKey \ +static_assert(alignof(FAttributeKey) == 0x000008, "Wrong alignment on FAttributeKey"); \ +static_assert(sizeof(FAttributeKey) == 0x000018, "Wrong size on FAttributeKey"); \ +static_assert(offsetof(FAttributeKey, Time) == 0x000000, "Member 'FAttributeKey::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichCurveKey \ +static_assert(alignof(FRichCurveKey) == 0x000004, "Wrong alignment on FRichCurveKey"); \ +static_assert(sizeof(FRichCurveKey) == 0x00001C, "Wrong size on FRichCurveKey"); \ +static_assert(offsetof(FRichCurveKey, InterpMode) == 0x000000, "Member 'FRichCurveKey::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, TangentMode) == 0x000001, "Member 'FRichCurveKey::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, TangentWeightMode) == 0x000002, "Member 'FRichCurveKey::TangentWeightMode' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, Time) == 0x000004, "Member 'FRichCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, Value) == 0x000008, "Member 'FRichCurveKey::Value' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, ArriveTangent) == 0x00000C, "Member 'FRichCurveKey::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, ArriveTangentWeight) == 0x000010, "Member 'FRichCurveKey::ArriveTangentWeight' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, LeaveTangent) == 0x000014, "Member 'FRichCurveKey::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FRichCurveKey, LeaveTangentWeight) == 0x000018, "Member 'FRichCurveKey::LeaveTangentWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKeyHandleMap \ +static_assert(alignof(FKeyHandleMap) == 0x000008, "Wrong alignment on FKeyHandleMap"); \ +static_assert(sizeof(FKeyHandleMap) == 0x000060, "Wrong size on FKeyHandleMap"); \ + +#define DUMPER7_ASSERTS_FIndexedCurve \ +static_assert(alignof(FIndexedCurve) == 0x000008, "Wrong alignment on FIndexedCurve"); \ +static_assert(sizeof(FIndexedCurve) == 0x000068, "Wrong size on FIndexedCurve"); \ +static_assert(offsetof(FIndexedCurve, KeyHandlesToIndices) == 0x000008, "Member 'FIndexedCurve::KeyHandlesToIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRealCurve \ +static_assert(alignof(FRealCurve) == 0x000008, "Wrong alignment on FRealCurve"); \ +static_assert(sizeof(FRealCurve) == 0x000070, "Wrong size on FRealCurve"); \ +static_assert(offsetof(FRealCurve, DefaultValue) == 0x000068, "Member 'FRealCurve::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FRealCurve, PreInfinityExtrap) == 0x00006C, "Member 'FRealCurve::PreInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FRealCurve, PostInfinityExtrap) == 0x00006D, "Member 'FRealCurve::PostInfinityExtrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichCurve \ +static_assert(alignof(FRichCurve) == 0x000008, "Wrong alignment on FRichCurve"); \ +static_assert(sizeof(FRichCurve) == 0x000080, "Wrong size on FRichCurve"); \ +static_assert(offsetof(FRichCurve, Keys) == 0x000070, "Member 'FRichCurve::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuntimeFloatCurve \ +static_assert(alignof(FRuntimeFloatCurve) == 0x000008, "Wrong alignment on FRuntimeFloatCurve"); \ +static_assert(sizeof(FRuntimeFloatCurve) == 0x000088, "Wrong size on FRuntimeFloatCurve"); \ +static_assert(offsetof(FRuntimeFloatCurve, EditorCurveData) == 0x000000, "Member 'FRuntimeFloatCurve::EditorCurveData' has a wrong offset!"); \ +static_assert(offsetof(FRuntimeFloatCurve, ExternalCurve) == 0x000080, "Member 'FRuntimeFloatCurve::ExternalCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FForceFeedbackChannelDetails \ +static_assert(alignof(FForceFeedbackChannelDetails) == 0x000008, "Wrong alignment on FForceFeedbackChannelDetails"); \ +static_assert(sizeof(FForceFeedbackChannelDetails) == 0x000090, "Wrong size on FForceFeedbackChannelDetails"); \ +static_assert(offsetof(FForceFeedbackChannelDetails, Curve) == 0x000008, "Member 'FForceFeedbackChannelDetails::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FColorMaterialInput \ +static_assert(alignof(FColorMaterialInput) == 0x000008, "Wrong alignment on FColorMaterialInput"); \ +static_assert(sizeof(FColorMaterialInput) == 0x000030, "Wrong size on FColorMaterialInput"); \ +static_assert(offsetof(FColorMaterialInput, Constant) == 0x00002C, "Member 'FColorMaterialInput::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamingRenderAssetPrimitiveInfo \ +static_assert(alignof(FStreamingRenderAssetPrimitiveInfo) == 0x000008, "Wrong alignment on FStreamingRenderAssetPrimitiveInfo"); \ +static_assert(sizeof(FStreamingRenderAssetPrimitiveInfo) == 0x000050, "Wrong size on FStreamingRenderAssetPrimitiveInfo"); \ +static_assert(offsetof(FStreamingRenderAssetPrimitiveInfo, RenderAsset) == 0x000000, "Member 'FStreamingRenderAssetPrimitiveInfo::RenderAsset' has a wrong offset!"); \ +static_assert(offsetof(FStreamingRenderAssetPrimitiveInfo, Bounds) == 0x000008, "Member 'FStreamingRenderAssetPrimitiveInfo::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FStreamingRenderAssetPrimitiveInfo, TexelFactor) == 0x000040, "Member 'FStreamingRenderAssetPrimitiveInfo::TexelFactor' has a wrong offset!"); \ +static_assert(offsetof(FStreamingRenderAssetPrimitiveInfo, PackedRelativeBox) == 0x000044, "Member 'FStreamingRenderAssetPrimitiveInfo::PackedRelativeBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SaveCachedPose \ +static_assert(alignof(FAnimNode_SaveCachedPose) == 0x000008, "Wrong alignment on FAnimNode_SaveCachedPose"); \ +static_assert(sizeof(FAnimNode_SaveCachedPose) == 0x000080, "Wrong size on FAnimNode_SaveCachedPose"); \ +static_assert(offsetof(FAnimNode_SaveCachedPose, Pose) == 0x000010, "Member 'FAnimNode_SaveCachedPose::Pose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SaveCachedPose, CachePoseName) == 0x000020, "Member 'FAnimNode_SaveCachedPose::CachePoseName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLightingChannels \ +static_assert(alignof(FLightingChannels) == 0x000001, "Wrong alignment on FLightingChannels"); \ +static_assert(sizeof(FLightingChannels) == 0x000001, "Wrong size on FLightingChannels"); \ + +#define DUMPER7_ASSERTS_FConstraintBaseParams \ +static_assert(alignof(FConstraintBaseParams) == 0x000004, "Wrong alignment on FConstraintBaseParams"); \ +static_assert(sizeof(FConstraintBaseParams) == 0x000014, "Wrong size on FConstraintBaseParams"); \ +static_assert(offsetof(FConstraintBaseParams, Stiffness) == 0x000000, "Member 'FConstraintBaseParams::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FConstraintBaseParams, Damping) == 0x000004, "Member 'FConstraintBaseParams::Damping' has a wrong offset!"); \ +static_assert(offsetof(FConstraintBaseParams, Restitution) == 0x000008, "Member 'FConstraintBaseParams::Restitution' has a wrong offset!"); \ +static_assert(offsetof(FConstraintBaseParams, ContactDistance) == 0x00000C, "Member 'FConstraintBaseParams::ContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLinearConstraint \ +static_assert(alignof(FLinearConstraint) == 0x000004, "Wrong alignment on FLinearConstraint"); \ +static_assert(sizeof(FLinearConstraint) == 0x00001C, "Wrong size on FLinearConstraint"); \ +static_assert(offsetof(FLinearConstraint, Limit) == 0x000014, "Member 'FLinearConstraint::Limit' has a wrong offset!"); \ +static_assert(offsetof(FLinearConstraint, XMotion) == 0x000018, "Member 'FLinearConstraint::XMotion' has a wrong offset!"); \ +static_assert(offsetof(FLinearConstraint, YMotion) == 0x000019, "Member 'FLinearConstraint::YMotion' has a wrong offset!"); \ +static_assert(offsetof(FLinearConstraint, ZMotion) == 0x00001A, "Member 'FLinearConstraint::ZMotion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConeConstraint \ +static_assert(alignof(FConeConstraint) == 0x000004, "Wrong alignment on FConeConstraint"); \ +static_assert(sizeof(FConeConstraint) == 0x000020, "Wrong size on FConeConstraint"); \ +static_assert(offsetof(FConeConstraint, Swing1LimitDegrees) == 0x000014, "Member 'FConeConstraint::Swing1LimitDegrees' has a wrong offset!"); \ +static_assert(offsetof(FConeConstraint, Swing2LimitDegrees) == 0x000018, "Member 'FConeConstraint::Swing2LimitDegrees' has a wrong offset!"); \ +static_assert(offsetof(FConeConstraint, Swing1Motion) == 0x00001C, "Member 'FConeConstraint::Swing1Motion' has a wrong offset!"); \ +static_assert(offsetof(FConeConstraint, Swing2Motion) == 0x00001D, "Member 'FConeConstraint::Swing2Motion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTwistConstraint \ +static_assert(alignof(FTwistConstraint) == 0x000004, "Wrong alignment on FTwistConstraint"); \ +static_assert(sizeof(FTwistConstraint) == 0x00001C, "Wrong size on FTwistConstraint"); \ +static_assert(offsetof(FTwistConstraint, TwistLimitDegrees) == 0x000014, "Member 'FTwistConstraint::TwistLimitDegrees' has a wrong offset!"); \ +static_assert(offsetof(FTwistConstraint, TwistMotion) == 0x000018, "Member 'FTwistConstraint::TwistMotion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintDrive \ +static_assert(alignof(FConstraintDrive) == 0x000004, "Wrong alignment on FConstraintDrive"); \ +static_assert(sizeof(FConstraintDrive) == 0x000010, "Wrong size on FConstraintDrive"); \ +static_assert(offsetof(FConstraintDrive, Stiffness) == 0x000000, "Member 'FConstraintDrive::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDrive, Damping) == 0x000004, "Member 'FConstraintDrive::Damping' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDrive, MaxForce) == 0x000008, "Member 'FConstraintDrive::MaxForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLinearDriveConstraint \ +static_assert(alignof(FLinearDriveConstraint) == 0x000008, "Wrong alignment on FLinearDriveConstraint"); \ +static_assert(sizeof(FLinearDriveConstraint) == 0x000068, "Wrong size on FLinearDriveConstraint"); \ +static_assert(offsetof(FLinearDriveConstraint, PositionTarget) == 0x000000, "Member 'FLinearDriveConstraint::PositionTarget' has a wrong offset!"); \ +static_assert(offsetof(FLinearDriveConstraint, VelocityTarget) == 0x000018, "Member 'FLinearDriveConstraint::VelocityTarget' has a wrong offset!"); \ +static_assert(offsetof(FLinearDriveConstraint, XDrive) == 0x000030, "Member 'FLinearDriveConstraint::XDrive' has a wrong offset!"); \ +static_assert(offsetof(FLinearDriveConstraint, YDrive) == 0x000040, "Member 'FLinearDriveConstraint::YDrive' has a wrong offset!"); \ +static_assert(offsetof(FLinearDriveConstraint, ZDrive) == 0x000050, "Member 'FLinearDriveConstraint::ZDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAngularDriveConstraint \ +static_assert(alignof(FAngularDriveConstraint) == 0x000008, "Wrong alignment on FAngularDriveConstraint"); \ +static_assert(sizeof(FAngularDriveConstraint) == 0x000068, "Wrong size on FAngularDriveConstraint"); \ +static_assert(offsetof(FAngularDriveConstraint, TwistDrive) == 0x000000, "Member 'FAngularDriveConstraint::TwistDrive' has a wrong offset!"); \ +static_assert(offsetof(FAngularDriveConstraint, SwingDrive) == 0x000010, "Member 'FAngularDriveConstraint::SwingDrive' has a wrong offset!"); \ +static_assert(offsetof(FAngularDriveConstraint, SlerpDrive) == 0x000020, "Member 'FAngularDriveConstraint::SlerpDrive' has a wrong offset!"); \ +static_assert(offsetof(FAngularDriveConstraint, OrientationTarget) == 0x000030, "Member 'FAngularDriveConstraint::OrientationTarget' has a wrong offset!"); \ +static_assert(offsetof(FAngularDriveConstraint, AngularVelocityTarget) == 0x000048, "Member 'FAngularDriveConstraint::AngularVelocityTarget' has a wrong offset!"); \ +static_assert(offsetof(FAngularDriveConstraint, AngularDriveMode) == 0x000060, "Member 'FAngularDriveConstraint::AngularDriveMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintProfileProperties \ +static_assert(alignof(FConstraintProfileProperties) == 0x000008, "Wrong alignment on FConstraintProfileProperties"); \ +static_assert(sizeof(FConstraintProfileProperties) == 0x000160, "Wrong size on FConstraintProfileProperties"); \ +static_assert(offsetof(FConstraintProfileProperties, ProjectionLinearTolerance) == 0x000000, "Member 'FConstraintProfileProperties::ProjectionLinearTolerance' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ProjectionAngularTolerance) == 0x000004, "Member 'FConstraintProfileProperties::ProjectionAngularTolerance' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ProjectionLinearAlpha) == 0x000008, "Member 'FConstraintProfileProperties::ProjectionLinearAlpha' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ProjectionAngularAlpha) == 0x00000C, "Member 'FConstraintProfileProperties::ProjectionAngularAlpha' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ShockPropagationAlpha) == 0x000010, "Member 'FConstraintProfileProperties::ShockPropagationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, LinearBreakThreshold) == 0x000014, "Member 'FConstraintProfileProperties::LinearBreakThreshold' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, LinearPlasticityThreshold) == 0x000018, "Member 'FConstraintProfileProperties::LinearPlasticityThreshold' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, AngularBreakThreshold) == 0x00001C, "Member 'FConstraintProfileProperties::AngularBreakThreshold' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, AngularPlasticityThreshold) == 0x000020, "Member 'FConstraintProfileProperties::AngularPlasticityThreshold' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ContactTransferScale) == 0x000024, "Member 'FConstraintProfileProperties::ContactTransferScale' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, LinearLimit) == 0x000028, "Member 'FConstraintProfileProperties::LinearLimit' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, ConeLimit) == 0x000044, "Member 'FConstraintProfileProperties::ConeLimit' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, TwistLimit) == 0x000064, "Member 'FConstraintProfileProperties::TwistLimit' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, LinearDrive) == 0x000088, "Member 'FConstraintProfileProperties::LinearDrive' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, AngularDrive) == 0x0000F0, "Member 'FConstraintProfileProperties::AngularDrive' has a wrong offset!"); \ +static_assert(offsetof(FConstraintProfileProperties, LinearPlasticityType) == 0x000158, "Member 'FConstraintProfileProperties::LinearPlasticityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicsConstraintProfileHandle \ +static_assert(alignof(FPhysicsConstraintProfileHandle) == 0x000008, "Wrong alignment on FPhysicsConstraintProfileHandle"); \ +static_assert(sizeof(FPhysicsConstraintProfileHandle) == 0x000168, "Wrong size on FPhysicsConstraintProfileHandle"); \ +static_assert(offsetof(FPhysicsConstraintProfileHandle, ProfileProperties) == 0x000000, "Member 'FPhysicsConstraintProfileHandle::ProfileProperties' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsConstraintProfileHandle, ProfileName) == 0x000160, "Member 'FPhysicsConstraintProfileHandle::ProfileName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDistributionLookupTable \ +static_assert(alignof(FDistributionLookupTable) == 0x000008, "Wrong alignment on FDistributionLookupTable"); \ +static_assert(sizeof(FDistributionLookupTable) == 0x000020, "Wrong size on FDistributionLookupTable"); \ +static_assert(offsetof(FDistributionLookupTable, TimeScale) == 0x000000, "Member 'FDistributionLookupTable::TimeScale' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, TimeBias) == 0x000004, "Member 'FDistributionLookupTable::TimeBias' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, Values) == 0x000008, "Member 'FDistributionLookupTable::Values' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, Op) == 0x000018, "Member 'FDistributionLookupTable::Op' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, EntryCount) == 0x000019, "Member 'FDistributionLookupTable::EntryCount' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, EntryStride) == 0x00001A, "Member 'FDistributionLookupTable::EntryStride' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, SubEntryStride) == 0x00001B, "Member 'FDistributionLookupTable::SubEntryStride' has a wrong offset!"); \ +static_assert(offsetof(FDistributionLookupTable, LockFlag) == 0x00001C, "Member 'FDistributionLookupTable::LockFlag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FA2Pose \ +static_assert(alignof(FA2Pose) == 0x000008, "Wrong alignment on FA2Pose"); \ +static_assert(sizeof(FA2Pose) == 0x000010, "Wrong size on FA2Pose"); \ +static_assert(offsetof(FA2Pose, Bones) == 0x000000, "Member 'FA2Pose::Bones' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformInterfaceData \ +static_assert(alignof(FPlatformInterfaceData) == 0x000008, "Wrong alignment on FPlatformInterfaceData"); \ +static_assert(sizeof(FPlatformInterfaceData) == 0x000030, "Wrong size on FPlatformInterfaceData"); \ +static_assert(offsetof(FPlatformInterfaceData, DataName) == 0x000000, "Member 'FPlatformInterfaceData::DataName' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceData, Type) == 0x000008, "Member 'FPlatformInterfaceData::Type' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceData, IntValue) == 0x00000C, "Member 'FPlatformInterfaceData::IntValue' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceData, FloatValue) == 0x000010, "Member 'FPlatformInterfaceData::FloatValue' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceData, StringValue) == 0x000018, "Member 'FPlatformInterfaceData::StringValue' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceData, ObjectValue) == 0x000028, "Member 'FPlatformInterfaceData::ObjectValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpressionInput \ +static_assert(alignof(FExpressionInput) == 0x000008, "Wrong alignment on FExpressionInput"); \ +static_assert(sizeof(FExpressionInput) == 0x000028, "Wrong size on FExpressionInput"); \ +static_assert(offsetof(FExpressionInput, Expression) == 0x000000, "Member 'FExpressionInput::Expression' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, OutputIndex) == 0x000008, "Member 'FExpressionInput::OutputIndex' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, InputName) == 0x00000C, "Member 'FExpressionInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, Mask) == 0x000014, "Member 'FExpressionInput::Mask' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, MaskR) == 0x000018, "Member 'FExpressionInput::MaskR' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, MaskG) == 0x00001C, "Member 'FExpressionInput::MaskG' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, MaskB) == 0x000020, "Member 'FExpressionInput::MaskB' has a wrong offset!"); \ +static_assert(offsetof(FExpressionInput, MaskA) == 0x000024, "Member 'FExpressionInput::MaskA' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSetMeshLinkup \ +static_assert(alignof(FAnimSetMeshLinkup) == 0x000008, "Wrong alignment on FAnimSetMeshLinkup"); \ +static_assert(sizeof(FAnimSetMeshLinkup) == 0x000010, "Wrong size on FAnimSetMeshLinkup"); \ +static_assert(offsetof(FAnimSetMeshLinkup, BoneToTrackTable) == 0x000000, "Member 'FAnimSetMeshLinkup::BoneToTrackTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLODMappingData \ +static_assert(alignof(FLODMappingData) == 0x000008, "Wrong alignment on FLODMappingData"); \ +static_assert(sizeof(FLODMappingData) == 0x000020, "Wrong size on FLODMappingData"); \ +static_assert(offsetof(FLODMappingData, Mapping) == 0x000000, "Member 'FLODMappingData::Mapping' has a wrong offset!"); \ +static_assert(offsetof(FLODMappingData, InverseMapping) == 0x000010, "Member 'FLODMappingData::InverseMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpressionOutput \ +static_assert(alignof(FExpressionOutput) == 0x000004, "Wrong alignment on FExpressionOutput"); \ +static_assert(sizeof(FExpressionOutput) == 0x00001C, "Wrong size on FExpressionOutput"); \ +static_assert(offsetof(FExpressionOutput, OutputName) == 0x000000, "Member 'FExpressionOutput::OutputName' has a wrong offset!"); \ +static_assert(offsetof(FExpressionOutput, Mask) == 0x000008, "Member 'FExpressionOutput::Mask' has a wrong offset!"); \ +static_assert(offsetof(FExpressionOutput, MaskR) == 0x00000C, "Member 'FExpressionOutput::MaskR' has a wrong offset!"); \ +static_assert(offsetof(FExpressionOutput, MaskG) == 0x000010, "Member 'FExpressionOutput::MaskG' has a wrong offset!"); \ +static_assert(offsetof(FExpressionOutput, MaskB) == 0x000014, "Member 'FExpressionOutput::MaskB' has a wrong offset!"); \ +static_assert(offsetof(FExpressionOutput, MaskA) == 0x000018, "Member 'FExpressionOutput::MaskA' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationCurveIdentifier \ +static_assert(alignof(FAnimationCurveIdentifier) == 0x000004, "Wrong alignment on FAnimationCurveIdentifier"); \ +static_assert(sizeof(FAnimationCurveIdentifier) == 0x00000C, "Wrong size on FAnimationCurveIdentifier"); \ +static_assert(offsetof(FAnimationCurveIdentifier, CurveName) == 0x000000, "Member 'FAnimationCurveIdentifier::CurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimationCurveIdentifier, CurveType) == 0x000008, "Member 'FAnimationCurveIdentifier::CurveType' has a wrong offset!"); \ +static_assert(offsetof(FAnimationCurveIdentifier, Channel) == 0x000009, "Member 'FAnimationCurveIdentifier::Channel' has a wrong offset!"); \ +static_assert(offsetof(FAnimationCurveIdentifier, Axis) == 0x00000A, "Member 'FAnimationCurveIdentifier::Axis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEmptyPayload \ +static_assert(alignof(FEmptyPayload) == 0x000001, "Wrong alignment on FEmptyPayload"); \ +static_assert(sizeof(FEmptyPayload) == 0x000001, "Wrong size on FEmptyPayload"); \ + +#define DUMPER7_ASSERTS_FCurvePayload \ +static_assert(alignof(FCurvePayload) == 0x000004, "Wrong alignment on FCurvePayload"); \ +static_assert(sizeof(FCurvePayload) == 0x00000C, "Wrong size on FCurvePayload"); \ +static_assert(offsetof(FCurvePayload, Identifier) == 0x000000, "Member 'FCurvePayload::Identifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveFlagsChangedPayload \ +static_assert(alignof(FCurveFlagsChangedPayload) == 0x000004, "Wrong alignment on FCurveFlagsChangedPayload"); \ +static_assert(sizeof(FCurveFlagsChangedPayload) == 0x000010, "Wrong size on FCurveFlagsChangedPayload"); \ +static_assert(offsetof(FCurveFlagsChangedPayload, OldFlags) == 0x00000C, "Member 'FCurveFlagsChangedPayload::OldFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBaseComponentReference \ +static_assert(alignof(FBaseComponentReference) == 0x000008, "Wrong alignment on FBaseComponentReference"); \ +static_assert(sizeof(FBaseComponentReference) == 0x000020, "Wrong size on FBaseComponentReference"); \ +static_assert(offsetof(FBaseComponentReference, ComponentProperty) == 0x000000, "Member 'FBaseComponentReference::ComponentProperty' has a wrong offset!"); \ +static_assert(offsetof(FBaseComponentReference, PathToComponent) == 0x000008, "Member 'FBaseComponentReference::PathToComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyEventReference \ +static_assert(alignof(FAnimNotifyEventReference) == 0x000008, "Wrong alignment on FAnimNotifyEventReference"); \ +static_assert(sizeof(FAnimNotifyEventReference) == 0x000030, "Wrong size on FAnimNotifyEventReference"); \ +static_assert(offsetof(FAnimNotifyEventReference, MirrorTable) == 0x000018, "Member 'FAnimNotifyEventReference::MirrorTable' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEventReference, NotifySource) == 0x000020, "Member 'FAnimNotifyEventReference::NotifySource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelViewportInfo \ +static_assert(alignof(FLevelViewportInfo) == 0x000008, "Wrong alignment on FLevelViewportInfo"); \ +static_assert(sizeof(FLevelViewportInfo) == 0x000038, "Wrong size on FLevelViewportInfo"); \ +static_assert(offsetof(FLevelViewportInfo, CamPosition) == 0x000000, "Member 'FLevelViewportInfo::CamPosition' has a wrong offset!"); \ +static_assert(offsetof(FLevelViewportInfo, CamRotation) == 0x000018, "Member 'FLevelViewportInfo::CamRotation' has a wrong offset!"); \ +static_assert(offsetof(FLevelViewportInfo, CamOrthoZoom) == 0x000030, "Member 'FLevelViewportInfo::CamOrthoZoom' has a wrong offset!"); \ +static_assert(offsetof(FLevelViewportInfo, CamUpdated) == 0x000034, "Member 'FLevelViewportInfo::CamUpdated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatDistribution \ +static_assert(alignof(FFloatDistribution) == 0x000008, "Wrong alignment on FFloatDistribution"); \ +static_assert(sizeof(FFloatDistribution) == 0x000020, "Wrong size on FFloatDistribution"); \ +static_assert(offsetof(FFloatDistribution, Table) == 0x000000, "Member 'FFloatDistribution::Table' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTentDistribution \ +static_assert(alignof(FTentDistribution) == 0x000004, "Wrong alignment on FTentDistribution"); \ +static_assert(sizeof(FTentDistribution) == 0x00000C, "Wrong size on FTentDistribution"); \ +static_assert(offsetof(FTentDistribution, TipAltitude) == 0x000000, "Member 'FTentDistribution::TipAltitude' has a wrong offset!"); \ +static_assert(offsetof(FTentDistribution, TipValue) == 0x000004, "Member 'FTentDistribution::TipValue' has a wrong offset!"); \ +static_assert(offsetof(FTentDistribution, Width) == 0x000008, "Member 'FTentDistribution::Width' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FResponseChannel \ +static_assert(alignof(FResponseChannel) == 0x000004, "Wrong alignment on FResponseChannel"); \ +static_assert(sizeof(FResponseChannel) == 0x00000C, "Wrong size on FResponseChannel"); \ +static_assert(offsetof(FResponseChannel, Channel) == 0x000000, "Member 'FResponseChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(FResponseChannel, Response) == 0x000008, "Member 'FResponseChannel::Response' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleEvent_GenerateInfo \ +static_assert(alignof(FParticleEvent_GenerateInfo) == 0x000008, "Wrong alignment on FParticleEvent_GenerateInfo"); \ +static_assert(sizeof(FParticleEvent_GenerateInfo) == 0x000028, "Wrong size on FParticleEvent_GenerateInfo"); \ +static_assert(offsetof(FParticleEvent_GenerateInfo, Type) == 0x000000, "Member 'FParticleEvent_GenerateInfo::Type' has a wrong offset!"); \ +static_assert(offsetof(FParticleEvent_GenerateInfo, Frequency) == 0x000004, "Member 'FParticleEvent_GenerateInfo::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FParticleEvent_GenerateInfo, ParticleFrequency) == 0x000008, "Member 'FParticleEvent_GenerateInfo::ParticleFrequency' has a wrong offset!"); \ +static_assert(offsetof(FParticleEvent_GenerateInfo, CustomName) == 0x000010, "Member 'FParticleEvent_GenerateInfo::CustomName' has a wrong offset!"); \ +static_assert(offsetof(FParticleEvent_GenerateInfo, ParticleModuleEventsToSendToGame) == 0x000018, "Member 'FParticleEvent_GenerateInfo::ParticleModuleEventsToSendToGame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatRK4SpringInterpolator \ +static_assert(alignof(FFloatRK4SpringInterpolator) == 0x000004, "Wrong alignment on FFloatRK4SpringInterpolator"); \ +static_assert(sizeof(FFloatRK4SpringInterpolator) == 0x000008, "Wrong size on FFloatRK4SpringInterpolator"); \ +static_assert(offsetof(FFloatRK4SpringInterpolator, StiffnessConstant) == 0x000000, "Member 'FFloatRK4SpringInterpolator::StiffnessConstant' has a wrong offset!"); \ +static_assert(offsetof(FFloatRK4SpringInterpolator, DampeningRatio) == 0x000004, "Member 'FFloatRK4SpringInterpolator::DampeningRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimecodeCustomAttributeNameSettings \ +static_assert(alignof(FTimecodeCustomAttributeNameSettings) == 0x000004, "Wrong alignment on FTimecodeCustomAttributeNameSettings"); \ +static_assert(sizeof(FTimecodeCustomAttributeNameSettings) == 0x000038, "Wrong size on FTimecodeCustomAttributeNameSettings"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, HourAttributeName) == 0x000000, "Member 'FTimecodeCustomAttributeNameSettings::HourAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, MinuteAttributeName) == 0x000008, "Member 'FTimecodeCustomAttributeNameSettings::MinuteAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, SecondAttributeName) == 0x000010, "Member 'FTimecodeCustomAttributeNameSettings::SecondAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, FrameAttributeName) == 0x000018, "Member 'FTimecodeCustomAttributeNameSettings::FrameAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, SubframeAttributeName) == 0x000020, "Member 'FTimecodeCustomAttributeNameSettings::SubframeAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, RateAttributeName) == 0x000028, "Member 'FTimecodeCustomAttributeNameSettings::RateAttributeName' has a wrong offset!"); \ +static_assert(offsetof(FTimecodeCustomAttributeNameSettings, TakenameAttributeName) == 0x000030, "Member 'FTimecodeCustomAttributeNameSettings::TakenameAttributeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDialogueContext \ +static_assert(alignof(FDialogueContext) == 0x000008, "Wrong alignment on FDialogueContext"); \ +static_assert(sizeof(FDialogueContext) == 0x000018, "Wrong size on FDialogueContext"); \ +static_assert(offsetof(FDialogueContext, Speaker) == 0x000000, "Member 'FDialogueContext::Speaker' has a wrong offset!"); \ +static_assert(offsetof(FDialogueContext, Targets) == 0x000008, "Member 'FDialogueContext::Targets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDialogueWaveParameter \ +static_assert(alignof(FDialogueWaveParameter) == 0x000008, "Wrong alignment on FDialogueWaveParameter"); \ +static_assert(sizeof(FDialogueWaveParameter) == 0x000020, "Wrong size on FDialogueWaveParameter"); \ +static_assert(offsetof(FDialogueWaveParameter, DialogueWave) == 0x000000, "Member 'FDialogueWaveParameter::DialogueWave' has a wrong offset!"); \ +static_assert(offsetof(FDialogueWaveParameter, Context) == 0x000008, "Member 'FDialogueWaveParameter::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRepMovement \ +static_assert(alignof(FRepMovement) == 0x000008, "Wrong alignment on FRepMovement"); \ +static_assert(sizeof(FRepMovement) == 0x000070, "Wrong size on FRepMovement"); \ +static_assert(offsetof(FRepMovement, LinearVelocity) == 0x000000, "Member 'FRepMovement::LinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, AngularVelocity) == 0x000018, "Member 'FRepMovement::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, Location) == 0x000030, "Member 'FRepMovement::Location' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, Rotation) == 0x000048, "Member 'FRepMovement::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, ServerFrame) == 0x000064, "Member 'FRepMovement::ServerFrame' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, ServerPhysicsHandle) == 0x000068, "Member 'FRepMovement::ServerPhysicsHandle' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, LocationQuantizationLevel) == 0x00006C, "Member 'FRepMovement::LocationQuantizationLevel' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, VelocityQuantizationLevel) == 0x00006D, "Member 'FRepMovement::VelocityQuantizationLevel' has a wrong offset!"); \ +static_assert(offsetof(FRepMovement, RotationQuantizationLevel) == 0x00006E, "Member 'FRepMovement::RotationQuantizationLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector_NetQuantize100 \ +static_assert(alignof(FVector_NetQuantize100) == 0x000008, "Wrong alignment on FVector_NetQuantize100"); \ +static_assert(sizeof(FVector_NetQuantize100) == 0x000018, "Wrong size on FVector_NetQuantize100"); \ + +#define DUMPER7_ASSERTS_FRootMotionSourceSettings \ +static_assert(alignof(FRootMotionSourceSettings) == 0x000001, "Wrong alignment on FRootMotionSourceSettings"); \ +static_assert(sizeof(FRootMotionSourceSettings) == 0x000001, "Wrong size on FRootMotionSourceSettings"); \ +static_assert(offsetof(FRootMotionSourceSettings, Flags) == 0x000000, "Member 'FRootMotionSourceSettings::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSourceGroup \ +static_assert(alignof(FRootMotionSourceGroup) == 0x000008, "Wrong alignment on FRootMotionSourceGroup"); \ +static_assert(sizeof(FRootMotionSourceGroup) == 0x000048, "Wrong size on FRootMotionSourceGroup"); \ +static_assert(offsetof(FRootMotionSourceGroup, LastAccumulatedSettings) == 0x000029, "Member 'FRootMotionSourceGroup::LastAccumulatedSettings' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSourceGroup, LastPreAdditiveVelocity) == 0x000030, "Member 'FRootMotionSourceGroup::LastPreAdditiveVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRepRootMotionMontage \ +static_assert(alignof(FRepRootMotionMontage) == 0x000008, "Wrong alignment on FRepRootMotionMontage"); \ +static_assert(sizeof(FRepRootMotionMontage) == 0x0000D8, "Wrong size on FRepRootMotionMontage"); \ +static_assert(offsetof(FRepRootMotionMontage, bIsActive) == 0x000000, "Member 'FRepRootMotionMontage::bIsActive' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, AnimMontage) == 0x000008, "Member 'FRepRootMotionMontage::AnimMontage' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, Position) == 0x000010, "Member 'FRepRootMotionMontage::Position' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, Location) == 0x000018, "Member 'FRepRootMotionMontage::Location' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, Rotation) == 0x000030, "Member 'FRepRootMotionMontage::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, MovementBase) == 0x000048, "Member 'FRepRootMotionMontage::MovementBase' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, MovementBaseBoneName) == 0x000050, "Member 'FRepRootMotionMontage::MovementBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, bRelativePosition) == 0x000058, "Member 'FRepRootMotionMontage::bRelativePosition' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, bRelativeRotation) == 0x000059, "Member 'FRepRootMotionMontage::bRelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, AuthoritativeRootMotion) == 0x000060, "Member 'FRepRootMotionMontage::AuthoritativeRootMotion' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, Acceleration) == 0x0000A8, "Member 'FRepRootMotionMontage::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(FRepRootMotionMontage, LinearVelocity) == 0x0000C0, "Member 'FRepRootMotionMontage::LinearVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimulatedRootMotionReplicatedMove \ +static_assert(alignof(FSimulatedRootMotionReplicatedMove) == 0x000008, "Wrong alignment on FSimulatedRootMotionReplicatedMove"); \ +static_assert(sizeof(FSimulatedRootMotionReplicatedMove) == 0x0000E0, "Wrong size on FSimulatedRootMotionReplicatedMove"); \ +static_assert(offsetof(FSimulatedRootMotionReplicatedMove, Time) == 0x000000, "Member 'FSimulatedRootMotionReplicatedMove::Time' has a wrong offset!"); \ +static_assert(offsetof(FSimulatedRootMotionReplicatedMove, RootMotion) == 0x000008, "Member 'FSimulatedRootMotionReplicatedMove::RootMotion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshDisplacementMap \ +static_assert(alignof(FMeshDisplacementMap) == 0x000008, "Wrong alignment on FMeshDisplacementMap"); \ +static_assert(sizeof(FMeshDisplacementMap) == 0x000010, "Wrong size on FMeshDisplacementMap"); \ +static_assert(offsetof(FMeshDisplacementMap, Texture) == 0x000000, "Member 'FMeshDisplacementMap::Texture' has a wrong offset!"); \ +static_assert(offsetof(FMeshDisplacementMap, Magnitude) == 0x000008, "Member 'FMeshDisplacementMap::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FMeshDisplacementMap, Center) == 0x00000C, "Member 'FMeshDisplacementMap::Center' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshNaniteSettings \ +static_assert(alignof(FMeshNaniteSettings) == 0x000008, "Wrong alignment on FMeshNaniteSettings"); \ +static_assert(sizeof(FMeshNaniteSettings) == 0x000040, "Wrong size on FMeshNaniteSettings"); \ +static_assert(offsetof(FMeshNaniteSettings, PositionPrecision) == 0x000004, "Member 'FMeshNaniteSettings::PositionPrecision' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, NormalPrecision) == 0x000008, "Member 'FMeshNaniteSettings::NormalPrecision' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, TangentPrecision) == 0x00000C, "Member 'FMeshNaniteSettings::TangentPrecision' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, TargetMinimumResidencyInKB) == 0x000010, "Member 'FMeshNaniteSettings::TargetMinimumResidencyInKB' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, KeepPercentTriangles) == 0x000014, "Member 'FMeshNaniteSettings::KeepPercentTriangles' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, TrimRelativeError) == 0x000018, "Member 'FMeshNaniteSettings::TrimRelativeError' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, FallbackTarget) == 0x00001C, "Member 'FMeshNaniteSettings::FallbackTarget' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, FallbackPercentTriangles) == 0x000020, "Member 'FMeshNaniteSettings::FallbackPercentTriangles' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, FallbackRelativeError) == 0x000024, "Member 'FMeshNaniteSettings::FallbackRelativeError' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, DisplacementUVChannel) == 0x000028, "Member 'FMeshNaniteSettings::DisplacementUVChannel' has a wrong offset!"); \ +static_assert(offsetof(FMeshNaniteSettings, DisplacementMaps) == 0x000030, "Member 'FMeshNaniteSettings::DisplacementMaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomPrimitiveData \ +static_assert(alignof(FCustomPrimitiveData) == 0x000008, "Wrong alignment on FCustomPrimitiveData"); \ +static_assert(sizeof(FCustomPrimitiveData) == 0x000010, "Wrong size on FCustomPrimitiveData"); \ +static_assert(offsetof(FCustomPrimitiveData, Data) == 0x000000, "Member 'FCustomPrimitiveData::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimExecutionContext \ +static_assert(alignof(FAnimExecutionContext) == 0x000008, "Wrong alignment on FAnimExecutionContext"); \ +static_assert(sizeof(FAnimExecutionContext) == 0x000010, "Wrong size on FAnimExecutionContext"); \ + +#define DUMPER7_ASSERTS_FAnimInitializationContext \ +static_assert(alignof(FAnimInitializationContext) == 0x000008, "Wrong alignment on FAnimInitializationContext"); \ +static_assert(sizeof(FAnimInitializationContext) == 0x000010, "Wrong size on FAnimInitializationContext"); \ + +#define DUMPER7_ASSERTS_FFormatArgumentData \ +static_assert(alignof(FFormatArgumentData) == 0x000008, "Wrong alignment on FFormatArgumentData"); \ +static_assert(sizeof(FFormatArgumentData) == 0x000050, "Wrong size on FFormatArgumentData"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentName) == 0x000000, "Member 'FFormatArgumentData::ArgumentName' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValueType) == 0x000010, "Member 'FFormatArgumentData::ArgumentValueType' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValue) == 0x000018, "Member 'FFormatArgumentData::ArgumentValue' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValueInt) == 0x000030, "Member 'FFormatArgumentData::ArgumentValueInt' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValueFloat) == 0x000038, "Member 'FFormatArgumentData::ArgumentValueFloat' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValueDouble) == 0x000040, "Member 'FFormatArgumentData::ArgumentValueDouble' has a wrong offset!"); \ +static_assert(offsetof(FFormatArgumentData, ArgumentValueGender) == 0x000048, "Member 'FFormatArgumentData::ArgumentValueGender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialAttributesInput \ +static_assert(alignof(FMaterialAttributesInput) == 0x000008, "Wrong alignment on FMaterialAttributesInput"); \ +static_assert(sizeof(FMaterialAttributesInput) == 0x000030, "Wrong size on FMaterialAttributesInput"); \ +static_assert(offsetof(FMaterialAttributesInput, PropertyConnectedMask) == 0x000028, "Member 'FMaterialAttributesInput::PropertyConnectedMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentSync \ +static_assert(alignof(FComponentSync) == 0x000004, "Wrong alignment on FComponentSync"); \ +static_assert(sizeof(FComponentSync) == 0x00000C, "Wrong size on FComponentSync"); \ +static_assert(offsetof(FComponentSync, Name) == 0x000000, "Member 'FComponentSync::Name' has a wrong offset!"); \ +static_assert(offsetof(FComponentSync, SyncOption) == 0x000008, "Member 'FComponentSync::SyncOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPurchaseInfo \ +static_assert(alignof(FPurchaseInfo) == 0x000008, "Wrong alignment on FPurchaseInfo"); \ +static_assert(sizeof(FPurchaseInfo) == 0x000040, "Wrong size on FPurchaseInfo"); \ +static_assert(offsetof(FPurchaseInfo, Identifier) == 0x000000, "Member 'FPurchaseInfo::Identifier' has a wrong offset!"); \ +static_assert(offsetof(FPurchaseInfo, DisplayName) == 0x000010, "Member 'FPurchaseInfo::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FPurchaseInfo, DisplayDescription) == 0x000020, "Member 'FPurchaseInfo::DisplayDescription' has a wrong offset!"); \ +static_assert(offsetof(FPurchaseInfo, DisplayPrice) == 0x000030, "Member 'FPurchaseInfo::DisplayPrice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRawDistribution \ +static_assert(alignof(FRawDistribution) == 0x000008, "Wrong alignment on FRawDistribution"); \ +static_assert(sizeof(FRawDistribution) == 0x000020, "Wrong size on FRawDistribution"); \ +static_assert(offsetof(FRawDistribution, Table) == 0x000000, "Member 'FRawDistribution::Table' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTickFunction \ +static_assert(alignof(FTickFunction) == 0x000008, "Wrong alignment on FTickFunction"); \ +static_assert(sizeof(FTickFunction) == 0x000028, "Wrong size on FTickFunction"); \ +static_assert(offsetof(FTickFunction, TickGroup) == 0x000008, "Member 'FTickFunction::TickGroup' has a wrong offset!"); \ +static_assert(offsetof(FTickFunction, EndTickGroup) == 0x000009, "Member 'FTickFunction::EndTickGroup' has a wrong offset!"); \ +static_assert(offsetof(FTickFunction, TickInterval) == 0x00000C, "Member 'FTickFunction::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharacterMovementComponentPostPhysicsTickFunction \ +static_assert(alignof(FCharacterMovementComponentPostPhysicsTickFunction) == 0x000008, "Wrong alignment on FCharacterMovementComponentPostPhysicsTickFunction"); \ +static_assert(sizeof(FCharacterMovementComponentPostPhysicsTickFunction) == 0x000030, "Wrong size on FCharacterMovementComponentPostPhysicsTickFunction"); \ + +#define DUMPER7_ASSERTS_FWalkableSlopeOverride \ +static_assert(alignof(FWalkableSlopeOverride) == 0x000004, "Wrong alignment on FWalkableSlopeOverride"); \ +static_assert(sizeof(FWalkableSlopeOverride) == 0x000010, "Wrong size on FWalkableSlopeOverride"); \ +static_assert(offsetof(FWalkableSlopeOverride, WalkableSlopeBehavior) == 0x000000, "Member 'FWalkableSlopeOverride::WalkableSlopeBehavior' has a wrong offset!"); \ +static_assert(offsetof(FWalkableSlopeOverride, WalkableSlopeAngle) == 0x000004, "Member 'FWalkableSlopeOverride::WalkableSlopeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionResponseContainer \ +static_assert(alignof(FCollisionResponseContainer) == 0x000001, "Wrong alignment on FCollisionResponseContainer"); \ +static_assert(sizeof(FCollisionResponseContainer) == 0x000020, "Wrong size on FCollisionResponseContainer"); \ +static_assert(offsetof(FCollisionResponseContainer, WorldStatic) == 0x000000, "Member 'FCollisionResponseContainer::WorldStatic' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, WorldDynamic) == 0x000001, "Member 'FCollisionResponseContainer::WorldDynamic' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, Pawn) == 0x000002, "Member 'FCollisionResponseContainer::Pawn' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, Visibility) == 0x000003, "Member 'FCollisionResponseContainer::Visibility' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, Camera) == 0x000004, "Member 'FCollisionResponseContainer::Camera' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, PhysicsBody) == 0x000005, "Member 'FCollisionResponseContainer::PhysicsBody' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, Vehicle) == 0x000006, "Member 'FCollisionResponseContainer::Vehicle' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, Destructible) == 0x000007, "Member 'FCollisionResponseContainer::Destructible' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel1) == 0x000008, "Member 'FCollisionResponseContainer::EngineTraceChannel1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel2) == 0x000009, "Member 'FCollisionResponseContainer::EngineTraceChannel2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel3) == 0x00000A, "Member 'FCollisionResponseContainer::EngineTraceChannel3' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel4) == 0x00000B, "Member 'FCollisionResponseContainer::EngineTraceChannel4' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel5) == 0x00000C, "Member 'FCollisionResponseContainer::EngineTraceChannel5' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, EngineTraceChannel6) == 0x00000D, "Member 'FCollisionResponseContainer::EngineTraceChannel6' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel1) == 0x00000E, "Member 'FCollisionResponseContainer::GameTraceChannel1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel2) == 0x00000F, "Member 'FCollisionResponseContainer::GameTraceChannel2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel3) == 0x000010, "Member 'FCollisionResponseContainer::GameTraceChannel3' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel4) == 0x000011, "Member 'FCollisionResponseContainer::GameTraceChannel4' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel5) == 0x000012, "Member 'FCollisionResponseContainer::GameTraceChannel5' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel6) == 0x000013, "Member 'FCollisionResponseContainer::GameTraceChannel6' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel7) == 0x000014, "Member 'FCollisionResponseContainer::GameTraceChannel7' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel8) == 0x000015, "Member 'FCollisionResponseContainer::GameTraceChannel8' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel9) == 0x000016, "Member 'FCollisionResponseContainer::GameTraceChannel9' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel10) == 0x000017, "Member 'FCollisionResponseContainer::GameTraceChannel10' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel11) == 0x000018, "Member 'FCollisionResponseContainer::GameTraceChannel11' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel12) == 0x000019, "Member 'FCollisionResponseContainer::GameTraceChannel12' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel13) == 0x00001A, "Member 'FCollisionResponseContainer::GameTraceChannel13' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel14) == 0x00001B, "Member 'FCollisionResponseContainer::GameTraceChannel14' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel15) == 0x00001C, "Member 'FCollisionResponseContainer::GameTraceChannel15' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel16) == 0x00001D, "Member 'FCollisionResponseContainer::GameTraceChannel16' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel17) == 0x00001E, "Member 'FCollisionResponseContainer::GameTraceChannel17' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseContainer, GameTraceChannel18) == 0x00001F, "Member 'FCollisionResponseContainer::GameTraceChannel18' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionResponse \ +static_assert(alignof(FCollisionResponse) == 0x000008, "Wrong alignment on FCollisionResponse"); \ +static_assert(sizeof(FCollisionResponse) == 0x000030, "Wrong size on FCollisionResponse"); \ +static_assert(offsetof(FCollisionResponse, ResponseToChannels) == 0x000000, "Member 'FCollisionResponse::ResponseToChannels' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponse, ResponseArray) == 0x000020, "Member 'FCollisionResponse::ResponseArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBodyInstance \ +static_assert(alignof(FBodyInstance) == 0x000008, "Wrong alignment on FBodyInstance"); \ +static_assert(sizeof(FBodyInstance) == 0x000190, "Wrong size on FBodyInstance"); \ +static_assert(offsetof(FBodyInstance, ObjectType) == 0x00001E, "Member 'FBodyInstance::ObjectType' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, CollisionEnabled) == 0x000020, "Member 'FBodyInstance::CollisionEnabled' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, SleepFamily) == 0x000059, "Member 'FBodyInstance::SleepFamily' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, DOFMode) == 0x00005A, "Member 'FBodyInstance::DOFMode' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, CollisionProfileName) == 0x000078, "Member 'FBodyInstance::CollisionProfileName' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, PositionSolverIterationCount) == 0x000080, "Member 'FBodyInstance::PositionSolverIterationCount' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, VelocitySolverIterationCount) == 0x000081, "Member 'FBodyInstance::VelocitySolverIterationCount' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, CollisionResponses) == 0x000088, "Member 'FBodyInstance::CollisionResponses' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, MaxDepenetrationVelocity) == 0x0000B8, "Member 'FBodyInstance::MaxDepenetrationVelocity' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, MassInKgOverride) == 0x0000BC, "Member 'FBodyInstance::MassInKgOverride' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, LinearDamping) == 0x0000C8, "Member 'FBodyInstance::LinearDamping' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, AngularDamping) == 0x0000CC, "Member 'FBodyInstance::AngularDamping' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, CustomDOFPlaneNormal) == 0x0000D0, "Member 'FBodyInstance::CustomDOFPlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, COMNudge) == 0x0000E8, "Member 'FBodyInstance::COMNudge' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, MassScale) == 0x000100, "Member 'FBodyInstance::MassScale' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, InertiaTensorScale) == 0x000108, "Member 'FBodyInstance::InertiaTensorScale' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, WalkableSlopeOverride) == 0x000130, "Member 'FBodyInstance::WalkableSlopeOverride' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, PhysMaterialOverride) == 0x000140, "Member 'FBodyInstance::PhysMaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, MaxAngularVelocity) == 0x000148, "Member 'FBodyInstance::MaxAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, CustomSleepThresholdMultiplier) == 0x00014C, "Member 'FBodyInstance::CustomSleepThresholdMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, StabilizationThresholdMultiplier) == 0x000150, "Member 'FBodyInstance::StabilizationThresholdMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FBodyInstance, PhysicsBlendWeight) == 0x000154, "Member 'FBodyInstance::PhysicsBlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScalarMaterialInput \ +static_assert(alignof(FScalarMaterialInput) == 0x000008, "Wrong alignment on FScalarMaterialInput"); \ +static_assert(sizeof(FScalarMaterialInput) == 0x000030, "Wrong size on FScalarMaterialInput"); \ +static_assert(offsetof(FScalarMaterialInput, Constant) == 0x00002C, "Member 'FScalarMaterialInput::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPredictProjectilePathParams \ +static_assert(alignof(FPredictProjectilePathParams) == 0x000008, "Wrong alignment on FPredictProjectilePathParams"); \ +static_assert(sizeof(FPredictProjectilePathParams) == 0x000078, "Wrong size on FPredictProjectilePathParams"); \ +static_assert(offsetof(FPredictProjectilePathParams, StartLocation) == 0x000000, "Member 'FPredictProjectilePathParams::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, LaunchVelocity) == 0x000018, "Member 'FPredictProjectilePathParams::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, bTraceWithCollision) == 0x000030, "Member 'FPredictProjectilePathParams::bTraceWithCollision' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, ProjectileRadius) == 0x000034, "Member 'FPredictProjectilePathParams::ProjectileRadius' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, MaxSimTime) == 0x000038, "Member 'FPredictProjectilePathParams::MaxSimTime' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, bTraceWithChannel) == 0x00003C, "Member 'FPredictProjectilePathParams::bTraceWithChannel' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, TraceChannel) == 0x00003D, "Member 'FPredictProjectilePathParams::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, ObjectTypes) == 0x000040, "Member 'FPredictProjectilePathParams::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, ActorsToIgnore) == 0x000050, "Member 'FPredictProjectilePathParams::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, SimFrequency) == 0x000060, "Member 'FPredictProjectilePathParams::SimFrequency' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, OverrideGravityZ) == 0x000064, "Member 'FPredictProjectilePathParams::OverrideGravityZ' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, DrawDebugType) == 0x000068, "Member 'FPredictProjectilePathParams::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, DrawDebugTime) == 0x00006C, "Member 'FPredictProjectilePathParams::DrawDebugTime' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathParams, bTraceComplex) == 0x000070, "Member 'FPredictProjectilePathParams::bTraceComplex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNode \ +static_assert(alignof(FNode) == 0x000010, "Wrong alignment on FNode"); \ +static_assert(sizeof(FNode) == 0x000090, "Wrong size on FNode"); \ +static_assert(offsetof(FNode, Name) == 0x000000, "Member 'FNode::Name' has a wrong offset!"); \ +static_assert(offsetof(FNode, ParentName) == 0x000008, "Member 'FNode::ParentName' has a wrong offset!"); \ +static_assert(offsetof(FNode, Transform) == 0x000010, "Member 'FNode::Transform' has a wrong offset!"); \ +static_assert(offsetof(FNode, DisplayName) == 0x000070, "Member 'FNode::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FNode, bAdvanced) == 0x000080, "Member 'FNode::bAdvanced' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FShadingModelMaterialInput \ +static_assert(alignof(FShadingModelMaterialInput) == 0x000008, "Wrong alignment on FShadingModelMaterialInput"); \ +static_assert(sizeof(FShadingModelMaterialInput) == 0x000028, "Wrong size on FShadingModelMaterialInput"); \ + +#define DUMPER7_ASSERTS_FActorTickFunction \ +static_assert(alignof(FActorTickFunction) == 0x000008, "Wrong alignment on FActorTickFunction"); \ +static_assert(sizeof(FActorTickFunction) == 0x000030, "Wrong size on FActorTickFunction"); \ + +#define DUMPER7_ASSERTS_FStrataMaterialInput \ +static_assert(alignof(FStrataMaterialInput) == 0x000008, "Wrong alignment on FStrataMaterialInput"); \ +static_assert(sizeof(FStrataMaterialInput) == 0x000028, "Wrong size on FStrataMaterialInput"); \ + +#define DUMPER7_ASSERTS_FCameraLensInterfaceClassSupport \ +static_assert(alignof(FCameraLensInterfaceClassSupport) == 0x000008, "Wrong alignment on FCameraLensInterfaceClassSupport"); \ +static_assert(sizeof(FCameraLensInterfaceClassSupport) == 0x000008, "Wrong size on FCameraLensInterfaceClassSupport"); \ +static_assert(offsetof(FCameraLensInterfaceClassSupport, Class) == 0x000000, "Member 'FCameraLensInterfaceClassSupport::Class' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBodyInstanceAsyncPhysicsTickHandle \ +static_assert(alignof(FBodyInstanceAsyncPhysicsTickHandle) == 0x000008, "Wrong alignment on FBodyInstanceAsyncPhysicsTickHandle"); \ +static_assert(sizeof(FBodyInstanceAsyncPhysicsTickHandle) == 0x000008, "Wrong size on FBodyInstanceAsyncPhysicsTickHandle"); \ + +#define DUMPER7_ASSERTS_FCachedAnimAssetPlayerData \ +static_assert(alignof(FCachedAnimAssetPlayerData) == 0x000004, "Wrong alignment on FCachedAnimAssetPlayerData"); \ +static_assert(sizeof(FCachedAnimAssetPlayerData) == 0x000018, "Wrong size on FCachedAnimAssetPlayerData"); \ +static_assert(offsetof(FCachedAnimAssetPlayerData, StateMachineName) == 0x000000, "Member 'FCachedAnimAssetPlayerData::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(FCachedAnimAssetPlayerData, StateName) == 0x000008, "Member 'FCachedAnimAssetPlayerData::StateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector2MaterialInput \ +static_assert(alignof(FVector2MaterialInput) == 0x000008, "Wrong alignment on FVector2MaterialInput"); \ +static_assert(sizeof(FVector2MaterialInput) == 0x000038, "Wrong size on FVector2MaterialInput"); \ +static_assert(offsetof(FVector2MaterialInput, ConstantX) == 0x00002C, "Member 'FVector2MaterialInput::ConstantX' has a wrong offset!"); \ +static_assert(offsetof(FVector2MaterialInput, ConstantY) == 0x000030, "Member 'FVector2MaterialInput::ConstantY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceTriangleEdgeInfo \ +static_assert(alignof(FBlendSpaceTriangleEdgeInfo) == 0x000008, "Wrong alignment on FBlendSpaceTriangleEdgeInfo"); \ +static_assert(sizeof(FBlendSpaceTriangleEdgeInfo) == 0x000028, "Wrong size on FBlendSpaceTriangleEdgeInfo"); \ +static_assert(offsetof(FBlendSpaceTriangleEdgeInfo, Normal) == 0x000000, "Member 'FBlendSpaceTriangleEdgeInfo::Normal' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceTriangleEdgeInfo, NeighbourTriangleIndex) == 0x000010, "Member 'FBlendSpaceTriangleEdgeInfo::NeighbourTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceTriangleEdgeInfo, AdjacentPerimeterTriangleIndices) == 0x000014, "Member 'FBlendSpaceTriangleEdgeInfo::AdjacentPerimeterTriangleIndices' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceTriangleEdgeInfo, AdjacentPerimeterVertexIndices) == 0x00001C, "Member 'FBlendSpaceTriangleEdgeInfo::AdjacentPerimeterVertexIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceTriangle \ +static_assert(alignof(FBlendSpaceTriangle) == 0x000008, "Wrong alignment on FBlendSpaceTriangle"); \ +static_assert(sizeof(FBlendSpaceTriangle) == 0x0000B8, "Wrong size on FBlendSpaceTriangle"); \ +static_assert(offsetof(FBlendSpaceTriangle, SampleIndices) == 0x000000, "Member 'FBlendSpaceTriangle::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceTriangle, Vertices) == 0x000010, "Member 'FBlendSpaceTriangle::Vertices' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceTriangle, EdgeInfo) == 0x000040, "Member 'FBlendSpaceTriangle::EdgeInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorComponentTickFunction \ +static_assert(alignof(FActorComponentTickFunction) == 0x000008, "Wrong alignment on FActorComponentTickFunction"); \ +static_assert(sizeof(FActorComponentTickFunction) == 0x000030, "Wrong size on FActorComponentTickFunction"); \ + +#define DUMPER7_ASSERTS_FRepAttachment \ +static_assert(alignof(FRepAttachment) == 0x000008, "Wrong alignment on FRepAttachment"); \ +static_assert(sizeof(FRepAttachment) == 0x000060, "Wrong size on FRepAttachment"); \ +static_assert(offsetof(FRepAttachment, AttachParent) == 0x000000, "Member 'FRepAttachment::AttachParent' has a wrong offset!"); \ +static_assert(offsetof(FRepAttachment, LocationOffset) == 0x000008, "Member 'FRepAttachment::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(FRepAttachment, RelativeScale3D) == 0x000020, "Member 'FRepAttachment::RelativeScale3D' has a wrong offset!"); \ +static_assert(offsetof(FRepAttachment, RotationOffset) == 0x000038, "Member 'FRepAttachment::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FRepAttachment, AttachSocket) == 0x000050, "Member 'FRepAttachment::AttachSocket' has a wrong offset!"); \ +static_assert(offsetof(FRepAttachment, AttachComponent) == 0x000058, "Member 'FRepAttachment::AttachComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector4Distribution \ +static_assert(alignof(FVector4Distribution) == 0x000008, "Wrong alignment on FVector4Distribution"); \ +static_assert(sizeof(FVector4Distribution) == 0x000020, "Wrong size on FVector4Distribution"); \ +static_assert(offsetof(FVector4Distribution, Table) == 0x000000, "Member 'FVector4Distribution::Table' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTableRowBase \ +static_assert(alignof(FTableRowBase) == 0x000008, "Wrong alignment on FTableRowBase"); \ +static_assert(sizeof(FTableRowBase) == 0x000008, "Wrong size on FTableRowBase"); \ + +#define DUMPER7_ASSERTS_FMirrorTableRow \ +static_assert(alignof(FMirrorTableRow) == 0x000008, "Wrong alignment on FMirrorTableRow"); \ +static_assert(sizeof(FMirrorTableRow) == 0x000020, "Wrong size on FMirrorTableRow"); \ +static_assert(offsetof(FMirrorTableRow, Name) == 0x000008, "Member 'FMirrorTableRow::Name' has a wrong offset!"); \ +static_assert(offsetof(FMirrorTableRow, MirroredName) == 0x000010, "Member 'FMirrorTableRow::MirroredName' has a wrong offset!"); \ +static_assert(offsetof(FMirrorTableRow, MirrorEntryType) == 0x000018, "Member 'FMirrorTableRow::MirrorEntryType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorDistribution \ +static_assert(alignof(FVectorDistribution) == 0x000008, "Wrong alignment on FVectorDistribution"); \ +static_assert(sizeof(FVectorDistribution) == 0x000020, "Wrong size on FVectorDistribution"); \ +static_assert(offsetof(FVectorDistribution, Table) == 0x000000, "Member 'FVectorDistribution::Table' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLatentActionInfo \ +static_assert(alignof(FLatentActionInfo) == 0x000008, "Wrong alignment on FLatentActionInfo"); \ +static_assert(sizeof(FLatentActionInfo) == 0x000018, "Wrong size on FLatentActionInfo"); \ +static_assert(offsetof(FLatentActionInfo, Linkage) == 0x000000, "Member 'FLatentActionInfo::Linkage' has a wrong offset!"); \ +static_assert(offsetof(FLatentActionInfo, UUID) == 0x000004, "Member 'FLatentActionInfo::UUID' has a wrong offset!"); \ +static_assert(offsetof(FLatentActionInfo, ExecutionFunction) == 0x000008, "Member 'FLatentActionInfo::ExecutionFunction' has a wrong offset!"); \ +static_assert(offsetof(FLatentActionInfo, CallbackTarget) == 0x000010, "Member 'FLatentActionInfo::CallbackTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneReference \ +static_assert(alignof(FBoneReference) == 0x000004, "Wrong alignment on FBoneReference"); \ +static_assert(sizeof(FBoneReference) == 0x000010, "Wrong size on FBoneReference"); \ +static_assert(offsetof(FBoneReference, BoneName) == 0x000000, "Member 'FBoneReference::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendProfileBoneEntry \ +static_assert(alignof(FBlendProfileBoneEntry) == 0x000004, "Wrong alignment on FBlendProfileBoneEntry"); \ +static_assert(sizeof(FBlendProfileBoneEntry) == 0x000014, "Wrong size on FBlendProfileBoneEntry"); \ +static_assert(offsetof(FBlendProfileBoneEntry, BoneReference) == 0x000000, "Member 'FBlendProfileBoneEntry::BoneReference' has a wrong offset!"); \ +static_assert(offsetof(FBlendProfileBoneEntry, BlendScale) == 0x000010, "Member 'FBlendProfileBoneEntry::BlendScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveEnvelopeDataPerSound \ +static_assert(alignof(FSoundWaveEnvelopeDataPerSound) == 0x000008, "Wrong alignment on FSoundWaveEnvelopeDataPerSound"); \ +static_assert(sizeof(FSoundWaveEnvelopeDataPerSound) == 0x000010, "Wrong size on FSoundWaveEnvelopeDataPerSound"); \ +static_assert(offsetof(FSoundWaveEnvelopeDataPerSound, Envelope) == 0x000000, "Member 'FSoundWaveEnvelopeDataPerSound::Envelope' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveEnvelopeDataPerSound, PlaybackTime) == 0x000004, "Member 'FSoundWaveEnvelopeDataPerSound::PlaybackTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveEnvelopeDataPerSound, SoundWave) == 0x000008, "Member 'FSoundWaveEnvelopeDataPerSound::SoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorMaterialInput \ +static_assert(alignof(FVectorMaterialInput) == 0x000008, "Wrong alignment on FVectorMaterialInput"); \ +static_assert(sizeof(FVectorMaterialInput) == 0x000038, "Wrong size on FVectorMaterialInput"); \ +static_assert(offsetof(FVectorMaterialInput, Constant) == 0x00002C, "Member 'FVectorMaterialInput::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimBlueprintDebugData \ +static_assert(alignof(FAnimBlueprintDebugData) == 0x000001, "Wrong alignment on FAnimBlueprintDebugData"); \ +static_assert(sizeof(FAnimBlueprintDebugData) == 0x000001, "Wrong size on FAnimBlueprintDebugData"); \ + +#define DUMPER7_ASSERTS_FVectorRK4SpringInterpolator \ +static_assert(alignof(FVectorRK4SpringInterpolator) == 0x000004, "Wrong alignment on FVectorRK4SpringInterpolator"); \ +static_assert(sizeof(FVectorRK4SpringInterpolator) == 0x000008, "Wrong size on FVectorRK4SpringInterpolator"); \ +static_assert(offsetof(FVectorRK4SpringInterpolator, StiffnessConstant) == 0x000000, "Member 'FVectorRK4SpringInterpolator::StiffnessConstant' has a wrong offset!"); \ +static_assert(offsetof(FVectorRK4SpringInterpolator, DampeningRatio) == 0x000004, "Member 'FVectorRK4SpringInterpolator::DampeningRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CustomProperty \ +static_assert(alignof(FAnimNode_CustomProperty) == 0x000008, "Wrong alignment on FAnimNode_CustomProperty"); \ +static_assert(sizeof(FAnimNode_CustomProperty) == 0x000058, "Wrong size on FAnimNode_CustomProperty"); \ +static_assert(offsetof(FAnimNode_CustomProperty, SourcePropertyNames) == 0x000010, "Member 'FAnimNode_CustomProperty::SourcePropertyNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CustomProperty, DestPropertyNames) == 0x000020, "Member 'FAnimNode_CustomProperty::DestPropertyNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CustomProperty, TargetInstance) == 0x000030, "Member 'FAnimNode_CustomProperty::TargetInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LinkedAnimGraph \ +static_assert(alignof(FAnimNode_LinkedAnimGraph) == 0x000008, "Wrong alignment on FAnimNode_LinkedAnimGraph"); \ +static_assert(sizeof(FAnimNode_LinkedAnimGraph) == 0x0000B8, "Wrong size on FAnimNode_LinkedAnimGraph"); \ +static_assert(offsetof(FAnimNode_LinkedAnimGraph, InputPoses) == 0x000058, "Member 'FAnimNode_LinkedAnimGraph::InputPoses' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedAnimGraph, InputPoseNames) == 0x000068, "Member 'FAnimNode_LinkedAnimGraph::InputPoseNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedAnimGraph, InstanceClass) == 0x000078, "Member 'FAnimNode_LinkedAnimGraph::InstanceClass' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedAnimGraph, PendingBlendOutProfile) == 0x000098, "Member 'FAnimNode_LinkedAnimGraph::PendingBlendOutProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedAnimGraph, PendingBlendInProfile) == 0x0000A8, "Member 'FAnimNode_LinkedAnimGraph::PendingBlendInProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosRemovalEvent \ +static_assert(alignof(FChaosRemovalEvent) == 0x000008, "Wrong alignment on FChaosRemovalEvent"); \ +static_assert(sizeof(FChaosRemovalEvent) == 0x000028, "Wrong size on FChaosRemovalEvent"); \ +static_assert(offsetof(FChaosRemovalEvent, Component) == 0x000000, "Member 'FChaosRemovalEvent::Component' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEvent, Location) == 0x000008, "Member 'FChaosRemovalEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEvent, MASS) == 0x000020, "Member 'FChaosRemovalEvent::MASS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBeamModifierOptions \ +static_assert(alignof(FBeamModifierOptions) == 0x000004, "Wrong alignment on FBeamModifierOptions"); \ +static_assert(sizeof(FBeamModifierOptions) == 0x000004, "Wrong size on FBeamModifierOptions"); \ + +#define DUMPER7_ASSERTS_FAnimDataModelNotifPayload \ +static_assert(alignof(FAnimDataModelNotifPayload) == 0x000008, "Wrong alignment on FAnimDataModelNotifPayload"); \ +static_assert(sizeof(FAnimDataModelNotifPayload) == 0x000010, "Wrong size on FAnimDataModelNotifPayload"); \ + +#define DUMPER7_ASSERTS_FAnimCurveBase \ +static_assert(alignof(FAnimCurveBase) == 0x000004, "Wrong alignment on FAnimCurveBase"); \ +static_assert(sizeof(FAnimCurveBase) == 0x00000C, "Wrong size on FAnimCurveBase"); \ +static_assert(offsetof(FAnimCurveBase, CurveName) == 0x000000, "Member 'FAnimCurveBase::CurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimCurveBase, CurveTypeFlags) == 0x000008, "Member 'FAnimCurveBase::CurveTypeFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataTableRowHandle \ +static_assert(alignof(FDataTableRowHandle) == 0x000008, "Wrong alignment on FDataTableRowHandle"); \ +static_assert(sizeof(FDataTableRowHandle) == 0x000010, "Wrong size on FDataTableRowHandle"); \ +static_assert(offsetof(FDataTableRowHandle, DataTable) == 0x000000, "Member 'FDataTableRowHandle::DataTable' has a wrong offset!"); \ +static_assert(offsetof(FDataTableRowHandle, RowName) == 0x000008, "Member 'FDataTableRowHandle::RowName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosBreakEvent \ +static_assert(alignof(FChaosBreakEvent) == 0x000008, "Wrong alignment on FChaosBreakEvent"); \ +static_assert(sizeof(FChaosBreakEvent) == 0x000078, "Wrong size on FChaosBreakEvent"); \ +static_assert(offsetof(FChaosBreakEvent, Component) == 0x000000, "Member 'FChaosBreakEvent::Component' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, Location) == 0x000008, "Member 'FChaosBreakEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, Velocity) == 0x000020, "Member 'FChaosBreakEvent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, AngularVelocity) == 0x000038, "Member 'FChaosBreakEvent::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, Extents) == 0x000050, "Member 'FChaosBreakEvent::Extents' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, MASS) == 0x000068, "Member 'FChaosBreakEvent::MASS' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, Index) == 0x00006C, "Member 'FChaosBreakEvent::Index' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakEvent, bFromCrumble) == 0x000070, "Member 'FChaosBreakEvent::bFromCrumble' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchingPointNotifyPayload \ +static_assert(alignof(FBranchingPointNotifyPayload) == 0x000008, "Wrong alignment on FBranchingPointNotifyPayload"); \ +static_assert(sizeof(FBranchingPointNotifyPayload) == 0x000020, "Wrong size on FBranchingPointNotifyPayload"); \ + +#define DUMPER7_ASSERTS_FDPMatchingIfCondition \ +static_assert(alignof(FDPMatchingIfCondition) == 0x000008, "Wrong alignment on FDPMatchingIfCondition"); \ +static_assert(sizeof(FDPMatchingIfCondition) == 0x000028, "Wrong size on FDPMatchingIfCondition"); \ +static_assert(offsetof(FDPMatchingIfCondition, Operator) == 0x000000, "Member 'FDPMatchingIfCondition::Operator' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingIfCondition, Arg1) == 0x000008, "Member 'FDPMatchingIfCondition::Arg1' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingIfCondition, Arg2) == 0x000018, "Member 'FDPMatchingIfCondition::Arg2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructBase \ +static_assert(alignof(FDPMatchingRulestructBase) == 0x000008, "Wrong alignment on FDPMatchingRulestructBase"); \ +static_assert(sizeof(FDPMatchingRulestructBase) == 0x000048, "Wrong size on FDPMatchingRulestructBase"); \ +static_assert(offsetof(FDPMatchingRulestructBase, RuleName) == 0x000008, "Member 'FDPMatchingRulestructBase::RuleName' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructBase, IfConditions) == 0x000018, "Member 'FDPMatchingRulestructBase::IfConditions' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructBase, AppendFragments) == 0x000028, "Member 'FDPMatchingRulestructBase::AppendFragments' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructBase, SetUserVar) == 0x000038, "Member 'FDPMatchingRulestructBase::SetUserVar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructA \ +static_assert(alignof(FDPMatchingRulestructA) == 0x000008, "Wrong alignment on FDPMatchingRulestructA"); \ +static_assert(sizeof(FDPMatchingRulestructA) == 0x000068, "Wrong size on FDPMatchingRulestructA"); \ +static_assert(offsetof(FDPMatchingRulestructA, OnTrue) == 0x000048, "Member 'FDPMatchingRulestructA::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructA, OnFalse) == 0x000058, "Member 'FDPMatchingRulestructA::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructB \ +static_assert(alignof(FDPMatchingRulestructB) == 0x000008, "Wrong alignment on FDPMatchingRulestructB"); \ +static_assert(sizeof(FDPMatchingRulestructB) == 0x000068, "Wrong size on FDPMatchingRulestructB"); \ +static_assert(offsetof(FDPMatchingRulestructB, OnTrue) == 0x000048, "Member 'FDPMatchingRulestructB::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructB, OnFalse) == 0x000058, "Member 'FDPMatchingRulestructB::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructC \ +static_assert(alignof(FDPMatchingRulestructC) == 0x000008, "Wrong alignment on FDPMatchingRulestructC"); \ +static_assert(sizeof(FDPMatchingRulestructC) == 0x000068, "Wrong size on FDPMatchingRulestructC"); \ +static_assert(offsetof(FDPMatchingRulestructC, OnTrue) == 0x000048, "Member 'FDPMatchingRulestructC::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructC, OnFalse) == 0x000058, "Member 'FDPMatchingRulestructC::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHardwareDeviceIdentifier \ +static_assert(alignof(FHardwareDeviceIdentifier) == 0x000004, "Wrong alignment on FHardwareDeviceIdentifier"); \ +static_assert(sizeof(FHardwareDeviceIdentifier) == 0x000018, "Wrong size on FHardwareDeviceIdentifier"); \ +static_assert(offsetof(FHardwareDeviceIdentifier, InputClassName) == 0x000000, "Member 'FHardwareDeviceIdentifier::InputClassName' has a wrong offset!"); \ +static_assert(offsetof(FHardwareDeviceIdentifier, HardwareDeviceIdentifier) == 0x000008, "Member 'FHardwareDeviceIdentifier::HardwareDeviceIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FHardwareDeviceIdentifier, PrimaryDeviceType) == 0x000010, "Member 'FHardwareDeviceIdentifier::PrimaryDeviceType' has a wrong offset!"); \ +static_assert(offsetof(FHardwareDeviceIdentifier, SupportedFeaturesMask) == 0x000014, "Member 'FHardwareDeviceIdentifier::SupportedFeaturesMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharacterNetworkSerializationPackedBits \ +static_assert(alignof(FCharacterNetworkSerializationPackedBits) == 0x000008, "Wrong alignment on FCharacterNetworkSerializationPackedBits"); \ +static_assert(sizeof(FCharacterNetworkSerializationPackedBits) == 0x0000C8, "Wrong size on FCharacterNetworkSerializationPackedBits"); \ + +#define DUMPER7_ASSERTS_FCharacterServerMovePackedBits \ +static_assert(alignof(FCharacterServerMovePackedBits) == 0x000008, "Wrong alignment on FCharacterServerMovePackedBits"); \ +static_assert(sizeof(FCharacterServerMovePackedBits) == 0x0000C8, "Wrong size on FCharacterServerMovePackedBits"); \ + +#define DUMPER7_ASSERTS_FExternalSpatialAccelerationPayload \ +static_assert(alignof(FExternalSpatialAccelerationPayload) == 0x000004, "Wrong alignment on FExternalSpatialAccelerationPayload"); \ +static_assert(sizeof(FExternalSpatialAccelerationPayload) == 0x000010, "Wrong size on FExternalSpatialAccelerationPayload"); \ + +#define DUMPER7_ASSERTS_FClusterUnionPendingAddData \ +static_assert(alignof(FClusterUnionPendingAddData) == 0x000008, "Wrong alignment on FClusterUnionPendingAddData"); \ +static_assert(sizeof(FClusterUnionPendingAddData) == 0x000020, "Wrong size on FClusterUnionPendingAddData"); \ +static_assert(offsetof(FClusterUnionPendingAddData, BoneIds) == 0x000000, "Member 'FClusterUnionPendingAddData::BoneIds' has a wrong offset!"); \ +static_assert(offsetof(FClusterUnionPendingAddData, AccelerationPayloads) == 0x000010, "Member 'FClusterUnionPendingAddData::AccelerationPayloads' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformInterfaceDelegateResult \ +static_assert(alignof(FPlatformInterfaceDelegateResult) == 0x000008, "Wrong alignment on FPlatformInterfaceDelegateResult"); \ +static_assert(sizeof(FPlatformInterfaceDelegateResult) == 0x000038, "Wrong size on FPlatformInterfaceDelegateResult"); \ +static_assert(offsetof(FPlatformInterfaceDelegateResult, bSuccessful) == 0x000000, "Member 'FPlatformInterfaceDelegateResult::bSuccessful' has a wrong offset!"); \ +static_assert(offsetof(FPlatformInterfaceDelegateResult, Data) == 0x000008, "Member 'FPlatformInterfaceDelegateResult::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshSectionInfo \ +static_assert(alignof(FMeshSectionInfo) == 0x000004, "Wrong alignment on FMeshSectionInfo"); \ +static_assert(sizeof(FMeshSectionInfo) == 0x00000C, "Wrong size on FMeshSectionInfo"); \ +static_assert(offsetof(FMeshSectionInfo, MaterialIndex) == 0x000000, "Member 'FMeshSectionInfo::MaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(FMeshSectionInfo, bEnableCollision) == 0x000004, "Member 'FMeshSectionInfo::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(FMeshSectionInfo, bCastShadow) == 0x000005, "Member 'FMeshSectionInfo::bCastShadow' has a wrong offset!"); \ +static_assert(offsetof(FMeshSectionInfo, bVisibleInRayTracing) == 0x000006, "Member 'FMeshSectionInfo::bVisibleInRayTracing' has a wrong offset!"); \ +static_assert(offsetof(FMeshSectionInfo, bAffectDistanceFieldLighting) == 0x000007, "Member 'FMeshSectionInfo::bAffectDistanceFieldLighting' has a wrong offset!"); \ +static_assert(offsetof(FMeshSectionInfo, bForceOpaque) == 0x000008, "Member 'FMeshSectionInfo::bForceOpaque' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerPlatformInt \ +static_assert(alignof(FPerPlatformInt) == 0x000004, "Wrong alignment on FPerPlatformInt"); \ +static_assert(sizeof(FPerPlatformInt) == 0x000004, "Wrong size on FPerPlatformInt"); \ +static_assert(offsetof(FPerPlatformInt, Default) == 0x000000, "Member 'FPerPlatformInt::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatSpringState \ +static_assert(alignof(FFloatSpringState) == 0x000004, "Wrong alignment on FFloatSpringState"); \ +static_assert(sizeof(FFloatSpringState) == 0x00000C, "Wrong size on FFloatSpringState"); \ + +#define DUMPER7_ASSERTS_FCollisionChaosEventBodyInfo \ +static_assert(alignof(FCollisionChaosEventBodyInfo) == 0x000008, "Wrong alignment on FCollisionChaosEventBodyInfo"); \ +static_assert(sizeof(FCollisionChaosEventBodyInfo) == 0x000070, "Wrong size on FCollisionChaosEventBodyInfo"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, Velocity) == 0x000000, "Member 'FCollisionChaosEventBodyInfo::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, DeltaVelocity) == 0x000018, "Member 'FCollisionChaosEventBodyInfo::DeltaVelocity' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, AngularVelocity) == 0x000030, "Member 'FCollisionChaosEventBodyInfo::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, MASS) == 0x000048, "Member 'FCollisionChaosEventBodyInfo::MASS' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, PhysMaterial) == 0x000050, "Member 'FCollisionChaosEventBodyInfo::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, Component) == 0x000058, "Member 'FCollisionChaosEventBodyInfo::Component' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, BodyIndex) == 0x000060, "Member 'FCollisionChaosEventBodyInfo::BodyIndex' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEventBodyInfo, BoneName) == 0x000064, "Member 'FCollisionChaosEventBodyInfo::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionChaosEvent \ +static_assert(alignof(FCollisionChaosEvent) == 0x000008, "Wrong alignment on FCollisionChaosEvent"); \ +static_assert(sizeof(FCollisionChaosEvent) == 0x000130, "Wrong size on FCollisionChaosEvent"); \ +static_assert(offsetof(FCollisionChaosEvent, Location) == 0x000000, "Member 'FCollisionChaosEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEvent, AccumulatedImpulse) == 0x000018, "Member 'FCollisionChaosEvent::AccumulatedImpulse' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEvent, Normal) == 0x000030, "Member 'FCollisionChaosEvent::Normal' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEvent, PenetrationDepth) == 0x000048, "Member 'FCollisionChaosEvent::PenetrationDepth' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEvent, Body1) == 0x000050, "Member 'FCollisionChaosEvent::Body1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionChaosEvent, Body2) == 0x0000C0, "Member 'FCollisionChaosEvent::Body2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveEnvelopeTimeData \ +static_assert(alignof(FSoundWaveEnvelopeTimeData) == 0x000004, "Wrong alignment on FSoundWaveEnvelopeTimeData"); \ +static_assert(sizeof(FSoundWaveEnvelopeTimeData) == 0x000008, "Wrong size on FSoundWaveEnvelopeTimeData"); \ +static_assert(offsetof(FSoundWaveEnvelopeTimeData, Amplitude) == 0x000000, "Member 'FSoundWaveEnvelopeTimeData::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveEnvelopeTimeData, TimeSec) == 0x000004, "Member 'FSoundWaveEnvelopeTimeData::TimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateModifierKeysState \ +static_assert(alignof(FSlateModifierKeysState) == 0x000001, "Wrong alignment on FSlateModifierKeysState"); \ +static_assert(sizeof(FSlateModifierKeysState) == 0x000001, "Wrong size on FSlateModifierKeysState"); \ +static_assert(offsetof(FSlateModifierKeysState, ModifierKeysStateMask) == 0x000000, "Member 'FSlateModifierKeysState::ModifierKeysStateMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUserActivity \ +static_assert(alignof(FUserActivity) == 0x000008, "Wrong alignment on FUserActivity"); \ +static_assert(sizeof(FUserActivity) == 0x000018, "Wrong size on FUserActivity"); \ +static_assert(offsetof(FUserActivity, ActionName) == 0x000000, "Member 'FUserActivity::ActionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshBuildSettings \ +static_assert(alignof(FSkeletalMeshBuildSettings) == 0x000004, "Wrong alignment on FSkeletalMeshBuildSettings"); \ +static_assert(sizeof(FSkeletalMeshBuildSettings) == 0x000018, "Wrong size on FSkeletalMeshBuildSettings"); \ +static_assert(offsetof(FSkeletalMeshBuildSettings, ThresholdPosition) == 0x000004, "Member 'FSkeletalMeshBuildSettings::ThresholdPosition' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBuildSettings, ThresholdTangentNormal) == 0x000008, "Member 'FSkeletalMeshBuildSettings::ThresholdTangentNormal' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBuildSettings, ThresholdUV) == 0x00000C, "Member 'FSkeletalMeshBuildSettings::ThresholdUV' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBuildSettings, MorphThresholdPosition) == 0x000010, "Member 'FSkeletalMeshBuildSettings::MorphThresholdPosition' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBuildSettings, BoneInfluenceLimit) == 0x000014, "Member 'FSkeletalMeshBuildSettings::BoneInfluenceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRPCDoSState \ +static_assert(alignof(FRPCDoSState) == 0x000008, "Wrong alignment on FRPCDoSState"); \ +static_assert(sizeof(FRPCDoSState) == 0x000048, "Wrong size on FRPCDoSState"); \ +static_assert(offsetof(FRPCDoSState, bLogEscalate) == 0x000008, "Member 'FRPCDoSState::bLogEscalate' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, bSendEscalateAnalytics) == 0x000009, "Member 'FRPCDoSState::bSendEscalateAnalytics' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, bKickPlayer) == 0x00000A, "Member 'FRPCDoSState::bKickPlayer' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, bTrackRecentRPCs) == 0x00000B, "Member 'FRPCDoSState::bTrackRecentRPCs' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalateQuotaRPCsPerFrame) == 0x00000C, "Member 'FRPCDoSState::EscalateQuotaRPCsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalateTimeQuotaMSPerFrame) == 0x00000E, "Member 'FRPCDoSState::EscalateTimeQuotaMSPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalateQuotaRPCsPerPeriod) == 0x000010, "Member 'FRPCDoSState::EscalateQuotaRPCsPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalateTimeQuotaMSPerPeriod) == 0x000012, "Member 'FRPCDoSState::EscalateTimeQuotaMSPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalateQuotaTimePeriod) == 0x000014, "Member 'FRPCDoSState::EscalateQuotaTimePeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalationCountTolerance) == 0x000015, "Member 'FRPCDoSState::EscalationCountTolerance' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, EscalationTimeToleranceMS) == 0x000016, "Member 'FRPCDoSState::EscalationTimeToleranceMS' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, RPCRepeatLimitPerPeriod) == 0x000018, "Member 'FRPCDoSState::RPCRepeatLimitPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, RPCRepeatLimitMSPerPeriod) == 0x00001A, "Member 'FRPCDoSState::RPCRepeatLimitMSPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, RPCRepeatLimitTimePeriod) == 0x00001C, "Member 'FRPCDoSState::RPCRepeatLimitTimePeriod' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, CooloffTime) == 0x00001E, "Member 'FRPCDoSState::CooloffTime' has a wrong offset!"); \ +static_assert(offsetof(FRPCDoSState, AutoEscalateTime) == 0x000020, "Member 'FRPCDoSState::AutoEscalateTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRPCDoSStateConfig \ +static_assert(alignof(FRPCDoSStateConfig) == 0x000008, "Wrong alignment on FRPCDoSStateConfig"); \ +static_assert(sizeof(FRPCDoSStateConfig) == 0x000078, "Wrong size on FRPCDoSStateConfig"); \ + +#define DUMPER7_ASSERTS_FVector_NetQuantize \ +static_assert(alignof(FVector_NetQuantize) == 0x000008, "Wrong alignment on FVector_NetQuantize"); \ +static_assert(sizeof(FVector_NetQuantize) == 0x000018, "Wrong size on FVector_NetQuantize"); \ + +#define DUMPER7_ASSERTS_FMaterialProxySettings \ +static_assert(alignof(FMaterialProxySettings) == 0x000008, "Wrong alignment on FMaterialProxySettings"); \ +static_assert(sizeof(FMaterialProxySettings) == 0x0000A0, "Wrong size on FMaterialProxySettings"); \ +static_assert(offsetof(FMaterialProxySettings, TextureSizingType) == 0x000000, "Member 'FMaterialProxySettings::TextureSizingType' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, TextureSize) == 0x000004, "Member 'FMaterialProxySettings::TextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, TargetTexelDensityPerMeter) == 0x00000C, "Member 'FMaterialProxySettings::TargetTexelDensityPerMeter' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, MeshMaxScreenSizePercent) == 0x000010, "Member 'FMaterialProxySettings::MeshMaxScreenSizePercent' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, MeshMinDrawDistance) == 0x000018, "Member 'FMaterialProxySettings::MeshMinDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, GutterSpace) == 0x000020, "Member 'FMaterialProxySettings::GutterSpace' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, MetallicConstant) == 0x000024, "Member 'FMaterialProxySettings::MetallicConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, RoughnessConstant) == 0x000028, "Member 'FMaterialProxySettings::RoughnessConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, AnisotropyConstant) == 0x00002C, "Member 'FMaterialProxySettings::AnisotropyConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, SpecularConstant) == 0x000030, "Member 'FMaterialProxySettings::SpecularConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, OpacityConstant) == 0x000034, "Member 'FMaterialProxySettings::OpacityConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, OpacityMaskConstant) == 0x000038, "Member 'FMaterialProxySettings::OpacityMaskConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, AmbientOcclusionConstant) == 0x00003C, "Member 'FMaterialProxySettings::AmbientOcclusionConstant' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, MaterialMergeType) == 0x000040, "Member 'FMaterialProxySettings::MaterialMergeType' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, BlendMode) == 0x000041, "Member 'FMaterialProxySettings::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, DiffuseTextureSize) == 0x000044, "Member 'FMaterialProxySettings::DiffuseTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, NormalTextureSize) == 0x00004C, "Member 'FMaterialProxySettings::NormalTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, TangentTextureSize) == 0x000054, "Member 'FMaterialProxySettings::TangentTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, MetallicTextureSize) == 0x00005C, "Member 'FMaterialProxySettings::MetallicTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, RoughnessTextureSize) == 0x000064, "Member 'FMaterialProxySettings::RoughnessTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, AnisotropyTextureSize) == 0x00006C, "Member 'FMaterialProxySettings::AnisotropyTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, SpecularTextureSize) == 0x000074, "Member 'FMaterialProxySettings::SpecularTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, EmissiveTextureSize) == 0x00007C, "Member 'FMaterialProxySettings::EmissiveTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, OpacityTextureSize) == 0x000084, "Member 'FMaterialProxySettings::OpacityTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, OpacityMaskTextureSize) == 0x00008C, "Member 'FMaterialProxySettings::OpacityMaskTextureSize' has a wrong offset!"); \ +static_assert(offsetof(FMaterialProxySettings, AmbientOcclusionTextureSize) == 0x000094, "Member 'FMaterialProxySettings::AmbientOcclusionTextureSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshMergingSettings \ +static_assert(alignof(FMeshMergingSettings) == 0x000008, "Wrong alignment on FMeshMergingSettings"); \ +static_assert(sizeof(FMeshMergingSettings) == 0x000108, "Wrong size on FMeshMergingSettings"); \ +static_assert(offsetof(FMeshMergingSettings, TargetLightMapResolution) == 0x000000, "Member 'FMeshMergingSettings::TargetLightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, OutputUVs) == 0x000004, "Member 'FMeshMergingSettings::OutputUVs' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, MaterialSettings) == 0x000010, "Member 'FMeshMergingSettings::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, GutterSize) == 0x0000B0, "Member 'FMeshMergingSettings::GutterSize' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, LODSelectionType) == 0x0000B4, "Member 'FMeshMergingSettings::LODSelectionType' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, SpecificLOD) == 0x0000B8, "Member 'FMeshMergingSettings::SpecificLOD' has a wrong offset!"); \ +static_assert(offsetof(FMeshMergingSettings, NaniteSettings) == 0x0000C0, "Member 'FMeshMergingSettings::NaniteSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStringCurveKey \ +static_assert(alignof(FStringCurveKey) == 0x000008, "Wrong alignment on FStringCurveKey"); \ +static_assert(sizeof(FStringCurveKey) == 0x000018, "Wrong size on FStringCurveKey"); \ +static_assert(offsetof(FStringCurveKey, Time) == 0x000000, "Member 'FStringCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FStringCurveKey, Value) == 0x000008, "Member 'FStringCurveKey::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosCrumblingEvent \ +static_assert(alignof(FChaosCrumblingEvent) == 0x000010, "Wrong alignment on FChaosCrumblingEvent"); \ +static_assert(sizeof(FChaosCrumblingEvent) == 0x0000C0, "Wrong size on FChaosCrumblingEvent"); \ +static_assert(offsetof(FChaosCrumblingEvent, Component) == 0x000000, "Member 'FChaosCrumblingEvent::Component' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, Location) == 0x000008, "Member 'FChaosCrumblingEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, Orientation) == 0x000020, "Member 'FChaosCrumblingEvent::Orientation' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, LinearVelocity) == 0x000040, "Member 'FChaosCrumblingEvent::LinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, AngularVelocity) == 0x000058, "Member 'FChaosCrumblingEvent::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, MASS) == 0x000070, "Member 'FChaosCrumblingEvent::MASS' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, LocalBounds) == 0x000078, "Member 'FChaosCrumblingEvent::LocalBounds' has a wrong offset!"); \ +static_assert(offsetof(FChaosCrumblingEvent, Children) == 0x0000B0, "Member 'FChaosCrumblingEvent::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMClientInstance \ +static_assert(alignof(FISMClientInstance) == 0x000008, "Wrong alignment on FISMClientInstance"); \ +static_assert(sizeof(FISMClientInstance) == 0x000010, "Wrong size on FISMClientInstance"); \ +static_assert(offsetof(FISMClientInstance, ComponentIndices) == 0x000000, "Member 'FISMClientInstance::ComponentIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedStaticMeshInstanceData \ +static_assert(alignof(FInstancedStaticMeshInstanceData) == 0x000010, "Wrong alignment on FInstancedStaticMeshInstanceData"); \ +static_assert(sizeof(FInstancedStaticMeshInstanceData) == 0x000080, "Wrong size on FInstancedStaticMeshInstanceData"); \ +static_assert(offsetof(FInstancedStaticMeshInstanceData, Transform) == 0x000000, "Member 'FInstancedStaticMeshInstanceData::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentReference \ +static_assert(alignof(FComponentReference) == 0x000008, "Wrong alignment on FComponentReference"); \ +static_assert(sizeof(FComponentReference) == 0x000028, "Wrong size on FComponentReference"); \ +static_assert(offsetof(FComponentReference, OtherActor) == 0x000020, "Member 'FComponentReference::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector_NetQuantizeNormal \ +static_assert(alignof(FVector_NetQuantizeNormal) == 0x000008, "Wrong alignment on FVector_NetQuantizeNormal"); \ +static_assert(sizeof(FVector_NetQuantizeNormal) == 0x000018, "Wrong size on FVector_NetQuantizeNormal"); \ + +#define DUMPER7_ASSERTS_FHitResult \ +static_assert(alignof(FHitResult) == 0x000008, "Wrong alignment on FHitResult"); \ +static_assert(sizeof(FHitResult) == 0x0000E8, "Wrong size on FHitResult"); \ +static_assert(offsetof(FHitResult, FaceIndex) == 0x000000, "Member 'FHitResult::FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Time) == 0x000004, "Member 'FHitResult::Time' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Distance) == 0x000008, "Member 'FHitResult::Distance' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Location) == 0x000010, "Member 'FHitResult::Location' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, ImpactPoint) == 0x000028, "Member 'FHitResult::ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Normal) == 0x000040, "Member 'FHitResult::Normal' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, ImpactNormal) == 0x000058, "Member 'FHitResult::ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, TraceStart) == 0x000070, "Member 'FHitResult::TraceStart' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, TraceEnd) == 0x000088, "Member 'FHitResult::TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, PenetrationDepth) == 0x0000A0, "Member 'FHitResult::PenetrationDepth' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, MyItem) == 0x0000A4, "Member 'FHitResult::MyItem' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Item) == 0x0000A8, "Member 'FHitResult::Item' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, ElementIndex) == 0x0000AC, "Member 'FHitResult::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, PhysMaterial) == 0x0000B0, "Member 'FHitResult::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, HitObjectHandle) == 0x0000B8, "Member 'FHitResult::HitObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, Component) == 0x0000D0, "Member 'FHitResult::Component' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, BoneName) == 0x0000D8, "Member 'FHitResult::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FHitResult, MyBoneName) == 0x0000E0, "Member 'FHitResult::MyBoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTrackToSkeletonMap \ +static_assert(alignof(FTrackToSkeletonMap) == 0x000004, "Wrong alignment on FTrackToSkeletonMap"); \ +static_assert(sizeof(FTrackToSkeletonMap) == 0x000004, "Wrong size on FTrackToSkeletonMap"); \ +static_assert(offsetof(FTrackToSkeletonMap, BoneTreeIndex) == 0x000000, "Member 'FTrackToSkeletonMap::BoneTreeIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundAttenuationPluginSettings \ +static_assert(alignof(FSoundAttenuationPluginSettings) == 0x000008, "Wrong alignment on FSoundAttenuationPluginSettings"); \ +static_assert(sizeof(FSoundAttenuationPluginSettings) == 0x000040, "Wrong size on FSoundAttenuationPluginSettings"); \ +static_assert(offsetof(FSoundAttenuationPluginSettings, SpatializationPluginSettingsArray) == 0x000000, "Member 'FSoundAttenuationPluginSettings::SpatializationPluginSettingsArray' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationPluginSettings, OcclusionPluginSettingsArray) == 0x000010, "Member 'FSoundAttenuationPluginSettings::OcclusionPluginSettingsArray' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationPluginSettings, ReverbPluginSettingsArray) == 0x000020, "Member 'FSoundAttenuationPluginSettings::ReverbPluginSettingsArray' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationPluginSettings, SourceDataOverridePluginSettingsArray) == 0x000030, "Member 'FSoundAttenuationPluginSettings::SourceDataOverridePluginSettingsArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTickPrerequisite \ +static_assert(alignof(FTickPrerequisite) == 0x000008, "Wrong alignment on FTickPrerequisite"); \ +static_assert(sizeof(FTickPrerequisite) == 0x000010, "Wrong size on FTickPrerequisite"); \ + +#define DUMPER7_ASSERTS_FTimeStretchCurveMarker \ +static_assert(alignof(FTimeStretchCurveMarker) == 0x000004, "Wrong alignment on FTimeStretchCurveMarker"); \ +static_assert(sizeof(FTimeStretchCurveMarker) == 0x000010, "Wrong size on FTimeStretchCurveMarker"); \ +static_assert(offsetof(FTimeStretchCurveMarker, Time) == 0x000000, "Member 'FTimeStretchCurveMarker::Time' has a wrong offset!"); \ +static_assert(offsetof(FTimeStretchCurveMarker, alpha) == 0x00000C, "Member 'FTimeStretchCurveMarker::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimeStretchCurve \ +static_assert(alignof(FTimeStretchCurve) == 0x000008, "Wrong alignment on FTimeStretchCurve"); \ +static_assert(sizeof(FTimeStretchCurve) == 0x000028, "Wrong size on FTimeStretchCurve"); \ +static_assert(offsetof(FTimeStretchCurve, SamplingRate) == 0x000000, "Member 'FTimeStretchCurve::SamplingRate' has a wrong offset!"); \ +static_assert(offsetof(FTimeStretchCurve, CurveValueMinPrecision) == 0x000004, "Member 'FTimeStretchCurve::CurveValueMinPrecision' has a wrong offset!"); \ +static_assert(offsetof(FTimeStretchCurve, Markers) == 0x000008, "Member 'FTimeStretchCurve::Markers' has a wrong offset!"); \ +static_assert(offsetof(FTimeStretchCurve, Sum_dT_i_by_C_i) == 0x000018, "Member 'FTimeStretchCurve::Sum_dT_i_by_C_i' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSocketReference \ +static_assert(alignof(FSocketReference) == 0x000010, "Wrong alignment on FSocketReference"); \ +static_assert(sizeof(FSocketReference) == 0x000070, "Wrong size on FSocketReference"); \ +static_assert(offsetof(FSocketReference, SocketName) == 0x000060, "Member 'FSocketReference::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneSocketTarget \ +static_assert(alignof(FBoneSocketTarget) == 0x000010, "Wrong alignment on FBoneSocketTarget"); \ +static_assert(sizeof(FBoneSocketTarget) == 0x000090, "Wrong size on FBoneSocketTarget"); \ +static_assert(offsetof(FBoneSocketTarget, bUseSocket) == 0x000000, "Member 'FBoneSocketTarget::bUseSocket' has a wrong offset!"); \ +static_assert(offsetof(FBoneSocketTarget, BoneReference) == 0x000004, "Member 'FBoneSocketTarget::BoneReference' has a wrong offset!"); \ +static_assert(offsetof(FBoneSocketTarget, SocketReference) == 0x000020, "Member 'FBoneSocketTarget::SocketReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubtitleCue \ +static_assert(alignof(FSubtitleCue) == 0x000008, "Wrong alignment on FSubtitleCue"); \ +static_assert(sizeof(FSubtitleCue) == 0x000020, "Wrong size on FSubtitleCue"); \ +static_assert(offsetof(FSubtitleCue, Text) == 0x000000, "Member 'FSubtitleCue::Text' has a wrong offset!"); \ +static_assert(offsetof(FSubtitleCue, Time) == 0x000018, "Member 'FSubtitleCue::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpControlPoint \ +static_assert(alignof(FInterpControlPoint) == 0x000008, "Wrong alignment on FInterpControlPoint"); \ +static_assert(sizeof(FInterpControlPoint) == 0x000028, "Wrong size on FInterpControlPoint"); \ +static_assert(offsetof(FInterpControlPoint, PositionControlPoint) == 0x000000, "Member 'FInterpControlPoint::PositionControlPoint' has a wrong offset!"); \ +static_assert(offsetof(FInterpControlPoint, bPositionIsRelative) == 0x000018, "Member 'FInterpControlPoint::bPositionIsRelative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFullyLoadedPackagesInfo \ +static_assert(alignof(FFullyLoadedPackagesInfo) == 0x000008, "Wrong alignment on FFullyLoadedPackagesInfo"); \ +static_assert(sizeof(FFullyLoadedPackagesInfo) == 0x000038, "Wrong size on FFullyLoadedPackagesInfo"); \ +static_assert(offsetof(FFullyLoadedPackagesInfo, FullyLoadType) == 0x000000, "Member 'FFullyLoadedPackagesInfo::FullyLoadType' has a wrong offset!"); \ +static_assert(offsetof(FFullyLoadedPackagesInfo, Tag) == 0x000008, "Member 'FFullyLoadedPackagesInfo::Tag' has a wrong offset!"); \ +static_assert(offsetof(FFullyLoadedPackagesInfo, PackagesToLoad) == 0x000018, "Member 'FFullyLoadedPackagesInfo::PackagesToLoad' has a wrong offset!"); \ +static_assert(offsetof(FFullyLoadedPackagesInfo, LoadedObjects) == 0x000028, "Member 'FFullyLoadedPackagesInfo::LoadedObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraShakeDuration \ +static_assert(alignof(FCameraShakeDuration) == 0x000004, "Wrong alignment on FCameraShakeDuration"); \ +static_assert(sizeof(FCameraShakeDuration) == 0x000008, "Wrong size on FCameraShakeDuration"); \ +static_assert(offsetof(FCameraShakeDuration, Duration) == 0x000000, "Member 'FCameraShakeDuration::Duration' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeDuration, Type) == 0x000004, "Member 'FCameraShakeDuration::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraShakeInfo \ +static_assert(alignof(FCameraShakeInfo) == 0x000004, "Wrong alignment on FCameraShakeInfo"); \ +static_assert(sizeof(FCameraShakeInfo) == 0x000010, "Wrong size on FCameraShakeInfo"); \ +static_assert(offsetof(FCameraShakeInfo, Duration) == 0x000000, "Member 'FCameraShakeInfo::Duration' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeInfo, BlendIn) == 0x000008, "Member 'FCameraShakeInfo::BlendIn' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeInfo, BlendOut) == 0x00000C, "Member 'FCameraShakeInfo::BlendOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEncounteredStateMachineStack \ +static_assert(alignof(FEncounteredStateMachineStack) == 0x000008, "Wrong alignment on FEncounteredStateMachineStack"); \ +static_assert(sizeof(FEncounteredStateMachineStack) == 0x000030, "Wrong size on FEncounteredStateMachineStack"); \ + +#define DUMPER7_ASSERTS_FDebugFloatHistory \ +static_assert(alignof(FDebugFloatHistory) == 0x000008, "Wrong alignment on FDebugFloatHistory"); \ +static_assert(sizeof(FDebugFloatHistory) == 0x000020, "Wrong size on FDebugFloatHistory"); \ +static_assert(offsetof(FDebugFloatHistory, Samples) == 0x000000, "Member 'FDebugFloatHistory::Samples' has a wrong offset!"); \ +static_assert(offsetof(FDebugFloatHistory, MaxSamples) == 0x000010, "Member 'FDebugFloatHistory::MaxSamples' has a wrong offset!"); \ +static_assert(offsetof(FDebugFloatHistory, MinValue) == 0x000014, "Member 'FDebugFloatHistory::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FDebugFloatHistory, MaxValue) == 0x000018, "Member 'FDebugFloatHistory::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FDebugFloatHistory, bAutoAdjustMinMax) == 0x00001C, "Member 'FDebugFloatHistory::bAutoAdjustMinMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoftComponentReference \ +static_assert(alignof(FSoftComponentReference) == 0x000008, "Wrong alignment on FSoftComponentReference"); \ +static_assert(sizeof(FSoftComponentReference) == 0x000048, "Wrong size on FSoftComponentReference"); \ +static_assert(offsetof(FSoftComponentReference, OtherActor) == 0x000020, "Member 'FSoftComponentReference::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHLODSubActor \ +static_assert(alignof(FHLODSubActor) == 0x000001, "Wrong alignment on FHLODSubActor"); \ +static_assert(sizeof(FHLODSubActor) == 0x000001, "Wrong size on FHLODSubActor"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem \ +static_assert(alignof(FAnimSubsystem) == 0x000008, "Wrong alignment on FAnimSubsystem"); \ +static_assert(sizeof(FAnimSubsystem) == 0x000008, "Wrong size on FAnimSubsystem"); \ + +#define DUMPER7_ASSERTS_FNameCurveKey \ +static_assert(alignof(FNameCurveKey) == 0x000004, "Wrong alignment on FNameCurveKey"); \ +static_assert(sizeof(FNameCurveKey) == 0x00000C, "Wrong size on FNameCurveKey"); \ +static_assert(offsetof(FNameCurveKey, Time) == 0x000000, "Member 'FNameCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FNameCurveKey, Value) == 0x000004, "Member 'FNameCurveKey::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNameCurve \ +static_assert(alignof(FNameCurve) == 0x000008, "Wrong alignment on FNameCurve"); \ +static_assert(sizeof(FNameCurve) == 0x000078, "Wrong size on FNameCurve"); \ +static_assert(offsetof(FNameCurve, Keys) == 0x000068, "Member 'FNameCurve::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterNode \ +static_assert(alignof(FClusterNode) == 0x000004, "Wrong alignment on FClusterNode"); \ +static_assert(sizeof(FClusterNode) == 0x000040, "Wrong size on FClusterNode"); \ +static_assert(offsetof(FClusterNode, BoundMin) == 0x000000, "Member 'FClusterNode::BoundMin' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, FirstChild) == 0x00000C, "Member 'FClusterNode::FirstChild' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, BoundMax) == 0x000010, "Member 'FClusterNode::BoundMax' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, LastChild) == 0x00001C, "Member 'FClusterNode::LastChild' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, FirstInstance) == 0x000020, "Member 'FClusterNode::FirstInstance' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, LastInstance) == 0x000024, "Member 'FClusterNode::LastInstance' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, MinInstanceScale) == 0x000028, "Member 'FClusterNode::MinInstanceScale' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode, MaxInstanceScale) == 0x000034, "Member 'FClusterNode::MaxInstanceScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimerHandle \ +static_assert(alignof(FTimerHandle) == 0x000008, "Wrong alignment on FTimerHandle"); \ +static_assert(sizeof(FTimerHandle) == 0x000008, "Wrong size on FTimerHandle"); \ +static_assert(offsetof(FTimerHandle, Handle) == 0x000000, "Member 'FTimerHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputDelegateBinding \ +static_assert(alignof(FBlueprintInputDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintInputDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputDelegateBinding) == 0x000004, "Wrong size on FBlueprintInputDelegateBinding"); \ + +#define DUMPER7_ASSERTS_FCollisionProfileName \ +static_assert(alignof(FCollisionProfileName) == 0x000004, "Wrong alignment on FCollisionProfileName"); \ +static_assert(sizeof(FCollisionProfileName) == 0x000008, "Wrong size on FCollisionProfileName"); \ +static_assert(offsetof(FCollisionProfileName, Name) == 0x000000, "Member 'FCollisionProfileName::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavAgentSelector \ +static_assert(alignof(FNavAgentSelector) == 0x000004, "Wrong alignment on FNavAgentSelector"); \ +static_assert(sizeof(FNavAgentSelector) == 0x000004, "Wrong size on FNavAgentSelector"); \ + +#define DUMPER7_ASSERTS_FCurveTableRowHandle \ +static_assert(alignof(FCurveTableRowHandle) == 0x000008, "Wrong alignment on FCurveTableRowHandle"); \ +static_assert(sizeof(FCurveTableRowHandle) == 0x000010, "Wrong size on FCurveTableRowHandle"); \ +static_assert(offsetof(FCurveTableRowHandle, CurveTable) == 0x000000, "Member 'FCurveTableRowHandle::CurveTable' has a wrong offset!"); \ +static_assert(offsetof(FCurveTableRowHandle, RowName) == 0x000008, "Member 'FCurveTableRowHandle::RowName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatAnimationAttribute \ +static_assert(alignof(FFloatAnimationAttribute) == 0x000004, "Wrong alignment on FFloatAnimationAttribute"); \ +static_assert(sizeof(FFloatAnimationAttribute) == 0x000004, "Wrong size on FFloatAnimationAttribute"); \ +static_assert(offsetof(FFloatAnimationAttribute, Value) == 0x000000, "Member 'FFloatAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGenericStruct \ +static_assert(alignof(FGenericStruct) == 0x000004, "Wrong alignment on FGenericStruct"); \ +static_assert(sizeof(FGenericStruct) == 0x000004, "Wrong size on FGenericStruct"); \ +static_assert(offsetof(FGenericStruct, Data) == 0x000000, "Member 'FGenericStruct::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompressedTrack \ +static_assert(alignof(FCompressedTrack) == 0x000008, "Wrong alignment on FCompressedTrack"); \ +static_assert(sizeof(FCompressedTrack) == 0x000038, "Wrong size on FCompressedTrack"); \ +static_assert(offsetof(FCompressedTrack, ByteStream) == 0x000000, "Member 'FCompressedTrack::ByteStream' has a wrong offset!"); \ +static_assert(offsetof(FCompressedTrack, Times) == 0x000010, "Member 'FCompressedTrack::Times' has a wrong offset!"); \ +static_assert(offsetof(FCompressedTrack, Mins) == 0x000020, "Member 'FCompressedTrack::Mins' has a wrong offset!"); \ +static_assert(offsetof(FCompressedTrack, Ranges) == 0x00002C, "Member 'FCompressedTrack::Ranges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSegment \ +static_assert(alignof(FAnimSegment) == 0x000008, "Wrong alignment on FAnimSegment"); \ +static_assert(sizeof(FAnimSegment) == 0x000020, "Wrong size on FAnimSegment"); \ +static_assert(offsetof(FAnimSegment, AnimReference) == 0x000000, "Member 'FAnimSegment::AnimReference' has a wrong offset!"); \ +static_assert(offsetof(FAnimSegment, StartPos) == 0x000008, "Member 'FAnimSegment::StartPos' has a wrong offset!"); \ +static_assert(offsetof(FAnimSegment, AnimStartTime) == 0x00000C, "Member 'FAnimSegment::AnimStartTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimSegment, AnimEndTime) == 0x000010, "Member 'FAnimSegment::AnimEndTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimSegment, AnimPlayRate) == 0x000014, "Member 'FAnimSegment::AnimPlayRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimSegment, LoopingCount) == 0x000018, "Member 'FAnimSegment::LoopingCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionResponseTemplate \ +static_assert(alignof(FCollisionResponseTemplate) == 0x000008, "Wrong alignment on FCollisionResponseTemplate"); \ +static_assert(sizeof(FCollisionResponseTemplate) == 0x000048, "Wrong size on FCollisionResponseTemplate"); \ +static_assert(offsetof(FCollisionResponseTemplate, Name) == 0x000000, "Member 'FCollisionResponseTemplate::Name' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseTemplate, CollisionEnabled) == 0x000008, "Member 'FCollisionResponseTemplate::CollisionEnabled' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseTemplate, bCanModify) == 0x00000A, "Member 'FCollisionResponseTemplate::bCanModify' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseTemplate, ObjectTypeName) == 0x00002C, "Member 'FCollisionResponseTemplate::ObjectTypeName' has a wrong offset!"); \ +static_assert(offsetof(FCollisionResponseTemplate, CustomResponses) == 0x000038, "Member 'FCollisionResponseTemplate::CustomResponses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialShadingModelField \ +static_assert(alignof(FMaterialShadingModelField) == 0x000002, "Wrong alignment on FMaterialShadingModelField"); \ +static_assert(sizeof(FMaterialShadingModelField) == 0x000002, "Wrong size on FMaterialShadingModelField"); \ +static_assert(offsetof(FMaterialShadingModelField, ShadingModelField) == 0x000000, "Member 'FMaterialShadingModelField::ShadingModelField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimBlueprintConstantData \ +static_assert(alignof(FAnimBlueprintConstantData) == 0x000001, "Wrong alignment on FAnimBlueprintConstantData"); \ +static_assert(sizeof(FAnimBlueprintConstantData) == 0x000001, "Wrong size on FAnimBlueprintConstantData"); \ + +#define DUMPER7_ASSERTS_FDebugTextInfo \ +static_assert(alignof(FDebugTextInfo) == 0x000008, "Wrong alignment on FDebugTextInfo"); \ +static_assert(sizeof(FDebugTextInfo) == 0x000080, "Wrong size on FDebugTextInfo"); \ +static_assert(offsetof(FDebugTextInfo, SrcActor) == 0x000000, "Member 'FDebugTextInfo::SrcActor' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, SrcActorOffset) == 0x000008, "Member 'FDebugTextInfo::SrcActorOffset' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, SrcActorDesiredOffset) == 0x000020, "Member 'FDebugTextInfo::SrcActorDesiredOffset' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, DebugText) == 0x000038, "Member 'FDebugTextInfo::DebugText' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, TimeRemaining) == 0x000048, "Member 'FDebugTextInfo::TimeRemaining' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, Duration) == 0x00004C, "Member 'FDebugTextInfo::Duration' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, TextColor) == 0x000050, "Member 'FDebugTextInfo::TextColor' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, OrigActorLocation) == 0x000058, "Member 'FDebugTextInfo::OrigActorLocation' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, Font) == 0x000070, "Member 'FDebugTextInfo::Font' has a wrong offset!"); \ +static_assert(offsetof(FDebugTextInfo, FontScale) == 0x000078, "Member 'FDebugTextInfo::FontScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNewLevelInstanceParams \ +static_assert(alignof(FNewLevelInstanceParams) == 0x000008, "Wrong alignment on FNewLevelInstanceParams"); \ +static_assert(sizeof(FNewLevelInstanceParams) == 0x000048, "Wrong size on FNewLevelInstanceParams"); \ +static_assert(offsetof(FNewLevelInstanceParams, Type) == 0x000000, "Member 'FNewLevelInstanceParams::Type' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, PivotType) == 0x000001, "Member 'FNewLevelInstanceParams::PivotType' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, PivotActor) == 0x000008, "Member 'FNewLevelInstanceParams::PivotActor' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bAlwaysShowDialog) == 0x000010, "Member 'FNewLevelInstanceParams::bAlwaysShowDialog' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, TemplateWorld) == 0x000018, "Member 'FNewLevelInstanceParams::TemplateWorld' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, LevelPackageName) == 0x000020, "Member 'FNewLevelInstanceParams::LevelPackageName' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bPromptForSave) == 0x000030, "Member 'FNewLevelInstanceParams::bPromptForSave' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, LevelInstanceClass) == 0x000038, "Member 'FNewLevelInstanceParams::LevelInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bEnableStreaming) == 0x000040, "Member 'FNewLevelInstanceParams::bEnableStreaming' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bExternalActors) == 0x000041, "Member 'FNewLevelInstanceParams::bExternalActors' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bForceExternalActors) == 0x000042, "Member 'FNewLevelInstanceParams::bForceExternalActors' has a wrong offset!"); \ +static_assert(offsetof(FNewLevelInstanceParams, bHideCreationType) == 0x000043, "Member 'FNewLevelInstanceParams::bHideCreationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterpolationParameter \ +static_assert(alignof(FInterpolationParameter) == 0x000004, "Wrong alignment on FInterpolationParameter"); \ +static_assert(sizeof(FInterpolationParameter) == 0x000010, "Wrong size on FInterpolationParameter"); \ +static_assert(offsetof(FInterpolationParameter, InterpolationTime) == 0x000000, "Member 'FInterpolationParameter::InterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(FInterpolationParameter, DampingRatio) == 0x000004, "Member 'FInterpolationParameter::DampingRatio' has a wrong offset!"); \ +static_assert(offsetof(FInterpolationParameter, MaxSpeed) == 0x000008, "Member 'FInterpolationParameter::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(FInterpolationParameter, InterpolationType) == 0x00000C, "Member 'FInterpolationParameter::InterpolationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBookmark2DJumpToSettings \ +static_assert(alignof(FBookmark2DJumpToSettings) == 0x000001, "Wrong alignment on FBookmark2DJumpToSettings"); \ +static_assert(sizeof(FBookmark2DJumpToSettings) == 0x000001, "Wrong size on FBookmark2DJumpToSettings"); \ + +#define DUMPER7_ASSERTS_FCharacterMoveResponsePackedBits \ +static_assert(alignof(FCharacterMoveResponsePackedBits) == 0x000008, "Wrong alignment on FCharacterMoveResponsePackedBits"); \ +static_assert(sizeof(FCharacterMoveResponsePackedBits) == 0x0000C8, "Wrong size on FCharacterMoveResponsePackedBits"); \ + +#define DUMPER7_ASSERTS_FAnimTrack \ +static_assert(alignof(FAnimTrack) == 0x000008, "Wrong alignment on FAnimTrack"); \ +static_assert(sizeof(FAnimTrack) == 0x000010, "Wrong size on FAnimTrack"); \ +static_assert(offsetof(FAnimTrack, AnimSegments) == 0x000000, "Member 'FAnimTrack::AnimSegments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlotAnimationTrack \ +static_assert(alignof(FSlotAnimationTrack) == 0x000008, "Wrong alignment on FSlotAnimationTrack"); \ +static_assert(sizeof(FSlotAnimationTrack) == 0x000018, "Wrong size on FSlotAnimationTrack"); \ +static_assert(offsetof(FSlotAnimationTrack, SlotName) == 0x000000, "Member 'FSlotAnimationTrack::SlotName' has a wrong offset!"); \ +static_assert(offsetof(FSlotAnimationTrack, AnimTrack) == 0x000008, "Member 'FSlotAnimationTrack::AnimTrack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScaleTrack \ +static_assert(alignof(FScaleTrack) == 0x000008, "Wrong alignment on FScaleTrack"); \ +static_assert(sizeof(FScaleTrack) == 0x000020, "Wrong size on FScaleTrack"); \ +static_assert(offsetof(FScaleTrack, ScaleKeys) == 0x000000, "Member 'FScaleTrack::ScaleKeys' has a wrong offset!"); \ +static_assert(offsetof(FScaleTrack, Times) == 0x000010, "Member 'FScaleTrack::Times' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinimalViewInfo \ +static_assert(alignof(FMinimalViewInfo) == 0x000010, "Wrong alignment on FMinimalViewInfo"); \ +static_assert(sizeof(FMinimalViewInfo) == 0x0007D0, "Wrong size on FMinimalViewInfo"); \ +static_assert(offsetof(FMinimalViewInfo, Location) == 0x000000, "Member 'FMinimalViewInfo::Location' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, Rotation) == 0x000018, "Member 'FMinimalViewInfo::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, FOV) == 0x000030, "Member 'FMinimalViewInfo::FOV' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, DesiredFOV) == 0x000034, "Member 'FMinimalViewInfo::DesiredFOV' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, OrthoWidth) == 0x000038, "Member 'FMinimalViewInfo::OrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, OrthoNearClipPlane) == 0x00003C, "Member 'FMinimalViewInfo::OrthoNearClipPlane' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, OrthoFarClipPlane) == 0x000040, "Member 'FMinimalViewInfo::OrthoFarClipPlane' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, PerspectiveNearClipPlane) == 0x000044, "Member 'FMinimalViewInfo::PerspectiveNearClipPlane' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, AspectRatio) == 0x000048, "Member 'FMinimalViewInfo::AspectRatio' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, ProjectionMode) == 0x000058, "Member 'FMinimalViewInfo::ProjectionMode' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, PostProcessBlendWeight) == 0x00005C, "Member 'FMinimalViewInfo::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, PostProcessSettings) == 0x000060, "Member 'FMinimalViewInfo::PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(FMinimalViewInfo, OffCenterProjectionOffset) == 0x000750, "Member 'FMinimalViewInfo::OffCenterProjectionOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTViewTarget \ +static_assert(alignof(FTViewTarget) == 0x000010, "Wrong alignment on FTViewTarget"); \ +static_assert(sizeof(FTViewTarget) == 0x0007F0, "Wrong size on FTViewTarget"); \ +static_assert(offsetof(FTViewTarget, Target) == 0x000000, "Member 'FTViewTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(FTViewTarget, POV) == 0x000010, "Member 'FTViewTarget::POV' has a wrong offset!"); \ +static_assert(offsetof(FTViewTarget, PlayerState) == 0x0007E0, "Member 'FTViewTarget::PlayerState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebuggingInfoForSingleFunction \ +static_assert(alignof(FDebuggingInfoForSingleFunction) == 0x000008, "Wrong alignment on FDebuggingInfoForSingleFunction"); \ +static_assert(sizeof(FDebuggingInfoForSingleFunction) == 0x000190, "Wrong size on FDebuggingInfoForSingleFunction"); \ + +#define DUMPER7_ASSERTS_FBlueprintDebugData \ +static_assert(alignof(FBlueprintDebugData) == 0x000001, "Wrong alignment on FBlueprintDebugData"); \ +static_assert(sizeof(FBlueprintDebugData) == 0x000001, "Wrong size on FBlueprintDebugData"); \ + +#define DUMPER7_ASSERTS_FRootMotionMovementParams \ +static_assert(alignof(FRootMotionMovementParams) == 0x000010, "Wrong alignment on FRootMotionMovementParams"); \ +static_assert(sizeof(FRootMotionMovementParams) == 0x000070, "Wrong size on FRootMotionMovementParams"); \ +static_assert(offsetof(FRootMotionMovementParams, bHasRootMotion) == 0x000000, "Member 'FRootMotionMovementParams::bHasRootMotion' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionMovementParams, BlendWeight) == 0x000004, "Member 'FRootMotionMovementParams::BlendWeight' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionMovementParams, RootMotionTransform) == 0x000010, "Member 'FRootMotionMovementParams::RootMotionTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuartzTransportTimeStamp \ +static_assert(alignof(FQuartzTransportTimeStamp) == 0x000004, "Wrong alignment on FQuartzTransportTimeStamp"); \ +static_assert(sizeof(FQuartzTransportTimeStamp) == 0x000010, "Wrong size on FQuartzTransportTimeStamp"); \ +static_assert(offsetof(FQuartzTransportTimeStamp, Bars) == 0x000000, "Member 'FQuartzTransportTimeStamp::Bars' has a wrong offset!"); \ +static_assert(offsetof(FQuartzTransportTimeStamp, Beat) == 0x000004, "Member 'FQuartzTransportTimeStamp::Beat' has a wrong offset!"); \ +static_assert(offsetof(FQuartzTransportTimeStamp, BeatFraction) == 0x000008, "Member 'FQuartzTransportTimeStamp::BeatFraction' has a wrong offset!"); \ +static_assert(offsetof(FQuartzTransportTimeStamp, Seconds) == 0x00000C, "Member 'FQuartzTransportTimeStamp::Seconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEventGraphFastCallPair \ +static_assert(alignof(FEventGraphFastCallPair) == 0x000008, "Wrong alignment on FEventGraphFastCallPair"); \ +static_assert(sizeof(FEventGraphFastCallPair) == 0x000010, "Wrong size on FEventGraphFastCallPair"); \ +static_assert(offsetof(FEventGraphFastCallPair, FunctionToPatch) == 0x000000, "Member 'FEventGraphFastCallPair::FunctionToPatch' has a wrong offset!"); \ +static_assert(offsetof(FEventGraphFastCallPair, EventGraphCallOffset) == 0x000008, "Member 'FEventGraphFastCallPair::EventGraphCallOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBasedMovementInfo \ +static_assert(alignof(FBasedMovementInfo) == 0x000008, "Wrong alignment on FBasedMovementInfo"); \ +static_assert(sizeof(FBasedMovementInfo) == 0x000050, "Wrong size on FBasedMovementInfo"); \ +static_assert(offsetof(FBasedMovementInfo, BaseID) == 0x000000, "Member 'FBasedMovementInfo::BaseID' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, MovementBase) == 0x000008, "Member 'FBasedMovementInfo::MovementBase' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, BoneName) == 0x000010, "Member 'FBasedMovementInfo::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, Location) == 0x000018, "Member 'FBasedMovementInfo::Location' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, Rotation) == 0x000030, "Member 'FBasedMovementInfo::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, bServerHasBaseComponent) == 0x000048, "Member 'FBasedMovementInfo::bServerHasBaseComponent' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, bRelativeRotation) == 0x000049, "Member 'FBasedMovementInfo::bRelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(FBasedMovementInfo, bServerHasVelocity) == 0x00004A, "Member 'FBasedMovementInfo::bServerHasVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FForceFeedbackEffectOverridenChannelDetails \ +static_assert(alignof(FForceFeedbackEffectOverridenChannelDetails) == 0x000008, "Wrong alignment on FForceFeedbackEffectOverridenChannelDetails"); \ +static_assert(sizeof(FForceFeedbackEffectOverridenChannelDetails) == 0x000010, "Wrong size on FForceFeedbackEffectOverridenChannelDetails"); \ +static_assert(offsetof(FForceFeedbackEffectOverridenChannelDetails, ChannelDetails) == 0x000000, "Member 'FForceFeedbackEffectOverridenChannelDetails::ChannelDetails' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLODSoloTrack \ +static_assert(alignof(FLODSoloTrack) == 0x000008, "Wrong alignment on FLODSoloTrack"); \ +static_assert(sizeof(FLODSoloTrack) == 0x000010, "Wrong size on FLODSoloTrack"); \ +static_assert(offsetof(FLODSoloTrack, SoloEnableSetting) == 0x000000, "Member 'FLODSoloTrack::SoloEnableSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialTextureInfo \ +static_assert(alignof(FMaterialTextureInfo) == 0x000004, "Wrong alignment on FMaterialTextureInfo"); \ +static_assert(sizeof(FMaterialTextureInfo) == 0x000010, "Wrong size on FMaterialTextureInfo"); \ +static_assert(offsetof(FMaterialTextureInfo, SamplingScale) == 0x000000, "Member 'FMaterialTextureInfo::SamplingScale' has a wrong offset!"); \ +static_assert(offsetof(FMaterialTextureInfo, UVChannelIndex) == 0x000004, "Member 'FMaterialTextureInfo::UVChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(FMaterialTextureInfo, TextureName) == 0x000008, "Member 'FMaterialTextureInfo::TextureName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingRegionBoneFilter \ +static_assert(alignof(FSkeletalMeshSamplingRegionBoneFilter) == 0x000004, "Wrong alignment on FSkeletalMeshSamplingRegionBoneFilter"); \ +static_assert(sizeof(FSkeletalMeshSamplingRegionBoneFilter) == 0x00000C, "Wrong size on FSkeletalMeshSamplingRegionBoneFilter"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegionBoneFilter, BoneName) == 0x000000, "Member 'FSkeletalMeshSamplingRegionBoneFilter::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomInput \ +static_assert(alignof(FCustomInput) == 0x000008, "Wrong alignment on FCustomInput"); \ +static_assert(sizeof(FCustomInput) == 0x000030, "Wrong size on FCustomInput"); \ +static_assert(offsetof(FCustomInput, InputName) == 0x000000, "Member 'FCustomInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(FCustomInput, Input) == 0x000008, "Member 'FCustomInput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundSubmixSpectralAnalysisBandSettings \ +static_assert(alignof(FSoundSubmixSpectralAnalysisBandSettings) == 0x000004, "Wrong alignment on FSoundSubmixSpectralAnalysisBandSettings"); \ +static_assert(sizeof(FSoundSubmixSpectralAnalysisBandSettings) == 0x000010, "Wrong size on FSoundSubmixSpectralAnalysisBandSettings"); \ +static_assert(offsetof(FSoundSubmixSpectralAnalysisBandSettings, BandFrequency) == 0x000000, "Member 'FSoundSubmixSpectralAnalysisBandSettings::BandFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSpectralAnalysisBandSettings, AttackTimeMsec) == 0x000004, "Member 'FSoundSubmixSpectralAnalysisBandSettings::AttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSpectralAnalysisBandSettings, ReleaseTimeMsec) == 0x000008, "Member 'FSoundSubmixSpectralAnalysisBandSettings::ReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSpectralAnalysisBandSettings, QFactor) == 0x00000C, "Member 'FSoundSubmixSpectralAnalysisBandSettings::QFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundConcurrencySettings \ +static_assert(alignof(FSoundConcurrencySettings) == 0x000004, "Wrong alignment on FSoundConcurrencySettings"); \ +static_assert(sizeof(FSoundConcurrencySettings) == 0x000020, "Wrong size on FSoundConcurrencySettings"); \ +static_assert(offsetof(FSoundConcurrencySettings, MaxCount) == 0x000000, "Member 'FSoundConcurrencySettings::MaxCount' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, ResolutionRule) == 0x000005, "Member 'FSoundConcurrencySettings::ResolutionRule' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, RetriggerTime) == 0x000008, "Member 'FSoundConcurrencySettings::RetriggerTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, VolumeScale) == 0x00000C, "Member 'FSoundConcurrencySettings::VolumeScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, VolumeScaleMode) == 0x000010, "Member 'FSoundConcurrencySettings::VolumeScaleMode' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, VolumeScaleAttackTime) == 0x000014, "Member 'FSoundConcurrencySettings::VolumeScaleAttackTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, VolumeScaleReleaseTime) == 0x000018, "Member 'FSoundConcurrencySettings::VolumeScaleReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundConcurrencySettings, VoiceStealReleaseTime) == 0x00001C, "Member 'FSoundConcurrencySettings::VoiceStealReleaseTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerQualityLevelInt \ +static_assert(alignof(FPerQualityLevelInt) == 0x000008, "Wrong alignment on FPerQualityLevelInt"); \ +static_assert(sizeof(FPerQualityLevelInt) == 0x000068, "Wrong size on FPerQualityLevelInt"); \ +static_assert(offsetof(FPerQualityLevelInt, Default) == 0x000010, "Member 'FPerQualityLevelInt::Default' has a wrong offset!"); \ +static_assert(offsetof(FPerQualityLevelInt, PerQuality) == 0x000018, "Member 'FPerQualityLevelInt::PerQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialLayersFunctionsEditorOnlyData \ +static_assert(alignof(FMaterialLayersFunctionsEditorOnlyData) == 0x000008, "Wrong alignment on FMaterialLayersFunctionsEditorOnlyData"); \ +static_assert(sizeof(FMaterialLayersFunctionsEditorOnlyData) == 0x000070, "Wrong size on FMaterialLayersFunctionsEditorOnlyData"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, LayerStates) == 0x000000, "Member 'FMaterialLayersFunctionsEditorOnlyData::LayerStates' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, LayerNames) == 0x000010, "Member 'FMaterialLayersFunctionsEditorOnlyData::LayerNames' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, RestrictToLayerRelatives) == 0x000020, "Member 'FMaterialLayersFunctionsEditorOnlyData::RestrictToLayerRelatives' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, RestrictToBlendRelatives) == 0x000030, "Member 'FMaterialLayersFunctionsEditorOnlyData::RestrictToBlendRelatives' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, LayerGuids) == 0x000040, "Member 'FMaterialLayersFunctionsEditorOnlyData::LayerGuids' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, LayerLinkStates) == 0x000050, "Member 'FMaterialLayersFunctionsEditorOnlyData::LayerLinkStates' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsEditorOnlyData, DeletedParentLayerGuids) == 0x000060, "Member 'FMaterialLayersFunctionsEditorOnlyData::DeletedParentLayerGuids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialLayersFunctionsRuntimeData \ +static_assert(alignof(FMaterialLayersFunctionsRuntimeData) == 0x000008, "Wrong alignment on FMaterialLayersFunctionsRuntimeData"); \ +static_assert(sizeof(FMaterialLayersFunctionsRuntimeData) == 0x000020, "Wrong size on FMaterialLayersFunctionsRuntimeData"); \ +static_assert(offsetof(FMaterialLayersFunctionsRuntimeData, Layers) == 0x000000, "Member 'FMaterialLayersFunctionsRuntimeData::Layers' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctionsRuntimeData, Blends) == 0x000010, "Member 'FMaterialLayersFunctionsRuntimeData::Blends' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialLayersFunctions \ +static_assert(alignof(FMaterialLayersFunctions) == 0x000008, "Wrong alignment on FMaterialLayersFunctions"); \ +static_assert(sizeof(FMaterialLayersFunctions) == 0x000100, "Wrong size on FMaterialLayersFunctions"); \ +static_assert(offsetof(FMaterialLayersFunctions, EditorOnly) == 0x000020, "Member 'FMaterialLayersFunctions::EditorOnly' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, LayerStates) == 0x000090, "Member 'FMaterialLayersFunctions::LayerStates' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, LayerNames) == 0x0000A0, "Member 'FMaterialLayersFunctions::LayerNames' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, RestrictToLayerRelatives) == 0x0000B0, "Member 'FMaterialLayersFunctions::RestrictToLayerRelatives' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, RestrictToBlendRelatives) == 0x0000C0, "Member 'FMaterialLayersFunctions::RestrictToBlendRelatives' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, LayerGuids) == 0x0000D0, "Member 'FMaterialLayersFunctions::LayerGuids' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, LayerLinkStates) == 0x0000E0, "Member 'FMaterialLayersFunctions::LayerLinkStates' has a wrong offset!"); \ +static_assert(offsetof(FMaterialLayersFunctions, DeletedParentLayerGuids) == 0x0000F0, "Member 'FMaterialLayersFunctions::DeletedParentLayerGuids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialParameterInfo \ +static_assert(alignof(FMaterialParameterInfo) == 0x000004, "Wrong alignment on FMaterialParameterInfo"); \ +static_assert(sizeof(FMaterialParameterInfo) == 0x000010, "Wrong size on FMaterialParameterInfo"); \ +static_assert(offsetof(FMaterialParameterInfo, Name) == 0x000000, "Member 'FMaterialParameterInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FMaterialParameterInfo, Association) == 0x000008, "Member 'FMaterialParameterInfo::Association' has a wrong offset!"); \ +static_assert(offsetof(FMaterialParameterInfo, Index) == 0x00000C, "Member 'FMaterialParameterInfo::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticParameterBase \ +static_assert(alignof(FStaticParameterBase) == 0x000004, "Wrong alignment on FStaticParameterBase"); \ +static_assert(sizeof(FStaticParameterBase) == 0x000024, "Wrong size on FStaticParameterBase"); \ +static_assert(offsetof(FStaticParameterBase, ParameterInfo) == 0x000000, "Member 'FStaticParameterBase::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterBase, bOverride) == 0x000010, "Member 'FStaticParameterBase::bOverride' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterBase, ExpressionGUID) == 0x000014, "Member 'FStaticParameterBase::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMaterialLayersParameter \ +static_assert(alignof(FStaticMaterialLayersParameter) == 0x000008, "Wrong alignment on FStaticMaterialLayersParameter"); \ +static_assert(sizeof(FStaticMaterialLayersParameter) == 0x000128, "Wrong size on FStaticMaterialLayersParameter"); \ +static_assert(offsetof(FStaticMaterialLayersParameter, Value) == 0x000028, "Member 'FStaticMaterialLayersParameter::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImportFactorySettingValues \ +static_assert(alignof(FImportFactorySettingValues) == 0x000008, "Wrong alignment on FImportFactorySettingValues"); \ +static_assert(sizeof(FImportFactorySettingValues) == 0x000020, "Wrong size on FImportFactorySettingValues"); \ +static_assert(offsetof(FImportFactorySettingValues, SettingName) == 0x000000, "Member 'FImportFactorySettingValues::SettingName' has a wrong offset!"); \ +static_assert(offsetof(FImportFactorySettingValues, Value) == 0x000010, "Member 'FImportFactorySettingValues::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerQualityLevelFloat \ +static_assert(alignof(FPerQualityLevelFloat) == 0x000008, "Wrong alignment on FPerQualityLevelFloat"); \ +static_assert(sizeof(FPerQualityLevelFloat) == 0x000068, "Wrong size on FPerQualityLevelFloat"); \ +static_assert(offsetof(FPerQualityLevelFloat, Default) == 0x000010, "Member 'FPerQualityLevelFloat::Default' has a wrong offset!"); \ +static_assert(offsetof(FPerQualityLevelFloat, PerQuality) == 0x000018, "Member 'FPerQualityLevelFloat::PerQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementPasteOptions \ +static_assert(alignof(FTypedElementPasteOptions) == 0x000008, "Wrong alignment on FTypedElementPasteOptions"); \ +static_assert(sizeof(FTypedElementPasteOptions) == 0x000078, "Wrong size on FTypedElementPasteOptions"); \ +static_assert(offsetof(FTypedElementPasteOptions, SelectionSetToModify) == 0x000000, "Member 'FTypedElementPasteOptions::SelectionSetToModify' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementPasteOptions, bPasteAtLocation) == 0x000008, "Member 'FTypedElementPasteOptions::bPasteAtLocation' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementPasteOptions, PasteLocation) == 0x000010, "Member 'FTypedElementPasteOptions::PasteLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFunctionExpressionInput \ +static_assert(alignof(FFunctionExpressionInput) == 0x000008, "Wrong alignment on FFunctionExpressionInput"); \ +static_assert(sizeof(FFunctionExpressionInput) == 0x000040, "Wrong size on FFunctionExpressionInput"); \ +static_assert(offsetof(FFunctionExpressionInput, ExpressionInput) == 0x000000, "Member 'FFunctionExpressionInput::ExpressionInput' has a wrong offset!"); \ +static_assert(offsetof(FFunctionExpressionInput, ExpressionInputId) == 0x000008, "Member 'FFunctionExpressionInput::ExpressionInputId' has a wrong offset!"); \ +static_assert(offsetof(FFunctionExpressionInput, Input) == 0x000018, "Member 'FFunctionExpressionInput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerPlatformFloat \ +static_assert(alignof(FPerPlatformFloat) == 0x000004, "Wrong alignment on FPerPlatformFloat"); \ +static_assert(sizeof(FPerPlatformFloat) == 0x000004, "Wrong size on FPerPlatformFloat"); \ +static_assert(offsetof(FPerPlatformFloat, Default) == 0x000000, "Member 'FPerPlatformFloat::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugCameraControllerSettingsViewModeIndex \ +static_assert(alignof(FDebugCameraControllerSettingsViewModeIndex) == 0x000008, "Wrong alignment on FDebugCameraControllerSettingsViewModeIndex"); \ +static_assert(sizeof(FDebugCameraControllerSettingsViewModeIndex) == 0x000010, "Wrong size on FDebugCameraControllerSettingsViewModeIndex"); \ +static_assert(offsetof(FDebugCameraControllerSettingsViewModeIndex, ViewModeIndex) == 0x000008, "Member 'FDebugCameraControllerSettingsViewModeIndex::ViewModeIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKeyHandleLookupTable \ +static_assert(alignof(FKeyHandleLookupTable) == 0x000008, "Wrong alignment on FKeyHandleLookupTable"); \ +static_assert(sizeof(FKeyHandleLookupTable) == 0x000088, "Wrong size on FKeyHandleLookupTable"); \ + +#define DUMPER7_ASSERTS_FRootMotionSourceStatus \ +static_assert(alignof(FRootMotionSourceStatus) == 0x000001, "Wrong alignment on FRootMotionSourceStatus"); \ +static_assert(sizeof(FRootMotionSourceStatus) == 0x000001, "Wrong size on FRootMotionSourceStatus"); \ +static_assert(offsetof(FRootMotionSourceStatus, Flags) == 0x000000, "Member 'FRootMotionSourceStatus::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionFinishVelocitySettings \ +static_assert(alignof(FRootMotionFinishVelocitySettings) == 0x000008, "Wrong alignment on FRootMotionFinishVelocitySettings"); \ +static_assert(sizeof(FRootMotionFinishVelocitySettings) == 0x000028, "Wrong size on FRootMotionFinishVelocitySettings"); \ +static_assert(offsetof(FRootMotionFinishVelocitySettings, Mode) == 0x000000, "Member 'FRootMotionFinishVelocitySettings::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionFinishVelocitySettings, SetVelocity) == 0x000008, "Member 'FRootMotionFinishVelocitySettings::SetVelocity' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionFinishVelocitySettings, ClampVelocity) == 0x000020, "Member 'FRootMotionFinishVelocitySettings::ClampVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource \ +static_assert(alignof(FRootMotionSource) == 0x000010, "Wrong alignment on FRootMotionSource"); \ +static_assert(sizeof(FRootMotionSource) == 0x0000E0, "Wrong size on FRootMotionSource"); \ +static_assert(offsetof(FRootMotionSource, Priority) == 0x000010, "Member 'FRootMotionSource::Priority' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, LocalID) == 0x000012, "Member 'FRootMotionSource::LocalID' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, AccumulateMode) == 0x000014, "Member 'FRootMotionSource::AccumulateMode' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, InstanceName) == 0x000018, "Member 'FRootMotionSource::InstanceName' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, StartTime) == 0x000020, "Member 'FRootMotionSource::StartTime' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, CurrentTime) == 0x000024, "Member 'FRootMotionSource::CurrentTime' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, PreviousTime) == 0x000028, "Member 'FRootMotionSource::PreviousTime' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, Duration) == 0x00002C, "Member 'FRootMotionSource::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, Status) == 0x000030, "Member 'FRootMotionSource::Status' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, Settings) == 0x000031, "Member 'FRootMotionSource::Settings' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, bInLocalSpace) == 0x000032, "Member 'FRootMotionSource::bInLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, RootMotionParams) == 0x000040, "Member 'FRootMotionSource::RootMotionParams' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource, FinishVelocityParams) == 0x0000B0, "Member 'FRootMotionSource::FinishVelocityParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource_MoveToForce \ +static_assert(alignof(FRootMotionSource_MoveToForce) == 0x000010, "Wrong alignment on FRootMotionSource_MoveToForce"); \ +static_assert(sizeof(FRootMotionSource_MoveToForce) == 0x000120, "Wrong size on FRootMotionSource_MoveToForce"); \ +static_assert(offsetof(FRootMotionSource_MoveToForce, StartLocation) == 0x0000D8, "Member 'FRootMotionSource_MoveToForce::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToForce, TargetLocation) == 0x0000F0, "Member 'FRootMotionSource_MoveToForce::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToForce, bRestrictSpeedToExpected) == 0x000108, "Member 'FRootMotionSource_MoveToForce::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToForce, PathOffsetCurve) == 0x000110, "Member 'FRootMotionSource_MoveToForce::PathOffsetCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveEdEntry \ +static_assert(alignof(FCurveEdEntry) == 0x000008, "Wrong alignment on FCurveEdEntry"); \ +static_assert(sizeof(FCurveEdEntry) == 0x000038, "Wrong size on FCurveEdEntry"); \ +static_assert(offsetof(FCurveEdEntry, CurveObject) == 0x000000, "Member 'FCurveEdEntry::CurveObject' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, CurveColor) == 0x000008, "Member 'FCurveEdEntry::CurveColor' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, CurveName) == 0x000010, "Member 'FCurveEdEntry::CurveName' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, bHideCurve) == 0x000020, "Member 'FCurveEdEntry::bHideCurve' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, bColorCurve) == 0x000024, "Member 'FCurveEdEntry::bColorCurve' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, bFloatingPointColorCurve) == 0x000028, "Member 'FCurveEdEntry::bFloatingPointColorCurve' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, bClamp) == 0x00002C, "Member 'FCurveEdEntry::bClamp' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, ClampLow) == 0x000030, "Member 'FCurveEdEntry::ClampLow' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdEntry, ClampHigh) == 0x000034, "Member 'FCurveEdEntry::ClampHigh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNonBlendableFloatAnimationAttribute \ +static_assert(alignof(FNonBlendableFloatAnimationAttribute) == 0x000004, "Wrong alignment on FNonBlendableFloatAnimationAttribute"); \ +static_assert(sizeof(FNonBlendableFloatAnimationAttribute) == 0x000004, "Wrong size on FNonBlendableFloatAnimationAttribute"); \ + +#define DUMPER7_ASSERTS_FInputRange \ +static_assert(alignof(FInputRange) == 0x000004, "Wrong alignment on FInputRange"); \ +static_assert(sizeof(FInputRange) == 0x000008, "Wrong size on FInputRange"); \ +static_assert(offsetof(FInputRange, Min) == 0x000000, "Member 'FInputRange::Min' has a wrong offset!"); \ +static_assert(offsetof(FInputRange, Max) == 0x000004, "Member 'FInputRange::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputScaleBiasClamp \ +static_assert(alignof(FInputScaleBiasClamp) == 0x000004, "Wrong alignment on FInputScaleBiasClamp"); \ +static_assert(sizeof(FInputScaleBiasClamp) == 0x000030, "Wrong size on FInputScaleBiasClamp"); \ +static_assert(offsetof(FInputScaleBiasClamp, bMapRange) == 0x000000, "Member 'FInputScaleBiasClamp::bMapRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, bClampResult) == 0x000001, "Member 'FInputScaleBiasClamp::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, bInterpResult) == 0x000002, "Member 'FInputScaleBiasClamp::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, InRange) == 0x000004, "Member 'FInputScaleBiasClamp::InRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, OutRange) == 0x00000C, "Member 'FInputScaleBiasClamp::OutRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, Scale) == 0x000014, "Member 'FInputScaleBiasClamp::Scale' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, Bias) == 0x000018, "Member 'FInputScaleBiasClamp::Bias' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, ClampMin) == 0x00001C, "Member 'FInputScaleBiasClamp::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, ClampMax) == 0x000020, "Member 'FInputScaleBiasClamp::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, InterpSpeedIncreasing) == 0x000024, "Member 'FInputScaleBiasClamp::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClamp, InterpSpeedDecreasing) == 0x000028, "Member 'FInputScaleBiasClamp::InterpSpeedDecreasing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessSegment \ +static_assert(alignof(FPropertyAccessSegment) == 0x000008, "Wrong alignment on FPropertyAccessSegment"); \ +static_assert(sizeof(FPropertyAccessSegment) == 0x000040, "Wrong size on FPropertyAccessSegment"); \ +static_assert(offsetof(FPropertyAccessSegment, Name) == 0x000000, "Member 'FPropertyAccessSegment::Name' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessSegment, Struct) == 0x000008, "Member 'FPropertyAccessSegment::Struct' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessSegment, Property) == 0x000010, "Member 'FPropertyAccessSegment::Property' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessSegment, Function) == 0x000030, "Member 'FPropertyAccessSegment::Function' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessSegment, ArrayIndex) == 0x000038, "Member 'FPropertyAccessSegment::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessSegment, Flags) == 0x00003C, "Member 'FPropertyAccessSegment::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessPath \ +static_assert(alignof(FPropertyAccessPath) == 0x000004, "Wrong alignment on FPropertyAccessPath"); \ +static_assert(sizeof(FPropertyAccessPath) == 0x000008, "Wrong size on FPropertyAccessPath"); \ +static_assert(offsetof(FPropertyAccessPath, PathSegmentStartIndex) == 0x000000, "Member 'FPropertyAccessPath::PathSegmentStartIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessPath, PathSegmentCount) == 0x000004, "Member 'FPropertyAccessPath::PathSegmentCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessCopy \ +static_assert(alignof(FPropertyAccessCopy) == 0x000004, "Wrong alignment on FPropertyAccessCopy"); \ +static_assert(sizeof(FPropertyAccessCopy) == 0x000010, "Wrong size on FPropertyAccessCopy"); \ +static_assert(offsetof(FPropertyAccessCopy, AccessIndex) == 0x000000, "Member 'FPropertyAccessCopy::AccessIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessCopy, DestAccessStartIndex) == 0x000004, "Member 'FPropertyAccessCopy::DestAccessStartIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessCopy, DestAccessEndIndex) == 0x000008, "Member 'FPropertyAccessCopy::DestAccessEndIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessCopy, Type) == 0x00000C, "Member 'FPropertyAccessCopy::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessCopyBatch \ +static_assert(alignof(FPropertyAccessCopyBatch) == 0x000008, "Wrong alignment on FPropertyAccessCopyBatch"); \ +static_assert(sizeof(FPropertyAccessCopyBatch) == 0x000010, "Wrong size on FPropertyAccessCopyBatch"); \ +static_assert(offsetof(FPropertyAccessCopyBatch, Copies) == 0x000000, "Member 'FPropertyAccessCopyBatch::Copies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessLibrary \ +static_assert(alignof(FPropertyAccessLibrary) == 0x000008, "Wrong alignment on FPropertyAccessLibrary"); \ +static_assert(sizeof(FPropertyAccessLibrary) == 0x000078, "Wrong size on FPropertyAccessLibrary"); \ +static_assert(offsetof(FPropertyAccessLibrary, PathSegments) == 0x000000, "Member 'FPropertyAccessLibrary::PathSegments' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessLibrary, SrcPaths) == 0x000010, "Member 'FPropertyAccessLibrary::SrcPaths' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessLibrary, DestPaths) == 0x000020, "Member 'FPropertyAccessLibrary::DestPaths' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessLibrary, CopyBatchArray) == 0x000030, "Member 'FPropertyAccessLibrary::CopyBatchArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem_PropertyAccess \ +static_assert(alignof(FAnimSubsystem_PropertyAccess) == 0x000008, "Wrong alignment on FAnimSubsystem_PropertyAccess"); \ +static_assert(sizeof(FAnimSubsystem_PropertyAccess) == 0x000080, "Wrong size on FAnimSubsystem_PropertyAccess"); \ +static_assert(offsetof(FAnimSubsystem_PropertyAccess, Library) == 0x000008, "Member 'FAnimSubsystem_PropertyAccess::Library' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAlphaBlend \ +static_assert(alignof(FAlphaBlend) == 0x000008, "Wrong alignment on FAlphaBlend"); \ +static_assert(sizeof(FAlphaBlend) == 0x000030, "Wrong size on FAlphaBlend"); \ +static_assert(offsetof(FAlphaBlend, CustomCurve) == 0x000000, "Member 'FAlphaBlend::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FAlphaBlend, BlendTime) == 0x000008, "Member 'FAlphaBlend::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FAlphaBlend, BlendOption) == 0x000024, "Member 'FAlphaBlend::BlendOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputAlphaBoolBlend \ +static_assert(alignof(FInputAlphaBoolBlend) == 0x000008, "Wrong alignment on FInputAlphaBoolBlend"); \ +static_assert(sizeof(FInputAlphaBoolBlend) == 0x000048, "Wrong size on FInputAlphaBoolBlend"); \ +static_assert(offsetof(FInputAlphaBoolBlend, BlendInTime) == 0x000000, "Member 'FInputAlphaBoolBlend::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(FInputAlphaBoolBlend, BlendOutTime) == 0x000004, "Member 'FInputAlphaBoolBlend::BlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(FInputAlphaBoolBlend, BlendOption) == 0x000008, "Member 'FInputAlphaBoolBlend::BlendOption' has a wrong offset!"); \ +static_assert(offsetof(FInputAlphaBoolBlend, bInitialized) == 0x000009, "Member 'FInputAlphaBoolBlend::bInitialized' has a wrong offset!"); \ +static_assert(offsetof(FInputAlphaBoolBlend, CustomCurve) == 0x000010, "Member 'FInputAlphaBoolBlend::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FInputAlphaBoolBlend, AlphaBlend) == 0x000018, "Member 'FInputAlphaBoolBlend::AlphaBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakedStateExitTransition \ +static_assert(alignof(FBakedStateExitTransition) == 0x000008, "Wrong alignment on FBakedStateExitTransition"); \ +static_assert(sizeof(FBakedStateExitTransition) == 0x000030, "Wrong size on FBakedStateExitTransition"); \ +static_assert(offsetof(FBakedStateExitTransition, CanTakeDelegateIndex) == 0x000000, "Member 'FBakedStateExitTransition::CanTakeDelegateIndex' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, CustomResultNodeIndex) == 0x000004, "Member 'FBakedStateExitTransition::CustomResultNodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, TransitionIndex) == 0x000008, "Member 'FBakedStateExitTransition::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, bDesiredTransitionReturnValue) == 0x00000C, "Member 'FBakedStateExitTransition::bDesiredTransitionReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, bAutomaticRemainingTimeRule) == 0x00000D, "Member 'FBakedStateExitTransition::bAutomaticRemainingTimeRule' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, AutomaticRuleTriggerTime) == 0x000010, "Member 'FBakedStateExitTransition::AutomaticRuleTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, SyncGroupNameToRequireValidMarkersRule) == 0x000014, "Member 'FBakedStateExitTransition::SyncGroupNameToRequireValidMarkersRule' has a wrong offset!"); \ +static_assert(offsetof(FBakedStateExitTransition, PoseEvaluatorLinks) == 0x000020, "Member 'FBakedStateExitTransition::PoseEvaluatorLinks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakedAnimationState \ +static_assert(alignof(FBakedAnimationState) == 0x000008, "Wrong alignment on FBakedAnimationState"); \ +static_assert(sizeof(FBakedAnimationState) == 0x000058, "Wrong size on FBakedAnimationState"); \ +static_assert(offsetof(FBakedAnimationState, StateName) == 0x000000, "Member 'FBakedAnimationState::StateName' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, Transitions) == 0x000008, "Member 'FBakedAnimationState::Transitions' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, StateRootNodeIndex) == 0x000018, "Member 'FBakedAnimationState::StateRootNodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, StartNotify) == 0x00001C, "Member 'FBakedAnimationState::StartNotify' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, EndNotify) == 0x000020, "Member 'FBakedAnimationState::EndNotify' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, FullyBlendedNotify) == 0x000024, "Member 'FBakedAnimationState::FullyBlendedNotify' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, bIsAConduit) == 0x000028, "Member 'FBakedAnimationState::bIsAConduit' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, EntryRuleNodeIndex) == 0x00002C, "Member 'FBakedAnimationState::EntryRuleNodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, PlayerNodeIndices) == 0x000030, "Member 'FBakedAnimationState::PlayerNodeIndices' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, LayerNodeIndices) == 0x000040, "Member 'FBakedAnimationState::LayerNodeIndices' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationState, bAlwaysResetOnEntry) == 0x000050, "Member 'FBakedAnimationState::bAlwaysResetOnEntry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputScaleBias \ +static_assert(alignof(FInputScaleBias) == 0x000004, "Wrong alignment on FInputScaleBias"); \ +static_assert(sizeof(FInputScaleBias) == 0x000008, "Wrong size on FInputScaleBias"); \ +static_assert(offsetof(FInputScaleBias, Scale) == 0x000000, "Member 'FInputScaleBias::Scale' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBias, Bias) == 0x000004, "Member 'FInputScaleBias::Bias' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentSpacePoseLink \ +static_assert(alignof(FComponentSpacePoseLink) == 0x000008, "Wrong alignment on FComponentSpacePoseLink"); \ +static_assert(sizeof(FComponentSpacePoseLink) == 0x000010, "Wrong size on FComponentSpacePoseLink"); \ + +#define DUMPER7_ASSERTS_FRawAnimSequenceTrack \ +static_assert(alignof(FRawAnimSequenceTrack) == 0x000008, "Wrong alignment on FRawAnimSequenceTrack"); \ +static_assert(sizeof(FRawAnimSequenceTrack) == 0x000030, "Wrong size on FRawAnimSequenceTrack"); \ +static_assert(offsetof(FRawAnimSequenceTrack, PosKeys) == 0x000000, "Member 'FRawAnimSequenceTrack::PosKeys' has a wrong offset!"); \ +static_assert(offsetof(FRawAnimSequenceTrack, RotKeys) == 0x000010, "Member 'FRawAnimSequenceTrack::RotKeys' has a wrong offset!"); \ +static_assert(offsetof(FRawAnimSequenceTrack, ScaleKeys) == 0x000020, "Member 'FRawAnimSequenceTrack::ScaleKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSequenceTrackContainer \ +static_assert(alignof(FAnimSequenceTrackContainer) == 0x000008, "Wrong alignment on FAnimSequenceTrackContainer"); \ +static_assert(sizeof(FAnimSequenceTrackContainer) == 0x000020, "Wrong size on FAnimSequenceTrackContainer"); \ +static_assert(offsetof(FAnimSequenceTrackContainer, AnimationTracks) == 0x000000, "Member 'FAnimSequenceTrackContainer::AnimationTracks' has a wrong offset!"); \ +static_assert(offsetof(FAnimSequenceTrackContainer, TrackNames) == 0x000010, "Member 'FAnimSequenceTrackContainer::TrackNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationStateBase \ +static_assert(alignof(FAnimationStateBase) == 0x000004, "Wrong alignment on FAnimationStateBase"); \ +static_assert(sizeof(FAnimationStateBase) == 0x000008, "Wrong size on FAnimationStateBase"); \ +static_assert(offsetof(FAnimationStateBase, StateName) == 0x000000, "Member 'FAnimationStateBase::StateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNodeReference \ +static_assert(alignof(FAnimNodeReference) == 0x000008, "Wrong alignment on FAnimNodeReference"); \ +static_assert(sizeof(FAnimNodeReference) == 0x000010, "Wrong size on FAnimNodeReference"); \ + +#define DUMPER7_ASSERTS_FCachedAnimTransitionData \ +static_assert(alignof(FCachedAnimTransitionData) == 0x000004, "Wrong alignment on FCachedAnimTransitionData"); \ +static_assert(sizeof(FCachedAnimTransitionData) == 0x000024, "Wrong size on FCachedAnimTransitionData"); \ +static_assert(offsetof(FCachedAnimTransitionData, StateMachineName) == 0x000000, "Member 'FCachedAnimTransitionData::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(FCachedAnimTransitionData, FromStateName) == 0x000008, "Member 'FCachedAnimTransitionData::FromStateName' has a wrong offset!"); \ +static_assert(offsetof(FCachedAnimTransitionData, ToStateName) == 0x000010, "Member 'FCachedAnimTransitionData::ToStateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_AssetPlayerRelevancyBase \ +static_assert(alignof(FAnimNode_AssetPlayerRelevancyBase) == 0x000008, "Wrong alignment on FAnimNode_AssetPlayerRelevancyBase"); \ +static_assert(sizeof(FAnimNode_AssetPlayerRelevancyBase) == 0x000010, "Wrong size on FAnimNode_AssetPlayerRelevancyBase"); \ + +#define DUMPER7_ASSERTS_FAnimNode_AssetPlayerBase \ +static_assert(alignof(FAnimNode_AssetPlayerBase) == 0x000008, "Wrong alignment on FAnimNode_AssetPlayerBase"); \ +static_assert(sizeof(FAnimNode_AssetPlayerBase) == 0x000038, "Wrong size on FAnimNode_AssetPlayerBase"); \ +static_assert(offsetof(FAnimNode_AssetPlayerBase, BlendWeight) == 0x000020, "Member 'FAnimNode_AssetPlayerBase::BlendWeight' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AssetPlayerBase, InternalTimeAccumulator) == 0x000024, "Member 'FAnimNode_AssetPlayerBase::InternalTimeAccumulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerBoneBlendWeight \ +static_assert(alignof(FPerBoneBlendWeight) == 0x000004, "Wrong alignment on FPerBoneBlendWeight"); \ +static_assert(sizeof(FPerBoneBlendWeight) == 0x000008, "Wrong size on FPerBoneBlendWeight"); \ +static_assert(offsetof(FPerBoneBlendWeight, SourceIndex) == 0x000000, "Member 'FPerBoneBlendWeight::SourceIndex' has a wrong offset!"); \ +static_assert(offsetof(FPerBoneBlendWeight, BlendWeight) == 0x000004, "Member 'FPerBoneBlendWeight::BlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditorElement \ +static_assert(alignof(FEditorElement) == 0x000004, "Wrong alignment on FEditorElement"); \ +static_assert(sizeof(FEditorElement) == 0x000018, "Wrong size on FEditorElement"); \ +static_assert(offsetof(FEditorElement, Indices) == 0x000000, "Member 'FEditorElement::Indices' has a wrong offset!"); \ +static_assert(offsetof(FEditorElement, Weights) == 0x00000C, "Member 'FEditorElement::Weights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGridBlendSample \ +static_assert(alignof(FGridBlendSample) == 0x000004, "Wrong alignment on FGridBlendSample"); \ +static_assert(sizeof(FGridBlendSample) == 0x00001C, "Wrong size on FGridBlendSample"); \ +static_assert(offsetof(FGridBlendSample, GridElement) == 0x000000, "Member 'FGridBlendSample::GridElement' has a wrong offset!"); \ +static_assert(offsetof(FGridBlendSample, BlendWeight) == 0x000018, "Member 'FGridBlendSample::BlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceTriggerBaseData \ +static_assert(alignof(FDeviceTriggerBaseData) == 0x000001, "Wrong alignment on FDeviceTriggerBaseData"); \ +static_assert(sizeof(FDeviceTriggerBaseData) == 0x000002, "Wrong size on FDeviceTriggerBaseData"); \ +static_assert(offsetof(FDeviceTriggerBaseData, AffectedTriggers) == 0x000000, "Member 'FDeviceTriggerBaseData::AffectedTriggers' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerBaseData, bResetUponCompletion) == 0x000001, "Member 'FDeviceTriggerBaseData::bResetUponCompletion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchFilter \ +static_assert(alignof(FBranchFilter) == 0x000004, "Wrong alignment on FBranchFilter"); \ +static_assert(sizeof(FBranchFilter) == 0x00000C, "Wrong size on FBranchFilter"); \ +static_assert(offsetof(FBranchFilter, BoneName) == 0x000000, "Member 'FBranchFilter::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FBranchFilter, BlendDepth) == 0x000008, "Member 'FBranchFilter::BlendDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputBlendPose \ +static_assert(alignof(FInputBlendPose) == 0x000008, "Wrong alignment on FInputBlendPose"); \ +static_assert(sizeof(FInputBlendPose) == 0x000010, "Wrong size on FInputBlendPose"); \ +static_assert(offsetof(FInputBlendPose, BranchFilters) == 0x000000, "Member 'FInputBlendPose::BranchFilters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedAnimStateData \ +static_assert(alignof(FCachedAnimStateData) == 0x000004, "Wrong alignment on FCachedAnimStateData"); \ +static_assert(sizeof(FCachedAnimStateData) == 0x00001C, "Wrong size on FCachedAnimStateData"); \ +static_assert(offsetof(FCachedAnimStateData, StateMachineName) == 0x000000, "Member 'FCachedAnimStateData::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(FCachedAnimStateData, StateName) == 0x000008, "Member 'FCachedAnimStateData::StateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseSnapshot \ +static_assert(alignof(FPoseSnapshot) == 0x000008, "Wrong alignment on FPoseSnapshot"); \ +static_assert(sizeof(FPoseSnapshot) == 0x000038, "Wrong size on FPoseSnapshot"); \ +static_assert(offsetof(FPoseSnapshot, LocalTransforms) == 0x000000, "Member 'FPoseSnapshot::LocalTransforms' has a wrong offset!"); \ +static_assert(offsetof(FPoseSnapshot, BoneNames) == 0x000010, "Member 'FPoseSnapshot::BoneNames' has a wrong offset!"); \ +static_assert(offsetof(FPoseSnapshot, SkeletalMeshName) == 0x000020, "Member 'FPoseSnapshot::SkeletalMeshName' has a wrong offset!"); \ +static_assert(offsetof(FPoseSnapshot, SnapshotName) == 0x000028, "Member 'FPoseSnapshot::SnapshotName' has a wrong offset!"); \ +static_assert(offsetof(FPoseSnapshot, bIsValid) == 0x000030, "Member 'FPoseSnapshot::bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataCacheDuplicatedObjectData \ +static_assert(alignof(FDataCacheDuplicatedObjectData) == 0x000008, "Wrong alignment on FDataCacheDuplicatedObjectData"); \ +static_assert(sizeof(FDataCacheDuplicatedObjectData) == 0x000010, "Wrong size on FDataCacheDuplicatedObjectData"); \ + +#define DUMPER7_ASSERTS_FInstanceCacheDataBase \ +static_assert(alignof(FInstanceCacheDataBase) == 0x000008, "Wrong alignment on FInstanceCacheDataBase"); \ +static_assert(sizeof(FInstanceCacheDataBase) == 0x000058, "Wrong size on FInstanceCacheDataBase"); \ +static_assert(offsetof(FInstanceCacheDataBase, SavedProperties) == 0x000008, "Member 'FInstanceCacheDataBase::SavedProperties' has a wrong offset!"); \ +static_assert(offsetof(FInstanceCacheDataBase, UniqueTransientPackage) == 0x000018, "Member 'FInstanceCacheDataBase::UniqueTransientPackage' has a wrong offset!"); \ +static_assert(offsetof(FInstanceCacheDataBase, DuplicatedObjects) == 0x000028, "Member 'FInstanceCacheDataBase::DuplicatedObjects' has a wrong offset!"); \ +static_assert(offsetof(FInstanceCacheDataBase, ReferencedObjects) == 0x000038, "Member 'FInstanceCacheDataBase::ReferencedObjects' has a wrong offset!"); \ +static_assert(offsetof(FInstanceCacheDataBase, ReferencedNames) == 0x000048, "Member 'FInstanceCacheDataBase::ReferencedNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorComponentInstanceData \ +static_assert(alignof(FActorComponentInstanceData) == 0x000008, "Wrong alignment on FActorComponentInstanceData"); \ +static_assert(sizeof(FActorComponentInstanceData) == 0x000068, "Wrong size on FActorComponentInstanceData"); \ +static_assert(offsetof(FActorComponentInstanceData, SourceComponentTemplate) == 0x000058, "Member 'FActorComponentInstanceData::SourceComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(FActorComponentInstanceData, SourceComponentCreationMethod) == 0x000060, "Member 'FActorComponentInstanceData::SourceComponentCreationMethod' has a wrong offset!"); \ +static_assert(offsetof(FActorComponentInstanceData, SourceComponentTypeSerializedIndex) == 0x000064, "Member 'FActorComponentInstanceData::SourceComponentTypeSerializedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimInstanceProxy \ +static_assert(alignof(FAnimInstanceProxy) == 0x000010, "Wrong alignment on FAnimInstanceProxy"); \ +static_assert(sizeof(FAnimInstanceProxy) == 0x000700, "Wrong size on FAnimInstanceProxy"); \ + +#define DUMPER7_ASSERTS_FAnimationErrorStats \ +static_assert(alignof(FAnimationErrorStats) == 0x000004, "Wrong alignment on FAnimationErrorStats"); \ +static_assert(sizeof(FAnimationErrorStats) == 0x000010, "Wrong size on FAnimationErrorStats"); \ + +#define DUMPER7_ASSERTS_FMovementProperties \ +static_assert(alignof(FMovementProperties) == 0x000001, "Wrong alignment on FMovementProperties"); \ +static_assert(sizeof(FMovementProperties) == 0x000001, "Wrong size on FMovementProperties"); \ + +#define DUMPER7_ASSERTS_FNavAgentProperties \ +static_assert(alignof(FNavAgentProperties) == 0x000008, "Wrong alignment on FNavAgentProperties"); \ +static_assert(sizeof(FNavAgentProperties) == 0x000038, "Wrong size on FNavAgentProperties"); \ +static_assert(offsetof(FNavAgentProperties, AgentRadius) == 0x000004, "Member 'FNavAgentProperties::AgentRadius' has a wrong offset!"); \ +static_assert(offsetof(FNavAgentProperties, AgentHeight) == 0x000008, "Member 'FNavAgentProperties::AgentHeight' has a wrong offset!"); \ +static_assert(offsetof(FNavAgentProperties, AgentStepHeight) == 0x00000C, "Member 'FNavAgentProperties::AgentStepHeight' has a wrong offset!"); \ +static_assert(offsetof(FNavAgentProperties, NavWalkingSearchHeightScale) == 0x000010, "Member 'FNavAgentProperties::NavWalkingSearchHeightScale' has a wrong offset!"); \ +static_assert(offsetof(FNavAgentProperties, PreferredNavData) == 0x000018, "Member 'FNavAgentProperties::PreferredNavData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationRecordingSettings \ +static_assert(alignof(FAnimationRecordingSettings) == 0x000008, "Wrong alignment on FAnimationRecordingSettings"); \ +static_assert(sizeof(FAnimationRecordingSettings) == 0x000040, "Wrong size on FAnimationRecordingSettings"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRecordInWorldSpace) == 0x000000, "Member 'FAnimationRecordingSettings::bRecordInWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRemoveRootAnimation) == 0x000001, "Member 'FAnimationRecordingSettings::bRemoveRootAnimation' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bAutoSaveAsset) == 0x000002, "Member 'FAnimationRecordingSettings::bAutoSaveAsset' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, SampleFrameRate) == 0x000004, "Member 'FAnimationRecordingSettings::SampleFrameRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, Length) == 0x00000C, "Member 'FAnimationRecordingSettings::Length' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, Interpolation) == 0x000010, "Member 'FAnimationRecordingSettings::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, InterpMode) == 0x000011, "Member 'FAnimationRecordingSettings::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, TangentMode) == 0x000012, "Member 'FAnimationRecordingSettings::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRecordTransforms) == 0x000014, "Member 'FAnimationRecordingSettings::bRecordTransforms' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRecordMorphTargets) == 0x000015, "Member 'FAnimationRecordingSettings::bRecordMorphTargets' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRecordAttributeCurves) == 0x000016, "Member 'FAnimationRecordingSettings::bRecordAttributeCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bRecordMaterialCurves) == 0x000017, "Member 'FAnimationRecordingSettings::bRecordMaterialCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, bTransactRecording) == 0x000018, "Member 'FAnimationRecordingSettings::bTransactRecording' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, IncludeAnimationNames) == 0x000020, "Member 'FAnimationRecordingSettings::IncludeAnimationNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimationRecordingSettings, ExcludeAnimationNames) == 0x000030, "Member 'FAnimationRecordingSettings::ExcludeAnimationNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSceneComponentInstanceData \ +static_assert(alignof(FSceneComponentInstanceData) == 0x000008, "Wrong alignment on FSceneComponentInstanceData"); \ +static_assert(sizeof(FSceneComponentInstanceData) == 0x0000B8, "Wrong size on FSceneComponentInstanceData"); \ +static_assert(offsetof(FSceneComponentInstanceData, AttachedInstanceComponents) == 0x000068, "Member 'FSceneComponentInstanceData::AttachedInstanceComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetDriverDefinition \ +static_assert(alignof(FNetDriverDefinition) == 0x000004, "Wrong alignment on FNetDriverDefinition"); \ +static_assert(sizeof(FNetDriverDefinition) == 0x00001C, "Wrong size on FNetDriverDefinition"); \ +static_assert(offsetof(FNetDriverDefinition, DefName) == 0x000000, "Member 'FNetDriverDefinition::DefName' has a wrong offset!"); \ +static_assert(offsetof(FNetDriverDefinition, DriverClassName) == 0x000008, "Member 'FNetDriverDefinition::DriverClassName' has a wrong offset!"); \ +static_assert(offsetof(FNetDriverDefinition, DriverClassNameFallback) == 0x000010, "Member 'FNetDriverDefinition::DriverClassNameFallback' has a wrong offset!"); \ +static_assert(offsetof(FNetDriverDefinition, MaxChannelsOverride) == 0x000018, "Member 'FNetDriverDefinition::MaxChannelsOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorContainerID \ +static_assert(alignof(FActorContainerID) == 0x000004, "Wrong alignment on FActorContainerID"); \ +static_assert(sizeof(FActorContainerID) == 0x000010, "Wrong size on FActorContainerID"); \ +static_assert(offsetof(FActorContainerID, Guid) == 0x000000, "Member 'FActorContainerID::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionResolveData \ +static_assert(alignof(FWorldPartitionResolveData) == 0x000008, "Wrong alignment on FWorldPartitionResolveData"); \ +static_assert(sizeof(FWorldPartitionResolveData) == 0x000020, "Wrong size on FWorldPartitionResolveData"); \ +static_assert(offsetof(FWorldPartitionResolveData, ContainerID) == 0x000000, "Member 'FWorldPartitionResolveData::ContainerID' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionResolveData, SourceWorldAssetPath) == 0x000010, "Member 'FWorldPartitionResolveData::SourceWorldAssetPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStatColorMapEntry \ +static_assert(alignof(FStatColorMapEntry) == 0x000004, "Wrong alignment on FStatColorMapEntry"); \ +static_assert(sizeof(FStatColorMapEntry) == 0x000008, "Wrong size on FStatColorMapEntry"); \ +static_assert(offsetof(FStatColorMapEntry, In) == 0x000000, "Member 'FStatColorMapEntry::In' has a wrong offset!"); \ +static_assert(offsetof(FStatColorMapEntry, Out) == 0x000004, "Member 'FStatColorMapEntry::Out' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStatColorMapping \ +static_assert(alignof(FStatColorMapping) == 0x000008, "Wrong alignment on FStatColorMapping"); \ +static_assert(sizeof(FStatColorMapping) == 0x000028, "Wrong size on FStatColorMapping"); \ +static_assert(offsetof(FStatColorMapping, StatName) == 0x000000, "Member 'FStatColorMapping::StatName' has a wrong offset!"); \ +static_assert(offsetof(FStatColorMapping, ColorMap) == 0x000010, "Member 'FStatColorMapping::ColorMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorDataLayer \ +static_assert(alignof(FActorDataLayer) == 0x000004, "Wrong alignment on FActorDataLayer"); \ +static_assert(sizeof(FActorDataLayer) == 0x000008, "Wrong size on FActorDataLayer"); \ +static_assert(offsetof(FActorDataLayer, Name) == 0x000000, "Member 'FActorDataLayer::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshOptimizationSettings \ +static_assert(alignof(FSkeletalMeshOptimizationSettings) == 0x000004, "Wrong alignment on FSkeletalMeshOptimizationSettings"); \ +static_assert(sizeof(FSkeletalMeshOptimizationSettings) == 0x00003C, "Wrong size on FSkeletalMeshOptimizationSettings"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, TerminationCriterion) == 0x000000, "Member 'FSkeletalMeshOptimizationSettings::TerminationCriterion' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, NumOfTrianglesPercentage) == 0x000004, "Member 'FSkeletalMeshOptimizationSettings::NumOfTrianglesPercentage' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, NumOfVertPercentage) == 0x000008, "Member 'FSkeletalMeshOptimizationSettings::NumOfVertPercentage' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, MaxNumOfTriangles) == 0x00000C, "Member 'FSkeletalMeshOptimizationSettings::MaxNumOfTriangles' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, MaxNumOfVerts) == 0x000010, "Member 'FSkeletalMeshOptimizationSettings::MaxNumOfVerts' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, MaxDeviationPercentage) == 0x000014, "Member 'FSkeletalMeshOptimizationSettings::MaxDeviationPercentage' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, ReductionMethod) == 0x000018, "Member 'FSkeletalMeshOptimizationSettings::ReductionMethod' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, SilhouetteImportance) == 0x000019, "Member 'FSkeletalMeshOptimizationSettings::SilhouetteImportance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, TextureImportance) == 0x00001A, "Member 'FSkeletalMeshOptimizationSettings::TextureImportance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, ShadingImportance) == 0x00001B, "Member 'FSkeletalMeshOptimizationSettings::ShadingImportance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, SkinningImportance) == 0x00001C, "Member 'FSkeletalMeshOptimizationSettings::SkinningImportance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, WeldingThreshold) == 0x000020, "Member 'FSkeletalMeshOptimizationSettings::WeldingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, NormalsThreshold) == 0x000024, "Member 'FSkeletalMeshOptimizationSettings::NormalsThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, MaxBonesPerVertex) == 0x000028, "Member 'FSkeletalMeshOptimizationSettings::MaxBonesPerVertex' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, VolumeImportance) == 0x000030, "Member 'FSkeletalMeshOptimizationSettings::VolumeImportance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshOptimizationSettings, BaseLOD) == 0x000038, "Member 'FSkeletalMeshOptimizationSettings::BaseLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerPlatformBool \ +static_assert(alignof(FPerPlatformBool) == 0x000001, "Wrong alignment on FPerPlatformBool"); \ +static_assert(sizeof(FPerPlatformBool) == 0x000001, "Wrong size on FPerPlatformBool"); \ +static_assert(offsetof(FPerPlatformBool, Default) == 0x000000, "Member 'FPerPlatformBool::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshVertexAttributeInfo \ +static_assert(alignof(FSkeletalMeshVertexAttributeInfo) == 0x000004, "Wrong alignment on FSkeletalMeshVertexAttributeInfo"); \ +static_assert(sizeof(FSkeletalMeshVertexAttributeInfo) == 0x000010, "Wrong size on FSkeletalMeshVertexAttributeInfo"); \ +static_assert(offsetof(FSkeletalMeshVertexAttributeInfo, EnabledForRender) == 0x000000, "Member 'FSkeletalMeshVertexAttributeInfo::EnabledForRender' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshVertexAttributeInfo, Name) == 0x000004, "Member 'FSkeletalMeshVertexAttributeInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshVertexAttributeInfo, DataType) == 0x00000C, "Member 'FSkeletalMeshVertexAttributeInfo::DataType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSectionReference \ +static_assert(alignof(FSectionReference) == 0x000004, "Wrong alignment on FSectionReference"); \ +static_assert(sizeof(FSectionReference) == 0x000004, "Wrong size on FSectionReference"); \ +static_assert(offsetof(FSectionReference, SectionIndex) == 0x000000, "Member 'FSectionReference::SectionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshLODInfo \ +static_assert(alignof(FSkeletalMeshLODInfo) == 0x000008, "Wrong alignment on FSkeletalMeshLODInfo"); \ +static_assert(sizeof(FSkeletalMeshLODInfo) == 0x0000F0, "Wrong size on FSkeletalMeshLODInfo"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, ScreenSize) == 0x000000, "Member 'FSkeletalMeshLODInfo::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, LODHysteresis) == 0x000004, "Member 'FSkeletalMeshLODInfo::LODHysteresis' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, LODMaterialMap) == 0x000008, "Member 'FSkeletalMeshLODInfo::LODMaterialMap' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, BuildSettings) == 0x000018, "Member 'FSkeletalMeshLODInfo::BuildSettings' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, ReductionSettings) == 0x000030, "Member 'FSkeletalMeshLODInfo::ReductionSettings' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, BonesToRemove) == 0x000070, "Member 'FSkeletalMeshLODInfo::BonesToRemove' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, BonesToPrioritize) == 0x000080, "Member 'FSkeletalMeshLODInfo::BonesToPrioritize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, SectionsToPrioritize) == 0x000090, "Member 'FSkeletalMeshLODInfo::SectionsToPrioritize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, WeightOfPrioritization) == 0x0000A0, "Member 'FSkeletalMeshLODInfo::WeightOfPrioritization' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, BakePose) == 0x0000A8, "Member 'FSkeletalMeshLODInfo::BakePose' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, BakePoseOverride) == 0x0000B0, "Member 'FSkeletalMeshLODInfo::BakePoseOverride' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, SourceImportFilename) == 0x0000B8, "Member 'FSkeletalMeshLODInfo::SourceImportFilename' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, SkinCacheUsage) == 0x0000C8, "Member 'FSkeletalMeshLODInfo::SkinCacheUsage' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, MorphTargetPositionErrorTolerance) == 0x0000CC, "Member 'FSkeletalMeshLODInfo::MorphTargetPositionErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODInfo, VertexAttributes) == 0x0000D8, "Member 'FSkeletalMeshLODInfo::VertexAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKShapeElem \ +static_assert(alignof(FKShapeElem) == 0x000008, "Wrong alignment on FKShapeElem"); \ +static_assert(sizeof(FKShapeElem) == 0x000030, "Wrong size on FKShapeElem"); \ +static_assert(offsetof(FKShapeElem, RestOffset) == 0x000008, "Member 'FKShapeElem::RestOffset' has a wrong offset!"); \ +static_assert(offsetof(FKShapeElem, Name) == 0x00000C, "Member 'FKShapeElem::Name' has a wrong offset!"); \ +static_assert(offsetof(FKShapeElem, CollisionEnabled) == 0x000019, "Member 'FKShapeElem::CollisionEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKSphereElem \ +static_assert(alignof(FKSphereElem) == 0x000008, "Wrong alignment on FKSphereElem"); \ +static_assert(sizeof(FKSphereElem) == 0x000050, "Wrong size on FKSphereElem"); \ +static_assert(offsetof(FKSphereElem, Center) == 0x000030, "Member 'FKSphereElem::Center' has a wrong offset!"); \ +static_assert(offsetof(FKSphereElem, Radius) == 0x000048, "Member 'FKSphereElem::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKBoxElem \ +static_assert(alignof(FKBoxElem) == 0x000008, "Wrong alignment on FKBoxElem"); \ +static_assert(sizeof(FKBoxElem) == 0x000070, "Wrong size on FKBoxElem"); \ +static_assert(offsetof(FKBoxElem, Center) == 0x000030, "Member 'FKBoxElem::Center' has a wrong offset!"); \ +static_assert(offsetof(FKBoxElem, Rotation) == 0x000048, "Member 'FKBoxElem::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FKBoxElem, X) == 0x000060, "Member 'FKBoxElem::X' has a wrong offset!"); \ +static_assert(offsetof(FKBoxElem, Y) == 0x000064, "Member 'FKBoxElem::Y' has a wrong offset!"); \ +static_assert(offsetof(FKBoxElem, Z) == 0x000068, "Member 'FKBoxElem::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKSphylElem \ +static_assert(alignof(FKSphylElem) == 0x000008, "Wrong alignment on FKSphylElem"); \ +static_assert(sizeof(FKSphylElem) == 0x000068, "Wrong size on FKSphylElem"); \ +static_assert(offsetof(FKSphylElem, Center) == 0x000030, "Member 'FKSphylElem::Center' has a wrong offset!"); \ +static_assert(offsetof(FKSphylElem, Rotation) == 0x000048, "Member 'FKSphylElem::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FKSphylElem, Radius) == 0x000060, "Member 'FKSphylElem::Radius' has a wrong offset!"); \ +static_assert(offsetof(FKSphylElem, Length) == 0x000064, "Member 'FKSphylElem::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKConvexElem \ +static_assert(alignof(FKConvexElem) == 0x000010, "Wrong alignment on FKConvexElem"); \ +static_assert(sizeof(FKConvexElem) == 0x000100, "Wrong size on FKConvexElem"); \ +static_assert(offsetof(FKConvexElem, VertexData) == 0x000030, "Member 'FKConvexElem::VertexData' has a wrong offset!"); \ +static_assert(offsetof(FKConvexElem, IndexData) == 0x000040, "Member 'FKConvexElem::IndexData' has a wrong offset!"); \ +static_assert(offsetof(FKConvexElem, ElemBox) == 0x000050, "Member 'FKConvexElem::ElemBox' has a wrong offset!"); \ +static_assert(offsetof(FKConvexElem, Transform) == 0x000090, "Member 'FKConvexElem::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKTaperedCapsuleElem \ +static_assert(alignof(FKTaperedCapsuleElem) == 0x000008, "Wrong alignment on FKTaperedCapsuleElem"); \ +static_assert(sizeof(FKTaperedCapsuleElem) == 0x000070, "Wrong size on FKTaperedCapsuleElem"); \ +static_assert(offsetof(FKTaperedCapsuleElem, Center) == 0x000030, "Member 'FKTaperedCapsuleElem::Center' has a wrong offset!"); \ +static_assert(offsetof(FKTaperedCapsuleElem, Rotation) == 0x000048, "Member 'FKTaperedCapsuleElem::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FKTaperedCapsuleElem, Radius0) == 0x000060, "Member 'FKTaperedCapsuleElem::Radius0' has a wrong offset!"); \ +static_assert(offsetof(FKTaperedCapsuleElem, Radius1) == 0x000064, "Member 'FKTaperedCapsuleElem::Radius1' has a wrong offset!"); \ +static_assert(offsetof(FKTaperedCapsuleElem, Length) == 0x000068, "Member 'FKTaperedCapsuleElem::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKLevelSetElem \ +static_assert(alignof(FKLevelSetElem) == 0x000010, "Wrong alignment on FKLevelSetElem"); \ +static_assert(sizeof(FKLevelSetElem) == 0x0000A0, "Wrong size on FKLevelSetElem"); \ +static_assert(offsetof(FKLevelSetElem, Transform) == 0x000030, "Member 'FKLevelSetElem::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKSkinnedLevelSetElem \ +static_assert(alignof(FKSkinnedLevelSetElem) == 0x000008, "Wrong alignment on FKSkinnedLevelSetElem"); \ +static_assert(sizeof(FKSkinnedLevelSetElem) == 0x000040, "Wrong size on FKSkinnedLevelSetElem"); \ + +#define DUMPER7_ASSERTS_FKAggregateGeom \ +static_assert(alignof(FKAggregateGeom) == 0x000008, "Wrong alignment on FKAggregateGeom"); \ +static_assert(sizeof(FKAggregateGeom) == 0x000078, "Wrong size on FKAggregateGeom"); \ +static_assert(offsetof(FKAggregateGeom, SphereElems) == 0x000000, "Member 'FKAggregateGeom::SphereElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, BoxElems) == 0x000010, "Member 'FKAggregateGeom::BoxElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, SphylElems) == 0x000020, "Member 'FKAggregateGeom::SphylElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, ConvexElems) == 0x000030, "Member 'FKAggregateGeom::ConvexElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, TaperedCapsuleElems) == 0x000040, "Member 'FKAggregateGeom::TaperedCapsuleElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, LevelSetElems) == 0x000050, "Member 'FKAggregateGeom::LevelSetElems' has a wrong offset!"); \ +static_assert(offsetof(FKAggregateGeom, SkinnedLevelSetElems) == 0x000060, "Member 'FKAggregateGeom::SkinnedLevelSetElems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStrataMaterialInfo \ +static_assert(alignof(FStrataMaterialInfo) == 0x000008, "Wrong alignment on FStrataMaterialInfo"); \ +static_assert(sizeof(FStrataMaterialInfo) == 0x000030, "Wrong size on FStrataMaterialInfo"); \ +static_assert(offsetof(FStrataMaterialInfo, ShadingModelField) == 0x000000, "Member 'FStrataMaterialInfo::ShadingModelField' has a wrong offset!"); \ +static_assert(offsetof(FStrataMaterialInfo, bHasShadingModelFromExpression) == 0x000002, "Member 'FStrataMaterialInfo::bHasShadingModelFromExpression' has a wrong offset!"); \ +static_assert(offsetof(FStrataMaterialInfo, ConnectedProperties) == 0x000004, "Member 'FStrataMaterialInfo::ConnectedProperties' has a wrong offset!"); \ +static_assert(offsetof(FStrataMaterialInfo, ConnectedPropertyMask) == 0x000008, "Member 'FStrataMaterialInfo::ConnectedPropertyMask' has a wrong offset!"); \ +static_assert(offsetof(FStrataMaterialInfo, SubsurfaceProfiles) == 0x000010, "Member 'FStrataMaterialInfo::SubsurfaceProfiles' has a wrong offset!"); \ +static_assert(offsetof(FStrataMaterialInfo, SpecularProfiles) == 0x000020, "Member 'FStrataMaterialInfo::SpecularProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClassRedirect \ +static_assert(alignof(FClassRedirect) == 0x000004, "Wrong alignment on FClassRedirect"); \ +static_assert(sizeof(FClassRedirect) == 0x00003C, "Wrong size on FClassRedirect"); \ +static_assert(offsetof(FClassRedirect, ObjectName) == 0x000000, "Member 'FClassRedirect::ObjectName' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, OldClassName) == 0x000008, "Member 'FClassRedirect::OldClassName' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, NewClassName) == 0x000010, "Member 'FClassRedirect::NewClassName' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, OldSubobjName) == 0x000018, "Member 'FClassRedirect::OldSubobjName' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, NewSubobjName) == 0x000020, "Member 'FClassRedirect::NewSubobjName' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, NewClassClass) == 0x000028, "Member 'FClassRedirect::NewClassClass' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, NewClassPackage) == 0x000030, "Member 'FClassRedirect::NewClassPackage' has a wrong offset!"); \ +static_assert(offsetof(FClassRedirect, InstanceOnly) == 0x000038, "Member 'FClassRedirect::InstanceOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetworkPhysicsDatas \ +static_assert(alignof(FNetworkPhysicsDatas) == 0x000008, "Wrong alignment on FNetworkPhysicsDatas"); \ +static_assert(sizeof(FNetworkPhysicsDatas) == 0x000018, "Wrong size on FNetworkPhysicsDatas"); \ +static_assert(offsetof(FNetworkPhysicsDatas, ServerFrame) == 0x000008, "Member 'FNetworkPhysicsDatas::ServerFrame' has a wrong offset!"); \ +static_assert(offsetof(FNetworkPhysicsDatas, LocalFrame) == 0x00000C, "Member 'FNetworkPhysicsDatas::LocalFrame' has a wrong offset!"); \ +static_assert(offsetof(FNetworkPhysicsDatas, InputFrame) == 0x000010, "Member 'FNetworkPhysicsDatas::InputFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FURL \ +static_assert(alignof(FURL) == 0x000008, "Wrong alignment on FURL"); \ +static_assert(sizeof(FURL) == 0x000068, "Wrong size on FURL"); \ +static_assert(offsetof(FURL, Protocol) == 0x000000, "Member 'FURL::Protocol' has a wrong offset!"); \ +static_assert(offsetof(FURL, Host) == 0x000010, "Member 'FURL::Host' has a wrong offset!"); \ +static_assert(offsetof(FURL, Port) == 0x000020, "Member 'FURL::Port' has a wrong offset!"); \ +static_assert(offsetof(FURL, Valid) == 0x000024, "Member 'FURL::Valid' has a wrong offset!"); \ +static_assert(offsetof(FURL, Map) == 0x000028, "Member 'FURL::Map' has a wrong offset!"); \ +static_assert(offsetof(FURL, RedirectURL) == 0x000038, "Member 'FURL::RedirectURL' has a wrong offset!"); \ +static_assert(offsetof(FURL, Op) == 0x000048, "Member 'FURL::Op' has a wrong offset!"); \ +static_assert(offsetof(FURL, Portal) == 0x000058, "Member 'FURL::Portal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExposureSettings \ +static_assert(alignof(FExposureSettings) == 0x000004, "Wrong alignment on FExposureSettings"); \ +static_assert(sizeof(FExposureSettings) == 0x000008, "Wrong size on FExposureSettings"); \ +static_assert(offsetof(FExposureSettings, FixedEV100) == 0x000000, "Member 'FExposureSettings::FixedEV100' has a wrong offset!"); \ +static_assert(offsetof(FExposureSettings, bFixed) == 0x000004, "Member 'FExposureSettings::bFixed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundNodeEditorData \ +static_assert(alignof(FSoundNodeEditorData) == 0x000004, "Wrong alignment on FSoundNodeEditorData"); \ +static_assert(sizeof(FSoundNodeEditorData) == 0x000008, "Wrong size on FSoundNodeEditorData"); \ + +#define DUMPER7_ASSERTS_FLightmassLightSettings \ +static_assert(alignof(FLightmassLightSettings) == 0x000004, "Wrong alignment on FLightmassLightSettings"); \ +static_assert(sizeof(FLightmassLightSettings) == 0x00000C, "Wrong size on FLightmassLightSettings"); \ +static_assert(offsetof(FLightmassLightSettings, IndirectLightingSaturation) == 0x000000, "Member 'FLightmassLightSettings::IndirectLightingSaturation' has a wrong offset!"); \ +static_assert(offsetof(FLightmassLightSettings, ShadowExponent) == 0x000004, "Member 'FLightmassLightSettings::ShadowExponent' has a wrong offset!"); \ +static_assert(offsetof(FLightmassLightSettings, bUseAreaShadowsForStationaryLight) == 0x000008, "Member 'FLightmassLightSettings::bUseAreaShadowsForStationaryLight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLightmassDirectionalLightSettings \ +static_assert(alignof(FLightmassDirectionalLightSettings) == 0x000004, "Wrong alignment on FLightmassDirectionalLightSettings"); \ +static_assert(sizeof(FLightmassDirectionalLightSettings) == 0x000010, "Wrong size on FLightmassDirectionalLightSettings"); \ +static_assert(offsetof(FLightmassDirectionalLightSettings, LightSourceAngle) == 0x00000C, "Member 'FLightmassDirectionalLightSettings::LightSourceAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedFloat \ +static_assert(alignof(FNamedFloat) == 0x000004, "Wrong alignment on FNamedFloat"); \ +static_assert(sizeof(FNamedFloat) == 0x00000C, "Wrong size on FNamedFloat"); \ +static_assert(offsetof(FNamedFloat, Value) == 0x000000, "Member 'FNamedFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FNamedFloat, Name) == 0x000004, "Member 'FNamedFloat::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedVector \ +static_assert(alignof(FNamedVector) == 0x000008, "Wrong alignment on FNamedVector"); \ +static_assert(sizeof(FNamedVector) == 0x000020, "Wrong size on FNamedVector"); \ +static_assert(offsetof(FNamedVector, Value) == 0x000000, "Member 'FNamedVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FNamedVector, Name) == 0x000018, "Member 'FNamedVector::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigidBodyContactInfo \ +static_assert(alignof(FRigidBodyContactInfo) == 0x000008, "Wrong alignment on FRigidBodyContactInfo"); \ +static_assert(sizeof(FRigidBodyContactInfo) == 0x000048, "Wrong size on FRigidBodyContactInfo"); \ +static_assert(offsetof(FRigidBodyContactInfo, ContactPosition) == 0x000000, "Member 'FRigidBodyContactInfo::ContactPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyContactInfo, ContactNormal) == 0x000018, "Member 'FRigidBodyContactInfo::ContactNormal' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyContactInfo, ContactPenetration) == 0x000030, "Member 'FRigidBodyContactInfo::ContactPenetration' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyContactInfo, bContactProbe) == 0x000034, "Member 'FRigidBodyContactInfo::bContactProbe' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyContactInfo, PhysMaterial) == 0x000038, "Member 'FRigidBodyContactInfo::PhysMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedColor \ +static_assert(alignof(FNamedColor) == 0x000004, "Wrong alignment on FNamedColor"); \ +static_assert(sizeof(FNamedColor) == 0x00000C, "Wrong size on FNamedColor"); \ +static_assert(offsetof(FNamedColor, Value) == 0x000000, "Member 'FNamedColor::Value' has a wrong offset!"); \ +static_assert(offsetof(FNamedColor, Name) == 0x000004, "Member 'FNamedColor::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParameterGroupData \ +static_assert(alignof(FParameterGroupData) == 0x000008, "Wrong alignment on FParameterGroupData"); \ +static_assert(sizeof(FParameterGroupData) == 0x000018, "Wrong size on FParameterGroupData"); \ +static_assert(offsetof(FParameterGroupData, GroupName) == 0x000000, "Member 'FParameterGroupData::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FParameterGroupData, GroupSortPriority) == 0x000010, "Member 'FParameterGroupData::GroupSortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedTransform \ +static_assert(alignof(FNamedTransform) == 0x000010, "Wrong alignment on FNamedTransform"); \ +static_assert(sizeof(FNamedTransform) == 0x000070, "Wrong size on FNamedTransform"); \ +static_assert(offsetof(FNamedTransform, Value) == 0x000000, "Member 'FNamedTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FNamedTransform, Name) == 0x000060, "Member 'FNamedTransform::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPluginRedirect \ +static_assert(alignof(FPluginRedirect) == 0x000008, "Wrong alignment on FPluginRedirect"); \ +static_assert(sizeof(FPluginRedirect) == 0x000020, "Wrong size on FPluginRedirect"); \ +static_assert(offsetof(FPluginRedirect, OldPluginName) == 0x000000, "Member 'FPluginRedirect::OldPluginName' has a wrong offset!"); \ +static_assert(offsetof(FPluginRedirect, NewPluginName) == 0x000010, "Member 'FPluginRedirect::NewPluginName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalSpacePose \ +static_assert(alignof(FLocalSpacePose) == 0x000008, "Wrong alignment on FLocalSpacePose"); \ +static_assert(sizeof(FLocalSpacePose) == 0x000020, "Wrong size on FLocalSpacePose"); \ +static_assert(offsetof(FLocalSpacePose, Transforms) == 0x000000, "Member 'FLocalSpacePose::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FLocalSpacePose, Names) == 0x000010, "Member 'FLocalSpacePose::Names' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentSpacePose \ +static_assert(alignof(FComponentSpacePose) == 0x000008, "Wrong alignment on FComponentSpacePose"); \ +static_assert(sizeof(FComponentSpacePose) == 0x000020, "Wrong size on FComponentSpacePose"); \ +static_assert(offsetof(FComponentSpacePose, Transforms) == 0x000000, "Member 'FComponentSpacePose::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FComponentSpacePose, Names) == 0x000010, "Member 'FComponentSpacePose::Names' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterUnionParticleCandidateData \ +static_assert(alignof(FClusterUnionParticleCandidateData) == 0x000004, "Wrong alignment on FClusterUnionParticleCandidateData"); \ +static_assert(sizeof(FClusterUnionParticleCandidateData) == 0x00000C, "Wrong size on FClusterUnionParticleCandidateData"); \ +static_assert(offsetof(FClusterUnionParticleCandidateData, Component) == 0x000000, "Member 'FClusterUnionParticleCandidateData::Component' has a wrong offset!"); \ +static_assert(offsetof(FClusterUnionParticleCandidateData, BoneID) == 0x000008, "Member 'FClusterUnionParticleCandidateData::BoneID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimCompressedCurveIndexedName \ +static_assert(alignof(FAnimCompressedCurveIndexedName) == 0x000004, "Wrong alignment on FAnimCompressedCurveIndexedName"); \ +static_assert(sizeof(FAnimCompressedCurveIndexedName) == 0x00000C, "Wrong size on FAnimCompressedCurveIndexedName"); \ +static_assert(offsetof(FAnimCompressedCurveIndexedName, CurveName) == 0x000000, "Member 'FAnimCompressedCurveIndexedName::CurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshBuildSettings \ +static_assert(alignof(FMeshBuildSettings) == 0x000008, "Wrong alignment on FMeshBuildSettings"); \ +static_assert(sizeof(FMeshBuildSettings) == 0x000048, "Wrong size on FMeshBuildSettings"); \ +static_assert(offsetof(FMeshBuildSettings, MinLightmapResolution) == 0x000004, "Member 'FMeshBuildSettings::MinLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, SrcLightmapIndex) == 0x000008, "Member 'FMeshBuildSettings::SrcLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, DstLightmapIndex) == 0x00000C, "Member 'FMeshBuildSettings::DstLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, BuildScale) == 0x000010, "Member 'FMeshBuildSettings::BuildScale' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, BuildScale3D) == 0x000018, "Member 'FMeshBuildSettings::BuildScale3D' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, DistanceFieldResolutionScale) == 0x000030, "Member 'FMeshBuildSettings::DistanceFieldResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, DistanceFieldReplacementMesh) == 0x000038, "Member 'FMeshBuildSettings::DistanceFieldReplacementMesh' has a wrong offset!"); \ +static_assert(offsetof(FMeshBuildSettings, MaxLumenMeshCards) == 0x000040, "Member 'FMeshBuildSettings::MaxLumenMeshCards' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimCurveType \ +static_assert(alignof(FAnimCurveType) == 0x000001, "Wrong alignment on FAnimCurveType"); \ +static_assert(sizeof(FAnimCurveType) == 0x000002, "Wrong size on FAnimCurveType"); \ +static_assert(offsetof(FAnimCurveType, bMaterial) == 0x000000, "Member 'FAnimCurveType::bMaterial' has a wrong offset!"); \ +static_assert(offsetof(FAnimCurveType, bMorphtarget) == 0x000001, "Member 'FAnimCurveType::bMorphtarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveMetaData \ +static_assert(alignof(FCurveMetaData) == 0x000008, "Wrong alignment on FCurveMetaData"); \ +static_assert(sizeof(FCurveMetaData) == 0x000018, "Wrong size on FCurveMetaData"); \ +static_assert(offsetof(FCurveMetaData, LinkedBones) == 0x000000, "Member 'FCurveMetaData::LinkedBones' has a wrong offset!"); \ +static_assert(offsetof(FCurveMetaData, MaxLOD) == 0x000010, "Member 'FCurveMetaData::MaxLOD' has a wrong offset!"); \ +static_assert(offsetof(FCurveMetaData, Type) == 0x000011, "Member 'FCurveMetaData::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimCurveParam \ +static_assert(alignof(FAnimCurveParam) == 0x000004, "Wrong alignment on FAnimCurveParam"); \ +static_assert(sizeof(FAnimCurveParam) == 0x00000C, "Wrong size on FAnimCurveParam"); \ +static_assert(offsetof(FAnimCurveParam, Name) == 0x000000, "Member 'FAnimCurveParam::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatCurve \ +static_assert(alignof(FFloatCurve) == 0x000008, "Wrong alignment on FFloatCurve"); \ +static_assert(sizeof(FFloatCurve) == 0x000090, "Wrong size on FFloatCurve"); \ +static_assert(offsetof(FFloatCurve, FloatCurve) == 0x000010, "Member 'FFloatCurve::FloatCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorCurve \ +static_assert(alignof(FVectorCurve) == 0x000008, "Wrong alignment on FVectorCurve"); \ +static_assert(sizeof(FVectorCurve) == 0x000190, "Wrong size on FVectorCurve"); \ +static_assert(offsetof(FVectorCurve, FloatCurves) == 0x000010, "Member 'FVectorCurve::FloatCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimUpdateRateParameters \ +static_assert(alignof(FAnimUpdateRateParameters) == 0x000008, "Wrong alignment on FAnimUpdateRateParameters"); \ +static_assert(sizeof(FAnimUpdateRateParameters) == 0x000088, "Wrong size on FAnimUpdateRateParameters"); \ +static_assert(offsetof(FAnimUpdateRateParameters, ShiftBucket) == 0x000001, "Member 'FAnimUpdateRateParameters::ShiftBucket' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, UpdateRate) == 0x000004, "Member 'FAnimUpdateRateParameters::UpdateRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, EvaluationRate) == 0x000008, "Member 'FAnimUpdateRateParameters::EvaluationRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, TickedPoseOffestTime) == 0x00000C, "Member 'FAnimUpdateRateParameters::TickedPoseOffestTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, AdditionalTime) == 0x000010, "Member 'FAnimUpdateRateParameters::AdditionalTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, BaseNonRenderedUpdateRate) == 0x000018, "Member 'FAnimUpdateRateParameters::BaseNonRenderedUpdateRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, MaxEvalRateForInterpolation) == 0x00001C, "Member 'FAnimUpdateRateParameters::MaxEvalRateForInterpolation' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, BaseVisibleDistanceFactorThesholds) == 0x000020, "Member 'FAnimUpdateRateParameters::BaseVisibleDistanceFactorThesholds' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, LODToFrameSkipMap) == 0x000030, "Member 'FAnimUpdateRateParameters::LODToFrameSkipMap' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, SkippedUpdateFrames) == 0x000080, "Member 'FAnimUpdateRateParameters::SkippedUpdateFrames' has a wrong offset!"); \ +static_assert(offsetof(FAnimUpdateRateParameters, SkippedEvalFrames) == 0x000084, "Member 'FAnimUpdateRateParameters::SkippedEvalFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformCurve \ +static_assert(alignof(FTransformCurve) == 0x000008, "Wrong alignment on FTransformCurve"); \ +static_assert(sizeof(FTransformCurve) == 0x0004C0, "Wrong size on FTransformCurve"); \ +static_assert(offsetof(FTransformCurve, TranslationCurve) == 0x000010, "Member 'FTransformCurve::TranslationCurve' has a wrong offset!"); \ +static_assert(offsetof(FTransformCurve, RotationCurve) == 0x0001A0, "Member 'FTransformCurve::RotationCurve' has a wrong offset!"); \ +static_assert(offsetof(FTransformCurve, ScaleCurve) == 0x000330, "Member 'FTransformCurve::ScaleCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedFloatCurve \ +static_assert(alignof(FCachedFloatCurve) == 0x000004, "Wrong alignment on FCachedFloatCurve"); \ +static_assert(sizeof(FCachedFloatCurve) == 0x000008, "Wrong size on FCachedFloatCurve"); \ +static_assert(offsetof(FCachedFloatCurve, CurveName) == 0x000000, "Member 'FCachedFloatCurve::CurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDepthFieldGlowInfo \ +static_assert(alignof(FDepthFieldGlowInfo) == 0x000008, "Wrong alignment on FDepthFieldGlowInfo"); \ +static_assert(sizeof(FDepthFieldGlowInfo) == 0x000038, "Wrong size on FDepthFieldGlowInfo"); \ +static_assert(offsetof(FDepthFieldGlowInfo, GlowColor) == 0x000004, "Member 'FDepthFieldGlowInfo::GlowColor' has a wrong offset!"); \ +static_assert(offsetof(FDepthFieldGlowInfo, GlowOuterRadius) == 0x000018, "Member 'FDepthFieldGlowInfo::GlowOuterRadius' has a wrong offset!"); \ +static_assert(offsetof(FDepthFieldGlowInfo, GlowInnerRadius) == 0x000028, "Member 'FDepthFieldGlowInfo::GlowInnerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRawCurveTracks \ +static_assert(alignof(FRawCurveTracks) == 0x000008, "Wrong alignment on FRawCurveTracks"); \ +static_assert(sizeof(FRawCurveTracks) == 0x000010, "Wrong size on FRawCurveTracks"); \ +static_assert(offsetof(FRawCurveTracks, FloatCurves) == 0x000000, "Member 'FRawCurveTracks::FloatCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBracketPayload \ +static_assert(alignof(FBracketPayload) == 0x000008, "Wrong alignment on FBracketPayload"); \ +static_assert(sizeof(FBracketPayload) == 0x000010, "Wrong size on FBracketPayload"); \ +static_assert(offsetof(FBracketPayload, Description) == 0x000000, "Member 'FBracketPayload::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationTrackPayload \ +static_assert(alignof(FAnimationTrackPayload) == 0x000004, "Wrong alignment on FAnimationTrackPayload"); \ +static_assert(sizeof(FAnimationTrackPayload) == 0x000008, "Wrong size on FAnimationTrackPayload"); \ +static_assert(offsetof(FAnimationTrackPayload, Name) == 0x000000, "Member 'FAnimationTrackPayload::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMTDResult \ +static_assert(alignof(FMTDResult) == 0x000008, "Wrong alignment on FMTDResult"); \ +static_assert(sizeof(FMTDResult) == 0x000020, "Wrong size on FMTDResult"); \ +static_assert(offsetof(FMTDResult, Direction) == 0x000000, "Member 'FMTDResult::Direction' has a wrong offset!"); \ +static_assert(offsetof(FMTDResult, Distance) == 0x000018, "Member 'FMTDResult::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationTrackAddedPayload \ +static_assert(alignof(FAnimationTrackAddedPayload) == 0x000004, "Wrong alignment on FAnimationTrackAddedPayload"); \ +static_assert(sizeof(FAnimationTrackAddedPayload) == 0x00000C, "Wrong size on FAnimationTrackAddedPayload"); \ +static_assert(offsetof(FAnimationTrackAddedPayload, TrackIndex) == 0x000008, "Member 'FAnimationTrackAddedPayload::TrackIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSequenceLengthChangedPayload \ +static_assert(alignof(FSequenceLengthChangedPayload) == 0x000004, "Wrong alignment on FSequenceLengthChangedPayload"); \ +static_assert(sizeof(FSequenceLengthChangedPayload) == 0x000018, "Wrong size on FSequenceLengthChangedPayload"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, PreviousLength) == 0x000000, "Member 'FSequenceLengthChangedPayload::PreviousLength' has a wrong offset!"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, T0) == 0x000004, "Member 'FSequenceLengthChangedPayload::T0' has a wrong offset!"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, T1) == 0x000008, "Member 'FSequenceLengthChangedPayload::T1' has a wrong offset!"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, PreviousNumberOfFrames) == 0x00000C, "Member 'FSequenceLengthChangedPayload::PreviousNumberOfFrames' has a wrong offset!"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, Frame0) == 0x000010, "Member 'FSequenceLengthChangedPayload::Frame0' has a wrong offset!"); \ +static_assert(offsetof(FSequenceLengthChangedPayload, Frame1) == 0x000014, "Member 'FSequenceLengthChangedPayload::Frame1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionReference \ +static_assert(alignof(FCollectionReference) == 0x000004, "Wrong alignment on FCollectionReference"); \ +static_assert(sizeof(FCollectionReference) == 0x000008, "Wrong size on FCollectionReference"); \ +static_assert(offsetof(FCollectionReference, CollectionName) == 0x000000, "Member 'FCollectionReference::CollectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameRateChangedPayload \ +static_assert(alignof(FFrameRateChangedPayload) == 0x000004, "Wrong alignment on FFrameRateChangedPayload"); \ +static_assert(sizeof(FFrameRateChangedPayload) == 0x000008, "Wrong size on FFrameRateChangedPayload"); \ +static_assert(offsetof(FFrameRateChangedPayload, PreviousFrameRate) == 0x000000, "Member 'FFrameRateChangedPayload::PreviousFrameRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSimplificationDetails \ +static_assert(alignof(FLevelSimplificationDetails) == 0x000008, "Wrong alignment on FLevelSimplificationDetails"); \ +static_assert(sizeof(FLevelSimplificationDetails) == 0x000158, "Wrong size on FLevelSimplificationDetails"); \ +static_assert(offsetof(FLevelSimplificationDetails, bCreatePackagePerAsset) == 0x000000, "Member 'FLevelSimplificationDetails::bCreatePackagePerAsset' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, DetailsPercentage) == 0x000004, "Member 'FLevelSimplificationDetails::DetailsPercentage' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, StaticMeshMaterialSettings) == 0x000008, "Member 'FLevelSimplificationDetails::StaticMeshMaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, bOverrideLandscapeExportLOD) == 0x0000A8, "Member 'FLevelSimplificationDetails::bOverrideLandscapeExportLOD' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, LandscapeExportLOD) == 0x0000AC, "Member 'FLevelSimplificationDetails::LandscapeExportLOD' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, LandscapeMaterialSettings) == 0x0000B0, "Member 'FLevelSimplificationDetails::LandscapeMaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, bBakeFoliageToLandscape) == 0x000150, "Member 'FLevelSimplificationDetails::bBakeFoliageToLandscape' has a wrong offset!"); \ +static_assert(offsetof(FLevelSimplificationDetails, bBakeGrassToLandscape) == 0x000151, "Member 'FLevelSimplificationDetails::bBakeGrassToLandscape' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FForceFeedbackParameters \ +static_assert(alignof(FForceFeedbackParameters) == 0x000004, "Wrong alignment on FForceFeedbackParameters"); \ +static_assert(sizeof(FForceFeedbackParameters) == 0x00000C, "Wrong size on FForceFeedbackParameters"); \ +static_assert(offsetof(FForceFeedbackParameters, Tag) == 0x000000, "Member 'FForceFeedbackParameters::Tag' has a wrong offset!"); \ +static_assert(offsetof(FForceFeedbackParameters, bLooping) == 0x000008, "Member 'FForceFeedbackParameters::bLooping' has a wrong offset!"); \ +static_assert(offsetof(FForceFeedbackParameters, bIgnoreTimeDilation) == 0x000009, "Member 'FForceFeedbackParameters::bIgnoreTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(FForceFeedbackParameters, bPlayWhilePaused) == 0x00000A, "Member 'FForceFeedbackParameters::bPlayWhilePaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveScaledPayload \ +static_assert(alignof(FCurveScaledPayload) == 0x000004, "Wrong alignment on FCurveScaledPayload"); \ +static_assert(sizeof(FCurveScaledPayload) == 0x000014, "Wrong size on FCurveScaledPayload"); \ +static_assert(offsetof(FCurveScaledPayload, Factor) == 0x00000C, "Member 'FCurveScaledPayload::Factor' has a wrong offset!"); \ +static_assert(offsetof(FCurveScaledPayload, Origin) == 0x000010, "Member 'FCurveScaledPayload::Origin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCanvasUVTri \ +static_assert(alignof(FCanvasUVTri) == 0x000008, "Wrong alignment on FCanvasUVTri"); \ +static_assert(sizeof(FCanvasUVTri) == 0x000090, "Wrong size on FCanvasUVTri"); \ +static_assert(offsetof(FCanvasUVTri, V0_Pos) == 0x000000, "Member 'FCanvasUVTri::V0_Pos' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V0_UV) == 0x000010, "Member 'FCanvasUVTri::V0_UV' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V0_Color) == 0x000020, "Member 'FCanvasUVTri::V0_Color' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V1_Pos) == 0x000030, "Member 'FCanvasUVTri::V1_Pos' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V1_UV) == 0x000040, "Member 'FCanvasUVTri::V1_UV' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V1_Color) == 0x000050, "Member 'FCanvasUVTri::V1_Color' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V2_Pos) == 0x000060, "Member 'FCanvasUVTri::V2_Pos' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V2_UV) == 0x000070, "Member 'FCanvasUVTri::V2_UV' has a wrong offset!"); \ +static_assert(offsetof(FCanvasUVTri, V2_Color) == 0x000080, "Member 'FCanvasUVTri::V2_Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveRenamedPayload \ +static_assert(alignof(FCurveRenamedPayload) == 0x000004, "Wrong alignment on FCurveRenamedPayload"); \ +static_assert(sizeof(FCurveRenamedPayload) == 0x000018, "Wrong size on FCurveRenamedPayload"); \ +static_assert(offsetof(FCurveRenamedPayload, NewIdentifier) == 0x00000C, "Member 'FCurveRenamedPayload::NewIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDisplacementScaling \ +static_assert(alignof(FDisplacementScaling) == 0x000004, "Wrong alignment on FDisplacementScaling"); \ +static_assert(sizeof(FDisplacementScaling) == 0x000008, "Wrong size on FDisplacementScaling"); \ +static_assert(offsetof(FDisplacementScaling, Magnitude) == 0x000000, "Member 'FDisplacementScaling::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FDisplacementScaling, Center) == 0x000004, "Member 'FDisplacementScaling::Center' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationAttributeIdentifier \ +static_assert(alignof(FAnimationAttributeIdentifier) == 0x000008, "Wrong alignment on FAnimationAttributeIdentifier"); \ +static_assert(sizeof(FAnimationAttributeIdentifier) == 0x000040, "Wrong size on FAnimationAttributeIdentifier"); \ +static_assert(offsetof(FAnimationAttributeIdentifier, Name) == 0x000000, "Member 'FAnimationAttributeIdentifier::Name' has a wrong offset!"); \ +static_assert(offsetof(FAnimationAttributeIdentifier, BoneName) == 0x000008, "Member 'FAnimationAttributeIdentifier::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FAnimationAttributeIdentifier, BoneIndex) == 0x000010, "Member 'FAnimationAttributeIdentifier::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimationAttributeIdentifier, ScriptStruct) == 0x000018, "Member 'FAnimationAttributeIdentifier::ScriptStruct' has a wrong offset!"); \ +static_assert(offsetof(FAnimationAttributeIdentifier, ScriptStructPath) == 0x000020, "Member 'FAnimationAttributeIdentifier::ScriptStructPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributePayload \ +static_assert(alignof(FAttributePayload) == 0x000008, "Wrong alignment on FAttributePayload"); \ +static_assert(sizeof(FAttributePayload) == 0x000040, "Wrong size on FAttributePayload"); \ +static_assert(offsetof(FAttributePayload, Identifier) == 0x000000, "Member 'FAttributePayload::Identifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBaseAttenuationSettings \ +static_assert(alignof(FBaseAttenuationSettings) == 0x000008, "Wrong alignment on FBaseAttenuationSettings"); \ +static_assert(sizeof(FBaseAttenuationSettings) == 0x0000C0, "Wrong size on FBaseAttenuationSettings"); \ +static_assert(offsetof(FBaseAttenuationSettings, DistanceAlgorithm) == 0x000008, "Member 'FBaseAttenuationSettings::DistanceAlgorithm' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, AttenuationShape) == 0x000009, "Member 'FBaseAttenuationSettings::AttenuationShape' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, FalloffMode) == 0x00000A, "Member 'FBaseAttenuationSettings::FalloffMode' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, dBAttenuationAtMax) == 0x00000C, "Member 'FBaseAttenuationSettings::dBAttenuationAtMax' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, AttenuationShapeExtents) == 0x000010, "Member 'FBaseAttenuationSettings::AttenuationShapeExtents' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, ConeOffset) == 0x000028, "Member 'FBaseAttenuationSettings::ConeOffset' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, FalloffDistance) == 0x00002C, "Member 'FBaseAttenuationSettings::FalloffDistance' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, ConeSphereRadius) == 0x000030, "Member 'FBaseAttenuationSettings::ConeSphereRadius' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, ConeSphereFalloffDistance) == 0x000034, "Member 'FBaseAttenuationSettings::ConeSphereFalloffDistance' has a wrong offset!"); \ +static_assert(offsetof(FBaseAttenuationSettings, CustomAttenuationCurve) == 0x000038, "Member 'FBaseAttenuationSettings::CustomAttenuationCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNodeConstantData \ +static_assert(alignof(FAnimNodeConstantData) == 0x000008, "Wrong alignment on FAnimNodeConstantData"); \ +static_assert(sizeof(FAnimNodeConstantData) == 0x000018, "Wrong size on FAnimNodeConstantData"); \ +static_assert(offsetof(FAnimNodeConstantData, AnimClassInterface) == 0x000000, "Member 'FAnimNodeConstantData::AnimClassInterface' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeConstantData, NodeIndex) == 0x000010, "Member 'FAnimNodeConstantData::NodeIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialCachedParameterEntry \ +static_assert(alignof(FMaterialCachedParameterEntry) == 0x000008, "Wrong alignment on FMaterialCachedParameterEntry"); \ +static_assert(sizeof(FMaterialCachedParameterEntry) == 0x000050, "Wrong size on FMaterialCachedParameterEntry"); \ +static_assert(offsetof(FMaterialCachedParameterEntry, ParameterInfoSet) == 0x000000, "Member 'FMaterialCachedParameterEntry::ParameterInfoSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlotEvaluationPose \ +static_assert(alignof(FSlotEvaluationPose) == 0x000008, "Wrong alignment on FSlotEvaluationPose"); \ +static_assert(sizeof(FSlotEvaluationPose) == 0x000080, "Wrong size on FSlotEvaluationPose"); \ +static_assert(offsetof(FSlotEvaluationPose, AdditiveType) == 0x000000, "Member 'FSlotEvaluationPose::AdditiveType' has a wrong offset!"); \ +static_assert(offsetof(FSlotEvaluationPose, Weight) == 0x000004, "Member 'FSlotEvaluationPose::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystemInstance \ +static_assert(alignof(FAnimSubsystemInstance) == 0x000008, "Wrong alignment on FAnimSubsystemInstance"); \ +static_assert(sizeof(FAnimSubsystemInstance) == 0x000008, "Wrong size on FAnimSubsystemInstance"); \ + +#define DUMPER7_ASSERTS_FPredictProjectilePathPointData \ +static_assert(alignof(FPredictProjectilePathPointData) == 0x000008, "Wrong alignment on FPredictProjectilePathPointData"); \ +static_assert(sizeof(FPredictProjectilePathPointData) == 0x000038, "Wrong size on FPredictProjectilePathPointData"); \ +static_assert(offsetof(FPredictProjectilePathPointData, Location) == 0x000000, "Member 'FPredictProjectilePathPointData::Location' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathPointData, Velocity) == 0x000018, "Member 'FPredictProjectilePathPointData::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathPointData, Time) == 0x000030, "Member 'FPredictProjectilePathPointData::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem_BlendSpaceGraph \ +static_assert(alignof(FAnimSubsystem_BlendSpaceGraph) == 0x000008, "Wrong alignment on FAnimSubsystem_BlendSpaceGraph"); \ +static_assert(sizeof(FAnimSubsystem_BlendSpaceGraph) == 0x000018, "Wrong size on FAnimSubsystem_BlendSpaceGraph"); \ +static_assert(offsetof(FAnimSubsystem_BlendSpaceGraph, BlendSpaces) == 0x000008, "Member 'FAnimSubsystem_BlendSpaceGraph::BlendSpaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRPCAnalyticsThreshold \ +static_assert(alignof(FRPCAnalyticsThreshold) == 0x000008, "Wrong alignment on FRPCAnalyticsThreshold"); \ +static_assert(sizeof(FRPCAnalyticsThreshold) == 0x000018, "Wrong size on FRPCAnalyticsThreshold"); \ +static_assert(offsetof(FRPCAnalyticsThreshold, RPC) == 0x000000, "Member 'FRPCAnalyticsThreshold::RPC' has a wrong offset!"); \ +static_assert(offsetof(FRPCAnalyticsThreshold, CountPerSec) == 0x000008, "Member 'FRPCAnalyticsThreshold::CountPerSec' has a wrong offset!"); \ +static_assert(offsetof(FRPCAnalyticsThreshold, TimePerSec) == 0x000010, "Member 'FRPCAnalyticsThreshold::TimePerSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerBoneBlendWeights \ +static_assert(alignof(FPerBoneBlendWeights) == 0x000008, "Wrong alignment on FPerBoneBlendWeights"); \ +static_assert(sizeof(FPerBoneBlendWeights) == 0x000010, "Wrong size on FPerBoneBlendWeights"); \ +static_assert(offsetof(FPerBoneBlendWeights, BoneBlendWeights) == 0x000000, "Member 'FPerBoneBlendWeights::BoneBlendWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimLinkableElement \ +static_assert(alignof(FAnimLinkableElement) == 0x000008, "Wrong alignment on FAnimLinkableElement"); \ +static_assert(sizeof(FAnimLinkableElement) == 0x000030, "Wrong size on FAnimLinkableElement"); \ +static_assert(offsetof(FAnimLinkableElement, LinkedMontage) == 0x000008, "Member 'FAnimLinkableElement::LinkedMontage' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, SlotIndex) == 0x000010, "Member 'FAnimLinkableElement::SlotIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, SegmentIndex) == 0x000014, "Member 'FAnimLinkableElement::SegmentIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, LinkMethod) == 0x000018, "Member 'FAnimLinkableElement::LinkMethod' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, CachedLinkMethod) == 0x000019, "Member 'FAnimLinkableElement::CachedLinkMethod' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, SegmentBeginTime) == 0x00001C, "Member 'FAnimLinkableElement::SegmentBeginTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, SegmentLength) == 0x000020, "Member 'FAnimLinkableElement::SegmentLength' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, LinkValue) == 0x000024, "Member 'FAnimLinkableElement::LinkValue' has a wrong offset!"); \ +static_assert(offsetof(FAnimLinkableElement, LinkedSequence) == 0x000028, "Member 'FAnimLinkableElement::LinkedSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExposedValueCopyRecord \ +static_assert(alignof(FExposedValueCopyRecord) == 0x000004, "Wrong alignment on FExposedValueCopyRecord"); \ +static_assert(sizeof(FExposedValueCopyRecord) == 0x000008, "Wrong size on FExposedValueCopyRecord"); \ +static_assert(offsetof(FExposedValueCopyRecord, CopyIndex) == 0x000000, "Member 'FExposedValueCopyRecord::CopyIndex' has a wrong offset!"); \ +static_assert(offsetof(FExposedValueCopyRecord, PostCopyOperation) == 0x000004, "Member 'FExposedValueCopyRecord::PostCopyOperation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyEvent \ +static_assert(alignof(FAnimNotifyEvent) == 0x000008, "Wrong alignment on FAnimNotifyEvent"); \ +static_assert(sizeof(FAnimNotifyEvent) == 0x0000B8, "Wrong size on FAnimNotifyEvent"); \ +static_assert(offsetof(FAnimNotifyEvent, TriggerTimeOffset) == 0x000030, "Member 'FAnimNotifyEvent::TriggerTimeOffset' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, EndTriggerTimeOffset) == 0x000034, "Member 'FAnimNotifyEvent::EndTriggerTimeOffset' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, TriggerWeightThreshold) == 0x000038, "Member 'FAnimNotifyEvent::TriggerWeightThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, NotifyName) == 0x00003C, "Member 'FAnimNotifyEvent::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, Notify) == 0x000048, "Member 'FAnimNotifyEvent::Notify' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, NotifyStateClass) == 0x000050, "Member 'FAnimNotifyEvent::NotifyStateClass' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, Duration) == 0x000058, "Member 'FAnimNotifyEvent::Duration' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, EndLink) == 0x000060, "Member 'FAnimNotifyEvent::EndLink' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, bConvertedFromBranchingPoint) == 0x000090, "Member 'FAnimNotifyEvent::bConvertedFromBranchingPoint' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, MontageTickType) == 0x000091, "Member 'FAnimNotifyEvent::MontageTickType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, NotifyTriggerChance) == 0x000094, "Member 'FAnimNotifyEvent::NotifyTriggerChance' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, NotifyFilterType) == 0x000098, "Member 'FAnimNotifyEvent::NotifyFilterType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, NotifyFilterLOD) == 0x00009C, "Member 'FAnimNotifyEvent::NotifyFilterLOD' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, bTriggerOnDedicatedServer) == 0x0000A0, "Member 'FAnimNotifyEvent::bTriggerOnDedicatedServer' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, bTriggerOnFollower) == 0x0000A1, "Member 'FAnimNotifyEvent::bTriggerOnFollower' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyEvent, TrackIndex) == 0x0000A4, "Member 'FAnimNotifyEvent::TrackIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFXSystemSpawnParameters \ +static_assert(alignof(FFXSystemSpawnParameters) == 0x000008, "Wrong alignment on FFXSystemSpawnParameters"); \ +static_assert(sizeof(FFXSystemSpawnParameters) == 0x000070, "Wrong size on FFXSystemSpawnParameters"); \ +static_assert(offsetof(FFXSystemSpawnParameters, WorldContextObject) == 0x000000, "Member 'FFXSystemSpawnParameters::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, SystemTemplate) == 0x000008, "Member 'FFXSystemSpawnParameters::SystemTemplate' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, Location) == 0x000010, "Member 'FFXSystemSpawnParameters::Location' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, Rotation) == 0x000028, "Member 'FFXSystemSpawnParameters::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, Scale) == 0x000040, "Member 'FFXSystemSpawnParameters::Scale' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, AttachToComponent) == 0x000058, "Member 'FFXSystemSpawnParameters::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, AttachPointName) == 0x000060, "Member 'FFXSystemSpawnParameters::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, LocationType) == 0x000068, "Member 'FFXSystemSpawnParameters::LocationType' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, bAutoDestroy) == 0x000069, "Member 'FFXSystemSpawnParameters::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, bAutoActivate) == 0x00006A, "Member 'FFXSystemSpawnParameters::bAutoActivate' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, PoolingMethod) == 0x00006B, "Member 'FFXSystemSpawnParameters::PoolingMethod' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, bPreCullCheck) == 0x00006C, "Member 'FFXSystemSpawnParameters::bPreCullCheck' has a wrong offset!"); \ +static_assert(offsetof(FFXSystemSpawnParameters, bIsPlayerEffect) == 0x00006D, "Member 'FFXSystemSpawnParameters::bIsPlayerEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSyncMarker \ +static_assert(alignof(FAnimSyncMarker) == 0x000004, "Wrong alignment on FAnimSyncMarker"); \ +static_assert(sizeof(FAnimSyncMarker) == 0x00000C, "Wrong size on FAnimSyncMarker"); \ +static_assert(offsetof(FAnimSyncMarker, MarkerName) == 0x000000, "Member 'FAnimSyncMarker::MarkerName' has a wrong offset!"); \ +static_assert(offsetof(FAnimSyncMarker, Time) == 0x000008, "Member 'FAnimSyncMarker::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshClothBuildParams \ +static_assert(alignof(FSkeletalMeshClothBuildParams) == 0x000008, "Wrong alignment on FSkeletalMeshClothBuildParams"); \ +static_assert(sizeof(FSkeletalMeshClothBuildParams) == 0x000058, "Wrong size on FSkeletalMeshClothBuildParams"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, TargetAsset) == 0x000000, "Member 'FSkeletalMeshClothBuildParams::TargetAsset' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, TargetLod) == 0x000008, "Member 'FSkeletalMeshClothBuildParams::TargetLod' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, bRemapParameters) == 0x00000C, "Member 'FSkeletalMeshClothBuildParams::bRemapParameters' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, AssetName) == 0x000010, "Member 'FSkeletalMeshClothBuildParams::AssetName' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, LODIndex) == 0x000020, "Member 'FSkeletalMeshClothBuildParams::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, SourceSection) == 0x000024, "Member 'FSkeletalMeshClothBuildParams::SourceSection' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, bRemoveFromMesh) == 0x000028, "Member 'FSkeletalMeshClothBuildParams::bRemoveFromMesh' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshClothBuildParams, PhysicsAsset) == 0x000030, "Member 'FSkeletalMeshClothBuildParams::PhysicsAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyTrack \ +static_assert(alignof(FAnimNotifyTrack) == 0x000008, "Wrong alignment on FAnimNotifyTrack"); \ +static_assert(sizeof(FAnimNotifyTrack) == 0x000038, "Wrong size on FAnimNotifyTrack"); \ +static_assert(offsetof(FAnimNotifyTrack, TrackName) == 0x000000, "Member 'FAnimNotifyTrack::TrackName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyTrack, TrackColor) == 0x000008, "Member 'FAnimNotifyTrack::TrackColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedStaticMeshMappingInfo \ +static_assert(alignof(FInstancedStaticMeshMappingInfo) == 0x000008, "Wrong alignment on FInstancedStaticMeshMappingInfo"); \ +static_assert(sizeof(FInstancedStaticMeshMappingInfo) == 0x000008, "Wrong size on FInstancedStaticMeshMappingInfo"); \ + +#define DUMPER7_ASSERTS_FMarkerSyncData \ +static_assert(alignof(FMarkerSyncData) == 0x000008, "Wrong alignment on FMarkerSyncData"); \ +static_assert(sizeof(FMarkerSyncData) == 0x000020, "Wrong size on FMarkerSyncData"); \ +static_assert(offsetof(FMarkerSyncData, AuthoredSyncMarkers) == 0x000000, "Member 'FMarkerSyncData::AuthoredSyncMarkers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDelegateArray \ +static_assert(alignof(FDelegateArray) == 0x000008, "Wrong alignment on FDelegateArray"); \ +static_assert(sizeof(FDelegateArray) == 0x000010, "Wrong size on FDelegateArray"); \ +static_assert(offsetof(FDelegateArray, Delegates) == 0x000000, "Member 'FDelegateArray::Delegates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDistanceDatum \ +static_assert(alignof(FDistanceDatum) == 0x000004, "Wrong alignment on FDistanceDatum"); \ +static_assert(sizeof(FDistanceDatum) == 0x000014, "Wrong size on FDistanceDatum"); \ +static_assert(offsetof(FDistanceDatum, FadeInDistanceStart) == 0x000000, "Member 'FDistanceDatum::FadeInDistanceStart' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDatum, FadeInDistanceEnd) == 0x000004, "Member 'FDistanceDatum::FadeInDistanceEnd' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDatum, FadeOutDistanceStart) == 0x000008, "Member 'FDistanceDatum::FadeOutDistanceStart' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDatum, FadeOutDistanceEnd) == 0x00000C, "Member 'FDistanceDatum::FadeOutDistanceEnd' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDatum, Volume) == 0x000010, "Member 'FDistanceDatum::Volume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetManagerRedirect \ +static_assert(alignof(FAssetManagerRedirect) == 0x000008, "Wrong alignment on FAssetManagerRedirect"); \ +static_assert(sizeof(FAssetManagerRedirect) == 0x000020, "Wrong size on FAssetManagerRedirect"); \ +static_assert(offsetof(FAssetManagerRedirect, Old) == 0x000000, "Member 'FAssetManagerRedirect::Old' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerRedirect, New) == 0x000010, "Member 'FAssetManagerRedirect::New' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedEmitterMaterial \ +static_assert(alignof(FNamedEmitterMaterial) == 0x000008, "Wrong alignment on FNamedEmitterMaterial"); \ +static_assert(sizeof(FNamedEmitterMaterial) == 0x000010, "Wrong size on FNamedEmitterMaterial"); \ +static_assert(offsetof(FNamedEmitterMaterial, Name) == 0x000000, "Member 'FNamedEmitterMaterial::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedEmitterMaterial, Material) == 0x000008, "Member 'FNamedEmitterMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExposedValueHandler \ +static_assert(alignof(FExposedValueHandler) == 0x000008, "Wrong alignment on FExposedValueHandler"); \ +static_assert(sizeof(FExposedValueHandler) == 0x000028, "Wrong size on FExposedValueHandler"); \ +static_assert(offsetof(FExposedValueHandler, CopyRecords) == 0x000000, "Member 'FExposedValueHandler::CopyRecords' has a wrong offset!"); \ +static_assert(offsetof(FExposedValueHandler, Function) == 0x000010, "Member 'FExposedValueHandler::Function' has a wrong offset!"); \ +static_assert(offsetof(FExposedValueHandler, BoundFunction) == 0x000020, "Member 'FExposedValueHandler::BoundFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetRules \ +static_assert(alignof(FPrimaryAssetRules) == 0x000004, "Wrong alignment on FPrimaryAssetRules"); \ +static_assert(sizeof(FPrimaryAssetRules) == 0x00000C, "Wrong size on FPrimaryAssetRules"); \ +static_assert(offsetof(FPrimaryAssetRules, Priority) == 0x000000, "Member 'FPrimaryAssetRules::Priority' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRules, ChunkId) == 0x000004, "Member 'FPrimaryAssetRules::ChunkId' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRules, bApplyRecursively) == 0x000008, "Member 'FPrimaryAssetRules::bApplyRecursively' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRules, CookRule) == 0x000009, "Member 'FPrimaryAssetRules::CookRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetRulesOverride \ +static_assert(alignof(FPrimaryAssetRulesOverride) == 0x000004, "Wrong alignment on FPrimaryAssetRulesOverride"); \ +static_assert(sizeof(FPrimaryAssetRulesOverride) == 0x00001C, "Wrong size on FPrimaryAssetRulesOverride"); \ +static_assert(offsetof(FPrimaryAssetRulesOverride, PrimaryAssetId) == 0x000000, "Member 'FPrimaryAssetRulesOverride::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRulesOverride, Rules) == 0x000010, "Member 'FPrimaryAssetRulesOverride::Rules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLinkedAnimLayerInstanceData \ +static_assert(alignof(FLinkedAnimLayerInstanceData) == 0x000008, "Wrong alignment on FLinkedAnimLayerInstanceData"); \ +static_assert(sizeof(FLinkedAnimLayerInstanceData) == 0x000060, "Wrong size on FLinkedAnimLayerInstanceData"); \ +static_assert(offsetof(FLinkedAnimLayerInstanceData, Instance) == 0x000000, "Member 'FLinkedAnimLayerInstanceData::Instance' has a wrong offset!"); \ +static_assert(offsetof(FLinkedAnimLayerInstanceData, LinkedFunctions) == 0x000008, "Member 'FLinkedAnimLayerInstanceData::LinkedFunctions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputDevicePropertyHandle \ +static_assert(alignof(FInputDevicePropertyHandle) == 0x000004, "Wrong alignment on FInputDevicePropertyHandle"); \ +static_assert(sizeof(FInputDevicePropertyHandle) == 0x000004, "Wrong size on FInputDevicePropertyHandle"); \ +static_assert(offsetof(FInputDevicePropertyHandle, InternalId) == 0x000000, "Member 'FInputDevicePropertyHandle::InternalId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetRulesCustomOverride \ +static_assert(alignof(FPrimaryAssetRulesCustomOverride) == 0x000008, "Wrong alignment on FPrimaryAssetRulesCustomOverride"); \ +static_assert(sizeof(FPrimaryAssetRulesCustomOverride) == 0x000038, "Wrong size on FPrimaryAssetRulesCustomOverride"); \ +static_assert(offsetof(FPrimaryAssetRulesCustomOverride, PrimaryAssetType) == 0x000000, "Member 'FPrimaryAssetRulesCustomOverride::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRulesCustomOverride, FilterDirectory) == 0x000008, "Member 'FPrimaryAssetRulesCustomOverride::FilterDirectory' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRulesCustomOverride, FilterString) == 0x000018, "Member 'FPrimaryAssetRulesCustomOverride::FilterString' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetRulesCustomOverride, Rules) == 0x000028, "Member 'FPrimaryAssetRulesCustomOverride::Rules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingRegionBuiltData \ +static_assert(alignof(FSkeletalMeshSamplingRegionBuiltData) == 0x000008, "Wrong alignment on FSkeletalMeshSamplingRegionBuiltData"); \ +static_assert(sizeof(FSkeletalMeshSamplingRegionBuiltData) == 0x000078, "Wrong size on FSkeletalMeshSamplingRegionBuiltData"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceBlendProfile \ +static_assert(alignof(FBlendSpaceBlendProfile) == 0x000008, "Wrong alignment on FBlendSpaceBlendProfile"); \ +static_assert(sizeof(FBlendSpaceBlendProfile) == 0x000010, "Wrong size on FBlendSpaceBlendProfile"); \ +static_assert(offsetof(FBlendSpaceBlendProfile, BlendProfile) == 0x000000, "Member 'FBlendSpaceBlendProfile::BlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceBlendProfile, TargetWeightInterpolationSpeedPerSec) == 0x000008, "Member 'FBlendSpaceBlendProfile::TargetWeightInterpolationSpeedPerSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendParameter \ +static_assert(alignof(FBlendParameter) == 0x000008, "Wrong alignment on FBlendParameter"); \ +static_assert(sizeof(FBlendParameter) == 0x000020, "Wrong size on FBlendParameter"); \ +static_assert(offsetof(FBlendParameter, DisplayName) == 0x000000, "Member 'FBlendParameter::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FBlendParameter, Min) == 0x000010, "Member 'FBlendParameter::Min' has a wrong offset!"); \ +static_assert(offsetof(FBlendParameter, Max) == 0x000014, "Member 'FBlendParameter::Max' has a wrong offset!"); \ +static_assert(offsetof(FBlendParameter, GridNum) == 0x000018, "Member 'FBlendParameter::GridNum' has a wrong offset!"); \ +static_assert(offsetof(FBlendParameter, bSnapToGrid) == 0x00001C, "Member 'FBlendParameter::bSnapToGrid' has a wrong offset!"); \ +static_assert(offsetof(FBlendParameter, bWrapInput) == 0x00001D, "Member 'FBlendParameter::bWrapInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedStaticMeshLightMapInstanceData \ +static_assert(alignof(FInstancedStaticMeshLightMapInstanceData) == 0x000010, "Wrong alignment on FInstancedStaticMeshLightMapInstanceData"); \ +static_assert(sizeof(FInstancedStaticMeshLightMapInstanceData) == 0x000070, "Wrong size on FInstancedStaticMeshLightMapInstanceData"); \ +static_assert(offsetof(FInstancedStaticMeshLightMapInstanceData, Transform) == 0x000000, "Member 'FInstancedStaticMeshLightMapInstanceData::Transform' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshLightMapInstanceData, MapBuildDataIds) == 0x000060, "Member 'FInstancedStaticMeshLightMapInstanceData::MapBuildDataIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSample \ +static_assert(alignof(FBlendSample) == 0x000008, "Wrong alignment on FBlendSample"); \ +static_assert(sizeof(FBlendSample) == 0x000028, "Wrong size on FBlendSample"); \ +static_assert(offsetof(FBlendSample, Animation) == 0x000000, "Member 'FBlendSample::Animation' has a wrong offset!"); \ +static_assert(offsetof(FBlendSample, SampleValue) == 0x000008, "Member 'FBlendSample::SampleValue' has a wrong offset!"); \ +static_assert(offsetof(FBlendSample, RateScale) == 0x000020, "Member 'FBlendSample::RateScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshReductionSettings \ +static_assert(alignof(FMeshReductionSettings) == 0x000004, "Wrong alignment on FMeshReductionSettings"); \ +static_assert(sizeof(FMeshReductionSettings) == 0x00002C, "Wrong size on FMeshReductionSettings"); \ +static_assert(offsetof(FMeshReductionSettings, PercentTriangles) == 0x000000, "Member 'FMeshReductionSettings::PercentTriangles' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, MaxNumOfTriangles) == 0x000004, "Member 'FMeshReductionSettings::MaxNumOfTriangles' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, PercentVertices) == 0x000008, "Member 'FMeshReductionSettings::PercentVertices' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, MaxNumOfVerts) == 0x00000C, "Member 'FMeshReductionSettings::MaxNumOfVerts' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, MaxDeviation) == 0x000010, "Member 'FMeshReductionSettings::MaxDeviation' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, PixelError) == 0x000014, "Member 'FMeshReductionSettings::PixelError' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, WeldingThreshold) == 0x000018, "Member 'FMeshReductionSettings::WeldingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, HardAngleThreshold) == 0x00001C, "Member 'FMeshReductionSettings::HardAngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, BaseLODModel) == 0x000020, "Member 'FMeshReductionSettings::BaseLODModel' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, SilhouetteImportance) == 0x000024, "Member 'FMeshReductionSettings::SilhouetteImportance' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, TextureImportance) == 0x000025, "Member 'FMeshReductionSettings::TextureImportance' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, ShadingImportance) == 0x000026, "Member 'FMeshReductionSettings::ShadingImportance' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, TerminationCriterion) == 0x000028, "Member 'FMeshReductionSettings::TerminationCriterion' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, VisibilityAggressiveness) == 0x000029, "Member 'FMeshReductionSettings::VisibilityAggressiveness' has a wrong offset!"); \ +static_assert(offsetof(FMeshReductionSettings, VertexColorImportance) == 0x00002A, "Member 'FMeshReductionSettings::VertexColorImportance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshSourceModel \ +static_assert(alignof(FStaticMeshSourceModel) == 0x000008, "Wrong alignment on FStaticMeshSourceModel"); \ +static_assert(sizeof(FStaticMeshSourceModel) == 0x000098, "Wrong size on FStaticMeshSourceModel"); \ +static_assert(offsetof(FStaticMeshSourceModel, BuildSettings) == 0x000000, "Member 'FStaticMeshSourceModel::BuildSettings' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, ReductionSettings) == 0x000048, "Member 'FStaticMeshSourceModel::ReductionSettings' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, CacheMeshDescriptionTrianglesCount) == 0x000074, "Member 'FStaticMeshSourceModel::CacheMeshDescriptionTrianglesCount' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, CacheMeshDescriptionVerticesCount) == 0x000078, "Member 'FStaticMeshSourceModel::CacheMeshDescriptionVerticesCount' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, LODDistance) == 0x00007C, "Member 'FStaticMeshSourceModel::LODDistance' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, ScreenSize) == 0x000080, "Member 'FStaticMeshSourceModel::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshSourceModel, SourceImportFilename) == 0x000088, "Member 'FStaticMeshSourceModel::SourceImportFilename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceSegment \ +static_assert(alignof(FBlendSpaceSegment) == 0x000004, "Wrong alignment on FBlendSpaceSegment"); \ +static_assert(sizeof(FBlendSpaceSegment) == 0x000010, "Wrong size on FBlendSpaceSegment"); \ +static_assert(offsetof(FBlendSpaceSegment, SampleIndices) == 0x000000, "Member 'FBlendSpaceSegment::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceSegment, Vertices) == 0x000008, "Member 'FBlendSpaceSegment::Vertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributeCurve \ +static_assert(alignof(FAttributeCurve) == 0x000008, "Wrong alignment on FAttributeCurve"); \ +static_assert(sizeof(FAttributeCurve) == 0x0000B0, "Wrong size on FAttributeCurve"); \ +static_assert(offsetof(FAttributeCurve, Keys) == 0x000068, "Member 'FAttributeCurve::Keys' has a wrong offset!"); \ +static_assert(offsetof(FAttributeCurve, ScriptStructPath) == 0x000078, "Member 'FAttributeCurve::ScriptStructPath' has a wrong offset!"); \ +static_assert(offsetof(FAttributeCurve, ScriptStruct) == 0x000098, "Member 'FAttributeCurve::ScriptStruct' has a wrong offset!"); \ +static_assert(offsetof(FAttributeCurve, bShouldInterpolate) == 0x0000A0, "Member 'FAttributeCurve::bShouldInterpolate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMClientHandle \ +static_assert(alignof(FISMClientHandle) == 0x000004, "Wrong alignment on FISMClientHandle"); \ +static_assert(sizeof(FISMClientHandle) == 0x000014, "Wrong size on FISMClientHandle"); \ +static_assert(offsetof(FISMClientHandle, Index) == 0x000000, "Member 'FISMClientHandle::Index' has a wrong offset!"); \ +static_assert(offsetof(FISMClientHandle, Guid) == 0x000004, "Member 'FISMClientHandle::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWeightedBlendSample \ +static_assert(alignof(FWeightedBlendSample) == 0x000004, "Wrong alignment on FWeightedBlendSample"); \ +static_assert(sizeof(FWeightedBlendSample) == 0x000008, "Wrong size on FWeightedBlendSample"); \ +static_assert(offsetof(FWeightedBlendSample, SampleIndex) == 0x000000, "Member 'FWeightedBlendSample::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(FWeightedBlendSample, SampleWeight) == 0x000004, "Member 'FWeightedBlendSample::SampleWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamingLevelsToConsider \ +static_assert(alignof(FStreamingLevelsToConsider) == 0x000008, "Wrong alignment on FStreamingLevelsToConsider"); \ +static_assert(sizeof(FStreamingLevelsToConsider) == 0x000028, "Wrong size on FStreamingLevelsToConsider"); \ +static_assert(offsetof(FStreamingLevelsToConsider, StreamingLevels) == 0x000000, "Member 'FStreamingLevelsToConsider::StreamingLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceData \ +static_assert(alignof(FBlendSpaceData) == 0x000008, "Wrong alignment on FBlendSpaceData"); \ +static_assert(sizeof(FBlendSpaceData) == 0x000020, "Wrong size on FBlendSpaceData"); \ +static_assert(offsetof(FBlendSpaceData, Segments) == 0x000000, "Member 'FBlendSpaceData::Segments' has a wrong offset!"); \ +static_assert(offsetof(FBlendSpaceData, Triangles) == 0x000010, "Member 'FBlendSpaceData::Triangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFunctionExpressionOutput \ +static_assert(alignof(FFunctionExpressionOutput) == 0x000008, "Wrong alignment on FFunctionExpressionOutput"); \ +static_assert(sizeof(FFunctionExpressionOutput) == 0x000038, "Wrong size on FFunctionExpressionOutput"); \ +static_assert(offsetof(FFunctionExpressionOutput, ExpressionOutput) == 0x000000, "Member 'FFunctionExpressionOutput::ExpressionOutput' has a wrong offset!"); \ +static_assert(offsetof(FFunctionExpressionOutput, ExpressionOutputId) == 0x000008, "Member 'FFunctionExpressionOutput::ExpressionOutputId' has a wrong offset!"); \ +static_assert(offsetof(FFunctionExpressionOutput, Output) == 0x000018, "Member 'FFunctionExpressionOutput::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialExpressionCollection \ +static_assert(alignof(FMaterialExpressionCollection) == 0x000008, "Wrong alignment on FMaterialExpressionCollection"); \ +static_assert(sizeof(FMaterialExpressionCollection) == 0x000030, "Wrong size on FMaterialExpressionCollection"); \ +static_assert(offsetof(FMaterialExpressionCollection, Expressions) == 0x000000, "Member 'FMaterialExpressionCollection::Expressions' has a wrong offset!"); \ +static_assert(offsetof(FMaterialExpressionCollection, EditorComments) == 0x000010, "Member 'FMaterialExpressionCollection::EditorComments' has a wrong offset!"); \ +static_assert(offsetof(FMaterialExpressionCollection, ExpressionExecBegin) == 0x000020, "Member 'FMaterialExpressionCollection::ExpressionExecBegin' has a wrong offset!"); \ +static_assert(offsetof(FMaterialExpressionCollection, ExpressionExecEnd) == 0x000028, "Member 'FMaterialExpressionCollection::ExpressionExecEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerBoneInterpolation \ +static_assert(alignof(FPerBoneInterpolation) == 0x000004, "Wrong alignment on FPerBoneInterpolation"); \ +static_assert(sizeof(FPerBoneInterpolation) == 0x000014, "Wrong size on FPerBoneInterpolation"); \ +static_assert(offsetof(FPerBoneInterpolation, BoneReference) == 0x000000, "Member 'FPerBoneInterpolation::BoneReference' has a wrong offset!"); \ +static_assert(offsetof(FPerBoneInterpolation, InterpolationSpeedPerSec) == 0x000010, "Member 'FPerBoneInterpolation::InterpolationSpeedPerSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBuildPromotionNewProjectSettings \ +static_assert(alignof(FBuildPromotionNewProjectSettings) == 0x000008, "Wrong alignment on FBuildPromotionNewProjectSettings"); \ +static_assert(sizeof(FBuildPromotionNewProjectSettings) == 0x000020, "Wrong size on FBuildPromotionNewProjectSettings"); \ +static_assert(offsetof(FBuildPromotionNewProjectSettings, NewProjectFolderOverride) == 0x000000, "Member 'FBuildPromotionNewProjectSettings::NewProjectFolderOverride' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionNewProjectSettings, NewProjectNameOverride) == 0x000010, "Member 'FBuildPromotionNewProjectSettings::NewProjectNameOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompilerNativizationOptions \ +static_assert(alignof(FCompilerNativizationOptions) == 0x000008, "Wrong alignment on FCompilerNativizationOptions"); \ +static_assert(sizeof(FCompilerNativizationOptions) == 0x000080, "Wrong size on FCompilerNativizationOptions"); \ +static_assert(offsetof(FCompilerNativizationOptions, PlatformName) == 0x000000, "Member 'FCompilerNativizationOptions::PlatformName' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, ServerOnlyPlatform) == 0x000008, "Member 'FCompilerNativizationOptions::ServerOnlyPlatform' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, ClientOnlyPlatform) == 0x000009, "Member 'FCompilerNativizationOptions::ClientOnlyPlatform' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, bExcludeMonolithicHeaders) == 0x00000A, "Member 'FCompilerNativizationOptions::bExcludeMonolithicHeaders' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, ExcludedModules) == 0x000010, "Member 'FCompilerNativizationOptions::ExcludedModules' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, ExcludedAssets) == 0x000020, "Member 'FCompilerNativizationOptions::ExcludedAssets' has a wrong offset!"); \ +static_assert(offsetof(FCompilerNativizationOptions, ExcludedFolderPaths) == 0x000070, "Member 'FCompilerNativizationOptions::ExcludedFolderPaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueNetIdReplNetSerializerStringStruct \ +static_assert(alignof(FUniqueNetIdReplNetSerializerStringStruct) == 0x000008, "Wrong alignment on FUniqueNetIdReplNetSerializerStringStruct"); \ +static_assert(sizeof(FUniqueNetIdReplNetSerializerStringStruct) == 0x000010, "Wrong size on FUniqueNetIdReplNetSerializerStringStruct"); \ +static_assert(offsetof(FUniqueNetIdReplNetSerializerStringStruct, String) == 0x000000, "Member 'FUniqueNetIdReplNetSerializerStringStruct::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedAnimStateArray \ +static_assert(alignof(FCachedAnimStateArray) == 0x000008, "Wrong alignment on FCachedAnimStateArray"); \ +static_assert(sizeof(FCachedAnimStateArray) == 0x000018, "Wrong size on FCachedAnimStateArray"); \ +static_assert(offsetof(FCachedAnimStateArray, States) == 0x000000, "Member 'FCachedAnimStateArray::States' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintMacroCosmeticInfo \ +static_assert(alignof(FBlueprintMacroCosmeticInfo) == 0x000001, "Wrong alignment on FBlueprintMacroCosmeticInfo"); \ +static_assert(sizeof(FBlueprintMacroCosmeticInfo) == 0x000001, "Wrong size on FBlueprintMacroCosmeticInfo"); \ + +#define DUMPER7_ASSERTS_FTrajectorySample \ +static_assert(alignof(FTrajectorySample) == 0x000010, "Wrong alignment on FTrajectorySample"); \ +static_assert(sizeof(FTrajectorySample) == 0x000090, "Wrong size on FTrajectorySample"); \ +static_assert(offsetof(FTrajectorySample, AccumulatedSeconds) == 0x000000, "Member 'FTrajectorySample::AccumulatedSeconds' has a wrong offset!"); \ +static_assert(offsetof(FTrajectorySample, Transform) == 0x000010, "Member 'FTrajectorySample::Transform' has a wrong offset!"); \ +static_assert(offsetof(FTrajectorySample, LinearVelocity) == 0x000070, "Member 'FTrajectorySample::LinearVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBPVariableMetaDataEntry \ +static_assert(alignof(FBPVariableMetaDataEntry) == 0x000008, "Wrong alignment on FBPVariableMetaDataEntry"); \ +static_assert(sizeof(FBPVariableMetaDataEntry) == 0x000018, "Wrong size on FBPVariableMetaDataEntry"); \ +static_assert(offsetof(FBPVariableMetaDataEntry, DataKey) == 0x000000, "Member 'FBPVariableMetaDataEntry::DataKey' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableMetaDataEntry, DataValue) == 0x000008, "Member 'FBPVariableMetaDataEntry::DataValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataDrivenShaderPlatformInfoInput \ +static_assert(alignof(FDataDrivenShaderPlatformInfoInput) == 0x000004, "Wrong alignment on FDataDrivenShaderPlatformInfoInput"); \ +static_assert(sizeof(FDataDrivenShaderPlatformInfoInput) == 0x00000C, "Wrong size on FDataDrivenShaderPlatformInfoInput"); \ +static_assert(offsetof(FDataDrivenShaderPlatformInfoInput, InputName) == 0x000000, "Member 'FDataDrivenShaderPlatformInfoInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenShaderPlatformInfoInput, PropertyCondition) == 0x000008, "Member 'FDataDrivenShaderPlatformInfoInput::PropertyCondition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationTransitionBetweenStates \ +static_assert(alignof(FAnimationTransitionBetweenStates) == 0x000008, "Wrong alignment on FAnimationTransitionBetweenStates"); \ +static_assert(sizeof(FAnimationTransitionBetweenStates) == 0x000040, "Wrong size on FAnimationTransitionBetweenStates"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, PreviousState) == 0x000008, "Member 'FAnimationTransitionBetweenStates::PreviousState' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, NextState) == 0x00000C, "Member 'FAnimationTransitionBetweenStates::NextState' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, CrossfadeDuration) == 0x000010, "Member 'FAnimationTransitionBetweenStates::CrossfadeDuration' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, StartNotify) == 0x000014, "Member 'FAnimationTransitionBetweenStates::StartNotify' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, EndNotify) == 0x000018, "Member 'FAnimationTransitionBetweenStates::EndNotify' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, InterruptNotify) == 0x00001C, "Member 'FAnimationTransitionBetweenStates::InterruptNotify' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, BlendMode) == 0x000020, "Member 'FAnimationTransitionBetweenStates::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, CustomCurve) == 0x000028, "Member 'FAnimationTransitionBetweenStates::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, BlendProfile) == 0x000030, "Member 'FAnimationTransitionBetweenStates::BlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionBetweenStates, LogicType) == 0x000038, "Member 'FAnimationTransitionBetweenStates::LogicType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakedAnimationStateMachine \ +static_assert(alignof(FBakedAnimationStateMachine) == 0x000008, "Wrong alignment on FBakedAnimationStateMachine"); \ +static_assert(sizeof(FBakedAnimationStateMachine) == 0x000030, "Wrong size on FBakedAnimationStateMachine"); \ +static_assert(offsetof(FBakedAnimationStateMachine, MachineName) == 0x000000, "Member 'FBakedAnimationStateMachine::MachineName' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationStateMachine, InitialState) == 0x000008, "Member 'FBakedAnimationStateMachine::InitialState' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationStateMachine, States) == 0x000010, "Member 'FBakedAnimationStateMachine::States' has a wrong offset!"); \ +static_assert(offsetof(FBakedAnimationStateMachine, Transitions) == 0x000020, "Member 'FBakedAnimationStateMachine::Transitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimpleMemberReference \ +static_assert(alignof(FSimpleMemberReference) == 0x000008, "Wrong alignment on FSimpleMemberReference"); \ +static_assert(sizeof(FSimpleMemberReference) == 0x000020, "Wrong size on FSimpleMemberReference"); \ +static_assert(offsetof(FSimpleMemberReference, MemberParent) == 0x000000, "Member 'FSimpleMemberReference::MemberParent' has a wrong offset!"); \ +static_assert(offsetof(FSimpleMemberReference, MemberName) == 0x000008, "Member 'FSimpleMemberReference::MemberName' has a wrong offset!"); \ +static_assert(offsetof(FSimpleMemberReference, MemberGuid) == 0x000010, "Member 'FSimpleMemberReference::MemberGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEdGraphTerminalType \ +static_assert(alignof(FEdGraphTerminalType) == 0x000004, "Wrong alignment on FEdGraphTerminalType"); \ +static_assert(sizeof(FEdGraphTerminalType) == 0x00001C, "Wrong size on FEdGraphTerminalType"); \ +static_assert(offsetof(FEdGraphTerminalType, TerminalCategory) == 0x000000, "Member 'FEdGraphTerminalType::TerminalCategory' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphTerminalType, TerminalSubCategory) == 0x000008, "Member 'FEdGraphTerminalType::TerminalSubCategory' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphTerminalType, TerminalSubCategoryObject) == 0x000010, "Member 'FEdGraphTerminalType::TerminalSubCategoryObject' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphTerminalType, bTerminalIsConst) == 0x000018, "Member 'FEdGraphTerminalType::bTerminalIsConst' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphTerminalType, bTerminalIsWeakPointer) == 0x000019, "Member 'FEdGraphTerminalType::bTerminalIsWeakPointer' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphTerminalType, bTerminalIsUObjectWrapper) == 0x00001A, "Member 'FEdGraphTerminalType::bTerminalIsUObjectWrapper' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEdGraphPinType \ +static_assert(alignof(FEdGraphPinType) == 0x000008, "Wrong alignment on FEdGraphPinType"); \ +static_assert(sizeof(FEdGraphPinType) == 0x000058, "Wrong size on FEdGraphPinType"); \ +static_assert(offsetof(FEdGraphPinType, PinCategory) == 0x000000, "Member 'FEdGraphPinType::PinCategory' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinType, PinSubCategory) == 0x000008, "Member 'FEdGraphPinType::PinSubCategory' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinType, PinSubCategoryObject) == 0x000010, "Member 'FEdGraphPinType::PinSubCategoryObject' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinType, PinSubCategoryMemberReference) == 0x000018, "Member 'FEdGraphPinType::PinSubCategoryMemberReference' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinType, PinValueType) == 0x000038, "Member 'FEdGraphPinType::PinValueType' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinType, ContainerType) == 0x000054, "Member 'FEdGraphPinType::ContainerType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBPVariableDescription \ +static_assert(alignof(FBPVariableDescription) == 0x000008, "Wrong alignment on FBPVariableDescription"); \ +static_assert(sizeof(FBPVariableDescription) == 0x0000D0, "Wrong size on FBPVariableDescription"); \ +static_assert(offsetof(FBPVariableDescription, VarName) == 0x000000, "Member 'FBPVariableDescription::VarName' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, VarGuid) == 0x000008, "Member 'FBPVariableDescription::VarGuid' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, VarType) == 0x000018, "Member 'FBPVariableDescription::VarType' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, FriendlyName) == 0x000070, "Member 'FBPVariableDescription::FriendlyName' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, Category) == 0x000080, "Member 'FBPVariableDescription::Category' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, PropertyFlags) == 0x000098, "Member 'FBPVariableDescription::PropertyFlags' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, RepNotifyFunc) == 0x0000A0, "Member 'FBPVariableDescription::RepNotifyFunc' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, ReplicationCondition) == 0x0000A8, "Member 'FBPVariableDescription::ReplicationCondition' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, MetaDataArray) == 0x0000B0, "Member 'FBPVariableDescription::MetaDataArray' has a wrong offset!"); \ +static_assert(offsetof(FBPVariableDescription, DefaultValue) == 0x0000C0, "Member 'FBPVariableDescription::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionRuntimeCellDebugInfo \ +static_assert(alignof(FWorldPartitionRuntimeCellDebugInfo) == 0x000008, "Wrong alignment on FWorldPartitionRuntimeCellDebugInfo"); \ +static_assert(sizeof(FWorldPartitionRuntimeCellDebugInfo) == 0x000030, "Wrong size on FWorldPartitionRuntimeCellDebugInfo"); \ +static_assert(offsetof(FWorldPartitionRuntimeCellDebugInfo, Name) == 0x000000, "Member 'FWorldPartitionRuntimeCellDebugInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionRuntimeCellDebugInfo, GridName) == 0x000010, "Member 'FWorldPartitionRuntimeCellDebugInfo::GridName' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionRuntimeCellDebugInfo, CoordX) == 0x000018, "Member 'FWorldPartitionRuntimeCellDebugInfo::CoordX' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionRuntimeCellDebugInfo, CoordY) == 0x000020, "Member 'FWorldPartitionRuntimeCellDebugInfo::CoordY' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionRuntimeCellDebugInfo, CoordZ) == 0x000028, "Member 'FWorldPartitionRuntimeCellDebugInfo::CoordZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSwitchCustomInput \ +static_assert(alignof(FSwitchCustomInput) == 0x000008, "Wrong alignment on FSwitchCustomInput"); \ +static_assert(sizeof(FSwitchCustomInput) == 0x000030, "Wrong size on FSwitchCustomInput"); \ +static_assert(offsetof(FSwitchCustomInput, InputName) == 0x000000, "Member 'FSwitchCustomInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(FSwitchCustomInput, Input) == 0x000008, "Member 'FSwitchCustomInput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBPInterfaceDescription \ +static_assert(alignof(FBPInterfaceDescription) == 0x000008, "Wrong alignment on FBPInterfaceDescription"); \ +static_assert(sizeof(FBPInterfaceDescription) == 0x000018, "Wrong size on FBPInterfaceDescription"); \ +static_assert(offsetof(FBPInterfaceDescription, Interface) == 0x000000, "Member 'FBPInterfaceDescription::Interface' has a wrong offset!"); \ +static_assert(offsetof(FBPInterfaceDescription, Graphs) == 0x000008, "Member 'FBPInterfaceDescription::Graphs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicsPredictionSettings \ +static_assert(alignof(FPhysicsPredictionSettings) == 0x000004, "Wrong alignment on FPhysicsPredictionSettings"); \ +static_assert(sizeof(FPhysicsPredictionSettings) == 0x00000C, "Wrong size on FPhysicsPredictionSettings"); \ +static_assert(offsetof(FPhysicsPredictionSettings, bEnablePhysicsPrediction) == 0x000000, "Member 'FPhysicsPredictionSettings::bEnablePhysicsPrediction' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsPredictionSettings, bEnablePhysicsResimulation) == 0x000001, "Member 'FPhysicsPredictionSettings::bEnablePhysicsResimulation' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsPredictionSettings, ResimulationErrorThreshold) == 0x000004, "Member 'FPhysicsPredictionSettings::ResimulationErrorThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsPredictionSettings, MaxSupportedLatencyPrediction) == 0x000008, "Member 'FPhysicsPredictionSettings::MaxSupportedLatencyPrediction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditedDocumentInfo \ +static_assert(alignof(FEditedDocumentInfo) == 0x000008, "Wrong alignment on FEditedDocumentInfo"); \ +static_assert(sizeof(FEditedDocumentInfo) == 0x000040, "Wrong size on FEditedDocumentInfo"); \ +static_assert(offsetof(FEditedDocumentInfo, EditedObjectPath) == 0x000000, "Member 'FEditedDocumentInfo::EditedObjectPath' has a wrong offset!"); \ +static_assert(offsetof(FEditedDocumentInfo, SavedViewOffset) == 0x000020, "Member 'FEditedDocumentInfo::SavedViewOffset' has a wrong offset!"); \ +static_assert(offsetof(FEditedDocumentInfo, SavedZoomAmount) == 0x000030, "Member 'FEditedDocumentInfo::SavedZoomAmount' has a wrong offset!"); \ +static_assert(offsetof(FEditedDocumentInfo, EditedObject) == 0x000038, "Member 'FEditedDocumentInfo::EditedObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomOutput \ +static_assert(alignof(FCustomOutput) == 0x000004, "Wrong alignment on FCustomOutput"); \ +static_assert(sizeof(FCustomOutput) == 0x00000C, "Wrong size on FCustomOutput"); \ +static_assert(offsetof(FCustomOutput, OutputName) == 0x000000, "Member 'FCustomOutput::OutputName' has a wrong offset!"); \ +static_assert(offsetof(FCustomOutput, OutputType) == 0x000008, "Member 'FCustomOutput::OutputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMirrorFindReplaceExpression \ +static_assert(alignof(FMirrorFindReplaceExpression) == 0x000004, "Wrong alignment on FMirrorFindReplaceExpression"); \ +static_assert(sizeof(FMirrorFindReplaceExpression) == 0x000014, "Wrong size on FMirrorFindReplaceExpression"); \ +static_assert(offsetof(FMirrorFindReplaceExpression, FindExpression) == 0x000000, "Member 'FMirrorFindReplaceExpression::FindExpression' has a wrong offset!"); \ +static_assert(offsetof(FMirrorFindReplaceExpression, ReplaceExpression) == 0x000008, "Member 'FMirrorFindReplaceExpression::ReplaceExpression' has a wrong offset!"); \ +static_assert(offsetof(FMirrorFindReplaceExpression, FindReplaceMethod) == 0x000010, "Member 'FMirrorFindReplaceExpression::FindReplaceMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBPEditorBookmarkNode \ +static_assert(alignof(FBPEditorBookmarkNode) == 0x000008, "Wrong alignment on FBPEditorBookmarkNode"); \ +static_assert(sizeof(FBPEditorBookmarkNode) == 0x000038, "Wrong size on FBPEditorBookmarkNode"); \ +static_assert(offsetof(FBPEditorBookmarkNode, NodeGuid) == 0x000000, "Member 'FBPEditorBookmarkNode::NodeGuid' has a wrong offset!"); \ +static_assert(offsetof(FBPEditorBookmarkNode, ParentGuid) == 0x000010, "Member 'FBPEditorBookmarkNode::ParentGuid' has a wrong offset!"); \ +static_assert(offsetof(FBPEditorBookmarkNode, DisplayName) == 0x000020, "Member 'FBPEditorBookmarkNode::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBookmarkBaseJumpToSettings \ +static_assert(alignof(FBookmarkBaseJumpToSettings) == 0x000001, "Wrong alignment on FBookmarkBaseJumpToSettings"); \ +static_assert(sizeof(FBookmarkBaseJumpToSettings) == 0x000001, "Wrong size on FBookmarkBaseJumpToSettings"); \ + +#define DUMPER7_ASSERTS_FMeshSectionInfoMap \ +static_assert(alignof(FMeshSectionInfoMap) == 0x000008, "Wrong alignment on FMeshSectionInfoMap"); \ +static_assert(sizeof(FMeshSectionInfoMap) == 0x000050, "Wrong size on FMeshSectionInfoMap"); \ +static_assert(offsetof(FMeshSectionInfoMap, Map) == 0x000000, "Member 'FMeshSectionInfoMap::Map' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeomSelection \ +static_assert(alignof(FGeomSelection) == 0x000004, "Wrong alignment on FGeomSelection"); \ +static_assert(sizeof(FGeomSelection) == 0x00000C, "Wrong size on FGeomSelection"); \ +static_assert(offsetof(FGeomSelection, Type) == 0x000000, "Member 'FGeomSelection::Type' has a wrong offset!"); \ +static_assert(offsetof(FGeomSelection, Index) == 0x000004, "Member 'FGeomSelection::Index' has a wrong offset!"); \ +static_assert(offsetof(FGeomSelection, SelectionIndex) == 0x000008, "Member 'FGeomSelection::SelectionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntegerAnimationAttribute \ +static_assert(alignof(FIntegerAnimationAttribute) == 0x000004, "Wrong alignment on FIntegerAnimationAttribute"); \ +static_assert(sizeof(FIntegerAnimationAttribute) == 0x000004, "Wrong size on FIntegerAnimationAttribute"); \ +static_assert(offsetof(FIntegerAnimationAttribute, Value) == 0x000000, "Member 'FIntegerAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLightmassDebugOptions \ +static_assert(alignof(FLightmassDebugOptions) == 0x000004, "Wrong alignment on FLightmassDebugOptions"); \ +static_assert(sizeof(FLightmassDebugOptions) == 0x000010, "Wrong size on FLightmassDebugOptions"); \ +static_assert(offsetof(FLightmassDebugOptions, CoplanarTolerance) == 0x000004, "Member 'FLightmassDebugOptions::CoplanarTolerance' has a wrong offset!"); \ +static_assert(offsetof(FLightmassDebugOptions, ExecutionTimeDivisor) == 0x00000C, "Member 'FLightmassDebugOptions::ExecutionTimeDivisor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStringAnimationAttribute \ +static_assert(alignof(FStringAnimationAttribute) == 0x000008, "Wrong alignment on FStringAnimationAttribute"); \ +static_assert(sizeof(FStringAnimationAttribute) == 0x000010, "Wrong size on FStringAnimationAttribute"); \ +static_assert(offsetof(FStringAnimationAttribute, Value) == 0x000000, "Member 'FStringAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScalarParameterAtlasInstanceData \ +static_assert(alignof(FScalarParameterAtlasInstanceData) == 0x000008, "Wrong alignment on FScalarParameterAtlasInstanceData"); \ +static_assert(sizeof(FScalarParameterAtlasInstanceData) == 0x000058, "Wrong size on FScalarParameterAtlasInstanceData"); \ +static_assert(offsetof(FScalarParameterAtlasInstanceData, bIsUsedAsAtlasPosition) == 0x000000, "Member 'FScalarParameterAtlasInstanceData::bIsUsedAsAtlasPosition' has a wrong offset!"); \ +static_assert(offsetof(FScalarParameterAtlasInstanceData, Curve) == 0x000008, "Member 'FScalarParameterAtlasInstanceData::Curve' has a wrong offset!"); \ +static_assert(offsetof(FScalarParameterAtlasInstanceData, Atlas) == 0x000030, "Member 'FScalarParameterAtlasInstanceData::Atlas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformAnimationAttribute \ +static_assert(alignof(FTransformAnimationAttribute) == 0x000010, "Wrong alignment on FTransformAnimationAttribute"); \ +static_assert(sizeof(FTransformAnimationAttribute) == 0x000060, "Wrong size on FTransformAnimationAttribute"); \ +static_assert(offsetof(FTransformAnimationAttribute, Value) == 0x000000, "Member 'FTransformAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFractureEffect \ +static_assert(alignof(FFractureEffect) == 0x000008, "Wrong alignment on FFractureEffect"); \ +static_assert(sizeof(FFractureEffect) == 0x000010, "Wrong size on FFractureEffect"); \ +static_assert(offsetof(FFractureEffect, ParticleSystem) == 0x000000, "Member 'FFractureEffect::ParticleSystem' has a wrong offset!"); \ +static_assert(offsetof(FFractureEffect, Sound) == 0x000008, "Member 'FFractureEffect::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorAnimationAttribute \ +static_assert(alignof(FVectorAnimationAttribute) == 0x000008, "Wrong alignment on FVectorAnimationAttribute"); \ +static_assert(sizeof(FVectorAnimationAttribute) == 0x000018, "Wrong size on FVectorAnimationAttribute"); \ +static_assert(offsetof(FVectorAnimationAttribute, Value) == 0x000000, "Member 'FVectorAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuaternionAnimationAttribute \ +static_assert(alignof(FQuaternionAnimationAttribute) == 0x000010, "Wrong alignment on FQuaternionAnimationAttribute"); \ +static_assert(sizeof(FQuaternionAnimationAttribute) == 0x000020, "Wrong size on FQuaternionAnimationAttribute"); \ +static_assert(offsetof(FQuaternionAnimationAttribute, Value) == 0x000000, "Member 'FQuaternionAnimationAttribute::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshUVChannelInfo \ +static_assert(alignof(FMeshUVChannelInfo) == 0x000004, "Wrong alignment on FMeshUVChannelInfo"); \ +static_assert(sizeof(FMeshUVChannelInfo) == 0x000014, "Wrong size on FMeshUVChannelInfo"); \ +static_assert(offsetof(FMeshUVChannelInfo, bInitialized) == 0x000000, "Member 'FMeshUVChannelInfo::bInitialized' has a wrong offset!"); \ +static_assert(offsetof(FMeshUVChannelInfo, bOverrideDensities) == 0x000001, "Member 'FMeshUVChannelInfo::bOverrideDensities' has a wrong offset!"); \ +static_assert(offsetof(FMeshUVChannelInfo, LocalUVDensities) == 0x000004, "Member 'FMeshUVChannelInfo::LocalUVDensities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNonBlendableQuaternionAnimationAttribute \ +static_assert(alignof(FNonBlendableQuaternionAnimationAttribute) == 0x000010, "Wrong alignment on FNonBlendableQuaternionAnimationAttribute"); \ +static_assert(sizeof(FNonBlendableQuaternionAnimationAttribute) == 0x000020, "Wrong size on FNonBlendableQuaternionAnimationAttribute"); \ + +#define DUMPER7_ASSERTS_FEditorImportExportTestDefinition \ +static_assert(alignof(FEditorImportExportTestDefinition) == 0x000008, "Wrong alignment on FEditorImportExportTestDefinition"); \ +static_assert(sizeof(FEditorImportExportTestDefinition) == 0x000038, "Wrong size on FEditorImportExportTestDefinition"); \ +static_assert(offsetof(FEditorImportExportTestDefinition, ImportFilePath) == 0x000000, "Member 'FEditorImportExportTestDefinition::ImportFilePath' has a wrong offset!"); \ +static_assert(offsetof(FEditorImportExportTestDefinition, ExportFileExtension) == 0x000010, "Member 'FEditorImportExportTestDefinition::ExportFileExtension' has a wrong offset!"); \ +static_assert(offsetof(FEditorImportExportTestDefinition, bSkipExport) == 0x000020, "Member 'FEditorImportExportTestDefinition::bSkipExport' has a wrong offset!"); \ +static_assert(offsetof(FEditorImportExportTestDefinition, FactorySettings) == 0x000028, "Member 'FEditorImportExportTestDefinition::FactorySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNonBlendableVectorAnimationAttribute \ +static_assert(alignof(FNonBlendableVectorAnimationAttribute) == 0x000008, "Wrong alignment on FNonBlendableVectorAnimationAttribute"); \ +static_assert(sizeof(FNonBlendableVectorAnimationAttribute) == 0x000018, "Wrong size on FNonBlendableVectorAnimationAttribute"); \ + +#define DUMPER7_ASSERTS_FParticleRandomSeedInfo \ +static_assert(alignof(FParticleRandomSeedInfo) == 0x000008, "Wrong alignment on FParticleRandomSeedInfo"); \ +static_assert(sizeof(FParticleRandomSeedInfo) == 0x000020, "Wrong size on FParticleRandomSeedInfo"); \ +static_assert(offsetof(FParticleRandomSeedInfo, ParameterName) == 0x000000, "Member 'FParticleRandomSeedInfo::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FParticleRandomSeedInfo, RandomSeeds) == 0x000010, "Member 'FParticleRandomSeedInfo::RandomSeeds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNonBlendableTransformAnimationAttribute \ +static_assert(alignof(FNonBlendableTransformAnimationAttribute) == 0x000010, "Wrong alignment on FNonBlendableTransformAnimationAttribute"); \ +static_assert(sizeof(FNonBlendableTransformAnimationAttribute) == 0x000060, "Wrong size on FNonBlendableTransformAnimationAttribute"); \ + +#define DUMPER7_ASSERTS_FNavigationLinkBase \ +static_assert(alignof(FNavigationLinkBase) == 0x000008, "Wrong alignment on FNavigationLinkBase"); \ +static_assert(sizeof(FNavigationLinkBase) == 0x000040, "Wrong size on FNavigationLinkBase"); \ +static_assert(offsetof(FNavigationLinkBase, LeftProjectHeight) == 0x000000, "Member 'FNavigationLinkBase::LeftProjectHeight' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, MaxFallDownLength) == 0x000004, "Member 'FNavigationLinkBase::MaxFallDownLength' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, SnapRadius) == 0x000018, "Member 'FNavigationLinkBase::SnapRadius' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, SnapHeight) == 0x00001C, "Member 'FNavigationLinkBase::SnapHeight' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, SupportedAgents) == 0x000020, "Member 'FNavigationLinkBase::SupportedAgents' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, Direction) == 0x000028, "Member 'FNavigationLinkBase::Direction' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLinkBase, AreaClass) == 0x000030, "Member 'FNavigationLinkBase::AreaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNonBlendableIntegerAnimationAttribute \ +static_assert(alignof(FNonBlendableIntegerAnimationAttribute) == 0x000004, "Wrong alignment on FNonBlendableIntegerAnimationAttribute"); \ +static_assert(sizeof(FNonBlendableIntegerAnimationAttribute) == 0x000004, "Wrong size on FNonBlendableIntegerAnimationAttribute"); \ + +#define DUMPER7_ASSERTS_FMaterialInstanceCachedData \ +static_assert(alignof(FMaterialInstanceCachedData) == 0x000008, "Wrong alignment on FMaterialInstanceCachedData"); \ +static_assert(sizeof(FMaterialInstanceCachedData) == 0x000010, "Wrong size on FMaterialInstanceCachedData"); \ +static_assert(offsetof(FMaterialInstanceCachedData, ParentLayerIndexRemap) == 0x000000, "Member 'FMaterialInstanceCachedData::ParentLayerIndexRemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleBurst \ +static_assert(alignof(FParticleBurst) == 0x000004, "Wrong alignment on FParticleBurst"); \ +static_assert(sizeof(FParticleBurst) == 0x00000C, "Wrong size on FParticleBurst"); \ +static_assert(offsetof(FParticleBurst, Count) == 0x000000, "Member 'FParticleBurst::Count' has a wrong offset!"); \ +static_assert(offsetof(FParticleBurst, CountLow) == 0x000004, "Member 'FParticleBurst::CountLow' has a wrong offset!"); \ +static_assert(offsetof(FParticleBurst, Time) == 0x000008, "Member 'FParticleBurst::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicalAnimationData \ +static_assert(alignof(FPhysicalAnimationData) == 0x000004, "Wrong alignment on FPhysicalAnimationData"); \ +static_assert(sizeof(FPhysicalAnimationData) == 0x000024, "Wrong size on FPhysicalAnimationData"); \ +static_assert(offsetof(FPhysicalAnimationData, BodyName) == 0x000000, "Member 'FPhysicalAnimationData::BodyName' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, OrientationStrength) == 0x00000C, "Member 'FPhysicalAnimationData::OrientationStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, AngularVelocityStrength) == 0x000010, "Member 'FPhysicalAnimationData::AngularVelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, PositionStrength) == 0x000014, "Member 'FPhysicalAnimationData::PositionStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, VelocityStrength) == 0x000018, "Member 'FPhysicalAnimationData::VelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, MaxLinearForce) == 0x00001C, "Member 'FPhysicalAnimationData::MaxLinearForce' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationData, MaxAngularForce) == 0x000020, "Member 'FPhysicalAnimationData::MaxAngularForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicalAnimationProfile \ +static_assert(alignof(FPhysicalAnimationProfile) == 0x000004, "Wrong alignment on FPhysicalAnimationProfile"); \ +static_assert(sizeof(FPhysicalAnimationProfile) == 0x00002C, "Wrong size on FPhysicalAnimationProfile"); \ +static_assert(offsetof(FPhysicalAnimationProfile, ProfileName) == 0x000000, "Member 'FPhysicalAnimationProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalAnimationProfile, PhysicalAnimationData) == 0x000008, "Member 'FPhysicalAnimationProfile::PhysicalAnimationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextSizingParameters \ +static_assert(alignof(FTextSizingParameters) == 0x000008, "Wrong alignment on FTextSizingParameters"); \ +static_assert(sizeof(FTextSizingParameters) == 0x000038, "Wrong size on FTextSizingParameters"); \ +static_assert(offsetof(FTextSizingParameters, DrawX) == 0x000000, "Member 'FTextSizingParameters::DrawX' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, DrawY) == 0x000004, "Member 'FTextSizingParameters::DrawY' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, DrawXL) == 0x000008, "Member 'FTextSizingParameters::DrawXL' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, DrawYL) == 0x00000C, "Member 'FTextSizingParameters::DrawYL' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, Scaling) == 0x000010, "Member 'FTextSizingParameters::Scaling' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, DrawFont) == 0x000020, "Member 'FTextSizingParameters::DrawFont' has a wrong offset!"); \ +static_assert(offsetof(FTextSizingParameters, SpacingAdjust) == 0x000028, "Member 'FTextSizingParameters::SpacingAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGPUSpriteLocalVectorFieldInfo \ +static_assert(alignof(FGPUSpriteLocalVectorFieldInfo) == 0x000010, "Wrong alignment on FGPUSpriteLocalVectorFieldInfo"); \ +static_assert(sizeof(FGPUSpriteLocalVectorFieldInfo) == 0x0000D0, "Wrong size on FGPUSpriteLocalVectorFieldInfo"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, Field) == 0x000000, "Member 'FGPUSpriteLocalVectorFieldInfo::Field' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, Transform) == 0x000010, "Member 'FGPUSpriteLocalVectorFieldInfo::Transform' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, MinInitialRotation) == 0x000070, "Member 'FGPUSpriteLocalVectorFieldInfo::MinInitialRotation' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, MaxInitialRotation) == 0x000088, "Member 'FGPUSpriteLocalVectorFieldInfo::MaxInitialRotation' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, RotationRate) == 0x0000A0, "Member 'FGPUSpriteLocalVectorFieldInfo::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, Intensity) == 0x0000B8, "Member 'FGPUSpriteLocalVectorFieldInfo::Intensity' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteLocalVectorFieldInfo, Tightness) == 0x0000BC, "Member 'FGPUSpriteLocalVectorFieldInfo::Tightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRawDistributionVector \ +static_assert(alignof(FRawDistributionVector) == 0x000008, "Wrong alignment on FRawDistributionVector"); \ +static_assert(sizeof(FRawDistributionVector) == 0x000060, "Wrong size on FRawDistributionVector"); \ +static_assert(offsetof(FRawDistributionVector, MinValue) == 0x000020, "Member 'FRawDistributionVector::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionVector, MaxValue) == 0x000024, "Member 'FRawDistributionVector::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionVector, MinValueVec) == 0x000028, "Member 'FRawDistributionVector::MinValueVec' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionVector, MaxValueVec) == 0x000040, "Member 'FRawDistributionVector::MaxValueVec' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionVector, Distribution) == 0x000058, "Member 'FRawDistributionVector::Distribution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRawDistributionFloat \ +static_assert(alignof(FRawDistributionFloat) == 0x000008, "Wrong alignment on FRawDistributionFloat"); \ +static_assert(sizeof(FRawDistributionFloat) == 0x000030, "Wrong size on FRawDistributionFloat"); \ +static_assert(offsetof(FRawDistributionFloat, MinValue) == 0x000020, "Member 'FRawDistributionFloat::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionFloat, MaxValue) == 0x000024, "Member 'FRawDistributionFloat::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRawDistributionFloat, Distribution) == 0x000028, "Member 'FRawDistributionFloat::Distribution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGPUSpriteEmitterInfo \ +static_assert(alignof(FGPUSpriteEmitterInfo) == 0x000010, "Wrong alignment on FGPUSpriteEmitterInfo"); \ +static_assert(sizeof(FGPUSpriteEmitterInfo) == 0x000350, "Wrong size on FGPUSpriteEmitterInfo"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, RequiredModule) == 0x000000, "Member 'FGPUSpriteEmitterInfo::RequiredModule' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, SpawnModule) == 0x000008, "Member 'FGPUSpriteEmitterInfo::SpawnModule' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, SpawnPerUnitModule) == 0x000010, "Member 'FGPUSpriteEmitterInfo::SpawnPerUnitModule' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, SpawnModules) == 0x000018, "Member 'FGPUSpriteEmitterInfo::SpawnModules' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, LocalVectorField) == 0x000030, "Member 'FGPUSpriteEmitterInfo::LocalVectorField' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, VectorFieldScale) == 0x000100, "Member 'FGPUSpriteEmitterInfo::VectorFieldScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, DragCoefficient) == 0x000120, "Member 'FGPUSpriteEmitterInfo::DragCoefficient' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, PointAttractorStrength) == 0x000140, "Member 'FGPUSpriteEmitterInfo::PointAttractorStrength' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, Resilience) == 0x000160, "Member 'FGPUSpriteEmitterInfo::Resilience' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, ConstantAcceleration) == 0x000180, "Member 'FGPUSpriteEmitterInfo::ConstantAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, PointAttractorPosition) == 0x000198, "Member 'FGPUSpriteEmitterInfo::PointAttractorPosition' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, PointAttractorRadiusSq) == 0x0001B0, "Member 'FGPUSpriteEmitterInfo::PointAttractorRadiusSq' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, OrbitOffsetBase) == 0x0001B8, "Member 'FGPUSpriteEmitterInfo::OrbitOffsetBase' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, OrbitOffsetRange) == 0x0001D0, "Member 'FGPUSpriteEmitterInfo::OrbitOffsetRange' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, InvMaxSize) == 0x0001E8, "Member 'FGPUSpriteEmitterInfo::InvMaxSize' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, InvRotationRateScale) == 0x0001F8, "Member 'FGPUSpriteEmitterInfo::InvRotationRateScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, MaxLifetime) == 0x0001FC, "Member 'FGPUSpriteEmitterInfo::MaxLifetime' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, MaxParticleCount) == 0x000200, "Member 'FGPUSpriteEmitterInfo::MaxParticleCount' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, ScreenAlignment) == 0x000204, "Member 'FGPUSpriteEmitterInfo::ScreenAlignment' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, LockAxisFlag) == 0x000205, "Member 'FGPUSpriteEmitterInfo::LockAxisFlag' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, CollisionMode) == 0x00020C, "Member 'FGPUSpriteEmitterInfo::CollisionMode' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, MinFacingCameraBlendDistance) == 0x000214, "Member 'FGPUSpriteEmitterInfo::MinFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, MaxFacingCameraBlendDistance) == 0x000218, "Member 'FGPUSpriteEmitterInfo::MaxFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, DynamicColor) == 0x000220, "Member 'FGPUSpriteEmitterInfo::DynamicColor' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, DynamicAlpha) == 0x000280, "Member 'FGPUSpriteEmitterInfo::DynamicAlpha' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, DynamicColorScale) == 0x0002B0, "Member 'FGPUSpriteEmitterInfo::DynamicColorScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteEmitterInfo, DynamicAlphaScale) == 0x000310, "Member 'FGPUSpriteEmitterInfo::DynamicAlphaScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrappedStringElement \ +static_assert(alignof(FWrappedStringElement) == 0x000008, "Wrong alignment on FWrappedStringElement"); \ +static_assert(sizeof(FWrappedStringElement) == 0x000020, "Wrong size on FWrappedStringElement"); \ +static_assert(offsetof(FWrappedStringElement, Value) == 0x000000, "Member 'FWrappedStringElement::Value' has a wrong offset!"); \ +static_assert(offsetof(FWrappedStringElement, LineExtent) == 0x000010, "Member 'FWrappedStringElement::LineExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomAttributeSetting \ +static_assert(alignof(FCustomAttributeSetting) == 0x000008, "Wrong alignment on FCustomAttributeSetting"); \ +static_assert(sizeof(FCustomAttributeSetting) == 0x000020, "Wrong size on FCustomAttributeSetting"); \ +static_assert(offsetof(FCustomAttributeSetting, Name) == 0x000000, "Member 'FCustomAttributeSetting::Name' has a wrong offset!"); \ +static_assert(offsetof(FCustomAttributeSetting, Meaning) == 0x000010, "Member 'FCustomAttributeSetting::Meaning' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPacketSimulationSettings \ +static_assert(alignof(FPacketSimulationSettings) == 0x000004, "Wrong alignment on FPacketSimulationSettings"); \ +static_assert(sizeof(FPacketSimulationSettings) == 0x000034, "Wrong size on FPacketSimulationSettings"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLoss) == 0x000000, "Member 'FPacketSimulationSettings::PktLoss' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLossMaxSize) == 0x000004, "Member 'FPacketSimulationSettings::PktLossMaxSize' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLossMinSize) == 0x000008, "Member 'FPacketSimulationSettings::PktLossMinSize' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktOrder) == 0x00000C, "Member 'FPacketSimulationSettings::PktOrder' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktDup) == 0x000010, "Member 'FPacketSimulationSettings::PktDup' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLag) == 0x000014, "Member 'FPacketSimulationSettings::PktLag' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLagVariance) == 0x000018, "Member 'FPacketSimulationSettings::PktLagVariance' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLagMin) == 0x00001C, "Member 'FPacketSimulationSettings::PktLagMin' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktLagMax) == 0x000020, "Member 'FPacketSimulationSettings::PktLagMax' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktIncomingLagMin) == 0x000024, "Member 'FPacketSimulationSettings::PktIncomingLagMin' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktIncomingLagMax) == 0x000028, "Member 'FPacketSimulationSettings::PktIncomingLagMax' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktIncomingLoss) == 0x00002C, "Member 'FPacketSimulationSettings::PktIncomingLoss' has a wrong offset!"); \ +static_assert(offsetof(FPacketSimulationSettings, PktJitter) == 0x000030, "Member 'FPacketSimulationSettings::PktJitter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomAttribute \ +static_assert(alignof(FCustomAttribute) == 0x000001, "Wrong alignment on FCustomAttribute"); \ +static_assert(sizeof(FCustomAttribute) == 0x000001, "Wrong size on FCustomAttribute"); \ + +#define DUMPER7_ASSERTS_FNavigationSegmentLink \ +static_assert(alignof(FNavigationSegmentLink) == 0x000008, "Wrong alignment on FNavigationSegmentLink"); \ +static_assert(sizeof(FNavigationSegmentLink) == 0x0000A0, "Wrong size on FNavigationSegmentLink"); \ +static_assert(offsetof(FNavigationSegmentLink, LeftStart) == 0x000040, "Member 'FNavigationSegmentLink::LeftStart' has a wrong offset!"); \ +static_assert(offsetof(FNavigationSegmentLink, LeftEnd) == 0x000058, "Member 'FNavigationSegmentLink::LeftEnd' has a wrong offset!"); \ +static_assert(offsetof(FNavigationSegmentLink, RightStart) == 0x000070, "Member 'FNavigationSegmentLink::RightStart' has a wrong offset!"); \ +static_assert(offsetof(FNavigationSegmentLink, RightEnd) == 0x000088, "Member 'FNavigationSegmentLink::RightEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomAttributePerBoneData \ +static_assert(alignof(FCustomAttributePerBoneData) == 0x000001, "Wrong alignment on FCustomAttributePerBoneData"); \ +static_assert(sizeof(FCustomAttributePerBoneData) == 0x000001, "Wrong size on FCustomAttributePerBoneData"); \ + +#define DUMPER7_ASSERTS_FBakedStringCustomAttribute \ +static_assert(alignof(FBakedStringCustomAttribute) == 0x000001, "Wrong alignment on FBakedStringCustomAttribute"); \ +static_assert(sizeof(FBakedStringCustomAttribute) == 0x000001, "Wrong size on FBakedStringCustomAttribute"); \ + +#define DUMPER7_ASSERTS_FBeamTargetData \ +static_assert(alignof(FBeamTargetData) == 0x000004, "Wrong alignment on FBeamTargetData"); \ +static_assert(sizeof(FBeamTargetData) == 0x00000C, "Wrong size on FBeamTargetData"); \ +static_assert(offsetof(FBeamTargetData, TargetName) == 0x000000, "Member 'FBeamTargetData::TargetName' has a wrong offset!"); \ +static_assert(offsetof(FBeamTargetData, TargetPercentage) == 0x000008, "Member 'FBeamTargetData::TargetPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakedIntegerCustomAttribute \ +static_assert(alignof(FBakedIntegerCustomAttribute) == 0x000001, "Wrong alignment on FBakedIntegerCustomAttribute"); \ +static_assert(sizeof(FBakedIntegerCustomAttribute) == 0x000001, "Wrong size on FBakedIntegerCustomAttribute"); \ + +#define DUMPER7_ASSERTS_FParticleSystemReplayFrame \ +static_assert(alignof(FParticleSystemReplayFrame) == 0x000008, "Wrong alignment on FParticleSystemReplayFrame"); \ +static_assert(sizeof(FParticleSystemReplayFrame) == 0x000010, "Wrong size on FParticleSystemReplayFrame"); \ + +#define DUMPER7_ASSERTS_FBakedCustomAttributePerBoneData \ +static_assert(alignof(FBakedCustomAttributePerBoneData) == 0x000001, "Wrong alignment on FBakedCustomAttributePerBoneData"); \ +static_assert(sizeof(FBakedCustomAttributePerBoneData) == 0x000001, "Wrong size on FBakedCustomAttributePerBoneData"); \ + +#define DUMPER7_ASSERTS_FDebugDisplayProperty \ +static_assert(alignof(FDebugDisplayProperty) == 0x000008, "Wrong alignment on FDebugDisplayProperty"); \ +static_assert(sizeof(FDebugDisplayProperty) == 0x000020, "Wrong size on FDebugDisplayProperty"); \ +static_assert(offsetof(FDebugDisplayProperty, Obj) == 0x000000, "Member 'FDebugDisplayProperty::Obj' has a wrong offset!"); \ +static_assert(offsetof(FDebugDisplayProperty, WithinClass) == 0x000008, "Member 'FDebugDisplayProperty::WithinClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleSystemLOD \ +static_assert(alignof(FParticleSystemLOD) == 0x000001, "Wrong alignment on FParticleSystemLOD"); \ +static_assert(sizeof(FParticleSystemLOD) == 0x000001, "Wrong size on FParticleSystemLOD"); \ + +#define DUMPER7_ASSERTS_FSoundModulationDestinationSettings \ +static_assert(alignof(FSoundModulationDestinationSettings) == 0x000008, "Wrong alignment on FSoundModulationDestinationSettings"); \ +static_assert(sizeof(FSoundModulationDestinationSettings) == 0x000058, "Wrong size on FSoundModulationDestinationSettings"); \ +static_assert(offsetof(FSoundModulationDestinationSettings, Value) == 0x000000, "Member 'FSoundModulationDestinationSettings::Value' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDestinationSettings, Modulators) == 0x000008, "Member 'FSoundModulationDestinationSettings::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundModulationDefaultSettings \ +static_assert(alignof(FSoundModulationDefaultSettings) == 0x000008, "Wrong alignment on FSoundModulationDefaultSettings"); \ +static_assert(sizeof(FSoundModulationDefaultSettings) == 0x000160, "Wrong size on FSoundModulationDefaultSettings"); \ +static_assert(offsetof(FSoundModulationDefaultSettings, VolumeModulationDestination) == 0x000000, "Member 'FSoundModulationDefaultSettings::VolumeModulationDestination' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultSettings, PitchModulationDestination) == 0x000058, "Member 'FSoundModulationDefaultSettings::PitchModulationDestination' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultSettings, HighpassModulationDestination) == 0x0000B0, "Member 'FSoundModulationDefaultSettings::HighpassModulationDestination' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultSettings, LowpassModulationDestination) == 0x000108, "Member 'FSoundModulationDefaultSettings::LowpassModulationDestination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOrbitOptions \ +static_assert(alignof(FOrbitOptions) == 0x000004, "Wrong alignment on FOrbitOptions"); \ +static_assert(sizeof(FOrbitOptions) == 0x000004, "Wrong size on FOrbitOptions"); \ + +#define DUMPER7_ASSERTS_FEdGraphPinReference \ +static_assert(alignof(FEdGraphPinReference) == 0x000004, "Wrong alignment on FEdGraphPinReference"); \ +static_assert(sizeof(FEdGraphPinReference) == 0x000018, "Wrong size on FEdGraphPinReference"); \ +static_assert(offsetof(FEdGraphPinReference, OwningNode) == 0x000000, "Member 'FEdGraphPinReference::OwningNode' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphPinReference, PinId) == 0x000008, "Member 'FEdGraphPinReference::PinId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEdGraphSchemaAction \ +static_assert(alignof(FEdGraphSchemaAction) == 0x000008, "Wrong alignment on FEdGraphSchemaAction"); \ +static_assert(sizeof(FEdGraphSchemaAction) == 0x000100, "Wrong size on FEdGraphSchemaAction"); \ +static_assert(offsetof(FEdGraphSchemaAction, MenuDescription) == 0x000008, "Member 'FEdGraphSchemaAction::MenuDescription' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, TooltipDescription) == 0x000020, "Member 'FEdGraphSchemaAction::TooltipDescription' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, Category) == 0x000038, "Member 'FEdGraphSchemaAction::Category' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, Keywords) == 0x000050, "Member 'FEdGraphSchemaAction::Keywords' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, Grouping) == 0x000068, "Member 'FEdGraphSchemaAction::Grouping' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, SectionID) == 0x00006C, "Member 'FEdGraphSchemaAction::SectionID' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, MenuDescriptionArray) == 0x000070, "Member 'FEdGraphSchemaAction::MenuDescriptionArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, FullSearchTitlesArray) == 0x000080, "Member 'FEdGraphSchemaAction::FullSearchTitlesArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, FullSearchKeywordsArray) == 0x000090, "Member 'FEdGraphSchemaAction::FullSearchKeywordsArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, FullSearchCategoryArray) == 0x0000A0, "Member 'FEdGraphSchemaAction::FullSearchCategoryArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, LocalizedMenuDescriptionArray) == 0x0000B0, "Member 'FEdGraphSchemaAction::LocalizedMenuDescriptionArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, LocalizedFullSearchTitlesArray) == 0x0000C0, "Member 'FEdGraphSchemaAction::LocalizedFullSearchTitlesArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, LocalizedFullSearchKeywordsArray) == 0x0000D0, "Member 'FEdGraphSchemaAction::LocalizedFullSearchKeywordsArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, LocalizedFullSearchCategoryArray) == 0x0000E0, "Member 'FEdGraphSchemaAction::LocalizedFullSearchCategoryArray' has a wrong offset!"); \ +static_assert(offsetof(FEdGraphSchemaAction, SearchText) == 0x0000F0, "Member 'FEdGraphSchemaAction::SearchText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEdGraphSchemaAction_NewNode \ +static_assert(alignof(FEdGraphSchemaAction_NewNode) == 0x000008, "Wrong alignment on FEdGraphSchemaAction_NewNode"); \ +static_assert(sizeof(FEdGraphSchemaAction_NewNode) == 0x000108, "Wrong size on FEdGraphSchemaAction_NewNode"); \ +static_assert(offsetof(FEdGraphSchemaAction_NewNode, NodeTemplate) == 0x000100, "Member 'FEdGraphSchemaAction_NewNode::NodeTemplate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRollbackNetStartupActorInfo \ +static_assert(alignof(FRollbackNetStartupActorInfo) == 0x000008, "Wrong alignment on FRollbackNetStartupActorInfo"); \ +static_assert(sizeof(FRollbackNetStartupActorInfo) == 0x0000D0, "Wrong size on FRollbackNetStartupActorInfo"); \ +static_assert(offsetof(FRollbackNetStartupActorInfo, Archetype) == 0x000008, "Member 'FRollbackNetStartupActorInfo::Archetype' has a wrong offset!"); \ +static_assert(offsetof(FRollbackNetStartupActorInfo, ObjReferences) == 0x0000C0, "Member 'FRollbackNetStartupActorInfo::ObjReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelStreamingStatus \ +static_assert(alignof(FLevelStreamingStatus) == 0x000004, "Wrong alignment on FLevelStreamingStatus"); \ +static_assert(sizeof(FLevelStreamingStatus) == 0x000010, "Wrong size on FLevelStreamingStatus"); \ +static_assert(offsetof(FLevelStreamingStatus, PackageName) == 0x000000, "Member 'FLevelStreamingStatus::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FLevelStreamingStatus, LODIndex) == 0x00000C, "Member 'FLevelStreamingStatus::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIrisNetDriverConfig \ +static_assert(alignof(FIrisNetDriverConfig) == 0x000008, "Wrong alignment on FIrisNetDriverConfig"); \ +static_assert(sizeof(FIrisNetDriverConfig) == 0x000028, "Wrong size on FIrisNetDriverConfig"); \ +static_assert(offsetof(FIrisNetDriverConfig, NetDriverDefinition) == 0x000000, "Member 'FIrisNetDriverConfig::NetDriverDefinition' has a wrong offset!"); \ +static_assert(offsetof(FIrisNetDriverConfig, NetDriverName) == 0x000008, "Member 'FIrisNetDriverConfig::NetDriverName' has a wrong offset!"); \ +static_assert(offsetof(FIrisNetDriverConfig, NetDriverWildcardName) == 0x000010, "Member 'FIrisNetDriverConfig::NetDriverWildcardName' has a wrong offset!"); \ +static_assert(offsetof(FIrisNetDriverConfig, bCanUseIris) == 0x000020, "Member 'FIrisNetDriverConfig::bCanUseIris' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedNetDriver \ +static_assert(alignof(FNamedNetDriver) == 0x000008, "Wrong alignment on FNamedNetDriver"); \ +static_assert(sizeof(FNamedNetDriver) == 0x000010, "Wrong size on FNamedNetDriver"); \ +static_assert(offsetof(FNamedNetDriver, NetDriver) == 0x000000, "Member 'FNamedNetDriver::NetDriver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaintedVertex \ +static_assert(alignof(FPaintedVertex) == 0x000010, "Wrong alignment on FPaintedVertex"); \ +static_assert(sizeof(FPaintedVertex) == 0x000040, "Wrong size on FPaintedVertex"); \ +static_assert(offsetof(FPaintedVertex, Position) == 0x000000, "Member 'FPaintedVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(FPaintedVertex, Color) == 0x000018, "Member 'FPaintedVertex::Color' has a wrong offset!"); \ +static_assert(offsetof(FPaintedVertex, Normal) == 0x000020, "Member 'FPaintedVertex::Normal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldContext \ +static_assert(alignof(FWorldContext) == 0x000008, "Wrong alignment on FWorldContext"); \ +static_assert(sizeof(FWorldContext) == 0x000240, "Wrong size on FWorldContext"); \ +static_assert(offsetof(FWorldContext, LastURL) == 0x000038, "Member 'FWorldContext::LastURL' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, LastRemoteURL) == 0x0000A0, "Member 'FWorldContext::LastRemoteURL' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, PendingNetGame) == 0x000108, "Member 'FWorldContext::PendingNetGame' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, PackagesToFullyLoad) == 0x000110, "Member 'FWorldContext::PackagesToFullyLoad' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, LoadedLevelsForPendingMapChange) == 0x000130, "Member 'FWorldContext::LoadedLevelsForPendingMapChange' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, ObjectReferencers) == 0x000158, "Member 'FWorldContext::ObjectReferencers' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, PendingLevelStreamingStatusUpdates) == 0x000168, "Member 'FWorldContext::PendingLevelStreamingStatusUpdates' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, GameViewport) == 0x000178, "Member 'FWorldContext::GameViewport' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, OwningGameInstance) == 0x000180, "Member 'FWorldContext::OwningGameInstance' has a wrong offset!"); \ +static_assert(offsetof(FWorldContext, ActiveNetDrivers) == 0x000188, "Member 'FWorldContext::ActiveNetDrivers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructD \ +static_assert(alignof(FDPMatchingRulestructD) == 0x000008, "Wrong alignment on FDPMatchingRulestructD"); \ +static_assert(sizeof(FDPMatchingRulestructD) == 0x000068, "Wrong size on FDPMatchingRulestructD"); \ +static_assert(offsetof(FDPMatchingRulestructD, OnTrue) == 0x000048, "Member 'FDPMatchingRulestructD::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructD, OnFalse) == 0x000058, "Member 'FDPMatchingRulestructD::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDropNoteInfo \ +static_assert(alignof(FDropNoteInfo) == 0x000008, "Wrong alignment on FDropNoteInfo"); \ +static_assert(sizeof(FDropNoteInfo) == 0x000040, "Wrong size on FDropNoteInfo"); \ +static_assert(offsetof(FDropNoteInfo, Location) == 0x000000, "Member 'FDropNoteInfo::Location' has a wrong offset!"); \ +static_assert(offsetof(FDropNoteInfo, Rotation) == 0x000018, "Member 'FDropNoteInfo::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FDropNoteInfo, Comment) == 0x000030, "Member 'FDropNoteInfo::Comment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScreenMessageString \ +static_assert(alignof(FScreenMessageString) == 0x000008, "Wrong alignment on FScreenMessageString"); \ +static_assert(sizeof(FScreenMessageString) == 0x000038, "Wrong size on FScreenMessageString"); \ +static_assert(offsetof(FScreenMessageString, Key) == 0x000000, "Member 'FScreenMessageString::Key' has a wrong offset!"); \ +static_assert(offsetof(FScreenMessageString, ScreenMessage) == 0x000008, "Member 'FScreenMessageString::ScreenMessage' has a wrong offset!"); \ +static_assert(offsetof(FScreenMessageString, DisplayColor) == 0x000018, "Member 'FScreenMessageString::DisplayColor' has a wrong offset!"); \ +static_assert(offsetof(FScreenMessageString, TimeToDisplay) == 0x00001C, "Member 'FScreenMessageString::TimeToDisplay' has a wrong offset!"); \ +static_assert(offsetof(FScreenMessageString, CurrentTimeDisplayed) == 0x000020, "Member 'FScreenMessageString::CurrentTimeDisplayed' has a wrong offset!"); \ +static_assert(offsetof(FScreenMessageString, TextScale) == 0x000028, "Member 'FScreenMessageString::TextScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameNameRedirect \ +static_assert(alignof(FGameNameRedirect) == 0x000004, "Wrong alignment on FGameNameRedirect"); \ +static_assert(sizeof(FGameNameRedirect) == 0x000010, "Wrong size on FGameNameRedirect"); \ +static_assert(offsetof(FGameNameRedirect, OldGameName) == 0x000000, "Member 'FGameNameRedirect::OldGameName' has a wrong offset!"); \ +static_assert(offsetof(FGameNameRedirect, NewGameName) == 0x000008, "Member 'FGameNameRedirect::NewGameName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHLODProxyMesh \ +static_assert(alignof(FHLODProxyMesh) == 0x000008, "Wrong alignment on FHLODProxyMesh"); \ +static_assert(sizeof(FHLODProxyMesh) == 0x000028, "Wrong size on FHLODProxyMesh"); \ +static_assert(offsetof(FHLODProxyMesh, LODActor) == 0x000000, "Member 'FHLODProxyMesh::LODActor' has a wrong offset!"); \ +static_assert(offsetof(FHLODProxyMesh, StaticMesh) == 0x000018, "Member 'FHLODProxyMesh::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FHLODProxyMesh, Key) == 0x000020, "Member 'FHLODProxyMesh::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructRedirect \ +static_assert(alignof(FStructRedirect) == 0x000004, "Wrong alignment on FStructRedirect"); \ +static_assert(sizeof(FStructRedirect) == 0x000010, "Wrong size on FStructRedirect"); \ +static_assert(offsetof(FStructRedirect, OldStructName) == 0x000000, "Member 'FStructRedirect::OldStructName' has a wrong offset!"); \ +static_assert(offsetof(FStructRedirect, NewStructName) == 0x000008, "Member 'FStructRedirect::NewStructName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigidBodyErrorCorrection \ +static_assert(alignof(FRigidBodyErrorCorrection) == 0x000004, "Wrong alignment on FRigidBodyErrorCorrection"); \ +static_assert(sizeof(FRigidBodyErrorCorrection) == 0x000034, "Wrong size on FRigidBodyErrorCorrection"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, PingExtrapolation) == 0x000000, "Member 'FRigidBodyErrorCorrection::PingExtrapolation' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, PingLimit) == 0x000004, "Member 'FRigidBodyErrorCorrection::PingLimit' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, ErrorPerLinearDifference) == 0x000008, "Member 'FRigidBodyErrorCorrection::ErrorPerLinearDifference' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, ErrorPerAngularDifference) == 0x00000C, "Member 'FRigidBodyErrorCorrection::ErrorPerAngularDifference' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, MaxRestoredStateError) == 0x000010, "Member 'FRigidBodyErrorCorrection::MaxRestoredStateError' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, MaxLinearHardSnapDistance) == 0x000014, "Member 'FRigidBodyErrorCorrection::MaxLinearHardSnapDistance' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, PositionLerp) == 0x000018, "Member 'FRigidBodyErrorCorrection::PositionLerp' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, AngleLerp) == 0x00001C, "Member 'FRigidBodyErrorCorrection::AngleLerp' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, LinearVelocityCoefficient) == 0x000020, "Member 'FRigidBodyErrorCorrection::LinearVelocityCoefficient' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, AngularVelocityCoefficient) == 0x000024, "Member 'FRigidBodyErrorCorrection::AngularVelocityCoefficient' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, ErrorAccumulationSeconds) == 0x000028, "Member 'FRigidBodyErrorCorrection::ErrorAccumulationSeconds' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, ErrorAccumulationDistanceSq) == 0x00002C, "Member 'FRigidBodyErrorCorrection::ErrorAccumulationDistanceSq' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyErrorCorrection, ErrorAccumulationSimilarity) == 0x000030, "Member 'FRigidBodyErrorCorrection::ErrorAccumulationSimilarity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputTouchDelegateBinding \ +static_assert(alignof(FBlueprintInputTouchDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintInputTouchDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputTouchDelegateBinding) == 0x000010, "Wrong size on FBlueprintInputTouchDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputTouchDelegateBinding, InputKeyEvent) == 0x000004, "Member 'FBlueprintInputTouchDelegateBinding::InputKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputTouchDelegateBinding, FunctionNameToBind) == 0x000008, "Member 'FBlueprintInputTouchDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionImpactData \ +static_assert(alignof(FCollisionImpactData) == 0x000008, "Wrong alignment on FCollisionImpactData"); \ +static_assert(sizeof(FCollisionImpactData) == 0x000048, "Wrong size on FCollisionImpactData"); \ +static_assert(offsetof(FCollisionImpactData, ContactInfos) == 0x000000, "Member 'FCollisionImpactData::ContactInfos' has a wrong offset!"); \ +static_assert(offsetof(FCollisionImpactData, TotalNormalImpulse) == 0x000010, "Member 'FCollisionImpactData::TotalNormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(FCollisionImpactData, TotalFrictionImpulse) == 0x000028, "Member 'FCollisionImpactData::TotalFrictionImpulse' has a wrong offset!"); \ +static_assert(offsetof(FCollisionImpactData, bIsVelocityDeltaUnderThreshold) == 0x000040, "Member 'FCollisionImpactData::bIsVelocityDeltaUnderThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBasedPosition \ +static_assert(alignof(FBasedPosition) == 0x000008, "Wrong alignment on FBasedPosition"); \ +static_assert(sizeof(FBasedPosition) == 0x000068, "Wrong size on FBasedPosition"); \ +static_assert(offsetof(FBasedPosition, base) == 0x000000, "Member 'FBasedPosition::base' has a wrong offset!"); \ +static_assert(offsetof(FBasedPosition, Position) == 0x000008, "Member 'FBasedPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(FBasedPosition, CachedBaseLocation) == 0x000020, "Member 'FBasedPosition::CachedBaseLocation' has a wrong offset!"); \ +static_assert(offsetof(FBasedPosition, CachedBaseRotation) == 0x000038, "Member 'FBasedPosition::CachedBaseRotation' has a wrong offset!"); \ +static_assert(offsetof(FBasedPosition, CachedTransPosition) == 0x000050, "Member 'FBasedPosition::CachedTransPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharacterMovementComponentPrePhysicsTickFunction \ +static_assert(alignof(FCharacterMovementComponentPrePhysicsTickFunction) == 0x000008, "Wrong alignment on FCharacterMovementComponentPrePhysicsTickFunction"); \ +static_assert(sizeof(FCharacterMovementComponentPrePhysicsTickFunction) == 0x000030, "Wrong size on FCharacterMovementComponentPrePhysicsTickFunction"); \ + +#define DUMPER7_ASSERTS_FLightmassPointLightSettings \ +static_assert(alignof(FLightmassPointLightSettings) == 0x000004, "Wrong alignment on FLightmassPointLightSettings"); \ +static_assert(sizeof(FLightmassPointLightSettings) == 0x00000C, "Wrong size on FLightmassPointLightSettings"); \ + +#define DUMPER7_ASSERTS_FLightmassPrimitiveSettings \ +static_assert(alignof(FLightmassPrimitiveSettings) == 0x000004, "Wrong alignment on FLightmassPrimitiveSettings"); \ +static_assert(sizeof(FLightmassPrimitiveSettings) == 0x000018, "Wrong size on FLightmassPrimitiveSettings"); \ +static_assert(offsetof(FLightmassPrimitiveSettings, EmissiveLightFalloffExponent) == 0x000004, "Member 'FLightmassPrimitiveSettings::EmissiveLightFalloffExponent' has a wrong offset!"); \ +static_assert(offsetof(FLightmassPrimitiveSettings, EmissiveLightExplicitInfluenceRadius) == 0x000008, "Member 'FLightmassPrimitiveSettings::EmissiveLightExplicitInfluenceRadius' has a wrong offset!"); \ +static_assert(offsetof(FLightmassPrimitiveSettings, EmissiveBoost) == 0x00000C, "Member 'FLightmassPrimitiveSettings::EmissiveBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassPrimitiveSettings, DiffuseBoost) == 0x000010, "Member 'FLightmassPrimitiveSettings::DiffuseBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassPrimitiveSettings, FullyOccludedSamplesFraction) == 0x000014, "Member 'FLightmassPrimitiveSettings::FullyOccludedSamplesFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMComponentDescriptorBase \ +static_assert(alignof(FISMComponentDescriptorBase) == 0x000008, "Wrong alignment on FISMComponentDescriptorBase"); \ +static_assert(sizeof(FISMComponentDescriptorBase) == 0x0001D8, "Wrong size on FISMComponentDescriptorBase"); \ +static_assert(offsetof(FISMComponentDescriptorBase, Hash) == 0x000000, "Member 'FISMComponentDescriptorBase::Hash' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, ComponentClass) == 0x000008, "Member 'FISMComponentDescriptorBase::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, Mobility) == 0x000010, "Member 'FISMComponentDescriptorBase::Mobility' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, VirtualTextureRenderPassType) == 0x000011, "Member 'FISMComponentDescriptorBase::VirtualTextureRenderPassType' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, LightmapType) == 0x000012, "Member 'FISMComponentDescriptorBase::LightmapType' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, LightingChannels) == 0x000013, "Member 'FISMComponentDescriptorBase::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, RayTracingGroupId) == 0x000014, "Member 'FISMComponentDescriptorBase::RayTracingGroupId' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, RayTracingGroupCullingPriority) == 0x000018, "Member 'FISMComponentDescriptorBase::RayTracingGroupCullingPriority' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, bHasCustomNavigableGeometry) == 0x000019, "Member 'FISMComponentDescriptorBase::bHasCustomNavigableGeometry' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, CustomDepthStencilWriteMask) == 0x00001A, "Member 'FISMComponentDescriptorBase::CustomDepthStencilWriteMask' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, BodyInstance) == 0x000020, "Member 'FISMComponentDescriptorBase::BodyInstance' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, InstanceStartCullDistance) == 0x0001B0, "Member 'FISMComponentDescriptorBase::InstanceStartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, InstanceEndCullDistance) == 0x0001B4, "Member 'FISMComponentDescriptorBase::InstanceEndCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, InstanceLODDistanceScale) == 0x0001B8, "Member 'FISMComponentDescriptorBase::InstanceLODDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, VirtualTextureCullMips) == 0x0001BC, "Member 'FISMComponentDescriptorBase::VirtualTextureCullMips' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, TranslucencySortPriority) == 0x0001C0, "Member 'FISMComponentDescriptorBase::TranslucencySortPriority' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, OverriddenLightMapRes) == 0x0001C4, "Member 'FISMComponentDescriptorBase::OverriddenLightMapRes' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, CustomDepthStencilValue) == 0x0001C8, "Member 'FISMComponentDescriptorBase::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, WorldPositionOffsetDisableDistance) == 0x0001D0, "Member 'FISMComponentDescriptorBase::WorldPositionOffsetDisableDistance' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, ShadowCacheInvalidationBehavior) == 0x0001D4, "Member 'FISMComponentDescriptorBase::ShadowCacheInvalidationBehavior' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptorBase, DetailMode) == 0x0001D5, "Member 'FISMComponentDescriptorBase::DetailMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMComponentDescriptor \ +static_assert(alignof(FISMComponentDescriptor) == 0x000008, "Wrong alignment on FISMComponentDescriptor"); \ +static_assert(sizeof(FISMComponentDescriptor) == 0x000208, "Wrong size on FISMComponentDescriptor"); \ +static_assert(offsetof(FISMComponentDescriptor, StaticMesh) == 0x0001D8, "Member 'FISMComponentDescriptor::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptor, OverrideMaterials) == 0x0001E0, "Member 'FISMComponentDescriptor::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptor, OverlayMaterial) == 0x0001F0, "Member 'FISMComponentDescriptor::OverlayMaterial' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentDescriptor, RuntimeVirtualTextures) == 0x0001F8, "Member 'FISMComponentDescriptor::RuntimeVirtualTextures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSwarmDebugOptions \ +static_assert(alignof(FSwarmDebugOptions) == 0x000004, "Wrong alignment on FSwarmDebugOptions"); \ +static_assert(sizeof(FSwarmDebugOptions) == 0x000004, "Wrong size on FSwarmDebugOptions"); \ + +#define DUMPER7_ASSERTS_FAnimSlotDesc \ +static_assert(alignof(FAnimSlotDesc) == 0x000004, "Wrong alignment on FAnimSlotDesc"); \ +static_assert(sizeof(FAnimSlotDesc) == 0x00000C, "Wrong size on FAnimSlotDesc"); \ +static_assert(offsetof(FAnimSlotDesc, SlotName) == 0x000000, "Member 'FAnimSlotDesc::SlotName' has a wrong offset!"); \ +static_assert(offsetof(FAnimSlotDesc, NumChannels) == 0x000008, "Member 'FAnimSlotDesc::NumChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNameMapping \ +static_assert(alignof(FNameMapping) == 0x000004, "Wrong alignment on FNameMapping"); \ +static_assert(sizeof(FNameMapping) == 0x000010, "Wrong size on FNameMapping"); \ +static_assert(offsetof(FNameMapping, NodeName) == 0x000000, "Member 'FNameMapping::NodeName' has a wrong offset!"); \ +static_assert(offsetof(FNameMapping, BoneName) == 0x000008, "Member 'FNameMapping::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPOV \ +static_assert(alignof(FPOV) == 0x000008, "Wrong alignment on FPOV"); \ +static_assert(sizeof(FPOV) == 0x000038, "Wrong size on FPOV"); \ +static_assert(offsetof(FPOV, Location) == 0x000000, "Member 'FPOV::Location' has a wrong offset!"); \ +static_assert(offsetof(FPOV, Rotation) == 0x000018, "Member 'FPOV::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FPOV, FOV) == 0x000030, "Member 'FPOV::FOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstrainComponentPropName \ +static_assert(alignof(FConstrainComponentPropName) == 0x000004, "Wrong alignment on FConstrainComponentPropName"); \ +static_assert(sizeof(FConstrainComponentPropName) == 0x000008, "Wrong size on FConstrainComponentPropName"); \ +static_assert(offsetof(FConstrainComponentPropName, ComponentName) == 0x000000, "Member 'FConstrainComponentPropName::ComponentName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartName \ +static_assert(alignof(FSmartName) == 0x000004, "Wrong alignment on FSmartName"); \ +static_assert(sizeof(FSmartName) == 0x00000C, "Wrong size on FSmartName"); \ +static_assert(offsetof(FSmartName, DisplayName) == 0x000000, "Member 'FSmartName::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRedirector \ +static_assert(alignof(FRedirector) == 0x000004, "Wrong alignment on FRedirector"); \ +static_assert(sizeof(FRedirector) == 0x000010, "Wrong size on FRedirector"); \ +static_assert(offsetof(FRedirector, OldName) == 0x000000, "Member 'FRedirector::OldName' has a wrong offset!"); \ +static_assert(offsetof(FRedirector, NewName) == 0x000008, "Member 'FRedirector::NewName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFontRenderInfo \ +static_assert(alignof(FFontRenderInfo) == 0x000008, "Wrong alignment on FFontRenderInfo"); \ +static_assert(sizeof(FFontRenderInfo) == 0x000040, "Wrong size on FFontRenderInfo"); \ +static_assert(offsetof(FFontRenderInfo, GlowInfo) == 0x000008, "Member 'FFontRenderInfo::GlowInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorComponentInstanceSourceInfo \ +static_assert(alignof(FActorComponentInstanceSourceInfo) == 0x000008, "Wrong alignment on FActorComponentInstanceSourceInfo"); \ +static_assert(sizeof(FActorComponentInstanceSourceInfo) == 0x000010, "Wrong size on FActorComponentInstanceSourceInfo"); \ +static_assert(offsetof(FActorComponentInstanceSourceInfo, SourceComponentTemplate) == 0x000000, "Member 'FActorComponentInstanceSourceInfo::SourceComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(FActorComponentInstanceSourceInfo, SourceComponentCreationMethod) == 0x000008, "Member 'FActorComponentInstanceSourceInfo::SourceComponentCreationMethod' has a wrong offset!"); \ +static_assert(offsetof(FActorComponentInstanceSourceInfo, SourceComponentTypeSerializedIndex) == 0x00000C, "Member 'FActorComponentInstanceSourceInfo::SourceComponentTypeSerializedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExponentialHeightFogData \ +static_assert(alignof(FExponentialHeightFogData) == 0x000004, "Wrong alignment on FExponentialHeightFogData"); \ +static_assert(sizeof(FExponentialHeightFogData) == 0x00000C, "Wrong size on FExponentialHeightFogData"); \ +static_assert(offsetof(FExponentialHeightFogData, FogDensity) == 0x000000, "Member 'FExponentialHeightFogData::FogDensity' has a wrong offset!"); \ +static_assert(offsetof(FExponentialHeightFogData, FogHeightFalloff) == 0x000004, "Member 'FExponentialHeightFogData::FogHeightFalloff' has a wrong offset!"); \ +static_assert(offsetof(FExponentialHeightFogData, FogHeightOffset) == 0x000008, "Member 'FExponentialHeightFogData::FogHeightOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFontImportOptionsData \ +static_assert(alignof(FFontImportOptionsData) == 0x000008, "Wrong alignment on FFontImportOptionsData"); \ +static_assert(sizeof(FFontImportOptionsData) == 0x0000B0, "Wrong size on FFontImportOptionsData"); \ +static_assert(offsetof(FFontImportOptionsData, FontName) == 0x000000, "Member 'FFontImportOptionsData::FontName' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, Height) == 0x000010, "Member 'FFontImportOptionsData::Height' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, CharacterSet) == 0x000018, "Member 'FFontImportOptionsData::CharacterSet' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, Chars) == 0x000020, "Member 'FFontImportOptionsData::Chars' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, UnicodeRange) == 0x000030, "Member 'FFontImportOptionsData::UnicodeRange' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, CharsFilePath) == 0x000040, "Member 'FFontImportOptionsData::CharsFilePath' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, CharsFileWildcard) == 0x000050, "Member 'FFontImportOptionsData::CharsFileWildcard' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, ForegroundColor) == 0x000064, "Member 'FFontImportOptionsData::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, TexturePageWidth) == 0x000078, "Member 'FFontImportOptionsData::TexturePageWidth' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, TexturePageMaxHeight) == 0x00007C, "Member 'FFontImportOptionsData::TexturePageMaxHeight' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, XPadding) == 0x000080, "Member 'FFontImportOptionsData::XPadding' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, YPadding) == 0x000084, "Member 'FFontImportOptionsData::YPadding' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, ExtendBoxTop) == 0x000088, "Member 'FFontImportOptionsData::ExtendBoxTop' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, ExtendBoxBottom) == 0x00008C, "Member 'FFontImportOptionsData::ExtendBoxBottom' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, ExtendBoxRight) == 0x000090, "Member 'FFontImportOptionsData::ExtendBoxRight' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, ExtendBoxLeft) == 0x000094, "Member 'FFontImportOptionsData::ExtendBoxLeft' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, Kerning) == 0x00009C, "Member 'FFontImportOptionsData::Kerning' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, DistanceFieldScaleFactor) == 0x0000A4, "Member 'FFontImportOptionsData::DistanceFieldScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(FFontImportOptionsData, DistanceFieldScanRadiusScale) == 0x0000A8, "Member 'FFontImportOptionsData::DistanceFieldScanRadiusScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectCookedMetaDataStore \ +static_assert(alignof(FObjectCookedMetaDataStore) == 0x000008, "Wrong alignment on FObjectCookedMetaDataStore"); \ +static_assert(sizeof(FObjectCookedMetaDataStore) == 0x000050, "Wrong size on FObjectCookedMetaDataStore"); \ +static_assert(offsetof(FObjectCookedMetaDataStore, ObjectMetaData) == 0x000000, "Member 'FObjectCookedMetaDataStore::ObjectMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldCookedMetaDataStore \ +static_assert(alignof(FFieldCookedMetaDataStore) == 0x000008, "Wrong alignment on FFieldCookedMetaDataStore"); \ +static_assert(sizeof(FFieldCookedMetaDataStore) == 0x000050, "Wrong size on FFieldCookedMetaDataStore"); \ +static_assert(offsetof(FFieldCookedMetaDataStore, FieldMetaData) == 0x000000, "Member 'FFieldCookedMetaDataStore::FieldMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructCookedMetaDataStore \ +static_assert(alignof(FStructCookedMetaDataStore) == 0x000008, "Wrong alignment on FStructCookedMetaDataStore"); \ +static_assert(sizeof(FStructCookedMetaDataStore) == 0x0000A0, "Wrong size on FStructCookedMetaDataStore"); \ +static_assert(offsetof(FStructCookedMetaDataStore, ObjectMetaData) == 0x000000, "Member 'FStructCookedMetaDataStore::ObjectMetaData' has a wrong offset!"); \ +static_assert(offsetof(FStructCookedMetaDataStore, PropertiesMetaData) == 0x000050, "Member 'FStructCookedMetaDataStore::PropertiesMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FForceFeedbackAttenuationSettings \ +static_assert(alignof(FForceFeedbackAttenuationSettings) == 0x000008, "Wrong alignment on FForceFeedbackAttenuationSettings"); \ +static_assert(sizeof(FForceFeedbackAttenuationSettings) == 0x0000C0, "Wrong size on FForceFeedbackAttenuationSettings"); \ + +#define DUMPER7_ASSERTS_FPrecomputedLightInstanceData \ +static_assert(alignof(FPrecomputedLightInstanceData) == 0x000010, "Wrong alignment on FPrecomputedLightInstanceData"); \ +static_assert(sizeof(FPrecomputedLightInstanceData) == 0x000140, "Wrong size on FPrecomputedLightInstanceData"); \ +static_assert(offsetof(FPrecomputedLightInstanceData, Transform) == 0x0000C0, "Member 'FPrecomputedLightInstanceData::Transform' has a wrong offset!"); \ +static_assert(offsetof(FPrecomputedLightInstanceData, LightGuid) == 0x000120, "Member 'FPrecomputedLightInstanceData::LightGuid' has a wrong offset!"); \ +static_assert(offsetof(FPrecomputedLightInstanceData, PreviewShadowMapChannel) == 0x000130, "Member 'FPrecomputedLightInstanceData::PreviewShadowMapChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPredictProjectilePathResult \ +static_assert(alignof(FPredictProjectilePathResult) == 0x000008, "Wrong alignment on FPredictProjectilePathResult"); \ +static_assert(sizeof(FPredictProjectilePathResult) == 0x000130, "Wrong size on FPredictProjectilePathResult"); \ +static_assert(offsetof(FPredictProjectilePathResult, PathData) == 0x000000, "Member 'FPredictProjectilePathResult::PathData' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathResult, LastTraceDestination) == 0x000010, "Member 'FPredictProjectilePathResult::LastTraceDestination' has a wrong offset!"); \ +static_assert(offsetof(FPredictProjectilePathResult, HitResult) == 0x000048, "Member 'FPredictProjectilePathResult::HitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveHapticFeedbackEffect \ +static_assert(alignof(FActiveHapticFeedbackEffect) == 0x000008, "Wrong alignment on FActiveHapticFeedbackEffect"); \ +static_assert(sizeof(FActiveHapticFeedbackEffect) == 0x000048, "Wrong size on FActiveHapticFeedbackEffect"); \ +static_assert(offsetof(FActiveHapticFeedbackEffect, HapticEffect) == 0x000000, "Member 'FActiveHapticFeedbackEffect::HapticEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHapticFeedbackDetails_Curve \ +static_assert(alignof(FHapticFeedbackDetails_Curve) == 0x000008, "Wrong alignment on FHapticFeedbackDetails_Curve"); \ +static_assert(sizeof(FHapticFeedbackDetails_Curve) == 0x000110, "Wrong size on FHapticFeedbackDetails_Curve"); \ +static_assert(offsetof(FHapticFeedbackDetails_Curve, Frequency) == 0x000000, "Member 'FHapticFeedbackDetails_Curve::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FHapticFeedbackDetails_Curve, Amplitude) == 0x000088, "Member 'FHapticFeedbackDetails_Curve::Amplitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterNode_DEPRECATED \ +static_assert(alignof(FClusterNode_DEPRECATED) == 0x000004, "Wrong alignment on FClusterNode_DEPRECATED"); \ +static_assert(sizeof(FClusterNode_DEPRECATED) == 0x000028, "Wrong size on FClusterNode_DEPRECATED"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, BoundMin) == 0x000000, "Member 'FClusterNode_DEPRECATED::BoundMin' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, FirstChild) == 0x00000C, "Member 'FClusterNode_DEPRECATED::FirstChild' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, BoundMax) == 0x000010, "Member 'FClusterNode_DEPRECATED::BoundMax' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, LastChild) == 0x00001C, "Member 'FClusterNode_DEPRECATED::LastChild' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, FirstInstance) == 0x000020, "Member 'FClusterNode_DEPRECATED::FirstInstance' has a wrong offset!"); \ +static_assert(offsetof(FClusterNode_DEPRECATED, LastInstance) == 0x000024, "Member 'FClusterNode_DEPRECATED::LastInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneAnimationTrack \ +static_assert(alignof(FBoneAnimationTrack) == 0x000008, "Wrong alignment on FBoneAnimationTrack"); \ +static_assert(sizeof(FBoneAnimationTrack) == 0x000040, "Wrong size on FBoneAnimationTrack"); \ +static_assert(offsetof(FBoneAnimationTrack, InternalTrackData) == 0x000000, "Member 'FBoneAnimationTrack::InternalTrackData' has a wrong offset!"); \ +static_assert(offsetof(FBoneAnimationTrack, BoneTreeIndex) == 0x000030, "Member 'FBoneAnimationTrack::BoneTreeIndex' has a wrong offset!"); \ +static_assert(offsetof(FBoneAnimationTrack, Name) == 0x000034, "Member 'FBoneAnimationTrack::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationCurveData \ +static_assert(alignof(FAnimationCurveData) == 0x000008, "Wrong alignment on FAnimationCurveData"); \ +static_assert(sizeof(FAnimationCurveData) == 0x000020, "Wrong size on FAnimationCurveData"); \ +static_assert(offsetof(FAnimationCurveData, FloatCurves) == 0x000000, "Member 'FAnimationCurveData::FloatCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimationCurveData, TransformCurves) == 0x000010, "Member 'FAnimationCurveData::TransformCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshComponentClothTickFunction \ +static_assert(alignof(FSkeletalMeshComponentClothTickFunction) == 0x000008, "Wrong alignment on FSkeletalMeshComponentClothTickFunction"); \ +static_assert(sizeof(FSkeletalMeshComponentClothTickFunction) == 0x000030, "Wrong size on FSkeletalMeshComponentClothTickFunction"); \ + +#define DUMPER7_ASSERTS_FAnimatedBoneAttribute \ +static_assert(alignof(FAnimatedBoneAttribute) == 0x000008, "Wrong alignment on FAnimatedBoneAttribute"); \ +static_assert(sizeof(FAnimatedBoneAttribute) == 0x0000F0, "Wrong size on FAnimatedBoneAttribute"); \ +static_assert(offsetof(FAnimatedBoneAttribute, Identifier) == 0x000000, "Member 'FAnimatedBoneAttribute::Identifier' has a wrong offset!"); \ +static_assert(offsetof(FAnimatedBoneAttribute, Curve) == 0x000040, "Member 'FAnimatedBoneAttribute::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedStaticMeshRandomSeed \ +static_assert(alignof(FInstancedStaticMeshRandomSeed) == 0x000004, "Wrong alignment on FInstancedStaticMeshRandomSeed"); \ +static_assert(sizeof(FInstancedStaticMeshRandomSeed) == 0x000008, "Wrong size on FInstancedStaticMeshRandomSeed"); \ +static_assert(offsetof(FInstancedStaticMeshRandomSeed, StartInstanceIndex) == 0x000000, "Member 'FInstancedStaticMeshRandomSeed::StartInstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshRandomSeed, RandomSeed) == 0x000004, "Member 'FInstancedStaticMeshRandomSeed::RandomSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource_MoveToDynamicForce \ +static_assert(alignof(FRootMotionSource_MoveToDynamicForce) == 0x000010, "Wrong alignment on FRootMotionSource_MoveToDynamicForce"); \ +static_assert(sizeof(FRootMotionSource_MoveToDynamicForce) == 0x000140, "Wrong size on FRootMotionSource_MoveToDynamicForce"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, StartLocation) == 0x0000D8, "Member 'FRootMotionSource_MoveToDynamicForce::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, InitialTargetLocation) == 0x0000F0, "Member 'FRootMotionSource_MoveToDynamicForce::InitialTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, TargetLocation) == 0x000108, "Member 'FRootMotionSource_MoveToDynamicForce::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, bRestrictSpeedToExpected) == 0x000120, "Member 'FRootMotionSource_MoveToDynamicForce::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, PathOffsetCurve) == 0x000128, "Member 'FRootMotionSource_MoveToDynamicForce::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_MoveToDynamicForce, TimeMappingCurve) == 0x000130, "Member 'FRootMotionSource_MoveToDynamicForce::TimeMappingCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedStaticMeshComponentInstanceData \ +static_assert(alignof(FInstancedStaticMeshComponentInstanceData) == 0x000010, "Wrong alignment on FInstancedStaticMeshComponentInstanceData"); \ +static_assert(sizeof(FInstancedStaticMeshComponentInstanceData) == 0x000190, "Wrong size on FInstancedStaticMeshComponentInstanceData"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, StaticMesh) == 0x0000B8, "Member 'FInstancedStaticMeshComponentInstanceData::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, CachedStaticLighting) == 0x0000C0, "Member 'FInstancedStaticMeshComponentInstanceData::CachedStaticLighting' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, PerInstanceSMData) == 0x000130, "Member 'FInstancedStaticMeshComponentInstanceData::PerInstanceSMData' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, PerInstanceSMCustomData) == 0x000140, "Member 'FInstancedStaticMeshComponentInstanceData::PerInstanceSMCustomData' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, InstancingRandomSeed) == 0x000170, "Member 'FInstancedStaticMeshComponentInstanceData::InstancingRandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, AdditionalRandomSeeds) == 0x000178, "Member 'FInstancedStaticMeshComponentInstanceData::AdditionalRandomSeeds' has a wrong offset!"); \ +static_assert(offsetof(FInstancedStaticMeshComponentInstanceData, bHasPerInstanceHitProxies) == 0x000188, "Member 'FInstancedStaticMeshComponentInstanceData::bHasPerInstanceHitProxies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueNetIdReplNetSerializerNameStruct \ +static_assert(alignof(FUniqueNetIdReplNetSerializerNameStruct) == 0x000004, "Wrong alignment on FUniqueNetIdReplNetSerializerNameStruct"); \ +static_assert(sizeof(FUniqueNetIdReplNetSerializerNameStruct) == 0x000008, "Wrong size on FUniqueNetIdReplNetSerializerNameStruct"); \ +static_assert(offsetof(FUniqueNetIdReplNetSerializerNameStruct, Name) == 0x000000, "Member 'FUniqueNetIdReplNetSerializerNameStruct::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorSpringState \ +static_assert(alignof(FVectorSpringState) == 0x000008, "Wrong alignment on FVectorSpringState"); \ +static_assert(sizeof(FVectorSpringState) == 0x000038, "Wrong size on FVectorSpringState"); \ + +#define DUMPER7_ASSERTS_FISMClientInstanceManagerData \ +static_assert(alignof(FISMClientInstanceManagerData) == 0x000008, "Wrong alignment on FISMClientInstanceManagerData"); \ +static_assert(sizeof(FISMClientInstanceManagerData) == 0x000010, "Wrong size on FISMClientInstanceManagerData"); \ + +#define DUMPER7_ASSERTS_FExpressionExecOutput \ +static_assert(alignof(FExpressionExecOutput) == 0x000008, "Wrong alignment on FExpressionExecOutput"); \ +static_assert(sizeof(FExpressionExecOutput) == 0x000008, "Wrong size on FExpressionExecOutput"); \ +static_assert(offsetof(FExpressionExecOutput, Expression) == 0x000000, "Member 'FExpressionExecOutput::Expression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomDefine \ +static_assert(alignof(FCustomDefine) == 0x000008, "Wrong alignment on FCustomDefine"); \ +static_assert(sizeof(FCustomDefine) == 0x000020, "Wrong size on FCustomDefine"); \ +static_assert(offsetof(FCustomDefine, DefineName) == 0x000000, "Member 'FCustomDefine::DefineName' has a wrong offset!"); \ +static_assert(offsetof(FCustomDefine, DefineValue) == 0x000010, "Member 'FCustomDefine::DefineValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositeReroute \ +static_assert(alignof(FCompositeReroute) == 0x000008, "Wrong alignment on FCompositeReroute"); \ +static_assert(sizeof(FCompositeReroute) == 0x000010, "Wrong size on FCompositeReroute"); \ +static_assert(offsetof(FCompositeReroute, Name) == 0x000000, "Member 'FCompositeReroute::Name' has a wrong offset!"); \ +static_assert(offsetof(FCompositeReroute, Expression) == 0x000008, "Member 'FCompositeReroute::Expression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialInstanceBasePropertyOverrides \ +static_assert(alignof(FMaterialInstanceBasePropertyOverrides) == 0x000004, "Wrong alignment on FMaterialInstanceBasePropertyOverrides"); \ +static_assert(sizeof(FMaterialInstanceBasePropertyOverrides) == 0x000014, "Wrong size on FMaterialInstanceBasePropertyOverrides"); \ +static_assert(offsetof(FMaterialInstanceBasePropertyOverrides, BlendMode) == 0x000002, "Member 'FMaterialInstanceBasePropertyOverrides::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInstanceBasePropertyOverrides, ShadingModel) == 0x000003, "Member 'FMaterialInstanceBasePropertyOverrides::ShadingModel' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInstanceBasePropertyOverrides, OpacityMaskClipValue) == 0x000004, "Member 'FMaterialInstanceBasePropertyOverrides::OpacityMaskClipValue' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInstanceBasePropertyOverrides, DisplacementScaling) == 0x000008, "Member 'FMaterialInstanceBasePropertyOverrides::DisplacementScaling' has a wrong offset!"); \ +static_assert(offsetof(FMaterialInstanceBasePropertyOverrides, MaxWorldPositionOffsetDisplacement) == 0x000010, "Member 'FMaterialInstanceBasePropertyOverrides::MaxWorldPositionOffsetDisplacement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputScaleBiasClampState \ +static_assert(alignof(FInputScaleBiasClampState) == 0x000004, "Wrong alignment on FInputScaleBiasClampState"); \ +static_assert(sizeof(FInputScaleBiasClampState) == 0x000008, "Wrong size on FInputScaleBiasClampState"); \ + +#define DUMPER7_ASSERTS_FLightmassMaterialInterfaceSettings \ +static_assert(alignof(FLightmassMaterialInterfaceSettings) == 0x000004, "Wrong alignment on FLightmassMaterialInterfaceSettings"); \ +static_assert(sizeof(FLightmassMaterialInterfaceSettings) == 0x000010, "Wrong size on FLightmassMaterialInterfaceSettings"); \ +static_assert(offsetof(FLightmassMaterialInterfaceSettings, EmissiveBoost) == 0x000000, "Member 'FLightmassMaterialInterfaceSettings::EmissiveBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassMaterialInterfaceSettings, DiffuseBoost) == 0x000004, "Member 'FLightmassMaterialInterfaceSettings::DiffuseBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassMaterialInterfaceSettings, ExportResolutionScale) == 0x000008, "Member 'FLightmassMaterialInterfaceSettings::ExportResolutionScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFontCharacter \ +static_assert(alignof(FFontCharacter) == 0x000004, "Wrong alignment on FFontCharacter"); \ +static_assert(sizeof(FFontCharacter) == 0x000018, "Wrong size on FFontCharacter"); \ +static_assert(offsetof(FFontCharacter, StartU) == 0x000000, "Member 'FFontCharacter::StartU' has a wrong offset!"); \ +static_assert(offsetof(FFontCharacter, StartV) == 0x000004, "Member 'FFontCharacter::StartV' has a wrong offset!"); \ +static_assert(offsetof(FFontCharacter, USize) == 0x000008, "Member 'FFontCharacter::USize' has a wrong offset!"); \ +static_assert(offsetof(FFontCharacter, VSize) == 0x00000C, "Member 'FFontCharacter::VSize' has a wrong offset!"); \ +static_assert(offsetof(FFontCharacter, TextureIndex) == 0x000010, "Member 'FFontCharacter::TextureIndex' has a wrong offset!"); \ +static_assert(offsetof(FFontCharacter, VerticalOffset) == 0x000014, "Member 'FFontCharacter::VerticalOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParameterChannelNames \ +static_assert(alignof(FParameterChannelNames) == 0x000008, "Wrong alignment on FParameterChannelNames"); \ +static_assert(sizeof(FParameterChannelNames) == 0x000060, "Wrong size on FParameterChannelNames"); \ +static_assert(offsetof(FParameterChannelNames, R) == 0x000000, "Member 'FParameterChannelNames::R' has a wrong offset!"); \ +static_assert(offsetof(FParameterChannelNames, G) == 0x000018, "Member 'FParameterChannelNames::G' has a wrong offset!"); \ +static_assert(offsetof(FParameterChannelNames, B) == 0x000030, "Member 'FParameterChannelNames::B' has a wrong offset!"); \ +static_assert(offsetof(FParameterChannelNames, A) == 0x000048, "Member 'FParameterChannelNames::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshBudgetInfo \ +static_assert(alignof(FStaticMeshBudgetInfo) == 0x000008, "Wrong alignment on FStaticMeshBudgetInfo"); \ +static_assert(sizeof(FStaticMeshBudgetInfo) == 0x000010, "Wrong size on FStaticMeshBudgetInfo"); \ +static_assert(offsetof(FStaticMeshBudgetInfo, LodGroupName) == 0x000000, "Member 'FStaticMeshBudgetInfo::LodGroupName' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshBudgetInfo, MinimumExtent) == 0x000008, "Member 'FStaticMeshBudgetInfo::MinimumExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavAvoidanceMask \ +static_assert(alignof(FNavAvoidanceMask) == 0x000004, "Wrong alignment on FNavAvoidanceMask"); \ +static_assert(sizeof(FNavAvoidanceMask) == 0x000004, "Wrong size on FNavAvoidanceMask"); \ + +#define DUMPER7_ASSERTS_FLatentActionManager \ +static_assert(alignof(FLatentActionManager) == 0x000008, "Wrong alignment on FLatentActionManager"); \ +static_assert(sizeof(FLatentActionManager) == 0x000060, "Wrong size on FLatentActionManager"); \ + +#define DUMPER7_ASSERTS_FNavigationLink \ +static_assert(alignof(FNavigationLink) == 0x000008, "Wrong alignment on FNavigationLink"); \ +static_assert(sizeof(FNavigationLink) == 0x000070, "Wrong size on FNavigationLink"); \ +static_assert(offsetof(FNavigationLink, Left) == 0x000040, "Member 'FNavigationLink::Left' has a wrong offset!"); \ +static_assert(offsetof(FNavigationLink, Right) == 0x000058, "Member 'FNavigationLink::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOverlapResult \ +static_assert(alignof(FOverlapResult) == 0x000004, "Wrong alignment on FOverlapResult"); \ +static_assert(sizeof(FOverlapResult) == 0x000028, "Wrong size on FOverlapResult"); \ +static_assert(offsetof(FOverlapResult, OverlapObjectHandle) == 0x000000, "Member 'FOverlapResult::OverlapObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FOverlapResult, Component) == 0x000018, "Member 'FOverlapResult::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplineCurves \ +static_assert(alignof(FSplineCurves) == 0x000008, "Wrong alignment on FSplineCurves"); \ +static_assert(sizeof(FSplineCurves) == 0x000070, "Wrong size on FSplineCurves"); \ +static_assert(offsetof(FSplineCurves, Position) == 0x000000, "Member 'FSplineCurves::Position' has a wrong offset!"); \ +static_assert(offsetof(FSplineCurves, Rotation) == 0x000018, "Member 'FSplineCurves::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSplineCurves, Scale) == 0x000030, "Member 'FSplineCurves::Scale' has a wrong offset!"); \ +static_assert(offsetof(FSplineCurves, ReparamTable) == 0x000048, "Member 'FSplineCurves::ReparamTable' has a wrong offset!"); \ +static_assert(offsetof(FSplineCurves, MetaData) == 0x000060, "Member 'FSplineCurves::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FSplineCurves, Version) == 0x000068, "Member 'FSplineCurves::Version' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplineInstanceData \ +static_assert(alignof(FSplineInstanceData) == 0x000008, "Wrong alignment on FSplineInstanceData"); \ +static_assert(sizeof(FSplineInstanceData) == 0x0001A0, "Wrong size on FSplineInstanceData"); \ +static_assert(offsetof(FSplineInstanceData, bSplineHasBeenEdited) == 0x0000B8, "Member 'FSplineInstanceData::bSplineHasBeenEdited' has a wrong offset!"); \ +static_assert(offsetof(FSplineInstanceData, SplineCurves) == 0x0000C0, "Member 'FSplineInstanceData::SplineCurves' has a wrong offset!"); \ +static_assert(offsetof(FSplineInstanceData, SplineCurvesPreUCS) == 0x000130, "Member 'FSplineInstanceData::SplineCurvesPreUCS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleCurvePair \ +static_assert(alignof(FParticleCurvePair) == 0x000008, "Wrong alignment on FParticleCurvePair"); \ +static_assert(sizeof(FParticleCurvePair) == 0x000018, "Wrong size on FParticleCurvePair"); \ +static_assert(offsetof(FParticleCurvePair, CurveName) == 0x000000, "Member 'FParticleCurvePair::CurveName' has a wrong offset!"); \ +static_assert(offsetof(FParticleCurvePair, CurveObject) == 0x000010, "Member 'FParticleCurvePair::CurveObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialDamageParams \ +static_assert(alignof(FRadialDamageParams) == 0x000004, "Wrong alignment on FRadialDamageParams"); \ +static_assert(sizeof(FRadialDamageParams) == 0x000014, "Wrong size on FRadialDamageParams"); \ +static_assert(offsetof(FRadialDamageParams, BaseDamage) == 0x000000, "Member 'FRadialDamageParams::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageParams, MinimumDamage) == 0x000004, "Member 'FRadialDamageParams::MinimumDamage' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageParams, InnerRadius) == 0x000008, "Member 'FRadialDamageParams::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageParams, OuterRadius) == 0x00000C, "Member 'FRadialDamageParams::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageParams, DamageFalloff) == 0x000010, "Member 'FRadialDamageParams::DamageFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocationBoneSocketInfo \ +static_assert(alignof(FLocationBoneSocketInfo) == 0x000008, "Wrong alignment on FLocationBoneSocketInfo"); \ +static_assert(sizeof(FLocationBoneSocketInfo) == 0x000020, "Wrong size on FLocationBoneSocketInfo"); \ +static_assert(offsetof(FLocationBoneSocketInfo, BoneSocketName) == 0x000000, "Member 'FLocationBoneSocketInfo::BoneSocketName' has a wrong offset!"); \ +static_assert(offsetof(FLocationBoneSocketInfo, Offset) == 0x000008, "Member 'FLocationBoneSocketInfo::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEmitterDynamicParameter \ +static_assert(alignof(FEmitterDynamicParameter) == 0x000008, "Wrong alignment on FEmitterDynamicParameter"); \ +static_assert(sizeof(FEmitterDynamicParameter) == 0x000048, "Wrong size on FEmitterDynamicParameter"); \ +static_assert(offsetof(FEmitterDynamicParameter, ParamName) == 0x000000, "Member 'FEmitterDynamicParameter::ParamName' has a wrong offset!"); \ +static_assert(offsetof(FEmitterDynamicParameter, ValueMethod) == 0x00000C, "Member 'FEmitterDynamicParameter::ValueMethod' has a wrong offset!"); \ +static_assert(offsetof(FEmitterDynamicParameter, ParamValue) == 0x000018, "Member 'FEmitterDynamicParameter::ParamValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueNetIdReplNetSerializerConfig \ +static_assert(alignof(FUniqueNetIdReplNetSerializerConfig) == 0x000008, "Wrong alignment on FUniqueNetIdReplNetSerializerConfig"); \ +static_assert(sizeof(FUniqueNetIdReplNetSerializerConfig) == 0x000010, "Wrong size on FUniqueNetIdReplNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGPUSpriteResourceData \ +static_assert(alignof(FGPUSpriteResourceData) == 0x000010, "Wrong alignment on FGPUSpriteResourceData"); \ +static_assert(sizeof(FGPUSpriteResourceData) == 0x000240, "Wrong size on FGPUSpriteResourceData"); \ +static_assert(offsetof(FGPUSpriteResourceData, QuantizedColorSamples) == 0x000000, "Member 'FGPUSpriteResourceData::QuantizedColorSamples' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, QuantizedMiscSamples) == 0x000010, "Member 'FGPUSpriteResourceData::QuantizedMiscSamples' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, QuantizedSimulationAttrSamples) == 0x000020, "Member 'FGPUSpriteResourceData::QuantizedSimulationAttrSamples' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ColorScale) == 0x000030, "Member 'FGPUSpriteResourceData::ColorScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ColorBias) == 0x000050, "Member 'FGPUSpriteResourceData::ColorBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, MiscScale) == 0x000070, "Member 'FGPUSpriteResourceData::MiscScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, MiscBias) == 0x000090, "Member 'FGPUSpriteResourceData::MiscBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, SimulationAttrCurveScale) == 0x0000B0, "Member 'FGPUSpriteResourceData::SimulationAttrCurveScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, SimulationAttrCurveBias) == 0x0000D0, "Member 'FGPUSpriteResourceData::SimulationAttrCurveBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, SubImageSize) == 0x0000F0, "Member 'FGPUSpriteResourceData::SubImageSize' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, SizeBySpeed) == 0x000110, "Member 'FGPUSpriteResourceData::SizeBySpeed' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ConstantAcceleration) == 0x000130, "Member 'FGPUSpriteResourceData::ConstantAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitOffsetBase) == 0x000148, "Member 'FGPUSpriteResourceData::OrbitOffsetBase' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitOffsetRange) == 0x000160, "Member 'FGPUSpriteResourceData::OrbitOffsetRange' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitFrequencyBase) == 0x000178, "Member 'FGPUSpriteResourceData::OrbitFrequencyBase' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitFrequencyRange) == 0x000190, "Member 'FGPUSpriteResourceData::OrbitFrequencyRange' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitPhaseBase) == 0x0001A8, "Member 'FGPUSpriteResourceData::OrbitPhaseBase' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OrbitPhaseRange) == 0x0001C0, "Member 'FGPUSpriteResourceData::OrbitPhaseRange' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, GlobalVectorFieldScale) == 0x0001D8, "Member 'FGPUSpriteResourceData::GlobalVectorFieldScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, GlobalVectorFieldTightness) == 0x0001DC, "Member 'FGPUSpriteResourceData::GlobalVectorFieldTightness' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, PerParticleVectorFieldScale) == 0x0001E0, "Member 'FGPUSpriteResourceData::PerParticleVectorFieldScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, PerParticleVectorFieldBias) == 0x0001E4, "Member 'FGPUSpriteResourceData::PerParticleVectorFieldBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, DragCoefficientScale) == 0x0001E8, "Member 'FGPUSpriteResourceData::DragCoefficientScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, DragCoefficientBias) == 0x0001EC, "Member 'FGPUSpriteResourceData::DragCoefficientBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ResilienceScale) == 0x0001F0, "Member 'FGPUSpriteResourceData::ResilienceScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ResilienceBias) == 0x0001F4, "Member 'FGPUSpriteResourceData::ResilienceBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CollisionRadiusScale) == 0x0001F8, "Member 'FGPUSpriteResourceData::CollisionRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CollisionRadiusBias) == 0x0001FC, "Member 'FGPUSpriteResourceData::CollisionRadiusBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CollisionTimeBias) == 0x000200, "Member 'FGPUSpriteResourceData::CollisionTimeBias' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CollisionRandomSpread) == 0x000204, "Member 'FGPUSpriteResourceData::CollisionRandomSpread' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CollisionRandomDistribution) == 0x000208, "Member 'FGPUSpriteResourceData::CollisionRandomDistribution' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, OneMinusFriction) == 0x00020C, "Member 'FGPUSpriteResourceData::OneMinusFriction' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, RotationRateScale) == 0x000210, "Member 'FGPUSpriteResourceData::RotationRateScale' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, CameraMotionBlurAmount) == 0x000214, "Member 'FGPUSpriteResourceData::CameraMotionBlurAmount' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, ScreenAlignment) == 0x000218, "Member 'FGPUSpriteResourceData::ScreenAlignment' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, LockAxisFlag) == 0x000219, "Member 'FGPUSpriteResourceData::LockAxisFlag' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, PivotOffset) == 0x000220, "Member 'FGPUSpriteResourceData::PivotOffset' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, MinFacingCameraBlendDistance) == 0x000234, "Member 'FGPUSpriteResourceData::MinFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(FGPUSpriteResourceData, MaxFacingCameraBlendDistance) == 0x000238, "Member 'FGPUSpriteResourceData::MaxFacingCameraBlendDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleSysParam \ +static_assert(alignof(FParticleSysParam) == 0x000010, "Wrong alignment on FParticleSysParam"); \ +static_assert(sizeof(FParticleSysParam) == 0x0000E0, "Wrong size on FParticleSysParam"); \ +static_assert(offsetof(FParticleSysParam, Name) == 0x000000, "Member 'FParticleSysParam::Name' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, ParamType) == 0x000008, "Member 'FParticleSysParam::ParamType' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Scalar) == 0x00000C, "Member 'FParticleSysParam::Scalar' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Scalar_Low) == 0x000010, "Member 'FParticleSysParam::Scalar_Low' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Vector) == 0x000018, "Member 'FParticleSysParam::Vector' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Vector_Low) == 0x000030, "Member 'FParticleSysParam::Vector_Low' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Color) == 0x000048, "Member 'FParticleSysParam::Color' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Actor) == 0x000050, "Member 'FParticleSysParam::Actor' has a wrong offset!"); \ +static_assert(offsetof(FParticleSysParam, Material) == 0x000058, "Member 'FParticleSysParam::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputActionDelegateBinding \ +static_assert(alignof(FBlueprintInputActionDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintInputActionDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputActionDelegateBinding) == 0x000018, "Wrong size on FBlueprintInputActionDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputActionDelegateBinding, InputActionName) == 0x000004, "Member 'FBlueprintInputActionDelegateBinding::InputActionName' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputActionDelegateBinding, InputKeyEvent) == 0x00000C, "Member 'FBlueprintInputActionDelegateBinding::InputKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputActionDelegateBinding, FunctionNameToBind) == 0x000010, "Member 'FBlueprintInputActionDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleEmitterReplayFrame \ +static_assert(alignof(FParticleEmitterReplayFrame) == 0x000008, "Wrong alignment on FParticleEmitterReplayFrame"); \ +static_assert(sizeof(FParticleEmitterReplayFrame) == 0x000010, "Wrong size on FParticleEmitterReplayFrame"); \ + +#define DUMPER7_ASSERTS_FPieFixupStructWithSoftObjectPath \ +static_assert(alignof(FPieFixupStructWithSoftObjectPath) == 0x000008, "Wrong alignment on FPieFixupStructWithSoftObjectPath"); \ +static_assert(sizeof(FPieFixupStructWithSoftObjectPath) == 0x000048, "Wrong size on FPieFixupStructWithSoftObjectPath"); \ +static_assert(offsetof(FPieFixupStructWithSoftObjectPath, Path) == 0x000000, "Member 'FPieFixupStructWithSoftObjectPath::Path' has a wrong offset!"); \ +static_assert(offsetof(FPieFixupStructWithSoftObjectPath, TypedPtr) == 0x000020, "Member 'FPieFixupStructWithSoftObjectPath::TypedPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActivateDevicePropertyParams \ +static_assert(alignof(FActivateDevicePropertyParams) == 0x000004, "Wrong alignment on FActivateDevicePropertyParams"); \ +static_assert(sizeof(FActivateDevicePropertyParams) == 0x00000C, "Wrong size on FActivateDevicePropertyParams"); \ +static_assert(offsetof(FActivateDevicePropertyParams, UserId) == 0x000000, "Member 'FActivateDevicePropertyParams::UserId' has a wrong offset!"); \ +static_assert(offsetof(FActivateDevicePropertyParams, DeviceID) == 0x000004, "Member 'FActivateDevicePropertyParams::DeviceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraCacheEntry \ +static_assert(alignof(FCameraCacheEntry) == 0x000010, "Wrong alignment on FCameraCacheEntry"); \ +static_assert(sizeof(FCameraCacheEntry) == 0x0007E0, "Wrong size on FCameraCacheEntry"); \ +static_assert(offsetof(FCameraCacheEntry, Timestamp) == 0x000000, "Member 'FCameraCacheEntry::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(FCameraCacheEntry, POV) == 0x000010, "Member 'FCameraCacheEntry::POV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FViewTargetTransitionParams \ +static_assert(alignof(FViewTargetTransitionParams) == 0x000004, "Wrong alignment on FViewTargetTransitionParams"); \ +static_assert(sizeof(FViewTargetTransitionParams) == 0x000010, "Wrong size on FViewTargetTransitionParams"); \ +static_assert(offsetof(FViewTargetTransitionParams, BlendTime) == 0x000000, "Member 'FViewTargetTransitionParams::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FViewTargetTransitionParams, BlendFunction) == 0x000004, "Member 'FViewTargetTransitionParams::BlendFunction' has a wrong offset!"); \ +static_assert(offsetof(FViewTargetTransitionParams, BlendExp) == 0x000008, "Member 'FViewTargetTransitionParams::BlendExp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteCategoryInfo \ +static_assert(alignof(FSpriteCategoryInfo) == 0x000008, "Wrong alignment on FSpriteCategoryInfo"); \ +static_assert(sizeof(FSpriteCategoryInfo) == 0x000038, "Wrong size on FSpriteCategoryInfo"); \ +static_assert(offsetof(FSpriteCategoryInfo, Category) == 0x000000, "Member 'FSpriteCategoryInfo::Category' has a wrong offset!"); \ +static_assert(offsetof(FSpriteCategoryInfo, DisplayName) == 0x000008, "Member 'FSpriteCategoryInfo::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FSpriteCategoryInfo, Description) == 0x000020, "Member 'FSpriteCategoryInfo::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyArray \ +static_assert(alignof(FAnimNotifyArray) == 0x000008, "Wrong alignment on FAnimNotifyArray"); \ +static_assert(sizeof(FAnimNotifyArray) == 0x000010, "Wrong size on FAnimNotifyArray"); \ +static_assert(offsetof(FAnimNotifyArray, Notifies) == 0x000000, "Member 'FAnimNotifyArray::Notifies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyQueue \ +static_assert(alignof(FAnimNotifyQueue) == 0x000008, "Wrong alignment on FAnimNotifyQueue"); \ +static_assert(sizeof(FAnimNotifyQueue) == 0x000070, "Wrong size on FAnimNotifyQueue"); \ +static_assert(offsetof(FAnimNotifyQueue, AnimNotifies) == 0x000010, "Member 'FAnimNotifyQueue::AnimNotifies' has a wrong offset!"); \ +static_assert(offsetof(FAnimNotifyQueue, UnfilteredMontageAnimNotifies) == 0x000020, "Member 'FAnimNotifyQueue::UnfilteredMontageAnimNotifies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimitiveComponentInstanceData \ +static_assert(alignof(FPrimitiveComponentInstanceData) == 0x000010, "Wrong alignment on FPrimitiveComponentInstanceData"); \ +static_assert(sizeof(FPrimitiveComponentInstanceData) == 0x000130, "Wrong size on FPrimitiveComponentInstanceData"); \ +static_assert(offsetof(FPrimitiveComponentInstanceData, ComponentTransform) == 0x0000C0, "Member 'FPrimitiveComponentInstanceData::ComponentTransform' has a wrong offset!"); \ +static_assert(offsetof(FPrimitiveComponentInstanceData, VisibilityId) == 0x000120, "Member 'FPrimitiveComponentInstanceData::VisibilityId' has a wrong offset!"); \ +static_assert(offsetof(FPrimitiveComponentInstanceData, LODParent) == 0x000128, "Member 'FPrimitiveComponentInstanceData::LODParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelNameAndTime \ +static_assert(alignof(FLevelNameAndTime) == 0x000008, "Wrong alignment on FLevelNameAndTime"); \ +static_assert(sizeof(FLevelNameAndTime) == 0x000018, "Wrong size on FLevelNameAndTime"); \ +static_assert(offsetof(FLevelNameAndTime, LevelName) == 0x000000, "Member 'FLevelNameAndTime::LevelName' has a wrong offset!"); \ +static_assert(offsetof(FLevelNameAndTime, LevelChangeTimeInMS) == 0x000010, "Member 'FLevelNameAndTime::LevelChangeTimeInMS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReverbSettings \ +static_assert(alignof(FReverbSettings) == 0x000008, "Wrong alignment on FReverbSettings"); \ +static_assert(sizeof(FReverbSettings) == 0x000020, "Wrong size on FReverbSettings"); \ +static_assert(offsetof(FReverbSettings, bApplyReverb) == 0x000000, "Member 'FReverbSettings::bApplyReverb' has a wrong offset!"); \ +static_assert(offsetof(FReverbSettings, ReverbEffect) == 0x000008, "Member 'FReverbSettings::ReverbEffect' has a wrong offset!"); \ +static_assert(offsetof(FReverbSettings, ReverbPluginEffect) == 0x000010, "Member 'FReverbSettings::ReverbPluginEffect' has a wrong offset!"); \ +static_assert(offsetof(FReverbSettings, Volume) == 0x000018, "Member 'FReverbSettings::Volume' has a wrong offset!"); \ +static_assert(offsetof(FReverbSettings, FadeTime) == 0x00001C, "Member 'FReverbSettings::FadeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLinkedAnimLayerClassData \ +static_assert(alignof(FLinkedAnimLayerClassData) == 0x000008, "Wrong alignment on FLinkedAnimLayerClassData"); \ +static_assert(sizeof(FLinkedAnimLayerClassData) == 0x000020, "Wrong size on FLinkedAnimLayerClassData"); \ +static_assert(offsetof(FLinkedAnimLayerClassData, InstancesData) == 0x000008, "Member 'FLinkedAnimLayerClassData::InstancesData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompressedRichCurve \ +static_assert(alignof(FCompressedRichCurve) == 0x000008, "Wrong alignment on FCompressedRichCurve"); \ +static_assert(sizeof(FCompressedRichCurve) == 0x000018, "Wrong size on FCompressedRichCurve"); \ + +#define DUMPER7_ASSERTS_FColorGradePerRangeSettings \ +static_assert(alignof(FColorGradePerRangeSettings) == 0x000010, "Wrong alignment on FColorGradePerRangeSettings"); \ +static_assert(sizeof(FColorGradePerRangeSettings) == 0x0000A0, "Wrong size on FColorGradePerRangeSettings"); \ +static_assert(offsetof(FColorGradePerRangeSettings, Saturation) == 0x000000, "Member 'FColorGradePerRangeSettings::Saturation' has a wrong offset!"); \ +static_assert(offsetof(FColorGradePerRangeSettings, Contrast) == 0x000020, "Member 'FColorGradePerRangeSettings::Contrast' has a wrong offset!"); \ +static_assert(offsetof(FColorGradePerRangeSettings, Gamma) == 0x000040, "Member 'FColorGradePerRangeSettings::Gamma' has a wrong offset!"); \ +static_assert(offsetof(FColorGradePerRangeSettings, Gain) == 0x000060, "Member 'FColorGradePerRangeSettings::Gain' has a wrong offset!"); \ +static_assert(offsetof(FColorGradePerRangeSettings, Offset) == 0x000080, "Member 'FColorGradePerRangeSettings::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FColorGradingSettings \ +static_assert(alignof(FColorGradingSettings) == 0x000010, "Wrong alignment on FColorGradingSettings"); \ +static_assert(sizeof(FColorGradingSettings) == 0x000290, "Wrong size on FColorGradingSettings"); \ +static_assert(offsetof(FColorGradingSettings, Global) == 0x000000, "Member 'FColorGradingSettings::Global' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, Shadows) == 0x0000A0, "Member 'FColorGradingSettings::Shadows' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, Midtones) == 0x000140, "Member 'FColorGradingSettings::Midtones' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, Highlights) == 0x0001E0, "Member 'FColorGradingSettings::Highlights' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, ShadowsMax) == 0x000280, "Member 'FColorGradingSettings::ShadowsMax' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, HighlightsMin) == 0x000284, "Member 'FColorGradingSettings::HighlightsMin' has a wrong offset!"); \ +static_assert(offsetof(FColorGradingSettings, HighlightsMax) == 0x000288, "Member 'FColorGradingSettings::HighlightsMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFilmStockSettings \ +static_assert(alignof(FFilmStockSettings) == 0x000004, "Wrong alignment on FFilmStockSettings"); \ +static_assert(sizeof(FFilmStockSettings) == 0x000014, "Wrong size on FFilmStockSettings"); \ +static_assert(offsetof(FFilmStockSettings, Slope) == 0x000000, "Member 'FFilmStockSettings::Slope' has a wrong offset!"); \ +static_assert(offsetof(FFilmStockSettings, Toe) == 0x000004, "Member 'FFilmStockSettings::Toe' has a wrong offset!"); \ +static_assert(offsetof(FFilmStockSettings, Shoulder) == 0x000008, "Member 'FFilmStockSettings::Shoulder' has a wrong offset!"); \ +static_assert(offsetof(FFilmStockSettings, BlackClip) == 0x00000C, "Member 'FFilmStockSettings::BlackClip' has a wrong offset!"); \ +static_assert(offsetof(FFilmStockSettings, WhiteClip) == 0x000010, "Member 'FFilmStockSettings::WhiteClip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGaussianSumBloomSettings \ +static_assert(alignof(FGaussianSumBloomSettings) == 0x000004, "Wrong alignment on FGaussianSumBloomSettings"); \ +static_assert(sizeof(FGaussianSumBloomSettings) == 0x000084, "Wrong size on FGaussianSumBloomSettings"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Intensity) == 0x000000, "Member 'FGaussianSumBloomSettings::Intensity' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Threshold) == 0x000004, "Member 'FGaussianSumBloomSettings::Threshold' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, SizeScale) == 0x000008, "Member 'FGaussianSumBloomSettings::SizeScale' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter1Size) == 0x00000C, "Member 'FGaussianSumBloomSettings::Filter1Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter2Size) == 0x000010, "Member 'FGaussianSumBloomSettings::Filter2Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter3Size) == 0x000014, "Member 'FGaussianSumBloomSettings::Filter3Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter4Size) == 0x000018, "Member 'FGaussianSumBloomSettings::Filter4Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter5Size) == 0x00001C, "Member 'FGaussianSumBloomSettings::Filter5Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter6Size) == 0x000020, "Member 'FGaussianSumBloomSettings::Filter6Size' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter1Tint) == 0x000024, "Member 'FGaussianSumBloomSettings::Filter1Tint' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter2Tint) == 0x000034, "Member 'FGaussianSumBloomSettings::Filter2Tint' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter3Tint) == 0x000044, "Member 'FGaussianSumBloomSettings::Filter3Tint' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter4Tint) == 0x000054, "Member 'FGaussianSumBloomSettings::Filter4Tint' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter5Tint) == 0x000064, "Member 'FGaussianSumBloomSettings::Filter5Tint' has a wrong offset!"); \ +static_assert(offsetof(FGaussianSumBloomSettings, Filter6Tint) == 0x000074, "Member 'FGaussianSumBloomSettings::Filter6Tint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SingleNode \ +static_assert(alignof(FAnimNode_SingleNode) == 0x000008, "Wrong alignment on FAnimNode_SingleNode"); \ +static_assert(sizeof(FAnimNode_SingleNode) == 0x000030, "Wrong size on FAnimNode_SingleNode"); \ +static_assert(offsetof(FAnimNode_SingleNode, SourcePose) == 0x000010, "Member 'FAnimNode_SingleNode::SourcePose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConvolutionBloomSettings \ +static_assert(alignof(FConvolutionBloomSettings) == 0x000008, "Wrong alignment on FConvolutionBloomSettings"); \ +static_assert(sizeof(FConvolutionBloomSettings) == 0x000030, "Wrong size on FConvolutionBloomSettings"); \ +static_assert(offsetof(FConvolutionBloomSettings, Texture) == 0x000000, "Member 'FConvolutionBloomSettings::Texture' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, ScatterDispersion) == 0x000008, "Member 'FConvolutionBloomSettings::ScatterDispersion' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, Size) == 0x00000C, "Member 'FConvolutionBloomSettings::Size' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, CenterUV) == 0x000010, "Member 'FConvolutionBloomSettings::CenterUV' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, PreFilterMin) == 0x000020, "Member 'FConvolutionBloomSettings::PreFilterMin' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, PreFilterMax) == 0x000024, "Member 'FConvolutionBloomSettings::PreFilterMax' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, PreFilterMult) == 0x000028, "Member 'FConvolutionBloomSettings::PreFilterMult' has a wrong offset!"); \ +static_assert(offsetof(FConvolutionBloomSettings, BufferScale) == 0x00002C, "Member 'FConvolutionBloomSettings::BufferScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LinkedAnimLayer \ +static_assert(alignof(FAnimNode_LinkedAnimLayer) == 0x000008, "Wrong alignment on FAnimNode_LinkedAnimLayer"); \ +static_assert(sizeof(FAnimNode_LinkedAnimLayer) == 0x0000C8, "Wrong size on FAnimNode_LinkedAnimLayer"); \ +static_assert(offsetof(FAnimNode_LinkedAnimLayer, Interface) == 0x0000B8, "Member 'FAnimNode_LinkedAnimLayer::Interface' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedAnimLayer, Layer) == 0x0000C0, "Member 'FAnimNode_LinkedAnimLayer::Layer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLensBloomSettings \ +static_assert(alignof(FLensBloomSettings) == 0x000008, "Wrong alignment on FLensBloomSettings"); \ +static_assert(sizeof(FLensBloomSettings) == 0x0000C0, "Wrong size on FLensBloomSettings"); \ +static_assert(offsetof(FLensBloomSettings, GaussianSum) == 0x000000, "Member 'FLensBloomSettings::GaussianSum' has a wrong offset!"); \ +static_assert(offsetof(FLensBloomSettings, Convolution) == 0x000088, "Member 'FLensBloomSettings::Convolution' has a wrong offset!"); \ +static_assert(offsetof(FLensBloomSettings, Method) == 0x0000B8, "Member 'FLensBloomSettings::Method' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLensImperfectionSettings \ +static_assert(alignof(FLensImperfectionSettings) == 0x000008, "Wrong alignment on FLensImperfectionSettings"); \ +static_assert(sizeof(FLensImperfectionSettings) == 0x000020, "Wrong size on FLensImperfectionSettings"); \ +static_assert(offsetof(FLensImperfectionSettings, DirtMask) == 0x000000, "Member 'FLensImperfectionSettings::DirtMask' has a wrong offset!"); \ +static_assert(offsetof(FLensImperfectionSettings, DirtMaskIntensity) == 0x000008, "Member 'FLensImperfectionSettings::DirtMaskIntensity' has a wrong offset!"); \ +static_assert(offsetof(FLensImperfectionSettings, DirtMaskTint) == 0x00000C, "Member 'FLensImperfectionSettings::DirtMaskTint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedAnimRelevancyData \ +static_assert(alignof(FCachedAnimRelevancyData) == 0x000004, "Wrong alignment on FCachedAnimRelevancyData"); \ +static_assert(sizeof(FCachedAnimRelevancyData) == 0x00001C, "Wrong size on FCachedAnimRelevancyData"); \ +static_assert(offsetof(FCachedAnimRelevancyData, StateMachineName) == 0x000000, "Member 'FCachedAnimRelevancyData::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(FCachedAnimRelevancyData, StateName) == 0x000008, "Member 'FCachedAnimRelevancyData::StateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLensSettings \ +static_assert(alignof(FLensSettings) == 0x000008, "Wrong alignment on FLensSettings"); \ +static_assert(sizeof(FLensSettings) == 0x0000E8, "Wrong size on FLensSettings"); \ +static_assert(offsetof(FLensSettings, Bloom) == 0x000000, "Member 'FLensSettings::Bloom' has a wrong offset!"); \ +static_assert(offsetof(FLensSettings, Imperfections) == 0x0000C0, "Member 'FLensSettings::Imperfections' has a wrong offset!"); \ +static_assert(offsetof(FLensSettings, ChromaticAberration) == 0x0000E0, "Member 'FLensSettings::ChromaticAberration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraExposureSettings \ +static_assert(alignof(FCameraExposureSettings) == 0x000008, "Wrong alignment on FCameraExposureSettings"); \ +static_assert(sizeof(FCameraExposureSettings) == 0x000040, "Wrong size on FCameraExposureSettings"); \ +static_assert(offsetof(FCameraExposureSettings, Method) == 0x000000, "Member 'FCameraExposureSettings::Method' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, LowPercent) == 0x000004, "Member 'FCameraExposureSettings::LowPercent' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, HighPercent) == 0x000008, "Member 'FCameraExposureSettings::HighPercent' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, MinBrightness) == 0x00000C, "Member 'FCameraExposureSettings::MinBrightness' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, MaxBrightness) == 0x000010, "Member 'FCameraExposureSettings::MaxBrightness' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, SpeedUp) == 0x000014, "Member 'FCameraExposureSettings::SpeedUp' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, SpeedDown) == 0x000018, "Member 'FCameraExposureSettings::SpeedDown' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, Bias) == 0x00001C, "Member 'FCameraExposureSettings::Bias' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, BiasCurve) == 0x000020, "Member 'FCameraExposureSettings::BiasCurve' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, MeterMask) == 0x000028, "Member 'FCameraExposureSettings::MeterMask' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, HistogramLogMin) == 0x000030, "Member 'FCameraExposureSettings::HistogramLogMin' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, HistogramLogMax) == 0x000034, "Member 'FCameraExposureSettings::HistogramLogMax' has a wrong offset!"); \ +static_assert(offsetof(FCameraExposureSettings, CalibrationConstant) == 0x000038, "Member 'FCameraExposureSettings::CalibrationConstant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSceneViewExtensionIsActiveFunctor \ +static_assert(alignof(FSceneViewExtensionIsActiveFunctor) == 0x000010, "Wrong alignment on FSceneViewExtensionIsActiveFunctor"); \ +static_assert(sizeof(FSceneViewExtensionIsActiveFunctor) == 0x000050, "Wrong size on FSceneViewExtensionIsActiveFunctor"); \ + +#define DUMPER7_ASSERTS_FAudioEffectParameters \ +static_assert(alignof(FAudioEffectParameters) == 0x000008, "Wrong alignment on FAudioEffectParameters"); \ +static_assert(sizeof(FAudioEffectParameters) == 0x000008, "Wrong size on FAudioEffectParameters"); \ + +#define DUMPER7_ASSERTS_FSkelMeshSkinWeightInfo \ +static_assert(alignof(FSkelMeshSkinWeightInfo) == 0x000004, "Wrong alignment on FSkelMeshSkinWeightInfo"); \ +static_assert(sizeof(FSkelMeshSkinWeightInfo) == 0x00003C, "Wrong size on FSkelMeshSkinWeightInfo"); \ +static_assert(offsetof(FSkelMeshSkinWeightInfo, Bones) == 0x000000, "Member 'FSkelMeshSkinWeightInfo::Bones' has a wrong offset!"); \ +static_assert(offsetof(FSkelMeshSkinWeightInfo, Weights) == 0x000030, "Member 'FSkelMeshSkinWeightInfo::Weights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkelMeshComponentLODInfo \ +static_assert(alignof(FSkelMeshComponentLODInfo) == 0x000008, "Wrong alignment on FSkelMeshComponentLODInfo"); \ +static_assert(sizeof(FSkelMeshComponentLODInfo) == 0x000028, "Wrong size on FSkelMeshComponentLODInfo"); \ +static_assert(offsetof(FSkelMeshComponentLODInfo, HiddenMaterials) == 0x000000, "Member 'FSkelMeshComponentLODInfo::HiddenMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationActiveTransitionEntry \ +static_assert(alignof(FAnimationActiveTransitionEntry) == 0x000008, "Wrong alignment on FAnimationActiveTransitionEntry"); \ +static_assert(sizeof(FAnimationActiveTransitionEntry) == 0x0000C8, "Wrong size on FAnimationActiveTransitionEntry"); \ +static_assert(offsetof(FAnimationActiveTransitionEntry, BlendProfile) == 0x0000B8, "Member 'FAnimationActiveTransitionEntry::BlendProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVertexOffsetUsage \ +static_assert(alignof(FVertexOffsetUsage) == 0x000004, "Wrong alignment on FVertexOffsetUsage"); \ +static_assert(sizeof(FVertexOffsetUsage) == 0x000004, "Wrong size on FVertexOffsetUsage"); \ +static_assert(offsetof(FVertexOffsetUsage, Usage) == 0x000000, "Member 'FVertexOffsetUsage::Usage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrecomputedSkyLightInstanceData \ +static_assert(alignof(FPrecomputedSkyLightInstanceData) == 0x000010, "Wrong alignment on FPrecomputedSkyLightInstanceData"); \ +static_assert(sizeof(FPrecomputedSkyLightInstanceData) == 0x000170, "Wrong size on FPrecomputedSkyLightInstanceData"); \ +static_assert(offsetof(FPrecomputedSkyLightInstanceData, LightGuid) == 0x0000B8, "Member 'FPrecomputedSkyLightInstanceData::LightGuid' has a wrong offset!"); \ +static_assert(offsetof(FPrecomputedSkyLightInstanceData, AverageBrightness) == 0x0000C8, "Member 'FPrecomputedSkyLightInstanceData::AverageBrightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTrajectorySampleRange \ +static_assert(alignof(FTrajectorySampleRange) == 0x000008, "Wrong alignment on FTrajectorySampleRange"); \ +static_assert(sizeof(FTrajectorySampleRange) == 0x000010, "Wrong size on FTrajectorySampleRange"); \ +static_assert(offsetof(FTrajectorySampleRange, Samples) == 0x000000, "Member 'FTrajectorySampleRange::Samples' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoftWorldReference \ +static_assert(alignof(FSoftWorldReference) == 0x000008, "Wrong alignment on FSoftWorldReference"); \ +static_assert(sizeof(FSoftWorldReference) == 0x000028, "Wrong size on FSoftWorldReference"); \ +static_assert(offsetof(FSoftWorldReference, WorldAsset) == 0x000000, "Member 'FSoftWorldReference::WorldAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttenuationSubmixSendSettings \ +static_assert(alignof(FAttenuationSubmixSendSettings) == 0x000008, "Wrong alignment on FAttenuationSubmixSendSettings"); \ +static_assert(sizeof(FAttenuationSubmixSendSettings) == 0x0000A8, "Wrong size on FAttenuationSubmixSendSettings"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, Submix) == 0x000000, "Member 'FAttenuationSubmixSendSettings::Submix' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, SubmixSendMethod) == 0x000008, "Member 'FAttenuationSubmixSendSettings::SubmixSendMethod' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, SubmixSendLevelMin) == 0x00000C, "Member 'FAttenuationSubmixSendSettings::SubmixSendLevelMin' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, SubmixSendLevelMax) == 0x000010, "Member 'FAttenuationSubmixSendSettings::SubmixSendLevelMax' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, SubmixSendDistanceMin) == 0x000014, "Member 'FAttenuationSubmixSendSettings::SubmixSendDistanceMin' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, SubmixSendDistanceMax) == 0x000018, "Member 'FAttenuationSubmixSendSettings::SubmixSendDistanceMax' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, ManualSubmixSendLevel) == 0x00001C, "Member 'FAttenuationSubmixSendSettings::ManualSubmixSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FAttenuationSubmixSendSettings, CustomSubmixSendCurve) == 0x000020, "Member 'FAttenuationSubmixSendSettings::CustomSubmixSendCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundAttenuationSettings \ +static_assert(alignof(FSoundAttenuationSettings) == 0x000008, "Wrong alignment on FSoundAttenuationSettings"); \ +static_assert(sizeof(FSoundAttenuationSettings) == 0x0003D0, "Wrong size on FSoundAttenuationSettings"); \ +static_assert(offsetof(FSoundAttenuationSettings, SpatializationAlgorithm) == 0x0000C2, "Member 'FSoundAttenuationSettings::SpatializationAlgorithm' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, AudioLinkSettingsOverride) == 0x0000C8, "Member 'FSoundAttenuationSettings::AudioLinkSettingsOverride' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, BinauralRadius) == 0x0000D0, "Member 'FSoundAttenuationSettings::BinauralRadius' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, CustomLowpassAirAbsorptionCurve) == 0x0000D8, "Member 'FSoundAttenuationSettings::CustomLowpassAirAbsorptionCurve' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, CustomHighpassAirAbsorptionCurve) == 0x000160, "Member 'FSoundAttenuationSettings::CustomHighpassAirAbsorptionCurve' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, AbsorptionMethod) == 0x0001E8, "Member 'FSoundAttenuationSettings::AbsorptionMethod' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, OcclusionTraceChannel) == 0x0001E9, "Member 'FSoundAttenuationSettings::OcclusionTraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ReverbSendMethod) == 0x0001EA, "Member 'FSoundAttenuationSettings::ReverbSendMethod' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PriorityAttenuationMethod) == 0x0001EB, "Member 'FSoundAttenuationSettings::PriorityAttenuationMethod' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonSpatializedRadiusStart) == 0x0001EC, "Member 'FSoundAttenuationSettings::NonSpatializedRadiusStart' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonSpatializedRadiusEnd) == 0x0001F0, "Member 'FSoundAttenuationSettings::NonSpatializedRadiusEnd' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonSpatializedRadiusMode) == 0x0001F4, "Member 'FSoundAttenuationSettings::NonSpatializedRadiusMode' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, StereoSpread) == 0x0001F8, "Member 'FSoundAttenuationSettings::StereoSpread' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, LPFRadiusMin) == 0x0001FC, "Member 'FSoundAttenuationSettings::LPFRadiusMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, LPFRadiusMax) == 0x000200, "Member 'FSoundAttenuationSettings::LPFRadiusMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, LPFFrequencyAtMin) == 0x000204, "Member 'FSoundAttenuationSettings::LPFFrequencyAtMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, LPFFrequencyAtMax) == 0x000208, "Member 'FSoundAttenuationSettings::LPFFrequencyAtMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, HPFFrequencyAtMin) == 0x00020C, "Member 'FSoundAttenuationSettings::HPFFrequencyAtMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, HPFFrequencyAtMax) == 0x000210, "Member 'FSoundAttenuationSettings::HPFFrequencyAtMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusAzimuth) == 0x000214, "Member 'FSoundAttenuationSettings::FocusAzimuth' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonFocusAzimuth) == 0x000218, "Member 'FSoundAttenuationSettings::NonFocusAzimuth' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusDistanceScale) == 0x00021C, "Member 'FSoundAttenuationSettings::FocusDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonFocusDistanceScale) == 0x000220, "Member 'FSoundAttenuationSettings::NonFocusDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusPriorityScale) == 0x000224, "Member 'FSoundAttenuationSettings::FocusPriorityScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonFocusPriorityScale) == 0x000228, "Member 'FSoundAttenuationSettings::NonFocusPriorityScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusVolumeAttenuation) == 0x00022C, "Member 'FSoundAttenuationSettings::FocusVolumeAttenuation' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, NonFocusVolumeAttenuation) == 0x000230, "Member 'FSoundAttenuationSettings::NonFocusVolumeAttenuation' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusAttackInterpSpeed) == 0x000234, "Member 'FSoundAttenuationSettings::FocusAttackInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, FocusReleaseInterpSpeed) == 0x000238, "Member 'FSoundAttenuationSettings::FocusReleaseInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, OcclusionLowPassFilterFrequency) == 0x00023C, "Member 'FSoundAttenuationSettings::OcclusionLowPassFilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, OcclusionVolumeAttenuation) == 0x000240, "Member 'FSoundAttenuationSettings::OcclusionVolumeAttenuation' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, OcclusionInterpolationTime) == 0x000244, "Member 'FSoundAttenuationSettings::OcclusionInterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ReverbWetLevelMin) == 0x000248, "Member 'FSoundAttenuationSettings::ReverbWetLevelMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ReverbWetLevelMax) == 0x00024C, "Member 'FSoundAttenuationSettings::ReverbWetLevelMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ReverbDistanceMin) == 0x000250, "Member 'FSoundAttenuationSettings::ReverbDistanceMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ReverbDistanceMax) == 0x000254, "Member 'FSoundAttenuationSettings::ReverbDistanceMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ManualReverbSendLevel) == 0x000258, "Member 'FSoundAttenuationSettings::ManualReverbSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PriorityAttenuationMin) == 0x00025C, "Member 'FSoundAttenuationSettings::PriorityAttenuationMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PriorityAttenuationMax) == 0x000260, "Member 'FSoundAttenuationSettings::PriorityAttenuationMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PriorityAttenuationDistanceMin) == 0x000264, "Member 'FSoundAttenuationSettings::PriorityAttenuationDistanceMin' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PriorityAttenuationDistanceMax) == 0x000268, "Member 'FSoundAttenuationSettings::PriorityAttenuationDistanceMax' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, ManualPriorityAttenuation) == 0x00026C, "Member 'FSoundAttenuationSettings::ManualPriorityAttenuation' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, CustomReverbSendCurve) == 0x000270, "Member 'FSoundAttenuationSettings::CustomReverbSendCurve' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, SubmixSendSettings) == 0x0002F8, "Member 'FSoundAttenuationSettings::SubmixSendSettings' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, CustomPriorityAttenuationCurve) == 0x000308, "Member 'FSoundAttenuationSettings::CustomPriorityAttenuationCurve' has a wrong offset!"); \ +static_assert(offsetof(FSoundAttenuationSettings, PluginSettings) == 0x000390, "Member 'FSoundAttenuationSettings::PluginSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInteriorSettings \ +static_assert(alignof(FInteriorSettings) == 0x000004, "Wrong alignment on FInteriorSettings"); \ +static_assert(sizeof(FInteriorSettings) == 0x000024, "Wrong size on FInteriorSettings"); \ +static_assert(offsetof(FInteriorSettings, bIsWorldSettings) == 0x000000, "Member 'FInteriorSettings::bIsWorldSettings' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, ExteriorVolume) == 0x000004, "Member 'FInteriorSettings::ExteriorVolume' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, ExteriorTime) == 0x000008, "Member 'FInteriorSettings::ExteriorTime' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, ExteriorLPF) == 0x00000C, "Member 'FInteriorSettings::ExteriorLPF' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, ExteriorLPFTime) == 0x000010, "Member 'FInteriorSettings::ExteriorLPFTime' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, InteriorVolume) == 0x000014, "Member 'FInteriorSettings::InteriorVolume' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, InteriorTime) == 0x000018, "Member 'FInteriorSettings::InteriorTime' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, InteriorLPF) == 0x00001C, "Member 'FInteriorSettings::InteriorLPF' has a wrong offset!"); \ +static_assert(offsetof(FInteriorSettings, InteriorLPFTime) == 0x000020, "Member 'FInteriorSettings::InteriorLPFTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectChainEntry \ +static_assert(alignof(FSourceEffectChainEntry) == 0x000008, "Wrong alignment on FSourceEffectChainEntry"); \ +static_assert(sizeof(FSourceEffectChainEntry) == 0x000010, "Wrong size on FSourceEffectChainEntry"); \ +static_assert(offsetof(FSourceEffectChainEntry, Preset) == 0x000000, "Member 'FSourceEffectChainEntry::Preset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundGroup \ +static_assert(alignof(FSoundGroup) == 0x000008, "Wrong alignment on FSoundGroup"); \ +static_assert(sizeof(FSoundGroup) == 0x000020, "Wrong size on FSoundGroup"); \ +static_assert(offsetof(FSoundGroup, SoundGroup) == 0x000000, "Member 'FSoundGroup::SoundGroup' has a wrong offset!"); \ +static_assert(offsetof(FSoundGroup, DisplayName) == 0x000008, "Member 'FSoundGroup::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FSoundGroup, DecompressedDuration) == 0x00001C, "Member 'FSoundGroup::DecompressedDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModulatorContinuousParams \ +static_assert(alignof(FModulatorContinuousParams) == 0x000004, "Wrong alignment on FModulatorContinuousParams"); \ +static_assert(sizeof(FModulatorContinuousParams) == 0x000020, "Wrong size on FModulatorContinuousParams"); \ +static_assert(offsetof(FModulatorContinuousParams, ParameterName) == 0x000000, "Member 'FModulatorContinuousParams::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, Default) == 0x000008, "Member 'FModulatorContinuousParams::Default' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, MinInput) == 0x00000C, "Member 'FModulatorContinuousParams::MinInput' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, MaxInput) == 0x000010, "Member 'FModulatorContinuousParams::MaxInput' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, MinOutput) == 0x000014, "Member 'FModulatorContinuousParams::MinOutput' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, MaxOutput) == 0x000018, "Member 'FModulatorContinuousParams::MaxOutput' has a wrong offset!"); \ +static_assert(offsetof(FModulatorContinuousParams, ParamMode) == 0x00001C, "Member 'FModulatorContinuousParams::ParamMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundSourceBusSendInfo \ +static_assert(alignof(FSoundSourceBusSendInfo) == 0x000008, "Wrong alignment on FSoundSourceBusSendInfo"); \ +static_assert(sizeof(FSoundSourceBusSendInfo) == 0x0000B8, "Wrong size on FSoundSourceBusSendInfo"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, SourceBusSendLevelControlMethod) == 0x000000, "Member 'FSoundSourceBusSendInfo::SourceBusSendLevelControlMethod' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, SoundSourceBus) == 0x000008, "Member 'FSoundSourceBusSendInfo::SoundSourceBus' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, AudioBus) == 0x000010, "Member 'FSoundSourceBusSendInfo::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, SendLevel) == 0x000018, "Member 'FSoundSourceBusSendInfo::SendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, MinSendLevel) == 0x00001C, "Member 'FSoundSourceBusSendInfo::MinSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, MaxSendLevel) == 0x000020, "Member 'FSoundSourceBusSendInfo::MaxSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, MinSendDistance) == 0x000024, "Member 'FSoundSourceBusSendInfo::MinSendDistance' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, MaxSendDistance) == 0x000028, "Member 'FSoundSourceBusSendInfo::MaxSendDistance' has a wrong offset!"); \ +static_assert(offsetof(FSoundSourceBusSendInfo, CustomSendLevelCurve) == 0x000030, "Member 'FSoundSourceBusSendInfo::CustomSendLevelCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundTimecodeOffset \ +static_assert(alignof(FSoundTimecodeOffset) == 0x000008, "Wrong alignment on FSoundTimecodeOffset"); \ +static_assert(sizeof(FSoundTimecodeOffset) == 0x000008, "Wrong size on FSoundTimecodeOffset"); \ +static_assert(offsetof(FSoundTimecodeOffset, NumOfSecondsSinceMidnight) == 0x000000, "Member 'FSoundTimecodeOffset::NumOfSecondsSinceMidnight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputScaleBiasClampConstants \ +static_assert(alignof(FInputScaleBiasClampConstants) == 0x000004, "Wrong alignment on FInputScaleBiasClampConstants"); \ +static_assert(sizeof(FInputScaleBiasClampConstants) == 0x00002C, "Wrong size on FInputScaleBiasClampConstants"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, bMapRange) == 0x000000, "Member 'FInputScaleBiasClampConstants::bMapRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, bClampResult) == 0x000001, "Member 'FInputScaleBiasClampConstants::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, bInterpResult) == 0x000002, "Member 'FInputScaleBiasClampConstants::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, InRange) == 0x000004, "Member 'FInputScaleBiasClampConstants::InRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, OutRange) == 0x00000C, "Member 'FInputScaleBiasClampConstants::OutRange' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, Scale) == 0x000014, "Member 'FInputScaleBiasClampConstants::Scale' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, Bias) == 0x000018, "Member 'FInputScaleBiasClampConstants::Bias' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, ClampMin) == 0x00001C, "Member 'FInputScaleBiasClampConstants::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, ClampMax) == 0x000020, "Member 'FInputScaleBiasClampConstants::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, InterpSpeedIncreasing) == 0x000024, "Member 'FInputScaleBiasClampConstants::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FInputScaleBiasClampConstants, InterpSpeedDecreasing) == 0x000028, "Member 'FInputScaleBiasClampConstants::InterpSpeedDecreasing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequencePlayerBase \ +static_assert(alignof(FAnimNode_SequencePlayerBase) == 0x000008, "Wrong alignment on FAnimNode_SequencePlayerBase"); \ +static_assert(sizeof(FAnimNode_SequencePlayerBase) == 0x000040, "Wrong size on FAnimNode_SequencePlayerBase"); \ +static_assert(offsetof(FAnimNode_SequencePlayerBase, PlayRateScaleBiasClampState) == 0x000038, "Member 'FAnimNode_SequencePlayerBase::PlayRateScaleBiasClampState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequencePlayer_Standalone \ +static_assert(alignof(FAnimNode_SequencePlayer_Standalone) == 0x000008, "Wrong alignment on FAnimNode_SequencePlayer_Standalone"); \ +static_assert(sizeof(FAnimNode_SequencePlayer_Standalone) == 0x000098, "Wrong size on FAnimNode_SequencePlayer_Standalone"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, GroupName) == 0x000040, "Member 'FAnimNode_SequencePlayer_Standalone::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, GroupRole) == 0x000048, "Member 'FAnimNode_SequencePlayer_Standalone::GroupRole' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, Method) == 0x000049, "Member 'FAnimNode_SequencePlayer_Standalone::Method' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, bIgnoreForRelevancyTest) == 0x00004A, "Member 'FAnimNode_SequencePlayer_Standalone::bIgnoreForRelevancyTest' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, Sequence) == 0x000050, "Member 'FAnimNode_SequencePlayer_Standalone::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, PlayRateBasis) == 0x000058, "Member 'FAnimNode_SequencePlayer_Standalone::PlayRateBasis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, PlayRate) == 0x00005C, "Member 'FAnimNode_SequencePlayer_Standalone::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, PlayRateScaleBiasClampConstants) == 0x000060, "Member 'FAnimNode_SequencePlayer_Standalone::PlayRateScaleBiasClampConstants' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, StartPosition) == 0x00008C, "Member 'FAnimNode_SequencePlayer_Standalone::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, bLoopAnimation) == 0x000090, "Member 'FAnimNode_SequencePlayer_Standalone::bLoopAnimation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequencePlayer_Standalone, bStartFromMatchingPose) == 0x000091, "Member 'FAnimNode_SequencePlayer_Standalone::bStartFromMatchingPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamedAudioPlatformData \ +static_assert(alignof(FStreamedAudioPlatformData) == 0x000008, "Wrong alignment on FStreamedAudioPlatformData"); \ +static_assert(sizeof(FStreamedAudioPlatformData) == 0x000018, "Wrong size on FStreamedAudioPlatformData"); \ + +#define DUMPER7_ASSERTS_FAnimNode_TransitionPoseEvaluator \ +static_assert(alignof(FAnimNode_TransitionPoseEvaluator) == 0x000008, "Wrong alignment on FAnimNode_TransitionPoseEvaluator"); \ +static_assert(sizeof(FAnimNode_TransitionPoseEvaluator) == 0x0000A8, "Wrong size on FAnimNode_TransitionPoseEvaluator"); \ +static_assert(offsetof(FAnimNode_TransitionPoseEvaluator, FramesToCachePose) == 0x000088, "Member 'FAnimNode_TransitionPoseEvaluator::FramesToCachePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TransitionPoseEvaluator, DataSource) == 0x000090, "Member 'FAnimNode_TransitionPoseEvaluator::DataSource' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TransitionPoseEvaluator, EvaluatorMode) == 0x000091, "Member 'FAnimNode_TransitionPoseEvaluator::EvaluatorMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveSpectralData \ +static_assert(alignof(FSoundWaveSpectralData) == 0x000004, "Wrong alignment on FSoundWaveSpectralData"); \ +static_assert(sizeof(FSoundWaveSpectralData) == 0x00000C, "Wrong size on FSoundWaveSpectralData"); \ +static_assert(offsetof(FSoundWaveSpectralData, FrequencyHz) == 0x000000, "Member 'FSoundWaveSpectralData::FrequencyHz' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralData, Magnitude) == 0x000004, "Member 'FSoundWaveSpectralData::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralData, NormalizedMagnitude) == 0x000008, "Member 'FSoundWaveSpectralData::NormalizedMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveSpectralDataPerSound \ +static_assert(alignof(FSoundWaveSpectralDataPerSound) == 0x000008, "Wrong alignment on FSoundWaveSpectralDataPerSound"); \ +static_assert(sizeof(FSoundWaveSpectralDataPerSound) == 0x000020, "Wrong size on FSoundWaveSpectralDataPerSound"); \ +static_assert(offsetof(FSoundWaveSpectralDataPerSound, SpectralData) == 0x000000, "Member 'FSoundWaveSpectralDataPerSound::SpectralData' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralDataPerSound, PlaybackTime) == 0x000010, "Member 'FSoundWaveSpectralDataPerSound::PlaybackTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralDataPerSound, SoundWave) == 0x000018, "Member 'FSoundWaveSpectralDataPerSound::SoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceTriggerFeedbackData \ +static_assert(alignof(FDeviceTriggerFeedbackData) == 0x000008, "Wrong alignment on FDeviceTriggerFeedbackData"); \ +static_assert(sizeof(FDeviceTriggerFeedbackData) == 0x000010, "Wrong size on FDeviceTriggerFeedbackData"); \ +static_assert(offsetof(FDeviceTriggerFeedbackData, FeedbackPositionCurve) == 0x000000, "Member 'FDeviceTriggerFeedbackData::FeedbackPositionCurve' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerFeedbackData, FeedbackStrenghCurve) == 0x000008, "Member 'FDeviceTriggerFeedbackData::FeedbackStrenghCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveSpectralDataEntry \ +static_assert(alignof(FSoundWaveSpectralDataEntry) == 0x000004, "Wrong alignment on FSoundWaveSpectralDataEntry"); \ +static_assert(sizeof(FSoundWaveSpectralDataEntry) == 0x000008, "Wrong size on FSoundWaveSpectralDataEntry"); \ +static_assert(offsetof(FSoundWaveSpectralDataEntry, Magnitude) == 0x000000, "Member 'FSoundWaveSpectralDataEntry::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralDataEntry, NormalizedMagnitude) == 0x000004, "Member 'FSoundWaveSpectralDataEntry::NormalizedMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveSpectralTimeData \ +static_assert(alignof(FSoundWaveSpectralTimeData) == 0x000008, "Wrong alignment on FSoundWaveSpectralTimeData"); \ +static_assert(sizeof(FSoundWaveSpectralTimeData) == 0x000018, "Wrong size on FSoundWaveSpectralTimeData"); \ +static_assert(offsetof(FSoundWaveSpectralTimeData, Data) == 0x000000, "Member 'FSoundWaveSpectralTimeData::Data' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveSpectralTimeData, TimeSec) == 0x000010, "Member 'FSoundWaveSpectralTimeData::TimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveCuePoint \ +static_assert(alignof(FSoundWaveCuePoint) == 0x000008, "Wrong alignment on FSoundWaveCuePoint"); \ +static_assert(sizeof(FSoundWaveCuePoint) == 0x000028, "Wrong size on FSoundWaveCuePoint"); \ +static_assert(offsetof(FSoundWaveCuePoint, CuePointID) == 0x000000, "Member 'FSoundWaveCuePoint::CuePointID' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveCuePoint, Label) == 0x000008, "Member 'FSoundWaveCuePoint::Label' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveCuePoint, FramePosition) == 0x000018, "Member 'FSoundWaveCuePoint::FramePosition' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveCuePoint, FrameLength) == 0x00001C, "Member 'FSoundWaveCuePoint::FrameLength' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveCuePoint, bIsLoopRegion) == 0x000020, "Member 'FSoundWaveCuePoint::bIsLoopRegion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundWaveTimecodeInfo \ +static_assert(alignof(FSoundWaveTimecodeInfo) == 0x000008, "Wrong alignment on FSoundWaveTimecodeInfo"); \ +static_assert(sizeof(FSoundWaveTimecodeInfo) == 0x000070, "Wrong size on FSoundWaveTimecodeInfo"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, NumSamplesSinceMidnight) == 0x000000, "Member 'FSoundWaveTimecodeInfo::NumSamplesSinceMidnight' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, NumSamplesPerSecond) == 0x000008, "Member 'FSoundWaveTimecodeInfo::NumSamplesPerSecond' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, Description) == 0x000010, "Member 'FSoundWaveTimecodeInfo::Description' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, OriginatorTime) == 0x000020, "Member 'FSoundWaveTimecodeInfo::OriginatorTime' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, OriginatorDate) == 0x000030, "Member 'FSoundWaveTimecodeInfo::OriginatorDate' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, OriginatorDescription) == 0x000040, "Member 'FSoundWaveTimecodeInfo::OriginatorDescription' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, OriginatorReference) == 0x000050, "Member 'FSoundWaveTimecodeInfo::OriginatorReference' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, TimecodeRate) == 0x000060, "Member 'FSoundWaveTimecodeInfo::TimecodeRate' has a wrong offset!"); \ +static_assert(offsetof(FSoundWaveTimecodeInfo, bTimecodeIsDropFrame) == 0x000068, "Member 'FSoundWaveTimecodeInfo::bTimecodeIsDropFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTranslationTrack \ +static_assert(alignof(FTranslationTrack) == 0x000008, "Wrong alignment on FTranslationTrack"); \ +static_assert(sizeof(FTranslationTrack) == 0x000020, "Wrong size on FTranslationTrack"); \ +static_assert(offsetof(FTranslationTrack, PosKeys) == 0x000000, "Member 'FTranslationTrack::PosKeys' has a wrong offset!"); \ +static_assert(offsetof(FTranslationTrack, Times) == 0x000010, "Member 'FTranslationTrack::Times' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshComponentLODInfo \ +static_assert(alignof(FStaticMeshComponentLODInfo) == 0x000008, "Wrong alignment on FStaticMeshComponentLODInfo"); \ +static_assert(sizeof(FStaticMeshComponentLODInfo) == 0x000090, "Wrong size on FStaticMeshComponentLODInfo"); \ + +#define DUMPER7_ASSERTS_FInputClampState \ +static_assert(alignof(FInputClampState) == 0x000004, "Wrong alignment on FInputClampState"); \ +static_assert(sizeof(FInputClampState) == 0x000008, "Wrong size on FInputClampState"); \ + +#define DUMPER7_ASSERTS_FStaticSwitchParameter \ +static_assert(alignof(FStaticSwitchParameter) == 0x000004, "Wrong alignment on FStaticSwitchParameter"); \ +static_assert(sizeof(FStaticSwitchParameter) == 0x000028, "Wrong size on FStaticSwitchParameter"); \ +static_assert(offsetof(FStaticSwitchParameter, Value) == 0x000024, "Member 'FStaticSwitchParameter::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticComponentMaskParameter \ +static_assert(alignof(FStaticComponentMaskParameter) == 0x000004, "Wrong alignment on FStaticComponentMaskParameter"); \ +static_assert(sizeof(FStaticComponentMaskParameter) == 0x000028, "Wrong size on FStaticComponentMaskParameter"); \ +static_assert(offsetof(FStaticComponentMaskParameter, R) == 0x000024, "Member 'FStaticComponentMaskParameter::R' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskParameter, G) == 0x000025, "Member 'FStaticComponentMaskParameter::G' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskParameter, B) == 0x000026, "Member 'FStaticComponentMaskParameter::B' has a wrong offset!"); \ +static_assert(offsetof(FStaticComponentMaskParameter, A) == 0x000027, "Member 'FStaticComponentMaskParameter::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticTerrainLayerWeightParameter \ +static_assert(alignof(FStaticTerrainLayerWeightParameter) == 0x000004, "Wrong alignment on FStaticTerrainLayerWeightParameter"); \ +static_assert(sizeof(FStaticTerrainLayerWeightParameter) == 0x000034, "Wrong size on FStaticTerrainLayerWeightParameter"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, ParameterInfo) == 0x000000, "Member 'FStaticTerrainLayerWeightParameter::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, ExpressionGUID) == 0x000010, "Member 'FStaticTerrainLayerWeightParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, bOverride) == 0x000020, "Member 'FStaticTerrainLayerWeightParameter::bOverride' has a wrong offset!"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, LayerName) == 0x000024, "Member 'FStaticTerrainLayerWeightParameter::LayerName' has a wrong offset!"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, WeightmapIndex) == 0x00002C, "Member 'FStaticTerrainLayerWeightParameter::WeightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(FStaticTerrainLayerWeightParameter, bWeightBasedBlend) == 0x000030, "Member 'FStaticTerrainLayerWeightParameter::bWeightBasedBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticParameterSetRuntimeData \ +static_assert(alignof(FStaticParameterSetRuntimeData) == 0x000008, "Wrong alignment on FStaticParameterSetRuntimeData"); \ +static_assert(sizeof(FStaticParameterSetRuntimeData) == 0x000038, "Wrong size on FStaticParameterSetRuntimeData"); \ +static_assert(offsetof(FStaticParameterSetRuntimeData, StaticSwitchParameters) == 0x000000, "Member 'FStaticParameterSetRuntimeData::StaticSwitchParameters' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterSetRuntimeData, MaterialLayers) == 0x000010, "Member 'FStaticParameterSetRuntimeData::MaterialLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticParameterSetEditorOnlyData \ +static_assert(alignof(FStaticParameterSetEditorOnlyData) == 0x000008, "Wrong alignment on FStaticParameterSetEditorOnlyData"); \ +static_assert(sizeof(FStaticParameterSetEditorOnlyData) == 0x0000A0, "Wrong size on FStaticParameterSetEditorOnlyData"); \ +static_assert(offsetof(FStaticParameterSetEditorOnlyData, StaticSwitchParameters) == 0x000000, "Member 'FStaticParameterSetEditorOnlyData::StaticSwitchParameters' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterSetEditorOnlyData, StaticComponentMaskParameters) == 0x000010, "Member 'FStaticParameterSetEditorOnlyData::StaticComponentMaskParameters' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterSetEditorOnlyData, TerrainLayerWeightParameters) == 0x000020, "Member 'FStaticParameterSetEditorOnlyData::TerrainLayerWeightParameters' has a wrong offset!"); \ +static_assert(offsetof(FStaticParameterSetEditorOnlyData, MaterialLayers) == 0x000030, "Member 'FStaticParameterSetEditorOnlyData::MaterialLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationTransitionRule \ +static_assert(alignof(FAnimationTransitionRule) == 0x000004, "Wrong alignment on FAnimationTransitionRule"); \ +static_assert(sizeof(FAnimationTransitionRule) == 0x000010, "Wrong size on FAnimationTransitionRule"); \ +static_assert(offsetof(FAnimationTransitionRule, RuleToExecute) == 0x000000, "Member 'FAnimationTransitionRule::RuleToExecute' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionRule, TransitionReturnVal) == 0x000008, "Member 'FAnimationTransitionRule::TransitionReturnVal' has a wrong offset!"); \ +static_assert(offsetof(FAnimationTransitionRule, TransitionIndex) == 0x00000C, "Member 'FAnimationTransitionRule::TransitionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticParameterSet \ +static_assert(alignof(FStaticParameterSet) == 0x000008, "Wrong alignment on FStaticParameterSet"); \ +static_assert(sizeof(FStaticParameterSet) == 0x000038, "Wrong size on FStaticParameterSet"); \ + +#define DUMPER7_ASSERTS_FEquirectProps \ +static_assert(alignof(FEquirectProps) == 0x000008, "Wrong alignment on FEquirectProps"); \ +static_assert(sizeof(FEquirectProps) == 0x000098, "Wrong size on FEquirectProps"); \ +static_assert(offsetof(FEquirectProps, LeftUVRect) == 0x000000, "Member 'FEquirectProps::LeftUVRect' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, RightUVRect) == 0x000028, "Member 'FEquirectProps::RightUVRect' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, LeftScale) == 0x000050, "Member 'FEquirectProps::LeftScale' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, RightScale) == 0x000060, "Member 'FEquirectProps::RightScale' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, LeftBias) == 0x000070, "Member 'FEquirectProps::LeftBias' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, RightBias) == 0x000080, "Member 'FEquirectProps::RightBias' has a wrong offset!"); \ +static_assert(offsetof(FEquirectProps, Radius) == 0x000090, "Member 'FEquirectProps::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamingTextureBuildInfo \ +static_assert(alignof(FStreamingTextureBuildInfo) == 0x000004, "Wrong alignment on FStreamingTextureBuildInfo"); \ +static_assert(sizeof(FStreamingTextureBuildInfo) == 0x00000C, "Wrong size on FStreamingTextureBuildInfo"); \ +static_assert(offsetof(FStreamingTextureBuildInfo, PackedRelativeBox) == 0x000000, "Member 'FStreamingTextureBuildInfo::PackedRelativeBox' has a wrong offset!"); \ +static_assert(offsetof(FStreamingTextureBuildInfo, TextureLevelIndex) == 0x000004, "Member 'FStreamingTextureBuildInfo::TextureLevelIndex' has a wrong offset!"); \ +static_assert(offsetof(FStreamingTextureBuildInfo, TexelFactor) == 0x000008, "Member 'FStreamingTextureBuildInfo::TexelFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimelineEventEntry \ +static_assert(alignof(FTimelineEventEntry) == 0x000004, "Wrong alignment on FTimelineEventEntry"); \ +static_assert(sizeof(FTimelineEventEntry) == 0x000014, "Wrong size on FTimelineEventEntry"); \ +static_assert(offsetof(FTimelineEventEntry, Time) == 0x000000, "Member 'FTimelineEventEntry::Time' has a wrong offset!"); \ +static_assert(offsetof(FTimelineEventEntry, EventFunc) == 0x000004, "Member 'FTimelineEventEntry::EventFunc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimelineVectorTrack \ +static_assert(alignof(FTimelineVectorTrack) == 0x000008, "Wrong alignment on FTimelineVectorTrack"); \ +static_assert(sizeof(FTimelineVectorTrack) == 0x000040, "Wrong size on FTimelineVectorTrack"); \ +static_assert(offsetof(FTimelineVectorTrack, VectorCurve) == 0x000000, "Member 'FTimelineVectorTrack::VectorCurve' has a wrong offset!"); \ +static_assert(offsetof(FTimelineVectorTrack, InterpFunc) == 0x000008, "Member 'FTimelineVectorTrack::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(FTimelineVectorTrack, TrackName) == 0x000018, "Member 'FTimelineVectorTrack::TrackName' has a wrong offset!"); \ +static_assert(offsetof(FTimelineVectorTrack, VectorPropertyName) == 0x000020, "Member 'FTimelineVectorTrack::VectorPropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimelineFloatTrack \ +static_assert(alignof(FTimelineFloatTrack) == 0x000008, "Wrong alignment on FTimelineFloatTrack"); \ +static_assert(sizeof(FTimelineFloatTrack) == 0x000040, "Wrong size on FTimelineFloatTrack"); \ +static_assert(offsetof(FTimelineFloatTrack, FloatCurve) == 0x000000, "Member 'FTimelineFloatTrack::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(FTimelineFloatTrack, InterpFunc) == 0x000008, "Member 'FTimelineFloatTrack::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(FTimelineFloatTrack, TrackName) == 0x000018, "Member 'FTimelineFloatTrack::TrackName' has a wrong offset!"); \ +static_assert(offsetof(FTimelineFloatTrack, FloatPropertyName) == 0x000020, "Member 'FTimelineFloatTrack::FloatPropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimelineLinearColorTrack \ +static_assert(alignof(FTimelineLinearColorTrack) == 0x000008, "Wrong alignment on FTimelineLinearColorTrack"); \ +static_assert(sizeof(FTimelineLinearColorTrack) == 0x000040, "Wrong size on FTimelineLinearColorTrack"); \ +static_assert(offsetof(FTimelineLinearColorTrack, LinearColorCurve) == 0x000000, "Member 'FTimelineLinearColorTrack::LinearColorCurve' has a wrong offset!"); \ +static_assert(offsetof(FTimelineLinearColorTrack, InterpFunc) == 0x000008, "Member 'FTimelineLinearColorTrack::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(FTimelineLinearColorTrack, TrackName) == 0x000018, "Member 'FTimelineLinearColorTrack::TrackName' has a wrong offset!"); \ +static_assert(offsetof(FTimelineLinearColorTrack, LinearColorPropertyName) == 0x000020, "Member 'FTimelineLinearColorTrack::LinearColorPropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTimeline \ +static_assert(alignof(FTimeline) == 0x000008, "Wrong alignment on FTimeline"); \ +static_assert(sizeof(FTimeline) == 0x000098, "Wrong size on FTimeline"); \ +static_assert(offsetof(FTimeline, LengthMode) == 0x000000, "Member 'FTimeline::LengthMode' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, Length) == 0x000004, "Member 'FTimeline::Length' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, PlayRate) == 0x000008, "Member 'FTimeline::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, Position) == 0x00000C, "Member 'FTimeline::Position' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, Events) == 0x000010, "Member 'FTimeline::Events' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, InterpVectors) == 0x000020, "Member 'FTimeline::InterpVectors' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, InterpFloats) == 0x000030, "Member 'FTimeline::InterpFloats' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, InterpLinearColors) == 0x000040, "Member 'FTimeline::InterpLinearColors' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, TimelinePostUpdateFunc) == 0x000050, "Member 'FTimeline::TimelinePostUpdateFunc' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, TimelineFinishedFunc) == 0x000060, "Member 'FTimeline::TimelineFinishedFunc' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, PropertySetObject) == 0x000070, "Member 'FTimeline::PropertySetObject' has a wrong offset!"); \ +static_assert(offsetof(FTimeline, DirectionPropertyName) == 0x000078, "Member 'FTimeline::DirectionPropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionActorFilter \ +static_assert(alignof(FWorldPartitionActorFilter) == 0x000001, "Wrong alignment on FWorldPartitionActorFilter"); \ +static_assert(sizeof(FWorldPartitionActorFilter) == 0x000001, "Wrong size on FWorldPartitionActorFilter"); \ + +#define DUMPER7_ASSERTS_FRuntimePartitionHLODSetup \ +static_assert(alignof(FRuntimePartitionHLODSetup) == 0x000008, "Wrong alignment on FRuntimePartitionHLODSetup"); \ +static_assert(sizeof(FRuntimePartitionHLODSetup) == 0x000010, "Wrong size on FRuntimePartitionHLODSetup"); \ +static_assert(offsetof(FRuntimePartitionHLODSetup, HLODLayer) == 0x000000, "Member 'FRuntimePartitionHLODSetup::HLODLayer' has a wrong offset!"); \ +static_assert(offsetof(FRuntimePartitionHLODSetup, PartitionLayer) == 0x000008, "Member 'FRuntimePartitionHLODSetup::PartitionLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_StateMachine \ +static_assert(alignof(FAnimNode_StateMachine) == 0x000008, "Wrong alignment on FAnimNode_StateMachine"); \ +static_assert(sizeof(FAnimNode_StateMachine) == 0x0000C8, "Wrong size on FAnimNode_StateMachine"); \ +static_assert(offsetof(FAnimNode_StateMachine, StateMachineIndexInClass) == 0x000010, "Member 'FAnimNode_StateMachine::StateMachineIndexInClass' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, MaxTransitionsPerFrame) == 0x000014, "Member 'FAnimNode_StateMachine::MaxTransitionsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, MaxTransitionsRequests) == 0x000018, "Member 'FAnimNode_StateMachine::MaxTransitionsRequests' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, bSkipFirstUpdateTransition) == 0x00001C, "Member 'FAnimNode_StateMachine::bSkipFirstUpdateTransition' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, bReinitializeOnBecomingRelevant) == 0x00001D, "Member 'FAnimNode_StateMachine::bReinitializeOnBecomingRelevant' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, bCreateNotifyMetaData) == 0x00001E, "Member 'FAnimNode_StateMachine::bCreateNotifyMetaData' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_StateMachine, bAllowConduitEntryStates) == 0x00001F, "Member 'FAnimNode_StateMachine::bAllowConduitEntryStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuntimePartitionDesc \ +static_assert(alignof(FRuntimePartitionDesc) == 0x000001, "Wrong alignment on FRuntimePartitionDesc"); \ +static_assert(sizeof(FRuntimePartitionDesc) == 0x000001, "Wrong size on FRuntimePartitionDesc"); \ + +#define DUMPER7_ASSERTS_FLightmassWorldInfoSettings \ +static_assert(alignof(FLightmassWorldInfoSettings) == 0x000004, "Wrong alignment on FLightmassWorldInfoSettings"); \ +static_assert(sizeof(FLightmassWorldInfoSettings) == 0x00004C, "Wrong size on FLightmassWorldInfoSettings"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, StaticLightingLevelScale) == 0x000000, "Member 'FLightmassWorldInfoSettings::StaticLightingLevelScale' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, NumIndirectLightingBounces) == 0x000004, "Member 'FLightmassWorldInfoSettings::NumIndirectLightingBounces' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, NumSkyLightingBounces) == 0x000008, "Member 'FLightmassWorldInfoSettings::NumSkyLightingBounces' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, IndirectLightingQuality) == 0x00000C, "Member 'FLightmassWorldInfoSettings::IndirectLightingQuality' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, IndirectLightingSmoothness) == 0x000010, "Member 'FLightmassWorldInfoSettings::IndirectLightingSmoothness' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, EnvironmentColor) == 0x000014, "Member 'FLightmassWorldInfoSettings::EnvironmentColor' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, EnvironmentIntensity) == 0x000018, "Member 'FLightmassWorldInfoSettings::EnvironmentIntensity' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, EmissiveBoost) == 0x00001C, "Member 'FLightmassWorldInfoSettings::EmissiveBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, DiffuseBoost) == 0x000020, "Member 'FLightmassWorldInfoSettings::DiffuseBoost' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, VolumeLightingMethod) == 0x000024, "Member 'FLightmassWorldInfoSettings::VolumeLightingMethod' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, VolumetricLightmapDetailCellSize) == 0x000028, "Member 'FLightmassWorldInfoSettings::VolumetricLightmapDetailCellSize' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, VolumetricLightmapMaximumBrickMemoryMb) == 0x00002C, "Member 'FLightmassWorldInfoSettings::VolumetricLightmapMaximumBrickMemoryMb' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, VolumetricLightmapSphericalHarmonicSmoothing) == 0x000030, "Member 'FLightmassWorldInfoSettings::VolumetricLightmapSphericalHarmonicSmoothing' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, VolumeLightSamplePlacementScale) == 0x000034, "Member 'FLightmassWorldInfoSettings::VolumeLightSamplePlacementScale' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, DirectIlluminationOcclusionFraction) == 0x000038, "Member 'FLightmassWorldInfoSettings::DirectIlluminationOcclusionFraction' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, IndirectIlluminationOcclusionFraction) == 0x00003C, "Member 'FLightmassWorldInfoSettings::IndirectIlluminationOcclusionFraction' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, OcclusionExponent) == 0x000040, "Member 'FLightmassWorldInfoSettings::OcclusionExponent' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, FullyOccludedSamplesFraction) == 0x000044, "Member 'FLightmassWorldInfoSettings::FullyOccludedSamplesFraction' has a wrong offset!"); \ +static_assert(offsetof(FLightmassWorldInfoSettings, MaxOcclusionDistance) == 0x000048, "Member 'FLightmassWorldInfoSettings::MaxOcclusionDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetViewer \ +static_assert(alignof(FNetViewer) == 0x000008, "Wrong alignment on FNetViewer"); \ +static_assert(sizeof(FNetViewer) == 0x000048, "Wrong size on FNetViewer"); \ +static_assert(offsetof(FNetViewer, Connection) == 0x000000, "Member 'FNetViewer::Connection' has a wrong offset!"); \ +static_assert(offsetof(FNetViewer, InViewer) == 0x000008, "Member 'FNetViewer::InViewer' has a wrong offset!"); \ +static_assert(offsetof(FNetViewer, ViewTarget) == 0x000010, "Member 'FNetViewer::ViewTarget' has a wrong offset!"); \ +static_assert(offsetof(FNetViewer, ViewLocation) == 0x000018, "Member 'FNetViewer::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(FNetViewer, ViewDir) == 0x000030, "Member 'FNetViewer::ViewDir' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystemInstance_NodeRelevancy \ +static_assert(alignof(FAnimSubsystemInstance_NodeRelevancy) == 0x000008, "Wrong alignment on FAnimSubsystemInstance_NodeRelevancy"); \ +static_assert(sizeof(FAnimSubsystemInstance_NodeRelevancy) == 0x0000A8, "Wrong size on FAnimSubsystemInstance_NodeRelevancy"); \ + +#define DUMPER7_ASSERTS_FMeshApproximationSettings \ +static_assert(alignof(FMeshApproximationSettings) == 0x000008, "Wrong alignment on FMeshApproximationSettings"); \ +static_assert(sizeof(FMeshApproximationSettings) == 0x000128, "Wrong size on FMeshApproximationSettings"); \ +static_assert(offsetof(FMeshApproximationSettings, OutputType) == 0x000000, "Member 'FMeshApproximationSettings::OutputType' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, ApproximationAccuracy) == 0x000004, "Member 'FMeshApproximationSettings::ApproximationAccuracy' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, ClampVoxelDimension) == 0x000008, "Member 'FMeshApproximationSettings::ClampVoxelDimension' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bAttemptAutoThickening) == 0x00000C, "Member 'FMeshApproximationSettings::bAttemptAutoThickening' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, TargetMinThicknessMultiplier) == 0x000010, "Member 'FMeshApproximationSettings::TargetMinThicknessMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bIgnoreTinyParts) == 0x000014, "Member 'FMeshApproximationSettings::bIgnoreTinyParts' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, TinyPartSizeMultiplier) == 0x000018, "Member 'FMeshApproximationSettings::TinyPartSizeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, BaseCapping) == 0x00001C, "Member 'FMeshApproximationSettings::BaseCapping' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, WindingThreshold) == 0x000020, "Member 'FMeshApproximationSettings::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bFillGaps) == 0x000024, "Member 'FMeshApproximationSettings::bFillGaps' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, GapDistance) == 0x000028, "Member 'FMeshApproximationSettings::GapDistance' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, OcclusionMethod) == 0x00002C, "Member 'FMeshApproximationSettings::OcclusionMethod' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bOccludeFromBottom) == 0x00002D, "Member 'FMeshApproximationSettings::bOccludeFromBottom' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, SimplifyMethod) == 0x00002E, "Member 'FMeshApproximationSettings::SimplifyMethod' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, TargetTriCount) == 0x000030, "Member 'FMeshApproximationSettings::TargetTriCount' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, TrianglesPerM) == 0x000034, "Member 'FMeshApproximationSettings::TrianglesPerM' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, GeometricDeviation) == 0x000038, "Member 'FMeshApproximationSettings::GeometricDeviation' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, GroundClipping) == 0x00003C, "Member 'FMeshApproximationSettings::GroundClipping' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, GroundClippingZHeight) == 0x000040, "Member 'FMeshApproximationSettings::GroundClippingZHeight' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bEstimateHardNormals) == 0x000044, "Member 'FMeshApproximationSettings::bEstimateHardNormals' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, HardNormalAngle) == 0x000048, "Member 'FMeshApproximationSettings::HardNormalAngle' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, UVGenerationMethod) == 0x00004C, "Member 'FMeshApproximationSettings::UVGenerationMethod' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, InitialPatchCount) == 0x000050, "Member 'FMeshApproximationSettings::InitialPatchCount' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, CurvatureAlignment) == 0x000054, "Member 'FMeshApproximationSettings::CurvatureAlignment' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, MergingThreshold) == 0x000058, "Member 'FMeshApproximationSettings::MergingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, MaxAngleDeviation) == 0x00005C, "Member 'FMeshApproximationSettings::MaxAngleDeviation' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bGenerateNaniteEnabledMesh) == 0x000060, "Member 'FMeshApproximationSettings::bGenerateNaniteEnabledMesh' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, NaniteProxyTrianglePercent) == 0x000064, "Member 'FMeshApproximationSettings::NaniteProxyTrianglePercent' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bSupportRayTracing) == 0x000068, "Member 'FMeshApproximationSettings::bSupportRayTracing' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bAllowDistanceField) == 0x000069, "Member 'FMeshApproximationSettings::bAllowDistanceField' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, MultiSamplingAA) == 0x00006C, "Member 'FMeshApproximationSettings::MultiSamplingAA' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, RenderCaptureResolution) == 0x000070, "Member 'FMeshApproximationSettings::RenderCaptureResolution' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, MaterialSettings) == 0x000078, "Member 'FMeshApproximationSettings::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, CaptureFieldOfView) == 0x000118, "Member 'FMeshApproximationSettings::CaptureFieldOfView' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, NearPlaneDist) == 0x00011C, "Member 'FMeshApproximationSettings::NearPlaneDist' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bUseRenderLODMeshes) == 0x000120, "Member 'FMeshApproximationSettings::bUseRenderLODMeshes' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bEnableSimplifyPrePass) == 0x000121, "Member 'FMeshApproximationSettings::bEnableSimplifyPrePass' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bEnableParallelBaking) == 0x000122, "Member 'FMeshApproximationSettings::bEnableParallelBaking' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bPrintDebugMessages) == 0x000123, "Member 'FMeshApproximationSettings::bPrintDebugMessages' has a wrong offset!"); \ +static_assert(offsetof(FMeshApproximationSettings, bEmitFullDebugMesh) == 0x000124, "Member 'FMeshApproximationSettings::bEmitFullDebugMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshProxySettings \ +static_assert(alignof(FMeshProxySettings) == 0x000008, "Wrong alignment on FMeshProxySettings"); \ +static_assert(sizeof(FMeshProxySettings) == 0x000100, "Wrong size on FMeshProxySettings"); \ +static_assert(offsetof(FMeshProxySettings, ScreenSize) == 0x000000, "Member 'FMeshProxySettings::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, VoxelSize) == 0x000004, "Member 'FMeshProxySettings::VoxelSize' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, MaterialSettings) == 0x000008, "Member 'FMeshProxySettings::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, MergeDistance) == 0x0000A8, "Member 'FMeshProxySettings::MergeDistance' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, UnresolvedGeometryColor) == 0x0000AC, "Member 'FMeshProxySettings::UnresolvedGeometryColor' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, MaxRayCastDist) == 0x0000B0, "Member 'FMeshProxySettings::MaxRayCastDist' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, HardAngleThreshold) == 0x0000B4, "Member 'FMeshProxySettings::HardAngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, LightMapResolution) == 0x0000B8, "Member 'FMeshProxySettings::LightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, NormalCalculationMethod) == 0x0000BC, "Member 'FMeshProxySettings::NormalCalculationMethod' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, LandscapeCullingPrecision) == 0x0000BD, "Member 'FMeshProxySettings::LandscapeCullingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FMeshProxySettings, NaniteSettings) == 0x0000C0, "Member 'FMeshProxySettings::NaniteSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHierarchicalSimplification \ +static_assert(alignof(FHierarchicalSimplification) == 0x000008, "Wrong alignment on FHierarchicalSimplification"); \ +static_assert(sizeof(FHierarchicalSimplification) == 0x000350, "Wrong size on FHierarchicalSimplification"); \ +static_assert(offsetof(FHierarchicalSimplification, TransitionScreenSize) == 0x000000, "Member 'FHierarchicalSimplification::TransitionScreenSize' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, OverrideDrawDistance) == 0x000004, "Member 'FHierarchicalSimplification::OverrideDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, SimplificationMethod) == 0x000009, "Member 'FHierarchicalSimplification::SimplificationMethod' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, ProxySetting) == 0x000010, "Member 'FHierarchicalSimplification::ProxySetting' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, MergeSetting) == 0x000110, "Member 'FHierarchicalSimplification::MergeSetting' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, ApproximateSettings) == 0x000218, "Member 'FHierarchicalSimplification::ApproximateSettings' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, DesiredBoundRadius) == 0x000340, "Member 'FHierarchicalSimplification::DesiredBoundRadius' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, DesiredFillingPercentage) == 0x000344, "Member 'FHierarchicalSimplification::DesiredFillingPercentage' has a wrong offset!"); \ +static_assert(offsetof(FHierarchicalSimplification, MinNumberOfActorsToBuild) == 0x000348, "Member 'FHierarchicalSimplification::MinNumberOfActorsToBuild' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigConfiguration \ +static_assert(alignof(FRigConfiguration) == 0x000008, "Wrong alignment on FRigConfiguration"); \ +static_assert(sizeof(FRigConfiguration) == 0x000018, "Wrong size on FRigConfiguration"); \ +static_assert(offsetof(FRigConfiguration, Rig) == 0x000000, "Member 'FRigConfiguration::Rig' has a wrong offset!"); \ +static_assert(offsetof(FRigConfiguration, BoneMappingTable) == 0x000008, "Member 'FRigConfiguration::BoneMappingTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNaniteSettings \ +static_assert(alignof(FNaniteSettings) == 0x000001, "Wrong alignment on FNaniteSettings"); \ +static_assert(sizeof(FNaniteSettings) == 0x000001, "Wrong size on FNaniteSettings"); \ +static_assert(offsetof(FNaniteSettings, bAllowMaskedMaterials) == 0x000000, "Member 'FNaniteSettings::bAllowMaskedMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBroadphaseSettings \ +static_assert(alignof(FBroadphaseSettings) == 0x000008, "Wrong alignment on FBroadphaseSettings"); \ +static_assert(sizeof(FBroadphaseSettings) == 0x000080, "Wrong size on FBroadphaseSettings"); \ +static_assert(offsetof(FBroadphaseSettings, bUseMBPOnClient) == 0x000000, "Member 'FBroadphaseSettings::bUseMBPOnClient' has a wrong offset!"); \ +static_assert(offsetof(FBroadphaseSettings, bUseMBPOnServer) == 0x000001, "Member 'FBroadphaseSettings::bUseMBPOnServer' has a wrong offset!"); \ +static_assert(offsetof(FBroadphaseSettings, bUseMBPOuterBounds) == 0x000002, "Member 'FBroadphaseSettings::bUseMBPOuterBounds' has a wrong offset!"); \ +static_assert(offsetof(FBroadphaseSettings, MBPBounds) == 0x000008, "Member 'FBroadphaseSettings::MBPBounds' has a wrong offset!"); \ +static_assert(offsetof(FBroadphaseSettings, MBPOuterBounds) == 0x000040, "Member 'FBroadphaseSettings::MBPOuterBounds' has a wrong offset!"); \ +static_assert(offsetof(FBroadphaseSettings, MBPNumSubdivs) == 0x000078, "Member 'FBroadphaseSettings::MBPNumSubdivs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuartzPulseOverrideStep \ +static_assert(alignof(FQuartzPulseOverrideStep) == 0x000004, "Wrong alignment on FQuartzPulseOverrideStep"); \ +static_assert(sizeof(FQuartzPulseOverrideStep) == 0x000008, "Wrong size on FQuartzPulseOverrideStep"); \ +static_assert(offsetof(FQuartzPulseOverrideStep, NumberOfPulses) == 0x000000, "Member 'FQuartzPulseOverrideStep::NumberOfPulses' has a wrong offset!"); \ +static_assert(offsetof(FQuartzPulseOverrideStep, PulseDuration) == 0x000004, "Member 'FQuartzPulseOverrideStep::PulseDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuartzTimeSignature \ +static_assert(alignof(FQuartzTimeSignature) == 0x000008, "Wrong alignment on FQuartzTimeSignature"); \ +static_assert(sizeof(FQuartzTimeSignature) == 0x000018, "Wrong size on FQuartzTimeSignature"); \ +static_assert(offsetof(FQuartzTimeSignature, NumBeats) == 0x000000, "Member 'FQuartzTimeSignature::NumBeats' has a wrong offset!"); \ +static_assert(offsetof(FQuartzTimeSignature, BeatType) == 0x000004, "Member 'FQuartzTimeSignature::BeatType' has a wrong offset!"); \ +static_assert(offsetof(FQuartzTimeSignature, OptionalPulseOverride) == 0x000008, "Member 'FQuartzTimeSignature::OptionalPulseOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuartzClockSettings \ +static_assert(alignof(FQuartzClockSettings) == 0x000008, "Wrong alignment on FQuartzClockSettings"); \ +static_assert(sizeof(FQuartzClockSettings) == 0x000020, "Wrong size on FQuartzClockSettings"); \ +static_assert(offsetof(FQuartzClockSettings, TimeSignature) == 0x000000, "Member 'FQuartzClockSettings::TimeSignature' has a wrong offset!"); \ +static_assert(offsetof(FQuartzClockSettings, bIgnoreLevelChange) == 0x000018, "Member 'FQuartzClockSettings::bIgnoreLevelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerPlatformFrameRate \ +static_assert(alignof(FPerPlatformFrameRate) == 0x000004, "Wrong alignment on FPerPlatformFrameRate"); \ +static_assert(sizeof(FPerPlatformFrameRate) == 0x000008, "Wrong size on FPerPlatformFrameRate"); \ +static_assert(offsetof(FPerPlatformFrameRate, Default) == 0x000000, "Member 'FPerPlatformFrameRate::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuartzQuantizationBoundary \ +static_assert(alignof(FQuartzQuantizationBoundary) == 0x000008, "Wrong alignment on FQuartzQuantizationBoundary"); \ +static_assert(sizeof(FQuartzQuantizationBoundary) == 0x000020, "Wrong size on FQuartzQuantizationBoundary"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, Quantization) == 0x000000, "Member 'FQuartzQuantizationBoundary::Quantization' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, Multiplier) == 0x000004, "Member 'FQuartzQuantizationBoundary::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, CountingReferencePoint) == 0x000008, "Member 'FQuartzQuantizationBoundary::CountingReferencePoint' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, bFireOnClockStart) == 0x000009, "Member 'FQuartzQuantizationBoundary::bFireOnClockStart' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, bCancelCommandIfClockIsNotRunning) == 0x00000A, "Member 'FQuartzQuantizationBoundary::bCancelCommandIfClockIsNotRunning' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, bResetClockOnQueued) == 0x00000B, "Member 'FQuartzQuantizationBoundary::bResetClockOnQueued' has a wrong offset!"); \ +static_assert(offsetof(FQuartzQuantizationBoundary, bResumeClockOnQueued) == 0x00000C, "Member 'FQuartzQuantizationBoundary::bResumeClockOnQueued' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavAvoidanceData \ +static_assert(alignof(FNavAvoidanceData) == 0x000008, "Wrong alignment on FNavAvoidanceData"); \ +static_assert(sizeof(FNavAvoidanceData) == 0x000058, "Wrong size on FNavAvoidanceData"); \ + +#define DUMPER7_ASSERTS_FNavLinkAuxiliaryId \ +static_assert(alignof(FNavLinkAuxiliaryId) == 0x000008, "Wrong alignment on FNavLinkAuxiliaryId"); \ +static_assert(sizeof(FNavLinkAuxiliaryId) == 0x000008, "Wrong size on FNavLinkAuxiliaryId"); \ +static_assert(offsetof(FNavLinkAuxiliaryId, ID) == 0x000000, "Member 'FNavLinkAuxiliaryId::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavLinkId \ +static_assert(alignof(FNavLinkId) == 0x000008, "Wrong alignment on FNavLinkId"); \ +static_assert(sizeof(FNavLinkId) == 0x000008, "Wrong size on FNavLinkId"); \ +static_assert(offsetof(FNavLinkId, ID) == 0x000000, "Member 'FNavLinkId::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPooledCameraShakes \ +static_assert(alignof(FPooledCameraShakes) == 0x000008, "Wrong alignment on FPooledCameraShakes"); \ +static_assert(sizeof(FPooledCameraShakes) == 0x000010, "Wrong size on FPooledCameraShakes"); \ +static_assert(offsetof(FPooledCameraShakes, PooledShakes) == 0x000000, "Member 'FPooledCameraShakes::PooledShakes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavDataConfig \ +static_assert(alignof(FNavDataConfig) == 0x000008, "Wrong alignment on FNavDataConfig"); \ +static_assert(sizeof(FNavDataConfig) == 0x000088, "Wrong size on FNavDataConfig"); \ +static_assert(offsetof(FNavDataConfig, Name) == 0x000038, "Member 'FNavDataConfig::Name' has a wrong offset!"); \ +static_assert(offsetof(FNavDataConfig, Color) == 0x000040, "Member 'FNavDataConfig::Color' has a wrong offset!"); \ +static_assert(offsetof(FNavDataConfig, DefaultQueryExtent) == 0x000048, "Member 'FNavDataConfig::DefaultQueryExtent' has a wrong offset!"); \ +static_assert(offsetof(FNavDataConfig, NavDataClass) == 0x000060, "Member 'FNavDataConfig::NavDataClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFreezablePerPlatformInt \ +static_assert(alignof(FFreezablePerPlatformInt) == 0x000004, "Wrong alignment on FFreezablePerPlatformInt"); \ +static_assert(sizeof(FFreezablePerPlatformInt) == 0x000004, "Wrong size on FFreezablePerPlatformInt"); \ + +#define DUMPER7_ASSERTS_FAlphaBlendArgs \ +static_assert(alignof(FAlphaBlendArgs) == 0x000008, "Wrong alignment on FAlphaBlendArgs"); \ +static_assert(sizeof(FAlphaBlendArgs) == 0x000010, "Wrong size on FAlphaBlendArgs"); \ +static_assert(offsetof(FAlphaBlendArgs, CustomCurve) == 0x000000, "Member 'FAlphaBlendArgs::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FAlphaBlendArgs, BlendTime) == 0x000008, "Member 'FAlphaBlendArgs::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FAlphaBlendArgs, BlendOption) == 0x00000C, "Member 'FAlphaBlendArgs::BlendOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSampleData \ +static_assert(alignof(FBlendSampleData) == 0x000008, "Wrong alignment on FBlendSampleData"); \ +static_assert(sizeof(FBlendSampleData) == 0x000060, "Wrong size on FBlendSampleData"); \ +static_assert(offsetof(FBlendSampleData, SampleDataIndex) == 0x000000, "Member 'FBlendSampleData::SampleDataIndex' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, Animation) == 0x000008, "Member 'FBlendSampleData::Animation' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, TotalWeight) == 0x000010, "Member 'FBlendSampleData::TotalWeight' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, WeightRate) == 0x000014, "Member 'FBlendSampleData::WeightRate' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, Time) == 0x000018, "Member 'FBlendSampleData::Time' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, PreviousTime) == 0x00001C, "Member 'FBlendSampleData::PreviousTime' has a wrong offset!"); \ +static_assert(offsetof(FBlendSampleData, SamplePlayRate) == 0x000020, "Member 'FBlendSampleData::SamplePlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendFilter \ +static_assert(alignof(FBlendFilter) == 0x000008, "Wrong alignment on FBlendFilter"); \ +static_assert(sizeof(FBlendFilter) == 0x000010, "Wrong size on FBlendFilter"); \ + +#define DUMPER7_ASSERTS_FCullDistanceSizePair \ +static_assert(alignof(FCullDistanceSizePair) == 0x000004, "Wrong alignment on FCullDistanceSizePair"); \ +static_assert(sizeof(FCullDistanceSizePair) == 0x000008, "Wrong size on FCullDistanceSizePair"); \ +static_assert(offsetof(FCullDistanceSizePair, Size) == 0x000000, "Member 'FCullDistanceSizePair::Size' has a wrong offset!"); \ +static_assert(offsetof(FCullDistanceSizePair, CullDistance) == 0x000004, "Member 'FCullDistanceSizePair::CullDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMarkerSyncAnimPosition \ +static_assert(alignof(FMarkerSyncAnimPosition) == 0x000004, "Wrong alignment on FMarkerSyncAnimPosition"); \ +static_assert(sizeof(FMarkerSyncAnimPosition) == 0x000014, "Wrong size on FMarkerSyncAnimPosition"); \ +static_assert(offsetof(FMarkerSyncAnimPosition, PreviousMarkerName) == 0x000000, "Member 'FMarkerSyncAnimPosition::PreviousMarkerName' has a wrong offset!"); \ +static_assert(offsetof(FMarkerSyncAnimPosition, NextMarkerName) == 0x000008, "Member 'FMarkerSyncAnimPosition::NextMarkerName' has a wrong offset!"); \ +static_assert(offsetof(FMarkerSyncAnimPosition, PositionBetweenMarkers) == 0x000010, "Member 'FMarkerSyncAnimPosition::PositionBetweenMarkers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimTickRecord \ +static_assert(alignof(FAnimTickRecord) == 0x000008, "Wrong alignment on FAnimTickRecord"); \ +static_assert(sizeof(FAnimTickRecord) == 0x000070, "Wrong size on FAnimTickRecord"); \ +static_assert(offsetof(FAnimTickRecord, SourceAsset) == 0x000000, "Member 'FAnimTickRecord::SourceAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimGroupInstance \ +static_assert(alignof(FAnimGroupInstance) == 0x000008, "Wrong alignment on FAnimGroupInstance"); \ +static_assert(sizeof(FAnimGroupInstance) == 0x000078, "Wrong size on FAnimGroupInstance"); \ + +#define DUMPER7_ASSERTS_FAnimationGroupReference \ +static_assert(alignof(FAnimationGroupReference) == 0x000004, "Wrong alignment on FAnimationGroupReference"); \ +static_assert(sizeof(FAnimationGroupReference) == 0x000010, "Wrong size on FAnimationGroupReference"); \ +static_assert(offsetof(FAnimationGroupReference, Method) == 0x000000, "Member 'FAnimationGroupReference::Method' has a wrong offset!"); \ +static_assert(offsetof(FAnimationGroupReference, GroupName) == 0x000004, "Member 'FAnimationGroupReference::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimationGroupReference, GroupRole) == 0x00000C, "Member 'FAnimationGroupReference::GroupRole' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintInstanceAccessor \ +static_assert(alignof(FConstraintInstanceAccessor) == 0x000004, "Wrong alignment on FConstraintInstanceAccessor"); \ +static_assert(sizeof(FConstraintInstanceAccessor) == 0x00000C, "Wrong size on FConstraintInstanceAccessor"); \ +static_assert(offsetof(FConstraintInstanceAccessor, Owner) == 0x000000, "Member 'FConstraintInstanceAccessor::Owner' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstanceAccessor, Index) == 0x000008, "Member 'FConstraintInstanceAccessor::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateMachineStateDebugData \ +static_assert(alignof(FStateMachineStateDebugData) == 0x000004, "Wrong alignment on FStateMachineStateDebugData"); \ +static_assert(sizeof(FStateMachineStateDebugData) == 0x000010, "Wrong size on FStateMachineStateDebugData"); \ + +#define DUMPER7_ASSERTS_FStateMachineDebugData \ +static_assert(alignof(FStateMachineDebugData) == 0x000008, "Wrong alignment on FStateMachineDebugData"); \ +static_assert(sizeof(FStateMachineDebugData) == 0x000150, "Wrong size on FStateMachineDebugData"); \ + +#define DUMPER7_ASSERTS_FSimpleCurveKey \ +static_assert(alignof(FSimpleCurveKey) == 0x000004, "Wrong alignment on FSimpleCurveKey"); \ +static_assert(sizeof(FSimpleCurveKey) == 0x000008, "Wrong size on FSimpleCurveKey"); \ +static_assert(offsetof(FSimpleCurveKey, Time) == 0x000000, "Member 'FSimpleCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FSimpleCurveKey, Value) == 0x000004, "Member 'FSimpleCurveKey::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationFrameSnapshot \ +static_assert(alignof(FAnimationFrameSnapshot) == 0x000001, "Wrong alignment on FAnimationFrameSnapshot"); \ +static_assert(sizeof(FAnimationFrameSnapshot) == 0x000001, "Wrong size on FAnimationFrameSnapshot"); \ + +#define DUMPER7_ASSERTS_FAnimBlueprintMutableData \ +static_assert(alignof(FAnimBlueprintMutableData) == 0x000001, "Wrong alignment on FAnimBlueprintMutableData"); \ +static_assert(sizeof(FAnimBlueprintMutableData) == 0x000001, "Wrong size on FAnimBlueprintMutableData"); \ + +#define DUMPER7_ASSERTS_FPreviewMeshCollectionEntry \ +static_assert(alignof(FPreviewMeshCollectionEntry) == 0x000008, "Wrong alignment on FPreviewMeshCollectionEntry"); \ +static_assert(sizeof(FPreviewMeshCollectionEntry) == 0x000050, "Wrong size on FPreviewMeshCollectionEntry"); \ +static_assert(offsetof(FPreviewMeshCollectionEntry, SkeletalMesh) == 0x000000, "Member 'FPreviewMeshCollectionEntry::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FPreviewMeshCollectionEntry, AnimBlueprint) == 0x000028, "Member 'FPreviewMeshCollectionEntry::AnimBlueprint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimBlueprintFunctionData \ +static_assert(alignof(FAnimBlueprintFunctionData) == 0x000008, "Wrong alignment on FAnimBlueprintFunctionData"); \ +static_assert(sizeof(FAnimBlueprintFunctionData) == 0x000040, "Wrong size on FAnimBlueprintFunctionData"); \ +static_assert(offsetof(FAnimBlueprintFunctionData, OutputPoseNodeProperty) == 0x000000, "Member 'FAnimBlueprintFunctionData::OutputPoseNodeProperty' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunctionData, InputPoseNodeProperties) == 0x000020, "Member 'FAnimBlueprintFunctionData::InputPoseNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunctionData, InputProperties) == 0x000030, "Member 'FAnimBlueprintFunctionData::InputProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintInstanceBase \ +static_assert(alignof(FConstraintInstanceBase) == 0x000008, "Wrong alignment on FConstraintInstanceBase"); \ +static_assert(sizeof(FConstraintInstanceBase) == 0x000038, "Wrong size on FConstraintInstanceBase"); \ + +#define DUMPER7_ASSERTS_FConstraintInstance \ +static_assert(alignof(FConstraintInstance) == 0x000008, "Wrong alignment on FConstraintInstance"); \ +static_assert(sizeof(FConstraintInstance) == 0x000278, "Wrong size on FConstraintInstance"); \ +static_assert(offsetof(FConstraintInstance, JointName) == 0x000038, "Member 'FConstraintInstance::JointName' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, ConstraintBone1) == 0x000040, "Member 'FConstraintInstance::ConstraintBone1' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, ConstraintBone2) == 0x000048, "Member 'FConstraintInstance::ConstraintBone2' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, Pos1) == 0x000058, "Member 'FConstraintInstance::Pos1' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, PriAxis1) == 0x000070, "Member 'FConstraintInstance::PriAxis1' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, SecAxis1) == 0x000088, "Member 'FConstraintInstance::SecAxis1' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, Pos2) == 0x0000A0, "Member 'FConstraintInstance::Pos2' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, PriAxis2) == 0x0000B8, "Member 'FConstraintInstance::PriAxis2' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, SecAxis2) == 0x0000D0, "Member 'FConstraintInstance::SecAxis2' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, AngularRotationOffset) == 0x0000E8, "Member 'FConstraintInstance::AngularRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FConstraintInstance, ProfileInstance) == 0x000108, "Member 'FConstraintInstance::ProfileInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimBlueprintFunction \ +static_assert(alignof(FAnimBlueprintFunction) == 0x000008, "Wrong alignment on FAnimBlueprintFunction"); \ +static_assert(sizeof(FAnimBlueprintFunction) == 0x000078, "Wrong size on FAnimBlueprintFunction"); \ +static_assert(offsetof(FAnimBlueprintFunction, Name) == 0x000000, "Member 'FAnimBlueprintFunction::Name' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunction, Group) == 0x000008, "Member 'FAnimBlueprintFunction::Group' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunction, OutputPoseNodeIndex) == 0x000010, "Member 'FAnimBlueprintFunction::OutputPoseNodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunction, InputPoseNames) == 0x000018, "Member 'FAnimBlueprintFunction::InputPoseNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunction, InputPoseNodeIndices) == 0x000028, "Member 'FAnimBlueprintFunction::InputPoseNodeIndices' has a wrong offset!"); \ +static_assert(offsetof(FAnimBlueprintFunction, bImplemented) == 0x000070, "Member 'FAnimBlueprintFunction::bImplemented' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedPoseIndices \ +static_assert(alignof(FCachedPoseIndices) == 0x000008, "Wrong alignment on FCachedPoseIndices"); \ +static_assert(sizeof(FCachedPoseIndices) == 0x000010, "Wrong size on FCachedPoseIndices"); \ +static_assert(offsetof(FCachedPoseIndices, OrderedSavedPoseNodeIndices) == 0x000000, "Member 'FCachedPoseIndices::OrderedSavedPoseNodeIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGraphAssetPlayerInformation \ +static_assert(alignof(FGraphAssetPlayerInformation) == 0x000008, "Wrong alignment on FGraphAssetPlayerInformation"); \ +static_assert(sizeof(FGraphAssetPlayerInformation) == 0x000010, "Wrong size on FGraphAssetPlayerInformation"); \ +static_assert(offsetof(FGraphAssetPlayerInformation, PlayerNodeIndices) == 0x000000, "Member 'FGraphAssetPlayerInformation::PlayerNodeIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBPComponentClassOverride \ +static_assert(alignof(FBPComponentClassOverride) == 0x000008, "Wrong alignment on FBPComponentClassOverride"); \ +static_assert(sizeof(FBPComponentClassOverride) == 0x000010, "Wrong size on FBPComponentClassOverride"); \ +static_assert(offsetof(FBPComponentClassOverride, ComponentName) == 0x000000, "Member 'FBPComponentClassOverride::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FBPComponentClassOverride, ComponentClass) == 0x000008, "Member 'FBPComponentClassOverride::ComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimGraphBlendOptions \ +static_assert(alignof(FAnimGraphBlendOptions) == 0x000008, "Wrong alignment on FAnimGraphBlendOptions"); \ +static_assert(sizeof(FAnimGraphBlendOptions) == 0x000020, "Wrong size on FAnimGraphBlendOptions"); \ +static_assert(offsetof(FAnimGraphBlendOptions, BlendInTime) == 0x000000, "Member 'FAnimGraphBlendOptions::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimGraphBlendOptions, BlendInProfile) == 0x000008, "Member 'FAnimGraphBlendOptions::BlendInProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimGraphBlendOptions, BlendOutTime) == 0x000010, "Member 'FAnimGraphBlendOptions::BlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimGraphBlendOptions, BlendOutProfile) == 0x000018, "Member 'FAnimGraphBlendOptions::BlendOutProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionExtractionStep \ +static_assert(alignof(FRootMotionExtractionStep) == 0x000008, "Wrong alignment on FRootMotionExtractionStep"); \ +static_assert(sizeof(FRootMotionExtractionStep) == 0x000010, "Wrong size on FRootMotionExtractionStep"); \ +static_assert(offsetof(FRootMotionExtractionStep, AnimSequence) == 0x000000, "Member 'FRootMotionExtractionStep::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionExtractionStep, StartPosition) == 0x000008, "Member 'FRootMotionExtractionStep::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionExtractionStep, EndPosition) == 0x00000C, "Member 'FRootMotionExtractionStep::EndPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_UseCachedPose \ +static_assert(alignof(FAnimNode_UseCachedPose) == 0x000008, "Wrong alignment on FAnimNode_UseCachedPose"); \ +static_assert(sizeof(FAnimNode_UseCachedPose) == 0x000028, "Wrong size on FAnimNode_UseCachedPose"); \ +static_assert(offsetof(FAnimNode_UseCachedPose, LinkToCachingNode) == 0x000010, "Member 'FAnimNode_UseCachedPose::LinkToCachingNode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_UseCachedPose, CachePoseName) == 0x000020, "Member 'FAnimNode_UseCachedPose::CachePoseName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimUpdateContext \ +static_assert(alignof(FAnimUpdateContext) == 0x000008, "Wrong alignment on FAnimUpdateContext"); \ +static_assert(sizeof(FAnimUpdateContext) == 0x000010, "Wrong size on FAnimUpdateContext"); \ + +#define DUMPER7_ASSERTS_FAnimPoseContext \ +static_assert(alignof(FAnimPoseContext) == 0x000008, "Wrong alignment on FAnimPoseContext"); \ +static_assert(sizeof(FAnimPoseContext) == 0x000010, "Wrong size on FAnimPoseContext"); \ + +#define DUMPER7_ASSERTS_FCameraShakeScrubParams \ +static_assert(alignof(FCameraShakeScrubParams) == 0x000010, "Wrong alignment on FCameraShakeScrubParams"); \ +static_assert(sizeof(FCameraShakeScrubParams) == 0x0007E0, "Wrong size on FCameraShakeScrubParams"); \ +static_assert(offsetof(FCameraShakeScrubParams, AbsoluteTime) == 0x000000, "Member 'FCameraShakeScrubParams::AbsoluteTime' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeScrubParams, ShakeScale) == 0x000004, "Member 'FCameraShakeScrubParams::ShakeScale' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeScrubParams, DynamicScale) == 0x000008, "Member 'FCameraShakeScrubParams::DynamicScale' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeScrubParams, POV) == 0x000010, "Member 'FCameraShakeScrubParams::POV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimComponentSpacePoseContext \ +static_assert(alignof(FAnimComponentSpacePoseContext) == 0x000008, "Wrong alignment on FAnimComponentSpacePoseContext"); \ +static_assert(sizeof(FAnimComponentSpacePoseContext) == 0x000010, "Wrong size on FAnimComponentSpacePoseContext"); \ + +#define DUMPER7_ASSERTS_FA2CSPose \ +static_assert(alignof(FA2CSPose) == 0x000008, "Wrong alignment on FA2CSPose"); \ +static_assert(sizeof(FA2CSPose) == 0x000028, "Wrong size on FA2CSPose"); \ +static_assert(offsetof(FA2CSPose, ComponentSpaceFlags) == 0x000018, "Member 'FA2CSPose::ComponentSpaceFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositeSection \ +static_assert(alignof(FCompositeSection) == 0x000008, "Wrong alignment on FCompositeSection"); \ +static_assert(sizeof(FCompositeSection) == 0x000050, "Wrong size on FCompositeSection"); \ +static_assert(offsetof(FCompositeSection, SectionName) == 0x000030, "Member 'FCompositeSection::SectionName' has a wrong offset!"); \ +static_assert(offsetof(FCompositeSection, NextSectionName) == 0x000038, "Member 'FCompositeSection::NextSectionName' has a wrong offset!"); \ +static_assert(offsetof(FCompositeSection, MetaData) == 0x000040, "Member 'FCompositeSection::MetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchingPoint \ +static_assert(alignof(FBranchingPoint) == 0x000008, "Wrong alignment on FBranchingPoint"); \ +static_assert(sizeof(FBranchingPoint) == 0x000040, "Wrong size on FBranchingPoint"); \ +static_assert(offsetof(FBranchingPoint, EventName) == 0x000030, "Member 'FBranchingPoint::EventName' has a wrong offset!"); \ +static_assert(offsetof(FBranchingPoint, TriggerTimeOffset) == 0x000038, "Member 'FBranchingPoint::TriggerTimeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchingPointMarker \ +static_assert(alignof(FBranchingPointMarker) == 0x000004, "Wrong alignment on FBranchingPointMarker"); \ +static_assert(sizeof(FBranchingPointMarker) == 0x00000C, "Wrong size on FBranchingPointMarker"); \ +static_assert(offsetof(FBranchingPointMarker, NotifyIndex) == 0x000000, "Member 'FBranchingPointMarker::NotifyIndex' has a wrong offset!"); \ +static_assert(offsetof(FBranchingPointMarker, TriggerTime) == 0x000004, "Member 'FBranchingPointMarker::TriggerTime' has a wrong offset!"); \ +static_assert(offsetof(FBranchingPointMarker, NotifyEventType) == 0x000008, "Member 'FBranchingPointMarker::NotifyEventType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMontageBlendSettings \ +static_assert(alignof(FMontageBlendSettings) == 0x000008, "Wrong alignment on FMontageBlendSettings"); \ +static_assert(sizeof(FMontageBlendSettings) == 0x000020, "Wrong size on FMontageBlendSettings"); \ +static_assert(offsetof(FMontageBlendSettings, BlendProfile) == 0x000000, "Member 'FMontageBlendSettings::BlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FMontageBlendSettings, Blend) == 0x000008, "Member 'FMontageBlendSettings::Blend' has a wrong offset!"); \ +static_assert(offsetof(FMontageBlendSettings, BlendMode) == 0x000018, "Member 'FMontageBlendSettings::BlendMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseAssetInfluence \ +static_assert(alignof(FPoseAssetInfluence) == 0x000004, "Wrong alignment on FPoseAssetInfluence"); \ +static_assert(sizeof(FPoseAssetInfluence) == 0x000008, "Wrong size on FPoseAssetInfluence"); \ +static_assert(offsetof(FPoseAssetInfluence, PoseIndex) == 0x000000, "Member 'FPoseAssetInfluence::PoseIndex' has a wrong offset!"); \ +static_assert(offsetof(FPoseAssetInfluence, BoneTransformIndex) == 0x000004, "Member 'FPoseAssetInfluence::BoneTransformIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseAssetInfluences \ +static_assert(alignof(FPoseAssetInfluences) == 0x000008, "Wrong alignment on FPoseAssetInfluences"); \ +static_assert(sizeof(FPoseAssetInfluences) == 0x000010, "Wrong size on FPoseAssetInfluences"); \ +static_assert(offsetof(FPoseAssetInfluences, Influences) == 0x000000, "Member 'FPoseAssetInfluences::Influences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimMontageInstance \ +static_assert(alignof(FAnimMontageInstance) == 0x000008, "Wrong alignment on FAnimMontageInstance"); \ +static_assert(sizeof(FAnimMontageInstance) == 0x0001C8, "Wrong size on FAnimMontageInstance"); \ +static_assert(offsetof(FAnimMontageInstance, Montage) == 0x000000, "Member 'FAnimMontageInstance::Montage' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, bPlaying) == 0x000028, "Member 'FAnimMontageInstance::bPlaying' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, DefaultBlendTimeMultiplier) == 0x00002C, "Member 'FAnimMontageInstance::DefaultBlendTimeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, NextSections) == 0x0000F8, "Member 'FAnimMontageInstance::NextSections' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, PrevSections) == 0x000108, "Member 'FAnimMontageInstance::PrevSections' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, ActiveStateBranchingPoints) == 0x000128, "Member 'FAnimMontageInstance::ActiveStateBranchingPoints' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, Position) == 0x000138, "Member 'FAnimMontageInstance::Position' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, PlayRate) == 0x00013C, "Member 'FAnimMontageInstance::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, Blend) == 0x000140, "Member 'FAnimMontageInstance::Blend' has a wrong offset!"); \ +static_assert(offsetof(FAnimMontageInstance, DisableRootMotionCount) == 0x0001A4, "Member 'FAnimMontageInstance::DisableRootMotionCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNodeData \ +static_assert(alignof(FAnimNodeData) == 0x000008, "Wrong alignment on FAnimNodeData"); \ +static_assert(sizeof(FAnimNodeData) == 0x000028, "Wrong size on FAnimNodeData"); \ +static_assert(offsetof(FAnimNodeData, AnimClassInterface) == 0x000000, "Member 'FAnimNodeData::AnimClassInterface' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeData, Entries) == 0x000010, "Member 'FAnimNodeData::Entries' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeData, NodeIndex) == 0x000020, "Member 'FAnimNodeData::NodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeData, Flags) == 0x000024, "Member 'FAnimNodeData::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNodeStructData \ +static_assert(alignof(FAnimNodeStructData) == 0x000008, "Wrong alignment on FAnimNodeStructData"); \ +static_assert(sizeof(FAnimNodeStructData) == 0x000058, "Wrong size on FAnimNodeStructData"); \ +static_assert(offsetof(FAnimNodeStructData, NameToIndexMap) == 0x000000, "Member 'FAnimNodeStructData::NameToIndexMap' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeStructData, NumProperties) == 0x000050, "Member 'FAnimNodeStructData::NumProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNodeFunctionRef \ +static_assert(alignof(FAnimNodeFunctionRef) == 0x000008, "Wrong alignment on FAnimNodeFunctionRef"); \ +static_assert(sizeof(FAnimNodeFunctionRef) == 0x000020, "Wrong size on FAnimNodeFunctionRef"); \ +static_assert(offsetof(FAnimNodeFunctionRef, ClassName) == 0x000000, "Member 'FAnimNodeFunctionRef::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeFunctionRef, FunctionName) == 0x000008, "Member 'FAnimNodeFunctionRef::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeFunctionRef, Class) == 0x000010, "Member 'FAnimNodeFunctionRef::Class' has a wrong offset!"); \ +static_assert(offsetof(FAnimNodeFunctionRef, Function) == 0x000018, "Member 'FAnimNodeFunctionRef::Function' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ConvertComponentToLocalSpace \ +static_assert(alignof(FAnimNode_ConvertComponentToLocalSpace) == 0x000008, "Wrong alignment on FAnimNode_ConvertComponentToLocalSpace"); \ +static_assert(sizeof(FAnimNode_ConvertComponentToLocalSpace) == 0x000020, "Wrong size on FAnimNode_ConvertComponentToLocalSpace"); \ +static_assert(offsetof(FAnimNode_ConvertComponentToLocalSpace, ComponentPose) == 0x000010, "Member 'FAnimNode_ConvertComponentToLocalSpace::ComponentPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationState \ +static_assert(alignof(FAnimationState) == 0x000008, "Wrong alignment on FAnimationState"); \ +static_assert(sizeof(FAnimationState) == 0x000028, "Wrong size on FAnimationState"); \ +static_assert(offsetof(FAnimationState, Transitions) == 0x000008, "Member 'FAnimationState::Transitions' has a wrong offset!"); \ +static_assert(offsetof(FAnimationState, StateRootNodeIndex) == 0x000018, "Member 'FAnimationState::StateRootNodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FAnimationState, StartNotify) == 0x00001C, "Member 'FAnimationState::StartNotify' has a wrong offset!"); \ +static_assert(offsetof(FAnimationState, EndNotify) == 0x000020, "Member 'FAnimationState::EndNotify' has a wrong offset!"); \ +static_assert(offsetof(FAnimationState, FullyBlendedNotify) == 0x000024, "Member 'FAnimationState::FullyBlendedNotify' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ConvertLocalToComponentSpace \ +static_assert(alignof(FAnimNode_ConvertLocalToComponentSpace) == 0x000008, "Wrong alignment on FAnimNode_ConvertLocalToComponentSpace"); \ +static_assert(sizeof(FAnimNode_ConvertLocalToComponentSpace) == 0x000020, "Wrong size on FAnimNode_ConvertLocalToComponentSpace"); \ +static_assert(offsetof(FAnimNode_ConvertLocalToComponentSpace, LocalPose) == 0x000010, "Member 'FAnimNode_ConvertLocalToComponentSpace::LocalPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ApplyMeshSpaceAdditive \ +static_assert(alignof(FAnimNode_ApplyMeshSpaceAdditive) == 0x000008, "Wrong alignment on FAnimNode_ApplyMeshSpaceAdditive"); \ +static_assert(sizeof(FAnimNode_ApplyMeshSpaceAdditive) == 0x0000D0, "Wrong size on FAnimNode_ApplyMeshSpaceAdditive"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, base) == 0x000010, "Member 'FAnimNode_ApplyMeshSpaceAdditive::base' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, Additive) == 0x000020, "Member 'FAnimNode_ApplyMeshSpaceAdditive::Additive' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, AlphaInputType) == 0x000030, "Member 'FAnimNode_ApplyMeshSpaceAdditive::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, alpha) == 0x000034, "Member 'FAnimNode_ApplyMeshSpaceAdditive::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, AlphaBoolBlend) == 0x000040, "Member 'FAnimNode_ApplyMeshSpaceAdditive::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, AlphaCurveName) == 0x000088, "Member 'FAnimNode_ApplyMeshSpaceAdditive::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, AlphaScaleBias) == 0x000090, "Member 'FAnimNode_ApplyMeshSpaceAdditive::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, AlphaScaleBiasClamp) == 0x000098, "Member 'FAnimNode_ApplyMeshSpaceAdditive::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyMeshSpaceAdditive, LODThreshold) == 0x0000C8, "Member 'FAnimNode_ApplyMeshSpaceAdditive::LODThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigTransformConstraint \ +static_assert(alignof(FRigTransformConstraint) == 0x000004, "Wrong alignment on FRigTransformConstraint"); \ +static_assert(sizeof(FRigTransformConstraint) == 0x000010, "Wrong size on FRigTransformConstraint"); \ +static_assert(offsetof(FRigTransformConstraint, TranformType) == 0x000000, "Member 'FRigTransformConstraint::TranformType' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformConstraint, ParentSpace) == 0x000004, "Member 'FRigTransformConstraint::ParentSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformConstraint, Weight) == 0x00000C, "Member 'FRigTransformConstraint::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformBaseConstraint \ +static_assert(alignof(FTransformBaseConstraint) == 0x000008, "Wrong alignment on FTransformBaseConstraint"); \ +static_assert(sizeof(FTransformBaseConstraint) == 0x000010, "Wrong size on FTransformBaseConstraint"); \ +static_assert(offsetof(FTransformBaseConstraint, TransformConstraints) == 0x000000, "Member 'FTransformBaseConstraint::TransformConstraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformBase \ +static_assert(alignof(FTransformBase) == 0x000008, "Wrong alignment on FTransformBase"); \ +static_assert(sizeof(FTransformBase) == 0x000028, "Wrong size on FTransformBase"); \ +static_assert(offsetof(FTransformBase, Node) == 0x000000, "Member 'FTransformBase::Node' has a wrong offset!"); \ +static_assert(offsetof(FTransformBase, Constraints) == 0x000008, "Member 'FTransformBase::Constraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInertializationRequest \ +static_assert(alignof(FInertializationRequest) == 0x000008, "Wrong alignment on FInertializationRequest"); \ +static_assert(sizeof(FInertializationRequest) == 0x000048, "Wrong size on FInertializationRequest"); \ +static_assert(offsetof(FInertializationRequest, Duration) == 0x000000, "Member 'FInertializationRequest::Duration' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, BlendProfile) == 0x000008, "Member 'FInertializationRequest::BlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, bUseBlendMode) == 0x000010, "Member 'FInertializationRequest::bUseBlendMode' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, BlendMode) == 0x000011, "Member 'FInertializationRequest::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, CustomBlendCurve) == 0x000018, "Member 'FInertializationRequest::CustomBlendCurve' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, Description) == 0x000020, "Member 'FInertializationRequest::Description' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, NodeId) == 0x000038, "Member 'FInertializationRequest::NodeId' has a wrong offset!"); \ +static_assert(offsetof(FInertializationRequest, AnimInstance) == 0x000040, "Member 'FInertializationRequest::AnimInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_DeadBlending \ +static_assert(alignof(FAnimNode_DeadBlending) == 0x000010, "Wrong alignment on FAnimNode_DeadBlending"); \ +static_assert(sizeof(FAnimNode_DeadBlending) == 0x0004C0, "Wrong size on FAnimNode_DeadBlending"); \ +static_assert(offsetof(FAnimNode_DeadBlending, Source) == 0x000018, "Member 'FAnimNode_DeadBlending::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, bAlwaysUseDefaultBlendSettings) == 0x000028, "Member 'FAnimNode_DeadBlending::bAlwaysUseDefaultBlendSettings' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, DefaultBlendDuration) == 0x00002C, "Member 'FAnimNode_DeadBlending::DefaultBlendDuration' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, DefaultBlendProfile) == 0x000030, "Member 'FAnimNode_DeadBlending::DefaultBlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, DefaultBlendMode) == 0x000038, "Member 'FAnimNode_DeadBlending::DefaultBlendMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, DefaultCustomBlendCurve) == 0x000040, "Member 'FAnimNode_DeadBlending::DefaultCustomBlendCurve' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, BlendTimeMultiplier) == 0x000048, "Member 'FAnimNode_DeadBlending::BlendTimeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, bLinearlyInterpolateScales) == 0x00004C, "Member 'FAnimNode_DeadBlending::bLinearlyInterpolateScales' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, FilteredCurves) == 0x000050, "Member 'FAnimNode_DeadBlending::FilteredCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, FilteredBones) == 0x000060, "Member 'FAnimNode_DeadBlending::FilteredBones' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, ExtrapolationHalfLife) == 0x000070, "Member 'FAnimNode_DeadBlending::ExtrapolationHalfLife' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, ExtrapolationHalfLifeMin) == 0x000074, "Member 'FAnimNode_DeadBlending::ExtrapolationHalfLifeMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, ExtrapolationHalfLifeMax) == 0x000078, "Member 'FAnimNode_DeadBlending::ExtrapolationHalfLifeMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, MaximumTranslationVelocity) == 0x00007C, "Member 'FAnimNode_DeadBlending::MaximumTranslationVelocity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, MaximumRotationVelocity) == 0x000080, "Member 'FAnimNode_DeadBlending::MaximumRotationVelocity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, MaximumScaleVelocity) == 0x000084, "Member 'FAnimNode_DeadBlending::MaximumScaleVelocity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, MaximumCurveVelocity) == 0x000088, "Member 'FAnimNode_DeadBlending::MaximumCurveVelocity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, bPreallocateMemory) == 0x00008C, "Member 'FAnimNode_DeadBlending::bPreallocateMemory' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, RequestQueue) == 0x000280, "Member 'FAnimNode_DeadBlending::RequestQueue' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, InertializationRequestAnimInstance) == 0x000490, "Member 'FAnimNode_DeadBlending::InertializationRequestAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_DeadBlending, InertializationCustomBlendCurve) == 0x0004B0, "Member 'FAnimNode_DeadBlending::InertializationCustomBlendCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInertializationPose \ +static_assert(alignof(FInertializationPose) == 0x000010, "Wrong alignment on FInertializationPose"); \ +static_assert(sizeof(FInertializationPose) == 0x0000C0, "Wrong size on FInertializationPose"); \ + +#define DUMPER7_ASSERTS_FInertializationBoneDiff \ +static_assert(alignof(FInertializationBoneDiff) == 0x000008, "Wrong alignment on FInertializationBoneDiff"); \ +static_assert(sizeof(FInertializationBoneDiff) == 0x000060, "Wrong size on FInertializationBoneDiff"); \ + +#define DUMPER7_ASSERTS_FDefaultAudioBusSettings \ +static_assert(alignof(FDefaultAudioBusSettings) == 0x000008, "Wrong alignment on FDefaultAudioBusSettings"); \ +static_assert(sizeof(FDefaultAudioBusSettings) == 0x000020, "Wrong size on FDefaultAudioBusSettings"); \ +static_assert(offsetof(FDefaultAudioBusSettings, AudioBus) == 0x000000, "Member 'FDefaultAudioBusSettings::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInertializationPoseDiff \ +static_assert(alignof(FInertializationPoseDiff) == 0x000008, "Wrong alignment on FInertializationPoseDiff"); \ +static_assert(sizeof(FInertializationPoseDiff) == 0x000038, "Wrong size on FInertializationPoseDiff"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Inertialization \ +static_assert(alignof(FAnimNode_Inertialization) == 0x000008, "Wrong alignment on FAnimNode_Inertialization"); \ +static_assert(sizeof(FAnimNode_Inertialization) == 0x000110, "Wrong size on FAnimNode_Inertialization"); \ +static_assert(offsetof(FAnimNode_Inertialization, Source) == 0x000010, "Member 'FAnimNode_Inertialization::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Inertialization, DefaultBlendProfile) == 0x000020, "Member 'FAnimNode_Inertialization::DefaultBlendProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Inertialization, FilteredCurves) == 0x000028, "Member 'FAnimNode_Inertialization::FilteredCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Inertialization, bPreallocateMemory) == 0x000038, "Member 'FAnimNode_Inertialization::bPreallocateMemory' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Inertialization, RequestQueue) == 0x000058, "Member 'FAnimNode_Inertialization::RequestQueue' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Inertialization, InertializationRequestAnimInstance) == 0x000098, "Member 'FAnimNode_Inertialization::InertializationRequestAnimInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LinkedInputPose \ +static_assert(alignof(FAnimNode_LinkedInputPose) == 0x000008, "Wrong alignment on FAnimNode_LinkedInputPose"); \ +static_assert(sizeof(FAnimNode_LinkedInputPose) == 0x0000B8, "Wrong size on FAnimNode_LinkedInputPose"); \ +static_assert(offsetof(FAnimNode_LinkedInputPose, Name) == 0x000010, "Member 'FAnimNode_LinkedInputPose::Name' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedInputPose, Graph) == 0x000018, "Member 'FAnimNode_LinkedInputPose::Graph' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LinkedInputPose, InputPose) == 0x000020, "Member 'FAnimNode_LinkedInputPose::InputPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequencePlayer \ +static_assert(alignof(FAnimNode_SequencePlayer) == 0x000008, "Wrong alignment on FAnimNode_SequencePlayer"); \ +static_assert(sizeof(FAnimNode_SequencePlayer) == 0x000048, "Wrong size on FAnimNode_SequencePlayer"); \ +static_assert(offsetof(FAnimNode_SequencePlayer, Sequence) == 0x000040, "Member 'FAnimNode_SequencePlayer::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationPotentialTransition \ +static_assert(alignof(FAnimationPotentialTransition) == 0x000008, "Wrong alignment on FAnimationPotentialTransition"); \ +static_assert(sizeof(FAnimationPotentialTransition) == 0x000030, "Wrong size on FAnimationPotentialTransition"); \ + +#define DUMPER7_ASSERTS_FAnimNode_StateResult \ +static_assert(alignof(FAnimNode_StateResult) == 0x000008, "Wrong alignment on FAnimNode_StateResult"); \ +static_assert(sizeof(FAnimNode_StateResult) == 0x000020, "Wrong size on FAnimNode_StateResult"); \ + +#define DUMPER7_ASSERTS_FAnimNode_TransitionResult \ +static_assert(alignof(FAnimNode_TransitionResult) == 0x000008, "Wrong alignment on FAnimNode_TransitionResult"); \ +static_assert(sizeof(FAnimNode_TransitionResult) == 0x000028, "Wrong size on FAnimNode_TransitionResult"); \ +static_assert(offsetof(FAnimNode_TransitionResult, bCanEnterTransition) == 0x000010, "Member 'FAnimNode_TransitionResult::bCanEnterTransition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNotifyContext \ +static_assert(alignof(FAnimNotifyContext) == 0x000008, "Wrong alignment on FAnimNotifyContext"); \ +static_assert(sizeof(FAnimNotifyContext) == 0x000018, "Wrong size on FAnimNotifyContext"); \ + +#define DUMPER7_ASSERTS_FRotationTrack \ +static_assert(alignof(FRotationTrack) == 0x000008, "Wrong alignment on FRotationTrack"); \ +static_assert(sizeof(FRotationTrack) == 0x000020, "Wrong size on FRotationTrack"); \ +static_assert(offsetof(FRotationTrack, RotKeys) == 0x000000, "Member 'FRotationTrack::RotKeys' has a wrong offset!"); \ +static_assert(offsetof(FRotationTrack, Times) == 0x000010, "Member 'FRotationTrack::Times' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveTrack \ +static_assert(alignof(FCurveTrack) == 0x000008, "Wrong alignment on FCurveTrack"); \ +static_assert(sizeof(FCurveTrack) == 0x000018, "Wrong size on FCurveTrack"); \ +static_assert(offsetof(FCurveTrack, CurveName) == 0x000000, "Member 'FCurveTrack::CurveName' has a wrong offset!"); \ +static_assert(offsetof(FCurveTrack, CurveWeights) == 0x000008, "Member 'FCurveTrack::CurveWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSingleNodeInstanceProxy \ +static_assert(alignof(FAnimSingleNodeInstanceProxy) == 0x000010, "Wrong alignment on FAnimSingleNodeInstanceProxy"); \ +static_assert(sizeof(FAnimSingleNodeInstanceProxy) == 0x000800, "Wrong size on FAnimSingleNodeInstanceProxy"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem_Base \ +static_assert(alignof(FAnimSubsystem_Base) == 0x000008, "Wrong alignment on FAnimSubsystem_Base"); \ +static_assert(sizeof(FAnimSubsystem_Base) == 0x000018, "Wrong size on FAnimSubsystem_Base"); \ +static_assert(offsetof(FAnimSubsystem_Base, ExposedValueHandlers) == 0x000008, "Member 'FAnimSubsystem_Base::ExposedValueHandlers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem_SharedLinkedAnimLayers \ +static_assert(alignof(FAnimSubsystem_SharedLinkedAnimLayers) == 0x000008, "Wrong alignment on FAnimSubsystem_SharedLinkedAnimLayers"); \ +static_assert(sizeof(FAnimSubsystem_SharedLinkedAnimLayers) == 0x000028, "Wrong size on FAnimSubsystem_SharedLinkedAnimLayers"); \ +static_assert(offsetof(FAnimSubsystem_SharedLinkedAnimLayers, ClassesData) == 0x000008, "Member 'FAnimSubsystem_SharedLinkedAnimLayers::ClassesData' has a wrong offset!"); \ +static_assert(offsetof(FAnimSubsystem_SharedLinkedAnimLayers, PersistentClasses) == 0x000018, "Member 'FAnimSubsystem_SharedLinkedAnimLayers::PersistentClasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSubsystem_Tag \ +static_assert(alignof(FAnimSubsystem_Tag) == 0x000008, "Wrong alignment on FAnimSubsystem_Tag"); \ +static_assert(sizeof(FAnimSubsystem_Tag) == 0x000060, "Wrong size on FAnimSubsystem_Tag"); \ +static_assert(offsetof(FAnimSubsystem_Tag, NodeIndices) == 0x000008, "Member 'FAnimSubsystem_Tag::NodeIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetMapping \ +static_assert(alignof(FAssetMapping) == 0x000008, "Wrong alignment on FAssetMapping"); \ +static_assert(sizeof(FAssetMapping) == 0x000010, "Wrong size on FAssetMapping"); \ +static_assert(offsetof(FAssetMapping, SourceAsset) == 0x000000, "Member 'FAssetMapping::SourceAsset' has a wrong offset!"); \ +static_assert(offsetof(FAssetMapping, TargetAsset) == 0x000008, "Member 'FAssetMapping::TargetAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedCurveValue \ +static_assert(alignof(FNamedCurveValue) == 0x000004, "Wrong alignment on FNamedCurveValue"); \ +static_assert(sizeof(FNamedCurveValue) == 0x00000C, "Wrong size on FNamedCurveValue"); \ +static_assert(offsetof(FNamedCurveValue, Name) == 0x000000, "Member 'FNamedCurveValue::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedCurveValue, Value) == 0x000008, "Member 'FNamedCurveValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputClampConstants \ +static_assert(alignof(FInputClampConstants) == 0x000004, "Wrong alignment on FInputClampConstants"); \ +static_assert(sizeof(FInputClampConstants) == 0x000014, "Wrong size on FInputClampConstants"); \ +static_assert(offsetof(FInputClampConstants, bClampResult) == 0x000000, "Member 'FInputClampConstants::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FInputClampConstants, bInterpResult) == 0x000001, "Member 'FInputClampConstants::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FInputClampConstants, ClampMin) == 0x000004, "Member 'FInputClampConstants::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FInputClampConstants, ClampMax) == 0x000008, "Member 'FInputClampConstants::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FInputClampConstants, InterpSpeedIncreasing) == 0x00000C, "Member 'FInputClampConstants::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FInputClampConstants, InterpSpeedDecreasing) == 0x000010, "Member 'FInputClampConstants::InterpSpeedDecreasing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeItem \ +static_assert(alignof(FNodeItem) == 0x000010, "Wrong alignment on FNodeItem"); \ +static_assert(sizeof(FNodeItem) == 0x000070, "Wrong size on FNodeItem"); \ +static_assert(offsetof(FNodeItem, ParentName) == 0x000000, "Member 'FNodeItem::ParentName' has a wrong offset!"); \ +static_assert(offsetof(FNodeItem, Transform) == 0x000010, "Member 'FNodeItem::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseData \ +static_assert(alignof(FPoseData) == 0x000008, "Wrong alignment on FPoseData"); \ +static_assert(sizeof(FPoseData) == 0x000020, "Wrong size on FPoseData"); \ +static_assert(offsetof(FPoseData, LocalSpacePose) == 0x000000, "Member 'FPoseData::LocalSpacePose' has a wrong offset!"); \ +static_assert(offsetof(FPoseData, CurveData) == 0x000010, "Member 'FPoseData::CurveData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseDataContainer \ +static_assert(alignof(FPoseDataContainer) == 0x000008, "Wrong alignment on FPoseDataContainer"); \ +static_assert(sizeof(FPoseDataContainer) == 0x000070, "Wrong size on FPoseDataContainer"); \ +static_assert(offsetof(FPoseDataContainer, PoseFNames) == 0x000000, "Member 'FPoseDataContainer::PoseFNames' has a wrong offset!"); \ +static_assert(offsetof(FPoseDataContainer, Tracks) == 0x000020, "Member 'FPoseDataContainer::Tracks' has a wrong offset!"); \ +static_assert(offsetof(FPoseDataContainer, TrackBoneIndices) == 0x000030, "Member 'FPoseDataContainer::TrackBoneIndices' has a wrong offset!"); \ +static_assert(offsetof(FPoseDataContainer, TrackPoseInfluenceIndices) == 0x000040, "Member 'FPoseDataContainer::TrackPoseInfluenceIndices' has a wrong offset!"); \ +static_assert(offsetof(FPoseDataContainer, Poses) == 0x000050, "Member 'FPoseDataContainer::Poses' has a wrong offset!"); \ +static_assert(offsetof(FPoseDataContainer, Curves) == 0x000060, "Member 'FPoseDataContainer::Curves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPreviewAttachedObjectPair \ +static_assert(alignof(FPreviewAttachedObjectPair) == 0x000008, "Wrong alignment on FPreviewAttachedObjectPair"); \ +static_assert(sizeof(FPreviewAttachedObjectPair) == 0x000030, "Wrong size on FPreviewAttachedObjectPair"); \ +static_assert(offsetof(FPreviewAttachedObjectPair, AttachedObject) == 0x000000, "Member 'FPreviewAttachedObjectPair::AttachedObject' has a wrong offset!"); \ +static_assert(offsetof(FPreviewAttachedObjectPair, AttachedTo) == 0x000028, "Member 'FPreviewAttachedObjectPair::AttachedTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPreviewAssetAttachContainer \ +static_assert(alignof(FPreviewAssetAttachContainer) == 0x000008, "Wrong alignment on FPreviewAssetAttachContainer"); \ +static_assert(sizeof(FPreviewAssetAttachContainer) == 0x000010, "Wrong size on FPreviewAssetAttachContainer"); \ +static_assert(offsetof(FPreviewAssetAttachContainer, AttachedObjects) == 0x000000, "Member 'FPreviewAssetAttachContainer::AttachedObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletonToMeshLinkup \ +static_assert(alignof(FSkeletonToMeshLinkup) == 0x000008, "Wrong alignment on FSkeletonToMeshLinkup"); \ +static_assert(sizeof(FSkeletonToMeshLinkup) == 0x000020, "Wrong size on FSkeletonToMeshLinkup"); \ +static_assert(offsetof(FSkeletonToMeshLinkup, SkeletonToMeshTable) == 0x000000, "Member 'FSkeletonToMeshLinkup::SkeletonToMeshTable' has a wrong offset!"); \ +static_assert(offsetof(FSkeletonToMeshLinkup, MeshToSkeletonTable) == 0x000010, "Member 'FSkeletonToMeshLinkup::MeshToSkeletonTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneNode \ +static_assert(alignof(FBoneNode) == 0x000001, "Wrong alignment on FBoneNode"); \ +static_assert(sizeof(FBoneNode) == 0x000001, "Wrong size on FBoneNode"); \ +static_assert(offsetof(FBoneNode, TranslationRetargetingMode) == 0x000000, "Member 'FBoneNode::TranslationRetargetingMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReferencePose \ +static_assert(alignof(FReferencePose) == 0x000008, "Wrong alignment on FReferencePose"); \ +static_assert(sizeof(FReferencePose) == 0x000018, "Wrong size on FReferencePose"); \ +static_assert(offsetof(FReferencePose, PoseName) == 0x000000, "Member 'FReferencePose::PoseName' has a wrong offset!"); \ +static_assert(offsetof(FReferencePose, ReferencePose) == 0x000008, "Member 'FReferencePose::ReferencePose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneReductionSetting \ +static_assert(alignof(FBoneReductionSetting) == 0x000008, "Wrong alignment on FBoneReductionSetting"); \ +static_assert(sizeof(FBoneReductionSetting) == 0x000010, "Wrong size on FBoneReductionSetting"); \ +static_assert(offsetof(FBoneReductionSetting, BonesToRemove) == 0x000000, "Member 'FBoneReductionSetting::BonesToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSlotGroup \ +static_assert(alignof(FAnimSlotGroup) == 0x000008, "Wrong alignment on FAnimSlotGroup"); \ +static_assert(sizeof(FAnimSlotGroup) == 0x000018, "Wrong size on FAnimSlotGroup"); \ +static_assert(offsetof(FAnimSlotGroup, GroupName) == 0x000000, "Member 'FAnimSlotGroup::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimSlotGroup, SlotNames) == 0x000008, "Member 'FAnimSlotGroup::SlotNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVirtualBone \ +static_assert(alignof(FVirtualBone) == 0x000004, "Wrong alignment on FVirtualBone"); \ +static_assert(sizeof(FVirtualBone) == 0x000018, "Wrong size on FVirtualBone"); \ +static_assert(offsetof(FVirtualBone, SourceBoneName) == 0x000000, "Member 'FVirtualBone::SourceBoneName' has a wrong offset!"); \ +static_assert(offsetof(FVirtualBone, TargetBoneName) == 0x000008, "Member 'FVirtualBone::TargetBoneName' has a wrong offset!"); \ +static_assert(offsetof(FVirtualBone, VirtualBoneName) == 0x000010, "Member 'FVirtualBone::VirtualBoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkinWeightProfileInfo \ +static_assert(alignof(FSkinWeightProfileInfo) == 0x000004, "Wrong alignment on FSkinWeightProfileInfo"); \ +static_assert(sizeof(FSkinWeightProfileInfo) == 0x000010, "Wrong size on FSkinWeightProfileInfo"); \ +static_assert(offsetof(FSkinWeightProfileInfo, Name) == 0x000000, "Member 'FSkinWeightProfileInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FSkinWeightProfileInfo, DefaultProfile) == 0x000008, "Member 'FSkinWeightProfileInfo::DefaultProfile' has a wrong offset!"); \ +static_assert(offsetof(FSkinWeightProfileInfo, DefaultProfileFromLODIndex) == 0x00000C, "Member 'FSkinWeightProfileInfo::DefaultProfileFromLODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkinWeightProfileManagerTickFunction \ +static_assert(alignof(FSkinWeightProfileManagerTickFunction) == 0x000008, "Wrong alignment on FSkinWeightProfileManagerTickFunction"); \ +static_assert(sizeof(FSkinWeightProfileManagerTickFunction) == 0x000030, "Wrong size on FSkinWeightProfileManagerTickFunction"); \ + +#define DUMPER7_ASSERTS_FSmartNameMapping \ +static_assert(alignof(FSmartNameMapping) == 0x000008, "Wrong alignment on FSmartNameMapping"); \ +static_assert(sizeof(FSmartNameMapping) == 0x000070, "Wrong size on FSmartNameMapping"); \ + +#define DUMPER7_ASSERTS_FSmartNameContainer \ +static_assert(alignof(FSmartNameContainer) == 0x000008, "Wrong alignment on FSmartNameContainer"); \ +static_assert(sizeof(FSmartNameContainer) == 0x000050, "Wrong size on FSmartNameContainer"); \ + +#define DUMPER7_ASSERTS_FTimeStretchCurveInstance \ +static_assert(alignof(FTimeStretchCurveInstance) == 0x000008, "Wrong alignment on FTimeStretchCurveInstance"); \ +static_assert(sizeof(FTimeStretchCurveInstance) == 0x000030, "Wrong size on FTimeStretchCurveInstance"); \ +static_assert(offsetof(FTimeStretchCurveInstance, bHasValidData) == 0x000000, "Member 'FTimeStretchCurveInstance::bHasValidData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimGroupInfo \ +static_assert(alignof(FAnimGroupInfo) == 0x000004, "Wrong alignment on FAnimGroupInfo"); \ +static_assert(sizeof(FAnimGroupInfo) == 0x000018, "Wrong size on FAnimGroupInfo"); \ +static_assert(offsetof(FAnimGroupInfo, Name) == 0x000000, "Member 'FAnimGroupInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FAnimGroupInfo, Color) == 0x000008, "Member 'FAnimGroupInfo::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimParentNodeAssetOverride \ +static_assert(alignof(FAnimParentNodeAssetOverride) == 0x000008, "Wrong alignment on FAnimParentNodeAssetOverride"); \ +static_assert(sizeof(FAnimParentNodeAssetOverride) == 0x000018, "Wrong size on FAnimParentNodeAssetOverride"); \ +static_assert(offsetof(FAnimParentNodeAssetOverride, NewAsset) == 0x000000, "Member 'FAnimParentNodeAssetOverride::NewAsset' has a wrong offset!"); \ +static_assert(offsetof(FAnimParentNodeAssetOverride, ParentNodeGuid) == 0x000008, "Member 'FAnimParentNodeAssetOverride::ParentNodeGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetCompileData \ +static_assert(alignof(FAssetCompileData) == 0x000004, "Wrong alignment on FAssetCompileData"); \ +static_assert(sizeof(FAssetCompileData) == 0x000008, "Wrong size on FAssetCompileData"); \ +static_assert(offsetof(FAssetCompileData, Asset) == 0x000000, "Member 'FAssetCompileData::Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrimaryAssetTypeInfo \ +static_assert(alignof(FPrimaryAssetTypeInfo) == 0x000008, "Wrong alignment on FPrimaryAssetTypeInfo"); \ +static_assert(sizeof(FPrimaryAssetTypeInfo) == 0x000088, "Wrong size on FPrimaryAssetTypeInfo"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, PrimaryAssetType) == 0x000000, "Member 'FPrimaryAssetTypeInfo::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, AssetBaseClass) == 0x000008, "Member 'FPrimaryAssetTypeInfo::AssetBaseClass' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, AssetBaseClassLoaded) == 0x000030, "Member 'FPrimaryAssetTypeInfo::AssetBaseClassLoaded' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, bHasBlueprintClasses) == 0x000038, "Member 'FPrimaryAssetTypeInfo::bHasBlueprintClasses' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, bIsEditorOnly) == 0x000039, "Member 'FPrimaryAssetTypeInfo::bIsEditorOnly' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, Directories) == 0x000040, "Member 'FPrimaryAssetTypeInfo::Directories' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, SpecificAssets) == 0x000050, "Member 'FPrimaryAssetTypeInfo::SpecificAssets' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, Rules) == 0x000060, "Member 'FPrimaryAssetTypeInfo::Rules' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, AssetScanPaths) == 0x000070, "Member 'FPrimaryAssetTypeInfo::AssetScanPaths' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, bIsDynamicAsset) == 0x000080, "Member 'FPrimaryAssetTypeInfo::bIsDynamicAsset' has a wrong offset!"); \ +static_assert(offsetof(FPrimaryAssetTypeInfo, NumberOfAssets) == 0x000084, "Member 'FPrimaryAssetTypeInfo::NumberOfAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetManagerSearchRules \ +static_assert(alignof(FAssetManagerSearchRules) == 0x000008, "Wrong alignment on FAssetManagerSearchRules"); \ +static_assert(sizeof(FAssetManagerSearchRules) == 0x000050, "Wrong size on FAssetManagerSearchRules"); \ +static_assert(offsetof(FAssetManagerSearchRules, AssetScanPaths) == 0x000000, "Member 'FAssetManagerSearchRules::AssetScanPaths' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, IncludePatterns) == 0x000010, "Member 'FAssetManagerSearchRules::IncludePatterns' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, ExcludePatterns) == 0x000020, "Member 'FAssetManagerSearchRules::ExcludePatterns' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, AssetBaseClass) == 0x000030, "Member 'FAssetManagerSearchRules::AssetBaseClass' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, bHasBlueprintClasses) == 0x000038, "Member 'FAssetManagerSearchRules::bHasBlueprintClasses' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, bForceSynchronousScan) == 0x000039, "Member 'FAssetManagerSearchRules::bForceSynchronousScan' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, bSkipVirtualPathExpansion) == 0x00003A, "Member 'FAssetManagerSearchRules::bSkipVirtualPathExpansion' has a wrong offset!"); \ +static_assert(offsetof(FAssetManagerSearchRules, bSkipManagerIncludeCheck) == 0x00003B, "Member 'FAssetManagerSearchRules::bSkipManagerIncludeCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioReverbEffect \ +static_assert(alignof(FAudioReverbEffect) == 0x000008, "Wrong alignment on FAudioReverbEffect"); \ +static_assert(sizeof(FAudioReverbEffect) == 0x000048, "Wrong size on FAudioReverbEffect"); \ + +#define DUMPER7_ASSERTS_FAudioQualitySettings \ +static_assert(alignof(FAudioQualitySettings) == 0x000008, "Wrong alignment on FAudioQualitySettings"); \ +static_assert(sizeof(FAudioQualitySettings) == 0x000020, "Wrong size on FAudioQualitySettings"); \ +static_assert(offsetof(FAudioQualitySettings, DisplayName) == 0x000000, "Member 'FAudioQualitySettings::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FAudioQualitySettings, MaxChannels) == 0x000018, "Member 'FAudioQualitySettings::MaxChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundDebugEntry \ +static_assert(alignof(FSoundDebugEntry) == 0x000008, "Wrong alignment on FSoundDebugEntry"); \ +static_assert(sizeof(FSoundDebugEntry) == 0x000028, "Wrong size on FSoundDebugEntry"); \ +static_assert(offsetof(FSoundDebugEntry, DebugName) == 0x000000, "Member 'FSoundDebugEntry::DebugName' has a wrong offset!"); \ +static_assert(offsetof(FSoundDebugEntry, Sound) == 0x000008, "Member 'FSoundDebugEntry::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundSubmixSendInfo \ +static_assert(alignof(FSoundSubmixSendInfo) == 0x000008, "Wrong alignment on FSoundSubmixSendInfo"); \ +static_assert(sizeof(FSoundSubmixSendInfo) == 0x0000B0, "Wrong size on FSoundSubmixSendInfo"); \ +static_assert(offsetof(FSoundSubmixSendInfo, SendLevelControlMethod) == 0x000000, "Member 'FSoundSubmixSendInfo::SendLevelControlMethod' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, SendStage) == 0x000001, "Member 'FSoundSubmixSendInfo::SendStage' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, SoundSubmix) == 0x000008, "Member 'FSoundSubmixSendInfo::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, SendLevel) == 0x000010, "Member 'FSoundSubmixSendInfo::SendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, DisableManualSendClamp) == 0x000014, "Member 'FSoundSubmixSendInfo::DisableManualSendClamp' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, MinSendLevel) == 0x000018, "Member 'FSoundSubmixSendInfo::MinSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, MaxSendLevel) == 0x00001C, "Member 'FSoundSubmixSendInfo::MaxSendLevel' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, MinSendDistance) == 0x000020, "Member 'FSoundSubmixSendInfo::MinSendDistance' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, MaxSendDistance) == 0x000024, "Member 'FSoundSubmixSendInfo::MaxSendDistance' has a wrong offset!"); \ +static_assert(offsetof(FSoundSubmixSendInfo, CustomSendLevelCurve) == 0x000028, "Member 'FSoundSubmixSendInfo::CustomSendLevelCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioVolumeSubmixSendSettings \ +static_assert(alignof(FAudioVolumeSubmixSendSettings) == 0x000008, "Wrong alignment on FAudioVolumeSubmixSendSettings"); \ +static_assert(sizeof(FAudioVolumeSubmixSendSettings) == 0x000018, "Wrong size on FAudioVolumeSubmixSendSettings"); \ +static_assert(offsetof(FAudioVolumeSubmixSendSettings, ListenerLocationState) == 0x000000, "Member 'FAudioVolumeSubmixSendSettings::ListenerLocationState' has a wrong offset!"); \ +static_assert(offsetof(FAudioVolumeSubmixSendSettings, SourceLocationState) == 0x000001, "Member 'FAudioVolumeSubmixSendSettings::SourceLocationState' has a wrong offset!"); \ +static_assert(offsetof(FAudioVolumeSubmixSendSettings, SubmixSends) == 0x000008, "Member 'FAudioVolumeSubmixSendSettings::SubmixSends' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioVolumeSubmixOverrideSettings \ +static_assert(alignof(FAudioVolumeSubmixOverrideSettings) == 0x000008, "Wrong alignment on FAudioVolumeSubmixOverrideSettings"); \ +static_assert(sizeof(FAudioVolumeSubmixOverrideSettings) == 0x000020, "Wrong size on FAudioVolumeSubmixOverrideSettings"); \ +static_assert(offsetof(FAudioVolumeSubmixOverrideSettings, Submix) == 0x000000, "Member 'FAudioVolumeSubmixOverrideSettings::Submix' has a wrong offset!"); \ +static_assert(offsetof(FAudioVolumeSubmixOverrideSettings, SubmixEffectChain) == 0x000008, "Member 'FAudioVolumeSubmixOverrideSettings::SubmixEffectChain' has a wrong offset!"); \ +static_assert(offsetof(FAudioVolumeSubmixOverrideSettings, CrossfadeTime) == 0x000018, "Member 'FAudioVolumeSubmixOverrideSettings::CrossfadeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeToCodeAssociation \ +static_assert(alignof(FNodeToCodeAssociation) == 0x000004, "Wrong alignment on FNodeToCodeAssociation"); \ +static_assert(sizeof(FNodeToCodeAssociation) == 0x000014, "Wrong size on FNodeToCodeAssociation"); \ + +#define DUMPER7_ASSERTS_FPointerToUberGraphFrame \ +static_assert(alignof(FPointerToUberGraphFrame) == 0x000008, "Wrong alignment on FPointerToUberGraphFrame"); \ +static_assert(sizeof(FPointerToUberGraphFrame) == 0x000008, "Wrong size on FPointerToUberGraphFrame"); \ + +#define DUMPER7_ASSERTS_FBlueprintComponentChangedPropertyInfo \ +static_assert(alignof(FBlueprintComponentChangedPropertyInfo) == 0x000008, "Wrong alignment on FBlueprintComponentChangedPropertyInfo"); \ +static_assert(sizeof(FBlueprintComponentChangedPropertyInfo) == 0x000018, "Wrong size on FBlueprintComponentChangedPropertyInfo"); \ +static_assert(offsetof(FBlueprintComponentChangedPropertyInfo, PropertyName) == 0x000000, "Member 'FBlueprintComponentChangedPropertyInfo::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintComponentChangedPropertyInfo, ArrayIndex) == 0x000008, "Member 'FBlueprintComponentChangedPropertyInfo::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintComponentChangedPropertyInfo, PropertyScope) == 0x000010, "Member 'FBlueprintComponentChangedPropertyInfo::PropertyScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintCookedComponentInstancingData \ +static_assert(alignof(FBlueprintCookedComponentInstancingData) == 0x000008, "Wrong alignment on FBlueprintCookedComponentInstancingData"); \ +static_assert(sizeof(FBlueprintCookedComponentInstancingData) == 0x000048, "Wrong size on FBlueprintCookedComponentInstancingData"); \ +static_assert(offsetof(FBlueprintCookedComponentInstancingData, ChangedPropertyList) == 0x000000, "Member 'FBlueprintCookedComponentInstancingData::ChangedPropertyList' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintCookedComponentInstancingData, bHasValidCookedData) == 0x000021, "Member 'FBlueprintCookedComponentInstancingData::bHasValidCookedData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBookmarkJumpToSettings \ +static_assert(alignof(FBookmarkJumpToSettings) == 0x000001, "Wrong alignment on FBookmarkJumpToSettings"); \ +static_assert(sizeof(FBookmarkJumpToSettings) == 0x000001, "Wrong size on FBookmarkJumpToSettings"); \ + +#define DUMPER7_ASSERTS_FBuilderPoly \ +static_assert(alignof(FBuilderPoly) == 0x000008, "Wrong alignment on FBuilderPoly"); \ +static_assert(sizeof(FBuilderPoly) == 0x000020, "Wrong size on FBuilderPoly"); \ +static_assert(offsetof(FBuilderPoly, VertexIndices) == 0x000000, "Member 'FBuilderPoly::VertexIndices' has a wrong offset!"); \ +static_assert(offsetof(FBuilderPoly, Direction) == 0x000010, "Member 'FBuilderPoly::Direction' has a wrong offset!"); \ +static_assert(offsetof(FBuilderPoly, ItemName) == 0x000014, "Member 'FBuilderPoly::ItemName' has a wrong offset!"); \ +static_assert(offsetof(FBuilderPoly, PolyFlags) == 0x00001C, "Member 'FBuilderPoly::PolyFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveCameraShakeInfo \ +static_assert(alignof(FActiveCameraShakeInfo) == 0x000008, "Wrong alignment on FActiveCameraShakeInfo"); \ +static_assert(sizeof(FActiveCameraShakeInfo) == 0x000018, "Wrong size on FActiveCameraShakeInfo"); \ +static_assert(offsetof(FActiveCameraShakeInfo, ShakeInstance) == 0x000000, "Member 'FActiveCameraShakeInfo::ShakeInstance' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraShakeInfo, ShakeSource) == 0x000008, "Member 'FActiveCameraShakeInfo::ShakeSource' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraShakeInfo, bIsCustomInitialized) == 0x000010, "Member 'FActiveCameraShakeInfo::bIsCustomInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraShakeStartParams \ +static_assert(alignof(FCameraShakeStartParams) == 0x000001, "Wrong alignment on FCameraShakeStartParams"); \ +static_assert(sizeof(FCameraShakeStartParams) == 0x000001, "Wrong size on FCameraShakeStartParams"); \ +static_assert(offsetof(FCameraShakeStartParams, bIsRestarting) == 0x000000, "Member 'FCameraShakeStartParams::bIsRestarting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraShakeUpdateParams \ +static_assert(alignof(FCameraShakeUpdateParams) == 0x000010, "Wrong alignment on FCameraShakeUpdateParams"); \ +static_assert(sizeof(FCameraShakeUpdateParams) == 0x0007E0, "Wrong size on FCameraShakeUpdateParams"); \ +static_assert(offsetof(FCameraShakeUpdateParams, DeltaTime) == 0x000000, "Member 'FCameraShakeUpdateParams::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeUpdateParams, ShakeScale) == 0x000004, "Member 'FCameraShakeUpdateParams::ShakeScale' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeUpdateParams, DynamicScale) == 0x000008, "Member 'FCameraShakeUpdateParams::DynamicScale' has a wrong offset!"); \ +static_assert(offsetof(FCameraShakeUpdateParams, POV) == 0x000010, "Member 'FCameraShakeUpdateParams::POV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraShakeUpdateResult \ +static_assert(alignof(FCameraShakeUpdateResult) == 0x000010, "Wrong alignment on FCameraShakeUpdateResult"); \ +static_assert(sizeof(FCameraShakeUpdateResult) == 0x000740, "Wrong size on FCameraShakeUpdateResult"); \ + +#define DUMPER7_ASSERTS_FCameraShakeStopParams \ +static_assert(alignof(FCameraShakeStopParams) == 0x000001, "Wrong alignment on FCameraShakeStopParams"); \ +static_assert(sizeof(FCameraShakeStopParams) == 0x000001, "Wrong size on FCameraShakeStopParams"); \ +static_assert(offsetof(FCameraShakeStopParams, bImmediately) == 0x000000, "Member 'FCameraShakeStopParams::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDummySpacerCameraTypes \ +static_assert(alignof(FDummySpacerCameraTypes) == 0x000001, "Wrong alignment on FDummySpacerCameraTypes"); \ +static_assert(sizeof(FDummySpacerCameraTypes) == 0x000001, "Wrong size on FDummySpacerCameraTypes"); \ + +#define DUMPER7_ASSERTS_FFindFloorResult \ +static_assert(alignof(FFindFloorResult) == 0x000008, "Wrong alignment on FFindFloorResult"); \ +static_assert(sizeof(FFindFloorResult) == 0x0000F8, "Wrong size on FFindFloorResult"); \ +static_assert(offsetof(FFindFloorResult, FloorDist) == 0x000004, "Member 'FFindFloorResult::FloorDist' has a wrong offset!"); \ +static_assert(offsetof(FFindFloorResult, LineDist) == 0x000008, "Member 'FFindFloorResult::LineDist' has a wrong offset!"); \ +static_assert(offsetof(FFindFloorResult, HitResult) == 0x000010, "Member 'FFindFloorResult::HitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomChannelSetup \ +static_assert(alignof(FCustomChannelSetup) == 0x000004, "Wrong alignment on FCustomChannelSetup"); \ +static_assert(sizeof(FCustomChannelSetup) == 0x00000C, "Wrong size on FCustomChannelSetup"); \ +static_assert(offsetof(FCustomChannelSetup, Channel) == 0x000000, "Member 'FCustomChannelSetup::Channel' has a wrong offset!"); \ +static_assert(offsetof(FCustomChannelSetup, DefaultResponse) == 0x000001, "Member 'FCustomChannelSetup::DefaultResponse' has a wrong offset!"); \ +static_assert(offsetof(FCustomChannelSetup, bTraceType) == 0x000002, "Member 'FCustomChannelSetup::bTraceType' has a wrong offset!"); \ +static_assert(offsetof(FCustomChannelSetup, bStaticObject) == 0x000003, "Member 'FCustomChannelSetup::bStaticObject' has a wrong offset!"); \ +static_assert(offsetof(FCustomChannelSetup, Name) == 0x000004, "Member 'FCustomChannelSetup::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomProfile \ +static_assert(alignof(FCustomProfile) == 0x000008, "Wrong alignment on FCustomProfile"); \ +static_assert(sizeof(FCustomProfile) == 0x000018, "Wrong size on FCustomProfile"); \ +static_assert(offsetof(FCustomProfile, Name) == 0x000000, "Member 'FCustomProfile::Name' has a wrong offset!"); \ +static_assert(offsetof(FCustomProfile, CustomResponses) == 0x000008, "Member 'FCustomProfile::CustomResponses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintComponentDelegateBinding \ +static_assert(alignof(FBlueprintComponentDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintComponentDelegateBinding"); \ +static_assert(sizeof(FBlueprintComponentDelegateBinding) == 0x000018, "Wrong size on FBlueprintComponentDelegateBinding"); \ +static_assert(offsetof(FBlueprintComponentDelegateBinding, ComponentPropertyName) == 0x000000, "Member 'FBlueprintComponentDelegateBinding::ComponentPropertyName' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintComponentDelegateBinding, DelegatePropertyName) == 0x000008, "Member 'FBlueprintComponentDelegateBinding::DelegatePropertyName' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintComponentDelegateBinding, FunctionNameToBind) == 0x000010, "Member 'FBlueprintComponentDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorInstanceData \ +static_assert(alignof(FActorInstanceData) == 0x000008, "Wrong alignment on FActorInstanceData"); \ +static_assert(sizeof(FActorInstanceData) == 0x000060, "Wrong size on FActorInstanceData"); \ +static_assert(offsetof(FActorInstanceData, ActorClass) == 0x000058, "Member 'FActorInstanceData::ActorClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioComponentParam \ +static_assert(alignof(FAudioComponentParam) == 0x000008, "Wrong alignment on FAudioComponentParam"); \ +static_assert(sizeof(FAudioComponentParam) == 0x0000A8, "Wrong size on FAudioComponentParam"); \ +static_assert(offsetof(FAudioComponentParam, SoundWaveParam) == 0x0000A0, "Member 'FAudioComponentParam::SoundWaveParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChildActorAttachedActorInfo \ +static_assert(alignof(FChildActorAttachedActorInfo) == 0x000010, "Wrong alignment on FChildActorAttachedActorInfo"); \ +static_assert(sizeof(FChildActorAttachedActorInfo) == 0x000070, "Wrong size on FChildActorAttachedActorInfo"); \ +static_assert(offsetof(FChildActorAttachedActorInfo, Actor) == 0x000000, "Member 'FChildActorAttachedActorInfo::Actor' has a wrong offset!"); \ +static_assert(offsetof(FChildActorAttachedActorInfo, SocketName) == 0x000008, "Member 'FChildActorAttachedActorInfo::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FChildActorAttachedActorInfo, RelativeTransform) == 0x000010, "Member 'FChildActorAttachedActorInfo::RelativeTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChildActorComponentInstanceData \ +static_assert(alignof(FChildActorComponentInstanceData) == 0x000008, "Wrong alignment on FChildActorComponentInstanceData"); \ +static_assert(sizeof(FChildActorComponentInstanceData) == 0x0000F8, "Wrong size on FChildActorComponentInstanceData"); \ +static_assert(offsetof(FChildActorComponentInstanceData, ChildActorClass) == 0x0000B8, "Member 'FChildActorComponentInstanceData::ChildActorClass' has a wrong offset!"); \ +static_assert(offsetof(FChildActorComponentInstanceData, ChildActorName) == 0x0000C0, "Member 'FChildActorComponentInstanceData::ChildActorName' has a wrong offset!"); \ +static_assert(offsetof(FChildActorComponentInstanceData, AttachedActors) == 0x0000C8, "Member 'FChildActorComponentInstanceData::AttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedKeyToActionInfo \ +static_assert(alignof(FCachedKeyToActionInfo) == 0x000008, "Wrong alignment on FCachedKeyToActionInfo"); \ +static_assert(sizeof(FCachedKeyToActionInfo) == 0x000070, "Wrong size on FCachedKeyToActionInfo"); \ +static_assert(offsetof(FCachedKeyToActionInfo, PlayerInput) == 0x000000, "Member 'FCachedKeyToActionInfo::PlayerInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBatchedLine \ +static_assert(alignof(FBatchedLine) == 0x000008, "Wrong alignment on FBatchedLine"); \ +static_assert(sizeof(FBatchedLine) == 0x000050, "Wrong size on FBatchedLine"); \ +static_assert(offsetof(FBatchedLine, Start) == 0x000000, "Member 'FBatchedLine::Start' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, End) == 0x000018, "Member 'FBatchedLine::End' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, Color) == 0x000030, "Member 'FBatchedLine::Color' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, Thickness) == 0x000040, "Member 'FBatchedLine::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, RemainingLifeTime) == 0x000044, "Member 'FBatchedLine::RemainingLifeTime' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, DepthPriority) == 0x000048, "Member 'FBatchedLine::DepthPriority' has a wrong offset!"); \ +static_assert(offsetof(FBatchedLine, BatchID) == 0x00004C, "Member 'FBatchedLine::BatchID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBatchedPoint \ +static_assert(alignof(FBatchedPoint) == 0x000008, "Wrong alignment on FBatchedPoint"); \ +static_assert(sizeof(FBatchedPoint) == 0x000038, "Wrong size on FBatchedPoint"); \ +static_assert(offsetof(FBatchedPoint, Position) == 0x000000, "Member 'FBatchedPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(FBatchedPoint, Color) == 0x000018, "Member 'FBatchedPoint::Color' has a wrong offset!"); \ +static_assert(offsetof(FBatchedPoint, PointSize) == 0x000028, "Member 'FBatchedPoint::PointSize' has a wrong offset!"); \ +static_assert(offsetof(FBatchedPoint, RemainingLifeTime) == 0x00002C, "Member 'FBatchedPoint::RemainingLifeTime' has a wrong offset!"); \ +static_assert(offsetof(FBatchedPoint, DepthPriority) == 0x000030, "Member 'FBatchedPoint::DepthPriority' has a wrong offset!"); \ +static_assert(offsetof(FBatchedPoint, BatchID) == 0x000034, "Member 'FBatchedPoint::BatchID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialSpriteElement \ +static_assert(alignof(FMaterialSpriteElement) == 0x000008, "Wrong alignment on FMaterialSpriteElement"); \ +static_assert(sizeof(FMaterialSpriteElement) == 0x000028, "Wrong size on FMaterialSpriteElement"); \ +static_assert(offsetof(FMaterialSpriteElement, Material) == 0x000000, "Member 'FMaterialSpriteElement::Material' has a wrong offset!"); \ +static_assert(offsetof(FMaterialSpriteElement, DistanceToOpacityCurve) == 0x000008, "Member 'FMaterialSpriteElement::DistanceToOpacityCurve' has a wrong offset!"); \ +static_assert(offsetof(FMaterialSpriteElement, BaseSizeX) == 0x000014, "Member 'FMaterialSpriteElement::BaseSizeX' has a wrong offset!"); \ +static_assert(offsetof(FMaterialSpriteElement, BaseSizeY) == 0x000018, "Member 'FMaterialSpriteElement::BaseSizeY' has a wrong offset!"); \ +static_assert(offsetof(FMaterialSpriteElement, DistanceToSizeCurve) == 0x000020, "Member 'FMaterialSpriteElement::DistanceToSizeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineShowFlagsSetting \ +static_assert(alignof(FEngineShowFlagsSetting) == 0x000008, "Wrong alignment on FEngineShowFlagsSetting"); \ +static_assert(sizeof(FEngineShowFlagsSetting) == 0x000018, "Wrong size on FEngineShowFlagsSetting"); \ +static_assert(offsetof(FEngineShowFlagsSetting, ShowFlagName) == 0x000000, "Member 'FEngineShowFlagsSetting::ShowFlagName' has a wrong offset!"); \ +static_assert(offsetof(FEngineShowFlagsSetting, Enabled) == 0x000010, "Member 'FEngineShowFlagsSetting::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshComponentEndPhysicsTickFunction \ +static_assert(alignof(FSkeletalMeshComponentEndPhysicsTickFunction) == 0x000008, "Wrong alignment on FSkeletalMeshComponentEndPhysicsTickFunction"); \ +static_assert(sizeof(FSkeletalMeshComponentEndPhysicsTickFunction) == 0x000030, "Wrong size on FSkeletalMeshComponentEndPhysicsTickFunction"); \ + +#define DUMPER7_ASSERTS_FSplinePoint \ +static_assert(alignof(FSplinePoint) == 0x000008, "Wrong alignment on FSplinePoint"); \ +static_assert(sizeof(FSplinePoint) == 0x000088, "Wrong size on FSplinePoint"); \ +static_assert(offsetof(FSplinePoint, InputKey) == 0x000000, "Member 'FSplinePoint::InputKey' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, Position) == 0x000008, "Member 'FSplinePoint::Position' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, ArriveTangent) == 0x000020, "Member 'FSplinePoint::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, LeaveTangent) == 0x000038, "Member 'FSplinePoint::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, Rotation) == 0x000050, "Member 'FSplinePoint::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, Scale) == 0x000068, "Member 'FSplinePoint::Scale' has a wrong offset!"); \ +static_assert(offsetof(FSplinePoint, Type) == 0x000080, "Member 'FSplinePoint::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplineMeshParams \ +static_assert(alignof(FSplineMeshParams) == 0x000008, "Wrong alignment on FSplineMeshParams"); \ +static_assert(sizeof(FSplineMeshParams) == 0x0000B0, "Wrong size on FSplineMeshParams"); \ +static_assert(offsetof(FSplineMeshParams, StartPos) == 0x000000, "Member 'FSplineMeshParams::StartPos' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, StartTangent) == 0x000018, "Member 'FSplineMeshParams::StartTangent' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, StartScale) == 0x000030, "Member 'FSplineMeshParams::StartScale' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, StartRoll) == 0x000040, "Member 'FSplineMeshParams::StartRoll' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, StartOffset) == 0x000048, "Member 'FSplineMeshParams::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, EndPos) == 0x000058, "Member 'FSplineMeshParams::EndPos' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, EndScale) == 0x000070, "Member 'FSplineMeshParams::EndScale' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, EndTangent) == 0x000080, "Member 'FSplineMeshParams::EndTangent' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, EndRoll) == 0x000098, "Member 'FSplineMeshParams::EndRoll' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshParams, EndOffset) == 0x0000A0, "Member 'FSplineMeshParams::EndOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshVertexColorLODData \ +static_assert(alignof(FStaticMeshVertexColorLODData) == 0x000008, "Wrong alignment on FStaticMeshVertexColorLODData"); \ +static_assert(sizeof(FStaticMeshVertexColorLODData) == 0x000028, "Wrong size on FStaticMeshVertexColorLODData"); \ +static_assert(offsetof(FStaticMeshVertexColorLODData, PaintedVertices) == 0x000000, "Member 'FStaticMeshVertexColorLODData::PaintedVertices' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshVertexColorLODData, VertexBufferColors) == 0x000010, "Member 'FStaticMeshVertexColorLODData::VertexBufferColors' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshVertexColorLODData, LODIndex) == 0x000020, "Member 'FStaticMeshVertexColorLODData::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshComponentInstanceData \ +static_assert(alignof(FStaticMeshComponentInstanceData) == 0x000010, "Wrong alignment on FStaticMeshComponentInstanceData"); \ +static_assert(sizeof(FStaticMeshComponentInstanceData) == 0x000170, "Wrong size on FStaticMeshComponentInstanceData"); \ +static_assert(offsetof(FStaticMeshComponentInstanceData, StaticMesh) == 0x000130, "Member 'FStaticMeshComponentInstanceData::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshComponentInstanceData, VertexColorLODs) == 0x000138, "Member 'FStaticMeshComponentInstanceData::VertexColorLODs' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshComponentInstanceData, CachedStaticLighting) == 0x000148, "Member 'FStaticMeshComponentInstanceData::CachedStaticLighting' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshComponentInstanceData, StreamingTextureData) == 0x000158, "Member 'FStaticMeshComponentInstanceData::StreamingTextureData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplineMeshInstanceData \ +static_assert(alignof(FSplineMeshInstanceData) == 0x000010, "Wrong alignment on FSplineMeshInstanceData"); \ +static_assert(sizeof(FSplineMeshInstanceData) == 0x0001D0, "Wrong size on FSplineMeshInstanceData"); \ +static_assert(offsetof(FSplineMeshInstanceData, StartPos) == 0x000168, "Member 'FSplineMeshInstanceData::StartPos' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshInstanceData, EndPos) == 0x000180, "Member 'FSplineMeshInstanceData::EndPos' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshInstanceData, StartTangent) == 0x000198, "Member 'FSplineMeshInstanceData::StartTangent' has a wrong offset!"); \ +static_assert(offsetof(FSplineMeshInstanceData, EndTangent) == 0x0001B0, "Member 'FSplineMeshInstanceData::EndTangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuntimeCurveLinearColor \ +static_assert(alignof(FRuntimeCurveLinearColor) == 0x000008, "Wrong alignment on FRuntimeCurveLinearColor"); \ +static_assert(sizeof(FRuntimeCurveLinearColor) == 0x000208, "Wrong size on FRuntimeCurveLinearColor"); \ +static_assert(offsetof(FRuntimeCurveLinearColor, ColorCurves) == 0x000000, "Member 'FRuntimeCurveLinearColor::ColorCurves' has a wrong offset!"); \ +static_assert(offsetof(FRuntimeCurveLinearColor, ExternalCurve) == 0x000200, "Member 'FRuntimeCurveLinearColor::ExternalCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveAtlasColorAdjustments \ +static_assert(alignof(FCurveAtlasColorAdjustments) == 0x000004, "Wrong alignment on FCurveAtlasColorAdjustments"); \ +static_assert(sizeof(FCurveAtlasColorAdjustments) == 0x000024, "Wrong size on FCurveAtlasColorAdjustments"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustBrightness) == 0x000004, "Member 'FCurveAtlasColorAdjustments::AdjustBrightness' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustBrightnessCurve) == 0x000008, "Member 'FCurveAtlasColorAdjustments::AdjustBrightnessCurve' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustVibrance) == 0x00000C, "Member 'FCurveAtlasColorAdjustments::AdjustVibrance' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustSaturation) == 0x000010, "Member 'FCurveAtlasColorAdjustments::AdjustSaturation' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustRGBCurve) == 0x000014, "Member 'FCurveAtlasColorAdjustments::AdjustRGBCurve' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustHue) == 0x000018, "Member 'FCurveAtlasColorAdjustments::AdjustHue' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustMinAlpha) == 0x00001C, "Member 'FCurveAtlasColorAdjustments::AdjustMinAlpha' has a wrong offset!"); \ +static_assert(offsetof(FCurveAtlasColorAdjustments, AdjustMaxAlpha) == 0x000020, "Member 'FCurveAtlasColorAdjustments::AdjustMaxAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuntimeVectorCurve \ +static_assert(alignof(FRuntimeVectorCurve) == 0x000008, "Wrong alignment on FRuntimeVectorCurve"); \ +static_assert(sizeof(FRuntimeVectorCurve) == 0x000188, "Wrong size on FRuntimeVectorCurve"); \ +static_assert(offsetof(FRuntimeVectorCurve, VectorCurves) == 0x000000, "Member 'FRuntimeVectorCurve::VectorCurves' has a wrong offset!"); \ +static_assert(offsetof(FRuntimeVectorCurve, ExternalCurve) == 0x000180, "Member 'FRuntimeVectorCurve::ExternalCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntegralKey \ +static_assert(alignof(FIntegralKey) == 0x000004, "Wrong alignment on FIntegralKey"); \ +static_assert(sizeof(FIntegralKey) == 0x000008, "Wrong size on FIntegralKey"); \ +static_assert(offsetof(FIntegralKey, Time) == 0x000000, "Member 'FIntegralKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FIntegralKey, Value) == 0x000004, "Member 'FIntegralKey::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntegralCurve \ +static_assert(alignof(FIntegralCurve) == 0x000008, "Wrong alignment on FIntegralCurve"); \ +static_assert(sizeof(FIntegralCurve) == 0x000080, "Wrong size on FIntegralCurve"); \ +static_assert(offsetof(FIntegralCurve, Keys) == 0x000068, "Member 'FIntegralCurve::Keys' has a wrong offset!"); \ +static_assert(offsetof(FIntegralCurve, DefaultValue) == 0x000078, "Member 'FIntegralCurve::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FIntegralCurve, bUseDefaultValueBeforeFirstKey) == 0x00007C, "Member 'FIntegralCurve::bUseDefaultValueBeforeFirstKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimpleCurve \ +static_assert(alignof(FSimpleCurve) == 0x000008, "Wrong alignment on FSimpleCurve"); \ +static_assert(sizeof(FSimpleCurve) == 0x000088, "Wrong size on FSimpleCurve"); \ +static_assert(offsetof(FSimpleCurve, InterpMode) == 0x000070, "Member 'FSimpleCurve::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FSimpleCurve, Keys) == 0x000078, "Member 'FSimpleCurve::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStringCurve \ +static_assert(alignof(FStringCurve) == 0x000008, "Wrong alignment on FStringCurve"); \ +static_assert(sizeof(FStringCurve) == 0x000088, "Wrong size on FStringCurve"); \ +static_assert(offsetof(FStringCurve, DefaultValue) == 0x000068, "Member 'FStringCurve::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FStringCurve, Keys) == 0x000078, "Member 'FStringCurve::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataDrivenConsoleVariable \ +static_assert(alignof(FDataDrivenConsoleVariable) == 0x000008, "Wrong alignment on FDataDrivenConsoleVariable"); \ +static_assert(sizeof(FDataDrivenConsoleVariable) == 0x000050, "Wrong size on FDataDrivenConsoleVariable"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, Type) == 0x000000, "Member 'FDataDrivenConsoleVariable::Type' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, Name) == 0x000008, "Member 'FDataDrivenConsoleVariable::Name' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, Tooltip) == 0x000018, "Member 'FDataDrivenConsoleVariable::Tooltip' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, DefaultValueFloat) == 0x000028, "Member 'FDataDrivenConsoleVariable::DefaultValueFloat' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, DefaultValueInt) == 0x00002C, "Member 'FDataDrivenConsoleVariable::DefaultValueInt' has a wrong offset!"); \ +static_assert(offsetof(FDataDrivenConsoleVariable, DefaultValueBool) == 0x000030, "Member 'FDataDrivenConsoleVariable::DefaultValueBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataTableCategoryHandle \ +static_assert(alignof(FDataTableCategoryHandle) == 0x000008, "Wrong alignment on FDataTableCategoryHandle"); \ +static_assert(sizeof(FDataTableCategoryHandle) == 0x000018, "Wrong size on FDataTableCategoryHandle"); \ +static_assert(offsetof(FDataTableCategoryHandle, DataTable) == 0x000000, "Member 'FDataTableCategoryHandle::DataTable' has a wrong offset!"); \ +static_assert(offsetof(FDataTableCategoryHandle, ColumnName) == 0x000008, "Member 'FDataTableCategoryHandle::ColumnName' has a wrong offset!"); \ +static_assert(offsetof(FDataTableCategoryHandle, RowContents) == 0x000010, "Member 'FDataTableCategoryHandle::RowContents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMulticastRecordOptions \ +static_assert(alignof(FMulticastRecordOptions) == 0x000008, "Wrong alignment on FMulticastRecordOptions"); \ +static_assert(sizeof(FMulticastRecordOptions) == 0x000018, "Wrong size on FMulticastRecordOptions"); \ +static_assert(offsetof(FMulticastRecordOptions, FuncPathName) == 0x000000, "Member 'FMulticastRecordOptions::FuncPathName' has a wrong offset!"); \ +static_assert(offsetof(FMulticastRecordOptions, bServerSkip) == 0x000010, "Member 'FMulticastRecordOptions::bServerSkip' has a wrong offset!"); \ +static_assert(offsetof(FMulticastRecordOptions, bClientSkip) == 0x000011, "Member 'FMulticastRecordOptions::bClientSkip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSelectedFragmentProperties \ +static_assert(alignof(FSelectedFragmentProperties) == 0x000008, "Wrong alignment on FSelectedFragmentProperties"); \ +static_assert(sizeof(FSelectedFragmentProperties) == 0x000020, "Wrong size on FSelectedFragmentProperties"); \ +static_assert(offsetof(FSelectedFragmentProperties, Tag) == 0x000000, "Member 'FSelectedFragmentProperties::Tag' has a wrong offset!"); \ +static_assert(offsetof(FSelectedFragmentProperties, Fragment) == 0x000008, "Member 'FSelectedFragmentProperties::Fragment' has a wrong offset!"); \ +static_assert(offsetof(FSelectedFragmentProperties, bEnabled) == 0x000018, "Member 'FSelectedFragmentProperties::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestructE \ +static_assert(alignof(FDPMatchingRulestructE) == 0x000008, "Wrong alignment on FDPMatchingRulestructE"); \ +static_assert(sizeof(FDPMatchingRulestructE) == 0x000068, "Wrong size on FDPMatchingRulestructE"); \ +static_assert(offsetof(FDPMatchingRulestructE, OnTrue) == 0x000048, "Member 'FDPMatchingRulestructE::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestructE, OnFalse) == 0x000058, "Member 'FDPMatchingRulestructE::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDPMatchingRulestruct \ +static_assert(alignof(FDPMatchingRulestruct) == 0x000008, "Wrong alignment on FDPMatchingRulestruct"); \ +static_assert(sizeof(FDPMatchingRulestruct) == 0x000068, "Wrong size on FDPMatchingRulestruct"); \ +static_assert(offsetof(FDPMatchingRulestruct, OnTrue) == 0x000048, "Member 'FDPMatchingRulestruct::OnTrue' has a wrong offset!"); \ +static_assert(offsetof(FDPMatchingRulestruct, OnFalse) == 0x000058, "Member 'FDPMatchingRulestruct::OnFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDialogueContextMapping \ +static_assert(alignof(FDialogueContextMapping) == 0x000008, "Wrong alignment on FDialogueContextMapping"); \ +static_assert(sizeof(FDialogueContextMapping) == 0x000038, "Wrong size on FDialogueContextMapping"); \ +static_assert(offsetof(FDialogueContextMapping, Context) == 0x000000, "Member 'FDialogueContextMapping::Context' has a wrong offset!"); \ +static_assert(offsetof(FDialogueContextMapping, SoundWave) == 0x000018, "Member 'FDialogueContextMapping::SoundWave' has a wrong offset!"); \ +static_assert(offsetof(FDialogueContextMapping, LocalizationKeyFormat) == 0x000020, "Member 'FDialogueContextMapping::LocalizationKeyFormat' has a wrong offset!"); \ +static_assert(offsetof(FDialogueContextMapping, Proxy) == 0x000030, "Member 'FDialogueContextMapping::Proxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGraphReference \ +static_assert(alignof(FGraphReference) == 0x000008, "Wrong alignment on FGraphReference"); \ +static_assert(sizeof(FGraphReference) == 0x000020, "Wrong size on FGraphReference"); \ +static_assert(offsetof(FGraphReference, MacroGraph) == 0x000000, "Member 'FGraphReference::MacroGraph' has a wrong offset!"); \ +static_assert(offsetof(FGraphReference, GraphBlueprint) == 0x000008, "Member 'FGraphReference::GraphBlueprint' has a wrong offset!"); \ +static_assert(offsetof(FGraphReference, GraphGuid) == 0x000010, "Member 'FGraphReference::GraphGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetImportInfo \ +static_assert(alignof(FAssetImportInfo) == 0x000001, "Wrong alignment on FAssetImportInfo"); \ +static_assert(sizeof(FAssetImportInfo) == 0x000001, "Wrong size on FAssetImportInfo"); \ + +#define DUMPER7_ASSERTS_FTypedElementDeletionOptions \ +static_assert(alignof(FTypedElementDeletionOptions) == 0x000001, "Wrong alignment on FTypedElementDeletionOptions"); \ +static_assert(sizeof(FTypedElementDeletionOptions) == 0x000003, "Wrong size on FTypedElementDeletionOptions"); \ +static_assert(offsetof(FTypedElementDeletionOptions, bVerifyDeletionCanHappen) == 0x000000, "Member 'FTypedElementDeletionOptions::bVerifyDeletionCanHappen' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementDeletionOptions, bWarnAboutReferences) == 0x000001, "Member 'FTypedElementDeletionOptions::bWarnAboutReferences' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementDeletionOptions, bWarnAboutSoftReferences) == 0x000002, "Member 'FTypedElementDeletionOptions::bWarnAboutSoftReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDamageEvent \ +static_assert(alignof(FDamageEvent) == 0x000008, "Wrong alignment on FDamageEvent"); \ +static_assert(sizeof(FDamageEvent) == 0x000010, "Wrong size on FDamageEvent"); \ +static_assert(offsetof(FDamageEvent, DamageTypeClass) == 0x000008, "Member 'FDamageEvent::DamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPointDamageEvent \ +static_assert(alignof(FPointDamageEvent) == 0x000008, "Wrong alignment on FPointDamageEvent"); \ +static_assert(sizeof(FPointDamageEvent) == 0x000118, "Wrong size on FPointDamageEvent"); \ +static_assert(offsetof(FPointDamageEvent, Damage) == 0x000010, "Member 'FPointDamageEvent::Damage' has a wrong offset!"); \ +static_assert(offsetof(FPointDamageEvent, ShotDirection) == 0x000018, "Member 'FPointDamageEvent::ShotDirection' has a wrong offset!"); \ +static_assert(offsetof(FPointDamageEvent, HitInfo) == 0x000030, "Member 'FPointDamageEvent::HitInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialDamageEvent \ +static_assert(alignof(FRadialDamageEvent) == 0x000008, "Wrong alignment on FRadialDamageEvent"); \ +static_assert(sizeof(FRadialDamageEvent) == 0x000050, "Wrong size on FRadialDamageEvent"); \ +static_assert(offsetof(FRadialDamageEvent, Params) == 0x000010, "Member 'FRadialDamageEvent::Params' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageEvent, Origin) == 0x000028, "Member 'FRadialDamageEvent::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRadialDamageEvent, ComponentHits) == 0x000040, "Member 'FRadialDamageEvent::ComponentHits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHitResultNetSerializerConfig \ +static_assert(alignof(FHitResultNetSerializerConfig) == 0x000008, "Wrong alignment on FHitResultNetSerializerConfig"); \ +static_assert(sizeof(FHitResultNetSerializerConfig) == 0x000010, "Wrong size on FHitResultNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FRigidBodyState \ +static_assert(alignof(FRigidBodyState) == 0x000010, "Wrong alignment on FRigidBodyState"); \ +static_assert(sizeof(FRigidBodyState) == 0x000080, "Wrong size on FRigidBodyState"); \ +static_assert(offsetof(FRigidBodyState, Position) == 0x000000, "Member 'FRigidBodyState::Position' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyState, Quaternion) == 0x000020, "Member 'FRigidBodyState::Quaternion' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyState, LinVel) == 0x000040, "Member 'FRigidBodyState::LinVel' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyState, AngVel) == 0x000058, "Member 'FRigidBodyState::AngVel' has a wrong offset!"); \ +static_assert(offsetof(FRigidBodyState, Flags) == 0x000070, "Member 'FRigidBodyState::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharacterNetworkSerializationPackedBitsNetSerializerConfig \ +static_assert(alignof(FCharacterNetworkSerializationPackedBitsNetSerializerConfig) == 0x000008, "Wrong alignment on FCharacterNetworkSerializationPackedBitsNetSerializerConfig"); \ +static_assert(sizeof(FCharacterNetworkSerializationPackedBitsNetSerializerConfig) == 0x000018, "Wrong size on FCharacterNetworkSerializationPackedBitsNetSerializerConfig"); \ +static_assert(offsetof(FCharacterNetworkSerializationPackedBitsNetSerializerConfig, MaxAllowedDataBits) == 0x000010, "Member 'FCharacterNetworkSerializationPackedBitsNetSerializerConfig::MaxAllowedDataBits' has a wrong offset!"); \ +static_assert(offsetof(FCharacterNetworkSerializationPackedBitsNetSerializerConfig, MaxAllowedObjectReferences) == 0x000014, "Member 'FCharacterNetworkSerializationPackedBitsNetSerializerConfig::MaxAllowedObjectReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveForceFeedbackEffect \ +static_assert(alignof(FActiveForceFeedbackEffect) == 0x000008, "Wrong alignment on FActiveForceFeedbackEffect"); \ +static_assert(sizeof(FActiveForceFeedbackEffect) == 0x000070, "Wrong size on FActiveForceFeedbackEffect"); \ +static_assert(offsetof(FActiveForceFeedbackEffect, ForceFeedbackEffect) == 0x000000, "Member 'FActiveForceFeedbackEffect::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(FActiveForceFeedbackEffect, ActiveDeviceProperties) == 0x000020, "Member 'FActiveForceFeedbackEffect::ActiveDeviceProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceColorData \ +static_assert(alignof(FDeviceColorData) == 0x000004, "Wrong alignment on FDeviceColorData"); \ +static_assert(sizeof(FDeviceColorData) == 0x000008, "Wrong size on FDeviceColorData"); \ +static_assert(offsetof(FDeviceColorData, bEnable) == 0x000000, "Member 'FDeviceColorData::bEnable' has a wrong offset!"); \ +static_assert(offsetof(FDeviceColorData, bResetAfterCompletion) == 0x000001, "Member 'FDeviceColorData::bResetAfterCompletion' has a wrong offset!"); \ +static_assert(offsetof(FDeviceColorData, LightColor) == 0x000004, "Member 'FDeviceColorData::LightColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceColorCurveData \ +static_assert(alignof(FDeviceColorCurveData) == 0x000008, "Wrong alignment on FDeviceColorCurveData"); \ +static_assert(sizeof(FDeviceColorCurveData) == 0x000010, "Wrong size on FDeviceColorCurveData"); \ +static_assert(offsetof(FDeviceColorCurveData, bEnable) == 0x000000, "Member 'FDeviceColorCurveData::bEnable' has a wrong offset!"); \ +static_assert(offsetof(FDeviceColorCurveData, bResetAfterCompletion) == 0x000001, "Member 'FDeviceColorCurveData::bResetAfterCompletion' has a wrong offset!"); \ +static_assert(offsetof(FDeviceColorCurveData, DeviceColorCurve) == 0x000008, "Member 'FDeviceColorCurveData::DeviceColorCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceTriggerTriggerResistanceData \ +static_assert(alignof(FDeviceTriggerTriggerResistanceData) == 0x000004, "Wrong alignment on FDeviceTriggerTriggerResistanceData"); \ +static_assert(sizeof(FDeviceTriggerTriggerResistanceData) == 0x000010, "Wrong size on FDeviceTriggerTriggerResistanceData"); \ +static_assert(offsetof(FDeviceTriggerTriggerResistanceData, StartPosition) == 0x000000, "Member 'FDeviceTriggerTriggerResistanceData::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerTriggerResistanceData, StartStrengh) == 0x000004, "Member 'FDeviceTriggerTriggerResistanceData::StartStrengh' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerTriggerResistanceData, EndPosition) == 0x000008, "Member 'FDeviceTriggerTriggerResistanceData::EndPosition' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerTriggerResistanceData, EndStrengh) == 0x00000C, "Member 'FDeviceTriggerTriggerResistanceData::EndStrengh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceTriggerTriggerVibrationData \ +static_assert(alignof(FDeviceTriggerTriggerVibrationData) == 0x000008, "Wrong alignment on FDeviceTriggerTriggerVibrationData"); \ +static_assert(sizeof(FDeviceTriggerTriggerVibrationData) == 0x000018, "Wrong size on FDeviceTriggerTriggerVibrationData"); \ +static_assert(offsetof(FDeviceTriggerTriggerVibrationData, TriggerPositionCurve) == 0x000000, "Member 'FDeviceTriggerTriggerVibrationData::TriggerPositionCurve' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerTriggerVibrationData, VibrationFrequencyCurve) == 0x000008, "Member 'FDeviceTriggerTriggerVibrationData::VibrationFrequencyCurve' has a wrong offset!"); \ +static_assert(offsetof(FDeviceTriggerTriggerVibrationData, VibrationAmplitudeCurve) == 0x000010, "Member 'FDeviceTriggerTriggerVibrationData::VibrationAmplitudeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioBasedVibrationData \ +static_assert(alignof(FAudioBasedVibrationData) == 0x000008, "Wrong alignment on FAudioBasedVibrationData"); \ +static_assert(sizeof(FAudioBasedVibrationData) == 0x000008, "Wrong size on FAudioBasedVibrationData"); \ +static_assert(offsetof(FAudioBasedVibrationData, Sound) == 0x000000, "Member 'FAudioBasedVibrationData::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveDeviceProperty \ +static_assert(alignof(FActiveDeviceProperty) == 0x000008, "Wrong alignment on FActiveDeviceProperty"); \ +static_assert(sizeof(FActiveDeviceProperty) == 0x000020, "Wrong size on FActiveDeviceProperty"); \ +static_assert(offsetof(FActiveDeviceProperty, Property) == 0x000000, "Member 'FActiveDeviceProperty::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource_ConstantForce \ +static_assert(alignof(FRootMotionSource_ConstantForce) == 0x000010, "Wrong alignment on FRootMotionSource_ConstantForce"); \ +static_assert(sizeof(FRootMotionSource_ConstantForce) == 0x000100, "Wrong size on FRootMotionSource_ConstantForce"); \ +static_assert(offsetof(FRootMotionSource_ConstantForce, Force) == 0x0000D8, "Member 'FRootMotionSource_ConstantForce::Force' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_ConstantForce, StrengthOverTime) == 0x0000F0, "Member 'FRootMotionSource_ConstantForce::StrengthOverTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource_RadialForce \ +static_assert(alignof(FRootMotionSource_RadialForce) == 0x000010, "Wrong alignment on FRootMotionSource_RadialForce"); \ +static_assert(sizeof(FRootMotionSource_RadialForce) == 0x000140, "Wrong size on FRootMotionSource_RadialForce"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, Location) == 0x0000D8, "Member 'FRootMotionSource_RadialForce::Location' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, LocationActor) == 0x0000F0, "Member 'FRootMotionSource_RadialForce::LocationActor' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, Radius) == 0x0000F8, "Member 'FRootMotionSource_RadialForce::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, Strength) == 0x0000FC, "Member 'FRootMotionSource_RadialForce::Strength' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, bIsPush) == 0x000100, "Member 'FRootMotionSource_RadialForce::bIsPush' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, bNoZForce) == 0x000101, "Member 'FRootMotionSource_RadialForce::bNoZForce' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, StrengthDistanceFalloff) == 0x000108, "Member 'FRootMotionSource_RadialForce::StrengthDistanceFalloff' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, StrengthOverTime) == 0x000110, "Member 'FRootMotionSource_RadialForce::StrengthOverTime' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, bUseFixedWorldDirection) == 0x000118, "Member 'FRootMotionSource_RadialForce::bUseFixedWorldDirection' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_RadialForce, FixedWorldDirection) == 0x000120, "Member 'FRootMotionSource_RadialForce::FixedWorldDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSource_JumpForce \ +static_assert(alignof(FRootMotionSource_JumpForce) == 0x000010, "Wrong alignment on FRootMotionSource_JumpForce"); \ +static_assert(sizeof(FRootMotionSource_JumpForce) == 0x000130, "Wrong size on FRootMotionSource_JumpForce"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, Rotation) == 0x0000D8, "Member 'FRootMotionSource_JumpForce::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, Distance) == 0x0000F0, "Member 'FRootMotionSource_JumpForce::Distance' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, Height) == 0x0000F4, "Member 'FRootMotionSource_JumpForce::Height' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, bDisableTimeout) == 0x0000F8, "Member 'FRootMotionSource_JumpForce::bDisableTimeout' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, PathOffsetCurve) == 0x000100, "Member 'FRootMotionSource_JumpForce::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(FRootMotionSource_JumpForce, TimeMappingCurve) == 0x000108, "Member 'FRootMotionSource_JumpForce::TimeMappingCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootMotionSourceGroupNetSerializerConfig \ +static_assert(alignof(FRootMotionSourceGroupNetSerializerConfig) == 0x000008, "Wrong alignment on FRootMotionSourceGroupNetSerializerConfig"); \ +static_assert(sizeof(FRootMotionSourceGroupNetSerializerConfig) == 0x000028, "Wrong size on FRootMotionSourceGroupNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FTouchInputControl \ +static_assert(alignof(FTouchInputControl) == 0x000008, "Wrong alignment on FTouchInputControl"); \ +static_assert(sizeof(FTouchInputControl) == 0x000098, "Wrong size on FTouchInputControl"); \ +static_assert(offsetof(FTouchInputControl, bTreatAsButton) == 0x000000, "Member 'FTouchInputControl::bTreatAsButton' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, Image1) == 0x000008, "Member 'FTouchInputControl::Image1' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, Image2) == 0x000010, "Member 'FTouchInputControl::Image2' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, Center) == 0x000018, "Member 'FTouchInputControl::Center' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, VisualSize) == 0x000028, "Member 'FTouchInputControl::VisualSize' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, ThumbSize) == 0x000038, "Member 'FTouchInputControl::ThumbSize' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, InteractionSize) == 0x000048, "Member 'FTouchInputControl::InteractionSize' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, InputScale) == 0x000058, "Member 'FTouchInputControl::InputScale' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, MainInputKey) == 0x000068, "Member 'FTouchInputControl::MainInputKey' has a wrong offset!"); \ +static_assert(offsetof(FTouchInputControl, AltInputKey) == 0x000080, "Member 'FTouchInputControl::AltInputKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetLevelVisibilityTransactionId \ +static_assert(alignof(FNetLevelVisibilityTransactionId) == 0x000004, "Wrong alignment on FNetLevelVisibilityTransactionId"); \ +static_assert(sizeof(FNetLevelVisibilityTransactionId) == 0x000004, "Wrong size on FNetLevelVisibilityTransactionId"); \ +static_assert(offsetof(FNetLevelVisibilityTransactionId, Data) == 0x000000, "Member 'FNetLevelVisibilityTransactionId::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUpdateLevelVisibilityLevelInfo \ +static_assert(alignof(FUpdateLevelVisibilityLevelInfo) == 0x000004, "Wrong alignment on FUpdateLevelVisibilityLevelInfo"); \ +static_assert(sizeof(FUpdateLevelVisibilityLevelInfo) == 0x000018, "Wrong size on FUpdateLevelVisibilityLevelInfo"); \ +static_assert(offsetof(FUpdateLevelVisibilityLevelInfo, PackageName) == 0x000000, "Member 'FUpdateLevelVisibilityLevelInfo::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelVisibilityLevelInfo, Filename) == 0x000008, "Member 'FUpdateLevelVisibilityLevelInfo::Filename' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelVisibilityLevelInfo, VisibilityRequestId) == 0x000010, "Member 'FUpdateLevelVisibilityLevelInfo::VisibilityRequestId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHLODISMComponentDesc \ +static_assert(alignof(FHLODISMComponentDesc) == 0x000008, "Wrong alignment on FHLODISMComponentDesc"); \ +static_assert(sizeof(FHLODISMComponentDesc) == 0x000030, "Wrong size on FHLODISMComponentDesc"); \ +static_assert(offsetof(FHLODISMComponentDesc, StaticMesh) == 0x000000, "Member 'FHLODISMComponentDesc::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FHLODISMComponentDesc, Material) == 0x000008, "Member 'FHLODISMComponentDesc::Material' has a wrong offset!"); \ +static_assert(offsetof(FHLODISMComponentDesc, Instances) == 0x000010, "Member 'FHLODISMComponentDesc::Instances' has a wrong offset!"); \ +static_assert(offsetof(FHLODISMComponentDesc, InstancesCustomPrimitiveData) == 0x000020, "Member 'FHLODISMComponentDesc::InstancesCustomPrimitiveData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentKey \ +static_assert(alignof(FComponentKey) == 0x000008, "Wrong alignment on FComponentKey"); \ +static_assert(sizeof(FComponentKey) == 0x000020, "Wrong size on FComponentKey"); \ +static_assert(offsetof(FComponentKey, OwnerClass) == 0x000000, "Member 'FComponentKey::OwnerClass' has a wrong offset!"); \ +static_assert(offsetof(FComponentKey, SCSVariableName) == 0x000008, "Member 'FComponentKey::SCSVariableName' has a wrong offset!"); \ +static_assert(offsetof(FComponentKey, AssociatedGuid) == 0x000010, "Member 'FComponentKey::AssociatedGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComponentOverrideRecord \ +static_assert(alignof(FComponentOverrideRecord) == 0x000008, "Wrong alignment on FComponentOverrideRecord"); \ +static_assert(sizeof(FComponentOverrideRecord) == 0x000078, "Wrong size on FComponentOverrideRecord"); \ +static_assert(offsetof(FComponentOverrideRecord, ComponentClass) == 0x000000, "Member 'FComponentOverrideRecord::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(FComponentOverrideRecord, ComponentTemplate) == 0x000008, "Member 'FComponentOverrideRecord::ComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(FComponentOverrideRecord, ComponentKey) == 0x000010, "Member 'FComponentOverrideRecord::ComponentKey' has a wrong offset!"); \ +static_assert(offsetof(FComponentOverrideRecord, CookedComponentInstancingData) == 0x000030, "Member 'FComponentOverrideRecord::CookedComponentInstancingData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputAxisDelegateBinding \ +static_assert(alignof(FBlueprintInputAxisDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintInputAxisDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputAxisDelegateBinding) == 0x000014, "Wrong size on FBlueprintInputAxisDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputAxisDelegateBinding, InputAxisName) == 0x000004, "Member 'FBlueprintInputAxisDelegateBinding::InputAxisName' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputAxisDelegateBinding, FunctionNameToBind) == 0x00000C, "Member 'FBlueprintInputAxisDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputAxisKeyDelegateBinding \ +static_assert(alignof(FBlueprintInputAxisKeyDelegateBinding) == 0x000008, "Wrong alignment on FBlueprintInputAxisKeyDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputAxisKeyDelegateBinding) == 0x000028, "Wrong size on FBlueprintInputAxisKeyDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputAxisKeyDelegateBinding, AxisKey) == 0x000008, "Member 'FBlueprintInputAxisKeyDelegateBinding::AxisKey' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputAxisKeyDelegateBinding, FunctionNameToBind) == 0x000020, "Member 'FBlueprintInputAxisKeyDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputKeyDelegateBinding \ +static_assert(alignof(FBlueprintInputKeyDelegateBinding) == 0x000008, "Wrong alignment on FBlueprintInputKeyDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputKeyDelegateBinding) == 0x000038, "Wrong size on FBlueprintInputKeyDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputKeyDelegateBinding, InputChord) == 0x000008, "Member 'FBlueprintInputKeyDelegateBinding::InputChord' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputKeyDelegateBinding, InputKeyEvent) == 0x000028, "Member 'FBlueprintInputKeyDelegateBinding::InputKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputKeyDelegateBinding, FunctionNameToBind) == 0x00002C, "Member 'FBlueprintInputKeyDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCurveEdTab \ +static_assert(alignof(FCurveEdTab) == 0x000008, "Wrong alignment on FCurveEdTab"); \ +static_assert(sizeof(FCurveEdTab) == 0x000030, "Wrong size on FCurveEdTab"); \ +static_assert(offsetof(FCurveEdTab, TabName) == 0x000000, "Member 'FCurveEdTab::TabName' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdTab, Curves) == 0x000010, "Member 'FCurveEdTab::Curves' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdTab, ViewStartInput) == 0x000020, "Member 'FCurveEdTab::ViewStartInput' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdTab, ViewEndInput) == 0x000024, "Member 'FCurveEdTab::ViewEndInput' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdTab, ViewStartOutput) == 0x000028, "Member 'FCurveEdTab::ViewStartOutput' has a wrong offset!"); \ +static_assert(offsetof(FCurveEdTab, ViewEndOutput) == 0x00002C, "Member 'FCurveEdTab::ViewEndOutput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMComponentInstance \ +static_assert(alignof(FISMComponentInstance) == 0x000004, "Wrong alignment on FISMComponentInstance"); \ +static_assert(sizeof(FISMComponentInstance) == 0x00000C, "Wrong size on FISMComponentInstance"); \ +static_assert(offsetof(FISMComponentInstance, ClientIndex) == 0x000000, "Member 'FISMComponentInstance::ClientIndex' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentInstance, InstanceIndex) == 0x000004, "Member 'FISMComponentInstance::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(FISMComponentInstance, InstanceSubIndex) == 0x000008, "Member 'FISMComponentInstance::InstanceSubIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMClientData \ +static_assert(alignof(FISMClientData) == 0x000008, "Wrong alignment on FISMClientData"); \ +static_assert(sizeof(FISMClientData) == 0x000010, "Wrong size on FISMClientData"); \ +static_assert(offsetof(FISMClientData, Instances) == 0x000000, "Member 'FISMClientData::Instances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FISMComponentData \ +static_assert(alignof(FISMComponentData) == 0x000001, "Wrong alignment on FISMComponentData"); \ +static_assert(sizeof(FISMComponentData) == 0x000001, "Wrong size on FISMComponentData"); \ + +#define DUMPER7_ASSERTS_FSoftISMComponentDescriptor \ +static_assert(alignof(FSoftISMComponentDescriptor) == 0x000008, "Wrong alignment on FSoftISMComponentDescriptor"); \ +static_assert(sizeof(FSoftISMComponentDescriptor) == 0x000248, "Wrong size on FSoftISMComponentDescriptor"); \ +static_assert(offsetof(FSoftISMComponentDescriptor, StaticMesh) == 0x0001D8, "Member 'FSoftISMComponentDescriptor::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FSoftISMComponentDescriptor, OverrideMaterials) == 0x000200, "Member 'FSoftISMComponentDescriptor::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(FSoftISMComponentDescriptor, OverlayMaterial) == 0x000210, "Member 'FSoftISMComponentDescriptor::OverlayMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSoftISMComponentDescriptor, RuntimeVirtualTextures) == 0x000238, "Member 'FSoftISMComponentDescriptor::RuntimeVirtualTextures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FQuaternionSpringState \ +static_assert(alignof(FQuaternionSpringState) == 0x000010, "Wrong alignment on FQuaternionSpringState"); \ +static_assert(sizeof(FQuaternionSpringState) == 0x000040, "Wrong size on FQuaternionSpringState"); \ + +#define DUMPER7_ASSERTS_FDrawToRenderTargetContext \ +static_assert(alignof(FDrawToRenderTargetContext) == 0x000008, "Wrong alignment on FDrawToRenderTargetContext"); \ +static_assert(sizeof(FDrawToRenderTargetContext) == 0x000008, "Wrong size on FDrawToRenderTargetContext"); \ +static_assert(offsetof(FDrawToRenderTargetContext, RenderTarget) == 0x000000, "Member 'FDrawToRenderTargetContext::RenderTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImportanceTexture \ +static_assert(alignof(FImportanceTexture) == 0x000008, "Wrong alignment on FImportanceTexture"); \ +static_assert(sizeof(FImportanceTexture) == 0x000050, "Wrong size on FImportanceTexture"); \ +static_assert(offsetof(FImportanceTexture, Size) == 0x000000, "Member 'FImportanceTexture::Size' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, NumMips) == 0x000008, "Member 'FImportanceTexture::NumMips' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, MarginalCDF) == 0x000010, "Member 'FImportanceTexture::MarginalCDF' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, ConditionalCDF) == 0x000020, "Member 'FImportanceTexture::ConditionalCDF' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, TextureData) == 0x000030, "Member 'FImportanceTexture::TextureData' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, Texture) == 0x000040, "Member 'FImportanceTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(FImportanceTexture, Weighting) == 0x000048, "Member 'FImportanceTexture::Weighting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLayerActorStats \ +static_assert(alignof(FLayerActorStats) == 0x000008, "Wrong alignment on FLayerActorStats"); \ +static_assert(sizeof(FLayerActorStats) == 0x000010, "Wrong size on FLayerActorStats"); \ +static_assert(offsetof(FLayerActorStats, Type) == 0x000000, "Member 'FLayerActorStats::Type' has a wrong offset!"); \ +static_assert(offsetof(FLayerActorStats, Total) == 0x000008, "Member 'FLayerActorStats::Total' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorFolderSet \ +static_assert(alignof(FActorFolderSet) == 0x000008, "Wrong alignment on FActorFolderSet"); \ +static_assert(sizeof(FActorFolderSet) == 0x000050, "Wrong size on FActorFolderSet"); \ +static_assert(offsetof(FActorFolderSet, ActorFolders) == 0x000000, "Member 'FActorFolderSet::ActorFolders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamableTextureInstance \ +static_assert(alignof(FStreamableTextureInstance) == 0x000008, "Wrong alignment on FStreamableTextureInstance"); \ +static_assert(sizeof(FStreamableTextureInstance) == 0x000048, "Wrong size on FStreamableTextureInstance"); \ + +#define DUMPER7_ASSERTS_FDynamicTextureInstance \ +static_assert(alignof(FDynamicTextureInstance) == 0x000008, "Wrong alignment on FDynamicTextureInstance"); \ +static_assert(sizeof(FDynamicTextureInstance) == 0x000058, "Wrong size on FDynamicTextureInstance"); \ +static_assert(offsetof(FDynamicTextureInstance, Texture) == 0x000048, "Member 'FDynamicTextureInstance::Texture' has a wrong offset!"); \ +static_assert(offsetof(FDynamicTextureInstance, bAttached) == 0x000050, "Member 'FDynamicTextureInstance::bAttached' has a wrong offset!"); \ +static_assert(offsetof(FDynamicTextureInstance, OriginalRadius) == 0x000054, "Member 'FDynamicTextureInstance::OriginalRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedStaticActorDestructionInfo \ +static_assert(alignof(FReplicatedStaticActorDestructionInfo) == 0x000008, "Wrong alignment on FReplicatedStaticActorDestructionInfo"); \ +static_assert(sizeof(FReplicatedStaticActorDestructionInfo) == 0x000040, "Wrong size on FReplicatedStaticActorDestructionInfo"); \ +static_assert(offsetof(FReplicatedStaticActorDestructionInfo, ObjClass) == 0x000038, "Member 'FReplicatedStaticActorDestructionInfo::ObjClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClientReceiveData \ +static_assert(alignof(FClientReceiveData) == 0x000008, "Wrong alignment on FClientReceiveData"); \ +static_assert(sizeof(FClientReceiveData) == 0x000040, "Wrong size on FClientReceiveData"); \ +static_assert(offsetof(FClientReceiveData, LocalPC) == 0x000000, "Member 'FClientReceiveData::LocalPC' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, MessageType) == 0x000008, "Member 'FClientReceiveData::MessageType' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, MessageIndex) == 0x000010, "Member 'FClientReceiveData::MessageIndex' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, MessageString) == 0x000018, "Member 'FClientReceiveData::MessageString' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, RelatedPlayerState_1) == 0x000028, "Member 'FClientReceiveData::RelatedPlayerState_1' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, RelatedPlayerState_2) == 0x000030, "Member 'FClientReceiveData::RelatedPlayerState_2' has a wrong offset!"); \ +static_assert(offsetof(FClientReceiveData, OptionalObject) == 0x000038, "Member 'FClientReceiveData::OptionalObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHLODInstancingKey \ +static_assert(alignof(FHLODInstancingKey) == 0x000008, "Wrong alignment on FHLODInstancingKey"); \ +static_assert(sizeof(FHLODInstancingKey) == 0x000010, "Wrong size on FHLODInstancingKey"); \ +static_assert(offsetof(FHLODInstancingKey, StaticMesh) == 0x000000, "Member 'FHLODInstancingKey::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FHLODInstancingKey, Material) == 0x000008, "Member 'FHLODInstancingKey::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialFunctionInfo \ +static_assert(alignof(FMaterialFunctionInfo) == 0x000008, "Wrong alignment on FMaterialFunctionInfo"); \ +static_assert(sizeof(FMaterialFunctionInfo) == 0x000018, "Wrong size on FMaterialFunctionInfo"); \ +static_assert(offsetof(FMaterialFunctionInfo, StateId) == 0x000000, "Member 'FMaterialFunctionInfo::StateId' has a wrong offset!"); \ +static_assert(offsetof(FMaterialFunctionInfo, Function) == 0x000010, "Member 'FMaterialFunctionInfo::Function' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialParameterCollectionInfo \ +static_assert(alignof(FMaterialParameterCollectionInfo) == 0x000008, "Wrong alignment on FMaterialParameterCollectionInfo"); \ +static_assert(sizeof(FMaterialParameterCollectionInfo) == 0x000018, "Wrong size on FMaterialParameterCollectionInfo"); \ +static_assert(offsetof(FMaterialParameterCollectionInfo, StateId) == 0x000000, "Member 'FMaterialParameterCollectionInfo::StateId' has a wrong offset!"); \ +static_assert(offsetof(FMaterialParameterCollectionInfo, ParameterCollection) == 0x000010, "Member 'FMaterialParameterCollectionInfo::ParameterCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialCachedParameterEditorInfo \ +static_assert(alignof(FMaterialCachedParameterEditorInfo) == 0x000008, "Wrong alignment on FMaterialCachedParameterEditorInfo"); \ +static_assert(sizeof(FMaterialCachedParameterEditorInfo) == 0x000030, "Wrong size on FMaterialCachedParameterEditorInfo"); \ +static_assert(offsetof(FMaterialCachedParameterEditorInfo, Description) == 0x000000, "Member 'FMaterialCachedParameterEditorInfo::Description' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedParameterEditorInfo, Group) == 0x000010, "Member 'FMaterialCachedParameterEditorInfo::Group' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedParameterEditorInfo, SortPriority) == 0x000018, "Member 'FMaterialCachedParameterEditorInfo::SortPriority' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedParameterEditorInfo, AssetIndex) == 0x00001C, "Member 'FMaterialCachedParameterEditorInfo::AssetIndex' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedParameterEditorInfo, ExpressionGUID) == 0x000020, "Member 'FMaterialCachedParameterEditorInfo::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialCachedParameterEditorEntry \ +static_assert(alignof(FMaterialCachedParameterEditorEntry) == 0x000008, "Wrong alignment on FMaterialCachedParameterEditorEntry"); \ +static_assert(sizeof(FMaterialCachedParameterEditorEntry) == 0x000010, "Wrong size on FMaterialCachedParameterEditorEntry"); \ +static_assert(offsetof(FMaterialCachedParameterEditorEntry, EditorInfo) == 0x000000, "Member 'FMaterialCachedParameterEditorEntry::EditorInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialCachedExpressionEditorOnlyData \ +static_assert(alignof(FMaterialCachedExpressionEditorOnlyData) == 0x000008, "Wrong alignment on FMaterialCachedExpressionEditorOnlyData"); \ +static_assert(sizeof(FMaterialCachedExpressionEditorOnlyData) == 0x0001F0, "Wrong size on FMaterialCachedExpressionEditorOnlyData"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, EditorOnlyEntries) == 0x000000, "Member 'FMaterialCachedExpressionEditorOnlyData::EditorOnlyEntries' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, EditorEntries) == 0x000050, "Member 'FMaterialCachedExpressionEditorOnlyData::EditorEntries' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, StaticSwitchValues) == 0x0000E0, "Member 'FMaterialCachedExpressionEditorOnlyData::StaticSwitchValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, StaticComponentMaskValues) == 0x0000F0, "Member 'FMaterialCachedExpressionEditorOnlyData::StaticComponentMaskValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, ScalarMinMaxValues) == 0x000100, "Member 'FMaterialCachedExpressionEditorOnlyData::ScalarMinMaxValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, ScalarCurveValues) == 0x000110, "Member 'FMaterialCachedExpressionEditorOnlyData::ScalarCurveValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, ScalarCurveAtlasValues) == 0x000120, "Member 'FMaterialCachedExpressionEditorOnlyData::ScalarCurveAtlasValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, VectorChannelNameValues) == 0x000130, "Member 'FMaterialCachedExpressionEditorOnlyData::VectorChannelNameValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, VectorUsedAsChannelMaskValues) == 0x000140, "Member 'FMaterialCachedExpressionEditorOnlyData::VectorUsedAsChannelMaskValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, TextureChannelNameValues) == 0x000150, "Member 'FMaterialCachedExpressionEditorOnlyData::TextureChannelNameValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, MaterialLayers) == 0x000160, "Member 'FMaterialCachedExpressionEditorOnlyData::MaterialLayers' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, AssetPaths) == 0x0001D0, "Member 'FMaterialCachedExpressionEditorOnlyData::AssetPaths' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionEditorOnlyData, LandscapeLayerNames) == 0x0001E0, "Member 'FMaterialCachedExpressionEditorOnlyData::LandscapeLayerNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialCachedExpressionData \ +static_assert(alignof(FMaterialCachedExpressionData) == 0x000008, "Wrong alignment on FMaterialCachedExpressionData"); \ +static_assert(sizeof(FMaterialCachedExpressionData) == 0x0003D8, "Wrong size on FMaterialCachedExpressionData"); \ +static_assert(offsetof(FMaterialCachedExpressionData, RuntimeEntries) == 0x000000, "Member 'FMaterialCachedExpressionData::RuntimeEntries' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, ScalarPrimitiveDataIndexValues) == 0x000280, "Member 'FMaterialCachedExpressionData::ScalarPrimitiveDataIndexValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, VectorPrimitiveDataIndexValues) == 0x000290, "Member 'FMaterialCachedExpressionData::VectorPrimitiveDataIndexValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, ScalarValues) == 0x0002A0, "Member 'FMaterialCachedExpressionData::ScalarValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, StaticSwitchValues) == 0x0002B0, "Member 'FMaterialCachedExpressionData::StaticSwitchValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, DynamicSwitchValues) == 0x0002C0, "Member 'FMaterialCachedExpressionData::DynamicSwitchValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, VectorValues) == 0x0002D0, "Member 'FMaterialCachedExpressionData::VectorValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, DoubleVectorValues) == 0x0002E0, "Member 'FMaterialCachedExpressionData::DoubleVectorValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, TextureValues) == 0x0002F0, "Member 'FMaterialCachedExpressionData::TextureValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, FontValues) == 0x000300, "Member 'FMaterialCachedExpressionData::FontValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, FontPageValues) == 0x000310, "Member 'FMaterialCachedExpressionData::FontPageValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, RuntimeVirtualTextureValues) == 0x000320, "Member 'FMaterialCachedExpressionData::RuntimeVirtualTextureValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, SparseVolumeTextureValues) == 0x000330, "Member 'FMaterialCachedExpressionData::SparseVolumeTextureValues' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, ReferencedTextures) == 0x000340, "Member 'FMaterialCachedExpressionData::ReferencedTextures' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, FunctionInfos) == 0x000350, "Member 'FMaterialCachedExpressionData::FunctionInfos' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, FunctionInfosStateCRC) == 0x000360, "Member 'FMaterialCachedExpressionData::FunctionInfosStateCRC' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, ParameterCollectionInfos) == 0x000368, "Member 'FMaterialCachedExpressionData::ParameterCollectionInfos' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, GrassTypes) == 0x000378, "Member 'FMaterialCachedExpressionData::GrassTypes' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, MaterialLayers) == 0x000388, "Member 'FMaterialCachedExpressionData::MaterialLayers' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, DynamicParameterNames) == 0x0003A8, "Member 'FMaterialCachedExpressionData::DynamicParameterNames' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, QualityLevelsUsed) == 0x0003B8, "Member 'FMaterialCachedExpressionData::QualityLevelsUsed' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, PropertyConnectedBitmask) == 0x0003CC, "Member 'FMaterialCachedExpressionData::PropertyConnectedBitmask' has a wrong offset!"); \ +static_assert(offsetof(FMaterialCachedExpressionData, PropertyConnectedMask) == 0x0003D0, "Member 'FMaterialCachedExpressionData::PropertyConnectedMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScalarParameterValue \ +static_assert(alignof(FScalarParameterValue) == 0x000004, "Wrong alignment on FScalarParameterValue"); \ +static_assert(sizeof(FScalarParameterValue) == 0x000024, "Wrong size on FScalarParameterValue"); \ +static_assert(offsetof(FScalarParameterValue, ParameterInfo) == 0x000000, "Member 'FScalarParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FScalarParameterValue, ParameterValue) == 0x000010, "Member 'FScalarParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FScalarParameterValue, ExpressionGUID) == 0x000014, "Member 'FScalarParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorParameterValue \ +static_assert(alignof(FVectorParameterValue) == 0x000004, "Wrong alignment on FVectorParameterValue"); \ +static_assert(sizeof(FVectorParameterValue) == 0x000030, "Wrong size on FVectorParameterValue"); \ +static_assert(offsetof(FVectorParameterValue, ParameterInfo) == 0x000000, "Member 'FVectorParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FVectorParameterValue, ParameterValue) == 0x000010, "Member 'FVectorParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FVectorParameterValue, ExpressionGUID) == 0x000020, "Member 'FVectorParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDoubleVectorParameterValue \ +static_assert(alignof(FDoubleVectorParameterValue) == 0x000010, "Wrong alignment on FDoubleVectorParameterValue"); \ +static_assert(sizeof(FDoubleVectorParameterValue) == 0x000040, "Wrong size on FDoubleVectorParameterValue"); \ +static_assert(offsetof(FDoubleVectorParameterValue, ParameterInfo) == 0x000000, "Member 'FDoubleVectorParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FDoubleVectorParameterValue, ParameterValue) == 0x000010, "Member 'FDoubleVectorParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FDoubleVectorParameterValue, ExpressionGUID) == 0x000030, "Member 'FDoubleVectorParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextureParameterValue \ +static_assert(alignof(FTextureParameterValue) == 0x000008, "Wrong alignment on FTextureParameterValue"); \ +static_assert(sizeof(FTextureParameterValue) == 0x000028, "Wrong size on FTextureParameterValue"); \ +static_assert(offsetof(FTextureParameterValue, ParameterInfo) == 0x000000, "Member 'FTextureParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FTextureParameterValue, ParameterValue) == 0x000010, "Member 'FTextureParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FTextureParameterValue, ExpressionGUID) == 0x000018, "Member 'FTextureParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuntimeVirtualTextureParameterValue \ +static_assert(alignof(FRuntimeVirtualTextureParameterValue) == 0x000008, "Wrong alignment on FRuntimeVirtualTextureParameterValue"); \ +static_assert(sizeof(FRuntimeVirtualTextureParameterValue) == 0x000028, "Wrong size on FRuntimeVirtualTextureParameterValue"); \ +static_assert(offsetof(FRuntimeVirtualTextureParameterValue, ParameterInfo) == 0x000000, "Member 'FRuntimeVirtualTextureParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FRuntimeVirtualTextureParameterValue, ParameterValue) == 0x000010, "Member 'FRuntimeVirtualTextureParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FRuntimeVirtualTextureParameterValue, ExpressionGUID) == 0x000018, "Member 'FRuntimeVirtualTextureParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSparseVolumeTextureParameterValue \ +static_assert(alignof(FSparseVolumeTextureParameterValue) == 0x000008, "Wrong alignment on FSparseVolumeTextureParameterValue"); \ +static_assert(sizeof(FSparseVolumeTextureParameterValue) == 0x000028, "Wrong size on FSparseVolumeTextureParameterValue"); \ +static_assert(offsetof(FSparseVolumeTextureParameterValue, ParameterInfo) == 0x000000, "Member 'FSparseVolumeTextureParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FSparseVolumeTextureParameterValue, ParameterValue) == 0x000010, "Member 'FSparseVolumeTextureParameterValue::ParameterValue' has a wrong offset!"); \ +static_assert(offsetof(FSparseVolumeTextureParameterValue, ExpressionGUID) == 0x000018, "Member 'FSparseVolumeTextureParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFontParameterValue \ +static_assert(alignof(FFontParameterValue) == 0x000008, "Wrong alignment on FFontParameterValue"); \ +static_assert(sizeof(FFontParameterValue) == 0x000030, "Wrong size on FFontParameterValue"); \ +static_assert(offsetof(FFontParameterValue, ParameterInfo) == 0x000000, "Member 'FFontParameterValue::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(FFontParameterValue, FontValue) == 0x000010, "Member 'FFontParameterValue::FontValue' has a wrong offset!"); \ +static_assert(offsetof(FFontParameterValue, FontPage) == 0x000018, "Member 'FFontParameterValue::FontPage' has a wrong offset!"); \ +static_assert(offsetof(FFontParameterValue, ExpressionGUID) == 0x00001C, "Member 'FFontParameterValue::ExpressionGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialOverrideNanite \ +static_assert(alignof(FMaterialOverrideNanite) == 0x000008, "Wrong alignment on FMaterialOverrideNanite"); \ +static_assert(sizeof(FMaterialOverrideNanite) == 0x000038, "Wrong size on FMaterialOverrideNanite"); \ +static_assert(offsetof(FMaterialOverrideNanite, bEnableOverride) == 0x000000, "Member 'FMaterialOverrideNanite::bEnableOverride' has a wrong offset!"); \ +static_assert(offsetof(FMaterialOverrideNanite, OverrideMaterial) == 0x000008, "Member 'FMaterialOverrideNanite::OverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(FMaterialOverrideNanite, OverrideMaterialRef) == 0x000010, "Member 'FMaterialOverrideNanite::OverrideMaterialRef' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionParameterBase \ +static_assert(alignof(FCollectionParameterBase) == 0x000004, "Wrong alignment on FCollectionParameterBase"); \ +static_assert(sizeof(FCollectionParameterBase) == 0x000018, "Wrong size on FCollectionParameterBase"); \ +static_assert(offsetof(FCollectionParameterBase, ParameterName) == 0x000000, "Member 'FCollectionParameterBase::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FCollectionParameterBase, ID) == 0x000008, "Member 'FCollectionParameterBase::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionScalarParameter \ +static_assert(alignof(FCollectionScalarParameter) == 0x000004, "Wrong alignment on FCollectionScalarParameter"); \ +static_assert(sizeof(FCollectionScalarParameter) == 0x00001C, "Wrong size on FCollectionScalarParameter"); \ +static_assert(offsetof(FCollectionScalarParameter, DefaultValue) == 0x000018, "Member 'FCollectionScalarParameter::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionVectorParameter \ +static_assert(alignof(FCollectionVectorParameter) == 0x000004, "Wrong alignment on FCollectionVectorParameter"); \ +static_assert(sizeof(FCollectionVectorParameter) == 0x000028, "Wrong size on FCollectionVectorParameter"); \ +static_assert(offsetof(FCollectionVectorParameter, DefaultValue) == 0x000018, "Member 'FCollectionVectorParameter::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMemberReference \ +static_assert(alignof(FMemberReference) == 0x000008, "Wrong alignment on FMemberReference"); \ +static_assert(sizeof(FMemberReference) == 0x000038, "Wrong size on FMemberReference"); \ +static_assert(offsetof(FMemberReference, MemberParent) == 0x000000, "Member 'FMemberReference::MemberParent' has a wrong offset!"); \ +static_assert(offsetof(FMemberReference, MemberScope) == 0x000008, "Member 'FMemberReference::MemberScope' has a wrong offset!"); \ +static_assert(offsetof(FMemberReference, MemberName) == 0x000018, "Member 'FMemberReference::MemberName' has a wrong offset!"); \ +static_assert(offsetof(FMemberReference, MemberGuid) == 0x000020, "Member 'FMemberReference::MemberGuid' has a wrong offset!"); \ +static_assert(offsetof(FMemberReference, bSelfContext) == 0x000030, "Member 'FMemberReference::bSelfContext' has a wrong offset!"); \ +static_assert(offsetof(FMemberReference, bWasDeprecated) == 0x000031, "Member 'FMemberReference::bWasDeprecated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshInstancingSettings \ +static_assert(alignof(FMeshInstancingSettings) == 0x000008, "Wrong alignment on FMeshInstancingSettings"); \ +static_assert(sizeof(FMeshInstancingSettings) == 0x000018, "Wrong size on FMeshInstancingSettings"); \ +static_assert(offsetof(FMeshInstancingSettings, ActorClassToUse) == 0x000000, "Member 'FMeshInstancingSettings::ActorClassToUse' has a wrong offset!"); \ +static_assert(offsetof(FMeshInstancingSettings, InstanceReplacementThreshold) == 0x000008, "Member 'FMeshInstancingSettings::InstanceReplacementThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMeshInstancingSettings, bSkipMeshesWithVertexColors) == 0x00000C, "Member 'FMeshInstancingSettings::bSkipMeshesWithVertexColors' has a wrong offset!"); \ +static_assert(offsetof(FMeshInstancingSettings, bUseHLODVolumes) == 0x00000D, "Member 'FMeshInstancingSettings::bUseHLODVolumes' has a wrong offset!"); \ +static_assert(offsetof(FMeshInstancingSettings, ISMComponentToUse) == 0x000010, "Member 'FMeshInstancingSettings::ISMComponentToUse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetDriverReplicationSystemConfig \ +static_assert(alignof(FNetDriverReplicationSystemConfig) == 0x000004, "Wrong alignment on FNetDriverReplicationSystemConfig"); \ +static_assert(sizeof(FNetDriverReplicationSystemConfig) == 0x00000C, "Wrong size on FNetDriverReplicationSystemConfig"); \ +static_assert(offsetof(FNetDriverReplicationSystemConfig, MaxReplicatedObjectCount) == 0x000000, "Member 'FNetDriverReplicationSystemConfig::MaxReplicatedObjectCount' has a wrong offset!"); \ +static_assert(offsetof(FNetDriverReplicationSystemConfig, MaxDeltaCompressedObjectCount) == 0x000004, "Member 'FNetDriverReplicationSystemConfig::MaxDeltaCompressedObjectCount' has a wrong offset!"); \ +static_assert(offsetof(FNetDriverReplicationSystemConfig, MaxNetObjectGroupCount) == 0x000008, "Member 'FNetDriverReplicationSystemConfig::MaxNetObjectGroupCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChannelDefinition \ +static_assert(alignof(FChannelDefinition) == 0x000008, "Wrong alignment on FChannelDefinition"); \ +static_assert(sizeof(FChannelDefinition) == 0x000020, "Wrong size on FChannelDefinition"); \ +static_assert(offsetof(FChannelDefinition, ChannelName) == 0x000000, "Member 'FChannelDefinition::ChannelName' has a wrong offset!"); \ +static_assert(offsetof(FChannelDefinition, ClassName) == 0x000008, "Member 'FChannelDefinition::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FChannelDefinition, ChannelClass) == 0x000010, "Member 'FChannelDefinition::ChannelClass' has a wrong offset!"); \ +static_assert(offsetof(FChannelDefinition, StaticChannelIndex) == 0x000018, "Member 'FChannelDefinition::StaticChannelIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetworkEmulationProfileDescription \ +static_assert(alignof(FNetworkEmulationProfileDescription) == 0x000008, "Wrong alignment on FNetworkEmulationProfileDescription"); \ +static_assert(sizeof(FNetworkEmulationProfileDescription) == 0x000020, "Wrong size on FNetworkEmulationProfileDescription"); \ +static_assert(offsetof(FNetworkEmulationProfileDescription, ProfileName) == 0x000000, "Member 'FNetworkEmulationProfileDescription::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(FNetworkEmulationProfileDescription, Tooltip) == 0x000010, "Member 'FNetworkEmulationProfileDescription::Tooltip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBandwidthTestItem \ +static_assert(alignof(FBandwidthTestItem) == 0x000008, "Wrong alignment on FBandwidthTestItem"); \ +static_assert(sizeof(FBandwidthTestItem) == 0x000010, "Wrong size on FBandwidthTestItem"); \ +static_assert(offsetof(FBandwidthTestItem, Kilobyte) == 0x000000, "Member 'FBandwidthTestItem::Kilobyte' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBandwidthTestGenerator \ +static_assert(alignof(FBandwidthTestGenerator) == 0x000008, "Wrong alignment on FBandwidthTestGenerator"); \ +static_assert(sizeof(FBandwidthTestGenerator) == 0x000020, "Wrong size on FBandwidthTestGenerator"); \ +static_assert(offsetof(FBandwidthTestGenerator, ReplicatedBuffers) == 0x000000, "Member 'FBandwidthTestGenerator::ReplicatedBuffers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueNetIdRepl \ +static_assert(alignof(FUniqueNetIdRepl) == 0x000008, "Wrong alignment on FUniqueNetIdRepl"); \ +static_assert(sizeof(FUniqueNetIdRepl) == 0x000030, "Wrong size on FUniqueNetIdRepl"); \ +static_assert(offsetof(FUniqueNetIdRepl, ReplicationBytes) == 0x000020, "Member 'FUniqueNetIdRepl::ReplicationBytes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleSystemWorldManagerTickFunction \ +static_assert(alignof(FParticleSystemWorldManagerTickFunction) == 0x000008, "Wrong alignment on FParticleSystemWorldManagerTickFunction"); \ +static_assert(sizeof(FParticleSystemWorldManagerTickFunction) == 0x000030, "Wrong size on FParticleSystemWorldManagerTickFunction"); \ + +#define DUMPER7_ASSERTS_FPSCPoolElem \ +static_assert(alignof(FPSCPoolElem) == 0x000008, "Wrong alignment on FPSCPoolElem"); \ +static_assert(sizeof(FPSCPoolElem) == 0x000010, "Wrong size on FPSCPoolElem"); \ +static_assert(offsetof(FPSCPoolElem, PSC) == 0x000000, "Member 'FPSCPoolElem::PSC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPSCPool \ +static_assert(alignof(FPSCPool) == 0x000008, "Wrong alignment on FPSCPool"); \ +static_assert(sizeof(FPSCPool) == 0x000010, "Wrong size on FPSCPool"); \ +static_assert(offsetof(FPSCPool, FreeElements) == 0x000000, "Member 'FPSCPool::FreeElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPSCPool \ +static_assert(alignof(FWorldPSCPool) == 0x000008, "Wrong alignment on FWorldPSCPool"); \ +static_assert(sizeof(FWorldPSCPool) == 0x000058, "Wrong size on FWorldPSCPool"); \ +static_assert(offsetof(FWorldPSCPool, WorldParticleSystemPools) == 0x000000, "Member 'FWorldPSCPool::WorldParticleSystemPools' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusteredComponentData \ +static_assert(alignof(FClusteredComponentData) == 0x000008, "Wrong alignment on FClusteredComponentData"); \ +static_assert(sizeof(FClusteredComponentData) == 0x000110, "Wrong size on FClusteredComponentData"); \ +static_assert(offsetof(FClusteredComponentData, ReplicatedProxyComponent) == 0x000100, "Member 'FClusteredComponentData::ReplicatedProxyComponent' has a wrong offset!"); \ +static_assert(offsetof(FClusteredComponentData, bWasReplicating) == 0x000108, "Member 'FClusteredComponentData::bWasReplicating' has a wrong offset!"); \ +static_assert(offsetof(FClusteredComponentData, bPendingDeletion) == 0x000109, "Member 'FClusteredComponentData::bPendingDeletion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusteredActorData \ +static_assert(alignof(FClusteredActorData) == 0x000008, "Wrong alignment on FClusteredActorData"); \ +static_assert(sizeof(FClusteredActorData) == 0x000058, "Wrong size on FClusteredActorData"); \ +static_assert(offsetof(FClusteredActorData, Components) == 0x000000, "Member 'FClusteredActorData::Components' has a wrong offset!"); \ +static_assert(offsetof(FClusteredActorData, bWasReplicatingMovement) == 0x000050, "Member 'FClusteredActorData::bWasReplicatingMovement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterUnionReplicatedData \ +static_assert(alignof(FClusterUnionReplicatedData) == 0x000001, "Wrong alignment on FClusterUnionReplicatedData"); \ +static_assert(sizeof(FClusterUnionReplicatedData) == 0x000002, "Wrong size on FClusterUnionReplicatedData"); \ +static_assert(offsetof(FClusterUnionReplicatedData, ObjectState) == 0x000000, "Member 'FClusterUnionReplicatedData::ObjectState' has a wrong offset!"); \ +static_assert(offsetof(FClusterUnionReplicatedData, bIsAnchored) == 0x000001, "Member 'FClusterUnionReplicatedData::bIsAnchored' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicsAssetSolverSettings \ +static_assert(alignof(FPhysicsAssetSolverSettings) == 0x000004, "Wrong alignment on FPhysicsAssetSolverSettings"); \ +static_assert(sizeof(FPhysicsAssetSolverSettings) == 0x00001C, "Wrong size on FPhysicsAssetSolverSettings"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, PositionIterations) == 0x000000, "Member 'FPhysicsAssetSolverSettings::PositionIterations' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, VelocityIterations) == 0x000004, "Member 'FPhysicsAssetSolverSettings::VelocityIterations' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, ProjectionIterations) == 0x000008, "Member 'FPhysicsAssetSolverSettings::ProjectionIterations' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, CullDistance) == 0x00000C, "Member 'FPhysicsAssetSolverSettings::CullDistance' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, MaxDepenetrationVelocity) == 0x000010, "Member 'FPhysicsAssetSolverSettings::MaxDepenetrationVelocity' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, FixedTimeStep) == 0x000014, "Member 'FPhysicsAssetSolverSettings::FixedTimeStep' has a wrong offset!"); \ +static_assert(offsetof(FPhysicsAssetSolverSettings, bUseLinearJointSolver) == 0x000018, "Member 'FPhysicsAssetSolverSettings::bUseLinearJointSolver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverIterations \ +static_assert(alignof(FSolverIterations) == 0x000004, "Wrong alignment on FSolverIterations"); \ +static_assert(sizeof(FSolverIterations) == 0x000018, "Wrong size on FSolverIterations"); \ +static_assert(offsetof(FSolverIterations, SolverIterations) == 0x000000, "Member 'FSolverIterations::SolverIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverIterations, JointIterations) == 0x000004, "Member 'FSolverIterations::JointIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverIterations, CollisionIterations) == 0x000008, "Member 'FSolverIterations::CollisionIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverIterations, SolverPushOutIterations) == 0x00000C, "Member 'FSolverIterations::SolverPushOutIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverIterations, JointPushOutIterations) == 0x000010, "Member 'FSolverIterations::JointPushOutIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverIterations, CollisionPushOutIterations) == 0x000014, "Member 'FSolverIterations::CollisionPushOutIterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicalSurfaceName \ +static_assert(alignof(FPhysicalSurfaceName) == 0x000004, "Wrong alignment on FPhysicalSurfaceName"); \ +static_assert(sizeof(FPhysicalSurfaceName) == 0x00000C, "Wrong size on FPhysicalSurfaceName"); \ +static_assert(offsetof(FPhysicalSurfaceName, Type) == 0x000000, "Member 'FPhysicalSurfaceName::Type' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalSurfaceName, Name) == 0x000004, "Member 'FPhysicalSurfaceName::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosPhysicsSettings \ +static_assert(alignof(FChaosPhysicsSettings) == 0x000001, "Wrong alignment on FChaosPhysicsSettings"); \ +static_assert(sizeof(FChaosPhysicsSettings) == 0x000003, "Wrong size on FChaosPhysicsSettings"); \ +static_assert(offsetof(FChaosPhysicsSettings, DefaultThreadingModel) == 0x000000, "Member 'FChaosPhysicsSettings::DefaultThreadingModel' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsSettings, DedicatedThreadTickMode) == 0x000001, "Member 'FChaosPhysicsSettings::DedicatedThreadTickMode' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsSettings, DedicatedThreadBufferMode) == 0x000002, "Member 'FChaosPhysicsSettings::DedicatedThreadBufferMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUpdateLevelStreamingLevelStatus \ +static_assert(alignof(FUpdateLevelStreamingLevelStatus) == 0x000004, "Wrong alignment on FUpdateLevelStreamingLevelStatus"); \ +static_assert(sizeof(FUpdateLevelStreamingLevelStatus) == 0x000010, "Wrong size on FUpdateLevelStreamingLevelStatus"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, PackageName) == 0x000000, "Member 'FUpdateLevelStreamingLevelStatus::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, LODIndex) == 0x000008, "Member 'FUpdateLevelStreamingLevelStatus::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, bNewShouldBeLoaded) == 0x00000C, "Member 'FUpdateLevelStreamingLevelStatus::bNewShouldBeLoaded' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, bNewShouldBeVisible) == 0x00000D, "Member 'FUpdateLevelStreamingLevelStatus::bNewShouldBeVisible' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, bNewShouldBlockOnLoad) == 0x00000E, "Member 'FUpdateLevelStreamingLevelStatus::bNewShouldBlockOnLoad' has a wrong offset!"); \ +static_assert(offsetof(FUpdateLevelStreamingLevelStatus, bNewShouldBlockOnUnload) == 0x00000F, "Member 'FUpdateLevelStreamingLevelStatus::bNewShouldBlockOnUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAsyncPhysicsTimestamp \ +static_assert(alignof(FAsyncPhysicsTimestamp) == 0x000004, "Wrong alignment on FAsyncPhysicsTimestamp"); \ +static_assert(sizeof(FAsyncPhysicsTimestamp) == 0x000008, "Wrong size on FAsyncPhysicsTimestamp"); \ +static_assert(offsetof(FAsyncPhysicsTimestamp, ServerFrame) == 0x000000, "Member 'FAsyncPhysicsTimestamp::ServerFrame' has a wrong offset!"); \ +static_assert(offsetof(FAsyncPhysicsTimestamp, LocalFrame) == 0x000004, "Member 'FAsyncPhysicsTimestamp::LocalFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerMuteList \ +static_assert(alignof(FPlayerMuteList) == 0x000008, "Wrong alignment on FPlayerMuteList"); \ +static_assert(sizeof(FPlayerMuteList) == 0x000058, "Wrong size on FPlayerMuteList"); \ +static_assert(offsetof(FPlayerMuteList, bHasVoiceHandshakeCompleted) == 0x000050, "Member 'FPlayerMuteList::bHasVoiceHandshakeCompleted' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMuteList, VoiceChannelIdx) == 0x000054, "Member 'FPlayerMuteList::VoiceChannelIdx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyAccessIndirectionChain \ +static_assert(alignof(FPropertyAccessIndirectionChain) == 0x000008, "Wrong alignment on FPropertyAccessIndirectionChain"); \ +static_assert(sizeof(FPropertyAccessIndirectionChain) == 0x000028, "Wrong size on FPropertyAccessIndirectionChain"); \ +static_assert(offsetof(FPropertyAccessIndirectionChain, Property) == 0x000000, "Member 'FPropertyAccessIndirectionChain::Property' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirectionChain, IndirectionStartIndex) == 0x000020, "Member 'FPropertyAccessIndirectionChain::IndirectionStartIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyAccessIndirectionChain, IndirectionEndIndex) == 0x000024, "Member 'FPropertyAccessIndirectionChain::IndirectionEndIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpecularProfileStruct \ +static_assert(alignof(FSpecularProfileStruct) == 0x000008, "Wrong alignment on FSpecularProfileStruct"); \ +static_assert(sizeof(FSpecularProfileStruct) == 0x000420, "Wrong size on FSpecularProfileStruct"); \ +static_assert(offsetof(FSpecularProfileStruct, Format) == 0x000000, "Member 'FSpecularProfileStruct::Format' has a wrong offset!"); \ +static_assert(offsetof(FSpecularProfileStruct, ViewColor) == 0x000008, "Member 'FSpecularProfileStruct::ViewColor' has a wrong offset!"); \ +static_assert(offsetof(FSpecularProfileStruct, LightColor) == 0x000210, "Member 'FSpecularProfileStruct::LightColor' has a wrong offset!"); \ +static_assert(offsetof(FSpecularProfileStruct, Texture) == 0x000418, "Member 'FSpecularProfileStruct::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubsurfaceProfileStruct \ +static_assert(alignof(FSubsurfaceProfileStruct) == 0x000004, "Wrong alignment on FSubsurfaceProfileStruct"); \ +static_assert(sizeof(FSubsurfaceProfileStruct) == 0x00009C, "Wrong size on FSubsurfaceProfileStruct"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, SurfaceAlbedo) == 0x000000, "Member 'FSubsurfaceProfileStruct::SurfaceAlbedo' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, MeanFreePathColor) == 0x000010, "Member 'FSubsurfaceProfileStruct::MeanFreePathColor' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, MeanFreePathDistance) == 0x000020, "Member 'FSubsurfaceProfileStruct::MeanFreePathDistance' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, WorldUnitScale) == 0x000024, "Member 'FSubsurfaceProfileStruct::WorldUnitScale' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, bEnableBurley) == 0x000028, "Member 'FSubsurfaceProfileStruct::bEnableBurley' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, bEnableMeanFreePath) == 0x000029, "Member 'FSubsurfaceProfileStruct::bEnableMeanFreePath' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, Tint) == 0x00002C, "Member 'FSubsurfaceProfileStruct::Tint' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, ScatterRadius) == 0x00003C, "Member 'FSubsurfaceProfileStruct::ScatterRadius' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, SubsurfaceColor) == 0x000040, "Member 'FSubsurfaceProfileStruct::SubsurfaceColor' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, FalloffColor) == 0x000050, "Member 'FSubsurfaceProfileStruct::FalloffColor' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, BoundaryColorBleed) == 0x000060, "Member 'FSubsurfaceProfileStruct::BoundaryColorBleed' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, ExtinctionScale) == 0x000070, "Member 'FSubsurfaceProfileStruct::ExtinctionScale' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, NormalScale) == 0x000074, "Member 'FSubsurfaceProfileStruct::NormalScale' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, ScatteringDistribution) == 0x000078, "Member 'FSubsurfaceProfileStruct::ScatteringDistribution' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, IOR) == 0x00007C, "Member 'FSubsurfaceProfileStruct::IOR' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, Roughness0) == 0x000080, "Member 'FSubsurfaceProfileStruct::Roughness0' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, Roughness1) == 0x000084, "Member 'FSubsurfaceProfileStruct::Roughness1' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, LobeMix) == 0x000088, "Member 'FSubsurfaceProfileStruct::LobeMix' has a wrong offset!"); \ +static_assert(offsetof(FSubsurfaceProfileStruct, TransmissionTintColor) == 0x00008C, "Member 'FSubsurfaceProfileStruct::TransmissionTintColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRepMovementNetSerializerConfig \ +static_assert(alignof(FRepMovementNetSerializerConfig) == 0x000008, "Wrong alignment on FRepMovementNetSerializerConfig"); \ +static_assert(sizeof(FRepMovementNetSerializerConfig) == 0x000010, "Wrong size on FRepMovementNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FSingleAnimationPlayData \ +static_assert(alignof(FSingleAnimationPlayData) == 0x000008, "Wrong alignment on FSingleAnimationPlayData"); \ +static_assert(sizeof(FSingleAnimationPlayData) == 0x000018, "Wrong size on FSingleAnimationPlayData"); \ +static_assert(offsetof(FSingleAnimationPlayData, AnimToPlay) == 0x000000, "Member 'FSingleAnimationPlayData::AnimToPlay' has a wrong offset!"); \ +static_assert(offsetof(FSingleAnimationPlayData, SavedPosition) == 0x00000C, "Member 'FSingleAnimationPlayData::SavedPosition' has a wrong offset!"); \ +static_assert(offsetof(FSingleAnimationPlayData, SavedPlayRate) == 0x000010, "Member 'FSingleAnimationPlayData::SavedPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneMirrorInfo \ +static_assert(alignof(FBoneMirrorInfo) == 0x000004, "Wrong alignment on FBoneMirrorInfo"); \ +static_assert(sizeof(FBoneMirrorInfo) == 0x000008, "Wrong size on FBoneMirrorInfo"); \ +static_assert(offsetof(FBoneMirrorInfo, SourceIndex) == 0x000000, "Member 'FBoneMirrorInfo::SourceIndex' has a wrong offset!"); \ +static_assert(offsetof(FBoneMirrorInfo, BoneFlipAxis) == 0x000004, "Member 'FBoneMirrorInfo::BoneFlipAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneMirrorExport \ +static_assert(alignof(FBoneMirrorExport) == 0x000004, "Wrong alignment on FBoneMirrorExport"); \ +static_assert(sizeof(FBoneMirrorExport) == 0x000014, "Wrong size on FBoneMirrorExport"); \ +static_assert(offsetof(FBoneMirrorExport, BoneName) == 0x000000, "Member 'FBoneMirrorExport::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FBoneMirrorExport, SourceBoneName) == 0x000008, "Member 'FBoneMirrorExport::SourceBoneName' has a wrong offset!"); \ +static_assert(offsetof(FBoneMirrorExport, BoneFlipAxis) == 0x000010, "Member 'FBoneMirrorExport::BoneFlipAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothPhysicsProperties_Legacy \ +static_assert(alignof(FClothPhysicsProperties_Legacy) == 0x000004, "Wrong alignment on FClothPhysicsProperties_Legacy"); \ +static_assert(sizeof(FClothPhysicsProperties_Legacy) == 0x000050, "Wrong size on FClothPhysicsProperties_Legacy"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, VerticalResistance) == 0x000000, "Member 'FClothPhysicsProperties_Legacy::VerticalResistance' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, HorizontalResistance) == 0x000004, "Member 'FClothPhysicsProperties_Legacy::HorizontalResistance' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, BendResistance) == 0x000008, "Member 'FClothPhysicsProperties_Legacy::BendResistance' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, ShearResistance) == 0x00000C, "Member 'FClothPhysicsProperties_Legacy::ShearResistance' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, Friction) == 0x000010, "Member 'FClothPhysicsProperties_Legacy::Friction' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, Damping) == 0x000014, "Member 'FClothPhysicsProperties_Legacy::Damping' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, TetherStiffness) == 0x000018, "Member 'FClothPhysicsProperties_Legacy::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, TetherLimit) == 0x00001C, "Member 'FClothPhysicsProperties_Legacy::TetherLimit' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, Drag) == 0x000020, "Member 'FClothPhysicsProperties_Legacy::Drag' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, StiffnessFrequency) == 0x000024, "Member 'FClothPhysicsProperties_Legacy::StiffnessFrequency' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, GravityScale) == 0x000028, "Member 'FClothPhysicsProperties_Legacy::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, MassScale) == 0x00002C, "Member 'FClothPhysicsProperties_Legacy::MassScale' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, InertiaBlend) == 0x000030, "Member 'FClothPhysicsProperties_Legacy::InertiaBlend' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, SelfCollisionThickness) == 0x000034, "Member 'FClothPhysicsProperties_Legacy::SelfCollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, SelfCollisionSquashScale) == 0x000038, "Member 'FClothPhysicsProperties_Legacy::SelfCollisionSquashScale' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, SelfCollisionStiffness) == 0x00003C, "Member 'FClothPhysicsProperties_Legacy::SelfCollisionStiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, SolverFrequency) == 0x000040, "Member 'FClothPhysicsProperties_Legacy::SolverFrequency' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, FiberCompression) == 0x000044, "Member 'FClothPhysicsProperties_Legacy::FiberCompression' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, FiberExpansion) == 0x000048, "Member 'FClothPhysicsProperties_Legacy::FiberExpansion' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicsProperties_Legacy, FiberResistance) == 0x00004C, "Member 'FClothPhysicsProperties_Legacy::FiberResistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothingAssetData_Legacy \ +static_assert(alignof(FClothingAssetData_Legacy) == 0x000008, "Wrong alignment on FClothingAssetData_Legacy"); \ +static_assert(sizeof(FClothingAssetData_Legacy) == 0x000070, "Wrong size on FClothingAssetData_Legacy"); \ +static_assert(offsetof(FClothingAssetData_Legacy, AssetName) == 0x000000, "Member 'FClothingAssetData_Legacy::AssetName' has a wrong offset!"); \ +static_assert(offsetof(FClothingAssetData_Legacy, ApexFileName) == 0x000008, "Member 'FClothingAssetData_Legacy::ApexFileName' has a wrong offset!"); \ +static_assert(offsetof(FClothingAssetData_Legacy, bClothPropertiesChanged) == 0x000018, "Member 'FClothingAssetData_Legacy::bClothPropertiesChanged' has a wrong offset!"); \ +static_assert(offsetof(FClothingAssetData_Legacy, PhysicsProperties) == 0x00001C, "Member 'FClothingAssetData_Legacy::PhysicsProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoneFilter \ +static_assert(alignof(FBoneFilter) == 0x000004, "Wrong alignment on FBoneFilter"); \ +static_assert(sizeof(FBoneFilter) == 0x00000C, "Wrong size on FBoneFilter"); \ +static_assert(offsetof(FBoneFilter, bExcludeSelf) == 0x000000, "Member 'FBoneFilter::bExcludeSelf' has a wrong offset!"); \ +static_assert(offsetof(FBoneFilter, BoneName) == 0x000004, "Member 'FBoneFilter::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshLODGroupSettings \ +static_assert(alignof(FSkeletalMeshLODGroupSettings) == 0x000008, "Wrong alignment on FSkeletalMeshLODGroupSettings"); \ +static_assert(sizeof(FSkeletalMeshLODGroupSettings) == 0x000090, "Wrong size on FSkeletalMeshLODGroupSettings"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, ScreenSize) == 0x000000, "Member 'FSkeletalMeshLODGroupSettings::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, LODHysteresis) == 0x000004, "Member 'FSkeletalMeshLODGroupSettings::LODHysteresis' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, BoneFilterActionOption) == 0x000008, "Member 'FSkeletalMeshLODGroupSettings::BoneFilterActionOption' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, BoneList) == 0x000010, "Member 'FSkeletalMeshLODGroupSettings::BoneList' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, BonesToPrioritize) == 0x000020, "Member 'FSkeletalMeshLODGroupSettings::BonesToPrioritize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, SectionsToPrioritize) == 0x000030, "Member 'FSkeletalMeshLODGroupSettings::SectionsToPrioritize' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, WeightOfPrioritization) == 0x000040, "Member 'FSkeletalMeshLODGroupSettings::WeightOfPrioritization' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, BakePose) == 0x000048, "Member 'FSkeletalMeshLODGroupSettings::BakePose' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshLODGroupSettings, ReductionSettings) == 0x000050, "Member 'FSkeletalMeshLODGroupSettings::ReductionSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkelMeshMergeSectionMapping \ +static_assert(alignof(FSkelMeshMergeSectionMapping) == 0x000008, "Wrong alignment on FSkelMeshMergeSectionMapping"); \ +static_assert(sizeof(FSkelMeshMergeSectionMapping) == 0x000010, "Wrong size on FSkelMeshMergeSectionMapping"); \ +static_assert(offsetof(FSkelMeshMergeSectionMapping, SectionIDs) == 0x000000, "Member 'FSkelMeshMergeSectionMapping::SectionIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkelMeshMergeMeshUVTransforms \ +static_assert(alignof(FSkelMeshMergeMeshUVTransforms) == 0x000008, "Wrong alignment on FSkelMeshMergeMeshUVTransforms"); \ +static_assert(sizeof(FSkelMeshMergeMeshUVTransforms) == 0x000010, "Wrong size on FSkelMeshMergeMeshUVTransforms"); \ +static_assert(offsetof(FSkelMeshMergeMeshUVTransforms, UVTransforms) == 0x000000, "Member 'FSkelMeshMergeMeshUVTransforms::UVTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkelMeshMergeUVTransformMapping \ +static_assert(alignof(FSkelMeshMergeUVTransformMapping) == 0x000008, "Wrong alignment on FSkelMeshMergeUVTransformMapping"); \ +static_assert(sizeof(FSkelMeshMergeUVTransformMapping) == 0x000010, "Wrong size on FSkelMeshMergeUVTransformMapping"); \ +static_assert(offsetof(FSkelMeshMergeUVTransformMapping, UVTransformsPerMesh) == 0x000000, "Member 'FSkelMeshMergeUVTransformMapping::UVTransformsPerMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingLODBuiltData \ +static_assert(alignof(FSkeletalMeshSamplingLODBuiltData) == 0x000008, "Wrong alignment on FSkeletalMeshSamplingLODBuiltData"); \ +static_assert(sizeof(FSkeletalMeshSamplingLODBuiltData) == 0x000048, "Wrong size on FSkeletalMeshSamplingLODBuiltData"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingBuiltData \ +static_assert(alignof(FSkeletalMeshSamplingBuiltData) == 0x000008, "Wrong alignment on FSkeletalMeshSamplingBuiltData"); \ +static_assert(sizeof(FSkeletalMeshSamplingBuiltData) == 0x000020, "Wrong size on FSkeletalMeshSamplingBuiltData"); \ +static_assert(offsetof(FSkeletalMeshSamplingBuiltData, WholeMeshBuiltData) == 0x000000, "Member 'FSkeletalMeshSamplingBuiltData::WholeMeshBuiltData' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshSamplingBuiltData, RegionBuiltData) == 0x000010, "Member 'FSkeletalMeshSamplingBuiltData::RegionBuiltData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingRegionMaterialFilter \ +static_assert(alignof(FSkeletalMeshSamplingRegionMaterialFilter) == 0x000004, "Wrong alignment on FSkeletalMeshSamplingRegionMaterialFilter"); \ +static_assert(sizeof(FSkeletalMeshSamplingRegionMaterialFilter) == 0x000008, "Wrong size on FSkeletalMeshSamplingRegionMaterialFilter"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegionMaterialFilter, MaterialName) == 0x000000, "Member 'FSkeletalMeshSamplingRegionMaterialFilter::MaterialName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingRegion \ +static_assert(alignof(FSkeletalMeshSamplingRegion) == 0x000008, "Wrong alignment on FSkeletalMeshSamplingRegion"); \ +static_assert(sizeof(FSkeletalMeshSamplingRegion) == 0x000030, "Wrong size on FSkeletalMeshSamplingRegion"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegion, Name) == 0x000000, "Member 'FSkeletalMeshSamplingRegion::Name' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegion, LODIndex) == 0x000008, "Member 'FSkeletalMeshSamplingRegion::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegion, MaterialFilters) == 0x000010, "Member 'FSkeletalMeshSamplingRegion::MaterialFilters' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshSamplingRegion, BoneFilters) == 0x000020, "Member 'FSkeletalMeshSamplingRegion::BoneFilters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshSamplingInfo \ +static_assert(alignof(FSkeletalMeshSamplingInfo) == 0x000008, "Wrong alignment on FSkeletalMeshSamplingInfo"); \ +static_assert(sizeof(FSkeletalMeshSamplingInfo) == 0x000030, "Wrong size on FSkeletalMeshSamplingInfo"); \ +static_assert(offsetof(FSkeletalMeshSamplingInfo, Regions) == 0x000000, "Member 'FSkeletalMeshSamplingInfo::Regions' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshSamplingInfo, BuiltData) == 0x000010, "Member 'FSkeletalMeshSamplingInfo::BuiltData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMaterial \ +static_assert(alignof(FSkeletalMaterial) == 0x000008, "Wrong alignment on FSkeletalMaterial"); \ +static_assert(sizeof(FSkeletalMaterial) == 0x000028, "Wrong size on FSkeletalMaterial"); \ +static_assert(offsetof(FSkeletalMaterial, MaterialInterface) == 0x000000, "Member 'FSkeletalMaterial::MaterialInterface' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMaterial, MaterialSlotName) == 0x000008, "Member 'FSkeletalMaterial::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMaterial, UVChannelData) == 0x000010, "Member 'FSkeletalMaterial::UVChannelData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundClassEditorData \ +static_assert(alignof(FSoundClassEditorData) == 0x000004, "Wrong alignment on FSoundClassEditorData"); \ +static_assert(sizeof(FSoundClassEditorData) == 0x000008, "Wrong size on FSoundClassEditorData"); \ + +#define DUMPER7_ASSERTS_FSoundClassProperties \ +static_assert(alignof(FSoundClassProperties) == 0x000008, "Wrong alignment on FSoundClassProperties"); \ +static_assert(sizeof(FSoundClassProperties) == 0x000198, "Wrong size on FSoundClassProperties"); \ +static_assert(offsetof(FSoundClassProperties, Volume) == 0x000000, "Member 'FSoundClassProperties::Volume' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, Pitch) == 0x000004, "Member 'FSoundClassProperties::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, LowPassFilterFrequency) == 0x000008, "Member 'FSoundClassProperties::LowPassFilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, AttenuationDistanceScale) == 0x00000C, "Member 'FSoundClassProperties::AttenuationDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, LFEBleed) == 0x000010, "Member 'FSoundClassProperties::LFEBleed' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, VoiceCenterChannelVolume) == 0x000014, "Member 'FSoundClassProperties::VoiceCenterChannelVolume' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, RadioFilterVolume) == 0x000018, "Member 'FSoundClassProperties::RadioFilterVolume' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, RadioFilterVolumeThreshold) == 0x00001C, "Member 'FSoundClassProperties::RadioFilterVolumeThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, Default2DReverbSendAmount) == 0x000024, "Member 'FSoundClassProperties::Default2DReverbSendAmount' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, ModulationSettings) == 0x000028, "Member 'FSoundClassProperties::ModulationSettings' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, OutputTarget) == 0x000188, "Member 'FSoundClassProperties::OutputTarget' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, LoadingBehavior) == 0x000189, "Member 'FSoundClassProperties::LoadingBehavior' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassProperties, DefaultSubmix) == 0x000190, "Member 'FSoundClassProperties::DefaultSubmix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPassiveSoundMixModifier \ +static_assert(alignof(FPassiveSoundMixModifier) == 0x000008, "Wrong alignment on FPassiveSoundMixModifier"); \ +static_assert(sizeof(FPassiveSoundMixModifier) == 0x000010, "Wrong size on FPassiveSoundMixModifier"); \ +static_assert(offsetof(FPassiveSoundMixModifier, SoundMix) == 0x000000, "Member 'FPassiveSoundMixModifier::SoundMix' has a wrong offset!"); \ +static_assert(offsetof(FPassiveSoundMixModifier, MinVolumeThreshold) == 0x000008, "Member 'FPassiveSoundMixModifier::MinVolumeThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPassiveSoundMixModifier, MaxVolumeThreshold) == 0x00000C, "Member 'FPassiveSoundMixModifier::MaxVolumeThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioEQEffect \ +static_assert(alignof(FAudioEQEffect) == 0x000008, "Wrong alignment on FAudioEQEffect"); \ +static_assert(sizeof(FAudioEQEffect) == 0x000040, "Wrong size on FAudioEQEffect"); \ +static_assert(offsetof(FAudioEQEffect, FrequencyCenter0) == 0x000010, "Member 'FAudioEQEffect::FrequencyCenter0' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Gain0) == 0x000014, "Member 'FAudioEQEffect::Gain0' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Bandwidth0) == 0x000018, "Member 'FAudioEQEffect::Bandwidth0' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, FrequencyCenter1) == 0x00001C, "Member 'FAudioEQEffect::FrequencyCenter1' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Gain1) == 0x000020, "Member 'FAudioEQEffect::Gain1' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Bandwidth1) == 0x000024, "Member 'FAudioEQEffect::Bandwidth1' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, FrequencyCenter2) == 0x000028, "Member 'FAudioEQEffect::FrequencyCenter2' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Gain2) == 0x00002C, "Member 'FAudioEQEffect::Gain2' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Bandwidth2) == 0x000030, "Member 'FAudioEQEffect::Bandwidth2' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, FrequencyCenter3) == 0x000034, "Member 'FAudioEQEffect::FrequencyCenter3' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Gain3) == 0x000038, "Member 'FAudioEQEffect::Gain3' has a wrong offset!"); \ +static_assert(offsetof(FAudioEQEffect, Bandwidth3) == 0x00003C, "Member 'FAudioEQEffect::Bandwidth3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundClassAdjuster \ +static_assert(alignof(FSoundClassAdjuster) == 0x000008, "Wrong alignment on FSoundClassAdjuster"); \ +static_assert(sizeof(FSoundClassAdjuster) == 0x000020, "Wrong size on FSoundClassAdjuster"); \ +static_assert(offsetof(FSoundClassAdjuster, SoundClassObject) == 0x000000, "Member 'FSoundClassAdjuster::SoundClassObject' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassAdjuster, VolumeAdjuster) == 0x000008, "Member 'FSoundClassAdjuster::VolumeAdjuster' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassAdjuster, PitchAdjuster) == 0x00000C, "Member 'FSoundClassAdjuster::PitchAdjuster' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassAdjuster, LowPassFilterFrequency) == 0x000010, "Member 'FSoundClassAdjuster::LowPassFilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSoundClassAdjuster, VoiceCenterChannelVolumeAdjuster) == 0x000018, "Member 'FSoundClassAdjuster::VoiceCenterChannelVolumeAdjuster' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSoundModulationDefaultRoutingSettings \ +static_assert(alignof(FSoundModulationDefaultRoutingSettings) == 0x000008, "Wrong alignment on FSoundModulationDefaultRoutingSettings"); \ +static_assert(sizeof(FSoundModulationDefaultRoutingSettings) == 0x000168, "Wrong size on FSoundModulationDefaultRoutingSettings"); \ +static_assert(offsetof(FSoundModulationDefaultRoutingSettings, VolumeRouting) == 0x000160, "Member 'FSoundModulationDefaultRoutingSettings::VolumeRouting' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultRoutingSettings, PitchRouting) == 0x000161, "Member 'FSoundModulationDefaultRoutingSettings::PitchRouting' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultRoutingSettings, HighpassRouting) == 0x000162, "Member 'FSoundModulationDefaultRoutingSettings::HighpassRouting' has a wrong offset!"); \ +static_assert(offsetof(FSoundModulationDefaultRoutingSettings, LowpassRouting) == 0x000163, "Member 'FSoundModulationDefaultRoutingSettings::LowpassRouting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshOptimizationSettings \ +static_assert(alignof(FStaticMeshOptimizationSettings) == 0x000004, "Wrong alignment on FStaticMeshOptimizationSettings"); \ +static_assert(sizeof(FStaticMeshOptimizationSettings) == 0x00001C, "Wrong size on FStaticMeshOptimizationSettings"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, ReductionMethod) == 0x000000, "Member 'FStaticMeshOptimizationSettings::ReductionMethod' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, NumOfTrianglesPercentage) == 0x000004, "Member 'FStaticMeshOptimizationSettings::NumOfTrianglesPercentage' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, MaxDeviationPercentage) == 0x000008, "Member 'FStaticMeshOptimizationSettings::MaxDeviationPercentage' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, WeldingThreshold) == 0x00000C, "Member 'FStaticMeshOptimizationSettings::WeldingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, bRecalcNormals) == 0x000010, "Member 'FStaticMeshOptimizationSettings::bRecalcNormals' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, NormalsThreshold) == 0x000014, "Member 'FStaticMeshOptimizationSettings::NormalsThreshold' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, SilhouetteImportance) == 0x000018, "Member 'FStaticMeshOptimizationSettings::SilhouetteImportance' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, TextureImportance) == 0x000019, "Member 'FStaticMeshOptimizationSettings::TextureImportance' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshOptimizationSettings, ShadingImportance) == 0x00001A, "Member 'FStaticMeshOptimizationSettings::ShadingImportance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetEditorOrbitCameraPosition \ +static_assert(alignof(FAssetEditorOrbitCameraPosition) == 0x000008, "Wrong alignment on FAssetEditorOrbitCameraPosition"); \ +static_assert(sizeof(FAssetEditorOrbitCameraPosition) == 0x000050, "Wrong size on FAssetEditorOrbitCameraPosition"); \ +static_assert(offsetof(FAssetEditorOrbitCameraPosition, bIsSet) == 0x000000, "Member 'FAssetEditorOrbitCameraPosition::bIsSet' has a wrong offset!"); \ +static_assert(offsetof(FAssetEditorOrbitCameraPosition, CamOrbitPoint) == 0x000008, "Member 'FAssetEditorOrbitCameraPosition::CamOrbitPoint' has a wrong offset!"); \ +static_assert(offsetof(FAssetEditorOrbitCameraPosition, CamOrbitZoom) == 0x000020, "Member 'FAssetEditorOrbitCameraPosition::CamOrbitZoom' has a wrong offset!"); \ +static_assert(offsetof(FAssetEditorOrbitCameraPosition, CamOrbitRotation) == 0x000038, "Member 'FAssetEditorOrbitCameraPosition::CamOrbitRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMaterial \ +static_assert(alignof(FStaticMaterial) == 0x000008, "Wrong alignment on FStaticMaterial"); \ +static_assert(sizeof(FStaticMaterial) == 0x000030, "Wrong size on FStaticMaterial"); \ +static_assert(offsetof(FStaticMaterial, MaterialInterface) == 0x000000, "Member 'FStaticMaterial::MaterialInterface' has a wrong offset!"); \ +static_assert(offsetof(FStaticMaterial, MaterialSlotName) == 0x000008, "Member 'FStaticMaterial::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(FStaticMaterial, ImportedMaterialSlotName) == 0x000010, "Member 'FStaticMaterial::ImportedMaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(FStaticMaterial, UVChannelData) == 0x000018, "Member 'FStaticMaterial::UVChannelData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialRemapIndex \ +static_assert(alignof(FMaterialRemapIndex) == 0x000008, "Wrong alignment on FMaterialRemapIndex"); \ +static_assert(sizeof(FMaterialRemapIndex) == 0x000018, "Wrong size on FMaterialRemapIndex"); \ +static_assert(offsetof(FMaterialRemapIndex, ImportVersionKey) == 0x000000, "Member 'FMaterialRemapIndex::ImportVersionKey' has a wrong offset!"); \ +static_assert(offsetof(FMaterialRemapIndex, MaterialRemap) == 0x000008, "Member 'FMaterialRemapIndex::MaterialRemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamableTexture \ +static_assert(alignof(FStreamableTexture) == 0x000001, "Wrong alignment on FStreamableTexture"); \ +static_assert(sizeof(FStreamableTexture) == 0x000001, "Wrong size on FStreamableTexture"); \ + +#define DUMPER7_ASSERTS_FExternalToolDefinition \ +static_assert(alignof(FExternalToolDefinition) == 0x000008, "Wrong alignment on FExternalToolDefinition"); \ +static_assert(sizeof(FExternalToolDefinition) == 0x000060, "Wrong size on FExternalToolDefinition"); \ +static_assert(offsetof(FExternalToolDefinition, ToolName) == 0x000000, "Member 'FExternalToolDefinition::ToolName' has a wrong offset!"); \ +static_assert(offsetof(FExternalToolDefinition, ExecutablePath) == 0x000010, "Member 'FExternalToolDefinition::ExecutablePath' has a wrong offset!"); \ +static_assert(offsetof(FExternalToolDefinition, CommandLineOptions) == 0x000020, "Member 'FExternalToolDefinition::CommandLineOptions' has a wrong offset!"); \ +static_assert(offsetof(FExternalToolDefinition, WorkingDirectory) == 0x000030, "Member 'FExternalToolDefinition::WorkingDirectory' has a wrong offset!"); \ +static_assert(offsetof(FExternalToolDefinition, ScriptExtension) == 0x000040, "Member 'FExternalToolDefinition::ScriptExtension' has a wrong offset!"); \ +static_assert(offsetof(FExternalToolDefinition, ScriptDirectory) == 0x000050, "Member 'FExternalToolDefinition::ScriptDirectory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditorImportWorkflowDefinition \ +static_assert(alignof(FEditorImportWorkflowDefinition) == 0x000008, "Wrong alignment on FEditorImportWorkflowDefinition"); \ +static_assert(sizeof(FEditorImportWorkflowDefinition) == 0x000020, "Wrong size on FEditorImportWorkflowDefinition"); \ +static_assert(offsetof(FEditorImportWorkflowDefinition, ImportFilePath) == 0x000000, "Member 'FEditorImportWorkflowDefinition::ImportFilePath' has a wrong offset!"); \ +static_assert(offsetof(FEditorImportWorkflowDefinition, FactorySettings) == 0x000010, "Member 'FEditorImportWorkflowDefinition::FactorySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBuildPromotionImportWorkflowSettings \ +static_assert(alignof(FBuildPromotionImportWorkflowSettings) == 0x000008, "Wrong alignment on FBuildPromotionImportWorkflowSettings"); \ +static_assert(sizeof(FBuildPromotionImportWorkflowSettings) == 0x000150, "Wrong size on FBuildPromotionImportWorkflowSettings"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, Diffuse) == 0x000000, "Member 'FBuildPromotionImportWorkflowSettings::Diffuse' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, Normal) == 0x000020, "Member 'FBuildPromotionImportWorkflowSettings::Normal' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, StaticMesh) == 0x000040, "Member 'FBuildPromotionImportWorkflowSettings::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, ReimportStaticMesh) == 0x000060, "Member 'FBuildPromotionImportWorkflowSettings::ReimportStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, BlendShapeMesh) == 0x000080, "Member 'FBuildPromotionImportWorkflowSettings::BlendShapeMesh' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, MorphMesh) == 0x0000A0, "Member 'FBuildPromotionImportWorkflowSettings::MorphMesh' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, SkeletalMesh) == 0x0000C0, "Member 'FBuildPromotionImportWorkflowSettings::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, Animation) == 0x0000E0, "Member 'FBuildPromotionImportWorkflowSettings::Animation' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, Sound) == 0x000100, "Member 'FBuildPromotionImportWorkflowSettings::Sound' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, SurroundSound) == 0x000120, "Member 'FBuildPromotionImportWorkflowSettings::SurroundSound' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionImportWorkflowSettings, OtherAssetsToImport) == 0x000140, "Member 'FBuildPromotionImportWorkflowSettings::OtherAssetsToImport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBuildPromotionOpenAssetSettings \ +static_assert(alignof(FBuildPromotionOpenAssetSettings) == 0x000008, "Wrong alignment on FBuildPromotionOpenAssetSettings"); \ +static_assert(sizeof(FBuildPromotionOpenAssetSettings) == 0x000060, "Wrong size on FBuildPromotionOpenAssetSettings"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, BlueprintAsset) == 0x000000, "Member 'FBuildPromotionOpenAssetSettings::BlueprintAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, MaterialAsset) == 0x000010, "Member 'FBuildPromotionOpenAssetSettings::MaterialAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, ParticleSystemAsset) == 0x000020, "Member 'FBuildPromotionOpenAssetSettings::ParticleSystemAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, SkeletalMeshAsset) == 0x000030, "Member 'FBuildPromotionOpenAssetSettings::SkeletalMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, StaticMeshAsset) == 0x000040, "Member 'FBuildPromotionOpenAssetSettings::StaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionOpenAssetSettings, TextureAsset) == 0x000050, "Member 'FBuildPromotionOpenAssetSettings::TextureAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialEditorPromotionSettings \ +static_assert(alignof(FMaterialEditorPromotionSettings) == 0x000008, "Wrong alignment on FMaterialEditorPromotionSettings"); \ +static_assert(sizeof(FMaterialEditorPromotionSettings) == 0x000030, "Wrong size on FMaterialEditorPromotionSettings"); \ +static_assert(offsetof(FMaterialEditorPromotionSettings, DefaultMaterialAsset) == 0x000000, "Member 'FMaterialEditorPromotionSettings::DefaultMaterialAsset' has a wrong offset!"); \ +static_assert(offsetof(FMaterialEditorPromotionSettings, DefaultDiffuseTexture) == 0x000010, "Member 'FMaterialEditorPromotionSettings::DefaultDiffuseTexture' has a wrong offset!"); \ +static_assert(offsetof(FMaterialEditorPromotionSettings, DefaultNormalTexture) == 0x000020, "Member 'FMaterialEditorPromotionSettings::DefaultNormalTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleEditorPromotionSettings \ +static_assert(alignof(FParticleEditorPromotionSettings) == 0x000008, "Wrong alignment on FParticleEditorPromotionSettings"); \ +static_assert(sizeof(FParticleEditorPromotionSettings) == 0x000010, "Wrong size on FParticleEditorPromotionSettings"); \ +static_assert(offsetof(FParticleEditorPromotionSettings, DefaultParticleAsset) == 0x000000, "Member 'FParticleEditorPromotionSettings::DefaultParticleAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintEditorPromotionSettings \ +static_assert(alignof(FBlueprintEditorPromotionSettings) == 0x000008, "Wrong alignment on FBlueprintEditorPromotionSettings"); \ +static_assert(sizeof(FBlueprintEditorPromotionSettings) == 0x000030, "Wrong size on FBlueprintEditorPromotionSettings"); \ +static_assert(offsetof(FBlueprintEditorPromotionSettings, FirstMeshPath) == 0x000000, "Member 'FBlueprintEditorPromotionSettings::FirstMeshPath' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintEditorPromotionSettings, SecondMeshPath) == 0x000010, "Member 'FBlueprintEditorPromotionSettings::SecondMeshPath' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintEditorPromotionSettings, DefaultParticleAsset) == 0x000020, "Member 'FBlueprintEditorPromotionSettings::DefaultParticleAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBuildPromotionTestSettings \ +static_assert(alignof(FBuildPromotionTestSettings) == 0x000008, "Wrong alignment on FBuildPromotionTestSettings"); \ +static_assert(sizeof(FBuildPromotionTestSettings) == 0x0001F0, "Wrong size on FBuildPromotionTestSettings"); \ +static_assert(offsetof(FBuildPromotionTestSettings, DefaultStaticMeshAsset) == 0x000000, "Member 'FBuildPromotionTestSettings::DefaultStaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionTestSettings, ImportWorkflow) == 0x000010, "Member 'FBuildPromotionTestSettings::ImportWorkflow' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionTestSettings, OpenAssets) == 0x000160, "Member 'FBuildPromotionTestSettings::OpenAssets' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionTestSettings, NewProjectSettings) == 0x0001C0, "Member 'FBuildPromotionTestSettings::NewProjectSettings' has a wrong offset!"); \ +static_assert(offsetof(FBuildPromotionTestSettings, SourceControlMaterial) == 0x0001E0, "Member 'FBuildPromotionTestSettings::SourceControlMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditorMapPerformanceTestDefinition \ +static_assert(alignof(FEditorMapPerformanceTestDefinition) == 0x000008, "Wrong alignment on FEditorMapPerformanceTestDefinition"); \ +static_assert(sizeof(FEditorMapPerformanceTestDefinition) == 0x000028, "Wrong size on FEditorMapPerformanceTestDefinition"); \ +static_assert(offsetof(FEditorMapPerformanceTestDefinition, PerformanceTestmap) == 0x000000, "Member 'FEditorMapPerformanceTestDefinition::PerformanceTestmap' has a wrong offset!"); \ +static_assert(offsetof(FEditorMapPerformanceTestDefinition, TestTimer) == 0x000020, "Member 'FEditorMapPerformanceTestDefinition::TestTimer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLaunchOnTestSettings \ +static_assert(alignof(FLaunchOnTestSettings) == 0x000008, "Wrong alignment on FLaunchOnTestSettings"); \ +static_assert(sizeof(FLaunchOnTestSettings) == 0x000020, "Wrong size on FLaunchOnTestSettings"); \ +static_assert(offsetof(FLaunchOnTestSettings, LaunchOnTestmap) == 0x000000, "Member 'FLaunchOnTestSettings::LaunchOnTestmap' has a wrong offset!"); \ +static_assert(offsetof(FLaunchOnTestSettings, DeviceID) == 0x000010, "Member 'FLaunchOnTestSettings::DeviceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextureSourceBlock \ +static_assert(alignof(FTextureSourceBlock) == 0x000004, "Wrong alignment on FTextureSourceBlock"); \ +static_assert(sizeof(FTextureSourceBlock) == 0x000018, "Wrong size on FTextureSourceBlock"); \ +static_assert(offsetof(FTextureSourceBlock, BlockX) == 0x000000, "Member 'FTextureSourceBlock::BlockX' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceBlock, BlockY) == 0x000004, "Member 'FTextureSourceBlock::BlockY' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceBlock, SizeX) == 0x000008, "Member 'FTextureSourceBlock::SizeX' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceBlock, SizeY) == 0x00000C, "Member 'FTextureSourceBlock::SizeY' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceBlock, NumSlices) == 0x000010, "Member 'FTextureSourceBlock::NumSlices' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceBlock, NumMips) == 0x000014, "Member 'FTextureSourceBlock::NumMips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextureSource \ +static_assert(alignof(FTextureSource) == 0x000008, "Wrong alignment on FTextureSource"); \ +static_assert(sizeof(FTextureSource) == 0x000070, "Wrong size on FTextureSource"); \ + +#define DUMPER7_ASSERTS_FTexturePlatformData \ +static_assert(alignof(FTexturePlatformData) == 0x000008, "Wrong alignment on FTexturePlatformData"); \ +static_assert(sizeof(FTexturePlatformData) == 0x000030, "Wrong size on FTexturePlatformData"); \ + +#define DUMPER7_ASSERTS_FTextureFormatSettings \ +static_assert(alignof(FTextureFormatSettings) == 0x000001, "Wrong alignment on FTextureFormatSettings"); \ +static_assert(sizeof(FTextureFormatSettings) == 0x000002, "Wrong size on FTextureFormatSettings"); \ +static_assert(offsetof(FTextureFormatSettings, CompressionSettings) == 0x000000, "Member 'FTextureFormatSettings::CompressionSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextureSourceColorSettings \ +static_assert(alignof(FTextureSourceColorSettings) == 0x000008, "Wrong alignment on FTextureSourceColorSettings"); \ +static_assert(sizeof(FTextureSourceColorSettings) == 0x000050, "Wrong size on FTextureSourceColorSettings"); \ +static_assert(offsetof(FTextureSourceColorSettings, EncodingOverride) == 0x000000, "Member 'FTextureSourceColorSettings::EncodingOverride' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, ColorSpace) == 0x000001, "Member 'FTextureSourceColorSettings::ColorSpace' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, RedChromaticityCoordinate) == 0x000008, "Member 'FTextureSourceColorSettings::RedChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, GreenChromaticityCoordinate) == 0x000018, "Member 'FTextureSourceColorSettings::GreenChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, BlueChromaticityCoordinate) == 0x000028, "Member 'FTextureSourceColorSettings::BlueChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, WhiteChromaticityCoordinate) == 0x000038, "Member 'FTextureSourceColorSettings::WhiteChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(FTextureSourceColorSettings, ChromaticAdaptationMethod) == 0x000048, "Member 'FTextureSourceColorSettings::ChromaticAdaptationMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTextureLODGroup \ +static_assert(alignof(FTextureLODGroup) == 0x000004, "Wrong alignment on FTextureLODGroup"); \ +static_assert(sizeof(FTextureLODGroup) == 0x000068, "Wrong size on FTextureLODGroup"); \ +static_assert(offsetof(FTextureLODGroup, Group) == 0x000000, "Member 'FTextureLODGroup::Group' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, LODBias) == 0x000008, "Member 'FTextureLODGroup::LODBias' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, LODBias_Smaller) == 0x00000C, "Member 'FTextureLODGroup::LODBias_Smaller' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, LODBias_Smallest) == 0x000010, "Member 'FTextureLODGroup::LODBias_Smallest' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, NumStreamedMips) == 0x000018, "Member 'FTextureLODGroup::NumStreamedMips' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MipGenSettings) == 0x00001C, "Member 'FTextureLODGroup::MipGenSettings' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MinLODSize) == 0x000020, "Member 'FTextureLODGroup::MinLODSize' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MaxLODSize) == 0x000024, "Member 'FTextureLODGroup::MaxLODSize' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MaxLODSize_Smaller) == 0x000028, "Member 'FTextureLODGroup::MaxLODSize_Smaller' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MaxLODSize_Smallest) == 0x00002C, "Member 'FTextureLODGroup::MaxLODSize_Smallest' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MaxLODSize_VT) == 0x000030, "Member 'FTextureLODGroup::MaxLODSize_VT' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, OptionalLODBias) == 0x000034, "Member 'FTextureLODGroup::OptionalLODBias' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, OptionalMaxLODSize) == 0x000038, "Member 'FTextureLODGroup::OptionalMaxLODSize' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MinMagFilter) == 0x00003C, "Member 'FTextureLODGroup::MinMagFilter' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MipFilter) == 0x000044, "Member 'FTextureLODGroup::MipFilter' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MipLoadOptions) == 0x00004C, "Member 'FTextureLODGroup::MipLoadOptions' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, HighPriorityLoad) == 0x00004D, "Member 'FTextureLODGroup::HighPriorityLoad' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, DuplicateNonOptionalMips) == 0x00004E, "Member 'FTextureLODGroup::DuplicateNonOptionalMips' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, Downscale) == 0x000050, "Member 'FTextureLODGroup::Downscale' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, DownscaleOptions) == 0x000054, "Member 'FTextureLODGroup::DownscaleOptions' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, VirtualTextureTileCountBias) == 0x000058, "Member 'FTextureLODGroup::VirtualTextureTileCountBias' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, VirtualTextureTileSizeBias) == 0x00005C, "Member 'FTextureLODGroup::VirtualTextureTileSizeBias' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, LossyCompressionAmount) == 0x000060, "Member 'FTextureLODGroup::LossyCompressionAmount' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, CookPlatformTilingDisabled) == 0x000061, "Member 'FTextureLODGroup::CookPlatformTilingDisabled' has a wrong offset!"); \ +static_assert(offsetof(FTextureLODGroup, MaxAniso) == 0x000064, "Member 'FTextureLODGroup::MaxAniso' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTTrackBase \ +static_assert(alignof(FTTTrackBase) == 0x000008, "Wrong alignment on FTTTrackBase"); \ +static_assert(sizeof(FTTTrackBase) == 0x000018, "Wrong size on FTTTrackBase"); \ +static_assert(offsetof(FTTTrackBase, TrackName) == 0x000008, "Member 'FTTTrackBase::TrackName' has a wrong offset!"); \ +static_assert(offsetof(FTTTrackBase, bIsExternalCurve) == 0x000010, "Member 'FTTTrackBase::bIsExternalCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTTrackId \ +static_assert(alignof(FTTTrackId) == 0x000004, "Wrong alignment on FTTTrackId"); \ +static_assert(sizeof(FTTTrackId) == 0x000008, "Wrong size on FTTTrackId"); \ +static_assert(offsetof(FTTTrackId, TrackType) == 0x000000, "Member 'FTTTrackId::TrackType' has a wrong offset!"); \ +static_assert(offsetof(FTTTrackId, TrackIndex) == 0x000004, "Member 'FTTTrackId::TrackIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTEventTrack \ +static_assert(alignof(FTTEventTrack) == 0x000008, "Wrong alignment on FTTEventTrack"); \ +static_assert(sizeof(FTTEventTrack) == 0x000028, "Wrong size on FTTEventTrack"); \ +static_assert(offsetof(FTTEventTrack, FunctionName) == 0x000018, "Member 'FTTEventTrack::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(FTTEventTrack, CurveKeys) == 0x000020, "Member 'FTTEventTrack::CurveKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTPropertyTrack \ +static_assert(alignof(FTTPropertyTrack) == 0x000008, "Wrong alignment on FTTPropertyTrack"); \ +static_assert(sizeof(FTTPropertyTrack) == 0x000020, "Wrong size on FTTPropertyTrack"); \ +static_assert(offsetof(FTTPropertyTrack, PropertyName) == 0x000018, "Member 'FTTPropertyTrack::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTFloatTrack \ +static_assert(alignof(FTTFloatTrack) == 0x000008, "Wrong alignment on FTTFloatTrack"); \ +static_assert(sizeof(FTTFloatTrack) == 0x000028, "Wrong size on FTTFloatTrack"); \ +static_assert(offsetof(FTTFloatTrack, CurveFloat) == 0x000020, "Member 'FTTFloatTrack::CurveFloat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTVectorTrack \ +static_assert(alignof(FTTVectorTrack) == 0x000008, "Wrong alignment on FTTVectorTrack"); \ +static_assert(sizeof(FTTVectorTrack) == 0x000028, "Wrong size on FTTVectorTrack"); \ +static_assert(offsetof(FTTVectorTrack, CurveVector) == 0x000020, "Member 'FTTVectorTrack::CurveVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTTLinearColorTrack \ +static_assert(alignof(FTTLinearColorTrack) == 0x000008, "Wrong alignment on FTTLinearColorTrack"); \ +static_assert(sizeof(FTTLinearColorTrack) == 0x000028, "Wrong size on FTTLinearColorTrack"); \ +static_assert(offsetof(FTTLinearColorTrack, CurveLinearColor) == 0x000020, "Member 'FTTLinearColorTrack::CurveLinearColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHardwareCursorReference \ +static_assert(alignof(FHardwareCursorReference) == 0x000008, "Wrong alignment on FHardwareCursorReference"); \ +static_assert(sizeof(FHardwareCursorReference) == 0x000018, "Wrong size on FHardwareCursorReference"); \ +static_assert(offsetof(FHardwareCursorReference, CursorPath) == 0x000000, "Member 'FHardwareCursorReference::CursorPath' has a wrong offset!"); \ +static_assert(offsetof(FHardwareCursorReference, HotSpot) == 0x000008, "Member 'FHardwareCursorReference::HotSpot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCanvasIcon \ +static_assert(alignof(FCanvasIcon) == 0x000008, "Wrong alignment on FCanvasIcon"); \ +static_assert(sizeof(FCanvasIcon) == 0x000018, "Wrong size on FCanvasIcon"); \ +static_assert(offsetof(FCanvasIcon, Texture) == 0x000000, "Member 'FCanvasIcon::Texture' has a wrong offset!"); \ +static_assert(offsetof(FCanvasIcon, U) == 0x000008, "Member 'FCanvasIcon::U' has a wrong offset!"); \ +static_assert(offsetof(FCanvasIcon, V) == 0x00000C, "Member 'FCanvasIcon::V' has a wrong offset!"); \ +static_assert(offsetof(FCanvasIcon, UL) == 0x000010, "Member 'FCanvasIcon::UL' has a wrong offset!"); \ +static_assert(offsetof(FCanvasIcon, VL) == 0x000014, "Member 'FCanvasIcon::VL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAutoCompleteNode \ +static_assert(alignof(FAutoCompleteNode) == 0x000008, "Wrong alignment on FAutoCompleteNode"); \ +static_assert(sizeof(FAutoCompleteNode) == 0x000028, "Wrong size on FAutoCompleteNode"); \ +static_assert(offsetof(FAutoCompleteNode, IndexChar) == 0x000000, "Member 'FAutoCompleteNode::IndexChar' has a wrong offset!"); \ +static_assert(offsetof(FAutoCompleteNode, AutoCompleteListIndices) == 0x000008, "Member 'FAutoCompleteNode::AutoCompleteListIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKeyBind \ +static_assert(alignof(FKeyBind) == 0x000008, "Wrong alignment on FKeyBind"); \ +static_assert(sizeof(FKeyBind) == 0x000030, "Wrong size on FKeyBind"); \ +static_assert(offsetof(FKeyBind, Key) == 0x000000, "Member 'FKeyBind::Key' has a wrong offset!"); \ +static_assert(offsetof(FKeyBind, Command) == 0x000018, "Member 'FKeyBind::Command' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputAxisProperties \ +static_assert(alignof(FInputAxisProperties) == 0x000004, "Wrong alignment on FInputAxisProperties"); \ +static_assert(sizeof(FInputAxisProperties) == 0x000010, "Wrong size on FInputAxisProperties"); \ +static_assert(offsetof(FInputAxisProperties, DeadZone) == 0x000000, "Member 'FInputAxisProperties::DeadZone' has a wrong offset!"); \ +static_assert(offsetof(FInputAxisProperties, Sensitivity) == 0x000004, "Member 'FInputAxisProperties::Sensitivity' has a wrong offset!"); \ +static_assert(offsetof(FInputAxisProperties, Exponent) == 0x000008, "Member 'FInputAxisProperties::Exponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputAxisConfigEntry \ +static_assert(alignof(FInputAxisConfigEntry) == 0x000004, "Wrong alignment on FInputAxisConfigEntry"); \ +static_assert(sizeof(FInputAxisConfigEntry) == 0x000018, "Wrong size on FInputAxisConfigEntry"); \ +static_assert(offsetof(FInputAxisConfigEntry, AxisKeyName) == 0x000000, "Member 'FInputAxisConfigEntry::AxisKeyName' has a wrong offset!"); \ +static_assert(offsetof(FInputAxisConfigEntry, AxisProperties) == 0x000008, "Member 'FInputAxisConfigEntry::AxisProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputActionKeyMapping \ +static_assert(alignof(FInputActionKeyMapping) == 0x000008, "Wrong alignment on FInputActionKeyMapping"); \ +static_assert(sizeof(FInputActionKeyMapping) == 0x000028, "Wrong size on FInputActionKeyMapping"); \ +static_assert(offsetof(FInputActionKeyMapping, ActionName) == 0x000000, "Member 'FInputActionKeyMapping::ActionName' has a wrong offset!"); \ +static_assert(offsetof(FInputActionKeyMapping, Key) == 0x000010, "Member 'FInputActionKeyMapping::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputAxisKeyMapping \ +static_assert(alignof(FInputAxisKeyMapping) == 0x000008, "Wrong alignment on FInputAxisKeyMapping"); \ +static_assert(sizeof(FInputAxisKeyMapping) == 0x000028, "Wrong size on FInputAxisKeyMapping"); \ +static_assert(offsetof(FInputAxisKeyMapping, AxisName) == 0x000000, "Member 'FInputAxisKeyMapping::AxisName' has a wrong offset!"); \ +static_assert(offsetof(FInputAxisKeyMapping, Scale) == 0x000008, "Member 'FInputAxisKeyMapping::Scale' has a wrong offset!"); \ +static_assert(offsetof(FInputAxisKeyMapping, Key) == 0x000010, "Member 'FInputAxisKeyMapping::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputActionSpeechMapping \ +static_assert(alignof(FInputActionSpeechMapping) == 0x000004, "Wrong alignment on FInputActionSpeechMapping"); \ +static_assert(sizeof(FInputActionSpeechMapping) == 0x000010, "Wrong size on FInputActionSpeechMapping"); \ +static_assert(offsetof(FInputActionSpeechMapping, ActionName) == 0x000000, "Member 'FInputActionSpeechMapping::ActionName' has a wrong offset!"); \ +static_assert(offsetof(FInputActionSpeechMapping, SpeechKeyword) == 0x000008, "Member 'FInputActionSpeechMapping::SpeechKeyword' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVoiceSettings \ +static_assert(alignof(FVoiceSettings) == 0x000008, "Wrong alignment on FVoiceSettings"); \ +static_assert(sizeof(FVoiceSettings) == 0x000018, "Wrong size on FVoiceSettings"); \ +static_assert(offsetof(FVoiceSettings, ComponentToAttachTo) == 0x000000, "Member 'FVoiceSettings::ComponentToAttachTo' has a wrong offset!"); \ +static_assert(offsetof(FVoiceSettings, AttenuationSettings) == 0x000008, "Member 'FVoiceSettings::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(FVoiceSettings, SourceEffectChain) == 0x000010, "Member 'FVoiceSettings::SourceEffectChain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVirtualTextureBuildSettings \ +static_assert(alignof(FVirtualTextureBuildSettings) == 0x000004, "Wrong alignment on FVirtualTextureBuildSettings"); \ +static_assert(sizeof(FVirtualTextureBuildSettings) == 0x000008, "Wrong size on FVirtualTextureBuildSettings"); \ +static_assert(offsetof(FVirtualTextureBuildSettings, TileSize) == 0x000000, "Member 'FVirtualTextureBuildSettings::TileSize' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureBuildSettings, TileBorderSize) == 0x000004, "Member 'FVirtualTextureBuildSettings::TileBorderSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVirtualTextureSpacePoolConfig \ +static_assert(alignof(FVirtualTextureSpacePoolConfig) == 0x000008, "Wrong alignment on FVirtualTextureSpacePoolConfig"); \ +static_assert(sizeof(FVirtualTextureSpacePoolConfig) == 0x000030, "Wrong size on FVirtualTextureSpacePoolConfig"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, MinTileSize) == 0x000000, "Member 'FVirtualTextureSpacePoolConfig::MinTileSize' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, MaxTileSize) == 0x000004, "Member 'FVirtualTextureSpacePoolConfig::MaxTileSize' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, Formats) == 0x000008, "Member 'FVirtualTextureSpacePoolConfig::Formats' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, SizeInMegabyte) == 0x000018, "Member 'FVirtualTextureSpacePoolConfig::SizeInMegabyte' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, bEnableResidencyMipMapBias) == 0x00001C, "Member 'FVirtualTextureSpacePoolConfig::bEnableResidencyMipMapBias' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, bAllowSizeScale) == 0x00001D, "Member 'FVirtualTextureSpacePoolConfig::bAllowSizeScale' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, ScalabilityGroup) == 0x000020, "Member 'FVirtualTextureSpacePoolConfig::ScalabilityGroup' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, MinScaledSizeInMegabyte) == 0x000024, "Member 'FVirtualTextureSpacePoolConfig::MinScaledSizeInMegabyte' has a wrong offset!"); \ +static_assert(offsetof(FVirtualTextureSpacePoolConfig, MaxScaledSizeInMegabyte) == 0x000028, "Member 'FVirtualTextureSpacePoolConfig::MaxScaledSizeInMegabyte' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStartPhysicsTickFunction \ +static_assert(alignof(FStartPhysicsTickFunction) == 0x000008, "Wrong alignment on FStartPhysicsTickFunction"); \ +static_assert(sizeof(FStartPhysicsTickFunction) == 0x000030, "Wrong size on FStartPhysicsTickFunction"); \ + +#define DUMPER7_ASSERTS_FEndPhysicsTickFunction \ +static_assert(alignof(FEndPhysicsTickFunction) == 0x000008, "Wrong alignment on FEndPhysicsTickFunction"); \ +static_assert(sizeof(FEndPhysicsTickFunction) == 0x000030, "Wrong size on FEndPhysicsTickFunction"); \ + +#define DUMPER7_ASSERTS_FLevelCollection \ +static_assert(alignof(FLevelCollection) == 0x000008, "Wrong alignment on FLevelCollection"); \ +static_assert(sizeof(FLevelCollection) == 0x000078, "Wrong size on FLevelCollection"); \ +static_assert(offsetof(FLevelCollection, GameState) == 0x000008, "Member 'FLevelCollection::GameState' has a wrong offset!"); \ +static_assert(offsetof(FLevelCollection, NetDriver) == 0x000010, "Member 'FLevelCollection::NetDriver' has a wrong offset!"); \ +static_assert(offsetof(FLevelCollection, DemoNetDriver) == 0x000018, "Member 'FLevelCollection::DemoNetDriver' has a wrong offset!"); \ +static_assert(offsetof(FLevelCollection, PersistentLevel) == 0x000020, "Member 'FLevelCollection::PersistentLevel' has a wrong offset!"); \ +static_assert(offsetof(FLevelCollection, Levels) == 0x000028, "Member 'FLevelCollection::Levels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorDesc \ +static_assert(alignof(FActorDesc) == 0x000008, "Wrong alignment on FActorDesc"); \ +static_assert(sizeof(FActorDesc) == 0x0000B0, "Wrong size on FActorDesc"); \ +static_assert(offsetof(FActorDesc, Guid) == 0x000000, "Member 'FActorDesc::Guid' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, NativeClass) == 0x000010, "Member 'FActorDesc::NativeClass' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, Class) == 0x000018, "Member 'FActorDesc::Class' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, Name) == 0x000038, "Member 'FActorDesc::Name' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, Label) == 0x000040, "Member 'FActorDesc::Label' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, Bounds) == 0x000048, "Member 'FActorDesc::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, RuntimeGrid) == 0x000080, "Member 'FActorDesc::RuntimeGrid' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, bIsSpatiallyLoaded) == 0x000088, "Member 'FActorDesc::bIsSpatiallyLoaded' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, bActorIsEditorOnly) == 0x000089, "Member 'FActorDesc::bActorIsEditorOnly' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, ActorPackage) == 0x00008C, "Member 'FActorDesc::ActorPackage' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, ActorPath) == 0x000094, "Member 'FActorDesc::ActorPath' has a wrong offset!"); \ +static_assert(offsetof(FActorDesc, DataLayerAssets) == 0x0000A0, "Member 'FActorDesc::DataLayerAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorPlacementDataLayers \ +static_assert(alignof(FActorPlacementDataLayers) == 0x000008, "Wrong alignment on FActorPlacementDataLayers"); \ +static_assert(sizeof(FActorPlacementDataLayers) == 0x000018, "Wrong size on FActorPlacementDataLayers"); \ +static_assert(offsetof(FActorPlacementDataLayers, DataLayerInstanceNames) == 0x000000, "Member 'FActorPlacementDataLayers::DataLayerInstanceNames' has a wrong offset!"); \ +static_assert(offsetof(FActorPlacementDataLayers, ContextID) == 0x000010, "Member 'FActorPlacementDataLayers::ContextID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionDestructibleHLODDamagedActorState \ +static_assert(alignof(FWorldPartitionDestructibleHLODDamagedActorState) == 0x000004, "Wrong alignment on FWorldPartitionDestructibleHLODDamagedActorState"); \ +static_assert(sizeof(FWorldPartitionDestructibleHLODDamagedActorState) == 0x000014, "Wrong size on FWorldPartitionDestructibleHLODDamagedActorState"); \ +static_assert(offsetof(FWorldPartitionDestructibleHLODDamagedActorState, ActorIndex) == 0x00000C, "Member 'FWorldPartitionDestructibleHLODDamagedActorState::ActorIndex' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionDestructibleHLODDamagedActorState, ActorHealth) == 0x000010, "Member 'FWorldPartitionDestructibleHLODDamagedActorState::ActorHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionDestructibleHLODState \ +static_assert(alignof(FWorldPartitionDestructibleHLODState) == 0x000008, "Wrong alignment on FWorldPartitionDestructibleHLODState"); \ +static_assert(sizeof(FWorldPartitionDestructibleHLODState) == 0x000148, "Wrong size on FWorldPartitionDestructibleHLODState"); \ +static_assert(offsetof(FWorldPartitionDestructibleHLODState, DamagedActors) == 0x000108, "Member 'FWorldPartitionDestructibleHLODState::DamagedActors' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionDestructibleHLODState, OwnerComponent) == 0x000118, "Member 'FWorldPartitionDestructibleHLODState::OwnerComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionHLODDestructionTag \ +static_assert(alignof(FWorldPartitionHLODDestructionTag) == 0x000008, "Wrong alignment on FWorldPartitionHLODDestructionTag"); \ +static_assert(sizeof(FWorldPartitionHLODDestructionTag) == 0x000010, "Wrong size on FWorldPartitionHLODDestructionTag"); \ +static_assert(offsetof(FWorldPartitionHLODDestructionTag, HLODDestructionComponent) == 0x000000, "Member 'FWorldPartitionHLODDestructionTag::HLODDestructionComponent' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionHLODDestructionTag, ActorIndex) == 0x000008, "Member 'FWorldPartitionHLODDestructionTag::ActorIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionPerWorldSettings \ +static_assert(alignof(FWorldPartitionPerWorldSettings) == 0x000001, "Wrong alignment on FWorldPartitionPerWorldSettings"); \ +static_assert(sizeof(FWorldPartitionPerWorldSettings) == 0x000001, "Wrong size on FWorldPartitionPerWorldSettings"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionRuntimeCellObjectMapping \ +static_assert(alignof(FWorldPartitionRuntimeCellObjectMapping) == 0x000001, "Wrong alignment on FWorldPartitionRuntimeCellObjectMapping"); \ +static_assert(sizeof(FWorldPartitionRuntimeCellObjectMapping) == 0x000001, "Wrong size on FWorldPartitionRuntimeCellObjectMapping"); \ + +#define DUMPER7_ASSERTS_FSpatialHashSettings \ +static_assert(alignof(FSpatialHashSettings) == 0x000001, "Wrong alignment on FSpatialHashSettings"); \ +static_assert(sizeof(FSpatialHashSettings) == 0x000002, "Wrong size on FSpatialHashSettings"); \ +static_assert(offsetof(FSpatialHashSettings, bUseAlignedGridLevels) == 0x000000, "Member 'FSpatialHashSettings::bUseAlignedGridLevels' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashSettings, bSnapNonAlignedGridLevelsToLowerLevels) == 0x000001, "Member 'FSpatialHashSettings::bSnapNonAlignedGridLevelsToLowerLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpatialHashStreamingGridLayerCell \ +static_assert(alignof(FSpatialHashStreamingGridLayerCell) == 0x000008, "Wrong alignment on FSpatialHashStreamingGridLayerCell"); \ +static_assert(sizeof(FSpatialHashStreamingGridLayerCell) == 0x000010, "Wrong size on FSpatialHashStreamingGridLayerCell"); \ +static_assert(offsetof(FSpatialHashStreamingGridLayerCell, GridCells) == 0x000000, "Member 'FSpatialHashStreamingGridLayerCell::GridCells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpatialHashStreamingGridLevel \ +static_assert(alignof(FSpatialHashStreamingGridLevel) == 0x000008, "Wrong alignment on FSpatialHashStreamingGridLevel"); \ +static_assert(sizeof(FSpatialHashStreamingGridLevel) == 0x000060, "Wrong size on FSpatialHashStreamingGridLevel"); \ +static_assert(offsetof(FSpatialHashStreamingGridLevel, LayerCells) == 0x000000, "Member 'FSpatialHashStreamingGridLevel::LayerCells' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGridLevel, LayerCellsMapping) == 0x000010, "Member 'FSpatialHashStreamingGridLevel::LayerCellsMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpatialHashStreamingGrid \ +static_assert(alignof(FSpatialHashStreamingGrid) == 0x000008, "Wrong alignment on FSpatialHashStreamingGrid"); \ +static_assert(sizeof(FSpatialHashStreamingGrid) == 0x0000B8, "Wrong size on FSpatialHashStreamingGrid"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, GridName) == 0x000000, "Member 'FSpatialHashStreamingGrid::GridName' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, Origin) == 0x000008, "Member 'FSpatialHashStreamingGrid::Origin' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, CellSize) == 0x000020, "Member 'FSpatialHashStreamingGrid::CellSize' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, LoadingRange) == 0x000024, "Member 'FSpatialHashStreamingGrid::LoadingRange' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, bBlockOnSlowStreaming) == 0x000028, "Member 'FSpatialHashStreamingGrid::bBlockOnSlowStreaming' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, DebugColor) == 0x00002C, "Member 'FSpatialHashStreamingGrid::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, GridLevels) == 0x000040, "Member 'FSpatialHashStreamingGrid::GridLevels' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, WorldBounds) == 0x000050, "Member 'FSpatialHashStreamingGrid::WorldBounds' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, bClientOnlyVisible) == 0x000088, "Member 'FSpatialHashStreamingGrid::bClientOnlyVisible' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, HLODLayer) == 0x000090, "Member 'FSpatialHashStreamingGrid::HLODLayer' has a wrong offset!"); \ +static_assert(offsetof(FSpatialHashStreamingGrid, Settings) == 0x000098, "Member 'FSpatialHashStreamingGrid::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpatialHashRuntimeGrid \ +static_assert(alignof(FSpatialHashRuntimeGrid) == 0x000001, "Wrong alignment on FSpatialHashRuntimeGrid"); \ +static_assert(sizeof(FSpatialHashRuntimeGrid) == 0x000001, "Wrong size on FSpatialHashRuntimeGrid"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionRuntimeSpatialHashGridPreviewer \ +static_assert(alignof(FWorldPartitionRuntimeSpatialHashGridPreviewer) == 0x000001, "Wrong alignment on FWorldPartitionRuntimeSpatialHashGridPreviewer"); \ +static_assert(sizeof(FWorldPartitionRuntimeSpatialHashGridPreviewer) == 0x000001, "Wrong size on FWorldPartitionRuntimeSpatialHashGridPreviewer"); \ + +#define DUMPER7_ASSERTS_FStreamingSourceShape \ +static_assert(alignof(FStreamingSourceShape) == 0x000008, "Wrong alignment on FStreamingSourceShape"); \ +static_assert(sizeof(FStreamingSourceShape) == 0x000048, "Wrong size on FStreamingSourceShape"); \ +static_assert(offsetof(FStreamingSourceShape, bUseGridLoadingRange) == 0x000000, "Member 'FStreamingSourceShape::bUseGridLoadingRange' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, LoadingRangeScale) == 0x000004, "Member 'FStreamingSourceShape::LoadingRangeScale' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, Radius) == 0x000008, "Member 'FStreamingSourceShape::Radius' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, bIsSector) == 0x00000C, "Member 'FStreamingSourceShape::bIsSector' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, SectorAngle) == 0x000010, "Member 'FStreamingSourceShape::SectorAngle' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, Location) == 0x000018, "Member 'FStreamingSourceShape::Location' has a wrong offset!"); \ +static_assert(offsetof(FStreamingSourceShape, Rotation) == 0x000030, "Member 'FStreamingSourceShape::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldPartitionStreamingQuerySource \ +static_assert(alignof(FWorldPartitionStreamingQuerySource) == 0x000008, "Wrong alignment on FWorldPartitionStreamingQuerySource"); \ +static_assert(sizeof(FWorldPartitionStreamingQuerySource) == 0x000130, "Wrong size on FWorldPartitionStreamingQuerySource"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, Location) == 0x000000, "Member 'FWorldPartitionStreamingQuerySource::Location' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, Radius) == 0x000018, "Member 'FWorldPartitionStreamingQuerySource::Radius' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, bUseGridLoadingRange) == 0x00001C, "Member 'FWorldPartitionStreamingQuerySource::bUseGridLoadingRange' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, DataLayers) == 0x000020, "Member 'FWorldPartitionStreamingQuerySource::DataLayers' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, bDataLayersOnly) == 0x000030, "Member 'FWorldPartitionStreamingQuerySource::bDataLayersOnly' has a wrong offset!"); \ +static_assert(offsetof(FWorldPartitionStreamingQuerySource, bSpatialQuery) == 0x000031, "Member 'FWorldPartitionStreamingQuerySource::bSpatialQuery' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_Activate \ +static_assert(alignof(ActorComponent_Activate) == 0x000001, "Wrong alignment on ActorComponent_Activate"); \ +static_assert(sizeof(ActorComponent_Activate) == 0x000001, "Wrong size on ActorComponent_Activate"); \ +static_assert(offsetof(ActorComponent_Activate, bReset) == 0x000000, "Member 'ActorComponent_Activate::bReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_AddTickPrerequisiteActor \ +static_assert(alignof(ActorComponent_AddTickPrerequisiteActor) == 0x000008, "Wrong alignment on ActorComponent_AddTickPrerequisiteActor"); \ +static_assert(sizeof(ActorComponent_AddTickPrerequisiteActor) == 0x000008, "Wrong size on ActorComponent_AddTickPrerequisiteActor"); \ +static_assert(offsetof(ActorComponent_AddTickPrerequisiteActor, PrerequisiteActor) == 0x000000, "Member 'ActorComponent_AddTickPrerequisiteActor::PrerequisiteActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_AddTickPrerequisiteComponent \ +static_assert(alignof(ActorComponent_AddTickPrerequisiteComponent) == 0x000008, "Wrong alignment on ActorComponent_AddTickPrerequisiteComponent"); \ +static_assert(sizeof(ActorComponent_AddTickPrerequisiteComponent) == 0x000008, "Wrong size on ActorComponent_AddTickPrerequisiteComponent"); \ +static_assert(offsetof(ActorComponent_AddTickPrerequisiteComponent, PrerequisiteComponent) == 0x000000, "Member 'ActorComponent_AddTickPrerequisiteComponent::PrerequisiteComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_K2_DestroyComponent \ +static_assert(alignof(ActorComponent_K2_DestroyComponent) == 0x000008, "Wrong alignment on ActorComponent_K2_DestroyComponent"); \ +static_assert(sizeof(ActorComponent_K2_DestroyComponent) == 0x000008, "Wrong size on ActorComponent_K2_DestroyComponent"); \ +static_assert(offsetof(ActorComponent_K2_DestroyComponent, Object) == 0x000000, "Member 'ActorComponent_K2_DestroyComponent::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_ReceiveAsyncPhysicsTick \ +static_assert(alignof(ActorComponent_ReceiveAsyncPhysicsTick) == 0x000004, "Wrong alignment on ActorComponent_ReceiveAsyncPhysicsTick"); \ +static_assert(sizeof(ActorComponent_ReceiveAsyncPhysicsTick) == 0x000008, "Wrong size on ActorComponent_ReceiveAsyncPhysicsTick"); \ +static_assert(offsetof(ActorComponent_ReceiveAsyncPhysicsTick, DeltaSeconds) == 0x000000, "Member 'ActorComponent_ReceiveAsyncPhysicsTick::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(ActorComponent_ReceiveAsyncPhysicsTick, SimSeconds) == 0x000004, "Member 'ActorComponent_ReceiveAsyncPhysicsTick::SimSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_ReceiveEndPlay \ +static_assert(alignof(ActorComponent_ReceiveEndPlay) == 0x000001, "Wrong alignment on ActorComponent_ReceiveEndPlay"); \ +static_assert(sizeof(ActorComponent_ReceiveEndPlay) == 0x000001, "Wrong size on ActorComponent_ReceiveEndPlay"); \ +static_assert(offsetof(ActorComponent_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'ActorComponent_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_ReceiveTick \ +static_assert(alignof(ActorComponent_ReceiveTick) == 0x000004, "Wrong alignment on ActorComponent_ReceiveTick"); \ +static_assert(sizeof(ActorComponent_ReceiveTick) == 0x000004, "Wrong size on ActorComponent_ReceiveTick"); \ +static_assert(offsetof(ActorComponent_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'ActorComponent_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_RemoveTickPrerequisiteActor \ +static_assert(alignof(ActorComponent_RemoveTickPrerequisiteActor) == 0x000008, "Wrong alignment on ActorComponent_RemoveTickPrerequisiteActor"); \ +static_assert(sizeof(ActorComponent_RemoveTickPrerequisiteActor) == 0x000008, "Wrong size on ActorComponent_RemoveTickPrerequisiteActor"); \ +static_assert(offsetof(ActorComponent_RemoveTickPrerequisiteActor, PrerequisiteActor) == 0x000000, "Member 'ActorComponent_RemoveTickPrerequisiteActor::PrerequisiteActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_RemoveTickPrerequisiteComponent \ +static_assert(alignof(ActorComponent_RemoveTickPrerequisiteComponent) == 0x000008, "Wrong alignment on ActorComponent_RemoveTickPrerequisiteComponent"); \ +static_assert(sizeof(ActorComponent_RemoveTickPrerequisiteComponent) == 0x000008, "Wrong size on ActorComponent_RemoveTickPrerequisiteComponent"); \ +static_assert(offsetof(ActorComponent_RemoveTickPrerequisiteComponent, PrerequisiteComponent) == 0x000000, "Member 'ActorComponent_RemoveTickPrerequisiteComponent::PrerequisiteComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetActive \ +static_assert(alignof(ActorComponent_SetActive) == 0x000001, "Wrong alignment on ActorComponent_SetActive"); \ +static_assert(sizeof(ActorComponent_SetActive) == 0x000002, "Wrong size on ActorComponent_SetActive"); \ +static_assert(offsetof(ActorComponent_SetActive, bNewActive) == 0x000000, "Member 'ActorComponent_SetActive::bNewActive' has a wrong offset!"); \ +static_assert(offsetof(ActorComponent_SetActive, bReset) == 0x000001, "Member 'ActorComponent_SetActive::bReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetAutoActivate \ +static_assert(alignof(ActorComponent_SetAutoActivate) == 0x000001, "Wrong alignment on ActorComponent_SetAutoActivate"); \ +static_assert(sizeof(ActorComponent_SetAutoActivate) == 0x000001, "Wrong size on ActorComponent_SetAutoActivate"); \ +static_assert(offsetof(ActorComponent_SetAutoActivate, bNewAutoActivate) == 0x000000, "Member 'ActorComponent_SetAutoActivate::bNewAutoActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetComponentTickEnabled \ +static_assert(alignof(ActorComponent_SetComponentTickEnabled) == 0x000001, "Wrong alignment on ActorComponent_SetComponentTickEnabled"); \ +static_assert(sizeof(ActorComponent_SetComponentTickEnabled) == 0x000001, "Wrong size on ActorComponent_SetComponentTickEnabled"); \ +static_assert(offsetof(ActorComponent_SetComponentTickEnabled, bEnabled) == 0x000000, "Member 'ActorComponent_SetComponentTickEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetComponentTickInterval \ +static_assert(alignof(ActorComponent_SetComponentTickInterval) == 0x000004, "Wrong alignment on ActorComponent_SetComponentTickInterval"); \ +static_assert(sizeof(ActorComponent_SetComponentTickInterval) == 0x000004, "Wrong size on ActorComponent_SetComponentTickInterval"); \ +static_assert(offsetof(ActorComponent_SetComponentTickInterval, TickInterval) == 0x000000, "Member 'ActorComponent_SetComponentTickInterval::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetComponentTickIntervalAndCooldown \ +static_assert(alignof(ActorComponent_SetComponentTickIntervalAndCooldown) == 0x000004, "Wrong alignment on ActorComponent_SetComponentTickIntervalAndCooldown"); \ +static_assert(sizeof(ActorComponent_SetComponentTickIntervalAndCooldown) == 0x000004, "Wrong size on ActorComponent_SetComponentTickIntervalAndCooldown"); \ +static_assert(offsetof(ActorComponent_SetComponentTickIntervalAndCooldown, TickInterval) == 0x000000, "Member 'ActorComponent_SetComponentTickIntervalAndCooldown::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetIsReplicated \ +static_assert(alignof(ActorComponent_SetIsReplicated) == 0x000001, "Wrong alignment on ActorComponent_SetIsReplicated"); \ +static_assert(sizeof(ActorComponent_SetIsReplicated) == 0x000001, "Wrong size on ActorComponent_SetIsReplicated"); \ +static_assert(offsetof(ActorComponent_SetIsReplicated, ShouldReplicate) == 0x000000, "Member 'ActorComponent_SetIsReplicated::ShouldReplicate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetTickableWhenPaused \ +static_assert(alignof(ActorComponent_SetTickableWhenPaused) == 0x000001, "Wrong alignment on ActorComponent_SetTickableWhenPaused"); \ +static_assert(sizeof(ActorComponent_SetTickableWhenPaused) == 0x000001, "Wrong size on ActorComponent_SetTickableWhenPaused"); \ +static_assert(offsetof(ActorComponent_SetTickableWhenPaused, bTickableWhenPaused) == 0x000000, "Member 'ActorComponent_SetTickableWhenPaused::bTickableWhenPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_SetTickGroup \ +static_assert(alignof(ActorComponent_SetTickGroup) == 0x000001, "Wrong alignment on ActorComponent_SetTickGroup"); \ +static_assert(sizeof(ActorComponent_SetTickGroup) == 0x000001, "Wrong size on ActorComponent_SetTickGroup"); \ +static_assert(offsetof(ActorComponent_SetTickGroup, NewTickGroup) == 0x000000, "Member 'ActorComponent_SetTickGroup::NewTickGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_ComponentHasTag \ +static_assert(alignof(ActorComponent_ComponentHasTag) == 0x000004, "Wrong alignment on ActorComponent_ComponentHasTag"); \ +static_assert(sizeof(ActorComponent_ComponentHasTag) == 0x00000C, "Wrong size on ActorComponent_ComponentHasTag"); \ +static_assert(offsetof(ActorComponent_ComponentHasTag, Tag) == 0x000000, "Member 'ActorComponent_ComponentHasTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(ActorComponent_ComponentHasTag, ReturnValue) == 0x000008, "Member 'ActorComponent_ComponentHasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_GetComponentTickInterval \ +static_assert(alignof(ActorComponent_GetComponentTickInterval) == 0x000004, "Wrong alignment on ActorComponent_GetComponentTickInterval"); \ +static_assert(sizeof(ActorComponent_GetComponentTickInterval) == 0x000004, "Wrong size on ActorComponent_GetComponentTickInterval"); \ +static_assert(offsetof(ActorComponent_GetComponentTickInterval, ReturnValue) == 0x000000, "Member 'ActorComponent_GetComponentTickInterval::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_GetOwner \ +static_assert(alignof(ActorComponent_GetOwner) == 0x000008, "Wrong alignment on ActorComponent_GetOwner"); \ +static_assert(sizeof(ActorComponent_GetOwner) == 0x000008, "Wrong size on ActorComponent_GetOwner"); \ +static_assert(offsetof(ActorComponent_GetOwner, ReturnValue) == 0x000000, "Member 'ActorComponent_GetOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_IsActive \ +static_assert(alignof(ActorComponent_IsActive) == 0x000001, "Wrong alignment on ActorComponent_IsActive"); \ +static_assert(sizeof(ActorComponent_IsActive) == 0x000001, "Wrong size on ActorComponent_IsActive"); \ +static_assert(offsetof(ActorComponent_IsActive, ReturnValue) == 0x000000, "Member 'ActorComponent_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_IsBeingDestroyed \ +static_assert(alignof(ActorComponent_IsBeingDestroyed) == 0x000001, "Wrong alignment on ActorComponent_IsBeingDestroyed"); \ +static_assert(sizeof(ActorComponent_IsBeingDestroyed) == 0x000001, "Wrong size on ActorComponent_IsBeingDestroyed"); \ +static_assert(offsetof(ActorComponent_IsBeingDestroyed, ReturnValue) == 0x000000, "Member 'ActorComponent_IsBeingDestroyed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActorComponent_IsComponentTickEnabled \ +static_assert(alignof(ActorComponent_IsComponentTickEnabled) == 0x000001, "Wrong alignment on ActorComponent_IsComponentTickEnabled"); \ +static_assert(sizeof(ActorComponent_IsComponentTickEnabled) == 0x000001, "Wrong size on ActorComponent_IsComponentTickEnabled"); \ +static_assert(offsetof(ActorComponent_IsComponentTickEnabled, ReturnValue) == 0x000000, "Member 'ActorComponent_IsComponentTickEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorComponent \ +static_assert(alignof(UActorComponent) == 0x000008, "Wrong alignment on UActorComponent"); \ +static_assert(sizeof(UActorComponent) == 0x0000A0, "Wrong size on UActorComponent"); \ +static_assert(offsetof(UActorComponent, PrimaryComponentTick) == 0x000030, "Member 'UActorComponent::PrimaryComponentTick' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, ComponentTags) == 0x000060, "Member 'UActorComponent::ComponentTags' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, AssetUserData) == 0x000070, "Member 'UActorComponent::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, UCSSerializationIndex) == 0x000084, "Member 'UActorComponent::UCSSerializationIndex' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, CreationMethod) == 0x00008D, "Member 'UActorComponent::CreationMethod' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, OnComponentActivated) == 0x00008E, "Member 'UActorComponent::OnComponentActivated' has a wrong offset!"); \ +static_assert(offsetof(UActorComponent, OnComponentDeactivated) == 0x00008F, "Member 'UActorComponent::OnComponentDeactivated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_DetachFromParent \ +static_assert(alignof(SceneComponent_DetachFromParent) == 0x000001, "Wrong alignment on SceneComponent_DetachFromParent"); \ +static_assert(sizeof(SceneComponent_DetachFromParent) == 0x000002, "Wrong size on SceneComponent_DetachFromParent"); \ +static_assert(offsetof(SceneComponent_DetachFromParent, bMaintainWorldPosition) == 0x000000, "Member 'SceneComponent_DetachFromParent::bMaintainWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_DetachFromParent, bCallModify) == 0x000001, "Member 'SceneComponent_DetachFromParent::bCallModify' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddLocalOffset \ +static_assert(alignof(SceneComponent_K2_AddLocalOffset) == 0x000008, "Wrong alignment on SceneComponent_K2_AddLocalOffset"); \ +static_assert(sizeof(SceneComponent_K2_AddLocalOffset) == 0x000110, "Wrong size on SceneComponent_K2_AddLocalOffset"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalOffset, DeltaLocation) == 0x000000, "Member 'SceneComponent_K2_AddLocalOffset::DeltaLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalOffset, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddLocalOffset::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalOffset, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddLocalOffset::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalOffset, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddLocalOffset::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddLocalRotation \ +static_assert(alignof(SceneComponent_K2_AddLocalRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_AddLocalRotation"); \ +static_assert(sizeof(SceneComponent_K2_AddLocalRotation) == 0x000110, "Wrong size on SceneComponent_K2_AddLocalRotation"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalRotation, DeltaRotation) == 0x000000, "Member 'SceneComponent_K2_AddLocalRotation::DeltaRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalRotation, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddLocalRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalRotation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddLocalRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalRotation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddLocalRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddLocalTransform \ +static_assert(alignof(SceneComponent_K2_AddLocalTransform) == 0x000010, "Wrong alignment on SceneComponent_K2_AddLocalTransform"); \ +static_assert(sizeof(SceneComponent_K2_AddLocalTransform) == 0x000160, "Wrong size on SceneComponent_K2_AddLocalTransform"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalTransform, DeltaTransform) == 0x000000, "Member 'SceneComponent_K2_AddLocalTransform::DeltaTransform' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalTransform, bSweep) == 0x000060, "Member 'SceneComponent_K2_AddLocalTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalTransform, SweepHitResult) == 0x000068, "Member 'SceneComponent_K2_AddLocalTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddLocalTransform, bTeleport) == 0x000150, "Member 'SceneComponent_K2_AddLocalTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddRelativeLocation \ +static_assert(alignof(SceneComponent_K2_AddRelativeLocation) == 0x000008, "Wrong alignment on SceneComponent_K2_AddRelativeLocation"); \ +static_assert(sizeof(SceneComponent_K2_AddRelativeLocation) == 0x000110, "Wrong size on SceneComponent_K2_AddRelativeLocation"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeLocation, DeltaLocation) == 0x000000, "Member 'SceneComponent_K2_AddRelativeLocation::DeltaLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeLocation, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddRelativeLocation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeLocation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddRelativeLocation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeLocation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddRelativeLocation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddRelativeRotation \ +static_assert(alignof(SceneComponent_K2_AddRelativeRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_AddRelativeRotation"); \ +static_assert(sizeof(SceneComponent_K2_AddRelativeRotation) == 0x000110, "Wrong size on SceneComponent_K2_AddRelativeRotation"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeRotation, DeltaRotation) == 0x000000, "Member 'SceneComponent_K2_AddRelativeRotation::DeltaRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeRotation, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddRelativeRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeRotation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddRelativeRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddRelativeRotation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddRelativeRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddWorldOffset \ +static_assert(alignof(SceneComponent_K2_AddWorldOffset) == 0x000008, "Wrong alignment on SceneComponent_K2_AddWorldOffset"); \ +static_assert(sizeof(SceneComponent_K2_AddWorldOffset) == 0x000110, "Wrong size on SceneComponent_K2_AddWorldOffset"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldOffset, DeltaLocation) == 0x000000, "Member 'SceneComponent_K2_AddWorldOffset::DeltaLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldOffset, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddWorldOffset::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldOffset, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddWorldOffset::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldOffset, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddWorldOffset::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddWorldRotation \ +static_assert(alignof(SceneComponent_K2_AddWorldRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_AddWorldRotation"); \ +static_assert(sizeof(SceneComponent_K2_AddWorldRotation) == 0x000110, "Wrong size on SceneComponent_K2_AddWorldRotation"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldRotation, DeltaRotation) == 0x000000, "Member 'SceneComponent_K2_AddWorldRotation::DeltaRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldRotation, bSweep) == 0x000018, "Member 'SceneComponent_K2_AddWorldRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldRotation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_AddWorldRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldRotation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_AddWorldRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddWorldTransform \ +static_assert(alignof(SceneComponent_K2_AddWorldTransform) == 0x000010, "Wrong alignment on SceneComponent_K2_AddWorldTransform"); \ +static_assert(sizeof(SceneComponent_K2_AddWorldTransform) == 0x000160, "Wrong size on SceneComponent_K2_AddWorldTransform"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransform, DeltaTransform) == 0x000000, "Member 'SceneComponent_K2_AddWorldTransform::DeltaTransform' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransform, bSweep) == 0x000060, "Member 'SceneComponent_K2_AddWorldTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransform, SweepHitResult) == 0x000068, "Member 'SceneComponent_K2_AddWorldTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransform, bTeleport) == 0x000150, "Member 'SceneComponent_K2_AddWorldTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AddWorldTransformKeepScale \ +static_assert(alignof(SceneComponent_K2_AddWorldTransformKeepScale) == 0x000010, "Wrong alignment on SceneComponent_K2_AddWorldTransformKeepScale"); \ +static_assert(sizeof(SceneComponent_K2_AddWorldTransformKeepScale) == 0x000160, "Wrong size on SceneComponent_K2_AddWorldTransformKeepScale"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransformKeepScale, DeltaTransform) == 0x000000, "Member 'SceneComponent_K2_AddWorldTransformKeepScale::DeltaTransform' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransformKeepScale, bSweep) == 0x000060, "Member 'SceneComponent_K2_AddWorldTransformKeepScale::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransformKeepScale, SweepHitResult) == 0x000068, "Member 'SceneComponent_K2_AddWorldTransformKeepScale::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AddWorldTransformKeepScale, bTeleport) == 0x000150, "Member 'SceneComponent_K2_AddWorldTransformKeepScale::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AttachTo \ +static_assert(alignof(SceneComponent_K2_AttachTo) == 0x000008, "Wrong alignment on SceneComponent_K2_AttachTo"); \ +static_assert(sizeof(SceneComponent_K2_AttachTo) == 0x000018, "Wrong size on SceneComponent_K2_AttachTo"); \ +static_assert(offsetof(SceneComponent_K2_AttachTo, InParent) == 0x000000, "Member 'SceneComponent_K2_AttachTo::InParent' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachTo, InSocketName) == 0x000008, "Member 'SceneComponent_K2_AttachTo::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachTo, AttachType) == 0x000010, "Member 'SceneComponent_K2_AttachTo::AttachType' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachTo, bWeldSimulatedBodies) == 0x000011, "Member 'SceneComponent_K2_AttachTo::bWeldSimulatedBodies' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachTo, ReturnValue) == 0x000012, "Member 'SceneComponent_K2_AttachTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_AttachToComponent \ +static_assert(alignof(SceneComponent_K2_AttachToComponent) == 0x000008, "Wrong alignment on SceneComponent_K2_AttachToComponent"); \ +static_assert(sizeof(SceneComponent_K2_AttachToComponent) == 0x000018, "Wrong size on SceneComponent_K2_AttachToComponent"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, Parent) == 0x000000, "Member 'SceneComponent_K2_AttachToComponent::Parent' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, SocketName) == 0x000008, "Member 'SceneComponent_K2_AttachToComponent::SocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, LocationRule) == 0x000010, "Member 'SceneComponent_K2_AttachToComponent::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, RotationRule) == 0x000011, "Member 'SceneComponent_K2_AttachToComponent::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, ScaleRule) == 0x000012, "Member 'SceneComponent_K2_AttachToComponent::ScaleRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, bWeldSimulatedBodies) == 0x000013, "Member 'SceneComponent_K2_AttachToComponent::bWeldSimulatedBodies' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_AttachToComponent, ReturnValue) == 0x000014, "Member 'SceneComponent_K2_AttachToComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_DetachFromComponent \ +static_assert(alignof(SceneComponent_K2_DetachFromComponent) == 0x000001, "Wrong alignment on SceneComponent_K2_DetachFromComponent"); \ +static_assert(sizeof(SceneComponent_K2_DetachFromComponent) == 0x000004, "Wrong size on SceneComponent_K2_DetachFromComponent"); \ +static_assert(offsetof(SceneComponent_K2_DetachFromComponent, LocationRule) == 0x000000, "Member 'SceneComponent_K2_DetachFromComponent::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_DetachFromComponent, RotationRule) == 0x000001, "Member 'SceneComponent_K2_DetachFromComponent::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_DetachFromComponent, ScaleRule) == 0x000002, "Member 'SceneComponent_K2_DetachFromComponent::ScaleRule' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_DetachFromComponent, bCallModify) == 0x000003, "Member 'SceneComponent_K2_DetachFromComponent::bCallModify' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetRelativeLocation \ +static_assert(alignof(SceneComponent_K2_SetRelativeLocation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetRelativeLocation"); \ +static_assert(sizeof(SceneComponent_K2_SetRelativeLocation) == 0x000110, "Wrong size on SceneComponent_K2_SetRelativeLocation"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocation, NewLocation) == 0x000000, "Member 'SceneComponent_K2_SetRelativeLocation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocation, bSweep) == 0x000018, "Member 'SceneComponent_K2_SetRelativeLocation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_SetRelativeLocation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_SetRelativeLocation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetRelativeLocationAndRotation \ +static_assert(alignof(SceneComponent_K2_SetRelativeLocationAndRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetRelativeLocationAndRotation"); \ +static_assert(sizeof(SceneComponent_K2_SetRelativeLocationAndRotation) == 0x000128, "Wrong size on SceneComponent_K2_SetRelativeLocationAndRotation"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocationAndRotation, NewLocation) == 0x000000, "Member 'SceneComponent_K2_SetRelativeLocationAndRotation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocationAndRotation, NewRotation) == 0x000018, "Member 'SceneComponent_K2_SetRelativeLocationAndRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocationAndRotation, bSweep) == 0x000030, "Member 'SceneComponent_K2_SetRelativeLocationAndRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocationAndRotation, SweepHitResult) == 0x000038, "Member 'SceneComponent_K2_SetRelativeLocationAndRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeLocationAndRotation, bTeleport) == 0x000120, "Member 'SceneComponent_K2_SetRelativeLocationAndRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetRelativeRotation \ +static_assert(alignof(SceneComponent_K2_SetRelativeRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetRelativeRotation"); \ +static_assert(sizeof(SceneComponent_K2_SetRelativeRotation) == 0x000110, "Wrong size on SceneComponent_K2_SetRelativeRotation"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeRotation, NewRotation) == 0x000000, "Member 'SceneComponent_K2_SetRelativeRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeRotation, bSweep) == 0x000018, "Member 'SceneComponent_K2_SetRelativeRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeRotation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_SetRelativeRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeRotation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_SetRelativeRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetRelativeTransform \ +static_assert(alignof(SceneComponent_K2_SetRelativeTransform) == 0x000010, "Wrong alignment on SceneComponent_K2_SetRelativeTransform"); \ +static_assert(sizeof(SceneComponent_K2_SetRelativeTransform) == 0x000160, "Wrong size on SceneComponent_K2_SetRelativeTransform"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeTransform, NewTransform) == 0x000000, "Member 'SceneComponent_K2_SetRelativeTransform::NewTransform' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeTransform, bSweep) == 0x000060, "Member 'SceneComponent_K2_SetRelativeTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeTransform, SweepHitResult) == 0x000068, "Member 'SceneComponent_K2_SetRelativeTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetRelativeTransform, bTeleport) == 0x000150, "Member 'SceneComponent_K2_SetRelativeTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetWorldLocation \ +static_assert(alignof(SceneComponent_K2_SetWorldLocation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetWorldLocation"); \ +static_assert(sizeof(SceneComponent_K2_SetWorldLocation) == 0x000110, "Wrong size on SceneComponent_K2_SetWorldLocation"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocation, NewLocation) == 0x000000, "Member 'SceneComponent_K2_SetWorldLocation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocation, bSweep) == 0x000018, "Member 'SceneComponent_K2_SetWorldLocation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_SetWorldLocation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_SetWorldLocation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetWorldLocationAndRotation \ +static_assert(alignof(SceneComponent_K2_SetWorldLocationAndRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetWorldLocationAndRotation"); \ +static_assert(sizeof(SceneComponent_K2_SetWorldLocationAndRotation) == 0x000128, "Wrong size on SceneComponent_K2_SetWorldLocationAndRotation"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocationAndRotation, NewLocation) == 0x000000, "Member 'SceneComponent_K2_SetWorldLocationAndRotation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocationAndRotation, NewRotation) == 0x000018, "Member 'SceneComponent_K2_SetWorldLocationAndRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocationAndRotation, bSweep) == 0x000030, "Member 'SceneComponent_K2_SetWorldLocationAndRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocationAndRotation, SweepHitResult) == 0x000038, "Member 'SceneComponent_K2_SetWorldLocationAndRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldLocationAndRotation, bTeleport) == 0x000120, "Member 'SceneComponent_K2_SetWorldLocationAndRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetWorldRotation \ +static_assert(alignof(SceneComponent_K2_SetWorldRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_SetWorldRotation"); \ +static_assert(sizeof(SceneComponent_K2_SetWorldRotation) == 0x000110, "Wrong size on SceneComponent_K2_SetWorldRotation"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldRotation, NewRotation) == 0x000000, "Member 'SceneComponent_K2_SetWorldRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldRotation, bSweep) == 0x000018, "Member 'SceneComponent_K2_SetWorldRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldRotation, SweepHitResult) == 0x000020, "Member 'SceneComponent_K2_SetWorldRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldRotation, bTeleport) == 0x000108, "Member 'SceneComponent_K2_SetWorldRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_SetWorldTransform \ +static_assert(alignof(SceneComponent_K2_SetWorldTransform) == 0x000010, "Wrong alignment on SceneComponent_K2_SetWorldTransform"); \ +static_assert(sizeof(SceneComponent_K2_SetWorldTransform) == 0x000160, "Wrong size on SceneComponent_K2_SetWorldTransform"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldTransform, NewTransform) == 0x000000, "Member 'SceneComponent_K2_SetWorldTransform::NewTransform' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldTransform, bSweep) == 0x000060, "Member 'SceneComponent_K2_SetWorldTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldTransform, SweepHitResult) == 0x000068, "Member 'SceneComponent_K2_SetWorldTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_K2_SetWorldTransform, bTeleport) == 0x000150, "Member 'SceneComponent_K2_SetWorldTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_OnRep_Visibility \ +static_assert(alignof(SceneComponent_OnRep_Visibility) == 0x000001, "Wrong alignment on SceneComponent_OnRep_Visibility"); \ +static_assert(sizeof(SceneComponent_OnRep_Visibility) == 0x000001, "Wrong size on SceneComponent_OnRep_Visibility"); \ +static_assert(offsetof(SceneComponent_OnRep_Visibility, OldValue) == 0x000000, "Member 'SceneComponent_OnRep_Visibility::OldValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetAbsolute \ +static_assert(alignof(SceneComponent_SetAbsolute) == 0x000001, "Wrong alignment on SceneComponent_SetAbsolute"); \ +static_assert(sizeof(SceneComponent_SetAbsolute) == 0x000003, "Wrong size on SceneComponent_SetAbsolute"); \ +static_assert(offsetof(SceneComponent_SetAbsolute, bNewAbsoluteLocation) == 0x000000, "Member 'SceneComponent_SetAbsolute::bNewAbsoluteLocation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_SetAbsolute, bNewAbsoluteRotation) == 0x000001, "Member 'SceneComponent_SetAbsolute::bNewAbsoluteRotation' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_SetAbsolute, bNewAbsoluteScale) == 0x000002, "Member 'SceneComponent_SetAbsolute::bNewAbsoluteScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetHiddenInGame \ +static_assert(alignof(SceneComponent_SetHiddenInGame) == 0x000001, "Wrong alignment on SceneComponent_SetHiddenInGame"); \ +static_assert(sizeof(SceneComponent_SetHiddenInGame) == 0x000002, "Wrong size on SceneComponent_SetHiddenInGame"); \ +static_assert(offsetof(SceneComponent_SetHiddenInGame, NewHidden) == 0x000000, "Member 'SceneComponent_SetHiddenInGame::NewHidden' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_SetHiddenInGame, bPropagateToChildren) == 0x000001, "Member 'SceneComponent_SetHiddenInGame::bPropagateToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetMobility \ +static_assert(alignof(SceneComponent_SetMobility) == 0x000001, "Wrong alignment on SceneComponent_SetMobility"); \ +static_assert(sizeof(SceneComponent_SetMobility) == 0x000001, "Wrong size on SceneComponent_SetMobility"); \ +static_assert(offsetof(SceneComponent_SetMobility, NewMobility) == 0x000000, "Member 'SceneComponent_SetMobility::NewMobility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetRelativeScale3D \ +static_assert(alignof(SceneComponent_SetRelativeScale3D) == 0x000008, "Wrong alignment on SceneComponent_SetRelativeScale3D"); \ +static_assert(sizeof(SceneComponent_SetRelativeScale3D) == 0x000018, "Wrong size on SceneComponent_SetRelativeScale3D"); \ +static_assert(offsetof(SceneComponent_SetRelativeScale3D, NewScale3D) == 0x000000, "Member 'SceneComponent_SetRelativeScale3D::NewScale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetShouldUpdatePhysicsVolume \ +static_assert(alignof(SceneComponent_SetShouldUpdatePhysicsVolume) == 0x000001, "Wrong alignment on SceneComponent_SetShouldUpdatePhysicsVolume"); \ +static_assert(sizeof(SceneComponent_SetShouldUpdatePhysicsVolume) == 0x000001, "Wrong size on SceneComponent_SetShouldUpdatePhysicsVolume"); \ +static_assert(offsetof(SceneComponent_SetShouldUpdatePhysicsVolume, bInShouldUpdatePhysicsVolume) == 0x000000, "Member 'SceneComponent_SetShouldUpdatePhysicsVolume::bInShouldUpdatePhysicsVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetVisibility \ +static_assert(alignof(SceneComponent_SetVisibility) == 0x000001, "Wrong alignment on SceneComponent_SetVisibility"); \ +static_assert(sizeof(SceneComponent_SetVisibility) == 0x000002, "Wrong size on SceneComponent_SetVisibility"); \ +static_assert(offsetof(SceneComponent_SetVisibility, bNewVisibility) == 0x000000, "Member 'SceneComponent_SetVisibility::bNewVisibility' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_SetVisibility, bPropagateToChildren) == 0x000001, "Member 'SceneComponent_SetVisibility::bPropagateToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_SetWorldScale3D \ +static_assert(alignof(SceneComponent_SetWorldScale3D) == 0x000008, "Wrong alignment on SceneComponent_SetWorldScale3D"); \ +static_assert(sizeof(SceneComponent_SetWorldScale3D) == 0x000018, "Wrong size on SceneComponent_SetWorldScale3D"); \ +static_assert(offsetof(SceneComponent_SetWorldScale3D, NewScale) == 0x000000, "Member 'SceneComponent_SetWorldScale3D::NewScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_ToggleVisibility \ +static_assert(alignof(SceneComponent_ToggleVisibility) == 0x000001, "Wrong alignment on SceneComponent_ToggleVisibility"); \ +static_assert(sizeof(SceneComponent_ToggleVisibility) == 0x000001, "Wrong size on SceneComponent_ToggleVisibility"); \ +static_assert(offsetof(SceneComponent_ToggleVisibility, bPropagateToChildren) == 0x000000, "Member 'SceneComponent_ToggleVisibility::bPropagateToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_DoesSocketExist \ +static_assert(alignof(SceneComponent_DoesSocketExist) == 0x000004, "Wrong alignment on SceneComponent_DoesSocketExist"); \ +static_assert(sizeof(SceneComponent_DoesSocketExist) == 0x00000C, "Wrong size on SceneComponent_DoesSocketExist"); \ +static_assert(offsetof(SceneComponent_DoesSocketExist, InSocketName) == 0x000000, "Member 'SceneComponent_DoesSocketExist::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_DoesSocketExist, ReturnValue) == 0x000008, "Member 'SceneComponent_DoesSocketExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetAllSocketNames \ +static_assert(alignof(SceneComponent_GetAllSocketNames) == 0x000008, "Wrong alignment on SceneComponent_GetAllSocketNames"); \ +static_assert(sizeof(SceneComponent_GetAllSocketNames) == 0x000010, "Wrong size on SceneComponent_GetAllSocketNames"); \ +static_assert(offsetof(SceneComponent_GetAllSocketNames, ReturnValue) == 0x000000, "Member 'SceneComponent_GetAllSocketNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetAttachParent \ +static_assert(alignof(SceneComponent_GetAttachParent) == 0x000008, "Wrong alignment on SceneComponent_GetAttachParent"); \ +static_assert(sizeof(SceneComponent_GetAttachParent) == 0x000008, "Wrong size on SceneComponent_GetAttachParent"); \ +static_assert(offsetof(SceneComponent_GetAttachParent, ReturnValue) == 0x000000, "Member 'SceneComponent_GetAttachParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetAttachSocketName \ +static_assert(alignof(SceneComponent_GetAttachSocketName) == 0x000004, "Wrong alignment on SceneComponent_GetAttachSocketName"); \ +static_assert(sizeof(SceneComponent_GetAttachSocketName) == 0x000008, "Wrong size on SceneComponent_GetAttachSocketName"); \ +static_assert(offsetof(SceneComponent_GetAttachSocketName, ReturnValue) == 0x000000, "Member 'SceneComponent_GetAttachSocketName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetChildComponent \ +static_assert(alignof(SceneComponent_GetChildComponent) == 0x000008, "Wrong alignment on SceneComponent_GetChildComponent"); \ +static_assert(sizeof(SceneComponent_GetChildComponent) == 0x000010, "Wrong size on SceneComponent_GetChildComponent"); \ +static_assert(offsetof(SceneComponent_GetChildComponent, ChildIndex) == 0x000000, "Member 'SceneComponent_GetChildComponent::ChildIndex' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetChildComponent, ReturnValue) == 0x000008, "Member 'SceneComponent_GetChildComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetChildrenComponents \ +static_assert(alignof(SceneComponent_GetChildrenComponents) == 0x000008, "Wrong alignment on SceneComponent_GetChildrenComponents"); \ +static_assert(sizeof(SceneComponent_GetChildrenComponents) == 0x000018, "Wrong size on SceneComponent_GetChildrenComponents"); \ +static_assert(offsetof(SceneComponent_GetChildrenComponents, bIncludeAllDescendants) == 0x000000, "Member 'SceneComponent_GetChildrenComponents::bIncludeAllDescendants' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetChildrenComponents, Children) == 0x000008, "Member 'SceneComponent_GetChildrenComponents::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetComponentVelocity \ +static_assert(alignof(SceneComponent_GetComponentVelocity) == 0x000008, "Wrong alignment on SceneComponent_GetComponentVelocity"); \ +static_assert(sizeof(SceneComponent_GetComponentVelocity) == 0x000018, "Wrong size on SceneComponent_GetComponentVelocity"); \ +static_assert(offsetof(SceneComponent_GetComponentVelocity, ReturnValue) == 0x000000, "Member 'SceneComponent_GetComponentVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetForwardVector \ +static_assert(alignof(SceneComponent_GetForwardVector) == 0x000008, "Wrong alignment on SceneComponent_GetForwardVector"); \ +static_assert(sizeof(SceneComponent_GetForwardVector) == 0x000018, "Wrong size on SceneComponent_GetForwardVector"); \ +static_assert(offsetof(SceneComponent_GetForwardVector, ReturnValue) == 0x000000, "Member 'SceneComponent_GetForwardVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetNumChildrenComponents \ +static_assert(alignof(SceneComponent_GetNumChildrenComponents) == 0x000004, "Wrong alignment on SceneComponent_GetNumChildrenComponents"); \ +static_assert(sizeof(SceneComponent_GetNumChildrenComponents) == 0x000004, "Wrong size on SceneComponent_GetNumChildrenComponents"); \ +static_assert(offsetof(SceneComponent_GetNumChildrenComponents, ReturnValue) == 0x000000, "Member 'SceneComponent_GetNumChildrenComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetParentComponents \ +static_assert(alignof(SceneComponent_GetParentComponents) == 0x000008, "Wrong alignment on SceneComponent_GetParentComponents"); \ +static_assert(sizeof(SceneComponent_GetParentComponents) == 0x000010, "Wrong size on SceneComponent_GetParentComponents"); \ +static_assert(offsetof(SceneComponent_GetParentComponents, Parents) == 0x000000, "Member 'SceneComponent_GetParentComponents::Parents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetPhysicsVolume \ +static_assert(alignof(SceneComponent_GetPhysicsVolume) == 0x000008, "Wrong alignment on SceneComponent_GetPhysicsVolume"); \ +static_assert(sizeof(SceneComponent_GetPhysicsVolume) == 0x000008, "Wrong size on SceneComponent_GetPhysicsVolume"); \ +static_assert(offsetof(SceneComponent_GetPhysicsVolume, ReturnValue) == 0x000000, "Member 'SceneComponent_GetPhysicsVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetRelativeTransform \ +static_assert(alignof(SceneComponent_GetRelativeTransform) == 0x000010, "Wrong alignment on SceneComponent_GetRelativeTransform"); \ +static_assert(sizeof(SceneComponent_GetRelativeTransform) == 0x000060, "Wrong size on SceneComponent_GetRelativeTransform"); \ +static_assert(offsetof(SceneComponent_GetRelativeTransform, ReturnValue) == 0x000000, "Member 'SceneComponent_GetRelativeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetRightVector \ +static_assert(alignof(SceneComponent_GetRightVector) == 0x000008, "Wrong alignment on SceneComponent_GetRightVector"); \ +static_assert(sizeof(SceneComponent_GetRightVector) == 0x000018, "Wrong size on SceneComponent_GetRightVector"); \ +static_assert(offsetof(SceneComponent_GetRightVector, ReturnValue) == 0x000000, "Member 'SceneComponent_GetRightVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetShouldUpdatePhysicsVolume \ +static_assert(alignof(SceneComponent_GetShouldUpdatePhysicsVolume) == 0x000001, "Wrong alignment on SceneComponent_GetShouldUpdatePhysicsVolume"); \ +static_assert(sizeof(SceneComponent_GetShouldUpdatePhysicsVolume) == 0x000001, "Wrong size on SceneComponent_GetShouldUpdatePhysicsVolume"); \ +static_assert(offsetof(SceneComponent_GetShouldUpdatePhysicsVolume, ReturnValue) == 0x000000, "Member 'SceneComponent_GetShouldUpdatePhysicsVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetSocketLocation \ +static_assert(alignof(SceneComponent_GetSocketLocation) == 0x000008, "Wrong alignment on SceneComponent_GetSocketLocation"); \ +static_assert(sizeof(SceneComponent_GetSocketLocation) == 0x000020, "Wrong size on SceneComponent_GetSocketLocation"); \ +static_assert(offsetof(SceneComponent_GetSocketLocation, InSocketName) == 0x000000, "Member 'SceneComponent_GetSocketLocation::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetSocketLocation, ReturnValue) == 0x000008, "Member 'SceneComponent_GetSocketLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetSocketQuaternion \ +static_assert(alignof(SceneComponent_GetSocketQuaternion) == 0x000010, "Wrong alignment on SceneComponent_GetSocketQuaternion"); \ +static_assert(sizeof(SceneComponent_GetSocketQuaternion) == 0x000030, "Wrong size on SceneComponent_GetSocketQuaternion"); \ +static_assert(offsetof(SceneComponent_GetSocketQuaternion, InSocketName) == 0x000000, "Member 'SceneComponent_GetSocketQuaternion::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetSocketQuaternion, ReturnValue) == 0x000010, "Member 'SceneComponent_GetSocketQuaternion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetSocketRotation \ +static_assert(alignof(SceneComponent_GetSocketRotation) == 0x000008, "Wrong alignment on SceneComponent_GetSocketRotation"); \ +static_assert(sizeof(SceneComponent_GetSocketRotation) == 0x000020, "Wrong size on SceneComponent_GetSocketRotation"); \ +static_assert(offsetof(SceneComponent_GetSocketRotation, InSocketName) == 0x000000, "Member 'SceneComponent_GetSocketRotation::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetSocketRotation, ReturnValue) == 0x000008, "Member 'SceneComponent_GetSocketRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetSocketTransform \ +static_assert(alignof(SceneComponent_GetSocketTransform) == 0x000010, "Wrong alignment on SceneComponent_GetSocketTransform"); \ +static_assert(sizeof(SceneComponent_GetSocketTransform) == 0x000070, "Wrong size on SceneComponent_GetSocketTransform"); \ +static_assert(offsetof(SceneComponent_GetSocketTransform, InSocketName) == 0x000000, "Member 'SceneComponent_GetSocketTransform::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetSocketTransform, TransformSpace) == 0x000008, "Member 'SceneComponent_GetSocketTransform::TransformSpace' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_GetSocketTransform, ReturnValue) == 0x000010, "Member 'SceneComponent_GetSocketTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_GetUpVector \ +static_assert(alignof(SceneComponent_GetUpVector) == 0x000008, "Wrong alignment on SceneComponent_GetUpVector"); \ +static_assert(sizeof(SceneComponent_GetUpVector) == 0x000018, "Wrong size on SceneComponent_GetUpVector"); \ +static_assert(offsetof(SceneComponent_GetUpVector, ReturnValue) == 0x000000, "Member 'SceneComponent_GetUpVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_IsAnySimulatingPhysics \ +static_assert(alignof(SceneComponent_IsAnySimulatingPhysics) == 0x000001, "Wrong alignment on SceneComponent_IsAnySimulatingPhysics"); \ +static_assert(sizeof(SceneComponent_IsAnySimulatingPhysics) == 0x000001, "Wrong size on SceneComponent_IsAnySimulatingPhysics"); \ +static_assert(offsetof(SceneComponent_IsAnySimulatingPhysics, ReturnValue) == 0x000000, "Member 'SceneComponent_IsAnySimulatingPhysics::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_IsSimulatingPhysics \ +static_assert(alignof(SceneComponent_IsSimulatingPhysics) == 0x000004, "Wrong alignment on SceneComponent_IsSimulatingPhysics"); \ +static_assert(sizeof(SceneComponent_IsSimulatingPhysics) == 0x00000C, "Wrong size on SceneComponent_IsSimulatingPhysics"); \ +static_assert(offsetof(SceneComponent_IsSimulatingPhysics, BoneName) == 0x000000, "Member 'SceneComponent_IsSimulatingPhysics::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SceneComponent_IsSimulatingPhysics, ReturnValue) == 0x000008, "Member 'SceneComponent_IsSimulatingPhysics::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_IsVisible \ +static_assert(alignof(SceneComponent_IsVisible) == 0x000001, "Wrong alignment on SceneComponent_IsVisible"); \ +static_assert(sizeof(SceneComponent_IsVisible) == 0x000001, "Wrong size on SceneComponent_IsVisible"); \ +static_assert(offsetof(SceneComponent_IsVisible, ReturnValue) == 0x000000, "Member 'SceneComponent_IsVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_GetComponentLocation \ +static_assert(alignof(SceneComponent_K2_GetComponentLocation) == 0x000008, "Wrong alignment on SceneComponent_K2_GetComponentLocation"); \ +static_assert(sizeof(SceneComponent_K2_GetComponentLocation) == 0x000018, "Wrong size on SceneComponent_K2_GetComponentLocation"); \ +static_assert(offsetof(SceneComponent_K2_GetComponentLocation, ReturnValue) == 0x000000, "Member 'SceneComponent_K2_GetComponentLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_GetComponentRotation \ +static_assert(alignof(SceneComponent_K2_GetComponentRotation) == 0x000008, "Wrong alignment on SceneComponent_K2_GetComponentRotation"); \ +static_assert(sizeof(SceneComponent_K2_GetComponentRotation) == 0x000018, "Wrong size on SceneComponent_K2_GetComponentRotation"); \ +static_assert(offsetof(SceneComponent_K2_GetComponentRotation, ReturnValue) == 0x000000, "Member 'SceneComponent_K2_GetComponentRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_GetComponentScale \ +static_assert(alignof(SceneComponent_K2_GetComponentScale) == 0x000008, "Wrong alignment on SceneComponent_K2_GetComponentScale"); \ +static_assert(sizeof(SceneComponent_K2_GetComponentScale) == 0x000018, "Wrong size on SceneComponent_K2_GetComponentScale"); \ +static_assert(offsetof(SceneComponent_K2_GetComponentScale, ReturnValue) == 0x000000, "Member 'SceneComponent_K2_GetComponentScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneComponent_K2_GetComponentToWorld \ +static_assert(alignof(SceneComponent_K2_GetComponentToWorld) == 0x000010, "Wrong alignment on SceneComponent_K2_GetComponentToWorld"); \ +static_assert(sizeof(SceneComponent_K2_GetComponentToWorld) == 0x000060, "Wrong size on SceneComponent_K2_GetComponentToWorld"); \ +static_assert(offsetof(SceneComponent_K2_GetComponentToWorld, ReturnValue) == 0x000000, "Member 'SceneComponent_K2_GetComponentToWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USceneComponent \ +static_assert(alignof(USceneComponent) == 0x000010, "Wrong alignment on USceneComponent"); \ +static_assert(sizeof(USceneComponent) == 0x0002A0, "Wrong size on USceneComponent"); \ +static_assert(offsetof(USceneComponent, PhysicsVolume) == 0x0000A8, "Member 'USceneComponent::PhysicsVolume' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, AttachParent) == 0x0000B0, "Member 'USceneComponent::AttachParent' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, AttachSocketName) == 0x0000B8, "Member 'USceneComponent::AttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, AttachChildren) == 0x0000C0, "Member 'USceneComponent::AttachChildren' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, ClientAttachedChildren) == 0x0000D0, "Member 'USceneComponent::ClientAttachedChildren' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, RelativeLocation) == 0x000128, "Member 'USceneComponent::RelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, RelativeRotation) == 0x000140, "Member 'USceneComponent::RelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, RelativeScale3D) == 0x000158, "Member 'USceneComponent::RelativeScale3D' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, ComponentVelocity) == 0x000170, "Member 'USceneComponent::ComponentVelocity' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, Mobility) == 0x00018B, "Member 'USceneComponent::Mobility' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, DetailMode) == 0x00018C, "Member 'USceneComponent::DetailMode' has a wrong offset!"); \ +static_assert(offsetof(USceneComponent, PhysicsVolumeChangedDelegate) == 0x00018D, "Member 'USceneComponent::PhysicsVolumeChangedDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReflectionCaptureComponent \ +static_assert(alignof(UReflectionCaptureComponent) == 0x000010, "Wrong alignment on UReflectionCaptureComponent"); \ +static_assert(sizeof(UReflectionCaptureComponent) == 0x000310, "Wrong size on UReflectionCaptureComponent"); \ +static_assert(offsetof(UReflectionCaptureComponent, CaptureOffsetComponent) == 0x0002A0, "Member 'UReflectionCaptureComponent::CaptureOffsetComponent' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, ReflectionSourceType) == 0x0002A8, "Member 'UReflectionCaptureComponent::ReflectionSourceType' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, Cubemap) == 0x0002B0, "Member 'UReflectionCaptureComponent::Cubemap' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, SourceCubemapAngle) == 0x0002B8, "Member 'UReflectionCaptureComponent::SourceCubemapAngle' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, Brightness) == 0x0002BC, "Member 'UReflectionCaptureComponent::Brightness' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, CaptureOffset) == 0x0002C0, "Member 'UReflectionCaptureComponent::CaptureOffset' has a wrong offset!"); \ +static_assert(offsetof(UReflectionCaptureComponent, MapBuildDataId) == 0x0002D8, "Member 'UReflectionCaptureComponent::MapBuildDataId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpression \ +static_assert(alignof(UMaterialExpression) == 0x000008, "Wrong alignment on UMaterialExpression"); \ +static_assert(sizeof(UMaterialExpression) == 0x0000B0, "Wrong size on UMaterialExpression"); \ +static_assert(offsetof(UMaterialExpression, MaterialExpressionEditorX) == 0x000028, "Member 'UMaterialExpression::MaterialExpressionEditorX' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, MaterialExpressionEditorY) == 0x00002C, "Member 'UMaterialExpression::MaterialExpressionEditorY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, GraphNode) == 0x000030, "Member 'UMaterialExpression::GraphNode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, SubgraphExpression) == 0x000038, "Member 'UMaterialExpression::SubgraphExpression' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, MaterialExpressionGuid) == 0x000050, "Member 'UMaterialExpression::MaterialExpressionGuid' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, Material) == 0x000060, "Member 'UMaterialExpression::Material' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, Function) == 0x000068, "Member 'UMaterialExpression::Function' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, Desc) == 0x000070, "Member 'UMaterialExpression::Desc' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, MenuCategories) == 0x000090, "Member 'UMaterialExpression::MenuCategories' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpression, Outputs) == 0x0000A0, "Member 'UMaterialExpression::Outputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionExponential2 \ +static_assert(alignof(UMaterialExpressionExponential2) == 0x000008, "Wrong alignment on UMaterialExpressionExponential2"); \ +static_assert(sizeof(UMaterialExpressionExponential2) == 0x0000D8, "Wrong size on UMaterialExpressionExponential2"); \ +static_assert(offsetof(UMaterialExpressionExponential2, Input) == 0x0000B0, "Member 'UMaterialExpressionExponential2::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundSubmixBase \ +static_assert(alignof(USoundSubmixBase) == 0x000008, "Wrong alignment on USoundSubmixBase"); \ +static_assert(sizeof(USoundSubmixBase) == 0x000040, "Wrong size on USoundSubmixBase"); \ +static_assert(offsetof(USoundSubmixBase, bAutoDisable) == 0x000028, "Member 'USoundSubmixBase::bAutoDisable' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmixBase, AutoDisableTime) == 0x00002C, "Member 'USoundSubmixBase::AutoDisableTime' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmixBase, ChildSubmixes) == 0x000030, "Member 'USoundSubmixBase::ChildSubmixes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundSubmixWithParentBase \ +static_assert(alignof(USoundSubmixWithParentBase) == 0x000008, "Wrong alignment on USoundSubmixWithParentBase"); \ +static_assert(sizeof(USoundSubmixWithParentBase) == 0x000048, "Wrong size on USoundSubmixWithParentBase"); \ +static_assert(offsetof(USoundSubmixWithParentBase, ParentSubmix) == 0x000040, "Member 'USoundSubmixWithParentBase::ParentSubmix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_AddComponent \ +static_assert(alignof(Actor_AddComponent) == 0x000010, "Wrong alignment on Actor_AddComponent"); \ +static_assert(sizeof(Actor_AddComponent) == 0x000090, "Wrong size on Actor_AddComponent"); \ +static_assert(offsetof(Actor_AddComponent, TemplateName) == 0x000000, "Member 'Actor_AddComponent::TemplateName' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponent, bManualAttachment) == 0x000008, "Member 'Actor_AddComponent::bManualAttachment' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponent, RelativeTransform) == 0x000010, "Member 'Actor_AddComponent::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponent, ComponentTemplateContext) == 0x000070, "Member 'Actor_AddComponent::ComponentTemplateContext' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponent, bDeferredFinish) == 0x000078, "Member 'Actor_AddComponent::bDeferredFinish' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponent, ReturnValue) == 0x000080, "Member 'Actor_AddComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_AddComponentByClass \ +static_assert(alignof(Actor_AddComponentByClass) == 0x000010, "Wrong alignment on Actor_AddComponentByClass"); \ +static_assert(sizeof(Actor_AddComponentByClass) == 0x000080, "Wrong size on Actor_AddComponentByClass"); \ +static_assert(offsetof(Actor_AddComponentByClass, Class_0) == 0x000000, "Member 'Actor_AddComponentByClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponentByClass, bManualAttachment) == 0x000008, "Member 'Actor_AddComponentByClass::bManualAttachment' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponentByClass, RelativeTransform) == 0x000010, "Member 'Actor_AddComponentByClass::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponentByClass, bDeferredFinish) == 0x000070, "Member 'Actor_AddComponentByClass::bDeferredFinish' has a wrong offset!"); \ +static_assert(offsetof(Actor_AddComponentByClass, ReturnValue) == 0x000078, "Member 'Actor_AddComponentByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_AddTickPrerequisiteActor \ +static_assert(alignof(Actor_AddTickPrerequisiteActor) == 0x000008, "Wrong alignment on Actor_AddTickPrerequisiteActor"); \ +static_assert(sizeof(Actor_AddTickPrerequisiteActor) == 0x000008, "Wrong size on Actor_AddTickPrerequisiteActor"); \ +static_assert(offsetof(Actor_AddTickPrerequisiteActor, PrerequisiteActor) == 0x000000, "Member 'Actor_AddTickPrerequisiteActor::PrerequisiteActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_AddTickPrerequisiteComponent \ +static_assert(alignof(Actor_AddTickPrerequisiteComponent) == 0x000008, "Wrong alignment on Actor_AddTickPrerequisiteComponent"); \ +static_assert(sizeof(Actor_AddTickPrerequisiteComponent) == 0x000008, "Wrong size on Actor_AddTickPrerequisiteComponent"); \ +static_assert(offsetof(Actor_AddTickPrerequisiteComponent, PrerequisiteComponent) == 0x000000, "Member 'Actor_AddTickPrerequisiteComponent::PrerequisiteComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_CreateInputComponent \ +static_assert(alignof(Actor_CreateInputComponent) == 0x000008, "Wrong alignment on Actor_CreateInputComponent"); \ +static_assert(sizeof(Actor_CreateInputComponent) == 0x000008, "Wrong size on Actor_CreateInputComponent"); \ +static_assert(offsetof(Actor_CreateInputComponent, InputComponentToCreate) == 0x000000, "Member 'Actor_CreateInputComponent::InputComponentToCreate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_DetachRootComponentFromParent \ +static_assert(alignof(Actor_DetachRootComponentFromParent) == 0x000001, "Wrong alignment on Actor_DetachRootComponentFromParent"); \ +static_assert(sizeof(Actor_DetachRootComponentFromParent) == 0x000001, "Wrong size on Actor_DetachRootComponentFromParent"); \ +static_assert(offsetof(Actor_DetachRootComponentFromParent, bMaintainWorldPosition) == 0x000000, "Member 'Actor_DetachRootComponentFromParent::bMaintainWorldPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_DisableInput \ +static_assert(alignof(Actor_DisableInput) == 0x000008, "Wrong alignment on Actor_DisableInput"); \ +static_assert(sizeof(Actor_DisableInput) == 0x000008, "Wrong size on Actor_DisableInput"); \ +static_assert(offsetof(Actor_DisableInput, PlayerController) == 0x000000, "Member 'Actor_DisableInput::PlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_EnableInput \ +static_assert(alignof(Actor_EnableInput) == 0x000008, "Wrong alignment on Actor_EnableInput"); \ +static_assert(sizeof(Actor_EnableInput) == 0x000008, "Wrong size on Actor_EnableInput"); \ +static_assert(offsetof(Actor_EnableInput, PlayerController) == 0x000000, "Member 'Actor_EnableInput::PlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_FinishAddComponent \ +static_assert(alignof(Actor_FinishAddComponent) == 0x000010, "Wrong alignment on Actor_FinishAddComponent"); \ +static_assert(sizeof(Actor_FinishAddComponent) == 0x000070, "Wrong size on Actor_FinishAddComponent"); \ +static_assert(offsetof(Actor_FinishAddComponent, Component) == 0x000000, "Member 'Actor_FinishAddComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(Actor_FinishAddComponent, bManualAttachment) == 0x000008, "Member 'Actor_FinishAddComponent::bManualAttachment' has a wrong offset!"); \ +static_assert(offsetof(Actor_FinishAddComponent, RelativeTransform) == 0x000010, "Member 'Actor_FinishAddComponent::RelativeTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetPhysicsReplicationMode \ +static_assert(alignof(Actor_GetPhysicsReplicationMode) == 0x000001, "Wrong alignment on Actor_GetPhysicsReplicationMode"); \ +static_assert(sizeof(Actor_GetPhysicsReplicationMode) == 0x000001, "Wrong size on Actor_GetPhysicsReplicationMode"); \ +static_assert(offsetof(Actor_GetPhysicsReplicationMode, ReturnValue) == 0x000000, "Member 'Actor_GetPhysicsReplicationMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetTickableWhenPaused \ +static_assert(alignof(Actor_GetTickableWhenPaused) == 0x000001, "Wrong alignment on Actor_GetTickableWhenPaused"); \ +static_assert(sizeof(Actor_GetTickableWhenPaused) == 0x000001, "Wrong size on Actor_GetTickableWhenPaused"); \ +static_assert(offsetof(Actor_GetTickableWhenPaused, ReturnValue) == 0x000000, "Member 'Actor_GetTickableWhenPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorLocalOffset \ +static_assert(alignof(Actor_K2_AddActorLocalOffset) == 0x000008, "Wrong alignment on Actor_K2_AddActorLocalOffset"); \ +static_assert(sizeof(Actor_K2_AddActorLocalOffset) == 0x000110, "Wrong size on Actor_K2_AddActorLocalOffset"); \ +static_assert(offsetof(Actor_K2_AddActorLocalOffset, DeltaLocation) == 0x000000, "Member 'Actor_K2_AddActorLocalOffset::DeltaLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalOffset, bSweep) == 0x000018, "Member 'Actor_K2_AddActorLocalOffset::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalOffset, SweepHitResult) == 0x000020, "Member 'Actor_K2_AddActorLocalOffset::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalOffset, bTeleport) == 0x000108, "Member 'Actor_K2_AddActorLocalOffset::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorLocalRotation \ +static_assert(alignof(Actor_K2_AddActorLocalRotation) == 0x000008, "Wrong alignment on Actor_K2_AddActorLocalRotation"); \ +static_assert(sizeof(Actor_K2_AddActorLocalRotation) == 0x000110, "Wrong size on Actor_K2_AddActorLocalRotation"); \ +static_assert(offsetof(Actor_K2_AddActorLocalRotation, DeltaRotation) == 0x000000, "Member 'Actor_K2_AddActorLocalRotation::DeltaRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalRotation, bSweep) == 0x000018, "Member 'Actor_K2_AddActorLocalRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalRotation, SweepHitResult) == 0x000020, "Member 'Actor_K2_AddActorLocalRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalRotation, bTeleport) == 0x000108, "Member 'Actor_K2_AddActorLocalRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorLocalTransform \ +static_assert(alignof(Actor_K2_AddActorLocalTransform) == 0x000010, "Wrong alignment on Actor_K2_AddActorLocalTransform"); \ +static_assert(sizeof(Actor_K2_AddActorLocalTransform) == 0x000160, "Wrong size on Actor_K2_AddActorLocalTransform"); \ +static_assert(offsetof(Actor_K2_AddActorLocalTransform, NewTransform) == 0x000000, "Member 'Actor_K2_AddActorLocalTransform::NewTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalTransform, bSweep) == 0x000060, "Member 'Actor_K2_AddActorLocalTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalTransform, SweepHitResult) == 0x000068, "Member 'Actor_K2_AddActorLocalTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorLocalTransform, bTeleport) == 0x000150, "Member 'Actor_K2_AddActorLocalTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorWorldOffset \ +static_assert(alignof(Actor_K2_AddActorWorldOffset) == 0x000008, "Wrong alignment on Actor_K2_AddActorWorldOffset"); \ +static_assert(sizeof(Actor_K2_AddActorWorldOffset) == 0x000110, "Wrong size on Actor_K2_AddActorWorldOffset"); \ +static_assert(offsetof(Actor_K2_AddActorWorldOffset, DeltaLocation) == 0x000000, "Member 'Actor_K2_AddActorWorldOffset::DeltaLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldOffset, bSweep) == 0x000018, "Member 'Actor_K2_AddActorWorldOffset::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldOffset, SweepHitResult) == 0x000020, "Member 'Actor_K2_AddActorWorldOffset::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldOffset, bTeleport) == 0x000108, "Member 'Actor_K2_AddActorWorldOffset::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorWorldRotation \ +static_assert(alignof(Actor_K2_AddActorWorldRotation) == 0x000008, "Wrong alignment on Actor_K2_AddActorWorldRotation"); \ +static_assert(sizeof(Actor_K2_AddActorWorldRotation) == 0x000110, "Wrong size on Actor_K2_AddActorWorldRotation"); \ +static_assert(offsetof(Actor_K2_AddActorWorldRotation, DeltaRotation) == 0x000000, "Member 'Actor_K2_AddActorWorldRotation::DeltaRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldRotation, bSweep) == 0x000018, "Member 'Actor_K2_AddActorWorldRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldRotation, SweepHitResult) == 0x000020, "Member 'Actor_K2_AddActorWorldRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldRotation, bTeleport) == 0x000108, "Member 'Actor_K2_AddActorWorldRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorWorldTransform \ +static_assert(alignof(Actor_K2_AddActorWorldTransform) == 0x000010, "Wrong alignment on Actor_K2_AddActorWorldTransform"); \ +static_assert(sizeof(Actor_K2_AddActorWorldTransform) == 0x000160, "Wrong size on Actor_K2_AddActorWorldTransform"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransform, DeltaTransform) == 0x000000, "Member 'Actor_K2_AddActorWorldTransform::DeltaTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransform, bSweep) == 0x000060, "Member 'Actor_K2_AddActorWorldTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransform, SweepHitResult) == 0x000068, "Member 'Actor_K2_AddActorWorldTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransform, bTeleport) == 0x000150, "Member 'Actor_K2_AddActorWorldTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AddActorWorldTransformKeepScale \ +static_assert(alignof(Actor_K2_AddActorWorldTransformKeepScale) == 0x000010, "Wrong alignment on Actor_K2_AddActorWorldTransformKeepScale"); \ +static_assert(sizeof(Actor_K2_AddActorWorldTransformKeepScale) == 0x000160, "Wrong size on Actor_K2_AddActorWorldTransformKeepScale"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransformKeepScale, DeltaTransform) == 0x000000, "Member 'Actor_K2_AddActorWorldTransformKeepScale::DeltaTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransformKeepScale, bSweep) == 0x000060, "Member 'Actor_K2_AddActorWorldTransformKeepScale::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransformKeepScale, SweepHitResult) == 0x000068, "Member 'Actor_K2_AddActorWorldTransformKeepScale::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AddActorWorldTransformKeepScale, bTeleport) == 0x000150, "Member 'Actor_K2_AddActorWorldTransformKeepScale::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AttachRootComponentTo \ +static_assert(alignof(Actor_K2_AttachRootComponentTo) == 0x000008, "Wrong alignment on Actor_K2_AttachRootComponentTo"); \ +static_assert(sizeof(Actor_K2_AttachRootComponentTo) == 0x000018, "Wrong size on Actor_K2_AttachRootComponentTo"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentTo, InParent) == 0x000000, "Member 'Actor_K2_AttachRootComponentTo::InParent' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentTo, InSocketName) == 0x000008, "Member 'Actor_K2_AttachRootComponentTo::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentTo, AttachLocationType) == 0x000010, "Member 'Actor_K2_AttachRootComponentTo::AttachLocationType' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentTo, bWeldSimulatedBodies) == 0x000011, "Member 'Actor_K2_AttachRootComponentTo::bWeldSimulatedBodies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AttachRootComponentToActor \ +static_assert(alignof(Actor_K2_AttachRootComponentToActor) == 0x000008, "Wrong alignment on Actor_K2_AttachRootComponentToActor"); \ +static_assert(sizeof(Actor_K2_AttachRootComponentToActor) == 0x000018, "Wrong size on Actor_K2_AttachRootComponentToActor"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentToActor, InParentActor) == 0x000000, "Member 'Actor_K2_AttachRootComponentToActor::InParentActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentToActor, InSocketName) == 0x000008, "Member 'Actor_K2_AttachRootComponentToActor::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentToActor, AttachLocationType) == 0x000010, "Member 'Actor_K2_AttachRootComponentToActor::AttachLocationType' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachRootComponentToActor, bWeldSimulatedBodies) == 0x000011, "Member 'Actor_K2_AttachRootComponentToActor::bWeldSimulatedBodies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AttachToActor \ +static_assert(alignof(Actor_K2_AttachToActor) == 0x000008, "Wrong alignment on Actor_K2_AttachToActor"); \ +static_assert(sizeof(Actor_K2_AttachToActor) == 0x000018, "Wrong size on Actor_K2_AttachToActor"); \ +static_assert(offsetof(Actor_K2_AttachToActor, ParentActor) == 0x000000, "Member 'Actor_K2_AttachToActor::ParentActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, SocketName) == 0x000008, "Member 'Actor_K2_AttachToActor::SocketName' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, LocationRule) == 0x000010, "Member 'Actor_K2_AttachToActor::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, RotationRule) == 0x000011, "Member 'Actor_K2_AttachToActor::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, ScaleRule) == 0x000012, "Member 'Actor_K2_AttachToActor::ScaleRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, bWeldSimulatedBodies) == 0x000013, "Member 'Actor_K2_AttachToActor::bWeldSimulatedBodies' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToActor, ReturnValue) == 0x000014, "Member 'Actor_K2_AttachToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_AttachToComponent \ +static_assert(alignof(Actor_K2_AttachToComponent) == 0x000008, "Wrong alignment on Actor_K2_AttachToComponent"); \ +static_assert(sizeof(Actor_K2_AttachToComponent) == 0x000018, "Wrong size on Actor_K2_AttachToComponent"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, Parent) == 0x000000, "Member 'Actor_K2_AttachToComponent::Parent' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, SocketName) == 0x000008, "Member 'Actor_K2_AttachToComponent::SocketName' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, LocationRule) == 0x000010, "Member 'Actor_K2_AttachToComponent::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, RotationRule) == 0x000011, "Member 'Actor_K2_AttachToComponent::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, ScaleRule) == 0x000012, "Member 'Actor_K2_AttachToComponent::ScaleRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, bWeldSimulatedBodies) == 0x000013, "Member 'Actor_K2_AttachToComponent::bWeldSimulatedBodies' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_AttachToComponent, ReturnValue) == 0x000014, "Member 'Actor_K2_AttachToComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_DetachFromActor \ +static_assert(alignof(Actor_K2_DetachFromActor) == 0x000001, "Wrong alignment on Actor_K2_DetachFromActor"); \ +static_assert(sizeof(Actor_K2_DetachFromActor) == 0x000003, "Wrong size on Actor_K2_DetachFromActor"); \ +static_assert(offsetof(Actor_K2_DetachFromActor, LocationRule) == 0x000000, "Member 'Actor_K2_DetachFromActor::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_DetachFromActor, RotationRule) == 0x000001, "Member 'Actor_K2_DetachFromActor::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_DetachFromActor, ScaleRule) == 0x000002, "Member 'Actor_K2_DetachFromActor::ScaleRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_OnBecomeViewTarget \ +static_assert(alignof(Actor_K2_OnBecomeViewTarget) == 0x000008, "Wrong alignment on Actor_K2_OnBecomeViewTarget"); \ +static_assert(sizeof(Actor_K2_OnBecomeViewTarget) == 0x000008, "Wrong size on Actor_K2_OnBecomeViewTarget"); \ +static_assert(offsetof(Actor_K2_OnBecomeViewTarget, PC) == 0x000000, "Member 'Actor_K2_OnBecomeViewTarget::PC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_OnEndViewTarget \ +static_assert(alignof(Actor_K2_OnEndViewTarget) == 0x000008, "Wrong alignment on Actor_K2_OnEndViewTarget"); \ +static_assert(sizeof(Actor_K2_OnEndViewTarget) == 0x000008, "Wrong size on Actor_K2_OnEndViewTarget"); \ +static_assert(offsetof(Actor_K2_OnEndViewTarget, PC) == 0x000000, "Member 'Actor_K2_OnEndViewTarget::PC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorLocation \ +static_assert(alignof(Actor_K2_SetActorLocation) == 0x000008, "Wrong alignment on Actor_K2_SetActorLocation"); \ +static_assert(sizeof(Actor_K2_SetActorLocation) == 0x000110, "Wrong size on Actor_K2_SetActorLocation"); \ +static_assert(offsetof(Actor_K2_SetActorLocation, NewLocation) == 0x000000, "Member 'Actor_K2_SetActorLocation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocation, bSweep) == 0x000018, "Member 'Actor_K2_SetActorLocation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocation, SweepHitResult) == 0x000020, "Member 'Actor_K2_SetActorLocation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocation, bTeleport) == 0x000108, "Member 'Actor_K2_SetActorLocation::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocation, ReturnValue) == 0x000109, "Member 'Actor_K2_SetActorLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorLocationAndRotation \ +static_assert(alignof(Actor_K2_SetActorLocationAndRotation) == 0x000008, "Wrong alignment on Actor_K2_SetActorLocationAndRotation"); \ +static_assert(sizeof(Actor_K2_SetActorLocationAndRotation) == 0x000128, "Wrong size on Actor_K2_SetActorLocationAndRotation"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, NewLocation) == 0x000000, "Member 'Actor_K2_SetActorLocationAndRotation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, NewRotation) == 0x000018, "Member 'Actor_K2_SetActorLocationAndRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, bSweep) == 0x000030, "Member 'Actor_K2_SetActorLocationAndRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, SweepHitResult) == 0x000038, "Member 'Actor_K2_SetActorLocationAndRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, bTeleport) == 0x000120, "Member 'Actor_K2_SetActorLocationAndRotation::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorLocationAndRotation, ReturnValue) == 0x000121, "Member 'Actor_K2_SetActorLocationAndRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorRelativeLocation \ +static_assert(alignof(Actor_K2_SetActorRelativeLocation) == 0x000008, "Wrong alignment on Actor_K2_SetActorRelativeLocation"); \ +static_assert(sizeof(Actor_K2_SetActorRelativeLocation) == 0x000110, "Wrong size on Actor_K2_SetActorRelativeLocation"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeLocation, NewRelativeLocation) == 0x000000, "Member 'Actor_K2_SetActorRelativeLocation::NewRelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeLocation, bSweep) == 0x000018, "Member 'Actor_K2_SetActorRelativeLocation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeLocation, SweepHitResult) == 0x000020, "Member 'Actor_K2_SetActorRelativeLocation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeLocation, bTeleport) == 0x000108, "Member 'Actor_K2_SetActorRelativeLocation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorRelativeRotation \ +static_assert(alignof(Actor_K2_SetActorRelativeRotation) == 0x000008, "Wrong alignment on Actor_K2_SetActorRelativeRotation"); \ +static_assert(sizeof(Actor_K2_SetActorRelativeRotation) == 0x000110, "Wrong size on Actor_K2_SetActorRelativeRotation"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeRotation, NewRelativeRotation) == 0x000000, "Member 'Actor_K2_SetActorRelativeRotation::NewRelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeRotation, bSweep) == 0x000018, "Member 'Actor_K2_SetActorRelativeRotation::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeRotation, SweepHitResult) == 0x000020, "Member 'Actor_K2_SetActorRelativeRotation::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeRotation, bTeleport) == 0x000108, "Member 'Actor_K2_SetActorRelativeRotation::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorRelativeTransform \ +static_assert(alignof(Actor_K2_SetActorRelativeTransform) == 0x000010, "Wrong alignment on Actor_K2_SetActorRelativeTransform"); \ +static_assert(sizeof(Actor_K2_SetActorRelativeTransform) == 0x000160, "Wrong size on Actor_K2_SetActorRelativeTransform"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeTransform, NewRelativeTransform) == 0x000000, "Member 'Actor_K2_SetActorRelativeTransform::NewRelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeTransform, bSweep) == 0x000060, "Member 'Actor_K2_SetActorRelativeTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeTransform, SweepHitResult) == 0x000068, "Member 'Actor_K2_SetActorRelativeTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRelativeTransform, bTeleport) == 0x000150, "Member 'Actor_K2_SetActorRelativeTransform::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorRotation \ +static_assert(alignof(Actor_K2_SetActorRotation) == 0x000008, "Wrong alignment on Actor_K2_SetActorRotation"); \ +static_assert(sizeof(Actor_K2_SetActorRotation) == 0x000020, "Wrong size on Actor_K2_SetActorRotation"); \ +static_assert(offsetof(Actor_K2_SetActorRotation, NewRotation) == 0x000000, "Member 'Actor_K2_SetActorRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRotation, bTeleportPhysics) == 0x000018, "Member 'Actor_K2_SetActorRotation::bTeleportPhysics' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorRotation, ReturnValue) == 0x000019, "Member 'Actor_K2_SetActorRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_SetActorTransform \ +static_assert(alignof(Actor_K2_SetActorTransform) == 0x000010, "Wrong alignment on Actor_K2_SetActorTransform"); \ +static_assert(sizeof(Actor_K2_SetActorTransform) == 0x000160, "Wrong size on Actor_K2_SetActorTransform"); \ +static_assert(offsetof(Actor_K2_SetActorTransform, NewTransform) == 0x000000, "Member 'Actor_K2_SetActorTransform::NewTransform' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorTransform, bSweep) == 0x000060, "Member 'Actor_K2_SetActorTransform::bSweep' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorTransform, SweepHitResult) == 0x000068, "Member 'Actor_K2_SetActorTransform::SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorTransform, bTeleport) == 0x000150, "Member 'Actor_K2_SetActorTransform::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_SetActorTransform, ReturnValue) == 0x000151, "Member 'Actor_K2_SetActorTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_TeleportTo \ +static_assert(alignof(Actor_K2_TeleportTo) == 0x000008, "Wrong alignment on Actor_K2_TeleportTo"); \ +static_assert(sizeof(Actor_K2_TeleportTo) == 0x000038, "Wrong size on Actor_K2_TeleportTo"); \ +static_assert(offsetof(Actor_K2_TeleportTo, DestLocation) == 0x000000, "Member 'Actor_K2_TeleportTo::DestLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_TeleportTo, DestRotation) == 0x000018, "Member 'Actor_K2_TeleportTo::DestRotation' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_TeleportTo, ReturnValue) == 0x000030, "Member 'Actor_K2_TeleportTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_MakeNoise \ +static_assert(alignof(Actor_MakeNoise) == 0x000008, "Wrong alignment on Actor_MakeNoise"); \ +static_assert(sizeof(Actor_MakeNoise) == 0x000038, "Wrong size on Actor_MakeNoise"); \ +static_assert(offsetof(Actor_MakeNoise, Loudness) == 0x000000, "Member 'Actor_MakeNoise::Loudness' has a wrong offset!"); \ +static_assert(offsetof(Actor_MakeNoise, NoiseInstigator) == 0x000008, "Member 'Actor_MakeNoise::NoiseInstigator' has a wrong offset!"); \ +static_assert(offsetof(Actor_MakeNoise, NoiseLocation) == 0x000010, "Member 'Actor_MakeNoise::NoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_MakeNoise, MaxRange) == 0x000028, "Member 'Actor_MakeNoise::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(Actor_MakeNoise, Tag) == 0x00002C, "Member 'Actor_MakeNoise::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_PrestreamTextures \ +static_assert(alignof(Actor_PrestreamTextures) == 0x000004, "Wrong alignment on Actor_PrestreamTextures"); \ +static_assert(sizeof(Actor_PrestreamTextures) == 0x00000C, "Wrong size on Actor_PrestreamTextures"); \ +static_assert(offsetof(Actor_PrestreamTextures, Seconds) == 0x000000, "Member 'Actor_PrestreamTextures::Seconds' has a wrong offset!"); \ +static_assert(offsetof(Actor_PrestreamTextures, bEnableStreaming) == 0x000004, "Member 'Actor_PrestreamTextures::bEnableStreaming' has a wrong offset!"); \ +static_assert(offsetof(Actor_PrestreamTextures, CinematicTextureGroups) == 0x000008, "Member 'Actor_PrestreamTextures::CinematicTextureGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorBeginOverlap \ +static_assert(alignof(Actor_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on Actor_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(Actor_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on Actor_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(Actor_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'Actor_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorEndOverlap \ +static_assert(alignof(Actor_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on Actor_ReceiveActorEndOverlap"); \ +static_assert(sizeof(Actor_ReceiveActorEndOverlap) == 0x000008, "Wrong size on Actor_ReceiveActorEndOverlap"); \ +static_assert(offsetof(Actor_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'Actor_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnClicked \ +static_assert(alignof(Actor_ReceiveActorOnClicked) == 0x000008, "Wrong alignment on Actor_ReceiveActorOnClicked"); \ +static_assert(sizeof(Actor_ReceiveActorOnClicked) == 0x000018, "Wrong size on Actor_ReceiveActorOnClicked"); \ +static_assert(offsetof(Actor_ReceiveActorOnClicked, ButtonPressed) == 0x000000, "Member 'Actor_ReceiveActorOnClicked::ButtonPressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnInputTouchBegin \ +static_assert(alignof(Actor_ReceiveActorOnInputTouchBegin) == 0x000001, "Wrong alignment on Actor_ReceiveActorOnInputTouchBegin"); \ +static_assert(sizeof(Actor_ReceiveActorOnInputTouchBegin) == 0x000001, "Wrong size on Actor_ReceiveActorOnInputTouchBegin"); \ +static_assert(offsetof(Actor_ReceiveActorOnInputTouchBegin, FingerIndex) == 0x000000, "Member 'Actor_ReceiveActorOnInputTouchBegin::FingerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnInputTouchEnd \ +static_assert(alignof(Actor_ReceiveActorOnInputTouchEnd) == 0x000001, "Wrong alignment on Actor_ReceiveActorOnInputTouchEnd"); \ +static_assert(sizeof(Actor_ReceiveActorOnInputTouchEnd) == 0x000001, "Wrong size on Actor_ReceiveActorOnInputTouchEnd"); \ +static_assert(offsetof(Actor_ReceiveActorOnInputTouchEnd, FingerIndex) == 0x000000, "Member 'Actor_ReceiveActorOnInputTouchEnd::FingerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnInputTouchEnter \ +static_assert(alignof(Actor_ReceiveActorOnInputTouchEnter) == 0x000001, "Wrong alignment on Actor_ReceiveActorOnInputTouchEnter"); \ +static_assert(sizeof(Actor_ReceiveActorOnInputTouchEnter) == 0x000001, "Wrong size on Actor_ReceiveActorOnInputTouchEnter"); \ +static_assert(offsetof(Actor_ReceiveActorOnInputTouchEnter, FingerIndex) == 0x000000, "Member 'Actor_ReceiveActorOnInputTouchEnter::FingerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnInputTouchLeave \ +static_assert(alignof(Actor_ReceiveActorOnInputTouchLeave) == 0x000001, "Wrong alignment on Actor_ReceiveActorOnInputTouchLeave"); \ +static_assert(sizeof(Actor_ReceiveActorOnInputTouchLeave) == 0x000001, "Wrong size on Actor_ReceiveActorOnInputTouchLeave"); \ +static_assert(offsetof(Actor_ReceiveActorOnInputTouchLeave, FingerIndex) == 0x000000, "Member 'Actor_ReceiveActorOnInputTouchLeave::FingerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveActorOnReleased \ +static_assert(alignof(Actor_ReceiveActorOnReleased) == 0x000008, "Wrong alignment on Actor_ReceiveActorOnReleased"); \ +static_assert(sizeof(Actor_ReceiveActorOnReleased) == 0x000018, "Wrong size on Actor_ReceiveActorOnReleased"); \ +static_assert(offsetof(Actor_ReceiveActorOnReleased, ButtonReleased) == 0x000000, "Member 'Actor_ReceiveActorOnReleased::ButtonReleased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveAnyDamage \ +static_assert(alignof(Actor_ReceiveAnyDamage) == 0x000008, "Wrong alignment on Actor_ReceiveAnyDamage"); \ +static_assert(sizeof(Actor_ReceiveAnyDamage) == 0x000020, "Wrong size on Actor_ReceiveAnyDamage"); \ +static_assert(offsetof(Actor_ReceiveAnyDamage, Damage) == 0x000000, "Member 'Actor_ReceiveAnyDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveAnyDamage, DamageType) == 0x000008, "Member 'Actor_ReceiveAnyDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveAnyDamage, InstigatedBy) == 0x000010, "Member 'Actor_ReceiveAnyDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveAnyDamage, DamageCauser) == 0x000018, "Member 'Actor_ReceiveAnyDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveAsyncPhysicsTick \ +static_assert(alignof(Actor_ReceiveAsyncPhysicsTick) == 0x000004, "Wrong alignment on Actor_ReceiveAsyncPhysicsTick"); \ +static_assert(sizeof(Actor_ReceiveAsyncPhysicsTick) == 0x000008, "Wrong size on Actor_ReceiveAsyncPhysicsTick"); \ +static_assert(offsetof(Actor_ReceiveAsyncPhysicsTick, DeltaSeconds) == 0x000000, "Member 'Actor_ReceiveAsyncPhysicsTick::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveAsyncPhysicsTick, SimSeconds) == 0x000004, "Member 'Actor_ReceiveAsyncPhysicsTick::SimSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveEndPlay \ +static_assert(alignof(Actor_ReceiveEndPlay) == 0x000001, "Wrong alignment on Actor_ReceiveEndPlay"); \ +static_assert(sizeof(Actor_ReceiveEndPlay) == 0x000001, "Wrong size on Actor_ReceiveEndPlay"); \ +static_assert(offsetof(Actor_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'Actor_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveHit \ +static_assert(alignof(Actor_ReceiveHit) == 0x000008, "Wrong alignment on Actor_ReceiveHit"); \ +static_assert(sizeof(Actor_ReceiveHit) == 0x000150, "Wrong size on Actor_ReceiveHit"); \ +static_assert(offsetof(Actor_ReceiveHit, MyComp) == 0x000000, "Member 'Actor_ReceiveHit::MyComp' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, Other) == 0x000008, "Member 'Actor_ReceiveHit::Other' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, OtherComp) == 0x000010, "Member 'Actor_ReceiveHit::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, bSelfMoved) == 0x000018, "Member 'Actor_ReceiveHit::bSelfMoved' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, HitLocation) == 0x000020, "Member 'Actor_ReceiveHit::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, HitNormal) == 0x000038, "Member 'Actor_ReceiveHit::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, NormalImpulse) == 0x000050, "Member 'Actor_ReceiveHit::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveHit, Hit) == 0x000068, "Member 'Actor_ReceiveHit::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceivePointDamage \ +static_assert(alignof(Actor_ReceivePointDamage) == 0x000008, "Wrong alignment on Actor_ReceivePointDamage"); \ +static_assert(sizeof(Actor_ReceivePointDamage) == 0x000160, "Wrong size on Actor_ReceivePointDamage"); \ +static_assert(offsetof(Actor_ReceivePointDamage, Damage) == 0x000000, "Member 'Actor_ReceivePointDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, DamageType) == 0x000008, "Member 'Actor_ReceivePointDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, HitLocation) == 0x000010, "Member 'Actor_ReceivePointDamage::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, HitNormal) == 0x000028, "Member 'Actor_ReceivePointDamage::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, HitComponent) == 0x000040, "Member 'Actor_ReceivePointDamage::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, BoneName) == 0x000048, "Member 'Actor_ReceivePointDamage::BoneName' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, ShotFromDirection) == 0x000050, "Member 'Actor_ReceivePointDamage::ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, InstigatedBy) == 0x000068, "Member 'Actor_ReceivePointDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, DamageCauser) == 0x000070, "Member 'Actor_ReceivePointDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceivePointDamage, HitInfo) == 0x000078, "Member 'Actor_ReceivePointDamage::HitInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveRadialDamage \ +static_assert(alignof(Actor_ReceiveRadialDamage) == 0x000008, "Wrong alignment on Actor_ReceiveRadialDamage"); \ +static_assert(sizeof(Actor_ReceiveRadialDamage) == 0x000120, "Wrong size on Actor_ReceiveRadialDamage"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, DamageReceived) == 0x000000, "Member 'Actor_ReceiveRadialDamage::DamageReceived' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, DamageType) == 0x000008, "Member 'Actor_ReceiveRadialDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, Origin) == 0x000010, "Member 'Actor_ReceiveRadialDamage::Origin' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, HitInfo) == 0x000028, "Member 'Actor_ReceiveRadialDamage::HitInfo' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, InstigatedBy) == 0x000110, "Member 'Actor_ReceiveRadialDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(Actor_ReceiveRadialDamage, DamageCauser) == 0x000118, "Member 'Actor_ReceiveRadialDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ReceiveTick \ +static_assert(alignof(Actor_ReceiveTick) == 0x000004, "Wrong alignment on Actor_ReceiveTick"); \ +static_assert(sizeof(Actor_ReceiveTick) == 0x000004, "Wrong size on Actor_ReceiveTick"); \ +static_assert(offsetof(Actor_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'Actor_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_RemoveTickPrerequisiteActor \ +static_assert(alignof(Actor_RemoveTickPrerequisiteActor) == 0x000008, "Wrong alignment on Actor_RemoveTickPrerequisiteActor"); \ +static_assert(sizeof(Actor_RemoveTickPrerequisiteActor) == 0x000008, "Wrong size on Actor_RemoveTickPrerequisiteActor"); \ +static_assert(offsetof(Actor_RemoveTickPrerequisiteActor, PrerequisiteActor) == 0x000000, "Member 'Actor_RemoveTickPrerequisiteActor::PrerequisiteActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_RemoveTickPrerequisiteComponent \ +static_assert(alignof(Actor_RemoveTickPrerequisiteComponent) == 0x000008, "Wrong alignment on Actor_RemoveTickPrerequisiteComponent"); \ +static_assert(sizeof(Actor_RemoveTickPrerequisiteComponent) == 0x000008, "Wrong size on Actor_RemoveTickPrerequisiteComponent"); \ +static_assert(offsetof(Actor_RemoveTickPrerequisiteComponent, PrerequisiteComponent) == 0x000000, "Member 'Actor_RemoveTickPrerequisiteComponent::PrerequisiteComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorEnableCollision \ +static_assert(alignof(Actor_SetActorEnableCollision) == 0x000001, "Wrong alignment on Actor_SetActorEnableCollision"); \ +static_assert(sizeof(Actor_SetActorEnableCollision) == 0x000001, "Wrong size on Actor_SetActorEnableCollision"); \ +static_assert(offsetof(Actor_SetActorEnableCollision, bNewActorEnableCollision) == 0x000000, "Member 'Actor_SetActorEnableCollision::bNewActorEnableCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorHiddenInGame \ +static_assert(alignof(Actor_SetActorHiddenInGame) == 0x000001, "Wrong alignment on Actor_SetActorHiddenInGame"); \ +static_assert(sizeof(Actor_SetActorHiddenInGame) == 0x000001, "Wrong size on Actor_SetActorHiddenInGame"); \ +static_assert(offsetof(Actor_SetActorHiddenInGame, bNewHidden) == 0x000000, "Member 'Actor_SetActorHiddenInGame::bNewHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorRelativeScale3D \ +static_assert(alignof(Actor_SetActorRelativeScale3D) == 0x000008, "Wrong alignment on Actor_SetActorRelativeScale3D"); \ +static_assert(sizeof(Actor_SetActorRelativeScale3D) == 0x000018, "Wrong size on Actor_SetActorRelativeScale3D"); \ +static_assert(offsetof(Actor_SetActorRelativeScale3D, NewRelativeScale) == 0x000000, "Member 'Actor_SetActorRelativeScale3D::NewRelativeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorScale3D \ +static_assert(alignof(Actor_SetActorScale3D) == 0x000008, "Wrong alignment on Actor_SetActorScale3D"); \ +static_assert(sizeof(Actor_SetActorScale3D) == 0x000018, "Wrong size on Actor_SetActorScale3D"); \ +static_assert(offsetof(Actor_SetActorScale3D, NewScale3D) == 0x000000, "Member 'Actor_SetActorScale3D::NewScale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorTickEnabled \ +static_assert(alignof(Actor_SetActorTickEnabled) == 0x000001, "Wrong alignment on Actor_SetActorTickEnabled"); \ +static_assert(sizeof(Actor_SetActorTickEnabled) == 0x000001, "Wrong size on Actor_SetActorTickEnabled"); \ +static_assert(offsetof(Actor_SetActorTickEnabled, bEnabled) == 0x000000, "Member 'Actor_SetActorTickEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetActorTickInterval \ +static_assert(alignof(Actor_SetActorTickInterval) == 0x000004, "Wrong alignment on Actor_SetActorTickInterval"); \ +static_assert(sizeof(Actor_SetActorTickInterval) == 0x000004, "Wrong size on Actor_SetActorTickInterval"); \ +static_assert(offsetof(Actor_SetActorTickInterval, TickInterval) == 0x000000, "Member 'Actor_SetActorTickInterval::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetAutoDestroyWhenFinished \ +static_assert(alignof(Actor_SetAutoDestroyWhenFinished) == 0x000001, "Wrong alignment on Actor_SetAutoDestroyWhenFinished"); \ +static_assert(sizeof(Actor_SetAutoDestroyWhenFinished) == 0x000001, "Wrong size on Actor_SetAutoDestroyWhenFinished"); \ +static_assert(offsetof(Actor_SetAutoDestroyWhenFinished, bVal) == 0x000000, "Member 'Actor_SetAutoDestroyWhenFinished::bVal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetLifeSpan \ +static_assert(alignof(Actor_SetLifeSpan) == 0x000004, "Wrong alignment on Actor_SetLifeSpan"); \ +static_assert(sizeof(Actor_SetLifeSpan) == 0x000004, "Wrong size on Actor_SetLifeSpan"); \ +static_assert(offsetof(Actor_SetLifeSpan, InLifespan) == 0x000000, "Member 'Actor_SetLifeSpan::InLifespan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetNetDormancy \ +static_assert(alignof(Actor_SetNetDormancy) == 0x000001, "Wrong alignment on Actor_SetNetDormancy"); \ +static_assert(sizeof(Actor_SetNetDormancy) == 0x000001, "Wrong size on Actor_SetNetDormancy"); \ +static_assert(offsetof(Actor_SetNetDormancy, NewDormancy) == 0x000000, "Member 'Actor_SetNetDormancy::NewDormancy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetOwner \ +static_assert(alignof(Actor_SetOwner) == 0x000008, "Wrong alignment on Actor_SetOwner"); \ +static_assert(sizeof(Actor_SetOwner) == 0x000008, "Wrong size on Actor_SetOwner"); \ +static_assert(offsetof(Actor_SetOwner, NewOwner) == 0x000000, "Member 'Actor_SetOwner::NewOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetPhysicsReplicationMode \ +static_assert(alignof(Actor_SetPhysicsReplicationMode) == 0x000001, "Wrong alignment on Actor_SetPhysicsReplicationMode"); \ +static_assert(sizeof(Actor_SetPhysicsReplicationMode) == 0x000001, "Wrong size on Actor_SetPhysicsReplicationMode"); \ +static_assert(offsetof(Actor_SetPhysicsReplicationMode, ReplicationMode) == 0x000000, "Member 'Actor_SetPhysicsReplicationMode::ReplicationMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetRayTracingGroupId \ +static_assert(alignof(Actor_SetRayTracingGroupId) == 0x000004, "Wrong alignment on Actor_SetRayTracingGroupId"); \ +static_assert(sizeof(Actor_SetRayTracingGroupId) == 0x000004, "Wrong size on Actor_SetRayTracingGroupId"); \ +static_assert(offsetof(Actor_SetRayTracingGroupId, InRaytracingGroupId) == 0x000000, "Member 'Actor_SetRayTracingGroupId::InRaytracingGroupId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetReplicateMovement \ +static_assert(alignof(Actor_SetReplicateMovement) == 0x000001, "Wrong alignment on Actor_SetReplicateMovement"); \ +static_assert(sizeof(Actor_SetReplicateMovement) == 0x000001, "Wrong size on Actor_SetReplicateMovement"); \ +static_assert(offsetof(Actor_SetReplicateMovement, bInReplicateMovement) == 0x000000, "Member 'Actor_SetReplicateMovement::bInReplicateMovement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetReplicates \ +static_assert(alignof(Actor_SetReplicates) == 0x000001, "Wrong alignment on Actor_SetReplicates"); \ +static_assert(sizeof(Actor_SetReplicates) == 0x000001, "Wrong size on Actor_SetReplicates"); \ +static_assert(offsetof(Actor_SetReplicates, bInReplicates) == 0x000000, "Member 'Actor_SetReplicates::bInReplicates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetTickableWhenPaused \ +static_assert(alignof(Actor_SetTickableWhenPaused) == 0x000001, "Wrong alignment on Actor_SetTickableWhenPaused"); \ +static_assert(sizeof(Actor_SetTickableWhenPaused) == 0x000001, "Wrong size on Actor_SetTickableWhenPaused"); \ +static_assert(offsetof(Actor_SetTickableWhenPaused, bTickableWhenPaused) == 0x000000, "Member 'Actor_SetTickableWhenPaused::bTickableWhenPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_SetTickGroup \ +static_assert(alignof(Actor_SetTickGroup) == 0x000001, "Wrong alignment on Actor_SetTickGroup"); \ +static_assert(sizeof(Actor_SetTickGroup) == 0x000001, "Wrong size on Actor_SetTickGroup"); \ +static_assert(offsetof(Actor_SetTickGroup, NewTickGroup) == 0x000000, "Member 'Actor_SetTickGroup::NewTickGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_ActorHasTag \ +static_assert(alignof(Actor_ActorHasTag) == 0x000004, "Wrong alignment on Actor_ActorHasTag"); \ +static_assert(sizeof(Actor_ActorHasTag) == 0x00000C, "Wrong size on Actor_ActorHasTag"); \ +static_assert(offsetof(Actor_ActorHasTag, Tag) == 0x000000, "Member 'Actor_ActorHasTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(Actor_ActorHasTag, ReturnValue) == 0x000008, "Member 'Actor_ActorHasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_CanTriggerResimulation \ +static_assert(alignof(Actor_CanTriggerResimulation) == 0x000001, "Wrong alignment on Actor_CanTriggerResimulation"); \ +static_assert(sizeof(Actor_CanTriggerResimulation) == 0x000001, "Wrong size on Actor_CanTriggerResimulation"); \ +static_assert(offsetof(Actor_CanTriggerResimulation, ReturnValue) == 0x000000, "Member 'Actor_CanTriggerResimulation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_FindComponentByTag \ +static_assert(alignof(Actor_FindComponentByTag) == 0x000008, "Wrong alignment on Actor_FindComponentByTag"); \ +static_assert(sizeof(Actor_FindComponentByTag) == 0x000018, "Wrong size on Actor_FindComponentByTag"); \ +static_assert(offsetof(Actor_FindComponentByTag, ComponentClass) == 0x000000, "Member 'Actor_FindComponentByTag::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(Actor_FindComponentByTag, Tag) == 0x000008, "Member 'Actor_FindComponentByTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(Actor_FindComponentByTag, ReturnValue) == 0x000010, "Member 'Actor_FindComponentByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorBounds \ +static_assert(alignof(Actor_GetActorBounds) == 0x000008, "Wrong alignment on Actor_GetActorBounds"); \ +static_assert(sizeof(Actor_GetActorBounds) == 0x000040, "Wrong size on Actor_GetActorBounds"); \ +static_assert(offsetof(Actor_GetActorBounds, bOnlyCollidingComponents) == 0x000000, "Member 'Actor_GetActorBounds::bOnlyCollidingComponents' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetActorBounds, Origin) == 0x000008, "Member 'Actor_GetActorBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetActorBounds, BoxExtent) == 0x000020, "Member 'Actor_GetActorBounds::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetActorBounds, bIncludeFromChildActors) == 0x000038, "Member 'Actor_GetActorBounds::bIncludeFromChildActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorEnableCollision \ +static_assert(alignof(Actor_GetActorEnableCollision) == 0x000001, "Wrong alignment on Actor_GetActorEnableCollision"); \ +static_assert(sizeof(Actor_GetActorEnableCollision) == 0x000001, "Wrong size on Actor_GetActorEnableCollision"); \ +static_assert(offsetof(Actor_GetActorEnableCollision, ReturnValue) == 0x000000, "Member 'Actor_GetActorEnableCollision::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorEyesViewPoint \ +static_assert(alignof(Actor_GetActorEyesViewPoint) == 0x000008, "Wrong alignment on Actor_GetActorEyesViewPoint"); \ +static_assert(sizeof(Actor_GetActorEyesViewPoint) == 0x000030, "Wrong size on Actor_GetActorEyesViewPoint"); \ +static_assert(offsetof(Actor_GetActorEyesViewPoint, OutLocation) == 0x000000, "Member 'Actor_GetActorEyesViewPoint::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetActorEyesViewPoint, OutRotation) == 0x000018, "Member 'Actor_GetActorEyesViewPoint::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorForwardVector \ +static_assert(alignof(Actor_GetActorForwardVector) == 0x000008, "Wrong alignment on Actor_GetActorForwardVector"); \ +static_assert(sizeof(Actor_GetActorForwardVector) == 0x000018, "Wrong size on Actor_GetActorForwardVector"); \ +static_assert(offsetof(Actor_GetActorForwardVector, ReturnValue) == 0x000000, "Member 'Actor_GetActorForwardVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorRelativeScale3D \ +static_assert(alignof(Actor_GetActorRelativeScale3D) == 0x000008, "Wrong alignment on Actor_GetActorRelativeScale3D"); \ +static_assert(sizeof(Actor_GetActorRelativeScale3D) == 0x000018, "Wrong size on Actor_GetActorRelativeScale3D"); \ +static_assert(offsetof(Actor_GetActorRelativeScale3D, ReturnValue) == 0x000000, "Member 'Actor_GetActorRelativeScale3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorRightVector \ +static_assert(alignof(Actor_GetActorRightVector) == 0x000008, "Wrong alignment on Actor_GetActorRightVector"); \ +static_assert(sizeof(Actor_GetActorRightVector) == 0x000018, "Wrong size on Actor_GetActorRightVector"); \ +static_assert(offsetof(Actor_GetActorRightVector, ReturnValue) == 0x000000, "Member 'Actor_GetActorRightVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorScale3D \ +static_assert(alignof(Actor_GetActorScale3D) == 0x000008, "Wrong alignment on Actor_GetActorScale3D"); \ +static_assert(sizeof(Actor_GetActorScale3D) == 0x000018, "Wrong size on Actor_GetActorScale3D"); \ +static_assert(offsetof(Actor_GetActorScale3D, ReturnValue) == 0x000000, "Member 'Actor_GetActorScale3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorTickInterval \ +static_assert(alignof(Actor_GetActorTickInterval) == 0x000004, "Wrong alignment on Actor_GetActorTickInterval"); \ +static_assert(sizeof(Actor_GetActorTickInterval) == 0x000004, "Wrong size on Actor_GetActorTickInterval"); \ +static_assert(offsetof(Actor_GetActorTickInterval, ReturnValue) == 0x000000, "Member 'Actor_GetActorTickInterval::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorTimeDilation \ +static_assert(alignof(Actor_GetActorTimeDilation) == 0x000004, "Wrong alignment on Actor_GetActorTimeDilation"); \ +static_assert(sizeof(Actor_GetActorTimeDilation) == 0x000004, "Wrong size on Actor_GetActorTimeDilation"); \ +static_assert(offsetof(Actor_GetActorTimeDilation, ReturnValue) == 0x000000, "Member 'Actor_GetActorTimeDilation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetActorUpVector \ +static_assert(alignof(Actor_GetActorUpVector) == 0x000008, "Wrong alignment on Actor_GetActorUpVector"); \ +static_assert(sizeof(Actor_GetActorUpVector) == 0x000018, "Wrong size on Actor_GetActorUpVector"); \ +static_assert(offsetof(Actor_GetActorUpVector, ReturnValue) == 0x000000, "Member 'Actor_GetActorUpVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetAllChildActors \ +static_assert(alignof(Actor_GetAllChildActors) == 0x000008, "Wrong alignment on Actor_GetAllChildActors"); \ +static_assert(sizeof(Actor_GetAllChildActors) == 0x000018, "Wrong size on Actor_GetAllChildActors"); \ +static_assert(offsetof(Actor_GetAllChildActors, ChildActors) == 0x000000, "Member 'Actor_GetAllChildActors::ChildActors' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetAllChildActors, bIncludeDescendants) == 0x000010, "Member 'Actor_GetAllChildActors::bIncludeDescendants' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetAttachedActors \ +static_assert(alignof(Actor_GetAttachedActors) == 0x000008, "Wrong alignment on Actor_GetAttachedActors"); \ +static_assert(sizeof(Actor_GetAttachedActors) == 0x000018, "Wrong size on Actor_GetAttachedActors"); \ +static_assert(offsetof(Actor_GetAttachedActors, OutActors) == 0x000000, "Member 'Actor_GetAttachedActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetAttachedActors, bResetArray) == 0x000010, "Member 'Actor_GetAttachedActors::bResetArray' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetAttachedActors, bRecursivelyIncludeAttachedActors) == 0x000011, "Member 'Actor_GetAttachedActors::bRecursivelyIncludeAttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetAttachParentActor \ +static_assert(alignof(Actor_GetAttachParentActor) == 0x000008, "Wrong alignment on Actor_GetAttachParentActor"); \ +static_assert(sizeof(Actor_GetAttachParentActor) == 0x000008, "Wrong size on Actor_GetAttachParentActor"); \ +static_assert(offsetof(Actor_GetAttachParentActor, ReturnValue) == 0x000000, "Member 'Actor_GetAttachParentActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetAttachParentSocketName \ +static_assert(alignof(Actor_GetAttachParentSocketName) == 0x000004, "Wrong alignment on Actor_GetAttachParentSocketName"); \ +static_assert(sizeof(Actor_GetAttachParentSocketName) == 0x000008, "Wrong size on Actor_GetAttachParentSocketName"); \ +static_assert(offsetof(Actor_GetAttachParentSocketName, ReturnValue) == 0x000000, "Member 'Actor_GetAttachParentSocketName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetComponentByClass \ +static_assert(alignof(Actor_GetComponentByClass) == 0x000008, "Wrong alignment on Actor_GetComponentByClass"); \ +static_assert(sizeof(Actor_GetComponentByClass) == 0x000010, "Wrong size on Actor_GetComponentByClass"); \ +static_assert(offsetof(Actor_GetComponentByClass, ComponentClass) == 0x000000, "Member 'Actor_GetComponentByClass::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetComponentByClass, ReturnValue) == 0x000008, "Member 'Actor_GetComponentByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetComponentsByInterface \ +static_assert(alignof(Actor_GetComponentsByInterface) == 0x000008, "Wrong alignment on Actor_GetComponentsByInterface"); \ +static_assert(sizeof(Actor_GetComponentsByInterface) == 0x000018, "Wrong size on Actor_GetComponentsByInterface"); \ +static_assert(offsetof(Actor_GetComponentsByInterface, Interface) == 0x000000, "Member 'Actor_GetComponentsByInterface::Interface' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetComponentsByInterface, ReturnValue) == 0x000008, "Member 'Actor_GetComponentsByInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetComponentsByTag \ +static_assert(alignof(Actor_GetComponentsByTag) == 0x000008, "Wrong alignment on Actor_GetComponentsByTag"); \ +static_assert(sizeof(Actor_GetComponentsByTag) == 0x000020, "Wrong size on Actor_GetComponentsByTag"); \ +static_assert(offsetof(Actor_GetComponentsByTag, ComponentClass) == 0x000000, "Member 'Actor_GetComponentsByTag::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetComponentsByTag, Tag) == 0x000008, "Member 'Actor_GetComponentsByTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetComponentsByTag, ReturnValue) == 0x000010, "Member 'Actor_GetComponentsByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetDistanceTo \ +static_assert(alignof(Actor_GetDistanceTo) == 0x000008, "Wrong alignment on Actor_GetDistanceTo"); \ +static_assert(sizeof(Actor_GetDistanceTo) == 0x000010, "Wrong size on Actor_GetDistanceTo"); \ +static_assert(offsetof(Actor_GetDistanceTo, OtherActor) == 0x000000, "Member 'Actor_GetDistanceTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetDistanceTo, ReturnValue) == 0x000008, "Member 'Actor_GetDistanceTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetDotProductTo \ +static_assert(alignof(Actor_GetDotProductTo) == 0x000008, "Wrong alignment on Actor_GetDotProductTo"); \ +static_assert(sizeof(Actor_GetDotProductTo) == 0x000010, "Wrong size on Actor_GetDotProductTo"); \ +static_assert(offsetof(Actor_GetDotProductTo, OtherActor) == 0x000000, "Member 'Actor_GetDotProductTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetDotProductTo, ReturnValue) == 0x000008, "Member 'Actor_GetDotProductTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetGameTimeSinceCreation \ +static_assert(alignof(Actor_GetGameTimeSinceCreation) == 0x000004, "Wrong alignment on Actor_GetGameTimeSinceCreation"); \ +static_assert(sizeof(Actor_GetGameTimeSinceCreation) == 0x000004, "Wrong size on Actor_GetGameTimeSinceCreation"); \ +static_assert(offsetof(Actor_GetGameTimeSinceCreation, ReturnValue) == 0x000000, "Member 'Actor_GetGameTimeSinceCreation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetHorizontalDistanceTo \ +static_assert(alignof(Actor_GetHorizontalDistanceTo) == 0x000008, "Wrong alignment on Actor_GetHorizontalDistanceTo"); \ +static_assert(sizeof(Actor_GetHorizontalDistanceTo) == 0x000010, "Wrong size on Actor_GetHorizontalDistanceTo"); \ +static_assert(offsetof(Actor_GetHorizontalDistanceTo, OtherActor) == 0x000000, "Member 'Actor_GetHorizontalDistanceTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetHorizontalDistanceTo, ReturnValue) == 0x000008, "Member 'Actor_GetHorizontalDistanceTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetHorizontalDotProductTo \ +static_assert(alignof(Actor_GetHorizontalDotProductTo) == 0x000008, "Wrong alignment on Actor_GetHorizontalDotProductTo"); \ +static_assert(sizeof(Actor_GetHorizontalDotProductTo) == 0x000010, "Wrong size on Actor_GetHorizontalDotProductTo"); \ +static_assert(offsetof(Actor_GetHorizontalDotProductTo, OtherActor) == 0x000000, "Member 'Actor_GetHorizontalDotProductTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetHorizontalDotProductTo, ReturnValue) == 0x000008, "Member 'Actor_GetHorizontalDotProductTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetInputAxisKeyValue \ +static_assert(alignof(Actor_GetInputAxisKeyValue) == 0x000008, "Wrong alignment on Actor_GetInputAxisKeyValue"); \ +static_assert(sizeof(Actor_GetInputAxisKeyValue) == 0x000020, "Wrong size on Actor_GetInputAxisKeyValue"); \ +static_assert(offsetof(Actor_GetInputAxisKeyValue, InputAxisKey) == 0x000000, "Member 'Actor_GetInputAxisKeyValue::InputAxisKey' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetInputAxisKeyValue, ReturnValue) == 0x000018, "Member 'Actor_GetInputAxisKeyValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetInputAxisValue \ +static_assert(alignof(Actor_GetInputAxisValue) == 0x000004, "Wrong alignment on Actor_GetInputAxisValue"); \ +static_assert(sizeof(Actor_GetInputAxisValue) == 0x00000C, "Wrong size on Actor_GetInputAxisValue"); \ +static_assert(offsetof(Actor_GetInputAxisValue, InputAxisName) == 0x000000, "Member 'Actor_GetInputAxisValue::InputAxisName' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetInputAxisValue, ReturnValue) == 0x000008, "Member 'Actor_GetInputAxisValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetInputVectorAxisValue \ +static_assert(alignof(Actor_GetInputVectorAxisValue) == 0x000008, "Wrong alignment on Actor_GetInputVectorAxisValue"); \ +static_assert(sizeof(Actor_GetInputVectorAxisValue) == 0x000030, "Wrong size on Actor_GetInputVectorAxisValue"); \ +static_assert(offsetof(Actor_GetInputVectorAxisValue, InputAxisKey) == 0x000000, "Member 'Actor_GetInputVectorAxisValue::InputAxisKey' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetInputVectorAxisValue, ReturnValue) == 0x000018, "Member 'Actor_GetInputVectorAxisValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetInstigator \ +static_assert(alignof(Actor_GetInstigator) == 0x000008, "Wrong alignment on Actor_GetInstigator"); \ +static_assert(sizeof(Actor_GetInstigator) == 0x000008, "Wrong size on Actor_GetInstigator"); \ +static_assert(offsetof(Actor_GetInstigator, ReturnValue) == 0x000000, "Member 'Actor_GetInstigator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetInstigatorController \ +static_assert(alignof(Actor_GetInstigatorController) == 0x000008, "Wrong alignment on Actor_GetInstigatorController"); \ +static_assert(sizeof(Actor_GetInstigatorController) == 0x000008, "Wrong size on Actor_GetInstigatorController"); \ +static_assert(offsetof(Actor_GetInstigatorController, ReturnValue) == 0x000000, "Member 'Actor_GetInstigatorController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetLevel \ +static_assert(alignof(Actor_GetLevel) == 0x000008, "Wrong alignment on Actor_GetLevel"); \ +static_assert(sizeof(Actor_GetLevel) == 0x000008, "Wrong size on Actor_GetLevel"); \ +static_assert(offsetof(Actor_GetLevel, ReturnValue) == 0x000000, "Member 'Actor_GetLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetLevelTransform \ +static_assert(alignof(Actor_GetLevelTransform) == 0x000010, "Wrong alignment on Actor_GetLevelTransform"); \ +static_assert(sizeof(Actor_GetLevelTransform) == 0x000060, "Wrong size on Actor_GetLevelTransform"); \ +static_assert(offsetof(Actor_GetLevelTransform, ReturnValue) == 0x000000, "Member 'Actor_GetLevelTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetLifeSpan \ +static_assert(alignof(Actor_GetLifeSpan) == 0x000004, "Wrong alignment on Actor_GetLifeSpan"); \ +static_assert(sizeof(Actor_GetLifeSpan) == 0x000004, "Wrong size on Actor_GetLifeSpan"); \ +static_assert(offsetof(Actor_GetLifeSpan, ReturnValue) == 0x000000, "Member 'Actor_GetLifeSpan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetLocalRole \ +static_assert(alignof(Actor_GetLocalRole) == 0x000001, "Wrong alignment on Actor_GetLocalRole"); \ +static_assert(sizeof(Actor_GetLocalRole) == 0x000001, "Wrong size on Actor_GetLocalRole"); \ +static_assert(offsetof(Actor_GetLocalRole, ReturnValue) == 0x000000, "Member 'Actor_GetLocalRole::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetOverlappingActors \ +static_assert(alignof(Actor_GetOverlappingActors) == 0x000008, "Wrong alignment on Actor_GetOverlappingActors"); \ +static_assert(sizeof(Actor_GetOverlappingActors) == 0x000018, "Wrong size on Actor_GetOverlappingActors"); \ +static_assert(offsetof(Actor_GetOverlappingActors, OverlappingActors) == 0x000000, "Member 'Actor_GetOverlappingActors::OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetOverlappingActors, ClassFilter) == 0x000010, "Member 'Actor_GetOverlappingActors::ClassFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetOverlappingComponents \ +static_assert(alignof(Actor_GetOverlappingComponents) == 0x000008, "Wrong alignment on Actor_GetOverlappingComponents"); \ +static_assert(sizeof(Actor_GetOverlappingComponents) == 0x000010, "Wrong size on Actor_GetOverlappingComponents"); \ +static_assert(offsetof(Actor_GetOverlappingComponents, OverlappingComponents) == 0x000000, "Member 'Actor_GetOverlappingComponents::OverlappingComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetOwner \ +static_assert(alignof(Actor_GetOwner) == 0x000008, "Wrong alignment on Actor_GetOwner"); \ +static_assert(sizeof(Actor_GetOwner) == 0x000008, "Wrong size on Actor_GetOwner"); \ +static_assert(offsetof(Actor_GetOwner, ReturnValue) == 0x000000, "Member 'Actor_GetOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetParentActor \ +static_assert(alignof(Actor_GetParentActor) == 0x000008, "Wrong alignment on Actor_GetParentActor"); \ +static_assert(sizeof(Actor_GetParentActor) == 0x000008, "Wrong size on Actor_GetParentActor"); \ +static_assert(offsetof(Actor_GetParentActor, ReturnValue) == 0x000000, "Member 'Actor_GetParentActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetParentComponent \ +static_assert(alignof(Actor_GetParentComponent) == 0x000008, "Wrong alignment on Actor_GetParentComponent"); \ +static_assert(sizeof(Actor_GetParentComponent) == 0x000008, "Wrong size on Actor_GetParentComponent"); \ +static_assert(offsetof(Actor_GetParentComponent, ReturnValue) == 0x000000, "Member 'Actor_GetParentComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetRayTracingGroupId \ +static_assert(alignof(Actor_GetRayTracingGroupId) == 0x000004, "Wrong alignment on Actor_GetRayTracingGroupId"); \ +static_assert(sizeof(Actor_GetRayTracingGroupId) == 0x000004, "Wrong size on Actor_GetRayTracingGroupId"); \ +static_assert(offsetof(Actor_GetRayTracingGroupId, ReturnValue) == 0x000000, "Member 'Actor_GetRayTracingGroupId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetRemoteRole \ +static_assert(alignof(Actor_GetRemoteRole) == 0x000001, "Wrong alignment on Actor_GetRemoteRole"); \ +static_assert(sizeof(Actor_GetRemoteRole) == 0x000001, "Wrong size on Actor_GetRemoteRole"); \ +static_assert(offsetof(Actor_GetRemoteRole, ReturnValue) == 0x000000, "Member 'Actor_GetRemoteRole::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetResimulationThreshold \ +static_assert(alignof(Actor_GetResimulationThreshold) == 0x000004, "Wrong alignment on Actor_GetResimulationThreshold"); \ +static_assert(sizeof(Actor_GetResimulationThreshold) == 0x000004, "Wrong size on Actor_GetResimulationThreshold"); \ +static_assert(offsetof(Actor_GetResimulationThreshold, ReturnValue) == 0x000000, "Member 'Actor_GetResimulationThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetSquaredDistanceTo \ +static_assert(alignof(Actor_GetSquaredDistanceTo) == 0x000008, "Wrong alignment on Actor_GetSquaredDistanceTo"); \ +static_assert(sizeof(Actor_GetSquaredDistanceTo) == 0x000010, "Wrong size on Actor_GetSquaredDistanceTo"); \ +static_assert(offsetof(Actor_GetSquaredDistanceTo, OtherActor) == 0x000000, "Member 'Actor_GetSquaredDistanceTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetSquaredDistanceTo, ReturnValue) == 0x000008, "Member 'Actor_GetSquaredDistanceTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetSquaredHorizontalDistanceTo \ +static_assert(alignof(Actor_GetSquaredHorizontalDistanceTo) == 0x000008, "Wrong alignment on Actor_GetSquaredHorizontalDistanceTo"); \ +static_assert(sizeof(Actor_GetSquaredHorizontalDistanceTo) == 0x000010, "Wrong size on Actor_GetSquaredHorizontalDistanceTo"); \ +static_assert(offsetof(Actor_GetSquaredHorizontalDistanceTo, OtherActor) == 0x000000, "Member 'Actor_GetSquaredHorizontalDistanceTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetSquaredHorizontalDistanceTo, ReturnValue) == 0x000008, "Member 'Actor_GetSquaredHorizontalDistanceTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetTransform \ +static_assert(alignof(Actor_GetTransform) == 0x000010, "Wrong alignment on Actor_GetTransform"); \ +static_assert(sizeof(Actor_GetTransform) == 0x000060, "Wrong size on Actor_GetTransform"); \ +static_assert(offsetof(Actor_GetTransform, ReturnValue) == 0x000000, "Member 'Actor_GetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetVelocity \ +static_assert(alignof(Actor_GetVelocity) == 0x000008, "Wrong alignment on Actor_GetVelocity"); \ +static_assert(sizeof(Actor_GetVelocity) == 0x000018, "Wrong size on Actor_GetVelocity"); \ +static_assert(offsetof(Actor_GetVelocity, ReturnValue) == 0x000000, "Member 'Actor_GetVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_GetVerticalDistanceTo \ +static_assert(alignof(Actor_GetVerticalDistanceTo) == 0x000008, "Wrong alignment on Actor_GetVerticalDistanceTo"); \ +static_assert(sizeof(Actor_GetVerticalDistanceTo) == 0x000010, "Wrong size on Actor_GetVerticalDistanceTo"); \ +static_assert(offsetof(Actor_GetVerticalDistanceTo, OtherActor) == 0x000000, "Member 'Actor_GetVerticalDistanceTo::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Actor_GetVerticalDistanceTo, ReturnValue) == 0x000008, "Member 'Actor_GetVerticalDistanceTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_HasAuthority \ +static_assert(alignof(Actor_HasAuthority) == 0x000001, "Wrong alignment on Actor_HasAuthority"); \ +static_assert(sizeof(Actor_HasAuthority) == 0x000001, "Wrong size on Actor_HasAuthority"); \ +static_assert(offsetof(Actor_HasAuthority, ReturnValue) == 0x000000, "Member 'Actor_HasAuthority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_IsActorBeingDestroyed \ +static_assert(alignof(Actor_IsActorBeingDestroyed) == 0x000001, "Wrong alignment on Actor_IsActorBeingDestroyed"); \ +static_assert(sizeof(Actor_IsActorBeingDestroyed) == 0x000001, "Wrong size on Actor_IsActorBeingDestroyed"); \ +static_assert(offsetof(Actor_IsActorBeingDestroyed, ReturnValue) == 0x000000, "Member 'Actor_IsActorBeingDestroyed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_IsActorTickEnabled \ +static_assert(alignof(Actor_IsActorTickEnabled) == 0x000001, "Wrong alignment on Actor_IsActorTickEnabled"); \ +static_assert(sizeof(Actor_IsActorTickEnabled) == 0x000001, "Wrong size on Actor_IsActorTickEnabled"); \ +static_assert(offsetof(Actor_IsActorTickEnabled, ReturnValue) == 0x000000, "Member 'Actor_IsActorTickEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_IsChildActor \ +static_assert(alignof(Actor_IsChildActor) == 0x000001, "Wrong alignment on Actor_IsChildActor"); \ +static_assert(sizeof(Actor_IsChildActor) == 0x000001, "Wrong size on Actor_IsChildActor"); \ +static_assert(offsetof(Actor_IsChildActor, ReturnValue) == 0x000000, "Member 'Actor_IsChildActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_IsOverlappingActor \ +static_assert(alignof(Actor_IsOverlappingActor) == 0x000008, "Wrong alignment on Actor_IsOverlappingActor"); \ +static_assert(sizeof(Actor_IsOverlappingActor) == 0x000010, "Wrong size on Actor_IsOverlappingActor"); \ +static_assert(offsetof(Actor_IsOverlappingActor, Other) == 0x000000, "Member 'Actor_IsOverlappingActor::Other' has a wrong offset!"); \ +static_assert(offsetof(Actor_IsOverlappingActor, ReturnValue) == 0x000008, "Member 'Actor_IsOverlappingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_GetActorLocation \ +static_assert(alignof(Actor_K2_GetActorLocation) == 0x000008, "Wrong alignment on Actor_K2_GetActorLocation"); \ +static_assert(sizeof(Actor_K2_GetActorLocation) == 0x000018, "Wrong size on Actor_K2_GetActorLocation"); \ +static_assert(offsetof(Actor_K2_GetActorLocation, ReturnValue) == 0x000000, "Member 'Actor_K2_GetActorLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_GetActorRotation \ +static_assert(alignof(Actor_K2_GetActorRotation) == 0x000008, "Wrong alignment on Actor_K2_GetActorRotation"); \ +static_assert(sizeof(Actor_K2_GetActorRotation) == 0x000018, "Wrong size on Actor_K2_GetActorRotation"); \ +static_assert(offsetof(Actor_K2_GetActorRotation, ReturnValue) == 0x000000, "Member 'Actor_K2_GetActorRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_GetComponentsByClass \ +static_assert(alignof(Actor_K2_GetComponentsByClass) == 0x000008, "Wrong alignment on Actor_K2_GetComponentsByClass"); \ +static_assert(sizeof(Actor_K2_GetComponentsByClass) == 0x000018, "Wrong size on Actor_K2_GetComponentsByClass"); \ +static_assert(offsetof(Actor_K2_GetComponentsByClass, ComponentClass) == 0x000000, "Member 'Actor_K2_GetComponentsByClass::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(Actor_K2_GetComponentsByClass, ReturnValue) == 0x000008, "Member 'Actor_K2_GetComponentsByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_K2_GetRootComponent \ +static_assert(alignof(Actor_K2_GetRootComponent) == 0x000008, "Wrong alignment on Actor_K2_GetRootComponent"); \ +static_assert(sizeof(Actor_K2_GetRootComponent) == 0x000008, "Wrong size on Actor_K2_GetRootComponent"); \ +static_assert(offsetof(Actor_K2_GetRootComponent, ReturnValue) == 0x000000, "Member 'Actor_K2_GetRootComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Actor_WasRecentlyRendered \ +static_assert(alignof(Actor_WasRecentlyRendered) == 0x000004, "Wrong alignment on Actor_WasRecentlyRendered"); \ +static_assert(sizeof(Actor_WasRecentlyRendered) == 0x000008, "Wrong size on Actor_WasRecentlyRendered"); \ +static_assert(offsetof(Actor_WasRecentlyRendered, Tolerance) == 0x000000, "Member 'Actor_WasRecentlyRendered::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(Actor_WasRecentlyRendered, ReturnValue) == 0x000004, "Member 'Actor_WasRecentlyRendered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AActor \ +static_assert(alignof(AActor) == 0x000008, "Wrong alignment on AActor"); \ +static_assert(sizeof(AActor) == 0x000298, "Wrong size on AActor"); \ +static_assert(offsetof(AActor, PrimaryActorTick) == 0x000028, "Member 'AActor::PrimaryActorTick' has a wrong offset!"); \ +static_assert(offsetof(AActor, UpdateOverlapsMethodDuringLevelStreaming) == 0x00005E, "Member 'AActor::UpdateOverlapsMethodDuringLevelStreaming' has a wrong offset!"); \ +static_assert(offsetof(AActor, DefaultUpdateOverlapsMethodDuringLevelStreaming) == 0x00005F, "Member 'AActor::DefaultUpdateOverlapsMethodDuringLevelStreaming' has a wrong offset!"); \ +static_assert(offsetof(AActor, InitialLifeSpan) == 0x000060, "Member 'AActor::InitialLifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AActor, CustomTimeDilation) == 0x000064, "Member 'AActor::CustomTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AActor, RemoteRole) == 0x000068, "Member 'AActor::RemoteRole' has a wrong offset!"); \ +static_assert(offsetof(AActor, RayTracingGroupId) == 0x00006C, "Member 'AActor::RayTracingGroupId' has a wrong offset!"); \ +static_assert(offsetof(AActor, AttachmentReplication) == 0x000070, "Member 'AActor::AttachmentReplication' has a wrong offset!"); \ +static_assert(offsetof(AActor, ReplicatedMovement) == 0x0000D0, "Member 'AActor::ReplicatedMovement' has a wrong offset!"); \ +static_assert(offsetof(AActor, Owner) == 0x000140, "Member 'AActor::Owner' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetDriverName) == 0x000148, "Member 'AActor::NetDriverName' has a wrong offset!"); \ +static_assert(offsetof(AActor, Role) == 0x000150, "Member 'AActor::Role' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetDormancy) == 0x000151, "Member 'AActor::NetDormancy' has a wrong offset!"); \ +static_assert(offsetof(AActor, SpawnCollisionHandlingMethod) == 0x000152, "Member 'AActor::SpawnCollisionHandlingMethod' has a wrong offset!"); \ +static_assert(offsetof(AActor, AutoReceiveInput) == 0x000153, "Member 'AActor::AutoReceiveInput' has a wrong offset!"); \ +static_assert(offsetof(AActor, InputPriority) == 0x000154, "Member 'AActor::InputPriority' has a wrong offset!"); \ +static_assert(offsetof(AActor, InputComponent) == 0x000160, "Member 'AActor::InputComponent' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetCullDistanceSquared) == 0x000168, "Member 'AActor::NetCullDistanceSquared' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetTag) == 0x00016C, "Member 'AActor::NetTag' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetUpdateFrequency) == 0x000170, "Member 'AActor::NetUpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(AActor, MinNetUpdateFrequency) == 0x000174, "Member 'AActor::MinNetUpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(AActor, NetPriority) == 0x000178, "Member 'AActor::NetPriority' has a wrong offset!"); \ +static_assert(offsetof(AActor, PhysicsReplicationMode) == 0x00017C, "Member 'AActor::PhysicsReplicationMode' has a wrong offset!"); \ +static_assert(offsetof(AActor, Instigator) == 0x000188, "Member 'AActor::Instigator' has a wrong offset!"); \ +static_assert(offsetof(AActor, Children) == 0x000190, "Member 'AActor::Children' has a wrong offset!"); \ +static_assert(offsetof(AActor, RootComponent) == 0x0001A0, "Member 'AActor::RootComponent' has a wrong offset!"); \ +static_assert(offsetof(AActor, Layers) == 0x0001B0, "Member 'AActor::Layers' has a wrong offset!"); \ +static_assert(offsetof(AActor, ParentComponent) == 0x0001C0, "Member 'AActor::ParentComponent' has a wrong offset!"); \ +static_assert(offsetof(AActor, Tags) == 0x0001C8, "Member 'AActor::Tags' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnTakeAnyDamage) == 0x0001D8, "Member 'AActor::OnTakeAnyDamage' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnTakePointDamage) == 0x0001D9, "Member 'AActor::OnTakePointDamage' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnTakeRadialDamage) == 0x0001DA, "Member 'AActor::OnTakeRadialDamage' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnActorBeginOverlap) == 0x0001DB, "Member 'AActor::OnActorBeginOverlap' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnActorEndOverlap) == 0x0001DC, "Member 'AActor::OnActorEndOverlap' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnBeginCursorOver) == 0x0001DD, "Member 'AActor::OnBeginCursorOver' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnEndCursorOver) == 0x0001DE, "Member 'AActor::OnEndCursorOver' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnClicked) == 0x0001DF, "Member 'AActor::OnClicked' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnReleased) == 0x0001E0, "Member 'AActor::OnReleased' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnInputTouchBegin) == 0x0001E1, "Member 'AActor::OnInputTouchBegin' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnInputTouchEnd) == 0x0001E2, "Member 'AActor::OnInputTouchEnd' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnInputTouchEnter) == 0x0001E3, "Member 'AActor::OnInputTouchEnter' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnInputTouchLeave) == 0x0001E4, "Member 'AActor::OnInputTouchLeave' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnActorHit) == 0x0001E5, "Member 'AActor::OnActorHit' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnDestroyed) == 0x0001E6, "Member 'AActor::OnDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AActor, OnEndPlay) == 0x0001E7, "Member 'AActor::OnEndPlay' has a wrong offset!"); \ +static_assert(offsetof(AActor, InstanceComponents) == 0x000268, "Member 'AActor::InstanceComponents' has a wrong offset!"); \ +static_assert(offsetof(AActor, BlueprintCreatedComponents) == 0x000278, "Member 'AActor::BlueprintCreatedComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDeriveNormalZ \ +static_assert(alignof(UMaterialExpressionDeriveNormalZ) == 0x000008, "Wrong alignment on UMaterialExpressionDeriveNormalZ"); \ +static_assert(sizeof(UMaterialExpressionDeriveNormalZ) == 0x0000D8, "Wrong size on UMaterialExpressionDeriveNormalZ"); \ +static_assert(offsetof(UMaterialExpressionDeriveNormalZ, InXY) == 0x0000B0, "Member 'UMaterialExpressionDeriveNormalZ::InXY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_AddDebugText \ +static_assert(alignof(HUD_AddDebugText) == 0x000008, "Wrong alignment on HUD_AddDebugText"); \ +static_assert(sizeof(HUD_AddDebugText) == 0x000068, "Wrong size on HUD_AddDebugText"); \ +static_assert(offsetof(HUD_AddDebugText, DebugText) == 0x000000, "Member 'HUD_AddDebugText::DebugText' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, SrcActor) == 0x000010, "Member 'HUD_AddDebugText::SrcActor' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, Duration) == 0x000018, "Member 'HUD_AddDebugText::Duration' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, Offset) == 0x000020, "Member 'HUD_AddDebugText::Offset' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, DesiredOffset) == 0x000038, "Member 'HUD_AddDebugText::DesiredOffset' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, TextColor) == 0x000050, "Member 'HUD_AddDebugText::TextColor' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, bSkipOverwriteCheck) == 0x000054, "Member 'HUD_AddDebugText::bSkipOverwriteCheck' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, bAbsoluteLocation) == 0x000055, "Member 'HUD_AddDebugText::bAbsoluteLocation' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, bKeepAttachedToActor) == 0x000056, "Member 'HUD_AddDebugText::bKeepAttachedToActor' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, InFont) == 0x000058, "Member 'HUD_AddDebugText::InFont' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, FontScale) == 0x000060, "Member 'HUD_AddDebugText::FontScale' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddDebugText, bDrawShadow) == 0x000064, "Member 'HUD_AddDebugText::bDrawShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_AddHitBox \ +static_assert(alignof(HUD_AddHitBox) == 0x000008, "Wrong alignment on HUD_AddHitBox"); \ +static_assert(sizeof(HUD_AddHitBox) == 0x000030, "Wrong size on HUD_AddHitBox"); \ +static_assert(offsetof(HUD_AddHitBox, Position) == 0x000000, "Member 'HUD_AddHitBox::Position' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddHitBox, Size) == 0x000010, "Member 'HUD_AddHitBox::Size' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddHitBox, InName) == 0x000020, "Member 'HUD_AddHitBox::InName' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddHitBox, bConsumesInput) == 0x000028, "Member 'HUD_AddHitBox::bConsumesInput' has a wrong offset!"); \ +static_assert(offsetof(HUD_AddHitBox, Priority) == 0x00002C, "Member 'HUD_AddHitBox::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawLine \ +static_assert(alignof(HUD_DrawLine) == 0x000004, "Wrong alignment on HUD_DrawLine"); \ +static_assert(sizeof(HUD_DrawLine) == 0x000024, "Wrong size on HUD_DrawLine"); \ +static_assert(offsetof(HUD_DrawLine, StartScreenX) == 0x000000, "Member 'HUD_DrawLine::StartScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawLine, StartScreenY) == 0x000004, "Member 'HUD_DrawLine::StartScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawLine, EndScreenX) == 0x000008, "Member 'HUD_DrawLine::EndScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawLine, EndScreenY) == 0x00000C, "Member 'HUD_DrawLine::EndScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawLine, LineColor) == 0x000010, "Member 'HUD_DrawLine::LineColor' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawLine, LineThickness) == 0x000020, "Member 'HUD_DrawLine::LineThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawMaterial \ +static_assert(alignof(HUD_DrawMaterial) == 0x000008, "Wrong alignment on HUD_DrawMaterial"); \ +static_assert(sizeof(HUD_DrawMaterial) == 0x000048, "Wrong size on HUD_DrawMaterial"); \ +static_assert(offsetof(HUD_DrawMaterial, Material) == 0x000000, "Member 'HUD_DrawMaterial::Material' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, ScreenX) == 0x000008, "Member 'HUD_DrawMaterial::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, ScreenY) == 0x00000C, "Member 'HUD_DrawMaterial::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, ScreenW) == 0x000010, "Member 'HUD_DrawMaterial::ScreenW' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, ScreenH) == 0x000014, "Member 'HUD_DrawMaterial::ScreenH' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, MaterialU) == 0x000018, "Member 'HUD_DrawMaterial::MaterialU' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, MaterialV) == 0x00001C, "Member 'HUD_DrawMaterial::MaterialV' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, MaterialUWidth) == 0x000020, "Member 'HUD_DrawMaterial::MaterialUWidth' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, MaterialVHeight) == 0x000024, "Member 'HUD_DrawMaterial::MaterialVHeight' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, Scale) == 0x000028, "Member 'HUD_DrawMaterial::Scale' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, bScalePosition) == 0x00002C, "Member 'HUD_DrawMaterial::bScalePosition' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, Rotation) == 0x000030, "Member 'HUD_DrawMaterial::Rotation' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterial, RotPivot) == 0x000038, "Member 'HUD_DrawMaterial::RotPivot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawMaterialSimple \ +static_assert(alignof(HUD_DrawMaterialSimple) == 0x000008, "Wrong alignment on HUD_DrawMaterialSimple"); \ +static_assert(sizeof(HUD_DrawMaterialSimple) == 0x000020, "Wrong size on HUD_DrawMaterialSimple"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, Material) == 0x000000, "Member 'HUD_DrawMaterialSimple::Material' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, ScreenX) == 0x000008, "Member 'HUD_DrawMaterialSimple::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, ScreenY) == 0x00000C, "Member 'HUD_DrawMaterialSimple::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, ScreenW) == 0x000010, "Member 'HUD_DrawMaterialSimple::ScreenW' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, ScreenH) == 0x000014, "Member 'HUD_DrawMaterialSimple::ScreenH' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, Scale) == 0x000018, "Member 'HUD_DrawMaterialSimple::Scale' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialSimple, bScalePosition) == 0x00001C, "Member 'HUD_DrawMaterialSimple::bScalePosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawMaterialTriangle \ +static_assert(alignof(HUD_DrawMaterialTriangle) == 0x000008, "Wrong alignment on HUD_DrawMaterialTriangle"); \ +static_assert(sizeof(HUD_DrawMaterialTriangle) == 0x000098, "Wrong size on HUD_DrawMaterialTriangle"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, Material) == 0x000000, "Member 'HUD_DrawMaterialTriangle::Material' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V0_Pos) == 0x000008, "Member 'HUD_DrawMaterialTriangle::V0_Pos' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V1_Pos) == 0x000018, "Member 'HUD_DrawMaterialTriangle::V1_Pos' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V2_Pos) == 0x000028, "Member 'HUD_DrawMaterialTriangle::V2_Pos' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V0_UV) == 0x000038, "Member 'HUD_DrawMaterialTriangle::V0_UV' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V1_UV) == 0x000048, "Member 'HUD_DrawMaterialTriangle::V1_UV' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V2_UV) == 0x000058, "Member 'HUD_DrawMaterialTriangle::V2_UV' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V0_Color) == 0x000068, "Member 'HUD_DrawMaterialTriangle::V0_Color' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V1_Color) == 0x000078, "Member 'HUD_DrawMaterialTriangle::V1_Color' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawMaterialTriangle, V2_Color) == 0x000088, "Member 'HUD_DrawMaterialTriangle::V2_Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawRect \ +static_assert(alignof(HUD_DrawRect) == 0x000004, "Wrong alignment on HUD_DrawRect"); \ +static_assert(sizeof(HUD_DrawRect) == 0x000020, "Wrong size on HUD_DrawRect"); \ +static_assert(offsetof(HUD_DrawRect, RectColor) == 0x000000, "Member 'HUD_DrawRect::RectColor' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawRect, ScreenX) == 0x000010, "Member 'HUD_DrawRect::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawRect, ScreenY) == 0x000014, "Member 'HUD_DrawRect::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawRect, ScreenW) == 0x000018, "Member 'HUD_DrawRect::ScreenW' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawRect, ScreenH) == 0x00001C, "Member 'HUD_DrawRect::ScreenH' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawText \ +static_assert(alignof(HUD_DrawText) == 0x000008, "Wrong alignment on HUD_DrawText"); \ +static_assert(sizeof(HUD_DrawText) == 0x000038, "Wrong size on HUD_DrawText"); \ +static_assert(offsetof(HUD_DrawText, Text) == 0x000000, "Member 'HUD_DrawText::Text' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, TextColor) == 0x000010, "Member 'HUD_DrawText::TextColor' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, ScreenX) == 0x000020, "Member 'HUD_DrawText::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, ScreenY) == 0x000024, "Member 'HUD_DrawText::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, Font) == 0x000028, "Member 'HUD_DrawText::Font' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, Scale) == 0x000030, "Member 'HUD_DrawText::Scale' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawText, bScalePosition) == 0x000034, "Member 'HUD_DrawText::bScalePosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawTexture \ +static_assert(alignof(HUD_DrawTexture) == 0x000008, "Wrong alignment on HUD_DrawTexture"); \ +static_assert(sizeof(HUD_DrawTexture) == 0x000058, "Wrong size on HUD_DrawTexture"); \ +static_assert(offsetof(HUD_DrawTexture, Texture) == 0x000000, "Member 'HUD_DrawTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, ScreenX) == 0x000008, "Member 'HUD_DrawTexture::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, ScreenY) == 0x00000C, "Member 'HUD_DrawTexture::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, ScreenW) == 0x000010, "Member 'HUD_DrawTexture::ScreenW' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, ScreenH) == 0x000014, "Member 'HUD_DrawTexture::ScreenH' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, TextureU) == 0x000018, "Member 'HUD_DrawTexture::TextureU' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, TextureV) == 0x00001C, "Member 'HUD_DrawTexture::TextureV' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, TextureUWidth) == 0x000020, "Member 'HUD_DrawTexture::TextureUWidth' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, TextureVHeight) == 0x000024, "Member 'HUD_DrawTexture::TextureVHeight' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, TintColor) == 0x000028, "Member 'HUD_DrawTexture::TintColor' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, BlendMode) == 0x000038, "Member 'HUD_DrawTexture::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, Scale) == 0x00003C, "Member 'HUD_DrawTexture::Scale' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, bScalePosition) == 0x000040, "Member 'HUD_DrawTexture::bScalePosition' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, Rotation) == 0x000044, "Member 'HUD_DrawTexture::Rotation' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTexture, RotPivot) == 0x000048, "Member 'HUD_DrawTexture::RotPivot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_DrawTextureSimple \ +static_assert(alignof(HUD_DrawTextureSimple) == 0x000008, "Wrong alignment on HUD_DrawTextureSimple"); \ +static_assert(sizeof(HUD_DrawTextureSimple) == 0x000018, "Wrong size on HUD_DrawTextureSimple"); \ +static_assert(offsetof(HUD_DrawTextureSimple, Texture) == 0x000000, "Member 'HUD_DrawTextureSimple::Texture' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTextureSimple, ScreenX) == 0x000008, "Member 'HUD_DrawTextureSimple::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTextureSimple, ScreenY) == 0x00000C, "Member 'HUD_DrawTextureSimple::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTextureSimple, Scale) == 0x000010, "Member 'HUD_DrawTextureSimple::Scale' has a wrong offset!"); \ +static_assert(offsetof(HUD_DrawTextureSimple, bScalePosition) == 0x000014, "Member 'HUD_DrawTextureSimple::bScalePosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_GetActorsInSelectionRectangle \ +static_assert(alignof(HUD_GetActorsInSelectionRectangle) == 0x000008, "Wrong alignment on HUD_GetActorsInSelectionRectangle"); \ +static_assert(sizeof(HUD_GetActorsInSelectionRectangle) == 0x000040, "Wrong size on HUD_GetActorsInSelectionRectangle"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, ClassFilter) == 0x000000, "Member 'HUD_GetActorsInSelectionRectangle::ClassFilter' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, FirstPoint) == 0x000008, "Member 'HUD_GetActorsInSelectionRectangle::FirstPoint' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, SecondPoint) == 0x000018, "Member 'HUD_GetActorsInSelectionRectangle::SecondPoint' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, OutActors) == 0x000028, "Member 'HUD_GetActorsInSelectionRectangle::OutActors' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, bIncludeNonCollidingComponents) == 0x000038, "Member 'HUD_GetActorsInSelectionRectangle::bIncludeNonCollidingComponents' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetActorsInSelectionRectangle, bActorMustBeFullyEnclosed) == 0x000039, "Member 'HUD_GetActorsInSelectionRectangle::bActorMustBeFullyEnclosed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ReceiveDrawHUD \ +static_assert(alignof(HUD_ReceiveDrawHUD) == 0x000004, "Wrong alignment on HUD_ReceiveDrawHUD"); \ +static_assert(sizeof(HUD_ReceiveDrawHUD) == 0x000008, "Wrong size on HUD_ReceiveDrawHUD"); \ +static_assert(offsetof(HUD_ReceiveDrawHUD, SizeX) == 0x000000, "Member 'HUD_ReceiveDrawHUD::SizeX' has a wrong offset!"); \ +static_assert(offsetof(HUD_ReceiveDrawHUD, SizeY) == 0x000004, "Member 'HUD_ReceiveDrawHUD::SizeY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ReceiveHitBoxBeginCursorOver \ +static_assert(alignof(HUD_ReceiveHitBoxBeginCursorOver) == 0x000004, "Wrong alignment on HUD_ReceiveHitBoxBeginCursorOver"); \ +static_assert(sizeof(HUD_ReceiveHitBoxBeginCursorOver) == 0x000008, "Wrong size on HUD_ReceiveHitBoxBeginCursorOver"); \ +static_assert(offsetof(HUD_ReceiveHitBoxBeginCursorOver, BoxName) == 0x000000, "Member 'HUD_ReceiveHitBoxBeginCursorOver::BoxName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ReceiveHitBoxClick \ +static_assert(alignof(HUD_ReceiveHitBoxClick) == 0x000004, "Wrong alignment on HUD_ReceiveHitBoxClick"); \ +static_assert(sizeof(HUD_ReceiveHitBoxClick) == 0x000008, "Wrong size on HUD_ReceiveHitBoxClick"); \ +static_assert(offsetof(HUD_ReceiveHitBoxClick, BoxName) == 0x000000, "Member 'HUD_ReceiveHitBoxClick::BoxName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ReceiveHitBoxEndCursorOver \ +static_assert(alignof(HUD_ReceiveHitBoxEndCursorOver) == 0x000004, "Wrong alignment on HUD_ReceiveHitBoxEndCursorOver"); \ +static_assert(sizeof(HUD_ReceiveHitBoxEndCursorOver) == 0x000008, "Wrong size on HUD_ReceiveHitBoxEndCursorOver"); \ +static_assert(offsetof(HUD_ReceiveHitBoxEndCursorOver, BoxName) == 0x000000, "Member 'HUD_ReceiveHitBoxEndCursorOver::BoxName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ReceiveHitBoxRelease \ +static_assert(alignof(HUD_ReceiveHitBoxRelease) == 0x000004, "Wrong alignment on HUD_ReceiveHitBoxRelease"); \ +static_assert(sizeof(HUD_ReceiveHitBoxRelease) == 0x000008, "Wrong size on HUD_ReceiveHitBoxRelease"); \ +static_assert(offsetof(HUD_ReceiveHitBoxRelease, BoxName) == 0x000000, "Member 'HUD_ReceiveHitBoxRelease::BoxName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_RemoveDebugText \ +static_assert(alignof(HUD_RemoveDebugText) == 0x000008, "Wrong alignment on HUD_RemoveDebugText"); \ +static_assert(sizeof(HUD_RemoveDebugText) == 0x000010, "Wrong size on HUD_RemoveDebugText"); \ +static_assert(offsetof(HUD_RemoveDebugText, SrcActor) == 0x000000, "Member 'HUD_RemoveDebugText::SrcActor' has a wrong offset!"); \ +static_assert(offsetof(HUD_RemoveDebugText, bLeaveDurationText) == 0x000008, "Member 'HUD_RemoveDebugText::bLeaveDurationText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ShowDebug \ +static_assert(alignof(HUD_ShowDebug) == 0x000004, "Wrong alignment on HUD_ShowDebug"); \ +static_assert(sizeof(HUD_ShowDebug) == 0x000008, "Wrong size on HUD_ShowDebug"); \ +static_assert(offsetof(HUD_ShowDebug, DebugType) == 0x000000, "Member 'HUD_ShowDebug::DebugType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ShowDebugForReticleTargetToggle \ +static_assert(alignof(HUD_ShowDebugForReticleTargetToggle) == 0x000008, "Wrong alignment on HUD_ShowDebugForReticleTargetToggle"); \ +static_assert(sizeof(HUD_ShowDebugForReticleTargetToggle) == 0x000008, "Wrong size on HUD_ShowDebugForReticleTargetToggle"); \ +static_assert(offsetof(HUD_ShowDebugForReticleTargetToggle, DesiredClass) == 0x000000, "Member 'HUD_ShowDebugForReticleTargetToggle::DesiredClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_ShowDebugToggleSubCategory \ +static_assert(alignof(HUD_ShowDebugToggleSubCategory) == 0x000004, "Wrong alignment on HUD_ShowDebugToggleSubCategory"); \ +static_assert(sizeof(HUD_ShowDebugToggleSubCategory) == 0x000008, "Wrong size on HUD_ShowDebugToggleSubCategory"); \ +static_assert(offsetof(HUD_ShowDebugToggleSubCategory, Category) == 0x000000, "Member 'HUD_ShowDebugToggleSubCategory::Category' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_Deproject \ +static_assert(alignof(HUD_Deproject) == 0x000008, "Wrong alignment on HUD_Deproject"); \ +static_assert(sizeof(HUD_Deproject) == 0x000038, "Wrong size on HUD_Deproject"); \ +static_assert(offsetof(HUD_Deproject, ScreenX) == 0x000000, "Member 'HUD_Deproject::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(HUD_Deproject, ScreenY) == 0x000004, "Member 'HUD_Deproject::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(HUD_Deproject, WorldPosition) == 0x000008, "Member 'HUD_Deproject::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(HUD_Deproject, WorldDirection) == 0x000020, "Member 'HUD_Deproject::WorldDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_GetOwningPawn \ +static_assert(alignof(HUD_GetOwningPawn) == 0x000008, "Wrong alignment on HUD_GetOwningPawn"); \ +static_assert(sizeof(HUD_GetOwningPawn) == 0x000008, "Wrong size on HUD_GetOwningPawn"); \ +static_assert(offsetof(HUD_GetOwningPawn, ReturnValue) == 0x000000, "Member 'HUD_GetOwningPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_GetOwningPlayerController \ +static_assert(alignof(HUD_GetOwningPlayerController) == 0x000008, "Wrong alignment on HUD_GetOwningPlayerController"); \ +static_assert(sizeof(HUD_GetOwningPlayerController) == 0x000008, "Wrong size on HUD_GetOwningPlayerController"); \ +static_assert(offsetof(HUD_GetOwningPlayerController, ReturnValue) == 0x000000, "Member 'HUD_GetOwningPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_GetTextSize \ +static_assert(alignof(HUD_GetTextSize) == 0x000008, "Wrong alignment on HUD_GetTextSize"); \ +static_assert(sizeof(HUD_GetTextSize) == 0x000028, "Wrong size on HUD_GetTextSize"); \ +static_assert(offsetof(HUD_GetTextSize, Text) == 0x000000, "Member 'HUD_GetTextSize::Text' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetTextSize, OutWidth) == 0x000010, "Member 'HUD_GetTextSize::OutWidth' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetTextSize, OutHeight) == 0x000014, "Member 'HUD_GetTextSize::OutHeight' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetTextSize, Font) == 0x000018, "Member 'HUD_GetTextSize::Font' has a wrong offset!"); \ +static_assert(offsetof(HUD_GetTextSize, Scale) == 0x000020, "Member 'HUD_GetTextSize::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HUD_Project \ +static_assert(alignof(HUD_Project) == 0x000008, "Wrong alignment on HUD_Project"); \ +static_assert(sizeof(HUD_Project) == 0x000038, "Wrong size on HUD_Project"); \ +static_assert(offsetof(HUD_Project, Location) == 0x000000, "Member 'HUD_Project::Location' has a wrong offset!"); \ +static_assert(offsetof(HUD_Project, bClampToZeroPlane) == 0x000018, "Member 'HUD_Project::bClampToZeroPlane' has a wrong offset!"); \ +static_assert(offsetof(HUD_Project, ReturnValue) == 0x000020, "Member 'HUD_Project::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHUD \ +static_assert(alignof(AHUD) == 0x000008, "Wrong alignment on AHUD"); \ +static_assert(sizeof(AHUD) == 0x000388, "Wrong size on AHUD"); \ +static_assert(offsetof(AHUD, PlayerOwner) == 0x000298, "Member 'AHUD::PlayerOwner' has a wrong offset!"); \ +static_assert(offsetof(AHUD, CurrentTargetIndex) == 0x0002A4, "Member 'AHUD::CurrentTargetIndex' has a wrong offset!"); \ +static_assert(offsetof(AHUD, PostRenderedActors) == 0x0002B0, "Member 'AHUD::PostRenderedActors' has a wrong offset!"); \ +static_assert(offsetof(AHUD, DebugDisplay) == 0x0002C8, "Member 'AHUD::DebugDisplay' has a wrong offset!"); \ +static_assert(offsetof(AHUD, ToggledDebugCategories) == 0x0002D8, "Member 'AHUD::ToggledDebugCategories' has a wrong offset!"); \ +static_assert(offsetof(AHUD, Canvas) == 0x0002E8, "Member 'AHUD::Canvas' has a wrong offset!"); \ +static_assert(offsetof(AHUD, DebugCanvas) == 0x0002F0, "Member 'AHUD::DebugCanvas' has a wrong offset!"); \ +static_assert(offsetof(AHUD, DebugTextList) == 0x0002F8, "Member 'AHUD::DebugTextList' has a wrong offset!"); \ +static_assert(offsetof(AHUD, ShowDebugTargetDesiredClass) == 0x000308, "Member 'AHUD::ShowDebugTargetDesiredClass' has a wrong offset!"); \ +static_assert(offsetof(AHUD, ShowDebugTargetActor) == 0x000310, "Member 'AHUD::ShowDebugTargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AInfo \ +static_assert(alignof(AInfo) == 0x000008, "Wrong alignment on AInfo"); \ +static_assert(sizeof(AInfo) == 0x000298, "Wrong size on AInfo"); \ + +#define DUMPER7_ASSERTS_ASkyLight \ +static_assert(alignof(ASkyLight) == 0x000008, "Wrong alignment on ASkyLight"); \ +static_assert(sizeof(ASkyLight) == 0x0002A8, "Wrong size on ASkyLight"); \ +static_assert(offsetof(ASkyLight, LightComponent) == 0x000298, "Member 'ASkyLight::LightComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundBase_IsAttenuationSettingsEditable \ +static_assert(alignof(SoundBase_IsAttenuationSettingsEditable) == 0x000001, "Wrong alignment on SoundBase_IsAttenuationSettingsEditable"); \ +static_assert(sizeof(SoundBase_IsAttenuationSettingsEditable) == 0x000001, "Wrong size on SoundBase_IsAttenuationSettingsEditable"); \ +static_assert(offsetof(SoundBase_IsAttenuationSettingsEditable, ReturnValue) == 0x000000, "Member 'SoundBase_IsAttenuationSettingsEditable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundBase \ +static_assert(alignof(USoundBase) == 0x000008, "Wrong alignment on USoundBase"); \ +static_assert(sizeof(USoundBase) == 0x000168, "Wrong size on USoundBase"); \ +static_assert(offsetof(USoundBase, SoundClassObject) == 0x000030, "Member 'USoundBase::SoundClassObject' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, VirtualizationMode) == 0x000039, "Member 'USoundBase::VirtualizationMode' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, ConcurrencySet) == 0x000090, "Member 'USoundBase::ConcurrencySet' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, ConcurrencyOverrides) == 0x0000E0, "Member 'USoundBase::ConcurrencyOverrides' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, Duration) == 0x000100, "Member 'USoundBase::Duration' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, MaxDistance) == 0x000104, "Member 'USoundBase::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, TotalSamples) == 0x000108, "Member 'USoundBase::TotalSamples' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, Priority) == 0x00010C, "Member 'USoundBase::Priority' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, AttenuationSettings) == 0x000110, "Member 'USoundBase::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, SoundSubmixObject) == 0x000118, "Member 'USoundBase::SoundSubmixObject' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, SoundSubmixSends) == 0x000120, "Member 'USoundBase::SoundSubmixSends' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, SourceEffectChain) == 0x000130, "Member 'USoundBase::SourceEffectChain' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, BusSends) == 0x000138, "Member 'USoundBase::BusSends' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, PreEffectBusSends) == 0x000148, "Member 'USoundBase::PreEffectBusSends' has a wrong offset!"); \ +static_assert(offsetof(USoundBase, AssetUserData) == 0x000158, "Member 'USoundBase::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASkyAtmosphere \ +static_assert(alignof(ASkyAtmosphere) == 0x000008, "Wrong alignment on ASkyAtmosphere"); \ +static_assert(sizeof(ASkyAtmosphere) == 0x0002A0, "Wrong size on ASkyAtmosphere"); \ +static_assert(offsetof(ASkyAtmosphere, SkyAtmosphereComponent) == 0x000298, "Member 'ASkyAtmosphere::SkyAtmosphereComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshDeformer \ +static_assert(alignof(UMeshDeformer) == 0x000008, "Wrong alignment on UMeshDeformer"); \ +static_assert(sizeof(UMeshDeformer) == 0x000028, "Wrong size on UMeshDeformer"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRgbToHsv \ +static_assert(alignof(UMaterialExpressionRgbToHsv) == 0x000008, "Wrong alignment on UMaterialExpressionRgbToHsv"); \ +static_assert(sizeof(UMaterialExpressionRgbToHsv) == 0x0000D8, "Wrong size on UMaterialExpressionRgbToHsv"); \ +static_assert(offsetof(UMaterialExpressionRgbToHsv, Input) == 0x0000B0, "Member 'UMaterialExpressionRgbToHsv::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintFunctionLibrary \ +static_assert(alignof(UBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UBlueprintFunctionLibrary"); \ +static_assert(sizeof(UBlueprintFunctionLibrary) == 0x000028, "Wrong size on UBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionInterface \ +static_assert(alignof(UMaterialFunctionInterface) == 0x000008, "Wrong alignment on UMaterialFunctionInterface"); \ +static_assert(sizeof(UMaterialFunctionInterface) == 0x000040, "Wrong size on UMaterialFunctionInterface"); \ +static_assert(offsetof(UMaterialFunctionInterface, StateId) == 0x000028, "Member 'UMaterialFunctionInterface::StateId' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInterface, MaterialFunctionUsage) == 0x000038, "Member 'UMaterialFunctionInterface::MaterialFunctionUsage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionInstance \ +static_assert(alignof(UMaterialFunctionInstance) == 0x000008, "Wrong alignment on UMaterialFunctionInstance"); \ +static_assert(sizeof(UMaterialFunctionInstance) == 0x0000E0, "Wrong size on UMaterialFunctionInstance"); \ +static_assert(offsetof(UMaterialFunctionInstance, Parent) == 0x000040, "Member 'UMaterialFunctionInstance::Parent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, base) == 0x000048, "Member 'UMaterialFunctionInstance::base' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, ScalarParameterValues) == 0x000050, "Member 'UMaterialFunctionInstance::ScalarParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, VectorParameterValues) == 0x000060, "Member 'UMaterialFunctionInstance::VectorParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, DoubleVectorParameterValues) == 0x000070, "Member 'UMaterialFunctionInstance::DoubleVectorParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, TextureParameterValues) == 0x000080, "Member 'UMaterialFunctionInstance::TextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, FontParameterValues) == 0x000090, "Member 'UMaterialFunctionInstance::FontParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, StaticSwitchParameterValues) == 0x0000A0, "Member 'UMaterialFunctionInstance::StaticSwitchParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, StaticComponentMaskParameterValues) == 0x0000B0, "Member 'UMaterialFunctionInstance::StaticComponentMaskParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, RuntimeVirtualTextureParameterValues) == 0x0000C0, "Member 'UMaterialFunctionInstance::RuntimeVirtualTextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunctionInstance, SparseVolumeTextureParameterValues) == 0x0000D0, "Member 'UMaterialFunctionInstance::SparseVolumeTextureParameterValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPreSkinnedNormal \ +static_assert(alignof(UMaterialExpressionPreSkinnedNormal) == 0x000008, "Wrong alignment on UMaterialExpressionPreSkinnedNormal"); \ +static_assert(sizeof(UMaterialExpressionPreSkinnedNormal) == 0x0000B0, "Wrong size on UMaterialExpressionPreSkinnedNormal"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetBaseMaterial \ +static_assert(alignof(MaterialInterface_GetBaseMaterial) == 0x000008, "Wrong alignment on MaterialInterface_GetBaseMaterial"); \ +static_assert(sizeof(MaterialInterface_GetBaseMaterial) == 0x000008, "Wrong size on MaterialInterface_GetBaseMaterial"); \ +static_assert(offsetof(MaterialInterface_GetBaseMaterial, ReturnValue) == 0x000000, "Member 'MaterialInterface_GetBaseMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_SetForceMipLevelsToBeResident \ +static_assert(alignof(MaterialInterface_SetForceMipLevelsToBeResident) == 0x000004, "Wrong alignment on MaterialInterface_SetForceMipLevelsToBeResident"); \ +static_assert(sizeof(MaterialInterface_SetForceMipLevelsToBeResident) == 0x000010, "Wrong size on MaterialInterface_SetForceMipLevelsToBeResident"); \ +static_assert(offsetof(MaterialInterface_SetForceMipLevelsToBeResident, OverrideForceMiplevelsToBeResident) == 0x000000, "Member 'MaterialInterface_SetForceMipLevelsToBeResident::OverrideForceMiplevelsToBeResident' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_SetForceMipLevelsToBeResident, bForceMiplevelsToBeResidentValue) == 0x000001, "Member 'MaterialInterface_SetForceMipLevelsToBeResident::bForceMiplevelsToBeResidentValue' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_SetForceMipLevelsToBeResident, ForceDuration) == 0x000004, "Member 'MaterialInterface_SetForceMipLevelsToBeResident::ForceDuration' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_SetForceMipLevelsToBeResident, CinematicTextureGroups) == 0x000008, "Member 'MaterialInterface_SetForceMipLevelsToBeResident::CinematicTextureGroups' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_SetForceMipLevelsToBeResident, bFastResponse) == 0x00000C, "Member 'MaterialInterface_SetForceMipLevelsToBeResident::bFastResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetBlendMode \ +static_assert(alignof(MaterialInterface_GetBlendMode) == 0x000001, "Wrong alignment on MaterialInterface_GetBlendMode"); \ +static_assert(sizeof(MaterialInterface_GetBlendMode) == 0x000001, "Wrong size on MaterialInterface_GetBlendMode"); \ +static_assert(offsetof(MaterialInterface_GetBlendMode, ReturnValue) == 0x000000, "Member 'MaterialInterface_GetBlendMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetNaniteOverideMaterial \ +static_assert(alignof(MaterialInterface_GetNaniteOverideMaterial) == 0x000008, "Wrong alignment on MaterialInterface_GetNaniteOverideMaterial"); \ +static_assert(sizeof(MaterialInterface_GetNaniteOverideMaterial) == 0x000008, "Wrong size on MaterialInterface_GetNaniteOverideMaterial"); \ +static_assert(offsetof(MaterialInterface_GetNaniteOverideMaterial, ReturnValue) == 0x000000, "Member 'MaterialInterface_GetNaniteOverideMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetParameterInfo \ +static_assert(alignof(MaterialInterface_GetParameterInfo) == 0x000008, "Wrong alignment on MaterialInterface_GetParameterInfo"); \ +static_assert(sizeof(MaterialInterface_GetParameterInfo) == 0x000028, "Wrong size on MaterialInterface_GetParameterInfo"); \ +static_assert(offsetof(MaterialInterface_GetParameterInfo, Association) == 0x000000, "Member 'MaterialInterface_GetParameterInfo::Association' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_GetParameterInfo, ParameterName) == 0x000004, "Member 'MaterialInterface_GetParameterInfo::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_GetParameterInfo, LayerFunction) == 0x000010, "Member 'MaterialInterface_GetParameterInfo::LayerFunction' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_GetParameterInfo, ReturnValue) == 0x000018, "Member 'MaterialInterface_GetParameterInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetPhysicalMaterial \ +static_assert(alignof(MaterialInterface_GetPhysicalMaterial) == 0x000008, "Wrong alignment on MaterialInterface_GetPhysicalMaterial"); \ +static_assert(sizeof(MaterialInterface_GetPhysicalMaterial) == 0x000008, "Wrong size on MaterialInterface_GetPhysicalMaterial"); \ +static_assert(offsetof(MaterialInterface_GetPhysicalMaterial, ReturnValue) == 0x000000, "Member 'MaterialInterface_GetPhysicalMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetPhysicalMaterialFromMap \ +static_assert(alignof(MaterialInterface_GetPhysicalMaterialFromMap) == 0x000008, "Wrong alignment on MaterialInterface_GetPhysicalMaterialFromMap"); \ +static_assert(sizeof(MaterialInterface_GetPhysicalMaterialFromMap) == 0x000010, "Wrong size on MaterialInterface_GetPhysicalMaterialFromMap"); \ +static_assert(offsetof(MaterialInterface_GetPhysicalMaterialFromMap, Index_0) == 0x000000, "Member 'MaterialInterface_GetPhysicalMaterialFromMap::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MaterialInterface_GetPhysicalMaterialFromMap, ReturnValue) == 0x000008, "Member 'MaterialInterface_GetPhysicalMaterialFromMap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInterface_GetPhysicalMaterialMask \ +static_assert(alignof(MaterialInterface_GetPhysicalMaterialMask) == 0x000008, "Wrong alignment on MaterialInterface_GetPhysicalMaterialMask"); \ +static_assert(sizeof(MaterialInterface_GetPhysicalMaterialMask) == 0x000008, "Wrong size on MaterialInterface_GetPhysicalMaterialMask"); \ +static_assert(offsetof(MaterialInterface_GetPhysicalMaterialMask, ReturnValue) == 0x000000, "Member 'MaterialInterface_GetPhysicalMaterialMask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialInterface \ +static_assert(alignof(UMaterialInterface) == 0x000008, "Wrong alignment on UMaterialInterface"); \ +static_assert(sizeof(UMaterialInterface) == 0x0000B0, "Wrong size on UMaterialInterface"); \ +static_assert(offsetof(UMaterialInterface, SubsurfaceProfile) == 0x000038, "Member 'UMaterialInterface::SubsurfaceProfile' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInterface, SpecularProfiles) == 0x000040, "Member 'UMaterialInterface::SpecularProfiles' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInterface, LightmassSettings) == 0x000068, "Member 'UMaterialInterface::LightmassSettings' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInterface, TextureStreamingData) == 0x000078, "Member 'UMaterialInterface::TextureStreamingData' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInterface, AssetUserData) == 0x000088, "Member 'UMaterialInterface::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialInstance \ +static_assert(alignof(UMaterialInstance) == 0x000008, "Wrong alignment on UMaterialInstance"); \ +static_assert(sizeof(UMaterialInstance) == 0x000248, "Wrong size on UMaterialInstance"); \ +static_assert(offsetof(UMaterialInstance, PhysMaterial) == 0x0000B0, "Member 'UMaterialInstance::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, PhysicalMaterialMap) == 0x0000B8, "Member 'UMaterialInstance::PhysicalMaterialMap' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, Parent) == 0x0000F8, "Member 'UMaterialInstance::Parent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, NaniteOverrideMaterial) == 0x000100, "Member 'UMaterialInstance::NaniteOverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, ScalarParameterValues) == 0x000150, "Member 'UMaterialInstance::ScalarParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, VectorParameterValues) == 0x000160, "Member 'UMaterialInstance::VectorParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, DoubleVectorParameterValues) == 0x000170, "Member 'UMaterialInstance::DoubleVectorParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, TextureParameterValues) == 0x000180, "Member 'UMaterialInstance::TextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, RuntimeVirtualTextureParameterValues) == 0x000190, "Member 'UMaterialInstance::RuntimeVirtualTextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, SparseVolumeTextureParameterValues) == 0x0001A0, "Member 'UMaterialInstance::SparseVolumeTextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, FontParameterValues) == 0x0001B0, "Member 'UMaterialInstance::FontParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, BasePropertyOverrides) == 0x0001C0, "Member 'UMaterialInstance::BasePropertyOverrides' has a wrong offset!"); \ +static_assert(offsetof(UMaterialInstance, StaticParametersRuntime) == 0x0001E0, "Member 'UMaterialInstance::StaticParametersRuntime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRotateAboutAxis \ +static_assert(alignof(UMaterialExpressionRotateAboutAxis) == 0x000008, "Wrong alignment on UMaterialExpressionRotateAboutAxis"); \ +static_assert(sizeof(UMaterialExpressionRotateAboutAxis) == 0x000158, "Wrong size on UMaterialExpressionRotateAboutAxis"); \ +static_assert(offsetof(UMaterialExpressionRotateAboutAxis, NormalizedRotationAxis) == 0x0000B0, "Member 'UMaterialExpressionRotateAboutAxis::NormalizedRotationAxis' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotateAboutAxis, RotationAngle) == 0x0000D8, "Member 'UMaterialExpressionRotateAboutAxis::RotationAngle' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotateAboutAxis, PivotPoint) == 0x000100, "Member 'UMaterialExpressionRotateAboutAxis::PivotPoint' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotateAboutAxis, Position) == 0x000128, "Member 'UMaterialExpressionRotateAboutAxis::Position' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotateAboutAxis, Period) == 0x000150, "Member 'UMaterialExpressionRotateAboutAxis::Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABrush \ +static_assert(alignof(ABrush) == 0x000008, "Wrong alignment on ABrush"); \ +static_assert(sizeof(ABrush) == 0x0002D0, "Wrong size on ABrush"); \ +static_assert(offsetof(ABrush, BrushType) == 0x000298, "Member 'ABrush::BrushType' has a wrong offset!"); \ +static_assert(offsetof(ABrush, BrushColor) == 0x00029C, "Member 'ABrush::BrushColor' has a wrong offset!"); \ +static_assert(offsetof(ABrush, PolyFlags) == 0x0002A0, "Member 'ABrush::PolyFlags' has a wrong offset!"); \ +static_assert(offsetof(ABrush, Brush) == 0x0002A8, "Member 'ABrush::Brush' has a wrong offset!"); \ +static_assert(offsetof(ABrush, BrushComponent) == 0x0002B0, "Member 'ABrush::BrushComponent' has a wrong offset!"); \ +static_assert(offsetof(ABrush, SavedSelections) == 0x0002C0, "Member 'ABrush::SavedSelections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AVolume \ +static_assert(alignof(AVolume) == 0x000008, "Wrong alignment on AVolume"); \ +static_assert(sizeof(AVolume) == 0x0002D0, "Wrong size on AVolume"); \ + +#define DUMPER7_ASSERTS_APhysicsVolume \ +static_assert(alignof(APhysicsVolume) == 0x000008, "Wrong alignment on APhysicsVolume"); \ +static_assert(sizeof(APhysicsVolume) == 0x0002E0, "Wrong size on APhysicsVolume"); \ +static_assert(offsetof(APhysicsVolume, TerminalVelocity) == 0x0002D0, "Member 'APhysicsVolume::TerminalVelocity' has a wrong offset!"); \ +static_assert(offsetof(APhysicsVolume, Priority) == 0x0002D4, "Member 'APhysicsVolume::Priority' has a wrong offset!"); \ +static_assert(offsetof(APhysicsVolume, FluidFriction) == 0x0002D8, "Member 'APhysicsVolume::FluidFriction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AKillZVolume \ +static_assert(alignof(AKillZVolume) == 0x000008, "Wrong alignment on AKillZVolume"); \ +static_assert(sizeof(AKillZVolume) == 0x0002E0, "Wrong size on AKillZVolume"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStep \ +static_assert(alignof(UMaterialExpressionStep) == 0x000008, "Wrong alignment on UMaterialExpressionStep"); \ +static_assert(sizeof(UMaterialExpressionStep) == 0x000108, "Wrong size on UMaterialExpressionStep"); \ +static_assert(offsetof(UMaterialExpressionStep, Y) == 0x0000B0, "Member 'UMaterialExpressionStep::Y' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStep, X) == 0x0000D8, "Member 'UMaterialExpressionStep::X' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStep, ConstY) == 0x000100, "Member 'UMaterialExpressionStep::ConstY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStep, ConstX) == 0x000104, "Member 'UMaterialExpressionStep::ConstX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddAngularImpulseInDegrees \ +static_assert(alignof(PrimitiveComponent_AddAngularImpulseInDegrees) == 0x000008, "Wrong alignment on PrimitiveComponent_AddAngularImpulseInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_AddAngularImpulseInDegrees) == 0x000028, "Wrong size on PrimitiveComponent_AddAngularImpulseInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInDegrees, Impulse) == 0x000000, "Member 'PrimitiveComponent_AddAngularImpulseInDegrees::Impulse' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInDegrees, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddAngularImpulseInDegrees::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInDegrees, bVelChange) == 0x000020, "Member 'PrimitiveComponent_AddAngularImpulseInDegrees::bVelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddAngularImpulseInRadians \ +static_assert(alignof(PrimitiveComponent_AddAngularImpulseInRadians) == 0x000008, "Wrong alignment on PrimitiveComponent_AddAngularImpulseInRadians"); \ +static_assert(sizeof(PrimitiveComponent_AddAngularImpulseInRadians) == 0x000028, "Wrong size on PrimitiveComponent_AddAngularImpulseInRadians"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInRadians, Impulse) == 0x000000, "Member 'PrimitiveComponent_AddAngularImpulseInRadians::Impulse' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInRadians, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddAngularImpulseInRadians::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddAngularImpulseInRadians, bVelChange) == 0x000020, "Member 'PrimitiveComponent_AddAngularImpulseInRadians::bVelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddForce \ +static_assert(alignof(PrimitiveComponent_AddForce) == 0x000008, "Wrong alignment on PrimitiveComponent_AddForce"); \ +static_assert(sizeof(PrimitiveComponent_AddForce) == 0x000028, "Wrong size on PrimitiveComponent_AddForce"); \ +static_assert(offsetof(PrimitiveComponent_AddForce, Force) == 0x000000, "Member 'PrimitiveComponent_AddForce::Force' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForce, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddForce::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForce, bAccelChange) == 0x000020, "Member 'PrimitiveComponent_AddForce::bAccelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddForceAtLocation \ +static_assert(alignof(PrimitiveComponent_AddForceAtLocation) == 0x000008, "Wrong alignment on PrimitiveComponent_AddForceAtLocation"); \ +static_assert(sizeof(PrimitiveComponent_AddForceAtLocation) == 0x000038, "Wrong size on PrimitiveComponent_AddForceAtLocation"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocation, Force) == 0x000000, "Member 'PrimitiveComponent_AddForceAtLocation::Force' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocation, Location) == 0x000018, "Member 'PrimitiveComponent_AddForceAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocation, BoneName) == 0x000030, "Member 'PrimitiveComponent_AddForceAtLocation::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddForceAtLocationLocal \ +static_assert(alignof(PrimitiveComponent_AddForceAtLocationLocal) == 0x000008, "Wrong alignment on PrimitiveComponent_AddForceAtLocationLocal"); \ +static_assert(sizeof(PrimitiveComponent_AddForceAtLocationLocal) == 0x000038, "Wrong size on PrimitiveComponent_AddForceAtLocationLocal"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocationLocal, Force) == 0x000000, "Member 'PrimitiveComponent_AddForceAtLocationLocal::Force' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocationLocal, Location) == 0x000018, "Member 'PrimitiveComponent_AddForceAtLocationLocal::Location' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddForceAtLocationLocal, BoneName) == 0x000030, "Member 'PrimitiveComponent_AddForceAtLocationLocal::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddImpulse \ +static_assert(alignof(PrimitiveComponent_AddImpulse) == 0x000008, "Wrong alignment on PrimitiveComponent_AddImpulse"); \ +static_assert(sizeof(PrimitiveComponent_AddImpulse) == 0x000028, "Wrong size on PrimitiveComponent_AddImpulse"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulse, Impulse) == 0x000000, "Member 'PrimitiveComponent_AddImpulse::Impulse' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulse, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddImpulse::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulse, bVelChange) == 0x000020, "Member 'PrimitiveComponent_AddImpulse::bVelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddImpulseAtLocation \ +static_assert(alignof(PrimitiveComponent_AddImpulseAtLocation) == 0x000008, "Wrong alignment on PrimitiveComponent_AddImpulseAtLocation"); \ +static_assert(sizeof(PrimitiveComponent_AddImpulseAtLocation) == 0x000038, "Wrong size on PrimitiveComponent_AddImpulseAtLocation"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulseAtLocation, Impulse) == 0x000000, "Member 'PrimitiveComponent_AddImpulseAtLocation::Impulse' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulseAtLocation, Location) == 0x000018, "Member 'PrimitiveComponent_AddImpulseAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddImpulseAtLocation, BoneName) == 0x000030, "Member 'PrimitiveComponent_AddImpulseAtLocation::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddRadialForce \ +static_assert(alignof(PrimitiveComponent_AddRadialForce) == 0x000008, "Wrong alignment on PrimitiveComponent_AddRadialForce"); \ +static_assert(sizeof(PrimitiveComponent_AddRadialForce) == 0x000028, "Wrong size on PrimitiveComponent_AddRadialForce"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialForce, Origin) == 0x000000, "Member 'PrimitiveComponent_AddRadialForce::Origin' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialForce, Radius) == 0x000018, "Member 'PrimitiveComponent_AddRadialForce::Radius' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialForce, Strength) == 0x00001C, "Member 'PrimitiveComponent_AddRadialForce::Strength' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialForce, Falloff) == 0x000020, "Member 'PrimitiveComponent_AddRadialForce::Falloff' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialForce, bAccelChange) == 0x000021, "Member 'PrimitiveComponent_AddRadialForce::bAccelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddRadialImpulse \ +static_assert(alignof(PrimitiveComponent_AddRadialImpulse) == 0x000008, "Wrong alignment on PrimitiveComponent_AddRadialImpulse"); \ +static_assert(sizeof(PrimitiveComponent_AddRadialImpulse) == 0x000028, "Wrong size on PrimitiveComponent_AddRadialImpulse"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialImpulse, Origin) == 0x000000, "Member 'PrimitiveComponent_AddRadialImpulse::Origin' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialImpulse, Radius) == 0x000018, "Member 'PrimitiveComponent_AddRadialImpulse::Radius' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialImpulse, Strength) == 0x00001C, "Member 'PrimitiveComponent_AddRadialImpulse::Strength' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialImpulse, Falloff) == 0x000020, "Member 'PrimitiveComponent_AddRadialImpulse::Falloff' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddRadialImpulse, bVelChange) == 0x000021, "Member 'PrimitiveComponent_AddRadialImpulse::bVelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddTorqueInDegrees \ +static_assert(alignof(PrimitiveComponent_AddTorqueInDegrees) == 0x000008, "Wrong alignment on PrimitiveComponent_AddTorqueInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_AddTorqueInDegrees) == 0x000028, "Wrong size on PrimitiveComponent_AddTorqueInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInDegrees, Torque) == 0x000000, "Member 'PrimitiveComponent_AddTorqueInDegrees::Torque' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInDegrees, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddTorqueInDegrees::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInDegrees, bAccelChange) == 0x000020, "Member 'PrimitiveComponent_AddTorqueInDegrees::bAccelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddTorqueInRadians \ +static_assert(alignof(PrimitiveComponent_AddTorqueInRadians) == 0x000008, "Wrong alignment on PrimitiveComponent_AddTorqueInRadians"); \ +static_assert(sizeof(PrimitiveComponent_AddTorqueInRadians) == 0x000028, "Wrong size on PrimitiveComponent_AddTorqueInRadians"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInRadians, Torque) == 0x000000, "Member 'PrimitiveComponent_AddTorqueInRadians::Torque' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInRadians, BoneName) == 0x000018, "Member 'PrimitiveComponent_AddTorqueInRadians::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddTorqueInRadians, bAccelChange) == 0x000020, "Member 'PrimitiveComponent_AddTorqueInRadians::bAccelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_AddVelocityChangeImpulseAtLocation \ +static_assert(alignof(PrimitiveComponent_AddVelocityChangeImpulseAtLocation) == 0x000008, "Wrong alignment on PrimitiveComponent_AddVelocityChangeImpulseAtLocation"); \ +static_assert(sizeof(PrimitiveComponent_AddVelocityChangeImpulseAtLocation) == 0x000038, "Wrong size on PrimitiveComponent_AddVelocityChangeImpulseAtLocation"); \ +static_assert(offsetof(PrimitiveComponent_AddVelocityChangeImpulseAtLocation, Impulse) == 0x000000, "Member 'PrimitiveComponent_AddVelocityChangeImpulseAtLocation::Impulse' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddVelocityChangeImpulseAtLocation, Location) == 0x000018, "Member 'PrimitiveComponent_AddVelocityChangeImpulseAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_AddVelocityChangeImpulseAtLocation, BoneName) == 0x000030, "Member 'PrimitiveComponent_AddVelocityChangeImpulseAtLocation::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CopyArrayOfMoveIgnoreActors \ +static_assert(alignof(PrimitiveComponent_CopyArrayOfMoveIgnoreActors) == 0x000008, "Wrong alignment on PrimitiveComponent_CopyArrayOfMoveIgnoreActors"); \ +static_assert(sizeof(PrimitiveComponent_CopyArrayOfMoveIgnoreActors) == 0x000010, "Wrong size on PrimitiveComponent_CopyArrayOfMoveIgnoreActors"); \ +static_assert(offsetof(PrimitiveComponent_CopyArrayOfMoveIgnoreActors, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_CopyArrayOfMoveIgnoreActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CopyArrayOfMoveIgnoreComponents \ +static_assert(alignof(PrimitiveComponent_CopyArrayOfMoveIgnoreComponents) == 0x000008, "Wrong alignment on PrimitiveComponent_CopyArrayOfMoveIgnoreComponents"); \ +static_assert(sizeof(PrimitiveComponent_CopyArrayOfMoveIgnoreComponents) == 0x000010, "Wrong size on PrimitiveComponent_CopyArrayOfMoveIgnoreComponents"); \ +static_assert(offsetof(PrimitiveComponent_CopyArrayOfMoveIgnoreComponents, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_CopyArrayOfMoveIgnoreComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CreateAndSetMaterialInstanceDynamic \ +static_assert(alignof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamic) == 0x000008, "Wrong alignment on PrimitiveComponent_CreateAndSetMaterialInstanceDynamic"); \ +static_assert(sizeof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamic) == 0x000010, "Wrong size on PrimitiveComponent_CreateAndSetMaterialInstanceDynamic"); \ +static_assert(offsetof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamic, ElementIndex) == 0x000000, "Member 'PrimitiveComponent_CreateAndSetMaterialInstanceDynamic::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamic, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_CreateAndSetMaterialInstanceDynamic::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial \ +static_assert(alignof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial) == 0x000008, "Wrong alignment on PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial"); \ +static_assert(sizeof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial) == 0x000018, "Wrong size on PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial"); \ +static_assert(offsetof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial, ElementIndex) == 0x000000, "Member 'PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial, Parent) == 0x000008, "Member 'PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial::Parent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial, ReturnValue) == 0x000010, "Member 'PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CreateDynamicMaterialInstance \ +static_assert(alignof(PrimitiveComponent_CreateDynamicMaterialInstance) == 0x000008, "Wrong alignment on PrimitiveComponent_CreateDynamicMaterialInstance"); \ +static_assert(sizeof(PrimitiveComponent_CreateDynamicMaterialInstance) == 0x000020, "Wrong size on PrimitiveComponent_CreateDynamicMaterialInstance"); \ +static_assert(offsetof(PrimitiveComponent_CreateDynamicMaterialInstance, ElementIndex) == 0x000000, "Member 'PrimitiveComponent_CreateDynamicMaterialInstance::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateDynamicMaterialInstance, SourceMaterial) == 0x000008, "Member 'PrimitiveComponent_CreateDynamicMaterialInstance::SourceMaterial' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateDynamicMaterialInstance, OptionalName) == 0x000010, "Member 'PrimitiveComponent_CreateDynamicMaterialInstance::OptionalName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CreateDynamicMaterialInstance, ReturnValue) == 0x000018, "Member 'PrimitiveComponent_CreateDynamicMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetPhysicsLinearVelocity \ +static_assert(alignof(PrimitiveComponent_GetPhysicsLinearVelocity) == 0x000008, "Wrong alignment on PrimitiveComponent_GetPhysicsLinearVelocity"); \ +static_assert(sizeof(PrimitiveComponent_GetPhysicsLinearVelocity) == 0x000020, "Wrong size on PrimitiveComponent_GetPhysicsLinearVelocity"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsLinearVelocity, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetPhysicsLinearVelocity::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsLinearVelocity, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetPhysicsLinearVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetPhysicsLinearVelocityAtPoint \ +static_assert(alignof(PrimitiveComponent_GetPhysicsLinearVelocityAtPoint) == 0x000008, "Wrong alignment on PrimitiveComponent_GetPhysicsLinearVelocityAtPoint"); \ +static_assert(sizeof(PrimitiveComponent_GetPhysicsLinearVelocityAtPoint) == 0x000038, "Wrong size on PrimitiveComponent_GetPhysicsLinearVelocityAtPoint"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsLinearVelocityAtPoint, Point) == 0x000000, "Member 'PrimitiveComponent_GetPhysicsLinearVelocityAtPoint::Point' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsLinearVelocityAtPoint, BoneName) == 0x000018, "Member 'PrimitiveComponent_GetPhysicsLinearVelocityAtPoint::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsLinearVelocityAtPoint, ReturnValue) == 0x000020, "Member 'PrimitiveComponent_GetPhysicsLinearVelocityAtPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IgnoreActorWhenMoving \ +static_assert(alignof(PrimitiveComponent_IgnoreActorWhenMoving) == 0x000008, "Wrong alignment on PrimitiveComponent_IgnoreActorWhenMoving"); \ +static_assert(sizeof(PrimitiveComponent_IgnoreActorWhenMoving) == 0x000010, "Wrong size on PrimitiveComponent_IgnoreActorWhenMoving"); \ +static_assert(offsetof(PrimitiveComponent_IgnoreActorWhenMoving, Actor) == 0x000000, "Member 'PrimitiveComponent_IgnoreActorWhenMoving::Actor' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_IgnoreActorWhenMoving, bShouldIgnore) == 0x000008, "Member 'PrimitiveComponent_IgnoreActorWhenMoving::bShouldIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IgnoreComponentWhenMoving \ +static_assert(alignof(PrimitiveComponent_IgnoreComponentWhenMoving) == 0x000008, "Wrong alignment on PrimitiveComponent_IgnoreComponentWhenMoving"); \ +static_assert(sizeof(PrimitiveComponent_IgnoreComponentWhenMoving) == 0x000010, "Wrong size on PrimitiveComponent_IgnoreComponentWhenMoving"); \ +static_assert(offsetof(PrimitiveComponent_IgnoreComponentWhenMoving, Component) == 0x000000, "Member 'PrimitiveComponent_IgnoreComponentWhenMoving::Component' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_IgnoreComponentWhenMoving, bShouldIgnore) == 0x000008, "Member 'PrimitiveComponent_IgnoreComponentWhenMoving::bShouldIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IsAnyRigidBodyAwake \ +static_assert(alignof(PrimitiveComponent_IsAnyRigidBodyAwake) == 0x000001, "Wrong alignment on PrimitiveComponent_IsAnyRigidBodyAwake"); \ +static_assert(sizeof(PrimitiveComponent_IsAnyRigidBodyAwake) == 0x000001, "Wrong size on PrimitiveComponent_IsAnyRigidBodyAwake"); \ +static_assert(offsetof(PrimitiveComponent_IsAnyRigidBodyAwake, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_IsAnyRigidBodyAwake::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_BoxOverlapComponent \ +static_assert(alignof(PrimitiveComponent_K2_BoxOverlapComponent) == 0x000008, "Wrong alignment on PrimitiveComponent_K2_BoxOverlapComponent"); \ +static_assert(sizeof(PrimitiveComponent_K2_BoxOverlapComponent) == 0x000180, "Wrong size on PrimitiveComponent_K2_BoxOverlapComponent"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, InBoxCentre) == 0x000000, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::InBoxCentre' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, InBox) == 0x000018, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::InBox' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, bTraceComplex) == 0x000050, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, bShowTrace) == 0x000051, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::bShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, bPersistentShowTrace) == 0x000052, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::bPersistentShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, HitLocation) == 0x000058, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, HitNormal) == 0x000070, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, BoneName) == 0x000088, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, OutHit) == 0x000090, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::OutHit' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_BoxOverlapComponent, ReturnValue) == 0x000178, "Member 'PrimitiveComponent_K2_BoxOverlapComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_LineTraceComponent \ +static_assert(alignof(PrimitiveComponent_K2_LineTraceComponent) == 0x000008, "Wrong alignment on PrimitiveComponent_K2_LineTraceComponent"); \ +static_assert(sizeof(PrimitiveComponent_K2_LineTraceComponent) == 0x000160, "Wrong size on PrimitiveComponent_K2_LineTraceComponent"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, TraceStart) == 0x000000, "Member 'PrimitiveComponent_K2_LineTraceComponent::TraceStart' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, TraceEnd) == 0x000018, "Member 'PrimitiveComponent_K2_LineTraceComponent::TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, bTraceComplex) == 0x000030, "Member 'PrimitiveComponent_K2_LineTraceComponent::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, bShowTrace) == 0x000031, "Member 'PrimitiveComponent_K2_LineTraceComponent::bShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, bPersistentShowTrace) == 0x000032, "Member 'PrimitiveComponent_K2_LineTraceComponent::bPersistentShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, HitLocation) == 0x000038, "Member 'PrimitiveComponent_K2_LineTraceComponent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, HitNormal) == 0x000050, "Member 'PrimitiveComponent_K2_LineTraceComponent::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, BoneName) == 0x000068, "Member 'PrimitiveComponent_K2_LineTraceComponent::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, OutHit) == 0x000070, "Member 'PrimitiveComponent_K2_LineTraceComponent::OutHit' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_LineTraceComponent, ReturnValue) == 0x000158, "Member 'PrimitiveComponent_K2_LineTraceComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_SphereOverlapComponent \ +static_assert(alignof(PrimitiveComponent_K2_SphereOverlapComponent) == 0x000008, "Wrong alignment on PrimitiveComponent_K2_SphereOverlapComponent"); \ +static_assert(sizeof(PrimitiveComponent_K2_SphereOverlapComponent) == 0x000148, "Wrong size on PrimitiveComponent_K2_SphereOverlapComponent"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, InSphereCentre) == 0x000000, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::InSphereCentre' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, InSphereRadius) == 0x000018, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::InSphereRadius' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, bTraceComplex) == 0x00001C, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, bShowTrace) == 0x00001D, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::bShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, bPersistentShowTrace) == 0x00001E, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::bPersistentShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, HitLocation) == 0x000020, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, HitNormal) == 0x000038, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, BoneName) == 0x000050, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, OutHit) == 0x000058, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::OutHit' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereOverlapComponent, ReturnValue) == 0x000140, "Member 'PrimitiveComponent_K2_SphereOverlapComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_SphereTraceComponent \ +static_assert(alignof(PrimitiveComponent_K2_SphereTraceComponent) == 0x000008, "Wrong alignment on PrimitiveComponent_K2_SphereTraceComponent"); \ +static_assert(sizeof(PrimitiveComponent_K2_SphereTraceComponent) == 0x000160, "Wrong size on PrimitiveComponent_K2_SphereTraceComponent"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, TraceStart) == 0x000000, "Member 'PrimitiveComponent_K2_SphereTraceComponent::TraceStart' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, TraceEnd) == 0x000018, "Member 'PrimitiveComponent_K2_SphereTraceComponent::TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, SphereRadius) == 0x000030, "Member 'PrimitiveComponent_K2_SphereTraceComponent::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, bTraceComplex) == 0x000034, "Member 'PrimitiveComponent_K2_SphereTraceComponent::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, bShowTrace) == 0x000035, "Member 'PrimitiveComponent_K2_SphereTraceComponent::bShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, bPersistentShowTrace) == 0x000036, "Member 'PrimitiveComponent_K2_SphereTraceComponent::bPersistentShowTrace' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, HitLocation) == 0x000038, "Member 'PrimitiveComponent_K2_SphereTraceComponent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, HitNormal) == 0x000050, "Member 'PrimitiveComponent_K2_SphereTraceComponent::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, BoneName) == 0x000068, "Member 'PrimitiveComponent_K2_SphereTraceComponent::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, OutHit) == 0x000070, "Member 'PrimitiveComponent_K2_SphereTraceComponent::OutHit' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_K2_SphereTraceComponent, ReturnValue) == 0x000158, "Member 'PrimitiveComponent_K2_SphereTraceComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_PutRigidBodyToSleep \ +static_assert(alignof(PrimitiveComponent_PutRigidBodyToSleep) == 0x000004, "Wrong alignment on PrimitiveComponent_PutRigidBodyToSleep"); \ +static_assert(sizeof(PrimitiveComponent_PutRigidBodyToSleep) == 0x000008, "Wrong size on PrimitiveComponent_PutRigidBodyToSleep"); \ +static_assert(offsetof(PrimitiveComponent_PutRigidBodyToSleep, BoneName) == 0x000000, "Member 'PrimitiveComponent_PutRigidBodyToSleep::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAffectDistanceFieldLighting \ +static_assert(alignof(PrimitiveComponent_SetAffectDistanceFieldLighting) == 0x000001, "Wrong alignment on PrimitiveComponent_SetAffectDistanceFieldLighting"); \ +static_assert(sizeof(PrimitiveComponent_SetAffectDistanceFieldLighting) == 0x000001, "Wrong size on PrimitiveComponent_SetAffectDistanceFieldLighting"); \ +static_assert(offsetof(PrimitiveComponent_SetAffectDistanceFieldLighting, NewAffectDistanceFieldLighting) == 0x000000, "Member 'PrimitiveComponent_SetAffectDistanceFieldLighting::NewAffectDistanceFieldLighting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAffectDynamicIndirectLighting \ +static_assert(alignof(PrimitiveComponent_SetAffectDynamicIndirectLighting) == 0x000001, "Wrong alignment on PrimitiveComponent_SetAffectDynamicIndirectLighting"); \ +static_assert(sizeof(PrimitiveComponent_SetAffectDynamicIndirectLighting) == 0x000001, "Wrong size on PrimitiveComponent_SetAffectDynamicIndirectLighting"); \ +static_assert(offsetof(PrimitiveComponent_SetAffectDynamicIndirectLighting, bNewAffectDynamicIndirectLighting) == 0x000000, "Member 'PrimitiveComponent_SetAffectDynamicIndirectLighting::bNewAffectDynamicIndirectLighting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAffectIndirectLightingWhileHidden \ +static_assert(alignof(PrimitiveComponent_SetAffectIndirectLightingWhileHidden) == 0x000001, "Wrong alignment on PrimitiveComponent_SetAffectIndirectLightingWhileHidden"); \ +static_assert(sizeof(PrimitiveComponent_SetAffectIndirectLightingWhileHidden) == 0x000001, "Wrong size on PrimitiveComponent_SetAffectIndirectLightingWhileHidden"); \ +static_assert(offsetof(PrimitiveComponent_SetAffectIndirectLightingWhileHidden, bNewAffectIndirectLightingWhileHidden) == 0x000000, "Member 'PrimitiveComponent_SetAffectIndirectLightingWhileHidden::bNewAffectIndirectLightingWhileHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAllMassScale \ +static_assert(alignof(PrimitiveComponent_SetAllMassScale) == 0x000004, "Wrong alignment on PrimitiveComponent_SetAllMassScale"); \ +static_assert(sizeof(PrimitiveComponent_SetAllMassScale) == 0x000004, "Wrong size on PrimitiveComponent_SetAllMassScale"); \ +static_assert(offsetof(PrimitiveComponent_SetAllMassScale, InMassScale) == 0x000000, "Member 'PrimitiveComponent_SetAllMassScale::InMassScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees \ +static_assert(alignof(PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees) == 0x000008, "Wrong alignment on PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees) == 0x000020, "Wrong size on PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees, NewAngVel) == 0x000000, "Member 'PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees::NewAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees::bAddToCurrent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians \ +static_assert(alignof(PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians) == 0x000008, "Wrong alignment on PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians"); \ +static_assert(sizeof(PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians) == 0x000020, "Wrong size on PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians, NewAngVel) == 0x000000, "Member 'PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians::NewAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians::bAddToCurrent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAllPhysicsLinearVelocity \ +static_assert(alignof(PrimitiveComponent_SetAllPhysicsLinearVelocity) == 0x000008, "Wrong alignment on PrimitiveComponent_SetAllPhysicsLinearVelocity"); \ +static_assert(sizeof(PrimitiveComponent_SetAllPhysicsLinearVelocity) == 0x000020, "Wrong size on PrimitiveComponent_SetAllPhysicsLinearVelocity"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsLinearVelocity, NewVel) == 0x000000, "Member 'PrimitiveComponent_SetAllPhysicsLinearVelocity::NewVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetAllPhysicsLinearVelocity, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetAllPhysicsLinearVelocity::bAddToCurrent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAllUseCCD \ +static_assert(alignof(PrimitiveComponent_SetAllUseCCD) == 0x000001, "Wrong alignment on PrimitiveComponent_SetAllUseCCD"); \ +static_assert(sizeof(PrimitiveComponent_SetAllUseCCD) == 0x000001, "Wrong size on PrimitiveComponent_SetAllUseCCD"); \ +static_assert(offsetof(PrimitiveComponent_SetAllUseCCD, InUseCCD) == 0x000000, "Member 'PrimitiveComponent_SetAllUseCCD::InUseCCD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetAngularDamping \ +static_assert(alignof(PrimitiveComponent_SetAngularDamping) == 0x000004, "Wrong alignment on PrimitiveComponent_SetAngularDamping"); \ +static_assert(sizeof(PrimitiveComponent_SetAngularDamping) == 0x000004, "Wrong size on PrimitiveComponent_SetAngularDamping"); \ +static_assert(offsetof(PrimitiveComponent_SetAngularDamping, InDamping) == 0x000000, "Member 'PrimitiveComponent_SetAngularDamping::InDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetBoundsScale \ +static_assert(alignof(PrimitiveComponent_SetBoundsScale) == 0x000004, "Wrong alignment on PrimitiveComponent_SetBoundsScale"); \ +static_assert(sizeof(PrimitiveComponent_SetBoundsScale) == 0x000004, "Wrong size on PrimitiveComponent_SetBoundsScale"); \ +static_assert(offsetof(PrimitiveComponent_SetBoundsScale, NewBoundsScale) == 0x000000, "Member 'PrimitiveComponent_SetBoundsScale::NewBoundsScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCastContactShadow \ +static_assert(alignof(PrimitiveComponent_SetCastContactShadow) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCastContactShadow"); \ +static_assert(sizeof(PrimitiveComponent_SetCastContactShadow) == 0x000001, "Wrong size on PrimitiveComponent_SetCastContactShadow"); \ +static_assert(offsetof(PrimitiveComponent_SetCastContactShadow, bInCastContactShadow) == 0x000000, "Member 'PrimitiveComponent_SetCastContactShadow::bInCastContactShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCastHiddenShadow \ +static_assert(alignof(PrimitiveComponent_SetCastHiddenShadow) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCastHiddenShadow"); \ +static_assert(sizeof(PrimitiveComponent_SetCastHiddenShadow) == 0x000001, "Wrong size on PrimitiveComponent_SetCastHiddenShadow"); \ +static_assert(offsetof(PrimitiveComponent_SetCastHiddenShadow, NewCastHiddenShadow) == 0x000000, "Member 'PrimitiveComponent_SetCastHiddenShadow::NewCastHiddenShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCastInsetShadow \ +static_assert(alignof(PrimitiveComponent_SetCastInsetShadow) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCastInsetShadow"); \ +static_assert(sizeof(PrimitiveComponent_SetCastInsetShadow) == 0x000001, "Wrong size on PrimitiveComponent_SetCastInsetShadow"); \ +static_assert(offsetof(PrimitiveComponent_SetCastInsetShadow, bInCastInsetShadow) == 0x000000, "Member 'PrimitiveComponent_SetCastInsetShadow::bInCastInsetShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCastShadow \ +static_assert(alignof(PrimitiveComponent_SetCastShadow) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCastShadow"); \ +static_assert(sizeof(PrimitiveComponent_SetCastShadow) == 0x000001, "Wrong size on PrimitiveComponent_SetCastShadow"); \ +static_assert(offsetof(PrimitiveComponent_SetCastShadow, NewCastShadow) == 0x000000, "Member 'PrimitiveComponent_SetCastShadow::NewCastShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCenterOfMass \ +static_assert(alignof(PrimitiveComponent_SetCenterOfMass) == 0x000008, "Wrong alignment on PrimitiveComponent_SetCenterOfMass"); \ +static_assert(sizeof(PrimitiveComponent_SetCenterOfMass) == 0x000020, "Wrong size on PrimitiveComponent_SetCenterOfMass"); \ +static_assert(offsetof(PrimitiveComponent_SetCenterOfMass, CenterOfMassOffset) == 0x000000, "Member 'PrimitiveComponent_SetCenterOfMass::CenterOfMassOffset' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCenterOfMass, BoneName) == 0x000018, "Member 'PrimitiveComponent_SetCenterOfMass::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCollisionEnabled \ +static_assert(alignof(PrimitiveComponent_SetCollisionEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCollisionEnabled"); \ +static_assert(sizeof(PrimitiveComponent_SetCollisionEnabled) == 0x000001, "Wrong size on PrimitiveComponent_SetCollisionEnabled"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionEnabled, NewType) == 0x000000, "Member 'PrimitiveComponent_SetCollisionEnabled::NewType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCollisionObjectType \ +static_assert(alignof(PrimitiveComponent_SetCollisionObjectType) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCollisionObjectType"); \ +static_assert(sizeof(PrimitiveComponent_SetCollisionObjectType) == 0x000001, "Wrong size on PrimitiveComponent_SetCollisionObjectType"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionObjectType, Channel) == 0x000000, "Member 'PrimitiveComponent_SetCollisionObjectType::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCollisionProfileName \ +static_assert(alignof(PrimitiveComponent_SetCollisionProfileName) == 0x000004, "Wrong alignment on PrimitiveComponent_SetCollisionProfileName"); \ +static_assert(sizeof(PrimitiveComponent_SetCollisionProfileName) == 0x00000C, "Wrong size on PrimitiveComponent_SetCollisionProfileName"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionProfileName, InCollisionProfileName) == 0x000000, "Member 'PrimitiveComponent_SetCollisionProfileName::InCollisionProfileName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionProfileName, bUpdateOverlaps) == 0x000008, "Member 'PrimitiveComponent_SetCollisionProfileName::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCollisionResponseToAllChannels \ +static_assert(alignof(PrimitiveComponent_SetCollisionResponseToAllChannels) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCollisionResponseToAllChannels"); \ +static_assert(sizeof(PrimitiveComponent_SetCollisionResponseToAllChannels) == 0x000001, "Wrong size on PrimitiveComponent_SetCollisionResponseToAllChannels"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionResponseToAllChannels, NewResponse) == 0x000000, "Member 'PrimitiveComponent_SetCollisionResponseToAllChannels::NewResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCollisionResponseToChannel \ +static_assert(alignof(PrimitiveComponent_SetCollisionResponseToChannel) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCollisionResponseToChannel"); \ +static_assert(sizeof(PrimitiveComponent_SetCollisionResponseToChannel) == 0x000002, "Wrong size on PrimitiveComponent_SetCollisionResponseToChannel"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionResponseToChannel, Channel) == 0x000000, "Member 'PrimitiveComponent_SetCollisionResponseToChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCollisionResponseToChannel, NewResponse) == 0x000001, "Member 'PrimitiveComponent_SetCollisionResponseToChannel::NewResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetConstraintMode \ +static_assert(alignof(PrimitiveComponent_SetConstraintMode) == 0x000001, "Wrong alignment on PrimitiveComponent_SetConstraintMode"); \ +static_assert(sizeof(PrimitiveComponent_SetConstraintMode) == 0x000001, "Wrong size on PrimitiveComponent_SetConstraintMode"); \ +static_assert(offsetof(PrimitiveComponent_SetConstraintMode, ConstraintMode) == 0x000000, "Member 'PrimitiveComponent_SetConstraintMode::ConstraintMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCullDistance \ +static_assert(alignof(PrimitiveComponent_SetCullDistance) == 0x000004, "Wrong alignment on PrimitiveComponent_SetCullDistance"); \ +static_assert(sizeof(PrimitiveComponent_SetCullDistance) == 0x000004, "Wrong size on PrimitiveComponent_SetCullDistance"); \ +static_assert(offsetof(PrimitiveComponent_SetCullDistance, NewCullDistance) == 0x000000, "Member 'PrimitiveComponent_SetCullDistance::NewCullDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomDepthStencilValue \ +static_assert(alignof(PrimitiveComponent_SetCustomDepthStencilValue) == 0x000004, "Wrong alignment on PrimitiveComponent_SetCustomDepthStencilValue"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomDepthStencilValue) == 0x000004, "Wrong size on PrimitiveComponent_SetCustomDepthStencilValue"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomDepthStencilValue, Value) == 0x000000, "Member 'PrimitiveComponent_SetCustomDepthStencilValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomDepthStencilWriteMask \ +static_assert(alignof(PrimitiveComponent_SetCustomDepthStencilWriteMask) == 0x000001, "Wrong alignment on PrimitiveComponent_SetCustomDepthStencilWriteMask"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomDepthStencilWriteMask) == 0x000001, "Wrong size on PrimitiveComponent_SetCustomDepthStencilWriteMask"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomDepthStencilWriteMask, WriteMaskBit) == 0x000000, "Member 'PrimitiveComponent_SetCustomDepthStencilWriteMask::WriteMaskBit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomPrimitiveDataFloat \ +static_assert(alignof(PrimitiveComponent_SetCustomPrimitiveDataFloat) == 0x000004, "Wrong alignment on PrimitiveComponent_SetCustomPrimitiveDataFloat"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomPrimitiveDataFloat) == 0x000008, "Wrong size on PrimitiveComponent_SetCustomPrimitiveDataFloat"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataFloat, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetCustomPrimitiveDataFloat::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataFloat, Value) == 0x000004, "Member 'PrimitiveComponent_SetCustomPrimitiveDataFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomPrimitiveDataVector2 \ +static_assert(alignof(PrimitiveComponent_SetCustomPrimitiveDataVector2) == 0x000008, "Wrong alignment on PrimitiveComponent_SetCustomPrimitiveDataVector2"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomPrimitiveDataVector2) == 0x000018, "Wrong size on PrimitiveComponent_SetCustomPrimitiveDataVector2"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector2, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector2::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector2, Value) == 0x000008, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector2::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomPrimitiveDataVector3 \ +static_assert(alignof(PrimitiveComponent_SetCustomPrimitiveDataVector3) == 0x000008, "Wrong alignment on PrimitiveComponent_SetCustomPrimitiveDataVector3"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomPrimitiveDataVector3) == 0x000020, "Wrong size on PrimitiveComponent_SetCustomPrimitiveDataVector3"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector3, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector3::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector3, Value) == 0x000008, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector3::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetCustomPrimitiveDataVector4 \ +static_assert(alignof(PrimitiveComponent_SetCustomPrimitiveDataVector4) == 0x000010, "Wrong alignment on PrimitiveComponent_SetCustomPrimitiveDataVector4"); \ +static_assert(sizeof(PrimitiveComponent_SetCustomPrimitiveDataVector4) == 0x000030, "Wrong size on PrimitiveComponent_SetCustomPrimitiveDataVector4"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector4, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector4::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetCustomPrimitiveDataVector4, Value) == 0x000010, "Member 'PrimitiveComponent_SetCustomPrimitiveDataVector4::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat \ +static_assert(alignof(PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat) == 0x000004, "Wrong alignment on PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat"); \ +static_assert(sizeof(PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat) == 0x000008, "Wrong size on PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat, Value) == 0x000004, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2 \ +static_assert(alignof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2) == 0x000008, "Wrong alignment on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2"); \ +static_assert(sizeof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2) == 0x000018, "Wrong size on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2, Value) == 0x000008, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3 \ +static_assert(alignof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3) == 0x000008, "Wrong alignment on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3"); \ +static_assert(sizeof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3) == 0x000020, "Wrong size on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3, Value) == 0x000008, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4 \ +static_assert(alignof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4) == 0x000010, "Wrong alignment on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4"); \ +static_assert(sizeof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4) == 0x000030, "Wrong size on PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4, DataIndex) == 0x000000, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4, Value) == 0x000010, "Member 'PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetEmissiveLightSource \ +static_assert(alignof(PrimitiveComponent_SetEmissiveLightSource) == 0x000001, "Wrong alignment on PrimitiveComponent_SetEmissiveLightSource"); \ +static_assert(sizeof(PrimitiveComponent_SetEmissiveLightSource) == 0x000001, "Wrong size on PrimitiveComponent_SetEmissiveLightSource"); \ +static_assert(offsetof(PrimitiveComponent_SetEmissiveLightSource, NewEmissiveLightSource) == 0x000000, "Member 'PrimitiveComponent_SetEmissiveLightSource::NewEmissiveLightSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetEnableGravity \ +static_assert(alignof(PrimitiveComponent_SetEnableGravity) == 0x000001, "Wrong alignment on PrimitiveComponent_SetEnableGravity"); \ +static_assert(sizeof(PrimitiveComponent_SetEnableGravity) == 0x000001, "Wrong size on PrimitiveComponent_SetEnableGravity"); \ +static_assert(offsetof(PrimitiveComponent_SetEnableGravity, bGravityEnabled) == 0x000000, "Member 'PrimitiveComponent_SetEnableGravity::bGravityEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetExcludedFromHLODLevel \ +static_assert(alignof(PrimitiveComponent_SetExcludedFromHLODLevel) == 0x000001, "Wrong alignment on PrimitiveComponent_SetExcludedFromHLODLevel"); \ +static_assert(sizeof(PrimitiveComponent_SetExcludedFromHLODLevel) == 0x000002, "Wrong size on PrimitiveComponent_SetExcludedFromHLODLevel"); \ +static_assert(offsetof(PrimitiveComponent_SetExcludedFromHLODLevel, HLODLevel) == 0x000000, "Member 'PrimitiveComponent_SetExcludedFromHLODLevel::HLODLevel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetExcludedFromHLODLevel, bExcluded) == 0x000001, "Member 'PrimitiveComponent_SetExcludedFromHLODLevel::bExcluded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetExcludeForSpecificHLODLevels \ +static_assert(alignof(PrimitiveComponent_SetExcludeForSpecificHLODLevels) == 0x000008, "Wrong alignment on PrimitiveComponent_SetExcludeForSpecificHLODLevels"); \ +static_assert(sizeof(PrimitiveComponent_SetExcludeForSpecificHLODLevels) == 0x000010, "Wrong size on PrimitiveComponent_SetExcludeForSpecificHLODLevels"); \ +static_assert(offsetof(PrimitiveComponent_SetExcludeForSpecificHLODLevels, InExcludeForSpecificHLODLevels) == 0x000000, "Member 'PrimitiveComponent_SetExcludeForSpecificHLODLevels::InExcludeForSpecificHLODLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetExcludeFromLightAttachmentGroup \ +static_assert(alignof(PrimitiveComponent_SetExcludeFromLightAttachmentGroup) == 0x000001, "Wrong alignment on PrimitiveComponent_SetExcludeFromLightAttachmentGroup"); \ +static_assert(sizeof(PrimitiveComponent_SetExcludeFromLightAttachmentGroup) == 0x000001, "Wrong size on PrimitiveComponent_SetExcludeFromLightAttachmentGroup"); \ +static_assert(offsetof(PrimitiveComponent_SetExcludeFromLightAttachmentGroup, bInExcludeFromLightAttachmentGroup) == 0x000000, "Member 'PrimitiveComponent_SetExcludeFromLightAttachmentGroup::bInExcludeFromLightAttachmentGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetGenerateOverlapEvents \ +static_assert(alignof(PrimitiveComponent_SetGenerateOverlapEvents) == 0x000001, "Wrong alignment on PrimitiveComponent_SetGenerateOverlapEvents"); \ +static_assert(sizeof(PrimitiveComponent_SetGenerateOverlapEvents) == 0x000001, "Wrong size on PrimitiveComponent_SetGenerateOverlapEvents"); \ +static_assert(offsetof(PrimitiveComponent_SetGenerateOverlapEvents, bInGenerateOverlapEvents) == 0x000000, "Member 'PrimitiveComponent_SetGenerateOverlapEvents::bInGenerateOverlapEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetHiddenInSceneCapture \ +static_assert(alignof(PrimitiveComponent_SetHiddenInSceneCapture) == 0x000001, "Wrong alignment on PrimitiveComponent_SetHiddenInSceneCapture"); \ +static_assert(sizeof(PrimitiveComponent_SetHiddenInSceneCapture) == 0x000001, "Wrong size on PrimitiveComponent_SetHiddenInSceneCapture"); \ +static_assert(offsetof(PrimitiveComponent_SetHiddenInSceneCapture, bValue) == 0x000000, "Member 'PrimitiveComponent_SetHiddenInSceneCapture::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetHoldout \ +static_assert(alignof(PrimitiveComponent_SetHoldout) == 0x000001, "Wrong alignment on PrimitiveComponent_SetHoldout"); \ +static_assert(sizeof(PrimitiveComponent_SetHoldout) == 0x000001, "Wrong size on PrimitiveComponent_SetHoldout"); \ +static_assert(offsetof(PrimitiveComponent_SetHoldout, bNewHoldout) == 0x000000, "Member 'PrimitiveComponent_SetHoldout::bNewHoldout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetIgnoreBoundsForEditorFocus \ +static_assert(alignof(PrimitiveComponent_SetIgnoreBoundsForEditorFocus) == 0x000001, "Wrong alignment on PrimitiveComponent_SetIgnoreBoundsForEditorFocus"); \ +static_assert(sizeof(PrimitiveComponent_SetIgnoreBoundsForEditorFocus) == 0x000001, "Wrong size on PrimitiveComponent_SetIgnoreBoundsForEditorFocus"); \ +static_assert(offsetof(PrimitiveComponent_SetIgnoreBoundsForEditorFocus, bIgnore) == 0x000000, "Member 'PrimitiveComponent_SetIgnoreBoundsForEditorFocus::bIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetLightAttachmentsAsGroup \ +static_assert(alignof(PrimitiveComponent_SetLightAttachmentsAsGroup) == 0x000001, "Wrong alignment on PrimitiveComponent_SetLightAttachmentsAsGroup"); \ +static_assert(sizeof(PrimitiveComponent_SetLightAttachmentsAsGroup) == 0x000001, "Wrong size on PrimitiveComponent_SetLightAttachmentsAsGroup"); \ +static_assert(offsetof(PrimitiveComponent_SetLightAttachmentsAsGroup, bInLightAttachmentsAsGroup) == 0x000000, "Member 'PrimitiveComponent_SetLightAttachmentsAsGroup::bInLightAttachmentsAsGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetLightingChannels \ +static_assert(alignof(PrimitiveComponent_SetLightingChannels) == 0x000001, "Wrong alignment on PrimitiveComponent_SetLightingChannels"); \ +static_assert(sizeof(PrimitiveComponent_SetLightingChannels) == 0x000003, "Wrong size on PrimitiveComponent_SetLightingChannels"); \ +static_assert(offsetof(PrimitiveComponent_SetLightingChannels, bChannel0) == 0x000000, "Member 'PrimitiveComponent_SetLightingChannels::bChannel0' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetLightingChannels, bChannel1) == 0x000001, "Member 'PrimitiveComponent_SetLightingChannels::bChannel1' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetLightingChannels, bChannel2) == 0x000002, "Member 'PrimitiveComponent_SetLightingChannels::bChannel2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetLinearDamping \ +static_assert(alignof(PrimitiveComponent_SetLinearDamping) == 0x000004, "Wrong alignment on PrimitiveComponent_SetLinearDamping"); \ +static_assert(sizeof(PrimitiveComponent_SetLinearDamping) == 0x000004, "Wrong size on PrimitiveComponent_SetLinearDamping"); \ +static_assert(offsetof(PrimitiveComponent_SetLinearDamping, InDamping) == 0x000000, "Member 'PrimitiveComponent_SetLinearDamping::InDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetMassOverrideInKg \ +static_assert(alignof(PrimitiveComponent_SetMassOverrideInKg) == 0x000004, "Wrong alignment on PrimitiveComponent_SetMassOverrideInKg"); \ +static_assert(sizeof(PrimitiveComponent_SetMassOverrideInKg) == 0x000010, "Wrong size on PrimitiveComponent_SetMassOverrideInKg"); \ +static_assert(offsetof(PrimitiveComponent_SetMassOverrideInKg, BoneName) == 0x000000, "Member 'PrimitiveComponent_SetMassOverrideInKg::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetMassOverrideInKg, MassInKg) == 0x000008, "Member 'PrimitiveComponent_SetMassOverrideInKg::MassInKg' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetMassOverrideInKg, bOverrideMass) == 0x00000C, "Member 'PrimitiveComponent_SetMassOverrideInKg::bOverrideMass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetMassScale \ +static_assert(alignof(PrimitiveComponent_SetMassScale) == 0x000004, "Wrong alignment on PrimitiveComponent_SetMassScale"); \ +static_assert(sizeof(PrimitiveComponent_SetMassScale) == 0x00000C, "Wrong size on PrimitiveComponent_SetMassScale"); \ +static_assert(offsetof(PrimitiveComponent_SetMassScale, BoneName) == 0x000000, "Member 'PrimitiveComponent_SetMassScale::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetMassScale, InMassScale) == 0x000008, "Member 'PrimitiveComponent_SetMassScale::InMassScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetMaterial \ +static_assert(alignof(PrimitiveComponent_SetMaterial) == 0x000008, "Wrong alignment on PrimitiveComponent_SetMaterial"); \ +static_assert(sizeof(PrimitiveComponent_SetMaterial) == 0x000010, "Wrong size on PrimitiveComponent_SetMaterial"); \ +static_assert(offsetof(PrimitiveComponent_SetMaterial, ElementIndex) == 0x000000, "Member 'PrimitiveComponent_SetMaterial::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetMaterial, Material) == 0x000008, "Member 'PrimitiveComponent_SetMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetMaterialByName \ +static_assert(alignof(PrimitiveComponent_SetMaterialByName) == 0x000008, "Wrong alignment on PrimitiveComponent_SetMaterialByName"); \ +static_assert(sizeof(PrimitiveComponent_SetMaterialByName) == 0x000010, "Wrong size on PrimitiveComponent_SetMaterialByName"); \ +static_assert(offsetof(PrimitiveComponent_SetMaterialByName, MaterialSlotName) == 0x000000, "Member 'PrimitiveComponent_SetMaterialByName::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetMaterialByName, Material) == 0x000008, "Member 'PrimitiveComponent_SetMaterialByName::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetNotifyRigidBodyCollision \ +static_assert(alignof(PrimitiveComponent_SetNotifyRigidBodyCollision) == 0x000001, "Wrong alignment on PrimitiveComponent_SetNotifyRigidBodyCollision"); \ +static_assert(sizeof(PrimitiveComponent_SetNotifyRigidBodyCollision) == 0x000001, "Wrong size on PrimitiveComponent_SetNotifyRigidBodyCollision"); \ +static_assert(offsetof(PrimitiveComponent_SetNotifyRigidBodyCollision, bNewNotifyRigidBodyCollision) == 0x000000, "Member 'PrimitiveComponent_SetNotifyRigidBodyCollision::bNewNotifyRigidBodyCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetOnlyOwnerSee \ +static_assert(alignof(PrimitiveComponent_SetOnlyOwnerSee) == 0x000001, "Wrong alignment on PrimitiveComponent_SetOnlyOwnerSee"); \ +static_assert(sizeof(PrimitiveComponent_SetOnlyOwnerSee) == 0x000001, "Wrong size on PrimitiveComponent_SetOnlyOwnerSee"); \ +static_assert(offsetof(PrimitiveComponent_SetOnlyOwnerSee, bNewOnlyOwnerSee) == 0x000000, "Member 'PrimitiveComponent_SetOnlyOwnerSee::bNewOnlyOwnerSee' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetOwnerNoSee \ +static_assert(alignof(PrimitiveComponent_SetOwnerNoSee) == 0x000001, "Wrong alignment on PrimitiveComponent_SetOwnerNoSee"); \ +static_assert(sizeof(PrimitiveComponent_SetOwnerNoSee) == 0x000001, "Wrong size on PrimitiveComponent_SetOwnerNoSee"); \ +static_assert(offsetof(PrimitiveComponent_SetOwnerNoSee, bNewOwnerNoSee) == 0x000000, "Member 'PrimitiveComponent_SetOwnerNoSee::bNewOwnerNoSee' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysicsAngularVelocityInDegrees \ +static_assert(alignof(PrimitiveComponent_SetPhysicsAngularVelocityInDegrees) == 0x000008, "Wrong alignment on PrimitiveComponent_SetPhysicsAngularVelocityInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysicsAngularVelocityInDegrees) == 0x000028, "Wrong size on PrimitiveComponent_SetPhysicsAngularVelocityInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInDegrees, NewAngVel) == 0x000000, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInDegrees::NewAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInDegrees, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInDegrees::bAddToCurrent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInDegrees, BoneName) == 0x00001C, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInDegrees::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysicsAngularVelocityInRadians \ +static_assert(alignof(PrimitiveComponent_SetPhysicsAngularVelocityInRadians) == 0x000008, "Wrong alignment on PrimitiveComponent_SetPhysicsAngularVelocityInRadians"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysicsAngularVelocityInRadians) == 0x000028, "Wrong size on PrimitiveComponent_SetPhysicsAngularVelocityInRadians"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInRadians, NewAngVel) == 0x000000, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInRadians::NewAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInRadians, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInRadians::bAddToCurrent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsAngularVelocityInRadians, BoneName) == 0x00001C, "Member 'PrimitiveComponent_SetPhysicsAngularVelocityInRadians::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysicsLinearVelocity \ +static_assert(alignof(PrimitiveComponent_SetPhysicsLinearVelocity) == 0x000008, "Wrong alignment on PrimitiveComponent_SetPhysicsLinearVelocity"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysicsLinearVelocity) == 0x000028, "Wrong size on PrimitiveComponent_SetPhysicsLinearVelocity"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsLinearVelocity, NewVel) == 0x000000, "Member 'PrimitiveComponent_SetPhysicsLinearVelocity::NewVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsLinearVelocity, bAddToCurrent) == 0x000018, "Member 'PrimitiveComponent_SetPhysicsLinearVelocity::bAddToCurrent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsLinearVelocity, BoneName) == 0x00001C, "Member 'PrimitiveComponent_SetPhysicsLinearVelocity::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees \ +static_assert(alignof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees) == 0x000004, "Wrong alignment on PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees) == 0x000010, "Wrong size on PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees, NewMaxAngVel) == 0x000000, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees::NewMaxAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees, bAddToCurrent) == 0x000004, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees::bAddToCurrent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees, BoneName) == 0x000008, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians \ +static_assert(alignof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians) == 0x000004, "Wrong alignment on PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians) == 0x000010, "Wrong size on PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians, NewMaxAngVel) == 0x000000, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians::NewMaxAngVel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians, bAddToCurrent) == 0x000004, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians::bAddToCurrent' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians, BoneName) == 0x000008, "Member 'PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetPhysMaterialOverride \ +static_assert(alignof(PrimitiveComponent_SetPhysMaterialOverride) == 0x000008, "Wrong alignment on PrimitiveComponent_SetPhysMaterialOverride"); \ +static_assert(sizeof(PrimitiveComponent_SetPhysMaterialOverride) == 0x000008, "Wrong size on PrimitiveComponent_SetPhysMaterialOverride"); \ +static_assert(offsetof(PrimitiveComponent_SetPhysMaterialOverride, NewPhysMaterial) == 0x000000, "Member 'PrimitiveComponent_SetPhysMaterialOverride::NewPhysMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetReceivesDecals \ +static_assert(alignof(PrimitiveComponent_SetReceivesDecals) == 0x000001, "Wrong alignment on PrimitiveComponent_SetReceivesDecals"); \ +static_assert(sizeof(PrimitiveComponent_SetReceivesDecals) == 0x000001, "Wrong size on PrimitiveComponent_SetReceivesDecals"); \ +static_assert(offsetof(PrimitiveComponent_SetReceivesDecals, bNewReceivesDecals) == 0x000000, "Member 'PrimitiveComponent_SetReceivesDecals::bNewReceivesDecals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetRenderCustomDepth \ +static_assert(alignof(PrimitiveComponent_SetRenderCustomDepth) == 0x000001, "Wrong alignment on PrimitiveComponent_SetRenderCustomDepth"); \ +static_assert(sizeof(PrimitiveComponent_SetRenderCustomDepth) == 0x000001, "Wrong size on PrimitiveComponent_SetRenderCustomDepth"); \ +static_assert(offsetof(PrimitiveComponent_SetRenderCustomDepth, bValue) == 0x000000, "Member 'PrimitiveComponent_SetRenderCustomDepth::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetRenderInDepthPass \ +static_assert(alignof(PrimitiveComponent_SetRenderInDepthPass) == 0x000001, "Wrong alignment on PrimitiveComponent_SetRenderInDepthPass"); \ +static_assert(sizeof(PrimitiveComponent_SetRenderInDepthPass) == 0x000001, "Wrong size on PrimitiveComponent_SetRenderInDepthPass"); \ +static_assert(offsetof(PrimitiveComponent_SetRenderInDepthPass, bValue) == 0x000000, "Member 'PrimitiveComponent_SetRenderInDepthPass::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetRenderInMainPass \ +static_assert(alignof(PrimitiveComponent_SetRenderInMainPass) == 0x000001, "Wrong alignment on PrimitiveComponent_SetRenderInMainPass"); \ +static_assert(sizeof(PrimitiveComponent_SetRenderInMainPass) == 0x000001, "Wrong size on PrimitiveComponent_SetRenderInMainPass"); \ +static_assert(offsetof(PrimitiveComponent_SetRenderInMainPass, bValue) == 0x000000, "Member 'PrimitiveComponent_SetRenderInMainPass::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetScalarParameterForCustomPrimitiveData \ +static_assert(alignof(PrimitiveComponent_SetScalarParameterForCustomPrimitiveData) == 0x000004, "Wrong alignment on PrimitiveComponent_SetScalarParameterForCustomPrimitiveData"); \ +static_assert(sizeof(PrimitiveComponent_SetScalarParameterForCustomPrimitiveData) == 0x00000C, "Wrong size on PrimitiveComponent_SetScalarParameterForCustomPrimitiveData"); \ +static_assert(offsetof(PrimitiveComponent_SetScalarParameterForCustomPrimitiveData, ParameterName) == 0x000000, "Member 'PrimitiveComponent_SetScalarParameterForCustomPrimitiveData::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetScalarParameterForCustomPrimitiveData, Value) == 0x000008, "Member 'PrimitiveComponent_SetScalarParameterForCustomPrimitiveData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData \ +static_assert(alignof(PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData) == 0x000004, "Wrong alignment on PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData"); \ +static_assert(sizeof(PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData) == 0x00000C, "Wrong size on PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData"); \ +static_assert(offsetof(PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData, ParameterName) == 0x000000, "Member 'PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData, Value) == 0x000008, "Member 'PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetSimulatePhysics \ +static_assert(alignof(PrimitiveComponent_SetSimulatePhysics) == 0x000001, "Wrong alignment on PrimitiveComponent_SetSimulatePhysics"); \ +static_assert(sizeof(PrimitiveComponent_SetSimulatePhysics) == 0x000001, "Wrong size on PrimitiveComponent_SetSimulatePhysics"); \ +static_assert(offsetof(PrimitiveComponent_SetSimulatePhysics, bSimulate) == 0x000000, "Member 'PrimitiveComponent_SetSimulatePhysics::bSimulate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetSingleSampleShadowFromStationaryLights \ +static_assert(alignof(PrimitiveComponent_SetSingleSampleShadowFromStationaryLights) == 0x000001, "Wrong alignment on PrimitiveComponent_SetSingleSampleShadowFromStationaryLights"); \ +static_assert(sizeof(PrimitiveComponent_SetSingleSampleShadowFromStationaryLights) == 0x000001, "Wrong size on PrimitiveComponent_SetSingleSampleShadowFromStationaryLights"); \ +static_assert(offsetof(PrimitiveComponent_SetSingleSampleShadowFromStationaryLights, bNewSingleSampleShadowFromStationaryLights) == 0x000000, "Member 'PrimitiveComponent_SetSingleSampleShadowFromStationaryLights::bNewSingleSampleShadowFromStationaryLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetStaticWhenNotMoveable \ +static_assert(alignof(PrimitiveComponent_SetStaticWhenNotMoveable) == 0x000001, "Wrong alignment on PrimitiveComponent_SetStaticWhenNotMoveable"); \ +static_assert(sizeof(PrimitiveComponent_SetStaticWhenNotMoveable) == 0x000001, "Wrong size on PrimitiveComponent_SetStaticWhenNotMoveable"); \ +static_assert(offsetof(PrimitiveComponent_SetStaticWhenNotMoveable, bInStaticWhenNotMoveable) == 0x000000, "Member 'PrimitiveComponent_SetStaticWhenNotMoveable::bInStaticWhenNotMoveable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetTranslucencySortDistanceOffset \ +static_assert(alignof(PrimitiveComponent_SetTranslucencySortDistanceOffset) == 0x000004, "Wrong alignment on PrimitiveComponent_SetTranslucencySortDistanceOffset"); \ +static_assert(sizeof(PrimitiveComponent_SetTranslucencySortDistanceOffset) == 0x000004, "Wrong size on PrimitiveComponent_SetTranslucencySortDistanceOffset"); \ +static_assert(offsetof(PrimitiveComponent_SetTranslucencySortDistanceOffset, NewTranslucencySortDistanceOffset) == 0x000000, "Member 'PrimitiveComponent_SetTranslucencySortDistanceOffset::NewTranslucencySortDistanceOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetTranslucentSortPriority \ +static_assert(alignof(PrimitiveComponent_SetTranslucentSortPriority) == 0x000004, "Wrong alignment on PrimitiveComponent_SetTranslucentSortPriority"); \ +static_assert(sizeof(PrimitiveComponent_SetTranslucentSortPriority) == 0x000004, "Wrong size on PrimitiveComponent_SetTranslucentSortPriority"); \ +static_assert(offsetof(PrimitiveComponent_SetTranslucentSortPriority, NewTranslucentSortPriority) == 0x000000, "Member 'PrimitiveComponent_SetTranslucentSortPriority::NewTranslucentSortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetUseCCD \ +static_assert(alignof(PrimitiveComponent_SetUseCCD) == 0x000004, "Wrong alignment on PrimitiveComponent_SetUseCCD"); \ +static_assert(sizeof(PrimitiveComponent_SetUseCCD) == 0x00000C, "Wrong size on PrimitiveComponent_SetUseCCD"); \ +static_assert(offsetof(PrimitiveComponent_SetUseCCD, InUseCCD) == 0x000000, "Member 'PrimitiveComponent_SetUseCCD::InUseCCD' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetUseCCD, BoneName) == 0x000004, "Member 'PrimitiveComponent_SetUseCCD::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetVectorParameterForCustomPrimitiveData \ +static_assert(alignof(PrimitiveComponent_SetVectorParameterForCustomPrimitiveData) == 0x000010, "Wrong alignment on PrimitiveComponent_SetVectorParameterForCustomPrimitiveData"); \ +static_assert(sizeof(PrimitiveComponent_SetVectorParameterForCustomPrimitiveData) == 0x000030, "Wrong size on PrimitiveComponent_SetVectorParameterForCustomPrimitiveData"); \ +static_assert(offsetof(PrimitiveComponent_SetVectorParameterForCustomPrimitiveData, ParameterName) == 0x000000, "Member 'PrimitiveComponent_SetVectorParameterForCustomPrimitiveData::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetVectorParameterForCustomPrimitiveData, Value) == 0x000010, "Member 'PrimitiveComponent_SetVectorParameterForCustomPrimitiveData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData \ +static_assert(alignof(PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData) == 0x000010, "Wrong alignment on PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData"); \ +static_assert(sizeof(PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData) == 0x000030, "Wrong size on PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData"); \ +static_assert(offsetof(PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData, ParameterName) == 0x000000, "Member 'PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData, Value) == 0x000010, "Member 'PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetVisibleInRayTracing \ +static_assert(alignof(PrimitiveComponent_SetVisibleInRayTracing) == 0x000001, "Wrong alignment on PrimitiveComponent_SetVisibleInRayTracing"); \ +static_assert(sizeof(PrimitiveComponent_SetVisibleInRayTracing) == 0x000001, "Wrong size on PrimitiveComponent_SetVisibleInRayTracing"); \ +static_assert(offsetof(PrimitiveComponent_SetVisibleInRayTracing, bNewVisibleInRayTracing) == 0x000000, "Member 'PrimitiveComponent_SetVisibleInRayTracing::bNewVisibleInRayTracing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetVisibleInSceneCaptureOnly \ +static_assert(alignof(PrimitiveComponent_SetVisibleInSceneCaptureOnly) == 0x000001, "Wrong alignment on PrimitiveComponent_SetVisibleInSceneCaptureOnly"); \ +static_assert(sizeof(PrimitiveComponent_SetVisibleInSceneCaptureOnly) == 0x000001, "Wrong size on PrimitiveComponent_SetVisibleInSceneCaptureOnly"); \ +static_assert(offsetof(PrimitiveComponent_SetVisibleInSceneCaptureOnly, bValue) == 0x000000, "Member 'PrimitiveComponent_SetVisibleInSceneCaptureOnly::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_SetWalkableSlopeOverride \ +static_assert(alignof(PrimitiveComponent_SetWalkableSlopeOverride) == 0x000004, "Wrong alignment on PrimitiveComponent_SetWalkableSlopeOverride"); \ +static_assert(sizeof(PrimitiveComponent_SetWalkableSlopeOverride) == 0x000010, "Wrong size on PrimitiveComponent_SetWalkableSlopeOverride"); \ +static_assert(offsetof(PrimitiveComponent_SetWalkableSlopeOverride, NewOverride) == 0x000000, "Member 'PrimitiveComponent_SetWalkableSlopeOverride::NewOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_WakeRigidBody \ +static_assert(alignof(PrimitiveComponent_WakeRigidBody) == 0x000004, "Wrong alignment on PrimitiveComponent_WakeRigidBody"); \ +static_assert(sizeof(PrimitiveComponent_WakeRigidBody) == 0x000008, "Wrong size on PrimitiveComponent_WakeRigidBody"); \ +static_assert(offsetof(PrimitiveComponent_WakeRigidBody, BoneName) == 0x000000, "Member 'PrimitiveComponent_WakeRigidBody::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_CanCharacterStepUp \ +static_assert(alignof(PrimitiveComponent_CanCharacterStepUp) == 0x000008, "Wrong alignment on PrimitiveComponent_CanCharacterStepUp"); \ +static_assert(sizeof(PrimitiveComponent_CanCharacterStepUp) == 0x000010, "Wrong size on PrimitiveComponent_CanCharacterStepUp"); \ +static_assert(offsetof(PrimitiveComponent_CanCharacterStepUp, Pawn) == 0x000000, "Member 'PrimitiveComponent_CanCharacterStepUp::Pawn' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_CanCharacterStepUp, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_CanCharacterStepUp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetAngularDamping \ +static_assert(alignof(PrimitiveComponent_GetAngularDamping) == 0x000004, "Wrong alignment on PrimitiveComponent_GetAngularDamping"); \ +static_assert(sizeof(PrimitiveComponent_GetAngularDamping) == 0x000004, "Wrong size on PrimitiveComponent_GetAngularDamping"); \ +static_assert(offsetof(PrimitiveComponent_GetAngularDamping, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetAngularDamping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle \ +static_assert(alignof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle) == 0x000008, "Wrong alignment on PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle"); \ +static_assert(sizeof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle) == 0x000018, "Wrong size on PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle"); \ +static_assert(offsetof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle, bGetWelded) == 0x000008, "Member 'PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle::bGetWelded' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle, Index_0) == 0x00000C, "Member 'PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle::Index_0' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle, ReturnValue) == 0x000010, "Member 'PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCenterOfMass \ +static_assert(alignof(PrimitiveComponent_GetCenterOfMass) == 0x000008, "Wrong alignment on PrimitiveComponent_GetCenterOfMass"); \ +static_assert(sizeof(PrimitiveComponent_GetCenterOfMass) == 0x000020, "Wrong size on PrimitiveComponent_GetCenterOfMass"); \ +static_assert(offsetof(PrimitiveComponent_GetCenterOfMass, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetCenterOfMass::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetCenterOfMass, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetCenterOfMass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetClosestPointOnCollision \ +static_assert(alignof(PrimitiveComponent_GetClosestPointOnCollision) == 0x000008, "Wrong alignment on PrimitiveComponent_GetClosestPointOnCollision"); \ +static_assert(sizeof(PrimitiveComponent_GetClosestPointOnCollision) == 0x000040, "Wrong size on PrimitiveComponent_GetClosestPointOnCollision"); \ +static_assert(offsetof(PrimitiveComponent_GetClosestPointOnCollision, Point) == 0x000000, "Member 'PrimitiveComponent_GetClosestPointOnCollision::Point' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetClosestPointOnCollision, OutPointOnBody) == 0x000018, "Member 'PrimitiveComponent_GetClosestPointOnCollision::OutPointOnBody' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetClosestPointOnCollision, BoneName) == 0x000030, "Member 'PrimitiveComponent_GetClosestPointOnCollision::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetClosestPointOnCollision, ReturnValue) == 0x000038, "Member 'PrimitiveComponent_GetClosestPointOnCollision::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCollisionEnabled \ +static_assert(alignof(PrimitiveComponent_GetCollisionEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_GetCollisionEnabled"); \ +static_assert(sizeof(PrimitiveComponent_GetCollisionEnabled) == 0x000001, "Wrong size on PrimitiveComponent_GetCollisionEnabled"); \ +static_assert(offsetof(PrimitiveComponent_GetCollisionEnabled, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetCollisionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCollisionObjectType \ +static_assert(alignof(PrimitiveComponent_GetCollisionObjectType) == 0x000001, "Wrong alignment on PrimitiveComponent_GetCollisionObjectType"); \ +static_assert(sizeof(PrimitiveComponent_GetCollisionObjectType) == 0x000001, "Wrong size on PrimitiveComponent_GetCollisionObjectType"); \ +static_assert(offsetof(PrimitiveComponent_GetCollisionObjectType, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetCollisionObjectType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCollisionProfileName \ +static_assert(alignof(PrimitiveComponent_GetCollisionProfileName) == 0x000004, "Wrong alignment on PrimitiveComponent_GetCollisionProfileName"); \ +static_assert(sizeof(PrimitiveComponent_GetCollisionProfileName) == 0x000008, "Wrong size on PrimitiveComponent_GetCollisionProfileName"); \ +static_assert(offsetof(PrimitiveComponent_GetCollisionProfileName, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetCollisionProfileName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCollisionResponseToChannel \ +static_assert(alignof(PrimitiveComponent_GetCollisionResponseToChannel) == 0x000001, "Wrong alignment on PrimitiveComponent_GetCollisionResponseToChannel"); \ +static_assert(sizeof(PrimitiveComponent_GetCollisionResponseToChannel) == 0x000002, "Wrong size on PrimitiveComponent_GetCollisionResponseToChannel"); \ +static_assert(offsetof(PrimitiveComponent_GetCollisionResponseToChannel, Channel) == 0x000000, "Member 'PrimitiveComponent_GetCollisionResponseToChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetCollisionResponseToChannel, ReturnValue) == 0x000001, "Member 'PrimitiveComponent_GetCollisionResponseToChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter \ +static_assert(alignof(PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter) == 0x000004, "Wrong alignment on PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter"); \ +static_assert(sizeof(PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter) == 0x00000C, "Wrong size on PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter"); \ +static_assert(offsetof(PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter, ParameterName) == 0x000000, "Member 'PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter \ +static_assert(alignof(PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter) == 0x000004, "Wrong alignment on PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter"); \ +static_assert(sizeof(PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter) == 0x00000C, "Wrong size on PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter"); \ +static_assert(offsetof(PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter, ParameterName) == 0x000000, "Member 'PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetExcludeForSpecificHLODLevels \ +static_assert(alignof(PrimitiveComponent_GetExcludeForSpecificHLODLevels) == 0x000008, "Wrong alignment on PrimitiveComponent_GetExcludeForSpecificHLODLevels"); \ +static_assert(sizeof(PrimitiveComponent_GetExcludeForSpecificHLODLevels) == 0x000010, "Wrong size on PrimitiveComponent_GetExcludeForSpecificHLODLevels"); \ +static_assert(offsetof(PrimitiveComponent_GetExcludeForSpecificHLODLevels, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetExcludeForSpecificHLODLevels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetGenerateOverlapEvents \ +static_assert(alignof(PrimitiveComponent_GetGenerateOverlapEvents) == 0x000001, "Wrong alignment on PrimitiveComponent_GetGenerateOverlapEvents"); \ +static_assert(sizeof(PrimitiveComponent_GetGenerateOverlapEvents) == 0x000001, "Wrong size on PrimitiveComponent_GetGenerateOverlapEvents"); \ +static_assert(offsetof(PrimitiveComponent_GetGenerateOverlapEvents, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetGenerateOverlapEvents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetIgnoreBoundsForEditorFocus \ +static_assert(alignof(PrimitiveComponent_GetIgnoreBoundsForEditorFocus) == 0x000001, "Wrong alignment on PrimitiveComponent_GetIgnoreBoundsForEditorFocus"); \ +static_assert(sizeof(PrimitiveComponent_GetIgnoreBoundsForEditorFocus) == 0x000001, "Wrong size on PrimitiveComponent_GetIgnoreBoundsForEditorFocus"); \ +static_assert(offsetof(PrimitiveComponent_GetIgnoreBoundsForEditorFocus, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetIgnoreBoundsForEditorFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetInertiaTensor \ +static_assert(alignof(PrimitiveComponent_GetInertiaTensor) == 0x000008, "Wrong alignment on PrimitiveComponent_GetInertiaTensor"); \ +static_assert(sizeof(PrimitiveComponent_GetInertiaTensor) == 0x000020, "Wrong size on PrimitiveComponent_GetInertiaTensor"); \ +static_assert(offsetof(PrimitiveComponent_GetInertiaTensor, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetInertiaTensor::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetInertiaTensor, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetInertiaTensor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetLinearDamping \ +static_assert(alignof(PrimitiveComponent_GetLinearDamping) == 0x000004, "Wrong alignment on PrimitiveComponent_GetLinearDamping"); \ +static_assert(sizeof(PrimitiveComponent_GetLinearDamping) == 0x000004, "Wrong size on PrimitiveComponent_GetLinearDamping"); \ +static_assert(offsetof(PrimitiveComponent_GetLinearDamping, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetLinearDamping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetMass \ +static_assert(alignof(PrimitiveComponent_GetMass) == 0x000004, "Wrong alignment on PrimitiveComponent_GetMass"); \ +static_assert(sizeof(PrimitiveComponent_GetMass) == 0x000004, "Wrong size on PrimitiveComponent_GetMass"); \ +static_assert(offsetof(PrimitiveComponent_GetMass, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetMass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetMassScale \ +static_assert(alignof(PrimitiveComponent_GetMassScale) == 0x000004, "Wrong alignment on PrimitiveComponent_GetMassScale"); \ +static_assert(sizeof(PrimitiveComponent_GetMassScale) == 0x00000C, "Wrong size on PrimitiveComponent_GetMassScale"); \ +static_assert(offsetof(PrimitiveComponent_GetMassScale, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetMassScale::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetMassScale, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetMassScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetMaterial \ +static_assert(alignof(PrimitiveComponent_GetMaterial) == 0x000008, "Wrong alignment on PrimitiveComponent_GetMaterial"); \ +static_assert(sizeof(PrimitiveComponent_GetMaterial) == 0x000010, "Wrong size on PrimitiveComponent_GetMaterial"); \ +static_assert(offsetof(PrimitiveComponent_GetMaterial, ElementIndex) == 0x000000, "Member 'PrimitiveComponent_GetMaterial::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetMaterial, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetMaterialFromCollisionFaceIndex \ +static_assert(alignof(PrimitiveComponent_GetMaterialFromCollisionFaceIndex) == 0x000008, "Wrong alignment on PrimitiveComponent_GetMaterialFromCollisionFaceIndex"); \ +static_assert(sizeof(PrimitiveComponent_GetMaterialFromCollisionFaceIndex) == 0x000010, "Wrong size on PrimitiveComponent_GetMaterialFromCollisionFaceIndex"); \ +static_assert(offsetof(PrimitiveComponent_GetMaterialFromCollisionFaceIndex, FaceIndex) == 0x000000, "Member 'PrimitiveComponent_GetMaterialFromCollisionFaceIndex::FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetMaterialFromCollisionFaceIndex, SectionIndex) == 0x000004, "Member 'PrimitiveComponent_GetMaterialFromCollisionFaceIndex::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetMaterialFromCollisionFaceIndex, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetMaterialFromCollisionFaceIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetNumMaterials \ +static_assert(alignof(PrimitiveComponent_GetNumMaterials) == 0x000004, "Wrong alignment on PrimitiveComponent_GetNumMaterials"); \ +static_assert(sizeof(PrimitiveComponent_GetNumMaterials) == 0x000004, "Wrong size on PrimitiveComponent_GetNumMaterials"); \ +static_assert(offsetof(PrimitiveComponent_GetNumMaterials, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetNumMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetOverlappingActors \ +static_assert(alignof(PrimitiveComponent_GetOverlappingActors) == 0x000008, "Wrong alignment on PrimitiveComponent_GetOverlappingActors"); \ +static_assert(sizeof(PrimitiveComponent_GetOverlappingActors) == 0x000018, "Wrong size on PrimitiveComponent_GetOverlappingActors"); \ +static_assert(offsetof(PrimitiveComponent_GetOverlappingActors, OverlappingActors) == 0x000000, "Member 'PrimitiveComponent_GetOverlappingActors::OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetOverlappingActors, ClassFilter) == 0x000010, "Member 'PrimitiveComponent_GetOverlappingActors::ClassFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetOverlappingComponents \ +static_assert(alignof(PrimitiveComponent_GetOverlappingComponents) == 0x000008, "Wrong alignment on PrimitiveComponent_GetOverlappingComponents"); \ +static_assert(sizeof(PrimitiveComponent_GetOverlappingComponents) == 0x000010, "Wrong size on PrimitiveComponent_GetOverlappingComponents"); \ +static_assert(offsetof(PrimitiveComponent_GetOverlappingComponents, OutOverlappingComponents) == 0x000000, "Member 'PrimitiveComponent_GetOverlappingComponents::OutOverlappingComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetPhysicsAngularVelocityInDegrees \ +static_assert(alignof(PrimitiveComponent_GetPhysicsAngularVelocityInDegrees) == 0x000008, "Wrong alignment on PrimitiveComponent_GetPhysicsAngularVelocityInDegrees"); \ +static_assert(sizeof(PrimitiveComponent_GetPhysicsAngularVelocityInDegrees) == 0x000020, "Wrong size on PrimitiveComponent_GetPhysicsAngularVelocityInDegrees"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsAngularVelocityInDegrees, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetPhysicsAngularVelocityInDegrees::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsAngularVelocityInDegrees, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetPhysicsAngularVelocityInDegrees::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetPhysicsAngularVelocityInRadians \ +static_assert(alignof(PrimitiveComponent_GetPhysicsAngularVelocityInRadians) == 0x000008, "Wrong alignment on PrimitiveComponent_GetPhysicsAngularVelocityInRadians"); \ +static_assert(sizeof(PrimitiveComponent_GetPhysicsAngularVelocityInRadians) == 0x000020, "Wrong size on PrimitiveComponent_GetPhysicsAngularVelocityInRadians"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsAngularVelocityInRadians, BoneName) == 0x000000, "Member 'PrimitiveComponent_GetPhysicsAngularVelocityInRadians::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_GetPhysicsAngularVelocityInRadians, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_GetPhysicsAngularVelocityInRadians::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetStaticWhenNotMoveable \ +static_assert(alignof(PrimitiveComponent_GetStaticWhenNotMoveable) == 0x000001, "Wrong alignment on PrimitiveComponent_GetStaticWhenNotMoveable"); \ +static_assert(sizeof(PrimitiveComponent_GetStaticWhenNotMoveable) == 0x000001, "Wrong size on PrimitiveComponent_GetStaticWhenNotMoveable"); \ +static_assert(offsetof(PrimitiveComponent_GetStaticWhenNotMoveable, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetStaticWhenNotMoveable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_GetWalkableSlopeOverride \ +static_assert(alignof(PrimitiveComponent_GetWalkableSlopeOverride) == 0x000004, "Wrong alignment on PrimitiveComponent_GetWalkableSlopeOverride"); \ +static_assert(sizeof(PrimitiveComponent_GetWalkableSlopeOverride) == 0x000010, "Wrong size on PrimitiveComponent_GetWalkableSlopeOverride"); \ +static_assert(offsetof(PrimitiveComponent_GetWalkableSlopeOverride, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_GetWalkableSlopeOverride::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IsExcludedFromHLODLevel \ +static_assert(alignof(PrimitiveComponent_IsExcludedFromHLODLevel) == 0x000001, "Wrong alignment on PrimitiveComponent_IsExcludedFromHLODLevel"); \ +static_assert(sizeof(PrimitiveComponent_IsExcludedFromHLODLevel) == 0x000002, "Wrong size on PrimitiveComponent_IsExcludedFromHLODLevel"); \ +static_assert(offsetof(PrimitiveComponent_IsExcludedFromHLODLevel, HLODLevel) == 0x000000, "Member 'PrimitiveComponent_IsExcludedFromHLODLevel::HLODLevel' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_IsExcludedFromHLODLevel, ReturnValue) == 0x000001, "Member 'PrimitiveComponent_IsExcludedFromHLODLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IsGravityEnabled \ +static_assert(alignof(PrimitiveComponent_IsGravityEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_IsGravityEnabled"); \ +static_assert(sizeof(PrimitiveComponent_IsGravityEnabled) == 0x000001, "Wrong size on PrimitiveComponent_IsGravityEnabled"); \ +static_assert(offsetof(PrimitiveComponent_IsGravityEnabled, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_IsGravityEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IsOverlappingActor \ +static_assert(alignof(PrimitiveComponent_IsOverlappingActor) == 0x000008, "Wrong alignment on PrimitiveComponent_IsOverlappingActor"); \ +static_assert(sizeof(PrimitiveComponent_IsOverlappingActor) == 0x000010, "Wrong size on PrimitiveComponent_IsOverlappingActor"); \ +static_assert(offsetof(PrimitiveComponent_IsOverlappingActor, Other) == 0x000000, "Member 'PrimitiveComponent_IsOverlappingActor::Other' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_IsOverlappingActor, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_IsOverlappingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_IsOverlappingComponent \ +static_assert(alignof(PrimitiveComponent_IsOverlappingComponent) == 0x000008, "Wrong alignment on PrimitiveComponent_IsOverlappingComponent"); \ +static_assert(sizeof(PrimitiveComponent_IsOverlappingComponent) == 0x000010, "Wrong size on PrimitiveComponent_IsOverlappingComponent"); \ +static_assert(offsetof(PrimitiveComponent_IsOverlappingComponent, OtherComp) == 0x000000, "Member 'PrimitiveComponent_IsOverlappingComponent::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_IsOverlappingComponent, ReturnValue) == 0x000008, "Member 'PrimitiveComponent_IsOverlappingComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_IsCollisionEnabled \ +static_assert(alignof(PrimitiveComponent_K2_IsCollisionEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_K2_IsCollisionEnabled"); \ +static_assert(sizeof(PrimitiveComponent_K2_IsCollisionEnabled) == 0x000001, "Wrong size on PrimitiveComponent_K2_IsCollisionEnabled"); \ +static_assert(offsetof(PrimitiveComponent_K2_IsCollisionEnabled, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_K2_IsCollisionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_IsPhysicsCollisionEnabled \ +static_assert(alignof(PrimitiveComponent_K2_IsPhysicsCollisionEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_K2_IsPhysicsCollisionEnabled"); \ +static_assert(sizeof(PrimitiveComponent_K2_IsPhysicsCollisionEnabled) == 0x000001, "Wrong size on PrimitiveComponent_K2_IsPhysicsCollisionEnabled"); \ +static_assert(offsetof(PrimitiveComponent_K2_IsPhysicsCollisionEnabled, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_K2_IsPhysicsCollisionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_K2_IsQueryCollisionEnabled \ +static_assert(alignof(PrimitiveComponent_K2_IsQueryCollisionEnabled) == 0x000001, "Wrong alignment on PrimitiveComponent_K2_IsQueryCollisionEnabled"); \ +static_assert(sizeof(PrimitiveComponent_K2_IsQueryCollisionEnabled) == 0x000001, "Wrong size on PrimitiveComponent_K2_IsQueryCollisionEnabled"); \ +static_assert(offsetof(PrimitiveComponent_K2_IsQueryCollisionEnabled, ReturnValue) == 0x000000, "Member 'PrimitiveComponent_K2_IsQueryCollisionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_ScaleByMomentOfInertia \ +static_assert(alignof(PrimitiveComponent_ScaleByMomentOfInertia) == 0x000008, "Wrong alignment on PrimitiveComponent_ScaleByMomentOfInertia"); \ +static_assert(sizeof(PrimitiveComponent_ScaleByMomentOfInertia) == 0x000038, "Wrong size on PrimitiveComponent_ScaleByMomentOfInertia"); \ +static_assert(offsetof(PrimitiveComponent_ScaleByMomentOfInertia, InputVector) == 0x000000, "Member 'PrimitiveComponent_ScaleByMomentOfInertia::InputVector' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_ScaleByMomentOfInertia, BoneName) == 0x000018, "Member 'PrimitiveComponent_ScaleByMomentOfInertia::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_ScaleByMomentOfInertia, ReturnValue) == 0x000020, "Member 'PrimitiveComponent_ScaleByMomentOfInertia::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PrimitiveComponent_WasRecentlyRendered \ +static_assert(alignof(PrimitiveComponent_WasRecentlyRendered) == 0x000004, "Wrong alignment on PrimitiveComponent_WasRecentlyRendered"); \ +static_assert(sizeof(PrimitiveComponent_WasRecentlyRendered) == 0x000008, "Wrong size on PrimitiveComponent_WasRecentlyRendered"); \ +static_assert(offsetof(PrimitiveComponent_WasRecentlyRendered, Tolerance) == 0x000000, "Member 'PrimitiveComponent_WasRecentlyRendered::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(PrimitiveComponent_WasRecentlyRendered, ReturnValue) == 0x000004, "Member 'PrimitiveComponent_WasRecentlyRendered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPrimitiveComponent \ +static_assert(alignof(UPrimitiveComponent) == 0x000010, "Wrong alignment on UPrimitiveComponent"); \ +static_assert(sizeof(UPrimitiveComponent) == 0x000570, "Wrong size on UPrimitiveComponent"); \ +static_assert(offsetof(UPrimitiveComponent, MinDrawDistance) == 0x0002B8, "Member 'UPrimitiveComponent::MinDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, LDMaxDrawDistance) == 0x0002BC, "Member 'UPrimitiveComponent::LDMaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CachedMaxDrawDistance) == 0x0002C0, "Member 'UPrimitiveComponent::CachedMaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, DepthPriorityGroup) == 0x0002C4, "Member 'UPrimitiveComponent::DepthPriorityGroup' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, ViewOwnerDepthPriorityGroup) == 0x0002C5, "Member 'UPrimitiveComponent::ViewOwnerDepthPriorityGroup' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, IndirectLightingCacheQuality) == 0x0002C6, "Member 'UPrimitiveComponent::IndirectLightingCacheQuality' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, LightmapType) == 0x0002C7, "Member 'UPrimitiveComponent::LightmapType' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, HLODBatchingPolicy) == 0x0002C8, "Member 'UPrimitiveComponent::HLODBatchingPolicy' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, ShadowCacheInvalidationBehavior) == 0x0002CE, "Member 'UPrimitiveComponent::ShadowCacheInvalidationBehavior' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, bHasCustomNavigableGeometry) == 0x0002F1, "Member 'UPrimitiveComponent::bHasCustomNavigableGeometry' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CanCharacterStepUpOn) == 0x0002F3, "Member 'UPrimitiveComponent::CanCharacterStepUpOn' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, LightingChannels) == 0x0002F4, "Member 'UPrimitiveComponent::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, RayTracingGroupId) == 0x0002F8, "Member 'UPrimitiveComponent::RayTracingGroupId' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, VisibilityId) == 0x0002FC, "Member 'UPrimitiveComponent::VisibilityId' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CustomDepthStencilValue) == 0x000300, "Member 'UPrimitiveComponent::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CustomPrimitiveData) == 0x000308, "Member 'UPrimitiveComponent::CustomPrimitiveData' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CustomPrimitiveDataInternal) == 0x000318, "Member 'UPrimitiveComponent::CustomPrimitiveDataInternal' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, TranslucencySortPriority) == 0x000330, "Member 'UPrimitiveComponent::TranslucencySortPriority' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, TranslucencySortDistanceOffset) == 0x000334, "Member 'UPrimitiveComponent::TranslucencySortDistanceOffset' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, RuntimeVirtualTextures) == 0x000338, "Member 'UPrimitiveComponent::RuntimeVirtualTextures' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, VirtualTextureLodBias) == 0x000348, "Member 'UPrimitiveComponent::VirtualTextureLodBias' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, VirtualTextureCullMips) == 0x000349, "Member 'UPrimitiveComponent::VirtualTextureCullMips' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, VirtualTextureMinCoverage) == 0x00034A, "Member 'UPrimitiveComponent::VirtualTextureMinCoverage' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, VirtualTextureRenderPassType) == 0x00034B, "Member 'UPrimitiveComponent::VirtualTextureRenderPassType' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, BoundsScale) == 0x00035C, "Member 'UPrimitiveComponent::BoundsScale' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, MoveIgnoreActors) == 0x000370, "Member 'UPrimitiveComponent::MoveIgnoreActors' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, MoveIgnoreComponents) == 0x000380, "Member 'UPrimitiveComponent::MoveIgnoreComponents' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, BodyInstance) == 0x0003A0, "Member 'UPrimitiveComponent::BodyInstance' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentHit) == 0x000530, "Member 'UPrimitiveComponent::OnComponentHit' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentBeginOverlap) == 0x000531, "Member 'UPrimitiveComponent::OnComponentBeginOverlap' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentEndOverlap) == 0x000532, "Member 'UPrimitiveComponent::OnComponentEndOverlap' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentWake) == 0x000533, "Member 'UPrimitiveComponent::OnComponentWake' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentSleep) == 0x000534, "Member 'UPrimitiveComponent::OnComponentSleep' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnComponentPhysicsStateChanged) == 0x000536, "Member 'UPrimitiveComponent::OnComponentPhysicsStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnBeginCursorOver) == 0x000537, "Member 'UPrimitiveComponent::OnBeginCursorOver' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnEndCursorOver) == 0x000538, "Member 'UPrimitiveComponent::OnEndCursorOver' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnClicked) == 0x000539, "Member 'UPrimitiveComponent::OnClicked' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnReleased) == 0x00053A, "Member 'UPrimitiveComponent::OnReleased' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnInputTouchBegin) == 0x00053B, "Member 'UPrimitiveComponent::OnInputTouchBegin' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnInputTouchEnd) == 0x00053C, "Member 'UPrimitiveComponent::OnInputTouchEnd' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnInputTouchEnter) == 0x00053D, "Member 'UPrimitiveComponent::OnInputTouchEnter' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, OnInputTouchLeave) == 0x00053E, "Member 'UPrimitiveComponent::OnInputTouchLeave' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, RayTracingGroupCullingPriority) == 0x00053F, "Member 'UPrimitiveComponent::RayTracingGroupCullingPriority' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, CustomDepthStencilWriteMask) == 0x000540, "Member 'UPrimitiveComponent::CustomDepthStencilWriteMask' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, ExcludeFromHLODLevels) == 0x000560, "Member 'UPrimitiveComponent::ExcludeFromHLODLevels' has a wrong offset!"); \ +static_assert(offsetof(UPrimitiveComponent, LODParentPrimitive) == 0x000568, "Member 'UPrimitiveComponent::LODParentPrimitive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_PrestreamTextures \ +static_assert(alignof(MeshComponent_PrestreamTextures) == 0x000004, "Wrong alignment on MeshComponent_PrestreamTextures"); \ +static_assert(sizeof(MeshComponent_PrestreamTextures) == 0x00000C, "Wrong size on MeshComponent_PrestreamTextures"); \ +static_assert(offsetof(MeshComponent_PrestreamTextures, Seconds) == 0x000000, "Member 'MeshComponent_PrestreamTextures::Seconds' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_PrestreamTextures, bPrioritizeCharacterTextures) == 0x000004, "Member 'MeshComponent_PrestreamTextures::bPrioritizeCharacterTextures' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_PrestreamTextures, CinematicTextureGroups) == 0x000008, "Member 'MeshComponent_PrestreamTextures::CinematicTextureGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_SetOverlayMaterial \ +static_assert(alignof(MeshComponent_SetOverlayMaterial) == 0x000008, "Wrong alignment on MeshComponent_SetOverlayMaterial"); \ +static_assert(sizeof(MeshComponent_SetOverlayMaterial) == 0x000008, "Wrong size on MeshComponent_SetOverlayMaterial"); \ +static_assert(offsetof(MeshComponent_SetOverlayMaterial, NewOverlayMaterial) == 0x000000, "Member 'MeshComponent_SetOverlayMaterial::NewOverlayMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_SetOverlayMaterialMaxDrawDistance \ +static_assert(alignof(MeshComponent_SetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong alignment on MeshComponent_SetOverlayMaterialMaxDrawDistance"); \ +static_assert(sizeof(MeshComponent_SetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong size on MeshComponent_SetOverlayMaterialMaxDrawDistance"); \ +static_assert(offsetof(MeshComponent_SetOverlayMaterialMaxDrawDistance, InMaxDrawDistance) == 0x000000, "Member 'MeshComponent_SetOverlayMaterialMaxDrawDistance::InMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_SetScalarParameterValueOnMaterials \ +static_assert(alignof(MeshComponent_SetScalarParameterValueOnMaterials) == 0x000004, "Wrong alignment on MeshComponent_SetScalarParameterValueOnMaterials"); \ +static_assert(sizeof(MeshComponent_SetScalarParameterValueOnMaterials) == 0x00000C, "Wrong size on MeshComponent_SetScalarParameterValueOnMaterials"); \ +static_assert(offsetof(MeshComponent_SetScalarParameterValueOnMaterials, ParameterName) == 0x000000, "Member 'MeshComponent_SetScalarParameterValueOnMaterials::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_SetScalarParameterValueOnMaterials, ParameterValue) == 0x000008, "Member 'MeshComponent_SetScalarParameterValueOnMaterials::ParameterValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_SetVectorParameterValueOnMaterials \ +static_assert(alignof(MeshComponent_SetVectorParameterValueOnMaterials) == 0x000008, "Wrong alignment on MeshComponent_SetVectorParameterValueOnMaterials"); \ +static_assert(sizeof(MeshComponent_SetVectorParameterValueOnMaterials) == 0x000020, "Wrong size on MeshComponent_SetVectorParameterValueOnMaterials"); \ +static_assert(offsetof(MeshComponent_SetVectorParameterValueOnMaterials, ParameterName) == 0x000000, "Member 'MeshComponent_SetVectorParameterValueOnMaterials::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_SetVectorParameterValueOnMaterials, ParameterValue) == 0x000008, "Member 'MeshComponent_SetVectorParameterValueOnMaterials::ParameterValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_GetMaterialIndex \ +static_assert(alignof(MeshComponent_GetMaterialIndex) == 0x000004, "Wrong alignment on MeshComponent_GetMaterialIndex"); \ +static_assert(sizeof(MeshComponent_GetMaterialIndex) == 0x00000C, "Wrong size on MeshComponent_GetMaterialIndex"); \ +static_assert(offsetof(MeshComponent_GetMaterialIndex, MaterialSlotName) == 0x000000, "Member 'MeshComponent_GetMaterialIndex::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_GetMaterialIndex, ReturnValue) == 0x000008, "Member 'MeshComponent_GetMaterialIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_GetMaterials \ +static_assert(alignof(MeshComponent_GetMaterials) == 0x000008, "Wrong alignment on MeshComponent_GetMaterials"); \ +static_assert(sizeof(MeshComponent_GetMaterials) == 0x000010, "Wrong size on MeshComponent_GetMaterials"); \ +static_assert(offsetof(MeshComponent_GetMaterials, ReturnValue) == 0x000000, "Member 'MeshComponent_GetMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_GetMaterialSlotNames \ +static_assert(alignof(MeshComponent_GetMaterialSlotNames) == 0x000008, "Wrong alignment on MeshComponent_GetMaterialSlotNames"); \ +static_assert(sizeof(MeshComponent_GetMaterialSlotNames) == 0x000010, "Wrong size on MeshComponent_GetMaterialSlotNames"); \ +static_assert(offsetof(MeshComponent_GetMaterialSlotNames, ReturnValue) == 0x000000, "Member 'MeshComponent_GetMaterialSlotNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_GetOverlayMaterial \ +static_assert(alignof(MeshComponent_GetOverlayMaterial) == 0x000008, "Wrong alignment on MeshComponent_GetOverlayMaterial"); \ +static_assert(sizeof(MeshComponent_GetOverlayMaterial) == 0x000008, "Wrong size on MeshComponent_GetOverlayMaterial"); \ +static_assert(offsetof(MeshComponent_GetOverlayMaterial, ReturnValue) == 0x000000, "Member 'MeshComponent_GetOverlayMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_GetOverlayMaterialMaxDrawDistance \ +static_assert(alignof(MeshComponent_GetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong alignment on MeshComponent_GetOverlayMaterialMaxDrawDistance"); \ +static_assert(sizeof(MeshComponent_GetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong size on MeshComponent_GetOverlayMaterialMaxDrawDistance"); \ +static_assert(offsetof(MeshComponent_GetOverlayMaterialMaxDrawDistance, ReturnValue) == 0x000000, "Member 'MeshComponent_GetOverlayMaterialMaxDrawDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshComponent_IsMaterialSlotNameValid \ +static_assert(alignof(MeshComponent_IsMaterialSlotNameValid) == 0x000004, "Wrong alignment on MeshComponent_IsMaterialSlotNameValid"); \ +static_assert(sizeof(MeshComponent_IsMaterialSlotNameValid) == 0x00000C, "Wrong size on MeshComponent_IsMaterialSlotNameValid"); \ +static_assert(offsetof(MeshComponent_IsMaterialSlotNameValid, MaterialSlotName) == 0x000000, "Member 'MeshComponent_IsMaterialSlotNameValid::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(MeshComponent_IsMaterialSlotNameValid, ReturnValue) == 0x000008, "Member 'MeshComponent_IsMaterialSlotNameValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshComponent \ +static_assert(alignof(UMeshComponent) == 0x000010, "Wrong alignment on UMeshComponent"); \ +static_assert(sizeof(UMeshComponent) == 0x0005B0, "Wrong size on UMeshComponent"); \ +static_assert(offsetof(UMeshComponent, OverrideMaterials) == 0x000570, "Member 'UMeshComponent::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UMeshComponent, OverlayMaterial) == 0x000580, "Member 'UMeshComponent::OverlayMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMeshComponent, OverlayMaterialMaxDrawDistance) == 0x000588, "Member 'UMeshComponent::OverlayMaterialMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModule \ +static_assert(alignof(UParticleModule) == 0x000008, "Wrong alignment on UParticleModule"); \ +static_assert(sizeof(UParticleModule) == 0x000030, "Wrong size on UParticleModule"); \ +static_assert(offsetof(UParticleModule, LODValidity) == 0x00002A, "Member 'UParticleModule::LODValidity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLightBase \ +static_assert(alignof(UParticleModuleLightBase) == 0x000008, "Wrong alignment on UParticleModuleLightBase"); \ +static_assert(sizeof(UParticleModuleLightBase) == 0x000030, "Wrong size on UParticleModuleLightBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLight \ +static_assert(alignof(UParticleModuleLight) == 0x000008, "Wrong alignment on UParticleModuleLight"); \ +static_assert(sizeof(UParticleModuleLight) == 0x000140, "Wrong size on UParticleModuleLight"); \ +static_assert(offsetof(UParticleModuleLight, bUseInverseSquaredFalloff) == 0x000030, "Member 'UParticleModuleLight::bUseInverseSquaredFalloff' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, bAffectsTranslucency) == 0x000031, "Member 'UParticleModuleLight::bAffectsTranslucency' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, bPreviewLightRadius) == 0x000038, "Member 'UParticleModuleLight::bPreviewLightRadius' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, SpawnFraction) == 0x00003C, "Member 'UParticleModuleLight::SpawnFraction' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, ColorScaleOverLife) == 0x000040, "Member 'UParticleModuleLight::ColorScaleOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, BrightnessOverLife) == 0x0000A0, "Member 'UParticleModuleLight::BrightnessOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, RadiusScale) == 0x0000D0, "Member 'UParticleModuleLight::RadiusScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, LightExponent) == 0x000100, "Member 'UParticleModuleLight::LightExponent' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, InverseExposureBlend) == 0x000130, "Member 'UParticleModuleLight::InverseExposureBlend' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, LightingChannels) == 0x000134, "Member 'UParticleModuleLight::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, VolumetricScatteringIntensity) == 0x000138, "Member 'UParticleModuleLight::VolumetricScatteringIntensity' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, bHighQualityLights) == 0x00013C, "Member 'UParticleModuleLight::bHighQualityLights' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLight, bShadowCastingLights) == 0x00013D, "Member 'UParticleModuleLight::bShadowCastingLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLight_Seeded \ +static_assert(alignof(UParticleModuleLight_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLight_Seeded"); \ +static_assert(sizeof(UParticleModuleLight_Seeded) == 0x000160, "Wrong size on UParticleModuleLight_Seeded"); \ +static_assert(offsetof(UParticleModuleLight_Seeded, RandomSeedInfo) == 0x000140, "Member 'UParticleModuleLight_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCustomOutput \ +static_assert(alignof(UMaterialExpressionCustomOutput) == 0x000008, "Wrong alignment on UMaterialExpressionCustomOutput"); \ +static_assert(sizeof(UMaterialExpressionCustomOutput) == 0x0000B0, "Wrong size on UMaterialExpressionCustomOutput"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput \ +static_assert(alignof(UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput) == 0x000008, "Wrong alignment on UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput"); \ +static_assert(sizeof(UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput) == 0x0000D8, "Wrong size on UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput"); \ +static_assert(offsetof(UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput, ContainsMatter) == 0x0000B0, "Member 'UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput::ContainsMatter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTrailBase \ +static_assert(alignof(UParticleModuleTrailBase) == 0x000008, "Wrong alignment on UParticleModuleTrailBase"); \ +static_assert(sizeof(UParticleModuleTrailBase) == 0x000030, "Wrong size on UParticleModuleTrailBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTrailSource \ +static_assert(alignof(UParticleModuleTrailSource) == 0x000008, "Wrong alignment on UParticleModuleTrailSource"); \ +static_assert(sizeof(UParticleModuleTrailSource) == 0x000090, "Wrong size on UParticleModuleTrailSource"); \ +static_assert(offsetof(UParticleModuleTrailSource, SourceMethod) == 0x000030, "Member 'UParticleModuleTrailSource::SourceMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTrailSource, SourceName) == 0x000034, "Member 'UParticleModuleTrailSource::SourceName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTrailSource, SourceStrength) == 0x000040, "Member 'UParticleModuleTrailSource::SourceStrength' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTrailSource, SourceOffsetCount) == 0x000074, "Member 'UParticleModuleTrailSource::SourceOffsetCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTrailSource, SourceOffsetDefaults) == 0x000078, "Member 'UParticleModuleTrailSource::SourceOffsetDefaults' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTrailSource, SelectionMethod) == 0x000088, "Member 'UParticleModuleTrailSource::SelectionMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChannel \ +static_assert(alignof(UChannel) == 0x000008, "Wrong alignment on UChannel"); \ +static_assert(sizeof(UChannel) == 0x000068, "Wrong size on UChannel"); \ +static_assert(offsetof(UChannel, Connection) == 0x000028, "Member 'UChannel::Connection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorChannel \ +static_assert(alignof(UActorChannel) == 0x000008, "Wrong alignment on UActorChannel"); \ +static_assert(sizeof(UActorChannel) == 0x000298, "Wrong size on UActorChannel"); \ +static_assert(offsetof(UActorChannel, Actor) == 0x000068, "Member 'UActorChannel::Actor' has a wrong offset!"); \ +static_assert(offsetof(UActorChannel, CreateSubObjects) == 0x000160, "Member 'UActorChannel::CreateSubObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataBSDF \ +static_assert(alignof(UMaterialExpressionStrataBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataBSDF) == 0x0000B0, "Wrong size on UMaterialExpressionStrataBSDF"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataPostProcess \ +static_assert(alignof(UMaterialExpressionStrataPostProcess) == 0x000008, "Wrong alignment on UMaterialExpressionStrataPostProcess"); \ +static_assert(sizeof(UMaterialExpressionStrataPostProcess) == 0x000100, "Wrong size on UMaterialExpressionStrataPostProcess"); \ +static_assert(offsetof(UMaterialExpressionStrataPostProcess, Color) == 0x0000B0, "Member 'UMaterialExpressionStrataPostProcess::Color' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataPostProcess, Opacity) == 0x0000D8, "Member 'UMaterialExpressionStrataPostProcess::Opacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialInterfaceEditorOnlyData \ +static_assert(alignof(UMaterialInterfaceEditorOnlyData) == 0x000008, "Wrong alignment on UMaterialInterfaceEditorOnlyData"); \ +static_assert(sizeof(UMaterialInterfaceEditorOnlyData) == 0x000040, "Wrong size on UMaterialInterfaceEditorOnlyData"); \ + +#define DUMPER7_ASSERTS_UMaterialEditorOnlyData \ +static_assert(alignof(UMaterialEditorOnlyData) == 0x000008, "Wrong alignment on UMaterialEditorOnlyData"); \ +static_assert(sizeof(UMaterialEditorOnlyData) == 0x000678, "Wrong size on UMaterialEditorOnlyData"); \ +static_assert(offsetof(UMaterialEditorOnlyData, BaseColor) == 0x000040, "Member 'UMaterialEditorOnlyData::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Metallic) == 0x000070, "Member 'UMaterialEditorOnlyData::Metallic' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Specular) == 0x0000A0, "Member 'UMaterialEditorOnlyData::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Roughness) == 0x0000D0, "Member 'UMaterialEditorOnlyData::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Anisotropy) == 0x000100, "Member 'UMaterialEditorOnlyData::Anisotropy' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Normal) == 0x000130, "Member 'UMaterialEditorOnlyData::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Tangent) == 0x000168, "Member 'UMaterialEditorOnlyData::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, EmissiveColor) == 0x0001A0, "Member 'UMaterialEditorOnlyData::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Opacity) == 0x0001D0, "Member 'UMaterialEditorOnlyData::Opacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, OpacityMask) == 0x000200, "Member 'UMaterialEditorOnlyData::OpacityMask' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, WorldPositionOffset) == 0x000230, "Member 'UMaterialEditorOnlyData::WorldPositionOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, displacement) == 0x000268, "Member 'UMaterialEditorOnlyData::displacement' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, SubsurfaceColor) == 0x000298, "Member 'UMaterialEditorOnlyData::SubsurfaceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, ClearCoat) == 0x0002C8, "Member 'UMaterialEditorOnlyData::ClearCoat' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, ClearCoatRoughness) == 0x0002F8, "Member 'UMaterialEditorOnlyData::ClearCoatRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, AmbientOcclusion) == 0x000328, "Member 'UMaterialEditorOnlyData::AmbientOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, Refraction) == 0x000358, "Member 'UMaterialEditorOnlyData::Refraction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, CustomizedUVs) == 0x000388, "Member 'UMaterialEditorOnlyData::CustomizedUVs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, MaterialAttributes) == 0x000548, "Member 'UMaterialEditorOnlyData::MaterialAttributes' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, PixelDepthOffset) == 0x000578, "Member 'UMaterialEditorOnlyData::PixelDepthOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, ShadingModelFromMaterialExpression) == 0x0005A8, "Member 'UMaterialEditorOnlyData::ShadingModelFromMaterialExpression' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, SurfaceThickness) == 0x0005D8, "Member 'UMaterialEditorOnlyData::SurfaceThickness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, FrontMaterial) == 0x000608, "Member 'UMaterialEditorOnlyData::FrontMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, ExpressionCollection) == 0x000638, "Member 'UMaterialEditorOnlyData::ExpressionCollection' has a wrong offset!"); \ +static_assert(offsetof(UMaterialEditorOnlyData, ParameterGroupData) == 0x000668, "Member 'UMaterialEditorOnlyData::ParameterGroupData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCloudSampleAttribute \ +static_assert(alignof(UMaterialExpressionCloudSampleAttribute) == 0x000008, "Wrong alignment on UMaterialExpressionCloudSampleAttribute"); \ +static_assert(sizeof(UMaterialExpressionCloudSampleAttribute) == 0x0000B0, "Wrong size on UMaterialExpressionCloudSampleAttribute"); \ + +#define DUMPER7_ASSERTS_UEdGraphNode \ +static_assert(alignof(UEdGraphNode) == 0x000008, "Wrong alignment on UEdGraphNode"); \ +static_assert(sizeof(UEdGraphNode) == 0x000098, "Wrong size on UEdGraphNode"); \ +static_assert(offsetof(UEdGraphNode, DeprecatedPins) == 0x000038, "Member 'UEdGraphNode::DeprecatedPins' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodePosX) == 0x000048, "Member 'UEdGraphNode::NodePosX' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodePosY) == 0x00004C, "Member 'UEdGraphNode::NodePosY' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodeWidth) == 0x000050, "Member 'UEdGraphNode::NodeWidth' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodeHeight) == 0x000054, "Member 'UEdGraphNode::NodeHeight' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, AdvancedPinDisplay) == 0x000058, "Member 'UEdGraphNode::AdvancedPinDisplay' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, EnabledState) == 0x000059, "Member 'UEdGraphNode::EnabledState' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodeComment) == 0x000060, "Member 'UEdGraphNode::NodeComment' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, ErrorType) == 0x000070, "Member 'UEdGraphNode::ErrorType' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, ErrorMsg) == 0x000078, "Member 'UEdGraphNode::ErrorMsg' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode, NodeGuid) == 0x000088, "Member 'UEdGraphNode::NodeGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INavRelevantInterface \ +static_assert(alignof(INavRelevantInterface) == 0x000001, "Wrong alignment on INavRelevantInterface"); \ +static_assert(sizeof(INavRelevantInterface) == 0x000001, "Wrong size on INavRelevantInterface"); \ + +#define DUMPER7_ASSERTS_MaterialBillboardComponent_AddElement \ +static_assert(alignof(MaterialBillboardComponent_AddElement) == 0x000008, "Wrong alignment on MaterialBillboardComponent_AddElement"); \ +static_assert(sizeof(MaterialBillboardComponent_AddElement) == 0x000028, "Wrong size on MaterialBillboardComponent_AddElement"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, Material) == 0x000000, "Member 'MaterialBillboardComponent_AddElement::Material' has a wrong offset!"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, DistanceToOpacityCurve) == 0x000008, "Member 'MaterialBillboardComponent_AddElement::DistanceToOpacityCurve' has a wrong offset!"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, bSizeIsInScreenSpace) == 0x000010, "Member 'MaterialBillboardComponent_AddElement::bSizeIsInScreenSpace' has a wrong offset!"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, BaseSizeX) == 0x000014, "Member 'MaterialBillboardComponent_AddElement::BaseSizeX' has a wrong offset!"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, BaseSizeY) == 0x000018, "Member 'MaterialBillboardComponent_AddElement::BaseSizeY' has a wrong offset!"); \ +static_assert(offsetof(MaterialBillboardComponent_AddElement, DistanceToSizeCurve) == 0x000020, "Member 'MaterialBillboardComponent_AddElement::DistanceToSizeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialBillboardComponent_SetElements \ +static_assert(alignof(MaterialBillboardComponent_SetElements) == 0x000008, "Wrong alignment on MaterialBillboardComponent_SetElements"); \ +static_assert(sizeof(MaterialBillboardComponent_SetElements) == 0x000010, "Wrong size on MaterialBillboardComponent_SetElements"); \ +static_assert(offsetof(MaterialBillboardComponent_SetElements, NewElements) == 0x000000, "Member 'MaterialBillboardComponent_SetElements::NewElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialBillboardComponent \ +static_assert(alignof(UMaterialBillboardComponent) == 0x000010, "Wrong alignment on UMaterialBillboardComponent"); \ +static_assert(sizeof(UMaterialBillboardComponent) == 0x000580, "Wrong size on UMaterialBillboardComponent"); \ +static_assert(offsetof(UMaterialBillboardComponent, Elements) == 0x000570, "Member 'UMaterialBillboardComponent::Elements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubsystem \ +static_assert(alignof(USubsystem) == 0x000008, "Wrong alignment on USubsystem"); \ +static_assert(sizeof(USubsystem) == 0x000030, "Wrong size on USubsystem"); \ + +#define DUMPER7_ASSERTS_UWorldSubsystem \ +static_assert(alignof(UWorldSubsystem) == 0x000008, "Wrong alignment on UWorldSubsystem"); \ +static_assert(sizeof(UWorldSubsystem) == 0x000030, "Wrong size on UWorldSubsystem"); \ + +#define DUMPER7_ASSERTS_USoundNode \ +static_assert(alignof(USoundNode) == 0x000008, "Wrong alignment on USoundNode"); \ +static_assert(sizeof(USoundNode) == 0x000048, "Wrong size on USoundNode"); \ +static_assert(offsetof(USoundNode, ChildNodes) == 0x000028, "Member 'USoundNode::ChildNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeMature \ +static_assert(alignof(USoundNodeMature) == 0x000008, "Wrong alignment on USoundNodeMature"); \ +static_assert(sizeof(USoundNodeMature) == 0x000048, "Wrong size on USoundNodeMature"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataWeight \ +static_assert(alignof(UMaterialExpressionStrataWeight) == 0x000008, "Wrong alignment on UMaterialExpressionStrataWeight"); \ +static_assert(sizeof(UMaterialExpressionStrataWeight) == 0x000100, "Wrong size on UMaterialExpressionStrataWeight"); \ +static_assert(offsetof(UMaterialExpressionStrataWeight, A) == 0x0000B0, "Member 'UMaterialExpressionStrataWeight::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataWeight, Weight) == 0x0000D8, "Member 'UMaterialExpressionStrataWeight::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_GetInitialEvaluateWorldPositionOffset \ +static_assert(alignof(StaticMeshComponent_GetInitialEvaluateWorldPositionOffset) == 0x000001, "Wrong alignment on StaticMeshComponent_GetInitialEvaluateWorldPositionOffset"); \ +static_assert(sizeof(StaticMeshComponent_GetInitialEvaluateWorldPositionOffset) == 0x000001, "Wrong size on StaticMeshComponent_GetInitialEvaluateWorldPositionOffset"); \ +static_assert(offsetof(StaticMeshComponent_GetInitialEvaluateWorldPositionOffset, ReturnValue) == 0x000000, "Member 'StaticMeshComponent_GetInitialEvaluateWorldPositionOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_OnRep_StaticMesh \ +static_assert(alignof(StaticMeshComponent_OnRep_StaticMesh) == 0x000008, "Wrong alignment on StaticMeshComponent_OnRep_StaticMesh"); \ +static_assert(sizeof(StaticMeshComponent_OnRep_StaticMesh) == 0x000008, "Wrong size on StaticMeshComponent_OnRep_StaticMesh"); \ +static_assert(offsetof(StaticMeshComponent_OnRep_StaticMesh, OldStaticMesh) == 0x000000, "Member 'StaticMeshComponent_OnRep_StaticMesh::OldStaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetDistanceFieldSelfShadowBias \ +static_assert(alignof(StaticMeshComponent_SetDistanceFieldSelfShadowBias) == 0x000004, "Wrong alignment on StaticMeshComponent_SetDistanceFieldSelfShadowBias"); \ +static_assert(sizeof(StaticMeshComponent_SetDistanceFieldSelfShadowBias) == 0x000004, "Wrong size on StaticMeshComponent_SetDistanceFieldSelfShadowBias"); \ +static_assert(offsetof(StaticMeshComponent_SetDistanceFieldSelfShadowBias, NewValue) == 0x000000, "Member 'StaticMeshComponent_SetDistanceFieldSelfShadowBias::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetEvaluateWorldPositionOffset \ +static_assert(alignof(StaticMeshComponent_SetEvaluateWorldPositionOffset) == 0x000001, "Wrong alignment on StaticMeshComponent_SetEvaluateWorldPositionOffset"); \ +static_assert(sizeof(StaticMeshComponent_SetEvaluateWorldPositionOffset) == 0x000001, "Wrong size on StaticMeshComponent_SetEvaluateWorldPositionOffset"); \ +static_assert(offsetof(StaticMeshComponent_SetEvaluateWorldPositionOffset, NewValue) == 0x000000, "Member 'StaticMeshComponent_SetEvaluateWorldPositionOffset::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing \ +static_assert(alignof(StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing) == 0x000001, "Wrong alignment on StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing"); \ +static_assert(sizeof(StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing) == 0x000001, "Wrong size on StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing"); \ +static_assert(offsetof(StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing, NewValue) == 0x000000, "Member 'StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetForceDisableNanite \ +static_assert(alignof(StaticMeshComponent_SetForceDisableNanite) == 0x000001, "Wrong alignment on StaticMeshComponent_SetForceDisableNanite"); \ +static_assert(sizeof(StaticMeshComponent_SetForceDisableNanite) == 0x000001, "Wrong size on StaticMeshComponent_SetForceDisableNanite"); \ +static_assert(offsetof(StaticMeshComponent_SetForceDisableNanite, bInForceDisableNanite) == 0x000000, "Member 'StaticMeshComponent_SetForceDisableNanite::bInForceDisableNanite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetForcedLodModel \ +static_assert(alignof(StaticMeshComponent_SetForcedLodModel) == 0x000004, "Wrong alignment on StaticMeshComponent_SetForcedLodModel"); \ +static_assert(sizeof(StaticMeshComponent_SetForcedLodModel) == 0x000004, "Wrong size on StaticMeshComponent_SetForcedLodModel"); \ +static_assert(offsetof(StaticMeshComponent_SetForcedLodModel, NewForcedLodModel) == 0x000000, "Member 'StaticMeshComponent_SetForcedLodModel::NewForcedLodModel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetReverseCulling \ +static_assert(alignof(StaticMeshComponent_SetReverseCulling) == 0x000001, "Wrong alignment on StaticMeshComponent_SetReverseCulling"); \ +static_assert(sizeof(StaticMeshComponent_SetReverseCulling) == 0x000001, "Wrong size on StaticMeshComponent_SetReverseCulling"); \ +static_assert(offsetof(StaticMeshComponent_SetReverseCulling, ReverseCulling) == 0x000000, "Member 'StaticMeshComponent_SetReverseCulling::ReverseCulling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetStaticMesh \ +static_assert(alignof(StaticMeshComponent_SetStaticMesh) == 0x000008, "Wrong alignment on StaticMeshComponent_SetStaticMesh"); \ +static_assert(sizeof(StaticMeshComponent_SetStaticMesh) == 0x000010, "Wrong size on StaticMeshComponent_SetStaticMesh"); \ +static_assert(offsetof(StaticMeshComponent_SetStaticMesh, NewMesh) == 0x000000, "Member 'StaticMeshComponent_SetStaticMesh::NewMesh' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshComponent_SetStaticMesh, ReturnValue) == 0x000008, "Member 'StaticMeshComponent_SetStaticMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_SetWorldPositionOffsetDisableDistance \ +static_assert(alignof(StaticMeshComponent_SetWorldPositionOffsetDisableDistance) == 0x000004, "Wrong alignment on StaticMeshComponent_SetWorldPositionOffsetDisableDistance"); \ +static_assert(sizeof(StaticMeshComponent_SetWorldPositionOffsetDisableDistance) == 0x000004, "Wrong size on StaticMeshComponent_SetWorldPositionOffsetDisableDistance"); \ +static_assert(offsetof(StaticMeshComponent_SetWorldPositionOffsetDisableDistance, NewValue) == 0x000000, "Member 'StaticMeshComponent_SetWorldPositionOffsetDisableDistance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshComponent_GetLocalBounds \ +static_assert(alignof(StaticMeshComponent_GetLocalBounds) == 0x000008, "Wrong alignment on StaticMeshComponent_GetLocalBounds"); \ +static_assert(sizeof(StaticMeshComponent_GetLocalBounds) == 0x000030, "Wrong size on StaticMeshComponent_GetLocalBounds"); \ +static_assert(offsetof(StaticMeshComponent_GetLocalBounds, Min) == 0x000000, "Member 'StaticMeshComponent_GetLocalBounds::Min' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshComponent_GetLocalBounds, Max) == 0x000018, "Member 'StaticMeshComponent_GetLocalBounds::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticMeshComponent \ +static_assert(alignof(UStaticMeshComponent) == 0x000010, "Wrong alignment on UStaticMeshComponent"); \ +static_assert(sizeof(UStaticMeshComponent) == 0x000630, "Wrong size on UStaticMeshComponent"); \ +static_assert(offsetof(UStaticMeshComponent, ForcedLodModel) == 0x0005A8, "Member 'UStaticMeshComponent::ForcedLodModel' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, PreviousLODLevel) == 0x0005AC, "Member 'UStaticMeshComponent::PreviousLODLevel' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, MinLOD) == 0x0005B0, "Member 'UStaticMeshComponent::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, SubDivisionStepSize) == 0x0005B4, "Member 'UStaticMeshComponent::SubDivisionStepSize' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, StaticMesh) == 0x0005B8, "Member 'UStaticMeshComponent::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, WireframeColorOverride) == 0x0005C0, "Member 'UStaticMeshComponent::WireframeColorOverride' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, WorldPositionOffsetDisableDistance) == 0x0005C8, "Member 'UStaticMeshComponent::WorldPositionOffsetDisableDistance' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, OverriddenLightMapRes) == 0x0005D0, "Member 'UStaticMeshComponent::OverriddenLightMapRes' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, DistanceFieldIndirectShadowMinVisibility) == 0x0005D4, "Member 'UStaticMeshComponent::DistanceFieldIndirectShadowMinVisibility' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, DistanceFieldSelfShadowBias) == 0x0005D8, "Member 'UStaticMeshComponent::DistanceFieldSelfShadowBias' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, StreamingDistanceMultiplier) == 0x0005DC, "Member 'UStaticMeshComponent::StreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, LODData) == 0x0005E0, "Member 'UStaticMeshComponent::LODData' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, StreamingTextureData) == 0x0005F0, "Member 'UStaticMeshComponent::StreamingTextureData' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshComponent, LightmassSettings) == 0x000600, "Member 'UStaticMeshComponent::LightmassSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataUtilityBase \ +static_assert(alignof(UMaterialExpressionStrataUtilityBase) == 0x000008, "Wrong alignment on UMaterialExpressionStrataUtilityBase"); \ +static_assert(sizeof(UMaterialExpressionStrataUtilityBase) == 0x0000B0, "Wrong size on UMaterialExpressionStrataUtilityBase"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_AddInstance \ +static_assert(alignof(InstancedStaticMeshComponent_AddInstance) == 0x000010, "Wrong alignment on InstancedStaticMeshComponent_AddInstance"); \ +static_assert(sizeof(InstancedStaticMeshComponent_AddInstance) == 0x000070, "Wrong size on InstancedStaticMeshComponent_AddInstance"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstance, InstanceTransform) == 0x000000, "Member 'InstancedStaticMeshComponent_AddInstance::InstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstance, bWorldSpace) == 0x000060, "Member 'InstancedStaticMeshComponent_AddInstance::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstance, ReturnValue) == 0x000064, "Member 'InstancedStaticMeshComponent_AddInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_AddInstances \ +static_assert(alignof(InstancedStaticMeshComponent_AddInstances) == 0x000008, "Wrong alignment on InstancedStaticMeshComponent_AddInstances"); \ +static_assert(sizeof(InstancedStaticMeshComponent_AddInstances) == 0x000028, "Wrong size on InstancedStaticMeshComponent_AddInstances"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstances, InstanceTransforms) == 0x000000, "Member 'InstancedStaticMeshComponent_AddInstances::InstanceTransforms' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstances, bShouldReturnIndices) == 0x000010, "Member 'InstancedStaticMeshComponent_AddInstances::bShouldReturnIndices' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstances, bWorldSpace) == 0x000011, "Member 'InstancedStaticMeshComponent_AddInstances::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstances, ReturnValue) == 0x000018, "Member 'InstancedStaticMeshComponent_AddInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_AddInstanceWorldSpace \ +static_assert(alignof(InstancedStaticMeshComponent_AddInstanceWorldSpace) == 0x000010, "Wrong alignment on InstancedStaticMeshComponent_AddInstanceWorldSpace"); \ +static_assert(sizeof(InstancedStaticMeshComponent_AddInstanceWorldSpace) == 0x000070, "Wrong size on InstancedStaticMeshComponent_AddInstanceWorldSpace"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstanceWorldSpace, WorldTransform) == 0x000000, "Member 'InstancedStaticMeshComponent_AddInstanceWorldSpace::WorldTransform' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_AddInstanceWorldSpace, ReturnValue) == 0x000060, "Member 'InstancedStaticMeshComponent_AddInstanceWorldSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_BatchUpdateInstancesTransform \ +static_assert(alignof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform) == 0x000010, "Wrong alignment on InstancedStaticMeshComponent_BatchUpdateInstancesTransform"); \ +static_assert(sizeof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform) == 0x000080, "Wrong size on InstancedStaticMeshComponent_BatchUpdateInstancesTransform"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, StartInstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::StartInstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, NumInstances) == 0x000004, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::NumInstances' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, NewInstancesTransform) == 0x000010, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::NewInstancesTransform' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, bWorldSpace) == 0x000070, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, bMarkRenderStateDirty) == 0x000071, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, bTeleport) == 0x000072, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransform, ReturnValue) == 0x000073, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_BatchUpdateInstancesTransforms \ +static_assert(alignof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms) == 0x000008, "Wrong alignment on InstancedStaticMeshComponent_BatchUpdateInstancesTransforms"); \ +static_assert(sizeof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms) == 0x000020, "Wrong size on InstancedStaticMeshComponent_BatchUpdateInstancesTransforms"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, StartInstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::StartInstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, NewInstancesTransforms) == 0x000008, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::NewInstancesTransforms' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, bWorldSpace) == 0x000018, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, bMarkRenderStateDirty) == 0x000019, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, bTeleport) == 0x00001A, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_BatchUpdateInstancesTransforms, ReturnValue) == 0x00001B, "Member 'InstancedStaticMeshComponent_BatchUpdateInstancesTransforms::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_RemoveInstance \ +static_assert(alignof(InstancedStaticMeshComponent_RemoveInstance) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_RemoveInstance"); \ +static_assert(sizeof(InstancedStaticMeshComponent_RemoveInstance) == 0x000008, "Wrong size on InstancedStaticMeshComponent_RemoveInstance"); \ +static_assert(offsetof(InstancedStaticMeshComponent_RemoveInstance, InstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_RemoveInstance::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_RemoveInstance, ReturnValue) == 0x000004, "Member 'InstancedStaticMeshComponent_RemoveInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_RemoveInstances \ +static_assert(alignof(InstancedStaticMeshComponent_RemoveInstances) == 0x000008, "Wrong alignment on InstancedStaticMeshComponent_RemoveInstances"); \ +static_assert(sizeof(InstancedStaticMeshComponent_RemoveInstances) == 0x000018, "Wrong size on InstancedStaticMeshComponent_RemoveInstances"); \ +static_assert(offsetof(InstancedStaticMeshComponent_RemoveInstances, InstancesToRemove) == 0x000000, "Member 'InstancedStaticMeshComponent_RemoveInstances::InstancesToRemove' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_RemoveInstances, ReturnValue) == 0x000010, "Member 'InstancedStaticMeshComponent_RemoveInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_SetCullDistances \ +static_assert(alignof(InstancedStaticMeshComponent_SetCullDistances) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_SetCullDistances"); \ +static_assert(sizeof(InstancedStaticMeshComponent_SetCullDistances) == 0x000008, "Wrong size on InstancedStaticMeshComponent_SetCullDistances"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCullDistances, StartCullDistance) == 0x000000, "Member 'InstancedStaticMeshComponent_SetCullDistances::StartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCullDistances, EndCullDistance) == 0x000004, "Member 'InstancedStaticMeshComponent_SetCullDistances::EndCullDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_SetCustomDataValue \ +static_assert(alignof(InstancedStaticMeshComponent_SetCustomDataValue) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_SetCustomDataValue"); \ +static_assert(sizeof(InstancedStaticMeshComponent_SetCustomDataValue) == 0x000010, "Wrong size on InstancedStaticMeshComponent_SetCustomDataValue"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCustomDataValue, InstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_SetCustomDataValue::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCustomDataValue, CustomDataIndex) == 0x000004, "Member 'InstancedStaticMeshComponent_SetCustomDataValue::CustomDataIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCustomDataValue, CustomDataValue) == 0x000008, "Member 'InstancedStaticMeshComponent_SetCustomDataValue::CustomDataValue' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCustomDataValue, bMarkRenderStateDirty) == 0x00000C, "Member 'InstancedStaticMeshComponent_SetCustomDataValue::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetCustomDataValue, ReturnValue) == 0x00000D, "Member 'InstancedStaticMeshComponent_SetCustomDataValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_SetNumCustomDataFloats \ +static_assert(alignof(InstancedStaticMeshComponent_SetNumCustomDataFloats) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_SetNumCustomDataFloats"); \ +static_assert(sizeof(InstancedStaticMeshComponent_SetNumCustomDataFloats) == 0x000004, "Wrong size on InstancedStaticMeshComponent_SetNumCustomDataFloats"); \ +static_assert(offsetof(InstancedStaticMeshComponent_SetNumCustomDataFloats, InNumCustomDataFloats) == 0x000000, "Member 'InstancedStaticMeshComponent_SetNumCustomDataFloats::InNumCustomDataFloats' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_UpdateInstanceTransform \ +static_assert(alignof(InstancedStaticMeshComponent_UpdateInstanceTransform) == 0x000010, "Wrong alignment on InstancedStaticMeshComponent_UpdateInstanceTransform"); \ +static_assert(sizeof(InstancedStaticMeshComponent_UpdateInstanceTransform) == 0x000080, "Wrong size on InstancedStaticMeshComponent_UpdateInstanceTransform"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, InstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, NewInstanceTransform) == 0x000010, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::NewInstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, bWorldSpace) == 0x000070, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, bMarkRenderStateDirty) == 0x000071, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, bTeleport) == 0x000072, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_UpdateInstanceTransform, ReturnValue) == 0x000073, "Member 'InstancedStaticMeshComponent_UpdateInstanceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_GetCullDistances \ +static_assert(alignof(InstancedStaticMeshComponent_GetCullDistances) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_GetCullDistances"); \ +static_assert(sizeof(InstancedStaticMeshComponent_GetCullDistances) == 0x000008, "Wrong size on InstancedStaticMeshComponent_GetCullDistances"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetCullDistances, OutStartCullDistance) == 0x000000, "Member 'InstancedStaticMeshComponent_GetCullDistances::OutStartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetCullDistances, OutEndCullDistance) == 0x000004, "Member 'InstancedStaticMeshComponent_GetCullDistances::OutEndCullDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_GetInstanceCount \ +static_assert(alignof(InstancedStaticMeshComponent_GetInstanceCount) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_GetInstanceCount"); \ +static_assert(sizeof(InstancedStaticMeshComponent_GetInstanceCount) == 0x000004, "Wrong size on InstancedStaticMeshComponent_GetInstanceCount"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstanceCount, ReturnValue) == 0x000000, "Member 'InstancedStaticMeshComponent_GetInstanceCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_GetInstancesOverlappingBox \ +static_assert(alignof(InstancedStaticMeshComponent_GetInstancesOverlappingBox) == 0x000008, "Wrong alignment on InstancedStaticMeshComponent_GetInstancesOverlappingBox"); \ +static_assert(sizeof(InstancedStaticMeshComponent_GetInstancesOverlappingBox) == 0x000050, "Wrong size on InstancedStaticMeshComponent_GetInstancesOverlappingBox"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingBox, Box) == 0x000000, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingBox::Box' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingBox, bBoxInWorldSpace) == 0x000038, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingBox::bBoxInWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingBox, ReturnValue) == 0x000040, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_GetInstancesOverlappingSphere \ +static_assert(alignof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere) == 0x000008, "Wrong alignment on InstancedStaticMeshComponent_GetInstancesOverlappingSphere"); \ +static_assert(sizeof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere) == 0x000030, "Wrong size on InstancedStaticMeshComponent_GetInstancesOverlappingSphere"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere, Center) == 0x000000, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingSphere::Center' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere, Radius) == 0x000018, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingSphere::Radius' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere, bSphereInWorldSpace) == 0x00001C, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingSphere::bSphereInWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstancesOverlappingSphere, ReturnValue) == 0x000020, "Member 'InstancedStaticMeshComponent_GetInstancesOverlappingSphere::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_GetInstanceTransform \ +static_assert(alignof(InstancedStaticMeshComponent_GetInstanceTransform) == 0x000010, "Wrong alignment on InstancedStaticMeshComponent_GetInstanceTransform"); \ +static_assert(sizeof(InstancedStaticMeshComponent_GetInstanceTransform) == 0x000080, "Wrong size on InstancedStaticMeshComponent_GetInstanceTransform"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstanceTransform, InstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_GetInstanceTransform::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstanceTransform, OutInstanceTransform) == 0x000010, "Member 'InstancedStaticMeshComponent_GetInstanceTransform::OutInstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstanceTransform, bWorldSpace) == 0x000070, "Member 'InstancedStaticMeshComponent_GetInstanceTransform::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_GetInstanceTransform, ReturnValue) == 0x000071, "Member 'InstancedStaticMeshComponent_GetInstanceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InstancedStaticMeshComponent_IsValidInstance \ +static_assert(alignof(InstancedStaticMeshComponent_IsValidInstance) == 0x000004, "Wrong alignment on InstancedStaticMeshComponent_IsValidInstance"); \ +static_assert(sizeof(InstancedStaticMeshComponent_IsValidInstance) == 0x000008, "Wrong size on InstancedStaticMeshComponent_IsValidInstance"); \ +static_assert(offsetof(InstancedStaticMeshComponent_IsValidInstance, InstanceIndex) == 0x000000, "Member 'InstancedStaticMeshComponent_IsValidInstance::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(InstancedStaticMeshComponent_IsValidInstance, ReturnValue) == 0x000004, "Member 'InstancedStaticMeshComponent_IsValidInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInstancedStaticMeshComponent \ +static_assert(alignof(UInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UInstancedStaticMeshComponent"); \ +static_assert(sizeof(UInstancedStaticMeshComponent) == 0x000770, "Wrong size on UInstancedStaticMeshComponent"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, PerInstanceSMData) == 0x000630, "Member 'UInstancedStaticMeshComponent::PerInstanceSMData' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, PerInstancePrevTransform) == 0x000640, "Member 'UInstancedStaticMeshComponent::PerInstancePrevTransform' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, NumCustomDataFloats) == 0x000650, "Member 'UInstancedStaticMeshComponent::NumCustomDataFloats' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, PerInstanceSMCustomData) == 0x000658, "Member 'UInstancedStaticMeshComponent::PerInstanceSMCustomData' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, InstancingRandomSeed) == 0x000668, "Member 'UInstancedStaticMeshComponent::InstancingRandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, AdditionalRandomSeeds) == 0x000670, "Member 'UInstancedStaticMeshComponent::AdditionalRandomSeeds' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, InstanceStartCullDistance) == 0x000680, "Member 'UInstancedStaticMeshComponent::InstanceStartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, InstanceEndCullDistance) == 0x000684, "Member 'UInstancedStaticMeshComponent::InstanceEndCullDistance' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, InstanceReorderTable) == 0x000688, "Member 'UInstancedStaticMeshComponent::InstanceReorderTable' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, NumPendingLightmaps) == 0x00075C, "Member 'UInstancedStaticMeshComponent::NumPendingLightmaps' has a wrong offset!"); \ +static_assert(offsetof(UInstancedStaticMeshComponent, CachedMappings) == 0x000760, "Member 'UInstancedStaticMeshComponent::CachedMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationBase \ +static_assert(alignof(UParticleModuleLocationBase) == 0x000008, "Wrong alignment on UParticleModuleLocationBase"); \ +static_assert(sizeof(UParticleModuleLocationBase) == 0x000030, "Wrong size on UParticleModuleLocationBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveBase \ +static_assert(alignof(UParticleModuleLocationPrimitiveBase) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveBase"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveBase) == 0x0000C8, "Wrong size on UParticleModuleLocationPrimitiveBase"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveBase, VelocityScale) == 0x000038, "Member 'UParticleModuleLocationPrimitiveBase::VelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveBase, StartLocation) == 0x000068, "Member 'UParticleModuleLocationPrimitiveBase::StartLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveSphere \ +static_assert(alignof(UParticleModuleLocationPrimitiveSphere) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveSphere"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveSphere) == 0x0000F8, "Wrong size on UParticleModuleLocationPrimitiveSphere"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveSphere, StartRadius) == 0x0000C8, "Member 'UParticleModuleLocationPrimitiveSphere::StartRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAccelerationBase \ +static_assert(alignof(UParticleModuleAccelerationBase) == 0x000008, "Wrong alignment on UParticleModuleAccelerationBase"); \ +static_assert(sizeof(UParticleModuleAccelerationBase) == 0x000038, "Wrong size on UParticleModuleAccelerationBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAcceleration \ +static_assert(alignof(UParticleModuleAcceleration) == 0x000008, "Wrong alignment on UParticleModuleAcceleration"); \ +static_assert(sizeof(UParticleModuleAcceleration) == 0x0000A0, "Wrong size on UParticleModuleAcceleration"); \ +static_assert(offsetof(UParticleModuleAcceleration, Acceleration) == 0x000038, "Member 'UParticleModuleAcceleration::Acceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetAffectGlobalIllumination \ +static_assert(alignof(LightComponentBase_SetAffectGlobalIllumination) == 0x000001, "Wrong alignment on LightComponentBase_SetAffectGlobalIllumination"); \ +static_assert(sizeof(LightComponentBase_SetAffectGlobalIllumination) == 0x000001, "Wrong size on LightComponentBase_SetAffectGlobalIllumination"); \ +static_assert(offsetof(LightComponentBase_SetAffectGlobalIllumination, bNewValue) == 0x000000, "Member 'LightComponentBase_SetAffectGlobalIllumination::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetAffectReflection \ +static_assert(alignof(LightComponentBase_SetAffectReflection) == 0x000001, "Wrong alignment on LightComponentBase_SetAffectReflection"); \ +static_assert(sizeof(LightComponentBase_SetAffectReflection) == 0x000001, "Wrong size on LightComponentBase_SetAffectReflection"); \ +static_assert(offsetof(LightComponentBase_SetAffectReflection, bNewValue) == 0x000000, "Member 'LightComponentBase_SetAffectReflection::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetCastDeepShadow \ +static_assert(alignof(LightComponentBase_SetCastDeepShadow) == 0x000001, "Wrong alignment on LightComponentBase_SetCastDeepShadow"); \ +static_assert(sizeof(LightComponentBase_SetCastDeepShadow) == 0x000001, "Wrong size on LightComponentBase_SetCastDeepShadow"); \ +static_assert(offsetof(LightComponentBase_SetCastDeepShadow, bNewValue) == 0x000000, "Member 'LightComponentBase_SetCastDeepShadow::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetCastRaytracedShadow \ +static_assert(alignof(LightComponentBase_SetCastRaytracedShadow) == 0x000001, "Wrong alignment on LightComponentBase_SetCastRaytracedShadow"); \ +static_assert(sizeof(LightComponentBase_SetCastRaytracedShadow) == 0x000001, "Wrong size on LightComponentBase_SetCastRaytracedShadow"); \ +static_assert(offsetof(LightComponentBase_SetCastRaytracedShadow, bNewValue) == 0x000000, "Member 'LightComponentBase_SetCastRaytracedShadow::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetCastRaytracedShadows \ +static_assert(alignof(LightComponentBase_SetCastRaytracedShadows) == 0x000001, "Wrong alignment on LightComponentBase_SetCastRaytracedShadows"); \ +static_assert(sizeof(LightComponentBase_SetCastRaytracedShadows) == 0x000001, "Wrong size on LightComponentBase_SetCastRaytracedShadows"); \ +static_assert(offsetof(LightComponentBase_SetCastRaytracedShadows, bNewValue) == 0x000000, "Member 'LightComponentBase_SetCastRaytracedShadows::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetCastShadows \ +static_assert(alignof(LightComponentBase_SetCastShadows) == 0x000001, "Wrong alignment on LightComponentBase_SetCastShadows"); \ +static_assert(sizeof(LightComponentBase_SetCastShadows) == 0x000001, "Wrong size on LightComponentBase_SetCastShadows"); \ +static_assert(offsetof(LightComponentBase_SetCastShadows, bNewValue) == 0x000000, "Member 'LightComponentBase_SetCastShadows::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetCastVolumetricShadow \ +static_assert(alignof(LightComponentBase_SetCastVolumetricShadow) == 0x000001, "Wrong alignment on LightComponentBase_SetCastVolumetricShadow"); \ +static_assert(sizeof(LightComponentBase_SetCastVolumetricShadow) == 0x000001, "Wrong size on LightComponentBase_SetCastVolumetricShadow"); \ +static_assert(offsetof(LightComponentBase_SetCastVolumetricShadow, bNewValue) == 0x000000, "Member 'LightComponentBase_SetCastVolumetricShadow::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_SetSamplesPerPixel \ +static_assert(alignof(LightComponentBase_SetSamplesPerPixel) == 0x000004, "Wrong alignment on LightComponentBase_SetSamplesPerPixel"); \ +static_assert(sizeof(LightComponentBase_SetSamplesPerPixel) == 0x000004, "Wrong size on LightComponentBase_SetSamplesPerPixel"); \ +static_assert(offsetof(LightComponentBase_SetSamplesPerPixel, NewValue) == 0x000000, "Member 'LightComponentBase_SetSamplesPerPixel::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponentBase_GetLightColor \ +static_assert(alignof(LightComponentBase_GetLightColor) == 0x000004, "Wrong alignment on LightComponentBase_GetLightColor"); \ +static_assert(sizeof(LightComponentBase_GetLightColor) == 0x000010, "Wrong size on LightComponentBase_GetLightColor"); \ +static_assert(offsetof(LightComponentBase_GetLightColor, ReturnValue) == 0x000000, "Member 'LightComponentBase_GetLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightComponentBase \ +static_assert(alignof(ULightComponentBase) == 0x000010, "Wrong alignment on ULightComponentBase"); \ +static_assert(sizeof(ULightComponentBase) == 0x0002E0, "Wrong size on ULightComponentBase"); \ +static_assert(offsetof(ULightComponentBase, LightGuid) == 0x0002A0, "Member 'ULightComponentBase::LightGuid' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, Brightness) == 0x0002B0, "Member 'ULightComponentBase::Brightness' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, Intensity) == 0x0002B4, "Member 'ULightComponentBase::Intensity' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, LightColor) == 0x0002B8, "Member 'ULightComponentBase::LightColor' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, CastRaytracedShadow) == 0x0002C0, "Member 'ULightComponentBase::CastRaytracedShadow' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, DeepShadowLayerDistribution) == 0x0002C8, "Member 'ULightComponentBase::DeepShadowLayerDistribution' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, IndirectLightingIntensity) == 0x0002CC, "Member 'ULightComponentBase::IndirectLightingIntensity' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, VolumetricScatteringIntensity) == 0x0002D0, "Member 'ULightComponentBase::VolumetricScatteringIntensity' has a wrong offset!"); \ +static_assert(offsetof(ULightComponentBase, SamplesPerPixel) == 0x0002D4, "Member 'ULightComponentBase::SamplesPerPixel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetAffectTranslucentLighting \ +static_assert(alignof(LightComponent_SetAffectTranslucentLighting) == 0x000001, "Wrong alignment on LightComponent_SetAffectTranslucentLighting"); \ +static_assert(sizeof(LightComponent_SetAffectTranslucentLighting) == 0x000001, "Wrong size on LightComponent_SetAffectTranslucentLighting"); \ +static_assert(offsetof(LightComponent_SetAffectTranslucentLighting, bNewValue) == 0x000000, "Member 'LightComponent_SetAffectTranslucentLighting::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetBloomMaxBrightness \ +static_assert(alignof(LightComponent_SetBloomMaxBrightness) == 0x000004, "Wrong alignment on LightComponent_SetBloomMaxBrightness"); \ +static_assert(sizeof(LightComponent_SetBloomMaxBrightness) == 0x000004, "Wrong size on LightComponent_SetBloomMaxBrightness"); \ +static_assert(offsetof(LightComponent_SetBloomMaxBrightness, NewValue) == 0x000000, "Member 'LightComponent_SetBloomMaxBrightness::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetBloomScale \ +static_assert(alignof(LightComponent_SetBloomScale) == 0x000004, "Wrong alignment on LightComponent_SetBloomScale"); \ +static_assert(sizeof(LightComponent_SetBloomScale) == 0x000004, "Wrong size on LightComponent_SetBloomScale"); \ +static_assert(offsetof(LightComponent_SetBloomScale, NewValue) == 0x000000, "Member 'LightComponent_SetBloomScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetBloomThreshold \ +static_assert(alignof(LightComponent_SetBloomThreshold) == 0x000004, "Wrong alignment on LightComponent_SetBloomThreshold"); \ +static_assert(sizeof(LightComponent_SetBloomThreshold) == 0x000004, "Wrong size on LightComponent_SetBloomThreshold"); \ +static_assert(offsetof(LightComponent_SetBloomThreshold, NewValue) == 0x000000, "Member 'LightComponent_SetBloomThreshold::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetBloomTint \ +static_assert(alignof(LightComponent_SetBloomTint) == 0x000004, "Wrong alignment on LightComponent_SetBloomTint"); \ +static_assert(sizeof(LightComponent_SetBloomTint) == 0x000004, "Wrong size on LightComponent_SetBloomTint"); \ +static_assert(offsetof(LightComponent_SetBloomTint, NewValue) == 0x000000, "Member 'LightComponent_SetBloomTint::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetEnableLightShaftBloom \ +static_assert(alignof(LightComponent_SetEnableLightShaftBloom) == 0x000001, "Wrong alignment on LightComponent_SetEnableLightShaftBloom"); \ +static_assert(sizeof(LightComponent_SetEnableLightShaftBloom) == 0x000001, "Wrong size on LightComponent_SetEnableLightShaftBloom"); \ +static_assert(offsetof(LightComponent_SetEnableLightShaftBloom, bNewValue) == 0x000000, "Member 'LightComponent_SetEnableLightShaftBloom::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetForceCachedShadowsForMovablePrimitives \ +static_assert(alignof(LightComponent_SetForceCachedShadowsForMovablePrimitives) == 0x000001, "Wrong alignment on LightComponent_SetForceCachedShadowsForMovablePrimitives"); \ +static_assert(sizeof(LightComponent_SetForceCachedShadowsForMovablePrimitives) == 0x000001, "Wrong size on LightComponent_SetForceCachedShadowsForMovablePrimitives"); \ +static_assert(offsetof(LightComponent_SetForceCachedShadowsForMovablePrimitives, bNewValue) == 0x000000, "Member 'LightComponent_SetForceCachedShadowsForMovablePrimitives::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetIESBrightnessScale \ +static_assert(alignof(LightComponent_SetIESBrightnessScale) == 0x000004, "Wrong alignment on LightComponent_SetIESBrightnessScale"); \ +static_assert(sizeof(LightComponent_SetIESBrightnessScale) == 0x000004, "Wrong size on LightComponent_SetIESBrightnessScale"); \ +static_assert(offsetof(LightComponent_SetIESBrightnessScale, NewValue) == 0x000000, "Member 'LightComponent_SetIESBrightnessScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetIESTexture \ +static_assert(alignof(LightComponent_SetIESTexture) == 0x000008, "Wrong alignment on LightComponent_SetIESTexture"); \ +static_assert(sizeof(LightComponent_SetIESTexture) == 0x000008, "Wrong size on LightComponent_SetIESTexture"); \ +static_assert(offsetof(LightComponent_SetIESTexture, NewValue) == 0x000000, "Member 'LightComponent_SetIESTexture::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetIndirectLightingIntensity \ +static_assert(alignof(LightComponent_SetIndirectLightingIntensity) == 0x000004, "Wrong alignment on LightComponent_SetIndirectLightingIntensity"); \ +static_assert(sizeof(LightComponent_SetIndirectLightingIntensity) == 0x000004, "Wrong size on LightComponent_SetIndirectLightingIntensity"); \ +static_assert(offsetof(LightComponent_SetIndirectLightingIntensity, NewIntensity) == 0x000000, "Member 'LightComponent_SetIndirectLightingIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetIntensity \ +static_assert(alignof(LightComponent_SetIntensity) == 0x000004, "Wrong alignment on LightComponent_SetIntensity"); \ +static_assert(sizeof(LightComponent_SetIntensity) == 0x000004, "Wrong size on LightComponent_SetIntensity"); \ +static_assert(offsetof(LightComponent_SetIntensity, NewIntensity) == 0x000000, "Member 'LightComponent_SetIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightColor \ +static_assert(alignof(LightComponent_SetLightColor) == 0x000004, "Wrong alignment on LightComponent_SetLightColor"); \ +static_assert(sizeof(LightComponent_SetLightColor) == 0x000014, "Wrong size on LightComponent_SetLightColor"); \ +static_assert(offsetof(LightComponent_SetLightColor, NewLightColor) == 0x000000, "Member 'LightComponent_SetLightColor::NewLightColor' has a wrong offset!"); \ +static_assert(offsetof(LightComponent_SetLightColor, bSRGB) == 0x000010, "Member 'LightComponent_SetLightColor::bSRGB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightFColor \ +static_assert(alignof(LightComponent_SetLightFColor) == 0x000004, "Wrong alignment on LightComponent_SetLightFColor"); \ +static_assert(sizeof(LightComponent_SetLightFColor) == 0x000004, "Wrong size on LightComponent_SetLightFColor"); \ +static_assert(offsetof(LightComponent_SetLightFColor, NewLightColor) == 0x000000, "Member 'LightComponent_SetLightFColor::NewLightColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightFunctionDisabledBrightness \ +static_assert(alignof(LightComponent_SetLightFunctionDisabledBrightness) == 0x000004, "Wrong alignment on LightComponent_SetLightFunctionDisabledBrightness"); \ +static_assert(sizeof(LightComponent_SetLightFunctionDisabledBrightness) == 0x000004, "Wrong size on LightComponent_SetLightFunctionDisabledBrightness"); \ +static_assert(offsetof(LightComponent_SetLightFunctionDisabledBrightness, NewValue) == 0x000000, "Member 'LightComponent_SetLightFunctionDisabledBrightness::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightFunctionFadeDistance \ +static_assert(alignof(LightComponent_SetLightFunctionFadeDistance) == 0x000004, "Wrong alignment on LightComponent_SetLightFunctionFadeDistance"); \ +static_assert(sizeof(LightComponent_SetLightFunctionFadeDistance) == 0x000004, "Wrong size on LightComponent_SetLightFunctionFadeDistance"); \ +static_assert(offsetof(LightComponent_SetLightFunctionFadeDistance, NewLightFunctionFadeDistance) == 0x000000, "Member 'LightComponent_SetLightFunctionFadeDistance::NewLightFunctionFadeDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightFunctionMaterial \ +static_assert(alignof(LightComponent_SetLightFunctionMaterial) == 0x000008, "Wrong alignment on LightComponent_SetLightFunctionMaterial"); \ +static_assert(sizeof(LightComponent_SetLightFunctionMaterial) == 0x000008, "Wrong size on LightComponent_SetLightFunctionMaterial"); \ +static_assert(offsetof(LightComponent_SetLightFunctionMaterial, NewLightFunctionMaterial) == 0x000000, "Member 'LightComponent_SetLightFunctionMaterial::NewLightFunctionMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightFunctionScale \ +static_assert(alignof(LightComponent_SetLightFunctionScale) == 0x000008, "Wrong alignment on LightComponent_SetLightFunctionScale"); \ +static_assert(sizeof(LightComponent_SetLightFunctionScale) == 0x000018, "Wrong size on LightComponent_SetLightFunctionScale"); \ +static_assert(offsetof(LightComponent_SetLightFunctionScale, NewLightFunctionScale) == 0x000000, "Member 'LightComponent_SetLightFunctionScale::NewLightFunctionScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetLightingChannels \ +static_assert(alignof(LightComponent_SetLightingChannels) == 0x000001, "Wrong alignment on LightComponent_SetLightingChannels"); \ +static_assert(sizeof(LightComponent_SetLightingChannels) == 0x000003, "Wrong size on LightComponent_SetLightingChannels"); \ +static_assert(offsetof(LightComponent_SetLightingChannels, bChannel0) == 0x000000, "Member 'LightComponent_SetLightingChannels::bChannel0' has a wrong offset!"); \ +static_assert(offsetof(LightComponent_SetLightingChannels, bChannel1) == 0x000001, "Member 'LightComponent_SetLightingChannels::bChannel1' has a wrong offset!"); \ +static_assert(offsetof(LightComponent_SetLightingChannels, bChannel2) == 0x000002, "Member 'LightComponent_SetLightingChannels::bChannel2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetShadowBias \ +static_assert(alignof(LightComponent_SetShadowBias) == 0x000004, "Wrong alignment on LightComponent_SetShadowBias"); \ +static_assert(sizeof(LightComponent_SetShadowBias) == 0x000004, "Wrong size on LightComponent_SetShadowBias"); \ +static_assert(offsetof(LightComponent_SetShadowBias, NewValue) == 0x000000, "Member 'LightComponent_SetShadowBias::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetShadowSlopeBias \ +static_assert(alignof(LightComponent_SetShadowSlopeBias) == 0x000004, "Wrong alignment on LightComponent_SetShadowSlopeBias"); \ +static_assert(sizeof(LightComponent_SetShadowSlopeBias) == 0x000004, "Wrong size on LightComponent_SetShadowSlopeBias"); \ +static_assert(offsetof(LightComponent_SetShadowSlopeBias, NewValue) == 0x000000, "Member 'LightComponent_SetShadowSlopeBias::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetSpecularScale \ +static_assert(alignof(LightComponent_SetSpecularScale) == 0x000004, "Wrong alignment on LightComponent_SetSpecularScale"); \ +static_assert(sizeof(LightComponent_SetSpecularScale) == 0x000004, "Wrong size on LightComponent_SetSpecularScale"); \ +static_assert(offsetof(LightComponent_SetSpecularScale, NewValue) == 0x000000, "Member 'LightComponent_SetSpecularScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetTemperature \ +static_assert(alignof(LightComponent_SetTemperature) == 0x000004, "Wrong alignment on LightComponent_SetTemperature"); \ +static_assert(sizeof(LightComponent_SetTemperature) == 0x000004, "Wrong size on LightComponent_SetTemperature"); \ +static_assert(offsetof(LightComponent_SetTemperature, NewTemperature) == 0x000000, "Member 'LightComponent_SetTemperature::NewTemperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetTransmission \ +static_assert(alignof(LightComponent_SetTransmission) == 0x000001, "Wrong alignment on LightComponent_SetTransmission"); \ +static_assert(sizeof(LightComponent_SetTransmission) == 0x000001, "Wrong size on LightComponent_SetTransmission"); \ +static_assert(offsetof(LightComponent_SetTransmission, bNewValue) == 0x000000, "Member 'LightComponent_SetTransmission::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetUseIESBrightness \ +static_assert(alignof(LightComponent_SetUseIESBrightness) == 0x000001, "Wrong alignment on LightComponent_SetUseIESBrightness"); \ +static_assert(sizeof(LightComponent_SetUseIESBrightness) == 0x000001, "Wrong size on LightComponent_SetUseIESBrightness"); \ +static_assert(offsetof(LightComponent_SetUseIESBrightness, bNewValue) == 0x000000, "Member 'LightComponent_SetUseIESBrightness::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetUseTemperature \ +static_assert(alignof(LightComponent_SetUseTemperature) == 0x000001, "Wrong alignment on LightComponent_SetUseTemperature"); \ +static_assert(sizeof(LightComponent_SetUseTemperature) == 0x000001, "Wrong size on LightComponent_SetUseTemperature"); \ +static_assert(offsetof(LightComponent_SetUseTemperature, bNewValue) == 0x000000, "Member 'LightComponent_SetUseTemperature::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightComponent_SetVolumetricScatteringIntensity \ +static_assert(alignof(LightComponent_SetVolumetricScatteringIntensity) == 0x000004, "Wrong alignment on LightComponent_SetVolumetricScatteringIntensity"); \ +static_assert(sizeof(LightComponent_SetVolumetricScatteringIntensity) == 0x000004, "Wrong size on LightComponent_SetVolumetricScatteringIntensity"); \ +static_assert(offsetof(LightComponent_SetVolumetricScatteringIntensity, NewIntensity) == 0x000000, "Member 'LightComponent_SetVolumetricScatteringIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightComponent \ +static_assert(alignof(ULightComponent) == 0x000010, "Wrong alignment on ULightComponent"); \ +static_assert(sizeof(ULightComponent) == 0x0003F0, "Wrong size on ULightComponent"); \ +static_assert(offsetof(ULightComponent, Temperature) == 0x0002D8, "Member 'ULightComponent::Temperature' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, MaxDrawDistance) == 0x0002DC, "Member 'ULightComponent::MaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, MaxDistanceFadeRange) == 0x0002E0, "Member 'ULightComponent::MaxDistanceFadeRange' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ShadowMapChannel) == 0x0002E8, "Member 'ULightComponent::ShadowMapChannel' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, MinRoughness) == 0x0002F0, "Member 'ULightComponent::MinRoughness' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, SpecularScale) == 0x0002F4, "Member 'ULightComponent::SpecularScale' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ShadowResolutionScale) == 0x0002F8, "Member 'ULightComponent::ShadowResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ShadowBias) == 0x0002FC, "Member 'ULightComponent::ShadowBias' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ShadowSlopeBias) == 0x000300, "Member 'ULightComponent::ShadowSlopeBias' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ShadowSharpen) == 0x000304, "Member 'ULightComponent::ShadowSharpen' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ContactShadowLength) == 0x000308, "Member 'ULightComponent::ContactShadowLength' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ContactShadowCastingIntensity) == 0x000310, "Member 'ULightComponent::ContactShadowCastingIntensity' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, ContactShadowNonCastingIntensity) == 0x000314, "Member 'ULightComponent::ContactShadowNonCastingIntensity' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, LightingChannels) == 0x00031C, "Member 'ULightComponent::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, LightFunctionMaterial) == 0x000320, "Member 'ULightComponent::LightFunctionMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, LightFunctionScale) == 0x000328, "Member 'ULightComponent::LightFunctionScale' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, IESTexture) == 0x000340, "Member 'ULightComponent::IESTexture' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, IESBrightnessScale) == 0x00034C, "Member 'ULightComponent::IESBrightnessScale' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, LightFunctionFadeDistance) == 0x000350, "Member 'ULightComponent::LightFunctionFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, DisabledBrightness) == 0x000354, "Member 'ULightComponent::DisabledBrightness' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, BloomScale) == 0x00035C, "Member 'ULightComponent::BloomScale' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, BloomThreshold) == 0x000360, "Member 'ULightComponent::BloomThreshold' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, BloomMaxBrightness) == 0x000364, "Member 'ULightComponent::BloomMaxBrightness' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, BloomTint) == 0x000368, "Member 'ULightComponent::BloomTint' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, bUseRayTracedDistanceFieldShadows) == 0x00036C, "Member 'ULightComponent::bUseRayTracedDistanceFieldShadows' has a wrong offset!"); \ +static_assert(offsetof(ULightComponent, RayStartOffsetDepthScale) == 0x000370, "Member 'ULightComponent::RayStartOffsetDepthScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalLightComponent_GetUnitsConversionFactor \ +static_assert(alignof(LocalLightComponent_GetUnitsConversionFactor) == 0x000004, "Wrong alignment on LocalLightComponent_GetUnitsConversionFactor"); \ +static_assert(sizeof(LocalLightComponent_GetUnitsConversionFactor) == 0x00000C, "Wrong size on LocalLightComponent_GetUnitsConversionFactor"); \ +static_assert(offsetof(LocalLightComponent_GetUnitsConversionFactor, SrcUnits) == 0x000000, "Member 'LocalLightComponent_GetUnitsConversionFactor::SrcUnits' has a wrong offset!"); \ +static_assert(offsetof(LocalLightComponent_GetUnitsConversionFactor, TargetUnits) == 0x000001, "Member 'LocalLightComponent_GetUnitsConversionFactor::TargetUnits' has a wrong offset!"); \ +static_assert(offsetof(LocalLightComponent_GetUnitsConversionFactor, CosHalfConeAngle) == 0x000004, "Member 'LocalLightComponent_GetUnitsConversionFactor::CosHalfConeAngle' has a wrong offset!"); \ +static_assert(offsetof(LocalLightComponent_GetUnitsConversionFactor, ReturnValue) == 0x000008, "Member 'LocalLightComponent_GetUnitsConversionFactor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalLightComponent_SetAttenuationRadius \ +static_assert(alignof(LocalLightComponent_SetAttenuationRadius) == 0x000004, "Wrong alignment on LocalLightComponent_SetAttenuationRadius"); \ +static_assert(sizeof(LocalLightComponent_SetAttenuationRadius) == 0x000004, "Wrong size on LocalLightComponent_SetAttenuationRadius"); \ +static_assert(offsetof(LocalLightComponent_SetAttenuationRadius, NewRadius) == 0x000000, "Member 'LocalLightComponent_SetAttenuationRadius::NewRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalLightComponent_SetIntensityUnits \ +static_assert(alignof(LocalLightComponent_SetIntensityUnits) == 0x000001, "Wrong alignment on LocalLightComponent_SetIntensityUnits"); \ +static_assert(sizeof(LocalLightComponent_SetIntensityUnits) == 0x000001, "Wrong size on LocalLightComponent_SetIntensityUnits"); \ +static_assert(offsetof(LocalLightComponent_SetIntensityUnits, NewIntensityUnits) == 0x000000, "Member 'LocalLightComponent_SetIntensityUnits::NewIntensityUnits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalLightComponent \ +static_assert(alignof(ULocalLightComponent) == 0x000010, "Wrong alignment on ULocalLightComponent"); \ +static_assert(sizeof(ULocalLightComponent) == 0x000410, "Wrong size on ULocalLightComponent"); \ +static_assert(offsetof(ULocalLightComponent, IntensityUnits) == 0x0003E8, "Member 'ULocalLightComponent::IntensityUnits' has a wrong offset!"); \ +static_assert(offsetof(ULocalLightComponent, InverseExposureBlend) == 0x0003EC, "Member 'ULocalLightComponent::InverseExposureBlend' has a wrong offset!"); \ +static_assert(offsetof(ULocalLightComponent, Radius) == 0x0003F0, "Member 'ULocalLightComponent::Radius' has a wrong offset!"); \ +static_assert(offsetof(ULocalLightComponent, AttenuationRadius) == 0x0003F4, "Member 'ULocalLightComponent::AttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(ULocalLightComponent, LightmassSettings) == 0x0003F8, "Member 'ULocalLightComponent::LightmassSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RectLightComponent_SetBarnDoorAngle \ +static_assert(alignof(RectLightComponent_SetBarnDoorAngle) == 0x000004, "Wrong alignment on RectLightComponent_SetBarnDoorAngle"); \ +static_assert(sizeof(RectLightComponent_SetBarnDoorAngle) == 0x000004, "Wrong size on RectLightComponent_SetBarnDoorAngle"); \ +static_assert(offsetof(RectLightComponent_SetBarnDoorAngle, NewValue) == 0x000000, "Member 'RectLightComponent_SetBarnDoorAngle::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RectLightComponent_SetBarnDoorLength \ +static_assert(alignof(RectLightComponent_SetBarnDoorLength) == 0x000004, "Wrong alignment on RectLightComponent_SetBarnDoorLength"); \ +static_assert(sizeof(RectLightComponent_SetBarnDoorLength) == 0x000004, "Wrong size on RectLightComponent_SetBarnDoorLength"); \ +static_assert(offsetof(RectLightComponent_SetBarnDoorLength, NewValue) == 0x000000, "Member 'RectLightComponent_SetBarnDoorLength::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RectLightComponent_SetSourceHeight \ +static_assert(alignof(RectLightComponent_SetSourceHeight) == 0x000004, "Wrong alignment on RectLightComponent_SetSourceHeight"); \ +static_assert(sizeof(RectLightComponent_SetSourceHeight) == 0x000004, "Wrong size on RectLightComponent_SetSourceHeight"); \ +static_assert(offsetof(RectLightComponent_SetSourceHeight, NewValue) == 0x000000, "Member 'RectLightComponent_SetSourceHeight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RectLightComponent_SetSourceTexture \ +static_assert(alignof(RectLightComponent_SetSourceTexture) == 0x000008, "Wrong alignment on RectLightComponent_SetSourceTexture"); \ +static_assert(sizeof(RectLightComponent_SetSourceTexture) == 0x000008, "Wrong size on RectLightComponent_SetSourceTexture"); \ +static_assert(offsetof(RectLightComponent_SetSourceTexture, NewValue) == 0x000000, "Member 'RectLightComponent_SetSourceTexture::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RectLightComponent_SetSourceWidth \ +static_assert(alignof(RectLightComponent_SetSourceWidth) == 0x000004, "Wrong alignment on RectLightComponent_SetSourceWidth"); \ +static_assert(sizeof(RectLightComponent_SetSourceWidth) == 0x000004, "Wrong size on RectLightComponent_SetSourceWidth"); \ +static_assert(offsetof(RectLightComponent_SetSourceWidth, NewValue) == 0x000000, "Member 'RectLightComponent_SetSourceWidth::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URectLightComponent \ +static_assert(alignof(URectLightComponent) == 0x000010, "Wrong alignment on URectLightComponent"); \ +static_assert(sizeof(URectLightComponent) == 0x000430, "Wrong size on URectLightComponent"); \ +static_assert(offsetof(URectLightComponent, SourceWidth) == 0x000408, "Member 'URectLightComponent::SourceWidth' has a wrong offset!"); \ +static_assert(offsetof(URectLightComponent, SourceHeight) == 0x00040C, "Member 'URectLightComponent::SourceHeight' has a wrong offset!"); \ +static_assert(offsetof(URectLightComponent, BarnDoorAngle) == 0x000410, "Member 'URectLightComponent::BarnDoorAngle' has a wrong offset!"); \ +static_assert(offsetof(URectLightComponent, BarnDoorLength) == 0x000414, "Member 'URectLightComponent::BarnDoorLength' has a wrong offset!"); \ +static_assert(offsetof(URectLightComponent, SourceTexture) == 0x000418, "Member 'URectLightComponent::SourceTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APartitionActor \ +static_assert(alignof(APartitionActor) == 0x000008, "Wrong alignment on APartitionActor"); \ +static_assert(sizeof(APartitionActor) == 0x000298, "Wrong size on APartitionActor"); \ + +#define DUMPER7_ASSERTS_AISMPartitionActor \ +static_assert(alignof(AISMPartitionActor) == 0x000008, "Wrong alignment on AISMPartitionActor"); \ +static_assert(sizeof(AISMPartitionActor) == 0x0002A8, "Wrong size on AISMPartitionActor"); \ + +#define DUMPER7_ASSERTS_AnimationAsset_GetPlayLength \ +static_assert(alignof(AnimationAsset_GetPlayLength) == 0x000004, "Wrong alignment on AnimationAsset_GetPlayLength"); \ +static_assert(sizeof(AnimationAsset_GetPlayLength) == 0x000004, "Wrong size on AnimationAsset_GetPlayLength"); \ +static_assert(offsetof(AnimationAsset_GetPlayLength, ReturnValue) == 0x000000, "Member 'AnimationAsset_GetPlayLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationAsset \ +static_assert(alignof(UAnimationAsset) == 0x000008, "Wrong alignment on UAnimationAsset"); \ +static_assert(sizeof(UAnimationAsset) == 0x000080, "Wrong size on UAnimationAsset"); \ +static_assert(offsetof(UAnimationAsset, Skeleton) == 0x000038, "Member 'UAnimationAsset::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(UAnimationAsset, MetaData) == 0x000060, "Member 'UAnimationAsset::MetaData' has a wrong offset!"); \ +static_assert(offsetof(UAnimationAsset, AssetUserData) == 0x000070, "Member 'UAnimationAsset::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSequenceBase \ +static_assert(alignof(UAnimSequenceBase) == 0x000008, "Wrong alignment on UAnimSequenceBase"); \ +static_assert(sizeof(UAnimSequenceBase) == 0x0000B0, "Wrong size on UAnimSequenceBase"); \ +static_assert(offsetof(UAnimSequenceBase, Notifies) == 0x000080, "Member 'UAnimSequenceBase::Notifies' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequenceBase, SequenceLength) == 0x000090, "Member 'UAnimSequenceBase::SequenceLength' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequenceBase, RawCurveData) == 0x000098, "Member 'UAnimSequenceBase::RawCurveData' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequenceBase, RateScale) == 0x0000A8, "Member 'UAnimSequenceBase::RateScale' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequenceBase, bLoop) == 0x0000AC, "Member 'UAnimSequenceBase::bLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataTransmittanceToMFP \ +static_assert(alignof(UMaterialExpressionStrataTransmittanceToMFP) == 0x000008, "Wrong alignment on UMaterialExpressionStrataTransmittanceToMFP"); \ +static_assert(sizeof(UMaterialExpressionStrataTransmittanceToMFP) == 0x000100, "Wrong size on UMaterialExpressionStrataTransmittanceToMFP"); \ +static_assert(offsetof(UMaterialExpressionStrataTransmittanceToMFP, TransmittanceColor) == 0x0000B0, "Member 'UMaterialExpressionStrataTransmittanceToMFP::TransmittanceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataTransmittanceToMFP, Thickness) == 0x0000D8, "Member 'UMaterialExpressionStrataTransmittanceToMFP::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModel \ +static_assert(alignof(UModel) == 0x000008, "Wrong alignment on UModel"); \ +static_assert(sizeof(UModel) == 0x000270, "Wrong size on UModel"); \ + +#define DUMPER7_ASSERTS_HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale \ +static_assert(alignof(HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale) == 0x000004, "Wrong alignment on HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale"); \ +static_assert(sizeof(HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale) == 0x000004, "Wrong size on HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale"); \ +static_assert(offsetof(HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale, InLODDistanceScale) == 0x000000, "Member 'HierarchicalInstancedStaticMeshComponent_SetLODDistanceScale::InLODDistanceScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale \ +static_assert(alignof(HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale) == 0x000004, "Wrong alignment on HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale"); \ +static_assert(sizeof(HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale) == 0x000004, "Wrong size on HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale"); \ +static_assert(offsetof(HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale, ReturnValue) == 0x000000, "Member 'HierarchicalInstancedStaticMeshComponent_GetLODDistanceScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHierarchicalInstancedStaticMeshComponent \ +static_assert(alignof(UHierarchicalInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UHierarchicalInstancedStaticMeshComponent"); \ +static_assert(sizeof(UHierarchicalInstancedStaticMeshComponent) == 0x000900, "Wrong size on UHierarchicalInstancedStaticMeshComponent"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, TranslatedInstanceSpaceOrigin) == 0x000788, "Member 'UHierarchicalInstancedStaticMeshComponent::TranslatedInstanceSpaceOrigin' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, SortedInstances) == 0x0007A0, "Member 'UHierarchicalInstancedStaticMeshComponent::SortedInstances' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, NumBuiltInstances) == 0x0007B0, "Member 'UHierarchicalInstancedStaticMeshComponent::NumBuiltInstances' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, BuiltInstanceBounds) == 0x0007B8, "Member 'UHierarchicalInstancedStaticMeshComponent::BuiltInstanceBounds' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, UnbuiltInstanceBounds) == 0x0007F0, "Member 'UHierarchicalInstancedStaticMeshComponent::UnbuiltInstanceBounds' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, UnbuiltInstanceBoundsList) == 0x000828, "Member 'UHierarchicalInstancedStaticMeshComponent::UnbuiltInstanceBoundsList' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, InstanceLODDistanceScale) == 0x000840, "Member 'UHierarchicalInstancedStaticMeshComponent::InstanceLODDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, OcclusionLayerNumNodes) == 0x000844, "Member 'UHierarchicalInstancedStaticMeshComponent::OcclusionLayerNumNodes' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, CacheMeshExtendedBounds) == 0x000848, "Member 'UHierarchicalInstancedStaticMeshComponent::CacheMeshExtendedBounds' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, bDisableCollision) == 0x000880, "Member 'UHierarchicalInstancedStaticMeshComponent::bDisableCollision' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalInstancedStaticMeshComponent, InstanceCountToRender) == 0x000884, "Member 'UHierarchicalInstancedStaticMeshComponent::InstanceCountToRender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSamplePhysicsIntegerField \ +static_assert(alignof(UMaterialExpressionSamplePhysicsIntegerField) == 0x000008, "Wrong alignment on UMaterialExpressionSamplePhysicsIntegerField"); \ +static_assert(sizeof(UMaterialExpressionSamplePhysicsIntegerField) == 0x0000E0, "Wrong size on UMaterialExpressionSamplePhysicsIntegerField"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsIntegerField, WorldPosition) == 0x0000B0, "Member 'UMaterialExpressionSamplePhysicsIntegerField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsIntegerField, FieldTarget) == 0x0000D8, "Member 'UMaterialExpressionSamplePhysicsIntegerField::FieldTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationDataModelNotifiesExtensions \ +static_assert(alignof(UAnimationDataModelNotifiesExtensions) == 0x000008, "Wrong alignment on UAnimationDataModelNotifiesExtensions"); \ +static_assert(sizeof(UAnimationDataModelNotifiesExtensions) == 0x000028, "Wrong size on UAnimationDataModelNotifiesExtensions"); \ + +#define DUMPER7_ASSERTS_InputDeviceProperty_ApplyDeviceProperty \ +static_assert(alignof(InputDeviceProperty_ApplyDeviceProperty) == 0x000004, "Wrong alignment on InputDeviceProperty_ApplyDeviceProperty"); \ +static_assert(sizeof(InputDeviceProperty_ApplyDeviceProperty) == 0x000008, "Wrong size on InputDeviceProperty_ApplyDeviceProperty"); \ +static_assert(offsetof(InputDeviceProperty_ApplyDeviceProperty, UserId) == 0x000000, "Member 'InputDeviceProperty_ApplyDeviceProperty::UserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_ApplyDeviceProperty, DeviceID) == 0x000004, "Member 'InputDeviceProperty_ApplyDeviceProperty::DeviceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceProperty_EvaluateDeviceProperty \ +static_assert(alignof(InputDeviceProperty_EvaluateDeviceProperty) == 0x000004, "Wrong alignment on InputDeviceProperty_EvaluateDeviceProperty"); \ +static_assert(sizeof(InputDeviceProperty_EvaluateDeviceProperty) == 0x000010, "Wrong size on InputDeviceProperty_EvaluateDeviceProperty"); \ +static_assert(offsetof(InputDeviceProperty_EvaluateDeviceProperty, PlatformUser) == 0x000000, "Member 'InputDeviceProperty_EvaluateDeviceProperty::PlatformUser' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_EvaluateDeviceProperty, DeviceID) == 0x000004, "Member 'InputDeviceProperty_EvaluateDeviceProperty::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_EvaluateDeviceProperty, DeltaTime) == 0x000008, "Member 'InputDeviceProperty_EvaluateDeviceProperty::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_EvaluateDeviceProperty, Duration) == 0x00000C, "Member 'InputDeviceProperty_EvaluateDeviceProperty::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceProperty_ResetDeviceProperty \ +static_assert(alignof(InputDeviceProperty_ResetDeviceProperty) == 0x000004, "Wrong alignment on InputDeviceProperty_ResetDeviceProperty"); \ +static_assert(sizeof(InputDeviceProperty_ResetDeviceProperty) == 0x00000C, "Wrong size on InputDeviceProperty_ResetDeviceProperty"); \ +static_assert(offsetof(InputDeviceProperty_ResetDeviceProperty, PlatformUser) == 0x000000, "Member 'InputDeviceProperty_ResetDeviceProperty::PlatformUser' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_ResetDeviceProperty, DeviceID) == 0x000004, "Member 'InputDeviceProperty_ResetDeviceProperty::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceProperty_ResetDeviceProperty, bForceReset) == 0x000008, "Member 'InputDeviceProperty_ResetDeviceProperty::bForceReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceProperty \ +static_assert(alignof(UInputDeviceProperty) == 0x000008, "Wrong alignment on UInputDeviceProperty"); \ +static_assert(sizeof(UInputDeviceProperty) == 0x000030, "Wrong size on UInputDeviceProperty"); \ +static_assert(offsetof(UInputDeviceProperty, PropertyDuration) == 0x000028, "Member 'UInputDeviceProperty::PropertyDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UColorInputDeviceCurveProperty \ +static_assert(alignof(UColorInputDeviceCurveProperty) == 0x000008, "Wrong alignment on UColorInputDeviceCurveProperty"); \ +static_assert(sizeof(UColorInputDeviceCurveProperty) == 0x0000A0, "Wrong size on UColorInputDeviceCurveProperty"); \ +static_assert(offsetof(UColorInputDeviceCurveProperty, ColorData) == 0x000030, "Member 'UColorInputDeviceCurveProperty::ColorData' has a wrong offset!"); \ +static_assert(offsetof(UColorInputDeviceCurveProperty, DeviceOverrideData) == 0x000040, "Member 'UColorInputDeviceCurveProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleBeamBase \ +static_assert(alignof(UParticleModuleBeamBase) == 0x000008, "Wrong alignment on UParticleModuleBeamBase"); \ +static_assert(sizeof(UParticleModuleBeamBase) == 0x000030, "Wrong size on UParticleModuleBeamBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleBeamSource \ +static_assert(alignof(UParticleModuleBeamSource) == 0x000008, "Wrong alignment on UParticleModuleBeamSource"); \ +static_assert(sizeof(UParticleModuleBeamSource) == 0x000148, "Wrong size on UParticleModuleBeamSource"); \ +static_assert(offsetof(UParticleModuleBeamSource, SourceMethod) == 0x000030, "Member 'UParticleModuleBeamSource::SourceMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamSource, SourceName) == 0x000034, "Member 'UParticleModuleBeamSource::SourceName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamSource, Source) == 0x000040, "Member 'UParticleModuleBeamSource::Source' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamSource, SourceTangentMethod) == 0x0000A4, "Member 'UParticleModuleBeamSource::SourceTangentMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamSource, SourceTangent) == 0x0000A8, "Member 'UParticleModuleBeamSource::SourceTangent' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamSource, SourceStrength) == 0x000110, "Member 'UParticleModuleBeamSource::SourceStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereViewLuminance \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereViewLuminance) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereViewLuminance"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereViewLuminance) == 0x0000B0, "Wrong size on UMaterialExpressionSkyAtmosphereViewLuminance"); \ + +#define DUMPER7_ASSERTS_StaticMeshActor_SetMobility \ +static_assert(alignof(StaticMeshActor_SetMobility) == 0x000001, "Wrong alignment on StaticMeshActor_SetMobility"); \ +static_assert(sizeof(StaticMeshActor_SetMobility) == 0x000001, "Wrong size on StaticMeshActor_SetMobility"); \ +static_assert(offsetof(StaticMeshActor_SetMobility, InMobility) == 0x000000, "Member 'StaticMeshActor_SetMobility::InMobility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AStaticMeshActor \ +static_assert(alignof(AStaticMeshActor) == 0x000008, "Wrong alignment on AStaticMeshActor"); \ +static_assert(sizeof(AStaticMeshActor) == 0x0002A8, "Wrong size on AStaticMeshActor"); \ +static_assert(offsetof(AStaticMeshActor, StaticMeshComponent) == 0x000298, "Member 'AStaticMeshActor::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AStaticMeshActor, bStaticMeshReplicateMovement) == 0x0002A0, "Member 'AStaticMeshActor::bStaticMeshReplicateMovement' has a wrong offset!"); \ +static_assert(offsetof(AStaticMeshActor, StaticMeshPhysicsReplicationMode) == 0x0002A1, "Member 'AStaticMeshActor::StaticMeshPhysicsReplicationMode' has a wrong offset!"); \ +static_assert(offsetof(AStaticMeshActor, NavigationGeometryGatheringMode) == 0x0002A2, "Member 'AStaticMeshActor::NavigationGeometryGatheringMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicSubsystem \ +static_assert(alignof(UDynamicSubsystem) == 0x000008, "Wrong alignment on UDynamicSubsystem"); \ +static_assert(sizeof(UDynamicSubsystem) == 0x000030, "Wrong size on UDynamicSubsystem"); \ + +#define DUMPER7_ASSERTS_UEngineSubsystem \ +static_assert(alignof(UEngineSubsystem) == 0x000008, "Wrong alignment on UEngineSubsystem"); \ +static_assert(sizeof(UEngineSubsystem) == 0x000030, "Wrong size on UEngineSubsystem"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_ActivateDevicePropertyOfClass \ +static_assert(alignof(InputDeviceSubsystem_ActivateDevicePropertyOfClass) == 0x000008, "Wrong alignment on InputDeviceSubsystem_ActivateDevicePropertyOfClass"); \ +static_assert(sizeof(InputDeviceSubsystem_ActivateDevicePropertyOfClass) == 0x000018, "Wrong size on InputDeviceSubsystem_ActivateDevicePropertyOfClass"); \ +static_assert(offsetof(InputDeviceSubsystem_ActivateDevicePropertyOfClass, PropertyClass) == 0x000000, "Member 'InputDeviceSubsystem_ActivateDevicePropertyOfClass::PropertyClass' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_ActivateDevicePropertyOfClass, Params_0) == 0x000008, "Member 'InputDeviceSubsystem_ActivateDevicePropertyOfClass::Params_0' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_ActivateDevicePropertyOfClass, ReturnValue) == 0x000014, "Member 'InputDeviceSubsystem_ActivateDevicePropertyOfClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_RemoveDevicePropertyByHandle \ +static_assert(alignof(InputDeviceSubsystem_RemoveDevicePropertyByHandle) == 0x000004, "Wrong alignment on InputDeviceSubsystem_RemoveDevicePropertyByHandle"); \ +static_assert(sizeof(InputDeviceSubsystem_RemoveDevicePropertyByHandle) == 0x000004, "Wrong size on InputDeviceSubsystem_RemoveDevicePropertyByHandle"); \ +static_assert(offsetof(InputDeviceSubsystem_RemoveDevicePropertyByHandle, HandleToRemove) == 0x000000, "Member 'InputDeviceSubsystem_RemoveDevicePropertyByHandle::HandleToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_RemoveDevicePropertyHandles \ +static_assert(alignof(InputDeviceSubsystem_RemoveDevicePropertyHandles) == 0x000008, "Wrong alignment on InputDeviceSubsystem_RemoveDevicePropertyHandles"); \ +static_assert(sizeof(InputDeviceSubsystem_RemoveDevicePropertyHandles) == 0x000050, "Wrong size on InputDeviceSubsystem_RemoveDevicePropertyHandles"); \ +static_assert(offsetof(InputDeviceSubsystem_RemoveDevicePropertyHandles, HandlesToRemove) == 0x000000, "Member 'InputDeviceSubsystem_RemoveDevicePropertyHandles::HandlesToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_GetActiveDeviceProperty \ +static_assert(alignof(InputDeviceSubsystem_GetActiveDeviceProperty) == 0x000008, "Wrong alignment on InputDeviceSubsystem_GetActiveDeviceProperty"); \ +static_assert(sizeof(InputDeviceSubsystem_GetActiveDeviceProperty) == 0x000010, "Wrong size on InputDeviceSubsystem_GetActiveDeviceProperty"); \ +static_assert(offsetof(InputDeviceSubsystem_GetActiveDeviceProperty, Handle) == 0x000000, "Member 'InputDeviceSubsystem_GetActiveDeviceProperty::Handle' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_GetActiveDeviceProperty, ReturnValue) == 0x000008, "Member 'InputDeviceSubsystem_GetActiveDeviceProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_GetInputDeviceHardwareIdentifier \ +static_assert(alignof(InputDeviceSubsystem_GetInputDeviceHardwareIdentifier) == 0x000004, "Wrong alignment on InputDeviceSubsystem_GetInputDeviceHardwareIdentifier"); \ +static_assert(sizeof(InputDeviceSubsystem_GetInputDeviceHardwareIdentifier) == 0x00001C, "Wrong size on InputDeviceSubsystem_GetInputDeviceHardwareIdentifier"); \ +static_assert(offsetof(InputDeviceSubsystem_GetInputDeviceHardwareIdentifier, InputDevice) == 0x000000, "Member 'InputDeviceSubsystem_GetInputDeviceHardwareIdentifier::InputDevice' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_GetInputDeviceHardwareIdentifier, ReturnValue) == 0x000004, "Member 'InputDeviceSubsystem_GetInputDeviceHardwareIdentifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice \ +static_assert(alignof(InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice) == 0x000004, "Wrong alignment on InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice"); \ +static_assert(sizeof(InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice) == 0x00001C, "Wrong size on InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice"); \ +static_assert(offsetof(InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice, InUserId) == 0x000000, "Member 'InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice::InUserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice, ReturnValue) == 0x000004, "Member 'InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceSubsystem_IsPropertyActive \ +static_assert(alignof(InputDeviceSubsystem_IsPropertyActive) == 0x000004, "Wrong alignment on InputDeviceSubsystem_IsPropertyActive"); \ +static_assert(sizeof(InputDeviceSubsystem_IsPropertyActive) == 0x000008, "Wrong size on InputDeviceSubsystem_IsPropertyActive"); \ +static_assert(offsetof(InputDeviceSubsystem_IsPropertyActive, Handle) == 0x000000, "Member 'InputDeviceSubsystem_IsPropertyActive::Handle' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceSubsystem_IsPropertyActive, ReturnValue) == 0x000004, "Member 'InputDeviceSubsystem_IsPropertyActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceSubsystem \ +static_assert(alignof(UInputDeviceSubsystem) == 0x000008, "Wrong alignment on UInputDeviceSubsystem"); \ +static_assert(sizeof(UInputDeviceSubsystem) == 0x000198, "Wrong size on UInputDeviceSubsystem"); \ +static_assert(offsetof(UInputDeviceSubsystem, OnInputHardwareDeviceChanged) == 0x000038, "Member 'UInputDeviceSubsystem::OnInputHardwareDeviceChanged' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceSubsystem, ActiveProperties) == 0x000048, "Member 'UInputDeviceSubsystem::ActiveProperties' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceSubsystem, PropertiesPendingRemoval) == 0x000098, "Member 'UInputDeviceSubsystem::PropertiesPendingRemoval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_AddOrUpdateBlendable \ +static_assert(alignof(CameraComponent_AddOrUpdateBlendable) == 0x000008, "Wrong alignment on CameraComponent_AddOrUpdateBlendable"); \ +static_assert(sizeof(CameraComponent_AddOrUpdateBlendable) == 0x000018, "Wrong size on CameraComponent_AddOrUpdateBlendable"); \ +static_assert(offsetof(CameraComponent_AddOrUpdateBlendable, InBlendableObject) == 0x000000, "Member 'CameraComponent_AddOrUpdateBlendable::InBlendableObject' has a wrong offset!"); \ +static_assert(offsetof(CameraComponent_AddOrUpdateBlendable, InWeight) == 0x000010, "Member 'CameraComponent_AddOrUpdateBlendable::InWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_GetCameraView \ +static_assert(alignof(CameraComponent_GetCameraView) == 0x000010, "Wrong alignment on CameraComponent_GetCameraView"); \ +static_assert(sizeof(CameraComponent_GetCameraView) == 0x0007E0, "Wrong size on CameraComponent_GetCameraView"); \ +static_assert(offsetof(CameraComponent_GetCameraView, DeltaTime) == 0x000000, "Member 'CameraComponent_GetCameraView::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CameraComponent_GetCameraView, DesiredView) == 0x000010, "Member 'CameraComponent_GetCameraView::DesiredView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_RemoveBlendable \ +static_assert(alignof(CameraComponent_RemoveBlendable) == 0x000008, "Wrong alignment on CameraComponent_RemoveBlendable"); \ +static_assert(sizeof(CameraComponent_RemoveBlendable) == 0x000010, "Wrong size on CameraComponent_RemoveBlendable"); \ +static_assert(offsetof(CameraComponent_RemoveBlendable, InBlendableObject) == 0x000000, "Member 'CameraComponent_RemoveBlendable::InBlendableObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetAspectRatio \ +static_assert(alignof(CameraComponent_SetAspectRatio) == 0x000004, "Wrong alignment on CameraComponent_SetAspectRatio"); \ +static_assert(sizeof(CameraComponent_SetAspectRatio) == 0x000004, "Wrong size on CameraComponent_SetAspectRatio"); \ +static_assert(offsetof(CameraComponent_SetAspectRatio, InAspectRatio) == 0x000000, "Member 'CameraComponent_SetAspectRatio::InAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetAspectRatioAxisConstraint \ +static_assert(alignof(CameraComponent_SetAspectRatioAxisConstraint) == 0x000001, "Wrong alignment on CameraComponent_SetAspectRatioAxisConstraint"); \ +static_assert(sizeof(CameraComponent_SetAspectRatioAxisConstraint) == 0x000001, "Wrong size on CameraComponent_SetAspectRatioAxisConstraint"); \ +static_assert(offsetof(CameraComponent_SetAspectRatioAxisConstraint, InAspectRatioAxisConstraint) == 0x000000, "Member 'CameraComponent_SetAspectRatioAxisConstraint::InAspectRatioAxisConstraint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetConstraintAspectRatio \ +static_assert(alignof(CameraComponent_SetConstraintAspectRatio) == 0x000001, "Wrong alignment on CameraComponent_SetConstraintAspectRatio"); \ +static_assert(sizeof(CameraComponent_SetConstraintAspectRatio) == 0x000001, "Wrong size on CameraComponent_SetConstraintAspectRatio"); \ +static_assert(offsetof(CameraComponent_SetConstraintAspectRatio, bInConstrainAspectRatio) == 0x000000, "Member 'CameraComponent_SetConstraintAspectRatio::bInConstrainAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetFieldOfView \ +static_assert(alignof(CameraComponent_SetFieldOfView) == 0x000004, "Wrong alignment on CameraComponent_SetFieldOfView"); \ +static_assert(sizeof(CameraComponent_SetFieldOfView) == 0x000004, "Wrong size on CameraComponent_SetFieldOfView"); \ +static_assert(offsetof(CameraComponent_SetFieldOfView, InFieldOfView) == 0x000000, "Member 'CameraComponent_SetFieldOfView::InFieldOfView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetOrthoFarClipPlane \ +static_assert(alignof(CameraComponent_SetOrthoFarClipPlane) == 0x000004, "Wrong alignment on CameraComponent_SetOrthoFarClipPlane"); \ +static_assert(sizeof(CameraComponent_SetOrthoFarClipPlane) == 0x000004, "Wrong size on CameraComponent_SetOrthoFarClipPlane"); \ +static_assert(offsetof(CameraComponent_SetOrthoFarClipPlane, InOrthoFarClipPlane) == 0x000000, "Member 'CameraComponent_SetOrthoFarClipPlane::InOrthoFarClipPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetOrthoNearClipPlane \ +static_assert(alignof(CameraComponent_SetOrthoNearClipPlane) == 0x000004, "Wrong alignment on CameraComponent_SetOrthoNearClipPlane"); \ +static_assert(sizeof(CameraComponent_SetOrthoNearClipPlane) == 0x000004, "Wrong size on CameraComponent_SetOrthoNearClipPlane"); \ +static_assert(offsetof(CameraComponent_SetOrthoNearClipPlane, InOrthoNearClipPlane) == 0x000000, "Member 'CameraComponent_SetOrthoNearClipPlane::InOrthoNearClipPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetOrthoWidth \ +static_assert(alignof(CameraComponent_SetOrthoWidth) == 0x000004, "Wrong alignment on CameraComponent_SetOrthoWidth"); \ +static_assert(sizeof(CameraComponent_SetOrthoWidth) == 0x000004, "Wrong size on CameraComponent_SetOrthoWidth"); \ +static_assert(offsetof(CameraComponent_SetOrthoWidth, InOrthoWidth) == 0x000000, "Member 'CameraComponent_SetOrthoWidth::InOrthoWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetPostProcessBlendWeight \ +static_assert(alignof(CameraComponent_SetPostProcessBlendWeight) == 0x000004, "Wrong alignment on CameraComponent_SetPostProcessBlendWeight"); \ +static_assert(sizeof(CameraComponent_SetPostProcessBlendWeight) == 0x000004, "Wrong size on CameraComponent_SetPostProcessBlendWeight"); \ +static_assert(offsetof(CameraComponent_SetPostProcessBlendWeight, InPostProcessBlendWeight) == 0x000000, "Member 'CameraComponent_SetPostProcessBlendWeight::InPostProcessBlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetProjectionMode \ +static_assert(alignof(CameraComponent_SetProjectionMode) == 0x000001, "Wrong alignment on CameraComponent_SetProjectionMode"); \ +static_assert(sizeof(CameraComponent_SetProjectionMode) == 0x000001, "Wrong size on CameraComponent_SetProjectionMode"); \ +static_assert(offsetof(CameraComponent_SetProjectionMode, InProjectionMode) == 0x000000, "Member 'CameraComponent_SetProjectionMode::InProjectionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraComponent_SetUseFieldOfViewForLOD \ +static_assert(alignof(CameraComponent_SetUseFieldOfViewForLOD) == 0x000001, "Wrong alignment on CameraComponent_SetUseFieldOfViewForLOD"); \ +static_assert(sizeof(CameraComponent_SetUseFieldOfViewForLOD) == 0x000001, "Wrong size on CameraComponent_SetUseFieldOfViewForLOD"); \ +static_assert(offsetof(CameraComponent_SetUseFieldOfViewForLOD, bInUseFieldOfViewForLOD) == 0x000000, "Member 'CameraComponent_SetUseFieldOfViewForLOD::bInUseFieldOfViewForLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraComponent \ +static_assert(alignof(UCameraComponent) == 0x000010, "Wrong alignment on UCameraComponent"); \ +static_assert(sizeof(UCameraComponent) == 0x000A40, "Wrong size on UCameraComponent"); \ +static_assert(offsetof(UCameraComponent, FieldOfView) == 0x0002A0, "Member 'UCameraComponent::FieldOfView' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, OrthoWidth) == 0x0002A4, "Member 'UCameraComponent::OrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, OrthoNearClipPlane) == 0x0002A8, "Member 'UCameraComponent::OrthoNearClipPlane' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, OrthoFarClipPlane) == 0x0002AC, "Member 'UCameraComponent::OrthoFarClipPlane' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, AspectRatio) == 0x0002B0, "Member 'UCameraComponent::AspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, AspectRatioAxisConstraint) == 0x0002B4, "Member 'UCameraComponent::AspectRatioAxisConstraint' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, ProjectionMode) == 0x0002B6, "Member 'UCameraComponent::ProjectionMode' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, PostProcessBlendWeight) == 0x000320, "Member 'UCameraComponent::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(UCameraComponent, PostProcessSettings) == 0x000350, "Member 'UCameraComponent::PostProcessSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureProperty \ +static_assert(alignof(UMaterialExpressionTextureProperty) == 0x000008, "Wrong alignment on UMaterialExpressionTextureProperty"); \ +static_assert(sizeof(UMaterialExpressionTextureProperty) == 0x0000E0, "Wrong size on UMaterialExpressionTextureProperty"); \ +static_assert(offsetof(UMaterialExpressionTextureProperty, TextureObject) == 0x0000B0, "Member 'UMaterialExpressionTextureProperty::TextureObject' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureProperty, Property) == 0x0000D8, "Member 'UMaterialExpressionTextureProperty::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundWave_SetSoundAssetCompressionType \ +static_assert(alignof(SoundWave_SetSoundAssetCompressionType) == 0x000001, "Wrong alignment on SoundWave_SetSoundAssetCompressionType"); \ +static_assert(sizeof(SoundWave_SetSoundAssetCompressionType) == 0x000002, "Wrong size on SoundWave_SetSoundAssetCompressionType"); \ +static_assert(offsetof(SoundWave_SetSoundAssetCompressionType, InSoundAssetCompressionType) == 0x000000, "Member 'SoundWave_SetSoundAssetCompressionType::InSoundAssetCompressionType' has a wrong offset!"); \ +static_assert(offsetof(SoundWave_SetSoundAssetCompressionType, bMarkDirty) == 0x000001, "Member 'SoundWave_SetSoundAssetCompressionType::bMarkDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundWave_GetCuePoints \ +static_assert(alignof(SoundWave_GetCuePoints) == 0x000008, "Wrong alignment on SoundWave_GetCuePoints"); \ +static_assert(sizeof(SoundWave_GetCuePoints) == 0x000010, "Wrong size on SoundWave_GetCuePoints"); \ +static_assert(offsetof(SoundWave_GetCuePoints, ReturnValue) == 0x000000, "Member 'SoundWave_GetCuePoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundWave_GetLoopRegions \ +static_assert(alignof(SoundWave_GetLoopRegions) == 0x000008, "Wrong alignment on SoundWave_GetLoopRegions"); \ +static_assert(sizeof(SoundWave_GetLoopRegions) == 0x000010, "Wrong size on SoundWave_GetLoopRegions"); \ +static_assert(offsetof(SoundWave_GetLoopRegions, ReturnValue) == 0x000000, "Member 'SoundWave_GetLoopRegions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundWave_GetSoundAssetCompressionType \ +static_assert(alignof(SoundWave_GetSoundAssetCompressionType) == 0x000001, "Wrong alignment on SoundWave_GetSoundAssetCompressionType"); \ +static_assert(sizeof(SoundWave_GetSoundAssetCompressionType) == 0x000001, "Wrong size on SoundWave_GetSoundAssetCompressionType"); \ +static_assert(offsetof(SoundWave_GetSoundAssetCompressionType, ReturnValue) == 0x000000, "Member 'SoundWave_GetSoundAssetCompressionType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundWave \ +static_assert(alignof(USoundWave) == 0x000008, "Wrong alignment on USoundWave"); \ +static_assert(sizeof(USoundWave) == 0x000430, "Wrong size on USoundWave"); \ +static_assert(offsetof(USoundWave, CompressionQuality) == 0x000178, "Member 'USoundWave::CompressionQuality' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, StreamingPriority) == 0x00017C, "Member 'USoundWave::StreamingPriority' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SampleRateQuality) == 0x000180, "Member 'USoundWave::SampleRateQuality' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SoundGroup) == 0x000182, "Member 'USoundWave::SoundGroup' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SoundAssetCompressionType) == 0x000184, "Member 'USoundWave::SoundAssetCompressionType' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, ModulationSettings) == 0x0001A0, "Member 'USoundWave::ModulationSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, FrequenciesToAnalyze) == 0x000308, "Member 'USoundWave::FrequenciesToAnalyze' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, CookedSpectralTimeData) == 0x000318, "Member 'USoundWave::CookedSpectralTimeData' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, CookedEnvelopeTimeData) == 0x000328, "Member 'USoundWave::CookedEnvelopeTimeData' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, InitialChunkSize) == 0x000338, "Member 'USoundWave::InitialChunkSize' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, LoadingBehavior) == 0x00037E, "Member 'USoundWave::LoadingBehavior' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SpokenText) == 0x000380, "Member 'USoundWave::SpokenText' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SubtitlePriority) == 0x000390, "Member 'USoundWave::SubtitlePriority' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, Volume) == 0x000394, "Member 'USoundWave::Volume' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, Pitch) == 0x000398, "Member 'USoundWave::Pitch' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, NumChannels) == 0x00039C, "Member 'USoundWave::NumChannels' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, CuePoints) == 0x0003A0, "Member 'USoundWave::CuePoints' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, SampleRate) == 0x0003B0, "Member 'USoundWave::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, Subtitles) == 0x0003C0, "Member 'USoundWave::Subtitles' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, Curves) == 0x0003D0, "Member 'USoundWave::Curves' has a wrong offset!"); \ +static_assert(offsetof(USoundWave, InternalCurves) == 0x0003D8, "Member 'USoundWave::InternalCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundWaveProcedural \ +static_assert(alignof(USoundWaveProcedural) == 0x000008, "Wrong alignment on USoundWaveProcedural"); \ +static_assert(sizeof(USoundWaveProcedural) == 0x000480, "Wrong size on USoundWaveProcedural"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_ClearSkinWeightOverride \ +static_assert(alignof(SkinnedMeshComponent_ClearSkinWeightOverride) == 0x000004, "Wrong alignment on SkinnedMeshComponent_ClearSkinWeightOverride"); \ +static_assert(sizeof(SkinnedMeshComponent_ClearSkinWeightOverride) == 0x000004, "Wrong size on SkinnedMeshComponent_ClearSkinWeightOverride"); \ +static_assert(offsetof(SkinnedMeshComponent_ClearSkinWeightOverride, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_ClearSkinWeightOverride::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_ClearVertexColorOverride \ +static_assert(alignof(SkinnedMeshComponent_ClearVertexColorOverride) == 0x000004, "Wrong alignment on SkinnedMeshComponent_ClearVertexColorOverride"); \ +static_assert(sizeof(SkinnedMeshComponent_ClearVertexColorOverride) == 0x000004, "Wrong size on SkinnedMeshComponent_ClearVertexColorOverride"); \ +static_assert(offsetof(SkinnedMeshComponent_ClearVertexColorOverride, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_ClearVertexColorOverride::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_HideBoneByName \ +static_assert(alignof(SkinnedMeshComponent_HideBoneByName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_HideBoneByName"); \ +static_assert(sizeof(SkinnedMeshComponent_HideBoneByName) == 0x00000C, "Wrong size on SkinnedMeshComponent_HideBoneByName"); \ +static_assert(offsetof(SkinnedMeshComponent_HideBoneByName, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_HideBoneByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_HideBoneByName, PhysBodyOption) == 0x000008, "Member 'SkinnedMeshComponent_HideBoneByName::PhysBodyOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_IsBoneHiddenByName \ +static_assert(alignof(SkinnedMeshComponent_IsBoneHiddenByName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_IsBoneHiddenByName"); \ +static_assert(sizeof(SkinnedMeshComponent_IsBoneHiddenByName) == 0x00000C, "Wrong size on SkinnedMeshComponent_IsBoneHiddenByName"); \ +static_assert(offsetof(SkinnedMeshComponent_IsBoneHiddenByName, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_IsBoneHiddenByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_IsBoneHiddenByName, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_IsBoneHiddenByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_IsMaterialSectionShown \ +static_assert(alignof(SkinnedMeshComponent_IsMaterialSectionShown) == 0x000004, "Wrong alignment on SkinnedMeshComponent_IsMaterialSectionShown"); \ +static_assert(sizeof(SkinnedMeshComponent_IsMaterialSectionShown) == 0x00000C, "Wrong size on SkinnedMeshComponent_IsMaterialSectionShown"); \ +static_assert(offsetof(SkinnedMeshComponent_IsMaterialSectionShown, MaterialID) == 0x000000, "Member 'SkinnedMeshComponent_IsMaterialSectionShown::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_IsMaterialSectionShown, LODIndex) == 0x000004, "Member 'SkinnedMeshComponent_IsMaterialSectionShown::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_IsMaterialSectionShown, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_IsMaterialSectionShown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility \ +static_assert(alignof(SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility) == 0x000004, "Wrong alignment on SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility"); \ +static_assert(sizeof(SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility) == 0x000004, "Wrong size on SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility"); \ +static_assert(offsetof(SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility, NewValue) == 0x000000, "Member 'SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetCastCapsuleDirectShadow \ +static_assert(alignof(SkinnedMeshComponent_SetCastCapsuleDirectShadow) == 0x000001, "Wrong alignment on SkinnedMeshComponent_SetCastCapsuleDirectShadow"); \ +static_assert(sizeof(SkinnedMeshComponent_SetCastCapsuleDirectShadow) == 0x000001, "Wrong size on SkinnedMeshComponent_SetCastCapsuleDirectShadow"); \ +static_assert(offsetof(SkinnedMeshComponent_SetCastCapsuleDirectShadow, bNewValue) == 0x000000, "Member 'SkinnedMeshComponent_SetCastCapsuleDirectShadow::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetCastCapsuleIndirectShadow \ +static_assert(alignof(SkinnedMeshComponent_SetCastCapsuleIndirectShadow) == 0x000001, "Wrong alignment on SkinnedMeshComponent_SetCastCapsuleIndirectShadow"); \ +static_assert(sizeof(SkinnedMeshComponent_SetCastCapsuleIndirectShadow) == 0x000001, "Wrong size on SkinnedMeshComponent_SetCastCapsuleIndirectShadow"); \ +static_assert(offsetof(SkinnedMeshComponent_SetCastCapsuleIndirectShadow, bNewValue) == 0x000000, "Member 'SkinnedMeshComponent_SetCastCapsuleIndirectShadow::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetForcedLOD \ +static_assert(alignof(SkinnedMeshComponent_SetForcedLOD) == 0x000004, "Wrong alignment on SkinnedMeshComponent_SetForcedLOD"); \ +static_assert(sizeof(SkinnedMeshComponent_SetForcedLOD) == 0x000004, "Wrong size on SkinnedMeshComponent_SetForcedLOD"); \ +static_assert(offsetof(SkinnedMeshComponent_SetForcedLOD, InNewForcedLOD) == 0x000000, "Member 'SkinnedMeshComponent_SetForcedLOD::InNewForcedLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetLeaderPoseComponent \ +static_assert(alignof(SkinnedMeshComponent_SetLeaderPoseComponent) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetLeaderPoseComponent"); \ +static_assert(sizeof(SkinnedMeshComponent_SetLeaderPoseComponent) == 0x000010, "Wrong size on SkinnedMeshComponent_SetLeaderPoseComponent"); \ +static_assert(offsetof(SkinnedMeshComponent_SetLeaderPoseComponent, NewLeaderBoneComponent) == 0x000000, "Member 'SkinnedMeshComponent_SetLeaderPoseComponent::NewLeaderBoneComponent' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetLeaderPoseComponent, bForceUpdate) == 0x000008, "Member 'SkinnedMeshComponent_SetLeaderPoseComponent::bForceUpdate' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetLeaderPoseComponent, bInFollowerShouldTickPose) == 0x000009, "Member 'SkinnedMeshComponent_SetLeaderPoseComponent::bInFollowerShouldTickPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetMeshDeformer \ +static_assert(alignof(SkinnedMeshComponent_SetMeshDeformer) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetMeshDeformer"); \ +static_assert(sizeof(SkinnedMeshComponent_SetMeshDeformer) == 0x000008, "Wrong size on SkinnedMeshComponent_SetMeshDeformer"); \ +static_assert(offsetof(SkinnedMeshComponent_SetMeshDeformer, InMeshDeformer) == 0x000000, "Member 'SkinnedMeshComponent_SetMeshDeformer::InMeshDeformer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetMinLOD \ +static_assert(alignof(SkinnedMeshComponent_SetMinLOD) == 0x000004, "Wrong alignment on SkinnedMeshComponent_SetMinLOD"); \ +static_assert(sizeof(SkinnedMeshComponent_SetMinLOD) == 0x000004, "Wrong size on SkinnedMeshComponent_SetMinLOD"); \ +static_assert(offsetof(SkinnedMeshComponent_SetMinLOD, InNewMinLOD) == 0x000000, "Member 'SkinnedMeshComponent_SetMinLOD::InNewMinLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetPhysicsAsset \ +static_assert(alignof(SkinnedMeshComponent_SetPhysicsAsset) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetPhysicsAsset"); \ +static_assert(sizeof(SkinnedMeshComponent_SetPhysicsAsset) == 0x000010, "Wrong size on SkinnedMeshComponent_SetPhysicsAsset"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPhysicsAsset, NewPhysicsAsset) == 0x000000, "Member 'SkinnedMeshComponent_SetPhysicsAsset::NewPhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPhysicsAsset, bForceReInit) == 0x000008, "Member 'SkinnedMeshComponent_SetPhysicsAsset::bForceReInit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetPostSkinningOffsets \ +static_assert(alignof(SkinnedMeshComponent_SetPostSkinningOffsets) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetPostSkinningOffsets"); \ +static_assert(sizeof(SkinnedMeshComponent_SetPostSkinningOffsets) == 0x000018, "Wrong size on SkinnedMeshComponent_SetPostSkinningOffsets"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPostSkinningOffsets, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_SetPostSkinningOffsets::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPostSkinningOffsets, Offsets) == 0x000008, "Member 'SkinnedMeshComponent_SetPostSkinningOffsets::Offsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetPreSkinningOffsets \ +static_assert(alignof(SkinnedMeshComponent_SetPreSkinningOffsets) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetPreSkinningOffsets"); \ +static_assert(sizeof(SkinnedMeshComponent_SetPreSkinningOffsets) == 0x000018, "Wrong size on SkinnedMeshComponent_SetPreSkinningOffsets"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPreSkinningOffsets, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_SetPreSkinningOffsets::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetPreSkinningOffsets, Offsets) == 0x000008, "Member 'SkinnedMeshComponent_SetPreSkinningOffsets::Offsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetRenderStatic \ +static_assert(alignof(SkinnedMeshComponent_SetRenderStatic) == 0x000001, "Wrong alignment on SkinnedMeshComponent_SetRenderStatic"); \ +static_assert(sizeof(SkinnedMeshComponent_SetRenderStatic) == 0x000001, "Wrong size on SkinnedMeshComponent_SetRenderStatic"); \ +static_assert(offsetof(SkinnedMeshComponent_SetRenderStatic, bNewValue) == 0x000000, "Member 'SkinnedMeshComponent_SetRenderStatic::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetSkinnedAssetAndUpdate \ +static_assert(alignof(SkinnedMeshComponent_SetSkinnedAssetAndUpdate) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetSkinnedAssetAndUpdate"); \ +static_assert(sizeof(SkinnedMeshComponent_SetSkinnedAssetAndUpdate) == 0x000010, "Wrong size on SkinnedMeshComponent_SetSkinnedAssetAndUpdate"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinnedAssetAndUpdate, NewMesh) == 0x000000, "Member 'SkinnedMeshComponent_SetSkinnedAssetAndUpdate::NewMesh' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinnedAssetAndUpdate, bReinitPose) == 0x000008, "Member 'SkinnedMeshComponent_SetSkinnedAssetAndUpdate::bReinitPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetSkinWeightOverride \ +static_assert(alignof(SkinnedMeshComponent_SetSkinWeightOverride) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetSkinWeightOverride"); \ +static_assert(sizeof(SkinnedMeshComponent_SetSkinWeightOverride) == 0x000018, "Wrong size on SkinnedMeshComponent_SetSkinWeightOverride"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinWeightOverride, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_SetSkinWeightOverride::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinWeightOverride, SkinWeights) == 0x000008, "Member 'SkinnedMeshComponent_SetSkinWeightOverride::SkinWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetSkinWeightProfile \ +static_assert(alignof(SkinnedMeshComponent_SetSkinWeightProfile) == 0x000004, "Wrong alignment on SkinnedMeshComponent_SetSkinWeightProfile"); \ +static_assert(sizeof(SkinnedMeshComponent_SetSkinWeightProfile) == 0x00000C, "Wrong size on SkinnedMeshComponent_SetSkinWeightProfile"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinWeightProfile, InProfileName) == 0x000000, "Member 'SkinnedMeshComponent_SetSkinWeightProfile::InProfileName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetSkinWeightProfile, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_SetSkinWeightProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetVertexColorOverride_LinearColor \ +static_assert(alignof(SkinnedMeshComponent_SetVertexColorOverride_LinearColor) == 0x000008, "Wrong alignment on SkinnedMeshComponent_SetVertexColorOverride_LinearColor"); \ +static_assert(sizeof(SkinnedMeshComponent_SetVertexColorOverride_LinearColor) == 0x000018, "Wrong size on SkinnedMeshComponent_SetVertexColorOverride_LinearColor"); \ +static_assert(offsetof(SkinnedMeshComponent_SetVertexColorOverride_LinearColor, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_SetVertexColorOverride_LinearColor::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetVertexColorOverride_LinearColor, VertexColors) == 0x000008, "Member 'SkinnedMeshComponent_SetVertexColorOverride_LinearColor::VertexColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_SetVertexOffsetUsage \ +static_assert(alignof(SkinnedMeshComponent_SetVertexOffsetUsage) == 0x000004, "Wrong alignment on SkinnedMeshComponent_SetVertexOffsetUsage"); \ +static_assert(sizeof(SkinnedMeshComponent_SetVertexOffsetUsage) == 0x000008, "Wrong size on SkinnedMeshComponent_SetVertexOffsetUsage"); \ +static_assert(offsetof(SkinnedMeshComponent_SetVertexOffsetUsage, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_SetVertexOffsetUsage::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_SetVertexOffsetUsage, Usage) == 0x000004, "Member 'SkinnedMeshComponent_SetVertexOffsetUsage::Usage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_ShowAllMaterialSections \ +static_assert(alignof(SkinnedMeshComponent_ShowAllMaterialSections) == 0x000004, "Wrong alignment on SkinnedMeshComponent_ShowAllMaterialSections"); \ +static_assert(sizeof(SkinnedMeshComponent_ShowAllMaterialSections) == 0x000004, "Wrong size on SkinnedMeshComponent_ShowAllMaterialSections"); \ +static_assert(offsetof(SkinnedMeshComponent_ShowAllMaterialSections, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_ShowAllMaterialSections::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_ShowMaterialSection \ +static_assert(alignof(SkinnedMeshComponent_ShowMaterialSection) == 0x000004, "Wrong alignment on SkinnedMeshComponent_ShowMaterialSection"); \ +static_assert(sizeof(SkinnedMeshComponent_ShowMaterialSection) == 0x000010, "Wrong size on SkinnedMeshComponent_ShowMaterialSection"); \ +static_assert(offsetof(SkinnedMeshComponent_ShowMaterialSection, MaterialID) == 0x000000, "Member 'SkinnedMeshComponent_ShowMaterialSection::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_ShowMaterialSection, SectionIndex) == 0x000004, "Member 'SkinnedMeshComponent_ShowMaterialSection::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_ShowMaterialSection, bShow) == 0x000008, "Member 'SkinnedMeshComponent_ShowMaterialSection::bShow' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_ShowMaterialSection, LODIndex) == 0x00000C, "Member 'SkinnedMeshComponent_ShowMaterialSection::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_TransformFromBoneSpace \ +static_assert(alignof(SkinnedMeshComponent_TransformFromBoneSpace) == 0x000008, "Wrong alignment on SkinnedMeshComponent_TransformFromBoneSpace"); \ +static_assert(sizeof(SkinnedMeshComponent_TransformFromBoneSpace) == 0x000068, "Wrong size on SkinnedMeshComponent_TransformFromBoneSpace"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformFromBoneSpace, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_TransformFromBoneSpace::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformFromBoneSpace, InPosition) == 0x000008, "Member 'SkinnedMeshComponent_TransformFromBoneSpace::InPosition' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformFromBoneSpace, InRotation) == 0x000020, "Member 'SkinnedMeshComponent_TransformFromBoneSpace::InRotation' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformFromBoneSpace, OutPosition) == 0x000038, "Member 'SkinnedMeshComponent_TransformFromBoneSpace::OutPosition' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformFromBoneSpace, OutRotation) == 0x000050, "Member 'SkinnedMeshComponent_TransformFromBoneSpace::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_UnHideBoneByName \ +static_assert(alignof(SkinnedMeshComponent_UnHideBoneByName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_UnHideBoneByName"); \ +static_assert(sizeof(SkinnedMeshComponent_UnHideBoneByName) == 0x000008, "Wrong size on SkinnedMeshComponent_UnHideBoneByName"); \ +static_assert(offsetof(SkinnedMeshComponent_UnHideBoneByName, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_UnHideBoneByName::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_UnloadSkinWeightProfile \ +static_assert(alignof(SkinnedMeshComponent_UnloadSkinWeightProfile) == 0x000004, "Wrong alignment on SkinnedMeshComponent_UnloadSkinWeightProfile"); \ +static_assert(sizeof(SkinnedMeshComponent_UnloadSkinWeightProfile) == 0x000008, "Wrong size on SkinnedMeshComponent_UnloadSkinWeightProfile"); \ +static_assert(offsetof(SkinnedMeshComponent_UnloadSkinWeightProfile, InProfileName) == 0x000000, "Member 'SkinnedMeshComponent_UnloadSkinWeightProfile::InProfileName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_BoneIsChildOf \ +static_assert(alignof(SkinnedMeshComponent_BoneIsChildOf) == 0x000004, "Wrong alignment on SkinnedMeshComponent_BoneIsChildOf"); \ +static_assert(sizeof(SkinnedMeshComponent_BoneIsChildOf) == 0x000014, "Wrong size on SkinnedMeshComponent_BoneIsChildOf"); \ +static_assert(offsetof(SkinnedMeshComponent_BoneIsChildOf, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_BoneIsChildOf::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_BoneIsChildOf, ParentBoneName) == 0x000008, "Member 'SkinnedMeshComponent_BoneIsChildOf::ParentBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_BoneIsChildOf, ReturnValue) == 0x000010, "Member 'SkinnedMeshComponent_BoneIsChildOf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_FindClosestBone_K2 \ +static_assert(alignof(SkinnedMeshComponent_FindClosestBone_K2) == 0x000008, "Wrong alignment on SkinnedMeshComponent_FindClosestBone_K2"); \ +static_assert(sizeof(SkinnedMeshComponent_FindClosestBone_K2) == 0x000040, "Wrong size on SkinnedMeshComponent_FindClosestBone_K2"); \ +static_assert(offsetof(SkinnedMeshComponent_FindClosestBone_K2, TestLocation) == 0x000000, "Member 'SkinnedMeshComponent_FindClosestBone_K2::TestLocation' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_FindClosestBone_K2, BoneLocation) == 0x000018, "Member 'SkinnedMeshComponent_FindClosestBone_K2::BoneLocation' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_FindClosestBone_K2, IgnoreScale) == 0x000030, "Member 'SkinnedMeshComponent_FindClosestBone_K2::IgnoreScale' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_FindClosestBone_K2, bRequirePhysicsAsset) == 0x000034, "Member 'SkinnedMeshComponent_FindClosestBone_K2::bRequirePhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_FindClosestBone_K2, ReturnValue) == 0x000038, "Member 'SkinnedMeshComponent_FindClosestBone_K2::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetBoneIndex \ +static_assert(alignof(SkinnedMeshComponent_GetBoneIndex) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetBoneIndex"); \ +static_assert(sizeof(SkinnedMeshComponent_GetBoneIndex) == 0x00000C, "Wrong size on SkinnedMeshComponent_GetBoneIndex"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneIndex, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_GetBoneIndex::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneIndex, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_GetBoneIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetBoneName \ +static_assert(alignof(SkinnedMeshComponent_GetBoneName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetBoneName"); \ +static_assert(sizeof(SkinnedMeshComponent_GetBoneName) == 0x00000C, "Wrong size on SkinnedMeshComponent_GetBoneName"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneName, BoneIndex) == 0x000000, "Member 'SkinnedMeshComponent_GetBoneName::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneName, ReturnValue) == 0x000004, "Member 'SkinnedMeshComponent_GetBoneName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetBoneTransform \ +static_assert(alignof(SkinnedMeshComponent_GetBoneTransform) == 0x000010, "Wrong alignment on SkinnedMeshComponent_GetBoneTransform"); \ +static_assert(sizeof(SkinnedMeshComponent_GetBoneTransform) == 0x000070, "Wrong size on SkinnedMeshComponent_GetBoneTransform"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneTransform, InBoneName) == 0x000000, "Member 'SkinnedMeshComponent_GetBoneTransform::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneTransform, TransformSpace) == 0x000008, "Member 'SkinnedMeshComponent_GetBoneTransform::TransformSpace' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetBoneTransform, ReturnValue) == 0x000010, "Member 'SkinnedMeshComponent_GetBoneTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetCurrentSkinWeightProfileName \ +static_assert(alignof(SkinnedMeshComponent_GetCurrentSkinWeightProfileName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetCurrentSkinWeightProfileName"); \ +static_assert(sizeof(SkinnedMeshComponent_GetCurrentSkinWeightProfileName) == 0x000008, "Wrong size on SkinnedMeshComponent_GetCurrentSkinWeightProfileName"); \ +static_assert(offsetof(SkinnedMeshComponent_GetCurrentSkinWeightProfileName, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetCurrentSkinWeightProfileName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetDeltaTransformFromRefPose \ +static_assert(alignof(SkinnedMeshComponent_GetDeltaTransformFromRefPose) == 0x000010, "Wrong alignment on SkinnedMeshComponent_GetDeltaTransformFromRefPose"); \ +static_assert(sizeof(SkinnedMeshComponent_GetDeltaTransformFromRefPose) == 0x000070, "Wrong size on SkinnedMeshComponent_GetDeltaTransformFromRefPose"); \ +static_assert(offsetof(SkinnedMeshComponent_GetDeltaTransformFromRefPose, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_GetDeltaTransformFromRefPose::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetDeltaTransformFromRefPose, BaseName) == 0x000008, "Member 'SkinnedMeshComponent_GetDeltaTransformFromRefPose::BaseName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetDeltaTransformFromRefPose, ReturnValue) == 0x000010, "Member 'SkinnedMeshComponent_GetDeltaTransformFromRefPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetForcedLOD \ +static_assert(alignof(SkinnedMeshComponent_GetForcedLOD) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetForcedLOD"); \ +static_assert(sizeof(SkinnedMeshComponent_GetForcedLOD) == 0x000004, "Wrong size on SkinnedMeshComponent_GetForcedLOD"); \ +static_assert(offsetof(SkinnedMeshComponent_GetForcedLOD, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetForcedLOD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetMeshDeformerInstance \ +static_assert(alignof(SkinnedMeshComponent_GetMeshDeformerInstance) == 0x000008, "Wrong alignment on SkinnedMeshComponent_GetMeshDeformerInstance"); \ +static_assert(sizeof(SkinnedMeshComponent_GetMeshDeformerInstance) == 0x000008, "Wrong size on SkinnedMeshComponent_GetMeshDeformerInstance"); \ +static_assert(offsetof(SkinnedMeshComponent_GetMeshDeformerInstance, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetMeshDeformerInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetNumBones \ +static_assert(alignof(SkinnedMeshComponent_GetNumBones) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetNumBones"); \ +static_assert(sizeof(SkinnedMeshComponent_GetNumBones) == 0x000004, "Wrong size on SkinnedMeshComponent_GetNumBones"); \ +static_assert(offsetof(SkinnedMeshComponent_GetNumBones, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetNumBones::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetNumLODs \ +static_assert(alignof(SkinnedMeshComponent_GetNumLODs) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetNumLODs"); \ +static_assert(sizeof(SkinnedMeshComponent_GetNumLODs) == 0x000004, "Wrong size on SkinnedMeshComponent_GetNumLODs"); \ +static_assert(offsetof(SkinnedMeshComponent_GetNumLODs, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetNumLODs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetParentBone \ +static_assert(alignof(SkinnedMeshComponent_GetParentBone) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetParentBone"); \ +static_assert(sizeof(SkinnedMeshComponent_GetParentBone) == 0x000010, "Wrong size on SkinnedMeshComponent_GetParentBone"); \ +static_assert(offsetof(SkinnedMeshComponent_GetParentBone, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_GetParentBone::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetParentBone, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_GetParentBone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetPredictedLODLevel \ +static_assert(alignof(SkinnedMeshComponent_GetPredictedLODLevel) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetPredictedLODLevel"); \ +static_assert(sizeof(SkinnedMeshComponent_GetPredictedLODLevel) == 0x000004, "Wrong size on SkinnedMeshComponent_GetPredictedLODLevel"); \ +static_assert(offsetof(SkinnedMeshComponent_GetPredictedLODLevel, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetPredictedLODLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetRefPosePosition \ +static_assert(alignof(SkinnedMeshComponent_GetRefPosePosition) == 0x000008, "Wrong alignment on SkinnedMeshComponent_GetRefPosePosition"); \ +static_assert(sizeof(SkinnedMeshComponent_GetRefPosePosition) == 0x000020, "Wrong size on SkinnedMeshComponent_GetRefPosePosition"); \ +static_assert(offsetof(SkinnedMeshComponent_GetRefPosePosition, BoneIndex) == 0x000000, "Member 'SkinnedMeshComponent_GetRefPosePosition::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetRefPosePosition, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_GetRefPosePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetRefPoseTransform \ +static_assert(alignof(SkinnedMeshComponent_GetRefPoseTransform) == 0x000010, "Wrong alignment on SkinnedMeshComponent_GetRefPoseTransform"); \ +static_assert(sizeof(SkinnedMeshComponent_GetRefPoseTransform) == 0x000070, "Wrong size on SkinnedMeshComponent_GetRefPoseTransform"); \ +static_assert(offsetof(SkinnedMeshComponent_GetRefPoseTransform, BoneIndex) == 0x000000, "Member 'SkinnedMeshComponent_GetRefPoseTransform::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetRefPoseTransform, ReturnValue) == 0x000010, "Member 'SkinnedMeshComponent_GetRefPoseTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED \ +static_assert(alignof(SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED) == 0x000008, "Wrong alignment on SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED"); \ +static_assert(sizeof(SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED) == 0x000008, "Wrong size on SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED"); \ +static_assert(offsetof(SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetSkinnedAsset \ +static_assert(alignof(SkinnedMeshComponent_GetSkinnedAsset) == 0x000008, "Wrong alignment on SkinnedMeshComponent_GetSkinnedAsset"); \ +static_assert(sizeof(SkinnedMeshComponent_GetSkinnedAsset) == 0x000008, "Wrong size on SkinnedMeshComponent_GetSkinnedAsset"); \ +static_assert(offsetof(SkinnedMeshComponent_GetSkinnedAsset, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_GetSkinnedAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetSocketBoneName \ +static_assert(alignof(SkinnedMeshComponent_GetSocketBoneName) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetSocketBoneName"); \ +static_assert(sizeof(SkinnedMeshComponent_GetSocketBoneName) == 0x000010, "Wrong size on SkinnedMeshComponent_GetSocketBoneName"); \ +static_assert(offsetof(SkinnedMeshComponent_GetSocketBoneName, InSocketName) == 0x000000, "Member 'SkinnedMeshComponent_GetSocketBoneName::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetSocketBoneName, ReturnValue) == 0x000008, "Member 'SkinnedMeshComponent_GetSocketBoneName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose \ +static_assert(alignof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose"); \ +static_assert(sizeof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose) == 0x000014, "Wrong size on SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose"); \ +static_assert(offsetof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose, OutTwistAngle) == 0x000008, "Member 'SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose::OutTwistAngle' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose, OutSwingAngle) == 0x00000C, "Member 'SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose::OutSwingAngle' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose, ReturnValue) == 0x000010, "Member 'SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_GetVertexOffsetUsage \ +static_assert(alignof(SkinnedMeshComponent_GetVertexOffsetUsage) == 0x000004, "Wrong alignment on SkinnedMeshComponent_GetVertexOffsetUsage"); \ +static_assert(sizeof(SkinnedMeshComponent_GetVertexOffsetUsage) == 0x000008, "Wrong size on SkinnedMeshComponent_GetVertexOffsetUsage"); \ +static_assert(offsetof(SkinnedMeshComponent_GetVertexOffsetUsage, LODIndex) == 0x000000, "Member 'SkinnedMeshComponent_GetVertexOffsetUsage::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_GetVertexOffsetUsage, ReturnValue) == 0x000004, "Member 'SkinnedMeshComponent_GetVertexOffsetUsage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_IsUsingSkinWeightProfile \ +static_assert(alignof(SkinnedMeshComponent_IsUsingSkinWeightProfile) == 0x000001, "Wrong alignment on SkinnedMeshComponent_IsUsingSkinWeightProfile"); \ +static_assert(sizeof(SkinnedMeshComponent_IsUsingSkinWeightProfile) == 0x000001, "Wrong size on SkinnedMeshComponent_IsUsingSkinWeightProfile"); \ +static_assert(offsetof(SkinnedMeshComponent_IsUsingSkinWeightProfile, ReturnValue) == 0x000000, "Member 'SkinnedMeshComponent_IsUsingSkinWeightProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedMeshComponent_TransformToBoneSpace \ +static_assert(alignof(SkinnedMeshComponent_TransformToBoneSpace) == 0x000008, "Wrong alignment on SkinnedMeshComponent_TransformToBoneSpace"); \ +static_assert(sizeof(SkinnedMeshComponent_TransformToBoneSpace) == 0x000068, "Wrong size on SkinnedMeshComponent_TransformToBoneSpace"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformToBoneSpace, BoneName) == 0x000000, "Member 'SkinnedMeshComponent_TransformToBoneSpace::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformToBoneSpace, InPosition) == 0x000008, "Member 'SkinnedMeshComponent_TransformToBoneSpace::InPosition' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformToBoneSpace, InRotation) == 0x000020, "Member 'SkinnedMeshComponent_TransformToBoneSpace::InRotation' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformToBoneSpace, OutPosition) == 0x000038, "Member 'SkinnedMeshComponent_TransformToBoneSpace::OutPosition' has a wrong offset!"); \ +static_assert(offsetof(SkinnedMeshComponent_TransformToBoneSpace, OutRotation) == 0x000050, "Member 'SkinnedMeshComponent_TransformToBoneSpace::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkinnedMeshComponent \ +static_assert(alignof(USkinnedMeshComponent) == 0x000010, "Wrong alignment on USkinnedMeshComponent"); \ +static_assert(sizeof(USkinnedMeshComponent) == 0x0008F0, "Wrong size on USkinnedMeshComponent"); \ +static_assert(offsetof(USkinnedMeshComponent, SkeletalMesh) == 0x0005B0, "Member 'USkinnedMeshComponent::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, SkinnedAsset) == 0x0005B8, "Member 'USkinnedMeshComponent::SkinnedAsset' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, LeaderPoseComponent) == 0x0005C0, "Member 'USkinnedMeshComponent::LeaderPoseComponent' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, SkinCacheUsage) == 0x0005C8, "Member 'USkinnedMeshComponent::SkinCacheUsage' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, bSetMeshDeformer) == 0x0005D8, "Member 'USkinnedMeshComponent::bSetMeshDeformer' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, MeshDeformer) == 0x0005E0, "Member 'USkinnedMeshComponent::MeshDeformer' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, MeshDeformerInstanceSettings) == 0x0005E8, "Member 'USkinnedMeshComponent::MeshDeformerInstanceSettings' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, MeshDeformerInstance) == 0x0005F0, "Member 'USkinnedMeshComponent::MeshDeformerInstance' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, PhysicsAssetOverride) == 0x000770, "Member 'USkinnedMeshComponent::PhysicsAssetOverride' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, ForcedLodModel) == 0x000778, "Member 'USkinnedMeshComponent::ForcedLodModel' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, MinLodModel) == 0x00077C, "Member 'USkinnedMeshComponent::MinLodModel' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, StreamingDistanceMultiplier) == 0x000788, "Member 'USkinnedMeshComponent::StreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, LODInfo) == 0x000798, "Member 'USkinnedMeshComponent::LODInfo' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, VisibilityBasedAnimTickOption) == 0x0007CC, "Member 'USkinnedMeshComponent::VisibilityBasedAnimTickOption' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, CapsuleIndirectShadowMinVisibility) == 0x0007D4, "Member 'USkinnedMeshComponent::CapsuleIndirectShadowMinVisibility' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, CachedWorldOrLocalSpaceBounds) == 0x000810, "Member 'USkinnedMeshComponent::CachedWorldOrLocalSpaceBounds' has a wrong offset!"); \ +static_assert(offsetof(USkinnedMeshComponent, CachedWorldToLocalTransform) == 0x000850, "Member 'USkinnedMeshComponent::CachedWorldToLocalTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_CopyPoseFromSkeletalComponent \ +static_assert(alignof(PoseableMeshComponent_CopyPoseFromSkeletalComponent) == 0x000008, "Wrong alignment on PoseableMeshComponent_CopyPoseFromSkeletalComponent"); \ +static_assert(sizeof(PoseableMeshComponent_CopyPoseFromSkeletalComponent) == 0x000008, "Wrong size on PoseableMeshComponent_CopyPoseFromSkeletalComponent"); \ +static_assert(offsetof(PoseableMeshComponent_CopyPoseFromSkeletalComponent, InComponentToCopy) == 0x000000, "Member 'PoseableMeshComponent_CopyPoseFromSkeletalComponent::InComponentToCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_GetBoneLocationByName \ +static_assert(alignof(PoseableMeshComponent_GetBoneLocationByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_GetBoneLocationByName"); \ +static_assert(sizeof(PoseableMeshComponent_GetBoneLocationByName) == 0x000028, "Wrong size on PoseableMeshComponent_GetBoneLocationByName"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneLocationByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_GetBoneLocationByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneLocationByName, BoneSpace) == 0x000008, "Member 'PoseableMeshComponent_GetBoneLocationByName::BoneSpace' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneLocationByName, ReturnValue) == 0x000010, "Member 'PoseableMeshComponent_GetBoneLocationByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_GetBoneRotationByName \ +static_assert(alignof(PoseableMeshComponent_GetBoneRotationByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_GetBoneRotationByName"); \ +static_assert(sizeof(PoseableMeshComponent_GetBoneRotationByName) == 0x000028, "Wrong size on PoseableMeshComponent_GetBoneRotationByName"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneRotationByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_GetBoneRotationByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneRotationByName, BoneSpace) == 0x000008, "Member 'PoseableMeshComponent_GetBoneRotationByName::BoneSpace' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneRotationByName, ReturnValue) == 0x000010, "Member 'PoseableMeshComponent_GetBoneRotationByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_GetBoneScaleByName \ +static_assert(alignof(PoseableMeshComponent_GetBoneScaleByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_GetBoneScaleByName"); \ +static_assert(sizeof(PoseableMeshComponent_GetBoneScaleByName) == 0x000028, "Wrong size on PoseableMeshComponent_GetBoneScaleByName"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneScaleByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_GetBoneScaleByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneScaleByName, BoneSpace) == 0x000008, "Member 'PoseableMeshComponent_GetBoneScaleByName::BoneSpace' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneScaleByName, ReturnValue) == 0x000010, "Member 'PoseableMeshComponent_GetBoneScaleByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_GetBoneTransformByName \ +static_assert(alignof(PoseableMeshComponent_GetBoneTransformByName) == 0x000010, "Wrong alignment on PoseableMeshComponent_GetBoneTransformByName"); \ +static_assert(sizeof(PoseableMeshComponent_GetBoneTransformByName) == 0x000070, "Wrong size on PoseableMeshComponent_GetBoneTransformByName"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneTransformByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_GetBoneTransformByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneTransformByName, BoneSpace) == 0x000008, "Member 'PoseableMeshComponent_GetBoneTransformByName::BoneSpace' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_GetBoneTransformByName, ReturnValue) == 0x000010, "Member 'PoseableMeshComponent_GetBoneTransformByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_ResetBoneTransformByName \ +static_assert(alignof(PoseableMeshComponent_ResetBoneTransformByName) == 0x000004, "Wrong alignment on PoseableMeshComponent_ResetBoneTransformByName"); \ +static_assert(sizeof(PoseableMeshComponent_ResetBoneTransformByName) == 0x000008, "Wrong size on PoseableMeshComponent_ResetBoneTransformByName"); \ +static_assert(offsetof(PoseableMeshComponent_ResetBoneTransformByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_ResetBoneTransformByName::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_SetBoneLocationByName \ +static_assert(alignof(PoseableMeshComponent_SetBoneLocationByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_SetBoneLocationByName"); \ +static_assert(sizeof(PoseableMeshComponent_SetBoneLocationByName) == 0x000028, "Wrong size on PoseableMeshComponent_SetBoneLocationByName"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneLocationByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_SetBoneLocationByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneLocationByName, InLocation) == 0x000008, "Member 'PoseableMeshComponent_SetBoneLocationByName::InLocation' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneLocationByName, BoneSpace) == 0x000020, "Member 'PoseableMeshComponent_SetBoneLocationByName::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_SetBoneRotationByName \ +static_assert(alignof(PoseableMeshComponent_SetBoneRotationByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_SetBoneRotationByName"); \ +static_assert(sizeof(PoseableMeshComponent_SetBoneRotationByName) == 0x000028, "Wrong size on PoseableMeshComponent_SetBoneRotationByName"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneRotationByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_SetBoneRotationByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneRotationByName, InRotation) == 0x000008, "Member 'PoseableMeshComponent_SetBoneRotationByName::InRotation' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneRotationByName, BoneSpace) == 0x000020, "Member 'PoseableMeshComponent_SetBoneRotationByName::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_SetBoneScaleByName \ +static_assert(alignof(PoseableMeshComponent_SetBoneScaleByName) == 0x000008, "Wrong alignment on PoseableMeshComponent_SetBoneScaleByName"); \ +static_assert(sizeof(PoseableMeshComponent_SetBoneScaleByName) == 0x000028, "Wrong size on PoseableMeshComponent_SetBoneScaleByName"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneScaleByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_SetBoneScaleByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneScaleByName, InScale3D) == 0x000008, "Member 'PoseableMeshComponent_SetBoneScaleByName::InScale3D' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneScaleByName, BoneSpace) == 0x000020, "Member 'PoseableMeshComponent_SetBoneScaleByName::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PoseableMeshComponent_SetBoneTransformByName \ +static_assert(alignof(PoseableMeshComponent_SetBoneTransformByName) == 0x000010, "Wrong alignment on PoseableMeshComponent_SetBoneTransformByName"); \ +static_assert(sizeof(PoseableMeshComponent_SetBoneTransformByName) == 0x000080, "Wrong size on PoseableMeshComponent_SetBoneTransformByName"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneTransformByName, BoneName) == 0x000000, "Member 'PoseableMeshComponent_SetBoneTransformByName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneTransformByName, InTransform) == 0x000010, "Member 'PoseableMeshComponent_SetBoneTransformByName::InTransform' has a wrong offset!"); \ +static_assert(offsetof(PoseableMeshComponent_SetBoneTransformByName, BoneSpace) == 0x000070, "Member 'PoseableMeshComponent_SetBoneTransformByName::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPoseableMeshComponent \ +static_assert(alignof(UPoseableMeshComponent) == 0x000010, "Wrong alignment on UPoseableMeshComponent"); \ +static_assert(sizeof(UPoseableMeshComponent) == 0x000A50, "Wrong size on UPoseableMeshComponent"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventBase \ +static_assert(alignof(UParticleModuleEventBase) == 0x000008, "Wrong alignment on UParticleModuleEventBase"); \ +static_assert(sizeof(UParticleModuleEventBase) == 0x000030, "Wrong size on UParticleModuleEventBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventReceiverBase \ +static_assert(alignof(UParticleModuleEventReceiverBase) == 0x000008, "Wrong alignment on UParticleModuleEventReceiverBase"); \ +static_assert(sizeof(UParticleModuleEventReceiverBase) == 0x000040, "Wrong size on UParticleModuleEventReceiverBase"); \ +static_assert(offsetof(UParticleModuleEventReceiverBase, EventGeneratorType) == 0x000030, "Member 'UParticleModuleEventReceiverBase::EventGeneratorType' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleEventReceiverBase, EventName) == 0x000034, "Member 'UParticleModuleEventReceiverBase::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPrecomputedAOMask \ +static_assert(alignof(UMaterialExpressionPrecomputedAOMask) == 0x000008, "Wrong alignment on UMaterialExpressionPrecomputedAOMask"); \ +static_assert(sizeof(UMaterialExpressionPrecomputedAOMask) == 0x0000B0, "Wrong size on UMaterialExpressionPrecomputedAOMask"); \ + +#define DUMPER7_ASSERTS_StreamableRenderAsset_SetForceMipLevelsToBeResident \ +static_assert(alignof(StreamableRenderAsset_SetForceMipLevelsToBeResident) == 0x000004, "Wrong alignment on StreamableRenderAsset_SetForceMipLevelsToBeResident"); \ +static_assert(sizeof(StreamableRenderAsset_SetForceMipLevelsToBeResident) == 0x000008, "Wrong size on StreamableRenderAsset_SetForceMipLevelsToBeResident"); \ +static_assert(offsetof(StreamableRenderAsset_SetForceMipLevelsToBeResident, Seconds) == 0x000000, "Member 'StreamableRenderAsset_SetForceMipLevelsToBeResident::Seconds' has a wrong offset!"); \ +static_assert(offsetof(StreamableRenderAsset_SetForceMipLevelsToBeResident, CinematicLODGroupMask) == 0x000004, "Member 'StreamableRenderAsset_SetForceMipLevelsToBeResident::CinematicLODGroupMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamableRenderAsset \ +static_assert(alignof(UStreamableRenderAsset) == 0x000008, "Wrong alignment on UStreamableRenderAsset"); \ +static_assert(sizeof(UStreamableRenderAsset) == 0x0000C8, "Wrong size on UStreamableRenderAsset"); \ +static_assert(offsetof(UStreamableRenderAsset, ForceMipLevelsToBeResidentTimestamp) == 0x000040, "Member 'UStreamableRenderAsset::ForceMipLevelsToBeResidentTimestamp' has a wrong offset!"); \ +static_assert(offsetof(UStreamableRenderAsset, NumCinematicMipLevels) == 0x000048, "Member 'UStreamableRenderAsset::NumCinematicMipLevels' has a wrong offset!"); \ +static_assert(offsetof(UStreamableRenderAsset, NoRefStreamingLODBias) == 0x000050, "Member 'UStreamableRenderAsset::NoRefStreamingLODBias' has a wrong offset!"); \ +static_assert(offsetof(UStreamableRenderAsset, StreamingIndex) == 0x0000B8, "Member 'UStreamableRenderAsset::StreamingIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialFunction \ +static_assert(alignof(UMaterialFunction) == 0x000008, "Wrong alignment on UMaterialFunction"); \ +static_assert(sizeof(UMaterialFunction) == 0x000068, "Wrong size on UMaterialFunction"); \ +static_assert(offsetof(UMaterialFunction, Description) == 0x000040, "Member 'UMaterialFunction::Description' has a wrong offset!"); \ +static_assert(offsetof(UMaterialFunction, UserExposedCaption) == 0x000050, "Member 'UMaterialFunction::UserExposedCaption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReporterBase \ +static_assert(alignof(UReporterBase) == 0x000008, "Wrong alignment on UReporterBase"); \ +static_assert(sizeof(UReporterBase) == 0x000030, "Wrong size on UReporterBase"); \ + +#define DUMPER7_ASSERTS_UReporterGraph \ +static_assert(alignof(UReporterGraph) == 0x000008, "Wrong alignment on UReporterGraph"); \ +static_assert(sizeof(UReporterGraph) == 0x0000C8, "Wrong size on UReporterGraph"); \ + +#define DUMPER7_ASSERTS_UBlueprintCore \ +static_assert(alignof(UBlueprintCore) == 0x000008, "Wrong alignment on UBlueprintCore"); \ +static_assert(sizeof(UBlueprintCore) == 0x000050, "Wrong size on UBlueprintCore"); \ +static_assert(offsetof(UBlueprintCore, SkeletonGeneratedClass) == 0x000028, "Member 'UBlueprintCore::SkeletonGeneratedClass' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintCore, GeneratedClass) == 0x000030, "Member 'UBlueprintCore::GeneratedClass' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintCore, bLegacyNeedToPurgeSkelRefs) == 0x000038, "Member 'UBlueprintCore::bLegacyNeedToPurgeSkelRefs' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintCore, BlueprintGuid) == 0x00003C, "Member 'UBlueprintCore::BlueprintGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprint \ +static_assert(alignof(UBlueprint) == 0x000008, "Wrong alignment on UBlueprint"); \ +static_assert(sizeof(UBlueprint) == 0x0000A8, "Wrong size on UBlueprint"); \ +static_assert(offsetof(UBlueprint, ParentClass) == 0x000058, "Member 'UBlueprint::ParentClass' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, BlueprintType) == 0x000060, "Member 'UBlueprint::BlueprintType' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, BlueprintSystemVersion) == 0x000064, "Member 'UBlueprint::BlueprintSystemVersion' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, SimpleConstructionScript) == 0x000068, "Member 'UBlueprint::SimpleConstructionScript' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, ComponentTemplates) == 0x000070, "Member 'UBlueprint::ComponentTemplates' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, Timelines) == 0x000080, "Member 'UBlueprint::Timelines' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, ComponentClassOverrides) == 0x000090, "Member 'UBlueprint::ComponentClassOverrides' has a wrong offset!"); \ +static_assert(offsetof(UBlueprint, InheritableComponentHandler) == 0x0000A0, "Member 'UBlueprint::InheritableComponentHandler' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereLightDirection \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereLightDirection) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereLightDirection"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereLightDirection) == 0x0000B8, "Wrong size on UMaterialExpressionSkyAtmosphereLightDirection"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereLightDirection, LightIndex) == 0x0000B0, "Member 'UMaterialExpressionSkyAtmosphereLightDirection::LightIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightWeightInstanceManager_OnSpawnedActorDestroyed \ +static_assert(alignof(LightWeightInstanceManager_OnSpawnedActorDestroyed) == 0x000008, "Wrong alignment on LightWeightInstanceManager_OnSpawnedActorDestroyed"); \ +static_assert(sizeof(LightWeightInstanceManager_OnSpawnedActorDestroyed) == 0x000008, "Wrong size on LightWeightInstanceManager_OnSpawnedActorDestroyed"); \ +static_assert(offsetof(LightWeightInstanceManager_OnSpawnedActorDestroyed, DestroyedActor) == 0x000000, "Member 'LightWeightInstanceManager_OnSpawnedActorDestroyed::DestroyedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALightWeightInstanceManager \ +static_assert(alignof(ALightWeightInstanceManager) == 0x000008, "Wrong alignment on ALightWeightInstanceManager"); \ +static_assert(sizeof(ALightWeightInstanceManager) == 0x000348, "Wrong size on ALightWeightInstanceManager"); \ +static_assert(offsetof(ALightWeightInstanceManager, RepresentedClass) == 0x0002A8, "Member 'ALightWeightInstanceManager::RepresentedClass' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceManager, AcceptedClass) == 0x0002B0, "Member 'ALightWeightInstanceManager::AcceptedClass' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceManager, InstanceTransforms) == 0x0002B8, "Member 'ALightWeightInstanceManager::InstanceTransforms' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceManager, Actors) == 0x0002C8, "Member 'ALightWeightInstanceManager::Actors' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceManager, FreeIndices) == 0x000328, "Member 'ALightWeightInstanceManager::FreeIndices' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceManager, ValidIndices) == 0x000338, "Member 'ALightWeightInstanceManager::ValidIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundEffectPreset \ +static_assert(alignof(USoundEffectPreset) == 0x000008, "Wrong alignment on USoundEffectPreset"); \ +static_assert(sizeof(USoundEffectPreset) == 0x000068, "Wrong size on USoundEffectPreset"); \ + +#define DUMPER7_ASSERTS_UPlayerStateCountLimiterConfig \ +static_assert(alignof(UPlayerStateCountLimiterConfig) == 0x000008, "Wrong alignment on UPlayerStateCountLimiterConfig"); \ +static_assert(sizeof(UPlayerStateCountLimiterConfig) == 0x000040, "Wrong size on UPlayerStateCountLimiterConfig"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceConstant_K2_GetScalarParameterValue \ +static_assert(alignof(MaterialInstanceConstant_K2_GetScalarParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceConstant_K2_GetScalarParameterValue"); \ +static_assert(sizeof(MaterialInstanceConstant_K2_GetScalarParameterValue) == 0x00000C, "Wrong size on MaterialInstanceConstant_K2_GetScalarParameterValue"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetScalarParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceConstant_K2_GetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetScalarParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceConstant_K2_GetScalarParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceConstant_K2_GetTextureParameterValue \ +static_assert(alignof(MaterialInstanceConstant_K2_GetTextureParameterValue) == 0x000008, "Wrong alignment on MaterialInstanceConstant_K2_GetTextureParameterValue"); \ +static_assert(sizeof(MaterialInstanceConstant_K2_GetTextureParameterValue) == 0x000010, "Wrong size on MaterialInstanceConstant_K2_GetTextureParameterValue"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetTextureParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceConstant_K2_GetTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetTextureParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceConstant_K2_GetTextureParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceConstant_K2_GetVectorParameterValue \ +static_assert(alignof(MaterialInstanceConstant_K2_GetVectorParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceConstant_K2_GetVectorParameterValue"); \ +static_assert(sizeof(MaterialInstanceConstant_K2_GetVectorParameterValue) == 0x000018, "Wrong size on MaterialInstanceConstant_K2_GetVectorParameterValue"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetVectorParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceConstant_K2_GetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceConstant_K2_GetVectorParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceConstant_K2_GetVectorParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialInstanceConstant \ +static_assert(alignof(UMaterialInstanceConstant) == 0x000008, "Wrong alignment on UMaterialInstanceConstant"); \ +static_assert(sizeof(UMaterialInstanceConstant) == 0x000250, "Wrong size on UMaterialInstanceConstant"); \ +static_assert(offsetof(UMaterialInstanceConstant, PhysMaterialMask) == 0x000248, "Member 'UMaterialInstanceConstant::PhysMaterialMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionMaterialLayerBlendInstance \ +static_assert(alignof(UMaterialFunctionMaterialLayerBlendInstance) == 0x000008, "Wrong alignment on UMaterialFunctionMaterialLayerBlendInstance"); \ +static_assert(sizeof(UMaterialFunctionMaterialLayerBlendInstance) == 0x0000E0, "Wrong size on UMaterialFunctionMaterialLayerBlendInstance"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRayTracingQualitySwitch \ +static_assert(alignof(UMaterialExpressionRayTracingQualitySwitch) == 0x000008, "Wrong alignment on UMaterialExpressionRayTracingQualitySwitch"); \ +static_assert(sizeof(UMaterialExpressionRayTracingQualitySwitch) == 0x000100, "Wrong size on UMaterialExpressionRayTracingQualitySwitch"); \ +static_assert(offsetof(UMaterialExpressionRayTracingQualitySwitch, Normal) == 0x0000B0, "Member 'UMaterialExpressionRayTracingQualitySwitch::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRayTracingQualitySwitch, RayTraced) == 0x0000D8, "Member 'UMaterialExpressionRayTracingQualitySwitch::RayTraced' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AParticleEventManager \ +static_assert(alignof(AParticleEventManager) == 0x000008, "Wrong alignment on AParticleEventManager"); \ +static_assert(sizeof(AParticleEventManager) == 0x000298, "Wrong size on AParticleEventManager"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRerouteBase \ +static_assert(alignof(UMaterialExpressionRerouteBase) == 0x000008, "Wrong alignment on UMaterialExpressionRerouteBase"); \ +static_assert(sizeof(UMaterialExpressionRerouteBase) == 0x0000B0, "Wrong size on UMaterialExpressionRerouteBase"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionReroute \ +static_assert(alignof(UMaterialExpressionReroute) == 0x000008, "Wrong alignment on UMaterialExpressionReroute"); \ +static_assert(sizeof(UMaterialExpressionReroute) == 0x0000D8, "Wrong size on UMaterialExpressionReroute"); \ +static_assert(offsetof(UMaterialExpressionReroute, Input) == 0x0000B0, "Member 'UMaterialExpressionReroute::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAnimLayerInterface \ +static_assert(alignof(IAnimLayerInterface) == 0x000001, "Wrong alignment on IAnimLayerInterface"); \ +static_assert(sizeof(IAnimLayerInterface) == 0x000001, "Wrong size on IAnimLayerInterface"); \ + +#define DUMPER7_ASSERTS_Texture_Blueprint_GetMemorySize \ +static_assert(alignof(Texture_Blueprint_GetMemorySize) == 0x000008, "Wrong alignment on Texture_Blueprint_GetMemorySize"); \ +static_assert(sizeof(Texture_Blueprint_GetMemorySize) == 0x000008, "Wrong size on Texture_Blueprint_GetMemorySize"); \ +static_assert(offsetof(Texture_Blueprint_GetMemorySize, ReturnValue) == 0x000000, "Member 'Texture_Blueprint_GetMemorySize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Texture_Blueprint_GetTextureSourceDiskAndMemorySize \ +static_assert(alignof(Texture_Blueprint_GetTextureSourceDiskAndMemorySize) == 0x000008, "Wrong alignment on Texture_Blueprint_GetTextureSourceDiskAndMemorySize"); \ +static_assert(sizeof(Texture_Blueprint_GetTextureSourceDiskAndMemorySize) == 0x000010, "Wrong size on Texture_Blueprint_GetTextureSourceDiskAndMemorySize"); \ +static_assert(offsetof(Texture_Blueprint_GetTextureSourceDiskAndMemorySize, OutDiskSize) == 0x000000, "Member 'Texture_Blueprint_GetTextureSourceDiskAndMemorySize::OutDiskSize' has a wrong offset!"); \ +static_assert(offsetof(Texture_Blueprint_GetTextureSourceDiskAndMemorySize, OutMemorySize) == 0x000008, "Member 'Texture_Blueprint_GetTextureSourceDiskAndMemorySize::OutMemorySize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Texture_ComputeTextureSourceChannelMinMax \ +static_assert(alignof(Texture_ComputeTextureSourceChannelMinMax) == 0x000004, "Wrong alignment on Texture_ComputeTextureSourceChannelMinMax"); \ +static_assert(sizeof(Texture_ComputeTextureSourceChannelMinMax) == 0x000024, "Wrong size on Texture_ComputeTextureSourceChannelMinMax"); \ +static_assert(offsetof(Texture_ComputeTextureSourceChannelMinMax, OutColorMin) == 0x000000, "Member 'Texture_ComputeTextureSourceChannelMinMax::OutColorMin' has a wrong offset!"); \ +static_assert(offsetof(Texture_ComputeTextureSourceChannelMinMax, OutColorMax) == 0x000010, "Member 'Texture_ComputeTextureSourceChannelMinMax::OutColorMax' has a wrong offset!"); \ +static_assert(offsetof(Texture_ComputeTextureSourceChannelMinMax, ReturnValue) == 0x000020, "Member 'Texture_ComputeTextureSourceChannelMinMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTexture \ +static_assert(alignof(UTexture) == 0x000010, "Wrong alignment on UTexture"); \ +static_assert(sizeof(UTexture) == 0x0001D0, "Wrong size on UTexture"); \ +static_assert(offsetof(UTexture, LightingGuid) == 0x0000D8, "Member 'UTexture::LightingGuid' has a wrong offset!"); \ +static_assert(offsetof(UTexture, LevelIndex) == 0x0000E8, "Member 'UTexture::LevelIndex' has a wrong offset!"); \ +static_assert(offsetof(UTexture, LODBias) == 0x0000EC, "Member 'UTexture::LODBias' has a wrong offset!"); \ +static_assert(offsetof(UTexture, CompressionSettings) == 0x0000F0, "Member 'UTexture::CompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(UTexture, Filter) == 0x0000F1, "Member 'UTexture::Filter' has a wrong offset!"); \ +static_assert(offsetof(UTexture, MipLoadOptions) == 0x0000F2, "Member 'UTexture::MipLoadOptions' has a wrong offset!"); \ +static_assert(offsetof(UTexture, CookPlatformTilingSettings) == 0x0000F3, "Member 'UTexture::CookPlatformTilingSettings' has a wrong offset!"); \ +static_assert(offsetof(UTexture, LODGroup) == 0x0000F4, "Member 'UTexture::LODGroup' has a wrong offset!"); \ +static_assert(offsetof(UTexture, Downscale) == 0x0000F8, "Member 'UTexture::Downscale' has a wrong offset!"); \ +static_assert(offsetof(UTexture, DownscaleOptions) == 0x0000FC, "Member 'UTexture::DownscaleOptions' has a wrong offset!"); \ +static_assert(offsetof(UTexture, AssetUserData) == 0x000100, "Member 'UTexture::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureRenderTarget \ +static_assert(alignof(UTextureRenderTarget) == 0x000010, "Wrong alignment on UTextureRenderTarget"); \ +static_assert(sizeof(UTextureRenderTarget) == 0x0001D0, "Wrong size on UTextureRenderTarget"); \ +static_assert(offsetof(UTextureRenderTarget, TargetGamma) == 0x0001C8, "Member 'UTextureRenderTarget::TargetGamma' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureRenderTarget2D \ +static_assert(alignof(UTextureRenderTarget2D) == 0x000010, "Wrong alignment on UTextureRenderTarget2D"); \ +static_assert(sizeof(UTextureRenderTarget2D) == 0x000200, "Wrong size on UTextureRenderTarget2D"); \ +static_assert(offsetof(UTextureRenderTarget2D, SizeX) == 0x0001D0, "Member 'UTextureRenderTarget2D::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, SizeY) == 0x0001D4, "Member 'UTextureRenderTarget2D::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, ClearColor) == 0x0001D8, "Member 'UTextureRenderTarget2D::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, AddressX) == 0x0001E8, "Member 'UTextureRenderTarget2D::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, AddressY) == 0x0001E9, "Member 'UTextureRenderTarget2D::AddressY' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, RenderTargetFormat) == 0x0001EB, "Member 'UTextureRenderTarget2D::RenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, MipsSamplerFilter) == 0x0001ED, "Member 'UTextureRenderTarget2D::MipsSamplerFilter' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, MipsAddressU) == 0x0001EE, "Member 'UTextureRenderTarget2D::MipsAddressU' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, MipsAddressV) == 0x0001EF, "Member 'UTextureRenderTarget2D::MipsAddressV' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2D, OverrideFormat) == 0x0001F0, "Member 'UTextureRenderTarget2D::OverrideFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasRenderTarget2D_CreateCanvasRenderTarget2D \ +static_assert(alignof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D) == 0x000008, "Wrong alignment on CanvasRenderTarget2D_CreateCanvasRenderTarget2D"); \ +static_assert(sizeof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D) == 0x000020, "Wrong size on CanvasRenderTarget2D_CreateCanvasRenderTarget2D"); \ +static_assert(offsetof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D, WorldContextObject) == 0x000000, "Member 'CanvasRenderTarget2D_CreateCanvasRenderTarget2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D, CanvasRenderTarget2DClass) == 0x000008, "Member 'CanvasRenderTarget2D_CreateCanvasRenderTarget2D::CanvasRenderTarget2DClass' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D, Width) == 0x000010, "Member 'CanvasRenderTarget2D_CreateCanvasRenderTarget2D::Width' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D, Height) == 0x000014, "Member 'CanvasRenderTarget2D_CreateCanvasRenderTarget2D::Height' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_CreateCanvasRenderTarget2D, ReturnValue) == 0x000018, "Member 'CanvasRenderTarget2D_CreateCanvasRenderTarget2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasRenderTarget2D_GetSize \ +static_assert(alignof(CanvasRenderTarget2D_GetSize) == 0x000004, "Wrong alignment on CanvasRenderTarget2D_GetSize"); \ +static_assert(sizeof(CanvasRenderTarget2D_GetSize) == 0x000008, "Wrong size on CanvasRenderTarget2D_GetSize"); \ +static_assert(offsetof(CanvasRenderTarget2D_GetSize, Width) == 0x000000, "Member 'CanvasRenderTarget2D_GetSize::Width' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_GetSize, Height) == 0x000004, "Member 'CanvasRenderTarget2D_GetSize::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasRenderTarget2D_ReceiveUpdate \ +static_assert(alignof(CanvasRenderTarget2D_ReceiveUpdate) == 0x000008, "Wrong alignment on CanvasRenderTarget2D_ReceiveUpdate"); \ +static_assert(sizeof(CanvasRenderTarget2D_ReceiveUpdate) == 0x000010, "Wrong size on CanvasRenderTarget2D_ReceiveUpdate"); \ +static_assert(offsetof(CanvasRenderTarget2D_ReceiveUpdate, Canvas) == 0x000000, "Member 'CanvasRenderTarget2D_ReceiveUpdate::Canvas' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_ReceiveUpdate, Width) == 0x000008, "Member 'CanvasRenderTarget2D_ReceiveUpdate::Width' has a wrong offset!"); \ +static_assert(offsetof(CanvasRenderTarget2D_ReceiveUpdate, Height) == 0x00000C, "Member 'CanvasRenderTarget2D_ReceiveUpdate::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCanvasRenderTarget2D \ +static_assert(alignof(UCanvasRenderTarget2D) == 0x000010, "Wrong alignment on UCanvasRenderTarget2D"); \ +static_assert(sizeof(UCanvasRenderTarget2D) == 0x000220, "Wrong size on UCanvasRenderTarget2D"); \ +static_assert(offsetof(UCanvasRenderTarget2D, OnCanvasRenderTargetUpdate) == 0x0001F8, "Member 'UCanvasRenderTarget2D::OnCanvasRenderTargetUpdate' has a wrong offset!"); \ +static_assert(offsetof(UCanvasRenderTarget2D, World) == 0x000208, "Member 'UCanvasRenderTarget2D::World' has a wrong offset!"); \ +static_assert(offsetof(UCanvasRenderTarget2D, bShouldClearRenderTargetOnReceiveUpdate) == 0x000210, "Member 'UCanvasRenderTarget2D::bShouldClearRenderTargetOnReceiveUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlatformInterfaceBase \ +static_assert(alignof(UPlatformInterfaceBase) == 0x000008, "Wrong alignment on UPlatformInterfaceBase"); \ +static_assert(sizeof(UPlatformInterfaceBase) == 0x000038, "Wrong size on UPlatformInterfaceBase"); \ +static_assert(offsetof(UPlatformInterfaceBase, AllDelegates) == 0x000028, "Member 'UPlatformInterfaceBase::AllDelegates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMicroTransactionBase \ +static_assert(alignof(UMicroTransactionBase) == 0x000008, "Wrong alignment on UMicroTransactionBase"); \ +static_assert(sizeof(UMicroTransactionBase) == 0x000068, "Wrong size on UMicroTransactionBase"); \ +static_assert(offsetof(UMicroTransactionBase, AvailableProducts) == 0x000038, "Member 'UMicroTransactionBase::AvailableProducts' has a wrong offset!"); \ +static_assert(offsetof(UMicroTransactionBase, LastError) == 0x000048, "Member 'UMicroTransactionBase::LastError' has a wrong offset!"); \ +static_assert(offsetof(UMicroTransactionBase, LastErrorSolution) == 0x000058, "Member 'UMicroTransactionBase::LastErrorSolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueVoice \ +static_assert(alignof(UDialogueVoice) == 0x000008, "Wrong alignment on UDialogueVoice"); \ +static_assert(sizeof(UDialogueVoice) == 0x000040, "Wrong size on UDialogueVoice"); \ +static_assert(offsetof(UDialogueVoice, Gender) == 0x000028, "Member 'UDialogueVoice::Gender' has a wrong offset!"); \ +static_assert(offsetof(UDialogueVoice, Plurality) == 0x000029, "Member 'UDialogueVoice::Plurality' has a wrong offset!"); \ +static_assert(offsetof(UDialogueVoice, LocalizationGUID) == 0x00002C, "Member 'UDialogueVoice::LocalizationGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHLODBuilder \ +static_assert(alignof(UHLODBuilder) == 0x000008, "Wrong alignment on UHLODBuilder"); \ +static_assert(sizeof(UHLODBuilder) == 0x000028, "Wrong size on UHLODBuilder"); \ + +#define DUMPER7_ASSERTS_INavPathObserverInterface \ +static_assert(alignof(INavPathObserverInterface) == 0x000001, "Wrong alignment on INavPathObserverInterface"); \ +static_assert(sizeof(INavPathObserverInterface) == 0x000001, "Wrong size on INavPathObserverInterface"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRotator \ +static_assert(alignof(UMaterialExpressionRotator) == 0x000008, "Wrong alignment on UMaterialExpressionRotator"); \ +static_assert(sizeof(UMaterialExpressionRotator) == 0x000110, "Wrong size on UMaterialExpressionRotator"); \ +static_assert(offsetof(UMaterialExpressionRotator, Coordinate) == 0x0000B0, "Member 'UMaterialExpressionRotator::Coordinate' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotator, Time) == 0x0000D8, "Member 'UMaterialExpressionRotator::Time' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotator, CenterX) == 0x000100, "Member 'UMaterialExpressionRotator::CenterX' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotator, CenterY) == 0x000104, "Member 'UMaterialExpressionRotator::CenterY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotator, Speed) == 0x000108, "Member 'UMaterialExpressionRotator::Speed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRotator, ConstCoordinate) == 0x00010C, "Member 'UMaterialExpressionRotator::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INetworkPredictionInterface \ +static_assert(alignof(INetworkPredictionInterface) == 0x000001, "Wrong alignment on INetworkPredictionInterface"); \ +static_assert(sizeof(INetworkPredictionInterface) == 0x000001, "Wrong size on INetworkPredictionInterface"); \ + +#define DUMPER7_ASSERTS_UTickableWorldSubsystem \ +static_assert(alignof(UTickableWorldSubsystem) == 0x000008, "Wrong alignment on UTickableWorldSubsystem"); \ +static_assert(sizeof(UTickableWorldSubsystem) == 0x000040, "Wrong size on UTickableWorldSubsystem"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSceneColor \ +static_assert(alignof(UMaterialExpressionSceneColor) == 0x000008, "Wrong alignment on UMaterialExpressionSceneColor"); \ +static_assert(sizeof(UMaterialExpressionSceneColor) == 0x000118, "Wrong size on UMaterialExpressionSceneColor"); \ +static_assert(offsetof(UMaterialExpressionSceneColor, InputMode) == 0x0000B0, "Member 'UMaterialExpressionSceneColor::InputMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneColor, Input) == 0x0000B8, "Member 'UMaterialExpressionSceneColor::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneColor, OffsetFraction) == 0x0000E0, "Member 'UMaterialExpressionSceneColor::OffsetFraction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneColor, ConstInput) == 0x000108, "Member 'UMaterialExpressionSceneColor::ConstInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAccelerationDragScaleOverLife \ +static_assert(alignof(UParticleModuleAccelerationDragScaleOverLife) == 0x000008, "Wrong alignment on UParticleModuleAccelerationDragScaleOverLife"); \ +static_assert(sizeof(UParticleModuleAccelerationDragScaleOverLife) == 0x000070, "Wrong size on UParticleModuleAccelerationDragScaleOverLife"); \ +static_assert(offsetof(UParticleModuleAccelerationDragScaleOverLife, DragScale) == 0x000038, "Member 'UParticleModuleAccelerationDragScaleOverLife::DragScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAccelerationDragScaleOverLife, DragScaleRaw) == 0x000040, "Member 'UParticleModuleAccelerationDragScaleOverLife::DragScaleRaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereAerialPerspective \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereAerialPerspective) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereAerialPerspective"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereAerialPerspective) == 0x0000D8, "Wrong size on UMaterialExpressionSkyAtmosphereAerialPerspective"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereAerialPerspective, WorldPosition) == 0x0000B0, "Member 'UMaterialExpressionSkyAtmosphereAerialPerspective::WorldPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetUserData \ +static_assert(alignof(UAssetUserData) == 0x000008, "Wrong alignment on UAssetUserData"); \ +static_assert(sizeof(UAssetUserData) == 0x000028, "Wrong size on UAssetUserData"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAccelerationOverLifetime \ +static_assert(alignof(UParticleModuleAccelerationOverLifetime) == 0x000008, "Wrong alignment on UParticleModuleAccelerationOverLifetime"); \ +static_assert(sizeof(UParticleModuleAccelerationOverLifetime) == 0x000098, "Wrong size on UParticleModuleAccelerationOverLifetime"); \ +static_assert(offsetof(UParticleModuleAccelerationOverLifetime, AccelOverLife) == 0x000038, "Member 'UParticleModuleAccelerationOverLifetime::AccelOverLife' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterface_GetParticleComponents \ +static_assert(alignof(CameraLensEffectInterface_GetParticleComponents) == 0x000008, "Wrong alignment on CameraLensEffectInterface_GetParticleComponents"); \ +static_assert(sizeof(CameraLensEffectInterface_GetParticleComponents) == 0x000010, "Wrong size on CameraLensEffectInterface_GetParticleComponents"); \ +static_assert(offsetof(CameraLensEffectInterface_GetParticleComponents, ReturnValue) == 0x000000, "Member 'CameraLensEffectInterface_GetParticleComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterface_GetPrimaryParticleComponent \ +static_assert(alignof(CameraLensEffectInterface_GetPrimaryParticleComponent) == 0x000008, "Wrong alignment on CameraLensEffectInterface_GetPrimaryParticleComponent"); \ +static_assert(sizeof(CameraLensEffectInterface_GetPrimaryParticleComponent) == 0x000008, "Wrong size on CameraLensEffectInterface_GetPrimaryParticleComponent"); \ +static_assert(offsetof(CameraLensEffectInterface_GetPrimaryParticleComponent, ReturnValue) == 0x000000, "Member 'CameraLensEffectInterface_GetPrimaryParticleComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICameraLensEffectInterface \ +static_assert(alignof(ICameraLensEffectInterface) == 0x000001, "Wrong alignment on ICameraLensEffectInterface"); \ +static_assert(sizeof(ICameraLensEffectInterface) == 0x000001, "Wrong size on ICameraLensEffectInterface"); \ + +#define DUMPER7_ASSERTS_Texture2D_Blueprint_GetSizeX \ +static_assert(alignof(Texture2D_Blueprint_GetSizeX) == 0x000004, "Wrong alignment on Texture2D_Blueprint_GetSizeX"); \ +static_assert(sizeof(Texture2D_Blueprint_GetSizeX) == 0x000004, "Wrong size on Texture2D_Blueprint_GetSizeX"); \ +static_assert(offsetof(Texture2D_Blueprint_GetSizeX, ReturnValue) == 0x000000, "Member 'Texture2D_Blueprint_GetSizeX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Texture2D_Blueprint_GetSizeY \ +static_assert(alignof(Texture2D_Blueprint_GetSizeY) == 0x000004, "Wrong alignment on Texture2D_Blueprint_GetSizeY"); \ +static_assert(sizeof(Texture2D_Blueprint_GetSizeY) == 0x000004, "Wrong size on Texture2D_Blueprint_GetSizeY"); \ +static_assert(offsetof(Texture2D_Blueprint_GetSizeY, ReturnValue) == 0x000000, "Member 'Texture2D_Blueprint_GetSizeY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTexture2D \ +static_assert(alignof(UTexture2D) == 0x000010, "Wrong alignment on UTexture2D"); \ +static_assert(sizeof(UTexture2D) == 0x000280, "Wrong size on UTexture2D"); \ +static_assert(offsetof(UTexture2D, FirstResourceMemMip) == 0x0001C8, "Member 'UTexture2D::FirstResourceMemMip' has a wrong offset!"); \ +static_assert(offsetof(UTexture2D, AddressX) == 0x0001CD, "Member 'UTexture2D::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UTexture2D, AddressY) == 0x0001CE, "Member 'UTexture2D::AddressY' has a wrong offset!"); \ +static_assert(offsetof(UTexture2D, ImportedSize) == 0x0001D0, "Member 'UTexture2D::ImportedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightMapVirtualTexture2D \ +static_assert(alignof(ULightMapVirtualTexture2D) == 0x000010, "Wrong alignment on ULightMapVirtualTexture2D"); \ +static_assert(sizeof(ULightMapVirtualTexture2D) == 0x000290, "Wrong size on ULightMapVirtualTexture2D"); \ +static_assert(offsetof(ULightMapVirtualTexture2D, TypeToLayer) == 0x000278, "Member 'ULightMapVirtualTexture2D::TypeToLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureMipDataProviderFactory \ +static_assert(alignof(UTextureMipDataProviderFactory) == 0x000008, "Wrong alignment on UTextureMipDataProviderFactory"); \ +static_assert(sizeof(UTextureMipDataProviderFactory) == 0x000028, "Wrong size on UTextureMipDataProviderFactory"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAttractorBase \ +static_assert(alignof(UParticleModuleAttractorBase) == 0x000008, "Wrong alignment on UParticleModuleAttractorBase"); \ +static_assert(sizeof(UParticleModuleAttractorBase) == 0x000030, "Wrong size on UParticleModuleAttractorBase"); \ + +#define DUMPER7_ASSERTS_AVisualLoggerFilterVolume \ +static_assert(alignof(AVisualLoggerFilterVolume) == 0x000008, "Wrong alignment on AVisualLoggerFilterVolume"); \ +static_assert(sizeof(AVisualLoggerFilterVolume) == 0x0002D0, "Wrong size on AVisualLoggerFilterVolume"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSign \ +static_assert(alignof(UMaterialExpressionSign) == 0x000008, "Wrong alignment on UMaterialExpressionSign"); \ +static_assert(sizeof(UMaterialExpressionSign) == 0x0000D8, "Wrong size on UMaterialExpressionSign"); \ +static_assert(offsetof(UMaterialExpressionSign, Input) == 0x0000B0, "Member 'UMaterialExpressionSign::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureAllMipDataProviderFactory \ +static_assert(alignof(UTextureAllMipDataProviderFactory) == 0x000008, "Wrong alignment on UTextureAllMipDataProviderFactory"); \ +static_assert(sizeof(UTextureAllMipDataProviderFactory) == 0x000028, "Wrong size on UTextureAllMipDataProviderFactory"); \ + +#define DUMPER7_ASSERTS_UParticleModuleBeamNoise \ +static_assert(alignof(UParticleModuleBeamNoise) == 0x000008, "Wrong alignment on UParticleModuleBeamNoise"); \ +static_assert(sizeof(UParticleModuleBeamNoise) == 0x0001C0, "Wrong size on UParticleModuleBeamNoise"); \ +static_assert(offsetof(UParticleModuleBeamNoise, Frequency) == 0x000034, "Member 'UParticleModuleBeamNoise::Frequency' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, Frequency_LowRange) == 0x000038, "Member 'UParticleModuleBeamNoise::Frequency_LowRange' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseRange) == 0x000040, "Member 'UParticleModuleBeamNoise::NoiseRange' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseRangeScale) == 0x0000A0, "Member 'UParticleModuleBeamNoise::NoiseRangeScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseSpeed) == 0x0000D8, "Member 'UParticleModuleBeamNoise::NoiseSpeed' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseLockRadius) == 0x00013C, "Member 'UParticleModuleBeamNoise::NoiseLockRadius' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseLockTime) == 0x000144, "Member 'UParticleModuleBeamNoise::NoiseLockTime' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseTension) == 0x000148, "Member 'UParticleModuleBeamNoise::NoiseTension' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseTangentStrength) == 0x000150, "Member 'UParticleModuleBeamNoise::NoiseTangentStrength' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseTessellation) == 0x000180, "Member 'UParticleModuleBeamNoise::NoiseTessellation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, FrequencyDistance) == 0x000188, "Member 'UParticleModuleBeamNoise::FrequencyDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamNoise, NoiseScale) == 0x000190, "Member 'UParticleModuleBeamNoise::NoiseScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEngineCustomTimeStep \ +static_assert(alignof(UEngineCustomTimeStep) == 0x000008, "Wrong alignment on UEngineCustomTimeStep"); \ +static_assert(sizeof(UEngineCustomTimeStep) == 0x000028, "Wrong size on UEngineCustomTimeStep"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_FetchTimecode \ +static_assert(alignof(TimecodeProvider_FetchTimecode) == 0x000004, "Wrong alignment on TimecodeProvider_FetchTimecode"); \ +static_assert(sizeof(TimecodeProvider_FetchTimecode) == 0x000014, "Wrong size on TimecodeProvider_FetchTimecode"); \ +static_assert(offsetof(TimecodeProvider_FetchTimecode, OutFrameTime) == 0x000000, "Member 'TimecodeProvider_FetchTimecode::OutFrameTime' has a wrong offset!"); \ +static_assert(offsetof(TimecodeProvider_FetchTimecode, ReturnValue) == 0x000010, "Member 'TimecodeProvider_FetchTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetDelayedQualifiedFrameTime \ +static_assert(alignof(TimecodeProvider_GetDelayedQualifiedFrameTime) == 0x000004, "Wrong alignment on TimecodeProvider_GetDelayedQualifiedFrameTime"); \ +static_assert(sizeof(TimecodeProvider_GetDelayedQualifiedFrameTime) == 0x000010, "Wrong size on TimecodeProvider_GetDelayedQualifiedFrameTime"); \ +static_assert(offsetof(TimecodeProvider_GetDelayedQualifiedFrameTime, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetDelayedQualifiedFrameTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetDelayedTimecode \ +static_assert(alignof(TimecodeProvider_GetDelayedTimecode) == 0x000004, "Wrong alignment on TimecodeProvider_GetDelayedTimecode"); \ +static_assert(sizeof(TimecodeProvider_GetDelayedTimecode) == 0x000014, "Wrong size on TimecodeProvider_GetDelayedTimecode"); \ +static_assert(offsetof(TimecodeProvider_GetDelayedTimecode, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetDelayedTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetFrameRate \ +static_assert(alignof(TimecodeProvider_GetFrameRate) == 0x000004, "Wrong alignment on TimecodeProvider_GetFrameRate"); \ +static_assert(sizeof(TimecodeProvider_GetFrameRate) == 0x000008, "Wrong size on TimecodeProvider_GetFrameRate"); \ +static_assert(offsetof(TimecodeProvider_GetFrameRate, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetQualifiedFrameTime \ +static_assert(alignof(TimecodeProvider_GetQualifiedFrameTime) == 0x000004, "Wrong alignment on TimecodeProvider_GetQualifiedFrameTime"); \ +static_assert(sizeof(TimecodeProvider_GetQualifiedFrameTime) == 0x000010, "Wrong size on TimecodeProvider_GetQualifiedFrameTime"); \ +static_assert(offsetof(TimecodeProvider_GetQualifiedFrameTime, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetQualifiedFrameTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetSynchronizationState \ +static_assert(alignof(TimecodeProvider_GetSynchronizationState) == 0x000004, "Wrong alignment on TimecodeProvider_GetSynchronizationState"); \ +static_assert(sizeof(TimecodeProvider_GetSynchronizationState) == 0x000004, "Wrong size on TimecodeProvider_GetSynchronizationState"); \ +static_assert(offsetof(TimecodeProvider_GetSynchronizationState, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetSynchronizationState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimecodeProvider_GetTimecode \ +static_assert(alignof(TimecodeProvider_GetTimecode) == 0x000004, "Wrong alignment on TimecodeProvider_GetTimecode"); \ +static_assert(sizeof(TimecodeProvider_GetTimecode) == 0x000014, "Wrong size on TimecodeProvider_GetTimecode"); \ +static_assert(offsetof(TimecodeProvider_GetTimecode, ReturnValue) == 0x000000, "Member 'TimecodeProvider_GetTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTimecodeProvider \ +static_assert(alignof(UTimecodeProvider) == 0x000008, "Wrong alignment on UTimecodeProvider"); \ +static_assert(sizeof(UTimecodeProvider) == 0x000030, "Wrong size on UTimecodeProvider"); \ +static_assert(offsetof(UTimecodeProvider, FrameDelay) == 0x000028, "Member 'UTimecodeProvider::FrameDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEdGraph \ +static_assert(alignof(UEdGraph) == 0x000008, "Wrong alignment on UEdGraph"); \ +static_assert(sizeof(UEdGraph) == 0x000060, "Wrong size on UEdGraph"); \ +static_assert(offsetof(UEdGraph, Schema) == 0x000028, "Member 'UEdGraph::Schema' has a wrong offset!"); \ +static_assert(offsetof(UEdGraph, Nodes) == 0x000030, "Member 'UEdGraph::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDDY \ +static_assert(alignof(UMaterialExpressionDDY) == 0x000008, "Wrong alignment on UMaterialExpressionDDY"); \ +static_assert(sizeof(UMaterialExpressionDDY) == 0x0000D8, "Wrong size on UMaterialExpressionDDY"); \ +static_assert(offsetof(UMaterialExpressionDDY, Value) == 0x0000B0, "Member 'UMaterialExpressionDDY::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance) == 0x0000B0, "Wrong size on UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance"); \ + +#define DUMPER7_ASSERTS_GameStateBase_GetPlayerRespawnDelay \ +static_assert(alignof(GameStateBase_GetPlayerRespawnDelay) == 0x000008, "Wrong alignment on GameStateBase_GetPlayerRespawnDelay"); \ +static_assert(sizeof(GameStateBase_GetPlayerRespawnDelay) == 0x000010, "Wrong size on GameStateBase_GetPlayerRespawnDelay"); \ +static_assert(offsetof(GameStateBase_GetPlayerRespawnDelay, Controller) == 0x000000, "Member 'GameStateBase_GetPlayerRespawnDelay::Controller' has a wrong offset!"); \ +static_assert(offsetof(GameStateBase_GetPlayerRespawnDelay, ReturnValue) == 0x000008, "Member 'GameStateBase_GetPlayerRespawnDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameStateBase_GetPlayerStartTime \ +static_assert(alignof(GameStateBase_GetPlayerStartTime) == 0x000008, "Wrong alignment on GameStateBase_GetPlayerStartTime"); \ +static_assert(sizeof(GameStateBase_GetPlayerStartTime) == 0x000010, "Wrong size on GameStateBase_GetPlayerStartTime"); \ +static_assert(offsetof(GameStateBase_GetPlayerStartTime, Controller) == 0x000000, "Member 'GameStateBase_GetPlayerStartTime::Controller' has a wrong offset!"); \ +static_assert(offsetof(GameStateBase_GetPlayerStartTime, ReturnValue) == 0x000008, "Member 'GameStateBase_GetPlayerStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameStateBase_GetServerWorldTimeSeconds \ +static_assert(alignof(GameStateBase_GetServerWorldTimeSeconds) == 0x000008, "Wrong alignment on GameStateBase_GetServerWorldTimeSeconds"); \ +static_assert(sizeof(GameStateBase_GetServerWorldTimeSeconds) == 0x000008, "Wrong size on GameStateBase_GetServerWorldTimeSeconds"); \ +static_assert(offsetof(GameStateBase_GetServerWorldTimeSeconds, ReturnValue) == 0x000000, "Member 'GameStateBase_GetServerWorldTimeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameStateBase_HasBegunPlay \ +static_assert(alignof(GameStateBase_HasBegunPlay) == 0x000001, "Wrong alignment on GameStateBase_HasBegunPlay"); \ +static_assert(sizeof(GameStateBase_HasBegunPlay) == 0x000001, "Wrong size on GameStateBase_HasBegunPlay"); \ +static_assert(offsetof(GameStateBase_HasBegunPlay, ReturnValue) == 0x000000, "Member 'GameStateBase_HasBegunPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameStateBase_HasMatchEnded \ +static_assert(alignof(GameStateBase_HasMatchEnded) == 0x000001, "Wrong alignment on GameStateBase_HasMatchEnded"); \ +static_assert(sizeof(GameStateBase_HasMatchEnded) == 0x000001, "Wrong size on GameStateBase_HasMatchEnded"); \ +static_assert(offsetof(GameStateBase_HasMatchEnded, ReturnValue) == 0x000000, "Member 'GameStateBase_HasMatchEnded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameStateBase_HasMatchStarted \ +static_assert(alignof(GameStateBase_HasMatchStarted) == 0x000001, "Wrong alignment on GameStateBase_HasMatchStarted"); \ +static_assert(sizeof(GameStateBase_HasMatchStarted) == 0x000001, "Wrong size on GameStateBase_HasMatchStarted"); \ +static_assert(offsetof(GameStateBase_HasMatchStarted, ReturnValue) == 0x000000, "Member 'GameStateBase_HasMatchStarted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameStateBase \ +static_assert(alignof(AGameStateBase) == 0x000008, "Wrong alignment on AGameStateBase"); \ +static_assert(sizeof(AGameStateBase) == 0x0002F0, "Wrong size on AGameStateBase"); \ +static_assert(offsetof(AGameStateBase, GameModeClass) == 0x000298, "Member 'AGameStateBase::GameModeClass' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, AuthorityGameMode) == 0x0002A0, "Member 'AGameStateBase::AuthorityGameMode' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, SpectatorClass) == 0x0002A8, "Member 'AGameStateBase::SpectatorClass' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, PlayerArray) == 0x0002B0, "Member 'AGameStateBase::PlayerArray' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, bReplicatedHasBegunPlay) == 0x0002C0, "Member 'AGameStateBase::bReplicatedHasBegunPlay' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, ReplicatedWorldTimeSeconds) == 0x0002C4, "Member 'AGameStateBase::ReplicatedWorldTimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, ReplicatedWorldTimeSecondsDouble) == 0x0002C8, "Member 'AGameStateBase::ReplicatedWorldTimeSecondsDouble' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, ServerWorldTimeSecondsDelta) == 0x0002D0, "Member 'AGameStateBase::ServerWorldTimeSecondsDelta' has a wrong offset!"); \ +static_assert(offsetof(AGameStateBase, ServerWorldTimeSecondsUpdateFrequency) == 0x0002D4, "Member 'AGameStateBase::ServerWorldTimeSecondsUpdateFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameState \ +static_assert(alignof(AGameState) == 0x000008, "Wrong alignment on AGameState"); \ +static_assert(sizeof(AGameState) == 0x000310, "Wrong size on AGameState"); \ +static_assert(offsetof(AGameState, MatchState) == 0x0002F0, "Member 'AGameState::MatchState' has a wrong offset!"); \ +static_assert(offsetof(AGameState, PreviousMatchState) == 0x0002F8, "Member 'AGameState::PreviousMatchState' has a wrong offset!"); \ +static_assert(offsetof(AGameState, ElapsedTime) == 0x000300, "Member 'AGameState::ElapsedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDebugDrawComponent \ +static_assert(alignof(UDebugDrawComponent) == 0x000010, "Wrong alignment on UDebugDrawComponent"); \ +static_assert(sizeof(UDebugDrawComponent) == 0x0005C0, "Wrong size on UDebugDrawComponent"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleDirection \ +static_assert(alignof(UMaterialExpressionParticleDirection) == 0x000008, "Wrong alignment on UMaterialExpressionParticleDirection"); \ +static_assert(sizeof(UMaterialExpressionParticleDirection) == 0x0000B0, "Wrong size on UMaterialExpressionParticleDirection"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionShadingModel \ +static_assert(alignof(UMaterialExpressionShadingModel) == 0x000008, "Wrong alignment on UMaterialExpressionShadingModel"); \ +static_assert(sizeof(UMaterialExpressionShadingModel) == 0x0000B8, "Wrong size on UMaterialExpressionShadingModel"); \ +static_assert(offsetof(UMaterialExpressionShadingModel, ShadingModel) == 0x0000B0, "Member 'UMaterialExpressionShadingModel::ShadingModel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotify_GetDefaultTriggerWeightThreshold \ +static_assert(alignof(AnimNotify_GetDefaultTriggerWeightThreshold) == 0x000004, "Wrong alignment on AnimNotify_GetDefaultTriggerWeightThreshold"); \ +static_assert(sizeof(AnimNotify_GetDefaultTriggerWeightThreshold) == 0x000004, "Wrong size on AnimNotify_GetDefaultTriggerWeightThreshold"); \ +static_assert(offsetof(AnimNotify_GetDefaultTriggerWeightThreshold, ReturnValue) == 0x000000, "Member 'AnimNotify_GetDefaultTriggerWeightThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotify_GetNotifyName \ +static_assert(alignof(AnimNotify_GetNotifyName) == 0x000008, "Wrong alignment on AnimNotify_GetNotifyName"); \ +static_assert(sizeof(AnimNotify_GetNotifyName) == 0x000010, "Wrong size on AnimNotify_GetNotifyName"); \ +static_assert(offsetof(AnimNotify_GetNotifyName, ReturnValue) == 0x000000, "Member 'AnimNotify_GetNotifyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotify_Received_Notify \ +static_assert(alignof(AnimNotify_Received_Notify) == 0x000008, "Wrong alignment on AnimNotify_Received_Notify"); \ +static_assert(sizeof(AnimNotify_Received_Notify) == 0x000048, "Wrong size on AnimNotify_Received_Notify"); \ +static_assert(offsetof(AnimNotify_Received_Notify, MeshComp) == 0x000000, "Member 'AnimNotify_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotify_Received_Notify, Animation) == 0x000008, "Member 'AnimNotify_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotify_Received_Notify, EventReference) == 0x000010, "Member 'AnimNotify_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotify_Received_Notify, ReturnValue) == 0x000040, "Member 'AnimNotify_Received_Notify::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify \ +static_assert(alignof(UAnimNotify) == 0x000008, "Wrong alignment on UAnimNotify"); \ +static_assert(sizeof(UAnimNotify) == 0x000038, "Wrong size on UAnimNotify"); \ + +#define DUMPER7_ASSERTS_UDynamicBlueprintBinding \ +static_assert(alignof(UDynamicBlueprintBinding) == 0x000008, "Wrong alignment on UDynamicBlueprintBinding"); \ +static_assert(sizeof(UDynamicBlueprintBinding) == 0x000028, "Wrong size on UDynamicBlueprintBinding"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_GetDefaultTriggerWeightThreshold \ +static_assert(alignof(AnimNotifyState_GetDefaultTriggerWeightThreshold) == 0x000004, "Wrong alignment on AnimNotifyState_GetDefaultTriggerWeightThreshold"); \ +static_assert(sizeof(AnimNotifyState_GetDefaultTriggerWeightThreshold) == 0x000004, "Wrong size on AnimNotifyState_GetDefaultTriggerWeightThreshold"); \ +static_assert(offsetof(AnimNotifyState_GetDefaultTriggerWeightThreshold, ReturnValue) == 0x000000, "Member 'AnimNotifyState_GetDefaultTriggerWeightThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_GetNotifyName \ +static_assert(alignof(AnimNotifyState_GetNotifyName) == 0x000008, "Wrong alignment on AnimNotifyState_GetNotifyName"); \ +static_assert(sizeof(AnimNotifyState_GetNotifyName) == 0x000010, "Wrong size on AnimNotifyState_GetNotifyName"); \ +static_assert(offsetof(AnimNotifyState_GetNotifyName, ReturnValue) == 0x000000, "Member 'AnimNotifyState_GetNotifyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_Received_NotifyBegin \ +static_assert(alignof(AnimNotifyState_Received_NotifyBegin) == 0x000008, "Wrong alignment on AnimNotifyState_Received_NotifyBegin"); \ +static_assert(sizeof(AnimNotifyState_Received_NotifyBegin) == 0x000050, "Wrong size on AnimNotifyState_Received_NotifyBegin"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AnimNotifyState_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyBegin, Animation) == 0x000008, "Member 'AnimNotifyState_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AnimNotifyState_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AnimNotifyState_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AnimNotifyState_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_Received_NotifyEnd \ +static_assert(alignof(AnimNotifyState_Received_NotifyEnd) == 0x000008, "Wrong alignment on AnimNotifyState_Received_NotifyEnd"); \ +static_assert(sizeof(AnimNotifyState_Received_NotifyEnd) == 0x000048, "Wrong size on AnimNotifyState_Received_NotifyEnd"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AnimNotifyState_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyEnd, Animation) == 0x000008, "Member 'AnimNotifyState_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AnimNotifyState_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AnimNotifyState_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_Received_NotifyTick \ +static_assert(alignof(AnimNotifyState_Received_NotifyTick) == 0x000008, "Wrong alignment on AnimNotifyState_Received_NotifyTick"); \ +static_assert(sizeof(AnimNotifyState_Received_NotifyTick) == 0x000050, "Wrong size on AnimNotifyState_Received_NotifyTick"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyTick, MeshComp) == 0x000000, "Member 'AnimNotifyState_Received_NotifyTick::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyTick, Animation) == 0x000008, "Member 'AnimNotifyState_Received_NotifyTick::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyTick, FrameDeltaTime) == 0x000010, "Member 'AnimNotifyState_Received_NotifyTick::FrameDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyTick, EventReference) == 0x000018, "Member 'AnimNotifyState_Received_NotifyTick::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Received_NotifyTick, ReturnValue) == 0x000048, "Member 'AnimNotifyState_Received_NotifyTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState \ +static_assert(alignof(UAnimNotifyState) == 0x000008, "Wrong alignment on UAnimNotifyState"); \ +static_assert(sizeof(UAnimNotifyState) == 0x000030, "Wrong size on UAnimNotifyState"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleSpeed \ +static_assert(alignof(UMaterialExpressionParticleSpeed) == 0x000008, "Wrong alignment on UMaterialExpressionParticleSpeed"); \ +static_assert(sizeof(UMaterialExpressionParticleSpeed) == 0x0000B0, "Wrong size on UMaterialExpressionParticleSpeed"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleMotionBlurFade \ +static_assert(alignof(UMaterialExpressionParticleMotionBlurFade) == 0x000008, "Wrong alignment on UMaterialExpressionParticleMotionBlurFade"); \ +static_assert(sizeof(UMaterialExpressionParticleMotionBlurFade) == 0x0000B0, "Wrong size on UMaterialExpressionParticleMotionBlurFade"); \ + +#define DUMPER7_ASSERTS_ULevelInstanceEditorObject \ +static_assert(alignof(ULevelInstanceEditorObject) == 0x000008, "Wrong alignment on ULevelInstanceEditorObject"); \ +static_assert(sizeof(ULevelInstanceEditorObject) == 0x000028, "Wrong size on ULevelInstanceEditorObject"); \ + +#define DUMPER7_ASSERTS_MovementComponent_K2_MoveUpdatedComponent \ +static_assert(alignof(MovementComponent_K2_MoveUpdatedComponent) == 0x000008, "Wrong alignment on MovementComponent_K2_MoveUpdatedComponent"); \ +static_assert(sizeof(MovementComponent_K2_MoveUpdatedComponent) == 0x000120, "Wrong size on MovementComponent_K2_MoveUpdatedComponent"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, Delta) == 0x000000, "Member 'MovementComponent_K2_MoveUpdatedComponent::Delta' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, NewRotation) == 0x000018, "Member 'MovementComponent_K2_MoveUpdatedComponent::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, OutHit) == 0x000030, "Member 'MovementComponent_K2_MoveUpdatedComponent::OutHit' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, bSweep) == 0x000118, "Member 'MovementComponent_K2_MoveUpdatedComponent::bSweep' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, bTeleport) == 0x000119, "Member 'MovementComponent_K2_MoveUpdatedComponent::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_K2_MoveUpdatedComponent, ReturnValue) == 0x00011A, "Member 'MovementComponent_K2_MoveUpdatedComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_PhysicsVolumeChanged \ +static_assert(alignof(MovementComponent_PhysicsVolumeChanged) == 0x000008, "Wrong alignment on MovementComponent_PhysicsVolumeChanged"); \ +static_assert(sizeof(MovementComponent_PhysicsVolumeChanged) == 0x000008, "Wrong size on MovementComponent_PhysicsVolumeChanged"); \ +static_assert(offsetof(MovementComponent_PhysicsVolumeChanged, NewVolume) == 0x000000, "Member 'MovementComponent_PhysicsVolumeChanged::NewVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetPlaneConstraintAxisSetting \ +static_assert(alignof(MovementComponent_SetPlaneConstraintAxisSetting) == 0x000001, "Wrong alignment on MovementComponent_SetPlaneConstraintAxisSetting"); \ +static_assert(sizeof(MovementComponent_SetPlaneConstraintAxisSetting) == 0x000001, "Wrong size on MovementComponent_SetPlaneConstraintAxisSetting"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintAxisSetting, NewAxisSetting) == 0x000000, "Member 'MovementComponent_SetPlaneConstraintAxisSetting::NewAxisSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetPlaneConstraintEnabled \ +static_assert(alignof(MovementComponent_SetPlaneConstraintEnabled) == 0x000001, "Wrong alignment on MovementComponent_SetPlaneConstraintEnabled"); \ +static_assert(sizeof(MovementComponent_SetPlaneConstraintEnabled) == 0x000001, "Wrong size on MovementComponent_SetPlaneConstraintEnabled"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintEnabled, bEnabled) == 0x000000, "Member 'MovementComponent_SetPlaneConstraintEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetPlaneConstraintFromVectors \ +static_assert(alignof(MovementComponent_SetPlaneConstraintFromVectors) == 0x000008, "Wrong alignment on MovementComponent_SetPlaneConstraintFromVectors"); \ +static_assert(sizeof(MovementComponent_SetPlaneConstraintFromVectors) == 0x000030, "Wrong size on MovementComponent_SetPlaneConstraintFromVectors"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintFromVectors, Forward) == 0x000000, "Member 'MovementComponent_SetPlaneConstraintFromVectors::Forward' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintFromVectors, Up) == 0x000018, "Member 'MovementComponent_SetPlaneConstraintFromVectors::Up' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetPlaneConstraintNormal \ +static_assert(alignof(MovementComponent_SetPlaneConstraintNormal) == 0x000008, "Wrong alignment on MovementComponent_SetPlaneConstraintNormal"); \ +static_assert(sizeof(MovementComponent_SetPlaneConstraintNormal) == 0x000018, "Wrong size on MovementComponent_SetPlaneConstraintNormal"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintNormal, PlaneNormal) == 0x000000, "Member 'MovementComponent_SetPlaneConstraintNormal::PlaneNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetPlaneConstraintOrigin \ +static_assert(alignof(MovementComponent_SetPlaneConstraintOrigin) == 0x000008, "Wrong alignment on MovementComponent_SetPlaneConstraintOrigin"); \ +static_assert(sizeof(MovementComponent_SetPlaneConstraintOrigin) == 0x000018, "Wrong size on MovementComponent_SetPlaneConstraintOrigin"); \ +static_assert(offsetof(MovementComponent_SetPlaneConstraintOrigin, PlaneOrigin) == 0x000000, "Member 'MovementComponent_SetPlaneConstraintOrigin::PlaneOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_SetUpdatedComponent \ +static_assert(alignof(MovementComponent_SetUpdatedComponent) == 0x000008, "Wrong alignment on MovementComponent_SetUpdatedComponent"); \ +static_assert(sizeof(MovementComponent_SetUpdatedComponent) == 0x000008, "Wrong size on MovementComponent_SetUpdatedComponent"); \ +static_assert(offsetof(MovementComponent_SetUpdatedComponent, NewUpdatedComponent) == 0x000000, "Member 'MovementComponent_SetUpdatedComponent::NewUpdatedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_ConstrainDirectionToPlane \ +static_assert(alignof(MovementComponent_ConstrainDirectionToPlane) == 0x000008, "Wrong alignment on MovementComponent_ConstrainDirectionToPlane"); \ +static_assert(sizeof(MovementComponent_ConstrainDirectionToPlane) == 0x000030, "Wrong size on MovementComponent_ConstrainDirectionToPlane"); \ +static_assert(offsetof(MovementComponent_ConstrainDirectionToPlane, Direction) == 0x000000, "Member 'MovementComponent_ConstrainDirectionToPlane::Direction' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_ConstrainDirectionToPlane, ReturnValue) == 0x000018, "Member 'MovementComponent_ConstrainDirectionToPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_ConstrainLocationToPlane \ +static_assert(alignof(MovementComponent_ConstrainLocationToPlane) == 0x000008, "Wrong alignment on MovementComponent_ConstrainLocationToPlane"); \ +static_assert(sizeof(MovementComponent_ConstrainLocationToPlane) == 0x000030, "Wrong size on MovementComponent_ConstrainLocationToPlane"); \ +static_assert(offsetof(MovementComponent_ConstrainLocationToPlane, Location) == 0x000000, "Member 'MovementComponent_ConstrainLocationToPlane::Location' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_ConstrainLocationToPlane, ReturnValue) == 0x000018, "Member 'MovementComponent_ConstrainLocationToPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_ConstrainNormalToPlane \ +static_assert(alignof(MovementComponent_ConstrainNormalToPlane) == 0x000008, "Wrong alignment on MovementComponent_ConstrainNormalToPlane"); \ +static_assert(sizeof(MovementComponent_ConstrainNormalToPlane) == 0x000030, "Wrong size on MovementComponent_ConstrainNormalToPlane"); \ +static_assert(offsetof(MovementComponent_ConstrainNormalToPlane, Normal) == 0x000000, "Member 'MovementComponent_ConstrainNormalToPlane::Normal' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_ConstrainNormalToPlane, ReturnValue) == 0x000018, "Member 'MovementComponent_ConstrainNormalToPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetGravityZ \ +static_assert(alignof(MovementComponent_GetGravityZ) == 0x000004, "Wrong alignment on MovementComponent_GetGravityZ"); \ +static_assert(sizeof(MovementComponent_GetGravityZ) == 0x000004, "Wrong size on MovementComponent_GetGravityZ"); \ +static_assert(offsetof(MovementComponent_GetGravityZ, ReturnValue) == 0x000000, "Member 'MovementComponent_GetGravityZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetMaxSpeed \ +static_assert(alignof(MovementComponent_GetMaxSpeed) == 0x000004, "Wrong alignment on MovementComponent_GetMaxSpeed"); \ +static_assert(sizeof(MovementComponent_GetMaxSpeed) == 0x000004, "Wrong size on MovementComponent_GetMaxSpeed"); \ +static_assert(offsetof(MovementComponent_GetMaxSpeed, ReturnValue) == 0x000000, "Member 'MovementComponent_GetMaxSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetPhysicsVolume \ +static_assert(alignof(MovementComponent_GetPhysicsVolume) == 0x000008, "Wrong alignment on MovementComponent_GetPhysicsVolume"); \ +static_assert(sizeof(MovementComponent_GetPhysicsVolume) == 0x000008, "Wrong size on MovementComponent_GetPhysicsVolume"); \ +static_assert(offsetof(MovementComponent_GetPhysicsVolume, ReturnValue) == 0x000000, "Member 'MovementComponent_GetPhysicsVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetPlaneConstraintAxisSetting \ +static_assert(alignof(MovementComponent_GetPlaneConstraintAxisSetting) == 0x000001, "Wrong alignment on MovementComponent_GetPlaneConstraintAxisSetting"); \ +static_assert(sizeof(MovementComponent_GetPlaneConstraintAxisSetting) == 0x000001, "Wrong size on MovementComponent_GetPlaneConstraintAxisSetting"); \ +static_assert(offsetof(MovementComponent_GetPlaneConstraintAxisSetting, ReturnValue) == 0x000000, "Member 'MovementComponent_GetPlaneConstraintAxisSetting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetPlaneConstraintNormal \ +static_assert(alignof(MovementComponent_GetPlaneConstraintNormal) == 0x000008, "Wrong alignment on MovementComponent_GetPlaneConstraintNormal"); \ +static_assert(sizeof(MovementComponent_GetPlaneConstraintNormal) == 0x000018, "Wrong size on MovementComponent_GetPlaneConstraintNormal"); \ +static_assert(offsetof(MovementComponent_GetPlaneConstraintNormal, ReturnValue) == 0x000000, "Member 'MovementComponent_GetPlaneConstraintNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_GetPlaneConstraintOrigin \ +static_assert(alignof(MovementComponent_GetPlaneConstraintOrigin) == 0x000008, "Wrong alignment on MovementComponent_GetPlaneConstraintOrigin"); \ +static_assert(sizeof(MovementComponent_GetPlaneConstraintOrigin) == 0x000018, "Wrong size on MovementComponent_GetPlaneConstraintOrigin"); \ +static_assert(offsetof(MovementComponent_GetPlaneConstraintOrigin, ReturnValue) == 0x000000, "Member 'MovementComponent_GetPlaneConstraintOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovementComponent_IsExceedingMaxSpeed \ +static_assert(alignof(MovementComponent_IsExceedingMaxSpeed) == 0x000004, "Wrong alignment on MovementComponent_IsExceedingMaxSpeed"); \ +static_assert(sizeof(MovementComponent_IsExceedingMaxSpeed) == 0x000008, "Wrong size on MovementComponent_IsExceedingMaxSpeed"); \ +static_assert(offsetof(MovementComponent_IsExceedingMaxSpeed, MaxSpeed) == 0x000000, "Member 'MovementComponent_IsExceedingMaxSpeed::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(MovementComponent_IsExceedingMaxSpeed, ReturnValue) == 0x000004, "Member 'MovementComponent_IsExceedingMaxSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovementComponent \ +static_assert(alignof(UMovementComponent) == 0x000008, "Wrong alignment on UMovementComponent"); \ +static_assert(sizeof(UMovementComponent) == 0x000108, "Wrong size on UMovementComponent"); \ +static_assert(offsetof(UMovementComponent, UpdatedComponent) == 0x0000A0, "Member 'UMovementComponent::UpdatedComponent' has a wrong offset!"); \ +static_assert(offsetof(UMovementComponent, UpdatedPrimitive) == 0x0000A8, "Member 'UMovementComponent::UpdatedPrimitive' has a wrong offset!"); \ +static_assert(offsetof(UMovementComponent, Velocity) == 0x0000B8, "Member 'UMovementComponent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UMovementComponent, PlaneConstraintNormal) == 0x0000D0, "Member 'UMovementComponent::PlaneConstraintNormal' has a wrong offset!"); \ +static_assert(offsetof(UMovementComponent, PlaneConstraintOrigin) == 0x0000E8, "Member 'UMovementComponent::PlaneConstraintOrigin' has a wrong offset!"); \ +static_assert(offsetof(UMovementComponent, PlaneConstraintAxisSetting) == 0x000103, "Member 'UMovementComponent::PlaneConstraintAxisSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterpToMovementComponent_AddControlPointPosition \ +static_assert(alignof(InterpToMovementComponent_AddControlPointPosition) == 0x000008, "Wrong alignment on InterpToMovementComponent_AddControlPointPosition"); \ +static_assert(sizeof(InterpToMovementComponent_AddControlPointPosition) == 0x000020, "Wrong size on InterpToMovementComponent_AddControlPointPosition"); \ +static_assert(offsetof(InterpToMovementComponent_AddControlPointPosition, Pos) == 0x000000, "Member 'InterpToMovementComponent_AddControlPointPosition::Pos' has a wrong offset!"); \ +static_assert(offsetof(InterpToMovementComponent_AddControlPointPosition, bPositionIsRelative) == 0x000018, "Member 'InterpToMovementComponent_AddControlPointPosition::bPositionIsRelative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterpToMovementComponent_RestartMovement \ +static_assert(alignof(InterpToMovementComponent_RestartMovement) == 0x000004, "Wrong alignment on InterpToMovementComponent_RestartMovement"); \ +static_assert(sizeof(InterpToMovementComponent_RestartMovement) == 0x000004, "Wrong size on InterpToMovementComponent_RestartMovement"); \ +static_assert(offsetof(InterpToMovementComponent_RestartMovement, InitialDirection) == 0x000000, "Member 'InterpToMovementComponent_RestartMovement::InitialDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterpToMovementComponent_StopSimulating \ +static_assert(alignof(InterpToMovementComponent_StopSimulating) == 0x000008, "Wrong alignment on InterpToMovementComponent_StopSimulating"); \ +static_assert(sizeof(InterpToMovementComponent_StopSimulating) == 0x0000E8, "Wrong size on InterpToMovementComponent_StopSimulating"); \ +static_assert(offsetof(InterpToMovementComponent_StopSimulating, HitResult) == 0x000000, "Member 'InterpToMovementComponent_StopSimulating::HitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterpToMovementComponent \ +static_assert(alignof(UInterpToMovementComponent) == 0x000008, "Wrong alignment on UInterpToMovementComponent"); \ +static_assert(sizeof(UInterpToMovementComponent) == 0x0001B8, "Wrong size on UInterpToMovementComponent"); \ +static_assert(offsetof(UInterpToMovementComponent, Duration) == 0x000108, "Member 'UInterpToMovementComponent::Duration' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, bSweep) == 0x000110, "Member 'UInterpToMovementComponent::bSweep' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, TeleportType) == 0x000111, "Member 'UInterpToMovementComponent::TeleportType' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, BehaviourType) == 0x000112, "Member 'UInterpToMovementComponent::BehaviourType' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, bCheckIfStillInWorld) == 0x000113, "Member 'UInterpToMovementComponent::bCheckIfStillInWorld' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, OnInterpToReverse) == 0x000118, "Member 'UInterpToMovementComponent::OnInterpToReverse' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, OnInterpToStop) == 0x000128, "Member 'UInterpToMovementComponent::OnInterpToStop' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, OnWaitBeginDelegate) == 0x000138, "Member 'UInterpToMovementComponent::OnWaitBeginDelegate' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, OnWaitEndDelegate) == 0x000148, "Member 'UInterpToMovementComponent::OnWaitEndDelegate' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, OnResetDelegate) == 0x000158, "Member 'UInterpToMovementComponent::OnResetDelegate' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, MaxSimulationTimeStep) == 0x000168, "Member 'UInterpToMovementComponent::MaxSimulationTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, MaxSimulationIterations) == 0x00016C, "Member 'UInterpToMovementComponent::MaxSimulationIterations' has a wrong offset!"); \ +static_assert(offsetof(UInterpToMovementComponent, ControlPoints) == 0x000170, "Member 'UInterpToMovementComponent::ControlPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight \ +static_assert(alignof(SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight) == 0x000004, "Wrong alignment on SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight"); \ +static_assert(sizeof(SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight) == 0x000010, "Wrong size on SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight"); \ +static_assert(offsetof(SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight, AddPhysicsBlendWeight) == 0x000008, "Member 'SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight::AddPhysicsBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight, bSkipCustomPhysicsType) == 0x00000C, "Member 'SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight::bSkipCustomPhysicsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_AddForceToAllBodiesBelow \ +static_assert(alignof(SkeletalMeshComponent_AddForceToAllBodiesBelow) == 0x000008, "Wrong alignment on SkeletalMeshComponent_AddForceToAllBodiesBelow"); \ +static_assert(sizeof(SkeletalMeshComponent_AddForceToAllBodiesBelow) == 0x000028, "Wrong size on SkeletalMeshComponent_AddForceToAllBodiesBelow"); \ +static_assert(offsetof(SkeletalMeshComponent_AddForceToAllBodiesBelow, Force) == 0x000000, "Member 'SkeletalMeshComponent_AddForceToAllBodiesBelow::Force' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddForceToAllBodiesBelow, BoneName) == 0x000018, "Member 'SkeletalMeshComponent_AddForceToAllBodiesBelow::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddForceToAllBodiesBelow, bAccelChange) == 0x000020, "Member 'SkeletalMeshComponent_AddForceToAllBodiesBelow::bAccelChange' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddForceToAllBodiesBelow, bIncludeSelf) == 0x000021, "Member 'SkeletalMeshComponent_AddForceToAllBodiesBelow::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_AddImpulseToAllBodiesBelow \ +static_assert(alignof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow) == 0x000008, "Wrong alignment on SkeletalMeshComponent_AddImpulseToAllBodiesBelow"); \ +static_assert(sizeof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow) == 0x000028, "Wrong size on SkeletalMeshComponent_AddImpulseToAllBodiesBelow"); \ +static_assert(offsetof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow, Impulse) == 0x000000, "Member 'SkeletalMeshComponent_AddImpulseToAllBodiesBelow::Impulse' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow, BoneName) == 0x000018, "Member 'SkeletalMeshComponent_AddImpulseToAllBodiesBelow::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow, bVelChange) == 0x000020, "Member 'SkeletalMeshComponent_AddImpulseToAllBodiesBelow::bVelChange' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AddImpulseToAllBodiesBelow, bIncludeSelf) == 0x000021, "Member 'SkeletalMeshComponent_AddImpulseToAllBodiesBelow::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_AllowAnimCurveEvaluation \ +static_assert(alignof(SkeletalMeshComponent_AllowAnimCurveEvaluation) == 0x000004, "Wrong alignment on SkeletalMeshComponent_AllowAnimCurveEvaluation"); \ +static_assert(sizeof(SkeletalMeshComponent_AllowAnimCurveEvaluation) == 0x00000C, "Wrong size on SkeletalMeshComponent_AllowAnimCurveEvaluation"); \ +static_assert(offsetof(SkeletalMeshComponent_AllowAnimCurveEvaluation, NameOfCurve) == 0x000000, "Member 'SkeletalMeshComponent_AllowAnimCurveEvaluation::NameOfCurve' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_AllowAnimCurveEvaluation, bAllow) == 0x000008, "Member 'SkeletalMeshComponent_AllowAnimCurveEvaluation::bAllow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_BreakConstraint \ +static_assert(alignof(SkeletalMeshComponent_BreakConstraint) == 0x000008, "Wrong alignment on SkeletalMeshComponent_BreakConstraint"); \ +static_assert(sizeof(SkeletalMeshComponent_BreakConstraint) == 0x000038, "Wrong size on SkeletalMeshComponent_BreakConstraint"); \ +static_assert(offsetof(SkeletalMeshComponent_BreakConstraint, Impulse) == 0x000000, "Member 'SkeletalMeshComponent_BreakConstraint::Impulse' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_BreakConstraint, HitLocation) == 0x000018, "Member 'SkeletalMeshComponent_BreakConstraint::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_BreakConstraint, InBoneName) == 0x000030, "Member 'SkeletalMeshComponent_BreakConstraint::InBoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_FindConstraintBoneName \ +static_assert(alignof(SkeletalMeshComponent_FindConstraintBoneName) == 0x000004, "Wrong alignment on SkeletalMeshComponent_FindConstraintBoneName"); \ +static_assert(sizeof(SkeletalMeshComponent_FindConstraintBoneName) == 0x00000C, "Wrong size on SkeletalMeshComponent_FindConstraintBoneName"); \ +static_assert(offsetof(SkeletalMeshComponent_FindConstraintBoneName, ConstraintIndex) == 0x000000, "Member 'SkeletalMeshComponent_FindConstraintBoneName::ConstraintIndex' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_FindConstraintBoneName, ReturnValue) == 0x000004, "Member 'SkeletalMeshComponent_FindConstraintBoneName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAnimClass \ +static_assert(alignof(SkeletalMeshComponent_GetAnimClass) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetAnimClass"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAnimClass) == 0x000008, "Wrong size on SkeletalMeshComponent_GetAnimClass"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAnimClass, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAnimClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetBoneLinearVelocity \ +static_assert(alignof(SkeletalMeshComponent_GetBoneLinearVelocity) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetBoneLinearVelocity"); \ +static_assert(sizeof(SkeletalMeshComponent_GetBoneLinearVelocity) == 0x000020, "Wrong size on SkeletalMeshComponent_GetBoneLinearVelocity"); \ +static_assert(offsetof(SkeletalMeshComponent_GetBoneLinearVelocity, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetBoneLinearVelocity::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetBoneLinearVelocity, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_GetBoneLinearVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetConstraintByName \ +static_assert(alignof(SkeletalMeshComponent_GetConstraintByName) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetConstraintByName"); \ +static_assert(sizeof(SkeletalMeshComponent_GetConstraintByName) == 0x000018, "Wrong size on SkeletalMeshComponent_GetConstraintByName"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintByName, ConstraintName) == 0x000000, "Member 'SkeletalMeshComponent_GetConstraintByName::ConstraintName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintByName, bIncludesTerminated) == 0x000008, "Member 'SkeletalMeshComponent_GetConstraintByName::bIncludesTerminated' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintByName, ReturnValue) == 0x00000C, "Member 'SkeletalMeshComponent_GetConstraintByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetConstraints \ +static_assert(alignof(SkeletalMeshComponent_GetConstraints) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetConstraints"); \ +static_assert(sizeof(SkeletalMeshComponent_GetConstraints) == 0x000018, "Wrong size on SkeletalMeshComponent_GetConstraints"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraints, bIncludesTerminated) == 0x000000, "Member 'SkeletalMeshComponent_GetConstraints::bIncludesTerminated' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraints, OutConstraints) == 0x000008, "Member 'SkeletalMeshComponent_GetConstraints::OutConstraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetConstraintsFromBody \ +static_assert(alignof(SkeletalMeshComponent_GetConstraintsFromBody) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetConstraintsFromBody"); \ +static_assert(sizeof(SkeletalMeshComponent_GetConstraintsFromBody) == 0x000020, "Wrong size on SkeletalMeshComponent_GetConstraintsFromBody"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintsFromBody, BodyName) == 0x000000, "Member 'SkeletalMeshComponent_GetConstraintsFromBody::BodyName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintsFromBody, bParentConstraints) == 0x000008, "Member 'SkeletalMeshComponent_GetConstraintsFromBody::bParentConstraints' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintsFromBody, bChildConstraints) == 0x000009, "Member 'SkeletalMeshComponent_GetConstraintsFromBody::bChildConstraints' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintsFromBody, bIncludesTerminated) == 0x00000A, "Member 'SkeletalMeshComponent_GetConstraintsFromBody::bIncludesTerminated' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetConstraintsFromBody, OutConstraints) == 0x000010, "Member 'SkeletalMeshComponent_GetConstraintsFromBody::OutConstraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetCurrentJointAngles \ +static_assert(alignof(SkeletalMeshComponent_GetCurrentJointAngles) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetCurrentJointAngles"); \ +static_assert(sizeof(SkeletalMeshComponent_GetCurrentJointAngles) == 0x000014, "Wrong size on SkeletalMeshComponent_GetCurrentJointAngles"); \ +static_assert(offsetof(SkeletalMeshComponent_GetCurrentJointAngles, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetCurrentJointAngles::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetCurrentJointAngles, Swing1Angle) == 0x000008, "Member 'SkeletalMeshComponent_GetCurrentJointAngles::Swing1Angle' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetCurrentJointAngles, TwistAngle) == 0x00000C, "Member 'SkeletalMeshComponent_GetCurrentJointAngles::TwistAngle' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetCurrentJointAngles, Swing2Angle) == 0x000010, "Member 'SkeletalMeshComponent_GetCurrentJointAngles::Swing2Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetFloatAttribute \ +static_assert(alignof(SkeletalMeshComponent_GetFloatAttribute) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetFloatAttribute"); \ +static_assert(sizeof(SkeletalMeshComponent_GetFloatAttribute) == 0x00001C, "Wrong size on SkeletalMeshComponent_GetFloatAttribute"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetFloatAttribute::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetFloatAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, DefaultValue) == 0x000010, "Member 'SkeletalMeshComponent_GetFloatAttribute::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, OutValue) == 0x000014, "Member 'SkeletalMeshComponent_GetFloatAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, LookupType) == 0x000018, "Member 'SkeletalMeshComponent_GetFloatAttribute::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute, ReturnValue) == 0x000019, "Member 'SkeletalMeshComponent_GetFloatAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetFloatAttribute_Ref \ +static_assert(alignof(SkeletalMeshComponent_GetFloatAttribute_Ref) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetFloatAttribute_Ref"); \ +static_assert(sizeof(SkeletalMeshComponent_GetFloatAttribute_Ref) == 0x000018, "Wrong size on SkeletalMeshComponent_GetFloatAttribute_Ref"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute_Ref, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetFloatAttribute_Ref::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute_Ref, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetFloatAttribute_Ref::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute_Ref, OutValue) == 0x000010, "Member 'SkeletalMeshComponent_GetFloatAttribute_Ref::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute_Ref, LookupType) == 0x000014, "Member 'SkeletalMeshComponent_GetFloatAttribute_Ref::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetFloatAttribute_Ref, ReturnValue) == 0x000015, "Member 'SkeletalMeshComponent_GetFloatAttribute_Ref::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetIntegerAttribute \ +static_assert(alignof(SkeletalMeshComponent_GetIntegerAttribute) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetIntegerAttribute"); \ +static_assert(sizeof(SkeletalMeshComponent_GetIntegerAttribute) == 0x00001C, "Wrong size on SkeletalMeshComponent_GetIntegerAttribute"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetIntegerAttribute::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetIntegerAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, DefaultValue) == 0x000010, "Member 'SkeletalMeshComponent_GetIntegerAttribute::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, OutValue) == 0x000014, "Member 'SkeletalMeshComponent_GetIntegerAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, LookupType) == 0x000018, "Member 'SkeletalMeshComponent_GetIntegerAttribute::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute, ReturnValue) == 0x000019, "Member 'SkeletalMeshComponent_GetIntegerAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetIntegerAttribute_Ref \ +static_assert(alignof(SkeletalMeshComponent_GetIntegerAttribute_Ref) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetIntegerAttribute_Ref"); \ +static_assert(sizeof(SkeletalMeshComponent_GetIntegerAttribute_Ref) == 0x000018, "Wrong size on SkeletalMeshComponent_GetIntegerAttribute_Ref"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute_Ref, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetIntegerAttribute_Ref::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute_Ref, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetIntegerAttribute_Ref::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute_Ref, OutValue) == 0x000010, "Member 'SkeletalMeshComponent_GetIntegerAttribute_Ref::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute_Ref, LookupType) == 0x000014, "Member 'SkeletalMeshComponent_GetIntegerAttribute_Ref::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetIntegerAttribute_Ref, ReturnValue) == 0x000015, "Member 'SkeletalMeshComponent_GetIntegerAttribute_Ref::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetStringAttribute \ +static_assert(alignof(SkeletalMeshComponent_GetStringAttribute) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetStringAttribute"); \ +static_assert(sizeof(SkeletalMeshComponent_GetStringAttribute) == 0x000038, "Wrong size on SkeletalMeshComponent_GetStringAttribute"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetStringAttribute::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetStringAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, DefaultValue) == 0x000010, "Member 'SkeletalMeshComponent_GetStringAttribute::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, OutValue) == 0x000020, "Member 'SkeletalMeshComponent_GetStringAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, LookupType) == 0x000030, "Member 'SkeletalMeshComponent_GetStringAttribute::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute, ReturnValue) == 0x000031, "Member 'SkeletalMeshComponent_GetStringAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetStringAttribute_Ref \ +static_assert(alignof(SkeletalMeshComponent_GetStringAttribute_Ref) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetStringAttribute_Ref"); \ +static_assert(sizeof(SkeletalMeshComponent_GetStringAttribute_Ref) == 0x000028, "Wrong size on SkeletalMeshComponent_GetStringAttribute_Ref"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute_Ref, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetStringAttribute_Ref::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute_Ref, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetStringAttribute_Ref::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute_Ref, OutValue) == 0x000010, "Member 'SkeletalMeshComponent_GetStringAttribute_Ref::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute_Ref, LookupType) == 0x000020, "Member 'SkeletalMeshComponent_GetStringAttribute_Ref::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetStringAttribute_Ref, ReturnValue) == 0x000021, "Member 'SkeletalMeshComponent_GetStringAttribute_Ref::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetTransformAttribute \ +static_assert(alignof(SkeletalMeshComponent_GetTransformAttribute) == 0x000010, "Wrong alignment on SkeletalMeshComponent_GetTransformAttribute"); \ +static_assert(sizeof(SkeletalMeshComponent_GetTransformAttribute) == 0x0000E0, "Wrong size on SkeletalMeshComponent_GetTransformAttribute"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetTransformAttribute::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetTransformAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, DefaultValue) == 0x000010, "Member 'SkeletalMeshComponent_GetTransformAttribute::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, OutValue) == 0x000070, "Member 'SkeletalMeshComponent_GetTransformAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, LookupType) == 0x0000D0, "Member 'SkeletalMeshComponent_GetTransformAttribute::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute, ReturnValue) == 0x0000D1, "Member 'SkeletalMeshComponent_GetTransformAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetTransformAttribute_Ref \ +static_assert(alignof(SkeletalMeshComponent_GetTransformAttribute_Ref) == 0x000010, "Wrong alignment on SkeletalMeshComponent_GetTransformAttribute_Ref"); \ +static_assert(sizeof(SkeletalMeshComponent_GetTransformAttribute_Ref) == 0x000080, "Wrong size on SkeletalMeshComponent_GetTransformAttribute_Ref"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute_Ref, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetTransformAttribute_Ref::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute_Ref, AttributeName) == 0x000008, "Member 'SkeletalMeshComponent_GetTransformAttribute_Ref::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute_Ref, OutValue) == 0x000010, "Member 'SkeletalMeshComponent_GetTransformAttribute_Ref::OutValue' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute_Ref, LookupType) == 0x000070, "Member 'SkeletalMeshComponent_GetTransformAttribute_Ref::LookupType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTransformAttribute_Ref, ReturnValue) == 0x000071, "Member 'SkeletalMeshComponent_GetTransformAttribute_Ref::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_IsBodyGravityEnabled \ +static_assert(alignof(SkeletalMeshComponent_IsBodyGravityEnabled) == 0x000004, "Wrong alignment on SkeletalMeshComponent_IsBodyGravityEnabled"); \ +static_assert(sizeof(SkeletalMeshComponent_IsBodyGravityEnabled) == 0x00000C, "Wrong size on SkeletalMeshComponent_IsBodyGravityEnabled"); \ +static_assert(offsetof(SkeletalMeshComponent_IsBodyGravityEnabled, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_IsBodyGravityEnabled::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_IsBodyGravityEnabled, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_IsBodyGravityEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_LinkAnimClassLayers \ +static_assert(alignof(SkeletalMeshComponent_LinkAnimClassLayers) == 0x000008, "Wrong alignment on SkeletalMeshComponent_LinkAnimClassLayers"); \ +static_assert(sizeof(SkeletalMeshComponent_LinkAnimClassLayers) == 0x000008, "Wrong size on SkeletalMeshComponent_LinkAnimClassLayers"); \ +static_assert(offsetof(SkeletalMeshComponent_LinkAnimClassLayers, InClass) == 0x000000, "Member 'SkeletalMeshComponent_LinkAnimClassLayers::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_LinkAnimGraphByTag \ +static_assert(alignof(SkeletalMeshComponent_LinkAnimGraphByTag) == 0x000008, "Wrong alignment on SkeletalMeshComponent_LinkAnimGraphByTag"); \ +static_assert(sizeof(SkeletalMeshComponent_LinkAnimGraphByTag) == 0x000010, "Wrong size on SkeletalMeshComponent_LinkAnimGraphByTag"); \ +static_assert(offsetof(SkeletalMeshComponent_LinkAnimGraphByTag, InTag) == 0x000000, "Member 'SkeletalMeshComponent_LinkAnimGraphByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_LinkAnimGraphByTag, InClass) == 0x000008, "Member 'SkeletalMeshComponent_LinkAnimGraphByTag::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_OverrideAnimationData \ +static_assert(alignof(SkeletalMeshComponent_OverrideAnimationData) == 0x000008, "Wrong alignment on SkeletalMeshComponent_OverrideAnimationData"); \ +static_assert(sizeof(SkeletalMeshComponent_OverrideAnimationData) == 0x000018, "Wrong size on SkeletalMeshComponent_OverrideAnimationData"); \ +static_assert(offsetof(SkeletalMeshComponent_OverrideAnimationData, InAnimToPlay) == 0x000000, "Member 'SkeletalMeshComponent_OverrideAnimationData::InAnimToPlay' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_OverrideAnimationData, bIsLooping) == 0x000008, "Member 'SkeletalMeshComponent_OverrideAnimationData::bIsLooping' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_OverrideAnimationData, bIsPlaying) == 0x000009, "Member 'SkeletalMeshComponent_OverrideAnimationData::bIsPlaying' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_OverrideAnimationData, Position) == 0x00000C, "Member 'SkeletalMeshComponent_OverrideAnimationData::Position' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_OverrideAnimationData, PlayRate) == 0x000010, "Member 'SkeletalMeshComponent_OverrideAnimationData::PlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_Play \ +static_assert(alignof(SkeletalMeshComponent_Play) == 0x000001, "Wrong alignment on SkeletalMeshComponent_Play"); \ +static_assert(sizeof(SkeletalMeshComponent_Play) == 0x000001, "Wrong size on SkeletalMeshComponent_Play"); \ +static_assert(offsetof(SkeletalMeshComponent_Play, bLooping) == 0x000000, "Member 'SkeletalMeshComponent_Play::bLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_PlayAnimation \ +static_assert(alignof(SkeletalMeshComponent_PlayAnimation) == 0x000008, "Wrong alignment on SkeletalMeshComponent_PlayAnimation"); \ +static_assert(sizeof(SkeletalMeshComponent_PlayAnimation) == 0x000010, "Wrong size on SkeletalMeshComponent_PlayAnimation"); \ +static_assert(offsetof(SkeletalMeshComponent_PlayAnimation, NewAnimToPlay) == 0x000000, "Member 'SkeletalMeshComponent_PlayAnimation::NewAnimToPlay' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_PlayAnimation, bLooping) == 0x000008, "Member 'SkeletalMeshComponent_PlayAnimation::bLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_ResetAnimInstanceDynamics \ +static_assert(alignof(SkeletalMeshComponent_ResetAnimInstanceDynamics) == 0x000001, "Wrong alignment on SkeletalMeshComponent_ResetAnimInstanceDynamics"); \ +static_assert(sizeof(SkeletalMeshComponent_ResetAnimInstanceDynamics) == 0x000001, "Wrong size on SkeletalMeshComponent_ResetAnimInstanceDynamics"); \ +static_assert(offsetof(SkeletalMeshComponent_ResetAnimInstanceDynamics, InTeleportType) == 0x000000, "Member 'SkeletalMeshComponent_ResetAnimInstanceDynamics::InTeleportType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity) == 0x000028, "Wrong size on SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity, LinearVelocity) == 0x000008, "Member 'SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity::LinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity, bIncludeSelf) == 0x000020, "Member 'SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight) == 0x000010, "Wrong size on SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight, PhysicsBlendWeight) == 0x000008, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight::PhysicsBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight, bSkipCustomPhysicsType) == 0x00000C, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight::bSkipCustomPhysicsType' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight, bIncludeSelf) == 0x00000D, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled) == 0x00000C, "Wrong size on SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled, bDisabled) == 0x000008, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled::bDisabled' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled, bIncludeSelf) == 0x000009, "Member 'SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics) == 0x00000C, "Wrong size on SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics, bNewSimulate) == 0x000008, "Member 'SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics::bNewSimulate' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics, bIncludeSelf) == 0x000009, "Member 'SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight) == 0x000008, "Wrong size on SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight, PhysicsBlendWeight) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight::PhysicsBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight, bSkipCustomPhysicsType) == 0x000004, "Member 'SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight::bSkipCustomPhysicsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllBodiesSimulatePhysics \ +static_assert(alignof(SkeletalMeshComponent_SetAllBodiesSimulatePhysics) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllBodiesSimulatePhysics"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllBodiesSimulatePhysics) == 0x000001, "Wrong size on SkeletalMeshComponent_SetAllBodiesSimulatePhysics"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllBodiesSimulatePhysics, bNewSimulate) == 0x000000, "Member 'SkeletalMeshComponent_SetAllBodiesSimulatePhysics::bNewSimulate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllMotorsAngularDriveParams \ +static_assert(alignof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAllMotorsAngularDriveParams"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams) == 0x000010, "Wrong size on SkeletalMeshComponent_SetAllMotorsAngularDriveParams"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams, InSpring) == 0x000000, "Member 'SkeletalMeshComponent_SetAllMotorsAngularDriveParams::InSpring' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams, InDamping) == 0x000004, "Member 'SkeletalMeshComponent_SetAllMotorsAngularDriveParams::InDamping' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams, InForceLimit) == 0x000008, "Member 'SkeletalMeshComponent_SetAllMotorsAngularDriveParams::InForceLimit' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularDriveParams, bSkipCustomPhysicsType) == 0x00000C, "Member 'SkeletalMeshComponent_SetAllMotorsAngularDriveParams::bSkipCustomPhysicsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllMotorsAngularPositionDrive \ +static_assert(alignof(SkeletalMeshComponent_SetAllMotorsAngularPositionDrive) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllMotorsAngularPositionDrive"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllMotorsAngularPositionDrive) == 0x000003, "Wrong size on SkeletalMeshComponent_SetAllMotorsAngularPositionDrive"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularPositionDrive, bEnableSwingDrive) == 0x000000, "Member 'SkeletalMeshComponent_SetAllMotorsAngularPositionDrive::bEnableSwingDrive' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularPositionDrive, bEnableTwistDrive) == 0x000001, "Member 'SkeletalMeshComponent_SetAllMotorsAngularPositionDrive::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularPositionDrive, bSkipCustomPhysicsType) == 0x000002, "Member 'SkeletalMeshComponent_SetAllMotorsAngularPositionDrive::bSkipCustomPhysicsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive \ +static_assert(alignof(SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive) == 0x000003, "Wrong size on SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive, bEnableSwingDrive) == 0x000000, "Member 'SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive::bEnableSwingDrive' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive, bEnableTwistDrive) == 0x000001, "Member 'SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive, bSkipCustomPhysicsType) == 0x000002, "Member 'SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive::bSkipCustomPhysicsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllowAnimCurveEvaluation \ +static_assert(alignof(SkeletalMeshComponent_SetAllowAnimCurveEvaluation) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllowAnimCurveEvaluation"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllowAnimCurveEvaluation) == 0x000001, "Wrong size on SkeletalMeshComponent_SetAllowAnimCurveEvaluation"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowAnimCurveEvaluation, bInAllow) == 0x000000, "Member 'SkeletalMeshComponent_SetAllowAnimCurveEvaluation::bInAllow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllowClothActors \ +static_assert(alignof(SkeletalMeshComponent_SetAllowClothActors) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllowClothActors"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllowClothActors) == 0x000001, "Wrong size on SkeletalMeshComponent_SetAllowClothActors"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowClothActors, bInAllow) == 0x000000, "Member 'SkeletalMeshComponent_SetAllowClothActors::bInAllow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation \ +static_assert(alignof(SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation) == 0x000018, "Wrong size on SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation, List) == 0x000000, "Member 'SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation::List' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation, bAllow) == 0x000010, "Member 'SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation::bAllow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAllowRigidBodyAnimNode \ +static_assert(alignof(SkeletalMeshComponent_SetAllowRigidBodyAnimNode) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAllowRigidBodyAnimNode"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAllowRigidBodyAnimNode) == 0x000002, "Wrong size on SkeletalMeshComponent_SetAllowRigidBodyAnimNode"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowRigidBodyAnimNode, bInAllow) == 0x000000, "Member 'SkeletalMeshComponent_SetAllowRigidBodyAnimNode::bInAllow' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAllowRigidBodyAnimNode, bReinitAnim) == 0x000001, "Member 'SkeletalMeshComponent_SetAllowRigidBodyAnimNode::bReinitAnim' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAngularLimits \ +static_assert(alignof(SkeletalMeshComponent_SetAngularLimits) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetAngularLimits"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAngularLimits) == 0x000014, "Wrong size on SkeletalMeshComponent_SetAngularLimits"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAngularLimits, InBoneName) == 0x000000, "Member 'SkeletalMeshComponent_SetAngularLimits::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAngularLimits, Swing1LimitAngle) == 0x000008, "Member 'SkeletalMeshComponent_SetAngularLimits::Swing1LimitAngle' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAngularLimits, TwistLimitAngle) == 0x00000C, "Member 'SkeletalMeshComponent_SetAngularLimits::TwistLimitAngle' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAngularLimits, Swing2LimitAngle) == 0x000010, "Member 'SkeletalMeshComponent_SetAngularLimits::Swing2LimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAnimation \ +static_assert(alignof(SkeletalMeshComponent_SetAnimation) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SetAnimation"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAnimation) == 0x000008, "Wrong size on SkeletalMeshComponent_SetAnimation"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAnimation, NewAnimToPlay) == 0x000000, "Member 'SkeletalMeshComponent_SetAnimation::NewAnimToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAnimationMode \ +static_assert(alignof(SkeletalMeshComponent_SetAnimationMode) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetAnimationMode"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAnimationMode) == 0x000002, "Wrong size on SkeletalMeshComponent_SetAnimationMode"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAnimationMode, InAnimationMode) == 0x000000, "Member 'SkeletalMeshComponent_SetAnimationMode::InAnimationMode' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAnimationMode, bForceInitAnimScriptInstance) == 0x000001, "Member 'SkeletalMeshComponent_SetAnimationMode::bForceInitAnimScriptInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetAnimClass \ +static_assert(alignof(SkeletalMeshComponent_SetAnimClass) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SetAnimClass"); \ +static_assert(sizeof(SkeletalMeshComponent_SetAnimClass) == 0x000008, "Wrong size on SkeletalMeshComponent_SetAnimClass"); \ +static_assert(offsetof(SkeletalMeshComponent_SetAnimClass, NewClass) == 0x000000, "Member 'SkeletalMeshComponent_SetAnimClass::NewClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision \ +static_assert(alignof(SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision"); \ +static_assert(sizeof(SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision) == 0x00000C, "Wrong size on SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision"); \ +static_assert(offsetof(SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision, bNewNotifyRigidBodyCollision) == 0x000000, "Member 'SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision::bNewNotifyRigidBodyCollision' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision, BoneName) == 0x000004, "Member 'SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetClothMaxDistanceScale \ +static_assert(alignof(SkeletalMeshComponent_SetClothMaxDistanceScale) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetClothMaxDistanceScale"); \ +static_assert(sizeof(SkeletalMeshComponent_SetClothMaxDistanceScale) == 0x000004, "Wrong size on SkeletalMeshComponent_SetClothMaxDistanceScale"); \ +static_assert(offsetof(SkeletalMeshComponent_SetClothMaxDistanceScale, Scale) == 0x000000, "Member 'SkeletalMeshComponent_SetClothMaxDistanceScale::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetConstraintProfile \ +static_assert(alignof(SkeletalMeshComponent_SetConstraintProfile) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetConstraintProfile"); \ +static_assert(sizeof(SkeletalMeshComponent_SetConstraintProfile) == 0x000014, "Wrong size on SkeletalMeshComponent_SetConstraintProfile"); \ +static_assert(offsetof(SkeletalMeshComponent_SetConstraintProfile, JointName) == 0x000000, "Member 'SkeletalMeshComponent_SetConstraintProfile::JointName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetConstraintProfile, ProfileName) == 0x000008, "Member 'SkeletalMeshComponent_SetConstraintProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetConstraintProfile, bDefaultIfNotFound) == 0x000010, "Member 'SkeletalMeshComponent_SetConstraintProfile::bDefaultIfNotFound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetConstraintProfileForAll \ +static_assert(alignof(SkeletalMeshComponent_SetConstraintProfileForAll) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetConstraintProfileForAll"); \ +static_assert(sizeof(SkeletalMeshComponent_SetConstraintProfileForAll) == 0x00000C, "Wrong size on SkeletalMeshComponent_SetConstraintProfileForAll"); \ +static_assert(offsetof(SkeletalMeshComponent_SetConstraintProfileForAll, ProfileName) == 0x000000, "Member 'SkeletalMeshComponent_SetConstraintProfileForAll::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetConstraintProfileForAll, bDefaultIfNotFound) == 0x000008, "Member 'SkeletalMeshComponent_SetConstraintProfileForAll::bDefaultIfNotFound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetDisableAnimCurves \ +static_assert(alignof(SkeletalMeshComponent_SetDisableAnimCurves) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetDisableAnimCurves"); \ +static_assert(sizeof(SkeletalMeshComponent_SetDisableAnimCurves) == 0x000001, "Wrong size on SkeletalMeshComponent_SetDisableAnimCurves"); \ +static_assert(offsetof(SkeletalMeshComponent_SetDisableAnimCurves, bInDisableAnimCurves) == 0x000000, "Member 'SkeletalMeshComponent_SetDisableAnimCurves::bInDisableAnimCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetDisablePostProcessBlueprint \ +static_assert(alignof(SkeletalMeshComponent_SetDisablePostProcessBlueprint) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetDisablePostProcessBlueprint"); \ +static_assert(sizeof(SkeletalMeshComponent_SetDisablePostProcessBlueprint) == 0x000001, "Wrong size on SkeletalMeshComponent_SetDisablePostProcessBlueprint"); \ +static_assert(offsetof(SkeletalMeshComponent_SetDisablePostProcessBlueprint, bInDisablePostProcess) == 0x000000, "Member 'SkeletalMeshComponent_SetDisablePostProcessBlueprint::bInDisablePostProcess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetEnableBodyGravity \ +static_assert(alignof(SkeletalMeshComponent_SetEnableBodyGravity) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetEnableBodyGravity"); \ +static_assert(sizeof(SkeletalMeshComponent_SetEnableBodyGravity) == 0x00000C, "Wrong size on SkeletalMeshComponent_SetEnableBodyGravity"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnableBodyGravity, bEnableGravity) == 0x000000, "Member 'SkeletalMeshComponent_SetEnableBodyGravity::bEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnableBodyGravity, BoneName) == 0x000004, "Member 'SkeletalMeshComponent_SetEnableBodyGravity::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow \ +static_assert(alignof(SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow"); \ +static_assert(sizeof(SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow) == 0x000010, "Wrong size on SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow, bEnableGravity) == 0x000000, "Member 'SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow::bEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow, BoneName) == 0x000004, "Member 'SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow, bIncludeSelf) == 0x00000C, "Member 'SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetEnablePhysicsBlending \ +static_assert(alignof(SkeletalMeshComponent_SetEnablePhysicsBlending) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetEnablePhysicsBlending"); \ +static_assert(sizeof(SkeletalMeshComponent_SetEnablePhysicsBlending) == 0x000001, "Wrong size on SkeletalMeshComponent_SetEnablePhysicsBlending"); \ +static_assert(offsetof(SkeletalMeshComponent_SetEnablePhysicsBlending, bNewBlendPhysics) == 0x000000, "Member 'SkeletalMeshComponent_SetEnablePhysicsBlending::bNewBlendPhysics' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetMorphTarget \ +static_assert(alignof(SkeletalMeshComponent_SetMorphTarget) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetMorphTarget"); \ +static_assert(sizeof(SkeletalMeshComponent_SetMorphTarget) == 0x000010, "Wrong size on SkeletalMeshComponent_SetMorphTarget"); \ +static_assert(offsetof(SkeletalMeshComponent_SetMorphTarget, MorphTargetName) == 0x000000, "Member 'SkeletalMeshComponent_SetMorphTarget::MorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetMorphTarget, Value) == 0x000008, "Member 'SkeletalMeshComponent_SetMorphTarget::Value' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetMorphTarget, bRemoveZeroWeight) == 0x00000C, "Member 'SkeletalMeshComponent_SetMorphTarget::bRemoveZeroWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow \ +static_assert(alignof(SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow"); \ +static_assert(sizeof(SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow) == 0x000010, "Wrong size on SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow"); \ +static_assert(offsetof(SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow, bNewNotifyRigidBodyCollision) == 0x000000, "Member 'SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow::bNewNotifyRigidBodyCollision' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow, BoneName) == 0x000004, "Member 'SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow, bIncludeSelf) == 0x00000C, "Member 'SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetPhysicsBlendWeight \ +static_assert(alignof(SkeletalMeshComponent_SetPhysicsBlendWeight) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetPhysicsBlendWeight"); \ +static_assert(sizeof(SkeletalMeshComponent_SetPhysicsBlendWeight) == 0x000004, "Wrong size on SkeletalMeshComponent_SetPhysicsBlendWeight"); \ +static_assert(offsetof(SkeletalMeshComponent_SetPhysicsBlendWeight, PhysicsBlendWeight) == 0x000000, "Member 'SkeletalMeshComponent_SetPhysicsBlendWeight::PhysicsBlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetPlayRate \ +static_assert(alignof(SkeletalMeshComponent_SetPlayRate) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetPlayRate"); \ +static_assert(sizeof(SkeletalMeshComponent_SetPlayRate) == 0x000004, "Wrong size on SkeletalMeshComponent_SetPlayRate"); \ +static_assert(offsetof(SkeletalMeshComponent_SetPlayRate, Rate) == 0x000000, "Member 'SkeletalMeshComponent_SetPlayRate::Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetPosition \ +static_assert(alignof(SkeletalMeshComponent_SetPosition) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetPosition"); \ +static_assert(sizeof(SkeletalMeshComponent_SetPosition) == 0x000008, "Wrong size on SkeletalMeshComponent_SetPosition"); \ +static_assert(offsetof(SkeletalMeshComponent_SetPosition, InPos) == 0x000000, "Member 'SkeletalMeshComponent_SetPosition::InPos' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_SetPosition, bFireNotifies) == 0x000004, "Member 'SkeletalMeshComponent_SetPosition::bFireNotifies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetSkeletalMeshAsset \ +static_assert(alignof(SkeletalMeshComponent_SetSkeletalMeshAsset) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SetSkeletalMeshAsset"); \ +static_assert(sizeof(SkeletalMeshComponent_SetSkeletalMeshAsset) == 0x000008, "Wrong size on SkeletalMeshComponent_SetSkeletalMeshAsset"); \ +static_assert(offsetof(SkeletalMeshComponent_SetSkeletalMeshAsset, NewMesh) == 0x000000, "Member 'SkeletalMeshComponent_SetSkeletalMeshAsset::NewMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetTeleportDistanceThreshold \ +static_assert(alignof(SkeletalMeshComponent_SetTeleportDistanceThreshold) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetTeleportDistanceThreshold"); \ +static_assert(sizeof(SkeletalMeshComponent_SetTeleportDistanceThreshold) == 0x000004, "Wrong size on SkeletalMeshComponent_SetTeleportDistanceThreshold"); \ +static_assert(offsetof(SkeletalMeshComponent_SetTeleportDistanceThreshold, Threshold) == 0x000000, "Member 'SkeletalMeshComponent_SetTeleportDistanceThreshold::Threshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetTeleportRotationThreshold \ +static_assert(alignof(SkeletalMeshComponent_SetTeleportRotationThreshold) == 0x000004, "Wrong alignment on SkeletalMeshComponent_SetTeleportRotationThreshold"); \ +static_assert(sizeof(SkeletalMeshComponent_SetTeleportRotationThreshold) == 0x000004, "Wrong size on SkeletalMeshComponent_SetTeleportRotationThreshold"); \ +static_assert(offsetof(SkeletalMeshComponent_SetTeleportRotationThreshold, Threshold) == 0x000000, "Member 'SkeletalMeshComponent_SetTeleportRotationThreshold::Threshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetUpdateAnimationInEditor \ +static_assert(alignof(SkeletalMeshComponent_SetUpdateAnimationInEditor) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetUpdateAnimationInEditor"); \ +static_assert(sizeof(SkeletalMeshComponent_SetUpdateAnimationInEditor) == 0x000001, "Wrong size on SkeletalMeshComponent_SetUpdateAnimationInEditor"); \ +static_assert(offsetof(SkeletalMeshComponent_SetUpdateAnimationInEditor, NewUpdateState) == 0x000000, "Member 'SkeletalMeshComponent_SetUpdateAnimationInEditor::NewUpdateState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SetUpdateClothInEditor \ +static_assert(alignof(SkeletalMeshComponent_SetUpdateClothInEditor) == 0x000001, "Wrong alignment on SkeletalMeshComponent_SetUpdateClothInEditor"); \ +static_assert(sizeof(SkeletalMeshComponent_SetUpdateClothInEditor) == 0x000001, "Wrong size on SkeletalMeshComponent_SetUpdateClothInEditor"); \ +static_assert(offsetof(SkeletalMeshComponent_SetUpdateClothInEditor, NewUpdateState) == 0x000000, "Member 'SkeletalMeshComponent_SetUpdateClothInEditor::NewUpdateState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_SnapshotPose \ +static_assert(alignof(SkeletalMeshComponent_SnapshotPose) == 0x000008, "Wrong alignment on SkeletalMeshComponent_SnapshotPose"); \ +static_assert(sizeof(SkeletalMeshComponent_SnapshotPose) == 0x000038, "Wrong size on SkeletalMeshComponent_SnapshotPose"); \ +static_assert(offsetof(SkeletalMeshComponent_SnapshotPose, Snapshot) == 0x000000, "Member 'SkeletalMeshComponent_SnapshotPose::Snapshot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_TermBodiesBelow \ +static_assert(alignof(SkeletalMeshComponent_TermBodiesBelow) == 0x000004, "Wrong alignment on SkeletalMeshComponent_TermBodiesBelow"); \ +static_assert(sizeof(SkeletalMeshComponent_TermBodiesBelow) == 0x000008, "Wrong size on SkeletalMeshComponent_TermBodiesBelow"); \ +static_assert(offsetof(SkeletalMeshComponent_TermBodiesBelow, ParentBoneName) == 0x000000, "Member 'SkeletalMeshComponent_TermBodiesBelow::ParentBoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent \ +static_assert(alignof(SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent) == 0x000001, "Wrong alignment on SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent"); \ +static_assert(sizeof(SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent) == 0x000001, "Wrong size on SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent"); \ +static_assert(offsetof(SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent, bRestoreSimulationSpace) == 0x000000, "Member 'SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent::bRestoreSimulationSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_UnlinkAnimClassLayers \ +static_assert(alignof(SkeletalMeshComponent_UnlinkAnimClassLayers) == 0x000008, "Wrong alignment on SkeletalMeshComponent_UnlinkAnimClassLayers"); \ +static_assert(sizeof(SkeletalMeshComponent_UnlinkAnimClassLayers) == 0x000008, "Wrong size on SkeletalMeshComponent_UnlinkAnimClassLayers"); \ +static_assert(offsetof(SkeletalMeshComponent_UnlinkAnimClassLayers, InClass) == 0x000000, "Member 'SkeletalMeshComponent_UnlinkAnimClassLayers::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAllowClothActors \ +static_assert(alignof(SkeletalMeshComponent_GetAllowClothActors) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetAllowClothActors"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAllowClothActors) == 0x000001, "Wrong size on SkeletalMeshComponent_GetAllowClothActors"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAllowClothActors, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAllowClothActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAllowedAnimCurveEvaluate \ +static_assert(alignof(SkeletalMeshComponent_GetAllowedAnimCurveEvaluate) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetAllowedAnimCurveEvaluate"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAllowedAnimCurveEvaluate) == 0x000001, "Wrong size on SkeletalMeshComponent_GetAllowedAnimCurveEvaluate"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAllowedAnimCurveEvaluate, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAllowedAnimCurveEvaluate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAllowRigidBodyAnimNode \ +static_assert(alignof(SkeletalMeshComponent_GetAllowRigidBodyAnimNode) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetAllowRigidBodyAnimNode"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAllowRigidBodyAnimNode) == 0x000001, "Wrong size on SkeletalMeshComponent_GetAllowRigidBodyAnimNode"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAllowRigidBodyAnimNode, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAllowRigidBodyAnimNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAnimationMode \ +static_assert(alignof(SkeletalMeshComponent_GetAnimationMode) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetAnimationMode"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAnimationMode) == 0x000001, "Wrong size on SkeletalMeshComponent_GetAnimationMode"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAnimationMode, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAnimationMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetAnimInstance \ +static_assert(alignof(SkeletalMeshComponent_GetAnimInstance) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetAnimInstance"); \ +static_assert(sizeof(SkeletalMeshComponent_GetAnimInstance) == 0x000008, "Wrong size on SkeletalMeshComponent_GetAnimInstance"); \ +static_assert(offsetof(SkeletalMeshComponent_GetAnimInstance, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetAnimInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetBoneMass \ +static_assert(alignof(SkeletalMeshComponent_GetBoneMass) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetBoneMass"); \ +static_assert(sizeof(SkeletalMeshComponent_GetBoneMass) == 0x000010, "Wrong size on SkeletalMeshComponent_GetBoneMass"); \ +static_assert(offsetof(SkeletalMeshComponent_GetBoneMass, BoneName) == 0x000000, "Member 'SkeletalMeshComponent_GetBoneMass::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetBoneMass, bScaleMass) == 0x000008, "Member 'SkeletalMeshComponent_GetBoneMass::bScaleMass' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetBoneMass, ReturnValue) == 0x00000C, "Member 'SkeletalMeshComponent_GetBoneMass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetClothingSimulationInteractor \ +static_assert(alignof(SkeletalMeshComponent_GetClothingSimulationInteractor) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetClothingSimulationInteractor"); \ +static_assert(sizeof(SkeletalMeshComponent_GetClothingSimulationInteractor) == 0x000008, "Wrong size on SkeletalMeshComponent_GetClothingSimulationInteractor"); \ +static_assert(offsetof(SkeletalMeshComponent_GetClothingSimulationInteractor, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetClothingSimulationInteractor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetClothMaxDistanceScale \ +static_assert(alignof(SkeletalMeshComponent_GetClothMaxDistanceScale) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetClothMaxDistanceScale"); \ +static_assert(sizeof(SkeletalMeshComponent_GetClothMaxDistanceScale) == 0x000004, "Wrong size on SkeletalMeshComponent_GetClothMaxDistanceScale"); \ +static_assert(offsetof(SkeletalMeshComponent_GetClothMaxDistanceScale, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetClothMaxDistanceScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetDisableAnimCurves \ +static_assert(alignof(SkeletalMeshComponent_GetDisableAnimCurves) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetDisableAnimCurves"); \ +static_assert(sizeof(SkeletalMeshComponent_GetDisableAnimCurves) == 0x000001, "Wrong size on SkeletalMeshComponent_GetDisableAnimCurves"); \ +static_assert(offsetof(SkeletalMeshComponent_GetDisableAnimCurves, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetDisableAnimCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetDisablePostProcessBlueprint \ +static_assert(alignof(SkeletalMeshComponent_GetDisablePostProcessBlueprint) == 0x000001, "Wrong alignment on SkeletalMeshComponent_GetDisablePostProcessBlueprint"); \ +static_assert(sizeof(SkeletalMeshComponent_GetDisablePostProcessBlueprint) == 0x000001, "Wrong size on SkeletalMeshComponent_GetDisablePostProcessBlueprint"); \ +static_assert(offsetof(SkeletalMeshComponent_GetDisablePostProcessBlueprint, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetDisablePostProcessBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag \ +static_assert(alignof(SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag"); \ +static_assert(sizeof(SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag) == 0x000010, "Wrong size on SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag, InTag) == 0x000000, "Member 'SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag \ +static_assert(alignof(SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag"); \ +static_assert(sizeof(SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag) == 0x000018, "Wrong size on SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag, InTag) == 0x000000, "Member 'SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag, OutLinkedInstances) == 0x000008, "Member 'SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag::OutLinkedInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass \ +static_assert(alignof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass"); \ +static_assert(sizeof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass) == 0x000010, "Wrong size on SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass, InClass) == 0x000000, "Member 'SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup \ +static_assert(alignof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup"); \ +static_assert(sizeof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup) == 0x000010, "Wrong size on SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup, InGroup) == 0x000000, "Member 'SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup::InGroup' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetMorphTarget \ +static_assert(alignof(SkeletalMeshComponent_GetMorphTarget) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetMorphTarget"); \ +static_assert(sizeof(SkeletalMeshComponent_GetMorphTarget) == 0x00000C, "Wrong size on SkeletalMeshComponent_GetMorphTarget"); \ +static_assert(offsetof(SkeletalMeshComponent_GetMorphTarget, MorphTargetName) == 0x000000, "Member 'SkeletalMeshComponent_GetMorphTarget::MorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_GetMorphTarget, ReturnValue) == 0x000008, "Member 'SkeletalMeshComponent_GetMorphTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetPlayRate \ +static_assert(alignof(SkeletalMeshComponent_GetPlayRate) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetPlayRate"); \ +static_assert(sizeof(SkeletalMeshComponent_GetPlayRate) == 0x000004, "Wrong size on SkeletalMeshComponent_GetPlayRate"); \ +static_assert(offsetof(SkeletalMeshComponent_GetPlayRate, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetPosition \ +static_assert(alignof(SkeletalMeshComponent_GetPosition) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetPosition"); \ +static_assert(sizeof(SkeletalMeshComponent_GetPosition) == 0x000004, "Wrong size on SkeletalMeshComponent_GetPosition"); \ +static_assert(offsetof(SkeletalMeshComponent_GetPosition, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetPostProcessInstance \ +static_assert(alignof(SkeletalMeshComponent_GetPostProcessInstance) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetPostProcessInstance"); \ +static_assert(sizeof(SkeletalMeshComponent_GetPostProcessInstance) == 0x000008, "Wrong size on SkeletalMeshComponent_GetPostProcessInstance"); \ +static_assert(offsetof(SkeletalMeshComponent_GetPostProcessInstance, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetPostProcessInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetSkeletalCenterOfMass \ +static_assert(alignof(SkeletalMeshComponent_GetSkeletalCenterOfMass) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetSkeletalCenterOfMass"); \ +static_assert(sizeof(SkeletalMeshComponent_GetSkeletalCenterOfMass) == 0x000018, "Wrong size on SkeletalMeshComponent_GetSkeletalCenterOfMass"); \ +static_assert(offsetof(SkeletalMeshComponent_GetSkeletalCenterOfMass, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetSkeletalCenterOfMass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetSkeletalMeshAsset \ +static_assert(alignof(SkeletalMeshComponent_GetSkeletalMeshAsset) == 0x000008, "Wrong alignment on SkeletalMeshComponent_GetSkeletalMeshAsset"); \ +static_assert(sizeof(SkeletalMeshComponent_GetSkeletalMeshAsset) == 0x000008, "Wrong size on SkeletalMeshComponent_GetSkeletalMeshAsset"); \ +static_assert(offsetof(SkeletalMeshComponent_GetSkeletalMeshAsset, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetSkeletalMeshAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetTeleportDistanceThreshold \ +static_assert(alignof(SkeletalMeshComponent_GetTeleportDistanceThreshold) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetTeleportDistanceThreshold"); \ +static_assert(sizeof(SkeletalMeshComponent_GetTeleportDistanceThreshold) == 0x000004, "Wrong size on SkeletalMeshComponent_GetTeleportDistanceThreshold"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTeleportDistanceThreshold, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetTeleportDistanceThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_GetTeleportRotationThreshold \ +static_assert(alignof(SkeletalMeshComponent_GetTeleportRotationThreshold) == 0x000004, "Wrong alignment on SkeletalMeshComponent_GetTeleportRotationThreshold"); \ +static_assert(sizeof(SkeletalMeshComponent_GetTeleportRotationThreshold) == 0x000004, "Wrong size on SkeletalMeshComponent_GetTeleportRotationThreshold"); \ +static_assert(offsetof(SkeletalMeshComponent_GetTeleportRotationThreshold, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_GetTeleportRotationThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_HasValidAnimationInstance \ +static_assert(alignof(SkeletalMeshComponent_HasValidAnimationInstance) == 0x000001, "Wrong alignment on SkeletalMeshComponent_HasValidAnimationInstance"); \ +static_assert(sizeof(SkeletalMeshComponent_HasValidAnimationInstance) == 0x000001, "Wrong size on SkeletalMeshComponent_HasValidAnimationInstance"); \ +static_assert(offsetof(SkeletalMeshComponent_HasValidAnimationInstance, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_HasValidAnimationInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_IsClothingSimulationSuspended \ +static_assert(alignof(SkeletalMeshComponent_IsClothingSimulationSuspended) == 0x000001, "Wrong alignment on SkeletalMeshComponent_IsClothingSimulationSuspended"); \ +static_assert(sizeof(SkeletalMeshComponent_IsClothingSimulationSuspended) == 0x000001, "Wrong size on SkeletalMeshComponent_IsClothingSimulationSuspended"); \ +static_assert(offsetof(SkeletalMeshComponent_IsClothingSimulationSuspended, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_IsClothingSimulationSuspended::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_IsPlaying \ +static_assert(alignof(SkeletalMeshComponent_IsPlaying) == 0x000001, "Wrong alignment on SkeletalMeshComponent_IsPlaying"); \ +static_assert(sizeof(SkeletalMeshComponent_IsPlaying) == 0x000001, "Wrong size on SkeletalMeshComponent_IsPlaying"); \ +static_assert(offsetof(SkeletalMeshComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'SkeletalMeshComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset \ +static_assert(alignof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset) == 0x000008, "Wrong alignment on SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset"); \ +static_assert(sizeof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset) == 0x000058, "Wrong size on SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, WorldPosition) == 0x000000, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, ClosestWorldPosition) == 0x000018, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::ClosestWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, Normal) == 0x000030, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::Normal' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, BoneName) == 0x000048, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::BoneName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, Distance) == 0x000050, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::Distance' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset, ReturnValue) == 0x000054, "Member 'SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalMeshComponent \ +static_assert(alignof(USkeletalMeshComponent) == 0x000010, "Wrong alignment on USkeletalMeshComponent"); \ +static_assert(sizeof(USkeletalMeshComponent) == 0x000FA0, "Wrong size on USkeletalMeshComponent"); \ +static_assert(offsetof(USkeletalMeshComponent, SkeletalMeshAsset) == 0x0008F0, "Member 'USkeletalMeshComponent::SkeletalMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, AnimBlueprintGeneratedClass) == 0x0008F8, "Member 'USkeletalMeshComponent::AnimBlueprintGeneratedClass' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, AnimClass) == 0x000900, "Member 'USkeletalMeshComponent::AnimClass' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, AnimScriptInstance) == 0x000908, "Member 'USkeletalMeshComponent::AnimScriptInstance' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, PostProcessAnimInstance) == 0x000910, "Member 'USkeletalMeshComponent::PostProcessAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, AnimationData) == 0x000918, "Member 'USkeletalMeshComponent::AnimationData' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, RootBoneTranslation) == 0x000940, "Member 'USkeletalMeshComponent::RootBoneTranslation' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, LineCheckBoundsScale) == 0x000958, "Member 'USkeletalMeshComponent::LineCheckBoundsScale' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, LinkedInstances) == 0x000990, "Member 'USkeletalMeshComponent::LinkedInstances' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, CachedBoneSpaceTransforms) == 0x0009B0, "Member 'USkeletalMeshComponent::CachedBoneSpaceTransforms' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, CachedComponentSpaceTransforms) == 0x0009C0, "Member 'USkeletalMeshComponent::CachedComponentSpaceTransforms' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, GlobalAnimRateScale) == 0x000A70, "Member 'USkeletalMeshComponent::GlobalAnimRateScale' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, KinematicBonesUpdateType) == 0x000A74, "Member 'USkeletalMeshComponent::KinematicBonesUpdateType' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, PhysicsTransformUpdateMode) == 0x000A75, "Member 'USkeletalMeshComponent::PhysicsTransformUpdateMode' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, AnimationMode) == 0x000A77, "Member 'USkeletalMeshComponent::AnimationMode' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, CachedAnimCurveUidVersion) == 0x000A84, "Member 'USkeletalMeshComponent::CachedAnimCurveUidVersion' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, ClothBlendWeight) == 0x000A88, "Member 'USkeletalMeshComponent::ClothBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, bWaitForParallelClothTask) == 0x000A8C, "Member 'USkeletalMeshComponent::bWaitForParallelClothTask' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, bFilteredAnimCurvesIsAllowList) == 0x000A8D, "Member 'USkeletalMeshComponent::bFilteredAnimCurvesIsAllowList' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, CachedMeshCurveMetaDataVersion) == 0x000A8E, "Member 'USkeletalMeshComponent::CachedMeshCurveMetaDataVersion' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, FilteredAnimCurves) == 0x000A90, "Member 'USkeletalMeshComponent::FilteredAnimCurves' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, BodySetup) == 0x000AA0, "Member 'USkeletalMeshComponent::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, ClothMaxDistanceScale) == 0x000AAC, "Member 'USkeletalMeshComponent::ClothMaxDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, OnConstraintBroken) == 0x000AB0, "Member 'USkeletalMeshComponent::OnConstraintBroken' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, OnPlasticDeformation) == 0x000AC0, "Member 'USkeletalMeshComponent::OnPlasticDeformation' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, ClothingSimulationFactory) == 0x000AD0, "Member 'USkeletalMeshComponent::ClothingSimulationFactory' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, TeleportDistanceThreshold) == 0x000BD8, "Member 'USkeletalMeshComponent::TeleportDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, TeleportRotationThreshold) == 0x000BDC, "Member 'USkeletalMeshComponent::TeleportRotationThreshold' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, LastPoseTickFrame) == 0x000BE8, "Member 'USkeletalMeshComponent::LastPoseTickFrame' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, ClothingInteractor) == 0x000C80, "Member 'USkeletalMeshComponent::ClothingInteractor' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshComponent, OnAnimInitialized) == 0x000D40, "Member 'USkeletalMeshComponent::OnAnimInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSetMaterialAttributes \ +static_assert(alignof(UMaterialExpressionSetMaterialAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionSetMaterialAttributes"); \ +static_assert(sizeof(UMaterialExpressionSetMaterialAttributes) == 0x0000D0, "Wrong size on UMaterialExpressionSetMaterialAttributes"); \ +static_assert(offsetof(UMaterialExpressionSetMaterialAttributes, Inputs) == 0x0000B0, "Member 'UMaterialExpressionSetMaterialAttributes::Inputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSetMaterialAttributes, AttributeSetTypes) == 0x0000C0, "Member 'UMaterialExpressionSetMaterialAttributes::AttributeSetTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_BlueprintThreadSafeUpdateAnimation \ +static_assert(alignof(AnimInstance_BlueprintThreadSafeUpdateAnimation) == 0x000004, "Wrong alignment on AnimInstance_BlueprintThreadSafeUpdateAnimation"); \ +static_assert(sizeof(AnimInstance_BlueprintThreadSafeUpdateAnimation) == 0x000004, "Wrong size on AnimInstance_BlueprintThreadSafeUpdateAnimation"); \ +static_assert(offsetof(AnimInstance_BlueprintThreadSafeUpdateAnimation, DeltaTime) == 0x000000, "Member 'AnimInstance_BlueprintThreadSafeUpdateAnimation::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_BlueprintUpdateAnimation \ +static_assert(alignof(AnimInstance_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimInstance_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimInstance_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimInstance_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimInstance_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimInstance_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_ClearTransitionEvents \ +static_assert(alignof(AnimInstance_ClearTransitionEvents) == 0x000004, "Wrong alignment on AnimInstance_ClearTransitionEvents"); \ +static_assert(sizeof(AnimInstance_ClearTransitionEvents) == 0x000008, "Wrong size on AnimInstance_ClearTransitionEvents"); \ +static_assert(offsetof(AnimInstance_ClearTransitionEvents, EventName) == 0x000000, "Member 'AnimInstance_ClearTransitionEvents::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetCurrentStateName \ +static_assert(alignof(AnimInstance_GetCurrentStateName) == 0x000004, "Wrong alignment on AnimInstance_GetCurrentStateName"); \ +static_assert(sizeof(AnimInstance_GetCurrentStateName) == 0x00000C, "Wrong size on AnimInstance_GetCurrentStateName"); \ +static_assert(offsetof(AnimInstance_GetCurrentStateName, MachineIndex) == 0x000000, "Member 'AnimInstance_GetCurrentStateName::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetCurrentStateName, ReturnValue) == 0x000004, "Member 'AnimInstance_GetCurrentStateName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetCurveValueWithDefault \ +static_assert(alignof(AnimInstance_GetCurveValueWithDefault) == 0x000004, "Wrong alignment on AnimInstance_GetCurveValueWithDefault"); \ +static_assert(sizeof(AnimInstance_GetCurveValueWithDefault) == 0x000014, "Wrong size on AnimInstance_GetCurveValueWithDefault"); \ +static_assert(offsetof(AnimInstance_GetCurveValueWithDefault, CurveName) == 0x000000, "Member 'AnimInstance_GetCurveValueWithDefault::CurveName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetCurveValueWithDefault, DefaultValue) == 0x000008, "Member 'AnimInstance_GetCurveValueWithDefault::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetCurveValueWithDefault, OutValue) == 0x00000C, "Member 'AnimInstance_GetCurveValueWithDefault::OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetCurveValueWithDefault, ReturnValue) == 0x000010, "Member 'AnimInstance_GetCurveValueWithDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceAssetPlayerLength \ +static_assert(alignof(AnimInstance_GetInstanceAssetPlayerLength) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceAssetPlayerLength"); \ +static_assert(sizeof(AnimInstance_GetInstanceAssetPlayerLength) == 0x000008, "Wrong size on AnimInstance_GetInstanceAssetPlayerLength"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerLength, AssetPlayerIndex) == 0x000000, "Member 'AnimInstance_GetInstanceAssetPlayerLength::AssetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerLength, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceAssetPlayerLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceAssetPlayerTime \ +static_assert(alignof(AnimInstance_GetInstanceAssetPlayerTime) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceAssetPlayerTime"); \ +static_assert(sizeof(AnimInstance_GetInstanceAssetPlayerTime) == 0x000008, "Wrong size on AnimInstance_GetInstanceAssetPlayerTime"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTime, AssetPlayerIndex) == 0x000000, "Member 'AnimInstance_GetInstanceAssetPlayerTime::AssetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTime, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceAssetPlayerTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceAssetPlayerTimeFraction \ +static_assert(alignof(AnimInstance_GetInstanceAssetPlayerTimeFraction) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceAssetPlayerTimeFraction"); \ +static_assert(sizeof(AnimInstance_GetInstanceAssetPlayerTimeFraction) == 0x000008, "Wrong size on AnimInstance_GetInstanceAssetPlayerTimeFraction"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFraction, AssetPlayerIndex) == 0x000000, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFraction::AssetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFraction, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceAssetPlayerTimeFromEnd \ +static_assert(alignof(AnimInstance_GetInstanceAssetPlayerTimeFromEnd) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceAssetPlayerTimeFromEnd"); \ +static_assert(sizeof(AnimInstance_GetInstanceAssetPlayerTimeFromEnd) == 0x000008, "Wrong size on AnimInstance_GetInstanceAssetPlayerTimeFromEnd"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFromEnd, AssetPlayerIndex) == 0x000000, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFromEnd::AssetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFromEnd, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFromEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction \ +static_assert(alignof(AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction"); \ +static_assert(sizeof(AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction) == 0x000008, "Wrong size on AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction, AssetPlayerIndex) == 0x000000, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction::AssetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceCurrentStateElapsedTime \ +static_assert(alignof(AnimInstance_GetInstanceCurrentStateElapsedTime) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceCurrentStateElapsedTime"); \ +static_assert(sizeof(AnimInstance_GetInstanceCurrentStateElapsedTime) == 0x000008, "Wrong size on AnimInstance_GetInstanceCurrentStateElapsedTime"); \ +static_assert(offsetof(AnimInstance_GetInstanceCurrentStateElapsedTime, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceCurrentStateElapsedTime::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceCurrentStateElapsedTime, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceCurrentStateElapsedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceMachineWeight \ +static_assert(alignof(AnimInstance_GetInstanceMachineWeight) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceMachineWeight"); \ +static_assert(sizeof(AnimInstance_GetInstanceMachineWeight) == 0x000008, "Wrong size on AnimInstance_GetInstanceMachineWeight"); \ +static_assert(offsetof(AnimInstance_GetInstanceMachineWeight, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceMachineWeight::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceMachineWeight, ReturnValue) == 0x000004, "Member 'AnimInstance_GetInstanceMachineWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceStateWeight \ +static_assert(alignof(AnimInstance_GetInstanceStateWeight) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceStateWeight"); \ +static_assert(sizeof(AnimInstance_GetInstanceStateWeight) == 0x00000C, "Wrong size on AnimInstance_GetInstanceStateWeight"); \ +static_assert(offsetof(AnimInstance_GetInstanceStateWeight, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceStateWeight::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceStateWeight, StateIndex) == 0x000004, "Member 'AnimInstance_GetInstanceStateWeight::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceStateWeight, ReturnValue) == 0x000008, "Member 'AnimInstance_GetInstanceStateWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceTransitionCrossfadeDuration \ +static_assert(alignof(AnimInstance_GetInstanceTransitionCrossfadeDuration) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceTransitionCrossfadeDuration"); \ +static_assert(sizeof(AnimInstance_GetInstanceTransitionCrossfadeDuration) == 0x00000C, "Wrong size on AnimInstance_GetInstanceTransitionCrossfadeDuration"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionCrossfadeDuration, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceTransitionCrossfadeDuration::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionCrossfadeDuration, TransitionIndex) == 0x000004, "Member 'AnimInstance_GetInstanceTransitionCrossfadeDuration::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionCrossfadeDuration, ReturnValue) == 0x000008, "Member 'AnimInstance_GetInstanceTransitionCrossfadeDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceTransitionTimeElapsed \ +static_assert(alignof(AnimInstance_GetInstanceTransitionTimeElapsed) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceTransitionTimeElapsed"); \ +static_assert(sizeof(AnimInstance_GetInstanceTransitionTimeElapsed) == 0x00000C, "Wrong size on AnimInstance_GetInstanceTransitionTimeElapsed"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsed, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceTransitionTimeElapsed::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsed, TransitionIndex) == 0x000004, "Member 'AnimInstance_GetInstanceTransitionTimeElapsed::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsed, ReturnValue) == 0x000008, "Member 'AnimInstance_GetInstanceTransitionTimeElapsed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetInstanceTransitionTimeElapsedFraction \ +static_assert(alignof(AnimInstance_GetInstanceTransitionTimeElapsedFraction) == 0x000004, "Wrong alignment on AnimInstance_GetInstanceTransitionTimeElapsedFraction"); \ +static_assert(sizeof(AnimInstance_GetInstanceTransitionTimeElapsedFraction) == 0x00000C, "Wrong size on AnimInstance_GetInstanceTransitionTimeElapsedFraction"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsedFraction, MachineIndex) == 0x000000, "Member 'AnimInstance_GetInstanceTransitionTimeElapsedFraction::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsedFraction, TransitionIndex) == 0x000004, "Member 'AnimInstance_GetInstanceTransitionTimeElapsedFraction::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetInstanceTransitionTimeElapsedFraction, ReturnValue) == 0x000008, "Member 'AnimInstance_GetInstanceTransitionTimeElapsedFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetRelevantAnimLength \ +static_assert(alignof(AnimInstance_GetRelevantAnimLength) == 0x000004, "Wrong alignment on AnimInstance_GetRelevantAnimLength"); \ +static_assert(sizeof(AnimInstance_GetRelevantAnimLength) == 0x00000C, "Wrong size on AnimInstance_GetRelevantAnimLength"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimLength, MachineIndex) == 0x000000, "Member 'AnimInstance_GetRelevantAnimLength::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimLength, StateIndex) == 0x000004, "Member 'AnimInstance_GetRelevantAnimLength::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimLength, ReturnValue) == 0x000008, "Member 'AnimInstance_GetRelevantAnimLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetRelevantAnimTime \ +static_assert(alignof(AnimInstance_GetRelevantAnimTime) == 0x000004, "Wrong alignment on AnimInstance_GetRelevantAnimTime"); \ +static_assert(sizeof(AnimInstance_GetRelevantAnimTime) == 0x00000C, "Wrong size on AnimInstance_GetRelevantAnimTime"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTime, MachineIndex) == 0x000000, "Member 'AnimInstance_GetRelevantAnimTime::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTime, StateIndex) == 0x000004, "Member 'AnimInstance_GetRelevantAnimTime::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTime, ReturnValue) == 0x000008, "Member 'AnimInstance_GetRelevantAnimTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetRelevantAnimTimeFraction \ +static_assert(alignof(AnimInstance_GetRelevantAnimTimeFraction) == 0x000004, "Wrong alignment on AnimInstance_GetRelevantAnimTimeFraction"); \ +static_assert(sizeof(AnimInstance_GetRelevantAnimTimeFraction) == 0x00000C, "Wrong size on AnimInstance_GetRelevantAnimTimeFraction"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeFraction, MachineIndex) == 0x000000, "Member 'AnimInstance_GetRelevantAnimTimeFraction::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeFraction, StateIndex) == 0x000004, "Member 'AnimInstance_GetRelevantAnimTimeFraction::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeFraction, ReturnValue) == 0x000008, "Member 'AnimInstance_GetRelevantAnimTimeFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetRelevantAnimTimeRemaining \ +static_assert(alignof(AnimInstance_GetRelevantAnimTimeRemaining) == 0x000004, "Wrong alignment on AnimInstance_GetRelevantAnimTimeRemaining"); \ +static_assert(sizeof(AnimInstance_GetRelevantAnimTimeRemaining) == 0x00000C, "Wrong size on AnimInstance_GetRelevantAnimTimeRemaining"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemaining, MachineIndex) == 0x000000, "Member 'AnimInstance_GetRelevantAnimTimeRemaining::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemaining, StateIndex) == 0x000004, "Member 'AnimInstance_GetRelevantAnimTimeRemaining::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemaining, ReturnValue) == 0x000008, "Member 'AnimInstance_GetRelevantAnimTimeRemaining::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetRelevantAnimTimeRemainingFraction \ +static_assert(alignof(AnimInstance_GetRelevantAnimTimeRemainingFraction) == 0x000004, "Wrong alignment on AnimInstance_GetRelevantAnimTimeRemainingFraction"); \ +static_assert(sizeof(AnimInstance_GetRelevantAnimTimeRemainingFraction) == 0x00000C, "Wrong size on AnimInstance_GetRelevantAnimTimeRemainingFraction"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemainingFraction, MachineIndex) == 0x000000, "Member 'AnimInstance_GetRelevantAnimTimeRemainingFraction::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemainingFraction, StateIndex) == 0x000004, "Member 'AnimInstance_GetRelevantAnimTimeRemainingFraction::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetRelevantAnimTimeRemainingFraction, ReturnValue) == 0x000008, "Member 'AnimInstance_GetRelevantAnimTimeRemainingFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_LinkAnimClassLayers \ +static_assert(alignof(AnimInstance_LinkAnimClassLayers) == 0x000008, "Wrong alignment on AnimInstance_LinkAnimClassLayers"); \ +static_assert(sizeof(AnimInstance_LinkAnimClassLayers) == 0x000008, "Wrong size on AnimInstance_LinkAnimClassLayers"); \ +static_assert(offsetof(AnimInstance_LinkAnimClassLayers, InClass) == 0x000000, "Member 'AnimInstance_LinkAnimClassLayers::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_LinkAnimGraphByTag \ +static_assert(alignof(AnimInstance_LinkAnimGraphByTag) == 0x000008, "Wrong alignment on AnimInstance_LinkAnimGraphByTag"); \ +static_assert(sizeof(AnimInstance_LinkAnimGraphByTag) == 0x000010, "Wrong size on AnimInstance_LinkAnimGraphByTag"); \ +static_assert(offsetof(AnimInstance_LinkAnimGraphByTag, InTag) == 0x000000, "Member 'AnimInstance_LinkAnimGraphByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_LinkAnimGraphByTag, InClass) == 0x000008, "Member 'AnimInstance_LinkAnimGraphByTag::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_LockAIResources \ +static_assert(alignof(AnimInstance_LockAIResources) == 0x000001, "Wrong alignment on AnimInstance_LockAIResources"); \ +static_assert(sizeof(AnimInstance_LockAIResources) == 0x000002, "Wrong size on AnimInstance_LockAIResources"); \ +static_assert(offsetof(AnimInstance_LockAIResources, bLockMovement) == 0x000000, "Member 'AnimInstance_LockAIResources::bLockMovement' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_LockAIResources, LockAILogic) == 0x000001, "Member 'AnimInstance_LockAIResources::LockAILogic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_JumpToSection \ +static_assert(alignof(AnimInstance_Montage_JumpToSection) == 0x000008, "Wrong alignment on AnimInstance_Montage_JumpToSection"); \ +static_assert(sizeof(AnimInstance_Montage_JumpToSection) == 0x000010, "Wrong size on AnimInstance_Montage_JumpToSection"); \ +static_assert(offsetof(AnimInstance_Montage_JumpToSection, SectionName) == 0x000000, "Member 'AnimInstance_Montage_JumpToSection::SectionName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_JumpToSection, Montage) == 0x000008, "Member 'AnimInstance_Montage_JumpToSection::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_JumpToSectionsEnd \ +static_assert(alignof(AnimInstance_Montage_JumpToSectionsEnd) == 0x000008, "Wrong alignment on AnimInstance_Montage_JumpToSectionsEnd"); \ +static_assert(sizeof(AnimInstance_Montage_JumpToSectionsEnd) == 0x000010, "Wrong size on AnimInstance_Montage_JumpToSectionsEnd"); \ +static_assert(offsetof(AnimInstance_Montage_JumpToSectionsEnd, SectionName) == 0x000000, "Member 'AnimInstance_Montage_JumpToSectionsEnd::SectionName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_JumpToSectionsEnd, Montage) == 0x000008, "Member 'AnimInstance_Montage_JumpToSectionsEnd::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_Pause \ +static_assert(alignof(AnimInstance_Montage_Pause) == 0x000008, "Wrong alignment on AnimInstance_Montage_Pause"); \ +static_assert(sizeof(AnimInstance_Montage_Pause) == 0x000008, "Wrong size on AnimInstance_Montage_Pause"); \ +static_assert(offsetof(AnimInstance_Montage_Pause, Montage) == 0x000000, "Member 'AnimInstance_Montage_Pause::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_Play \ +static_assert(alignof(AnimInstance_Montage_Play) == 0x000008, "Wrong alignment on AnimInstance_Montage_Play"); \ +static_assert(sizeof(AnimInstance_Montage_Play) == 0x000020, "Wrong size on AnimInstance_Montage_Play"); \ +static_assert(offsetof(AnimInstance_Montage_Play, MontageToPlay) == 0x000000, "Member 'AnimInstance_Montage_Play::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Play, InPlayRate) == 0x000008, "Member 'AnimInstance_Montage_Play::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Play, ReturnValueType) == 0x00000C, "Member 'AnimInstance_Montage_Play::ReturnValueType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Play, InTimeToStartMontageAt) == 0x000010, "Member 'AnimInstance_Montage_Play::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Play, bStopAllMontages) == 0x000014, "Member 'AnimInstance_Montage_Play::bStopAllMontages' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Play, ReturnValue) == 0x000018, "Member 'AnimInstance_Montage_Play::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_PlayWithBlendIn \ +static_assert(alignof(AnimInstance_Montage_PlayWithBlendIn) == 0x000008, "Wrong alignment on AnimInstance_Montage_PlayWithBlendIn"); \ +static_assert(sizeof(AnimInstance_Montage_PlayWithBlendIn) == 0x000030, "Wrong size on AnimInstance_Montage_PlayWithBlendIn"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, MontageToPlay) == 0x000000, "Member 'AnimInstance_Montage_PlayWithBlendIn::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, BlendIn) == 0x000008, "Member 'AnimInstance_Montage_PlayWithBlendIn::BlendIn' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, InPlayRate) == 0x000018, "Member 'AnimInstance_Montage_PlayWithBlendIn::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, ReturnValueType) == 0x00001C, "Member 'AnimInstance_Montage_PlayWithBlendIn::ReturnValueType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, InTimeToStartMontageAt) == 0x000020, "Member 'AnimInstance_Montage_PlayWithBlendIn::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, bStopAllMontages) == 0x000024, "Member 'AnimInstance_Montage_PlayWithBlendIn::bStopAllMontages' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendIn, ReturnValue) == 0x000028, "Member 'AnimInstance_Montage_PlayWithBlendIn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_PlayWithBlendSettings \ +static_assert(alignof(AnimInstance_Montage_PlayWithBlendSettings) == 0x000008, "Wrong alignment on AnimInstance_Montage_PlayWithBlendSettings"); \ +static_assert(sizeof(AnimInstance_Montage_PlayWithBlendSettings) == 0x000040, "Wrong size on AnimInstance_Montage_PlayWithBlendSettings"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, MontageToPlay) == 0x000000, "Member 'AnimInstance_Montage_PlayWithBlendSettings::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, BlendInSettings) == 0x000008, "Member 'AnimInstance_Montage_PlayWithBlendSettings::BlendInSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, InPlayRate) == 0x000028, "Member 'AnimInstance_Montage_PlayWithBlendSettings::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, ReturnValueType) == 0x00002C, "Member 'AnimInstance_Montage_PlayWithBlendSettings::ReturnValueType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, InTimeToStartMontageAt) == 0x000030, "Member 'AnimInstance_Montage_PlayWithBlendSettings::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, bStopAllMontages) == 0x000034, "Member 'AnimInstance_Montage_PlayWithBlendSettings::bStopAllMontages' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_PlayWithBlendSettings, ReturnValue) == 0x000038, "Member 'AnimInstance_Montage_PlayWithBlendSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_Resume \ +static_assert(alignof(AnimInstance_Montage_Resume) == 0x000008, "Wrong alignment on AnimInstance_Montage_Resume"); \ +static_assert(sizeof(AnimInstance_Montage_Resume) == 0x000008, "Wrong size on AnimInstance_Montage_Resume"); \ +static_assert(offsetof(AnimInstance_Montage_Resume, Montage) == 0x000000, "Member 'AnimInstance_Montage_Resume::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_SetNextSection \ +static_assert(alignof(AnimInstance_Montage_SetNextSection) == 0x000008, "Wrong alignment on AnimInstance_Montage_SetNextSection"); \ +static_assert(sizeof(AnimInstance_Montage_SetNextSection) == 0x000018, "Wrong size on AnimInstance_Montage_SetNextSection"); \ +static_assert(offsetof(AnimInstance_Montage_SetNextSection, SectionNameToChange) == 0x000000, "Member 'AnimInstance_Montage_SetNextSection::SectionNameToChange' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_SetNextSection, NextSection) == 0x000008, "Member 'AnimInstance_Montage_SetNextSection::NextSection' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_SetNextSection, Montage) == 0x000010, "Member 'AnimInstance_Montage_SetNextSection::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_SetPlayRate \ +static_assert(alignof(AnimInstance_Montage_SetPlayRate) == 0x000008, "Wrong alignment on AnimInstance_Montage_SetPlayRate"); \ +static_assert(sizeof(AnimInstance_Montage_SetPlayRate) == 0x000010, "Wrong size on AnimInstance_Montage_SetPlayRate"); \ +static_assert(offsetof(AnimInstance_Montage_SetPlayRate, Montage) == 0x000000, "Member 'AnimInstance_Montage_SetPlayRate::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_SetPlayRate, NewPlayRate) == 0x000008, "Member 'AnimInstance_Montage_SetPlayRate::NewPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_SetPosition \ +static_assert(alignof(AnimInstance_Montage_SetPosition) == 0x000008, "Wrong alignment on AnimInstance_Montage_SetPosition"); \ +static_assert(sizeof(AnimInstance_Montage_SetPosition) == 0x000010, "Wrong size on AnimInstance_Montage_SetPosition"); \ +static_assert(offsetof(AnimInstance_Montage_SetPosition, Montage) == 0x000000, "Member 'AnimInstance_Montage_SetPosition::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_SetPosition, NewPosition) == 0x000008, "Member 'AnimInstance_Montage_SetPosition::NewPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_Stop \ +static_assert(alignof(AnimInstance_Montage_Stop) == 0x000008, "Wrong alignment on AnimInstance_Montage_Stop"); \ +static_assert(sizeof(AnimInstance_Montage_Stop) == 0x000010, "Wrong size on AnimInstance_Montage_Stop"); \ +static_assert(offsetof(AnimInstance_Montage_Stop, InBlendOutTime) == 0x000000, "Member 'AnimInstance_Montage_Stop::InBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_Stop, Montage) == 0x000008, "Member 'AnimInstance_Montage_Stop::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_StopGroupByName \ +static_assert(alignof(AnimInstance_Montage_StopGroupByName) == 0x000004, "Wrong alignment on AnimInstance_Montage_StopGroupByName"); \ +static_assert(sizeof(AnimInstance_Montage_StopGroupByName) == 0x00000C, "Wrong size on AnimInstance_Montage_StopGroupByName"); \ +static_assert(offsetof(AnimInstance_Montage_StopGroupByName, InBlendOutTime) == 0x000000, "Member 'AnimInstance_Montage_StopGroupByName::InBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_StopGroupByName, GroupName) == 0x000004, "Member 'AnimInstance_Montage_StopGroupByName::GroupName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_StopWithBlendOut \ +static_assert(alignof(AnimInstance_Montage_StopWithBlendOut) == 0x000008, "Wrong alignment on AnimInstance_Montage_StopWithBlendOut"); \ +static_assert(sizeof(AnimInstance_Montage_StopWithBlendOut) == 0x000018, "Wrong size on AnimInstance_Montage_StopWithBlendOut"); \ +static_assert(offsetof(AnimInstance_Montage_StopWithBlendOut, BlendOut) == 0x000000, "Member 'AnimInstance_Montage_StopWithBlendOut::BlendOut' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_StopWithBlendOut, Montage) == 0x000010, "Member 'AnimInstance_Montage_StopWithBlendOut::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_StopWithBlendSettings \ +static_assert(alignof(AnimInstance_Montage_StopWithBlendSettings) == 0x000008, "Wrong alignment on AnimInstance_Montage_StopWithBlendSettings"); \ +static_assert(sizeof(AnimInstance_Montage_StopWithBlendSettings) == 0x000028, "Wrong size on AnimInstance_Montage_StopWithBlendSettings"); \ +static_assert(offsetof(AnimInstance_Montage_StopWithBlendSettings, BlendOutSettings) == 0x000000, "Member 'AnimInstance_Montage_StopWithBlendSettings::BlendOutSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_StopWithBlendSettings, Montage) == 0x000020, "Member 'AnimInstance_Montage_StopWithBlendSettings::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_MontageSync_Follow \ +static_assert(alignof(AnimInstance_MontageSync_Follow) == 0x000008, "Wrong alignment on AnimInstance_MontageSync_Follow"); \ +static_assert(sizeof(AnimInstance_MontageSync_Follow) == 0x000018, "Wrong size on AnimInstance_MontageSync_Follow"); \ +static_assert(offsetof(AnimInstance_MontageSync_Follow, MontageFollower) == 0x000000, "Member 'AnimInstance_MontageSync_Follow::MontageFollower' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_MontageSync_Follow, OtherAnimInstance) == 0x000008, "Member 'AnimInstance_MontageSync_Follow::OtherAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_MontageSync_Follow, MontageLeader) == 0x000010, "Member 'AnimInstance_MontageSync_Follow::MontageLeader' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_MontageSync_StopFollowing \ +static_assert(alignof(AnimInstance_MontageSync_StopFollowing) == 0x000008, "Wrong alignment on AnimInstance_MontageSync_StopFollowing"); \ +static_assert(sizeof(AnimInstance_MontageSync_StopFollowing) == 0x000008, "Wrong size on AnimInstance_MontageSync_StopFollowing"); \ +static_assert(offsetof(AnimInstance_MontageSync_StopFollowing, MontageFollower) == 0x000000, "Member 'AnimInstance_MontageSync_StopFollowing::MontageFollower' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_PlaySlotAnimationAsDynamicMontage \ +static_assert(alignof(AnimInstance_PlaySlotAnimationAsDynamicMontage) == 0x000008, "Wrong alignment on AnimInstance_PlaySlotAnimationAsDynamicMontage"); \ +static_assert(sizeof(AnimInstance_PlaySlotAnimationAsDynamicMontage) == 0x000030, "Wrong size on AnimInstance_PlaySlotAnimationAsDynamicMontage"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, Asset) == 0x000000, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::Asset' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, SlotNodeName) == 0x000008, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, BlendInTime) == 0x000010, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, BlendOutTime) == 0x000014, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::BlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, InPlayRate) == 0x000018, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, LoopCount) == 0x00001C, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, BlendOutTriggerTime) == 0x000020, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::BlendOutTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, InTimeToStartMontageAt) == 0x000024, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage, ReturnValue) == 0x000028, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs \ +static_assert(alignof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs) == 0x000008, "Wrong alignment on AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs"); \ +static_assert(sizeof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs) == 0x000048, "Wrong size on AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, Asset) == 0x000000, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::Asset' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, SlotNodeName) == 0x000008, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, BlendIn) == 0x000010, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::BlendIn' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, BlendOut) == 0x000020, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::BlendOut' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, InPlayRate) == 0x000030, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, LoopCount) == 0x000034, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, BlendOutTriggerTime) == 0x000038, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::BlendOutTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, InTimeToStartMontageAt) == 0x00003C, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs, ReturnValue) == 0x000040, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings \ +static_assert(alignof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings) == 0x000008, "Wrong alignment on AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings"); \ +static_assert(sizeof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings) == 0x000068, "Wrong size on AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, Asset) == 0x000000, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::Asset' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, SlotNodeName) == 0x000008, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, BlendInSettings) == 0x000010, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::BlendInSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, BlendOutSettings) == 0x000030, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::BlendOutSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, InPlayRate) == 0x000050, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, LoopCount) == 0x000054, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, BlendOutTriggerTime) == 0x000058, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::BlendOutTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, InTimeToStartMontageAt) == 0x00005C, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::InTimeToStartMontageAt' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings, ReturnValue) == 0x000060, "Member 'AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_QueryAndMarkTransitionEvent \ +static_assert(alignof(AnimInstance_QueryAndMarkTransitionEvent) == 0x000004, "Wrong alignment on AnimInstance_QueryAndMarkTransitionEvent"); \ +static_assert(sizeof(AnimInstance_QueryAndMarkTransitionEvent) == 0x000014, "Wrong size on AnimInstance_QueryAndMarkTransitionEvent"); \ +static_assert(offsetof(AnimInstance_QueryAndMarkTransitionEvent, MachineIndex) == 0x000000, "Member 'AnimInstance_QueryAndMarkTransitionEvent::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryAndMarkTransitionEvent, TransitionIndex) == 0x000004, "Member 'AnimInstance_QueryAndMarkTransitionEvent::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryAndMarkTransitionEvent, EventName) == 0x000008, "Member 'AnimInstance_QueryAndMarkTransitionEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryAndMarkTransitionEvent, ReturnValue) == 0x000010, "Member 'AnimInstance_QueryAndMarkTransitionEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_QueryTransitionEvent \ +static_assert(alignof(AnimInstance_QueryTransitionEvent) == 0x000004, "Wrong alignment on AnimInstance_QueryTransitionEvent"); \ +static_assert(sizeof(AnimInstance_QueryTransitionEvent) == 0x000014, "Wrong size on AnimInstance_QueryTransitionEvent"); \ +static_assert(offsetof(AnimInstance_QueryTransitionEvent, MachineIndex) == 0x000000, "Member 'AnimInstance_QueryTransitionEvent::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryTransitionEvent, TransitionIndex) == 0x000004, "Member 'AnimInstance_QueryTransitionEvent::TransitionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryTransitionEvent, EventName) == 0x000008, "Member 'AnimInstance_QueryTransitionEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_QueryTransitionEvent, ReturnValue) == 0x000010, "Member 'AnimInstance_QueryTransitionEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_RemovePoseSnapshot \ +static_assert(alignof(AnimInstance_RemovePoseSnapshot) == 0x000004, "Wrong alignment on AnimInstance_RemovePoseSnapshot"); \ +static_assert(sizeof(AnimInstance_RemovePoseSnapshot) == 0x000008, "Wrong size on AnimInstance_RemovePoseSnapshot"); \ +static_assert(offsetof(AnimInstance_RemovePoseSnapshot, SnapshotName) == 0x000000, "Member 'AnimInstance_RemovePoseSnapshot::SnapshotName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_RequestSlotGroupInertialization \ +static_assert(alignof(AnimInstance_RequestSlotGroupInertialization) == 0x000008, "Wrong alignment on AnimInstance_RequestSlotGroupInertialization"); \ +static_assert(sizeof(AnimInstance_RequestSlotGroupInertialization) == 0x000018, "Wrong size on AnimInstance_RequestSlotGroupInertialization"); \ +static_assert(offsetof(AnimInstance_RequestSlotGroupInertialization, InSlotGroupName) == 0x000000, "Member 'AnimInstance_RequestSlotGroupInertialization::InSlotGroupName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestSlotGroupInertialization, Duration) == 0x000008, "Member 'AnimInstance_RequestSlotGroupInertialization::Duration' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestSlotGroupInertialization, BlendProfile) == 0x000010, "Member 'AnimInstance_RequestSlotGroupInertialization::BlendProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_RequestTransitionEvent \ +static_assert(alignof(AnimInstance_RequestTransitionEvent) == 0x000008, "Wrong alignment on AnimInstance_RequestTransitionEvent"); \ +static_assert(sizeof(AnimInstance_RequestTransitionEvent) == 0x000018, "Wrong size on AnimInstance_RequestTransitionEvent"); \ +static_assert(offsetof(AnimInstance_RequestTransitionEvent, EventName) == 0x000000, "Member 'AnimInstance_RequestTransitionEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestTransitionEvent, RequestTimeout) == 0x000008, "Member 'AnimInstance_RequestTransitionEvent::RequestTimeout' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestTransitionEvent, QueueMode) == 0x000010, "Member 'AnimInstance_RequestTransitionEvent::QueueMode' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestTransitionEvent, OverwriteMode) == 0x000011, "Member 'AnimInstance_RequestTransitionEvent::OverwriteMode' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_RequestTransitionEvent, ReturnValue) == 0x000012, "Member 'AnimInstance_RequestTransitionEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_ResetDynamics \ +static_assert(alignof(AnimInstance_ResetDynamics) == 0x000001, "Wrong alignment on AnimInstance_ResetDynamics"); \ +static_assert(sizeof(AnimInstance_ResetDynamics) == 0x000001, "Wrong size on AnimInstance_ResetDynamics"); \ +static_assert(offsetof(AnimInstance_ResetDynamics, InTeleportType) == 0x000000, "Member 'AnimInstance_ResetDynamics::InTeleportType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SavePoseSnapshot \ +static_assert(alignof(AnimInstance_SavePoseSnapshot) == 0x000004, "Wrong alignment on AnimInstance_SavePoseSnapshot"); \ +static_assert(sizeof(AnimInstance_SavePoseSnapshot) == 0x000008, "Wrong size on AnimInstance_SavePoseSnapshot"); \ +static_assert(offsetof(AnimInstance_SavePoseSnapshot, SnapshotName) == 0x000000, "Member 'AnimInstance_SavePoseSnapshot::SnapshotName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SetMorphTarget \ +static_assert(alignof(AnimInstance_SetMorphTarget) == 0x000004, "Wrong alignment on AnimInstance_SetMorphTarget"); \ +static_assert(sizeof(AnimInstance_SetMorphTarget) == 0x00000C, "Wrong size on AnimInstance_SetMorphTarget"); \ +static_assert(offsetof(AnimInstance_SetMorphTarget, MorphTargetName) == 0x000000, "Member 'AnimInstance_SetMorphTarget::MorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_SetMorphTarget, Value) == 0x000008, "Member 'AnimInstance_SetMorphTarget::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SetPropagateNotifiesToLinkedInstances \ +static_assert(alignof(AnimInstance_SetPropagateNotifiesToLinkedInstances) == 0x000001, "Wrong alignment on AnimInstance_SetPropagateNotifiesToLinkedInstances"); \ +static_assert(sizeof(AnimInstance_SetPropagateNotifiesToLinkedInstances) == 0x000001, "Wrong size on AnimInstance_SetPropagateNotifiesToLinkedInstances"); \ +static_assert(offsetof(AnimInstance_SetPropagateNotifiesToLinkedInstances, bSet) == 0x000000, "Member 'AnimInstance_SetPropagateNotifiesToLinkedInstances::bSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SetReceiveNotifiesFromLinkedInstances \ +static_assert(alignof(AnimInstance_SetReceiveNotifiesFromLinkedInstances) == 0x000001, "Wrong alignment on AnimInstance_SetReceiveNotifiesFromLinkedInstances"); \ +static_assert(sizeof(AnimInstance_SetReceiveNotifiesFromLinkedInstances) == 0x000001, "Wrong size on AnimInstance_SetReceiveNotifiesFromLinkedInstances"); \ +static_assert(offsetof(AnimInstance_SetReceiveNotifiesFromLinkedInstances, bSet) == 0x000000, "Member 'AnimInstance_SetReceiveNotifiesFromLinkedInstances::bSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SetRootMotionMode \ +static_assert(alignof(AnimInstance_SetRootMotionMode) == 0x000001, "Wrong alignment on AnimInstance_SetRootMotionMode"); \ +static_assert(sizeof(AnimInstance_SetRootMotionMode) == 0x000001, "Wrong size on AnimInstance_SetRootMotionMode"); \ +static_assert(offsetof(AnimInstance_SetRootMotionMode, Value) == 0x000000, "Member 'AnimInstance_SetRootMotionMode::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SetUseMainInstanceMontageEvaluationData \ +static_assert(alignof(AnimInstance_SetUseMainInstanceMontageEvaluationData) == 0x000001, "Wrong alignment on AnimInstance_SetUseMainInstanceMontageEvaluationData"); \ +static_assert(sizeof(AnimInstance_SetUseMainInstanceMontageEvaluationData) == 0x000001, "Wrong size on AnimInstance_SetUseMainInstanceMontageEvaluationData"); \ +static_assert(offsetof(AnimInstance_SetUseMainInstanceMontageEvaluationData, bSet) == 0x000000, "Member 'AnimInstance_SetUseMainInstanceMontageEvaluationData::bSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_SnapshotPose \ +static_assert(alignof(AnimInstance_SnapshotPose) == 0x000008, "Wrong alignment on AnimInstance_SnapshotPose"); \ +static_assert(sizeof(AnimInstance_SnapshotPose) == 0x000038, "Wrong size on AnimInstance_SnapshotPose"); \ +static_assert(offsetof(AnimInstance_SnapshotPose, Snapshot) == 0x000000, "Member 'AnimInstance_SnapshotPose::Snapshot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_StopSlotAnimation \ +static_assert(alignof(AnimInstance_StopSlotAnimation) == 0x000004, "Wrong alignment on AnimInstance_StopSlotAnimation"); \ +static_assert(sizeof(AnimInstance_StopSlotAnimation) == 0x00000C, "Wrong size on AnimInstance_StopSlotAnimation"); \ +static_assert(offsetof(AnimInstance_StopSlotAnimation, InBlendOutTime) == 0x000000, "Member 'AnimInstance_StopSlotAnimation::InBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_StopSlotAnimation, SlotNodeName) == 0x000004, "Member 'AnimInstance_StopSlotAnimation::SlotNodeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_UnlinkAnimClassLayers \ +static_assert(alignof(AnimInstance_UnlinkAnimClassLayers) == 0x000008, "Wrong alignment on AnimInstance_UnlinkAnimClassLayers"); \ +static_assert(sizeof(AnimInstance_UnlinkAnimClassLayers) == 0x000008, "Wrong size on AnimInstance_UnlinkAnimClassLayers"); \ +static_assert(offsetof(AnimInstance_UnlinkAnimClassLayers, InClass) == 0x000000, "Member 'AnimInstance_UnlinkAnimClassLayers::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_UnlockAIResources \ +static_assert(alignof(AnimInstance_UnlockAIResources) == 0x000001, "Wrong alignment on AnimInstance_UnlockAIResources"); \ +static_assert(sizeof(AnimInstance_UnlockAIResources) == 0x000002, "Wrong size on AnimInstance_UnlockAIResources"); \ +static_assert(offsetof(AnimInstance_UnlockAIResources, bUnlockMovement) == 0x000000, "Member 'AnimInstance_UnlockAIResources::bUnlockMovement' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_UnlockAIResources, UnlockAILogic) == 0x000001, "Member 'AnimInstance_UnlockAIResources::UnlockAILogic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyNameTriggeredInAnyState \ +static_assert(alignof(AnimInstance_WasAnimNotifyNameTriggeredInAnyState) == 0x000004, "Wrong alignment on AnimInstance_WasAnimNotifyNameTriggeredInAnyState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyNameTriggeredInAnyState) == 0x00000C, "Wrong size on AnimInstance_WasAnimNotifyNameTriggeredInAnyState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInAnyState, NotifyName) == 0x000000, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInAnyState::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInAnyState, ReturnValue) == 0x000008, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInAnyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyNameTriggeredInSourceState \ +static_assert(alignof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState) == 0x000004, "Wrong alignment on AnimInstance_WasAnimNotifyNameTriggeredInSourceState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState) == 0x000014, "Wrong size on AnimInstance_WasAnimNotifyNameTriggeredInSourceState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInSourceState::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState, StateIndex) == 0x000004, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInSourceState::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState, NotifyName) == 0x000008, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInSourceState::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInSourceState, ReturnValue) == 0x000010, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInSourceState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyNameTriggeredInStateMachine \ +static_assert(alignof(AnimInstance_WasAnimNotifyNameTriggeredInStateMachine) == 0x000004, "Wrong alignment on AnimInstance_WasAnimNotifyNameTriggeredInStateMachine"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyNameTriggeredInStateMachine) == 0x000010, "Wrong size on AnimInstance_WasAnimNotifyNameTriggeredInStateMachine"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInStateMachine, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInStateMachine::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInStateMachine, NotifyName) == 0x000004, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInStateMachine::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyNameTriggeredInStateMachine, ReturnValue) == 0x00000C, "Member 'AnimInstance_WasAnimNotifyNameTriggeredInStateMachine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyStateActiveInAnyState \ +static_assert(alignof(AnimInstance_WasAnimNotifyStateActiveInAnyState) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyStateActiveInAnyState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyStateActiveInAnyState) == 0x000010, "Wrong size on AnimInstance_WasAnimNotifyStateActiveInAnyState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInAnyState, AnimNotifyStateType) == 0x000000, "Member 'AnimInstance_WasAnimNotifyStateActiveInAnyState::AnimNotifyStateType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInAnyState, ReturnValue) == 0x000008, "Member 'AnimInstance_WasAnimNotifyStateActiveInAnyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyStateActiveInSourceState \ +static_assert(alignof(AnimInstance_WasAnimNotifyStateActiveInSourceState) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyStateActiveInSourceState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyStateActiveInSourceState) == 0x000018, "Wrong size on AnimInstance_WasAnimNotifyStateActiveInSourceState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInSourceState, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyStateActiveInSourceState::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInSourceState, StateIndex) == 0x000004, "Member 'AnimInstance_WasAnimNotifyStateActiveInSourceState::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInSourceState, AnimNotifyStateType) == 0x000008, "Member 'AnimInstance_WasAnimNotifyStateActiveInSourceState::AnimNotifyStateType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInSourceState, ReturnValue) == 0x000010, "Member 'AnimInstance_WasAnimNotifyStateActiveInSourceState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyStateActiveInStateMachine \ +static_assert(alignof(AnimInstance_WasAnimNotifyStateActiveInStateMachine) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyStateActiveInStateMachine"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyStateActiveInStateMachine) == 0x000018, "Wrong size on AnimInstance_WasAnimNotifyStateActiveInStateMachine"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInStateMachine, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyStateActiveInStateMachine::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInStateMachine, AnimNotifyStateType) == 0x000008, "Member 'AnimInstance_WasAnimNotifyStateActiveInStateMachine::AnimNotifyStateType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyStateActiveInStateMachine, ReturnValue) == 0x000010, "Member 'AnimInstance_WasAnimNotifyStateActiveInStateMachine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyTriggeredInAnyState \ +static_assert(alignof(AnimInstance_WasAnimNotifyTriggeredInAnyState) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyTriggeredInAnyState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyTriggeredInAnyState) == 0x000010, "Wrong size on AnimInstance_WasAnimNotifyTriggeredInAnyState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInAnyState, AnimNotifyType) == 0x000000, "Member 'AnimInstance_WasAnimNotifyTriggeredInAnyState::AnimNotifyType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInAnyState, ReturnValue) == 0x000008, "Member 'AnimInstance_WasAnimNotifyTriggeredInAnyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyTriggeredInSourceState \ +static_assert(alignof(AnimInstance_WasAnimNotifyTriggeredInSourceState) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyTriggeredInSourceState"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyTriggeredInSourceState) == 0x000018, "Wrong size on AnimInstance_WasAnimNotifyTriggeredInSourceState"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInSourceState, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyTriggeredInSourceState::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInSourceState, StateIndex) == 0x000004, "Member 'AnimInstance_WasAnimNotifyTriggeredInSourceState::StateIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInSourceState, AnimNotifyType) == 0x000008, "Member 'AnimInstance_WasAnimNotifyTriggeredInSourceState::AnimNotifyType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInSourceState, ReturnValue) == 0x000010, "Member 'AnimInstance_WasAnimNotifyTriggeredInSourceState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_WasAnimNotifyTriggeredInStateMachine \ +static_assert(alignof(AnimInstance_WasAnimNotifyTriggeredInStateMachine) == 0x000008, "Wrong alignment on AnimInstance_WasAnimNotifyTriggeredInStateMachine"); \ +static_assert(sizeof(AnimInstance_WasAnimNotifyTriggeredInStateMachine) == 0x000018, "Wrong size on AnimInstance_WasAnimNotifyTriggeredInStateMachine"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInStateMachine, MachineIndex) == 0x000000, "Member 'AnimInstance_WasAnimNotifyTriggeredInStateMachine::MachineIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInStateMachine, AnimNotifyType) == 0x000008, "Member 'AnimInstance_WasAnimNotifyTriggeredInStateMachine::AnimNotifyType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_WasAnimNotifyTriggeredInStateMachine, ReturnValue) == 0x000010, "Member 'AnimInstance_WasAnimNotifyTriggeredInStateMachine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Blueprint_GetSlotMontageLocalWeight \ +static_assert(alignof(AnimInstance_Blueprint_GetSlotMontageLocalWeight) == 0x000004, "Wrong alignment on AnimInstance_Blueprint_GetSlotMontageLocalWeight"); \ +static_assert(sizeof(AnimInstance_Blueprint_GetSlotMontageLocalWeight) == 0x00000C, "Wrong size on AnimInstance_Blueprint_GetSlotMontageLocalWeight"); \ +static_assert(offsetof(AnimInstance_Blueprint_GetSlotMontageLocalWeight, SlotNodeName) == 0x000000, "Member 'AnimInstance_Blueprint_GetSlotMontageLocalWeight::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Blueprint_GetSlotMontageLocalWeight, ReturnValue) == 0x000008, "Member 'AnimInstance_Blueprint_GetSlotMontageLocalWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_CalculateDirection \ +static_assert(alignof(AnimInstance_CalculateDirection) == 0x000008, "Wrong alignment on AnimInstance_CalculateDirection"); \ +static_assert(sizeof(AnimInstance_CalculateDirection) == 0x000038, "Wrong size on AnimInstance_CalculateDirection"); \ +static_assert(offsetof(AnimInstance_CalculateDirection, Velocity) == 0x000000, "Member 'AnimInstance_CalculateDirection::Velocity' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_CalculateDirection, BaseRotation) == 0x000018, "Member 'AnimInstance_CalculateDirection::BaseRotation' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_CalculateDirection, ReturnValue) == 0x000030, "Member 'AnimInstance_CalculateDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetActiveCurveNames \ +static_assert(alignof(AnimInstance_GetActiveCurveNames) == 0x000008, "Wrong alignment on AnimInstance_GetActiveCurveNames"); \ +static_assert(sizeof(AnimInstance_GetActiveCurveNames) == 0x000018, "Wrong size on AnimInstance_GetActiveCurveNames"); \ +static_assert(offsetof(AnimInstance_GetActiveCurveNames, CurveType) == 0x000000, "Member 'AnimInstance_GetActiveCurveNames::CurveType' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetActiveCurveNames, OutNames) == 0x000008, "Member 'AnimInstance_GetActiveCurveNames::OutNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetAllCurveNames \ +static_assert(alignof(AnimInstance_GetAllCurveNames) == 0x000008, "Wrong alignment on AnimInstance_GetAllCurveNames"); \ +static_assert(sizeof(AnimInstance_GetAllCurveNames) == 0x000010, "Wrong size on AnimInstance_GetAllCurveNames"); \ +static_assert(offsetof(AnimInstance_GetAllCurveNames, OutNames) == 0x000000, "Member 'AnimInstance_GetAllCurveNames::OutNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetCurrentActiveMontage \ +static_assert(alignof(AnimInstance_GetCurrentActiveMontage) == 0x000008, "Wrong alignment on AnimInstance_GetCurrentActiveMontage"); \ +static_assert(sizeof(AnimInstance_GetCurrentActiveMontage) == 0x000008, "Wrong size on AnimInstance_GetCurrentActiveMontage"); \ +static_assert(offsetof(AnimInstance_GetCurrentActiveMontage, ReturnValue) == 0x000000, "Member 'AnimInstance_GetCurrentActiveMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetCurveValue \ +static_assert(alignof(AnimInstance_GetCurveValue) == 0x000004, "Wrong alignment on AnimInstance_GetCurveValue"); \ +static_assert(sizeof(AnimInstance_GetCurveValue) == 0x00000C, "Wrong size on AnimInstance_GetCurveValue"); \ +static_assert(offsetof(AnimInstance_GetCurveValue, CurveName) == 0x000000, "Member 'AnimInstance_GetCurveValue::CurveName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetCurveValue, ReturnValue) == 0x000008, "Member 'AnimInstance_GetCurveValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetDeltaSeconds \ +static_assert(alignof(AnimInstance_GetDeltaSeconds) == 0x000004, "Wrong alignment on AnimInstance_GetDeltaSeconds"); \ +static_assert(sizeof(AnimInstance_GetDeltaSeconds) == 0x000004, "Wrong size on AnimInstance_GetDeltaSeconds"); \ +static_assert(offsetof(AnimInstance_GetDeltaSeconds, ReturnValue) == 0x000000, "Member 'AnimInstance_GetDeltaSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimGraphInstanceByTag \ +static_assert(alignof(AnimInstance_GetLinkedAnimGraphInstanceByTag) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimGraphInstanceByTag"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimGraphInstanceByTag) == 0x000010, "Wrong size on AnimInstance_GetLinkedAnimGraphInstanceByTag"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimGraphInstanceByTag, InTag) == 0x000000, "Member 'AnimInstance_GetLinkedAnimGraphInstanceByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimGraphInstanceByTag, ReturnValue) == 0x000008, "Member 'AnimInstance_GetLinkedAnimGraphInstanceByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimGraphInstancesByTag \ +static_assert(alignof(AnimInstance_GetLinkedAnimGraphInstancesByTag) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimGraphInstancesByTag"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimGraphInstancesByTag) == 0x000018, "Wrong size on AnimInstance_GetLinkedAnimGraphInstancesByTag"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimGraphInstancesByTag, InTag) == 0x000000, "Member 'AnimInstance_GetLinkedAnimGraphInstancesByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimGraphInstancesByTag, OutLinkedInstances) == 0x000008, "Member 'AnimInstance_GetLinkedAnimGraphInstancesByTag::OutLinkedInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimLayerInstanceByClass \ +static_assert(alignof(AnimInstance_GetLinkedAnimLayerInstanceByClass) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimLayerInstanceByClass"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimLayerInstanceByClass) == 0x000010, "Wrong size on AnimInstance_GetLinkedAnimLayerInstanceByClass"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByClass, InClass) == 0x000000, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByClass, ReturnValue) == 0x000008, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimLayerInstanceByGroup \ +static_assert(alignof(AnimInstance_GetLinkedAnimLayerInstanceByGroup) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimLayerInstanceByGroup"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimLayerInstanceByGroup) == 0x000010, "Wrong size on AnimInstance_GetLinkedAnimLayerInstanceByGroup"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByGroup, InGroup) == 0x000000, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByGroup::InGroup' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByGroup, ReturnValue) == 0x000008, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass \ +static_assert(alignof(AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass) == 0x000018, "Wrong size on AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass, InGroup) == 0x000000, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass::InGroup' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass, InClass) == 0x000008, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass, ReturnValue) == 0x000010, "Member 'AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetLinkedAnimLayerInstancesByGroup \ +static_assert(alignof(AnimInstance_GetLinkedAnimLayerInstancesByGroup) == 0x000008, "Wrong alignment on AnimInstance_GetLinkedAnimLayerInstancesByGroup"); \ +static_assert(sizeof(AnimInstance_GetLinkedAnimLayerInstancesByGroup) == 0x000018, "Wrong size on AnimInstance_GetLinkedAnimLayerInstancesByGroup"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstancesByGroup, InGroup) == 0x000000, "Member 'AnimInstance_GetLinkedAnimLayerInstancesByGroup::InGroup' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetLinkedAnimLayerInstancesByGroup, OutLinkedInstances) == 0x000008, "Member 'AnimInstance_GetLinkedAnimLayerInstancesByGroup::OutLinkedInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetOwningActor \ +static_assert(alignof(AnimInstance_GetOwningActor) == 0x000008, "Wrong alignment on AnimInstance_GetOwningActor"); \ +static_assert(sizeof(AnimInstance_GetOwningActor) == 0x000008, "Wrong size on AnimInstance_GetOwningActor"); \ +static_assert(offsetof(AnimInstance_GetOwningActor, ReturnValue) == 0x000000, "Member 'AnimInstance_GetOwningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetOwningComponent \ +static_assert(alignof(AnimInstance_GetOwningComponent) == 0x000008, "Wrong alignment on AnimInstance_GetOwningComponent"); \ +static_assert(sizeof(AnimInstance_GetOwningComponent) == 0x000008, "Wrong size on AnimInstance_GetOwningComponent"); \ +static_assert(offsetof(AnimInstance_GetOwningComponent, ReturnValue) == 0x000000, "Member 'AnimInstance_GetOwningComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetPropagateNotifiesToLinkedInstances \ +static_assert(alignof(AnimInstance_GetPropagateNotifiesToLinkedInstances) == 0x000001, "Wrong alignment on AnimInstance_GetPropagateNotifiesToLinkedInstances"); \ +static_assert(sizeof(AnimInstance_GetPropagateNotifiesToLinkedInstances) == 0x000001, "Wrong size on AnimInstance_GetPropagateNotifiesToLinkedInstances"); \ +static_assert(offsetof(AnimInstance_GetPropagateNotifiesToLinkedInstances, ReturnValue) == 0x000000, "Member 'AnimInstance_GetPropagateNotifiesToLinkedInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetReceiveNotifiesFromLinkedInstances \ +static_assert(alignof(AnimInstance_GetReceiveNotifiesFromLinkedInstances) == 0x000001, "Wrong alignment on AnimInstance_GetReceiveNotifiesFromLinkedInstances"); \ +static_assert(sizeof(AnimInstance_GetReceiveNotifiesFromLinkedInstances) == 0x000001, "Wrong size on AnimInstance_GetReceiveNotifiesFromLinkedInstances"); \ +static_assert(offsetof(AnimInstance_GetReceiveNotifiesFromLinkedInstances, ReturnValue) == 0x000000, "Member 'AnimInstance_GetReceiveNotifiesFromLinkedInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetSyncGroupPosition \ +static_assert(alignof(AnimInstance_GetSyncGroupPosition) == 0x000004, "Wrong alignment on AnimInstance_GetSyncGroupPosition"); \ +static_assert(sizeof(AnimInstance_GetSyncGroupPosition) == 0x00001C, "Wrong size on AnimInstance_GetSyncGroupPosition"); \ +static_assert(offsetof(AnimInstance_GetSyncGroupPosition, InSyncGroupName) == 0x000000, "Member 'AnimInstance_GetSyncGroupPosition::InSyncGroupName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetSyncGroupPosition, ReturnValue) == 0x000008, "Member 'AnimInstance_GetSyncGroupPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_GetTimeToClosestMarker \ +static_assert(alignof(AnimInstance_GetTimeToClosestMarker) == 0x000004, "Wrong alignment on AnimInstance_GetTimeToClosestMarker"); \ +static_assert(sizeof(AnimInstance_GetTimeToClosestMarker) == 0x000018, "Wrong size on AnimInstance_GetTimeToClosestMarker"); \ +static_assert(offsetof(AnimInstance_GetTimeToClosestMarker, SyncGroup) == 0x000000, "Member 'AnimInstance_GetTimeToClosestMarker::SyncGroup' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetTimeToClosestMarker, MarkerName) == 0x000008, "Member 'AnimInstance_GetTimeToClosestMarker::MarkerName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetTimeToClosestMarker, OutMarkerTime) == 0x000010, "Member 'AnimInstance_GetTimeToClosestMarker::OutMarkerTime' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_GetTimeToClosestMarker, ReturnValue) == 0x000014, "Member 'AnimInstance_GetTimeToClosestMarker::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_HasMarkerBeenHitThisFrame \ +static_assert(alignof(AnimInstance_HasMarkerBeenHitThisFrame) == 0x000004, "Wrong alignment on AnimInstance_HasMarkerBeenHitThisFrame"); \ +static_assert(sizeof(AnimInstance_HasMarkerBeenHitThisFrame) == 0x000014, "Wrong size on AnimInstance_HasMarkerBeenHitThisFrame"); \ +static_assert(offsetof(AnimInstance_HasMarkerBeenHitThisFrame, SyncGroup) == 0x000000, "Member 'AnimInstance_HasMarkerBeenHitThisFrame::SyncGroup' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_HasMarkerBeenHitThisFrame, MarkerName) == 0x000008, "Member 'AnimInstance_HasMarkerBeenHitThisFrame::MarkerName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_HasMarkerBeenHitThisFrame, ReturnValue) == 0x000010, "Member 'AnimInstance_HasMarkerBeenHitThisFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_IsAnyMontagePlaying \ +static_assert(alignof(AnimInstance_IsAnyMontagePlaying) == 0x000001, "Wrong alignment on AnimInstance_IsAnyMontagePlaying"); \ +static_assert(sizeof(AnimInstance_IsAnyMontagePlaying) == 0x000001, "Wrong size on AnimInstance_IsAnyMontagePlaying"); \ +static_assert(offsetof(AnimInstance_IsAnyMontagePlaying, ReturnValue) == 0x000000, "Member 'AnimInstance_IsAnyMontagePlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_IsPlayingSlotAnimation \ +static_assert(alignof(AnimInstance_IsPlayingSlotAnimation) == 0x000008, "Wrong alignment on AnimInstance_IsPlayingSlotAnimation"); \ +static_assert(sizeof(AnimInstance_IsPlayingSlotAnimation) == 0x000018, "Wrong size on AnimInstance_IsPlayingSlotAnimation"); \ +static_assert(offsetof(AnimInstance_IsPlayingSlotAnimation, Asset) == 0x000000, "Member 'AnimInstance_IsPlayingSlotAnimation::Asset' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsPlayingSlotAnimation, SlotNodeName) == 0x000008, "Member 'AnimInstance_IsPlayingSlotAnimation::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsPlayingSlotAnimation, ReturnValue) == 0x000010, "Member 'AnimInstance_IsPlayingSlotAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_IsSlotActive \ +static_assert(alignof(AnimInstance_IsSlotActive) == 0x000004, "Wrong alignment on AnimInstance_IsSlotActive"); \ +static_assert(sizeof(AnimInstance_IsSlotActive) == 0x00000C, "Wrong size on AnimInstance_IsSlotActive"); \ +static_assert(offsetof(AnimInstance_IsSlotActive, SlotNodeName) == 0x000000, "Member 'AnimInstance_IsSlotActive::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsSlotActive, ReturnValue) == 0x000008, "Member 'AnimInstance_IsSlotActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_IsSyncGroupBetweenMarkers \ +static_assert(alignof(AnimInstance_IsSyncGroupBetweenMarkers) == 0x000004, "Wrong alignment on AnimInstance_IsSyncGroupBetweenMarkers"); \ +static_assert(sizeof(AnimInstance_IsSyncGroupBetweenMarkers) == 0x00001C, "Wrong size on AnimInstance_IsSyncGroupBetweenMarkers"); \ +static_assert(offsetof(AnimInstance_IsSyncGroupBetweenMarkers, InSyncGroupName) == 0x000000, "Member 'AnimInstance_IsSyncGroupBetweenMarkers::InSyncGroupName' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsSyncGroupBetweenMarkers, PreviousMarker) == 0x000008, "Member 'AnimInstance_IsSyncGroupBetweenMarkers::PreviousMarker' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsSyncGroupBetweenMarkers, NextMarker) == 0x000010, "Member 'AnimInstance_IsSyncGroupBetweenMarkers::NextMarker' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsSyncGroupBetweenMarkers, bRespectMarkerOrder) == 0x000018, "Member 'AnimInstance_IsSyncGroupBetweenMarkers::bRespectMarkerOrder' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_IsSyncGroupBetweenMarkers, ReturnValue) == 0x000019, "Member 'AnimInstance_IsSyncGroupBetweenMarkers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_IsUsingMainInstanceMontageEvaluationData \ +static_assert(alignof(AnimInstance_IsUsingMainInstanceMontageEvaluationData) == 0x000001, "Wrong alignment on AnimInstance_IsUsingMainInstanceMontageEvaluationData"); \ +static_assert(sizeof(AnimInstance_IsUsingMainInstanceMontageEvaluationData) == 0x000001, "Wrong size on AnimInstance_IsUsingMainInstanceMontageEvaluationData"); \ +static_assert(offsetof(AnimInstance_IsUsingMainInstanceMontageEvaluationData, ReturnValue) == 0x000000, "Member 'AnimInstance_IsUsingMainInstanceMontageEvaluationData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetBlendTime \ +static_assert(alignof(AnimInstance_Montage_GetBlendTime) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetBlendTime"); \ +static_assert(sizeof(AnimInstance_Montage_GetBlendTime) == 0x000010, "Wrong size on AnimInstance_Montage_GetBlendTime"); \ +static_assert(offsetof(AnimInstance_Montage_GetBlendTime, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetBlendTime::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetBlendTime, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetBlendTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetCurrentSection \ +static_assert(alignof(AnimInstance_Montage_GetCurrentSection) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetCurrentSection"); \ +static_assert(sizeof(AnimInstance_Montage_GetCurrentSection) == 0x000010, "Wrong size on AnimInstance_Montage_GetCurrentSection"); \ +static_assert(offsetof(AnimInstance_Montage_GetCurrentSection, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetCurrentSection::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetCurrentSection, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetCurrentSection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetEffectivePlayRate \ +static_assert(alignof(AnimInstance_Montage_GetEffectivePlayRate) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetEffectivePlayRate"); \ +static_assert(sizeof(AnimInstance_Montage_GetEffectivePlayRate) == 0x000010, "Wrong size on AnimInstance_Montage_GetEffectivePlayRate"); \ +static_assert(offsetof(AnimInstance_Montage_GetEffectivePlayRate, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetEffectivePlayRate::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetEffectivePlayRate, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetEffectivePlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetIsStopped \ +static_assert(alignof(AnimInstance_Montage_GetIsStopped) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetIsStopped"); \ +static_assert(sizeof(AnimInstance_Montage_GetIsStopped) == 0x000010, "Wrong size on AnimInstance_Montage_GetIsStopped"); \ +static_assert(offsetof(AnimInstance_Montage_GetIsStopped, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetIsStopped::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetIsStopped, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetIsStopped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetPlayRate \ +static_assert(alignof(AnimInstance_Montage_GetPlayRate) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetPlayRate"); \ +static_assert(sizeof(AnimInstance_Montage_GetPlayRate) == 0x000010, "Wrong size on AnimInstance_Montage_GetPlayRate"); \ +static_assert(offsetof(AnimInstance_Montage_GetPlayRate, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetPlayRate::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetPlayRate, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_GetPosition \ +static_assert(alignof(AnimInstance_Montage_GetPosition) == 0x000008, "Wrong alignment on AnimInstance_Montage_GetPosition"); \ +static_assert(sizeof(AnimInstance_Montage_GetPosition) == 0x000010, "Wrong size on AnimInstance_Montage_GetPosition"); \ +static_assert(offsetof(AnimInstance_Montage_GetPosition, Montage) == 0x000000, "Member 'AnimInstance_Montage_GetPosition::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_GetPosition, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_GetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_IsActive \ +static_assert(alignof(AnimInstance_Montage_IsActive) == 0x000008, "Wrong alignment on AnimInstance_Montage_IsActive"); \ +static_assert(sizeof(AnimInstance_Montage_IsActive) == 0x000010, "Wrong size on AnimInstance_Montage_IsActive"); \ +static_assert(offsetof(AnimInstance_Montage_IsActive, Montage) == 0x000000, "Member 'AnimInstance_Montage_IsActive::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_IsActive, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_Montage_IsPlaying \ +static_assert(alignof(AnimInstance_Montage_IsPlaying) == 0x000008, "Wrong alignment on AnimInstance_Montage_IsPlaying"); \ +static_assert(sizeof(AnimInstance_Montage_IsPlaying) == 0x000010, "Wrong size on AnimInstance_Montage_IsPlaying"); \ +static_assert(offsetof(AnimInstance_Montage_IsPlaying, Montage) == 0x000000, "Member 'AnimInstance_Montage_IsPlaying::Montage' has a wrong offset!"); \ +static_assert(offsetof(AnimInstance_Montage_IsPlaying, ReturnValue) == 0x000008, "Member 'AnimInstance_Montage_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimInstance_TryGetPawnOwner \ +static_assert(alignof(AnimInstance_TryGetPawnOwner) == 0x000008, "Wrong alignment on AnimInstance_TryGetPawnOwner"); \ +static_assert(sizeof(AnimInstance_TryGetPawnOwner) == 0x000008, "Wrong size on AnimInstance_TryGetPawnOwner"); \ +static_assert(offsetof(AnimInstance_TryGetPawnOwner, ReturnValue) == 0x000000, "Member 'AnimInstance_TryGetPawnOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimInstance \ +static_assert(alignof(UAnimInstance) == 0x000010, "Wrong alignment on UAnimInstance"); \ +static_assert(sizeof(UAnimInstance) == 0x000350, "Wrong size on UAnimInstance"); \ +static_assert(offsetof(UAnimInstance, CurrentSkeleton) == 0x000028, "Member 'UAnimInstance::CurrentSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, RootMotionMode) == 0x000030, "Member 'UAnimInstance::RootMotionMode' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, OnMontageBlendingOut) == 0x000038, "Member 'UAnimInstance::OnMontageBlendingOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, OnMontageStarted) == 0x000048, "Member 'UAnimInstance::OnMontageStarted' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, OnMontageEnded) == 0x000058, "Member 'UAnimInstance::OnMontageEnded' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, OnAllMontageInstancesEnded) == 0x000068, "Member 'UAnimInstance::OnAllMontageInstancesEnded' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, NotifyQueue) == 0x000150, "Member 'UAnimInstance::NotifyQueue' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, ActiveAnimNotifyState) == 0x0001C0, "Member 'UAnimInstance::ActiveAnimNotifyState' has a wrong offset!"); \ +static_assert(offsetof(UAnimInstance, ActiveAnimNotifyEventReference) == 0x0001D0, "Member 'UAnimInstance::ActiveAnimNotifyEventReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelScriptActor_RemoteEvent \ +static_assert(alignof(LevelScriptActor_RemoteEvent) == 0x000004, "Wrong alignment on LevelScriptActor_RemoteEvent"); \ +static_assert(sizeof(LevelScriptActor_RemoteEvent) == 0x00000C, "Wrong size on LevelScriptActor_RemoteEvent"); \ +static_assert(offsetof(LevelScriptActor_RemoteEvent, EventName) == 0x000000, "Member 'LevelScriptActor_RemoteEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_RemoteEvent, ReturnValue) == 0x000008, "Member 'LevelScriptActor_RemoteEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelScriptActor_SetCinematicMode \ +static_assert(alignof(LevelScriptActor_SetCinematicMode) == 0x000001, "Wrong alignment on LevelScriptActor_SetCinematicMode"); \ +static_assert(sizeof(LevelScriptActor_SetCinematicMode) == 0x000005, "Wrong size on LevelScriptActor_SetCinematicMode"); \ +static_assert(offsetof(LevelScriptActor_SetCinematicMode, bCinematicMode) == 0x000000, "Member 'LevelScriptActor_SetCinematicMode::bCinematicMode' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_SetCinematicMode, bHidePlayer) == 0x000001, "Member 'LevelScriptActor_SetCinematicMode::bHidePlayer' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_SetCinematicMode, bAffectsHUD) == 0x000002, "Member 'LevelScriptActor_SetCinematicMode::bAffectsHUD' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_SetCinematicMode, bAffectsMovement) == 0x000003, "Member 'LevelScriptActor_SetCinematicMode::bAffectsMovement' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_SetCinematicMode, bAffectsTurning) == 0x000004, "Member 'LevelScriptActor_SetCinematicMode::bAffectsTurning' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelScriptActor_WorldOriginLocationChanged \ +static_assert(alignof(LevelScriptActor_WorldOriginLocationChanged) == 0x000004, "Wrong alignment on LevelScriptActor_WorldOriginLocationChanged"); \ +static_assert(sizeof(LevelScriptActor_WorldOriginLocationChanged) == 0x000018, "Wrong size on LevelScriptActor_WorldOriginLocationChanged"); \ +static_assert(offsetof(LevelScriptActor_WorldOriginLocationChanged, OldOriginLocation) == 0x000000, "Member 'LevelScriptActor_WorldOriginLocationChanged::OldOriginLocation' has a wrong offset!"); \ +static_assert(offsetof(LevelScriptActor_WorldOriginLocationChanged, NewOriginLocation) == 0x00000C, "Member 'LevelScriptActor_WorldOriginLocationChanged::NewOriginLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelScriptActor \ +static_assert(alignof(ALevelScriptActor) == 0x000008, "Wrong alignment on ALevelScriptActor"); \ +static_assert(sizeof(ALevelScriptActor) == 0x0002A0, "Wrong size on ALevelScriptActor"); \ + +#define DUMPER7_ASSERTS_IInterface_AssetUserData \ +static_assert(alignof(IInterface_AssetUserData) == 0x000001, "Wrong alignment on IInterface_AssetUserData"); \ +static_assert(sizeof(IInterface_AssetUserData) == 0x000001, "Wrong size on IInterface_AssetUserData"); \ + +#define DUMPER7_ASSERTS_UDamageType \ +static_assert(alignof(UDamageType) == 0x000008, "Wrong alignment on UDamageType"); \ +static_assert(sizeof(UDamageType) == 0x000040, "Wrong size on UDamageType"); \ +static_assert(offsetof(UDamageType, DamageImpulse) == 0x00002C, "Member 'UDamageType::DamageImpulse' has a wrong offset!"); \ +static_assert(offsetof(UDamageType, DestructibleImpulse) == 0x000030, "Member 'UDamageType::DestructibleImpulse' has a wrong offset!"); \ +static_assert(offsetof(UDamageType, DestructibleDamageSpreadScale) == 0x000034, "Member 'UDamageType::DestructibleDamageSpreadScale' has a wrong offset!"); \ +static_assert(offsetof(UDamageType, DamageFalloff) == 0x000038, "Member 'UDamageType::DamageFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintAsyncActionBase \ +static_assert(alignof(UBlueprintAsyncActionBase) == 0x000008, "Wrong alignment on UBlueprintAsyncActionBase"); \ +static_assert(sizeof(UBlueprintAsyncActionBase) == 0x000030, "Wrong size on UBlueprintAsyncActionBase"); \ + +#define DUMPER7_ASSERTS_UPoseWatch \ +static_assert(alignof(UPoseWatch) == 0x000008, "Wrong alignment on UPoseWatch"); \ +static_assert(sizeof(UPoseWatch) == 0x000028, "Wrong size on UPoseWatch"); \ + +#define DUMPER7_ASSERTS_UBlueprintGeneratedClass \ +static_assert(alignof(UBlueprintGeneratedClass) == 0x000008, "Wrong alignment on UBlueprintGeneratedClass"); \ +static_assert(sizeof(UBlueprintGeneratedClass) == 0x000368, "Wrong size on UBlueprintGeneratedClass"); \ +static_assert(offsetof(UBlueprintGeneratedClass, NumReplicatedProperties) == 0x000208, "Member 'UBlueprintGeneratedClass::NumReplicatedProperties' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, DynamicBindingObjects) == 0x000210, "Member 'UBlueprintGeneratedClass::DynamicBindingObjects' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, ComponentTemplates) == 0x000220, "Member 'UBlueprintGeneratedClass::ComponentTemplates' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, Timelines) == 0x000230, "Member 'UBlueprintGeneratedClass::Timelines' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, ComponentClassOverrides) == 0x000240, "Member 'UBlueprintGeneratedClass::ComponentClassOverrides' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, FieldNotifies) == 0x000250, "Member 'UBlueprintGeneratedClass::FieldNotifies' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, SimpleConstructionScript) == 0x000268, "Member 'UBlueprintGeneratedClass::SimpleConstructionScript' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, InheritableComponentHandler) == 0x000270, "Member 'UBlueprintGeneratedClass::InheritableComponentHandler' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, UberGraphFramePointerProperty) == 0x000278, "Member 'UBlueprintGeneratedClass::UberGraphFramePointerProperty' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, UberGraphFunction) == 0x000288, "Member 'UBlueprintGeneratedClass::UberGraphFunction' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, CookedPropertyGuids) == 0x000290, "Member 'UBlueprintGeneratedClass::CookedPropertyGuids' has a wrong offset!"); \ +static_assert(offsetof(UBlueprintGeneratedClass, CookedComponentInstancingData) == 0x0002E0, "Member 'UBlueprintGeneratedClass::CookedComponentInstancingData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeSoundClass \ +static_assert(alignof(USoundNodeSoundClass) == 0x000008, "Wrong alignment on USoundNodeSoundClass"); \ +static_assert(sizeof(USoundNodeSoundClass) == 0x000058, "Wrong size on USoundNodeSoundClass"); \ +static_assert(offsetof(USoundNodeSoundClass, SoundClassOverride) == 0x000048, "Member 'USoundNodeSoundClass::SoundClassOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFontSample \ +static_assert(alignof(UMaterialExpressionFontSample) == 0x000008, "Wrong alignment on UMaterialExpressionFontSample"); \ +static_assert(sizeof(UMaterialExpressionFontSample) == 0x0000C0, "Wrong size on UMaterialExpressionFontSample"); \ +static_assert(offsetof(UMaterialExpressionFontSample, Font) == 0x0000B0, "Member 'UMaterialExpressionFontSample::Font' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFontSample, FontTexturePage) == 0x0000B8, "Member 'UMaterialExpressionFontSample::FontTexturePage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncActionHandleSaveGame_AsyncLoadGameFromSlot \ +static_assert(alignof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot) == 0x000008, "Wrong alignment on AsyncActionHandleSaveGame_AsyncLoadGameFromSlot"); \ +static_assert(sizeof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot) == 0x000028, "Wrong size on AsyncActionHandleSaveGame_AsyncLoadGameFromSlot"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot, WorldContextObject) == 0x000000, "Member 'AsyncActionHandleSaveGame_AsyncLoadGameFromSlot::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot, SlotName) == 0x000008, "Member 'AsyncActionHandleSaveGame_AsyncLoadGameFromSlot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot, UserIndex) == 0x000018, "Member 'AsyncActionHandleSaveGame_AsyncLoadGameFromSlot::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncLoadGameFromSlot, ReturnValue) == 0x000020, "Member 'AsyncActionHandleSaveGame_AsyncLoadGameFromSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncActionHandleSaveGame_AsyncSaveGameToSlot \ +static_assert(alignof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot) == 0x000008, "Wrong alignment on AsyncActionHandleSaveGame_AsyncSaveGameToSlot"); \ +static_assert(sizeof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot) == 0x000030, "Wrong size on AsyncActionHandleSaveGame_AsyncSaveGameToSlot"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot, WorldContextObject) == 0x000000, "Member 'AsyncActionHandleSaveGame_AsyncSaveGameToSlot::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot, SaveGameObject_0) == 0x000008, "Member 'AsyncActionHandleSaveGame_AsyncSaveGameToSlot::SaveGameObject_0' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot, SlotName) == 0x000010, "Member 'AsyncActionHandleSaveGame_AsyncSaveGameToSlot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot, UserIndex) == 0x000020, "Member 'AsyncActionHandleSaveGame_AsyncSaveGameToSlot::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionHandleSaveGame_AsyncSaveGameToSlot, ReturnValue) == 0x000028, "Member 'AsyncActionHandleSaveGame_AsyncSaveGameToSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionHandleSaveGame \ +static_assert(alignof(UAsyncActionHandleSaveGame) == 0x000008, "Wrong alignment on UAsyncActionHandleSaveGame"); \ +static_assert(sizeof(UAsyncActionHandleSaveGame) == 0x000068, "Wrong size on UAsyncActionHandleSaveGame"); \ +static_assert(offsetof(UAsyncActionHandleSaveGame, Completed) == 0x000030, "Member 'UAsyncActionHandleSaveGame::Completed' has a wrong offset!"); \ +static_assert(offsetof(UAsyncActionHandleSaveGame, SaveGameObject) == 0x000060, "Member 'UAsyncActionHandleSaveGame::SaveGameObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraActor_GetAutoActivatePlayerIndex \ +static_assert(alignof(CameraActor_GetAutoActivatePlayerIndex) == 0x000004, "Wrong alignment on CameraActor_GetAutoActivatePlayerIndex"); \ +static_assert(sizeof(CameraActor_GetAutoActivatePlayerIndex) == 0x000004, "Wrong size on CameraActor_GetAutoActivatePlayerIndex"); \ +static_assert(offsetof(CameraActor_GetAutoActivatePlayerIndex, ReturnValue) == 0x000000, "Member 'CameraActor_GetAutoActivatePlayerIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACameraActor \ +static_assert(alignof(ACameraActor) == 0x000010, "Wrong alignment on ACameraActor"); \ +static_assert(sizeof(ACameraActor) == 0x0009B0, "Wrong size on ACameraActor"); \ +static_assert(offsetof(ACameraActor, AutoActivateForPlayer) == 0x000298, "Member 'ACameraActor::AutoActivateForPlayer' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, CameraComponent) == 0x0002A0, "Member 'ACameraActor::CameraComponent' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, SceneComponent) == 0x0002A8, "Member 'ACameraActor::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, AspectRatio) == 0x0002B4, "Member 'ACameraActor::AspectRatio' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, FOVAngle) == 0x0002B8, "Member 'ACameraActor::FOVAngle' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, PostProcessBlendWeight) == 0x0002BC, "Member 'ACameraActor::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(ACameraActor, PostProcessSettings) == 0x0002C0, "Member 'ACameraActor::PostProcessSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioEngineSubsystem \ +static_assert(alignof(UAudioEngineSubsystem) == 0x000008, "Wrong alignment on UAudioEngineSubsystem"); \ +static_assert(sizeof(UAudioEngineSubsystem) == 0x000030, "Wrong size on UAudioEngineSubsystem"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTruncateLWC \ +static_assert(alignof(UMaterialExpressionTruncateLWC) == 0x000008, "Wrong alignment on UMaterialExpressionTruncateLWC"); \ +static_assert(sizeof(UMaterialExpressionTruncateLWC) == 0x0000D8, "Wrong size on UMaterialExpressionTruncateLWC"); \ +static_assert(offsetof(UMaterialExpressionTruncateLWC, Input) == 0x0000B0, "Member 'UMaterialExpressionTruncateLWC::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModelComponent \ +static_assert(alignof(UModelComponent) == 0x000010, "Wrong alignment on UModelComponent"); \ +static_assert(sizeof(UModelComponent) == 0x0005B0, "Wrong size on UModelComponent"); \ +static_assert(offsetof(UModelComponent, ModelBodySetup) == 0x000588, "Member 'UModelComponent::ModelBodySetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundEffectSubmixPreset \ +static_assert(alignof(USoundEffectSubmixPreset) == 0x000008, "Wrong alignment on USoundEffectSubmixPreset"); \ +static_assert(sizeof(USoundEffectSubmixPreset) == 0x000068, "Wrong size on USoundEffectSubmixPreset"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPreSkinnedLocalBounds \ +static_assert(alignof(UMaterialExpressionPreSkinnedLocalBounds) == 0x000008, "Wrong alignment on UMaterialExpressionPreSkinnedLocalBounds"); \ +static_assert(sizeof(UMaterialExpressionPreSkinnedLocalBounds) == 0x0000B0, "Wrong size on UMaterialExpressionPreSkinnedLocalBounds"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_Conv_GuidToString \ +static_assert(alignof(KismetGuidLibrary_Conv_GuidToString) == 0x000008, "Wrong alignment on KismetGuidLibrary_Conv_GuidToString"); \ +static_assert(sizeof(KismetGuidLibrary_Conv_GuidToString) == 0x000020, "Wrong size on KismetGuidLibrary_Conv_GuidToString"); \ +static_assert(offsetof(KismetGuidLibrary_Conv_GuidToString, InGuid) == 0x000000, "Member 'KismetGuidLibrary_Conv_GuidToString::InGuid' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_Conv_GuidToString, ReturnValue) == 0x000010, "Member 'KismetGuidLibrary_Conv_GuidToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_EqualEqual_GuidGuid \ +static_assert(alignof(KismetGuidLibrary_EqualEqual_GuidGuid) == 0x000004, "Wrong alignment on KismetGuidLibrary_EqualEqual_GuidGuid"); \ +static_assert(sizeof(KismetGuidLibrary_EqualEqual_GuidGuid) == 0x000024, "Wrong size on KismetGuidLibrary_EqualEqual_GuidGuid"); \ +static_assert(offsetof(KismetGuidLibrary_EqualEqual_GuidGuid, A) == 0x000000, "Member 'KismetGuidLibrary_EqualEqual_GuidGuid::A' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_EqualEqual_GuidGuid, B) == 0x000010, "Member 'KismetGuidLibrary_EqualEqual_GuidGuid::B' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_EqualEqual_GuidGuid, ReturnValue) == 0x000020, "Member 'KismetGuidLibrary_EqualEqual_GuidGuid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_Invalidate_Guid \ +static_assert(alignof(KismetGuidLibrary_Invalidate_Guid) == 0x000004, "Wrong alignment on KismetGuidLibrary_Invalidate_Guid"); \ +static_assert(sizeof(KismetGuidLibrary_Invalidate_Guid) == 0x000010, "Wrong size on KismetGuidLibrary_Invalidate_Guid"); \ +static_assert(offsetof(KismetGuidLibrary_Invalidate_Guid, InGuid) == 0x000000, "Member 'KismetGuidLibrary_Invalidate_Guid::InGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_IsValid_Guid \ +static_assert(alignof(KismetGuidLibrary_IsValid_Guid) == 0x000004, "Wrong alignment on KismetGuidLibrary_IsValid_Guid"); \ +static_assert(sizeof(KismetGuidLibrary_IsValid_Guid) == 0x000014, "Wrong size on KismetGuidLibrary_IsValid_Guid"); \ +static_assert(offsetof(KismetGuidLibrary_IsValid_Guid, InGuid) == 0x000000, "Member 'KismetGuidLibrary_IsValid_Guid::InGuid' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_IsValid_Guid, ReturnValue) == 0x000010, "Member 'KismetGuidLibrary_IsValid_Guid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_NewGuid \ +static_assert(alignof(KismetGuidLibrary_NewGuid) == 0x000004, "Wrong alignment on KismetGuidLibrary_NewGuid"); \ +static_assert(sizeof(KismetGuidLibrary_NewGuid) == 0x000010, "Wrong size on KismetGuidLibrary_NewGuid"); \ +static_assert(offsetof(KismetGuidLibrary_NewGuid, ReturnValue) == 0x000000, "Member 'KismetGuidLibrary_NewGuid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_NotEqual_GuidGuid \ +static_assert(alignof(KismetGuidLibrary_NotEqual_GuidGuid) == 0x000004, "Wrong alignment on KismetGuidLibrary_NotEqual_GuidGuid"); \ +static_assert(sizeof(KismetGuidLibrary_NotEqual_GuidGuid) == 0x000024, "Wrong size on KismetGuidLibrary_NotEqual_GuidGuid"); \ +static_assert(offsetof(KismetGuidLibrary_NotEqual_GuidGuid, A) == 0x000000, "Member 'KismetGuidLibrary_NotEqual_GuidGuid::A' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_NotEqual_GuidGuid, B) == 0x000010, "Member 'KismetGuidLibrary_NotEqual_GuidGuid::B' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_NotEqual_GuidGuid, ReturnValue) == 0x000020, "Member 'KismetGuidLibrary_NotEqual_GuidGuid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetGuidLibrary_Parse_StringToGuid \ +static_assert(alignof(KismetGuidLibrary_Parse_StringToGuid) == 0x000008, "Wrong alignment on KismetGuidLibrary_Parse_StringToGuid"); \ +static_assert(sizeof(KismetGuidLibrary_Parse_StringToGuid) == 0x000028, "Wrong size on KismetGuidLibrary_Parse_StringToGuid"); \ +static_assert(offsetof(KismetGuidLibrary_Parse_StringToGuid, GuidString) == 0x000000, "Member 'KismetGuidLibrary_Parse_StringToGuid::GuidString' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_Parse_StringToGuid, OutGuid) == 0x000010, "Member 'KismetGuidLibrary_Parse_StringToGuid::OutGuid' has a wrong offset!"); \ +static_assert(offsetof(KismetGuidLibrary_Parse_StringToGuid, Success) == 0x000020, "Member 'KismetGuidLibrary_Parse_StringToGuid::Success' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetGuidLibrary \ +static_assert(alignof(UKismetGuidLibrary) == 0x000008, "Wrong alignment on UKismetGuidLibrary"); \ +static_assert(sizeof(UKismetGuidLibrary) == 0x000028, "Wrong size on UKismetGuidLibrary"); \ + +#define DUMPER7_ASSERTS_IActiveSoundUpdateInterface \ +static_assert(alignof(IActiveSoundUpdateInterface) == 0x000001, "Wrong alignment on IActiveSoundUpdateInterface"); \ +static_assert(sizeof(IActiveSoundUpdateInterface) == 0x000001, "Wrong size on IActiveSoundUpdateInterface"); \ + +#define DUMPER7_ASSERTS_UPoseWatchElement \ +static_assert(alignof(UPoseWatchElement) == 0x000008, "Wrong alignment on UPoseWatchElement"); \ +static_assert(sizeof(UPoseWatchElement) == 0x000028, "Wrong size on UPoseWatchElement"); \ + +#define DUMPER7_ASSERTS_URPCDoSDetectionConfig \ +static_assert(alignof(URPCDoSDetectionConfig) == 0x000008, "Wrong alignment on URPCDoSDetectionConfig"); \ +static_assert(sizeof(URPCDoSDetectionConfig) == 0x000088, "Wrong size on URPCDoSDetectionConfig"); \ +static_assert(offsetof(URPCDoSDetectionConfig, bRPCDoSDetection) == 0x000028, "Member 'URPCDoSDetectionConfig::bRPCDoSDetection' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, bRPCDoSAnalytics) == 0x000029, "Member 'URPCDoSDetectionConfig::bRPCDoSAnalytics' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, HitchTimeQuotaMS) == 0x00002C, "Member 'URPCDoSDetectionConfig::HitchTimeQuotaMS' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, HitchSuspendDetectionTimeMS) == 0x000030, "Member 'URPCDoSDetectionConfig::HitchSuspendDetectionTimeMS' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, DetectionSeverity) == 0x000038, "Member 'URPCDoSDetectionConfig::DetectionSeverity' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, InitialConnectToleranceMS) == 0x000048, "Member 'URPCDoSDetectionConfig::InitialConnectToleranceMS' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, RPCBlockWhitelist) == 0x000050, "Member 'URPCDoSDetectionConfig::RPCBlockWhitelist' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, RPCBlockAllowlist) == 0x000060, "Member 'URPCDoSDetectionConfig::RPCBlockAllowlist' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, RPCAnalyticsThresholds) == 0x000070, "Member 'URPCDoSDetectionConfig::RPCAnalyticsThresholds' has a wrong offset!"); \ +static_assert(offsetof(URPCDoSDetectionConfig, RPCAnalyticsOverrideChance) == 0x000080, "Member 'URPCDoSDetectionConfig::RPCAnalyticsOverrideChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDeltaTime \ +static_assert(alignof(UMaterialExpressionDeltaTime) == 0x000008, "Wrong alignment on UMaterialExpressionDeltaTime"); \ +static_assert(sizeof(UMaterialExpressionDeltaTime) == 0x0000B0, "Wrong size on UMaterialExpressionDeltaTime"); \ + +#define DUMPER7_ASSERTS_UObjectElementObjectInterface \ +static_assert(alignof(UObjectElementObjectInterface) == 0x000008, "Wrong alignment on UObjectElementObjectInterface"); \ +static_assert(sizeof(UObjectElementObjectInterface) == 0x000030, "Wrong size on UObjectElementObjectInterface"); \ + +#define DUMPER7_ASSERTS_UAnimationAssetExtensions \ +static_assert(alignof(UAnimationAssetExtensions) == 0x000008, "Wrong alignment on UAnimationAssetExtensions"); \ +static_assert(sizeof(UAnimationAssetExtensions) == 0x000028, "Wrong size on UAnimationAssetExtensions"); \ + +#define DUMPER7_ASSERTS_UNetworkSubsystem \ +static_assert(alignof(UNetworkSubsystem) == 0x000008, "Wrong alignment on UNetworkSubsystem"); \ +static_assert(sizeof(UNetworkSubsystem) == 0x000080, "Wrong size on UNetworkSubsystem"); \ + +#define DUMPER7_ASSERTS_UAnimBlueprintClassSubsystem_PropertyAccess \ +static_assert(alignof(UAnimBlueprintClassSubsystem_PropertyAccess) == 0x000008, "Wrong alignment on UAnimBlueprintClassSubsystem_PropertyAccess"); \ +static_assert(sizeof(UAnimBlueprintClassSubsystem_PropertyAccess) == 0x000028, "Wrong size on UAnimBlueprintClassSubsystem_PropertyAccess"); \ + +#define DUMPER7_ASSERTS_AutoDestroySubsystem_OnActorEndPlay \ +static_assert(alignof(AutoDestroySubsystem_OnActorEndPlay) == 0x000008, "Wrong alignment on AutoDestroySubsystem_OnActorEndPlay"); \ +static_assert(sizeof(AutoDestroySubsystem_OnActorEndPlay) == 0x000010, "Wrong size on AutoDestroySubsystem_OnActorEndPlay"); \ +static_assert(offsetof(AutoDestroySubsystem_OnActorEndPlay, Actor) == 0x000000, "Member 'AutoDestroySubsystem_OnActorEndPlay::Actor' has a wrong offset!"); \ +static_assert(offsetof(AutoDestroySubsystem_OnActorEndPlay, EndPlayReason) == 0x000008, "Member 'AutoDestroySubsystem_OnActorEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAutoDestroySubsystem \ +static_assert(alignof(UAutoDestroySubsystem) == 0x000008, "Wrong alignment on UAutoDestroySubsystem"); \ +static_assert(sizeof(UAutoDestroySubsystem) == 0x000050, "Wrong size on UAutoDestroySubsystem"); \ +static_assert(offsetof(UAutoDestroySubsystem, ActorsToPoll) == 0x000040, "Member 'UAutoDestroySubsystem::ActorsToPoll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInterface_AnimCurveMetaData \ +static_assert(alignof(IInterface_AnimCurveMetaData) == 0x000001, "Wrong alignment on IInterface_AnimCurveMetaData"); \ +static_assert(sizeof(IInterface_AnimCurveMetaData) == 0x000001, "Wrong size on IInterface_AnimCurveMetaData"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTime \ +static_assert(alignof(UMaterialExpressionTime) == 0x000008, "Wrong alignment on UMaterialExpressionTime"); \ +static_assert(sizeof(UMaterialExpressionTime) == 0x0000B8, "Wrong size on UMaterialExpressionTime"); \ +static_assert(offsetof(UMaterialExpressionTime, Period) == 0x0000B4, "Member 'UMaterialExpressionTime::Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCurveMetaData \ +static_assert(alignof(UAnimCurveMetaData) == 0x000008, "Wrong alignment on UAnimCurveMetaData"); \ +static_assert(sizeof(UAnimCurveMetaData) == 0x0000A0, "Wrong size on UAnimCurveMetaData"); \ +static_assert(offsetof(UAnimCurveMetaData, CurveMetaData) == 0x000030, "Member 'UAnimCurveMetaData::CurveMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFontFace \ +static_assert(alignof(UFontFace) == 0x000008, "Wrong alignment on UFontFace"); \ +static_assert(sizeof(UFontFace) == 0x000068, "Wrong size on UFontFace"); \ +static_assert(offsetof(UFontFace, SourceFilename) == 0x000030, "Member 'UFontFace::SourceFilename' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, Hinting) == 0x000040, "Member 'UFontFace::Hinting' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, LoadingPolicy) == 0x000041, "Member 'UFontFace::LoadingPolicy' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, LayoutMethod) == 0x000042, "Member 'UFontFace::LayoutMethod' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, AscendOverriddenValue) == 0x000044, "Member 'UFontFace::AscendOverriddenValue' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, bIsAscendOverridden) == 0x000048, "Member 'UFontFace::bIsAscendOverridden' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, DescendOverriddenValue) == 0x00004C, "Member 'UFontFace::DescendOverriddenValue' has a wrong offset!"); \ +static_assert(offsetof(UFontFace, bIsDescendOverridden) == 0x000050, "Member 'UFontFace::bIsDescendOverridden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeBranch \ +static_assert(alignof(USoundNodeBranch) == 0x000008, "Wrong alignment on USoundNodeBranch"); \ +static_assert(sizeof(USoundNodeBranch) == 0x000050, "Wrong size on USoundNodeBranch"); \ +static_assert(offsetof(USoundNodeBranch, BoolParameterName) == 0x000048, "Member 'USoundNodeBranch::BoolParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionOneMinus \ +static_assert(alignof(UMaterialExpressionOneMinus) == 0x000008, "Wrong alignment on UMaterialExpressionOneMinus"); \ +static_assert(sizeof(UMaterialExpressionOneMinus) == 0x0000D8, "Wrong size on UMaterialExpressionOneMinus"); \ +static_assert(offsetof(UMaterialExpressionOneMinus, Input) == 0x0000B0, "Member 'UMaterialExpressionOneMinus::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RawAnimSequenceTrackExtensions_GetPositionalKeys \ +static_assert(alignof(RawAnimSequenceTrackExtensions_GetPositionalKeys) == 0x000008, "Wrong alignment on RawAnimSequenceTrackExtensions_GetPositionalKeys"); \ +static_assert(sizeof(RawAnimSequenceTrackExtensions_GetPositionalKeys) == 0x000040, "Wrong size on RawAnimSequenceTrackExtensions_GetPositionalKeys"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetPositionalKeys, Track) == 0x000000, "Member 'RawAnimSequenceTrackExtensions_GetPositionalKeys::Track' has a wrong offset!"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetPositionalKeys, ReturnValue) == 0x000030, "Member 'RawAnimSequenceTrackExtensions_GetPositionalKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RawAnimSequenceTrackExtensions_GetRotationalKeys \ +static_assert(alignof(RawAnimSequenceTrackExtensions_GetRotationalKeys) == 0x000008, "Wrong alignment on RawAnimSequenceTrackExtensions_GetRotationalKeys"); \ +static_assert(sizeof(RawAnimSequenceTrackExtensions_GetRotationalKeys) == 0x000040, "Wrong size on RawAnimSequenceTrackExtensions_GetRotationalKeys"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetRotationalKeys, Track) == 0x000000, "Member 'RawAnimSequenceTrackExtensions_GetRotationalKeys::Track' has a wrong offset!"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetRotationalKeys, ReturnValue) == 0x000030, "Member 'RawAnimSequenceTrackExtensions_GetRotationalKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RawAnimSequenceTrackExtensions_GetScaleKeys \ +static_assert(alignof(RawAnimSequenceTrackExtensions_GetScaleKeys) == 0x000008, "Wrong alignment on RawAnimSequenceTrackExtensions_GetScaleKeys"); \ +static_assert(sizeof(RawAnimSequenceTrackExtensions_GetScaleKeys) == 0x000040, "Wrong size on RawAnimSequenceTrackExtensions_GetScaleKeys"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetScaleKeys, Track) == 0x000000, "Member 'RawAnimSequenceTrackExtensions_GetScaleKeys::Track' has a wrong offset!"); \ +static_assert(offsetof(RawAnimSequenceTrackExtensions_GetScaleKeys, ReturnValue) == 0x000030, "Member 'RawAnimSequenceTrackExtensions_GetScaleKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URawAnimSequenceTrackExtensions \ +static_assert(alignof(URawAnimSequenceTrackExtensions) == 0x000008, "Wrong alignment on URawAnimSequenceTrackExtensions"); \ +static_assert(sizeof(URawAnimSequenceTrackExtensions) == 0x000028, "Wrong size on URawAnimSequenceTrackExtensions"); \ + +#define DUMPER7_ASSERTS_UAssetExportTask \ +static_assert(alignof(UAssetExportTask) == 0x000008, "Wrong alignment on UAssetExportTask"); \ +static_assert(sizeof(UAssetExportTask) == 0x000078, "Wrong size on UAssetExportTask"); \ +static_assert(offsetof(UAssetExportTask, Object) == 0x000028, "Member 'UAssetExportTask::Object' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, Exporter) == 0x000030, "Member 'UAssetExportTask::Exporter' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, Filename) == 0x000038, "Member 'UAssetExportTask::Filename' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bSelected) == 0x000048, "Member 'UAssetExportTask::bSelected' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bReplaceIdentical) == 0x000049, "Member 'UAssetExportTask::bReplaceIdentical' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bPrompt) == 0x00004A, "Member 'UAssetExportTask::bPrompt' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bAutomated) == 0x00004B, "Member 'UAssetExportTask::bAutomated' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bUseFileArchive) == 0x00004C, "Member 'UAssetExportTask::bUseFileArchive' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, bWriteEmptyFiles) == 0x00004D, "Member 'UAssetExportTask::bWriteEmptyFiles' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, IgnoreObjectList) == 0x000050, "Member 'UAssetExportTask::IgnoreObjectList' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, Options) == 0x000060, "Member 'UAssetExportTask::Options' has a wrong offset!"); \ +static_assert(offsetof(UAssetExportTask, Errors) == 0x000068, "Member 'UAssetExportTask::Errors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState \ +static_assert(alignof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState) == 0x000008, "Wrong alignment on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState"); \ +static_assert(sizeof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState) == 0x000048, "Wrong size on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState, EventReference) == 0x000000, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState, AnimInstance) == 0x000030, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState, StateName) == 0x000038, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState::StateName' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState, ReturnValue) == 0x000040, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine \ +static_assert(alignof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine) == 0x000008, "Wrong alignment on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine"); \ +static_assert(sizeof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine) == 0x000050, "Wrong size on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine, EventReference) == 0x000000, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine, AnimInstance) == 0x000030, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine, StateMachineName) == 0x000038, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine, StateName) == 0x000040, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine::StateName' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine, ReturnValue) == 0x000048, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine \ +static_assert(alignof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine) == 0x000008, "Wrong alignment on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine"); \ +static_assert(sizeof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine) == 0x000048, "Wrong size on AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine, EventReference) == 0x000000, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine, AnimInstance) == 0x000030, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine, StateMachineName) == 0x000038, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine::StateMachineName' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine, ReturnValue) == 0x000040, "Member 'AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyStateMachineInspectionLibrary \ +static_assert(alignof(UAnimNotifyStateMachineInspectionLibrary) == 0x000008, "Wrong alignment on UAnimNotifyStateMachineInspectionLibrary"); \ +static_assert(sizeof(UAnimNotifyStateMachineInspectionLibrary) == 0x000028, "Wrong size on UAnimNotifyStateMachineInspectionLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstant \ +static_assert(alignof(UMaterialExpressionConstant) == 0x000008, "Wrong alignment on UMaterialExpressionConstant"); \ +static_assert(sizeof(UMaterialExpressionConstant) == 0x0000B8, "Wrong size on UMaterialExpressionConstant"); \ +static_assert(offsetof(UMaterialExpressionConstant, R) == 0x0000B0, "Member 'UMaterialExpressionConstant::R' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetManagerSettings \ +static_assert(alignof(UAssetManagerSettings) == 0x000008, "Wrong alignment on UAssetManagerSettings"); \ +static_assert(sizeof(UAssetManagerSettings) == 0x000100, "Wrong size on UAssetManagerSettings"); \ +static_assert(offsetof(UAssetManagerSettings, PrimaryAssetTypesToScan) == 0x000038, "Member 'UAssetManagerSettings::PrimaryAssetTypesToScan' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, DirectoriesToExclude) == 0x000048, "Member 'UAssetManagerSettings::DirectoriesToExclude' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, PrimaryAssetRules) == 0x000058, "Member 'UAssetManagerSettings::PrimaryAssetRules' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, CustomPrimaryAssetRules) == 0x000068, "Member 'UAssetManagerSettings::CustomPrimaryAssetRules' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, bOnlyCookProductionAssets) == 0x000078, "Member 'UAssetManagerSettings::bOnlyCookProductionAssets' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, bShouldManagerDetermineTypeAndName) == 0x000079, "Member 'UAssetManagerSettings::bShouldManagerDetermineTypeAndName' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, bShouldGuessTypeAndNameInEditor) == 0x00007A, "Member 'UAssetManagerSettings::bShouldGuessTypeAndNameInEditor' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, bShouldAcquireMissingChunksOnLoad) == 0x00007B, "Member 'UAssetManagerSettings::bShouldAcquireMissingChunksOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, bShouldWarnAboutInvalidAssets) == 0x00007C, "Member 'UAssetManagerSettings::bShouldWarnAboutInvalidAssets' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, PrimaryAssetIdRedirects) == 0x000080, "Member 'UAssetManagerSettings::PrimaryAssetIdRedirects' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, PrimaryAssetTypeRedirects) == 0x000090, "Member 'UAssetManagerSettings::PrimaryAssetTypeRedirects' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, AssetPathRedirects) == 0x0000A0, "Member 'UAssetManagerSettings::AssetPathRedirects' has a wrong offset!"); \ +static_assert(offsetof(UAssetManagerSettings, MetaDataTagsForAssetRegistry) == 0x0000B0, "Member 'UAssetManagerSettings::MetaDataTagsForAssetRegistry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlendProfile \ +static_assert(alignof(UBlendProfile) == 0x000008, "Wrong alignment on UBlendProfile"); \ +static_assert(sizeof(UBlendProfile) == 0x000050, "Wrong size on UBlendProfile"); \ +static_assert(offsetof(UBlendProfile, OwningSkeleton) == 0x000030, "Member 'UBlendProfile::OwningSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UBlendProfile, ProfileEntries) == 0x000038, "Member 'UBlendProfile::ProfileEntries' has a wrong offset!"); \ +static_assert(offsetof(UBlendProfile, Mode) == 0x000048, "Member 'UBlendProfile::Mode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncPhysicsData \ +static_assert(alignof(UAsyncPhysicsData) == 0x000008, "Wrong alignment on UAsyncPhysicsData"); \ +static_assert(sizeof(UAsyncPhysicsData) == 0x000030, "Wrong size on UAsyncPhysicsData"); \ +static_assert(offsetof(UAsyncPhysicsData, ServerFrame) == 0x000028, "Member 'UAsyncPhysicsData::ServerFrame' has a wrong offset!"); \ +static_assert(offsetof(UAsyncPhysicsData, ReplicationRedundancy) == 0x00002C, "Member 'UAsyncPhysicsData::ReplicationRedundancy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeOscillator \ +static_assert(alignof(USoundNodeOscillator) == 0x000008, "Wrong alignment on USoundNodeOscillator"); \ +static_assert(sizeof(USoundNodeOscillator) == 0x000070, "Wrong size on USoundNodeOscillator"); \ +static_assert(offsetof(USoundNodeOscillator, AmplitudeMin) == 0x00004C, "Member 'USoundNodeOscillator::AmplitudeMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, AmplitudeMax) == 0x000050, "Member 'USoundNodeOscillator::AmplitudeMax' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, FrequencyMin) == 0x000054, "Member 'USoundNodeOscillator::FrequencyMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, FrequencyMax) == 0x000058, "Member 'USoundNodeOscillator::FrequencyMax' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, OffsetMin) == 0x00005C, "Member 'USoundNodeOscillator::OffsetMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, OffsetMax) == 0x000060, "Member 'USoundNodeOscillator::OffsetMax' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, CenterMin) == 0x000064, "Member 'USoundNodeOscillator::CenterMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeOscillator, CenterMax) == 0x000068, "Member 'USoundNodeOscillator::CenterMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionEyeAdaptationInverse \ +static_assert(alignof(UMaterialExpressionEyeAdaptationInverse) == 0x000008, "Wrong alignment on UMaterialExpressionEyeAdaptationInverse"); \ +static_assert(sizeof(UMaterialExpressionEyeAdaptationInverse) == 0x000100, "Wrong size on UMaterialExpressionEyeAdaptationInverse"); \ +static_assert(offsetof(UMaterialExpressionEyeAdaptationInverse, LightValueInput) == 0x0000B0, "Member 'UMaterialExpressionEyeAdaptationInverse::LightValueInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionEyeAdaptationInverse, AlphaInput) == 0x0000D8, "Member 'UMaterialExpressionEyeAdaptationInverse::AlphaInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioPanelWidgetInterface_GetEditorName \ +static_assert(alignof(AudioPanelWidgetInterface_GetEditorName) == 0x000008, "Wrong alignment on AudioPanelWidgetInterface_GetEditorName"); \ +static_assert(sizeof(AudioPanelWidgetInterface_GetEditorName) == 0x000018, "Wrong size on AudioPanelWidgetInterface_GetEditorName"); \ +static_assert(offsetof(AudioPanelWidgetInterface_GetEditorName, ReturnValue) == 0x000000, "Member 'AudioPanelWidgetInterface_GetEditorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioPanelWidgetInterface_GetIconBrushName \ +static_assert(alignof(AudioPanelWidgetInterface_GetIconBrushName) == 0x000004, "Wrong alignment on AudioPanelWidgetInterface_GetIconBrushName"); \ +static_assert(sizeof(AudioPanelWidgetInterface_GetIconBrushName) == 0x000008, "Wrong size on AudioPanelWidgetInterface_GetIconBrushName"); \ +static_assert(offsetof(AudioPanelWidgetInterface_GetIconBrushName, ReturnValue) == 0x000000, "Member 'AudioPanelWidgetInterface_GetIconBrushName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAudioPanelWidgetInterface \ +static_assert(alignof(IAudioPanelWidgetInterface) == 0x000001, "Wrong alignment on IAudioPanelWidgetInterface"); \ +static_assert(sizeof(IAudioPanelWidgetInterface) == 0x000001, "Wrong size on IAudioPanelWidgetInterface"); \ + +#define DUMPER7_ASSERTS_USoundNodeDistanceCrossFade \ +static_assert(alignof(USoundNodeDistanceCrossFade) == 0x000008, "Wrong alignment on USoundNodeDistanceCrossFade"); \ +static_assert(sizeof(USoundNodeDistanceCrossFade) == 0x000058, "Wrong size on USoundNodeDistanceCrossFade"); \ +static_assert(offsetof(USoundNodeDistanceCrossFade, CrossFadeInput) == 0x000048, "Member 'USoundNodeDistanceCrossFade::CrossFadeInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeParamCrossFade \ +static_assert(alignof(USoundNodeParamCrossFade) == 0x000008, "Wrong alignment on USoundNodeParamCrossFade"); \ +static_assert(sizeof(USoundNodeParamCrossFade) == 0x000060, "Wrong size on USoundNodeParamCrossFade"); \ +static_assert(offsetof(USoundNodeParamCrossFade, ParamName) == 0x000058, "Member 'USoundNodeParamCrossFade::ParamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataHazinessToSecondaryRoughness \ +static_assert(alignof(UMaterialExpressionStrataHazinessToSecondaryRoughness) == 0x000008, "Wrong alignment on UMaterialExpressionStrataHazinessToSecondaryRoughness"); \ +static_assert(sizeof(UMaterialExpressionStrataHazinessToSecondaryRoughness) == 0x000100, "Wrong size on UMaterialExpressionStrataHazinessToSecondaryRoughness"); \ +static_assert(offsetof(UMaterialExpressionStrataHazinessToSecondaryRoughness, BaseRoughness) == 0x0000B0, "Member 'UMaterialExpressionStrataHazinessToSecondaryRoughness::BaseRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHazinessToSecondaryRoughness, Haziness) == 0x0000D8, "Member 'UMaterialExpressionStrataHazinessToSecondaryRoughness::Haziness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_GetLength \ +static_assert(alignof(AnimSingleNodeInstance_GetLength) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_GetLength"); \ +static_assert(sizeof(AnimSingleNodeInstance_GetLength) == 0x000004, "Wrong size on AnimSingleNodeInstance_GetLength"); \ +static_assert(offsetof(AnimSingleNodeInstance_GetLength, ReturnValue) == 0x000000, "Member 'AnimSingleNodeInstance_GetLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_GetMirrorDataTable \ +static_assert(alignof(AnimSingleNodeInstance_GetMirrorDataTable) == 0x000008, "Wrong alignment on AnimSingleNodeInstance_GetMirrorDataTable"); \ +static_assert(sizeof(AnimSingleNodeInstance_GetMirrorDataTable) == 0x000008, "Wrong size on AnimSingleNodeInstance_GetMirrorDataTable"); \ +static_assert(offsetof(AnimSingleNodeInstance_GetMirrorDataTable, ReturnValue) == 0x000000, "Member 'AnimSingleNodeInstance_GetMirrorDataTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_PlayAnim \ +static_assert(alignof(AnimSingleNodeInstance_PlayAnim) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_PlayAnim"); \ +static_assert(sizeof(AnimSingleNodeInstance_PlayAnim) == 0x00000C, "Wrong size on AnimSingleNodeInstance_PlayAnim"); \ +static_assert(offsetof(AnimSingleNodeInstance_PlayAnim, bIsLooping) == 0x000000, "Member 'AnimSingleNodeInstance_PlayAnim::bIsLooping' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_PlayAnim, InPlayRate) == 0x000004, "Member 'AnimSingleNodeInstance_PlayAnim::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_PlayAnim, InStartPosition) == 0x000008, "Member 'AnimSingleNodeInstance_PlayAnim::InStartPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetAnimationAsset \ +static_assert(alignof(AnimSingleNodeInstance_SetAnimationAsset) == 0x000008, "Wrong alignment on AnimSingleNodeInstance_SetAnimationAsset"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetAnimationAsset) == 0x000010, "Wrong size on AnimSingleNodeInstance_SetAnimationAsset"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetAnimationAsset, NewAsset) == 0x000000, "Member 'AnimSingleNodeInstance_SetAnimationAsset::NewAsset' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetAnimationAsset, bIsLooping) == 0x000008, "Member 'AnimSingleNodeInstance_SetAnimationAsset::bIsLooping' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetAnimationAsset, InPlayRate) == 0x00000C, "Member 'AnimSingleNodeInstance_SetAnimationAsset::InPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetBlendSpacePosition \ +static_assert(alignof(AnimSingleNodeInstance_SetBlendSpacePosition) == 0x000008, "Wrong alignment on AnimSingleNodeInstance_SetBlendSpacePosition"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetBlendSpacePosition) == 0x000018, "Wrong size on AnimSingleNodeInstance_SetBlendSpacePosition"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetBlendSpacePosition, InPosition) == 0x000000, "Member 'AnimSingleNodeInstance_SetBlendSpacePosition::InPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetLooping \ +static_assert(alignof(AnimSingleNodeInstance_SetLooping) == 0x000001, "Wrong alignment on AnimSingleNodeInstance_SetLooping"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetLooping) == 0x000001, "Wrong size on AnimSingleNodeInstance_SetLooping"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetLooping, bIsLooping) == 0x000000, "Member 'AnimSingleNodeInstance_SetLooping::bIsLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetMirrorDataTable \ +static_assert(alignof(AnimSingleNodeInstance_SetMirrorDataTable) == 0x000008, "Wrong alignment on AnimSingleNodeInstance_SetMirrorDataTable"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetMirrorDataTable) == 0x000008, "Wrong size on AnimSingleNodeInstance_SetMirrorDataTable"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetMirrorDataTable, MirrorDataTable) == 0x000000, "Member 'AnimSingleNodeInstance_SetMirrorDataTable::MirrorDataTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetPlaying \ +static_assert(alignof(AnimSingleNodeInstance_SetPlaying) == 0x000001, "Wrong alignment on AnimSingleNodeInstance_SetPlaying"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetPlaying) == 0x000001, "Wrong size on AnimSingleNodeInstance_SetPlaying"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPlaying, bIsPlaying) == 0x000000, "Member 'AnimSingleNodeInstance_SetPlaying::bIsPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetPlayRate \ +static_assert(alignof(AnimSingleNodeInstance_SetPlayRate) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_SetPlayRate"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetPlayRate) == 0x000004, "Wrong size on AnimSingleNodeInstance_SetPlayRate"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPlayRate, InPlayRate) == 0x000000, "Member 'AnimSingleNodeInstance_SetPlayRate::InPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetPosition \ +static_assert(alignof(AnimSingleNodeInstance_SetPosition) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_SetPosition"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetPosition) == 0x000008, "Wrong size on AnimSingleNodeInstance_SetPosition"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPosition, InPosition) == 0x000000, "Member 'AnimSingleNodeInstance_SetPosition::InPosition' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPosition, bFireNotifies) == 0x000004, "Member 'AnimSingleNodeInstance_SetPosition::bFireNotifies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetPositionWithPreviousTime \ +static_assert(alignof(AnimSingleNodeInstance_SetPositionWithPreviousTime) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_SetPositionWithPreviousTime"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetPositionWithPreviousTime) == 0x00000C, "Wrong size on AnimSingleNodeInstance_SetPositionWithPreviousTime"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPositionWithPreviousTime, InPosition) == 0x000000, "Member 'AnimSingleNodeInstance_SetPositionWithPreviousTime::InPosition' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPositionWithPreviousTime, InPreviousTime) == 0x000004, "Member 'AnimSingleNodeInstance_SetPositionWithPreviousTime::InPreviousTime' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPositionWithPreviousTime, bFireNotifies) == 0x000008, "Member 'AnimSingleNodeInstance_SetPositionWithPreviousTime::bFireNotifies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetPreviewCurveOverride \ +static_assert(alignof(AnimSingleNodeInstance_SetPreviewCurveOverride) == 0x000004, "Wrong alignment on AnimSingleNodeInstance_SetPreviewCurveOverride"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetPreviewCurveOverride) == 0x000010, "Wrong size on AnimSingleNodeInstance_SetPreviewCurveOverride"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPreviewCurveOverride, PoseName) == 0x000000, "Member 'AnimSingleNodeInstance_SetPreviewCurveOverride::PoseName' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPreviewCurveOverride, Value) == 0x000008, "Member 'AnimSingleNodeInstance_SetPreviewCurveOverride::Value' has a wrong offset!"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetPreviewCurveOverride, bRemoveIfZero) == 0x00000C, "Member 'AnimSingleNodeInstance_SetPreviewCurveOverride::bRemoveIfZero' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_SetReverse \ +static_assert(alignof(AnimSingleNodeInstance_SetReverse) == 0x000001, "Wrong alignment on AnimSingleNodeInstance_SetReverse"); \ +static_assert(sizeof(AnimSingleNodeInstance_SetReverse) == 0x000001, "Wrong size on AnimSingleNodeInstance_SetReverse"); \ +static_assert(offsetof(AnimSingleNodeInstance_SetReverse, bInReverse) == 0x000000, "Member 'AnimSingleNodeInstance_SetReverse::bInReverse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSingleNodeInstance_GetAnimationAsset \ +static_assert(alignof(AnimSingleNodeInstance_GetAnimationAsset) == 0x000008, "Wrong alignment on AnimSingleNodeInstance_GetAnimationAsset"); \ +static_assert(sizeof(AnimSingleNodeInstance_GetAnimationAsset) == 0x000008, "Wrong size on AnimSingleNodeInstance_GetAnimationAsset"); \ +static_assert(offsetof(AnimSingleNodeInstance_GetAnimationAsset, ReturnValue) == 0x000000, "Member 'AnimSingleNodeInstance_GetAnimationAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSingleNodeInstance \ +static_assert(alignof(UAnimSingleNodeInstance) == 0x000010, "Wrong alignment on UAnimSingleNodeInstance"); \ +static_assert(sizeof(UAnimSingleNodeInstance) == 0x000360, "Wrong size on UAnimSingleNodeInstance"); \ +static_assert(offsetof(UAnimSingleNodeInstance, CurrentAsset) == 0x000348, "Member 'UAnimSingleNodeInstance::CurrentAsset' has a wrong offset!"); \ +static_assert(offsetof(UAnimSingleNodeInstance, PostEvaluateAnimEvent) == 0x000350, "Member 'UAnimSingleNodeInstance::PostEvaluateAnimEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBlendableInterface \ +static_assert(alignof(IBlendableInterface) == 0x000001, "Wrong alignment on IBlendableInterface"); \ +static_assert(sizeof(IBlendableInterface) == 0x000001, "Wrong size on IBlendableInterface"); \ + +#define DUMPER7_ASSERTS_UAnalysisProperties \ +static_assert(alignof(UAnalysisProperties) == 0x000008, "Wrong alignment on UAnalysisProperties"); \ +static_assert(sizeof(UAnalysisProperties) == 0x000038, "Wrong size on UAnalysisProperties"); \ +static_assert(offsetof(UAnalysisProperties, Function) == 0x000028, "Member 'UAnalysisProperties::Function' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistanceToNearestSurface \ +static_assert(alignof(UMaterialExpressionDistanceToNearestSurface) == 0x000008, "Wrong alignment on UMaterialExpressionDistanceToNearestSurface"); \ +static_assert(sizeof(UMaterialExpressionDistanceToNearestSurface) == 0x0000D8, "Wrong size on UMaterialExpressionDistanceToNearestSurface"); \ +static_assert(offsetof(UMaterialExpressionDistanceToNearestSurface, Position) == 0x0000B0, "Member 'UMaterialExpressionDistanceToNearestSurface::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlendSpace \ +static_assert(alignof(UBlendSpace) == 0x000008, "Wrong alignment on UBlendSpace"); \ +static_assert(sizeof(UBlendSpace) == 0x0001C0, "Wrong size on UBlendSpace"); \ +static_assert(offsetof(UBlendSpace, bContainsRotationOffsetMeshSpaceSamples) == 0x000088, "Member 'UBlendSpace::bContainsRotationOffsetMeshSpaceSamples' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, InterpolationParam) == 0x00008C, "Member 'UBlendSpace::InterpolationParam' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, TargetWeightInterpolationSpeedPerSec) == 0x0000BC, "Member 'UBlendSpace::TargetWeightInterpolationSpeedPerSec' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, bTargetWeightInterpolationEaseInOut) == 0x0000C0, "Member 'UBlendSpace::bTargetWeightInterpolationEaseInOut' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, bAllowMeshSpaceBlending) == 0x0000C1, "Member 'UBlendSpace::bAllowMeshSpaceBlending' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, bLoop) == 0x0000C2, "Member 'UBlendSpace::bLoop' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, AnimLength) == 0x0000C4, "Member 'UBlendSpace::AnimLength' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, NotifyTriggerMode) == 0x0000C8, "Member 'UBlendSpace::NotifyTriggerMode' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, bInterpolateUsingGrid) == 0x0000C9, "Member 'UBlendSpace::bInterpolateUsingGrid' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, PreferredTriangulationDirection) == 0x0000CA, "Member 'UBlendSpace::PreferredTriangulationDirection' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, PerBoneBlendMode) == 0x0000CB, "Member 'UBlendSpace::PerBoneBlendMode' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, ManualPerBoneOverrides) == 0x0000D0, "Member 'UBlendSpace::ManualPerBoneOverrides' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, PerBoneBlendProfile) == 0x0000E0, "Member 'UBlendSpace::PerBoneBlendProfile' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, SampleIndexWithMarkers) == 0x000100, "Member 'UBlendSpace::SampleIndexWithMarkers' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, SampleData) == 0x000108, "Member 'UBlendSpace::SampleData' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, GridSamples) == 0x000118, "Member 'UBlendSpace::GridSamples' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, BlendSpaceData) == 0x000128, "Member 'UBlendSpace::BlendSpaceData' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, BlendParameters) == 0x000148, "Member 'UBlendSpace::BlendParameters' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, AxisToScaleAnimation) == 0x0001A8, "Member 'UBlendSpace::AxisToScaleAnimation' has a wrong offset!"); \ +static_assert(offsetof(UBlendSpace, DimensionIndices) == 0x0001B0, "Member 'UBlendSpace::DimensionIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime \ +static_assert(alignof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime) == 0x000008, "Wrong alignment on AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime"); \ +static_assert(sizeof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime) == 0x000038, "Wrong size on AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime, EventReference) == 0x000000, "Member 'AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime, ReturnValue) == 0x000030, "Member 'AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio \ +static_assert(alignof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio) == 0x000008, "Wrong alignment on AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio"); \ +static_assert(sizeof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio) == 0x000038, "Wrong size on AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio, EventReference) == 0x000000, "Member 'AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio, ReturnValue) == 0x000030, "Member 'AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyLibrary_GetCurrentAnimationTime \ +static_assert(alignof(AnimNotifyLibrary_GetCurrentAnimationTime) == 0x000008, "Wrong alignment on AnimNotifyLibrary_GetCurrentAnimationTime"); \ +static_assert(sizeof(AnimNotifyLibrary_GetCurrentAnimationTime) == 0x000038, "Wrong size on AnimNotifyLibrary_GetCurrentAnimationTime"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationTime, EventReference) == 0x000000, "Member 'AnimNotifyLibrary_GetCurrentAnimationTime::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationTime, ReturnValue) == 0x000030, "Member 'AnimNotifyLibrary_GetCurrentAnimationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyLibrary_GetCurrentAnimationTimeRatio \ +static_assert(alignof(AnimNotifyLibrary_GetCurrentAnimationTimeRatio) == 0x000008, "Wrong alignment on AnimNotifyLibrary_GetCurrentAnimationTimeRatio"); \ +static_assert(sizeof(AnimNotifyLibrary_GetCurrentAnimationTimeRatio) == 0x000038, "Wrong size on AnimNotifyLibrary_GetCurrentAnimationTimeRatio"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationTimeRatio, EventReference) == 0x000000, "Member 'AnimNotifyLibrary_GetCurrentAnimationTimeRatio::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyLibrary_GetCurrentAnimationTimeRatio, ReturnValue) == 0x000030, "Member 'AnimNotifyLibrary_GetCurrentAnimationTimeRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyLibrary_NotifyStateReachedEnd \ +static_assert(alignof(AnimNotifyLibrary_NotifyStateReachedEnd) == 0x000008, "Wrong alignment on AnimNotifyLibrary_NotifyStateReachedEnd"); \ +static_assert(sizeof(AnimNotifyLibrary_NotifyStateReachedEnd) == 0x000038, "Wrong size on AnimNotifyLibrary_NotifyStateReachedEnd"); \ +static_assert(offsetof(AnimNotifyLibrary_NotifyStateReachedEnd, EventReference) == 0x000000, "Member 'AnimNotifyLibrary_NotifyStateReachedEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyLibrary_NotifyStateReachedEnd, ReturnValue) == 0x000030, "Member 'AnimNotifyLibrary_NotifyStateReachedEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyLibrary \ +static_assert(alignof(UAnimNotifyLibrary) == 0x000008, "Wrong alignment on UAnimNotifyLibrary"); \ +static_assert(sizeof(UAnimNotifyLibrary) == 0x000028, "Wrong size on UAnimNotifyLibrary"); \ + +#define DUMPER7_ASSERTS_URuntimeVirtualTextureStreamingProxy \ +static_assert(alignof(URuntimeVirtualTextureStreamingProxy) == 0x000010, "Wrong alignment on URuntimeVirtualTextureStreamingProxy"); \ +static_assert(sizeof(URuntimeVirtualTextureStreamingProxy) == 0x000280, "Wrong size on URuntimeVirtualTextureStreamingProxy"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleRandom \ +static_assert(alignof(UMaterialExpressionParticleRandom) == 0x000008, "Wrong alignment on UMaterialExpressionParticleRandom"); \ +static_assert(sizeof(UMaterialExpressionParticleRandom) == 0x0000B0, "Wrong size on UMaterialExpressionParticleRandom"); \ + +#define DUMPER7_ASSERTS_UBreakpoint \ +static_assert(alignof(UBreakpoint) == 0x000008, "Wrong alignment on UBreakpoint"); \ +static_assert(sizeof(UBreakpoint) == 0x000028, "Wrong size on UBreakpoint"); \ + +#define DUMPER7_ASSERTS_UBlueprintExtension \ +static_assert(alignof(UBlueprintExtension) == 0x000008, "Wrong alignment on UBlueprintExtension"); \ +static_assert(sizeof(UBlueprintExtension) == 0x000028, "Wrong size on UBlueprintExtension"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_ResetDynamics \ +static_assert(alignof(UAnimNotify_ResetDynamics) == 0x000008, "Wrong alignment on UAnimNotify_ResetDynamics"); \ +static_assert(sizeof(UAnimNotify_ResetDynamics) == 0x000038, "Wrong size on UAnimNotify_ResetDynamics"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParameter \ +static_assert(alignof(UMaterialExpressionParameter) == 0x000008, "Wrong alignment on UMaterialExpressionParameter"); \ +static_assert(sizeof(UMaterialExpressionParameter) == 0x0000D8, "Wrong size on UMaterialExpressionParameter"); \ +static_assert(offsetof(UMaterialExpressionParameter, ParameterName) == 0x0000B0, "Member 'UMaterialExpressionParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionParameter, ExpressionGUID) == 0x0000B8, "Member 'UMaterialExpressionParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionParameter, Group) == 0x0000C8, "Member 'UMaterialExpressionParameter::Group' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionParameter, SortPriority) == 0x0000D0, "Member 'UMaterialExpressionParameter::SortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionScalarParameter \ +static_assert(alignof(UMaterialExpressionScalarParameter) == 0x000008, "Wrong alignment on UMaterialExpressionScalarParameter"); \ +static_assert(sizeof(UMaterialExpressionScalarParameter) == 0x0000E8, "Wrong size on UMaterialExpressionScalarParameter"); \ +static_assert(offsetof(UMaterialExpressionScalarParameter, DefaultValue) == 0x0000D8, "Member 'UMaterialExpressionScalarParameter::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionScalarParameter, bUseCustomPrimitiveData) == 0x0000DC, "Member 'UMaterialExpressionScalarParameter::bUseCustomPrimitiveData' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionScalarParameter, PrimitiveDataIndex) == 0x0000DD, "Member 'UMaterialExpressionScalarParameter::PrimitiveDataIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionScalarParameter, SliderMin) == 0x0000E0, "Member 'UMaterialExpressionScalarParameter::SliderMin' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionScalarParameter, SliderMax) == 0x0000E4, "Member 'UMaterialExpressionScalarParameter::SliderMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCurveAtlasRowParameter \ +static_assert(alignof(UMaterialExpressionCurveAtlasRowParameter) == 0x000008, "Wrong alignment on UMaterialExpressionCurveAtlasRowParameter"); \ +static_assert(sizeof(UMaterialExpressionCurveAtlasRowParameter) == 0x000120, "Wrong size on UMaterialExpressionCurveAtlasRowParameter"); \ +static_assert(offsetof(UMaterialExpressionCurveAtlasRowParameter, Curve) == 0x0000E8, "Member 'UMaterialExpressionCurveAtlasRowParameter::Curve' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCurveAtlasRowParameter, Atlas) == 0x0000F0, "Member 'UMaterialExpressionCurveAtlasRowParameter::Atlas' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCurveAtlasRowParameter, InputTime) == 0x0000F8, "Member 'UMaterialExpressionCurveAtlasRowParameter::InputTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBookmarkBase \ +static_assert(alignof(UBookmarkBase) == 0x000008, "Wrong alignment on UBookmarkBase"); \ +static_assert(sizeof(UBookmarkBase) == 0x000028, "Wrong size on UBookmarkBase"); \ + +#define DUMPER7_ASSERTS_INodeMappingProviderInterface \ +static_assert(alignof(INodeMappingProviderInterface) == 0x000001, "Wrong alignment on INodeMappingProviderInterface"); \ +static_assert(sizeof(INodeMappingProviderInterface) == 0x000001, "Wrong size on INodeMappingProviderInterface"); \ + +#define DUMPER7_ASSERTS_UBookMark2D \ +static_assert(alignof(UBookMark2D) == 0x000008, "Wrong alignment on UBookMark2D"); \ +static_assert(sizeof(UBookMark2D) == 0x000038, "Wrong size on UBookMark2D"); \ +static_assert(offsetof(UBookMark2D, Zoom2D) == 0x000028, "Member 'UBookMark2D::Zoom2D' has a wrong offset!"); \ +static_assert(offsetof(UBookMark2D, Location) == 0x00002C, "Member 'UBookMark2D::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundSourceBus \ +static_assert(alignof(USoundSourceBus) == 0x000008, "Wrong alignment on USoundSourceBus"); \ +static_assert(sizeof(USoundSourceBus) == 0x000448, "Wrong size on USoundSourceBus"); \ +static_assert(offsetof(USoundSourceBus, SourceBusChannels) == 0x000430, "Member 'USoundSourceBus::SourceBusChannels' has a wrong offset!"); \ +static_assert(offsetof(USoundSourceBus, SourceBusDuration) == 0x000434, "Member 'USoundSourceBus::SourceBusDuration' has a wrong offset!"); \ +static_assert(offsetof(USoundSourceBus, AudioBus) == 0x000438, "Member 'USoundSourceBus::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBinaryOp \ +static_assert(alignof(UMaterialExpressionBinaryOp) == 0x000008, "Wrong alignment on UMaterialExpressionBinaryOp"); \ +static_assert(sizeof(UMaterialExpressionBinaryOp) == 0x000108, "Wrong size on UMaterialExpressionBinaryOp"); \ +static_assert(offsetof(UMaterialExpressionBinaryOp, A) == 0x0000B0, "Member 'UMaterialExpressionBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBinaryOp, B) == 0x0000D8, "Member 'UMaterialExpressionBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBinaryOp, ConstA) == 0x000100, "Member 'UMaterialExpressionBinaryOp::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBinaryOp, ConstB) == 0x000104, "Member 'UMaterialExpressionBinaryOp::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLess \ +static_assert(alignof(UMaterialExpressionLess) == 0x000008, "Wrong alignment on UMaterialExpressionLess"); \ +static_assert(sizeof(UMaterialExpressionLess) == 0x000108, "Wrong size on UMaterialExpressionLess"); \ + +#define DUMPER7_ASSERTS_AReflectionCapture \ +static_assert(alignof(AReflectionCapture) == 0x000008, "Wrong alignment on AReflectionCapture"); \ +static_assert(sizeof(AReflectionCapture) == 0x0002A0, "Wrong size on AReflectionCapture"); \ +static_assert(offsetof(AReflectionCapture, CaptureComponent) == 0x000298, "Member 'AReflectionCapture::CaptureComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CachedAnimDataLibrary_StateMachine_GetGlobalWeight \ +static_assert(alignof(CachedAnimDataLibrary_StateMachine_GetGlobalWeight) == 0x000008, "Wrong alignment on CachedAnimDataLibrary_StateMachine_GetGlobalWeight"); \ +static_assert(sizeof(CachedAnimDataLibrary_StateMachine_GetGlobalWeight) == 0x000028, "Wrong size on CachedAnimDataLibrary_StateMachine_GetGlobalWeight"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetGlobalWeight, InAnimInstance) == 0x000000, "Member 'CachedAnimDataLibrary_StateMachine_GetGlobalWeight::InAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetGlobalWeight, CachedAnimStateData) == 0x000008, "Member 'CachedAnimDataLibrary_StateMachine_GetGlobalWeight::CachedAnimStateData' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetGlobalWeight, ReturnValue) == 0x000024, "Member 'CachedAnimDataLibrary_StateMachine_GetGlobalWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CachedAnimDataLibrary_StateMachine_GetLocalWeight \ +static_assert(alignof(CachedAnimDataLibrary_StateMachine_GetLocalWeight) == 0x000008, "Wrong alignment on CachedAnimDataLibrary_StateMachine_GetLocalWeight"); \ +static_assert(sizeof(CachedAnimDataLibrary_StateMachine_GetLocalWeight) == 0x000028, "Wrong size on CachedAnimDataLibrary_StateMachine_GetLocalWeight"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetLocalWeight, InAnimInstance) == 0x000000, "Member 'CachedAnimDataLibrary_StateMachine_GetLocalWeight::InAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetLocalWeight, CachedAnimStateData) == 0x000008, "Member 'CachedAnimDataLibrary_StateMachine_GetLocalWeight::CachedAnimStateData' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_GetLocalWeight, ReturnValue) == 0x000024, "Member 'CachedAnimDataLibrary_StateMachine_GetLocalWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CachedAnimDataLibrary_StateMachine_IsStateRelevant \ +static_assert(alignof(CachedAnimDataLibrary_StateMachine_IsStateRelevant) == 0x000008, "Wrong alignment on CachedAnimDataLibrary_StateMachine_IsStateRelevant"); \ +static_assert(sizeof(CachedAnimDataLibrary_StateMachine_IsStateRelevant) == 0x000028, "Wrong size on CachedAnimDataLibrary_StateMachine_IsStateRelevant"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_IsStateRelevant, InAnimInstance) == 0x000000, "Member 'CachedAnimDataLibrary_StateMachine_IsStateRelevant::InAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_IsStateRelevant, CachedAnimStateData) == 0x000008, "Member 'CachedAnimDataLibrary_StateMachine_IsStateRelevant::CachedAnimStateData' has a wrong offset!"); \ +static_assert(offsetof(CachedAnimDataLibrary_StateMachine_IsStateRelevant, ReturnValue) == 0x000024, "Member 'CachedAnimDataLibrary_StateMachine_IsStateRelevant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCachedAnimDataLibrary \ +static_assert(alignof(UCachedAnimDataLibrary) == 0x000008, "Wrong alignment on UCachedAnimDataLibrary"); \ +static_assert(sizeof(UCachedAnimDataLibrary) == 0x000028, "Wrong size on UCachedAnimDataLibrary"); \ + +#define DUMPER7_ASSERTS_ABoxReflectionCapture \ +static_assert(alignof(ABoxReflectionCapture) == 0x000008, "Wrong alignment on ABoxReflectionCapture"); \ +static_assert(sizeof(ABoxReflectionCapture) == 0x0002A0, "Wrong size on ABoxReflectionCapture"); \ + +#define DUMPER7_ASSERTS_UBoxReflectionCaptureComponent \ +static_assert(alignof(UBoxReflectionCaptureComponent) == 0x000010, "Wrong alignment on UBoxReflectionCaptureComponent"); \ +static_assert(sizeof(UBoxReflectionCaptureComponent) == 0x000330, "Wrong size on UBoxReflectionCaptureComponent"); \ +static_assert(offsetof(UBoxReflectionCaptureComponent, BoxTransitionDistance) == 0x000310, "Member 'UBoxReflectionCaptureComponent::BoxTransitionDistance' has a wrong offset!"); \ +static_assert(offsetof(UBoxReflectionCaptureComponent, PreviewInfluenceBox) == 0x000318, "Member 'UBoxReflectionCaptureComponent::PreviewInfluenceBox' has a wrong offset!"); \ +static_assert(offsetof(UBoxReflectionCaptureComponent, PreviewCaptureBox) == 0x000320, "Member 'UBoxReflectionCaptureComponent::PreviewCaptureBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PlaySound \ +static_assert(alignof(UAnimNotify_PlaySound) == 0x000008, "Wrong alignment on UAnimNotify_PlaySound"); \ +static_assert(sizeof(UAnimNotify_PlaySound) == 0x000058, "Wrong size on UAnimNotify_PlaySound"); \ +static_assert(offsetof(UAnimNotify_PlaySound, Sound) == 0x000038, "Member 'UAnimNotify_PlaySound::Sound' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlaySound, VolumeMultiplier) == 0x000040, "Member 'UAnimNotify_PlaySound::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlaySound, PitchMultiplier) == 0x000044, "Member 'UAnimNotify_PlaySound::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlaySound, AttachName) == 0x00004C, "Member 'UAnimNotify_PlaySound::AttachName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UContentBundleDescriptor \ +static_assert(alignof(UContentBundleDescriptor) == 0x000008, "Wrong alignment on UContentBundleDescriptor"); \ +static_assert(sizeof(UContentBundleDescriptor) == 0x000050, "Wrong size on UContentBundleDescriptor"); \ +static_assert(offsetof(UContentBundleDescriptor, DisplayName) == 0x000028, "Member 'UContentBundleDescriptor::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(UContentBundleDescriptor, DebugColor) == 0x000038, "Member 'UContentBundleDescriptor::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(UContentBundleDescriptor, Guid) == 0x00003C, "Member 'UContentBundleDescriptor::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPathTracingQualitySwitch \ +static_assert(alignof(UMaterialExpressionPathTracingQualitySwitch) == 0x000008, "Wrong alignment on UMaterialExpressionPathTracingQualitySwitch"); \ +static_assert(sizeof(UMaterialExpressionPathTracingQualitySwitch) == 0x000100, "Wrong size on UMaterialExpressionPathTracingQualitySwitch"); \ +static_assert(offsetof(UMaterialExpressionPathTracingQualitySwitch, Normal) == 0x0000B0, "Member 'UMaterialExpressionPathTracingQualitySwitch::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingQualitySwitch, PathTraced) == 0x0000D8, "Member 'UMaterialExpressionPathTracingQualitySwitch::PathTraced' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBuiltInAttributesExtensions \ +static_assert(alignof(UBuiltInAttributesExtensions) == 0x000008, "Wrong alignment on UBuiltInAttributesExtensions"); \ +static_assert(sizeof(UBuiltInAttributesExtensions) == 0x000028, "Wrong size on UBuiltInAttributesExtensions"); \ + +#define DUMPER7_ASSERTS_ChaosBlueprintLibrary_GetEventRelayFromContext \ +static_assert(alignof(ChaosBlueprintLibrary_GetEventRelayFromContext) == 0x000008, "Wrong alignment on ChaosBlueprintLibrary_GetEventRelayFromContext"); \ +static_assert(sizeof(ChaosBlueprintLibrary_GetEventRelayFromContext) == 0x000010, "Wrong size on ChaosBlueprintLibrary_GetEventRelayFromContext"); \ +static_assert(offsetof(ChaosBlueprintLibrary_GetEventRelayFromContext, ContextObject) == 0x000000, "Member 'ChaosBlueprintLibrary_GetEventRelayFromContext::ContextObject' has a wrong offset!"); \ +static_assert(offsetof(ChaosBlueprintLibrary_GetEventRelayFromContext, ReturnValue) == 0x000008, "Member 'ChaosBlueprintLibrary_GetEventRelayFromContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosBlueprintLibrary \ +static_assert(alignof(UChaosBlueprintLibrary) == 0x000008, "Wrong alignment on UChaosBlueprintLibrary"); \ +static_assert(sizeof(UChaosBlueprintLibrary) == 0x000028, "Wrong size on UChaosBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UApplicationLifecycleComponent \ +static_assert(alignof(UApplicationLifecycleComponent) == 0x000008, "Wrong alignment on UApplicationLifecycleComponent"); \ +static_assert(sizeof(UApplicationLifecycleComponent) == 0x000130, "Wrong size on UApplicationLifecycleComponent"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationWillDeactivateDelegate) == 0x0000A0, "Member 'UApplicationLifecycleComponent::ApplicationWillDeactivateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationHasReactivatedDelegate) == 0x0000B0, "Member 'UApplicationLifecycleComponent::ApplicationHasReactivatedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationWillEnterBackgroundDelegate) == 0x0000C0, "Member 'UApplicationLifecycleComponent::ApplicationWillEnterBackgroundDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationHasEnteredForegroundDelegate) == 0x0000D0, "Member 'UApplicationLifecycleComponent::ApplicationHasEnteredForegroundDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationWillTerminateDelegate) == 0x0000E0, "Member 'UApplicationLifecycleComponent::ApplicationWillTerminateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationShouldUnloadResourcesDelegate) == 0x0000F0, "Member 'UApplicationLifecycleComponent::ApplicationShouldUnloadResourcesDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, ApplicationReceivedStartupArgumentsDelegate) == 0x000100, "Member 'UApplicationLifecycleComponent::ApplicationReceivedStartupArgumentsDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, OnTemperatureChangeDelegate) == 0x000110, "Member 'UApplicationLifecycleComponent::OnTemperatureChangeDelegate' has a wrong offset!"); \ +static_assert(offsetof(UApplicationLifecycleComponent, OnLowPowerModeDelegate) == 0x000120, "Member 'UApplicationLifecycleComponent::OnLowPowerModeDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNamedRerouteBase \ +static_assert(alignof(UMaterialExpressionNamedRerouteBase) == 0x000008, "Wrong alignment on UMaterialExpressionNamedRerouteBase"); \ +static_assert(sizeof(UMaterialExpressionNamedRerouteBase) == 0x0000B0, "Wrong size on UMaterialExpressionNamedRerouteBase"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNamedRerouteDeclaration \ +static_assert(alignof(UMaterialExpressionNamedRerouteDeclaration) == 0x000008, "Wrong alignment on UMaterialExpressionNamedRerouteDeclaration"); \ +static_assert(sizeof(UMaterialExpressionNamedRerouteDeclaration) == 0x000100, "Wrong size on UMaterialExpressionNamedRerouteDeclaration"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteDeclaration, Input) == 0x0000B0, "Member 'UMaterialExpressionNamedRerouteDeclaration::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteDeclaration, Name_0) == 0x0000D8, "Member 'UMaterialExpressionNamedRerouteDeclaration::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteDeclaration, NodeColor) == 0x0000E0, "Member 'UMaterialExpressionNamedRerouteDeclaration::NodeColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteDeclaration, VariableGuid) == 0x0000F0, "Member 'UMaterialExpressionNamedRerouteDeclaration::VariableGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosEventRelay \ +static_assert(alignof(UChaosEventRelay) == 0x000008, "Wrong alignment on UChaosEventRelay"); \ +static_assert(sizeof(UChaosEventRelay) == 0x000068, "Wrong size on UChaosEventRelay"); \ +static_assert(offsetof(UChaosEventRelay, OnCollisionEvent) == 0x000028, "Member 'UChaosEventRelay::OnCollisionEvent' has a wrong offset!"); \ +static_assert(offsetof(UChaosEventRelay, OnBreakEvent) == 0x000038, "Member 'UChaosEventRelay::OnBreakEvent' has a wrong offset!"); \ +static_assert(offsetof(UChaosEventRelay, OnRemovalEvent) == 0x000048, "Member 'UChaosEventRelay::OnRemovalEvent' has a wrong offset!"); \ +static_assert(offsetof(UChaosEventRelay, OnCrumblingEvent) == 0x000058, "Member 'UChaosEventRelay::OnCrumblingEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetManager \ +static_assert(alignof(UAssetManager) == 0x000008, "Wrong alignment on UAssetManager"); \ +static_assert(sizeof(UAssetManager) == 0x0004D0, "Wrong size on UAssetManager"); \ +static_assert(offsetof(UAssetManager, ObjectReferenceList) == 0x000330, "Member 'UAssetManager::ObjectReferenceList' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bIsGlobalAsyncScanEnvironment) == 0x000340, "Member 'UAssetManager::bIsGlobalAsyncScanEnvironment' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bShouldGuessTypeAndName) == 0x000341, "Member 'UAssetManager::bShouldGuessTypeAndName' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bShouldUseSynchronousLoad) == 0x000342, "Member 'UAssetManager::bShouldUseSynchronousLoad' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bIsLoadingFromPakFiles) == 0x000343, "Member 'UAssetManager::bIsLoadingFromPakFiles' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bShouldAcquireMissingChunksOnLoad) == 0x000344, "Member 'UAssetManager::bShouldAcquireMissingChunksOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bOnlyCookProductionAssets) == 0x000345, "Member 'UAssetManager::bOnlyCookProductionAssets' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, NumBulkScanRequests) == 0x000348, "Member 'UAssetManager::NumBulkScanRequests' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bIsPrimaryAssetDirectoryCurrent) == 0x00034C, "Member 'UAssetManager::bIsPrimaryAssetDirectoryCurrent' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bIsManagementDatabaseCurrent) == 0x00034D, "Member 'UAssetManager::bIsManagementDatabaseCurrent' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bUpdateManagementDatabaseAfterScan) == 0x00034E, "Member 'UAssetManager::bUpdateManagementDatabaseAfterScan' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bIncludeOnlyOnDiskAssets) == 0x00034F, "Member 'UAssetManager::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, bHasCompletedInitialScan) == 0x000350, "Member 'UAssetManager::bHasCompletedInitialScan' has a wrong offset!"); \ +static_assert(offsetof(UAssetManager, NumberOfSpawnedNotifications) == 0x000354, "Member 'UAssetManager::NumberOfSpawnedNotifications' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayer \ +static_assert(alignof(UPlayer) == 0x000008, "Wrong alignment on UPlayer"); \ +static_assert(sizeof(UPlayer) == 0x000048, "Wrong size on UPlayer"); \ +static_assert(offsetof(UPlayer, PlayerController) == 0x000030, "Member 'UPlayer::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(UPlayer, CurrentNetSpeed) == 0x000038, "Member 'UPlayer::CurrentNetSpeed' has a wrong offset!"); \ +static_assert(offsetof(UPlayer, ConfiguredInternetSpeed) == 0x00003C, "Member 'UPlayer::ConfiguredInternetSpeed' has a wrong offset!"); \ +static_assert(offsetof(UPlayer, ConfiguredLanSpeed) == 0x000040, "Member 'UPlayer::ConfiguredLanSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavMovementComponent_IsCrouching \ +static_assert(alignof(NavMovementComponent_IsCrouching) == 0x000001, "Wrong alignment on NavMovementComponent_IsCrouching"); \ +static_assert(sizeof(NavMovementComponent_IsCrouching) == 0x000001, "Wrong size on NavMovementComponent_IsCrouching"); \ +static_assert(offsetof(NavMovementComponent_IsCrouching, ReturnValue) == 0x000000, "Member 'NavMovementComponent_IsCrouching::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavMovementComponent_IsFalling \ +static_assert(alignof(NavMovementComponent_IsFalling) == 0x000001, "Wrong alignment on NavMovementComponent_IsFalling"); \ +static_assert(sizeof(NavMovementComponent_IsFalling) == 0x000001, "Wrong size on NavMovementComponent_IsFalling"); \ +static_assert(offsetof(NavMovementComponent_IsFalling, ReturnValue) == 0x000000, "Member 'NavMovementComponent_IsFalling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavMovementComponent_IsFlying \ +static_assert(alignof(NavMovementComponent_IsFlying) == 0x000001, "Wrong alignment on NavMovementComponent_IsFlying"); \ +static_assert(sizeof(NavMovementComponent_IsFlying) == 0x000001, "Wrong size on NavMovementComponent_IsFlying"); \ +static_assert(offsetof(NavMovementComponent_IsFlying, ReturnValue) == 0x000000, "Member 'NavMovementComponent_IsFlying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavMovementComponent_IsMovingOnGround \ +static_assert(alignof(NavMovementComponent_IsMovingOnGround) == 0x000001, "Wrong alignment on NavMovementComponent_IsMovingOnGround"); \ +static_assert(sizeof(NavMovementComponent_IsMovingOnGround) == 0x000001, "Wrong size on NavMovementComponent_IsMovingOnGround"); \ +static_assert(offsetof(NavMovementComponent_IsMovingOnGround, ReturnValue) == 0x000000, "Member 'NavMovementComponent_IsMovingOnGround::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavMovementComponent_IsSwimming \ +static_assert(alignof(NavMovementComponent_IsSwimming) == 0x000001, "Wrong alignment on NavMovementComponent_IsSwimming"); \ +static_assert(sizeof(NavMovementComponent_IsSwimming) == 0x000001, "Wrong size on NavMovementComponent_IsSwimming"); \ +static_assert(offsetof(NavMovementComponent_IsSwimming, ReturnValue) == 0x000000, "Member 'NavMovementComponent_IsSwimming::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavMovementComponent \ +static_assert(alignof(UNavMovementComponent) == 0x000008, "Wrong alignment on UNavMovementComponent"); \ +static_assert(sizeof(UNavMovementComponent) == 0x000150, "Wrong size on UNavMovementComponent"); \ +static_assert(offsetof(UNavMovementComponent, NavAgentProps) == 0x000108, "Member 'UNavMovementComponent::NavAgentProps' has a wrong offset!"); \ +static_assert(offsetof(UNavMovementComponent, FixedPathBrakingDistance) == 0x000140, "Member 'UNavMovementComponent::FixedPathBrakingDistance' has a wrong offset!"); \ +static_assert(offsetof(UNavMovementComponent, MovementState) == 0x000145, "Member 'UNavMovementComponent::MovementState' has a wrong offset!"); \ +static_assert(offsetof(UNavMovementComponent, PathFollowingComp) == 0x000148, "Member 'UNavMovementComponent::PathFollowingComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_AddInputVector \ +static_assert(alignof(PawnMovementComponent_AddInputVector) == 0x000008, "Wrong alignment on PawnMovementComponent_AddInputVector"); \ +static_assert(sizeof(PawnMovementComponent_AddInputVector) == 0x000020, "Wrong size on PawnMovementComponent_AddInputVector"); \ +static_assert(offsetof(PawnMovementComponent_AddInputVector, WorldVector) == 0x000000, "Member 'PawnMovementComponent_AddInputVector::WorldVector' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_AddInputVector, bForce) == 0x000018, "Member 'PawnMovementComponent_AddInputVector::bForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_ConsumeInputVector \ +static_assert(alignof(PawnMovementComponent_ConsumeInputVector) == 0x000008, "Wrong alignment on PawnMovementComponent_ConsumeInputVector"); \ +static_assert(sizeof(PawnMovementComponent_ConsumeInputVector) == 0x000018, "Wrong size on PawnMovementComponent_ConsumeInputVector"); \ +static_assert(offsetof(PawnMovementComponent_ConsumeInputVector, ReturnValue) == 0x000000, "Member 'PawnMovementComponent_ConsumeInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_MulticastAsyncPhysicsStateAction \ +static_assert(alignof(PawnMovementComponent_MulticastAsyncPhysicsStateAction) == 0x000008, "Wrong alignment on PawnMovementComponent_MulticastAsyncPhysicsStateAction"); \ +static_assert(sizeof(PawnMovementComponent_MulticastAsyncPhysicsStateAction) == 0x000050, "Wrong size on PawnMovementComponent_MulticastAsyncPhysicsStateAction"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, ActionComponent) == 0x000000, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::ActionComponent' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, BoneName) == 0x000008, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, Timestamp) == 0x000010, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, ActionType) == 0x000018, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::ActionType' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, ActionDatas) == 0x000020, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::ActionDatas' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_MulticastAsyncPhysicsStateAction, ActionPosition) == 0x000038, "Member 'PawnMovementComponent_MulticastAsyncPhysicsStateAction::ActionPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_ServerAsyncPhysicsStateAction \ +static_assert(alignof(PawnMovementComponent_ServerAsyncPhysicsStateAction) == 0x000008, "Wrong alignment on PawnMovementComponent_ServerAsyncPhysicsStateAction"); \ +static_assert(sizeof(PawnMovementComponent_ServerAsyncPhysicsStateAction) == 0x000050, "Wrong size on PawnMovementComponent_ServerAsyncPhysicsStateAction"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, ActionComponent) == 0x000000, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::ActionComponent' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, BoneName) == 0x000008, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, Timestamp) == 0x000010, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, ActionType) == 0x000018, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::ActionType' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, ActionDatas) == 0x000020, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::ActionDatas' has a wrong offset!"); \ +static_assert(offsetof(PawnMovementComponent_ServerAsyncPhysicsStateAction, ActionPosition) == 0x000038, "Member 'PawnMovementComponent_ServerAsyncPhysicsStateAction::ActionPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_GetLastInputVector \ +static_assert(alignof(PawnMovementComponent_GetLastInputVector) == 0x000008, "Wrong alignment on PawnMovementComponent_GetLastInputVector"); \ +static_assert(sizeof(PawnMovementComponent_GetLastInputVector) == 0x000018, "Wrong size on PawnMovementComponent_GetLastInputVector"); \ +static_assert(offsetof(PawnMovementComponent_GetLastInputVector, ReturnValue) == 0x000000, "Member 'PawnMovementComponent_GetLastInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_GetPawnOwner \ +static_assert(alignof(PawnMovementComponent_GetPawnOwner) == 0x000008, "Wrong alignment on PawnMovementComponent_GetPawnOwner"); \ +static_assert(sizeof(PawnMovementComponent_GetPawnOwner) == 0x000008, "Wrong size on PawnMovementComponent_GetPawnOwner"); \ +static_assert(offsetof(PawnMovementComponent_GetPawnOwner, ReturnValue) == 0x000000, "Member 'PawnMovementComponent_GetPawnOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_GetPendingInputVector \ +static_assert(alignof(PawnMovementComponent_GetPendingInputVector) == 0x000008, "Wrong alignment on PawnMovementComponent_GetPendingInputVector"); \ +static_assert(sizeof(PawnMovementComponent_GetPendingInputVector) == 0x000018, "Wrong size on PawnMovementComponent_GetPendingInputVector"); \ +static_assert(offsetof(PawnMovementComponent_GetPendingInputVector, ReturnValue) == 0x000000, "Member 'PawnMovementComponent_GetPendingInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnMovementComponent_IsMoveInputIgnored \ +static_assert(alignof(PawnMovementComponent_IsMoveInputIgnored) == 0x000001, "Wrong alignment on PawnMovementComponent_IsMoveInputIgnored"); \ +static_assert(sizeof(PawnMovementComponent_IsMoveInputIgnored) == 0x000001, "Wrong size on PawnMovementComponent_IsMoveInputIgnored"); \ +static_assert(offsetof(PawnMovementComponent_IsMoveInputIgnored, ReturnValue) == 0x000000, "Member 'PawnMovementComponent_IsMoveInputIgnored::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnMovementComponent \ +static_assert(alignof(UPawnMovementComponent) == 0x000008, "Wrong alignment on UPawnMovementComponent"); \ +static_assert(sizeof(UPawnMovementComponent) == 0x000158, "Wrong size on UPawnMovementComponent"); \ +static_assert(offsetof(UPawnMovementComponent, PawnOwner) == 0x000150, "Member 'UPawnMovementComponent::PawnOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFloatingPawnMovement \ +static_assert(alignof(UFloatingPawnMovement) == 0x000008, "Wrong alignment on UFloatingPawnMovement"); \ +static_assert(sizeof(UFloatingPawnMovement) == 0x000170, "Wrong size on UFloatingPawnMovement"); \ +static_assert(offsetof(UFloatingPawnMovement, MaxSpeed) == 0x000158, "Member 'UFloatingPawnMovement::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UFloatingPawnMovement, Acceleration) == 0x00015C, "Member 'UFloatingPawnMovement::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UFloatingPawnMovement, Deceleration) == 0x000160, "Member 'UFloatingPawnMovement::Deceleration' has a wrong offset!"); \ +static_assert(offsetof(UFloatingPawnMovement, TurningBoost) == 0x000164, "Member 'UFloatingPawnMovement::TurningBoost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpectatorPawnMovement \ +static_assert(alignof(USpectatorPawnMovement) == 0x000008, "Wrong alignment on USpectatorPawnMovement"); \ +static_assert(sizeof(USpectatorPawnMovement) == 0x000178, "Wrong size on USpectatorPawnMovement"); \ + +#define DUMPER7_ASSERTS_UNetConnection \ +static_assert(alignof(UNetConnection) == 0x000008, "Wrong alignment on UNetConnection"); \ +static_assert(sizeof(UNetConnection) == 0x001DF8, "Wrong size on UNetConnection"); \ +static_assert(offsetof(UNetConnection, Children) == 0x000048, "Member 'UNetConnection::Children' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, Driver) == 0x000058, "Member 'UNetConnection::Driver' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, PackageMapClass) == 0x000060, "Member 'UNetConnection::PackageMapClass' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, PackageMap) == 0x000068, "Member 'UNetConnection::PackageMap' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, OpenChannels) == 0x000070, "Member 'UNetConnection::OpenChannels' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, SentTemporaries) == 0x000080, "Member 'UNetConnection::SentTemporaries' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, ViewTarget) == 0x000090, "Member 'UNetConnection::ViewTarget' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, OwningActor) == 0x000098, "Member 'UNetConnection::OwningActor' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, MaxPacket) == 0x0000A0, "Member 'UNetConnection::MaxPacket' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, PlayerId) == 0x000160, "Member 'UNetConnection::PlayerId' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, LastReceiveTime) == 0x0001D8, "Member 'UNetConnection::LastReceiveTime' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, DefaultMaxChannelSize) == 0x0013B0, "Member 'UNetConnection::DefaultMaxChannelSize' has a wrong offset!"); \ +static_assert(offsetof(UNetConnection, ChannelsToTick) == 0x0016E8, "Member 'UNetConnection::ChannelsToTick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IPreviewCollectionInterface \ +static_assert(alignof(IPreviewCollectionInterface) == 0x000001, "Wrong alignment on IPreviewCollectionInterface"); \ +static_assert(sizeof(IPreviewCollectionInterface) == 0x000001, "Wrong size on IPreviewCollectionInterface"); \ + +#define DUMPER7_ASSERTS_UChildConnection \ +static_assert(alignof(UChildConnection) == 0x000008, "Wrong alignment on UChildConnection"); \ +static_assert(sizeof(UChildConnection) == 0x001E00, "Wrong size on UChildConnection"); \ +static_assert(offsetof(UChildConnection, Parent) == 0x001DF8, "Member 'UChildConnection::Parent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionForLoop \ +static_assert(alignof(UMaterialExpressionForLoop) == 0x000008, "Wrong alignment on UMaterialExpressionForLoop"); \ +static_assert(sizeof(UMaterialExpressionForLoop) == 0x000138, "Wrong size on UMaterialExpressionForLoop"); \ +static_assert(offsetof(UMaterialExpressionForLoop, LoopBody) == 0x0000B0, "Member 'UMaterialExpressionForLoop::LoopBody' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionForLoop, Completed) == 0x0000B8, "Member 'UMaterialExpressionForLoop::Completed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionForLoop, StartIndex) == 0x0000C0, "Member 'UMaterialExpressionForLoop::StartIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionForLoop, EndIndex) == 0x0000E8, "Member 'UMaterialExpressionForLoop::EndIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionForLoop, IndexStep) == 0x000110, "Member 'UMaterialExpressionForLoop::IndexStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCloudStorageBase \ +static_assert(alignof(UCloudStorageBase) == 0x000008, "Wrong alignment on UCloudStorageBase"); \ +static_assert(sizeof(UCloudStorageBase) == 0x000050, "Wrong size on UCloudStorageBase"); \ +static_assert(offsetof(UCloudStorageBase, LocalCloudFiles) == 0x000038, "Member 'UCloudStorageBase::LocalCloudFiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommandlet \ +static_assert(alignof(UCommandlet) == 0x000008, "Wrong alignment on UCommandlet"); \ +static_assert(sizeof(UCommandlet) == 0x000080, "Wrong size on UCommandlet"); \ +static_assert(offsetof(UCommandlet, HelpDescription) == 0x000028, "Member 'UCommandlet::HelpDescription' has a wrong offset!"); \ +static_assert(offsetof(UCommandlet, HelpUsage) == 0x000038, "Member 'UCommandlet::HelpUsage' has a wrong offset!"); \ +static_assert(offsetof(UCommandlet, HelpWebLink) == 0x000048, "Member 'UCommandlet::HelpWebLink' has a wrong offset!"); \ +static_assert(offsetof(UCommandlet, HelpParamNames) == 0x000058, "Member 'UCommandlet::HelpParamNames' has a wrong offset!"); \ +static_assert(offsetof(UCommandlet, HelpParamDescriptions) == 0x000068, "Member 'UCommandlet::HelpParamDescriptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmokeTestCommandlet \ +static_assert(alignof(USmokeTestCommandlet) == 0x000008, "Wrong alignment on USmokeTestCommandlet"); \ +static_assert(sizeof(USmokeTestCommandlet) == 0x000080, "Wrong size on USmokeTestCommandlet"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_GetDebugColor \ +static_assert(alignof(DataLayerInstance_GetDebugColor) == 0x000004, "Wrong alignment on DataLayerInstance_GetDebugColor"); \ +static_assert(sizeof(DataLayerInstance_GetDebugColor) == 0x000004, "Wrong size on DataLayerInstance_GetDebugColor"); \ +static_assert(offsetof(DataLayerInstance_GetDebugColor, ReturnValue) == 0x000000, "Member 'DataLayerInstance_GetDebugColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_GetInitialRuntimeState \ +static_assert(alignof(DataLayerInstance_GetInitialRuntimeState) == 0x000001, "Wrong alignment on DataLayerInstance_GetInitialRuntimeState"); \ +static_assert(sizeof(DataLayerInstance_GetInitialRuntimeState) == 0x000001, "Wrong size on DataLayerInstance_GetInitialRuntimeState"); \ +static_assert(offsetof(DataLayerInstance_GetInitialRuntimeState, ReturnValue) == 0x000000, "Member 'DataLayerInstance_GetInitialRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_GetType \ +static_assert(alignof(DataLayerInstance_GetType) == 0x000001, "Wrong alignment on DataLayerInstance_GetType"); \ +static_assert(sizeof(DataLayerInstance_GetType) == 0x000001, "Wrong size on DataLayerInstance_GetType"); \ +static_assert(offsetof(DataLayerInstance_GetType, ReturnValue) == 0x000000, "Member 'DataLayerInstance_GetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_IsEffectiveVisible \ +static_assert(alignof(DataLayerInstance_IsEffectiveVisible) == 0x000001, "Wrong alignment on DataLayerInstance_IsEffectiveVisible"); \ +static_assert(sizeof(DataLayerInstance_IsEffectiveVisible) == 0x000001, "Wrong size on DataLayerInstance_IsEffectiveVisible"); \ +static_assert(offsetof(DataLayerInstance_IsEffectiveVisible, ReturnValue) == 0x000000, "Member 'DataLayerInstance_IsEffectiveVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_IsInitiallyVisible \ +static_assert(alignof(DataLayerInstance_IsInitiallyVisible) == 0x000001, "Wrong alignment on DataLayerInstance_IsInitiallyVisible"); \ +static_assert(sizeof(DataLayerInstance_IsInitiallyVisible) == 0x000001, "Wrong size on DataLayerInstance_IsInitiallyVisible"); \ +static_assert(offsetof(DataLayerInstance_IsInitiallyVisible, ReturnValue) == 0x000000, "Member 'DataLayerInstance_IsInitiallyVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_IsRuntime \ +static_assert(alignof(DataLayerInstance_IsRuntime) == 0x000001, "Wrong alignment on DataLayerInstance_IsRuntime"); \ +static_assert(sizeof(DataLayerInstance_IsRuntime) == 0x000001, "Wrong size on DataLayerInstance_IsRuntime"); \ +static_assert(offsetof(DataLayerInstance_IsRuntime, ReturnValue) == 0x000000, "Member 'DataLayerInstance_IsRuntime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerInstance_IsVisible \ +static_assert(alignof(DataLayerInstance_IsVisible) == 0x000001, "Wrong alignment on DataLayerInstance_IsVisible"); \ +static_assert(sizeof(DataLayerInstance_IsVisible) == 0x000001, "Wrong size on DataLayerInstance_IsVisible"); \ +static_assert(offsetof(DataLayerInstance_IsVisible, ReturnValue) == 0x000000, "Member 'DataLayerInstance_IsVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerInstance \ +static_assert(alignof(UDataLayerInstance) == 0x000008, "Wrong alignment on UDataLayerInstance"); \ +static_assert(sizeof(UDataLayerInstance) == 0x000048, "Wrong size on UDataLayerInstance"); \ +static_assert(offsetof(UDataLayerInstance, InitialRuntimeState) == 0x000028, "Member 'UDataLayerInstance::InitialRuntimeState' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerInstance, Parent) == 0x000030, "Member 'UDataLayerInstance::Parent' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerInstance, Children) == 0x000038, "Member 'UDataLayerInstance::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionGenericConstant \ +static_assert(alignof(UMaterialExpressionGenericConstant) == 0x000008, "Wrong alignment on UMaterialExpressionGenericConstant"); \ +static_assert(sizeof(UMaterialExpressionGenericConstant) == 0x0000B0, "Wrong size on UMaterialExpressionGenericConstant"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstantDouble \ +static_assert(alignof(UMaterialExpressionConstantDouble) == 0x000008, "Wrong alignment on UMaterialExpressionConstantDouble"); \ +static_assert(sizeof(UMaterialExpressionConstantDouble) == 0x0000B8, "Wrong size on UMaterialExpressionConstantDouble"); \ +static_assert(offsetof(UMaterialExpressionConstantDouble, Value) == 0x0000B0, "Member 'UMaterialExpressionConstantDouble::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UContentBundleTypeFactory \ +static_assert(alignof(UContentBundleTypeFactory) == 0x000008, "Wrong alignment on UContentBundleTypeFactory"); \ +static_assert(sizeof(UContentBundleTypeFactory) == 0x000028, "Wrong size on UContentBundleTypeFactory"); \ + +#define DUMPER7_ASSERTS_UControlChannel \ +static_assert(alignof(UControlChannel) == 0x000008, "Wrong alignment on UControlChannel"); \ +static_assert(sizeof(UControlChannel) == 0x000080, "Wrong size on UControlChannel"); \ + +#define DUMPER7_ASSERTS_UBrushComponent \ +static_assert(alignof(UBrushComponent) == 0x000010, "Wrong alignment on UBrushComponent"); \ +static_assert(sizeof(UBrushComponent) == 0x000580, "Wrong size on UBrushComponent"); \ +static_assert(offsetof(UBrushComponent, Brush) == 0x000570, "Member 'UBrushComponent::Brush' has a wrong offset!"); \ +static_assert(offsetof(UBrushComponent, BrushBodySetup) == 0x000578, "Member 'UBrushComponent::BrushBodySetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionObjectPositionWS \ +static_assert(alignof(UMaterialExpressionObjectPositionWS) == 0x000008, "Wrong alignment on UMaterialExpressionObjectPositionWS"); \ +static_assert(sizeof(UMaterialExpressionObjectPositionWS) == 0x0000B8, "Wrong size on UMaterialExpressionObjectPositionWS"); \ +static_assert(offsetof(UMaterialExpressionObjectPositionWS, OriginType) == 0x0000B0, "Member 'UMaterialExpressionObjectPositionWS::OriginType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartition \ +static_assert(alignof(UWorldPartition) == 0x000010, "Wrong alignment on UWorldPartition"); \ +static_assert(sizeof(UWorldPartition) == 0x000100, "Wrong size on UWorldPartition"); \ +static_assert(offsetof(UWorldPartition, ActorDescContainer) == 0x000030, "Member 'UWorldPartition::ActorDescContainer' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, RuntimeHash) == 0x000038, "Member 'UWorldPartition::RuntimeHash' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, bEnableStreaming) == 0x000040, "Member 'UWorldPartition::bEnableStreaming' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, ServerStreamingMode) == 0x000041, "Member 'UWorldPartition::ServerStreamingMode' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, ServerStreamingOutMode) == 0x000042, "Member 'UWorldPartition::ServerStreamingOutMode' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, DataLayerManager) == 0x0000E0, "Member 'UWorldPartition::DataLayerManager' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartition, StreamingPolicy) == 0x0000E8, "Member 'UWorldPartition::StreamingPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionSettings \ +static_assert(alignof(UAnimBoneCompressionSettings) == 0x000008, "Wrong alignment on UAnimBoneCompressionSettings"); \ +static_assert(sizeof(UAnimBoneCompressionSettings) == 0x000038, "Wrong size on UAnimBoneCompressionSettings"); \ +static_assert(offsetof(UAnimBoneCompressionSettings, Codecs) == 0x000028, "Member 'UAnimBoneCompressionSettings::Codecs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_SetDataLayerInstanceRuntimeState \ +static_assert(alignof(DataLayerManager_SetDataLayerInstanceRuntimeState) == 0x000008, "Wrong alignment on DataLayerManager_SetDataLayerInstanceRuntimeState"); \ +static_assert(sizeof(DataLayerManager_SetDataLayerInstanceRuntimeState) == 0x000010, "Wrong size on DataLayerManager_SetDataLayerInstanceRuntimeState"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerInstanceRuntimeState, InDataLayerInstance) == 0x000000, "Member 'DataLayerManager_SetDataLayerInstanceRuntimeState::InDataLayerInstance' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerInstanceRuntimeState, InState) == 0x000008, "Member 'DataLayerManager_SetDataLayerInstanceRuntimeState::InState' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerInstanceRuntimeState, bInIsRecursive) == 0x000009, "Member 'DataLayerManager_SetDataLayerInstanceRuntimeState::bInIsRecursive' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerInstanceRuntimeState, ReturnValue) == 0x00000A, "Member 'DataLayerManager_SetDataLayerInstanceRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_SetDataLayerRuntimeState \ +static_assert(alignof(DataLayerManager_SetDataLayerRuntimeState) == 0x000008, "Wrong alignment on DataLayerManager_SetDataLayerRuntimeState"); \ +static_assert(sizeof(DataLayerManager_SetDataLayerRuntimeState) == 0x000010, "Wrong size on DataLayerManager_SetDataLayerRuntimeState"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerRuntimeState, InDataLayerAsset) == 0x000000, "Member 'DataLayerManager_SetDataLayerRuntimeState::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerRuntimeState, InState) == 0x000008, "Member 'DataLayerManager_SetDataLayerRuntimeState::InState' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerRuntimeState, bInIsRecursive) == 0x000009, "Member 'DataLayerManager_SetDataLayerRuntimeState::bInIsRecursive' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_SetDataLayerRuntimeState, ReturnValue) == 0x00000A, "Member 'DataLayerManager_SetDataLayerRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState \ +static_assert(alignof(DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState) == 0x000008, "Wrong alignment on DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState"); \ +static_assert(sizeof(DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState) == 0x000010, "Wrong size on DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState, InDataLayerInstance) == 0x000000, "Member 'DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState::InDataLayerInstance' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_GetDataLayerInstanceFromAsset \ +static_assert(alignof(DataLayerManager_GetDataLayerInstanceFromAsset) == 0x000008, "Wrong alignment on DataLayerManager_GetDataLayerInstanceFromAsset"); \ +static_assert(sizeof(DataLayerManager_GetDataLayerInstanceFromAsset) == 0x000010, "Wrong size on DataLayerManager_GetDataLayerInstanceFromAsset"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceFromAsset, InDataLayerAsset) == 0x000000, "Member 'DataLayerManager_GetDataLayerInstanceFromAsset::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceFromAsset, ReturnValue) == 0x000008, "Member 'DataLayerManager_GetDataLayerInstanceFromAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_GetDataLayerInstanceFromName \ +static_assert(alignof(DataLayerManager_GetDataLayerInstanceFromName) == 0x000008, "Wrong alignment on DataLayerManager_GetDataLayerInstanceFromName"); \ +static_assert(sizeof(DataLayerManager_GetDataLayerInstanceFromName) == 0x000010, "Wrong size on DataLayerManager_GetDataLayerInstanceFromName"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceFromName, InDataLayerInstanceName) == 0x000000, "Member 'DataLayerManager_GetDataLayerInstanceFromName::InDataLayerInstanceName' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceFromName, ReturnValue) == 0x000008, "Member 'DataLayerManager_GetDataLayerInstanceFromName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerManager_GetDataLayerInstanceRuntimeState \ +static_assert(alignof(DataLayerManager_GetDataLayerInstanceRuntimeState) == 0x000008, "Wrong alignment on DataLayerManager_GetDataLayerInstanceRuntimeState"); \ +static_assert(sizeof(DataLayerManager_GetDataLayerInstanceRuntimeState) == 0x000010, "Wrong size on DataLayerManager_GetDataLayerInstanceRuntimeState"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceRuntimeState, InDataLayerInstance) == 0x000000, "Member 'DataLayerManager_GetDataLayerInstanceRuntimeState::InDataLayerInstance' has a wrong offset!"); \ +static_assert(offsetof(DataLayerManager_GetDataLayerInstanceRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerManager_GetDataLayerInstanceRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerManager \ +static_assert(alignof(UDataLayerManager) == 0x000008, "Wrong alignment on UDataLayerManager"); \ +static_assert(sizeof(UDataLayerManager) == 0x0000D8, "Wrong size on UDataLayerManager"); \ +static_assert(offsetof(UDataLayerManager, OnDataLayerInstanceRuntimeStateChanged) == 0x000028, "Member 'UDataLayerManager::OnDataLayerInstanceRuntimeStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerManager, ReferencedObjects) == 0x000038, "Member 'UDataLayerManager::ReferencedObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProxyLODMeshSimplificationSettings \ +static_assert(alignof(UProxyLODMeshSimplificationSettings) == 0x000008, "Wrong alignment on UProxyLODMeshSimplificationSettings"); \ +static_assert(sizeof(UProxyLODMeshSimplificationSettings) == 0x000040, "Wrong size on UProxyLODMeshSimplificationSettings"); \ +static_assert(offsetof(UProxyLODMeshSimplificationSettings, ProxyLODMeshReductionModuleName) == 0x000038, "Member 'UProxyLODMeshSimplificationSettings::ProxyLODMeshReductionModuleName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionComponentMask \ +static_assert(alignof(UMaterialExpressionComponentMask) == 0x000008, "Wrong alignment on UMaterialExpressionComponentMask"); \ +static_assert(sizeof(UMaterialExpressionComponentMask) == 0x0000E0, "Wrong size on UMaterialExpressionComponentMask"); \ +static_assert(offsetof(UMaterialExpressionComponentMask, Input) == 0x0000B0, "Member 'UMaterialExpressionComponentMask::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDebugGarbageCollectionGraph \ +static_assert(alignof(UDebugGarbageCollectionGraph) == 0x000008, "Wrong alignment on UDebugGarbageCollectionGraph"); \ +static_assert(sizeof(UDebugGarbageCollectionGraph) == 0x000048, "Wrong size on UDebugGarbageCollectionGraph"); \ + +#define DUMPER7_ASSERTS_UAsyncActionLoadPrimaryAssetBase \ +static_assert(alignof(UAsyncActionLoadPrimaryAssetBase) == 0x000008, "Wrong alignment on UAsyncActionLoadPrimaryAssetBase"); \ +static_assert(sizeof(UAsyncActionLoadPrimaryAssetBase) == 0x000078, "Wrong size on UAsyncActionLoadPrimaryAssetBase"); \ + +#define DUMPER7_ASSERTS_AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset \ +static_assert(alignof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset) == 0x000008, "Wrong alignment on AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset"); \ +static_assert(sizeof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset) == 0x000030, "Wrong size on AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset, WorldContextObject) == 0x000000, "Member 'AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset, PrimaryAsset) == 0x000008, "Member 'AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset::PrimaryAsset' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset, LoadBundles) == 0x000018, "Member 'AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset::LoadBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset, ReturnValue) == 0x000028, "Member 'AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionLoadPrimaryAsset \ +static_assert(alignof(UAsyncActionLoadPrimaryAsset) == 0x000008, "Wrong alignment on UAsyncActionLoadPrimaryAsset"); \ +static_assert(sizeof(UAsyncActionLoadPrimaryAsset) == 0x000088, "Wrong size on UAsyncActionLoadPrimaryAsset"); \ +static_assert(offsetof(UAsyncActionLoadPrimaryAsset, Completed) == 0x000078, "Member 'UAsyncActionLoadPrimaryAsset::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDemoNetConnection \ +static_assert(alignof(UDemoNetConnection) == 0x000008, "Wrong alignment on UDemoNetConnection"); \ +static_assert(sizeof(UDemoNetConnection) == 0x001E48, "Wrong size on UDemoNetConnection"); \ + +#define DUMPER7_ASSERTS_UPendingNetGame \ +static_assert(alignof(UPendingNetGame) == 0x000008, "Wrong alignment on UPendingNetGame"); \ +static_assert(sizeof(UPendingNetGame) == 0x0000C0, "Wrong size on UPendingNetGame"); \ +static_assert(offsetof(UPendingNetGame, NetDriver) == 0x000030, "Member 'UPendingNetGame::NetDriver' has a wrong offset!"); \ +static_assert(offsetof(UPendingNetGame, DemoNetDriver) == 0x000038, "Member 'UPendingNetGame::DemoNetDriver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCameraVectorWS \ +static_assert(alignof(UMaterialExpressionCameraVectorWS) == 0x000008, "Wrong alignment on UMaterialExpressionCameraVectorWS"); \ +static_assert(sizeof(UMaterialExpressionCameraVectorWS) == 0x0000B0, "Wrong size on UMaterialExpressionCameraVectorWS"); \ + +#define DUMPER7_ASSERTS_UDemoPendingNetGame \ +static_assert(alignof(UDemoPendingNetGame) == 0x000008, "Wrong alignment on UDemoPendingNetGame"); \ +static_assert(sizeof(UDemoPendingNetGame) == 0x0000C0, "Wrong size on UDemoPendingNetGame"); \ + +#define DUMPER7_ASSERTS_UShapeComponent \ +static_assert(alignof(UShapeComponent) == 0x000010, "Wrong alignment on UShapeComponent"); \ +static_assert(sizeof(UShapeComponent) == 0x000590, "Wrong size on UShapeComponent"); \ +static_assert(offsetof(UShapeComponent, ShapeBodySetup) == 0x000570, "Member 'UShapeComponent::ShapeBodySetup' has a wrong offset!"); \ +static_assert(offsetof(UShapeComponent, ShapeColor) == 0x000578, "Member 'UShapeComponent::ShapeColor' has a wrong offset!"); \ +static_assert(offsetof(UShapeComponent, AreaClassOverride) == 0x000580, "Member 'UShapeComponent::AreaClassOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen \ +static_assert(alignof(StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen) == 0x000001, "Wrong alignment on StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen"); \ +static_assert(sizeof(StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen) == 0x000001, "Wrong size on StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen, InAutoShowEnabled) == 0x000000, "Member 'StereoLayerFunctionLibrary_EnableAutoLoadingSplashScreen::InAutoShowEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerFunctionLibrary_SetSplashScreen \ +static_assert(alignof(StereoLayerFunctionLibrary_SetSplashScreen) == 0x000008, "Wrong alignment on StereoLayerFunctionLibrary_SetSplashScreen"); \ +static_assert(sizeof(StereoLayerFunctionLibrary_SetSplashScreen) == 0x000038, "Wrong size on StereoLayerFunctionLibrary_SetSplashScreen"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_SetSplashScreen, Texture) == 0x000000, "Member 'StereoLayerFunctionLibrary_SetSplashScreen::Texture' has a wrong offset!"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_SetSplashScreen, Scale) == 0x000008, "Member 'StereoLayerFunctionLibrary_SetSplashScreen::Scale' has a wrong offset!"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_SetSplashScreen, Offset) == 0x000018, "Member 'StereoLayerFunctionLibrary_SetSplashScreen::Offset' has a wrong offset!"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_SetSplashScreen, bShowLoadingMovie) == 0x000030, "Member 'StereoLayerFunctionLibrary_SetSplashScreen::bShowLoadingMovie' has a wrong offset!"); \ +static_assert(offsetof(StereoLayerFunctionLibrary_SetSplashScreen, bShowOnSet) == 0x000031, "Member 'StereoLayerFunctionLibrary_SetSplashScreen::bShowOnSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerFunctionLibrary \ +static_assert(alignof(UStereoLayerFunctionLibrary) == 0x000008, "Wrong alignment on UStereoLayerFunctionLibrary"); \ +static_assert(sizeof(UStereoLayerFunctionLibrary) == 0x000028, "Wrong size on UStereoLayerFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionClearCoatNormalCustomOutput \ +static_assert(alignof(UMaterialExpressionClearCoatNormalCustomOutput) == 0x000008, "Wrong alignment on UMaterialExpressionClearCoatNormalCustomOutput"); \ +static_assert(sizeof(UMaterialExpressionClearCoatNormalCustomOutput) == 0x0000D8, "Wrong size on UMaterialExpressionClearCoatNormalCustomOutput"); \ +static_assert(offsetof(UMaterialExpressionClearCoatNormalCustomOutput, Input) == 0x0000B0, "Member 'UMaterialExpressionClearCoatNormalCustomOutput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDeviceProfileFragment \ +static_assert(alignof(UDeviceProfileFragment) == 0x000008, "Wrong alignment on UDeviceProfileFragment"); \ +static_assert(sizeof(UDeviceProfileFragment) == 0x000038, "Wrong size on UDeviceProfileFragment"); \ +static_assert(offsetof(UDeviceProfileFragment, CVars) == 0x000028, "Member 'UDeviceProfileFragment::CVars' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueSoundWaveProxy \ +static_assert(alignof(UDialogueSoundWaveProxy) == 0x000008, "Wrong alignment on UDialogueSoundWaveProxy"); \ +static_assert(sizeof(UDialogueSoundWaveProxy) == 0x000180, "Wrong size on UDialogueSoundWaveProxy"); \ + +#define DUMPER7_ASSERTS_ASkeletalMeshActor \ +static_assert(alignof(ASkeletalMeshActor) == 0x000008, "Wrong alignment on ASkeletalMeshActor"); \ +static_assert(sizeof(ASkeletalMeshActor) == 0x000318, "Wrong size on ASkeletalMeshActor"); \ +static_assert(offsetof(ASkeletalMeshActor, SkeletalMeshComponent) == 0x0002A0, "Member 'ASkeletalMeshActor::SkeletalMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(ASkeletalMeshActor, ReplicatedMesh) == 0x0002A8, "Member 'ASkeletalMeshActor::ReplicatedMesh' has a wrong offset!"); \ +static_assert(offsetof(ASkeletalMeshActor, ReplicatedPhysAsset) == 0x0002B0, "Member 'ASkeletalMeshActor::ReplicatedPhysAsset' has a wrong offset!"); \ +static_assert(offsetof(ASkeletalMeshActor, ReplicatedMaterial0) == 0x0002B8, "Member 'ASkeletalMeshActor::ReplicatedMaterial0' has a wrong offset!"); \ +static_assert(offsetof(ASkeletalMeshActor, ReplicatedMaterial1) == 0x0002C0, "Member 'ASkeletalMeshActor::ReplicatedMaterial1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDynamicParameter \ +static_assert(alignof(UMaterialExpressionDynamicParameter) == 0x000008, "Wrong alignment on UMaterialExpressionDynamicParameter"); \ +static_assert(sizeof(UMaterialExpressionDynamicParameter) == 0x0000D8, "Wrong size on UMaterialExpressionDynamicParameter"); \ +static_assert(offsetof(UMaterialExpressionDynamicParameter, ParamNames) == 0x0000B0, "Member 'UMaterialExpressionDynamicParameter::ParamNames' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDynamicParameter, DefaultValue) == 0x0000C0, "Member 'UMaterialExpressionDynamicParameter::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDynamicParameter, ParameterIndex) == 0x0000D0, "Member 'UMaterialExpressionDynamicParameter::ParameterIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetAffectTranslucentLighting \ +static_assert(alignof(Light_SetAffectTranslucentLighting) == 0x000001, "Wrong alignment on Light_SetAffectTranslucentLighting"); \ +static_assert(sizeof(Light_SetAffectTranslucentLighting) == 0x000001, "Wrong size on Light_SetAffectTranslucentLighting"); \ +static_assert(offsetof(Light_SetAffectTranslucentLighting, bNewValue) == 0x000000, "Member 'Light_SetAffectTranslucentLighting::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetBrightness \ +static_assert(alignof(Light_SetBrightness) == 0x000004, "Wrong alignment on Light_SetBrightness"); \ +static_assert(sizeof(Light_SetBrightness) == 0x000004, "Wrong size on Light_SetBrightness"); \ +static_assert(offsetof(Light_SetBrightness, NewBrightness) == 0x000000, "Member 'Light_SetBrightness::NewBrightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetCastShadows \ +static_assert(alignof(Light_SetCastShadows) == 0x000001, "Wrong alignment on Light_SetCastShadows"); \ +static_assert(sizeof(Light_SetCastShadows) == 0x000001, "Wrong size on Light_SetCastShadows"); \ +static_assert(offsetof(Light_SetCastShadows, bNewValue) == 0x000000, "Member 'Light_SetCastShadows::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetEnabled \ +static_assert(alignof(Light_SetEnabled) == 0x000001, "Wrong alignment on Light_SetEnabled"); \ +static_assert(sizeof(Light_SetEnabled) == 0x000001, "Wrong size on Light_SetEnabled"); \ +static_assert(offsetof(Light_SetEnabled, bSetEnabled) == 0x000000, "Member 'Light_SetEnabled::bSetEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetLightColor \ +static_assert(alignof(Light_SetLightColor) == 0x000004, "Wrong alignment on Light_SetLightColor"); \ +static_assert(sizeof(Light_SetLightColor) == 0x000010, "Wrong size on Light_SetLightColor"); \ +static_assert(offsetof(Light_SetLightColor, NewLightColor) == 0x000000, "Member 'Light_SetLightColor::NewLightColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetLightFunctionFadeDistance \ +static_assert(alignof(Light_SetLightFunctionFadeDistance) == 0x000004, "Wrong alignment on Light_SetLightFunctionFadeDistance"); \ +static_assert(sizeof(Light_SetLightFunctionFadeDistance) == 0x000004, "Wrong size on Light_SetLightFunctionFadeDistance"); \ +static_assert(offsetof(Light_SetLightFunctionFadeDistance, NewLightFunctionFadeDistance) == 0x000000, "Member 'Light_SetLightFunctionFadeDistance::NewLightFunctionFadeDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetLightFunctionMaterial \ +static_assert(alignof(Light_SetLightFunctionMaterial) == 0x000008, "Wrong alignment on Light_SetLightFunctionMaterial"); \ +static_assert(sizeof(Light_SetLightFunctionMaterial) == 0x000008, "Wrong size on Light_SetLightFunctionMaterial"); \ +static_assert(offsetof(Light_SetLightFunctionMaterial, NewLightFunctionMaterial) == 0x000000, "Member 'Light_SetLightFunctionMaterial::NewLightFunctionMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_SetLightFunctionScale \ +static_assert(alignof(Light_SetLightFunctionScale) == 0x000008, "Wrong alignment on Light_SetLightFunctionScale"); \ +static_assert(sizeof(Light_SetLightFunctionScale) == 0x000018, "Wrong size on Light_SetLightFunctionScale"); \ +static_assert(offsetof(Light_SetLightFunctionScale, NewLightFunctionScale) == 0x000000, "Member 'Light_SetLightFunctionScale::NewLightFunctionScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_GetBrightness \ +static_assert(alignof(Light_GetBrightness) == 0x000004, "Wrong alignment on Light_GetBrightness"); \ +static_assert(sizeof(Light_GetBrightness) == 0x000004, "Wrong size on Light_GetBrightness"); \ +static_assert(offsetof(Light_GetBrightness, ReturnValue) == 0x000000, "Member 'Light_GetBrightness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_GetLightColor \ +static_assert(alignof(Light_GetLightColor) == 0x000004, "Wrong alignment on Light_GetLightColor"); \ +static_assert(sizeof(Light_GetLightColor) == 0x000010, "Wrong size on Light_GetLightColor"); \ +static_assert(offsetof(Light_GetLightColor, ReturnValue) == 0x000000, "Member 'Light_GetLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Light_IsEnabled \ +static_assert(alignof(Light_IsEnabled) == 0x000001, "Wrong alignment on Light_IsEnabled"); \ +static_assert(sizeof(Light_IsEnabled) == 0x000001, "Wrong size on Light_IsEnabled"); \ +static_assert(offsetof(Light_IsEnabled, ReturnValue) == 0x000000, "Member 'Light_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALight \ +static_assert(alignof(ALight) == 0x000008, "Wrong alignment on ALight"); \ +static_assert(sizeof(ALight) == 0x0002A8, "Wrong size on ALight"); \ +static_assert(offsetof(ALight, LightComponent) == 0x000298, "Member 'ALight::LightComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataVerticalLayering \ +static_assert(alignof(UMaterialExpressionStrataVerticalLayering) == 0x000008, "Wrong alignment on UMaterialExpressionStrataVerticalLayering"); \ +static_assert(sizeof(UMaterialExpressionStrataVerticalLayering) == 0x000130, "Wrong size on UMaterialExpressionStrataVerticalLayering"); \ +static_assert(offsetof(UMaterialExpressionStrataVerticalLayering, Top) == 0x0000B0, "Member 'UMaterialExpressionStrataVerticalLayering::Top' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataVerticalLayering, base) == 0x0000D8, "Member 'UMaterialExpressionStrataVerticalLayering::base' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataVerticalLayering, Thickness) == 0x000100, "Member 'UMaterialExpressionStrataVerticalLayering::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADirectionalLight \ +static_assert(alignof(ADirectionalLight) == 0x000008, "Wrong alignment on ADirectionalLight"); \ +static_assert(sizeof(ADirectionalLight) == 0x0002A8, "Wrong size on ADirectionalLight"); \ + +#define DUMPER7_ASSERTS_UDistribution \ +static_assert(alignof(UDistribution) == 0x000008, "Wrong alignment on UDistribution"); \ +static_assert(sizeof(UDistribution) == 0x000030, "Wrong size on UDistribution"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementIdMapTransactor \ +static_assert(alignof(USMInstanceElementIdMapTransactor) == 0x000008, "Wrong alignment on USMInstanceElementIdMapTransactor"); \ +static_assert(sizeof(USMInstanceElementIdMapTransactor) == 0x000028, "Wrong size on USMInstanceElementIdMapTransactor"); \ + +#define DUMPER7_ASSERTS_UMeshSimplificationSettings \ +static_assert(alignof(UMeshSimplificationSettings) == 0x000008, "Wrong alignment on UMeshSimplificationSettings"); \ +static_assert(sizeof(UMeshSimplificationSettings) == 0x000048, "Wrong size on UMeshSimplificationSettings"); \ +static_assert(offsetof(UMeshSimplificationSettings, MeshReductionModuleName) == 0x000038, "Member 'UMeshSimplificationSettings::MeshReductionModuleName' has a wrong offset!"); \ +static_assert(offsetof(UMeshSimplificationSettings, bMeshReductionBackwardCompatible) == 0x000040, "Member 'UMeshSimplificationSettings::bMeshReductionBackwardCompatible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVolumetricAdvancedMaterialInput \ +static_assert(alignof(UMaterialExpressionVolumetricAdvancedMaterialInput) == 0x000008, "Wrong alignment on UMaterialExpressionVolumetricAdvancedMaterialInput"); \ +static_assert(sizeof(UMaterialExpressionVolumetricAdvancedMaterialInput) == 0x0000B0, "Wrong size on UMaterialExpressionVolumetricAdvancedMaterialInput"); \ + +#define DUMPER7_ASSERTS_UDistributionFloat \ +static_assert(alignof(UDistributionFloat) == 0x000008, "Wrong alignment on UDistributionFloat"); \ +static_assert(sizeof(UDistributionFloat) == 0x000038, "Wrong size on UDistributionFloat"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatConstant \ +static_assert(alignof(UDistributionFloatConstant) == 0x000008, "Wrong alignment on UDistributionFloatConstant"); \ +static_assert(sizeof(UDistributionFloatConstant) == 0x000040, "Wrong size on UDistributionFloatConstant"); \ +static_assert(offsetof(UDistributionFloatConstant, Constant) == 0x000038, "Member 'UDistributionFloatConstant::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectElementAssetDataInterface \ +static_assert(alignof(UObjectElementAssetDataInterface) == 0x000008, "Wrong alignment on UObjectElementAssetDataInterface"); \ +static_assert(sizeof(UObjectElementAssetDataInterface) == 0x000030, "Wrong size on UObjectElementAssetDataInterface"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatConstantCurve \ +static_assert(alignof(UDistributionFloatConstantCurve) == 0x000008, "Wrong alignment on UDistributionFloatConstantCurve"); \ +static_assert(sizeof(UDistributionFloatConstantCurve) == 0x000050, "Wrong size on UDistributionFloatConstantCurve"); \ +static_assert(offsetof(UDistributionFloatConstantCurve, ConstantCurve) == 0x000038, "Member 'UDistributionFloatConstantCurve::ConstantCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataAsset \ +static_assert(alignof(UDataAsset) == 0x000008, "Wrong alignment on UDataAsset"); \ +static_assert(sizeof(UDataAsset) == 0x000030, "Wrong size on UDataAsset"); \ +static_assert(offsetof(UDataAsset, NativeClass) == 0x000028, "Member 'UDataAsset::NativeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPreviewMeshCollection \ +static_assert(alignof(UPreviewMeshCollection) == 0x000008, "Wrong alignment on UPreviewMeshCollection"); \ +static_assert(sizeof(UPreviewMeshCollection) == 0x000050, "Wrong size on UPreviewMeshCollection"); \ +static_assert(offsetof(UPreviewMeshCollection, Skeleton) == 0x000038, "Member 'UPreviewMeshCollection::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(UPreviewMeshCollection, SkeletalMeshes) == 0x000040, "Member 'UPreviewMeshCollection::SkeletalMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpecularProfile \ +static_assert(alignof(USpecularProfile) == 0x000008, "Wrong alignment on USpecularProfile"); \ +static_assert(sizeof(USpecularProfile) == 0x000458, "Wrong size on USpecularProfile"); \ +static_assert(offsetof(USpecularProfile, Settings) == 0x000028, "Member 'USpecularProfile::Settings' has a wrong offset!"); \ +static_assert(offsetof(USpecularProfile, Guid) == 0x000448, "Member 'USpecularProfile::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstant3Vector \ +static_assert(alignof(UMaterialExpressionConstant3Vector) == 0x000008, "Wrong alignment on UMaterialExpressionConstant3Vector"); \ +static_assert(sizeof(UMaterialExpressionConstant3Vector) == 0x0000C0, "Wrong size on UMaterialExpressionConstant3Vector"); \ +static_assert(offsetof(UMaterialExpressionConstant3Vector, Constant) == 0x0000B0, "Member 'UMaterialExpressionConstant3Vector::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatParameterBase \ +static_assert(alignof(UDistributionFloatParameterBase) == 0x000008, "Wrong alignment on UDistributionFloatParameterBase"); \ +static_assert(sizeof(UDistributionFloatParameterBase) == 0x000060, "Wrong size on UDistributionFloatParameterBase"); \ +static_assert(offsetof(UDistributionFloatParameterBase, ParameterName) == 0x000040, "Member 'UDistributionFloatParameterBase::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatParameterBase, MinInput) == 0x000048, "Member 'UDistributionFloatParameterBase::MinInput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatParameterBase, MaxInput) == 0x00004C, "Member 'UDistributionFloatParameterBase::MaxInput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatParameterBase, MinOutput) == 0x000050, "Member 'UDistributionFloatParameterBase::MinOutput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatParameterBase, MaxOutput) == 0x000054, "Member 'UDistributionFloatParameterBase::MaxOutput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatParameterBase, ParamMode) == 0x000058, "Member 'UDistributionFloatParameterBase::ParamMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatParticleParameter \ +static_assert(alignof(UDistributionFloatParticleParameter) == 0x000008, "Wrong alignment on UDistributionFloatParticleParameter"); \ +static_assert(sizeof(UDistributionFloatParticleParameter) == 0x000060, "Wrong size on UDistributionFloatParticleParameter"); \ + +#define DUMPER7_ASSERTS_AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets \ +static_assert(alignof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets) == 0x000008, "Wrong alignment on AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets"); \ +static_assert(sizeof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets) == 0x000030, "Wrong size on AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets, WorldContextObject) == 0x000000, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets, NewBundles) == 0x000008, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets::NewBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets, OldBundles) == 0x000018, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets::OldBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets, ReturnValue) == 0x000028, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList \ +static_assert(alignof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList) == 0x000008, "Wrong alignment on AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList"); \ +static_assert(sizeof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList) == 0x000040, "Wrong size on AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList, WorldContextObject) == 0x000000, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList, PrimaryAssetList) == 0x000008, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList::PrimaryAssetList' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList, AddBundles) == 0x000018, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList::AddBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList, RemoveBundles) == 0x000028, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList::RemoveBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList, ReturnValue) == 0x000038, "Member 'AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionChangePrimaryAssetBundles \ +static_assert(alignof(UAsyncActionChangePrimaryAssetBundles) == 0x000008, "Wrong alignment on UAsyncActionChangePrimaryAssetBundles"); \ +static_assert(sizeof(UAsyncActionChangePrimaryAssetBundles) == 0x000088, "Wrong size on UAsyncActionChangePrimaryAssetBundles"); \ +static_assert(offsetof(UAsyncActionChangePrimaryAssetBundles, Completed) == 0x000078, "Member 'UAsyncActionChangePrimaryAssetBundles::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFloor \ +static_assert(alignof(UMaterialExpressionFloor) == 0x000008, "Wrong alignment on UMaterialExpressionFloor"); \ +static_assert(sizeof(UMaterialExpressionFloor) == 0x0000D8, "Wrong size on UMaterialExpressionFloor"); \ +static_assert(offsetof(UMaterialExpressionFloor, Input) == 0x0000B0, "Member 'UMaterialExpressionFloor::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatUniform \ +static_assert(alignof(UDistributionFloatUniform) == 0x000008, "Wrong alignment on UDistributionFloatUniform"); \ +static_assert(sizeof(UDistributionFloatUniform) == 0x000040, "Wrong size on UDistributionFloatUniform"); \ +static_assert(offsetof(UDistributionFloatUniform, Min) == 0x000038, "Member 'UDistributionFloatUniform::Min' has a wrong offset!"); \ +static_assert(offsetof(UDistributionFloatUniform, Max) == 0x00003C, "Member 'UDistributionFloatUniform::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSubsurfaceMediumMaterialOutput \ +static_assert(alignof(UMaterialExpressionSubsurfaceMediumMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionSubsurfaceMediumMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionSubsurfaceMediumMaterialOutput) == 0x000100, "Wrong size on UMaterialExpressionSubsurfaceMediumMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionSubsurfaceMediumMaterialOutput, MeanFreePath) == 0x0000B0, "Member 'UMaterialExpressionSubsurfaceMediumMaterialOutput::MeanFreePath' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSubsurfaceMediumMaterialOutput, ScatteringDistribution) == 0x0000D8, "Member 'UMaterialExpressionSubsurfaceMediumMaterialOutput::ScatteringDistribution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionFloatUniformCurve \ +static_assert(alignof(UDistributionFloatUniformCurve) == 0x000008, "Wrong alignment on UDistributionFloatUniformCurve"); \ +static_assert(sizeof(UDistributionFloatUniformCurve) == 0x000050, "Wrong size on UDistributionFloatUniformCurve"); \ +static_assert(offsetof(UDistributionFloatUniformCurve, ConstantCurve) == 0x000038, "Member 'UDistributionFloatUniformCurve::ConstantCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataStreamChannel \ +static_assert(alignof(UDataStreamChannel) == 0x000008, "Wrong alignment on UDataStreamChannel"); \ +static_assert(sizeof(UDataStreamChannel) == 0x002098, "Wrong size on UDataStreamChannel"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDecalColor \ +static_assert(alignof(UMaterialExpressionDecalColor) == 0x000008, "Wrong alignment on UMaterialExpressionDecalColor"); \ +static_assert(sizeof(UMaterialExpressionDecalColor) == 0x0000B0, "Wrong size on UMaterialExpressionDecalColor"); \ + +#define DUMPER7_ASSERTS_UDistributionVector \ +static_assert(alignof(UDistributionVector) == 0x000008, "Wrong alignment on UDistributionVector"); \ +static_assert(sizeof(UDistributionVector) == 0x000038, "Wrong size on UDistributionVector"); \ + +#define DUMPER7_ASSERTS_ILODSyncInterface \ +static_assert(alignof(ILODSyncInterface) == 0x000001, "Wrong alignment on ILODSyncInterface"); \ +static_assert(sizeof(ILODSyncInterface) == 0x000001, "Wrong size on ILODSyncInterface"); \ + +#define DUMPER7_ASSERTS_UActorReplicationBridge \ +static_assert(alignof(UActorReplicationBridge) == 0x000008, "Wrong alignment on UActorReplicationBridge"); \ +static_assert(sizeof(UActorReplicationBridge) == 0x0004D0, "Wrong size on UActorReplicationBridge"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStaticComponentMaskParameter \ +static_assert(alignof(UMaterialExpressionStaticComponentMaskParameter) == 0x000008, "Wrong alignment on UMaterialExpressionStaticComponentMaskParameter"); \ +static_assert(sizeof(UMaterialExpressionStaticComponentMaskParameter) == 0x000108, "Wrong size on UMaterialExpressionStaticComponentMaskParameter"); \ +static_assert(offsetof(UMaterialExpressionStaticComponentMaskParameter, Input) == 0x0000D8, "Member 'UMaterialExpressionStaticComponentMaskParameter::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorConstant \ +static_assert(alignof(UDistributionVectorConstant) == 0x000008, "Wrong alignment on UDistributionVectorConstant"); \ +static_assert(sizeof(UDistributionVectorConstant) == 0x000058, "Wrong size on UDistributionVectorConstant"); \ +static_assert(offsetof(UDistributionVectorConstant, Constant) == 0x000038, "Member 'UDistributionVectorConstant::Constant' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorConstant, LockedAxes) == 0x000054, "Member 'UDistributionVectorConstant::LockedAxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorConstantCurve \ +static_assert(alignof(UDistributionVectorConstantCurve) == 0x000008, "Wrong alignment on UDistributionVectorConstantCurve"); \ +static_assert(sizeof(UDistributionVectorConstantCurve) == 0x000058, "Wrong size on UDistributionVectorConstantCurve"); \ +static_assert(offsetof(UDistributionVectorConstantCurve, ConstantCurve) == 0x000038, "Member 'UDistributionVectorConstantCurve::ConstantCurve' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorConstantCurve, LockedAxes) == 0x000054, "Member 'UDistributionVectorConstantCurve::LockedAxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementSelectionInterface \ +static_assert(alignof(USMInstanceElementSelectionInterface) == 0x000008, "Wrong alignment on USMInstanceElementSelectionInterface"); \ +static_assert(sizeof(USMInstanceElementSelectionInterface) == 0x000030, "Wrong size on USMInstanceElementSelectionInterface"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorParameterBase \ +static_assert(alignof(UDistributionVectorParameterBase) == 0x000008, "Wrong alignment on UDistributionVectorParameterBase"); \ +static_assert(sizeof(UDistributionVectorParameterBase) == 0x0000C8, "Wrong size on UDistributionVectorParameterBase"); \ +static_assert(offsetof(UDistributionVectorParameterBase, ParameterName) == 0x000058, "Member 'UDistributionVectorParameterBase::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorParameterBase, MinInput) == 0x000060, "Member 'UDistributionVectorParameterBase::MinInput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorParameterBase, MaxInput) == 0x000078, "Member 'UDistributionVectorParameterBase::MaxInput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorParameterBase, MinOutput) == 0x000090, "Member 'UDistributionVectorParameterBase::MinOutput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorParameterBase, MaxOutput) == 0x0000A8, "Member 'UDistributionVectorParameterBase::MaxOutput' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorParameterBase, ParamModes) == 0x0000C0, "Member 'UDistributionVectorParameterBase::ParamModes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList \ +static_assert(alignof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList) == 0x000008, "Wrong alignment on AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList"); \ +static_assert(sizeof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList) == 0x000030, "Wrong size on AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList, WorldContextObject) == 0x000000, "Member 'AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList, PrimaryAssetList) == 0x000008, "Member 'AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList::PrimaryAssetList' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList, LoadBundles) == 0x000018, "Member 'AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList::LoadBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList, ReturnValue) == 0x000028, "Member 'AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionLoadPrimaryAssetList \ +static_assert(alignof(UAsyncActionLoadPrimaryAssetList) == 0x000008, "Wrong alignment on UAsyncActionLoadPrimaryAssetList"); \ +static_assert(sizeof(UAsyncActionLoadPrimaryAssetList) == 0x000088, "Wrong size on UAsyncActionLoadPrimaryAssetList"); \ +static_assert(offsetof(UAsyncActionLoadPrimaryAssetList, Completed) == 0x000078, "Member 'UAsyncActionLoadPrimaryAssetList::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USimpleConstructionScript \ +static_assert(alignof(USimpleConstructionScript) == 0x000008, "Wrong alignment on USimpleConstructionScript"); \ +static_assert(sizeof(USimpleConstructionScript) == 0x0000B0, "Wrong size on USimpleConstructionScript"); \ +static_assert(offsetof(USimpleConstructionScript, RootNodes) == 0x000028, "Member 'USimpleConstructionScript::RootNodes' has a wrong offset!"); \ +static_assert(offsetof(USimpleConstructionScript, AllNodes) == 0x000038, "Member 'USimpleConstructionScript::AllNodes' has a wrong offset!"); \ +static_assert(offsetof(USimpleConstructionScript, DefaultSceneRootNode) == 0x000048, "Member 'USimpleConstructionScript::DefaultSceneRootNode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions \ +static_assert(alignof(MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions) == 0x000008, "Wrong alignment on MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions"); \ +static_assert(sizeof(MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions) == 0x000010, "Wrong size on MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions"); \ +static_assert(offsetof(MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions, ReturnValue) == 0x000000, "Member 'MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDataDrivenShaderPlatformInfoSwitch \ +static_assert(alignof(UMaterialExpressionDataDrivenShaderPlatformInfoSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionDataDrivenShaderPlatformInfoSwitch"); \ +static_assert(sizeof(UMaterialExpressionDataDrivenShaderPlatformInfoSwitch) == 0x000118, "Wrong size on UMaterialExpressionDataDrivenShaderPlatformInfoSwitch"); \ +static_assert(offsetof(UMaterialExpressionDataDrivenShaderPlatformInfoSwitch, InputTrue) == 0x0000B0, "Member 'UMaterialExpressionDataDrivenShaderPlatformInfoSwitch::InputTrue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDataDrivenShaderPlatformInfoSwitch, InputFalse) == 0x0000D8, "Member 'UMaterialExpressionDataDrivenShaderPlatformInfoSwitch::InputFalse' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDataDrivenShaderPlatformInfoSwitch, DDSPIPropertyNames) == 0x000100, "Member 'UMaterialExpressionDataDrivenShaderPlatformInfoSwitch::DDSPIPropertyNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorParticleParameter \ +static_assert(alignof(UDistributionVectorParticleParameter) == 0x000008, "Wrong alignment on UDistributionVectorParticleParameter"); \ +static_assert(sizeof(UDistributionVectorParticleParameter) == 0x0000C8, "Wrong size on UDistributionVectorParticleParameter"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorUniform \ +static_assert(alignof(UDistributionVectorUniform) == 0x000008, "Wrong alignment on UDistributionVectorUniform"); \ +static_assert(sizeof(UDistributionVectorUniform) == 0x000078, "Wrong size on UDistributionVectorUniform"); \ +static_assert(offsetof(UDistributionVectorUniform, Max) == 0x000038, "Member 'UDistributionVectorUniform::Max' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorUniform, Min) == 0x000050, "Member 'UDistributionVectorUniform::Min' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorUniform, LockedAxes) == 0x00006C, "Member 'UDistributionVectorUniform::LockedAxes' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorUniform, MirrorFlags) == 0x00006D, "Member 'UDistributionVectorUniform::MirrorFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec \ +static_assert(alignof(UAnimBoneCompressionCodec) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec"); \ +static_assert(sizeof(UAnimBoneCompressionCodec) == 0x000038, "Wrong size on UAnimBoneCompressionCodec"); \ +static_assert(offsetof(UAnimBoneCompressionCodec, Description) == 0x000028, "Member 'UAnimBoneCompressionCodec::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress \ +static_assert(alignof(UAnimCompress) == 0x000008, "Wrong alignment on UAnimCompress"); \ +static_assert(sizeof(UAnimCompress) == 0x000040, "Wrong size on UAnimCompress"); \ +static_assert(offsetof(UAnimCompress, TranslationCompressionFormat) == 0x00003C, "Member 'UAnimCompress::TranslationCompressionFormat' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress, RotationCompressionFormat) == 0x00003D, "Member 'UAnimCompress::RotationCompressionFormat' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress, ScaleCompressionFormat) == 0x00003E, "Member 'UAnimCompress::ScaleCompressionFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_BitwiseCompressOnly \ +static_assert(alignof(UAnimCompress_BitwiseCompressOnly) == 0x000008, "Wrong alignment on UAnimCompress_BitwiseCompressOnly"); \ +static_assert(sizeof(UAnimCompress_BitwiseCompressOnly) == 0x000040, "Wrong size on UAnimCompress_BitwiseCompressOnly"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBlendMaterialAttributes \ +static_assert(alignof(UMaterialExpressionBlendMaterialAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionBlendMaterialAttributes"); \ +static_assert(sizeof(UMaterialExpressionBlendMaterialAttributes) == 0x000140, "Wrong size on UMaterialExpressionBlendMaterialAttributes"); \ +static_assert(offsetof(UMaterialExpressionBlendMaterialAttributes, A) == 0x0000B0, "Member 'UMaterialExpressionBlendMaterialAttributes::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBlendMaterialAttributes, B) == 0x0000E0, "Member 'UMaterialExpressionBlendMaterialAttributes::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBlendMaterialAttributes, alpha) == 0x000110, "Member 'UMaterialExpressionBlendMaterialAttributes::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBlendMaterialAttributes, PixelAttributeBlendType) == 0x000138, "Member 'UMaterialExpressionBlendMaterialAttributes::PixelAttributeBlendType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBlendMaterialAttributes, VertexAttributeBlendType) == 0x000139, "Member 'UMaterialExpressionBlendMaterialAttributes::VertexAttributeBlendType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDistributionVectorUniformCurve \ +static_assert(alignof(UDistributionVectorUniformCurve) == 0x000008, "Wrong alignment on UDistributionVectorUniformCurve"); \ +static_assert(sizeof(UDistributionVectorUniformCurve) == 0x000060, "Wrong size on UDistributionVectorUniformCurve"); \ +static_assert(offsetof(UDistributionVectorUniformCurve, ConstantCurve) == 0x000038, "Member 'UDistributionVectorUniformCurve::ConstantCurve' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorUniformCurve, LockedAxes) == 0x000054, "Member 'UDistributionVectorUniformCurve::LockedAxes' has a wrong offset!"); \ +static_assert(offsetof(UDistributionVectorUniformCurve, MirrorFlags) == 0x000056, "Member 'UDistributionVectorUniformCurve::MirrorFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGraphNodeContextMenuContext \ +static_assert(alignof(UGraphNodeContextMenuContext) == 0x000008, "Wrong alignment on UGraphNodeContextMenuContext"); \ +static_assert(sizeof(UGraphNodeContextMenuContext) == 0x000050, "Wrong size on UGraphNodeContextMenuContext"); \ +static_assert(offsetof(UGraphNodeContextMenuContext, Blueprint) == 0x000028, "Member 'UGraphNodeContextMenuContext::Blueprint' has a wrong offset!"); \ +static_assert(offsetof(UGraphNodeContextMenuContext, Graph) == 0x000030, "Member 'UGraphNodeContextMenuContext::Graph' has a wrong offset!"); \ +static_assert(offsetof(UGraphNodeContextMenuContext, Node) == 0x000038, "Member 'UGraphNodeContextMenuContext::Node' has a wrong offset!"); \ +static_assert(offsetof(UGraphNodeContextMenuContext, bIsDebugging) == 0x000048, "Member 'UGraphNodeContextMenuContext::bIsDebugging' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectReferencer \ +static_assert(alignof(UObjectReferencer) == 0x000008, "Wrong alignment on UObjectReferencer"); \ +static_assert(sizeof(UObjectReferencer) == 0x000038, "Wrong size on UObjectReferencer"); \ +static_assert(offsetof(UObjectReferencer, ReferencedObjects) == 0x000028, "Member 'UObjectReferencer::ReferencedObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDesaturation \ +static_assert(alignof(UMaterialExpressionDesaturation) == 0x000008, "Wrong alignment on UMaterialExpressionDesaturation"); \ +static_assert(sizeof(UMaterialExpressionDesaturation) == 0x000110, "Wrong size on UMaterialExpressionDesaturation"); \ +static_assert(offsetof(UMaterialExpressionDesaturation, Input) == 0x0000B0, "Member 'UMaterialExpressionDesaturation::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDesaturation, Fraction) == 0x0000D8, "Member 'UMaterialExpressionDesaturation::Fraction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDesaturation, LuminanceFactors) == 0x000100, "Member 'UMaterialExpressionDesaturation::LuminanceFactors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEdGraphPin_Deprecated \ +static_assert(alignof(UEdGraphPin_Deprecated) == 0x000008, "Wrong alignment on UEdGraphPin_Deprecated"); \ +static_assert(sizeof(UEdGraphPin_Deprecated) == 0x000118, "Wrong size on UEdGraphPin_Deprecated"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, PinName) == 0x000028, "Member 'UEdGraphPin_Deprecated::PinName' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, PinToolTip) == 0x000038, "Member 'UEdGraphPin_Deprecated::PinToolTip' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, Direction) == 0x000048, "Member 'UEdGraphPin_Deprecated::Direction' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, PinType) == 0x000050, "Member 'UEdGraphPin_Deprecated::PinType' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, DefaultValue) == 0x0000A8, "Member 'UEdGraphPin_Deprecated::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, AutogeneratedDefaultValue) == 0x0000B8, "Member 'UEdGraphPin_Deprecated::AutogeneratedDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, DefaultObject) == 0x0000C8, "Member 'UEdGraphPin_Deprecated::DefaultObject' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, DefaultTextValue) == 0x0000D0, "Member 'UEdGraphPin_Deprecated::DefaultTextValue' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, LinkedTo) == 0x0000E8, "Member 'UEdGraphPin_Deprecated::LinkedTo' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, SubPins) == 0x0000F8, "Member 'UEdGraphPin_Deprecated::SubPins' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, ParentPin) == 0x000108, "Member 'UEdGraphPin_Deprecated::ParentPin' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphPin_Deprecated, ReferencePassThroughConnection) == 0x000110, "Member 'UEdGraphPin_Deprecated::ReferencePassThroughConnection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectTraceWorldSubsystem \ +static_assert(alignof(UObjectTraceWorldSubsystem) == 0x000008, "Wrong alignment on UObjectTraceWorldSubsystem"); \ +static_assert(sizeof(UObjectTraceWorldSubsystem) == 0x000040, "Wrong size on UObjectTraceWorldSubsystem"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataVolumetricFogCloudBSDF \ +static_assert(alignof(UMaterialExpressionStrataVolumetricFogCloudBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataVolumetricFogCloudBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataVolumetricFogCloudBSDF) == 0x000150, "Wrong size on UMaterialExpressionStrataVolumetricFogCloudBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataVolumetricFogCloudBSDF, Albedo) == 0x0000B0, "Member 'UMaterialExpressionStrataVolumetricFogCloudBSDF::Albedo' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataVolumetricFogCloudBSDF, Extinction) == 0x0000D8, "Member 'UMaterialExpressionStrataVolumetricFogCloudBSDF::Extinction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataVolumetricFogCloudBSDF, EmissiveColor) == 0x000100, "Member 'UMaterialExpressionStrataVolumetricFogCloudBSDF::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataVolumetricFogCloudBSDF, AmbientOcclusion) == 0x000128, "Member 'UMaterialExpressionStrataVolumetricFogCloudBSDF::AmbientOcclusion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEdGraphSchema \ +static_assert(alignof(UEdGraphSchema) == 0x000008, "Wrong alignment on UEdGraphSchema"); \ +static_assert(sizeof(UEdGraphSchema) == 0x000028, "Wrong size on UEdGraphSchema"); \ + +#define DUMPER7_ASSERTS_Emitter_OnParticleSystemFinished \ +static_assert(alignof(Emitter_OnParticleSystemFinished) == 0x000008, "Wrong alignment on Emitter_OnParticleSystemFinished"); \ +static_assert(sizeof(Emitter_OnParticleSystemFinished) == 0x000008, "Wrong size on Emitter_OnParticleSystemFinished"); \ +static_assert(offsetof(Emitter_OnParticleSystemFinished, FinishedComponent) == 0x000000, "Member 'Emitter_OnParticleSystemFinished::FinishedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetActorParameter \ +static_assert(alignof(Emitter_SetActorParameter) == 0x000008, "Wrong alignment on Emitter_SetActorParameter"); \ +static_assert(sizeof(Emitter_SetActorParameter) == 0x000010, "Wrong size on Emitter_SetActorParameter"); \ +static_assert(offsetof(Emitter_SetActorParameter, ParameterName) == 0x000000, "Member 'Emitter_SetActorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(Emitter_SetActorParameter, Param) == 0x000008, "Member 'Emitter_SetActorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetColorParameter \ +static_assert(alignof(Emitter_SetColorParameter) == 0x000004, "Wrong alignment on Emitter_SetColorParameter"); \ +static_assert(sizeof(Emitter_SetColorParameter) == 0x000018, "Wrong size on Emitter_SetColorParameter"); \ +static_assert(offsetof(Emitter_SetColorParameter, ParameterName) == 0x000000, "Member 'Emitter_SetColorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(Emitter_SetColorParameter, Param) == 0x000008, "Member 'Emitter_SetColorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetFloatParameter \ +static_assert(alignof(Emitter_SetFloatParameter) == 0x000004, "Wrong alignment on Emitter_SetFloatParameter"); \ +static_assert(sizeof(Emitter_SetFloatParameter) == 0x00000C, "Wrong size on Emitter_SetFloatParameter"); \ +static_assert(offsetof(Emitter_SetFloatParameter, ParameterName) == 0x000000, "Member 'Emitter_SetFloatParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(Emitter_SetFloatParameter, Param) == 0x000008, "Member 'Emitter_SetFloatParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetMaterialParameter \ +static_assert(alignof(Emitter_SetMaterialParameter) == 0x000008, "Wrong alignment on Emitter_SetMaterialParameter"); \ +static_assert(sizeof(Emitter_SetMaterialParameter) == 0x000010, "Wrong size on Emitter_SetMaterialParameter"); \ +static_assert(offsetof(Emitter_SetMaterialParameter, ParameterName) == 0x000000, "Member 'Emitter_SetMaterialParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(Emitter_SetMaterialParameter, Param) == 0x000008, "Member 'Emitter_SetMaterialParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetTemplate \ +static_assert(alignof(Emitter_SetTemplate) == 0x000008, "Wrong alignment on Emitter_SetTemplate"); \ +static_assert(sizeof(Emitter_SetTemplate) == 0x000008, "Wrong size on Emitter_SetTemplate"); \ +static_assert(offsetof(Emitter_SetTemplate, NewTemplate) == 0x000000, "Member 'Emitter_SetTemplate::NewTemplate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_SetVectorParameter \ +static_assert(alignof(Emitter_SetVectorParameter) == 0x000008, "Wrong alignment on Emitter_SetVectorParameter"); \ +static_assert(sizeof(Emitter_SetVectorParameter) == 0x000020, "Wrong size on Emitter_SetVectorParameter"); \ +static_assert(offsetof(Emitter_SetVectorParameter, ParameterName) == 0x000000, "Member 'Emitter_SetVectorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(Emitter_SetVectorParameter, Param) == 0x000008, "Member 'Emitter_SetVectorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Emitter_IsActive \ +static_assert(alignof(Emitter_IsActive) == 0x000001, "Wrong alignment on Emitter_IsActive"); \ +static_assert(sizeof(Emitter_IsActive) == 0x000001, "Wrong size on Emitter_IsActive"); \ +static_assert(offsetof(Emitter_IsActive, ReturnValue) == 0x000000, "Member 'Emitter_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AEmitter \ +static_assert(alignof(AEmitter) == 0x000008, "Wrong alignment on AEmitter"); \ +static_assert(sizeof(AEmitter) == 0x0002E8, "Wrong size on AEmitter"); \ +static_assert(offsetof(AEmitter, ParticleSystemComponent) == 0x000298, "Member 'AEmitter::ParticleSystemComponent' has a wrong offset!"); \ +static_assert(offsetof(AEmitter, OnParticleSpawn) == 0x0002A8, "Member 'AEmitter::OnParticleSpawn' has a wrong offset!"); \ +static_assert(offsetof(AEmitter, OnParticleBurst) == 0x0002B8, "Member 'AEmitter::OnParticleBurst' has a wrong offset!"); \ +static_assert(offsetof(AEmitter, OnParticleDeath) == 0x0002C8, "Member 'AEmitter::OnParticleDeath' has a wrong offset!"); \ +static_assert(offsetof(AEmitter, OnParticleCollide) == 0x0002D8, "Member 'AEmitter::OnParticleCollide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AEmitterCameraLensEffectBase \ +static_assert(alignof(AEmitterCameraLensEffectBase) == 0x000010, "Wrong alignment on AEmitterCameraLensEffectBase"); \ +static_assert(sizeof(AEmitterCameraLensEffectBase) == 0x000380, "Wrong size on AEmitterCameraLensEffectBase"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, PS_CameraEffect) == 0x0002F0, "Member 'AEmitterCameraLensEffectBase::PS_CameraEffect' has a wrong offset!"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, BaseCamera) == 0x0002F8, "Member 'AEmitterCameraLensEffectBase::BaseCamera' has a wrong offset!"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, RelativeTransform) == 0x000300, "Member 'AEmitterCameraLensEffectBase::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, BaseFOV) == 0x000360, "Member 'AEmitterCameraLensEffectBase::BaseFOV' has a wrong offset!"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, EmittersToTreatAsSame) == 0x000368, "Member 'AEmitterCameraLensEffectBase::EmittersToTreatAsSame' has a wrong offset!"); \ +static_assert(offsetof(AEmitterCameraLensEffectBase, DistFromCamera) == 0x000378, "Member 'AEmitterCameraLensEffectBase::DistFromCamera' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompositeBase \ +static_assert(alignof(UAnimCompositeBase) == 0x000008, "Wrong alignment on UAnimCompositeBase"); \ +static_assert(sizeof(UAnimCompositeBase) == 0x0000B8, "Wrong size on UAnimCompositeBase"); \ +static_assert(offsetof(UAnimCompositeBase, CommonTargetFrameRate) == 0x0000B0, "Member 'UAnimCompositeBase::CommonTargetFrameRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimComposite \ +static_assert(alignof(UAnimComposite) == 0x000008, "Wrong alignment on UAnimComposite"); \ +static_assert(sizeof(UAnimComposite) == 0x0000C8, "Wrong size on UAnimComposite"); \ +static_assert(offsetof(UAnimComposite, AnimationTrack) == 0x0000B8, "Member 'UAnimComposite::AnimationTrack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USlateBrushAsset \ +static_assert(alignof(USlateBrushAsset) == 0x000010, "Wrong alignment on USlateBrushAsset"); \ +static_assert(sizeof(USlateBrushAsset) == 0x000100, "Wrong size on USlateBrushAsset"); \ +static_assert(offsetof(USlateBrushAsset, Brush) == 0x000030, "Member 'USlateBrushAsset::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNaniteReplace \ +static_assert(alignof(UMaterialExpressionNaniteReplace) == 0x000008, "Wrong alignment on UMaterialExpressionNaniteReplace"); \ +static_assert(sizeof(UMaterialExpressionNaniteReplace) == 0x000100, "Wrong size on UMaterialExpressionNaniteReplace"); \ +static_assert(offsetof(UMaterialExpressionNaniteReplace, Default) == 0x0000B0, "Member 'UMaterialExpressionNaniteReplace::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNaniteReplace, Nanite) == 0x0000D8, "Member 'UMaterialExpressionNaniteReplace::Nanite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEngine \ +static_assert(alignof(UEngine) == 0x000008, "Wrong alignment on UEngine"); \ +static_assert(sizeof(UEngine) == 0x001078, "Wrong size on UEngine"); \ +static_assert(offsetof(UEngine, TinyFont) == 0x000030, "Member 'UEngine::TinyFont' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TinyFontName) == 0x000038, "Member 'UEngine::TinyFontName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SmallFont) == 0x000058, "Member 'UEngine::SmallFont' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SmallFontName) == 0x000060, "Member 'UEngine::SmallFontName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MediumFont) == 0x000080, "Member 'UEngine::MediumFont' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MediumFontName) == 0x000088, "Member 'UEngine::MediumFontName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LargeFont) == 0x0000A8, "Member 'UEngine::LargeFont' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LargeFontName) == 0x0000B0, "Member 'UEngine::LargeFontName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SubtitleFont) == 0x0000D0, "Member 'UEngine::SubtitleFont' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SubtitleFontName) == 0x0000D8, "Member 'UEngine::SubtitleFontName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AdditionalFonts) == 0x0000F8, "Member 'UEngine::AdditionalFonts' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AdditionalFontNames) == 0x000108, "Member 'UEngine::AdditionalFontNames' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConsoleClass) == 0x000118, "Member 'UEngine::ConsoleClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConsoleClassName) == 0x000120, "Member 'UEngine::ConsoleClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameViewportClientClass) == 0x000140, "Member 'UEngine::GameViewportClientClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameViewportClientClassName) == 0x000148, "Member 'UEngine::GameViewportClientClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LocalPlayerClass) == 0x000168, "Member 'UEngine::LocalPlayerClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LocalPlayerClassName) == 0x000170, "Member 'UEngine::LocalPlayerClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WorldSettingsClass) == 0x000190, "Member 'UEngine::WorldSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WorldSettingsClassName) == 0x000198, "Member 'UEngine::WorldSettingsClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NavigationSystemClassName) == 0x0001B8, "Member 'UEngine::NavigationSystemClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NavigationSystemClass) == 0x0001D8, "Member 'UEngine::NavigationSystemClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NavigationSystemConfigClassName) == 0x0001E0, "Member 'UEngine::NavigationSystemConfigClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NavigationSystemConfigClass) == 0x000200, "Member 'UEngine::NavigationSystemConfigClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AvoidanceManagerClassName) == 0x000208, "Member 'UEngine::AvoidanceManagerClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AvoidanceManagerClass) == 0x000228, "Member 'UEngine::AvoidanceManagerClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AIControllerClassName) == 0x000230, "Member 'UEngine::AIControllerClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PhysicsCollisionHandlerClass) == 0x000250, "Member 'UEngine::PhysicsCollisionHandlerClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PhysicsCollisionHandlerClassName) == 0x000258, "Member 'UEngine::PhysicsCollisionHandlerClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameUserSettingsClassName) == 0x000278, "Member 'UEngine::GameUserSettingsClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameUserSettingsClass) == 0x000298, "Member 'UEngine::GameUserSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameUserSettings) == 0x0002A0, "Member 'UEngine::GameUserSettings' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelScriptActorClass) == 0x0002A8, "Member 'UEngine::LevelScriptActorClass' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelScriptActorClassName) == 0x0002B0, "Member 'UEngine::LevelScriptActorClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBlueprintBaseClassName) == 0x0002D0, "Member 'UEngine::DefaultBlueprintBaseClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameSingletonClassName) == 0x0002F0, "Member 'UEngine::GameSingletonClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameSingleton) == 0x000310, "Member 'UEngine::GameSingleton' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AssetManagerClassName) == 0x000318, "Member 'UEngine::AssetManagerClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, AssetManager) == 0x000338, "Member 'UEngine::AssetManager' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultTexture) == 0x000340, "Member 'UEngine::DefaultTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultTextureName) == 0x000348, "Member 'UEngine::DefaultTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultDiffuseTexture) == 0x000368, "Member 'UEngine::DefaultDiffuseTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultDiffuseTextureName) == 0x000370, "Member 'UEngine::DefaultDiffuseTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBSPVertexTexture) == 0x000390, "Member 'UEngine::DefaultBSPVertexTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBSPVertexTextureName) == 0x000398, "Member 'UEngine::DefaultBSPVertexTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, HighFrequencyNoiseTexture) == 0x0003B8, "Member 'UEngine::HighFrequencyNoiseTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, HighFrequencyNoiseTextureName) == 0x0003C0, "Member 'UEngine::HighFrequencyNoiseTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBokehTexture) == 0x0003E0, "Member 'UEngine::DefaultBokehTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBokehTextureName) == 0x0003E8, "Member 'UEngine::DefaultBokehTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBloomKernelTexture) == 0x000408, "Member 'UEngine::DefaultBloomKernelTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultBloomKernelTextureName) == 0x000410, "Member 'UEngine::DefaultBloomKernelTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultFilmGrainTexture) == 0x000430, "Member 'UEngine::DefaultFilmGrainTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultFilmGrainTextureName) == 0x000438, "Member 'UEngine::DefaultFilmGrainTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WireframeMaterial) == 0x000458, "Member 'UEngine::WireframeMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WireframeMaterialName) == 0x000460, "Member 'UEngine::WireframeMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DebugMeshMaterial) == 0x000470, "Member 'UEngine::DebugMeshMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DebugMeshMaterialName) == 0x000478, "Member 'UEngine::DebugMeshMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NaniteHiddenSectionMaterial) == 0x000498, "Member 'UEngine::NaniteHiddenSectionMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NaniteHiddenSectionMaterialName) == 0x0004A0, "Member 'UEngine::NaniteHiddenSectionMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, EmissiveMeshMaterial) == 0x0004B0, "Member 'UEngine::EmissiveMeshMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, EmissiveMeshMaterialName) == 0x0004B8, "Member 'UEngine::EmissiveMeshMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelColorationLitMaterial) == 0x0004D8, "Member 'UEngine::LevelColorationLitMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelColorationLitMaterialName) == 0x0004E0, "Member 'UEngine::LevelColorationLitMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelColorationUnlitMaterial) == 0x0004F0, "Member 'UEngine::LevelColorationUnlitMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LevelColorationUnlitMaterialName) == 0x0004F8, "Member 'UEngine::LevelColorationUnlitMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightingTexelDensityMaterial) == 0x000508, "Member 'UEngine::LightingTexelDensityMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightingTexelDensityName) == 0x000510, "Member 'UEngine::LightingTexelDensityName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ShadedLevelColorationLitMaterial) == 0x000520, "Member 'UEngine::ShadedLevelColorationLitMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ShadedLevelColorationLitMaterialName) == 0x000528, "Member 'UEngine::ShadedLevelColorationLitMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ShadedLevelColorationUnlitMaterial) == 0x000538, "Member 'UEngine::ShadedLevelColorationUnlitMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ShadedLevelColorationUnlitMaterialName) == 0x000540, "Member 'UEngine::ShadedLevelColorationUnlitMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, RemoveSurfaceMaterial) == 0x000550, "Member 'UEngine::RemoveSurfaceMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, RemoveSurfaceMaterialName) == 0x000558, "Member 'UEngine::RemoveSurfaceMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorMaterial) == 0x000578, "Member 'UEngine::VertexColorMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorMaterialName) == 0x000580, "Member 'UEngine::VertexColorMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterial_ColorOnly) == 0x000590, "Member 'UEngine::VertexColorViewModeMaterial_ColorOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterialName_ColorOnly) == 0x000598, "Member 'UEngine::VertexColorViewModeMaterialName_ColorOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterial_AlphaAsColor) == 0x0005A8, "Member 'UEngine::VertexColorViewModeMaterial_AlphaAsColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterialName_AlphaAsColor) == 0x0005B0, "Member 'UEngine::VertexColorViewModeMaterialName_AlphaAsColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterial_RedOnly) == 0x0005C0, "Member 'UEngine::VertexColorViewModeMaterial_RedOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterialName_RedOnly) == 0x0005C8, "Member 'UEngine::VertexColorViewModeMaterialName_RedOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterial_GreenOnly) == 0x0005D8, "Member 'UEngine::VertexColorViewModeMaterial_GreenOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterialName_GreenOnly) == 0x0005E0, "Member 'UEngine::VertexColorViewModeMaterialName_GreenOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterial_BlueOnly) == 0x0005F0, "Member 'UEngine::VertexColorViewModeMaterial_BlueOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, VertexColorViewModeMaterialName_BlueOnly) == 0x0005F8, "Member 'UEngine::VertexColorViewModeMaterialName_BlueOnly' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DebugEditorMaterialName) == 0x000608, "Member 'UEngine::DebugEditorMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterial) == 0x000628, "Member 'UEngine::ConstraintLimitMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialX) == 0x000630, "Member 'UEngine::ConstraintLimitMaterialX' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialXAxis) == 0x000638, "Member 'UEngine::ConstraintLimitMaterialXAxis' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialY) == 0x000640, "Member 'UEngine::ConstraintLimitMaterialY' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialYAxis) == 0x000648, "Member 'UEngine::ConstraintLimitMaterialYAxis' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialZ) == 0x000650, "Member 'UEngine::ConstraintLimitMaterialZ' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialZAxis) == 0x000658, "Member 'UEngine::ConstraintLimitMaterialZAxis' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ConstraintLimitMaterialPrismatic) == 0x000660, "Member 'UEngine::ConstraintLimitMaterialPrismatic' has a wrong offset!"); \ +static_assert(offsetof(UEngine, InvalidLightmapSettingsMaterial) == 0x000668, "Member 'UEngine::InvalidLightmapSettingsMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, InvalidLightmapSettingsMaterialName) == 0x000670, "Member 'UEngine::InvalidLightmapSettingsMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PreviewShadowsIndicatorMaterial) == 0x000690, "Member 'UEngine::PreviewShadowsIndicatorMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PreviewShadowsIndicatorMaterialName) == 0x000698, "Member 'UEngine::PreviewShadowsIndicatorMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ArrowMaterial) == 0x0006B8, "Member 'UEngine::ArrowMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ArrowMaterialYellow) == 0x0006C0, "Member 'UEngine::ArrowMaterialYellow' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ArrowMaterialName) == 0x0006C8, "Member 'UEngine::ArrowMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightingOnlyBrightness) == 0x0006E8, "Member 'UEngine::LightingOnlyBrightness' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ShaderComplexityColors) == 0x0006F8, "Member 'UEngine::ShaderComplexityColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, QuadComplexityColors) == 0x000708, "Member 'UEngine::QuadComplexityColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightComplexityColors) == 0x000718, "Member 'UEngine::LightComplexityColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, StationaryLightOverlapColors) == 0x000728, "Member 'UEngine::StationaryLightOverlapColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LODColorationColors) == 0x000738, "Member 'UEngine::LODColorationColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, HLODColorationColors) == 0x000748, "Member 'UEngine::HLODColorationColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, StreamingAccuracyColors) == 0x000758, "Member 'UEngine::StreamingAccuracyColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationExcludedColor) == 0x000768, "Member 'UEngine::GPUSkinCacheVisualizationExcludedColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationIncludedColor) == 0x000778, "Member 'UEngine::GPUSkinCacheVisualizationIncludedColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationRecomputeTangentsColor) == 0x000788, "Member 'UEngine::GPUSkinCacheVisualizationRecomputeTangentsColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationLowMemoryThresholdInMB) == 0x000798, "Member 'UEngine::GPUSkinCacheVisualizationLowMemoryThresholdInMB' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationHighMemoryThresholdInMB) == 0x00079C, "Member 'UEngine::GPUSkinCacheVisualizationHighMemoryThresholdInMB' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationLowMemoryColor) == 0x0007A0, "Member 'UEngine::GPUSkinCacheVisualizationLowMemoryColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationMidMemoryColor) == 0x0007B0, "Member 'UEngine::GPUSkinCacheVisualizationMidMemoryColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationHighMemoryColor) == 0x0007C0, "Member 'UEngine::GPUSkinCacheVisualizationHighMemoryColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GPUSkinCacheVisualizationRayTracingLODOffsetColors) == 0x0007D0, "Member 'UEngine::GPUSkinCacheVisualizationRayTracingLODOffsetColors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxPixelShaderAdditiveComplexityCount) == 0x0007E0, "Member 'UEngine::MaxPixelShaderAdditiveComplexityCount' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxES3PixelShaderAdditiveComplexityCount) == 0x0007E4, "Member 'UEngine::MaxES3PixelShaderAdditiveComplexityCount' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MinLightMapDensity) == 0x0007E8, "Member 'UEngine::MinLightMapDensity' has a wrong offset!"); \ +static_assert(offsetof(UEngine, IdealLightMapDensity) == 0x0007EC, "Member 'UEngine::IdealLightMapDensity' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxLightMapDensity) == 0x0007F0, "Member 'UEngine::MaxLightMapDensity' has a wrong offset!"); \ +static_assert(offsetof(UEngine, RenderLightMapDensityGrayscaleScale) == 0x0007F8, "Member 'UEngine::RenderLightMapDensityGrayscaleScale' has a wrong offset!"); \ +static_assert(offsetof(UEngine, RenderLightMapDensityColorScale) == 0x0007FC, "Member 'UEngine::RenderLightMapDensityColorScale' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightMapDensityVertexMappedColor) == 0x000800, "Member 'UEngine::LightMapDensityVertexMappedColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightMapDensitySelectedColor) == 0x000810, "Member 'UEngine::LightMapDensitySelectedColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, StatColorMappings) == 0x000820, "Member 'UEngine::StatColorMappings' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultPhysMaterial) == 0x000830, "Member 'UEngine::DefaultPhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultPhysMaterialName) == 0x000838, "Member 'UEngine::DefaultPhysMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultDestructiblePhysMaterial) == 0x000858, "Member 'UEngine::DefaultDestructiblePhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultDestructiblePhysMaterialName) == 0x000860, "Member 'UEngine::DefaultDestructiblePhysMaterialName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ActiveGameNameRedirects) == 0x000880, "Member 'UEngine::ActiveGameNameRedirects' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ActiveClassRedirects) == 0x000890, "Member 'UEngine::ActiveClassRedirects' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ActivePluginRedirects) == 0x0008A0, "Member 'UEngine::ActivePluginRedirects' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ActiveStructRedirects) == 0x0008B0, "Member 'UEngine::ActiveStructRedirects' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PreIntegratedSkinBRDFTexture) == 0x0008C0, "Member 'UEngine::PreIntegratedSkinBRDFTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PreIntegratedSkinBRDFTextureName) == 0x0008C8, "Member 'UEngine::PreIntegratedSkinBRDFTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, BlueNoiseScalarTexture) == 0x0008E8, "Member 'UEngine::BlueNoiseScalarTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, BlueNoiseVec2Texture) == 0x0008F0, "Member 'UEngine::BlueNoiseVec2Texture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, BlueNoiseScalarTextureName) == 0x0008F8, "Member 'UEngine::BlueNoiseScalarTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, BlueNoiseVec2TextureName) == 0x000918, "Member 'UEngine::BlueNoiseVec2TextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GlintTexture) == 0x000938, "Member 'UEngine::GlintTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GlintTexture2) == 0x000940, "Member 'UEngine::GlintTexture2' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GlintTextureName) == 0x000948, "Member 'UEngine::GlintTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GlintTexture2Name) == 0x000968, "Member 'UEngine::GlintTexture2Name' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SimpleVolumeTexture) == 0x000988, "Member 'UEngine::SimpleVolumeTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SimpleVolumeTextureName) == 0x000990, "Member 'UEngine::SimpleVolumeTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SimpleVolumeEnvTexture) == 0x0009B0, "Member 'UEngine::SimpleVolumeEnvTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SimpleVolumeEnvTextureName) == 0x0009B8, "Member 'UEngine::SimpleVolumeEnvTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MiniFontTexture) == 0x0009D8, "Member 'UEngine::MiniFontTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MiniFontTextureName) == 0x0009E0, "Member 'UEngine::MiniFontTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WeightMapPlaceholderTexture) == 0x000A00, "Member 'UEngine::WeightMapPlaceholderTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, WeightMapPlaceholderTextureName) == 0x000A08, "Member 'UEngine::WeightMapPlaceholderTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightMapDensityTexture) == 0x000A28, "Member 'UEngine::LightMapDensityTexture' has a wrong offset!"); \ +static_assert(offsetof(UEngine, LightMapDensityTextureName) == 0x000A30, "Member 'UEngine::LightMapDensityTextureName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameViewport) == 0x000A58, "Member 'UEngine::GameViewport' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DeferredCommands) == 0x000A60, "Member 'UEngine::DeferredCommands' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NearClipPlane) == 0x000A70, "Member 'UEngine::NearClipPlane' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaximumLoopIterationCount) == 0x000A78, "Member 'UEngine::MaximumLoopIterationCount' has a wrong offset!"); \ +static_assert(offsetof(UEngine, FixedFrameRate) == 0x000A80, "Member 'UEngine::FixedFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SmoothedFrameRateRange) == 0x000A84, "Member 'UEngine::SmoothedFrameRateRange' has a wrong offset!"); \ +static_assert(offsetof(UEngine, CustomTimeStep) == 0x000A98, "Member 'UEngine::CustomTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UEngine, CustomTimeStepClassName) == 0x000AC0, "Member 'UEngine::CustomTimeStepClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TimecodeProvider) == 0x000AE0, "Member 'UEngine::TimecodeProvider' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TimecodeProviderClassName) == 0x000B08, "Member 'UEngine::TimecodeProviderClassName' has a wrong offset!"); \ +static_assert(offsetof(UEngine, bGenerateDefaultTimecode) == 0x000B28, "Member 'UEngine::bGenerateDefaultTimecode' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GenerateDefaultTimecodeFrameRate) == 0x000B2C, "Member 'UEngine::GenerateDefaultTimecodeFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GenerateDefaultTimecodeFrameDelay) == 0x000B34, "Member 'UEngine::GenerateDefaultTimecodeFrameDelay' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NumPawnsAllowedToBeSpawnedInAFrame) == 0x000B3C, "Member 'UEngine::NumPawnsAllowedToBeSpawnedInAFrame' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_WorldBox) == 0x000B44, "Member 'UEngine::C_WorldBox' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_BrushWire) == 0x000B48, "Member 'UEngine::C_BrushWire' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_AddWire) == 0x000B4C, "Member 'UEngine::C_AddWire' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_SubtractWire) == 0x000B50, "Member 'UEngine::C_SubtractWire' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_SemiSolidWire) == 0x000B54, "Member 'UEngine::C_SemiSolidWire' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_NonSolidWire) == 0x000B58, "Member 'UEngine::C_NonSolidWire' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_WireBackground) == 0x000B5C, "Member 'UEngine::C_WireBackground' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_ScaleBoxHi) == 0x000B60, "Member 'UEngine::C_ScaleBoxHi' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_VolumeCollision) == 0x000B64, "Member 'UEngine::C_VolumeCollision' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_BSPCollision) == 0x000B68, "Member 'UEngine::C_BSPCollision' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_OrthoBackground) == 0x000B6C, "Member 'UEngine::C_OrthoBackground' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_Volume) == 0x000B70, "Member 'UEngine::C_Volume' has a wrong offset!"); \ +static_assert(offsetof(UEngine, C_BrushShape) == 0x000B74, "Member 'UEngine::C_BrushShape' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GameScreenshotSaveDirectory) == 0x000B80, "Member 'UEngine::GameScreenshotSaveDirectory' has a wrong offset!"); \ +static_assert(offsetof(UEngine, UseStaticMeshMinLODPerQualityLevels) == 0x000B90, "Member 'UEngine::UseStaticMeshMinLODPerQualityLevels' has a wrong offset!"); \ +static_assert(offsetof(UEngine, UseSkeletalMeshMinLODPerQualityLevels) == 0x000B91, "Member 'UEngine::UseSkeletalMeshMinLODPerQualityLevels' has a wrong offset!"); \ +static_assert(offsetof(UEngine, UseGrassVarityPerQualityLevels) == 0x000B92, "Member 'UEngine::UseGrassVarityPerQualityLevels' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TransitionType) == 0x000B93, "Member 'UEngine::TransitionType' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TransitionDescription) == 0x000B98, "Member 'UEngine::TransitionDescription' has a wrong offset!"); \ +static_assert(offsetof(UEngine, TransitionGameMode) == 0x000BA8, "Member 'UEngine::TransitionGameMode' has a wrong offset!"); \ +static_assert(offsetof(UEngine, CameraRotationThreshold) == 0x000BBC, "Member 'UEngine::CameraRotationThreshold' has a wrong offset!"); \ +static_assert(offsetof(UEngine, CameraTranslationThreshold) == 0x000BC0, "Member 'UEngine::CameraTranslationThreshold' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PrimitiveProbablyVisibleTime) == 0x000BC4, "Member 'UEngine::PrimitiveProbablyVisibleTime' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxOcclusionPixelsFraction) == 0x000BC8, "Member 'UEngine::MaxOcclusionPixelsFraction' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxParticleResize) == 0x000BD0, "Member 'UEngine::MaxParticleResize' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MaxParticleResizeWarn) == 0x000BD4, "Member 'UEngine::MaxParticleResizeWarn' has a wrong offset!"); \ +static_assert(offsetof(UEngine, PendingDroppedNotes) == 0x000BD8, "Member 'UEngine::PendingDroppedNotes' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NetClientTicksPerSecond) == 0x000BE8, "Member 'UEngine::NetClientTicksPerSecond' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DisplayGamma) == 0x000BEC, "Member 'UEngine::DisplayGamma' has a wrong offset!"); \ +static_assert(offsetof(UEngine, MinDesiredFrameRate) == 0x000BF0, "Member 'UEngine::MinDesiredFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UEngine, DefaultSelectedMaterialColor) == 0x000BF4, "Member 'UEngine::DefaultSelectedMaterialColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SelectedMaterialColor) == 0x000C04, "Member 'UEngine::SelectedMaterialColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SelectionOutlineColor) == 0x000C14, "Member 'UEngine::SelectionOutlineColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SubduedSelectionOutlineColor) == 0x000C24, "Member 'UEngine::SubduedSelectionOutlineColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SelectedMaterialColorOverride) == 0x000C34, "Member 'UEngine::SelectedMaterialColorOverride' has a wrong offset!"); \ +static_assert(offsetof(UEngine, bIsOverridingSelectedColor) == 0x000C44, "Member 'UEngine::bIsOverridingSelectedColor' has a wrong offset!"); \ +static_assert(offsetof(UEngine, bEnableVisualLogRecordingOnStart) == 0x000C4C, "Member 'UEngine::bEnableVisualLogRecordingOnStart' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ScreenSaverInhibitorSemaphore) == 0x000C50, "Member 'UEngine::ScreenSaverInhibitorSemaphore' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ParticleEventManagerClassPath) == 0x000C58, "Member 'UEngine::ParticleEventManagerClassPath' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SelectionHighlightIntensity) == 0x000C68, "Member 'UEngine::SelectionHighlightIntensity' has a wrong offset!"); \ +static_assert(offsetof(UEngine, BSPSelectionHighlightIntensity) == 0x000C6C, "Member 'UEngine::BSPSelectionHighlightIntensity' has a wrong offset!"); \ +static_assert(offsetof(UEngine, SelectionHighlightIntensityBillboards) == 0x000C70, "Member 'UEngine::SelectionHighlightIntensityBillboards' has a wrong offset!"); \ +static_assert(offsetof(UEngine, GlobalNetTravelCount) == 0x000F08, "Member 'UEngine::GlobalNetTravelCount' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NetDriverDefinitions) == 0x000F10, "Member 'UEngine::NetDriverDefinitions' has a wrong offset!"); \ +static_assert(offsetof(UEngine, IrisNetDriverConfigs) == 0x000F20, "Member 'UEngine::IrisNetDriverConfigs' has a wrong offset!"); \ +static_assert(offsetof(UEngine, ServerActors) == 0x000F30, "Member 'UEngine::ServerActors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, RuntimeServerActors) == 0x000F40, "Member 'UEngine::RuntimeServerActors' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NetErrorLogInterval) == 0x000F50, "Member 'UEngine::NetErrorLogInterval' has a wrong offset!"); \ +static_assert(offsetof(UEngine, NextWorldContextHandle) == 0x000F90, "Member 'UEngine::NextWorldContextHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UViewModeUtils \ +static_assert(alignof(UViewModeUtils) == 0x000008, "Wrong alignment on UViewModeUtils"); \ +static_assert(sizeof(UViewModeUtils) == 0x000028, "Wrong size on UViewModeUtils"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionCodec \ +static_assert(alignof(UAnimCurveCompressionCodec) == 0x000008, "Wrong alignment on UAnimCurveCompressionCodec"); \ +static_assert(sizeof(UAnimCurveCompressionCodec) == 0x000038, "Wrong size on UAnimCurveCompressionCodec"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionCodec_UniformIndexable \ +static_assert(alignof(UAnimCurveCompressionCodec_UniformIndexable) == 0x000008, "Wrong alignment on UAnimCurveCompressionCodec_UniformIndexable"); \ +static_assert(sizeof(UAnimCurveCompressionCodec_UniformIndexable) == 0x000038, "Wrong size on UAnimCurveCompressionCodec_UniformIndexable"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVectorParameter \ +static_assert(alignof(UMaterialExpressionVectorParameter) == 0x000008, "Wrong alignment on UMaterialExpressionVectorParameter"); \ +static_assert(sizeof(UMaterialExpressionVectorParameter) == 0x000150, "Wrong size on UMaterialExpressionVectorParameter"); \ +static_assert(offsetof(UMaterialExpressionVectorParameter, DefaultValue) == 0x0000D8, "Member 'UMaterialExpressionVectorParameter::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorParameter, bUseCustomPrimitiveData) == 0x0000E8, "Member 'UMaterialExpressionVectorParameter::bUseCustomPrimitiveData' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorParameter, PrimitiveDataIndex) == 0x0000E9, "Member 'UMaterialExpressionVectorParameter::PrimitiveDataIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorParameter, ChannelNames) == 0x0000F0, "Member 'UMaterialExpressionVectorParameter::ChannelNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionChannelMaskParameter \ +static_assert(alignof(UMaterialExpressionChannelMaskParameter) == 0x000008, "Wrong alignment on UMaterialExpressionChannelMaskParameter"); \ +static_assert(sizeof(UMaterialExpressionChannelMaskParameter) == 0x000180, "Wrong size on UMaterialExpressionChannelMaskParameter"); \ +static_assert(offsetof(UMaterialExpressionChannelMaskParameter, MaskChannel) == 0x000150, "Member 'UMaterialExpressionChannelMaskParameter::MaskChannel' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionChannelMaskParameter, Input) == 0x000158, "Member 'UMaterialExpressionChannelMaskParameter::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEngineBaseTypes \ +static_assert(alignof(UEngineBaseTypes) == 0x000008, "Wrong alignment on UEngineBaseTypes"); \ +static_assert(sizeof(UEngineBaseTypes) == 0x000028, "Wrong size on UEngineBaseTypes"); \ + +#define DUMPER7_ASSERTS_UAnimSequence \ +static_assert(alignof(UAnimSequence) == 0x000008, "Wrong alignment on UAnimSequence"); \ +static_assert(sizeof(UAnimSequence) == 0x0001F8, "Wrong size on UAnimSequence"); \ +static_assert(offsetof(UAnimSequence, BoneCompressionSettings) == 0x0000B0, "Member 'UAnimSequence::BoneCompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, CurveCompressionSettings) == 0x0000B8, "Member 'UAnimSequence::CurveCompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, VariableFrameStrippingSettings) == 0x000140, "Member 'UAnimSequence::VariableFrameStrippingSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, AdditiveAnimType) == 0x000148, "Member 'UAnimSequence::AdditiveAnimType' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RefPoseType) == 0x000149, "Member 'UAnimSequence::RefPoseType' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RefFrameIndex) == 0x00014C, "Member 'UAnimSequence::RefFrameIndex' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RefPoseSeq) == 0x000150, "Member 'UAnimSequence::RefPoseSeq' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RetargetSource) == 0x000158, "Member 'UAnimSequence::RetargetSource' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RetargetSourceAssetReferencePose) == 0x000160, "Member 'UAnimSequence::RetargetSourceAssetReferencePose' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, Interpolation) == 0x000170, "Member 'UAnimSequence::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, bEnableRootMotion) == 0x000171, "Member 'UAnimSequence::bEnableRootMotion' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, RootMotionRootLock) == 0x000172, "Member 'UAnimSequence::RootMotionRootLock' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, bForceRootLock) == 0x000173, "Member 'UAnimSequence::bForceRootLock' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, bUseNormalizedRootMotionScale) == 0x000174, "Member 'UAnimSequence::bUseNormalizedRootMotionScale' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, bRootMotionSettingsCopiedFromMontage) == 0x000175, "Member 'UAnimSequence::bRootMotionSettingsCopiedFromMontage' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, AuthoredSyncMarkers) == 0x000178, "Member 'UAnimSequence::AuthoredSyncMarkers' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, TargetFrameRate) == 0x000198, "Member 'UAnimSequence::TargetFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, PlatformTargetFrameRate) == 0x0001A0, "Member 'UAnimSequence::PlatformTargetFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequence, AttributeCurves) == 0x0001A8, "Member 'UAnimSequence::AttributeCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEngineTypes \ +static_assert(alignof(UEngineTypes) == 0x000008, "Wrong alignment on UEngineTypes"); \ +static_assert(sizeof(UEngineTypes) == 0x000028, "Wrong size on UEngineTypes"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDotProduct \ +static_assert(alignof(UMaterialExpressionDotProduct) == 0x000008, "Wrong alignment on UMaterialExpressionDotProduct"); \ +static_assert(sizeof(UMaterialExpressionDotProduct) == 0x000100, "Wrong size on UMaterialExpressionDotProduct"); \ +static_assert(offsetof(UMaterialExpressionDotProduct, A) == 0x0000B0, "Member 'UMaterialExpressionDotProduct::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDotProduct, B) == 0x0000D8, "Member 'UMaterialExpressionDotProduct::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AExponentialHeightFog \ +static_assert(alignof(AExponentialHeightFog) == 0x000008, "Wrong alignment on AExponentialHeightFog"); \ +static_assert(sizeof(AExponentialHeightFog) == 0x0002A8, "Wrong size on AExponentialHeightFog"); \ +static_assert(offsetof(AExponentialHeightFog, Component) == 0x000298, "Member 'AExponentialHeightFog::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeDoppler \ +static_assert(alignof(USoundNodeDoppler) == 0x000008, "Wrong alignment on USoundNodeDoppler"); \ +static_assert(sizeof(USoundNodeDoppler) == 0x000058, "Wrong size on USoundNodeDoppler"); \ +static_assert(offsetof(USoundNodeDoppler, DopplerIntensity) == 0x000048, "Member 'USoundNodeDoppler::DopplerIntensity' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeDoppler, bUseSmoothing) == 0x00004C, "Member 'USoundNodeDoppler::bUseSmoothing' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeDoppler, SmoothingInterpSpeed) == 0x000050, "Member 'USoundNodeDoppler::SmoothingInterpSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataConvertToDecal \ +static_assert(alignof(UMaterialExpressionStrataConvertToDecal) == 0x000008, "Wrong alignment on UMaterialExpressionStrataConvertToDecal"); \ +static_assert(sizeof(UMaterialExpressionStrataConvertToDecal) == 0x000100, "Wrong size on UMaterialExpressionStrataConvertToDecal"); \ +static_assert(offsetof(UMaterialExpressionStrataConvertToDecal, DecalMaterial) == 0x0000B0, "Member 'UMaterialExpressionStrataConvertToDecal::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataConvertToDecal, Coverage) == 0x0000D8, "Member 'UMaterialExpressionStrataConvertToDecal::Coverage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetDirectionalInscatteringColor \ +static_assert(alignof(ExponentialHeightFogComponent_SetDirectionalInscatteringColor) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetDirectionalInscatteringColor"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetDirectionalInscatteringColor) == 0x000010, "Wrong size on ExponentialHeightFogComponent_SetDirectionalInscatteringColor"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetDirectionalInscatteringColor, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetDirectionalInscatteringColor::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetDirectionalInscatteringExponent \ +static_assert(alignof(ExponentialHeightFogComponent_SetDirectionalInscatteringExponent) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetDirectionalInscatteringExponent"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetDirectionalInscatteringExponent) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetDirectionalInscatteringExponent"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetDirectionalInscatteringExponent, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetDirectionalInscatteringExponent::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFogCutoffDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetFogCutoffDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFogCutoffDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFogCutoffDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetFogCutoffDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFogCutoffDistance, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFogCutoffDistance::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFogDensity \ +static_assert(alignof(ExponentialHeightFogComponent_SetFogDensity) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFogDensity"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFogDensity) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetFogDensity"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFogDensity, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFogDensity::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFogHeightFalloff \ +static_assert(alignof(ExponentialHeightFogComponent_SetFogHeightFalloff) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFogHeightFalloff"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFogHeightFalloff) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetFogHeightFalloff"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFogHeightFalloff, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFogHeightFalloff::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFogInscatteringColor \ +static_assert(alignof(ExponentialHeightFogComponent_SetFogInscatteringColor) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFogInscatteringColor"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFogInscatteringColor) == 0x000010, "Wrong size on ExponentialHeightFogComponent_SetFogInscatteringColor"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFogInscatteringColor, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFogInscatteringColor::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFogMaxOpacity \ +static_assert(alignof(ExponentialHeightFogComponent_SetFogMaxOpacity) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFogMaxOpacity"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFogMaxOpacity) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetFogMaxOpacity"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFogMaxOpacity, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFogMaxOpacity::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetInscatteringColorCubemap \ +static_assert(alignof(ExponentialHeightFogComponent_SetInscatteringColorCubemap) == 0x000008, "Wrong alignment on ExponentialHeightFogComponent_SetInscatteringColorCubemap"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetInscatteringColorCubemap) == 0x000008, "Wrong size on ExponentialHeightFogComponent_SetInscatteringColorCubemap"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetInscatteringColorCubemap, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetInscatteringColorCubemap::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle \ +static_assert(alignof(ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetInscatteringTextureTint \ +static_assert(alignof(ExponentialHeightFogComponent_SetInscatteringTextureTint) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetInscatteringTextureTint"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetInscatteringTextureTint) == 0x000010, "Wrong size on ExponentialHeightFogComponent_SetInscatteringTextureTint"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetInscatteringTextureTint, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetInscatteringTextureTint::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetSecondFogData \ +static_assert(alignof(ExponentialHeightFogComponent_SetSecondFogData) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetSecondFogData"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetSecondFogData) == 0x00000C, "Wrong size on ExponentialHeightFogComponent_SetSecondFogData"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetSecondFogData, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetSecondFogData::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetSecondFogDensity \ +static_assert(alignof(ExponentialHeightFogComponent_SetSecondFogDensity) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetSecondFogDensity"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetSecondFogDensity) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetSecondFogDensity"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetSecondFogDensity, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetSecondFogDensity::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetSecondFogHeightFalloff \ +static_assert(alignof(ExponentialHeightFogComponent_SetSecondFogHeightFalloff) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetSecondFogHeightFalloff"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetSecondFogHeightFalloff) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetSecondFogHeightFalloff"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetSecondFogHeightFalloff, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetSecondFogHeightFalloff::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetSecondFogHeightOffset \ +static_assert(alignof(ExponentialHeightFogComponent_SetSecondFogHeightOffset) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetSecondFogHeightOffset"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetSecondFogHeightOffset) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetSecondFogHeightOffset"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetSecondFogHeightOffset, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetSecondFogHeightOffset::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetStartDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetStartDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetStartDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetStartDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetStartDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetStartDistance, Value) == 0x000000, "Member 'ExponentialHeightFogComponent_SetStartDistance::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFog \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFog) == 0x000001, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFog"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFog) == 0x000001, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFog"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFog, bNewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFog::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFogAlbedo \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFogAlbedo) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFogAlbedo"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFogAlbedo) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFogAlbedo"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFogAlbedo, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFogAlbedo::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFogDistance \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFogDistance) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFogDistance"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFogDistance) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFogDistance"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFogDistance, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFogDistance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFogEmissive \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFogEmissive) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFogEmissive"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFogEmissive) == 0x000010, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFogEmissive"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFogEmissive, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFogEmissive::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution \ +static_assert(alignof(ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution) == 0x000004, "Wrong alignment on ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution"); \ +static_assert(sizeof(ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution) == 0x000004, "Wrong size on ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution"); \ +static_assert(offsetof(ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution, NewValue) == 0x000000, "Member 'ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UExponentialHeightFogComponent \ +static_assert(alignof(UExponentialHeightFogComponent) == 0x000010, "Wrong alignment on UExponentialHeightFogComponent"); \ +static_assert(sizeof(UExponentialHeightFogComponent) == 0x000380, "Wrong size on UExponentialHeightFogComponent"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogDensity) == 0x0002A0, "Member 'UExponentialHeightFogComponent::FogDensity' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogHeightFalloff) == 0x0002A4, "Member 'UExponentialHeightFogComponent::FogHeightFalloff' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, SecondFogData) == 0x0002A8, "Member 'UExponentialHeightFogComponent::SecondFogData' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogInscatteringColor) == 0x0002B4, "Member 'UExponentialHeightFogComponent::FogInscatteringColor' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogInscatteringLuminance) == 0x0002C4, "Member 'UExponentialHeightFogComponent::FogInscatteringLuminance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, SkyAtmosphereAmbientContributionColorScale) == 0x0002D4, "Member 'UExponentialHeightFogComponent::SkyAtmosphereAmbientContributionColorScale' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, InscatteringColorCubemap) == 0x0002E8, "Member 'UExponentialHeightFogComponent::InscatteringColorCubemap' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, InscatteringColorCubemapAngle) == 0x0002F0, "Member 'UExponentialHeightFogComponent::InscatteringColorCubemapAngle' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, InscatteringTextureTint) == 0x0002F4, "Member 'UExponentialHeightFogComponent::InscatteringTextureTint' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FullyDirectionalInscatteringColorDistance) == 0x000304, "Member 'UExponentialHeightFogComponent::FullyDirectionalInscatteringColorDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, NonDirectionalInscatteringColorDistance) == 0x000308, "Member 'UExponentialHeightFogComponent::NonDirectionalInscatteringColorDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, DirectionalInscatteringExponent) == 0x00030C, "Member 'UExponentialHeightFogComponent::DirectionalInscatteringExponent' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, DirectionalInscatteringStartDistance) == 0x000310, "Member 'UExponentialHeightFogComponent::DirectionalInscatteringStartDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, DirectionalInscatteringColor) == 0x000314, "Member 'UExponentialHeightFogComponent::DirectionalInscatteringColor' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, DirectionalInscatteringLuminance) == 0x000324, "Member 'UExponentialHeightFogComponent::DirectionalInscatteringLuminance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogMaxOpacity) == 0x000334, "Member 'UExponentialHeightFogComponent::FogMaxOpacity' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, StartDistance) == 0x000338, "Member 'UExponentialHeightFogComponent::StartDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, FogCutoffDistance) == 0x00033C, "Member 'UExponentialHeightFogComponent::FogCutoffDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, bEnableVolumetricFog) == 0x000340, "Member 'UExponentialHeightFogComponent::bEnableVolumetricFog' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogScatteringDistribution) == 0x000344, "Member 'UExponentialHeightFogComponent::VolumetricFogScatteringDistribution' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogAlbedo) == 0x000348, "Member 'UExponentialHeightFogComponent::VolumetricFogAlbedo' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogEmissive) == 0x00034C, "Member 'UExponentialHeightFogComponent::VolumetricFogEmissive' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogExtinctionScale) == 0x00035C, "Member 'UExponentialHeightFogComponent::VolumetricFogExtinctionScale' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogDistance) == 0x000360, "Member 'UExponentialHeightFogComponent::VolumetricFogDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogStartDistance) == 0x000364, "Member 'UExponentialHeightFogComponent::VolumetricFogStartDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogNearFadeInDistance) == 0x000368, "Member 'UExponentialHeightFogComponent::VolumetricFogNearFadeInDistance' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, VolumetricFogStaticLightingScatteringIntensity) == 0x00036C, "Member 'UExponentialHeightFogComponent::VolumetricFogStaticLightingScatteringIntensity' has a wrong offset!"); \ +static_assert(offsetof(UExponentialHeightFogComponent, bOverrideLightColorsWithFogInscatteringColors) == 0x000370, "Member 'UExponentialHeightFogComponent::bOverrideLightColorsWithFogInscatteringColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Exporter_RunAssetExportTask \ +static_assert(alignof(Exporter_RunAssetExportTask) == 0x000008, "Wrong alignment on Exporter_RunAssetExportTask"); \ +static_assert(sizeof(Exporter_RunAssetExportTask) == 0x000010, "Wrong size on Exporter_RunAssetExportTask"); \ +static_assert(offsetof(Exporter_RunAssetExportTask, Task) == 0x000000, "Member 'Exporter_RunAssetExportTask::Task' has a wrong offset!"); \ +static_assert(offsetof(Exporter_RunAssetExportTask, ReturnValue) == 0x000008, "Member 'Exporter_RunAssetExportTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Exporter_RunAssetExportTasks \ +static_assert(alignof(Exporter_RunAssetExportTasks) == 0x000008, "Wrong alignment on Exporter_RunAssetExportTasks"); \ +static_assert(sizeof(Exporter_RunAssetExportTasks) == 0x000018, "Wrong size on Exporter_RunAssetExportTasks"); \ +static_assert(offsetof(Exporter_RunAssetExportTasks, ExportTasks) == 0x000000, "Member 'Exporter_RunAssetExportTasks::ExportTasks' has a wrong offset!"); \ +static_assert(offsetof(Exporter_RunAssetExportTasks, ReturnValue) == 0x000010, "Member 'Exporter_RunAssetExportTasks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Exporter_ScriptRunAssetExportTask \ +static_assert(alignof(Exporter_ScriptRunAssetExportTask) == 0x000008, "Wrong alignment on Exporter_ScriptRunAssetExportTask"); \ +static_assert(sizeof(Exporter_ScriptRunAssetExportTask) == 0x000010, "Wrong size on Exporter_ScriptRunAssetExportTask"); \ +static_assert(offsetof(Exporter_ScriptRunAssetExportTask, Task) == 0x000000, "Member 'Exporter_ScriptRunAssetExportTask::Task' has a wrong offset!"); \ +static_assert(offsetof(Exporter_ScriptRunAssetExportTask, ReturnValue) == 0x000008, "Member 'Exporter_ScriptRunAssetExportTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UExporter \ +static_assert(alignof(UExporter) == 0x000008, "Wrong alignment on UExporter"); \ +static_assert(sizeof(UExporter) == 0x000078, "Wrong size on UExporter"); \ +static_assert(offsetof(UExporter, SupportedClass) == 0x000028, "Member 'UExporter::SupportedClass' has a wrong offset!"); \ +static_assert(offsetof(UExporter, ExportRootScope) == 0x000030, "Member 'UExporter::ExportRootScope' has a wrong offset!"); \ +static_assert(offsetof(UExporter, FormatExtension) == 0x000038, "Member 'UExporter::FormatExtension' has a wrong offset!"); \ +static_assert(offsetof(UExporter, FormatDescription) == 0x000048, "Member 'UExporter::FormatDescription' has a wrong offset!"); \ +static_assert(offsetof(UExporter, PreferredFormatIndex) == 0x000058, "Member 'UExporter::PreferredFormatIndex' has a wrong offset!"); \ +static_assert(offsetof(UExporter, TextIndent) == 0x00005C, "Member 'UExporter::TextIndent' has a wrong offset!"); \ +static_assert(offsetof(UExporter, ExportTask) == 0x000068, "Member 'UExporter::ExportTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDepthOfFieldFunction \ +static_assert(alignof(UMaterialExpressionDepthOfFieldFunction) == 0x000008, "Wrong alignment on UMaterialExpressionDepthOfFieldFunction"); \ +static_assert(sizeof(UMaterialExpressionDepthOfFieldFunction) == 0x0000E0, "Wrong size on UMaterialExpressionDepthOfFieldFunction"); \ +static_assert(offsetof(UMaterialExpressionDepthOfFieldFunction, FunctionValue) == 0x0000B0, "Member 'UMaterialExpressionDepthOfFieldFunction::FunctionValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDepthOfFieldFunction, Depth) == 0x0000B8, "Member 'UMaterialExpressionDepthOfFieldFunction::Depth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldNotificationLibrary_BroadcastFieldsValueChanged \ +static_assert(alignof(FieldNotificationLibrary_BroadcastFieldsValueChanged) == 0x000008, "Wrong alignment on FieldNotificationLibrary_BroadcastFieldsValueChanged"); \ +static_assert(sizeof(FieldNotificationLibrary_BroadcastFieldsValueChanged) == 0x000018, "Wrong size on FieldNotificationLibrary_BroadcastFieldsValueChanged"); \ +static_assert(offsetof(FieldNotificationLibrary_BroadcastFieldsValueChanged, Object) == 0x000000, "Member 'FieldNotificationLibrary_BroadcastFieldsValueChanged::Object' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_BroadcastFieldsValueChanged, FieldIds) == 0x000008, "Member 'FieldNotificationLibrary_BroadcastFieldsValueChanged::FieldIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldNotificationLibrary_BroadcastFieldValueChanged \ +static_assert(alignof(FieldNotificationLibrary_BroadcastFieldValueChanged) == 0x000008, "Wrong alignment on FieldNotificationLibrary_BroadcastFieldValueChanged"); \ +static_assert(sizeof(FieldNotificationLibrary_BroadcastFieldValueChanged) == 0x000010, "Wrong size on FieldNotificationLibrary_BroadcastFieldValueChanged"); \ +static_assert(offsetof(FieldNotificationLibrary_BroadcastFieldValueChanged, Object) == 0x000000, "Member 'FieldNotificationLibrary_BroadcastFieldValueChanged::Object' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_BroadcastFieldValueChanged, FieldId) == 0x000008, "Member 'FieldNotificationLibrary_BroadcastFieldValueChanged::FieldId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldNotificationLibrary_SetPropertyValueAndBroadcast \ +static_assert(alignof(FieldNotificationLibrary_SetPropertyValueAndBroadcast) == 0x000008, "Wrong alignment on FieldNotificationLibrary_SetPropertyValueAndBroadcast"); \ +static_assert(sizeof(FieldNotificationLibrary_SetPropertyValueAndBroadcast) == 0x000028, "Wrong size on FieldNotificationLibrary_SetPropertyValueAndBroadcast"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, NewValueByRef) == 0x000000, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::NewValueByRef' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, OldValue) == 0x000004, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::OldValue' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, NewValue) == 0x000008, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::NewValue' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, Object) == 0x000010, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::Object' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, NetOwner) == 0x000018, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::NetOwner' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, bHasLocalRepNotify) == 0x000020, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::bHasLocalRepNotify' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, bShouldFlushDormancyOnSet) == 0x000021, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::bShouldFlushDormancyOnSet' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, bIsNetProperty) == 0x000022, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::bIsNetProperty' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcast, ReturnValue) == 0x000023, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcast::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldNotificationLibrary_SetPropertyValueAndBroadcastFields \ +static_assert(alignof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields) == 0x000008, "Wrong alignment on FieldNotificationLibrary_SetPropertyValueAndBroadcastFields"); \ +static_assert(sizeof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields) == 0x000040, "Wrong size on FieldNotificationLibrary_SetPropertyValueAndBroadcastFields"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, NewValueByRef) == 0x000000, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::NewValueByRef' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, OldValue) == 0x000004, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::OldValue' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, NewValue) == 0x000008, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::NewValue' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, Object) == 0x000010, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::Object' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, NetOwner) == 0x000018, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::NetOwner' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, bHasLocalRepNotify) == 0x000020, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::bHasLocalRepNotify' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, bShouldFlushDormancyOnSet) == 0x000021, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::bShouldFlushDormancyOnSet' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, bIsNetProperty) == 0x000022, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::bIsNetProperty' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, ExtraFieldIds) == 0x000028, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::ExtraFieldIds' has a wrong offset!"); \ +static_assert(offsetof(FieldNotificationLibrary_SetPropertyValueAndBroadcastFields, ReturnValue) == 0x000038, "Member 'FieldNotificationLibrary_SetPropertyValueAndBroadcastFields::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldNotificationLibrary \ +static_assert(alignof(UFieldNotificationLibrary) == 0x000008, "Wrong alignment on UFieldNotificationLibrary"); \ +static_assert(sizeof(UFieldNotificationLibrary) == 0x000028, "Wrong size on UFieldNotificationLibrary"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAttractorPointGravity \ +static_assert(alignof(UParticleModuleAttractorPointGravity) == 0x000008, "Wrong alignment on UParticleModuleAttractorPointGravity"); \ +static_assert(sizeof(UParticleModuleAttractorPointGravity) == 0x000088, "Wrong size on UParticleModuleAttractorPointGravity"); \ +static_assert(offsetof(UParticleModuleAttractorPointGravity, Position) == 0x000030, "Member 'UParticleModuleAttractorPointGravity::Position' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorPointGravity, Radius) == 0x000048, "Member 'UParticleModuleAttractorPointGravity::Radius' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorPointGravity, Strength) == 0x000050, "Member 'UParticleModuleAttractorPointGravity::Strength' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorPointGravity, StrengthRaw) == 0x000058, "Member 'UParticleModuleAttractorPointGravity::StrengthRaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFontImportOptions \ +static_assert(alignof(UFontImportOptions) == 0x000008, "Wrong alignment on UFontImportOptions"); \ +static_assert(sizeof(UFontImportOptions) == 0x0000D8, "Wrong size on UFontImportOptions"); \ +static_assert(offsetof(UFontImportOptions, Data) == 0x000028, "Member 'UFontImportOptions::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VOIPStatics_SetMicThreshold \ +static_assert(alignof(VOIPStatics_SetMicThreshold) == 0x000004, "Wrong alignment on VOIPStatics_SetMicThreshold"); \ +static_assert(sizeof(VOIPStatics_SetMicThreshold) == 0x000004, "Wrong size on VOIPStatics_SetMicThreshold"); \ +static_assert(offsetof(VOIPStatics_SetMicThreshold, InThreshold) == 0x000000, "Member 'VOIPStatics_SetMicThreshold::InThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVOIPStatics \ +static_assert(alignof(UVOIPStatics) == 0x000008, "Wrong alignment on UVOIPStatics"); \ +static_assert(sizeof(UVOIPStatics) == 0x000028, "Wrong size on UVOIPStatics"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereLightIlluminance \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereLightIlluminance) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereLightIlluminance"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereLightIlluminance) == 0x0000E0, "Wrong size on UMaterialExpressionSkyAtmosphereLightIlluminance"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereLightIlluminance, LightIndex) == 0x0000B0, "Member 'UMaterialExpressionSkyAtmosphereLightIlluminance::LightIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereLightIlluminance, WorldPosition) == 0x0000B8, "Member 'UMaterialExpressionSkyAtmosphereLightIlluminance::WorldPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForceFeedbackAttenuation \ +static_assert(alignof(UForceFeedbackAttenuation) == 0x000008, "Wrong alignment on UForceFeedbackAttenuation"); \ +static_assert(sizeof(UForceFeedbackAttenuation) == 0x0000E8, "Wrong size on UForceFeedbackAttenuation"); \ +static_assert(offsetof(UForceFeedbackAttenuation, Attenuation) == 0x000028, "Member 'UForceFeedbackAttenuation::Attenuation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACameraShakeSourceActor \ +static_assert(alignof(ACameraShakeSourceActor) == 0x000008, "Wrong alignment on ACameraShakeSourceActor"); \ +static_assert(sizeof(ACameraShakeSourceActor) == 0x0002A0, "Wrong size on ACameraShakeSourceActor"); \ +static_assert(offsetof(ACameraShakeSourceActor, CameraShakeSourceComponent) == 0x000298, "Member 'ACameraShakeSourceActor::CameraShakeSourceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLightVector \ +static_assert(alignof(UMaterialExpressionLightVector) == 0x000008, "Wrong alignment on UMaterialExpressionLightVector"); \ +static_assert(sizeof(UMaterialExpressionLightVector) == 0x0000B0, "Wrong size on UMaterialExpressionLightVector"); \ + +#define DUMPER7_ASSERTS_AGameNetworkManager \ +static_assert(alignof(AGameNetworkManager) == 0x000008, "Wrong alignment on AGameNetworkManager"); \ +static_assert(sizeof(AGameNetworkManager) == 0x000340, "Wrong size on AGameNetworkManager"); \ +static_assert(offsetof(AGameNetworkManager, BadPacketLossThreshold) == 0x000298, "Member 'AGameNetworkManager::BadPacketLossThreshold' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, SeverePacketLossThreshold) == 0x00029C, "Member 'AGameNetworkManager::SeverePacketLossThreshold' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, BadPingThreshold) == 0x0002A0, "Member 'AGameNetworkManager::BadPingThreshold' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, SeverePingThreshold) == 0x0002A4, "Member 'AGameNetworkManager::SeverePingThreshold' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, AdjustedNetSpeed) == 0x0002A8, "Member 'AGameNetworkManager::AdjustedNetSpeed' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, LastNetSpeedUpdateTime) == 0x0002AC, "Member 'AGameNetworkManager::LastNetSpeedUpdateTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, TotalNetBandwidth) == 0x0002B0, "Member 'AGameNetworkManager::TotalNetBandwidth' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MinDynamicBandwidth) == 0x0002B4, "Member 'AGameNetworkManager::MinDynamicBandwidth' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MaxDynamicBandwidth) == 0x0002B8, "Member 'AGameNetworkManager::MaxDynamicBandwidth' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, StandbyRxCheatTime) == 0x0002C0, "Member 'AGameNetworkManager::StandbyRxCheatTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, StandbyTxCheatTime) == 0x0002C4, "Member 'AGameNetworkManager::StandbyTxCheatTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, PercentMissingForRxStandby) == 0x0002C8, "Member 'AGameNetworkManager::PercentMissingForRxStandby' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, PercentMissingForTxStandby) == 0x0002CC, "Member 'AGameNetworkManager::PercentMissingForTxStandby' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, PercentForBadPing) == 0x0002D0, "Member 'AGameNetworkManager::PercentForBadPing' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, JoinInProgressStandbyWaitTime) == 0x0002D4, "Member 'AGameNetworkManager::JoinInProgressStandbyWaitTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MoveRepSize) == 0x0002D8, "Member 'AGameNetworkManager::MoveRepSize' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MAXPOSITIONERRORSQUARED) == 0x0002DC, "Member 'AGameNetworkManager::MAXPOSITIONERRORSQUARED' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MAXNEARZEROVELOCITYSQUARED) == 0x0002E0, "Member 'AGameNetworkManager::MAXNEARZEROVELOCITYSQUARED' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, CLIENTADJUSTUPDATECOST) == 0x0002E4, "Member 'AGameNetworkManager::CLIENTADJUSTUPDATECOST' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MAXCLIENTUPDATEINTERVAL) == 0x0002E8, "Member 'AGameNetworkManager::MAXCLIENTUPDATEINTERVAL' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MaxClientForcedUpdateDuration) == 0x0002EC, "Member 'AGameNetworkManager::MaxClientForcedUpdateDuration' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ServerForcedUpdateHitchThreshold) == 0x0002F0, "Member 'AGameNetworkManager::ServerForcedUpdateHitchThreshold' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ServerForcedUpdateHitchCooldown) == 0x0002F4, "Member 'AGameNetworkManager::ServerForcedUpdateHitchCooldown' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MaxMoveDeltaTime) == 0x0002F8, "Member 'AGameNetworkManager::MaxMoveDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MaxClientSmoothingDeltaTime) == 0x0002FC, "Member 'AGameNetworkManager::MaxClientSmoothingDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetSendMoveDeltaTime) == 0x000300, "Member 'AGameNetworkManager::ClientNetSendMoveDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetSendMoveDeltaTimeThrottled) == 0x000304, "Member 'AGameNetworkManager::ClientNetSendMoveDeltaTimeThrottled' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetSendMoveDeltaTimeStationary) == 0x000308, "Member 'AGameNetworkManager::ClientNetSendMoveDeltaTimeStationary' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetSendMoveThrottleAtNetSpeed) == 0x00030C, "Member 'AGameNetworkManager::ClientNetSendMoveThrottleAtNetSpeed' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetSendMoveThrottleOverPlayerCount) == 0x000310, "Member 'AGameNetworkManager::ClientNetSendMoveThrottleOverPlayerCount' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientErrorUpdateRateLimit) == 0x000314, "Member 'AGameNetworkManager::ClientErrorUpdateRateLimit' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetCamUpdateDeltaTime) == 0x000318, "Member 'AGameNetworkManager::ClientNetCamUpdateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientNetCamUpdatePositionLimit) == 0x00031C, "Member 'AGameNetworkManager::ClientNetCamUpdatePositionLimit' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, ClientAuthorativePosition) == 0x000320, "Member 'AGameNetworkManager::ClientAuthorativePosition' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, bMovementTimeDiscrepancyDetection) == 0x000321, "Member 'AGameNetworkManager::bMovementTimeDiscrepancyDetection' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, bMovementTimeDiscrepancyResolution) == 0x000322, "Member 'AGameNetworkManager::bMovementTimeDiscrepancyResolution' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MovementTimeDiscrepancyMaxTimeMargin) == 0x000324, "Member 'AGameNetworkManager::MovementTimeDiscrepancyMaxTimeMargin' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MovementTimeDiscrepancyMinTimeMargin) == 0x000328, "Member 'AGameNetworkManager::MovementTimeDiscrepancyMinTimeMargin' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MovementTimeDiscrepancyResolutionRate) == 0x00032C, "Member 'AGameNetworkManager::MovementTimeDiscrepancyResolutionRate' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, MovementTimeDiscrepancyDriftAllowance) == 0x000330, "Member 'AGameNetworkManager::MovementTimeDiscrepancyDriftAllowance' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, bMovementTimeDiscrepancyForceCorrectionsDuringResolution) == 0x000334, "Member 'AGameNetworkManager::bMovementTimeDiscrepancyForceCorrectionsDuringResolution' has a wrong offset!"); \ +static_assert(offsetof(AGameNetworkManager, bUseDistanceBasedRelevancy) == 0x000335, "Member 'AGameNetworkManager::bUseDistanceBasedRelevancy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInitialActiveSoundParams \ +static_assert(alignof(UInitialActiveSoundParams) == 0x000008, "Wrong alignment on UInitialActiveSoundParams"); \ +static_assert(sizeof(UInitialActiveSoundParams) == 0x000038, "Wrong size on UInitialActiveSoundParams"); \ +static_assert(offsetof(UInitialActiveSoundParams, AudioParams) == 0x000028, "Member 'UInitialActiveSoundParams::AudioParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpotLight_SetInnerConeAngle \ +static_assert(alignof(SpotLight_SetInnerConeAngle) == 0x000004, "Wrong alignment on SpotLight_SetInnerConeAngle"); \ +static_assert(sizeof(SpotLight_SetInnerConeAngle) == 0x000004, "Wrong size on SpotLight_SetInnerConeAngle"); \ +static_assert(offsetof(SpotLight_SetInnerConeAngle, NewInnerConeAngle) == 0x000000, "Member 'SpotLight_SetInnerConeAngle::NewInnerConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpotLight_SetOuterConeAngle \ +static_assert(alignof(SpotLight_SetOuterConeAngle) == 0x000004, "Wrong alignment on SpotLight_SetOuterConeAngle"); \ +static_assert(sizeof(SpotLight_SetOuterConeAngle) == 0x000004, "Wrong size on SpotLight_SetOuterConeAngle"); \ +static_assert(offsetof(SpotLight_SetOuterConeAngle, NewOuterConeAngle) == 0x000000, "Member 'SpotLight_SetOuterConeAngle::NewOuterConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASpotLight \ +static_assert(alignof(ASpotLight) == 0x000008, "Wrong alignment on ASpotLight"); \ +static_assert(sizeof(ASpotLight) == 0x0002B0, "Wrong size on ASpotLight"); \ +static_assert(offsetof(ASpotLight, SpotLightComponent) == 0x0002A8, "Member 'ASpotLight::SpotLightComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWindDirectionalSource \ +static_assert(alignof(AWindDirectionalSource) == 0x000008, "Wrong alignment on AWindDirectionalSource"); \ +static_assert(sizeof(AWindDirectionalSource) == 0x0002A0, "Wrong size on AWindDirectionalSource"); \ +static_assert(offsetof(AWindDirectionalSource, Component) == 0x000298, "Member 'AWindDirectionalSource::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleSpriteRotation \ +static_assert(alignof(UMaterialExpressionParticleSpriteRotation) == 0x000008, "Wrong alignment on UMaterialExpressionParticleSpriteRotation"); \ +static_assert(sizeof(UMaterialExpressionParticleSpriteRotation) == 0x0000B0, "Wrong size on UMaterialExpressionParticleSpriteRotation"); \ + +#define DUMPER7_ASSERTS_AGeneratedMeshAreaLight \ +static_assert(alignof(AGeneratedMeshAreaLight) == 0x000008, "Wrong alignment on AGeneratedMeshAreaLight"); \ +static_assert(sizeof(AGeneratedMeshAreaLight) == 0x0002B0, "Wrong size on AGeneratedMeshAreaLight"); \ + +#define DUMPER7_ASSERTS_UHapticFeedbackEffect_Base \ +static_assert(alignof(UHapticFeedbackEffect_Base) == 0x000008, "Wrong alignment on UHapticFeedbackEffect_Base"); \ +static_assert(sizeof(UHapticFeedbackEffect_Base) == 0x000028, "Wrong size on UHapticFeedbackEffect_Base"); \ + +#define DUMPER7_ASSERTS_UHapticFeedbackEffect_Buffer \ +static_assert(alignof(UHapticFeedbackEffect_Buffer) == 0x000008, "Wrong alignment on UHapticFeedbackEffect_Buffer"); \ +static_assert(sizeof(UHapticFeedbackEffect_Buffer) == 0x000040, "Wrong size on UHapticFeedbackEffect_Buffer"); \ +static_assert(offsetof(UHapticFeedbackEffect_Buffer, Amplitudes) == 0x000028, "Member 'UHapticFeedbackEffect_Buffer::Amplitudes' has a wrong offset!"); \ +static_assert(offsetof(UHapticFeedbackEffect_Buffer, SampleRate) == 0x000038, "Member 'UHapticFeedbackEffect_Buffer::SampleRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleColor \ +static_assert(alignof(UMaterialExpressionParticleColor) == 0x000008, "Wrong alignment on UMaterialExpressionParticleColor"); \ +static_assert(sizeof(UMaterialExpressionParticleColor) == 0x0000B0, "Wrong size on UMaterialExpressionParticleColor"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAttractorPoint \ +static_assert(alignof(UParticleModuleAttractorPoint) == 0x000008, "Wrong alignment on UParticleModuleAttractorPoint"); \ +static_assert(sizeof(UParticleModuleAttractorPoint) == 0x0000F8, "Wrong size on UParticleModuleAttractorPoint"); \ +static_assert(offsetof(UParticleModuleAttractorPoint, Position) == 0x000030, "Member 'UParticleModuleAttractorPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorPoint, Range) == 0x000090, "Member 'UParticleModuleAttractorPoint::Range' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorPoint, Strength) == 0x0000C0, "Member 'UParticleModuleAttractorPoint::Strength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHapticFeedbackEffect_Curve \ +static_assert(alignof(UHapticFeedbackEffect_Curve) == 0x000008, "Wrong alignment on UHapticFeedbackEffect_Curve"); \ +static_assert(sizeof(UHapticFeedbackEffect_Curve) == 0x000138, "Wrong size on UHapticFeedbackEffect_Curve"); \ +static_assert(offsetof(UHapticFeedbackEffect_Curve, HapticDetails) == 0x000028, "Member 'UHapticFeedbackEffect_Curve::HapticDetails' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeBase_SetRootShakePattern \ +static_assert(alignof(CameraShakeBase_SetRootShakePattern) == 0x000008, "Wrong alignment on CameraShakeBase_SetRootShakePattern"); \ +static_assert(sizeof(CameraShakeBase_SetRootShakePattern) == 0x000008, "Wrong size on CameraShakeBase_SetRootShakePattern"); \ +static_assert(offsetof(CameraShakeBase_SetRootShakePattern, InPattern) == 0x000000, "Member 'CameraShakeBase_SetRootShakePattern::InPattern' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeBase_GetRootShakePattern \ +static_assert(alignof(CameraShakeBase_GetRootShakePattern) == 0x000008, "Wrong alignment on CameraShakeBase_GetRootShakePattern"); \ +static_assert(sizeof(CameraShakeBase_GetRootShakePattern) == 0x000008, "Wrong size on CameraShakeBase_GetRootShakePattern"); \ +static_assert(offsetof(CameraShakeBase_GetRootShakePattern, ReturnValue) == 0x000000, "Member 'CameraShakeBase_GetRootShakePattern::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShakeBase \ +static_assert(alignof(UCameraShakeBase) == 0x000010, "Wrong alignment on UCameraShakeBase"); \ +static_assert(sizeof(UCameraShakeBase) == 0x0000E0, "Wrong size on UCameraShakeBase"); \ +static_assert(offsetof(UCameraShakeBase, bSingleInstance) == 0x000028, "Member 'UCameraShakeBase::bSingleInstance' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeBase, ShakeScale) == 0x00002C, "Member 'UCameraShakeBase::ShakeScale' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeBase, RootShakePattern) == 0x000030, "Member 'UCameraShakeBase::RootShakePattern' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeBase, CameraManager) == 0x000038, "Member 'UCameraShakeBase::CameraManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleCollisionBase \ +static_assert(alignof(UParticleModuleCollisionBase) == 0x000008, "Wrong alignment on UParticleModuleCollisionBase"); \ +static_assert(sizeof(UParticleModuleCollisionBase) == 0x000030, "Wrong size on UParticleModuleCollisionBase"); \ + +#define DUMPER7_ASSERTS_UHapticFeedbackEffect_SoundWave \ +static_assert(alignof(UHapticFeedbackEffect_SoundWave) == 0x000008, "Wrong alignment on UHapticFeedbackEffect_SoundWave"); \ +static_assert(sizeof(UHapticFeedbackEffect_SoundWave) == 0x000048, "Wrong size on UHapticFeedbackEffect_SoundWave"); \ +static_assert(offsetof(UHapticFeedbackEffect_SoundWave, SoundWave) == 0x000028, "Member 'UHapticFeedbackEffect_SoundWave::SoundWave' has a wrong offset!"); \ +static_assert(offsetof(UHapticFeedbackEffect_SoundWave, bUseStereo) == 0x000030, "Member 'UHapticFeedbackEffect_SoundWave::bUseStereo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSparseVolumeTextureBase \ +static_assert(alignof(UMaterialExpressionSparseVolumeTextureBase) == 0x000008, "Wrong alignment on UMaterialExpressionSparseVolumeTextureBase"); \ +static_assert(sizeof(UMaterialExpressionSparseVolumeTextureBase) == 0x0000B8, "Wrong size on UMaterialExpressionSparseVolumeTextureBase"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureBase, SparseVolumeTexture) == 0x0000B0, "Member 'UMaterialExpressionSparseVolumeTextureBase::SparseVolumeTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionHLODSourceActors \ +static_assert(alignof(UWorldPartitionHLODSourceActors) == 0x000008, "Wrong alignment on UWorldPartitionHLODSourceActors"); \ +static_assert(sizeof(UWorldPartitionHLODSourceActors) == 0x000028, "Wrong size on UWorldPartitionHLODSourceActors"); \ + +#define DUMPER7_ASSERTS_Controller_ClientSetLocation \ +static_assert(alignof(Controller_ClientSetLocation) == 0x000008, "Wrong alignment on Controller_ClientSetLocation"); \ +static_assert(sizeof(Controller_ClientSetLocation) == 0x000030, "Wrong size on Controller_ClientSetLocation"); \ +static_assert(offsetof(Controller_ClientSetLocation, NewLocation) == 0x000000, "Member 'Controller_ClientSetLocation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(Controller_ClientSetLocation, NewRotation) == 0x000018, "Member 'Controller_ClientSetLocation::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_ClientSetRotation \ +static_assert(alignof(Controller_ClientSetRotation) == 0x000008, "Wrong alignment on Controller_ClientSetRotation"); \ +static_assert(sizeof(Controller_ClientSetRotation) == 0x000020, "Wrong size on Controller_ClientSetRotation"); \ +static_assert(offsetof(Controller_ClientSetRotation, NewRotation) == 0x000000, "Member 'Controller_ClientSetRotation::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(Controller_ClientSetRotation, bResetCamera) == 0x000018, "Member 'Controller_ClientSetRotation::bResetCamera' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_Possess \ +static_assert(alignof(Controller_Possess) == 0x000008, "Wrong alignment on Controller_Possess"); \ +static_assert(sizeof(Controller_Possess) == 0x000008, "Wrong size on Controller_Possess"); \ +static_assert(offsetof(Controller_Possess, InPawn) == 0x000000, "Member 'Controller_Possess::InPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_ReceiveInstigatedAnyDamage \ +static_assert(alignof(Controller_ReceiveInstigatedAnyDamage) == 0x000008, "Wrong alignment on Controller_ReceiveInstigatedAnyDamage"); \ +static_assert(sizeof(Controller_ReceiveInstigatedAnyDamage) == 0x000020, "Wrong size on Controller_ReceiveInstigatedAnyDamage"); \ +static_assert(offsetof(Controller_ReceiveInstigatedAnyDamage, Damage) == 0x000000, "Member 'Controller_ReceiveInstigatedAnyDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(Controller_ReceiveInstigatedAnyDamage, DamageType) == 0x000008, "Member 'Controller_ReceiveInstigatedAnyDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(Controller_ReceiveInstigatedAnyDamage, DamagedActor) == 0x000010, "Member 'Controller_ReceiveInstigatedAnyDamage::DamagedActor' has a wrong offset!"); \ +static_assert(offsetof(Controller_ReceiveInstigatedAnyDamage, DamageCauser) == 0x000018, "Member 'Controller_ReceiveInstigatedAnyDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_ReceivePossess \ +static_assert(alignof(Controller_ReceivePossess) == 0x000008, "Wrong alignment on Controller_ReceivePossess"); \ +static_assert(sizeof(Controller_ReceivePossess) == 0x000008, "Wrong size on Controller_ReceivePossess"); \ +static_assert(offsetof(Controller_ReceivePossess, PossessedPawn) == 0x000000, "Member 'Controller_ReceivePossess::PossessedPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_ReceiveUnPossess \ +static_assert(alignof(Controller_ReceiveUnPossess) == 0x000008, "Wrong alignment on Controller_ReceiveUnPossess"); \ +static_assert(sizeof(Controller_ReceiveUnPossess) == 0x000008, "Wrong size on Controller_ReceiveUnPossess"); \ +static_assert(offsetof(Controller_ReceiveUnPossess, UnpossessedPawn) == 0x000000, "Member 'Controller_ReceiveUnPossess::UnpossessedPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_SetControlRotation \ +static_assert(alignof(Controller_SetControlRotation) == 0x000008, "Wrong alignment on Controller_SetControlRotation"); \ +static_assert(sizeof(Controller_SetControlRotation) == 0x000018, "Wrong size on Controller_SetControlRotation"); \ +static_assert(offsetof(Controller_SetControlRotation, NewRotation) == 0x000000, "Member 'Controller_SetControlRotation::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_SetIgnoreLookInput \ +static_assert(alignof(Controller_SetIgnoreLookInput) == 0x000001, "Wrong alignment on Controller_SetIgnoreLookInput"); \ +static_assert(sizeof(Controller_SetIgnoreLookInput) == 0x000001, "Wrong size on Controller_SetIgnoreLookInput"); \ +static_assert(offsetof(Controller_SetIgnoreLookInput, bNewLookInput) == 0x000000, "Member 'Controller_SetIgnoreLookInput::bNewLookInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_SetIgnoreMoveInput \ +static_assert(alignof(Controller_SetIgnoreMoveInput) == 0x000001, "Wrong alignment on Controller_SetIgnoreMoveInput"); \ +static_assert(sizeof(Controller_SetIgnoreMoveInput) == 0x000001, "Wrong size on Controller_SetIgnoreMoveInput"); \ +static_assert(offsetof(Controller_SetIgnoreMoveInput, bNewMoveInput) == 0x000000, "Member 'Controller_SetIgnoreMoveInput::bNewMoveInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_SetInitialLocationAndRotation \ +static_assert(alignof(Controller_SetInitialLocationAndRotation) == 0x000008, "Wrong alignment on Controller_SetInitialLocationAndRotation"); \ +static_assert(sizeof(Controller_SetInitialLocationAndRotation) == 0x000030, "Wrong size on Controller_SetInitialLocationAndRotation"); \ +static_assert(offsetof(Controller_SetInitialLocationAndRotation, NewLocation) == 0x000000, "Member 'Controller_SetInitialLocationAndRotation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(Controller_SetInitialLocationAndRotation, NewRotation) == 0x000018, "Member 'Controller_SetInitialLocationAndRotation::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_GetControlRotation \ +static_assert(alignof(Controller_GetControlRotation) == 0x000008, "Wrong alignment on Controller_GetControlRotation"); \ +static_assert(sizeof(Controller_GetControlRotation) == 0x000018, "Wrong size on Controller_GetControlRotation"); \ +static_assert(offsetof(Controller_GetControlRotation, ReturnValue) == 0x000000, "Member 'Controller_GetControlRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_GetDesiredRotation \ +static_assert(alignof(Controller_GetDesiredRotation) == 0x000008, "Wrong alignment on Controller_GetDesiredRotation"); \ +static_assert(sizeof(Controller_GetDesiredRotation) == 0x000018, "Wrong size on Controller_GetDesiredRotation"); \ +static_assert(offsetof(Controller_GetDesiredRotation, ReturnValue) == 0x000000, "Member 'Controller_GetDesiredRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_GetPlayerViewPoint \ +static_assert(alignof(Controller_GetPlayerViewPoint) == 0x000008, "Wrong alignment on Controller_GetPlayerViewPoint"); \ +static_assert(sizeof(Controller_GetPlayerViewPoint) == 0x000030, "Wrong size on Controller_GetPlayerViewPoint"); \ +static_assert(offsetof(Controller_GetPlayerViewPoint, Location) == 0x000000, "Member 'Controller_GetPlayerViewPoint::Location' has a wrong offset!"); \ +static_assert(offsetof(Controller_GetPlayerViewPoint, Rotation) == 0x000018, "Member 'Controller_GetPlayerViewPoint::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_GetViewTarget \ +static_assert(alignof(Controller_GetViewTarget) == 0x000008, "Wrong alignment on Controller_GetViewTarget"); \ +static_assert(sizeof(Controller_GetViewTarget) == 0x000008, "Wrong size on Controller_GetViewTarget"); \ +static_assert(offsetof(Controller_GetViewTarget, ReturnValue) == 0x000000, "Member 'Controller_GetViewTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_IsLocalController \ +static_assert(alignof(Controller_IsLocalController) == 0x000001, "Wrong alignment on Controller_IsLocalController"); \ +static_assert(sizeof(Controller_IsLocalController) == 0x000001, "Wrong size on Controller_IsLocalController"); \ +static_assert(offsetof(Controller_IsLocalController, ReturnValue) == 0x000000, "Member 'Controller_IsLocalController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_IsLocalPlayerController \ +static_assert(alignof(Controller_IsLocalPlayerController) == 0x000001, "Wrong alignment on Controller_IsLocalPlayerController"); \ +static_assert(sizeof(Controller_IsLocalPlayerController) == 0x000001, "Wrong size on Controller_IsLocalPlayerController"); \ +static_assert(offsetof(Controller_IsLocalPlayerController, ReturnValue) == 0x000000, "Member 'Controller_IsLocalPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_IsLookInputIgnored \ +static_assert(alignof(Controller_IsLookInputIgnored) == 0x000001, "Wrong alignment on Controller_IsLookInputIgnored"); \ +static_assert(sizeof(Controller_IsLookInputIgnored) == 0x000001, "Wrong size on Controller_IsLookInputIgnored"); \ +static_assert(offsetof(Controller_IsLookInputIgnored, ReturnValue) == 0x000000, "Member 'Controller_IsLookInputIgnored::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_IsMoveInputIgnored \ +static_assert(alignof(Controller_IsMoveInputIgnored) == 0x000001, "Wrong alignment on Controller_IsMoveInputIgnored"); \ +static_assert(sizeof(Controller_IsMoveInputIgnored) == 0x000001, "Wrong size on Controller_IsMoveInputIgnored"); \ +static_assert(offsetof(Controller_IsMoveInputIgnored, ReturnValue) == 0x000000, "Member 'Controller_IsMoveInputIgnored::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_IsPlayerController \ +static_assert(alignof(Controller_IsPlayerController) == 0x000001, "Wrong alignment on Controller_IsPlayerController"); \ +static_assert(sizeof(Controller_IsPlayerController) == 0x000001, "Wrong size on Controller_IsPlayerController"); \ +static_assert(offsetof(Controller_IsPlayerController, ReturnValue) == 0x000000, "Member 'Controller_IsPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_K2_GetPawn \ +static_assert(alignof(Controller_K2_GetPawn) == 0x000008, "Wrong alignment on Controller_K2_GetPawn"); \ +static_assert(sizeof(Controller_K2_GetPawn) == 0x000008, "Wrong size on Controller_K2_GetPawn"); \ +static_assert(offsetof(Controller_K2_GetPawn, ReturnValue) == 0x000000, "Member 'Controller_K2_GetPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Controller_LineOfSightTo \ +static_assert(alignof(Controller_LineOfSightTo) == 0x000008, "Wrong alignment on Controller_LineOfSightTo"); \ +static_assert(sizeof(Controller_LineOfSightTo) == 0x000028, "Wrong size on Controller_LineOfSightTo"); \ +static_assert(offsetof(Controller_LineOfSightTo, Other) == 0x000000, "Member 'Controller_LineOfSightTo::Other' has a wrong offset!"); \ +static_assert(offsetof(Controller_LineOfSightTo, ViewPoint) == 0x000008, "Member 'Controller_LineOfSightTo::ViewPoint' has a wrong offset!"); \ +static_assert(offsetof(Controller_LineOfSightTo, bAlternateChecks) == 0x000020, "Member 'Controller_LineOfSightTo::bAlternateChecks' has a wrong offset!"); \ +static_assert(offsetof(Controller_LineOfSightTo, ReturnValue) == 0x000021, "Member 'Controller_LineOfSightTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AController \ +static_assert(alignof(AController) == 0x000008, "Wrong alignment on AController"); \ +static_assert(sizeof(AController) == 0x000330, "Wrong size on AController"); \ +static_assert(offsetof(AController, PlayerState) == 0x0002A0, "Member 'AController::PlayerState' has a wrong offset!"); \ +static_assert(offsetof(AController, OnInstigatedAnyDamage) == 0x0002B0, "Member 'AController::OnInstigatedAnyDamage' has a wrong offset!"); \ +static_assert(offsetof(AController, OnPossessedPawnChanged) == 0x0002C0, "Member 'AController::OnPossessedPawnChanged' has a wrong offset!"); \ +static_assert(offsetof(AController, StateName) == 0x0002D0, "Member 'AController::StateName' has a wrong offset!"); \ +static_assert(offsetof(AController, Pawn) == 0x0002D8, "Member 'AController::Pawn' has a wrong offset!"); \ +static_assert(offsetof(AController, Character) == 0x0002E8, "Member 'AController::Character' has a wrong offset!"); \ +static_assert(offsetof(AController, TransformComponent) == 0x0002F0, "Member 'AController::TransformComponent' has a wrong offset!"); \ +static_assert(offsetof(AController, ControlRotation) == 0x000310, "Member 'AController::ControlRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ActivateTouchInterface \ +static_assert(alignof(PlayerController_ActivateTouchInterface) == 0x000008, "Wrong alignment on PlayerController_ActivateTouchInterface"); \ +static_assert(sizeof(PlayerController_ActivateTouchInterface) == 0x000008, "Wrong size on PlayerController_ActivateTouchInterface"); \ +static_assert(offsetof(PlayerController_ActivateTouchInterface, NewTouchInterface) == 0x000000, "Member 'PlayerController_ActivateTouchInterface::NewTouchInterface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_AddPitchInput \ +static_assert(alignof(PlayerController_AddPitchInput) == 0x000004, "Wrong alignment on PlayerController_AddPitchInput"); \ +static_assert(sizeof(PlayerController_AddPitchInput) == 0x000004, "Wrong size on PlayerController_AddPitchInput"); \ +static_assert(offsetof(PlayerController_AddPitchInput, Val) == 0x000000, "Member 'PlayerController_AddPitchInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_AddRollInput \ +static_assert(alignof(PlayerController_AddRollInput) == 0x000004, "Wrong alignment on PlayerController_AddRollInput"); \ +static_assert(sizeof(PlayerController_AddRollInput) == 0x000004, "Wrong size on PlayerController_AddRollInput"); \ +static_assert(offsetof(PlayerController_AddRollInput, Val) == 0x000000, "Member 'PlayerController_AddRollInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_AddYawInput \ +static_assert(alignof(PlayerController_AddYawInput) == 0x000004, "Wrong alignment on PlayerController_AddYawInput"); \ +static_assert(sizeof(PlayerController_AddYawInput) == 0x000004, "Wrong size on PlayerController_AddYawInput"); \ +static_assert(offsetof(PlayerController_AddYawInput, Val) == 0x000000, "Member 'PlayerController_AddYawInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_Camera \ +static_assert(alignof(PlayerController_Camera) == 0x000004, "Wrong alignment on PlayerController_Camera"); \ +static_assert(sizeof(PlayerController_Camera) == 0x000008, "Wrong size on PlayerController_Camera"); \ +static_assert(offsetof(PlayerController_Camera, NewMode) == 0x000000, "Member 'PlayerController_Camera::NewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_CanRestartPlayer \ +static_assert(alignof(PlayerController_CanRestartPlayer) == 0x000001, "Wrong alignment on PlayerController_CanRestartPlayer"); \ +static_assert(sizeof(PlayerController_CanRestartPlayer) == 0x000001, "Wrong size on PlayerController_CanRestartPlayer"); \ +static_assert(offsetof(PlayerController_CanRestartPlayer, ReturnValue) == 0x000000, "Member 'PlayerController_CanRestartPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientAckTimeDilation \ +static_assert(alignof(PlayerController_ClientAckTimeDilation) == 0x000004, "Wrong alignment on PlayerController_ClientAckTimeDilation"); \ +static_assert(sizeof(PlayerController_ClientAckTimeDilation) == 0x000008, "Wrong size on PlayerController_ClientAckTimeDilation"); \ +static_assert(offsetof(PlayerController_ClientAckTimeDilation, TimeDilation) == 0x000000, "Member 'PlayerController_ClientAckTimeDilation::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientAckTimeDilation, ServerStep) == 0x000004, "Member 'PlayerController_ClientAckTimeDilation::ServerStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientAckUpdateLevelVisibility \ +static_assert(alignof(PlayerController_ClientAckUpdateLevelVisibility) == 0x000004, "Wrong alignment on PlayerController_ClientAckUpdateLevelVisibility"); \ +static_assert(sizeof(PlayerController_ClientAckUpdateLevelVisibility) == 0x000010, "Wrong size on PlayerController_ClientAckUpdateLevelVisibility"); \ +static_assert(offsetof(PlayerController_ClientAckUpdateLevelVisibility, PackageName) == 0x000000, "Member 'PlayerController_ClientAckUpdateLevelVisibility::PackageName' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientAckUpdateLevelVisibility, TransactionId) == 0x000008, "Member 'PlayerController_ClientAckUpdateLevelVisibility::TransactionId' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientAckUpdateLevelVisibility, bClientAckCanMakeVisible) == 0x00000C, "Member 'PlayerController_ClientAckUpdateLevelVisibility::bClientAckCanMakeVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientAddTextureStreamingLoc \ +static_assert(alignof(PlayerController_ClientAddTextureStreamingLoc) == 0x000008, "Wrong alignment on PlayerController_ClientAddTextureStreamingLoc"); \ +static_assert(sizeof(PlayerController_ClientAddTextureStreamingLoc) == 0x000020, "Wrong size on PlayerController_ClientAddTextureStreamingLoc"); \ +static_assert(offsetof(PlayerController_ClientAddTextureStreamingLoc, InLoc) == 0x000000, "Member 'PlayerController_ClientAddTextureStreamingLoc::InLoc' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientAddTextureStreamingLoc, Duration) == 0x000018, "Member 'PlayerController_ClientAddTextureStreamingLoc::Duration' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientAddTextureStreamingLoc, bOverrideLocation) == 0x00001C, "Member 'PlayerController_ClientAddTextureStreamingLoc::bOverrideLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientCapBandwidth \ +static_assert(alignof(PlayerController_ClientCapBandwidth) == 0x000004, "Wrong alignment on PlayerController_ClientCapBandwidth"); \ +static_assert(sizeof(PlayerController_ClientCapBandwidth) == 0x000004, "Wrong size on PlayerController_ClientCapBandwidth"); \ +static_assert(offsetof(PlayerController_ClientCapBandwidth, Cap) == 0x000000, "Member 'PlayerController_ClientCapBandwidth::Cap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientCorrectionAsyncPhysicsTimestamp \ +static_assert(alignof(PlayerController_ClientCorrectionAsyncPhysicsTimestamp) == 0x000004, "Wrong alignment on PlayerController_ClientCorrectionAsyncPhysicsTimestamp"); \ +static_assert(sizeof(PlayerController_ClientCorrectionAsyncPhysicsTimestamp) == 0x000008, "Wrong size on PlayerController_ClientCorrectionAsyncPhysicsTimestamp"); \ +static_assert(offsetof(PlayerController_ClientCorrectionAsyncPhysicsTimestamp, Timestamp) == 0x000000, "Member 'PlayerController_ClientCorrectionAsyncPhysicsTimestamp::Timestamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientEnableNetworkVoice \ +static_assert(alignof(PlayerController_ClientEnableNetworkVoice) == 0x000001, "Wrong alignment on PlayerController_ClientEnableNetworkVoice"); \ +static_assert(sizeof(PlayerController_ClientEnableNetworkVoice) == 0x000001, "Wrong size on PlayerController_ClientEnableNetworkVoice"); \ +static_assert(offsetof(PlayerController_ClientEnableNetworkVoice, bEnable) == 0x000000, "Member 'PlayerController_ClientEnableNetworkVoice::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientGameEnded \ +static_assert(alignof(PlayerController_ClientGameEnded) == 0x000008, "Wrong alignment on PlayerController_ClientGameEnded"); \ +static_assert(sizeof(PlayerController_ClientGameEnded) == 0x000010, "Wrong size on PlayerController_ClientGameEnded"); \ +static_assert(offsetof(PlayerController_ClientGameEnded, EndGameFocus) == 0x000000, "Member 'PlayerController_ClientGameEnded::EndGameFocus' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientGameEnded, bIsWinner) == 0x000008, "Member 'PlayerController_ClientGameEnded::bIsWinner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientGotoState \ +static_assert(alignof(PlayerController_ClientGotoState) == 0x000004, "Wrong alignment on PlayerController_ClientGotoState"); \ +static_assert(sizeof(PlayerController_ClientGotoState) == 0x000008, "Wrong size on PlayerController_ClientGotoState"); \ +static_assert(offsetof(PlayerController_ClientGotoState, NewState) == 0x000000, "Member 'PlayerController_ClientGotoState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientIgnoreLookInput \ +static_assert(alignof(PlayerController_ClientIgnoreLookInput) == 0x000001, "Wrong alignment on PlayerController_ClientIgnoreLookInput"); \ +static_assert(sizeof(PlayerController_ClientIgnoreLookInput) == 0x000001, "Wrong size on PlayerController_ClientIgnoreLookInput"); \ +static_assert(offsetof(PlayerController_ClientIgnoreLookInput, bIgnore) == 0x000000, "Member 'PlayerController_ClientIgnoreLookInput::bIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientIgnoreMoveInput \ +static_assert(alignof(PlayerController_ClientIgnoreMoveInput) == 0x000001, "Wrong alignment on PlayerController_ClientIgnoreMoveInput"); \ +static_assert(sizeof(PlayerController_ClientIgnoreMoveInput) == 0x000001, "Wrong size on PlayerController_ClientIgnoreMoveInput"); \ +static_assert(offsetof(PlayerController_ClientIgnoreMoveInput, bIgnore) == 0x000000, "Member 'PlayerController_ClientIgnoreMoveInput::bIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientMessage \ +static_assert(alignof(PlayerController_ClientMessage) == 0x000008, "Wrong alignment on PlayerController_ClientMessage"); \ +static_assert(sizeof(PlayerController_ClientMessage) == 0x000020, "Wrong size on PlayerController_ClientMessage"); \ +static_assert(offsetof(PlayerController_ClientMessage, S) == 0x000000, "Member 'PlayerController_ClientMessage::S' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientMessage, Type) == 0x000010, "Member 'PlayerController_ClientMessage::Type' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientMessage, MsgLifeTime) == 0x000018, "Member 'PlayerController_ClientMessage::MsgLifeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientMutePlayer \ +static_assert(alignof(PlayerController_ClientMutePlayer) == 0x000008, "Wrong alignment on PlayerController_ClientMutePlayer"); \ +static_assert(sizeof(PlayerController_ClientMutePlayer) == 0x000030, "Wrong size on PlayerController_ClientMutePlayer"); \ +static_assert(offsetof(PlayerController_ClientMutePlayer, PlayerId) == 0x000000, "Member 'PlayerController_ClientMutePlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientPlayForceFeedback_Internal \ +static_assert(alignof(PlayerController_ClientPlayForceFeedback_Internal) == 0x000008, "Wrong alignment on PlayerController_ClientPlayForceFeedback_Internal"); \ +static_assert(sizeof(PlayerController_ClientPlayForceFeedback_Internal) == 0x000018, "Wrong size on PlayerController_ClientPlayForceFeedback_Internal"); \ +static_assert(offsetof(PlayerController_ClientPlayForceFeedback_Internal, ForceFeedbackEffect) == 0x000000, "Member 'PlayerController_ClientPlayForceFeedback_Internal::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlayForceFeedback_Internal, Params_0) == 0x000008, "Member 'PlayerController_ClientPlayForceFeedback_Internal::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientPlaySound \ +static_assert(alignof(PlayerController_ClientPlaySound) == 0x000008, "Wrong alignment on PlayerController_ClientPlaySound"); \ +static_assert(sizeof(PlayerController_ClientPlaySound) == 0x000010, "Wrong size on PlayerController_ClientPlaySound"); \ +static_assert(offsetof(PlayerController_ClientPlaySound, Sound) == 0x000000, "Member 'PlayerController_ClientPlaySound::Sound' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlaySound, VolumeMultiplier) == 0x000008, "Member 'PlayerController_ClientPlaySound::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlaySound, PitchMultiplier) == 0x00000C, "Member 'PlayerController_ClientPlaySound::PitchMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientPlaySoundAtLocation \ +static_assert(alignof(PlayerController_ClientPlaySoundAtLocation) == 0x000008, "Wrong alignment on PlayerController_ClientPlaySoundAtLocation"); \ +static_assert(sizeof(PlayerController_ClientPlaySoundAtLocation) == 0x000028, "Wrong size on PlayerController_ClientPlaySoundAtLocation"); \ +static_assert(offsetof(PlayerController_ClientPlaySoundAtLocation, Sound) == 0x000000, "Member 'PlayerController_ClientPlaySoundAtLocation::Sound' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlaySoundAtLocation, Location) == 0x000008, "Member 'PlayerController_ClientPlaySoundAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlaySoundAtLocation, VolumeMultiplier) == 0x000020, "Member 'PlayerController_ClientPlaySoundAtLocation::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPlaySoundAtLocation, PitchMultiplier) == 0x000024, "Member 'PlayerController_ClientPlaySoundAtLocation::PitchMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientPrepareMapChange \ +static_assert(alignof(PlayerController_ClientPrepareMapChange) == 0x000004, "Wrong alignment on PlayerController_ClientPrepareMapChange"); \ +static_assert(sizeof(PlayerController_ClientPrepareMapChange) == 0x00000C, "Wrong size on PlayerController_ClientPrepareMapChange"); \ +static_assert(offsetof(PlayerController_ClientPrepareMapChange, LevelName) == 0x000000, "Member 'PlayerController_ClientPrepareMapChange::LevelName' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPrepareMapChange, bFirst) == 0x000008, "Member 'PlayerController_ClientPrepareMapChange::bFirst' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPrepareMapChange, bLast) == 0x000009, "Member 'PlayerController_ClientPrepareMapChange::bLast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientPrestreamTextures \ +static_assert(alignof(PlayerController_ClientPrestreamTextures) == 0x000008, "Wrong alignment on PlayerController_ClientPrestreamTextures"); \ +static_assert(sizeof(PlayerController_ClientPrestreamTextures) == 0x000018, "Wrong size on PlayerController_ClientPrestreamTextures"); \ +static_assert(offsetof(PlayerController_ClientPrestreamTextures, ForcedActor) == 0x000000, "Member 'PlayerController_ClientPrestreamTextures::ForcedActor' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPrestreamTextures, ForceDuration) == 0x000008, "Member 'PlayerController_ClientPrestreamTextures::ForceDuration' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPrestreamTextures, bEnableStreaming) == 0x00000C, "Member 'PlayerController_ClientPrestreamTextures::bEnableStreaming' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientPrestreamTextures, CinematicTextureGroups) == 0x000010, "Member 'PlayerController_ClientPrestreamTextures::CinematicTextureGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientReceiveLocalizedMessage \ +static_assert(alignof(PlayerController_ClientReceiveLocalizedMessage) == 0x000008, "Wrong alignment on PlayerController_ClientReceiveLocalizedMessage"); \ +static_assert(sizeof(PlayerController_ClientReceiveLocalizedMessage) == 0x000028, "Wrong size on PlayerController_ClientReceiveLocalizedMessage"); \ +static_assert(offsetof(PlayerController_ClientReceiveLocalizedMessage, Message) == 0x000000, "Member 'PlayerController_ClientReceiveLocalizedMessage::Message' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientReceiveLocalizedMessage, SWITCH) == 0x000008, "Member 'PlayerController_ClientReceiveLocalizedMessage::SWITCH' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientReceiveLocalizedMessage, RelatedPlayerState_1) == 0x000010, "Member 'PlayerController_ClientReceiveLocalizedMessage::RelatedPlayerState_1' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientReceiveLocalizedMessage, RelatedPlayerState_2) == 0x000018, "Member 'PlayerController_ClientReceiveLocalizedMessage::RelatedPlayerState_2' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientReceiveLocalizedMessage, OptionalObject) == 0x000020, "Member 'PlayerController_ClientReceiveLocalizedMessage::OptionalObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientRecvServerAckFrame \ +static_assert(alignof(PlayerController_ClientRecvServerAckFrame) == 0x000004, "Wrong alignment on PlayerController_ClientRecvServerAckFrame"); \ +static_assert(sizeof(PlayerController_ClientRecvServerAckFrame) == 0x00000C, "Wrong size on PlayerController_ClientRecvServerAckFrame"); \ +static_assert(offsetof(PlayerController_ClientRecvServerAckFrame, LastProcessedInputFrame) == 0x000000, "Member 'PlayerController_ClientRecvServerAckFrame::LastProcessedInputFrame' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientRecvServerAckFrame, RecvServerFrameNumber) == 0x000004, "Member 'PlayerController_ClientRecvServerAckFrame::RecvServerFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientRecvServerAckFrame, TimeDilation) == 0x000008, "Member 'PlayerController_ClientRecvServerAckFrame::TimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientRecvServerAckFrameDebug \ +static_assert(alignof(PlayerController_ClientRecvServerAckFrameDebug) == 0x000004, "Wrong alignment on PlayerController_ClientRecvServerAckFrameDebug"); \ +static_assert(sizeof(PlayerController_ClientRecvServerAckFrameDebug) == 0x000008, "Wrong size on PlayerController_ClientRecvServerAckFrameDebug"); \ +static_assert(offsetof(PlayerController_ClientRecvServerAckFrameDebug, NumBuffered) == 0x000000, "Member 'PlayerController_ClientRecvServerAckFrameDebug::NumBuffered' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientRecvServerAckFrameDebug, TargetNumBufferedCmds) == 0x000004, "Member 'PlayerController_ClientRecvServerAckFrameDebug::TargetNumBufferedCmds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientRepObjRef \ +static_assert(alignof(PlayerController_ClientRepObjRef) == 0x000008, "Wrong alignment on PlayerController_ClientRepObjRef"); \ +static_assert(sizeof(PlayerController_ClientRepObjRef) == 0x000008, "Wrong size on PlayerController_ClientRepObjRef"); \ +static_assert(offsetof(PlayerController_ClientRepObjRef, Object) == 0x000000, "Member 'PlayerController_ClientRepObjRef::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientRestart \ +static_assert(alignof(PlayerController_ClientRestart) == 0x000008, "Wrong alignment on PlayerController_ClientRestart"); \ +static_assert(sizeof(PlayerController_ClientRestart) == 0x000008, "Wrong size on PlayerController_ClientRestart"); \ +static_assert(offsetof(PlayerController_ClientRestart, NewPawn) == 0x000000, "Member 'PlayerController_ClientRestart::NewPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientRetryClientRestart \ +static_assert(alignof(PlayerController_ClientRetryClientRestart) == 0x000008, "Wrong alignment on PlayerController_ClientRetryClientRestart"); \ +static_assert(sizeof(PlayerController_ClientRetryClientRestart) == 0x000008, "Wrong size on PlayerController_ClientRetryClientRestart"); \ +static_assert(offsetof(PlayerController_ClientRetryClientRestart, NewPawn) == 0x000000, "Member 'PlayerController_ClientRetryClientRestart::NewPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientReturnToMainMenuWithTextReason \ +static_assert(alignof(PlayerController_ClientReturnToMainMenuWithTextReason) == 0x000008, "Wrong alignment on PlayerController_ClientReturnToMainMenuWithTextReason"); \ +static_assert(sizeof(PlayerController_ClientReturnToMainMenuWithTextReason) == 0x000018, "Wrong size on PlayerController_ClientReturnToMainMenuWithTextReason"); \ +static_assert(offsetof(PlayerController_ClientReturnToMainMenuWithTextReason, ReturnReason) == 0x000000, "Member 'PlayerController_ClientReturnToMainMenuWithTextReason::ReturnReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetCameraFade \ +static_assert(alignof(PlayerController_ClientSetCameraFade) == 0x000008, "Wrong alignment on PlayerController_ClientSetCameraFade"); \ +static_assert(sizeof(PlayerController_ClientSetCameraFade) == 0x000020, "Wrong size on PlayerController_ClientSetCameraFade"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, bEnableFading) == 0x000000, "Member 'PlayerController_ClientSetCameraFade::bEnableFading' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, FadeColor) == 0x000004, "Member 'PlayerController_ClientSetCameraFade::FadeColor' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, FadeAlpha) == 0x000008, "Member 'PlayerController_ClientSetCameraFade::FadeAlpha' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, FadeTime) == 0x000018, "Member 'PlayerController_ClientSetCameraFade::FadeTime' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, bFadeAudio) == 0x00001C, "Member 'PlayerController_ClientSetCameraFade::bFadeAudio' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCameraFade, bHoldWhenFinished) == 0x00001D, "Member 'PlayerController_ClientSetCameraFade::bHoldWhenFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetCameraMode \ +static_assert(alignof(PlayerController_ClientSetCameraMode) == 0x000004, "Wrong alignment on PlayerController_ClientSetCameraMode"); \ +static_assert(sizeof(PlayerController_ClientSetCameraMode) == 0x000008, "Wrong size on PlayerController_ClientSetCameraMode"); \ +static_assert(offsetof(PlayerController_ClientSetCameraMode, NewCamMode) == 0x000000, "Member 'PlayerController_ClientSetCameraMode::NewCamMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetCinematicMode \ +static_assert(alignof(PlayerController_ClientSetCinematicMode) == 0x000001, "Wrong alignment on PlayerController_ClientSetCinematicMode"); \ +static_assert(sizeof(PlayerController_ClientSetCinematicMode) == 0x000004, "Wrong size on PlayerController_ClientSetCinematicMode"); \ +static_assert(offsetof(PlayerController_ClientSetCinematicMode, bInCinematicMode) == 0x000000, "Member 'PlayerController_ClientSetCinematicMode::bInCinematicMode' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCinematicMode, bAffectsMovement) == 0x000001, "Member 'PlayerController_ClientSetCinematicMode::bAffectsMovement' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCinematicMode, bAffectsTurning) == 0x000002, "Member 'PlayerController_ClientSetCinematicMode::bAffectsTurning' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetCinematicMode, bAffectsHUD) == 0x000003, "Member 'PlayerController_ClientSetCinematicMode::bAffectsHUD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetForceMipLevelsToBeResident \ +static_assert(alignof(PlayerController_ClientSetForceMipLevelsToBeResident) == 0x000008, "Wrong alignment on PlayerController_ClientSetForceMipLevelsToBeResident"); \ +static_assert(sizeof(PlayerController_ClientSetForceMipLevelsToBeResident) == 0x000010, "Wrong size on PlayerController_ClientSetForceMipLevelsToBeResident"); \ +static_assert(offsetof(PlayerController_ClientSetForceMipLevelsToBeResident, Material) == 0x000000, "Member 'PlayerController_ClientSetForceMipLevelsToBeResident::Material' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetForceMipLevelsToBeResident, ForceDuration) == 0x000008, "Member 'PlayerController_ClientSetForceMipLevelsToBeResident::ForceDuration' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetForceMipLevelsToBeResident, CinematicTextureGroups) == 0x00000C, "Member 'PlayerController_ClientSetForceMipLevelsToBeResident::CinematicTextureGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetHUD \ +static_assert(alignof(PlayerController_ClientSetHUD) == 0x000008, "Wrong alignment on PlayerController_ClientSetHUD"); \ +static_assert(sizeof(PlayerController_ClientSetHUD) == 0x000008, "Wrong size on PlayerController_ClientSetHUD"); \ +static_assert(offsetof(PlayerController_ClientSetHUD, NewHUDClass) == 0x000000, "Member 'PlayerController_ClientSetHUD::NewHUDClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetSpectatorWaiting \ +static_assert(alignof(PlayerController_ClientSetSpectatorWaiting) == 0x000001, "Wrong alignment on PlayerController_ClientSetSpectatorWaiting"); \ +static_assert(sizeof(PlayerController_ClientSetSpectatorWaiting) == 0x000001, "Wrong size on PlayerController_ClientSetSpectatorWaiting"); \ +static_assert(offsetof(PlayerController_ClientSetSpectatorWaiting, bWaiting) == 0x000000, "Member 'PlayerController_ClientSetSpectatorWaiting::bWaiting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSetViewTarget \ +static_assert(alignof(PlayerController_ClientSetViewTarget) == 0x000008, "Wrong alignment on PlayerController_ClientSetViewTarget"); \ +static_assert(sizeof(PlayerController_ClientSetViewTarget) == 0x000018, "Wrong size on PlayerController_ClientSetViewTarget"); \ +static_assert(offsetof(PlayerController_ClientSetViewTarget, A) == 0x000000, "Member 'PlayerController_ClientSetViewTarget::A' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientSetViewTarget, TransitionParams) == 0x000008, "Member 'PlayerController_ClientSetViewTarget::TransitionParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSpawnCameraLensEffect \ +static_assert(alignof(PlayerController_ClientSpawnCameraLensEffect) == 0x000008, "Wrong alignment on PlayerController_ClientSpawnCameraLensEffect"); \ +static_assert(sizeof(PlayerController_ClientSpawnCameraLensEffect) == 0x000008, "Wrong size on PlayerController_ClientSpawnCameraLensEffect"); \ +static_assert(offsetof(PlayerController_ClientSpawnCameraLensEffect, LensEffectEmitterClass) == 0x000000, "Member 'PlayerController_ClientSpawnCameraLensEffect::LensEffectEmitterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientSpawnGenericCameraLensEffect \ +static_assert(alignof(PlayerController_ClientSpawnGenericCameraLensEffect) == 0x000008, "Wrong alignment on PlayerController_ClientSpawnGenericCameraLensEffect"); \ +static_assert(sizeof(PlayerController_ClientSpawnGenericCameraLensEffect) == 0x000008, "Wrong size on PlayerController_ClientSpawnGenericCameraLensEffect"); \ +static_assert(offsetof(PlayerController_ClientSpawnGenericCameraLensEffect, LensEffectEmitterClass) == 0x000000, "Member 'PlayerController_ClientSpawnGenericCameraLensEffect::LensEffectEmitterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientStartCameraShake \ +static_assert(alignof(PlayerController_ClientStartCameraShake) == 0x000008, "Wrong alignment on PlayerController_ClientStartCameraShake"); \ +static_assert(sizeof(PlayerController_ClientStartCameraShake) == 0x000028, "Wrong size on PlayerController_ClientStartCameraShake"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShake, Shake) == 0x000000, "Member 'PlayerController_ClientStartCameraShake::Shake' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShake, Scale) == 0x000008, "Member 'PlayerController_ClientStartCameraShake::Scale' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShake, PlaySpace) == 0x00000C, "Member 'PlayerController_ClientStartCameraShake::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShake, UserPlaySpaceRot) == 0x000010, "Member 'PlayerController_ClientStartCameraShake::UserPlaySpaceRot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientStartCameraShakeFromSource \ +static_assert(alignof(PlayerController_ClientStartCameraShakeFromSource) == 0x000008, "Wrong alignment on PlayerController_ClientStartCameraShakeFromSource"); \ +static_assert(sizeof(PlayerController_ClientStartCameraShakeFromSource) == 0x000010, "Wrong size on PlayerController_ClientStartCameraShakeFromSource"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShakeFromSource, Shake) == 0x000000, "Member 'PlayerController_ClientStartCameraShakeFromSource::Shake' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStartCameraShakeFromSource, SourceComponent) == 0x000008, "Member 'PlayerController_ClientStartCameraShakeFromSource::SourceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientStopCameraShake \ +static_assert(alignof(PlayerController_ClientStopCameraShake) == 0x000008, "Wrong alignment on PlayerController_ClientStopCameraShake"); \ +static_assert(sizeof(PlayerController_ClientStopCameraShake) == 0x000010, "Wrong size on PlayerController_ClientStopCameraShake"); \ +static_assert(offsetof(PlayerController_ClientStopCameraShake, Shake) == 0x000000, "Member 'PlayerController_ClientStopCameraShake::Shake' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStopCameraShake, bImmediately) == 0x000008, "Member 'PlayerController_ClientStopCameraShake::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientStopCameraShakesFromSource \ +static_assert(alignof(PlayerController_ClientStopCameraShakesFromSource) == 0x000008, "Wrong alignment on PlayerController_ClientStopCameraShakesFromSource"); \ +static_assert(sizeof(PlayerController_ClientStopCameraShakesFromSource) == 0x000010, "Wrong size on PlayerController_ClientStopCameraShakesFromSource"); \ +static_assert(offsetof(PlayerController_ClientStopCameraShakesFromSource, SourceComponent) == 0x000000, "Member 'PlayerController_ClientStopCameraShakesFromSource::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStopCameraShakesFromSource, bImmediately) == 0x000008, "Member 'PlayerController_ClientStopCameraShakesFromSource::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientStopForceFeedback \ +static_assert(alignof(PlayerController_ClientStopForceFeedback) == 0x000008, "Wrong alignment on PlayerController_ClientStopForceFeedback"); \ +static_assert(sizeof(PlayerController_ClientStopForceFeedback) == 0x000010, "Wrong size on PlayerController_ClientStopForceFeedback"); \ +static_assert(offsetof(PlayerController_ClientStopForceFeedback, ForceFeedbackEffect) == 0x000000, "Member 'PlayerController_ClientStopForceFeedback::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientStopForceFeedback, Tag) == 0x000008, "Member 'PlayerController_ClientStopForceFeedback::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientTeamMessage \ +static_assert(alignof(PlayerController_ClientTeamMessage) == 0x000008, "Wrong alignment on PlayerController_ClientTeamMessage"); \ +static_assert(sizeof(PlayerController_ClientTeamMessage) == 0x000028, "Wrong size on PlayerController_ClientTeamMessage"); \ +static_assert(offsetof(PlayerController_ClientTeamMessage, SenderPlayerState) == 0x000000, "Member 'PlayerController_ClientTeamMessage::SenderPlayerState' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTeamMessage, S) == 0x000008, "Member 'PlayerController_ClientTeamMessage::S' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTeamMessage, Type) == 0x000018, "Member 'PlayerController_ClientTeamMessage::Type' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTeamMessage, MsgLifeTime) == 0x000020, "Member 'PlayerController_ClientTeamMessage::MsgLifeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientTravel \ +static_assert(alignof(PlayerController_ClientTravel) == 0x000008, "Wrong alignment on PlayerController_ClientTravel"); \ +static_assert(sizeof(PlayerController_ClientTravel) == 0x000028, "Wrong size on PlayerController_ClientTravel"); \ +static_assert(offsetof(PlayerController_ClientTravel, URL) == 0x000000, "Member 'PlayerController_ClientTravel::URL' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravel, TravelType) == 0x000010, "Member 'PlayerController_ClientTravel::TravelType' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravel, bSeamless) == 0x000011, "Member 'PlayerController_ClientTravel::bSeamless' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravel, MapPackageGuid) == 0x000014, "Member 'PlayerController_ClientTravel::MapPackageGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientTravelInternal \ +static_assert(alignof(PlayerController_ClientTravelInternal) == 0x000008, "Wrong alignment on PlayerController_ClientTravelInternal"); \ +static_assert(sizeof(PlayerController_ClientTravelInternal) == 0x000028, "Wrong size on PlayerController_ClientTravelInternal"); \ +static_assert(offsetof(PlayerController_ClientTravelInternal, URL) == 0x000000, "Member 'PlayerController_ClientTravelInternal::URL' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravelInternal, TravelType) == 0x000010, "Member 'PlayerController_ClientTravelInternal::TravelType' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravelInternal, bSeamless) == 0x000011, "Member 'PlayerController_ClientTravelInternal::bSeamless' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientTravelInternal, MapPackageGuid) == 0x000014, "Member 'PlayerController_ClientTravelInternal::MapPackageGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientUnmutePlayer \ +static_assert(alignof(PlayerController_ClientUnmutePlayer) == 0x000008, "Wrong alignment on PlayerController_ClientUnmutePlayer"); \ +static_assert(sizeof(PlayerController_ClientUnmutePlayer) == 0x000030, "Wrong size on PlayerController_ClientUnmutePlayer"); \ +static_assert(offsetof(PlayerController_ClientUnmutePlayer, PlayerId) == 0x000000, "Member 'PlayerController_ClientUnmutePlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientUnmutePlayers \ +static_assert(alignof(PlayerController_ClientUnmutePlayers) == 0x000008, "Wrong alignment on PlayerController_ClientUnmutePlayers"); \ +static_assert(sizeof(PlayerController_ClientUnmutePlayers) == 0x000010, "Wrong size on PlayerController_ClientUnmutePlayers"); \ +static_assert(offsetof(PlayerController_ClientUnmutePlayers, PlayerIds) == 0x000000, "Member 'PlayerController_ClientUnmutePlayers::PlayerIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientUpdateLevelStreamingStatus \ +static_assert(alignof(PlayerController_ClientUpdateLevelStreamingStatus) == 0x000004, "Wrong alignment on PlayerController_ClientUpdateLevelStreamingStatus"); \ +static_assert(sizeof(PlayerController_ClientUpdateLevelStreamingStatus) == 0x000018, "Wrong size on PlayerController_ClientUpdateLevelStreamingStatus"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, PackageName) == 0x000000, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::PackageName' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, bNewShouldBeLoaded) == 0x000008, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::bNewShouldBeLoaded' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, bNewShouldBeVisible) == 0x000009, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::bNewShouldBeVisible' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, bNewShouldBlockOnLoad) == 0x00000A, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::bNewShouldBlockOnLoad' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, LODIndex) == 0x00000C, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, TransactionId) == 0x000010, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::TransactionId' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ClientUpdateLevelStreamingStatus, bNewShouldBlockOnUnload) == 0x000014, "Member 'PlayerController_ClientUpdateLevelStreamingStatus::bNewShouldBlockOnUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientUpdateMultipleLevelsStreamingStatus \ +static_assert(alignof(PlayerController_ClientUpdateMultipleLevelsStreamingStatus) == 0x000008, "Wrong alignment on PlayerController_ClientUpdateMultipleLevelsStreamingStatus"); \ +static_assert(sizeof(PlayerController_ClientUpdateMultipleLevelsStreamingStatus) == 0x000010, "Wrong size on PlayerController_ClientUpdateMultipleLevelsStreamingStatus"); \ +static_assert(offsetof(PlayerController_ClientUpdateMultipleLevelsStreamingStatus, LevelStatuses) == 0x000000, "Member 'PlayerController_ClientUpdateMultipleLevelsStreamingStatus::LevelStatuses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ClientWasKicked \ +static_assert(alignof(PlayerController_ClientWasKicked) == 0x000008, "Wrong alignment on PlayerController_ClientWasKicked"); \ +static_assert(sizeof(PlayerController_ClientWasKicked) == 0x000018, "Wrong size on PlayerController_ClientWasKicked"); \ +static_assert(offsetof(PlayerController_ClientWasKicked, KickReason) == 0x000000, "Member 'PlayerController_ClientWasKicked::KickReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ConsoleKey \ +static_assert(alignof(PlayerController_ConsoleKey) == 0x000008, "Wrong alignment on PlayerController_ConsoleKey"); \ +static_assert(sizeof(PlayerController_ConsoleKey) == 0x000018, "Wrong size on PlayerController_ConsoleKey"); \ +static_assert(offsetof(PlayerController_ConsoleKey, Key) == 0x000000, "Member 'PlayerController_ConsoleKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_FOV \ +static_assert(alignof(PlayerController_FOV) == 0x000004, "Wrong alignment on PlayerController_FOV"); \ +static_assert(sizeof(PlayerController_FOV) == 0x000004, "Wrong size on PlayerController_FOV"); \ +static_assert(offsetof(PlayerController_FOV, NewFOV) == 0x000000, "Member 'PlayerController_FOV::NewFOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_K2_ClientPlayForceFeedback \ +static_assert(alignof(PlayerController_K2_ClientPlayForceFeedback) == 0x000008, "Wrong alignment on PlayerController_K2_ClientPlayForceFeedback"); \ +static_assert(sizeof(PlayerController_K2_ClientPlayForceFeedback) == 0x000018, "Wrong size on PlayerController_K2_ClientPlayForceFeedback"); \ +static_assert(offsetof(PlayerController_K2_ClientPlayForceFeedback, ForceFeedbackEffect) == 0x000000, "Member 'PlayerController_K2_ClientPlayForceFeedback::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_K2_ClientPlayForceFeedback, Tag) == 0x000008, "Member 'PlayerController_K2_ClientPlayForceFeedback::Tag' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_K2_ClientPlayForceFeedback, bLooping) == 0x000010, "Member 'PlayerController_K2_ClientPlayForceFeedback::bLooping' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_K2_ClientPlayForceFeedback, bIgnoreTimeDilation) == 0x000011, "Member 'PlayerController_K2_ClientPlayForceFeedback::bIgnoreTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_K2_ClientPlayForceFeedback, bPlayWhilePaused) == 0x000012, "Member 'PlayerController_K2_ClientPlayForceFeedback::bPlayWhilePaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_LocalTravel \ +static_assert(alignof(PlayerController_LocalTravel) == 0x000008, "Wrong alignment on PlayerController_LocalTravel"); \ +static_assert(sizeof(PlayerController_LocalTravel) == 0x000010, "Wrong size on PlayerController_LocalTravel"); \ +static_assert(offsetof(PlayerController_LocalTravel, URL) == 0x000000, "Member 'PlayerController_LocalTravel::URL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_OnServerStartedVisualLogger \ +static_assert(alignof(PlayerController_OnServerStartedVisualLogger) == 0x000001, "Wrong alignment on PlayerController_OnServerStartedVisualLogger"); \ +static_assert(sizeof(PlayerController_OnServerStartedVisualLogger) == 0x000001, "Wrong size on PlayerController_OnServerStartedVisualLogger"); \ +static_assert(offsetof(PlayerController_OnServerStartedVisualLogger, bIsLogging) == 0x000000, "Member 'PlayerController_OnServerStartedVisualLogger::bIsLogging' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_PlayDynamicForceFeedback \ +static_assert(alignof(PlayerController_PlayDynamicForceFeedback) == 0x000008, "Wrong alignment on PlayerController_PlayDynamicForceFeedback"); \ +static_assert(sizeof(PlayerController_PlayDynamicForceFeedback) == 0x000028, "Wrong size on PlayerController_PlayDynamicForceFeedback"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, Intensity) == 0x000000, "Member 'PlayerController_PlayDynamicForceFeedback::Intensity' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, Duration) == 0x000004, "Member 'PlayerController_PlayDynamicForceFeedback::Duration' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, bAffectsLeftLarge) == 0x000008, "Member 'PlayerController_PlayDynamicForceFeedback::bAffectsLeftLarge' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, bAffectsLeftSmall) == 0x000009, "Member 'PlayerController_PlayDynamicForceFeedback::bAffectsLeftSmall' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, bAffectsRightLarge) == 0x00000A, "Member 'PlayerController_PlayDynamicForceFeedback::bAffectsRightLarge' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, bAffectsRightSmall) == 0x00000B, "Member 'PlayerController_PlayDynamicForceFeedback::bAffectsRightSmall' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, Action) == 0x00000C, "Member 'PlayerController_PlayDynamicForceFeedback::Action' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayDynamicForceFeedback, LatentInfo) == 0x000010, "Member 'PlayerController_PlayDynamicForceFeedback::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_PlayHapticEffect \ +static_assert(alignof(PlayerController_PlayHapticEffect) == 0x000008, "Wrong alignment on PlayerController_PlayHapticEffect"); \ +static_assert(sizeof(PlayerController_PlayHapticEffect) == 0x000018, "Wrong size on PlayerController_PlayHapticEffect"); \ +static_assert(offsetof(PlayerController_PlayHapticEffect, HapticEffect) == 0x000000, "Member 'PlayerController_PlayHapticEffect::HapticEffect' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayHapticEffect, Hand) == 0x000008, "Member 'PlayerController_PlayHapticEffect::Hand' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayHapticEffect, Scale) == 0x00000C, "Member 'PlayerController_PlayHapticEffect::Scale' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_PlayHapticEffect, bLoop) == 0x000010, "Member 'PlayerController_PlayHapticEffect::bLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SendToConsole \ +static_assert(alignof(PlayerController_SendToConsole) == 0x000008, "Wrong alignment on PlayerController_SendToConsole"); \ +static_assert(sizeof(PlayerController_SendToConsole) == 0x000010, "Wrong size on PlayerController_SendToConsole"); \ +static_assert(offsetof(PlayerController_SendToConsole, Command) == 0x000000, "Member 'PlayerController_SendToConsole::Command' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerAcknowledgePossession \ +static_assert(alignof(PlayerController_ServerAcknowledgePossession) == 0x000008, "Wrong alignment on PlayerController_ServerAcknowledgePossession"); \ +static_assert(sizeof(PlayerController_ServerAcknowledgePossession) == 0x000008, "Wrong size on PlayerController_ServerAcknowledgePossession"); \ +static_assert(offsetof(PlayerController_ServerAcknowledgePossession, P) == 0x000000, "Member 'PlayerController_ServerAcknowledgePossession::P' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerBlockPlayer \ +static_assert(alignof(PlayerController_ServerBlockPlayer) == 0x000008, "Wrong alignment on PlayerController_ServerBlockPlayer"); \ +static_assert(sizeof(PlayerController_ServerBlockPlayer) == 0x000030, "Wrong size on PlayerController_ServerBlockPlayer"); \ +static_assert(offsetof(PlayerController_ServerBlockPlayer, PlayerId) == 0x000000, "Member 'PlayerController_ServerBlockPlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerCamera \ +static_assert(alignof(PlayerController_ServerCamera) == 0x000004, "Wrong alignment on PlayerController_ServerCamera"); \ +static_assert(sizeof(PlayerController_ServerCamera) == 0x000008, "Wrong size on PlayerController_ServerCamera"); \ +static_assert(offsetof(PlayerController_ServerCamera, NewMode) == 0x000000, "Member 'PlayerController_ServerCamera::NewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerChangeName \ +static_assert(alignof(PlayerController_ServerChangeName) == 0x000008, "Wrong alignment on PlayerController_ServerChangeName"); \ +static_assert(sizeof(PlayerController_ServerChangeName) == 0x000010, "Wrong size on PlayerController_ServerChangeName"); \ +static_assert(offsetof(PlayerController_ServerChangeName, S) == 0x000000, "Member 'PlayerController_ServerChangeName::S' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerExec \ +static_assert(alignof(PlayerController_ServerExec) == 0x000008, "Wrong alignment on PlayerController_ServerExec"); \ +static_assert(sizeof(PlayerController_ServerExec) == 0x000010, "Wrong size on PlayerController_ServerExec"); \ +static_assert(offsetof(PlayerController_ServerExec, Msg) == 0x000000, "Member 'PlayerController_ServerExec::Msg' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerExecRPC \ +static_assert(alignof(PlayerController_ServerExecRPC) == 0x000008, "Wrong alignment on PlayerController_ServerExecRPC"); \ +static_assert(sizeof(PlayerController_ServerExecRPC) == 0x000010, "Wrong size on PlayerController_ServerExecRPC"); \ +static_assert(offsetof(PlayerController_ServerExecRPC, Msg) == 0x000000, "Member 'PlayerController_ServerExecRPC::Msg' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerMutePlayer \ +static_assert(alignof(PlayerController_ServerMutePlayer) == 0x000008, "Wrong alignment on PlayerController_ServerMutePlayer"); \ +static_assert(sizeof(PlayerController_ServerMutePlayer) == 0x000030, "Wrong size on PlayerController_ServerMutePlayer"); \ +static_assert(offsetof(PlayerController_ServerMutePlayer, PlayerId) == 0x000000, "Member 'PlayerController_ServerMutePlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerNotifyLoadedWorld \ +static_assert(alignof(PlayerController_ServerNotifyLoadedWorld) == 0x000004, "Wrong alignment on PlayerController_ServerNotifyLoadedWorld"); \ +static_assert(sizeof(PlayerController_ServerNotifyLoadedWorld) == 0x000008, "Wrong size on PlayerController_ServerNotifyLoadedWorld"); \ +static_assert(offsetof(PlayerController_ServerNotifyLoadedWorld, WorldPackageName) == 0x000000, "Member 'PlayerController_ServerNotifyLoadedWorld::WorldPackageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerRecvClientInputFrame \ +static_assert(alignof(PlayerController_ServerRecvClientInputFrame) == 0x000008, "Wrong alignment on PlayerController_ServerRecvClientInputFrame"); \ +static_assert(sizeof(PlayerController_ServerRecvClientInputFrame) == 0x000018, "Wrong size on PlayerController_ServerRecvClientInputFrame"); \ +static_assert(offsetof(PlayerController_ServerRecvClientInputFrame, RecvClientInputFrame) == 0x000000, "Member 'PlayerController_ServerRecvClientInputFrame::RecvClientInputFrame' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ServerRecvClientInputFrame, Data) == 0x000008, "Member 'PlayerController_ServerRecvClientInputFrame::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerSendLatestAsyncPhysicsTimestamp \ +static_assert(alignof(PlayerController_ServerSendLatestAsyncPhysicsTimestamp) == 0x000004, "Wrong alignment on PlayerController_ServerSendLatestAsyncPhysicsTimestamp"); \ +static_assert(sizeof(PlayerController_ServerSendLatestAsyncPhysicsTimestamp) == 0x000008, "Wrong size on PlayerController_ServerSendLatestAsyncPhysicsTimestamp"); \ +static_assert(offsetof(PlayerController_ServerSendLatestAsyncPhysicsTimestamp, Timestamp) == 0x000000, "Member 'PlayerController_ServerSendLatestAsyncPhysicsTimestamp::Timestamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerSetSpectatorLocation \ +static_assert(alignof(PlayerController_ServerSetSpectatorLocation) == 0x000008, "Wrong alignment on PlayerController_ServerSetSpectatorLocation"); \ +static_assert(sizeof(PlayerController_ServerSetSpectatorLocation) == 0x000030, "Wrong size on PlayerController_ServerSetSpectatorLocation"); \ +static_assert(offsetof(PlayerController_ServerSetSpectatorLocation, NewLoc) == 0x000000, "Member 'PlayerController_ServerSetSpectatorLocation::NewLoc' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ServerSetSpectatorLocation, NewRot) == 0x000018, "Member 'PlayerController_ServerSetSpectatorLocation::NewRot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerSetSpectatorWaiting \ +static_assert(alignof(PlayerController_ServerSetSpectatorWaiting) == 0x000001, "Wrong alignment on PlayerController_ServerSetSpectatorWaiting"); \ +static_assert(sizeof(PlayerController_ServerSetSpectatorWaiting) == 0x000001, "Wrong size on PlayerController_ServerSetSpectatorWaiting"); \ +static_assert(offsetof(PlayerController_ServerSetSpectatorWaiting, bWaiting) == 0x000000, "Member 'PlayerController_ServerSetSpectatorWaiting::bWaiting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerUnblockPlayer \ +static_assert(alignof(PlayerController_ServerUnblockPlayer) == 0x000008, "Wrong alignment on PlayerController_ServerUnblockPlayer"); \ +static_assert(sizeof(PlayerController_ServerUnblockPlayer) == 0x000030, "Wrong size on PlayerController_ServerUnblockPlayer"); \ +static_assert(offsetof(PlayerController_ServerUnblockPlayer, PlayerId) == 0x000000, "Member 'PlayerController_ServerUnblockPlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerUnmutePlayer \ +static_assert(alignof(PlayerController_ServerUnmutePlayer) == 0x000008, "Wrong alignment on PlayerController_ServerUnmutePlayer"); \ +static_assert(sizeof(PlayerController_ServerUnmutePlayer) == 0x000030, "Wrong size on PlayerController_ServerUnmutePlayer"); \ +static_assert(offsetof(PlayerController_ServerUnmutePlayer, PlayerId) == 0x000000, "Member 'PlayerController_ServerUnmutePlayer::PlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerUpdateCamera \ +static_assert(alignof(PlayerController_ServerUpdateCamera) == 0x000008, "Wrong alignment on PlayerController_ServerUpdateCamera"); \ +static_assert(sizeof(PlayerController_ServerUpdateCamera) == 0x000020, "Wrong size on PlayerController_ServerUpdateCamera"); \ +static_assert(offsetof(PlayerController_ServerUpdateCamera, CamLoc) == 0x000000, "Member 'PlayerController_ServerUpdateCamera::CamLoc' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ServerUpdateCamera, CamPitchAndYaw) == 0x000018, "Member 'PlayerController_ServerUpdateCamera::CamPitchAndYaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerUpdateLevelVisibility \ +static_assert(alignof(PlayerController_ServerUpdateLevelVisibility) == 0x000004, "Wrong alignment on PlayerController_ServerUpdateLevelVisibility"); \ +static_assert(sizeof(PlayerController_ServerUpdateLevelVisibility) == 0x000018, "Wrong size on PlayerController_ServerUpdateLevelVisibility"); \ +static_assert(offsetof(PlayerController_ServerUpdateLevelVisibility, LevelVisibility) == 0x000000, "Member 'PlayerController_ServerUpdateLevelVisibility::LevelVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerUpdateMultipleLevelsVisibility \ +static_assert(alignof(PlayerController_ServerUpdateMultipleLevelsVisibility) == 0x000008, "Wrong alignment on PlayerController_ServerUpdateMultipleLevelsVisibility"); \ +static_assert(sizeof(PlayerController_ServerUpdateMultipleLevelsVisibility) == 0x000010, "Wrong size on PlayerController_ServerUpdateMultipleLevelsVisibility"); \ +static_assert(offsetof(PlayerController_ServerUpdateMultipleLevelsVisibility, LevelVisibilities) == 0x000000, "Member 'PlayerController_ServerUpdateMultipleLevelsVisibility::LevelVisibilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ServerViewSelf \ +static_assert(alignof(PlayerController_ServerViewSelf) == 0x000004, "Wrong alignment on PlayerController_ServerViewSelf"); \ +static_assert(sizeof(PlayerController_ServerViewSelf) == 0x000010, "Wrong size on PlayerController_ServerViewSelf"); \ +static_assert(offsetof(PlayerController_ServerViewSelf, TransitionParams) == 0x000000, "Member 'PlayerController_ServerViewSelf::TransitionParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetAudioListenerAttenuationOverride \ +static_assert(alignof(PlayerController_SetAudioListenerAttenuationOverride) == 0x000008, "Wrong alignment on PlayerController_SetAudioListenerAttenuationOverride"); \ +static_assert(sizeof(PlayerController_SetAudioListenerAttenuationOverride) == 0x000020, "Wrong size on PlayerController_SetAudioListenerAttenuationOverride"); \ +static_assert(offsetof(PlayerController_SetAudioListenerAttenuationOverride, AttachToComponent) == 0x000000, "Member 'PlayerController_SetAudioListenerAttenuationOverride::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetAudioListenerAttenuationOverride, AttenuationLocationOVerride) == 0x000008, "Member 'PlayerController_SetAudioListenerAttenuationOverride::AttenuationLocationOVerride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetAudioListenerOverride \ +static_assert(alignof(PlayerController_SetAudioListenerOverride) == 0x000008, "Wrong alignment on PlayerController_SetAudioListenerOverride"); \ +static_assert(sizeof(PlayerController_SetAudioListenerOverride) == 0x000038, "Wrong size on PlayerController_SetAudioListenerOverride"); \ +static_assert(offsetof(PlayerController_SetAudioListenerOverride, AttachToComponent) == 0x000000, "Member 'PlayerController_SetAudioListenerOverride::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetAudioListenerOverride, Location) == 0x000008, "Member 'PlayerController_SetAudioListenerOverride::Location' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetAudioListenerOverride, Rotation) == 0x000020, "Member 'PlayerController_SetAudioListenerOverride::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetCinematicMode \ +static_assert(alignof(PlayerController_SetCinematicMode) == 0x000001, "Wrong alignment on PlayerController_SetCinematicMode"); \ +static_assert(sizeof(PlayerController_SetCinematicMode) == 0x000005, "Wrong size on PlayerController_SetCinematicMode"); \ +static_assert(offsetof(PlayerController_SetCinematicMode, bInCinematicMode) == 0x000000, "Member 'PlayerController_SetCinematicMode::bInCinematicMode' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetCinematicMode, bHidePlayer) == 0x000001, "Member 'PlayerController_SetCinematicMode::bHidePlayer' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetCinematicMode, bAffectsHUD) == 0x000002, "Member 'PlayerController_SetCinematicMode::bAffectsHUD' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetCinematicMode, bAffectsMovement) == 0x000003, "Member 'PlayerController_SetCinematicMode::bAffectsMovement' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetCinematicMode, bAffectsTurning) == 0x000004, "Member 'PlayerController_SetCinematicMode::bAffectsTurning' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetControllerLightColor \ +static_assert(alignof(PlayerController_SetControllerLightColor) == 0x000004, "Wrong alignment on PlayerController_SetControllerLightColor"); \ +static_assert(sizeof(PlayerController_SetControllerLightColor) == 0x000004, "Wrong size on PlayerController_SetControllerLightColor"); \ +static_assert(offsetof(PlayerController_SetControllerLightColor, Color) == 0x000000, "Member 'PlayerController_SetControllerLightColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetDeprecatedInputPitchScale \ +static_assert(alignof(PlayerController_SetDeprecatedInputPitchScale) == 0x000004, "Wrong alignment on PlayerController_SetDeprecatedInputPitchScale"); \ +static_assert(sizeof(PlayerController_SetDeprecatedInputPitchScale) == 0x000004, "Wrong size on PlayerController_SetDeprecatedInputPitchScale"); \ +static_assert(offsetof(PlayerController_SetDeprecatedInputPitchScale, NewValue) == 0x000000, "Member 'PlayerController_SetDeprecatedInputPitchScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetDeprecatedInputRollScale \ +static_assert(alignof(PlayerController_SetDeprecatedInputRollScale) == 0x000004, "Wrong alignment on PlayerController_SetDeprecatedInputRollScale"); \ +static_assert(sizeof(PlayerController_SetDeprecatedInputRollScale) == 0x000004, "Wrong size on PlayerController_SetDeprecatedInputRollScale"); \ +static_assert(offsetof(PlayerController_SetDeprecatedInputRollScale, NewValue) == 0x000000, "Member 'PlayerController_SetDeprecatedInputRollScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetDeprecatedInputYawScale \ +static_assert(alignof(PlayerController_SetDeprecatedInputYawScale) == 0x000004, "Wrong alignment on PlayerController_SetDeprecatedInputYawScale"); \ +static_assert(sizeof(PlayerController_SetDeprecatedInputYawScale) == 0x000004, "Wrong size on PlayerController_SetDeprecatedInputYawScale"); \ +static_assert(offsetof(PlayerController_SetDeprecatedInputYawScale, NewValue) == 0x000000, "Member 'PlayerController_SetDeprecatedInputYawScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetDisableHaptics \ +static_assert(alignof(PlayerController_SetDisableHaptics) == 0x000001, "Wrong alignment on PlayerController_SetDisableHaptics"); \ +static_assert(sizeof(PlayerController_SetDisableHaptics) == 0x000001, "Wrong size on PlayerController_SetDisableHaptics"); \ +static_assert(offsetof(PlayerController_SetDisableHaptics, bNewDisabled) == 0x000000, "Member 'PlayerController_SetDisableHaptics::bNewDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetHapticsByValue \ +static_assert(alignof(PlayerController_SetHapticsByValue) == 0x000004, "Wrong alignment on PlayerController_SetHapticsByValue"); \ +static_assert(sizeof(PlayerController_SetHapticsByValue) == 0x00000C, "Wrong size on PlayerController_SetHapticsByValue"); \ +static_assert(offsetof(PlayerController_SetHapticsByValue, Frequency) == 0x000000, "Member 'PlayerController_SetHapticsByValue::Frequency' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetHapticsByValue, Amplitude) == 0x000004, "Member 'PlayerController_SetHapticsByValue::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetHapticsByValue, Hand) == 0x000008, "Member 'PlayerController_SetHapticsByValue::Hand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetMotionControlsEnabled \ +static_assert(alignof(PlayerController_SetMotionControlsEnabled) == 0x000001, "Wrong alignment on PlayerController_SetMotionControlsEnabled"); \ +static_assert(sizeof(PlayerController_SetMotionControlsEnabled) == 0x000001, "Wrong size on PlayerController_SetMotionControlsEnabled"); \ +static_assert(offsetof(PlayerController_SetMotionControlsEnabled, bEnabled) == 0x000000, "Member 'PlayerController_SetMotionControlsEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetMouseCursorWidget \ +static_assert(alignof(PlayerController_SetMouseCursorWidget) == 0x000008, "Wrong alignment on PlayerController_SetMouseCursorWidget"); \ +static_assert(sizeof(PlayerController_SetMouseCursorWidget) == 0x000010, "Wrong size on PlayerController_SetMouseCursorWidget"); \ +static_assert(offsetof(PlayerController_SetMouseCursorWidget, Cursor) == 0x000000, "Member 'PlayerController_SetMouseCursorWidget::Cursor' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetMouseCursorWidget, CursorWidget) == 0x000008, "Member 'PlayerController_SetMouseCursorWidget::CursorWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetMouseLocation \ +static_assert(alignof(PlayerController_SetMouseLocation) == 0x000004, "Wrong alignment on PlayerController_SetMouseLocation"); \ +static_assert(sizeof(PlayerController_SetMouseLocation) == 0x000008, "Wrong size on PlayerController_SetMouseLocation"); \ +static_assert(offsetof(PlayerController_SetMouseLocation, X) == 0x000000, "Member 'PlayerController_SetMouseLocation::X' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetMouseLocation, Y) == 0x000004, "Member 'PlayerController_SetMouseLocation::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetName \ +static_assert(alignof(PlayerController_SetName) == 0x000008, "Wrong alignment on PlayerController_SetName"); \ +static_assert(sizeof(PlayerController_SetName) == 0x000010, "Wrong size on PlayerController_SetName"); \ +static_assert(offsetof(PlayerController_SetName, S) == 0x000000, "Member 'PlayerController_SetName::S' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetViewTargetWithBlend \ +static_assert(alignof(PlayerController_SetViewTargetWithBlend) == 0x000008, "Wrong alignment on PlayerController_SetViewTargetWithBlend"); \ +static_assert(sizeof(PlayerController_SetViewTargetWithBlend) == 0x000018, "Wrong size on PlayerController_SetViewTargetWithBlend"); \ +static_assert(offsetof(PlayerController_SetViewTargetWithBlend, NewViewTarget) == 0x000000, "Member 'PlayerController_SetViewTargetWithBlend::NewViewTarget' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetViewTargetWithBlend, BlendTime) == 0x000008, "Member 'PlayerController_SetViewTargetWithBlend::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetViewTargetWithBlend, BlendFunc) == 0x00000C, "Member 'PlayerController_SetViewTargetWithBlend::BlendFunc' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetViewTargetWithBlend, BlendExp) == 0x000010, "Member 'PlayerController_SetViewTargetWithBlend::BlendExp' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_SetViewTargetWithBlend, bLockOutgoing) == 0x000014, "Member 'PlayerController_SetViewTargetWithBlend::bLockOutgoing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SetVirtualJoystickVisibility \ +static_assert(alignof(PlayerController_SetVirtualJoystickVisibility) == 0x000001, "Wrong alignment on PlayerController_SetVirtualJoystickVisibility"); \ +static_assert(sizeof(PlayerController_SetVirtualJoystickVisibility) == 0x000001, "Wrong size on PlayerController_SetVirtualJoystickVisibility"); \ +static_assert(offsetof(PlayerController_SetVirtualJoystickVisibility, bVisible) == 0x000000, "Member 'PlayerController_SetVirtualJoystickVisibility::bVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_StartFire \ +static_assert(alignof(PlayerController_StartFire) == 0x000001, "Wrong alignment on PlayerController_StartFire"); \ +static_assert(sizeof(PlayerController_StartFire) == 0x000001, "Wrong size on PlayerController_StartFire"); \ +static_assert(offsetof(PlayerController_StartFire, FireModeNum) == 0x000000, "Member 'PlayerController_StartFire::FireModeNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_StopHapticEffect \ +static_assert(alignof(PlayerController_StopHapticEffect) == 0x000001, "Wrong alignment on PlayerController_StopHapticEffect"); \ +static_assert(sizeof(PlayerController_StopHapticEffect) == 0x000001, "Wrong size on PlayerController_StopHapticEffect"); \ +static_assert(offsetof(PlayerController_StopHapticEffect, Hand) == 0x000000, "Member 'PlayerController_StopHapticEffect::Hand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_SwitchLevel \ +static_assert(alignof(PlayerController_SwitchLevel) == 0x000008, "Wrong alignment on PlayerController_SwitchLevel"); \ +static_assert(sizeof(PlayerController_SwitchLevel) == 0x000010, "Wrong size on PlayerController_SwitchLevel"); \ +static_assert(offsetof(PlayerController_SwitchLevel, URL) == 0x000000, "Member 'PlayerController_SwitchLevel::URL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_TestServerLevelVisibilityChange \ +static_assert(alignof(PlayerController_TestServerLevelVisibilityChange) == 0x000004, "Wrong alignment on PlayerController_TestServerLevelVisibilityChange"); \ +static_assert(sizeof(PlayerController_TestServerLevelVisibilityChange) == 0x000010, "Wrong size on PlayerController_TestServerLevelVisibilityChange"); \ +static_assert(offsetof(PlayerController_TestServerLevelVisibilityChange, PackageName) == 0x000000, "Member 'PlayerController_TestServerLevelVisibilityChange::PackageName' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_TestServerLevelVisibilityChange, Filename) == 0x000008, "Member 'PlayerController_TestServerLevelVisibilityChange::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ToggleSpeaking \ +static_assert(alignof(PlayerController_ToggleSpeaking) == 0x000001, "Wrong alignment on PlayerController_ToggleSpeaking"); \ +static_assert(sizeof(PlayerController_ToggleSpeaking) == 0x000001, "Wrong size on PlayerController_ToggleSpeaking"); \ +static_assert(offsetof(PlayerController_ToggleSpeaking, bInSpeaking) == 0x000000, "Member 'PlayerController_ToggleSpeaking::bInSpeaking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_DeprojectMousePositionToWorld \ +static_assert(alignof(PlayerController_DeprojectMousePositionToWorld) == 0x000008, "Wrong alignment on PlayerController_DeprojectMousePositionToWorld"); \ +static_assert(sizeof(PlayerController_DeprojectMousePositionToWorld) == 0x000038, "Wrong size on PlayerController_DeprojectMousePositionToWorld"); \ +static_assert(offsetof(PlayerController_DeprojectMousePositionToWorld, WorldLocation) == 0x000000, "Member 'PlayerController_DeprojectMousePositionToWorld::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectMousePositionToWorld, WorldDirection) == 0x000018, "Member 'PlayerController_DeprojectMousePositionToWorld::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectMousePositionToWorld, ReturnValue) == 0x000030, "Member 'PlayerController_DeprojectMousePositionToWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_DeprojectScreenPositionToWorld \ +static_assert(alignof(PlayerController_DeprojectScreenPositionToWorld) == 0x000008, "Wrong alignment on PlayerController_DeprojectScreenPositionToWorld"); \ +static_assert(sizeof(PlayerController_DeprojectScreenPositionToWorld) == 0x000040, "Wrong size on PlayerController_DeprojectScreenPositionToWorld"); \ +static_assert(offsetof(PlayerController_DeprojectScreenPositionToWorld, ScreenX) == 0x000000, "Member 'PlayerController_DeprojectScreenPositionToWorld::ScreenX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectScreenPositionToWorld, ScreenY) == 0x000004, "Member 'PlayerController_DeprojectScreenPositionToWorld::ScreenY' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectScreenPositionToWorld, WorldLocation) == 0x000008, "Member 'PlayerController_DeprojectScreenPositionToWorld::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectScreenPositionToWorld, WorldDirection) == 0x000020, "Member 'PlayerController_DeprojectScreenPositionToWorld::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_DeprojectScreenPositionToWorld, ReturnValue) == 0x000038, "Member 'PlayerController_DeprojectScreenPositionToWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetAsyncPhysicsDataToConsume \ +static_assert(alignof(PlayerController_GetAsyncPhysicsDataToConsume) == 0x000008, "Wrong alignment on PlayerController_GetAsyncPhysicsDataToConsume"); \ +static_assert(sizeof(PlayerController_GetAsyncPhysicsDataToConsume) == 0x000008, "Wrong size on PlayerController_GetAsyncPhysicsDataToConsume"); \ +static_assert(offsetof(PlayerController_GetAsyncPhysicsDataToConsume, ReturnValue) == 0x000000, "Member 'PlayerController_GetAsyncPhysicsDataToConsume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetAsyncPhysicsDataToWrite \ +static_assert(alignof(PlayerController_GetAsyncPhysicsDataToWrite) == 0x000008, "Wrong alignment on PlayerController_GetAsyncPhysicsDataToWrite"); \ +static_assert(sizeof(PlayerController_GetAsyncPhysicsDataToWrite) == 0x000008, "Wrong size on PlayerController_GetAsyncPhysicsDataToWrite"); \ +static_assert(offsetof(PlayerController_GetAsyncPhysicsDataToWrite, ReturnValue) == 0x000000, "Member 'PlayerController_GetAsyncPhysicsDataToWrite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetDeprecatedInputPitchScale \ +static_assert(alignof(PlayerController_GetDeprecatedInputPitchScale) == 0x000004, "Wrong alignment on PlayerController_GetDeprecatedInputPitchScale"); \ +static_assert(sizeof(PlayerController_GetDeprecatedInputPitchScale) == 0x000004, "Wrong size on PlayerController_GetDeprecatedInputPitchScale"); \ +static_assert(offsetof(PlayerController_GetDeprecatedInputPitchScale, ReturnValue) == 0x000000, "Member 'PlayerController_GetDeprecatedInputPitchScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetDeprecatedInputRollScale \ +static_assert(alignof(PlayerController_GetDeprecatedInputRollScale) == 0x000004, "Wrong alignment on PlayerController_GetDeprecatedInputRollScale"); \ +static_assert(sizeof(PlayerController_GetDeprecatedInputRollScale) == 0x000004, "Wrong size on PlayerController_GetDeprecatedInputRollScale"); \ +static_assert(offsetof(PlayerController_GetDeprecatedInputRollScale, ReturnValue) == 0x000000, "Member 'PlayerController_GetDeprecatedInputRollScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetDeprecatedInputYawScale \ +static_assert(alignof(PlayerController_GetDeprecatedInputYawScale) == 0x000004, "Wrong alignment on PlayerController_GetDeprecatedInputYawScale"); \ +static_assert(sizeof(PlayerController_GetDeprecatedInputYawScale) == 0x000004, "Wrong size on PlayerController_GetDeprecatedInputYawScale"); \ +static_assert(offsetof(PlayerController_GetDeprecatedInputYawScale, ReturnValue) == 0x000000, "Member 'PlayerController_GetDeprecatedInputYawScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetFocalLocation \ +static_assert(alignof(PlayerController_GetFocalLocation) == 0x000008, "Wrong alignment on PlayerController_GetFocalLocation"); \ +static_assert(sizeof(PlayerController_GetFocalLocation) == 0x000018, "Wrong size on PlayerController_GetFocalLocation"); \ +static_assert(offsetof(PlayerController_GetFocalLocation, ReturnValue) == 0x000000, "Member 'PlayerController_GetFocalLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderCursor \ +static_assert(alignof(PlayerController_GetHitResultUnderCursor) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderCursor"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderCursor) == 0x0000F8, "Wrong size on PlayerController_GetHitResultUnderCursor"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursor, TraceChannel) == 0x000000, "Member 'PlayerController_GetHitResultUnderCursor::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursor, bTraceComplex) == 0x000001, "Member 'PlayerController_GetHitResultUnderCursor::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursor, HitResult) == 0x000008, "Member 'PlayerController_GetHitResultUnderCursor::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursor, ReturnValue) == 0x0000F0, "Member 'PlayerController_GetHitResultUnderCursor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderCursorByChannel \ +static_assert(alignof(PlayerController_GetHitResultUnderCursorByChannel) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderCursorByChannel"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderCursorByChannel) == 0x0000F8, "Wrong size on PlayerController_GetHitResultUnderCursorByChannel"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorByChannel, TraceChannel) == 0x000000, "Member 'PlayerController_GetHitResultUnderCursorByChannel::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorByChannel, bTraceComplex) == 0x000001, "Member 'PlayerController_GetHitResultUnderCursorByChannel::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorByChannel, HitResult) == 0x000008, "Member 'PlayerController_GetHitResultUnderCursorByChannel::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorByChannel, ReturnValue) == 0x0000F0, "Member 'PlayerController_GetHitResultUnderCursorByChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderCursorForObjects \ +static_assert(alignof(PlayerController_GetHitResultUnderCursorForObjects) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderCursorForObjects"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderCursorForObjects) == 0x000108, "Wrong size on PlayerController_GetHitResultUnderCursorForObjects"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorForObjects, ObjectTypes) == 0x000000, "Member 'PlayerController_GetHitResultUnderCursorForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorForObjects, bTraceComplex) == 0x000010, "Member 'PlayerController_GetHitResultUnderCursorForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorForObjects, HitResult) == 0x000018, "Member 'PlayerController_GetHitResultUnderCursorForObjects::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderCursorForObjects, ReturnValue) == 0x000100, "Member 'PlayerController_GetHitResultUnderCursorForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderFinger \ +static_assert(alignof(PlayerController_GetHitResultUnderFinger) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderFinger"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderFinger) == 0x0000F8, "Wrong size on PlayerController_GetHitResultUnderFinger"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFinger, FingerIndex) == 0x000000, "Member 'PlayerController_GetHitResultUnderFinger::FingerIndex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFinger, TraceChannel) == 0x000001, "Member 'PlayerController_GetHitResultUnderFinger::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFinger, bTraceComplex) == 0x000002, "Member 'PlayerController_GetHitResultUnderFinger::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFinger, HitResult) == 0x000008, "Member 'PlayerController_GetHitResultUnderFinger::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFinger, ReturnValue) == 0x0000F0, "Member 'PlayerController_GetHitResultUnderFinger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderFingerByChannel \ +static_assert(alignof(PlayerController_GetHitResultUnderFingerByChannel) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderFingerByChannel"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderFingerByChannel) == 0x0000F8, "Wrong size on PlayerController_GetHitResultUnderFingerByChannel"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerByChannel, FingerIndex) == 0x000000, "Member 'PlayerController_GetHitResultUnderFingerByChannel::FingerIndex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerByChannel, TraceChannel) == 0x000001, "Member 'PlayerController_GetHitResultUnderFingerByChannel::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerByChannel, bTraceComplex) == 0x000002, "Member 'PlayerController_GetHitResultUnderFingerByChannel::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerByChannel, HitResult) == 0x000008, "Member 'PlayerController_GetHitResultUnderFingerByChannel::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerByChannel, ReturnValue) == 0x0000F0, "Member 'PlayerController_GetHitResultUnderFingerByChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHitResultUnderFingerForObjects \ +static_assert(alignof(PlayerController_GetHitResultUnderFingerForObjects) == 0x000008, "Wrong alignment on PlayerController_GetHitResultUnderFingerForObjects"); \ +static_assert(sizeof(PlayerController_GetHitResultUnderFingerForObjects) == 0x000110, "Wrong size on PlayerController_GetHitResultUnderFingerForObjects"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerForObjects, FingerIndex) == 0x000000, "Member 'PlayerController_GetHitResultUnderFingerForObjects::FingerIndex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerForObjects, ObjectTypes) == 0x000008, "Member 'PlayerController_GetHitResultUnderFingerForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerForObjects, bTraceComplex) == 0x000018, "Member 'PlayerController_GetHitResultUnderFingerForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerForObjects, HitResult) == 0x000020, "Member 'PlayerController_GetHitResultUnderFingerForObjects::HitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetHitResultUnderFingerForObjects, ReturnValue) == 0x000108, "Member 'PlayerController_GetHitResultUnderFingerForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetHUD \ +static_assert(alignof(PlayerController_GetHUD) == 0x000008, "Wrong alignment on PlayerController_GetHUD"); \ +static_assert(sizeof(PlayerController_GetHUD) == 0x000008, "Wrong size on PlayerController_GetHUD"); \ +static_assert(offsetof(PlayerController_GetHUD, ReturnValue) == 0x000000, "Member 'PlayerController_GetHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputAnalogKeyState \ +static_assert(alignof(PlayerController_GetInputAnalogKeyState) == 0x000008, "Wrong alignment on PlayerController_GetInputAnalogKeyState"); \ +static_assert(sizeof(PlayerController_GetInputAnalogKeyState) == 0x000020, "Wrong size on PlayerController_GetInputAnalogKeyState"); \ +static_assert(offsetof(PlayerController_GetInputAnalogKeyState, Key) == 0x000000, "Member 'PlayerController_GetInputAnalogKeyState::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputAnalogKeyState, ReturnValue) == 0x000018, "Member 'PlayerController_GetInputAnalogKeyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputAnalogStickState \ +static_assert(alignof(PlayerController_GetInputAnalogStickState) == 0x000004, "Wrong alignment on PlayerController_GetInputAnalogStickState"); \ +static_assert(sizeof(PlayerController_GetInputAnalogStickState) == 0x00000C, "Wrong size on PlayerController_GetInputAnalogStickState"); \ +static_assert(offsetof(PlayerController_GetInputAnalogStickState, WhichStick) == 0x000000, "Member 'PlayerController_GetInputAnalogStickState::WhichStick' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputAnalogStickState, StickX) == 0x000004, "Member 'PlayerController_GetInputAnalogStickState::StickX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputAnalogStickState, StickY) == 0x000008, "Member 'PlayerController_GetInputAnalogStickState::StickY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputKeyTimeDown \ +static_assert(alignof(PlayerController_GetInputKeyTimeDown) == 0x000008, "Wrong alignment on PlayerController_GetInputKeyTimeDown"); \ +static_assert(sizeof(PlayerController_GetInputKeyTimeDown) == 0x000020, "Wrong size on PlayerController_GetInputKeyTimeDown"); \ +static_assert(offsetof(PlayerController_GetInputKeyTimeDown, Key) == 0x000000, "Member 'PlayerController_GetInputKeyTimeDown::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputKeyTimeDown, ReturnValue) == 0x000018, "Member 'PlayerController_GetInputKeyTimeDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputMotionState \ +static_assert(alignof(PlayerController_GetInputMotionState) == 0x000008, "Wrong alignment on PlayerController_GetInputMotionState"); \ +static_assert(sizeof(PlayerController_GetInputMotionState) == 0x000060, "Wrong size on PlayerController_GetInputMotionState"); \ +static_assert(offsetof(PlayerController_GetInputMotionState, Tilt) == 0x000000, "Member 'PlayerController_GetInputMotionState::Tilt' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputMotionState, RotationRate) == 0x000018, "Member 'PlayerController_GetInputMotionState::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputMotionState, Gravity) == 0x000030, "Member 'PlayerController_GetInputMotionState::Gravity' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputMotionState, Acceleration) == 0x000048, "Member 'PlayerController_GetInputMotionState::Acceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputMouseDelta \ +static_assert(alignof(PlayerController_GetInputMouseDelta) == 0x000004, "Wrong alignment on PlayerController_GetInputMouseDelta"); \ +static_assert(sizeof(PlayerController_GetInputMouseDelta) == 0x000008, "Wrong size on PlayerController_GetInputMouseDelta"); \ +static_assert(offsetof(PlayerController_GetInputMouseDelta, DeltaX) == 0x000000, "Member 'PlayerController_GetInputMouseDelta::DeltaX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputMouseDelta, DeltaY) == 0x000004, "Member 'PlayerController_GetInputMouseDelta::DeltaY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputTouchState \ +static_assert(alignof(PlayerController_GetInputTouchState) == 0x000004, "Wrong alignment on PlayerController_GetInputTouchState"); \ +static_assert(sizeof(PlayerController_GetInputTouchState) == 0x000010, "Wrong size on PlayerController_GetInputTouchState"); \ +static_assert(offsetof(PlayerController_GetInputTouchState, FingerIndex) == 0x000000, "Member 'PlayerController_GetInputTouchState::FingerIndex' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputTouchState, LocationX) == 0x000004, "Member 'PlayerController_GetInputTouchState::LocationX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputTouchState, LocationY) == 0x000008, "Member 'PlayerController_GetInputTouchState::LocationY' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputTouchState, bIsCurrentlyPressed) == 0x00000C, "Member 'PlayerController_GetInputTouchState::bIsCurrentlyPressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetInputVectorKeyState \ +static_assert(alignof(PlayerController_GetInputVectorKeyState) == 0x000008, "Wrong alignment on PlayerController_GetInputVectorKeyState"); \ +static_assert(sizeof(PlayerController_GetInputVectorKeyState) == 0x000030, "Wrong size on PlayerController_GetInputVectorKeyState"); \ +static_assert(offsetof(PlayerController_GetInputVectorKeyState, Key) == 0x000000, "Member 'PlayerController_GetInputVectorKeyState::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetInputVectorKeyState, ReturnValue) == 0x000018, "Member 'PlayerController_GetInputVectorKeyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetMousePosition \ +static_assert(alignof(PlayerController_GetMousePosition) == 0x000004, "Wrong alignment on PlayerController_GetMousePosition"); \ +static_assert(sizeof(PlayerController_GetMousePosition) == 0x00000C, "Wrong size on PlayerController_GetMousePosition"); \ +static_assert(offsetof(PlayerController_GetMousePosition, LocationX) == 0x000000, "Member 'PlayerController_GetMousePosition::LocationX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetMousePosition, LocationY) == 0x000004, "Member 'PlayerController_GetMousePosition::LocationY' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetMousePosition, ReturnValue) == 0x000008, "Member 'PlayerController_GetMousePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetOverridePlayerInputClass \ +static_assert(alignof(PlayerController_GetOverridePlayerInputClass) == 0x000008, "Wrong alignment on PlayerController_GetOverridePlayerInputClass"); \ +static_assert(sizeof(PlayerController_GetOverridePlayerInputClass) == 0x000008, "Wrong size on PlayerController_GetOverridePlayerInputClass"); \ +static_assert(offsetof(PlayerController_GetOverridePlayerInputClass, ReturnValue) == 0x000000, "Member 'PlayerController_GetOverridePlayerInputClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetPlatformUserId \ +static_assert(alignof(PlayerController_GetPlatformUserId) == 0x000004, "Wrong alignment on PlayerController_GetPlatformUserId"); \ +static_assert(sizeof(PlayerController_GetPlatformUserId) == 0x000004, "Wrong size on PlayerController_GetPlatformUserId"); \ +static_assert(offsetof(PlayerController_GetPlatformUserId, ReturnValue) == 0x000000, "Member 'PlayerController_GetPlatformUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetSpectatorPawn \ +static_assert(alignof(PlayerController_GetSpectatorPawn) == 0x000008, "Wrong alignment on PlayerController_GetSpectatorPawn"); \ +static_assert(sizeof(PlayerController_GetSpectatorPawn) == 0x000008, "Wrong size on PlayerController_GetSpectatorPawn"); \ +static_assert(offsetof(PlayerController_GetSpectatorPawn, ReturnValue) == 0x000000, "Member 'PlayerController_GetSpectatorPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetStreamingSourceLocationAndRotation \ +static_assert(alignof(PlayerController_GetStreamingSourceLocationAndRotation) == 0x000008, "Wrong alignment on PlayerController_GetStreamingSourceLocationAndRotation"); \ +static_assert(sizeof(PlayerController_GetStreamingSourceLocationAndRotation) == 0x000030, "Wrong size on PlayerController_GetStreamingSourceLocationAndRotation"); \ +static_assert(offsetof(PlayerController_GetStreamingSourceLocationAndRotation, OutLocation) == 0x000000, "Member 'PlayerController_GetStreamingSourceLocationAndRotation::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetStreamingSourceLocationAndRotation, OutRotation) == 0x000018, "Member 'PlayerController_GetStreamingSourceLocationAndRotation::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetStreamingSourcePriority \ +static_assert(alignof(PlayerController_GetStreamingSourcePriority) == 0x000001, "Wrong alignment on PlayerController_GetStreamingSourcePriority"); \ +static_assert(sizeof(PlayerController_GetStreamingSourcePriority) == 0x000001, "Wrong size on PlayerController_GetStreamingSourcePriority"); \ +static_assert(offsetof(PlayerController_GetStreamingSourcePriority, ReturnValue) == 0x000000, "Member 'PlayerController_GetStreamingSourcePriority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetStreamingSourceShapes \ +static_assert(alignof(PlayerController_GetStreamingSourceShapes) == 0x000008, "Wrong alignment on PlayerController_GetStreamingSourceShapes"); \ +static_assert(sizeof(PlayerController_GetStreamingSourceShapes) == 0x000010, "Wrong size on PlayerController_GetStreamingSourceShapes"); \ +static_assert(offsetof(PlayerController_GetStreamingSourceShapes, OutShapes) == 0x000000, "Member 'PlayerController_GetStreamingSourceShapes::OutShapes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_GetViewportSize \ +static_assert(alignof(PlayerController_GetViewportSize) == 0x000004, "Wrong alignment on PlayerController_GetViewportSize"); \ +static_assert(sizeof(PlayerController_GetViewportSize) == 0x000008, "Wrong size on PlayerController_GetViewportSize"); \ +static_assert(offsetof(PlayerController_GetViewportSize, SizeX) == 0x000000, "Member 'PlayerController_GetViewportSize::SizeX' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_GetViewportSize, SizeY) == 0x000004, "Member 'PlayerController_GetViewportSize::SizeY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_IsInputKeyDown \ +static_assert(alignof(PlayerController_IsInputKeyDown) == 0x000008, "Wrong alignment on PlayerController_IsInputKeyDown"); \ +static_assert(sizeof(PlayerController_IsInputKeyDown) == 0x000020, "Wrong size on PlayerController_IsInputKeyDown"); \ +static_assert(offsetof(PlayerController_IsInputKeyDown, Key) == 0x000000, "Member 'PlayerController_IsInputKeyDown::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_IsInputKeyDown, ReturnValue) == 0x000018, "Member 'PlayerController_IsInputKeyDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_IsStreamingSourceEnabled \ +static_assert(alignof(PlayerController_IsStreamingSourceEnabled) == 0x000001, "Wrong alignment on PlayerController_IsStreamingSourceEnabled"); \ +static_assert(sizeof(PlayerController_IsStreamingSourceEnabled) == 0x000001, "Wrong size on PlayerController_IsStreamingSourceEnabled"); \ +static_assert(offsetof(PlayerController_IsStreamingSourceEnabled, ReturnValue) == 0x000000, "Member 'PlayerController_IsStreamingSourceEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_ProjectWorldLocationToScreen \ +static_assert(alignof(PlayerController_ProjectWorldLocationToScreen) == 0x000008, "Wrong alignment on PlayerController_ProjectWorldLocationToScreen"); \ +static_assert(sizeof(PlayerController_ProjectWorldLocationToScreen) == 0x000030, "Wrong size on PlayerController_ProjectWorldLocationToScreen"); \ +static_assert(offsetof(PlayerController_ProjectWorldLocationToScreen, WorldLocation) == 0x000000, "Member 'PlayerController_ProjectWorldLocationToScreen::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ProjectWorldLocationToScreen, ScreenLocation) == 0x000018, "Member 'PlayerController_ProjectWorldLocationToScreen::ScreenLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ProjectWorldLocationToScreen, bPlayerViewportRelative) == 0x000028, "Member 'PlayerController_ProjectWorldLocationToScreen::bPlayerViewportRelative' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_ProjectWorldLocationToScreen, ReturnValue) == 0x000029, "Member 'PlayerController_ProjectWorldLocationToScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_StreamingSourceShouldActivate \ +static_assert(alignof(PlayerController_StreamingSourceShouldActivate) == 0x000001, "Wrong alignment on PlayerController_StreamingSourceShouldActivate"); \ +static_assert(sizeof(PlayerController_StreamingSourceShouldActivate) == 0x000001, "Wrong size on PlayerController_StreamingSourceShouldActivate"); \ +static_assert(offsetof(PlayerController_StreamingSourceShouldActivate, ReturnValue) == 0x000000, "Member 'PlayerController_StreamingSourceShouldActivate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_StreamingSourceShouldBlockOnSlowStreaming \ +static_assert(alignof(PlayerController_StreamingSourceShouldBlockOnSlowStreaming) == 0x000001, "Wrong alignment on PlayerController_StreamingSourceShouldBlockOnSlowStreaming"); \ +static_assert(sizeof(PlayerController_StreamingSourceShouldBlockOnSlowStreaming) == 0x000001, "Wrong size on PlayerController_StreamingSourceShouldBlockOnSlowStreaming"); \ +static_assert(offsetof(PlayerController_StreamingSourceShouldBlockOnSlowStreaming, ReturnValue) == 0x000000, "Member 'PlayerController_StreamingSourceShouldBlockOnSlowStreaming::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_WasInputKeyJustPressed \ +static_assert(alignof(PlayerController_WasInputKeyJustPressed) == 0x000008, "Wrong alignment on PlayerController_WasInputKeyJustPressed"); \ +static_assert(sizeof(PlayerController_WasInputKeyJustPressed) == 0x000020, "Wrong size on PlayerController_WasInputKeyJustPressed"); \ +static_assert(offsetof(PlayerController_WasInputKeyJustPressed, Key) == 0x000000, "Member 'PlayerController_WasInputKeyJustPressed::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_WasInputKeyJustPressed, ReturnValue) == 0x000018, "Member 'PlayerController_WasInputKeyJustPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerController_WasInputKeyJustReleased \ +static_assert(alignof(PlayerController_WasInputKeyJustReleased) == 0x000008, "Wrong alignment on PlayerController_WasInputKeyJustReleased"); \ +static_assert(sizeof(PlayerController_WasInputKeyJustReleased) == 0x000020, "Wrong size on PlayerController_WasInputKeyJustReleased"); \ +static_assert(offsetof(PlayerController_WasInputKeyJustReleased, Key) == 0x000000, "Member 'PlayerController_WasInputKeyJustReleased::Key' has a wrong offset!"); \ +static_assert(offsetof(PlayerController_WasInputKeyJustReleased, ReturnValue) == 0x000018, "Member 'PlayerController_WasInputKeyJustReleased::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlayerController \ +static_assert(alignof(APlayerController) == 0x000008, "Wrong alignment on APlayerController"); \ +static_assert(sizeof(APlayerController) == 0x000858, "Wrong size on APlayerController"); \ +static_assert(offsetof(APlayerController, Player) == 0x000338, "Member 'APlayerController::Player' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, AcknowledgedPawn) == 0x000340, "Member 'APlayerController::AcknowledgedPawn' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, MyHUD) == 0x000348, "Member 'APlayerController::MyHUD' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, PlayerCameraManager) == 0x000350, "Member 'APlayerController::PlayerCameraManager' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, PlayerCameraManagerClass) == 0x000358, "Member 'APlayerController::PlayerCameraManagerClass' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, bAutoManageActiveCameraTarget) == 0x000360, "Member 'APlayerController::bAutoManageActiveCameraTarget' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, TargetViewRotation) == 0x000368, "Member 'APlayerController::TargetViewRotation' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, SmoothTargetViewRotationSpeed) == 0x000398, "Member 'APlayerController::SmoothTargetViewRotationSpeed' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, HiddenActors) == 0x0003A0, "Member 'APlayerController::HiddenActors' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, HiddenPrimitiveComponents) == 0x0003B0, "Member 'APlayerController::HiddenPrimitiveComponents' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, LastSpectatorStateSynchTime) == 0x0003C4, "Member 'APlayerController::LastSpectatorStateSynchTime' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, LastSpectatorSyncLocation) == 0x0003C8, "Member 'APlayerController::LastSpectatorSyncLocation' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, LastSpectatorSyncRotation) == 0x0003E0, "Member 'APlayerController::LastSpectatorSyncRotation' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, ClientCap) == 0x0003F8, "Member 'APlayerController::ClientCap' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, CheatManager) == 0x000400, "Member 'APlayerController::CheatManager' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, CheatClass) == 0x000408, "Member 'APlayerController::CheatClass' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, PlayerInput) == 0x000410, "Member 'APlayerController::PlayerInput' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, ActiveForceFeedbackEffects) == 0x000418, "Member 'APlayerController::ActiveForceFeedbackEffects' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, AsyncPhysicsDataClass) == 0x000428, "Member 'APlayerController::AsyncPhysicsDataClass' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, AsyncPhysicsDataComponent_DEPRECARED) == 0x000430, "Member 'APlayerController::AsyncPhysicsDataComponent_DEPRECARED' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, NetPlayerIndex) == 0x0004BC, "Member 'APlayerController::NetPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, PendingSwapConnection) == 0x000518, "Member 'APlayerController::PendingSwapConnection' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, NetConnection) == 0x000520, "Member 'APlayerController::NetConnection' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, InputYawScale) == 0x000540, "Member 'APlayerController::InputYawScale' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, InputPitchScale) == 0x000544, "Member 'APlayerController::InputPitchScale' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, InputRollScale) == 0x000548, "Member 'APlayerController::InputRollScale' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, StreamingSourcePriority) == 0x000550, "Member 'APlayerController::StreamingSourcePriority' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, StreamingSourceDebugColor) == 0x000554, "Member 'APlayerController::StreamingSourceDebugColor' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, StreamingSourceShapes) == 0x000558, "Member 'APlayerController::StreamingSourceShapes' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, ForceFeedbackScale) == 0x000568, "Member 'APlayerController::ForceFeedbackScale' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, ClickEventKeys) == 0x000570, "Member 'APlayerController::ClickEventKeys' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, DefaultMouseCursor) == 0x000580, "Member 'APlayerController::DefaultMouseCursor' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, CurrentMouseCursor) == 0x000581, "Member 'APlayerController::CurrentMouseCursor' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, DefaultClickTraceChannel) == 0x000582, "Member 'APlayerController::DefaultClickTraceChannel' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, CurrentClickTraceChannel) == 0x000583, "Member 'APlayerController::CurrentClickTraceChannel' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, HitResultTraceDistance) == 0x000584, "Member 'APlayerController::HitResultTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, SeamlessTravelCount) == 0x000588, "Member 'APlayerController::SeamlessTravelCount' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, LastCompletedSeamlessTravelCount) == 0x00058A, "Member 'APlayerController::LastCompletedSeamlessTravelCount' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, InactiveStateInputComponent) == 0x000610, "Member 'APlayerController::InactiveStateInputComponent' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, CurrentTouchInterface) == 0x000630, "Member 'APlayerController::CurrentTouchInterface' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, OverridePlayerInputClass) == 0x000638, "Member 'APlayerController::OverridePlayerInputClass' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, SpectatorPawn) == 0x0006B8, "Member 'APlayerController::SpectatorPawn' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, bIsLocalPlayerController) == 0x0006C4, "Member 'APlayerController::bIsLocalPlayerController' has a wrong offset!"); \ +static_assert(offsetof(APlayerController, SpawnLocation) == 0x0006C8, "Member 'APlayerController::SpawnLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialFunctionCall \ +static_assert(alignof(UMaterialExpressionMaterialFunctionCall) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialFunctionCall"); \ +static_assert(sizeof(UMaterialExpressionMaterialFunctionCall) == 0x0000E8, "Wrong size on UMaterialExpressionMaterialFunctionCall"); \ +static_assert(offsetof(UMaterialExpressionMaterialFunctionCall, MaterialFunction) == 0x0000B0, "Member 'UMaterialExpressionMaterialFunctionCall::MaterialFunction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialFunctionCall, FunctionInputs) == 0x0000B8, "Member 'UMaterialExpressionMaterialFunctionCall::FunctionInputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialFunctionCall, FunctionOutputs) == 0x0000C8, "Member 'UMaterialExpressionMaterialFunctionCall::FunctionOutputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialFunctionCall, FunctionParameterInfo) == 0x0000D8, "Member 'UMaterialExpressionMaterialFunctionCall::FunctionParameterInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionHLODSourceActorsFromCell \ +static_assert(alignof(UWorldPartitionHLODSourceActorsFromCell) == 0x000008, "Wrong alignment on UWorldPartitionHLODSourceActorsFromCell"); \ +static_assert(sizeof(UWorldPartitionHLODSourceActorsFromCell) == 0x000028, "Wrong size on UWorldPartitionHLODSourceActorsFromCell"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionHLODSourceActorsFromLevel \ +static_assert(alignof(UWorldPartitionHLODSourceActorsFromLevel) == 0x000008, "Wrong alignment on UWorldPartitionHLODSourceActorsFromLevel"); \ +static_assert(sizeof(UWorldPartitionHLODSourceActorsFromLevel) == 0x000028, "Wrong size on UWorldPartitionHLODSourceActorsFromLevel"); \ + +#define DUMPER7_ASSERTS_UContentBundleDuplicateForPIEHelper \ +static_assert(alignof(UContentBundleDuplicateForPIEHelper) == 0x000008, "Wrong alignment on UContentBundleDuplicateForPIEHelper"); \ +static_assert(sizeof(UContentBundleDuplicateForPIEHelper) == 0x000028, "Wrong size on UContentBundleDuplicateForPIEHelper"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFresnel \ +static_assert(alignof(UMaterialExpressionFresnel) == 0x000008, "Wrong alignment on UMaterialExpressionFresnel"); \ +static_assert(sizeof(UMaterialExpressionFresnel) == 0x000138, "Wrong size on UMaterialExpressionFresnel"); \ +static_assert(offsetof(UMaterialExpressionFresnel, ExponentIn) == 0x0000B0, "Member 'UMaterialExpressionFresnel::ExponentIn' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFresnel, Exponent) == 0x0000D8, "Member 'UMaterialExpressionFresnel::Exponent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFresnel, BaseReflectFractionIn) == 0x0000E0, "Member 'UMaterialExpressionFresnel::BaseReflectFractionIn' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFresnel, BaseReflectFraction) == 0x000108, "Member 'UMaterialExpressionFresnel::BaseReflectFraction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFresnel, Normal) == 0x000110, "Member 'UMaterialExpressionFresnel::Normal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHLODTemplatedInstancedStaticMeshComponent \ +static_assert(alignof(UHLODTemplatedInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UHLODTemplatedInstancedStaticMeshComponent"); \ +static_assert(sizeof(UHLODTemplatedInstancedStaticMeshComponent) == 0x000780, "Wrong size on UHLODTemplatedInstancedStaticMeshComponent"); \ +static_assert(offsetof(UHLODTemplatedInstancedStaticMeshComponent, TemplateActorClass) == 0x000770, "Member 'UHLODTemplatedInstancedStaticMeshComponent::TemplateActorClass' has a wrong offset!"); \ +static_assert(offsetof(UHLODTemplatedInstancedStaticMeshComponent, TemplateComponentName) == 0x000778, "Member 'UHLODTemplatedInstancedStaticMeshComponent::TemplateComponentName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BillboardComponent_SetOpacityMaskRefVal \ +static_assert(alignof(BillboardComponent_SetOpacityMaskRefVal) == 0x000004, "Wrong alignment on BillboardComponent_SetOpacityMaskRefVal"); \ +static_assert(sizeof(BillboardComponent_SetOpacityMaskRefVal) == 0x000004, "Wrong size on BillboardComponent_SetOpacityMaskRefVal"); \ +static_assert(offsetof(BillboardComponent_SetOpacityMaskRefVal, RefVal) == 0x000000, "Member 'BillboardComponent_SetOpacityMaskRefVal::RefVal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BillboardComponent_SetSprite \ +static_assert(alignof(BillboardComponent_SetSprite) == 0x000008, "Wrong alignment on BillboardComponent_SetSprite"); \ +static_assert(sizeof(BillboardComponent_SetSprite) == 0x000008, "Wrong size on BillboardComponent_SetSprite"); \ +static_assert(offsetof(BillboardComponent_SetSprite, NewSprite) == 0x000000, "Member 'BillboardComponent_SetSprite::NewSprite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BillboardComponent_SetSpriteAndUV \ +static_assert(alignof(BillboardComponent_SetSpriteAndUV) == 0x000008, "Wrong alignment on BillboardComponent_SetSpriteAndUV"); \ +static_assert(sizeof(BillboardComponent_SetSpriteAndUV) == 0x000018, "Wrong size on BillboardComponent_SetSpriteAndUV"); \ +static_assert(offsetof(BillboardComponent_SetSpriteAndUV, NewSprite) == 0x000000, "Member 'BillboardComponent_SetSpriteAndUV::NewSprite' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetSpriteAndUV, NewU) == 0x000008, "Member 'BillboardComponent_SetSpriteAndUV::NewU' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetSpriteAndUV, NewUL) == 0x00000C, "Member 'BillboardComponent_SetSpriteAndUV::NewUL' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetSpriteAndUV, NewV) == 0x000010, "Member 'BillboardComponent_SetSpriteAndUV::NewV' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetSpriteAndUV, NewVL) == 0x000014, "Member 'BillboardComponent_SetSpriteAndUV::NewVL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BillboardComponent_SetUV \ +static_assert(alignof(BillboardComponent_SetUV) == 0x000004, "Wrong alignment on BillboardComponent_SetUV"); \ +static_assert(sizeof(BillboardComponent_SetUV) == 0x000010, "Wrong size on BillboardComponent_SetUV"); \ +static_assert(offsetof(BillboardComponent_SetUV, NewU) == 0x000000, "Member 'BillboardComponent_SetUV::NewU' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetUV, NewUL) == 0x000004, "Member 'BillboardComponent_SetUV::NewUL' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetUV, NewV) == 0x000008, "Member 'BillboardComponent_SetUV::NewV' has a wrong offset!"); \ +static_assert(offsetof(BillboardComponent_SetUV, NewVL) == 0x00000C, "Member 'BillboardComponent_SetUV::NewVL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBillboardComponent \ +static_assert(alignof(UBillboardComponent) == 0x000010, "Wrong alignment on UBillboardComponent"); \ +static_assert(sizeof(UBillboardComponent) == 0x0005A0, "Wrong size on UBillboardComponent"); \ +static_assert(offsetof(UBillboardComponent, Sprite) == 0x000570, "Member 'UBillboardComponent::Sprite' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, ScreenSize) == 0x00057C, "Member 'UBillboardComponent::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, U) == 0x000580, "Member 'UBillboardComponent::U' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, UL) == 0x000584, "Member 'UBillboardComponent::UL' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, V) == 0x000588, "Member 'UBillboardComponent::V' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, VL) == 0x00058C, "Member 'UBillboardComponent::VL' has a wrong offset!"); \ +static_assert(offsetof(UBillboardComponent, OpacityMaskRefVal) == 0x000590, "Member 'UBillboardComponent::OpacityMaskRefVal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_AddAttribute \ +static_assert(alignof(AnimationDataController_AddAttribute) == 0x000008, "Wrong alignment on AnimationDataController_AddAttribute"); \ +static_assert(sizeof(AnimationDataController_AddAttribute) == 0x000048, "Wrong size on AnimationDataController_AddAttribute"); \ +static_assert(offsetof(AnimationDataController_AddAttribute, AttributeIdentifier) == 0x000000, "Member 'AnimationDataController_AddAttribute::AttributeIdentifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddAttribute, bShouldTransact) == 0x000040, "Member 'AnimationDataController_AddAttribute::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddAttribute, ReturnValue) == 0x000041, "Member 'AnimationDataController_AddAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_AddBoneCurve \ +static_assert(alignof(AnimationDataController_AddBoneCurve) == 0x000004, "Wrong alignment on AnimationDataController_AddBoneCurve"); \ +static_assert(sizeof(AnimationDataController_AddBoneCurve) == 0x00000C, "Wrong size on AnimationDataController_AddBoneCurve"); \ +static_assert(offsetof(AnimationDataController_AddBoneCurve, BoneName) == 0x000000, "Member 'AnimationDataController_AddBoneCurve::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddBoneCurve, bShouldTransact) == 0x000008, "Member 'AnimationDataController_AddBoneCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddBoneCurve, ReturnValue) == 0x000009, "Member 'AnimationDataController_AddBoneCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_AddBoneTrack \ +static_assert(alignof(AnimationDataController_AddBoneTrack) == 0x000004, "Wrong alignment on AnimationDataController_AddBoneTrack"); \ +static_assert(sizeof(AnimationDataController_AddBoneTrack) == 0x000010, "Wrong size on AnimationDataController_AddBoneTrack"); \ +static_assert(offsetof(AnimationDataController_AddBoneTrack, BoneName) == 0x000000, "Member 'AnimationDataController_AddBoneTrack::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddBoneTrack, bShouldTransact) == 0x000008, "Member 'AnimationDataController_AddBoneTrack::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddBoneTrack, ReturnValue) == 0x00000C, "Member 'AnimationDataController_AddBoneTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_AddCurve \ +static_assert(alignof(AnimationDataController_AddCurve) == 0x000004, "Wrong alignment on AnimationDataController_AddCurve"); \ +static_assert(sizeof(AnimationDataController_AddCurve) == 0x000014, "Wrong size on AnimationDataController_AddCurve"); \ +static_assert(offsetof(AnimationDataController_AddCurve, CurveId) == 0x000000, "Member 'AnimationDataController_AddCurve::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddCurve, CurveFlags) == 0x00000C, "Member 'AnimationDataController_AddCurve::CurveFlags' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddCurve, bShouldTransact) == 0x000010, "Member 'AnimationDataController_AddCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_AddCurve, ReturnValue) == 0x000011, "Member 'AnimationDataController_AddCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_CloseBracket \ +static_assert(alignof(AnimationDataController_CloseBracket) == 0x000001, "Wrong alignment on AnimationDataController_CloseBracket"); \ +static_assert(sizeof(AnimationDataController_CloseBracket) == 0x000001, "Wrong size on AnimationDataController_CloseBracket"); \ +static_assert(offsetof(AnimationDataController_CloseBracket, bShouldTransact) == 0x000000, "Member 'AnimationDataController_CloseBracket::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_DuplicateAttribute \ +static_assert(alignof(AnimationDataController_DuplicateAttribute) == 0x000008, "Wrong alignment on AnimationDataController_DuplicateAttribute"); \ +static_assert(sizeof(AnimationDataController_DuplicateAttribute) == 0x000088, "Wrong size on AnimationDataController_DuplicateAttribute"); \ +static_assert(offsetof(AnimationDataController_DuplicateAttribute, AttributeIdentifier) == 0x000000, "Member 'AnimationDataController_DuplicateAttribute::AttributeIdentifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateAttribute, NewAttributeIdentifier) == 0x000040, "Member 'AnimationDataController_DuplicateAttribute::NewAttributeIdentifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateAttribute, bShouldTransact) == 0x000080, "Member 'AnimationDataController_DuplicateAttribute::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateAttribute, ReturnValue) == 0x000081, "Member 'AnimationDataController_DuplicateAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_DuplicateCurve \ +static_assert(alignof(AnimationDataController_DuplicateCurve) == 0x000004, "Wrong alignment on AnimationDataController_DuplicateCurve"); \ +static_assert(sizeof(AnimationDataController_DuplicateCurve) == 0x00001C, "Wrong size on AnimationDataController_DuplicateCurve"); \ +static_assert(offsetof(AnimationDataController_DuplicateCurve, CopyCurveId) == 0x000000, "Member 'AnimationDataController_DuplicateCurve::CopyCurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateCurve, NewCurveId) == 0x00000C, "Member 'AnimationDataController_DuplicateCurve::NewCurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateCurve, bShouldTransact) == 0x000018, "Member 'AnimationDataController_DuplicateCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_DuplicateCurve, ReturnValue) == 0x000019, "Member 'AnimationDataController_DuplicateCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_FindOrAddCurveNamesOnSkeleton \ +static_assert(alignof(AnimationDataController_FindOrAddCurveNamesOnSkeleton) == 0x000008, "Wrong alignment on AnimationDataController_FindOrAddCurveNamesOnSkeleton"); \ +static_assert(sizeof(AnimationDataController_FindOrAddCurveNamesOnSkeleton) == 0x000010, "Wrong size on AnimationDataController_FindOrAddCurveNamesOnSkeleton"); \ +static_assert(offsetof(AnimationDataController_FindOrAddCurveNamesOnSkeleton, Skeleton) == 0x000000, "Member 'AnimationDataController_FindOrAddCurveNamesOnSkeleton::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_FindOrAddCurveNamesOnSkeleton, SupportedCurveType) == 0x000008, "Member 'AnimationDataController_FindOrAddCurveNamesOnSkeleton::SupportedCurveType' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_FindOrAddCurveNamesOnSkeleton, bShouldTransact) == 0x000009, "Member 'AnimationDataController_FindOrAddCurveNamesOnSkeleton::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_InsertBoneTrack \ +static_assert(alignof(AnimationDataController_InsertBoneTrack) == 0x000004, "Wrong alignment on AnimationDataController_InsertBoneTrack"); \ +static_assert(sizeof(AnimationDataController_InsertBoneTrack) == 0x000014, "Wrong size on AnimationDataController_InsertBoneTrack"); \ +static_assert(offsetof(AnimationDataController_InsertBoneTrack, BoneName) == 0x000000, "Member 'AnimationDataController_InsertBoneTrack::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_InsertBoneTrack, DesiredIndex) == 0x000008, "Member 'AnimationDataController_InsertBoneTrack::DesiredIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_InsertBoneTrack, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_InsertBoneTrack::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_InsertBoneTrack, ReturnValue) == 0x000010, "Member 'AnimationDataController_InsertBoneTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_OpenBracket \ +static_assert(alignof(AnimationDataController_OpenBracket) == 0x000008, "Wrong alignment on AnimationDataController_OpenBracket"); \ +static_assert(sizeof(AnimationDataController_OpenBracket) == 0x000020, "Wrong size on AnimationDataController_OpenBracket"); \ +static_assert(offsetof(AnimationDataController_OpenBracket, InTitle) == 0x000000, "Member 'AnimationDataController_OpenBracket::InTitle' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_OpenBracket, bShouldTransact) == 0x000018, "Member 'AnimationDataController_OpenBracket::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAllAttributes \ +static_assert(alignof(AnimationDataController_RemoveAllAttributes) == 0x000004, "Wrong alignment on AnimationDataController_RemoveAllAttributes"); \ +static_assert(sizeof(AnimationDataController_RemoveAllAttributes) == 0x000008, "Wrong size on AnimationDataController_RemoveAllAttributes"); \ +static_assert(offsetof(AnimationDataController_RemoveAllAttributes, bShouldTransact) == 0x000000, "Member 'AnimationDataController_RemoveAllAttributes::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAllAttributes, ReturnValue) == 0x000004, "Member 'AnimationDataController_RemoveAllAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAllAttributesForBone \ +static_assert(alignof(AnimationDataController_RemoveAllAttributesForBone) == 0x000004, "Wrong alignment on AnimationDataController_RemoveAllAttributesForBone"); \ +static_assert(sizeof(AnimationDataController_RemoveAllAttributesForBone) == 0x000010, "Wrong size on AnimationDataController_RemoveAllAttributesForBone"); \ +static_assert(offsetof(AnimationDataController_RemoveAllAttributesForBone, BoneName) == 0x000000, "Member 'AnimationDataController_RemoveAllAttributesForBone::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAllAttributesForBone, bShouldTransact) == 0x000008, "Member 'AnimationDataController_RemoveAllAttributesForBone::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAllAttributesForBone, ReturnValue) == 0x00000C, "Member 'AnimationDataController_RemoveAllAttributesForBone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAllBoneTracks \ +static_assert(alignof(AnimationDataController_RemoveAllBoneTracks) == 0x000001, "Wrong alignment on AnimationDataController_RemoveAllBoneTracks"); \ +static_assert(sizeof(AnimationDataController_RemoveAllBoneTracks) == 0x000001, "Wrong size on AnimationDataController_RemoveAllBoneTracks"); \ +static_assert(offsetof(AnimationDataController_RemoveAllBoneTracks, bShouldTransact) == 0x000000, "Member 'AnimationDataController_RemoveAllBoneTracks::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAllCurvesOfType \ +static_assert(alignof(AnimationDataController_RemoveAllCurvesOfType) == 0x000001, "Wrong alignment on AnimationDataController_RemoveAllCurvesOfType"); \ +static_assert(sizeof(AnimationDataController_RemoveAllCurvesOfType) == 0x000002, "Wrong size on AnimationDataController_RemoveAllCurvesOfType"); \ +static_assert(offsetof(AnimationDataController_RemoveAllCurvesOfType, SupportedCurveType) == 0x000000, "Member 'AnimationDataController_RemoveAllCurvesOfType::SupportedCurveType' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAllCurvesOfType, bShouldTransact) == 0x000001, "Member 'AnimationDataController_RemoveAllCurvesOfType::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAttribute \ +static_assert(alignof(AnimationDataController_RemoveAttribute) == 0x000008, "Wrong alignment on AnimationDataController_RemoveAttribute"); \ +static_assert(sizeof(AnimationDataController_RemoveAttribute) == 0x000048, "Wrong size on AnimationDataController_RemoveAttribute"); \ +static_assert(offsetof(AnimationDataController_RemoveAttribute, AttributeIdentifier) == 0x000000, "Member 'AnimationDataController_RemoveAttribute::AttributeIdentifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAttribute, bShouldTransact) == 0x000040, "Member 'AnimationDataController_RemoveAttribute::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAttribute, ReturnValue) == 0x000041, "Member 'AnimationDataController_RemoveAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveAttributeKey \ +static_assert(alignof(AnimationDataController_RemoveAttributeKey) == 0x000008, "Wrong alignment on AnimationDataController_RemoveAttributeKey"); \ +static_assert(sizeof(AnimationDataController_RemoveAttributeKey) == 0x000048, "Wrong size on AnimationDataController_RemoveAttributeKey"); \ +static_assert(offsetof(AnimationDataController_RemoveAttributeKey, AttributeIdentifier) == 0x000000, "Member 'AnimationDataController_RemoveAttributeKey::AttributeIdentifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAttributeKey, Time) == 0x000040, "Member 'AnimationDataController_RemoveAttributeKey::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAttributeKey, bShouldTransact) == 0x000044, "Member 'AnimationDataController_RemoveAttributeKey::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveAttributeKey, ReturnValue) == 0x000045, "Member 'AnimationDataController_RemoveAttributeKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveBoneTrack \ +static_assert(alignof(AnimationDataController_RemoveBoneTrack) == 0x000004, "Wrong alignment on AnimationDataController_RemoveBoneTrack"); \ +static_assert(sizeof(AnimationDataController_RemoveBoneTrack) == 0x00000C, "Wrong size on AnimationDataController_RemoveBoneTrack"); \ +static_assert(offsetof(AnimationDataController_RemoveBoneTrack, BoneName) == 0x000000, "Member 'AnimationDataController_RemoveBoneTrack::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveBoneTrack, bShouldTransact) == 0x000008, "Member 'AnimationDataController_RemoveBoneTrack::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveBoneTrack, ReturnValue) == 0x000009, "Member 'AnimationDataController_RemoveBoneTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveCurve \ +static_assert(alignof(AnimationDataController_RemoveCurve) == 0x000004, "Wrong alignment on AnimationDataController_RemoveCurve"); \ +static_assert(sizeof(AnimationDataController_RemoveCurve) == 0x000010, "Wrong size on AnimationDataController_RemoveCurve"); \ +static_assert(offsetof(AnimationDataController_RemoveCurve, CurveId) == 0x000000, "Member 'AnimationDataController_RemoveCurve::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveCurve, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_RemoveCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveCurve, ReturnValue) == 0x00000D, "Member 'AnimationDataController_RemoveCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveCurveKey \ +static_assert(alignof(AnimationDataController_RemoveCurveKey) == 0x000004, "Wrong alignment on AnimationDataController_RemoveCurveKey"); \ +static_assert(sizeof(AnimationDataController_RemoveCurveKey) == 0x000014, "Wrong size on AnimationDataController_RemoveCurveKey"); \ +static_assert(offsetof(AnimationDataController_RemoveCurveKey, CurveId) == 0x000000, "Member 'AnimationDataController_RemoveCurveKey::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveCurveKey, Time) == 0x00000C, "Member 'AnimationDataController_RemoveCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveCurveKey, bShouldTransact) == 0x000010, "Member 'AnimationDataController_RemoveCurveKey::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveCurveKey, ReturnValue) == 0x000011, "Member 'AnimationDataController_RemoveCurveKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RemoveTransformCurveKey \ +static_assert(alignof(AnimationDataController_RemoveTransformCurveKey) == 0x000004, "Wrong alignment on AnimationDataController_RemoveTransformCurveKey"); \ +static_assert(sizeof(AnimationDataController_RemoveTransformCurveKey) == 0x000014, "Wrong size on AnimationDataController_RemoveTransformCurveKey"); \ +static_assert(offsetof(AnimationDataController_RemoveTransformCurveKey, CurveId) == 0x000000, "Member 'AnimationDataController_RemoveTransformCurveKey::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveTransformCurveKey, Time) == 0x00000C, "Member 'AnimationDataController_RemoveTransformCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveTransformCurveKey, bShouldTransact) == 0x000010, "Member 'AnimationDataController_RemoveTransformCurveKey::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RemoveTransformCurveKey, ReturnValue) == 0x000011, "Member 'AnimationDataController_RemoveTransformCurveKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_RenameCurve \ +static_assert(alignof(AnimationDataController_RenameCurve) == 0x000004, "Wrong alignment on AnimationDataController_RenameCurve"); \ +static_assert(sizeof(AnimationDataController_RenameCurve) == 0x00001C, "Wrong size on AnimationDataController_RenameCurve"); \ +static_assert(offsetof(AnimationDataController_RenameCurve, CurveToRenameId) == 0x000000, "Member 'AnimationDataController_RenameCurve::CurveToRenameId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RenameCurve, NewCurveId) == 0x00000C, "Member 'AnimationDataController_RenameCurve::NewCurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RenameCurve, bShouldTransact) == 0x000018, "Member 'AnimationDataController_RenameCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_RenameCurve, ReturnValue) == 0x000019, "Member 'AnimationDataController_RenameCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_Resize \ +static_assert(alignof(AnimationDataController_Resize) == 0x000004, "Wrong alignment on AnimationDataController_Resize"); \ +static_assert(sizeof(AnimationDataController_Resize) == 0x000010, "Wrong size on AnimationDataController_Resize"); \ +static_assert(offsetof(AnimationDataController_Resize, Length) == 0x000000, "Member 'AnimationDataController_Resize::Length' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_Resize, T0) == 0x000004, "Member 'AnimationDataController_Resize::T0' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_Resize, T1) == 0x000008, "Member 'AnimationDataController_Resize::T1' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_Resize, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_Resize::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_ResizeInFrames \ +static_assert(alignof(AnimationDataController_ResizeInFrames) == 0x000004, "Wrong alignment on AnimationDataController_ResizeInFrames"); \ +static_assert(sizeof(AnimationDataController_ResizeInFrames) == 0x000010, "Wrong size on AnimationDataController_ResizeInFrames"); \ +static_assert(offsetof(AnimationDataController_ResizeInFrames, NewLengthInFrames) == 0x000000, "Member 'AnimationDataController_ResizeInFrames::NewLengthInFrames' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeInFrames, T0) == 0x000004, "Member 'AnimationDataController_ResizeInFrames::T0' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeInFrames, T1) == 0x000008, "Member 'AnimationDataController_ResizeInFrames::T1' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeInFrames, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_ResizeInFrames::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_ResizeNumberOfFrames \ +static_assert(alignof(AnimationDataController_ResizeNumberOfFrames) == 0x000004, "Wrong alignment on AnimationDataController_ResizeNumberOfFrames"); \ +static_assert(sizeof(AnimationDataController_ResizeNumberOfFrames) == 0x000010, "Wrong size on AnimationDataController_ResizeNumberOfFrames"); \ +static_assert(offsetof(AnimationDataController_ResizeNumberOfFrames, NewLengthInFrames) == 0x000000, "Member 'AnimationDataController_ResizeNumberOfFrames::NewLengthInFrames' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeNumberOfFrames, T0) == 0x000004, "Member 'AnimationDataController_ResizeNumberOfFrames::T0' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeNumberOfFrames, T1) == 0x000008, "Member 'AnimationDataController_ResizeNumberOfFrames::T1' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizeNumberOfFrames, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_ResizeNumberOfFrames::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_ResizePlayLength \ +static_assert(alignof(AnimationDataController_ResizePlayLength) == 0x000004, "Wrong alignment on AnimationDataController_ResizePlayLength"); \ +static_assert(sizeof(AnimationDataController_ResizePlayLength) == 0x000010, "Wrong size on AnimationDataController_ResizePlayLength"); \ +static_assert(offsetof(AnimationDataController_ResizePlayLength, NewLength) == 0x000000, "Member 'AnimationDataController_ResizePlayLength::NewLength' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizePlayLength, T0) == 0x000004, "Member 'AnimationDataController_ResizePlayLength::T0' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizePlayLength, T1) == 0x000008, "Member 'AnimationDataController_ResizePlayLength::T1' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ResizePlayLength, bShouldTransact) == 0x00000C, "Member 'AnimationDataController_ResizePlayLength::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_ScaleCurve \ +static_assert(alignof(AnimationDataController_ScaleCurve) == 0x000004, "Wrong alignment on AnimationDataController_ScaleCurve"); \ +static_assert(sizeof(AnimationDataController_ScaleCurve) == 0x000018, "Wrong size on AnimationDataController_ScaleCurve"); \ +static_assert(offsetof(AnimationDataController_ScaleCurve, CurveId) == 0x000000, "Member 'AnimationDataController_ScaleCurve::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ScaleCurve, Origin) == 0x00000C, "Member 'AnimationDataController_ScaleCurve::Origin' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ScaleCurve, Factor) == 0x000010, "Member 'AnimationDataController_ScaleCurve::Factor' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ScaleCurve, bShouldTransact) == 0x000014, "Member 'AnimationDataController_ScaleCurve::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_ScaleCurve, ReturnValue) == 0x000015, "Member 'AnimationDataController_ScaleCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetBoneTrackKeys \ +static_assert(alignof(AnimationDataController_SetBoneTrackKeys) == 0x000008, "Wrong alignment on AnimationDataController_SetBoneTrackKeys"); \ +static_assert(sizeof(AnimationDataController_SetBoneTrackKeys) == 0x000040, "Wrong size on AnimationDataController_SetBoneTrackKeys"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, BoneName) == 0x000000, "Member 'AnimationDataController_SetBoneTrackKeys::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, PositionalKeys) == 0x000008, "Member 'AnimationDataController_SetBoneTrackKeys::PositionalKeys' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, RotationalKeys) == 0x000018, "Member 'AnimationDataController_SetBoneTrackKeys::RotationalKeys' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, ScalingKeys) == 0x000028, "Member 'AnimationDataController_SetBoneTrackKeys::ScalingKeys' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, bShouldTransact) == 0x000038, "Member 'AnimationDataController_SetBoneTrackKeys::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetBoneTrackKeys, ReturnValue) == 0x000039, "Member 'AnimationDataController_SetBoneTrackKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetCurveColor \ +static_assert(alignof(AnimationDataController_SetCurveColor) == 0x000004, "Wrong alignment on AnimationDataController_SetCurveColor"); \ +static_assert(sizeof(AnimationDataController_SetCurveColor) == 0x000020, "Wrong size on AnimationDataController_SetCurveColor"); \ +static_assert(offsetof(AnimationDataController_SetCurveColor, CurveId) == 0x000000, "Member 'AnimationDataController_SetCurveColor::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveColor, Color) == 0x00000C, "Member 'AnimationDataController_SetCurveColor::Color' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveColor, bShouldTransact) == 0x00001C, "Member 'AnimationDataController_SetCurveColor::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveColor, ReturnValue) == 0x00001D, "Member 'AnimationDataController_SetCurveColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetCurveFlag \ +static_assert(alignof(AnimationDataController_SetCurveFlag) == 0x000004, "Wrong alignment on AnimationDataController_SetCurveFlag"); \ +static_assert(sizeof(AnimationDataController_SetCurveFlag) == 0x000010, "Wrong size on AnimationDataController_SetCurveFlag"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlag, CurveId) == 0x000000, "Member 'AnimationDataController_SetCurveFlag::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlag, Flag) == 0x00000C, "Member 'AnimationDataController_SetCurveFlag::Flag' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlag, bState) == 0x00000D, "Member 'AnimationDataController_SetCurveFlag::bState' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlag, bShouldTransact) == 0x00000E, "Member 'AnimationDataController_SetCurveFlag::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlag, ReturnValue) == 0x00000F, "Member 'AnimationDataController_SetCurveFlag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetCurveFlags \ +static_assert(alignof(AnimationDataController_SetCurveFlags) == 0x000004, "Wrong alignment on AnimationDataController_SetCurveFlags"); \ +static_assert(sizeof(AnimationDataController_SetCurveFlags) == 0x000014, "Wrong size on AnimationDataController_SetCurveFlags"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlags, CurveId) == 0x000000, "Member 'AnimationDataController_SetCurveFlags::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlags, Flags_0) == 0x00000C, "Member 'AnimationDataController_SetCurveFlags::Flags_0' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlags, bShouldTransact) == 0x000010, "Member 'AnimationDataController_SetCurveFlags::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveFlags, ReturnValue) == 0x000011, "Member 'AnimationDataController_SetCurveFlags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetCurveKey \ +static_assert(alignof(AnimationDataController_SetCurveKey) == 0x000004, "Wrong alignment on AnimationDataController_SetCurveKey"); \ +static_assert(sizeof(AnimationDataController_SetCurveKey) == 0x00002C, "Wrong size on AnimationDataController_SetCurveKey"); \ +static_assert(offsetof(AnimationDataController_SetCurveKey, CurveId) == 0x000000, "Member 'AnimationDataController_SetCurveKey::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKey, Key) == 0x00000C, "Member 'AnimationDataController_SetCurveKey::Key' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKey, bShouldTransact) == 0x000028, "Member 'AnimationDataController_SetCurveKey::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKey, ReturnValue) == 0x000029, "Member 'AnimationDataController_SetCurveKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetCurveKeys \ +static_assert(alignof(AnimationDataController_SetCurveKeys) == 0x000008, "Wrong alignment on AnimationDataController_SetCurveKeys"); \ +static_assert(sizeof(AnimationDataController_SetCurveKeys) == 0x000028, "Wrong size on AnimationDataController_SetCurveKeys"); \ +static_assert(offsetof(AnimationDataController_SetCurveKeys, CurveId) == 0x000000, "Member 'AnimationDataController_SetCurveKeys::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKeys, CurveKeys) == 0x000010, "Member 'AnimationDataController_SetCurveKeys::CurveKeys' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKeys, bShouldTransact) == 0x000020, "Member 'AnimationDataController_SetCurveKeys::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetCurveKeys, ReturnValue) == 0x000021, "Member 'AnimationDataController_SetCurveKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetFrameRate \ +static_assert(alignof(AnimationDataController_SetFrameRate) == 0x000004, "Wrong alignment on AnimationDataController_SetFrameRate"); \ +static_assert(sizeof(AnimationDataController_SetFrameRate) == 0x00000C, "Wrong size on AnimationDataController_SetFrameRate"); \ +static_assert(offsetof(AnimationDataController_SetFrameRate, FrameRate) == 0x000000, "Member 'AnimationDataController_SetFrameRate::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetFrameRate, bShouldTransact) == 0x000008, "Member 'AnimationDataController_SetFrameRate::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetModel \ +static_assert(alignof(AnimationDataController_SetModel) == 0x000008, "Wrong alignment on AnimationDataController_SetModel"); \ +static_assert(sizeof(AnimationDataController_SetModel) == 0x000010, "Wrong size on AnimationDataController_SetModel"); \ +static_assert(offsetof(AnimationDataController_SetModel, InModel) == 0x000000, "Member 'AnimationDataController_SetModel::InModel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetNumberOfFrames \ +static_assert(alignof(AnimationDataController_SetNumberOfFrames) == 0x000004, "Wrong alignment on AnimationDataController_SetNumberOfFrames"); \ +static_assert(sizeof(AnimationDataController_SetNumberOfFrames) == 0x000008, "Wrong size on AnimationDataController_SetNumberOfFrames"); \ +static_assert(offsetof(AnimationDataController_SetNumberOfFrames, NewLengthInFrames) == 0x000000, "Member 'AnimationDataController_SetNumberOfFrames::NewLengthInFrames' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetNumberOfFrames, bShouldTransact) == 0x000004, "Member 'AnimationDataController_SetNumberOfFrames::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetPlayLength \ +static_assert(alignof(AnimationDataController_SetPlayLength) == 0x000004, "Wrong alignment on AnimationDataController_SetPlayLength"); \ +static_assert(sizeof(AnimationDataController_SetPlayLength) == 0x000008, "Wrong size on AnimationDataController_SetPlayLength"); \ +static_assert(offsetof(AnimationDataController_SetPlayLength, Length) == 0x000000, "Member 'AnimationDataController_SetPlayLength::Length' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetPlayLength, bShouldTransact) == 0x000004, "Member 'AnimationDataController_SetPlayLength::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetTransformCurveKey \ +static_assert(alignof(AnimationDataController_SetTransformCurveKey) == 0x000010, "Wrong alignment on AnimationDataController_SetTransformCurveKey"); \ +static_assert(sizeof(AnimationDataController_SetTransformCurveKey) == 0x000080, "Wrong size on AnimationDataController_SetTransformCurveKey"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKey, CurveId) == 0x000000, "Member 'AnimationDataController_SetTransformCurveKey::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKey, Time) == 0x00000C, "Member 'AnimationDataController_SetTransformCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKey, Value) == 0x000010, "Member 'AnimationDataController_SetTransformCurveKey::Value' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKey, bShouldTransact) == 0x000070, "Member 'AnimationDataController_SetTransformCurveKey::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKey, ReturnValue) == 0x000071, "Member 'AnimationDataController_SetTransformCurveKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_SetTransformCurveKeys \ +static_assert(alignof(AnimationDataController_SetTransformCurveKeys) == 0x000008, "Wrong alignment on AnimationDataController_SetTransformCurveKeys"); \ +static_assert(sizeof(AnimationDataController_SetTransformCurveKeys) == 0x000038, "Wrong size on AnimationDataController_SetTransformCurveKeys"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKeys, CurveId) == 0x000000, "Member 'AnimationDataController_SetTransformCurveKeys::CurveId' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKeys, TransformValues) == 0x000010, "Member 'AnimationDataController_SetTransformCurveKeys::TransformValues' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKeys, TimeKeys) == 0x000020, "Member 'AnimationDataController_SetTransformCurveKeys::TimeKeys' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKeys, bShouldTransact) == 0x000030, "Member 'AnimationDataController_SetTransformCurveKeys::bShouldTransact' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_SetTransformCurveKeys, ReturnValue) == 0x000031, "Member 'AnimationDataController_SetTransformCurveKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_UpdateCurveNamesFromSkeleton \ +static_assert(alignof(AnimationDataController_UpdateCurveNamesFromSkeleton) == 0x000008, "Wrong alignment on AnimationDataController_UpdateCurveNamesFromSkeleton"); \ +static_assert(sizeof(AnimationDataController_UpdateCurveNamesFromSkeleton) == 0x000010, "Wrong size on AnimationDataController_UpdateCurveNamesFromSkeleton"); \ +static_assert(offsetof(AnimationDataController_UpdateCurveNamesFromSkeleton, Skeleton) == 0x000000, "Member 'AnimationDataController_UpdateCurveNamesFromSkeleton::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_UpdateCurveNamesFromSkeleton, SupportedCurveType) == 0x000008, "Member 'AnimationDataController_UpdateCurveNamesFromSkeleton::SupportedCurveType' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataController_UpdateCurveNamesFromSkeleton, bShouldTransact) == 0x000009, "Member 'AnimationDataController_UpdateCurveNamesFromSkeleton::bShouldTransact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataController_GetModelInterface \ +static_assert(alignof(AnimationDataController_GetModelInterface) == 0x000008, "Wrong alignment on AnimationDataController_GetModelInterface"); \ +static_assert(sizeof(AnimationDataController_GetModelInterface) == 0x000010, "Wrong size on AnimationDataController_GetModelInterface"); \ +static_assert(offsetof(AnimationDataController_GetModelInterface, ReturnValue) == 0x000000, "Member 'AnimationDataController_GetModelInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAnimationDataController \ +static_assert(alignof(IAnimationDataController) == 0x000001, "Wrong alignment on IAnimationDataController"); \ +static_assert(sizeof(IAnimationDataController) == 0x000001, "Wrong size on IAnimationDataController"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetAnimationSequence \ +static_assert(alignof(AnimationDataModel_GetAnimationSequence) == 0x000008, "Wrong alignment on AnimationDataModel_GetAnimationSequence"); \ +static_assert(sizeof(AnimationDataModel_GetAnimationSequence) == 0x000008, "Wrong size on AnimationDataModel_GetAnimationSequence"); \ +static_assert(offsetof(AnimationDataModel_GetAnimationSequence, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetAnimationSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneAnimationTracks \ +static_assert(alignof(AnimationDataModel_GetBoneAnimationTracks) == 0x000008, "Wrong alignment on AnimationDataModel_GetBoneAnimationTracks"); \ +static_assert(sizeof(AnimationDataModel_GetBoneAnimationTracks) == 0x000010, "Wrong size on AnimationDataModel_GetBoneAnimationTracks"); \ +static_assert(offsetof(AnimationDataModel_GetBoneAnimationTracks, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetBoneAnimationTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneTrackByIndex \ +static_assert(alignof(AnimationDataModel_GetBoneTrackByIndex) == 0x000008, "Wrong alignment on AnimationDataModel_GetBoneTrackByIndex"); \ +static_assert(sizeof(AnimationDataModel_GetBoneTrackByIndex) == 0x000048, "Wrong size on AnimationDataModel_GetBoneTrackByIndex"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackByIndex, TrackIndex) == 0x000000, "Member 'AnimationDataModel_GetBoneTrackByIndex::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackByIndex, ReturnValue) == 0x000008, "Member 'AnimationDataModel_GetBoneTrackByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneTrackByName \ +static_assert(alignof(AnimationDataModel_GetBoneTrackByName) == 0x000008, "Wrong alignment on AnimationDataModel_GetBoneTrackByName"); \ +static_assert(sizeof(AnimationDataModel_GetBoneTrackByName) == 0x000048, "Wrong size on AnimationDataModel_GetBoneTrackByName"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackByName, TrackName) == 0x000000, "Member 'AnimationDataModel_GetBoneTrackByName::TrackName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackByName, ReturnValue) == 0x000008, "Member 'AnimationDataModel_GetBoneTrackByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneTrackIndex \ +static_assert(alignof(AnimationDataModel_GetBoneTrackIndex) == 0x000008, "Wrong alignment on AnimationDataModel_GetBoneTrackIndex"); \ +static_assert(sizeof(AnimationDataModel_GetBoneTrackIndex) == 0x000048, "Wrong size on AnimationDataModel_GetBoneTrackIndex"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackIndex, Track) == 0x000000, "Member 'AnimationDataModel_GetBoneTrackIndex::Track' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackIndex, ReturnValue) == 0x000040, "Member 'AnimationDataModel_GetBoneTrackIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneTrackIndexByName \ +static_assert(alignof(AnimationDataModel_GetBoneTrackIndexByName) == 0x000004, "Wrong alignment on AnimationDataModel_GetBoneTrackIndexByName"); \ +static_assert(sizeof(AnimationDataModel_GetBoneTrackIndexByName) == 0x00000C, "Wrong size on AnimationDataModel_GetBoneTrackIndexByName"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackIndexByName, TrackName) == 0x000000, "Member 'AnimationDataModel_GetBoneTrackIndexByName::TrackName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackIndexByName, ReturnValue) == 0x000008, "Member 'AnimationDataModel_GetBoneTrackIndexByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetBoneTrackNames \ +static_assert(alignof(AnimationDataModel_GetBoneTrackNames) == 0x000008, "Wrong alignment on AnimationDataModel_GetBoneTrackNames"); \ +static_assert(sizeof(AnimationDataModel_GetBoneTrackNames) == 0x000010, "Wrong size on AnimationDataModel_GetBoneTrackNames"); \ +static_assert(offsetof(AnimationDataModel_GetBoneTrackNames, OutNames) == 0x000000, "Member 'AnimationDataModel_GetBoneTrackNames::OutNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetFrameRate \ +static_assert(alignof(AnimationDataModel_GetFrameRate) == 0x000004, "Wrong alignment on AnimationDataModel_GetFrameRate"); \ +static_assert(sizeof(AnimationDataModel_GetFrameRate) == 0x000008, "Wrong size on AnimationDataModel_GetFrameRate"); \ +static_assert(offsetof(AnimationDataModel_GetFrameRate, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetNumberOfFloatCurves \ +static_assert(alignof(AnimationDataModel_GetNumberOfFloatCurves) == 0x000004, "Wrong alignment on AnimationDataModel_GetNumberOfFloatCurves"); \ +static_assert(sizeof(AnimationDataModel_GetNumberOfFloatCurves) == 0x000004, "Wrong size on AnimationDataModel_GetNumberOfFloatCurves"); \ +static_assert(offsetof(AnimationDataModel_GetNumberOfFloatCurves, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetNumberOfFloatCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetNumberOfFrames \ +static_assert(alignof(AnimationDataModel_GetNumberOfFrames) == 0x000004, "Wrong alignment on AnimationDataModel_GetNumberOfFrames"); \ +static_assert(sizeof(AnimationDataModel_GetNumberOfFrames) == 0x000004, "Wrong size on AnimationDataModel_GetNumberOfFrames"); \ +static_assert(offsetof(AnimationDataModel_GetNumberOfFrames, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetNumberOfFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetNumberOfKeys \ +static_assert(alignof(AnimationDataModel_GetNumberOfKeys) == 0x000004, "Wrong alignment on AnimationDataModel_GetNumberOfKeys"); \ +static_assert(sizeof(AnimationDataModel_GetNumberOfKeys) == 0x000004, "Wrong size on AnimationDataModel_GetNumberOfKeys"); \ +static_assert(offsetof(AnimationDataModel_GetNumberOfKeys, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetNumberOfKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetNumberOfTransformCurves \ +static_assert(alignof(AnimationDataModel_GetNumberOfTransformCurves) == 0x000004, "Wrong alignment on AnimationDataModel_GetNumberOfTransformCurves"); \ +static_assert(sizeof(AnimationDataModel_GetNumberOfTransformCurves) == 0x000004, "Wrong size on AnimationDataModel_GetNumberOfTransformCurves"); \ +static_assert(offsetof(AnimationDataModel_GetNumberOfTransformCurves, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetNumberOfTransformCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetNumBoneTracks \ +static_assert(alignof(AnimationDataModel_GetNumBoneTracks) == 0x000004, "Wrong alignment on AnimationDataModel_GetNumBoneTracks"); \ +static_assert(sizeof(AnimationDataModel_GetNumBoneTracks) == 0x000004, "Wrong size on AnimationDataModel_GetNumBoneTracks"); \ +static_assert(offsetof(AnimationDataModel_GetNumBoneTracks, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetNumBoneTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_GetPlayLength \ +static_assert(alignof(AnimationDataModel_GetPlayLength) == 0x000008, "Wrong alignment on AnimationDataModel_GetPlayLength"); \ +static_assert(sizeof(AnimationDataModel_GetPlayLength) == 0x000008, "Wrong size on AnimationDataModel_GetPlayLength"); \ +static_assert(offsetof(AnimationDataModel_GetPlayLength, ReturnValue) == 0x000000, "Member 'AnimationDataModel_GetPlayLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_IsValidBoneTrackIndex \ +static_assert(alignof(AnimationDataModel_IsValidBoneTrackIndex) == 0x000004, "Wrong alignment on AnimationDataModel_IsValidBoneTrackIndex"); \ +static_assert(sizeof(AnimationDataModel_IsValidBoneTrackIndex) == 0x000008, "Wrong size on AnimationDataModel_IsValidBoneTrackIndex"); \ +static_assert(offsetof(AnimationDataModel_IsValidBoneTrackIndex, TrackIndex) == 0x000000, "Member 'AnimationDataModel_IsValidBoneTrackIndex::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_IsValidBoneTrackIndex, ReturnValue) == 0x000004, "Member 'AnimationDataModel_IsValidBoneTrackIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationDataModel_IsValidBoneTrackName \ +static_assert(alignof(AnimationDataModel_IsValidBoneTrackName) == 0x000004, "Wrong alignment on AnimationDataModel_IsValidBoneTrackName"); \ +static_assert(sizeof(AnimationDataModel_IsValidBoneTrackName) == 0x00000C, "Wrong size on AnimationDataModel_IsValidBoneTrackName"); \ +static_assert(offsetof(AnimationDataModel_IsValidBoneTrackName, TrackName) == 0x000000, "Member 'AnimationDataModel_IsValidBoneTrackName::TrackName' has a wrong offset!"); \ +static_assert(offsetof(AnimationDataModel_IsValidBoneTrackName, ReturnValue) == 0x000008, "Member 'AnimationDataModel_IsValidBoneTrackName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAnimationDataModel \ +static_assert(alignof(IAnimationDataModel) == 0x000001, "Wrong alignment on IAnimationDataModel"); \ +static_assert(sizeof(IAnimationDataModel) == 0x000001, "Wrong size on IAnimationDataModel"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleSize \ +static_assert(alignof(UMaterialExpressionParticleSize) == 0x000008, "Wrong alignment on UMaterialExpressionParticleSize"); \ +static_assert(sizeof(UMaterialExpressionParticleSize) == 0x0000B0, "Wrong size on UMaterialExpressionParticleSize"); \ + +#define DUMPER7_ASSERTS_UParticleModuleCameraBase \ +static_assert(alignof(UParticleModuleCameraBase) == 0x000008, "Wrong alignment on UParticleModuleCameraBase"); \ +static_assert(sizeof(UParticleModuleCameraBase) == 0x000030, "Wrong size on UParticleModuleCameraBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleCameraOffset \ +static_assert(alignof(UParticleModuleCameraOffset) == 0x000008, "Wrong alignment on UParticleModuleCameraOffset"); \ +static_assert(sizeof(UParticleModuleCameraOffset) == 0x000068, "Wrong size on UParticleModuleCameraOffset"); \ +static_assert(offsetof(UParticleModuleCameraOffset, CameraOffset) == 0x000030, "Member 'UParticleModuleCameraOffset::CameraOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCameraOffset, UpdateMethod) == 0x000064, "Member 'UParticleModuleCameraOffset::UpdateMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInGameAdManager \ +static_assert(alignof(UInGameAdManager) == 0x000008, "Wrong alignment on UInGameAdManager"); \ +static_assert(sizeof(UInGameAdManager) == 0x000060, "Wrong size on UInGameAdManager"); \ +static_assert(offsetof(UInGameAdManager, ClickedBannerDelegates) == 0x000040, "Member 'UInGameAdManager::ClickedBannerDelegates' has a wrong offset!"); \ +static_assert(offsetof(UInGameAdManager, ClosedAdDelegates) == 0x000050, "Member 'UInGameAdManager::ClosedAdDelegates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetMovementBaseActor \ +static_assert(alignof(Pawn_GetMovementBaseActor) == 0x000008, "Wrong alignment on Pawn_GetMovementBaseActor"); \ +static_assert(sizeof(Pawn_GetMovementBaseActor) == 0x000010, "Wrong size on Pawn_GetMovementBaseActor"); \ +static_assert(offsetof(Pawn_GetMovementBaseActor, Pawn) == 0x000000, "Member 'Pawn_GetMovementBaseActor::Pawn' has a wrong offset!"); \ +static_assert(offsetof(Pawn_GetMovementBaseActor, ReturnValue) == 0x000008, "Member 'Pawn_GetMovementBaseActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_AddControllerPitchInput \ +static_assert(alignof(Pawn_AddControllerPitchInput) == 0x000004, "Wrong alignment on Pawn_AddControllerPitchInput"); \ +static_assert(sizeof(Pawn_AddControllerPitchInput) == 0x000004, "Wrong size on Pawn_AddControllerPitchInput"); \ +static_assert(offsetof(Pawn_AddControllerPitchInput, Val) == 0x000000, "Member 'Pawn_AddControllerPitchInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_AddControllerRollInput \ +static_assert(alignof(Pawn_AddControllerRollInput) == 0x000004, "Wrong alignment on Pawn_AddControllerRollInput"); \ +static_assert(sizeof(Pawn_AddControllerRollInput) == 0x000004, "Wrong size on Pawn_AddControllerRollInput"); \ +static_assert(offsetof(Pawn_AddControllerRollInput, Val) == 0x000000, "Member 'Pawn_AddControllerRollInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_AddControllerYawInput \ +static_assert(alignof(Pawn_AddControllerYawInput) == 0x000004, "Wrong alignment on Pawn_AddControllerYawInput"); \ +static_assert(sizeof(Pawn_AddControllerYawInput) == 0x000004, "Wrong size on Pawn_AddControllerYawInput"); \ +static_assert(offsetof(Pawn_AddControllerYawInput, Val) == 0x000000, "Member 'Pawn_AddControllerYawInput::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_AddMovementInput \ +static_assert(alignof(Pawn_AddMovementInput) == 0x000008, "Wrong alignment on Pawn_AddMovementInput"); \ +static_assert(sizeof(Pawn_AddMovementInput) == 0x000020, "Wrong size on Pawn_AddMovementInput"); \ +static_assert(offsetof(Pawn_AddMovementInput, WorldDirection) == 0x000000, "Member 'Pawn_AddMovementInput::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(Pawn_AddMovementInput, ScaleValue) == 0x000018, "Member 'Pawn_AddMovementInput::ScaleValue' has a wrong offset!"); \ +static_assert(offsetof(Pawn_AddMovementInput, bForce) == 0x00001C, "Member 'Pawn_AddMovementInput::bForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_ConsumeMovementInputVector \ +static_assert(alignof(Pawn_ConsumeMovementInputVector) == 0x000008, "Wrong alignment on Pawn_ConsumeMovementInputVector"); \ +static_assert(sizeof(Pawn_ConsumeMovementInputVector) == 0x000018, "Wrong size on Pawn_ConsumeMovementInputVector"); \ +static_assert(offsetof(Pawn_ConsumeMovementInputVector, ReturnValue) == 0x000000, "Member 'Pawn_ConsumeMovementInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_PawnMakeNoise \ +static_assert(alignof(Pawn_PawnMakeNoise) == 0x000008, "Wrong alignment on Pawn_PawnMakeNoise"); \ +static_assert(sizeof(Pawn_PawnMakeNoise) == 0x000030, "Wrong size on Pawn_PawnMakeNoise"); \ +static_assert(offsetof(Pawn_PawnMakeNoise, Loudness) == 0x000000, "Member 'Pawn_PawnMakeNoise::Loudness' has a wrong offset!"); \ +static_assert(offsetof(Pawn_PawnMakeNoise, NoiseLocation) == 0x000008, "Member 'Pawn_PawnMakeNoise::NoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(Pawn_PawnMakeNoise, bUseNoiseMakerLocation) == 0x000020, "Member 'Pawn_PawnMakeNoise::bUseNoiseMakerLocation' has a wrong offset!"); \ +static_assert(offsetof(Pawn_PawnMakeNoise, NoiseMaker) == 0x000028, "Member 'Pawn_PawnMakeNoise::NoiseMaker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_ReceiveControllerChanged \ +static_assert(alignof(Pawn_ReceiveControllerChanged) == 0x000008, "Wrong alignment on Pawn_ReceiveControllerChanged"); \ +static_assert(sizeof(Pawn_ReceiveControllerChanged) == 0x000010, "Wrong size on Pawn_ReceiveControllerChanged"); \ +static_assert(offsetof(Pawn_ReceiveControllerChanged, OldController) == 0x000000, "Member 'Pawn_ReceiveControllerChanged::OldController' has a wrong offset!"); \ +static_assert(offsetof(Pawn_ReceiveControllerChanged, NewController) == 0x000008, "Member 'Pawn_ReceiveControllerChanged::NewController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_ReceivePossessed \ +static_assert(alignof(Pawn_ReceivePossessed) == 0x000008, "Wrong alignment on Pawn_ReceivePossessed"); \ +static_assert(sizeof(Pawn_ReceivePossessed) == 0x000008, "Wrong size on Pawn_ReceivePossessed"); \ +static_assert(offsetof(Pawn_ReceivePossessed, NewController) == 0x000000, "Member 'Pawn_ReceivePossessed::NewController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_ReceiveUnpossessed \ +static_assert(alignof(Pawn_ReceiveUnpossessed) == 0x000008, "Wrong alignment on Pawn_ReceiveUnpossessed"); \ +static_assert(sizeof(Pawn_ReceiveUnpossessed) == 0x000008, "Wrong size on Pawn_ReceiveUnpossessed"); \ +static_assert(offsetof(Pawn_ReceiveUnpossessed, OldController) == 0x000000, "Member 'Pawn_ReceiveUnpossessed::OldController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_SetCanAffectNavigationGeneration \ +static_assert(alignof(Pawn_SetCanAffectNavigationGeneration) == 0x000001, "Wrong alignment on Pawn_SetCanAffectNavigationGeneration"); \ +static_assert(sizeof(Pawn_SetCanAffectNavigationGeneration) == 0x000002, "Wrong size on Pawn_SetCanAffectNavigationGeneration"); \ +static_assert(offsetof(Pawn_SetCanAffectNavigationGeneration, bNewValue) == 0x000000, "Member 'Pawn_SetCanAffectNavigationGeneration::bNewValue' has a wrong offset!"); \ +static_assert(offsetof(Pawn_SetCanAffectNavigationGeneration, bForceUpdate) == 0x000001, "Member 'Pawn_SetCanAffectNavigationGeneration::bForceUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetBaseAimRotation \ +static_assert(alignof(Pawn_GetBaseAimRotation) == 0x000008, "Wrong alignment on Pawn_GetBaseAimRotation"); \ +static_assert(sizeof(Pawn_GetBaseAimRotation) == 0x000018, "Wrong size on Pawn_GetBaseAimRotation"); \ +static_assert(offsetof(Pawn_GetBaseAimRotation, ReturnValue) == 0x000000, "Member 'Pawn_GetBaseAimRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetController \ +static_assert(alignof(Pawn_GetController) == 0x000008, "Wrong alignment on Pawn_GetController"); \ +static_assert(sizeof(Pawn_GetController) == 0x000008, "Wrong size on Pawn_GetController"); \ +static_assert(offsetof(Pawn_GetController, ReturnValue) == 0x000000, "Member 'Pawn_GetController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetControlRotation \ +static_assert(alignof(Pawn_GetControlRotation) == 0x000008, "Wrong alignment on Pawn_GetControlRotation"); \ +static_assert(sizeof(Pawn_GetControlRotation) == 0x000018, "Wrong size on Pawn_GetControlRotation"); \ +static_assert(offsetof(Pawn_GetControlRotation, ReturnValue) == 0x000000, "Member 'Pawn_GetControlRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetLastMovementInputVector \ +static_assert(alignof(Pawn_GetLastMovementInputVector) == 0x000008, "Wrong alignment on Pawn_GetLastMovementInputVector"); \ +static_assert(sizeof(Pawn_GetLastMovementInputVector) == 0x000018, "Wrong size on Pawn_GetLastMovementInputVector"); \ +static_assert(offsetof(Pawn_GetLastMovementInputVector, ReturnValue) == 0x000000, "Member 'Pawn_GetLastMovementInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetLocalViewingPlayerController \ +static_assert(alignof(Pawn_GetLocalViewingPlayerController) == 0x000008, "Wrong alignment on Pawn_GetLocalViewingPlayerController"); \ +static_assert(sizeof(Pawn_GetLocalViewingPlayerController) == 0x000008, "Wrong size on Pawn_GetLocalViewingPlayerController"); \ +static_assert(offsetof(Pawn_GetLocalViewingPlayerController, ReturnValue) == 0x000000, "Member 'Pawn_GetLocalViewingPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetMovementComponent \ +static_assert(alignof(Pawn_GetMovementComponent) == 0x000008, "Wrong alignment on Pawn_GetMovementComponent"); \ +static_assert(sizeof(Pawn_GetMovementComponent) == 0x000008, "Wrong size on Pawn_GetMovementComponent"); \ +static_assert(offsetof(Pawn_GetMovementComponent, ReturnValue) == 0x000000, "Member 'Pawn_GetMovementComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetNavAgentLocation \ +static_assert(alignof(Pawn_GetNavAgentLocation) == 0x000008, "Wrong alignment on Pawn_GetNavAgentLocation"); \ +static_assert(sizeof(Pawn_GetNavAgentLocation) == 0x000018, "Wrong size on Pawn_GetNavAgentLocation"); \ +static_assert(offsetof(Pawn_GetNavAgentLocation, ReturnValue) == 0x000000, "Member 'Pawn_GetNavAgentLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetOverrideInputComponentClass \ +static_assert(alignof(Pawn_GetOverrideInputComponentClass) == 0x000008, "Wrong alignment on Pawn_GetOverrideInputComponentClass"); \ +static_assert(sizeof(Pawn_GetOverrideInputComponentClass) == 0x000008, "Wrong size on Pawn_GetOverrideInputComponentClass"); \ +static_assert(offsetof(Pawn_GetOverrideInputComponentClass, ReturnValue) == 0x000000, "Member 'Pawn_GetOverrideInputComponentClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetPendingMovementInputVector \ +static_assert(alignof(Pawn_GetPendingMovementInputVector) == 0x000008, "Wrong alignment on Pawn_GetPendingMovementInputVector"); \ +static_assert(sizeof(Pawn_GetPendingMovementInputVector) == 0x000018, "Wrong size on Pawn_GetPendingMovementInputVector"); \ +static_assert(offsetof(Pawn_GetPendingMovementInputVector, ReturnValue) == 0x000000, "Member 'Pawn_GetPendingMovementInputVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_GetPlatformUserId \ +static_assert(alignof(Pawn_GetPlatformUserId) == 0x000004, "Wrong alignment on Pawn_GetPlatformUserId"); \ +static_assert(sizeof(Pawn_GetPlatformUserId) == 0x000004, "Wrong size on Pawn_GetPlatformUserId"); \ +static_assert(offsetof(Pawn_GetPlatformUserId, ReturnValue) == 0x000000, "Member 'Pawn_GetPlatformUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsBotControlled \ +static_assert(alignof(Pawn_IsBotControlled) == 0x000001, "Wrong alignment on Pawn_IsBotControlled"); \ +static_assert(sizeof(Pawn_IsBotControlled) == 0x000001, "Wrong size on Pawn_IsBotControlled"); \ +static_assert(offsetof(Pawn_IsBotControlled, ReturnValue) == 0x000000, "Member 'Pawn_IsBotControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsControlled \ +static_assert(alignof(Pawn_IsControlled) == 0x000001, "Wrong alignment on Pawn_IsControlled"); \ +static_assert(sizeof(Pawn_IsControlled) == 0x000001, "Wrong size on Pawn_IsControlled"); \ +static_assert(offsetof(Pawn_IsControlled, ReturnValue) == 0x000000, "Member 'Pawn_IsControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsLocallyControlled \ +static_assert(alignof(Pawn_IsLocallyControlled) == 0x000001, "Wrong alignment on Pawn_IsLocallyControlled"); \ +static_assert(sizeof(Pawn_IsLocallyControlled) == 0x000001, "Wrong size on Pawn_IsLocallyControlled"); \ +static_assert(offsetof(Pawn_IsLocallyControlled, ReturnValue) == 0x000000, "Member 'Pawn_IsLocallyControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsLocallyViewed \ +static_assert(alignof(Pawn_IsLocallyViewed) == 0x000001, "Wrong alignment on Pawn_IsLocallyViewed"); \ +static_assert(sizeof(Pawn_IsLocallyViewed) == 0x000001, "Wrong size on Pawn_IsLocallyViewed"); \ +static_assert(offsetof(Pawn_IsLocallyViewed, ReturnValue) == 0x000000, "Member 'Pawn_IsLocallyViewed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsMoveInputIgnored \ +static_assert(alignof(Pawn_IsMoveInputIgnored) == 0x000001, "Wrong alignment on Pawn_IsMoveInputIgnored"); \ +static_assert(sizeof(Pawn_IsMoveInputIgnored) == 0x000001, "Wrong size on Pawn_IsMoveInputIgnored"); \ +static_assert(offsetof(Pawn_IsMoveInputIgnored, ReturnValue) == 0x000000, "Member 'Pawn_IsMoveInputIgnored::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsPawnControlled \ +static_assert(alignof(Pawn_IsPawnControlled) == 0x000001, "Wrong alignment on Pawn_IsPawnControlled"); \ +static_assert(sizeof(Pawn_IsPawnControlled) == 0x000001, "Wrong size on Pawn_IsPawnControlled"); \ +static_assert(offsetof(Pawn_IsPawnControlled, ReturnValue) == 0x000000, "Member 'Pawn_IsPawnControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pawn_IsPlayerControlled \ +static_assert(alignof(Pawn_IsPlayerControlled) == 0x000001, "Wrong alignment on Pawn_IsPlayerControlled"); \ +static_assert(sizeof(Pawn_IsPlayerControlled) == 0x000001, "Wrong size on Pawn_IsPlayerControlled"); \ +static_assert(offsetof(Pawn_IsPlayerControlled, ReturnValue) == 0x000000, "Member 'Pawn_IsPlayerControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APawn \ +static_assert(alignof(APawn) == 0x000008, "Wrong alignment on APawn"); \ +static_assert(sizeof(APawn) == 0x000320, "Wrong size on APawn"); \ +static_assert(offsetof(APawn, BaseEyeHeight) == 0x0002A4, "Member 'APawn::BaseEyeHeight' has a wrong offset!"); \ +static_assert(offsetof(APawn, AutoPossessPlayer) == 0x0002A8, "Member 'APawn::AutoPossessPlayer' has a wrong offset!"); \ +static_assert(offsetof(APawn, AutoPossessAI) == 0x0002A9, "Member 'APawn::AutoPossessAI' has a wrong offset!"); \ +static_assert(offsetof(APawn, RemoteViewPitch) == 0x0002AA, "Member 'APawn::RemoteViewPitch' has a wrong offset!"); \ +static_assert(offsetof(APawn, AIControllerClass) == 0x0002B0, "Member 'APawn::AIControllerClass' has a wrong offset!"); \ +static_assert(offsetof(APawn, PlayerState) == 0x0002B8, "Member 'APawn::PlayerState' has a wrong offset!"); \ +static_assert(offsetof(APawn, LastHitBy) == 0x0002C8, "Member 'APawn::LastHitBy' has a wrong offset!"); \ +static_assert(offsetof(APawn, Controller) == 0x0002D0, "Member 'APawn::Controller' has a wrong offset!"); \ +static_assert(offsetof(APawn, PreviousController) == 0x0002D8, "Member 'APawn::PreviousController' has a wrong offset!"); \ +static_assert(offsetof(APawn, ReceiveControllerChangedDelegate) == 0x0002E4, "Member 'APawn::ReceiveControllerChangedDelegate' has a wrong offset!"); \ +static_assert(offsetof(APawn, ReceiveRestartedDelegate) == 0x0002E5, "Member 'APawn::ReceiveRestartedDelegate' has a wrong offset!"); \ +static_assert(offsetof(APawn, ControlInputVector) == 0x0002E8, "Member 'APawn::ControlInputVector' has a wrong offset!"); \ +static_assert(offsetof(APawn, LastControlInputVector) == 0x000300, "Member 'APawn::LastControlInputVector' has a wrong offset!"); \ +static_assert(offsetof(APawn, OverrideInputComponentClass) == 0x000318, "Member 'APawn::OverrideInputComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_CacheInitialMeshOffset \ +static_assert(alignof(Character_CacheInitialMeshOffset) == 0x000008, "Wrong alignment on Character_CacheInitialMeshOffset"); \ +static_assert(sizeof(Character_CacheInitialMeshOffset) == 0x000030, "Wrong size on Character_CacheInitialMeshOffset"); \ +static_assert(offsetof(Character_CacheInitialMeshOffset, MeshRelativeLocation) == 0x000000, "Member 'Character_CacheInitialMeshOffset::MeshRelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(Character_CacheInitialMeshOffset, MeshRelativeRotation) == 0x000018, "Member 'Character_CacheInitialMeshOffset::MeshRelativeRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientAckGoodMove \ +static_assert(alignof(Character_ClientAckGoodMove) == 0x000004, "Wrong alignment on Character_ClientAckGoodMove"); \ +static_assert(sizeof(Character_ClientAckGoodMove) == 0x000004, "Wrong size on Character_ClientAckGoodMove"); \ +static_assert(offsetof(Character_ClientAckGoodMove, Timestamp) == 0x000000, "Member 'Character_ClientAckGoodMove::Timestamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientAdjustPosition \ +static_assert(alignof(Character_ClientAdjustPosition) == 0x000008, "Wrong alignment on Character_ClientAdjustPosition"); \ +static_assert(sizeof(Character_ClientAdjustPosition) == 0x000050, "Wrong size on Character_ClientAdjustPosition"); \ +static_assert(offsetof(Character_ClientAdjustPosition, Timestamp) == 0x000000, "Member 'Character_ClientAdjustPosition::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, NewLoc) == 0x000008, "Member 'Character_ClientAdjustPosition::NewLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, NewVel) == 0x000020, "Member 'Character_ClientAdjustPosition::NewVel' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, NewBase) == 0x000038, "Member 'Character_ClientAdjustPosition::NewBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, NewBaseBoneName) == 0x000040, "Member 'Character_ClientAdjustPosition::NewBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, bHasBase) == 0x000048, "Member 'Character_ClientAdjustPosition::bHasBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, bBaseRelativePosition) == 0x000049, "Member 'Character_ClientAdjustPosition::bBaseRelativePosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustPosition, ServerMovementMode) == 0x00004A, "Member 'Character_ClientAdjustPosition::ServerMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientAdjustRootMotionPosition \ +static_assert(alignof(Character_ClientAdjustRootMotionPosition) == 0x000008, "Wrong alignment on Character_ClientAdjustRootMotionPosition"); \ +static_assert(sizeof(Character_ClientAdjustRootMotionPosition) == 0x000058, "Wrong size on Character_ClientAdjustRootMotionPosition"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, Timestamp) == 0x000000, "Member 'Character_ClientAdjustRootMotionPosition::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerMontageTrackPosition) == 0x000004, "Member 'Character_ClientAdjustRootMotionPosition::ServerMontageTrackPosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerLoc) == 0x000008, "Member 'Character_ClientAdjustRootMotionPosition::ServerLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerRotation) == 0x000020, "Member 'Character_ClientAdjustRootMotionPosition::ServerRotation' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerVelZ) == 0x000038, "Member 'Character_ClientAdjustRootMotionPosition::ServerVelZ' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerBase) == 0x000040, "Member 'Character_ClientAdjustRootMotionPosition::ServerBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerBoneName) == 0x000048, "Member 'Character_ClientAdjustRootMotionPosition::ServerBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, bHasBase) == 0x000050, "Member 'Character_ClientAdjustRootMotionPosition::bHasBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, bBaseRelativePosition) == 0x000051, "Member 'Character_ClientAdjustRootMotionPosition::bBaseRelativePosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionPosition, ServerMovementMode) == 0x000052, "Member 'Character_ClientAdjustRootMotionPosition::ServerMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientAdjustRootMotionSourcePosition \ +static_assert(alignof(Character_ClientAdjustRootMotionSourcePosition) == 0x000008, "Wrong alignment on Character_ClientAdjustRootMotionSourcePosition"); \ +static_assert(sizeof(Character_ClientAdjustRootMotionSourcePosition) == 0x0000A8, "Wrong size on Character_ClientAdjustRootMotionSourcePosition"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, Timestamp) == 0x000000, "Member 'Character_ClientAdjustRootMotionSourcePosition::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerRootMotion) == 0x000008, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerRootMotion' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, bHasAnimRootMotion) == 0x000050, "Member 'Character_ClientAdjustRootMotionSourcePosition::bHasAnimRootMotion' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerMontageTrackPosition) == 0x000054, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerMontageTrackPosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerLoc) == 0x000058, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerRotation) == 0x000070, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerRotation' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerVelZ) == 0x000088, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerVelZ' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerBase) == 0x000090, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerBoneName) == 0x000098, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, bHasBase) == 0x0000A0, "Member 'Character_ClientAdjustRootMotionSourcePosition::bHasBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, bBaseRelativePosition) == 0x0000A1, "Member 'Character_ClientAdjustRootMotionSourcePosition::bBaseRelativePosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientAdjustRootMotionSourcePosition, ServerMovementMode) == 0x0000A2, "Member 'Character_ClientAdjustRootMotionSourcePosition::ServerMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientMoveResponsePacked \ +static_assert(alignof(Character_ClientMoveResponsePacked) == 0x000008, "Wrong alignment on Character_ClientMoveResponsePacked"); \ +static_assert(sizeof(Character_ClientMoveResponsePacked) == 0x0000C8, "Wrong size on Character_ClientMoveResponsePacked"); \ +static_assert(offsetof(Character_ClientMoveResponsePacked, PackedBits) == 0x000000, "Member 'Character_ClientMoveResponsePacked::PackedBits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ClientVeryShortAdjustPosition \ +static_assert(alignof(Character_ClientVeryShortAdjustPosition) == 0x000008, "Wrong alignment on Character_ClientVeryShortAdjustPosition"); \ +static_assert(sizeof(Character_ClientVeryShortAdjustPosition) == 0x000038, "Wrong size on Character_ClientVeryShortAdjustPosition"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, Timestamp) == 0x000000, "Member 'Character_ClientVeryShortAdjustPosition::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, NewLoc) == 0x000008, "Member 'Character_ClientVeryShortAdjustPosition::NewLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, NewBase) == 0x000020, "Member 'Character_ClientVeryShortAdjustPosition::NewBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, NewBaseBoneName) == 0x000028, "Member 'Character_ClientVeryShortAdjustPosition::NewBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, bHasBase) == 0x000030, "Member 'Character_ClientVeryShortAdjustPosition::bHasBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, bBaseRelativePosition) == 0x000031, "Member 'Character_ClientVeryShortAdjustPosition::bBaseRelativePosition' has a wrong offset!"); \ +static_assert(offsetof(Character_ClientVeryShortAdjustPosition, ServerMovementMode) == 0x000032, "Member 'Character_ClientVeryShortAdjustPosition::ServerMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_Crouch \ +static_assert(alignof(Character_Crouch) == 0x000001, "Wrong alignment on Character_Crouch"); \ +static_assert(sizeof(Character_Crouch) == 0x000001, "Wrong size on Character_Crouch"); \ +static_assert(offsetof(Character_Crouch, bClientSimulation) == 0x000000, "Member 'Character_Crouch::bClientSimulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_K2_OnEndCrouch \ +static_assert(alignof(Character_K2_OnEndCrouch) == 0x000004, "Wrong alignment on Character_K2_OnEndCrouch"); \ +static_assert(sizeof(Character_K2_OnEndCrouch) == 0x000008, "Wrong size on Character_K2_OnEndCrouch"); \ +static_assert(offsetof(Character_K2_OnEndCrouch, HalfHeightAdjust) == 0x000000, "Member 'Character_K2_OnEndCrouch::HalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(Character_K2_OnEndCrouch, ScaledHalfHeightAdjust) == 0x000004, "Member 'Character_K2_OnEndCrouch::ScaledHalfHeightAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_K2_OnMovementModeChanged \ +static_assert(alignof(Character_K2_OnMovementModeChanged) == 0x000001, "Wrong alignment on Character_K2_OnMovementModeChanged"); \ +static_assert(sizeof(Character_K2_OnMovementModeChanged) == 0x000004, "Wrong size on Character_K2_OnMovementModeChanged"); \ +static_assert(offsetof(Character_K2_OnMovementModeChanged, PrevMovementMode) == 0x000000, "Member 'Character_K2_OnMovementModeChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(Character_K2_OnMovementModeChanged, NewMovementMode) == 0x000001, "Member 'Character_K2_OnMovementModeChanged::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(Character_K2_OnMovementModeChanged, PrevCustomMode) == 0x000002, "Member 'Character_K2_OnMovementModeChanged::PrevCustomMode' has a wrong offset!"); \ +static_assert(offsetof(Character_K2_OnMovementModeChanged, NewCustomMode) == 0x000003, "Member 'Character_K2_OnMovementModeChanged::NewCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_K2_OnStartCrouch \ +static_assert(alignof(Character_K2_OnStartCrouch) == 0x000004, "Wrong alignment on Character_K2_OnStartCrouch"); \ +static_assert(sizeof(Character_K2_OnStartCrouch) == 0x000008, "Wrong size on Character_K2_OnStartCrouch"); \ +static_assert(offsetof(Character_K2_OnStartCrouch, HalfHeightAdjust) == 0x000000, "Member 'Character_K2_OnStartCrouch::HalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(Character_K2_OnStartCrouch, ScaledHalfHeightAdjust) == 0x000004, "Member 'Character_K2_OnStartCrouch::ScaledHalfHeightAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_K2_UpdateCustomMovement \ +static_assert(alignof(Character_K2_UpdateCustomMovement) == 0x000004, "Wrong alignment on Character_K2_UpdateCustomMovement"); \ +static_assert(sizeof(Character_K2_UpdateCustomMovement) == 0x000004, "Wrong size on Character_K2_UpdateCustomMovement"); \ +static_assert(offsetof(Character_K2_UpdateCustomMovement, DeltaTime) == 0x000000, "Member 'Character_K2_UpdateCustomMovement::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_LaunchCharacter \ +static_assert(alignof(Character_LaunchCharacter) == 0x000008, "Wrong alignment on Character_LaunchCharacter"); \ +static_assert(sizeof(Character_LaunchCharacter) == 0x000020, "Wrong size on Character_LaunchCharacter"); \ +static_assert(offsetof(Character_LaunchCharacter, LaunchVelocity) == 0x000000, "Member 'Character_LaunchCharacter::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(Character_LaunchCharacter, bXYOverride) == 0x000018, "Member 'Character_LaunchCharacter::bXYOverride' has a wrong offset!"); \ +static_assert(offsetof(Character_LaunchCharacter, bZOverride) == 0x000019, "Member 'Character_LaunchCharacter::bZOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_OnLanded \ +static_assert(alignof(Character_OnLanded) == 0x000008, "Wrong alignment on Character_OnLanded"); \ +static_assert(sizeof(Character_OnLanded) == 0x0000E8, "Wrong size on Character_OnLanded"); \ +static_assert(offsetof(Character_OnLanded, Hit) == 0x000000, "Member 'Character_OnLanded::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_OnLaunched \ +static_assert(alignof(Character_OnLaunched) == 0x000008, "Wrong alignment on Character_OnLaunched"); \ +static_assert(sizeof(Character_OnLaunched) == 0x000020, "Wrong size on Character_OnLaunched"); \ +static_assert(offsetof(Character_OnLaunched, LaunchVelocity) == 0x000000, "Member 'Character_OnLaunched::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(Character_OnLaunched, bXYOverride) == 0x000018, "Member 'Character_OnLaunched::bXYOverride' has a wrong offset!"); \ +static_assert(offsetof(Character_OnLaunched, bZOverride) == 0x000019, "Member 'Character_OnLaunched::bZOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_OnWalkingOffLedge \ +static_assert(alignof(Character_OnWalkingOffLedge) == 0x000008, "Wrong alignment on Character_OnWalkingOffLedge"); \ +static_assert(sizeof(Character_OnWalkingOffLedge) == 0x000050, "Wrong size on Character_OnWalkingOffLedge"); \ +static_assert(offsetof(Character_OnWalkingOffLedge, PreviousFloorImpactNormal) == 0x000000, "Member 'Character_OnWalkingOffLedge::PreviousFloorImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(Character_OnWalkingOffLedge, PreviousFloorContactNormal) == 0x000018, "Member 'Character_OnWalkingOffLedge::PreviousFloorContactNormal' has a wrong offset!"); \ +static_assert(offsetof(Character_OnWalkingOffLedge, PreviousLocation) == 0x000030, "Member 'Character_OnWalkingOffLedge::PreviousLocation' has a wrong offset!"); \ +static_assert(offsetof(Character_OnWalkingOffLedge, TimeDelta) == 0x000048, "Member 'Character_OnWalkingOffLedge::TimeDelta' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_PlayAnimMontage \ +static_assert(alignof(Character_PlayAnimMontage) == 0x000008, "Wrong alignment on Character_PlayAnimMontage"); \ +static_assert(sizeof(Character_PlayAnimMontage) == 0x000018, "Wrong size on Character_PlayAnimMontage"); \ +static_assert(offsetof(Character_PlayAnimMontage, AnimMontage) == 0x000000, "Member 'Character_PlayAnimMontage::AnimMontage' has a wrong offset!"); \ +static_assert(offsetof(Character_PlayAnimMontage, InPlayRate) == 0x000008, "Member 'Character_PlayAnimMontage::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(Character_PlayAnimMontage, StartSectionName) == 0x00000C, "Member 'Character_PlayAnimMontage::StartSectionName' has a wrong offset!"); \ +static_assert(offsetof(Character_PlayAnimMontage, ReturnValue) == 0x000014, "Member 'Character_PlayAnimMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_RootMotionDebugClientPrintOnScreen \ +static_assert(alignof(Character_RootMotionDebugClientPrintOnScreen) == 0x000008, "Wrong alignment on Character_RootMotionDebugClientPrintOnScreen"); \ +static_assert(sizeof(Character_RootMotionDebugClientPrintOnScreen) == 0x000010, "Wrong size on Character_RootMotionDebugClientPrintOnScreen"); \ +static_assert(offsetof(Character_RootMotionDebugClientPrintOnScreen, InString) == 0x000000, "Member 'Character_RootMotionDebugClientPrintOnScreen::InString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMove \ +static_assert(alignof(Character_ServerMove) == 0x000008, "Wrong alignment on Character_ServerMove"); \ +static_assert(sizeof(Character_ServerMove) == 0x000058, "Wrong size on Character_ServerMove"); \ +static_assert(offsetof(Character_ServerMove, Timestamp) == 0x000000, "Member 'Character_ServerMove::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, InAccel) == 0x000008, "Member 'Character_ServerMove::InAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, ClientLoc) == 0x000020, "Member 'Character_ServerMove::ClientLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, CompressedMoveFlags) == 0x000038, "Member 'Character_ServerMove::CompressedMoveFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, ClientRoll) == 0x000039, "Member 'Character_ServerMove::ClientRoll' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, View) == 0x00003C, "Member 'Character_ServerMove::View' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, ClientMovementBase) == 0x000040, "Member 'Character_ServerMove::ClientMovementBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, ClientBaseBoneName) == 0x000048, "Member 'Character_ServerMove::ClientBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMove, ClientMovementMode) == 0x000050, "Member 'Character_ServerMove::ClientMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMoveDual \ +static_assert(alignof(Character_ServerMoveDual) == 0x000008, "Wrong alignment on Character_ServerMoveDual"); \ +static_assert(sizeof(Character_ServerMoveDual) == 0x000080, "Wrong size on Character_ServerMoveDual"); \ +static_assert(offsetof(Character_ServerMoveDual, TimeStamp0) == 0x000000, "Member 'Character_ServerMoveDual::TimeStamp0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, InAccel0) == 0x000008, "Member 'Character_ServerMoveDual::InAccel0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, PendingFlags) == 0x000020, "Member 'Character_ServerMoveDual::PendingFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, View0) == 0x000024, "Member 'Character_ServerMoveDual::View0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, Timestamp) == 0x000028, "Member 'Character_ServerMoveDual::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, InAccel) == 0x000030, "Member 'Character_ServerMoveDual::InAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, ClientLoc) == 0x000048, "Member 'Character_ServerMoveDual::ClientLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, NewFlags) == 0x000060, "Member 'Character_ServerMoveDual::NewFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, ClientRoll) == 0x000061, "Member 'Character_ServerMoveDual::ClientRoll' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, View) == 0x000064, "Member 'Character_ServerMoveDual::View' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, ClientMovementBase) == 0x000068, "Member 'Character_ServerMoveDual::ClientMovementBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, ClientBaseBoneName) == 0x000070, "Member 'Character_ServerMoveDual::ClientBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDual, ClientMovementMode) == 0x000078, "Member 'Character_ServerMoveDual::ClientMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMoveDualHybridRootMotion \ +static_assert(alignof(Character_ServerMoveDualHybridRootMotion) == 0x000008, "Wrong alignment on Character_ServerMoveDualHybridRootMotion"); \ +static_assert(sizeof(Character_ServerMoveDualHybridRootMotion) == 0x000080, "Wrong size on Character_ServerMoveDualHybridRootMotion"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, TimeStamp0) == 0x000000, "Member 'Character_ServerMoveDualHybridRootMotion::TimeStamp0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, InAccel0) == 0x000008, "Member 'Character_ServerMoveDualHybridRootMotion::InAccel0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, PendingFlags) == 0x000020, "Member 'Character_ServerMoveDualHybridRootMotion::PendingFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, View0) == 0x000024, "Member 'Character_ServerMoveDualHybridRootMotion::View0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, Timestamp) == 0x000028, "Member 'Character_ServerMoveDualHybridRootMotion::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, InAccel) == 0x000030, "Member 'Character_ServerMoveDualHybridRootMotion::InAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, ClientLoc) == 0x000048, "Member 'Character_ServerMoveDualHybridRootMotion::ClientLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, NewFlags) == 0x000060, "Member 'Character_ServerMoveDualHybridRootMotion::NewFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, ClientRoll) == 0x000061, "Member 'Character_ServerMoveDualHybridRootMotion::ClientRoll' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, View) == 0x000064, "Member 'Character_ServerMoveDualHybridRootMotion::View' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, ClientMovementBase) == 0x000068, "Member 'Character_ServerMoveDualHybridRootMotion::ClientMovementBase' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, ClientBaseBoneName) == 0x000070, "Member 'Character_ServerMoveDualHybridRootMotion::ClientBaseBoneName' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualHybridRootMotion, ClientMovementMode) == 0x000078, "Member 'Character_ServerMoveDualHybridRootMotion::ClientMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMoveDualNoBase \ +static_assert(alignof(Character_ServerMoveDualNoBase) == 0x000008, "Wrong alignment on Character_ServerMoveDualNoBase"); \ +static_assert(sizeof(Character_ServerMoveDualNoBase) == 0x000070, "Wrong size on Character_ServerMoveDualNoBase"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, TimeStamp0) == 0x000000, "Member 'Character_ServerMoveDualNoBase::TimeStamp0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, InAccel0) == 0x000008, "Member 'Character_ServerMoveDualNoBase::InAccel0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, PendingFlags) == 0x000020, "Member 'Character_ServerMoveDualNoBase::PendingFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, View0) == 0x000024, "Member 'Character_ServerMoveDualNoBase::View0' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, Timestamp) == 0x000028, "Member 'Character_ServerMoveDualNoBase::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, InAccel) == 0x000030, "Member 'Character_ServerMoveDualNoBase::InAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, ClientLoc) == 0x000048, "Member 'Character_ServerMoveDualNoBase::ClientLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, NewFlags) == 0x000060, "Member 'Character_ServerMoveDualNoBase::NewFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, ClientRoll) == 0x000061, "Member 'Character_ServerMoveDualNoBase::ClientRoll' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, View) == 0x000064, "Member 'Character_ServerMoveDualNoBase::View' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveDualNoBase, ClientMovementMode) == 0x000068, "Member 'Character_ServerMoveDualNoBase::ClientMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMoveNoBase \ +static_assert(alignof(Character_ServerMoveNoBase) == 0x000008, "Wrong alignment on Character_ServerMoveNoBase"); \ +static_assert(sizeof(Character_ServerMoveNoBase) == 0x000048, "Wrong size on Character_ServerMoveNoBase"); \ +static_assert(offsetof(Character_ServerMoveNoBase, Timestamp) == 0x000000, "Member 'Character_ServerMoveNoBase::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, InAccel) == 0x000008, "Member 'Character_ServerMoveNoBase::InAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, ClientLoc) == 0x000020, "Member 'Character_ServerMoveNoBase::ClientLoc' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, CompressedMoveFlags) == 0x000038, "Member 'Character_ServerMoveNoBase::CompressedMoveFlags' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, ClientRoll) == 0x000039, "Member 'Character_ServerMoveNoBase::ClientRoll' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, View) == 0x00003C, "Member 'Character_ServerMoveNoBase::View' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveNoBase, ClientMovementMode) == 0x000040, "Member 'Character_ServerMoveNoBase::ClientMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMoveOld \ +static_assert(alignof(Character_ServerMoveOld) == 0x000008, "Wrong alignment on Character_ServerMoveOld"); \ +static_assert(sizeof(Character_ServerMoveOld) == 0x000028, "Wrong size on Character_ServerMoveOld"); \ +static_assert(offsetof(Character_ServerMoveOld, OldTimeStamp) == 0x000000, "Member 'Character_ServerMoveOld::OldTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveOld, OldAccel) == 0x000008, "Member 'Character_ServerMoveOld::OldAccel' has a wrong offset!"); \ +static_assert(offsetof(Character_ServerMoveOld, OldMoveFlags) == 0x000020, "Member 'Character_ServerMoveOld::OldMoveFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_ServerMovePacked \ +static_assert(alignof(Character_ServerMovePacked) == 0x000008, "Wrong alignment on Character_ServerMovePacked"); \ +static_assert(sizeof(Character_ServerMovePacked) == 0x0000C8, "Wrong size on Character_ServerMovePacked"); \ +static_assert(offsetof(Character_ServerMovePacked, PackedBits) == 0x000000, "Member 'Character_ServerMovePacked::PackedBits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_StopAnimMontage \ +static_assert(alignof(Character_StopAnimMontage) == 0x000008, "Wrong alignment on Character_StopAnimMontage"); \ +static_assert(sizeof(Character_StopAnimMontage) == 0x000008, "Wrong size on Character_StopAnimMontage"); \ +static_assert(offsetof(Character_StopAnimMontage, AnimMontage) == 0x000000, "Member 'Character_StopAnimMontage::AnimMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_UnCrouch \ +static_assert(alignof(Character_UnCrouch) == 0x000001, "Wrong alignment on Character_UnCrouch"); \ +static_assert(sizeof(Character_UnCrouch) == 0x000001, "Wrong size on Character_UnCrouch"); \ +static_assert(offsetof(Character_UnCrouch, bClientSimulation) == 0x000000, "Member 'Character_UnCrouch::bClientSimulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_CanCrouch \ +static_assert(alignof(Character_CanCrouch) == 0x000001, "Wrong alignment on Character_CanCrouch"); \ +static_assert(sizeof(Character_CanCrouch) == 0x000001, "Wrong size on Character_CanCrouch"); \ +static_assert(offsetof(Character_CanCrouch, ReturnValue) == 0x000000, "Member 'Character_CanCrouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_CanJump \ +static_assert(alignof(Character_CanJump) == 0x000001, "Wrong alignment on Character_CanJump"); \ +static_assert(sizeof(Character_CanJump) == 0x000001, "Wrong size on Character_CanJump"); \ +static_assert(offsetof(Character_CanJump, ReturnValue) == 0x000000, "Member 'Character_CanJump::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_CanJumpInternal \ +static_assert(alignof(Character_CanJumpInternal) == 0x000001, "Wrong alignment on Character_CanJumpInternal"); \ +static_assert(sizeof(Character_CanJumpInternal) == 0x000001, "Wrong size on Character_CanJumpInternal"); \ +static_assert(offsetof(Character_CanJumpInternal, ReturnValue) == 0x000000, "Member 'Character_CanJumpInternal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_GetAnimRootMotionTranslationScale \ +static_assert(alignof(Character_GetAnimRootMotionTranslationScale) == 0x000004, "Wrong alignment on Character_GetAnimRootMotionTranslationScale"); \ +static_assert(sizeof(Character_GetAnimRootMotionTranslationScale) == 0x000004, "Wrong size on Character_GetAnimRootMotionTranslationScale"); \ +static_assert(offsetof(Character_GetAnimRootMotionTranslationScale, ReturnValue) == 0x000000, "Member 'Character_GetAnimRootMotionTranslationScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_GetBaseRotationOffsetRotator \ +static_assert(alignof(Character_GetBaseRotationOffsetRotator) == 0x000008, "Wrong alignment on Character_GetBaseRotationOffsetRotator"); \ +static_assert(sizeof(Character_GetBaseRotationOffsetRotator) == 0x000018, "Wrong size on Character_GetBaseRotationOffsetRotator"); \ +static_assert(offsetof(Character_GetBaseRotationOffsetRotator, ReturnValue) == 0x000000, "Member 'Character_GetBaseRotationOffsetRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_GetBaseTranslationOffset \ +static_assert(alignof(Character_GetBaseTranslationOffset) == 0x000008, "Wrong alignment on Character_GetBaseTranslationOffset"); \ +static_assert(sizeof(Character_GetBaseTranslationOffset) == 0x000018, "Wrong size on Character_GetBaseTranslationOffset"); \ +static_assert(offsetof(Character_GetBaseTranslationOffset, ReturnValue) == 0x000000, "Member 'Character_GetBaseTranslationOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_GetCurrentMontage \ +static_assert(alignof(Character_GetCurrentMontage) == 0x000008, "Wrong alignment on Character_GetCurrentMontage"); \ +static_assert(sizeof(Character_GetCurrentMontage) == 0x000008, "Wrong size on Character_GetCurrentMontage"); \ +static_assert(offsetof(Character_GetCurrentMontage, ReturnValue) == 0x000000, "Member 'Character_GetCurrentMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_HasAnyRootMotion \ +static_assert(alignof(Character_HasAnyRootMotion) == 0x000001, "Wrong alignment on Character_HasAnyRootMotion"); \ +static_assert(sizeof(Character_HasAnyRootMotion) == 0x000001, "Wrong size on Character_HasAnyRootMotion"); \ +static_assert(offsetof(Character_HasAnyRootMotion, ReturnValue) == 0x000000, "Member 'Character_HasAnyRootMotion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_IsJumpProvidingForce \ +static_assert(alignof(Character_IsJumpProvidingForce) == 0x000001, "Wrong alignment on Character_IsJumpProvidingForce"); \ +static_assert(sizeof(Character_IsJumpProvidingForce) == 0x000001, "Wrong size on Character_IsJumpProvidingForce"); \ +static_assert(offsetof(Character_IsJumpProvidingForce, ReturnValue) == 0x000000, "Member 'Character_IsJumpProvidingForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_IsPlayingNetworkedRootMotionMontage \ +static_assert(alignof(Character_IsPlayingNetworkedRootMotionMontage) == 0x000001, "Wrong alignment on Character_IsPlayingNetworkedRootMotionMontage"); \ +static_assert(sizeof(Character_IsPlayingNetworkedRootMotionMontage) == 0x000001, "Wrong size on Character_IsPlayingNetworkedRootMotionMontage"); \ +static_assert(offsetof(Character_IsPlayingNetworkedRootMotionMontage, ReturnValue) == 0x000000, "Member 'Character_IsPlayingNetworkedRootMotionMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Character_IsPlayingRootMotion \ +static_assert(alignof(Character_IsPlayingRootMotion) == 0x000001, "Wrong alignment on Character_IsPlayingRootMotion"); \ +static_assert(sizeof(Character_IsPlayingRootMotion) == 0x000001, "Wrong size on Character_IsPlayingRootMotion"); \ +static_assert(offsetof(Character_IsPlayingRootMotion, ReturnValue) == 0x000000, "Member 'Character_IsPlayingRootMotion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACharacter \ +static_assert(alignof(ACharacter) == 0x000010, "Wrong alignment on ACharacter"); \ +static_assert(sizeof(ACharacter) == 0x000680, "Wrong size on ACharacter"); \ +static_assert(offsetof(ACharacter, Mesh) == 0x000320, "Member 'ACharacter::Mesh' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, CharacterMovement) == 0x000328, "Member 'ACharacter::CharacterMovement' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, CapsuleComponent) == 0x000330, "Member 'ACharacter::CapsuleComponent' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, BasedMovement) == 0x000338, "Member 'ACharacter::BasedMovement' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ReplicatedBasedMovement) == 0x000388, "Member 'ACharacter::ReplicatedBasedMovement' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, AnimRootMotionTranslationScale) == 0x0003D8, "Member 'ACharacter::AnimRootMotionTranslationScale' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, BaseTranslationOffset) == 0x0003E0, "Member 'ACharacter::BaseTranslationOffset' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, BaseRotationOffset) == 0x000400, "Member 'ACharacter::BaseRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ReplicatedServerLastTransformUpdateTimeStamp) == 0x000420, "Member 'ACharacter::ReplicatedServerLastTransformUpdateTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ReplayLastTransformUpdateTimeStamp) == 0x000424, "Member 'ACharacter::ReplayLastTransformUpdateTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ReplicatedMovementMode) == 0x000428, "Member 'ACharacter::ReplicatedMovementMode' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ReplicatedGravityDirection) == 0x000430, "Member 'ACharacter::ReplicatedGravityDirection' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, bInBaseReplication) == 0x000448, "Member 'ACharacter::bInBaseReplication' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, CrouchedEyeHeight) == 0x000468, "Member 'ACharacter::CrouchedEyeHeight' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpKeyHoldTime) == 0x000470, "Member 'ACharacter::JumpKeyHoldTime' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpForceTimeRemaining) == 0x000474, "Member 'ACharacter::JumpForceTimeRemaining' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ProxyJumpForceStartedTime) == 0x000478, "Member 'ACharacter::ProxyJumpForceStartedTime' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpMaxHoldTime) == 0x00047C, "Member 'ACharacter::JumpMaxHoldTime' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpMaxCount) == 0x000480, "Member 'ACharacter::JumpMaxCount' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpCurrentCount) == 0x000484, "Member 'ACharacter::JumpCurrentCount' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, JumpCurrentCountPreJump) == 0x000488, "Member 'ACharacter::JumpCurrentCountPreJump' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, OnReachedJumpApex) == 0x000490, "Member 'ACharacter::OnReachedJumpApex' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, LandedDelegate) == 0x0004A0, "Member 'ACharacter::LandedDelegate' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, MovementModeChangedDelegate) == 0x0004B0, "Member 'ACharacter::MovementModeChangedDelegate' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, OnCharacterMovementUpdated) == 0x0004C0, "Member 'ACharacter::OnCharacterMovementUpdated' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, SavedRootMotion) == 0x0004D0, "Member 'ACharacter::SavedRootMotion' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, ClientRootMotionParams) == 0x000520, "Member 'ACharacter::ClientRootMotionParams' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, RootMotionRepMoves) == 0x000590, "Member 'ACharacter::RootMotionRepMoves' has a wrong offset!"); \ +static_assert(offsetof(ACharacter, RepRootMotion) == 0x0005A0, "Member 'ACharacter::RepRootMotion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInterface_ActorSubobject \ +static_assert(alignof(IInterface_ActorSubobject) == 0x000001, "Wrong alignment on IInterface_ActorSubobject"); \ +static_assert(sizeof(IInterface_ActorSubobject) == 0x000001, "Wrong size on IInterface_ActorSubobject"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSquareRoot \ +static_assert(alignof(UMaterialExpressionSquareRoot) == 0x000008, "Wrong alignment on UMaterialExpressionSquareRoot"); \ +static_assert(sizeof(UMaterialExpressionSquareRoot) == 0x0000D8, "Wrong size on UMaterialExpressionSquareRoot"); \ +static_assert(offsetof(UMaterialExpressionSquareRoot, Input) == 0x0000B0, "Member 'UMaterialExpressionSquareRoot::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAttractorParticle \ +static_assert(alignof(UParticleModuleAttractorParticle) == 0x000008, "Wrong alignment on UParticleModuleAttractorParticle"); \ +static_assert(sizeof(UParticleModuleAttractorParticle) == 0x0000B0, "Wrong size on UParticleModuleAttractorParticle"); \ +static_assert(offsetof(UParticleModuleAttractorParticle, EmitterName) == 0x000030, "Member 'UParticleModuleAttractorParticle::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorParticle, Range) == 0x000038, "Member 'UParticleModuleAttractorParticle::Range' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorParticle, Strength) == 0x000070, "Member 'UParticleModuleAttractorParticle::Strength' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorParticle, SelectionMethod) == 0x0000A4, "Member 'UParticleModuleAttractorParticle::SelectionMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorParticle, LastSelIndex) == 0x0000AC, "Member 'UParticleModuleAttractorParticle::LastSelIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSetLocal \ +static_assert(alignof(UMaterialExpressionSetLocal) == 0x000008, "Wrong alignment on UMaterialExpressionSetLocal"); \ +static_assert(sizeof(UMaterialExpressionSetLocal) == 0x0000E8, "Wrong size on UMaterialExpressionSetLocal"); \ +static_assert(offsetof(UMaterialExpressionSetLocal, Exec) == 0x0000B0, "Member 'UMaterialExpressionSetLocal::Exec' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSetLocal, Value) == 0x0000B8, "Member 'UMaterialExpressionSetLocal::Value' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSetLocal, LocalName) == 0x0000E0, "Member 'UMaterialExpressionSetLocal::LocalName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInterface_AsyncCompilation \ +static_assert(alignof(IInterface_AsyncCompilation) == 0x000001, "Wrong alignment on IInterface_AsyncCompilation"); \ +static_assert(sizeof(IInterface_AsyncCompilation) == 0x000001, "Wrong size on IInterface_AsyncCompilation"); \ + +#define DUMPER7_ASSERTS_UDrawFrustumComponent \ +static_assert(alignof(UDrawFrustumComponent) == 0x000010, "Wrong alignment on UDrawFrustumComponent"); \ +static_assert(sizeof(UDrawFrustumComponent) == 0x000590, "Wrong size on UDrawFrustumComponent"); \ +static_assert(offsetof(UDrawFrustumComponent, bFrustumEnabled) == 0x000570, "Member 'UDrawFrustumComponent::bFrustumEnabled' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, FrustumColor) == 0x000574, "Member 'UDrawFrustumComponent::FrustumColor' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, FrustumAngle) == 0x000578, "Member 'UDrawFrustumComponent::FrustumAngle' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, FrustumAspectRatio) == 0x00057C, "Member 'UDrawFrustumComponent::FrustumAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, FrustumStartDist) == 0x000580, "Member 'UDrawFrustumComponent::FrustumStartDist' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, FrustumEndDist) == 0x000584, "Member 'UDrawFrustumComponent::FrustumEndDist' has a wrong offset!"); \ +static_assert(offsetof(UDrawFrustumComponent, Texture) == 0x000588, "Member 'UDrawFrustumComponent::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBoneReferenceSkeletonProvider \ +static_assert(alignof(IBoneReferenceSkeletonProvider) == 0x000001, "Wrong alignment on IBoneReferenceSkeletonProvider"); \ +static_assert(sizeof(IBoneReferenceSkeletonProvider) == 0x000001, "Wrong size on IBoneReferenceSkeletonProvider"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_SetDataLayerInstanceRuntimeState \ +static_assert(alignof(DataLayerSubsystem_SetDataLayerInstanceRuntimeState) == 0x000008, "Wrong alignment on DataLayerSubsystem_SetDataLayerInstanceRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_SetDataLayerInstanceRuntimeState) == 0x000010, "Wrong size on DataLayerSubsystem_SetDataLayerInstanceRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerInstanceRuntimeState, InDataLayerAsset) == 0x000000, "Member 'DataLayerSubsystem_SetDataLayerInstanceRuntimeState::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerInstanceRuntimeState, InState) == 0x000008, "Member 'DataLayerSubsystem_SetDataLayerInstanceRuntimeState::InState' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerInstanceRuntimeState, bInIsRecursive) == 0x000009, "Member 'DataLayerSubsystem_SetDataLayerInstanceRuntimeState::bInIsRecursive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_SetDataLayerRuntimeState \ +static_assert(alignof(DataLayerSubsystem_SetDataLayerRuntimeState) == 0x000004, "Wrong alignment on DataLayerSubsystem_SetDataLayerRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_SetDataLayerRuntimeState) == 0x00000C, "Wrong size on DataLayerSubsystem_SetDataLayerRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeState, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_SetDataLayerRuntimeState::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeState, InState) == 0x000008, "Member 'DataLayerSubsystem_SetDataLayerRuntimeState::InState' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeState, bInIsRecursive) == 0x000009, "Member 'DataLayerSubsystem_SetDataLayerRuntimeState::bInIsRecursive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_SetDataLayerRuntimeStateByLabel \ +static_assert(alignof(DataLayerSubsystem_SetDataLayerRuntimeStateByLabel) == 0x000004, "Wrong alignment on DataLayerSubsystem_SetDataLayerRuntimeStateByLabel"); \ +static_assert(sizeof(DataLayerSubsystem_SetDataLayerRuntimeStateByLabel) == 0x00000C, "Wrong size on DataLayerSubsystem_SetDataLayerRuntimeStateByLabel"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeStateByLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_SetDataLayerRuntimeStateByLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeStateByLabel, InState) == 0x000008, "Member 'DataLayerSubsystem_SetDataLayerRuntimeStateByLabel::InState' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerRuntimeStateByLabel, bInIsRecursive) == 0x000009, "Member 'DataLayerSubsystem_SetDataLayerRuntimeStateByLabel::bInIsRecursive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_SetDataLayerState \ +static_assert(alignof(DataLayerSubsystem_SetDataLayerState) == 0x000004, "Wrong alignment on DataLayerSubsystem_SetDataLayerState"); \ +static_assert(sizeof(DataLayerSubsystem_SetDataLayerState) == 0x00000C, "Wrong size on DataLayerSubsystem_SetDataLayerState"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerState, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_SetDataLayerState::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerState, InState) == 0x000008, "Member 'DataLayerSubsystem_SetDataLayerState::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_SetDataLayerStateByLabel \ +static_assert(alignof(DataLayerSubsystem_SetDataLayerStateByLabel) == 0x000004, "Wrong alignment on DataLayerSubsystem_SetDataLayerStateByLabel"); \ +static_assert(sizeof(DataLayerSubsystem_SetDataLayerStateByLabel) == 0x00000C, "Wrong size on DataLayerSubsystem_SetDataLayerStateByLabel"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerStateByLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_SetDataLayerStateByLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_SetDataLayerStateByLabel, InState) == 0x000008, "Member 'DataLayerSubsystem_SetDataLayerStateByLabel::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetActiveDataLayerNames \ +static_assert(alignof(DataLayerSubsystem_GetActiveDataLayerNames) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetActiveDataLayerNames"); \ +static_assert(sizeof(DataLayerSubsystem_GetActiveDataLayerNames) == 0x000050, "Wrong size on DataLayerSubsystem_GetActiveDataLayerNames"); \ +static_assert(offsetof(DataLayerSubsystem_GetActiveDataLayerNames, ReturnValue) == 0x000000, "Member 'DataLayerSubsystem_GetActiveDataLayerNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayer \ +static_assert(alignof(DataLayerSubsystem_GetDataLayer) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayer"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayer) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayer"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayer, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayer::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayer, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerEffectiveRuntimeState \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeState) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerEffectiveRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeState) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerEffectiveRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeState, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerEffectiveRuntimeState::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerEffectiveRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerFromLabel \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerFromLabel) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayerFromLabel"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerFromLabel) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayerFromLabel"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerFromLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerFromLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerFromLabel, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerFromLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerFromName \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerFromName) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayerFromName"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerFromName) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayerFromName"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerFromName, InDataLayerName) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerFromName::InDataLayerName' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerFromName, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerFromName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState, InDataLayerAsset) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerInstanceFromAsset \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerInstanceFromAsset) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayerInstanceFromAsset"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerInstanceFromAsset) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayerInstanceFromAsset"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceFromAsset, InDataLayerAsset) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerInstanceFromAsset::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceFromAsset, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerInstanceFromAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerInstanceRuntimeState \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerInstanceRuntimeState) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetDataLayerInstanceRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerInstanceRuntimeState) == 0x000010, "Wrong size on DataLayerSubsystem_GetDataLayerInstanceRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceRuntimeState, InDataLayerAsset) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerInstanceRuntimeState::InDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerInstanceRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerInstanceRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerRuntimeState \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerRuntimeState) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerRuntimeState"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerRuntimeState) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerRuntimeState"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerRuntimeState, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerRuntimeState::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerRuntimeState, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerRuntimeStateByLabel \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerRuntimeStateByLabel) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerRuntimeStateByLabel"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerRuntimeStateByLabel) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerRuntimeStateByLabel"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerRuntimeStateByLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerRuntimeStateByLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerRuntimeStateByLabel, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerRuntimeStateByLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerState \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerState) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerState"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerState) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerState"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerState, InDataLayer) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerState::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerState, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetDataLayerStateByLabel \ +static_assert(alignof(DataLayerSubsystem_GetDataLayerStateByLabel) == 0x000004, "Wrong alignment on DataLayerSubsystem_GetDataLayerStateByLabel"); \ +static_assert(sizeof(DataLayerSubsystem_GetDataLayerStateByLabel) == 0x00000C, "Wrong size on DataLayerSubsystem_GetDataLayerStateByLabel"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerStateByLabel, InDataLayerLabel) == 0x000000, "Member 'DataLayerSubsystem_GetDataLayerStateByLabel::InDataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(DataLayerSubsystem_GetDataLayerStateByLabel, ReturnValue) == 0x000008, "Member 'DataLayerSubsystem_GetDataLayerStateByLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerSubsystem_GetLoadedDataLayerNames \ +static_assert(alignof(DataLayerSubsystem_GetLoadedDataLayerNames) == 0x000008, "Wrong alignment on DataLayerSubsystem_GetLoadedDataLayerNames"); \ +static_assert(sizeof(DataLayerSubsystem_GetLoadedDataLayerNames) == 0x000050, "Wrong size on DataLayerSubsystem_GetLoadedDataLayerNames"); \ +static_assert(offsetof(DataLayerSubsystem_GetLoadedDataLayerNames, ReturnValue) == 0x000000, "Member 'DataLayerSubsystem_GetLoadedDataLayerNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerSubsystem \ +static_assert(alignof(UDataLayerSubsystem) == 0x000008, "Wrong alignment on UDataLayerSubsystem"); \ +static_assert(sizeof(UDataLayerSubsystem) == 0x000068, "Wrong size on UDataLayerSubsystem"); \ +static_assert(offsetof(UDataLayerSubsystem, OnDataLayerRuntimeStateChanged) == 0x000030, "Member 'UDataLayerSubsystem::OnDataLayerRuntimeStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerSubsystem, DataLayerLoadingPolicyClass) == 0x000040, "Member 'UDataLayerSubsystem::DataLayerLoadingPolicyClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionHairAttributes \ +static_assert(alignof(UMaterialExpressionHairAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionHairAttributes"); \ +static_assert(sizeof(UMaterialExpressionHairAttributes) == 0x0000B8, "Wrong size on UMaterialExpressionHairAttributes"); \ + +#define DUMPER7_ASSERTS_IInterface_CollisionDataProvider \ +static_assert(alignof(IInterface_CollisionDataProvider) == 0x000001, "Wrong alignment on IInterface_CollisionDataProvider"); \ +static_assert(sizeof(IInterface_CollisionDataProvider) == 0x000001, "Wrong size on IInterface_CollisionDataProvider"); \ + +#define DUMPER7_ASSERTS_IInterface_PostProcessVolume \ +static_assert(alignof(IInterface_PostProcessVolume) == 0x000001, "Wrong alignment on IInterface_PostProcessVolume"); \ +static_assert(sizeof(IInterface_PostProcessVolume) == 0x000001, "Wrong size on IInterface_PostProcessVolume"); \ + +#define DUMPER7_ASSERTS_IInterface_PreviewMeshProvider \ +static_assert(alignof(IInterface_PreviewMeshProvider) == 0x000001, "Wrong alignment on IInterface_PreviewMeshProvider"); \ +static_assert(sizeof(IInterface_PreviewMeshProvider) == 0x000001, "Wrong size on IInterface_PreviewMeshProvider"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPerInstanceCustomData \ +static_assert(alignof(UMaterialExpressionPerInstanceCustomData) == 0x000008, "Wrong alignment on UMaterialExpressionPerInstanceCustomData"); \ +static_assert(sizeof(UMaterialExpressionPerInstanceCustomData) == 0x0000E0, "Wrong size on UMaterialExpressionPerInstanceCustomData"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData, DefaultValue) == 0x0000B0, "Member 'UMaterialExpressionPerInstanceCustomData::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData, ConstDefaultValue) == 0x0000D8, "Member 'UMaterialExpressionPerInstanceCustomData::ConstDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData, DataIndex) == 0x0000DC, "Member 'UMaterialExpressionPerInstanceCustomData::DataIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleColorBase \ +static_assert(alignof(UParticleModuleColorBase) == 0x000008, "Wrong alignment on UParticleModuleColorBase"); \ +static_assert(sizeof(UParticleModuleColorBase) == 0x000030, "Wrong size on UParticleModuleColorBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleColor \ +static_assert(alignof(UParticleModuleColor) == 0x000008, "Wrong alignment on UParticleModuleColor"); \ +static_assert(sizeof(UParticleModuleColor) == 0x0000C8, "Wrong size on UParticleModuleColor"); \ +static_assert(offsetof(UParticleModuleColor, StartColor) == 0x000030, "Member 'UParticleModuleColor::StartColor' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleColor, StartAlpha) == 0x000090, "Member 'UParticleModuleColor::StartAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleColor_Seeded \ +static_assert(alignof(UParticleModuleColor_Seeded) == 0x000008, "Wrong alignment on UParticleModuleColor_Seeded"); \ +static_assert(sizeof(UParticleModuleColor_Seeded) == 0x0000E8, "Wrong size on UParticleModuleColor_Seeded"); \ +static_assert(offsetof(UParticleModuleColor_Seeded, RandomSeedInfo) == 0x0000C8, "Member 'UParticleModuleColor_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IPhysicsComponent \ +static_assert(alignof(IPhysicsComponent) == 0x000001, "Wrong alignment on IPhysicsComponent"); \ +static_assert(sizeof(IPhysicsComponent) == 0x000001, "Wrong size on IPhysicsComponent"); \ + +#define DUMPER7_ASSERTS_CurveLinearColorAtlas_GetCurvePosition \ +static_assert(alignof(CurveLinearColorAtlas_GetCurvePosition) == 0x000008, "Wrong alignment on CurveLinearColorAtlas_GetCurvePosition"); \ +static_assert(sizeof(CurveLinearColorAtlas_GetCurvePosition) == 0x000010, "Wrong size on CurveLinearColorAtlas_GetCurvePosition"); \ +static_assert(offsetof(CurveLinearColorAtlas_GetCurvePosition, InCurve) == 0x000000, "Member 'CurveLinearColorAtlas_GetCurvePosition::InCurve' has a wrong offset!"); \ +static_assert(offsetof(CurveLinearColorAtlas_GetCurvePosition, Position) == 0x000008, "Member 'CurveLinearColorAtlas_GetCurvePosition::Position' has a wrong offset!"); \ +static_assert(offsetof(CurveLinearColorAtlas_GetCurvePosition, ReturnValue) == 0x00000C, "Member 'CurveLinearColorAtlas_GetCurvePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveLinearColorAtlas \ +static_assert(alignof(UCurveLinearColorAtlas) == 0x000010, "Wrong alignment on UCurveLinearColorAtlas"); \ +static_assert(sizeof(UCurveLinearColorAtlas) == 0x0002A0, "Wrong size on UCurveLinearColorAtlas"); \ +static_assert(offsetof(UCurveLinearColorAtlas, TextureSize) == 0x000278, "Member 'UCurveLinearColorAtlas::TextureSize' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColorAtlas, TextureHeight) == 0x000280, "Member 'UCurveLinearColorAtlas::TextureHeight' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColorAtlas, GradientCurves) == 0x000288, "Member 'UCurveLinearColorAtlas::GradientCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPixelNormalWS \ +static_assert(alignof(UMaterialExpressionPixelNormalWS) == 0x000008, "Wrong alignment on UMaterialExpressionPixelNormalWS"); \ +static_assert(sizeof(UMaterialExpressionPixelNormalWS) == 0x0000B0, "Wrong size on UMaterialExpressionPixelNormalWS"); \ + +#define DUMPER7_ASSERTS_IISMPartitionInstanceManager \ +static_assert(alignof(IISMPartitionInstanceManager) == 0x000001, "Wrong alignment on IISMPartitionInstanceManager"); \ +static_assert(sizeof(IISMPartitionInstanceManager) == 0x000001, "Wrong size on IISMPartitionInstanceManager"); \ + +#define DUMPER7_ASSERTS_UParticleModuleKillBase \ +static_assert(alignof(UParticleModuleKillBase) == 0x000008, "Wrong alignment on UParticleModuleKillBase"); \ +static_assert(sizeof(UParticleModuleKillBase) == 0x000030, "Wrong size on UParticleModuleKillBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleKillHeight \ +static_assert(alignof(UParticleModuleKillHeight) == 0x000008, "Wrong alignment on UParticleModuleKillHeight"); \ +static_assert(sizeof(UParticleModuleKillHeight) == 0x000068, "Wrong size on UParticleModuleKillHeight"); \ +static_assert(offsetof(UParticleModuleKillHeight, Height) == 0x000030, "Member 'UParticleModuleKillHeight::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAttractorLine \ +static_assert(alignof(UParticleModuleAttractorLine) == 0x000008, "Wrong alignment on UParticleModuleAttractorLine"); \ +static_assert(sizeof(UParticleModuleAttractorLine) == 0x0000C0, "Wrong size on UParticleModuleAttractorLine"); \ +static_assert(offsetof(UParticleModuleAttractorLine, EndPoint0) == 0x000030, "Member 'UParticleModuleAttractorLine::EndPoint0' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorLine, EndPoint1) == 0x000048, "Member 'UParticleModuleAttractorLine::EndPoint1' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorLine, Range) == 0x000060, "Member 'UParticleModuleAttractorLine::Range' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAttractorLine, Strength) == 0x000090, "Member 'UParticleModuleAttractorLine::Strength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IISMPartitionInstanceManagerProvider \ +static_assert(alignof(IISMPartitionInstanceManagerProvider) == 0x000001, "Wrong alignment on IISMPartitionInstanceManagerProvider"); \ +static_assert(sizeof(IISMPartitionInstanceManagerProvider) == 0x000001, "Wrong size on IISMPartitionInstanceManagerProvider"); \ + +#define DUMPER7_ASSERTS_UDebugDrawService \ +static_assert(alignof(UDebugDrawService) == 0x000008, "Wrong alignment on UDebugDrawService"); \ +static_assert(sizeof(UDebugDrawService) == 0x000028, "Wrong size on UDebugDrawService"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSingleLayerWaterMaterialOutput \ +static_assert(alignof(UMaterialExpressionSingleLayerWaterMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionSingleLayerWaterMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionSingleLayerWaterMaterialOutput) == 0x000150, "Wrong size on UMaterialExpressionSingleLayerWaterMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionSingleLayerWaterMaterialOutput, ScatteringCoefficients) == 0x0000B0, "Member 'UMaterialExpressionSingleLayerWaterMaterialOutput::ScatteringCoefficients' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSingleLayerWaterMaterialOutput, AbsorptionCoefficients) == 0x0000D8, "Member 'UMaterialExpressionSingleLayerWaterMaterialOutput::AbsorptionCoefficients' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSingleLayerWaterMaterialOutput, PhaseG) == 0x000100, "Member 'UMaterialExpressionSingleLayerWaterMaterialOutput::PhaseG' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSingleLayerWaterMaterialOutput, ColorScaleBehindWater) == 0x000128, "Member 'UMaterialExpressionSingleLayerWaterMaterialOutput::ColorScaleBehindWater' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWorldPartitionObjectResolver \ +static_assert(alignof(IWorldPartitionObjectResolver) == 0x000001, "Wrong alignment on IWorldPartitionObjectResolver"); \ +static_assert(sizeof(IWorldPartitionObjectResolver) == 0x000001, "Wrong size on IWorldPartitionObjectResolver"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop \ +static_assert(alignof(SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop) == 0x000008, "Wrong alignment on SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop"); \ +static_assert(sizeof(SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop) == 0x000018, "Wrong size on SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop"); \ +static_assert(offsetof(SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop, DirectionalLight) == 0x000000, "Member 'SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop::DirectionalLight' has a wrong offset!"); \ +static_assert(offsetof(SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop, ReturnValue) == 0x000008, "Member 'SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection \ +static_assert(alignof(SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection) == 0x000008, "Wrong alignment on SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection"); \ +static_assert(sizeof(SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection) == 0x000020, "Wrong size on SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection"); \ +static_assert(offsetof(SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection, AtmosphereLightIndex) == 0x000000, "Member 'SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection::AtmosphereLightIndex' has a wrong offset!"); \ +static_assert(offsetof(SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection, ReturnValue) == 0x000008, "Member 'SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden \ +static_assert(alignof(SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden"); \ +static_assert(sizeof(SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden) == 0x000008, "Wrong size on SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden"); \ +static_assert(offsetof(SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden, AtmosphereLightIndex) == 0x000000, "Member 'SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden::AtmosphereLightIndex' has a wrong offset!"); \ +static_assert(offsetof(SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden, ReturnValue) == 0x000004, "Member 'SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_OverrideAtmosphereLightDirection \ +static_assert(alignof(SkyAtmosphereComponent_OverrideAtmosphereLightDirection) == 0x000008, "Wrong alignment on SkyAtmosphereComponent_OverrideAtmosphereLightDirection"); \ +static_assert(sizeof(SkyAtmosphereComponent_OverrideAtmosphereLightDirection) == 0x000020, "Wrong size on SkyAtmosphereComponent_OverrideAtmosphereLightDirection"); \ +static_assert(offsetof(SkyAtmosphereComponent_OverrideAtmosphereLightDirection, AtmosphereLightIndex) == 0x000000, "Member 'SkyAtmosphereComponent_OverrideAtmosphereLightDirection::AtmosphereLightIndex' has a wrong offset!"); \ +static_assert(offsetof(SkyAtmosphereComponent_OverrideAtmosphereLightDirection, LightDirection) == 0x000008, "Member 'SkyAtmosphereComponent_OverrideAtmosphereLightDirection::LightDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride \ +static_assert(alignof(SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride"); \ +static_assert(sizeof(SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride) == 0x000004, "Wrong size on SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride"); \ +static_assert(offsetof(SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride, AtmosphereLightIndex) == 0x000000, "Member 'SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride::AtmosphereLightIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale \ +static_assert(alignof(SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetAtmosphereHeight \ +static_assert(alignof(SkyAtmosphereComponent_SetAtmosphereHeight) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetAtmosphereHeight"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetAtmosphereHeight) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetAtmosphereHeight"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetAtmosphereHeight, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetAtmosphereHeight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetBottomRadius \ +static_assert(alignof(SkyAtmosphereComponent_SetBottomRadius) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetBottomRadius"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetBottomRadius) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetBottomRadius"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetBottomRadius, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetBottomRadius::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetGroundAlbedo \ +static_assert(alignof(SkyAtmosphereComponent_SetGroundAlbedo) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetGroundAlbedo"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetGroundAlbedo) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetGroundAlbedo"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetGroundAlbedo, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetGroundAlbedo::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetHeightFogContribution \ +static_assert(alignof(SkyAtmosphereComponent_SetHeightFogContribution) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetHeightFogContribution"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetHeightFogContribution) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetHeightFogContribution"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetHeightFogContribution, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetHeightFogContribution::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieAbsorption \ +static_assert(alignof(SkyAtmosphereComponent_SetMieAbsorption) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieAbsorption"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieAbsorption) == 0x000010, "Wrong size on SkyAtmosphereComponent_SetMieAbsorption"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieAbsorption, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieAbsorption::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieAbsorptionScale \ +static_assert(alignof(SkyAtmosphereComponent_SetMieAbsorptionScale) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieAbsorptionScale"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieAbsorptionScale) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetMieAbsorptionScale"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieAbsorptionScale, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieAbsorptionScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieAnisotropy \ +static_assert(alignof(SkyAtmosphereComponent_SetMieAnisotropy) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieAnisotropy"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieAnisotropy) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetMieAnisotropy"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieAnisotropy, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieAnisotropy::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieExponentialDistribution \ +static_assert(alignof(SkyAtmosphereComponent_SetMieExponentialDistribution) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieExponentialDistribution"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieExponentialDistribution) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetMieExponentialDistribution"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieExponentialDistribution, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieExponentialDistribution::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieScattering \ +static_assert(alignof(SkyAtmosphereComponent_SetMieScattering) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieScattering"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieScattering) == 0x000010, "Wrong size on SkyAtmosphereComponent_SetMieScattering"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieScattering, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieScattering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMieScatteringScale \ +static_assert(alignof(SkyAtmosphereComponent_SetMieScatteringScale) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMieScatteringScale"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMieScatteringScale) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetMieScatteringScale"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMieScatteringScale, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMieScatteringScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetMultiScatteringFactor \ +static_assert(alignof(SkyAtmosphereComponent_SetMultiScatteringFactor) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetMultiScatteringFactor"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetMultiScatteringFactor) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetMultiScatteringFactor"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetMultiScatteringFactor, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetMultiScatteringFactor::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetOtherAbsorption \ +static_assert(alignof(SkyAtmosphereComponent_SetOtherAbsorption) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetOtherAbsorption"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetOtherAbsorption) == 0x000010, "Wrong size on SkyAtmosphereComponent_SetOtherAbsorption"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetOtherAbsorption, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetOtherAbsorption::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetOtherAbsorptionScale \ +static_assert(alignof(SkyAtmosphereComponent_SetOtherAbsorptionScale) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetOtherAbsorptionScale"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetOtherAbsorptionScale) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetOtherAbsorptionScale"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetOtherAbsorptionScale, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetOtherAbsorptionScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetRayleighExponentialDistribution \ +static_assert(alignof(SkyAtmosphereComponent_SetRayleighExponentialDistribution) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetRayleighExponentialDistribution"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetRayleighExponentialDistribution) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetRayleighExponentialDistribution"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetRayleighExponentialDistribution, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetRayleighExponentialDistribution::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetRayleighScattering \ +static_assert(alignof(SkyAtmosphereComponent_SetRayleighScattering) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetRayleighScattering"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetRayleighScattering) == 0x000010, "Wrong size on SkyAtmosphereComponent_SetRayleighScattering"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetRayleighScattering, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetRayleighScattering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetRayleighScatteringScale \ +static_assert(alignof(SkyAtmosphereComponent_SetRayleighScatteringScale) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetRayleighScatteringScale"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetRayleighScatteringScale) == 0x000004, "Wrong size on SkyAtmosphereComponent_SetRayleighScatteringScale"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetRayleighScatteringScale, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetRayleighScatteringScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyAtmosphereComponent_SetSkyLuminanceFactor \ +static_assert(alignof(SkyAtmosphereComponent_SetSkyLuminanceFactor) == 0x000004, "Wrong alignment on SkyAtmosphereComponent_SetSkyLuminanceFactor"); \ +static_assert(sizeof(SkyAtmosphereComponent_SetSkyLuminanceFactor) == 0x000010, "Wrong size on SkyAtmosphereComponent_SetSkyLuminanceFactor"); \ +static_assert(offsetof(SkyAtmosphereComponent_SetSkyLuminanceFactor, NewValue) == 0x000000, "Member 'SkyAtmosphereComponent_SetSkyLuminanceFactor::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkyAtmosphereComponent \ +static_assert(alignof(USkyAtmosphereComponent) == 0x000010, "Wrong alignment on USkyAtmosphereComponent"); \ +static_assert(sizeof(USkyAtmosphereComponent) == 0x0003A0, "Wrong size on USkyAtmosphereComponent"); \ +static_assert(offsetof(USkyAtmosphereComponent, TransformMode) == 0x0002A0, "Member 'USkyAtmosphereComponent::TransformMode' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, BottomRadius) == 0x0002A4, "Member 'USkyAtmosphereComponent::BottomRadius' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, GroundAlbedo) == 0x0002A8, "Member 'USkyAtmosphereComponent::GroundAlbedo' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, AtmosphereHeight) == 0x0002AC, "Member 'USkyAtmosphereComponent::AtmosphereHeight' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MultiScatteringFactor) == 0x0002B0, "Member 'USkyAtmosphereComponent::MultiScatteringFactor' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, TraceSampleCountScale) == 0x0002B4, "Member 'USkyAtmosphereComponent::TraceSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, RayleighScatteringScale) == 0x0002B8, "Member 'USkyAtmosphereComponent::RayleighScatteringScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, RayleighScattering) == 0x0002BC, "Member 'USkyAtmosphereComponent::RayleighScattering' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, RayleighExponentialDistribution) == 0x0002CC, "Member 'USkyAtmosphereComponent::RayleighExponentialDistribution' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieScatteringScale) == 0x0002D0, "Member 'USkyAtmosphereComponent::MieScatteringScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieScattering) == 0x0002D4, "Member 'USkyAtmosphereComponent::MieScattering' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieAbsorptionScale) == 0x0002E4, "Member 'USkyAtmosphereComponent::MieAbsorptionScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieAbsorption) == 0x0002E8, "Member 'USkyAtmosphereComponent::MieAbsorption' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieAnisotropy) == 0x0002F8, "Member 'USkyAtmosphereComponent::MieAnisotropy' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, MieExponentialDistribution) == 0x0002FC, "Member 'USkyAtmosphereComponent::MieExponentialDistribution' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, OtherAbsorptionScale) == 0x000300, "Member 'USkyAtmosphereComponent::OtherAbsorptionScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, OtherAbsorption) == 0x000304, "Member 'USkyAtmosphereComponent::OtherAbsorption' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, OtherTentDistribution) == 0x000314, "Member 'USkyAtmosphereComponent::OtherTentDistribution' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, SkyLuminanceFactor) == 0x000320, "Member 'USkyAtmosphereComponent::SkyLuminanceFactor' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, AerialPespectiveViewDistanceScale) == 0x000330, "Member 'USkyAtmosphereComponent::AerialPespectiveViewDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, HeightFogContribution) == 0x000334, "Member 'USkyAtmosphereComponent::HeightFogContribution' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, TransmittanceMinLightElevationAngle) == 0x000338, "Member 'USkyAtmosphereComponent::TransmittanceMinLightElevationAngle' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, AerialPerspectiveStartDepth) == 0x00033C, "Member 'USkyAtmosphereComponent::AerialPerspectiveStartDepth' has a wrong offset!"); \ +static_assert(offsetof(USkyAtmosphereComponent, bStaticLightingBuiltGUID) == 0x000380, "Member 'USkyAtmosphereComponent::bStaticLightingBuiltGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsCurrency_Float \ +static_assert(alignof(KismetTextLibrary_AsCurrency_Float) == 0x000008, "Wrong alignment on KismetTextLibrary_AsCurrency_Float"); \ +static_assert(sizeof(KismetTextLibrary_AsCurrency_Float) == 0x000040, "Wrong size on KismetTextLibrary_AsCurrency_Float"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, Value) == 0x000000, "Member 'KismetTextLibrary_AsCurrency_Float::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, RoundingMode) == 0x000004, "Member 'KismetTextLibrary_AsCurrency_Float::RoundingMode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, bAlwaysSign) == 0x000005, "Member 'KismetTextLibrary_AsCurrency_Float::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, bUseGrouping) == 0x000006, "Member 'KismetTextLibrary_AsCurrency_Float::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, MinimumIntegralDigits) == 0x000008, "Member 'KismetTextLibrary_AsCurrency_Float::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, MaximumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_AsCurrency_Float::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, MinimumFractionalDigits) == 0x000010, "Member 'KismetTextLibrary_AsCurrency_Float::MinimumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, MaximumFractionalDigits) == 0x000014, "Member 'KismetTextLibrary_AsCurrency_Float::MaximumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, CurrencyCode) == 0x000018, "Member 'KismetTextLibrary_AsCurrency_Float::CurrencyCode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Float, ReturnValue) == 0x000028, "Member 'KismetTextLibrary_AsCurrency_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsCurrency_Integer \ +static_assert(alignof(KismetTextLibrary_AsCurrency_Integer) == 0x000008, "Wrong alignment on KismetTextLibrary_AsCurrency_Integer"); \ +static_assert(sizeof(KismetTextLibrary_AsCurrency_Integer) == 0x000040, "Wrong size on KismetTextLibrary_AsCurrency_Integer"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, Value) == 0x000000, "Member 'KismetTextLibrary_AsCurrency_Integer::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, RoundingMode) == 0x000004, "Member 'KismetTextLibrary_AsCurrency_Integer::RoundingMode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, bAlwaysSign) == 0x000005, "Member 'KismetTextLibrary_AsCurrency_Integer::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, bUseGrouping) == 0x000006, "Member 'KismetTextLibrary_AsCurrency_Integer::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, MinimumIntegralDigits) == 0x000008, "Member 'KismetTextLibrary_AsCurrency_Integer::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, MaximumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_AsCurrency_Integer::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, MinimumFractionalDigits) == 0x000010, "Member 'KismetTextLibrary_AsCurrency_Integer::MinimumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, MaximumFractionalDigits) == 0x000014, "Member 'KismetTextLibrary_AsCurrency_Integer::MaximumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, CurrencyCode) == 0x000018, "Member 'KismetTextLibrary_AsCurrency_Integer::CurrencyCode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrency_Integer, ReturnValue) == 0x000028, "Member 'KismetTextLibrary_AsCurrency_Integer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsCurrencyBase \ +static_assert(alignof(KismetTextLibrary_AsCurrencyBase) == 0x000008, "Wrong alignment on KismetTextLibrary_AsCurrencyBase"); \ +static_assert(sizeof(KismetTextLibrary_AsCurrencyBase) == 0x000030, "Wrong size on KismetTextLibrary_AsCurrencyBase"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrencyBase, BaseValue) == 0x000000, "Member 'KismetTextLibrary_AsCurrencyBase::BaseValue' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrencyBase, CurrencyCode) == 0x000008, "Member 'KismetTextLibrary_AsCurrencyBase::CurrencyCode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsCurrencyBase, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_AsCurrencyBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsDate_DateTime \ +static_assert(alignof(KismetTextLibrary_AsDate_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsDate_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsDate_DateTime) == 0x000020, "Wrong size on KismetTextLibrary_AsDate_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsDate_DateTime, InDateTime) == 0x000000, "Member 'KismetTextLibrary_AsDate_DateTime::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsDate_DateTime, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_AsDate_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsDateTime_DateTime \ +static_assert(alignof(KismetTextLibrary_AsDateTime_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsDateTime_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsDateTime_DateTime) == 0x000020, "Wrong size on KismetTextLibrary_AsDateTime_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsDateTime_DateTime, In) == 0x000000, "Member 'KismetTextLibrary_AsDateTime_DateTime::In' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsDateTime_DateTime, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_AsDateTime_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsPercent_Float \ +static_assert(alignof(KismetTextLibrary_AsPercent_Float) == 0x000008, "Wrong alignment on KismetTextLibrary_AsPercent_Float"); \ +static_assert(sizeof(KismetTextLibrary_AsPercent_Float) == 0x000030, "Wrong size on KismetTextLibrary_AsPercent_Float"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, Value) == 0x000000, "Member 'KismetTextLibrary_AsPercent_Float::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, RoundingMode) == 0x000004, "Member 'KismetTextLibrary_AsPercent_Float::RoundingMode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, bAlwaysSign) == 0x000005, "Member 'KismetTextLibrary_AsPercent_Float::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, bUseGrouping) == 0x000006, "Member 'KismetTextLibrary_AsPercent_Float::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, MinimumIntegralDigits) == 0x000008, "Member 'KismetTextLibrary_AsPercent_Float::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, MaximumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_AsPercent_Float::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, MinimumFractionalDigits) == 0x000010, "Member 'KismetTextLibrary_AsPercent_Float::MinimumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, MaximumFractionalDigits) == 0x000014, "Member 'KismetTextLibrary_AsPercent_Float::MaximumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsPercent_Float, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_AsPercent_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsTime_DateTime \ +static_assert(alignof(KismetTextLibrary_AsTime_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsTime_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsTime_DateTime) == 0x000020, "Wrong size on KismetTextLibrary_AsTime_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsTime_DateTime, In) == 0x000000, "Member 'KismetTextLibrary_AsTime_DateTime::In' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTime_DateTime, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_AsTime_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsTimespan_Timespan \ +static_assert(alignof(KismetTextLibrary_AsTimespan_Timespan) == 0x000008, "Wrong alignment on KismetTextLibrary_AsTimespan_Timespan"); \ +static_assert(sizeof(KismetTextLibrary_AsTimespan_Timespan) == 0x000020, "Wrong size on KismetTextLibrary_AsTimespan_Timespan"); \ +static_assert(offsetof(KismetTextLibrary_AsTimespan_Timespan, InTimespan) == 0x000000, "Member 'KismetTextLibrary_AsTimespan_Timespan::InTimespan' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimespan_Timespan, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_AsTimespan_Timespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsTimeZoneDate_DateTime \ +static_assert(alignof(KismetTextLibrary_AsTimeZoneDate_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsTimeZoneDate_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsTimeZoneDate_DateTime) == 0x000030, "Wrong size on KismetTextLibrary_AsTimeZoneDate_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDate_DateTime, InDateTime) == 0x000000, "Member 'KismetTextLibrary_AsTimeZoneDate_DateTime::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDate_DateTime, InTimeZone) == 0x000008, "Member 'KismetTextLibrary_AsTimeZoneDate_DateTime::InTimeZone' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDate_DateTime, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_AsTimeZoneDate_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsTimeZoneDateTime_DateTime \ +static_assert(alignof(KismetTextLibrary_AsTimeZoneDateTime_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsTimeZoneDateTime_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsTimeZoneDateTime_DateTime) == 0x000030, "Wrong size on KismetTextLibrary_AsTimeZoneDateTime_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDateTime_DateTime, InDateTime) == 0x000000, "Member 'KismetTextLibrary_AsTimeZoneDateTime_DateTime::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDateTime_DateTime, InTimeZone) == 0x000008, "Member 'KismetTextLibrary_AsTimeZoneDateTime_DateTime::InTimeZone' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneDateTime_DateTime, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_AsTimeZoneDateTime_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_AsTimeZoneTime_DateTime \ +static_assert(alignof(KismetTextLibrary_AsTimeZoneTime_DateTime) == 0x000008, "Wrong alignment on KismetTextLibrary_AsTimeZoneTime_DateTime"); \ +static_assert(sizeof(KismetTextLibrary_AsTimeZoneTime_DateTime) == 0x000030, "Wrong size on KismetTextLibrary_AsTimeZoneTime_DateTime"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneTime_DateTime, InDateTime) == 0x000000, "Member 'KismetTextLibrary_AsTimeZoneTime_DateTime::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneTime_DateTime, InTimeZone) == 0x000008, "Member 'KismetTextLibrary_AsTimeZoneTime_DateTime::InTimeZone' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_AsTimeZoneTime_DateTime, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_AsTimeZoneTime_DateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_BoolToText \ +static_assert(alignof(KismetTextLibrary_Conv_BoolToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_BoolToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_BoolToText) == 0x000020, "Wrong size on KismetTextLibrary_Conv_BoolToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_BoolToText, InBool) == 0x000000, "Member 'KismetTextLibrary_Conv_BoolToText::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_BoolToText, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_Conv_BoolToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_ByteToText \ +static_assert(alignof(KismetTextLibrary_Conv_ByteToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_ByteToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_ByteToText) == 0x000020, "Wrong size on KismetTextLibrary_Conv_ByteToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ByteToText, Value) == 0x000000, "Member 'KismetTextLibrary_Conv_ByteToText::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ByteToText, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_Conv_ByteToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_ColorToText \ +static_assert(alignof(KismetTextLibrary_Conv_ColorToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_ColorToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_ColorToText) == 0x000028, "Wrong size on KismetTextLibrary_Conv_ColorToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ColorToText, InColor) == 0x000000, "Member 'KismetTextLibrary_Conv_ColorToText::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ColorToText, ReturnValue) == 0x000010, "Member 'KismetTextLibrary_Conv_ColorToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_DoubleToText \ +static_assert(alignof(KismetTextLibrary_Conv_DoubleToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_DoubleToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_DoubleToText) == 0x000038, "Wrong size on KismetTextLibrary_Conv_DoubleToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, Value) == 0x000000, "Member 'KismetTextLibrary_Conv_DoubleToText::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, RoundingMode) == 0x000008, "Member 'KismetTextLibrary_Conv_DoubleToText::RoundingMode' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, bAlwaysSign) == 0x000009, "Member 'KismetTextLibrary_Conv_DoubleToText::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, bUseGrouping) == 0x00000A, "Member 'KismetTextLibrary_Conv_DoubleToText::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, MinimumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_Conv_DoubleToText::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, MaximumIntegralDigits) == 0x000010, "Member 'KismetTextLibrary_Conv_DoubleToText::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, MinimumFractionalDigits) == 0x000014, "Member 'KismetTextLibrary_Conv_DoubleToText::MinimumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, MaximumFractionalDigits) == 0x000018, "Member 'KismetTextLibrary_Conv_DoubleToText::MaximumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_DoubleToText, ReturnValue) == 0x000020, "Member 'KismetTextLibrary_Conv_DoubleToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_Int64ToText \ +static_assert(alignof(KismetTextLibrary_Conv_Int64ToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_Int64ToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_Int64ToText) == 0x000030, "Wrong size on KismetTextLibrary_Conv_Int64ToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, Value) == 0x000000, "Member 'KismetTextLibrary_Conv_Int64ToText::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, bAlwaysSign) == 0x000008, "Member 'KismetTextLibrary_Conv_Int64ToText::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, bUseGrouping) == 0x000009, "Member 'KismetTextLibrary_Conv_Int64ToText::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, MinimumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_Conv_Int64ToText::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, MaximumIntegralDigits) == 0x000010, "Member 'KismetTextLibrary_Conv_Int64ToText::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Int64ToText, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_Conv_Int64ToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_IntToText \ +static_assert(alignof(KismetTextLibrary_Conv_IntToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_IntToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_IntToText) == 0x000028, "Wrong size on KismetTextLibrary_Conv_IntToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, Value) == 0x000000, "Member 'KismetTextLibrary_Conv_IntToText::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, bAlwaysSign) == 0x000004, "Member 'KismetTextLibrary_Conv_IntToText::bAlwaysSign' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, bUseGrouping) == 0x000005, "Member 'KismetTextLibrary_Conv_IntToText::bUseGrouping' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, MinimumIntegralDigits) == 0x000008, "Member 'KismetTextLibrary_Conv_IntToText::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, MaximumIntegralDigits) == 0x00000C, "Member 'KismetTextLibrary_Conv_IntToText::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_IntToText, ReturnValue) == 0x000010, "Member 'KismetTextLibrary_Conv_IntToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_NameToText \ +static_assert(alignof(KismetTextLibrary_Conv_NameToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_NameToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_NameToText) == 0x000020, "Wrong size on KismetTextLibrary_Conv_NameToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_NameToText, InName) == 0x000000, "Member 'KismetTextLibrary_Conv_NameToText::InName' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_NameToText, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_Conv_NameToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_ObjectToText \ +static_assert(alignof(KismetTextLibrary_Conv_ObjectToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_ObjectToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_ObjectToText) == 0x000020, "Wrong size on KismetTextLibrary_Conv_ObjectToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ObjectToText, InObj) == 0x000000, "Member 'KismetTextLibrary_Conv_ObjectToText::InObj' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_ObjectToText, ReturnValue) == 0x000008, "Member 'KismetTextLibrary_Conv_ObjectToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_RotatorToText \ +static_assert(alignof(KismetTextLibrary_Conv_RotatorToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_RotatorToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_RotatorToText) == 0x000030, "Wrong size on KismetTextLibrary_Conv_RotatorToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_RotatorToText, InRot) == 0x000000, "Member 'KismetTextLibrary_Conv_RotatorToText::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_RotatorToText, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_Conv_RotatorToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_StringToText \ +static_assert(alignof(KismetTextLibrary_Conv_StringToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_StringToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_StringToText) == 0x000028, "Wrong size on KismetTextLibrary_Conv_StringToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_StringToText, InString) == 0x000000, "Member 'KismetTextLibrary_Conv_StringToText::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_StringToText, ReturnValue) == 0x000010, "Member 'KismetTextLibrary_Conv_StringToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_TextToString \ +static_assert(alignof(KismetTextLibrary_Conv_TextToString) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_TextToString"); \ +static_assert(sizeof(KismetTextLibrary_Conv_TextToString) == 0x000028, "Wrong size on KismetTextLibrary_Conv_TextToString"); \ +static_assert(offsetof(KismetTextLibrary_Conv_TextToString, InText) == 0x000000, "Member 'KismetTextLibrary_Conv_TextToString::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_TextToString, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_Conv_TextToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_TransformToText \ +static_assert(alignof(KismetTextLibrary_Conv_TransformToText) == 0x000010, "Wrong alignment on KismetTextLibrary_Conv_TransformToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_TransformToText) == 0x000080, "Wrong size on KismetTextLibrary_Conv_TransformToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_TransformToText, InTrans) == 0x000000, "Member 'KismetTextLibrary_Conv_TransformToText::InTrans' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_TransformToText, ReturnValue) == 0x000060, "Member 'KismetTextLibrary_Conv_TransformToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_Vector2dToText \ +static_assert(alignof(KismetTextLibrary_Conv_Vector2dToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_Vector2dToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_Vector2dToText) == 0x000028, "Wrong size on KismetTextLibrary_Conv_Vector2dToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Vector2dToText, InVec) == 0x000000, "Member 'KismetTextLibrary_Conv_Vector2dToText::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_Vector2dToText, ReturnValue) == 0x000010, "Member 'KismetTextLibrary_Conv_Vector2dToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Conv_VectorToText \ +static_assert(alignof(KismetTextLibrary_Conv_VectorToText) == 0x000008, "Wrong alignment on KismetTextLibrary_Conv_VectorToText"); \ +static_assert(sizeof(KismetTextLibrary_Conv_VectorToText) == 0x000030, "Wrong size on KismetTextLibrary_Conv_VectorToText"); \ +static_assert(offsetof(KismetTextLibrary_Conv_VectorToText, InVec) == 0x000000, "Member 'KismetTextLibrary_Conv_VectorToText::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Conv_VectorToText, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_Conv_VectorToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_EqualEqual_IgnoreCase_TextText \ +static_assert(alignof(KismetTextLibrary_EqualEqual_IgnoreCase_TextText) == 0x000008, "Wrong alignment on KismetTextLibrary_EqualEqual_IgnoreCase_TextText"); \ +static_assert(sizeof(KismetTextLibrary_EqualEqual_IgnoreCase_TextText) == 0x000038, "Wrong size on KismetTextLibrary_EqualEqual_IgnoreCase_TextText"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_IgnoreCase_TextText, A) == 0x000000, "Member 'KismetTextLibrary_EqualEqual_IgnoreCase_TextText::A' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_IgnoreCase_TextText, B) == 0x000018, "Member 'KismetTextLibrary_EqualEqual_IgnoreCase_TextText::B' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_IgnoreCase_TextText, ReturnValue) == 0x000030, "Member 'KismetTextLibrary_EqualEqual_IgnoreCase_TextText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_EqualEqual_TextText \ +static_assert(alignof(KismetTextLibrary_EqualEqual_TextText) == 0x000008, "Wrong alignment on KismetTextLibrary_EqualEqual_TextText"); \ +static_assert(sizeof(KismetTextLibrary_EqualEqual_TextText) == 0x000038, "Wrong size on KismetTextLibrary_EqualEqual_TextText"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_TextText, A) == 0x000000, "Member 'KismetTextLibrary_EqualEqual_TextText::A' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_TextText, B) == 0x000018, "Member 'KismetTextLibrary_EqualEqual_TextText::B' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_EqualEqual_TextText, ReturnValue) == 0x000030, "Member 'KismetTextLibrary_EqualEqual_TextText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_FindTextInLocalizationTable \ +static_assert(alignof(KismetTextLibrary_FindTextInLocalizationTable) == 0x000008, "Wrong alignment on KismetTextLibrary_FindTextInLocalizationTable"); \ +static_assert(sizeof(KismetTextLibrary_FindTextInLocalizationTable) == 0x000050, "Wrong size on KismetTextLibrary_FindTextInLocalizationTable"); \ +static_assert(offsetof(KismetTextLibrary_FindTextInLocalizationTable, Namespace) == 0x000000, "Member 'KismetTextLibrary_FindTextInLocalizationTable::Namespace' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_FindTextInLocalizationTable, Key) == 0x000010, "Member 'KismetTextLibrary_FindTextInLocalizationTable::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_FindTextInLocalizationTable, OutText) == 0x000020, "Member 'KismetTextLibrary_FindTextInLocalizationTable::OutText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_FindTextInLocalizationTable, SourceString) == 0x000038, "Member 'KismetTextLibrary_FindTextInLocalizationTable::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_FindTextInLocalizationTable, ReturnValue) == 0x000048, "Member 'KismetTextLibrary_FindTextInLocalizationTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_Format \ +static_assert(alignof(KismetTextLibrary_Format) == 0x000008, "Wrong alignment on KismetTextLibrary_Format"); \ +static_assert(sizeof(KismetTextLibrary_Format) == 0x000040, "Wrong size on KismetTextLibrary_Format"); \ +static_assert(offsetof(KismetTextLibrary_Format, InPattern) == 0x000000, "Member 'KismetTextLibrary_Format::InPattern' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Format, InArgs) == 0x000018, "Member 'KismetTextLibrary_Format::InArgs' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_Format, ReturnValue) == 0x000028, "Member 'KismetTextLibrary_Format::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_GetEmptyText \ +static_assert(alignof(KismetTextLibrary_GetEmptyText) == 0x000008, "Wrong alignment on KismetTextLibrary_GetEmptyText"); \ +static_assert(sizeof(KismetTextLibrary_GetEmptyText) == 0x000018, "Wrong size on KismetTextLibrary_GetEmptyText"); \ +static_assert(offsetof(KismetTextLibrary_GetEmptyText, ReturnValue) == 0x000000, "Member 'KismetTextLibrary_GetEmptyText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_IsPolyglotDataValid \ +static_assert(alignof(KismetTextLibrary_IsPolyglotDataValid) == 0x000008, "Wrong alignment on KismetTextLibrary_IsPolyglotDataValid"); \ +static_assert(sizeof(KismetTextLibrary_IsPolyglotDataValid) == 0x0000D8, "Wrong size on KismetTextLibrary_IsPolyglotDataValid"); \ +static_assert(offsetof(KismetTextLibrary_IsPolyglotDataValid, PolyglotData) == 0x000000, "Member 'KismetTextLibrary_IsPolyglotDataValid::PolyglotData' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_IsPolyglotDataValid, IsValid) == 0x0000B8, "Member 'KismetTextLibrary_IsPolyglotDataValid::IsValid' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_IsPolyglotDataValid, ErrorMessage) == 0x0000C0, "Member 'KismetTextLibrary_IsPolyglotDataValid::ErrorMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_NotEqual_IgnoreCase_TextText \ +static_assert(alignof(KismetTextLibrary_NotEqual_IgnoreCase_TextText) == 0x000008, "Wrong alignment on KismetTextLibrary_NotEqual_IgnoreCase_TextText"); \ +static_assert(sizeof(KismetTextLibrary_NotEqual_IgnoreCase_TextText) == 0x000038, "Wrong size on KismetTextLibrary_NotEqual_IgnoreCase_TextText"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_IgnoreCase_TextText, A) == 0x000000, "Member 'KismetTextLibrary_NotEqual_IgnoreCase_TextText::A' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_IgnoreCase_TextText, B) == 0x000018, "Member 'KismetTextLibrary_NotEqual_IgnoreCase_TextText::B' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_IgnoreCase_TextText, ReturnValue) == 0x000030, "Member 'KismetTextLibrary_NotEqual_IgnoreCase_TextText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_NotEqual_TextText \ +static_assert(alignof(KismetTextLibrary_NotEqual_TextText) == 0x000008, "Wrong alignment on KismetTextLibrary_NotEqual_TextText"); \ +static_assert(sizeof(KismetTextLibrary_NotEqual_TextText) == 0x000038, "Wrong size on KismetTextLibrary_NotEqual_TextText"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_TextText, A) == 0x000000, "Member 'KismetTextLibrary_NotEqual_TextText::A' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_TextText, B) == 0x000018, "Member 'KismetTextLibrary_NotEqual_TextText::B' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_NotEqual_TextText, ReturnValue) == 0x000030, "Member 'KismetTextLibrary_NotEqual_TextText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_PolyglotDataToText \ +static_assert(alignof(KismetTextLibrary_PolyglotDataToText) == 0x000008, "Wrong alignment on KismetTextLibrary_PolyglotDataToText"); \ +static_assert(sizeof(KismetTextLibrary_PolyglotDataToText) == 0x0000D0, "Wrong size on KismetTextLibrary_PolyglotDataToText"); \ +static_assert(offsetof(KismetTextLibrary_PolyglotDataToText, PolyglotData) == 0x000000, "Member 'KismetTextLibrary_PolyglotDataToText::PolyglotData' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_PolyglotDataToText, ReturnValue) == 0x0000B8, "Member 'KismetTextLibrary_PolyglotDataToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_StringTableIdAndKeyFromText \ +static_assert(alignof(KismetTextLibrary_StringTableIdAndKeyFromText) == 0x000008, "Wrong alignment on KismetTextLibrary_StringTableIdAndKeyFromText"); \ +static_assert(sizeof(KismetTextLibrary_StringTableIdAndKeyFromText) == 0x000038, "Wrong size on KismetTextLibrary_StringTableIdAndKeyFromText"); \ +static_assert(offsetof(KismetTextLibrary_StringTableIdAndKeyFromText, Text) == 0x000000, "Member 'KismetTextLibrary_StringTableIdAndKeyFromText::Text' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_StringTableIdAndKeyFromText, OutTableId) == 0x000018, "Member 'KismetTextLibrary_StringTableIdAndKeyFromText::OutTableId' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_StringTableIdAndKeyFromText, OutKey) == 0x000020, "Member 'KismetTextLibrary_StringTableIdAndKeyFromText::OutKey' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_StringTableIdAndKeyFromText, ReturnValue) == 0x000030, "Member 'KismetTextLibrary_StringTableIdAndKeyFromText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextFromStringTable \ +static_assert(alignof(KismetTextLibrary_TextFromStringTable) == 0x000008, "Wrong alignment on KismetTextLibrary_TextFromStringTable"); \ +static_assert(sizeof(KismetTextLibrary_TextFromStringTable) == 0x000030, "Wrong size on KismetTextLibrary_TextFromStringTable"); \ +static_assert(offsetof(KismetTextLibrary_TextFromStringTable, TableId) == 0x000000, "Member 'KismetTextLibrary_TextFromStringTable::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextFromStringTable, Key) == 0x000008, "Member 'KismetTextLibrary_TextFromStringTable::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextFromStringTable, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextFromStringTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextIsCultureInvariant \ +static_assert(alignof(KismetTextLibrary_TextIsCultureInvariant) == 0x000008, "Wrong alignment on KismetTextLibrary_TextIsCultureInvariant"); \ +static_assert(sizeof(KismetTextLibrary_TextIsCultureInvariant) == 0x000020, "Wrong size on KismetTextLibrary_TextIsCultureInvariant"); \ +static_assert(offsetof(KismetTextLibrary_TextIsCultureInvariant, InText) == 0x000000, "Member 'KismetTextLibrary_TextIsCultureInvariant::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextIsCultureInvariant, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextIsCultureInvariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextIsEmpty \ +static_assert(alignof(KismetTextLibrary_TextIsEmpty) == 0x000008, "Wrong alignment on KismetTextLibrary_TextIsEmpty"); \ +static_assert(sizeof(KismetTextLibrary_TextIsEmpty) == 0x000020, "Wrong size on KismetTextLibrary_TextIsEmpty"); \ +static_assert(offsetof(KismetTextLibrary_TextIsEmpty, InText) == 0x000000, "Member 'KismetTextLibrary_TextIsEmpty::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextIsEmpty, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextIsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextIsFromStringTable \ +static_assert(alignof(KismetTextLibrary_TextIsFromStringTable) == 0x000008, "Wrong alignment on KismetTextLibrary_TextIsFromStringTable"); \ +static_assert(sizeof(KismetTextLibrary_TextIsFromStringTable) == 0x000020, "Wrong size on KismetTextLibrary_TextIsFromStringTable"); \ +static_assert(offsetof(KismetTextLibrary_TextIsFromStringTable, Text) == 0x000000, "Member 'KismetTextLibrary_TextIsFromStringTable::Text' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextIsFromStringTable, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextIsFromStringTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextIsTransient \ +static_assert(alignof(KismetTextLibrary_TextIsTransient) == 0x000008, "Wrong alignment on KismetTextLibrary_TextIsTransient"); \ +static_assert(sizeof(KismetTextLibrary_TextIsTransient) == 0x000020, "Wrong size on KismetTextLibrary_TextIsTransient"); \ +static_assert(offsetof(KismetTextLibrary_TextIsTransient, InText) == 0x000000, "Member 'KismetTextLibrary_TextIsTransient::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextIsTransient, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextIsTransient::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextToLower \ +static_assert(alignof(KismetTextLibrary_TextToLower) == 0x000008, "Wrong alignment on KismetTextLibrary_TextToLower"); \ +static_assert(sizeof(KismetTextLibrary_TextToLower) == 0x000030, "Wrong size on KismetTextLibrary_TextToLower"); \ +static_assert(offsetof(KismetTextLibrary_TextToLower, InText) == 0x000000, "Member 'KismetTextLibrary_TextToLower::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextToLower, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextToLower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextToUpper \ +static_assert(alignof(KismetTextLibrary_TextToUpper) == 0x000008, "Wrong alignment on KismetTextLibrary_TextToUpper"); \ +static_assert(sizeof(KismetTextLibrary_TextToUpper) == 0x000030, "Wrong size on KismetTextLibrary_TextToUpper"); \ +static_assert(offsetof(KismetTextLibrary_TextToUpper, InText) == 0x000000, "Member 'KismetTextLibrary_TextToUpper::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextToUpper, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextToUpper::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextTrimPreceding \ +static_assert(alignof(KismetTextLibrary_TextTrimPreceding) == 0x000008, "Wrong alignment on KismetTextLibrary_TextTrimPreceding"); \ +static_assert(sizeof(KismetTextLibrary_TextTrimPreceding) == 0x000030, "Wrong size on KismetTextLibrary_TextTrimPreceding"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimPreceding, InText) == 0x000000, "Member 'KismetTextLibrary_TextTrimPreceding::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimPreceding, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextTrimPreceding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextTrimPrecedingAndTrailing \ +static_assert(alignof(KismetTextLibrary_TextTrimPrecedingAndTrailing) == 0x000008, "Wrong alignment on KismetTextLibrary_TextTrimPrecedingAndTrailing"); \ +static_assert(sizeof(KismetTextLibrary_TextTrimPrecedingAndTrailing) == 0x000030, "Wrong size on KismetTextLibrary_TextTrimPrecedingAndTrailing"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimPrecedingAndTrailing, InText) == 0x000000, "Member 'KismetTextLibrary_TextTrimPrecedingAndTrailing::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimPrecedingAndTrailing, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextTrimPrecedingAndTrailing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetTextLibrary_TextTrimTrailing \ +static_assert(alignof(KismetTextLibrary_TextTrimTrailing) == 0x000008, "Wrong alignment on KismetTextLibrary_TextTrimTrailing"); \ +static_assert(sizeof(KismetTextLibrary_TextTrimTrailing) == 0x000030, "Wrong size on KismetTextLibrary_TextTrimTrailing"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimTrailing, InText) == 0x000000, "Member 'KismetTextLibrary_TextTrimTrailing::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetTextLibrary_TextTrimTrailing, ReturnValue) == 0x000018, "Member 'KismetTextLibrary_TextTrimTrailing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetTextLibrary \ +static_assert(alignof(UKismetTextLibrary) == 0x000008, "Wrong alignment on UKismetTextLibrary"); \ +static_assert(sizeof(UKismetTextLibrary) == 0x000028, "Wrong size on UKismetTextLibrary"); \ + +#define DUMPER7_ASSERTS_ULocalPlayerSubsystem \ +static_assert(alignof(ULocalPlayerSubsystem) == 0x000008, "Wrong alignment on ULocalPlayerSubsystem"); \ +static_assert(sizeof(ULocalPlayerSubsystem) == 0x000030, "Wrong size on ULocalPlayerSubsystem"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLightmapUVs \ +static_assert(alignof(UMaterialExpressionLightmapUVs) == 0x000008, "Wrong alignment on UMaterialExpressionLightmapUVs"); \ +static_assert(sizeof(UMaterialExpressionLightmapUVs) == 0x0000B0, "Wrong size on UMaterialExpressionLightmapUVs"); \ + +#define DUMPER7_ASSERTS_ILevelInstanceEditorPivotInterface \ +static_assert(alignof(ILevelInstanceEditorPivotInterface) == 0x000001, "Wrong alignment on ILevelInstanceEditorPivotInterface"); \ +static_assert(sizeof(ILevelInstanceEditorPivotInterface) == 0x000001, "Wrong size on ILevelInstanceEditorPivotInterface"); \ + +#define DUMPER7_ASSERTS_SphereComponent_SetSphereRadius \ +static_assert(alignof(SphereComponent_SetSphereRadius) == 0x000004, "Wrong alignment on SphereComponent_SetSphereRadius"); \ +static_assert(sizeof(SphereComponent_SetSphereRadius) == 0x000008, "Wrong size on SphereComponent_SetSphereRadius"); \ +static_assert(offsetof(SphereComponent_SetSphereRadius, InSphereRadius) == 0x000000, "Member 'SphereComponent_SetSphereRadius::InSphereRadius' has a wrong offset!"); \ +static_assert(offsetof(SphereComponent_SetSphereRadius, bUpdateOverlaps) == 0x000004, "Member 'SphereComponent_SetSphereRadius::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SphereComponent_GetScaledSphereRadius \ +static_assert(alignof(SphereComponent_GetScaledSphereRadius) == 0x000004, "Wrong alignment on SphereComponent_GetScaledSphereRadius"); \ +static_assert(sizeof(SphereComponent_GetScaledSphereRadius) == 0x000004, "Wrong size on SphereComponent_GetScaledSphereRadius"); \ +static_assert(offsetof(SphereComponent_GetScaledSphereRadius, ReturnValue) == 0x000000, "Member 'SphereComponent_GetScaledSphereRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SphereComponent_GetShapeScale \ +static_assert(alignof(SphereComponent_GetShapeScale) == 0x000004, "Wrong alignment on SphereComponent_GetShapeScale"); \ +static_assert(sizeof(SphereComponent_GetShapeScale) == 0x000004, "Wrong size on SphereComponent_GetShapeScale"); \ +static_assert(offsetof(SphereComponent_GetShapeScale, ReturnValue) == 0x000000, "Member 'SphereComponent_GetShapeScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SphereComponent_GetUnscaledSphereRadius \ +static_assert(alignof(SphereComponent_GetUnscaledSphereRadius) == 0x000004, "Wrong alignment on SphereComponent_GetUnscaledSphereRadius"); \ +static_assert(sizeof(SphereComponent_GetUnscaledSphereRadius) == 0x000004, "Wrong size on SphereComponent_GetUnscaledSphereRadius"); \ +static_assert(offsetof(SphereComponent_GetUnscaledSphereRadius, ReturnValue) == 0x000000, "Member 'SphereComponent_GetUnscaledSphereRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USphereComponent \ +static_assert(alignof(USphereComponent) == 0x000010, "Wrong alignment on USphereComponent"); \ +static_assert(sizeof(USphereComponent) == 0x0005A0, "Wrong size on USphereComponent"); \ +static_assert(offsetof(USphereComponent, SphereRadius) == 0x000590, "Member 'USphereComponent::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawSphereComponent \ +static_assert(alignof(UDrawSphereComponent) == 0x000010, "Wrong alignment on UDrawSphereComponent"); \ +static_assert(sizeof(UDrawSphereComponent) == 0x0005A0, "Wrong size on UDrawSphereComponent"); \ + +#define DUMPER7_ASSERTS_World_K2_GetWorldSettings \ +static_assert(alignof(World_K2_GetWorldSettings) == 0x000008, "Wrong alignment on World_K2_GetWorldSettings"); \ +static_assert(sizeof(World_K2_GetWorldSettings) == 0x000008, "Wrong size on World_K2_GetWorldSettings"); \ +static_assert(offsetof(World_K2_GetWorldSettings, ReturnValue) == 0x000000, "Member 'World_K2_GetWorldSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_World_GetDataLayerManager \ +static_assert(alignof(World_GetDataLayerManager) == 0x000008, "Wrong alignment on World_GetDataLayerManager"); \ +static_assert(sizeof(World_GetDataLayerManager) == 0x000008, "Wrong size on World_GetDataLayerManager"); \ +static_assert(offsetof(World_GetDataLayerManager, ReturnValue) == 0x000000, "Member 'World_GetDataLayerManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorld \ +static_assert(alignof(UWorld) == 0x000008, "Wrong alignment on UWorld"); \ +static_assert(sizeof(UWorld) == 0x0008E8, "Wrong size on UWorld"); \ +static_assert(offsetof(UWorld, PersistentLevel) == 0x000030, "Member 'UWorld::PersistentLevel' has a wrong offset!"); \ +static_assert(offsetof(UWorld, NetDriver) == 0x000038, "Member 'UWorld::NetDriver' has a wrong offset!"); \ +static_assert(offsetof(UWorld, LineBatcher) == 0x000040, "Member 'UWorld::LineBatcher' has a wrong offset!"); \ +static_assert(offsetof(UWorld, PersistentLineBatcher) == 0x000048, "Member 'UWorld::PersistentLineBatcher' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ForegroundLineBatcher) == 0x000050, "Member 'UWorld::ForegroundLineBatcher' has a wrong offset!"); \ +static_assert(offsetof(UWorld, NetworkManager) == 0x000058, "Member 'UWorld::NetworkManager' has a wrong offset!"); \ +static_assert(offsetof(UWorld, PhysicsCollisionHandler) == 0x000060, "Member 'UWorld::PhysicsCollisionHandler' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ExtraReferencedObjects) == 0x000068, "Member 'UWorld::ExtraReferencedObjects' has a wrong offset!"); \ +static_assert(offsetof(UWorld, PerModuleDataObjects) == 0x000078, "Member 'UWorld::PerModuleDataObjects' has a wrong offset!"); \ +static_assert(offsetof(UWorld, StreamingLevels) == 0x000088, "Member 'UWorld::StreamingLevels' has a wrong offset!"); \ +static_assert(offsetof(UWorld, StreamingLevelsToConsider) == 0x000098, "Member 'UWorld::StreamingLevelsToConsider' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ServerStreamingLevelsVisibility) == 0x0000C0, "Member 'UWorld::ServerStreamingLevelsVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWorld, StreamingLevelsPrefix) == 0x0000C8, "Member 'UWorld::StreamingLevelsPrefix' has a wrong offset!"); \ +static_assert(offsetof(UWorld, CurrentLevelPendingVisibility) == 0x0000E0, "Member 'UWorld::CurrentLevelPendingVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWorld, CurrentLevelPendingInvisibility) == 0x0000E8, "Member 'UWorld::CurrentLevelPendingInvisibility' has a wrong offset!"); \ +static_assert(offsetof(UWorld, DemoNetDriver) == 0x0000F0, "Member 'UWorld::DemoNetDriver' has a wrong offset!"); \ +static_assert(offsetof(UWorld, MyParticleEventManager) == 0x0000F8, "Member 'UWorld::MyParticleEventManager' has a wrong offset!"); \ +static_assert(offsetof(UWorld, DefaultPhysicsVolume) == 0x000100, "Member 'UWorld::DefaultPhysicsVolume' has a wrong offset!"); \ +static_assert(offsetof(UWorld, NavigationSystem) == 0x000148, "Member 'UWorld::NavigationSystem' has a wrong offset!"); \ +static_assert(offsetof(UWorld, AuthorityGameMode) == 0x000150, "Member 'UWorld::AuthorityGameMode' has a wrong offset!"); \ +static_assert(offsetof(UWorld, GameState) == 0x000158, "Member 'UWorld::GameState' has a wrong offset!"); \ +static_assert(offsetof(UWorld, AISystem) == 0x000160, "Member 'UWorld::AISystem' has a wrong offset!"); \ +static_assert(offsetof(UWorld, AvoidanceManager) == 0x000168, "Member 'UWorld::AvoidanceManager' has a wrong offset!"); \ +static_assert(offsetof(UWorld, Levels) == 0x000170, "Member 'UWorld::Levels' has a wrong offset!"); \ +static_assert(offsetof(UWorld, LevelCollections) == 0x000180, "Member 'UWorld::LevelCollections' has a wrong offset!"); \ +static_assert(offsetof(UWorld, OwningGameInstance) == 0x0001B8, "Member 'UWorld::OwningGameInstance' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ParameterCollectionInstances) == 0x0001C0, "Member 'UWorld::ParameterCollectionInstances' has a wrong offset!"); \ +static_assert(offsetof(UWorld, CanvasForRenderingToTarget) == 0x0001D0, "Member 'UWorld::CanvasForRenderingToTarget' has a wrong offset!"); \ +static_assert(offsetof(UWorld, CanvasForDrawMaterialToRenderTarget) == 0x0001D8, "Member 'UWorld::CanvasForDrawMaterialToRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(UWorld, PhysicsField) == 0x000250, "Member 'UWorld::PhysicsField' has a wrong offset!"); \ +static_assert(offsetof(UWorld, LWILastAssignedUID) == 0x000258, "Member 'UWorld::LWILastAssignedUID' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ComponentsThatNeedPreEndOfFrameSync) == 0x000260, "Member 'UWorld::ComponentsThatNeedPreEndOfFrameSync' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ComponentsThatNeedEndOfFrameUpdate) == 0x0002B0, "Member 'UWorld::ComponentsThatNeedEndOfFrameUpdate' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ComponentsThatNeedEndOfFrameUpdate_OnGameThread) == 0x0002C0, "Member 'UWorld::ComponentsThatNeedEndOfFrameUpdate_OnGameThread' has a wrong offset!"); \ +static_assert(offsetof(UWorld, WorldComposition) == 0x000710, "Member 'UWorld::WorldComposition' has a wrong offset!"); \ +static_assert(offsetof(UWorld, ContentBundleManager) == 0x000718, "Member 'UWorld::ContentBundleManager' has a wrong offset!"); \ +static_assert(offsetof(UWorld, PSCPool) == 0x0007D0, "Member 'UWorld::PSCPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_CreateInstance \ +static_assert(alignof(LevelStreaming_CreateInstance) == 0x000008, "Wrong alignment on LevelStreaming_CreateInstance"); \ +static_assert(sizeof(LevelStreaming_CreateInstance) == 0x000018, "Wrong size on LevelStreaming_CreateInstance"); \ +static_assert(offsetof(LevelStreaming_CreateInstance, UniqueInstanceName) == 0x000000, "Member 'LevelStreaming_CreateInstance::UniqueInstanceName' has a wrong offset!"); \ +static_assert(offsetof(LevelStreaming_CreateInstance, ReturnValue) == 0x000010, "Member 'LevelStreaming_CreateInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_GetLevelScriptActor \ +static_assert(alignof(LevelStreaming_GetLevelScriptActor) == 0x000008, "Wrong alignment on LevelStreaming_GetLevelScriptActor"); \ +static_assert(sizeof(LevelStreaming_GetLevelScriptActor) == 0x000008, "Wrong size on LevelStreaming_GetLevelScriptActor"); \ +static_assert(offsetof(LevelStreaming_GetLevelScriptActor, ReturnValue) == 0x000000, "Member 'LevelStreaming_GetLevelScriptActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_SetIsRequestingUnloadAndRemoval \ +static_assert(alignof(LevelStreaming_SetIsRequestingUnloadAndRemoval) == 0x000001, "Wrong alignment on LevelStreaming_SetIsRequestingUnloadAndRemoval"); \ +static_assert(sizeof(LevelStreaming_SetIsRequestingUnloadAndRemoval) == 0x000001, "Wrong size on LevelStreaming_SetIsRequestingUnloadAndRemoval"); \ +static_assert(offsetof(LevelStreaming_SetIsRequestingUnloadAndRemoval, bInIsRequestingUnloadAndRemoval) == 0x000000, "Member 'LevelStreaming_SetIsRequestingUnloadAndRemoval::bInIsRequestingUnloadAndRemoval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_SetLevelLODIndex \ +static_assert(alignof(LevelStreaming_SetLevelLODIndex) == 0x000004, "Wrong alignment on LevelStreaming_SetLevelLODIndex"); \ +static_assert(sizeof(LevelStreaming_SetLevelLODIndex) == 0x000004, "Wrong size on LevelStreaming_SetLevelLODIndex"); \ +static_assert(offsetof(LevelStreaming_SetLevelLODIndex, LODIndex) == 0x000000, "Member 'LevelStreaming_SetLevelLODIndex::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_SetPriority \ +static_assert(alignof(LevelStreaming_SetPriority) == 0x000004, "Wrong alignment on LevelStreaming_SetPriority"); \ +static_assert(sizeof(LevelStreaming_SetPriority) == 0x000004, "Wrong size on LevelStreaming_SetPriority"); \ +static_assert(offsetof(LevelStreaming_SetPriority, NewPriority) == 0x000000, "Member 'LevelStreaming_SetPriority::NewPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_SetShouldBeLoaded \ +static_assert(alignof(LevelStreaming_SetShouldBeLoaded) == 0x000001, "Wrong alignment on LevelStreaming_SetShouldBeLoaded"); \ +static_assert(sizeof(LevelStreaming_SetShouldBeLoaded) == 0x000001, "Wrong size on LevelStreaming_SetShouldBeLoaded"); \ +static_assert(offsetof(LevelStreaming_SetShouldBeLoaded, bInShouldBeLoaded) == 0x000000, "Member 'LevelStreaming_SetShouldBeLoaded::bInShouldBeLoaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_SetShouldBeVisible \ +static_assert(alignof(LevelStreaming_SetShouldBeVisible) == 0x000001, "Wrong alignment on LevelStreaming_SetShouldBeVisible"); \ +static_assert(sizeof(LevelStreaming_SetShouldBeVisible) == 0x000001, "Wrong size on LevelStreaming_SetShouldBeVisible"); \ +static_assert(offsetof(LevelStreaming_SetShouldBeVisible, bInShouldBeVisible) == 0x000000, "Member 'LevelStreaming_SetShouldBeVisible::bInShouldBeVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_GetIsRequestingUnloadAndRemoval \ +static_assert(alignof(LevelStreaming_GetIsRequestingUnloadAndRemoval) == 0x000001, "Wrong alignment on LevelStreaming_GetIsRequestingUnloadAndRemoval"); \ +static_assert(sizeof(LevelStreaming_GetIsRequestingUnloadAndRemoval) == 0x000001, "Wrong size on LevelStreaming_GetIsRequestingUnloadAndRemoval"); \ +static_assert(offsetof(LevelStreaming_GetIsRequestingUnloadAndRemoval, ReturnValue) == 0x000000, "Member 'LevelStreaming_GetIsRequestingUnloadAndRemoval::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_GetLoadedLevel \ +static_assert(alignof(LevelStreaming_GetLoadedLevel) == 0x000008, "Wrong alignment on LevelStreaming_GetLoadedLevel"); \ +static_assert(sizeof(LevelStreaming_GetLoadedLevel) == 0x000008, "Wrong size on LevelStreaming_GetLoadedLevel"); \ +static_assert(offsetof(LevelStreaming_GetLoadedLevel, ReturnValue) == 0x000000, "Member 'LevelStreaming_GetLoadedLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_GetWorldAssetPackageFName \ +static_assert(alignof(LevelStreaming_GetWorldAssetPackageFName) == 0x000004, "Wrong alignment on LevelStreaming_GetWorldAssetPackageFName"); \ +static_assert(sizeof(LevelStreaming_GetWorldAssetPackageFName) == 0x000008, "Wrong size on LevelStreaming_GetWorldAssetPackageFName"); \ +static_assert(offsetof(LevelStreaming_GetWorldAssetPackageFName, ReturnValue) == 0x000000, "Member 'LevelStreaming_GetWorldAssetPackageFName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_IsLevelLoaded \ +static_assert(alignof(LevelStreaming_IsLevelLoaded) == 0x000001, "Wrong alignment on LevelStreaming_IsLevelLoaded"); \ +static_assert(sizeof(LevelStreaming_IsLevelLoaded) == 0x000001, "Wrong size on LevelStreaming_IsLevelLoaded"); \ +static_assert(offsetof(LevelStreaming_IsLevelLoaded, ReturnValue) == 0x000000, "Member 'LevelStreaming_IsLevelLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_IsLevelVisible \ +static_assert(alignof(LevelStreaming_IsLevelVisible) == 0x000001, "Wrong alignment on LevelStreaming_IsLevelVisible"); \ +static_assert(sizeof(LevelStreaming_IsLevelVisible) == 0x000001, "Wrong size on LevelStreaming_IsLevelVisible"); \ +static_assert(offsetof(LevelStreaming_IsLevelVisible, ReturnValue) == 0x000000, "Member 'LevelStreaming_IsLevelVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_IsStreamingStatePending \ +static_assert(alignof(LevelStreaming_IsStreamingStatePending) == 0x000001, "Wrong alignment on LevelStreaming_IsStreamingStatePending"); \ +static_assert(sizeof(LevelStreaming_IsStreamingStatePending) == 0x000001, "Wrong size on LevelStreaming_IsStreamingStatePending"); \ +static_assert(offsetof(LevelStreaming_IsStreamingStatePending, ReturnValue) == 0x000000, "Member 'LevelStreaming_IsStreamingStatePending::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreaming_ShouldBeLoaded \ +static_assert(alignof(LevelStreaming_ShouldBeLoaded) == 0x000001, "Wrong alignment on LevelStreaming_ShouldBeLoaded"); \ +static_assert(sizeof(LevelStreaming_ShouldBeLoaded) == 0x000001, "Wrong size on LevelStreaming_ShouldBeLoaded"); \ +static_assert(offsetof(LevelStreaming_ShouldBeLoaded, ReturnValue) == 0x000000, "Member 'LevelStreaming_ShouldBeLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelStreaming \ +static_assert(alignof(ULevelStreaming) == 0x000010, "Wrong alignment on ULevelStreaming"); \ +static_assert(sizeof(ULevelStreaming) == 0x0001A0, "Wrong size on ULevelStreaming"); \ +static_assert(offsetof(ULevelStreaming, WorldAsset) == 0x000028, "Member 'ULevelStreaming::WorldAsset' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, StreamingPriority) == 0x000050, "Member 'ULevelStreaming::StreamingPriority' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, PackageNameToLoad) == 0x000054, "Member 'ULevelStreaming::PackageNameToLoad' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, LODPackageNames) == 0x000060, "Member 'ULevelStreaming::LODPackageNames' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, LevelTransform) == 0x000080, "Member 'ULevelStreaming::LevelTransform' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, bClientOnlyVisible) == 0x0000E0, "Member 'ULevelStreaming::bClientOnlyVisible' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, LevelLODIndex) == 0x0000E4, "Member 'ULevelStreaming::LevelLODIndex' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, LevelColor) == 0x0000EC, "Member 'ULevelStreaming::LevelColor' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, EditorStreamingVolumes) == 0x000100, "Member 'ULevelStreaming::EditorStreamingVolumes' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, MinTimeBetweenVolumeUnloadRequests) == 0x000110, "Member 'ULevelStreaming::MinTimeBetweenVolumeUnloadRequests' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, OnLevelLoaded) == 0x000118, "Member 'ULevelStreaming::OnLevelLoaded' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, OnLevelUnloaded) == 0x000128, "Member 'ULevelStreaming::OnLevelUnloaded' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, OnLevelShown) == 0x000138, "Member 'ULevelStreaming::OnLevelShown' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, OnLevelHidden) == 0x000148, "Member 'ULevelStreaming::OnLevelHidden' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, LoadedLevel) == 0x000158, "Member 'ULevelStreaming::LoadedLevel' has a wrong offset!"); \ +static_assert(offsetof(ULevelStreaming, PendingUnloadLevel) == 0x000160, "Member 'ULevelStreaming::PendingUnloadLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionGetMaterialAttributes \ +static_assert(alignof(UMaterialExpressionGetMaterialAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionGetMaterialAttributes"); \ +static_assert(sizeof(UMaterialExpressionGetMaterialAttributes) == 0x0000F0, "Wrong size on UMaterialExpressionGetMaterialAttributes"); \ +static_assert(offsetof(UMaterialExpressionGetMaterialAttributes, MaterialAttributes) == 0x0000B0, "Member 'UMaterialExpressionGetMaterialAttributes::MaterialAttributes' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionGetMaterialAttributes, AttributeGetTypes) == 0x0000E0, "Member 'UMaterialExpressionGetMaterialAttributes::AttributeGetTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleKillBox \ +static_assert(alignof(UParticleModuleKillBox) == 0x000008, "Wrong alignment on UParticleModuleKillBox"); \ +static_assert(sizeof(UParticleModuleKillBox) == 0x0000F8, "Wrong size on UParticleModuleKillBox"); \ +static_assert(offsetof(UParticleModuleKillBox, LowerLeftCorner) == 0x000030, "Member 'UParticleModuleKillBox::LowerLeftCorner' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleKillBox, UpperRightCorner) == 0x000090, "Member 'UParticleModuleKillBox::UpperRightCorner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingAlwaysLoaded \ +static_assert(alignof(ULevelStreamingAlwaysLoaded) == 0x000010, "Wrong alignment on ULevelStreamingAlwaysLoaded"); \ +static_assert(sizeof(ULevelStreamingAlwaysLoaded) == 0x0001A0, "Wrong size on ULevelStreamingAlwaysLoaded"); \ + +#define DUMPER7_ASSERTS_UDebugCameraControllerSettings \ +static_assert(alignof(UDebugCameraControllerSettings) == 0x000008, "Wrong alignment on UDebugCameraControllerSettings"); \ +static_assert(sizeof(UDebugCameraControllerSettings) == 0x000048, "Wrong size on UDebugCameraControllerSettings"); \ +static_assert(offsetof(UDebugCameraControllerSettings, CycleViewModes) == 0x000038, "Member 'UDebugCameraControllerSettings::CycleViewModes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWorldPartitionHLOD \ +static_assert(alignof(AWorldPartitionHLOD) == 0x000008, "Wrong alignment on AWorldPartitionHLOD"); \ +static_assert(sizeof(AWorldPartitionHLOD) == 0x0002B0, "Wrong size on AWorldPartitionHLOD"); \ +static_assert(offsetof(AWorldPartitionHLOD, LODLevel) == 0x000298, "Member 'AWorldPartitionHLOD::LODLevel' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionHLOD, bRequireWarmup) == 0x00029C, "Member 'AWorldPartitionHLOD::bRequireWarmup' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionHLOD, SourceCellGuid) == 0x0002A0, "Member 'AWorldPartitionHLOD::SourceCellGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionIfThenElse \ +static_assert(alignof(UMaterialExpressionIfThenElse) == 0x000008, "Wrong alignment on UMaterialExpressionIfThenElse"); \ +static_assert(sizeof(UMaterialExpressionIfThenElse) == 0x0000E8, "Wrong size on UMaterialExpressionIfThenElse"); \ +static_assert(offsetof(UMaterialExpressionIfThenElse, Then) == 0x0000B0, "Member 'UMaterialExpressionIfThenElse::Then' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIfThenElse, Else) == 0x0000B8, "Member 'UMaterialExpressionIfThenElse::Else' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIfThenElse, Condition) == 0x0000C0, "Member 'UMaterialExpressionIfThenElse::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreamingDynamic_LoadLevelInstance \ +static_assert(alignof(LevelStreamingDynamic_LoadLevelInstance) == 0x000008, "Wrong alignment on LevelStreamingDynamic_LoadLevelInstance"); \ +static_assert(sizeof(LevelStreamingDynamic_LoadLevelInstance) == 0x000078, "Wrong size on LevelStreamingDynamic_LoadLevelInstance"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, WorldContextObject) == 0x000000, "Member 'LevelStreamingDynamic_LoadLevelInstance::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, LevelName) == 0x000008, "Member 'LevelStreamingDynamic_LoadLevelInstance::LevelName' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, Location) == 0x000018, "Member 'LevelStreamingDynamic_LoadLevelInstance::Location' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, Rotation) == 0x000030, "Member 'LevelStreamingDynamic_LoadLevelInstance::Rotation' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, bOutSuccess) == 0x000048, "Member 'LevelStreamingDynamic_LoadLevelInstance::bOutSuccess' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, OptionalLevelNameOverride) == 0x000050, "Member 'LevelStreamingDynamic_LoadLevelInstance::OptionalLevelNameOverride' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, OptionalLevelStreamingClass) == 0x000060, "Member 'LevelStreamingDynamic_LoadLevelInstance::OptionalLevelStreamingClass' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, bLoadAsTempPackage) == 0x000068, "Member 'LevelStreamingDynamic_LoadLevelInstance::bLoadAsTempPackage' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstance, ReturnValue) == 0x000070, "Member 'LevelStreamingDynamic_LoadLevelInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr \ +static_assert(alignof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr) == 0x000008, "Wrong alignment on LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr"); \ +static_assert(sizeof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr) == 0x000090, "Wrong size on LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, WorldContextObject) == 0x000000, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, Level) == 0x000008, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::Level' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, Location) == 0x000030, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::Location' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, Rotation) == 0x000048, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::Rotation' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, bOutSuccess) == 0x000060, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::bOutSuccess' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, OptionalLevelNameOverride) == 0x000068, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::OptionalLevelNameOverride' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, OptionalLevelStreamingClass) == 0x000078, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::OptionalLevelStreamingClass' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, bLoadAsTempPackage) == 0x000080, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::bLoadAsTempPackage' has a wrong offset!"); \ +static_assert(offsetof(LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr, ReturnValue) == 0x000088, "Member 'LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingDynamic \ +static_assert(alignof(ULevelStreamingDynamic) == 0x000010, "Wrong alignment on ULevelStreamingDynamic"); \ +static_assert(sizeof(ULevelStreamingDynamic) == 0x0001A0, "Wrong size on ULevelStreamingDynamic"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingPersistent \ +static_assert(alignof(ULevelStreamingPersistent) == 0x000010, "Wrong alignment on ULevelStreamingPersistent"); \ +static_assert(sizeof(ULevelStreamingPersistent) == 0x0001A0, "Wrong size on ULevelStreamingPersistent"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticlePositionWS \ +static_assert(alignof(UMaterialExpressionParticlePositionWS) == 0x000008, "Wrong alignment on UMaterialExpressionParticlePositionWS"); \ +static_assert(sizeof(UMaterialExpressionParticlePositionWS) == 0x0000B8, "Wrong size on UMaterialExpressionParticlePositionWS"); \ +static_assert(offsetof(UMaterialExpressionParticlePositionWS, OriginType) == 0x0000B0, "Member 'UMaterialExpressionParticlePositionWS::OriginType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelStreamingVolume \ +static_assert(alignof(ALevelStreamingVolume) == 0x000008, "Wrong alignment on ALevelStreamingVolume"); \ +static_assert(sizeof(ALevelStreamingVolume) == 0x0002E8, "Wrong size on ALevelStreamingVolume"); \ +static_assert(offsetof(ALevelStreamingVolume, StreamingLevelNames) == 0x0002D0, "Member 'ALevelStreamingVolume::StreamingLevelNames' has a wrong offset!"); \ +static_assert(offsetof(ALevelStreamingVolume, StreamingUsage) == 0x0002E4, "Member 'ALevelStreamingVolume::StreamingUsage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_RemoveLinearKeys \ +static_assert(alignof(UAnimCompress_RemoveLinearKeys) == 0x000008, "Wrong alignment on UAnimCompress_RemoveLinearKeys"); \ +static_assert(sizeof(UAnimCompress_RemoveLinearKeys) == 0x000060, "Wrong size on UAnimCompress_RemoveLinearKeys"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, MaxPosDiff) == 0x000040, "Member 'UAnimCompress_RemoveLinearKeys::MaxPosDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, MaxAngleDiff) == 0x000044, "Member 'UAnimCompress_RemoveLinearKeys::MaxAngleDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, MaxScaleDiff) == 0x000048, "Member 'UAnimCompress_RemoveLinearKeys::MaxScaleDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, MaxEffectorDiff) == 0x00004C, "Member 'UAnimCompress_RemoveLinearKeys::MaxEffectorDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, MinEffectorDiff) == 0x000050, "Member 'UAnimCompress_RemoveLinearKeys::MinEffectorDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, EffectorDiffSocket) == 0x000054, "Member 'UAnimCompress_RemoveLinearKeys::EffectorDiffSocket' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveLinearKeys, ParentKeyScale) == 0x000058, "Member 'UAnimCompress_RemoveLinearKeys::ParentKeyScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameInstanceSubsystem \ +static_assert(alignof(UGameInstanceSubsystem) == 0x000008, "Wrong alignment on UGameInstanceSubsystem"); \ +static_assert(sizeof(UGameInstanceSubsystem) == 0x000030, "Wrong size on UGameInstanceSubsystem"); \ + +#define DUMPER7_ASSERTS_ReplaySubsystem_GetActiveReplayName \ +static_assert(alignof(ReplaySubsystem_GetActiveReplayName) == 0x000008, "Wrong alignment on ReplaySubsystem_GetActiveReplayName"); \ +static_assert(sizeof(ReplaySubsystem_GetActiveReplayName) == 0x000010, "Wrong size on ReplaySubsystem_GetActiveReplayName"); \ +static_assert(offsetof(ReplaySubsystem_GetActiveReplayName, ReturnValue) == 0x000000, "Member 'ReplaySubsystem_GetActiveReplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReplaySubsystem_GetReplayCurrentTime \ +static_assert(alignof(ReplaySubsystem_GetReplayCurrentTime) == 0x000004, "Wrong alignment on ReplaySubsystem_GetReplayCurrentTime"); \ +static_assert(sizeof(ReplaySubsystem_GetReplayCurrentTime) == 0x000004, "Wrong size on ReplaySubsystem_GetReplayCurrentTime"); \ +static_assert(offsetof(ReplaySubsystem_GetReplayCurrentTime, ReturnValue) == 0x000000, "Member 'ReplaySubsystem_GetReplayCurrentTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReplaySubsystem_IsPlaying \ +static_assert(alignof(ReplaySubsystem_IsPlaying) == 0x000001, "Wrong alignment on ReplaySubsystem_IsPlaying"); \ +static_assert(sizeof(ReplaySubsystem_IsPlaying) == 0x000001, "Wrong size on ReplaySubsystem_IsPlaying"); \ +static_assert(offsetof(ReplaySubsystem_IsPlaying, ReturnValue) == 0x000000, "Member 'ReplaySubsystem_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReplaySubsystem_IsRecording \ +static_assert(alignof(ReplaySubsystem_IsRecording) == 0x000001, "Wrong alignment on ReplaySubsystem_IsRecording"); \ +static_assert(sizeof(ReplaySubsystem_IsRecording) == 0x000001, "Wrong size on ReplaySubsystem_IsRecording"); \ +static_assert(offsetof(ReplaySubsystem_IsRecording, ReturnValue) == 0x000000, "Member 'ReplaySubsystem_IsRecording::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReplaySubsystem \ +static_assert(alignof(UReplaySubsystem) == 0x000008, "Wrong alignment on UReplaySubsystem"); \ +static_assert(sizeof(UReplaySubsystem) == 0x000040, "Wrong size on UReplaySubsystem"); \ +static_assert(offsetof(UReplaySubsystem, bLoadDefaultMapOnStop) == 0x000030, "Member 'UReplaySubsystem::bLoadDefaultMapOnStop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCrossProduct \ +static_assert(alignof(UMaterialExpressionCrossProduct) == 0x000008, "Wrong alignment on UMaterialExpressionCrossProduct"); \ +static_assert(sizeof(UMaterialExpressionCrossProduct) == 0x000100, "Wrong size on UMaterialExpressionCrossProduct"); \ +static_assert(offsetof(UMaterialExpressionCrossProduct, A) == 0x0000B0, "Member 'UMaterialExpressionCrossProduct::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCrossProduct, B) == 0x0000D8, "Member 'UMaterialExpressionCrossProduct::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAnimClassInterface \ +static_assert(alignof(IAnimClassInterface) == 0x000001, "Wrong alignment on IAnimClassInterface"); \ +static_assert(sizeof(IAnimClassInterface) == 0x000001, "Wrong size on IAnimClassInterface"); \ + +#define DUMPER7_ASSERTS_ULightMapTexture2D \ +static_assert(alignof(ULightMapTexture2D) == 0x000010, "Wrong alignment on ULightMapTexture2D"); \ +static_assert(sizeof(ULightMapTexture2D) == 0x000280, "Wrong size on ULightMapTexture2D"); \ + +#define DUMPER7_ASSERTS_ALightmassPortal \ +static_assert(alignof(ALightmassPortal) == 0x000008, "Wrong alignment on ALightmassPortal"); \ +static_assert(sizeof(ALightmassPortal) == 0x0002A0, "Wrong size on ALightmassPortal"); \ +static_assert(offsetof(ALightmassPortal, PortalComponent) == 0x000298, "Member 'ALightmassPortal::PortalComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCollectionParameter \ +static_assert(alignof(UMaterialExpressionCollectionParameter) == 0x000008, "Wrong alignment on UMaterialExpressionCollectionParameter"); \ +static_assert(sizeof(UMaterialExpressionCollectionParameter) == 0x0000D0, "Wrong size on UMaterialExpressionCollectionParameter"); \ +static_assert(offsetof(UMaterialExpressionCollectionParameter, Collection) == 0x0000B0, "Member 'UMaterialExpressionCollectionParameter::Collection' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCollectionParameter, ParameterName) == 0x0000B8, "Member 'UMaterialExpressionCollectionParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCollectionParameter, ParameterId) == 0x0000C0, "Member 'UMaterialExpressionCollectionParameter::ParameterId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightmassPortalComponent \ +static_assert(alignof(ULightmassPortalComponent) == 0x000010, "Wrong alignment on ULightmassPortalComponent"); \ +static_assert(sizeof(ULightmassPortalComponent) == 0x0002B0, "Wrong size on ULightmassPortalComponent"); \ +static_assert(offsetof(ULightmassPortalComponent, PreviewBox) == 0x0002A0, "Member 'ULightmassPortalComponent::PreviewBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChildActorComponent_OnChildActorDestroyed \ +static_assert(alignof(ChildActorComponent_OnChildActorDestroyed) == 0x000008, "Wrong alignment on ChildActorComponent_OnChildActorDestroyed"); \ +static_assert(sizeof(ChildActorComponent_OnChildActorDestroyed) == 0x000008, "Wrong size on ChildActorComponent_OnChildActorDestroyed"); \ +static_assert(offsetof(ChildActorComponent_OnChildActorDestroyed, Actor) == 0x000000, "Member 'ChildActorComponent_OnChildActorDestroyed::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChildActorComponent_SetChildActorClass \ +static_assert(alignof(ChildActorComponent_SetChildActorClass) == 0x000008, "Wrong alignment on ChildActorComponent_SetChildActorClass"); \ +static_assert(sizeof(ChildActorComponent_SetChildActorClass) == 0x000008, "Wrong size on ChildActorComponent_SetChildActorClass"); \ +static_assert(offsetof(ChildActorComponent_SetChildActorClass, InClass) == 0x000000, "Member 'ChildActorComponent_SetChildActorClass::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChildActorComponent \ +static_assert(alignof(UChildActorComponent) == 0x000010, "Wrong alignment on UChildActorComponent"); \ +static_assert(sizeof(UChildActorComponent) == 0x0002E0, "Wrong size on UChildActorComponent"); \ +static_assert(offsetof(UChildActorComponent, ChildActorClass) == 0x0002A0, "Member 'UChildActorComponent::ChildActorClass' has a wrong offset!"); \ +static_assert(offsetof(UChildActorComponent, ChildActor) == 0x0002A8, "Member 'UChildActorComponent::ChildActor' has a wrong offset!"); \ +static_assert(offsetof(UChildActorComponent, ChildActorTemplate) == 0x0002B0, "Member 'UChildActorComponent::ChildActorTemplate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTransactionDiffingTestObject \ +static_assert(alignof(UTransactionDiffingTestObject) == 0x000008, "Wrong alignment on UTransactionDiffingTestObject"); \ +static_assert(sizeof(UTransactionDiffingTestObject) == 0x000098, "Wrong size on UTransactionDiffingTestObject"); \ +static_assert(offsetof(UTransactionDiffingTestObject, NamesArray) == 0x000028, "Member 'UTransactionDiffingTestObject::NamesArray' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, AdditionalName) == 0x000038, "Member 'UTransactionDiffingTestObject::AdditionalName' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, ObjectsArray) == 0x000040, "Member 'UTransactionDiffingTestObject::ObjectsArray' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, AdditionalObject) == 0x000050, "Member 'UTransactionDiffingTestObject::AdditionalObject' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, SoftObjectsArray) == 0x000058, "Member 'UTransactionDiffingTestObject::SoftObjectsArray' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, AdditionalSoftObject) == 0x000068, "Member 'UTransactionDiffingTestObject::AdditionalSoftObject' has a wrong offset!"); \ +static_assert(offsetof(UTransactionDiffingTestObject, PropertyData) == 0x000090, "Member 'UTransactionDiffingTestObject::PropertyData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLogarithm \ +static_assert(alignof(UMaterialExpressionLogarithm) == 0x000008, "Wrong alignment on UMaterialExpressionLogarithm"); \ +static_assert(sizeof(UMaterialExpressionLogarithm) == 0x0000D8, "Wrong size on UMaterialExpressionLogarithm"); \ +static_assert(offsetof(UMaterialExpressionLogarithm, Input) == 0x0000B0, "Member 'UMaterialExpressionLogarithm::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALocalHeightFog \ +static_assert(alignof(ALocalHeightFog) == 0x000008, "Wrong alignment on ALocalHeightFog"); \ +static_assert(sizeof(ALocalHeightFog) == 0x0002A0, "Wrong size on ALocalHeightFog"); \ +static_assert(offsetof(ALocalHeightFog, LocalHeightFogVolume) == 0x000298, "Member 'ALocalHeightFog::LocalHeightFogVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMapBuildDataRegistry \ +static_assert(alignof(UMapBuildDataRegistry) == 0x000008, "Wrong alignment on UMapBuildDataRegistry"); \ +static_assert(sizeof(UMapBuildDataRegistry) == 0x000238, "Wrong size on UMapBuildDataRegistry"); \ +static_assert(offsetof(UMapBuildDataRegistry, LevelLightingQuality) == 0x000028, "Member 'UMapBuildDataRegistry::LevelLightingQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_OnInputOwnerEndPlayed \ +static_assert(alignof(InputComponent_OnInputOwnerEndPlayed) == 0x000008, "Wrong alignment on InputComponent_OnInputOwnerEndPlayed"); \ +static_assert(sizeof(InputComponent_OnInputOwnerEndPlayed) == 0x000010, "Wrong size on InputComponent_OnInputOwnerEndPlayed"); \ +static_assert(offsetof(InputComponent_OnInputOwnerEndPlayed, InOwner) == 0x000000, "Member 'InputComponent_OnInputOwnerEndPlayed::InOwner' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_OnInputOwnerEndPlayed, EndPlayReason) == 0x000008, "Member 'InputComponent_OnInputOwnerEndPlayed::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetControllerAnalogKeyState \ +static_assert(alignof(InputComponent_GetControllerAnalogKeyState) == 0x000008, "Wrong alignment on InputComponent_GetControllerAnalogKeyState"); \ +static_assert(sizeof(InputComponent_GetControllerAnalogKeyState) == 0x000020, "Wrong size on InputComponent_GetControllerAnalogKeyState"); \ +static_assert(offsetof(InputComponent_GetControllerAnalogKeyState, Key) == 0x000000, "Member 'InputComponent_GetControllerAnalogKeyState::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerAnalogKeyState, ReturnValue) == 0x000018, "Member 'InputComponent_GetControllerAnalogKeyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetControllerAnalogStickState \ +static_assert(alignof(InputComponent_GetControllerAnalogStickState) == 0x000004, "Wrong alignment on InputComponent_GetControllerAnalogStickState"); \ +static_assert(sizeof(InputComponent_GetControllerAnalogStickState) == 0x00000C, "Wrong size on InputComponent_GetControllerAnalogStickState"); \ +static_assert(offsetof(InputComponent_GetControllerAnalogStickState, WhichStick) == 0x000000, "Member 'InputComponent_GetControllerAnalogStickState::WhichStick' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerAnalogStickState, StickX) == 0x000004, "Member 'InputComponent_GetControllerAnalogStickState::StickX' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerAnalogStickState, StickY) == 0x000008, "Member 'InputComponent_GetControllerAnalogStickState::StickY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetControllerKeyTimeDown \ +static_assert(alignof(InputComponent_GetControllerKeyTimeDown) == 0x000008, "Wrong alignment on InputComponent_GetControllerKeyTimeDown"); \ +static_assert(sizeof(InputComponent_GetControllerKeyTimeDown) == 0x000020, "Wrong size on InputComponent_GetControllerKeyTimeDown"); \ +static_assert(offsetof(InputComponent_GetControllerKeyTimeDown, Key) == 0x000000, "Member 'InputComponent_GetControllerKeyTimeDown::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerKeyTimeDown, ReturnValue) == 0x000018, "Member 'InputComponent_GetControllerKeyTimeDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetControllerMouseDelta \ +static_assert(alignof(InputComponent_GetControllerMouseDelta) == 0x000004, "Wrong alignment on InputComponent_GetControllerMouseDelta"); \ +static_assert(sizeof(InputComponent_GetControllerMouseDelta) == 0x000008, "Wrong size on InputComponent_GetControllerMouseDelta"); \ +static_assert(offsetof(InputComponent_GetControllerMouseDelta, DeltaX) == 0x000000, "Member 'InputComponent_GetControllerMouseDelta::DeltaX' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerMouseDelta, DeltaY) == 0x000004, "Member 'InputComponent_GetControllerMouseDelta::DeltaY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetControllerVectorKeyState \ +static_assert(alignof(InputComponent_GetControllerVectorKeyState) == 0x000008, "Wrong alignment on InputComponent_GetControllerVectorKeyState"); \ +static_assert(sizeof(InputComponent_GetControllerVectorKeyState) == 0x000030, "Wrong size on InputComponent_GetControllerVectorKeyState"); \ +static_assert(offsetof(InputComponent_GetControllerVectorKeyState, Key) == 0x000000, "Member 'InputComponent_GetControllerVectorKeyState::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetControllerVectorKeyState, ReturnValue) == 0x000018, "Member 'InputComponent_GetControllerVectorKeyState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_GetTouchState \ +static_assert(alignof(InputComponent_GetTouchState) == 0x000004, "Wrong alignment on InputComponent_GetTouchState"); \ +static_assert(sizeof(InputComponent_GetTouchState) == 0x000010, "Wrong size on InputComponent_GetTouchState"); \ +static_assert(offsetof(InputComponent_GetTouchState, FingerIndex) == 0x000000, "Member 'InputComponent_GetTouchState::FingerIndex' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetTouchState, LocationX) == 0x000004, "Member 'InputComponent_GetTouchState::LocationX' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetTouchState, LocationY) == 0x000008, "Member 'InputComponent_GetTouchState::LocationY' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_GetTouchState, bIsCurrentlyPressed) == 0x00000C, "Member 'InputComponent_GetTouchState::bIsCurrentlyPressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_IsControllerKeyDown \ +static_assert(alignof(InputComponent_IsControllerKeyDown) == 0x000008, "Wrong alignment on InputComponent_IsControllerKeyDown"); \ +static_assert(sizeof(InputComponent_IsControllerKeyDown) == 0x000020, "Wrong size on InputComponent_IsControllerKeyDown"); \ +static_assert(offsetof(InputComponent_IsControllerKeyDown, Key) == 0x000000, "Member 'InputComponent_IsControllerKeyDown::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_IsControllerKeyDown, ReturnValue) == 0x000018, "Member 'InputComponent_IsControllerKeyDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_WasControllerKeyJustPressed \ +static_assert(alignof(InputComponent_WasControllerKeyJustPressed) == 0x000008, "Wrong alignment on InputComponent_WasControllerKeyJustPressed"); \ +static_assert(sizeof(InputComponent_WasControllerKeyJustPressed) == 0x000020, "Wrong size on InputComponent_WasControllerKeyJustPressed"); \ +static_assert(offsetof(InputComponent_WasControllerKeyJustPressed, Key) == 0x000000, "Member 'InputComponent_WasControllerKeyJustPressed::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_WasControllerKeyJustPressed, ReturnValue) == 0x000018, "Member 'InputComponent_WasControllerKeyJustPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputComponent_WasControllerKeyJustReleased \ +static_assert(alignof(InputComponent_WasControllerKeyJustReleased) == 0x000008, "Wrong alignment on InputComponent_WasControllerKeyJustReleased"); \ +static_assert(sizeof(InputComponent_WasControllerKeyJustReleased) == 0x000020, "Wrong size on InputComponent_WasControllerKeyJustReleased"); \ +static_assert(offsetof(InputComponent_WasControllerKeyJustReleased, Key) == 0x000000, "Member 'InputComponent_WasControllerKeyJustReleased::Key' has a wrong offset!"); \ +static_assert(offsetof(InputComponent_WasControllerKeyJustReleased, ReturnValue) == 0x000018, "Member 'InputComponent_WasControllerKeyJustReleased::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputComponent \ +static_assert(alignof(UInputComponent) == 0x000008, "Wrong alignment on UInputComponent"); \ +static_assert(sizeof(UInputComponent) == 0x000128, "Wrong size on UInputComponent"); \ +static_assert(offsetof(UInputComponent, CachedKeyToActionInfo) == 0x000110, "Member 'UInputComponent::CachedKeyToActionInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleSubUVProperties \ +static_assert(alignof(UMaterialExpressionParticleSubUVProperties) == 0x000008, "Wrong alignment on UMaterialExpressionParticleSubUVProperties"); \ +static_assert(sizeof(UMaterialExpressionParticleSubUVProperties) == 0x0000B0, "Wrong size on UMaterialExpressionParticleSubUVProperties"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAbs \ +static_assert(alignof(UMaterialExpressionAbs) == 0x000008, "Wrong alignment on UMaterialExpressionAbs"); \ +static_assert(sizeof(UMaterialExpressionAbs) == 0x0000D8, "Wrong size on UMaterialExpressionAbs"); \ +static_assert(offsetof(UMaterialExpressionAbs, Input) == 0x0000B0, "Member 'UMaterialExpressionAbs::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionSettings \ +static_assert(alignof(UAnimCurveCompressionSettings) == 0x000008, "Wrong alignment on UAnimCurveCompressionSettings"); \ +static_assert(sizeof(UAnimCurveCompressionSettings) == 0x000030, "Wrong size on UAnimCurveCompressionSettings"); \ +static_assert(offsetof(UAnimCurveCompressionSettings, Codec) == 0x000028, "Member 'UAnimCurveCompressionSettings::Codec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAbsorptionMediumMaterialOutput \ +static_assert(alignof(UMaterialExpressionAbsorptionMediumMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionAbsorptionMediumMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionAbsorptionMediumMaterialOutput) == 0x0000D8, "Wrong size on UMaterialExpressionAbsorptionMediumMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionAbsorptionMediumMaterialOutput, TransmittanceColor) == 0x0000B0, "Member 'UMaterialExpressionAbsorptionMediumMaterialOutput::TransmittanceColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalMeshLODSettings \ +static_assert(alignof(USkeletalMeshLODSettings) == 0x000008, "Wrong alignment on USkeletalMeshLODSettings"); \ +static_assert(sizeof(USkeletalMeshLODSettings) == 0x0000B8, "Wrong size on USkeletalMeshLODSettings"); \ +static_assert(offsetof(USkeletalMeshLODSettings, MinQualityLevelLOD) == 0x000030, "Member 'USkeletalMeshLODSettings::MinQualityLevelLOD' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, MinLOD) == 0x000098, "Member 'USkeletalMeshLODSettings::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, DisableBelowMinLodStripping) == 0x00009C, "Member 'USkeletalMeshLODSettings::DisableBelowMinLodStripping' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, bOverrideLODStreamingSettings) == 0x00009D, "Member 'USkeletalMeshLODSettings::bOverrideLODStreamingSettings' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, bSupportLODStreaming) == 0x00009E, "Member 'USkeletalMeshLODSettings::bSupportLODStreaming' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, MaxNumStreamedLODs) == 0x0000A0, "Member 'USkeletalMeshLODSettings::MaxNumStreamedLODs' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, MaxNumOptionalLODs) == 0x0000A4, "Member 'USkeletalMeshLODSettings::MaxNumOptionalLODs' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshLODSettings, LODGroups) == 0x0000A8, "Member 'USkeletalMeshLODSettings::LODGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionActorPositionWS \ +static_assert(alignof(UMaterialExpressionActorPositionWS) == 0x000008, "Wrong alignment on UMaterialExpressionActorPositionWS"); \ +static_assert(sizeof(UMaterialExpressionActorPositionWS) == 0x0000B8, "Wrong size on UMaterialExpressionActorPositionWS"); \ +static_assert(offsetof(UMaterialExpressionActorPositionWS, OriginType) == 0x0000B0, "Member 'UMaterialExpressionActorPositionWS::OriginType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_RemoveEverySecondKey \ +static_assert(alignof(UAnimCompress_RemoveEverySecondKey) == 0x000008, "Wrong alignment on UAnimCompress_RemoveEverySecondKey"); \ +static_assert(sizeof(UAnimCompress_RemoveEverySecondKey) == 0x000048, "Wrong size on UAnimCompress_RemoveEverySecondKey"); \ +static_assert(offsetof(UAnimCompress_RemoveEverySecondKey, MinKeys) == 0x000040, "Member 'UAnimCompress_RemoveEverySecondKey::MinKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAdd \ +static_assert(alignof(UMaterialExpressionAdd) == 0x000008, "Wrong alignment on UMaterialExpressionAdd"); \ +static_assert(sizeof(UMaterialExpressionAdd) == 0x000108, "Wrong size on UMaterialExpressionAdd"); \ +static_assert(offsetof(UMaterialExpressionAdd, A) == 0x0000B0, "Member 'UMaterialExpressionAdd::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionAdd, B) == 0x0000D8, "Member 'UMaterialExpressionAdd::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionAdd, ConstA) == 0x000100, "Member 'UMaterialExpressionAdd::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionAdd, ConstB) == 0x000104, "Member 'UMaterialExpressionAdd::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureBase \ +static_assert(alignof(UMaterialExpressionTextureBase) == 0x000008, "Wrong alignment on UMaterialExpressionTextureBase"); \ +static_assert(sizeof(UMaterialExpressionTextureBase) == 0x0000C0, "Wrong size on UMaterialExpressionTextureBase"); \ +static_assert(offsetof(UMaterialExpressionTextureBase, Texture) == 0x0000B0, "Member 'UMaterialExpressionTextureBase::Texture' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureBase, SamplerType) == 0x0000B8, "Member 'UMaterialExpressionTextureBase::SamplerType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstantBiasScale \ +static_assert(alignof(UMaterialExpressionConstantBiasScale) == 0x000008, "Wrong alignment on UMaterialExpressionConstantBiasScale"); \ +static_assert(sizeof(UMaterialExpressionConstantBiasScale) == 0x0000E0, "Wrong size on UMaterialExpressionConstantBiasScale"); \ +static_assert(offsetof(UMaterialExpressionConstantBiasScale, Input) == 0x0000B0, "Member 'UMaterialExpressionConstantBiasScale::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionConstantBiasScale, Bias) == 0x0000D8, "Member 'UMaterialExpressionConstantBiasScale::Bias' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionConstantBiasScale, Scale) == 0x0000DC, "Member 'UMaterialExpressionConstantBiasScale::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSample \ +static_assert(alignof(UMaterialExpressionTextureSample) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSample"); \ +static_assert(sizeof(UMaterialExpressionTextureSample) == 0x0001B8, "Wrong size on UMaterialExpressionTextureSample"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, Coordinates) == 0x0000C0, "Member 'UMaterialExpressionTextureSample::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, TextureObject) == 0x0000E8, "Member 'UMaterialExpressionTextureSample::TextureObject' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, MipValue) == 0x000110, "Member 'UMaterialExpressionTextureSample::MipValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, CoordinatesDX) == 0x000138, "Member 'UMaterialExpressionTextureSample::CoordinatesDX' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, CoordinatesDY) == 0x000160, "Member 'UMaterialExpressionTextureSample::CoordinatesDY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, AutomaticViewMipBiasValue) == 0x000188, "Member 'UMaterialExpressionTextureSample::AutomaticViewMipBiasValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, MipValueMode) == 0x0001B0, "Member 'UMaterialExpressionTextureSample::MipValueMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, SamplerSource) == 0x0001B1, "Member 'UMaterialExpressionTextureSample::SamplerSource' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, ConstCoordinate) == 0x0001B3, "Member 'UMaterialExpressionTextureSample::ConstCoordinate' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSample, ConstMipValue) == 0x0001B4, "Member 'UMaterialExpressionTextureSample::ConstMipValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetEndFrame \ +static_assert(alignof(HeterogeneousVolumeComponent_SetEndFrame) == 0x000004, "Wrong alignment on HeterogeneousVolumeComponent_SetEndFrame"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetEndFrame) == 0x000004, "Wrong size on HeterogeneousVolumeComponent_SetEndFrame"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetEndFrame, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetEndFrame::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetFrame \ +static_assert(alignof(HeterogeneousVolumeComponent_SetFrame) == 0x000004, "Wrong alignment on HeterogeneousVolumeComponent_SetFrame"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetFrame) == 0x000004, "Wrong size on HeterogeneousVolumeComponent_SetFrame"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetFrame, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetFrame::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetFrameRate \ +static_assert(alignof(HeterogeneousVolumeComponent_SetFrameRate) == 0x000004, "Wrong alignment on HeterogeneousVolumeComponent_SetFrameRate"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetFrameRate) == 0x000004, "Wrong size on HeterogeneousVolumeComponent_SetFrameRate"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetFrameRate, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetFrameRate::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetLooping \ +static_assert(alignof(HeterogeneousVolumeComponent_SetLooping) == 0x000001, "Wrong alignment on HeterogeneousVolumeComponent_SetLooping"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetLooping) == 0x000001, "Wrong size on HeterogeneousVolumeComponent_SetLooping"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetLooping, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetLooping::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetPlaying \ +static_assert(alignof(HeterogeneousVolumeComponent_SetPlaying) == 0x000001, "Wrong alignment on HeterogeneousVolumeComponent_SetPlaying"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetPlaying) == 0x000001, "Wrong size on HeterogeneousVolumeComponent_SetPlaying"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetPlaying, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetPlaying::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeterogeneousVolumeComponent_SetStartFrame \ +static_assert(alignof(HeterogeneousVolumeComponent_SetStartFrame) == 0x000004, "Wrong alignment on HeterogeneousVolumeComponent_SetStartFrame"); \ +static_assert(sizeof(HeterogeneousVolumeComponent_SetStartFrame) == 0x000004, "Wrong size on HeterogeneousVolumeComponent_SetStartFrame"); \ +static_assert(offsetof(HeterogeneousVolumeComponent_SetStartFrame, NewValue) == 0x000000, "Member 'HeterogeneousVolumeComponent_SetStartFrame::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeterogeneousVolumeComponent \ +static_assert(alignof(UHeterogeneousVolumeComponent) == 0x000010, "Wrong alignment on UHeterogeneousVolumeComponent"); \ +static_assert(sizeof(UHeterogeneousVolumeComponent) == 0x0005F0, "Wrong size on UHeterogeneousVolumeComponent"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, VolumeResolution) == 0x0005A8, "Member 'UHeterogeneousVolumeComponent::VolumeResolution' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, Frame) == 0x0005B4, "Member 'UHeterogeneousVolumeComponent::Frame' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, FrameRate) == 0x0005B8, "Member 'UHeterogeneousVolumeComponent::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, StartFrame) == 0x0005BC, "Member 'UHeterogeneousVolumeComponent::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, EndFrame) == 0x0005C0, "Member 'UHeterogeneousVolumeComponent::EndFrame' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, MipLevel) == 0x0005C8, "Member 'UHeterogeneousVolumeComponent::MipLevel' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, StepFactor) == 0x0005D0, "Member 'UHeterogeneousVolumeComponent::StepFactor' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, ShadowStepFactor) == 0x0005D4, "Member 'UHeterogeneousVolumeComponent::ShadowStepFactor' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, ShadowBiasFactor) == 0x0005D8, "Member 'UHeterogeneousVolumeComponent::ShadowBiasFactor' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, LightingDownsampleFactor) == 0x0005DC, "Member 'UHeterogeneousVolumeComponent::LightingDownsampleFactor' has a wrong offset!"); \ +static_assert(offsetof(UHeterogeneousVolumeComponent, MaterialInstanceDynamic) == 0x0005E0, "Member 'UHeterogeneousVolumeComponent::MaterialInstanceDynamic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTimelineTemplate \ +static_assert(alignof(UTimelineTemplate) == 0x000008, "Wrong alignment on UTimelineTemplate"); \ +static_assert(sizeof(UTimelineTemplate) == 0x0000B8, "Wrong size on UTimelineTemplate"); \ +static_assert(offsetof(UTimelineTemplate, TimelineLength) == 0x000028, "Member 'UTimelineTemplate::TimelineLength' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, LengthMode) == 0x00002C, "Member 'UTimelineTemplate::LengthMode' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, EventTracks) == 0x000030, "Member 'UTimelineTemplate::EventTracks' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, FloatTracks) == 0x000040, "Member 'UTimelineTemplate::FloatTracks' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, VectorTracks) == 0x000050, "Member 'UTimelineTemplate::VectorTracks' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, LinearColorTracks) == 0x000060, "Member 'UTimelineTemplate::LinearColorTracks' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, MetaDataArray) == 0x000070, "Member 'UTimelineTemplate::MetaDataArray' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, TimelineGuid) == 0x000080, "Member 'UTimelineTemplate::TimelineGuid' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, TimelineTickGroup) == 0x000090, "Member 'UTimelineTemplate::TimelineTickGroup' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, VariableName) == 0x000094, "Member 'UTimelineTemplate::VariableName' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, DirectionPropertyName) == 0x00009C, "Member 'UTimelineTemplate::DirectionPropertyName' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, UpdateFunctionName) == 0x0000A4, "Member 'UTimelineTemplate::UpdateFunctionName' has a wrong offset!"); \ +static_assert(offsetof(UTimelineTemplate, FinishedFunctionName) == 0x0000AC, "Member 'UTimelineTemplate::FinishedFunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialProxyReplace \ +static_assert(alignof(UMaterialExpressionMaterialProxyReplace) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialProxyReplace"); \ +static_assert(sizeof(UMaterialExpressionMaterialProxyReplace) == 0x000100, "Wrong size on UMaterialExpressionMaterialProxyReplace"); \ +static_assert(offsetof(UMaterialExpressionMaterialProxyReplace, Realtime) == 0x0000B0, "Member 'UMaterialExpressionMaterialProxyReplace::Realtime' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialProxyReplace, MaterialProxy) == 0x0000D8, "Member 'UMaterialExpressionMaterialProxyReplace::MaterialProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameter \ +static_assert(alignof(UMaterialExpressionTextureSampleParameter) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameter"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameter) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameter"); \ +static_assert(offsetof(UMaterialExpressionTextureSampleParameter, ParameterName) == 0x0001B8, "Member 'UMaterialExpressionTextureSampleParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSampleParameter, ExpressionGUID) == 0x0001C0, "Member 'UMaterialExpressionTextureSampleParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSampleParameter, Group) == 0x0001D0, "Member 'UMaterialExpressionTextureSampleParameter::Group' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSampleParameter, SortPriority) == 0x0001D8, "Member 'UMaterialExpressionTextureSampleParameter::SortPriority' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureSampleParameter, ChannelNames) == 0x0001E0, "Member 'UMaterialExpressionTextureSampleParameter::ChannelNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameter2D \ +static_assert(alignof(UMaterialExpressionTextureSampleParameter2D) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameter2D"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameter2D) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameter2D"); \ + +#define DUMPER7_ASSERTS_UAudioWidgetSubsystem \ +static_assert(alignof(UAudioWidgetSubsystem) == 0x000008, "Wrong alignment on UAudioWidgetSubsystem"); \ +static_assert(sizeof(UAudioWidgetSubsystem) == 0x000030, "Wrong size on UAudioWidgetSubsystem"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFunctionOutput \ +static_assert(alignof(UMaterialExpressionFunctionOutput) == 0x000008, "Wrong alignment on UMaterialExpressionFunctionOutput"); \ +static_assert(sizeof(UMaterialExpressionFunctionOutput) == 0x000110, "Wrong size on UMaterialExpressionFunctionOutput"); \ +static_assert(offsetof(UMaterialExpressionFunctionOutput, OutputName) == 0x0000B0, "Member 'UMaterialExpressionFunctionOutput::OutputName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionOutput, Description) == 0x0000B8, "Member 'UMaterialExpressionFunctionOutput::Description' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionOutput, SortPriority) == 0x0000C8, "Member 'UMaterialExpressionFunctionOutput::SortPriority' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionOutput, A) == 0x0000D0, "Member 'UMaterialExpressionFunctionOutput::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionOutput, ID) == 0x0000FC, "Member 'UMaterialExpressionFunctionOutput::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAntialiasedTextureMask \ +static_assert(alignof(UMaterialExpressionAntialiasedTextureMask) == 0x000008, "Wrong alignment on UMaterialExpressionAntialiasedTextureMask"); \ +static_assert(sizeof(UMaterialExpressionAntialiasedTextureMask) == 0x000248, "Wrong size on UMaterialExpressionAntialiasedTextureMask"); \ +static_assert(offsetof(UMaterialExpressionAntialiasedTextureMask, Threshold) == 0x000240, "Member 'UMaterialExpressionAntialiasedTextureMask::Threshold' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionAntialiasedTextureMask, Channel) == 0x000244, "Member 'UMaterialExpressionAntialiasedTextureMask::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_TimedParticleEffect \ +static_assert(alignof(UAnimNotifyState_TimedParticleEffect) == 0x000008, "Wrong alignment on UAnimNotifyState_TimedParticleEffect"); \ +static_assert(sizeof(UAnimNotifyState_TimedParticleEffect) == 0x000078, "Wrong size on UAnimNotifyState_TimedParticleEffect"); \ +static_assert(offsetof(UAnimNotifyState_TimedParticleEffect, PSTemplate) == 0x000030, "Member 'UAnimNotifyState_TimedParticleEffect::PSTemplate' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedParticleEffect, SocketName) == 0x000038, "Member 'UAnimNotifyState_TimedParticleEffect::SocketName' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedParticleEffect, LocationOffset) == 0x000040, "Member 'UAnimNotifyState_TimedParticleEffect::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedParticleEffect, RotationOffset) == 0x000058, "Member 'UAnimNotifyState_TimedParticleEffect::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedParticleEffect, bDestroyAtEnd) == 0x000070, "Member 'UAnimNotifyState_TimedParticleEffect::bDestroyAtEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAppendVector \ +static_assert(alignof(UMaterialExpressionAppendVector) == 0x000008, "Wrong alignment on UMaterialExpressionAppendVector"); \ +static_assert(sizeof(UMaterialExpressionAppendVector) == 0x000100, "Wrong size on UMaterialExpressionAppendVector"); \ +static_assert(offsetof(UMaterialExpressionAppendVector, A) == 0x0000B0, "Member 'UMaterialExpressionAppendVector::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionAppendVector, B) == 0x0000D8, "Member 'UMaterialExpressionAppendVector::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundCue \ +static_assert(alignof(USoundCue) == 0x000008, "Wrong alignment on USoundCue"); \ +static_assert(sizeof(USoundCue) == 0x000560, "Wrong size on USoundCue"); \ +static_assert(offsetof(USoundCue, FirstNode) == 0x000168, "Member 'USoundCue::FirstNode' has a wrong offset!"); \ +static_assert(offsetof(USoundCue, VolumeMultiplier) == 0x000170, "Member 'USoundCue::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(USoundCue, PitchMultiplier) == 0x000174, "Member 'USoundCue::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(USoundCue, AttenuationOverrides) == 0x000178, "Member 'USoundCue::AttenuationOverrides' has a wrong offset!"); \ +static_assert(offsetof(USoundCue, SubtitlePriority) == 0x000548, "Member 'USoundCue::SubtitlePriority' has a wrong offset!"); \ +static_assert(offsetof(USoundCue, CookedQualityIndex) == 0x000554, "Member 'USoundCue::CookedQualityIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionObjectLocalBounds \ +static_assert(alignof(UMaterialExpressionObjectLocalBounds) == 0x000008, "Wrong alignment on UMaterialExpressionObjectLocalBounds"); \ +static_assert(sizeof(UMaterialExpressionObjectLocalBounds) == 0x0000B0, "Wrong size on UMaterialExpressionObjectLocalBounds"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArccosine \ +static_assert(alignof(UMaterialExpressionArccosine) == 0x000008, "Wrong alignment on UMaterialExpressionArccosine"); \ +static_assert(sizeof(UMaterialExpressionArccosine) == 0x0000D8, "Wrong size on UMaterialExpressionArccosine"); \ +static_assert(offsetof(UMaterialExpressionArccosine, Input) == 0x0000B0, "Member 'UMaterialExpressionArccosine::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimMetaData \ +static_assert(alignof(UAnimMetaData) == 0x000008, "Wrong alignment on UAnimMetaData"); \ +static_assert(sizeof(UAnimMetaData) == 0x000028, "Wrong size on UAnimMetaData"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArccosineFast \ +static_assert(alignof(UMaterialExpressionArccosineFast) == 0x000008, "Wrong alignment on UMaterialExpressionArccosineFast"); \ +static_assert(sizeof(UMaterialExpressionArccosineFast) == 0x0000D8, "Wrong size on UMaterialExpressionArccosineFast"); \ +static_assert(offsetof(UMaterialExpressionArccosineFast, Input) == 0x0000B0, "Member 'UMaterialExpressionArccosineFast::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArcsine \ +static_assert(alignof(UMaterialExpressionArcsine) == 0x000008, "Wrong alignment on UMaterialExpressionArcsine"); \ +static_assert(sizeof(UMaterialExpressionArcsine) == 0x0000D8, "Wrong size on UMaterialExpressionArcsine"); \ +static_assert(offsetof(UMaterialExpressionArcsine, Input) == 0x0000B0, "Member 'UMaterialExpressionArcsine::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDDX \ +static_assert(alignof(UMaterialExpressionDDX) == 0x000008, "Wrong alignment on UMaterialExpressionDDX"); \ +static_assert(sizeof(UMaterialExpressionDDX) == 0x0000D8, "Wrong size on UMaterialExpressionDDX"); \ +static_assert(offsetof(UMaterialExpressionDDX, Value) == 0x0000B0, "Member 'UMaterialExpressionDDX::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArcsineFast \ +static_assert(alignof(UMaterialExpressionArcsineFast) == 0x000008, "Wrong alignment on UMaterialExpressionArcsineFast"); \ +static_assert(sizeof(UMaterialExpressionArcsineFast) == 0x0000D8, "Wrong size on UMaterialExpressionArcsineFast"); \ +static_assert(offsetof(UMaterialExpressionArcsineFast, Input) == 0x0000B0, "Member 'UMaterialExpressionArcsineFast::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetEnabled \ +static_assert(alignof(AudioVolume_SetEnabled) == 0x000001, "Wrong alignment on AudioVolume_SetEnabled"); \ +static_assert(sizeof(AudioVolume_SetEnabled) == 0x000001, "Wrong size on AudioVolume_SetEnabled"); \ +static_assert(offsetof(AudioVolume_SetEnabled, bNewEnabled) == 0x000000, "Member 'AudioVolume_SetEnabled::bNewEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetInteriorSettings \ +static_assert(alignof(AudioVolume_SetInteriorSettings) == 0x000004, "Wrong alignment on AudioVolume_SetInteriorSettings"); \ +static_assert(sizeof(AudioVolume_SetInteriorSettings) == 0x000024, "Wrong size on AudioVolume_SetInteriorSettings"); \ +static_assert(offsetof(AudioVolume_SetInteriorSettings, NewInteriorSettings) == 0x000000, "Member 'AudioVolume_SetInteriorSettings::NewInteriorSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetPriority \ +static_assert(alignof(AudioVolume_SetPriority) == 0x000004, "Wrong alignment on AudioVolume_SetPriority"); \ +static_assert(sizeof(AudioVolume_SetPriority) == 0x000004, "Wrong size on AudioVolume_SetPriority"); \ +static_assert(offsetof(AudioVolume_SetPriority, NewPriority) == 0x000000, "Member 'AudioVolume_SetPriority::NewPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetReverbSettings \ +static_assert(alignof(AudioVolume_SetReverbSettings) == 0x000008, "Wrong alignment on AudioVolume_SetReverbSettings"); \ +static_assert(sizeof(AudioVolume_SetReverbSettings) == 0x000020, "Wrong size on AudioVolume_SetReverbSettings"); \ +static_assert(offsetof(AudioVolume_SetReverbSettings, NewReverbSettings) == 0x000000, "Member 'AudioVolume_SetReverbSettings::NewReverbSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetSubmixOverrideSettings \ +static_assert(alignof(AudioVolume_SetSubmixOverrideSettings) == 0x000008, "Wrong alignment on AudioVolume_SetSubmixOverrideSettings"); \ +static_assert(sizeof(AudioVolume_SetSubmixOverrideSettings) == 0x000010, "Wrong size on AudioVolume_SetSubmixOverrideSettings"); \ +static_assert(offsetof(AudioVolume_SetSubmixOverrideSettings, NewSubmixOverrideSettings) == 0x000000, "Member 'AudioVolume_SetSubmixOverrideSettings::NewSubmixOverrideSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioVolume_SetSubmixSendSettings \ +static_assert(alignof(AudioVolume_SetSubmixSendSettings) == 0x000008, "Wrong alignment on AudioVolume_SetSubmixSendSettings"); \ +static_assert(sizeof(AudioVolume_SetSubmixSendSettings) == 0x000010, "Wrong size on AudioVolume_SetSubmixSendSettings"); \ +static_assert(offsetof(AudioVolume_SetSubmixSendSettings, NewSubmixSendSettings) == 0x000000, "Member 'AudioVolume_SetSubmixSendSettings::NewSubmixSendSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAudioVolume \ +static_assert(alignof(AAudioVolume) == 0x000008, "Wrong alignment on AAudioVolume"); \ +static_assert(sizeof(AAudioVolume) == 0x000340, "Wrong size on AAudioVolume"); \ +static_assert(offsetof(AAudioVolume, Priority) == 0x0002D0, "Member 'AAudioVolume::Priority' has a wrong offset!"); \ +static_assert(offsetof(AAudioVolume, Settings) == 0x0002D8, "Member 'AAudioVolume::Settings' has a wrong offset!"); \ +static_assert(offsetof(AAudioVolume, AmbientZoneSettings) == 0x0002F8, "Member 'AAudioVolume::AmbientZoneSettings' has a wrong offset!"); \ +static_assert(offsetof(AAudioVolume, SubmixSendSettings) == 0x000320, "Member 'AAudioVolume::SubmixSendSettings' has a wrong offset!"); \ +static_assert(offsetof(AAudioVolume, SubmixOverrideSettings) == 0x000330, "Member 'AAudioVolume::SubmixOverrideSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerInput_InvertAxis \ +static_assert(alignof(PlayerInput_InvertAxis) == 0x000004, "Wrong alignment on PlayerInput_InvertAxis"); \ +static_assert(sizeof(PlayerInput_InvertAxis) == 0x000008, "Wrong size on PlayerInput_InvertAxis"); \ +static_assert(offsetof(PlayerInput_InvertAxis, AxisName) == 0x000000, "Member 'PlayerInput_InvertAxis::AxisName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerInput_InvertAxisKey \ +static_assert(alignof(PlayerInput_InvertAxisKey) == 0x000008, "Wrong alignment on PlayerInput_InvertAxisKey"); \ +static_assert(sizeof(PlayerInput_InvertAxisKey) == 0x000018, "Wrong size on PlayerInput_InvertAxisKey"); \ +static_assert(offsetof(PlayerInput_InvertAxisKey, AxisKey) == 0x000000, "Member 'PlayerInput_InvertAxisKey::AxisKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerInput_SetBind \ +static_assert(alignof(PlayerInput_SetBind) == 0x000008, "Wrong alignment on PlayerInput_SetBind"); \ +static_assert(sizeof(PlayerInput_SetBind) == 0x000018, "Wrong size on PlayerInput_SetBind"); \ +static_assert(offsetof(PlayerInput_SetBind, BindName) == 0x000000, "Member 'PlayerInput_SetBind::BindName' has a wrong offset!"); \ +static_assert(offsetof(PlayerInput_SetBind, Command) == 0x000008, "Member 'PlayerInput_SetBind::Command' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerInput_SetMouseSensitivity \ +static_assert(alignof(PlayerInput_SetMouseSensitivity) == 0x000004, "Wrong alignment on PlayerInput_SetMouseSensitivity"); \ +static_assert(sizeof(PlayerInput_SetMouseSensitivity) == 0x000004, "Wrong size on PlayerInput_SetMouseSensitivity"); \ +static_assert(offsetof(PlayerInput_SetMouseSensitivity, Sensitivity) == 0x000000, "Member 'PlayerInput_SetMouseSensitivity::Sensitivity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerInput_GetOuterAPlayerController \ +static_assert(alignof(PlayerInput_GetOuterAPlayerController) == 0x000008, "Wrong alignment on PlayerInput_GetOuterAPlayerController"); \ +static_assert(sizeof(PlayerInput_GetOuterAPlayerController) == 0x000008, "Wrong size on PlayerInput_GetOuterAPlayerController"); \ +static_assert(offsetof(PlayerInput_GetOuterAPlayerController, ReturnValue) == 0x000000, "Member 'PlayerInput_GetOuterAPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayerInput \ +static_assert(alignof(UPlayerInput) == 0x000008, "Wrong alignment on UPlayerInput"); \ +static_assert(sizeof(UPlayerInput) == 0x000498, "Wrong size on UPlayerInput"); \ +static_assert(offsetof(UPlayerInput, DebugExecBindings) == 0x0001A0, "Member 'UPlayerInput::DebugExecBindings' has a wrong offset!"); \ +static_assert(offsetof(UPlayerInput, InvertedAxis) == 0x0001E0, "Member 'UPlayerInput::InvertedAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionShaderStageSwitch \ +static_assert(alignof(UMaterialExpressionShaderStageSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionShaderStageSwitch"); \ +static_assert(sizeof(UMaterialExpressionShaderStageSwitch) == 0x000100, "Wrong size on UMaterialExpressionShaderStageSwitch"); \ +static_assert(offsetof(UMaterialExpressionShaderStageSwitch, PixelShader) == 0x0000B0, "Member 'UMaterialExpressionShaderStageSwitch::PixelShader' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionShaderStageSwitch, VertexShader) == 0x0000D8, "Member 'UMaterialExpressionShaderStageSwitch::VertexShader' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArctangent \ +static_assert(alignof(UMaterialExpressionArctangent) == 0x000008, "Wrong alignment on UMaterialExpressionArctangent"); \ +static_assert(sizeof(UMaterialExpressionArctangent) == 0x0000D8, "Wrong size on UMaterialExpressionArctangent"); \ +static_assert(offsetof(UMaterialExpressionArctangent, Input) == 0x0000B0, "Member 'UMaterialExpressionArctangent::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArctangent2 \ +static_assert(alignof(UMaterialExpressionArctangent2) == 0x000008, "Wrong alignment on UMaterialExpressionArctangent2"); \ +static_assert(sizeof(UMaterialExpressionArctangent2) == 0x000100, "Wrong size on UMaterialExpressionArctangent2"); \ +static_assert(offsetof(UMaterialExpressionArctangent2, Y) == 0x0000B0, "Member 'UMaterialExpressionArctangent2::Y' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionArctangent2, X) == 0x0000D8, "Member 'UMaterialExpressionArctangent2::X' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABrushShape \ +static_assert(alignof(ABrushShape) == 0x000008, "Wrong alignment on ABrushShape"); \ +static_assert(sizeof(ABrushShape) == 0x0002D0, "Wrong size on ABrushShape"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionHsvToRgb \ +static_assert(alignof(UMaterialExpressionHsvToRgb) == 0x000008, "Wrong alignment on UMaterialExpressionHsvToRgb"); \ +static_assert(sizeof(UMaterialExpressionHsvToRgb) == 0x0000D8, "Wrong size on UMaterialExpressionHsvToRgb"); \ +static_assert(offsetof(UMaterialExpressionHsvToRgb, Input) == 0x0000B0, "Member 'UMaterialExpressionHsvToRgb::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArctangent2Fast \ +static_assert(alignof(UMaterialExpressionArctangent2Fast) == 0x000008, "Wrong alignment on UMaterialExpressionArctangent2Fast"); \ +static_assert(sizeof(UMaterialExpressionArctangent2Fast) == 0x000100, "Wrong size on UMaterialExpressionArctangent2Fast"); \ +static_assert(offsetof(UMaterialExpressionArctangent2Fast, Y) == 0x0000B0, "Member 'UMaterialExpressionArctangent2Fast::Y' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionArctangent2Fast, X) == 0x0000D8, "Member 'UMaterialExpressionArctangent2Fast::X' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManagerExtension_GetPlayerController \ +static_assert(alignof(CheatManagerExtension_GetPlayerController) == 0x000008, "Wrong alignment on CheatManagerExtension_GetPlayerController"); \ +static_assert(sizeof(CheatManagerExtension_GetPlayerController) == 0x000008, "Wrong size on CheatManagerExtension_GetPlayerController"); \ +static_assert(offsetof(CheatManagerExtension_GetPlayerController, ReturnValue) == 0x000000, "Member 'CheatManagerExtension_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheatManagerExtension \ +static_assert(alignof(UCheatManagerExtension) == 0x000008, "Wrong alignment on UCheatManagerExtension"); \ +static_assert(sizeof(UCheatManagerExtension) == 0x000028, "Wrong size on UCheatManagerExtension"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionArctangentFast \ +static_assert(alignof(UMaterialExpressionArctangentFast) == 0x000008, "Wrong alignment on UMaterialExpressionArctangentFast"); \ +static_assert(sizeof(UMaterialExpressionArctangentFast) == 0x0000D8, "Wrong size on UMaterialExpressionArctangentFast"); \ +static_assert(offsetof(UMaterialExpressionArctangentFast, Input) == 0x0000B0, "Member 'UMaterialExpressionArctangentFast::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTexture_GetPageTableSize \ +static_assert(alignof(RuntimeVirtualTexture_GetPageTableSize) == 0x000004, "Wrong alignment on RuntimeVirtualTexture_GetPageTableSize"); \ +static_assert(sizeof(RuntimeVirtualTexture_GetPageTableSize) == 0x000004, "Wrong size on RuntimeVirtualTexture_GetPageTableSize"); \ +static_assert(offsetof(RuntimeVirtualTexture_GetPageTableSize, ReturnValue) == 0x000000, "Member 'RuntimeVirtualTexture_GetPageTableSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTexture_GetSize \ +static_assert(alignof(RuntimeVirtualTexture_GetSize) == 0x000004, "Wrong alignment on RuntimeVirtualTexture_GetSize"); \ +static_assert(sizeof(RuntimeVirtualTexture_GetSize) == 0x000004, "Wrong size on RuntimeVirtualTexture_GetSize"); \ +static_assert(offsetof(RuntimeVirtualTexture_GetSize, ReturnValue) == 0x000000, "Member 'RuntimeVirtualTexture_GetSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTexture_GetTileBorderSize \ +static_assert(alignof(RuntimeVirtualTexture_GetTileBorderSize) == 0x000004, "Wrong alignment on RuntimeVirtualTexture_GetTileBorderSize"); \ +static_assert(sizeof(RuntimeVirtualTexture_GetTileBorderSize) == 0x000004, "Wrong size on RuntimeVirtualTexture_GetTileBorderSize"); \ +static_assert(offsetof(RuntimeVirtualTexture_GetTileBorderSize, ReturnValue) == 0x000000, "Member 'RuntimeVirtualTexture_GetTileBorderSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTexture_GetTileCount \ +static_assert(alignof(RuntimeVirtualTexture_GetTileCount) == 0x000004, "Wrong alignment on RuntimeVirtualTexture_GetTileCount"); \ +static_assert(sizeof(RuntimeVirtualTexture_GetTileCount) == 0x000004, "Wrong size on RuntimeVirtualTexture_GetTileCount"); \ +static_assert(offsetof(RuntimeVirtualTexture_GetTileCount, ReturnValue) == 0x000000, "Member 'RuntimeVirtualTexture_GetTileCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTexture_GetTileSize \ +static_assert(alignof(RuntimeVirtualTexture_GetTileSize) == 0x000004, "Wrong alignment on RuntimeVirtualTexture_GetTileSize"); \ +static_assert(sizeof(RuntimeVirtualTexture_GetTileSize) == 0x000004, "Wrong size on RuntimeVirtualTexture_GetTileSize"); \ +static_assert(offsetof(RuntimeVirtualTexture_GetTileSize, ReturnValue) == 0x000000, "Member 'RuntimeVirtualTexture_GetTileSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeVirtualTexture \ +static_assert(alignof(URuntimeVirtualTexture) == 0x000010, "Wrong alignment on URuntimeVirtualTexture"); \ +static_assert(sizeof(URuntimeVirtualTexture) == 0x0000E0, "Wrong size on URuntimeVirtualTexture"); \ +static_assert(offsetof(URuntimeVirtualTexture, TileCount) == 0x000028, "Member 'URuntimeVirtualTexture::TileCount' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, TileSize) == 0x00002C, "Member 'URuntimeVirtualTexture::TileSize' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, TileBorderSize) == 0x000030, "Member 'URuntimeVirtualTexture::TileBorderSize' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, MaterialType) == 0x000034, "Member 'URuntimeVirtualTexture::MaterialType' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bCompressTextures) == 0x000035, "Member 'URuntimeVirtualTexture::bCompressTextures' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bUseLowQualityCompression) == 0x000036, "Member 'URuntimeVirtualTexture::bUseLowQualityCompression' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bClearTextures) == 0x000037, "Member 'URuntimeVirtualTexture::bClearTextures' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bSinglePhysicalSpace) == 0x000038, "Member 'URuntimeVirtualTexture::bSinglePhysicalSpace' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bPrivateSpace) == 0x000039, "Member 'URuntimeVirtualTexture::bPrivateSpace' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bAdaptive) == 0x00003A, "Member 'URuntimeVirtualTexture::bAdaptive' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, bContinuousUpdate) == 0x00003B, "Member 'URuntimeVirtualTexture::bContinuousUpdate' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, RemoveLowMips) == 0x00003C, "Member 'URuntimeVirtualTexture::RemoveLowMips' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, LODGroup) == 0x000040, "Member 'URuntimeVirtualTexture::LODGroup' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, Size) == 0x000044, "Member 'URuntimeVirtualTexture::Size' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTexture, StreamingTexture) == 0x000048, "Member 'URuntimeVirtualTexture::StreamingTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleMacroUV \ +static_assert(alignof(UMaterialExpressionParticleMacroUV) == 0x000008, "Wrong alignment on UMaterialExpressionParticleMacroUV"); \ +static_assert(sizeof(UMaterialExpressionParticleMacroUV) == 0x0000B0, "Wrong size on UMaterialExpressionParticleMacroUV"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAtmosphericFogColor \ +static_assert(alignof(UMaterialExpressionAtmosphericFogColor) == 0x000008, "Wrong alignment on UMaterialExpressionAtmosphericFogColor"); \ +static_assert(sizeof(UMaterialExpressionAtmosphericFogColor) == 0x0000D8, "Wrong size on UMaterialExpressionAtmosphericFogColor"); \ +static_assert(offsetof(UMaterialExpressionAtmosphericFogColor, WorldPosition) == 0x0000B0, "Member 'UMaterialExpressionAtmosphericFogColor::WorldPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PauseClothingSimulation \ +static_assert(alignof(UAnimNotify_PauseClothingSimulation) == 0x000008, "Wrong alignment on UAnimNotify_PauseClothingSimulation"); \ +static_assert(sizeof(UAnimNotify_PauseClothingSimulation) == 0x000038, "Wrong size on UAnimNotify_PauseClothingSimulation"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAtmosphericLightColor \ +static_assert(alignof(UMaterialExpressionAtmosphericLightColor) == 0x000008, "Wrong alignment on UMaterialExpressionAtmosphericLightColor"); \ +static_assert(sizeof(UMaterialExpressionAtmosphericLightColor) == 0x0000B0, "Wrong size on UMaterialExpressionAtmosphericLightColor"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionAtmosphericLightVector \ +static_assert(alignof(UMaterialExpressionAtmosphericLightVector) == 0x000008, "Wrong alignment on UMaterialExpressionAtmosphericLightVector"); \ +static_assert(sizeof(UMaterialExpressionAtmosphericLightVector) == 0x0000B0, "Wrong size on UMaterialExpressionAtmosphericLightVector"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNormalize \ +static_assert(alignof(UMaterialExpressionNormalize) == 0x000008, "Wrong alignment on UMaterialExpressionNormalize"); \ +static_assert(sizeof(UMaterialExpressionNormalize) == 0x0000D8, "Wrong size on UMaterialExpressionNormalize"); \ +static_assert(offsetof(UMaterialExpressionNormalize, VectorInput) == 0x0000B0, "Member 'UMaterialExpressionNormalize::VectorInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBentNormalCustomOutput \ +static_assert(alignof(UMaterialExpressionBentNormalCustomOutput) == 0x000008, "Wrong alignment on UMaterialExpressionBentNormalCustomOutput"); \ +static_assert(sizeof(UMaterialExpressionBentNormalCustomOutput) == 0x0000D8, "Wrong size on UMaterialExpressionBentNormalCustomOutput"); \ +static_assert(offsetof(UMaterialExpressionBentNormalCustomOutput, Input) == 0x0000B0, "Member 'UMaterialExpressionBentNormalCustomOutput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBookMark \ +static_assert(alignof(UBookMark) == 0x000008, "Wrong alignment on UBookMark"); \ +static_assert(sizeof(UBookMark) == 0x000068, "Wrong size on UBookMark"); \ +static_assert(offsetof(UBookMark, Location) == 0x000028, "Member 'UBookMark::Location' has a wrong offset!"); \ +static_assert(offsetof(UBookMark, Rotation) == 0x000040, "Member 'UBookMark::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UBookMark, HiddenLevels) == 0x000058, "Member 'UBookMark::HiddenLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBlackBody \ +static_assert(alignof(UMaterialExpressionBlackBody) == 0x000008, "Wrong alignment on UMaterialExpressionBlackBody"); \ +static_assert(sizeof(UMaterialExpressionBlackBody) == 0x0000D8, "Wrong size on UMaterialExpressionBlackBody"); \ +static_assert(offsetof(UMaterialExpressionBlackBody, Temp) == 0x0000B0, "Member 'UMaterialExpressionBlackBody::Temp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBreakMaterialAttributes \ +static_assert(alignof(UMaterialExpressionBreakMaterialAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionBreakMaterialAttributes"); \ +static_assert(sizeof(UMaterialExpressionBreakMaterialAttributes) == 0x0000E0, "Wrong size on UMaterialExpressionBreakMaterialAttributes"); \ +static_assert(offsetof(UMaterialExpressionBreakMaterialAttributes, MaterialAttributes) == 0x0000B0, "Member 'UMaterialExpressionBreakMaterialAttributes::MaterialAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundfieldSubmix \ +static_assert(alignof(USoundfieldSubmix) == 0x000008, "Wrong alignment on USoundfieldSubmix"); \ +static_assert(sizeof(USoundfieldSubmix) == 0x000070, "Wrong size on USoundfieldSubmix"); \ +static_assert(offsetof(USoundfieldSubmix, SoundfieldEncodingFormat) == 0x000048, "Member 'USoundfieldSubmix::SoundfieldEncodingFormat' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldSubmix, EncodingSettings) == 0x000050, "Member 'USoundfieldSubmix::EncodingSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldSubmix, SoundfieldEffectChain) == 0x000058, "Member 'USoundfieldSubmix::SoundfieldEffectChain' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldSubmix, EncodingSettingsClass) == 0x000068, "Member 'USoundfieldSubmix::EncodingSettingsClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionBumpOffset \ +static_assert(alignof(UMaterialExpressionBumpOffset) == 0x000008, "Wrong alignment on UMaterialExpressionBumpOffset"); \ +static_assert(sizeof(UMaterialExpressionBumpOffset) == 0x000138, "Wrong size on UMaterialExpressionBumpOffset"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, Coordinate) == 0x0000B0, "Member 'UMaterialExpressionBumpOffset::Coordinate' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, Height) == 0x0000D8, "Member 'UMaterialExpressionBumpOffset::Height' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, HeightRatioInput) == 0x000100, "Member 'UMaterialExpressionBumpOffset::HeightRatioInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, HeightRatio) == 0x000128, "Member 'UMaterialExpressionBumpOffset::HeightRatio' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, ReferencePlane) == 0x00012C, "Member 'UMaterialExpressionBumpOffset::ReferencePlane' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionBumpOffset, ConstCoordinate) == 0x000130, "Member 'UMaterialExpressionBumpOffset::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCameraPositionWS \ +static_assert(alignof(UMaterialExpressionCameraPositionWS) == 0x000008, "Wrong alignment on UMaterialExpressionCameraPositionWS"); \ +static_assert(sizeof(UMaterialExpressionCameraPositionWS) == 0x0000B0, "Wrong size on UMaterialExpressionCameraPositionWS"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCeil \ +static_assert(alignof(UMaterialExpressionCeil) == 0x000008, "Wrong alignment on UMaterialExpressionCeil"); \ +static_assert(sizeof(UMaterialExpressionCeil) == 0x0000D8, "Wrong size on UMaterialExpressionCeil"); \ +static_assert(offsetof(UMaterialExpressionCeil, Input) == 0x0000B0, "Member 'UMaterialExpressionCeil::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionClamp \ +static_assert(alignof(UMaterialExpressionClamp) == 0x000008, "Wrong alignment on UMaterialExpressionClamp"); \ +static_assert(sizeof(UMaterialExpressionClamp) == 0x000138, "Wrong size on UMaterialExpressionClamp"); \ +static_assert(offsetof(UMaterialExpressionClamp, Input) == 0x0000B0, "Member 'UMaterialExpressionClamp::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionClamp, Min) == 0x0000D8, "Member 'UMaterialExpressionClamp::Min' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionClamp, Max) == 0x000100, "Member 'UMaterialExpressionClamp::Max' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionClamp, ClampMode) == 0x000128, "Member 'UMaterialExpressionClamp::ClampMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionClamp, MinDefault) == 0x00012C, "Member 'UMaterialExpressionClamp::MinDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionClamp, MaxDefault) == 0x000130, "Member 'UMaterialExpressionClamp::MaxDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionComment \ +static_assert(alignof(UMaterialExpressionComment) == 0x000008, "Wrong alignment on UMaterialExpressionComment"); \ +static_assert(sizeof(UMaterialExpressionComment) == 0x0000E8, "Wrong size on UMaterialExpressionComment"); \ +static_assert(offsetof(UMaterialExpressionComment, SizeX) == 0x0000B0, "Member 'UMaterialExpressionComment::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComment, SizeY) == 0x0000B4, "Member 'UMaterialExpressionComment::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComment, Text) == 0x0000B8, "Member 'UMaterialExpressionComment::Text' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComment, CommentColor) == 0x0000C8, "Member 'UMaterialExpressionComment::CommentColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComment, FontSize) == 0x0000D8, "Member 'UMaterialExpressionComment::FontSize' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComment, bGroupMode) == 0x0000E0, "Member 'UMaterialExpressionComment::bGroupMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionComposite \ +static_assert(alignof(UMaterialExpressionComposite) == 0x000008, "Wrong alignment on UMaterialExpressionComposite"); \ +static_assert(sizeof(UMaterialExpressionComposite) == 0x0000D0, "Wrong size on UMaterialExpressionComposite"); \ +static_assert(offsetof(UMaterialExpressionComposite, SubgraphName) == 0x0000B0, "Member 'UMaterialExpressionComposite::SubgraphName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComposite, InputExpressions) == 0x0000C0, "Member 'UMaterialExpressionComposite::InputExpressions' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionComposite, OutputExpressions) == 0x0000C8, "Member 'UMaterialExpressionComposite::OutputExpressions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstant2Vector \ +static_assert(alignof(UMaterialExpressionConstant2Vector) == 0x000008, "Wrong alignment on UMaterialExpressionConstant2Vector"); \ +static_assert(sizeof(UMaterialExpressionConstant2Vector) == 0x0000B8, "Wrong size on UMaterialExpressionConstant2Vector"); \ +static_assert(offsetof(UMaterialExpressionConstant2Vector, R) == 0x0000B0, "Member 'UMaterialExpressionConstant2Vector::R' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionConstant2Vector, G) == 0x0000B4, "Member 'UMaterialExpressionConstant2Vector::G' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionConstant4Vector \ +static_assert(alignof(UMaterialExpressionConstant4Vector) == 0x000008, "Wrong alignment on UMaterialExpressionConstant4Vector"); \ +static_assert(sizeof(UMaterialExpressionConstant4Vector) == 0x0000C0, "Wrong size on UMaterialExpressionConstant4Vector"); \ +static_assert(offsetof(UMaterialExpressionConstant4Vector, Constant) == 0x0000B0, "Member 'UMaterialExpressionConstant4Vector::Constant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCosine \ +static_assert(alignof(UMaterialExpressionCosine) == 0x000008, "Wrong alignment on UMaterialExpressionCosine"); \ +static_assert(sizeof(UMaterialExpressionCosine) == 0x0000E0, "Wrong size on UMaterialExpressionCosine"); \ +static_assert(offsetof(UMaterialExpressionCosine, Input) == 0x0000B0, "Member 'UMaterialExpressionCosine::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCosine, Period) == 0x0000D8, "Member 'UMaterialExpressionCosine::Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionCustom \ +static_assert(alignof(UMaterialExpressionCustom) == 0x000008, "Wrong alignment on UMaterialExpressionCustom"); \ +static_assert(sizeof(UMaterialExpressionCustom) == 0x000118, "Wrong size on UMaterialExpressionCustom"); \ +static_assert(offsetof(UMaterialExpressionCustom, Code) == 0x0000B0, "Member 'UMaterialExpressionCustom::Code' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, OutputType) == 0x0000C0, "Member 'UMaterialExpressionCustom::OutputType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, Description) == 0x0000C8, "Member 'UMaterialExpressionCustom::Description' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, Inputs) == 0x0000D8, "Member 'UMaterialExpressionCustom::Inputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, AdditionalOutputs) == 0x0000E8, "Member 'UMaterialExpressionCustom::AdditionalOutputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, AdditionalDefines) == 0x0000F8, "Member 'UMaterialExpressionCustom::AdditionalDefines' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionCustom, IncludeFilePaths) == 0x000108, "Member 'UMaterialExpressionCustom::IncludeFilePaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDBufferTexture \ +static_assert(alignof(UMaterialExpressionDBufferTexture) == 0x000008, "Wrong alignment on UMaterialExpressionDBufferTexture"); \ +static_assert(sizeof(UMaterialExpressionDBufferTexture) == 0x0000E0, "Wrong size on UMaterialExpressionDBufferTexture"); \ +static_assert(offsetof(UMaterialExpressionDBufferTexture, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionDBufferTexture::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDBufferTexture, DBufferTextureId) == 0x0000D8, "Member 'UMaterialExpressionDBufferTexture::DBufferTextureId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDecalDerivative \ +static_assert(alignof(UMaterialExpressionDecalDerivative) == 0x000008, "Wrong alignment on UMaterialExpressionDecalDerivative"); \ +static_assert(sizeof(UMaterialExpressionDecalDerivative) == 0x0000B0, "Wrong size on UMaterialExpressionDecalDerivative"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDecalLifetimeOpacity \ +static_assert(alignof(UMaterialExpressionDecalLifetimeOpacity) == 0x000008, "Wrong alignment on UMaterialExpressionDecalLifetimeOpacity"); \ +static_assert(sizeof(UMaterialExpressionDecalLifetimeOpacity) == 0x0000B0, "Wrong size on UMaterialExpressionDecalLifetimeOpacity"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDecalMipmapLevel \ +static_assert(alignof(UMaterialExpressionDecalMipmapLevel) == 0x000008, "Wrong alignment on UMaterialExpressionDecalMipmapLevel"); \ +static_assert(sizeof(UMaterialExpressionDecalMipmapLevel) == 0x0000E0, "Wrong size on UMaterialExpressionDecalMipmapLevel"); \ +static_assert(offsetof(UMaterialExpressionDecalMipmapLevel, TextureSize) == 0x0000B0, "Member 'UMaterialExpressionDecalMipmapLevel::TextureSize' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDecalMipmapLevel, ConstWidth) == 0x0000D8, "Member 'UMaterialExpressionDecalMipmapLevel::ConstWidth' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDecalMipmapLevel, ConstHeight) == 0x0000DC, "Member 'UMaterialExpressionDecalMipmapLevel::ConstHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDepthFade \ +static_assert(alignof(UMaterialExpressionDepthFade) == 0x000008, "Wrong alignment on UMaterialExpressionDepthFade"); \ +static_assert(sizeof(UMaterialExpressionDepthFade) == 0x000108, "Wrong size on UMaterialExpressionDepthFade"); \ +static_assert(offsetof(UMaterialExpressionDepthFade, InOpacity) == 0x0000B0, "Member 'UMaterialExpressionDepthFade::InOpacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDepthFade, FadeDistance) == 0x0000D8, "Member 'UMaterialExpressionDepthFade::FadeDistance' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDepthFade, OpacityDefault) == 0x000100, "Member 'UMaterialExpressionDepthFade::OpacityDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDepthFade, FadeDistanceDefault) == 0x000104, "Member 'UMaterialExpressionDepthFade::FadeDistanceDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistance \ +static_assert(alignof(UMaterialExpressionDistance) == 0x000008, "Wrong alignment on UMaterialExpressionDistance"); \ +static_assert(sizeof(UMaterialExpressionDistance) == 0x000100, "Wrong size on UMaterialExpressionDistance"); \ +static_assert(offsetof(UMaterialExpressionDistance, A) == 0x0000B0, "Member 'UMaterialExpressionDistance::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistance, B) == 0x0000D8, "Member 'UMaterialExpressionDistance::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistanceCullFade \ +static_assert(alignof(UMaterialExpressionDistanceCullFade) == 0x000008, "Wrong alignment on UMaterialExpressionDistanceCullFade"); \ +static_assert(sizeof(UMaterialExpressionDistanceCullFade) == 0x0000B0, "Wrong size on UMaterialExpressionDistanceCullFade"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistanceFieldApproxAO \ +static_assert(alignof(UMaterialExpressionDistanceFieldApproxAO) == 0x000008, "Wrong alignment on UMaterialExpressionDistanceFieldApproxAO"); \ +static_assert(sizeof(UMaterialExpressionDistanceFieldApproxAO) == 0x000168, "Wrong size on UMaterialExpressionDistanceFieldApproxAO"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, Position) == 0x0000B0, "Member 'UMaterialExpressionDistanceFieldApproxAO::Position' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, Normal) == 0x0000D8, "Member 'UMaterialExpressionDistanceFieldApproxAO::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, BaseDistance) == 0x000100, "Member 'UMaterialExpressionDistanceFieldApproxAO::BaseDistance' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, BaseDistanceDefault) == 0x000128, "Member 'UMaterialExpressionDistanceFieldApproxAO::BaseDistanceDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, Radius) == 0x000130, "Member 'UMaterialExpressionDistanceFieldApproxAO::Radius' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, RadiusDefault) == 0x000158, "Member 'UMaterialExpressionDistanceFieldApproxAO::RadiusDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, NumSteps) == 0x00015C, "Member 'UMaterialExpressionDistanceFieldApproxAO::NumSteps' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldApproxAO, StepScaleDefault) == 0x000160, "Member 'UMaterialExpressionDistanceFieldApproxAO::StepScaleDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnlineSession \ +static_assert(alignof(UOnlineSession) == 0x000008, "Wrong alignment on UOnlineSession"); \ +static_assert(sizeof(UOnlineSession) == 0x000028, "Wrong size on UOnlineSession"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistanceFieldGradient \ +static_assert(alignof(UMaterialExpressionDistanceFieldGradient) == 0x000008, "Wrong alignment on UMaterialExpressionDistanceFieldGradient"); \ +static_assert(sizeof(UMaterialExpressionDistanceFieldGradient) == 0x0000D8, "Wrong size on UMaterialExpressionDistanceFieldGradient"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldGradient, Position) == 0x0000B0, "Member 'UMaterialExpressionDistanceFieldGradient::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDistanceFieldsRenderingSwitch \ +static_assert(alignof(UMaterialExpressionDistanceFieldsRenderingSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionDistanceFieldsRenderingSwitch"); \ +static_assert(sizeof(UMaterialExpressionDistanceFieldsRenderingSwitch) == 0x000100, "Wrong size on UMaterialExpressionDistanceFieldsRenderingSwitch"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldsRenderingSwitch, No) == 0x0000B0, "Member 'UMaterialExpressionDistanceFieldsRenderingSwitch::No' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDistanceFieldsRenderingSwitch, Yes) == 0x0000D8, "Member 'UMaterialExpressionDistanceFieldsRenderingSwitch::Yes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDivide \ +static_assert(alignof(UMaterialExpressionDivide) == 0x000008, "Wrong alignment on UMaterialExpressionDivide"); \ +static_assert(sizeof(UMaterialExpressionDivide) == 0x000108, "Wrong size on UMaterialExpressionDivide"); \ +static_assert(offsetof(UMaterialExpressionDivide, A) == 0x0000B0, "Member 'UMaterialExpressionDivide::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDivide, B) == 0x0000D8, "Member 'UMaterialExpressionDivide::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDivide, ConstA) == 0x000100, "Member 'UMaterialExpressionDivide::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionDivide, ConstB) == 0x000104, "Member 'UMaterialExpressionDivide::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionDoubleVectorParameter \ +static_assert(alignof(UMaterialExpressionDoubleVectorParameter) == 0x000010, "Wrong alignment on UMaterialExpressionDoubleVectorParameter"); \ +static_assert(sizeof(UMaterialExpressionDoubleVectorParameter) == 0x000100, "Wrong size on UMaterialExpressionDoubleVectorParameter"); \ +static_assert(offsetof(UMaterialExpressionDoubleVectorParameter, DefaultValue) == 0x0000E0, "Member 'UMaterialExpressionDoubleVectorParameter::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionExecBegin \ +static_assert(alignof(UMaterialExpressionExecBegin) == 0x000008, "Wrong alignment on UMaterialExpressionExecBegin"); \ +static_assert(sizeof(UMaterialExpressionExecBegin) == 0x0000B8, "Wrong size on UMaterialExpressionExecBegin"); \ +static_assert(offsetof(UMaterialExpressionExecBegin, Exec) == 0x0000B0, "Member 'UMaterialExpressionExecBegin::Exec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeLooping \ +static_assert(alignof(USoundNodeLooping) == 0x000008, "Wrong alignment on USoundNodeLooping"); \ +static_assert(sizeof(USoundNodeLooping) == 0x000050, "Wrong size on USoundNodeLooping"); \ +static_assert(offsetof(USoundNodeLooping, LoopCount) == 0x000048, "Member 'USoundNodeLooping::LoopCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionExecEnd \ +static_assert(alignof(UMaterialExpressionExecEnd) == 0x000008, "Wrong alignment on UMaterialExpressionExecEnd"); \ +static_assert(sizeof(UMaterialExpressionExecEnd) == 0x0000B0, "Wrong size on UMaterialExpressionExecEnd"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionExponential \ +static_assert(alignof(UMaterialExpressionExponential) == 0x000008, "Wrong alignment on UMaterialExpressionExponential"); \ +static_assert(sizeof(UMaterialExpressionExponential) == 0x0000D8, "Wrong size on UMaterialExpressionExponential"); \ +static_assert(offsetof(UMaterialExpressionExponential, Input) == 0x0000B0, "Member 'UMaterialExpressionExponential::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionEyeAdaptation \ +static_assert(alignof(UMaterialExpressionEyeAdaptation) == 0x000008, "Wrong alignment on UMaterialExpressionEyeAdaptation"); \ +static_assert(sizeof(UMaterialExpressionEyeAdaptation) == 0x0000B0, "Wrong size on UMaterialExpressionEyeAdaptation"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFeatureLevelSwitch \ +static_assert(alignof(UMaterialExpressionFeatureLevelSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionFeatureLevelSwitch"); \ +static_assert(sizeof(UMaterialExpressionFeatureLevelSwitch) == 0x0001A0, "Wrong size on UMaterialExpressionFeatureLevelSwitch"); \ +static_assert(offsetof(UMaterialExpressionFeatureLevelSwitch, Default) == 0x0000B0, "Member 'UMaterialExpressionFeatureLevelSwitch::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFeatureLevelSwitch, Inputs) == 0x0000D8, "Member 'UMaterialExpressionFeatureLevelSwitch::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFmod \ +static_assert(alignof(UMaterialExpressionFmod) == 0x000008, "Wrong alignment on UMaterialExpressionFmod"); \ +static_assert(sizeof(UMaterialExpressionFmod) == 0x000100, "Wrong size on UMaterialExpressionFmod"); \ +static_assert(offsetof(UMaterialExpressionFmod, A) == 0x0000B0, "Member 'UMaterialExpressionFmod::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFmod, B) == 0x0000D8, "Member 'UMaterialExpressionFmod::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFontSampleParameter \ +static_assert(alignof(UMaterialExpressionFontSampleParameter) == 0x000008, "Wrong alignment on UMaterialExpressionFontSampleParameter"); \ +static_assert(sizeof(UMaterialExpressionFontSampleParameter) == 0x0000E8, "Wrong size on UMaterialExpressionFontSampleParameter"); \ +static_assert(offsetof(UMaterialExpressionFontSampleParameter, ParameterName) == 0x0000C0, "Member 'UMaterialExpressionFontSampleParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFontSampleParameter, ExpressionGUID) == 0x0000C8, "Member 'UMaterialExpressionFontSampleParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFontSampleParameter, Group) == 0x0000D8, "Member 'UMaterialExpressionFontSampleParameter::Group' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFontSampleParameter, SortPriority) == 0x0000E0, "Member 'UMaterialExpressionFontSampleParameter::SortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFrac \ +static_assert(alignof(UMaterialExpressionFrac) == 0x000008, "Wrong alignment on UMaterialExpressionFrac"); \ +static_assert(sizeof(UMaterialExpressionFrac) == 0x0000D8, "Wrong size on UMaterialExpressionFrac"); \ +static_assert(offsetof(UMaterialExpressionFrac, Input) == 0x0000B0, "Member 'UMaterialExpressionFrac::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionFunctionInput \ +static_assert(alignof(UMaterialExpressionFunctionInput) == 0x000010, "Wrong alignment on UMaterialExpressionFunctionInput"); \ +static_assert(sizeof(UMaterialExpressionFunctionInput) == 0x000160, "Wrong size on UMaterialExpressionFunctionInput"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, Preview) == 0x0000B0, "Member 'UMaterialExpressionFunctionInput::Preview' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, InputName) == 0x0000D8, "Member 'UMaterialExpressionFunctionInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, Description) == 0x0000E0, "Member 'UMaterialExpressionFunctionInput::Description' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, ID) == 0x0000F0, "Member 'UMaterialExpressionFunctionInput::ID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, InputType) == 0x000100, "Member 'UMaterialExpressionFunctionInput::InputType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, PreviewValue) == 0x000110, "Member 'UMaterialExpressionFunctionInput::PreviewValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionFunctionInput, SortPriority) == 0x000124, "Member 'UMaterialExpressionFunctionInput::SortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionGetLocal \ +static_assert(alignof(UMaterialExpressionGetLocal) == 0x000008, "Wrong alignment on UMaterialExpressionGetLocal"); \ +static_assert(sizeof(UMaterialExpressionGetLocal) == 0x0000B8, "Wrong size on UMaterialExpressionGetLocal"); \ +static_assert(offsetof(UMaterialExpressionGetLocal, LocalName) == 0x0000B0, "Member 'UMaterialExpressionGetLocal::LocalName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionGIReplace \ +static_assert(alignof(UMaterialExpressionGIReplace) == 0x000008, "Wrong alignment on UMaterialExpressionGIReplace"); \ +static_assert(sizeof(UMaterialExpressionGIReplace) == 0x000128, "Wrong size on UMaterialExpressionGIReplace"); \ +static_assert(offsetof(UMaterialExpressionGIReplace, Default) == 0x0000B0, "Member 'UMaterialExpressionGIReplace::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionGIReplace, StaticIndirect) == 0x0000D8, "Member 'UMaterialExpressionGIReplace::StaticIndirect' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionGIReplace, DynamicIndirect) == 0x000100, "Member 'UMaterialExpressionGIReplace::DynamicIndirect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionHairColor \ +static_assert(alignof(UMaterialExpressionHairColor) == 0x000008, "Wrong alignment on UMaterialExpressionHairColor"); \ +static_assert(sizeof(UMaterialExpressionHairColor) == 0x000128, "Wrong size on UMaterialExpressionHairColor"); \ +static_assert(offsetof(UMaterialExpressionHairColor, Melanin) == 0x0000B0, "Member 'UMaterialExpressionHairColor::Melanin' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionHairColor, Redness) == 0x0000D8, "Member 'UMaterialExpressionHairColor::Redness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionHairColor, DyeColor) == 0x000100, "Member 'UMaterialExpressionHairColor::DyeColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionIf \ +static_assert(alignof(UMaterialExpressionIf) == 0x000008, "Wrong alignment on UMaterialExpressionIf"); \ +static_assert(sizeof(UMaterialExpressionIf) == 0x000188, "Wrong size on UMaterialExpressionIf"); \ +static_assert(offsetof(UMaterialExpressionIf, A) == 0x0000B0, "Member 'UMaterialExpressionIf::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, B) == 0x0000D8, "Member 'UMaterialExpressionIf::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, AGreaterThanB) == 0x000100, "Member 'UMaterialExpressionIf::AGreaterThanB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, AEqualsB) == 0x000128, "Member 'UMaterialExpressionIf::AEqualsB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, ALessThanB) == 0x000150, "Member 'UMaterialExpressionIf::ALessThanB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, EqualsThreshold) == 0x000178, "Member 'UMaterialExpressionIf::EqualsThreshold' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, ConstB) == 0x00017C, "Member 'UMaterialExpressionIf::ConstB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionIf, ConstAEqualsB) == 0x000180, "Member 'UMaterialExpressionIf::ConstAEqualsB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionInverseLinearInterpolate \ +static_assert(alignof(UMaterialExpressionInverseLinearInterpolate) == 0x000008, "Wrong alignment on UMaterialExpressionInverseLinearInterpolate"); \ +static_assert(sizeof(UMaterialExpressionInverseLinearInterpolate) == 0x000138, "Wrong size on UMaterialExpressionInverseLinearInterpolate"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, A) == 0x0000B0, "Member 'UMaterialExpressionInverseLinearInterpolate::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, B) == 0x0000D8, "Member 'UMaterialExpressionInverseLinearInterpolate::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, Value) == 0x000100, "Member 'UMaterialExpressionInverseLinearInterpolate::Value' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, ConstA) == 0x000128, "Member 'UMaterialExpressionInverseLinearInterpolate::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, ConstB) == 0x00012C, "Member 'UMaterialExpressionInverseLinearInterpolate::ConstB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, ConstValue) == 0x000130, "Member 'UMaterialExpressionInverseLinearInterpolate::ConstValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionInverseLinearInterpolate, bClampResult) == 0x000134, "Member 'UMaterialExpressionInverseLinearInterpolate::bClampResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionIsOrthographic \ +static_assert(alignof(UMaterialExpressionIsOrthographic) == 0x000008, "Wrong alignment on UMaterialExpressionIsOrthographic"); \ +static_assert(sizeof(UMaterialExpressionIsOrthographic) == 0x0000B0, "Wrong size on UMaterialExpressionIsOrthographic"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLength \ +static_assert(alignof(UMaterialExpressionLength) == 0x000008, "Wrong alignment on UMaterialExpressionLength"); \ +static_assert(sizeof(UMaterialExpressionLength) == 0x0000D8, "Wrong size on UMaterialExpressionLength"); \ +static_assert(offsetof(UMaterialExpressionLength, Input) == 0x0000B0, "Member 'UMaterialExpressionLength::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetKeysFromStringTable \ +static_assert(alignof(KismetStringTableLibrary_GetKeysFromStringTable) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetKeysFromStringTable"); \ +static_assert(sizeof(KismetStringTableLibrary_GetKeysFromStringTable) == 0x000018, "Wrong size on KismetStringTableLibrary_GetKeysFromStringTable"); \ +static_assert(offsetof(KismetStringTableLibrary_GetKeysFromStringTable, TableId) == 0x000000, "Member 'KismetStringTableLibrary_GetKeysFromStringTable::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetKeysFromStringTable, ReturnValue) == 0x000008, "Member 'KismetStringTableLibrary_GetKeysFromStringTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry \ +static_assert(alignof(KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry"); \ +static_assert(sizeof(KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry) == 0x000028, "Wrong size on KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry"); \ +static_assert(offsetof(KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry, TableId) == 0x000000, "Member 'KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry, Key) == 0x000008, "Member 'KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry, ReturnValue) == 0x000018, "Member 'KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetRegisteredStringTables \ +static_assert(alignof(KismetStringTableLibrary_GetRegisteredStringTables) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetRegisteredStringTables"); \ +static_assert(sizeof(KismetStringTableLibrary_GetRegisteredStringTables) == 0x000010, "Wrong size on KismetStringTableLibrary_GetRegisteredStringTables"); \ +static_assert(offsetof(KismetStringTableLibrary_GetRegisteredStringTables, ReturnValue) == 0x000000, "Member 'KismetStringTableLibrary_GetRegisteredStringTables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetTableEntryMetaData \ +static_assert(alignof(KismetStringTableLibrary_GetTableEntryMetaData) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetTableEntryMetaData"); \ +static_assert(sizeof(KismetStringTableLibrary_GetTableEntryMetaData) == 0x000030, "Wrong size on KismetStringTableLibrary_GetTableEntryMetaData"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntryMetaData, TableId) == 0x000000, "Member 'KismetStringTableLibrary_GetTableEntryMetaData::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntryMetaData, Key) == 0x000008, "Member 'KismetStringTableLibrary_GetTableEntryMetaData::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntryMetaData, MetaDataId) == 0x000018, "Member 'KismetStringTableLibrary_GetTableEntryMetaData::MetaDataId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntryMetaData, ReturnValue) == 0x000020, "Member 'KismetStringTableLibrary_GetTableEntryMetaData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetTableEntrySourceString \ +static_assert(alignof(KismetStringTableLibrary_GetTableEntrySourceString) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetTableEntrySourceString"); \ +static_assert(sizeof(KismetStringTableLibrary_GetTableEntrySourceString) == 0x000028, "Wrong size on KismetStringTableLibrary_GetTableEntrySourceString"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntrySourceString, TableId) == 0x000000, "Member 'KismetStringTableLibrary_GetTableEntrySourceString::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntrySourceString, Key) == 0x000008, "Member 'KismetStringTableLibrary_GetTableEntrySourceString::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableEntrySourceString, ReturnValue) == 0x000018, "Member 'KismetStringTableLibrary_GetTableEntrySourceString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_GetTableNamespace \ +static_assert(alignof(KismetStringTableLibrary_GetTableNamespace) == 0x000008, "Wrong alignment on KismetStringTableLibrary_GetTableNamespace"); \ +static_assert(sizeof(KismetStringTableLibrary_GetTableNamespace) == 0x000018, "Wrong size on KismetStringTableLibrary_GetTableNamespace"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableNamespace, TableId) == 0x000000, "Member 'KismetStringTableLibrary_GetTableNamespace::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_GetTableNamespace, ReturnValue) == 0x000008, "Member 'KismetStringTableLibrary_GetTableNamespace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_IsRegisteredTableEntry \ +static_assert(alignof(KismetStringTableLibrary_IsRegisteredTableEntry) == 0x000008, "Wrong alignment on KismetStringTableLibrary_IsRegisteredTableEntry"); \ +static_assert(sizeof(KismetStringTableLibrary_IsRegisteredTableEntry) == 0x000020, "Wrong size on KismetStringTableLibrary_IsRegisteredTableEntry"); \ +static_assert(offsetof(KismetStringTableLibrary_IsRegisteredTableEntry, TableId) == 0x000000, "Member 'KismetStringTableLibrary_IsRegisteredTableEntry::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_IsRegisteredTableEntry, Key) == 0x000008, "Member 'KismetStringTableLibrary_IsRegisteredTableEntry::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_IsRegisteredTableEntry, ReturnValue) == 0x000018, "Member 'KismetStringTableLibrary_IsRegisteredTableEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringTableLibrary_IsRegisteredTableId \ +static_assert(alignof(KismetStringTableLibrary_IsRegisteredTableId) == 0x000004, "Wrong alignment on KismetStringTableLibrary_IsRegisteredTableId"); \ +static_assert(sizeof(KismetStringTableLibrary_IsRegisteredTableId) == 0x00000C, "Wrong size on KismetStringTableLibrary_IsRegisteredTableId"); \ +static_assert(offsetof(KismetStringTableLibrary_IsRegisteredTableId, TableId) == 0x000000, "Member 'KismetStringTableLibrary_IsRegisteredTableId::TableId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringTableLibrary_IsRegisteredTableId, ReturnValue) == 0x000008, "Member 'KismetStringTableLibrary_IsRegisteredTableId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetStringTableLibrary \ +static_assert(alignof(UKismetStringTableLibrary) == 0x000008, "Wrong alignment on UKismetStringTableLibrary"); \ +static_assert(sizeof(UKismetStringTableLibrary) == 0x000028, "Wrong size on UKismetStringTableLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLightmassReplace \ +static_assert(alignof(UMaterialExpressionLightmassReplace) == 0x000008, "Wrong alignment on UMaterialExpressionLightmassReplace"); \ +static_assert(sizeof(UMaterialExpressionLightmassReplace) == 0x000100, "Wrong size on UMaterialExpressionLightmassReplace"); \ +static_assert(offsetof(UMaterialExpressionLightmassReplace, Realtime) == 0x0000B0, "Member 'UMaterialExpressionLightmassReplace::Realtime' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLightmassReplace, Lightmass) == 0x0000D8, "Member 'UMaterialExpressionLightmassReplace::Lightmass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLinearInterpolate \ +static_assert(alignof(UMaterialExpressionLinearInterpolate) == 0x000008, "Wrong alignment on UMaterialExpressionLinearInterpolate"); \ +static_assert(sizeof(UMaterialExpressionLinearInterpolate) == 0x000138, "Wrong size on UMaterialExpressionLinearInterpolate"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, A) == 0x0000B0, "Member 'UMaterialExpressionLinearInterpolate::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, B) == 0x0000D8, "Member 'UMaterialExpressionLinearInterpolate::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, alpha) == 0x000100, "Member 'UMaterialExpressionLinearInterpolate::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, ConstA) == 0x000128, "Member 'UMaterialExpressionLinearInterpolate::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, ConstB) == 0x00012C, "Member 'UMaterialExpressionLinearInterpolate::ConstB' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLinearInterpolate, ConstAlpha) == 0x000130, "Member 'UMaterialExpressionLinearInterpolate::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_CancelLocalNotification \ +static_assert(alignof(BlueprintPlatformLibrary_CancelLocalNotification) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_CancelLocalNotification"); \ +static_assert(sizeof(BlueprintPlatformLibrary_CancelLocalNotification) == 0x000010, "Wrong size on BlueprintPlatformLibrary_CancelLocalNotification"); \ +static_assert(offsetof(BlueprintPlatformLibrary_CancelLocalNotification, ActivationEvent) == 0x000000, "Member 'BlueprintPlatformLibrary_CancelLocalNotification::ActivationEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_CancelLocalNotificationById \ +static_assert(alignof(BlueprintPlatformLibrary_CancelLocalNotificationById) == 0x000004, "Wrong alignment on BlueprintPlatformLibrary_CancelLocalNotificationById"); \ +static_assert(sizeof(BlueprintPlatformLibrary_CancelLocalNotificationById) == 0x000004, "Wrong size on BlueprintPlatformLibrary_CancelLocalNotificationById"); \ +static_assert(offsetof(BlueprintPlatformLibrary_CancelLocalNotificationById, NotificationId) == 0x000000, "Member 'BlueprintPlatformLibrary_CancelLocalNotificationById::NotificationId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_GetAllowedDeviceOrientation \ +static_assert(alignof(BlueprintPlatformLibrary_GetAllowedDeviceOrientation) == 0x000001, "Wrong alignment on BlueprintPlatformLibrary_GetAllowedDeviceOrientation"); \ +static_assert(sizeof(BlueprintPlatformLibrary_GetAllowedDeviceOrientation) == 0x000001, "Wrong size on BlueprintPlatformLibrary_GetAllowedDeviceOrientation"); \ +static_assert(offsetof(BlueprintPlatformLibrary_GetAllowedDeviceOrientation, ReturnValue) == 0x000000, "Member 'BlueprintPlatformLibrary_GetAllowedDeviceOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_GetDeviceOrientation \ +static_assert(alignof(BlueprintPlatformLibrary_GetDeviceOrientation) == 0x000001, "Wrong alignment on BlueprintPlatformLibrary_GetDeviceOrientation"); \ +static_assert(sizeof(BlueprintPlatformLibrary_GetDeviceOrientation) == 0x000001, "Wrong size on BlueprintPlatformLibrary_GetDeviceOrientation"); \ +static_assert(offsetof(BlueprintPlatformLibrary_GetDeviceOrientation, ReturnValue) == 0x000000, "Member 'BlueprintPlatformLibrary_GetDeviceOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_GetLaunchNotification \ +static_assert(alignof(BlueprintPlatformLibrary_GetLaunchNotification) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_GetLaunchNotification"); \ +static_assert(sizeof(BlueprintPlatformLibrary_GetLaunchNotification) == 0x000020, "Wrong size on BlueprintPlatformLibrary_GetLaunchNotification"); \ +static_assert(offsetof(BlueprintPlatformLibrary_GetLaunchNotification, NotificationLaunchedApp) == 0x000000, "Member 'BlueprintPlatformLibrary_GetLaunchNotification::NotificationLaunchedApp' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_GetLaunchNotification, ActivationEvent) == 0x000008, "Member 'BlueprintPlatformLibrary_GetLaunchNotification::ActivationEvent' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_GetLaunchNotification, FireDate) == 0x000018, "Member 'BlueprintPlatformLibrary_GetLaunchNotification::FireDate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime \ +static_assert(alignof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime"); \ +static_assert(sizeof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime) == 0x000070, "Wrong size on BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, FireDateTime) == 0x000000, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::FireDateTime' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, LocalTime) == 0x000008, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::LocalTime' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, Title) == 0x000010, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::Title' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, Body) == 0x000028, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::Body' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, Action) == 0x000040, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::Action' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, ActivationEvent) == 0x000058, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::ActivationEvent' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime, ReturnValue) == 0x000068, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime \ +static_assert(alignof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime"); \ +static_assert(sizeof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime) == 0x000028, "Wrong size on BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime, FireDateTime) == 0x000000, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime::FireDateTime' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime, LocalTime) == 0x000008, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime::LocalTime' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime, ActivationEvent) == 0x000010, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime::ActivationEvent' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime, ReturnValue) == 0x000020, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow \ +static_assert(alignof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow"); \ +static_assert(sizeof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow) == 0x000018, "Wrong size on BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow, inSecondsFromNow) == 0x000000, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow::inSecondsFromNow' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow, ActivationEvent) == 0x000008, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow::ActivationEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow \ +static_assert(alignof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow) == 0x000008, "Wrong alignment on BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow"); \ +static_assert(sizeof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow) == 0x000068, "Wrong size on BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, inSecondsFromNow) == 0x000000, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::inSecondsFromNow' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, Title) == 0x000008, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::Title' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, Body) == 0x000020, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::Body' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, Action) == 0x000038, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::Action' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, ActivationEvent) == 0x000050, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::ActivationEvent' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow, ReturnValue) == 0x000060, "Member 'BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPlatformLibrary_SetAllowedDeviceOrientation \ +static_assert(alignof(BlueprintPlatformLibrary_SetAllowedDeviceOrientation) == 0x000001, "Wrong alignment on BlueprintPlatformLibrary_SetAllowedDeviceOrientation"); \ +static_assert(sizeof(BlueprintPlatformLibrary_SetAllowedDeviceOrientation) == 0x000001, "Wrong size on BlueprintPlatformLibrary_SetAllowedDeviceOrientation"); \ +static_assert(offsetof(BlueprintPlatformLibrary_SetAllowedDeviceOrientation, NewAllowedDeviceOrientation) == 0x000000, "Member 'BlueprintPlatformLibrary_SetAllowedDeviceOrientation::NewAllowedDeviceOrientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintPlatformLibrary \ +static_assert(alignof(UBlueprintPlatformLibrary) == 0x000008, "Wrong alignment on UBlueprintPlatformLibrary"); \ +static_assert(sizeof(UBlueprintPlatformLibrary) == 0x000028, "Wrong size on UBlueprintPlatformLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLogarithm10 \ +static_assert(alignof(UMaterialExpressionLogarithm10) == 0x000008, "Wrong alignment on UMaterialExpressionLogarithm10"); \ +static_assert(sizeof(UMaterialExpressionLogarithm10) == 0x0000D8, "Wrong size on UMaterialExpressionLogarithm10"); \ +static_assert(offsetof(UMaterialExpressionLogarithm10, X) == 0x0000B0, "Member 'UMaterialExpressionLogarithm10::X' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLogarithm2 \ +static_assert(alignof(UMaterialExpressionLogarithm2) == 0x000008, "Wrong alignment on UMaterialExpressionLogarithm2"); \ +static_assert(sizeof(UMaterialExpressionLogarithm2) == 0x0000D8, "Wrong size on UMaterialExpressionLogarithm2"); \ +static_assert(offsetof(UMaterialExpressionLogarithm2, X) == 0x0000B0, "Member 'UMaterialExpressionLogarithm2::X' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMakeMaterialAttributes \ +static_assert(alignof(UMaterialExpressionMakeMaterialAttributes) == 0x000008, "Wrong alignment on UMaterialExpressionMakeMaterialAttributes"); \ +static_assert(sizeof(UMaterialExpressionMakeMaterialAttributes) == 0x0004E8, "Wrong size on UMaterialExpressionMakeMaterialAttributes"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionMakeMaterialAttributes::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Metallic) == 0x0000D8, "Member 'UMaterialExpressionMakeMaterialAttributes::Metallic' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Specular) == 0x000100, "Member 'UMaterialExpressionMakeMaterialAttributes::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Roughness) == 0x000128, "Member 'UMaterialExpressionMakeMaterialAttributes::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Anisotropy) == 0x000150, "Member 'UMaterialExpressionMakeMaterialAttributes::Anisotropy' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, EmissiveColor) == 0x000178, "Member 'UMaterialExpressionMakeMaterialAttributes::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Opacity) == 0x0001A0, "Member 'UMaterialExpressionMakeMaterialAttributes::Opacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, OpacityMask) == 0x0001C8, "Member 'UMaterialExpressionMakeMaterialAttributes::OpacityMask' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Normal) == 0x0001F0, "Member 'UMaterialExpressionMakeMaterialAttributes::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Tangent) == 0x000218, "Member 'UMaterialExpressionMakeMaterialAttributes::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, WorldPositionOffset) == 0x000240, "Member 'UMaterialExpressionMakeMaterialAttributes::WorldPositionOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, SubsurfaceColor) == 0x000268, "Member 'UMaterialExpressionMakeMaterialAttributes::SubsurfaceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, ClearCoat) == 0x000290, "Member 'UMaterialExpressionMakeMaterialAttributes::ClearCoat' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, ClearCoatRoughness) == 0x0002B8, "Member 'UMaterialExpressionMakeMaterialAttributes::ClearCoatRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, AmbientOcclusion) == 0x0002E0, "Member 'UMaterialExpressionMakeMaterialAttributes::AmbientOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, Refraction) == 0x000308, "Member 'UMaterialExpressionMakeMaterialAttributes::Refraction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, CustomizedUVs) == 0x000330, "Member 'UMaterialExpressionMakeMaterialAttributes::CustomizedUVs' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, PixelDepthOffset) == 0x000470, "Member 'UMaterialExpressionMakeMaterialAttributes::PixelDepthOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, ShadingModel) == 0x000498, "Member 'UMaterialExpressionMakeMaterialAttributes::ShadingModel' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMakeMaterialAttributes, displacement) == 0x0004C0, "Member 'UMaterialExpressionMakeMaterialAttributes::displacement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorContainer \ +static_assert(alignof(UActorContainer) == 0x000008, "Wrong alignment on UActorContainer"); \ +static_assert(sizeof(UActorContainer) == 0x000078, "Wrong size on UActorContainer"); \ +static_assert(offsetof(UActorContainer, Actors) == 0x000028, "Member 'UActorContainer::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureLightProfile \ +static_assert(alignof(UTextureLightProfile) == 0x000010, "Wrong alignment on UTextureLightProfile"); \ +static_assert(sizeof(UTextureLightProfile) == 0x000280, "Wrong size on UTextureLightProfile"); \ +static_assert(offsetof(UTextureLightProfile, Brightness) == 0x000278, "Member 'UTextureLightProfile::Brightness' has a wrong offset!"); \ +static_assert(offsetof(UTextureLightProfile, TextureMultiplier) == 0x00027C, "Member 'UTextureLightProfile::TextureMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMapARPassthroughCameraUV \ +static_assert(alignof(UMaterialExpressionMapARPassthroughCameraUV) == 0x000008, "Wrong alignment on UMaterialExpressionMapARPassthroughCameraUV"); \ +static_assert(sizeof(UMaterialExpressionMapARPassthroughCameraUV) == 0x0000D8, "Wrong size on UMaterialExpressionMapARPassthroughCameraUV"); \ +static_assert(offsetof(UMaterialExpressionMapARPassthroughCameraUV, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMapARPassthroughCameraUV::Coordinates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialAttributeLayers \ +static_assert(alignof(UMaterialExpressionMaterialAttributeLayers) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialAttributeLayers"); \ +static_assert(sizeof(UMaterialExpressionMaterialAttributeLayers) == 0x000218, "Wrong size on UMaterialExpressionMaterialAttributeLayers"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialAttributeLayers::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, DefaultLayers) == 0x0000E0, "Member 'UMaterialExpressionMaterialAttributeLayers::DefaultLayers' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, LayerCallers) == 0x0001E0, "Member 'UMaterialExpressionMaterialAttributeLayers::LayerCallers' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, NumActiveLayerCallers) == 0x0001F0, "Member 'UMaterialExpressionMaterialAttributeLayers::NumActiveLayerCallers' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, BlendCallers) == 0x0001F8, "Member 'UMaterialExpressionMaterialAttributeLayers::BlendCallers' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, NumActiveBlendCallers) == 0x000208, "Member 'UMaterialExpressionMaterialAttributeLayers::NumActiveBlendCallers' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialAttributeLayers, bIsLayerGraphBuilt) == 0x00020C, "Member 'UMaterialExpressionMaterialAttributeLayers::bIsLayerGraphBuilt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialLayerOutput \ +static_assert(alignof(UMaterialExpressionMaterialLayerOutput) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialLayerOutput"); \ +static_assert(sizeof(UMaterialExpressionMaterialLayerOutput) == 0x000110, "Wrong size on UMaterialExpressionMaterialLayerOutput"); \ + +#define DUMPER7_ASSERTS_ULevelInstanceComponent \ +static_assert(alignof(ULevelInstanceComponent) == 0x000010, "Wrong alignment on ULevelInstanceComponent"); \ +static_assert(sizeof(ULevelInstanceComponent) == 0x0002A0, "Wrong size on ULevelInstanceComponent"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMax \ +static_assert(alignof(UMaterialExpressionMax) == 0x000008, "Wrong alignment on UMaterialExpressionMax"); \ +static_assert(sizeof(UMaterialExpressionMax) == 0x000108, "Wrong size on UMaterialExpressionMax"); \ +static_assert(offsetof(UMaterialExpressionMax, A) == 0x0000B0, "Member 'UMaterialExpressionMax::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMax, B) == 0x0000D8, "Member 'UMaterialExpressionMax::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMax, ConstA) == 0x000100, "Member 'UMaterialExpressionMax::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMax, ConstB) == 0x000104, "Member 'UMaterialExpressionMax::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMin \ +static_assert(alignof(UMaterialExpressionMin) == 0x000008, "Wrong alignment on UMaterialExpressionMin"); \ +static_assert(sizeof(UMaterialExpressionMin) == 0x000108, "Wrong size on UMaterialExpressionMin"); \ +static_assert(offsetof(UMaterialExpressionMin, A) == 0x0000B0, "Member 'UMaterialExpressionMin::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMin, B) == 0x0000D8, "Member 'UMaterialExpressionMin::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMin, ConstA) == 0x000100, "Member 'UMaterialExpressionMin::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMin, ConstB) == 0x000104, "Member 'UMaterialExpressionMin::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMultiply \ +static_assert(alignof(UMaterialExpressionMultiply) == 0x000008, "Wrong alignment on UMaterialExpressionMultiply"); \ +static_assert(sizeof(UMaterialExpressionMultiply) == 0x000108, "Wrong size on UMaterialExpressionMultiply"); \ +static_assert(offsetof(UMaterialExpressionMultiply, A) == 0x0000B0, "Member 'UMaterialExpressionMultiply::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMultiply, B) == 0x0000D8, "Member 'UMaterialExpressionMultiply::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMultiply, ConstA) == 0x000100, "Member 'UMaterialExpressionMultiply::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMultiply, ConstB) == 0x000104, "Member 'UMaterialExpressionMultiply::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNamedRerouteUsage \ +static_assert(alignof(UMaterialExpressionNamedRerouteUsage) == 0x000008, "Wrong alignment on UMaterialExpressionNamedRerouteUsage"); \ +static_assert(sizeof(UMaterialExpressionNamedRerouteUsage) == 0x0000C8, "Wrong size on UMaterialExpressionNamedRerouteUsage"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteUsage, Declaration) == 0x0000B0, "Member 'UMaterialExpressionNamedRerouteUsage::Declaration' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNamedRerouteUsage, DeclarationGuid) == 0x0000B8, "Member 'UMaterialExpressionNamedRerouteUsage::DeclarationGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionNoise \ +static_assert(alignof(UMaterialExpressionNoise) == 0x000008, "Wrong alignment on UMaterialExpressionNoise"); \ +static_assert(sizeof(UMaterialExpressionNoise) == 0x000128, "Wrong size on UMaterialExpressionNoise"); \ +static_assert(offsetof(UMaterialExpressionNoise, Position) == 0x0000B0, "Member 'UMaterialExpressionNoise::Position' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, FilterWidth) == 0x0000D8, "Member 'UMaterialExpressionNoise::FilterWidth' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, Scale) == 0x000100, "Member 'UMaterialExpressionNoise::Scale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, Quality) == 0x000104, "Member 'UMaterialExpressionNoise::Quality' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, NoiseFunction) == 0x000108, "Member 'UMaterialExpressionNoise::NoiseFunction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, Levels) == 0x000110, "Member 'UMaterialExpressionNoise::Levels' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, OutputMin) == 0x000114, "Member 'UMaterialExpressionNoise::OutputMin' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, OutputMax) == 0x000118, "Member 'UMaterialExpressionNoise::OutputMax' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, LevelScale) == 0x00011C, "Member 'UMaterialExpressionNoise::LevelScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionNoise, RepeatSize) == 0x000124, "Member 'UMaterialExpressionNoise::RepeatSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionObjectBounds \ +static_assert(alignof(UMaterialExpressionObjectBounds) == 0x000008, "Wrong alignment on UMaterialExpressionObjectBounds"); \ +static_assert(sizeof(UMaterialExpressionObjectBounds) == 0x0000B0, "Wrong size on UMaterialExpressionObjectBounds"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionObjectOrientation \ +static_assert(alignof(UMaterialExpressionObjectOrientation) == 0x000008, "Wrong alignment on UMaterialExpressionObjectOrientation"); \ +static_assert(sizeof(UMaterialExpressionObjectOrientation) == 0x0000B0, "Wrong size on UMaterialExpressionObjectOrientation"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionObjectRadius \ +static_assert(alignof(UMaterialExpressionObjectRadius) == 0x000008, "Wrong alignment on UMaterialExpressionObjectRadius"); \ +static_assert(sizeof(UMaterialExpressionObjectRadius) == 0x0000B0, "Wrong size on UMaterialExpressionObjectRadius"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPanner \ +static_assert(alignof(UMaterialExpressionPanner) == 0x000008, "Wrong alignment on UMaterialExpressionPanner"); \ +static_assert(sizeof(UMaterialExpressionPanner) == 0x000138, "Wrong size on UMaterialExpressionPanner"); \ +static_assert(offsetof(UMaterialExpressionPanner, Coordinate) == 0x0000B0, "Member 'UMaterialExpressionPanner::Coordinate' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, Time) == 0x0000D8, "Member 'UMaterialExpressionPanner::Time' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, Speed) == 0x000100, "Member 'UMaterialExpressionPanner::Speed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, SpeedX) == 0x000128, "Member 'UMaterialExpressionPanner::SpeedX' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, SpeedY) == 0x00012C, "Member 'UMaterialExpressionPanner::SpeedY' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, ConstCoordinate) == 0x000130, "Member 'UMaterialExpressionPanner::ConstCoordinate' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPanner, bFractionalPart) == 0x000134, "Member 'UMaterialExpressionPanner::bFractionalPart' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleRadius \ +static_assert(alignof(UMaterialExpressionParticleRadius) == 0x000008, "Wrong alignment on UMaterialExpressionParticleRadius"); \ +static_assert(sizeof(UMaterialExpressionParticleRadius) == 0x0000B0, "Wrong size on UMaterialExpressionParticleRadius"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleRelativeTime \ +static_assert(alignof(UMaterialExpressionParticleRelativeTime) == 0x000008, "Wrong alignment on UMaterialExpressionParticleRelativeTime"); \ +static_assert(sizeof(UMaterialExpressionParticleRelativeTime) == 0x0000B0, "Wrong size on UMaterialExpressionParticleRelativeTime"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionParticleSubUV \ +static_assert(alignof(UMaterialExpressionParticleSubUV) == 0x000008, "Wrong alignment on UMaterialExpressionParticleSubUV"); \ +static_assert(sizeof(UMaterialExpressionParticleSubUV) == 0x0001C0, "Wrong size on UMaterialExpressionParticleSubUV"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPathTracingBufferTexture \ +static_assert(alignof(UMaterialExpressionPathTracingBufferTexture) == 0x000008, "Wrong alignment on UMaterialExpressionPathTracingBufferTexture"); \ +static_assert(sizeof(UMaterialExpressionPathTracingBufferTexture) == 0x0000E0, "Wrong size on UMaterialExpressionPathTracingBufferTexture"); \ +static_assert(offsetof(UMaterialExpressionPathTracingBufferTexture, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionPathTracingBufferTexture::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingBufferTexture, PathTracingBufferTextureId) == 0x0000D8, "Member 'UMaterialExpressionPathTracingBufferTexture::PathTracingBufferTextureId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPathTracingRayTypeSwitch \ +static_assert(alignof(UMaterialExpressionPathTracingRayTypeSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionPathTracingRayTypeSwitch"); \ +static_assert(sizeof(UMaterialExpressionPathTracingRayTypeSwitch) == 0x000178, "Wrong size on UMaterialExpressionPathTracingRayTypeSwitch"); \ +static_assert(offsetof(UMaterialExpressionPathTracingRayTypeSwitch, Main) == 0x0000B0, "Member 'UMaterialExpressionPathTracingRayTypeSwitch::Main' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingRayTypeSwitch, Shadow) == 0x0000D8, "Member 'UMaterialExpressionPathTracingRayTypeSwitch::Shadow' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingRayTypeSwitch, IndirectDiffuse) == 0x000100, "Member 'UMaterialExpressionPathTracingRayTypeSwitch::IndirectDiffuse' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingRayTypeSwitch, IndirectSpecular) == 0x000128, "Member 'UMaterialExpressionPathTracingRayTypeSwitch::IndirectSpecular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPathTracingRayTypeSwitch, IndirectVolume) == 0x000150, "Member 'UMaterialExpressionPathTracingRayTypeSwitch::IndirectVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPerInstanceCustomData3Vector \ +static_assert(alignof(UMaterialExpressionPerInstanceCustomData3Vector) == 0x000008, "Wrong alignment on UMaterialExpressionPerInstanceCustomData3Vector"); \ +static_assert(sizeof(UMaterialExpressionPerInstanceCustomData3Vector) == 0x0000F0, "Wrong size on UMaterialExpressionPerInstanceCustomData3Vector"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData3Vector, DefaultValue) == 0x0000B0, "Member 'UMaterialExpressionPerInstanceCustomData3Vector::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData3Vector, ConstDefaultValue) == 0x0000D8, "Member 'UMaterialExpressionPerInstanceCustomData3Vector::ConstDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPerInstanceCustomData3Vector, DataIndex) == 0x0000E8, "Member 'UMaterialExpressionPerInstanceCustomData3Vector::DataIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDelegateBinding \ +static_assert(alignof(UInputDelegateBinding) == 0x000008, "Wrong alignment on UInputDelegateBinding"); \ +static_assert(sizeof(UInputDelegateBinding) == 0x000028, "Wrong size on UInputDelegateBinding"); \ + +#define DUMPER7_ASSERTS_UInputAxisKeyDelegateBinding \ +static_assert(alignof(UInputAxisKeyDelegateBinding) == 0x000008, "Wrong alignment on UInputAxisKeyDelegateBinding"); \ +static_assert(sizeof(UInputAxisKeyDelegateBinding) == 0x000038, "Wrong size on UInputAxisKeyDelegateBinding"); \ +static_assert(offsetof(UInputAxisKeyDelegateBinding, InputAxisKeyDelegateBindings) == 0x000028, "Member 'UInputAxisKeyDelegateBinding::InputAxisKeyDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputVectorAxisDelegateBinding \ +static_assert(alignof(UInputVectorAxisDelegateBinding) == 0x000008, "Wrong alignment on UInputVectorAxisDelegateBinding"); \ +static_assert(sizeof(UInputVectorAxisDelegateBinding) == 0x000038, "Wrong size on UInputVectorAxisDelegateBinding"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventReceiverSpawn \ +static_assert(alignof(UParticleModuleEventReceiverSpawn) == 0x000008, "Wrong alignment on UParticleModuleEventReceiverSpawn"); \ +static_assert(sizeof(UParticleModuleEventReceiverSpawn) == 0x0000F0, "Wrong size on UParticleModuleEventReceiverSpawn"); \ +static_assert(offsetof(UParticleModuleEventReceiverSpawn, SpawnCount) == 0x000040, "Member 'UParticleModuleEventReceiverSpawn::SpawnCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleEventReceiverSpawn, InheritVelocityScale) == 0x000078, "Member 'UParticleModuleEventReceiverSpawn::InheritVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleEventReceiverSpawn, PhysicalMaterials) == 0x0000D8, "Member 'UParticleModuleEventReceiverSpawn::PhysicalMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPerInstanceFadeAmount \ +static_assert(alignof(UMaterialExpressionPerInstanceFadeAmount) == 0x000008, "Wrong alignment on UMaterialExpressionPerInstanceFadeAmount"); \ +static_assert(sizeof(UMaterialExpressionPerInstanceFadeAmount) == 0x0000B0, "Wrong size on UMaterialExpressionPerInstanceFadeAmount"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPerInstanceRandom \ +static_assert(alignof(UMaterialExpressionPerInstanceRandom) == 0x000008, "Wrong alignment on UMaterialExpressionPerInstanceRandom"); \ +static_assert(sizeof(UMaterialExpressionPerInstanceRandom) == 0x0000B0, "Wrong size on UMaterialExpressionPerInstanceRandom"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionMaterialLayerInstance \ +static_assert(alignof(UMaterialFunctionMaterialLayerInstance) == 0x000008, "Wrong alignment on UMaterialFunctionMaterialLayerInstance"); \ +static_assert(sizeof(UMaterialFunctionMaterialLayerInstance) == 0x0000E0, "Wrong size on UMaterialFunctionMaterialLayerInstance"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPinBase \ +static_assert(alignof(UMaterialExpressionPinBase) == 0x000008, "Wrong alignment on UMaterialExpressionPinBase"); \ +static_assert(sizeof(UMaterialExpressionPinBase) == 0x0000C8, "Wrong size on UMaterialExpressionPinBase"); \ +static_assert(offsetof(UMaterialExpressionPinBase, ReroutePins) == 0x0000B0, "Member 'UMaterialExpressionPinBase::ReroutePins' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPinBase, PinDirection) == 0x0000C0, "Member 'UMaterialExpressionPinBase::PinDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPixelDepth \ +static_assert(alignof(UMaterialExpressionPixelDepth) == 0x000008, "Wrong alignment on UMaterialExpressionPixelDepth"); \ +static_assert(sizeof(UMaterialExpressionPixelDepth) == 0x0000B0, "Wrong size on UMaterialExpressionPixelDepth"); \ + +#define DUMPER7_ASSERTS_UInterpCurveEdSetup \ +static_assert(alignof(UInterpCurveEdSetup) == 0x000008, "Wrong alignment on UInterpCurveEdSetup"); \ +static_assert(sizeof(UInterpCurveEdSetup) == 0x000040, "Wrong size on UInterpCurveEdSetup"); \ +static_assert(offsetof(UInterpCurveEdSetup, Tabs) == 0x000028, "Member 'UInterpCurveEdSetup::Tabs' has a wrong offset!"); \ +static_assert(offsetof(UInterpCurveEdSetup, ActiveTab) == 0x000038, "Member 'UInterpCurveEdSetup::ActiveTab' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPower \ +static_assert(alignof(UMaterialExpressionPower) == 0x000008, "Wrong alignment on UMaterialExpressionPower"); \ +static_assert(sizeof(UMaterialExpressionPower) == 0x000108, "Wrong size on UMaterialExpressionPower"); \ +static_assert(offsetof(UMaterialExpressionPower, base) == 0x0000B0, "Member 'UMaterialExpressionPower::base' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPower, Exponent) == 0x0000D8, "Member 'UMaterialExpressionPower::Exponent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPower, ConstExponent) == 0x000100, "Member 'UMaterialExpressionPower::ConstExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPreSkinnedPosition \ +static_assert(alignof(UMaterialExpressionPreSkinnedPosition) == 0x000008, "Wrong alignment on UMaterialExpressionPreSkinnedPosition"); \ +static_assert(sizeof(UMaterialExpressionPreSkinnedPosition) == 0x0000B0, "Wrong size on UMaterialExpressionPreSkinnedPosition"); \ + +#define DUMPER7_ASSERTS_UMeshDeformerInstance \ +static_assert(alignof(UMeshDeformerInstance) == 0x000008, "Wrong alignment on UMeshDeformerInstance"); \ +static_assert(sizeof(UMeshDeformerInstance) == 0x000028, "Wrong size on UMeshDeformerInstance"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionPreviousFrameSwitch \ +static_assert(alignof(UMaterialExpressionPreviousFrameSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionPreviousFrameSwitch"); \ +static_assert(sizeof(UMaterialExpressionPreviousFrameSwitch) == 0x000100, "Wrong size on UMaterialExpressionPreviousFrameSwitch"); \ +static_assert(offsetof(UMaterialExpressionPreviousFrameSwitch, CurrentFrame) == 0x0000B0, "Member 'UMaterialExpressionPreviousFrameSwitch::CurrentFrame' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionPreviousFrameSwitch, PreviousFrame) == 0x0000D8, "Member 'UMaterialExpressionPreviousFrameSwitch::PreviousFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionQualitySwitch \ +static_assert(alignof(UMaterialExpressionQualitySwitch) == 0x000008, "Wrong alignment on UMaterialExpressionQualitySwitch"); \ +static_assert(sizeof(UMaterialExpressionQualitySwitch) == 0x000178, "Wrong size on UMaterialExpressionQualitySwitch"); \ +static_assert(offsetof(UMaterialExpressionQualitySwitch, Default) == 0x0000B0, "Member 'UMaterialExpressionQualitySwitch::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionQualitySwitch, Inputs) == 0x0000D8, "Member 'UMaterialExpressionQualitySwitch::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Abs \ +static_assert(alignof(KismetMathLibrary_Abs) == 0x000008, "Wrong alignment on KismetMathLibrary_Abs"); \ +static_assert(sizeof(KismetMathLibrary_Abs) == 0x000010, "Wrong size on KismetMathLibrary_Abs"); \ +static_assert(offsetof(KismetMathLibrary_Abs, A) == 0x000000, "Member 'KismetMathLibrary_Abs::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Abs, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Abs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Abs_Int \ +static_assert(alignof(KismetMathLibrary_Abs_Int) == 0x000004, "Wrong alignment on KismetMathLibrary_Abs_Int"); \ +static_assert(sizeof(KismetMathLibrary_Abs_Int) == 0x000008, "Wrong size on KismetMathLibrary_Abs_Int"); \ +static_assert(offsetof(KismetMathLibrary_Abs_Int, A) == 0x000000, "Member 'KismetMathLibrary_Abs_Int::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Abs_Int, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Abs_Int::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Abs_Int64 \ +static_assert(alignof(KismetMathLibrary_Abs_Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Abs_Int64"); \ +static_assert(sizeof(KismetMathLibrary_Abs_Int64) == 0x000010, "Wrong size on KismetMathLibrary_Abs_Int64"); \ +static_assert(offsetof(KismetMathLibrary_Abs_Int64, A) == 0x000000, "Member 'KismetMathLibrary_Abs_Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Abs_Int64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Abs_Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Acos \ +static_assert(alignof(KismetMathLibrary_Acos) == 0x000008, "Wrong alignment on KismetMathLibrary_Acos"); \ +static_assert(sizeof(KismetMathLibrary_Acos) == 0x000010, "Wrong size on KismetMathLibrary_Acos"); \ +static_assert(offsetof(KismetMathLibrary_Acos, A) == 0x000000, "Member 'KismetMathLibrary_Acos::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Acos, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Acos::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_ByteByte \ +static_assert(alignof(KismetMathLibrary_Add_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Add_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Add_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Add_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Add_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Add_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Add_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Add_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_Add_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_Add_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_Add_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_Add_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_Add_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_DateTimeTimespan \ +static_assert(alignof(KismetMathLibrary_Add_DateTimeTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_DateTimeTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Add_DateTimeTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Add_DateTimeTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Add_DateTimeTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Add_DateTimeTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DateTimeTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_DateTimeTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Add_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Add_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Add_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Add_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Add_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Add_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Add_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Add_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Add_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Add_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Add_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Add_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_IntInt \ +static_assert(alignof(KismetMathLibrary_Add_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Add_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Add_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Add_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Add_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Add_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Add_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_IntPointInt \ +static_assert(alignof(KismetMathLibrary_Add_IntPointInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Add_IntPointInt"); \ +static_assert(sizeof(KismetMathLibrary_Add_IntPointInt) == 0x000014, "Wrong size on KismetMathLibrary_Add_IntPointInt"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointInt, A) == 0x000000, "Member 'KismetMathLibrary_Add_IntPointInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointInt, B) == 0x000008, "Member 'KismetMathLibrary_Add_IntPointInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointInt, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Add_IntPointInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_Add_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_Add_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Add_IntPointIntPoint) == 0x000018, "Wrong size on KismetMathLibrary_Add_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_Add_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_Add_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_Add_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Add_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Add_LinearColorLinearColor) == 0x000030, "Wrong size on KismetMathLibrary_Add_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Add_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_Add_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_Add_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Add_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_MatrixMatrix \ +static_assert(alignof(KismetMathLibrary_Add_MatrixMatrix) == 0x000010, "Wrong alignment on KismetMathLibrary_Add_MatrixMatrix"); \ +static_assert(sizeof(KismetMathLibrary_Add_MatrixMatrix) == 0x000180, "Wrong size on KismetMathLibrary_Add_MatrixMatrix"); \ +static_assert(offsetof(KismetMathLibrary_Add_MatrixMatrix, A) == 0x000000, "Member 'KismetMathLibrary_Add_MatrixMatrix::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_MatrixMatrix, B) == 0x000080, "Member 'KismetMathLibrary_Add_MatrixMatrix::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_MatrixMatrix, ReturnValue) == 0x000100, "Member 'KismetMathLibrary_Add_MatrixMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_QuatQuat \ +static_assert(alignof(KismetMathLibrary_Add_QuatQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_Add_QuatQuat"); \ +static_assert(sizeof(KismetMathLibrary_Add_QuatQuat) == 0x000060, "Wrong size on KismetMathLibrary_Add_QuatQuat"); \ +static_assert(offsetof(KismetMathLibrary_Add_QuatQuat, A) == 0x000000, "Member 'KismetMathLibrary_Add_QuatQuat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_QuatQuat, B) == 0x000020, "Member 'KismetMathLibrary_Add_QuatQuat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_QuatQuat, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Add_QuatQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_Add_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Add_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Add_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Add_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Add_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Add_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Add_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_Vector2DFloat \ +static_assert(alignof(KismetMathLibrary_Add_Vector2DFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_Vector2DFloat"); \ +static_assert(sizeof(KismetMathLibrary_Add_Vector2DFloat) == 0x000028, "Wrong size on KismetMathLibrary_Add_Vector2DFloat"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DFloat, A) == 0x000000, "Member 'KismetMathLibrary_Add_Vector2DFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DFloat, B) == 0x000010, "Member 'KismetMathLibrary_Add_Vector2DFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Add_Vector2DFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_Add_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Add_Vector2DVector2D) == 0x000030, "Wrong size on KismetMathLibrary_Add_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_Add_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_Add_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Add_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_Add_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_Add_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_Add_Vector4Vector4) == 0x000060, "Wrong size on KismetMathLibrary_Add_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_Add_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_Add_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Add_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_VectorFloat \ +static_assert(alignof(KismetMathLibrary_Add_VectorFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_VectorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Add_VectorFloat) == 0x000038, "Wrong size on KismetMathLibrary_Add_VectorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Add_VectorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorFloat, B) == 0x000018, "Member 'KismetMathLibrary_Add_VectorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorFloat, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Add_VectorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_VectorInt \ +static_assert(alignof(KismetMathLibrary_Add_VectorInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_VectorInt"); \ +static_assert(sizeof(KismetMathLibrary_Add_VectorInt) == 0x000038, "Wrong size on KismetMathLibrary_Add_VectorInt"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorInt, A) == 0x000000, "Member 'KismetMathLibrary_Add_VectorInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorInt, B) == 0x000018, "Member 'KismetMathLibrary_Add_VectorInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorInt, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Add_VectorInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Add_VectorVector \ +static_assert(alignof(KismetMathLibrary_Add_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Add_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Add_VectorVector) == 0x000048, "Wrong size on KismetMathLibrary_Add_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Add_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Add_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Add_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Add_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_And_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_And_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_And_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_And_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_And_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_And_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_And_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_And_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_And_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_And_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_And_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_And_IntInt \ +static_assert(alignof(KismetMathLibrary_And_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_And_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_And_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_And_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_And_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_And_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_And_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_And_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_And_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_And_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Asin \ +static_assert(alignof(KismetMathLibrary_Asin) == 0x000008, "Wrong alignment on KismetMathLibrary_Asin"); \ +static_assert(sizeof(KismetMathLibrary_Asin) == 0x000010, "Wrong size on KismetMathLibrary_Asin"); \ +static_assert(offsetof(KismetMathLibrary_Asin, A) == 0x000000, "Member 'KismetMathLibrary_Asin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Asin, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Asin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Atan \ +static_assert(alignof(KismetMathLibrary_Atan) == 0x000008, "Wrong alignment on KismetMathLibrary_Atan"); \ +static_assert(sizeof(KismetMathLibrary_Atan) == 0x000010, "Wrong size on KismetMathLibrary_Atan"); \ +static_assert(offsetof(KismetMathLibrary_Atan, A) == 0x000000, "Member 'KismetMathLibrary_Atan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Atan, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Atan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Atan2 \ +static_assert(alignof(KismetMathLibrary_Atan2) == 0x000008, "Wrong alignment on KismetMathLibrary_Atan2"); \ +static_assert(sizeof(KismetMathLibrary_Atan2) == 0x000018, "Wrong size on KismetMathLibrary_Atan2"); \ +static_assert(offsetof(KismetMathLibrary_Atan2, Y) == 0x000000, "Member 'KismetMathLibrary_Atan2::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Atan2, X) == 0x000008, "Member 'KismetMathLibrary_Atan2::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Atan2, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Atan2::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_AverageOfIntArray \ +static_assert(alignof(KismetMathLibrary_AverageOfIntArray) == 0x000008, "Wrong alignment on KismetMathLibrary_AverageOfIntArray"); \ +static_assert(sizeof(KismetMathLibrary_AverageOfIntArray) == 0x000018, "Wrong size on KismetMathLibrary_AverageOfIntArray"); \ +static_assert(offsetof(KismetMathLibrary_AverageOfIntArray, IntArray) == 0x000000, "Member 'KismetMathLibrary_AverageOfIntArray::IntArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_AverageOfIntArray, AverageValue) == 0x000010, "Member 'KismetMathLibrary_AverageOfIntArray::AverageValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BMax \ +static_assert(alignof(KismetMathLibrary_BMax) == 0x000001, "Wrong alignment on KismetMathLibrary_BMax"); \ +static_assert(sizeof(KismetMathLibrary_BMax) == 0x000003, "Wrong size on KismetMathLibrary_BMax"); \ +static_assert(offsetof(KismetMathLibrary_BMax, A) == 0x000000, "Member 'KismetMathLibrary_BMax::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BMax, B) == 0x000001, "Member 'KismetMathLibrary_BMax::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BMax, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BMin \ +static_assert(alignof(KismetMathLibrary_BMin) == 0x000001, "Wrong alignment on KismetMathLibrary_BMin"); \ +static_assert(sizeof(KismetMathLibrary_BMin) == 0x000003, "Wrong size on KismetMathLibrary_BMin"); \ +static_assert(offsetof(KismetMathLibrary_BMin, A) == 0x000000, "Member 'KismetMathLibrary_BMin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BMin, B) == 0x000001, "Member 'KismetMathLibrary_BMin::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BMin, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BooleanAND \ +static_assert(alignof(KismetMathLibrary_BooleanAND) == 0x000001, "Wrong alignment on KismetMathLibrary_BooleanAND"); \ +static_assert(sizeof(KismetMathLibrary_BooleanAND) == 0x000003, "Wrong size on KismetMathLibrary_BooleanAND"); \ +static_assert(offsetof(KismetMathLibrary_BooleanAND, A) == 0x000000, "Member 'KismetMathLibrary_BooleanAND::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanAND, B) == 0x000001, "Member 'KismetMathLibrary_BooleanAND::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanAND, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BooleanAND::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BooleanNAND \ +static_assert(alignof(KismetMathLibrary_BooleanNAND) == 0x000001, "Wrong alignment on KismetMathLibrary_BooleanNAND"); \ +static_assert(sizeof(KismetMathLibrary_BooleanNAND) == 0x000003, "Wrong size on KismetMathLibrary_BooleanNAND"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNAND, A) == 0x000000, "Member 'KismetMathLibrary_BooleanNAND::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNAND, B) == 0x000001, "Member 'KismetMathLibrary_BooleanNAND::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNAND, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BooleanNAND::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BooleanNOR \ +static_assert(alignof(KismetMathLibrary_BooleanNOR) == 0x000001, "Wrong alignment on KismetMathLibrary_BooleanNOR"); \ +static_assert(sizeof(KismetMathLibrary_BooleanNOR) == 0x000003, "Wrong size on KismetMathLibrary_BooleanNOR"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNOR, A) == 0x000000, "Member 'KismetMathLibrary_BooleanNOR::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNOR, B) == 0x000001, "Member 'KismetMathLibrary_BooleanNOR::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanNOR, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BooleanNOR::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BooleanOR \ +static_assert(alignof(KismetMathLibrary_BooleanOR) == 0x000001, "Wrong alignment on KismetMathLibrary_BooleanOR"); \ +static_assert(sizeof(KismetMathLibrary_BooleanOR) == 0x000003, "Wrong size on KismetMathLibrary_BooleanOR"); \ +static_assert(offsetof(KismetMathLibrary_BooleanOR, A) == 0x000000, "Member 'KismetMathLibrary_BooleanOR::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanOR, B) == 0x000001, "Member 'KismetMathLibrary_BooleanOR::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanOR, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BooleanOR::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BooleanXOR \ +static_assert(alignof(KismetMathLibrary_BooleanXOR) == 0x000001, "Wrong alignment on KismetMathLibrary_BooleanXOR"); \ +static_assert(sizeof(KismetMathLibrary_BooleanXOR) == 0x000003, "Wrong size on KismetMathLibrary_BooleanXOR"); \ +static_assert(offsetof(KismetMathLibrary_BooleanXOR, A) == 0x000000, "Member 'KismetMathLibrary_BooleanXOR::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanXOR, B) == 0x000001, "Member 'KismetMathLibrary_BooleanXOR::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BooleanXOR, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_BooleanXOR::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakBoxSphereBounds \ +static_assert(alignof(KismetMathLibrary_BreakBoxSphereBounds) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakBoxSphereBounds"); \ +static_assert(sizeof(KismetMathLibrary_BreakBoxSphereBounds) == 0x000070, "Wrong size on KismetMathLibrary_BreakBoxSphereBounds"); \ +static_assert(offsetof(KismetMathLibrary_BreakBoxSphereBounds, InBoxSphereBounds) == 0x000000, "Member 'KismetMathLibrary_BreakBoxSphereBounds::InBoxSphereBounds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakBoxSphereBounds, Origin) == 0x000038, "Member 'KismetMathLibrary_BreakBoxSphereBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakBoxSphereBounds, BoxExtent) == 0x000050, "Member 'KismetMathLibrary_BreakBoxSphereBounds::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakBoxSphereBounds, SphereRadius) == 0x000068, "Member 'KismetMathLibrary_BreakBoxSphereBounds::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakColor \ +static_assert(alignof(KismetMathLibrary_BreakColor) == 0x000004, "Wrong alignment on KismetMathLibrary_BreakColor"); \ +static_assert(sizeof(KismetMathLibrary_BreakColor) == 0x000020, "Wrong size on KismetMathLibrary_BreakColor"); \ +static_assert(offsetof(KismetMathLibrary_BreakColor, InColor) == 0x000000, "Member 'KismetMathLibrary_BreakColor::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakColor, R) == 0x000010, "Member 'KismetMathLibrary_BreakColor::R' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakColor, G) == 0x000014, "Member 'KismetMathLibrary_BreakColor::G' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakColor, B) == 0x000018, "Member 'KismetMathLibrary_BreakColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakColor, A) == 0x00001C, "Member 'KismetMathLibrary_BreakColor::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakDateTime \ +static_assert(alignof(KismetMathLibrary_BreakDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakDateTime"); \ +static_assert(sizeof(KismetMathLibrary_BreakDateTime) == 0x000028, "Wrong size on KismetMathLibrary_BreakDateTime"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, InDateTime) == 0x000000, "Member 'KismetMathLibrary_BreakDateTime::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Year) == 0x000008, "Member 'KismetMathLibrary_BreakDateTime::Year' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Month) == 0x00000C, "Member 'KismetMathLibrary_BreakDateTime::Month' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Day) == 0x000010, "Member 'KismetMathLibrary_BreakDateTime::Day' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Hour) == 0x000014, "Member 'KismetMathLibrary_BreakDateTime::Hour' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Minute) == 0x000018, "Member 'KismetMathLibrary_BreakDateTime::Minute' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Second) == 0x00001C, "Member 'KismetMathLibrary_BreakDateTime::Second' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakDateTime, Millisecond) == 0x000020, "Member 'KismetMathLibrary_BreakDateTime::Millisecond' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakFrameRate \ +static_assert(alignof(KismetMathLibrary_BreakFrameRate) == 0x000004, "Wrong alignment on KismetMathLibrary_BreakFrameRate"); \ +static_assert(sizeof(KismetMathLibrary_BreakFrameRate) == 0x000010, "Wrong size on KismetMathLibrary_BreakFrameRate"); \ +static_assert(offsetof(KismetMathLibrary_BreakFrameRate, InFrameRate) == 0x000000, "Member 'KismetMathLibrary_BreakFrameRate::InFrameRate' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakFrameRate, Numerator) == 0x000008, "Member 'KismetMathLibrary_BreakFrameRate::Numerator' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakFrameRate, Denominator) == 0x00000C, "Member 'KismetMathLibrary_BreakFrameRate::Denominator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakQualifiedFrameTime \ +static_assert(alignof(KismetMathLibrary_BreakQualifiedFrameTime) == 0x000004, "Wrong alignment on KismetMathLibrary_BreakQualifiedFrameTime"); \ +static_assert(sizeof(KismetMathLibrary_BreakQualifiedFrameTime) == 0x000020, "Wrong size on KismetMathLibrary_BreakQualifiedFrameTime"); \ +static_assert(offsetof(KismetMathLibrary_BreakQualifiedFrameTime, InFrameTime) == 0x000000, "Member 'KismetMathLibrary_BreakQualifiedFrameTime::InFrameTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQualifiedFrameTime, Frame) == 0x000010, "Member 'KismetMathLibrary_BreakQualifiedFrameTime::Frame' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQualifiedFrameTime, FrameRate) == 0x000014, "Member 'KismetMathLibrary_BreakQualifiedFrameTime::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQualifiedFrameTime, SubFrame) == 0x00001C, "Member 'KismetMathLibrary_BreakQualifiedFrameTime::SubFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakQuat \ +static_assert(alignof(KismetMathLibrary_BreakQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_BreakQuat"); \ +static_assert(sizeof(KismetMathLibrary_BreakQuat) == 0x000030, "Wrong size on KismetMathLibrary_BreakQuat"); \ +static_assert(offsetof(KismetMathLibrary_BreakQuat, InQuat) == 0x000000, "Member 'KismetMathLibrary_BreakQuat::InQuat' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQuat, X) == 0x000020, "Member 'KismetMathLibrary_BreakQuat::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQuat, Y) == 0x000024, "Member 'KismetMathLibrary_BreakQuat::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQuat, Z) == 0x000028, "Member 'KismetMathLibrary_BreakQuat::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakQuat, W) == 0x00002C, "Member 'KismetMathLibrary_BreakQuat::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakRandomStream \ +static_assert(alignof(KismetMathLibrary_BreakRandomStream) == 0x000004, "Wrong alignment on KismetMathLibrary_BreakRandomStream"); \ +static_assert(sizeof(KismetMathLibrary_BreakRandomStream) == 0x00000C, "Wrong size on KismetMathLibrary_BreakRandomStream"); \ +static_assert(offsetof(KismetMathLibrary_BreakRandomStream, InRandomStream) == 0x000000, "Member 'KismetMathLibrary_BreakRandomStream::InRandomStream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRandomStream, InitialSeed) == 0x000008, "Member 'KismetMathLibrary_BreakRandomStream::InitialSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakRotator \ +static_assert(alignof(KismetMathLibrary_BreakRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakRotator"); \ +static_assert(sizeof(KismetMathLibrary_BreakRotator) == 0x000028, "Wrong size on KismetMathLibrary_BreakRotator"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotator, InRot) == 0x000000, "Member 'KismetMathLibrary_BreakRotator::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotator, Roll) == 0x000018, "Member 'KismetMathLibrary_BreakRotator::Roll' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotator, Pitch) == 0x00001C, "Member 'KismetMathLibrary_BreakRotator::Pitch' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotator, Yaw) == 0x000020, "Member 'KismetMathLibrary_BreakRotator::Yaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakRotIntoAxes \ +static_assert(alignof(KismetMathLibrary_BreakRotIntoAxes) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakRotIntoAxes"); \ +static_assert(sizeof(KismetMathLibrary_BreakRotIntoAxes) == 0x000060, "Wrong size on KismetMathLibrary_BreakRotIntoAxes"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotIntoAxes, InRot) == 0x000000, "Member 'KismetMathLibrary_BreakRotIntoAxes::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotIntoAxes, X) == 0x000018, "Member 'KismetMathLibrary_BreakRotIntoAxes::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotIntoAxes, Y) == 0x000030, "Member 'KismetMathLibrary_BreakRotIntoAxes::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakRotIntoAxes, Z) == 0x000048, "Member 'KismetMathLibrary_BreakRotIntoAxes::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakTimespan \ +static_assert(alignof(KismetMathLibrary_BreakTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakTimespan"); \ +static_assert(sizeof(KismetMathLibrary_BreakTimespan) == 0x000020, "Wrong size on KismetMathLibrary_BreakTimespan"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, InTimespan) == 0x000000, "Member 'KismetMathLibrary_BreakTimespan::InTimespan' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, Days) == 0x000008, "Member 'KismetMathLibrary_BreakTimespan::Days' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, Hours) == 0x00000C, "Member 'KismetMathLibrary_BreakTimespan::Hours' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, Minutes) == 0x000010, "Member 'KismetMathLibrary_BreakTimespan::Minutes' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, Seconds) == 0x000014, "Member 'KismetMathLibrary_BreakTimespan::Seconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan, Milliseconds) == 0x000018, "Member 'KismetMathLibrary_BreakTimespan::Milliseconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakTimespan2 \ +static_assert(alignof(KismetMathLibrary_BreakTimespan2) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakTimespan2"); \ +static_assert(sizeof(KismetMathLibrary_BreakTimespan2) == 0x000020, "Wrong size on KismetMathLibrary_BreakTimespan2"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, InTimespan) == 0x000000, "Member 'KismetMathLibrary_BreakTimespan2::InTimespan' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, Days) == 0x000008, "Member 'KismetMathLibrary_BreakTimespan2::Days' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, Hours) == 0x00000C, "Member 'KismetMathLibrary_BreakTimespan2::Hours' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, Minutes) == 0x000010, "Member 'KismetMathLibrary_BreakTimespan2::Minutes' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, Seconds) == 0x000014, "Member 'KismetMathLibrary_BreakTimespan2::Seconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTimespan2, FractionNano) == 0x000018, "Member 'KismetMathLibrary_BreakTimespan2::FractionNano' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakTransform \ +static_assert(alignof(KismetMathLibrary_BreakTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_BreakTransform"); \ +static_assert(sizeof(KismetMathLibrary_BreakTransform) == 0x0000B0, "Wrong size on KismetMathLibrary_BreakTransform"); \ +static_assert(offsetof(KismetMathLibrary_BreakTransform, InTransform) == 0x000000, "Member 'KismetMathLibrary_BreakTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTransform, Location) == 0x000060, "Member 'KismetMathLibrary_BreakTransform::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTransform, Rotation) == 0x000078, "Member 'KismetMathLibrary_BreakTransform::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakTransform, Scale) == 0x000090, "Member 'KismetMathLibrary_BreakTransform::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector \ +static_assert(alignof(KismetMathLibrary_BreakVector) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector) == 0x000030, "Wrong size on KismetMathLibrary_BreakVector"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector, X) == 0x000018, "Member 'KismetMathLibrary_BreakVector::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector, Y) == 0x000020, "Member 'KismetMathLibrary_BreakVector::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector, Z) == 0x000028, "Member 'KismetMathLibrary_BreakVector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector2D \ +static_assert(alignof(KismetMathLibrary_BreakVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector2D"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector2D) == 0x000020, "Wrong size on KismetMathLibrary_BreakVector2D"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector2D, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector2D::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector2D, X) == 0x000010, "Member 'KismetMathLibrary_BreakVector2D::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector2D, Y) == 0x000018, "Member 'KismetMathLibrary_BreakVector2D::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector4 \ +static_assert(alignof(KismetMathLibrary_BreakVector4) == 0x000010, "Wrong alignment on KismetMathLibrary_BreakVector4"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector4) == 0x000040, "Wrong size on KismetMathLibrary_BreakVector4"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector4, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector4::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector4, X) == 0x000020, "Member 'KismetMathLibrary_BreakVector4::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector4, Y) == 0x000028, "Member 'KismetMathLibrary_BreakVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector4, Z) == 0x000030, "Member 'KismetMathLibrary_BreakVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector4, W) == 0x000038, "Member 'KismetMathLibrary_BreakVector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector_NetQuantize \ +static_assert(alignof(KismetMathLibrary_BreakVector_NetQuantize) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector_NetQuantize"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector_NetQuantize) == 0x000030, "Wrong size on KismetMathLibrary_BreakVector_NetQuantize"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector_NetQuantize::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize, X) == 0x000018, "Member 'KismetMathLibrary_BreakVector_NetQuantize::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize, Y) == 0x000020, "Member 'KismetMathLibrary_BreakVector_NetQuantize::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize, Z) == 0x000028, "Member 'KismetMathLibrary_BreakVector_NetQuantize::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector_NetQuantize10 \ +static_assert(alignof(KismetMathLibrary_BreakVector_NetQuantize10) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector_NetQuantize10"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector_NetQuantize10) == 0x000030, "Wrong size on KismetMathLibrary_BreakVector_NetQuantize10"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize10, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector_NetQuantize10::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize10, X) == 0x000018, "Member 'KismetMathLibrary_BreakVector_NetQuantize10::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize10, Y) == 0x000020, "Member 'KismetMathLibrary_BreakVector_NetQuantize10::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize10, Z) == 0x000028, "Member 'KismetMathLibrary_BreakVector_NetQuantize10::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector_NetQuantize100 \ +static_assert(alignof(KismetMathLibrary_BreakVector_NetQuantize100) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector_NetQuantize100"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector_NetQuantize100) == 0x000030, "Wrong size on KismetMathLibrary_BreakVector_NetQuantize100"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize100, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector_NetQuantize100::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize100, X) == 0x000018, "Member 'KismetMathLibrary_BreakVector_NetQuantize100::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize100, Y) == 0x000020, "Member 'KismetMathLibrary_BreakVector_NetQuantize100::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantize100, Z) == 0x000028, "Member 'KismetMathLibrary_BreakVector_NetQuantize100::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_BreakVector_NetQuantizeNormal \ +static_assert(alignof(KismetMathLibrary_BreakVector_NetQuantizeNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_BreakVector_NetQuantizeNormal"); \ +static_assert(sizeof(KismetMathLibrary_BreakVector_NetQuantizeNormal) == 0x000030, "Wrong size on KismetMathLibrary_BreakVector_NetQuantizeNormal"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantizeNormal, InVec) == 0x000000, "Member 'KismetMathLibrary_BreakVector_NetQuantizeNormal::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantizeNormal, X) == 0x000018, "Member 'KismetMathLibrary_BreakVector_NetQuantizeNormal::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantizeNormal, Y) == 0x000020, "Member 'KismetMathLibrary_BreakVector_NetQuantizeNormal::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_BreakVector_NetQuantizeNormal, Z) == 0x000028, "Member 'KismetMathLibrary_BreakVector_NetQuantizeNormal::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_CInterpTo \ +static_assert(alignof(KismetMathLibrary_CInterpTo) == 0x000004, "Wrong alignment on KismetMathLibrary_CInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_CInterpTo) == 0x000038, "Wrong size on KismetMathLibrary_CInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_CInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_CInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CInterpTo, Target) == 0x000010, "Member 'KismetMathLibrary_CInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CInterpTo, DeltaTime) == 0x000020, "Member 'KismetMathLibrary_CInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CInterpTo, InterpSpeed) == 0x000024, "Member 'KismetMathLibrary_CInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CInterpTo, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_CInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Clamp \ +static_assert(alignof(KismetMathLibrary_Clamp) == 0x000004, "Wrong alignment on KismetMathLibrary_Clamp"); \ +static_assert(sizeof(KismetMathLibrary_Clamp) == 0x000010, "Wrong size on KismetMathLibrary_Clamp"); \ +static_assert(offsetof(KismetMathLibrary_Clamp, Value) == 0x000000, "Member 'KismetMathLibrary_Clamp::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Clamp, Min_0) == 0x000004, "Member 'KismetMathLibrary_Clamp::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Clamp, Max_0) == 0x000008, "Member 'KismetMathLibrary_Clamp::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Clamp, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Clamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClampAngle \ +static_assert(alignof(KismetMathLibrary_ClampAngle) == 0x000008, "Wrong alignment on KismetMathLibrary_ClampAngle"); \ +static_assert(sizeof(KismetMathLibrary_ClampAngle) == 0x000020, "Wrong size on KismetMathLibrary_ClampAngle"); \ +static_assert(offsetof(KismetMathLibrary_ClampAngle, AngleDegrees) == 0x000000, "Member 'KismetMathLibrary_ClampAngle::AngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAngle, MinAngleDegrees) == 0x000008, "Member 'KismetMathLibrary_ClampAngle::MinAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAngle, MaxAngleDegrees) == 0x000010, "Member 'KismetMathLibrary_ClampAngle::MaxAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAngle, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_ClampAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClampAxes2D \ +static_assert(alignof(KismetMathLibrary_ClampAxes2D) == 0x000008, "Wrong alignment on KismetMathLibrary_ClampAxes2D"); \ +static_assert(sizeof(KismetMathLibrary_ClampAxes2D) == 0x000030, "Wrong size on KismetMathLibrary_ClampAxes2D"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxes2D, A) == 0x000000, "Member 'KismetMathLibrary_ClampAxes2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxes2D, MinAxisVal) == 0x000010, "Member 'KismetMathLibrary_ClampAxes2D::MinAxisVal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxes2D, MaxAxisVal) == 0x000018, "Member 'KismetMathLibrary_ClampAxes2D::MaxAxisVal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxes2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_ClampAxes2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClampAxis \ +static_assert(alignof(KismetMathLibrary_ClampAxis) == 0x000004, "Wrong alignment on KismetMathLibrary_ClampAxis"); \ +static_assert(sizeof(KismetMathLibrary_ClampAxis) == 0x000008, "Wrong size on KismetMathLibrary_ClampAxis"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxis, Angle) == 0x000000, "Member 'KismetMathLibrary_ClampAxis::Angle' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampAxis, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_ClampAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClampInt64 \ +static_assert(alignof(KismetMathLibrary_ClampInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_ClampInt64"); \ +static_assert(sizeof(KismetMathLibrary_ClampInt64) == 0x000020, "Wrong size on KismetMathLibrary_ClampInt64"); \ +static_assert(offsetof(KismetMathLibrary_ClampInt64, Value) == 0x000000, "Member 'KismetMathLibrary_ClampInt64::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampInt64, Min_0) == 0x000008, "Member 'KismetMathLibrary_ClampInt64::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampInt64, Max_0) == 0x000010, "Member 'KismetMathLibrary_ClampInt64::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampInt64, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_ClampInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClampVectorSize \ +static_assert(alignof(KismetMathLibrary_ClampVectorSize) == 0x000008, "Wrong alignment on KismetMathLibrary_ClampVectorSize"); \ +static_assert(sizeof(KismetMathLibrary_ClampVectorSize) == 0x000040, "Wrong size on KismetMathLibrary_ClampVectorSize"); \ +static_assert(offsetof(KismetMathLibrary_ClampVectorSize, A) == 0x000000, "Member 'KismetMathLibrary_ClampVectorSize::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampVectorSize, Min_0) == 0x000018, "Member 'KismetMathLibrary_ClampVectorSize::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampVectorSize, Max_0) == 0x000020, "Member 'KismetMathLibrary_ClampVectorSize::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClampVectorSize, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_ClampVectorSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ClassIsChildOf \ +static_assert(alignof(KismetMathLibrary_ClassIsChildOf) == 0x000008, "Wrong alignment on KismetMathLibrary_ClassIsChildOf"); \ +static_assert(sizeof(KismetMathLibrary_ClassIsChildOf) == 0x000018, "Wrong size on KismetMathLibrary_ClassIsChildOf"); \ +static_assert(offsetof(KismetMathLibrary_ClassIsChildOf, TestClass) == 0x000000, "Member 'KismetMathLibrary_ClassIsChildOf::TestClass' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClassIsChildOf, ParentClass) == 0x000008, "Member 'KismetMathLibrary_ClassIsChildOf::ParentClass' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ClassIsChildOf, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_ClassIsChildOf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ComposeRotators \ +static_assert(alignof(KismetMathLibrary_ComposeRotators) == 0x000008, "Wrong alignment on KismetMathLibrary_ComposeRotators"); \ +static_assert(sizeof(KismetMathLibrary_ComposeRotators) == 0x000048, "Wrong size on KismetMathLibrary_ComposeRotators"); \ +static_assert(offsetof(KismetMathLibrary_ComposeRotators, A) == 0x000000, "Member 'KismetMathLibrary_ComposeRotators::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ComposeRotators, B) == 0x000018, "Member 'KismetMathLibrary_ComposeRotators::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ComposeRotators, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_ComposeRotators::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ComposeTransforms \ +static_assert(alignof(KismetMathLibrary_ComposeTransforms) == 0x000010, "Wrong alignment on KismetMathLibrary_ComposeTransforms"); \ +static_assert(sizeof(KismetMathLibrary_ComposeTransforms) == 0x000120, "Wrong size on KismetMathLibrary_ComposeTransforms"); \ +static_assert(offsetof(KismetMathLibrary_ComposeTransforms, A) == 0x000000, "Member 'KismetMathLibrary_ComposeTransforms::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ComposeTransforms, B) == 0x000060, "Member 'KismetMathLibrary_ComposeTransforms::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ComposeTransforms, ReturnValue) == 0x0000C0, "Member 'KismetMathLibrary_ComposeTransforms::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_BoolToByte \ +static_assert(alignof(KismetMathLibrary_Conv_BoolToByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Conv_BoolToByte"); \ +static_assert(sizeof(KismetMathLibrary_Conv_BoolToByte) == 0x000002, "Wrong size on KismetMathLibrary_Conv_BoolToByte"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToByte, InBool) == 0x000000, "Member 'KismetMathLibrary_Conv_BoolToByte::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToByte, ReturnValue) == 0x000001, "Member 'KismetMathLibrary_Conv_BoolToByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_BoolToDouble \ +static_assert(alignof(KismetMathLibrary_Conv_BoolToDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_BoolToDouble"); \ +static_assert(sizeof(KismetMathLibrary_Conv_BoolToDouble) == 0x000010, "Wrong size on KismetMathLibrary_Conv_BoolToDouble"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToDouble, InBool) == 0x000000, "Member 'KismetMathLibrary_Conv_BoolToDouble::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_BoolToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_BoolToInt \ +static_assert(alignof(KismetMathLibrary_Conv_BoolToInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_BoolToInt"); \ +static_assert(sizeof(KismetMathLibrary_Conv_BoolToInt) == 0x000008, "Wrong size on KismetMathLibrary_Conv_BoolToInt"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToInt, InBool) == 0x000000, "Member 'KismetMathLibrary_Conv_BoolToInt::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_BoolToInt, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_BoolToInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_ByteToDouble \ +static_assert(alignof(KismetMathLibrary_Conv_ByteToDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_ByteToDouble"); \ +static_assert(sizeof(KismetMathLibrary_Conv_ByteToDouble) == 0x000010, "Wrong size on KismetMathLibrary_Conv_ByteToDouble"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToDouble, InByte) == 0x000000, "Member 'KismetMathLibrary_Conv_ByteToDouble::InByte' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_ByteToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_ByteToInt \ +static_assert(alignof(KismetMathLibrary_Conv_ByteToInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_ByteToInt"); \ +static_assert(sizeof(KismetMathLibrary_Conv_ByteToInt) == 0x000008, "Wrong size on KismetMathLibrary_Conv_ByteToInt"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToInt, InByte) == 0x000000, "Member 'KismetMathLibrary_Conv_ByteToInt::InByte' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToInt, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_ByteToInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_ByteToInt64 \ +static_assert(alignof(KismetMathLibrary_Conv_ByteToInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_ByteToInt64"); \ +static_assert(sizeof(KismetMathLibrary_Conv_ByteToInt64) == 0x000010, "Wrong size on KismetMathLibrary_Conv_ByteToInt64"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToInt64, InByte) == 0x000000, "Member 'KismetMathLibrary_Conv_ByteToInt64::InByte' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ByteToInt64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_ByteToInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_ColorToLinearColor \ +static_assert(alignof(KismetMathLibrary_Conv_ColorToLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_ColorToLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Conv_ColorToLinearColor) == 0x000014, "Wrong size on KismetMathLibrary_Conv_ColorToLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ColorToLinearColor, InColor) == 0x000000, "Member 'KismetMathLibrary_Conv_ColorToLinearColor::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_ColorToLinearColor, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_ColorToLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_DoubleToFloat \ +static_assert(alignof(KismetMathLibrary_Conv_DoubleToFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_DoubleToFloat"); \ +static_assert(sizeof(KismetMathLibrary_Conv_DoubleToFloat) == 0x000010, "Wrong size on KismetMathLibrary_Conv_DoubleToFloat"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToFloat, InDouble) == 0x000000, "Member 'KismetMathLibrary_Conv_DoubleToFloat::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToFloat, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_DoubleToFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_DoubleToInt64 \ +static_assert(alignof(KismetMathLibrary_Conv_DoubleToInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_DoubleToInt64"); \ +static_assert(sizeof(KismetMathLibrary_Conv_DoubleToInt64) == 0x000010, "Wrong size on KismetMathLibrary_Conv_DoubleToInt64"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToInt64, InDouble) == 0x000000, "Member 'KismetMathLibrary_Conv_DoubleToInt64::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToInt64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_DoubleToInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_DoubleToLinearColor \ +static_assert(alignof(KismetMathLibrary_Conv_DoubleToLinearColor) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_DoubleToLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Conv_DoubleToLinearColor) == 0x000018, "Wrong size on KismetMathLibrary_Conv_DoubleToLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToLinearColor, InDouble) == 0x000000, "Member 'KismetMathLibrary_Conv_DoubleToLinearColor::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToLinearColor, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_DoubleToLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_DoubleToVector \ +static_assert(alignof(KismetMathLibrary_Conv_DoubleToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_DoubleToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_DoubleToVector) == 0x000020, "Wrong size on KismetMathLibrary_Conv_DoubleToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToVector, InDouble) == 0x000000, "Member 'KismetMathLibrary_Conv_DoubleToVector::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToVector, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_DoubleToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_DoubleToVector2D \ +static_assert(alignof(KismetMathLibrary_Conv_DoubleToVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_DoubleToVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Conv_DoubleToVector2D) == 0x000018, "Wrong size on KismetMathLibrary_Conv_DoubleToVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToVector2D, InDouble) == 0x000000, "Member 'KismetMathLibrary_Conv_DoubleToVector2D::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_DoubleToVector2D, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_DoubleToVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_FloatToDouble \ +static_assert(alignof(KismetMathLibrary_Conv_FloatToDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_FloatToDouble"); \ +static_assert(sizeof(KismetMathLibrary_Conv_FloatToDouble) == 0x000010, "Wrong size on KismetMathLibrary_Conv_FloatToDouble"); \ +static_assert(offsetof(KismetMathLibrary_Conv_FloatToDouble, InFloat) == 0x000000, "Member 'KismetMathLibrary_Conv_FloatToDouble::InFloat' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_FloatToDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_FloatToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Int64ToByte \ +static_assert(alignof(KismetMathLibrary_Conv_Int64ToByte) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_Int64ToByte"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Int64ToByte) == 0x000010, "Wrong size on KismetMathLibrary_Conv_Int64ToByte"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToByte, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_Int64ToByte::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToByte, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_Int64ToByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Int64ToDouble \ +static_assert(alignof(KismetMathLibrary_Conv_Int64ToDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_Int64ToDouble"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Int64ToDouble) == 0x000010, "Wrong size on KismetMathLibrary_Conv_Int64ToDouble"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToDouble, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_Int64ToDouble::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_Int64ToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Int64ToInt \ +static_assert(alignof(KismetMathLibrary_Conv_Int64ToInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_Int64ToInt"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Int64ToInt) == 0x000010, "Wrong size on KismetMathLibrary_Conv_Int64ToInt"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToInt, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_Int64ToInt::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Int64ToInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_Int64ToInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntPointToVector2D \ +static_assert(alignof(KismetMathLibrary_Conv_IntPointToVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_IntPointToVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntPointToVector2D) == 0x000018, "Wrong size on KismetMathLibrary_Conv_IntPointToVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntPointToVector2D, InIntPoint) == 0x000000, "Member 'KismetMathLibrary_Conv_IntPointToVector2D::InIntPoint' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntPointToVector2D, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_IntPointToVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToBool \ +static_assert(alignof(KismetMathLibrary_Conv_IntToBool) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_IntToBool"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToBool) == 0x000008, "Wrong size on KismetMathLibrary_Conv_IntToBool"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToBool, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToBool::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToBool, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_IntToBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToByte \ +static_assert(alignof(KismetMathLibrary_Conv_IntToByte) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_IntToByte"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToByte) == 0x000008, "Wrong size on KismetMathLibrary_Conv_IntToByte"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToByte, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToByte::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToByte, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_IntToByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToDouble \ +static_assert(alignof(KismetMathLibrary_Conv_IntToDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_IntToDouble"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToDouble) == 0x000010, "Wrong size on KismetMathLibrary_Conv_IntToDouble"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToDouble, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToDouble::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_IntToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToInt64 \ +static_assert(alignof(KismetMathLibrary_Conv_IntToInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_IntToInt64"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToInt64) == 0x000010, "Wrong size on KismetMathLibrary_Conv_IntToInt64"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToInt64, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToInt64::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToInt64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_IntToInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToIntVector \ +static_assert(alignof(KismetMathLibrary_Conv_IntToIntVector) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_IntToIntVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToIntVector) == 0x000010, "Wrong size on KismetMathLibrary_Conv_IntToIntVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToIntVector, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToIntVector::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToIntVector, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Conv_IntToIntVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntToVector \ +static_assert(alignof(KismetMathLibrary_Conv_IntToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_IntToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntToVector) == 0x000020, "Wrong size on KismetMathLibrary_Conv_IntToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToVector, inInt) == 0x000000, "Member 'KismetMathLibrary_Conv_IntToVector::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntToVector, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Conv_IntToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_IntVectorToVector \ +static_assert(alignof(KismetMathLibrary_Conv_IntVectorToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_IntVectorToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_IntVectorToVector) == 0x000028, "Wrong size on KismetMathLibrary_Conv_IntVectorToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntVectorToVector, InIntVector) == 0x000000, "Member 'KismetMathLibrary_Conv_IntVectorToVector::InIntVector' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_IntVectorToVector, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Conv_IntVectorToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_LinearColorToColor \ +static_assert(alignof(KismetMathLibrary_Conv_LinearColorToColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Conv_LinearColorToColor"); \ +static_assert(sizeof(KismetMathLibrary_Conv_LinearColorToColor) == 0x000018, "Wrong size on KismetMathLibrary_Conv_LinearColorToColor"); \ +static_assert(offsetof(KismetMathLibrary_Conv_LinearColorToColor, InLinearColor) == 0x000000, "Member 'KismetMathLibrary_Conv_LinearColorToColor::InLinearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_LinearColorToColor, InUseSRGB) == 0x000010, "Member 'KismetMathLibrary_Conv_LinearColorToColor::InUseSRGB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_LinearColorToColor, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_Conv_LinearColorToColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_LinearColorToVector \ +static_assert(alignof(KismetMathLibrary_Conv_LinearColorToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_LinearColorToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_LinearColorToVector) == 0x000028, "Wrong size on KismetMathLibrary_Conv_LinearColorToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_LinearColorToVector, InLinearColor) == 0x000000, "Member 'KismetMathLibrary_Conv_LinearColorToVector::InLinearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_LinearColorToVector, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Conv_LinearColorToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_MatrixToRotator \ +static_assert(alignof(KismetMathLibrary_Conv_MatrixToRotator) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_MatrixToRotator"); \ +static_assert(sizeof(KismetMathLibrary_Conv_MatrixToRotator) == 0x0000A0, "Wrong size on KismetMathLibrary_Conv_MatrixToRotator"); \ +static_assert(offsetof(KismetMathLibrary_Conv_MatrixToRotator, InMatrix) == 0x000000, "Member 'KismetMathLibrary_Conv_MatrixToRotator::InMatrix' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_MatrixToRotator, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Conv_MatrixToRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_MatrixToTransform \ +static_assert(alignof(KismetMathLibrary_Conv_MatrixToTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_MatrixToTransform"); \ +static_assert(sizeof(KismetMathLibrary_Conv_MatrixToTransform) == 0x0000E0, "Wrong size on KismetMathLibrary_Conv_MatrixToTransform"); \ +static_assert(offsetof(KismetMathLibrary_Conv_MatrixToTransform, InMatrix) == 0x000000, "Member 'KismetMathLibrary_Conv_MatrixToTransform::InMatrix' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_MatrixToTransform, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Conv_MatrixToTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_RotatorToQuaternion \ +static_assert(alignof(KismetMathLibrary_Conv_RotatorToQuaternion) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_RotatorToQuaternion"); \ +static_assert(sizeof(KismetMathLibrary_Conv_RotatorToQuaternion) == 0x000040, "Wrong size on KismetMathLibrary_Conv_RotatorToQuaternion"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToQuaternion, InRot) == 0x000000, "Member 'KismetMathLibrary_Conv_RotatorToQuaternion::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToQuaternion, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_RotatorToQuaternion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_RotatorToTransform \ +static_assert(alignof(KismetMathLibrary_Conv_RotatorToTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_RotatorToTransform"); \ +static_assert(sizeof(KismetMathLibrary_Conv_RotatorToTransform) == 0x000080, "Wrong size on KismetMathLibrary_Conv_RotatorToTransform"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToTransform, InRotator) == 0x000000, "Member 'KismetMathLibrary_Conv_RotatorToTransform::InRotator' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToTransform, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_RotatorToTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_RotatorToVector \ +static_assert(alignof(KismetMathLibrary_Conv_RotatorToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_RotatorToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_RotatorToVector) == 0x000030, "Wrong size on KismetMathLibrary_Conv_RotatorToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToVector, InRot) == 0x000000, "Member 'KismetMathLibrary_Conv_RotatorToVector::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_RotatorToVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Conv_RotatorToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_TransformToMatrix \ +static_assert(alignof(KismetMathLibrary_Conv_TransformToMatrix) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_TransformToMatrix"); \ +static_assert(sizeof(KismetMathLibrary_Conv_TransformToMatrix) == 0x0000E0, "Wrong size on KismetMathLibrary_Conv_TransformToMatrix"); \ +static_assert(offsetof(KismetMathLibrary_Conv_TransformToMatrix, Transform) == 0x000000, "Member 'KismetMathLibrary_Conv_TransformToMatrix::Transform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_TransformToMatrix, ReturnValue) == 0x000060, "Member 'KismetMathLibrary_Conv_TransformToMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Vector2DToIntPoint \ +static_assert(alignof(KismetMathLibrary_Conv_Vector2DToIntPoint) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_Vector2DToIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Vector2DToIntPoint) == 0x000018, "Wrong size on KismetMathLibrary_Conv_Vector2DToIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector2DToIntPoint, InVector2D) == 0x000000, "Member 'KismetMathLibrary_Conv_Vector2DToIntPoint::InVector2D' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector2DToIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Conv_Vector2DToIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Vector2DToVector \ +static_assert(alignof(KismetMathLibrary_Conv_Vector2DToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_Vector2DToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Vector2DToVector) == 0x000030, "Wrong size on KismetMathLibrary_Conv_Vector2DToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector2DToVector, InVector2D) == 0x000000, "Member 'KismetMathLibrary_Conv_Vector2DToVector::InVector2D' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector2DToVector, Z) == 0x000010, "Member 'KismetMathLibrary_Conv_Vector2DToVector::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector2DToVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Conv_Vector2DToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Vector4ToQuaternion \ +static_assert(alignof(KismetMathLibrary_Conv_Vector4ToQuaternion) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_Vector4ToQuaternion"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Vector4ToQuaternion) == 0x000040, "Wrong size on KismetMathLibrary_Conv_Vector4ToQuaternion"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToQuaternion, InVec) == 0x000000, "Member 'KismetMathLibrary_Conv_Vector4ToQuaternion::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToQuaternion, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_Vector4ToQuaternion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Vector4ToRotator \ +static_assert(alignof(KismetMathLibrary_Conv_Vector4ToRotator) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_Vector4ToRotator"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Vector4ToRotator) == 0x000040, "Wrong size on KismetMathLibrary_Conv_Vector4ToRotator"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToRotator, InVec) == 0x000000, "Member 'KismetMathLibrary_Conv_Vector4ToRotator::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToRotator, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_Vector4ToRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_Vector4ToVector \ +static_assert(alignof(KismetMathLibrary_Conv_Vector4ToVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_Vector4ToVector"); \ +static_assert(sizeof(KismetMathLibrary_Conv_Vector4ToVector) == 0x000040, "Wrong size on KismetMathLibrary_Conv_Vector4ToVector"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToVector, InVector4) == 0x000000, "Member 'KismetMathLibrary_Conv_Vector4ToVector::InVector4' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_Vector4ToVector, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_Vector4ToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_VectorToLinearColor \ +static_assert(alignof(KismetMathLibrary_Conv_VectorToLinearColor) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_VectorToLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Conv_VectorToLinearColor) == 0x000028, "Wrong size on KismetMathLibrary_Conv_VectorToLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToLinearColor, InVec) == 0x000000, "Member 'KismetMathLibrary_Conv_VectorToLinearColor::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToLinearColor, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Conv_VectorToLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_VectorToQuaternion \ +static_assert(alignof(KismetMathLibrary_Conv_VectorToQuaternion) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_VectorToQuaternion"); \ +static_assert(sizeof(KismetMathLibrary_Conv_VectorToQuaternion) == 0x000040, "Wrong size on KismetMathLibrary_Conv_VectorToQuaternion"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToQuaternion, InVec) == 0x000000, "Member 'KismetMathLibrary_Conv_VectorToQuaternion::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToQuaternion, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_VectorToQuaternion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_VectorToRotator \ +static_assert(alignof(KismetMathLibrary_Conv_VectorToRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_VectorToRotator"); \ +static_assert(sizeof(KismetMathLibrary_Conv_VectorToRotator) == 0x000030, "Wrong size on KismetMathLibrary_Conv_VectorToRotator"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToRotator, InVec) == 0x000000, "Member 'KismetMathLibrary_Conv_VectorToRotator::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToRotator, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Conv_VectorToRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_VectorToTransform \ +static_assert(alignof(KismetMathLibrary_Conv_VectorToTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_Conv_VectorToTransform"); \ +static_assert(sizeof(KismetMathLibrary_Conv_VectorToTransform) == 0x000080, "Wrong size on KismetMathLibrary_Conv_VectorToTransform"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToTransform, InLocation) == 0x000000, "Member 'KismetMathLibrary_Conv_VectorToTransform::InLocation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToTransform, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Conv_VectorToTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Conv_VectorToVector2D \ +static_assert(alignof(KismetMathLibrary_Conv_VectorToVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Conv_VectorToVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Conv_VectorToVector2D) == 0x000028, "Wrong size on KismetMathLibrary_Conv_VectorToVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToVector2D, InVector) == 0x000000, "Member 'KismetMathLibrary_Conv_VectorToVector2D::InVector' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Conv_VectorToVector2D, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Conv_VectorToVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Cos \ +static_assert(alignof(KismetMathLibrary_Cos) == 0x000008, "Wrong alignment on KismetMathLibrary_Cos"); \ +static_assert(sizeof(KismetMathLibrary_Cos) == 0x000010, "Wrong size on KismetMathLibrary_Cos"); \ +static_assert(offsetof(KismetMathLibrary_Cos, A) == 0x000000, "Member 'KismetMathLibrary_Cos::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Cos, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Cos::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_CreateVectorFromYawPitch \ +static_assert(alignof(KismetMathLibrary_CreateVectorFromYawPitch) == 0x000008, "Wrong alignment on KismetMathLibrary_CreateVectorFromYawPitch"); \ +static_assert(sizeof(KismetMathLibrary_CreateVectorFromYawPitch) == 0x000028, "Wrong size on KismetMathLibrary_CreateVectorFromYawPitch"); \ +static_assert(offsetof(KismetMathLibrary_CreateVectorFromYawPitch, Yaw) == 0x000000, "Member 'KismetMathLibrary_CreateVectorFromYawPitch::Yaw' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CreateVectorFromYawPitch, Pitch) == 0x000004, "Member 'KismetMathLibrary_CreateVectorFromYawPitch::Pitch' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CreateVectorFromYawPitch, Length) == 0x000008, "Member 'KismetMathLibrary_CreateVectorFromYawPitch::Length' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CreateVectorFromYawPitch, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_CreateVectorFromYawPitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Cross_VectorVector \ +static_assert(alignof(KismetMathLibrary_Cross_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Cross_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Cross_VectorVector) == 0x000048, "Wrong size on KismetMathLibrary_Cross_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Cross_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Cross_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Cross_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Cross_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Cross_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Cross_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_CrossProduct2D \ +static_assert(alignof(KismetMathLibrary_CrossProduct2D) == 0x000008, "Wrong alignment on KismetMathLibrary_CrossProduct2D"); \ +static_assert(sizeof(KismetMathLibrary_CrossProduct2D) == 0x000028, "Wrong size on KismetMathLibrary_CrossProduct2D"); \ +static_assert(offsetof(KismetMathLibrary_CrossProduct2D, A) == 0x000000, "Member 'KismetMathLibrary_CrossProduct2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CrossProduct2D, B) == 0x000010, "Member 'KismetMathLibrary_CrossProduct2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_CrossProduct2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_CrossProduct2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DateTimeFromIsoString \ +static_assert(alignof(KismetMathLibrary_DateTimeFromIsoString) == 0x000008, "Wrong alignment on KismetMathLibrary_DateTimeFromIsoString"); \ +static_assert(sizeof(KismetMathLibrary_DateTimeFromIsoString) == 0x000020, "Wrong size on KismetMathLibrary_DateTimeFromIsoString"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromIsoString, IsoString) == 0x000000, "Member 'KismetMathLibrary_DateTimeFromIsoString::IsoString' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromIsoString, Result) == 0x000010, "Member 'KismetMathLibrary_DateTimeFromIsoString::Result' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromIsoString, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_DateTimeFromIsoString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DateTimeFromString \ +static_assert(alignof(KismetMathLibrary_DateTimeFromString) == 0x000008, "Wrong alignment on KismetMathLibrary_DateTimeFromString"); \ +static_assert(sizeof(KismetMathLibrary_DateTimeFromString) == 0x000020, "Wrong size on KismetMathLibrary_DateTimeFromString"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromString, DateTimeString) == 0x000000, "Member 'KismetMathLibrary_DateTimeFromString::DateTimeString' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromString, Result) == 0x000010, "Member 'KismetMathLibrary_DateTimeFromString::Result' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeFromString, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_DateTimeFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DateTimeMaxValue \ +static_assert(alignof(KismetMathLibrary_DateTimeMaxValue) == 0x000008, "Wrong alignment on KismetMathLibrary_DateTimeMaxValue"); \ +static_assert(sizeof(KismetMathLibrary_DateTimeMaxValue) == 0x000008, "Wrong size on KismetMathLibrary_DateTimeMaxValue"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeMaxValue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_DateTimeMaxValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DateTimeMinValue \ +static_assert(alignof(KismetMathLibrary_DateTimeMinValue) == 0x000008, "Wrong alignment on KismetMathLibrary_DateTimeMinValue"); \ +static_assert(sizeof(KismetMathLibrary_DateTimeMinValue) == 0x000008, "Wrong size on KismetMathLibrary_DateTimeMinValue"); \ +static_assert(offsetof(KismetMathLibrary_DateTimeMinValue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_DateTimeMinValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DaysInMonth \ +static_assert(alignof(KismetMathLibrary_DaysInMonth) == 0x000004, "Wrong alignment on KismetMathLibrary_DaysInMonth"); \ +static_assert(sizeof(KismetMathLibrary_DaysInMonth) == 0x00000C, "Wrong size on KismetMathLibrary_DaysInMonth"); \ +static_assert(offsetof(KismetMathLibrary_DaysInMonth, Year) == 0x000000, "Member 'KismetMathLibrary_DaysInMonth::Year' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DaysInMonth, Month) == 0x000004, "Member 'KismetMathLibrary_DaysInMonth::Month' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DaysInMonth, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DaysInMonth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DaysInYear \ +static_assert(alignof(KismetMathLibrary_DaysInYear) == 0x000004, "Wrong alignment on KismetMathLibrary_DaysInYear"); \ +static_assert(sizeof(KismetMathLibrary_DaysInYear) == 0x000008, "Wrong size on KismetMathLibrary_DaysInYear"); \ +static_assert(offsetof(KismetMathLibrary_DaysInYear, Year) == 0x000000, "Member 'KismetMathLibrary_DaysInYear::Year' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DaysInYear, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_DaysInYear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegAcos \ +static_assert(alignof(KismetMathLibrary_DegAcos) == 0x000008, "Wrong alignment on KismetMathLibrary_DegAcos"); \ +static_assert(sizeof(KismetMathLibrary_DegAcos) == 0x000010, "Wrong size on KismetMathLibrary_DegAcos"); \ +static_assert(offsetof(KismetMathLibrary_DegAcos, A) == 0x000000, "Member 'KismetMathLibrary_DegAcos::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegAcos, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegAcos::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegAsin \ +static_assert(alignof(KismetMathLibrary_DegAsin) == 0x000008, "Wrong alignment on KismetMathLibrary_DegAsin"); \ +static_assert(sizeof(KismetMathLibrary_DegAsin) == 0x000010, "Wrong size on KismetMathLibrary_DegAsin"); \ +static_assert(offsetof(KismetMathLibrary_DegAsin, A) == 0x000000, "Member 'KismetMathLibrary_DegAsin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegAsin, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegAsin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegAtan \ +static_assert(alignof(KismetMathLibrary_DegAtan) == 0x000008, "Wrong alignment on KismetMathLibrary_DegAtan"); \ +static_assert(sizeof(KismetMathLibrary_DegAtan) == 0x000010, "Wrong size on KismetMathLibrary_DegAtan"); \ +static_assert(offsetof(KismetMathLibrary_DegAtan, A) == 0x000000, "Member 'KismetMathLibrary_DegAtan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegAtan, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegAtan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegAtan2 \ +static_assert(alignof(KismetMathLibrary_DegAtan2) == 0x000008, "Wrong alignment on KismetMathLibrary_DegAtan2"); \ +static_assert(sizeof(KismetMathLibrary_DegAtan2) == 0x000018, "Wrong size on KismetMathLibrary_DegAtan2"); \ +static_assert(offsetof(KismetMathLibrary_DegAtan2, Y) == 0x000000, "Member 'KismetMathLibrary_DegAtan2::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegAtan2, X) == 0x000008, "Member 'KismetMathLibrary_DegAtan2::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegAtan2, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_DegAtan2::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegCos \ +static_assert(alignof(KismetMathLibrary_DegCos) == 0x000008, "Wrong alignment on KismetMathLibrary_DegCos"); \ +static_assert(sizeof(KismetMathLibrary_DegCos) == 0x000010, "Wrong size on KismetMathLibrary_DegCos"); \ +static_assert(offsetof(KismetMathLibrary_DegCos, A) == 0x000000, "Member 'KismetMathLibrary_DegCos::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegCos, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegCos::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegreesToRadians \ +static_assert(alignof(KismetMathLibrary_DegreesToRadians) == 0x000008, "Wrong alignment on KismetMathLibrary_DegreesToRadians"); \ +static_assert(sizeof(KismetMathLibrary_DegreesToRadians) == 0x000010, "Wrong size on KismetMathLibrary_DegreesToRadians"); \ +static_assert(offsetof(KismetMathLibrary_DegreesToRadians, A) == 0x000000, "Member 'KismetMathLibrary_DegreesToRadians::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegreesToRadians, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegreesToRadians::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegSin \ +static_assert(alignof(KismetMathLibrary_DegSin) == 0x000008, "Wrong alignment on KismetMathLibrary_DegSin"); \ +static_assert(sizeof(KismetMathLibrary_DegSin) == 0x000010, "Wrong size on KismetMathLibrary_DegSin"); \ +static_assert(offsetof(KismetMathLibrary_DegSin, A) == 0x000000, "Member 'KismetMathLibrary_DegSin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegSin, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegSin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DegTan \ +static_assert(alignof(KismetMathLibrary_DegTan) == 0x000008, "Wrong alignment on KismetMathLibrary_DegTan"); \ +static_assert(sizeof(KismetMathLibrary_DegTan) == 0x000010, "Wrong size on KismetMathLibrary_DegTan"); \ +static_assert(offsetof(KismetMathLibrary_DegTan, A) == 0x000000, "Member 'KismetMathLibrary_DegTan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DegTan, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_DegTan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Distance2D \ +static_assert(alignof(KismetMathLibrary_Distance2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Distance2D"); \ +static_assert(sizeof(KismetMathLibrary_Distance2D) == 0x000028, "Wrong size on KismetMathLibrary_Distance2D"); \ +static_assert(offsetof(KismetMathLibrary_Distance2D, v1) == 0x000000, "Member 'KismetMathLibrary_Distance2D::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Distance2D, v2) == 0x000010, "Member 'KismetMathLibrary_Distance2D::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Distance2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Distance2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DistanceSquared2D \ +static_assert(alignof(KismetMathLibrary_DistanceSquared2D) == 0x000008, "Wrong alignment on KismetMathLibrary_DistanceSquared2D"); \ +static_assert(sizeof(KismetMathLibrary_DistanceSquared2D) == 0x000028, "Wrong size on KismetMathLibrary_DistanceSquared2D"); \ +static_assert(offsetof(KismetMathLibrary_DistanceSquared2D, v1) == 0x000000, "Member 'KismetMathLibrary_DistanceSquared2D::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DistanceSquared2D, v2) == 0x000010, "Member 'KismetMathLibrary_DistanceSquared2D::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DistanceSquared2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_DistanceSquared2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_ByteByte \ +static_assert(alignof(KismetMathLibrary_Divide_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Divide_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Divide_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Divide_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Divide_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Divide_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Divide_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Divide_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Divide_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Divide_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Divide_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Divide_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Divide_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Divide_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Divide_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Divide_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Divide_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Divide_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Divide_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Divide_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Divide_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_IntInt \ +static_assert(alignof(KismetMathLibrary_Divide_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Divide_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Divide_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Divide_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Divide_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Divide_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Divide_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_IntPointInt \ +static_assert(alignof(KismetMathLibrary_Divide_IntPointInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Divide_IntPointInt"); \ +static_assert(sizeof(KismetMathLibrary_Divide_IntPointInt) == 0x000014, "Wrong size on KismetMathLibrary_Divide_IntPointInt"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointInt, A) == 0x000000, "Member 'KismetMathLibrary_Divide_IntPointInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointInt, B) == 0x000008, "Member 'KismetMathLibrary_Divide_IntPointInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointInt, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Divide_IntPointInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_Divide_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_Divide_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Divide_IntPointIntPoint) == 0x000018, "Wrong size on KismetMathLibrary_Divide_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_Divide_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_Divide_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Divide_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_Divide_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Divide_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Divide_LinearColorLinearColor) == 0x000030, "Wrong size on KismetMathLibrary_Divide_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Divide_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_Divide_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_Divide_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Divide_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_TimespanFloat \ +static_assert(alignof(KismetMathLibrary_Divide_TimespanFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_TimespanFloat"); \ +static_assert(sizeof(KismetMathLibrary_Divide_TimespanFloat) == 0x000018, "Wrong size on KismetMathLibrary_Divide_TimespanFloat"); \ +static_assert(offsetof(KismetMathLibrary_Divide_TimespanFloat, A) == 0x000000, "Member 'KismetMathLibrary_Divide_TimespanFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_TimespanFloat, Scalar) == 0x000008, "Member 'KismetMathLibrary_Divide_TimespanFloat::Scalar' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_TimespanFloat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Divide_TimespanFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_Vector2DFloat \ +static_assert(alignof(KismetMathLibrary_Divide_Vector2DFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_Vector2DFloat"); \ +static_assert(sizeof(KismetMathLibrary_Divide_Vector2DFloat) == 0x000028, "Wrong size on KismetMathLibrary_Divide_Vector2DFloat"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DFloat, A) == 0x000000, "Member 'KismetMathLibrary_Divide_Vector2DFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DFloat, B) == 0x000010, "Member 'KismetMathLibrary_Divide_Vector2DFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Divide_Vector2DFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_Divide_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Divide_Vector2DVector2D) == 0x000030, "Wrong size on KismetMathLibrary_Divide_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_Divide_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_Divide_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Divide_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_Divide_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_Divide_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_Divide_Vector4Vector4) == 0x000060, "Wrong size on KismetMathLibrary_Divide_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_Divide_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_Divide_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Divide_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_VectorFloat \ +static_assert(alignof(KismetMathLibrary_Divide_VectorFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_VectorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Divide_VectorFloat) == 0x000038, "Wrong size on KismetMathLibrary_Divide_VectorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Divide_VectorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorFloat, B) == 0x000018, "Member 'KismetMathLibrary_Divide_VectorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorFloat, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Divide_VectorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_VectorInt \ +static_assert(alignof(KismetMathLibrary_Divide_VectorInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_VectorInt"); \ +static_assert(sizeof(KismetMathLibrary_Divide_VectorInt) == 0x000038, "Wrong size on KismetMathLibrary_Divide_VectorInt"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorInt, A) == 0x000000, "Member 'KismetMathLibrary_Divide_VectorInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorInt, B) == 0x000018, "Member 'KismetMathLibrary_Divide_VectorInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorInt, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Divide_VectorInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Divide_VectorVector \ +static_assert(alignof(KismetMathLibrary_Divide_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Divide_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Divide_VectorVector) == 0x000048, "Wrong size on KismetMathLibrary_Divide_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Divide_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Divide_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Divide_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Divide_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Dot_VectorVector \ +static_assert(alignof(KismetMathLibrary_Dot_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Dot_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Dot_VectorVector) == 0x000038, "Wrong size on KismetMathLibrary_Dot_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Dot_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Dot_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Dot_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Dot_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Dot_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Dot_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DotProduct2D \ +static_assert(alignof(KismetMathLibrary_DotProduct2D) == 0x000008, "Wrong alignment on KismetMathLibrary_DotProduct2D"); \ +static_assert(sizeof(KismetMathLibrary_DotProduct2D) == 0x000028, "Wrong size on KismetMathLibrary_DotProduct2D"); \ +static_assert(offsetof(KismetMathLibrary_DotProduct2D, A) == 0x000000, "Member 'KismetMathLibrary_DotProduct2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DotProduct2D, B) == 0x000010, "Member 'KismetMathLibrary_DotProduct2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DotProduct2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_DotProduct2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DynamicWeightedMovingAverage_Float \ +static_assert(alignof(KismetMathLibrary_DynamicWeightedMovingAverage_Float) == 0x000004, "Wrong alignment on KismetMathLibrary_DynamicWeightedMovingAverage_Float"); \ +static_assert(sizeof(KismetMathLibrary_DynamicWeightedMovingAverage_Float) == 0x000018, "Wrong size on KismetMathLibrary_DynamicWeightedMovingAverage_Float"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, PreviousSample) == 0x000004, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, MaxDistance) == 0x000008, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, MinWeight) == 0x00000C, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::MinWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, MaxWeight) == 0x000010, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::MaxWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_Float, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DynamicWeightedMovingAverage_FRotator \ +static_assert(alignof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_DynamicWeightedMovingAverage_FRotator"); \ +static_assert(sizeof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator) == 0x000058, "Wrong size on KismetMathLibrary_DynamicWeightedMovingAverage_FRotator"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, PreviousSample) == 0x000018, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, MaxDistance) == 0x000030, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, MinWeight) == 0x000034, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::MinWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, MaxWeight) == 0x000038, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::MaxWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FRotator, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_DynamicWeightedMovingAverage_FVector \ +static_assert(alignof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector) == 0x000008, "Wrong alignment on KismetMathLibrary_DynamicWeightedMovingAverage_FVector"); \ +static_assert(sizeof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector) == 0x000058, "Wrong size on KismetMathLibrary_DynamicWeightedMovingAverage_FVector"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, PreviousSample) == 0x000018, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, MaxDistance) == 0x000030, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, MinWeight) == 0x000034, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::MinWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, MaxWeight) == 0x000038, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::MaxWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_DynamicWeightedMovingAverage_FVector, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_DynamicWeightedMovingAverage_FVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Ease \ +static_assert(alignof(KismetMathLibrary_Ease) == 0x000008, "Wrong alignment on KismetMathLibrary_Ease"); \ +static_assert(sizeof(KismetMathLibrary_Ease) == 0x000038, "Wrong size on KismetMathLibrary_Ease"); \ +static_assert(offsetof(KismetMathLibrary_Ease, A) == 0x000000, "Member 'KismetMathLibrary_Ease::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, B) == 0x000008, "Member 'KismetMathLibrary_Ease::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, alpha) == 0x000010, "Member 'KismetMathLibrary_Ease::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, EasingFunc) == 0x000018, "Member 'KismetMathLibrary_Ease::EasingFunc' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, BlendExp) == 0x000020, "Member 'KismetMathLibrary_Ease::BlendExp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, Steps) == 0x000028, "Member 'KismetMathLibrary_Ease::Steps' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Ease, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Ease::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Equal_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_Equal_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_Equal_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Equal_IntPointIntPoint) == 0x000014, "Wrong size on KismetMathLibrary_Equal_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Equal_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_Equal_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Equal_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_Equal_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Equal_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Equal_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_BoolBool \ +static_assert(alignof(KismetMathLibrary_EqualEqual_BoolBool) == 0x000001, "Wrong alignment on KismetMathLibrary_EqualEqual_BoolBool"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_BoolBool) == 0x000003, "Wrong size on KismetMathLibrary_EqualEqual_BoolBool"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_BoolBool, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_BoolBool::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_BoolBool, B) == 0x000001, "Member 'KismetMathLibrary_EqualEqual_BoolBool::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_BoolBool, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_EqualEqual_BoolBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_ByteByte \ +static_assert(alignof(KismetMathLibrary_EqualEqual_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_EqualEqual_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_EqualEqual_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_EqualEqual_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_EqualEqual_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_ClassClass \ +static_assert(alignof(KismetMathLibrary_EqualEqual_ClassClass) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_ClassClass"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_ClassClass) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_ClassClass"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ClassClass, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_ClassClass::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ClassClass, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_ClassClass::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ClassClass, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_ClassClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_EqualEqual_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_EqualEqual_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_EqualEqual_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_IntInt \ +static_assert(alignof(KismetMathLibrary_EqualEqual_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_EqualEqual_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_EqualEqual_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_EqualEqual_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_EqualEqual_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_EqualEqual_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_LinearColorLinearColor) == 0x000024, "Wrong size on KismetMathLibrary_EqualEqual_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_EqualEqual_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_MatrixMatrix \ +static_assert(alignof(KismetMathLibrary_EqualEqual_MatrixMatrix) == 0x000010, "Wrong alignment on KismetMathLibrary_EqualEqual_MatrixMatrix"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_MatrixMatrix) == 0x000110, "Wrong size on KismetMathLibrary_EqualEqual_MatrixMatrix"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_MatrixMatrix, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_MatrixMatrix::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_MatrixMatrix, B) == 0x000080, "Member 'KismetMathLibrary_EqualEqual_MatrixMatrix::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_MatrixMatrix, Tolerance) == 0x000100, "Member 'KismetMathLibrary_EqualEqual_MatrixMatrix::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_MatrixMatrix, ReturnValue) == 0x000104, "Member 'KismetMathLibrary_EqualEqual_MatrixMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_NameName \ +static_assert(alignof(KismetMathLibrary_EqualEqual_NameName) == 0x000004, "Wrong alignment on KismetMathLibrary_EqualEqual_NameName"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_NameName) == 0x000014, "Wrong size on KismetMathLibrary_EqualEqual_NameName"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_NameName, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_NameName::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_NameName, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_NameName::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_NameName, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_NameName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_ObjectObject \ +static_assert(alignof(KismetMathLibrary_EqualEqual_ObjectObject) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_ObjectObject"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_ObjectObject) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_ObjectObject"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ObjectObject, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_ObjectObject::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ObjectObject, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_ObjectObject::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_ObjectObject, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_ObjectObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_QuatQuat \ +static_assert(alignof(KismetMathLibrary_EqualEqual_QuatQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_EqualEqual_QuatQuat"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_QuatQuat) == 0x000050, "Wrong size on KismetMathLibrary_EqualEqual_QuatQuat"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_QuatQuat, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_QuatQuat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_QuatQuat, B) == 0x000020, "Member 'KismetMathLibrary_EqualEqual_QuatQuat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_QuatQuat, Tolerance) == 0x000040, "Member 'KismetMathLibrary_EqualEqual_QuatQuat::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_QuatQuat, ReturnValue) == 0x000044, "Member 'KismetMathLibrary_EqualEqual_QuatQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_RotatorRotator \ +static_assert(alignof(KismetMathLibrary_EqualEqual_RotatorRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_RotatorRotator"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_RotatorRotator) == 0x000038, "Wrong size on KismetMathLibrary_EqualEqual_RotatorRotator"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_RotatorRotator, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_RotatorRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_RotatorRotator, B) == 0x000018, "Member 'KismetMathLibrary_EqualEqual_RotatorRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_RotatorRotator, ErrorTolerance) == 0x000030, "Member 'KismetMathLibrary_EqualEqual_RotatorRotator::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_RotatorRotator, ReturnValue) == 0x000034, "Member 'KismetMathLibrary_EqualEqual_RotatorRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_EqualEqual_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_EqualEqual_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_EqualEqual_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_TransformTransform \ +static_assert(alignof(KismetMathLibrary_EqualEqual_TransformTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_EqualEqual_TransformTransform"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_TransformTransform) == 0x0000D0, "Wrong size on KismetMathLibrary_EqualEqual_TransformTransform"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TransformTransform, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_TransformTransform::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TransformTransform, B) == 0x000060, "Member 'KismetMathLibrary_EqualEqual_TransformTransform::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_TransformTransform, ReturnValue) == 0x0000C0, "Member 'KismetMathLibrary_EqualEqual_TransformTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_EqualEqual_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_Vector2DVector2D) == 0x000028, "Wrong size on KismetMathLibrary_EqualEqual_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_EqualEqual_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector2DVector2D, ErrorTolerance) == 0x000020, "Member 'KismetMathLibrary_EqualEqual_Vector2DVector2D::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector2DVector2D, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_EqualEqual_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_EqualEqual_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_EqualEqual_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_Vector4Vector4) == 0x000050, "Wrong size on KismetMathLibrary_EqualEqual_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_EqualEqual_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector4Vector4, ErrorTolerance) == 0x000040, "Member 'KismetMathLibrary_EqualEqual_Vector4Vector4::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_Vector4Vector4, ReturnValue) == 0x000044, "Member 'KismetMathLibrary_EqualEqual_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualEqual_VectorVector \ +static_assert(alignof(KismetMathLibrary_EqualEqual_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualEqual_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_EqualEqual_VectorVector) == 0x000038, "Wrong size on KismetMathLibrary_EqualEqual_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_EqualEqual_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_EqualEqual_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_VectorVector, ErrorTolerance) == 0x000030, "Member 'KismetMathLibrary_EqualEqual_VectorVector::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualEqual_VectorVector, ReturnValue) == 0x000034, "Member 'KismetMathLibrary_EqualEqual_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualExactly_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_EqualExactly_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualExactly_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_EqualExactly_Vector2DVector2D) == 0x000028, "Wrong size on KismetMathLibrary_EqualExactly_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_EqualExactly_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_EqualExactly_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_EqualExactly_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualExactly_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_EqualExactly_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_EqualExactly_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_EqualExactly_Vector4Vector4) == 0x000050, "Wrong size on KismetMathLibrary_EqualExactly_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_EqualExactly_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_EqualExactly_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_EqualExactly_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_EqualExactly_VectorVector \ +static_assert(alignof(KismetMathLibrary_EqualExactly_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_EqualExactly_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_EqualExactly_VectorVector) == 0x000038, "Wrong size on KismetMathLibrary_EqualExactly_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_EqualExactly_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_EqualExactly_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_EqualExactly_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_EqualExactly_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Exp \ +static_assert(alignof(KismetMathLibrary_Exp) == 0x000008, "Wrong alignment on KismetMathLibrary_Exp"); \ +static_assert(sizeof(KismetMathLibrary_Exp) == 0x000010, "Wrong size on KismetMathLibrary_Exp"); \ +static_assert(offsetof(KismetMathLibrary_Exp, A) == 0x000000, "Member 'KismetMathLibrary_Exp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Exp, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Exp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FCeil \ +static_assert(alignof(KismetMathLibrary_FCeil) == 0x000008, "Wrong alignment on KismetMathLibrary_FCeil"); \ +static_assert(sizeof(KismetMathLibrary_FCeil) == 0x000010, "Wrong size on KismetMathLibrary_FCeil"); \ +static_assert(offsetof(KismetMathLibrary_FCeil, A) == 0x000000, "Member 'KismetMathLibrary_FCeil::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FCeil, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FCeil::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FCeil64 \ +static_assert(alignof(KismetMathLibrary_FCeil64) == 0x000008, "Wrong alignment on KismetMathLibrary_FCeil64"); \ +static_assert(sizeof(KismetMathLibrary_FCeil64) == 0x000010, "Wrong size on KismetMathLibrary_FCeil64"); \ +static_assert(offsetof(KismetMathLibrary_FCeil64, A) == 0x000000, "Member 'KismetMathLibrary_FCeil64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FCeil64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FCeil64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FClamp \ +static_assert(alignof(KismetMathLibrary_FClamp) == 0x000008, "Wrong alignment on KismetMathLibrary_FClamp"); \ +static_assert(sizeof(KismetMathLibrary_FClamp) == 0x000020, "Wrong size on KismetMathLibrary_FClamp"); \ +static_assert(offsetof(KismetMathLibrary_FClamp, Value) == 0x000000, "Member 'KismetMathLibrary_FClamp::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FClamp, Min_0) == 0x000008, "Member 'KismetMathLibrary_FClamp::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FClamp, Max_0) == 0x000010, "Member 'KismetMathLibrary_FClamp::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FClamp, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_FClamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FFloor \ +static_assert(alignof(KismetMathLibrary_FFloor) == 0x000008, "Wrong alignment on KismetMathLibrary_FFloor"); \ +static_assert(sizeof(KismetMathLibrary_FFloor) == 0x000010, "Wrong size on KismetMathLibrary_FFloor"); \ +static_assert(offsetof(KismetMathLibrary_FFloor, A) == 0x000000, "Member 'KismetMathLibrary_FFloor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FFloor, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FFloor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FFloor64 \ +static_assert(alignof(KismetMathLibrary_FFloor64) == 0x000008, "Wrong alignment on KismetMathLibrary_FFloor64"); \ +static_assert(sizeof(KismetMathLibrary_FFloor64) == 0x000010, "Wrong size on KismetMathLibrary_FFloor64"); \ +static_assert(offsetof(KismetMathLibrary_FFloor64, A) == 0x000000, "Member 'KismetMathLibrary_FFloor64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FFloor64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FFloor64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FindClosestPointOnLine \ +static_assert(alignof(KismetMathLibrary_FindClosestPointOnLine) == 0x000008, "Wrong alignment on KismetMathLibrary_FindClosestPointOnLine"); \ +static_assert(sizeof(KismetMathLibrary_FindClosestPointOnLine) == 0x000060, "Wrong size on KismetMathLibrary_FindClosestPointOnLine"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnLine, Point) == 0x000000, "Member 'KismetMathLibrary_FindClosestPointOnLine::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnLine, LineOrigin) == 0x000018, "Member 'KismetMathLibrary_FindClosestPointOnLine::LineOrigin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnLine, LineDirection) == 0x000030, "Member 'KismetMathLibrary_FindClosestPointOnLine::LineDirection' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnLine, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_FindClosestPointOnLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FindClosestPointOnSegment \ +static_assert(alignof(KismetMathLibrary_FindClosestPointOnSegment) == 0x000008, "Wrong alignment on KismetMathLibrary_FindClosestPointOnSegment"); \ +static_assert(sizeof(KismetMathLibrary_FindClosestPointOnSegment) == 0x000060, "Wrong size on KismetMathLibrary_FindClosestPointOnSegment"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnSegment, Point) == 0x000000, "Member 'KismetMathLibrary_FindClosestPointOnSegment::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnSegment, SegmentStart) == 0x000018, "Member 'KismetMathLibrary_FindClosestPointOnSegment::SegmentStart' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnSegment, SegmentEnd) == 0x000030, "Member 'KismetMathLibrary_FindClosestPointOnSegment::SegmentEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindClosestPointOnSegment, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_FindClosestPointOnSegment::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FindLookAtRotation \ +static_assert(alignof(KismetMathLibrary_FindLookAtRotation) == 0x000008, "Wrong alignment on KismetMathLibrary_FindLookAtRotation"); \ +static_assert(sizeof(KismetMathLibrary_FindLookAtRotation) == 0x000048, "Wrong size on KismetMathLibrary_FindLookAtRotation"); \ +static_assert(offsetof(KismetMathLibrary_FindLookAtRotation, Start) == 0x000000, "Member 'KismetMathLibrary_FindLookAtRotation::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindLookAtRotation, Target) == 0x000018, "Member 'KismetMathLibrary_FindLookAtRotation::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindLookAtRotation, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_FindLookAtRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FindNearestPointsOnLineSegments \ +static_assert(alignof(KismetMathLibrary_FindNearestPointsOnLineSegments) == 0x000008, "Wrong alignment on KismetMathLibrary_FindNearestPointsOnLineSegments"); \ +static_assert(sizeof(KismetMathLibrary_FindNearestPointsOnLineSegments) == 0x000090, "Wrong size on KismetMathLibrary_FindNearestPointsOnLineSegments"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment1Start) == 0x000000, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment1Start' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment1End) == 0x000018, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment1End' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment2Start) == 0x000030, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment2Start' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment2End) == 0x000048, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment2End' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment1Point) == 0x000060, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment1Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindNearestPointsOnLineSegments, Segment2Point) == 0x000078, "Member 'KismetMathLibrary_FindNearestPointsOnLineSegments::Segment2Point' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FindRelativeLookAtRotation \ +static_assert(alignof(KismetMathLibrary_FindRelativeLookAtRotation) == 0x000010, "Wrong alignment on KismetMathLibrary_FindRelativeLookAtRotation"); \ +static_assert(sizeof(KismetMathLibrary_FindRelativeLookAtRotation) == 0x000090, "Wrong size on KismetMathLibrary_FindRelativeLookAtRotation"); \ +static_assert(offsetof(KismetMathLibrary_FindRelativeLookAtRotation, StartTransform) == 0x000000, "Member 'KismetMathLibrary_FindRelativeLookAtRotation::StartTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindRelativeLookAtRotation, TargetLocation) == 0x000060, "Member 'KismetMathLibrary_FindRelativeLookAtRotation::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FindRelativeLookAtRotation, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_FindRelativeLookAtRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FInterpEaseInOut \ +static_assert(alignof(KismetMathLibrary_FInterpEaseInOut) == 0x000008, "Wrong alignment on KismetMathLibrary_FInterpEaseInOut"); \ +static_assert(sizeof(KismetMathLibrary_FInterpEaseInOut) == 0x000028, "Wrong size on KismetMathLibrary_FInterpEaseInOut"); \ +static_assert(offsetof(KismetMathLibrary_FInterpEaseInOut, A) == 0x000000, "Member 'KismetMathLibrary_FInterpEaseInOut::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpEaseInOut, B) == 0x000008, "Member 'KismetMathLibrary_FInterpEaseInOut::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpEaseInOut, alpha) == 0x000010, "Member 'KismetMathLibrary_FInterpEaseInOut::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpEaseInOut, Exponent) == 0x000018, "Member 'KismetMathLibrary_FInterpEaseInOut::Exponent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpEaseInOut, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_FInterpEaseInOut::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FInterpTo \ +static_assert(alignof(KismetMathLibrary_FInterpTo) == 0x000008, "Wrong alignment on KismetMathLibrary_FInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_FInterpTo) == 0x000028, "Wrong size on KismetMathLibrary_FInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_FInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo, Target) == 0x000008, "Member 'KismetMathLibrary_FInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo, DeltaTime) == 0x000010, "Member 'KismetMathLibrary_FInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo, InterpSpeed) == 0x000018, "Member 'KismetMathLibrary_FInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_FInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FInterpTo_Constant \ +static_assert(alignof(KismetMathLibrary_FInterpTo_Constant) == 0x000008, "Wrong alignment on KismetMathLibrary_FInterpTo_Constant"); \ +static_assert(sizeof(KismetMathLibrary_FInterpTo_Constant) == 0x000028, "Wrong size on KismetMathLibrary_FInterpTo_Constant"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo_Constant, Current) == 0x000000, "Member 'KismetMathLibrary_FInterpTo_Constant::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo_Constant, Target) == 0x000008, "Member 'KismetMathLibrary_FInterpTo_Constant::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo_Constant, DeltaTime) == 0x000010, "Member 'KismetMathLibrary_FInterpTo_Constant::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo_Constant, InterpSpeed) == 0x000018, "Member 'KismetMathLibrary_FInterpTo_Constant::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FInterpTo_Constant, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_FInterpTo_Constant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FixedTurn \ +static_assert(alignof(KismetMathLibrary_FixedTurn) == 0x000004, "Wrong alignment on KismetMathLibrary_FixedTurn"); \ +static_assert(sizeof(KismetMathLibrary_FixedTurn) == 0x000010, "Wrong size on KismetMathLibrary_FixedTurn"); \ +static_assert(offsetof(KismetMathLibrary_FixedTurn, InCurrent) == 0x000000, "Member 'KismetMathLibrary_FixedTurn::InCurrent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FixedTurn, InDesired) == 0x000004, "Member 'KismetMathLibrary_FixedTurn::InDesired' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FixedTurn, InDeltaRate) == 0x000008, "Member 'KismetMathLibrary_FixedTurn::InDeltaRate' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FixedTurn, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_FixedTurn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FloatSpringInterp \ +static_assert(alignof(KismetMathLibrary_FloatSpringInterp) == 0x000004, "Wrong alignment on KismetMathLibrary_FloatSpringInterp"); \ +static_assert(sizeof(KismetMathLibrary_FloatSpringInterp) == 0x00003C, "Wrong size on KismetMathLibrary_FloatSpringInterp"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, Current) == 0x000000, "Member 'KismetMathLibrary_FloatSpringInterp::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, Target) == 0x000004, "Member 'KismetMathLibrary_FloatSpringInterp::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, SpringState) == 0x000008, "Member 'KismetMathLibrary_FloatSpringInterp::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, Stiffness) == 0x000014, "Member 'KismetMathLibrary_FloatSpringInterp::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, CriticalDampingFactor) == 0x000018, "Member 'KismetMathLibrary_FloatSpringInterp::CriticalDampingFactor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, DeltaTime) == 0x00001C, "Member 'KismetMathLibrary_FloatSpringInterp::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, MASS) == 0x000020, "Member 'KismetMathLibrary_FloatSpringInterp::MASS' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, TargetVelocityAmount) == 0x000024, "Member 'KismetMathLibrary_FloatSpringInterp::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, bClamp) == 0x000028, "Member 'KismetMathLibrary_FloatSpringInterp::bClamp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, MinValue) == 0x00002C, "Member 'KismetMathLibrary_FloatSpringInterp::MinValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, MaxValue) == 0x000030, "Member 'KismetMathLibrary_FloatSpringInterp::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, bInitializeFromTarget) == 0x000034, "Member 'KismetMathLibrary_FloatSpringInterp::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FloatSpringInterp, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_FloatSpringInterp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FMax \ +static_assert(alignof(KismetMathLibrary_FMax) == 0x000008, "Wrong alignment on KismetMathLibrary_FMax"); \ +static_assert(sizeof(KismetMathLibrary_FMax) == 0x000018, "Wrong size on KismetMathLibrary_FMax"); \ +static_assert(offsetof(KismetMathLibrary_FMax, A) == 0x000000, "Member 'KismetMathLibrary_FMax::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMax, B) == 0x000008, "Member 'KismetMathLibrary_FMax::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMax, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_FMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FMin \ +static_assert(alignof(KismetMathLibrary_FMin) == 0x000008, "Wrong alignment on KismetMathLibrary_FMin"); \ +static_assert(sizeof(KismetMathLibrary_FMin) == 0x000018, "Wrong size on KismetMathLibrary_FMin"); \ +static_assert(offsetof(KismetMathLibrary_FMin, A) == 0x000000, "Member 'KismetMathLibrary_FMin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMin, B) == 0x000008, "Member 'KismetMathLibrary_FMin::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMin, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_FMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FMod \ +static_assert(alignof(KismetMathLibrary_FMod) == 0x000008, "Wrong alignment on KismetMathLibrary_FMod"); \ +static_assert(sizeof(KismetMathLibrary_FMod) == 0x000020, "Wrong size on KismetMathLibrary_FMod"); \ +static_assert(offsetof(KismetMathLibrary_FMod, Dividend) == 0x000000, "Member 'KismetMathLibrary_FMod::Dividend' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod, Divisor) == 0x000008, "Member 'KismetMathLibrary_FMod::Divisor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod, Remainder) == 0x000010, "Member 'KismetMathLibrary_FMod::Remainder' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_FMod::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FMod64 \ +static_assert(alignof(KismetMathLibrary_FMod64) == 0x000008, "Wrong alignment on KismetMathLibrary_FMod64"); \ +static_assert(sizeof(KismetMathLibrary_FMod64) == 0x000020, "Wrong size on KismetMathLibrary_FMod64"); \ +static_assert(offsetof(KismetMathLibrary_FMod64, Dividend) == 0x000000, "Member 'KismetMathLibrary_FMod64::Dividend' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod64, Divisor) == 0x000008, "Member 'KismetMathLibrary_FMod64::Divisor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod64, Remainder) == 0x000010, "Member 'KismetMathLibrary_FMod64::Remainder' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FMod64, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_FMod64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Fraction \ +static_assert(alignof(KismetMathLibrary_Fraction) == 0x000008, "Wrong alignment on KismetMathLibrary_Fraction"); \ +static_assert(sizeof(KismetMathLibrary_Fraction) == 0x000010, "Wrong size on KismetMathLibrary_Fraction"); \ +static_assert(offsetof(KismetMathLibrary_Fraction, A) == 0x000000, "Member 'KismetMathLibrary_Fraction::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Fraction, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Fraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromDays \ +static_assert(alignof(KismetMathLibrary_FromDays) == 0x000008, "Wrong alignment on KismetMathLibrary_FromDays"); \ +static_assert(sizeof(KismetMathLibrary_FromDays) == 0x000010, "Wrong size on KismetMathLibrary_FromDays"); \ +static_assert(offsetof(KismetMathLibrary_FromDays, Days) == 0x000000, "Member 'KismetMathLibrary_FromDays::Days' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromDays, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromDays::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromHours \ +static_assert(alignof(KismetMathLibrary_FromHours) == 0x000008, "Wrong alignment on KismetMathLibrary_FromHours"); \ +static_assert(sizeof(KismetMathLibrary_FromHours) == 0x000010, "Wrong size on KismetMathLibrary_FromHours"); \ +static_assert(offsetof(KismetMathLibrary_FromHours, Hours) == 0x000000, "Member 'KismetMathLibrary_FromHours::Hours' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromHours, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromHours::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromMilliseconds \ +static_assert(alignof(KismetMathLibrary_FromMilliseconds) == 0x000008, "Wrong alignment on KismetMathLibrary_FromMilliseconds"); \ +static_assert(sizeof(KismetMathLibrary_FromMilliseconds) == 0x000010, "Wrong size on KismetMathLibrary_FromMilliseconds"); \ +static_assert(offsetof(KismetMathLibrary_FromMilliseconds, Milliseconds) == 0x000000, "Member 'KismetMathLibrary_FromMilliseconds::Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromMilliseconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromMinutes \ +static_assert(alignof(KismetMathLibrary_FromMinutes) == 0x000008, "Wrong alignment on KismetMathLibrary_FromMinutes"); \ +static_assert(sizeof(KismetMathLibrary_FromMinutes) == 0x000010, "Wrong size on KismetMathLibrary_FromMinutes"); \ +static_assert(offsetof(KismetMathLibrary_FromMinutes, Minutes) == 0x000000, "Member 'KismetMathLibrary_FromMinutes::Minutes' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromMinutes, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromMinutes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromSeconds \ +static_assert(alignof(KismetMathLibrary_FromSeconds) == 0x000008, "Wrong alignment on KismetMathLibrary_FromSeconds"); \ +static_assert(sizeof(KismetMathLibrary_FromSeconds) == 0x000010, "Wrong size on KismetMathLibrary_FromSeconds"); \ +static_assert(offsetof(KismetMathLibrary_FromSeconds, Seconds) == 0x000000, "Member 'KismetMathLibrary_FromSeconds::Seconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromSeconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FromUnixTimestamp \ +static_assert(alignof(KismetMathLibrary_FromUnixTimestamp) == 0x000008, "Wrong alignment on KismetMathLibrary_FromUnixTimestamp"); \ +static_assert(sizeof(KismetMathLibrary_FromUnixTimestamp) == 0x000010, "Wrong size on KismetMathLibrary_FromUnixTimestamp"); \ +static_assert(offsetof(KismetMathLibrary_FromUnixTimestamp, UnixTime) == 0x000000, "Member 'KismetMathLibrary_FromUnixTimestamp::UnixTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FromUnixTimestamp, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FromUnixTimestamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FTrunc \ +static_assert(alignof(KismetMathLibrary_FTrunc) == 0x000008, "Wrong alignment on KismetMathLibrary_FTrunc"); \ +static_assert(sizeof(KismetMathLibrary_FTrunc) == 0x000010, "Wrong size on KismetMathLibrary_FTrunc"); \ +static_assert(offsetof(KismetMathLibrary_FTrunc, A) == 0x000000, "Member 'KismetMathLibrary_FTrunc::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FTrunc, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FTrunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FTrunc64 \ +static_assert(alignof(KismetMathLibrary_FTrunc64) == 0x000008, "Wrong alignment on KismetMathLibrary_FTrunc64"); \ +static_assert(sizeof(KismetMathLibrary_FTrunc64) == 0x000010, "Wrong size on KismetMathLibrary_FTrunc64"); \ +static_assert(offsetof(KismetMathLibrary_FTrunc64, A) == 0x000000, "Member 'KismetMathLibrary_FTrunc64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FTrunc64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_FTrunc64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FTruncVector \ +static_assert(alignof(KismetMathLibrary_FTruncVector) == 0x000008, "Wrong alignment on KismetMathLibrary_FTruncVector"); \ +static_assert(sizeof(KismetMathLibrary_FTruncVector) == 0x000028, "Wrong size on KismetMathLibrary_FTruncVector"); \ +static_assert(offsetof(KismetMathLibrary_FTruncVector, InVector) == 0x000000, "Member 'KismetMathLibrary_FTruncVector::InVector' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FTruncVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_FTruncVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_FWrap \ +static_assert(alignof(KismetMathLibrary_FWrap) == 0x000008, "Wrong alignment on KismetMathLibrary_FWrap"); \ +static_assert(sizeof(KismetMathLibrary_FWrap) == 0x000020, "Wrong size on KismetMathLibrary_FWrap"); \ +static_assert(offsetof(KismetMathLibrary_FWrap, Value) == 0x000000, "Member 'KismetMathLibrary_FWrap::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FWrap, Min_0) == 0x000008, "Member 'KismetMathLibrary_FWrap::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FWrap, Max_0) == 0x000010, "Member 'KismetMathLibrary_FWrap::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_FWrap, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_FWrap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetAbs2D \ +static_assert(alignof(KismetMathLibrary_GetAbs2D) == 0x000008, "Wrong alignment on KismetMathLibrary_GetAbs2D"); \ +static_assert(sizeof(KismetMathLibrary_GetAbs2D) == 0x000020, "Wrong size on KismetMathLibrary_GetAbs2D"); \ +static_assert(offsetof(KismetMathLibrary_GetAbs2D, A) == 0x000000, "Member 'KismetMathLibrary_GetAbs2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAbs2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GetAbs2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetAbsMax2D \ +static_assert(alignof(KismetMathLibrary_GetAbsMax2D) == 0x000008, "Wrong alignment on KismetMathLibrary_GetAbsMax2D"); \ +static_assert(sizeof(KismetMathLibrary_GetAbsMax2D) == 0x000018, "Wrong size on KismetMathLibrary_GetAbsMax2D"); \ +static_assert(offsetof(KismetMathLibrary_GetAbsMax2D, A) == 0x000000, "Member 'KismetMathLibrary_GetAbsMax2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAbsMax2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GetAbsMax2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetAxes \ +static_assert(alignof(KismetMathLibrary_GetAxes) == 0x000008, "Wrong alignment on KismetMathLibrary_GetAxes"); \ +static_assert(sizeof(KismetMathLibrary_GetAxes) == 0x000060, "Wrong size on KismetMathLibrary_GetAxes"); \ +static_assert(offsetof(KismetMathLibrary_GetAxes, A) == 0x000000, "Member 'KismetMathLibrary_GetAxes::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAxes, X) == 0x000018, "Member 'KismetMathLibrary_GetAxes::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAxes, Y) == 0x000030, "Member 'KismetMathLibrary_GetAxes::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAxes, Z) == 0x000048, "Member 'KismetMathLibrary_GetAxes::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetAzimuthAndElevation \ +static_assert(alignof(KismetMathLibrary_GetAzimuthAndElevation) == 0x000010, "Wrong alignment on KismetMathLibrary_GetAzimuthAndElevation"); \ +static_assert(sizeof(KismetMathLibrary_GetAzimuthAndElevation) == 0x000090, "Wrong size on KismetMathLibrary_GetAzimuthAndElevation"); \ +static_assert(offsetof(KismetMathLibrary_GetAzimuthAndElevation, InDirection) == 0x000000, "Member 'KismetMathLibrary_GetAzimuthAndElevation::InDirection' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAzimuthAndElevation, ReferenceFrame) == 0x000020, "Member 'KismetMathLibrary_GetAzimuthAndElevation::ReferenceFrame' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAzimuthAndElevation, Azimuth) == 0x000080, "Member 'KismetMathLibrary_GetAzimuthAndElevation::Azimuth' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetAzimuthAndElevation, Elevation) == 0x000084, "Member 'KismetMathLibrary_GetAzimuthAndElevation::Elevation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDate \ +static_assert(alignof(KismetMathLibrary_GetDate) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDate"); \ +static_assert(sizeof(KismetMathLibrary_GetDate) == 0x000010, "Wrong size on KismetMathLibrary_GetDate"); \ +static_assert(offsetof(KismetMathLibrary_GetDate, A) == 0x000000, "Member 'KismetMathLibrary_GetDate::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDate, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetDate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDay \ +static_assert(alignof(KismetMathLibrary_GetDay) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDay"); \ +static_assert(sizeof(KismetMathLibrary_GetDay) == 0x000010, "Wrong size on KismetMathLibrary_GetDay"); \ +static_assert(offsetof(KismetMathLibrary_GetDay, A) == 0x000000, "Member 'KismetMathLibrary_GetDay::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDay, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetDay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDayOfYear \ +static_assert(alignof(KismetMathLibrary_GetDayOfYear) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDayOfYear"); \ +static_assert(sizeof(KismetMathLibrary_GetDayOfYear) == 0x000010, "Wrong size on KismetMathLibrary_GetDayOfYear"); \ +static_assert(offsetof(KismetMathLibrary_GetDayOfYear, A) == 0x000000, "Member 'KismetMathLibrary_GetDayOfYear::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDayOfYear, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetDayOfYear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDays \ +static_assert(alignof(KismetMathLibrary_GetDays) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDays"); \ +static_assert(sizeof(KismetMathLibrary_GetDays) == 0x000010, "Wrong size on KismetMathLibrary_GetDays"); \ +static_assert(offsetof(KismetMathLibrary_GetDays, A) == 0x000000, "Member 'KismetMathLibrary_GetDays::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDays, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetDays::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDirectionUnitVector \ +static_assert(alignof(KismetMathLibrary_GetDirectionUnitVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDirectionUnitVector"); \ +static_assert(sizeof(KismetMathLibrary_GetDirectionUnitVector) == 0x000048, "Wrong size on KismetMathLibrary_GetDirectionUnitVector"); \ +static_assert(offsetof(KismetMathLibrary_GetDirectionUnitVector, From) == 0x000000, "Member 'KismetMathLibrary_GetDirectionUnitVector::From' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDirectionUnitVector, To) == 0x000018, "Member 'KismetMathLibrary_GetDirectionUnitVector::To' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDirectionUnitVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_GetDirectionUnitVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetDuration \ +static_assert(alignof(KismetMathLibrary_GetDuration) == 0x000008, "Wrong alignment on KismetMathLibrary_GetDuration"); \ +static_assert(sizeof(KismetMathLibrary_GetDuration) == 0x000010, "Wrong size on KismetMathLibrary_GetDuration"); \ +static_assert(offsetof(KismetMathLibrary_GetDuration, A) == 0x000000, "Member 'KismetMathLibrary_GetDuration::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetDuration, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetForwardVector \ +static_assert(alignof(KismetMathLibrary_GetForwardVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetForwardVector"); \ +static_assert(sizeof(KismetMathLibrary_GetForwardVector) == 0x000030, "Wrong size on KismetMathLibrary_GetForwardVector"); \ +static_assert(offsetof(KismetMathLibrary_GetForwardVector, InRot) == 0x000000, "Member 'KismetMathLibrary_GetForwardVector::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetForwardVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetForwardVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetHour \ +static_assert(alignof(KismetMathLibrary_GetHour) == 0x000008, "Wrong alignment on KismetMathLibrary_GetHour"); \ +static_assert(sizeof(KismetMathLibrary_GetHour) == 0x000010, "Wrong size on KismetMathLibrary_GetHour"); \ +static_assert(offsetof(KismetMathLibrary_GetHour, A) == 0x000000, "Member 'KismetMathLibrary_GetHour::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetHour, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetHour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetHour12 \ +static_assert(alignof(KismetMathLibrary_GetHour12) == 0x000008, "Wrong alignment on KismetMathLibrary_GetHour12"); \ +static_assert(sizeof(KismetMathLibrary_GetHour12) == 0x000010, "Wrong size on KismetMathLibrary_GetHour12"); \ +static_assert(offsetof(KismetMathLibrary_GetHour12, A) == 0x000000, "Member 'KismetMathLibrary_GetHour12::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetHour12, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetHour12::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetHours \ +static_assert(alignof(KismetMathLibrary_GetHours) == 0x000008, "Wrong alignment on KismetMathLibrary_GetHours"); \ +static_assert(sizeof(KismetMathLibrary_GetHours) == 0x000010, "Wrong size on KismetMathLibrary_GetHours"); \ +static_assert(offsetof(KismetMathLibrary_GetHours, A) == 0x000000, "Member 'KismetMathLibrary_GetHours::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetHours, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetHours::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMax2D \ +static_assert(alignof(KismetMathLibrary_GetMax2D) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMax2D"); \ +static_assert(sizeof(KismetMathLibrary_GetMax2D) == 0x000018, "Wrong size on KismetMathLibrary_GetMax2D"); \ +static_assert(offsetof(KismetMathLibrary_GetMax2D, A) == 0x000000, "Member 'KismetMathLibrary_GetMax2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMax2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GetMax2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMaxElement \ +static_assert(alignof(KismetMathLibrary_GetMaxElement) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMaxElement"); \ +static_assert(sizeof(KismetMathLibrary_GetMaxElement) == 0x000020, "Wrong size on KismetMathLibrary_GetMaxElement"); \ +static_assert(offsetof(KismetMathLibrary_GetMaxElement, A) == 0x000000, "Member 'KismetMathLibrary_GetMaxElement::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMaxElement, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetMaxElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMillisecond \ +static_assert(alignof(KismetMathLibrary_GetMillisecond) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMillisecond"); \ +static_assert(sizeof(KismetMathLibrary_GetMillisecond) == 0x000010, "Wrong size on KismetMathLibrary_GetMillisecond"); \ +static_assert(offsetof(KismetMathLibrary_GetMillisecond, A) == 0x000000, "Member 'KismetMathLibrary_GetMillisecond::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMillisecond, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetMillisecond::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMilliseconds \ +static_assert(alignof(KismetMathLibrary_GetMilliseconds) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMilliseconds"); \ +static_assert(sizeof(KismetMathLibrary_GetMilliseconds) == 0x000010, "Wrong size on KismetMathLibrary_GetMilliseconds"); \ +static_assert(offsetof(KismetMathLibrary_GetMilliseconds, A) == 0x000000, "Member 'KismetMathLibrary_GetMilliseconds::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMilliseconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMin2D \ +static_assert(alignof(KismetMathLibrary_GetMin2D) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMin2D"); \ +static_assert(sizeof(KismetMathLibrary_GetMin2D) == 0x000018, "Wrong size on KismetMathLibrary_GetMin2D"); \ +static_assert(offsetof(KismetMathLibrary_GetMin2D, A) == 0x000000, "Member 'KismetMathLibrary_GetMin2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMin2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GetMin2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMinElement \ +static_assert(alignof(KismetMathLibrary_GetMinElement) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMinElement"); \ +static_assert(sizeof(KismetMathLibrary_GetMinElement) == 0x000020, "Wrong size on KismetMathLibrary_GetMinElement"); \ +static_assert(offsetof(KismetMathLibrary_GetMinElement, A) == 0x000000, "Member 'KismetMathLibrary_GetMinElement::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMinElement, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetMinElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMinute \ +static_assert(alignof(KismetMathLibrary_GetMinute) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMinute"); \ +static_assert(sizeof(KismetMathLibrary_GetMinute) == 0x000010, "Wrong size on KismetMathLibrary_GetMinute"); \ +static_assert(offsetof(KismetMathLibrary_GetMinute, A) == 0x000000, "Member 'KismetMathLibrary_GetMinute::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMinute, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetMinute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMinutes \ +static_assert(alignof(KismetMathLibrary_GetMinutes) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMinutes"); \ +static_assert(sizeof(KismetMathLibrary_GetMinutes) == 0x000010, "Wrong size on KismetMathLibrary_GetMinutes"); \ +static_assert(offsetof(KismetMathLibrary_GetMinutes, A) == 0x000000, "Member 'KismetMathLibrary_GetMinutes::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMinutes, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetMinutes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetMonth \ +static_assert(alignof(KismetMathLibrary_GetMonth) == 0x000008, "Wrong alignment on KismetMathLibrary_GetMonth"); \ +static_assert(sizeof(KismetMathLibrary_GetMonth) == 0x000010, "Wrong size on KismetMathLibrary_GetMonth"); \ +static_assert(offsetof(KismetMathLibrary_GetMonth, A) == 0x000000, "Member 'KismetMathLibrary_GetMonth::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetMonth, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetMonth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetPI \ +static_assert(alignof(KismetMathLibrary_GetPI) == 0x000008, "Wrong alignment on KismetMathLibrary_GetPI"); \ +static_assert(sizeof(KismetMathLibrary_GetPI) == 0x000008, "Wrong size on KismetMathLibrary_GetPI"); \ +static_assert(offsetof(KismetMathLibrary_GetPI, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_GetPI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetPointDistanceToLine \ +static_assert(alignof(KismetMathLibrary_GetPointDistanceToLine) == 0x000008, "Wrong alignment on KismetMathLibrary_GetPointDistanceToLine"); \ +static_assert(sizeof(KismetMathLibrary_GetPointDistanceToLine) == 0x000050, "Wrong size on KismetMathLibrary_GetPointDistanceToLine"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToLine, Point) == 0x000000, "Member 'KismetMathLibrary_GetPointDistanceToLine::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToLine, LineOrigin) == 0x000018, "Member 'KismetMathLibrary_GetPointDistanceToLine::LineOrigin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToLine, LineDirection) == 0x000030, "Member 'KismetMathLibrary_GetPointDistanceToLine::LineDirection' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToLine, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_GetPointDistanceToLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetPointDistanceToSegment \ +static_assert(alignof(KismetMathLibrary_GetPointDistanceToSegment) == 0x000008, "Wrong alignment on KismetMathLibrary_GetPointDistanceToSegment"); \ +static_assert(sizeof(KismetMathLibrary_GetPointDistanceToSegment) == 0x000050, "Wrong size on KismetMathLibrary_GetPointDistanceToSegment"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToSegment, Point) == 0x000000, "Member 'KismetMathLibrary_GetPointDistanceToSegment::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToSegment, SegmentStart) == 0x000018, "Member 'KismetMathLibrary_GetPointDistanceToSegment::SegmentStart' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToSegment, SegmentEnd) == 0x000030, "Member 'KismetMathLibrary_GetPointDistanceToSegment::SegmentEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetPointDistanceToSegment, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_GetPointDistanceToSegment::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetReflectionVector \ +static_assert(alignof(KismetMathLibrary_GetReflectionVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetReflectionVector"); \ +static_assert(sizeof(KismetMathLibrary_GetReflectionVector) == 0x000048, "Wrong size on KismetMathLibrary_GetReflectionVector"); \ +static_assert(offsetof(KismetMathLibrary_GetReflectionVector, Direction) == 0x000000, "Member 'KismetMathLibrary_GetReflectionVector::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetReflectionVector, SurfaceNormal) == 0x000018, "Member 'KismetMathLibrary_GetReflectionVector::SurfaceNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetReflectionVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_GetReflectionVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetRightVector \ +static_assert(alignof(KismetMathLibrary_GetRightVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetRightVector"); \ +static_assert(sizeof(KismetMathLibrary_GetRightVector) == 0x000030, "Wrong size on KismetMathLibrary_GetRightVector"); \ +static_assert(offsetof(KismetMathLibrary_GetRightVector, InRot) == 0x000000, "Member 'KismetMathLibrary_GetRightVector::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetRightVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetRightVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetRotated2D \ +static_assert(alignof(KismetMathLibrary_GetRotated2D) == 0x000008, "Wrong alignment on KismetMathLibrary_GetRotated2D"); \ +static_assert(sizeof(KismetMathLibrary_GetRotated2D) == 0x000028, "Wrong size on KismetMathLibrary_GetRotated2D"); \ +static_assert(offsetof(KismetMathLibrary_GetRotated2D, A) == 0x000000, "Member 'KismetMathLibrary_GetRotated2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetRotated2D, AngleDeg) == 0x000010, "Member 'KismetMathLibrary_GetRotated2D::AngleDeg' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetRotated2D, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetRotated2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetSecond \ +static_assert(alignof(KismetMathLibrary_GetSecond) == 0x000008, "Wrong alignment on KismetMathLibrary_GetSecond"); \ +static_assert(sizeof(KismetMathLibrary_GetSecond) == 0x000010, "Wrong size on KismetMathLibrary_GetSecond"); \ +static_assert(offsetof(KismetMathLibrary_GetSecond, A) == 0x000000, "Member 'KismetMathLibrary_GetSecond::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSecond, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetSecond::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetSeconds \ +static_assert(alignof(KismetMathLibrary_GetSeconds) == 0x000008, "Wrong alignment on KismetMathLibrary_GetSeconds"); \ +static_assert(sizeof(KismetMathLibrary_GetSeconds) == 0x000010, "Wrong size on KismetMathLibrary_GetSeconds"); \ +static_assert(offsetof(KismetMathLibrary_GetSeconds, A) == 0x000000, "Member 'KismetMathLibrary_GetSeconds::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSeconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetSlopeDegreeAngles \ +static_assert(alignof(KismetMathLibrary_GetSlopeDegreeAngles) == 0x000008, "Wrong alignment on KismetMathLibrary_GetSlopeDegreeAngles"); \ +static_assert(sizeof(KismetMathLibrary_GetSlopeDegreeAngles) == 0x000050, "Wrong size on KismetMathLibrary_GetSlopeDegreeAngles"); \ +static_assert(offsetof(KismetMathLibrary_GetSlopeDegreeAngles, MyRightYAxis) == 0x000000, "Member 'KismetMathLibrary_GetSlopeDegreeAngles::MyRightYAxis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSlopeDegreeAngles, FloorNormal) == 0x000018, "Member 'KismetMathLibrary_GetSlopeDegreeAngles::FloorNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSlopeDegreeAngles, UpVector) == 0x000030, "Member 'KismetMathLibrary_GetSlopeDegreeAngles::UpVector' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSlopeDegreeAngles, OutSlopePitchDegreeAngle) == 0x000048, "Member 'KismetMathLibrary_GetSlopeDegreeAngles::OutSlopePitchDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetSlopeDegreeAngles, OutSlopeRollDegreeAngle) == 0x00004C, "Member 'KismetMathLibrary_GetSlopeDegreeAngles::OutSlopeRollDegreeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTAU \ +static_assert(alignof(KismetMathLibrary_GetTAU) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTAU"); \ +static_assert(sizeof(KismetMathLibrary_GetTAU) == 0x000008, "Wrong size on KismetMathLibrary_GetTAU"); \ +static_assert(offsetof(KismetMathLibrary_GetTAU, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_GetTAU::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTimeOfDay \ +static_assert(alignof(KismetMathLibrary_GetTimeOfDay) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTimeOfDay"); \ +static_assert(sizeof(KismetMathLibrary_GetTimeOfDay) == 0x000010, "Wrong size on KismetMathLibrary_GetTimeOfDay"); \ +static_assert(offsetof(KismetMathLibrary_GetTimeOfDay, A) == 0x000000, "Member 'KismetMathLibrary_GetTimeOfDay::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTimeOfDay, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTimeOfDay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTotalDays \ +static_assert(alignof(KismetMathLibrary_GetTotalDays) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTotalDays"); \ +static_assert(sizeof(KismetMathLibrary_GetTotalDays) == 0x000010, "Wrong size on KismetMathLibrary_GetTotalDays"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalDays, A) == 0x000000, "Member 'KismetMathLibrary_GetTotalDays::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalDays, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTotalDays::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTotalHours \ +static_assert(alignof(KismetMathLibrary_GetTotalHours) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTotalHours"); \ +static_assert(sizeof(KismetMathLibrary_GetTotalHours) == 0x000010, "Wrong size on KismetMathLibrary_GetTotalHours"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalHours, A) == 0x000000, "Member 'KismetMathLibrary_GetTotalHours::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalHours, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTotalHours::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTotalMilliseconds \ +static_assert(alignof(KismetMathLibrary_GetTotalMilliseconds) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTotalMilliseconds"); \ +static_assert(sizeof(KismetMathLibrary_GetTotalMilliseconds) == 0x000010, "Wrong size on KismetMathLibrary_GetTotalMilliseconds"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalMilliseconds, A) == 0x000000, "Member 'KismetMathLibrary_GetTotalMilliseconds::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalMilliseconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTotalMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTotalMinutes \ +static_assert(alignof(KismetMathLibrary_GetTotalMinutes) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTotalMinutes"); \ +static_assert(sizeof(KismetMathLibrary_GetTotalMinutes) == 0x000010, "Wrong size on KismetMathLibrary_GetTotalMinutes"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalMinutes, A) == 0x000000, "Member 'KismetMathLibrary_GetTotalMinutes::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalMinutes, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTotalMinutes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetTotalSeconds \ +static_assert(alignof(KismetMathLibrary_GetTotalSeconds) == 0x000008, "Wrong alignment on KismetMathLibrary_GetTotalSeconds"); \ +static_assert(sizeof(KismetMathLibrary_GetTotalSeconds) == 0x000010, "Wrong size on KismetMathLibrary_GetTotalSeconds"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalSeconds, A) == 0x000000, "Member 'KismetMathLibrary_GetTotalSeconds::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetTotalSeconds, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetTotalSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetUpVector \ +static_assert(alignof(KismetMathLibrary_GetUpVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetUpVector"); \ +static_assert(sizeof(KismetMathLibrary_GetUpVector) == 0x000030, "Wrong size on KismetMathLibrary_GetUpVector"); \ +static_assert(offsetof(KismetMathLibrary_GetUpVector, InRot) == 0x000000, "Member 'KismetMathLibrary_GetUpVector::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetUpVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_GetUpVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetVectorArrayAverage \ +static_assert(alignof(KismetMathLibrary_GetVectorArrayAverage) == 0x000008, "Wrong alignment on KismetMathLibrary_GetVectorArrayAverage"); \ +static_assert(sizeof(KismetMathLibrary_GetVectorArrayAverage) == 0x000028, "Wrong size on KismetMathLibrary_GetVectorArrayAverage"); \ +static_assert(offsetof(KismetMathLibrary_GetVectorArrayAverage, Vectors) == 0x000000, "Member 'KismetMathLibrary_GetVectorArrayAverage::Vectors' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetVectorArrayAverage, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GetVectorArrayAverage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetYawPitchFromVector \ +static_assert(alignof(KismetMathLibrary_GetYawPitchFromVector) == 0x000008, "Wrong alignment on KismetMathLibrary_GetYawPitchFromVector"); \ +static_assert(sizeof(KismetMathLibrary_GetYawPitchFromVector) == 0x000020, "Wrong size on KismetMathLibrary_GetYawPitchFromVector"); \ +static_assert(offsetof(KismetMathLibrary_GetYawPitchFromVector, InVec) == 0x000000, "Member 'KismetMathLibrary_GetYawPitchFromVector::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetYawPitchFromVector, Yaw) == 0x000018, "Member 'KismetMathLibrary_GetYawPitchFromVector::Yaw' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetYawPitchFromVector, Pitch) == 0x00001C, "Member 'KismetMathLibrary_GetYawPitchFromVector::Pitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GetYear \ +static_assert(alignof(KismetMathLibrary_GetYear) == 0x000008, "Wrong alignment on KismetMathLibrary_GetYear"); \ +static_assert(sizeof(KismetMathLibrary_GetYear) == 0x000010, "Wrong size on KismetMathLibrary_GetYear"); \ +static_assert(offsetof(KismetMathLibrary_GetYear, A) == 0x000000, "Member 'KismetMathLibrary_GetYear::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GetYear, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GetYear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_ByteByte \ +static_assert(alignof(KismetMathLibrary_Greater_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Greater_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Greater_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Greater_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Greater_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Greater_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Greater_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Greater_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_Greater_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_Greater_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_Greater_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_Greater_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_Greater_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_Greater_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Greater_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Greater_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Greater_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Greater_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Greater_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Greater_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Greater_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Greater_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Greater_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Greater_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Greater_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Greater_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Greater_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Greater_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Greater_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Greater_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_IntInt \ +static_assert(alignof(KismetMathLibrary_Greater_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Greater_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Greater_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Greater_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Greater_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Greater_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Greater_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Greater_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Greater_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_Greater_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Greater_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Greater_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Greater_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Greater_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Greater_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Greater_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Greater_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Greater_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_ByteByte \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_GreaterEqual_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_GreaterEqual_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_GreaterEqual_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_GreaterEqual_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_GreaterEqual_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_GreaterEqual_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_GreaterEqual_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GreaterEqual_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_GreaterEqual_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_GreaterEqual_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_GreaterEqual_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GreaterEqual_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_GreaterEqual_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_GreaterEqual_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_GreaterEqual_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GreaterEqual_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_IntInt \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_GreaterEqual_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_GreaterEqual_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_GreaterEqual_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_GreaterEqual_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterEqual_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_GreaterEqual_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_GreaterEqual_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_GreaterEqual_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_GreaterEqual_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_GreaterEqual_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_GreaterEqual_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterEqual_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GreaterEqual_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GreaterGreater_VectorRotator \ +static_assert(alignof(KismetMathLibrary_GreaterGreater_VectorRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_GreaterGreater_VectorRotator"); \ +static_assert(sizeof(KismetMathLibrary_GreaterGreater_VectorRotator) == 0x000048, "Wrong size on KismetMathLibrary_GreaterGreater_VectorRotator"); \ +static_assert(offsetof(KismetMathLibrary_GreaterGreater_VectorRotator, A) == 0x000000, "Member 'KismetMathLibrary_GreaterGreater_VectorRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterGreater_VectorRotator, B) == 0x000018, "Member 'KismetMathLibrary_GreaterGreater_VectorRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GreaterGreater_VectorRotator, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_GreaterGreater_VectorRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_GridSnap_Float \ +static_assert(alignof(KismetMathLibrary_GridSnap_Float) == 0x000008, "Wrong alignment on KismetMathLibrary_GridSnap_Float"); \ +static_assert(sizeof(KismetMathLibrary_GridSnap_Float) == 0x000018, "Wrong size on KismetMathLibrary_GridSnap_Float"); \ +static_assert(offsetof(KismetMathLibrary_GridSnap_Float, Location) == 0x000000, "Member 'KismetMathLibrary_GridSnap_Float::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GridSnap_Float, GridSize) == 0x000008, "Member 'KismetMathLibrary_GridSnap_Float::GridSize' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_GridSnap_Float, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_GridSnap_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_HSVToRGB \ +static_assert(alignof(KismetMathLibrary_HSVToRGB) == 0x000004, "Wrong alignment on KismetMathLibrary_HSVToRGB"); \ +static_assert(sizeof(KismetMathLibrary_HSVToRGB) == 0x000020, "Wrong size on KismetMathLibrary_HSVToRGB"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB, H) == 0x000000, "Member 'KismetMathLibrary_HSVToRGB::H' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB, S) == 0x000004, "Member 'KismetMathLibrary_HSVToRGB::S' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB, V) == 0x000008, "Member 'KismetMathLibrary_HSVToRGB::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB, A) == 0x00000C, "Member 'KismetMathLibrary_HSVToRGB::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_HSVToRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_HSVToRGB_Vector \ +static_assert(alignof(KismetMathLibrary_HSVToRGB_Vector) == 0x000004, "Wrong alignment on KismetMathLibrary_HSVToRGB_Vector"); \ +static_assert(sizeof(KismetMathLibrary_HSVToRGB_Vector) == 0x000020, "Wrong size on KismetMathLibrary_HSVToRGB_Vector"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB_Vector, HSV) == 0x000000, "Member 'KismetMathLibrary_HSVToRGB_Vector::HSV' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGB_Vector, RGB) == 0x000010, "Member 'KismetMathLibrary_HSVToRGB_Vector::RGB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_HSVToRGBLinear \ +static_assert(alignof(KismetMathLibrary_HSVToRGBLinear) == 0x000004, "Wrong alignment on KismetMathLibrary_HSVToRGBLinear"); \ +static_assert(sizeof(KismetMathLibrary_HSVToRGBLinear) == 0x000020, "Wrong size on KismetMathLibrary_HSVToRGBLinear"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGBLinear, HSV) == 0x000000, "Member 'KismetMathLibrary_HSVToRGBLinear::HSV' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_HSVToRGBLinear, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_HSVToRGBLinear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Hypotenuse \ +static_assert(alignof(KismetMathLibrary_Hypotenuse) == 0x000008, "Wrong alignment on KismetMathLibrary_Hypotenuse"); \ +static_assert(sizeof(KismetMathLibrary_Hypotenuse) == 0x000018, "Wrong size on KismetMathLibrary_Hypotenuse"); \ +static_assert(offsetof(KismetMathLibrary_Hypotenuse, Width) == 0x000000, "Member 'KismetMathLibrary_Hypotenuse::Width' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Hypotenuse, Height) == 0x000008, "Member 'KismetMathLibrary_Hypotenuse::Height' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Hypotenuse, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Hypotenuse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InRange_FloatFloat \ +static_assert(alignof(KismetMathLibrary_InRange_FloatFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_InRange_FloatFloat"); \ +static_assert(sizeof(KismetMathLibrary_InRange_FloatFloat) == 0x000020, "Wrong size on KismetMathLibrary_InRange_FloatFloat"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, Value) == 0x000000, "Member 'KismetMathLibrary_InRange_FloatFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, Min_0) == 0x000008, "Member 'KismetMathLibrary_InRange_FloatFloat::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, Max_0) == 0x000010, "Member 'KismetMathLibrary_InRange_FloatFloat::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, InclusiveMin) == 0x000018, "Member 'KismetMathLibrary_InRange_FloatFloat::InclusiveMin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, InclusiveMax) == 0x000019, "Member 'KismetMathLibrary_InRange_FloatFloat::InclusiveMax' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_FloatFloat, ReturnValue) == 0x00001A, "Member 'KismetMathLibrary_InRange_FloatFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InRange_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_InRange_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_InRange_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_InRange_Int64Int64) == 0x000020, "Wrong size on KismetMathLibrary_InRange_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, Value) == 0x000000, "Member 'KismetMathLibrary_InRange_Int64Int64::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, Min_0) == 0x000008, "Member 'KismetMathLibrary_InRange_Int64Int64::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, Max_0) == 0x000010, "Member 'KismetMathLibrary_InRange_Int64Int64::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, InclusiveMin) == 0x000018, "Member 'KismetMathLibrary_InRange_Int64Int64::InclusiveMin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, InclusiveMax) == 0x000019, "Member 'KismetMathLibrary_InRange_Int64Int64::InclusiveMax' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_Int64Int64, ReturnValue) == 0x00001A, "Member 'KismetMathLibrary_InRange_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InRange_IntInt \ +static_assert(alignof(KismetMathLibrary_InRange_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_InRange_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_InRange_IntInt) == 0x000010, "Wrong size on KismetMathLibrary_InRange_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, Value) == 0x000000, "Member 'KismetMathLibrary_InRange_IntInt::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, Min_0) == 0x000004, "Member 'KismetMathLibrary_InRange_IntInt::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, Max_0) == 0x000008, "Member 'KismetMathLibrary_InRange_IntInt::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, InclusiveMin) == 0x00000C, "Member 'KismetMathLibrary_InRange_IntInt::InclusiveMin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, InclusiveMax) == 0x00000D, "Member 'KismetMathLibrary_InRange_IntInt::InclusiveMax' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InRange_IntInt, ReturnValue) == 0x00000E, "Member 'KismetMathLibrary_InRange_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_Down \ +static_assert(alignof(KismetMathLibrary_IntPoint_Down) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_Down"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_Down) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_Down"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_Down, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_Down::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_Left \ +static_assert(alignof(KismetMathLibrary_IntPoint_Left) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_Left"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_Left) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_Left"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_Left, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_Left::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_One \ +static_assert(alignof(KismetMathLibrary_IntPoint_One) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_One"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_One) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_One"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_One, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_One::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_Right \ +static_assert(alignof(KismetMathLibrary_IntPoint_Right) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_Right"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_Right) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_Right"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_Right, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_Right::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_Up \ +static_assert(alignof(KismetMathLibrary_IntPoint_Up) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_Up"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_Up) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_Up"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_Up, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_Up::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IntPoint_Zero \ +static_assert(alignof(KismetMathLibrary_IntPoint_Zero) == 0x000004, "Wrong alignment on KismetMathLibrary_IntPoint_Zero"); \ +static_assert(sizeof(KismetMathLibrary_IntPoint_Zero) == 0x000008, "Wrong size on KismetMathLibrary_IntPoint_Zero"); \ +static_assert(offsetof(KismetMathLibrary_IntPoint_Zero, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_IntPoint_Zero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InverseTransformDirection \ +static_assert(alignof(KismetMathLibrary_InverseTransformDirection) == 0x000010, "Wrong alignment on KismetMathLibrary_InverseTransformDirection"); \ +static_assert(sizeof(KismetMathLibrary_InverseTransformDirection) == 0x000090, "Wrong size on KismetMathLibrary_InverseTransformDirection"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformDirection, T) == 0x000000, "Member 'KismetMathLibrary_InverseTransformDirection::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformDirection, Direction) == 0x000060, "Member 'KismetMathLibrary_InverseTransformDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformDirection, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_InverseTransformDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InverseTransformLocation \ +static_assert(alignof(KismetMathLibrary_InverseTransformLocation) == 0x000010, "Wrong alignment on KismetMathLibrary_InverseTransformLocation"); \ +static_assert(sizeof(KismetMathLibrary_InverseTransformLocation) == 0x000090, "Wrong size on KismetMathLibrary_InverseTransformLocation"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformLocation, T) == 0x000000, "Member 'KismetMathLibrary_InverseTransformLocation::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformLocation, Location) == 0x000060, "Member 'KismetMathLibrary_InverseTransformLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformLocation, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_InverseTransformLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InverseTransformRotation \ +static_assert(alignof(KismetMathLibrary_InverseTransformRotation) == 0x000010, "Wrong alignment on KismetMathLibrary_InverseTransformRotation"); \ +static_assert(sizeof(KismetMathLibrary_InverseTransformRotation) == 0x000090, "Wrong size on KismetMathLibrary_InverseTransformRotation"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformRotation, T) == 0x000000, "Member 'KismetMathLibrary_InverseTransformRotation::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformRotation, Rotation) == 0x000060, "Member 'KismetMathLibrary_InverseTransformRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InverseTransformRotation, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_InverseTransformRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_InvertTransform \ +static_assert(alignof(KismetMathLibrary_InvertTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_InvertTransform"); \ +static_assert(sizeof(KismetMathLibrary_InvertTransform) == 0x0000C0, "Wrong size on KismetMathLibrary_InvertTransform"); \ +static_assert(offsetof(KismetMathLibrary_InvertTransform, T) == 0x000000, "Member 'KismetMathLibrary_InvertTransform::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_InvertTransform, ReturnValue) == 0x000060, "Member 'KismetMathLibrary_InvertTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsAfternoon \ +static_assert(alignof(KismetMathLibrary_IsAfternoon) == 0x000008, "Wrong alignment on KismetMathLibrary_IsAfternoon"); \ +static_assert(sizeof(KismetMathLibrary_IsAfternoon) == 0x000010, "Wrong size on KismetMathLibrary_IsAfternoon"); \ +static_assert(offsetof(KismetMathLibrary_IsAfternoon, A) == 0x000000, "Member 'KismetMathLibrary_IsAfternoon::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsAfternoon, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_IsAfternoon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsLeapYear \ +static_assert(alignof(KismetMathLibrary_IsLeapYear) == 0x000004, "Wrong alignment on KismetMathLibrary_IsLeapYear"); \ +static_assert(sizeof(KismetMathLibrary_IsLeapYear) == 0x000008, "Wrong size on KismetMathLibrary_IsLeapYear"); \ +static_assert(offsetof(KismetMathLibrary_IsLeapYear, Year) == 0x000000, "Member 'KismetMathLibrary_IsLeapYear::Year' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsLeapYear, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_IsLeapYear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsMorning \ +static_assert(alignof(KismetMathLibrary_IsMorning) == 0x000008, "Wrong alignment on KismetMathLibrary_IsMorning"); \ +static_assert(sizeof(KismetMathLibrary_IsMorning) == 0x000010, "Wrong size on KismetMathLibrary_IsMorning"); \ +static_assert(offsetof(KismetMathLibrary_IsMorning, A) == 0x000000, "Member 'KismetMathLibrary_IsMorning::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsMorning, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_IsMorning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsNearlyZero2D \ +static_assert(alignof(KismetMathLibrary_IsNearlyZero2D) == 0x000008, "Wrong alignment on KismetMathLibrary_IsNearlyZero2D"); \ +static_assert(sizeof(KismetMathLibrary_IsNearlyZero2D) == 0x000018, "Wrong size on KismetMathLibrary_IsNearlyZero2D"); \ +static_assert(offsetof(KismetMathLibrary_IsNearlyZero2D, A) == 0x000000, "Member 'KismetMathLibrary_IsNearlyZero2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsNearlyZero2D, Tolerance) == 0x000010, "Member 'KismetMathLibrary_IsNearlyZero2D::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsNearlyZero2D, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_IsNearlyZero2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsPointInBox \ +static_assert(alignof(KismetMathLibrary_IsPointInBox) == 0x000008, "Wrong alignment on KismetMathLibrary_IsPointInBox"); \ +static_assert(sizeof(KismetMathLibrary_IsPointInBox) == 0x000050, "Wrong size on KismetMathLibrary_IsPointInBox"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox, Point) == 0x000000, "Member 'KismetMathLibrary_IsPointInBox::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox, BoxOrigin) == 0x000018, "Member 'KismetMathLibrary_IsPointInBox::BoxOrigin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox, BoxExtent) == 0x000030, "Member 'KismetMathLibrary_IsPointInBox::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_IsPointInBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsPointInBox_Box \ +static_assert(alignof(KismetMathLibrary_IsPointInBox_Box) == 0x000008, "Wrong alignment on KismetMathLibrary_IsPointInBox_Box"); \ +static_assert(sizeof(KismetMathLibrary_IsPointInBox_Box) == 0x000058, "Wrong size on KismetMathLibrary_IsPointInBox_Box"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox_Box, Point) == 0x000000, "Member 'KismetMathLibrary_IsPointInBox_Box::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox_Box, Box) == 0x000018, "Member 'KismetMathLibrary_IsPointInBox_Box::Box' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBox_Box, ReturnValue) == 0x000050, "Member 'KismetMathLibrary_IsPointInBox_Box::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsPointInBoxWithTransform \ +static_assert(alignof(KismetMathLibrary_IsPointInBoxWithTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_IsPointInBoxWithTransform"); \ +static_assert(sizeof(KismetMathLibrary_IsPointInBoxWithTransform) == 0x0000A0, "Wrong size on KismetMathLibrary_IsPointInBoxWithTransform"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform, Point) == 0x000000, "Member 'KismetMathLibrary_IsPointInBoxWithTransform::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform, BoxWorldTransform) == 0x000020, "Member 'KismetMathLibrary_IsPointInBoxWithTransform::BoxWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform, BoxExtent) == 0x000080, "Member 'KismetMathLibrary_IsPointInBoxWithTransform::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform, ReturnValue) == 0x000098, "Member 'KismetMathLibrary_IsPointInBoxWithTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsPointInBoxWithTransform_Box \ +static_assert(alignof(KismetMathLibrary_IsPointInBoxWithTransform_Box) == 0x000010, "Wrong alignment on KismetMathLibrary_IsPointInBoxWithTransform_Box"); \ +static_assert(sizeof(KismetMathLibrary_IsPointInBoxWithTransform_Box) == 0x0000C0, "Wrong size on KismetMathLibrary_IsPointInBoxWithTransform_Box"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform_Box, Point) == 0x000000, "Member 'KismetMathLibrary_IsPointInBoxWithTransform_Box::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform_Box, BoxWorldTransform) == 0x000020, "Member 'KismetMathLibrary_IsPointInBoxWithTransform_Box::BoxWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform_Box, BoxExtent) == 0x000080, "Member 'KismetMathLibrary_IsPointInBoxWithTransform_Box::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsPointInBoxWithTransform_Box, ReturnValue) == 0x0000B8, "Member 'KismetMathLibrary_IsPointInBoxWithTransform_Box::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_IsZero2D \ +static_assert(alignof(KismetMathLibrary_IsZero2D) == 0x000008, "Wrong alignment on KismetMathLibrary_IsZero2D"); \ +static_assert(sizeof(KismetMathLibrary_IsZero2D) == 0x000018, "Wrong size on KismetMathLibrary_IsZero2D"); \ +static_assert(offsetof(KismetMathLibrary_IsZero2D, A) == 0x000000, "Member 'KismetMathLibrary_IsZero2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_IsZero2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_IsZero2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Lerp \ +static_assert(alignof(KismetMathLibrary_Lerp) == 0x000008, "Wrong alignment on KismetMathLibrary_Lerp"); \ +static_assert(sizeof(KismetMathLibrary_Lerp) == 0x000020, "Wrong size on KismetMathLibrary_Lerp"); \ +static_assert(offsetof(KismetMathLibrary_Lerp, A) == 0x000000, "Member 'KismetMathLibrary_Lerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Lerp, B) == 0x000008, "Member 'KismetMathLibrary_Lerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Lerp, alpha) == 0x000010, "Member 'KismetMathLibrary_Lerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Lerp, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Lerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_ByteByte \ +static_assert(alignof(KismetMathLibrary_Less_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Less_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Less_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Less_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Less_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Less_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Less_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Less_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_Less_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_Less_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_Less_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_Less_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_Less_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_Less_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_Less_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Less_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Less_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Less_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Less_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Less_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Less_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Less_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Less_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Less_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Less_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Less_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Less_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Less_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Less_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Less_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Less_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Less_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_IntInt \ +static_assert(alignof(KismetMathLibrary_Less_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Less_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Less_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Less_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Less_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Less_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Less_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Less_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Less_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_Less_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Less_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Less_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Less_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Less_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Less_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Less_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Less_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Less_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_ByteByte \ +static_assert(alignof(KismetMathLibrary_LessEqual_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_LessEqual_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_LessEqual_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_LessEqual_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_LessEqual_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_LessEqual_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_LessEqual_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_LessEqual_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_LessEqual_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LessEqual_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_LessEqual_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_LessEqual_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_LessEqual_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_LessEqual_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LessEqual_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_LessEqual_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_LessEqual_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_LessEqual_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_LessEqual_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LessEqual_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_IntInt \ +static_assert(alignof(KismetMathLibrary_LessEqual_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_LessEqual_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_LessEqual_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_LessEqual_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_LessEqual_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessEqual_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_LessEqual_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_LessEqual_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_LessEqual_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_LessEqual_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_LessEqual_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_LessEqual_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessEqual_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LessEqual_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LessLess_VectorRotator \ +static_assert(alignof(KismetMathLibrary_LessLess_VectorRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_LessLess_VectorRotator"); \ +static_assert(sizeof(KismetMathLibrary_LessLess_VectorRotator) == 0x000048, "Wrong size on KismetMathLibrary_LessLess_VectorRotator"); \ +static_assert(offsetof(KismetMathLibrary_LessLess_VectorRotator, A) == 0x000000, "Member 'KismetMathLibrary_LessLess_VectorRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessLess_VectorRotator, B) == 0x000018, "Member 'KismetMathLibrary_LessLess_VectorRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LessLess_VectorRotator, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_LessLess_VectorRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Black \ +static_assert(alignof(KismetMathLibrary_LinearColor_Black) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Black"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Black) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Black"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Black, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Black::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Blue \ +static_assert(alignof(KismetMathLibrary_LinearColor_Blue) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Blue"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Blue) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Blue"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Blue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Blue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Desaturated \ +static_assert(alignof(KismetMathLibrary_LinearColor_Desaturated) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Desaturated"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Desaturated) == 0x000024, "Wrong size on KismetMathLibrary_LinearColor_Desaturated"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Desaturated, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Desaturated::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Desaturated, InDesaturation) == 0x000010, "Member 'KismetMathLibrary_LinearColor_Desaturated::InDesaturation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Desaturated, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_LinearColor_Desaturated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Distance \ +static_assert(alignof(KismetMathLibrary_LinearColor_Distance) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Distance"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Distance) == 0x000024, "Wrong size on KismetMathLibrary_LinearColor_Distance"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Distance, C1) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Distance::C1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Distance, C2) == 0x000010, "Member 'KismetMathLibrary_LinearColor_Distance::C2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Distance, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_LinearColor_Distance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_GetLuminance \ +static_assert(alignof(KismetMathLibrary_LinearColor_GetLuminance) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_GetLuminance"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_GetLuminance) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_GetLuminance"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetLuminance, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_GetLuminance::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetLuminance, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_GetLuminance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_GetMax \ +static_assert(alignof(KismetMathLibrary_LinearColor_GetMax) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_GetMax"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_GetMax) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_GetMax"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetMax, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_GetMax::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetMax, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_GetMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_GetMin \ +static_assert(alignof(KismetMathLibrary_LinearColor_GetMin) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_GetMin"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_GetMin) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_GetMin"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetMin, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_GetMin::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_GetMin, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_GetMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Gray \ +static_assert(alignof(KismetMathLibrary_LinearColor_Gray) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Gray"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Gray) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Gray"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Gray, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Gray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Green \ +static_assert(alignof(KismetMathLibrary_LinearColor_Green) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Green"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Green) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Green"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Green, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Green::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_IsNearEqual \ +static_assert(alignof(KismetMathLibrary_LinearColor_IsNearEqual) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_IsNearEqual"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_IsNearEqual) == 0x000028, "Wrong size on KismetMathLibrary_LinearColor_IsNearEqual"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_IsNearEqual, A) == 0x000000, "Member 'KismetMathLibrary_LinearColor_IsNearEqual::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_IsNearEqual, B) == 0x000010, "Member 'KismetMathLibrary_LinearColor_IsNearEqual::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_IsNearEqual, Tolerance) == 0x000020, "Member 'KismetMathLibrary_LinearColor_IsNearEqual::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_IsNearEqual, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_LinearColor_IsNearEqual::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Quantize \ +static_assert(alignof(KismetMathLibrary_LinearColor_Quantize) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Quantize"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Quantize) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_Quantize"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Quantize, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Quantize::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Quantize, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_Quantize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_QuantizeRound \ +static_assert(alignof(KismetMathLibrary_LinearColor_QuantizeRound) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_QuantizeRound"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_QuantizeRound) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_QuantizeRound"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_QuantizeRound, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_QuantizeRound::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_QuantizeRound, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_QuantizeRound::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Red \ +static_assert(alignof(KismetMathLibrary_LinearColor_Red) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Red"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Red) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Red"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Red, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Red::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Set \ +static_assert(alignof(KismetMathLibrary_LinearColor_Set) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Set"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Set) == 0x000020, "Wrong size on KismetMathLibrary_LinearColor_Set"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Set, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Set::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Set, InColor) == 0x000010, "Member 'KismetMathLibrary_LinearColor_Set::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetFromHSV \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetFromHSV) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetFromHSV"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetFromHSV) == 0x000020, "Wrong size on KismetMathLibrary_LinearColor_SetFromHSV"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromHSV, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetFromHSV::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromHSV, H) == 0x000010, "Member 'KismetMathLibrary_LinearColor_SetFromHSV::H' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromHSV, S) == 0x000014, "Member 'KismetMathLibrary_LinearColor_SetFromHSV::S' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromHSV, V) == 0x000018, "Member 'KismetMathLibrary_LinearColor_SetFromHSV::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromHSV, A) == 0x00001C, "Member 'KismetMathLibrary_LinearColor_SetFromHSV::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetFromPow22 \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetFromPow22) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetFromPow22"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetFromPow22) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_SetFromPow22"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromPow22, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetFromPow22::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromPow22, InColor) == 0x000010, "Member 'KismetMathLibrary_LinearColor_SetFromPow22::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetFromSRGB \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetFromSRGB) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetFromSRGB"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetFromSRGB) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_SetFromSRGB"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromSRGB, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetFromSRGB::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetFromSRGB, InSRGB) == 0x000010, "Member 'KismetMathLibrary_LinearColor_SetFromSRGB::InSRGB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetRandomHue \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetRandomHue) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetRandomHue"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetRandomHue) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_SetRandomHue"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRandomHue, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetRandomHue::InOutColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetRGBA \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetRGBA) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetRGBA"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetRGBA) == 0x000020, "Wrong size on KismetMathLibrary_LinearColor_SetRGBA"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRGBA, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetRGBA::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRGBA, R) == 0x000010, "Member 'KismetMathLibrary_LinearColor_SetRGBA::R' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRGBA, G) == 0x000014, "Member 'KismetMathLibrary_LinearColor_SetRGBA::G' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRGBA, B) == 0x000018, "Member 'KismetMathLibrary_LinearColor_SetRGBA::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetRGBA, A) == 0x00001C, "Member 'KismetMathLibrary_LinearColor_SetRGBA::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_SetTemperature \ +static_assert(alignof(KismetMathLibrary_LinearColor_SetTemperature) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_SetTemperature"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_SetTemperature) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_SetTemperature"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetTemperature, InOutColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_SetTemperature::InOutColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_SetTemperature, InTemperature) == 0x000010, "Member 'KismetMathLibrary_LinearColor_SetTemperature::InTemperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_ToNewOpacity \ +static_assert(alignof(KismetMathLibrary_LinearColor_ToNewOpacity) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_ToNewOpacity"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_ToNewOpacity) == 0x000024, "Wrong size on KismetMathLibrary_LinearColor_ToNewOpacity"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_ToNewOpacity, InColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_ToNewOpacity::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_ToNewOpacity, InOpacity) == 0x000010, "Member 'KismetMathLibrary_LinearColor_ToNewOpacity::InOpacity' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_ToNewOpacity, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_LinearColor_ToNewOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_ToRGBE \ +static_assert(alignof(KismetMathLibrary_LinearColor_ToRGBE) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_ToRGBE"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_ToRGBE) == 0x000014, "Wrong size on KismetMathLibrary_LinearColor_ToRGBE"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_ToRGBE, InLinearColor) == 0x000000, "Member 'KismetMathLibrary_LinearColor_ToRGBE::InLinearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_ToRGBE, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_LinearColor_ToRGBE::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Transparent \ +static_assert(alignof(KismetMathLibrary_LinearColor_Transparent) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Transparent"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Transparent) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Transparent"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Transparent, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Transparent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_White \ +static_assert(alignof(KismetMathLibrary_LinearColor_White) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_White"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_White) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_White"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_White, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_White::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColor_Yellow \ +static_assert(alignof(KismetMathLibrary_LinearColor_Yellow) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColor_Yellow"); \ +static_assert(sizeof(KismetMathLibrary_LinearColor_Yellow) == 0x000010, "Wrong size on KismetMathLibrary_LinearColor_Yellow"); \ +static_assert(offsetof(KismetMathLibrary_LinearColor_Yellow, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_LinearColor_Yellow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColorLerp \ +static_assert(alignof(KismetMathLibrary_LinearColorLerp) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColorLerp"); \ +static_assert(sizeof(KismetMathLibrary_LinearColorLerp) == 0x000034, "Wrong size on KismetMathLibrary_LinearColorLerp"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerp, A) == 0x000000, "Member 'KismetMathLibrary_LinearColorLerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerp, B) == 0x000010, "Member 'KismetMathLibrary_LinearColorLerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerp, alpha) == 0x000020, "Member 'KismetMathLibrary_LinearColorLerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerp, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_LinearColorLerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinearColorLerpUsingHSV \ +static_assert(alignof(KismetMathLibrary_LinearColorLerpUsingHSV) == 0x000004, "Wrong alignment on KismetMathLibrary_LinearColorLerpUsingHSV"); \ +static_assert(sizeof(KismetMathLibrary_LinearColorLerpUsingHSV) == 0x000034, "Wrong size on KismetMathLibrary_LinearColorLerpUsingHSV"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerpUsingHSV, A) == 0x000000, "Member 'KismetMathLibrary_LinearColorLerpUsingHSV::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerpUsingHSV, B) == 0x000010, "Member 'KismetMathLibrary_LinearColorLerpUsingHSV::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerpUsingHSV, alpha) == 0x000020, "Member 'KismetMathLibrary_LinearColorLerpUsingHSV::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinearColorLerpUsingHSV, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_LinearColorLerpUsingHSV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinePlaneIntersection \ +static_assert(alignof(KismetMathLibrary_LinePlaneIntersection) == 0x000010, "Wrong alignment on KismetMathLibrary_LinePlaneIntersection"); \ +static_assert(sizeof(KismetMathLibrary_LinePlaneIntersection) == 0x000080, "Wrong size on KismetMathLibrary_LinePlaneIntersection"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, LineStart) == 0x000000, "Member 'KismetMathLibrary_LinePlaneIntersection::LineStart' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, LineEnd) == 0x000018, "Member 'KismetMathLibrary_LinePlaneIntersection::LineEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, APlane) == 0x000030, "Member 'KismetMathLibrary_LinePlaneIntersection::APlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, T) == 0x000050, "Member 'KismetMathLibrary_LinePlaneIntersection::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, Intersection) == 0x000058, "Member 'KismetMathLibrary_LinePlaneIntersection::Intersection' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection, ReturnValue) == 0x000070, "Member 'KismetMathLibrary_LinePlaneIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_LinePlaneIntersection_OriginNormal \ +static_assert(alignof(KismetMathLibrary_LinePlaneIntersection_OriginNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_LinePlaneIntersection_OriginNormal"); \ +static_assert(sizeof(KismetMathLibrary_LinePlaneIntersection_OriginNormal) == 0x000088, "Wrong size on KismetMathLibrary_LinePlaneIntersection_OriginNormal"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, LineStart) == 0x000000, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::LineStart' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, LineEnd) == 0x000018, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::LineEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, PlaneOrigin) == 0x000030, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::PlaneOrigin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, PlaneNormal) == 0x000048, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, T) == 0x000060, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, Intersection) == 0x000068, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::Intersection' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_LinePlaneIntersection_OriginNormal, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_LinePlaneIntersection_OriginNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Log \ +static_assert(alignof(KismetMathLibrary_Log) == 0x000008, "Wrong alignment on KismetMathLibrary_Log"); \ +static_assert(sizeof(KismetMathLibrary_Log) == 0x000018, "Wrong size on KismetMathLibrary_Log"); \ +static_assert(offsetof(KismetMathLibrary_Log, A) == 0x000000, "Member 'KismetMathLibrary_Log::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Log, base) == 0x000008, "Member 'KismetMathLibrary_Log::base' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Log, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Log::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Loge \ +static_assert(alignof(KismetMathLibrary_Loge) == 0x000008, "Wrong alignment on KismetMathLibrary_Loge"); \ +static_assert(sizeof(KismetMathLibrary_Loge) == 0x000010, "Wrong size on KismetMathLibrary_Loge"); \ +static_assert(offsetof(KismetMathLibrary_Loge, A) == 0x000000, "Member 'KismetMathLibrary_Loge::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Loge, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Loge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeBox \ +static_assert(alignof(KismetMathLibrary_MakeBox) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeBox"); \ +static_assert(sizeof(KismetMathLibrary_MakeBox) == 0x000068, "Wrong size on KismetMathLibrary_MakeBox"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox, Min_0) == 0x000000, "Member 'KismetMathLibrary_MakeBox::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox, Max_0) == 0x000018, "Member 'KismetMathLibrary_MakeBox::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeBox2D \ +static_assert(alignof(KismetMathLibrary_MakeBox2D) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeBox2D"); \ +static_assert(sizeof(KismetMathLibrary_MakeBox2D) == 0x000048, "Wrong size on KismetMathLibrary_MakeBox2D"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox2D, Min_0) == 0x000000, "Member 'KismetMathLibrary_MakeBox2D::Min_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox2D, Max_0) == 0x000010, "Member 'KismetMathLibrary_MakeBox2D::Max_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBox2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_MakeBox2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeBoxSphereBounds \ +static_assert(alignof(KismetMathLibrary_MakeBoxSphereBounds) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeBoxSphereBounds"); \ +static_assert(sizeof(KismetMathLibrary_MakeBoxSphereBounds) == 0x000070, "Wrong size on KismetMathLibrary_MakeBoxSphereBounds"); \ +static_assert(offsetof(KismetMathLibrary_MakeBoxSphereBounds, Origin) == 0x000000, "Member 'KismetMathLibrary_MakeBoxSphereBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBoxSphereBounds, BoxExtent) == 0x000018, "Member 'KismetMathLibrary_MakeBoxSphereBounds::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBoxSphereBounds, SphereRadius) == 0x000030, "Member 'KismetMathLibrary_MakeBoxSphereBounds::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeBoxSphereBounds, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_MakeBoxSphereBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeColor \ +static_assert(alignof(KismetMathLibrary_MakeColor) == 0x000004, "Wrong alignment on KismetMathLibrary_MakeColor"); \ +static_assert(sizeof(KismetMathLibrary_MakeColor) == 0x000020, "Wrong size on KismetMathLibrary_MakeColor"); \ +static_assert(offsetof(KismetMathLibrary_MakeColor, R) == 0x000000, "Member 'KismetMathLibrary_MakeColor::R' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeColor, G) == 0x000004, "Member 'KismetMathLibrary_MakeColor::G' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeColor, B) == 0x000008, "Member 'KismetMathLibrary_MakeColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeColor, A) == 0x00000C, "Member 'KismetMathLibrary_MakeColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeColor, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MakeColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeDateTime \ +static_assert(alignof(KismetMathLibrary_MakeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_MakeDateTime) == 0x000028, "Wrong size on KismetMathLibrary_MakeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Year) == 0x000000, "Member 'KismetMathLibrary_MakeDateTime::Year' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Month) == 0x000004, "Member 'KismetMathLibrary_MakeDateTime::Month' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Day) == 0x000008, "Member 'KismetMathLibrary_MakeDateTime::Day' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Hour) == 0x00000C, "Member 'KismetMathLibrary_MakeDateTime::Hour' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Minute) == 0x000010, "Member 'KismetMathLibrary_MakeDateTime::Minute' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Second) == 0x000014, "Member 'KismetMathLibrary_MakeDateTime::Second' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, Millisecond) == 0x000018, "Member 'KismetMathLibrary_MakeDateTime::Millisecond' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeDateTime, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_MakeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeFrameRate \ +static_assert(alignof(KismetMathLibrary_MakeFrameRate) == 0x000004, "Wrong alignment on KismetMathLibrary_MakeFrameRate"); \ +static_assert(sizeof(KismetMathLibrary_MakeFrameRate) == 0x000010, "Wrong size on KismetMathLibrary_MakeFrameRate"); \ +static_assert(offsetof(KismetMathLibrary_MakeFrameRate, Numerator) == 0x000000, "Member 'KismetMathLibrary_MakeFrameRate::Numerator' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeFrameRate, Denominator) == 0x000004, "Member 'KismetMathLibrary_MakeFrameRate::Denominator' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeFrameRate, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_MakeFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakePlaneFromPointAndNormal \ +static_assert(alignof(KismetMathLibrary_MakePlaneFromPointAndNormal) == 0x000010, "Wrong alignment on KismetMathLibrary_MakePlaneFromPointAndNormal"); \ +static_assert(sizeof(KismetMathLibrary_MakePlaneFromPointAndNormal) == 0x000050, "Wrong size on KismetMathLibrary_MakePlaneFromPointAndNormal"); \ +static_assert(offsetof(KismetMathLibrary_MakePlaneFromPointAndNormal, Point) == 0x000000, "Member 'KismetMathLibrary_MakePlaneFromPointAndNormal::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakePlaneFromPointAndNormal, Normal_0) == 0x000018, "Member 'KismetMathLibrary_MakePlaneFromPointAndNormal::Normal_0' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakePlaneFromPointAndNormal, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakePlaneFromPointAndNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakePulsatingValue \ +static_assert(alignof(KismetMathLibrary_MakePulsatingValue) == 0x000004, "Wrong alignment on KismetMathLibrary_MakePulsatingValue"); \ +static_assert(sizeof(KismetMathLibrary_MakePulsatingValue) == 0x000010, "Wrong size on KismetMathLibrary_MakePulsatingValue"); \ +static_assert(offsetof(KismetMathLibrary_MakePulsatingValue, InCurrentTime) == 0x000000, "Member 'KismetMathLibrary_MakePulsatingValue::InCurrentTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakePulsatingValue, InPulsesPerSecond) == 0x000004, "Member 'KismetMathLibrary_MakePulsatingValue::InPulsesPerSecond' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakePulsatingValue, InPhase) == 0x000008, "Member 'KismetMathLibrary_MakePulsatingValue::InPhase' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakePulsatingValue, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_MakePulsatingValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeQualifiedFrameTime \ +static_assert(alignof(KismetMathLibrary_MakeQualifiedFrameTime) == 0x000004, "Wrong alignment on KismetMathLibrary_MakeQualifiedFrameTime"); \ +static_assert(sizeof(KismetMathLibrary_MakeQualifiedFrameTime) == 0x000020, "Wrong size on KismetMathLibrary_MakeQualifiedFrameTime"); \ +static_assert(offsetof(KismetMathLibrary_MakeQualifiedFrameTime, Frame) == 0x000000, "Member 'KismetMathLibrary_MakeQualifiedFrameTime::Frame' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQualifiedFrameTime, FrameRate) == 0x000004, "Member 'KismetMathLibrary_MakeQualifiedFrameTime::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQualifiedFrameTime, SubFrame) == 0x00000C, "Member 'KismetMathLibrary_MakeQualifiedFrameTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQualifiedFrameTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MakeQualifiedFrameTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeQuat \ +static_assert(alignof(KismetMathLibrary_MakeQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_MakeQuat"); \ +static_assert(sizeof(KismetMathLibrary_MakeQuat) == 0x000030, "Wrong size on KismetMathLibrary_MakeQuat"); \ +static_assert(offsetof(KismetMathLibrary_MakeQuat, X) == 0x000000, "Member 'KismetMathLibrary_MakeQuat::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQuat, Y) == 0x000004, "Member 'KismetMathLibrary_MakeQuat::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQuat, Z) == 0x000008, "Member 'KismetMathLibrary_MakeQuat::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQuat, W) == 0x00000C, "Member 'KismetMathLibrary_MakeQuat::W' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeQuat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MakeQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRandomStream \ +static_assert(alignof(KismetMathLibrary_MakeRandomStream) == 0x000004, "Wrong alignment on KismetMathLibrary_MakeRandomStream"); \ +static_assert(sizeof(KismetMathLibrary_MakeRandomStream) == 0x00000C, "Wrong size on KismetMathLibrary_MakeRandomStream"); \ +static_assert(offsetof(KismetMathLibrary_MakeRandomStream, InitialSeed) == 0x000000, "Member 'KismetMathLibrary_MakeRandomStream::InitialSeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRandomStream, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_MakeRandomStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRelativeTransform \ +static_assert(alignof(KismetMathLibrary_MakeRelativeTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_MakeRelativeTransform"); \ +static_assert(sizeof(KismetMathLibrary_MakeRelativeTransform) == 0x000120, "Wrong size on KismetMathLibrary_MakeRelativeTransform"); \ +static_assert(offsetof(KismetMathLibrary_MakeRelativeTransform, A) == 0x000000, "Member 'KismetMathLibrary_MakeRelativeTransform::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRelativeTransform, RelativeTo) == 0x000060, "Member 'KismetMathLibrary_MakeRelativeTransform::RelativeTo' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRelativeTransform, ReturnValue) == 0x0000C0, "Member 'KismetMathLibrary_MakeRelativeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotationFromAxes \ +static_assert(alignof(KismetMathLibrary_MakeRotationFromAxes) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotationFromAxes"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotationFromAxes) == 0x000060, "Wrong size on KismetMathLibrary_MakeRotationFromAxes"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotationFromAxes, Forward) == 0x000000, "Member 'KismetMathLibrary_MakeRotationFromAxes::Forward' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotationFromAxes, Right) == 0x000018, "Member 'KismetMathLibrary_MakeRotationFromAxes::Right' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotationFromAxes, Up) == 0x000030, "Member 'KismetMathLibrary_MakeRotationFromAxes::Up' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotationFromAxes, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_MakeRotationFromAxes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotator \ +static_assert(alignof(KismetMathLibrary_MakeRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotator"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotator) == 0x000028, "Wrong size on KismetMathLibrary_MakeRotator"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotator, Roll) == 0x000000, "Member 'KismetMathLibrary_MakeRotator::Roll' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotator, Pitch) == 0x000004, "Member 'KismetMathLibrary_MakeRotator::Pitch' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotator, Yaw) == 0x000008, "Member 'KismetMathLibrary_MakeRotator::Yaw' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotator, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MakeRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromX \ +static_assert(alignof(KismetMathLibrary_MakeRotFromX) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromX"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromX) == 0x000030, "Wrong size on KismetMathLibrary_MakeRotFromX"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromX, X) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromX::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromX, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromXY \ +static_assert(alignof(KismetMathLibrary_MakeRotFromXY) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromXY"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromXY) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromXY"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXY, X) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromXY::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXY, Y) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromXY::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXY, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromXY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromXZ \ +static_assert(alignof(KismetMathLibrary_MakeRotFromXZ) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromXZ"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromXZ) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromXZ"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXZ, X) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromXZ::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXZ, Z) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromXZ::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromXZ, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromXZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromY \ +static_assert(alignof(KismetMathLibrary_MakeRotFromY) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromY"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromY) == 0x000030, "Wrong size on KismetMathLibrary_MakeRotFromY"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromY, Y) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromY::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromY, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromYX \ +static_assert(alignof(KismetMathLibrary_MakeRotFromYX) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromYX"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromYX) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromYX"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYX, Y) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromYX::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYX, X) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromYX::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYX, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromYX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromYZ \ +static_assert(alignof(KismetMathLibrary_MakeRotFromYZ) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromYZ"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromYZ) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromYZ"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYZ, Y) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromYZ::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYZ, Z) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromYZ::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromYZ, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromYZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromZ \ +static_assert(alignof(KismetMathLibrary_MakeRotFromZ) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromZ"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromZ) == 0x000030, "Wrong size on KismetMathLibrary_MakeRotFromZ"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZ, Z) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromZ::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZ, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromZX \ +static_assert(alignof(KismetMathLibrary_MakeRotFromZX) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromZX"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromZX) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromZX"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZX, Z) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromZX::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZX, X) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromZX::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZX, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromZX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeRotFromZY \ +static_assert(alignof(KismetMathLibrary_MakeRotFromZY) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeRotFromZY"); \ +static_assert(sizeof(KismetMathLibrary_MakeRotFromZY) == 0x000048, "Wrong size on KismetMathLibrary_MakeRotFromZY"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZY, Z) == 0x000000, "Member 'KismetMathLibrary_MakeRotFromZY::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZY, Y) == 0x000018, "Member 'KismetMathLibrary_MakeRotFromZY::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeRotFromZY, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MakeRotFromZY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeTimespan \ +static_assert(alignof(KismetMathLibrary_MakeTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeTimespan"); \ +static_assert(sizeof(KismetMathLibrary_MakeTimespan) == 0x000020, "Wrong size on KismetMathLibrary_MakeTimespan"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, Days) == 0x000000, "Member 'KismetMathLibrary_MakeTimespan::Days' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, Hours) == 0x000004, "Member 'KismetMathLibrary_MakeTimespan::Hours' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, Minutes) == 0x000008, "Member 'KismetMathLibrary_MakeTimespan::Minutes' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, Seconds) == 0x00000C, "Member 'KismetMathLibrary_MakeTimespan::Seconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, Milliseconds) == 0x000010, "Member 'KismetMathLibrary_MakeTimespan::Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeTimespan2 \ +static_assert(alignof(KismetMathLibrary_MakeTimespan2) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeTimespan2"); \ +static_assert(sizeof(KismetMathLibrary_MakeTimespan2) == 0x000020, "Wrong size on KismetMathLibrary_MakeTimespan2"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, Days) == 0x000000, "Member 'KismetMathLibrary_MakeTimespan2::Days' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, Hours) == 0x000004, "Member 'KismetMathLibrary_MakeTimespan2::Hours' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, Minutes) == 0x000008, "Member 'KismetMathLibrary_MakeTimespan2::Minutes' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, Seconds) == 0x00000C, "Member 'KismetMathLibrary_MakeTimespan2::Seconds' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, FractionNano) == 0x000010, "Member 'KismetMathLibrary_MakeTimespan2::FractionNano' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTimespan2, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeTimespan2::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeTransform \ +static_assert(alignof(KismetMathLibrary_MakeTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_MakeTransform"); \ +static_assert(sizeof(KismetMathLibrary_MakeTransform) == 0x0000B0, "Wrong size on KismetMathLibrary_MakeTransform"); \ +static_assert(offsetof(KismetMathLibrary_MakeTransform, Location) == 0x000000, "Member 'KismetMathLibrary_MakeTransform::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTransform, Rotation) == 0x000018, "Member 'KismetMathLibrary_MakeTransform::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTransform, Scale) == 0x000030, "Member 'KismetMathLibrary_MakeTransform::Scale' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeTransform, ReturnValue) == 0x000050, "Member 'KismetMathLibrary_MakeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector \ +static_assert(alignof(KismetMathLibrary_MakeVector) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector) == 0x000030, "Wrong size on KismetMathLibrary_MakeVector"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector2D \ +static_assert(alignof(KismetMathLibrary_MakeVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector2D"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector2D) == 0x000020, "Wrong size on KismetMathLibrary_MakeVector2D"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector2D, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector2D::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector2D, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector2D::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MakeVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector4 \ +static_assert(alignof(KismetMathLibrary_MakeVector4) == 0x000010, "Wrong alignment on KismetMathLibrary_MakeVector4"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector4) == 0x000040, "Wrong size on KismetMathLibrary_MakeVector4"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector4, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector4::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector4, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector4, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector4, W) == 0x000018, "Member 'KismetMathLibrary_MakeVector4::W' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector4, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_MakeVector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector_NetQuantize \ +static_assert(alignof(KismetMathLibrary_MakeVector_NetQuantize) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector_NetQuantize"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector_NetQuantize) == 0x000030, "Wrong size on KismetMathLibrary_MakeVector_NetQuantize"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector_NetQuantize::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector_NetQuantize::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector_NetQuantize::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeVector_NetQuantize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector_NetQuantize10 \ +static_assert(alignof(KismetMathLibrary_MakeVector_NetQuantize10) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector_NetQuantize10"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector_NetQuantize10) == 0x000030, "Wrong size on KismetMathLibrary_MakeVector_NetQuantize10"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize10, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector_NetQuantize10::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize10, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector_NetQuantize10::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize10, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector_NetQuantize10::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize10, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeVector_NetQuantize10::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector_NetQuantize100 \ +static_assert(alignof(KismetMathLibrary_MakeVector_NetQuantize100) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector_NetQuantize100"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector_NetQuantize100) == 0x000030, "Wrong size on KismetMathLibrary_MakeVector_NetQuantize100"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize100, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector_NetQuantize100::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize100, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector_NetQuantize100::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize100, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector_NetQuantize100::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantize100, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeVector_NetQuantize100::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MakeVector_NetQuantizeNormal \ +static_assert(alignof(KismetMathLibrary_MakeVector_NetQuantizeNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_MakeVector_NetQuantizeNormal"); \ +static_assert(sizeof(KismetMathLibrary_MakeVector_NetQuantizeNormal) == 0x000030, "Wrong size on KismetMathLibrary_MakeVector_NetQuantizeNormal"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantizeNormal, X) == 0x000000, "Member 'KismetMathLibrary_MakeVector_NetQuantizeNormal::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantizeNormal, Y) == 0x000008, "Member 'KismetMathLibrary_MakeVector_NetQuantizeNormal::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantizeNormal, Z) == 0x000010, "Member 'KismetMathLibrary_MakeVector_NetQuantizeNormal::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MakeVector_NetQuantizeNormal, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_MakeVector_NetQuantizeNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MapRangeClamped \ +static_assert(alignof(KismetMathLibrary_MapRangeClamped) == 0x000008, "Wrong alignment on KismetMathLibrary_MapRangeClamped"); \ +static_assert(sizeof(KismetMathLibrary_MapRangeClamped) == 0x000030, "Wrong size on KismetMathLibrary_MapRangeClamped"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, Value) == 0x000000, "Member 'KismetMathLibrary_MapRangeClamped::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, InRangeA) == 0x000008, "Member 'KismetMathLibrary_MapRangeClamped::InRangeA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, InRangeB) == 0x000010, "Member 'KismetMathLibrary_MapRangeClamped::InRangeB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, OutRangeA) == 0x000018, "Member 'KismetMathLibrary_MapRangeClamped::OutRangeA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, OutRangeB) == 0x000020, "Member 'KismetMathLibrary_MapRangeClamped::OutRangeB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeClamped, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_MapRangeClamped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MapRangeUnclamped \ +static_assert(alignof(KismetMathLibrary_MapRangeUnclamped) == 0x000008, "Wrong alignment on KismetMathLibrary_MapRangeUnclamped"); \ +static_assert(sizeof(KismetMathLibrary_MapRangeUnclamped) == 0x000030, "Wrong size on KismetMathLibrary_MapRangeUnclamped"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, Value) == 0x000000, "Member 'KismetMathLibrary_MapRangeUnclamped::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, InRangeA) == 0x000008, "Member 'KismetMathLibrary_MapRangeUnclamped::InRangeA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, InRangeB) == 0x000010, "Member 'KismetMathLibrary_MapRangeUnclamped::InRangeB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, OutRangeA) == 0x000018, "Member 'KismetMathLibrary_MapRangeUnclamped::OutRangeA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, OutRangeB) == 0x000020, "Member 'KismetMathLibrary_MapRangeUnclamped::OutRangeB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MapRangeUnclamped, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_MapRangeUnclamped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_ApplyScale \ +static_assert(alignof(KismetMathLibrary_Matrix_ApplyScale) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_ApplyScale"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_ApplyScale) == 0x000110, "Wrong size on KismetMathLibrary_Matrix_ApplyScale"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ApplyScale, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_ApplyScale::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ApplyScale, Scale) == 0x000080, "Member 'KismetMathLibrary_Matrix_ApplyScale::Scale' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ApplyScale, ReturnValue) == 0x000090, "Member 'KismetMathLibrary_Matrix_ApplyScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_ConcatenateTranslation \ +static_assert(alignof(KismetMathLibrary_Matrix_ConcatenateTranslation) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_ConcatenateTranslation"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_ConcatenateTranslation) == 0x000120, "Wrong size on KismetMathLibrary_Matrix_ConcatenateTranslation"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ConcatenateTranslation, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_ConcatenateTranslation::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ConcatenateTranslation, Translation) == 0x000080, "Member 'KismetMathLibrary_Matrix_ConcatenateTranslation::Translation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ConcatenateTranslation, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_ConcatenateTranslation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_ContainsNaN \ +static_assert(alignof(KismetMathLibrary_Matrix_ContainsNaN) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_ContainsNaN"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_ContainsNaN) == 0x000090, "Wrong size on KismetMathLibrary_Matrix_ContainsNaN"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ContainsNaN, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_ContainsNaN::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ContainsNaN, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_ContainsNaN::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetColumn \ +static_assert(alignof(KismetMathLibrary_Matrix_GetColumn) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetColumn"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetColumn) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetColumn"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetColumn, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetColumn::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetColumn, Column) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetColumn::Column' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetColumn, ReturnValue) == 0x000088, "Member 'KismetMathLibrary_Matrix_GetColumn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetDeterminant \ +static_assert(alignof(KismetMathLibrary_Matrix_GetDeterminant) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetDeterminant"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetDeterminant) == 0x000090, "Wrong size on KismetMathLibrary_Matrix_GetDeterminant"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetDeterminant, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetDeterminant::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetDeterminant, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetDeterminant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumBottomPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumBottomPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumBottomPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumBottomPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumBottomPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumBottomPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumBottomPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumBottomPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumBottomPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumBottomPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumBottomPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumFarPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumFarPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumFarPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumFarPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumFarPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumFarPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumFarPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumFarPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumFarPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumFarPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumFarPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumLeftPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumLeftPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumLeftPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumLeftPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumLeftPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumLeftPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumLeftPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumLeftPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumLeftPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumLeftPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumLeftPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumNearPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumNearPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumNearPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumNearPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumNearPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumNearPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumNearPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumNearPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumNearPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumNearPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumNearPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumRightPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumRightPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumRightPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumRightPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumRightPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumRightPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumRightPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumRightPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumRightPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumRightPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumRightPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetFrustumTopPlane \ +static_assert(alignof(KismetMathLibrary_Matrix_GetFrustumTopPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetFrustumTopPlane"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetFrustumTopPlane) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_GetFrustumTopPlane"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumTopPlane, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetFrustumTopPlane::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumTopPlane, OutPlane) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetFrustumTopPlane::OutPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetFrustumTopPlane, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_GetFrustumTopPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetInverse \ +static_assert(alignof(KismetMathLibrary_Matrix_GetInverse) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetInverse"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetInverse) == 0x000100, "Wrong size on KismetMathLibrary_Matrix_GetInverse"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetInverse, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetInverse::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetInverse, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetInverse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetMatrixWithoutScale \ +static_assert(alignof(KismetMathLibrary_Matrix_GetMatrixWithoutScale) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetMatrixWithoutScale"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetMatrixWithoutScale) == 0x000110, "Wrong size on KismetMathLibrary_Matrix_GetMatrixWithoutScale"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetMatrixWithoutScale, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetMatrixWithoutScale::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetMatrixWithoutScale, Tolerance) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetMatrixWithoutScale::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetMatrixWithoutScale, ReturnValue) == 0x000090, "Member 'KismetMathLibrary_Matrix_GetMatrixWithoutScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetMaximumAxisScale \ +static_assert(alignof(KismetMathLibrary_Matrix_GetMaximumAxisScale) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetMaximumAxisScale"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetMaximumAxisScale) == 0x000090, "Wrong size on KismetMathLibrary_Matrix_GetMaximumAxisScale"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetMaximumAxisScale, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetMaximumAxisScale::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetMaximumAxisScale, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetMaximumAxisScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetOrigin \ +static_assert(alignof(KismetMathLibrary_Matrix_GetOrigin) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetOrigin"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetOrigin) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetOrigin"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetOrigin, InMatrix) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetOrigin::InMatrix' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetOrigin, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetRotator \ +static_assert(alignof(KismetMathLibrary_Matrix_GetRotator) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetRotator"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetRotator) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetRotator"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetRotator, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetRotator::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetRotator, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetRotDeterminant \ +static_assert(alignof(KismetMathLibrary_Matrix_GetRotDeterminant) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetRotDeterminant"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetRotDeterminant) == 0x000090, "Wrong size on KismetMathLibrary_Matrix_GetRotDeterminant"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetRotDeterminant, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetRotDeterminant::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetRotDeterminant, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetRotDeterminant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetScaledAxes \ +static_assert(alignof(KismetMathLibrary_Matrix_GetScaledAxes) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetScaledAxes"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetScaledAxes) == 0x0000D0, "Wrong size on KismetMathLibrary_Matrix_GetScaledAxes"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxes, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetScaledAxes::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxes, X) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetScaledAxes::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxes, Y) == 0x000098, "Member 'KismetMathLibrary_Matrix_GetScaledAxes::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxes, Z) == 0x0000B0, "Member 'KismetMathLibrary_Matrix_GetScaledAxes::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetScaledAxis \ +static_assert(alignof(KismetMathLibrary_Matrix_GetScaledAxis) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetScaledAxis"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetScaledAxis) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetScaledAxis"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxis, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetScaledAxis::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxis, Axis) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetScaledAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaledAxis, ReturnValue) == 0x000088, "Member 'KismetMathLibrary_Matrix_GetScaledAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetScaleVector \ +static_assert(alignof(KismetMathLibrary_Matrix_GetScaleVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetScaleVector"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetScaleVector) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetScaleVector"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaleVector, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetScaleVector::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaleVector, Tolerance) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetScaleVector::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetScaleVector, ReturnValue) == 0x000088, "Member 'KismetMathLibrary_Matrix_GetScaleVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetTransposeAdjoint \ +static_assert(alignof(KismetMathLibrary_Matrix_GetTransposeAdjoint) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetTransposeAdjoint"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetTransposeAdjoint) == 0x000100, "Wrong size on KismetMathLibrary_Matrix_GetTransposeAdjoint"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetTransposeAdjoint, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetTransposeAdjoint::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetTransposeAdjoint, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetTransposeAdjoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetTransposed \ +static_assert(alignof(KismetMathLibrary_Matrix_GetTransposed) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetTransposed"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetTransposed) == 0x000100, "Wrong size on KismetMathLibrary_Matrix_GetTransposed"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetTransposed, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetTransposed::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetTransposed, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetTransposed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetUnitAxes \ +static_assert(alignof(KismetMathLibrary_Matrix_GetUnitAxes) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetUnitAxes"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetUnitAxes) == 0x0000D0, "Wrong size on KismetMathLibrary_Matrix_GetUnitAxes"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxes, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetUnitAxes::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxes, X) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetUnitAxes::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxes, Y) == 0x000098, "Member 'KismetMathLibrary_Matrix_GetUnitAxes::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxes, Z) == 0x0000B0, "Member 'KismetMathLibrary_Matrix_GetUnitAxes::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_GetUnitAxis \ +static_assert(alignof(KismetMathLibrary_Matrix_GetUnitAxis) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_GetUnitAxis"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_GetUnitAxis) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_GetUnitAxis"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxis, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_GetUnitAxis::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxis, Axis) == 0x000080, "Member 'KismetMathLibrary_Matrix_GetUnitAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_GetUnitAxis, ReturnValue) == 0x000088, "Member 'KismetMathLibrary_Matrix_GetUnitAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_Identity \ +static_assert(alignof(KismetMathLibrary_Matrix_Identity) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_Identity"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_Identity) == 0x000080, "Wrong size on KismetMathLibrary_Matrix_Identity"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_Identity, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Matrix_Identity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_InverseTransformPosition \ +static_assert(alignof(KismetMathLibrary_Matrix_InverseTransformPosition) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_InverseTransformPosition"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_InverseTransformPosition) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_InverseTransformPosition"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformPosition, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_InverseTransformPosition::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformPosition, V) == 0x000080, "Member 'KismetMathLibrary_Matrix_InverseTransformPosition::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformPosition, ReturnValue) == 0x000098, "Member 'KismetMathLibrary_Matrix_InverseTransformPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_InverseTransformVector \ +static_assert(alignof(KismetMathLibrary_Matrix_InverseTransformVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_InverseTransformVector"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_InverseTransformVector) == 0x0000B0, "Wrong size on KismetMathLibrary_Matrix_InverseTransformVector"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformVector, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_InverseTransformVector::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformVector, V) == 0x000080, "Member 'KismetMathLibrary_Matrix_InverseTransformVector::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_InverseTransformVector, ReturnValue) == 0x000098, "Member 'KismetMathLibrary_Matrix_InverseTransformVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_Mirror \ +static_assert(alignof(KismetMathLibrary_Matrix_Mirror) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_Mirror"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_Mirror) == 0x000110, "Wrong size on KismetMathLibrary_Matrix_Mirror"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_Mirror, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_Mirror::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_Mirror, MirrorAxis) == 0x000080, "Member 'KismetMathLibrary_Matrix_Mirror::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_Mirror, FlipAxis) == 0x000081, "Member 'KismetMathLibrary_Matrix_Mirror::FlipAxis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_Mirror, ReturnValue) == 0x000090, "Member 'KismetMathLibrary_Matrix_Mirror::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_RemoveScaling \ +static_assert(alignof(KismetMathLibrary_Matrix_RemoveScaling) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_RemoveScaling"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_RemoveScaling) == 0x000090, "Wrong size on KismetMathLibrary_Matrix_RemoveScaling"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_RemoveScaling, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_RemoveScaling::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_RemoveScaling, Tolerance) == 0x000080, "Member 'KismetMathLibrary_Matrix_RemoveScaling::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_RemoveTranslation \ +static_assert(alignof(KismetMathLibrary_Matrix_RemoveTranslation) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_RemoveTranslation"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_RemoveTranslation) == 0x000100, "Wrong size on KismetMathLibrary_Matrix_RemoveTranslation"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_RemoveTranslation, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_RemoveTranslation::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_RemoveTranslation, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_RemoveTranslation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_ScaleTranslation \ +static_assert(alignof(KismetMathLibrary_Matrix_ScaleTranslation) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_ScaleTranslation"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_ScaleTranslation) == 0x000120, "Wrong size on KismetMathLibrary_Matrix_ScaleTranslation"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ScaleTranslation, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_ScaleTranslation::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ScaleTranslation, Scale3D) == 0x000080, "Member 'KismetMathLibrary_Matrix_ScaleTranslation::Scale3D' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ScaleTranslation, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_ScaleTranslation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_SetAxis \ +static_assert(alignof(KismetMathLibrary_Matrix_SetAxis) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_SetAxis"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_SetAxis) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_SetAxis"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetAxis, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_SetAxis::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetAxis, Axis) == 0x000080, "Member 'KismetMathLibrary_Matrix_SetAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetAxis, AxisVector) == 0x000088, "Member 'KismetMathLibrary_Matrix_SetAxis::AxisVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_SetColumn \ +static_assert(alignof(KismetMathLibrary_Matrix_SetColumn) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_SetColumn"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_SetColumn) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_SetColumn"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetColumn, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_SetColumn::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetColumn, Column) == 0x000080, "Member 'KismetMathLibrary_Matrix_SetColumn::Column' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetColumn, Value) == 0x000088, "Member 'KismetMathLibrary_Matrix_SetColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_SetOrigin \ +static_assert(alignof(KismetMathLibrary_Matrix_SetOrigin) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_SetOrigin"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_SetOrigin) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_SetOrigin"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetOrigin, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_SetOrigin::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_SetOrigin, NewOrigin) == 0x000080, "Member 'KismetMathLibrary_Matrix_SetOrigin::NewOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_ToQuat \ +static_assert(alignof(KismetMathLibrary_Matrix_ToQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_ToQuat"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_ToQuat) == 0x0000A0, "Wrong size on KismetMathLibrary_Matrix_ToQuat"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ToQuat, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_ToQuat::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_ToQuat, ReturnValue) == 0x000080, "Member 'KismetMathLibrary_Matrix_ToQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_TransformPosition \ +static_assert(alignof(KismetMathLibrary_Matrix_TransformPosition) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_TransformPosition"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_TransformPosition) == 0x0000C0, "Wrong size on KismetMathLibrary_Matrix_TransformPosition"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformPosition, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_TransformPosition::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformPosition, V) == 0x000080, "Member 'KismetMathLibrary_Matrix_TransformPosition::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformPosition, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_TransformPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_TransformVector \ +static_assert(alignof(KismetMathLibrary_Matrix_TransformVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_TransformVector"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_TransformVector) == 0x0000C0, "Wrong size on KismetMathLibrary_Matrix_TransformVector"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_TransformVector::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector, V) == 0x000080, "Member 'KismetMathLibrary_Matrix_TransformVector::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_TransformVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Matrix_TransformVector4 \ +static_assert(alignof(KismetMathLibrary_Matrix_TransformVector4) == 0x000010, "Wrong alignment on KismetMathLibrary_Matrix_TransformVector4"); \ +static_assert(sizeof(KismetMathLibrary_Matrix_TransformVector4) == 0x0000C0, "Wrong size on KismetMathLibrary_Matrix_TransformVector4"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector4, M) == 0x000000, "Member 'KismetMathLibrary_Matrix_TransformVector4::M' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector4, V) == 0x000080, "Member 'KismetMathLibrary_Matrix_TransformVector4::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Matrix_TransformVector4, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_Matrix_TransformVector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Max \ +static_assert(alignof(KismetMathLibrary_Max) == 0x000004, "Wrong alignment on KismetMathLibrary_Max"); \ +static_assert(sizeof(KismetMathLibrary_Max) == 0x00000C, "Wrong size on KismetMathLibrary_Max"); \ +static_assert(offsetof(KismetMathLibrary_Max, A) == 0x000000, "Member 'KismetMathLibrary_Max::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Max, B) == 0x000004, "Member 'KismetMathLibrary_Max::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Max, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Max::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MaxInt64 \ +static_assert(alignof(KismetMathLibrary_MaxInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_MaxInt64"); \ +static_assert(sizeof(KismetMathLibrary_MaxInt64) == 0x000018, "Wrong size on KismetMathLibrary_MaxInt64"); \ +static_assert(offsetof(KismetMathLibrary_MaxInt64, A) == 0x000000, "Member 'KismetMathLibrary_MaxInt64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxInt64, B) == 0x000008, "Member 'KismetMathLibrary_MaxInt64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxInt64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MaxInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MaxOfByteArray \ +static_assert(alignof(KismetMathLibrary_MaxOfByteArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MaxOfByteArray"); \ +static_assert(sizeof(KismetMathLibrary_MaxOfByteArray) == 0x000018, "Wrong size on KismetMathLibrary_MaxOfByteArray"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfByteArray, ByteArray) == 0x000000, "Member 'KismetMathLibrary_MaxOfByteArray::ByteArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfByteArray, IndexOfMaxValue) == 0x000010, "Member 'KismetMathLibrary_MaxOfByteArray::IndexOfMaxValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfByteArray, MaxValue) == 0x000014, "Member 'KismetMathLibrary_MaxOfByteArray::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MaxOfFloatArray \ +static_assert(alignof(KismetMathLibrary_MaxOfFloatArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MaxOfFloatArray"); \ +static_assert(sizeof(KismetMathLibrary_MaxOfFloatArray) == 0x000018, "Wrong size on KismetMathLibrary_MaxOfFloatArray"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfFloatArray, FloatArray) == 0x000000, "Member 'KismetMathLibrary_MaxOfFloatArray::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfFloatArray, IndexOfMaxValue) == 0x000010, "Member 'KismetMathLibrary_MaxOfFloatArray::IndexOfMaxValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfFloatArray, MaxValue) == 0x000014, "Member 'KismetMathLibrary_MaxOfFloatArray::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MaxOfIntArray \ +static_assert(alignof(KismetMathLibrary_MaxOfIntArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MaxOfIntArray"); \ +static_assert(sizeof(KismetMathLibrary_MaxOfIntArray) == 0x000018, "Wrong size on KismetMathLibrary_MaxOfIntArray"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfIntArray, IntArray) == 0x000000, "Member 'KismetMathLibrary_MaxOfIntArray::IntArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfIntArray, IndexOfMaxValue) == 0x000010, "Member 'KismetMathLibrary_MaxOfIntArray::IndexOfMaxValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MaxOfIntArray, MaxValue) == 0x000014, "Member 'KismetMathLibrary_MaxOfIntArray::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MedianOfIntArray \ +static_assert(alignof(KismetMathLibrary_MedianOfIntArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MedianOfIntArray"); \ +static_assert(sizeof(KismetMathLibrary_MedianOfIntArray) == 0x000018, "Wrong size on KismetMathLibrary_MedianOfIntArray"); \ +static_assert(offsetof(KismetMathLibrary_MedianOfIntArray, IntArray) == 0x000000, "Member 'KismetMathLibrary_MedianOfIntArray::IntArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MedianOfIntArray, MedianValue) == 0x000010, "Member 'KismetMathLibrary_MedianOfIntArray::MedianValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Min \ +static_assert(alignof(KismetMathLibrary_Min) == 0x000004, "Wrong alignment on KismetMathLibrary_Min"); \ +static_assert(sizeof(KismetMathLibrary_Min) == 0x00000C, "Wrong size on KismetMathLibrary_Min"); \ +static_assert(offsetof(KismetMathLibrary_Min, A) == 0x000000, "Member 'KismetMathLibrary_Min::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Min, B) == 0x000004, "Member 'KismetMathLibrary_Min::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Min, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Min::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinAreaRectangle \ +static_assert(alignof(KismetMathLibrary_MinAreaRectangle) == 0x000008, "Wrong alignment on KismetMathLibrary_MinAreaRectangle"); \ +static_assert(sizeof(KismetMathLibrary_MinAreaRectangle) == 0x000070, "Wrong size on KismetMathLibrary_MinAreaRectangle"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, WorldContextObject) == 0x000000, "Member 'KismetMathLibrary_MinAreaRectangle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, InPoints) == 0x000008, "Member 'KismetMathLibrary_MinAreaRectangle::InPoints' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, SampleSurfaceNormal) == 0x000018, "Member 'KismetMathLibrary_MinAreaRectangle::SampleSurfaceNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, OutRectCenter) == 0x000030, "Member 'KismetMathLibrary_MinAreaRectangle::OutRectCenter' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, OutRectRotation) == 0x000048, "Member 'KismetMathLibrary_MinAreaRectangle::OutRectRotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, OutRectLengthX) == 0x000060, "Member 'KismetMathLibrary_MinAreaRectangle::OutRectLengthX' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, OutRectLengthY) == 0x000064, "Member 'KismetMathLibrary_MinAreaRectangle::OutRectLengthY' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinAreaRectangle, bDebugDraw) == 0x000068, "Member 'KismetMathLibrary_MinAreaRectangle::bDebugDraw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinimumAreaRectangle \ +static_assert(alignof(KismetMathLibrary_MinimumAreaRectangle) == 0x000008, "Wrong alignment on KismetMathLibrary_MinimumAreaRectangle"); \ +static_assert(sizeof(KismetMathLibrary_MinimumAreaRectangle) == 0x000070, "Wrong size on KismetMathLibrary_MinimumAreaRectangle"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, WorldContextObject) == 0x000000, "Member 'KismetMathLibrary_MinimumAreaRectangle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, InVerts) == 0x000008, "Member 'KismetMathLibrary_MinimumAreaRectangle::InVerts' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, SampleSurfaceNormal) == 0x000018, "Member 'KismetMathLibrary_MinimumAreaRectangle::SampleSurfaceNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, OutRectCenter) == 0x000030, "Member 'KismetMathLibrary_MinimumAreaRectangle::OutRectCenter' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, OutRectRotation) == 0x000048, "Member 'KismetMathLibrary_MinimumAreaRectangle::OutRectRotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, OutSideLengthX) == 0x000060, "Member 'KismetMathLibrary_MinimumAreaRectangle::OutSideLengthX' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, OutSideLengthY) == 0x000064, "Member 'KismetMathLibrary_MinimumAreaRectangle::OutSideLengthY' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinimumAreaRectangle, bDebugDraw) == 0x000068, "Member 'KismetMathLibrary_MinimumAreaRectangle::bDebugDraw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinInt64 \ +static_assert(alignof(KismetMathLibrary_MinInt64) == 0x000008, "Wrong alignment on KismetMathLibrary_MinInt64"); \ +static_assert(sizeof(KismetMathLibrary_MinInt64) == 0x000018, "Wrong size on KismetMathLibrary_MinInt64"); \ +static_assert(offsetof(KismetMathLibrary_MinInt64, A) == 0x000000, "Member 'KismetMathLibrary_MinInt64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinInt64, B) == 0x000008, "Member 'KismetMathLibrary_MinInt64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinInt64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MinInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinOfByteArray \ +static_assert(alignof(KismetMathLibrary_MinOfByteArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MinOfByteArray"); \ +static_assert(sizeof(KismetMathLibrary_MinOfByteArray) == 0x000018, "Wrong size on KismetMathLibrary_MinOfByteArray"); \ +static_assert(offsetof(KismetMathLibrary_MinOfByteArray, ByteArray) == 0x000000, "Member 'KismetMathLibrary_MinOfByteArray::ByteArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfByteArray, IndexOfMinValue) == 0x000010, "Member 'KismetMathLibrary_MinOfByteArray::IndexOfMinValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfByteArray, MinValue) == 0x000014, "Member 'KismetMathLibrary_MinOfByteArray::MinValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinOfFloatArray \ +static_assert(alignof(KismetMathLibrary_MinOfFloatArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MinOfFloatArray"); \ +static_assert(sizeof(KismetMathLibrary_MinOfFloatArray) == 0x000018, "Wrong size on KismetMathLibrary_MinOfFloatArray"); \ +static_assert(offsetof(KismetMathLibrary_MinOfFloatArray, FloatArray) == 0x000000, "Member 'KismetMathLibrary_MinOfFloatArray::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfFloatArray, IndexOfMinValue) == 0x000010, "Member 'KismetMathLibrary_MinOfFloatArray::IndexOfMinValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfFloatArray, MinValue) == 0x000014, "Member 'KismetMathLibrary_MinOfFloatArray::MinValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MinOfIntArray \ +static_assert(alignof(KismetMathLibrary_MinOfIntArray) == 0x000008, "Wrong alignment on KismetMathLibrary_MinOfIntArray"); \ +static_assert(sizeof(KismetMathLibrary_MinOfIntArray) == 0x000018, "Wrong size on KismetMathLibrary_MinOfIntArray"); \ +static_assert(offsetof(KismetMathLibrary_MinOfIntArray, IntArray) == 0x000000, "Member 'KismetMathLibrary_MinOfIntArray::IntArray' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfIntArray, IndexOfMinValue) == 0x000010, "Member 'KismetMathLibrary_MinOfIntArray::IndexOfMinValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MinOfIntArray, MinValue) == 0x000014, "Member 'KismetMathLibrary_MinOfIntArray::MinValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MirrorVectorByNormal \ +static_assert(alignof(KismetMathLibrary_MirrorVectorByNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_MirrorVectorByNormal"); \ +static_assert(sizeof(KismetMathLibrary_MirrorVectorByNormal) == 0x000048, "Wrong size on KismetMathLibrary_MirrorVectorByNormal"); \ +static_assert(offsetof(KismetMathLibrary_MirrorVectorByNormal, InVect) == 0x000000, "Member 'KismetMathLibrary_MirrorVectorByNormal::InVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MirrorVectorByNormal, InNormal) == 0x000018, "Member 'KismetMathLibrary_MirrorVectorByNormal::InNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MirrorVectorByNormal, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_MirrorVectorByNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_ByteByte \ +static_assert(alignof(KismetMathLibrary_Multiply_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Multiply_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Multiply_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Multiply_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Multiply_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Multiply_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Multiply_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Multiply_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Multiply_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Multiply_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Multiply_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Multiply_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Multiply_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_IntFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_IntFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_IntFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_IntFloat) == 0x000018, "Wrong size on KismetMathLibrary_Multiply_IntFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_IntFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntFloat, B) == 0x000008, "Member 'KismetMathLibrary_Multiply_IntFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntFloat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Multiply_IntFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_IntInt \ +static_assert(alignof(KismetMathLibrary_Multiply_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Multiply_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Multiply_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Multiply_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Multiply_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_IntPointInt \ +static_assert(alignof(KismetMathLibrary_Multiply_IntPointInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Multiply_IntPointInt"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_IntPointInt) == 0x000014, "Wrong size on KismetMathLibrary_Multiply_IntPointInt"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointInt, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_IntPointInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointInt, B) == 0x000008, "Member 'KismetMathLibrary_Multiply_IntPointInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointInt, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Multiply_IntPointInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_Multiply_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_Multiply_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_IntPointIntPoint) == 0x000018, "Wrong size on KismetMathLibrary_Multiply_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_Multiply_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Multiply_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_LinearColorFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_LinearColorFloat) == 0x000004, "Wrong alignment on KismetMathLibrary_Multiply_LinearColorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_LinearColorFloat) == 0x000024, "Wrong size on KismetMathLibrary_Multiply_LinearColorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_LinearColorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorFloat, B) == 0x000010, "Member 'KismetMathLibrary_Multiply_LinearColorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorFloat, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_Multiply_LinearColorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_Multiply_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Multiply_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_LinearColorLinearColor) == 0x000030, "Wrong size on KismetMathLibrary_Multiply_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_Multiply_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_MatrixFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_MatrixFloat) == 0x000010, "Wrong alignment on KismetMathLibrary_Multiply_MatrixFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_MatrixFloat) == 0x000110, "Wrong size on KismetMathLibrary_Multiply_MatrixFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_MatrixFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixFloat, B) == 0x000080, "Member 'KismetMathLibrary_Multiply_MatrixFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixFloat, ReturnValue) == 0x000090, "Member 'KismetMathLibrary_Multiply_MatrixFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_MatrixMatrix \ +static_assert(alignof(KismetMathLibrary_Multiply_MatrixMatrix) == 0x000010, "Wrong alignment on KismetMathLibrary_Multiply_MatrixMatrix"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_MatrixMatrix) == 0x000180, "Wrong size on KismetMathLibrary_Multiply_MatrixMatrix"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixMatrix, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_MatrixMatrix::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixMatrix, B) == 0x000080, "Member 'KismetMathLibrary_Multiply_MatrixMatrix::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_MatrixMatrix, ReturnValue) == 0x000100, "Member 'KismetMathLibrary_Multiply_MatrixMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_QuatQuat \ +static_assert(alignof(KismetMathLibrary_Multiply_QuatQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_Multiply_QuatQuat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_QuatQuat) == 0x000060, "Wrong size on KismetMathLibrary_Multiply_QuatQuat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_QuatQuat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_QuatQuat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_QuatQuat, B) == 0x000020, "Member 'KismetMathLibrary_Multiply_QuatQuat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_QuatQuat, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Multiply_QuatQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_RotatorFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_RotatorFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_RotatorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_RotatorFloat) == 0x000038, "Wrong size on KismetMathLibrary_Multiply_RotatorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_RotatorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorFloat, B) == 0x000018, "Member 'KismetMathLibrary_Multiply_RotatorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorFloat, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_RotatorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_RotatorInt \ +static_assert(alignof(KismetMathLibrary_Multiply_RotatorInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_RotatorInt"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_RotatorInt) == 0x000038, "Wrong size on KismetMathLibrary_Multiply_RotatorInt"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorInt, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_RotatorInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorInt, B) == 0x000018, "Member 'KismetMathLibrary_Multiply_RotatorInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_RotatorInt, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_RotatorInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_TimespanFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_TimespanFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_TimespanFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_TimespanFloat) == 0x000018, "Wrong size on KismetMathLibrary_Multiply_TimespanFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_TimespanFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_TimespanFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_TimespanFloat, Scalar) == 0x000008, "Member 'KismetMathLibrary_Multiply_TimespanFloat::Scalar' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_TimespanFloat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Multiply_TimespanFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_Vector2DFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_Vector2DFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_Vector2DFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_Vector2DFloat) == 0x000028, "Wrong size on KismetMathLibrary_Multiply_Vector2DFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_Vector2DFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DFloat, B) == 0x000010, "Member 'KismetMathLibrary_Multiply_Vector2DFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Multiply_Vector2DFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_Multiply_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_Vector2DVector2D) == 0x000030, "Wrong size on KismetMathLibrary_Multiply_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_Multiply_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_Multiply_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_Multiply_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_Vector4Vector4) == 0x000060, "Wrong size on KismetMathLibrary_Multiply_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_Multiply_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Multiply_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_VectorFloat \ +static_assert(alignof(KismetMathLibrary_Multiply_VectorFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_VectorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_VectorFloat) == 0x000038, "Wrong size on KismetMathLibrary_Multiply_VectorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_VectorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorFloat, B) == 0x000018, "Member 'KismetMathLibrary_Multiply_VectorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorFloat, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_VectorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_VectorInt \ +static_assert(alignof(KismetMathLibrary_Multiply_VectorInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_VectorInt"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_VectorInt) == 0x000038, "Wrong size on KismetMathLibrary_Multiply_VectorInt"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorInt, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_VectorInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorInt, B) == 0x000018, "Member 'KismetMathLibrary_Multiply_VectorInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorInt, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Multiply_VectorInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Multiply_VectorVector \ +static_assert(alignof(KismetMathLibrary_Multiply_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Multiply_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Multiply_VectorVector) == 0x000048, "Wrong size on KismetMathLibrary_Multiply_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Multiply_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Multiply_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Multiply_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Multiply_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MultiplyByPi \ +static_assert(alignof(KismetMathLibrary_MultiplyByPi) == 0x000008, "Wrong alignment on KismetMathLibrary_MultiplyByPi"); \ +static_assert(sizeof(KismetMathLibrary_MultiplyByPi) == 0x000010, "Wrong size on KismetMathLibrary_MultiplyByPi"); \ +static_assert(offsetof(KismetMathLibrary_MultiplyByPi, Value) == 0x000000, "Member 'KismetMathLibrary_MultiplyByPi::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MultiplyByPi, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_MultiplyByPi::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_MultiplyMultiply_FloatFloat \ +static_assert(alignof(KismetMathLibrary_MultiplyMultiply_FloatFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_MultiplyMultiply_FloatFloat"); \ +static_assert(sizeof(KismetMathLibrary_MultiplyMultiply_FloatFloat) == 0x000018, "Wrong size on KismetMathLibrary_MultiplyMultiply_FloatFloat"); \ +static_assert(offsetof(KismetMathLibrary_MultiplyMultiply_FloatFloat, base) == 0x000000, "Member 'KismetMathLibrary_MultiplyMultiply_FloatFloat::base' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MultiplyMultiply_FloatFloat, Exp) == 0x000008, "Member 'KismetMathLibrary_MultiplyMultiply_FloatFloat::Exp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_MultiplyMultiply_FloatFloat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_MultiplyMultiply_FloatFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NearlyEqual_FloatFloat \ +static_assert(alignof(KismetMathLibrary_NearlyEqual_FloatFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_NearlyEqual_FloatFloat"); \ +static_assert(sizeof(KismetMathLibrary_NearlyEqual_FloatFloat) == 0x000020, "Wrong size on KismetMathLibrary_NearlyEqual_FloatFloat"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_FloatFloat, A) == 0x000000, "Member 'KismetMathLibrary_NearlyEqual_FloatFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_FloatFloat, B) == 0x000008, "Member 'KismetMathLibrary_NearlyEqual_FloatFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_FloatFloat, ErrorTolerance) == 0x000010, "Member 'KismetMathLibrary_NearlyEqual_FloatFloat::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_FloatFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_NearlyEqual_FloatFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NearlyEqual_TransformTransform \ +static_assert(alignof(KismetMathLibrary_NearlyEqual_TransformTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_NearlyEqual_TransformTransform"); \ +static_assert(sizeof(KismetMathLibrary_NearlyEqual_TransformTransform) == 0x0000D0, "Wrong size on KismetMathLibrary_NearlyEqual_TransformTransform"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, A) == 0x000000, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, B) == 0x000060, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, LocationTolerance) == 0x0000C0, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::LocationTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, RotationTolerance) == 0x0000C4, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::RotationTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, Scale3DTolerance) == 0x0000C8, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::Scale3DTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NearlyEqual_TransformTransform, ReturnValue) == 0x0000CC, "Member 'KismetMathLibrary_NearlyEqual_TransformTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Negated2D \ +static_assert(alignof(KismetMathLibrary_Negated2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Negated2D"); \ +static_assert(sizeof(KismetMathLibrary_Negated2D) == 0x000020, "Wrong size on KismetMathLibrary_Negated2D"); \ +static_assert(offsetof(KismetMathLibrary_Negated2D, A) == 0x000000, "Member 'KismetMathLibrary_Negated2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Negated2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Negated2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NegateRotator \ +static_assert(alignof(KismetMathLibrary_NegateRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_NegateRotator"); \ +static_assert(sizeof(KismetMathLibrary_NegateRotator) == 0x000030, "Wrong size on KismetMathLibrary_NegateRotator"); \ +static_assert(offsetof(KismetMathLibrary_NegateRotator, A) == 0x000000, "Member 'KismetMathLibrary_NegateRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NegateRotator, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_NegateRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NegateVector \ +static_assert(alignof(KismetMathLibrary_NegateVector) == 0x000008, "Wrong alignment on KismetMathLibrary_NegateVector"); \ +static_assert(sizeof(KismetMathLibrary_NegateVector) == 0x000030, "Wrong size on KismetMathLibrary_NegateVector"); \ +static_assert(offsetof(KismetMathLibrary_NegateVector, A) == 0x000000, "Member 'KismetMathLibrary_NegateVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NegateVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_NegateVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Normal \ +static_assert(alignof(KismetMathLibrary_Normal) == 0x000008, "Wrong alignment on KismetMathLibrary_Normal"); \ +static_assert(sizeof(KismetMathLibrary_Normal) == 0x000038, "Wrong size on KismetMathLibrary_Normal"); \ +static_assert(offsetof(KismetMathLibrary_Normal, A) == 0x000000, "Member 'KismetMathLibrary_Normal::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Normal, Tolerance) == 0x000018, "Member 'KismetMathLibrary_Normal::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Normal, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Normal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Normal2D \ +static_assert(alignof(KismetMathLibrary_Normal2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Normal2D"); \ +static_assert(sizeof(KismetMathLibrary_Normal2D) == 0x000020, "Wrong size on KismetMathLibrary_Normal2D"); \ +static_assert(offsetof(KismetMathLibrary_Normal2D, A) == 0x000000, "Member 'KismetMathLibrary_Normal2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Normal2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Normal2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Normalize2D \ +static_assert(alignof(KismetMathLibrary_Normalize2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Normalize2D"); \ +static_assert(sizeof(KismetMathLibrary_Normalize2D) == 0x000018, "Wrong size on KismetMathLibrary_Normalize2D"); \ +static_assert(offsetof(KismetMathLibrary_Normalize2D, A) == 0x000000, "Member 'KismetMathLibrary_Normalize2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Normalize2D, Tolerance) == 0x000010, "Member 'KismetMathLibrary_Normalize2D::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NormalizeAxis \ +static_assert(alignof(KismetMathLibrary_NormalizeAxis) == 0x000004, "Wrong alignment on KismetMathLibrary_NormalizeAxis"); \ +static_assert(sizeof(KismetMathLibrary_NormalizeAxis) == 0x000008, "Wrong size on KismetMathLibrary_NormalizeAxis"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeAxis, Angle) == 0x000000, "Member 'KismetMathLibrary_NormalizeAxis::Angle' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeAxis, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_NormalizeAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NormalizedDeltaRotator \ +static_assert(alignof(KismetMathLibrary_NormalizedDeltaRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_NormalizedDeltaRotator"); \ +static_assert(sizeof(KismetMathLibrary_NormalizedDeltaRotator) == 0x000048, "Wrong size on KismetMathLibrary_NormalizedDeltaRotator"); \ +static_assert(offsetof(KismetMathLibrary_NormalizedDeltaRotator, A) == 0x000000, "Member 'KismetMathLibrary_NormalizedDeltaRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizedDeltaRotator, B) == 0x000018, "Member 'KismetMathLibrary_NormalizedDeltaRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizedDeltaRotator, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_NormalizedDeltaRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NormalizeToRange \ +static_assert(alignof(KismetMathLibrary_NormalizeToRange) == 0x000008, "Wrong alignment on KismetMathLibrary_NormalizeToRange"); \ +static_assert(sizeof(KismetMathLibrary_NormalizeToRange) == 0x000020, "Wrong size on KismetMathLibrary_NormalizeToRange"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeToRange, Value) == 0x000000, "Member 'KismetMathLibrary_NormalizeToRange::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeToRange, RangeMin) == 0x000008, "Member 'KismetMathLibrary_NormalizeToRange::RangeMin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeToRange, RangeMax) == 0x000010, "Member 'KismetMathLibrary_NormalizeToRange::RangeMax' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalizeToRange, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_NormalizeToRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NormalSafe2D \ +static_assert(alignof(KismetMathLibrary_NormalSafe2D) == 0x000008, "Wrong alignment on KismetMathLibrary_NormalSafe2D"); \ +static_assert(sizeof(KismetMathLibrary_NormalSafe2D) == 0x000028, "Wrong size on KismetMathLibrary_NormalSafe2D"); \ +static_assert(offsetof(KismetMathLibrary_NormalSafe2D, A) == 0x000000, "Member 'KismetMathLibrary_NormalSafe2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalSafe2D, Tolerance) == 0x000010, "Member 'KismetMathLibrary_NormalSafe2D::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NormalSafe2D, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_NormalSafe2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Not_Int \ +static_assert(alignof(KismetMathLibrary_Not_Int) == 0x000004, "Wrong alignment on KismetMathLibrary_Not_Int"); \ +static_assert(sizeof(KismetMathLibrary_Not_Int) == 0x000008, "Wrong size on KismetMathLibrary_Not_Int"); \ +static_assert(offsetof(KismetMathLibrary_Not_Int, A) == 0x000000, "Member 'KismetMathLibrary_Not_Int::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Not_Int, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_Not_Int::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Not_Int64 \ +static_assert(alignof(KismetMathLibrary_Not_Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Not_Int64"); \ +static_assert(sizeof(KismetMathLibrary_Not_Int64) == 0x000010, "Wrong size on KismetMathLibrary_Not_Int64"); \ +static_assert(offsetof(KismetMathLibrary_Not_Int64, A) == 0x000000, "Member 'KismetMathLibrary_Not_Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Not_Int64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Not_Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Not_PreBool \ +static_assert(alignof(KismetMathLibrary_Not_PreBool) == 0x000001, "Wrong alignment on KismetMathLibrary_Not_PreBool"); \ +static_assert(sizeof(KismetMathLibrary_Not_PreBool) == 0x000002, "Wrong size on KismetMathLibrary_Not_PreBool"); \ +static_assert(offsetof(KismetMathLibrary_Not_PreBool, A) == 0x000000, "Member 'KismetMathLibrary_Not_PreBool::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Not_PreBool, ReturnValue) == 0x000001, "Member 'KismetMathLibrary_Not_PreBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_BoolBool \ +static_assert(alignof(KismetMathLibrary_NotEqual_BoolBool) == 0x000001, "Wrong alignment on KismetMathLibrary_NotEqual_BoolBool"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_BoolBool) == 0x000003, "Wrong size on KismetMathLibrary_NotEqual_BoolBool"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_BoolBool, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_BoolBool::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_BoolBool, B) == 0x000001, "Member 'KismetMathLibrary_NotEqual_BoolBool::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_BoolBool, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_NotEqual_BoolBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_ByteByte \ +static_assert(alignof(KismetMathLibrary_NotEqual_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_NotEqual_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_NotEqual_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_NotEqual_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_NotEqual_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_ClassClass \ +static_assert(alignof(KismetMathLibrary_NotEqual_ClassClass) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_ClassClass"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_ClassClass) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_ClassClass"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ClassClass, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_ClassClass::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ClassClass, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_ClassClass::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ClassClass, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_ClassClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_NotEqual_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_NotEqual_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_NotEqual_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_IntInt \ +static_assert(alignof(KismetMathLibrary_NotEqual_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_NotEqual_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_NotEqual_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_NotEqual_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_NotEqual_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_NotEqual_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_NotEqual_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_IntPointIntPoint) == 0x000014, "Wrong size on KismetMathLibrary_NotEqual_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_NotEqual_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_NotEqual_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_LinearColorLinearColor) == 0x000024, "Wrong size on KismetMathLibrary_NotEqual_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_NotEqual_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_NotEqual_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_MatrixMatrix \ +static_assert(alignof(KismetMathLibrary_NotEqual_MatrixMatrix) == 0x000010, "Wrong alignment on KismetMathLibrary_NotEqual_MatrixMatrix"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_MatrixMatrix) == 0x000110, "Wrong size on KismetMathLibrary_NotEqual_MatrixMatrix"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_MatrixMatrix, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_MatrixMatrix::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_MatrixMatrix, B) == 0x000080, "Member 'KismetMathLibrary_NotEqual_MatrixMatrix::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_MatrixMatrix, Tolerance) == 0x000100, "Member 'KismetMathLibrary_NotEqual_MatrixMatrix::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_MatrixMatrix, ReturnValue) == 0x000104, "Member 'KismetMathLibrary_NotEqual_MatrixMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_NameName \ +static_assert(alignof(KismetMathLibrary_NotEqual_NameName) == 0x000004, "Wrong alignment on KismetMathLibrary_NotEqual_NameName"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_NameName) == 0x000014, "Wrong size on KismetMathLibrary_NotEqual_NameName"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_NameName, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_NameName::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_NameName, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_NameName::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_NameName, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_NameName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_ObjectObject \ +static_assert(alignof(KismetMathLibrary_NotEqual_ObjectObject) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_ObjectObject"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_ObjectObject) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_ObjectObject"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ObjectObject, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_ObjectObject::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ObjectObject, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_ObjectObject::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_ObjectObject, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_ObjectObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_QuatQuat \ +static_assert(alignof(KismetMathLibrary_NotEqual_QuatQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_NotEqual_QuatQuat"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_QuatQuat) == 0x000050, "Wrong size on KismetMathLibrary_NotEqual_QuatQuat"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_QuatQuat, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_QuatQuat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_QuatQuat, B) == 0x000020, "Member 'KismetMathLibrary_NotEqual_QuatQuat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_QuatQuat, ErrorTolerance) == 0x000040, "Member 'KismetMathLibrary_NotEqual_QuatQuat::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_QuatQuat, ReturnValue) == 0x000044, "Member 'KismetMathLibrary_NotEqual_QuatQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_RotatorRotator \ +static_assert(alignof(KismetMathLibrary_NotEqual_RotatorRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_RotatorRotator"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_RotatorRotator) == 0x000038, "Wrong size on KismetMathLibrary_NotEqual_RotatorRotator"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_RotatorRotator, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_RotatorRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_RotatorRotator, B) == 0x000018, "Member 'KismetMathLibrary_NotEqual_RotatorRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_RotatorRotator, ErrorTolerance) == 0x000030, "Member 'KismetMathLibrary_NotEqual_RotatorRotator::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_RotatorRotator, ReturnValue) == 0x000034, "Member 'KismetMathLibrary_NotEqual_RotatorRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_NotEqual_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_NotEqual_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_NotEqual_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_NotEqual_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_NotEqual_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_Vector2DVector2D) == 0x000028, "Wrong size on KismetMathLibrary_NotEqual_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_NotEqual_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector2DVector2D, ErrorTolerance) == 0x000020, "Member 'KismetMathLibrary_NotEqual_Vector2DVector2D::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector2DVector2D, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_NotEqual_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_NotEqual_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_NotEqual_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_Vector4Vector4) == 0x000050, "Wrong size on KismetMathLibrary_NotEqual_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_NotEqual_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector4Vector4, ErrorTolerance) == 0x000040, "Member 'KismetMathLibrary_NotEqual_Vector4Vector4::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_Vector4Vector4, ReturnValue) == 0x000044, "Member 'KismetMathLibrary_NotEqual_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqual_VectorVector \ +static_assert(alignof(KismetMathLibrary_NotEqual_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqual_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_NotEqual_VectorVector) == 0x000038, "Wrong size on KismetMathLibrary_NotEqual_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_NotEqual_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_NotEqual_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_VectorVector, ErrorTolerance) == 0x000030, "Member 'KismetMathLibrary_NotEqual_VectorVector::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqual_VectorVector, ReturnValue) == 0x000034, "Member 'KismetMathLibrary_NotEqual_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqualExactly_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_NotEqualExactly_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqualExactly_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_NotEqualExactly_Vector2DVector2D) == 0x000028, "Wrong size on KismetMathLibrary_NotEqualExactly_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_NotEqualExactly_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_NotEqualExactly_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_NotEqualExactly_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqualExactly_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_NotEqualExactly_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_NotEqualExactly_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_NotEqualExactly_Vector4Vector4) == 0x000050, "Wrong size on KismetMathLibrary_NotEqualExactly_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_NotEqualExactly_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_NotEqualExactly_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_NotEqualExactly_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_NotEqualExactly_VectorVector \ +static_assert(alignof(KismetMathLibrary_NotEqualExactly_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_NotEqualExactly_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_NotEqualExactly_VectorVector) == 0x000038, "Wrong size on KismetMathLibrary_NotEqualExactly_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_NotEqualExactly_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_NotEqualExactly_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_NotEqualExactly_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_NotEqualExactly_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Now \ +static_assert(alignof(KismetMathLibrary_Now) == 0x000008, "Wrong alignment on KismetMathLibrary_Now"); \ +static_assert(sizeof(KismetMathLibrary_Now) == 0x000008, "Wrong size on KismetMathLibrary_Now"); \ +static_assert(offsetof(KismetMathLibrary_Now, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Now::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Or_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Or_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Or_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Or_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Or_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Or_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Or_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Or_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Or_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Or_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Or_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Or_IntInt \ +static_assert(alignof(KismetMathLibrary_Or_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Or_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Or_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Or_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Or_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Or_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Or_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Or_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Or_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Or_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Percent_ByteByte \ +static_assert(alignof(KismetMathLibrary_Percent_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Percent_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Percent_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Percent_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Percent_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Percent_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Percent_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Percent_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Percent_FloatFloat \ +static_assert(alignof(KismetMathLibrary_Percent_FloatFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Percent_FloatFloat"); \ +static_assert(sizeof(KismetMathLibrary_Percent_FloatFloat) == 0x000018, "Wrong size on KismetMathLibrary_Percent_FloatFloat"); \ +static_assert(offsetof(KismetMathLibrary_Percent_FloatFloat, A) == 0x000000, "Member 'KismetMathLibrary_Percent_FloatFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_FloatFloat, B) == 0x000008, "Member 'KismetMathLibrary_Percent_FloatFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_FloatFloat, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Percent_FloatFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Percent_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Percent_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Percent_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Percent_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Percent_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Percent_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Percent_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Percent_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Percent_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Percent_IntInt \ +static_assert(alignof(KismetMathLibrary_Percent_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Percent_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Percent_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Percent_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Percent_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Percent_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Percent_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Percent_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Percent_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_PerlinNoise1D \ +static_assert(alignof(KismetMathLibrary_PerlinNoise1D) == 0x000004, "Wrong alignment on KismetMathLibrary_PerlinNoise1D"); \ +static_assert(sizeof(KismetMathLibrary_PerlinNoise1D) == 0x000008, "Wrong size on KismetMathLibrary_PerlinNoise1D"); \ +static_assert(offsetof(KismetMathLibrary_PerlinNoise1D, Value) == 0x000000, "Member 'KismetMathLibrary_PerlinNoise1D::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_PerlinNoise1D, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_PerlinNoise1D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_PointsAreCoplanar \ +static_assert(alignof(KismetMathLibrary_PointsAreCoplanar) == 0x000008, "Wrong alignment on KismetMathLibrary_PointsAreCoplanar"); \ +static_assert(sizeof(KismetMathLibrary_PointsAreCoplanar) == 0x000018, "Wrong size on KismetMathLibrary_PointsAreCoplanar"); \ +static_assert(offsetof(KismetMathLibrary_PointsAreCoplanar, Points) == 0x000000, "Member 'KismetMathLibrary_PointsAreCoplanar::Points' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_PointsAreCoplanar, Tolerance) == 0x000010, "Member 'KismetMathLibrary_PointsAreCoplanar::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_PointsAreCoplanar, ReturnValue) == 0x000014, "Member 'KismetMathLibrary_PointsAreCoplanar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ProjectPointOnToPlane \ +static_assert(alignof(KismetMathLibrary_ProjectPointOnToPlane) == 0x000008, "Wrong alignment on KismetMathLibrary_ProjectPointOnToPlane"); \ +static_assert(sizeof(KismetMathLibrary_ProjectPointOnToPlane) == 0x000060, "Wrong size on KismetMathLibrary_ProjectPointOnToPlane"); \ +static_assert(offsetof(KismetMathLibrary_ProjectPointOnToPlane, Point) == 0x000000, "Member 'KismetMathLibrary_ProjectPointOnToPlane::Point' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectPointOnToPlane, PlaneBase) == 0x000018, "Member 'KismetMathLibrary_ProjectPointOnToPlane::PlaneBase' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectPointOnToPlane, PlaneNormal) == 0x000030, "Member 'KismetMathLibrary_ProjectPointOnToPlane::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectPointOnToPlane, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_ProjectPointOnToPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ProjectVectorOnToPlane \ +static_assert(alignof(KismetMathLibrary_ProjectVectorOnToPlane) == 0x000008, "Wrong alignment on KismetMathLibrary_ProjectVectorOnToPlane"); \ +static_assert(sizeof(KismetMathLibrary_ProjectVectorOnToPlane) == 0x000048, "Wrong size on KismetMathLibrary_ProjectVectorOnToPlane"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToPlane, V) == 0x000000, "Member 'KismetMathLibrary_ProjectVectorOnToPlane::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToPlane, PlaneNormal) == 0x000018, "Member 'KismetMathLibrary_ProjectVectorOnToPlane::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToPlane, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_ProjectVectorOnToPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ProjectVectorOnToVector \ +static_assert(alignof(KismetMathLibrary_ProjectVectorOnToVector) == 0x000008, "Wrong alignment on KismetMathLibrary_ProjectVectorOnToVector"); \ +static_assert(sizeof(KismetMathLibrary_ProjectVectorOnToVector) == 0x000048, "Wrong size on KismetMathLibrary_ProjectVectorOnToVector"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToVector, V) == 0x000000, "Member 'KismetMathLibrary_ProjectVectorOnToVector::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToVector, Target) == 0x000018, "Member 'KismetMathLibrary_ProjectVectorOnToVector::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ProjectVectorOnToVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_ProjectVectorOnToVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_AngularDistance \ +static_assert(alignof(KismetMathLibrary_Quat_AngularDistance) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_AngularDistance"); \ +static_assert(sizeof(KismetMathLibrary_Quat_AngularDistance) == 0x000050, "Wrong size on KismetMathLibrary_Quat_AngularDistance"); \ +static_assert(offsetof(KismetMathLibrary_Quat_AngularDistance, A) == 0x000000, "Member 'KismetMathLibrary_Quat_AngularDistance::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_AngularDistance, B) == 0x000020, "Member 'KismetMathLibrary_Quat_AngularDistance::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_AngularDistance, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Quat_AngularDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_EnforceShortestArcWith \ +static_assert(alignof(KismetMathLibrary_Quat_EnforceShortestArcWith) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_EnforceShortestArcWith"); \ +static_assert(sizeof(KismetMathLibrary_Quat_EnforceShortestArcWith) == 0x000040, "Wrong size on KismetMathLibrary_Quat_EnforceShortestArcWith"); \ +static_assert(offsetof(KismetMathLibrary_Quat_EnforceShortestArcWith, A) == 0x000000, "Member 'KismetMathLibrary_Quat_EnforceShortestArcWith::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_EnforceShortestArcWith, B) == 0x000020, "Member 'KismetMathLibrary_Quat_EnforceShortestArcWith::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Euler \ +static_assert(alignof(KismetMathLibrary_Quat_Euler) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Euler"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Euler) == 0x000040, "Wrong size on KismetMathLibrary_Quat_Euler"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Euler, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Euler::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Euler, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Euler::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Exp \ +static_assert(alignof(KismetMathLibrary_Quat_Exp) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Exp"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Exp) == 0x000040, "Wrong size on KismetMathLibrary_Quat_Exp"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Exp, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Exp::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Exp, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Exp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_FindBetweenNormals \ +static_assert(alignof(KismetMathLibrary_Quat_FindBetweenNormals) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_FindBetweenNormals"); \ +static_assert(sizeof(KismetMathLibrary_Quat_FindBetweenNormals) == 0x000050, "Wrong size on KismetMathLibrary_Quat_FindBetweenNormals"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenNormals, StartNormal) == 0x000000, "Member 'KismetMathLibrary_Quat_FindBetweenNormals::StartNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenNormals, EndNormal) == 0x000018, "Member 'KismetMathLibrary_Quat_FindBetweenNormals::EndNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenNormals, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Quat_FindBetweenNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_FindBetweenVectors \ +static_assert(alignof(KismetMathLibrary_Quat_FindBetweenVectors) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_FindBetweenVectors"); \ +static_assert(sizeof(KismetMathLibrary_Quat_FindBetweenVectors) == 0x000050, "Wrong size on KismetMathLibrary_Quat_FindBetweenVectors"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenVectors, Start) == 0x000000, "Member 'KismetMathLibrary_Quat_FindBetweenVectors::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenVectors, End) == 0x000018, "Member 'KismetMathLibrary_Quat_FindBetweenVectors::End' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_FindBetweenVectors, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Quat_FindBetweenVectors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_GetAngle \ +static_assert(alignof(KismetMathLibrary_Quat_GetAngle) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_GetAngle"); \ +static_assert(sizeof(KismetMathLibrary_Quat_GetAngle) == 0x000030, "Wrong size on KismetMathLibrary_Quat_GetAngle"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAngle, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_GetAngle::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAngle, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_GetAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_GetAxisX \ +static_assert(alignof(KismetMathLibrary_Quat_GetAxisX) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_GetAxisX"); \ +static_assert(sizeof(KismetMathLibrary_Quat_GetAxisX) == 0x000040, "Wrong size on KismetMathLibrary_Quat_GetAxisX"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisX, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_GetAxisX::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisX, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_GetAxisX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_GetAxisY \ +static_assert(alignof(KismetMathLibrary_Quat_GetAxisY) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_GetAxisY"); \ +static_assert(sizeof(KismetMathLibrary_Quat_GetAxisY) == 0x000040, "Wrong size on KismetMathLibrary_Quat_GetAxisY"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisY, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_GetAxisY::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisY, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_GetAxisY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_GetAxisZ \ +static_assert(alignof(KismetMathLibrary_Quat_GetAxisZ) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_GetAxisZ"); \ +static_assert(sizeof(KismetMathLibrary_Quat_GetAxisZ) == 0x000040, "Wrong size on KismetMathLibrary_Quat_GetAxisZ"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisZ, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_GetAxisZ::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetAxisZ, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_GetAxisZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_GetRotationAxis \ +static_assert(alignof(KismetMathLibrary_Quat_GetRotationAxis) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_GetRotationAxis"); \ +static_assert(sizeof(KismetMathLibrary_Quat_GetRotationAxis) == 0x000040, "Wrong size on KismetMathLibrary_Quat_GetRotationAxis"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetRotationAxis, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_GetRotationAxis::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_GetRotationAxis, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_GetRotationAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Identity \ +static_assert(alignof(KismetMathLibrary_Quat_Identity) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Identity"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Identity) == 0x000020, "Wrong size on KismetMathLibrary_Quat_Identity"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Identity, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Quat_Identity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Inversed \ +static_assert(alignof(KismetMathLibrary_Quat_Inversed) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Inversed"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Inversed) == 0x000040, "Wrong size on KismetMathLibrary_Quat_Inversed"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Inversed, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Inversed::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Inversed, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Inversed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_IsFinite \ +static_assert(alignof(KismetMathLibrary_Quat_IsFinite) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_IsFinite"); \ +static_assert(sizeof(KismetMathLibrary_Quat_IsFinite) == 0x000030, "Wrong size on KismetMathLibrary_Quat_IsFinite"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsFinite, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_IsFinite::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsFinite, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_IsFinite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_IsIdentity \ +static_assert(alignof(KismetMathLibrary_Quat_IsIdentity) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_IsIdentity"); \ +static_assert(sizeof(KismetMathLibrary_Quat_IsIdentity) == 0x000030, "Wrong size on KismetMathLibrary_Quat_IsIdentity"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsIdentity, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_IsIdentity::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsIdentity, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Quat_IsIdentity::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsIdentity, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_Quat_IsIdentity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_IsNonFinite \ +static_assert(alignof(KismetMathLibrary_Quat_IsNonFinite) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_IsNonFinite"); \ +static_assert(sizeof(KismetMathLibrary_Quat_IsNonFinite) == 0x000030, "Wrong size on KismetMathLibrary_Quat_IsNonFinite"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsNonFinite, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_IsNonFinite::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsNonFinite, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_IsNonFinite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_IsNormalized \ +static_assert(alignof(KismetMathLibrary_Quat_IsNormalized) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_IsNormalized"); \ +static_assert(sizeof(KismetMathLibrary_Quat_IsNormalized) == 0x000030, "Wrong size on KismetMathLibrary_Quat_IsNormalized"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsNormalized, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_IsNormalized::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_IsNormalized, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_IsNormalized::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Log \ +static_assert(alignof(KismetMathLibrary_Quat_Log) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Log"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Log) == 0x000040, "Wrong size on KismetMathLibrary_Quat_Log"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Log, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Log::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Log, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Log::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_MakeFromEuler \ +static_assert(alignof(KismetMathLibrary_Quat_MakeFromEuler) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_MakeFromEuler"); \ +static_assert(sizeof(KismetMathLibrary_Quat_MakeFromEuler) == 0x000040, "Wrong size on KismetMathLibrary_Quat_MakeFromEuler"); \ +static_assert(offsetof(KismetMathLibrary_Quat_MakeFromEuler, Euler) == 0x000000, "Member 'KismetMathLibrary_Quat_MakeFromEuler::Euler' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_MakeFromEuler, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_MakeFromEuler::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Normalize \ +static_assert(alignof(KismetMathLibrary_Quat_Normalize) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Normalize"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Normalize) == 0x000030, "Wrong size on KismetMathLibrary_Quat_Normalize"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Normalize, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Normalize::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Normalize, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Quat_Normalize::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Normalized \ +static_assert(alignof(KismetMathLibrary_Quat_Normalized) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Normalized"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Normalized) == 0x000050, "Wrong size on KismetMathLibrary_Quat_Normalized"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Normalized, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Normalized::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Normalized, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Quat_Normalized::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Normalized, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Quat_Normalized::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_RotateVector \ +static_assert(alignof(KismetMathLibrary_Quat_RotateVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_RotateVector"); \ +static_assert(sizeof(KismetMathLibrary_Quat_RotateVector) == 0x000050, "Wrong size on KismetMathLibrary_Quat_RotateVector"); \ +static_assert(offsetof(KismetMathLibrary_Quat_RotateVector, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_RotateVector::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_RotateVector, V) == 0x000020, "Member 'KismetMathLibrary_Quat_RotateVector::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_RotateVector, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_Quat_RotateVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Rotator \ +static_assert(alignof(KismetMathLibrary_Quat_Rotator) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Rotator"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Rotator) == 0x000040, "Wrong size on KismetMathLibrary_Quat_Rotator"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Rotator, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Rotator::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Rotator, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Rotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_SetComponents \ +static_assert(alignof(KismetMathLibrary_Quat_SetComponents) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_SetComponents"); \ +static_assert(sizeof(KismetMathLibrary_Quat_SetComponents) == 0x000030, "Wrong size on KismetMathLibrary_Quat_SetComponents"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetComponents, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_SetComponents::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetComponents, X) == 0x000020, "Member 'KismetMathLibrary_Quat_SetComponents::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetComponents, Y) == 0x000024, "Member 'KismetMathLibrary_Quat_SetComponents::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetComponents, Z) == 0x000028, "Member 'KismetMathLibrary_Quat_SetComponents::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetComponents, W) == 0x00002C, "Member 'KismetMathLibrary_Quat_SetComponents::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_SetFromEuler \ +static_assert(alignof(KismetMathLibrary_Quat_SetFromEuler) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_SetFromEuler"); \ +static_assert(sizeof(KismetMathLibrary_Quat_SetFromEuler) == 0x000040, "Wrong size on KismetMathLibrary_Quat_SetFromEuler"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetFromEuler, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_SetFromEuler::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SetFromEuler, Euler) == 0x000020, "Member 'KismetMathLibrary_Quat_SetFromEuler::Euler' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Size \ +static_assert(alignof(KismetMathLibrary_Quat_Size) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Size"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Size) == 0x000030, "Wrong size on KismetMathLibrary_Quat_Size"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Size, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_Size::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Size, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_Size::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_SizeSquared \ +static_assert(alignof(KismetMathLibrary_Quat_SizeSquared) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_SizeSquared"); \ +static_assert(sizeof(KismetMathLibrary_Quat_SizeSquared) == 0x000030, "Wrong size on KismetMathLibrary_Quat_SizeSquared"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SizeSquared, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_SizeSquared::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_SizeSquared, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_SizeSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_Slerp \ +static_assert(alignof(KismetMathLibrary_Quat_Slerp) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_Slerp"); \ +static_assert(sizeof(KismetMathLibrary_Quat_Slerp) == 0x000070, "Wrong size on KismetMathLibrary_Quat_Slerp"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Slerp, A) == 0x000000, "Member 'KismetMathLibrary_Quat_Slerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Slerp, B) == 0x000020, "Member 'KismetMathLibrary_Quat_Slerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Slerp, alpha) == 0x000040, "Member 'KismetMathLibrary_Quat_Slerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_Slerp, ReturnValue) == 0x000050, "Member 'KismetMathLibrary_Quat_Slerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_UnrotateVector \ +static_assert(alignof(KismetMathLibrary_Quat_UnrotateVector) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_UnrotateVector"); \ +static_assert(sizeof(KismetMathLibrary_Quat_UnrotateVector) == 0x000050, "Wrong size on KismetMathLibrary_Quat_UnrotateVector"); \ +static_assert(offsetof(KismetMathLibrary_Quat_UnrotateVector, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_UnrotateVector::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_UnrotateVector, V) == 0x000020, "Member 'KismetMathLibrary_Quat_UnrotateVector::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_UnrotateVector, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_Quat_UnrotateVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_VectorForward \ +static_assert(alignof(KismetMathLibrary_Quat_VectorForward) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_VectorForward"); \ +static_assert(sizeof(KismetMathLibrary_Quat_VectorForward) == 0x000040, "Wrong size on KismetMathLibrary_Quat_VectorForward"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorForward, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_VectorForward::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorForward, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_VectorForward::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_VectorRight \ +static_assert(alignof(KismetMathLibrary_Quat_VectorRight) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_VectorRight"); \ +static_assert(sizeof(KismetMathLibrary_Quat_VectorRight) == 0x000040, "Wrong size on KismetMathLibrary_Quat_VectorRight"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorRight, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_VectorRight::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorRight, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_VectorRight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Quat_VectorUp \ +static_assert(alignof(KismetMathLibrary_Quat_VectorUp) == 0x000010, "Wrong alignment on KismetMathLibrary_Quat_VectorUp"); \ +static_assert(sizeof(KismetMathLibrary_Quat_VectorUp) == 0x000040, "Wrong size on KismetMathLibrary_Quat_VectorUp"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorUp, Q) == 0x000000, "Member 'KismetMathLibrary_Quat_VectorUp::Q' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Quat_VectorUp, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Quat_VectorUp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_QuaternionSpringInterp \ +static_assert(alignof(KismetMathLibrary_QuaternionSpringInterp) == 0x000010, "Wrong alignment on KismetMathLibrary_QuaternionSpringInterp"); \ +static_assert(sizeof(KismetMathLibrary_QuaternionSpringInterp) == 0x0000C0, "Wrong size on KismetMathLibrary_QuaternionSpringInterp"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, Current) == 0x000000, "Member 'KismetMathLibrary_QuaternionSpringInterp::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, Target) == 0x000020, "Member 'KismetMathLibrary_QuaternionSpringInterp::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, SpringState) == 0x000040, "Member 'KismetMathLibrary_QuaternionSpringInterp::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, Stiffness) == 0x000080, "Member 'KismetMathLibrary_QuaternionSpringInterp::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, CriticalDampingFactor) == 0x000084, "Member 'KismetMathLibrary_QuaternionSpringInterp::CriticalDampingFactor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, DeltaTime) == 0x000088, "Member 'KismetMathLibrary_QuaternionSpringInterp::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, MASS) == 0x00008C, "Member 'KismetMathLibrary_QuaternionSpringInterp::MASS' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, TargetVelocityAmount) == 0x000090, "Member 'KismetMathLibrary_QuaternionSpringInterp::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, bInitializeFromTarget) == 0x000094, "Member 'KismetMathLibrary_QuaternionSpringInterp::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_QuaternionSpringInterp, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_QuaternionSpringInterp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RadiansToDegrees \ +static_assert(alignof(KismetMathLibrary_RadiansToDegrees) == 0x000008, "Wrong alignment on KismetMathLibrary_RadiansToDegrees"); \ +static_assert(sizeof(KismetMathLibrary_RadiansToDegrees) == 0x000010, "Wrong size on KismetMathLibrary_RadiansToDegrees"); \ +static_assert(offsetof(KismetMathLibrary_RadiansToDegrees, A) == 0x000000, "Member 'KismetMathLibrary_RadiansToDegrees::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RadiansToDegrees, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RadiansToDegrees::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomBool \ +static_assert(alignof(KismetMathLibrary_RandomBool) == 0x000001, "Wrong alignment on KismetMathLibrary_RandomBool"); \ +static_assert(sizeof(KismetMathLibrary_RandomBool) == 0x000001, "Wrong size on KismetMathLibrary_RandomBool"); \ +static_assert(offsetof(KismetMathLibrary_RandomBool, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_RandomBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomBoolFromStream \ +static_assert(alignof(KismetMathLibrary_RandomBoolFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomBoolFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomBoolFromStream) == 0x00000C, "Wrong size on KismetMathLibrary_RandomBoolFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomBoolFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolFromStream, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomBoolFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomBoolWithWeight \ +static_assert(alignof(KismetMathLibrary_RandomBoolWithWeight) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomBoolWithWeight"); \ +static_assert(sizeof(KismetMathLibrary_RandomBoolWithWeight) == 0x000008, "Wrong size on KismetMathLibrary_RandomBoolWithWeight"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolWithWeight, Weight) == 0x000000, "Member 'KismetMathLibrary_RandomBoolWithWeight::Weight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolWithWeight, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_RandomBoolWithWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomBoolWithWeightFromStream \ +static_assert(alignof(KismetMathLibrary_RandomBoolWithWeightFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomBoolWithWeightFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomBoolWithWeightFromStream) == 0x000010, "Wrong size on KismetMathLibrary_RandomBoolWithWeightFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolWithWeightFromStream, RandomStream) == 0x000000, "Member 'KismetMathLibrary_RandomBoolWithWeightFromStream::RandomStream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolWithWeightFromStream, Weight) == 0x000008, "Member 'KismetMathLibrary_RandomBoolWithWeightFromStream::Weight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomBoolWithWeightFromStream, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_RandomBoolWithWeightFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomFloat \ +static_assert(alignof(KismetMathLibrary_RandomFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomFloat"); \ +static_assert(sizeof(KismetMathLibrary_RandomFloat) == 0x000008, "Wrong size on KismetMathLibrary_RandomFloat"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloat, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_RandomFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomFloatFromStream \ +static_assert(alignof(KismetMathLibrary_RandomFloatFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomFloatFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomFloatFromStream) == 0x00000C, "Wrong size on KismetMathLibrary_RandomFloatFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomFloatFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatFromStream, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomFloatFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomFloatInRange \ +static_assert(alignof(KismetMathLibrary_RandomFloatInRange) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomFloatInRange"); \ +static_assert(sizeof(KismetMathLibrary_RandomFloatInRange) == 0x000018, "Wrong size on KismetMathLibrary_RandomFloatInRange"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRange, Min) == 0x000000, "Member 'KismetMathLibrary_RandomFloatInRange::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRange, Max) == 0x000008, "Member 'KismetMathLibrary_RandomFloatInRange::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRange, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RandomFloatInRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomFloatInRangeFromStream \ +static_assert(alignof(KismetMathLibrary_RandomFloatInRangeFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomFloatInRangeFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomFloatInRangeFromStream) == 0x000014, "Wrong size on KismetMathLibrary_RandomFloatInRangeFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRangeFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomFloatInRangeFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRangeFromStream, Min) == 0x000008, "Member 'KismetMathLibrary_RandomFloatInRangeFromStream::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRangeFromStream, Max) == 0x00000C, "Member 'KismetMathLibrary_RandomFloatInRangeFromStream::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomFloatInRangeFromStream, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RandomFloatInRangeFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomInteger \ +static_assert(alignof(KismetMathLibrary_RandomInteger) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomInteger"); \ +static_assert(sizeof(KismetMathLibrary_RandomInteger) == 0x000008, "Wrong size on KismetMathLibrary_RandomInteger"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger, Max) == 0x000000, "Member 'KismetMathLibrary_RandomInteger::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_RandomInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomInteger64 \ +static_assert(alignof(KismetMathLibrary_RandomInteger64) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomInteger64"); \ +static_assert(sizeof(KismetMathLibrary_RandomInteger64) == 0x000010, "Wrong size on KismetMathLibrary_RandomInteger64"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger64, Max) == 0x000000, "Member 'KismetMathLibrary_RandomInteger64::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomInteger64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomInteger64InRange \ +static_assert(alignof(KismetMathLibrary_RandomInteger64InRange) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomInteger64InRange"); \ +static_assert(sizeof(KismetMathLibrary_RandomInteger64InRange) == 0x000018, "Wrong size on KismetMathLibrary_RandomInteger64InRange"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger64InRange, Min) == 0x000000, "Member 'KismetMathLibrary_RandomInteger64InRange::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger64InRange, Max) == 0x000008, "Member 'KismetMathLibrary_RandomInteger64InRange::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomInteger64InRange, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RandomInteger64InRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomIntegerFromStream \ +static_assert(alignof(KismetMathLibrary_RandomIntegerFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomIntegerFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomIntegerFromStream) == 0x000010, "Wrong size on KismetMathLibrary_RandomIntegerFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomIntegerFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerFromStream, Max) == 0x000008, "Member 'KismetMathLibrary_RandomIntegerFromStream::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerFromStream, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_RandomIntegerFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomIntegerInRange \ +static_assert(alignof(KismetMathLibrary_RandomIntegerInRange) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomIntegerInRange"); \ +static_assert(sizeof(KismetMathLibrary_RandomIntegerInRange) == 0x00000C, "Wrong size on KismetMathLibrary_RandomIntegerInRange"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRange, Min) == 0x000000, "Member 'KismetMathLibrary_RandomIntegerInRange::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRange, Max) == 0x000004, "Member 'KismetMathLibrary_RandomIntegerInRange::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRange, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomIntegerInRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomIntegerInRangeFromStream \ +static_assert(alignof(KismetMathLibrary_RandomIntegerInRangeFromStream) == 0x000004, "Wrong alignment on KismetMathLibrary_RandomIntegerInRangeFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomIntegerInRangeFromStream) == 0x000014, "Wrong size on KismetMathLibrary_RandomIntegerInRangeFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRangeFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomIntegerInRangeFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRangeFromStream, Min) == 0x000008, "Member 'KismetMathLibrary_RandomIntegerInRangeFromStream::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRangeFromStream, Max) == 0x00000C, "Member 'KismetMathLibrary_RandomIntegerInRangeFromStream::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomIntegerInRangeFromStream, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RandomIntegerInRangeFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomPointInBoundingBox \ +static_assert(alignof(KismetMathLibrary_RandomPointInBoundingBox) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomPointInBoundingBox"); \ +static_assert(sizeof(KismetMathLibrary_RandomPointInBoundingBox) == 0x000048, "Wrong size on KismetMathLibrary_RandomPointInBoundingBox"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBox, Center) == 0x000000, "Member 'KismetMathLibrary_RandomPointInBoundingBox::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBox, HalfSize) == 0x000018, "Member 'KismetMathLibrary_RandomPointInBoundingBox::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBox, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_RandomPointInBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomPointInBoundingBox_Box \ +static_assert(alignof(KismetMathLibrary_RandomPointInBoundingBox_Box) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomPointInBoundingBox_Box"); \ +static_assert(sizeof(KismetMathLibrary_RandomPointInBoundingBox_Box) == 0x000050, "Wrong size on KismetMathLibrary_RandomPointInBoundingBox_Box"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBox_Box, Box) == 0x000000, "Member 'KismetMathLibrary_RandomPointInBoundingBox_Box::Box' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBox_Box, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RandomPointInBoundingBox_Box::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomPointInBoundingBoxFromStream \ +static_assert(alignof(KismetMathLibrary_RandomPointInBoundingBoxFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomPointInBoundingBoxFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomPointInBoundingBoxFromStream) == 0x000050, "Wrong size on KismetMathLibrary_RandomPointInBoundingBoxFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream, Center) == 0x000008, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream, HalfSize) == 0x000020, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box \ +static_assert(alignof(KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box"); \ +static_assert(sizeof(KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box) == 0x000058, "Wrong size on KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box, Box) == 0x000008, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box::Box' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomRotator \ +static_assert(alignof(KismetMathLibrary_RandomRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomRotator"); \ +static_assert(sizeof(KismetMathLibrary_RandomRotator) == 0x000020, "Wrong size on KismetMathLibrary_RandomRotator"); \ +static_assert(offsetof(KismetMathLibrary_RandomRotator, bRoll) == 0x000000, "Member 'KismetMathLibrary_RandomRotator::bRoll' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomRotator, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomRotatorFromStream \ +static_assert(alignof(KismetMathLibrary_RandomRotatorFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomRotatorFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomRotatorFromStream) == 0x000028, "Wrong size on KismetMathLibrary_RandomRotatorFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomRotatorFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomRotatorFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomRotatorFromStream, bRoll) == 0x000008, "Member 'KismetMathLibrary_RandomRotatorFromStream::bRoll' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomRotatorFromStream, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RandomRotatorFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVector \ +static_assert(alignof(KismetMathLibrary_RandomUnitVector) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVector"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVector) == 0x000018, "Wrong size on KismetMathLibrary_RandomUnitVector"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVector, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorFromStream \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorFromStream) == 0x000020, "Wrong size on KismetMathLibrary_RandomUnitVectorFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorFromStream, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_RandomUnitVectorFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInConeInDegrees \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInConeInDegrees) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInConeInDegrees"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInConeInDegrees) == 0x000038, "Wrong size on KismetMathLibrary_RandomUnitVectorInConeInDegrees"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegrees, ConeDir) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegrees::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegrees, ConeHalfAngleInDegrees) == 0x000018, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegrees::ConeHalfAngleInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegrees, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegrees::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream) == 0x000040, "Wrong size on KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream, ConeDir) == 0x000008, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream, ConeHalfAngleInDegrees) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream::ConeHalfAngleInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInConeInRadians \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInConeInRadians) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInConeInRadians"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInConeInRadians) == 0x000038, "Wrong size on KismetMathLibrary_RandomUnitVectorInConeInRadians"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadians, ConeDir) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadians::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadians, ConeHalfAngleInRadians) == 0x000018, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadians::ConeHalfAngleInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadians, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadians::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream) == 0x000040, "Wrong size on KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream, ConeDir) == 0x000008, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream, ConeHalfAngleInRadians) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream::ConeHalfAngleInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees) == 0x000038, "Wrong size on KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees, ConeDir) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees, MaxYawInDegrees) == 0x000018, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees::MaxYawInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees, MaxPitchInDegrees) == 0x00001C, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees::MaxPitchInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream) == 0x000040, "Wrong size on KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream, ConeDir) == 0x000008, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream, MaxYawInDegrees) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream::MaxYawInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream, MaxPitchInDegrees) == 0x000024, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream::MaxPitchInDegrees' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians) == 0x000038, "Wrong size on KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians, ConeDir) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians, MaxYawInRadians) == 0x000018, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians::MaxYawInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians, MaxPitchInRadians) == 0x00001C, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians::MaxPitchInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream \ +static_assert(alignof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream) == 0x000008, "Wrong alignment on KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream"); \ +static_assert(sizeof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream) == 0x000040, "Wrong size on KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream, Stream) == 0x000000, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream, ConeDir) == 0x000008, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream::ConeDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream, MaxYawInRadians) == 0x000020, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream::MaxYawInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream, MaxPitchInRadians) == 0x000024, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream::MaxPitchInRadians' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_REase \ +static_assert(alignof(KismetMathLibrary_REase) == 0x000008, "Wrong alignment on KismetMathLibrary_REase"); \ +static_assert(sizeof(KismetMathLibrary_REase) == 0x000058, "Wrong size on KismetMathLibrary_REase"); \ +static_assert(offsetof(KismetMathLibrary_REase, A) == 0x000000, "Member 'KismetMathLibrary_REase::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, B) == 0x000018, "Member 'KismetMathLibrary_REase::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, alpha) == 0x000030, "Member 'KismetMathLibrary_REase::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, bShortestPath) == 0x000034, "Member 'KismetMathLibrary_REase::bShortestPath' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, EasingFunc) == 0x000035, "Member 'KismetMathLibrary_REase::EasingFunc' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, BlendExp) == 0x000038, "Member 'KismetMathLibrary_REase::BlendExp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, Steps) == 0x00003C, "Member 'KismetMathLibrary_REase::Steps' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_REase, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_REase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ResetFloatSpringState \ +static_assert(alignof(KismetMathLibrary_ResetFloatSpringState) == 0x000004, "Wrong alignment on KismetMathLibrary_ResetFloatSpringState"); \ +static_assert(sizeof(KismetMathLibrary_ResetFloatSpringState) == 0x00000C, "Wrong size on KismetMathLibrary_ResetFloatSpringState"); \ +static_assert(offsetof(KismetMathLibrary_ResetFloatSpringState, SpringState) == 0x000000, "Member 'KismetMathLibrary_ResetFloatSpringState::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ResetQuaternionSpringState \ +static_assert(alignof(KismetMathLibrary_ResetQuaternionSpringState) == 0x000010, "Wrong alignment on KismetMathLibrary_ResetQuaternionSpringState"); \ +static_assert(sizeof(KismetMathLibrary_ResetQuaternionSpringState) == 0x000040, "Wrong size on KismetMathLibrary_ResetQuaternionSpringState"); \ +static_assert(offsetof(KismetMathLibrary_ResetQuaternionSpringState, SpringState) == 0x000000, "Member 'KismetMathLibrary_ResetQuaternionSpringState::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ResetRandomStream \ +static_assert(alignof(KismetMathLibrary_ResetRandomStream) == 0x000004, "Wrong alignment on KismetMathLibrary_ResetRandomStream"); \ +static_assert(sizeof(KismetMathLibrary_ResetRandomStream) == 0x000008, "Wrong size on KismetMathLibrary_ResetRandomStream"); \ +static_assert(offsetof(KismetMathLibrary_ResetRandomStream, Stream) == 0x000000, "Member 'KismetMathLibrary_ResetRandomStream::Stream' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ResetVectorSpringState \ +static_assert(alignof(KismetMathLibrary_ResetVectorSpringState) == 0x000008, "Wrong alignment on KismetMathLibrary_ResetVectorSpringState"); \ +static_assert(sizeof(KismetMathLibrary_ResetVectorSpringState) == 0x000038, "Wrong size on KismetMathLibrary_ResetVectorSpringState"); \ +static_assert(offsetof(KismetMathLibrary_ResetVectorSpringState, SpringState) == 0x000000, "Member 'KismetMathLibrary_ResetVectorSpringState::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RGBLinearToHSV \ +static_assert(alignof(KismetMathLibrary_RGBLinearToHSV) == 0x000004, "Wrong alignment on KismetMathLibrary_RGBLinearToHSV"); \ +static_assert(sizeof(KismetMathLibrary_RGBLinearToHSV) == 0x000020, "Wrong size on KismetMathLibrary_RGBLinearToHSV"); \ +static_assert(offsetof(KismetMathLibrary_RGBLinearToHSV, RGB) == 0x000000, "Member 'KismetMathLibrary_RGBLinearToHSV::RGB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBLinearToHSV, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_RGBLinearToHSV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RGBToHSV \ +static_assert(alignof(KismetMathLibrary_RGBToHSV) == 0x000004, "Wrong alignment on KismetMathLibrary_RGBToHSV"); \ +static_assert(sizeof(KismetMathLibrary_RGBToHSV) == 0x000020, "Wrong size on KismetMathLibrary_RGBToHSV"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV, InColor) == 0x000000, "Member 'KismetMathLibrary_RGBToHSV::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV, H) == 0x000010, "Member 'KismetMathLibrary_RGBToHSV::H' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV, S) == 0x000014, "Member 'KismetMathLibrary_RGBToHSV::S' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV, V) == 0x000018, "Member 'KismetMathLibrary_RGBToHSV::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV, A) == 0x00001C, "Member 'KismetMathLibrary_RGBToHSV::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RGBToHSV_Vector \ +static_assert(alignof(KismetMathLibrary_RGBToHSV_Vector) == 0x000004, "Wrong alignment on KismetMathLibrary_RGBToHSV_Vector"); \ +static_assert(sizeof(KismetMathLibrary_RGBToHSV_Vector) == 0x000020, "Wrong size on KismetMathLibrary_RGBToHSV_Vector"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV_Vector, RGB) == 0x000000, "Member 'KismetMathLibrary_RGBToHSV_Vector::RGB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RGBToHSV_Vector, HSV) == 0x000010, "Member 'KismetMathLibrary_RGBToHSV_Vector::HSV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RInterpTo \ +static_assert(alignof(KismetMathLibrary_RInterpTo) == 0x000008, "Wrong alignment on KismetMathLibrary_RInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_RInterpTo) == 0x000050, "Wrong size on KismetMathLibrary_RInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_RInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo, Target) == 0x000018, "Member 'KismetMathLibrary_RInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo, DeltaTime) == 0x000030, "Member 'KismetMathLibrary_RInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo, InterpSpeed) == 0x000034, "Member 'KismetMathLibrary_RInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RInterpTo_Constant \ +static_assert(alignof(KismetMathLibrary_RInterpTo_Constant) == 0x000008, "Wrong alignment on KismetMathLibrary_RInterpTo_Constant"); \ +static_assert(sizeof(KismetMathLibrary_RInterpTo_Constant) == 0x000050, "Wrong size on KismetMathLibrary_RInterpTo_Constant"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo_Constant, Current) == 0x000000, "Member 'KismetMathLibrary_RInterpTo_Constant::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo_Constant, Target) == 0x000018, "Member 'KismetMathLibrary_RInterpTo_Constant::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo_Constant, DeltaTime) == 0x000030, "Member 'KismetMathLibrary_RInterpTo_Constant::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo_Constant, InterpSpeed) == 0x000034, "Member 'KismetMathLibrary_RInterpTo_Constant::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RInterpTo_Constant, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RInterpTo_Constant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RLerp \ +static_assert(alignof(KismetMathLibrary_RLerp) == 0x000008, "Wrong alignment on KismetMathLibrary_RLerp"); \ +static_assert(sizeof(KismetMathLibrary_RLerp) == 0x000050, "Wrong size on KismetMathLibrary_RLerp"); \ +static_assert(offsetof(KismetMathLibrary_RLerp, A) == 0x000000, "Member 'KismetMathLibrary_RLerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RLerp, B) == 0x000018, "Member 'KismetMathLibrary_RLerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RLerp, alpha) == 0x000030, "Member 'KismetMathLibrary_RLerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RLerp, bShortestPath) == 0x000034, "Member 'KismetMathLibrary_RLerp::bShortestPath' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RLerp, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RLerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RotateAngleAxis \ +static_assert(alignof(KismetMathLibrary_RotateAngleAxis) == 0x000008, "Wrong alignment on KismetMathLibrary_RotateAngleAxis"); \ +static_assert(sizeof(KismetMathLibrary_RotateAngleAxis) == 0x000050, "Wrong size on KismetMathLibrary_RotateAngleAxis"); \ +static_assert(offsetof(KismetMathLibrary_RotateAngleAxis, InVect) == 0x000000, "Member 'KismetMathLibrary_RotateAngleAxis::InVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RotateAngleAxis, AngleDeg) == 0x000018, "Member 'KismetMathLibrary_RotateAngleAxis::AngleDeg' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RotateAngleAxis, Axis) == 0x000020, "Member 'KismetMathLibrary_RotateAngleAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RotateAngleAxis, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_RotateAngleAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_RotatorFromAxisAndAngle \ +static_assert(alignof(KismetMathLibrary_RotatorFromAxisAndAngle) == 0x000008, "Wrong alignment on KismetMathLibrary_RotatorFromAxisAndAngle"); \ +static_assert(sizeof(KismetMathLibrary_RotatorFromAxisAndAngle) == 0x000038, "Wrong size on KismetMathLibrary_RotatorFromAxisAndAngle"); \ +static_assert(offsetof(KismetMathLibrary_RotatorFromAxisAndAngle, Axis) == 0x000000, "Member 'KismetMathLibrary_RotatorFromAxisAndAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RotatorFromAxisAndAngle, Angle) == 0x000018, "Member 'KismetMathLibrary_RotatorFromAxisAndAngle::Angle' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_RotatorFromAxisAndAngle, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_RotatorFromAxisAndAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Round \ +static_assert(alignof(KismetMathLibrary_Round) == 0x000008, "Wrong alignment on KismetMathLibrary_Round"); \ +static_assert(sizeof(KismetMathLibrary_Round) == 0x000010, "Wrong size on KismetMathLibrary_Round"); \ +static_assert(offsetof(KismetMathLibrary_Round, A) == 0x000000, "Member 'KismetMathLibrary_Round::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Round, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Round::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Round64 \ +static_assert(alignof(KismetMathLibrary_Round64) == 0x000008, "Wrong alignment on KismetMathLibrary_Round64"); \ +static_assert(sizeof(KismetMathLibrary_Round64) == 0x000010, "Wrong size on KismetMathLibrary_Round64"); \ +static_assert(offsetof(KismetMathLibrary_Round64, A) == 0x000000, "Member 'KismetMathLibrary_Round64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Round64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Round64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SafeDivide \ +static_assert(alignof(KismetMathLibrary_SafeDivide) == 0x000008, "Wrong alignment on KismetMathLibrary_SafeDivide"); \ +static_assert(sizeof(KismetMathLibrary_SafeDivide) == 0x000018, "Wrong size on KismetMathLibrary_SafeDivide"); \ +static_assert(offsetof(KismetMathLibrary_SafeDivide, A) == 0x000000, "Member 'KismetMathLibrary_SafeDivide::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SafeDivide, B) == 0x000008, "Member 'KismetMathLibrary_SafeDivide::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SafeDivide, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_SafeDivide::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SeedRandomStream \ +static_assert(alignof(KismetMathLibrary_SeedRandomStream) == 0x000004, "Wrong alignment on KismetMathLibrary_SeedRandomStream"); \ +static_assert(sizeof(KismetMathLibrary_SeedRandomStream) == 0x000008, "Wrong size on KismetMathLibrary_SeedRandomStream"); \ +static_assert(offsetof(KismetMathLibrary_SeedRandomStream, Stream) == 0x000000, "Member 'KismetMathLibrary_SeedRandomStream::Stream' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectClass \ +static_assert(alignof(KismetMathLibrary_SelectClass) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectClass"); \ +static_assert(sizeof(KismetMathLibrary_SelectClass) == 0x000020, "Wrong size on KismetMathLibrary_SelectClass"); \ +static_assert(offsetof(KismetMathLibrary_SelectClass, A) == 0x000000, "Member 'KismetMathLibrary_SelectClass::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectClass, B) == 0x000008, "Member 'KismetMathLibrary_SelectClass::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectClass, bSelectA) == 0x000010, "Member 'KismetMathLibrary_SelectClass::bSelectA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectClass, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_SelectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectColor \ +static_assert(alignof(KismetMathLibrary_SelectColor) == 0x000004, "Wrong alignment on KismetMathLibrary_SelectColor"); \ +static_assert(sizeof(KismetMathLibrary_SelectColor) == 0x000034, "Wrong size on KismetMathLibrary_SelectColor"); \ +static_assert(offsetof(KismetMathLibrary_SelectColor, A) == 0x000000, "Member 'KismetMathLibrary_SelectColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectColor, B) == 0x000010, "Member 'KismetMathLibrary_SelectColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectColor, bPickA) == 0x000020, "Member 'KismetMathLibrary_SelectColor::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectColor, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_SelectColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectFloat \ +static_assert(alignof(KismetMathLibrary_SelectFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectFloat"); \ +static_assert(sizeof(KismetMathLibrary_SelectFloat) == 0x000020, "Wrong size on KismetMathLibrary_SelectFloat"); \ +static_assert(offsetof(KismetMathLibrary_SelectFloat, A) == 0x000000, "Member 'KismetMathLibrary_SelectFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectFloat, B) == 0x000008, "Member 'KismetMathLibrary_SelectFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectFloat, bPickA) == 0x000010, "Member 'KismetMathLibrary_SelectFloat::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_SelectFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectInt \ +static_assert(alignof(KismetMathLibrary_SelectInt) == 0x000004, "Wrong alignment on KismetMathLibrary_SelectInt"); \ +static_assert(sizeof(KismetMathLibrary_SelectInt) == 0x000010, "Wrong size on KismetMathLibrary_SelectInt"); \ +static_assert(offsetof(KismetMathLibrary_SelectInt, A) == 0x000000, "Member 'KismetMathLibrary_SelectInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectInt, B) == 0x000004, "Member 'KismetMathLibrary_SelectInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectInt, bPickA) == 0x000008, "Member 'KismetMathLibrary_SelectInt::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectInt, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_SelectInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectObject \ +static_assert(alignof(KismetMathLibrary_SelectObject) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectObject"); \ +static_assert(sizeof(KismetMathLibrary_SelectObject) == 0x000020, "Wrong size on KismetMathLibrary_SelectObject"); \ +static_assert(offsetof(KismetMathLibrary_SelectObject, A) == 0x000000, "Member 'KismetMathLibrary_SelectObject::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectObject, B) == 0x000008, "Member 'KismetMathLibrary_SelectObject::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectObject, bSelectA) == 0x000010, "Member 'KismetMathLibrary_SelectObject::bSelectA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectObject, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_SelectObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectRotator \ +static_assert(alignof(KismetMathLibrary_SelectRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectRotator"); \ +static_assert(sizeof(KismetMathLibrary_SelectRotator) == 0x000050, "Wrong size on KismetMathLibrary_SelectRotator"); \ +static_assert(offsetof(KismetMathLibrary_SelectRotator, A) == 0x000000, "Member 'KismetMathLibrary_SelectRotator::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectRotator, B) == 0x000018, "Member 'KismetMathLibrary_SelectRotator::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectRotator, bPickA) == 0x000030, "Member 'KismetMathLibrary_SelectRotator::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectRotator, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_SelectRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectString \ +static_assert(alignof(KismetMathLibrary_SelectString) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectString"); \ +static_assert(sizeof(KismetMathLibrary_SelectString) == 0x000038, "Wrong size on KismetMathLibrary_SelectString"); \ +static_assert(offsetof(KismetMathLibrary_SelectString, A) == 0x000000, "Member 'KismetMathLibrary_SelectString::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectString, B) == 0x000010, "Member 'KismetMathLibrary_SelectString::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectString, bPickA) == 0x000020, "Member 'KismetMathLibrary_SelectString::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectString, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_SelectString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectTransform \ +static_assert(alignof(KismetMathLibrary_SelectTransform) == 0x000010, "Wrong alignment on KismetMathLibrary_SelectTransform"); \ +static_assert(sizeof(KismetMathLibrary_SelectTransform) == 0x000130, "Wrong size on KismetMathLibrary_SelectTransform"); \ +static_assert(offsetof(KismetMathLibrary_SelectTransform, A) == 0x000000, "Member 'KismetMathLibrary_SelectTransform::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectTransform, B) == 0x000060, "Member 'KismetMathLibrary_SelectTransform::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectTransform, bPickA) == 0x0000C0, "Member 'KismetMathLibrary_SelectTransform::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectTransform, ReturnValue) == 0x0000D0, "Member 'KismetMathLibrary_SelectTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SelectVector \ +static_assert(alignof(KismetMathLibrary_SelectVector) == 0x000008, "Wrong alignment on KismetMathLibrary_SelectVector"); \ +static_assert(sizeof(KismetMathLibrary_SelectVector) == 0x000050, "Wrong size on KismetMathLibrary_SelectVector"); \ +static_assert(offsetof(KismetMathLibrary_SelectVector, A) == 0x000000, "Member 'KismetMathLibrary_SelectVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectVector, B) == 0x000018, "Member 'KismetMathLibrary_SelectVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectVector, bPickA) == 0x000030, "Member 'KismetMathLibrary_SelectVector::bPickA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SelectVector, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_SelectVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Set2D \ +static_assert(alignof(KismetMathLibrary_Set2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Set2D"); \ +static_assert(sizeof(KismetMathLibrary_Set2D) == 0x000020, "Wrong size on KismetMathLibrary_Set2D"); \ +static_assert(offsetof(KismetMathLibrary_Set2D, A) == 0x000000, "Member 'KismetMathLibrary_Set2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Set2D, X) == 0x000010, "Member 'KismetMathLibrary_Set2D::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Set2D, Y) == 0x000018, "Member 'KismetMathLibrary_Set2D::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SetFloatSpringStateVelocity \ +static_assert(alignof(KismetMathLibrary_SetFloatSpringStateVelocity) == 0x000004, "Wrong alignment on KismetMathLibrary_SetFloatSpringStateVelocity"); \ +static_assert(sizeof(KismetMathLibrary_SetFloatSpringStateVelocity) == 0x000010, "Wrong size on KismetMathLibrary_SetFloatSpringStateVelocity"); \ +static_assert(offsetof(KismetMathLibrary_SetFloatSpringStateVelocity, SpringState) == 0x000000, "Member 'KismetMathLibrary_SetFloatSpringStateVelocity::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SetFloatSpringStateVelocity, Velocity) == 0x00000C, "Member 'KismetMathLibrary_SetFloatSpringStateVelocity::Velocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SetQuaternionSpringStateAngularVelocity \ +static_assert(alignof(KismetMathLibrary_SetQuaternionSpringStateAngularVelocity) == 0x000010, "Wrong alignment on KismetMathLibrary_SetQuaternionSpringStateAngularVelocity"); \ +static_assert(sizeof(KismetMathLibrary_SetQuaternionSpringStateAngularVelocity) == 0x000060, "Wrong size on KismetMathLibrary_SetQuaternionSpringStateAngularVelocity"); \ +static_assert(offsetof(KismetMathLibrary_SetQuaternionSpringStateAngularVelocity, SpringState) == 0x000000, "Member 'KismetMathLibrary_SetQuaternionSpringStateAngularVelocity::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SetQuaternionSpringStateAngularVelocity, AngularVelocity) == 0x000040, "Member 'KismetMathLibrary_SetQuaternionSpringStateAngularVelocity::AngularVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SetRandomStreamSeed \ +static_assert(alignof(KismetMathLibrary_SetRandomStreamSeed) == 0x000004, "Wrong alignment on KismetMathLibrary_SetRandomStreamSeed"); \ +static_assert(sizeof(KismetMathLibrary_SetRandomStreamSeed) == 0x00000C, "Wrong size on KismetMathLibrary_SetRandomStreamSeed"); \ +static_assert(offsetof(KismetMathLibrary_SetRandomStreamSeed, Stream) == 0x000000, "Member 'KismetMathLibrary_SetRandomStreamSeed::Stream' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SetRandomStreamSeed, NewSeed) == 0x000008, "Member 'KismetMathLibrary_SetRandomStreamSeed::NewSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SetVectorSpringStateVelocity \ +static_assert(alignof(KismetMathLibrary_SetVectorSpringStateVelocity) == 0x000008, "Wrong alignment on KismetMathLibrary_SetVectorSpringStateVelocity"); \ +static_assert(sizeof(KismetMathLibrary_SetVectorSpringStateVelocity) == 0x000050, "Wrong size on KismetMathLibrary_SetVectorSpringStateVelocity"); \ +static_assert(offsetof(KismetMathLibrary_SetVectorSpringStateVelocity, SpringState) == 0x000000, "Member 'KismetMathLibrary_SetVectorSpringStateVelocity::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SetVectorSpringStateVelocity, Velocity) == 0x000038, "Member 'KismetMathLibrary_SetVectorSpringStateVelocity::Velocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SignOfFloat \ +static_assert(alignof(KismetMathLibrary_SignOfFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_SignOfFloat"); \ +static_assert(sizeof(KismetMathLibrary_SignOfFloat) == 0x000010, "Wrong size on KismetMathLibrary_SignOfFloat"); \ +static_assert(offsetof(KismetMathLibrary_SignOfFloat, A) == 0x000000, "Member 'KismetMathLibrary_SignOfFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SignOfFloat, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_SignOfFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SignOfInteger \ +static_assert(alignof(KismetMathLibrary_SignOfInteger) == 0x000004, "Wrong alignment on KismetMathLibrary_SignOfInteger"); \ +static_assert(sizeof(KismetMathLibrary_SignOfInteger) == 0x000008, "Wrong size on KismetMathLibrary_SignOfInteger"); \ +static_assert(offsetof(KismetMathLibrary_SignOfInteger, A) == 0x000000, "Member 'KismetMathLibrary_SignOfInteger::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SignOfInteger, ReturnValue) == 0x000004, "Member 'KismetMathLibrary_SignOfInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_SignOfInteger64 \ +static_assert(alignof(KismetMathLibrary_SignOfInteger64) == 0x000008, "Wrong alignment on KismetMathLibrary_SignOfInteger64"); \ +static_assert(sizeof(KismetMathLibrary_SignOfInteger64) == 0x000010, "Wrong size on KismetMathLibrary_SignOfInteger64"); \ +static_assert(offsetof(KismetMathLibrary_SignOfInteger64, A) == 0x000000, "Member 'KismetMathLibrary_SignOfInteger64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_SignOfInteger64, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_SignOfInteger64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Sin \ +static_assert(alignof(KismetMathLibrary_Sin) == 0x000008, "Wrong alignment on KismetMathLibrary_Sin"); \ +static_assert(sizeof(KismetMathLibrary_Sin) == 0x000010, "Wrong size on KismetMathLibrary_Sin"); \ +static_assert(offsetof(KismetMathLibrary_Sin, A) == 0x000000, "Member 'KismetMathLibrary_Sin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Sin, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Sin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Spherical2DToUnitCartesian \ +static_assert(alignof(KismetMathLibrary_Spherical2DToUnitCartesian) == 0x000008, "Wrong alignment on KismetMathLibrary_Spherical2DToUnitCartesian"); \ +static_assert(sizeof(KismetMathLibrary_Spherical2DToUnitCartesian) == 0x000028, "Wrong size on KismetMathLibrary_Spherical2DToUnitCartesian"); \ +static_assert(offsetof(KismetMathLibrary_Spherical2DToUnitCartesian, A) == 0x000000, "Member 'KismetMathLibrary_Spherical2DToUnitCartesian::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Spherical2DToUnitCartesian, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Spherical2DToUnitCartesian::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Sqrt \ +static_assert(alignof(KismetMathLibrary_Sqrt) == 0x000008, "Wrong alignment on KismetMathLibrary_Sqrt"); \ +static_assert(sizeof(KismetMathLibrary_Sqrt) == 0x000010, "Wrong size on KismetMathLibrary_Sqrt"); \ +static_assert(offsetof(KismetMathLibrary_Sqrt, A) == 0x000000, "Member 'KismetMathLibrary_Sqrt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Sqrt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Sqrt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Square \ +static_assert(alignof(KismetMathLibrary_Square) == 0x000008, "Wrong alignment on KismetMathLibrary_Square"); \ +static_assert(sizeof(KismetMathLibrary_Square) == 0x000010, "Wrong size on KismetMathLibrary_Square"); \ +static_assert(offsetof(KismetMathLibrary_Square, A) == 0x000000, "Member 'KismetMathLibrary_Square::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Square, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Square::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_ByteByte \ +static_assert(alignof(KismetMathLibrary_Subtract_ByteByte) == 0x000001, "Wrong alignment on KismetMathLibrary_Subtract_ByteByte"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_ByteByte) == 0x000003, "Wrong size on KismetMathLibrary_Subtract_ByteByte"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_ByteByte, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_ByteByte::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_ByteByte, B) == 0x000001, "Member 'KismetMathLibrary_Subtract_ByteByte::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_ByteByte, ReturnValue) == 0x000002, "Member 'KismetMathLibrary_Subtract_ByteByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_DateTimeDateTime \ +static_assert(alignof(KismetMathLibrary_Subtract_DateTimeDateTime) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_DateTimeDateTime"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_DateTimeDateTime) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_DateTimeDateTime"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeDateTime, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_DateTimeDateTime::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeDateTime, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_DateTimeDateTime::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeDateTime, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_DateTimeDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_DateTimeTimespan \ +static_assert(alignof(KismetMathLibrary_Subtract_DateTimeTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_DateTimeTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_DateTimeTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_DateTimeTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_DateTimeTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_DateTimeTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DateTimeTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_DateTimeTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_DoubleDouble \ +static_assert(alignof(KismetMathLibrary_Subtract_DoubleDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_DoubleDouble"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_DoubleDouble) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_DoubleDouble"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DoubleDouble, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_DoubleDouble::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DoubleDouble, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_DoubleDouble::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_DoubleDouble, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_DoubleDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Subtract_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_IntInt \ +static_assert(alignof(KismetMathLibrary_Subtract_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Subtract_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Subtract_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Subtract_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Subtract_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_IntPointInt \ +static_assert(alignof(KismetMathLibrary_Subtract_IntPointInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Subtract_IntPointInt"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_IntPointInt) == 0x000014, "Wrong size on KismetMathLibrary_Subtract_IntPointInt"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointInt, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_IntPointInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointInt, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_IntPointInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointInt, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Subtract_IntPointInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_IntPointIntPoint \ +static_assert(alignof(KismetMathLibrary_Subtract_IntPointIntPoint) == 0x000004, "Wrong alignment on KismetMathLibrary_Subtract_IntPointIntPoint"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_IntPointIntPoint) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_IntPointIntPoint"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointIntPoint, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_IntPointIntPoint::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointIntPoint, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_IntPointIntPoint::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_IntPointIntPoint, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_IntPointIntPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_LinearColorLinearColor \ +static_assert(alignof(KismetMathLibrary_Subtract_LinearColorLinearColor) == 0x000004, "Wrong alignment on KismetMathLibrary_Subtract_LinearColorLinearColor"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_LinearColorLinearColor) == 0x000030, "Wrong size on KismetMathLibrary_Subtract_LinearColorLinearColor"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_LinearColorLinearColor, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_LinearColorLinearColor::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_LinearColorLinearColor, B) == 0x000010, "Member 'KismetMathLibrary_Subtract_LinearColorLinearColor::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_LinearColorLinearColor, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Subtract_LinearColorLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_QuatQuat \ +static_assert(alignof(KismetMathLibrary_Subtract_QuatQuat) == 0x000010, "Wrong alignment on KismetMathLibrary_Subtract_QuatQuat"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_QuatQuat) == 0x000060, "Wrong size on KismetMathLibrary_Subtract_QuatQuat"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_QuatQuat, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_QuatQuat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_QuatQuat, B) == 0x000020, "Member 'KismetMathLibrary_Subtract_QuatQuat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_QuatQuat, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Subtract_QuatQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_TimespanTimespan \ +static_assert(alignof(KismetMathLibrary_Subtract_TimespanTimespan) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_TimespanTimespan"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_TimespanTimespan) == 0x000018, "Wrong size on KismetMathLibrary_Subtract_TimespanTimespan"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_TimespanTimespan, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_TimespanTimespan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_TimespanTimespan, B) == 0x000008, "Member 'KismetMathLibrary_Subtract_TimespanTimespan::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_TimespanTimespan, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Subtract_TimespanTimespan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_Vector2DFloat \ +static_assert(alignof(KismetMathLibrary_Subtract_Vector2DFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_Vector2DFloat"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_Vector2DFloat) == 0x000028, "Wrong size on KismetMathLibrary_Subtract_Vector2DFloat"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DFloat, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_Vector2DFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DFloat, B) == 0x000010, "Member 'KismetMathLibrary_Subtract_Vector2DFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DFloat, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Subtract_Vector2DFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_Vector2DVector2D \ +static_assert(alignof(KismetMathLibrary_Subtract_Vector2DVector2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_Vector2DVector2D"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_Vector2DVector2D) == 0x000030, "Wrong size on KismetMathLibrary_Subtract_Vector2DVector2D"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DVector2D, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_Vector2DVector2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DVector2D, B) == 0x000010, "Member 'KismetMathLibrary_Subtract_Vector2DVector2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector2DVector2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Subtract_Vector2DVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_Vector4Vector4 \ +static_assert(alignof(KismetMathLibrary_Subtract_Vector4Vector4) == 0x000010, "Wrong alignment on KismetMathLibrary_Subtract_Vector4Vector4"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_Vector4Vector4) == 0x000060, "Wrong size on KismetMathLibrary_Subtract_Vector4Vector4"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector4Vector4, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_Vector4Vector4::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector4Vector4, B) == 0x000020, "Member 'KismetMathLibrary_Subtract_Vector4Vector4::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_Vector4Vector4, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Subtract_Vector4Vector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_VectorFloat \ +static_assert(alignof(KismetMathLibrary_Subtract_VectorFloat) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_VectorFloat"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_VectorFloat) == 0x000038, "Wrong size on KismetMathLibrary_Subtract_VectorFloat"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorFloat, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_VectorFloat::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorFloat, B) == 0x000018, "Member 'KismetMathLibrary_Subtract_VectorFloat::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorFloat, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Subtract_VectorFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_VectorInt \ +static_assert(alignof(KismetMathLibrary_Subtract_VectorInt) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_VectorInt"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_VectorInt) == 0x000038, "Wrong size on KismetMathLibrary_Subtract_VectorInt"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorInt, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_VectorInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorInt, B) == 0x000018, "Member 'KismetMathLibrary_Subtract_VectorInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorInt, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Subtract_VectorInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Subtract_VectorVector \ +static_assert(alignof(KismetMathLibrary_Subtract_VectorVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Subtract_VectorVector"); \ +static_assert(sizeof(KismetMathLibrary_Subtract_VectorVector) == 0x000048, "Wrong size on KismetMathLibrary_Subtract_VectorVector"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorVector, A) == 0x000000, "Member 'KismetMathLibrary_Subtract_VectorVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorVector, B) == 0x000018, "Member 'KismetMathLibrary_Subtract_VectorVector::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Subtract_VectorVector, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Subtract_VectorVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Tan \ +static_assert(alignof(KismetMathLibrary_Tan) == 0x000008, "Wrong alignment on KismetMathLibrary_Tan"); \ +static_assert(sizeof(KismetMathLibrary_Tan) == 0x000010, "Wrong size on KismetMathLibrary_Tan"); \ +static_assert(offsetof(KismetMathLibrary_Tan, A) == 0x000000, "Member 'KismetMathLibrary_Tan::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Tan, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Tan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TEase \ +static_assert(alignof(KismetMathLibrary_TEase) == 0x000010, "Wrong alignment on KismetMathLibrary_TEase"); \ +static_assert(sizeof(KismetMathLibrary_TEase) == 0x000130, "Wrong size on KismetMathLibrary_TEase"); \ +static_assert(offsetof(KismetMathLibrary_TEase, A) == 0x000000, "Member 'KismetMathLibrary_TEase::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, B) == 0x000060, "Member 'KismetMathLibrary_TEase::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, alpha) == 0x0000C0, "Member 'KismetMathLibrary_TEase::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, EasingFunc) == 0x0000C4, "Member 'KismetMathLibrary_TEase::EasingFunc' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, BlendExp) == 0x0000C8, "Member 'KismetMathLibrary_TEase::BlendExp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, Steps) == 0x0000CC, "Member 'KismetMathLibrary_TEase::Steps' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TEase, ReturnValue) == 0x0000D0, "Member 'KismetMathLibrary_TEase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TimespanFromString \ +static_assert(alignof(KismetMathLibrary_TimespanFromString) == 0x000008, "Wrong alignment on KismetMathLibrary_TimespanFromString"); \ +static_assert(sizeof(KismetMathLibrary_TimespanFromString) == 0x000020, "Wrong size on KismetMathLibrary_TimespanFromString"); \ +static_assert(offsetof(KismetMathLibrary_TimespanFromString, TimespanString) == 0x000000, "Member 'KismetMathLibrary_TimespanFromString::TimespanString' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TimespanFromString, Result) == 0x000010, "Member 'KismetMathLibrary_TimespanFromString::Result' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TimespanFromString, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_TimespanFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TimespanMaxValue \ +static_assert(alignof(KismetMathLibrary_TimespanMaxValue) == 0x000008, "Wrong alignment on KismetMathLibrary_TimespanMaxValue"); \ +static_assert(sizeof(KismetMathLibrary_TimespanMaxValue) == 0x000008, "Wrong size on KismetMathLibrary_TimespanMaxValue"); \ +static_assert(offsetof(KismetMathLibrary_TimespanMaxValue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_TimespanMaxValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TimespanMinValue \ +static_assert(alignof(KismetMathLibrary_TimespanMinValue) == 0x000008, "Wrong alignment on KismetMathLibrary_TimespanMinValue"); \ +static_assert(sizeof(KismetMathLibrary_TimespanMinValue) == 0x000008, "Wrong size on KismetMathLibrary_TimespanMinValue"); \ +static_assert(offsetof(KismetMathLibrary_TimespanMinValue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_TimespanMinValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TimespanRatio \ +static_assert(alignof(KismetMathLibrary_TimespanRatio) == 0x000008, "Wrong alignment on KismetMathLibrary_TimespanRatio"); \ +static_assert(sizeof(KismetMathLibrary_TimespanRatio) == 0x000018, "Wrong size on KismetMathLibrary_TimespanRatio"); \ +static_assert(offsetof(KismetMathLibrary_TimespanRatio, A) == 0x000000, "Member 'KismetMathLibrary_TimespanRatio::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TimespanRatio, B) == 0x000008, "Member 'KismetMathLibrary_TimespanRatio::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TimespanRatio, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_TimespanRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TimespanZeroValue \ +static_assert(alignof(KismetMathLibrary_TimespanZeroValue) == 0x000008, "Wrong alignment on KismetMathLibrary_TimespanZeroValue"); \ +static_assert(sizeof(KismetMathLibrary_TimespanZeroValue) == 0x000008, "Wrong size on KismetMathLibrary_TimespanZeroValue"); \ +static_assert(offsetof(KismetMathLibrary_TimespanZeroValue, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_TimespanZeroValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TInterpTo \ +static_assert(alignof(KismetMathLibrary_TInterpTo) == 0x000010, "Wrong alignment on KismetMathLibrary_TInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_TInterpTo) == 0x000130, "Wrong size on KismetMathLibrary_TInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_TInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_TInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TInterpTo, Target) == 0x000060, "Member 'KismetMathLibrary_TInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TInterpTo, DeltaTime) == 0x0000C0, "Member 'KismetMathLibrary_TInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TInterpTo, InterpSpeed) == 0x0000C4, "Member 'KismetMathLibrary_TInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TInterpTo, ReturnValue) == 0x0000D0, "Member 'KismetMathLibrary_TInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TLerp \ +static_assert(alignof(KismetMathLibrary_TLerp) == 0x000010, "Wrong alignment on KismetMathLibrary_TLerp"); \ +static_assert(sizeof(KismetMathLibrary_TLerp) == 0x000130, "Wrong size on KismetMathLibrary_TLerp"); \ +static_assert(offsetof(KismetMathLibrary_TLerp, A) == 0x000000, "Member 'KismetMathLibrary_TLerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TLerp, B) == 0x000060, "Member 'KismetMathLibrary_TLerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TLerp, alpha) == 0x0000C0, "Member 'KismetMathLibrary_TLerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TLerp, InterpMode) == 0x0000C4, "Member 'KismetMathLibrary_TLerp::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TLerp, ReturnValue) == 0x0000D0, "Member 'KismetMathLibrary_TLerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Today \ +static_assert(alignof(KismetMathLibrary_Today) == 0x000008, "Wrong alignment on KismetMathLibrary_Today"); \ +static_assert(sizeof(KismetMathLibrary_Today) == 0x000008, "Wrong size on KismetMathLibrary_Today"); \ +static_assert(offsetof(KismetMathLibrary_Today, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Today::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToDirectionAndLength2D \ +static_assert(alignof(KismetMathLibrary_ToDirectionAndLength2D) == 0x000008, "Wrong alignment on KismetMathLibrary_ToDirectionAndLength2D"); \ +static_assert(sizeof(KismetMathLibrary_ToDirectionAndLength2D) == 0x000028, "Wrong size on KismetMathLibrary_ToDirectionAndLength2D"); \ +static_assert(offsetof(KismetMathLibrary_ToDirectionAndLength2D, A) == 0x000000, "Member 'KismetMathLibrary_ToDirectionAndLength2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToDirectionAndLength2D, OutDir) == 0x000010, "Member 'KismetMathLibrary_ToDirectionAndLength2D::OutDir' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToDirectionAndLength2D, OutLength) == 0x000020, "Member 'KismetMathLibrary_ToDirectionAndLength2D::OutLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToHex_LinearColor \ +static_assert(alignof(KismetMathLibrary_ToHex_LinearColor) == 0x000008, "Wrong alignment on KismetMathLibrary_ToHex_LinearColor"); \ +static_assert(sizeof(KismetMathLibrary_ToHex_LinearColor) == 0x000020, "Wrong size on KismetMathLibrary_ToHex_LinearColor"); \ +static_assert(offsetof(KismetMathLibrary_ToHex_LinearColor, InColor) == 0x000000, "Member 'KismetMathLibrary_ToHex_LinearColor::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToHex_LinearColor, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_ToHex_LinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToRounded2D \ +static_assert(alignof(KismetMathLibrary_ToRounded2D) == 0x000008, "Wrong alignment on KismetMathLibrary_ToRounded2D"); \ +static_assert(sizeof(KismetMathLibrary_ToRounded2D) == 0x000020, "Wrong size on KismetMathLibrary_ToRounded2D"); \ +static_assert(offsetof(KismetMathLibrary_ToRounded2D, A) == 0x000000, "Member 'KismetMathLibrary_ToRounded2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToRounded2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_ToRounded2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToSign2D \ +static_assert(alignof(KismetMathLibrary_ToSign2D) == 0x000008, "Wrong alignment on KismetMathLibrary_ToSign2D"); \ +static_assert(sizeof(KismetMathLibrary_ToSign2D) == 0x000020, "Wrong size on KismetMathLibrary_ToSign2D"); \ +static_assert(offsetof(KismetMathLibrary_ToSign2D, A) == 0x000000, "Member 'KismetMathLibrary_ToSign2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToSign2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_ToSign2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToUnixTimestamp \ +static_assert(alignof(KismetMathLibrary_ToUnixTimestamp) == 0x000008, "Wrong alignment on KismetMathLibrary_ToUnixTimestamp"); \ +static_assert(sizeof(KismetMathLibrary_ToUnixTimestamp) == 0x000010, "Wrong size on KismetMathLibrary_ToUnixTimestamp"); \ +static_assert(offsetof(KismetMathLibrary_ToUnixTimestamp, Time) == 0x000000, "Member 'KismetMathLibrary_ToUnixTimestamp::Time' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToUnixTimestamp, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_ToUnixTimestamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_ToUnixTimestampDouble \ +static_assert(alignof(KismetMathLibrary_ToUnixTimestampDouble) == 0x000008, "Wrong alignment on KismetMathLibrary_ToUnixTimestampDouble"); \ +static_assert(sizeof(KismetMathLibrary_ToUnixTimestampDouble) == 0x000010, "Wrong size on KismetMathLibrary_ToUnixTimestampDouble"); \ +static_assert(offsetof(KismetMathLibrary_ToUnixTimestampDouble, Time) == 0x000000, "Member 'KismetMathLibrary_ToUnixTimestampDouble::Time' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_ToUnixTimestampDouble, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_ToUnixTimestampDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Transform_Determinant \ +static_assert(alignof(KismetMathLibrary_Transform_Determinant) == 0x000010, "Wrong alignment on KismetMathLibrary_Transform_Determinant"); \ +static_assert(sizeof(KismetMathLibrary_Transform_Determinant) == 0x000070, "Wrong size on KismetMathLibrary_Transform_Determinant"); \ +static_assert(offsetof(KismetMathLibrary_Transform_Determinant, Transform) == 0x000000, "Member 'KismetMathLibrary_Transform_Determinant::Transform' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Transform_Determinant, ReturnValue) == 0x000060, "Member 'KismetMathLibrary_Transform_Determinant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TransformDirection \ +static_assert(alignof(KismetMathLibrary_TransformDirection) == 0x000010, "Wrong alignment on KismetMathLibrary_TransformDirection"); \ +static_assert(sizeof(KismetMathLibrary_TransformDirection) == 0x000090, "Wrong size on KismetMathLibrary_TransformDirection"); \ +static_assert(offsetof(KismetMathLibrary_TransformDirection, T) == 0x000000, "Member 'KismetMathLibrary_TransformDirection::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformDirection, Direction) == 0x000060, "Member 'KismetMathLibrary_TransformDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformDirection, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_TransformDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TransformLocation \ +static_assert(alignof(KismetMathLibrary_TransformLocation) == 0x000010, "Wrong alignment on KismetMathLibrary_TransformLocation"); \ +static_assert(sizeof(KismetMathLibrary_TransformLocation) == 0x000090, "Wrong size on KismetMathLibrary_TransformLocation"); \ +static_assert(offsetof(KismetMathLibrary_TransformLocation, T) == 0x000000, "Member 'KismetMathLibrary_TransformLocation::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformLocation, Location) == 0x000060, "Member 'KismetMathLibrary_TransformLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformLocation, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_TransformLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TransformRotation \ +static_assert(alignof(KismetMathLibrary_TransformRotation) == 0x000010, "Wrong alignment on KismetMathLibrary_TransformRotation"); \ +static_assert(sizeof(KismetMathLibrary_TransformRotation) == 0x000090, "Wrong size on KismetMathLibrary_TransformRotation"); \ +static_assert(offsetof(KismetMathLibrary_TransformRotation, T) == 0x000000, "Member 'KismetMathLibrary_TransformRotation::T' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformRotation, Rotation) == 0x000060, "Member 'KismetMathLibrary_TransformRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformRotation, ReturnValue) == 0x000078, "Member 'KismetMathLibrary_TransformRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_TransformVector4 \ +static_assert(alignof(KismetMathLibrary_TransformVector4) == 0x000010, "Wrong alignment on KismetMathLibrary_TransformVector4"); \ +static_assert(sizeof(KismetMathLibrary_TransformVector4) == 0x0000C0, "Wrong size on KismetMathLibrary_TransformVector4"); \ +static_assert(offsetof(KismetMathLibrary_TransformVector4, Matrix) == 0x000000, "Member 'KismetMathLibrary_TransformVector4::Matrix' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformVector4, Vec4) == 0x000080, "Member 'KismetMathLibrary_TransformVector4::Vec4' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_TransformVector4, ReturnValue) == 0x0000A0, "Member 'KismetMathLibrary_TransformVector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_UtcNow \ +static_assert(alignof(KismetMathLibrary_UtcNow) == 0x000008, "Wrong alignment on KismetMathLibrary_UtcNow"); \ +static_assert(sizeof(KismetMathLibrary_UtcNow) == 0x000008, "Wrong size on KismetMathLibrary_UtcNow"); \ +static_assert(offsetof(KismetMathLibrary_UtcNow, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_UtcNow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VEase \ +static_assert(alignof(KismetMathLibrary_VEase) == 0x000008, "Wrong alignment on KismetMathLibrary_VEase"); \ +static_assert(sizeof(KismetMathLibrary_VEase) == 0x000058, "Wrong size on KismetMathLibrary_VEase"); \ +static_assert(offsetof(KismetMathLibrary_VEase, A) == 0x000000, "Member 'KismetMathLibrary_VEase::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, B) == 0x000018, "Member 'KismetMathLibrary_VEase::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, alpha) == 0x000030, "Member 'KismetMathLibrary_VEase::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, EasingFunc) == 0x000034, "Member 'KismetMathLibrary_VEase::EasingFunc' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, BlendExp) == 0x000038, "Member 'KismetMathLibrary_VEase::BlendExp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, Steps) == 0x00003C, "Member 'KismetMathLibrary_VEase::Steps' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VEase, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_VEase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector2D_One \ +static_assert(alignof(KismetMathLibrary_Vector2D_One) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector2D_One"); \ +static_assert(sizeof(KismetMathLibrary_Vector2D_One) == 0x000010, "Wrong size on KismetMathLibrary_Vector2D_One"); \ +static_assert(offsetof(KismetMathLibrary_Vector2D_One, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector2D_One::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector2D_Unit45Deg \ +static_assert(alignof(KismetMathLibrary_Vector2D_Unit45Deg) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector2D_Unit45Deg"); \ +static_assert(sizeof(KismetMathLibrary_Vector2D_Unit45Deg) == 0x000010, "Wrong size on KismetMathLibrary_Vector2D_Unit45Deg"); \ +static_assert(offsetof(KismetMathLibrary_Vector2D_Unit45Deg, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector2D_Unit45Deg::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector2D_Zero \ +static_assert(alignof(KismetMathLibrary_Vector2D_Zero) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector2D_Zero"); \ +static_assert(sizeof(KismetMathLibrary_Vector2D_Zero) == 0x000010, "Wrong size on KismetMathLibrary_Vector2D_Zero"); \ +static_assert(offsetof(KismetMathLibrary_Vector2D_Zero, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector2D_Zero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector2DInterpTo \ +static_assert(alignof(KismetMathLibrary_Vector2DInterpTo) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector2DInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_Vector2DInterpTo) == 0x000038, "Wrong size on KismetMathLibrary_Vector2DInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_Vector2DInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo, Target) == 0x000010, "Member 'KismetMathLibrary_Vector2DInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo, DeltaTime) == 0x000020, "Member 'KismetMathLibrary_Vector2DInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo, InterpSpeed) == 0x000024, "Member 'KismetMathLibrary_Vector2DInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_Vector2DInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector2DInterpTo_Constant \ +static_assert(alignof(KismetMathLibrary_Vector2DInterpTo_Constant) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector2DInterpTo_Constant"); \ +static_assert(sizeof(KismetMathLibrary_Vector2DInterpTo_Constant) == 0x000038, "Wrong size on KismetMathLibrary_Vector2DInterpTo_Constant"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo_Constant, Current) == 0x000000, "Member 'KismetMathLibrary_Vector2DInterpTo_Constant::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo_Constant, Target) == 0x000010, "Member 'KismetMathLibrary_Vector2DInterpTo_Constant::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo_Constant, DeltaTime) == 0x000020, "Member 'KismetMathLibrary_Vector2DInterpTo_Constant::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo_Constant, InterpSpeed) == 0x000024, "Member 'KismetMathLibrary_Vector2DInterpTo_Constant::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector2DInterpTo_Constant, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_Vector2DInterpTo_Constant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Assign \ +static_assert(alignof(KismetMathLibrary_Vector4_Assign) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Assign"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Assign) == 0x000040, "Wrong size on KismetMathLibrary_Vector4_Assign"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Assign, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Assign::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Assign, InVector) == 0x000020, "Member 'KismetMathLibrary_Vector4_Assign::InVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_CrossProduct3 \ +static_assert(alignof(KismetMathLibrary_Vector4_CrossProduct3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_CrossProduct3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_CrossProduct3) == 0x000060, "Wrong size on KismetMathLibrary_Vector4_CrossProduct3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_CrossProduct3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_CrossProduct3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_CrossProduct3, B) == 0x000020, "Member 'KismetMathLibrary_Vector4_CrossProduct3::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_CrossProduct3, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Vector4_CrossProduct3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_DotProduct \ +static_assert(alignof(KismetMathLibrary_Vector4_DotProduct) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_DotProduct"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_DotProduct) == 0x000050, "Wrong size on KismetMathLibrary_Vector4_DotProduct"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_DotProduct::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct, B) == 0x000020, "Member 'KismetMathLibrary_Vector4_DotProduct::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Vector4_DotProduct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_DotProduct3 \ +static_assert(alignof(KismetMathLibrary_Vector4_DotProduct3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_DotProduct3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_DotProduct3) == 0x000050, "Wrong size on KismetMathLibrary_Vector4_DotProduct3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_DotProduct3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct3, B) == 0x000020, "Member 'KismetMathLibrary_Vector4_DotProduct3::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_DotProduct3, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Vector4_DotProduct3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_IsNAN \ +static_assert(alignof(KismetMathLibrary_Vector4_IsNAN) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_IsNAN"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_IsNAN) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_IsNAN"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNAN, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_IsNAN::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNAN, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_IsNAN::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_IsNearlyZero3 \ +static_assert(alignof(KismetMathLibrary_Vector4_IsNearlyZero3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_IsNearlyZero3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_IsNearlyZero3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_IsNearlyZero3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNearlyZero3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_IsNearlyZero3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNearlyZero3, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Vector4_IsNearlyZero3::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNearlyZero3, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_Vector4_IsNearlyZero3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_IsNormal3 \ +static_assert(alignof(KismetMathLibrary_Vector4_IsNormal3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_IsNormal3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_IsNormal3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_IsNormal3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNormal3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_IsNormal3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsNormal3, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_IsNormal3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_IsUnit3 \ +static_assert(alignof(KismetMathLibrary_Vector4_IsUnit3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_IsUnit3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_IsUnit3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_IsUnit3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsUnit3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_IsUnit3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsUnit3, SquaredLenthTolerance) == 0x000020, "Member 'KismetMathLibrary_Vector4_IsUnit3::SquaredLenthTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsUnit3, ReturnValue) == 0x000024, "Member 'KismetMathLibrary_Vector4_IsUnit3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_IsZero \ +static_assert(alignof(KismetMathLibrary_Vector4_IsZero) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_IsZero"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_IsZero) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_IsZero"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsZero, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_IsZero::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_IsZero, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_IsZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_MirrorByVector3 \ +static_assert(alignof(KismetMathLibrary_Vector4_MirrorByVector3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_MirrorByVector3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_MirrorByVector3) == 0x000060, "Wrong size on KismetMathLibrary_Vector4_MirrorByVector3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_MirrorByVector3, Direction) == 0x000000, "Member 'KismetMathLibrary_Vector4_MirrorByVector3::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_MirrorByVector3, SurfaceNormal) == 0x000020, "Member 'KismetMathLibrary_Vector4_MirrorByVector3::SurfaceNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_MirrorByVector3, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Vector4_MirrorByVector3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Negated \ +static_assert(alignof(KismetMathLibrary_Vector4_Negated) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Negated"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Negated) == 0x000040, "Wrong size on KismetMathLibrary_Vector4_Negated"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Negated, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Negated::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Negated, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_Negated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Normal3 \ +static_assert(alignof(KismetMathLibrary_Vector4_Normal3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Normal3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Normal3) == 0x000050, "Wrong size on KismetMathLibrary_Vector4_Normal3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Normal3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Normal3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Normal3, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Vector4_Normal3::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Normal3, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector4_Normal3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Normalize3 \ +static_assert(alignof(KismetMathLibrary_Vector4_Normalize3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Normalize3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Normalize3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_Normalize3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Normalize3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Normalize3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Normalize3, Tolerance) == 0x000020, "Member 'KismetMathLibrary_Vector4_Normalize3::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_NormalUnsafe3 \ +static_assert(alignof(KismetMathLibrary_Vector4_NormalUnsafe3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_NormalUnsafe3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_NormalUnsafe3) == 0x000040, "Wrong size on KismetMathLibrary_Vector4_NormalUnsafe3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_NormalUnsafe3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_NormalUnsafe3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_NormalUnsafe3, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_NormalUnsafe3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Set \ +static_assert(alignof(KismetMathLibrary_Vector4_Set) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Set"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Set) == 0x000040, "Wrong size on KismetMathLibrary_Vector4_Set"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Set, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Set::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Set, X) == 0x000020, "Member 'KismetMathLibrary_Vector4_Set::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Set, Y) == 0x000028, "Member 'KismetMathLibrary_Vector4_Set::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Set, Z) == 0x000030, "Member 'KismetMathLibrary_Vector4_Set::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Set, W) == 0x000038, "Member 'KismetMathLibrary_Vector4_Set::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Size \ +static_assert(alignof(KismetMathLibrary_Vector4_Size) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Size"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Size) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_Size"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Size, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Size::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Size, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_Size::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Size3 \ +static_assert(alignof(KismetMathLibrary_Vector4_Size3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Size3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Size3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_Size3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Size3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_Size3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Size3, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_Size3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_SizeSquared \ +static_assert(alignof(KismetMathLibrary_Vector4_SizeSquared) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_SizeSquared"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_SizeSquared) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_SizeSquared"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_SizeSquared, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_SizeSquared::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_SizeSquared, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_SizeSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_SizeSquared3 \ +static_assert(alignof(KismetMathLibrary_Vector4_SizeSquared3) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_SizeSquared3"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_SizeSquared3) == 0x000030, "Wrong size on KismetMathLibrary_Vector4_SizeSquared3"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_SizeSquared3, A) == 0x000000, "Member 'KismetMathLibrary_Vector4_SizeSquared3::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_SizeSquared3, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector4_SizeSquared3::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector4_Zero \ +static_assert(alignof(KismetMathLibrary_Vector4_Zero) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector4_Zero"); \ +static_assert(sizeof(KismetMathLibrary_Vector4_Zero) == 0x000020, "Wrong size on KismetMathLibrary_Vector4_Zero"); \ +static_assert(offsetof(KismetMathLibrary_Vector4_Zero, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector4_Zero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_AddBounded \ +static_assert(alignof(KismetMathLibrary_Vector_AddBounded) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_AddBounded"); \ +static_assert(sizeof(KismetMathLibrary_Vector_AddBounded) == 0x000038, "Wrong size on KismetMathLibrary_Vector_AddBounded"); \ +static_assert(offsetof(KismetMathLibrary_Vector_AddBounded, A) == 0x000000, "Member 'KismetMathLibrary_Vector_AddBounded::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_AddBounded, InAddVect) == 0x000018, "Member 'KismetMathLibrary_Vector_AddBounded::InAddVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_AddBounded, InRadius) == 0x000030, "Member 'KismetMathLibrary_Vector_AddBounded::InRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Assign \ +static_assert(alignof(KismetMathLibrary_Vector_Assign) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Assign"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Assign) == 0x000030, "Wrong size on KismetMathLibrary_Vector_Assign"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Assign, A) == 0x000000, "Member 'KismetMathLibrary_Vector_Assign::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Assign, InVector) == 0x000018, "Member 'KismetMathLibrary_Vector_Assign::InVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Backward \ +static_assert(alignof(KismetMathLibrary_Vector_Backward) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Backward"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Backward) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Backward"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Backward, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Backward::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_BoundedToBox \ +static_assert(alignof(KismetMathLibrary_Vector_BoundedToBox) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_BoundedToBox"); \ +static_assert(sizeof(KismetMathLibrary_Vector_BoundedToBox) == 0x000060, "Wrong size on KismetMathLibrary_Vector_BoundedToBox"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToBox, InVect) == 0x000000, "Member 'KismetMathLibrary_Vector_BoundedToBox::InVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToBox, InBoxMin) == 0x000018, "Member 'KismetMathLibrary_Vector_BoundedToBox::InBoxMin' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToBox, InBoxMax) == 0x000030, "Member 'KismetMathLibrary_Vector_BoundedToBox::InBoxMax' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToBox, ReturnValue) == 0x000048, "Member 'KismetMathLibrary_Vector_BoundedToBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_BoundedToCube \ +static_assert(alignof(KismetMathLibrary_Vector_BoundedToCube) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_BoundedToCube"); \ +static_assert(sizeof(KismetMathLibrary_Vector_BoundedToCube) == 0x000038, "Wrong size on KismetMathLibrary_Vector_BoundedToCube"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToCube, InVect) == 0x000000, "Member 'KismetMathLibrary_Vector_BoundedToCube::InVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToCube, InRadius) == 0x000018, "Member 'KismetMathLibrary_Vector_BoundedToCube::InRadius' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_BoundedToCube, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector_BoundedToCube::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ClampSize2D \ +static_assert(alignof(KismetMathLibrary_Vector_ClampSize2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ClampSize2D"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ClampSize2D) == 0x000040, "Wrong size on KismetMathLibrary_Vector_ClampSize2D"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSize2D, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ClampSize2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSize2D, Min) == 0x000018, "Member 'KismetMathLibrary_Vector_ClampSize2D::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSize2D, Max) == 0x000020, "Member 'KismetMathLibrary_Vector_ClampSize2D::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSize2D, ReturnValue) == 0x000028, "Member 'KismetMathLibrary_Vector_ClampSize2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ClampSizeMax \ +static_assert(alignof(KismetMathLibrary_Vector_ClampSizeMax) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ClampSizeMax"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ClampSizeMax) == 0x000038, "Wrong size on KismetMathLibrary_Vector_ClampSizeMax"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ClampSizeMax::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax, Max) == 0x000018, "Member 'KismetMathLibrary_Vector_ClampSizeMax::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector_ClampSizeMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ClampSizeMax2D \ +static_assert(alignof(KismetMathLibrary_Vector_ClampSizeMax2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ClampSizeMax2D"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ClampSizeMax2D) == 0x000038, "Wrong size on KismetMathLibrary_Vector_ClampSizeMax2D"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax2D, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ClampSizeMax2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax2D, Max) == 0x000018, "Member 'KismetMathLibrary_Vector_ClampSizeMax2D::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ClampSizeMax2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector_ClampSizeMax2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ComponentMax \ +static_assert(alignof(KismetMathLibrary_Vector_ComponentMax) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ComponentMax"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ComponentMax) == 0x000048, "Wrong size on KismetMathLibrary_Vector_ComponentMax"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMax, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ComponentMax::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMax, B) == 0x000018, "Member 'KismetMathLibrary_Vector_ComponentMax::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMax, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_ComponentMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ComponentMin \ +static_assert(alignof(KismetMathLibrary_Vector_ComponentMin) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ComponentMin"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ComponentMin) == 0x000048, "Wrong size on KismetMathLibrary_Vector_ComponentMin"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMin, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ComponentMin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMin, B) == 0x000018, "Member 'KismetMathLibrary_Vector_ComponentMin::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ComponentMin, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_ComponentMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_CosineAngle2D \ +static_assert(alignof(KismetMathLibrary_Vector_CosineAngle2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_CosineAngle2D"); \ +static_assert(sizeof(KismetMathLibrary_Vector_CosineAngle2D) == 0x000038, "Wrong size on KismetMathLibrary_Vector_CosineAngle2D"); \ +static_assert(offsetof(KismetMathLibrary_Vector_CosineAngle2D, A) == 0x000000, "Member 'KismetMathLibrary_Vector_CosineAngle2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_CosineAngle2D, B) == 0x000018, "Member 'KismetMathLibrary_Vector_CosineAngle2D::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_CosineAngle2D, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_CosineAngle2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Distance \ +static_assert(alignof(KismetMathLibrary_Vector_Distance) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Distance"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Distance) == 0x000038, "Wrong size on KismetMathLibrary_Vector_Distance"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance, v1) == 0x000000, "Member 'KismetMathLibrary_Vector_Distance::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance, v2) == 0x000018, "Member 'KismetMathLibrary_Vector_Distance::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_Distance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Distance2D \ +static_assert(alignof(KismetMathLibrary_Vector_Distance2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Distance2D"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Distance2D) == 0x000038, "Wrong size on KismetMathLibrary_Vector_Distance2D"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2D, v1) == 0x000000, "Member 'KismetMathLibrary_Vector_Distance2D::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2D, v2) == 0x000018, "Member 'KismetMathLibrary_Vector_Distance2D::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2D, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_Distance2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Distance2DSquared \ +static_assert(alignof(KismetMathLibrary_Vector_Distance2DSquared) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Distance2DSquared"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Distance2DSquared) == 0x000038, "Wrong size on KismetMathLibrary_Vector_Distance2DSquared"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2DSquared, v1) == 0x000000, "Member 'KismetMathLibrary_Vector_Distance2DSquared::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2DSquared, v2) == 0x000018, "Member 'KismetMathLibrary_Vector_Distance2DSquared::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Distance2DSquared, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_Distance2DSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_DistanceSquared \ +static_assert(alignof(KismetMathLibrary_Vector_DistanceSquared) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_DistanceSquared"); \ +static_assert(sizeof(KismetMathLibrary_Vector_DistanceSquared) == 0x000038, "Wrong size on KismetMathLibrary_Vector_DistanceSquared"); \ +static_assert(offsetof(KismetMathLibrary_Vector_DistanceSquared, v1) == 0x000000, "Member 'KismetMathLibrary_Vector_DistanceSquared::v1' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_DistanceSquared, v2) == 0x000018, "Member 'KismetMathLibrary_Vector_DistanceSquared::v2' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_DistanceSquared, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_DistanceSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Down \ +static_assert(alignof(KismetMathLibrary_Vector_Down) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Down"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Down) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Down"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Down, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Down::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Forward \ +static_assert(alignof(KismetMathLibrary_Vector_Forward) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Forward"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Forward) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Forward"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Forward, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Forward::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_GetAbs \ +static_assert(alignof(KismetMathLibrary_Vector_GetAbs) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_GetAbs"); \ +static_assert(sizeof(KismetMathLibrary_Vector_GetAbs) == 0x000030, "Wrong size on KismetMathLibrary_Vector_GetAbs"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbs, A) == 0x000000, "Member 'KismetMathLibrary_Vector_GetAbs::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbs, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_GetAbs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_GetAbsMax \ +static_assert(alignof(KismetMathLibrary_Vector_GetAbsMax) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_GetAbsMax"); \ +static_assert(sizeof(KismetMathLibrary_Vector_GetAbsMax) == 0x000020, "Wrong size on KismetMathLibrary_Vector_GetAbsMax"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbsMax, A) == 0x000000, "Member 'KismetMathLibrary_Vector_GetAbsMax::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbsMax, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_GetAbsMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_GetAbsMin \ +static_assert(alignof(KismetMathLibrary_Vector_GetAbsMin) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_GetAbsMin"); \ +static_assert(sizeof(KismetMathLibrary_Vector_GetAbsMin) == 0x000020, "Wrong size on KismetMathLibrary_Vector_GetAbsMin"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbsMin, A) == 0x000000, "Member 'KismetMathLibrary_Vector_GetAbsMin::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetAbsMin, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_GetAbsMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_GetProjection \ +static_assert(alignof(KismetMathLibrary_Vector_GetProjection) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_GetProjection"); \ +static_assert(sizeof(KismetMathLibrary_Vector_GetProjection) == 0x000030, "Wrong size on KismetMathLibrary_Vector_GetProjection"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetProjection, A) == 0x000000, "Member 'KismetMathLibrary_Vector_GetProjection::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetProjection, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_GetProjection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_GetSignVector \ +static_assert(alignof(KismetMathLibrary_Vector_GetSignVector) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_GetSignVector"); \ +static_assert(sizeof(KismetMathLibrary_Vector_GetSignVector) == 0x000030, "Wrong size on KismetMathLibrary_Vector_GetSignVector"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetSignVector, A) == 0x000000, "Member 'KismetMathLibrary_Vector_GetSignVector::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_GetSignVector, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_GetSignVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_HeadingAngle \ +static_assert(alignof(KismetMathLibrary_Vector_HeadingAngle) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_HeadingAngle"); \ +static_assert(sizeof(KismetMathLibrary_Vector_HeadingAngle) == 0x000020, "Wrong size on KismetMathLibrary_Vector_HeadingAngle"); \ +static_assert(offsetof(KismetMathLibrary_Vector_HeadingAngle, A) == 0x000000, "Member 'KismetMathLibrary_Vector_HeadingAngle::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_HeadingAngle, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_HeadingAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsNAN \ +static_assert(alignof(KismetMathLibrary_Vector_IsNAN) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsNAN"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsNAN) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsNAN"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNAN, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsNAN::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNAN, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_IsNAN::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsNearlyZero \ +static_assert(alignof(KismetMathLibrary_Vector_IsNearlyZero) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsNearlyZero"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsNearlyZero) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsNearlyZero"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNearlyZero, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsNearlyZero::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNearlyZero, Tolerance) == 0x000018, "Member 'KismetMathLibrary_Vector_IsNearlyZero::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNearlyZero, ReturnValue) == 0x00001C, "Member 'KismetMathLibrary_Vector_IsNearlyZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsNormal \ +static_assert(alignof(KismetMathLibrary_Vector_IsNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsNormal"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsNormal) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsNormal"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNormal, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsNormal::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsNormal, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_IsNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsUniform \ +static_assert(alignof(KismetMathLibrary_Vector_IsUniform) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsUniform"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsUniform) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsUniform"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUniform, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsUniform::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUniform, Tolerance) == 0x000018, "Member 'KismetMathLibrary_Vector_IsUniform::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUniform, ReturnValue) == 0x00001C, "Member 'KismetMathLibrary_Vector_IsUniform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsUnit \ +static_assert(alignof(KismetMathLibrary_Vector_IsUnit) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsUnit"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsUnit) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsUnit"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUnit, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsUnit::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUnit, SquaredLenthTolerance) == 0x000018, "Member 'KismetMathLibrary_Vector_IsUnit::SquaredLenthTolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsUnit, ReturnValue) == 0x00001C, "Member 'KismetMathLibrary_Vector_IsUnit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_IsZero \ +static_assert(alignof(KismetMathLibrary_Vector_IsZero) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_IsZero"); \ +static_assert(sizeof(KismetMathLibrary_Vector_IsZero) == 0x000020, "Wrong size on KismetMathLibrary_Vector_IsZero"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsZero, A) == 0x000000, "Member 'KismetMathLibrary_Vector_IsZero::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_IsZero, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_IsZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Left \ +static_assert(alignof(KismetMathLibrary_Vector_Left) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Left"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Left) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Left"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Left, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Left::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_MirrorByPlane \ +static_assert(alignof(KismetMathLibrary_Vector_MirrorByPlane) == 0x000010, "Wrong alignment on KismetMathLibrary_Vector_MirrorByPlane"); \ +static_assert(sizeof(KismetMathLibrary_Vector_MirrorByPlane) == 0x000060, "Wrong size on KismetMathLibrary_Vector_MirrorByPlane"); \ +static_assert(offsetof(KismetMathLibrary_Vector_MirrorByPlane, A) == 0x000000, "Member 'KismetMathLibrary_Vector_MirrorByPlane::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_MirrorByPlane, InPlane) == 0x000020, "Member 'KismetMathLibrary_Vector_MirrorByPlane::InPlane' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_MirrorByPlane, ReturnValue) == 0x000040, "Member 'KismetMathLibrary_Vector_MirrorByPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Normal2D \ +static_assert(alignof(KismetMathLibrary_Vector_Normal2D) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Normal2D"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Normal2D) == 0x000038, "Wrong size on KismetMathLibrary_Vector_Normal2D"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Normal2D, A) == 0x000000, "Member 'KismetMathLibrary_Vector_Normal2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Normal2D, Tolerance) == 0x000018, "Member 'KismetMathLibrary_Vector_Normal2D::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Normal2D, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector_Normal2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Normalize \ +static_assert(alignof(KismetMathLibrary_Vector_Normalize) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Normalize"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Normalize) == 0x000020, "Wrong size on KismetMathLibrary_Vector_Normalize"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Normalize, A) == 0x000000, "Member 'KismetMathLibrary_Vector_Normalize::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Normalize, Tolerance) == 0x000018, "Member 'KismetMathLibrary_Vector_Normalize::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_NormalUnsafe \ +static_assert(alignof(KismetMathLibrary_Vector_NormalUnsafe) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_NormalUnsafe"); \ +static_assert(sizeof(KismetMathLibrary_Vector_NormalUnsafe) == 0x000030, "Wrong size on KismetMathLibrary_Vector_NormalUnsafe"); \ +static_assert(offsetof(KismetMathLibrary_Vector_NormalUnsafe, A) == 0x000000, "Member 'KismetMathLibrary_Vector_NormalUnsafe::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_NormalUnsafe, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_NormalUnsafe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_One \ +static_assert(alignof(KismetMathLibrary_Vector_One) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_One"); \ +static_assert(sizeof(KismetMathLibrary_Vector_One) == 0x000018, "Wrong size on KismetMathLibrary_Vector_One"); \ +static_assert(offsetof(KismetMathLibrary_Vector_One, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_One::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ProjectOnToNormal \ +static_assert(alignof(KismetMathLibrary_Vector_ProjectOnToNormal) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ProjectOnToNormal"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ProjectOnToNormal) == 0x000048, "Wrong size on KismetMathLibrary_Vector_ProjectOnToNormal"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ProjectOnToNormal, V) == 0x000000, "Member 'KismetMathLibrary_Vector_ProjectOnToNormal::V' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ProjectOnToNormal, InNormal) == 0x000018, "Member 'KismetMathLibrary_Vector_ProjectOnToNormal::InNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ProjectOnToNormal, ReturnValue) == 0x000030, "Member 'KismetMathLibrary_Vector_ProjectOnToNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Reciprocal \ +static_assert(alignof(KismetMathLibrary_Vector_Reciprocal) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Reciprocal"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Reciprocal) == 0x000030, "Wrong size on KismetMathLibrary_Vector_Reciprocal"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Reciprocal, A) == 0x000000, "Member 'KismetMathLibrary_Vector_Reciprocal::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Reciprocal, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_Reciprocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Right \ +static_assert(alignof(KismetMathLibrary_Vector_Right) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Right"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Right) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Right"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Right, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Right::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Set \ +static_assert(alignof(KismetMathLibrary_Vector_Set) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Set"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Set) == 0x000030, "Wrong size on KismetMathLibrary_Vector_Set"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Set, A) == 0x000000, "Member 'KismetMathLibrary_Vector_Set::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Set, X) == 0x000018, "Member 'KismetMathLibrary_Vector_Set::X' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Set, Y) == 0x000020, "Member 'KismetMathLibrary_Vector_Set::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Set, Z) == 0x000028, "Member 'KismetMathLibrary_Vector_Set::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_SlerpNormals \ +static_assert(alignof(KismetMathLibrary_Vector_SlerpNormals) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_SlerpNormals"); \ +static_assert(sizeof(KismetMathLibrary_Vector_SlerpNormals) == 0x000050, "Wrong size on KismetMathLibrary_Vector_SlerpNormals"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpNormals, NormalA) == 0x000000, "Member 'KismetMathLibrary_Vector_SlerpNormals::NormalA' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpNormals, NormalB) == 0x000018, "Member 'KismetMathLibrary_Vector_SlerpNormals::NormalB' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpNormals, alpha) == 0x000030, "Member 'KismetMathLibrary_Vector_SlerpNormals::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpNormals, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_Vector_SlerpNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_SlerpVectorToDirection \ +static_assert(alignof(KismetMathLibrary_Vector_SlerpVectorToDirection) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_SlerpVectorToDirection"); \ +static_assert(sizeof(KismetMathLibrary_Vector_SlerpVectorToDirection) == 0x000050, "Wrong size on KismetMathLibrary_Vector_SlerpVectorToDirection"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpVectorToDirection, Vector) == 0x000000, "Member 'KismetMathLibrary_Vector_SlerpVectorToDirection::Vector' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpVectorToDirection, Direction) == 0x000018, "Member 'KismetMathLibrary_Vector_SlerpVectorToDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpVectorToDirection, alpha) == 0x000030, "Member 'KismetMathLibrary_Vector_SlerpVectorToDirection::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SlerpVectorToDirection, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_Vector_SlerpVectorToDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_SnappedToGrid \ +static_assert(alignof(KismetMathLibrary_Vector_SnappedToGrid) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_SnappedToGrid"); \ +static_assert(sizeof(KismetMathLibrary_Vector_SnappedToGrid) == 0x000038, "Wrong size on KismetMathLibrary_Vector_SnappedToGrid"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SnappedToGrid, InVect) == 0x000000, "Member 'KismetMathLibrary_Vector_SnappedToGrid::InVect' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SnappedToGrid, InGridSize) == 0x000018, "Member 'KismetMathLibrary_Vector_SnappedToGrid::InGridSize' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_SnappedToGrid, ReturnValue) == 0x000020, "Member 'KismetMathLibrary_Vector_SnappedToGrid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ToDegrees \ +static_assert(alignof(KismetMathLibrary_Vector_ToDegrees) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ToDegrees"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ToDegrees) == 0x000030, "Wrong size on KismetMathLibrary_Vector_ToDegrees"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ToDegrees, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ToDegrees::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ToDegrees, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_ToDegrees::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_ToRadians \ +static_assert(alignof(KismetMathLibrary_Vector_ToRadians) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_ToRadians"); \ +static_assert(sizeof(KismetMathLibrary_Vector_ToRadians) == 0x000030, "Wrong size on KismetMathLibrary_Vector_ToRadians"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ToRadians, A) == 0x000000, "Member 'KismetMathLibrary_Vector_ToRadians::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_ToRadians, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_ToRadians::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_UnitCartesianToSpherical \ +static_assert(alignof(KismetMathLibrary_Vector_UnitCartesianToSpherical) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_UnitCartesianToSpherical"); \ +static_assert(sizeof(KismetMathLibrary_Vector_UnitCartesianToSpherical) == 0x000028, "Wrong size on KismetMathLibrary_Vector_UnitCartesianToSpherical"); \ +static_assert(offsetof(KismetMathLibrary_Vector_UnitCartesianToSpherical, A) == 0x000000, "Member 'KismetMathLibrary_Vector_UnitCartesianToSpherical::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Vector_UnitCartesianToSpherical, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_Vector_UnitCartesianToSpherical::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_UnwindEuler \ +static_assert(alignof(KismetMathLibrary_Vector_UnwindEuler) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_UnwindEuler"); \ +static_assert(sizeof(KismetMathLibrary_Vector_UnwindEuler) == 0x000018, "Wrong size on KismetMathLibrary_Vector_UnwindEuler"); \ +static_assert(offsetof(KismetMathLibrary_Vector_UnwindEuler, A) == 0x000000, "Member 'KismetMathLibrary_Vector_UnwindEuler::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Up \ +static_assert(alignof(KismetMathLibrary_Vector_Up) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Up"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Up) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Up"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Up, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Up::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Vector_Zero \ +static_assert(alignof(KismetMathLibrary_Vector_Zero) == 0x000008, "Wrong alignment on KismetMathLibrary_Vector_Zero"); \ +static_assert(sizeof(KismetMathLibrary_Vector_Zero) == 0x000018, "Wrong size on KismetMathLibrary_Vector_Zero"); \ +static_assert(offsetof(KismetMathLibrary_Vector_Zero, ReturnValue) == 0x000000, "Member 'KismetMathLibrary_Vector_Zero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VectorSpringInterp \ +static_assert(alignof(KismetMathLibrary_VectorSpringInterp) == 0x000008, "Wrong alignment on KismetMathLibrary_VectorSpringInterp"); \ +static_assert(sizeof(KismetMathLibrary_VectorSpringInterp) == 0x0000D0, "Wrong size on KismetMathLibrary_VectorSpringInterp"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, Current) == 0x000000, "Member 'KismetMathLibrary_VectorSpringInterp::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, Target) == 0x000018, "Member 'KismetMathLibrary_VectorSpringInterp::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, SpringState) == 0x000030, "Member 'KismetMathLibrary_VectorSpringInterp::SpringState' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, Stiffness) == 0x000068, "Member 'KismetMathLibrary_VectorSpringInterp::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, CriticalDampingFactor) == 0x00006C, "Member 'KismetMathLibrary_VectorSpringInterp::CriticalDampingFactor' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, DeltaTime) == 0x000070, "Member 'KismetMathLibrary_VectorSpringInterp::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, MASS) == 0x000074, "Member 'KismetMathLibrary_VectorSpringInterp::MASS' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, TargetVelocityAmount) == 0x000078, "Member 'KismetMathLibrary_VectorSpringInterp::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, bClamp) == 0x00007C, "Member 'KismetMathLibrary_VectorSpringInterp::bClamp' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, MinValue) == 0x000080, "Member 'KismetMathLibrary_VectorSpringInterp::MinValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, MaxValue) == 0x000098, "Member 'KismetMathLibrary_VectorSpringInterp::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, bInitializeFromTarget) == 0x0000B0, "Member 'KismetMathLibrary_VectorSpringInterp::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VectorSpringInterp, ReturnValue) == 0x0000B8, "Member 'KismetMathLibrary_VectorSpringInterp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VInterpTo \ +static_assert(alignof(KismetMathLibrary_VInterpTo) == 0x000008, "Wrong alignment on KismetMathLibrary_VInterpTo"); \ +static_assert(sizeof(KismetMathLibrary_VInterpTo) == 0x000050, "Wrong size on KismetMathLibrary_VInterpTo"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo, Current) == 0x000000, "Member 'KismetMathLibrary_VInterpTo::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo, Target) == 0x000018, "Member 'KismetMathLibrary_VInterpTo::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo, DeltaTime) == 0x000030, "Member 'KismetMathLibrary_VInterpTo::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo, InterpSpeed) == 0x000034, "Member 'KismetMathLibrary_VInterpTo::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_VInterpTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VInterpTo_Constant \ +static_assert(alignof(KismetMathLibrary_VInterpTo_Constant) == 0x000008, "Wrong alignment on KismetMathLibrary_VInterpTo_Constant"); \ +static_assert(sizeof(KismetMathLibrary_VInterpTo_Constant) == 0x000050, "Wrong size on KismetMathLibrary_VInterpTo_Constant"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo_Constant, Current) == 0x000000, "Member 'KismetMathLibrary_VInterpTo_Constant::Current' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo_Constant, Target) == 0x000018, "Member 'KismetMathLibrary_VInterpTo_Constant::Target' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo_Constant, DeltaTime) == 0x000030, "Member 'KismetMathLibrary_VInterpTo_Constant::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo_Constant, InterpSpeed) == 0x000034, "Member 'KismetMathLibrary_VInterpTo_Constant::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VInterpTo_Constant, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_VInterpTo_Constant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VLerp \ +static_assert(alignof(KismetMathLibrary_VLerp) == 0x000008, "Wrong alignment on KismetMathLibrary_VLerp"); \ +static_assert(sizeof(KismetMathLibrary_VLerp) == 0x000050, "Wrong size on KismetMathLibrary_VLerp"); \ +static_assert(offsetof(KismetMathLibrary_VLerp, A) == 0x000000, "Member 'KismetMathLibrary_VLerp::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VLerp, B) == 0x000018, "Member 'KismetMathLibrary_VLerp::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VLerp, alpha) == 0x000030, "Member 'KismetMathLibrary_VLerp::alpha' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VLerp, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_VLerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSize \ +static_assert(alignof(KismetMathLibrary_VSize) == 0x000008, "Wrong alignment on KismetMathLibrary_VSize"); \ +static_assert(sizeof(KismetMathLibrary_VSize) == 0x000020, "Wrong size on KismetMathLibrary_VSize"); \ +static_assert(offsetof(KismetMathLibrary_VSize, A) == 0x000000, "Member 'KismetMathLibrary_VSize::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSize, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_VSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSize2D \ +static_assert(alignof(KismetMathLibrary_VSize2D) == 0x000008, "Wrong alignment on KismetMathLibrary_VSize2D"); \ +static_assert(sizeof(KismetMathLibrary_VSize2D) == 0x000018, "Wrong size on KismetMathLibrary_VSize2D"); \ +static_assert(offsetof(KismetMathLibrary_VSize2D, A) == 0x000000, "Member 'KismetMathLibrary_VSize2D::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSize2D, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_VSize2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSize2DSquared \ +static_assert(alignof(KismetMathLibrary_VSize2DSquared) == 0x000008, "Wrong alignment on KismetMathLibrary_VSize2DSquared"); \ +static_assert(sizeof(KismetMathLibrary_VSize2DSquared) == 0x000018, "Wrong size on KismetMathLibrary_VSize2DSquared"); \ +static_assert(offsetof(KismetMathLibrary_VSize2DSquared, A) == 0x000000, "Member 'KismetMathLibrary_VSize2DSquared::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSize2DSquared, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_VSize2DSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSizeSquared \ +static_assert(alignof(KismetMathLibrary_VSizeSquared) == 0x000008, "Wrong alignment on KismetMathLibrary_VSizeSquared"); \ +static_assert(sizeof(KismetMathLibrary_VSizeSquared) == 0x000020, "Wrong size on KismetMathLibrary_VSizeSquared"); \ +static_assert(offsetof(KismetMathLibrary_VSizeSquared, A) == 0x000000, "Member 'KismetMathLibrary_VSizeSquared::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSizeSquared, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_VSizeSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSizeXY \ +static_assert(alignof(KismetMathLibrary_VSizeXY) == 0x000008, "Wrong alignment on KismetMathLibrary_VSizeXY"); \ +static_assert(sizeof(KismetMathLibrary_VSizeXY) == 0x000020, "Wrong size on KismetMathLibrary_VSizeXY"); \ +static_assert(offsetof(KismetMathLibrary_VSizeXY, A) == 0x000000, "Member 'KismetMathLibrary_VSizeXY::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSizeXY, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_VSizeXY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_VSizeXYSquared \ +static_assert(alignof(KismetMathLibrary_VSizeXYSquared) == 0x000008, "Wrong alignment on KismetMathLibrary_VSizeXYSquared"); \ +static_assert(sizeof(KismetMathLibrary_VSizeXYSquared) == 0x000020, "Wrong size on KismetMathLibrary_VSizeXYSquared"); \ +static_assert(offsetof(KismetMathLibrary_VSizeXYSquared, A) == 0x000000, "Member 'KismetMathLibrary_VSizeXYSquared::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_VSizeXYSquared, ReturnValue) == 0x000018, "Member 'KismetMathLibrary_VSizeXYSquared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_WeightedMovingAverage_Float \ +static_assert(alignof(KismetMathLibrary_WeightedMovingAverage_Float) == 0x000004, "Wrong alignment on KismetMathLibrary_WeightedMovingAverage_Float"); \ +static_assert(sizeof(KismetMathLibrary_WeightedMovingAverage_Float) == 0x000010, "Wrong size on KismetMathLibrary_WeightedMovingAverage_Float"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_Float, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_WeightedMovingAverage_Float::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_Float, PreviousSample) == 0x000004, "Member 'KismetMathLibrary_WeightedMovingAverage_Float::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_Float, Weight) == 0x000008, "Member 'KismetMathLibrary_WeightedMovingAverage_Float::Weight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_Float, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_WeightedMovingAverage_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_WeightedMovingAverage_FRotator \ +static_assert(alignof(KismetMathLibrary_WeightedMovingAverage_FRotator) == 0x000008, "Wrong alignment on KismetMathLibrary_WeightedMovingAverage_FRotator"); \ +static_assert(sizeof(KismetMathLibrary_WeightedMovingAverage_FRotator) == 0x000050, "Wrong size on KismetMathLibrary_WeightedMovingAverage_FRotator"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FRotator, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_WeightedMovingAverage_FRotator::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FRotator, PreviousSample) == 0x000018, "Member 'KismetMathLibrary_WeightedMovingAverage_FRotator::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FRotator, Weight) == 0x000030, "Member 'KismetMathLibrary_WeightedMovingAverage_FRotator::Weight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FRotator, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_WeightedMovingAverage_FRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_WeightedMovingAverage_FVector \ +static_assert(alignof(KismetMathLibrary_WeightedMovingAverage_FVector) == 0x000008, "Wrong alignment on KismetMathLibrary_WeightedMovingAverage_FVector"); \ +static_assert(sizeof(KismetMathLibrary_WeightedMovingAverage_FVector) == 0x000050, "Wrong size on KismetMathLibrary_WeightedMovingAverage_FVector"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FVector, CurrentSample) == 0x000000, "Member 'KismetMathLibrary_WeightedMovingAverage_FVector::CurrentSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FVector, PreviousSample) == 0x000018, "Member 'KismetMathLibrary_WeightedMovingAverage_FVector::PreviousSample' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FVector, Weight) == 0x000030, "Member 'KismetMathLibrary_WeightedMovingAverage_FVector::Weight' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_WeightedMovingAverage_FVector, ReturnValue) == 0x000038, "Member 'KismetMathLibrary_WeightedMovingAverage_FVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Wrap \ +static_assert(alignof(KismetMathLibrary_Wrap) == 0x000004, "Wrong alignment on KismetMathLibrary_Wrap"); \ +static_assert(sizeof(KismetMathLibrary_Wrap) == 0x000010, "Wrong size on KismetMathLibrary_Wrap"); \ +static_assert(offsetof(KismetMathLibrary_Wrap, Value) == 0x000000, "Member 'KismetMathLibrary_Wrap::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Wrap, Min) == 0x000004, "Member 'KismetMathLibrary_Wrap::Min' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Wrap, Max) == 0x000008, "Member 'KismetMathLibrary_Wrap::Max' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Wrap, ReturnValue) == 0x00000C, "Member 'KismetMathLibrary_Wrap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Xor_Int64Int64 \ +static_assert(alignof(KismetMathLibrary_Xor_Int64Int64) == 0x000008, "Wrong alignment on KismetMathLibrary_Xor_Int64Int64"); \ +static_assert(sizeof(KismetMathLibrary_Xor_Int64Int64) == 0x000018, "Wrong size on KismetMathLibrary_Xor_Int64Int64"); \ +static_assert(offsetof(KismetMathLibrary_Xor_Int64Int64, A) == 0x000000, "Member 'KismetMathLibrary_Xor_Int64Int64::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Xor_Int64Int64, B) == 0x000008, "Member 'KismetMathLibrary_Xor_Int64Int64::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Xor_Int64Int64, ReturnValue) == 0x000010, "Member 'KismetMathLibrary_Xor_Int64Int64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMathLibrary_Xor_IntInt \ +static_assert(alignof(KismetMathLibrary_Xor_IntInt) == 0x000004, "Wrong alignment on KismetMathLibrary_Xor_IntInt"); \ +static_assert(sizeof(KismetMathLibrary_Xor_IntInt) == 0x00000C, "Wrong size on KismetMathLibrary_Xor_IntInt"); \ +static_assert(offsetof(KismetMathLibrary_Xor_IntInt, A) == 0x000000, "Member 'KismetMathLibrary_Xor_IntInt::A' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Xor_IntInt, B) == 0x000004, "Member 'KismetMathLibrary_Xor_IntInt::B' has a wrong offset!"); \ +static_assert(offsetof(KismetMathLibrary_Xor_IntInt, ReturnValue) == 0x000008, "Member 'KismetMathLibrary_Xor_IntInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetMathLibrary \ +static_assert(alignof(UKismetMathLibrary) == 0x000008, "Wrong alignment on UKismetMathLibrary"); \ +static_assert(sizeof(UKismetMathLibrary) == 0x000028, "Wrong size on UKismetMathLibrary"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionReflectionCapturePassSwitch \ +static_assert(alignof(UMaterialExpressionReflectionCapturePassSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionReflectionCapturePassSwitch"); \ +static_assert(sizeof(UMaterialExpressionReflectionCapturePassSwitch) == 0x000100, "Wrong size on UMaterialExpressionReflectionCapturePassSwitch"); \ +static_assert(offsetof(UMaterialExpressionReflectionCapturePassSwitch, Default) == 0x0000B0, "Member 'UMaterialExpressionReflectionCapturePassSwitch::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionReflectionCapturePassSwitch, Reflection) == 0x0000D8, "Member 'UMaterialExpressionReflectionCapturePassSwitch::Reflection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionReflectionVectorWS \ +static_assert(alignof(UMaterialExpressionReflectionVectorWS) == 0x000008, "Wrong alignment on UMaterialExpressionReflectionVectorWS"); \ +static_assert(sizeof(UMaterialExpressionReflectionVectorWS) == 0x0000E0, "Wrong size on UMaterialExpressionReflectionVectorWS"); \ +static_assert(offsetof(UMaterialExpressionReflectionVectorWS, CustomWorldNormal) == 0x0000B0, "Member 'UMaterialExpressionReflectionVectorWS::CustomWorldNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_AddComponentToCluster \ +static_assert(alignof(ClusterUnionComponent_AddComponentToCluster) == 0x000008, "Wrong alignment on ClusterUnionComponent_AddComponentToCluster"); \ +static_assert(sizeof(ClusterUnionComponent_AddComponentToCluster) == 0x000018, "Wrong size on ClusterUnionComponent_AddComponentToCluster"); \ +static_assert(offsetof(ClusterUnionComponent_AddComponentToCluster, InComponent) == 0x000000, "Member 'ClusterUnionComponent_AddComponentToCluster::InComponent' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_AddComponentToCluster, BoneIds) == 0x000008, "Member 'ClusterUnionComponent_AddComponentToCluster::BoneIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_ForceSetChildToParent \ +static_assert(alignof(ClusterUnionComponent_ForceSetChildToParent) == 0x000008, "Wrong alignment on ClusterUnionComponent_ForceSetChildToParent"); \ +static_assert(sizeof(ClusterUnionComponent_ForceSetChildToParent) == 0x000028, "Wrong size on ClusterUnionComponent_ForceSetChildToParent"); \ +static_assert(offsetof(ClusterUnionComponent_ForceSetChildToParent, InComponent) == 0x000000, "Member 'ClusterUnionComponent_ForceSetChildToParent::InComponent' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_ForceSetChildToParent, BoneIds) == 0x000008, "Member 'ClusterUnionComponent_ForceSetChildToParent::BoneIds' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_ForceSetChildToParent, ChildToParent) == 0x000018, "Member 'ClusterUnionComponent_ForceSetChildToParent::ChildToParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_GetActors \ +static_assert(alignof(ClusterUnionComponent_GetActors) == 0x000008, "Wrong alignment on ClusterUnionComponent_GetActors"); \ +static_assert(sizeof(ClusterUnionComponent_GetActors) == 0x000010, "Wrong size on ClusterUnionComponent_GetActors"); \ +static_assert(offsetof(ClusterUnionComponent_GetActors, ReturnValue) == 0x000000, "Member 'ClusterUnionComponent_GetActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_GetPrimitiveComponents \ +static_assert(alignof(ClusterUnionComponent_GetPrimitiveComponents) == 0x000008, "Wrong alignment on ClusterUnionComponent_GetPrimitiveComponents"); \ +static_assert(sizeof(ClusterUnionComponent_GetPrimitiveComponents) == 0x000010, "Wrong size on ClusterUnionComponent_GetPrimitiveComponents"); \ +static_assert(offsetof(ClusterUnionComponent_GetPrimitiveComponents, ReturnValue) == 0x000000, "Member 'ClusterUnionComponent_GetPrimitiveComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_HandleComponentPhysicsStateChange \ +static_assert(alignof(ClusterUnionComponent_HandleComponentPhysicsStateChange) == 0x000008, "Wrong alignment on ClusterUnionComponent_HandleComponentPhysicsStateChange"); \ +static_assert(sizeof(ClusterUnionComponent_HandleComponentPhysicsStateChange) == 0x000010, "Wrong size on ClusterUnionComponent_HandleComponentPhysicsStateChange"); \ +static_assert(offsetof(ClusterUnionComponent_HandleComponentPhysicsStateChange, ChangedComponent) == 0x000000, "Member 'ClusterUnionComponent_HandleComponentPhysicsStateChange::ChangedComponent' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_HandleComponentPhysicsStateChange, StateChange) == 0x000008, "Member 'ClusterUnionComponent_HandleComponentPhysicsStateChange::StateChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion \ +static_assert(alignof(ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion) == 0x000008, "Wrong alignment on ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion"); \ +static_assert(sizeof(ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion) == 0x000010, "Wrong size on ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion"); \ +static_assert(offsetof(ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion, ChangedComponent) == 0x000000, "Member 'ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion::ChangedComponent' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion, StateChange) == 0x000008, "Member 'ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion::StateChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_IsComponentAdded \ +static_assert(alignof(ClusterUnionComponent_IsComponentAdded) == 0x000008, "Wrong alignment on ClusterUnionComponent_IsComponentAdded"); \ +static_assert(sizeof(ClusterUnionComponent_IsComponentAdded) == 0x000010, "Wrong size on ClusterUnionComponent_IsComponentAdded"); \ +static_assert(offsetof(ClusterUnionComponent_IsComponentAdded, Component) == 0x000000, "Member 'ClusterUnionComponent_IsComponentAdded::Component' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionComponent_IsComponentAdded, ReturnValue) == 0x000008, "Member 'ClusterUnionComponent_IsComponentAdded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_RemoveComponentFromCluster \ +static_assert(alignof(ClusterUnionComponent_RemoveComponentFromCluster) == 0x000008, "Wrong alignment on ClusterUnionComponent_RemoveComponentFromCluster"); \ +static_assert(sizeof(ClusterUnionComponent_RemoveComponentFromCluster) == 0x000008, "Wrong size on ClusterUnionComponent_RemoveComponentFromCluster"); \ +static_assert(offsetof(ClusterUnionComponent_RemoveComponentFromCluster, InComponent) == 0x000000, "Member 'ClusterUnionComponent_RemoveComponentFromCluster::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_SetIsAnchored \ +static_assert(alignof(ClusterUnionComponent_SetIsAnchored) == 0x000001, "Wrong alignment on ClusterUnionComponent_SetIsAnchored"); \ +static_assert(sizeof(ClusterUnionComponent_SetIsAnchored) == 0x000001, "Wrong size on ClusterUnionComponent_SetIsAnchored"); \ +static_assert(offsetof(ClusterUnionComponent_SetIsAnchored, bIsAnchored) == 0x000000, "Member 'ClusterUnionComponent_SetIsAnchored::bIsAnchored' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionComponent_IsAuthority \ +static_assert(alignof(ClusterUnionComponent_IsAuthority) == 0x000001, "Wrong alignment on ClusterUnionComponent_IsAuthority"); \ +static_assert(sizeof(ClusterUnionComponent_IsAuthority) == 0x000001, "Wrong size on ClusterUnionComponent_IsAuthority"); \ +static_assert(offsetof(ClusterUnionComponent_IsAuthority, ReturnValue) == 0x000000, "Member 'ClusterUnionComponent_IsAuthority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClusterUnionComponent \ +static_assert(alignof(UClusterUnionComponent) == 0x000010, "Wrong alignment on UClusterUnionComponent"); \ +static_assert(sizeof(UClusterUnionComponent) == 0x0007B0, "Wrong size on UClusterUnionComponent"); \ +static_assert(offsetof(UClusterUnionComponent, OnComponentAddedEvent) == 0x000570, "Member 'UClusterUnionComponent::OnComponentAddedEvent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionComponent, OnComponentRemovedEvent) == 0x000580, "Member 'UClusterUnionComponent::OnComponentRemovedEvent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionComponent, OnComponentBoundsChangedEvent) == 0x000590, "Member 'UClusterUnionComponent::OnComponentBoundsChangedEvent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionComponent, ClusteredComponentsReferences) == 0x0005A0, "Member 'UClusterUnionComponent::ClusteredComponentsReferences' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionComponent, UniqueIdxToComponent) == 0x0006F0, "Member 'UClusterUnionComponent::UniqueIdxToComponent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionComponent, ReplicatedRigidState) == 0x000740, "Member 'UClusterUnionComponent::ReplicatedRigidState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRound \ +static_assert(alignof(UMaterialExpressionRound) == 0x000008, "Wrong alignment on UMaterialExpressionRound"); \ +static_assert(sizeof(UMaterialExpressionRound) == 0x0000D8, "Wrong size on UMaterialExpressionRound"); \ +static_assert(offsetof(UMaterialExpressionRound, Input) == 0x0000B0, "Member 'UMaterialExpressionRound::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMorphTarget \ +static_assert(alignof(UMorphTarget) == 0x000008, "Wrong alignment on UMorphTarget"); \ +static_assert(sizeof(UMorphTarget) == 0x000040, "Wrong size on UMorphTarget"); \ +static_assert(offsetof(UMorphTarget, BaseSkelMesh) == 0x000028, "Member 'UMorphTarget::BaseSkelMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRuntimeVirtualTextureOutput \ +static_assert(alignof(UMaterialExpressionRuntimeVirtualTextureOutput) == 0x000008, "Wrong alignment on UMaterialExpressionRuntimeVirtualTextureOutput"); \ +static_assert(sizeof(UMaterialExpressionRuntimeVirtualTextureOutput) == 0x0001C8, "Wrong size on UMaterialExpressionRuntimeVirtualTextureOutput"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, Specular) == 0x0000D8, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, Roughness) == 0x000100, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, Normal) == 0x000128, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, WorldHeight) == 0x000150, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::WorldHeight' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, Opacity) == 0x000178, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::Opacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureOutput, Mask) == 0x0001A0, "Member 'UMaterialExpressionRuntimeVirtualTextureOutput::Mask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRuntimeVirtualTextureReplace \ +static_assert(alignof(UMaterialExpressionRuntimeVirtualTextureReplace) == 0x000008, "Wrong alignment on UMaterialExpressionRuntimeVirtualTextureReplace"); \ +static_assert(sizeof(UMaterialExpressionRuntimeVirtualTextureReplace) == 0x000100, "Wrong size on UMaterialExpressionRuntimeVirtualTextureReplace"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureReplace, Default) == 0x0000B0, "Member 'UMaterialExpressionRuntimeVirtualTextureReplace::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureReplace, VirtualTextureOutput) == 0x0000D8, "Member 'UMaterialExpressionRuntimeVirtualTextureReplace::VirtualTextureOutput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialParameterCollectionInstance \ +static_assert(alignof(UMaterialParameterCollectionInstance) == 0x000008, "Wrong alignment on UMaterialParameterCollectionInstance"); \ +static_assert(sizeof(UMaterialParameterCollectionInstance) == 0x000120, "Wrong size on UMaterialParameterCollectionInstance"); \ +static_assert(offsetof(UMaterialParameterCollectionInstance, Collection) == 0x00002C, "Member 'UMaterialParameterCollectionInstance::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRuntimeVirtualTextureSample \ +static_assert(alignof(UMaterialExpressionRuntimeVirtualTextureSample) == 0x000008, "Wrong alignment on UMaterialExpressionRuntimeVirtualTextureSample"); \ +static_assert(sizeof(UMaterialExpressionRuntimeVirtualTextureSample) == 0x000138, "Wrong size on UMaterialExpressionRuntimeVirtualTextureSample"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, WorldPosition) == 0x0000D8, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, MipValue) == 0x000100, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::MipValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, VirtualTexture) == 0x000128, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::VirtualTexture' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, MaterialType) == 0x000130, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::MaterialType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, bSinglePhysicalSpace) == 0x000131, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::bSinglePhysicalSpace' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, bAdaptive) == 0x000132, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::bAdaptive' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, bEnableFeedback) == 0x000133, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::bEnableFeedback' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, MipValueMode) == 0x000134, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::MipValueMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSample, TextureAddressMode) == 0x000135, "Member 'UMaterialExpressionRuntimeVirtualTextureSample::TextureAddressMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NetworkPhysicsComponent_ServerReceiveInputsDatas \ +static_assert(alignof(NetworkPhysicsComponent_ServerReceiveInputsDatas) == 0x000008, "Wrong alignment on NetworkPhysicsComponent_ServerReceiveInputsDatas"); \ +static_assert(sizeof(NetworkPhysicsComponent_ServerReceiveInputsDatas) == 0x000010, "Wrong size on NetworkPhysicsComponent_ServerReceiveInputsDatas"); \ +static_assert(offsetof(NetworkPhysicsComponent_ServerReceiveInputsDatas, ClientInputs) == 0x000000, "Member 'NetworkPhysicsComponent_ServerReceiveInputsDatas::ClientInputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetworkPhysicsComponent \ +static_assert(alignof(UNetworkPhysicsComponent) == 0x000008, "Wrong alignment on UNetworkPhysicsComponent"); \ +static_assert(sizeof(UNetworkPhysicsComponent) == 0x000150, "Wrong size on UNetworkPhysicsComponent"); \ +static_assert(offsetof(UNetworkPhysicsComponent, ReplicatedInputs) == 0x0000A0, "Member 'UNetworkPhysicsComponent::ReplicatedInputs' has a wrong offset!"); \ +static_assert(offsetof(UNetworkPhysicsComponent, ReplicatedStates) == 0x0000B0, "Member 'UNetworkPhysicsComponent::ReplicatedStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionRuntimeVirtualTextureSampleParameter \ +static_assert(alignof(UMaterialExpressionRuntimeVirtualTextureSampleParameter) == 0x000008, "Wrong alignment on UMaterialExpressionRuntimeVirtualTextureSampleParameter"); \ +static_assert(sizeof(UMaterialExpressionRuntimeVirtualTextureSampleParameter) == 0x000160, "Wrong size on UMaterialExpressionRuntimeVirtualTextureSampleParameter"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSampleParameter, ParameterName) == 0x000138, "Member 'UMaterialExpressionRuntimeVirtualTextureSampleParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSampleParameter, ExpressionGUID) == 0x000140, "Member 'UMaterialExpressionRuntimeVirtualTextureSampleParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSampleParameter, Group) == 0x000150, "Member 'UMaterialExpressionRuntimeVirtualTextureSampleParameter::Group' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionRuntimeVirtualTextureSampleParameter, SortPriority) == 0x000158, "Member 'UMaterialExpressionRuntimeVirtualTextureSampleParameter::SortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INavigationDataInterface \ +static_assert(alignof(INavigationDataInterface) == 0x000001, "Wrong alignment on INavigationDataInterface"); \ +static_assert(sizeof(INavigationDataInterface) == 0x000001, "Wrong size on INavigationDataInterface"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSamplePhysicsVectorField \ +static_assert(alignof(UMaterialExpressionSamplePhysicsVectorField) == 0x000008, "Wrong alignment on UMaterialExpressionSamplePhysicsVectorField"); \ +static_assert(sizeof(UMaterialExpressionSamplePhysicsVectorField) == 0x0000E0, "Wrong size on UMaterialExpressionSamplePhysicsVectorField"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsVectorField, WorldPosition) == 0x0000B0, "Member 'UMaterialExpressionSamplePhysicsVectorField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsVectorField, FieldTarget) == 0x0000D8, "Member 'UMaterialExpressionSamplePhysicsVectorField::FieldTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSamplePhysicsScalarField \ +static_assert(alignof(UMaterialExpressionSamplePhysicsScalarField) == 0x000008, "Wrong alignment on UMaterialExpressionSamplePhysicsScalarField"); \ +static_assert(sizeof(UMaterialExpressionSamplePhysicsScalarField) == 0x0000E0, "Wrong size on UMaterialExpressionSamplePhysicsScalarField"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsScalarField, WorldPosition) == 0x0000B0, "Member 'UMaterialExpressionSamplePhysicsScalarField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSamplePhysicsScalarField, FieldTarget) == 0x0000D8, "Member 'UMaterialExpressionSamplePhysicsScalarField::FieldTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBodySetup \ +static_assert(alignof(UBodySetup) == 0x000008, "Wrong alignment on UBodySetup"); \ +static_assert(sizeof(UBodySetup) == 0x000300, "Wrong size on UBodySetup"); \ +static_assert(offsetof(UBodySetup, AggGeom) == 0x000038, "Member 'UBodySetup::AggGeom' has a wrong offset!"); \ +static_assert(offsetof(UBodySetup, PhysMaterial) == 0x0000B8, "Member 'UBodySetup::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UBodySetup, WalkableSlopeOverride) == 0x0000C0, "Member 'UBodySetup::WalkableSlopeOverride' has a wrong offset!"); \ +static_assert(offsetof(UBodySetup, DefaultInstance) == 0x000140, "Member 'UBodySetup::DefaultInstance' has a wrong offset!"); \ +static_assert(offsetof(UBodySetup, BuildScale3D) == 0x0002D8, "Member 'UBodySetup::BuildScale3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalBodySetup \ +static_assert(alignof(USkeletalBodySetup) == 0x000008, "Wrong alignment on USkeletalBodySetup"); \ +static_assert(sizeof(USkeletalBodySetup) == 0x000318, "Wrong size on USkeletalBodySetup"); \ +static_assert(offsetof(USkeletalBodySetup, bSkipScaleFromAnimation) == 0x000300, "Member 'USkeletalBodySetup::bSkipScaleFromAnimation' has a wrong offset!"); \ +static_assert(offsetof(USkeletalBodySetup, PhysicalAnimationData) == 0x000308, "Member 'USkeletalBodySetup::PhysicalAnimationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSaturate \ +static_assert(alignof(UMaterialExpressionSaturate) == 0x000008, "Wrong alignment on UMaterialExpressionSaturate"); \ +static_assert(sizeof(UMaterialExpressionSaturate) == 0x0000D8, "Wrong size on UMaterialExpressionSaturate"); \ +static_assert(offsetof(UMaterialExpressionSaturate, Input) == 0x0000B0, "Member 'UMaterialExpressionSaturate::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSceneDepth \ +static_assert(alignof(UMaterialExpressionSceneDepth) == 0x000008, "Wrong alignment on UMaterialExpressionSceneDepth"); \ +static_assert(sizeof(UMaterialExpressionSceneDepth) == 0x000118, "Wrong size on UMaterialExpressionSceneDepth"); \ +static_assert(offsetof(UMaterialExpressionSceneDepth, InputMode) == 0x0000B0, "Member 'UMaterialExpressionSceneDepth::InputMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepth, Input) == 0x0000B8, "Member 'UMaterialExpressionSceneDepth::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepth, Coordinates) == 0x0000E0, "Member 'UMaterialExpressionSceneDepth::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepth, ConstInput) == 0x000108, "Member 'UMaterialExpressionSceneDepth::ConstInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavAreaBase \ +static_assert(alignof(UNavAreaBase) == 0x000008, "Wrong alignment on UNavAreaBase"); \ +static_assert(sizeof(UNavAreaBase) == 0x000030, "Wrong size on UNavAreaBase"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSceneDepthWithoutWater \ +static_assert(alignof(UMaterialExpressionSceneDepthWithoutWater) == 0x000008, "Wrong alignment on UMaterialExpressionSceneDepthWithoutWater"); \ +static_assert(sizeof(UMaterialExpressionSceneDepthWithoutWater) == 0x0000F8, "Wrong size on UMaterialExpressionSceneDepthWithoutWater"); \ +static_assert(offsetof(UMaterialExpressionSceneDepthWithoutWater, InputMode) == 0x0000B0, "Member 'UMaterialExpressionSceneDepthWithoutWater::InputMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepthWithoutWater, Input) == 0x0000B8, "Member 'UMaterialExpressionSceneDepthWithoutWater::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepthWithoutWater, ConstInput) == 0x0000E0, "Member 'UMaterialExpressionSceneDepthWithoutWater::ConstInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneDepthWithoutWater, FallbackDepth) == 0x0000F0, "Member 'UMaterialExpressionSceneDepthWithoutWater::FallbackDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSceneTexelSize \ +static_assert(alignof(UMaterialExpressionSceneTexelSize) == 0x000008, "Wrong alignment on UMaterialExpressionSceneTexelSize"); \ +static_assert(sizeof(UMaterialExpressionSceneTexelSize) == 0x0000B0, "Wrong size on UMaterialExpressionSceneTexelSize"); \ + +#define DUMPER7_ASSERTS_ALevelInstancePivot \ +static_assert(alignof(ALevelInstancePivot) == 0x000008, "Wrong alignment on ALevelInstancePivot"); \ +static_assert(sizeof(ALevelInstancePivot) == 0x0002A0, "Wrong size on ALevelInstancePivot"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_Deproject \ +static_assert(alignof(Canvas_K2_Deproject) == 0x000008, "Wrong alignment on Canvas_K2_Deproject"); \ +static_assert(sizeof(Canvas_K2_Deproject) == 0x000040, "Wrong size on Canvas_K2_Deproject"); \ +static_assert(offsetof(Canvas_K2_Deproject, ScreenPosition) == 0x000000, "Member 'Canvas_K2_Deproject::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_Deproject, WorldOrigin) == 0x000010, "Member 'Canvas_K2_Deproject::WorldOrigin' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_Deproject, WorldDirection) == 0x000028, "Member 'Canvas_K2_Deproject::WorldDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawBorder \ +static_assert(alignof(Canvas_K2_DrawBorder) == 0x000008, "Wrong alignment on Canvas_K2_DrawBorder"); \ +static_assert(sizeof(Canvas_K2_DrawBorder) == 0x0000C8, "Wrong size on Canvas_K2_DrawBorder"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, BorderTexture) == 0x000000, "Member 'Canvas_K2_DrawBorder::BorderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, BackgroundTexture) == 0x000008, "Member 'Canvas_K2_DrawBorder::BackgroundTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, LeftBorderTexture) == 0x000010, "Member 'Canvas_K2_DrawBorder::LeftBorderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, RightBorderTexture) == 0x000018, "Member 'Canvas_K2_DrawBorder::RightBorderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, TopBorderTexture) == 0x000020, "Member 'Canvas_K2_DrawBorder::TopBorderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, BottomBorderTexture) == 0x000028, "Member 'Canvas_K2_DrawBorder::BottomBorderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, ScreenPosition) == 0x000030, "Member 'Canvas_K2_DrawBorder::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, ScreenSize) == 0x000040, "Member 'Canvas_K2_DrawBorder::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, CoordinatePosition) == 0x000050, "Member 'Canvas_K2_DrawBorder::CoordinatePosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, CoordinateSize) == 0x000060, "Member 'Canvas_K2_DrawBorder::CoordinateSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, RenderColor) == 0x000070, "Member 'Canvas_K2_DrawBorder::RenderColor' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, BorderScale) == 0x000080, "Member 'Canvas_K2_DrawBorder::BorderScale' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, BackgroundScale) == 0x000090, "Member 'Canvas_K2_DrawBorder::BackgroundScale' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, Rotation) == 0x0000A0, "Member 'Canvas_K2_DrawBorder::Rotation' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, PivotPoint) == 0x0000A8, "Member 'Canvas_K2_DrawBorder::PivotPoint' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBorder, CornerSize) == 0x0000B8, "Member 'Canvas_K2_DrawBorder::CornerSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawBox \ +static_assert(alignof(Canvas_K2_DrawBox) == 0x000008, "Wrong alignment on Canvas_K2_DrawBox"); \ +static_assert(sizeof(Canvas_K2_DrawBox) == 0x000038, "Wrong size on Canvas_K2_DrawBox"); \ +static_assert(offsetof(Canvas_K2_DrawBox, ScreenPosition) == 0x000000, "Member 'Canvas_K2_DrawBox::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBox, ScreenSize) == 0x000010, "Member 'Canvas_K2_DrawBox::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBox, Thickness) == 0x000020, "Member 'Canvas_K2_DrawBox::Thickness' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawBox, RenderColor) == 0x000024, "Member 'Canvas_K2_DrawBox::RenderColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawLine \ +static_assert(alignof(Canvas_K2_DrawLine) == 0x000008, "Wrong alignment on Canvas_K2_DrawLine"); \ +static_assert(sizeof(Canvas_K2_DrawLine) == 0x000038, "Wrong size on Canvas_K2_DrawLine"); \ +static_assert(offsetof(Canvas_K2_DrawLine, ScreenPositionA) == 0x000000, "Member 'Canvas_K2_DrawLine::ScreenPositionA' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawLine, ScreenPositionB) == 0x000010, "Member 'Canvas_K2_DrawLine::ScreenPositionB' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawLine, Thickness) == 0x000020, "Member 'Canvas_K2_DrawLine::Thickness' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawLine, RenderColor) == 0x000024, "Member 'Canvas_K2_DrawLine::RenderColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawMaterial \ +static_assert(alignof(Canvas_K2_DrawMaterial) == 0x000008, "Wrong alignment on Canvas_K2_DrawMaterial"); \ +static_assert(sizeof(Canvas_K2_DrawMaterial) == 0x000060, "Wrong size on Canvas_K2_DrawMaterial"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, RenderMaterial) == 0x000000, "Member 'Canvas_K2_DrawMaterial::RenderMaterial' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, ScreenPosition) == 0x000008, "Member 'Canvas_K2_DrawMaterial::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, ScreenSize) == 0x000018, "Member 'Canvas_K2_DrawMaterial::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, CoordinatePosition) == 0x000028, "Member 'Canvas_K2_DrawMaterial::CoordinatePosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, CoordinateSize) == 0x000038, "Member 'Canvas_K2_DrawMaterial::CoordinateSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, Rotation) == 0x000048, "Member 'Canvas_K2_DrawMaterial::Rotation' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterial, PivotPoint) == 0x000050, "Member 'Canvas_K2_DrawMaterial::PivotPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawMaterialTriangle \ +static_assert(alignof(Canvas_K2_DrawMaterialTriangle) == 0x000008, "Wrong alignment on Canvas_K2_DrawMaterialTriangle"); \ +static_assert(sizeof(Canvas_K2_DrawMaterialTriangle) == 0x000018, "Wrong size on Canvas_K2_DrawMaterialTriangle"); \ +static_assert(offsetof(Canvas_K2_DrawMaterialTriangle, RenderMaterial) == 0x000000, "Member 'Canvas_K2_DrawMaterialTriangle::RenderMaterial' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawMaterialTriangle, Triangles) == 0x000008, "Member 'Canvas_K2_DrawMaterialTriangle::Triangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawPolygon \ +static_assert(alignof(Canvas_K2_DrawPolygon) == 0x000008, "Wrong alignment on Canvas_K2_DrawPolygon"); \ +static_assert(sizeof(Canvas_K2_DrawPolygon) == 0x000040, "Wrong size on Canvas_K2_DrawPolygon"); \ +static_assert(offsetof(Canvas_K2_DrawPolygon, RenderTexture) == 0x000000, "Member 'Canvas_K2_DrawPolygon::RenderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawPolygon, ScreenPosition) == 0x000008, "Member 'Canvas_K2_DrawPolygon::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawPolygon, Radius) == 0x000018, "Member 'Canvas_K2_DrawPolygon::Radius' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawPolygon, NumberOfSides) == 0x000028, "Member 'Canvas_K2_DrawPolygon::NumberOfSides' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawPolygon, RenderColor) == 0x00002C, "Member 'Canvas_K2_DrawPolygon::RenderColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawText \ +static_assert(alignof(Canvas_K2_DrawText) == 0x000008, "Wrong alignment on Canvas_K2_DrawText"); \ +static_assert(sizeof(Canvas_K2_DrawText) == 0x000088, "Wrong size on Canvas_K2_DrawText"); \ +static_assert(offsetof(Canvas_K2_DrawText, RenderFont) == 0x000000, "Member 'Canvas_K2_DrawText::RenderFont' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, RenderText) == 0x000008, "Member 'Canvas_K2_DrawText::RenderText' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, ScreenPosition) == 0x000018, "Member 'Canvas_K2_DrawText::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, Scale) == 0x000028, "Member 'Canvas_K2_DrawText::Scale' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, RenderColor) == 0x000038, "Member 'Canvas_K2_DrawText::RenderColor' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, Kerning) == 0x000048, "Member 'Canvas_K2_DrawText::Kerning' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, ShadowColor) == 0x00004C, "Member 'Canvas_K2_DrawText::ShadowColor' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, ShadowOffset) == 0x000060, "Member 'Canvas_K2_DrawText::ShadowOffset' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, bCentreX) == 0x000070, "Member 'Canvas_K2_DrawText::bCentreX' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, bCentreY) == 0x000071, "Member 'Canvas_K2_DrawText::bCentreY' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, bOutlined) == 0x000072, "Member 'Canvas_K2_DrawText::bOutlined' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawText, OutlineColor) == 0x000074, "Member 'Canvas_K2_DrawText::OutlineColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawTexture \ +static_assert(alignof(Canvas_K2_DrawTexture) == 0x000008, "Wrong alignment on Canvas_K2_DrawTexture"); \ +static_assert(sizeof(Canvas_K2_DrawTexture) == 0x000070, "Wrong size on Canvas_K2_DrawTexture"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, RenderTexture) == 0x000000, "Member 'Canvas_K2_DrawTexture::RenderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, ScreenPosition) == 0x000008, "Member 'Canvas_K2_DrawTexture::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, ScreenSize) == 0x000018, "Member 'Canvas_K2_DrawTexture::ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, CoordinatePosition) == 0x000028, "Member 'Canvas_K2_DrawTexture::CoordinatePosition' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, CoordinateSize) == 0x000038, "Member 'Canvas_K2_DrawTexture::CoordinateSize' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, RenderColor) == 0x000048, "Member 'Canvas_K2_DrawTexture::RenderColor' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, BlendMode) == 0x000058, "Member 'Canvas_K2_DrawTexture::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, Rotation) == 0x00005C, "Member 'Canvas_K2_DrawTexture::Rotation' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTexture, PivotPoint) == 0x000060, "Member 'Canvas_K2_DrawTexture::PivotPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_DrawTriangle \ +static_assert(alignof(Canvas_K2_DrawTriangle) == 0x000008, "Wrong alignment on Canvas_K2_DrawTriangle"); \ +static_assert(sizeof(Canvas_K2_DrawTriangle) == 0x000018, "Wrong size on Canvas_K2_DrawTriangle"); \ +static_assert(offsetof(Canvas_K2_DrawTriangle, RenderTexture) == 0x000000, "Member 'Canvas_K2_DrawTriangle::RenderTexture' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_DrawTriangle, Triangles) == 0x000008, "Member 'Canvas_K2_DrawTriangle::Triangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_Project \ +static_assert(alignof(Canvas_K2_Project) == 0x000008, "Wrong alignment on Canvas_K2_Project"); \ +static_assert(sizeof(Canvas_K2_Project) == 0x000030, "Wrong size on Canvas_K2_Project"); \ +static_assert(offsetof(Canvas_K2_Project, WorldLocation) == 0x000000, "Member 'Canvas_K2_Project::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_Project, ReturnValue) == 0x000018, "Member 'Canvas_K2_Project::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_StrLen \ +static_assert(alignof(Canvas_K2_StrLen) == 0x000008, "Wrong alignment on Canvas_K2_StrLen"); \ +static_assert(sizeof(Canvas_K2_StrLen) == 0x000028, "Wrong size on Canvas_K2_StrLen"); \ +static_assert(offsetof(Canvas_K2_StrLen, RenderFont) == 0x000000, "Member 'Canvas_K2_StrLen::RenderFont' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_StrLen, RenderText) == 0x000008, "Member 'Canvas_K2_StrLen::RenderText' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_StrLen, ReturnValue) == 0x000018, "Member 'Canvas_K2_StrLen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Canvas_K2_TextSize \ +static_assert(alignof(Canvas_K2_TextSize) == 0x000008, "Wrong alignment on Canvas_K2_TextSize"); \ +static_assert(sizeof(Canvas_K2_TextSize) == 0x000038, "Wrong size on Canvas_K2_TextSize"); \ +static_assert(offsetof(Canvas_K2_TextSize, RenderFont) == 0x000000, "Member 'Canvas_K2_TextSize::RenderFont' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_TextSize, RenderText) == 0x000008, "Member 'Canvas_K2_TextSize::RenderText' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_TextSize, Scale) == 0x000018, "Member 'Canvas_K2_TextSize::Scale' has a wrong offset!"); \ +static_assert(offsetof(Canvas_K2_TextSize, ReturnValue) == 0x000028, "Member 'Canvas_K2_TextSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCanvas \ +static_assert(alignof(UCanvas) == 0x000010, "Wrong alignment on UCanvas"); \ +static_assert(sizeof(UCanvas) == 0x000390, "Wrong size on UCanvas"); \ +static_assert(offsetof(UCanvas, OrgX) == 0x000028, "Member 'UCanvas::OrgX' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, OrgY) == 0x00002C, "Member 'UCanvas::OrgY' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, ClipX) == 0x000030, "Member 'UCanvas::ClipX' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, ClipY) == 0x000034, "Member 'UCanvas::ClipY' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, DrawColor) == 0x000038, "Member 'UCanvas::DrawColor' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, SizeX) == 0x000040, "Member 'UCanvas::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, SizeY) == 0x000044, "Member 'UCanvas::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, ColorModulate) == 0x000050, "Member 'UCanvas::ColorModulate' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, DefaultTexture) == 0x000070, "Member 'UCanvas::DefaultTexture' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, GradientTexture0) == 0x000078, "Member 'UCanvas::GradientTexture0' has a wrong offset!"); \ +static_assert(offsetof(UCanvas, ReporterGraph) == 0x000080, "Member 'UCanvas::ReporterGraph' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSceneTexture \ +static_assert(alignof(UMaterialExpressionSceneTexture) == 0x000008, "Wrong alignment on UMaterialExpressionSceneTexture"); \ +static_assert(sizeof(UMaterialExpressionSceneTexture) == 0x0000E0, "Wrong size on UMaterialExpressionSceneTexture"); \ +static_assert(offsetof(UMaterialExpressionSceneTexture, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionSceneTexture::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneTexture, SceneTextureId) == 0x0000D8, "Member 'UMaterialExpressionSceneTexture::SceneTextureId' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSceneTexture, bFiltered) == 0x0000D9, "Member 'UMaterialExpressionSceneTexture::bFiltered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionScreenPosition \ +static_assert(alignof(UMaterialExpressionScreenPosition) == 0x000008, "Wrong alignment on UMaterialExpressionScreenPosition"); \ +static_assert(sizeof(UMaterialExpressionScreenPosition) == 0x0000B0, "Wrong size on UMaterialExpressionScreenPosition"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionShadingPathSwitch \ +static_assert(alignof(UMaterialExpressionShadingPathSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionShadingPathSwitch"); \ +static_assert(sizeof(UMaterialExpressionShadingPathSwitch) == 0x000150, "Wrong size on UMaterialExpressionShadingPathSwitch"); \ +static_assert(offsetof(UMaterialExpressionShadingPathSwitch, Default) == 0x0000B0, "Member 'UMaterialExpressionShadingPathSwitch::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionShadingPathSwitch, Inputs) == 0x0000D8, "Member 'UMaterialExpressionShadingPathSwitch::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionShadowReplace \ +static_assert(alignof(UMaterialExpressionShadowReplace) == 0x000008, "Wrong alignment on UMaterialExpressionShadowReplace"); \ +static_assert(sizeof(UMaterialExpressionShadowReplace) == 0x000100, "Wrong size on UMaterialExpressionShadowReplace"); \ +static_assert(offsetof(UMaterialExpressionShadowReplace, Default) == 0x0000B0, "Member 'UMaterialExpressionShadowReplace::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionShadowReplace, Shadow) == 0x0000D8, "Member 'UMaterialExpressionShadowReplace::Shadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALightmassImportanceVolume \ +static_assert(alignof(ALightmassImportanceVolume) == 0x000008, "Wrong alignment on ALightmassImportanceVolume"); \ +static_assert(sizeof(ALightmassImportanceVolume) == 0x0002D0, "Wrong size on ALightmassImportanceVolume"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSine \ +static_assert(alignof(UMaterialExpressionSine) == 0x000008, "Wrong alignment on UMaterialExpressionSine"); \ +static_assert(sizeof(UMaterialExpressionSine) == 0x0000E0, "Wrong size on UMaterialExpressionSine"); \ +static_assert(offsetof(UMaterialExpressionSine, Input) == 0x0000B0, "Member 'UMaterialExpressionSine::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSine, Period) == 0x0000D8, "Member 'UMaterialExpressionSine::Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyAtmosphereLightDiskLuminance \ +static_assert(alignof(UMaterialExpressionSkyAtmosphereLightDiskLuminance) == 0x000008, "Wrong alignment on UMaterialExpressionSkyAtmosphereLightDiskLuminance"); \ +static_assert(sizeof(UMaterialExpressionSkyAtmosphereLightDiskLuminance) == 0x0000E0, "Wrong size on UMaterialExpressionSkyAtmosphereLightDiskLuminance"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereLightDiskLuminance, LightIndex) == 0x0000B0, "Member 'UMaterialExpressionSkyAtmosphereLightDiskLuminance::LightIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSkyAtmosphereLightDiskLuminance, DiskAngularDiameterOverride) == 0x0000B8, "Member 'UMaterialExpressionSkyAtmosphereLightDiskLuminance::DiskAngularDiameterOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSkyLightEnvMapSample \ +static_assert(alignof(UMaterialExpressionSkyLightEnvMapSample) == 0x000008, "Wrong alignment on UMaterialExpressionSkyLightEnvMapSample"); \ +static_assert(sizeof(UMaterialExpressionSkyLightEnvMapSample) == 0x000100, "Wrong size on UMaterialExpressionSkyLightEnvMapSample"); \ +static_assert(offsetof(UMaterialExpressionSkyLightEnvMapSample, Direction) == 0x0000B0, "Member 'UMaterialExpressionSkyLightEnvMapSample::Direction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSkyLightEnvMapSample, Roughness) == 0x0000D8, "Member 'UMaterialExpressionSkyLightEnvMapSample::Roughness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleColorScaleOverLife \ +static_assert(alignof(UParticleModuleColorScaleOverLife) == 0x000008, "Wrong alignment on UParticleModuleColorScaleOverLife"); \ +static_assert(sizeof(UParticleModuleColorScaleOverLife) == 0x0000C8, "Wrong size on UParticleModuleColorScaleOverLife"); \ +static_assert(offsetof(UParticleModuleColorScaleOverLife, ColorScaleOverLife) == 0x000030, "Member 'UParticleModuleColorScaleOverLife::ColorScaleOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleColorScaleOverLife, AlphaScaleOverLife) == 0x000090, "Member 'UParticleModuleColorScaleOverLife::AlphaScaleOverLife' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSmoothStep \ +static_assert(alignof(UMaterialExpressionSmoothStep) == 0x000008, "Wrong alignment on UMaterialExpressionSmoothStep"); \ +static_assert(sizeof(UMaterialExpressionSmoothStep) == 0x000138, "Wrong size on UMaterialExpressionSmoothStep"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, Min) == 0x0000B0, "Member 'UMaterialExpressionSmoothStep::Min' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, Max) == 0x0000D8, "Member 'UMaterialExpressionSmoothStep::Max' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, Value) == 0x000100, "Member 'UMaterialExpressionSmoothStep::Value' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, ConstMin) == 0x000128, "Member 'UMaterialExpressionSmoothStep::ConstMin' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, ConstMax) == 0x00012C, "Member 'UMaterialExpressionSmoothStep::ConstMax' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSmoothStep, ConstValue) == 0x000130, "Member 'UMaterialExpressionSmoothStep::ConstValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSobol \ +static_assert(alignof(UMaterialExpressionSobol) == 0x000008, "Wrong alignment on UMaterialExpressionSobol"); \ +static_assert(sizeof(UMaterialExpressionSobol) == 0x000140, "Wrong size on UMaterialExpressionSobol"); \ +static_assert(offsetof(UMaterialExpressionSobol, Cell) == 0x0000B0, "Member 'UMaterialExpressionSobol::Cell' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSobol, Index_0) == 0x0000D8, "Member 'UMaterialExpressionSobol::Index_0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSobol, Seed) == 0x000100, "Member 'UMaterialExpressionSobol::Seed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSobol, ConstIndex) == 0x000128, "Member 'UMaterialExpressionSobol::ConstIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSobol, ConstSeed) == 0x000130, "Member 'UMaterialExpressionSobol::ConstSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHLODProxy \ +static_assert(alignof(UHLODProxy) == 0x000008, "Wrong alignment on UHLODProxy"); \ +static_assert(sizeof(UHLODProxy) == 0x000088, "Wrong size on UHLODProxy"); \ +static_assert(offsetof(UHLODProxy, ProxyMeshes) == 0x000028, "Member 'UHLODProxy::ProxyMeshes' has a wrong offset!"); \ +static_assert(offsetof(UHLODProxy, HLODActors) == 0x000038, "Member 'UHLODProxy::HLODActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSparseVolumeTextureObject \ +static_assert(alignof(UMaterialExpressionSparseVolumeTextureObject) == 0x000008, "Wrong alignment on UMaterialExpressionSparseVolumeTextureObject"); \ +static_assert(sizeof(UMaterialExpressionSparseVolumeTextureObject) == 0x0000B8, "Wrong size on UMaterialExpressionSparseVolumeTextureObject"); \ + +#define DUMPER7_ASSERTS_UParticleModuleBeamModifier \ +static_assert(alignof(UParticleModuleBeamModifier) == 0x000008, "Wrong alignment on UParticleModuleBeamModifier"); \ +static_assert(sizeof(UParticleModuleBeamModifier) == 0x000138, "Wrong size on UParticleModuleBeamModifier"); \ +static_assert(offsetof(UParticleModuleBeamModifier, ModifierType) == 0x000030, "Member 'UParticleModuleBeamModifier::ModifierType' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, PositionOptions) == 0x000034, "Member 'UParticleModuleBeamModifier::PositionOptions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, Position) == 0x000038, "Member 'UParticleModuleBeamModifier::Position' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, TangentOptions) == 0x000098, "Member 'UParticleModuleBeamModifier::TangentOptions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, Tangent) == 0x0000A0, "Member 'UParticleModuleBeamModifier::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, StrengthOptions) == 0x000104, "Member 'UParticleModuleBeamModifier::StrengthOptions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamModifier, Strength) == 0x000108, "Member 'UParticleModuleBeamModifier::Strength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSparseVolumeTextureSample \ +static_assert(alignof(UMaterialExpressionSparseVolumeTextureSample) == 0x000008, "Wrong alignment on UMaterialExpressionSparseVolumeTextureSample"); \ +static_assert(sizeof(UMaterialExpressionSparseVolumeTextureSample) == 0x000138, "Wrong size on UMaterialExpressionSparseVolumeTextureSample"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSample, Coordinates) == 0x0000B8, "Member 'UMaterialExpressionSparseVolumeTextureSample::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSample, TextureObject) == 0x0000E0, "Member 'UMaterialExpressionSparseVolumeTextureSample::TextureObject' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSample, MipLevel) == 0x000108, "Member 'UMaterialExpressionSparseVolumeTextureSample::MipLevel' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSample, SamplerSource) == 0x000130, "Member 'UMaterialExpressionSparseVolumeTextureSample::SamplerSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSparseVolumeTextureSampleParameter \ +static_assert(alignof(UMaterialExpressionSparseVolumeTextureSampleParameter) == 0x000008, "Wrong alignment on UMaterialExpressionSparseVolumeTextureSampleParameter"); \ +static_assert(sizeof(UMaterialExpressionSparseVolumeTextureSampleParameter) == 0x000160, "Wrong size on UMaterialExpressionSparseVolumeTextureSampleParameter"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSampleParameter, ParameterName) == 0x000138, "Member 'UMaterialExpressionSparseVolumeTextureSampleParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSampleParameter, ExpressionGUID) == 0x000140, "Member 'UMaterialExpressionSparseVolumeTextureSampleParameter::ExpressionGUID' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSampleParameter, Group) == 0x000150, "Member 'UMaterialExpressionSparseVolumeTextureSampleParameter::Group' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSparseVolumeTextureSampleParameter, SortPriority) == 0x000158, "Member 'UMaterialExpressionSparseVolumeTextureSampleParameter::SortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInheritableComponentHandler \ +static_assert(alignof(UInheritableComponentHandler) == 0x000008, "Wrong alignment on UInheritableComponentHandler"); \ +static_assert(sizeof(UInheritableComponentHandler) == 0x000048, "Wrong size on UInheritableComponentHandler"); \ +static_assert(offsetof(UInheritableComponentHandler, Records) == 0x000028, "Member 'UInheritableComponentHandler::Records' has a wrong offset!"); \ +static_assert(offsetof(UInheritableComponentHandler, UnnecessaryComponents) == 0x000038, "Member 'UInheritableComponentHandler::UnnecessaryComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSparseVolumeTextureObjectParameter \ +static_assert(alignof(UMaterialExpressionSparseVolumeTextureObjectParameter) == 0x000008, "Wrong alignment on UMaterialExpressionSparseVolumeTextureObjectParameter"); \ +static_assert(sizeof(UMaterialExpressionSparseVolumeTextureObjectParameter) == 0x000160, "Wrong size on UMaterialExpressionSparseVolumeTextureObjectParameter"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSpeedTree \ +static_assert(alignof(UMaterialExpressionSpeedTree) == 0x000008, "Wrong alignment on UMaterialExpressionSpeedTree"); \ +static_assert(sizeof(UMaterialExpressionSpeedTree) == 0x000160, "Wrong size on UMaterialExpressionSpeedTree"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, GeometryInput) == 0x0000B0, "Member 'UMaterialExpressionSpeedTree::GeometryInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, WindInput) == 0x0000D8, "Member 'UMaterialExpressionSpeedTree::WindInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, LODInput) == 0x000100, "Member 'UMaterialExpressionSpeedTree::LODInput' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, ExtraBendWS) == 0x000128, "Member 'UMaterialExpressionSpeedTree::ExtraBendWS' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, GeometryType) == 0x000150, "Member 'UMaterialExpressionSpeedTree::GeometryType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, WindType) == 0x000151, "Member 'UMaterialExpressionSpeedTree::WindType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, LODType) == 0x000152, "Member 'UMaterialExpressionSpeedTree::LODType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, BillboardThreshold) == 0x000154, "Member 'UMaterialExpressionSpeedTree::BillboardThreshold' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpeedTree, bAccurateWindVelocities) == 0x000158, "Member 'UMaterialExpressionSpeedTree::bAccurateWindVelocities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSphereMask \ +static_assert(alignof(UMaterialExpressionSphereMask) == 0x000008, "Wrong alignment on UMaterialExpressionSphereMask"); \ +static_assert(sizeof(UMaterialExpressionSphereMask) == 0x000158, "Wrong size on UMaterialExpressionSphereMask"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, A) == 0x0000B0, "Member 'UMaterialExpressionSphereMask::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, B) == 0x0000D8, "Member 'UMaterialExpressionSphereMask::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, Radius) == 0x000100, "Member 'UMaterialExpressionSphereMask::Radius' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, Hardness) == 0x000128, "Member 'UMaterialExpressionSphereMask::Hardness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, AttenuationRadius) == 0x000150, "Member 'UMaterialExpressionSphereMask::AttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphereMask, HardnessPercent) == 0x000154, "Member 'UMaterialExpressionSphereMask::HardnessPercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSphericalParticleOpacity \ +static_assert(alignof(UMaterialExpressionSphericalParticleOpacity) == 0x000008, "Wrong alignment on UMaterialExpressionSphericalParticleOpacity"); \ +static_assert(sizeof(UMaterialExpressionSphericalParticleOpacity) == 0x0000E0, "Wrong size on UMaterialExpressionSphericalParticleOpacity"); \ +static_assert(offsetof(UMaterialExpressionSphericalParticleOpacity, Density) == 0x0000B0, "Member 'UMaterialExpressionSphericalParticleOpacity::Density' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSphericalParticleOpacity, ConstantDensity) == 0x0000D8, "Member 'UMaterialExpressionSphericalParticleOpacity::ConstantDensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStaticBool \ +static_assert(alignof(UMaterialExpressionStaticBool) == 0x000008, "Wrong alignment on UMaterialExpressionStaticBool"); \ +static_assert(sizeof(UMaterialExpressionStaticBool) == 0x0000B8, "Wrong size on UMaterialExpressionStaticBool"); \ + +#define DUMPER7_ASSERTS_UParticleModuleCollisionGPU \ +static_assert(alignof(UParticleModuleCollisionGPU) == 0x000008, "Wrong alignment on UParticleModuleCollisionGPU"); \ +static_assert(sizeof(UParticleModuleCollisionGPU) == 0x0000A8, "Wrong size on UParticleModuleCollisionGPU"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, Resilience) == 0x000030, "Member 'UParticleModuleCollisionGPU::Resilience' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, ResilienceScaleOverLife) == 0x000060, "Member 'UParticleModuleCollisionGPU::ResilienceScaleOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, Friction) == 0x000090, "Member 'UParticleModuleCollisionGPU::Friction' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, RandomSpread) == 0x000094, "Member 'UParticleModuleCollisionGPU::RandomSpread' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, RandomDistribution) == 0x000098, "Member 'UParticleModuleCollisionGPU::RandomDistribution' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, RadiusScale) == 0x00009C, "Member 'UParticleModuleCollisionGPU::RadiusScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, RadiusBias) == 0x0000A0, "Member 'UParticleModuleCollisionGPU::RadiusBias' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, Response) == 0x0000A4, "Member 'UParticleModuleCollisionGPU::Response' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollisionGPU, CollisionMode) == 0x0000A5, "Member 'UParticleModuleCollisionGPU::CollisionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStaticBoolParameter \ +static_assert(alignof(UMaterialExpressionStaticBoolParameter) == 0x000008, "Wrong alignment on UMaterialExpressionStaticBoolParameter"); \ +static_assert(sizeof(UMaterialExpressionStaticBoolParameter) == 0x0000E0, "Wrong size on UMaterialExpressionStaticBoolParameter"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStaticSwitch \ +static_assert(alignof(UMaterialExpressionStaticSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionStaticSwitch"); \ +static_assert(sizeof(UMaterialExpressionStaticSwitch) == 0x000130, "Wrong size on UMaterialExpressionStaticSwitch"); \ +static_assert(offsetof(UMaterialExpressionStaticSwitch, A) == 0x0000B8, "Member 'UMaterialExpressionStaticSwitch::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStaticSwitch, B) == 0x0000E0, "Member 'UMaterialExpressionStaticSwitch::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStaticSwitch, Value) == 0x000108, "Member 'UMaterialExpressionStaticSwitch::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStaticSwitchParameter \ +static_assert(alignof(UMaterialExpressionStaticSwitchParameter) == 0x000008, "Wrong alignment on UMaterialExpressionStaticSwitchParameter"); \ +static_assert(sizeof(UMaterialExpressionStaticSwitchParameter) == 0x000130, "Wrong size on UMaterialExpressionStaticSwitchParameter"); \ +static_assert(offsetof(UMaterialExpressionStaticSwitchParameter, A) == 0x0000E0, "Member 'UMaterialExpressionStaticSwitchParameter::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStaticSwitchParameter, B) == 0x000108, "Member 'UMaterialExpressionStaticSwitchParameter::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataLegacyConversion \ +static_assert(alignof(UMaterialExpressionStrataLegacyConversion) == 0x000008, "Wrong alignment on UMaterialExpressionStrataLegacyConversion"); \ +static_assert(sizeof(UMaterialExpressionStrataLegacyConversion) == 0x000410, "Wrong size on UMaterialExpressionStrataLegacyConversion"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionStrataLegacyConversion::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Metallic) == 0x0000D8, "Member 'UMaterialExpressionStrataLegacyConversion::Metallic' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Specular) == 0x000100, "Member 'UMaterialExpressionStrataLegacyConversion::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Roughness) == 0x000128, "Member 'UMaterialExpressionStrataLegacyConversion::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Anisotropy) == 0x000150, "Member 'UMaterialExpressionStrataLegacyConversion::Anisotropy' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, EmissiveColor) == 0x000178, "Member 'UMaterialExpressionStrataLegacyConversion::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Normal) == 0x0001A0, "Member 'UMaterialExpressionStrataLegacyConversion::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Tangent) == 0x0001C8, "Member 'UMaterialExpressionStrataLegacyConversion::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, SubsurfaceColor) == 0x0001F0, "Member 'UMaterialExpressionStrataLegacyConversion::SubsurfaceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ClearCoat) == 0x000218, "Member 'UMaterialExpressionStrataLegacyConversion::ClearCoat' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ClearCoatRoughness) == 0x000240, "Member 'UMaterialExpressionStrataLegacyConversion::ClearCoatRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, Opacity) == 0x000268, "Member 'UMaterialExpressionStrataLegacyConversion::Opacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, TransmittanceColor) == 0x000290, "Member 'UMaterialExpressionStrataLegacyConversion::TransmittanceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, WaterScatteringCoefficients) == 0x0002B8, "Member 'UMaterialExpressionStrataLegacyConversion::WaterScatteringCoefficients' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, WaterAbsorptionCoefficients) == 0x0002E0, "Member 'UMaterialExpressionStrataLegacyConversion::WaterAbsorptionCoefficients' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, WaterPhaseG) == 0x000308, "Member 'UMaterialExpressionStrataLegacyConversion::WaterPhaseG' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ColorScaleBehindWater) == 0x000330, "Member 'UMaterialExpressionStrataLegacyConversion::ColorScaleBehindWater' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ClearCoatNormal) == 0x000358, "Member 'UMaterialExpressionStrataLegacyConversion::ClearCoatNormal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, CustomTangent) == 0x000380, "Member 'UMaterialExpressionStrataLegacyConversion::CustomTangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ShadingModel) == 0x0003A8, "Member 'UMaterialExpressionStrataLegacyConversion::ShadingModel' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, SubsurfaceProfile) == 0x0003D8, "Member 'UMaterialExpressionStrataLegacyConversion::SubsurfaceProfile' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataLegacyConversion, ConvertedStrataMaterialInfo) == 0x0003E0, "Member 'UMaterialExpressionStrataLegacyConversion::ConvertedStrataMaterialInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataSlabBSDF \ +static_assert(alignof(UMaterialExpressionStrataSlabBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataSlabBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataSlabBSDF) == 0x000398, "Wrong size on UMaterialExpressionStrataSlabBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, DiffuseAlbedo) == 0x0000B0, "Member 'UMaterialExpressionStrataSlabBSDF::DiffuseAlbedo' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, F0) == 0x0000D8, "Member 'UMaterialExpressionStrataSlabBSDF::F0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, F90) == 0x000100, "Member 'UMaterialExpressionStrataSlabBSDF::F90' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, Roughness) == 0x000128, "Member 'UMaterialExpressionStrataSlabBSDF::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, Anisotropy) == 0x000150, "Member 'UMaterialExpressionStrataSlabBSDF::Anisotropy' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, Normal) == 0x000178, "Member 'UMaterialExpressionStrataSlabBSDF::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, Tangent) == 0x0001A0, "Member 'UMaterialExpressionStrataSlabBSDF::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SSSMFP) == 0x0001C8, "Member 'UMaterialExpressionStrataSlabBSDF::SSSMFP' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SSSMFPScale) == 0x0001F0, "Member 'UMaterialExpressionStrataSlabBSDF::SSSMFPScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SSSPhaseAnisotropy) == 0x000218, "Member 'UMaterialExpressionStrataSlabBSDF::SSSPhaseAnisotropy' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, EmissiveColor) == 0x000240, "Member 'UMaterialExpressionStrataSlabBSDF::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SecondRoughness) == 0x000268, "Member 'UMaterialExpressionStrataSlabBSDF::SecondRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SecondRoughnessWeight) == 0x000290, "Member 'UMaterialExpressionStrataSlabBSDF::SecondRoughnessWeight' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, FuzzRoughness) == 0x0002B8, "Member 'UMaterialExpressionStrataSlabBSDF::FuzzRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, FuzzAmount) == 0x0002E0, "Member 'UMaterialExpressionStrataSlabBSDF::FuzzAmount' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, FuzzColor) == 0x000308, "Member 'UMaterialExpressionStrataSlabBSDF::FuzzColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, GlintValue) == 0x000330, "Member 'UMaterialExpressionStrataSlabBSDF::GlintValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, GlintUV) == 0x000358, "Member 'UMaterialExpressionStrataSlabBSDF::GlintUV' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SubsurfaceProfile) == 0x000380, "Member 'UMaterialExpressionStrataSlabBSDF::SubsurfaceProfile' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSlabBSDF, SpecularProfile) == 0x000388, "Member 'UMaterialExpressionStrataSlabBSDF::SpecularProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataSimpleClearCoatBSDF \ +static_assert(alignof(UMaterialExpressionStrataSimpleClearCoatBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataSimpleClearCoatBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataSimpleClearCoatBSDF) == 0x0001C8, "Wrong size on UMaterialExpressionStrataSimpleClearCoatBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, DiffuseAlbedo) == 0x0000B0, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::DiffuseAlbedo' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, F0) == 0x0000D8, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::F0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, Roughness) == 0x000100, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, ClearCoatCoverage) == 0x000128, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::ClearCoatCoverage' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, ClearCoatRoughness) == 0x000150, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::ClearCoatRoughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, Normal) == 0x000178, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSimpleClearCoatBSDF, EmissiveColor) == 0x0001A0, "Member 'UMaterialExpressionStrataSimpleClearCoatBSDF::EmissiveColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataUnlitBSDF \ +static_assert(alignof(UMaterialExpressionStrataUnlitBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataUnlitBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataUnlitBSDF) == 0x000128, "Wrong size on UMaterialExpressionStrataUnlitBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataUnlitBSDF, EmissiveColor) == 0x0000B0, "Member 'UMaterialExpressionStrataUnlitBSDF::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataUnlitBSDF, TransmittanceColor) == 0x0000D8, "Member 'UMaterialExpressionStrataUnlitBSDF::TransmittanceColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataUnlitBSDF, Normal) == 0x000100, "Member 'UMaterialExpressionStrataUnlitBSDF::Normal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataHairBSDF \ +static_assert(alignof(UMaterialExpressionStrataHairBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataHairBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataHairBSDF) == 0x0001C8, "Wrong size on UMaterialExpressionStrataHairBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionStrataHairBSDF::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, Scatter) == 0x0000D8, "Member 'UMaterialExpressionStrataHairBSDF::Scatter' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, Specular) == 0x000100, "Member 'UMaterialExpressionStrataHairBSDF::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, Roughness) == 0x000128, "Member 'UMaterialExpressionStrataHairBSDF::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, Backlit) == 0x000150, "Member 'UMaterialExpressionStrataHairBSDF::Backlit' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, Tangent) == 0x000178, "Member 'UMaterialExpressionStrataHairBSDF::Tangent' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHairBSDF, EmissiveColor) == 0x0001A0, "Member 'UMaterialExpressionStrataHairBSDF::EmissiveColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataEyeBSDF \ +static_assert(alignof(UMaterialExpressionStrataEyeBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataEyeBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataEyeBSDF) == 0x0001F8, "Wrong size on UMaterialExpressionStrataEyeBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, DiffuseColor) == 0x0000B0, "Member 'UMaterialExpressionStrataEyeBSDF::DiffuseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, Roughness) == 0x0000D8, "Member 'UMaterialExpressionStrataEyeBSDF::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, CorneaNormal) == 0x000100, "Member 'UMaterialExpressionStrataEyeBSDF::CorneaNormal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, IrisNormal) == 0x000128, "Member 'UMaterialExpressionStrataEyeBSDF::IrisNormal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, IrisPlaneNormal) == 0x000150, "Member 'UMaterialExpressionStrataEyeBSDF::IrisPlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, IrisMask) == 0x000178, "Member 'UMaterialExpressionStrataEyeBSDF::IrisMask' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, IrisDistance) == 0x0001A0, "Member 'UMaterialExpressionStrataEyeBSDF::IrisDistance' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, EmissiveColor) == 0x0001C8, "Member 'UMaterialExpressionStrataEyeBSDF::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataEyeBSDF, SubsurfaceProfile) == 0x0001F0, "Member 'UMaterialExpressionStrataEyeBSDF::SubsurfaceProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPackageMapClient \ +static_assert(alignof(UPackageMapClient) == 0x000008, "Wrong alignment on UPackageMapClient"); \ +static_assert(sizeof(UPackageMapClient) == 0x000408, "Wrong size on UPackageMapClient"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataSingleLayerWaterBSDF \ +static_assert(alignof(UMaterialExpressionStrataSingleLayerWaterBSDF) == 0x000008, "Wrong alignment on UMaterialExpressionStrataSingleLayerWaterBSDF"); \ +static_assert(sizeof(UMaterialExpressionStrataSingleLayerWaterBSDF) == 0x000268, "Wrong size on UMaterialExpressionStrataSingleLayerWaterBSDF"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, Metallic) == 0x0000D8, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::Metallic' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, Specular) == 0x000100, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::Specular' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, Roughness) == 0x000128, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::Roughness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, Normal) == 0x000150, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, EmissiveColor) == 0x000178, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::EmissiveColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, TopMaterialOpacity) == 0x0001A0, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::TopMaterialOpacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, WaterAlbedo) == 0x0001C8, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::WaterAlbedo' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, WaterExtinction) == 0x0001F0, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::WaterExtinction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, WaterPhaseG) == 0x000218, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::WaterPhaseG' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataSingleLayerWaterBSDF, ColorScaleBehindWater) == 0x000240, "Member 'UMaterialExpressionStrataSingleLayerWaterBSDF::ColorScaleBehindWater' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataLightFunction \ +static_assert(alignof(UMaterialExpressionStrataLightFunction) == 0x000008, "Wrong alignment on UMaterialExpressionStrataLightFunction"); \ +static_assert(sizeof(UMaterialExpressionStrataLightFunction) == 0x0000D8, "Wrong size on UMaterialExpressionStrataLightFunction"); \ +static_assert(offsetof(UMaterialExpressionStrataLightFunction, Color) == 0x0000B0, "Member 'UMaterialExpressionStrataLightFunction::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataUI \ +static_assert(alignof(UMaterialExpressionStrataUI) == 0x000008, "Wrong alignment on UMaterialExpressionStrataUI"); \ +static_assert(sizeof(UMaterialExpressionStrataUI) == 0x000100, "Wrong size on UMaterialExpressionStrataUI"); \ +static_assert(offsetof(UMaterialExpressionStrataUI, Color) == 0x0000B0, "Member 'UMaterialExpressionStrataUI::Color' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataUI, Opacity) == 0x0000D8, "Member 'UMaterialExpressionStrataUI::Opacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataHorizontalMixing \ +static_assert(alignof(UMaterialExpressionStrataHorizontalMixing) == 0x000008, "Wrong alignment on UMaterialExpressionStrataHorizontalMixing"); \ +static_assert(sizeof(UMaterialExpressionStrataHorizontalMixing) == 0x000130, "Wrong size on UMaterialExpressionStrataHorizontalMixing"); \ +static_assert(offsetof(UMaterialExpressionStrataHorizontalMixing, Background) == 0x0000B0, "Member 'UMaterialExpressionStrataHorizontalMixing::Background' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHorizontalMixing, Foreground) == 0x0000D8, "Member 'UMaterialExpressionStrataHorizontalMixing::Foreground' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataHorizontalMixing, Mix) == 0x000100, "Member 'UMaterialExpressionStrataHorizontalMixing::Mix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataAdd \ +static_assert(alignof(UMaterialExpressionStrataAdd) == 0x000008, "Wrong alignment on UMaterialExpressionStrataAdd"); \ +static_assert(sizeof(UMaterialExpressionStrataAdd) == 0x000108, "Wrong size on UMaterialExpressionStrataAdd"); \ +static_assert(offsetof(UMaterialExpressionStrataAdd, A) == 0x0000B0, "Member 'UMaterialExpressionStrataAdd::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataAdd, B) == 0x0000D8, "Member 'UMaterialExpressionStrataAdd::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0 \ +static_assert(alignof(UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0) == 0x000008, "Wrong alignment on UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0"); \ +static_assert(sizeof(UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0) == 0x000128, "Wrong size on UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0"); \ +static_assert(offsetof(UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0, BaseColor) == 0x0000B0, "Member 'UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0::BaseColor' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0, Metallic) == 0x0000D8, "Member 'UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0::Metallic' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0, Specular) == 0x000100, "Member 'UMaterialExpressionStrataMetalnessToDiffuseAlbedoF0::Specular' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionStrataThinFilm \ +static_assert(alignof(UMaterialExpressionStrataThinFilm) == 0x000008, "Wrong alignment on UMaterialExpressionStrataThinFilm"); \ +static_assert(sizeof(UMaterialExpressionStrataThinFilm) == 0x000178, "Wrong size on UMaterialExpressionStrataThinFilm"); \ +static_assert(offsetof(UMaterialExpressionStrataThinFilm, Normal) == 0x0000B0, "Member 'UMaterialExpressionStrataThinFilm::Normal' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataThinFilm, F0) == 0x0000D8, "Member 'UMaterialExpressionStrataThinFilm::F0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataThinFilm, F90) == 0x000100, "Member 'UMaterialExpressionStrataThinFilm::F90' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataThinFilm, Thickness) == 0x000128, "Member 'UMaterialExpressionStrataThinFilm::Thickness' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionStrataThinFilm, IOR) == 0x000150, "Member 'UMaterialExpressionStrataThinFilm::IOR' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSubtract \ +static_assert(alignof(UMaterialExpressionSubtract) == 0x000008, "Wrong alignment on UMaterialExpressionSubtract"); \ +static_assert(sizeof(UMaterialExpressionSubtract) == 0x000108, "Wrong size on UMaterialExpressionSubtract"); \ +static_assert(offsetof(UMaterialExpressionSubtract, A) == 0x0000B0, "Member 'UMaterialExpressionSubtract::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSubtract, B) == 0x0000D8, "Member 'UMaterialExpressionSubtract::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSubtract, ConstA) == 0x000100, "Member 'UMaterialExpressionSubtract::ConstA' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSubtract, ConstB) == 0x000104, "Member 'UMaterialExpressionSubtract::ConstB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeSwitch \ +static_assert(alignof(USoundNodeSwitch) == 0x000008, "Wrong alignment on USoundNodeSwitch"); \ +static_assert(sizeof(USoundNodeSwitch) == 0x000050, "Wrong size on USoundNodeSwitch"); \ +static_assert(offsetof(USoundNodeSwitch, IntParameterName) == 0x000048, "Member 'USoundNodeSwitch::IntParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSwitch \ +static_assert(alignof(UMaterialExpressionSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionSwitch"); \ +static_assert(sizeof(UMaterialExpressionSwitch) == 0x000130, "Wrong size on UMaterialExpressionSwitch"); \ +static_assert(offsetof(UMaterialExpressionSwitch, Description) == 0x0000B0, "Member 'UMaterialExpressionSwitch::Description' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSwitch, SwitchValue) == 0x0000C0, "Member 'UMaterialExpressionSwitch::SwitchValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSwitch, ConstSwitchValue) == 0x0000E8, "Member 'UMaterialExpressionSwitch::ConstSwitchValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSwitch, Default) == 0x0000F0, "Member 'UMaterialExpressionSwitch::Default' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSwitch, ConstDefault) == 0x000118, "Member 'UMaterialExpressionSwitch::ConstDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSwitch, Inputs) == 0x000120, "Member 'UMaterialExpressionSwitch::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTangent \ +static_assert(alignof(UMaterialExpressionTangent) == 0x000008, "Wrong alignment on UMaterialExpressionTangent"); \ +static_assert(sizeof(UMaterialExpressionTangent) == 0x0000E0, "Wrong size on UMaterialExpressionTangent"); \ +static_assert(offsetof(UMaterialExpressionTangent, Input) == 0x0000B0, "Member 'UMaterialExpressionTangent::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTangent, Period) == 0x0000D8, "Member 'UMaterialExpressionTangent::Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTangentOutput \ +static_assert(alignof(UMaterialExpressionTangentOutput) == 0x000008, "Wrong alignment on UMaterialExpressionTangentOutput"); \ +static_assert(sizeof(UMaterialExpressionTangentOutput) == 0x0000D8, "Wrong size on UMaterialExpressionTangentOutput"); \ +static_assert(offsetof(UMaterialExpressionTangentOutput, Input) == 0x0000B0, "Member 'UMaterialExpressionTangentOutput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTemporalSobol \ +static_assert(alignof(UMaterialExpressionTemporalSobol) == 0x000008, "Wrong alignment on UMaterialExpressionTemporalSobol"); \ +static_assert(sizeof(UMaterialExpressionTemporalSobol) == 0x000118, "Wrong size on UMaterialExpressionTemporalSobol"); \ +static_assert(offsetof(UMaterialExpressionTemporalSobol, Index_0) == 0x0000B0, "Member 'UMaterialExpressionTemporalSobol::Index_0' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTemporalSobol, Seed) == 0x0000D8, "Member 'UMaterialExpressionTemporalSobol::Seed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTemporalSobol, ConstIndex) == 0x000100, "Member 'UMaterialExpressionTemporalSobol::ConstIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTemporalSobol, ConstSeed) == 0x000108, "Member 'UMaterialExpressionTemporalSobol::ConstSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsConstraintTemplate \ +static_assert(alignof(UPhysicsConstraintTemplate) == 0x000008, "Wrong alignment on UPhysicsConstraintTemplate"); \ +static_assert(sizeof(UPhysicsConstraintTemplate) == 0x000410, "Wrong size on UPhysicsConstraintTemplate"); \ +static_assert(offsetof(UPhysicsConstraintTemplate, DefaultInstance) == 0x000028, "Member 'UPhysicsConstraintTemplate::DefaultInstance' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintTemplate, ProfileHandles) == 0x0002A0, "Member 'UPhysicsConstraintTemplate::ProfileHandles' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintTemplate, DefaultProfile) == 0x0002B0, "Member 'UPhysicsConstraintTemplate::DefaultProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureCoordinate \ +static_assert(alignof(UMaterialExpressionTextureCoordinate) == 0x000008, "Wrong alignment on UMaterialExpressionTextureCoordinate"); \ +static_assert(sizeof(UMaterialExpressionTextureCoordinate) == 0x0000C0, "Wrong size on UMaterialExpressionTextureCoordinate"); \ +static_assert(offsetof(UMaterialExpressionTextureCoordinate, CoordinateIndex) == 0x0000B0, "Member 'UMaterialExpressionTextureCoordinate::CoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureCoordinate, UTiling) == 0x0000B4, "Member 'UMaterialExpressionTextureCoordinate::UTiling' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTextureCoordinate, VTiling) == 0x0000B8, "Member 'UMaterialExpressionTextureCoordinate::VTiling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFXSystemAsset \ +static_assert(alignof(UFXSystemAsset) == 0x000008, "Wrong alignment on UFXSystemAsset"); \ +static_assert(sizeof(UFXSystemAsset) == 0x000048, "Wrong size on UFXSystemAsset"); \ +static_assert(offsetof(UFXSystemAsset, MaxPoolSize) == 0x000028, "Member 'UFXSystemAsset::MaxPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UFXSystemAsset, PoolPrimeSize) == 0x00002C, "Member 'UFXSystemAsset::PoolPrimeSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystem_ContainsEmitterType \ +static_assert(alignof(ParticleSystem_ContainsEmitterType) == 0x000008, "Wrong alignment on ParticleSystem_ContainsEmitterType"); \ +static_assert(sizeof(ParticleSystem_ContainsEmitterType) == 0x000010, "Wrong size on ParticleSystem_ContainsEmitterType"); \ +static_assert(offsetof(ParticleSystem_ContainsEmitterType, TypeData) == 0x000000, "Member 'ParticleSystem_ContainsEmitterType::TypeData' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystem_ContainsEmitterType, ReturnValue) == 0x000008, "Member 'ParticleSystem_ContainsEmitterType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleSystem \ +static_assert(alignof(UParticleSystem) == 0x000008, "Wrong alignment on UParticleSystem"); \ +static_assert(sizeof(UParticleSystem) == 0x000170, "Wrong size on UParticleSystem"); \ +static_assert(offsetof(UParticleSystem, UpdateTime_FPS) == 0x000048, "Member 'UParticleSystem::UpdateTime_FPS' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, UpdateTime_Delta) == 0x00004C, "Member 'UParticleSystem::UpdateTime_Delta' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, WarmupTime) == 0x000050, "Member 'UParticleSystem::WarmupTime' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, WarmupTickRate) == 0x000054, "Member 'UParticleSystem::WarmupTickRate' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, Emitters) == 0x000058, "Member 'UParticleSystem::Emitters' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, PreviewComponent) == 0x000068, "Member 'UParticleSystem::PreviewComponent' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, CurveEdSetup) == 0x000070, "Member 'UParticleSystem::CurveEdSetup' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, LODDistanceCheckTime) == 0x000078, "Member 'UParticleSystem::LODDistanceCheckTime' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, MacroUVRadius) == 0x00007C, "Member 'UParticleSystem::MacroUVRadius' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, LODDistances) == 0x000080, "Member 'UParticleSystem::LODDistances' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, LODSettings) == 0x000090, "Member 'UParticleSystem::LODSettings' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, FixedRelativeBoundingBox) == 0x0000A0, "Member 'UParticleSystem::FixedRelativeBoundingBox' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, SecondsBeforeInactive) == 0x0000D8, "Member 'UParticleSystem::SecondsBeforeInactive' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, Delay) == 0x0000DC, "Member 'UParticleSystem::Delay' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, DelayLow) == 0x0000E0, "Member 'UParticleSystem::DelayLow' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, SystemUpdateMode) == 0x0000E6, "Member 'UParticleSystem::SystemUpdateMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, LODMethod) == 0x0000E7, "Member 'UParticleSystem::LODMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, InsignificantReaction) == 0x0000E8, "Member 'UParticleSystem::InsignificantReaction' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, OcclusionBoundsMethod) == 0x0000E9, "Member 'UParticleSystem::OcclusionBoundsMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, MaxSignificanceLevel) == 0x0000EB, "Member 'UParticleSystem::MaxSignificanceLevel' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, MinTimeBetweenTicks) == 0x0000EC, "Member 'UParticleSystem::MinTimeBetweenTicks' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, InsignificanceDelay) == 0x0000F0, "Member 'UParticleSystem::InsignificanceDelay' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, MacroUVPosition) == 0x0000F8, "Member 'UParticleSystem::MacroUVPosition' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, CustomOcclusionBounds) == 0x000110, "Member 'UParticleSystem::CustomOcclusionBounds' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, SoloTracking) == 0x000148, "Member 'UParticleSystem::SoloTracking' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystem, NamedMaterialSlots) == 0x000158, "Member 'UParticleSystem::NamedMaterialSlots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureObject \ +static_assert(alignof(UMaterialExpressionTextureObject) == 0x000008, "Wrong alignment on UMaterialExpressionTextureObject"); \ +static_assert(sizeof(UMaterialExpressionTextureObject) == 0x0000C0, "Wrong size on UMaterialExpressionTextureObject"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureObjectParameter \ +static_assert(alignof(UMaterialExpressionTextureObjectParameter) == 0x000008, "Wrong alignment on UMaterialExpressionTextureObjectParameter"); \ +static_assert(sizeof(UMaterialExpressionTextureObjectParameter) == 0x000240, "Wrong size on UMaterialExpressionTextureObjectParameter"); \ + +#define DUMPER7_ASSERTS_RadialForceComponent_AddObjectTypeToAffect \ +static_assert(alignof(RadialForceComponent_AddObjectTypeToAffect) == 0x000001, "Wrong alignment on RadialForceComponent_AddObjectTypeToAffect"); \ +static_assert(sizeof(RadialForceComponent_AddObjectTypeToAffect) == 0x000001, "Wrong size on RadialForceComponent_AddObjectTypeToAffect"); \ +static_assert(offsetof(RadialForceComponent_AddObjectTypeToAffect, ObjectType) == 0x000000, "Member 'RadialForceComponent_AddObjectTypeToAffect::ObjectType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialForceComponent_RemoveObjectTypeToAffect \ +static_assert(alignof(RadialForceComponent_RemoveObjectTypeToAffect) == 0x000001, "Wrong alignment on RadialForceComponent_RemoveObjectTypeToAffect"); \ +static_assert(sizeof(RadialForceComponent_RemoveObjectTypeToAffect) == 0x000001, "Wrong size on RadialForceComponent_RemoveObjectTypeToAffect"); \ +static_assert(offsetof(RadialForceComponent_RemoveObjectTypeToAffect, ObjectType) == 0x000000, "Member 'RadialForceComponent_RemoveObjectTypeToAffect::ObjectType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URadialForceComponent \ +static_assert(alignof(URadialForceComponent) == 0x000010, "Wrong alignment on URadialForceComponent"); \ +static_assert(sizeof(URadialForceComponent) == 0x0002D0, "Wrong size on URadialForceComponent"); \ +static_assert(offsetof(URadialForceComponent, Radius) == 0x0002A0, "Member 'URadialForceComponent::Radius' has a wrong offset!"); \ +static_assert(offsetof(URadialForceComponent, Falloff) == 0x0002A4, "Member 'URadialForceComponent::Falloff' has a wrong offset!"); \ +static_assert(offsetof(URadialForceComponent, ImpulseStrength) == 0x0002A8, "Member 'URadialForceComponent::ImpulseStrength' has a wrong offset!"); \ +static_assert(offsetof(URadialForceComponent, ForceStrength) == 0x0002B0, "Member 'URadialForceComponent::ForceStrength' has a wrong offset!"); \ +static_assert(offsetof(URadialForceComponent, DestructibleDamage) == 0x0002B4, "Member 'URadialForceComponent::DestructibleDamage' has a wrong offset!"); \ +static_assert(offsetof(URadialForceComponent, ObjectTypesToAffect) == 0x0002B8, "Member 'URadialForceComponent::ObjectTypesToAffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameter2DArray \ +static_assert(alignof(UMaterialExpressionTextureSampleParameter2DArray) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameter2DArray"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameter2DArray) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameter2DArray"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAccelerationConstant \ +static_assert(alignof(UParticleModuleAccelerationConstant) == 0x000008, "Wrong alignment on UParticleModuleAccelerationConstant"); \ +static_assert(sizeof(UParticleModuleAccelerationConstant) == 0x000050, "Wrong size on UParticleModuleAccelerationConstant"); \ +static_assert(offsetof(UParticleModuleAccelerationConstant, Acceleration) == 0x000038, "Member 'UParticleModuleAccelerationConstant::Acceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameterCube \ +static_assert(alignof(UMaterialExpressionTextureSampleParameterCube) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameterCube"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameterCube) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameterCube"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameterCubeArray \ +static_assert(alignof(UMaterialExpressionTextureSampleParameterCubeArray) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameterCubeArray"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameterCubeArray) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameterCubeArray"); \ + +#define DUMPER7_ASSERTS_UParticleLODLevel \ +static_assert(alignof(UParticleLODLevel) == 0x000008, "Wrong alignment on UParticleLODLevel"); \ +static_assert(sizeof(UParticleLODLevel) == 0x0000B8, "Wrong size on UParticleLODLevel"); \ +static_assert(offsetof(UParticleLODLevel, Level) == 0x000028, "Member 'UParticleLODLevel::Level' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, RequiredModule) == 0x000030, "Member 'UParticleLODLevel::RequiredModule' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, Modules) == 0x000038, "Member 'UParticleLODLevel::Modules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, TypeDataModule) == 0x000048, "Member 'UParticleLODLevel::TypeDataModule' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, SpawnModule) == 0x000050, "Member 'UParticleLODLevel::SpawnModule' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, EventGenerator) == 0x000058, "Member 'UParticleLODLevel::EventGenerator' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, SpawningModules) == 0x000060, "Member 'UParticleLODLevel::SpawningModules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, SpawnModules) == 0x000070, "Member 'UParticleLODLevel::SpawnModules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, UpdateModules) == 0x000080, "Member 'UParticleLODLevel::UpdateModules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, OrbitModules) == 0x000090, "Member 'UParticleLODLevel::OrbitModules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, EventReceiverModules) == 0x0000A0, "Member 'UParticleLODLevel::EventReceiverModules' has a wrong offset!"); \ +static_assert(offsetof(UParticleLODLevel, PeakActiveParticles) == 0x0000B4, "Member 'UParticleLODLevel::PeakActiveParticles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameterSubUV \ +static_assert(alignof(UMaterialExpressionTextureSampleParameterSubUV) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameterSubUV"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameterSubUV) == 0x000248, "Wrong size on UMaterialExpressionTextureSampleParameterSubUV"); \ + +#define DUMPER7_ASSERTS_ANavigationObjectBase \ +static_assert(alignof(ANavigationObjectBase) == 0x000008, "Wrong alignment on ANavigationObjectBase"); \ +static_assert(sizeof(ANavigationObjectBase) == 0x0002C0, "Wrong size on ANavigationObjectBase"); \ +static_assert(offsetof(ANavigationObjectBase, CapsuleComponent) == 0x0002A0, "Member 'ANavigationObjectBase::CapsuleComponent' has a wrong offset!"); \ +static_assert(offsetof(ANavigationObjectBase, GoodSprite) == 0x0002A8, "Member 'ANavigationObjectBase::GoodSprite' has a wrong offset!"); \ +static_assert(offsetof(ANavigationObjectBase, BadSprite) == 0x0002B0, "Member 'ANavigationObjectBase::BadSprite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlayerStart \ +static_assert(alignof(APlayerStart) == 0x000008, "Wrong alignment on APlayerStart"); \ +static_assert(sizeof(APlayerStart) == 0x0002C8, "Wrong size on APlayerStart"); \ +static_assert(offsetof(APlayerStart, PlayerStartTag) == 0x0002C0, "Member 'APlayerStart::PlayerStartTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlayerStartPIE \ +static_assert(alignof(APlayerStartPIE) == 0x000008, "Wrong alignment on APlayerStartPIE"); \ +static_assert(sizeof(APlayerStartPIE) == 0x0002C8, "Wrong size on APlayerStartPIE"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTextureSampleParameterVolume \ +static_assert(alignof(UMaterialExpressionTextureSampleParameterVolume) == 0x000008, "Wrong alignment on UMaterialExpressionTextureSampleParameterVolume"); \ +static_assert(sizeof(UMaterialExpressionTextureSampleParameterVolume) == 0x000240, "Wrong size on UMaterialExpressionTextureSampleParameterVolume"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionThinTranslucentMaterialOutput \ +static_assert(alignof(UMaterialExpressionThinTranslucentMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionThinTranslucentMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionThinTranslucentMaterialOutput) == 0x0000D8, "Wrong size on UMaterialExpressionThinTranslucentMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionThinTranslucentMaterialOutput, TransmittanceColor) == 0x0000B0, "Member 'UMaterialExpressionThinTranslucentMaterialOutput::TransmittanceColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTransform \ +static_assert(alignof(UMaterialExpressionTransform) == 0x000008, "Wrong alignment on UMaterialExpressionTransform"); \ +static_assert(sizeof(UMaterialExpressionTransform) == 0x0000E0, "Wrong size on UMaterialExpressionTransform"); \ +static_assert(offsetof(UMaterialExpressionTransform, Input) == 0x0000B0, "Member 'UMaterialExpressionTransform::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTransform, TransformSourceType) == 0x0000D8, "Member 'UMaterialExpressionTransform::TransformSourceType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTransform, TransformType) == 0x0000D9, "Member 'UMaterialExpressionTransform::TransformType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPrimaryDataAsset \ +static_assert(alignof(UPrimaryDataAsset) == 0x000008, "Wrong alignment on UPrimaryDataAsset"); \ +static_assert(sizeof(UPrimaryDataAsset) == 0x000030, "Wrong size on UPrimaryDataAsset"); \ + +#define DUMPER7_ASSERTS_UPrimaryAssetLabel \ +static_assert(alignof(UPrimaryAssetLabel) == 0x000008, "Wrong alignment on UPrimaryAssetLabel"); \ +static_assert(sizeof(UPrimaryAssetLabel) == 0x000068, "Wrong size on UPrimaryAssetLabel"); \ +static_assert(offsetof(UPrimaryAssetLabel, Rules) == 0x000030, "Member 'UPrimaryAssetLabel::Rules' has a wrong offset!"); \ +static_assert(offsetof(UPrimaryAssetLabel, ExplicitAssets) == 0x000040, "Member 'UPrimaryAssetLabel::ExplicitAssets' has a wrong offset!"); \ +static_assert(offsetof(UPrimaryAssetLabel, ExplicitBlueprints) == 0x000050, "Member 'UPrimaryAssetLabel::ExplicitBlueprints' has a wrong offset!"); \ +static_assert(offsetof(UPrimaryAssetLabel, AssetCollection) == 0x000060, "Member 'UPrimaryAssetLabel::AssetCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTransformPosition \ +static_assert(alignof(UMaterialExpressionTransformPosition) == 0x000008, "Wrong alignment on UMaterialExpressionTransformPosition"); \ +static_assert(sizeof(UMaterialExpressionTransformPosition) == 0x0000E0, "Wrong size on UMaterialExpressionTransformPosition"); \ +static_assert(offsetof(UMaterialExpressionTransformPosition, Input) == 0x0000B0, "Member 'UMaterialExpressionTransformPosition::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTransformPosition, TransformSourceType) == 0x0000D8, "Member 'UMaterialExpressionTransformPosition::TransformSourceType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionTransformPosition, TransformType) == 0x0000D9, "Member 'UMaterialExpressionTransformPosition::TransformType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTruncate \ +static_assert(alignof(UMaterialExpressionTruncate) == 0x000008, "Wrong alignment on UMaterialExpressionTruncate"); \ +static_assert(sizeof(UMaterialExpressionTruncate) == 0x0000D8, "Wrong size on UMaterialExpressionTruncate"); \ +static_assert(offsetof(UMaterialExpressionTruncate, Input) == 0x0000B0, "Member 'UMaterialExpressionTruncate::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionTwoSidedSign \ +static_assert(alignof(UMaterialExpressionTwoSidedSign) == 0x000008, "Wrong alignment on UMaterialExpressionTwoSidedSign"); \ +static_assert(sizeof(UMaterialExpressionTwoSidedSign) == 0x0000B0, "Wrong size on UMaterialExpressionTwoSidedSign"); \ + +#define DUMPER7_ASSERTS_LODActor_OnSubActorEndPlay \ +static_assert(alignof(LODActor_OnSubActorEndPlay) == 0x000008, "Wrong alignment on LODActor_OnSubActorEndPlay"); \ +static_assert(sizeof(LODActor_OnSubActorEndPlay) == 0x000010, "Wrong size on LODActor_OnSubActorEndPlay"); \ +static_assert(offsetof(LODActor_OnSubActorEndPlay, Actor) == 0x000000, "Member 'LODActor_OnSubActorEndPlay::Actor' has a wrong offset!"); \ +static_assert(offsetof(LODActor_OnSubActorEndPlay, Reason) == 0x000008, "Member 'LODActor_OnSubActorEndPlay::Reason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALODActor \ +static_assert(alignof(ALODActor) == 0x000008, "Wrong alignment on ALODActor"); \ +static_assert(sizeof(ALODActor) == 0x000320, "Wrong size on ALODActor"); \ +static_assert(offsetof(ALODActor, StaticMeshComponent) == 0x000298, "Member 'ALODActor::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, InstancedStaticMeshComponents) == 0x0002A0, "Member 'ALODActor::InstancedStaticMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, Proxy) == 0x0002F0, "Member 'ALODActor::Proxy' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, Key) == 0x0002F8, "Member 'ALODActor::Key' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, LODDrawDistance) == 0x000300, "Member 'ALODActor::LODDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, LODLevel) == 0x000304, "Member 'ALODActor::LODLevel' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, SubActors) == 0x000308, "Member 'ALODActor::SubActors' has a wrong offset!"); \ +static_assert(offsetof(ALODActor, CachedNumHLODLevels) == 0x000318, "Member 'ALODActor::CachedNumHLODLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVectorNoise \ +static_assert(alignof(UMaterialExpressionVectorNoise) == 0x000008, "Wrong alignment on UMaterialExpressionVectorNoise"); \ +static_assert(sizeof(UMaterialExpressionVectorNoise) == 0x0000E8, "Wrong size on UMaterialExpressionVectorNoise"); \ +static_assert(offsetof(UMaterialExpressionVectorNoise, Position) == 0x0000B0, "Member 'UMaterialExpressionVectorNoise::Position' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorNoise, NoiseFunction) == 0x0000D8, "Member 'UMaterialExpressionVectorNoise::NoiseFunction' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorNoise, Quality) == 0x0000DC, "Member 'UMaterialExpressionVectorNoise::Quality' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVectorNoise, TileSize) == 0x0000E4, "Member 'UMaterialExpressionVectorNoise::TileSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVertexColor \ +static_assert(alignof(UMaterialExpressionVertexColor) == 0x000008, "Wrong alignment on UMaterialExpressionVertexColor"); \ +static_assert(sizeof(UMaterialExpressionVertexColor) == 0x0000B0, "Wrong size on UMaterialExpressionVertexColor"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVertexInterpolator \ +static_assert(alignof(UMaterialExpressionVertexInterpolator) == 0x000008, "Wrong alignment on UMaterialExpressionVertexInterpolator"); \ +static_assert(sizeof(UMaterialExpressionVertexInterpolator) == 0x0000E8, "Wrong size on UMaterialExpressionVertexInterpolator"); \ +static_assert(offsetof(UMaterialExpressionVertexInterpolator, Input) == 0x0000B0, "Member 'UMaterialExpressionVertexInterpolator::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVertexNormalWS \ +static_assert(alignof(UMaterialExpressionVertexNormalWS) == 0x000008, "Wrong alignment on UMaterialExpressionVertexNormalWS"); \ +static_assert(sizeof(UMaterialExpressionVertexNormalWS) == 0x0000B0, "Wrong size on UMaterialExpressionVertexNormalWS"); \ + +#define DUMPER7_ASSERTS_UMaterialInstanceEditorOnlyData \ +static_assert(alignof(UMaterialInstanceEditorOnlyData) == 0x000008, "Wrong alignment on UMaterialInstanceEditorOnlyData"); \ +static_assert(sizeof(UMaterialInstanceEditorOnlyData) == 0x0000E0, "Wrong size on UMaterialInstanceEditorOnlyData"); \ +static_assert(offsetof(UMaterialInstanceEditorOnlyData, StaticParameters) == 0x000040, "Member 'UMaterialInstanceEditorOnlyData::StaticParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVertexTangentWS \ +static_assert(alignof(UMaterialExpressionVertexTangentWS) == 0x000008, "Wrong alignment on UMaterialExpressionVertexTangentWS"); \ +static_assert(sizeof(UMaterialExpressionVertexTangentWS) == 0x0000B0, "Wrong size on UMaterialExpressionVertexTangentWS"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionViewProperty \ +static_assert(alignof(UMaterialExpressionViewProperty) == 0x000008, "Wrong alignment on UMaterialExpressionViewProperty"); \ +static_assert(sizeof(UMaterialExpressionViewProperty) == 0x0000B8, "Wrong size on UMaterialExpressionViewProperty"); \ +static_assert(offsetof(UMaterialExpressionViewProperty, Property) == 0x0000B0, "Member 'UMaterialExpressionViewProperty::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionViewSize \ +static_assert(alignof(UMaterialExpressionViewSize) == 0x000008, "Wrong alignment on UMaterialExpressionViewSize"); \ +static_assert(sizeof(UMaterialExpressionViewSize) == 0x0000B0, "Wrong size on UMaterialExpressionViewSize"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVirtualTextureFeatureSwitch \ +static_assert(alignof(UMaterialExpressionVirtualTextureFeatureSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionVirtualTextureFeatureSwitch"); \ +static_assert(sizeof(UMaterialExpressionVirtualTextureFeatureSwitch) == 0x000100, "Wrong size on UMaterialExpressionVirtualTextureFeatureSwitch"); \ +static_assert(offsetof(UMaterialExpressionVirtualTextureFeatureSwitch, No) == 0x0000B0, "Member 'UMaterialExpressionVirtualTextureFeatureSwitch::No' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVirtualTextureFeatureSwitch, Yes) == 0x0000D8, "Member 'UMaterialExpressionVirtualTextureFeatureSwitch::Yes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput \ +static_assert(alignof(UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput) == 0x000008, "Wrong alignment on UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput"); \ +static_assert(sizeof(UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput) == 0x0000B0, "Wrong size on UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionVolumetricAdvancedMaterialOutput \ +static_assert(alignof(UMaterialExpressionVolumetricAdvancedMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionVolumetricAdvancedMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionVolumetricAdvancedMaterialOutput) == 0x0001F0, "Wrong size on UMaterialExpressionVolumetricAdvancedMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, PhaseG) == 0x0000B0, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::PhaseG' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, PhaseG2) == 0x0000D8, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::PhaseG2' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, PhaseBlend) == 0x000100, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::PhaseBlend' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, MultiScatteringContribution) == 0x000128, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::MultiScatteringContribution' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, MultiScatteringOcclusion) == 0x000150, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::MultiScatteringOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, MultiScatteringEccentricity) == 0x000178, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::MultiScatteringEccentricity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConservativeDensity) == 0x0001A0, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConservativeDensity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstPhaseG) == 0x0001C8, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstPhaseG' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstPhaseG2) == 0x0001CC, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstPhaseG2' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstPhaseBlend) == 0x0001D0, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstPhaseBlend' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, PerSamplePhaseEvaluation) == 0x0001D4, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::PerSamplePhaseEvaluation' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, MultiScatteringApproximationOctaveCount) == 0x0001D8, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::MultiScatteringApproximationOctaveCount' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstMultiScatteringContribution) == 0x0001DC, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstMultiScatteringContribution' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstMultiScatteringOcclusion) == 0x0001E0, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstMultiScatteringOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, ConstMultiScatteringEccentricity) == 0x0001E4, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::ConstMultiScatteringEccentricity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, bGroundContribution) == 0x0001E8, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::bGroundContribution' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, bGrayScaleMaterial) == 0x0001E9, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::bGrayScaleMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, bRayMarchVolumeShadow) == 0x0001EA, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::bRayMarchVolumeShadow' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionVolumetricAdvancedMaterialOutput, bClampMultiScatteringContribution) == 0x0001EB, "Member 'UMaterialExpressionVolumetricAdvancedMaterialOutput::bClampMultiScatteringContribution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USimulatedClientNetConnection \ +static_assert(alignof(USimulatedClientNetConnection) == 0x000008, "Wrong alignment on USimulatedClientNetConnection"); \ +static_assert(sizeof(USimulatedClientNetConnection) == 0x001DF8, "Wrong size on USimulatedClientNetConnection"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionWhileLoop \ +static_assert(alignof(UMaterialExpressionWhileLoop) == 0x000008, "Wrong alignment on UMaterialExpressionWhileLoop"); \ +static_assert(sizeof(UMaterialExpressionWhileLoop) == 0x0000E8, "Wrong size on UMaterialExpressionWhileLoop"); \ +static_assert(offsetof(UMaterialExpressionWhileLoop, LoopBody) == 0x0000B0, "Member 'UMaterialExpressionWhileLoop::LoopBody' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionWhileLoop, Completed) == 0x0000B8, "Member 'UMaterialExpressionWhileLoop::Completed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionWhileLoop, Condition) == 0x0000C0, "Member 'UMaterialExpressionWhileLoop::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionWorldPosition \ +static_assert(alignof(UMaterialExpressionWorldPosition) == 0x000008, "Wrong alignment on UMaterialExpressionWorldPosition"); \ +static_assert(sizeof(UMaterialExpressionWorldPosition) == 0x0000B8, "Wrong size on UMaterialExpressionWorldPosition"); \ +static_assert(offsetof(UMaterialExpressionWorldPosition, WorldPositionShaderOffset) == 0x0000B0, "Member 'UMaterialExpressionWorldPosition::WorldPositionShaderOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionInterfaceEditorOnlyData \ +static_assert(alignof(UMaterialFunctionInterfaceEditorOnlyData) == 0x000008, "Wrong alignment on UMaterialFunctionInterfaceEditorOnlyData"); \ +static_assert(sizeof(UMaterialFunctionInterfaceEditorOnlyData) == 0x000028, "Wrong size on UMaterialFunctionInterfaceEditorOnlyData"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionEditorOnlyData \ +static_assert(alignof(UMaterialFunctionEditorOnlyData) == 0x000008, "Wrong alignment on UMaterialFunctionEditorOnlyData"); \ +static_assert(sizeof(UMaterialFunctionEditorOnlyData) == 0x000058, "Wrong size on UMaterialFunctionEditorOnlyData"); \ +static_assert(offsetof(UMaterialFunctionEditorOnlyData, ExpressionCollection) == 0x000028, "Member 'UMaterialFunctionEditorOnlyData::ExpressionCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionMaterialLayer \ +static_assert(alignof(UMaterialFunctionMaterialLayer) == 0x000008, "Wrong alignment on UMaterialFunctionMaterialLayer"); \ +static_assert(sizeof(UMaterialFunctionMaterialLayer) == 0x000068, "Wrong size on UMaterialFunctionMaterialLayer"); \ + +#define DUMPER7_ASSERTS_UMaterialFunctionMaterialLayerBlend \ +static_assert(alignof(UMaterialFunctionMaterialLayerBlend) == 0x000008, "Wrong alignment on UMaterialFunctionMaterialLayerBlend"); \ +static_assert(sizeof(UMaterialFunctionMaterialLayerBlend) == 0x000068, "Wrong size on UMaterialFunctionMaterialLayerBlend"); \ + +#define DUMPER7_ASSERTS_ADefaultPhysicsVolume \ +static_assert(alignof(ADefaultPhysicsVolume) == 0x000008, "Wrong alignment on ADefaultPhysicsVolume"); \ +static_assert(sizeof(ADefaultPhysicsVolume) == 0x0002E0, "Wrong size on ADefaultPhysicsVolume"); \ + +#define DUMPER7_ASSERTS_UMeshBudgetProjectSettings \ +static_assert(alignof(UMeshBudgetProjectSettings) == 0x000008, "Wrong alignment on UMeshBudgetProjectSettings"); \ +static_assert(sizeof(UMeshBudgetProjectSettings) == 0x000050, "Wrong size on UMeshBudgetProjectSettings"); \ +static_assert(offsetof(UMeshBudgetProjectSettings, bEnableStaticMeshBudget) == 0x000038, "Member 'UMeshBudgetProjectSettings::bEnableStaticMeshBudget' has a wrong offset!"); \ +static_assert(offsetof(UMeshBudgetProjectSettings, StaticMeshBudgetInfos) == 0x000040, "Member 'UMeshBudgetProjectSettings::StaticMeshBudgetInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IDestructibleInterface \ +static_assert(alignof(IDestructibleInterface) == 0x000001, "Wrong alignment on IDestructibleInterface"); \ +static_assert(sizeof(IDestructibleInterface) == 0x000001, "Wrong size on IDestructibleInterface"); \ + +#define DUMPER7_ASSERTS_UMeshDeformerInstanceSettings \ +static_assert(alignof(UMeshDeformerInstanceSettings) == 0x000008, "Wrong alignment on UMeshDeformerInstanceSettings"); \ +static_assert(sizeof(UMeshDeformerInstanceSettings) == 0x000028, "Wrong size on UMeshDeformerInstanceSettings"); \ + +#define DUMPER7_ASSERTS_INavAgentInterface \ +static_assert(alignof(INavAgentInterface) == 0x000001, "Wrong alignment on INavAgentInterface"); \ +static_assert(sizeof(INavAgentInterface) == 0x000001, "Wrong size on INavAgentInterface"); \ + +#define DUMPER7_ASSERTS_INavEdgeProviderInterface \ +static_assert(alignof(INavEdgeProviderInterface) == 0x000001, "Wrong alignment on INavEdgeProviderInterface"); \ +static_assert(sizeof(INavEdgeProviderInterface) == 0x000001, "Wrong size on INavEdgeProviderInterface"); \ + +#define DUMPER7_ASSERTS_ULineBatchComponent \ +static_assert(alignof(ULineBatchComponent) == 0x000010, "Wrong alignment on ULineBatchComponent"); \ +static_assert(sizeof(ULineBatchComponent) == 0x0005B0, "Wrong size on ULineBatchComponent"); \ + +#define DUMPER7_ASSERTS_UNavLinkDefinition \ +static_assert(alignof(UNavLinkDefinition) == 0x000008, "Wrong alignment on UNavLinkDefinition"); \ +static_assert(sizeof(UNavLinkDefinition) == 0x000050, "Wrong size on UNavLinkDefinition"); \ +static_assert(offsetof(UNavLinkDefinition, Links) == 0x000028, "Member 'UNavLinkDefinition::Links' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkDefinition, SegmentLinks) == 0x000038, "Member 'UNavLinkDefinition::SegmentLinks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleEmitter \ +static_assert(alignof(UParticleEmitter) == 0x000008, "Wrong alignment on UParticleEmitter"); \ +static_assert(sizeof(UParticleEmitter) == 0x0001C0, "Wrong size on UParticleEmitter"); \ +static_assert(offsetof(UParticleEmitter, EmitterName) == 0x000028, "Member 'UParticleEmitter::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, SubUVDataOffset) == 0x000030, "Member 'UParticleEmitter::SubUVDataOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, EmitterRenderMode) == 0x000034, "Member 'UParticleEmitter::EmitterRenderMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, SignificanceLevel) == 0x000035, "Member 'UParticleEmitter::SignificanceLevel' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, LODLevels) == 0x000040, "Member 'UParticleEmitter::LODLevels' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, PeakActiveParticles) == 0x000050, "Member 'UParticleEmitter::PeakActiveParticles' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, InitialAllocationCount) == 0x000054, "Member 'UParticleEmitter::InitialAllocationCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, QualityLevelSpawnRateScale) == 0x000058, "Member 'UParticleEmitter::QualityLevelSpawnRateScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleEmitter, DetailModeBitmask) == 0x00005C, "Member 'UParticleEmitter::DetailModeBitmask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetInverseExposureBlend \ +static_assert(alignof(PointLightComponent_SetInverseExposureBlend) == 0x000004, "Wrong alignment on PointLightComponent_SetInverseExposureBlend"); \ +static_assert(sizeof(PointLightComponent_SetInverseExposureBlend) == 0x000004, "Wrong size on PointLightComponent_SetInverseExposureBlend"); \ +static_assert(offsetof(PointLightComponent_SetInverseExposureBlend, NewInverseExposureBlend) == 0x000000, "Member 'PointLightComponent_SetInverseExposureBlend::NewInverseExposureBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetLightFalloffExponent \ +static_assert(alignof(PointLightComponent_SetLightFalloffExponent) == 0x000004, "Wrong alignment on PointLightComponent_SetLightFalloffExponent"); \ +static_assert(sizeof(PointLightComponent_SetLightFalloffExponent) == 0x000004, "Wrong size on PointLightComponent_SetLightFalloffExponent"); \ +static_assert(offsetof(PointLightComponent_SetLightFalloffExponent, NewLightFalloffExponent) == 0x000000, "Member 'PointLightComponent_SetLightFalloffExponent::NewLightFalloffExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetSoftSourceRadius \ +static_assert(alignof(PointLightComponent_SetSoftSourceRadius) == 0x000004, "Wrong alignment on PointLightComponent_SetSoftSourceRadius"); \ +static_assert(sizeof(PointLightComponent_SetSoftSourceRadius) == 0x000004, "Wrong size on PointLightComponent_SetSoftSourceRadius"); \ +static_assert(offsetof(PointLightComponent_SetSoftSourceRadius, bNewValue) == 0x000000, "Member 'PointLightComponent_SetSoftSourceRadius::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetSourceLength \ +static_assert(alignof(PointLightComponent_SetSourceLength) == 0x000004, "Wrong alignment on PointLightComponent_SetSourceLength"); \ +static_assert(sizeof(PointLightComponent_SetSourceLength) == 0x000004, "Wrong size on PointLightComponent_SetSourceLength"); \ +static_assert(offsetof(PointLightComponent_SetSourceLength, NewValue) == 0x000000, "Member 'PointLightComponent_SetSourceLength::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetSourceRadius \ +static_assert(alignof(PointLightComponent_SetSourceRadius) == 0x000004, "Wrong alignment on PointLightComponent_SetSourceRadius"); \ +static_assert(sizeof(PointLightComponent_SetSourceRadius) == 0x000004, "Wrong size on PointLightComponent_SetSourceRadius"); \ +static_assert(offsetof(PointLightComponent_SetSourceRadius, bNewValue) == 0x000000, "Member 'PointLightComponent_SetSourceRadius::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLightComponent_SetUseInverseSquaredFalloff \ +static_assert(alignof(PointLightComponent_SetUseInverseSquaredFalloff) == 0x000001, "Wrong alignment on PointLightComponent_SetUseInverseSquaredFalloff"); \ +static_assert(sizeof(PointLightComponent_SetUseInverseSquaredFalloff) == 0x000001, "Wrong size on PointLightComponent_SetUseInverseSquaredFalloff"); \ +static_assert(offsetof(PointLightComponent_SetUseInverseSquaredFalloff, bNewValue) == 0x000000, "Member 'PointLightComponent_SetUseInverseSquaredFalloff::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPointLightComponent \ +static_assert(alignof(UPointLightComponent) == 0x000010, "Wrong alignment on UPointLightComponent"); \ +static_assert(sizeof(UPointLightComponent) == 0x000420, "Wrong size on UPointLightComponent"); \ +static_assert(offsetof(UPointLightComponent, LightFalloffExponent) == 0x00040C, "Member 'UPointLightComponent::LightFalloffExponent' has a wrong offset!"); \ +static_assert(offsetof(UPointLightComponent, SourceRadius) == 0x000410, "Member 'UPointLightComponent::SourceRadius' has a wrong offset!"); \ +static_assert(offsetof(UPointLightComponent, SoftSourceRadius) == 0x000414, "Member 'UPointLightComponent::SoftSourceRadius' has a wrong offset!"); \ +static_assert(offsetof(UPointLightComponent, SourceLength) == 0x000418, "Member 'UPointLightComponent::SourceLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleAccelerationDrag \ +static_assert(alignof(UParticleModuleAccelerationDrag) == 0x000008, "Wrong alignment on UParticleModuleAccelerationDrag"); \ +static_assert(sizeof(UParticleModuleAccelerationDrag) == 0x000070, "Wrong size on UParticleModuleAccelerationDrag"); \ +static_assert(offsetof(UParticleModuleAccelerationDrag, DragCoefficient) == 0x000038, "Member 'UParticleModuleAccelerationDrag::DragCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleAccelerationDrag, DragCoefficientRaw) == 0x000040, "Member 'UParticleModuleAccelerationDrag::DragCoefficientRaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleBeamTarget \ +static_assert(alignof(UParticleModuleBeamTarget) == 0x000008, "Wrong alignment on UParticleModuleBeamTarget"); \ +static_assert(sizeof(UParticleModuleBeamTarget) == 0x000150, "Wrong size on UParticleModuleBeamTarget"); \ +static_assert(offsetof(UParticleModuleBeamTarget, TargetMethod) == 0x000030, "Member 'UParticleModuleBeamTarget::TargetMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, TargetName) == 0x000034, "Member 'UParticleModuleBeamTarget::TargetName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, Target) == 0x000040, "Member 'UParticleModuleBeamTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, TargetTangentMethod) == 0x0000A4, "Member 'UParticleModuleBeamTarget::TargetTangentMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, TargetTangent) == 0x0000A8, "Member 'UParticleModuleBeamTarget::TargetTangent' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, TargetStrength) == 0x000110, "Member 'UParticleModuleBeamTarget::TargetStrength' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleBeamTarget, LockRadius) == 0x000144, "Member 'UParticleModuleBeamTarget::LockRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleCollision \ +static_assert(alignof(UParticleModuleCollision) == 0x000008, "Wrong alignment on UParticleModuleCollision"); \ +static_assert(sizeof(UParticleModuleCollision) == 0x0001C0, "Wrong size on UParticleModuleCollision"); \ +static_assert(offsetof(UParticleModuleCollision, DampingFactor) == 0x000030, "Member 'UParticleModuleCollision::DampingFactor' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, DampingFactorRotation) == 0x000090, "Member 'UParticleModuleCollision::DampingFactorRotation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, MaxCollisions) == 0x0000F0, "Member 'UParticleModuleCollision::MaxCollisions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, CollisionCompletionOption) == 0x000120, "Member 'UParticleModuleCollision::CollisionCompletionOption' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, CollisionTypes) == 0x000128, "Member 'UParticleModuleCollision::CollisionTypes' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, ParticleMass) == 0x000148, "Member 'UParticleModuleCollision::ParticleMass' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, DirScalar) == 0x000178, "Member 'UParticleModuleCollision::DirScalar' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, VerticalFudgeFactor) == 0x000180, "Member 'UParticleModuleCollision::VerticalFudgeFactor' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, DelayAmount) == 0x000188, "Member 'UParticleModuleCollision::DelayAmount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleCollision, MaxCollisionDistance) == 0x0001BC, "Member 'UParticleModuleCollision::MaxCollisionDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveBase_GetTimeRange \ +static_assert(alignof(CurveBase_GetTimeRange) == 0x000004, "Wrong alignment on CurveBase_GetTimeRange"); \ +static_assert(sizeof(CurveBase_GetTimeRange) == 0x000008, "Wrong size on CurveBase_GetTimeRange"); \ +static_assert(offsetof(CurveBase_GetTimeRange, MinTime) == 0x000000, "Member 'CurveBase_GetTimeRange::MinTime' has a wrong offset!"); \ +static_assert(offsetof(CurveBase_GetTimeRange, MaxTime) == 0x000004, "Member 'CurveBase_GetTimeRange::MaxTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveBase_GetValueRange \ +static_assert(alignof(CurveBase_GetValueRange) == 0x000004, "Wrong alignment on CurveBase_GetValueRange"); \ +static_assert(sizeof(CurveBase_GetValueRange) == 0x000008, "Wrong size on CurveBase_GetValueRange"); \ +static_assert(offsetof(CurveBase_GetValueRange, MinValue) == 0x000000, "Member 'CurveBase_GetValueRange::MinValue' has a wrong offset!"); \ +static_assert(offsetof(CurveBase_GetValueRange, MaxValue) == 0x000004, "Member 'CurveBase_GetValueRange::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveBase \ +static_assert(alignof(UCurveBase) == 0x000008, "Wrong alignment on UCurveBase"); \ +static_assert(sizeof(UCurveBase) == 0x000030, "Wrong size on UCurveBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleColorOverLife \ +static_assert(alignof(UParticleModuleColorOverLife) == 0x000008, "Wrong alignment on UParticleModuleColorOverLife"); \ +static_assert(sizeof(UParticleModuleColorOverLife) == 0x0000C8, "Wrong size on UParticleModuleColorOverLife"); \ +static_assert(offsetof(UParticleModuleColorOverLife, ColorOverLife) == 0x000030, "Member 'UParticleModuleColorOverLife::ColorOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleColorOverLife, AlphaOverLife) == 0x000090, "Member 'UParticleModuleColorOverLife::AlphaOverLife' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventGenerator \ +static_assert(alignof(UParticleModuleEventGenerator) == 0x000008, "Wrong alignment on UParticleModuleEventGenerator"); \ +static_assert(sizeof(UParticleModuleEventGenerator) == 0x000040, "Wrong size on UParticleModuleEventGenerator"); \ +static_assert(offsetof(UParticleModuleEventGenerator, Events) == 0x000030, "Member 'UParticleModuleEventGenerator::Events' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventReceiverKillParticles \ +static_assert(alignof(UParticleModuleEventReceiverKillParticles) == 0x000008, "Wrong alignment on UParticleModuleEventReceiverKillParticles"); \ +static_assert(sizeof(UParticleModuleEventReceiverKillParticles) == 0x000048, "Wrong size on UParticleModuleEventReceiverKillParticles"); \ + +#define DUMPER7_ASSERTS_UDataDrivenCVarEngineSubsystem \ +static_assert(alignof(UDataDrivenCVarEngineSubsystem) == 0x000008, "Wrong alignment on UDataDrivenCVarEngineSubsystem"); \ +static_assert(sizeof(UDataDrivenCVarEngineSubsystem) == 0x000040, "Wrong size on UDataDrivenCVarEngineSubsystem"); \ +static_assert(offsetof(UDataDrivenCVarEngineSubsystem, OnDataDrivenCVarDelegate) == 0x000030, "Member 'UDataDrivenCVarEngineSubsystem::OnDataDrivenCVarDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleEventSendToGame \ +static_assert(alignof(UParticleModuleEventSendToGame) == 0x000008, "Wrong alignment on UParticleModuleEventSendToGame"); \ +static_assert(sizeof(UParticleModuleEventSendToGame) == 0x000028, "Wrong size on UParticleModuleEventSendToGame"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLifetimeBase \ +static_assert(alignof(UParticleModuleLifetimeBase) == 0x000008, "Wrong alignment on UParticleModuleLifetimeBase"); \ +static_assert(sizeof(UParticleModuleLifetimeBase) == 0x000030, "Wrong size on UParticleModuleLifetimeBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLifetime \ +static_assert(alignof(UParticleModuleLifetime) == 0x000008, "Wrong alignment on UParticleModuleLifetime"); \ +static_assert(sizeof(UParticleModuleLifetime) == 0x000060, "Wrong size on UParticleModuleLifetime"); \ +static_assert(offsetof(UParticleModuleLifetime, Lifetime) == 0x000030, "Member 'UParticleModuleLifetime::Lifetime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLifetime_Seeded \ +static_assert(alignof(UParticleModuleLifetime_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLifetime_Seeded"); \ +static_assert(sizeof(UParticleModuleLifetime_Seeded) == 0x000080, "Wrong size on UParticleModuleLifetime_Seeded"); \ +static_assert(offsetof(UParticleModuleLifetime_Seeded, RandomSeedInfo) == 0x000060, "Member 'UParticleModuleLifetime_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceTriggerEffect \ +static_assert(alignof(UInputDeviceTriggerEffect) == 0x000008, "Wrong alignment on UInputDeviceTriggerEffect"); \ +static_assert(sizeof(UInputDeviceTriggerEffect) == 0x000040, "Wrong size on UInputDeviceTriggerEffect"); \ +static_assert(offsetof(UInputDeviceTriggerEffect, BaseTriggerData) == 0x000030, "Member 'UInputDeviceTriggerEffect::BaseTriggerData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceAudioBasedVibrationProperty \ +static_assert(alignof(UInputDeviceAudioBasedVibrationProperty) == 0x000008, "Wrong alignment on UInputDeviceAudioBasedVibrationProperty"); \ +static_assert(sizeof(UInputDeviceAudioBasedVibrationProperty) == 0x000088, "Wrong size on UInputDeviceAudioBasedVibrationProperty"); \ +static_assert(offsetof(UInputDeviceAudioBasedVibrationProperty, Data) == 0x000030, "Member 'UInputDeviceAudioBasedVibrationProperty::Data' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceAudioBasedVibrationProperty, DeviceOverrideData) == 0x000038, "Member 'UInputDeviceAudioBasedVibrationProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocation \ +static_assert(alignof(UParticleModuleLocation) == 0x000008, "Wrong alignment on UParticleModuleLocation"); \ +static_assert(sizeof(UParticleModuleLocation) == 0x000098, "Wrong size on UParticleModuleLocation"); \ +static_assert(offsetof(UParticleModuleLocation, StartLocation) == 0x000030, "Member 'UParticleModuleLocation::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocation, DistributeOverNPoints) == 0x000090, "Member 'UParticleModuleLocation::DistributeOverNPoints' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocation, DistributeThreshold) == 0x000094, "Member 'UParticleModuleLocation::DistributeThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationBoneSocket \ +static_assert(alignof(UParticleModuleLocationBoneSocket) == 0x000008, "Wrong alignment on UParticleModuleLocationBoneSocket"); \ +static_assert(sizeof(UParticleModuleLocationBoneSocket) == 0x000080, "Wrong size on UParticleModuleLocationBoneSocket"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, SourceType) == 0x000030, "Member 'UParticleModuleLocationBoneSocket::SourceType' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, UniversalOffset) == 0x000038, "Member 'UParticleModuleLocationBoneSocket::UniversalOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, SourceLocations) == 0x000050, "Member 'UParticleModuleLocationBoneSocket::SourceLocations' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, SelectionMethod) == 0x000060, "Member 'UParticleModuleLocationBoneSocket::SelectionMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, InheritVelocityScale) == 0x000068, "Member 'UParticleModuleLocationBoneSocket::InheritVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, SkelMeshActorParamName) == 0x00006C, "Member 'UParticleModuleLocationBoneSocket::SkelMeshActorParamName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationBoneSocket, NumPreSelectedIndices) == 0x000074, "Member 'UParticleModuleLocationBoneSocket::NumPreSelectedIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationDirect \ +static_assert(alignof(UParticleModuleLocationDirect) == 0x000008, "Wrong alignment on UParticleModuleLocationDirect"); \ +static_assert(sizeof(UParticleModuleLocationDirect) == 0x0001B0, "Wrong size on UParticleModuleLocationDirect"); \ +static_assert(offsetof(UParticleModuleLocationDirect, Location) == 0x000030, "Member 'UParticleModuleLocationDirect::Location' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationDirect, LocationOffset) == 0x000090, "Member 'UParticleModuleLocationDirect::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationDirect, ScaleFactor) == 0x0000F0, "Member 'UParticleModuleLocationDirect::ScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationDirect, Direction) == 0x000150, "Member 'UParticleModuleLocationDirect::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationEmitter \ +static_assert(alignof(UParticleModuleLocationEmitter) == 0x000008, "Wrong alignment on UParticleModuleLocationEmitter"); \ +static_assert(sizeof(UParticleModuleLocationEmitter) == 0x000050, "Wrong size on UParticleModuleLocationEmitter"); \ +static_assert(offsetof(UParticleModuleLocationEmitter, EmitterName) == 0x000030, "Member 'UParticleModuleLocationEmitter::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationEmitter, SelectionMethod) == 0x000038, "Member 'UParticleModuleLocationEmitter::SelectionMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationEmitter, InheritSourceVelocityScale) == 0x000040, "Member 'UParticleModuleLocationEmitter::InheritSourceVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationEmitter, InheritSourceRotationScale) == 0x000048, "Member 'UParticleModuleLocationEmitter::InheritSourceRotationScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USaveGame \ +static_assert(alignof(USaveGame) == 0x000008, "Wrong alignment on USaveGame"); \ +static_assert(sizeof(USaveGame) == 0x000028, "Wrong size on USaveGame"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer \ +static_assert(alignof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer) == 0x000008, "Wrong alignment on LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer"); \ +static_assert(sizeof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer) == 0x000038, "Wrong size on LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer, SaveGameClass) == 0x000000, "Member 'LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer::SaveGameClass' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer, LocalPlayerController) == 0x000008, "Member 'LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer::LocalPlayerController' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer, SlotName) == 0x000010, "Member 'LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer::SlotName' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer, Delegate) == 0x000020, "Member 'LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer::Delegate' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer, ReturnValue) == 0x000030, "Member 'LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer \ +static_assert(alignof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer) == 0x000008, "Wrong alignment on LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer"); \ +static_assert(sizeof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer) == 0x000028, "Wrong size on LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer"); \ +static_assert(offsetof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer, SaveGameClass) == 0x000000, "Member 'LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer::SaveGameClass' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer, LocalPlayerController) == 0x000008, "Member 'LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer::LocalPlayerController' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer, SlotName) == 0x000010, "Member 'LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer::SlotName' has a wrong offset!"); \ +static_assert(offsetof(LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer, ReturnValue) == 0x000020, "Member 'LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer \ +static_assert(alignof(LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer"); \ +static_assert(sizeof(LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer) == 0x000001, "Wrong size on LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer"); \ +static_assert(offsetof(LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_OnPostSave \ +static_assert(alignof(LocalPlayerSaveGame_OnPostSave) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_OnPostSave"); \ +static_assert(sizeof(LocalPlayerSaveGame_OnPostSave) == 0x000001, "Wrong size on LocalPlayerSaveGame_OnPostSave"); \ +static_assert(offsetof(LocalPlayerSaveGame_OnPostSave, bSuccess) == 0x000000, "Member 'LocalPlayerSaveGame_OnPostSave::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer \ +static_assert(alignof(LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer"); \ +static_assert(sizeof(LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer) == 0x000001, "Wrong size on LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer"); \ +static_assert(offsetof(LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetInvalidDataVersion \ +static_assert(alignof(LocalPlayerSaveGame_GetInvalidDataVersion) == 0x000004, "Wrong alignment on LocalPlayerSaveGame_GetInvalidDataVersion"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetInvalidDataVersion) == 0x000004, "Wrong size on LocalPlayerSaveGame_GetInvalidDataVersion"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetInvalidDataVersion, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetInvalidDataVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetLatestDataVersion \ +static_assert(alignof(LocalPlayerSaveGame_GetLatestDataVersion) == 0x000004, "Wrong alignment on LocalPlayerSaveGame_GetLatestDataVersion"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetLatestDataVersion) == 0x000004, "Wrong size on LocalPlayerSaveGame_GetLatestDataVersion"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetLatestDataVersion, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetLatestDataVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetLocalPlayerController \ +static_assert(alignof(LocalPlayerSaveGame_GetLocalPlayerController) == 0x000008, "Wrong alignment on LocalPlayerSaveGame_GetLocalPlayerController"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetLocalPlayerController) == 0x000008, "Wrong size on LocalPlayerSaveGame_GetLocalPlayerController"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetLocalPlayerController, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetLocalPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetPlatformUserId \ +static_assert(alignof(LocalPlayerSaveGame_GetPlatformUserId) == 0x000004, "Wrong alignment on LocalPlayerSaveGame_GetPlatformUserId"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetPlatformUserId) == 0x000004, "Wrong size on LocalPlayerSaveGame_GetPlatformUserId"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetPlatformUserId, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetPlatformUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetPlatformUserIndex \ +static_assert(alignof(LocalPlayerSaveGame_GetPlatformUserIndex) == 0x000004, "Wrong alignment on LocalPlayerSaveGame_GetPlatformUserIndex"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetPlatformUserIndex) == 0x000004, "Wrong size on LocalPlayerSaveGame_GetPlatformUserIndex"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetPlatformUserIndex, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetPlatformUserIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetSavedDataVersion \ +static_assert(alignof(LocalPlayerSaveGame_GetSavedDataVersion) == 0x000004, "Wrong alignment on LocalPlayerSaveGame_GetSavedDataVersion"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetSavedDataVersion) == 0x000004, "Wrong size on LocalPlayerSaveGame_GetSavedDataVersion"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetSavedDataVersion, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetSavedDataVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_GetSaveSlotName \ +static_assert(alignof(LocalPlayerSaveGame_GetSaveSlotName) == 0x000008, "Wrong alignment on LocalPlayerSaveGame_GetSaveSlotName"); \ +static_assert(sizeof(LocalPlayerSaveGame_GetSaveSlotName) == 0x000010, "Wrong size on LocalPlayerSaveGame_GetSaveSlotName"); \ +static_assert(offsetof(LocalPlayerSaveGame_GetSaveSlotName, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_GetSaveSlotName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_IsSaveInProgress \ +static_assert(alignof(LocalPlayerSaveGame_IsSaveInProgress) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_IsSaveInProgress"); \ +static_assert(sizeof(LocalPlayerSaveGame_IsSaveInProgress) == 0x000001, "Wrong size on LocalPlayerSaveGame_IsSaveInProgress"); \ +static_assert(offsetof(LocalPlayerSaveGame_IsSaveInProgress, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_IsSaveInProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_WasLastSaveSuccessful \ +static_assert(alignof(LocalPlayerSaveGame_WasLastSaveSuccessful) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_WasLastSaveSuccessful"); \ +static_assert(sizeof(LocalPlayerSaveGame_WasLastSaveSuccessful) == 0x000001, "Wrong size on LocalPlayerSaveGame_WasLastSaveSuccessful"); \ +static_assert(offsetof(LocalPlayerSaveGame_WasLastSaveSuccessful, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_WasLastSaveSuccessful::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_WasLoaded \ +static_assert(alignof(LocalPlayerSaveGame_WasLoaded) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_WasLoaded"); \ +static_assert(sizeof(LocalPlayerSaveGame_WasLoaded) == 0x000001, "Wrong size on LocalPlayerSaveGame_WasLoaded"); \ +static_assert(offsetof(LocalPlayerSaveGame_WasLoaded, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_WasLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalPlayerSaveGame_WasSaveRequested \ +static_assert(alignof(LocalPlayerSaveGame_WasSaveRequested) == 0x000001, "Wrong alignment on LocalPlayerSaveGame_WasSaveRequested"); \ +static_assert(sizeof(LocalPlayerSaveGame_WasSaveRequested) == 0x000001, "Wrong size on LocalPlayerSaveGame_WasSaveRequested"); \ +static_assert(offsetof(LocalPlayerSaveGame_WasSaveRequested, ReturnValue) == 0x000000, "Member 'LocalPlayerSaveGame_WasSaveRequested::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalPlayerSaveGame \ +static_assert(alignof(ULocalPlayerSaveGame) == 0x000008, "Wrong alignment on ULocalPlayerSaveGame"); \ +static_assert(sizeof(ULocalPlayerSaveGame) == 0x000058, "Wrong size on ULocalPlayerSaveGame"); \ +static_assert(offsetof(ULocalPlayerSaveGame, OwningPlayer) == 0x000028, "Member 'ULocalPlayerSaveGame::OwningPlayer' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, SaveSlotName) == 0x000030, "Member 'ULocalPlayerSaveGame::SaveSlotName' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, SavedDataVersion) == 0x000040, "Member 'ULocalPlayerSaveGame::SavedDataVersion' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, LoadedDataVersion) == 0x000044, "Member 'ULocalPlayerSaveGame::LoadedDataVersion' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, CurrentSaveRequest) == 0x000048, "Member 'ULocalPlayerSaveGame::CurrentSaveRequest' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, LastSuccessfulSaveRequest) == 0x00004C, "Member 'ULocalPlayerSaveGame::LastSuccessfulSaveRequest' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayerSaveGame, LastErrorSaveRequest) == 0x000050, "Member 'ULocalPlayerSaveGame::LastErrorSaveRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationEmitterDirect \ +static_assert(alignof(UParticleModuleLocationEmitterDirect) == 0x000008, "Wrong alignment on UParticleModuleLocationEmitterDirect"); \ +static_assert(sizeof(UParticleModuleLocationEmitterDirect) == 0x000038, "Wrong size on UParticleModuleLocationEmitterDirect"); \ +static_assert(offsetof(UParticleModuleLocationEmitterDirect, EmitterName) == 0x000030, "Member 'UParticleModuleLocationEmitterDirect::EmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveCylinder \ +static_assert(alignof(UParticleModuleLocationPrimitiveCylinder) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveCylinder"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveCylinder) == 0x000138, "Wrong size on UParticleModuleLocationPrimitiveCylinder"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveCylinder, StartRadius) == 0x0000D0, "Member 'UParticleModuleLocationPrimitiveCylinder::StartRadius' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveCylinder, StartHeight) == 0x000100, "Member 'UParticleModuleLocationPrimitiveCylinder::StartHeight' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveCylinder, HeightAxis) == 0x000130, "Member 'UParticleModuleLocationPrimitiveCylinder::HeightAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveCylinder_Seeded \ +static_assert(alignof(UParticleModuleLocationPrimitiveCylinder_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveCylinder_Seeded"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveCylinder_Seeded) == 0x000158, "Wrong size on UParticleModuleLocationPrimitiveCylinder_Seeded"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveCylinder_Seeded, RandomSeedInfo) == 0x000138, "Member 'UParticleModuleLocationPrimitiveCylinder_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_CanSpectate \ +static_assert(alignof(GameModeBase_CanSpectate) == 0x000008, "Wrong alignment on GameModeBase_CanSpectate"); \ +static_assert(sizeof(GameModeBase_CanSpectate) == 0x000018, "Wrong size on GameModeBase_CanSpectate"); \ +static_assert(offsetof(GameModeBase_CanSpectate, Viewer) == 0x000000, "Member 'GameModeBase_CanSpectate::Viewer' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_CanSpectate, ViewTarget) == 0x000008, "Member 'GameModeBase_CanSpectate::ViewTarget' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_CanSpectate, ReturnValue) == 0x000010, "Member 'GameModeBase_CanSpectate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_ChangeName \ +static_assert(alignof(GameModeBase_ChangeName) == 0x000008, "Wrong alignment on GameModeBase_ChangeName"); \ +static_assert(sizeof(GameModeBase_ChangeName) == 0x000020, "Wrong size on GameModeBase_ChangeName"); \ +static_assert(offsetof(GameModeBase_ChangeName, Controller) == 0x000000, "Member 'GameModeBase_ChangeName::Controller' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_ChangeName, NewName) == 0x000008, "Member 'GameModeBase_ChangeName::NewName' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_ChangeName, bNameChange) == 0x000018, "Member 'GameModeBase_ChangeName::bNameChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_ChoosePlayerStart \ +static_assert(alignof(GameModeBase_ChoosePlayerStart) == 0x000008, "Wrong alignment on GameModeBase_ChoosePlayerStart"); \ +static_assert(sizeof(GameModeBase_ChoosePlayerStart) == 0x000010, "Wrong size on GameModeBase_ChoosePlayerStart"); \ +static_assert(offsetof(GameModeBase_ChoosePlayerStart, Player) == 0x000000, "Member 'GameModeBase_ChoosePlayerStart::Player' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_ChoosePlayerStart, ReturnValue) == 0x000008, "Member 'GameModeBase_ChoosePlayerStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_FindPlayerStart \ +static_assert(alignof(GameModeBase_FindPlayerStart) == 0x000008, "Wrong alignment on GameModeBase_FindPlayerStart"); \ +static_assert(sizeof(GameModeBase_FindPlayerStart) == 0x000020, "Wrong size on GameModeBase_FindPlayerStart"); \ +static_assert(offsetof(GameModeBase_FindPlayerStart, Player) == 0x000000, "Member 'GameModeBase_FindPlayerStart::Player' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_FindPlayerStart, IncomingName) == 0x000008, "Member 'GameModeBase_FindPlayerStart::IncomingName' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_FindPlayerStart, ReturnValue) == 0x000018, "Member 'GameModeBase_FindPlayerStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_GetDefaultPawnClassForController \ +static_assert(alignof(GameModeBase_GetDefaultPawnClassForController) == 0x000008, "Wrong alignment on GameModeBase_GetDefaultPawnClassForController"); \ +static_assert(sizeof(GameModeBase_GetDefaultPawnClassForController) == 0x000010, "Wrong size on GameModeBase_GetDefaultPawnClassForController"); \ +static_assert(offsetof(GameModeBase_GetDefaultPawnClassForController, InController) == 0x000000, "Member 'GameModeBase_GetDefaultPawnClassForController::InController' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_GetDefaultPawnClassForController, ReturnValue) == 0x000008, "Member 'GameModeBase_GetDefaultPawnClassForController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_GetNumPlayers \ +static_assert(alignof(GameModeBase_GetNumPlayers) == 0x000004, "Wrong alignment on GameModeBase_GetNumPlayers"); \ +static_assert(sizeof(GameModeBase_GetNumPlayers) == 0x000004, "Wrong size on GameModeBase_GetNumPlayers"); \ +static_assert(offsetof(GameModeBase_GetNumPlayers, ReturnValue) == 0x000000, "Member 'GameModeBase_GetNumPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_GetNumSpectators \ +static_assert(alignof(GameModeBase_GetNumSpectators) == 0x000004, "Wrong alignment on GameModeBase_GetNumSpectators"); \ +static_assert(sizeof(GameModeBase_GetNumSpectators) == 0x000004, "Wrong size on GameModeBase_GetNumSpectators"); \ +static_assert(offsetof(GameModeBase_GetNumSpectators, ReturnValue) == 0x000000, "Member 'GameModeBase_GetNumSpectators::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_HandleStartingNewPlayer \ +static_assert(alignof(GameModeBase_HandleStartingNewPlayer) == 0x000008, "Wrong alignment on GameModeBase_HandleStartingNewPlayer"); \ +static_assert(sizeof(GameModeBase_HandleStartingNewPlayer) == 0x000008, "Wrong size on GameModeBase_HandleStartingNewPlayer"); \ +static_assert(offsetof(GameModeBase_HandleStartingNewPlayer, NewPlayer) == 0x000000, "Member 'GameModeBase_HandleStartingNewPlayer::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_InitializeHUDForPlayer \ +static_assert(alignof(GameModeBase_InitializeHUDForPlayer) == 0x000008, "Wrong alignment on GameModeBase_InitializeHUDForPlayer"); \ +static_assert(sizeof(GameModeBase_InitializeHUDForPlayer) == 0x000008, "Wrong size on GameModeBase_InitializeHUDForPlayer"); \ +static_assert(offsetof(GameModeBase_InitializeHUDForPlayer, NewPlayer) == 0x000000, "Member 'GameModeBase_InitializeHUDForPlayer::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_InitStartSpot \ +static_assert(alignof(GameModeBase_InitStartSpot) == 0x000008, "Wrong alignment on GameModeBase_InitStartSpot"); \ +static_assert(sizeof(GameModeBase_InitStartSpot) == 0x000010, "Wrong size on GameModeBase_InitStartSpot"); \ +static_assert(offsetof(GameModeBase_InitStartSpot, StartSpot) == 0x000000, "Member 'GameModeBase_InitStartSpot::StartSpot' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_InitStartSpot, NewPlayer) == 0x000008, "Member 'GameModeBase_InitStartSpot::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_FindPlayerStart \ +static_assert(alignof(GameModeBase_K2_FindPlayerStart) == 0x000008, "Wrong alignment on GameModeBase_K2_FindPlayerStart"); \ +static_assert(sizeof(GameModeBase_K2_FindPlayerStart) == 0x000020, "Wrong size on GameModeBase_K2_FindPlayerStart"); \ +static_assert(offsetof(GameModeBase_K2_FindPlayerStart, Player) == 0x000000, "Member 'GameModeBase_K2_FindPlayerStart::Player' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_K2_FindPlayerStart, IncomingName) == 0x000008, "Member 'GameModeBase_K2_FindPlayerStart::IncomingName' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_K2_FindPlayerStart, ReturnValue) == 0x000018, "Member 'GameModeBase_K2_FindPlayerStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_OnChangeName \ +static_assert(alignof(GameModeBase_K2_OnChangeName) == 0x000008, "Wrong alignment on GameModeBase_K2_OnChangeName"); \ +static_assert(sizeof(GameModeBase_K2_OnChangeName) == 0x000020, "Wrong size on GameModeBase_K2_OnChangeName"); \ +static_assert(offsetof(GameModeBase_K2_OnChangeName, Other) == 0x000000, "Member 'GameModeBase_K2_OnChangeName::Other' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_K2_OnChangeName, NewName) == 0x000008, "Member 'GameModeBase_K2_OnChangeName::NewName' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_K2_OnChangeName, bNameChange) == 0x000018, "Member 'GameModeBase_K2_OnChangeName::bNameChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_OnLogout \ +static_assert(alignof(GameModeBase_K2_OnLogout) == 0x000008, "Wrong alignment on GameModeBase_K2_OnLogout"); \ +static_assert(sizeof(GameModeBase_K2_OnLogout) == 0x000008, "Wrong size on GameModeBase_K2_OnLogout"); \ +static_assert(offsetof(GameModeBase_K2_OnLogout, ExitingController) == 0x000000, "Member 'GameModeBase_K2_OnLogout::ExitingController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_OnRestartPlayer \ +static_assert(alignof(GameModeBase_K2_OnRestartPlayer) == 0x000008, "Wrong alignment on GameModeBase_K2_OnRestartPlayer"); \ +static_assert(sizeof(GameModeBase_K2_OnRestartPlayer) == 0x000008, "Wrong size on GameModeBase_K2_OnRestartPlayer"); \ +static_assert(offsetof(GameModeBase_K2_OnRestartPlayer, NewPlayer) == 0x000000, "Member 'GameModeBase_K2_OnRestartPlayer::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_OnSwapPlayerControllers \ +static_assert(alignof(GameModeBase_K2_OnSwapPlayerControllers) == 0x000008, "Wrong alignment on GameModeBase_K2_OnSwapPlayerControllers"); \ +static_assert(sizeof(GameModeBase_K2_OnSwapPlayerControllers) == 0x000010, "Wrong size on GameModeBase_K2_OnSwapPlayerControllers"); \ +static_assert(offsetof(GameModeBase_K2_OnSwapPlayerControllers, OldPC) == 0x000000, "Member 'GameModeBase_K2_OnSwapPlayerControllers::OldPC' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_K2_OnSwapPlayerControllers, NewPC) == 0x000008, "Member 'GameModeBase_K2_OnSwapPlayerControllers::NewPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_K2_PostLogin \ +static_assert(alignof(GameModeBase_K2_PostLogin) == 0x000008, "Wrong alignment on GameModeBase_K2_PostLogin"); \ +static_assert(sizeof(GameModeBase_K2_PostLogin) == 0x000008, "Wrong size on GameModeBase_K2_PostLogin"); \ +static_assert(offsetof(GameModeBase_K2_PostLogin, NewPlayer) == 0x000000, "Member 'GameModeBase_K2_PostLogin::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_PlayerCanRestart \ +static_assert(alignof(GameModeBase_PlayerCanRestart) == 0x000008, "Wrong alignment on GameModeBase_PlayerCanRestart"); \ +static_assert(sizeof(GameModeBase_PlayerCanRestart) == 0x000010, "Wrong size on GameModeBase_PlayerCanRestart"); \ +static_assert(offsetof(GameModeBase_PlayerCanRestart, Player) == 0x000000, "Member 'GameModeBase_PlayerCanRestart::Player' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_PlayerCanRestart, ReturnValue) == 0x000008, "Member 'GameModeBase_PlayerCanRestart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_RestartPlayer \ +static_assert(alignof(GameModeBase_RestartPlayer) == 0x000008, "Wrong alignment on GameModeBase_RestartPlayer"); \ +static_assert(sizeof(GameModeBase_RestartPlayer) == 0x000008, "Wrong size on GameModeBase_RestartPlayer"); \ +static_assert(offsetof(GameModeBase_RestartPlayer, NewPlayer) == 0x000000, "Member 'GameModeBase_RestartPlayer::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_RestartPlayerAtPlayerStart \ +static_assert(alignof(GameModeBase_RestartPlayerAtPlayerStart) == 0x000008, "Wrong alignment on GameModeBase_RestartPlayerAtPlayerStart"); \ +static_assert(sizeof(GameModeBase_RestartPlayerAtPlayerStart) == 0x000010, "Wrong size on GameModeBase_RestartPlayerAtPlayerStart"); \ +static_assert(offsetof(GameModeBase_RestartPlayerAtPlayerStart, NewPlayer) == 0x000000, "Member 'GameModeBase_RestartPlayerAtPlayerStart::NewPlayer' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_RestartPlayerAtPlayerStart, StartSpot) == 0x000008, "Member 'GameModeBase_RestartPlayerAtPlayerStart::StartSpot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_RestartPlayerAtTransform \ +static_assert(alignof(GameModeBase_RestartPlayerAtTransform) == 0x000010, "Wrong alignment on GameModeBase_RestartPlayerAtTransform"); \ +static_assert(sizeof(GameModeBase_RestartPlayerAtTransform) == 0x000070, "Wrong size on GameModeBase_RestartPlayerAtTransform"); \ +static_assert(offsetof(GameModeBase_RestartPlayerAtTransform, NewPlayer) == 0x000000, "Member 'GameModeBase_RestartPlayerAtTransform::NewPlayer' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_RestartPlayerAtTransform, SpawnTransform) == 0x000010, "Member 'GameModeBase_RestartPlayerAtTransform::SpawnTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_ShouldReset \ +static_assert(alignof(GameModeBase_ShouldReset) == 0x000008, "Wrong alignment on GameModeBase_ShouldReset"); \ +static_assert(sizeof(GameModeBase_ShouldReset) == 0x000010, "Wrong size on GameModeBase_ShouldReset"); \ +static_assert(offsetof(GameModeBase_ShouldReset, ActorToReset) == 0x000000, "Member 'GameModeBase_ShouldReset::ActorToReset' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_ShouldReset, ReturnValue) == 0x000008, "Member 'GameModeBase_ShouldReset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_SpawnDefaultPawnAtTransform \ +static_assert(alignof(GameModeBase_SpawnDefaultPawnAtTransform) == 0x000010, "Wrong alignment on GameModeBase_SpawnDefaultPawnAtTransform"); \ +static_assert(sizeof(GameModeBase_SpawnDefaultPawnAtTransform) == 0x000080, "Wrong size on GameModeBase_SpawnDefaultPawnAtTransform"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnAtTransform, NewPlayer) == 0x000000, "Member 'GameModeBase_SpawnDefaultPawnAtTransform::NewPlayer' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnAtTransform, SpawnTransform) == 0x000010, "Member 'GameModeBase_SpawnDefaultPawnAtTransform::SpawnTransform' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnAtTransform, ReturnValue) == 0x000070, "Member 'GameModeBase_SpawnDefaultPawnAtTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_SpawnDefaultPawnFor \ +static_assert(alignof(GameModeBase_SpawnDefaultPawnFor) == 0x000008, "Wrong alignment on GameModeBase_SpawnDefaultPawnFor"); \ +static_assert(sizeof(GameModeBase_SpawnDefaultPawnFor) == 0x000018, "Wrong size on GameModeBase_SpawnDefaultPawnFor"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnFor, NewPlayer) == 0x000000, "Member 'GameModeBase_SpawnDefaultPawnFor::NewPlayer' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnFor, StartSpot) == 0x000008, "Member 'GameModeBase_SpawnDefaultPawnFor::StartSpot' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_SpawnDefaultPawnFor, ReturnValue) == 0x000010, "Member 'GameModeBase_SpawnDefaultPawnFor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_HasMatchEnded \ +static_assert(alignof(GameModeBase_HasMatchEnded) == 0x000001, "Wrong alignment on GameModeBase_HasMatchEnded"); \ +static_assert(sizeof(GameModeBase_HasMatchEnded) == 0x000001, "Wrong size on GameModeBase_HasMatchEnded"); \ +static_assert(offsetof(GameModeBase_HasMatchEnded, ReturnValue) == 0x000000, "Member 'GameModeBase_HasMatchEnded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_HasMatchStarted \ +static_assert(alignof(GameModeBase_HasMatchStarted) == 0x000001, "Wrong alignment on GameModeBase_HasMatchStarted"); \ +static_assert(sizeof(GameModeBase_HasMatchStarted) == 0x000001, "Wrong size on GameModeBase_HasMatchStarted"); \ +static_assert(offsetof(GameModeBase_HasMatchStarted, ReturnValue) == 0x000000, "Member 'GameModeBase_HasMatchStarted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameModeBase_MustSpectate \ +static_assert(alignof(GameModeBase_MustSpectate) == 0x000008, "Wrong alignment on GameModeBase_MustSpectate"); \ +static_assert(sizeof(GameModeBase_MustSpectate) == 0x000010, "Wrong size on GameModeBase_MustSpectate"); \ +static_assert(offsetof(GameModeBase_MustSpectate, NewPlayerController) == 0x000000, "Member 'GameModeBase_MustSpectate::NewPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameModeBase_MustSpectate, ReturnValue) == 0x000008, "Member 'GameModeBase_MustSpectate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameModeBase \ +static_assert(alignof(AGameModeBase) == 0x000008, "Wrong alignment on AGameModeBase"); \ +static_assert(sizeof(AGameModeBase) == 0x000338, "Wrong size on AGameModeBase"); \ +static_assert(offsetof(AGameModeBase, OptionsString) == 0x000298, "Member 'AGameModeBase::OptionsString' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, GameSessionClass) == 0x0002A8, "Member 'AGameModeBase::GameSessionClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, GameStateClass) == 0x0002B0, "Member 'AGameModeBase::GameStateClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, PlayerControllerClass) == 0x0002B8, "Member 'AGameModeBase::PlayerControllerClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, PlayerStateClass) == 0x0002C0, "Member 'AGameModeBase::PlayerStateClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, HUDClass) == 0x0002C8, "Member 'AGameModeBase::HUDClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, DefaultPawnClass) == 0x0002D0, "Member 'AGameModeBase::DefaultPawnClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, SpectatorClass) == 0x0002D8, "Member 'AGameModeBase::SpectatorClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, ReplaySpectatorPlayerControllerClass) == 0x0002E0, "Member 'AGameModeBase::ReplaySpectatorPlayerControllerClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, ServerStatReplicatorClass) == 0x0002E8, "Member 'AGameModeBase::ServerStatReplicatorClass' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, GameSession) == 0x0002F0, "Member 'AGameModeBase::GameSession' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, GameState) == 0x0002F8, "Member 'AGameModeBase::GameState' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, ServerStatReplicator) == 0x000300, "Member 'AGameModeBase::ServerStatReplicator' has a wrong offset!"); \ +static_assert(offsetof(AGameModeBase, DefaultPlayerName) == 0x000308, "Member 'AGameModeBase::DefaultPlayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveSphere_Seeded \ +static_assert(alignof(UParticleModuleLocationPrimitiveSphere_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveSphere_Seeded"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveSphere_Seeded) == 0x000118, "Wrong size on UParticleModuleLocationPrimitiveSphere_Seeded"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveSphere_Seeded, RandomSeedInfo) == 0x0000F8, "Member 'UParticleModuleLocationPrimitiveSphere_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationPrimitiveTriangle \ +static_assert(alignof(UParticleModuleLocationPrimitiveTriangle) == 0x000008, "Wrong alignment on UParticleModuleLocationPrimitiveTriangle"); \ +static_assert(sizeof(UParticleModuleLocationPrimitiveTriangle) == 0x000120, "Wrong size on UParticleModuleLocationPrimitiveTriangle"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveTriangle, StartOffset) == 0x000030, "Member 'UParticleModuleLocationPrimitiveTriangle::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveTriangle, Height) == 0x000090, "Member 'UParticleModuleLocationPrimitiveTriangle::Height' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveTriangle, Angle) == 0x0000C0, "Member 'UParticleModuleLocationPrimitiveTriangle::Angle' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationPrimitiveTriangle, Thickness) == 0x0000F0, "Member 'UParticleModuleLocationPrimitiveTriangle::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSet \ +static_assert(alignof(UAnimSet) == 0x000008, "Wrong alignment on UAnimSet"); \ +static_assert(sizeof(UAnimSet) == 0x0000F0, "Wrong size on UAnimSet"); \ +static_assert(offsetof(UAnimSet, TrackBoneNames) == 0x000030, "Member 'UAnimSet::TrackBoneNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, LinkupCache) == 0x000040, "Member 'UAnimSet::LinkupCache' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, BoneUseAnimTranslation) == 0x000050, "Member 'UAnimSet::BoneUseAnimTranslation' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, ForceUseMeshTranslation) == 0x000060, "Member 'UAnimSet::ForceUseMeshTranslation' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, UseTranslationBoneNames) == 0x000070, "Member 'UAnimSet::UseTranslationBoneNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, ForceMeshTranslationBoneNames) == 0x000080, "Member 'UAnimSet::ForceMeshTranslationBoneNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, PreviewSkelMeshName) == 0x000090, "Member 'UAnimSet::PreviewSkelMeshName' has a wrong offset!"); \ +static_assert(offsetof(UAnimSet, BestRatioSkelMeshName) == 0x000098, "Member 'UAnimSet::BestRatioSkelMeshName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationSkelVertSurface \ +static_assert(alignof(UParticleModuleLocationSkelVertSurface) == 0x000008, "Wrong alignment on UParticleModuleLocationSkelVertSurface"); \ +static_assert(sizeof(UParticleModuleLocationSkelVertSurface) == 0x0000B0, "Wrong size on UParticleModuleLocationSkelVertSurface"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, SourceType) == 0x000030, "Member 'UParticleModuleLocationSkelVertSurface::SourceType' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, UniversalOffset) == 0x000038, "Member 'UParticleModuleLocationSkelVertSurface::UniversalOffset' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, InheritVelocityScale) == 0x000054, "Member 'UParticleModuleLocationSkelVertSurface::InheritVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, SkelMeshActorParamName) == 0x000058, "Member 'UParticleModuleLocationSkelVertSurface::SkelMeshActorParamName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, ValidAssociatedBones) == 0x000060, "Member 'UParticleModuleLocationSkelVertSurface::ValidAssociatedBones' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, NormalToCompare) == 0x000078, "Member 'UParticleModuleLocationSkelVertSurface::NormalToCompare' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, NormalCheckToleranceDegrees) == 0x000090, "Member 'UParticleModuleLocationSkelVertSurface::NormalCheckToleranceDegrees' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, NormalCheckTolerance) == 0x000094, "Member 'UParticleModuleLocationSkelVertSurface::NormalCheckTolerance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, ValidMaterialIndices) == 0x000098, "Member 'UParticleModuleLocationSkelVertSurface::ValidMaterialIndices' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleLocationSkelVertSurface, InheritUVChannel) == 0x0000AC, "Member 'UParticleModuleLocationSkelVertSurface::InheritUVChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEdGraphNode_Documentation \ +static_assert(alignof(UEdGraphNode_Documentation) == 0x000008, "Wrong alignment on UEdGraphNode_Documentation"); \ +static_assert(sizeof(UEdGraphNode_Documentation) == 0x0000B8, "Wrong size on UEdGraphNode_Documentation"); \ +static_assert(offsetof(UEdGraphNode_Documentation, Link) == 0x000098, "Member 'UEdGraphNode_Documentation::Link' has a wrong offset!"); \ +static_assert(offsetof(UEdGraphNode_Documentation, Excerpt) == 0x0000A8, "Member 'UEdGraphNode_Documentation::Excerpt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationWorldOffset \ +static_assert(alignof(UParticleModuleLocationWorldOffset) == 0x000008, "Wrong alignment on UParticleModuleLocationWorldOffset"); \ +static_assert(sizeof(UParticleModuleLocationWorldOffset) == 0x000098, "Wrong size on UParticleModuleLocationWorldOffset"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocationWorldOffset_Seeded \ +static_assert(alignof(UParticleModuleLocationWorldOffset_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLocationWorldOffset_Seeded"); \ +static_assert(sizeof(UParticleModuleLocationWorldOffset_Seeded) == 0x0000B8, "Wrong size on UParticleModuleLocationWorldOffset_Seeded"); \ +static_assert(offsetof(UParticleModuleLocationWorldOffset_Seeded, RandomSeedInfo) == 0x000098, "Member 'UParticleModuleLocationWorldOffset_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleLocation_Seeded \ +static_assert(alignof(UParticleModuleLocation_Seeded) == 0x000008, "Wrong alignment on UParticleModuleLocation_Seeded"); \ +static_assert(sizeof(UParticleModuleLocation_Seeded) == 0x0000B8, "Wrong size on UParticleModuleLocation_Seeded"); \ +static_assert(offsetof(UParticleModuleLocation_Seeded, RandomSeedInfo) == 0x000098, "Member 'UParticleModuleLocation_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetMappingTable \ +static_assert(alignof(UAssetMappingTable) == 0x000008, "Wrong alignment on UAssetMappingTable"); \ +static_assert(sizeof(UAssetMappingTable) == 0x000038, "Wrong size on UAssetMappingTable"); \ +static_assert(offsetof(UAssetMappingTable, MappedAssets) == 0x000028, "Member 'UAssetMappingTable::MappedAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMaterialBase \ +static_assert(alignof(UParticleModuleMaterialBase) == 0x000008, "Wrong alignment on UParticleModuleMaterialBase"); \ +static_assert(sizeof(UParticleModuleMaterialBase) == 0x000030, "Wrong size on UParticleModuleMaterialBase"); \ + +#define DUMPER7_ASSERTS_UActorElementCounterInterface \ +static_assert(alignof(UActorElementCounterInterface) == 0x000008, "Wrong alignment on UActorElementCounterInterface"); \ +static_assert(sizeof(UActorElementCounterInterface) == 0x000030, "Wrong size on UActorElementCounterInterface"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshMaterial \ +static_assert(alignof(UParticleModuleMeshMaterial) == 0x000008, "Wrong alignment on UParticleModuleMeshMaterial"); \ +static_assert(sizeof(UParticleModuleMeshMaterial) == 0x000040, "Wrong size on UParticleModuleMeshMaterial"); \ +static_assert(offsetof(UParticleModuleMeshMaterial, MeshMaterials) == 0x000030, "Member 'UParticleModuleMeshMaterial::MeshMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationBase \ +static_assert(alignof(UParticleModuleRotationBase) == 0x000008, "Wrong alignment on UParticleModuleRotationBase"); \ +static_assert(sizeof(UParticleModuleRotationBase) == 0x000030, "Wrong size on UParticleModuleRotationBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotation \ +static_assert(alignof(UParticleModuleMeshRotation) == 0x000008, "Wrong alignment on UParticleModuleMeshRotation"); \ +static_assert(sizeof(UParticleModuleMeshRotation) == 0x000098, "Wrong size on UParticleModuleMeshRotation"); \ +static_assert(offsetof(UParticleModuleMeshRotation, StartRotation) == 0x000030, "Member 'UParticleModuleMeshRotation::StartRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoneMaskFilter \ +static_assert(alignof(UBoneMaskFilter) == 0x000008, "Wrong alignment on UBoneMaskFilter"); \ +static_assert(sizeof(UBoneMaskFilter) == 0x000038, "Wrong size on UBoneMaskFilter"); \ +static_assert(offsetof(UBoneMaskFilter, BlendPoses) == 0x000028, "Member 'UBoneMaskFilter::BlendPoses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationRateBase \ +static_assert(alignof(UParticleModuleRotationRateBase) == 0x000008, "Wrong alignment on UParticleModuleRotationRateBase"); \ +static_assert(sizeof(UParticleModuleRotationRateBase) == 0x000030, "Wrong size on UParticleModuleRotationRateBase"); \ + +#define DUMPER7_ASSERTS_UActorElementWorldInterface \ +static_assert(alignof(UActorElementWorldInterface) == 0x000008, "Wrong alignment on UActorElementWorldInterface"); \ +static_assert(sizeof(UActorElementWorldInterface) == 0x000030, "Wrong size on UActorElementWorldInterface"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotationRate \ +static_assert(alignof(UParticleModuleMeshRotationRate) == 0x000008, "Wrong alignment on UParticleModuleMeshRotationRate"); \ +static_assert(sizeof(UParticleModuleMeshRotationRate) == 0x000090, "Wrong size on UParticleModuleMeshRotationRate"); \ +static_assert(offsetof(UParticleModuleMeshRotationRate, StartRotationRate) == 0x000030, "Member 'UParticleModuleMeshRotationRate::StartRotationRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotationRateMultiplyLife \ +static_assert(alignof(UParticleModuleMeshRotationRateMultiplyLife) == 0x000008, "Wrong alignment on UParticleModuleMeshRotationRateMultiplyLife"); \ +static_assert(sizeof(UParticleModuleMeshRotationRateMultiplyLife) == 0x000090, "Wrong size on UParticleModuleMeshRotationRateMultiplyLife"); \ +static_assert(offsetof(UParticleModuleMeshRotationRateMultiplyLife, LifeMultiplier) == 0x000030, "Member 'UParticleModuleMeshRotationRateMultiplyLife::LifeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotationRateOverLife \ +static_assert(alignof(UParticleModuleMeshRotationRateOverLife) == 0x000008, "Wrong alignment on UParticleModuleMeshRotationRateOverLife"); \ +static_assert(sizeof(UParticleModuleMeshRotationRateOverLife) == 0x000098, "Wrong size on UParticleModuleMeshRotationRateOverLife"); \ +static_assert(offsetof(UParticleModuleMeshRotationRateOverLife, RotRate) == 0x000030, "Member 'UParticleModuleMeshRotationRateOverLife::RotRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataTable \ +static_assert(alignof(UDataTable) == 0x000008, "Wrong alignment on UDataTable"); \ +static_assert(sizeof(UDataTable) == 0x0000B0, "Wrong size on UDataTable"); \ +static_assert(offsetof(UDataTable, RowStruct) == 0x000028, "Member 'UDataTable::RowStruct' has a wrong offset!"); \ +static_assert(offsetof(UDataTable, RowMap) == 0x000030, "Member 'UDataTable::RowMap' has a wrong offset!"); \ +static_assert(offsetof(UDataTable, ImportKeyField) == 0x000088, "Member 'UDataTable::ImportKeyField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotationRate_Seeded \ +static_assert(alignof(UParticleModuleMeshRotationRate_Seeded) == 0x000008, "Wrong alignment on UParticleModuleMeshRotationRate_Seeded"); \ +static_assert(sizeof(UParticleModuleMeshRotationRate_Seeded) == 0x0000B0, "Wrong size on UParticleModuleMeshRotationRate_Seeded"); \ +static_assert(offsetof(UParticleModuleMeshRotationRate_Seeded, RandomSeedInfo) == 0x000090, "Member 'UParticleModuleMeshRotationRate_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComponentElementSelectionInterface \ +static_assert(alignof(UComponentElementSelectionInterface) == 0x000008, "Wrong alignment on UComponentElementSelectionInterface"); \ +static_assert(sizeof(UComponentElementSelectionInterface) == 0x000030, "Wrong size on UComponentElementSelectionInterface"); \ + +#define DUMPER7_ASSERTS_UParticleModuleMeshRotation_Seeded \ +static_assert(alignof(UParticleModuleMeshRotation_Seeded) == 0x000008, "Wrong alignment on UParticleModuleMeshRotation_Seeded"); \ +static_assert(sizeof(UParticleModuleMeshRotation_Seeded) == 0x0000B8, "Wrong size on UParticleModuleMeshRotation_Seeded"); \ +static_assert(offsetof(UParticleModuleMeshRotation_Seeded, RandomSeedInfo) == 0x000098, "Member 'UParticleModuleMeshRotation_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleOrbitBase \ +static_assert(alignof(UParticleModuleOrbitBase) == 0x000008, "Wrong alignment on UParticleModuleOrbitBase"); \ +static_assert(sizeof(UParticleModuleOrbitBase) == 0x000038, "Wrong size on UParticleModuleOrbitBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleOrbit \ +static_assert(alignof(UParticleModuleOrbit) == 0x000008, "Wrong alignment on UParticleModuleOrbit"); \ +static_assert(sizeof(UParticleModuleOrbit) == 0x000178, "Wrong size on UParticleModuleOrbit"); \ +static_assert(offsetof(UParticleModuleOrbit, ChainMode) == 0x000038, "Member 'UParticleModuleOrbit::ChainMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, OffsetAmount) == 0x000040, "Member 'UParticleModuleOrbit::OffsetAmount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, OffsetOptions) == 0x0000A0, "Member 'UParticleModuleOrbit::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, RotationAmount) == 0x0000A8, "Member 'UParticleModuleOrbit::RotationAmount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, RotationOptions) == 0x000108, "Member 'UParticleModuleOrbit::RotationOptions' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, RotationRateAmount) == 0x000110, "Member 'UParticleModuleOrbit::RotationRateAmount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleOrbit, RotationRateOptions) == 0x000170, "Member 'UParticleModuleOrbit::RotationRateOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleOrientationBase \ +static_assert(alignof(UParticleModuleOrientationBase) == 0x000008, "Wrong alignment on UParticleModuleOrientationBase"); \ +static_assert(sizeof(UParticleModuleOrientationBase) == 0x000030, "Wrong size on UParticleModuleOrientationBase"); \ + +#define DUMPER7_ASSERTS_USplineMetadata \ +static_assert(alignof(USplineMetadata) == 0x000008, "Wrong alignment on USplineMetadata"); \ +static_assert(sizeof(USplineMetadata) == 0x000028, "Wrong size on USplineMetadata"); \ + +#define DUMPER7_ASSERTS_UParticleModuleOrientationAxisLock \ +static_assert(alignof(UParticleModuleOrientationAxisLock) == 0x000008, "Wrong alignment on UParticleModuleOrientationAxisLock"); \ +static_assert(sizeof(UParticleModuleOrientationAxisLock) == 0x000038, "Wrong size on UParticleModuleOrientationAxisLock"); \ +static_assert(offsetof(UParticleModuleOrientationAxisLock, LockAxisFlags) == 0x000030, "Member 'UParticleModuleOrientationAxisLock::LockAxisFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleParameterBase \ +static_assert(alignof(UParticleModuleParameterBase) == 0x000008, "Wrong alignment on UParticleModuleParameterBase"); \ +static_assert(sizeof(UParticleModuleParameterBase) == 0x000030, "Wrong size on UParticleModuleParameterBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleParameterDynamic \ +static_assert(alignof(UParticleModuleParameterDynamic) == 0x000008, "Wrong alignment on UParticleModuleParameterDynamic"); \ +static_assert(sizeof(UParticleModuleParameterDynamic) == 0x000048, "Wrong size on UParticleModuleParameterDynamic"); \ +static_assert(offsetof(UParticleModuleParameterDynamic, DynamicParams) == 0x000030, "Member 'UParticleModuleParameterDynamic::DynamicParams' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleParameterDynamic, UpdateFlags) == 0x000040, "Member 'UParticleModuleParameterDynamic::UpdateFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleParameterDynamic_Seeded \ +static_assert(alignof(UParticleModuleParameterDynamic_Seeded) == 0x000008, "Wrong alignment on UParticleModuleParameterDynamic_Seeded"); \ +static_assert(sizeof(UParticleModuleParameterDynamic_Seeded) == 0x000068, "Wrong size on UParticleModuleParameterDynamic_Seeded"); \ +static_assert(offsetof(UParticleModuleParameterDynamic_Seeded, RandomSeedInfo) == 0x000048, "Member 'UParticleModuleParameterDynamic_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance \ +static_assert(alignof(VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance) == 0x000001, "Wrong alignment on VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance"); \ +static_assert(sizeof(VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance) == 0x000001, "Wrong size on VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance"); \ +static_assert(offsetof(VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetGroundAlbedo \ +static_assert(alignof(VolumetricCloudComponent_SetGroundAlbedo) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetGroundAlbedo"); \ +static_assert(sizeof(VolumetricCloudComponent_SetGroundAlbedo) == 0x000004, "Wrong size on VolumetricCloudComponent_SetGroundAlbedo"); \ +static_assert(offsetof(VolumetricCloudComponent_SetGroundAlbedo, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetGroundAlbedo::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetLayerBottomAltitude \ +static_assert(alignof(VolumetricCloudComponent_SetLayerBottomAltitude) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetLayerBottomAltitude"); \ +static_assert(sizeof(VolumetricCloudComponent_SetLayerBottomAltitude) == 0x000004, "Wrong size on VolumetricCloudComponent_SetLayerBottomAltitude"); \ +static_assert(offsetof(VolumetricCloudComponent_SetLayerBottomAltitude, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetLayerBottomAltitude::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetLayerHeight \ +static_assert(alignof(VolumetricCloudComponent_SetLayerHeight) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetLayerHeight"); \ +static_assert(sizeof(VolumetricCloudComponent_SetLayerHeight) == 0x000004, "Wrong size on VolumetricCloudComponent_SetLayerHeight"); \ +static_assert(offsetof(VolumetricCloudComponent_SetLayerHeight, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetLayerHeight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetMaterial \ +static_assert(alignof(VolumetricCloudComponent_SetMaterial) == 0x000008, "Wrong alignment on VolumetricCloudComponent_SetMaterial"); \ +static_assert(sizeof(VolumetricCloudComponent_SetMaterial) == 0x000008, "Wrong size on VolumetricCloudComponent_SetMaterial"); \ +static_assert(offsetof(VolumetricCloudComponent_SetMaterial, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetMaterial::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetPlanetRadius \ +static_assert(alignof(VolumetricCloudComponent_SetPlanetRadius) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetPlanetRadius"); \ +static_assert(sizeof(VolumetricCloudComponent_SetPlanetRadius) == 0x000004, "Wrong size on VolumetricCloudComponent_SetPlanetRadius"); \ +static_assert(offsetof(VolumetricCloudComponent_SetPlanetRadius, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetPlanetRadius::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetReflectionSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetReflectionSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetReflectionSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetReflectionSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetReflectionSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetReflectionSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetReflectionSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetReflectionViewSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetReflectionViewSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetReflectionViewSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetReflectionViewSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetReflectionViewSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetReflectionViewSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetReflectionViewSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetShadowReflectionSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetShadowReflectionSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetShadowReflectionSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetShadowReflectionSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetShadowReflectionSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetShadowReflectionSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetShadowReflectionSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetShadowTracingDistance \ +static_assert(alignof(VolumetricCloudComponent_SetShadowTracingDistance) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetShadowTracingDistance"); \ +static_assert(sizeof(VolumetricCloudComponent_SetShadowTracingDistance) == 0x000004, "Wrong size on VolumetricCloudComponent_SetShadowTracingDistance"); \ +static_assert(offsetof(VolumetricCloudComponent_SetShadowTracingDistance, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetShadowTracingDistance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetShadowViewSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetShadowViewSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetShadowViewSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetShadowViewSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetShadowViewSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetShadowViewSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetShadowViewSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion \ +static_assert(alignof(VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion"); \ +static_assert(sizeof(VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion) == 0x000004, "Wrong size on VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion"); \ +static_assert(offsetof(VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetStopTracingTransmittanceThreshold \ +static_assert(alignof(VolumetricCloudComponent_SetStopTracingTransmittanceThreshold) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetStopTracingTransmittanceThreshold"); \ +static_assert(sizeof(VolumetricCloudComponent_SetStopTracingTransmittanceThreshold) == 0x000004, "Wrong size on VolumetricCloudComponent_SetStopTracingTransmittanceThreshold"); \ +static_assert(offsetof(VolumetricCloudComponent_SetStopTracingTransmittanceThreshold, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetStopTracingTransmittanceThreshold::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetTracingMaxDistance \ +static_assert(alignof(VolumetricCloudComponent_SetTracingMaxDistance) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetTracingMaxDistance"); \ +static_assert(sizeof(VolumetricCloudComponent_SetTracingMaxDistance) == 0x000004, "Wrong size on VolumetricCloudComponent_SetTracingMaxDistance"); \ +static_assert(offsetof(VolumetricCloudComponent_SetTracingMaxDistance, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetTracingMaxDistance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetTracingStartMaxDistance \ +static_assert(alignof(VolumetricCloudComponent_SetTracingStartMaxDistance) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetTracingStartMaxDistance"); \ +static_assert(sizeof(VolumetricCloudComponent_SetTracingStartMaxDistance) == 0x000004, "Wrong size on VolumetricCloudComponent_SetTracingStartMaxDistance"); \ +static_assert(offsetof(VolumetricCloudComponent_SetTracingStartMaxDistance, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetTracingStartMaxDistance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VolumetricCloudComponent_SetViewSampleCountScale \ +static_assert(alignof(VolumetricCloudComponent_SetViewSampleCountScale) == 0x000004, "Wrong alignment on VolumetricCloudComponent_SetViewSampleCountScale"); \ +static_assert(sizeof(VolumetricCloudComponent_SetViewSampleCountScale) == 0x000004, "Wrong size on VolumetricCloudComponent_SetViewSampleCountScale"); \ +static_assert(offsetof(VolumetricCloudComponent_SetViewSampleCountScale, NewValue) == 0x000000, "Member 'VolumetricCloudComponent_SetViewSampleCountScale::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVolumetricCloudComponent \ +static_assert(alignof(UVolumetricCloudComponent) == 0x000010, "Wrong alignment on UVolumetricCloudComponent"); \ +static_assert(sizeof(UVolumetricCloudComponent) == 0x000310, "Wrong size on UVolumetricCloudComponent"); \ +static_assert(offsetof(UVolumetricCloudComponent, LayerBottomAltitude) == 0x0002A0, "Member 'UVolumetricCloudComponent::LayerBottomAltitude' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, LayerHeight) == 0x0002A4, "Member 'UVolumetricCloudComponent::LayerHeight' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, TracingStartMaxDistance) == 0x0002A8, "Member 'UVolumetricCloudComponent::TracingStartMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, TracingMaxDistanceMode) == 0x0002AC, "Member 'UVolumetricCloudComponent::TracingMaxDistanceMode' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, TracingMaxDistance) == 0x0002B0, "Member 'UVolumetricCloudComponent::TracingMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, PlanetRadius) == 0x0002B4, "Member 'UVolumetricCloudComponent::PlanetRadius' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, GroundAlbedo) == 0x0002B8, "Member 'UVolumetricCloudComponent::GroundAlbedo' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, Material) == 0x0002C0, "Member 'UVolumetricCloudComponent::Material' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, SkyLightCloudBottomOcclusion) == 0x0002CC, "Member 'UVolumetricCloudComponent::SkyLightCloudBottomOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ViewSampleCountScale) == 0x0002D0, "Member 'UVolumetricCloudComponent::ViewSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ReflectionViewSampleCountScaleValue) == 0x0002D4, "Member 'UVolumetricCloudComponent::ReflectionViewSampleCountScaleValue' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ReflectionViewSampleCountScale) == 0x0002D8, "Member 'UVolumetricCloudComponent::ReflectionViewSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ReflectionSampleCountScale) == 0x0002DC, "Member 'UVolumetricCloudComponent::ReflectionSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ShadowViewSampleCountScale) == 0x0002E0, "Member 'UVolumetricCloudComponent::ShadowViewSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ShadowReflectionViewSampleCountScaleValue) == 0x0002E4, "Member 'UVolumetricCloudComponent::ShadowReflectionViewSampleCountScaleValue' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ShadowReflectionViewSampleCountScale) == 0x0002E8, "Member 'UVolumetricCloudComponent::ShadowReflectionViewSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ShadowReflectionSampleCountScale) == 0x0002EC, "Member 'UVolumetricCloudComponent::ShadowReflectionSampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, ShadowTracingDistance) == 0x0002F0, "Member 'UVolumetricCloudComponent::ShadowTracingDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, StopTracingTransmittanceThreshold) == 0x0002F4, "Member 'UVolumetricCloudComponent::StopTracingTransmittanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, AerialPespectiveRayleighScatteringStartDistance) == 0x0002F8, "Member 'UVolumetricCloudComponent::AerialPespectiveRayleighScatteringStartDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, AerialPespectiveRayleighScatteringFadeDistance) == 0x0002FC, "Member 'UVolumetricCloudComponent::AerialPespectiveRayleighScatteringFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, AerialPespectiveMieScatteringStartDistance) == 0x000300, "Member 'UVolumetricCloudComponent::AerialPespectiveMieScatteringStartDistance' has a wrong offset!"); \ +static_assert(offsetof(UVolumetricCloudComponent, AerialPespectiveMieScatteringFadeDistance) == 0x000304, "Member 'UVolumetricCloudComponent::AerialPespectiveMieScatteringFadeDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModulePivotOffset \ +static_assert(alignof(UParticleModulePivotOffset) == 0x000008, "Wrong alignment on UParticleModulePivotOffset"); \ +static_assert(sizeof(UParticleModulePivotOffset) == 0x000040, "Wrong size on UParticleModulePivotOffset"); \ +static_assert(offsetof(UParticleModulePivotOffset, PivotOffset) == 0x000030, "Member 'UParticleModulePivotOffset::PivotOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRequired \ +static_assert(alignof(UParticleModuleRequired) == 0x000008, "Wrong alignment on UParticleModuleRequired"); \ +static_assert(sizeof(UParticleModuleRequired) == 0x000178, "Wrong size on UParticleModuleRequired"); \ +static_assert(offsetof(UParticleModuleRequired, Material) == 0x000030, "Member 'UParticleModuleRequired::Material' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, MinFacingCameraBlendDistance) == 0x000038, "Member 'UParticleModuleRequired::MinFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, MaxFacingCameraBlendDistance) == 0x00003C, "Member 'UParticleModuleRequired::MaxFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterOrigin) == 0x000040, "Member 'UParticleModuleRequired::EmitterOrigin' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterRotation) == 0x000058, "Member 'UParticleModuleRequired::EmitterRotation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, ScreenAlignment) == 0x000070, "Member 'UParticleModuleRequired::ScreenAlignment' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, SortMode) == 0x000072, "Member 'UParticleModuleRequired::SortMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterDuration) == 0x000074, "Member 'UParticleModuleRequired::EmitterDuration' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, SpawnRate) == 0x000078, "Member 'UParticleModuleRequired::SpawnRate' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, BurstList) == 0x0000A8, "Member 'UParticleModuleRequired::BurstList' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterDelay) == 0x0000B8, "Member 'UParticleModuleRequired::EmitterDelay' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterDelayLow) == 0x0000BC, "Member 'UParticleModuleRequired::EmitterDelayLow' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, InterpolationMethod) == 0x0000C1, "Member 'UParticleModuleRequired::InterpolationMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, ParticleBurstMethod) == 0x0000C3, "Member 'UParticleModuleRequired::ParticleBurstMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, OpacitySourceMode) == 0x0000C5, "Member 'UParticleModuleRequired::OpacitySourceMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterNormalsMode) == 0x0000C6, "Member 'UParticleModuleRequired::EmitterNormalsMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, SubImages_Horizontal) == 0x0000C8, "Member 'UParticleModuleRequired::SubImages_Horizontal' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, SubImages_Vertical) == 0x0000CC, "Member 'UParticleModuleRequired::SubImages_Vertical' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, RandomImageTime) == 0x0000D0, "Member 'UParticleModuleRequired::RandomImageTime' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, RandomImageChanges) == 0x0000D4, "Member 'UParticleModuleRequired::RandomImageChanges' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, MacroUVPosition) == 0x0000D8, "Member 'UParticleModuleRequired::MacroUVPosition' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, MacroUVRadius) == 0x0000F0, "Member 'UParticleModuleRequired::MacroUVRadius' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, UVFlippingMode) == 0x0000F4, "Member 'UParticleModuleRequired::UVFlippingMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, BoundingMode) == 0x0000F5, "Member 'UParticleModuleRequired::BoundingMode' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, NormalsSphereCenter) == 0x0000F8, "Member 'UParticleModuleRequired::NormalsSphereCenter' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, AlphaThreshold) == 0x000110, "Member 'UParticleModuleRequired::AlphaThreshold' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterLoops) == 0x000114, "Member 'UParticleModuleRequired::EmitterLoops' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, CutoutTexture) == 0x000118, "Member 'UParticleModuleRequired::CutoutTexture' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, MaxDrawCount) == 0x000120, "Member 'UParticleModuleRequired::MaxDrawCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, EmitterDurationLow) == 0x000124, "Member 'UParticleModuleRequired::EmitterDurationLow' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, NormalsCylinderDirection) == 0x000128, "Member 'UParticleModuleRequired::NormalsCylinderDirection' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleRequired, NamedMaterialOverrides) == 0x000140, "Member 'UParticleModuleRequired::NamedMaterialOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotation \ +static_assert(alignof(UParticleModuleRotation) == 0x000008, "Wrong alignment on UParticleModuleRotation"); \ +static_assert(sizeof(UParticleModuleRotation) == 0x000060, "Wrong size on UParticleModuleRotation"); \ +static_assert(offsetof(UParticleModuleRotation, StartRotation) == 0x000030, "Member 'UParticleModuleRotation::StartRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationOverLifetime \ +static_assert(alignof(UParticleModuleRotationOverLifetime) == 0x000008, "Wrong alignment on UParticleModuleRotationOverLifetime"); \ +static_assert(sizeof(UParticleModuleRotationOverLifetime) == 0x000068, "Wrong size on UParticleModuleRotationOverLifetime"); \ +static_assert(offsetof(UParticleModuleRotationOverLifetime, RotationOverLife) == 0x000030, "Member 'UParticleModuleRotationOverLifetime::RotationOverLife' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveTable \ +static_assert(alignof(UCurveTable) == 0x000008, "Wrong alignment on UCurveTable"); \ +static_assert(sizeof(UCurveTable) == 0x0000A0, "Wrong size on UCurveTable"); \ + +#define DUMPER7_ASSERTS_UCompositeCurveTable \ +static_assert(alignof(UCompositeCurveTable) == 0x000008, "Wrong alignment on UCompositeCurveTable"); \ +static_assert(sizeof(UCompositeCurveTable) == 0x0000C8, "Wrong size on UCompositeCurveTable"); \ +static_assert(offsetof(UCompositeCurveTable, ParentTables) == 0x0000A0, "Member 'UCompositeCurveTable::ParentTables' has a wrong offset!"); \ +static_assert(offsetof(UCompositeCurveTable, OldParentTables) == 0x0000B0, "Member 'UCompositeCurveTable::OldParentTables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationRate \ +static_assert(alignof(UParticleModuleRotationRate) == 0x000008, "Wrong alignment on UParticleModuleRotationRate"); \ +static_assert(sizeof(UParticleModuleRotationRate) == 0x000060, "Wrong size on UParticleModuleRotationRate"); \ +static_assert(offsetof(UParticleModuleRotationRate, StartRotationRate) == 0x000030, "Member 'UParticleModuleRotationRate::StartRotationRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationRateMultiplyLife \ +static_assert(alignof(UParticleModuleRotationRateMultiplyLife) == 0x000008, "Wrong alignment on UParticleModuleRotationRateMultiplyLife"); \ +static_assert(sizeof(UParticleModuleRotationRateMultiplyLife) == 0x000060, "Wrong size on UParticleModuleRotationRateMultiplyLife"); \ +static_assert(offsetof(UParticleModuleRotationRateMultiplyLife, LifeMultiplier) == 0x000030, "Member 'UParticleModuleRotationRateMultiplyLife::LifeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotationRate_Seeded \ +static_assert(alignof(UParticleModuleRotationRate_Seeded) == 0x000008, "Wrong alignment on UParticleModuleRotationRate_Seeded"); \ +static_assert(sizeof(UParticleModuleRotationRate_Seeded) == 0x000080, "Wrong size on UParticleModuleRotationRate_Seeded"); \ +static_assert(offsetof(UParticleModuleRotationRate_Seeded, RandomSeedInfo) == 0x000060, "Member 'UParticleModuleRotationRate_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleRotation_Seeded \ +static_assert(alignof(UParticleModuleRotation_Seeded) == 0x000008, "Wrong alignment on UParticleModuleRotation_Seeded"); \ +static_assert(sizeof(UParticleModuleRotation_Seeded) == 0x000080, "Wrong size on UParticleModuleRotation_Seeded"); \ +static_assert(offsetof(UParticleModuleRotation_Seeded, RandomSeedInfo) == 0x000060, "Member 'UParticleModuleRotation_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClassCookedMetaData \ +static_assert(alignof(UClassCookedMetaData) == 0x000008, "Wrong alignment on UClassCookedMetaData"); \ +static_assert(sizeof(UClassCookedMetaData) == 0x000118, "Wrong size on UClassCookedMetaData"); \ +static_assert(offsetof(UClassCookedMetaData, ClassMetaData) == 0x000028, "Member 'UClassCookedMetaData::ClassMetaData' has a wrong offset!"); \ +static_assert(offsetof(UClassCookedMetaData, FunctionsMetaData) == 0x0000C8, "Member 'UClassCookedMetaData::FunctionsMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSizeBase \ +static_assert(alignof(UParticleModuleSizeBase) == 0x000008, "Wrong alignment on UParticleModuleSizeBase"); \ +static_assert(sizeof(UParticleModuleSizeBase) == 0x000030, "Wrong size on UParticleModuleSizeBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSize \ +static_assert(alignof(UParticleModuleSize) == 0x000008, "Wrong alignment on UParticleModuleSize"); \ +static_assert(sizeof(UParticleModuleSize) == 0x000090, "Wrong size on UParticleModuleSize"); \ +static_assert(offsetof(UParticleModuleSize, StartSize) == 0x000030, "Member 'UParticleModuleSize::StartSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSizeMultiplyLife \ +static_assert(alignof(UParticleModuleSizeMultiplyLife) == 0x000008, "Wrong alignment on UParticleModuleSizeMultiplyLife"); \ +static_assert(sizeof(UParticleModuleSizeMultiplyLife) == 0x000098, "Wrong size on UParticleModuleSizeMultiplyLife"); \ +static_assert(offsetof(UParticleModuleSizeMultiplyLife, LifeMultiplier) == 0x000030, "Member 'UParticleModuleSizeMultiplyLife::LifeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSizeScale \ +static_assert(alignof(UParticleModuleSizeScale) == 0x000008, "Wrong alignment on UParticleModuleSizeScale"); \ +static_assert(sizeof(UParticleModuleSizeScale) == 0x000098, "Wrong size on UParticleModuleSizeScale"); \ +static_assert(offsetof(UParticleModuleSizeScale, SizeScale) == 0x000030, "Member 'UParticleModuleSizeScale::SizeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPoseWatchFolder \ +static_assert(alignof(UPoseWatchFolder) == 0x000008, "Wrong alignment on UPoseWatchFolder"); \ +static_assert(sizeof(UPoseWatchFolder) == 0x000028, "Wrong size on UPoseWatchFolder"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSizeScaleBySpeed \ +static_assert(alignof(UParticleModuleSizeScaleBySpeed) == 0x000008, "Wrong alignment on UParticleModuleSizeScaleBySpeed"); \ +static_assert(sizeof(UParticleModuleSizeScaleBySpeed) == 0x000050, "Wrong size on UParticleModuleSizeScaleBySpeed"); \ +static_assert(offsetof(UParticleModuleSizeScaleBySpeed, SpeedScale) == 0x000030, "Member 'UParticleModuleSizeScaleBySpeed::SpeedScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSizeScaleBySpeed, MaxScale) == 0x000040, "Member 'UParticleModuleSizeScaleBySpeed::MaxScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSize_Seeded \ +static_assert(alignof(UParticleModuleSize_Seeded) == 0x000008, "Wrong alignment on UParticleModuleSize_Seeded"); \ +static_assert(sizeof(UParticleModuleSize_Seeded) == 0x0000B0, "Wrong size on UParticleModuleSize_Seeded"); \ +static_assert(offsetof(UParticleModuleSize_Seeded, RandomSeedInfo) == 0x000090, "Member 'UParticleModuleSize_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSourceMovement \ +static_assert(alignof(UParticleModuleSourceMovement) == 0x000008, "Wrong alignment on UParticleModuleSourceMovement"); \ +static_assert(sizeof(UParticleModuleSourceMovement) == 0x000090, "Wrong size on UParticleModuleSourceMovement"); \ +static_assert(offsetof(UParticleModuleSourceMovement, SourceMovementScale) == 0x000030, "Member 'UParticleModuleSourceMovement::SourceMovementScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSpawnBase \ +static_assert(alignof(UParticleModuleSpawnBase) == 0x000008, "Wrong alignment on UParticleModuleSpawnBase"); \ +static_assert(sizeof(UParticleModuleSpawnBase) == 0x000038, "Wrong size on UParticleModuleSpawnBase"); \ + +#define DUMPER7_ASSERTS_AServerStatReplicator \ +static_assert(alignof(AServerStatReplicator) == 0x000008, "Wrong alignment on AServerStatReplicator"); \ +static_assert(sizeof(AServerStatReplicator) == 0x000360, "Wrong size on AServerStatReplicator"); \ +static_assert(offsetof(AServerStatReplicator, bUpdateStatNet) == 0x000298, "Member 'AServerStatReplicator::bUpdateStatNet' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, bOverwriteClientStats) == 0x000299, "Member 'AServerStatReplicator::bOverwriteClientStats' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, Channels) == 0x00029C, "Member 'AServerStatReplicator::Channels' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InRate) == 0x0002A0, "Member 'AServerStatReplicator::InRate' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutRate) == 0x0002A4, "Member 'AServerStatReplicator::OutRate' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, MaxPacketOverhead) == 0x0002AC, "Member 'AServerStatReplicator::MaxPacketOverhead' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InRateClientMax) == 0x0002B0, "Member 'AServerStatReplicator::InRateClientMax' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InRateClientMin) == 0x0002B4, "Member 'AServerStatReplicator::InRateClientMin' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InRateClientAvg) == 0x0002B8, "Member 'AServerStatReplicator::InRateClientAvg' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InPacketsClientMax) == 0x0002BC, "Member 'AServerStatReplicator::InPacketsClientMax' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InPacketsClientMin) == 0x0002C0, "Member 'AServerStatReplicator::InPacketsClientMin' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InPacketsClientAvg) == 0x0002C4, "Member 'AServerStatReplicator::InPacketsClientAvg' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutRateClientMax) == 0x0002C8, "Member 'AServerStatReplicator::OutRateClientMax' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutRateClientMin) == 0x0002CC, "Member 'AServerStatReplicator::OutRateClientMin' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutRateClientAvg) == 0x0002D0, "Member 'AServerStatReplicator::OutRateClientAvg' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutPacketsClientMax) == 0x0002D4, "Member 'AServerStatReplicator::OutPacketsClientMax' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutPacketsClientMin) == 0x0002D8, "Member 'AServerStatReplicator::OutPacketsClientMin' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutPacketsClientAvg) == 0x0002DC, "Member 'AServerStatReplicator::OutPacketsClientAvg' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NetNumClients) == 0x0002E0, "Member 'AServerStatReplicator::NetNumClients' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InPackets) == 0x0002E4, "Member 'AServerStatReplicator::InPackets' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutPackets) == 0x0002E8, "Member 'AServerStatReplicator::OutPackets' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InBunches) == 0x0002EC, "Member 'AServerStatReplicator::InBunches' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutBunches) == 0x0002F0, "Member 'AServerStatReplicator::OutBunches' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, OutLoss) == 0x0002F4, "Member 'AServerStatReplicator::OutLoss' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, InLoss) == 0x0002F8, "Member 'AServerStatReplicator::InLoss' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, VoiceBytesSent) == 0x0002FC, "Member 'AServerStatReplicator::VoiceBytesSent' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, VoiceBytesRecv) == 0x000300, "Member 'AServerStatReplicator::VoiceBytesRecv' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, VoicePacketsSent) == 0x000304, "Member 'AServerStatReplicator::VoicePacketsSent' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, VoicePacketsRecv) == 0x000308, "Member 'AServerStatReplicator::VoicePacketsRecv' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, PercentInVoice) == 0x00030C, "Member 'AServerStatReplicator::PercentInVoice' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, PercentOutVoice) == 0x000310, "Member 'AServerStatReplicator::PercentOutVoice' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumActorChannels) == 0x000314, "Member 'AServerStatReplicator::NumActorChannels' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumConsideredActors) == 0x000318, "Member 'AServerStatReplicator::NumConsideredActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, PrioritizedActors) == 0x00031C, "Member 'AServerStatReplicator::PrioritizedActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumRelevantActors) == 0x000320, "Member 'AServerStatReplicator::NumRelevantActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumRelevantDeletedActors) == 0x000324, "Member 'AServerStatReplicator::NumRelevantDeletedActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumReplicatedActorAttempts) == 0x000328, "Member 'AServerStatReplicator::NumReplicatedActorAttempts' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumReplicatedActors) == 0x00032C, "Member 'AServerStatReplicator::NumReplicatedActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumActors) == 0x000330, "Member 'AServerStatReplicator::NumActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumNetActors) == 0x000334, "Member 'AServerStatReplicator::NumNetActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumDormantActors) == 0x000338, "Member 'AServerStatReplicator::NumDormantActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumInitiallyDormantActors) == 0x00033C, "Member 'AServerStatReplicator::NumInitiallyDormantActors' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumNetGUIDsAckd) == 0x000340, "Member 'AServerStatReplicator::NumNetGUIDsAckd' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumNetGUIDsPending) == 0x000344, "Member 'AServerStatReplicator::NumNetGUIDsPending' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NumNetGUIDsUnAckd) == 0x000348, "Member 'AServerStatReplicator::NumNetGUIDsUnAckd' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, ObjPathBytes) == 0x00034C, "Member 'AServerStatReplicator::ObjPathBytes' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NetGUIDOutRate) == 0x000350, "Member 'AServerStatReplicator::NetGUIDOutRate' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NetGUIDInRate) == 0x000354, "Member 'AServerStatReplicator::NetGUIDInRate' has a wrong offset!"); \ +static_assert(offsetof(AServerStatReplicator, NetSaturated) == 0x000358, "Member 'AServerStatReplicator::NetSaturated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSpawn \ +static_assert(alignof(UParticleModuleSpawn) == 0x000008, "Wrong alignment on UParticleModuleSpawn"); \ +static_assert(sizeof(UParticleModuleSpawn) == 0x0000E0, "Wrong size on UParticleModuleSpawn"); \ +static_assert(offsetof(UParticleModuleSpawn, Rate) == 0x000038, "Member 'UParticleModuleSpawn::Rate' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawn, RateScale) == 0x000068, "Member 'UParticleModuleSpawn::RateScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawn, BurstList) == 0x000098, "Member 'UParticleModuleSpawn::BurstList' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawn, BurstScale) == 0x0000A8, "Member 'UParticleModuleSpawn::BurstScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawn, ParticleBurstMethod) == 0x0000D8, "Member 'UParticleModuleSpawn::ParticleBurstMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSpawnPerUnit \ +static_assert(alignof(UParticleModuleSpawnPerUnit) == 0x000008, "Wrong alignment on UParticleModuleSpawnPerUnit"); \ +static_assert(sizeof(UParticleModuleSpawnPerUnit) == 0x000078, "Wrong size on UParticleModuleSpawnPerUnit"); \ +static_assert(offsetof(UParticleModuleSpawnPerUnit, UnitScalar) == 0x000038, "Member 'UParticleModuleSpawnPerUnit::UnitScalar' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawnPerUnit, MovementTolerance) == 0x00003C, "Member 'UParticleModuleSpawnPerUnit::MovementTolerance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawnPerUnit, SpawnPerUnit) == 0x000040, "Member 'UParticleModuleSpawnPerUnit::SpawnPerUnit' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSpawnPerUnit, MaxFrameDistance) == 0x000070, "Member 'UParticleModuleSpawnPerUnit::MaxFrameDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSubUVBase \ +static_assert(alignof(UParticleModuleSubUVBase) == 0x000008, "Wrong alignment on UParticleModuleSubUVBase"); \ +static_assert(sizeof(UParticleModuleSubUVBase) == 0x000030, "Wrong size on UParticleModuleSubUVBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSubUV \ +static_assert(alignof(UParticleModuleSubUV) == 0x000008, "Wrong alignment on UParticleModuleSubUV"); \ +static_assert(sizeof(UParticleModuleSubUV) == 0x000070, "Wrong size on UParticleModuleSubUV"); \ +static_assert(offsetof(UParticleModuleSubUV, Animation) == 0x000030, "Member 'UParticleModuleSubUV::Animation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSubUV, SubImageIndex) == 0x000038, "Member 'UParticleModuleSubUV::SubImageIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFont \ +static_assert(alignof(UFont) == 0x000008, "Wrong alignment on UFont"); \ +static_assert(sizeof(UFont) == 0x0001D0, "Wrong size on UFont"); \ +static_assert(offsetof(UFont, FontCacheType) == 0x000030, "Member 'UFont::FontCacheType' has a wrong offset!"); \ +static_assert(offsetof(UFont, Characters) == 0x000038, "Member 'UFont::Characters' has a wrong offset!"); \ +static_assert(offsetof(UFont, Textures) == 0x000048, "Member 'UFont::Textures' has a wrong offset!"); \ +static_assert(offsetof(UFont, IsRemapped) == 0x000058, "Member 'UFont::IsRemapped' has a wrong offset!"); \ +static_assert(offsetof(UFont, EmScale) == 0x00005C, "Member 'UFont::EmScale' has a wrong offset!"); \ +static_assert(offsetof(UFont, Ascent) == 0x000060, "Member 'UFont::Ascent' has a wrong offset!"); \ +static_assert(offsetof(UFont, Descent) == 0x000064, "Member 'UFont::Descent' has a wrong offset!"); \ +static_assert(offsetof(UFont, Leading) == 0x000068, "Member 'UFont::Leading' has a wrong offset!"); \ +static_assert(offsetof(UFont, Kerning) == 0x00006C, "Member 'UFont::Kerning' has a wrong offset!"); \ +static_assert(offsetof(UFont, ImportOptions) == 0x000070, "Member 'UFont::ImportOptions' has a wrong offset!"); \ +static_assert(offsetof(UFont, NumCharacters) == 0x000120, "Member 'UFont::NumCharacters' has a wrong offset!"); \ +static_assert(offsetof(UFont, MaxCharHeight) == 0x000128, "Member 'UFont::MaxCharHeight' has a wrong offset!"); \ +static_assert(offsetof(UFont, ScalingFactor) == 0x000138, "Member 'UFont::ScalingFactor' has a wrong offset!"); \ +static_assert(offsetof(UFont, LegacyFontSize) == 0x00013C, "Member 'UFont::LegacyFontSize' has a wrong offset!"); \ +static_assert(offsetof(UFont, LegacyFontName) == 0x000140, "Member 'UFont::LegacyFontName' has a wrong offset!"); \ +static_assert(offsetof(UFont, CompositeFont) == 0x000148, "Member 'UFont::CompositeFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleSubUVMovie \ +static_assert(alignof(UParticleModuleSubUVMovie) == 0x000008, "Wrong alignment on UParticleModuleSubUVMovie"); \ +static_assert(sizeof(UParticleModuleSubUVMovie) == 0x0000B0, "Wrong size on UParticleModuleSubUVMovie"); \ +static_assert(offsetof(UParticleModuleSubUVMovie, FrameRate) == 0x000078, "Member 'UParticleModuleSubUVMovie::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleSubUVMovie, StartingFrame) == 0x0000A8, "Member 'UParticleModuleSubUVMovie::StartingFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataBase \ +static_assert(alignof(UParticleModuleTypeDataBase) == 0x000008, "Wrong alignment on UParticleModuleTypeDataBase"); \ +static_assert(sizeof(UParticleModuleTypeDataBase) == 0x000030, "Wrong size on UParticleModuleTypeDataBase"); \ + +#define DUMPER7_ASSERTS_UForceFeedbackEffect \ +static_assert(alignof(UForceFeedbackEffect) == 0x000008, "Wrong alignment on UForceFeedbackEffect"); \ +static_assert(sizeof(UForceFeedbackEffect) == 0x0000A0, "Wrong size on UForceFeedbackEffect"); \ +static_assert(offsetof(UForceFeedbackEffect, ChannelDetails) == 0x000028, "Member 'UForceFeedbackEffect::ChannelDetails' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackEffect, PerDeviceOverrides) == 0x000038, "Member 'UForceFeedbackEffect::PerDeviceOverrides' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackEffect, DeviceProperties) == 0x000088, "Member 'UForceFeedbackEffect::DeviceProperties' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackEffect, Duration) == 0x000098, "Member 'UForceFeedbackEffect::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataAnimTrail \ +static_assert(alignof(UParticleModuleTypeDataAnimTrail) == 0x000008, "Wrong alignment on UParticleModuleTypeDataAnimTrail"); \ +static_assert(sizeof(UParticleModuleTypeDataAnimTrail) == 0x000048, "Wrong size on UParticleModuleTypeDataAnimTrail"); \ +static_assert(offsetof(UParticleModuleTypeDataAnimTrail, TilingDistance) == 0x000034, "Member 'UParticleModuleTypeDataAnimTrail::TilingDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataAnimTrail, DistanceTessellationStepSize) == 0x000038, "Member 'UParticleModuleTypeDataAnimTrail::DistanceTessellationStepSize' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataAnimTrail, TangentTessellationStepSize) == 0x00003C, "Member 'UParticleModuleTypeDataAnimTrail::TangentTessellationStepSize' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataAnimTrail, WidthTessellationStepSize) == 0x000040, "Member 'UParticleModuleTypeDataAnimTrail::WidthTessellationStepSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataBeam2 \ +static_assert(alignof(UParticleModuleTypeDataBeam2) == 0x000008, "Wrong alignment on UParticleModuleTypeDataBeam2"); \ +static_assert(sizeof(UParticleModuleTypeDataBeam2) == 0x000150, "Wrong size on UParticleModuleTypeDataBeam2"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, BeamMethod) == 0x000030, "Member 'UParticleModuleTypeDataBeam2::BeamMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, TextureTile) == 0x000034, "Member 'UParticleModuleTypeDataBeam2::TextureTile' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, TextureTileDistance) == 0x000038, "Member 'UParticleModuleTypeDataBeam2::TextureTileDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, Sheets) == 0x00003C, "Member 'UParticleModuleTypeDataBeam2::Sheets' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, MaxBeamCount) == 0x000040, "Member 'UParticleModuleTypeDataBeam2::MaxBeamCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, Speed) == 0x000044, "Member 'UParticleModuleTypeDataBeam2::Speed' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, InterpolationPoints) == 0x000048, "Member 'UParticleModuleTypeDataBeam2::InterpolationPoints' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, UpVectorStepSize) == 0x000050, "Member 'UParticleModuleTypeDataBeam2::UpVectorStepSize' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, BranchParentName) == 0x000054, "Member 'UParticleModuleTypeDataBeam2::BranchParentName' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, Distance) == 0x000060, "Member 'UParticleModuleTypeDataBeam2::Distance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, TaperMethod) == 0x000090, "Member 'UParticleModuleTypeDataBeam2::TaperMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, TaperFactor) == 0x000098, "Member 'UParticleModuleTypeDataBeam2::TaperFactor' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataBeam2, TaperScale) == 0x0000C8, "Member 'UParticleModuleTypeDataBeam2::TaperScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataGpu \ +static_assert(alignof(UParticleModuleTypeDataGpu) == 0x000010, "Wrong alignment on UParticleModuleTypeDataGpu"); \ +static_assert(sizeof(UParticleModuleTypeDataGpu) == 0x0005D0, "Wrong size on UParticleModuleTypeDataGpu"); \ +static_assert(offsetof(UParticleModuleTypeDataGpu, EmitterInfo) == 0x000030, "Member 'UParticleModuleTypeDataGpu::EmitterInfo' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataGpu, ResourceData) == 0x000380, "Member 'UParticleModuleTypeDataGpu::ResourceData' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataGpu, CameraMotionBlurAmount) == 0x0005C0, "Member 'UParticleModuleTypeDataGpu::CameraMotionBlurAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimDataModel \ +static_assert(alignof(UAnimDataModel) == 0x000008, "Wrong alignment on UAnimDataModel"); \ +static_assert(sizeof(UAnimDataModel) == 0x0000C8, "Wrong size on UAnimDataModel"); \ +static_assert(offsetof(UAnimDataModel, BracketCounter) == 0x000030, "Member 'UAnimDataModel::BracketCounter' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, ModifiedEventDynamic) == 0x000038, "Member 'UAnimDataModel::ModifiedEventDynamic' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, BoneAnimationTracks) == 0x000060, "Member 'UAnimDataModel::BoneAnimationTracks' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, PlayLength) == 0x000070, "Member 'UAnimDataModel::PlayLength' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, FrameRate) == 0x000074, "Member 'UAnimDataModel::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, NumberOfFrames) == 0x00007C, "Member 'UAnimDataModel::NumberOfFrames' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, NumberOfKeys) == 0x000080, "Member 'UAnimDataModel::NumberOfKeys' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, CurveData) == 0x000088, "Member 'UAnimDataModel::CurveData' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, AnimatedBoneAttributes) == 0x0000A8, "Member 'UAnimDataModel::AnimatedBoneAttributes' has a wrong offset!"); \ +static_assert(offsetof(UAnimDataModel, bPopulated) == 0x0000B8, "Member 'UAnimDataModel::bPopulated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataMesh \ +static_assert(alignof(UParticleModuleTypeDataMesh) == 0x000008, "Wrong alignment on UParticleModuleTypeDataMesh"); \ +static_assert(sizeof(UParticleModuleTypeDataMesh) == 0x0000B0, "Wrong size on UParticleModuleTypeDataMesh"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, Mesh) == 0x000030, "Member 'UParticleModuleTypeDataMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, LODSizeScale) == 0x000040, "Member 'UParticleModuleTypeDataMesh::LODSizeScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, MeshAlignment) == 0x000045, "Member 'UParticleModuleTypeDataMesh::MeshAlignment' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, RollPitchYawRange) == 0x000048, "Member 'UParticleModuleTypeDataMesh::RollPitchYawRange' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, AxisLockOption) == 0x0000A8, "Member 'UParticleModuleTypeDataMesh::AxisLockOption' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, CameraFacingUpAxisOption) == 0x0000AA, "Member 'UParticleModuleTypeDataMesh::CameraFacingUpAxisOption' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataMesh, CameraFacingOption) == 0x0000AB, "Member 'UParticleModuleTypeDataMesh::CameraFacingOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleTypeDataRibbon \ +static_assert(alignof(UParticleModuleTypeDataRibbon) == 0x000008, "Wrong alignment on UParticleModuleTypeDataRibbon"); \ +static_assert(sizeof(UParticleModuleTypeDataRibbon) == 0x000060, "Wrong size on UParticleModuleTypeDataRibbon"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, MaxTessellationBetweenParticles) == 0x000030, "Member 'UParticleModuleTypeDataRibbon::MaxTessellationBetweenParticles' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, SheetsPerTrail) == 0x000034, "Member 'UParticleModuleTypeDataRibbon::SheetsPerTrail' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, MaxTrailCount) == 0x000038, "Member 'UParticleModuleTypeDataRibbon::MaxTrailCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, MaxParticleInTrailCount) == 0x00003C, "Member 'UParticleModuleTypeDataRibbon::MaxParticleInTrailCount' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, RenderAxis) == 0x000044, "Member 'UParticleModuleTypeDataRibbon::RenderAxis' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, TangentSpawningScalar) == 0x000048, "Member 'UParticleModuleTypeDataRibbon::TangentSpawningScalar' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, TilingDistance) == 0x000050, "Member 'UParticleModuleTypeDataRibbon::TilingDistance' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, DistanceTessellationStepSize) == 0x000054, "Member 'UParticleModuleTypeDataRibbon::DistanceTessellationStepSize' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleTypeDataRibbon, TangentTessellationScalar) == 0x00005C, "Member 'UParticleModuleTypeDataRibbon::TangentTessellationScalar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldBase \ +static_assert(alignof(UParticleModuleVectorFieldBase) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldBase"); \ +static_assert(sizeof(UParticleModuleVectorFieldBase) == 0x000030, "Wrong size on UParticleModuleVectorFieldBase"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldGlobal \ +static_assert(alignof(UParticleModuleVectorFieldGlobal) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldGlobal"); \ +static_assert(sizeof(UParticleModuleVectorFieldGlobal) == 0x000040, "Wrong size on UParticleModuleVectorFieldGlobal"); \ +static_assert(offsetof(UParticleModuleVectorFieldGlobal, GlobalVectorFieldScale) == 0x000034, "Member 'UParticleModuleVectorFieldGlobal::GlobalVectorFieldScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldGlobal, GlobalVectorFieldTightness) == 0x000038, "Member 'UParticleModuleVectorFieldGlobal::GlobalVectorFieldTightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable \ +static_assert(alignof(AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable) == 0x000008, "Wrong alignment on AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable"); \ +static_assert(sizeof(AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable) == 0x000038, "Wrong size on AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable"); \ +static_assert(offsetof(AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable, EventReference) == 0x000000, "Member 'AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable, ReturnValue) == 0x000030, "Member 'AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation \ +static_assert(alignof(AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation) == 0x000008, "Wrong alignment on AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation"); \ +static_assert(sizeof(AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation) == 0x000038, "Wrong size on AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation"); \ +static_assert(offsetof(AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation, EventReference) == 0x000000, "Member 'AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation, ReturnValue) == 0x000030, "Member 'AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyMirrorInspectionLibrary \ +static_assert(alignof(UAnimNotifyMirrorInspectionLibrary) == 0x000008, "Wrong alignment on UAnimNotifyMirrorInspectionLibrary"); \ +static_assert(sizeof(UAnimNotifyMirrorInspectionLibrary) == 0x000028, "Wrong size on UAnimNotifyMirrorInspectionLibrary"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldLocal \ +static_assert(alignof(UParticleModuleVectorFieldLocal) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldLocal"); \ +static_assert(sizeof(UParticleModuleVectorFieldLocal) == 0x000090, "Wrong size on UParticleModuleVectorFieldLocal"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, VectorField) == 0x000030, "Member 'UParticleModuleVectorFieldLocal::VectorField' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, RelativeTranslation) == 0x000038, "Member 'UParticleModuleVectorFieldLocal::RelativeTranslation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, RelativeRotation) == 0x000050, "Member 'UParticleModuleVectorFieldLocal::RelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, RelativeScale3D) == 0x000068, "Member 'UParticleModuleVectorFieldLocal::RelativeScale3D' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, Intensity) == 0x000080, "Member 'UParticleModuleVectorFieldLocal::Intensity' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldLocal, Tightness) == 0x000084, "Member 'UParticleModuleVectorFieldLocal::Tightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldRotation \ +static_assert(alignof(UParticleModuleVectorFieldRotation) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldRotation"); \ +static_assert(sizeof(UParticleModuleVectorFieldRotation) == 0x000060, "Wrong size on UParticleModuleVectorFieldRotation"); \ +static_assert(offsetof(UParticleModuleVectorFieldRotation, MinInitialRotation) == 0x000030, "Member 'UParticleModuleVectorFieldRotation::MinInitialRotation' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldRotation, MaxInitialRotation) == 0x000048, "Member 'UParticleModuleVectorFieldRotation::MaxInitialRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldRotationRate \ +static_assert(alignof(UParticleModuleVectorFieldRotationRate) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldRotationRate"); \ +static_assert(sizeof(UParticleModuleVectorFieldRotationRate) == 0x000048, "Wrong size on UParticleModuleVectorFieldRotationRate"); \ +static_assert(offsetof(UParticleModuleVectorFieldRotationRate, RotationRate) == 0x000030, "Member 'UParticleModuleVectorFieldRotationRate::RotationRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldScale \ +static_assert(alignof(UParticleModuleVectorFieldScale) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldScale"); \ +static_assert(sizeof(UParticleModuleVectorFieldScale) == 0x000068, "Wrong size on UParticleModuleVectorFieldScale"); \ +static_assert(offsetof(UParticleModuleVectorFieldScale, VectorFieldScale) == 0x000030, "Member 'UParticleModuleVectorFieldScale::VectorFieldScale' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldScale, VectorFieldScaleRaw) == 0x000038, "Member 'UParticleModuleVectorFieldScale::VectorFieldScaleRaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_Trail_OverridePSTemplate \ +static_assert(alignof(AnimNotifyState_Trail_OverridePSTemplate) == 0x000008, "Wrong alignment on AnimNotifyState_Trail_OverridePSTemplate"); \ +static_assert(sizeof(AnimNotifyState_Trail_OverridePSTemplate) == 0x000018, "Wrong size on AnimNotifyState_Trail_OverridePSTemplate"); \ +static_assert(offsetof(AnimNotifyState_Trail_OverridePSTemplate, MeshComp) == 0x000000, "Member 'AnimNotifyState_Trail_OverridePSTemplate::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Trail_OverridePSTemplate, Animation) == 0x000008, "Member 'AnimNotifyState_Trail_OverridePSTemplate::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_Trail_OverridePSTemplate, ReturnValue) == 0x000010, "Member 'AnimNotifyState_Trail_OverridePSTemplate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_Trail \ +static_assert(alignof(UAnimNotifyState_Trail) == 0x000008, "Wrong alignment on UAnimNotifyState_Trail"); \ +static_assert(sizeof(UAnimNotifyState_Trail) == 0x000058, "Wrong size on UAnimNotifyState_Trail"); \ +static_assert(offsetof(UAnimNotifyState_Trail, PSTemplate) == 0x000030, "Member 'UAnimNotifyState_Trail::PSTemplate' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_Trail, FirstSocketName) == 0x000038, "Member 'UAnimNotifyState_Trail::FirstSocketName' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_Trail, SecondSocketName) == 0x000040, "Member 'UAnimNotifyState_Trail::SecondSocketName' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_Trail, WidthScaleMode) == 0x000048, "Member 'UAnimNotifyState_Trail::WidthScaleMode' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_Trail, WidthScaleCurve) == 0x00004C, "Member 'UAnimNotifyState_Trail::WidthScaleCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVectorFieldScaleOverLife \ +static_assert(alignof(UParticleModuleVectorFieldScaleOverLife) == 0x000008, "Wrong alignment on UParticleModuleVectorFieldScaleOverLife"); \ +static_assert(sizeof(UParticleModuleVectorFieldScaleOverLife) == 0x000068, "Wrong size on UParticleModuleVectorFieldScaleOverLife"); \ +static_assert(offsetof(UParticleModuleVectorFieldScaleOverLife, VectorFieldScaleOverLife) == 0x000030, "Member 'UParticleModuleVectorFieldScaleOverLife::VectorFieldScaleOverLife' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVectorFieldScaleOverLife, VectorFieldScaleOverLifeRaw) == 0x000038, "Member 'UParticleModuleVectorFieldScaleOverLife::VectorFieldScaleOverLifeRaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocityBase \ +static_assert(alignof(UParticleModuleVelocityBase) == 0x000008, "Wrong alignment on UParticleModuleVelocityBase"); \ +static_assert(sizeof(UParticleModuleVelocityBase) == 0x000038, "Wrong size on UParticleModuleVelocityBase"); \ + +#define DUMPER7_ASSERTS_AWorldPartitionVolume \ +static_assert(alignof(AWorldPartitionVolume) == 0x000008, "Wrong alignment on AWorldPartitionVolume"); \ +static_assert(sizeof(AWorldPartitionVolume) == 0x0002D0, "Wrong size on AWorldPartitionVolume"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocity \ +static_assert(alignof(UParticleModuleVelocity) == 0x000008, "Wrong alignment on UParticleModuleVelocity"); \ +static_assert(sizeof(UParticleModuleVelocity) == 0x0000C8, "Wrong size on UParticleModuleVelocity"); \ +static_assert(offsetof(UParticleModuleVelocity, StartVelocity) == 0x000038, "Member 'UParticleModuleVelocity::StartVelocity' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVelocity, StartVelocityRadial) == 0x000098, "Member 'UParticleModuleVelocity::StartVelocityRadial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocityCone \ +static_assert(alignof(UParticleModuleVelocityCone) == 0x000008, "Wrong alignment on UParticleModuleVelocityCone"); \ +static_assert(sizeof(UParticleModuleVelocityCone) == 0x0000B0, "Wrong size on UParticleModuleVelocityCone"); \ +static_assert(offsetof(UParticleModuleVelocityCone, Angle) == 0x000038, "Member 'UParticleModuleVelocityCone::Angle' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVelocityCone, Velocity) == 0x000068, "Member 'UParticleModuleVelocityCone::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UParticleModuleVelocityCone, Direction) == 0x000098, "Member 'UParticleModuleVelocityCone::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_ResetClothingSimulation \ +static_assert(alignof(UAnimNotify_ResetClothingSimulation) == 0x000008, "Wrong alignment on UAnimNotify_ResetClothingSimulation"); \ +static_assert(sizeof(UAnimNotify_ResetClothingSimulation) == 0x000038, "Wrong size on UAnimNotify_ResetClothingSimulation"); \ + +#define DUMPER7_ASSERTS_IWorldPartitionCell \ +static_assert(alignof(IWorldPartitionCell) == 0x000001, "Wrong alignment on IWorldPartitionCell"); \ +static_assert(sizeof(IWorldPartitionCell) == 0x000001, "Wrong size on IWorldPartitionCell"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocityInheritParent \ +static_assert(alignof(UParticleModuleVelocityInheritParent) == 0x000008, "Wrong alignment on UParticleModuleVelocityInheritParent"); \ +static_assert(sizeof(UParticleModuleVelocityInheritParent) == 0x000098, "Wrong size on UParticleModuleVelocityInheritParent"); \ +static_assert(offsetof(UParticleModuleVelocityInheritParent, Scale) == 0x000038, "Member 'UParticleModuleVelocityInheritParent::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocityOverLifetime \ +static_assert(alignof(UParticleModuleVelocityOverLifetime) == 0x000008, "Wrong alignment on UParticleModuleVelocityOverLifetime"); \ +static_assert(sizeof(UParticleModuleVelocityOverLifetime) == 0x0000A0, "Wrong size on UParticleModuleVelocityOverLifetime"); \ +static_assert(offsetof(UParticleModuleVelocityOverLifetime, VelOverLife) == 0x000038, "Member 'UParticleModuleVelocityOverLifetime::VelOverLife' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleModuleVelocity_Seeded \ +static_assert(alignof(UParticleModuleVelocity_Seeded) == 0x000008, "Wrong alignment on UParticleModuleVelocity_Seeded"); \ +static_assert(sizeof(UParticleModuleVelocity_Seeded) == 0x0000E8, "Wrong size on UParticleModuleVelocity_Seeded"); \ +static_assert(offsetof(UParticleModuleVelocity_Seeded, RandomSeedInfo) == 0x0000C8, "Member 'UParticleModuleVelocity_Seeded::RandomSeedInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleSpriteEmitter \ +static_assert(alignof(UParticleSpriteEmitter) == 0x000008, "Wrong alignment on UParticleSpriteEmitter"); \ +static_assert(sizeof(UParticleSpriteEmitter) == 0x0001C0, "Wrong size on UParticleSpriteEmitter"); \ + +#define DUMPER7_ASSERTS_UCollisionProfile \ +static_assert(alignof(UCollisionProfile) == 0x000008, "Wrong alignment on UCollisionProfile"); \ +static_assert(sizeof(UCollisionProfile) == 0x000170, "Wrong size on UCollisionProfile"); \ +static_assert(offsetof(UCollisionProfile, Profiles) == 0x000038, "Member 'UCollisionProfile::Profiles' has a wrong offset!"); \ +static_assert(offsetof(UCollisionProfile, DefaultChannelResponses) == 0x000048, "Member 'UCollisionProfile::DefaultChannelResponses' has a wrong offset!"); \ +static_assert(offsetof(UCollisionProfile, EditProfiles) == 0x000058, "Member 'UCollisionProfile::EditProfiles' has a wrong offset!"); \ +static_assert(offsetof(UCollisionProfile, ProfileRedirects) == 0x000068, "Member 'UCollisionProfile::ProfileRedirects' has a wrong offset!"); \ +static_assert(offsetof(UCollisionProfile, CollisionChannelRedirects) == 0x000078, "Member 'UCollisionProfile::CollisionChannelRedirects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetActorParameter \ +static_assert(alignof(FXSystemComponent_SetActorParameter) == 0x000008, "Wrong alignment on FXSystemComponent_SetActorParameter"); \ +static_assert(sizeof(FXSystemComponent_SetActorParameter) == 0x000010, "Wrong size on FXSystemComponent_SetActorParameter"); \ +static_assert(offsetof(FXSystemComponent_SetActorParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetActorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetActorParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetActorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetAutoAttachmentParameters \ +static_assert(alignof(FXSystemComponent_SetAutoAttachmentParameters) == 0x000008, "Wrong alignment on FXSystemComponent_SetAutoAttachmentParameters"); \ +static_assert(sizeof(FXSystemComponent_SetAutoAttachmentParameters) == 0x000018, "Wrong size on FXSystemComponent_SetAutoAttachmentParameters"); \ +static_assert(offsetof(FXSystemComponent_SetAutoAttachmentParameters, Parent) == 0x000000, "Member 'FXSystemComponent_SetAutoAttachmentParameters::Parent' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetAutoAttachmentParameters, SocketName) == 0x000008, "Member 'FXSystemComponent_SetAutoAttachmentParameters::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetAutoAttachmentParameters, LocationRule) == 0x000010, "Member 'FXSystemComponent_SetAutoAttachmentParameters::LocationRule' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetAutoAttachmentParameters, RotationRule) == 0x000011, "Member 'FXSystemComponent_SetAutoAttachmentParameters::RotationRule' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetAutoAttachmentParameters, ScaleRule) == 0x000012, "Member 'FXSystemComponent_SetAutoAttachmentParameters::ScaleRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetBoolParameter \ +static_assert(alignof(FXSystemComponent_SetBoolParameter) == 0x000004, "Wrong alignment on FXSystemComponent_SetBoolParameter"); \ +static_assert(sizeof(FXSystemComponent_SetBoolParameter) == 0x00000C, "Wrong size on FXSystemComponent_SetBoolParameter"); \ +static_assert(offsetof(FXSystemComponent_SetBoolParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetBoolParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetBoolParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetBoolParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetColorParameter \ +static_assert(alignof(FXSystemComponent_SetColorParameter) == 0x000004, "Wrong alignment on FXSystemComponent_SetColorParameter"); \ +static_assert(sizeof(FXSystemComponent_SetColorParameter) == 0x000018, "Wrong size on FXSystemComponent_SetColorParameter"); \ +static_assert(offsetof(FXSystemComponent_SetColorParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetColorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetColorParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetColorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetEmitterEnable \ +static_assert(alignof(FXSystemComponent_SetEmitterEnable) == 0x000004, "Wrong alignment on FXSystemComponent_SetEmitterEnable"); \ +static_assert(sizeof(FXSystemComponent_SetEmitterEnable) == 0x00000C, "Wrong size on FXSystemComponent_SetEmitterEnable"); \ +static_assert(offsetof(FXSystemComponent_SetEmitterEnable, EmitterName) == 0x000000, "Member 'FXSystemComponent_SetEmitterEnable::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetEmitterEnable, bNewEnableState) == 0x000008, "Member 'FXSystemComponent_SetEmitterEnable::bNewEnableState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetFloatParameter \ +static_assert(alignof(FXSystemComponent_SetFloatParameter) == 0x000004, "Wrong alignment on FXSystemComponent_SetFloatParameter"); \ +static_assert(sizeof(FXSystemComponent_SetFloatParameter) == 0x00000C, "Wrong size on FXSystemComponent_SetFloatParameter"); \ +static_assert(offsetof(FXSystemComponent_SetFloatParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetFloatParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetFloatParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetFloatParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetIntParameter \ +static_assert(alignof(FXSystemComponent_SetIntParameter) == 0x000004, "Wrong alignment on FXSystemComponent_SetIntParameter"); \ +static_assert(sizeof(FXSystemComponent_SetIntParameter) == 0x00000C, "Wrong size on FXSystemComponent_SetIntParameter"); \ +static_assert(offsetof(FXSystemComponent_SetIntParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetIntParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetIntParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetIntParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetUseAutoManageAttachment \ +static_assert(alignof(FXSystemComponent_SetUseAutoManageAttachment) == 0x000001, "Wrong alignment on FXSystemComponent_SetUseAutoManageAttachment"); \ +static_assert(sizeof(FXSystemComponent_SetUseAutoManageAttachment) == 0x000001, "Wrong size on FXSystemComponent_SetUseAutoManageAttachment"); \ +static_assert(offsetof(FXSystemComponent_SetUseAutoManageAttachment, bAutoManage) == 0x000000, "Member 'FXSystemComponent_SetUseAutoManageAttachment::bAutoManage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_SetVectorParameter \ +static_assert(alignof(FXSystemComponent_SetVectorParameter) == 0x000008, "Wrong alignment on FXSystemComponent_SetVectorParameter"); \ +static_assert(sizeof(FXSystemComponent_SetVectorParameter) == 0x000020, "Wrong size on FXSystemComponent_SetVectorParameter"); \ +static_assert(offsetof(FXSystemComponent_SetVectorParameter, ParameterName) == 0x000000, "Member 'FXSystemComponent_SetVectorParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FXSystemComponent_SetVectorParameter, Param) == 0x000008, "Member 'FXSystemComponent_SetVectorParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXSystemComponent_GetFXSystemAsset \ +static_assert(alignof(FXSystemComponent_GetFXSystemAsset) == 0x000008, "Wrong alignment on FXSystemComponent_GetFXSystemAsset"); \ +static_assert(sizeof(FXSystemComponent_GetFXSystemAsset) == 0x000008, "Wrong size on FXSystemComponent_GetFXSystemAsset"); \ +static_assert(offsetof(FXSystemComponent_GetFXSystemAsset, ReturnValue) == 0x000000, "Member 'FXSystemComponent_GetFXSystemAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFXSystemComponent \ +static_assert(alignof(UFXSystemComponent) == 0x000010, "Wrong alignment on UFXSystemComponent"); \ +static_assert(sizeof(UFXSystemComponent) == 0x000570, "Wrong size on UFXSystemComponent"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_BeginTrails \ +static_assert(alignof(ParticleSystemComponent_BeginTrails) == 0x000004, "Wrong alignment on ParticleSystemComponent_BeginTrails"); \ +static_assert(sizeof(ParticleSystemComponent_BeginTrails) == 0x000018, "Wrong size on ParticleSystemComponent_BeginTrails"); \ +static_assert(offsetof(ParticleSystemComponent_BeginTrails, InFirstSocketName) == 0x000000, "Member 'ParticleSystemComponent_BeginTrails::InFirstSocketName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_BeginTrails, InSecondSocketName) == 0x000008, "Member 'ParticleSystemComponent_BeginTrails::InSecondSocketName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_BeginTrails, InWidthMode) == 0x000010, "Member 'ParticleSystemComponent_BeginTrails::InWidthMode' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_BeginTrails, InWidth) == 0x000014, "Member 'ParticleSystemComponent_BeginTrails::InWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_CreateNamedDynamicMaterialInstance \ +static_assert(alignof(ParticleSystemComponent_CreateNamedDynamicMaterialInstance) == 0x000008, "Wrong alignment on ParticleSystemComponent_CreateNamedDynamicMaterialInstance"); \ +static_assert(sizeof(ParticleSystemComponent_CreateNamedDynamicMaterialInstance) == 0x000018, "Wrong size on ParticleSystemComponent_CreateNamedDynamicMaterialInstance"); \ +static_assert(offsetof(ParticleSystemComponent_CreateNamedDynamicMaterialInstance, InName) == 0x000000, "Member 'ParticleSystemComponent_CreateNamedDynamicMaterialInstance::InName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_CreateNamedDynamicMaterialInstance, SourceMaterial) == 0x000008, "Member 'ParticleSystemComponent_CreateNamedDynamicMaterialInstance::SourceMaterial' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_CreateNamedDynamicMaterialInstance, ReturnValue) == 0x000010, "Member 'ParticleSystemComponent_CreateNamedDynamicMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GenerateParticleEvent \ +static_assert(alignof(ParticleSystemComponent_GenerateParticleEvent) == 0x000008, "Wrong alignment on ParticleSystemComponent_GenerateParticleEvent"); \ +static_assert(sizeof(ParticleSystemComponent_GenerateParticleEvent) == 0x000058, "Wrong size on ParticleSystemComponent_GenerateParticleEvent"); \ +static_assert(offsetof(ParticleSystemComponent_GenerateParticleEvent, InEventName) == 0x000000, "Member 'ParticleSystemComponent_GenerateParticleEvent::InEventName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GenerateParticleEvent, InEmitterTime) == 0x000008, "Member 'ParticleSystemComponent_GenerateParticleEvent::InEmitterTime' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GenerateParticleEvent, InLocation) == 0x000010, "Member 'ParticleSystemComponent_GenerateParticleEvent::InLocation' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GenerateParticleEvent, InDirection) == 0x000028, "Member 'ParticleSystemComponent_GenerateParticleEvent::InDirection' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GenerateParticleEvent, InVelocity) == 0x000040, "Member 'ParticleSystemComponent_GenerateParticleEvent::InVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetAutoAttachParams \ +static_assert(alignof(ParticleSystemComponent_SetAutoAttachParams) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetAutoAttachParams"); \ +static_assert(sizeof(ParticleSystemComponent_SetAutoAttachParams) == 0x000018, "Wrong size on ParticleSystemComponent_SetAutoAttachParams"); \ +static_assert(offsetof(ParticleSystemComponent_SetAutoAttachParams, Parent) == 0x000000, "Member 'ParticleSystemComponent_SetAutoAttachParams::Parent' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetAutoAttachParams, SocketName) == 0x000008, "Member 'ParticleSystemComponent_SetAutoAttachParams::SocketName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetAutoAttachParams, LocationType) == 0x000010, "Member 'ParticleSystemComponent_SetAutoAttachParams::LocationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamEndPoint \ +static_assert(alignof(ParticleSystemComponent_SetBeamEndPoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetBeamEndPoint"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamEndPoint) == 0x000020, "Wrong size on ParticleSystemComponent_SetBeamEndPoint"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamEndPoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamEndPoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamEndPoint, NewEndPoint) == 0x000008, "Member 'ParticleSystemComponent_SetBeamEndPoint::NewEndPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamSourcePoint \ +static_assert(alignof(ParticleSystemComponent_SetBeamSourcePoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetBeamSourcePoint"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamSourcePoint) == 0x000028, "Wrong size on ParticleSystemComponent_SetBeamSourcePoint"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourcePoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamSourcePoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourcePoint, NewSourcePoint) == 0x000008, "Member 'ParticleSystemComponent_SetBeamSourcePoint::NewSourcePoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourcePoint, SourceIndex) == 0x000020, "Member 'ParticleSystemComponent_SetBeamSourcePoint::SourceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamSourceStrength \ +static_assert(alignof(ParticleSystemComponent_SetBeamSourceStrength) == 0x000004, "Wrong alignment on ParticleSystemComponent_SetBeamSourceStrength"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamSourceStrength) == 0x00000C, "Wrong size on ParticleSystemComponent_SetBeamSourceStrength"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceStrength, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamSourceStrength::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceStrength, NewSourceStrength) == 0x000004, "Member 'ParticleSystemComponent_SetBeamSourceStrength::NewSourceStrength' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceStrength, SourceIndex) == 0x000008, "Member 'ParticleSystemComponent_SetBeamSourceStrength::SourceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamSourceTangent \ +static_assert(alignof(ParticleSystemComponent_SetBeamSourceTangent) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetBeamSourceTangent"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamSourceTangent) == 0x000028, "Wrong size on ParticleSystemComponent_SetBeamSourceTangent"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceTangent, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamSourceTangent::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceTangent, NewTangentPoint) == 0x000008, "Member 'ParticleSystemComponent_SetBeamSourceTangent::NewTangentPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamSourceTangent, SourceIndex) == 0x000020, "Member 'ParticleSystemComponent_SetBeamSourceTangent::SourceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamTargetPoint \ +static_assert(alignof(ParticleSystemComponent_SetBeamTargetPoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetBeamTargetPoint"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamTargetPoint) == 0x000028, "Wrong size on ParticleSystemComponent_SetBeamTargetPoint"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetPoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamTargetPoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetPoint, NewTargetPoint) == 0x000008, "Member 'ParticleSystemComponent_SetBeamTargetPoint::NewTargetPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetPoint, TargetIndex) == 0x000020, "Member 'ParticleSystemComponent_SetBeamTargetPoint::TargetIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamTargetStrength \ +static_assert(alignof(ParticleSystemComponent_SetBeamTargetStrength) == 0x000004, "Wrong alignment on ParticleSystemComponent_SetBeamTargetStrength"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamTargetStrength) == 0x00000C, "Wrong size on ParticleSystemComponent_SetBeamTargetStrength"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetStrength, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamTargetStrength::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetStrength, NewTargetStrength) == 0x000004, "Member 'ParticleSystemComponent_SetBeamTargetStrength::NewTargetStrength' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetStrength, TargetIndex) == 0x000008, "Member 'ParticleSystemComponent_SetBeamTargetStrength::TargetIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetBeamTargetTangent \ +static_assert(alignof(ParticleSystemComponent_SetBeamTargetTangent) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetBeamTargetTangent"); \ +static_assert(sizeof(ParticleSystemComponent_SetBeamTargetTangent) == 0x000028, "Wrong size on ParticleSystemComponent_SetBeamTargetTangent"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetTangent, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_SetBeamTargetTangent::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetTangent, NewTangentPoint) == 0x000008, "Member 'ParticleSystemComponent_SetBeamTargetTangent::NewTangentPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetBeamTargetTangent, TargetIndex) == 0x000020, "Member 'ParticleSystemComponent_SetBeamTargetTangent::TargetIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetMaterialParameter \ +static_assert(alignof(ParticleSystemComponent_SetMaterialParameter) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetMaterialParameter"); \ +static_assert(sizeof(ParticleSystemComponent_SetMaterialParameter) == 0x000010, "Wrong size on ParticleSystemComponent_SetMaterialParameter"); \ +static_assert(offsetof(ParticleSystemComponent_SetMaterialParameter, ParameterName) == 0x000000, "Member 'ParticleSystemComponent_SetMaterialParameter::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetMaterialParameter, Param) == 0x000008, "Member 'ParticleSystemComponent_SetMaterialParameter::Param' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetTemplate \ +static_assert(alignof(ParticleSystemComponent_SetTemplate) == 0x000008, "Wrong alignment on ParticleSystemComponent_SetTemplate"); \ +static_assert(sizeof(ParticleSystemComponent_SetTemplate) == 0x000008, "Wrong size on ParticleSystemComponent_SetTemplate"); \ +static_assert(offsetof(ParticleSystemComponent_SetTemplate, NewTemplate) == 0x000000, "Member 'ParticleSystemComponent_SetTemplate::NewTemplate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_SetTrailSourceData \ +static_assert(alignof(ParticleSystemComponent_SetTrailSourceData) == 0x000004, "Wrong alignment on ParticleSystemComponent_SetTrailSourceData"); \ +static_assert(sizeof(ParticleSystemComponent_SetTrailSourceData) == 0x000018, "Wrong size on ParticleSystemComponent_SetTrailSourceData"); \ +static_assert(offsetof(ParticleSystemComponent_SetTrailSourceData, InFirstSocketName) == 0x000000, "Member 'ParticleSystemComponent_SetTrailSourceData::InFirstSocketName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetTrailSourceData, InSecondSocketName) == 0x000008, "Member 'ParticleSystemComponent_SetTrailSourceData::InSecondSocketName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetTrailSourceData, InWidthMode) == 0x000010, "Member 'ParticleSystemComponent_SetTrailSourceData::InWidthMode' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_SetTrailSourceData, InWidth) == 0x000014, "Member 'ParticleSystemComponent_SetTrailSourceData::InWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamEndPoint \ +static_assert(alignof(ParticleSystemComponent_GetBeamEndPoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetBeamEndPoint"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamEndPoint) == 0x000028, "Wrong size on ParticleSystemComponent_GetBeamEndPoint"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamEndPoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamEndPoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamEndPoint, OutEndPoint) == 0x000008, "Member 'ParticleSystemComponent_GetBeamEndPoint::OutEndPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamEndPoint, ReturnValue) == 0x000020, "Member 'ParticleSystemComponent_GetBeamEndPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamSourcePoint \ +static_assert(alignof(ParticleSystemComponent_GetBeamSourcePoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetBeamSourcePoint"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamSourcePoint) == 0x000028, "Wrong size on ParticleSystemComponent_GetBeamSourcePoint"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourcePoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamSourcePoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourcePoint, SourceIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamSourcePoint::SourceIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourcePoint, OutSourcePoint) == 0x000008, "Member 'ParticleSystemComponent_GetBeamSourcePoint::OutSourcePoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourcePoint, ReturnValue) == 0x000020, "Member 'ParticleSystemComponent_GetBeamSourcePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamSourceStrength \ +static_assert(alignof(ParticleSystemComponent_GetBeamSourceStrength) == 0x000004, "Wrong alignment on ParticleSystemComponent_GetBeamSourceStrength"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamSourceStrength) == 0x000010, "Wrong size on ParticleSystemComponent_GetBeamSourceStrength"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceStrength, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamSourceStrength::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceStrength, SourceIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamSourceStrength::SourceIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceStrength, OutSourceStrength) == 0x000008, "Member 'ParticleSystemComponent_GetBeamSourceStrength::OutSourceStrength' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceStrength, ReturnValue) == 0x00000C, "Member 'ParticleSystemComponent_GetBeamSourceStrength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamSourceTangent \ +static_assert(alignof(ParticleSystemComponent_GetBeamSourceTangent) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetBeamSourceTangent"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamSourceTangent) == 0x000028, "Wrong size on ParticleSystemComponent_GetBeamSourceTangent"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceTangent, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamSourceTangent::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceTangent, SourceIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamSourceTangent::SourceIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceTangent, OutTangentPoint) == 0x000008, "Member 'ParticleSystemComponent_GetBeamSourceTangent::OutTangentPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamSourceTangent, ReturnValue) == 0x000020, "Member 'ParticleSystemComponent_GetBeamSourceTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamTargetPoint \ +static_assert(alignof(ParticleSystemComponent_GetBeamTargetPoint) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetBeamTargetPoint"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamTargetPoint) == 0x000028, "Wrong size on ParticleSystemComponent_GetBeamTargetPoint"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetPoint, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamTargetPoint::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetPoint, TargetIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamTargetPoint::TargetIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetPoint, OutTargetPoint) == 0x000008, "Member 'ParticleSystemComponent_GetBeamTargetPoint::OutTargetPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetPoint, ReturnValue) == 0x000020, "Member 'ParticleSystemComponent_GetBeamTargetPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamTargetStrength \ +static_assert(alignof(ParticleSystemComponent_GetBeamTargetStrength) == 0x000004, "Wrong alignment on ParticleSystemComponent_GetBeamTargetStrength"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamTargetStrength) == 0x000010, "Wrong size on ParticleSystemComponent_GetBeamTargetStrength"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetStrength, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamTargetStrength::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetStrength, TargetIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamTargetStrength::TargetIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetStrength, OutTargetStrength) == 0x000008, "Member 'ParticleSystemComponent_GetBeamTargetStrength::OutTargetStrength' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetStrength, ReturnValue) == 0x00000C, "Member 'ParticleSystemComponent_GetBeamTargetStrength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetBeamTargetTangent \ +static_assert(alignof(ParticleSystemComponent_GetBeamTargetTangent) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetBeamTargetTangent"); \ +static_assert(sizeof(ParticleSystemComponent_GetBeamTargetTangent) == 0x000028, "Wrong size on ParticleSystemComponent_GetBeamTargetTangent"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetTangent, EmitterIndex) == 0x000000, "Member 'ParticleSystemComponent_GetBeamTargetTangent::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetTangent, TargetIndex) == 0x000004, "Member 'ParticleSystemComponent_GetBeamTargetTangent::TargetIndex' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetTangent, OutTangentPoint) == 0x000008, "Member 'ParticleSystemComponent_GetBeamTargetTangent::OutTangentPoint' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetBeamTargetTangent, ReturnValue) == 0x000020, "Member 'ParticleSystemComponent_GetBeamTargetTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetNamedMaterial \ +static_assert(alignof(ParticleSystemComponent_GetNamedMaterial) == 0x000008, "Wrong alignment on ParticleSystemComponent_GetNamedMaterial"); \ +static_assert(sizeof(ParticleSystemComponent_GetNamedMaterial) == 0x000010, "Wrong size on ParticleSystemComponent_GetNamedMaterial"); \ +static_assert(offsetof(ParticleSystemComponent_GetNamedMaterial, InName) == 0x000000, "Member 'ParticleSystemComponent_GetNamedMaterial::InName' has a wrong offset!"); \ +static_assert(offsetof(ParticleSystemComponent_GetNamedMaterial, ReturnValue) == 0x000008, "Member 'ParticleSystemComponent_GetNamedMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ParticleSystemComponent_GetNumActiveParticles \ +static_assert(alignof(ParticleSystemComponent_GetNumActiveParticles) == 0x000004, "Wrong alignment on ParticleSystemComponent_GetNumActiveParticles"); \ +static_assert(sizeof(ParticleSystemComponent_GetNumActiveParticles) == 0x000004, "Wrong size on ParticleSystemComponent_GetNumActiveParticles"); \ +static_assert(offsetof(ParticleSystemComponent_GetNumActiveParticles, ReturnValue) == 0x000000, "Member 'ParticleSystemComponent_GetNumActiveParticles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleSystemComponent \ +static_assert(alignof(UParticleSystemComponent) == 0x000010, "Wrong alignment on UParticleSystemComponent"); \ +static_assert(sizeof(UParticleSystemComponent) == 0x000880, "Wrong size on UParticleSystemComponent"); \ +static_assert(offsetof(UParticleSystemComponent, Template) == 0x000570, "Member 'UParticleSystemComponent::Template' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, EmitterMaterials) == 0x000578, "Member 'UParticleSystemComponent::EmitterMaterials' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, SkelMeshComponents) == 0x000588, "Member 'UParticleSystemComponent::SkelMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, LODMethod) == 0x0005A5, "Member 'UParticleSystemComponent::LODMethod' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, RequiredSignificance) == 0x0005A6, "Member 'UParticleSystemComponent::RequiredSignificance' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, InstanceParameters) == 0x0005A8, "Member 'UParticleSystemComponent::InstanceParameters' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OnParticleSpawn) == 0x0005B8, "Member 'UParticleSystemComponent::OnParticleSpawn' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OnParticleBurst) == 0x0005C8, "Member 'UParticleSystemComponent::OnParticleBurst' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OnParticleDeath) == 0x0005D8, "Member 'UParticleSystemComponent::OnParticleDeath' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OnParticleCollide) == 0x0005E8, "Member 'UParticleSystemComponent::OnParticleCollide' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, bOldPositionValid) == 0x0005F8, "Member 'UParticleSystemComponent::bOldPositionValid' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OldPosition) == 0x000600, "Member 'UParticleSystemComponent::OldPosition' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, PartSysVelocity) == 0x000618, "Member 'UParticleSystemComponent::PartSysVelocity' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, WarmupTime) == 0x000630, "Member 'UParticleSystemComponent::WarmupTime' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, WarmupTickRate) == 0x000634, "Member 'UParticleSystemComponent::WarmupTickRate' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, SecondsBeforeInactive) == 0x00063C, "Member 'UParticleSystemComponent::SecondsBeforeInactive' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, MaxTimeBeforeForceUpdateTransform) == 0x000644, "Member 'UParticleSystemComponent::MaxTimeBeforeForceUpdateTransform' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, ReplayClips) == 0x000668, "Member 'UParticleSystemComponent::ReplayClips' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, CustomTimeDilation) == 0x000680, "Member 'UParticleSystemComponent::CustomTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, AutoAttachParent) == 0x0006D8, "Member 'UParticleSystemComponent::AutoAttachParent' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, AutoAttachSocketName) == 0x0006E0, "Member 'UParticleSystemComponent::AutoAttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, AutoAttachLocationRule) == 0x0006E8, "Member 'UParticleSystemComponent::AutoAttachLocationRule' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, AutoAttachRotationRule) == 0x0006E9, "Member 'UParticleSystemComponent::AutoAttachRotationRule' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, AutoAttachScaleRule) == 0x0006EA, "Member 'UParticleSystemComponent::AutoAttachScaleRule' has a wrong offset!"); \ +static_assert(offsetof(UParticleSystemComponent, OnSystemFinished) == 0x000740, "Member 'UParticleSystemComponent::OnSystemFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UParticleSystemReplay \ +static_assert(alignof(UParticleSystemReplay) == 0x000008, "Wrong alignment on UParticleSystemReplay"); \ +static_assert(sizeof(UParticleSystemReplay) == 0x000040, "Wrong size on UParticleSystemReplay"); \ +static_assert(offsetof(UParticleSystemReplay, ClipIDNumber) == 0x000028, "Member 'UParticleSystemReplay::ClipIDNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IPathFollowingAgentInterface \ +static_assert(alignof(IPathFollowingAgentInterface) == 0x000001, "Wrong alignment on IPathFollowingAgentInterface"); \ +static_assert(sizeof(IPathFollowingAgentInterface) == 0x000001, "Wrong size on IPathFollowingAgentInterface"); \ + +#define DUMPER7_ASSERTS_UComponentDelegateBinding \ +static_assert(alignof(UComponentDelegateBinding) == 0x000008, "Wrong alignment on UComponentDelegateBinding"); \ +static_assert(sizeof(UComponentDelegateBinding) == 0x000038, "Wrong size on UComponentDelegateBinding"); \ +static_assert(offsetof(UComponentDelegateBinding, ComponentDelegateBindings) == 0x000028, "Member 'UComponentDelegateBinding::ComponentDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsObjectBlueprintLibrary_ApplyRadialImpulse \ +static_assert(alignof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse) == 0x000008, "Wrong alignment on PhysicsObjectBlueprintLibrary_ApplyRadialImpulse"); \ +static_assert(sizeof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse) == 0x000030, "Wrong size on PhysicsObjectBlueprintLibrary_ApplyRadialImpulse"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, Component) == 0x000000, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, Origin) == 0x000008, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::Origin' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, Radius) == 0x000020, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::Radius' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, Strength) == 0x000024, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::Strength' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, Falloff) == 0x000028, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::Falloff' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ApplyRadialImpulse, bApplyStrain) == 0x000029, "Member 'PhysicsObjectBlueprintLibrary_ApplyRadialImpulse::bApplyStrain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults \ +static_assert(alignof(PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults) == 0x000008, "Wrong alignment on PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults"); \ +static_assert(sizeof(PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults) == 0x000038, "Wrong size on PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults, Result) == 0x000000, "Member 'PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults::Result' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults, OutName) == 0x000028, "Member 'PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults::OutName' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults, ReturnValue) == 0x000030, "Member 'PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation \ +static_assert(alignof(PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation) == 0x000008, "Wrong alignment on PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation"); \ +static_assert(sizeof(PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation) == 0x000048, "Wrong size on PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation, Component) == 0x000000, "Member 'PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation, WorldLocation) == 0x000008, "Member 'PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation, ReturnValue) == 0x000020, "Member 'PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform \ +static_assert(alignof(PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform) == 0x000010, "Wrong alignment on PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform"); \ +static_assert(sizeof(PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform) == 0x000070, "Wrong size on PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform, Component) == 0x000000, "Member 'PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform, BoneName) == 0x000008, "Member 'PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform::BoneName' has a wrong offset!"); \ +static_assert(offsetof(PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform, ReturnValue) == 0x000010, "Member 'PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsObjectBlueprintLibrary \ +static_assert(alignof(UPhysicsObjectBlueprintLibrary) == 0x000008, "Wrong alignment on UPhysicsObjectBlueprintLibrary"); \ +static_assert(sizeof(UPhysicsObjectBlueprintLibrary) == 0x000028, "Wrong size on UPhysicsObjectBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_PhysicsSpringComponent_GetNormalizedCompressionScalar \ +static_assert(alignof(PhysicsSpringComponent_GetNormalizedCompressionScalar) == 0x000004, "Wrong alignment on PhysicsSpringComponent_GetNormalizedCompressionScalar"); \ +static_assert(sizeof(PhysicsSpringComponent_GetNormalizedCompressionScalar) == 0x000004, "Wrong size on PhysicsSpringComponent_GetNormalizedCompressionScalar"); \ +static_assert(offsetof(PhysicsSpringComponent_GetNormalizedCompressionScalar, ReturnValue) == 0x000000, "Member 'PhysicsSpringComponent_GetNormalizedCompressionScalar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsSpringComponent_GetSpringCurrentEndPoint \ +static_assert(alignof(PhysicsSpringComponent_GetSpringCurrentEndPoint) == 0x000008, "Wrong alignment on PhysicsSpringComponent_GetSpringCurrentEndPoint"); \ +static_assert(sizeof(PhysicsSpringComponent_GetSpringCurrentEndPoint) == 0x000018, "Wrong size on PhysicsSpringComponent_GetSpringCurrentEndPoint"); \ +static_assert(offsetof(PhysicsSpringComponent_GetSpringCurrentEndPoint, ReturnValue) == 0x000000, "Member 'PhysicsSpringComponent_GetSpringCurrentEndPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsSpringComponent_GetSpringDirection \ +static_assert(alignof(PhysicsSpringComponent_GetSpringDirection) == 0x000008, "Wrong alignment on PhysicsSpringComponent_GetSpringDirection"); \ +static_assert(sizeof(PhysicsSpringComponent_GetSpringDirection) == 0x000018, "Wrong size on PhysicsSpringComponent_GetSpringDirection"); \ +static_assert(offsetof(PhysicsSpringComponent_GetSpringDirection, ReturnValue) == 0x000000, "Member 'PhysicsSpringComponent_GetSpringDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsSpringComponent_GetSpringRestingPoint \ +static_assert(alignof(PhysicsSpringComponent_GetSpringRestingPoint) == 0x000008, "Wrong alignment on PhysicsSpringComponent_GetSpringRestingPoint"); \ +static_assert(sizeof(PhysicsSpringComponent_GetSpringRestingPoint) == 0x000018, "Wrong size on PhysicsSpringComponent_GetSpringRestingPoint"); \ +static_assert(offsetof(PhysicsSpringComponent_GetSpringRestingPoint, ReturnValue) == 0x000000, "Member 'PhysicsSpringComponent_GetSpringRestingPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsSpringComponent \ +static_assert(alignof(UPhysicsSpringComponent) == 0x000010, "Wrong alignment on UPhysicsSpringComponent"); \ +static_assert(sizeof(UPhysicsSpringComponent) == 0x0002D0, "Wrong size on UPhysicsSpringComponent"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringStiffness) == 0x0002A0, "Member 'UPhysicsSpringComponent::SpringStiffness' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringDamping) == 0x0002A4, "Member 'UPhysicsSpringComponent::SpringDamping' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringLengthAtRest) == 0x0002A8, "Member 'UPhysicsSpringComponent::SpringLengthAtRest' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringRadius) == 0x0002AC, "Member 'UPhysicsSpringComponent::SpringRadius' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringChannel) == 0x0002B0, "Member 'UPhysicsSpringComponent::SpringChannel' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, bIgnoreSelf) == 0x0002B1, "Member 'UPhysicsSpringComponent::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSpringComponent, SpringCompression) == 0x0002B4, "Member 'UPhysicsSpringComponent::SpringCompression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsThreadLibrary_AddForce \ +static_assert(alignof(PhysicsThreadLibrary_AddForce) == 0x000008, "Wrong alignment on PhysicsThreadLibrary_AddForce"); \ +static_assert(sizeof(PhysicsThreadLibrary_AddForce) == 0x000028, "Wrong size on PhysicsThreadLibrary_AddForce"); \ +static_assert(offsetof(PhysicsThreadLibrary_AddForce, Handle) == 0x000000, "Member 'PhysicsThreadLibrary_AddForce::Handle' has a wrong offset!"); \ +static_assert(offsetof(PhysicsThreadLibrary_AddForce, Force) == 0x000008, "Member 'PhysicsThreadLibrary_AddForce::Force' has a wrong offset!"); \ +static_assert(offsetof(PhysicsThreadLibrary_AddForce, bAccelChange) == 0x000020, "Member 'PhysicsThreadLibrary_AddForce::bAccelChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsThreadLibrary \ +static_assert(alignof(UPhysicsThreadLibrary) == 0x000008, "Wrong alignment on UPhysicsThreadLibrary"); \ +static_assert(sizeof(UPhysicsThreadLibrary) == 0x000028, "Wrong size on UPhysicsThreadLibrary"); \ + +#define DUMPER7_ASSERTS_UPhysicsThrusterComponent \ +static_assert(alignof(UPhysicsThrusterComponent) == 0x000010, "Wrong alignment on UPhysicsThrusterComponent"); \ +static_assert(sizeof(UPhysicsThrusterComponent) == 0x0002B0, "Wrong size on UPhysicsThrusterComponent"); \ +static_assert(offsetof(UPhysicsThrusterComponent, ThrustStrength) == 0x0002A0, "Member 'UPhysicsThrusterComponent::ThrustStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_AdjustAttenuation \ +static_assert(alignof(AudioComponent_AdjustAttenuation) == 0x000008, "Wrong alignment on AudioComponent_AdjustAttenuation"); \ +static_assert(sizeof(AudioComponent_AdjustAttenuation) == 0x0003D0, "Wrong size on AudioComponent_AdjustAttenuation"); \ +static_assert(offsetof(AudioComponent_AdjustAttenuation, InAttenuationSettings) == 0x000000, "Member 'AudioComponent_AdjustAttenuation::InAttenuationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_AdjustVolume \ +static_assert(alignof(AudioComponent_AdjustVolume) == 0x000004, "Wrong alignment on AudioComponent_AdjustVolume"); \ +static_assert(sizeof(AudioComponent_AdjustVolume) == 0x00000C, "Wrong size on AudioComponent_AdjustVolume"); \ +static_assert(offsetof(AudioComponent_AdjustVolume, AdjustVolumeDuration) == 0x000000, "Member 'AudioComponent_AdjustVolume::AdjustVolumeDuration' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_AdjustVolume, AdjustVolumeLevel) == 0x000004, "Member 'AudioComponent_AdjustVolume::AdjustVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_AdjustVolume, FadeCurve) == 0x000008, "Member 'AudioComponent_AdjustVolume::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_BP_GetAttenuationSettingsToApply \ +static_assert(alignof(AudioComponent_BP_GetAttenuationSettingsToApply) == 0x000008, "Wrong alignment on AudioComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(sizeof(AudioComponent_BP_GetAttenuationSettingsToApply) == 0x0003D8, "Wrong size on AudioComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(offsetof(AudioComponent_BP_GetAttenuationSettingsToApply, OutAttenuationSettings) == 0x000000, "Member 'AudioComponent_BP_GetAttenuationSettingsToApply::OutAttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_BP_GetAttenuationSettingsToApply, ReturnValue) == 0x0003D0, "Member 'AudioComponent_BP_GetAttenuationSettingsToApply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_FadeIn \ +static_assert(alignof(AudioComponent_FadeIn) == 0x000004, "Wrong alignment on AudioComponent_FadeIn"); \ +static_assert(sizeof(AudioComponent_FadeIn) == 0x000010, "Wrong size on AudioComponent_FadeIn"); \ +static_assert(offsetof(AudioComponent_FadeIn, FadeInDuration) == 0x000000, "Member 'AudioComponent_FadeIn::FadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_FadeIn, FadeVolumeLevel) == 0x000004, "Member 'AudioComponent_FadeIn::FadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_FadeIn, StartTime) == 0x000008, "Member 'AudioComponent_FadeIn::StartTime' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_FadeIn, FadeCurve) == 0x00000C, "Member 'AudioComponent_FadeIn::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_FadeOut \ +static_assert(alignof(AudioComponent_FadeOut) == 0x000004, "Wrong alignment on AudioComponent_FadeOut"); \ +static_assert(sizeof(AudioComponent_FadeOut) == 0x00000C, "Wrong size on AudioComponent_FadeOut"); \ +static_assert(offsetof(AudioComponent_FadeOut, FadeOutDuration) == 0x000000, "Member 'AudioComponent_FadeOut::FadeOutDuration' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_FadeOut, FadeVolumeLevel) == 0x000004, "Member 'AudioComponent_FadeOut::FadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_FadeOut, FadeCurve) == 0x000008, "Member 'AudioComponent_FadeOut::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetCookedEnvelopeData \ +static_assert(alignof(AudioComponent_GetCookedEnvelopeData) == 0x000004, "Wrong alignment on AudioComponent_GetCookedEnvelopeData"); \ +static_assert(sizeof(AudioComponent_GetCookedEnvelopeData) == 0x000008, "Wrong size on AudioComponent_GetCookedEnvelopeData"); \ +static_assert(offsetof(AudioComponent_GetCookedEnvelopeData, OutEnvelopeData) == 0x000000, "Member 'AudioComponent_GetCookedEnvelopeData::OutEnvelopeData' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetCookedEnvelopeData, ReturnValue) == 0x000004, "Member 'AudioComponent_GetCookedEnvelopeData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds \ +static_assert(alignof(AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds) == 0x000008, "Wrong alignment on AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds"); \ +static_assert(sizeof(AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds) == 0x000018, "Wrong size on AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds"); \ +static_assert(offsetof(AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds, OutEnvelopeData) == 0x000000, "Member 'AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds::OutEnvelopeData' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds, ReturnValue) == 0x000010, "Member 'AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetCookedFFTData \ +static_assert(alignof(AudioComponent_GetCookedFFTData) == 0x000008, "Wrong alignment on AudioComponent_GetCookedFFTData"); \ +static_assert(sizeof(AudioComponent_GetCookedFFTData) == 0x000028, "Wrong size on AudioComponent_GetCookedFFTData"); \ +static_assert(offsetof(AudioComponent_GetCookedFFTData, FrequenciesToGet) == 0x000000, "Member 'AudioComponent_GetCookedFFTData::FrequenciesToGet' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetCookedFFTData, OutSoundWaveSpectralData) == 0x000010, "Member 'AudioComponent_GetCookedFFTData::OutSoundWaveSpectralData' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetCookedFFTData, ReturnValue) == 0x000020, "Member 'AudioComponent_GetCookedFFTData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetCookedFFTDataForAllPlayingSounds \ +static_assert(alignof(AudioComponent_GetCookedFFTDataForAllPlayingSounds) == 0x000008, "Wrong alignment on AudioComponent_GetCookedFFTDataForAllPlayingSounds"); \ +static_assert(sizeof(AudioComponent_GetCookedFFTDataForAllPlayingSounds) == 0x000018, "Wrong size on AudioComponent_GetCookedFFTDataForAllPlayingSounds"); \ +static_assert(offsetof(AudioComponent_GetCookedFFTDataForAllPlayingSounds, OutSoundWaveSpectralData) == 0x000000, "Member 'AudioComponent_GetCookedFFTDataForAllPlayingSounds::OutSoundWaveSpectralData' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetCookedFFTDataForAllPlayingSounds, ReturnValue) == 0x000010, "Member 'AudioComponent_GetCookedFFTDataForAllPlayingSounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetModulators \ +static_assert(alignof(AudioComponent_GetModulators) == 0x000008, "Wrong alignment on AudioComponent_GetModulators"); \ +static_assert(sizeof(AudioComponent_GetModulators) == 0x000058, "Wrong size on AudioComponent_GetModulators"); \ +static_assert(offsetof(AudioComponent_GetModulators, destination) == 0x000000, "Member 'AudioComponent_GetModulators::destination' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_GetModulators, ReturnValue) == 0x000008, "Member 'AudioComponent_GetModulators::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_Play \ +static_assert(alignof(AudioComponent_Play) == 0x000004, "Wrong alignment on AudioComponent_Play"); \ +static_assert(sizeof(AudioComponent_Play) == 0x000004, "Wrong size on AudioComponent_Play"); \ +static_assert(offsetof(AudioComponent_Play, StartTime) == 0x000000, "Member 'AudioComponent_Play::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_PlayQuantized \ +static_assert(alignof(AudioComponent_PlayQuantized) == 0x000008, "Wrong alignment on AudioComponent_PlayQuantized"); \ +static_assert(sizeof(AudioComponent_PlayQuantized) == 0x000050, "Wrong size on AudioComponent_PlayQuantized"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, WorldContextObject) == 0x000000, "Member 'AudioComponent_PlayQuantized::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InClockHandle) == 0x000008, "Member 'AudioComponent_PlayQuantized::InClockHandle' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InQuantizationBoundary) == 0x000010, "Member 'AudioComponent_PlayQuantized::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InDelegate) == 0x000030, "Member 'AudioComponent_PlayQuantized::InDelegate' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InStartTime) == 0x000040, "Member 'AudioComponent_PlayQuantized::InStartTime' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InFadeInDuration) == 0x000044, "Member 'AudioComponent_PlayQuantized::InFadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InFadeVolumeLevel) == 0x000048, "Member 'AudioComponent_PlayQuantized::InFadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_PlayQuantized, InFadeCurve) == 0x00004C, "Member 'AudioComponent_PlayQuantized::InFadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetAudioBusSendPostEffect \ +static_assert(alignof(AudioComponent_SetAudioBusSendPostEffect) == 0x000008, "Wrong alignment on AudioComponent_SetAudioBusSendPostEffect"); \ +static_assert(sizeof(AudioComponent_SetAudioBusSendPostEffect) == 0x000010, "Wrong size on AudioComponent_SetAudioBusSendPostEffect"); \ +static_assert(offsetof(AudioComponent_SetAudioBusSendPostEffect, AudioBus) == 0x000000, "Member 'AudioComponent_SetAudioBusSendPostEffect::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetAudioBusSendPostEffect, AudioBusSendLevel) == 0x000008, "Member 'AudioComponent_SetAudioBusSendPostEffect::AudioBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetAudioBusSendPreEffect \ +static_assert(alignof(AudioComponent_SetAudioBusSendPreEffect) == 0x000008, "Wrong alignment on AudioComponent_SetAudioBusSendPreEffect"); \ +static_assert(sizeof(AudioComponent_SetAudioBusSendPreEffect) == 0x000010, "Wrong size on AudioComponent_SetAudioBusSendPreEffect"); \ +static_assert(offsetof(AudioComponent_SetAudioBusSendPreEffect, AudioBus) == 0x000000, "Member 'AudioComponent_SetAudioBusSendPreEffect::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetAudioBusSendPreEffect, AudioBusSendLevel) == 0x000008, "Member 'AudioComponent_SetAudioBusSendPreEffect::AudioBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetBoolParameter \ +static_assert(alignof(AudioComponent_SetBoolParameter) == 0x000004, "Wrong alignment on AudioComponent_SetBoolParameter"); \ +static_assert(sizeof(AudioComponent_SetBoolParameter) == 0x00000C, "Wrong size on AudioComponent_SetBoolParameter"); \ +static_assert(offsetof(AudioComponent_SetBoolParameter, InName) == 0x000000, "Member 'AudioComponent_SetBoolParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetBoolParameter, InBool) == 0x000008, "Member 'AudioComponent_SetBoolParameter::InBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetFloatParameter \ +static_assert(alignof(AudioComponent_SetFloatParameter) == 0x000004, "Wrong alignment on AudioComponent_SetFloatParameter"); \ +static_assert(sizeof(AudioComponent_SetFloatParameter) == 0x00000C, "Wrong size on AudioComponent_SetFloatParameter"); \ +static_assert(offsetof(AudioComponent_SetFloatParameter, InName) == 0x000000, "Member 'AudioComponent_SetFloatParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetFloatParameter, InFloat) == 0x000008, "Member 'AudioComponent_SetFloatParameter::InFloat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetIntParameter \ +static_assert(alignof(AudioComponent_SetIntParameter) == 0x000004, "Wrong alignment on AudioComponent_SetIntParameter"); \ +static_assert(sizeof(AudioComponent_SetIntParameter) == 0x00000C, "Wrong size on AudioComponent_SetIntParameter"); \ +static_assert(offsetof(AudioComponent_SetIntParameter, InName) == 0x000000, "Member 'AudioComponent_SetIntParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetIntParameter, inInt) == 0x000008, "Member 'AudioComponent_SetIntParameter::inInt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetLowPassFilterEnabled \ +static_assert(alignof(AudioComponent_SetLowPassFilterEnabled) == 0x000001, "Wrong alignment on AudioComponent_SetLowPassFilterEnabled"); \ +static_assert(sizeof(AudioComponent_SetLowPassFilterEnabled) == 0x000001, "Wrong size on AudioComponent_SetLowPassFilterEnabled"); \ +static_assert(offsetof(AudioComponent_SetLowPassFilterEnabled, InLowPassFilterEnabled) == 0x000000, "Member 'AudioComponent_SetLowPassFilterEnabled::InLowPassFilterEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetLowPassFilterFrequency \ +static_assert(alignof(AudioComponent_SetLowPassFilterFrequency) == 0x000004, "Wrong alignment on AudioComponent_SetLowPassFilterFrequency"); \ +static_assert(sizeof(AudioComponent_SetLowPassFilterFrequency) == 0x000004, "Wrong size on AudioComponent_SetLowPassFilterFrequency"); \ +static_assert(offsetof(AudioComponent_SetLowPassFilterFrequency, InLowPassFilterFrequency) == 0x000000, "Member 'AudioComponent_SetLowPassFilterFrequency::InLowPassFilterFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetModulationRouting \ +static_assert(alignof(AudioComponent_SetModulationRouting) == 0x000008, "Wrong alignment on AudioComponent_SetModulationRouting"); \ +static_assert(sizeof(AudioComponent_SetModulationRouting) == 0x000058, "Wrong size on AudioComponent_SetModulationRouting"); \ +static_assert(offsetof(AudioComponent_SetModulationRouting, Modulators) == 0x000000, "Member 'AudioComponent_SetModulationRouting::Modulators' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetModulationRouting, destination) == 0x000050, "Member 'AudioComponent_SetModulationRouting::destination' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetModulationRouting, RoutingMethod) == 0x000051, "Member 'AudioComponent_SetModulationRouting::RoutingMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetOutputToBusOnly \ +static_assert(alignof(AudioComponent_SetOutputToBusOnly) == 0x000001, "Wrong alignment on AudioComponent_SetOutputToBusOnly"); \ +static_assert(sizeof(AudioComponent_SetOutputToBusOnly) == 0x000001, "Wrong size on AudioComponent_SetOutputToBusOnly"); \ +static_assert(offsetof(AudioComponent_SetOutputToBusOnly, bInOutputToBusOnly) == 0x000000, "Member 'AudioComponent_SetOutputToBusOnly::bInOutputToBusOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetPaused \ +static_assert(alignof(AudioComponent_SetPaused) == 0x000001, "Wrong alignment on AudioComponent_SetPaused"); \ +static_assert(sizeof(AudioComponent_SetPaused) == 0x000001, "Wrong size on AudioComponent_SetPaused"); \ +static_assert(offsetof(AudioComponent_SetPaused, bPause) == 0x000000, "Member 'AudioComponent_SetPaused::bPause' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetPitchMultiplier \ +static_assert(alignof(AudioComponent_SetPitchMultiplier) == 0x000004, "Wrong alignment on AudioComponent_SetPitchMultiplier"); \ +static_assert(sizeof(AudioComponent_SetPitchMultiplier) == 0x000004, "Wrong size on AudioComponent_SetPitchMultiplier"); \ +static_assert(offsetof(AudioComponent_SetPitchMultiplier, NewPitchMultiplier) == 0x000000, "Member 'AudioComponent_SetPitchMultiplier::NewPitchMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetSound \ +static_assert(alignof(AudioComponent_SetSound) == 0x000008, "Wrong alignment on AudioComponent_SetSound"); \ +static_assert(sizeof(AudioComponent_SetSound) == 0x000008, "Wrong size on AudioComponent_SetSound"); \ +static_assert(offsetof(AudioComponent_SetSound, NewSound) == 0x000000, "Member 'AudioComponent_SetSound::NewSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetSourceBusSendPostEffect \ +static_assert(alignof(AudioComponent_SetSourceBusSendPostEffect) == 0x000008, "Wrong alignment on AudioComponent_SetSourceBusSendPostEffect"); \ +static_assert(sizeof(AudioComponent_SetSourceBusSendPostEffect) == 0x000010, "Wrong size on AudioComponent_SetSourceBusSendPostEffect"); \ +static_assert(offsetof(AudioComponent_SetSourceBusSendPostEffect, SoundSourceBus) == 0x000000, "Member 'AudioComponent_SetSourceBusSendPostEffect::SoundSourceBus' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetSourceBusSendPostEffect, SourceBusSendLevel) == 0x000008, "Member 'AudioComponent_SetSourceBusSendPostEffect::SourceBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetSourceBusSendPreEffect \ +static_assert(alignof(AudioComponent_SetSourceBusSendPreEffect) == 0x000008, "Wrong alignment on AudioComponent_SetSourceBusSendPreEffect"); \ +static_assert(sizeof(AudioComponent_SetSourceBusSendPreEffect) == 0x000010, "Wrong size on AudioComponent_SetSourceBusSendPreEffect"); \ +static_assert(offsetof(AudioComponent_SetSourceBusSendPreEffect, SoundSourceBus) == 0x000000, "Member 'AudioComponent_SetSourceBusSendPreEffect::SoundSourceBus' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetSourceBusSendPreEffect, SourceBusSendLevel) == 0x000008, "Member 'AudioComponent_SetSourceBusSendPreEffect::SourceBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetSubmixSend \ +static_assert(alignof(AudioComponent_SetSubmixSend) == 0x000008, "Wrong alignment on AudioComponent_SetSubmixSend"); \ +static_assert(sizeof(AudioComponent_SetSubmixSend) == 0x000010, "Wrong size on AudioComponent_SetSubmixSend"); \ +static_assert(offsetof(AudioComponent_SetSubmixSend, Submix) == 0x000000, "Member 'AudioComponent_SetSubmixSend::Submix' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetSubmixSend, SendLevel) == 0x000008, "Member 'AudioComponent_SetSubmixSend::SendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetUISound \ +static_assert(alignof(AudioComponent_SetUISound) == 0x000001, "Wrong alignment on AudioComponent_SetUISound"); \ +static_assert(sizeof(AudioComponent_SetUISound) == 0x000001, "Wrong size on AudioComponent_SetUISound"); \ +static_assert(offsetof(AudioComponent_SetUISound, bInUISound) == 0x000000, "Member 'AudioComponent_SetUISound::bInUISound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetVolumeMultiplier \ +static_assert(alignof(AudioComponent_SetVolumeMultiplier) == 0x000004, "Wrong alignment on AudioComponent_SetVolumeMultiplier"); \ +static_assert(sizeof(AudioComponent_SetVolumeMultiplier) == 0x000004, "Wrong size on AudioComponent_SetVolumeMultiplier"); \ +static_assert(offsetof(AudioComponent_SetVolumeMultiplier, NewVolumeMultiplier) == 0x000000, "Member 'AudioComponent_SetVolumeMultiplier::NewVolumeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_SetWaveParameter \ +static_assert(alignof(AudioComponent_SetWaveParameter) == 0x000008, "Wrong alignment on AudioComponent_SetWaveParameter"); \ +static_assert(sizeof(AudioComponent_SetWaveParameter) == 0x000010, "Wrong size on AudioComponent_SetWaveParameter"); \ +static_assert(offsetof(AudioComponent_SetWaveParameter, InName) == 0x000000, "Member 'AudioComponent_SetWaveParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioComponent_SetWaveParameter, InWave) == 0x000008, "Member 'AudioComponent_SetWaveParameter::InWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_StopDelayed \ +static_assert(alignof(AudioComponent_StopDelayed) == 0x000004, "Wrong alignment on AudioComponent_StopDelayed"); \ +static_assert(sizeof(AudioComponent_StopDelayed) == 0x000004, "Wrong size on AudioComponent_StopDelayed"); \ +static_assert(offsetof(AudioComponent_StopDelayed, DelayTime) == 0x000000, "Member 'AudioComponent_StopDelayed::DelayTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_GetPlayState \ +static_assert(alignof(AudioComponent_GetPlayState) == 0x000001, "Wrong alignment on AudioComponent_GetPlayState"); \ +static_assert(sizeof(AudioComponent_GetPlayState) == 0x000001, "Wrong size on AudioComponent_GetPlayState"); \ +static_assert(offsetof(AudioComponent_GetPlayState, ReturnValue) == 0x000000, "Member 'AudioComponent_GetPlayState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_HasCookedAmplitudeEnvelopeData \ +static_assert(alignof(AudioComponent_HasCookedAmplitudeEnvelopeData) == 0x000001, "Wrong alignment on AudioComponent_HasCookedAmplitudeEnvelopeData"); \ +static_assert(sizeof(AudioComponent_HasCookedAmplitudeEnvelopeData) == 0x000001, "Wrong size on AudioComponent_HasCookedAmplitudeEnvelopeData"); \ +static_assert(offsetof(AudioComponent_HasCookedAmplitudeEnvelopeData, ReturnValue) == 0x000000, "Member 'AudioComponent_HasCookedAmplitudeEnvelopeData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_HasCookedFFTData \ +static_assert(alignof(AudioComponent_HasCookedFFTData) == 0x000001, "Wrong alignment on AudioComponent_HasCookedFFTData"); \ +static_assert(sizeof(AudioComponent_HasCookedFFTData) == 0x000001, "Wrong size on AudioComponent_HasCookedFFTData"); \ +static_assert(offsetof(AudioComponent_HasCookedFFTData, ReturnValue) == 0x000000, "Member 'AudioComponent_HasCookedFFTData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_IsPlaying \ +static_assert(alignof(AudioComponent_IsPlaying) == 0x000001, "Wrong alignment on AudioComponent_IsPlaying"); \ +static_assert(sizeof(AudioComponent_IsPlaying) == 0x000001, "Wrong size on AudioComponent_IsPlaying"); \ +static_assert(offsetof(AudioComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'AudioComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioComponent_IsVirtualized \ +static_assert(alignof(AudioComponent_IsVirtualized) == 0x000001, "Wrong alignment on AudioComponent_IsVirtualized"); \ +static_assert(sizeof(AudioComponent_IsVirtualized) == 0x000001, "Wrong size on AudioComponent_IsVirtualized"); \ +static_assert(offsetof(AudioComponent_IsVirtualized, ReturnValue) == 0x000000, "Member 'AudioComponent_IsVirtualized::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioComponent \ +static_assert(alignof(UAudioComponent) == 0x000010, "Wrong alignment on UAudioComponent"); \ +static_assert(sizeof(UAudioComponent) == 0x000C80, "Wrong size on UAudioComponent"); \ +static_assert(offsetof(UAudioComponent, Sound) == 0x000440, "Member 'UAudioComponent::Sound' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, DefaultParameters) == 0x000448, "Member 'UAudioComponent::DefaultParameters' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, InstanceParameters) == 0x000458, "Member 'UAudioComponent::InstanceParameters' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, SoundClassOverride) == 0x000468, "Member 'UAudioComponent::SoundClassOverride' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AudioComponentUserID) == 0x000478, "Member 'UAudioComponent::AudioComponentUserID' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, PitchModulationMin) == 0x000480, "Member 'UAudioComponent::PitchModulationMin' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, PitchModulationMax) == 0x000484, "Member 'UAudioComponent::PitchModulationMax' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, VolumeModulationMin) == 0x000488, "Member 'UAudioComponent::VolumeModulationMin' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, VolumeModulationMax) == 0x00048C, "Member 'UAudioComponent::VolumeModulationMax' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, VolumeMultiplier) == 0x000490, "Member 'UAudioComponent::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, EnvelopeFollowerAttackTime) == 0x000494, "Member 'UAudioComponent::EnvelopeFollowerAttackTime' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, EnvelopeFollowerReleaseTime) == 0x000498, "Member 'UAudioComponent::EnvelopeFollowerReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, Priority) == 0x00049C, "Member 'UAudioComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, SubtitlePriority) == 0x0004A0, "Member 'UAudioComponent::SubtitlePriority' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, SourceEffectChain) == 0x0004A8, "Member 'UAudioComponent::SourceEffectChain' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, PitchMultiplier) == 0x0004B0, "Member 'UAudioComponent::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, LowPassFilterFrequency) == 0x0004B4, "Member 'UAudioComponent::LowPassFilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AttenuationSettings) == 0x0004C0, "Member 'UAudioComponent::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AttenuationOverrides) == 0x0004C8, "Member 'UAudioComponent::AttenuationOverrides' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, ConcurrencySettings) == 0x000898, "Member 'UAudioComponent::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, ConcurrencySet) == 0x0008A0, "Member 'UAudioComponent::ConcurrencySet' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AutoAttachLocationRule) == 0x0008FC, "Member 'UAudioComponent::AutoAttachLocationRule' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AutoAttachRotationRule) == 0x0008FD, "Member 'UAudioComponent::AutoAttachRotationRule' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AutoAttachScaleRule) == 0x0008FE, "Member 'UAudioComponent::AutoAttachScaleRule' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, ModulationRouting) == 0x000900, "Member 'UAudioComponent::ModulationRouting' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioPlayStateChanged) == 0x000A68, "Member 'UAudioComponent::OnAudioPlayStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioVirtualizationChanged) == 0x000A90, "Member 'UAudioComponent::OnAudioVirtualizationChanged' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioFinished) == 0x000AB8, "Member 'UAudioComponent::OnAudioFinished' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioPlaybackPercent) == 0x000AE0, "Member 'UAudioComponent::OnAudioPlaybackPercent' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioSingleEnvelopeValue) == 0x000B08, "Member 'UAudioComponent::OnAudioSingleEnvelopeValue' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnAudioMultiEnvelopeValue) == 0x000B30, "Member 'UAudioComponent::OnAudioMultiEnvelopeValue' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, OnQueueSubtitles) == 0x000B58, "Member 'UAudioComponent::OnQueueSubtitles' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AutoAttachParent) == 0x000B78, "Member 'UAudioComponent::AutoAttachParent' has a wrong offset!"); \ +static_assert(offsetof(UAudioComponent, AutoAttachSocketName) == 0x000B80, "Member 'UAudioComponent::AutoAttachSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPieFixupTestObject \ +static_assert(alignof(UPieFixupTestObject) == 0x000008, "Wrong alignment on UPieFixupTestObject"); \ +static_assert(sizeof(UPieFixupTestObject) == 0x0000C8, "Wrong size on UPieFixupTestObject"); \ +static_assert(offsetof(UPieFixupTestObject, Path) == 0x000028, "Member 'UPieFixupTestObject::Path' has a wrong offset!"); \ +static_assert(offsetof(UPieFixupTestObject, TypedPtr) == 0x000048, "Member 'UPieFixupTestObject::TypedPtr' has a wrong offset!"); \ +static_assert(offsetof(UPieFixupTestObject, Struct) == 0x000070, "Member 'UPieFixupTestObject::Struct' has a wrong offset!"); \ +static_assert(offsetof(UPieFixupTestObject, Array) == 0x0000B8, "Member 'UPieFixupTestObject::Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASceneCapture \ +static_assert(alignof(ASceneCapture) == 0x000008, "Wrong alignment on ASceneCapture"); \ +static_assert(sizeof(ASceneCapture) == 0x0002A8, "Wrong size on ASceneCapture"); \ +static_assert(offsetof(ASceneCapture, MeshComp) == 0x000298, "Member 'ASceneCapture::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(ASceneCapture, SceneComponent) == 0x0002A0, "Member 'ASceneCapture::SceneComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlanarReflection_OnInterpToggle \ +static_assert(alignof(PlanarReflection_OnInterpToggle) == 0x000001, "Wrong alignment on PlanarReflection_OnInterpToggle"); \ +static_assert(sizeof(PlanarReflection_OnInterpToggle) == 0x000001, "Wrong size on PlanarReflection_OnInterpToggle"); \ +static_assert(offsetof(PlanarReflection_OnInterpToggle, bEnable) == 0x000000, "Member 'PlanarReflection_OnInterpToggle::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlanarReflection \ +static_assert(alignof(APlanarReflection) == 0x000008, "Wrong alignment on APlanarReflection"); \ +static_assert(sizeof(APlanarReflection) == 0x0002B8, "Wrong size on APlanarReflection"); \ +static_assert(offsetof(APlanarReflection, PlanarReflectionComponent) == 0x0002A8, "Member 'APlanarReflection::PlanarReflectionComponent' has a wrong offset!"); \ +static_assert(offsetof(APlanarReflection, bShowPreviewPlane) == 0x0002B0, "Member 'APlanarReflection::bShowPreviewPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_HideActorComponents \ +static_assert(alignof(SceneCaptureComponent_HideActorComponents) == 0x000008, "Wrong alignment on SceneCaptureComponent_HideActorComponents"); \ +static_assert(sizeof(SceneCaptureComponent_HideActorComponents) == 0x000010, "Wrong size on SceneCaptureComponent_HideActorComponents"); \ +static_assert(offsetof(SceneCaptureComponent_HideActorComponents, InActor) == 0x000000, "Member 'SceneCaptureComponent_HideActorComponents::InActor' has a wrong offset!"); \ +static_assert(offsetof(SceneCaptureComponent_HideActorComponents, bIncludeFromChildActors) == 0x000008, "Member 'SceneCaptureComponent_HideActorComponents::bIncludeFromChildActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_HideComponent \ +static_assert(alignof(SceneCaptureComponent_HideComponent) == 0x000008, "Wrong alignment on SceneCaptureComponent_HideComponent"); \ +static_assert(sizeof(SceneCaptureComponent_HideComponent) == 0x000008, "Wrong size on SceneCaptureComponent_HideComponent"); \ +static_assert(offsetof(SceneCaptureComponent_HideComponent, InComponent) == 0x000000, "Member 'SceneCaptureComponent_HideComponent::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_RemoveShowOnlyActorComponents \ +static_assert(alignof(SceneCaptureComponent_RemoveShowOnlyActorComponents) == 0x000008, "Wrong alignment on SceneCaptureComponent_RemoveShowOnlyActorComponents"); \ +static_assert(sizeof(SceneCaptureComponent_RemoveShowOnlyActorComponents) == 0x000010, "Wrong size on SceneCaptureComponent_RemoveShowOnlyActorComponents"); \ +static_assert(offsetof(SceneCaptureComponent_RemoveShowOnlyActorComponents, InActor) == 0x000000, "Member 'SceneCaptureComponent_RemoveShowOnlyActorComponents::InActor' has a wrong offset!"); \ +static_assert(offsetof(SceneCaptureComponent_RemoveShowOnlyActorComponents, bIncludeFromChildActors) == 0x000008, "Member 'SceneCaptureComponent_RemoveShowOnlyActorComponents::bIncludeFromChildActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_RemoveShowOnlyComponent \ +static_assert(alignof(SceneCaptureComponent_RemoveShowOnlyComponent) == 0x000008, "Wrong alignment on SceneCaptureComponent_RemoveShowOnlyComponent"); \ +static_assert(sizeof(SceneCaptureComponent_RemoveShowOnlyComponent) == 0x000008, "Wrong size on SceneCaptureComponent_RemoveShowOnlyComponent"); \ +static_assert(offsetof(SceneCaptureComponent_RemoveShowOnlyComponent, InComponent) == 0x000000, "Member 'SceneCaptureComponent_RemoveShowOnlyComponent::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_SetCaptureSortPriority \ +static_assert(alignof(SceneCaptureComponent_SetCaptureSortPriority) == 0x000004, "Wrong alignment on SceneCaptureComponent_SetCaptureSortPriority"); \ +static_assert(sizeof(SceneCaptureComponent_SetCaptureSortPriority) == 0x000004, "Wrong size on SceneCaptureComponent_SetCaptureSortPriority"); \ +static_assert(offsetof(SceneCaptureComponent_SetCaptureSortPriority, NewCaptureSortPriority) == 0x000000, "Member 'SceneCaptureComponent_SetCaptureSortPriority::NewCaptureSortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_ShowOnlyActorComponents \ +static_assert(alignof(SceneCaptureComponent_ShowOnlyActorComponents) == 0x000008, "Wrong alignment on SceneCaptureComponent_ShowOnlyActorComponents"); \ +static_assert(sizeof(SceneCaptureComponent_ShowOnlyActorComponents) == 0x000010, "Wrong size on SceneCaptureComponent_ShowOnlyActorComponents"); \ +static_assert(offsetof(SceneCaptureComponent_ShowOnlyActorComponents, InActor) == 0x000000, "Member 'SceneCaptureComponent_ShowOnlyActorComponents::InActor' has a wrong offset!"); \ +static_assert(offsetof(SceneCaptureComponent_ShowOnlyActorComponents, bIncludeFromChildActors) == 0x000008, "Member 'SceneCaptureComponent_ShowOnlyActorComponents::bIncludeFromChildActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent_ShowOnlyComponent \ +static_assert(alignof(SceneCaptureComponent_ShowOnlyComponent) == 0x000008, "Wrong alignment on SceneCaptureComponent_ShowOnlyComponent"); \ +static_assert(sizeof(SceneCaptureComponent_ShowOnlyComponent) == 0x000008, "Wrong size on SceneCaptureComponent_ShowOnlyComponent"); \ +static_assert(offsetof(SceneCaptureComponent_ShowOnlyComponent, InComponent) == 0x000000, "Member 'SceneCaptureComponent_ShowOnlyComponent::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USceneCaptureComponent \ +static_assert(alignof(USceneCaptureComponent) == 0x000010, "Wrong alignment on USceneCaptureComponent"); \ +static_assert(sizeof(USceneCaptureComponent) == 0x000360, "Wrong size on USceneCaptureComponent"); \ +static_assert(offsetof(USceneCaptureComponent, PrimitiveRenderMode) == 0x0002A0, "Member 'USceneCaptureComponent::PrimitiveRenderMode' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, CaptureSource) == 0x0002A1, "Member 'USceneCaptureComponent::CaptureSource' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, bAlwaysPersistRenderingState) == 0x0002A3, "Member 'USceneCaptureComponent::bAlwaysPersistRenderingState' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, HiddenComponents) == 0x0002A8, "Member 'USceneCaptureComponent::HiddenComponents' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, HiddenActors) == 0x0002B8, "Member 'USceneCaptureComponent::HiddenActors' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, ShowOnlyComponents) == 0x0002C8, "Member 'USceneCaptureComponent::ShowOnlyComponents' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, ShowOnlyActors) == 0x0002D8, "Member 'USceneCaptureComponent::ShowOnlyActors' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, LODDistanceFactor) == 0x0002E8, "Member 'USceneCaptureComponent::LODDistanceFactor' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, MaxViewDistanceOverride) == 0x0002EC, "Member 'USceneCaptureComponent::MaxViewDistanceOverride' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, CaptureSortPriority) == 0x0002F0, "Member 'USceneCaptureComponent::CaptureSortPriority' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, bUseRayTracingIfEnabled) == 0x0002F4, "Member 'USceneCaptureComponent::bUseRayTracingIfEnabled' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, ShowFlagSettings) == 0x0002F8, "Member 'USceneCaptureComponent::ShowFlagSettings' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent, ProfilingEventName) == 0x000338, "Member 'USceneCaptureComponent::ProfilingEventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoxComponent_SetBoxExtent \ +static_assert(alignof(BoxComponent_SetBoxExtent) == 0x000008, "Wrong alignment on BoxComponent_SetBoxExtent"); \ +static_assert(sizeof(BoxComponent_SetBoxExtent) == 0x000020, "Wrong size on BoxComponent_SetBoxExtent"); \ +static_assert(offsetof(BoxComponent_SetBoxExtent, InBoxExtent) == 0x000000, "Member 'BoxComponent_SetBoxExtent::InBoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BoxComponent_SetBoxExtent, bUpdateOverlaps) == 0x000018, "Member 'BoxComponent_SetBoxExtent::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoxComponent_SetLineThickness \ +static_assert(alignof(BoxComponent_SetLineThickness) == 0x000004, "Wrong alignment on BoxComponent_SetLineThickness"); \ +static_assert(sizeof(BoxComponent_SetLineThickness) == 0x000004, "Wrong size on BoxComponent_SetLineThickness"); \ +static_assert(offsetof(BoxComponent_SetLineThickness, Thickness) == 0x000000, "Member 'BoxComponent_SetLineThickness::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoxComponent_GetScaledBoxExtent \ +static_assert(alignof(BoxComponent_GetScaledBoxExtent) == 0x000008, "Wrong alignment on BoxComponent_GetScaledBoxExtent"); \ +static_assert(sizeof(BoxComponent_GetScaledBoxExtent) == 0x000018, "Wrong size on BoxComponent_GetScaledBoxExtent"); \ +static_assert(offsetof(BoxComponent_GetScaledBoxExtent, ReturnValue) == 0x000000, "Member 'BoxComponent_GetScaledBoxExtent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoxComponent_GetUnscaledBoxExtent \ +static_assert(alignof(BoxComponent_GetUnscaledBoxExtent) == 0x000008, "Wrong alignment on BoxComponent_GetUnscaledBoxExtent"); \ +static_assert(sizeof(BoxComponent_GetUnscaledBoxExtent) == 0x000018, "Wrong size on BoxComponent_GetUnscaledBoxExtent"); \ +static_assert(offsetof(BoxComponent_GetUnscaledBoxExtent, ReturnValue) == 0x000000, "Member 'BoxComponent_GetUnscaledBoxExtent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoxComponent \ +static_assert(alignof(UBoxComponent) == 0x000010, "Wrong alignment on UBoxComponent"); \ +static_assert(sizeof(UBoxComponent) == 0x0005B0, "Wrong size on UBoxComponent"); \ +static_assert(offsetof(UBoxComponent, BoxExtent) == 0x000590, "Member 'UBoxComponent::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(UBoxComponent, LineThickness) == 0x0005A8, "Member 'UBoxComponent::LineThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlanarReflectionComponent \ +static_assert(alignof(UPlanarReflectionComponent) == 0x000010, "Wrong alignment on UPlanarReflectionComponent"); \ +static_assert(sizeof(UPlanarReflectionComponent) == 0x0004C0, "Wrong size on UPlanarReflectionComponent"); \ +static_assert(offsetof(UPlanarReflectionComponent, PreviewBox) == 0x000358, "Member 'UPlanarReflectionComponent::PreviewBox' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, NormalDistortionStrength) == 0x000360, "Member 'UPlanarReflectionComponent::NormalDistortionStrength' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, PrefilterRoughness) == 0x000364, "Member 'UPlanarReflectionComponent::PrefilterRoughness' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, PrefilterRoughnessDistance) == 0x000368, "Member 'UPlanarReflectionComponent::PrefilterRoughnessDistance' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, ScreenPercentage) == 0x00036C, "Member 'UPlanarReflectionComponent::ScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, ExtraFOV) == 0x000370, "Member 'UPlanarReflectionComponent::ExtraFOV' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, DistanceFromPlaneFadeStart) == 0x000374, "Member 'UPlanarReflectionComponent::DistanceFromPlaneFadeStart' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, DistanceFromPlaneFadeEnd) == 0x000378, "Member 'UPlanarReflectionComponent::DistanceFromPlaneFadeEnd' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, DistanceFromPlaneFadeoutStart) == 0x00037C, "Member 'UPlanarReflectionComponent::DistanceFromPlaneFadeoutStart' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, DistanceFromPlaneFadeoutEnd) == 0x000380, "Member 'UPlanarReflectionComponent::DistanceFromPlaneFadeoutEnd' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, AngleFromPlaneFadeStart) == 0x000384, "Member 'UPlanarReflectionComponent::AngleFromPlaneFadeStart' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, AngleFromPlaneFadeEnd) == 0x000388, "Member 'UPlanarReflectionComponent::AngleFromPlaneFadeEnd' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, bShowPreviewPlane) == 0x00038C, "Member 'UPlanarReflectionComponent::bShowPreviewPlane' has a wrong offset!"); \ +static_assert(offsetof(UPlanarReflectionComponent, bRenderSceneTwoSided) == 0x00038D, "Member 'UPlanarReflectionComponent::bRenderSceneTwoSided' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlaneReflectionCapture \ +static_assert(alignof(APlaneReflectionCapture) == 0x000008, "Wrong alignment on APlaneReflectionCapture"); \ +static_assert(sizeof(APlaneReflectionCapture) == 0x0002A0, "Wrong size on APlaneReflectionCapture"); \ + +#define DUMPER7_ASSERTS_UPlaneReflectionCaptureComponent \ +static_assert(alignof(UPlaneReflectionCaptureComponent) == 0x000010, "Wrong alignment on UPlaneReflectionCaptureComponent"); \ +static_assert(sizeof(UPlaneReflectionCaptureComponent) == 0x000330, "Wrong size on UPlaneReflectionCaptureComponent"); \ +static_assert(offsetof(UPlaneReflectionCaptureComponent, InfluenceRadiusScale) == 0x000310, "Member 'UPlaneReflectionCaptureComponent::InfluenceRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(UPlaneReflectionCaptureComponent, PreviewInfluenceRadius) == 0x000318, "Member 'UPlaneReflectionCaptureComponent::PreviewInfluenceRadius' has a wrong offset!"); \ +static_assert(offsetof(UPlaneReflectionCaptureComponent, PreviewCaptureBox) == 0x000320, "Member 'UPlaneReflectionCaptureComponent::PreviewCaptureBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformInterfaceWebResponse_GetHeader \ +static_assert(alignof(PlatformInterfaceWebResponse_GetHeader) == 0x000008, "Wrong alignment on PlatformInterfaceWebResponse_GetHeader"); \ +static_assert(sizeof(PlatformInterfaceWebResponse_GetHeader) == 0x000028, "Wrong size on PlatformInterfaceWebResponse_GetHeader"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetHeader, HeaderIndex) == 0x000000, "Member 'PlatformInterfaceWebResponse_GetHeader::HeaderIndex' has a wrong offset!"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetHeader, Header) == 0x000008, "Member 'PlatformInterfaceWebResponse_GetHeader::Header' has a wrong offset!"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetHeader, Value) == 0x000018, "Member 'PlatformInterfaceWebResponse_GetHeader::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformInterfaceWebResponse_GetHeaderValue \ +static_assert(alignof(PlatformInterfaceWebResponse_GetHeaderValue) == 0x000008, "Wrong alignment on PlatformInterfaceWebResponse_GetHeaderValue"); \ +static_assert(sizeof(PlatformInterfaceWebResponse_GetHeaderValue) == 0x000020, "Wrong size on PlatformInterfaceWebResponse_GetHeaderValue"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetHeaderValue, HeaderName) == 0x000000, "Member 'PlatformInterfaceWebResponse_GetHeaderValue::HeaderName' has a wrong offset!"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetHeaderValue, ReturnValue) == 0x000010, "Member 'PlatformInterfaceWebResponse_GetHeaderValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformInterfaceWebResponse_GetNumHeaders \ +static_assert(alignof(PlatformInterfaceWebResponse_GetNumHeaders) == 0x000004, "Wrong alignment on PlatformInterfaceWebResponse_GetNumHeaders"); \ +static_assert(sizeof(PlatformInterfaceWebResponse_GetNumHeaders) == 0x000004, "Wrong size on PlatformInterfaceWebResponse_GetNumHeaders"); \ +static_assert(offsetof(PlatformInterfaceWebResponse_GetNumHeaders, ReturnValue) == 0x000000, "Member 'PlatformInterfaceWebResponse_GetNumHeaders::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlatformInterfaceWebResponse \ +static_assert(alignof(UPlatformInterfaceWebResponse) == 0x000008, "Wrong alignment on UPlatformInterfaceWebResponse"); \ +static_assert(sizeof(UPlatformInterfaceWebResponse) == 0x0000B0, "Wrong size on UPlatformInterfaceWebResponse"); \ +static_assert(offsetof(UPlatformInterfaceWebResponse, OriginalURL) == 0x000028, "Member 'UPlatformInterfaceWebResponse::OriginalURL' has a wrong offset!"); \ +static_assert(offsetof(UPlatformInterfaceWebResponse, ResponseCode) == 0x000038, "Member 'UPlatformInterfaceWebResponse::ResponseCode' has a wrong offset!"); \ +static_assert(offsetof(UPlatformInterfaceWebResponse, Tag) == 0x00003C, "Member 'UPlatformInterfaceWebResponse::Tag' has a wrong offset!"); \ +static_assert(offsetof(UPlatformInterfaceWebResponse, StringResponse) == 0x000040, "Member 'UPlatformInterfaceWebResponse::StringResponse' has a wrong offset!"); \ +static_assert(offsetof(UPlatformInterfaceWebResponse, BinaryResponse) == 0x000050, "Member 'UPlatformInterfaceWebResponse::BinaryResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPoseAsset \ +static_assert(alignof(UPoseAsset) == 0x000008, "Wrong alignment on UPoseAsset"); \ +static_assert(sizeof(UPoseAsset) == 0x000110, "Wrong size on UPoseAsset"); \ +static_assert(offsetof(UPoseAsset, PoseContainer) == 0x000080, "Member 'UPoseAsset::PoseContainer' has a wrong offset!"); \ +static_assert(offsetof(UPoseAsset, bAdditivePose) == 0x0000F0, "Member 'UPoseAsset::bAdditivePose' has a wrong offset!"); \ +static_assert(offsetof(UPoseAsset, BasePoseIndex) == 0x0000F4, "Member 'UPoseAsset::BasePoseIndex' has a wrong offset!"); \ +static_assert(offsetof(UPoseAsset, RetargetSource) == 0x0000F8, "Member 'UPoseAsset::RetargetSource' has a wrong offset!"); \ +static_assert(offsetof(UPoseAsset, RetargetSourceAssetReferencePose) == 0x000100, "Member 'UPoseAsset::RetargetSourceAssetReferencePose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_AddCameraLensEffect \ +static_assert(alignof(PlayerCameraManager_AddCameraLensEffect) == 0x000008, "Wrong alignment on PlayerCameraManager_AddCameraLensEffect"); \ +static_assert(sizeof(PlayerCameraManager_AddCameraLensEffect) == 0x000010, "Wrong size on PlayerCameraManager_AddCameraLensEffect"); \ +static_assert(offsetof(PlayerCameraManager_AddCameraLensEffect, LensEffectEmitterClass) == 0x000000, "Member 'PlayerCameraManager_AddCameraLensEffect::LensEffectEmitterClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_AddCameraLensEffect, ReturnValue) == 0x000008, "Member 'PlayerCameraManager_AddCameraLensEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_AddGenericCameraLensEffect \ +static_assert(alignof(PlayerCameraManager_AddGenericCameraLensEffect) == 0x000008, "Wrong alignment on PlayerCameraManager_AddGenericCameraLensEffect"); \ +static_assert(sizeof(PlayerCameraManager_AddGenericCameraLensEffect) == 0x000018, "Wrong size on PlayerCameraManager_AddGenericCameraLensEffect"); \ +static_assert(offsetof(PlayerCameraManager_AddGenericCameraLensEffect, LensEffectEmitterClass) == 0x000000, "Member 'PlayerCameraManager_AddGenericCameraLensEffect::LensEffectEmitterClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_AddGenericCameraLensEffect, ReturnValue) == 0x000008, "Member 'PlayerCameraManager_AddGenericCameraLensEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_AddNewCameraModifier \ +static_assert(alignof(PlayerCameraManager_AddNewCameraModifier) == 0x000008, "Wrong alignment on PlayerCameraManager_AddNewCameraModifier"); \ +static_assert(sizeof(PlayerCameraManager_AddNewCameraModifier) == 0x000010, "Wrong size on PlayerCameraManager_AddNewCameraModifier"); \ +static_assert(offsetof(PlayerCameraManager_AddNewCameraModifier, ModifierClass) == 0x000000, "Member 'PlayerCameraManager_AddNewCameraModifier::ModifierClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_AddNewCameraModifier, ReturnValue) == 0x000008, "Member 'PlayerCameraManager_AddNewCameraModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_BlueprintUpdateCamera \ +static_assert(alignof(PlayerCameraManager_BlueprintUpdateCamera) == 0x000008, "Wrong alignment on PlayerCameraManager_BlueprintUpdateCamera"); \ +static_assert(sizeof(PlayerCameraManager_BlueprintUpdateCamera) == 0x000040, "Wrong size on PlayerCameraManager_BlueprintUpdateCamera"); \ +static_assert(offsetof(PlayerCameraManager_BlueprintUpdateCamera, CameraTarget) == 0x000000, "Member 'PlayerCameraManager_BlueprintUpdateCamera::CameraTarget' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_BlueprintUpdateCamera, NewCameraLocation) == 0x000008, "Member 'PlayerCameraManager_BlueprintUpdateCamera::NewCameraLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_BlueprintUpdateCamera, NewCameraRotation) == 0x000020, "Member 'PlayerCameraManager_BlueprintUpdateCamera::NewCameraRotation' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_BlueprintUpdateCamera, NewCameraFOV) == 0x000038, "Member 'PlayerCameraManager_BlueprintUpdateCamera::NewCameraFOV' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_BlueprintUpdateCamera, ReturnValue) == 0x00003C, "Member 'PlayerCameraManager_BlueprintUpdateCamera::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_FindCameraModifierByClass \ +static_assert(alignof(PlayerCameraManager_FindCameraModifierByClass) == 0x000008, "Wrong alignment on PlayerCameraManager_FindCameraModifierByClass"); \ +static_assert(sizeof(PlayerCameraManager_FindCameraModifierByClass) == 0x000010, "Wrong size on PlayerCameraManager_FindCameraModifierByClass"); \ +static_assert(offsetof(PlayerCameraManager_FindCameraModifierByClass, ModifierClass) == 0x000000, "Member 'PlayerCameraManager_FindCameraModifierByClass::ModifierClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_FindCameraModifierByClass, ReturnValue) == 0x000008, "Member 'PlayerCameraManager_FindCameraModifierByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_PhotographyCameraModify \ +static_assert(alignof(PlayerCameraManager_PhotographyCameraModify) == 0x000008, "Wrong alignment on PlayerCameraManager_PhotographyCameraModify"); \ +static_assert(sizeof(PlayerCameraManager_PhotographyCameraModify) == 0x000060, "Wrong size on PlayerCameraManager_PhotographyCameraModify"); \ +static_assert(offsetof(PlayerCameraManager_PhotographyCameraModify, NewCameraLocation) == 0x000000, "Member 'PlayerCameraManager_PhotographyCameraModify::NewCameraLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_PhotographyCameraModify, PreviousCameraLocation) == 0x000018, "Member 'PlayerCameraManager_PhotographyCameraModify::PreviousCameraLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_PhotographyCameraModify, OriginalCameraLocation) == 0x000030, "Member 'PlayerCameraManager_PhotographyCameraModify::OriginalCameraLocation' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_PhotographyCameraModify, ResultCameraLocation) == 0x000048, "Member 'PlayerCameraManager_PhotographyCameraModify::ResultCameraLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_RemoveCameraLensEffect \ +static_assert(alignof(PlayerCameraManager_RemoveCameraLensEffect) == 0x000008, "Wrong alignment on PlayerCameraManager_RemoveCameraLensEffect"); \ +static_assert(sizeof(PlayerCameraManager_RemoveCameraLensEffect) == 0x000008, "Wrong size on PlayerCameraManager_RemoveCameraLensEffect"); \ +static_assert(offsetof(PlayerCameraManager_RemoveCameraLensEffect, Emitter) == 0x000000, "Member 'PlayerCameraManager_RemoveCameraLensEffect::Emitter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_RemoveCameraModifier \ +static_assert(alignof(PlayerCameraManager_RemoveCameraModifier) == 0x000008, "Wrong alignment on PlayerCameraManager_RemoveCameraModifier"); \ +static_assert(sizeof(PlayerCameraManager_RemoveCameraModifier) == 0x000010, "Wrong size on PlayerCameraManager_RemoveCameraModifier"); \ +static_assert(offsetof(PlayerCameraManager_RemoveCameraModifier, ModifierToRemove) == 0x000000, "Member 'PlayerCameraManager_RemoveCameraModifier::ModifierToRemove' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_RemoveCameraModifier, ReturnValue) == 0x000008, "Member 'PlayerCameraManager_RemoveCameraModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_RemoveGenericCameraLensEffect \ +static_assert(alignof(PlayerCameraManager_RemoveGenericCameraLensEffect) == 0x000008, "Wrong alignment on PlayerCameraManager_RemoveGenericCameraLensEffect"); \ +static_assert(sizeof(PlayerCameraManager_RemoveGenericCameraLensEffect) == 0x000010, "Wrong size on PlayerCameraManager_RemoveGenericCameraLensEffect"); \ +static_assert(offsetof(PlayerCameraManager_RemoveGenericCameraLensEffect, Emitter) == 0x000000, "Member 'PlayerCameraManager_RemoveGenericCameraLensEffect::Emitter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_SetManualCameraFade \ +static_assert(alignof(PlayerCameraManager_SetManualCameraFade) == 0x000004, "Wrong alignment on PlayerCameraManager_SetManualCameraFade"); \ +static_assert(sizeof(PlayerCameraManager_SetManualCameraFade) == 0x000018, "Wrong size on PlayerCameraManager_SetManualCameraFade"); \ +static_assert(offsetof(PlayerCameraManager_SetManualCameraFade, InFadeAmount) == 0x000000, "Member 'PlayerCameraManager_SetManualCameraFade::InFadeAmount' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_SetManualCameraFade, Color) == 0x000004, "Member 'PlayerCameraManager_SetManualCameraFade::Color' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_SetManualCameraFade, bInFadeAudio) == 0x000014, "Member 'PlayerCameraManager_SetManualCameraFade::bInFadeAudio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StartCameraFade \ +static_assert(alignof(PlayerCameraManager_StartCameraFade) == 0x000004, "Wrong alignment on PlayerCameraManager_StartCameraFade"); \ +static_assert(sizeof(PlayerCameraManager_StartCameraFade) == 0x000020, "Wrong size on PlayerCameraManager_StartCameraFade"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, FromAlpha) == 0x000000, "Member 'PlayerCameraManager_StartCameraFade::FromAlpha' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, ToAlpha) == 0x000004, "Member 'PlayerCameraManager_StartCameraFade::ToAlpha' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, Duration) == 0x000008, "Member 'PlayerCameraManager_StartCameraFade::Duration' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, Color) == 0x00000C, "Member 'PlayerCameraManager_StartCameraFade::Color' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, bShouldFadeAudio) == 0x00001C, "Member 'PlayerCameraManager_StartCameraFade::bShouldFadeAudio' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraFade, bHoldWhenFinished) == 0x00001D, "Member 'PlayerCameraManager_StartCameraFade::bHoldWhenFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StartCameraShake \ +static_assert(alignof(PlayerCameraManager_StartCameraShake) == 0x000008, "Wrong alignment on PlayerCameraManager_StartCameraShake"); \ +static_assert(sizeof(PlayerCameraManager_StartCameraShake) == 0x000030, "Wrong size on PlayerCameraManager_StartCameraShake"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShake, ShakeClass) == 0x000000, "Member 'PlayerCameraManager_StartCameraShake::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShake, Scale) == 0x000008, "Member 'PlayerCameraManager_StartCameraShake::Scale' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShake, PlaySpace) == 0x00000C, "Member 'PlayerCameraManager_StartCameraShake::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShake, UserPlaySpaceRot) == 0x000010, "Member 'PlayerCameraManager_StartCameraShake::UserPlaySpaceRot' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShake, ReturnValue) == 0x000028, "Member 'PlayerCameraManager_StartCameraShake::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StartCameraShakeFromSource \ +static_assert(alignof(PlayerCameraManager_StartCameraShakeFromSource) == 0x000008, "Wrong alignment on PlayerCameraManager_StartCameraShakeFromSource"); \ +static_assert(sizeof(PlayerCameraManager_StartCameraShakeFromSource) == 0x000038, "Wrong size on PlayerCameraManager_StartCameraShakeFromSource"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, ShakeClass) == 0x000000, "Member 'PlayerCameraManager_StartCameraShakeFromSource::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, SourceComponent) == 0x000008, "Member 'PlayerCameraManager_StartCameraShakeFromSource::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, Scale) == 0x000010, "Member 'PlayerCameraManager_StartCameraShakeFromSource::Scale' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, PlaySpace) == 0x000014, "Member 'PlayerCameraManager_StartCameraShakeFromSource::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, UserPlaySpaceRot) == 0x000018, "Member 'PlayerCameraManager_StartCameraShakeFromSource::UserPlaySpaceRot' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StartCameraShakeFromSource, ReturnValue) == 0x000030, "Member 'PlayerCameraManager_StartCameraShakeFromSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StopAllCameraShakes \ +static_assert(alignof(PlayerCameraManager_StopAllCameraShakes) == 0x000001, "Wrong alignment on PlayerCameraManager_StopAllCameraShakes"); \ +static_assert(sizeof(PlayerCameraManager_StopAllCameraShakes) == 0x000001, "Wrong size on PlayerCameraManager_StopAllCameraShakes"); \ +static_assert(offsetof(PlayerCameraManager_StopAllCameraShakes, bImmediately) == 0x000000, "Member 'PlayerCameraManager_StopAllCameraShakes::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StopAllCameraShakesFromSource \ +static_assert(alignof(PlayerCameraManager_StopAllCameraShakesFromSource) == 0x000008, "Wrong alignment on PlayerCameraManager_StopAllCameraShakesFromSource"); \ +static_assert(sizeof(PlayerCameraManager_StopAllCameraShakesFromSource) == 0x000010, "Wrong size on PlayerCameraManager_StopAllCameraShakesFromSource"); \ +static_assert(offsetof(PlayerCameraManager_StopAllCameraShakesFromSource, SourceComponent) == 0x000000, "Member 'PlayerCameraManager_StopAllCameraShakesFromSource::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StopAllCameraShakesFromSource, bImmediately) == 0x000008, "Member 'PlayerCameraManager_StopAllCameraShakesFromSource::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StopAllInstancesOfCameraShake \ +static_assert(alignof(PlayerCameraManager_StopAllInstancesOfCameraShake) == 0x000008, "Wrong alignment on PlayerCameraManager_StopAllInstancesOfCameraShake"); \ +static_assert(sizeof(PlayerCameraManager_StopAllInstancesOfCameraShake) == 0x000010, "Wrong size on PlayerCameraManager_StopAllInstancesOfCameraShake"); \ +static_assert(offsetof(PlayerCameraManager_StopAllInstancesOfCameraShake, Shake) == 0x000000, "Member 'PlayerCameraManager_StopAllInstancesOfCameraShake::Shake' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StopAllInstancesOfCameraShake, bImmediately) == 0x000008, "Member 'PlayerCameraManager_StopAllInstancesOfCameraShake::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource \ +static_assert(alignof(PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource) == 0x000008, "Wrong alignment on PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource"); \ +static_assert(sizeof(PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource) == 0x000018, "Wrong size on PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource"); \ +static_assert(offsetof(PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource, Shake) == 0x000000, "Member 'PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource::Shake' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource, SourceComponent) == 0x000008, "Member 'PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource, bImmediately) == 0x000010, "Member 'PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_StopCameraShake \ +static_assert(alignof(PlayerCameraManager_StopCameraShake) == 0x000008, "Wrong alignment on PlayerCameraManager_StopCameraShake"); \ +static_assert(sizeof(PlayerCameraManager_StopCameraShake) == 0x000010, "Wrong size on PlayerCameraManager_StopCameraShake"); \ +static_assert(offsetof(PlayerCameraManager_StopCameraShake, ShakeInstance) == 0x000000, "Member 'PlayerCameraManager_StopCameraShake::ShakeInstance' has a wrong offset!"); \ +static_assert(offsetof(PlayerCameraManager_StopCameraShake, bImmediately) == 0x000008, "Member 'PlayerCameraManager_StopCameraShake::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_GetCameraLocation \ +static_assert(alignof(PlayerCameraManager_GetCameraLocation) == 0x000008, "Wrong alignment on PlayerCameraManager_GetCameraLocation"); \ +static_assert(sizeof(PlayerCameraManager_GetCameraLocation) == 0x000018, "Wrong size on PlayerCameraManager_GetCameraLocation"); \ +static_assert(offsetof(PlayerCameraManager_GetCameraLocation, ReturnValue) == 0x000000, "Member 'PlayerCameraManager_GetCameraLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_GetCameraRotation \ +static_assert(alignof(PlayerCameraManager_GetCameraRotation) == 0x000008, "Wrong alignment on PlayerCameraManager_GetCameraRotation"); \ +static_assert(sizeof(PlayerCameraManager_GetCameraRotation) == 0x000018, "Wrong size on PlayerCameraManager_GetCameraRotation"); \ +static_assert(offsetof(PlayerCameraManager_GetCameraRotation, ReturnValue) == 0x000000, "Member 'PlayerCameraManager_GetCameraRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_GetFOVAngle \ +static_assert(alignof(PlayerCameraManager_GetFOVAngle) == 0x000004, "Wrong alignment on PlayerCameraManager_GetFOVAngle"); \ +static_assert(sizeof(PlayerCameraManager_GetFOVAngle) == 0x000004, "Wrong size on PlayerCameraManager_GetFOVAngle"); \ +static_assert(offsetof(PlayerCameraManager_GetFOVAngle, ReturnValue) == 0x000000, "Member 'PlayerCameraManager_GetFOVAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerCameraManager_GetOwningPlayerController \ +static_assert(alignof(PlayerCameraManager_GetOwningPlayerController) == 0x000008, "Wrong alignment on PlayerCameraManager_GetOwningPlayerController"); \ +static_assert(sizeof(PlayerCameraManager_GetOwningPlayerController) == 0x000008, "Wrong size on PlayerCameraManager_GetOwningPlayerController"); \ +static_assert(offsetof(PlayerCameraManager_GetOwningPlayerController, ReturnValue) == 0x000000, "Member 'PlayerCameraManager_GetOwningPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlayerCameraManager \ +static_assert(alignof(APlayerCameraManager) == 0x000010, "Wrong alignment on APlayerCameraManager"); \ +static_assert(sizeof(APlayerCameraManager) == 0x002400, "Wrong size on APlayerCameraManager"); \ +static_assert(offsetof(APlayerCameraManager, PCOwner) == 0x000298, "Member 'APlayerCameraManager::PCOwner' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, TransformComponent) == 0x0002A0, "Member 'APlayerCameraManager::TransformComponent' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, DefaultFOV) == 0x0002B0, "Member 'APlayerCameraManager::DefaultFOV' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, DefaultOrthoWidth) == 0x0002B8, "Member 'APlayerCameraManager::DefaultOrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, DefaultAspectRatio) == 0x0002C0, "Member 'APlayerCameraManager::DefaultAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewTarget) == 0x000330, "Member 'APlayerCameraManager::ViewTarget' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, PendingViewTarget) == 0x000B20, "Member 'APlayerCameraManager::PendingViewTarget' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, CameraCachePrivate) == 0x001340, "Member 'APlayerCameraManager::CameraCachePrivate' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, LastFrameCameraCachePrivate) == 0x001B20, "Member 'APlayerCameraManager::LastFrameCameraCachePrivate' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ModifierList) == 0x002300, "Member 'APlayerCameraManager::ModifierList' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, DefaultModifiers) == 0x002310, "Member 'APlayerCameraManager::DefaultModifiers' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, FreeCamDistance) == 0x002320, "Member 'APlayerCameraManager::FreeCamDistance' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, FreeCamOffset) == 0x002328, "Member 'APlayerCameraManager::FreeCamOffset' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewTargetOffset) == 0x002340, "Member 'APlayerCameraManager::ViewTargetOffset' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, OnAudioFadeChangeEvent) == 0x002358, "Member 'APlayerCameraManager::OnAudioFadeChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, CameraLensEffects) == 0x002380, "Member 'APlayerCameraManager::CameraLensEffects' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, CachedCameraShakeMod) == 0x002390, "Member 'APlayerCameraManager::CachedCameraShakeMod' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, PostProcessBlendCache) == 0x002398, "Member 'APlayerCameraManager::PostProcessBlendCache' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, AnimCameraActor) == 0x0023C8, "Member 'APlayerCameraManager::AnimCameraActor' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewPitchMin) == 0x0023D4, "Member 'APlayerCameraManager::ViewPitchMin' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewPitchMax) == 0x0023D8, "Member 'APlayerCameraManager::ViewPitchMax' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewYawMin) == 0x0023DC, "Member 'APlayerCameraManager::ViewYawMin' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewYawMax) == 0x0023E0, "Member 'APlayerCameraManager::ViewYawMax' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewRollMin) == 0x0023E4, "Member 'APlayerCameraManager::ViewRollMin' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ViewRollMax) == 0x0023E8, "Member 'APlayerCameraManager::ViewRollMax' has a wrong offset!"); \ +static_assert(offsetof(APlayerCameraManager, ServerUpdateCameraTimeout) == 0x0023F0, "Member 'APlayerCameraManager::ServerUpdateCameraTimeout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_CanDeleteElement \ +static_assert(alignof(TypedElementWorldInterface_CanDeleteElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_CanDeleteElement"); \ +static_assert(sizeof(TypedElementWorldInterface_CanDeleteElement) == 0x000010, "Wrong size on TypedElementWorldInterface_CanDeleteElement"); \ +static_assert(offsetof(TypedElementWorldInterface_CanDeleteElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_CanDeleteElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanDeleteElement, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_CanDeleteElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_CanDuplicateElement \ +static_assert(alignof(TypedElementWorldInterface_CanDuplicateElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_CanDuplicateElement"); \ +static_assert(sizeof(TypedElementWorldInterface_CanDuplicateElement) == 0x000010, "Wrong size on TypedElementWorldInterface_CanDuplicateElement"); \ +static_assert(offsetof(TypedElementWorldInterface_CanDuplicateElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_CanDuplicateElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanDuplicateElement, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_CanDuplicateElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_CanEditElement \ +static_assert(alignof(TypedElementWorldInterface_CanEditElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_CanEditElement"); \ +static_assert(sizeof(TypedElementWorldInterface_CanEditElement) == 0x000010, "Wrong size on TypedElementWorldInterface_CanEditElement"); \ +static_assert(offsetof(TypedElementWorldInterface_CanEditElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_CanEditElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanEditElement, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_CanEditElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_CanMoveElement \ +static_assert(alignof(TypedElementWorldInterface_CanMoveElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_CanMoveElement"); \ +static_assert(sizeof(TypedElementWorldInterface_CanMoveElement) == 0x000010, "Wrong size on TypedElementWorldInterface_CanMoveElement"); \ +static_assert(offsetof(TypedElementWorldInterface_CanMoveElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_CanMoveElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanMoveElement, InWorldType) == 0x000008, "Member 'TypedElementWorldInterface_CanMoveElement::InWorldType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanMoveElement, ReturnValue) == 0x000009, "Member 'TypedElementWorldInterface_CanMoveElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_CanPromoteElement \ +static_assert(alignof(TypedElementWorldInterface_CanPromoteElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_CanPromoteElement"); \ +static_assert(sizeof(TypedElementWorldInterface_CanPromoteElement) == 0x000010, "Wrong size on TypedElementWorldInterface_CanPromoteElement"); \ +static_assert(offsetof(TypedElementWorldInterface_CanPromoteElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_CanPromoteElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_CanPromoteElement, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_CanPromoteElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_DeleteElement \ +static_assert(alignof(TypedElementWorldInterface_DeleteElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_DeleteElement"); \ +static_assert(sizeof(TypedElementWorldInterface_DeleteElement) == 0x000020, "Wrong size on TypedElementWorldInterface_DeleteElement"); \ +static_assert(offsetof(TypedElementWorldInterface_DeleteElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_DeleteElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DeleteElement, InWorld) == 0x000008, "Member 'TypedElementWorldInterface_DeleteElement::InWorld' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DeleteElement, InSelectionSet) == 0x000010, "Member 'TypedElementWorldInterface_DeleteElement::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DeleteElement, InDeletionOptions) == 0x000018, "Member 'TypedElementWorldInterface_DeleteElement::InDeletionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DeleteElement, ReturnValue) == 0x00001B, "Member 'TypedElementWorldInterface_DeleteElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_DuplicateElement \ +static_assert(alignof(TypedElementWorldInterface_DuplicateElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_DuplicateElement"); \ +static_assert(sizeof(TypedElementWorldInterface_DuplicateElement) == 0x000030, "Wrong size on TypedElementWorldInterface_DuplicateElement"); \ +static_assert(offsetof(TypedElementWorldInterface_DuplicateElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_DuplicateElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DuplicateElement, InWorld) == 0x000008, "Member 'TypedElementWorldInterface_DuplicateElement::InWorld' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DuplicateElement, InLocationOffset) == 0x000010, "Member 'TypedElementWorldInterface_DuplicateElement::InLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_DuplicateElement, ReturnValue) == 0x000028, "Member 'TypedElementWorldInterface_DuplicateElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetBounds \ +static_assert(alignof(TypedElementWorldInterface_GetBounds) == 0x000008, "Wrong alignment on TypedElementWorldInterface_GetBounds"); \ +static_assert(sizeof(TypedElementWorldInterface_GetBounds) == 0x000048, "Wrong size on TypedElementWorldInterface_GetBounds"); \ +static_assert(offsetof(TypedElementWorldInterface_GetBounds, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetBounds::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetBounds, OutBounds) == 0x000008, "Member 'TypedElementWorldInterface_GetBounds::OutBounds' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetBounds, ReturnValue) == 0x000040, "Member 'TypedElementWorldInterface_GetBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetOwnerLevel \ +static_assert(alignof(TypedElementWorldInterface_GetOwnerLevel) == 0x000008, "Wrong alignment on TypedElementWorldInterface_GetOwnerLevel"); \ +static_assert(sizeof(TypedElementWorldInterface_GetOwnerLevel) == 0x000010, "Wrong size on TypedElementWorldInterface_GetOwnerLevel"); \ +static_assert(offsetof(TypedElementWorldInterface_GetOwnerLevel, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetOwnerLevel::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetOwnerLevel, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_GetOwnerLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetOwnerWorld \ +static_assert(alignof(TypedElementWorldInterface_GetOwnerWorld) == 0x000008, "Wrong alignment on TypedElementWorldInterface_GetOwnerWorld"); \ +static_assert(sizeof(TypedElementWorldInterface_GetOwnerWorld) == 0x000010, "Wrong size on TypedElementWorldInterface_GetOwnerWorld"); \ +static_assert(offsetof(TypedElementWorldInterface_GetOwnerWorld, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetOwnerWorld::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetOwnerWorld, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_GetOwnerWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetPivotOffset \ +static_assert(alignof(TypedElementWorldInterface_GetPivotOffset) == 0x000008, "Wrong alignment on TypedElementWorldInterface_GetPivotOffset"); \ +static_assert(sizeof(TypedElementWorldInterface_GetPivotOffset) == 0x000028, "Wrong size on TypedElementWorldInterface_GetPivotOffset"); \ +static_assert(offsetof(TypedElementWorldInterface_GetPivotOffset, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetPivotOffset::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetPivotOffset, OutPivotOffset) == 0x000008, "Member 'TypedElementWorldInterface_GetPivotOffset::OutPivotOffset' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetPivotOffset, ReturnValue) == 0x000020, "Member 'TypedElementWorldInterface_GetPivotOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetRelativeTransform \ +static_assert(alignof(TypedElementWorldInterface_GetRelativeTransform) == 0x000010, "Wrong alignment on TypedElementWorldInterface_GetRelativeTransform"); \ +static_assert(sizeof(TypedElementWorldInterface_GetRelativeTransform) == 0x000080, "Wrong size on TypedElementWorldInterface_GetRelativeTransform"); \ +static_assert(offsetof(TypedElementWorldInterface_GetRelativeTransform, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetRelativeTransform::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetRelativeTransform, OutTransform) == 0x000010, "Member 'TypedElementWorldInterface_GetRelativeTransform::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetRelativeTransform, ReturnValue) == 0x000070, "Member 'TypedElementWorldInterface_GetRelativeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_GetWorldTransform \ +static_assert(alignof(TypedElementWorldInterface_GetWorldTransform) == 0x000010, "Wrong alignment on TypedElementWorldInterface_GetWorldTransform"); \ +static_assert(sizeof(TypedElementWorldInterface_GetWorldTransform) == 0x000080, "Wrong size on TypedElementWorldInterface_GetWorldTransform"); \ +static_assert(offsetof(TypedElementWorldInterface_GetWorldTransform, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_GetWorldTransform::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetWorldTransform, OutTransform) == 0x000010, "Member 'TypedElementWorldInterface_GetWorldTransform::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_GetWorldTransform, ReturnValue) == 0x000070, "Member 'TypedElementWorldInterface_GetWorldTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_IsTemplateElement \ +static_assert(alignof(TypedElementWorldInterface_IsTemplateElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_IsTemplateElement"); \ +static_assert(sizeof(TypedElementWorldInterface_IsTemplateElement) == 0x000010, "Wrong size on TypedElementWorldInterface_IsTemplateElement"); \ +static_assert(offsetof(TypedElementWorldInterface_IsTemplateElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_IsTemplateElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_IsTemplateElement, ReturnValue) == 0x000008, "Member 'TypedElementWorldInterface_IsTemplateElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_NotifyMovementEnded \ +static_assert(alignof(TypedElementWorldInterface_NotifyMovementEnded) == 0x000008, "Wrong alignment on TypedElementWorldInterface_NotifyMovementEnded"); \ +static_assert(sizeof(TypedElementWorldInterface_NotifyMovementEnded) == 0x000008, "Wrong size on TypedElementWorldInterface_NotifyMovementEnded"); \ +static_assert(offsetof(TypedElementWorldInterface_NotifyMovementEnded, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_NotifyMovementEnded::InElementHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_NotifyMovementOngoing \ +static_assert(alignof(TypedElementWorldInterface_NotifyMovementOngoing) == 0x000008, "Wrong alignment on TypedElementWorldInterface_NotifyMovementOngoing"); \ +static_assert(sizeof(TypedElementWorldInterface_NotifyMovementOngoing) == 0x000008, "Wrong size on TypedElementWorldInterface_NotifyMovementOngoing"); \ +static_assert(offsetof(TypedElementWorldInterface_NotifyMovementOngoing, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_NotifyMovementOngoing::InElementHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_NotifyMovementStarted \ +static_assert(alignof(TypedElementWorldInterface_NotifyMovementStarted) == 0x000008, "Wrong alignment on TypedElementWorldInterface_NotifyMovementStarted"); \ +static_assert(sizeof(TypedElementWorldInterface_NotifyMovementStarted) == 0x000008, "Wrong size on TypedElementWorldInterface_NotifyMovementStarted"); \ +static_assert(offsetof(TypedElementWorldInterface_NotifyMovementStarted, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_NotifyMovementStarted::InElementHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_PromoteElement \ +static_assert(alignof(TypedElementWorldInterface_PromoteElement) == 0x000008, "Wrong alignment on TypedElementWorldInterface_PromoteElement"); \ +static_assert(sizeof(TypedElementWorldInterface_PromoteElement) == 0x000018, "Wrong size on TypedElementWorldInterface_PromoteElement"); \ +static_assert(offsetof(TypedElementWorldInterface_PromoteElement, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_PromoteElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_PromoteElement, OverrideWorld) == 0x000008, "Member 'TypedElementWorldInterface_PromoteElement::OverrideWorld' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_PromoteElement, ReturnValue) == 0x000010, "Member 'TypedElementWorldInterface_PromoteElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_SetPivotOffset \ +static_assert(alignof(TypedElementWorldInterface_SetPivotOffset) == 0x000008, "Wrong alignment on TypedElementWorldInterface_SetPivotOffset"); \ +static_assert(sizeof(TypedElementWorldInterface_SetPivotOffset) == 0x000028, "Wrong size on TypedElementWorldInterface_SetPivotOffset"); \ +static_assert(offsetof(TypedElementWorldInterface_SetPivotOffset, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_SetPivotOffset::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetPivotOffset, InPivotOffset) == 0x000008, "Member 'TypedElementWorldInterface_SetPivotOffset::InPivotOffset' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetPivotOffset, ReturnValue) == 0x000020, "Member 'TypedElementWorldInterface_SetPivotOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_SetRelativeTransform \ +static_assert(alignof(TypedElementWorldInterface_SetRelativeTransform) == 0x000010, "Wrong alignment on TypedElementWorldInterface_SetRelativeTransform"); \ +static_assert(sizeof(TypedElementWorldInterface_SetRelativeTransform) == 0x000080, "Wrong size on TypedElementWorldInterface_SetRelativeTransform"); \ +static_assert(offsetof(TypedElementWorldInterface_SetRelativeTransform, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_SetRelativeTransform::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetRelativeTransform, InTransform) == 0x000010, "Member 'TypedElementWorldInterface_SetRelativeTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetRelativeTransform, ReturnValue) == 0x000070, "Member 'TypedElementWorldInterface_SetRelativeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementWorldInterface_SetWorldTransform \ +static_assert(alignof(TypedElementWorldInterface_SetWorldTransform) == 0x000010, "Wrong alignment on TypedElementWorldInterface_SetWorldTransform"); \ +static_assert(sizeof(TypedElementWorldInterface_SetWorldTransform) == 0x000080, "Wrong size on TypedElementWorldInterface_SetWorldTransform"); \ +static_assert(offsetof(TypedElementWorldInterface_SetWorldTransform, InElementHandle) == 0x000000, "Member 'TypedElementWorldInterface_SetWorldTransform::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetWorldTransform, InTransform) == 0x000010, "Member 'TypedElementWorldInterface_SetWorldTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(TypedElementWorldInterface_SetWorldTransform, ReturnValue) == 0x000070, "Member 'TypedElementWorldInterface_SetWorldTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementWorldInterface \ +static_assert(alignof(ITypedElementWorldInterface) == 0x000001, "Wrong alignment on ITypedElementWorldInterface"); \ +static_assert(sizeof(ITypedElementWorldInterface) == 0x000001, "Wrong size on ITypedElementWorldInterface"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetAdditionalPluginSearchPaths \ +static_assert(alignof(PluginBlueprintLibrary_GetAdditionalPluginSearchPaths) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetAdditionalPluginSearchPaths"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetAdditionalPluginSearchPaths) == 0x000010, "Wrong size on PluginBlueprintLibrary_GetAdditionalPluginSearchPaths"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetAdditionalPluginSearchPaths, ReturnValue) == 0x000000, "Member 'PluginBlueprintLibrary_GetAdditionalPluginSearchPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths \ +static_assert(alignof(PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths) == 0x000010, "Wrong size on PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths, ReturnValue) == 0x000000, "Member 'PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetEnabledPluginNames \ +static_assert(alignof(PluginBlueprintLibrary_GetEnabledPluginNames) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetEnabledPluginNames"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetEnabledPluginNames) == 0x000010, "Wrong size on PluginBlueprintLibrary_GetEnabledPluginNames"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetEnabledPluginNames, ReturnValue) == 0x000000, "Member 'PluginBlueprintLibrary_GetEnabledPluginNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginBaseDir \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginBaseDir) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginBaseDir"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginBaseDir) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginBaseDir"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginBaseDir, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginBaseDir::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginBaseDir, OutBaseDir) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginBaseDir::OutBaseDir' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginBaseDir, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginBaseDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginContentDir \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginContentDir) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginContentDir"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginContentDir) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginContentDir"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginContentDir, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginContentDir::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginContentDir, OutContentDir) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginContentDir::OutContentDir' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginContentDir, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginContentDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginDescription \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginDescription) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginDescription"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginDescription) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginDescription"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescription, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginDescription::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescription, OutDescription) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginDescription::OutDescription' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescription, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginDescriptorFilePath \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginDescriptorFilePath) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginDescriptorFilePath"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginDescriptorFilePath) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginDescriptorFilePath"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescriptorFilePath, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginDescriptorFilePath::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescriptorFilePath, OutFilePath) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginDescriptorFilePath::OutFilePath' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginDescriptorFilePath, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginDescriptorFilePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath, OutVirtualPath) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath::OutVirtualPath' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginMountedAssetPath \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginMountedAssetPath) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginMountedAssetPath"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginMountedAssetPath) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginMountedAssetPath"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginMountedAssetPath, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginMountedAssetPath::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginMountedAssetPath, OutAssetPath) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginMountedAssetPath::OutAssetPath' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginMountedAssetPath, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginMountedAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginNameForObjectPath \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginNameForObjectPath) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginNameForObjectPath"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginNameForObjectPath) == 0x000038, "Wrong size on PluginBlueprintLibrary_GetPluginNameForObjectPath"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginNameForObjectPath, ObjectPath) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginNameForObjectPath::ObjectPath' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginNameForObjectPath, OutPluginName) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginNameForObjectPath::OutPluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginNameForObjectPath, ReturnValue) == 0x000030, "Member 'PluginBlueprintLibrary_GetPluginNameForObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginVersion \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginVersion) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginVersion"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginVersion) == 0x000018, "Wrong size on PluginBlueprintLibrary_GetPluginVersion"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersion, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginVersion::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersion, OutVersion) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginVersion::OutVersion' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersion, ReturnValue) == 0x000014, "Member 'PluginBlueprintLibrary_GetPluginVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_GetPluginVersionName \ +static_assert(alignof(PluginBlueprintLibrary_GetPluginVersionName) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_GetPluginVersionName"); \ +static_assert(sizeof(PluginBlueprintLibrary_GetPluginVersionName) == 0x000028, "Wrong size on PluginBlueprintLibrary_GetPluginVersionName"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersionName, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_GetPluginVersionName::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersionName, OutVersionName) == 0x000010, "Member 'PluginBlueprintLibrary_GetPluginVersionName::OutVersionName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_GetPluginVersionName, ReturnValue) == 0x000020, "Member 'PluginBlueprintLibrary_GetPluginVersionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PluginBlueprintLibrary_IsPluginMounted \ +static_assert(alignof(PluginBlueprintLibrary_IsPluginMounted) == 0x000008, "Wrong alignment on PluginBlueprintLibrary_IsPluginMounted"); \ +static_assert(sizeof(PluginBlueprintLibrary_IsPluginMounted) == 0x000018, "Wrong size on PluginBlueprintLibrary_IsPluginMounted"); \ +static_assert(offsetof(PluginBlueprintLibrary_IsPluginMounted, PluginName) == 0x000000, "Member 'PluginBlueprintLibrary_IsPluginMounted::PluginName' has a wrong offset!"); \ +static_assert(offsetof(PluginBlueprintLibrary_IsPluginMounted, ReturnValue) == 0x000010, "Member 'PluginBlueprintLibrary_IsPluginMounted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPluginBlueprintLibrary \ +static_assert(alignof(UPluginBlueprintLibrary) == 0x000008, "Wrong alignment on UPluginBlueprintLibrary"); \ +static_assert(sizeof(UPluginBlueprintLibrary) == 0x000028, "Wrong size on UPluginBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_PointLight_SetLightFalloffExponent \ +static_assert(alignof(PointLight_SetLightFalloffExponent) == 0x000004, "Wrong alignment on PointLight_SetLightFalloffExponent"); \ +static_assert(sizeof(PointLight_SetLightFalloffExponent) == 0x000004, "Wrong size on PointLight_SetLightFalloffExponent"); \ +static_assert(offsetof(PointLight_SetLightFalloffExponent, NewLightFalloffExponent) == 0x000000, "Member 'PointLight_SetLightFalloffExponent::NewLightFalloffExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PointLight_SetRadius \ +static_assert(alignof(PointLight_SetRadius) == 0x000004, "Wrong alignment on PointLight_SetRadius"); \ +static_assert(sizeof(PointLight_SetRadius) == 0x000004, "Wrong size on PointLight_SetRadius"); \ +static_assert(offsetof(PointLight_SetRadius, NewRadius) == 0x000000, "Member 'PointLight_SetRadius::NewRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APointLight \ +static_assert(alignof(APointLight) == 0x000008, "Wrong alignment on APointLight"); \ +static_assert(sizeof(APointLight) == 0x0002B0, "Wrong size on APointLight"); \ +static_assert(offsetof(APointLight, PointLightComponent) == 0x0002A8, "Member 'APointLight::PointLightComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolys \ +static_assert(alignof(UPolys) == 0x000008, "Wrong alignment on UPolys"); \ +static_assert(sizeof(UPolys) == 0x000038, "Wrong size on UPolys"); \ + +#define DUMPER7_ASSERTS_URig \ +static_assert(alignof(URig) == 0x000008, "Wrong alignment on URig"); \ +static_assert(sizeof(URig) == 0x000050, "Wrong size on URig"); \ +static_assert(offsetof(URig, TransformBases) == 0x000030, "Member 'URig::TransformBases' has a wrong offset!"); \ +static_assert(offsetof(URig, Nodes) == 0x000040, "Member 'URig::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APrecomputedVisibilityOverrideVolume \ +static_assert(alignof(APrecomputedVisibilityOverrideVolume) == 0x000008, "Wrong alignment on APrecomputedVisibilityOverrideVolume"); \ +static_assert(sizeof(APrecomputedVisibilityOverrideVolume) == 0x000300, "Wrong size on APrecomputedVisibilityOverrideVolume"); \ +static_assert(offsetof(APrecomputedVisibilityOverrideVolume, OverrideVisibleActors) == 0x0002D0, "Member 'APrecomputedVisibilityOverrideVolume::OverrideVisibleActors' has a wrong offset!"); \ +static_assert(offsetof(APrecomputedVisibilityOverrideVolume, OverrideInvisibleActors) == 0x0002E0, "Member 'APrecomputedVisibilityOverrideVolume::OverrideInvisibleActors' has a wrong offset!"); \ +static_assert(offsetof(APrecomputedVisibilityOverrideVolume, OverrideInvisibleLevels) == 0x0002F0, "Member 'APrecomputedVisibilityOverrideVolume::OverrideInvisibleLevels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectElementSelectionInterface \ +static_assert(alignof(UObjectElementSelectionInterface) == 0x000008, "Wrong alignment on UObjectElementSelectionInterface"); \ +static_assert(sizeof(UObjectElementSelectionInterface) == 0x000030, "Wrong size on UObjectElementSelectionInterface"); \ + +#define DUMPER7_ASSERTS_ARigidBodyBase \ +static_assert(alignof(ARigidBodyBase) == 0x000008, "Wrong alignment on ARigidBodyBase"); \ +static_assert(sizeof(ARigidBodyBase) == 0x000298, "Wrong size on ARigidBodyBase"); \ + +#define DUMPER7_ASSERTS_ARadialForceActor \ +static_assert(alignof(ARadialForceActor) == 0x000008, "Wrong alignment on ARadialForceActor"); \ +static_assert(sizeof(ARadialForceActor) == 0x0002A0, "Wrong size on ARadialForceActor"); \ +static_assert(offsetof(ARadialForceActor, ForceComponent) == 0x000298, "Member 'ARadialForceActor::ForceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReplicationDriver \ +static_assert(alignof(UReplicationDriver) == 0x000008, "Wrong alignment on UReplicationDriver"); \ +static_assert(sizeof(UReplicationDriver) == 0x000028, "Wrong size on UReplicationDriver"); \ + +#define DUMPER7_ASSERTS_UReplicationConnectionDriver \ +static_assert(alignof(UReplicationConnectionDriver) == 0x000008, "Wrong alignment on UReplicationConnectionDriver"); \ +static_assert(sizeof(UReplicationConnectionDriver) == 0x000028, "Wrong size on UReplicationConnectionDriver"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementPrimitiveCustomDataInterface \ +static_assert(alignof(USMInstanceElementPrimitiveCustomDataInterface) == 0x000008, "Wrong alignment on USMInstanceElementPrimitiveCustomDataInterface"); \ +static_assert(sizeof(USMInstanceElementPrimitiveCustomDataInterface) == 0x000030, "Wrong size on USMInstanceElementPrimitiveCustomDataInterface"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeHash \ +static_assert(alignof(UWorldPartitionRuntimeHash) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeHash"); \ +static_assert(sizeof(UWorldPartitionRuntimeHash) == 0x000078, "Wrong size on UWorldPartitionRuntimeHash"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeHashSet \ +static_assert(alignof(UWorldPartitionRuntimeHashSet) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeHashSet"); \ +static_assert(sizeof(UWorldPartitionRuntimeHashSet) == 0x0000E0, "Wrong size on UWorldPartitionRuntimeHashSet"); \ +static_assert(offsetof(UWorldPartitionRuntimeHashSet, NonSpatiallyLoadedRuntimeCells) == 0x000078, "Member 'UWorldPartitionRuntimeHashSet::NonSpatiallyLoadedRuntimeCells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimePartition \ +static_assert(alignof(URuntimePartition) == 0x000008, "Wrong alignment on URuntimePartition"); \ +static_assert(sizeof(URuntimePartition) == 0x000028, "Wrong size on URuntimePartition"); \ + +#define DUMPER7_ASSERTS_AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList \ +static_assert(alignof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList) == 0x000008, "Wrong alignment on AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList"); \ +static_assert(sizeof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList) == 0x000030, "Wrong size on AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList, WorldContextObject) == 0x000000, "Member 'AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList, PrimaryAssetList) == 0x000008, "Member 'AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList::PrimaryAssetList' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList, LoadBundles) == 0x000018, "Member 'AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList::LoadBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList, ReturnValue) == 0x000028, "Member 'AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionLoadPrimaryAssetClassList \ +static_assert(alignof(UAsyncActionLoadPrimaryAssetClassList) == 0x000008, "Wrong alignment on UAsyncActionLoadPrimaryAssetClassList"); \ +static_assert(sizeof(UAsyncActionLoadPrimaryAssetClassList) == 0x000088, "Wrong size on UAsyncActionLoadPrimaryAssetClassList"); \ +static_assert(offsetof(UAsyncActionLoadPrimaryAssetClassList, Completed) == 0x000078, "Member 'UAsyncActionLoadPrimaryAssetClassList::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimePartitionLevelStreaming \ +static_assert(alignof(URuntimePartitionLevelStreaming) == 0x000008, "Wrong alignment on URuntimePartitionLevelStreaming"); \ +static_assert(sizeof(URuntimePartitionLevelStreaming) == 0x000028, "Wrong size on URuntimePartitionLevelStreaming"); \ + +#define DUMPER7_ASSERTS_ULocalMessage \ +static_assert(alignof(ULocalMessage) == 0x000008, "Wrong alignment on ULocalMessage"); \ +static_assert(sizeof(ULocalMessage) == 0x000028, "Wrong size on ULocalMessage"); \ + +#define DUMPER7_ASSERTS_UEngineMessage \ +static_assert(alignof(UEngineMessage) == 0x000008, "Wrong alignment on UEngineMessage"); \ +static_assert(sizeof(UEngineMessage) == 0x0000A8, "Wrong size on UEngineMessage"); \ +static_assert(offsetof(UEngineMessage, FailedPlaceMessage) == 0x000028, "Member 'UEngineMessage::FailedPlaceMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, MaxedOutMessage) == 0x000038, "Member 'UEngineMessage::MaxedOutMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, EnteredMessage) == 0x000048, "Member 'UEngineMessage::EnteredMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, LeftMessage) == 0x000058, "Member 'UEngineMessage::LeftMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, GlobalNameChange) == 0x000068, "Member 'UEngineMessage::GlobalNameChange' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, SpecEnteredMessage) == 0x000078, "Member 'UEngineMessage::SpecEnteredMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, NewPlayerMessage) == 0x000088, "Member 'UEngineMessage::NewPlayerMessage' has a wrong offset!"); \ +static_assert(offsetof(UEngineMessage, NewSpecMessage) == 0x000098, "Member 'UEngineMessage::NewSpecMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimePartitionPersistent \ +static_assert(alignof(URuntimePartitionPersistent) == 0x000008, "Wrong alignment on URuntimePartitionPersistent"); \ +static_assert(sizeof(URuntimePartitionPersistent) == 0x000028, "Wrong size on URuntimePartitionPersistent"); \ + +#define DUMPER7_ASSERTS_IRVOAvoidanceInterface \ +static_assert(alignof(IRVOAvoidanceInterface) == 0x000001, "Wrong alignment on IRVOAvoidanceInterface"); \ +static_assert(sizeof(IRVOAvoidanceInterface) == 0x000001, "Wrong size on IRVOAvoidanceInterface"); \ + +#define DUMPER7_ASSERTS_UScene \ +static_assert(alignof(UScene) == 0x000008, "Wrong alignment on UScene"); \ +static_assert(sizeof(UScene) == 0x000028, "Wrong size on UScene"); \ + +#define DUMPER7_ASSERTS_UAnimClassData \ +static_assert(alignof(UAnimClassData) == 0x000008, "Wrong alignment on UAnimClassData"); \ +static_assert(sizeof(UAnimClassData) == 0x000258, "Wrong size on UAnimClassData"); \ +static_assert(offsetof(UAnimClassData, BakedStateMachines) == 0x000030, "Member 'UAnimClassData::BakedStateMachines' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, TargetSkeleton) == 0x000040, "Member 'UAnimClassData::TargetSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, AnimNotifies) == 0x000048, "Member 'UAnimClassData::AnimNotifies' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, OrderedSavedPoseIndicesMap) == 0x000058, "Member 'UAnimClassData::OrderedSavedPoseIndicesMap' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, AnimBlueprintFunctions) == 0x0000A8, "Member 'UAnimClassData::AnimBlueprintFunctions' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, AnimBlueprintFunctionData) == 0x0000B8, "Member 'UAnimClassData::AnimBlueprintFunctionData' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, AnimNodeProperties) == 0x0000C8, "Member 'UAnimClassData::AnimNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, LinkedAnimGraphNodeProperties) == 0x0000E8, "Member 'UAnimClassData::LinkedAnimGraphNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, LinkedAnimLayerNodeProperties) == 0x000108, "Member 'UAnimClassData::LinkedAnimLayerNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, PreUpdateNodeProperties) == 0x000128, "Member 'UAnimClassData::PreUpdateNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, DynamicResetNodeProperties) == 0x000148, "Member 'UAnimClassData::DynamicResetNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, StateMachineNodeProperties) == 0x000168, "Member 'UAnimClassData::StateMachineNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, InitializationNodeProperties) == 0x000188, "Member 'UAnimClassData::InitializationNodeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, GraphNameAssetPlayers) == 0x0001A8, "Member 'UAnimClassData::GraphNameAssetPlayers' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, SyncGroupNames) == 0x0001F8, "Member 'UAnimClassData::SyncGroupNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimClassData, GraphBlendOptions) == 0x000208, "Member 'UAnimClassData::GraphBlendOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCapture2D_OnInterpToggle \ +static_assert(alignof(SceneCapture2D_OnInterpToggle) == 0x000001, "Wrong alignment on SceneCapture2D_OnInterpToggle"); \ +static_assert(sizeof(SceneCapture2D_OnInterpToggle) == 0x000001, "Wrong size on SceneCapture2D_OnInterpToggle"); \ +static_assert(offsetof(SceneCapture2D_OnInterpToggle, bEnable) == 0x000000, "Member 'SceneCapture2D_OnInterpToggle::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASceneCapture2D \ +static_assert(alignof(ASceneCapture2D) == 0x000008, "Wrong alignment on ASceneCapture2D"); \ +static_assert(sizeof(ASceneCapture2D) == 0x0002B0, "Wrong size on ASceneCapture2D"); \ +static_assert(offsetof(ASceneCapture2D, CaptureComponent2D) == 0x0002A8, "Member 'ASceneCapture2D::CaptureComponent2D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent2D_AddOrUpdateBlendable \ +static_assert(alignof(SceneCaptureComponent2D_AddOrUpdateBlendable) == 0x000008, "Wrong alignment on SceneCaptureComponent2D_AddOrUpdateBlendable"); \ +static_assert(sizeof(SceneCaptureComponent2D_AddOrUpdateBlendable) == 0x000018, "Wrong size on SceneCaptureComponent2D_AddOrUpdateBlendable"); \ +static_assert(offsetof(SceneCaptureComponent2D_AddOrUpdateBlendable, InBlendableObject) == 0x000000, "Member 'SceneCaptureComponent2D_AddOrUpdateBlendable::InBlendableObject' has a wrong offset!"); \ +static_assert(offsetof(SceneCaptureComponent2D_AddOrUpdateBlendable, InWeight) == 0x000010, "Member 'SceneCaptureComponent2D_AddOrUpdateBlendable::InWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureComponent2D_RemoveBlendable \ +static_assert(alignof(SceneCaptureComponent2D_RemoveBlendable) == 0x000008, "Wrong alignment on SceneCaptureComponent2D_RemoveBlendable"); \ +static_assert(sizeof(SceneCaptureComponent2D_RemoveBlendable) == 0x000010, "Wrong size on SceneCaptureComponent2D_RemoveBlendable"); \ +static_assert(offsetof(SceneCaptureComponent2D_RemoveBlendable, InBlendableObject) == 0x000000, "Member 'SceneCaptureComponent2D_RemoveBlendable::InBlendableObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USceneCaptureComponent2D \ +static_assert(alignof(USceneCaptureComponent2D) == 0x000010, "Wrong alignment on USceneCaptureComponent2D"); \ +static_assert(sizeof(USceneCaptureComponent2D) == 0x000B60, "Wrong size on USceneCaptureComponent2D"); \ +static_assert(offsetof(USceneCaptureComponent2D, ProjectionType) == 0x000358, "Member 'USceneCaptureComponent2D::ProjectionType' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, FOVAngle) == 0x00035C, "Member 'USceneCaptureComponent2D::FOVAngle' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, OrthoWidth) == 0x000360, "Member 'USceneCaptureComponent2D::OrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, TextureTarget) == 0x000368, "Member 'USceneCaptureComponent2D::TextureTarget' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, CompositeMode) == 0x000370, "Member 'USceneCaptureComponent2D::CompositeMode' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, PostProcessSettings) == 0x000380, "Member 'USceneCaptureComponent2D::PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, PostProcessBlendWeight) == 0x000A70, "Member 'USceneCaptureComponent2D::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, CustomNearClippingPlane) == 0x000A78, "Member 'USceneCaptureComponent2D::CustomNearClippingPlane' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, bUseCustomProjectionMatrix) == 0x000A7C, "Member 'USceneCaptureComponent2D::bUseCustomProjectionMatrix' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, CustomProjectionMatrix) == 0x000A80, "Member 'USceneCaptureComponent2D::CustomProjectionMatrix' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, bUseFauxOrthoViewPos) == 0x000B00, "Member 'USceneCaptureComponent2D::bUseFauxOrthoViewPos' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, bEnableOrthographicTiling) == 0x000B01, "Member 'USceneCaptureComponent2D::bEnableOrthographicTiling' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, NumXTiles) == 0x000B04, "Member 'USceneCaptureComponent2D::NumXTiles' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, NumYTiles) == 0x000B08, "Member 'USceneCaptureComponent2D::NumYTiles' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, bEnableClipPlane) == 0x000B0C, "Member 'USceneCaptureComponent2D::bEnableClipPlane' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, ClipPlaneBase) == 0x000B10, "Member 'USceneCaptureComponent2D::ClipPlaneBase' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponent2D, ClipPlaneNormal) == 0x000B28, "Member 'USceneCaptureComponent2D::ClipPlaneNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USceneCaptureComponentCube \ +static_assert(alignof(USceneCaptureComponentCube) == 0x000010, "Wrong alignment on USceneCaptureComponentCube"); \ +static_assert(sizeof(USceneCaptureComponentCube) == 0x000370, "Wrong size on USceneCaptureComponentCube"); \ +static_assert(offsetof(USceneCaptureComponentCube, TextureTarget) == 0x000358, "Member 'USceneCaptureComponentCube::TextureTarget' has a wrong offset!"); \ +static_assert(offsetof(USceneCaptureComponentCube, bCaptureRotation) == 0x000360, "Member 'USceneCaptureComponentCube::bCaptureRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SceneCaptureCube_OnInterpToggle \ +static_assert(alignof(SceneCaptureCube_OnInterpToggle) == 0x000001, "Wrong alignment on SceneCaptureCube_OnInterpToggle"); \ +static_assert(sizeof(SceneCaptureCube_OnInterpToggle) == 0x000001, "Wrong size on SceneCaptureCube_OnInterpToggle"); \ +static_assert(offsetof(SceneCaptureCube_OnInterpToggle, bEnable) == 0x000000, "Member 'SceneCaptureCube_OnInterpToggle::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASceneCaptureCube \ +static_assert(alignof(ASceneCaptureCube) == 0x000008, "Wrong alignment on ASceneCaptureCube"); \ +static_assert(sizeof(ASceneCaptureCube) == 0x0002B0, "Wrong size on ASceneCaptureCube"); \ +static_assert(offsetof(ASceneCaptureCube, CaptureComponentCube) == 0x0002A8, "Member 'ASceneCaptureCube::CaptureComponentCube' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShadowMapTexture2D \ +static_assert(alignof(UShadowMapTexture2D) == 0x000010, "Wrong alignment on UShadowMapTexture2D"); \ +static_assert(sizeof(UShadowMapTexture2D) == 0x000280, "Wrong size on UShadowMapTexture2D"); \ +static_assert(offsetof(UShadowMapTexture2D, ShadowmapFlags) == 0x000278, "Member 'UShadowMapTexture2D::ShadowmapFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshSocket_InitializeSocketFromLocation \ +static_assert(alignof(SkeletalMeshSocket_InitializeSocketFromLocation) == 0x000008, "Wrong alignment on SkeletalMeshSocket_InitializeSocketFromLocation"); \ +static_assert(sizeof(SkeletalMeshSocket_InitializeSocketFromLocation) == 0x000038, "Wrong size on SkeletalMeshSocket_InitializeSocketFromLocation"); \ +static_assert(offsetof(SkeletalMeshSocket_InitializeSocketFromLocation, SkelComp) == 0x000000, "Member 'SkeletalMeshSocket_InitializeSocketFromLocation::SkelComp' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshSocket_InitializeSocketFromLocation, WorldLocation) == 0x000008, "Member 'SkeletalMeshSocket_InitializeSocketFromLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshSocket_InitializeSocketFromLocation, WorldNormal) == 0x000020, "Member 'SkeletalMeshSocket_InitializeSocketFromLocation::WorldNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMeshSocket_GetSocketLocation \ +static_assert(alignof(SkeletalMeshSocket_GetSocketLocation) == 0x000008, "Wrong alignment on SkeletalMeshSocket_GetSocketLocation"); \ +static_assert(sizeof(SkeletalMeshSocket_GetSocketLocation) == 0x000020, "Wrong size on SkeletalMeshSocket_GetSocketLocation"); \ +static_assert(offsetof(SkeletalMeshSocket_GetSocketLocation, SkelComp) == 0x000000, "Member 'SkeletalMeshSocket_GetSocketLocation::SkelComp' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMeshSocket_GetSocketLocation, ReturnValue) == 0x000008, "Member 'SkeletalMeshSocket_GetSocketLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalMeshSocket \ +static_assert(alignof(USkeletalMeshSocket) == 0x000008, "Wrong alignment on USkeletalMeshSocket"); \ +static_assert(sizeof(USkeletalMeshSocket) == 0x000088, "Wrong size on USkeletalMeshSocket"); \ +static_assert(offsetof(USkeletalMeshSocket, SocketName) == 0x000028, "Member 'USkeletalMeshSocket::SocketName' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshSocket, BoneName) == 0x000030, "Member 'USkeletalMeshSocket::BoneName' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshSocket, RelativeLocation) == 0x000038, "Member 'USkeletalMeshSocket::RelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshSocket, RelativeRotation) == 0x000050, "Member 'USkeletalMeshSocket::RelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshSocket, RelativeScale) == 0x000068, "Member 'USkeletalMeshSocket::RelativeScale' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMeshSocket, bForceAlwaysAnimated) == 0x000080, "Member 'USkeletalMeshSocket::bForceAlwaysAnimated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetCubemap \ +static_assert(alignof(SkyLightComponent_SetCubemap) == 0x000008, "Wrong alignment on SkyLightComponent_SetCubemap"); \ +static_assert(sizeof(SkyLightComponent_SetCubemap) == 0x000008, "Wrong size on SkyLightComponent_SetCubemap"); \ +static_assert(offsetof(SkyLightComponent_SetCubemap, NewCubemap) == 0x000000, "Member 'SkyLightComponent_SetCubemap::NewCubemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetCubemapBlend \ +static_assert(alignof(SkyLightComponent_SetCubemapBlend) == 0x000008, "Wrong alignment on SkyLightComponent_SetCubemapBlend"); \ +static_assert(sizeof(SkyLightComponent_SetCubemapBlend) == 0x000018, "Wrong size on SkyLightComponent_SetCubemapBlend"); \ +static_assert(offsetof(SkyLightComponent_SetCubemapBlend, SourceCubemap) == 0x000000, "Member 'SkyLightComponent_SetCubemapBlend::SourceCubemap' has a wrong offset!"); \ +static_assert(offsetof(SkyLightComponent_SetCubemapBlend, DestinationCubemap) == 0x000008, "Member 'SkyLightComponent_SetCubemapBlend::DestinationCubemap' has a wrong offset!"); \ +static_assert(offsetof(SkyLightComponent_SetCubemapBlend, InBlendFraction) == 0x000010, "Member 'SkyLightComponent_SetCubemapBlend::InBlendFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetIndirectLightingIntensity \ +static_assert(alignof(SkyLightComponent_SetIndirectLightingIntensity) == 0x000004, "Wrong alignment on SkyLightComponent_SetIndirectLightingIntensity"); \ +static_assert(sizeof(SkyLightComponent_SetIndirectLightingIntensity) == 0x000004, "Wrong size on SkyLightComponent_SetIndirectLightingIntensity"); \ +static_assert(offsetof(SkyLightComponent_SetIndirectLightingIntensity, NewIntensity) == 0x000000, "Member 'SkyLightComponent_SetIndirectLightingIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetIntensity \ +static_assert(alignof(SkyLightComponent_SetIntensity) == 0x000004, "Wrong alignment on SkyLightComponent_SetIntensity"); \ +static_assert(sizeof(SkyLightComponent_SetIntensity) == 0x000004, "Wrong size on SkyLightComponent_SetIntensity"); \ +static_assert(offsetof(SkyLightComponent_SetIntensity, NewIntensity) == 0x000000, "Member 'SkyLightComponent_SetIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetLightColor \ +static_assert(alignof(SkyLightComponent_SetLightColor) == 0x000004, "Wrong alignment on SkyLightComponent_SetLightColor"); \ +static_assert(sizeof(SkyLightComponent_SetLightColor) == 0x000010, "Wrong size on SkyLightComponent_SetLightColor"); \ +static_assert(offsetof(SkyLightComponent_SetLightColor, NewLightColor) == 0x000000, "Member 'SkyLightComponent_SetLightColor::NewLightColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetLowerHemisphereColor \ +static_assert(alignof(SkyLightComponent_SetLowerHemisphereColor) == 0x000004, "Wrong alignment on SkyLightComponent_SetLowerHemisphereColor"); \ +static_assert(sizeof(SkyLightComponent_SetLowerHemisphereColor) == 0x000010, "Wrong size on SkyLightComponent_SetLowerHemisphereColor"); \ +static_assert(offsetof(SkyLightComponent_SetLowerHemisphereColor, InLowerHemisphereColor) == 0x000000, "Member 'SkyLightComponent_SetLowerHemisphereColor::InLowerHemisphereColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetMinOcclusion \ +static_assert(alignof(SkyLightComponent_SetMinOcclusion) == 0x000004, "Wrong alignment on SkyLightComponent_SetMinOcclusion"); \ +static_assert(sizeof(SkyLightComponent_SetMinOcclusion) == 0x000004, "Wrong size on SkyLightComponent_SetMinOcclusion"); \ +static_assert(offsetof(SkyLightComponent_SetMinOcclusion, InMinOcclusion) == 0x000000, "Member 'SkyLightComponent_SetMinOcclusion::InMinOcclusion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetOcclusionContrast \ +static_assert(alignof(SkyLightComponent_SetOcclusionContrast) == 0x000004, "Wrong alignment on SkyLightComponent_SetOcclusionContrast"); \ +static_assert(sizeof(SkyLightComponent_SetOcclusionContrast) == 0x000004, "Wrong size on SkyLightComponent_SetOcclusionContrast"); \ +static_assert(offsetof(SkyLightComponent_SetOcclusionContrast, InOcclusionContrast) == 0x000000, "Member 'SkyLightComponent_SetOcclusionContrast::InOcclusionContrast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetOcclusionExponent \ +static_assert(alignof(SkyLightComponent_SetOcclusionExponent) == 0x000004, "Wrong alignment on SkyLightComponent_SetOcclusionExponent"); \ +static_assert(sizeof(SkyLightComponent_SetOcclusionExponent) == 0x000004, "Wrong size on SkyLightComponent_SetOcclusionExponent"); \ +static_assert(offsetof(SkyLightComponent_SetOcclusionExponent, InOcclusionExponent) == 0x000000, "Member 'SkyLightComponent_SetOcclusionExponent::InOcclusionExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetOcclusionTint \ +static_assert(alignof(SkyLightComponent_SetOcclusionTint) == 0x000004, "Wrong alignment on SkyLightComponent_SetOcclusionTint"); \ +static_assert(sizeof(SkyLightComponent_SetOcclusionTint) == 0x000004, "Wrong size on SkyLightComponent_SetOcclusionTint"); \ +static_assert(offsetof(SkyLightComponent_SetOcclusionTint, InTint) == 0x000000, "Member 'SkyLightComponent_SetOcclusionTint::InTint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetSourceCubemapAngle \ +static_assert(alignof(SkyLightComponent_SetSourceCubemapAngle) == 0x000004, "Wrong alignment on SkyLightComponent_SetSourceCubemapAngle"); \ +static_assert(sizeof(SkyLightComponent_SetSourceCubemapAngle) == 0x000004, "Wrong size on SkyLightComponent_SetSourceCubemapAngle"); \ +static_assert(offsetof(SkyLightComponent_SetSourceCubemapAngle, NewValue) == 0x000000, "Member 'SkyLightComponent_SetSourceCubemapAngle::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkyLightComponent_SetVolumetricScatteringIntensity \ +static_assert(alignof(SkyLightComponent_SetVolumetricScatteringIntensity) == 0x000004, "Wrong alignment on SkyLightComponent_SetVolumetricScatteringIntensity"); \ +static_assert(sizeof(SkyLightComponent_SetVolumetricScatteringIntensity) == 0x000004, "Wrong size on SkyLightComponent_SetVolumetricScatteringIntensity"); \ +static_assert(offsetof(SkyLightComponent_SetVolumetricScatteringIntensity, NewIntensity) == 0x000000, "Member 'SkyLightComponent_SetVolumetricScatteringIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkyLightComponent \ +static_assert(alignof(USkyLightComponent) == 0x000010, "Wrong alignment on USkyLightComponent"); \ +static_assert(sizeof(USkyLightComponent) == 0x0004D0, "Wrong size on USkyLightComponent"); \ +static_assert(offsetof(USkyLightComponent, bRealTimeCapture) == 0x0002D8, "Member 'USkyLightComponent::bRealTimeCapture' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, SourceType) == 0x0002D9, "Member 'USkyLightComponent::SourceType' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, Cubemap) == 0x0002E0, "Member 'USkyLightComponent::Cubemap' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, SourceCubemapAngle) == 0x0002E8, "Member 'USkyLightComponent::SourceCubemapAngle' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, CubemapResolution) == 0x0002EC, "Member 'USkyLightComponent::CubemapResolution' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, SkyDistanceThreshold) == 0x0002F0, "Member 'USkyLightComponent::SkyDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, bCaptureEmissiveOnly) == 0x0002F4, "Member 'USkyLightComponent::bCaptureEmissiveOnly' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, bLowerHemisphereIsBlack) == 0x0002F5, "Member 'USkyLightComponent::bLowerHemisphereIsBlack' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, LowerHemisphereColor) == 0x0002F8, "Member 'USkyLightComponent::LowerHemisphereColor' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, OcclusionMaxDistance) == 0x000308, "Member 'USkyLightComponent::OcclusionMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, Contrast) == 0x00030C, "Member 'USkyLightComponent::Contrast' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, OcclusionExponent) == 0x000310, "Member 'USkyLightComponent::OcclusionExponent' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, MinOcclusion) == 0x000314, "Member 'USkyLightComponent::MinOcclusion' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, OcclusionTint) == 0x000318, "Member 'USkyLightComponent::OcclusionTint' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, CloudAmbientOcclusionStrength) == 0x000320, "Member 'USkyLightComponent::CloudAmbientOcclusionStrength' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, CloudAmbientOcclusionExtent) == 0x000324, "Member 'USkyLightComponent::CloudAmbientOcclusionExtent' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, CloudAmbientOcclusionMapResolutionScale) == 0x000328, "Member 'USkyLightComponent::CloudAmbientOcclusionMapResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, CloudAmbientOcclusionApertureScale) == 0x00032C, "Member 'USkyLightComponent::CloudAmbientOcclusionApertureScale' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, OcclusionCombineMode) == 0x000330, "Member 'USkyLightComponent::OcclusionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(USkyLightComponent, BlendDestinationCubemap) == 0x0003E8, "Member 'USkyLightComponent::BlendDestinationCubemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_PerTrackCompression \ +static_assert(alignof(UAnimCompress_PerTrackCompression) == 0x000008, "Wrong alignment on UAnimCompress_PerTrackCompression"); \ +static_assert(sizeof(UAnimCompress_PerTrackCompression) == 0x0000D8, "Wrong size on UAnimCompress_PerTrackCompression"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MaxZeroingThreshold) == 0x000060, "Member 'UAnimCompress_PerTrackCompression::MaxZeroingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MaxPosDiffBitwise) == 0x000064, "Member 'UAnimCompress_PerTrackCompression::MaxPosDiffBitwise' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MaxAngleDiffBitwise) == 0x000068, "Member 'UAnimCompress_PerTrackCompression::MaxAngleDiffBitwise' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MaxScaleDiffBitwise) == 0x00006C, "Member 'UAnimCompress_PerTrackCompression::MaxScaleDiffBitwise' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, AllowedRotationFormats) == 0x000070, "Member 'UAnimCompress_PerTrackCompression::AllowedRotationFormats' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, AllowedTranslationFormats) == 0x000080, "Member 'UAnimCompress_PerTrackCompression::AllowedTranslationFormats' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, AllowedScaleFormats) == 0x000090, "Member 'UAnimCompress_PerTrackCompression::AllowedScaleFormats' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, ResampledFramerate) == 0x0000A4, "Member 'UAnimCompress_PerTrackCompression::ResampledFramerate' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MinKeysForResampling) == 0x0000A8, "Member 'UAnimCompress_PerTrackCompression::MinKeysForResampling' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, TrackHeightBias) == 0x0000B0, "Member 'UAnimCompress_PerTrackCompression::TrackHeightBias' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, ParentingDivisor) == 0x0000B4, "Member 'UAnimCompress_PerTrackCompression::ParentingDivisor' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, ParentingDivisorExponent) == 0x0000B8, "Member 'UAnimCompress_PerTrackCompression::ParentingDivisorExponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, RotationErrorSourceRatio) == 0x0000C0, "Member 'UAnimCompress_PerTrackCompression::RotationErrorSourceRatio' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, TranslationErrorSourceRatio) == 0x0000C4, "Member 'UAnimCompress_PerTrackCompression::TranslationErrorSourceRatio' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, ScaleErrorSourceRatio) == 0x0000C8, "Member 'UAnimCompress_PerTrackCompression::ScaleErrorSourceRatio' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, MaxErrorPerTrackRatio) == 0x0000CC, "Member 'UAnimCompress_PerTrackCompression::MaxErrorPerTrackRatio' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_PerTrackCompression, PerturbationProbeSize) == 0x0000D0, "Member 'UAnimCompress_PerTrackCompression::PerturbationProbeSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ISMInstanceManager \ +static_assert(alignof(ISMInstanceManager) == 0x000001, "Wrong alignment on ISMInstanceManager"); \ +static_assert(sizeof(ISMInstanceManager) == 0x000001, "Wrong size on ISMInstanceManager"); \ + +#define DUMPER7_ASSERTS_ISMInstanceManagerProvider \ +static_assert(alignof(ISMInstanceManagerProvider) == 0x000001, "Wrong alignment on ISMInstanceManagerProvider"); \ +static_assert(sizeof(ISMInstanceManagerProvider) == 0x000001, "Wrong size on ISMInstanceManagerProvider"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionEditorPerProjectUserSettings \ +static_assert(alignof(UWorldPartitionEditorPerProjectUserSettings) == 0x000008, "Wrong alignment on UWorldPartitionEditorPerProjectUserSettings"); \ +static_assert(sizeof(UWorldPartitionEditorPerProjectUserSettings) == 0x000028, "Wrong size on UWorldPartitionEditorPerProjectUserSettings"); \ + +#define DUMPER7_ASSERTS_USoundAttenuation \ +static_assert(alignof(USoundAttenuation) == 0x000008, "Wrong alignment on USoundAttenuation"); \ +static_assert(sizeof(USoundAttenuation) == 0x0003F8, "Wrong size on USoundAttenuation"); \ +static_assert(offsetof(USoundAttenuation, Attenuation) == 0x000028, "Member 'USoundAttenuation::Attenuation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundEffectPresetWidgetInterface_GetClass \ +static_assert(alignof(SoundEffectPresetWidgetInterface_GetClass) == 0x000008, "Wrong alignment on SoundEffectPresetWidgetInterface_GetClass"); \ +static_assert(sizeof(SoundEffectPresetWidgetInterface_GetClass) == 0x000008, "Wrong size on SoundEffectPresetWidgetInterface_GetClass"); \ +static_assert(offsetof(SoundEffectPresetWidgetInterface_GetClass, ReturnValue) == 0x000000, "Member 'SoundEffectPresetWidgetInterface_GetClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundEffectPresetWidgetInterface_OnConstructed \ +static_assert(alignof(SoundEffectPresetWidgetInterface_OnConstructed) == 0x000008, "Wrong alignment on SoundEffectPresetWidgetInterface_OnConstructed"); \ +static_assert(sizeof(SoundEffectPresetWidgetInterface_OnConstructed) == 0x000008, "Wrong size on SoundEffectPresetWidgetInterface_OnConstructed"); \ +static_assert(offsetof(SoundEffectPresetWidgetInterface_OnConstructed, Preset) == 0x000000, "Member 'SoundEffectPresetWidgetInterface_OnConstructed::Preset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundEffectPresetWidgetInterface_OnPropertyChanged \ +static_assert(alignof(SoundEffectPresetWidgetInterface_OnPropertyChanged) == 0x000008, "Wrong alignment on SoundEffectPresetWidgetInterface_OnPropertyChanged"); \ +static_assert(sizeof(SoundEffectPresetWidgetInterface_OnPropertyChanged) == 0x000010, "Wrong size on SoundEffectPresetWidgetInterface_OnPropertyChanged"); \ +static_assert(offsetof(SoundEffectPresetWidgetInterface_OnPropertyChanged, Preset) == 0x000000, "Member 'SoundEffectPresetWidgetInterface_OnPropertyChanged::Preset' has a wrong offset!"); \ +static_assert(offsetof(SoundEffectPresetWidgetInterface_OnPropertyChanged, PropertyName) == 0x000008, "Member 'SoundEffectPresetWidgetInterface_OnPropertyChanged::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ISoundEffectPresetWidgetInterface \ +static_assert(alignof(ISoundEffectPresetWidgetInterface) == 0x000001, "Wrong alignment on ISoundEffectPresetWidgetInterface"); \ +static_assert(sizeof(ISoundEffectPresetWidgetInterface) == 0x000001, "Wrong size on ISoundEffectPresetWidgetInterface"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionCodec_CompressedRichCurve \ +static_assert(alignof(UAnimCurveCompressionCodec_CompressedRichCurve) == 0x000008, "Wrong alignment on UAnimCurveCompressionCodec_CompressedRichCurve"); \ +static_assert(sizeof(UAnimCurveCompressionCodec_CompressedRichCurve) == 0x000038, "Wrong size on UAnimCurveCompressionCodec_CompressedRichCurve"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionHLODModifier \ +static_assert(alignof(UWorldPartitionHLODModifier) == 0x000008, "Wrong alignment on UWorldPartitionHLODModifier"); \ +static_assert(sizeof(UWorldPartitionHLODModifier) == 0x000028, "Wrong size on UWorldPartitionHLODModifier"); \ + +#define DUMPER7_ASSERTS_USoundEffectSourcePreset \ +static_assert(alignof(USoundEffectSourcePreset) == 0x000008, "Wrong alignment on USoundEffectSourcePreset"); \ +static_assert(sizeof(USoundEffectSourcePreset) == 0x000068, "Wrong size on USoundEffectSourcePreset"); \ + +#define DUMPER7_ASSERTS_USoundEffectSourcePresetChain \ +static_assert(alignof(USoundEffectSourcePresetChain) == 0x000008, "Wrong alignment on USoundEffectSourcePresetChain"); \ +static_assert(sizeof(USoundEffectSourcePresetChain) == 0x000040, "Wrong size on USoundEffectSourcePresetChain"); \ +static_assert(offsetof(USoundEffectSourcePresetChain, Chain) == 0x000028, "Member 'USoundEffectSourcePresetChain::Chain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundGroups \ +static_assert(alignof(USoundGroups) == 0x000008, "Wrong alignment on USoundGroups"); \ +static_assert(sizeof(USoundGroups) == 0x000088, "Wrong size on USoundGroups"); \ +static_assert(offsetof(USoundGroups, SoundGroupProfiles) == 0x000028, "Member 'USoundGroups::SoundGroupProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass \ +static_assert(alignof(CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass) == 0x000008, "Wrong alignment on CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass"); \ +static_assert(sizeof(CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass) == 0x000010, "Wrong size on CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass, CameraLens) == 0x000000, "Member 'CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass::CameraLens' has a wrong offset!"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass, ReturnValue) == 0x000008, "Member 'CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid \ +static_assert(alignof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid) == 0x000008, "Wrong alignment on CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid"); \ +static_assert(sizeof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid) == 0x000010, "Wrong size on CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid, CameraLens) == 0x000000, "Member 'CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid::CameraLens' has a wrong offset!"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid, Result) == 0x000008, "Member 'CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid \ +static_assert(alignof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid) == 0x000008, "Wrong alignment on CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid"); \ +static_assert(sizeof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid) == 0x000018, "Wrong size on CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid, CameraLens) == 0x000000, "Member 'CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid::CameraLens' has a wrong offset!"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid, Result) == 0x000010, "Member 'CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass \ +static_assert(alignof(CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass) == 0x000008, "Wrong alignment on CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass"); \ +static_assert(sizeof(CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass) == 0x000018, "Wrong size on CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass, Class_0) == 0x000000, "Member 'CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass, Var) == 0x000008, "Member 'CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass::Var' has a wrong offset!"); \ +static_assert(offsetof(CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass, Result) == 0x000010, "Member 'CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraLensEffectInterfaceClassSupportLibrary \ +static_assert(alignof(UCameraLensEffectInterfaceClassSupportLibrary) == 0x000008, "Wrong alignment on UCameraLensEffectInterfaceClassSupportLibrary"); \ +static_assert(sizeof(UCameraLensEffectInterfaceClassSupportLibrary) == 0x000028, "Wrong size on UCameraLensEffectInterfaceClassSupportLibrary"); \ + +#define DUMPER7_ASSERTS_USoundNodeModulatorContinuous \ +static_assert(alignof(USoundNodeModulatorContinuous) == 0x000008, "Wrong alignment on USoundNodeModulatorContinuous"); \ +static_assert(sizeof(USoundNodeModulatorContinuous) == 0x000088, "Wrong size on USoundNodeModulatorContinuous"); \ +static_assert(offsetof(USoundNodeModulatorContinuous, PitchModulationParams) == 0x000048, "Member 'USoundNodeModulatorContinuous::PitchModulationParams' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeModulatorContinuous, VolumeModulationParams) == 0x000068, "Member 'USoundNodeModulatorContinuous::VolumeModulationParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmixWidgetInterface_OnConstructed \ +static_assert(alignof(SoundSubmixWidgetInterface_OnConstructed) == 0x000008, "Wrong alignment on SoundSubmixWidgetInterface_OnConstructed"); \ +static_assert(sizeof(SoundSubmixWidgetInterface_OnConstructed) == 0x000008, "Wrong size on SoundSubmixWidgetInterface_OnConstructed"); \ +static_assert(offsetof(SoundSubmixWidgetInterface_OnConstructed, SoundSubmix) == 0x000000, "Member 'SoundSubmixWidgetInterface_OnConstructed::SoundSubmix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ISoundSubmixWidgetInterface \ +static_assert(alignof(ISoundSubmixWidgetInterface) == 0x000001, "Wrong alignment on ISoundSubmixWidgetInterface"); \ +static_assert(sizeof(ISoundSubmixWidgetInterface) == 0x000001, "Wrong size on ISoundSubmixWidgetInterface"); \ + +#define DUMPER7_ASSERTS_WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD \ +static_assert(alignof(WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD) == 0x000008, "Wrong alignment on WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD"); \ +static_assert(sizeof(WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD) == 0x000018, "Wrong size on WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD"); \ +static_assert(offsetof(WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD, DestructibleInHLOD) == 0x000000, "Member 'WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD::DestructibleInHLOD' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD, DamagePercent) == 0x000010, "Member 'WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD::DamagePercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD \ +static_assert(alignof(WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD) == 0x000008, "Wrong alignment on WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD"); \ +static_assert(sizeof(WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD) == 0x000010, "Wrong size on WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD"); \ +static_assert(offsetof(WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD, DestructibleInHLOD) == 0x000000, "Member 'WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD::DestructibleInHLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionDestructibleInHLODSupportLibrary \ +static_assert(alignof(UWorldPartitionDestructibleInHLODSupportLibrary) == 0x000008, "Wrong alignment on UWorldPartitionDestructibleInHLODSupportLibrary"); \ +static_assert(sizeof(UWorldPartitionDestructibleInHLODSupportLibrary) == 0x000028, "Wrong size on UWorldPartitionDestructibleInHLODSupportLibrary"); \ + +#define DUMPER7_ASSERTS_SparseVolumeTexture_GetNumFrames \ +static_assert(alignof(SparseVolumeTexture_GetNumFrames) == 0x000004, "Wrong alignment on SparseVolumeTexture_GetNumFrames"); \ +static_assert(sizeof(SparseVolumeTexture_GetNumFrames) == 0x000004, "Wrong size on SparseVolumeTexture_GetNumFrames"); \ +static_assert(offsetof(SparseVolumeTexture_GetNumFrames, ReturnValue) == 0x000000, "Member 'SparseVolumeTexture_GetNumFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SparseVolumeTexture_GetNumMipLevels \ +static_assert(alignof(SparseVolumeTexture_GetNumMipLevels) == 0x000004, "Wrong alignment on SparseVolumeTexture_GetNumMipLevels"); \ +static_assert(sizeof(SparseVolumeTexture_GetNumMipLevels) == 0x000004, "Wrong size on SparseVolumeTexture_GetNumMipLevels"); \ +static_assert(offsetof(SparseVolumeTexture_GetNumMipLevels, ReturnValue) == 0x000000, "Member 'SparseVolumeTexture_GetNumMipLevels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SparseVolumeTexture_GetSizeX \ +static_assert(alignof(SparseVolumeTexture_GetSizeX) == 0x000004, "Wrong alignment on SparseVolumeTexture_GetSizeX"); \ +static_assert(sizeof(SparseVolumeTexture_GetSizeX) == 0x000004, "Wrong size on SparseVolumeTexture_GetSizeX"); \ +static_assert(offsetof(SparseVolumeTexture_GetSizeX, ReturnValue) == 0x000000, "Member 'SparseVolumeTexture_GetSizeX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SparseVolumeTexture_GetSizeY \ +static_assert(alignof(SparseVolumeTexture_GetSizeY) == 0x000004, "Wrong alignment on SparseVolumeTexture_GetSizeY"); \ +static_assert(sizeof(SparseVolumeTexture_GetSizeY) == 0x000004, "Wrong size on SparseVolumeTexture_GetSizeY"); \ +static_assert(offsetof(SparseVolumeTexture_GetSizeY, ReturnValue) == 0x000000, "Member 'SparseVolumeTexture_GetSizeY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SparseVolumeTexture_GetSizeZ \ +static_assert(alignof(SparseVolumeTexture_GetSizeZ) == 0x000004, "Wrong alignment on SparseVolumeTexture_GetSizeZ"); \ +static_assert(sizeof(SparseVolumeTexture_GetSizeZ) == 0x000004, "Wrong size on SparseVolumeTexture_GetSizeZ"); \ +static_assert(offsetof(SparseVolumeTexture_GetSizeZ, ReturnValue) == 0x000000, "Member 'SparseVolumeTexture_GetSizeZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USparseVolumeTexture \ +static_assert(alignof(USparseVolumeTexture) == 0x000008, "Wrong alignment on USparseVolumeTexture"); \ +static_assert(sizeof(USparseVolumeTexture) == 0x000028, "Wrong size on USparseVolumeTexture"); \ + +#define DUMPER7_ASSERTS_USparseVolumeTextureFrame \ +static_assert(alignof(USparseVolumeTextureFrame) == 0x000010, "Wrong alignment on USparseVolumeTextureFrame"); \ +static_assert(sizeof(USparseVolumeTextureFrame) == 0x000110, "Wrong size on USparseVolumeTextureFrame"); \ +static_assert(offsetof(USparseVolumeTextureFrame, Owner) == 0x000028, "Member 'USparseVolumeTextureFrame::Owner' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureFrame, FrameIndex) == 0x000030, "Member 'USparseVolumeTextureFrame::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShakePattern \ +static_assert(alignof(UCameraShakePattern) == 0x000008, "Wrong alignment on UCameraShakePattern"); \ +static_assert(sizeof(UCameraShakePattern) == 0x000028, "Wrong size on UCameraShakePattern"); \ + +#define DUMPER7_ASSERTS_UStreamableSparseVolumeTexture \ +static_assert(alignof(UStreamableSparseVolumeTexture) == 0x000010, "Wrong alignment on UStreamableSparseVolumeTexture"); \ +static_assert(sizeof(UStreamableSparseVolumeTexture) == 0x000080, "Wrong size on UStreamableSparseVolumeTexture"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, VolumeResolution) == 0x000028, "Member 'UStreamableSparseVolumeTexture::VolumeResolution' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, NumMipLevels) == 0x000034, "Member 'UStreamableSparseVolumeTexture::NumMipLevels' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, NumFrames) == 0x000038, "Member 'UStreamableSparseVolumeTexture::NumFrames' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, FormatA) == 0x00003C, "Member 'UStreamableSparseVolumeTexture::FormatA' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, FormatB) == 0x00003D, "Member 'UStreamableSparseVolumeTexture::FormatB' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, FallbackValueA) == 0x000040, "Member 'UStreamableSparseVolumeTexture::FallbackValueA' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, FallbackValueB) == 0x000050, "Member 'UStreamableSparseVolumeTexture::FallbackValueB' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, AddressX) == 0x000060, "Member 'UStreamableSparseVolumeTexture::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, AddressY) == 0x000061, "Member 'UStreamableSparseVolumeTexture::AddressY' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, AddressZ) == 0x000062, "Member 'UStreamableSparseVolumeTexture::AddressZ' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, bLocalDDCOnly) == 0x000063, "Member 'UStreamableSparseVolumeTexture::bLocalDDCOnly' has a wrong offset!"); \ +static_assert(offsetof(UStreamableSparseVolumeTexture, Frames) == 0x000068, "Member 'UStreamableSparseVolumeTexture::Frames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticSparseVolumeTexture \ +static_assert(alignof(UStaticSparseVolumeTexture) == 0x000010, "Wrong alignment on UStaticSparseVolumeTexture"); \ +static_assert(sizeof(UStaticSparseVolumeTexture) == 0x000080, "Wrong size on UStaticSparseVolumeTexture"); \ + +#define DUMPER7_ASSERTS_UAnimatedSparseVolumeTexture \ +static_assert(alignof(UAnimatedSparseVolumeTexture) == 0x000010, "Wrong alignment on UAnimatedSparseVolumeTexture"); \ +static_assert(sizeof(UAnimatedSparseVolumeTexture) == 0x000080, "Wrong size on UAnimatedSparseVolumeTexture"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_GetCurrentFrame \ +static_assert(alignof(AnimatedSparseVolumeTextureController_GetCurrentFrame) == 0x000008, "Wrong alignment on AnimatedSparseVolumeTextureController_GetCurrentFrame"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_GetCurrentFrame) == 0x000008, "Wrong size on AnimatedSparseVolumeTextureController_GetCurrentFrame"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetCurrentFrame, ReturnValue) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_GetCurrentFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation \ +static_assert(alignof(AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation) == 0x000008, "Wrong alignment on AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation) == 0x000018, "Wrong size on AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation, Frame0) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation::Frame0' has a wrong offset!"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation, Frame1) == 0x000008, "Member 'AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation::Frame1' has a wrong offset!"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation, LerpAlpha) == 0x000010, "Member 'AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation::LerpAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_GetDuration \ +static_assert(alignof(AnimatedSparseVolumeTextureController_GetDuration) == 0x000004, "Wrong alignment on AnimatedSparseVolumeTextureController_GetDuration"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_GetDuration) == 0x000004, "Wrong size on AnimatedSparseVolumeTextureController_GetDuration"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetDuration, ReturnValue) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_GetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_GetFractionalFrameIndex \ +static_assert(alignof(AnimatedSparseVolumeTextureController_GetFractionalFrameIndex) == 0x000004, "Wrong alignment on AnimatedSparseVolumeTextureController_GetFractionalFrameIndex"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_GetFractionalFrameIndex) == 0x000004, "Wrong size on AnimatedSparseVolumeTextureController_GetFractionalFrameIndex"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetFractionalFrameIndex, ReturnValue) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_GetFractionalFrameIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_GetFrameByIndex \ +static_assert(alignof(AnimatedSparseVolumeTextureController_GetFrameByIndex) == 0x000008, "Wrong alignment on AnimatedSparseVolumeTextureController_GetFrameByIndex"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_GetFrameByIndex) == 0x000010, "Wrong size on AnimatedSparseVolumeTextureController_GetFrameByIndex"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetFrameByIndex, FrameIndex) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_GetFrameByIndex::FrameIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_GetFrameByIndex, ReturnValue) == 0x000008, "Member 'AnimatedSparseVolumeTextureController_GetFrameByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimatedSparseVolumeTextureController_Update \ +static_assert(alignof(AnimatedSparseVolumeTextureController_Update) == 0x000004, "Wrong alignment on AnimatedSparseVolumeTextureController_Update"); \ +static_assert(sizeof(AnimatedSparseVolumeTextureController_Update) == 0x000004, "Wrong size on AnimatedSparseVolumeTextureController_Update"); \ +static_assert(offsetof(AnimatedSparseVolumeTextureController_Update, DeltaTime) == 0x000000, "Member 'AnimatedSparseVolumeTextureController_Update::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimatedSparseVolumeTextureController \ +static_assert(alignof(UAnimatedSparseVolumeTextureController) == 0x000008, "Wrong alignment on UAnimatedSparseVolumeTextureController"); \ +static_assert(sizeof(UAnimatedSparseVolumeTextureController) == 0x000048, "Wrong size on UAnimatedSparseVolumeTextureController"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, SparseVolumeTexture) == 0x000028, "Member 'UAnimatedSparseVolumeTextureController::SparseVolumeTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, Time) == 0x000030, "Member 'UAnimatedSparseVolumeTextureController::Time' has a wrong offset!"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, bIsPlaying) == 0x000034, "Member 'UAnimatedSparseVolumeTextureController::bIsPlaying' has a wrong offset!"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, FrameRate) == 0x000038, "Member 'UAnimatedSparseVolumeTextureController::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, MipLevel) == 0x00003C, "Member 'UAnimatedSparseVolumeTextureController::MipLevel' has a wrong offset!"); \ +static_assert(offsetof(UAnimatedSparseVolumeTextureController, bBlockingStreamingRequests) == 0x000040, "Member 'UAnimatedSparseVolumeTextureController::bBlockingStreamingRequests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASphereReflectionCapture \ +static_assert(alignof(ASphereReflectionCapture) == 0x000008, "Wrong alignment on ASphereReflectionCapture"); \ +static_assert(sizeof(ASphereReflectionCapture) == 0x0002A8, "Wrong size on ASphereReflectionCapture"); \ +static_assert(offsetof(ASphereReflectionCapture, DrawCaptureRadius) == 0x0002A0, "Member 'ASphereReflectionCapture::DrawCaptureRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USphereReflectionCaptureComponent \ +static_assert(alignof(USphereReflectionCaptureComponent) == 0x000010, "Wrong alignment on USphereReflectionCaptureComponent"); \ +static_assert(sizeof(USphereReflectionCaptureComponent) == 0x000320, "Wrong size on USphereReflectionCaptureComponent"); \ +static_assert(offsetof(USphereReflectionCaptureComponent, InfluenceRadius) == 0x000310, "Member 'USphereReflectionCaptureComponent::InfluenceRadius' has a wrong offset!"); \ +static_assert(offsetof(USphereReflectionCaptureComponent, CaptureDistanceScale) == 0x000314, "Member 'USphereReflectionCaptureComponent::CaptureDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(USphereReflectionCaptureComponent, PreviewInfluenceRadius) == 0x000318, "Member 'USphereReflectionCaptureComponent::PreviewInfluenceRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticMeshSocket \ +static_assert(alignof(UStaticMeshSocket) == 0x000008, "Wrong alignment on UStaticMeshSocket"); \ +static_assert(sizeof(UStaticMeshSocket) == 0x000088, "Wrong size on UStaticMeshSocket"); \ +static_assert(offsetof(UStaticMeshSocket, SocketName) == 0x000028, "Member 'UStaticMeshSocket::SocketName' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshSocket, RelativeLocation) == 0x000030, "Member 'UStaticMeshSocket::RelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshSocket, RelativeRotation) == 0x000048, "Member 'UStaticMeshSocket::RelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshSocket, RelativeScale) == 0x000060, "Member 'UStaticMeshSocket::RelativeScale' has a wrong offset!"); \ +static_assert(offsetof(UStaticMeshSocket, Tag) == 0x000078, "Member 'UStaticMeshSocket::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerShape \ +static_assert(alignof(UStereoLayerShape) == 0x000008, "Wrong alignment on UStereoLayerShape"); \ +static_assert(sizeof(UStereoLayerShape) == 0x000028, "Wrong size on UStereoLayerShape"); \ + +#define DUMPER7_ASSERTS_UStereoLayerShapeQuad \ +static_assert(alignof(UStereoLayerShapeQuad) == 0x000008, "Wrong alignment on UStereoLayerShapeQuad"); \ +static_assert(sizeof(UStereoLayerShapeQuad) == 0x000028, "Wrong size on UStereoLayerShapeQuad"); \ + +#define DUMPER7_ASSERTS_StereoLayerShapeCylinder_SetHeight \ +static_assert(alignof(StereoLayerShapeCylinder_SetHeight) == 0x000004, "Wrong alignment on StereoLayerShapeCylinder_SetHeight"); \ +static_assert(sizeof(StereoLayerShapeCylinder_SetHeight) == 0x000004, "Wrong size on StereoLayerShapeCylinder_SetHeight"); \ +static_assert(offsetof(StereoLayerShapeCylinder_SetHeight, InHeight) == 0x000000, "Member 'StereoLayerShapeCylinder_SetHeight::InHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerShapeCylinder_SetOverlayArc \ +static_assert(alignof(StereoLayerShapeCylinder_SetOverlayArc) == 0x000004, "Wrong alignment on StereoLayerShapeCylinder_SetOverlayArc"); \ +static_assert(sizeof(StereoLayerShapeCylinder_SetOverlayArc) == 0x000004, "Wrong size on StereoLayerShapeCylinder_SetOverlayArc"); \ +static_assert(offsetof(StereoLayerShapeCylinder_SetOverlayArc, InOverlayArc) == 0x000000, "Member 'StereoLayerShapeCylinder_SetOverlayArc::InOverlayArc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerShapeCylinder_SetRadius \ +static_assert(alignof(StereoLayerShapeCylinder_SetRadius) == 0x000004, "Wrong alignment on StereoLayerShapeCylinder_SetRadius"); \ +static_assert(sizeof(StereoLayerShapeCylinder_SetRadius) == 0x000004, "Wrong size on StereoLayerShapeCylinder_SetRadius"); \ +static_assert(offsetof(StereoLayerShapeCylinder_SetRadius, InRadius) == 0x000000, "Member 'StereoLayerShapeCylinder_SetRadius::InRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerShapeCylinder \ +static_assert(alignof(UStereoLayerShapeCylinder) == 0x000008, "Wrong alignment on UStereoLayerShapeCylinder"); \ +static_assert(sizeof(UStereoLayerShapeCylinder) == 0x000038, "Wrong size on UStereoLayerShapeCylinder"); \ +static_assert(offsetof(UStereoLayerShapeCylinder, Radius) == 0x000028, "Member 'UStereoLayerShapeCylinder::Radius' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeCylinder, OverlayArc) == 0x00002C, "Member 'UStereoLayerShapeCylinder::OverlayArc' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeCylinder, Height) == 0x000030, "Member 'UStereoLayerShapeCylinder::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerShapeCubemap \ +static_assert(alignof(UStereoLayerShapeCubemap) == 0x000008, "Wrong alignment on UStereoLayerShapeCubemap"); \ +static_assert(sizeof(UStereoLayerShapeCubemap) == 0x000028, "Wrong size on UStereoLayerShapeCubemap"); \ + +#define DUMPER7_ASSERTS_StereoLayerShapeEquirect_SetEquirectProps \ +static_assert(alignof(StereoLayerShapeEquirect_SetEquirectProps) == 0x000008, "Wrong alignment on StereoLayerShapeEquirect_SetEquirectProps"); \ +static_assert(sizeof(StereoLayerShapeEquirect_SetEquirectProps) == 0x000098, "Wrong size on StereoLayerShapeEquirect_SetEquirectProps"); \ +static_assert(offsetof(StereoLayerShapeEquirect_SetEquirectProps, InScaleBiases) == 0x000000, "Member 'StereoLayerShapeEquirect_SetEquirectProps::InScaleBiases' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerShapeEquirect \ +static_assert(alignof(UStereoLayerShapeEquirect) == 0x000008, "Wrong alignment on UStereoLayerShapeEquirect"); \ +static_assert(sizeof(UStereoLayerShapeEquirect) == 0x0000C0, "Wrong size on UStereoLayerShapeEquirect"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, LeftUVRect) == 0x000028, "Member 'UStereoLayerShapeEquirect::LeftUVRect' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, RightUVRect) == 0x000050, "Member 'UStereoLayerShapeEquirect::RightUVRect' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, LeftScale) == 0x000078, "Member 'UStereoLayerShapeEquirect::LeftScale' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, RightScale) == 0x000088, "Member 'UStereoLayerShapeEquirect::RightScale' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, LeftBias) == 0x000098, "Member 'UStereoLayerShapeEquirect::LeftBias' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, RightBias) == 0x0000A8, "Member 'UStereoLayerShapeEquirect::RightBias' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerShapeEquirect, Radius) == 0x0000B8, "Member 'UStereoLayerShapeEquirect::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveEdPresetCurve \ +static_assert(alignof(UCurveEdPresetCurve) == 0x000008, "Wrong alignment on UCurveEdPresetCurve"); \ +static_assert(sizeof(UCurveEdPresetCurve) == 0x000028, "Wrong size on UCurveEdPresetCurve"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetEquirectProps \ +static_assert(alignof(StereoLayerComponent_SetEquirectProps) == 0x000008, "Wrong alignment on StereoLayerComponent_SetEquirectProps"); \ +static_assert(sizeof(StereoLayerComponent_SetEquirectProps) == 0x000098, "Wrong size on StereoLayerComponent_SetEquirectProps"); \ +static_assert(offsetof(StereoLayerComponent_SetEquirectProps, InEquirectProps) == 0x000000, "Member 'StereoLayerComponent_SetEquirectProps::InEquirectProps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetLeftTexture \ +static_assert(alignof(StereoLayerComponent_SetLeftTexture) == 0x000008, "Wrong alignment on StereoLayerComponent_SetLeftTexture"); \ +static_assert(sizeof(StereoLayerComponent_SetLeftTexture) == 0x000008, "Wrong size on StereoLayerComponent_SetLeftTexture"); \ +static_assert(offsetof(StereoLayerComponent_SetLeftTexture, InTexture) == 0x000000, "Member 'StereoLayerComponent_SetLeftTexture::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetPriority \ +static_assert(alignof(StereoLayerComponent_SetPriority) == 0x000004, "Wrong alignment on StereoLayerComponent_SetPriority"); \ +static_assert(sizeof(StereoLayerComponent_SetPriority) == 0x000004, "Wrong size on StereoLayerComponent_SetPriority"); \ +static_assert(offsetof(StereoLayerComponent_SetPriority, InPriority) == 0x000000, "Member 'StereoLayerComponent_SetPriority::InPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetQuadSize \ +static_assert(alignof(StereoLayerComponent_SetQuadSize) == 0x000008, "Wrong alignment on StereoLayerComponent_SetQuadSize"); \ +static_assert(sizeof(StereoLayerComponent_SetQuadSize) == 0x000010, "Wrong size on StereoLayerComponent_SetQuadSize"); \ +static_assert(offsetof(StereoLayerComponent_SetQuadSize, InQuadSize) == 0x000000, "Member 'StereoLayerComponent_SetQuadSize::InQuadSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetTexture \ +static_assert(alignof(StereoLayerComponent_SetTexture) == 0x000008, "Wrong alignment on StereoLayerComponent_SetTexture"); \ +static_assert(sizeof(StereoLayerComponent_SetTexture) == 0x000008, "Wrong size on StereoLayerComponent_SetTexture"); \ +static_assert(offsetof(StereoLayerComponent_SetTexture, InTexture) == 0x000000, "Member 'StereoLayerComponent_SetTexture::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_SetUVRect \ +static_assert(alignof(StereoLayerComponent_SetUVRect) == 0x000008, "Wrong alignment on StereoLayerComponent_SetUVRect"); \ +static_assert(sizeof(StereoLayerComponent_SetUVRect) == 0x000028, "Wrong size on StereoLayerComponent_SetUVRect"); \ +static_assert(offsetof(StereoLayerComponent_SetUVRect, InUVRect) == 0x000000, "Member 'StereoLayerComponent_SetUVRect::InUVRect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_GetLeftTexture \ +static_assert(alignof(StereoLayerComponent_GetLeftTexture) == 0x000008, "Wrong alignment on StereoLayerComponent_GetLeftTexture"); \ +static_assert(sizeof(StereoLayerComponent_GetLeftTexture) == 0x000008, "Wrong size on StereoLayerComponent_GetLeftTexture"); \ +static_assert(offsetof(StereoLayerComponent_GetLeftTexture, ReturnValue) == 0x000000, "Member 'StereoLayerComponent_GetLeftTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_GetPriority \ +static_assert(alignof(StereoLayerComponent_GetPriority) == 0x000004, "Wrong alignment on StereoLayerComponent_GetPriority"); \ +static_assert(sizeof(StereoLayerComponent_GetPriority) == 0x000004, "Wrong size on StereoLayerComponent_GetPriority"); \ +static_assert(offsetof(StereoLayerComponent_GetPriority, ReturnValue) == 0x000000, "Member 'StereoLayerComponent_GetPriority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_GetQuadSize \ +static_assert(alignof(StereoLayerComponent_GetQuadSize) == 0x000008, "Wrong alignment on StereoLayerComponent_GetQuadSize"); \ +static_assert(sizeof(StereoLayerComponent_GetQuadSize) == 0x000010, "Wrong size on StereoLayerComponent_GetQuadSize"); \ +static_assert(offsetof(StereoLayerComponent_GetQuadSize, ReturnValue) == 0x000000, "Member 'StereoLayerComponent_GetQuadSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_GetTexture \ +static_assert(alignof(StereoLayerComponent_GetTexture) == 0x000008, "Wrong alignment on StereoLayerComponent_GetTexture"); \ +static_assert(sizeof(StereoLayerComponent_GetTexture) == 0x000008, "Wrong size on StereoLayerComponent_GetTexture"); \ +static_assert(offsetof(StereoLayerComponent_GetTexture, ReturnValue) == 0x000000, "Member 'StereoLayerComponent_GetTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StereoLayerComponent_GetUVRect \ +static_assert(alignof(StereoLayerComponent_GetUVRect) == 0x000008, "Wrong alignment on StereoLayerComponent_GetUVRect"); \ +static_assert(sizeof(StereoLayerComponent_GetUVRect) == 0x000028, "Wrong size on StereoLayerComponent_GetUVRect"); \ +static_assert(offsetof(StereoLayerComponent_GetUVRect, ReturnValue) == 0x000000, "Member 'StereoLayerComponent_GetUVRect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStereoLayerComponent \ +static_assert(alignof(UStereoLayerComponent) == 0x000010, "Wrong alignment on UStereoLayerComponent"); \ +static_assert(sizeof(UStereoLayerComponent) == 0x000430, "Wrong size on UStereoLayerComponent"); \ +static_assert(offsetof(UStereoLayerComponent, Texture) == 0x0002A8, "Member 'UStereoLayerComponent::Texture' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, LeftTexture) == 0x0002B0, "Member 'UStereoLayerComponent::LeftTexture' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, QuadSize) == 0x0002C0, "Member 'UStereoLayerComponent::QuadSize' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, UVRect) == 0x0002D0, "Member 'UStereoLayerComponent::UVRect' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, CylinderRadius) == 0x0002F8, "Member 'UStereoLayerComponent::CylinderRadius' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, CylinderOverlayArc) == 0x0002FC, "Member 'UStereoLayerComponent::CylinderOverlayArc' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, CylinderHeight) == 0x000300, "Member 'UStereoLayerComponent::CylinderHeight' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, EquirectProps) == 0x000308, "Member 'UStereoLayerComponent::EquirectProps' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, StereoLayerType) == 0x0003A0, "Member 'UStereoLayerComponent::StereoLayerType' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, StereoLayerShape) == 0x0003A1, "Member 'UStereoLayerComponent::StereoLayerShape' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, Shape) == 0x0003A8, "Member 'UStereoLayerComponent::Shape' has a wrong offset!"); \ +static_assert(offsetof(UStereoLayerComponent, Priority) == 0x0003B0, "Member 'UStereoLayerComponent::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubUVAnimation \ +static_assert(alignof(USubUVAnimation) == 0x000008, "Wrong alignment on USubUVAnimation"); \ +static_assert(sizeof(USubUVAnimation) == 0x000068, "Wrong size on USubUVAnimation"); \ +static_assert(offsetof(USubUVAnimation, SubUVTexture) == 0x000028, "Member 'USubUVAnimation::SubUVTexture' has a wrong offset!"); \ +static_assert(offsetof(USubUVAnimation, SubImages_Horizontal) == 0x000030, "Member 'USubUVAnimation::SubImages_Horizontal' has a wrong offset!"); \ +static_assert(offsetof(USubUVAnimation, SubImages_Vertical) == 0x000034, "Member 'USubUVAnimation::SubImages_Vertical' has a wrong offset!"); \ +static_assert(offsetof(USubUVAnimation, BoundingMode) == 0x000038, "Member 'USubUVAnimation::BoundingMode' has a wrong offset!"); \ +static_assert(offsetof(USubUVAnimation, OpacitySourceMode) == 0x000039, "Member 'USubUVAnimation::OpacitySourceMode' has a wrong offset!"); \ +static_assert(offsetof(USubUVAnimation, AlphaThreshold) == 0x00003C, "Member 'USubUVAnimation::AlphaThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeCell \ +static_assert(alignof(UWorldPartitionRuntimeCell) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeCell"); \ +static_assert(sizeof(UWorldPartitionRuntimeCell) == 0x000088, "Wrong size on UWorldPartitionRuntimeCell"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, bIsAlwaysLoaded) == 0x000030, "Member 'UWorldPartitionRuntimeCell::bIsAlwaysLoaded' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, DataLayers) == 0x000038, "Member 'UWorldPartitionRuntimeCell::DataLayers' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, Priority) == 0x000048, "Member 'UWorldPartitionRuntimeCell::Priority' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, bClientOnlyVisible) == 0x00004C, "Member 'UWorldPartitionRuntimeCell::bClientOnlyVisible' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, bIsHLOD) == 0x00004D, "Member 'UWorldPartitionRuntimeCell::bIsHLOD' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, bBlockOnSlowLoading) == 0x00004E, "Member 'UWorldPartitionRuntimeCell::bBlockOnSlowLoading' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, ContentBundleID) == 0x000050, "Member 'UWorldPartitionRuntimeCell::ContentBundleID' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, CellGuid) == 0x000060, "Member 'UWorldPartitionRuntimeCell::CellGuid' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, SourceCellGuid) == 0x000070, "Member 'UWorldPartitionRuntimeCell::SourceCellGuid' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCell, RuntimeCellData) == 0x000080, "Member 'UWorldPartitionRuntimeCell::RuntimeCellData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextPropertyTestObject \ +static_assert(alignof(UTextPropertyTestObject) == 0x000008, "Wrong alignment on UTextPropertyTestObject"); \ +static_assert(sizeof(UTextPropertyTestObject) == 0x000070, "Wrong size on UTextPropertyTestObject"); \ +static_assert(offsetof(UTextPropertyTestObject, DefaultedText) == 0x000028, "Member 'UTextPropertyTestObject::DefaultedText' has a wrong offset!"); \ +static_assert(offsetof(UTextPropertyTestObject, UndefaultedText) == 0x000040, "Member 'UTextPropertyTestObject::UndefaultedText' has a wrong offset!"); \ +static_assert(offsetof(UTextPropertyTestObject, TransientText) == 0x000058, "Member 'UTextPropertyTestObject::TransientText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATextRenderActor \ +static_assert(alignof(ATextRenderActor) == 0x000008, "Wrong alignment on ATextRenderActor"); \ +static_assert(sizeof(ATextRenderActor) == 0x0002A0, "Wrong size on ATextRenderActor"); \ +static_assert(offsetof(ATextRenderActor, TextRender) == 0x000298, "Member 'ATextRenderActor::TextRender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveVector_GetVectorValue \ +static_assert(alignof(CurveVector_GetVectorValue) == 0x000008, "Wrong alignment on CurveVector_GetVectorValue"); \ +static_assert(sizeof(CurveVector_GetVectorValue) == 0x000020, "Wrong size on CurveVector_GetVectorValue"); \ +static_assert(offsetof(CurveVector_GetVectorValue, InTime) == 0x000000, "Member 'CurveVector_GetVectorValue::InTime' has a wrong offset!"); \ +static_assert(offsetof(CurveVector_GetVectorValue, ReturnValue) == 0x000008, "Member 'CurveVector_GetVectorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveVector \ +static_assert(alignof(UCurveVector) == 0x000008, "Wrong alignment on UCurveVector"); \ +static_assert(sizeof(UCurveVector) == 0x0001B0, "Wrong size on UCurveVector"); \ +static_assert(offsetof(UCurveVector, FloatCurves) == 0x000030, "Member 'UCurveVector::FloatCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionLevelStreamingDynamic \ +static_assert(alignof(UWorldPartitionLevelStreamingDynamic) == 0x000010, "Wrong alignment on UWorldPartitionLevelStreamingDynamic"); \ +static_assert(sizeof(UWorldPartitionLevelStreamingDynamic) == 0x0001C0, "Wrong size on UWorldPartitionLevelStreamingDynamic"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingDynamic, bShouldBeAlwaysLoaded) == 0x0001A0, "Member 'UWorldPartitionLevelStreamingDynamic::bShouldBeAlwaysLoaded' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingDynamic, StreamingCell) == 0x0001A4, "Member 'UWorldPartitionLevelStreamingDynamic::StreamingCell' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingDynamic, OuterWorldPartition) == 0x0001B0, "Member 'UWorldPartitionLevelStreamingDynamic::OuterWorldPartition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_K2_SetText \ +static_assert(alignof(TextRenderComponent_K2_SetText) == 0x000008, "Wrong alignment on TextRenderComponent_K2_SetText"); \ +static_assert(sizeof(TextRenderComponent_K2_SetText) == 0x000018, "Wrong size on TextRenderComponent_K2_SetText"); \ +static_assert(offsetof(TextRenderComponent_K2_SetText, Value) == 0x000000, "Member 'TextRenderComponent_K2_SetText::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetFont \ +static_assert(alignof(TextRenderComponent_SetFont) == 0x000008, "Wrong alignment on TextRenderComponent_SetFont"); \ +static_assert(sizeof(TextRenderComponent_SetFont) == 0x000008, "Wrong size on TextRenderComponent_SetFont"); \ +static_assert(offsetof(TextRenderComponent_SetFont, Value) == 0x000000, "Member 'TextRenderComponent_SetFont::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetHorizontalAlignment \ +static_assert(alignof(TextRenderComponent_SetHorizontalAlignment) == 0x000001, "Wrong alignment on TextRenderComponent_SetHorizontalAlignment"); \ +static_assert(sizeof(TextRenderComponent_SetHorizontalAlignment) == 0x000001, "Wrong size on TextRenderComponent_SetHorizontalAlignment"); \ +static_assert(offsetof(TextRenderComponent_SetHorizontalAlignment, Value) == 0x000000, "Member 'TextRenderComponent_SetHorizontalAlignment::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetHorizSpacingAdjust \ +static_assert(alignof(TextRenderComponent_SetHorizSpacingAdjust) == 0x000004, "Wrong alignment on TextRenderComponent_SetHorizSpacingAdjust"); \ +static_assert(sizeof(TextRenderComponent_SetHorizSpacingAdjust) == 0x000004, "Wrong size on TextRenderComponent_SetHorizSpacingAdjust"); \ +static_assert(offsetof(TextRenderComponent_SetHorizSpacingAdjust, Value) == 0x000000, "Member 'TextRenderComponent_SetHorizSpacingAdjust::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetText \ +static_assert(alignof(TextRenderComponent_SetText) == 0x000008, "Wrong alignment on TextRenderComponent_SetText"); \ +static_assert(sizeof(TextRenderComponent_SetText) == 0x000018, "Wrong size on TextRenderComponent_SetText"); \ +static_assert(offsetof(TextRenderComponent_SetText, Value) == 0x000000, "Member 'TextRenderComponent_SetText::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetTextMaterial \ +static_assert(alignof(TextRenderComponent_SetTextMaterial) == 0x000008, "Wrong alignment on TextRenderComponent_SetTextMaterial"); \ +static_assert(sizeof(TextRenderComponent_SetTextMaterial) == 0x000008, "Wrong size on TextRenderComponent_SetTextMaterial"); \ +static_assert(offsetof(TextRenderComponent_SetTextMaterial, Material) == 0x000000, "Member 'TextRenderComponent_SetTextMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetTextRenderColor \ +static_assert(alignof(TextRenderComponent_SetTextRenderColor) == 0x000004, "Wrong alignment on TextRenderComponent_SetTextRenderColor"); \ +static_assert(sizeof(TextRenderComponent_SetTextRenderColor) == 0x000004, "Wrong size on TextRenderComponent_SetTextRenderColor"); \ +static_assert(offsetof(TextRenderComponent_SetTextRenderColor, Value) == 0x000000, "Member 'TextRenderComponent_SetTextRenderColor::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetVerticalAlignment \ +static_assert(alignof(TextRenderComponent_SetVerticalAlignment) == 0x000001, "Wrong alignment on TextRenderComponent_SetVerticalAlignment"); \ +static_assert(sizeof(TextRenderComponent_SetVerticalAlignment) == 0x000001, "Wrong size on TextRenderComponent_SetVerticalAlignment"); \ +static_assert(offsetof(TextRenderComponent_SetVerticalAlignment, Value) == 0x000000, "Member 'TextRenderComponent_SetVerticalAlignment::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetVertSpacingAdjust \ +static_assert(alignof(TextRenderComponent_SetVertSpacingAdjust) == 0x000004, "Wrong alignment on TextRenderComponent_SetVertSpacingAdjust"); \ +static_assert(sizeof(TextRenderComponent_SetVertSpacingAdjust) == 0x000004, "Wrong size on TextRenderComponent_SetVertSpacingAdjust"); \ +static_assert(offsetof(TextRenderComponent_SetVertSpacingAdjust, Value) == 0x000000, "Member 'TextRenderComponent_SetVertSpacingAdjust::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetWorldSize \ +static_assert(alignof(TextRenderComponent_SetWorldSize) == 0x000004, "Wrong alignment on TextRenderComponent_SetWorldSize"); \ +static_assert(sizeof(TextRenderComponent_SetWorldSize) == 0x000004, "Wrong size on TextRenderComponent_SetWorldSize"); \ +static_assert(offsetof(TextRenderComponent_SetWorldSize, Value) == 0x000000, "Member 'TextRenderComponent_SetWorldSize::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetXScale \ +static_assert(alignof(TextRenderComponent_SetXScale) == 0x000004, "Wrong alignment on TextRenderComponent_SetXScale"); \ +static_assert(sizeof(TextRenderComponent_SetXScale) == 0x000004, "Wrong size on TextRenderComponent_SetXScale"); \ +static_assert(offsetof(TextRenderComponent_SetXScale, Value) == 0x000000, "Member 'TextRenderComponent_SetXScale::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_SetYScale \ +static_assert(alignof(TextRenderComponent_SetYScale) == 0x000004, "Wrong alignment on TextRenderComponent_SetYScale"); \ +static_assert(sizeof(TextRenderComponent_SetYScale) == 0x000004, "Wrong size on TextRenderComponent_SetYScale"); \ +static_assert(offsetof(TextRenderComponent_SetYScale, Value) == 0x000000, "Member 'TextRenderComponent_SetYScale::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_GetTextLocalSize \ +static_assert(alignof(TextRenderComponent_GetTextLocalSize) == 0x000008, "Wrong alignment on TextRenderComponent_GetTextLocalSize"); \ +static_assert(sizeof(TextRenderComponent_GetTextLocalSize) == 0x000018, "Wrong size on TextRenderComponent_GetTextLocalSize"); \ +static_assert(offsetof(TextRenderComponent_GetTextLocalSize, ReturnValue) == 0x000000, "Member 'TextRenderComponent_GetTextLocalSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextRenderComponent_GetTextWorldSize \ +static_assert(alignof(TextRenderComponent_GetTextWorldSize) == 0x000008, "Wrong alignment on TextRenderComponent_GetTextWorldSize"); \ +static_assert(sizeof(TextRenderComponent_GetTextWorldSize) == 0x000018, "Wrong size on TextRenderComponent_GetTextWorldSize"); \ +static_assert(offsetof(TextRenderComponent_GetTextWorldSize, ReturnValue) == 0x000000, "Member 'TextRenderComponent_GetTextWorldSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextRenderComponent \ +static_assert(alignof(UTextRenderComponent) == 0x000010, "Wrong alignment on UTextRenderComponent"); \ +static_assert(sizeof(UTextRenderComponent) == 0x0005C0, "Wrong size on UTextRenderComponent"); \ +static_assert(offsetof(UTextRenderComponent, Text) == 0x000570, "Member 'UTextRenderComponent::Text' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, TextMaterial) == 0x000588, "Member 'UTextRenderComponent::TextMaterial' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, Font) == 0x000590, "Member 'UTextRenderComponent::Font' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, HorizontalAlignment) == 0x000598, "Member 'UTextRenderComponent::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, VerticalAlignment) == 0x000599, "Member 'UTextRenderComponent::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, TextRenderColor) == 0x00059C, "Member 'UTextRenderComponent::TextRenderColor' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, XScale) == 0x0005A0, "Member 'UTextRenderComponent::XScale' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, YScale) == 0x0005A4, "Member 'UTextRenderComponent::YScale' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, WorldSize) == 0x0005A8, "Member 'UTextRenderComponent::WorldSize' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, InvDefaultSize) == 0x0005AC, "Member 'UTextRenderComponent::InvDefaultSize' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, HorizSpacingAdjust) == 0x0005B0, "Member 'UTextRenderComponent::HorizSpacingAdjust' has a wrong offset!"); \ +static_assert(offsetof(UTextRenderComponent, VertSpacingAdjust) == 0x0005B4, "Member 'UTextRenderComponent::VertSpacingAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureEncodingProjectSettings \ +static_assert(alignof(UTextureEncodingProjectSettings) == 0x000008, "Wrong alignment on UTextureEncodingProjectSettings"); \ +static_assert(sizeof(UTextureEncodingProjectSettings) == 0x000050, "Wrong size on UTextureEncodingProjectSettings"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FinalRDOLambda) == 0x00003C, "Member 'UTextureEncodingProjectSettings::FinalRDOLambda' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FinalEffortLevel) == 0x00003D, "Member 'UTextureEncodingProjectSettings::FinalEffortLevel' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FinalUniversalTiling) == 0x00003E, "Member 'UTextureEncodingProjectSettings::FinalUniversalTiling' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FastRDOLambda) == 0x000044, "Member 'UTextureEncodingProjectSettings::FastRDOLambda' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FastEffortLevel) == 0x000045, "Member 'UTextureEncodingProjectSettings::FastEffortLevel' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, FastUniversalTiling) == 0x000046, "Member 'UTextureEncodingProjectSettings::FastUniversalTiling' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, CookUsesSpeed) == 0x000047, "Member 'UTextureEncodingProjectSettings::CookUsesSpeed' has a wrong offset!"); \ +static_assert(offsetof(UTextureEncodingProjectSettings, EditorUsesSpeed) == 0x000048, "Member 'UTextureEncodingProjectSettings::EditorUsesSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureEncodingUserSettings \ +static_assert(alignof(UTextureEncodingUserSettings) == 0x000008, "Wrong alignment on UTextureEncodingUserSettings"); \ +static_assert(sizeof(UTextureEncodingUserSettings) == 0x000040, "Wrong size on UTextureEncodingUserSettings"); \ +static_assert(offsetof(UTextureEncodingUserSettings, ForceEncodeSpeed) == 0x000038, "Member 'UTextureEncodingUserSettings::ForceEncodeSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_AddEvent \ +static_assert(alignof(TimelineComponent_AddEvent) == 0x000004, "Wrong alignment on TimelineComponent_AddEvent"); \ +static_assert(sizeof(TimelineComponent_AddEvent) == 0x000014, "Wrong size on TimelineComponent_AddEvent"); \ +static_assert(offsetof(TimelineComponent_AddEvent, Time) == 0x000000, "Member 'TimelineComponent_AddEvent::Time' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddEvent, EventFunc) == 0x000004, "Member 'TimelineComponent_AddEvent::EventFunc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_AddInterpFloat \ +static_assert(alignof(TimelineComponent_AddInterpFloat) == 0x000008, "Wrong alignment on TimelineComponent_AddInterpFloat"); \ +static_assert(sizeof(TimelineComponent_AddInterpFloat) == 0x000028, "Wrong size on TimelineComponent_AddInterpFloat"); \ +static_assert(offsetof(TimelineComponent_AddInterpFloat, FloatCurve) == 0x000000, "Member 'TimelineComponent_AddInterpFloat::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpFloat, InterpFunc) == 0x000008, "Member 'TimelineComponent_AddInterpFloat::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpFloat, PropertyName) == 0x000018, "Member 'TimelineComponent_AddInterpFloat::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpFloat, TrackName) == 0x000020, "Member 'TimelineComponent_AddInterpFloat::TrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_AddInterpLinearColor \ +static_assert(alignof(TimelineComponent_AddInterpLinearColor) == 0x000008, "Wrong alignment on TimelineComponent_AddInterpLinearColor"); \ +static_assert(sizeof(TimelineComponent_AddInterpLinearColor) == 0x000028, "Wrong size on TimelineComponent_AddInterpLinearColor"); \ +static_assert(offsetof(TimelineComponent_AddInterpLinearColor, LinearColorCurve) == 0x000000, "Member 'TimelineComponent_AddInterpLinearColor::LinearColorCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpLinearColor, InterpFunc) == 0x000008, "Member 'TimelineComponent_AddInterpLinearColor::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpLinearColor, PropertyName) == 0x000018, "Member 'TimelineComponent_AddInterpLinearColor::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpLinearColor, TrackName) == 0x000020, "Member 'TimelineComponent_AddInterpLinearColor::TrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_AddInterpVector \ +static_assert(alignof(TimelineComponent_AddInterpVector) == 0x000008, "Wrong alignment on TimelineComponent_AddInterpVector"); \ +static_assert(sizeof(TimelineComponent_AddInterpVector) == 0x000028, "Wrong size on TimelineComponent_AddInterpVector"); \ +static_assert(offsetof(TimelineComponent_AddInterpVector, VectorCurve) == 0x000000, "Member 'TimelineComponent_AddInterpVector::VectorCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpVector, InterpFunc) == 0x000008, "Member 'TimelineComponent_AddInterpVector::InterpFunc' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpVector, PropertyName) == 0x000018, "Member 'TimelineComponent_AddInterpVector::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_AddInterpVector, TrackName) == 0x000020, "Member 'TimelineComponent_AddInterpVector::TrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_OnRep_Timeline \ +static_assert(alignof(TimelineComponent_OnRep_Timeline) == 0x000008, "Wrong alignment on TimelineComponent_OnRep_Timeline"); \ +static_assert(sizeof(TimelineComponent_OnRep_Timeline) == 0x000098, "Wrong size on TimelineComponent_OnRep_Timeline"); \ +static_assert(offsetof(TimelineComponent_OnRep_Timeline, OldTimeline) == 0x000000, "Member 'TimelineComponent_OnRep_Timeline::OldTimeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetFloatCurve \ +static_assert(alignof(TimelineComponent_SetFloatCurve) == 0x000008, "Wrong alignment on TimelineComponent_SetFloatCurve"); \ +static_assert(sizeof(TimelineComponent_SetFloatCurve) == 0x000010, "Wrong size on TimelineComponent_SetFloatCurve"); \ +static_assert(offsetof(TimelineComponent_SetFloatCurve, NewFloatCurve) == 0x000000, "Member 'TimelineComponent_SetFloatCurve::NewFloatCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_SetFloatCurve, FloatTrackName) == 0x000008, "Member 'TimelineComponent_SetFloatCurve::FloatTrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetIgnoreTimeDilation \ +static_assert(alignof(TimelineComponent_SetIgnoreTimeDilation) == 0x000001, "Wrong alignment on TimelineComponent_SetIgnoreTimeDilation"); \ +static_assert(sizeof(TimelineComponent_SetIgnoreTimeDilation) == 0x000001, "Wrong size on TimelineComponent_SetIgnoreTimeDilation"); \ +static_assert(offsetof(TimelineComponent_SetIgnoreTimeDilation, bNewIgnoreTimeDilation) == 0x000000, "Member 'TimelineComponent_SetIgnoreTimeDilation::bNewIgnoreTimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetLinearColorCurve \ +static_assert(alignof(TimelineComponent_SetLinearColorCurve) == 0x000008, "Wrong alignment on TimelineComponent_SetLinearColorCurve"); \ +static_assert(sizeof(TimelineComponent_SetLinearColorCurve) == 0x000010, "Wrong size on TimelineComponent_SetLinearColorCurve"); \ +static_assert(offsetof(TimelineComponent_SetLinearColorCurve, NewLinearColorCurve) == 0x000000, "Member 'TimelineComponent_SetLinearColorCurve::NewLinearColorCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_SetLinearColorCurve, LinearColorTrackName) == 0x000008, "Member 'TimelineComponent_SetLinearColorCurve::LinearColorTrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetLooping \ +static_assert(alignof(TimelineComponent_SetLooping) == 0x000001, "Wrong alignment on TimelineComponent_SetLooping"); \ +static_assert(sizeof(TimelineComponent_SetLooping) == 0x000001, "Wrong size on TimelineComponent_SetLooping"); \ +static_assert(offsetof(TimelineComponent_SetLooping, bNewLooping) == 0x000000, "Member 'TimelineComponent_SetLooping::bNewLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetNewTime \ +static_assert(alignof(TimelineComponent_SetNewTime) == 0x000004, "Wrong alignment on TimelineComponent_SetNewTime"); \ +static_assert(sizeof(TimelineComponent_SetNewTime) == 0x000004, "Wrong size on TimelineComponent_SetNewTime"); \ +static_assert(offsetof(TimelineComponent_SetNewTime, NewTime) == 0x000000, "Member 'TimelineComponent_SetNewTime::NewTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetPlaybackPosition \ +static_assert(alignof(TimelineComponent_SetPlaybackPosition) == 0x000004, "Wrong alignment on TimelineComponent_SetPlaybackPosition"); \ +static_assert(sizeof(TimelineComponent_SetPlaybackPosition) == 0x000008, "Wrong size on TimelineComponent_SetPlaybackPosition"); \ +static_assert(offsetof(TimelineComponent_SetPlaybackPosition, NewPosition) == 0x000000, "Member 'TimelineComponent_SetPlaybackPosition::NewPosition' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_SetPlaybackPosition, bFireEvents) == 0x000004, "Member 'TimelineComponent_SetPlaybackPosition::bFireEvents' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_SetPlaybackPosition, bFireUpdate) == 0x000005, "Member 'TimelineComponent_SetPlaybackPosition::bFireUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetPlayRate \ +static_assert(alignof(TimelineComponent_SetPlayRate) == 0x000004, "Wrong alignment on TimelineComponent_SetPlayRate"); \ +static_assert(sizeof(TimelineComponent_SetPlayRate) == 0x000004, "Wrong size on TimelineComponent_SetPlayRate"); \ +static_assert(offsetof(TimelineComponent_SetPlayRate, NewRate) == 0x000000, "Member 'TimelineComponent_SetPlayRate::NewRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetTimelineFinishedFunc \ +static_assert(alignof(TimelineComponent_SetTimelineFinishedFunc) == 0x000004, "Wrong alignment on TimelineComponent_SetTimelineFinishedFunc"); \ +static_assert(sizeof(TimelineComponent_SetTimelineFinishedFunc) == 0x000010, "Wrong size on TimelineComponent_SetTimelineFinishedFunc"); \ +static_assert(offsetof(TimelineComponent_SetTimelineFinishedFunc, NewTimelineFinishedFunc) == 0x000000, "Member 'TimelineComponent_SetTimelineFinishedFunc::NewTimelineFinishedFunc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetTimelineLength \ +static_assert(alignof(TimelineComponent_SetTimelineLength) == 0x000004, "Wrong alignment on TimelineComponent_SetTimelineLength"); \ +static_assert(sizeof(TimelineComponent_SetTimelineLength) == 0x000004, "Wrong size on TimelineComponent_SetTimelineLength"); \ +static_assert(offsetof(TimelineComponent_SetTimelineLength, NewLength) == 0x000000, "Member 'TimelineComponent_SetTimelineLength::NewLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetTimelineLengthMode \ +static_assert(alignof(TimelineComponent_SetTimelineLengthMode) == 0x000001, "Wrong alignment on TimelineComponent_SetTimelineLengthMode"); \ +static_assert(sizeof(TimelineComponent_SetTimelineLengthMode) == 0x000001, "Wrong size on TimelineComponent_SetTimelineLengthMode"); \ +static_assert(offsetof(TimelineComponent_SetTimelineLengthMode, NewLengthMode) == 0x000000, "Member 'TimelineComponent_SetTimelineLengthMode::NewLengthMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetTimelinePostUpdateFunc \ +static_assert(alignof(TimelineComponent_SetTimelinePostUpdateFunc) == 0x000004, "Wrong alignment on TimelineComponent_SetTimelinePostUpdateFunc"); \ +static_assert(sizeof(TimelineComponent_SetTimelinePostUpdateFunc) == 0x000010, "Wrong size on TimelineComponent_SetTimelinePostUpdateFunc"); \ +static_assert(offsetof(TimelineComponent_SetTimelinePostUpdateFunc, NewTimelinePostUpdateFunc) == 0x000000, "Member 'TimelineComponent_SetTimelinePostUpdateFunc::NewTimelinePostUpdateFunc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_SetVectorCurve \ +static_assert(alignof(TimelineComponent_SetVectorCurve) == 0x000008, "Wrong alignment on TimelineComponent_SetVectorCurve"); \ +static_assert(sizeof(TimelineComponent_SetVectorCurve) == 0x000010, "Wrong size on TimelineComponent_SetVectorCurve"); \ +static_assert(offsetof(TimelineComponent_SetVectorCurve, NewVectorCurve) == 0x000000, "Member 'TimelineComponent_SetVectorCurve::NewVectorCurve' has a wrong offset!"); \ +static_assert(offsetof(TimelineComponent_SetVectorCurve, VectorTrackName) == 0x000008, "Member 'TimelineComponent_SetVectorCurve::VectorTrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_GetIgnoreTimeDilation \ +static_assert(alignof(TimelineComponent_GetIgnoreTimeDilation) == 0x000001, "Wrong alignment on TimelineComponent_GetIgnoreTimeDilation"); \ +static_assert(sizeof(TimelineComponent_GetIgnoreTimeDilation) == 0x000001, "Wrong size on TimelineComponent_GetIgnoreTimeDilation"); \ +static_assert(offsetof(TimelineComponent_GetIgnoreTimeDilation, ReturnValue) == 0x000000, "Member 'TimelineComponent_GetIgnoreTimeDilation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_GetPlaybackPosition \ +static_assert(alignof(TimelineComponent_GetPlaybackPosition) == 0x000004, "Wrong alignment on TimelineComponent_GetPlaybackPosition"); \ +static_assert(sizeof(TimelineComponent_GetPlaybackPosition) == 0x000004, "Wrong size on TimelineComponent_GetPlaybackPosition"); \ +static_assert(offsetof(TimelineComponent_GetPlaybackPosition, ReturnValue) == 0x000000, "Member 'TimelineComponent_GetPlaybackPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_GetPlayRate \ +static_assert(alignof(TimelineComponent_GetPlayRate) == 0x000004, "Wrong alignment on TimelineComponent_GetPlayRate"); \ +static_assert(sizeof(TimelineComponent_GetPlayRate) == 0x000004, "Wrong size on TimelineComponent_GetPlayRate"); \ +static_assert(offsetof(TimelineComponent_GetPlayRate, ReturnValue) == 0x000000, "Member 'TimelineComponent_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_GetScaledTimelineLength \ +static_assert(alignof(TimelineComponent_GetScaledTimelineLength) == 0x000004, "Wrong alignment on TimelineComponent_GetScaledTimelineLength"); \ +static_assert(sizeof(TimelineComponent_GetScaledTimelineLength) == 0x000004, "Wrong size on TimelineComponent_GetScaledTimelineLength"); \ +static_assert(offsetof(TimelineComponent_GetScaledTimelineLength, ReturnValue) == 0x000000, "Member 'TimelineComponent_GetScaledTimelineLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_GetTimelineLength \ +static_assert(alignof(TimelineComponent_GetTimelineLength) == 0x000004, "Wrong alignment on TimelineComponent_GetTimelineLength"); \ +static_assert(sizeof(TimelineComponent_GetTimelineLength) == 0x000004, "Wrong size on TimelineComponent_GetTimelineLength"); \ +static_assert(offsetof(TimelineComponent_GetTimelineLength, ReturnValue) == 0x000000, "Member 'TimelineComponent_GetTimelineLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_IsLooping \ +static_assert(alignof(TimelineComponent_IsLooping) == 0x000001, "Wrong alignment on TimelineComponent_IsLooping"); \ +static_assert(sizeof(TimelineComponent_IsLooping) == 0x000001, "Wrong size on TimelineComponent_IsLooping"); \ +static_assert(offsetof(TimelineComponent_IsLooping, ReturnValue) == 0x000000, "Member 'TimelineComponent_IsLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_IsPlaying \ +static_assert(alignof(TimelineComponent_IsPlaying) == 0x000001, "Wrong alignment on TimelineComponent_IsPlaying"); \ +static_assert(sizeof(TimelineComponent_IsPlaying) == 0x000001, "Wrong size on TimelineComponent_IsPlaying"); \ +static_assert(offsetof(TimelineComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'TimelineComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimelineComponent_IsReversing \ +static_assert(alignof(TimelineComponent_IsReversing) == 0x000001, "Wrong alignment on TimelineComponent_IsReversing"); \ +static_assert(sizeof(TimelineComponent_IsReversing) == 0x000001, "Wrong size on TimelineComponent_IsReversing"); \ +static_assert(offsetof(TimelineComponent_IsReversing, ReturnValue) == 0x000000, "Member 'TimelineComponent_IsReversing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTimelineComponent \ +static_assert(alignof(UTimelineComponent) == 0x000008, "Wrong alignment on UTimelineComponent"); \ +static_assert(sizeof(UTimelineComponent) == 0x000140, "Wrong size on UTimelineComponent"); \ +static_assert(offsetof(UTimelineComponent, TheTimeline) == 0x0000A0, "Member 'UTimelineComponent::TheTimeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataDrivenConsoleVariableSettings \ +static_assert(alignof(UDataDrivenConsoleVariableSettings) == 0x000008, "Wrong alignment on UDataDrivenConsoleVariableSettings"); \ +static_assert(sizeof(UDataDrivenConsoleVariableSettings) == 0x000070, "Wrong size on UDataDrivenConsoleVariableSettings"); \ +static_assert(offsetof(UDataDrivenConsoleVariableSettings, CVarsArray) == 0x000050, "Member 'UDataDrivenConsoleVariableSettings::CVarsArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USemalessTransitionHandler \ +static_assert(alignof(USemalessTransitionHandler) == 0x000008, "Wrong alignment on USemalessTransitionHandler"); \ +static_assert(sizeof(USemalessTransitionHandler) == 0x000028, "Wrong size on USemalessTransitionHandler"); \ + +#define DUMPER7_ASSERTS_ATriggerBase \ +static_assert(alignof(ATriggerBase) == 0x000008, "Wrong alignment on ATriggerBase"); \ +static_assert(sizeof(ATriggerBase) == 0x0002A0, "Wrong size on ATriggerBase"); \ +static_assert(offsetof(ATriggerBase, CollisionComponent) == 0x000298, "Member 'ATriggerBase::CollisionComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATriggerBox \ +static_assert(alignof(ATriggerBox) == 0x000008, "Wrong alignment on ATriggerBox"); \ +static_assert(sizeof(ATriggerBox) == 0x0002A0, "Wrong size on ATriggerBox"); \ + +#define DUMPER7_ASSERTS_ATriggerCapsule \ +static_assert(alignof(ATriggerCapsule) == 0x000008, "Wrong alignment on ATriggerCapsule"); \ +static_assert(sizeof(ATriggerCapsule) == 0x0002A0, "Wrong size on ATriggerCapsule"); \ + +#define DUMPER7_ASSERTS_ADebugCameraHUD \ +static_assert(alignof(ADebugCameraHUD) == 0x000008, "Wrong alignment on ADebugCameraHUD"); \ +static_assert(sizeof(ADebugCameraHUD) == 0x000388, "Wrong size on ADebugCameraHUD"); \ + +#define DUMPER7_ASSERTS_ATriggerSphere \ +static_assert(alignof(ATriggerSphere) == 0x000008, "Wrong alignment on ATriggerSphere"); \ +static_assert(sizeof(ATriggerSphere) == 0x0002A0, "Wrong size on ATriggerSphere"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_AuthorizeAccounts \ +static_assert(alignof(TwitterIntegrationBase_AuthorizeAccounts) == 0x000001, "Wrong alignment on TwitterIntegrationBase_AuthorizeAccounts"); \ +static_assert(sizeof(TwitterIntegrationBase_AuthorizeAccounts) == 0x000001, "Wrong size on TwitterIntegrationBase_AuthorizeAccounts"); \ +static_assert(offsetof(TwitterIntegrationBase_AuthorizeAccounts, ReturnValue) == 0x000000, "Member 'TwitterIntegrationBase_AuthorizeAccounts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_CanShowTweetUI \ +static_assert(alignof(TwitterIntegrationBase_CanShowTweetUI) == 0x000001, "Wrong alignment on TwitterIntegrationBase_CanShowTweetUI"); \ +static_assert(sizeof(TwitterIntegrationBase_CanShowTweetUI) == 0x000001, "Wrong size on TwitterIntegrationBase_CanShowTweetUI"); \ +static_assert(offsetof(TwitterIntegrationBase_CanShowTweetUI, ReturnValue) == 0x000000, "Member 'TwitterIntegrationBase_CanShowTweetUI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_GetAccountName \ +static_assert(alignof(TwitterIntegrationBase_GetAccountName) == 0x000008, "Wrong alignment on TwitterIntegrationBase_GetAccountName"); \ +static_assert(sizeof(TwitterIntegrationBase_GetAccountName) == 0x000018, "Wrong size on TwitterIntegrationBase_GetAccountName"); \ +static_assert(offsetof(TwitterIntegrationBase_GetAccountName, AccountIndex) == 0x000000, "Member 'TwitterIntegrationBase_GetAccountName::AccountIndex' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_GetAccountName, ReturnValue) == 0x000008, "Member 'TwitterIntegrationBase_GetAccountName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_GetNumAccounts \ +static_assert(alignof(TwitterIntegrationBase_GetNumAccounts) == 0x000004, "Wrong alignment on TwitterIntegrationBase_GetNumAccounts"); \ +static_assert(sizeof(TwitterIntegrationBase_GetNumAccounts) == 0x000004, "Wrong size on TwitterIntegrationBase_GetNumAccounts"); \ +static_assert(offsetof(TwitterIntegrationBase_GetNumAccounts, ReturnValue) == 0x000000, "Member 'TwitterIntegrationBase_GetNumAccounts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_ShowTweetUI \ +static_assert(alignof(TwitterIntegrationBase_ShowTweetUI) == 0x000008, "Wrong alignment on TwitterIntegrationBase_ShowTweetUI"); \ +static_assert(sizeof(TwitterIntegrationBase_ShowTweetUI) == 0x000038, "Wrong size on TwitterIntegrationBase_ShowTweetUI"); \ +static_assert(offsetof(TwitterIntegrationBase_ShowTweetUI, InitialMessage) == 0x000000, "Member 'TwitterIntegrationBase_ShowTweetUI::InitialMessage' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_ShowTweetUI, URL) == 0x000010, "Member 'TwitterIntegrationBase_ShowTweetUI::URL' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_ShowTweetUI, Picture) == 0x000020, "Member 'TwitterIntegrationBase_ShowTweetUI::Picture' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_ShowTweetUI, ReturnValue) == 0x000030, "Member 'TwitterIntegrationBase_ShowTweetUI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TwitterIntegrationBase_TwitterRequest \ +static_assert(alignof(TwitterIntegrationBase_TwitterRequest) == 0x000008, "Wrong alignment on TwitterIntegrationBase_TwitterRequest"); \ +static_assert(sizeof(TwitterIntegrationBase_TwitterRequest) == 0x000030, "Wrong size on TwitterIntegrationBase_TwitterRequest"); \ +static_assert(offsetof(TwitterIntegrationBase_TwitterRequest, URL) == 0x000000, "Member 'TwitterIntegrationBase_TwitterRequest::URL' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_TwitterRequest, ParamKeysAndValues) == 0x000010, "Member 'TwitterIntegrationBase_TwitterRequest::ParamKeysAndValues' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_TwitterRequest, RequestMethod) == 0x000020, "Member 'TwitterIntegrationBase_TwitterRequest::RequestMethod' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_TwitterRequest, AccountIndex) == 0x000024, "Member 'TwitterIntegrationBase_TwitterRequest::AccountIndex' has a wrong offset!"); \ +static_assert(offsetof(TwitterIntegrationBase_TwitterRequest, ReturnValue) == 0x000028, "Member 'TwitterIntegrationBase_TwitterRequest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTwitterIntegrationBase \ +static_assert(alignof(UTwitterIntegrationBase) == 0x000008, "Wrong alignment on UTwitterIntegrationBase"); \ +static_assert(sizeof(UTwitterIntegrationBase) == 0x000038, "Wrong size on UTwitterIntegrationBase"); \ + +#define DUMPER7_ASSERTS_UUserDefinedStruct \ +static_assert(alignof(UUserDefinedStruct) == 0x000008, "Wrong alignment on UUserDefinedStruct"); \ +static_assert(sizeof(UUserDefinedStruct) == 0x000108, "Wrong size on UUserDefinedStruct"); \ +static_assert(offsetof(UUserDefinedStruct, Status) == 0x0000C0, "Member 'UUserDefinedStruct::Status' has a wrong offset!"); \ +static_assert(offsetof(UUserDefinedStruct, Guid) == 0x0000C4, "Member 'UUserDefinedStruct::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVariableFrameStrippingSettings \ +static_assert(alignof(UVariableFrameStrippingSettings) == 0x000008, "Wrong alignment on UVariableFrameStrippingSettings"); \ +static_assert(sizeof(UVariableFrameStrippingSettings) == 0x000030, "Wrong size on UVariableFrameStrippingSettings"); \ +static_assert(offsetof(UVariableFrameStrippingSettings, UseVariableFrameStripping) == 0x000028, "Member 'UVariableFrameStrippingSettings::UseVariableFrameStripping' has a wrong offset!"); \ +static_assert(offsetof(UVariableFrameStrippingSettings, FrameStrippingRate) == 0x00002C, "Member 'UVariableFrameStrippingSettings::FrameStrippingRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVectorField \ +static_assert(alignof(UVectorField) == 0x000008, "Wrong alignment on UVectorField"); \ +static_assert(sizeof(UVectorField) == 0x000068, "Wrong size on UVectorField"); \ +static_assert(offsetof(UVectorField, Bounds) == 0x000028, "Member 'UVectorField::Bounds' has a wrong offset!"); \ +static_assert(offsetof(UVectorField, Intensity) == 0x000060, "Member 'UVectorField::Intensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVectorFieldAnimated \ +static_assert(alignof(UVectorFieldAnimated) == 0x000008, "Wrong alignment on UVectorFieldAnimated"); \ +static_assert(sizeof(UVectorFieldAnimated) == 0x0000A8, "Wrong size on UVectorFieldAnimated"); \ +static_assert(offsetof(UVectorFieldAnimated, Texture) == 0x000068, "Member 'UVectorFieldAnimated::Texture' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, ConstructionOp) == 0x000070, "Member 'UVectorFieldAnimated::ConstructionOp' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, VolumeSizeX) == 0x000074, "Member 'UVectorFieldAnimated::VolumeSizeX' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, VolumeSizeY) == 0x000078, "Member 'UVectorFieldAnimated::VolumeSizeY' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, VolumeSizeZ) == 0x00007C, "Member 'UVectorFieldAnimated::VolumeSizeZ' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, SubImagesX) == 0x000080, "Member 'UVectorFieldAnimated::SubImagesX' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, SubImagesY) == 0x000084, "Member 'UVectorFieldAnimated::SubImagesY' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, FrameCount) == 0x000088, "Member 'UVectorFieldAnimated::FrameCount' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, FramesPerSecond) == 0x00008C, "Member 'UVectorFieldAnimated::FramesPerSecond' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, NoiseField) == 0x000098, "Member 'UVectorFieldAnimated::NoiseField' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, NoiseScale) == 0x0000A0, "Member 'UVectorFieldAnimated::NoiseScale' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldAnimated, NoiseMax) == 0x0000A4, "Member 'UVectorFieldAnimated::NoiseMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VectorFieldComponent_SetIntensity \ +static_assert(alignof(VectorFieldComponent_SetIntensity) == 0x000004, "Wrong alignment on VectorFieldComponent_SetIntensity"); \ +static_assert(sizeof(VectorFieldComponent_SetIntensity) == 0x000004, "Wrong size on VectorFieldComponent_SetIntensity"); \ +static_assert(offsetof(VectorFieldComponent_SetIntensity, NewIntensity) == 0x000000, "Member 'VectorFieldComponent_SetIntensity::NewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVectorFieldComponent \ +static_assert(alignof(UVectorFieldComponent) == 0x000010, "Wrong alignment on UVectorFieldComponent"); \ +static_assert(sizeof(UVectorFieldComponent) == 0x0005A0, "Wrong size on UVectorFieldComponent"); \ +static_assert(offsetof(UVectorFieldComponent, VectorField) == 0x000570, "Member 'UVectorFieldComponent::VectorField' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldComponent, Intensity) == 0x000578, "Member 'UVectorFieldComponent::Intensity' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldComponent, Tightness) == 0x00057C, "Member 'UVectorFieldComponent::Tightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVectorFieldStatic \ +static_assert(alignof(UVectorFieldStatic) == 0x000008, "Wrong alignment on UVectorFieldStatic"); \ +static_assert(sizeof(UVectorFieldStatic) == 0x0000B8, "Wrong size on UVectorFieldStatic"); \ +static_assert(offsetof(UVectorFieldStatic, SizeX) == 0x000068, "Member 'UVectorFieldStatic::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldStatic, SizeY) == 0x00006C, "Member 'UVectorFieldStatic::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldStatic, SizeZ) == 0x000070, "Member 'UVectorFieldStatic::SizeZ' has a wrong offset!"); \ +static_assert(offsetof(UVectorFieldStatic, bAllowCPUAccess) == 0x000074, "Member 'UVectorFieldStatic::bAllowCPUAccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_CreateDynamicMaterialInstance \ +static_assert(alignof(DecalComponent_CreateDynamicMaterialInstance) == 0x000008, "Wrong alignment on DecalComponent_CreateDynamicMaterialInstance"); \ +static_assert(sizeof(DecalComponent_CreateDynamicMaterialInstance) == 0x000008, "Wrong size on DecalComponent_CreateDynamicMaterialInstance"); \ +static_assert(offsetof(DecalComponent_CreateDynamicMaterialInstance, ReturnValue) == 0x000000, "Member 'DecalComponent_CreateDynamicMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetDecalColor \ +static_assert(alignof(DecalComponent_SetDecalColor) == 0x000004, "Wrong alignment on DecalComponent_SetDecalColor"); \ +static_assert(sizeof(DecalComponent_SetDecalColor) == 0x000010, "Wrong size on DecalComponent_SetDecalColor"); \ +static_assert(offsetof(DecalComponent_SetDecalColor, Color) == 0x000000, "Member 'DecalComponent_SetDecalColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetDecalMaterial \ +static_assert(alignof(DecalComponent_SetDecalMaterial) == 0x000008, "Wrong alignment on DecalComponent_SetDecalMaterial"); \ +static_assert(sizeof(DecalComponent_SetDecalMaterial) == 0x000008, "Wrong size on DecalComponent_SetDecalMaterial"); \ +static_assert(offsetof(DecalComponent_SetDecalMaterial, NewDecalMaterial) == 0x000000, "Member 'DecalComponent_SetDecalMaterial::NewDecalMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetFadeIn \ +static_assert(alignof(DecalComponent_SetFadeIn) == 0x000004, "Wrong alignment on DecalComponent_SetFadeIn"); \ +static_assert(sizeof(DecalComponent_SetFadeIn) == 0x000008, "Wrong size on DecalComponent_SetFadeIn"); \ +static_assert(offsetof(DecalComponent_SetFadeIn, StartDelay) == 0x000000, "Member 'DecalComponent_SetFadeIn::StartDelay' has a wrong offset!"); \ +static_assert(offsetof(DecalComponent_SetFadeIn, Duration) == 0x000004, "Member 'DecalComponent_SetFadeIn::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetFadeOut \ +static_assert(alignof(DecalComponent_SetFadeOut) == 0x000004, "Wrong alignment on DecalComponent_SetFadeOut"); \ +static_assert(sizeof(DecalComponent_SetFadeOut) == 0x00000C, "Wrong size on DecalComponent_SetFadeOut"); \ +static_assert(offsetof(DecalComponent_SetFadeOut, StartDelay) == 0x000000, "Member 'DecalComponent_SetFadeOut::StartDelay' has a wrong offset!"); \ +static_assert(offsetof(DecalComponent_SetFadeOut, Duration) == 0x000004, "Member 'DecalComponent_SetFadeOut::Duration' has a wrong offset!"); \ +static_assert(offsetof(DecalComponent_SetFadeOut, DestroyOwnerAfterFade) == 0x000008, "Member 'DecalComponent_SetFadeOut::DestroyOwnerAfterFade' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetFadeScreenSize \ +static_assert(alignof(DecalComponent_SetFadeScreenSize) == 0x000004, "Wrong alignment on DecalComponent_SetFadeScreenSize"); \ +static_assert(sizeof(DecalComponent_SetFadeScreenSize) == 0x000004, "Wrong size on DecalComponent_SetFadeScreenSize"); \ +static_assert(offsetof(DecalComponent_SetFadeScreenSize, NewFadeScreenSize) == 0x000000, "Member 'DecalComponent_SetFadeScreenSize::NewFadeScreenSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_SetSortOrder \ +static_assert(alignof(DecalComponent_SetSortOrder) == 0x000004, "Wrong alignment on DecalComponent_SetSortOrder"); \ +static_assert(sizeof(DecalComponent_SetSortOrder) == 0x000004, "Wrong size on DecalComponent_SetSortOrder"); \ +static_assert(offsetof(DecalComponent_SetSortOrder, Value) == 0x000000, "Member 'DecalComponent_SetSortOrder::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_GetDecalMaterial \ +static_assert(alignof(DecalComponent_GetDecalMaterial) == 0x000008, "Wrong alignment on DecalComponent_GetDecalMaterial"); \ +static_assert(sizeof(DecalComponent_GetDecalMaterial) == 0x000008, "Wrong size on DecalComponent_GetDecalMaterial"); \ +static_assert(offsetof(DecalComponent_GetDecalMaterial, ReturnValue) == 0x000000, "Member 'DecalComponent_GetDecalMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_GetFadeDuration \ +static_assert(alignof(DecalComponent_GetFadeDuration) == 0x000004, "Wrong alignment on DecalComponent_GetFadeDuration"); \ +static_assert(sizeof(DecalComponent_GetFadeDuration) == 0x000004, "Wrong size on DecalComponent_GetFadeDuration"); \ +static_assert(offsetof(DecalComponent_GetFadeDuration, ReturnValue) == 0x000000, "Member 'DecalComponent_GetFadeDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_GetFadeInDuration \ +static_assert(alignof(DecalComponent_GetFadeInDuration) == 0x000004, "Wrong alignment on DecalComponent_GetFadeInDuration"); \ +static_assert(sizeof(DecalComponent_GetFadeInDuration) == 0x000004, "Wrong size on DecalComponent_GetFadeInDuration"); \ +static_assert(offsetof(DecalComponent_GetFadeInDuration, ReturnValue) == 0x000000, "Member 'DecalComponent_GetFadeInDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_GetFadeInStartDelay \ +static_assert(alignof(DecalComponent_GetFadeInStartDelay) == 0x000004, "Wrong alignment on DecalComponent_GetFadeInStartDelay"); \ +static_assert(sizeof(DecalComponent_GetFadeInStartDelay) == 0x000004, "Wrong size on DecalComponent_GetFadeInStartDelay"); \ +static_assert(offsetof(DecalComponent_GetFadeInStartDelay, ReturnValue) == 0x000000, "Member 'DecalComponent_GetFadeInStartDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalComponent_GetFadeStartDelay \ +static_assert(alignof(DecalComponent_GetFadeStartDelay) == 0x000004, "Wrong alignment on DecalComponent_GetFadeStartDelay"); \ +static_assert(sizeof(DecalComponent_GetFadeStartDelay) == 0x000004, "Wrong size on DecalComponent_GetFadeStartDelay"); \ +static_assert(offsetof(DecalComponent_GetFadeStartDelay, ReturnValue) == 0x000000, "Member 'DecalComponent_GetFadeStartDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDecalComponent \ +static_assert(alignof(UDecalComponent) == 0x000010, "Wrong alignment on UDecalComponent"); \ +static_assert(sizeof(UDecalComponent) == 0x000300, "Wrong size on UDecalComponent"); \ +static_assert(offsetof(UDecalComponent, DecalMaterial) == 0x0002A0, "Member 'UDecalComponent::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, SortOrder) == 0x0002A8, "Member 'UDecalComponent::SortOrder' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, FadeScreenSize) == 0x0002AC, "Member 'UDecalComponent::FadeScreenSize' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, FadeStartDelay) == 0x0002B0, "Member 'UDecalComponent::FadeStartDelay' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, FadeDuration) == 0x0002B4, "Member 'UDecalComponent::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, FadeInDuration) == 0x0002B8, "Member 'UDecalComponent::FadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, FadeInStartDelay) == 0x0002BC, "Member 'UDecalComponent::FadeInStartDelay' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, DecalSize) == 0x0002C8, "Member 'UDecalComponent::DecalSize' has a wrong offset!"); \ +static_assert(offsetof(UDecalComponent, DecalColor) == 0x0002E0, "Member 'UDecalComponent::DecalColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IVisualLoggerDebugSnapshotInterface \ +static_assert(alignof(IVisualLoggerDebugSnapshotInterface) == 0x000001, "Wrong alignment on IVisualLoggerDebugSnapshotInterface"); \ +static_assert(sizeof(IVisualLoggerDebugSnapshotInterface) == 0x000001, "Wrong size on IVisualLoggerDebugSnapshotInterface"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetMaximumGustAmount \ +static_assert(alignof(WindDirectionalSourceComponent_SetMaximumGustAmount) == 0x000004, "Wrong alignment on WindDirectionalSourceComponent_SetMaximumGustAmount"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetMaximumGustAmount) == 0x000004, "Wrong size on WindDirectionalSourceComponent_SetMaximumGustAmount"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetMaximumGustAmount, InNewMaxGust) == 0x000000, "Member 'WindDirectionalSourceComponent_SetMaximumGustAmount::InNewMaxGust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetMinimumGustAmount \ +static_assert(alignof(WindDirectionalSourceComponent_SetMinimumGustAmount) == 0x000004, "Wrong alignment on WindDirectionalSourceComponent_SetMinimumGustAmount"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetMinimumGustAmount) == 0x000004, "Wrong size on WindDirectionalSourceComponent_SetMinimumGustAmount"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetMinimumGustAmount, InNewMinGust) == 0x000000, "Member 'WindDirectionalSourceComponent_SetMinimumGustAmount::InNewMinGust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetRadius \ +static_assert(alignof(WindDirectionalSourceComponent_SetRadius) == 0x000004, "Wrong alignment on WindDirectionalSourceComponent_SetRadius"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetRadius) == 0x000004, "Wrong size on WindDirectionalSourceComponent_SetRadius"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetRadius, InNewRadius) == 0x000000, "Member 'WindDirectionalSourceComponent_SetRadius::InNewRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetSpeed \ +static_assert(alignof(WindDirectionalSourceComponent_SetSpeed) == 0x000004, "Wrong alignment on WindDirectionalSourceComponent_SetSpeed"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetSpeed) == 0x000004, "Wrong size on WindDirectionalSourceComponent_SetSpeed"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetSpeed, InNewSpeed) == 0x000000, "Member 'WindDirectionalSourceComponent_SetSpeed::InNewSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetStrength \ +static_assert(alignof(WindDirectionalSourceComponent_SetStrength) == 0x000004, "Wrong alignment on WindDirectionalSourceComponent_SetStrength"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetStrength) == 0x000004, "Wrong size on WindDirectionalSourceComponent_SetStrength"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetStrength, InNewStrength) == 0x000000, "Member 'WindDirectionalSourceComponent_SetStrength::InNewStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindDirectionalSourceComponent_SetWindType \ +static_assert(alignof(WindDirectionalSourceComponent_SetWindType) == 0x000001, "Wrong alignment on WindDirectionalSourceComponent_SetWindType"); \ +static_assert(sizeof(WindDirectionalSourceComponent_SetWindType) == 0x000001, "Wrong size on WindDirectionalSourceComponent_SetWindType"); \ +static_assert(offsetof(WindDirectionalSourceComponent_SetWindType, InNewType) == 0x000000, "Member 'WindDirectionalSourceComponent_SetWindType::InNewType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWindDirectionalSourceComponent \ +static_assert(alignof(UWindDirectionalSourceComponent) == 0x000010, "Wrong alignment on UWindDirectionalSourceComponent"); \ +static_assert(sizeof(UWindDirectionalSourceComponent) == 0x0002C0, "Wrong size on UWindDirectionalSourceComponent"); \ +static_assert(offsetof(UWindDirectionalSourceComponent, Strength) == 0x0002A0, "Member 'UWindDirectionalSourceComponent::Strength' has a wrong offset!"); \ +static_assert(offsetof(UWindDirectionalSourceComponent, Speed) == 0x0002A4, "Member 'UWindDirectionalSourceComponent::Speed' has a wrong offset!"); \ +static_assert(offsetof(UWindDirectionalSourceComponent, MinGustAmount) == 0x0002A8, "Member 'UWindDirectionalSourceComponent::MinGustAmount' has a wrong offset!"); \ +static_assert(offsetof(UWindDirectionalSourceComponent, MaxGustAmount) == 0x0002AC, "Member 'UWindDirectionalSourceComponent::MaxGustAmount' has a wrong offset!"); \ +static_assert(offsetof(UWindDirectionalSourceComponent, Radius) == 0x0002B0, "Member 'UWindDirectionalSourceComponent::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionEditorLoaderAdapter \ +static_assert(alignof(UWorldPartitionEditorLoaderAdapter) == 0x000008, "Wrong alignment on UWorldPartitionEditorLoaderAdapter"); \ +static_assert(sizeof(UWorldPartitionEditorLoaderAdapter) == 0x000030, "Wrong size on UWorldPartitionEditorLoaderAdapter"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeCellData \ +static_assert(alignof(UWorldPartitionRuntimeCellData) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeCellData"); \ +static_assert(sizeof(UWorldPartitionRuntimeCellData) == 0x000088, "Wrong size on UWorldPartitionRuntimeCellData"); \ +static_assert(offsetof(UWorldPartitionRuntimeCellData, ContentBounds) == 0x000048, "Member 'UWorldPartitionRuntimeCellData::ContentBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeHashExternalStreamingObjectBase \ +static_assert(alignof(URuntimeHashExternalStreamingObjectBase) == 0x000008, "Wrong alignment on URuntimeHashExternalStreamingObjectBase"); \ +static_assert(sizeof(URuntimeHashExternalStreamingObjectBase) == 0x000118, "Wrong size on URuntimeHashExternalStreamingObjectBase"); \ +static_assert(offsetof(URuntimeHashExternalStreamingObjectBase, SubObjectsToCellRemapping) == 0x000028, "Member 'URuntimeHashExternalStreamingObjectBase::SubObjectsToCellRemapping' has a wrong offset!"); \ +static_assert(offsetof(URuntimeHashExternalStreamingObjectBase, OwningWorld) == 0x000078, "Member 'URuntimeHashExternalStreamingObjectBase::OwningWorld' has a wrong offset!"); \ +static_assert(offsetof(URuntimeHashExternalStreamingObjectBase, OuterWorld) == 0x0000A0, "Member 'URuntimeHashExternalStreamingObjectBase::OuterWorld' has a wrong offset!"); \ +static_assert(offsetof(URuntimeHashExternalStreamingObjectBase, CellToLevelStreamingPackage) == 0x0000C8, "Member 'URuntimeHashExternalStreamingObjectBase::CellToLevelStreamingPackage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeHashSetExternalStreamingObject \ +static_assert(alignof(URuntimeHashSetExternalStreamingObject) == 0x000008, "Wrong alignment on URuntimeHashSetExternalStreamingObject"); \ +static_assert(sizeof(URuntimeHashSetExternalStreamingObject) == 0x000140, "Wrong size on URuntimeHashSetExternalStreamingObject"); \ +static_assert(offsetof(URuntimeHashSetExternalStreamingObject, NonSpatiallyLoadedRuntimeCells) == 0x000118, "Member 'URuntimeHashSetExternalStreamingObject::NonSpatiallyLoadedRuntimeCells' has a wrong offset!"); \ +static_assert(offsetof(URuntimeHashSetExternalStreamingObject, SpatiallyLoadedRuntimeCells) == 0x000128, "Member 'URuntimeHashSetExternalStreamingObject::SpatiallyLoadedRuntimeCells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHierarchicalLODSetup \ +static_assert(alignof(UHierarchicalLODSetup) == 0x000008, "Wrong alignment on UHierarchicalLODSetup"); \ +static_assert(sizeof(UHierarchicalLODSetup) == 0x000060, "Wrong size on UHierarchicalLODSetup"); \ +static_assert(offsetof(UHierarchicalLODSetup, HierarchicalLODSetup) == 0x000028, "Member 'UHierarchicalLODSetup::HierarchicalLODSetup' has a wrong offset!"); \ +static_assert(offsetof(UHierarchicalLODSetup, OverrideBaseMaterial) == 0x000038, "Member 'UHierarchicalLODSetup::OverrideBaseMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWorldSettings \ +static_assert(alignof(AWorldSettings) == 0x000008, "Wrong alignment on AWorldSettings"); \ +static_assert(sizeof(AWorldSettings) == 0x0004B8, "Wrong size on AWorldSettings"); \ +static_assert(offsetof(AWorldSettings, VisibilityCellSize) == 0x0002A0, "Member 'AWorldSettings::VisibilityCellSize' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, VisibilityAggressiveness) == 0x0002A4, "Member 'AWorldSettings::VisibilityAggressiveness' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, AISystemClass) == 0x0002A8, "Member 'AWorldSettings::AISystemClass' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, LevelInstancePivotOffset) == 0x0002D0, "Member 'AWorldSettings::LevelInstancePivotOffset' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, NavigationSystemConfig) == 0x0002E8, "Member 'AWorldSettings::NavigationSystemConfig' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, NavigationSystemConfigOverride) == 0x0002F0, "Member 'AWorldSettings::NavigationSystemConfigOverride' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, WorldPartition) == 0x0002F8, "Member 'AWorldSettings::WorldPartition' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, BaseNavmeshDataLayers) == 0x000300, "Member 'AWorldSettings::BaseNavmeshDataLayers' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, WorldToMeters) == 0x000310, "Member 'AWorldSettings::WorldToMeters' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, KillZ) == 0x000314, "Member 'AWorldSettings::KillZ' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, KillZDamageType) == 0x000318, "Member 'AWorldSettings::KillZDamageType' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, WorldGravityZ) == 0x000320, "Member 'AWorldSettings::WorldGravityZ' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, GlobalGravityZ) == 0x000324, "Member 'AWorldSettings::GlobalGravityZ' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultPhysicsVolumeClass) == 0x000328, "Member 'AWorldSettings::DefaultPhysicsVolumeClass' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, PhysicsCollisionHandlerClass) == 0x000330, "Member 'AWorldSettings::PhysicsCollisionHandlerClass' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultGameMode) == 0x000338, "Member 'AWorldSettings::DefaultGameMode' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, GameNetworkManagerClass) == 0x000340, "Member 'AWorldSettings::GameNetworkManagerClass' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, PackedLightAndShadowMapTextureSize) == 0x000348, "Member 'AWorldSettings::PackedLightAndShadowMapTextureSize' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultColorScale) == 0x000350, "Member 'AWorldSettings::DefaultColorScale' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultMaxDistanceFieldOcclusionDistance) == 0x000368, "Member 'AWorldSettings::DefaultMaxDistanceFieldOcclusionDistance' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, GlobalDistanceFieldViewDistance) == 0x00036C, "Member 'AWorldSettings::GlobalDistanceFieldViewDistance' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DynamicIndirectShadowsSelfShadowingIntensity) == 0x000370, "Member 'AWorldSettings::DynamicIndirectShadowsSelfShadowingIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, NaniteSettings) == 0x000374, "Member 'AWorldSettings::NaniteSettings' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultReverbSettings) == 0x000378, "Member 'AWorldSettings::DefaultReverbSettings' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultAmbientZoneSettings) == 0x000398, "Member 'AWorldSettings::DefaultAmbientZoneSettings' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultBaseSoundMix) == 0x0003C0, "Member 'AWorldSettings::DefaultBaseSoundMix' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, TimeDilation) == 0x0003C8, "Member 'AWorldSettings::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, CinematicTimeDilation) == 0x0003CC, "Member 'AWorldSettings::CinematicTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DemoPlayTimeDilation) == 0x0003D0, "Member 'AWorldSettings::DemoPlayTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, MinGlobalTimeDilation) == 0x0003D4, "Member 'AWorldSettings::MinGlobalTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, MaxGlobalTimeDilation) == 0x0003D8, "Member 'AWorldSettings::MaxGlobalTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, MinUndilatedFrameTime) == 0x0003DC, "Member 'AWorldSettings::MinUndilatedFrameTime' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, MaxUndilatedFrameTime) == 0x0003E0, "Member 'AWorldSettings::MaxUndilatedFrameTime' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, BroadphaseSettings) == 0x0003E8, "Member 'AWorldSettings::BroadphaseSettings' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, ReplicationViewers) == 0x000468, "Member 'AWorldSettings::ReplicationViewers' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, AssetUserData) == 0x000478, "Member 'AWorldSettings::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, PauserPlayerState) == 0x000488, "Member 'AWorldSettings::PauserPlayerState' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, MaxNumberOfBookmarks) == 0x000490, "Member 'AWorldSettings::MaxNumberOfBookmarks' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, DefaultBookmarkClass) == 0x000498, "Member 'AWorldSettings::DefaultBookmarkClass' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, BookmarkArray) == 0x0004A0, "Member 'AWorldSettings::BookmarkArray' has a wrong offset!"); \ +static_assert(offsetof(AWorldSettings, LastBookmarkClass) == 0x0004B0, "Member 'AWorldSettings::LastBookmarkClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeterogeneousVolume \ +static_assert(alignof(AHeterogeneousVolume) == 0x000008, "Wrong alignment on AHeterogeneousVolume"); \ +static_assert(sizeof(AHeterogeneousVolume) == 0x0002A0, "Wrong size on AHeterogeneousVolume"); \ +static_assert(offsetof(AHeterogeneousVolume, HeterogeneousVolumeComponent) == 0x000298, "Member 'AHeterogeneousVolume::HeterogeneousVolumeComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTexture2DArray \ +static_assert(alignof(UTexture2DArray) == 0x000010, "Wrong alignment on UTexture2DArray"); \ +static_assert(sizeof(UTexture2DArray) == 0x000270, "Wrong size on UTexture2DArray"); \ +static_assert(offsetof(UTexture2DArray, AddressX) == 0x000260, "Member 'UTexture2DArray::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UTexture2DArray, AddressY) == 0x000261, "Member 'UTexture2DArray::AddressY' has a wrong offset!"); \ +static_assert(offsetof(UTexture2DArray, AddressZ) == 0x000262, "Member 'UTexture2DArray::AddressZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevel \ +static_assert(alignof(ULevel) == 0x000008, "Wrong alignment on ULevel"); \ +static_assert(sizeof(ULevel) == 0x000318, "Wrong size on ULevel"); \ +static_assert(offsetof(ULevel, Actors) == 0x000098, "Member 'ULevel::Actors' has a wrong offset!"); \ +static_assert(offsetof(ULevel, OwningWorld) == 0x0000B8, "Member 'ULevel::OwningWorld' has a wrong offset!"); \ +static_assert(offsetof(ULevel, Model) == 0x0000C0, "Member 'ULevel::Model' has a wrong offset!"); \ +static_assert(offsetof(ULevel, ModelComponents) == 0x0000C8, "Member 'ULevel::ModelComponents' has a wrong offset!"); \ +static_assert(offsetof(ULevel, ActorCluster) == 0x0000D8, "Member 'ULevel::ActorCluster' has a wrong offset!"); \ +static_assert(offsetof(ULevel, NumTextureStreamingUnbuiltComponents) == 0x0000E0, "Member 'ULevel::NumTextureStreamingUnbuiltComponents' has a wrong offset!"); \ +static_assert(offsetof(ULevel, NumTextureStreamingDirtyResources) == 0x0000E4, "Member 'ULevel::NumTextureStreamingDirtyResources' has a wrong offset!"); \ +static_assert(offsetof(ULevel, LevelScriptActor) == 0x0000E8, "Member 'ULevel::LevelScriptActor' has a wrong offset!"); \ +static_assert(offsetof(ULevel, NavListStart) == 0x0000F0, "Member 'ULevel::NavListStart' has a wrong offset!"); \ +static_assert(offsetof(ULevel, NavListEnd) == 0x0000F8, "Member 'ULevel::NavListEnd' has a wrong offset!"); \ +static_assert(offsetof(ULevel, NavDataChunks) == 0x000100, "Member 'ULevel::NavDataChunks' has a wrong offset!"); \ +static_assert(offsetof(ULevel, LightmapTotalSize) == 0x000110, "Member 'ULevel::LightmapTotalSize' has a wrong offset!"); \ +static_assert(offsetof(ULevel, ShadowmapTotalSize) == 0x000114, "Member 'ULevel::ShadowmapTotalSize' has a wrong offset!"); \ +static_assert(offsetof(ULevel, StaticNavigableGeometry) == 0x000118, "Member 'ULevel::StaticNavigableGeometry' has a wrong offset!"); \ +static_assert(offsetof(ULevel, StreamingTextureGuids) == 0x000128, "Member 'ULevel::StreamingTextureGuids' has a wrong offset!"); \ +static_assert(offsetof(ULevel, StreamingTextures) == 0x000138, "Member 'ULevel::StreamingTextures' has a wrong offset!"); \ +static_assert(offsetof(ULevel, PackedTextureStreamingQualityLevelFeatureLevel) == 0x000148, "Member 'ULevel::PackedTextureStreamingQualityLevelFeatureLevel' has a wrong offset!"); \ +static_assert(offsetof(ULevel, LevelBuildDataId) == 0x000210, "Member 'ULevel::LevelBuildDataId' has a wrong offset!"); \ +static_assert(offsetof(ULevel, MapBuildData) == 0x000220, "Member 'ULevel::MapBuildData' has a wrong offset!"); \ +static_assert(offsetof(ULevel, LightBuildLevelOffset) == 0x000228, "Member 'ULevel::LightBuildLevelOffset' has a wrong offset!"); \ +static_assert(offsetof(ULevel, WorldSettings) == 0x0002A0, "Member 'ULevel::WorldSettings' has a wrong offset!"); \ +static_assert(offsetof(ULevel, WorldDataLayers) == 0x0002A8, "Member 'ULevel::WorldDataLayers' has a wrong offset!"); \ +static_assert(offsetof(ULevel, WorldPartitionRuntimeCell) == 0x0002B0, "Member 'ULevel::WorldPartitionRuntimeCell' has a wrong offset!"); \ +static_assert(offsetof(ULevel, AssetUserData) == 0x0002E0, "Member 'ULevel::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(ULevel, DestroyedReplicatedStaticActors) == 0x000300, "Member 'ULevel::DestroyedReplicatedStaticActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorFolder \ +static_assert(alignof(UActorFolder) == 0x000008, "Wrong alignment on UActorFolder"); \ +static_assert(sizeof(UActorFolder) == 0x000028, "Wrong size on UActorFolder"); \ + +#define DUMPER7_ASSERTS_UActorPartitionSubsystem \ +static_assert(alignof(UActorPartitionSubsystem) == 0x000008, "Wrong alignment on UActorPartitionSubsystem"); \ +static_assert(sizeof(UActorPartitionSubsystem) == 0x000030, "Wrong size on UActorPartitionSubsystem"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_DisableGroundScattering \ +static_assert(alignof(AtmosphericFogComponent_DisableGroundScattering) == 0x000001, "Wrong alignment on AtmosphericFogComponent_DisableGroundScattering"); \ +static_assert(sizeof(AtmosphericFogComponent_DisableGroundScattering) == 0x000001, "Wrong size on AtmosphericFogComponent_DisableGroundScattering"); \ +static_assert(offsetof(AtmosphericFogComponent_DisableGroundScattering, NewGroundScattering) == 0x000000, "Member 'AtmosphericFogComponent_DisableGroundScattering::NewGroundScattering' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_DisableSunDisk \ +static_assert(alignof(AtmosphericFogComponent_DisableSunDisk) == 0x000001, "Wrong alignment on AtmosphericFogComponent_DisableSunDisk"); \ +static_assert(sizeof(AtmosphericFogComponent_DisableSunDisk) == 0x000001, "Wrong size on AtmosphericFogComponent_DisableSunDisk"); \ +static_assert(offsetof(AtmosphericFogComponent_DisableSunDisk, NewSunDisk) == 0x000000, "Member 'AtmosphericFogComponent_DisableSunDisk::NewSunDisk' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetAltitudeScale \ +static_assert(alignof(AtmosphericFogComponent_SetAltitudeScale) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetAltitudeScale"); \ +static_assert(sizeof(AtmosphericFogComponent_SetAltitudeScale) == 0x000004, "Wrong size on AtmosphericFogComponent_SetAltitudeScale"); \ +static_assert(offsetof(AtmosphericFogComponent_SetAltitudeScale, NewAltitudeScale) == 0x000000, "Member 'AtmosphericFogComponent_SetAltitudeScale::NewAltitudeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDefaultBrightness \ +static_assert(alignof(AtmosphericFogComponent_SetDefaultBrightness) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDefaultBrightness"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDefaultBrightness) == 0x000004, "Wrong size on AtmosphericFogComponent_SetDefaultBrightness"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDefaultBrightness, NewBrightness) == 0x000000, "Member 'AtmosphericFogComponent_SetDefaultBrightness::NewBrightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDefaultLightColor \ +static_assert(alignof(AtmosphericFogComponent_SetDefaultLightColor) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDefaultLightColor"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDefaultLightColor) == 0x000010, "Wrong size on AtmosphericFogComponent_SetDefaultLightColor"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDefaultLightColor, NewLightColor) == 0x000000, "Member 'AtmosphericFogComponent_SetDefaultLightColor::NewLightColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDensityMultiplier \ +static_assert(alignof(AtmosphericFogComponent_SetDensityMultiplier) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDensityMultiplier"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDensityMultiplier) == 0x000004, "Wrong size on AtmosphericFogComponent_SetDensityMultiplier"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDensityMultiplier, NewDensityMultiplier) == 0x000000, "Member 'AtmosphericFogComponent_SetDensityMultiplier::NewDensityMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDensityOffset \ +static_assert(alignof(AtmosphericFogComponent_SetDensityOffset) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDensityOffset"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDensityOffset) == 0x000004, "Wrong size on AtmosphericFogComponent_SetDensityOffset"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDensityOffset, NewDensityOffset) == 0x000000, "Member 'AtmosphericFogComponent_SetDensityOffset::NewDensityOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDistanceOffset \ +static_assert(alignof(AtmosphericFogComponent_SetDistanceOffset) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDistanceOffset"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDistanceOffset) == 0x000004, "Wrong size on AtmosphericFogComponent_SetDistanceOffset"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDistanceOffset, NewDistanceOffset) == 0x000000, "Member 'AtmosphericFogComponent_SetDistanceOffset::NewDistanceOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetDistanceScale \ +static_assert(alignof(AtmosphericFogComponent_SetDistanceScale) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetDistanceScale"); \ +static_assert(sizeof(AtmosphericFogComponent_SetDistanceScale) == 0x000004, "Wrong size on AtmosphericFogComponent_SetDistanceScale"); \ +static_assert(offsetof(AtmosphericFogComponent_SetDistanceScale, NewDistanceScale) == 0x000000, "Member 'AtmosphericFogComponent_SetDistanceScale::NewDistanceScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetFogMultiplier \ +static_assert(alignof(AtmosphericFogComponent_SetFogMultiplier) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetFogMultiplier"); \ +static_assert(sizeof(AtmosphericFogComponent_SetFogMultiplier) == 0x000004, "Wrong size on AtmosphericFogComponent_SetFogMultiplier"); \ +static_assert(offsetof(AtmosphericFogComponent_SetFogMultiplier, NewFogMultiplier) == 0x000000, "Member 'AtmosphericFogComponent_SetFogMultiplier::NewFogMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetPrecomputeParams \ +static_assert(alignof(AtmosphericFogComponent_SetPrecomputeParams) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetPrecomputeParams"); \ +static_assert(sizeof(AtmosphericFogComponent_SetPrecomputeParams) == 0x00000C, "Wrong size on AtmosphericFogComponent_SetPrecomputeParams"); \ +static_assert(offsetof(AtmosphericFogComponent_SetPrecomputeParams, DensityHeight) == 0x000000, "Member 'AtmosphericFogComponent_SetPrecomputeParams::DensityHeight' has a wrong offset!"); \ +static_assert(offsetof(AtmosphericFogComponent_SetPrecomputeParams, MaxScatteringOrder) == 0x000004, "Member 'AtmosphericFogComponent_SetPrecomputeParams::MaxScatteringOrder' has a wrong offset!"); \ +static_assert(offsetof(AtmosphericFogComponent_SetPrecomputeParams, InscatterAltitudeSampleNum) == 0x000008, "Member 'AtmosphericFogComponent_SetPrecomputeParams::InscatterAltitudeSampleNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetStartDistance \ +static_assert(alignof(AtmosphericFogComponent_SetStartDistance) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetStartDistance"); \ +static_assert(sizeof(AtmosphericFogComponent_SetStartDistance) == 0x000004, "Wrong size on AtmosphericFogComponent_SetStartDistance"); \ +static_assert(offsetof(AtmosphericFogComponent_SetStartDistance, NewStartDistance) == 0x000000, "Member 'AtmosphericFogComponent_SetStartDistance::NewStartDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AtmosphericFogComponent_SetSunMultiplier \ +static_assert(alignof(AtmosphericFogComponent_SetSunMultiplier) == 0x000004, "Wrong alignment on AtmosphericFogComponent_SetSunMultiplier"); \ +static_assert(sizeof(AtmosphericFogComponent_SetSunMultiplier) == 0x000004, "Wrong size on AtmosphericFogComponent_SetSunMultiplier"); \ +static_assert(offsetof(AtmosphericFogComponent_SetSunMultiplier, NewSunMultiplier) == 0x000000, "Member 'AtmosphericFogComponent_SetSunMultiplier::NewSunMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAtmosphericFogComponent \ +static_assert(alignof(UAtmosphericFogComponent) == 0x000010, "Wrong alignment on UAtmosphericFogComponent"); \ +static_assert(sizeof(UAtmosphericFogComponent) == 0x0003A0, "Wrong size on UAtmosphericFogComponent"); \ + +#define DUMPER7_ASSERTS_UAISystemBase \ +static_assert(alignof(UAISystemBase) == 0x000008, "Wrong alignment on UAISystemBase"); \ +static_assert(sizeof(UAISystemBase) == 0x000060, "Wrong size on UAISystemBase"); \ +static_assert(offsetof(UAISystemBase, AISystemClassName) == 0x000028, "Member 'UAISystemBase::AISystemClassName' has a wrong offset!"); \ +static_assert(offsetof(UAISystemBase, AISystemModuleName) == 0x000048, "Member 'UAISystemBase::AISystemModuleName' has a wrong offset!"); \ +static_assert(offsetof(UAISystemBase, bInstantiateAISystemOnClient) == 0x000058, "Member 'UAISystemBase::bInstantiateAISystemOnClient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavigationSystemBase \ +static_assert(alignof(UNavigationSystemBase) == 0x000008, "Wrong alignment on UNavigationSystemBase"); \ +static_assert(sizeof(UNavigationSystemBase) == 0x000028, "Wrong size on UNavigationSystemBase"); \ + +#define DUMPER7_ASSERTS_UNavigationSystemConfig \ +static_assert(alignof(UNavigationSystemConfig) == 0x000008, "Wrong alignment on UNavigationSystemConfig"); \ +static_assert(sizeof(UNavigationSystemConfig) == 0x000058, "Wrong size on UNavigationSystemConfig"); \ +static_assert(offsetof(UNavigationSystemConfig, NavigationSystemClass) == 0x000028, "Member 'UNavigationSystemConfig::NavigationSystemClass' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemConfig, SupportedAgentsMask) == 0x000048, "Member 'UNavigationSystemConfig::SupportedAgentsMask' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemConfig, DefaultAgentName) == 0x00004C, "Member 'UNavigationSystemConfig::DefaultAgentName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNullNavSysConfig \ +static_assert(alignof(UNullNavSysConfig) == 0x000008, "Wrong alignment on UNullNavSysConfig"); \ +static_assert(sizeof(UNullNavSysConfig) == 0x000058, "Wrong size on UNullNavSysConfig"); \ + +#define DUMPER7_ASSERTS_ActorSoundParameterInterface_GetActorSoundParams \ +static_assert(alignof(ActorSoundParameterInterface_GetActorSoundParams) == 0x000008, "Wrong alignment on ActorSoundParameterInterface_GetActorSoundParams"); \ +static_assert(sizeof(ActorSoundParameterInterface_GetActorSoundParams) == 0x000010, "Wrong size on ActorSoundParameterInterface_GetActorSoundParams"); \ +static_assert(offsetof(ActorSoundParameterInterface_GetActorSoundParams, Params_0) == 0x000000, "Member 'ActorSoundParameterInterface_GetActorSoundParams::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IActorSoundParameterInterface \ +static_assert(alignof(IActorSoundParameterInterface) == 0x000001, "Wrong alignment on IActorSoundParameterInterface"); \ +static_assert(sizeof(IActorSoundParameterInterface) == 0x000001, "Wrong size on IActorSoundParameterInterface"); \ + +#define DUMPER7_ASSERTS_AvoidanceManager_GetAvoidanceVelocityForComponent \ +static_assert(alignof(AvoidanceManager_GetAvoidanceVelocityForComponent) == 0x000008, "Wrong alignment on AvoidanceManager_GetAvoidanceVelocityForComponent"); \ +static_assert(sizeof(AvoidanceManager_GetAvoidanceVelocityForComponent) == 0x000020, "Wrong size on AvoidanceManager_GetAvoidanceVelocityForComponent"); \ +static_assert(offsetof(AvoidanceManager_GetAvoidanceVelocityForComponent, MovementComp) == 0x000000, "Member 'AvoidanceManager_GetAvoidanceVelocityForComponent::MovementComp' has a wrong offset!"); \ +static_assert(offsetof(AvoidanceManager_GetAvoidanceVelocityForComponent, ReturnValue) == 0x000008, "Member 'AvoidanceManager_GetAvoidanceVelocityForComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AvoidanceManager_GetNewAvoidanceUID \ +static_assert(alignof(AvoidanceManager_GetNewAvoidanceUID) == 0x000004, "Wrong alignment on AvoidanceManager_GetNewAvoidanceUID"); \ +static_assert(sizeof(AvoidanceManager_GetNewAvoidanceUID) == 0x000004, "Wrong size on AvoidanceManager_GetNewAvoidanceUID"); \ +static_assert(offsetof(AvoidanceManager_GetNewAvoidanceUID, ReturnValue) == 0x000000, "Member 'AvoidanceManager_GetNewAvoidanceUID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AvoidanceManager_GetObjectCount \ +static_assert(alignof(AvoidanceManager_GetObjectCount) == 0x000004, "Wrong alignment on AvoidanceManager_GetObjectCount"); \ +static_assert(sizeof(AvoidanceManager_GetObjectCount) == 0x000004, "Wrong size on AvoidanceManager_GetObjectCount"); \ +static_assert(offsetof(AvoidanceManager_GetObjectCount, ReturnValue) == 0x000000, "Member 'AvoidanceManager_GetObjectCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AvoidanceManager_RegisterMovementComponent \ +static_assert(alignof(AvoidanceManager_RegisterMovementComponent) == 0x000008, "Wrong alignment on AvoidanceManager_RegisterMovementComponent"); \ +static_assert(sizeof(AvoidanceManager_RegisterMovementComponent) == 0x000010, "Wrong size on AvoidanceManager_RegisterMovementComponent"); \ +static_assert(offsetof(AvoidanceManager_RegisterMovementComponent, MovementComp) == 0x000000, "Member 'AvoidanceManager_RegisterMovementComponent::MovementComp' has a wrong offset!"); \ +static_assert(offsetof(AvoidanceManager_RegisterMovementComponent, AvoidanceWeight) == 0x000008, "Member 'AvoidanceManager_RegisterMovementComponent::AvoidanceWeight' has a wrong offset!"); \ +static_assert(offsetof(AvoidanceManager_RegisterMovementComponent, ReturnValue) == 0x00000C, "Member 'AvoidanceManager_RegisterMovementComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAvoidanceManager \ +static_assert(alignof(UAvoidanceManager) == 0x000008, "Wrong alignment on UAvoidanceManager"); \ +static_assert(sizeof(UAvoidanceManager) == 0x0000E0, "Wrong size on UAvoidanceManager"); \ +static_assert(offsetof(UAvoidanceManager, DefaultTimeToLive) == 0x000030, "Member 'UAvoidanceManager::DefaultTimeToLive' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, LockTimeAfterAvoid) == 0x000034, "Member 'UAvoidanceManager::LockTimeAfterAvoid' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, LockTimeAfterClean) == 0x000038, "Member 'UAvoidanceManager::LockTimeAfterClean' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, DeltaTimeToPredict) == 0x00003C, "Member 'UAvoidanceManager::DeltaTimeToPredict' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, ArtificialRadiusExpansion) == 0x000040, "Member 'UAvoidanceManager::ArtificialRadiusExpansion' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, TestHeightDifference) == 0x000044, "Member 'UAvoidanceManager::TestHeightDifference' has a wrong offset!"); \ +static_assert(offsetof(UAvoidanceManager, HeightCheckMargin) == 0x000048, "Member 'UAvoidanceManager::HeightCheckMargin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavCollisionBase \ +static_assert(alignof(UNavCollisionBase) == 0x000008, "Wrong alignment on UNavCollisionBase"); \ +static_assert(sizeof(UNavCollisionBase) == 0x000070, "Wrong size on UNavCollisionBase"); \ + +#define DUMPER7_ASSERTS_UNavigationDataChunk \ +static_assert(alignof(UNavigationDataChunk) == 0x000008, "Wrong alignment on UNavigationDataChunk"); \ +static_assert(sizeof(UNavigationDataChunk) == 0x000030, "Wrong size on UNavigationDataChunk"); \ +static_assert(offsetof(UNavigationDataChunk, NavigationDataName) == 0x000028, "Member 'UNavigationDataChunk::NavigationDataName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AmbientSound_AdjustVolume \ +static_assert(alignof(AmbientSound_AdjustVolume) == 0x000004, "Wrong alignment on AmbientSound_AdjustVolume"); \ +static_assert(sizeof(AmbientSound_AdjustVolume) == 0x000008, "Wrong size on AmbientSound_AdjustVolume"); \ +static_assert(offsetof(AmbientSound_AdjustVolume, AdjustVolumeDuration) == 0x000000, "Member 'AmbientSound_AdjustVolume::AdjustVolumeDuration' has a wrong offset!"); \ +static_assert(offsetof(AmbientSound_AdjustVolume, AdjustVolumeLevel) == 0x000004, "Member 'AmbientSound_AdjustVolume::AdjustVolumeLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AmbientSound_FadeIn \ +static_assert(alignof(AmbientSound_FadeIn) == 0x000004, "Wrong alignment on AmbientSound_FadeIn"); \ +static_assert(sizeof(AmbientSound_FadeIn) == 0x000008, "Wrong size on AmbientSound_FadeIn"); \ +static_assert(offsetof(AmbientSound_FadeIn, FadeInDuration) == 0x000000, "Member 'AmbientSound_FadeIn::FadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(AmbientSound_FadeIn, FadeVolumeLevel) == 0x000004, "Member 'AmbientSound_FadeIn::FadeVolumeLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AmbientSound_FadeOut \ +static_assert(alignof(AmbientSound_FadeOut) == 0x000004, "Wrong alignment on AmbientSound_FadeOut"); \ +static_assert(sizeof(AmbientSound_FadeOut) == 0x000008, "Wrong size on AmbientSound_FadeOut"); \ +static_assert(offsetof(AmbientSound_FadeOut, FadeOutDuration) == 0x000000, "Member 'AmbientSound_FadeOut::FadeOutDuration' has a wrong offset!"); \ +static_assert(offsetof(AmbientSound_FadeOut, FadeVolumeLevel) == 0x000004, "Member 'AmbientSound_FadeOut::FadeVolumeLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AmbientSound_Play \ +static_assert(alignof(AmbientSound_Play) == 0x000004, "Wrong alignment on AmbientSound_Play"); \ +static_assert(sizeof(AmbientSound_Play) == 0x000004, "Wrong size on AmbientSound_Play"); \ +static_assert(offsetof(AmbientSound_Play, StartTime) == 0x000000, "Member 'AmbientSound_Play::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAmbientSound \ +static_assert(alignof(AAmbientSound) == 0x000008, "Wrong alignment on AAmbientSound"); \ +static_assert(sizeof(AAmbientSound) == 0x0002A0, "Wrong size on AAmbientSound"); \ +static_assert(offsetof(AAmbientSound, AudioComponent) == 0x000298, "Member 'AAmbientSound::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABlockingVolume \ +static_assert(alignof(ABlockingVolume) == 0x000008, "Wrong alignment on ABlockingVolume"); \ +static_assert(sizeof(ABlockingVolume) == 0x0002D0, "Wrong size on ABlockingVolume"); \ + +#define DUMPER7_ASSERTS_UAimOffsetBlendSpace \ +static_assert(alignof(UAimOffsetBlendSpace) == 0x000008, "Wrong alignment on UAimOffsetBlendSpace"); \ +static_assert(sizeof(UAimOffsetBlendSpace) == 0x0001C0, "Wrong size on UAimOffsetBlendSpace"); \ + +#define DUMPER7_ASSERTS_UBlendSpace1D \ +static_assert(alignof(UBlendSpace1D) == 0x000008, "Wrong alignment on UBlendSpace1D"); \ +static_assert(sizeof(UBlendSpace1D) == 0x0001C8, "Wrong size on UBlendSpace1D"); \ +static_assert(offsetof(UBlendSpace1D, bScaleAnimation) == 0x0001C0, "Member 'UBlendSpace1D::bScaleAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAimOffsetBlendSpace1D \ +static_assert(alignof(UAimOffsetBlendSpace1D) == 0x000008, "Wrong alignment on UAimOffsetBlendSpace1D"); \ +static_assert(sizeof(UAimOffsetBlendSpace1D) == 0x0001C8, "Wrong size on UAimOffsetBlendSpace1D"); \ + +#define DUMPER7_ASSERTS_AnimationSettings_GetBoneCustomAttributeNamesToImport \ +static_assert(alignof(AnimationSettings_GetBoneCustomAttributeNamesToImport) == 0x000008, "Wrong alignment on AnimationSettings_GetBoneCustomAttributeNamesToImport"); \ +static_assert(sizeof(AnimationSettings_GetBoneCustomAttributeNamesToImport) == 0x000010, "Wrong size on AnimationSettings_GetBoneCustomAttributeNamesToImport"); \ +static_assert(offsetof(AnimationSettings_GetBoneCustomAttributeNamesToImport, ReturnValue) == 0x000000, "Member 'AnimationSettings_GetBoneCustomAttributeNamesToImport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationSettings \ +static_assert(alignof(UAnimationSettings) == 0x000008, "Wrong alignment on UAnimationSettings"); \ +static_assert(sizeof(UAnimationSettings) == 0x000148, "Wrong size on UAnimationSettings"); \ +static_assert(offsetof(UAnimationSettings, CompressCommandletVersion) == 0x000038, "Member 'UAnimationSettings::CompressCommandletVersion' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, KeyEndEffectorsMatchNameArray) == 0x000040, "Member 'UAnimationSettings::KeyEndEffectorsMatchNameArray' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, ForceRecompression) == 0x000050, "Member 'UAnimationSettings::ForceRecompression' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bForceBelowThreshold) == 0x000051, "Member 'UAnimationSettings::bForceBelowThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bFirstRecompressUsingCurrentOrDefault) == 0x000052, "Member 'UAnimationSettings::bFirstRecompressUsingCurrentOrDefault' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bRaiseMaxErrorToExisting) == 0x000053, "Member 'UAnimationSettings::bRaiseMaxErrorToExisting' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bEnablePerformanceLog) == 0x000054, "Member 'UAnimationSettings::bEnablePerformanceLog' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bStripAnimationDataOnDedicatedServer) == 0x000055, "Member 'UAnimationSettings::bStripAnimationDataOnDedicatedServer' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bTickAnimationOnSkeletalMeshInit) == 0x000056, "Member 'UAnimationSettings::bTickAnimationOnSkeletalMeshInit' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, BoneTimecodeCustomAttributeNameSettings) == 0x000058, "Member 'UAnimationSettings::BoneTimecodeCustomAttributeNameSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, BoneCustomAttributesNames) == 0x000090, "Member 'UAnimationSettings::BoneCustomAttributesNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, BoneNamesWithCustomAttributes) == 0x0000A0, "Member 'UAnimationSettings::BoneNamesWithCustomAttributes' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, AttributeBlendModes) == 0x0000B0, "Member 'UAnimationSettings::AttributeBlendModes' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, DefaultAttributeBlendMode) == 0x000100, "Member 'UAnimationSettings::DefaultAttributeBlendMode' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, TransformAttributeNames) == 0x000108, "Member 'UAnimationSettings::TransformAttributeNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, UserDefinedStructAttributes) == 0x000118, "Member 'UAnimationSettings::UserDefinedStructAttributes' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, MirrorFindReplaceExpressions) == 0x000128, "Member 'UAnimationSettings::MirrorFindReplaceExpressions' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, DefaultFrameRate) == 0x000138, "Member 'UAnimationSettings::DefaultFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSettings, bEnforceSupportedFrameRates) == 0x000140, "Member 'UAnimationSettings::bEnforceSupportedFrameRates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrushBuilder \ +static_assert(alignof(UBrushBuilder) == 0x000008, "Wrong alignment on UBrushBuilder"); \ +static_assert(sizeof(UBrushBuilder) == 0x000080, "Wrong size on UBrushBuilder"); \ +static_assert(offsetof(UBrushBuilder, BitmapFilename) == 0x000028, "Member 'UBrushBuilder::BitmapFilename' has a wrong offset!"); \ +static_assert(offsetof(UBrushBuilder, Tooltip) == 0x000038, "Member 'UBrushBuilder::Tooltip' has a wrong offset!"); \ +static_assert(offsetof(UBrushBuilder, Vertices) == 0x000050, "Member 'UBrushBuilder::Vertices' has a wrong offset!"); \ +static_assert(offsetof(UBrushBuilder, Polys) == 0x000060, "Member 'UBrushBuilder::Polys' has a wrong offset!"); \ +static_assert(offsetof(UBrushBuilder, Layer) == 0x000070, "Member 'UBrushBuilder::Layer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBlueprintGeneratedStruct \ +static_assert(alignof(UAnimBlueprintGeneratedStruct) == 0x000008, "Wrong alignment on UAnimBlueprintGeneratedStruct"); \ +static_assert(sizeof(UAnimBlueprintGeneratedStruct) == 0x0000C0, "Wrong size on UAnimBlueprintGeneratedStruct"); \ + +#define DUMPER7_ASSERTS_UAnimBlueprintGeneratedClass \ +static_assert(alignof(UAnimBlueprintGeneratedClass) == 0x000008, "Wrong alignment on UAnimBlueprintGeneratedClass"); \ +static_assert(sizeof(UAnimBlueprintGeneratedClass) == 0x0005D0, "Wrong size on UAnimBlueprintGeneratedClass"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, BakedStateMachines) == 0x000370, "Member 'UAnimBlueprintGeneratedClass::BakedStateMachines' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, TargetSkeleton) == 0x000380, "Member 'UAnimBlueprintGeneratedClass::TargetSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, AnimNotifies) == 0x000388, "Member 'UAnimBlueprintGeneratedClass::AnimNotifies' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, OrderedSavedPoseIndicesMap) == 0x000398, "Member 'UAnimBlueprintGeneratedClass::OrderedSavedPoseIndicesMap' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, SyncGroupNames) == 0x000468, "Member 'UAnimBlueprintGeneratedClass::SyncGroupNames' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, GraphAssetPlayerInformation) == 0x000478, "Member 'UAnimBlueprintGeneratedClass::GraphAssetPlayerInformation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, GraphBlendOptions) == 0x0004C8, "Member 'UAnimBlueprintGeneratedClass::GraphBlendOptions' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, AnimNodeData) == 0x000518, "Member 'UAnimBlueprintGeneratedClass::AnimNodeData' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprintGeneratedClass, NodeTypeMap) == 0x000528, "Member 'UAnimBlueprintGeneratedClass::NodeTypeMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_LeastDestructive \ +static_assert(alignof(UAnimCompress_LeastDestructive) == 0x000008, "Wrong alignment on UAnimCompress_LeastDestructive"); \ +static_assert(sizeof(UAnimCompress_LeastDestructive) == 0x000040, "Wrong size on UAnimCompress_LeastDestructive"); \ + +#define DUMPER7_ASSERTS_UAnimCompress_RemoveTrivialKeys \ +static_assert(alignof(UAnimCompress_RemoveTrivialKeys) == 0x000008, "Wrong alignment on UAnimCompress_RemoveTrivialKeys"); \ +static_assert(sizeof(UAnimCompress_RemoveTrivialKeys) == 0x000050, "Wrong size on UAnimCompress_RemoveTrivialKeys"); \ +static_assert(offsetof(UAnimCompress_RemoveTrivialKeys, MaxPosDiff) == 0x000040, "Member 'UAnimCompress_RemoveTrivialKeys::MaxPosDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveTrivialKeys, MaxAngleDiff) == 0x000044, "Member 'UAnimCompress_RemoveTrivialKeys::MaxAngleDiff' has a wrong offset!"); \ +static_assert(offsetof(UAnimCompress_RemoveTrivialKeys, MaxScaleDiff) == 0x000048, "Member 'UAnimCompress_RemoveTrivialKeys::MaxScaleDiff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionCodec_UniformlySampled \ +static_assert(alignof(UAnimCurveCompressionCodec_UniformlySampled) == 0x000008, "Wrong alignment on UAnimCurveCompressionCodec_UniformlySampled"); \ +static_assert(sizeof(UAnimCurveCompressionCodec_UniformlySampled) == 0x000038, "Wrong size on UAnimCurveCompressionCodec_UniformlySampled"); \ + +#define DUMPER7_ASSERTS_AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings \ +static_assert(alignof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings) == 0x000008, "Wrong alignment on AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings"); \ +static_assert(sizeof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings) == 0x000068, "Wrong size on AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, Asset) == 0x000000, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::Asset' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, SlotNodeName) == 0x000008, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, BlendInSettings) == 0x000010, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::BlendInSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, BlendOutSettings) == 0x000030, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::BlendOutSettings' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, InPlayRate) == 0x000050, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, LoopCount) == 0x000054, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, InBlendOutTriggerTime) == 0x000058, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::InBlendOutTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings, ReturnValue) == 0x000060, "Member 'AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetBlendInArgs \ +static_assert(alignof(AnimMontage_GetBlendInArgs) == 0x000008, "Wrong alignment on AnimMontage_GetBlendInArgs"); \ +static_assert(sizeof(AnimMontage_GetBlendInArgs) == 0x000010, "Wrong size on AnimMontage_GetBlendInArgs"); \ +static_assert(offsetof(AnimMontage_GetBlendInArgs, ReturnValue) == 0x000000, "Member 'AnimMontage_GetBlendInArgs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetBlendOutArgs \ +static_assert(alignof(AnimMontage_GetBlendOutArgs) == 0x000008, "Wrong alignment on AnimMontage_GetBlendOutArgs"); \ +static_assert(sizeof(AnimMontage_GetBlendOutArgs) == 0x000010, "Wrong size on AnimMontage_GetBlendOutArgs"); \ +static_assert(offsetof(AnimMontage_GetBlendOutArgs, ReturnValue) == 0x000000, "Member 'AnimMontage_GetBlendOutArgs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetDefaultBlendInTime \ +static_assert(alignof(AnimMontage_GetDefaultBlendInTime) == 0x000004, "Wrong alignment on AnimMontage_GetDefaultBlendInTime"); \ +static_assert(sizeof(AnimMontage_GetDefaultBlendInTime) == 0x000004, "Wrong size on AnimMontage_GetDefaultBlendInTime"); \ +static_assert(offsetof(AnimMontage_GetDefaultBlendInTime, ReturnValue) == 0x000000, "Member 'AnimMontage_GetDefaultBlendInTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetDefaultBlendOutTime \ +static_assert(alignof(AnimMontage_GetDefaultBlendOutTime) == 0x000004, "Wrong alignment on AnimMontage_GetDefaultBlendOutTime"); \ +static_assert(sizeof(AnimMontage_GetDefaultBlendOutTime) == 0x000004, "Wrong size on AnimMontage_GetDefaultBlendOutTime"); \ +static_assert(offsetof(AnimMontage_GetDefaultBlendOutTime, ReturnValue) == 0x000000, "Member 'AnimMontage_GetDefaultBlendOutTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetGroupName \ +static_assert(alignof(AnimMontage_GetGroupName) == 0x000004, "Wrong alignment on AnimMontage_GetGroupName"); \ +static_assert(sizeof(AnimMontage_GetGroupName) == 0x000008, "Wrong size on AnimMontage_GetGroupName"); \ +static_assert(offsetof(AnimMontage_GetGroupName, ReturnValue) == 0x000000, "Member 'AnimMontage_GetGroupName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetNumSections \ +static_assert(alignof(AnimMontage_GetNumSections) == 0x000004, "Wrong alignment on AnimMontage_GetNumSections"); \ +static_assert(sizeof(AnimMontage_GetNumSections) == 0x000004, "Wrong size on AnimMontage_GetNumSections"); \ +static_assert(offsetof(AnimMontage_GetNumSections, ReturnValue) == 0x000000, "Member 'AnimMontage_GetNumSections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetSectionIndex \ +static_assert(alignof(AnimMontage_GetSectionIndex) == 0x000004, "Wrong alignment on AnimMontage_GetSectionIndex"); \ +static_assert(sizeof(AnimMontage_GetSectionIndex) == 0x00000C, "Wrong size on AnimMontage_GetSectionIndex"); \ +static_assert(offsetof(AnimMontage_GetSectionIndex, InSectionName) == 0x000000, "Member 'AnimMontage_GetSectionIndex::InSectionName' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_GetSectionIndex, ReturnValue) == 0x000008, "Member 'AnimMontage_GetSectionIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_GetSectionName \ +static_assert(alignof(AnimMontage_GetSectionName) == 0x000004, "Wrong alignment on AnimMontage_GetSectionName"); \ +static_assert(sizeof(AnimMontage_GetSectionName) == 0x00000C, "Wrong size on AnimMontage_GetSectionName"); \ +static_assert(offsetof(AnimMontage_GetSectionName, SectionIndex) == 0x000000, "Member 'AnimMontage_GetSectionName::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_GetSectionName, ReturnValue) == 0x000004, "Member 'AnimMontage_GetSectionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_IsValidAdditiveSlot \ +static_assert(alignof(AnimMontage_IsValidAdditiveSlot) == 0x000004, "Wrong alignment on AnimMontage_IsValidAdditiveSlot"); \ +static_assert(sizeof(AnimMontage_IsValidAdditiveSlot) == 0x00000C, "Wrong size on AnimMontage_IsValidAdditiveSlot"); \ +static_assert(offsetof(AnimMontage_IsValidAdditiveSlot, SlotNodeName) == 0x000000, "Member 'AnimMontage_IsValidAdditiveSlot::SlotNodeName' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_IsValidAdditiveSlot, ReturnValue) == 0x000008, "Member 'AnimMontage_IsValidAdditiveSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimMontage_IsValidSectionName \ +static_assert(alignof(AnimMontage_IsValidSectionName) == 0x000004, "Wrong alignment on AnimMontage_IsValidSectionName"); \ +static_assert(sizeof(AnimMontage_IsValidSectionName) == 0x00000C, "Wrong size on AnimMontage_IsValidSectionName"); \ +static_assert(offsetof(AnimMontage_IsValidSectionName, InSectionName) == 0x000000, "Member 'AnimMontage_IsValidSectionName::InSectionName' has a wrong offset!"); \ +static_assert(offsetof(AnimMontage_IsValidSectionName, ReturnValue) == 0x000008, "Member 'AnimMontage_IsValidSectionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimMontage \ +static_assert(alignof(UAnimMontage) == 0x000008, "Wrong alignment on UAnimMontage"); \ +static_assert(sizeof(UAnimMontage) == 0x0001E0, "Wrong size on UAnimMontage"); \ +static_assert(offsetof(UAnimMontage, BlendModeIn) == 0x0000B8, "Member 'UAnimMontage::BlendModeIn' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendModeOut) == 0x0000B9, "Member 'UAnimMontage::BlendModeOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendIn) == 0x0000C0, "Member 'UAnimMontage::BlendIn' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendOut) == 0x0000F0, "Member 'UAnimMontage::BlendOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendOutTriggerTime) == 0x000120, "Member 'UAnimMontage::BlendOutTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, SyncGroup) == 0x000124, "Member 'UAnimMontage::SyncGroup' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, SyncSlotIndex) == 0x00012C, "Member 'UAnimMontage::SyncSlotIndex' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, MarkerData) == 0x000130, "Member 'UAnimMontage::MarkerData' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, CompositeSections) == 0x000150, "Member 'UAnimMontage::CompositeSections' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, SlotAnimTracks) == 0x000160, "Member 'UAnimMontage::SlotAnimTracks' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, bEnableRootMotionTranslation) == 0x000170, "Member 'UAnimMontage::bEnableRootMotionTranslation' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, bEnableRootMotionRotation) == 0x000171, "Member 'UAnimMontage::bEnableRootMotionRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, bEnableAutoBlendOut) == 0x000172, "Member 'UAnimMontage::bEnableAutoBlendOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendProfileIn) == 0x000178, "Member 'UAnimMontage::BlendProfileIn' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BlendProfileOut) == 0x000180, "Member 'UAnimMontage::BlendProfileOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, RootMotionRootLock) == 0x000188, "Member 'UAnimMontage::RootMotionRootLock' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BranchingPointMarkers) == 0x000190, "Member 'UAnimMontage::BranchingPointMarkers' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, BranchingPointStateNotifyIndices) == 0x0001A0, "Member 'UAnimMontage::BranchingPointStateNotifyIndices' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, TimeStretchCurve) == 0x0001B0, "Member 'UAnimMontage::TimeStretchCurve' has a wrong offset!"); \ +static_assert(offsetof(UAnimMontage, TimeStretchCurveName) == 0x0001D8, "Member 'UAnimMontage::TimeStretchCurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_DisableRootMotion \ +static_assert(alignof(UAnimNotifyState_DisableRootMotion) == 0x000008, "Wrong alignment on UAnimNotifyState_DisableRootMotion"); \ +static_assert(sizeof(UAnimNotifyState_DisableRootMotion) == 0x000030, "Wrong size on UAnimNotifyState_DisableRootMotion"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PlayParticleEffect \ +static_assert(alignof(UAnimNotify_PlayParticleEffect) == 0x000010, "Wrong alignment on UAnimNotify_PlayParticleEffect"); \ +static_assert(sizeof(UAnimNotify_PlayParticleEffect) == 0x0000C0, "Wrong size on UAnimNotify_PlayParticleEffect"); \ +static_assert(offsetof(UAnimNotify_PlayParticleEffect, PSTemplate) == 0x000038, "Member 'UAnimNotify_PlayParticleEffect::PSTemplate' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayParticleEffect, LocationOffset) == 0x000040, "Member 'UAnimNotify_PlayParticleEffect::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayParticleEffect, RotationOffset) == 0x000058, "Member 'UAnimNotify_PlayParticleEffect::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayParticleEffect, Scale) == 0x000070, "Member 'UAnimNotify_PlayParticleEffect::Scale' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayParticleEffect, SocketName) == 0x0000B4, "Member 'UAnimNotify_PlayParticleEffect::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_ResumeClothingSimulation \ +static_assert(alignof(UAnimNotify_ResumeClothingSimulation) == 0x000008, "Wrong alignment on UAnimNotify_ResumeClothingSimulation"); \ +static_assert(sizeof(UAnimNotify_ResumeClothingSimulation) == 0x000038, "Wrong size on UAnimNotify_ResumeClothingSimulation"); \ + +#define DUMPER7_ASSERTS_UAnimStateMachineTypes \ +static_assert(alignof(UAnimStateMachineTypes) == 0x000008, "Wrong alignment on UAnimStateMachineTypes"); \ +static_assert(sizeof(UAnimStateMachineTypes) == 0x000028, "Wrong size on UAnimStateMachineTypes"); \ + +#define DUMPER7_ASSERTS_UAnimStreamable \ +static_assert(alignof(UAnimStreamable) == 0x000008, "Wrong alignment on UAnimStreamable"); \ +static_assert(sizeof(UAnimStreamable) == 0x0000F8, "Wrong size on UAnimStreamable"); \ +static_assert(offsetof(UAnimStreamable, NumberOfKeys) == 0x0000B0, "Member 'UAnimStreamable::NumberOfKeys' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, Interpolation) == 0x0000B4, "Member 'UAnimStreamable::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, RetargetSource) == 0x0000B8, "Member 'UAnimStreamable::RetargetSource' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, SamplingFrameRate) == 0x0000C0, "Member 'UAnimStreamable::SamplingFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, BoneCompressionSettings) == 0x0000D8, "Member 'UAnimStreamable::BoneCompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, CurveCompressionSettings) == 0x0000E0, "Member 'UAnimStreamable::CurveCompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, VariableFrameStrippingSettings) == 0x0000E8, "Member 'UAnimStreamable::VariableFrameStrippingSettings' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, bEnableRootMotion) == 0x0000F0, "Member 'UAnimStreamable::bEnableRootMotion' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, RootMotionRootLock) == 0x0000F1, "Member 'UAnimStreamable::RootMotionRootLock' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, bForceRootLock) == 0x0000F2, "Member 'UAnimStreamable::bForceRootLock' has a wrong offset!"); \ +static_assert(offsetof(UAnimStreamable, bUseNormalizedRootMotionScale) == 0x0000F3, "Member 'UAnimStreamable::bUseNormalizedRootMotionScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationAttributeIdentifierExtensions_IsValid \ +static_assert(alignof(AnimationAttributeIdentifierExtensions_IsValid) == 0x000008, "Wrong alignment on AnimationAttributeIdentifierExtensions_IsValid"); \ +static_assert(sizeof(AnimationAttributeIdentifierExtensions_IsValid) == 0x000048, "Wrong size on AnimationAttributeIdentifierExtensions_IsValid"); \ +static_assert(offsetof(AnimationAttributeIdentifierExtensions_IsValid, Identifier) == 0x000000, "Member 'AnimationAttributeIdentifierExtensions_IsValid::Identifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationAttributeIdentifierExtensions_IsValid, ReturnValue) == 0x000040, "Member 'AnimationAttributeIdentifierExtensions_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationAttributeIdentifierExtensions \ +static_assert(alignof(UAnimationAttributeIdentifierExtensions) == 0x000008, "Wrong alignment on UAnimationAttributeIdentifierExtensions"); \ +static_assert(sizeof(UAnimationAttributeIdentifierExtensions) == 0x000028, "Wrong size on UAnimationAttributeIdentifierExtensions"); \ + +#define DUMPER7_ASSERTS_Skeleton_AddCompatibleSkeleton \ +static_assert(alignof(Skeleton_AddCompatibleSkeleton) == 0x000008, "Wrong alignment on Skeleton_AddCompatibleSkeleton"); \ +static_assert(sizeof(Skeleton_AddCompatibleSkeleton) == 0x000008, "Wrong size on Skeleton_AddCompatibleSkeleton"); \ +static_assert(offsetof(Skeleton_AddCompatibleSkeleton, SourceSkeleton) == 0x000000, "Member 'Skeleton_AddCompatibleSkeleton::SourceSkeleton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Skeleton_AddCompatibleSkeletonSoft \ +static_assert(alignof(Skeleton_AddCompatibleSkeletonSoft) == 0x000008, "Wrong alignment on Skeleton_AddCompatibleSkeletonSoft"); \ +static_assert(sizeof(Skeleton_AddCompatibleSkeletonSoft) == 0x000028, "Wrong size on Skeleton_AddCompatibleSkeletonSoft"); \ +static_assert(offsetof(Skeleton_AddCompatibleSkeletonSoft, SourceSkeleton) == 0x000000, "Member 'Skeleton_AddCompatibleSkeletonSoft::SourceSkeleton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Skeleton_GetBlendProfile \ +static_assert(alignof(Skeleton_GetBlendProfile) == 0x000008, "Wrong alignment on Skeleton_GetBlendProfile"); \ +static_assert(sizeof(Skeleton_GetBlendProfile) == 0x000010, "Wrong size on Skeleton_GetBlendProfile"); \ +static_assert(offsetof(Skeleton_GetBlendProfile, InProfileName) == 0x000000, "Member 'Skeleton_GetBlendProfile::InProfileName' has a wrong offset!"); \ +static_assert(offsetof(Skeleton_GetBlendProfile, ReturnValue) == 0x000008, "Member 'Skeleton_GetBlendProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeleton \ +static_assert(alignof(USkeleton) == 0x000008, "Wrong alignment on USkeleton"); \ +static_assert(sizeof(USkeleton) == 0x000400, "Wrong size on USkeleton"); \ +static_assert(offsetof(USkeleton, BoneTree) == 0x000038, "Member 'USkeleton::BoneTree' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, VirtualBoneGuid) == 0x000160, "Member 'USkeleton::VirtualBoneGuid' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, VirtualBones) == 0x000170, "Member 'USkeleton::VirtualBones' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, CompatibleSkeletons) == 0x000180, "Member 'USkeleton::CompatibleSkeletons' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, Sockets) == 0x000190, "Member 'USkeleton::Sockets' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, SmartNames) == 0x0001F0, "Member 'USkeleton::SmartNames' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, BlendProfiles) == 0x000250, "Member 'USkeleton::BlendProfiles' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, SlotGroups) == 0x000260, "Member 'USkeleton::SlotGroups' has a wrong offset!"); \ +static_assert(offsetof(USkeleton, AssetUserData) == 0x0003F0, "Member 'USkeleton::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationCurveIdentifierExtensions_GetName \ +static_assert(alignof(AnimationCurveIdentifierExtensions_GetName) == 0x000004, "Wrong alignment on AnimationCurveIdentifierExtensions_GetName"); \ +static_assert(sizeof(AnimationCurveIdentifierExtensions_GetName) == 0x000014, "Wrong size on AnimationCurveIdentifierExtensions_GetName"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_GetName, Identifier) == 0x000000, "Member 'AnimationCurveIdentifierExtensions_GetName::Identifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_GetName, ReturnValue) == 0x00000C, "Member 'AnimationCurveIdentifierExtensions_GetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationCurveIdentifierExtensions_GetType \ +static_assert(alignof(AnimationCurveIdentifierExtensions_GetType) == 0x000004, "Wrong alignment on AnimationCurveIdentifierExtensions_GetType"); \ +static_assert(sizeof(AnimationCurveIdentifierExtensions_GetType) == 0x000010, "Wrong size on AnimationCurveIdentifierExtensions_GetType"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_GetType, Identifier) == 0x000000, "Member 'AnimationCurveIdentifierExtensions_GetType::Identifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_GetType, ReturnValue) == 0x00000C, "Member 'AnimationCurveIdentifierExtensions_GetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationCurveIdentifierExtensions_IsValid \ +static_assert(alignof(AnimationCurveIdentifierExtensions_IsValid) == 0x000004, "Wrong alignment on AnimationCurveIdentifierExtensions_IsValid"); \ +static_assert(sizeof(AnimationCurveIdentifierExtensions_IsValid) == 0x000010, "Wrong size on AnimationCurveIdentifierExtensions_IsValid"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_IsValid, Identifier) == 0x000000, "Member 'AnimationCurveIdentifierExtensions_IsValid::Identifier' has a wrong offset!"); \ +static_assert(offsetof(AnimationCurveIdentifierExtensions_IsValid, ReturnValue) == 0x00000C, "Member 'AnimationCurveIdentifierExtensions_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationCurveIdentifierExtensions \ +static_assert(alignof(UAnimationCurveIdentifierExtensions) == 0x000008, "Wrong alignment on UAnimationCurveIdentifierExtensions"); \ +static_assert(sizeof(UAnimationCurveIdentifierExtensions) == 0x000028, "Wrong size on UAnimationCurveIdentifierExtensions"); \ + +#define DUMPER7_ASSERTS_CurveSourceInterface_GetBindingName \ +static_assert(alignof(CurveSourceInterface_GetBindingName) == 0x000004, "Wrong alignment on CurveSourceInterface_GetBindingName"); \ +static_assert(sizeof(CurveSourceInterface_GetBindingName) == 0x000008, "Wrong size on CurveSourceInterface_GetBindingName"); \ +static_assert(offsetof(CurveSourceInterface_GetBindingName, ReturnValue) == 0x000000, "Member 'CurveSourceInterface_GetBindingName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveSourceInterface_GetCurves \ +static_assert(alignof(CurveSourceInterface_GetCurves) == 0x000008, "Wrong alignment on CurveSourceInterface_GetCurves"); \ +static_assert(sizeof(CurveSourceInterface_GetCurves) == 0x000010, "Wrong size on CurveSourceInterface_GetCurves"); \ +static_assert(offsetof(CurveSourceInterface_GetCurves, OutValues) == 0x000000, "Member 'CurveSourceInterface_GetCurves::OutValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveSourceInterface_GetCurveValue \ +static_assert(alignof(CurveSourceInterface_GetCurveValue) == 0x000004, "Wrong alignment on CurveSourceInterface_GetCurveValue"); \ +static_assert(sizeof(CurveSourceInterface_GetCurveValue) == 0x00000C, "Wrong size on CurveSourceInterface_GetCurveValue"); \ +static_assert(offsetof(CurveSourceInterface_GetCurveValue, CurveName) == 0x000000, "Member 'CurveSourceInterface_GetCurveValue::CurveName' has a wrong offset!"); \ +static_assert(offsetof(CurveSourceInterface_GetCurveValue, ReturnValue) == 0x000008, "Member 'CurveSourceInterface_GetCurveValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICurveSourceInterface \ +static_assert(alignof(ICurveSourceInterface) == 0x000001, "Wrong alignment on ICurveSourceInterface"); \ +static_assert(sizeof(ICurveSourceInterface) == 0x000001, "Wrong size on ICurveSourceInterface"); \ + +#define DUMPER7_ASSERTS_UMirrorDataTable \ +static_assert(alignof(UMirrorDataTable) == 0x000008, "Wrong alignment on UMirrorDataTable"); \ +static_assert(sizeof(UMirrorDataTable) == 0x0001F0, "Wrong size on UMirrorDataTable"); \ +static_assert(offsetof(UMirrorDataTable, MirrorFindReplaceExpressions) == 0x0000B0, "Member 'UMirrorDataTable::MirrorFindReplaceExpressions' has a wrong offset!"); \ +static_assert(offsetof(UMirrorDataTable, MirrorAxis) == 0x0000C0, "Member 'UMirrorDataTable::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(UMirrorDataTable, Skeleton) == 0x0000C8, "Member 'UMirrorDataTable::Skeleton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNodeMappingContainer \ +static_assert(alignof(UNodeMappingContainer) == 0x000008, "Wrong alignment on UNodeMappingContainer"); \ +static_assert(sizeof(UNodeMappingContainer) == 0x000168, "Wrong size on UNodeMappingContainer"); \ +static_assert(offsetof(UNodeMappingContainer, SourceItems) == 0x000028, "Member 'UNodeMappingContainer::SourceItems' has a wrong offset!"); \ +static_assert(offsetof(UNodeMappingContainer, TargetItems) == 0x000078, "Member 'UNodeMappingContainer::TargetItems' has a wrong offset!"); \ +static_assert(offsetof(UNodeMappingContainer, SourceToTarget) == 0x0000C8, "Member 'UNodeMappingContainer::SourceToTarget' has a wrong offset!"); \ +static_assert(offsetof(UNodeMappingContainer, SourceAsset) == 0x000118, "Member 'UNodeMappingContainer::SourceAsset' has a wrong offset!"); \ +static_assert(offsetof(UNodeMappingContainer, TargetAsset) == 0x000140, "Member 'UNodeMappingContainer::TargetAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBlueprint \ +static_assert(alignof(UAnimBlueprint) == 0x000008, "Wrong alignment on UAnimBlueprint"); \ +static_assert(sizeof(UAnimBlueprint) == 0x0000D0, "Wrong size on UAnimBlueprint"); \ +static_assert(offsetof(UAnimBlueprint, TargetSkeleton) == 0x0000B0, "Member 'UAnimBlueprint::TargetSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprint, Groups) == 0x0000B8, "Member 'UAnimBlueprint::Groups' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprint, bIsTemplate) == 0x0000C8, "Member 'UAnimBlueprint::bIsTemplate' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprint, bUseMultiThreadedAnimationUpdate) == 0x0000C9, "Member 'UAnimBlueprint::bUseMultiThreadedAnimationUpdate' has a wrong offset!"); \ +static_assert(offsetof(UAnimBlueprint, bWarnAboutBlueprintUsage) == 0x0000CA, "Member 'UAnimBlueprint::bWarnAboutBlueprintUsage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass \ +static_assert(alignof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass) == 0x000008, "Wrong alignment on AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass"); \ +static_assert(sizeof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass) == 0x000030, "Wrong size on AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass, WorldContextObject) == 0x000000, "Member 'AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass, PrimaryAsset) == 0x000008, "Member 'AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass::PrimaryAsset' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass, LoadBundles) == 0x000018, "Member 'AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass::LoadBundles' has a wrong offset!"); \ +static_assert(offsetof(AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass, ReturnValue) == 0x000028, "Member 'AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncActionLoadPrimaryAssetClass \ +static_assert(alignof(UAsyncActionLoadPrimaryAssetClass) == 0x000008, "Wrong alignment on UAsyncActionLoadPrimaryAssetClass"); \ +static_assert(sizeof(UAsyncActionLoadPrimaryAssetClass) == 0x000088, "Wrong size on UAsyncActionLoadPrimaryAssetClass"); \ +static_assert(offsetof(UAsyncActionLoadPrimaryAssetClass, Completed) == 0x000078, "Member 'UAsyncActionLoadPrimaryAssetClass::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAtmosphericFog \ +static_assert(alignof(AAtmosphericFog) == 0x000008, "Wrong alignment on AAtmosphericFog"); \ +static_assert(sizeof(AAtmosphericFog) == 0x0002A0, "Wrong size on AAtmosphericFog"); \ +static_assert(offsetof(AAtmosphericFog, AtmosphericFogComponent) == 0x000298, "Member 'AAtmosphericFog::AtmosphericFogComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioBus \ +static_assert(alignof(UAudioBus) == 0x000008, "Wrong alignment on UAudioBus"); \ +static_assert(sizeof(UAudioBus) == 0x000038, "Wrong size on UAudioBus"); \ +static_assert(offsetof(UAudioBus, AudioBusChannels) == 0x000030, "Member 'UAudioBus::AudioBusChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioSettings \ +static_assert(alignof(UAudioSettings) == 0x000008, "Wrong alignment on UAudioSettings"); \ +static_assert(sizeof(UAudioSettings) == 0x0001E8, "Wrong size on UAudioSettings"); \ +static_assert(offsetof(UAudioSettings, DefaultSoundClassName) == 0x000038, "Member 'UAudioSettings::DefaultSoundClassName' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultMediaSoundClassName) == 0x000058, "Member 'UAudioSettings::DefaultMediaSoundClassName' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultSoundConcurrencyName) == 0x000078, "Member 'UAudioSettings::DefaultSoundConcurrencyName' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultBaseSoundMix) == 0x000098, "Member 'UAudioSettings::DefaultBaseSoundMix' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, VoiPSoundClass) == 0x0000B8, "Member 'UAudioSettings::VoiPSoundClass' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, MasterSubmix) == 0x0000D8, "Member 'UAudioSettings::MasterSubmix' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, BaseDefaultSubmix) == 0x0000F8, "Member 'UAudioSettings::BaseDefaultSubmix' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, ReverbSubmix) == 0x000118, "Member 'UAudioSettings::ReverbSubmix' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, EQSubmix) == 0x000138, "Member 'UAudioSettings::EQSubmix' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, VoiPSampleRate) == 0x000158, "Member 'UAudioSettings::VoiPSampleRate' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultAudioCompressionType) == 0x00015C, "Member 'UAudioSettings::DefaultAudioCompressionType' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultCompressionQuality) == 0x000160, "Member 'UAudioSettings::DefaultCompressionQuality' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultReverbSendLevel) == 0x000164, "Member 'UAudioSettings::DefaultReverbSendLevel' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, MaximumConcurrentStreams) == 0x000168, "Member 'UAudioSettings::MaximumConcurrentStreams' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, GlobalMinPitchScale) == 0x00016C, "Member 'UAudioSettings::GlobalMinPitchScale' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, GlobalMaxPitchScale) == 0x000170, "Member 'UAudioSettings::GlobalMaxPitchScale' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, QualityLevels) == 0x000178, "Member 'UAudioSettings::QualityLevels' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, NumStoppingSources) == 0x00018C, "Member 'UAudioSettings::NumStoppingSources' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, PanningMethod) == 0x000190, "Member 'UAudioSettings::PanningMethod' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, MonoChannelUpmixMethod) == 0x000191, "Member 'UAudioSettings::MonoChannelUpmixMethod' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DialogueFilenameFormat) == 0x000198, "Member 'UAudioSettings::DialogueFilenameFormat' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DebugSounds) == 0x0001A8, "Member 'UAudioSettings::DebugSounds' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultAudioBuses) == 0x0001B8, "Member 'UAudioSettings::DefaultAudioBuses' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultSoundClass) == 0x0001C8, "Member 'UAudioSettings::DefaultSoundClass' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultMediaSoundClass) == 0x0001D0, "Member 'UAudioSettings::DefaultMediaSoundClass' has a wrong offset!"); \ +static_assert(offsetof(UAudioSettings, DefaultSoundConcurrency) == 0x0001D8, "Member 'UAudioSettings::DefaultSoundConcurrency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ISoundParameterControllerInterface \ +static_assert(alignof(ISoundParameterControllerInterface) == 0x000001, "Wrong alignment on ISoundParameterControllerInterface"); \ +static_assert(sizeof(ISoundParameterControllerInterface) == 0x000001, "Wrong size on ISoundParameterControllerInterface"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_BooleanArrayToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_BooleanArrayToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_BooleanArrayToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_BooleanArrayToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_BooleanArrayToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanArrayToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_BooleanArrayToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanArrayToAudioParameter, Bools) == 0x000008, "Member 'AudioParameterConversionStatics_BooleanArrayToAudioParameter::Bools' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanArrayToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_BooleanArrayToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_BooleanToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_BooleanToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_BooleanToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_BooleanToAudioParameter) == 0x0000B0, "Wrong size on AudioParameterConversionStatics_BooleanToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_BooleanToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanToAudioParameter, Bool) == 0x000008, "Member 'AudioParameterConversionStatics_BooleanToAudioParameter::Bool' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_BooleanToAudioParameter, ReturnValue) == 0x000010, "Member 'AudioParameterConversionStatics_BooleanToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_FloatArrayToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_FloatArrayToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_FloatArrayToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_FloatArrayToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_FloatArrayToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatArrayToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_FloatArrayToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatArrayToAudioParameter, Floats) == 0x000008, "Member 'AudioParameterConversionStatics_FloatArrayToAudioParameter::Floats' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatArrayToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_FloatArrayToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_FloatToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_FloatToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_FloatToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_FloatToAudioParameter) == 0x0000B0, "Wrong size on AudioParameterConversionStatics_FloatToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_FloatToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatToAudioParameter, float_0) == 0x000008, "Member 'AudioParameterConversionStatics_FloatToAudioParameter::float_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_FloatToAudioParameter, ReturnValue) == 0x000010, "Member 'AudioParameterConversionStatics_FloatToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_IntegerArrayToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_IntegerArrayToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_IntegerArrayToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_IntegerArrayToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_IntegerArrayToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerArrayToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_IntegerArrayToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerArrayToAudioParameter, Integers) == 0x000008, "Member 'AudioParameterConversionStatics_IntegerArrayToAudioParameter::Integers' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerArrayToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_IntegerArrayToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_IntegerToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_IntegerToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_IntegerToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_IntegerToAudioParameter) == 0x0000B0, "Wrong size on AudioParameterConversionStatics_IntegerToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_IntegerToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerToAudioParameter, Integer) == 0x000008, "Member 'AudioParameterConversionStatics_IntegerToAudioParameter::Integer' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_IntegerToAudioParameter, ReturnValue) == 0x000010, "Member 'AudioParameterConversionStatics_IntegerToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_ObjectArrayToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_ObjectArrayToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_ObjectArrayToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_ObjectArrayToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_ObjectArrayToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectArrayToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_ObjectArrayToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectArrayToAudioParameter, Objects) == 0x000008, "Member 'AudioParameterConversionStatics_ObjectArrayToAudioParameter::Objects' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectArrayToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_ObjectArrayToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_ObjectToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_ObjectToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_ObjectToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_ObjectToAudioParameter) == 0x0000B0, "Wrong size on AudioParameterConversionStatics_ObjectToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_ObjectToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectToAudioParameter, Object) == 0x000008, "Member 'AudioParameterConversionStatics_ObjectToAudioParameter::Object' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_ObjectToAudioParameter, ReturnValue) == 0x000010, "Member 'AudioParameterConversionStatics_ObjectToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_StringArrayToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_StringArrayToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_StringArrayToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_StringArrayToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_StringArrayToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringArrayToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_StringArrayToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringArrayToAudioParameter, Strings) == 0x000008, "Member 'AudioParameterConversionStatics_StringArrayToAudioParameter::Strings' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringArrayToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_StringArrayToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterConversionStatics_StringToAudioParameter \ +static_assert(alignof(AudioParameterConversionStatics_StringToAudioParameter) == 0x000008, "Wrong alignment on AudioParameterConversionStatics_StringToAudioParameter"); \ +static_assert(sizeof(AudioParameterConversionStatics_StringToAudioParameter) == 0x0000B8, "Wrong size on AudioParameterConversionStatics_StringToAudioParameter"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringToAudioParameter, Name_0) == 0x000000, "Member 'AudioParameterConversionStatics_StringToAudioParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringToAudioParameter, String) == 0x000008, "Member 'AudioParameterConversionStatics_StringToAudioParameter::String' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterConversionStatics_StringToAudioParameter, ReturnValue) == 0x000018, "Member 'AudioParameterConversionStatics_StringToAudioParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioParameterConversionStatics \ +static_assert(alignof(UAudioParameterConversionStatics) == 0x000008, "Wrong alignment on UAudioParameterConversionStatics"); \ +static_assert(sizeof(UAudioParameterConversionStatics) == 0x000028, "Wrong size on UAudioParameterConversionStatics"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Add \ +static_assert(alignof(BlueprintMapLibrary_Map_Add) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Add"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Add) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_Add"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Add, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Add::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Add, Key) == 0x000050, "Member 'BlueprintMapLibrary_Map_Add::Key' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Add, Value) == 0x000054, "Member 'BlueprintMapLibrary_Map_Add::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Clear \ +static_assert(alignof(BlueprintMapLibrary_Map_Clear) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Clear"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Clear) == 0x000050, "Wrong size on BlueprintMapLibrary_Map_Clear"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Clear, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Clear::TargetMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Contains \ +static_assert(alignof(BlueprintMapLibrary_Map_Contains) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Contains"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Contains) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_Contains"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Contains, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Contains::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Contains, Key) == 0x000050, "Member 'BlueprintMapLibrary_Map_Contains::Key' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Contains, ReturnValue) == 0x000054, "Member 'BlueprintMapLibrary_Map_Contains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Find \ +static_assert(alignof(BlueprintMapLibrary_Map_Find) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Find"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Find) == 0x000060, "Wrong size on BlueprintMapLibrary_Map_Find"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Find, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Find::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Find, Key) == 0x000050, "Member 'BlueprintMapLibrary_Map_Find::Key' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Find, Value) == 0x000054, "Member 'BlueprintMapLibrary_Map_Find::Value' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Find, ReturnValue) == 0x000058, "Member 'BlueprintMapLibrary_Map_Find::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_IsEmpty \ +static_assert(alignof(BlueprintMapLibrary_Map_IsEmpty) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_IsEmpty"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_IsEmpty) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_IsEmpty"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_IsEmpty, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_IsEmpty::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_IsEmpty, ReturnValue) == 0x000050, "Member 'BlueprintMapLibrary_Map_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_IsNotEmpty \ +static_assert(alignof(BlueprintMapLibrary_Map_IsNotEmpty) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_IsNotEmpty"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_IsNotEmpty) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_IsNotEmpty"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_IsNotEmpty, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_IsNotEmpty::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_IsNotEmpty, ReturnValue) == 0x000050, "Member 'BlueprintMapLibrary_Map_IsNotEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Keys \ +static_assert(alignof(BlueprintMapLibrary_Map_Keys) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Keys"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Keys) == 0x000060, "Wrong size on BlueprintMapLibrary_Map_Keys"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Keys, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Keys::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Keys, Keys) == 0x000050, "Member 'BlueprintMapLibrary_Map_Keys::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Length \ +static_assert(alignof(BlueprintMapLibrary_Map_Length) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Length"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Length) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_Length"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Length, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Length::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Length, ReturnValue) == 0x000050, "Member 'BlueprintMapLibrary_Map_Length::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Remove \ +static_assert(alignof(BlueprintMapLibrary_Map_Remove) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Remove"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Remove) == 0x000058, "Wrong size on BlueprintMapLibrary_Map_Remove"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Remove, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Remove::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Remove, Key) == 0x000050, "Member 'BlueprintMapLibrary_Map_Remove::Key' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Remove, ReturnValue) == 0x000054, "Member 'BlueprintMapLibrary_Map_Remove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_Map_Values \ +static_assert(alignof(BlueprintMapLibrary_Map_Values) == 0x000008, "Wrong alignment on BlueprintMapLibrary_Map_Values"); \ +static_assert(sizeof(BlueprintMapLibrary_Map_Values) == 0x000060, "Wrong size on BlueprintMapLibrary_Map_Values"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Values, TargetMap) == 0x000000, "Member 'BlueprintMapLibrary_Map_Values::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_Map_Values, Values) == 0x000050, "Member 'BlueprintMapLibrary_Map_Values::Values' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintMapLibrary_SetMapPropertyByName \ +static_assert(alignof(BlueprintMapLibrary_SetMapPropertyByName) == 0x000008, "Wrong alignment on BlueprintMapLibrary_SetMapPropertyByName"); \ +static_assert(sizeof(BlueprintMapLibrary_SetMapPropertyByName) == 0x000060, "Wrong size on BlueprintMapLibrary_SetMapPropertyByName"); \ +static_assert(offsetof(BlueprintMapLibrary_SetMapPropertyByName, Object) == 0x000000, "Member 'BlueprintMapLibrary_SetMapPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_SetMapPropertyByName, PropertyName) == 0x000008, "Member 'BlueprintMapLibrary_SetMapPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(BlueprintMapLibrary_SetMapPropertyByName, Value) == 0x000010, "Member 'BlueprintMapLibrary_SetMapPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintMapLibrary \ +static_assert(alignof(UBlueprintMapLibrary) == 0x000008, "Wrong alignment on UBlueprintMapLibrary"); \ +static_assert(sizeof(UBlueprintMapLibrary) == 0x000028, "Wrong size on UBlueprintMapLibrary"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Add \ +static_assert(alignof(BlueprintSetLibrary_Set_Add) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Add"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Add) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_Add"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Add, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_Add::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Add, NewItem) == 0x000050, "Member 'BlueprintSetLibrary_Set_Add::NewItem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_AddItems \ +static_assert(alignof(BlueprintSetLibrary_Set_AddItems) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_AddItems"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_AddItems) == 0x000060, "Wrong size on BlueprintSetLibrary_Set_AddItems"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_AddItems, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_AddItems::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_AddItems, NewItems) == 0x000050, "Member 'BlueprintSetLibrary_Set_AddItems::NewItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Clear \ +static_assert(alignof(BlueprintSetLibrary_Set_Clear) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Clear"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Clear) == 0x000050, "Wrong size on BlueprintSetLibrary_Set_Clear"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Clear, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_Clear::TargetSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Contains \ +static_assert(alignof(BlueprintSetLibrary_Set_Contains) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Contains"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Contains) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_Contains"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Contains, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_Contains::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Contains, ItemToFind) == 0x000050, "Member 'BlueprintSetLibrary_Set_Contains::ItemToFind' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Contains, ReturnValue) == 0x000054, "Member 'BlueprintSetLibrary_Set_Contains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Difference \ +static_assert(alignof(BlueprintSetLibrary_Set_Difference) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Difference"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Difference) == 0x0000F0, "Wrong size on BlueprintSetLibrary_Set_Difference"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Difference, A) == 0x000000, "Member 'BlueprintSetLibrary_Set_Difference::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Difference, B) == 0x000050, "Member 'BlueprintSetLibrary_Set_Difference::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Difference, Result) == 0x0000A0, "Member 'BlueprintSetLibrary_Set_Difference::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Intersection \ +static_assert(alignof(BlueprintSetLibrary_Set_Intersection) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Intersection"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Intersection) == 0x0000F0, "Wrong size on BlueprintSetLibrary_Set_Intersection"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Intersection, A) == 0x000000, "Member 'BlueprintSetLibrary_Set_Intersection::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Intersection, B) == 0x000050, "Member 'BlueprintSetLibrary_Set_Intersection::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Intersection, Result) == 0x0000A0, "Member 'BlueprintSetLibrary_Set_Intersection::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_IsEmpty \ +static_assert(alignof(BlueprintSetLibrary_Set_IsEmpty) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_IsEmpty"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_IsEmpty) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_IsEmpty"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_IsEmpty, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_IsEmpty::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_IsEmpty, ReturnValue) == 0x000050, "Member 'BlueprintSetLibrary_Set_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_IsNotEmpty \ +static_assert(alignof(BlueprintSetLibrary_Set_IsNotEmpty) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_IsNotEmpty"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_IsNotEmpty) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_IsNotEmpty"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_IsNotEmpty, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_IsNotEmpty::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_IsNotEmpty, ReturnValue) == 0x000050, "Member 'BlueprintSetLibrary_Set_IsNotEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Length \ +static_assert(alignof(BlueprintSetLibrary_Set_Length) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Length"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Length) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_Length"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Length, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_Length::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Length, ReturnValue) == 0x000050, "Member 'BlueprintSetLibrary_Set_Length::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Remove \ +static_assert(alignof(BlueprintSetLibrary_Set_Remove) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Remove"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Remove) == 0x000058, "Wrong size on BlueprintSetLibrary_Set_Remove"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Remove, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_Remove::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Remove, Item) == 0x000050, "Member 'BlueprintSetLibrary_Set_Remove::Item' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Remove, ReturnValue) == 0x000054, "Member 'BlueprintSetLibrary_Set_Remove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_RemoveItems \ +static_assert(alignof(BlueprintSetLibrary_Set_RemoveItems) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_RemoveItems"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_RemoveItems) == 0x000060, "Wrong size on BlueprintSetLibrary_Set_RemoveItems"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_RemoveItems, TargetSet) == 0x000000, "Member 'BlueprintSetLibrary_Set_RemoveItems::TargetSet' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_RemoveItems, Items) == 0x000050, "Member 'BlueprintSetLibrary_Set_RemoveItems::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_ToArray \ +static_assert(alignof(BlueprintSetLibrary_Set_ToArray) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_ToArray"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_ToArray) == 0x000060, "Wrong size on BlueprintSetLibrary_Set_ToArray"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_ToArray, A) == 0x000000, "Member 'BlueprintSetLibrary_Set_ToArray::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_ToArray, Result) == 0x000050, "Member 'BlueprintSetLibrary_Set_ToArray::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_Set_Union \ +static_assert(alignof(BlueprintSetLibrary_Set_Union) == 0x000008, "Wrong alignment on BlueprintSetLibrary_Set_Union"); \ +static_assert(sizeof(BlueprintSetLibrary_Set_Union) == 0x0000F0, "Wrong size on BlueprintSetLibrary_Set_Union"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Union, A) == 0x000000, "Member 'BlueprintSetLibrary_Set_Union::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Union, B) == 0x000050, "Member 'BlueprintSetLibrary_Set_Union::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_Set_Union, Result) == 0x0000A0, "Member 'BlueprintSetLibrary_Set_Union::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintSetLibrary_SetSetPropertyByName \ +static_assert(alignof(BlueprintSetLibrary_SetSetPropertyByName) == 0x000008, "Wrong alignment on BlueprintSetLibrary_SetSetPropertyByName"); \ +static_assert(sizeof(BlueprintSetLibrary_SetSetPropertyByName) == 0x000060, "Wrong size on BlueprintSetLibrary_SetSetPropertyByName"); \ +static_assert(offsetof(BlueprintSetLibrary_SetSetPropertyByName, Object) == 0x000000, "Member 'BlueprintSetLibrary_SetSetPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_SetSetPropertyByName, PropertyName) == 0x000008, "Member 'BlueprintSetLibrary_SetSetPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(BlueprintSetLibrary_SetSetPropertyByName, Value) == 0x000010, "Member 'BlueprintSetLibrary_SetSetPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintSetLibrary \ +static_assert(alignof(UBlueprintSetLibrary) == 0x000008, "Wrong alignment on UBlueprintSetLibrary"); \ +static_assert(sizeof(UBlueprintSetLibrary) == 0x000028, "Wrong size on UBlueprintSetLibrary"); \ + +#define DUMPER7_ASSERTS_ACameraBlockingVolume \ +static_assert(alignof(ACameraBlockingVolume) == 0x000008, "Wrong alignment on ACameraBlockingVolume"); \ +static_assert(sizeof(ACameraBlockingVolume) == 0x0002D0, "Wrong size on ACameraBlockingVolume"); \ + +#define DUMPER7_ASSERTS_CameraModifier_BlueprintModifyCamera \ +static_assert(alignof(CameraModifier_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CameraModifier_BlueprintModifyCamera"); \ +static_assert(sizeof(CameraModifier_BlueprintModifyCamera) == 0x000078, "Wrong size on CameraModifier_BlueprintModifyCamera"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CameraModifier_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CameraModifier_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CameraModifier_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CameraModifier_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CameraModifier_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CameraModifier_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CameraModifier_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraModifier_BlueprintModifyPostProcess \ +static_assert(alignof(CameraModifier_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CameraModifier_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CameraModifier_BlueprintModifyPostProcess) == 0x000700, "Wrong size on CameraModifier_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CameraModifier_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CameraModifier_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CameraModifier_BlueprintModifyPostProcess, PostProcessSettings) == 0x000010, "Member 'CameraModifier_BlueprintModifyPostProcess::PostProcessSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraModifier_DisableModifier \ +static_assert(alignof(CameraModifier_DisableModifier) == 0x000001, "Wrong alignment on CameraModifier_DisableModifier"); \ +static_assert(sizeof(CameraModifier_DisableModifier) == 0x000001, "Wrong size on CameraModifier_DisableModifier"); \ +static_assert(offsetof(CameraModifier_DisableModifier, bImmediate) == 0x000000, "Member 'CameraModifier_DisableModifier::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraModifier_OnCameraOwnerDestroyed \ +static_assert(alignof(CameraModifier_OnCameraOwnerDestroyed) == 0x000008, "Wrong alignment on CameraModifier_OnCameraOwnerDestroyed"); \ +static_assert(sizeof(CameraModifier_OnCameraOwnerDestroyed) == 0x000008, "Wrong size on CameraModifier_OnCameraOwnerDestroyed"); \ +static_assert(offsetof(CameraModifier_OnCameraOwnerDestroyed, InOwner) == 0x000000, "Member 'CameraModifier_OnCameraOwnerDestroyed::InOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraModifier_GetViewTarget \ +static_assert(alignof(CameraModifier_GetViewTarget) == 0x000008, "Wrong alignment on CameraModifier_GetViewTarget"); \ +static_assert(sizeof(CameraModifier_GetViewTarget) == 0x000008, "Wrong size on CameraModifier_GetViewTarget"); \ +static_assert(offsetof(CameraModifier_GetViewTarget, ReturnValue) == 0x000000, "Member 'CameraModifier_GetViewTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraModifier_IsDisabled \ +static_assert(alignof(CameraModifier_IsDisabled) == 0x000001, "Wrong alignment on CameraModifier_IsDisabled"); \ +static_assert(sizeof(CameraModifier_IsDisabled) == 0x000001, "Wrong size on CameraModifier_IsDisabled"); \ +static_assert(offsetof(CameraModifier_IsDisabled, ReturnValue) == 0x000000, "Member 'CameraModifier_IsDisabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraModifier \ +static_assert(alignof(UCameraModifier) == 0x000008, "Wrong alignment on UCameraModifier"); \ +static_assert(sizeof(UCameraModifier) == 0x000048, "Wrong size on UCameraModifier"); \ +static_assert(offsetof(UCameraModifier, Priority) == 0x00002C, "Member 'UCameraModifier::Priority' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier, CameraOwner) == 0x000030, "Member 'UCameraModifier::CameraOwner' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier, AlphaInTime) == 0x000038, "Member 'UCameraModifier::AlphaInTime' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier, AlphaOutTime) == 0x00003C, "Member 'UCameraModifier::AlphaOutTime' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier, alpha) == 0x000040, "Member 'UCameraModifier::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraModifier_CameraShake \ +static_assert(alignof(UCameraModifier_CameraShake) == 0x000008, "Wrong alignment on UCameraModifier_CameraShake"); \ +static_assert(sizeof(UCameraModifier_CameraShake) == 0x0000B0, "Wrong size on UCameraModifier_CameraShake"); \ +static_assert(offsetof(UCameraModifier_CameraShake, ActiveShakes) == 0x000048, "Member 'UCameraModifier_CameraShake::ActiveShakes' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier_CameraShake, ExpiredPooledShakesMap) == 0x000058, "Member 'UCameraModifier_CameraShake::ExpiredPooledShakesMap' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier_CameraShake, SplitScreenShakeScale) == 0x0000A8, "Member 'UCameraModifier_CameraShake::SplitScreenShakeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeSourceComponent_StartCameraShake \ +static_assert(alignof(CameraShakeSourceComponent_StartCameraShake) == 0x000008, "Wrong alignment on CameraShakeSourceComponent_StartCameraShake"); \ +static_assert(sizeof(CameraShakeSourceComponent_StartCameraShake) == 0x000028, "Wrong size on CameraShakeSourceComponent_StartCameraShake"); \ +static_assert(offsetof(CameraShakeSourceComponent_StartCameraShake, InCameraShake) == 0x000000, "Member 'CameraShakeSourceComponent_StartCameraShake::InCameraShake' has a wrong offset!"); \ +static_assert(offsetof(CameraShakeSourceComponent_StartCameraShake, Scale) == 0x000008, "Member 'CameraShakeSourceComponent_StartCameraShake::Scale' has a wrong offset!"); \ +static_assert(offsetof(CameraShakeSourceComponent_StartCameraShake, PlaySpace) == 0x00000C, "Member 'CameraShakeSourceComponent_StartCameraShake::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(CameraShakeSourceComponent_StartCameraShake, UserPlaySpaceRot) == 0x000010, "Member 'CameraShakeSourceComponent_StartCameraShake::UserPlaySpaceRot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeSourceComponent_StopAllCameraShakes \ +static_assert(alignof(CameraShakeSourceComponent_StopAllCameraShakes) == 0x000001, "Wrong alignment on CameraShakeSourceComponent_StopAllCameraShakes"); \ +static_assert(sizeof(CameraShakeSourceComponent_StopAllCameraShakes) == 0x000001, "Wrong size on CameraShakeSourceComponent_StopAllCameraShakes"); \ +static_assert(offsetof(CameraShakeSourceComponent_StopAllCameraShakes, bImmediately) == 0x000000, "Member 'CameraShakeSourceComponent_StopAllCameraShakes::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeSourceComponent_StopAllCameraShakesOfType \ +static_assert(alignof(CameraShakeSourceComponent_StopAllCameraShakesOfType) == 0x000008, "Wrong alignment on CameraShakeSourceComponent_StopAllCameraShakesOfType"); \ +static_assert(sizeof(CameraShakeSourceComponent_StopAllCameraShakesOfType) == 0x000010, "Wrong size on CameraShakeSourceComponent_StopAllCameraShakesOfType"); \ +static_assert(offsetof(CameraShakeSourceComponent_StopAllCameraShakesOfType, InCameraShake) == 0x000000, "Member 'CameraShakeSourceComponent_StopAllCameraShakesOfType::InCameraShake' has a wrong offset!"); \ +static_assert(offsetof(CameraShakeSourceComponent_StopAllCameraShakesOfType, bImmediately) == 0x000008, "Member 'CameraShakeSourceComponent_StopAllCameraShakesOfType::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraShakeSourceComponent_GetAttenuationFactor \ +static_assert(alignof(CameraShakeSourceComponent_GetAttenuationFactor) == 0x000008, "Wrong alignment on CameraShakeSourceComponent_GetAttenuationFactor"); \ +static_assert(sizeof(CameraShakeSourceComponent_GetAttenuationFactor) == 0x000020, "Wrong size on CameraShakeSourceComponent_GetAttenuationFactor"); \ +static_assert(offsetof(CameraShakeSourceComponent_GetAttenuationFactor, Location) == 0x000000, "Member 'CameraShakeSourceComponent_GetAttenuationFactor::Location' has a wrong offset!"); \ +static_assert(offsetof(CameraShakeSourceComponent_GetAttenuationFactor, ReturnValue) == 0x000018, "Member 'CameraShakeSourceComponent_GetAttenuationFactor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShakeSourceComponent \ +static_assert(alignof(UCameraShakeSourceComponent) == 0x000010, "Wrong alignment on UCameraShakeSourceComponent"); \ +static_assert(sizeof(UCameraShakeSourceComponent) == 0x0002C0, "Wrong size on UCameraShakeSourceComponent"); \ +static_assert(offsetof(UCameraShakeSourceComponent, Attenuation) == 0x0002A0, "Member 'UCameraShakeSourceComponent::Attenuation' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeSourceComponent, InnerAttenuationRadius) == 0x0002A4, "Member 'UCameraShakeSourceComponent::InnerAttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeSourceComponent, OuterAttenuationRadius) == 0x0002A8, "Member 'UCameraShakeSourceComponent::OuterAttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeSourceComponent, CameraShake) == 0x0002B0, "Member 'UCameraShakeSourceComponent::CameraShake' has a wrong offset!"); \ +static_assert(offsetof(UCameraShakeSourceComponent, bAutoStart) == 0x0002B8, "Member 'UCameraShakeSourceComponent::bAutoStart' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_BugIt \ +static_assert(alignof(CheatManager_BugIt) == 0x000008, "Wrong alignment on CheatManager_BugIt"); \ +static_assert(sizeof(CheatManager_BugIt) == 0x000010, "Wrong size on CheatManager_BugIt"); \ +static_assert(offsetof(CheatManager_BugIt, ScreenShotDescription) == 0x000000, "Member 'CheatManager_BugIt::ScreenShotDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_BugItGo \ +static_assert(alignof(CheatManager_BugItGo) == 0x000004, "Wrong alignment on CheatManager_BugItGo"); \ +static_assert(sizeof(CheatManager_BugItGo) == 0x000018, "Wrong size on CheatManager_BugItGo"); \ +static_assert(offsetof(CheatManager_BugItGo, X) == 0x000000, "Member 'CheatManager_BugItGo::X' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItGo, Y) == 0x000004, "Member 'CheatManager_BugItGo::Y' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItGo, Z) == 0x000008, "Member 'CheatManager_BugItGo::Z' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItGo, Pitch) == 0x00000C, "Member 'CheatManager_BugItGo::Pitch' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItGo, Yaw) == 0x000010, "Member 'CheatManager_BugItGo::Yaw' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItGo, Roll) == 0x000014, "Member 'CheatManager_BugItGo::Roll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_BugItStringCreator \ +static_assert(alignof(CheatManager_BugItStringCreator) == 0x000008, "Wrong alignment on CheatManager_BugItStringCreator"); \ +static_assert(sizeof(CheatManager_BugItStringCreator) == 0x000050, "Wrong size on CheatManager_BugItStringCreator"); \ +static_assert(offsetof(CheatManager_BugItStringCreator, ViewLocation) == 0x000000, "Member 'CheatManager_BugItStringCreator::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItStringCreator, ViewRotation) == 0x000018, "Member 'CheatManager_BugItStringCreator::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItStringCreator, GoString) == 0x000030, "Member 'CheatManager_BugItStringCreator::GoString' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_BugItStringCreator, LocString) == 0x000040, "Member 'CheatManager_BugItStringCreator::LocString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_ChangeSize \ +static_assert(alignof(CheatManager_ChangeSize) == 0x000004, "Wrong alignment on CheatManager_ChangeSize"); \ +static_assert(sizeof(CheatManager_ChangeSize) == 0x000004, "Wrong size on CheatManager_ChangeSize"); \ +static_assert(offsetof(CheatManager_ChangeSize, F) == 0x000000, "Member 'CheatManager_ChangeSize::F' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_CheatScript \ +static_assert(alignof(CheatManager_CheatScript) == 0x000008, "Wrong alignment on CheatManager_CheatScript"); \ +static_assert(sizeof(CheatManager_CheatScript) == 0x000010, "Wrong size on CheatManager_CheatScript"); \ +static_assert(offsetof(CheatManager_CheatScript, ScriptName) == 0x000000, "Member 'CheatManager_CheatScript::ScriptName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DamageTarget \ +static_assert(alignof(CheatManager_DamageTarget) == 0x000004, "Wrong alignment on CheatManager_DamageTarget"); \ +static_assert(sizeof(CheatManager_DamageTarget) == 0x000004, "Wrong size on CheatManager_DamageTarget"); \ +static_assert(offsetof(CheatManager_DamageTarget, DamageAmount) == 0x000000, "Member 'CheatManager_DamageTarget::DamageAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DebugCapsuleSweepChannel \ +static_assert(alignof(CheatManager_DebugCapsuleSweepChannel) == 0x000001, "Wrong alignment on CheatManager_DebugCapsuleSweepChannel"); \ +static_assert(sizeof(CheatManager_DebugCapsuleSweepChannel) == 0x000001, "Wrong size on CheatManager_DebugCapsuleSweepChannel"); \ +static_assert(offsetof(CheatManager_DebugCapsuleSweepChannel, Channel) == 0x000000, "Member 'CheatManager_DebugCapsuleSweepChannel::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DebugCapsuleSweepComplex \ +static_assert(alignof(CheatManager_DebugCapsuleSweepComplex) == 0x000001, "Wrong alignment on CheatManager_DebugCapsuleSweepComplex"); \ +static_assert(sizeof(CheatManager_DebugCapsuleSweepComplex) == 0x000001, "Wrong size on CheatManager_DebugCapsuleSweepComplex"); \ +static_assert(offsetof(CheatManager_DebugCapsuleSweepComplex, bTraceComplex) == 0x000000, "Member 'CheatManager_DebugCapsuleSweepComplex::bTraceComplex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DebugCapsuleSweepSize \ +static_assert(alignof(CheatManager_DebugCapsuleSweepSize) == 0x000004, "Wrong alignment on CheatManager_DebugCapsuleSweepSize"); \ +static_assert(sizeof(CheatManager_DebugCapsuleSweepSize) == 0x000008, "Wrong size on CheatManager_DebugCapsuleSweepSize"); \ +static_assert(offsetof(CheatManager_DebugCapsuleSweepSize, HalfHeight) == 0x000000, "Member 'CheatManager_DebugCapsuleSweepSize::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_DebugCapsuleSweepSize, Radius) == 0x000004, "Member 'CheatManager_DebugCapsuleSweepSize::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DestroyAll \ +static_assert(alignof(CheatManager_DestroyAll) == 0x000008, "Wrong alignment on CheatManager_DestroyAll"); \ +static_assert(sizeof(CheatManager_DestroyAll) == 0x000008, "Wrong size on CheatManager_DestroyAll"); \ +static_assert(offsetof(CheatManager_DestroyAll, aClass) == 0x000000, "Member 'CheatManager_DestroyAll::aClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_DestroyPawns \ +static_assert(alignof(CheatManager_DestroyPawns) == 0x000008, "Wrong alignment on CheatManager_DestroyPawns"); \ +static_assert(sizeof(CheatManager_DestroyPawns) == 0x000008, "Wrong size on CheatManager_DestroyPawns"); \ +static_assert(offsetof(CheatManager_DestroyPawns, aClass) == 0x000000, "Member 'CheatManager_DestroyPawns::aClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_FreezeFrame \ +static_assert(alignof(CheatManager_FreezeFrame) == 0x000004, "Wrong alignment on CheatManager_FreezeFrame"); \ +static_assert(sizeof(CheatManager_FreezeFrame) == 0x000004, "Wrong size on CheatManager_FreezeFrame"); \ +static_assert(offsetof(CheatManager_FreezeFrame, Delay) == 0x000000, "Member 'CheatManager_FreezeFrame::Delay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_OnlyLoadLevel \ +static_assert(alignof(CheatManager_OnlyLoadLevel) == 0x000004, "Wrong alignment on CheatManager_OnlyLoadLevel"); \ +static_assert(sizeof(CheatManager_OnlyLoadLevel) == 0x000008, "Wrong size on CheatManager_OnlyLoadLevel"); \ +static_assert(offsetof(CheatManager_OnlyLoadLevel, PackageName) == 0x000000, "Member 'CheatManager_OnlyLoadLevel::PackageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_OnPlayerEndPlayed \ +static_assert(alignof(CheatManager_OnPlayerEndPlayed) == 0x000008, "Wrong alignment on CheatManager_OnPlayerEndPlayed"); \ +static_assert(sizeof(CheatManager_OnPlayerEndPlayed) == 0x000010, "Wrong size on CheatManager_OnPlayerEndPlayed"); \ +static_assert(offsetof(CheatManager_OnPlayerEndPlayed, Player) == 0x000000, "Member 'CheatManager_OnPlayerEndPlayed::Player' has a wrong offset!"); \ +static_assert(offsetof(CheatManager_OnPlayerEndPlayed, EndPlayReason) == 0x000008, "Member 'CheatManager_OnPlayerEndPlayed::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_Slomo \ +static_assert(alignof(CheatManager_Slomo) == 0x000004, "Wrong alignment on CheatManager_Slomo"); \ +static_assert(sizeof(CheatManager_Slomo) == 0x000004, "Wrong size on CheatManager_Slomo"); \ +static_assert(offsetof(CheatManager_Slomo, NewTimeDilation) == 0x000000, "Member 'CheatManager_Slomo::NewTimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_StreamLevelIn \ +static_assert(alignof(CheatManager_StreamLevelIn) == 0x000004, "Wrong alignment on CheatManager_StreamLevelIn"); \ +static_assert(sizeof(CheatManager_StreamLevelIn) == 0x000008, "Wrong size on CheatManager_StreamLevelIn"); \ +static_assert(offsetof(CheatManager_StreamLevelIn, PackageName) == 0x000000, "Member 'CheatManager_StreamLevelIn::PackageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_StreamLevelOut \ +static_assert(alignof(CheatManager_StreamLevelOut) == 0x000004, "Wrong alignment on CheatManager_StreamLevelOut"); \ +static_assert(sizeof(CheatManager_StreamLevelOut) == 0x000008, "Wrong size on CheatManager_StreamLevelOut"); \ +static_assert(offsetof(CheatManager_StreamLevelOut, PackageName) == 0x000000, "Member 'CheatManager_StreamLevelOut::PackageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_Summon \ +static_assert(alignof(CheatManager_Summon) == 0x000008, "Wrong alignment on CheatManager_Summon"); \ +static_assert(sizeof(CheatManager_Summon) == 0x000010, "Wrong size on CheatManager_Summon"); \ +static_assert(offsetof(CheatManager_Summon, ClassName) == 0x000000, "Member 'CheatManager_Summon::ClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_ViewActor \ +static_assert(alignof(CheatManager_ViewActor) == 0x000004, "Wrong alignment on CheatManager_ViewActor"); \ +static_assert(sizeof(CheatManager_ViewActor) == 0x000008, "Wrong size on CheatManager_ViewActor"); \ +static_assert(offsetof(CheatManager_ViewActor, ActorName) == 0x000000, "Member 'CheatManager_ViewActor::ActorName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_ViewClass \ +static_assert(alignof(CheatManager_ViewClass) == 0x000008, "Wrong alignment on CheatManager_ViewClass"); \ +static_assert(sizeof(CheatManager_ViewClass) == 0x000008, "Wrong size on CheatManager_ViewClass"); \ +static_assert(offsetof(CheatManager_ViewClass, DesiredClass) == 0x000000, "Member 'CheatManager_ViewClass::DesiredClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_ViewPlayer \ +static_assert(alignof(CheatManager_ViewPlayer) == 0x000008, "Wrong alignment on CheatManager_ViewPlayer"); \ +static_assert(sizeof(CheatManager_ViewPlayer) == 0x000010, "Wrong size on CheatManager_ViewPlayer"); \ +static_assert(offsetof(CheatManager_ViewPlayer, S) == 0x000000, "Member 'CheatManager_ViewPlayer::S' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheatManager_GetPlayerController \ +static_assert(alignof(CheatManager_GetPlayerController) == 0x000008, "Wrong alignment on CheatManager_GetPlayerController"); \ +static_assert(sizeof(CheatManager_GetPlayerController) == 0x000008, "Wrong size on CheatManager_GetPlayerController"); \ +static_assert(offsetof(CheatManager_GetPlayerController, ReturnValue) == 0x000000, "Member 'CheatManager_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheatManager \ +static_assert(alignof(UCheatManager) == 0x000008, "Wrong alignment on UCheatManager"); \ +static_assert(sizeof(UCheatManager) == 0x000088, "Wrong size on UCheatManager"); \ +static_assert(offsetof(UCheatManager, DebugCameraControllerRef) == 0x000028, "Member 'UCheatManager::DebugCameraControllerRef' has a wrong offset!"); \ +static_assert(offsetof(UCheatManager, DebugCameraControllerClass) == 0x000030, "Member 'UCheatManager::DebugCameraControllerClass' has a wrong offset!"); \ +static_assert(offsetof(UCheatManager, CheatManagerExtensions) == 0x000078, "Member 'UCheatManager::CheatManagerExtensions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPluginCommandlet \ +static_assert(alignof(UPluginCommandlet) == 0x000008, "Wrong alignment on UPluginCommandlet"); \ +static_assert(sizeof(UPluginCommandlet) == 0x0000A0, "Wrong size on UPluginCommandlet"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetArrowColor \ +static_assert(alignof(ArrowComponent_SetArrowColor) == 0x000004, "Wrong alignment on ArrowComponent_SetArrowColor"); \ +static_assert(sizeof(ArrowComponent_SetArrowColor) == 0x000010, "Wrong size on ArrowComponent_SetArrowColor"); \ +static_assert(offsetof(ArrowComponent_SetArrowColor, NewColor) == 0x000000, "Member 'ArrowComponent_SetArrowColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetArrowFColor \ +static_assert(alignof(ArrowComponent_SetArrowFColor) == 0x000004, "Wrong alignment on ArrowComponent_SetArrowFColor"); \ +static_assert(sizeof(ArrowComponent_SetArrowFColor) == 0x000004, "Wrong size on ArrowComponent_SetArrowFColor"); \ +static_assert(offsetof(ArrowComponent_SetArrowFColor, NewColor) == 0x000000, "Member 'ArrowComponent_SetArrowFColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetArrowLength \ +static_assert(alignof(ArrowComponent_SetArrowLength) == 0x000004, "Wrong alignment on ArrowComponent_SetArrowLength"); \ +static_assert(sizeof(ArrowComponent_SetArrowLength) == 0x000004, "Wrong size on ArrowComponent_SetArrowLength"); \ +static_assert(offsetof(ArrowComponent_SetArrowLength, NewLength) == 0x000000, "Member 'ArrowComponent_SetArrowLength::NewLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetArrowSize \ +static_assert(alignof(ArrowComponent_SetArrowSize) == 0x000004, "Wrong alignment on ArrowComponent_SetArrowSize"); \ +static_assert(sizeof(ArrowComponent_SetArrowSize) == 0x000004, "Wrong size on ArrowComponent_SetArrowSize"); \ +static_assert(offsetof(ArrowComponent_SetArrowSize, NewSize) == 0x000000, "Member 'ArrowComponent_SetArrowSize::NewSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetIsScreenSizeScaled \ +static_assert(alignof(ArrowComponent_SetIsScreenSizeScaled) == 0x000001, "Wrong alignment on ArrowComponent_SetIsScreenSizeScaled"); \ +static_assert(sizeof(ArrowComponent_SetIsScreenSizeScaled) == 0x000001, "Wrong size on ArrowComponent_SetIsScreenSizeScaled"); \ +static_assert(offsetof(ArrowComponent_SetIsScreenSizeScaled, bNewValue) == 0x000000, "Member 'ArrowComponent_SetIsScreenSizeScaled::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetScreenSize \ +static_assert(alignof(ArrowComponent_SetScreenSize) == 0x000004, "Wrong alignment on ArrowComponent_SetScreenSize"); \ +static_assert(sizeof(ArrowComponent_SetScreenSize) == 0x000004, "Wrong size on ArrowComponent_SetScreenSize"); \ +static_assert(offsetof(ArrowComponent_SetScreenSize, NewScreenSize) == 0x000000, "Member 'ArrowComponent_SetScreenSize::NewScreenSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetTreatAsASprite \ +static_assert(alignof(ArrowComponent_SetTreatAsASprite) == 0x000001, "Wrong alignment on ArrowComponent_SetTreatAsASprite"); \ +static_assert(sizeof(ArrowComponent_SetTreatAsASprite) == 0x000001, "Wrong size on ArrowComponent_SetTreatAsASprite"); \ +static_assert(offsetof(ArrowComponent_SetTreatAsASprite, bNewValue) == 0x000000, "Member 'ArrowComponent_SetTreatAsASprite::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ArrowComponent_SetUseInEditorScaling \ +static_assert(alignof(ArrowComponent_SetUseInEditorScaling) == 0x000001, "Wrong alignment on ArrowComponent_SetUseInEditorScaling"); \ +static_assert(sizeof(ArrowComponent_SetUseInEditorScaling) == 0x000001, "Wrong size on ArrowComponent_SetUseInEditorScaling"); \ +static_assert(offsetof(ArrowComponent_SetUseInEditorScaling, bNewValue) == 0x000000, "Member 'ArrowComponent_SetUseInEditorScaling::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UArrowComponent \ +static_assert(alignof(UArrowComponent) == 0x000010, "Wrong alignment on UArrowComponent"); \ +static_assert(sizeof(UArrowComponent) == 0x000590, "Wrong size on UArrowComponent"); \ +static_assert(offsetof(UArrowComponent, ArrowColor) == 0x000570, "Member 'UArrowComponent::ArrowColor' has a wrong offset!"); \ +static_assert(offsetof(UArrowComponent, ArrowSize) == 0x000574, "Member 'UArrowComponent::ArrowSize' has a wrong offset!"); \ +static_assert(offsetof(UArrowComponent, ArrowLength) == 0x000578, "Member 'UArrowComponent::ArrowLength' has a wrong offset!"); \ +static_assert(offsetof(UArrowComponent, ScreenSize) == 0x00057C, "Member 'UArrowComponent::ScreenSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoundsCopyComponent \ +static_assert(alignof(UBoundsCopyComponent) == 0x000010, "Wrong alignment on UBoundsCopyComponent"); \ +static_assert(sizeof(UBoundsCopyComponent) == 0x000140, "Wrong size on UBoundsCopyComponent"); \ +static_assert(offsetof(UBoundsCopyComponent, BoundsSourceActor) == 0x0000A0, "Member 'UBoundsCopyComponent::BoundsSourceActor' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bUseCollidingComponentsForSourceBounds) == 0x0000C8, "Member 'UBoundsCopyComponent::bUseCollidingComponentsForSourceBounds' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bKeepOwnBoundsScale) == 0x0000C9, "Member 'UBoundsCopyComponent::bKeepOwnBoundsScale' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bUseCollidingComponentsForOwnBounds) == 0x0000CA, "Member 'UBoundsCopyComponent::bUseCollidingComponentsForOwnBounds' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, PostTransform) == 0x0000D0, "Member 'UBoundsCopyComponent::PostTransform' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bCopyXBounds) == 0x000130, "Member 'UBoundsCopyComponent::bCopyXBounds' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bCopyYBounds) == 0x000131, "Member 'UBoundsCopyComponent::bCopyYBounds' has a wrong offset!"); \ +static_assert(offsetof(UBoundsCopyComponent, bCopyZBounds) == 0x000132, "Member 'UBoundsCopyComponent::bCopyZBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_SetCapsuleHalfHeight \ +static_assert(alignof(CapsuleComponent_SetCapsuleHalfHeight) == 0x000004, "Wrong alignment on CapsuleComponent_SetCapsuleHalfHeight"); \ +static_assert(sizeof(CapsuleComponent_SetCapsuleHalfHeight) == 0x000008, "Wrong size on CapsuleComponent_SetCapsuleHalfHeight"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleHalfHeight, HalfHeight) == 0x000000, "Member 'CapsuleComponent_SetCapsuleHalfHeight::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleHalfHeight, bUpdateOverlaps) == 0x000004, "Member 'CapsuleComponent_SetCapsuleHalfHeight::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_SetCapsuleRadius \ +static_assert(alignof(CapsuleComponent_SetCapsuleRadius) == 0x000004, "Wrong alignment on CapsuleComponent_SetCapsuleRadius"); \ +static_assert(sizeof(CapsuleComponent_SetCapsuleRadius) == 0x000008, "Wrong size on CapsuleComponent_SetCapsuleRadius"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleRadius, Radius) == 0x000000, "Member 'CapsuleComponent_SetCapsuleRadius::Radius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleRadius, bUpdateOverlaps) == 0x000004, "Member 'CapsuleComponent_SetCapsuleRadius::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_SetCapsuleSize \ +static_assert(alignof(CapsuleComponent_SetCapsuleSize) == 0x000004, "Wrong alignment on CapsuleComponent_SetCapsuleSize"); \ +static_assert(sizeof(CapsuleComponent_SetCapsuleSize) == 0x00000C, "Wrong size on CapsuleComponent_SetCapsuleSize"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleSize, InRadius) == 0x000000, "Member 'CapsuleComponent_SetCapsuleSize::InRadius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleSize, InHalfHeight) == 0x000004, "Member 'CapsuleComponent_SetCapsuleSize::InHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_SetCapsuleSize, bUpdateOverlaps) == 0x000008, "Member 'CapsuleComponent_SetCapsuleSize::bUpdateOverlaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetScaledCapsuleHalfHeight \ +static_assert(alignof(CapsuleComponent_GetScaledCapsuleHalfHeight) == 0x000004, "Wrong alignment on CapsuleComponent_GetScaledCapsuleHalfHeight"); \ +static_assert(sizeof(CapsuleComponent_GetScaledCapsuleHalfHeight) == 0x000004, "Wrong size on CapsuleComponent_GetScaledCapsuleHalfHeight"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleHalfHeight, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetScaledCapsuleHalfHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere \ +static_assert(alignof(CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere) == 0x000004, "Wrong alignment on CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere"); \ +static_assert(sizeof(CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere) == 0x000004, "Wrong size on CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetScaledCapsuleRadius \ +static_assert(alignof(CapsuleComponent_GetScaledCapsuleRadius) == 0x000004, "Wrong alignment on CapsuleComponent_GetScaledCapsuleRadius"); \ +static_assert(sizeof(CapsuleComponent_GetScaledCapsuleRadius) == 0x000004, "Wrong size on CapsuleComponent_GetScaledCapsuleRadius"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleRadius, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetScaledCapsuleRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetScaledCapsuleSize \ +static_assert(alignof(CapsuleComponent_GetScaledCapsuleSize) == 0x000004, "Wrong alignment on CapsuleComponent_GetScaledCapsuleSize"); \ +static_assert(sizeof(CapsuleComponent_GetScaledCapsuleSize) == 0x000008, "Wrong size on CapsuleComponent_GetScaledCapsuleSize"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleSize, OutRadius) == 0x000000, "Member 'CapsuleComponent_GetScaledCapsuleSize::OutRadius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleSize, OutHalfHeight) == 0x000004, "Member 'CapsuleComponent_GetScaledCapsuleSize::OutHalfHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere \ +static_assert(alignof(CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere) == 0x000004, "Wrong alignment on CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere"); \ +static_assert(sizeof(CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere) == 0x000008, "Wrong size on CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere, OutRadius) == 0x000000, "Member 'CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere::OutRadius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere, OutHalfHeightWithoutHemisphere) == 0x000004, "Member 'CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere::OutHalfHeightWithoutHemisphere' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetShapeScale \ +static_assert(alignof(CapsuleComponent_GetShapeScale) == 0x000004, "Wrong alignment on CapsuleComponent_GetShapeScale"); \ +static_assert(sizeof(CapsuleComponent_GetShapeScale) == 0x000004, "Wrong size on CapsuleComponent_GetShapeScale"); \ +static_assert(offsetof(CapsuleComponent_GetShapeScale, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetShapeScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetUnscaledCapsuleHalfHeight \ +static_assert(alignof(CapsuleComponent_GetUnscaledCapsuleHalfHeight) == 0x000004, "Wrong alignment on CapsuleComponent_GetUnscaledCapsuleHalfHeight"); \ +static_assert(sizeof(CapsuleComponent_GetUnscaledCapsuleHalfHeight) == 0x000004, "Wrong size on CapsuleComponent_GetUnscaledCapsuleHalfHeight"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleHalfHeight, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetUnscaledCapsuleHalfHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere \ +static_assert(alignof(CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere) == 0x000004, "Wrong alignment on CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere"); \ +static_assert(sizeof(CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere) == 0x000004, "Wrong size on CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetUnscaledCapsuleRadius \ +static_assert(alignof(CapsuleComponent_GetUnscaledCapsuleRadius) == 0x000004, "Wrong alignment on CapsuleComponent_GetUnscaledCapsuleRadius"); \ +static_assert(sizeof(CapsuleComponent_GetUnscaledCapsuleRadius) == 0x000004, "Wrong size on CapsuleComponent_GetUnscaledCapsuleRadius"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleRadius, ReturnValue) == 0x000000, "Member 'CapsuleComponent_GetUnscaledCapsuleRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetUnscaledCapsuleSize \ +static_assert(alignof(CapsuleComponent_GetUnscaledCapsuleSize) == 0x000004, "Wrong alignment on CapsuleComponent_GetUnscaledCapsuleSize"); \ +static_assert(sizeof(CapsuleComponent_GetUnscaledCapsuleSize) == 0x000008, "Wrong size on CapsuleComponent_GetUnscaledCapsuleSize"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleSize, OutRadius) == 0x000000, "Member 'CapsuleComponent_GetUnscaledCapsuleSize::OutRadius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleSize, OutHalfHeight) == 0x000004, "Member 'CapsuleComponent_GetUnscaledCapsuleSize::OutHalfHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere \ +static_assert(alignof(CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere) == 0x000004, "Wrong alignment on CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere"); \ +static_assert(sizeof(CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere) == 0x000008, "Wrong size on CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere, OutRadius) == 0x000000, "Member 'CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere::OutRadius' has a wrong offset!"); \ +static_assert(offsetof(CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere, OutHalfHeightWithoutHemisphere) == 0x000004, "Member 'CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere::OutHalfHeightWithoutHemisphere' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCapsuleComponent \ +static_assert(alignof(UCapsuleComponent) == 0x000010, "Wrong alignment on UCapsuleComponent"); \ +static_assert(sizeof(UCapsuleComponent) == 0x0005A0, "Wrong size on UCapsuleComponent"); \ +static_assert(offsetof(UCapsuleComponent, CapsuleHalfHeight) == 0x000590, "Member 'UCapsuleComponent::CapsuleHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(UCapsuleComponent, CapsuleRadius) == 0x000594, "Member 'UCapsuleComponent::CapsuleRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_AddForce \ +static_assert(alignof(CharacterMovementComponent_AddForce) == 0x000008, "Wrong alignment on CharacterMovementComponent_AddForce"); \ +static_assert(sizeof(CharacterMovementComponent_AddForce) == 0x000018, "Wrong size on CharacterMovementComponent_AddForce"); \ +static_assert(offsetof(CharacterMovementComponent_AddForce, Force) == 0x000000, "Member 'CharacterMovementComponent_AddForce::Force' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_AddImpulse \ +static_assert(alignof(CharacterMovementComponent_AddImpulse) == 0x000008, "Wrong alignment on CharacterMovementComponent_AddImpulse"); \ +static_assert(sizeof(CharacterMovementComponent_AddImpulse) == 0x000020, "Wrong size on CharacterMovementComponent_AddImpulse"); \ +static_assert(offsetof(CharacterMovementComponent_AddImpulse, Impulse) == 0x000000, "Member 'CharacterMovementComponent_AddImpulse::Impulse' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_AddImpulse, bVelocityChange) == 0x000018, "Member 'CharacterMovementComponent_AddImpulse::bVelocityChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_CalcVelocity \ +static_assert(alignof(CharacterMovementComponent_CalcVelocity) == 0x000004, "Wrong alignment on CharacterMovementComponent_CalcVelocity"); \ +static_assert(sizeof(CharacterMovementComponent_CalcVelocity) == 0x000010, "Wrong size on CharacterMovementComponent_CalcVelocity"); \ +static_assert(offsetof(CharacterMovementComponent_CalcVelocity, DeltaTime) == 0x000000, "Member 'CharacterMovementComponent_CalcVelocity::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CalcVelocity, Friction) == 0x000004, "Member 'CharacterMovementComponent_CalcVelocity::Friction' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CalcVelocity, bFluid) == 0x000008, "Member 'CharacterMovementComponent_CalcVelocity::bFluid' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CalcVelocity, BrakingDeceleration) == 0x00000C, "Member 'CharacterMovementComponent_CalcVelocity::BrakingDeceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_CapsuleTouched \ +static_assert(alignof(CharacterMovementComponent_CapsuleTouched) == 0x000008, "Wrong alignment on CharacterMovementComponent_CapsuleTouched"); \ +static_assert(sizeof(CharacterMovementComponent_CapsuleTouched) == 0x000108, "Wrong size on CharacterMovementComponent_CapsuleTouched"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, OverlappedComp) == 0x000000, "Member 'CharacterMovementComponent_CapsuleTouched::OverlappedComp' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, Other) == 0x000008, "Member 'CharacterMovementComponent_CapsuleTouched::Other' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, OtherComp) == 0x000010, "Member 'CharacterMovementComponent_CapsuleTouched::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, OtherBodyIndex) == 0x000018, "Member 'CharacterMovementComponent_CapsuleTouched::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, bFromSweep) == 0x00001C, "Member 'CharacterMovementComponent_CapsuleTouched::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_CapsuleTouched, SweepResult) == 0x000020, "Member 'CharacterMovementComponent_CapsuleTouched::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetAvoidanceEnabled \ +static_assert(alignof(CharacterMovementComponent_SetAvoidanceEnabled) == 0x000001, "Wrong alignment on CharacterMovementComponent_SetAvoidanceEnabled"); \ +static_assert(sizeof(CharacterMovementComponent_SetAvoidanceEnabled) == 0x000001, "Wrong size on CharacterMovementComponent_SetAvoidanceEnabled"); \ +static_assert(offsetof(CharacterMovementComponent_SetAvoidanceEnabled, bEnable) == 0x000000, "Member 'CharacterMovementComponent_SetAvoidanceEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetAvoidanceGroup \ +static_assert(alignof(CharacterMovementComponent_SetAvoidanceGroup) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetAvoidanceGroup"); \ +static_assert(sizeof(CharacterMovementComponent_SetAvoidanceGroup) == 0x000004, "Wrong size on CharacterMovementComponent_SetAvoidanceGroup"); \ +static_assert(offsetof(CharacterMovementComponent_SetAvoidanceGroup, GroupFlags) == 0x000000, "Member 'CharacterMovementComponent_SetAvoidanceGroup::GroupFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetAvoidanceGroupMask \ +static_assert(alignof(CharacterMovementComponent_SetAvoidanceGroupMask) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetAvoidanceGroupMask"); \ +static_assert(sizeof(CharacterMovementComponent_SetAvoidanceGroupMask) == 0x000004, "Wrong size on CharacterMovementComponent_SetAvoidanceGroupMask"); \ +static_assert(offsetof(CharacterMovementComponent_SetAvoidanceGroupMask, GroupMask) == 0x000000, "Member 'CharacterMovementComponent_SetAvoidanceGroupMask::GroupMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetCrouchedHalfHeight \ +static_assert(alignof(CharacterMovementComponent_SetCrouchedHalfHeight) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetCrouchedHalfHeight"); \ +static_assert(sizeof(CharacterMovementComponent_SetCrouchedHalfHeight) == 0x000004, "Wrong size on CharacterMovementComponent_SetCrouchedHalfHeight"); \ +static_assert(offsetof(CharacterMovementComponent_SetCrouchedHalfHeight, NewValue) == 0x000000, "Member 'CharacterMovementComponent_SetCrouchedHalfHeight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetGroupsToAvoid \ +static_assert(alignof(CharacterMovementComponent_SetGroupsToAvoid) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetGroupsToAvoid"); \ +static_assert(sizeof(CharacterMovementComponent_SetGroupsToAvoid) == 0x000004, "Wrong size on CharacterMovementComponent_SetGroupsToAvoid"); \ +static_assert(offsetof(CharacterMovementComponent_SetGroupsToAvoid, GroupFlags) == 0x000000, "Member 'CharacterMovementComponent_SetGroupsToAvoid::GroupFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetGroupsToAvoidMask \ +static_assert(alignof(CharacterMovementComponent_SetGroupsToAvoidMask) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetGroupsToAvoidMask"); \ +static_assert(sizeof(CharacterMovementComponent_SetGroupsToAvoidMask) == 0x000004, "Wrong size on CharacterMovementComponent_SetGroupsToAvoidMask"); \ +static_assert(offsetof(CharacterMovementComponent_SetGroupsToAvoidMask, GroupMask) == 0x000000, "Member 'CharacterMovementComponent_SetGroupsToAvoidMask::GroupMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetGroupsToIgnore \ +static_assert(alignof(CharacterMovementComponent_SetGroupsToIgnore) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetGroupsToIgnore"); \ +static_assert(sizeof(CharacterMovementComponent_SetGroupsToIgnore) == 0x000004, "Wrong size on CharacterMovementComponent_SetGroupsToIgnore"); \ +static_assert(offsetof(CharacterMovementComponent_SetGroupsToIgnore, GroupFlags) == 0x000000, "Member 'CharacterMovementComponent_SetGroupsToIgnore::GroupFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetGroupsToIgnoreMask \ +static_assert(alignof(CharacterMovementComponent_SetGroupsToIgnoreMask) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetGroupsToIgnoreMask"); \ +static_assert(sizeof(CharacterMovementComponent_SetGroupsToIgnoreMask) == 0x000004, "Wrong size on CharacterMovementComponent_SetGroupsToIgnoreMask"); \ +static_assert(offsetof(CharacterMovementComponent_SetGroupsToIgnoreMask, GroupMask) == 0x000000, "Member 'CharacterMovementComponent_SetGroupsToIgnoreMask::GroupMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetMovementMode \ +static_assert(alignof(CharacterMovementComponent_SetMovementMode) == 0x000001, "Wrong alignment on CharacterMovementComponent_SetMovementMode"); \ +static_assert(sizeof(CharacterMovementComponent_SetMovementMode) == 0x000002, "Wrong size on CharacterMovementComponent_SetMovementMode"); \ +static_assert(offsetof(CharacterMovementComponent_SetMovementMode, NewMovementMode) == 0x000000, "Member 'CharacterMovementComponent_SetMovementMode::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_SetMovementMode, NewCustomMode) == 0x000001, "Member 'CharacterMovementComponent_SetMovementMode::NewCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetWalkableFloorAngle \ +static_assert(alignof(CharacterMovementComponent_SetWalkableFloorAngle) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetWalkableFloorAngle"); \ +static_assert(sizeof(CharacterMovementComponent_SetWalkableFloorAngle) == 0x000004, "Wrong size on CharacterMovementComponent_SetWalkableFloorAngle"); \ +static_assert(offsetof(CharacterMovementComponent_SetWalkableFloorAngle, InWalkableFloorAngle) == 0x000000, "Member 'CharacterMovementComponent_SetWalkableFloorAngle::InWalkableFloorAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_SetWalkableFloorZ \ +static_assert(alignof(CharacterMovementComponent_SetWalkableFloorZ) == 0x000004, "Wrong alignment on CharacterMovementComponent_SetWalkableFloorZ"); \ +static_assert(sizeof(CharacterMovementComponent_SetWalkableFloorZ) == 0x000004, "Wrong size on CharacterMovementComponent_SetWalkableFloorZ"); \ +static_assert(offsetof(CharacterMovementComponent_SetWalkableFloorZ, InWalkableFloorZ) == 0x000000, "Member 'CharacterMovementComponent_SetWalkableFloorZ::InWalkableFloorZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetAnalogInputModifier \ +static_assert(alignof(CharacterMovementComponent_GetAnalogInputModifier) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetAnalogInputModifier"); \ +static_assert(sizeof(CharacterMovementComponent_GetAnalogInputModifier) == 0x000004, "Wrong size on CharacterMovementComponent_GetAnalogInputModifier"); \ +static_assert(offsetof(CharacterMovementComponent_GetAnalogInputModifier, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetAnalogInputModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetCharacterOwner \ +static_assert(alignof(CharacterMovementComponent_GetCharacterOwner) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetCharacterOwner"); \ +static_assert(sizeof(CharacterMovementComponent_GetCharacterOwner) == 0x000008, "Wrong size on CharacterMovementComponent_GetCharacterOwner"); \ +static_assert(offsetof(CharacterMovementComponent_GetCharacterOwner, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetCharacterOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetCrouchedHalfHeight \ +static_assert(alignof(CharacterMovementComponent_GetCrouchedHalfHeight) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetCrouchedHalfHeight"); \ +static_assert(sizeof(CharacterMovementComponent_GetCrouchedHalfHeight) == 0x000004, "Wrong size on CharacterMovementComponent_GetCrouchedHalfHeight"); \ +static_assert(offsetof(CharacterMovementComponent_GetCrouchedHalfHeight, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetCrouchedHalfHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetCurrentAcceleration \ +static_assert(alignof(CharacterMovementComponent_GetCurrentAcceleration) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetCurrentAcceleration"); \ +static_assert(sizeof(CharacterMovementComponent_GetCurrentAcceleration) == 0x000018, "Wrong size on CharacterMovementComponent_GetCurrentAcceleration"); \ +static_assert(offsetof(CharacterMovementComponent_GetCurrentAcceleration, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetCurrentAcceleration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetImpartedMovementBaseVelocity \ +static_assert(alignof(CharacterMovementComponent_GetImpartedMovementBaseVelocity) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetImpartedMovementBaseVelocity"); \ +static_assert(sizeof(CharacterMovementComponent_GetImpartedMovementBaseVelocity) == 0x000018, "Wrong size on CharacterMovementComponent_GetImpartedMovementBaseVelocity"); \ +static_assert(offsetof(CharacterMovementComponent_GetImpartedMovementBaseVelocity, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetImpartedMovementBaseVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetLastUpdateLocation \ +static_assert(alignof(CharacterMovementComponent_GetLastUpdateLocation) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetLastUpdateLocation"); \ +static_assert(sizeof(CharacterMovementComponent_GetLastUpdateLocation) == 0x000018, "Wrong size on CharacterMovementComponent_GetLastUpdateLocation"); \ +static_assert(offsetof(CharacterMovementComponent_GetLastUpdateLocation, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetLastUpdateLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetLastUpdateRequestedVelocity \ +static_assert(alignof(CharacterMovementComponent_GetLastUpdateRequestedVelocity) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetLastUpdateRequestedVelocity"); \ +static_assert(sizeof(CharacterMovementComponent_GetLastUpdateRequestedVelocity) == 0x000018, "Wrong size on CharacterMovementComponent_GetLastUpdateRequestedVelocity"); \ +static_assert(offsetof(CharacterMovementComponent_GetLastUpdateRequestedVelocity, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetLastUpdateRequestedVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetLastUpdateRotation \ +static_assert(alignof(CharacterMovementComponent_GetLastUpdateRotation) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetLastUpdateRotation"); \ +static_assert(sizeof(CharacterMovementComponent_GetLastUpdateRotation) == 0x000018, "Wrong size on CharacterMovementComponent_GetLastUpdateRotation"); \ +static_assert(offsetof(CharacterMovementComponent_GetLastUpdateRotation, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetLastUpdateRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetLastUpdateVelocity \ +static_assert(alignof(CharacterMovementComponent_GetLastUpdateVelocity) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetLastUpdateVelocity"); \ +static_assert(sizeof(CharacterMovementComponent_GetLastUpdateVelocity) == 0x000018, "Wrong size on CharacterMovementComponent_GetLastUpdateVelocity"); \ +static_assert(offsetof(CharacterMovementComponent_GetLastUpdateVelocity, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetLastUpdateVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMaxAcceleration \ +static_assert(alignof(CharacterMovementComponent_GetMaxAcceleration) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetMaxAcceleration"); \ +static_assert(sizeof(CharacterMovementComponent_GetMaxAcceleration) == 0x000004, "Wrong size on CharacterMovementComponent_GetMaxAcceleration"); \ +static_assert(offsetof(CharacterMovementComponent_GetMaxAcceleration, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMaxAcceleration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMaxBrakingDeceleration \ +static_assert(alignof(CharacterMovementComponent_GetMaxBrakingDeceleration) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetMaxBrakingDeceleration"); \ +static_assert(sizeof(CharacterMovementComponent_GetMaxBrakingDeceleration) == 0x000004, "Wrong size on CharacterMovementComponent_GetMaxBrakingDeceleration"); \ +static_assert(offsetof(CharacterMovementComponent_GetMaxBrakingDeceleration, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMaxBrakingDeceleration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMaxJumpHeight \ +static_assert(alignof(CharacterMovementComponent_GetMaxJumpHeight) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetMaxJumpHeight"); \ +static_assert(sizeof(CharacterMovementComponent_GetMaxJumpHeight) == 0x000004, "Wrong size on CharacterMovementComponent_GetMaxJumpHeight"); \ +static_assert(offsetof(CharacterMovementComponent_GetMaxJumpHeight, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMaxJumpHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMaxJumpHeightWithJumpTime \ +static_assert(alignof(CharacterMovementComponent_GetMaxJumpHeightWithJumpTime) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetMaxJumpHeightWithJumpTime"); \ +static_assert(sizeof(CharacterMovementComponent_GetMaxJumpHeightWithJumpTime) == 0x000004, "Wrong size on CharacterMovementComponent_GetMaxJumpHeightWithJumpTime"); \ +static_assert(offsetof(CharacterMovementComponent_GetMaxJumpHeightWithJumpTime, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMaxJumpHeightWithJumpTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMinAnalogSpeed \ +static_assert(alignof(CharacterMovementComponent_GetMinAnalogSpeed) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetMinAnalogSpeed"); \ +static_assert(sizeof(CharacterMovementComponent_GetMinAnalogSpeed) == 0x000004, "Wrong size on CharacterMovementComponent_GetMinAnalogSpeed"); \ +static_assert(offsetof(CharacterMovementComponent_GetMinAnalogSpeed, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMinAnalogSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetMovementBase \ +static_assert(alignof(CharacterMovementComponent_GetMovementBase) == 0x000008, "Wrong alignment on CharacterMovementComponent_GetMovementBase"); \ +static_assert(sizeof(CharacterMovementComponent_GetMovementBase) == 0x000008, "Wrong size on CharacterMovementComponent_GetMovementBase"); \ +static_assert(offsetof(CharacterMovementComponent_GetMovementBase, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetMovementBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetPerchRadiusThreshold \ +static_assert(alignof(CharacterMovementComponent_GetPerchRadiusThreshold) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetPerchRadiusThreshold"); \ +static_assert(sizeof(CharacterMovementComponent_GetPerchRadiusThreshold) == 0x000004, "Wrong size on CharacterMovementComponent_GetPerchRadiusThreshold"); \ +static_assert(offsetof(CharacterMovementComponent_GetPerchRadiusThreshold, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetPerchRadiusThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_GetValidPerchRadius \ +static_assert(alignof(CharacterMovementComponent_GetValidPerchRadius) == 0x000004, "Wrong alignment on CharacterMovementComponent_GetValidPerchRadius"); \ +static_assert(sizeof(CharacterMovementComponent_GetValidPerchRadius) == 0x000004, "Wrong size on CharacterMovementComponent_GetValidPerchRadius"); \ +static_assert(offsetof(CharacterMovementComponent_GetValidPerchRadius, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_GetValidPerchRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_IsWalkable \ +static_assert(alignof(CharacterMovementComponent_IsWalkable) == 0x000008, "Wrong alignment on CharacterMovementComponent_IsWalkable"); \ +static_assert(sizeof(CharacterMovementComponent_IsWalkable) == 0x0000F0, "Wrong size on CharacterMovementComponent_IsWalkable"); \ +static_assert(offsetof(CharacterMovementComponent_IsWalkable, Hit) == 0x000000, "Member 'CharacterMovementComponent_IsWalkable::Hit' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_IsWalkable, ReturnValue) == 0x0000E8, "Member 'CharacterMovementComponent_IsWalkable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_IsWalking \ +static_assert(alignof(CharacterMovementComponent_IsWalking) == 0x000001, "Wrong alignment on CharacterMovementComponent_IsWalking"); \ +static_assert(sizeof(CharacterMovementComponent_IsWalking) == 0x000001, "Wrong size on CharacterMovementComponent_IsWalking"); \ +static_assert(offsetof(CharacterMovementComponent_IsWalking, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_IsWalking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_K2_ComputeFloorDist \ +static_assert(alignof(CharacterMovementComponent_K2_ComputeFloorDist) == 0x000008, "Wrong alignment on CharacterMovementComponent_K2_ComputeFloorDist"); \ +static_assert(sizeof(CharacterMovementComponent_K2_ComputeFloorDist) == 0x000120, "Wrong size on CharacterMovementComponent_K2_ComputeFloorDist"); \ +static_assert(offsetof(CharacterMovementComponent_K2_ComputeFloorDist, CapsuleLocation) == 0x000000, "Member 'CharacterMovementComponent_K2_ComputeFloorDist::CapsuleLocation' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_K2_ComputeFloorDist, LineDistance) == 0x000018, "Member 'CharacterMovementComponent_K2_ComputeFloorDist::LineDistance' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_K2_ComputeFloorDist, SweepDistance) == 0x00001C, "Member 'CharacterMovementComponent_K2_ComputeFloorDist::SweepDistance' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_K2_ComputeFloorDist, SweepRadius) == 0x000020, "Member 'CharacterMovementComponent_K2_ComputeFloorDist::SweepRadius' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_K2_ComputeFloorDist, FloorResult) == 0x000028, "Member 'CharacterMovementComponent_K2_ComputeFloorDist::FloorResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_K2_FindFloor \ +static_assert(alignof(CharacterMovementComponent_K2_FindFloor) == 0x000008, "Wrong alignment on CharacterMovementComponent_K2_FindFloor"); \ +static_assert(sizeof(CharacterMovementComponent_K2_FindFloor) == 0x000110, "Wrong size on CharacterMovementComponent_K2_FindFloor"); \ +static_assert(offsetof(CharacterMovementComponent_K2_FindFloor, CapsuleLocation) == 0x000000, "Member 'CharacterMovementComponent_K2_FindFloor::CapsuleLocation' has a wrong offset!"); \ +static_assert(offsetof(CharacterMovementComponent_K2_FindFloor, FloorResult) == 0x000018, "Member 'CharacterMovementComponent_K2_FindFloor::FloorResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_K2_GetWalkableFloorAngle \ +static_assert(alignof(CharacterMovementComponent_K2_GetWalkableFloorAngle) == 0x000004, "Wrong alignment on CharacterMovementComponent_K2_GetWalkableFloorAngle"); \ +static_assert(sizeof(CharacterMovementComponent_K2_GetWalkableFloorAngle) == 0x000004, "Wrong size on CharacterMovementComponent_K2_GetWalkableFloorAngle"); \ +static_assert(offsetof(CharacterMovementComponent_K2_GetWalkableFloorAngle, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_K2_GetWalkableFloorAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CharacterMovementComponent_K2_GetWalkableFloorZ \ +static_assert(alignof(CharacterMovementComponent_K2_GetWalkableFloorZ) == 0x000004, "Wrong alignment on CharacterMovementComponent_K2_GetWalkableFloorZ"); \ +static_assert(sizeof(CharacterMovementComponent_K2_GetWalkableFloorZ) == 0x000004, "Wrong size on CharacterMovementComponent_K2_GetWalkableFloorZ"); \ +static_assert(offsetof(CharacterMovementComponent_K2_GetWalkableFloorZ, ReturnValue) == 0x000000, "Member 'CharacterMovementComponent_K2_GetWalkableFloorZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCharacterMovementComponent \ +static_assert(alignof(UCharacterMovementComponent) == 0x000010, "Wrong alignment on UCharacterMovementComponent"); \ +static_assert(sizeof(UCharacterMovementComponent) == 0x000F50, "Wrong size on UCharacterMovementComponent"); \ +static_assert(offsetof(UCharacterMovementComponent, CharacterOwner) == 0x000168, "Member 'UCharacterMovementComponent::CharacterOwner' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GravityScale) == 0x000170, "Member 'UCharacterMovementComponent::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxStepHeight) == 0x000174, "Member 'UCharacterMovementComponent::MaxStepHeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, JumpZVelocity) == 0x000178, "Member 'UCharacterMovementComponent::JumpZVelocity' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, JumpOffJumpZFactor) == 0x00017C, "Member 'UCharacterMovementComponent::JumpOffJumpZFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, WalkableFloorAngle) == 0x00019C, "Member 'UCharacterMovementComponent::WalkableFloorAngle' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, WalkableFloorZ) == 0x0001A0, "Member 'UCharacterMovementComponent::WalkableFloorZ' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GravityDirection) == 0x0001A8, "Member 'UCharacterMovementComponent::GravityDirection' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, WorldToGravityTransform) == 0x0001C0, "Member 'UCharacterMovementComponent::WorldToGravityTransform' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GravityToWorldTransform) == 0x0001E0, "Member 'UCharacterMovementComponent::GravityToWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MovementMode) == 0x000201, "Member 'UCharacterMovementComponent::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, CustomMovementMode) == 0x000202, "Member 'UCharacterMovementComponent::CustomMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkSmoothingMode) == 0x000203, "Member 'UCharacterMovementComponent::NetworkSmoothingMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GroundFriction) == 0x000204, "Member 'UCharacterMovementComponent::GroundFriction' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxWalkSpeed) == 0x000248, "Member 'UCharacterMovementComponent::MaxWalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxWalkSpeedCrouched) == 0x00024C, "Member 'UCharacterMovementComponent::MaxWalkSpeedCrouched' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxSwimSpeed) == 0x000250, "Member 'UCharacterMovementComponent::MaxSwimSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxFlySpeed) == 0x000254, "Member 'UCharacterMovementComponent::MaxFlySpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxCustomMovementSpeed) == 0x000258, "Member 'UCharacterMovementComponent::MaxCustomMovementSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxAcceleration) == 0x00025C, "Member 'UCharacterMovementComponent::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MinAnalogWalkSpeed) == 0x000260, "Member 'UCharacterMovementComponent::MinAnalogWalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingFrictionFactor) == 0x000264, "Member 'UCharacterMovementComponent::BrakingFrictionFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingFriction) == 0x000268, "Member 'UCharacterMovementComponent::BrakingFriction' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingSubStepTime) == 0x00026C, "Member 'UCharacterMovementComponent::BrakingSubStepTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingDecelerationWalking) == 0x000270, "Member 'UCharacterMovementComponent::BrakingDecelerationWalking' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingDecelerationFalling) == 0x000274, "Member 'UCharacterMovementComponent::BrakingDecelerationFalling' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingDecelerationSwimming) == 0x000278, "Member 'UCharacterMovementComponent::BrakingDecelerationSwimming' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, BrakingDecelerationFlying) == 0x00027C, "Member 'UCharacterMovementComponent::BrakingDecelerationFlying' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AirControl) == 0x000280, "Member 'UCharacterMovementComponent::AirControl' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AirControlBoostMultiplier) == 0x000284, "Member 'UCharacterMovementComponent::AirControlBoostMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AirControlBoostVelocityThreshold) == 0x000288, "Member 'UCharacterMovementComponent::AirControlBoostVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, FallingLateralFriction) == 0x00028C, "Member 'UCharacterMovementComponent::FallingLateralFriction' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, CrouchedHalfHeight) == 0x000290, "Member 'UCharacterMovementComponent::CrouchedHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, Buoyancy) == 0x000294, "Member 'UCharacterMovementComponent::Buoyancy' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PerchRadiusThreshold) == 0x000298, "Member 'UCharacterMovementComponent::PerchRadiusThreshold' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PerchAdditionalHeight) == 0x00029C, "Member 'UCharacterMovementComponent::PerchAdditionalHeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, RotationRate) == 0x0002A0, "Member 'UCharacterMovementComponent::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, DeferredUpdatedMoveComponent) == 0x0002C0, "Member 'UCharacterMovementComponent::DeferredUpdatedMoveComponent' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxOutOfWaterStepHeight) == 0x0002C8, "Member 'UCharacterMovementComponent::MaxOutOfWaterStepHeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, OutofWaterZ) == 0x0002CC, "Member 'UCharacterMovementComponent::OutofWaterZ' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MASS) == 0x0002D0, "Member 'UCharacterMovementComponent::MASS' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, StandingDownwardForceScale) == 0x0002D4, "Member 'UCharacterMovementComponent::StandingDownwardForceScale' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, InitialPushForceFactor) == 0x0002D8, "Member 'UCharacterMovementComponent::InitialPushForceFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PushForceFactor) == 0x0002DC, "Member 'UCharacterMovementComponent::PushForceFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PushForcePointZOffsetFactor) == 0x0002E0, "Member 'UCharacterMovementComponent::PushForcePointZOffsetFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, TouchForceFactor) == 0x0002E4, "Member 'UCharacterMovementComponent::TouchForceFactor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MinTouchForce) == 0x0002E8, "Member 'UCharacterMovementComponent::MinTouchForce' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxTouchForce) == 0x0002EC, "Member 'UCharacterMovementComponent::MaxTouchForce' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, RepulsionForce) == 0x0002F0, "Member 'UCharacterMovementComponent::RepulsionForce' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, Acceleration) == 0x0002F8, "Member 'UCharacterMovementComponent::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, LastUpdateRotation) == 0x000310, "Member 'UCharacterMovementComponent::LastUpdateRotation' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, LastUpdateLocation) == 0x000330, "Member 'UCharacterMovementComponent::LastUpdateLocation' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, LastUpdateVelocity) == 0x000348, "Member 'UCharacterMovementComponent::LastUpdateVelocity' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ServerLastTransformUpdateTimeStamp) == 0x000360, "Member 'UCharacterMovementComponent::ServerLastTransformUpdateTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ServerLastClientGoodMoveAckTime) == 0x000364, "Member 'UCharacterMovementComponent::ServerLastClientGoodMoveAckTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ServerLastClientAdjustmentTime) == 0x000368, "Member 'UCharacterMovementComponent::ServerLastClientAdjustmentTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PendingImpulseToApply) == 0x000370, "Member 'UCharacterMovementComponent::PendingImpulseToApply' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PendingForceToApply) == 0x000388, "Member 'UCharacterMovementComponent::PendingForceToApply' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AnalogInputModifier) == 0x0003A0, "Member 'UCharacterMovementComponent::AnalogInputModifier' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxSimulationTimeStep) == 0x0003B0, "Member 'UCharacterMovementComponent::MaxSimulationTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxSimulationIterations) == 0x0003B4, "Member 'UCharacterMovementComponent::MaxSimulationIterations' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxJumpApexAttemptsPerSimulation) == 0x0003B8, "Member 'UCharacterMovementComponent::MaxJumpApexAttemptsPerSimulation' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxDepenetrationWithGeometry) == 0x0003BC, "Member 'UCharacterMovementComponent::MaxDepenetrationWithGeometry' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxDepenetrationWithGeometryAsProxy) == 0x0003C0, "Member 'UCharacterMovementComponent::MaxDepenetrationWithGeometryAsProxy' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxDepenetrationWithPawn) == 0x0003C4, "Member 'UCharacterMovementComponent::MaxDepenetrationWithPawn' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MaxDepenetrationWithPawnAsProxy) == 0x0003C8, "Member 'UCharacterMovementComponent::MaxDepenetrationWithPawnAsProxy' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkSimulatedSmoothLocationTime) == 0x0003CC, "Member 'UCharacterMovementComponent::NetworkSimulatedSmoothLocationTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkSimulatedSmoothRotationTime) == 0x0003D0, "Member 'UCharacterMovementComponent::NetworkSimulatedSmoothRotationTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ListenServerNetworkSimulatedSmoothLocationTime) == 0x0003D4, "Member 'UCharacterMovementComponent::ListenServerNetworkSimulatedSmoothLocationTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ListenServerNetworkSimulatedSmoothRotationTime) == 0x0003D8, "Member 'UCharacterMovementComponent::ListenServerNetworkSimulatedSmoothRotationTime' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetProxyShrinkRadius) == 0x0003DC, "Member 'UCharacterMovementComponent::NetProxyShrinkRadius' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetProxyShrinkHalfHeight) == 0x0003E0, "Member 'UCharacterMovementComponent::NetProxyShrinkHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkMaxSmoothUpdateDistance) == 0x0003E4, "Member 'UCharacterMovementComponent::NetworkMaxSmoothUpdateDistance' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkNoSmoothUpdateDistance) == 0x0003E8, "Member 'UCharacterMovementComponent::NetworkNoSmoothUpdateDistance' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkMinTimeBetweenClientAckGoodMoves) == 0x0003EC, "Member 'UCharacterMovementComponent::NetworkMinTimeBetweenClientAckGoodMoves' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkMinTimeBetweenClientAdjustments) == 0x0003F0, "Member 'UCharacterMovementComponent::NetworkMinTimeBetweenClientAdjustments' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkMinTimeBetweenClientAdjustmentsLargeCorrection) == 0x0003F4, "Member 'UCharacterMovementComponent::NetworkMinTimeBetweenClientAdjustmentsLargeCorrection' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NetworkLargeClientCorrectionDistance) == 0x0003F8, "Member 'UCharacterMovementComponent::NetworkLargeClientCorrectionDistance' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, LedgeCheckThreshold) == 0x0003FC, "Member 'UCharacterMovementComponent::LedgeCheckThreshold' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, JumpOutOfWaterPitch) == 0x000400, "Member 'UCharacterMovementComponent::JumpOutOfWaterPitch' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, CurrentFloor) == 0x000408, "Member 'UCharacterMovementComponent::CurrentFloor' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, DefaultLandMovementMode) == 0x000500, "Member 'UCharacterMovementComponent::DefaultLandMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, DefaultWaterMovementMode) == 0x000501, "Member 'UCharacterMovementComponent::DefaultWaterMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GroundMovementMode) == 0x000502, "Member 'UCharacterMovementComponent::GroundMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, FormerBaseVelocityDecayHalfLife) == 0x000510, "Member 'UCharacterMovementComponent::FormerBaseVelocityDecayHalfLife' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AvoidanceConsiderationRadius) == 0x000534, "Member 'UCharacterMovementComponent::AvoidanceConsiderationRadius' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, RequestedVelocity) == 0x000538, "Member 'UCharacterMovementComponent::RequestedVelocity' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, LastUpdateRequestedVelocity) == 0x000550, "Member 'UCharacterMovementComponent::LastUpdateRequestedVelocity' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AvoidanceUID) == 0x000568, "Member 'UCharacterMovementComponent::AvoidanceUID' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AvoidanceGroup) == 0x00056C, "Member 'UCharacterMovementComponent::AvoidanceGroup' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GroupsToAvoid) == 0x000570, "Member 'UCharacterMovementComponent::GroupsToAvoid' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, GroupsToIgnore) == 0x000574, "Member 'UCharacterMovementComponent::GroupsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AvoidanceWeight) == 0x000578, "Member 'UCharacterMovementComponent::AvoidanceWeight' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PendingLaunchVelocity) == 0x000580, "Member 'UCharacterMovementComponent::PendingLaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavMeshProjectionInterval) == 0x0006D0, "Member 'UCharacterMovementComponent::NavMeshProjectionInterval' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavMeshProjectionTimer) == 0x0006D4, "Member 'UCharacterMovementComponent::NavMeshProjectionTimer' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavMeshProjectionInterpSpeed) == 0x0006D8, "Member 'UCharacterMovementComponent::NavMeshProjectionInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavMeshProjectionHeightScaleUp) == 0x0006DC, "Member 'UCharacterMovementComponent::NavMeshProjectionHeightScaleUp' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavMeshProjectionHeightScaleDown) == 0x0006E0, "Member 'UCharacterMovementComponent::NavMeshProjectionHeightScaleDown' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, NavWalkingFloorDistTolerance) == 0x0006E4, "Member 'UCharacterMovementComponent::NavWalkingFloorDistTolerance' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, PostPhysicsTickFunction) == 0x000718, "Member 'UCharacterMovementComponent::PostPhysicsTickFunction' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, MinTimeBetweenTimeStampResets) == 0x000760, "Member 'UCharacterMovementComponent::MinTimeBetweenTimeStampResets' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, CurrentRootMotion) == 0x000CB0, "Member 'UCharacterMovementComponent::CurrentRootMotion' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, ServerCorrectionRootMotion) == 0x000CF8, "Member 'UCharacterMovementComponent::ServerCorrectionRootMotion' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, RootMotionParams) == 0x000EA0, "Member 'UCharacterMovementComponent::RootMotionParams' has a wrong offset!"); \ +static_assert(offsetof(UCharacterMovementComponent, AnimRootMotionVelocity) == 0x000F10, "Member 'UCharacterMovementComponent::AnimRootMotionVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetAtmosphereSunLight \ +static_assert(alignof(DirectionalLightComponent_SetAtmosphereSunLight) == 0x000001, "Wrong alignment on DirectionalLightComponent_SetAtmosphereSunLight"); \ +static_assert(sizeof(DirectionalLightComponent_SetAtmosphereSunLight) == 0x000001, "Wrong size on DirectionalLightComponent_SetAtmosphereSunLight"); \ +static_assert(offsetof(DirectionalLightComponent_SetAtmosphereSunLight, bNewValue) == 0x000000, "Member 'DirectionalLightComponent_SetAtmosphereSunLight::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetAtmosphereSunLightIndex \ +static_assert(alignof(DirectionalLightComponent_SetAtmosphereSunLightIndex) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetAtmosphereSunLightIndex"); \ +static_assert(sizeof(DirectionalLightComponent_SetAtmosphereSunLightIndex) == 0x000004, "Wrong size on DirectionalLightComponent_SetAtmosphereSunLightIndex"); \ +static_assert(offsetof(DirectionalLightComponent_SetAtmosphereSunLightIndex, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetAtmosphereSunLightIndex::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetCascadeDistributionExponent \ +static_assert(alignof(DirectionalLightComponent_SetCascadeDistributionExponent) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetCascadeDistributionExponent"); \ +static_assert(sizeof(DirectionalLightComponent_SetCascadeDistributionExponent) == 0x000004, "Wrong size on DirectionalLightComponent_SetCascadeDistributionExponent"); \ +static_assert(offsetof(DirectionalLightComponent_SetCascadeDistributionExponent, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetCascadeDistributionExponent::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetCascadeTransitionFraction \ +static_assert(alignof(DirectionalLightComponent_SetCascadeTransitionFraction) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetCascadeTransitionFraction"); \ +static_assert(sizeof(DirectionalLightComponent_SetCascadeTransitionFraction) == 0x000004, "Wrong size on DirectionalLightComponent_SetCascadeTransitionFraction"); \ +static_assert(offsetof(DirectionalLightComponent_SetCascadeTransitionFraction, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetCascadeTransitionFraction::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetDynamicShadowCascades \ +static_assert(alignof(DirectionalLightComponent_SetDynamicShadowCascades) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetDynamicShadowCascades"); \ +static_assert(sizeof(DirectionalLightComponent_SetDynamicShadowCascades) == 0x000004, "Wrong size on DirectionalLightComponent_SetDynamicShadowCascades"); \ +static_assert(offsetof(DirectionalLightComponent_SetDynamicShadowCascades, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetDynamicShadowCascades::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetDynamicShadowDistanceMovableLight \ +static_assert(alignof(DirectionalLightComponent_SetDynamicShadowDistanceMovableLight) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetDynamicShadowDistanceMovableLight"); \ +static_assert(sizeof(DirectionalLightComponent_SetDynamicShadowDistanceMovableLight) == 0x000004, "Wrong size on DirectionalLightComponent_SetDynamicShadowDistanceMovableLight"); \ +static_assert(offsetof(DirectionalLightComponent_SetDynamicShadowDistanceMovableLight, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetDynamicShadowDistanceMovableLight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight \ +static_assert(alignof(DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight"); \ +static_assert(sizeof(DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight) == 0x000004, "Wrong size on DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight"); \ +static_assert(offsetof(DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetEnableLightShaftOcclusion \ +static_assert(alignof(DirectionalLightComponent_SetEnableLightShaftOcclusion) == 0x000001, "Wrong alignment on DirectionalLightComponent_SetEnableLightShaftOcclusion"); \ +static_assert(sizeof(DirectionalLightComponent_SetEnableLightShaftOcclusion) == 0x000001, "Wrong size on DirectionalLightComponent_SetEnableLightShaftOcclusion"); \ +static_assert(offsetof(DirectionalLightComponent_SetEnableLightShaftOcclusion, bNewValue) == 0x000000, "Member 'DirectionalLightComponent_SetEnableLightShaftOcclusion::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetForwardShadingPriority \ +static_assert(alignof(DirectionalLightComponent_SetForwardShadingPriority) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetForwardShadingPriority"); \ +static_assert(sizeof(DirectionalLightComponent_SetForwardShadingPriority) == 0x000004, "Wrong size on DirectionalLightComponent_SetForwardShadingPriority"); \ +static_assert(offsetof(DirectionalLightComponent_SetForwardShadingPriority, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetForwardShadingPriority::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetLightShaftOverrideDirection \ +static_assert(alignof(DirectionalLightComponent_SetLightShaftOverrideDirection) == 0x000008, "Wrong alignment on DirectionalLightComponent_SetLightShaftOverrideDirection"); \ +static_assert(sizeof(DirectionalLightComponent_SetLightShaftOverrideDirection) == 0x000018, "Wrong size on DirectionalLightComponent_SetLightShaftOverrideDirection"); \ +static_assert(offsetof(DirectionalLightComponent_SetLightShaftOverrideDirection, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetLightShaftOverrideDirection::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetLightSourceAngle \ +static_assert(alignof(DirectionalLightComponent_SetLightSourceAngle) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetLightSourceAngle"); \ +static_assert(sizeof(DirectionalLightComponent_SetLightSourceAngle) == 0x000004, "Wrong size on DirectionalLightComponent_SetLightSourceAngle"); \ +static_assert(offsetof(DirectionalLightComponent_SetLightSourceAngle, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetLightSourceAngle::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetLightSourceSoftAngle \ +static_assert(alignof(DirectionalLightComponent_SetLightSourceSoftAngle) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetLightSourceSoftAngle"); \ +static_assert(sizeof(DirectionalLightComponent_SetLightSourceSoftAngle) == 0x000004, "Wrong size on DirectionalLightComponent_SetLightSourceSoftAngle"); \ +static_assert(offsetof(DirectionalLightComponent_SetLightSourceSoftAngle, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetLightSourceSoftAngle::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetOcclusionDepthRange \ +static_assert(alignof(DirectionalLightComponent_SetOcclusionDepthRange) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetOcclusionDepthRange"); \ +static_assert(sizeof(DirectionalLightComponent_SetOcclusionDepthRange) == 0x000004, "Wrong size on DirectionalLightComponent_SetOcclusionDepthRange"); \ +static_assert(offsetof(DirectionalLightComponent_SetOcclusionDepthRange, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetOcclusionDepthRange::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetOcclusionMaskDarkness \ +static_assert(alignof(DirectionalLightComponent_SetOcclusionMaskDarkness) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetOcclusionMaskDarkness"); \ +static_assert(sizeof(DirectionalLightComponent_SetOcclusionMaskDarkness) == 0x000004, "Wrong size on DirectionalLightComponent_SetOcclusionMaskDarkness"); \ +static_assert(offsetof(DirectionalLightComponent_SetOcclusionMaskDarkness, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetOcclusionMaskDarkness::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetShadowAmount \ +static_assert(alignof(DirectionalLightComponent_SetShadowAmount) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetShadowAmount"); \ +static_assert(sizeof(DirectionalLightComponent_SetShadowAmount) == 0x000004, "Wrong size on DirectionalLightComponent_SetShadowAmount"); \ +static_assert(offsetof(DirectionalLightComponent_SetShadowAmount, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetShadowAmount::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetShadowCascadeBiasDistribution \ +static_assert(alignof(DirectionalLightComponent_SetShadowCascadeBiasDistribution) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetShadowCascadeBiasDistribution"); \ +static_assert(sizeof(DirectionalLightComponent_SetShadowCascadeBiasDistribution) == 0x000004, "Wrong size on DirectionalLightComponent_SetShadowCascadeBiasDistribution"); \ +static_assert(offsetof(DirectionalLightComponent_SetShadowCascadeBiasDistribution, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetShadowCascadeBiasDistribution::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetShadowDistanceFadeoutFraction \ +static_assert(alignof(DirectionalLightComponent_SetShadowDistanceFadeoutFraction) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetShadowDistanceFadeoutFraction"); \ +static_assert(sizeof(DirectionalLightComponent_SetShadowDistanceFadeoutFraction) == 0x000004, "Wrong size on DirectionalLightComponent_SetShadowDistanceFadeoutFraction"); \ +static_assert(offsetof(DirectionalLightComponent_SetShadowDistanceFadeoutFraction, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetShadowDistanceFadeoutFraction::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DirectionalLightComponent_SetShadowSourceAngleFactor \ +static_assert(alignof(DirectionalLightComponent_SetShadowSourceAngleFactor) == 0x000004, "Wrong alignment on DirectionalLightComponent_SetShadowSourceAngleFactor"); \ +static_assert(sizeof(DirectionalLightComponent_SetShadowSourceAngleFactor) == 0x000004, "Wrong size on DirectionalLightComponent_SetShadowSourceAngleFactor"); \ +static_assert(offsetof(DirectionalLightComponent_SetShadowSourceAngleFactor, NewValue) == 0x000000, "Member 'DirectionalLightComponent_SetShadowSourceAngleFactor::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDirectionalLightComponent \ +static_assert(alignof(UDirectionalLightComponent) == 0x000010, "Wrong alignment on UDirectionalLightComponent"); \ +static_assert(sizeof(UDirectionalLightComponent) == 0x0004C0, "Wrong size on UDirectionalLightComponent"); \ +static_assert(offsetof(UDirectionalLightComponent, ShadowCascadeBiasDistribution) == 0x0003E8, "Member 'UDirectionalLightComponent::ShadowCascadeBiasDistribution' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, OcclusionMaskDarkness) == 0x0003F0, "Member 'UDirectionalLightComponent::OcclusionMaskDarkness' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, OcclusionDepthRange) == 0x0003F4, "Member 'UDirectionalLightComponent::OcclusionDepthRange' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, LightShaftOverrideDirection) == 0x0003F8, "Member 'UDirectionalLightComponent::LightShaftOverrideDirection' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, WholeSceneDynamicShadowRadius) == 0x000410, "Member 'UDirectionalLightComponent::WholeSceneDynamicShadowRadius' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, DynamicShadowDistanceMovableLight) == 0x000414, "Member 'UDirectionalLightComponent::DynamicShadowDistanceMovableLight' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, DynamicShadowDistanceStationaryLight) == 0x000418, "Member 'UDirectionalLightComponent::DynamicShadowDistanceStationaryLight' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, DynamicShadowCascades) == 0x00041C, "Member 'UDirectionalLightComponent::DynamicShadowCascades' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CascadeDistributionExponent) == 0x000420, "Member 'UDirectionalLightComponent::CascadeDistributionExponent' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CascadeTransitionFraction) == 0x000424, "Member 'UDirectionalLightComponent::CascadeTransitionFraction' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, ShadowDistanceFadeoutFraction) == 0x000428, "Member 'UDirectionalLightComponent::ShadowDistanceFadeoutFraction' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, FarShadowCascadeCount) == 0x000430, "Member 'UDirectionalLightComponent::FarShadowCascadeCount' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, FarShadowDistance) == 0x000434, "Member 'UDirectionalLightComponent::FarShadowDistance' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, DistanceFieldShadowDistance) == 0x000438, "Member 'UDirectionalLightComponent::DistanceFieldShadowDistance' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, ForwardShadingPriority) == 0x00043C, "Member 'UDirectionalLightComponent::ForwardShadingPriority' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, LightSourceAngle) == 0x000440, "Member 'UDirectionalLightComponent::LightSourceAngle' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, LightSourceSoftAngle) == 0x000444, "Member 'UDirectionalLightComponent::LightSourceSoftAngle' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, ShadowSourceAngleFactor) == 0x000448, "Member 'UDirectionalLightComponent::ShadowSourceAngleFactor' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, TraceDistance) == 0x00044C, "Member 'UDirectionalLightComponent::TraceDistance' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, AtmosphereSunLightIndex) == 0x000454, "Member 'UDirectionalLightComponent::AtmosphereSunLightIndex' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, AtmosphereSunDiskColorScale) == 0x000458, "Member 'UDirectionalLightComponent::AtmosphereSunDiskColorScale' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowStrength) == 0x00046C, "Member 'UDirectionalLightComponent::CloudShadowStrength' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowOnAtmosphereStrength) == 0x000470, "Member 'UDirectionalLightComponent::CloudShadowOnAtmosphereStrength' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowOnSurfaceStrength) == 0x000474, "Member 'UDirectionalLightComponent::CloudShadowOnSurfaceStrength' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowDepthBias) == 0x000478, "Member 'UDirectionalLightComponent::CloudShadowDepthBias' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowExtent) == 0x00047C, "Member 'UDirectionalLightComponent::CloudShadowExtent' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowMapResolutionScale) == 0x000480, "Member 'UDirectionalLightComponent::CloudShadowMapResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudShadowRaySampleCountScale) == 0x000484, "Member 'UDirectionalLightComponent::CloudShadowRaySampleCountScale' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, CloudScatteredLuminanceScale) == 0x000488, "Member 'UDirectionalLightComponent::CloudScatteredLuminanceScale' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, LightmassSettings) == 0x000498, "Member 'UDirectionalLightComponent::LightmassSettings' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, ModulatedShadowColor) == 0x0004AC, "Member 'UDirectionalLightComponent::ModulatedShadowColor' has a wrong offset!"); \ +static_assert(offsetof(UDirectionalLightComponent, ShadowAmount) == 0x0004B0, "Member 'UDirectionalLightComponent::ShadowAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceFeedbackComponent_AdjustAttenuation \ +static_assert(alignof(ForceFeedbackComponent_AdjustAttenuation) == 0x000008, "Wrong alignment on ForceFeedbackComponent_AdjustAttenuation"); \ +static_assert(sizeof(ForceFeedbackComponent_AdjustAttenuation) == 0x0000C0, "Wrong size on ForceFeedbackComponent_AdjustAttenuation"); \ +static_assert(offsetof(ForceFeedbackComponent_AdjustAttenuation, InAttenuationSettings) == 0x000000, "Member 'ForceFeedbackComponent_AdjustAttenuation::InAttenuationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceFeedbackComponent_Play \ +static_assert(alignof(ForceFeedbackComponent_Play) == 0x000004, "Wrong alignment on ForceFeedbackComponent_Play"); \ +static_assert(sizeof(ForceFeedbackComponent_Play) == 0x000004, "Wrong size on ForceFeedbackComponent_Play"); \ +static_assert(offsetof(ForceFeedbackComponent_Play, StartTime) == 0x000000, "Member 'ForceFeedbackComponent_Play::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceFeedbackComponent_SetForceFeedbackEffect \ +static_assert(alignof(ForceFeedbackComponent_SetForceFeedbackEffect) == 0x000008, "Wrong alignment on ForceFeedbackComponent_SetForceFeedbackEffect"); \ +static_assert(sizeof(ForceFeedbackComponent_SetForceFeedbackEffect) == 0x000008, "Wrong size on ForceFeedbackComponent_SetForceFeedbackEffect"); \ +static_assert(offsetof(ForceFeedbackComponent_SetForceFeedbackEffect, NewForceFeedbackEffect) == 0x000000, "Member 'ForceFeedbackComponent_SetForceFeedbackEffect::NewForceFeedbackEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceFeedbackComponent_SetIntensityMultiplier \ +static_assert(alignof(ForceFeedbackComponent_SetIntensityMultiplier) == 0x000004, "Wrong alignment on ForceFeedbackComponent_SetIntensityMultiplier"); \ +static_assert(sizeof(ForceFeedbackComponent_SetIntensityMultiplier) == 0x000004, "Wrong size on ForceFeedbackComponent_SetIntensityMultiplier"); \ +static_assert(offsetof(ForceFeedbackComponent_SetIntensityMultiplier, NewIntensityMultiplier) == 0x000000, "Member 'ForceFeedbackComponent_SetIntensityMultiplier::NewIntensityMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceFeedbackComponent_BP_GetAttenuationSettingsToApply \ +static_assert(alignof(ForceFeedbackComponent_BP_GetAttenuationSettingsToApply) == 0x000008, "Wrong alignment on ForceFeedbackComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(sizeof(ForceFeedbackComponent_BP_GetAttenuationSettingsToApply) == 0x0000C8, "Wrong size on ForceFeedbackComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(offsetof(ForceFeedbackComponent_BP_GetAttenuationSettingsToApply, OutAttenuationSettings) == 0x000000, "Member 'ForceFeedbackComponent_BP_GetAttenuationSettingsToApply::OutAttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(ForceFeedbackComponent_BP_GetAttenuationSettingsToApply, ReturnValue) == 0x0000C0, "Member 'ForceFeedbackComponent_BP_GetAttenuationSettingsToApply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForceFeedbackComponent \ +static_assert(alignof(UForceFeedbackComponent) == 0x000010, "Wrong alignment on UForceFeedbackComponent"); \ +static_assert(sizeof(UForceFeedbackComponent) == 0x000390, "Wrong size on UForceFeedbackComponent"); \ +static_assert(offsetof(UForceFeedbackComponent, ForceFeedbackEffect) == 0x0002A0, "Member 'UForceFeedbackComponent::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackComponent, IntensityMultiplier) == 0x0002AC, "Member 'UForceFeedbackComponent::IntensityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackComponent, AttenuationSettings) == 0x0002B0, "Member 'UForceFeedbackComponent::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackComponent, AttenuationOverrides) == 0x0002B8, "Member 'UForceFeedbackComponent::AttenuationOverrides' has a wrong offset!"); \ +static_assert(offsetof(UForceFeedbackComponent, OnForceFeedbackFinished) == 0x000378, "Member 'UForceFeedbackComponent::OnForceFeedbackFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalHeightFogComponent \ +static_assert(alignof(ULocalHeightFogComponent) == 0x000010, "Wrong alignment on ULocalHeightFogComponent"); \ +static_assert(sizeof(ULocalHeightFogComponent) == 0x0002F0, "Wrong size on ULocalHeightFogComponent"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogMode) == 0x0002A0, "Member 'ULocalHeightFogComponent::FogMode' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogDensity) == 0x0002A4, "Member 'ULocalHeightFogComponent::FogDensity' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogHeightFalloff) == 0x0002A8, "Member 'ULocalHeightFogComponent::FogHeightFalloff' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogHeightOffset) == 0x0002AC, "Member 'ULocalHeightFogComponent::FogHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogRadialAttenuation) == 0x0002B0, "Member 'ULocalHeightFogComponent::FogRadialAttenuation' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogPhaseG) == 0x0002B4, "Member 'ULocalHeightFogComponent::FogPhaseG' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogAlbedo) == 0x0002B8, "Member 'ULocalHeightFogComponent::FogAlbedo' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogEmissive) == 0x0002C8, "Member 'ULocalHeightFogComponent::FogEmissive' has a wrong offset!"); \ +static_assert(offsetof(ULocalHeightFogComponent, FogSortPriority) == 0x0002D8, "Member 'ULocalHeightFogComponent::FogSortPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LODSyncComponent_GetLODSyncDebugText \ +static_assert(alignof(LODSyncComponent_GetLODSyncDebugText) == 0x000008, "Wrong alignment on LODSyncComponent_GetLODSyncDebugText"); \ +static_assert(sizeof(LODSyncComponent_GetLODSyncDebugText) == 0x000010, "Wrong size on LODSyncComponent_GetLODSyncDebugText"); \ +static_assert(offsetof(LODSyncComponent_GetLODSyncDebugText, ReturnValue) == 0x000000, "Member 'LODSyncComponent_GetLODSyncDebugText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULODSyncComponent \ +static_assert(alignof(ULODSyncComponent) == 0x000008, "Wrong alignment on ULODSyncComponent"); \ +static_assert(sizeof(ULODSyncComponent) == 0x000138, "Wrong size on ULODSyncComponent"); \ +static_assert(offsetof(ULODSyncComponent, NumLODs) == 0x0000A0, "Member 'ULODSyncComponent::NumLODs' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, ForcedLOD) == 0x0000A4, "Member 'ULODSyncComponent::ForcedLOD' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, MinLOD) == 0x0000A8, "Member 'ULODSyncComponent::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, ComponentsToSync) == 0x0000B0, "Member 'ULODSyncComponent::ComponentsToSync' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, CustomLODMapping) == 0x0000C0, "Member 'ULODSyncComponent::CustomLODMapping' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, CurrentLOD) == 0x000110, "Member 'ULODSyncComponent::CurrentLOD' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, CurrentNumLODs) == 0x000114, "Member 'ULODSyncComponent::CurrentNumLODs' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, DriveComponents) == 0x000118, "Member 'ULODSyncComponent::DriveComponents' has a wrong offset!"); \ +static_assert(offsetof(ULODSyncComponent, SubComponents) == 0x000128, "Member 'ULODSyncComponent::SubComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnNoiseEmitterComponent_MakeNoise \ +static_assert(alignof(PawnNoiseEmitterComponent_MakeNoise) == 0x000008, "Wrong alignment on PawnNoiseEmitterComponent_MakeNoise"); \ +static_assert(sizeof(PawnNoiseEmitterComponent_MakeNoise) == 0x000028, "Wrong size on PawnNoiseEmitterComponent_MakeNoise"); \ +static_assert(offsetof(PawnNoiseEmitterComponent_MakeNoise, NoiseMaker) == 0x000000, "Member 'PawnNoiseEmitterComponent_MakeNoise::NoiseMaker' has a wrong offset!"); \ +static_assert(offsetof(PawnNoiseEmitterComponent_MakeNoise, Loudness) == 0x000008, "Member 'PawnNoiseEmitterComponent_MakeNoise::Loudness' has a wrong offset!"); \ +static_assert(offsetof(PawnNoiseEmitterComponent_MakeNoise, NoiseLocation) == 0x000010, "Member 'PawnNoiseEmitterComponent_MakeNoise::NoiseLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnNoiseEmitterComponent \ +static_assert(alignof(UPawnNoiseEmitterComponent) == 0x000008, "Wrong alignment on UPawnNoiseEmitterComponent"); \ +static_assert(sizeof(UPawnNoiseEmitterComponent) == 0x0000D8, "Wrong size on UPawnNoiseEmitterComponent"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, LastRemoteNoisePosition) == 0x0000A8, "Member 'UPawnNoiseEmitterComponent::LastRemoteNoisePosition' has a wrong offset!"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, NoiseLifetime) == 0x0000C0, "Member 'UPawnNoiseEmitterComponent::NoiseLifetime' has a wrong offset!"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, LastRemoteNoiseVolume) == 0x0000C4, "Member 'UPawnNoiseEmitterComponent::LastRemoteNoiseVolume' has a wrong offset!"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, LastRemoteNoiseTime) == 0x0000C8, "Member 'UPawnNoiseEmitterComponent::LastRemoteNoiseTime' has a wrong offset!"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, LastLocalNoiseVolume) == 0x0000CC, "Member 'UPawnNoiseEmitterComponent::LastLocalNoiseVolume' has a wrong offset!"); \ +static_assert(offsetof(UPawnNoiseEmitterComponent, LastLocalNoiseTime) == 0x0000D0, "Member 'UPawnNoiseEmitterComponent::LastLocalNoiseTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformEventsComponent_IsInLaptopMode \ +static_assert(alignof(PlatformEventsComponent_IsInLaptopMode) == 0x000001, "Wrong alignment on PlatformEventsComponent_IsInLaptopMode"); \ +static_assert(sizeof(PlatformEventsComponent_IsInLaptopMode) == 0x000001, "Wrong size on PlatformEventsComponent_IsInLaptopMode"); \ +static_assert(offsetof(PlatformEventsComponent_IsInLaptopMode, ReturnValue) == 0x000000, "Member 'PlatformEventsComponent_IsInLaptopMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformEventsComponent_IsInTabletMode \ +static_assert(alignof(PlatformEventsComponent_IsInTabletMode) == 0x000001, "Wrong alignment on PlatformEventsComponent_IsInTabletMode"); \ +static_assert(sizeof(PlatformEventsComponent_IsInTabletMode) == 0x000001, "Wrong size on PlatformEventsComponent_IsInTabletMode"); \ +static_assert(offsetof(PlatformEventsComponent_IsInTabletMode, ReturnValue) == 0x000000, "Member 'PlatformEventsComponent_IsInTabletMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlatformEventsComponent_SupportsConvertibleLaptops \ +static_assert(alignof(PlatformEventsComponent_SupportsConvertibleLaptops) == 0x000001, "Wrong alignment on PlatformEventsComponent_SupportsConvertibleLaptops"); \ +static_assert(sizeof(PlatformEventsComponent_SupportsConvertibleLaptops) == 0x000001, "Wrong size on PlatformEventsComponent_SupportsConvertibleLaptops"); \ +static_assert(offsetof(PlatformEventsComponent_SupportsConvertibleLaptops, ReturnValue) == 0x000000, "Member 'PlatformEventsComponent_SupportsConvertibleLaptops::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlatformEventsComponent \ +static_assert(alignof(UPlatformEventsComponent) == 0x000008, "Wrong alignment on UPlatformEventsComponent"); \ +static_assert(sizeof(UPlatformEventsComponent) == 0x0000C0, "Wrong size on UPlatformEventsComponent"); \ +static_assert(offsetof(UPlatformEventsComponent, PlatformChangedToLaptopModeDelegate) == 0x0000A0, "Member 'UPlatformEventsComponent::PlatformChangedToLaptopModeDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformEventsComponent, PlatformChangedToTabletModeDelegate) == 0x0000B0, "Member 'UPlatformEventsComponent::PlatformChangedToTabletModeDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PostProcessComponent_AddOrUpdateBlendable \ +static_assert(alignof(PostProcessComponent_AddOrUpdateBlendable) == 0x000008, "Wrong alignment on PostProcessComponent_AddOrUpdateBlendable"); \ +static_assert(sizeof(PostProcessComponent_AddOrUpdateBlendable) == 0x000018, "Wrong size on PostProcessComponent_AddOrUpdateBlendable"); \ +static_assert(offsetof(PostProcessComponent_AddOrUpdateBlendable, InBlendableObject) == 0x000000, "Member 'PostProcessComponent_AddOrUpdateBlendable::InBlendableObject' has a wrong offset!"); \ +static_assert(offsetof(PostProcessComponent_AddOrUpdateBlendable, InWeight) == 0x000010, "Member 'PostProcessComponent_AddOrUpdateBlendable::InWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPostProcessComponent \ +static_assert(alignof(UPostProcessComponent) == 0x000010, "Wrong alignment on UPostProcessComponent"); \ +static_assert(sizeof(UPostProcessComponent) == 0x0009B0, "Wrong size on UPostProcessComponent"); \ +static_assert(offsetof(UPostProcessComponent, Settings) == 0x0002B0, "Member 'UPostProcessComponent::Settings' has a wrong offset!"); \ +static_assert(offsetof(UPostProcessComponent, Priority) == 0x0009A0, "Member 'UPostProcessComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UPostProcessComponent, BlendRadius) == 0x0009A4, "Member 'UPostProcessComponent::BlendRadius' has a wrong offset!"); \ +static_assert(offsetof(UPostProcessComponent, BlendWeight) == 0x0009A8, "Member 'UPostProcessComponent::BlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_MoveInterpolationTarget \ +static_assert(alignof(ProjectileMovementComponent_MoveInterpolationTarget) == 0x000008, "Wrong alignment on ProjectileMovementComponent_MoveInterpolationTarget"); \ +static_assert(sizeof(ProjectileMovementComponent_MoveInterpolationTarget) == 0x000030, "Wrong size on ProjectileMovementComponent_MoveInterpolationTarget"); \ +static_assert(offsetof(ProjectileMovementComponent_MoveInterpolationTarget, NewLocation) == 0x000000, "Member 'ProjectileMovementComponent_MoveInterpolationTarget::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(ProjectileMovementComponent_MoveInterpolationTarget, NewRotation) == 0x000018, "Member 'ProjectileMovementComponent_MoveInterpolationTarget::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_SetInterpolatedComponent \ +static_assert(alignof(ProjectileMovementComponent_SetInterpolatedComponent) == 0x000008, "Wrong alignment on ProjectileMovementComponent_SetInterpolatedComponent"); \ +static_assert(sizeof(ProjectileMovementComponent_SetInterpolatedComponent) == 0x000008, "Wrong size on ProjectileMovementComponent_SetInterpolatedComponent"); \ +static_assert(offsetof(ProjectileMovementComponent_SetInterpolatedComponent, Component) == 0x000000, "Member 'ProjectileMovementComponent_SetInterpolatedComponent::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_SetVelocityInLocalSpace \ +static_assert(alignof(ProjectileMovementComponent_SetVelocityInLocalSpace) == 0x000008, "Wrong alignment on ProjectileMovementComponent_SetVelocityInLocalSpace"); \ +static_assert(sizeof(ProjectileMovementComponent_SetVelocityInLocalSpace) == 0x000018, "Wrong size on ProjectileMovementComponent_SetVelocityInLocalSpace"); \ +static_assert(offsetof(ProjectileMovementComponent_SetVelocityInLocalSpace, NewVelocity) == 0x000000, "Member 'ProjectileMovementComponent_SetVelocityInLocalSpace::NewVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_StopSimulating \ +static_assert(alignof(ProjectileMovementComponent_StopSimulating) == 0x000008, "Wrong alignment on ProjectileMovementComponent_StopSimulating"); \ +static_assert(sizeof(ProjectileMovementComponent_StopSimulating) == 0x0000E8, "Wrong size on ProjectileMovementComponent_StopSimulating"); \ +static_assert(offsetof(ProjectileMovementComponent_StopSimulating, HitResult) == 0x000000, "Member 'ProjectileMovementComponent_StopSimulating::HitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_IsInterpolationComplete \ +static_assert(alignof(ProjectileMovementComponent_IsInterpolationComplete) == 0x000001, "Wrong alignment on ProjectileMovementComponent_IsInterpolationComplete"); \ +static_assert(sizeof(ProjectileMovementComponent_IsInterpolationComplete) == 0x000001, "Wrong size on ProjectileMovementComponent_IsInterpolationComplete"); \ +static_assert(offsetof(ProjectileMovementComponent_IsInterpolationComplete, ReturnValue) == 0x000000, "Member 'ProjectileMovementComponent_IsInterpolationComplete::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_IsVelocityUnderSimulationThreshold \ +static_assert(alignof(ProjectileMovementComponent_IsVelocityUnderSimulationThreshold) == 0x000001, "Wrong alignment on ProjectileMovementComponent_IsVelocityUnderSimulationThreshold"); \ +static_assert(sizeof(ProjectileMovementComponent_IsVelocityUnderSimulationThreshold) == 0x000001, "Wrong size on ProjectileMovementComponent_IsVelocityUnderSimulationThreshold"); \ +static_assert(offsetof(ProjectileMovementComponent_IsVelocityUnderSimulationThreshold, ReturnValue) == 0x000000, "Member 'ProjectileMovementComponent_IsVelocityUnderSimulationThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProjectileMovementComponent_LimitVelocity \ +static_assert(alignof(ProjectileMovementComponent_LimitVelocity) == 0x000008, "Wrong alignment on ProjectileMovementComponent_LimitVelocity"); \ +static_assert(sizeof(ProjectileMovementComponent_LimitVelocity) == 0x000030, "Wrong size on ProjectileMovementComponent_LimitVelocity"); \ +static_assert(offsetof(ProjectileMovementComponent_LimitVelocity, NewVelocity) == 0x000000, "Member 'ProjectileMovementComponent_LimitVelocity::NewVelocity' has a wrong offset!"); \ +static_assert(offsetof(ProjectileMovementComponent_LimitVelocity, ReturnValue) == 0x000018, "Member 'ProjectileMovementComponent_LimitVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProjectileMovementComponent \ +static_assert(alignof(UProjectileMovementComponent) == 0x000010, "Wrong alignment on UProjectileMovementComponent"); \ +static_assert(sizeof(UProjectileMovementComponent) == 0x000260, "Wrong size on UProjectileMovementComponent"); \ +static_assert(offsetof(UProjectileMovementComponent, InitialSpeed) == 0x000108, "Member 'UProjectileMovementComponent::InitialSpeed' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, MaxSpeed) == 0x00010C, "Member 'UProjectileMovementComponent::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, PreviousHitTime) == 0x00011C, "Member 'UProjectileMovementComponent::PreviousHitTime' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, PreviousHitNormal) == 0x000120, "Member 'UProjectileMovementComponent::PreviousHitNormal' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, ProjectileGravityScale) == 0x000138, "Member 'UProjectileMovementComponent::ProjectileGravityScale' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, Buoyancy) == 0x00013C, "Member 'UProjectileMovementComponent::Buoyancy' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, Bounciness) == 0x000140, "Member 'UProjectileMovementComponent::Bounciness' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, Friction) == 0x000144, "Member 'UProjectileMovementComponent::Friction' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, BounceVelocityStopSimulatingThreshold) == 0x000148, "Member 'UProjectileMovementComponent::BounceVelocityStopSimulatingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, MinFrictionFraction) == 0x00014C, "Member 'UProjectileMovementComponent::MinFrictionFraction' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, OnProjectileBounce) == 0x000150, "Member 'UProjectileMovementComponent::OnProjectileBounce' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, OnProjectileStop) == 0x000160, "Member 'UProjectileMovementComponent::OnProjectileStop' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, HomingAccelerationMagnitude) == 0x000170, "Member 'UProjectileMovementComponent::HomingAccelerationMagnitude' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, HomingTargetComponent) == 0x000174, "Member 'UProjectileMovementComponent::HomingTargetComponent' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, MaxSimulationTimeStep) == 0x00017C, "Member 'UProjectileMovementComponent::MaxSimulationTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, MaxSimulationIterations) == 0x000180, "Member 'UProjectileMovementComponent::MaxSimulationIterations' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, BounceAdditionalIterations) == 0x000184, "Member 'UProjectileMovementComponent::BounceAdditionalIterations' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, InterpLocationTime) == 0x000188, "Member 'UProjectileMovementComponent::InterpLocationTime' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, InterpRotationTime) == 0x00018C, "Member 'UProjectileMovementComponent::InterpRotationTime' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, InterpLocationMaxLagDistance) == 0x000190, "Member 'UProjectileMovementComponent::InterpLocationMaxLagDistance' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, InterpLocationSnapToTargetDistance) == 0x000194, "Member 'UProjectileMovementComponent::InterpLocationSnapToTargetDistance' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, ThrottleInterpolationThresholdNotRenderedShortTime) == 0x000198, "Member 'UProjectileMovementComponent::ThrottleInterpolationThresholdNotRenderedShortTime' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, ThrottleInterpolationThresholdNotRenderedLongTime) == 0x00019C, "Member 'UProjectileMovementComponent::ThrottleInterpolationThresholdNotRenderedLongTime' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, ThrottleInterpolationSkipFramesRecent) == 0x0001A0, "Member 'UProjectileMovementComponent::ThrottleInterpolationSkipFramesRecent' has a wrong offset!"); \ +static_assert(offsetof(UProjectileMovementComponent, ThrottleInterpolationSkipFramesNotRecent) == 0x0001A4, "Member 'UProjectileMovementComponent::ThrottleInterpolationSkipFramesNotRecent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URotatingMovementComponent \ +static_assert(alignof(URotatingMovementComponent) == 0x000008, "Wrong alignment on URotatingMovementComponent"); \ +static_assert(sizeof(URotatingMovementComponent) == 0x000140, "Wrong size on URotatingMovementComponent"); \ +static_assert(offsetof(URotatingMovementComponent, RotationRate) == 0x000108, "Member 'URotatingMovementComponent::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(URotatingMovementComponent, PivotTranslation) == 0x000120, "Member 'URotatingMovementComponent::PivotTranslation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RuntimeVirtualTextureComponent_Invalidate \ +static_assert(alignof(RuntimeVirtualTextureComponent_Invalidate) == 0x000008, "Wrong alignment on RuntimeVirtualTextureComponent_Invalidate"); \ +static_assert(sizeof(RuntimeVirtualTextureComponent_Invalidate) == 0x000038, "Wrong size on RuntimeVirtualTextureComponent_Invalidate"); \ +static_assert(offsetof(RuntimeVirtualTextureComponent_Invalidate, WorldBounds) == 0x000000, "Member 'RuntimeVirtualTextureComponent_Invalidate::WorldBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeVirtualTextureComponent \ +static_assert(alignof(URuntimeVirtualTextureComponent) == 0x000010, "Wrong alignment on URuntimeVirtualTextureComponent"); \ +static_assert(sizeof(URuntimeVirtualTextureComponent) == 0x000330, "Wrong size on URuntimeVirtualTextureComponent"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, BoundsAlignActor) == 0x0002A0, "Member 'URuntimeVirtualTextureComponent::BoundsAlignActor' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bSetBoundsButton) == 0x0002C8, "Member 'URuntimeVirtualTextureComponent::bSetBoundsButton' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bSnapBoundsToLandscape) == 0x0002C9, "Member 'URuntimeVirtualTextureComponent::bSnapBoundsToLandscape' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, VirtualTexture) == 0x0002D0, "Member 'URuntimeVirtualTextureComponent::VirtualTexture' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bEnableScalability) == 0x0002D8, "Member 'URuntimeVirtualTextureComponent::bEnableScalability' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, ScalabilityGroup) == 0x0002DC, "Member 'URuntimeVirtualTextureComponent::ScalabilityGroup' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bHidePrimitives) == 0x0002E0, "Member 'URuntimeVirtualTextureComponent::bHidePrimitives' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, StreamingTexture) == 0x0002E8, "Member 'URuntimeVirtualTextureComponent::StreamingTexture' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, StreamLowMips) == 0x0002F0, "Member 'URuntimeVirtualTextureComponent::StreamLowMips' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bBuildStreamingMipsButton) == 0x0002F4, "Member 'URuntimeVirtualTextureComponent::bBuildStreamingMipsButton' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, LossyCompressionAmount) == 0x0002F5, "Member 'URuntimeVirtualTextureComponent::LossyCompressionAmount' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bUseStreamingLowMipsInEditor) == 0x0002F6, "Member 'URuntimeVirtualTextureComponent::bUseStreamingLowMipsInEditor' has a wrong offset!"); \ +static_assert(offsetof(URuntimeVirtualTextureComponent, bBuildDebugStreamingMips) == 0x0002F7, "Member 'URuntimeVirtualTextureComponent::bBuildDebugStreamingMips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddPoint \ +static_assert(alignof(SplineComponent_AddPoint) == 0x000008, "Wrong alignment on SplineComponent_AddPoint"); \ +static_assert(sizeof(SplineComponent_AddPoint) == 0x000090, "Wrong size on SplineComponent_AddPoint"); \ +static_assert(offsetof(SplineComponent_AddPoint, Point) == 0x000000, "Member 'SplineComponent_AddPoint::Point' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddPoint, bUpdateSpline) == 0x000088, "Member 'SplineComponent_AddPoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddPoints \ +static_assert(alignof(SplineComponent_AddPoints) == 0x000008, "Wrong alignment on SplineComponent_AddPoints"); \ +static_assert(sizeof(SplineComponent_AddPoints) == 0x000018, "Wrong size on SplineComponent_AddPoints"); \ +static_assert(offsetof(SplineComponent_AddPoints, Points) == 0x000000, "Member 'SplineComponent_AddPoints::Points' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddPoints, bUpdateSpline) == 0x000010, "Member 'SplineComponent_AddPoints::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddSplineLocalPoint \ +static_assert(alignof(SplineComponent_AddSplineLocalPoint) == 0x000008, "Wrong alignment on SplineComponent_AddSplineLocalPoint"); \ +static_assert(sizeof(SplineComponent_AddSplineLocalPoint) == 0x000018, "Wrong size on SplineComponent_AddSplineLocalPoint"); \ +static_assert(offsetof(SplineComponent_AddSplineLocalPoint, Position) == 0x000000, "Member 'SplineComponent_AddSplineLocalPoint::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddSplinePoint \ +static_assert(alignof(SplineComponent_AddSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_AddSplinePoint"); \ +static_assert(sizeof(SplineComponent_AddSplinePoint) == 0x000020, "Wrong size on SplineComponent_AddSplinePoint"); \ +static_assert(offsetof(SplineComponent_AddSplinePoint, Position) == 0x000000, "Member 'SplineComponent_AddSplinePoint::Position' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddSplinePoint, CoordinateSpace) == 0x000018, "Member 'SplineComponent_AddSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddSplinePoint, bUpdateSpline) == 0x000019, "Member 'SplineComponent_AddSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddSplinePointAtIndex \ +static_assert(alignof(SplineComponent_AddSplinePointAtIndex) == 0x000008, "Wrong alignment on SplineComponent_AddSplinePointAtIndex"); \ +static_assert(sizeof(SplineComponent_AddSplinePointAtIndex) == 0x000020, "Wrong size on SplineComponent_AddSplinePointAtIndex"); \ +static_assert(offsetof(SplineComponent_AddSplinePointAtIndex, Position) == 0x000000, "Member 'SplineComponent_AddSplinePointAtIndex::Position' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddSplinePointAtIndex, Index_0) == 0x000018, "Member 'SplineComponent_AddSplinePointAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddSplinePointAtIndex, CoordinateSpace) == 0x00001C, "Member 'SplineComponent_AddSplinePointAtIndex::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_AddSplinePointAtIndex, bUpdateSpline) == 0x00001D, "Member 'SplineComponent_AddSplinePointAtIndex::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_AddSplineWorldPoint \ +static_assert(alignof(SplineComponent_AddSplineWorldPoint) == 0x000008, "Wrong alignment on SplineComponent_AddSplineWorldPoint"); \ +static_assert(sizeof(SplineComponent_AddSplineWorldPoint) == 0x000018, "Wrong size on SplineComponent_AddSplineWorldPoint"); \ +static_assert(offsetof(SplineComponent_AddSplineWorldPoint, Position) == 0x000000, "Member 'SplineComponent_AddSplineWorldPoint::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_ClearSplinePoints \ +static_assert(alignof(SplineComponent_ClearSplinePoints) == 0x000001, "Wrong alignment on SplineComponent_ClearSplinePoints"); \ +static_assert(sizeof(SplineComponent_ClearSplinePoints) == 0x000001, "Wrong size on SplineComponent_ClearSplinePoints"); \ +static_assert(offsetof(SplineComponent_ClearSplinePoints, bUpdateSpline) == 0x000000, "Member 'SplineComponent_ClearSplinePoints::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_RemoveSplinePoint \ +static_assert(alignof(SplineComponent_RemoveSplinePoint) == 0x000004, "Wrong alignment on SplineComponent_RemoveSplinePoint"); \ +static_assert(sizeof(SplineComponent_RemoveSplinePoint) == 0x000008, "Wrong size on SplineComponent_RemoveSplinePoint"); \ +static_assert(offsetof(SplineComponent_RemoveSplinePoint, Index_0) == 0x000000, "Member 'SplineComponent_RemoveSplinePoint::Index_0' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_RemoveSplinePoint, bUpdateSpline) == 0x000004, "Member 'SplineComponent_RemoveSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetClosedLoop \ +static_assert(alignof(SplineComponent_SetClosedLoop) == 0x000001, "Wrong alignment on SplineComponent_SetClosedLoop"); \ +static_assert(sizeof(SplineComponent_SetClosedLoop) == 0x000002, "Wrong size on SplineComponent_SetClosedLoop"); \ +static_assert(offsetof(SplineComponent_SetClosedLoop, bInClosedLoop) == 0x000000, "Member 'SplineComponent_SetClosedLoop::bInClosedLoop' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetClosedLoop, bUpdateSpline) == 0x000001, "Member 'SplineComponent_SetClosedLoop::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetClosedLoopAtPosition \ +static_assert(alignof(SplineComponent_SetClosedLoopAtPosition) == 0x000004, "Wrong alignment on SplineComponent_SetClosedLoopAtPosition"); \ +static_assert(sizeof(SplineComponent_SetClosedLoopAtPosition) == 0x00000C, "Wrong size on SplineComponent_SetClosedLoopAtPosition"); \ +static_assert(offsetof(SplineComponent_SetClosedLoopAtPosition, bInClosedLoop) == 0x000000, "Member 'SplineComponent_SetClosedLoopAtPosition::bInClosedLoop' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetClosedLoopAtPosition, Key) == 0x000004, "Member 'SplineComponent_SetClosedLoopAtPosition::Key' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetClosedLoopAtPosition, bUpdateSpline) == 0x000008, "Member 'SplineComponent_SetClosedLoopAtPosition::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetDefaultUpVector \ +static_assert(alignof(SplineComponent_SetDefaultUpVector) == 0x000008, "Wrong alignment on SplineComponent_SetDefaultUpVector"); \ +static_assert(sizeof(SplineComponent_SetDefaultUpVector) == 0x000020, "Wrong size on SplineComponent_SetDefaultUpVector"); \ +static_assert(offsetof(SplineComponent_SetDefaultUpVector, UpVector) == 0x000000, "Member 'SplineComponent_SetDefaultUpVector::UpVector' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetDefaultUpVector, CoordinateSpace) == 0x000018, "Member 'SplineComponent_SetDefaultUpVector::CoordinateSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetDrawDebug \ +static_assert(alignof(SplineComponent_SetDrawDebug) == 0x000001, "Wrong alignment on SplineComponent_SetDrawDebug"); \ +static_assert(sizeof(SplineComponent_SetDrawDebug) == 0x000001, "Wrong size on SplineComponent_SetDrawDebug"); \ +static_assert(offsetof(SplineComponent_SetDrawDebug, bShow) == 0x000000, "Member 'SplineComponent_SetDrawDebug::bShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetLocationAtSplinePoint \ +static_assert(alignof(SplineComponent_SetLocationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetLocationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetLocationAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_SetLocationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetLocationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetLocationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetLocationAtSplinePoint, InLocation) == 0x000008, "Member 'SplineComponent_SetLocationAtSplinePoint::InLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetLocationAtSplinePoint, CoordinateSpace) == 0x000020, "Member 'SplineComponent_SetLocationAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetLocationAtSplinePoint, bUpdateSpline) == 0x000021, "Member 'SplineComponent_SetLocationAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetRotationAtSplinePoint \ +static_assert(alignof(SplineComponent_SetRotationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetRotationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetRotationAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_SetRotationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetRotationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetRotationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetRotationAtSplinePoint, InRotation) == 0x000008, "Member 'SplineComponent_SetRotationAtSplinePoint::InRotation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetRotationAtSplinePoint, CoordinateSpace) == 0x000020, "Member 'SplineComponent_SetRotationAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetRotationAtSplinePoint, bUpdateSpline) == 0x000021, "Member 'SplineComponent_SetRotationAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetScaleAtSplinePoint \ +static_assert(alignof(SplineComponent_SetScaleAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetScaleAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetScaleAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_SetScaleAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetScaleAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetScaleAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetScaleAtSplinePoint, InScaleVector) == 0x000008, "Member 'SplineComponent_SetScaleAtSplinePoint::InScaleVector' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetScaleAtSplinePoint, bUpdateSpline) == 0x000020, "Member 'SplineComponent_SetScaleAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetSelectedSplineSegmentColor \ +static_assert(alignof(SplineComponent_SetSelectedSplineSegmentColor) == 0x000004, "Wrong alignment on SplineComponent_SetSelectedSplineSegmentColor"); \ +static_assert(sizeof(SplineComponent_SetSelectedSplineSegmentColor) == 0x000010, "Wrong size on SplineComponent_SetSelectedSplineSegmentColor"); \ +static_assert(offsetof(SplineComponent_SetSelectedSplineSegmentColor, SegmentColor) == 0x000000, "Member 'SplineComponent_SetSelectedSplineSegmentColor::SegmentColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetSplineLocalPoints \ +static_assert(alignof(SplineComponent_SetSplineLocalPoints) == 0x000008, "Wrong alignment on SplineComponent_SetSplineLocalPoints"); \ +static_assert(sizeof(SplineComponent_SetSplineLocalPoints) == 0x000010, "Wrong size on SplineComponent_SetSplineLocalPoints"); \ +static_assert(offsetof(SplineComponent_SetSplineLocalPoints, Points) == 0x000000, "Member 'SplineComponent_SetSplineLocalPoints::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetSplinePoints \ +static_assert(alignof(SplineComponent_SetSplinePoints) == 0x000008, "Wrong alignment on SplineComponent_SetSplinePoints"); \ +static_assert(sizeof(SplineComponent_SetSplinePoints) == 0x000018, "Wrong size on SplineComponent_SetSplinePoints"); \ +static_assert(offsetof(SplineComponent_SetSplinePoints, Points) == 0x000000, "Member 'SplineComponent_SetSplinePoints::Points' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetSplinePoints, CoordinateSpace) == 0x000010, "Member 'SplineComponent_SetSplinePoints::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetSplinePoints, bUpdateSpline) == 0x000011, "Member 'SplineComponent_SetSplinePoints::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetSplinePointType \ +static_assert(alignof(SplineComponent_SetSplinePointType) == 0x000004, "Wrong alignment on SplineComponent_SetSplinePointType"); \ +static_assert(sizeof(SplineComponent_SetSplinePointType) == 0x000008, "Wrong size on SplineComponent_SetSplinePointType"); \ +static_assert(offsetof(SplineComponent_SetSplinePointType, PointIndex) == 0x000000, "Member 'SplineComponent_SetSplinePointType::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetSplinePointType, Type) == 0x000004, "Member 'SplineComponent_SetSplinePointType::Type' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetSplinePointType, bUpdateSpline) == 0x000005, "Member 'SplineComponent_SetSplinePointType::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetSplineWorldPoints \ +static_assert(alignof(SplineComponent_SetSplineWorldPoints) == 0x000008, "Wrong alignment on SplineComponent_SetSplineWorldPoints"); \ +static_assert(sizeof(SplineComponent_SetSplineWorldPoints) == 0x000010, "Wrong size on SplineComponent_SetSplineWorldPoints"); \ +static_assert(offsetof(SplineComponent_SetSplineWorldPoints, Points) == 0x000000, "Member 'SplineComponent_SetSplineWorldPoints::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_SetTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetTangentAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_SetTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentAtSplinePoint, InTangent) == 0x000008, "Member 'SplineComponent_SetTangentAtSplinePoint::InTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentAtSplinePoint, CoordinateSpace) == 0x000020, "Member 'SplineComponent_SetTangentAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentAtSplinePoint, bUpdateSpline) == 0x000021, "Member 'SplineComponent_SetTangentAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetTangentColor \ +static_assert(alignof(SplineComponent_SetTangentColor) == 0x000004, "Wrong alignment on SplineComponent_SetTangentColor"); \ +static_assert(sizeof(SplineComponent_SetTangentColor) == 0x000010, "Wrong size on SplineComponent_SetTangentColor"); \ +static_assert(offsetof(SplineComponent_SetTangentColor, TangentColor) == 0x000000, "Member 'SplineComponent_SetTangentColor::TangentColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetTangentsAtSplinePoint \ +static_assert(alignof(SplineComponent_SetTangentsAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetTangentsAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetTangentsAtSplinePoint) == 0x000040, "Wrong size on SplineComponent_SetTangentsAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetTangentsAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetTangentsAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentsAtSplinePoint, InArriveTangent) == 0x000008, "Member 'SplineComponent_SetTangentsAtSplinePoint::InArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentsAtSplinePoint, InLeaveTangent) == 0x000020, "Member 'SplineComponent_SetTangentsAtSplinePoint::InLeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentsAtSplinePoint, CoordinateSpace) == 0x000038, "Member 'SplineComponent_SetTangentsAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetTangentsAtSplinePoint, bUpdateSpline) == 0x000039, "Member 'SplineComponent_SetTangentsAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetUnselectedSplineSegmentColor \ +static_assert(alignof(SplineComponent_SetUnselectedSplineSegmentColor) == 0x000004, "Wrong alignment on SplineComponent_SetUnselectedSplineSegmentColor"); \ +static_assert(sizeof(SplineComponent_SetUnselectedSplineSegmentColor) == 0x000010, "Wrong size on SplineComponent_SetUnselectedSplineSegmentColor"); \ +static_assert(offsetof(SplineComponent_SetUnselectedSplineSegmentColor, SegmentColor) == 0x000000, "Member 'SplineComponent_SetUnselectedSplineSegmentColor::SegmentColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetUpVectorAtSplinePoint \ +static_assert(alignof(SplineComponent_SetUpVectorAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetUpVectorAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetUpVectorAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_SetUpVectorAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetUpVectorAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetUpVectorAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetUpVectorAtSplinePoint, InUpVector) == 0x000008, "Member 'SplineComponent_SetUpVectorAtSplinePoint::InUpVector' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetUpVectorAtSplinePoint, CoordinateSpace) == 0x000020, "Member 'SplineComponent_SetUpVectorAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetUpVectorAtSplinePoint, bUpdateSpline) == 0x000021, "Member 'SplineComponent_SetUpVectorAtSplinePoint::bUpdateSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_SetWorldLocationAtSplinePoint \ +static_assert(alignof(SplineComponent_SetWorldLocationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_SetWorldLocationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_SetWorldLocationAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_SetWorldLocationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_SetWorldLocationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_SetWorldLocationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_SetWorldLocationAtSplinePoint, InLocation) == 0x000008, "Member 'SplineComponent_SetWorldLocationAtSplinePoint::InLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_ConvertSplineSegmentToPolyLine \ +static_assert(alignof(SplineComponent_ConvertSplineSegmentToPolyLine) == 0x000008, "Wrong alignment on SplineComponent_ConvertSplineSegmentToPolyLine"); \ +static_assert(sizeof(SplineComponent_ConvertSplineSegmentToPolyLine) == 0x000028, "Wrong size on SplineComponent_ConvertSplineSegmentToPolyLine"); \ +static_assert(offsetof(SplineComponent_ConvertSplineSegmentToPolyLine, SplinePointStartIndex) == 0x000000, "Member 'SplineComponent_ConvertSplineSegmentToPolyLine::SplinePointStartIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineSegmentToPolyLine, CoordinateSpace) == 0x000004, "Member 'SplineComponent_ConvertSplineSegmentToPolyLine::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineSegmentToPolyLine, MaxSquareDistanceFromSpline) == 0x000008, "Member 'SplineComponent_ConvertSplineSegmentToPolyLine::MaxSquareDistanceFromSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineSegmentToPolyLine, OutPoints) == 0x000010, "Member 'SplineComponent_ConvertSplineSegmentToPolyLine::OutPoints' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineSegmentToPolyLine, ReturnValue) == 0x000020, "Member 'SplineComponent_ConvertSplineSegmentToPolyLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_ConvertSplineToPolyLine \ +static_assert(alignof(SplineComponent_ConvertSplineToPolyLine) == 0x000008, "Wrong alignment on SplineComponent_ConvertSplineToPolyLine"); \ +static_assert(sizeof(SplineComponent_ConvertSplineToPolyLine) == 0x000020, "Wrong size on SplineComponent_ConvertSplineToPolyLine"); \ +static_assert(offsetof(SplineComponent_ConvertSplineToPolyLine, CoordinateSpace) == 0x000000, "Member 'SplineComponent_ConvertSplineToPolyLine::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineToPolyLine, MaxSquareDistanceFromSpline) == 0x000004, "Member 'SplineComponent_ConvertSplineToPolyLine::MaxSquareDistanceFromSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineToPolyLine, OutPoints) == 0x000008, "Member 'SplineComponent_ConvertSplineToPolyLine::OutPoints' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_ConvertSplineToPolyLine, ReturnValue) == 0x000018, "Member 'SplineComponent_ConvertSplineToPolyLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_DivideSplineIntoPolylineRecursive \ +static_assert(alignof(SplineComponent_DivideSplineIntoPolylineRecursive) == 0x000008, "Wrong alignment on SplineComponent_DivideSplineIntoPolylineRecursive"); \ +static_assert(sizeof(SplineComponent_DivideSplineIntoPolylineRecursive) == 0x000028, "Wrong size on SplineComponent_DivideSplineIntoPolylineRecursive"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, StartDistanceAlongSpline) == 0x000000, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::StartDistanceAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, EndDistanceAlongSpline) == 0x000004, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::EndDistanceAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, CoordinateSpace) == 0x000008, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, MaxSquareDistanceFromSpline) == 0x00000C, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::MaxSquareDistanceFromSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, OutPoints) == 0x000010, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::OutPoints' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursive, ReturnValue) == 0x000020, "Member 'SplineComponent_DivideSplineIntoPolylineRecursive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances \ +static_assert(alignof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances) == 0x000008, "Wrong alignment on SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances"); \ +static_assert(sizeof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances) == 0x000038, "Wrong size on SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, StartDistanceAlongSpline) == 0x000000, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::StartDistanceAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, EndDistanceAlongSpline) == 0x000004, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::EndDistanceAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, CoordinateSpace) == 0x000008, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, MaxSquareDistanceFromSpline) == 0x00000C, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::MaxSquareDistanceFromSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, OutPoints) == 0x000010, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::OutPoints' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, OutDistancesAlongSpline) == 0x000020, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::OutDistancesAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances, ReturnValue) == 0x000030, "Member 'SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindDirectionClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindDirectionClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindDirectionClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindDirectionClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindDirectionClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindDirectionClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindDirectionClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindDirectionClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindDirectionClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindDirectionClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindDirectionClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindInputKeyClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindInputKeyClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindInputKeyClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindInputKeyClosestToWorldLocation) == 0x000020, "Wrong size on SplineComponent_FindInputKeyClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindInputKeyClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindInputKeyClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindInputKeyClosestToWorldLocation, ReturnValue) == 0x000018, "Member 'SplineComponent_FindInputKeyClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindLocationClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindLocationClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindLocationClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindLocationClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindLocationClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindLocationClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindLocationClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindLocationClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindLocationClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindLocationClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindLocationClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindRightVectorClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindRightVectorClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindRightVectorClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindRightVectorClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindRightVectorClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindRightVectorClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindRightVectorClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRightVectorClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindRightVectorClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRightVectorClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindRightVectorClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindRollClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindRollClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindRollClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindRollClosestToWorldLocation) == 0x000020, "Wrong size on SplineComponent_FindRollClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindRollClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindRollClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRollClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindRollClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRollClosestToWorldLocation, ReturnValue) == 0x00001C, "Member 'SplineComponent_FindRollClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindRotationClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindRotationClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindRotationClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindRotationClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindRotationClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindRotationClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindRotationClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRotationClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindRotationClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindRotationClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindRotationClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindScaleClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindScaleClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindScaleClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindScaleClosestToWorldLocation) == 0x000030, "Wrong size on SplineComponent_FindScaleClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindScaleClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindScaleClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindScaleClosestToWorldLocation, ReturnValue) == 0x000018, "Member 'SplineComponent_FindScaleClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindTangentClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindTangentClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindTangentClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindTangentClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindTangentClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindTangentClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindTangentClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindTangentClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindTangentClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindTangentClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindTangentClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindTransformClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindTransformClosestToWorldLocation) == 0x000010, "Wrong alignment on SplineComponent_FindTransformClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindTransformClosestToWorldLocation) == 0x000080, "Wrong size on SplineComponent_FindTransformClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindTransformClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindTransformClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindTransformClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindTransformClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindTransformClosestToWorldLocation, bUseScale) == 0x000019, "Member 'SplineComponent_FindTransformClosestToWorldLocation::bUseScale' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindTransformClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindTransformClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_FindUpVectorClosestToWorldLocation \ +static_assert(alignof(SplineComponent_FindUpVectorClosestToWorldLocation) == 0x000008, "Wrong alignment on SplineComponent_FindUpVectorClosestToWorldLocation"); \ +static_assert(sizeof(SplineComponent_FindUpVectorClosestToWorldLocation) == 0x000038, "Wrong size on SplineComponent_FindUpVectorClosestToWorldLocation"); \ +static_assert(offsetof(SplineComponent_FindUpVectorClosestToWorldLocation, WorldLocation) == 0x000000, "Member 'SplineComponent_FindUpVectorClosestToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindUpVectorClosestToWorldLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_FindUpVectorClosestToWorldLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_FindUpVectorClosestToWorldLocation, ReturnValue) == 0x000020, "Member 'SplineComponent_FindUpVectorClosestToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetArriveTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_GetArriveTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetArriveTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetArriveTangentAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetArriveTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetArriveTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetArriveTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetArriveTangentAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetArriveTangentAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetArriveTangentAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetArriveTangentAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDefaultUpVector \ +static_assert(alignof(SplineComponent_GetDefaultUpVector) == 0x000008, "Wrong alignment on SplineComponent_GetDefaultUpVector"); \ +static_assert(sizeof(SplineComponent_GetDefaultUpVector) == 0x000020, "Wrong size on SplineComponent_GetDefaultUpVector"); \ +static_assert(offsetof(SplineComponent_GetDefaultUpVector, CoordinateSpace) == 0x000000, "Member 'SplineComponent_GetDefaultUpVector::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDefaultUpVector, ReturnValue) == 0x000008, "Member 'SplineComponent_GetDefaultUpVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDirectionAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetDirectionAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetDirectionAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetDirectionAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetDirectionAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetDirectionAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetDirectionAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetDirectionAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDirectionAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetDirectionAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetDirectionAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetDirectionAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetDirectionAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetDirectionAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetDirectionAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetDirectionAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDirectionAtSplinePoint \ +static_assert(alignof(SplineComponent_GetDirectionAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetDirectionAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetDirectionAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetDirectionAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetDirectionAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetDirectionAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetDirectionAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDirectionAtTime \ +static_assert(alignof(SplineComponent_GetDirectionAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetDirectionAtTime"); \ +static_assert(sizeof(SplineComponent_GetDirectionAtTime) == 0x000020, "Wrong size on SplineComponent_GetDirectionAtTime"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtTime, Time) == 0x000000, "Member 'SplineComponent_GetDirectionAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetDirectionAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetDirectionAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDirectionAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetDirectionAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDistanceAlongSplineAtLocation \ +static_assert(alignof(SplineComponent_GetDistanceAlongSplineAtLocation) == 0x000008, "Wrong alignment on SplineComponent_GetDistanceAlongSplineAtLocation"); \ +static_assert(sizeof(SplineComponent_GetDistanceAlongSplineAtLocation) == 0x000020, "Wrong size on SplineComponent_GetDistanceAlongSplineAtLocation"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtLocation, InLocation) == 0x000000, "Member 'SplineComponent_GetDistanceAlongSplineAtLocation::InLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtLocation, CoordinateSpace) == 0x000018, "Member 'SplineComponent_GetDistanceAlongSplineAtLocation::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtLocation, ReturnValue) == 0x00001C, "Member 'SplineComponent_GetDistanceAlongSplineAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDistanceAlongSplineAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetDistanceAlongSplineAtSplineInputKey) == 0x000004, "Wrong alignment on SplineComponent_GetDistanceAlongSplineAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetDistanceAlongSplineAtSplineInputKey) == 0x000008, "Wrong size on SplineComponent_GetDistanceAlongSplineAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetDistanceAlongSplineAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtSplineInputKey, ReturnValue) == 0x000004, "Member 'SplineComponent_GetDistanceAlongSplineAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetDistanceAlongSplineAtSplinePoint \ +static_assert(alignof(SplineComponent_GetDistanceAlongSplineAtSplinePoint) == 0x000004, "Wrong alignment on SplineComponent_GetDistanceAlongSplineAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetDistanceAlongSplineAtSplinePoint) == 0x000008, "Wrong size on SplineComponent_GetDistanceAlongSplineAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetDistanceAlongSplineAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetDistanceAlongSplineAtSplinePoint, ReturnValue) == 0x000004, "Member 'SplineComponent_GetDistanceAlongSplineAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetFloatPropertyAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetFloatPropertyAtSplineInputKey) == 0x000004, "Wrong alignment on SplineComponent_GetFloatPropertyAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetFloatPropertyAtSplineInputKey) == 0x000010, "Wrong size on SplineComponent_GetFloatPropertyAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetFloatPropertyAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplineInputKey, PropertyName) == 0x000004, "Member 'SplineComponent_GetFloatPropertyAtSplineInputKey::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplineInputKey, ReturnValue) == 0x00000C, "Member 'SplineComponent_GetFloatPropertyAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetFloatPropertyAtSplinePoint \ +static_assert(alignof(SplineComponent_GetFloatPropertyAtSplinePoint) == 0x000004, "Wrong alignment on SplineComponent_GetFloatPropertyAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetFloatPropertyAtSplinePoint) == 0x000010, "Wrong size on SplineComponent_GetFloatPropertyAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplinePoint, Index_0) == 0x000000, "Member 'SplineComponent_GetFloatPropertyAtSplinePoint::Index_0' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplinePoint, PropertyName) == 0x000004, "Member 'SplineComponent_GetFloatPropertyAtSplinePoint::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetFloatPropertyAtSplinePoint, ReturnValue) == 0x00000C, "Member 'SplineComponent_GetFloatPropertyAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetInputKeyAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetInputKeyAtDistanceAlongSpline) == 0x000004, "Wrong alignment on SplineComponent_GetInputKeyAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetInputKeyAtDistanceAlongSpline) == 0x000008, "Wrong size on SplineComponent_GetInputKeyAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetInputKeyAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetInputKeyAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetInputKeyAtDistanceAlongSpline, ReturnValue) == 0x000004, "Member 'SplineComponent_GetInputKeyAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetInputKeyValueAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetInputKeyValueAtDistanceAlongSpline) == 0x000004, "Wrong alignment on SplineComponent_GetInputKeyValueAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetInputKeyValueAtDistanceAlongSpline) == 0x000008, "Wrong size on SplineComponent_GetInputKeyValueAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetInputKeyValueAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetInputKeyValueAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetInputKeyValueAtDistanceAlongSpline, ReturnValue) == 0x000004, "Member 'SplineComponent_GetInputKeyValueAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetInputKeyValueAtSplinePoint \ +static_assert(alignof(SplineComponent_GetInputKeyValueAtSplinePoint) == 0x000004, "Wrong alignment on SplineComponent_GetInputKeyValueAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetInputKeyValueAtSplinePoint) == 0x000008, "Wrong size on SplineComponent_GetInputKeyValueAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetInputKeyValueAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetInputKeyValueAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetInputKeyValueAtSplinePoint, ReturnValue) == 0x000004, "Member 'SplineComponent_GetInputKeyValueAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLeaveTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_GetLeaveTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetLeaveTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetLeaveTangentAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetLeaveTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetLeaveTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetLeaveTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLeaveTangentAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetLeaveTangentAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLeaveTangentAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetLeaveTangentAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocalLocationAndTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_GetLocalLocationAndTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetLocalLocationAndTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetLocalLocationAndTangentAtSplinePoint) == 0x000038, "Wrong size on SplineComponent_GetLocalLocationAndTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetLocalLocationAndTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetLocalLocationAndTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocalLocationAndTangentAtSplinePoint, LocalLocation) == 0x000008, "Member 'SplineComponent_GetLocalLocationAndTangentAtSplinePoint::LocalLocation' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocalLocationAndTangentAtSplinePoint, LocalTangent) == 0x000020, "Member 'SplineComponent_GetLocalLocationAndTangentAtSplinePoint::LocalTangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocationAndTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_GetLocationAndTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetLocationAndTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetLocationAndTangentAtSplinePoint) == 0x000040, "Wrong size on SplineComponent_GetLocationAndTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetLocationAndTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetLocationAndTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAndTangentAtSplinePoint, Location) == 0x000008, "Member 'SplineComponent_GetLocationAndTangentAtSplinePoint::Location' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAndTangentAtSplinePoint, Tangent) == 0x000020, "Member 'SplineComponent_GetLocationAndTangentAtSplinePoint::Tangent' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAndTangentAtSplinePoint, CoordinateSpace) == 0x000038, "Member 'SplineComponent_GetLocationAndTangentAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocationAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetLocationAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetLocationAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetLocationAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetLocationAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetLocationAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetLocationAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetLocationAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetLocationAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocationAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetLocationAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetLocationAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetLocationAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetLocationAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetLocationAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetLocationAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetLocationAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocationAtSplinePoint \ +static_assert(alignof(SplineComponent_GetLocationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetLocationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetLocationAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetLocationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetLocationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetLocationAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetLocationAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetLocationAtTime \ +static_assert(alignof(SplineComponent_GetLocationAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetLocationAtTime"); \ +static_assert(sizeof(SplineComponent_GetLocationAtTime) == 0x000020, "Wrong size on SplineComponent_GetLocationAtTime"); \ +static_assert(offsetof(SplineComponent_GetLocationAtTime, Time) == 0x000000, "Member 'SplineComponent_GetLocationAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetLocationAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetLocationAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetLocationAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetLocationAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetNumberOfSplinePoints \ +static_assert(alignof(SplineComponent_GetNumberOfSplinePoints) == 0x000004, "Wrong alignment on SplineComponent_GetNumberOfSplinePoints"); \ +static_assert(sizeof(SplineComponent_GetNumberOfSplinePoints) == 0x000004, "Wrong size on SplineComponent_GetNumberOfSplinePoints"); \ +static_assert(offsetof(SplineComponent_GetNumberOfSplinePoints, ReturnValue) == 0x000000, "Member 'SplineComponent_GetNumberOfSplinePoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetNumberOfSplineSegments \ +static_assert(alignof(SplineComponent_GetNumberOfSplineSegments) == 0x000004, "Wrong alignment on SplineComponent_GetNumberOfSplineSegments"); \ +static_assert(sizeof(SplineComponent_GetNumberOfSplineSegments) == 0x000004, "Wrong size on SplineComponent_GetNumberOfSplineSegments"); \ +static_assert(offsetof(SplineComponent_GetNumberOfSplineSegments, ReturnValue) == 0x000000, "Member 'SplineComponent_GetNumberOfSplineSegments::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRightVectorAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetRightVectorAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetRightVectorAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetRightVectorAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetRightVectorAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetRightVectorAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRightVectorAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRightVectorAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRightVectorAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetRightVectorAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetRightVectorAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetRightVectorAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetRightVectorAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetRightVectorAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRightVectorAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRightVectorAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRightVectorAtSplinePoint \ +static_assert(alignof(SplineComponent_GetRightVectorAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetRightVectorAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetRightVectorAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetRightVectorAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetRightVectorAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRightVectorAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRightVectorAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRightVectorAtTime \ +static_assert(alignof(SplineComponent_GetRightVectorAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetRightVectorAtTime"); \ +static_assert(sizeof(SplineComponent_GetRightVectorAtTime) == 0x000020, "Wrong size on SplineComponent_GetRightVectorAtTime"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtTime, Time) == 0x000000, "Member 'SplineComponent_GetRightVectorAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRightVectorAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetRightVectorAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRightVectorAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRightVectorAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRollAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetRollAtDistanceAlongSpline) == 0x000004, "Wrong alignment on SplineComponent_GetRollAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetRollAtDistanceAlongSpline) == 0x00000C, "Wrong size on SplineComponent_GetRollAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetRollAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetRollAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRollAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRollAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRollAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetRollAtSplineInputKey) == 0x000004, "Wrong alignment on SplineComponent_GetRollAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetRollAtSplineInputKey) == 0x00000C, "Wrong size on SplineComponent_GetRollAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetRollAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRollAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRollAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRollAtSplinePoint \ +static_assert(alignof(SplineComponent_GetRollAtSplinePoint) == 0x000004, "Wrong alignment on SplineComponent_GetRollAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetRollAtSplinePoint) == 0x00000C, "Wrong size on SplineComponent_GetRollAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetRollAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRollAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRollAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRollAtTime \ +static_assert(alignof(SplineComponent_GetRollAtTime) == 0x000004, "Wrong alignment on SplineComponent_GetRollAtTime"); \ +static_assert(sizeof(SplineComponent_GetRollAtTime) == 0x00000C, "Wrong size on SplineComponent_GetRollAtTime"); \ +static_assert(offsetof(SplineComponent_GetRollAtTime, Time) == 0x000000, "Member 'SplineComponent_GetRollAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRollAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetRollAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRollAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRollAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRotationAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetRotationAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetRotationAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetRotationAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetRotationAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetRotationAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetRotationAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRotationAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRotationAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRotationAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetRotationAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetRotationAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetRotationAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetRotationAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetRotationAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRotationAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRotationAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRotationAtSplinePoint \ +static_assert(alignof(SplineComponent_GetRotationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetRotationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetRotationAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetRotationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetRotationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRotationAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRotationAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetRotationAtTime \ +static_assert(alignof(SplineComponent_GetRotationAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetRotationAtTime"); \ +static_assert(sizeof(SplineComponent_GetRotationAtTime) == 0x000020, "Wrong size on SplineComponent_GetRotationAtTime"); \ +static_assert(offsetof(SplineComponent_GetRotationAtTime, Time) == 0x000000, "Member 'SplineComponent_GetRotationAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetRotationAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetRotationAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetRotationAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetRotationAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetScaleAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetScaleAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetScaleAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetScaleAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetScaleAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetScaleAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetScaleAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetScaleAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetScaleAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetScaleAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetScaleAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetScaleAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetScaleAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetScaleAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetScaleAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetScaleAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetScaleAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetScaleAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetScaleAtSplinePoint \ +static_assert(alignof(SplineComponent_GetScaleAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetScaleAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetScaleAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetScaleAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetScaleAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetScaleAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetScaleAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetScaleAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetScaleAtTime \ +static_assert(alignof(SplineComponent_GetScaleAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetScaleAtTime"); \ +static_assert(sizeof(SplineComponent_GetScaleAtTime) == 0x000020, "Wrong size on SplineComponent_GetScaleAtTime"); \ +static_assert(offsetof(SplineComponent_GetScaleAtTime, Time) == 0x000000, "Member 'SplineComponent_GetScaleAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetScaleAtTime, bUseConstantVelocity) == 0x000004, "Member 'SplineComponent_GetScaleAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetScaleAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetScaleAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetSplineLength \ +static_assert(alignof(SplineComponent_GetSplineLength) == 0x000004, "Wrong alignment on SplineComponent_GetSplineLength"); \ +static_assert(sizeof(SplineComponent_GetSplineLength) == 0x000004, "Wrong size on SplineComponent_GetSplineLength"); \ +static_assert(offsetof(SplineComponent_GetSplineLength, ReturnValue) == 0x000000, "Member 'SplineComponent_GetSplineLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetSplinePointAt \ +static_assert(alignof(SplineComponent_GetSplinePointAt) == 0x000008, "Wrong alignment on SplineComponent_GetSplinePointAt"); \ +static_assert(sizeof(SplineComponent_GetSplinePointAt) == 0x000090, "Wrong size on SplineComponent_GetSplinePointAt"); \ +static_assert(offsetof(SplineComponent_GetSplinePointAt, PointIndex) == 0x000000, "Member 'SplineComponent_GetSplinePointAt::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetSplinePointAt, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetSplinePointAt::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetSplinePointAt, ReturnValue) == 0x000008, "Member 'SplineComponent_GetSplinePointAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetSplinePointType \ +static_assert(alignof(SplineComponent_GetSplinePointType) == 0x000004, "Wrong alignment on SplineComponent_GetSplinePointType"); \ +static_assert(sizeof(SplineComponent_GetSplinePointType) == 0x000008, "Wrong size on SplineComponent_GetSplinePointType"); \ +static_assert(offsetof(SplineComponent_GetSplinePointType, PointIndex) == 0x000000, "Member 'SplineComponent_GetSplinePointType::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetSplinePointType, ReturnValue) == 0x000004, "Member 'SplineComponent_GetSplinePointType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTangentAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetTangentAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetTangentAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetTangentAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetTangentAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetTangentAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetTangentAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTangentAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetTangentAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTangentAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetTangentAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetTangentAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetTangentAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetTangentAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetTangentAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTangentAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetTangentAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTangentAtSplinePoint \ +static_assert(alignof(SplineComponent_GetTangentAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetTangentAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetTangentAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetTangentAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetTangentAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTangentAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetTangentAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTangentAtTime \ +static_assert(alignof(SplineComponent_GetTangentAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetTangentAtTime"); \ +static_assert(sizeof(SplineComponent_GetTangentAtTime) == 0x000020, "Wrong size on SplineComponent_GetTangentAtTime"); \ +static_assert(offsetof(SplineComponent_GetTangentAtTime, Time) == 0x000000, "Member 'SplineComponent_GetTangentAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTangentAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetTangentAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTangentAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetTangentAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTimeAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetTimeAtDistanceAlongSpline) == 0x000004, "Wrong alignment on SplineComponent_GetTimeAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetTimeAtDistanceAlongSpline) == 0x000008, "Wrong size on SplineComponent_GetTimeAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetTimeAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetTimeAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTimeAtDistanceAlongSpline, ReturnValue) == 0x000004, "Member 'SplineComponent_GetTimeAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTransformAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetTransformAtDistanceAlongSpline) == 0x000010, "Wrong alignment on SplineComponent_GetTransformAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetTransformAtDistanceAlongSpline) == 0x000070, "Wrong size on SplineComponent_GetTransformAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetTransformAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetTransformAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTransformAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtDistanceAlongSpline, bUseScale) == 0x000005, "Member 'SplineComponent_GetTransformAtDistanceAlongSpline::bUseScale' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtDistanceAlongSpline, ReturnValue) == 0x000010, "Member 'SplineComponent_GetTransformAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTransformAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetTransformAtSplineInputKey) == 0x000010, "Wrong alignment on SplineComponent_GetTransformAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetTransformAtSplineInputKey) == 0x000070, "Wrong size on SplineComponent_GetTransformAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetTransformAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTransformAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplineInputKey, bUseScale) == 0x000005, "Member 'SplineComponent_GetTransformAtSplineInputKey::bUseScale' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplineInputKey, ReturnValue) == 0x000010, "Member 'SplineComponent_GetTransformAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTransformAtSplinePoint \ +static_assert(alignof(SplineComponent_GetTransformAtSplinePoint) == 0x000010, "Wrong alignment on SplineComponent_GetTransformAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetTransformAtSplinePoint) == 0x000070, "Wrong size on SplineComponent_GetTransformAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetTransformAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTransformAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplinePoint, bUseScale) == 0x000005, "Member 'SplineComponent_GetTransformAtSplinePoint::bUseScale' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtSplinePoint, ReturnValue) == 0x000010, "Member 'SplineComponent_GetTransformAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetTransformAtTime \ +static_assert(alignof(SplineComponent_GetTransformAtTime) == 0x000010, "Wrong alignment on SplineComponent_GetTransformAtTime"); \ +static_assert(sizeof(SplineComponent_GetTransformAtTime) == 0x000070, "Wrong size on SplineComponent_GetTransformAtTime"); \ +static_assert(offsetof(SplineComponent_GetTransformAtTime, Time) == 0x000000, "Member 'SplineComponent_GetTransformAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetTransformAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetTransformAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtTime, bUseScale) == 0x000006, "Member 'SplineComponent_GetTransformAtTime::bUseScale' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetTransformAtTime, ReturnValue) == 0x000010, "Member 'SplineComponent_GetTransformAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetUpVectorAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetUpVectorAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetUpVectorAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetUpVectorAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetUpVectorAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetUpVectorAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtDistanceAlongSpline, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetUpVectorAtDistanceAlongSpline::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetUpVectorAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetUpVectorAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetUpVectorAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetUpVectorAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetUpVectorAtSplineInputKey) == 0x000020, "Wrong size on SplineComponent_GetUpVectorAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetUpVectorAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplineInputKey, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetUpVectorAtSplineInputKey::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplineInputKey, ReturnValue) == 0x000008, "Member 'SplineComponent_GetUpVectorAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetUpVectorAtSplinePoint \ +static_assert(alignof(SplineComponent_GetUpVectorAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetUpVectorAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetUpVectorAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetUpVectorAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetUpVectorAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplinePoint, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetUpVectorAtSplinePoint::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetUpVectorAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetUpVectorAtTime \ +static_assert(alignof(SplineComponent_GetUpVectorAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetUpVectorAtTime"); \ +static_assert(sizeof(SplineComponent_GetUpVectorAtTime) == 0x000020, "Wrong size on SplineComponent_GetUpVectorAtTime"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtTime, Time) == 0x000000, "Member 'SplineComponent_GetUpVectorAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtTime, CoordinateSpace) == 0x000004, "Member 'SplineComponent_GetUpVectorAtTime::CoordinateSpace' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtTime, bUseConstantVelocity) == 0x000005, "Member 'SplineComponent_GetUpVectorAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetUpVectorAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetUpVectorAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetVectorPropertyAtSplineInputKey \ +static_assert(alignof(SplineComponent_GetVectorPropertyAtSplineInputKey) == 0x000008, "Wrong alignment on SplineComponent_GetVectorPropertyAtSplineInputKey"); \ +static_assert(sizeof(SplineComponent_GetVectorPropertyAtSplineInputKey) == 0x000028, "Wrong size on SplineComponent_GetVectorPropertyAtSplineInputKey"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplineInputKey, InKey) == 0x000000, "Member 'SplineComponent_GetVectorPropertyAtSplineInputKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplineInputKey, PropertyName) == 0x000004, "Member 'SplineComponent_GetVectorPropertyAtSplineInputKey::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplineInputKey, ReturnValue) == 0x000010, "Member 'SplineComponent_GetVectorPropertyAtSplineInputKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetVectorPropertyAtSplinePoint \ +static_assert(alignof(SplineComponent_GetVectorPropertyAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetVectorPropertyAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetVectorPropertyAtSplinePoint) == 0x000028, "Wrong size on SplineComponent_GetVectorPropertyAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplinePoint, Index_0) == 0x000000, "Member 'SplineComponent_GetVectorPropertyAtSplinePoint::Index_0' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplinePoint, PropertyName) == 0x000004, "Member 'SplineComponent_GetVectorPropertyAtSplinePoint::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetVectorPropertyAtSplinePoint, ReturnValue) == 0x000010, "Member 'SplineComponent_GetVectorPropertyAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldDirectionAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetWorldDirectionAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetWorldDirectionAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetWorldDirectionAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetWorldDirectionAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetWorldDirectionAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetWorldDirectionAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldDirectionAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldDirectionAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldDirectionAtTime \ +static_assert(alignof(SplineComponent_GetWorldDirectionAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetWorldDirectionAtTime"); \ +static_assert(sizeof(SplineComponent_GetWorldDirectionAtTime) == 0x000020, "Wrong size on SplineComponent_GetWorldDirectionAtTime"); \ +static_assert(offsetof(SplineComponent_GetWorldDirectionAtTime, Time) == 0x000000, "Member 'SplineComponent_GetWorldDirectionAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldDirectionAtTime, bUseConstantVelocity) == 0x000004, "Member 'SplineComponent_GetWorldDirectionAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldDirectionAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldDirectionAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldLocationAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetWorldLocationAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetWorldLocationAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetWorldLocationAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetWorldLocationAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetWorldLocationAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldLocationAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldLocationAtSplinePoint \ +static_assert(alignof(SplineComponent_GetWorldLocationAtSplinePoint) == 0x000008, "Wrong alignment on SplineComponent_GetWorldLocationAtSplinePoint"); \ +static_assert(sizeof(SplineComponent_GetWorldLocationAtSplinePoint) == 0x000020, "Wrong size on SplineComponent_GetWorldLocationAtSplinePoint"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtSplinePoint, PointIndex) == 0x000000, "Member 'SplineComponent_GetWorldLocationAtSplinePoint::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtSplinePoint, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldLocationAtSplinePoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldLocationAtTime \ +static_assert(alignof(SplineComponent_GetWorldLocationAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetWorldLocationAtTime"); \ +static_assert(sizeof(SplineComponent_GetWorldLocationAtTime) == 0x000020, "Wrong size on SplineComponent_GetWorldLocationAtTime"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtTime, Time) == 0x000000, "Member 'SplineComponent_GetWorldLocationAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtTime, bUseConstantVelocity) == 0x000004, "Member 'SplineComponent_GetWorldLocationAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldLocationAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldLocationAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldRotationAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetWorldRotationAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetWorldRotationAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetWorldRotationAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetWorldRotationAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetWorldRotationAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetWorldRotationAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldRotationAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldRotationAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldRotationAtTime \ +static_assert(alignof(SplineComponent_GetWorldRotationAtTime) == 0x000008, "Wrong alignment on SplineComponent_GetWorldRotationAtTime"); \ +static_assert(sizeof(SplineComponent_GetWorldRotationAtTime) == 0x000020, "Wrong size on SplineComponent_GetWorldRotationAtTime"); \ +static_assert(offsetof(SplineComponent_GetWorldRotationAtTime, Time) == 0x000000, "Member 'SplineComponent_GetWorldRotationAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldRotationAtTime, bUseConstantVelocity) == 0x000004, "Member 'SplineComponent_GetWorldRotationAtTime::bUseConstantVelocity' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldRotationAtTime, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldRotationAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_GetWorldTangentAtDistanceAlongSpline \ +static_assert(alignof(SplineComponent_GetWorldTangentAtDistanceAlongSpline) == 0x000008, "Wrong alignment on SplineComponent_GetWorldTangentAtDistanceAlongSpline"); \ +static_assert(sizeof(SplineComponent_GetWorldTangentAtDistanceAlongSpline) == 0x000020, "Wrong size on SplineComponent_GetWorldTangentAtDistanceAlongSpline"); \ +static_assert(offsetof(SplineComponent_GetWorldTangentAtDistanceAlongSpline, Distance) == 0x000000, "Member 'SplineComponent_GetWorldTangentAtDistanceAlongSpline::Distance' has a wrong offset!"); \ +static_assert(offsetof(SplineComponent_GetWorldTangentAtDistanceAlongSpline, ReturnValue) == 0x000008, "Member 'SplineComponent_GetWorldTangentAtDistanceAlongSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineComponent_IsClosedLoop \ +static_assert(alignof(SplineComponent_IsClosedLoop) == 0x000001, "Wrong alignment on SplineComponent_IsClosedLoop"); \ +static_assert(sizeof(SplineComponent_IsClosedLoop) == 0x000001, "Wrong size on SplineComponent_IsClosedLoop"); \ +static_assert(offsetof(SplineComponent_IsClosedLoop, ReturnValue) == 0x000000, "Member 'SplineComponent_IsClosedLoop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USplineComponent \ +static_assert(alignof(USplineComponent) == 0x000010, "Wrong alignment on USplineComponent"); \ +static_assert(sizeof(USplineComponent) == 0x000670, "Wrong size on USplineComponent"); \ +static_assert(offsetof(USplineComponent, SplineCurves) == 0x000570, "Member 'USplineComponent::SplineCurves' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, SplineInfo) == 0x0005E0, "Member 'USplineComponent::SplineInfo' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, SplineRotInfo) == 0x0005F8, "Member 'USplineComponent::SplineRotInfo' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, SplineScaleInfo) == 0x000610, "Member 'USplineComponent::SplineScaleInfo' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, SplineReparamTable) == 0x000628, "Member 'USplineComponent::SplineReparamTable' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bAllowSplineEditingPerInstance) == 0x000640, "Member 'USplineComponent::bAllowSplineEditingPerInstance' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, ReparamStepsPerSegment) == 0x000644, "Member 'USplineComponent::ReparamStepsPerSegment' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, Duration) == 0x000648, "Member 'USplineComponent::Duration' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bStationaryEndpoints) == 0x00064C, "Member 'USplineComponent::bStationaryEndpoints' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bSplineHasBeenEdited) == 0x00064D, "Member 'USplineComponent::bSplineHasBeenEdited' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bModifiedByConstructionScript) == 0x00064E, "Member 'USplineComponent::bModifiedByConstructionScript' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bInputSplinePointsToConstructionScript) == 0x00064F, "Member 'USplineComponent::bInputSplinePointsToConstructionScript' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bDrawDebug) == 0x000650, "Member 'USplineComponent::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bClosedLoop) == 0x000651, "Member 'USplineComponent::bClosedLoop' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, bLoopPositionOverride) == 0x000652, "Member 'USplineComponent::bLoopPositionOverride' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, LoopPosition) == 0x000654, "Member 'USplineComponent::LoopPosition' has a wrong offset!"); \ +static_assert(offsetof(USplineComponent, DefaultUpVector) == 0x000658, "Member 'USplineComponent::DefaultUpVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetBoundaryMax \ +static_assert(alignof(SplineMeshComponent_SetBoundaryMax) == 0x000004, "Wrong alignment on SplineMeshComponent_SetBoundaryMax"); \ +static_assert(sizeof(SplineMeshComponent_SetBoundaryMax) == 0x000008, "Wrong size on SplineMeshComponent_SetBoundaryMax"); \ +static_assert(offsetof(SplineMeshComponent_SetBoundaryMax, InBoundaryMax) == 0x000000, "Member 'SplineMeshComponent_SetBoundaryMax::InBoundaryMax' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetBoundaryMax, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetBoundaryMax::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetBoundaryMin \ +static_assert(alignof(SplineMeshComponent_SetBoundaryMin) == 0x000004, "Wrong alignment on SplineMeshComponent_SetBoundaryMin"); \ +static_assert(sizeof(SplineMeshComponent_SetBoundaryMin) == 0x000008, "Wrong size on SplineMeshComponent_SetBoundaryMin"); \ +static_assert(offsetof(SplineMeshComponent_SetBoundaryMin, InBoundaryMin) == 0x000000, "Member 'SplineMeshComponent_SetBoundaryMin::InBoundaryMin' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetBoundaryMin, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetBoundaryMin::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndOffset \ +static_assert(alignof(SplineMeshComponent_SetEndOffset) == 0x000008, "Wrong alignment on SplineMeshComponent_SetEndOffset"); \ +static_assert(sizeof(SplineMeshComponent_SetEndOffset) == 0x000018, "Wrong size on SplineMeshComponent_SetEndOffset"); \ +static_assert(offsetof(SplineMeshComponent_SetEndOffset, EndOffset) == 0x000000, "Member 'SplineMeshComponent_SetEndOffset::EndOffset' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndOffset, bUpdateMesh) == 0x000010, "Member 'SplineMeshComponent_SetEndOffset::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndPosition \ +static_assert(alignof(SplineMeshComponent_SetEndPosition) == 0x000008, "Wrong alignment on SplineMeshComponent_SetEndPosition"); \ +static_assert(sizeof(SplineMeshComponent_SetEndPosition) == 0x000020, "Wrong size on SplineMeshComponent_SetEndPosition"); \ +static_assert(offsetof(SplineMeshComponent_SetEndPosition, EndPos) == 0x000000, "Member 'SplineMeshComponent_SetEndPosition::EndPos' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndPosition, bUpdateMesh) == 0x000018, "Member 'SplineMeshComponent_SetEndPosition::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndRoll \ +static_assert(alignof(SplineMeshComponent_SetEndRoll) == 0x000004, "Wrong alignment on SplineMeshComponent_SetEndRoll"); \ +static_assert(sizeof(SplineMeshComponent_SetEndRoll) == 0x000008, "Wrong size on SplineMeshComponent_SetEndRoll"); \ +static_assert(offsetof(SplineMeshComponent_SetEndRoll, EndRoll) == 0x000000, "Member 'SplineMeshComponent_SetEndRoll::EndRoll' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndRoll, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetEndRoll::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndRollDegrees \ +static_assert(alignof(SplineMeshComponent_SetEndRollDegrees) == 0x000004, "Wrong alignment on SplineMeshComponent_SetEndRollDegrees"); \ +static_assert(sizeof(SplineMeshComponent_SetEndRollDegrees) == 0x000008, "Wrong size on SplineMeshComponent_SetEndRollDegrees"); \ +static_assert(offsetof(SplineMeshComponent_SetEndRollDegrees, EndRollDegrees) == 0x000000, "Member 'SplineMeshComponent_SetEndRollDegrees::EndRollDegrees' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndRollDegrees, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetEndRollDegrees::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndScale \ +static_assert(alignof(SplineMeshComponent_SetEndScale) == 0x000008, "Wrong alignment on SplineMeshComponent_SetEndScale"); \ +static_assert(sizeof(SplineMeshComponent_SetEndScale) == 0x000018, "Wrong size on SplineMeshComponent_SetEndScale"); \ +static_assert(offsetof(SplineMeshComponent_SetEndScale, EndScale) == 0x000000, "Member 'SplineMeshComponent_SetEndScale::EndScale' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndScale, bUpdateMesh) == 0x000010, "Member 'SplineMeshComponent_SetEndScale::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetEndTangent \ +static_assert(alignof(SplineMeshComponent_SetEndTangent) == 0x000008, "Wrong alignment on SplineMeshComponent_SetEndTangent"); \ +static_assert(sizeof(SplineMeshComponent_SetEndTangent) == 0x000020, "Wrong size on SplineMeshComponent_SetEndTangent"); \ +static_assert(offsetof(SplineMeshComponent_SetEndTangent, EndTangent) == 0x000000, "Member 'SplineMeshComponent_SetEndTangent::EndTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetEndTangent, bUpdateMesh) == 0x000018, "Member 'SplineMeshComponent_SetEndTangent::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetForwardAxis \ +static_assert(alignof(SplineMeshComponent_SetForwardAxis) == 0x000001, "Wrong alignment on SplineMeshComponent_SetForwardAxis"); \ +static_assert(sizeof(SplineMeshComponent_SetForwardAxis) == 0x000002, "Wrong size on SplineMeshComponent_SetForwardAxis"); \ +static_assert(offsetof(SplineMeshComponent_SetForwardAxis, InForwardAxis) == 0x000000, "Member 'SplineMeshComponent_SetForwardAxis::InForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetForwardAxis, bUpdateMesh) == 0x000001, "Member 'SplineMeshComponent_SetForwardAxis::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetSplineUpDir \ +static_assert(alignof(SplineMeshComponent_SetSplineUpDir) == 0x000008, "Wrong alignment on SplineMeshComponent_SetSplineUpDir"); \ +static_assert(sizeof(SplineMeshComponent_SetSplineUpDir) == 0x000020, "Wrong size on SplineMeshComponent_SetSplineUpDir"); \ +static_assert(offsetof(SplineMeshComponent_SetSplineUpDir, InSplineUpDir) == 0x000000, "Member 'SplineMeshComponent_SetSplineUpDir::InSplineUpDir' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetSplineUpDir, bUpdateMesh) == 0x000018, "Member 'SplineMeshComponent_SetSplineUpDir::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartAndEnd \ +static_assert(alignof(SplineMeshComponent_SetStartAndEnd) == 0x000008, "Wrong alignment on SplineMeshComponent_SetStartAndEnd"); \ +static_assert(sizeof(SplineMeshComponent_SetStartAndEnd) == 0x000068, "Wrong size on SplineMeshComponent_SetStartAndEnd"); \ +static_assert(offsetof(SplineMeshComponent_SetStartAndEnd, StartPos) == 0x000000, "Member 'SplineMeshComponent_SetStartAndEnd::StartPos' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartAndEnd, StartTangent) == 0x000018, "Member 'SplineMeshComponent_SetStartAndEnd::StartTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartAndEnd, EndPos) == 0x000030, "Member 'SplineMeshComponent_SetStartAndEnd::EndPos' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartAndEnd, EndTangent) == 0x000048, "Member 'SplineMeshComponent_SetStartAndEnd::EndTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartAndEnd, bUpdateMesh) == 0x000060, "Member 'SplineMeshComponent_SetStartAndEnd::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartOffset \ +static_assert(alignof(SplineMeshComponent_SetStartOffset) == 0x000008, "Wrong alignment on SplineMeshComponent_SetStartOffset"); \ +static_assert(sizeof(SplineMeshComponent_SetStartOffset) == 0x000018, "Wrong size on SplineMeshComponent_SetStartOffset"); \ +static_assert(offsetof(SplineMeshComponent_SetStartOffset, StartOffset) == 0x000000, "Member 'SplineMeshComponent_SetStartOffset::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartOffset, bUpdateMesh) == 0x000010, "Member 'SplineMeshComponent_SetStartOffset::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartPosition \ +static_assert(alignof(SplineMeshComponent_SetStartPosition) == 0x000008, "Wrong alignment on SplineMeshComponent_SetStartPosition"); \ +static_assert(sizeof(SplineMeshComponent_SetStartPosition) == 0x000020, "Wrong size on SplineMeshComponent_SetStartPosition"); \ +static_assert(offsetof(SplineMeshComponent_SetStartPosition, StartPos) == 0x000000, "Member 'SplineMeshComponent_SetStartPosition::StartPos' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartPosition, bUpdateMesh) == 0x000018, "Member 'SplineMeshComponent_SetStartPosition::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartRoll \ +static_assert(alignof(SplineMeshComponent_SetStartRoll) == 0x000004, "Wrong alignment on SplineMeshComponent_SetStartRoll"); \ +static_assert(sizeof(SplineMeshComponent_SetStartRoll) == 0x000008, "Wrong size on SplineMeshComponent_SetStartRoll"); \ +static_assert(offsetof(SplineMeshComponent_SetStartRoll, StartRoll) == 0x000000, "Member 'SplineMeshComponent_SetStartRoll::StartRoll' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartRoll, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetStartRoll::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartRollDegrees \ +static_assert(alignof(SplineMeshComponent_SetStartRollDegrees) == 0x000004, "Wrong alignment on SplineMeshComponent_SetStartRollDegrees"); \ +static_assert(sizeof(SplineMeshComponent_SetStartRollDegrees) == 0x000008, "Wrong size on SplineMeshComponent_SetStartRollDegrees"); \ +static_assert(offsetof(SplineMeshComponent_SetStartRollDegrees, StartRollDegrees) == 0x000000, "Member 'SplineMeshComponent_SetStartRollDegrees::StartRollDegrees' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartRollDegrees, bUpdateMesh) == 0x000004, "Member 'SplineMeshComponent_SetStartRollDegrees::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartScale \ +static_assert(alignof(SplineMeshComponent_SetStartScale) == 0x000008, "Wrong alignment on SplineMeshComponent_SetStartScale"); \ +static_assert(sizeof(SplineMeshComponent_SetStartScale) == 0x000018, "Wrong size on SplineMeshComponent_SetStartScale"); \ +static_assert(offsetof(SplineMeshComponent_SetStartScale, StartScale) == 0x000000, "Member 'SplineMeshComponent_SetStartScale::StartScale' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartScale, bUpdateMesh) == 0x000010, "Member 'SplineMeshComponent_SetStartScale::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_SetStartTangent \ +static_assert(alignof(SplineMeshComponent_SetStartTangent) == 0x000008, "Wrong alignment on SplineMeshComponent_SetStartTangent"); \ +static_assert(sizeof(SplineMeshComponent_SetStartTangent) == 0x000020, "Wrong size on SplineMeshComponent_SetStartTangent"); \ +static_assert(offsetof(SplineMeshComponent_SetStartTangent, StartTangent) == 0x000000, "Member 'SplineMeshComponent_SetStartTangent::StartTangent' has a wrong offset!"); \ +static_assert(offsetof(SplineMeshComponent_SetStartTangent, bUpdateMesh) == 0x000018, "Member 'SplineMeshComponent_SetStartTangent::bUpdateMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetBoundaryMax \ +static_assert(alignof(SplineMeshComponent_GetBoundaryMax) == 0x000004, "Wrong alignment on SplineMeshComponent_GetBoundaryMax"); \ +static_assert(sizeof(SplineMeshComponent_GetBoundaryMax) == 0x000004, "Wrong size on SplineMeshComponent_GetBoundaryMax"); \ +static_assert(offsetof(SplineMeshComponent_GetBoundaryMax, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetBoundaryMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetBoundaryMin \ +static_assert(alignof(SplineMeshComponent_GetBoundaryMin) == 0x000004, "Wrong alignment on SplineMeshComponent_GetBoundaryMin"); \ +static_assert(sizeof(SplineMeshComponent_GetBoundaryMin) == 0x000004, "Wrong size on SplineMeshComponent_GetBoundaryMin"); \ +static_assert(offsetof(SplineMeshComponent_GetBoundaryMin, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetBoundaryMin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetEndOffset \ +static_assert(alignof(SplineMeshComponent_GetEndOffset) == 0x000008, "Wrong alignment on SplineMeshComponent_GetEndOffset"); \ +static_assert(sizeof(SplineMeshComponent_GetEndOffset) == 0x000010, "Wrong size on SplineMeshComponent_GetEndOffset"); \ +static_assert(offsetof(SplineMeshComponent_GetEndOffset, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetEndOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetEndPosition \ +static_assert(alignof(SplineMeshComponent_GetEndPosition) == 0x000008, "Wrong alignment on SplineMeshComponent_GetEndPosition"); \ +static_assert(sizeof(SplineMeshComponent_GetEndPosition) == 0x000018, "Wrong size on SplineMeshComponent_GetEndPosition"); \ +static_assert(offsetof(SplineMeshComponent_GetEndPosition, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetEndPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetEndRoll \ +static_assert(alignof(SplineMeshComponent_GetEndRoll) == 0x000004, "Wrong alignment on SplineMeshComponent_GetEndRoll"); \ +static_assert(sizeof(SplineMeshComponent_GetEndRoll) == 0x000004, "Wrong size on SplineMeshComponent_GetEndRoll"); \ +static_assert(offsetof(SplineMeshComponent_GetEndRoll, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetEndRoll::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetEndScale \ +static_assert(alignof(SplineMeshComponent_GetEndScale) == 0x000008, "Wrong alignment on SplineMeshComponent_GetEndScale"); \ +static_assert(sizeof(SplineMeshComponent_GetEndScale) == 0x000010, "Wrong size on SplineMeshComponent_GetEndScale"); \ +static_assert(offsetof(SplineMeshComponent_GetEndScale, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetEndScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetEndTangent \ +static_assert(alignof(SplineMeshComponent_GetEndTangent) == 0x000008, "Wrong alignment on SplineMeshComponent_GetEndTangent"); \ +static_assert(sizeof(SplineMeshComponent_GetEndTangent) == 0x000018, "Wrong size on SplineMeshComponent_GetEndTangent"); \ +static_assert(offsetof(SplineMeshComponent_GetEndTangent, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetEndTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetForwardAxis \ +static_assert(alignof(SplineMeshComponent_GetForwardAxis) == 0x000001, "Wrong alignment on SplineMeshComponent_GetForwardAxis"); \ +static_assert(sizeof(SplineMeshComponent_GetForwardAxis) == 0x000001, "Wrong size on SplineMeshComponent_GetForwardAxis"); \ +static_assert(offsetof(SplineMeshComponent_GetForwardAxis, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetForwardAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetSplineUpDir \ +static_assert(alignof(SplineMeshComponent_GetSplineUpDir) == 0x000008, "Wrong alignment on SplineMeshComponent_GetSplineUpDir"); \ +static_assert(sizeof(SplineMeshComponent_GetSplineUpDir) == 0x000018, "Wrong size on SplineMeshComponent_GetSplineUpDir"); \ +static_assert(offsetof(SplineMeshComponent_GetSplineUpDir, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetSplineUpDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetStartOffset \ +static_assert(alignof(SplineMeshComponent_GetStartOffset) == 0x000008, "Wrong alignment on SplineMeshComponent_GetStartOffset"); \ +static_assert(sizeof(SplineMeshComponent_GetStartOffset) == 0x000010, "Wrong size on SplineMeshComponent_GetStartOffset"); \ +static_assert(offsetof(SplineMeshComponent_GetStartOffset, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetStartOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetStartPosition \ +static_assert(alignof(SplineMeshComponent_GetStartPosition) == 0x000008, "Wrong alignment on SplineMeshComponent_GetStartPosition"); \ +static_assert(sizeof(SplineMeshComponent_GetStartPosition) == 0x000018, "Wrong size on SplineMeshComponent_GetStartPosition"); \ +static_assert(offsetof(SplineMeshComponent_GetStartPosition, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetStartRoll \ +static_assert(alignof(SplineMeshComponent_GetStartRoll) == 0x000004, "Wrong alignment on SplineMeshComponent_GetStartRoll"); \ +static_assert(sizeof(SplineMeshComponent_GetStartRoll) == 0x000004, "Wrong size on SplineMeshComponent_GetStartRoll"); \ +static_assert(offsetof(SplineMeshComponent_GetStartRoll, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetStartRoll::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetStartScale \ +static_assert(alignof(SplineMeshComponent_GetStartScale) == 0x000008, "Wrong alignment on SplineMeshComponent_GetStartScale"); \ +static_assert(sizeof(SplineMeshComponent_GetStartScale) == 0x000010, "Wrong size on SplineMeshComponent_GetStartScale"); \ +static_assert(offsetof(SplineMeshComponent_GetStartScale, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetStartScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SplineMeshComponent_GetStartTangent \ +static_assert(alignof(SplineMeshComponent_GetStartTangent) == 0x000008, "Wrong alignment on SplineMeshComponent_GetStartTangent"); \ +static_assert(sizeof(SplineMeshComponent_GetStartTangent) == 0x000018, "Wrong size on SplineMeshComponent_GetStartTangent"); \ +static_assert(offsetof(SplineMeshComponent_GetStartTangent, ReturnValue) == 0x000000, "Member 'SplineMeshComponent_GetStartTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USplineMeshComponent \ +static_assert(alignof(USplineMeshComponent) == 0x000010, "Wrong alignment on USplineMeshComponent"); \ +static_assert(sizeof(USplineMeshComponent) == 0x000730, "Wrong size on USplineMeshComponent"); \ +static_assert(offsetof(USplineMeshComponent, SplineParams) == 0x000630, "Member 'USplineMeshComponent::SplineParams' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, SplineUpDir) == 0x0006E0, "Member 'USplineMeshComponent::SplineUpDir' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, SplineBoundaryMin) == 0x0006F8, "Member 'USplineMeshComponent::SplineBoundaryMin' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, CachedMeshBodySetupGuid) == 0x0006FC, "Member 'USplineMeshComponent::CachedMeshBodySetupGuid' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, BodySetup) == 0x000710, "Member 'USplineMeshComponent::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, SplineBoundaryMax) == 0x000718, "Member 'USplineMeshComponent::SplineBoundaryMax' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, ForwardAxis) == 0x00071D, "Member 'USplineMeshComponent::ForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(USplineMeshComponent, VirtualTextureMainPassMaxDrawDistance) == 0x000720, "Member 'USplineMeshComponent::VirtualTextureMainPassMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpotLightComponent_SetInnerConeAngle \ +static_assert(alignof(SpotLightComponent_SetInnerConeAngle) == 0x000004, "Wrong alignment on SpotLightComponent_SetInnerConeAngle"); \ +static_assert(sizeof(SpotLightComponent_SetInnerConeAngle) == 0x000004, "Wrong size on SpotLightComponent_SetInnerConeAngle"); \ +static_assert(offsetof(SpotLightComponent_SetInnerConeAngle, NewInnerConeAngle) == 0x000000, "Member 'SpotLightComponent_SetInnerConeAngle::NewInnerConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpotLightComponent_SetOuterConeAngle \ +static_assert(alignof(SpotLightComponent_SetOuterConeAngle) == 0x000004, "Wrong alignment on SpotLightComponent_SetOuterConeAngle"); \ +static_assert(sizeof(SpotLightComponent_SetOuterConeAngle) == 0x000004, "Wrong size on SpotLightComponent_SetOuterConeAngle"); \ +static_assert(offsetof(SpotLightComponent_SetOuterConeAngle, NewOuterConeAngle) == 0x000000, "Member 'SpotLightComponent_SetOuterConeAngle::NewOuterConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpotLightComponent \ +static_assert(alignof(USpotLightComponent) == 0x000010, "Wrong alignment on USpotLightComponent"); \ +static_assert(sizeof(USpotLightComponent) == 0x000430, "Wrong size on USpotLightComponent"); \ +static_assert(offsetof(USpotLightComponent, InnerConeAngle) == 0x000420, "Member 'USpotLightComponent::InnerConeAngle' has a wrong offset!"); \ +static_assert(offsetof(USpotLightComponent, OuterConeAngle) == 0x000424, "Member 'USpotLightComponent::OuterConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AVolumetricCloud \ +static_assert(alignof(AVolumetricCloud) == 0x000008, "Wrong alignment on AVolumetricCloud"); \ +static_assert(sizeof(AVolumetricCloud) == 0x0002A0, "Wrong size on AVolumetricCloud"); \ +static_assert(offsetof(AVolumetricCloud, VolumetricCloudComponent) == 0x000298, "Member 'AVolumetricCloud::VolumetricCloudComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionStreamingSourceComponent_IsStreamingCompleted \ +static_assert(alignof(WorldPartitionStreamingSourceComponent_IsStreamingCompleted) == 0x000001, "Wrong alignment on WorldPartitionStreamingSourceComponent_IsStreamingCompleted"); \ +static_assert(sizeof(WorldPartitionStreamingSourceComponent_IsStreamingCompleted) == 0x000001, "Wrong size on WorldPartitionStreamingSourceComponent_IsStreamingCompleted"); \ +static_assert(offsetof(WorldPartitionStreamingSourceComponent_IsStreamingCompleted, ReturnValue) == 0x000000, "Member 'WorldPartitionStreamingSourceComponent_IsStreamingCompleted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled \ +static_assert(alignof(WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled) == 0x000001, "Wrong alignment on WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled"); \ +static_assert(sizeof(WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled) == 0x000001, "Wrong size on WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled"); \ +static_assert(offsetof(WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled, ReturnValue) == 0x000000, "Member 'WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionStreamingSourceComponent \ +static_assert(alignof(UWorldPartitionStreamingSourceComponent) == 0x000008, "Wrong alignment on UWorldPartitionStreamingSourceComponent"); \ +static_assert(sizeof(UWorldPartitionStreamingSourceComponent) == 0x000100, "Wrong size on UWorldPartitionStreamingSourceComponent"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetBehavior) == 0x0000A8, "Member 'UWorldPartitionStreamingSourceComponent::TargetBehavior' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetGrids) == 0x0000B0, "Member 'UWorldPartitionStreamingSourceComponent::TargetGrids' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetGrid) == 0x0000C0, "Member 'UWorldPartitionStreamingSourceComponent::TargetGrid' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, DebugColor) == 0x0000C8, "Member 'UWorldPartitionStreamingSourceComponent::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetHLODLayers) == 0x0000D0, "Member 'UWorldPartitionStreamingSourceComponent::TargetHLODLayers' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetHLODLayer) == 0x0000E0, "Member 'UWorldPartitionStreamingSourceComponent::TargetHLODLayer' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, Shapes) == 0x0000E8, "Member 'UWorldPartitionStreamingSourceComponent::Shapes' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, Priority) == 0x0000F8, "Member 'UWorldPartitionStreamingSourceComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, bStreamingSourceEnabled) == 0x0000F9, "Member 'UWorldPartitionStreamingSourceComponent::bStreamingSourceEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionStreamingSourceComponent, TargetState) == 0x0000FA, "Member 'UWorldPartitionStreamingSourceComponent::TargetState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCompositeDataTable \ +static_assert(alignof(UCompositeDataTable) == 0x000008, "Wrong alignment on UCompositeDataTable"); \ +static_assert(sizeof(UCompositeDataTable) == 0x0000D8, "Wrong size on UCompositeDataTable"); \ +static_assert(offsetof(UCompositeDataTable, ParentTables) == 0x0000B0, "Member 'UCompositeDataTable::ParentTables' has a wrong offset!"); \ +static_assert(offsetof(UCompositeDataTable, OldParentTables) == 0x0000C0, "Member 'UCompositeDataTable::OldParentTables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnumCookedMetaData \ +static_assert(alignof(UEnumCookedMetaData) == 0x000008, "Wrong alignment on UEnumCookedMetaData"); \ +static_assert(sizeof(UEnumCookedMetaData) == 0x000078, "Wrong size on UEnumCookedMetaData"); \ +static_assert(offsetof(UEnumCookedMetaData, EnumMetaData) == 0x000028, "Member 'UEnumCookedMetaData::EnumMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStructCookedMetaData \ +static_assert(alignof(UStructCookedMetaData) == 0x000008, "Wrong alignment on UStructCookedMetaData"); \ +static_assert(sizeof(UStructCookedMetaData) == 0x0000C8, "Wrong size on UStructCookedMetaData"); \ +static_assert(offsetof(UStructCookedMetaData, StructMetaData) == 0x000028, "Member 'UStructCookedMetaData::StructMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamingSettings \ +static_assert(alignof(UStreamingSettings) == 0x000008, "Wrong alignment on UStreamingSettings"); \ +static_assert(sizeof(UStreamingSettings) == 0x000070, "Wrong size on UStreamingSettings"); \ +static_assert(offsetof(UStreamingSettings, TimeLimitExceededMultiplier) == 0x00003C, "Member 'UStreamingSettings::TimeLimitExceededMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, TimeLimitExceededMinTime) == 0x000040, "Member 'UStreamingSettings::TimeLimitExceededMinTime' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, MinBulkDataSizeForAsyncLoading) == 0x000044, "Member 'UStreamingSettings::MinBulkDataSizeForAsyncLoading' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, AsyncLoadingTimeLimit) == 0x00004C, "Member 'UStreamingSettings::AsyncLoadingTimeLimit' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, PriorityAsyncLoadingExtraTime) == 0x000050, "Member 'UStreamingSettings::PriorityAsyncLoadingExtraTime' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, LevelStreamingActorsUpdateTimeLimit) == 0x000054, "Member 'UStreamingSettings::LevelStreamingActorsUpdateTimeLimit' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, PriorityLevelStreamingActorsUpdateExtraTime) == 0x000058, "Member 'UStreamingSettings::PriorityLevelStreamingActorsUpdateExtraTime' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, LevelStreamingComponentsRegistrationGranularity) == 0x00005C, "Member 'UStreamingSettings::LevelStreamingComponentsRegistrationGranularity' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, LevelStreamingAddPrimitiveGranularity) == 0x000060, "Member 'UStreamingSettings::LevelStreamingAddPrimitiveGranularity' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, LevelStreamingUnregisterComponentsTimeLimit) == 0x000064, "Member 'UStreamingSettings::LevelStreamingUnregisterComponentsTimeLimit' has a wrong offset!"); \ +static_assert(offsetof(UStreamingSettings, LevelStreamingComponentsUnregistrationGranularity) == 0x000068, "Member 'UStreamingSettings::LevelStreamingComponentsUnregistrationGranularity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGarbageCollectionSettings \ +static_assert(alignof(UGarbageCollectionSettings) == 0x000008, "Wrong alignment on UGarbageCollectionSettings"); \ +static_assert(sizeof(UGarbageCollectionSettings) == 0x000058, "Wrong size on UGarbageCollectionSettings"); \ +static_assert(offsetof(UGarbageCollectionSettings, TimeBetweenPurgingPendingKillObjects) == 0x000038, "Member 'UGarbageCollectionSettings::TimeBetweenPurgingPendingKillObjects' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, MinGCClusterSize) == 0x000040, "Member 'UGarbageCollectionSettings::MinGCClusterSize' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, NumRetriesBeforeForcingGC) == 0x000044, "Member 'UGarbageCollectionSettings::NumRetriesBeforeForcingGC' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, MaxObjectsNotConsideredByGC) == 0x000048, "Member 'UGarbageCollectionSettings::MaxObjectsNotConsideredByGC' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, SizeOfPermanentObjectPool) == 0x00004C, "Member 'UGarbageCollectionSettings::SizeOfPermanentObjectPool' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, MaxObjectsInGame) == 0x000050, "Member 'UGarbageCollectionSettings::MaxObjectsInGame' has a wrong offset!"); \ +static_assert(offsetof(UGarbageCollectionSettings, MaxObjectsInEditor) == 0x000054, "Member 'UGarbageCollectionSettings::MaxObjectsInEditor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACullDistanceVolume \ +static_assert(alignof(ACullDistanceVolume) == 0x000008, "Wrong alignment on ACullDistanceVolume"); \ +static_assert(sizeof(ACullDistanceVolume) == 0x0002E8, "Wrong size on ACullDistanceVolume"); \ +static_assert(offsetof(ACullDistanceVolume, CullDistances) == 0x0002D0, "Member 'ACullDistanceVolume::CullDistances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveFloat_GetFloatValue \ +static_assert(alignof(CurveFloat_GetFloatValue) == 0x000004, "Wrong alignment on CurveFloat_GetFloatValue"); \ +static_assert(sizeof(CurveFloat_GetFloatValue) == 0x000008, "Wrong size on CurveFloat_GetFloatValue"); \ +static_assert(offsetof(CurveFloat_GetFloatValue, InTime) == 0x000000, "Member 'CurveFloat_GetFloatValue::InTime' has a wrong offset!"); \ +static_assert(offsetof(CurveFloat_GetFloatValue, ReturnValue) == 0x000004, "Member 'CurveFloat_GetFloatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveFloat \ +static_assert(alignof(UCurveFloat) == 0x000008, "Wrong alignment on UCurveFloat"); \ +static_assert(sizeof(UCurveFloat) == 0x0000B8, "Wrong size on UCurveFloat"); \ +static_assert(offsetof(UCurveFloat, FloatCurve) == 0x000030, "Member 'UCurveFloat::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(UCurveFloat, bIsEventCurve) == 0x0000B0, "Member 'UCurveFloat::bIsEventCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveLinearColor_GetClampedLinearColorValue \ +static_assert(alignof(CurveLinearColor_GetClampedLinearColorValue) == 0x000004, "Wrong alignment on CurveLinearColor_GetClampedLinearColorValue"); \ +static_assert(sizeof(CurveLinearColor_GetClampedLinearColorValue) == 0x000014, "Wrong size on CurveLinearColor_GetClampedLinearColorValue"); \ +static_assert(offsetof(CurveLinearColor_GetClampedLinearColorValue, InTime) == 0x000000, "Member 'CurveLinearColor_GetClampedLinearColorValue::InTime' has a wrong offset!"); \ +static_assert(offsetof(CurveLinearColor_GetClampedLinearColorValue, ReturnValue) == 0x000004, "Member 'CurveLinearColor_GetClampedLinearColorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveLinearColor_GetLinearColorValue \ +static_assert(alignof(CurveLinearColor_GetLinearColorValue) == 0x000004, "Wrong alignment on CurveLinearColor_GetLinearColorValue"); \ +static_assert(sizeof(CurveLinearColor_GetLinearColorValue) == 0x000014, "Wrong size on CurveLinearColor_GetLinearColorValue"); \ +static_assert(offsetof(CurveLinearColor_GetLinearColorValue, InTime) == 0x000000, "Member 'CurveLinearColor_GetLinearColorValue::InTime' has a wrong offset!"); \ +static_assert(offsetof(CurveLinearColor_GetLinearColorValue, ReturnValue) == 0x000004, "Member 'CurveLinearColor_GetLinearColorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CurveLinearColor_GetUnadjustedLinearColorValue \ +static_assert(alignof(CurveLinearColor_GetUnadjustedLinearColorValue) == 0x000004, "Wrong alignment on CurveLinearColor_GetUnadjustedLinearColorValue"); \ +static_assert(sizeof(CurveLinearColor_GetUnadjustedLinearColorValue) == 0x000014, "Wrong size on CurveLinearColor_GetUnadjustedLinearColorValue"); \ +static_assert(offsetof(CurveLinearColor_GetUnadjustedLinearColorValue, InTime) == 0x000000, "Member 'CurveLinearColor_GetUnadjustedLinearColorValue::InTime' has a wrong offset!"); \ +static_assert(offsetof(CurveLinearColor_GetUnadjustedLinearColorValue, ReturnValue) == 0x000004, "Member 'CurveLinearColor_GetUnadjustedLinearColorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveLinearColor \ +static_assert(alignof(UCurveLinearColor) == 0x000008, "Wrong alignment on UCurveLinearColor"); \ +static_assert(sizeof(UCurveLinearColor) == 0x000250, "Wrong size on UCurveLinearColor"); \ +static_assert(offsetof(UCurveLinearColor, FloatCurves) == 0x000030, "Member 'UCurveLinearColor::FloatCurves' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustHue) == 0x000230, "Member 'UCurveLinearColor::AdjustHue' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustSaturation) == 0x000234, "Member 'UCurveLinearColor::AdjustSaturation' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustBrightness) == 0x000238, "Member 'UCurveLinearColor::AdjustBrightness' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustBrightnessCurve) == 0x00023C, "Member 'UCurveLinearColor::AdjustBrightnessCurve' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustVibrance) == 0x000240, "Member 'UCurveLinearColor::AdjustVibrance' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustMinAlpha) == 0x000244, "Member 'UCurveLinearColor::AdjustMinAlpha' has a wrong offset!"); \ +static_assert(offsetof(UCurveLinearColor, AdjustMaxAlpha) == 0x000248, "Member 'UCurveLinearColor::AdjustMaxAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataTableFunctionLibrary_DoesDataTableRowExist \ +static_assert(alignof(DataTableFunctionLibrary_DoesDataTableRowExist) == 0x000008, "Wrong alignment on DataTableFunctionLibrary_DoesDataTableRowExist"); \ +static_assert(sizeof(DataTableFunctionLibrary_DoesDataTableRowExist) == 0x000018, "Wrong size on DataTableFunctionLibrary_DoesDataTableRowExist"); \ +static_assert(offsetof(DataTableFunctionLibrary_DoesDataTableRowExist, Table) == 0x000000, "Member 'DataTableFunctionLibrary_DoesDataTableRowExist::Table' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_DoesDataTableRowExist, RowName) == 0x000008, "Member 'DataTableFunctionLibrary_DoesDataTableRowExist::RowName' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_DoesDataTableRowExist, ReturnValue) == 0x000010, "Member 'DataTableFunctionLibrary_DoesDataTableRowExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataTableFunctionLibrary_EvaluateCurveTableRow \ +static_assert(alignof(DataTableFunctionLibrary_EvaluateCurveTableRow) == 0x000008, "Wrong alignment on DataTableFunctionLibrary_EvaluateCurveTableRow"); \ +static_assert(sizeof(DataTableFunctionLibrary_EvaluateCurveTableRow) == 0x000030, "Wrong size on DataTableFunctionLibrary_EvaluateCurveTableRow"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, CurveTable) == 0x000000, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::CurveTable' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, RowName) == 0x000008, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::RowName' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, InXY) == 0x000010, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::InXY' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, OutResult) == 0x000014, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::OutResult' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, OutXY) == 0x000018, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::OutXY' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_EvaluateCurveTableRow, ContextString) == 0x000020, "Member 'DataTableFunctionLibrary_EvaluateCurveTableRow::ContextString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataTableFunctionLibrary_GetDataTableColumnAsString \ +static_assert(alignof(DataTableFunctionLibrary_GetDataTableColumnAsString) == 0x000008, "Wrong alignment on DataTableFunctionLibrary_GetDataTableColumnAsString"); \ +static_assert(sizeof(DataTableFunctionLibrary_GetDataTableColumnAsString) == 0x000020, "Wrong size on DataTableFunctionLibrary_GetDataTableColumnAsString"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableColumnAsString, DataTable) == 0x000000, "Member 'DataTableFunctionLibrary_GetDataTableColumnAsString::DataTable' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableColumnAsString, PropertyName) == 0x000008, "Member 'DataTableFunctionLibrary_GetDataTableColumnAsString::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableColumnAsString, ReturnValue) == 0x000010, "Member 'DataTableFunctionLibrary_GetDataTableColumnAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataTableFunctionLibrary_GetDataTableRowFromName \ +static_assert(alignof(DataTableFunctionLibrary_GetDataTableRowFromName) == 0x000008, "Wrong alignment on DataTableFunctionLibrary_GetDataTableRowFromName"); \ +static_assert(sizeof(DataTableFunctionLibrary_GetDataTableRowFromName) == 0x000020, "Wrong size on DataTableFunctionLibrary_GetDataTableRowFromName"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowFromName, Table) == 0x000000, "Member 'DataTableFunctionLibrary_GetDataTableRowFromName::Table' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowFromName, RowName) == 0x000008, "Member 'DataTableFunctionLibrary_GetDataTableRowFromName::RowName' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowFromName, OutRow) == 0x000010, "Member 'DataTableFunctionLibrary_GetDataTableRowFromName::OutRow' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowFromName, ReturnValue) == 0x000018, "Member 'DataTableFunctionLibrary_GetDataTableRowFromName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataTableFunctionLibrary_GetDataTableRowNames \ +static_assert(alignof(DataTableFunctionLibrary_GetDataTableRowNames) == 0x000008, "Wrong alignment on DataTableFunctionLibrary_GetDataTableRowNames"); \ +static_assert(sizeof(DataTableFunctionLibrary_GetDataTableRowNames) == 0x000018, "Wrong size on DataTableFunctionLibrary_GetDataTableRowNames"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowNames, Table) == 0x000000, "Member 'DataTableFunctionLibrary_GetDataTableRowNames::Table' has a wrong offset!"); \ +static_assert(offsetof(DataTableFunctionLibrary_GetDataTableRowNames, OutRowNames) == 0x000008, "Member 'DataTableFunctionLibrary_GetDataTableRowNames::OutRowNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataTableFunctionLibrary \ +static_assert(alignof(UDataTableFunctionLibrary) == 0x000008, "Wrong alignment on UDataTableFunctionLibrary"); \ +static_assert(sizeof(UDataTableFunctionLibrary) == 0x000028, "Wrong size on UDataTableFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_DebugCameraController_ReceiveOnActivate \ +static_assert(alignof(DebugCameraController_ReceiveOnActivate) == 0x000008, "Wrong alignment on DebugCameraController_ReceiveOnActivate"); \ +static_assert(sizeof(DebugCameraController_ReceiveOnActivate) == 0x000008, "Wrong size on DebugCameraController_ReceiveOnActivate"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnActivate, OriginalPC) == 0x000000, "Member 'DebugCameraController_ReceiveOnActivate::OriginalPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DebugCameraController_ReceiveOnActorSelected \ +static_assert(alignof(DebugCameraController_ReceiveOnActorSelected) == 0x000008, "Wrong alignment on DebugCameraController_ReceiveOnActorSelected"); \ +static_assert(sizeof(DebugCameraController_ReceiveOnActorSelected) == 0x000120, "Wrong size on DebugCameraController_ReceiveOnActorSelected"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnActorSelected, NewSelectedActor) == 0x000000, "Member 'DebugCameraController_ReceiveOnActorSelected::NewSelectedActor' has a wrong offset!"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnActorSelected, SelectHitLocation) == 0x000008, "Member 'DebugCameraController_ReceiveOnActorSelected::SelectHitLocation' has a wrong offset!"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnActorSelected, SelectHitNormal) == 0x000020, "Member 'DebugCameraController_ReceiveOnActorSelected::SelectHitNormal' has a wrong offset!"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnActorSelected, Hit) == 0x000038, "Member 'DebugCameraController_ReceiveOnActorSelected::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DebugCameraController_ReceiveOnDeactivate \ +static_assert(alignof(DebugCameraController_ReceiveOnDeactivate) == 0x000008, "Wrong alignment on DebugCameraController_ReceiveOnDeactivate"); \ +static_assert(sizeof(DebugCameraController_ReceiveOnDeactivate) == 0x000008, "Wrong size on DebugCameraController_ReceiveOnDeactivate"); \ +static_assert(offsetof(DebugCameraController_ReceiveOnDeactivate, RestoredPC) == 0x000000, "Member 'DebugCameraController_ReceiveOnDeactivate::RestoredPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DebugCameraController_SetPawnMovementSpeedScale \ +static_assert(alignof(DebugCameraController_SetPawnMovementSpeedScale) == 0x000004, "Wrong alignment on DebugCameraController_SetPawnMovementSpeedScale"); \ +static_assert(sizeof(DebugCameraController_SetPawnMovementSpeedScale) == 0x000004, "Wrong size on DebugCameraController_SetPawnMovementSpeedScale"); \ +static_assert(offsetof(DebugCameraController_SetPawnMovementSpeedScale, NewSpeedScale) == 0x000000, "Member 'DebugCameraController_SetPawnMovementSpeedScale::NewSpeedScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DebugCameraController_GetSelectedActor \ +static_assert(alignof(DebugCameraController_GetSelectedActor) == 0x000008, "Wrong alignment on DebugCameraController_GetSelectedActor"); \ +static_assert(sizeof(DebugCameraController_GetSelectedActor) == 0x000008, "Wrong size on DebugCameraController_GetSelectedActor"); \ +static_assert(offsetof(DebugCameraController_GetSelectedActor, ReturnValue) == 0x000000, "Member 'DebugCameraController_GetSelectedActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADebugCameraController \ +static_assert(alignof(ADebugCameraController) == 0x000008, "Wrong alignment on ADebugCameraController"); \ +static_assert(sizeof(ADebugCameraController) == 0x0009D8, "Wrong size on ADebugCameraController"); \ +static_assert(offsetof(ADebugCameraController, DrawFrustum) == 0x000860, "Member 'ADebugCameraController::DrawFrustum' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, SelectedActor) == 0x000868, "Member 'ADebugCameraController::SelectedActor' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, SelectedComponent) == 0x000870, "Member 'ADebugCameraController::SelectedComponent' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, SelectedHitPoint) == 0x000878, "Member 'ADebugCameraController::SelectedHitPoint' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, OriginalControllerRef) == 0x000960, "Member 'ADebugCameraController::OriginalControllerRef' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, OriginalPlayer) == 0x000968, "Member 'ADebugCameraController::OriginalPlayer' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, SpeedScale) == 0x000970, "Member 'ADebugCameraController::SpeedScale' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, InitialMaxSpeed) == 0x000974, "Member 'ADebugCameraController::InitialMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, InitialAccel) == 0x000978, "Member 'ADebugCameraController::InitialAccel' has a wrong offset!"); \ +static_assert(offsetof(ADebugCameraController, InitialDecel) == 0x00097C, "Member 'ADebugCameraController::InitialDecel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalActor_CreateDynamicMaterialInstance \ +static_assert(alignof(DecalActor_CreateDynamicMaterialInstance) == 0x000008, "Wrong alignment on DecalActor_CreateDynamicMaterialInstance"); \ +static_assert(sizeof(DecalActor_CreateDynamicMaterialInstance) == 0x000008, "Wrong size on DecalActor_CreateDynamicMaterialInstance"); \ +static_assert(offsetof(DecalActor_CreateDynamicMaterialInstance, ReturnValue) == 0x000000, "Member 'DecalActor_CreateDynamicMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalActor_SetDecalMaterial \ +static_assert(alignof(DecalActor_SetDecalMaterial) == 0x000008, "Wrong alignment on DecalActor_SetDecalMaterial"); \ +static_assert(sizeof(DecalActor_SetDecalMaterial) == 0x000008, "Wrong size on DecalActor_SetDecalMaterial"); \ +static_assert(offsetof(DecalActor_SetDecalMaterial, NewDecalMaterial) == 0x000000, "Member 'DecalActor_SetDecalMaterial::NewDecalMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DecalActor_GetDecalMaterial \ +static_assert(alignof(DecalActor_GetDecalMaterial) == 0x000008, "Wrong alignment on DecalActor_GetDecalMaterial"); \ +static_assert(sizeof(DecalActor_GetDecalMaterial) == 0x000008, "Wrong size on DecalActor_GetDecalMaterial"); \ +static_assert(offsetof(DecalActor_GetDecalMaterial, ReturnValue) == 0x000000, "Member 'DecalActor_GetDecalMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADecalActor \ +static_assert(alignof(ADecalActor) == 0x000008, "Wrong alignment on ADecalActor"); \ +static_assert(sizeof(ADecalActor) == 0x0002A0, "Wrong size on ADecalActor"); \ +static_assert(offsetof(ADecalActor, Decal) == 0x000298, "Member 'ADecalActor::Decal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DefaultPawn_LookUpAtRate \ +static_assert(alignof(DefaultPawn_LookUpAtRate) == 0x000004, "Wrong alignment on DefaultPawn_LookUpAtRate"); \ +static_assert(sizeof(DefaultPawn_LookUpAtRate) == 0x000004, "Wrong size on DefaultPawn_LookUpAtRate"); \ +static_assert(offsetof(DefaultPawn_LookUpAtRate, Rate) == 0x000000, "Member 'DefaultPawn_LookUpAtRate::Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DefaultPawn_MoveForward \ +static_assert(alignof(DefaultPawn_MoveForward) == 0x000004, "Wrong alignment on DefaultPawn_MoveForward"); \ +static_assert(sizeof(DefaultPawn_MoveForward) == 0x000004, "Wrong size on DefaultPawn_MoveForward"); \ +static_assert(offsetof(DefaultPawn_MoveForward, Val) == 0x000000, "Member 'DefaultPawn_MoveForward::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DefaultPawn_MoveRight \ +static_assert(alignof(DefaultPawn_MoveRight) == 0x000004, "Wrong alignment on DefaultPawn_MoveRight"); \ +static_assert(sizeof(DefaultPawn_MoveRight) == 0x000004, "Wrong size on DefaultPawn_MoveRight"); \ +static_assert(offsetof(DefaultPawn_MoveRight, Val) == 0x000000, "Member 'DefaultPawn_MoveRight::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DefaultPawn_MoveUp_World \ +static_assert(alignof(DefaultPawn_MoveUp_World) == 0x000004, "Wrong alignment on DefaultPawn_MoveUp_World"); \ +static_assert(sizeof(DefaultPawn_MoveUp_World) == 0x000004, "Wrong size on DefaultPawn_MoveUp_World"); \ +static_assert(offsetof(DefaultPawn_MoveUp_World, Val) == 0x000000, "Member 'DefaultPawn_MoveUp_World::Val' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DefaultPawn_TurnAtRate \ +static_assert(alignof(DefaultPawn_TurnAtRate) == 0x000004, "Wrong alignment on DefaultPawn_TurnAtRate"); \ +static_assert(sizeof(DefaultPawn_TurnAtRate) == 0x000004, "Wrong size on DefaultPawn_TurnAtRate"); \ +static_assert(offsetof(DefaultPawn_TurnAtRate, Rate) == 0x000000, "Member 'DefaultPawn_TurnAtRate::Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADefaultPawn \ +static_assert(alignof(ADefaultPawn) == 0x000008, "Wrong alignment on ADefaultPawn"); \ +static_assert(sizeof(ADefaultPawn) == 0x000348, "Wrong size on ADefaultPawn"); \ +static_assert(offsetof(ADefaultPawn, BaseTurnRate) == 0x000320, "Member 'ADefaultPawn::BaseTurnRate' has a wrong offset!"); \ +static_assert(offsetof(ADefaultPawn, BaseLookUpRate) == 0x000324, "Member 'ADefaultPawn::BaseLookUpRate' has a wrong offset!"); \ +static_assert(offsetof(ADefaultPawn, MovementComponent) == 0x000328, "Member 'ADefaultPawn::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(ADefaultPawn, CollisionComponent) == 0x000330, "Member 'ADefaultPawn::CollisionComponent' has a wrong offset!"); \ +static_assert(offsetof(ADefaultPawn, MeshComponent) == 0x000338, "Member 'ADefaultPawn::MeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IDeformableInterface \ +static_assert(alignof(IDeformableInterface) == 0x000001, "Wrong alignment on IDeformableInterface"); \ +static_assert(sizeof(IDeformableInterface) == 0x000001, "Wrong size on IDeformableInterface"); \ + +#define DUMPER7_ASSERTS_UNetDriver \ +static_assert(alignof(UNetDriver) == 0x000008, "Wrong alignment on UNetDriver"); \ +static_assert(sizeof(UNetDriver) == 0x0007F0, "Wrong size on UNetDriver"); \ +static_assert(offsetof(UNetDriver, NetConnectionClassName) == 0x000030, "Member 'UNetDriver::NetConnectionClassName' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationDriverClassName) == 0x000040, "Member 'UNetDriver::ReplicationDriverClassName' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationBridgeClassName) == 0x000050, "Member 'UNetDriver::ReplicationBridgeClassName' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationSystemConfig) == 0x000060, "Member 'UNetDriver::ReplicationSystemConfig' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, MaxDownloadSize) == 0x00006C, "Member 'UNetDriver::MaxDownloadSize' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, NetServerMaxTickRate) == 0x000074, "Member 'UNetDriver::NetServerMaxTickRate' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, MaxNetTickRate) == 0x000090, "Member 'UNetDriver::MaxNetTickRate' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, MaxInternetClientRate) == 0x000094, "Member 'UNetDriver::MaxInternetClientRate' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, MaxClientRate) == 0x000098, "Member 'UNetDriver::MaxClientRate' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ServerTravelPause) == 0x00009C, "Member 'UNetDriver::ServerTravelPause' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, SpawnPrioritySeconds) == 0x0000A0, "Member 'UNetDriver::SpawnPrioritySeconds' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, RelevantTimeout) == 0x0000A4, "Member 'UNetDriver::RelevantTimeout' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, KeepAliveTime) == 0x0000A8, "Member 'UNetDriver::KeepAliveTime' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, InitialConnectTimeout) == 0x0000AC, "Member 'UNetDriver::InitialConnectTimeout' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ConnectionTimeout) == 0x0000B0, "Member 'UNetDriver::ConnectionTimeout' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, TimeoutMultiplierForUnoptimizedBuilds) == 0x0000B4, "Member 'UNetDriver::TimeoutMultiplierForUnoptimizedBuilds' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ServerConnection) == 0x0000B8, "Member 'UNetDriver::ServerConnection' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ClientConnections) == 0x0000C0, "Member 'UNetDriver::ClientConnections' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, RecentlyDisconnectedTrackingTime) == 0x000130, "Member 'UNetDriver::RecentlyDisconnectedTrackingTime' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, World) == 0x000170, "Member 'UNetDriver::World' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, WorldPackage) == 0x000178, "Member 'UNetDriver::WorldPackage' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, NetConnectionClass) == 0x0001A0, "Member 'UNetDriver::NetConnectionClass' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationDriverClass) == 0x0001A8, "Member 'UNetDriver::ReplicationDriverClass' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationBridgeClass) == 0x0001B0, "Member 'UNetDriver::ReplicationBridgeClass' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, NetDriverName) == 0x0001C8, "Member 'UNetDriver::NetDriverName' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ChannelDefinitions) == 0x0001D0, "Member 'UNetDriver::ChannelDefinitions' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ChannelDefinitionMap) == 0x0001E0, "Member 'UNetDriver::ChannelDefinitionMap' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ActorChannelPool) == 0x000230, "Member 'UNetDriver::ActorChannelPool' has a wrong offset!"); \ +static_assert(offsetof(UNetDriver, ReplicationDriver) == 0x000768, "Member 'UNetDriver::ReplicationDriver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDemoNetDriver \ +static_assert(alignof(UDemoNetDriver) == 0x000010, "Wrong alignment on UDemoNetDriver"); \ +static_assert(sizeof(UDemoNetDriver) == 0x0014B0, "Wrong size on UDemoNetDriver"); \ +static_assert(offsetof(UDemoNetDriver, RollbackNetStartupActors) == 0x000828, "Member 'UDemoNetDriver::RollbackNetStartupActors' has a wrong offset!"); \ +static_assert(offsetof(UDemoNetDriver, CheckpointSaveMaxMSPerFrame) == 0x00095C, "Member 'UDemoNetDriver::CheckpointSaveMaxMSPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UDemoNetDriver, MulticastRecordOptions) == 0x000978, "Member 'UDemoNetDriver::MulticastRecordOptions' has a wrong offset!"); \ +static_assert(offsetof(UDemoNetDriver, SpectatorControllers) == 0x000988, "Member 'UDemoNetDriver::SpectatorControllers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureLODSettings \ +static_assert(alignof(UTextureLODSettings) == 0x000008, "Wrong alignment on UTextureLODSettings"); \ +static_assert(sizeof(UTextureLODSettings) == 0x000038, "Wrong size on UTextureLODSettings"); \ +static_assert(offsetof(UTextureLODSettings, TextureLODGroups) == 0x000028, "Member 'UTextureLODSettings::TextureLODGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDeviceProfile \ +static_assert(alignof(UDeviceProfile) == 0x000008, "Wrong alignment on UDeviceProfile"); \ +static_assert(sizeof(UDeviceProfile) == 0x0000D0, "Wrong size on UDeviceProfile"); \ +static_assert(offsetof(UDeviceProfile, DeviceType) == 0x000038, "Member 'UDeviceProfile::DeviceType' has a wrong offset!"); \ +static_assert(offsetof(UDeviceProfile, BaseProfileName) == 0x000048, "Member 'UDeviceProfile::BaseProfileName' has a wrong offset!"); \ +static_assert(offsetof(UDeviceProfile, Parent) == 0x000060, "Member 'UDeviceProfile::Parent' has a wrong offset!"); \ +static_assert(offsetof(UDeviceProfile, CVars) == 0x000090, "Member 'UDeviceProfile::CVars' has a wrong offset!"); \ +static_assert(offsetof(UDeviceProfile, MatchingRules) == 0x0000A0, "Member 'UDeviceProfile::MatchingRules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDeviceProfileManager \ +static_assert(alignof(UDeviceProfileManager) == 0x000008, "Wrong alignment on UDeviceProfileManager"); \ +static_assert(sizeof(UDeviceProfileManager) == 0x000090, "Wrong size on UDeviceProfileManager"); \ +static_assert(offsetof(UDeviceProfileManager, Profiles) == 0x000028, "Member 'UDeviceProfileManager::Profiles' has a wrong offset!"); \ +static_assert(offsetof(UDeviceProfileManager, BackupProfiles) == 0x000038, "Member 'UDeviceProfileManager::BackupProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueWave \ +static_assert(alignof(UDialogueWave) == 0x000008, "Wrong alignment on UDialogueWave"); \ +static_assert(sizeof(UDialogueWave) == 0x000070, "Wrong size on UDialogueWave"); \ +static_assert(offsetof(UDialogueWave, SpokenText) == 0x000030, "Member 'UDialogueWave::SpokenText' has a wrong offset!"); \ +static_assert(offsetof(UDialogueWave, SubtitleOverride) == 0x000040, "Member 'UDialogueWave::SubtitleOverride' has a wrong offset!"); \ +static_assert(offsetof(UDialogueWave, ContextMappings) == 0x000050, "Member 'UDialogueWave::ContextMappings' has a wrong offset!"); \ +static_assert(offsetof(UDialogueWave, LocalizationGUID) == 0x000060, "Member 'UDialogueWave::LocalizationGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADocumentationActor \ +static_assert(alignof(ADocumentationActor) == 0x000008, "Wrong alignment on ADocumentationActor"); \ +static_assert(sizeof(ADocumentationActor) == 0x0002A0, "Wrong size on ADocumentationActor"); \ + +#define DUMPER7_ASSERTS_UDPICustomScalingRule \ +static_assert(alignof(UDPICustomScalingRule) == 0x000008, "Wrong alignment on UDPICustomScalingRule"); \ +static_assert(sizeof(UDPICustomScalingRule) == 0x000028, "Wrong size on UDPICustomScalingRule"); \ + +#define DUMPER7_ASSERTS_UAssetImportData \ +static_assert(alignof(UAssetImportData) == 0x000008, "Wrong alignment on UAssetImportData"); \ +static_assert(sizeof(UAssetImportData) == 0x000028, "Wrong size on UAssetImportData"); \ + +#define DUMPER7_ASSERTS_UThumbnailInfo \ +static_assert(alignof(UThumbnailInfo) == 0x000008, "Wrong alignment on UThumbnailInfo"); \ +static_assert(sizeof(UThumbnailInfo) == 0x000028, "Wrong size on UThumbnailInfo"); \ + +#define DUMPER7_ASSERTS_UActorElementAssetDataInterface \ +static_assert(alignof(UActorElementAssetDataInterface) == 0x000008, "Wrong alignment on UActorElementAssetDataInterface"); \ +static_assert(sizeof(UActorElementAssetDataInterface) == 0x000030, "Wrong size on UActorElementAssetDataInterface"); \ + +#define DUMPER7_ASSERTS_UActorElementHierarchyInterface \ +static_assert(alignof(UActorElementHierarchyInterface) == 0x000008, "Wrong alignment on UActorElementHierarchyInterface"); \ +static_assert(sizeof(UActorElementHierarchyInterface) == 0x000030, "Wrong size on UActorElementHierarchyInterface"); \ + +#define DUMPER7_ASSERTS_UActorElementObjectInterface \ +static_assert(alignof(UActorElementObjectInterface) == 0x000008, "Wrong alignment on UActorElementObjectInterface"); \ +static_assert(sizeof(UActorElementObjectInterface) == 0x000030, "Wrong size on UActorElementObjectInterface"); \ + +#define DUMPER7_ASSERTS_UActorElementSelectionInterface \ +static_assert(alignof(UActorElementSelectionInterface) == 0x000008, "Wrong alignment on UActorElementSelectionInterface"); \ +static_assert(sizeof(UActorElementSelectionInterface) == 0x000030, "Wrong size on UActorElementSelectionInterface"); \ + +#define DUMPER7_ASSERTS_UComponentElementCounterInterface \ +static_assert(alignof(UComponentElementCounterInterface) == 0x000008, "Wrong alignment on UComponentElementCounterInterface"); \ +static_assert(sizeof(UComponentElementCounterInterface) == 0x000030, "Wrong size on UComponentElementCounterInterface"); \ + +#define DUMPER7_ASSERTS_UComponentElementHierarchyInterface \ +static_assert(alignof(UComponentElementHierarchyInterface) == 0x000008, "Wrong alignment on UComponentElementHierarchyInterface"); \ +static_assert(sizeof(UComponentElementHierarchyInterface) == 0x000030, "Wrong size on UComponentElementHierarchyInterface"); \ + +#define DUMPER7_ASSERTS_UComponentElementObjectInterface \ +static_assert(alignof(UComponentElementObjectInterface) == 0x000008, "Wrong alignment on UComponentElementObjectInterface"); \ +static_assert(sizeof(UComponentElementObjectInterface) == 0x000030, "Wrong size on UComponentElementObjectInterface"); \ + +#define DUMPER7_ASSERTS_UComponentElementWorldInterface \ +static_assert(alignof(UComponentElementWorldInterface) == 0x000008, "Wrong alignment on UComponentElementWorldInterface"); \ +static_assert(sizeof(UComponentElementWorldInterface) == 0x000030, "Wrong size on UComponentElementWorldInterface"); \ + +#define DUMPER7_ASSERTS_UEngineElementsLibrary \ +static_assert(alignof(UEngineElementsLibrary) == 0x000008, "Wrong alignment on UEngineElementsLibrary"); \ +static_assert(sizeof(UEngineElementsLibrary) == 0x000028, "Wrong size on UEngineElementsLibrary"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_CopyNormalizedElements \ +static_assert(alignof(TypedElementCommonActions_CopyNormalizedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_CopyNormalizedElements"); \ +static_assert(sizeof(TypedElementCommonActions_CopyNormalizedElements) == 0x000018, "Wrong size on TypedElementCommonActions_CopyNormalizedElements"); \ +static_assert(offsetof(TypedElementCommonActions_CopyNormalizedElements, ElementList) == 0x000000, "Member 'TypedElementCommonActions_CopyNormalizedElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopyNormalizedElements, ReturnValue) == 0x000010, "Member 'TypedElementCommonActions_CopyNormalizedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_CopyNormalizedElementsToString \ +static_assert(alignof(TypedElementCommonActions_CopyNormalizedElementsToString) == 0x000008, "Wrong alignment on TypedElementCommonActions_CopyNormalizedElementsToString"); \ +static_assert(sizeof(TypedElementCommonActions_CopyNormalizedElementsToString) == 0x000028, "Wrong size on TypedElementCommonActions_CopyNormalizedElementsToString"); \ +static_assert(offsetof(TypedElementCommonActions_CopyNormalizedElementsToString, ElementList) == 0x000000, "Member 'TypedElementCommonActions_CopyNormalizedElementsToString::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopyNormalizedElementsToString, OutputString) == 0x000010, "Member 'TypedElementCommonActions_CopyNormalizedElementsToString::OutputString' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopyNormalizedElementsToString, ReturnValue) == 0x000020, "Member 'TypedElementCommonActions_CopyNormalizedElementsToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_CopySelectedElements \ +static_assert(alignof(TypedElementCommonActions_CopySelectedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_CopySelectedElements"); \ +static_assert(sizeof(TypedElementCommonActions_CopySelectedElements) == 0x000010, "Wrong size on TypedElementCommonActions_CopySelectedElements"); \ +static_assert(offsetof(TypedElementCommonActions_CopySelectedElements, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_CopySelectedElements::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopySelectedElements, ReturnValue) == 0x000008, "Member 'TypedElementCommonActions_CopySelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_CopySelectedElementsToString \ +static_assert(alignof(TypedElementCommonActions_CopySelectedElementsToString) == 0x000008, "Wrong alignment on TypedElementCommonActions_CopySelectedElementsToString"); \ +static_assert(sizeof(TypedElementCommonActions_CopySelectedElementsToString) == 0x000020, "Wrong size on TypedElementCommonActions_CopySelectedElementsToString"); \ +static_assert(offsetof(TypedElementCommonActions_CopySelectedElementsToString, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_CopySelectedElementsToString::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopySelectedElementsToString, OutputString) == 0x000008, "Member 'TypedElementCommonActions_CopySelectedElementsToString::OutputString' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_CopySelectedElementsToString, ReturnValue) == 0x000018, "Member 'TypedElementCommonActions_CopySelectedElementsToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_DeleteNormalizedElements \ +static_assert(alignof(TypedElementCommonActions_DeleteNormalizedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_DeleteNormalizedElements"); \ +static_assert(sizeof(TypedElementCommonActions_DeleteNormalizedElements) == 0x000028, "Wrong size on TypedElementCommonActions_DeleteNormalizedElements"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteNormalizedElements, ElementList) == 0x000000, "Member 'TypedElementCommonActions_DeleteNormalizedElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteNormalizedElements, World) == 0x000010, "Member 'TypedElementCommonActions_DeleteNormalizedElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteNormalizedElements, InSelectionSet) == 0x000018, "Member 'TypedElementCommonActions_DeleteNormalizedElements::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteNormalizedElements, DeletionOptions) == 0x000020, "Member 'TypedElementCommonActions_DeleteNormalizedElements::DeletionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteNormalizedElements, ReturnValue) == 0x000023, "Member 'TypedElementCommonActions_DeleteNormalizedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_DeleteSelectedElements \ +static_assert(alignof(TypedElementCommonActions_DeleteSelectedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_DeleteSelectedElements"); \ +static_assert(sizeof(TypedElementCommonActions_DeleteSelectedElements) == 0x000018, "Wrong size on TypedElementCommonActions_DeleteSelectedElements"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteSelectedElements, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_DeleteSelectedElements::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteSelectedElements, World) == 0x000008, "Member 'TypedElementCommonActions_DeleteSelectedElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteSelectedElements, DeletionOptions) == 0x000010, "Member 'TypedElementCommonActions_DeleteSelectedElements::DeletionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DeleteSelectedElements, ReturnValue) == 0x000013, "Member 'TypedElementCommonActions_DeleteSelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_DuplicateNormalizedElements \ +static_assert(alignof(TypedElementCommonActions_DuplicateNormalizedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_DuplicateNormalizedElements"); \ +static_assert(sizeof(TypedElementCommonActions_DuplicateNormalizedElements) == 0x000040, "Wrong size on TypedElementCommonActions_DuplicateNormalizedElements"); \ +static_assert(offsetof(TypedElementCommonActions_DuplicateNormalizedElements, ElementList) == 0x000000, "Member 'TypedElementCommonActions_DuplicateNormalizedElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DuplicateNormalizedElements, World) == 0x000010, "Member 'TypedElementCommonActions_DuplicateNormalizedElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DuplicateNormalizedElements, LocationOffset) == 0x000018, "Member 'TypedElementCommonActions_DuplicateNormalizedElements::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_DuplicateNormalizedElements, ReturnValue) == 0x000030, "Member 'TypedElementCommonActions_DuplicateNormalizedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_K2_DuplicateSelectedElements \ +static_assert(alignof(TypedElementCommonActions_K2_DuplicateSelectedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_K2_DuplicateSelectedElements"); \ +static_assert(sizeof(TypedElementCommonActions_K2_DuplicateSelectedElements) == 0x000038, "Wrong size on TypedElementCommonActions_K2_DuplicateSelectedElements"); \ +static_assert(offsetof(TypedElementCommonActions_K2_DuplicateSelectedElements, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_K2_DuplicateSelectedElements::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_DuplicateSelectedElements, World) == 0x000008, "Member 'TypedElementCommonActions_K2_DuplicateSelectedElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_DuplicateSelectedElements, LocationOffset) == 0x000010, "Member 'TypedElementCommonActions_K2_DuplicateSelectedElements::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_DuplicateSelectedElements, ReturnValue) == 0x000028, "Member 'TypedElementCommonActions_K2_DuplicateSelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_K2_PasteElements \ +static_assert(alignof(TypedElementCommonActions_K2_PasteElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_K2_PasteElements"); \ +static_assert(sizeof(TypedElementCommonActions_K2_PasteElements) == 0x000098, "Wrong size on TypedElementCommonActions_K2_PasteElements"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteElements, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_K2_PasteElements::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteElements, World) == 0x000008, "Member 'TypedElementCommonActions_K2_PasteElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteElements, PasteOption) == 0x000010, "Member 'TypedElementCommonActions_K2_PasteElements::PasteOption' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteElements, ReturnValue) == 0x000088, "Member 'TypedElementCommonActions_K2_PasteElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_K2_PasteNormalizedElements \ +static_assert(alignof(TypedElementCommonActions_K2_PasteNormalizedElements) == 0x000008, "Wrong alignment on TypedElementCommonActions_K2_PasteNormalizedElements"); \ +static_assert(sizeof(TypedElementCommonActions_K2_PasteNormalizedElements) == 0x0000A0, "Wrong size on TypedElementCommonActions_K2_PasteNormalizedElements"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteNormalizedElements, ElementList) == 0x000000, "Member 'TypedElementCommonActions_K2_PasteNormalizedElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteNormalizedElements, World) == 0x000010, "Member 'TypedElementCommonActions_K2_PasteNormalizedElements::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteNormalizedElements, PasteOption) == 0x000018, "Member 'TypedElementCommonActions_K2_PasteNormalizedElements::PasteOption' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_K2_PasteNormalizedElements, ReturnValue) == 0x000090, "Member 'TypedElementCommonActions_K2_PasteNormalizedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_PasteElementsFromString \ +static_assert(alignof(TypedElementCommonActions_PasteElementsFromString) == 0x000008, "Wrong alignment on TypedElementCommonActions_PasteElementsFromString"); \ +static_assert(sizeof(TypedElementCommonActions_PasteElementsFromString) == 0x0000A8, "Wrong size on TypedElementCommonActions_PasteElementsFromString"); \ +static_assert(offsetof(TypedElementCommonActions_PasteElementsFromString, SelectionSet) == 0x000000, "Member 'TypedElementCommonActions_PasteElementsFromString::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteElementsFromString, World) == 0x000008, "Member 'TypedElementCommonActions_PasteElementsFromString::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteElementsFromString, PasteOption) == 0x000010, "Member 'TypedElementCommonActions_PasteElementsFromString::PasteOption' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteElementsFromString, InputString) == 0x000088, "Member 'TypedElementCommonActions_PasteElementsFromString::InputString' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteElementsFromString, ReturnValue) == 0x000098, "Member 'TypedElementCommonActions_PasteElementsFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementCommonActions_PasteNormalizedElementsFromString \ +static_assert(alignof(TypedElementCommonActions_PasteNormalizedElementsFromString) == 0x000008, "Wrong alignment on TypedElementCommonActions_PasteNormalizedElementsFromString"); \ +static_assert(sizeof(TypedElementCommonActions_PasteNormalizedElementsFromString) == 0x0000B0, "Wrong size on TypedElementCommonActions_PasteNormalizedElementsFromString"); \ +static_assert(offsetof(TypedElementCommonActions_PasteNormalizedElementsFromString, ElementList) == 0x000000, "Member 'TypedElementCommonActions_PasteNormalizedElementsFromString::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteNormalizedElementsFromString, World) == 0x000010, "Member 'TypedElementCommonActions_PasteNormalizedElementsFromString::World' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteNormalizedElementsFromString, PasteOption) == 0x000018, "Member 'TypedElementCommonActions_PasteNormalizedElementsFromString::PasteOption' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteNormalizedElementsFromString, InputString) == 0x000090, "Member 'TypedElementCommonActions_PasteNormalizedElementsFromString::InputString' has a wrong offset!"); \ +static_assert(offsetof(TypedElementCommonActions_PasteNormalizedElementsFromString, ReturnValue) == 0x0000A0, "Member 'TypedElementCommonActions_PasteNormalizedElementsFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementCommonActions \ +static_assert(alignof(UTypedElementCommonActions) == 0x000008, "Wrong alignment on UTypedElementCommonActions"); \ +static_assert(sizeof(UTypedElementCommonActions) == 0x000828, "Wrong size on UTypedElementCommonActions"); \ + +#define DUMPER7_ASSERTS_UObjectElementCounterInterface \ +static_assert(alignof(UObjectElementCounterInterface) == 0x000008, "Wrong alignment on UObjectElementCounterInterface"); \ +static_assert(sizeof(UObjectElementCounterInterface) == 0x000030, "Wrong size on UObjectElementCounterInterface"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementAssetDataInterface \ +static_assert(alignof(USMInstanceElementAssetDataInterface) == 0x000008, "Wrong alignment on USMInstanceElementAssetDataInterface"); \ +static_assert(sizeof(USMInstanceElementAssetDataInterface) == 0x000030, "Wrong size on USMInstanceElementAssetDataInterface"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementHierarchyInterface \ +static_assert(alignof(USMInstanceElementHierarchyInterface) == 0x000008, "Wrong alignment on USMInstanceElementHierarchyInterface"); \ +static_assert(sizeof(USMInstanceElementHierarchyInterface) == 0x000030, "Wrong size on USMInstanceElementHierarchyInterface"); \ + +#define DUMPER7_ASSERTS_USMInstanceElementWorldInterface \ +static_assert(alignof(USMInstanceElementWorldInterface) == 0x000008, "Wrong alignment on USMInstanceElementWorldInterface"); \ +static_assert(sizeof(USMInstanceElementWorldInterface) == 0x000030, "Wrong size on USMInstanceElementWorldInterface"); \ + +#define DUMPER7_ASSERTS_CancellableAsyncAction_IsActive \ +static_assert(alignof(CancellableAsyncAction_IsActive) == 0x000001, "Wrong alignment on CancellableAsyncAction_IsActive"); \ +static_assert(sizeof(CancellableAsyncAction_IsActive) == 0x000001, "Wrong size on CancellableAsyncAction_IsActive"); \ +static_assert(offsetof(CancellableAsyncAction_IsActive, ReturnValue) == 0x000000, "Member 'CancellableAsyncAction_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCancellableAsyncAction \ +static_assert(alignof(UCancellableAsyncAction) == 0x000008, "Wrong alignment on UCancellableAsyncAction"); \ +static_assert(sizeof(UCancellableAsyncAction) == 0x000030, "Wrong size on UCancellableAsyncAction"); \ + +#define DUMPER7_ASSERTS_UPoseWatchPoseElement \ +static_assert(alignof(UPoseWatchPoseElement) == 0x000008, "Wrong alignment on UPoseWatchPoseElement"); \ +static_assert(sizeof(UPoseWatchPoseElement) == 0x000028, "Wrong size on UPoseWatchPoseElement"); \ + +#define DUMPER7_ASSERTS_USystemTimeTimecodeProvider \ +static_assert(alignof(USystemTimeTimecodeProvider) == 0x000008, "Wrong alignment on USystemTimeTimecodeProvider"); \ +static_assert(sizeof(USystemTimeTimecodeProvider) == 0x000040, "Wrong size on USystemTimeTimecodeProvider"); \ +static_assert(offsetof(USystemTimeTimecodeProvider, FrameRate) == 0x000030, "Member 'USystemTimeTimecodeProvider::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(USystemTimeTimecodeProvider, bGenerateFullFrame) == 0x000038, "Member 'USystemTimeTimecodeProvider::bGenerateFullFrame' has a wrong offset!"); \ +static_assert(offsetof(USystemTimeTimecodeProvider, bUseHighPerformanceClock) == 0x000039, "Member 'USystemTimeTimecodeProvider::bUseHighPerformanceClock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ViewportStatsSubsystem_AddDisplayDelegate \ +static_assert(alignof(ViewportStatsSubsystem_AddDisplayDelegate) == 0x000004, "Wrong alignment on ViewportStatsSubsystem_AddDisplayDelegate"); \ +static_assert(sizeof(ViewportStatsSubsystem_AddDisplayDelegate) == 0x000014, "Wrong size on ViewportStatsSubsystem_AddDisplayDelegate"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddDisplayDelegate, Delegate) == 0x000000, "Member 'ViewportStatsSubsystem_AddDisplayDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddDisplayDelegate, ReturnValue) == 0x000010, "Member 'ViewportStatsSubsystem_AddDisplayDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ViewportStatsSubsystem_AddTimedDisplay \ +static_assert(alignof(ViewportStatsSubsystem_AddTimedDisplay) == 0x000008, "Wrong alignment on ViewportStatsSubsystem_AddTimedDisplay"); \ +static_assert(sizeof(ViewportStatsSubsystem_AddTimedDisplay) == 0x000040, "Wrong size on ViewportStatsSubsystem_AddTimedDisplay"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddTimedDisplay, Text) == 0x000000, "Member 'ViewportStatsSubsystem_AddTimedDisplay::Text' has a wrong offset!"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddTimedDisplay, Color) == 0x000018, "Member 'ViewportStatsSubsystem_AddTimedDisplay::Color' has a wrong offset!"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddTimedDisplay, Duration) == 0x000028, "Member 'ViewportStatsSubsystem_AddTimedDisplay::Duration' has a wrong offset!"); \ +static_assert(offsetof(ViewportStatsSubsystem_AddTimedDisplay, DisplayOffset) == 0x000030, "Member 'ViewportStatsSubsystem_AddTimedDisplay::DisplayOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ViewportStatsSubsystem_RemoveDisplayDelegate \ +static_assert(alignof(ViewportStatsSubsystem_RemoveDisplayDelegate) == 0x000004, "Wrong alignment on ViewportStatsSubsystem_RemoveDisplayDelegate"); \ +static_assert(sizeof(ViewportStatsSubsystem_RemoveDisplayDelegate) == 0x000004, "Wrong size on ViewportStatsSubsystem_RemoveDisplayDelegate"); \ +static_assert(offsetof(ViewportStatsSubsystem_RemoveDisplayDelegate, IndexToRemove) == 0x000000, "Member 'ViewportStatsSubsystem_RemoveDisplayDelegate::IndexToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UViewportStatsSubsystem \ +static_assert(alignof(UViewportStatsSubsystem) == 0x000008, "Wrong alignment on UViewportStatsSubsystem"); \ +static_assert(sizeof(UViewportStatsSubsystem) == 0x000050, "Wrong size on UViewportStatsSubsystem"); \ + +#define DUMPER7_ASSERTS_UGameEngine \ +static_assert(alignof(UGameEngine) == 0x000008, "Wrong alignment on UGameEngine"); \ +static_assert(sizeof(UGameEngine) == 0x0010D0, "Wrong size on UGameEngine"); \ +static_assert(offsetof(UGameEngine, MaxDeltaTime) == 0x001078, "Member 'UGameEngine::MaxDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UGameEngine, ServerFlushLogInterval) == 0x00107C, "Member 'UGameEngine::ServerFlushLogInterval' has a wrong offset!"); \ +static_assert(offsetof(UGameEngine, GameInstance) == 0x001080, "Member 'UGameEngine::GameInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UColorInputDeviceProperty \ +static_assert(alignof(UColorInputDeviceProperty) == 0x000008, "Wrong alignment on UColorInputDeviceProperty"); \ +static_assert(sizeof(UColorInputDeviceProperty) == 0x000098, "Wrong size on UColorInputDeviceProperty"); \ +static_assert(offsetof(UColorInputDeviceProperty, ColorData) == 0x000030, "Member 'UColorInputDeviceProperty::ColorData' has a wrong offset!"); \ +static_assert(offsetof(UColorInputDeviceProperty, DeviceOverrideData) == 0x000038, "Member 'UColorInputDeviceProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceTriggerFeedbackProperty \ +static_assert(alignof(UInputDeviceTriggerFeedbackProperty) == 0x000008, "Wrong alignment on UInputDeviceTriggerFeedbackProperty"); \ +static_assert(sizeof(UInputDeviceTriggerFeedbackProperty) == 0x0000B8, "Wrong size on UInputDeviceTriggerFeedbackProperty"); \ +static_assert(offsetof(UInputDeviceTriggerFeedbackProperty, TriggerData) == 0x000040, "Member 'UInputDeviceTriggerFeedbackProperty::TriggerData' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceTriggerFeedbackProperty, DeviceOverrideData) == 0x000050, "Member 'UInputDeviceTriggerFeedbackProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceTriggerResistanceProperty \ +static_assert(alignof(UInputDeviceTriggerResistanceProperty) == 0x000008, "Wrong alignment on UInputDeviceTriggerResistanceProperty"); \ +static_assert(sizeof(UInputDeviceTriggerResistanceProperty) == 0x0000C0, "Wrong size on UInputDeviceTriggerResistanceProperty"); \ +static_assert(offsetof(UInputDeviceTriggerResistanceProperty, TriggerData) == 0x000040, "Member 'UInputDeviceTriggerResistanceProperty::TriggerData' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceTriggerResistanceProperty, DeviceOverrideData) == 0x000050, "Member 'UInputDeviceTriggerResistanceProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceTriggerVibrationProperty \ +static_assert(alignof(UInputDeviceTriggerVibrationProperty) == 0x000008, "Wrong alignment on UInputDeviceTriggerVibrationProperty"); \ +static_assert(sizeof(UInputDeviceTriggerVibrationProperty) == 0x0000C0, "Wrong size on UInputDeviceTriggerVibrationProperty"); \ +static_assert(offsetof(UInputDeviceTriggerVibrationProperty, TriggerData) == 0x000040, "Member 'UInputDeviceTriggerVibrationProperty::TriggerData' has a wrong offset!"); \ +static_assert(offsetof(UInputDeviceTriggerVibrationProperty, DeviceOverrideData) == 0x000058, "Member 'UInputDeviceTriggerVibrationProperty::DeviceOverrideData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpringArmComponent_GetTargetRotation \ +static_assert(alignof(SpringArmComponent_GetTargetRotation) == 0x000008, "Wrong alignment on SpringArmComponent_GetTargetRotation"); \ +static_assert(sizeof(SpringArmComponent_GetTargetRotation) == 0x000018, "Wrong size on SpringArmComponent_GetTargetRotation"); \ +static_assert(offsetof(SpringArmComponent_GetTargetRotation, ReturnValue) == 0x000000, "Member 'SpringArmComponent_GetTargetRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpringArmComponent_GetUnfixedCameraPosition \ +static_assert(alignof(SpringArmComponent_GetUnfixedCameraPosition) == 0x000008, "Wrong alignment on SpringArmComponent_GetUnfixedCameraPosition"); \ +static_assert(sizeof(SpringArmComponent_GetUnfixedCameraPosition) == 0x000018, "Wrong size on SpringArmComponent_GetUnfixedCameraPosition"); \ +static_assert(offsetof(SpringArmComponent_GetUnfixedCameraPosition, ReturnValue) == 0x000000, "Member 'SpringArmComponent_GetUnfixedCameraPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpringArmComponent_IsCollisionFixApplied \ +static_assert(alignof(SpringArmComponent_IsCollisionFixApplied) == 0x000001, "Wrong alignment on SpringArmComponent_IsCollisionFixApplied"); \ +static_assert(sizeof(SpringArmComponent_IsCollisionFixApplied) == 0x000001, "Wrong size on SpringArmComponent_IsCollisionFixApplied"); \ +static_assert(offsetof(SpringArmComponent_IsCollisionFixApplied, ReturnValue) == 0x000000, "Member 'SpringArmComponent_IsCollisionFixApplied::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpringArmComponent \ +static_assert(alignof(USpringArmComponent) == 0x000010, "Wrong alignment on USpringArmComponent"); \ +static_assert(sizeof(USpringArmComponent) == 0x0003A0, "Wrong size on USpringArmComponent"); \ +static_assert(offsetof(USpringArmComponent, TargetArmLength) == 0x0002A0, "Member 'USpringArmComponent::TargetArmLength' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, SocketOffset) == 0x0002A8, "Member 'USpringArmComponent::SocketOffset' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, TargetOffset) == 0x0002C0, "Member 'USpringArmComponent::TargetOffset' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, ProbeSize) == 0x0002D8, "Member 'USpringArmComponent::ProbeSize' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, ProbeChannel) == 0x0002DC, "Member 'USpringArmComponent::ProbeChannel' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, CameraLagSpeed) == 0x0002E4, "Member 'USpringArmComponent::CameraLagSpeed' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, CameraRotationLagSpeed) == 0x0002E8, "Member 'USpringArmComponent::CameraRotationLagSpeed' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, CameraLagMaxTimeStep) == 0x0002EC, "Member 'USpringArmComponent::CameraLagMaxTimeStep' has a wrong offset!"); \ +static_assert(offsetof(USpringArmComponent, CameraLagMaxDistance) == 0x0002F0, "Member 'USpringArmComponent::CameraLagMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTouchInterface \ +static_assert(alignof(UTouchInterface) == 0x000008, "Wrong alignment on UTouchInterface"); \ +static_assert(sizeof(UTouchInterface) == 0x000058, "Wrong size on UTouchInterface"); \ +static_assert(offsetof(UTouchInterface, Controls) == 0x000028, "Member 'UTouchInterface::Controls' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, ActiveOpacity) == 0x000038, "Member 'UTouchInterface::ActiveOpacity' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, InactiveOpacity) == 0x00003C, "Member 'UTouchInterface::InactiveOpacity' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, TimeUntilDeactive) == 0x000040, "Member 'UTouchInterface::TimeUntilDeactive' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, TimeUntilReset) == 0x000044, "Member 'UTouchInterface::TimeUntilReset' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, ActivationDelay) == 0x000048, "Member 'UTouchInterface::ActivationDelay' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, bPreventRecenter) == 0x00004C, "Member 'UTouchInterface::bPreventRecenter' has a wrong offset!"); \ +static_assert(offsetof(UTouchInterface, StartupDelay) == 0x000050, "Member 'UTouchInterface::StartupDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameInstance_DebugCreatePlayer \ +static_assert(alignof(GameInstance_DebugCreatePlayer) == 0x000004, "Wrong alignment on GameInstance_DebugCreatePlayer"); \ +static_assert(sizeof(GameInstance_DebugCreatePlayer) == 0x000004, "Wrong size on GameInstance_DebugCreatePlayer"); \ +static_assert(offsetof(GameInstance_DebugCreatePlayer, ControllerId) == 0x000000, "Member 'GameInstance_DebugCreatePlayer::ControllerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameInstance_DebugRemovePlayer \ +static_assert(alignof(GameInstance_DebugRemovePlayer) == 0x000004, "Wrong alignment on GameInstance_DebugRemovePlayer"); \ +static_assert(sizeof(GameInstance_DebugRemovePlayer) == 0x000004, "Wrong size on GameInstance_DebugRemovePlayer"); \ +static_assert(offsetof(GameInstance_DebugRemovePlayer, ControllerId) == 0x000000, "Member 'GameInstance_DebugRemovePlayer::ControllerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameInstance_HandleNetworkError \ +static_assert(alignof(GameInstance_HandleNetworkError) == 0x000001, "Wrong alignment on GameInstance_HandleNetworkError"); \ +static_assert(sizeof(GameInstance_HandleNetworkError) == 0x000002, "Wrong size on GameInstance_HandleNetworkError"); \ +static_assert(offsetof(GameInstance_HandleNetworkError, FailureType) == 0x000000, "Member 'GameInstance_HandleNetworkError::FailureType' has a wrong offset!"); \ +static_assert(offsetof(GameInstance_HandleNetworkError, bIsServer) == 0x000001, "Member 'GameInstance_HandleNetworkError::bIsServer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameInstance_HandleTravelError \ +static_assert(alignof(GameInstance_HandleTravelError) == 0x000001, "Wrong alignment on GameInstance_HandleTravelError"); \ +static_assert(sizeof(GameInstance_HandleTravelError) == 0x000001, "Wrong size on GameInstance_HandleTravelError"); \ +static_assert(offsetof(GameInstance_HandleTravelError, FailureType) == 0x000000, "Member 'GameInstance_HandleTravelError::FailureType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameInstance \ +static_assert(alignof(UGameInstance) == 0x000008, "Wrong alignment on UGameInstance"); \ +static_assert(sizeof(UGameInstance) == 0x0001C0, "Wrong size on UGameInstance"); \ +static_assert(offsetof(UGameInstance, LocalPlayers) == 0x000038, "Member 'UGameInstance::LocalPlayers' has a wrong offset!"); \ +static_assert(offsetof(UGameInstance, OnlineSession) == 0x000048, "Member 'UGameInstance::OnlineSession' has a wrong offset!"); \ +static_assert(offsetof(UGameInstance, ReferencedObjects) == 0x000050, "Member 'UGameInstance::ReferencedObjects' has a wrong offset!"); \ +static_assert(offsetof(UGameInstance, OnPawnControllerChangedDelegates) == 0x000078, "Member 'UGameInstance::OnPawnControllerChangedDelegates' has a wrong offset!"); \ +static_assert(offsetof(UGameInstance, OnInputDeviceConnectionChange) == 0x0000A0, "Member 'UGameInstance::OnInputDeviceConnectionChange' has a wrong offset!"); \ +static_assert(offsetof(UGameInstance, OnUserInputDevicePairingChange) == 0x0000B0, "Member 'UGameInstance::OnUserInputDevicePairingChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_K2_OnSetMatchState \ +static_assert(alignof(GameMode_K2_OnSetMatchState) == 0x000004, "Wrong alignment on GameMode_K2_OnSetMatchState"); \ +static_assert(sizeof(GameMode_K2_OnSetMatchState) == 0x000008, "Wrong size on GameMode_K2_OnSetMatchState"); \ +static_assert(offsetof(GameMode_K2_OnSetMatchState, NewState) == 0x000000, "Member 'GameMode_K2_OnSetMatchState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_ReadyToEndMatch \ +static_assert(alignof(GameMode_ReadyToEndMatch) == 0x000001, "Wrong alignment on GameMode_ReadyToEndMatch"); \ +static_assert(sizeof(GameMode_ReadyToEndMatch) == 0x000001, "Wrong size on GameMode_ReadyToEndMatch"); \ +static_assert(offsetof(GameMode_ReadyToEndMatch, ReturnValue) == 0x000000, "Member 'GameMode_ReadyToEndMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_ReadyToStartMatch \ +static_assert(alignof(GameMode_ReadyToStartMatch) == 0x000001, "Wrong alignment on GameMode_ReadyToStartMatch"); \ +static_assert(sizeof(GameMode_ReadyToStartMatch) == 0x000001, "Wrong size on GameMode_ReadyToStartMatch"); \ +static_assert(offsetof(GameMode_ReadyToStartMatch, ReturnValue) == 0x000000, "Member 'GameMode_ReadyToStartMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_Say \ +static_assert(alignof(GameMode_Say) == 0x000008, "Wrong alignment on GameMode_Say"); \ +static_assert(sizeof(GameMode_Say) == 0x000010, "Wrong size on GameMode_Say"); \ +static_assert(offsetof(GameMode_Say, Msg) == 0x000000, "Member 'GameMode_Say::Msg' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_GetMatchState \ +static_assert(alignof(GameMode_GetMatchState) == 0x000004, "Wrong alignment on GameMode_GetMatchState"); \ +static_assert(sizeof(GameMode_GetMatchState) == 0x000008, "Wrong size on GameMode_GetMatchState"); \ +static_assert(offsetof(GameMode_GetMatchState, ReturnValue) == 0x000000, "Member 'GameMode_GetMatchState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMode_IsMatchInProgress \ +static_assert(alignof(GameMode_IsMatchInProgress) == 0x000001, "Wrong alignment on GameMode_IsMatchInProgress"); \ +static_assert(sizeof(GameMode_IsMatchInProgress) == 0x000001, "Wrong size on GameMode_IsMatchInProgress"); \ +static_assert(offsetof(GameMode_IsMatchInProgress, ReturnValue) == 0x000000, "Member 'GameMode_IsMatchInProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameMode \ +static_assert(alignof(AGameMode) == 0x000008, "Wrong alignment on AGameMode"); \ +static_assert(sizeof(AGameMode) == 0x000380, "Wrong size on AGameMode"); \ +static_assert(offsetof(AGameMode, MatchState) == 0x000338, "Member 'AGameMode::MatchState' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, NumSpectators) == 0x000344, "Member 'AGameMode::NumSpectators' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, NumPlayers) == 0x000348, "Member 'AGameMode::NumPlayers' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, NumBots) == 0x00034C, "Member 'AGameMode::NumBots' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, MinRespawnDelay) == 0x000350, "Member 'AGameMode::MinRespawnDelay' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, NumTravellingPlayers) == 0x000354, "Member 'AGameMode::NumTravellingPlayers' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, EngineMessageClass) == 0x000358, "Member 'AGameMode::EngineMessageClass' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, InactivePlayerArray) == 0x000360, "Member 'AGameMode::InactivePlayerArray' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, InactivePlayerStateLifeSpan) == 0x000370, "Member 'AGameMode::InactivePlayerStateLifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, MaxInactivePlayers) == 0x000374, "Member 'AGameMode::MaxInactivePlayers' has a wrong offset!"); \ +static_assert(offsetof(AGameMode, bHandleDedicatedServerReplays) == 0x000378, "Member 'AGameMode::bHandleDedicatedServerReplays' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ActivateReverbEffect \ +static_assert(alignof(GameplayStatics_ActivateReverbEffect) == 0x000008, "Wrong alignment on GameplayStatics_ActivateReverbEffect"); \ +static_assert(sizeof(GameplayStatics_ActivateReverbEffect) == 0x000028, "Wrong size on GameplayStatics_ActivateReverbEffect"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, WorldContextObject) == 0x000000, "Member 'GameplayStatics_ActivateReverbEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, ReverbEffect) == 0x000008, "Member 'GameplayStatics_ActivateReverbEffect::ReverbEffect' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, TagName) == 0x000010, "Member 'GameplayStatics_ActivateReverbEffect::TagName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, Priority) == 0x000018, "Member 'GameplayStatics_ActivateReverbEffect::Priority' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, Volume) == 0x00001C, "Member 'GameplayStatics_ActivateReverbEffect::Volume' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ActivateReverbEffect, FadeTime) == 0x000020, "Member 'GameplayStatics_ActivateReverbEffect::FadeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_AnnounceAccessibleString \ +static_assert(alignof(GameplayStatics_AnnounceAccessibleString) == 0x000008, "Wrong alignment on GameplayStatics_AnnounceAccessibleString"); \ +static_assert(sizeof(GameplayStatics_AnnounceAccessibleString) == 0x000010, "Wrong size on GameplayStatics_AnnounceAccessibleString"); \ +static_assert(offsetof(GameplayStatics_AnnounceAccessibleString, AnnouncementString) == 0x000000, "Member 'GameplayStatics_AnnounceAccessibleString::AnnouncementString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ApplyDamage \ +static_assert(alignof(GameplayStatics_ApplyDamage) == 0x000008, "Wrong alignment on GameplayStatics_ApplyDamage"); \ +static_assert(sizeof(GameplayStatics_ApplyDamage) == 0x000030, "Wrong size on GameplayStatics_ApplyDamage"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, DamagedActor) == 0x000000, "Member 'GameplayStatics_ApplyDamage::DamagedActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, BaseDamage) == 0x000008, "Member 'GameplayStatics_ApplyDamage::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, EventInstigator) == 0x000010, "Member 'GameplayStatics_ApplyDamage::EventInstigator' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, DamageCauser) == 0x000018, "Member 'GameplayStatics_ApplyDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, DamageTypeClass) == 0x000020, "Member 'GameplayStatics_ApplyDamage::DamageTypeClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyDamage, ReturnValue) == 0x000028, "Member 'GameplayStatics_ApplyDamage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ApplyPointDamage \ +static_assert(alignof(GameplayStatics_ApplyPointDamage) == 0x000008, "Wrong alignment on GameplayStatics_ApplyPointDamage"); \ +static_assert(sizeof(GameplayStatics_ApplyPointDamage) == 0x000130, "Wrong size on GameplayStatics_ApplyPointDamage"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, DamagedActor) == 0x000000, "Member 'GameplayStatics_ApplyPointDamage::DamagedActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, BaseDamage) == 0x000008, "Member 'GameplayStatics_ApplyPointDamage::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, HitFromDirection) == 0x000010, "Member 'GameplayStatics_ApplyPointDamage::HitFromDirection' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, HitInfo) == 0x000028, "Member 'GameplayStatics_ApplyPointDamage::HitInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, EventInstigator) == 0x000110, "Member 'GameplayStatics_ApplyPointDamage::EventInstigator' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, DamageCauser) == 0x000118, "Member 'GameplayStatics_ApplyPointDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, DamageTypeClass) == 0x000120, "Member 'GameplayStatics_ApplyPointDamage::DamageTypeClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyPointDamage, ReturnValue) == 0x000128, "Member 'GameplayStatics_ApplyPointDamage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ApplyRadialDamage \ +static_assert(alignof(GameplayStatics_ApplyRadialDamage) == 0x000008, "Wrong alignment on GameplayStatics_ApplyRadialDamage"); \ +static_assert(sizeof(GameplayStatics_ApplyRadialDamage) == 0x000060, "Wrong size on GameplayStatics_ApplyRadialDamage"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, WorldContextObject) == 0x000000, "Member 'GameplayStatics_ApplyRadialDamage::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, BaseDamage) == 0x000008, "Member 'GameplayStatics_ApplyRadialDamage::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, Origin) == 0x000010, "Member 'GameplayStatics_ApplyRadialDamage::Origin' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, DamageRadius) == 0x000028, "Member 'GameplayStatics_ApplyRadialDamage::DamageRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, DamageTypeClass) == 0x000030, "Member 'GameplayStatics_ApplyRadialDamage::DamageTypeClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, IgnoreActors) == 0x000038, "Member 'GameplayStatics_ApplyRadialDamage::IgnoreActors' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, DamageCauser) == 0x000048, "Member 'GameplayStatics_ApplyRadialDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, InstigatedByController) == 0x000050, "Member 'GameplayStatics_ApplyRadialDamage::InstigatedByController' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, bDoFullDamage) == 0x000058, "Member 'GameplayStatics_ApplyRadialDamage::bDoFullDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, DamagePreventionChannel) == 0x000059, "Member 'GameplayStatics_ApplyRadialDamage::DamagePreventionChannel' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamage, ReturnValue) == 0x00005A, "Member 'GameplayStatics_ApplyRadialDamage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ApplyRadialDamageWithFalloff \ +static_assert(alignof(GameplayStatics_ApplyRadialDamageWithFalloff) == 0x000008, "Wrong alignment on GameplayStatics_ApplyRadialDamageWithFalloff"); \ +static_assert(sizeof(GameplayStatics_ApplyRadialDamageWithFalloff) == 0x000068, "Wrong size on GameplayStatics_ApplyRadialDamageWithFalloff"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, WorldContextObject) == 0x000000, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, BaseDamage) == 0x000008, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, MinimumDamage) == 0x00000C, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::MinimumDamage' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, Origin) == 0x000010, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::Origin' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamageInnerRadius) == 0x000028, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamageInnerRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamageOuterRadius) == 0x00002C, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamageOuterRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamageFalloff) == 0x000030, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamageFalloff' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamageTypeClass) == 0x000038, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamageTypeClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, IgnoreActors) == 0x000040, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::IgnoreActors' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamageCauser) == 0x000050, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, InstigatedByController) == 0x000058, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::InstigatedByController' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, DamagePreventionChannel) == 0x000060, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::DamagePreventionChannel' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ApplyRadialDamageWithFalloff, ReturnValue) == 0x000061, "Member 'GameplayStatics_ApplyRadialDamageWithFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_AreAnyListenersWithinRange \ +static_assert(alignof(GameplayStatics_AreAnyListenersWithinRange) == 0x000008, "Wrong alignment on GameplayStatics_AreAnyListenersWithinRange"); \ +static_assert(sizeof(GameplayStatics_AreAnyListenersWithinRange) == 0x000028, "Wrong size on GameplayStatics_AreAnyListenersWithinRange"); \ +static_assert(offsetof(GameplayStatics_AreAnyListenersWithinRange, WorldContextObject) == 0x000000, "Member 'GameplayStatics_AreAnyListenersWithinRange::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_AreAnyListenersWithinRange, Location) == 0x000008, "Member 'GameplayStatics_AreAnyListenersWithinRange::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_AreAnyListenersWithinRange, MaximumRange) == 0x000020, "Member 'GameplayStatics_AreAnyListenersWithinRange::MaximumRange' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_AreAnyListenersWithinRange, ReturnValue) == 0x000024, "Member 'GameplayStatics_AreAnyListenersWithinRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_AreSubtitlesEnabled \ +static_assert(alignof(GameplayStatics_AreSubtitlesEnabled) == 0x000001, "Wrong alignment on GameplayStatics_AreSubtitlesEnabled"); \ +static_assert(sizeof(GameplayStatics_AreSubtitlesEnabled) == 0x000001, "Wrong size on GameplayStatics_AreSubtitlesEnabled"); \ +static_assert(offsetof(GameplayStatics_AreSubtitlesEnabled, ReturnValue) == 0x000000, "Member 'GameplayStatics_AreSubtitlesEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_BeginDeferredActorSpawnFromClass \ +static_assert(alignof(GameplayStatics_BeginDeferredActorSpawnFromClass) == 0x000010, "Wrong alignment on GameplayStatics_BeginDeferredActorSpawnFromClass"); \ +static_assert(sizeof(GameplayStatics_BeginDeferredActorSpawnFromClass) == 0x000090, "Wrong size on GameplayStatics_BeginDeferredActorSpawnFromClass"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, WorldContextObject) == 0x000000, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, ActorClass) == 0x000008, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, SpawnTransform) == 0x000010, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::SpawnTransform' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, CollisionHandlingOverride) == 0x000070, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::CollisionHandlingOverride' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, Owner) == 0x000078, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::Owner' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, TransformScaleMethod) == 0x000080, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::TransformScaleMethod' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginDeferredActorSpawnFromClass, ReturnValue) == 0x000088, "Member 'GameplayStatics_BeginDeferredActorSpawnFromClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_BeginSpawningActorFromBlueprint \ +static_assert(alignof(GameplayStatics_BeginSpawningActorFromBlueprint) == 0x000010, "Wrong alignment on GameplayStatics_BeginSpawningActorFromBlueprint"); \ +static_assert(sizeof(GameplayStatics_BeginSpawningActorFromBlueprint) == 0x000080, "Wrong size on GameplayStatics_BeginSpawningActorFromBlueprint"); \ +static_assert(offsetof(GameplayStatics_BeginSpawningActorFromBlueprint, WorldContextObject) == 0x000000, "Member 'GameplayStatics_BeginSpawningActorFromBlueprint::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginSpawningActorFromBlueprint, Blueprint) == 0x000008, "Member 'GameplayStatics_BeginSpawningActorFromBlueprint::Blueprint' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginSpawningActorFromBlueprint, SpawnTransform) == 0x000010, "Member 'GameplayStatics_BeginSpawningActorFromBlueprint::SpawnTransform' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginSpawningActorFromBlueprint, bNoCollisionFail) == 0x000070, "Member 'GameplayStatics_BeginSpawningActorFromBlueprint::bNoCollisionFail' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BeginSpawningActorFromBlueprint, ReturnValue) == 0x000078, "Member 'GameplayStatics_BeginSpawningActorFromBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_Blueprint_PredictProjectilePath_Advanced \ +static_assert(alignof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced) == 0x000008, "Wrong alignment on GameplayStatics_Blueprint_PredictProjectilePath_Advanced"); \ +static_assert(sizeof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced) == 0x0001B8, "Wrong size on GameplayStatics_Blueprint_PredictProjectilePath_Advanced"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced, WorldContextObject) == 0x000000, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_Advanced::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced, PredictParams) == 0x000008, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_Advanced::PredictParams' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced, PredictResult) == 0x000080, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_Advanced::PredictResult' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_Advanced, ReturnValue) == 0x0001B0, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_Advanced::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType \ +static_assert(alignof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType) == 0x000008, "Wrong alignment on GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType"); \ +static_assert(sizeof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType) == 0x000190, "Wrong size on GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, WorldContextObject) == 0x000000, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, OutHit) == 0x000008, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::OutHit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, OutPathPositions) == 0x0000F0, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::OutPathPositions' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, OutLastTraceDestination) == 0x000100, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::OutLastTraceDestination' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, StartPos) == 0x000118, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::StartPos' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, LaunchVelocity) == 0x000130, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, bTracePath) == 0x000148, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::bTracePath' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, ProjectileRadius) == 0x00014C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::ProjectileRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, ObjectTypes) == 0x000150, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, bTraceComplex) == 0x000160, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, ActorsToIgnore) == 0x000168, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, DrawDebugType) == 0x000178, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, DrawDebugTime) == 0x00017C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::DrawDebugTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, SimFrequency) == 0x000180, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::SimFrequency' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, MaxSimTime) == 0x000184, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::MaxSimTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, OverrideGravityZ) == 0x000188, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::OverrideGravityZ' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType, ReturnValue) == 0x00018C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel \ +static_assert(alignof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel) == 0x000008, "Wrong alignment on GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel"); \ +static_assert(sizeof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel) == 0x000180, "Wrong size on GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, WorldContextObject) == 0x000000, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, OutHit) == 0x000008, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::OutHit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, OutPathPositions) == 0x0000F0, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::OutPathPositions' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, OutLastTraceDestination) == 0x000100, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::OutLastTraceDestination' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, StartPos) == 0x000118, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::StartPos' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, LaunchVelocity) == 0x000130, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, bTracePath) == 0x000148, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::bTracePath' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, ProjectileRadius) == 0x00014C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::ProjectileRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, TraceChannel) == 0x000150, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, bTraceComplex) == 0x000151, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, ActorsToIgnore) == 0x000158, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, DrawDebugType) == 0x000168, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, DrawDebugTime) == 0x00016C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::DrawDebugTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, SimFrequency) == 0x000170, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::SimFrequency' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, MaxSimTime) == 0x000174, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::MaxSimTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, OverrideGravityZ) == 0x000178, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::OverrideGravityZ' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel, ReturnValue) == 0x00017C, "Member 'GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_BlueprintSuggestProjectileVelocity \ +static_assert(alignof(GameplayStatics_BlueprintSuggestProjectileVelocity) == 0x000008, "Wrong alignment on GameplayStatics_BlueprintSuggestProjectileVelocity"); \ +static_assert(sizeof(GameplayStatics_BlueprintSuggestProjectileVelocity) == 0x000068, "Wrong size on GameplayStatics_BlueprintSuggestProjectileVelocity"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, WorldContextObject) == 0x000000, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, TossVelocity) == 0x000008, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::TossVelocity' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, StartLocation) == 0x000020, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, EndLocation) == 0x000038, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::EndLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, LaunchSpeed) == 0x000050, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::LaunchSpeed' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, OverrideGravityZ) == 0x000054, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::OverrideGravityZ' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, TraceOption) == 0x000058, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::TraceOption' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, CollisionRadius) == 0x00005C, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::CollisionRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, bFavorHighArc) == 0x000060, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::bFavorHighArc' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, bDrawDebug) == 0x000061, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BlueprintSuggestProjectileVelocity, ReturnValue) == 0x000062, "Member 'GameplayStatics_BlueprintSuggestProjectileVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_BreakHitResult \ +static_assert(alignof(GameplayStatics_BreakHitResult) == 0x000008, "Wrong alignment on GameplayStatics_BreakHitResult"); \ +static_assert(sizeof(GameplayStatics_BreakHitResult) == 0x0001C0, "Wrong size on GameplayStatics_BreakHitResult"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, Hit) == 0x000000, "Member 'GameplayStatics_BreakHitResult::Hit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, bBlockingHit) == 0x0000E8, "Member 'GameplayStatics_BreakHitResult::bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, bInitialOverlap) == 0x0000E9, "Member 'GameplayStatics_BreakHitResult::bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, Time) == 0x0000EC, "Member 'GameplayStatics_BreakHitResult::Time' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, Distance) == 0x0000F0, "Member 'GameplayStatics_BreakHitResult::Distance' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, Location) == 0x0000F8, "Member 'GameplayStatics_BreakHitResult::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, ImpactPoint) == 0x000110, "Member 'GameplayStatics_BreakHitResult::ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, Normal) == 0x000128, "Member 'GameplayStatics_BreakHitResult::Normal' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, ImpactNormal) == 0x000140, "Member 'GameplayStatics_BreakHitResult::ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, PhysMat) == 0x000158, "Member 'GameplayStatics_BreakHitResult::PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, HitActor) == 0x000160, "Member 'GameplayStatics_BreakHitResult::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, HitComponent) == 0x000168, "Member 'GameplayStatics_BreakHitResult::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, HitBoneName) == 0x000170, "Member 'GameplayStatics_BreakHitResult::HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, BoneName) == 0x000178, "Member 'GameplayStatics_BreakHitResult::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, HitItem) == 0x000180, "Member 'GameplayStatics_BreakHitResult::HitItem' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, ElementIndex) == 0x000184, "Member 'GameplayStatics_BreakHitResult::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, FaceIndex) == 0x000188, "Member 'GameplayStatics_BreakHitResult::FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, TraceStart) == 0x000190, "Member 'GameplayStatics_BreakHitResult::TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_BreakHitResult, TraceEnd) == 0x0001A8, "Member 'GameplayStatics_BreakHitResult::TraceEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ClearSoundMixClassOverride \ +static_assert(alignof(GameplayStatics_ClearSoundMixClassOverride) == 0x000008, "Wrong alignment on GameplayStatics_ClearSoundMixClassOverride"); \ +static_assert(sizeof(GameplayStatics_ClearSoundMixClassOverride) == 0x000020, "Wrong size on GameplayStatics_ClearSoundMixClassOverride"); \ +static_assert(offsetof(GameplayStatics_ClearSoundMixClassOverride, WorldContextObject) == 0x000000, "Member 'GameplayStatics_ClearSoundMixClassOverride::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ClearSoundMixClassOverride, InSoundMixModifier) == 0x000008, "Member 'GameplayStatics_ClearSoundMixClassOverride::InSoundMixModifier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ClearSoundMixClassOverride, InSoundClass) == 0x000010, "Member 'GameplayStatics_ClearSoundMixClassOverride::InSoundClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ClearSoundMixClassOverride, FadeOutTime) == 0x000018, "Member 'GameplayStatics_ClearSoundMixClassOverride::FadeOutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ClearSoundMixModifiers \ +static_assert(alignof(GameplayStatics_ClearSoundMixModifiers) == 0x000008, "Wrong alignment on GameplayStatics_ClearSoundMixModifiers"); \ +static_assert(sizeof(GameplayStatics_ClearSoundMixModifiers) == 0x000008, "Wrong size on GameplayStatics_ClearSoundMixModifiers"); \ +static_assert(offsetof(GameplayStatics_ClearSoundMixModifiers, WorldContextObject) == 0x000000, "Member 'GameplayStatics_ClearSoundMixModifiers::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_CreatePlayer \ +static_assert(alignof(GameplayStatics_CreatePlayer) == 0x000008, "Wrong alignment on GameplayStatics_CreatePlayer"); \ +static_assert(sizeof(GameplayStatics_CreatePlayer) == 0x000018, "Wrong size on GameplayStatics_CreatePlayer"); \ +static_assert(offsetof(GameplayStatics_CreatePlayer, WorldContextObject) == 0x000000, "Member 'GameplayStatics_CreatePlayer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayer, ControllerId) == 0x000008, "Member 'GameplayStatics_CreatePlayer::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayer, bSpawnPlayerController) == 0x00000C, "Member 'GameplayStatics_CreatePlayer::bSpawnPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayer, ReturnValue) == 0x000010, "Member 'GameplayStatics_CreatePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_CreatePlayerFromPlatformUser \ +static_assert(alignof(GameplayStatics_CreatePlayerFromPlatformUser) == 0x000008, "Wrong alignment on GameplayStatics_CreatePlayerFromPlatformUser"); \ +static_assert(sizeof(GameplayStatics_CreatePlayerFromPlatformUser) == 0x000018, "Wrong size on GameplayStatics_CreatePlayerFromPlatformUser"); \ +static_assert(offsetof(GameplayStatics_CreatePlayerFromPlatformUser, WorldContextObject) == 0x000000, "Member 'GameplayStatics_CreatePlayerFromPlatformUser::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayerFromPlatformUser, UserId) == 0x000008, "Member 'GameplayStatics_CreatePlayerFromPlatformUser::UserId' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayerFromPlatformUser, bSpawnPlayerController) == 0x00000C, "Member 'GameplayStatics_CreatePlayerFromPlatformUser::bSpawnPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreatePlayerFromPlatformUser, ReturnValue) == 0x000010, "Member 'GameplayStatics_CreatePlayerFromPlatformUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_CreateSaveGameObject \ +static_assert(alignof(GameplayStatics_CreateSaveGameObject) == 0x000008, "Wrong alignment on GameplayStatics_CreateSaveGameObject"); \ +static_assert(sizeof(GameplayStatics_CreateSaveGameObject) == 0x000010, "Wrong size on GameplayStatics_CreateSaveGameObject"); \ +static_assert(offsetof(GameplayStatics_CreateSaveGameObject, SaveGameClass) == 0x000000, "Member 'GameplayStatics_CreateSaveGameObject::SaveGameClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSaveGameObject, ReturnValue) == 0x000008, "Member 'GameplayStatics_CreateSaveGameObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_CreateSound2D \ +static_assert(alignof(GameplayStatics_CreateSound2D) == 0x000008, "Wrong alignment on GameplayStatics_CreateSound2D"); \ +static_assert(sizeof(GameplayStatics_CreateSound2D) == 0x000038, "Wrong size on GameplayStatics_CreateSound2D"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, WorldContextObject) == 0x000000, "Member 'GameplayStatics_CreateSound2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, Sound) == 0x000008, "Member 'GameplayStatics_CreateSound2D::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, VolumeMultiplier) == 0x000010, "Member 'GameplayStatics_CreateSound2D::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, PitchMultiplier) == 0x000014, "Member 'GameplayStatics_CreateSound2D::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, StartTime) == 0x000018, "Member 'GameplayStatics_CreateSound2D::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, ConcurrencySettings) == 0x000020, "Member 'GameplayStatics_CreateSound2D::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, bPersistAcrossLevelTransition) == 0x000028, "Member 'GameplayStatics_CreateSound2D::bPersistAcrossLevelTransition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, bAutoDestroy) == 0x000029, "Member 'GameplayStatics_CreateSound2D::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_CreateSound2D, ReturnValue) == 0x000030, "Member 'GameplayStatics_CreateSound2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_DeactivateReverbEffect \ +static_assert(alignof(GameplayStatics_DeactivateReverbEffect) == 0x000008, "Wrong alignment on GameplayStatics_DeactivateReverbEffect"); \ +static_assert(sizeof(GameplayStatics_DeactivateReverbEffect) == 0x000010, "Wrong size on GameplayStatics_DeactivateReverbEffect"); \ +static_assert(offsetof(GameplayStatics_DeactivateReverbEffect, WorldContextObject) == 0x000000, "Member 'GameplayStatics_DeactivateReverbEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeactivateReverbEffect, TagName) == 0x000008, "Member 'GameplayStatics_DeactivateReverbEffect::TagName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_DeleteGameInSlot \ +static_assert(alignof(GameplayStatics_DeleteGameInSlot) == 0x000008, "Wrong alignment on GameplayStatics_DeleteGameInSlot"); \ +static_assert(sizeof(GameplayStatics_DeleteGameInSlot) == 0x000018, "Wrong size on GameplayStatics_DeleteGameInSlot"); \ +static_assert(offsetof(GameplayStatics_DeleteGameInSlot, SlotName) == 0x000000, "Member 'GameplayStatics_DeleteGameInSlot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeleteGameInSlot, UserIndex) == 0x000010, "Member 'GameplayStatics_DeleteGameInSlot::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeleteGameInSlot, ReturnValue) == 0x000014, "Member 'GameplayStatics_DeleteGameInSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_DeprojectSceneCaptureToWorld \ +static_assert(alignof(GameplayStatics_DeprojectSceneCaptureToWorld) == 0x000008, "Wrong alignment on GameplayStatics_DeprojectSceneCaptureToWorld"); \ +static_assert(sizeof(GameplayStatics_DeprojectSceneCaptureToWorld) == 0x000050, "Wrong size on GameplayStatics_DeprojectSceneCaptureToWorld"); \ +static_assert(offsetof(GameplayStatics_DeprojectSceneCaptureToWorld, SceneCapture2D) == 0x000000, "Member 'GameplayStatics_DeprojectSceneCaptureToWorld::SceneCapture2D' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectSceneCaptureToWorld, TargetUV) == 0x000008, "Member 'GameplayStatics_DeprojectSceneCaptureToWorld::TargetUV' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectSceneCaptureToWorld, WorldPosition) == 0x000018, "Member 'GameplayStatics_DeprojectSceneCaptureToWorld::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectSceneCaptureToWorld, WorldDirection) == 0x000030, "Member 'GameplayStatics_DeprojectSceneCaptureToWorld::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectSceneCaptureToWorld, ReturnValue) == 0x000048, "Member 'GameplayStatics_DeprojectSceneCaptureToWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_DeprojectScreenToWorld \ +static_assert(alignof(GameplayStatics_DeprojectScreenToWorld) == 0x000008, "Wrong alignment on GameplayStatics_DeprojectScreenToWorld"); \ +static_assert(sizeof(GameplayStatics_DeprojectScreenToWorld) == 0x000050, "Wrong size on GameplayStatics_DeprojectScreenToWorld"); \ +static_assert(offsetof(GameplayStatics_DeprojectScreenToWorld, Player) == 0x000000, "Member 'GameplayStatics_DeprojectScreenToWorld::Player' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectScreenToWorld, ScreenPosition) == 0x000008, "Member 'GameplayStatics_DeprojectScreenToWorld::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectScreenToWorld, WorldPosition) == 0x000018, "Member 'GameplayStatics_DeprojectScreenToWorld::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectScreenToWorld, WorldDirection) == 0x000030, "Member 'GameplayStatics_DeprojectScreenToWorld::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DeprojectScreenToWorld, ReturnValue) == 0x000048, "Member 'GameplayStatics_DeprojectScreenToWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_DoesSaveGameExist \ +static_assert(alignof(GameplayStatics_DoesSaveGameExist) == 0x000008, "Wrong alignment on GameplayStatics_DoesSaveGameExist"); \ +static_assert(sizeof(GameplayStatics_DoesSaveGameExist) == 0x000018, "Wrong size on GameplayStatics_DoesSaveGameExist"); \ +static_assert(offsetof(GameplayStatics_DoesSaveGameExist, SlotName) == 0x000000, "Member 'GameplayStatics_DoesSaveGameExist::SlotName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DoesSaveGameExist, UserIndex) == 0x000010, "Member 'GameplayStatics_DoesSaveGameExist::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_DoesSaveGameExist, ReturnValue) == 0x000014, "Member 'GameplayStatics_DoesSaveGameExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_EnableLiveStreaming \ +static_assert(alignof(GameplayStatics_EnableLiveStreaming) == 0x000001, "Wrong alignment on GameplayStatics_EnableLiveStreaming"); \ +static_assert(sizeof(GameplayStatics_EnableLiveStreaming) == 0x000001, "Wrong size on GameplayStatics_EnableLiveStreaming"); \ +static_assert(offsetof(GameplayStatics_EnableLiveStreaming, Enable) == 0x000000, "Member 'GameplayStatics_EnableLiveStreaming::Enable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_FindCollisionUV \ +static_assert(alignof(GameplayStatics_FindCollisionUV) == 0x000008, "Wrong alignment on GameplayStatics_FindCollisionUV"); \ +static_assert(sizeof(GameplayStatics_FindCollisionUV) == 0x000108, "Wrong size on GameplayStatics_FindCollisionUV"); \ +static_assert(offsetof(GameplayStatics_FindCollisionUV, Hit) == 0x000000, "Member 'GameplayStatics_FindCollisionUV::Hit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindCollisionUV, UVChannel) == 0x0000E8, "Member 'GameplayStatics_FindCollisionUV::UVChannel' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindCollisionUV, UV) == 0x0000F0, "Member 'GameplayStatics_FindCollisionUV::UV' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindCollisionUV, ReturnValue) == 0x000100, "Member 'GameplayStatics_FindCollisionUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_FindNearestActor \ +static_assert(alignof(GameplayStatics_FindNearestActor) == 0x000008, "Wrong alignment on GameplayStatics_FindNearestActor"); \ +static_assert(sizeof(GameplayStatics_FindNearestActor) == 0x000038, "Wrong size on GameplayStatics_FindNearestActor"); \ +static_assert(offsetof(GameplayStatics_FindNearestActor, Origin) == 0x000000, "Member 'GameplayStatics_FindNearestActor::Origin' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindNearestActor, ActorsToCheck) == 0x000018, "Member 'GameplayStatics_FindNearestActor::ActorsToCheck' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindNearestActor, Distance) == 0x000028, "Member 'GameplayStatics_FindNearestActor::Distance' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FindNearestActor, ReturnValue) == 0x000030, "Member 'GameplayStatics_FindNearestActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_FinishSpawningActor \ +static_assert(alignof(GameplayStatics_FinishSpawningActor) == 0x000010, "Wrong alignment on GameplayStatics_FinishSpawningActor"); \ +static_assert(sizeof(GameplayStatics_FinishSpawningActor) == 0x000080, "Wrong size on GameplayStatics_FinishSpawningActor"); \ +static_assert(offsetof(GameplayStatics_FinishSpawningActor, Actor) == 0x000000, "Member 'GameplayStatics_FinishSpawningActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FinishSpawningActor, SpawnTransform) == 0x000010, "Member 'GameplayStatics_FinishSpawningActor::SpawnTransform' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FinishSpawningActor, TransformScaleMethod) == 0x000070, "Member 'GameplayStatics_FinishSpawningActor::TransformScaleMethod' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_FinishSpawningActor, ReturnValue) == 0x000078, "Member 'GameplayStatics_FinishSpawningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_FlushLevelStreaming \ +static_assert(alignof(GameplayStatics_FlushLevelStreaming) == 0x000008, "Wrong alignment on GameplayStatics_FlushLevelStreaming"); \ +static_assert(sizeof(GameplayStatics_FlushLevelStreaming) == 0x000008, "Wrong size on GameplayStatics_FlushLevelStreaming"); \ +static_assert(offsetof(GameplayStatics_FlushLevelStreaming, WorldContextObject) == 0x000000, "Member 'GameplayStatics_FlushLevelStreaming::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAccurateRealTime \ +static_assert(alignof(GameplayStatics_GetAccurateRealTime) == 0x000008, "Wrong alignment on GameplayStatics_GetAccurateRealTime"); \ +static_assert(sizeof(GameplayStatics_GetAccurateRealTime) == 0x000010, "Wrong size on GameplayStatics_GetAccurateRealTime"); \ +static_assert(offsetof(GameplayStatics_GetAccurateRealTime, Seconds) == 0x000000, "Member 'GameplayStatics_GetAccurateRealTime::Seconds' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAccurateRealTime, PartialSeconds) == 0x000008, "Member 'GameplayStatics_GetAccurateRealTime::PartialSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetActiveSpatialPluginName \ +static_assert(alignof(GameplayStatics_GetActiveSpatialPluginName) == 0x000008, "Wrong alignment on GameplayStatics_GetActiveSpatialPluginName"); \ +static_assert(sizeof(GameplayStatics_GetActiveSpatialPluginName) == 0x000010, "Wrong size on GameplayStatics_GetActiveSpatialPluginName"); \ +static_assert(offsetof(GameplayStatics_GetActiveSpatialPluginName, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetActiveSpatialPluginName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActiveSpatialPluginName, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetActiveSpatialPluginName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetActorArrayAverageLocation \ +static_assert(alignof(GameplayStatics_GetActorArrayAverageLocation) == 0x000008, "Wrong alignment on GameplayStatics_GetActorArrayAverageLocation"); \ +static_assert(sizeof(GameplayStatics_GetActorArrayAverageLocation) == 0x000028, "Wrong size on GameplayStatics_GetActorArrayAverageLocation"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayAverageLocation, Actors) == 0x000000, "Member 'GameplayStatics_GetActorArrayAverageLocation::Actors' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayAverageLocation, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetActorArrayAverageLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetActorArrayBounds \ +static_assert(alignof(GameplayStatics_GetActorArrayBounds) == 0x000008, "Wrong alignment on GameplayStatics_GetActorArrayBounds"); \ +static_assert(sizeof(GameplayStatics_GetActorArrayBounds) == 0x000048, "Wrong size on GameplayStatics_GetActorArrayBounds"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayBounds, Actors) == 0x000000, "Member 'GameplayStatics_GetActorArrayBounds::Actors' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayBounds, bOnlyCollidingComponents) == 0x000010, "Member 'GameplayStatics_GetActorArrayBounds::bOnlyCollidingComponents' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayBounds, Center) == 0x000018, "Member 'GameplayStatics_GetActorArrayBounds::Center' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorArrayBounds, BoxExtent) == 0x000030, "Member 'GameplayStatics_GetActorArrayBounds::BoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetActorOfClass \ +static_assert(alignof(GameplayStatics_GetActorOfClass) == 0x000008, "Wrong alignment on GameplayStatics_GetActorOfClass"); \ +static_assert(sizeof(GameplayStatics_GetActorOfClass) == 0x000018, "Wrong size on GameplayStatics_GetActorOfClass"); \ +static_assert(offsetof(GameplayStatics_GetActorOfClass, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetActorOfClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorOfClass, ActorClass) == 0x000008, "Member 'GameplayStatics_GetActorOfClass::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetActorOfClass, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetActorOfClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAllActorsOfClass \ +static_assert(alignof(GameplayStatics_GetAllActorsOfClass) == 0x000008, "Wrong alignment on GameplayStatics_GetAllActorsOfClass"); \ +static_assert(sizeof(GameplayStatics_GetAllActorsOfClass) == 0x000020, "Wrong size on GameplayStatics_GetAllActorsOfClass"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClass, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAllActorsOfClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClass, ActorClass) == 0x000008, "Member 'GameplayStatics_GetAllActorsOfClass::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClass, OutActors) == 0x000010, "Member 'GameplayStatics_GetAllActorsOfClass::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAllActorsOfClassWithTag \ +static_assert(alignof(GameplayStatics_GetAllActorsOfClassWithTag) == 0x000008, "Wrong alignment on GameplayStatics_GetAllActorsOfClassWithTag"); \ +static_assert(sizeof(GameplayStatics_GetAllActorsOfClassWithTag) == 0x000028, "Wrong size on GameplayStatics_GetAllActorsOfClassWithTag"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClassWithTag, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAllActorsOfClassWithTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClassWithTag, ActorClass) == 0x000008, "Member 'GameplayStatics_GetAllActorsOfClassWithTag::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClassWithTag, Tag) == 0x000010, "Member 'GameplayStatics_GetAllActorsOfClassWithTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsOfClassWithTag, OutActors) == 0x000018, "Member 'GameplayStatics_GetAllActorsOfClassWithTag::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAllActorsWithInterface \ +static_assert(alignof(GameplayStatics_GetAllActorsWithInterface) == 0x000008, "Wrong alignment on GameplayStatics_GetAllActorsWithInterface"); \ +static_assert(sizeof(GameplayStatics_GetAllActorsWithInterface) == 0x000020, "Wrong size on GameplayStatics_GetAllActorsWithInterface"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithInterface, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAllActorsWithInterface::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithInterface, Interface) == 0x000008, "Member 'GameplayStatics_GetAllActorsWithInterface::Interface' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithInterface, OutActors) == 0x000010, "Member 'GameplayStatics_GetAllActorsWithInterface::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAllActorsWithTag \ +static_assert(alignof(GameplayStatics_GetAllActorsWithTag) == 0x000008, "Wrong alignment on GameplayStatics_GetAllActorsWithTag"); \ +static_assert(sizeof(GameplayStatics_GetAllActorsWithTag) == 0x000020, "Wrong size on GameplayStatics_GetAllActorsWithTag"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithTag, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAllActorsWithTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithTag, Tag) == 0x000008, "Member 'GameplayStatics_GetAllActorsWithTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAllActorsWithTag, OutActors) == 0x000010, "Member 'GameplayStatics_GetAllActorsWithTag::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAudioTimeSeconds \ +static_assert(alignof(GameplayStatics_GetAudioTimeSeconds) == 0x000008, "Wrong alignment on GameplayStatics_GetAudioTimeSeconds"); \ +static_assert(sizeof(GameplayStatics_GetAudioTimeSeconds) == 0x000010, "Wrong size on GameplayStatics_GetAudioTimeSeconds"); \ +static_assert(offsetof(GameplayStatics_GetAudioTimeSeconds, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAudioTimeSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAudioTimeSeconds, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetAudioTimeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetAvailableSpatialPluginNames \ +static_assert(alignof(GameplayStatics_GetAvailableSpatialPluginNames) == 0x000008, "Wrong alignment on GameplayStatics_GetAvailableSpatialPluginNames"); \ +static_assert(sizeof(GameplayStatics_GetAvailableSpatialPluginNames) == 0x000018, "Wrong size on GameplayStatics_GetAvailableSpatialPluginNames"); \ +static_assert(offsetof(GameplayStatics_GetAvailableSpatialPluginNames, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetAvailableSpatialPluginNames::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetAvailableSpatialPluginNames, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetAvailableSpatialPluginNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetClosestListenerLocation \ +static_assert(alignof(GameplayStatics_GetClosestListenerLocation) == 0x000008, "Wrong alignment on GameplayStatics_GetClosestListenerLocation"); \ +static_assert(sizeof(GameplayStatics_GetClosestListenerLocation) == 0x000048, "Wrong size on GameplayStatics_GetClosestListenerLocation"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetClosestListenerLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, Location) == 0x000008, "Member 'GameplayStatics_GetClosestListenerLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, MaximumRange) == 0x000020, "Member 'GameplayStatics_GetClosestListenerLocation::MaximumRange' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, bAllowAttenuationOverride) == 0x000024, "Member 'GameplayStatics_GetClosestListenerLocation::bAllowAttenuationOverride' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, ListenerPosition) == 0x000028, "Member 'GameplayStatics_GetClosestListenerLocation::ListenerPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetClosestListenerLocation, ReturnValue) == 0x000040, "Member 'GameplayStatics_GetClosestListenerLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetCurrentLevelName \ +static_assert(alignof(GameplayStatics_GetCurrentLevelName) == 0x000008, "Wrong alignment on GameplayStatics_GetCurrentLevelName"); \ +static_assert(sizeof(GameplayStatics_GetCurrentLevelName) == 0x000020, "Wrong size on GameplayStatics_GetCurrentLevelName"); \ +static_assert(offsetof(GameplayStatics_GetCurrentLevelName, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetCurrentLevelName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetCurrentLevelName, bRemovePrefixString) == 0x000008, "Member 'GameplayStatics_GetCurrentLevelName::bRemovePrefixString' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetCurrentLevelName, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetCurrentLevelName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetCurrentReverbEffect \ +static_assert(alignof(GameplayStatics_GetCurrentReverbEffect) == 0x000008, "Wrong alignment on GameplayStatics_GetCurrentReverbEffect"); \ +static_assert(sizeof(GameplayStatics_GetCurrentReverbEffect) == 0x000010, "Wrong size on GameplayStatics_GetCurrentReverbEffect"); \ +static_assert(offsetof(GameplayStatics_GetCurrentReverbEffect, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetCurrentReverbEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetCurrentReverbEffect, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetCurrentReverbEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetEnableWorldRendering \ +static_assert(alignof(GameplayStatics_GetEnableWorldRendering) == 0x000008, "Wrong alignment on GameplayStatics_GetEnableWorldRendering"); \ +static_assert(sizeof(GameplayStatics_GetEnableWorldRendering) == 0x000010, "Wrong size on GameplayStatics_GetEnableWorldRendering"); \ +static_assert(offsetof(GameplayStatics_GetEnableWorldRendering, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetEnableWorldRendering::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetEnableWorldRendering, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetEnableWorldRendering::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetGameInstance \ +static_assert(alignof(GameplayStatics_GetGameInstance) == 0x000008, "Wrong alignment on GameplayStatics_GetGameInstance"); \ +static_assert(sizeof(GameplayStatics_GetGameInstance) == 0x000010, "Wrong size on GameplayStatics_GetGameInstance"); \ +static_assert(offsetof(GameplayStatics_GetGameInstance, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetGameInstance::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetGameInstance, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetGameInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetGameMode \ +static_assert(alignof(GameplayStatics_GetGameMode) == 0x000008, "Wrong alignment on GameplayStatics_GetGameMode"); \ +static_assert(sizeof(GameplayStatics_GetGameMode) == 0x000010, "Wrong size on GameplayStatics_GetGameMode"); \ +static_assert(offsetof(GameplayStatics_GetGameMode, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetGameMode::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetGameMode, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetGameMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetGameState \ +static_assert(alignof(GameplayStatics_GetGameState) == 0x000008, "Wrong alignment on GameplayStatics_GetGameState"); \ +static_assert(sizeof(GameplayStatics_GetGameState) == 0x000010, "Wrong size on GameplayStatics_GetGameState"); \ +static_assert(offsetof(GameplayStatics_GetGameState, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetGameState::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetGameState, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetGameState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetGlobalTimeDilation \ +static_assert(alignof(GameplayStatics_GetGlobalTimeDilation) == 0x000008, "Wrong alignment on GameplayStatics_GetGlobalTimeDilation"); \ +static_assert(sizeof(GameplayStatics_GetGlobalTimeDilation) == 0x000010, "Wrong size on GameplayStatics_GetGlobalTimeDilation"); \ +static_assert(offsetof(GameplayStatics_GetGlobalTimeDilation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetGlobalTimeDilation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetGlobalTimeDilation, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetGlobalTimeDilation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetIntOption \ +static_assert(alignof(GameplayStatics_GetIntOption) == 0x000008, "Wrong alignment on GameplayStatics_GetIntOption"); \ +static_assert(sizeof(GameplayStatics_GetIntOption) == 0x000028, "Wrong size on GameplayStatics_GetIntOption"); \ +static_assert(offsetof(GameplayStatics_GetIntOption, Options) == 0x000000, "Member 'GameplayStatics_GetIntOption::Options' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetIntOption, Key) == 0x000010, "Member 'GameplayStatics_GetIntOption::Key' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetIntOption, DefaultValue) == 0x000020, "Member 'GameplayStatics_GetIntOption::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetIntOption, ReturnValue) == 0x000024, "Member 'GameplayStatics_GetIntOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetKeyValue \ +static_assert(alignof(GameplayStatics_GetKeyValue) == 0x000008, "Wrong alignment on GameplayStatics_GetKeyValue"); \ +static_assert(sizeof(GameplayStatics_GetKeyValue) == 0x000030, "Wrong size on GameplayStatics_GetKeyValue"); \ +static_assert(offsetof(GameplayStatics_GetKeyValue, Pair) == 0x000000, "Member 'GameplayStatics_GetKeyValue::Pair' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetKeyValue, Key) == 0x000010, "Member 'GameplayStatics_GetKeyValue::Key' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetKeyValue, Value) == 0x000020, "Member 'GameplayStatics_GetKeyValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetMaxAudioChannelCount \ +static_assert(alignof(GameplayStatics_GetMaxAudioChannelCount) == 0x000008, "Wrong alignment on GameplayStatics_GetMaxAudioChannelCount"); \ +static_assert(sizeof(GameplayStatics_GetMaxAudioChannelCount) == 0x000010, "Wrong size on GameplayStatics_GetMaxAudioChannelCount"); \ +static_assert(offsetof(GameplayStatics_GetMaxAudioChannelCount, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetMaxAudioChannelCount::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetMaxAudioChannelCount, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetMaxAudioChannelCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetNumLocalPlayerControllers \ +static_assert(alignof(GameplayStatics_GetNumLocalPlayerControllers) == 0x000008, "Wrong alignment on GameplayStatics_GetNumLocalPlayerControllers"); \ +static_assert(sizeof(GameplayStatics_GetNumLocalPlayerControllers) == 0x000010, "Wrong size on GameplayStatics_GetNumLocalPlayerControllers"); \ +static_assert(offsetof(GameplayStatics_GetNumLocalPlayerControllers, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetNumLocalPlayerControllers::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetNumLocalPlayerControllers, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetNumLocalPlayerControllers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetNumPlayerControllers \ +static_assert(alignof(GameplayStatics_GetNumPlayerControllers) == 0x000008, "Wrong alignment on GameplayStatics_GetNumPlayerControllers"); \ +static_assert(sizeof(GameplayStatics_GetNumPlayerControllers) == 0x000010, "Wrong size on GameplayStatics_GetNumPlayerControllers"); \ +static_assert(offsetof(GameplayStatics_GetNumPlayerControllers, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetNumPlayerControllers::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetNumPlayerControllers, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetNumPlayerControllers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetNumPlayerStates \ +static_assert(alignof(GameplayStatics_GetNumPlayerStates) == 0x000008, "Wrong alignment on GameplayStatics_GetNumPlayerStates"); \ +static_assert(sizeof(GameplayStatics_GetNumPlayerStates) == 0x000010, "Wrong size on GameplayStatics_GetNumPlayerStates"); \ +static_assert(offsetof(GameplayStatics_GetNumPlayerStates, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetNumPlayerStates::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetNumPlayerStates, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetNumPlayerStates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetObjectClass \ +static_assert(alignof(GameplayStatics_GetObjectClass) == 0x000008, "Wrong alignment on GameplayStatics_GetObjectClass"); \ +static_assert(sizeof(GameplayStatics_GetObjectClass) == 0x000010, "Wrong size on GameplayStatics_GetObjectClass"); \ +static_assert(offsetof(GameplayStatics_GetObjectClass, Object) == 0x000000, "Member 'GameplayStatics_GetObjectClass::Object' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetObjectClass, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlatformName \ +static_assert(alignof(GameplayStatics_GetPlatformName) == 0x000008, "Wrong alignment on GameplayStatics_GetPlatformName"); \ +static_assert(sizeof(GameplayStatics_GetPlatformName) == 0x000010, "Wrong size on GameplayStatics_GetPlatformName"); \ +static_assert(offsetof(GameplayStatics_GetPlatformName, ReturnValue) == 0x000000, "Member 'GameplayStatics_GetPlatformName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerCameraManager \ +static_assert(alignof(GameplayStatics_GetPlayerCameraManager) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerCameraManager"); \ +static_assert(sizeof(GameplayStatics_GetPlayerCameraManager) == 0x000018, "Wrong size on GameplayStatics_GetPlayerCameraManager"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCameraManager, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerCameraManager::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCameraManager, PlayerIndex) == 0x000008, "Member 'GameplayStatics_GetPlayerCameraManager::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCameraManager, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerCameraManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerCharacter \ +static_assert(alignof(GameplayStatics_GetPlayerCharacter) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerCharacter"); \ +static_assert(sizeof(GameplayStatics_GetPlayerCharacter) == 0x000018, "Wrong size on GameplayStatics_GetPlayerCharacter"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCharacter, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerCharacter::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCharacter, PlayerIndex) == 0x000008, "Member 'GameplayStatics_GetPlayerCharacter::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerCharacter, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerController \ +static_assert(alignof(GameplayStatics_GetPlayerController) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerController"); \ +static_assert(sizeof(GameplayStatics_GetPlayerController) == 0x000018, "Wrong size on GameplayStatics_GetPlayerController"); \ +static_assert(offsetof(GameplayStatics_GetPlayerController, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerController::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerController, PlayerIndex) == 0x000008, "Member 'GameplayStatics_GetPlayerController::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerController, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerControllerFromID \ +static_assert(alignof(GameplayStatics_GetPlayerControllerFromID) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerControllerFromID"); \ +static_assert(sizeof(GameplayStatics_GetPlayerControllerFromID) == 0x000018, "Wrong size on GameplayStatics_GetPlayerControllerFromID"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromID, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerControllerFromID::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromID, ControllerId) == 0x000008, "Member 'GameplayStatics_GetPlayerControllerFromID::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromID, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerControllerFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerControllerFromPlatformUser \ +static_assert(alignof(GameplayStatics_GetPlayerControllerFromPlatformUser) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerControllerFromPlatformUser"); \ +static_assert(sizeof(GameplayStatics_GetPlayerControllerFromPlatformUser) == 0x000018, "Wrong size on GameplayStatics_GetPlayerControllerFromPlatformUser"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromPlatformUser, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerControllerFromPlatformUser::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromPlatformUser, UserId) == 0x000008, "Member 'GameplayStatics_GetPlayerControllerFromPlatformUser::UserId' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerFromPlatformUser, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerControllerFromPlatformUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerControllerID \ +static_assert(alignof(GameplayStatics_GetPlayerControllerID) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerControllerID"); \ +static_assert(sizeof(GameplayStatics_GetPlayerControllerID) == 0x000010, "Wrong size on GameplayStatics_GetPlayerControllerID"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerID, Player) == 0x000000, "Member 'GameplayStatics_GetPlayerControllerID::Player' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerControllerID, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetPlayerControllerID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerPawn \ +static_assert(alignof(GameplayStatics_GetPlayerPawn) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerPawn"); \ +static_assert(sizeof(GameplayStatics_GetPlayerPawn) == 0x000018, "Wrong size on GameplayStatics_GetPlayerPawn"); \ +static_assert(offsetof(GameplayStatics_GetPlayerPawn, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerPawn::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerPawn, PlayerIndex) == 0x000008, "Member 'GameplayStatics_GetPlayerPawn::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerPawn, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerState \ +static_assert(alignof(GameplayStatics_GetPlayerState) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerState"); \ +static_assert(sizeof(GameplayStatics_GetPlayerState) == 0x000018, "Wrong size on GameplayStatics_GetPlayerState"); \ +static_assert(offsetof(GameplayStatics_GetPlayerState, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerState::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerState, PlayerStateIndex) == 0x000008, "Member 'GameplayStatics_GetPlayerState::PlayerStateIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerState, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetPlayerState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetPlayerStateFromUniqueNetId \ +static_assert(alignof(GameplayStatics_GetPlayerStateFromUniqueNetId) == 0x000008, "Wrong alignment on GameplayStatics_GetPlayerStateFromUniqueNetId"); \ +static_assert(sizeof(GameplayStatics_GetPlayerStateFromUniqueNetId) == 0x000040, "Wrong size on GameplayStatics_GetPlayerStateFromUniqueNetId"); \ +static_assert(offsetof(GameplayStatics_GetPlayerStateFromUniqueNetId, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetPlayerStateFromUniqueNetId::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerStateFromUniqueNetId, UniqueID) == 0x000008, "Member 'GameplayStatics_GetPlayerStateFromUniqueNetId::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetPlayerStateFromUniqueNetId, ReturnValue) == 0x000038, "Member 'GameplayStatics_GetPlayerStateFromUniqueNetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetRealTimeSeconds \ +static_assert(alignof(GameplayStatics_GetRealTimeSeconds) == 0x000008, "Wrong alignment on GameplayStatics_GetRealTimeSeconds"); \ +static_assert(sizeof(GameplayStatics_GetRealTimeSeconds) == 0x000010, "Wrong size on GameplayStatics_GetRealTimeSeconds"); \ +static_assert(offsetof(GameplayStatics_GetRealTimeSeconds, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetRealTimeSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetRealTimeSeconds, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetRealTimeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetStreamingLevel \ +static_assert(alignof(GameplayStatics_GetStreamingLevel) == 0x000008, "Wrong alignment on GameplayStatics_GetStreamingLevel"); \ +static_assert(sizeof(GameplayStatics_GetStreamingLevel) == 0x000018, "Wrong size on GameplayStatics_GetStreamingLevel"); \ +static_assert(offsetof(GameplayStatics_GetStreamingLevel, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetStreamingLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetStreamingLevel, PackageName) == 0x000008, "Member 'GameplayStatics_GetStreamingLevel::PackageName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetStreamingLevel, ReturnValue) == 0x000010, "Member 'GameplayStatics_GetStreamingLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetSurfaceType \ +static_assert(alignof(GameplayStatics_GetSurfaceType) == 0x000008, "Wrong alignment on GameplayStatics_GetSurfaceType"); \ +static_assert(sizeof(GameplayStatics_GetSurfaceType) == 0x0000F0, "Wrong size on GameplayStatics_GetSurfaceType"); \ +static_assert(offsetof(GameplayStatics_GetSurfaceType, Hit) == 0x000000, "Member 'GameplayStatics_GetSurfaceType::Hit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetSurfaceType, ReturnValue) == 0x0000E8, "Member 'GameplayStatics_GetSurfaceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetTimeSeconds \ +static_assert(alignof(GameplayStatics_GetTimeSeconds) == 0x000008, "Wrong alignment on GameplayStatics_GetTimeSeconds"); \ +static_assert(sizeof(GameplayStatics_GetTimeSeconds) == 0x000010, "Wrong size on GameplayStatics_GetTimeSeconds"); \ +static_assert(offsetof(GameplayStatics_GetTimeSeconds, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetTimeSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetTimeSeconds, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetTimeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetUnpausedTimeSeconds \ +static_assert(alignof(GameplayStatics_GetUnpausedTimeSeconds) == 0x000008, "Wrong alignment on GameplayStatics_GetUnpausedTimeSeconds"); \ +static_assert(sizeof(GameplayStatics_GetUnpausedTimeSeconds) == 0x000010, "Wrong size on GameplayStatics_GetUnpausedTimeSeconds"); \ +static_assert(offsetof(GameplayStatics_GetUnpausedTimeSeconds, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetUnpausedTimeSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetUnpausedTimeSeconds, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetUnpausedTimeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetViewportMouseCaptureMode \ +static_assert(alignof(GameplayStatics_GetViewportMouseCaptureMode) == 0x000008, "Wrong alignment on GameplayStatics_GetViewportMouseCaptureMode"); \ +static_assert(sizeof(GameplayStatics_GetViewportMouseCaptureMode) == 0x000010, "Wrong size on GameplayStatics_GetViewportMouseCaptureMode"); \ +static_assert(offsetof(GameplayStatics_GetViewportMouseCaptureMode, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetViewportMouseCaptureMode::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetViewportMouseCaptureMode, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetViewportMouseCaptureMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetViewProjectionMatrix \ +static_assert(alignof(GameplayStatics_GetViewProjectionMatrix) == 0x000010, "Wrong alignment on GameplayStatics_GetViewProjectionMatrix"); \ +static_assert(sizeof(GameplayStatics_GetViewProjectionMatrix) == 0x000950, "Wrong size on GameplayStatics_GetViewProjectionMatrix"); \ +static_assert(offsetof(GameplayStatics_GetViewProjectionMatrix, DesiredView) == 0x000000, "Member 'GameplayStatics_GetViewProjectionMatrix::DesiredView' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetViewProjectionMatrix, ViewMatrix) == 0x0007D0, "Member 'GameplayStatics_GetViewProjectionMatrix::ViewMatrix' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetViewProjectionMatrix, ProjectionMatrix) == 0x000850, "Member 'GameplayStatics_GetViewProjectionMatrix::ProjectionMatrix' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetViewProjectionMatrix, ViewProjectionMatrix) == 0x0008D0, "Member 'GameplayStatics_GetViewProjectionMatrix::ViewProjectionMatrix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetWorldDeltaSeconds \ +static_assert(alignof(GameplayStatics_GetWorldDeltaSeconds) == 0x000008, "Wrong alignment on GameplayStatics_GetWorldDeltaSeconds"); \ +static_assert(sizeof(GameplayStatics_GetWorldDeltaSeconds) == 0x000010, "Wrong size on GameplayStatics_GetWorldDeltaSeconds"); \ +static_assert(offsetof(GameplayStatics_GetWorldDeltaSeconds, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetWorldDeltaSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetWorldDeltaSeconds, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetWorldDeltaSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GetWorldOriginLocation \ +static_assert(alignof(GameplayStatics_GetWorldOriginLocation) == 0x000008, "Wrong alignment on GameplayStatics_GetWorldOriginLocation"); \ +static_assert(sizeof(GameplayStatics_GetWorldOriginLocation) == 0x000018, "Wrong size on GameplayStatics_GetWorldOriginLocation"); \ +static_assert(offsetof(GameplayStatics_GetWorldOriginLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GetWorldOriginLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GetWorldOriginLocation, ReturnValue) == 0x000008, "Member 'GameplayStatics_GetWorldOriginLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_GrassOverlappingSphereCount \ +static_assert(alignof(GameplayStatics_GrassOverlappingSphereCount) == 0x000008, "Wrong alignment on GameplayStatics_GrassOverlappingSphereCount"); \ +static_assert(sizeof(GameplayStatics_GrassOverlappingSphereCount) == 0x000030, "Wrong size on GameplayStatics_GrassOverlappingSphereCount"); \ +static_assert(offsetof(GameplayStatics_GrassOverlappingSphereCount, WorldContextObject) == 0x000000, "Member 'GameplayStatics_GrassOverlappingSphereCount::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GrassOverlappingSphereCount, StaticMesh) == 0x000008, "Member 'GameplayStatics_GrassOverlappingSphereCount::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GrassOverlappingSphereCount, CenterPosition) == 0x000010, "Member 'GameplayStatics_GrassOverlappingSphereCount::CenterPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GrassOverlappingSphereCount, Radius) == 0x000028, "Member 'GameplayStatics_GrassOverlappingSphereCount::Radius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_GrassOverlappingSphereCount, ReturnValue) == 0x00002C, "Member 'GameplayStatics_GrassOverlappingSphereCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_HasLaunchOption \ +static_assert(alignof(GameplayStatics_HasLaunchOption) == 0x000008, "Wrong alignment on GameplayStatics_HasLaunchOption"); \ +static_assert(sizeof(GameplayStatics_HasLaunchOption) == 0x000018, "Wrong size on GameplayStatics_HasLaunchOption"); \ +static_assert(offsetof(GameplayStatics_HasLaunchOption, OptionToCheck) == 0x000000, "Member 'GameplayStatics_HasLaunchOption::OptionToCheck' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_HasLaunchOption, ReturnValue) == 0x000010, "Member 'GameplayStatics_HasLaunchOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_HasOption \ +static_assert(alignof(GameplayStatics_HasOption) == 0x000008, "Wrong alignment on GameplayStatics_HasOption"); \ +static_assert(sizeof(GameplayStatics_HasOption) == 0x000028, "Wrong size on GameplayStatics_HasOption"); \ +static_assert(offsetof(GameplayStatics_HasOption, Options) == 0x000000, "Member 'GameplayStatics_HasOption::Options' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_HasOption, InKey) == 0x000010, "Member 'GameplayStatics_HasOption::InKey' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_HasOption, ReturnValue) == 0x000020, "Member 'GameplayStatics_HasOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_IsAnyLocalPlayerCameraWithinRange \ +static_assert(alignof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange) == 0x000008, "Wrong alignment on GameplayStatics_IsAnyLocalPlayerCameraWithinRange"); \ +static_assert(sizeof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange) == 0x000028, "Wrong size on GameplayStatics_IsAnyLocalPlayerCameraWithinRange"); \ +static_assert(offsetof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange, WorldContextObject) == 0x000000, "Member 'GameplayStatics_IsAnyLocalPlayerCameraWithinRange::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange, Location) == 0x000008, "Member 'GameplayStatics_IsAnyLocalPlayerCameraWithinRange::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange, MaximumRange) == 0x000020, "Member 'GameplayStatics_IsAnyLocalPlayerCameraWithinRange::MaximumRange' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_IsAnyLocalPlayerCameraWithinRange, ReturnValue) == 0x000024, "Member 'GameplayStatics_IsAnyLocalPlayerCameraWithinRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_IsGamePaused \ +static_assert(alignof(GameplayStatics_IsGamePaused) == 0x000008, "Wrong alignment on GameplayStatics_IsGamePaused"); \ +static_assert(sizeof(GameplayStatics_IsGamePaused) == 0x000010, "Wrong size on GameplayStatics_IsGamePaused"); \ +static_assert(offsetof(GameplayStatics_IsGamePaused, WorldContextObject) == 0x000000, "Member 'GameplayStatics_IsGamePaused::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_IsGamePaused, ReturnValue) == 0x000008, "Member 'GameplayStatics_IsGamePaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_IsSplitscreenForceDisabled \ +static_assert(alignof(GameplayStatics_IsSplitscreenForceDisabled) == 0x000008, "Wrong alignment on GameplayStatics_IsSplitscreenForceDisabled"); \ +static_assert(sizeof(GameplayStatics_IsSplitscreenForceDisabled) == 0x000010, "Wrong size on GameplayStatics_IsSplitscreenForceDisabled"); \ +static_assert(offsetof(GameplayStatics_IsSplitscreenForceDisabled, WorldContextObject) == 0x000000, "Member 'GameplayStatics_IsSplitscreenForceDisabled::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_IsSplitscreenForceDisabled, ReturnValue) == 0x000008, "Member 'GameplayStatics_IsSplitscreenForceDisabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_LoadGameFromSlot \ +static_assert(alignof(GameplayStatics_LoadGameFromSlot) == 0x000008, "Wrong alignment on GameplayStatics_LoadGameFromSlot"); \ +static_assert(sizeof(GameplayStatics_LoadGameFromSlot) == 0x000020, "Wrong size on GameplayStatics_LoadGameFromSlot"); \ +static_assert(offsetof(GameplayStatics_LoadGameFromSlot, SlotName) == 0x000000, "Member 'GameplayStatics_LoadGameFromSlot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadGameFromSlot, UserIndex) == 0x000010, "Member 'GameplayStatics_LoadGameFromSlot::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadGameFromSlot, ReturnValue) == 0x000018, "Member 'GameplayStatics_LoadGameFromSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_LoadStreamLevel \ +static_assert(alignof(GameplayStatics_LoadStreamLevel) == 0x000008, "Wrong alignment on GameplayStatics_LoadStreamLevel"); \ +static_assert(sizeof(GameplayStatics_LoadStreamLevel) == 0x000030, "Wrong size on GameplayStatics_LoadStreamLevel"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevel, WorldContextObject) == 0x000000, "Member 'GameplayStatics_LoadStreamLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevel, LevelName) == 0x000008, "Member 'GameplayStatics_LoadStreamLevel::LevelName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevel, bMakeVisibleAfterLoad) == 0x000010, "Member 'GameplayStatics_LoadStreamLevel::bMakeVisibleAfterLoad' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevel, bShouldBlockOnLoad) == 0x000011, "Member 'GameplayStatics_LoadStreamLevel::bShouldBlockOnLoad' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevel, LatentInfo) == 0x000018, "Member 'GameplayStatics_LoadStreamLevel::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_LoadStreamLevelBySoftObjectPtr \ +static_assert(alignof(GameplayStatics_LoadStreamLevelBySoftObjectPtr) == 0x000008, "Wrong alignment on GameplayStatics_LoadStreamLevelBySoftObjectPtr"); \ +static_assert(sizeof(GameplayStatics_LoadStreamLevelBySoftObjectPtr) == 0x000050, "Wrong size on GameplayStatics_LoadStreamLevelBySoftObjectPtr"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevelBySoftObjectPtr, WorldContextObject) == 0x000000, "Member 'GameplayStatics_LoadStreamLevelBySoftObjectPtr::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevelBySoftObjectPtr, Level) == 0x000008, "Member 'GameplayStatics_LoadStreamLevelBySoftObjectPtr::Level' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevelBySoftObjectPtr, bMakeVisibleAfterLoad) == 0x000030, "Member 'GameplayStatics_LoadStreamLevelBySoftObjectPtr::bMakeVisibleAfterLoad' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevelBySoftObjectPtr, bShouldBlockOnLoad) == 0x000031, "Member 'GameplayStatics_LoadStreamLevelBySoftObjectPtr::bShouldBlockOnLoad' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_LoadStreamLevelBySoftObjectPtr, LatentInfo) == 0x000038, "Member 'GameplayStatics_LoadStreamLevelBySoftObjectPtr::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_MakeHitResult \ +static_assert(alignof(GameplayStatics_MakeHitResult) == 0x000008, "Wrong alignment on GameplayStatics_MakeHitResult"); \ +static_assert(sizeof(GameplayStatics_MakeHitResult) == 0x0001C0, "Wrong size on GameplayStatics_MakeHitResult"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, bBlockingHit) == 0x000000, "Member 'GameplayStatics_MakeHitResult::bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, bInitialOverlap) == 0x000001, "Member 'GameplayStatics_MakeHitResult::bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, Time) == 0x000004, "Member 'GameplayStatics_MakeHitResult::Time' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, Distance) == 0x000008, "Member 'GameplayStatics_MakeHitResult::Distance' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, Location) == 0x000010, "Member 'GameplayStatics_MakeHitResult::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, ImpactPoint) == 0x000028, "Member 'GameplayStatics_MakeHitResult::ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, Normal) == 0x000040, "Member 'GameplayStatics_MakeHitResult::Normal' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, ImpactNormal) == 0x000058, "Member 'GameplayStatics_MakeHitResult::ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, PhysMat) == 0x000070, "Member 'GameplayStatics_MakeHitResult::PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, HitActor) == 0x000078, "Member 'GameplayStatics_MakeHitResult::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, HitComponent) == 0x000080, "Member 'GameplayStatics_MakeHitResult::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, HitBoneName) == 0x000088, "Member 'GameplayStatics_MakeHitResult::HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, BoneName) == 0x000090, "Member 'GameplayStatics_MakeHitResult::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, HitItem) == 0x000098, "Member 'GameplayStatics_MakeHitResult::HitItem' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, ElementIndex) == 0x00009C, "Member 'GameplayStatics_MakeHitResult::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, FaceIndex) == 0x0000A0, "Member 'GameplayStatics_MakeHitResult::FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, TraceStart) == 0x0000A8, "Member 'GameplayStatics_MakeHitResult::TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, TraceEnd) == 0x0000C0, "Member 'GameplayStatics_MakeHitResult::TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_MakeHitResult, ReturnValue) == 0x0000D8, "Member 'GameplayStatics_MakeHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ObjectIsA \ +static_assert(alignof(GameplayStatics_ObjectIsA) == 0x000008, "Wrong alignment on GameplayStatics_ObjectIsA"); \ +static_assert(sizeof(GameplayStatics_ObjectIsA) == 0x000018, "Wrong size on GameplayStatics_ObjectIsA"); \ +static_assert(offsetof(GameplayStatics_ObjectIsA, Object) == 0x000000, "Member 'GameplayStatics_ObjectIsA::Object' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ObjectIsA, ObjectClass) == 0x000008, "Member 'GameplayStatics_ObjectIsA::ObjectClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ObjectIsA, ReturnValue) == 0x000010, "Member 'GameplayStatics_ObjectIsA::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_OpenLevel \ +static_assert(alignof(GameplayStatics_OpenLevel) == 0x000008, "Wrong alignment on GameplayStatics_OpenLevel"); \ +static_assert(sizeof(GameplayStatics_OpenLevel) == 0x000028, "Wrong size on GameplayStatics_OpenLevel"); \ +static_assert(offsetof(GameplayStatics_OpenLevel, WorldContextObject) == 0x000000, "Member 'GameplayStatics_OpenLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevel, LevelName) == 0x000008, "Member 'GameplayStatics_OpenLevel::LevelName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevel, bAbsolute) == 0x000010, "Member 'GameplayStatics_OpenLevel::bAbsolute' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevel, Options) == 0x000018, "Member 'GameplayStatics_OpenLevel::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_OpenLevelBySoftObjectPtr \ +static_assert(alignof(GameplayStatics_OpenLevelBySoftObjectPtr) == 0x000008, "Wrong alignment on GameplayStatics_OpenLevelBySoftObjectPtr"); \ +static_assert(sizeof(GameplayStatics_OpenLevelBySoftObjectPtr) == 0x000048, "Wrong size on GameplayStatics_OpenLevelBySoftObjectPtr"); \ +static_assert(offsetof(GameplayStatics_OpenLevelBySoftObjectPtr, WorldContextObject) == 0x000000, "Member 'GameplayStatics_OpenLevelBySoftObjectPtr::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevelBySoftObjectPtr, Level) == 0x000008, "Member 'GameplayStatics_OpenLevelBySoftObjectPtr::Level' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevelBySoftObjectPtr, bAbsolute) == 0x000030, "Member 'GameplayStatics_OpenLevelBySoftObjectPtr::bAbsolute' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_OpenLevelBySoftObjectPtr, Options) == 0x000038, "Member 'GameplayStatics_OpenLevelBySoftObjectPtr::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ParseOption \ +static_assert(alignof(GameplayStatics_ParseOption) == 0x000008, "Wrong alignment on GameplayStatics_ParseOption"); \ +static_assert(sizeof(GameplayStatics_ParseOption) == 0x000030, "Wrong size on GameplayStatics_ParseOption"); \ +static_assert(offsetof(GameplayStatics_ParseOption, Options) == 0x000000, "Member 'GameplayStatics_ParseOption::Options' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ParseOption, Key) == 0x000010, "Member 'GameplayStatics_ParseOption::Key' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ParseOption, ReturnValue) == 0x000020, "Member 'GameplayStatics_ParseOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PlayDialogue2D \ +static_assert(alignof(GameplayStatics_PlayDialogue2D) == 0x000008, "Wrong alignment on GameplayStatics_PlayDialogue2D"); \ +static_assert(sizeof(GameplayStatics_PlayDialogue2D) == 0x000038, "Wrong size on GameplayStatics_PlayDialogue2D"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PlayDialogue2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, Dialogue) == 0x000008, "Member 'GameplayStatics_PlayDialogue2D::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, Context) == 0x000010, "Member 'GameplayStatics_PlayDialogue2D::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, VolumeMultiplier) == 0x000028, "Member 'GameplayStatics_PlayDialogue2D::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, PitchMultiplier) == 0x00002C, "Member 'GameplayStatics_PlayDialogue2D::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogue2D, StartTime) == 0x000030, "Member 'GameplayStatics_PlayDialogue2D::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PlayDialogueAtLocation \ +static_assert(alignof(GameplayStatics_PlayDialogueAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_PlayDialogueAtLocation"); \ +static_assert(sizeof(GameplayStatics_PlayDialogueAtLocation) == 0x000070, "Wrong size on GameplayStatics_PlayDialogueAtLocation"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PlayDialogueAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, Dialogue) == 0x000008, "Member 'GameplayStatics_PlayDialogueAtLocation::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, Context) == 0x000010, "Member 'GameplayStatics_PlayDialogueAtLocation::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, Location) == 0x000028, "Member 'GameplayStatics_PlayDialogueAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, Rotation) == 0x000040, "Member 'GameplayStatics_PlayDialogueAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, VolumeMultiplier) == 0x000058, "Member 'GameplayStatics_PlayDialogueAtLocation::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, PitchMultiplier) == 0x00005C, "Member 'GameplayStatics_PlayDialogueAtLocation::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, StartTime) == 0x000060, "Member 'GameplayStatics_PlayDialogueAtLocation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayDialogueAtLocation, AttenuationSettings) == 0x000068, "Member 'GameplayStatics_PlayDialogueAtLocation::AttenuationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PlaySound2D \ +static_assert(alignof(GameplayStatics_PlaySound2D) == 0x000008, "Wrong alignment on GameplayStatics_PlaySound2D"); \ +static_assert(sizeof(GameplayStatics_PlaySound2D) == 0x000038, "Wrong size on GameplayStatics_PlaySound2D"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PlaySound2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, Sound) == 0x000008, "Member 'GameplayStatics_PlaySound2D::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, VolumeMultiplier) == 0x000010, "Member 'GameplayStatics_PlaySound2D::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, PitchMultiplier) == 0x000014, "Member 'GameplayStatics_PlaySound2D::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, StartTime) == 0x000018, "Member 'GameplayStatics_PlaySound2D::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, ConcurrencySettings) == 0x000020, "Member 'GameplayStatics_PlaySound2D::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, OwningActor) == 0x000028, "Member 'GameplayStatics_PlaySound2D::OwningActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySound2D, bIsUISound) == 0x000030, "Member 'GameplayStatics_PlaySound2D::bIsUISound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PlaySoundAtLocation \ +static_assert(alignof(GameplayStatics_PlaySoundAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_PlaySoundAtLocation"); \ +static_assert(sizeof(GameplayStatics_PlaySoundAtLocation) == 0x000070, "Wrong size on GameplayStatics_PlaySoundAtLocation"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PlaySoundAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, Sound) == 0x000008, "Member 'GameplayStatics_PlaySoundAtLocation::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, Location) == 0x000010, "Member 'GameplayStatics_PlaySoundAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, Rotation) == 0x000028, "Member 'GameplayStatics_PlaySoundAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, VolumeMultiplier) == 0x000040, "Member 'GameplayStatics_PlaySoundAtLocation::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, PitchMultiplier) == 0x000044, "Member 'GameplayStatics_PlaySoundAtLocation::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, StartTime) == 0x000048, "Member 'GameplayStatics_PlaySoundAtLocation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, AttenuationSettings) == 0x000050, "Member 'GameplayStatics_PlaySoundAtLocation::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, ConcurrencySettings) == 0x000058, "Member 'GameplayStatics_PlaySoundAtLocation::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, OwningActor) == 0x000060, "Member 'GameplayStatics_PlaySoundAtLocation::OwningActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlaySoundAtLocation, InitialParams) == 0x000068, "Member 'GameplayStatics_PlaySoundAtLocation::InitialParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PlayWorldCameraShake \ +static_assert(alignof(GameplayStatics_PlayWorldCameraShake) == 0x000008, "Wrong alignment on GameplayStatics_PlayWorldCameraShake"); \ +static_assert(sizeof(GameplayStatics_PlayWorldCameraShake) == 0x000038, "Wrong size on GameplayStatics_PlayWorldCameraShake"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PlayWorldCameraShake::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, Shake) == 0x000008, "Member 'GameplayStatics_PlayWorldCameraShake::Shake' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, Epicenter) == 0x000010, "Member 'GameplayStatics_PlayWorldCameraShake::Epicenter' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, InnerRadius) == 0x000028, "Member 'GameplayStatics_PlayWorldCameraShake::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, OuterRadius) == 0x00002C, "Member 'GameplayStatics_PlayWorldCameraShake::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, Falloff) == 0x000030, "Member 'GameplayStatics_PlayWorldCameraShake::Falloff' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PlayWorldCameraShake, bOrientShakeTowardsEpicenter) == 0x000034, "Member 'GameplayStatics_PlayWorldCameraShake::bOrientShakeTowardsEpicenter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PopSoundMixModifier \ +static_assert(alignof(GameplayStatics_PopSoundMixModifier) == 0x000008, "Wrong alignment on GameplayStatics_PopSoundMixModifier"); \ +static_assert(sizeof(GameplayStatics_PopSoundMixModifier) == 0x000010, "Wrong size on GameplayStatics_PopSoundMixModifier"); \ +static_assert(offsetof(GameplayStatics_PopSoundMixModifier, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PopSoundMixModifier::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PopSoundMixModifier, InSoundMixModifier) == 0x000008, "Member 'GameplayStatics_PopSoundMixModifier::InSoundMixModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PrimeAllSoundsInSoundClass \ +static_assert(alignof(GameplayStatics_PrimeAllSoundsInSoundClass) == 0x000008, "Wrong alignment on GameplayStatics_PrimeAllSoundsInSoundClass"); \ +static_assert(sizeof(GameplayStatics_PrimeAllSoundsInSoundClass) == 0x000008, "Wrong size on GameplayStatics_PrimeAllSoundsInSoundClass"); \ +static_assert(offsetof(GameplayStatics_PrimeAllSoundsInSoundClass, InSoundClass) == 0x000000, "Member 'GameplayStatics_PrimeAllSoundsInSoundClass::InSoundClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PrimeSound \ +static_assert(alignof(GameplayStatics_PrimeSound) == 0x000008, "Wrong alignment on GameplayStatics_PrimeSound"); \ +static_assert(sizeof(GameplayStatics_PrimeSound) == 0x000008, "Wrong size on GameplayStatics_PrimeSound"); \ +static_assert(offsetof(GameplayStatics_PrimeSound, InSound) == 0x000000, "Member 'GameplayStatics_PrimeSound::InSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_ProjectWorldToScreen \ +static_assert(alignof(GameplayStatics_ProjectWorldToScreen) == 0x000008, "Wrong alignment on GameplayStatics_ProjectWorldToScreen"); \ +static_assert(sizeof(GameplayStatics_ProjectWorldToScreen) == 0x000038, "Wrong size on GameplayStatics_ProjectWorldToScreen"); \ +static_assert(offsetof(GameplayStatics_ProjectWorldToScreen, Player) == 0x000000, "Member 'GameplayStatics_ProjectWorldToScreen::Player' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ProjectWorldToScreen, WorldPosition) == 0x000008, "Member 'GameplayStatics_ProjectWorldToScreen::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ProjectWorldToScreen, ScreenPosition) == 0x000020, "Member 'GameplayStatics_ProjectWorldToScreen::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ProjectWorldToScreen, bPlayerViewportRelative) == 0x000030, "Member 'GameplayStatics_ProjectWorldToScreen::bPlayerViewportRelative' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_ProjectWorldToScreen, ReturnValue) == 0x000031, "Member 'GameplayStatics_ProjectWorldToScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_PushSoundMixModifier \ +static_assert(alignof(GameplayStatics_PushSoundMixModifier) == 0x000008, "Wrong alignment on GameplayStatics_PushSoundMixModifier"); \ +static_assert(sizeof(GameplayStatics_PushSoundMixModifier) == 0x000010, "Wrong size on GameplayStatics_PushSoundMixModifier"); \ +static_assert(offsetof(GameplayStatics_PushSoundMixModifier, WorldContextObject) == 0x000000, "Member 'GameplayStatics_PushSoundMixModifier::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_PushSoundMixModifier, InSoundMixModifier) == 0x000008, "Member 'GameplayStatics_PushSoundMixModifier::InSoundMixModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_RebaseLocalOriginOntoZero \ +static_assert(alignof(GameplayStatics_RebaseLocalOriginOntoZero) == 0x000008, "Wrong alignment on GameplayStatics_RebaseLocalOriginOntoZero"); \ +static_assert(sizeof(GameplayStatics_RebaseLocalOriginOntoZero) == 0x000038, "Wrong size on GameplayStatics_RebaseLocalOriginOntoZero"); \ +static_assert(offsetof(GameplayStatics_RebaseLocalOriginOntoZero, WorldContextObject) == 0x000000, "Member 'GameplayStatics_RebaseLocalOriginOntoZero::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_RebaseLocalOriginOntoZero, WorldLocation) == 0x000008, "Member 'GameplayStatics_RebaseLocalOriginOntoZero::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_RebaseLocalOriginOntoZero, ReturnValue) == 0x000020, "Member 'GameplayStatics_RebaseLocalOriginOntoZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_RebaseZeroOriginOntoLocal \ +static_assert(alignof(GameplayStatics_RebaseZeroOriginOntoLocal) == 0x000008, "Wrong alignment on GameplayStatics_RebaseZeroOriginOntoLocal"); \ +static_assert(sizeof(GameplayStatics_RebaseZeroOriginOntoLocal) == 0x000038, "Wrong size on GameplayStatics_RebaseZeroOriginOntoLocal"); \ +static_assert(offsetof(GameplayStatics_RebaseZeroOriginOntoLocal, WorldContextObject) == 0x000000, "Member 'GameplayStatics_RebaseZeroOriginOntoLocal::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_RebaseZeroOriginOntoLocal, WorldLocation) == 0x000008, "Member 'GameplayStatics_RebaseZeroOriginOntoLocal::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_RebaseZeroOriginOntoLocal, ReturnValue) == 0x000020, "Member 'GameplayStatics_RebaseZeroOriginOntoLocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_RemovePlayer \ +static_assert(alignof(GameplayStatics_RemovePlayer) == 0x000008, "Wrong alignment on GameplayStatics_RemovePlayer"); \ +static_assert(sizeof(GameplayStatics_RemovePlayer) == 0x000010, "Wrong size on GameplayStatics_RemovePlayer"); \ +static_assert(offsetof(GameplayStatics_RemovePlayer, Player) == 0x000000, "Member 'GameplayStatics_RemovePlayer::Player' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_RemovePlayer, bDestroyPawn) == 0x000008, "Member 'GameplayStatics_RemovePlayer::bDestroyPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SaveGameToSlot \ +static_assert(alignof(GameplayStatics_SaveGameToSlot) == 0x000008, "Wrong alignment on GameplayStatics_SaveGameToSlot"); \ +static_assert(sizeof(GameplayStatics_SaveGameToSlot) == 0x000020, "Wrong size on GameplayStatics_SaveGameToSlot"); \ +static_assert(offsetof(GameplayStatics_SaveGameToSlot, SaveGameObject) == 0x000000, "Member 'GameplayStatics_SaveGameToSlot::SaveGameObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SaveGameToSlot, SlotName) == 0x000008, "Member 'GameplayStatics_SaveGameToSlot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SaveGameToSlot, UserIndex) == 0x000018, "Member 'GameplayStatics_SaveGameToSlot::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SaveGameToSlot, ReturnValue) == 0x00001C, "Member 'GameplayStatics_SaveGameToSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetActiveSpatialPluginByName \ +static_assert(alignof(GameplayStatics_SetActiveSpatialPluginByName) == 0x000008, "Wrong alignment on GameplayStatics_SetActiveSpatialPluginByName"); \ +static_assert(sizeof(GameplayStatics_SetActiveSpatialPluginByName) == 0x000018, "Wrong size on GameplayStatics_SetActiveSpatialPluginByName"); \ +static_assert(offsetof(GameplayStatics_SetActiveSpatialPluginByName, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetActiveSpatialPluginByName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetActiveSpatialPluginByName, InPluginName) == 0x000008, "Member 'GameplayStatics_SetActiveSpatialPluginByName::InPluginName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetActiveSpatialPluginByName, ReturnValue) == 0x000010, "Member 'GameplayStatics_SetActiveSpatialPluginByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetBaseSoundMix \ +static_assert(alignof(GameplayStatics_SetBaseSoundMix) == 0x000008, "Wrong alignment on GameplayStatics_SetBaseSoundMix"); \ +static_assert(sizeof(GameplayStatics_SetBaseSoundMix) == 0x000010, "Wrong size on GameplayStatics_SetBaseSoundMix"); \ +static_assert(offsetof(GameplayStatics_SetBaseSoundMix, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetBaseSoundMix::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetBaseSoundMix, InSoundMix) == 0x000008, "Member 'GameplayStatics_SetBaseSoundMix::InSoundMix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetEnableWorldRendering \ +static_assert(alignof(GameplayStatics_SetEnableWorldRendering) == 0x000008, "Wrong alignment on GameplayStatics_SetEnableWorldRendering"); \ +static_assert(sizeof(GameplayStatics_SetEnableWorldRendering) == 0x000010, "Wrong size on GameplayStatics_SetEnableWorldRendering"); \ +static_assert(offsetof(GameplayStatics_SetEnableWorldRendering, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetEnableWorldRendering::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetEnableWorldRendering, bEnable) == 0x000008, "Member 'GameplayStatics_SetEnableWorldRendering::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetForceDisableSplitscreen \ +static_assert(alignof(GameplayStatics_SetForceDisableSplitscreen) == 0x000008, "Wrong alignment on GameplayStatics_SetForceDisableSplitscreen"); \ +static_assert(sizeof(GameplayStatics_SetForceDisableSplitscreen) == 0x000010, "Wrong size on GameplayStatics_SetForceDisableSplitscreen"); \ +static_assert(offsetof(GameplayStatics_SetForceDisableSplitscreen, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetForceDisableSplitscreen::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetForceDisableSplitscreen, bDisable) == 0x000008, "Member 'GameplayStatics_SetForceDisableSplitscreen::bDisable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetGamePaused \ +static_assert(alignof(GameplayStatics_SetGamePaused) == 0x000008, "Wrong alignment on GameplayStatics_SetGamePaused"); \ +static_assert(sizeof(GameplayStatics_SetGamePaused) == 0x000010, "Wrong size on GameplayStatics_SetGamePaused"); \ +static_assert(offsetof(GameplayStatics_SetGamePaused, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetGamePaused::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGamePaused, bPaused) == 0x000008, "Member 'GameplayStatics_SetGamePaused::bPaused' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGamePaused, ReturnValue) == 0x000009, "Member 'GameplayStatics_SetGamePaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetGlobalListenerFocusParameters \ +static_assert(alignof(GameplayStatics_SetGlobalListenerFocusParameters) == 0x000008, "Wrong alignment on GameplayStatics_SetGlobalListenerFocusParameters"); \ +static_assert(sizeof(GameplayStatics_SetGlobalListenerFocusParameters) == 0x000028, "Wrong size on GameplayStatics_SetGlobalListenerFocusParameters"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, FocusAzimuthScale) == 0x000008, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::FocusAzimuthScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, NonFocusAzimuthScale) == 0x00000C, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::NonFocusAzimuthScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, FocusDistanceScale) == 0x000010, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::FocusDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, NonFocusDistanceScale) == 0x000014, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::NonFocusDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, FocusVolumeScale) == 0x000018, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::FocusVolumeScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, NonFocusVolumeScale) == 0x00001C, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::NonFocusVolumeScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, FocusPriorityScale) == 0x000020, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::FocusPriorityScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalListenerFocusParameters, NonFocusPriorityScale) == 0x000024, "Member 'GameplayStatics_SetGlobalListenerFocusParameters::NonFocusPriorityScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetGlobalPitchModulation \ +static_assert(alignof(GameplayStatics_SetGlobalPitchModulation) == 0x000008, "Wrong alignment on GameplayStatics_SetGlobalPitchModulation"); \ +static_assert(sizeof(GameplayStatics_SetGlobalPitchModulation) == 0x000010, "Wrong size on GameplayStatics_SetGlobalPitchModulation"); \ +static_assert(offsetof(GameplayStatics_SetGlobalPitchModulation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetGlobalPitchModulation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalPitchModulation, PitchModulation) == 0x000008, "Member 'GameplayStatics_SetGlobalPitchModulation::PitchModulation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalPitchModulation, TimeSec) == 0x00000C, "Member 'GameplayStatics_SetGlobalPitchModulation::TimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetGlobalTimeDilation \ +static_assert(alignof(GameplayStatics_SetGlobalTimeDilation) == 0x000008, "Wrong alignment on GameplayStatics_SetGlobalTimeDilation"); \ +static_assert(sizeof(GameplayStatics_SetGlobalTimeDilation) == 0x000010, "Wrong size on GameplayStatics_SetGlobalTimeDilation"); \ +static_assert(offsetof(GameplayStatics_SetGlobalTimeDilation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetGlobalTimeDilation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetGlobalTimeDilation, TimeDilation) == 0x000008, "Member 'GameplayStatics_SetGlobalTimeDilation::TimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetMaxAudioChannelsScaled \ +static_assert(alignof(GameplayStatics_SetMaxAudioChannelsScaled) == 0x000008, "Wrong alignment on GameplayStatics_SetMaxAudioChannelsScaled"); \ +static_assert(sizeof(GameplayStatics_SetMaxAudioChannelsScaled) == 0x000010, "Wrong size on GameplayStatics_SetMaxAudioChannelsScaled"); \ +static_assert(offsetof(GameplayStatics_SetMaxAudioChannelsScaled, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetMaxAudioChannelsScaled::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetMaxAudioChannelsScaled, MaxChannelCountScale) == 0x000008, "Member 'GameplayStatics_SetMaxAudioChannelsScaled::MaxChannelCountScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetPlayerControllerID \ +static_assert(alignof(GameplayStatics_SetPlayerControllerID) == 0x000008, "Wrong alignment on GameplayStatics_SetPlayerControllerID"); \ +static_assert(sizeof(GameplayStatics_SetPlayerControllerID) == 0x000010, "Wrong size on GameplayStatics_SetPlayerControllerID"); \ +static_assert(offsetof(GameplayStatics_SetPlayerControllerID, Player) == 0x000000, "Member 'GameplayStatics_SetPlayerControllerID::Player' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetPlayerControllerID, ControllerId) == 0x000008, "Member 'GameplayStatics_SetPlayerControllerID::ControllerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetPlayerPlatformUserId \ +static_assert(alignof(GameplayStatics_SetPlayerPlatformUserId) == 0x000008, "Wrong alignment on GameplayStatics_SetPlayerPlatformUserId"); \ +static_assert(sizeof(GameplayStatics_SetPlayerPlatformUserId) == 0x000010, "Wrong size on GameplayStatics_SetPlayerPlatformUserId"); \ +static_assert(offsetof(GameplayStatics_SetPlayerPlatformUserId, PlayerController) == 0x000000, "Member 'GameplayStatics_SetPlayerPlatformUserId::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetPlayerPlatformUserId, UserId) == 0x000008, "Member 'GameplayStatics_SetPlayerPlatformUserId::UserId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetSoundClassDistanceScale \ +static_assert(alignof(GameplayStatics_SetSoundClassDistanceScale) == 0x000008, "Wrong alignment on GameplayStatics_SetSoundClassDistanceScale"); \ +static_assert(sizeof(GameplayStatics_SetSoundClassDistanceScale) == 0x000018, "Wrong size on GameplayStatics_SetSoundClassDistanceScale"); \ +static_assert(offsetof(GameplayStatics_SetSoundClassDistanceScale, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetSoundClassDistanceScale::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundClassDistanceScale, SoundClass) == 0x000008, "Member 'GameplayStatics_SetSoundClassDistanceScale::SoundClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundClassDistanceScale, DistanceAttenuationScale) == 0x000010, "Member 'GameplayStatics_SetSoundClassDistanceScale::DistanceAttenuationScale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundClassDistanceScale, TimeSec) == 0x000014, "Member 'GameplayStatics_SetSoundClassDistanceScale::TimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetSoundMixClassOverride \ +static_assert(alignof(GameplayStatics_SetSoundMixClassOverride) == 0x000008, "Wrong alignment on GameplayStatics_SetSoundMixClassOverride"); \ +static_assert(sizeof(GameplayStatics_SetSoundMixClassOverride) == 0x000028, "Wrong size on GameplayStatics_SetSoundMixClassOverride"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetSoundMixClassOverride::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, InSoundMixModifier) == 0x000008, "Member 'GameplayStatics_SetSoundMixClassOverride::InSoundMixModifier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, InSoundClass) == 0x000010, "Member 'GameplayStatics_SetSoundMixClassOverride::InSoundClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, Volume) == 0x000018, "Member 'GameplayStatics_SetSoundMixClassOverride::Volume' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, Pitch) == 0x00001C, "Member 'GameplayStatics_SetSoundMixClassOverride::Pitch' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, FadeInTime) == 0x000020, "Member 'GameplayStatics_SetSoundMixClassOverride::FadeInTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetSoundMixClassOverride, bApplyToChildren) == 0x000024, "Member 'GameplayStatics_SetSoundMixClassOverride::bApplyToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetSubtitlesEnabled \ +static_assert(alignof(GameplayStatics_SetSubtitlesEnabled) == 0x000001, "Wrong alignment on GameplayStatics_SetSubtitlesEnabled"); \ +static_assert(sizeof(GameplayStatics_SetSubtitlesEnabled) == 0x000001, "Wrong size on GameplayStatics_SetSubtitlesEnabled"); \ +static_assert(offsetof(GameplayStatics_SetSubtitlesEnabled, bEnabled) == 0x000000, "Member 'GameplayStatics_SetSubtitlesEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetViewportMouseCaptureMode \ +static_assert(alignof(GameplayStatics_SetViewportMouseCaptureMode) == 0x000008, "Wrong alignment on GameplayStatics_SetViewportMouseCaptureMode"); \ +static_assert(sizeof(GameplayStatics_SetViewportMouseCaptureMode) == 0x000010, "Wrong size on GameplayStatics_SetViewportMouseCaptureMode"); \ +static_assert(offsetof(GameplayStatics_SetViewportMouseCaptureMode, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetViewportMouseCaptureMode::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetViewportMouseCaptureMode, MouseCaptureMode) == 0x000008, "Member 'GameplayStatics_SetViewportMouseCaptureMode::MouseCaptureMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SetWorldOriginLocation \ +static_assert(alignof(GameplayStatics_SetWorldOriginLocation) == 0x000008, "Wrong alignment on GameplayStatics_SetWorldOriginLocation"); \ +static_assert(sizeof(GameplayStatics_SetWorldOriginLocation) == 0x000018, "Wrong size on GameplayStatics_SetWorldOriginLocation"); \ +static_assert(offsetof(GameplayStatics_SetWorldOriginLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SetWorldOriginLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SetWorldOriginLocation, NewLocation) == 0x000008, "Member 'GameplayStatics_SetWorldOriginLocation::NewLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnDecalAtLocation \ +static_assert(alignof(GameplayStatics_SpawnDecalAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_SpawnDecalAtLocation"); \ +static_assert(sizeof(GameplayStatics_SpawnDecalAtLocation) == 0x000068, "Wrong size on GameplayStatics_SpawnDecalAtLocation"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnDecalAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, DecalMaterial) == 0x000008, "Member 'GameplayStatics_SpawnDecalAtLocation::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, DecalSize) == 0x000010, "Member 'GameplayStatics_SpawnDecalAtLocation::DecalSize' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, Location) == 0x000028, "Member 'GameplayStatics_SpawnDecalAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, Rotation) == 0x000040, "Member 'GameplayStatics_SpawnDecalAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, LifeSpan) == 0x000058, "Member 'GameplayStatics_SpawnDecalAtLocation::LifeSpan' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAtLocation, ReturnValue) == 0x000060, "Member 'GameplayStatics_SpawnDecalAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnDecalAttached \ +static_assert(alignof(GameplayStatics_SpawnDecalAttached) == 0x000008, "Wrong alignment on GameplayStatics_SpawnDecalAttached"); \ +static_assert(sizeof(GameplayStatics_SpawnDecalAttached) == 0x000070, "Wrong size on GameplayStatics_SpawnDecalAttached"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, DecalMaterial) == 0x000000, "Member 'GameplayStatics_SpawnDecalAttached::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, DecalSize) == 0x000008, "Member 'GameplayStatics_SpawnDecalAttached::DecalSize' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, AttachToComponent) == 0x000020, "Member 'GameplayStatics_SpawnDecalAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, AttachPointName) == 0x000028, "Member 'GameplayStatics_SpawnDecalAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, Location) == 0x000030, "Member 'GameplayStatics_SpawnDecalAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, Rotation) == 0x000048, "Member 'GameplayStatics_SpawnDecalAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, LocationType) == 0x000060, "Member 'GameplayStatics_SpawnDecalAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, LifeSpan) == 0x000064, "Member 'GameplayStatics_SpawnDecalAttached::LifeSpan' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDecalAttached, ReturnValue) == 0x000068, "Member 'GameplayStatics_SpawnDecalAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnDialogue2D \ +static_assert(alignof(GameplayStatics_SpawnDialogue2D) == 0x000008, "Wrong alignment on GameplayStatics_SpawnDialogue2D"); \ +static_assert(sizeof(GameplayStatics_SpawnDialogue2D) == 0x000040, "Wrong size on GameplayStatics_SpawnDialogue2D"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnDialogue2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, Dialogue) == 0x000008, "Member 'GameplayStatics_SpawnDialogue2D::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, Context) == 0x000010, "Member 'GameplayStatics_SpawnDialogue2D::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, VolumeMultiplier) == 0x000028, "Member 'GameplayStatics_SpawnDialogue2D::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, PitchMultiplier) == 0x00002C, "Member 'GameplayStatics_SpawnDialogue2D::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, StartTime) == 0x000030, "Member 'GameplayStatics_SpawnDialogue2D::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, bAutoDestroy) == 0x000034, "Member 'GameplayStatics_SpawnDialogue2D::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogue2D, ReturnValue) == 0x000038, "Member 'GameplayStatics_SpawnDialogue2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnDialogueAtLocation \ +static_assert(alignof(GameplayStatics_SpawnDialogueAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_SpawnDialogueAtLocation"); \ +static_assert(sizeof(GameplayStatics_SpawnDialogueAtLocation) == 0x000080, "Wrong size on GameplayStatics_SpawnDialogueAtLocation"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnDialogueAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, Dialogue) == 0x000008, "Member 'GameplayStatics_SpawnDialogueAtLocation::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, Context) == 0x000010, "Member 'GameplayStatics_SpawnDialogueAtLocation::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, Location) == 0x000028, "Member 'GameplayStatics_SpawnDialogueAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, Rotation) == 0x000040, "Member 'GameplayStatics_SpawnDialogueAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, VolumeMultiplier) == 0x000058, "Member 'GameplayStatics_SpawnDialogueAtLocation::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, PitchMultiplier) == 0x00005C, "Member 'GameplayStatics_SpawnDialogueAtLocation::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, StartTime) == 0x000060, "Member 'GameplayStatics_SpawnDialogueAtLocation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, AttenuationSettings) == 0x000068, "Member 'GameplayStatics_SpawnDialogueAtLocation::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, bAutoDestroy) == 0x000070, "Member 'GameplayStatics_SpawnDialogueAtLocation::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAtLocation, ReturnValue) == 0x000078, "Member 'GameplayStatics_SpawnDialogueAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnDialogueAttached \ +static_assert(alignof(GameplayStatics_SpawnDialogueAttached) == 0x000008, "Wrong alignment on GameplayStatics_SpawnDialogueAttached"); \ +static_assert(sizeof(GameplayStatics_SpawnDialogueAttached) == 0x000088, "Wrong size on GameplayStatics_SpawnDialogueAttached"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, Dialogue) == 0x000000, "Member 'GameplayStatics_SpawnDialogueAttached::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, Context) == 0x000008, "Member 'GameplayStatics_SpawnDialogueAttached::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, AttachToComponent) == 0x000020, "Member 'GameplayStatics_SpawnDialogueAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, AttachPointName) == 0x000028, "Member 'GameplayStatics_SpawnDialogueAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, Location) == 0x000030, "Member 'GameplayStatics_SpawnDialogueAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, Rotation) == 0x000048, "Member 'GameplayStatics_SpawnDialogueAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, LocationType) == 0x000060, "Member 'GameplayStatics_SpawnDialogueAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, bStopWhenAttachedToDestroyed) == 0x000061, "Member 'GameplayStatics_SpawnDialogueAttached::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, VolumeMultiplier) == 0x000064, "Member 'GameplayStatics_SpawnDialogueAttached::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, PitchMultiplier) == 0x000068, "Member 'GameplayStatics_SpawnDialogueAttached::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, StartTime) == 0x00006C, "Member 'GameplayStatics_SpawnDialogueAttached::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, AttenuationSettings) == 0x000070, "Member 'GameplayStatics_SpawnDialogueAttached::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, bAutoDestroy) == 0x000078, "Member 'GameplayStatics_SpawnDialogueAttached::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnDialogueAttached, ReturnValue) == 0x000080, "Member 'GameplayStatics_SpawnDialogueAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnEmitterAtLocation \ +static_assert(alignof(GameplayStatics_SpawnEmitterAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_SpawnEmitterAtLocation"); \ +static_assert(sizeof(GameplayStatics_SpawnEmitterAtLocation) == 0x000068, "Wrong size on GameplayStatics_SpawnEmitterAtLocation"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnEmitterAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, EmitterTemplate) == 0x000008, "Member 'GameplayStatics_SpawnEmitterAtLocation::EmitterTemplate' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, Location) == 0x000010, "Member 'GameplayStatics_SpawnEmitterAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, Rotation) == 0x000028, "Member 'GameplayStatics_SpawnEmitterAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, Scale) == 0x000040, "Member 'GameplayStatics_SpawnEmitterAtLocation::Scale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, bAutoDestroy) == 0x000058, "Member 'GameplayStatics_SpawnEmitterAtLocation::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, PoolingMethod) == 0x000059, "Member 'GameplayStatics_SpawnEmitterAtLocation::PoolingMethod' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, bAutoActivateSystem) == 0x00005A, "Member 'GameplayStatics_SpawnEmitterAtLocation::bAutoActivateSystem' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAtLocation, ReturnValue) == 0x000060, "Member 'GameplayStatics_SpawnEmitterAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnEmitterAttached \ +static_assert(alignof(GameplayStatics_SpawnEmitterAttached) == 0x000008, "Wrong alignment on GameplayStatics_SpawnEmitterAttached"); \ +static_assert(sizeof(GameplayStatics_SpawnEmitterAttached) == 0x000070, "Wrong size on GameplayStatics_SpawnEmitterAttached"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, EmitterTemplate) == 0x000000, "Member 'GameplayStatics_SpawnEmitterAttached::EmitterTemplate' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, AttachToComponent) == 0x000008, "Member 'GameplayStatics_SpawnEmitterAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, AttachPointName) == 0x000010, "Member 'GameplayStatics_SpawnEmitterAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, Location) == 0x000018, "Member 'GameplayStatics_SpawnEmitterAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, Rotation) == 0x000030, "Member 'GameplayStatics_SpawnEmitterAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, Scale) == 0x000048, "Member 'GameplayStatics_SpawnEmitterAttached::Scale' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, LocationType) == 0x000060, "Member 'GameplayStatics_SpawnEmitterAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, bAutoDestroy) == 0x000061, "Member 'GameplayStatics_SpawnEmitterAttached::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, PoolingMethod) == 0x000062, "Member 'GameplayStatics_SpawnEmitterAttached::PoolingMethod' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, bAutoActivate) == 0x000063, "Member 'GameplayStatics_SpawnEmitterAttached::bAutoActivate' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnEmitterAttached, ReturnValue) == 0x000068, "Member 'GameplayStatics_SpawnEmitterAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnForceFeedbackAtLocation \ +static_assert(alignof(GameplayStatics_SpawnForceFeedbackAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_SpawnForceFeedbackAtLocation"); \ +static_assert(sizeof(GameplayStatics_SpawnForceFeedbackAtLocation) == 0x000068, "Wrong size on GameplayStatics_SpawnForceFeedbackAtLocation"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, ForceFeedbackEffect) == 0x000008, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, Location) == 0x000010, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, Rotation) == 0x000028, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, bLooping) == 0x000040, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::bLooping' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, IntensityMultiplier) == 0x000044, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::IntensityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, StartTime) == 0x000048, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, AttenuationSettings) == 0x000050, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, bAutoDestroy) == 0x000058, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAtLocation, ReturnValue) == 0x000060, "Member 'GameplayStatics_SpawnForceFeedbackAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnForceFeedbackAttached \ +static_assert(alignof(GameplayStatics_SpawnForceFeedbackAttached) == 0x000008, "Wrong alignment on GameplayStatics_SpawnForceFeedbackAttached"); \ +static_assert(sizeof(GameplayStatics_SpawnForceFeedbackAttached) == 0x000070, "Wrong size on GameplayStatics_SpawnForceFeedbackAttached"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, ForceFeedbackEffect) == 0x000000, "Member 'GameplayStatics_SpawnForceFeedbackAttached::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, AttachToComponent) == 0x000008, "Member 'GameplayStatics_SpawnForceFeedbackAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, AttachPointName) == 0x000010, "Member 'GameplayStatics_SpawnForceFeedbackAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, Location) == 0x000018, "Member 'GameplayStatics_SpawnForceFeedbackAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, Rotation) == 0x000030, "Member 'GameplayStatics_SpawnForceFeedbackAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, LocationType) == 0x000048, "Member 'GameplayStatics_SpawnForceFeedbackAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, bStopWhenAttachedToDestroyed) == 0x000049, "Member 'GameplayStatics_SpawnForceFeedbackAttached::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, bLooping) == 0x00004A, "Member 'GameplayStatics_SpawnForceFeedbackAttached::bLooping' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, IntensityMultiplier) == 0x00004C, "Member 'GameplayStatics_SpawnForceFeedbackAttached::IntensityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, StartTime) == 0x000050, "Member 'GameplayStatics_SpawnForceFeedbackAttached::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, AttenuationSettings) == 0x000058, "Member 'GameplayStatics_SpawnForceFeedbackAttached::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, bAutoDestroy) == 0x000060, "Member 'GameplayStatics_SpawnForceFeedbackAttached::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnForceFeedbackAttached, ReturnValue) == 0x000068, "Member 'GameplayStatics_SpawnForceFeedbackAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnObject \ +static_assert(alignof(GameplayStatics_SpawnObject) == 0x000008, "Wrong alignment on GameplayStatics_SpawnObject"); \ +static_assert(sizeof(GameplayStatics_SpawnObject) == 0x000018, "Wrong size on GameplayStatics_SpawnObject"); \ +static_assert(offsetof(GameplayStatics_SpawnObject, ObjectClass) == 0x000000, "Member 'GameplayStatics_SpawnObject::ObjectClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnObject, Outer_0) == 0x000008, "Member 'GameplayStatics_SpawnObject::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnObject, ReturnValue) == 0x000010, "Member 'GameplayStatics_SpawnObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnSound2D \ +static_assert(alignof(GameplayStatics_SpawnSound2D) == 0x000008, "Wrong alignment on GameplayStatics_SpawnSound2D"); \ +static_assert(sizeof(GameplayStatics_SpawnSound2D) == 0x000038, "Wrong size on GameplayStatics_SpawnSound2D"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnSound2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, Sound) == 0x000008, "Member 'GameplayStatics_SpawnSound2D::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, VolumeMultiplier) == 0x000010, "Member 'GameplayStatics_SpawnSound2D::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, PitchMultiplier) == 0x000014, "Member 'GameplayStatics_SpawnSound2D::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, StartTime) == 0x000018, "Member 'GameplayStatics_SpawnSound2D::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, ConcurrencySettings) == 0x000020, "Member 'GameplayStatics_SpawnSound2D::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, bPersistAcrossLevelTransition) == 0x000028, "Member 'GameplayStatics_SpawnSound2D::bPersistAcrossLevelTransition' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, bAutoDestroy) == 0x000029, "Member 'GameplayStatics_SpawnSound2D::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSound2D, ReturnValue) == 0x000030, "Member 'GameplayStatics_SpawnSound2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnSoundAtLocation \ +static_assert(alignof(GameplayStatics_SpawnSoundAtLocation) == 0x000008, "Wrong alignment on GameplayStatics_SpawnSoundAtLocation"); \ +static_assert(sizeof(GameplayStatics_SpawnSoundAtLocation) == 0x000070, "Wrong size on GameplayStatics_SpawnSoundAtLocation"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SpawnSoundAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, Sound) == 0x000008, "Member 'GameplayStatics_SpawnSoundAtLocation::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, Location) == 0x000010, "Member 'GameplayStatics_SpawnSoundAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, Rotation) == 0x000028, "Member 'GameplayStatics_SpawnSoundAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, VolumeMultiplier) == 0x000040, "Member 'GameplayStatics_SpawnSoundAtLocation::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, PitchMultiplier) == 0x000044, "Member 'GameplayStatics_SpawnSoundAtLocation::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, StartTime) == 0x000048, "Member 'GameplayStatics_SpawnSoundAtLocation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, AttenuationSettings) == 0x000050, "Member 'GameplayStatics_SpawnSoundAtLocation::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, ConcurrencySettings) == 0x000058, "Member 'GameplayStatics_SpawnSoundAtLocation::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, bAutoDestroy) == 0x000060, "Member 'GameplayStatics_SpawnSoundAtLocation::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAtLocation, ReturnValue) == 0x000068, "Member 'GameplayStatics_SpawnSoundAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SpawnSoundAttached \ +static_assert(alignof(GameplayStatics_SpawnSoundAttached) == 0x000008, "Wrong alignment on GameplayStatics_SpawnSoundAttached"); \ +static_assert(sizeof(GameplayStatics_SpawnSoundAttached) == 0x000078, "Wrong size on GameplayStatics_SpawnSoundAttached"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, Sound) == 0x000000, "Member 'GameplayStatics_SpawnSoundAttached::Sound' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, AttachToComponent) == 0x000008, "Member 'GameplayStatics_SpawnSoundAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, AttachPointName) == 0x000010, "Member 'GameplayStatics_SpawnSoundAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, Location) == 0x000018, "Member 'GameplayStatics_SpawnSoundAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, Rotation) == 0x000030, "Member 'GameplayStatics_SpawnSoundAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, LocationType) == 0x000048, "Member 'GameplayStatics_SpawnSoundAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, bStopWhenAttachedToDestroyed) == 0x000049, "Member 'GameplayStatics_SpawnSoundAttached::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, VolumeMultiplier) == 0x00004C, "Member 'GameplayStatics_SpawnSoundAttached::VolumeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, PitchMultiplier) == 0x000050, "Member 'GameplayStatics_SpawnSoundAttached::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, StartTime) == 0x000054, "Member 'GameplayStatics_SpawnSoundAttached::StartTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, AttenuationSettings) == 0x000058, "Member 'GameplayStatics_SpawnSoundAttached::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, ConcurrencySettings) == 0x000060, "Member 'GameplayStatics_SpawnSoundAttached::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, bAutoDestroy) == 0x000068, "Member 'GameplayStatics_SpawnSoundAttached::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SpawnSoundAttached, ReturnValue) == 0x000070, "Member 'GameplayStatics_SpawnSoundAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SuggestProjectileVelocity_CustomArc \ +static_assert(alignof(GameplayStatics_SuggestProjectileVelocity_CustomArc) == 0x000008, "Wrong alignment on GameplayStatics_SuggestProjectileVelocity_CustomArc"); \ +static_assert(sizeof(GameplayStatics_SuggestProjectileVelocity_CustomArc) == 0x000060, "Wrong size on GameplayStatics_SuggestProjectileVelocity_CustomArc"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, OutLaunchVelocity) == 0x000008, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::OutLaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, StartPos) == 0x000020, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::StartPos' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, EndPos) == 0x000038, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::EndPos' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, OverrideGravityZ) == 0x000050, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::OverrideGravityZ' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, ArcParam) == 0x000054, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::ArcParam' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_CustomArc, ReturnValue) == 0x000058, "Member 'GameplayStatics_SuggestProjectileVelocity_CustomArc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_SuggestProjectileVelocity_MovingTarget \ +static_assert(alignof(GameplayStatics_SuggestProjectileVelocity_MovingTarget) == 0x000008, "Wrong alignment on GameplayStatics_SuggestProjectileVelocity_MovingTarget"); \ +static_assert(sizeof(GameplayStatics_SuggestProjectileVelocity_MovingTarget) == 0x000088, "Wrong size on GameplayStatics_SuggestProjectileVelocity_MovingTarget"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, WorldContextObject) == 0x000000, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, OutLaunchVelocity) == 0x000008, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::OutLaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, ProjectileStartLocation) == 0x000020, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::ProjectileStartLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, TargetActor) == 0x000038, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, TargetLocationOffset) == 0x000040, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, GravityZOverride) == 0x000058, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::GravityZOverride' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, TimeToTarget) == 0x000060, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::TimeToTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, DrawDebugType) == 0x000068, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, DrawDebugTime) == 0x00006C, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::DrawDebugTime' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, DrawDebugColor) == 0x000070, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::DrawDebugColor' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_SuggestProjectileVelocity_MovingTarget, ReturnValue) == 0x000080, "Member 'GameplayStatics_SuggestProjectileVelocity_MovingTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_UnloadStreamLevel \ +static_assert(alignof(GameplayStatics_UnloadStreamLevel) == 0x000008, "Wrong alignment on GameplayStatics_UnloadStreamLevel"); \ +static_assert(sizeof(GameplayStatics_UnloadStreamLevel) == 0x000030, "Wrong size on GameplayStatics_UnloadStreamLevel"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevel, WorldContextObject) == 0x000000, "Member 'GameplayStatics_UnloadStreamLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevel, LevelName) == 0x000008, "Member 'GameplayStatics_UnloadStreamLevel::LevelName' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevel, LatentInfo) == 0x000010, "Member 'GameplayStatics_UnloadStreamLevel::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevel, bShouldBlockOnUnload) == 0x000028, "Member 'GameplayStatics_UnloadStreamLevel::bShouldBlockOnUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_UnloadStreamLevelBySoftObjectPtr \ +static_assert(alignof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr) == 0x000008, "Wrong alignment on GameplayStatics_UnloadStreamLevelBySoftObjectPtr"); \ +static_assert(sizeof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr) == 0x000050, "Wrong size on GameplayStatics_UnloadStreamLevelBySoftObjectPtr"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr, WorldContextObject) == 0x000000, "Member 'GameplayStatics_UnloadStreamLevelBySoftObjectPtr::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr, Level) == 0x000008, "Member 'GameplayStatics_UnloadStreamLevelBySoftObjectPtr::Level' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr, LatentInfo) == 0x000030, "Member 'GameplayStatics_UnloadStreamLevelBySoftObjectPtr::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayStatics_UnloadStreamLevelBySoftObjectPtr, bShouldBlockOnUnload) == 0x000048, "Member 'GameplayStatics_UnloadStreamLevelBySoftObjectPtr::bShouldBlockOnUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayStatics_UnRetainAllSoundsInSoundClass \ +static_assert(alignof(GameplayStatics_UnRetainAllSoundsInSoundClass) == 0x000008, "Wrong alignment on GameplayStatics_UnRetainAllSoundsInSoundClass"); \ +static_assert(sizeof(GameplayStatics_UnRetainAllSoundsInSoundClass) == 0x000008, "Wrong size on GameplayStatics_UnRetainAllSoundsInSoundClass"); \ +static_assert(offsetof(GameplayStatics_UnRetainAllSoundsInSoundClass, InSoundClass) == 0x000000, "Member 'GameplayStatics_UnRetainAllSoundsInSoundClass::InSoundClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayStatics \ +static_assert(alignof(UGameplayStatics) == 0x000008, "Wrong alignment on UGameplayStatics"); \ +static_assert(sizeof(UGameplayStatics) == 0x000028, "Wrong size on UGameplayStatics"); \ + +#define DUMPER7_ASSERTS_AGameSession \ +static_assert(alignof(AGameSession) == 0x000008, "Wrong alignment on AGameSession"); \ +static_assert(sizeof(AGameSession) == 0x0002B0, "Wrong size on AGameSession"); \ +static_assert(offsetof(AGameSession, MaxSpectators) == 0x000298, "Member 'AGameSession::MaxSpectators' has a wrong offset!"); \ +static_assert(offsetof(AGameSession, MaxPlayers) == 0x00029C, "Member 'AGameSession::MaxPlayers' has a wrong offset!"); \ +static_assert(offsetof(AGameSession, MaxPartySize) == 0x0002A0, "Member 'AGameSession::MaxPartySize' has a wrong offset!"); \ +static_assert(offsetof(AGameSession, MaxSplitscreensPerConnection) == 0x0002A4, "Member 'AGameSession::MaxSplitscreensPerConnection' has a wrong offset!"); \ +static_assert(offsetof(AGameSession, bRequiresPushToTalk) == 0x0002A5, "Member 'AGameSession::bRequiresPushToTalk' has a wrong offset!"); \ +static_assert(offsetof(AGameSession, SessionName) == 0x0002A8, "Member 'AGameSession::SessionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetDefaultResolution \ +static_assert(alignof(GameUserSettings_GetDefaultResolution) == 0x000004, "Wrong alignment on GameUserSettings_GetDefaultResolution"); \ +static_assert(sizeof(GameUserSettings_GetDefaultResolution) == 0x000008, "Wrong size on GameUserSettings_GetDefaultResolution"); \ +static_assert(offsetof(GameUserSettings_GetDefaultResolution, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetDefaultResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetDefaultWindowMode \ +static_assert(alignof(GameUserSettings_GetDefaultWindowMode) == 0x000001, "Wrong alignment on GameUserSettings_GetDefaultWindowMode"); \ +static_assert(sizeof(GameUserSettings_GetDefaultWindowMode) == 0x000001, "Wrong size on GameUserSettings_GetDefaultWindowMode"); \ +static_assert(offsetof(GameUserSettings_GetDefaultWindowMode, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetDefaultWindowMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetDefaultWindowPosition \ +static_assert(alignof(GameUserSettings_GetDefaultWindowPosition) == 0x000004, "Wrong alignment on GameUserSettings_GetDefaultWindowPosition"); \ +static_assert(sizeof(GameUserSettings_GetDefaultWindowPosition) == 0x000008, "Wrong size on GameUserSettings_GetDefaultWindowPosition"); \ +static_assert(offsetof(GameUserSettings_GetDefaultWindowPosition, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetDefaultWindowPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetFramePace \ +static_assert(alignof(GameUserSettings_GetFramePace) == 0x000004, "Wrong alignment on GameUserSettings_GetFramePace"); \ +static_assert(sizeof(GameUserSettings_GetFramePace) == 0x000004, "Wrong size on GameUserSettings_GetFramePace"); \ +static_assert(offsetof(GameUserSettings_GetFramePace, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetFramePace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetGameUserSettings \ +static_assert(alignof(GameUserSettings_GetGameUserSettings) == 0x000008, "Wrong alignment on GameUserSettings_GetGameUserSettings"); \ +static_assert(sizeof(GameUserSettings_GetGameUserSettings) == 0x000008, "Wrong size on GameUserSettings_GetGameUserSettings"); \ +static_assert(offsetof(GameUserSettings_GetGameUserSettings, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetGameUserSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetSyncInterval \ +static_assert(alignof(GameUserSettings_GetSyncInterval) == 0x000004, "Wrong alignment on GameUserSettings_GetSyncInterval"); \ +static_assert(sizeof(GameUserSettings_GetSyncInterval) == 0x000004, "Wrong size on GameUserSettings_GetSyncInterval"); \ +static_assert(offsetof(GameUserSettings_GetSyncInterval, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetSyncInterval::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_ApplyResolutionSettings \ +static_assert(alignof(GameUserSettings_ApplyResolutionSettings) == 0x000001, "Wrong alignment on GameUserSettings_ApplyResolutionSettings"); \ +static_assert(sizeof(GameUserSettings_ApplyResolutionSettings) == 0x000001, "Wrong size on GameUserSettings_ApplyResolutionSettings"); \ +static_assert(offsetof(GameUserSettings_ApplyResolutionSettings, bCheckForCommandLineOverrides) == 0x000000, "Member 'GameUserSettings_ApplyResolutionSettings::bCheckForCommandLineOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_ApplySettings \ +static_assert(alignof(GameUserSettings_ApplySettings) == 0x000001, "Wrong alignment on GameUserSettings_ApplySettings"); \ +static_assert(sizeof(GameUserSettings_ApplySettings) == 0x000001, "Wrong size on GameUserSettings_ApplySettings"); \ +static_assert(offsetof(GameUserSettings_ApplySettings, bCheckForCommandLineOverrides) == 0x000000, "Member 'GameUserSettings_ApplySettings::bCheckForCommandLineOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_EnableHDRDisplayOutput \ +static_assert(alignof(GameUserSettings_EnableHDRDisplayOutput) == 0x000004, "Wrong alignment on GameUserSettings_EnableHDRDisplayOutput"); \ +static_assert(sizeof(GameUserSettings_EnableHDRDisplayOutput) == 0x000008, "Wrong size on GameUserSettings_EnableHDRDisplayOutput"); \ +static_assert(offsetof(GameUserSettings_EnableHDRDisplayOutput, bEnable) == 0x000000, "Member 'GameUserSettings_EnableHDRDisplayOutput::bEnable' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_EnableHDRDisplayOutput, DisplayNits) == 0x000004, "Member 'GameUserSettings_EnableHDRDisplayOutput::DisplayNits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetDefaultResolutionScale \ +static_assert(alignof(GameUserSettings_GetDefaultResolutionScale) == 0x000004, "Wrong alignment on GameUserSettings_GetDefaultResolutionScale"); \ +static_assert(sizeof(GameUserSettings_GetDefaultResolutionScale) == 0x000004, "Wrong size on GameUserSettings_GetDefaultResolutionScale"); \ +static_assert(offsetof(GameUserSettings_GetDefaultResolutionScale, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetDefaultResolutionScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetRecommendedResolutionScale \ +static_assert(alignof(GameUserSettings_GetRecommendedResolutionScale) == 0x000004, "Wrong alignment on GameUserSettings_GetRecommendedResolutionScale"); \ +static_assert(sizeof(GameUserSettings_GetRecommendedResolutionScale) == 0x000004, "Wrong size on GameUserSettings_GetRecommendedResolutionScale"); \ +static_assert(offsetof(GameUserSettings_GetRecommendedResolutionScale, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetRecommendedResolutionScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_LoadSettings \ +static_assert(alignof(GameUserSettings_LoadSettings) == 0x000001, "Wrong alignment on GameUserSettings_LoadSettings"); \ +static_assert(sizeof(GameUserSettings_LoadSettings) == 0x000001, "Wrong size on GameUserSettings_LoadSettings"); \ +static_assert(offsetof(GameUserSettings_LoadSettings, bForceReload) == 0x000000, "Member 'GameUserSettings_LoadSettings::bForceReload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_RunHardwareBenchmark \ +static_assert(alignof(GameUserSettings_RunHardwareBenchmark) == 0x000004, "Wrong alignment on GameUserSettings_RunHardwareBenchmark"); \ +static_assert(sizeof(GameUserSettings_RunHardwareBenchmark) == 0x00000C, "Wrong size on GameUserSettings_RunHardwareBenchmark"); \ +static_assert(offsetof(GameUserSettings_RunHardwareBenchmark, WorkScale) == 0x000000, "Member 'GameUserSettings_RunHardwareBenchmark::WorkScale' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_RunHardwareBenchmark, CPUMultiplier) == 0x000004, "Member 'GameUserSettings_RunHardwareBenchmark::CPUMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_RunHardwareBenchmark, GPUMultiplier) == 0x000008, "Member 'GameUserSettings_RunHardwareBenchmark::GPUMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetAntiAliasingQuality \ +static_assert(alignof(GameUserSettings_SetAntiAliasingQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetAntiAliasingQuality"); \ +static_assert(sizeof(GameUserSettings_SetAntiAliasingQuality) == 0x000004, "Wrong size on GameUserSettings_SetAntiAliasingQuality"); \ +static_assert(offsetof(GameUserSettings_SetAntiAliasingQuality, Value) == 0x000000, "Member 'GameUserSettings_SetAntiAliasingQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetAudioQualityLevel \ +static_assert(alignof(GameUserSettings_SetAudioQualityLevel) == 0x000004, "Wrong alignment on GameUserSettings_SetAudioQualityLevel"); \ +static_assert(sizeof(GameUserSettings_SetAudioQualityLevel) == 0x000004, "Wrong size on GameUserSettings_SetAudioQualityLevel"); \ +static_assert(offsetof(GameUserSettings_SetAudioQualityLevel, QualityLevel) == 0x000000, "Member 'GameUserSettings_SetAudioQualityLevel::QualityLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetDynamicResolutionEnabled \ +static_assert(alignof(GameUserSettings_SetDynamicResolutionEnabled) == 0x000001, "Wrong alignment on GameUserSettings_SetDynamicResolutionEnabled"); \ +static_assert(sizeof(GameUserSettings_SetDynamicResolutionEnabled) == 0x000001, "Wrong size on GameUserSettings_SetDynamicResolutionEnabled"); \ +static_assert(offsetof(GameUserSettings_SetDynamicResolutionEnabled, bEnable) == 0x000000, "Member 'GameUserSettings_SetDynamicResolutionEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetFoliageQuality \ +static_assert(alignof(GameUserSettings_SetFoliageQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetFoliageQuality"); \ +static_assert(sizeof(GameUserSettings_SetFoliageQuality) == 0x000004, "Wrong size on GameUserSettings_SetFoliageQuality"); \ +static_assert(offsetof(GameUserSettings_SetFoliageQuality, Value) == 0x000000, "Member 'GameUserSettings_SetFoliageQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetFrameRateLimit \ +static_assert(alignof(GameUserSettings_SetFrameRateLimit) == 0x000004, "Wrong alignment on GameUserSettings_SetFrameRateLimit"); \ +static_assert(sizeof(GameUserSettings_SetFrameRateLimit) == 0x000004, "Wrong size on GameUserSettings_SetFrameRateLimit"); \ +static_assert(offsetof(GameUserSettings_SetFrameRateLimit, NewLimit) == 0x000000, "Member 'GameUserSettings_SetFrameRateLimit::NewLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetFullscreenMode \ +static_assert(alignof(GameUserSettings_SetFullscreenMode) == 0x000001, "Wrong alignment on GameUserSettings_SetFullscreenMode"); \ +static_assert(sizeof(GameUserSettings_SetFullscreenMode) == 0x000001, "Wrong size on GameUserSettings_SetFullscreenMode"); \ +static_assert(offsetof(GameUserSettings_SetFullscreenMode, InFullscreenMode) == 0x000000, "Member 'GameUserSettings_SetFullscreenMode::InFullscreenMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetGlobalIlluminationQuality \ +static_assert(alignof(GameUserSettings_SetGlobalIlluminationQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetGlobalIlluminationQuality"); \ +static_assert(sizeof(GameUserSettings_SetGlobalIlluminationQuality) == 0x000004, "Wrong size on GameUserSettings_SetGlobalIlluminationQuality"); \ +static_assert(offsetof(GameUserSettings_SetGlobalIlluminationQuality, Value) == 0x000000, "Member 'GameUserSettings_SetGlobalIlluminationQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetOverallScalabilityLevel \ +static_assert(alignof(GameUserSettings_SetOverallScalabilityLevel) == 0x000004, "Wrong alignment on GameUserSettings_SetOverallScalabilityLevel"); \ +static_assert(sizeof(GameUserSettings_SetOverallScalabilityLevel) == 0x000004, "Wrong size on GameUserSettings_SetOverallScalabilityLevel"); \ +static_assert(offsetof(GameUserSettings_SetOverallScalabilityLevel, Value) == 0x000000, "Member 'GameUserSettings_SetOverallScalabilityLevel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetPostProcessingQuality \ +static_assert(alignof(GameUserSettings_SetPostProcessingQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetPostProcessingQuality"); \ +static_assert(sizeof(GameUserSettings_SetPostProcessingQuality) == 0x000004, "Wrong size on GameUserSettings_SetPostProcessingQuality"); \ +static_assert(offsetof(GameUserSettings_SetPostProcessingQuality, Value) == 0x000000, "Member 'GameUserSettings_SetPostProcessingQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetReflectionQuality \ +static_assert(alignof(GameUserSettings_SetReflectionQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetReflectionQuality"); \ +static_assert(sizeof(GameUserSettings_SetReflectionQuality) == 0x000004, "Wrong size on GameUserSettings_SetReflectionQuality"); \ +static_assert(offsetof(GameUserSettings_SetReflectionQuality, Value) == 0x000000, "Member 'GameUserSettings_SetReflectionQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetResolutionScaleNormalized \ +static_assert(alignof(GameUserSettings_SetResolutionScaleNormalized) == 0x000004, "Wrong alignment on GameUserSettings_SetResolutionScaleNormalized"); \ +static_assert(sizeof(GameUserSettings_SetResolutionScaleNormalized) == 0x000004, "Wrong size on GameUserSettings_SetResolutionScaleNormalized"); \ +static_assert(offsetof(GameUserSettings_SetResolutionScaleNormalized, NewScaleNormalized) == 0x000000, "Member 'GameUserSettings_SetResolutionScaleNormalized::NewScaleNormalized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetResolutionScaleValueEx \ +static_assert(alignof(GameUserSettings_SetResolutionScaleValueEx) == 0x000004, "Wrong alignment on GameUserSettings_SetResolutionScaleValueEx"); \ +static_assert(sizeof(GameUserSettings_SetResolutionScaleValueEx) == 0x000004, "Wrong size on GameUserSettings_SetResolutionScaleValueEx"); \ +static_assert(offsetof(GameUserSettings_SetResolutionScaleValueEx, NewScaleValue) == 0x000000, "Member 'GameUserSettings_SetResolutionScaleValueEx::NewScaleValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetScreenResolution \ +static_assert(alignof(GameUserSettings_SetScreenResolution) == 0x000004, "Wrong alignment on GameUserSettings_SetScreenResolution"); \ +static_assert(sizeof(GameUserSettings_SetScreenResolution) == 0x000008, "Wrong size on GameUserSettings_SetScreenResolution"); \ +static_assert(offsetof(GameUserSettings_SetScreenResolution, Resolution) == 0x000000, "Member 'GameUserSettings_SetScreenResolution::Resolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetShadingQuality \ +static_assert(alignof(GameUserSettings_SetShadingQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetShadingQuality"); \ +static_assert(sizeof(GameUserSettings_SetShadingQuality) == 0x000004, "Wrong size on GameUserSettings_SetShadingQuality"); \ +static_assert(offsetof(GameUserSettings_SetShadingQuality, Value) == 0x000000, "Member 'GameUserSettings_SetShadingQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetShadowQuality \ +static_assert(alignof(GameUserSettings_SetShadowQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetShadowQuality"); \ +static_assert(sizeof(GameUserSettings_SetShadowQuality) == 0x000004, "Wrong size on GameUserSettings_SetShadowQuality"); \ +static_assert(offsetof(GameUserSettings_SetShadowQuality, Value) == 0x000000, "Member 'GameUserSettings_SetShadowQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetTextureQuality \ +static_assert(alignof(GameUserSettings_SetTextureQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetTextureQuality"); \ +static_assert(sizeof(GameUserSettings_SetTextureQuality) == 0x000004, "Wrong size on GameUserSettings_SetTextureQuality"); \ +static_assert(offsetof(GameUserSettings_SetTextureQuality, Value) == 0x000000, "Member 'GameUserSettings_SetTextureQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetViewDistanceQuality \ +static_assert(alignof(GameUserSettings_SetViewDistanceQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetViewDistanceQuality"); \ +static_assert(sizeof(GameUserSettings_SetViewDistanceQuality) == 0x000004, "Wrong size on GameUserSettings_SetViewDistanceQuality"); \ +static_assert(offsetof(GameUserSettings_SetViewDistanceQuality, Value) == 0x000000, "Member 'GameUserSettings_SetViewDistanceQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetVisualEffectQuality \ +static_assert(alignof(GameUserSettings_SetVisualEffectQuality) == 0x000004, "Wrong alignment on GameUserSettings_SetVisualEffectQuality"); \ +static_assert(sizeof(GameUserSettings_SetVisualEffectQuality) == 0x000004, "Wrong size on GameUserSettings_SetVisualEffectQuality"); \ +static_assert(offsetof(GameUserSettings_SetVisualEffectQuality, Value) == 0x000000, "Member 'GameUserSettings_SetVisualEffectQuality::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SetVSyncEnabled \ +static_assert(alignof(GameUserSettings_SetVSyncEnabled) == 0x000001, "Wrong alignment on GameUserSettings_SetVSyncEnabled"); \ +static_assert(sizeof(GameUserSettings_SetVSyncEnabled) == 0x000001, "Wrong size on GameUserSettings_SetVSyncEnabled"); \ +static_assert(offsetof(GameUserSettings_SetVSyncEnabled, bEnable) == 0x000000, "Member 'GameUserSettings_SetVSyncEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetAntiAliasingQuality \ +static_assert(alignof(GameUserSettings_GetAntiAliasingQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetAntiAliasingQuality"); \ +static_assert(sizeof(GameUserSettings_GetAntiAliasingQuality) == 0x000004, "Wrong size on GameUserSettings_GetAntiAliasingQuality"); \ +static_assert(offsetof(GameUserSettings_GetAntiAliasingQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetAntiAliasingQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetAudioQualityLevel \ +static_assert(alignof(GameUserSettings_GetAudioQualityLevel) == 0x000004, "Wrong alignment on GameUserSettings_GetAudioQualityLevel"); \ +static_assert(sizeof(GameUserSettings_GetAudioQualityLevel) == 0x000004, "Wrong size on GameUserSettings_GetAudioQualityLevel"); \ +static_assert(offsetof(GameUserSettings_GetAudioQualityLevel, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetAudioQualityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetCurrentHDRDisplayNits \ +static_assert(alignof(GameUserSettings_GetCurrentHDRDisplayNits) == 0x000004, "Wrong alignment on GameUserSettings_GetCurrentHDRDisplayNits"); \ +static_assert(sizeof(GameUserSettings_GetCurrentHDRDisplayNits) == 0x000004, "Wrong size on GameUserSettings_GetCurrentHDRDisplayNits"); \ +static_assert(offsetof(GameUserSettings_GetCurrentHDRDisplayNits, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetCurrentHDRDisplayNits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetDesktopResolution \ +static_assert(alignof(GameUserSettings_GetDesktopResolution) == 0x000004, "Wrong alignment on GameUserSettings_GetDesktopResolution"); \ +static_assert(sizeof(GameUserSettings_GetDesktopResolution) == 0x000008, "Wrong size on GameUserSettings_GetDesktopResolution"); \ +static_assert(offsetof(GameUserSettings_GetDesktopResolution, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetDesktopResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetFoliageQuality \ +static_assert(alignof(GameUserSettings_GetFoliageQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetFoliageQuality"); \ +static_assert(sizeof(GameUserSettings_GetFoliageQuality) == 0x000004, "Wrong size on GameUserSettings_GetFoliageQuality"); \ +static_assert(offsetof(GameUserSettings_GetFoliageQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetFoliageQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetFrameRateLimit \ +static_assert(alignof(GameUserSettings_GetFrameRateLimit) == 0x000004, "Wrong alignment on GameUserSettings_GetFrameRateLimit"); \ +static_assert(sizeof(GameUserSettings_GetFrameRateLimit) == 0x000004, "Wrong size on GameUserSettings_GetFrameRateLimit"); \ +static_assert(offsetof(GameUserSettings_GetFrameRateLimit, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetFrameRateLimit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetFullscreenMode \ +static_assert(alignof(GameUserSettings_GetFullscreenMode) == 0x000001, "Wrong alignment on GameUserSettings_GetFullscreenMode"); \ +static_assert(sizeof(GameUserSettings_GetFullscreenMode) == 0x000001, "Wrong size on GameUserSettings_GetFullscreenMode"); \ +static_assert(offsetof(GameUserSettings_GetFullscreenMode, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetFullscreenMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetGlobalIlluminationQuality \ +static_assert(alignof(GameUserSettings_GetGlobalIlluminationQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetGlobalIlluminationQuality"); \ +static_assert(sizeof(GameUserSettings_GetGlobalIlluminationQuality) == 0x000004, "Wrong size on GameUserSettings_GetGlobalIlluminationQuality"); \ +static_assert(offsetof(GameUserSettings_GetGlobalIlluminationQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetGlobalIlluminationQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetLastConfirmedFullscreenMode \ +static_assert(alignof(GameUserSettings_GetLastConfirmedFullscreenMode) == 0x000001, "Wrong alignment on GameUserSettings_GetLastConfirmedFullscreenMode"); \ +static_assert(sizeof(GameUserSettings_GetLastConfirmedFullscreenMode) == 0x000001, "Wrong size on GameUserSettings_GetLastConfirmedFullscreenMode"); \ +static_assert(offsetof(GameUserSettings_GetLastConfirmedFullscreenMode, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetLastConfirmedFullscreenMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetLastConfirmedScreenResolution \ +static_assert(alignof(GameUserSettings_GetLastConfirmedScreenResolution) == 0x000004, "Wrong alignment on GameUserSettings_GetLastConfirmedScreenResolution"); \ +static_assert(sizeof(GameUserSettings_GetLastConfirmedScreenResolution) == 0x000008, "Wrong size on GameUserSettings_GetLastConfirmedScreenResolution"); \ +static_assert(offsetof(GameUserSettings_GetLastConfirmedScreenResolution, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetLastConfirmedScreenResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetOverallScalabilityLevel \ +static_assert(alignof(GameUserSettings_GetOverallScalabilityLevel) == 0x000004, "Wrong alignment on GameUserSettings_GetOverallScalabilityLevel"); \ +static_assert(sizeof(GameUserSettings_GetOverallScalabilityLevel) == 0x000004, "Wrong size on GameUserSettings_GetOverallScalabilityLevel"); \ +static_assert(offsetof(GameUserSettings_GetOverallScalabilityLevel, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetOverallScalabilityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetPostProcessingQuality \ +static_assert(alignof(GameUserSettings_GetPostProcessingQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetPostProcessingQuality"); \ +static_assert(sizeof(GameUserSettings_GetPostProcessingQuality) == 0x000004, "Wrong size on GameUserSettings_GetPostProcessingQuality"); \ +static_assert(offsetof(GameUserSettings_GetPostProcessingQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetPostProcessingQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetPreferredFullscreenMode \ +static_assert(alignof(GameUserSettings_GetPreferredFullscreenMode) == 0x000001, "Wrong alignment on GameUserSettings_GetPreferredFullscreenMode"); \ +static_assert(sizeof(GameUserSettings_GetPreferredFullscreenMode) == 0x000001, "Wrong size on GameUserSettings_GetPreferredFullscreenMode"); \ +static_assert(offsetof(GameUserSettings_GetPreferredFullscreenMode, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetPreferredFullscreenMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetReflectionQuality \ +static_assert(alignof(GameUserSettings_GetReflectionQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetReflectionQuality"); \ +static_assert(sizeof(GameUserSettings_GetReflectionQuality) == 0x000004, "Wrong size on GameUserSettings_GetReflectionQuality"); \ +static_assert(offsetof(GameUserSettings_GetReflectionQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetReflectionQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetResolutionScaleInformationEx \ +static_assert(alignof(GameUserSettings_GetResolutionScaleInformationEx) == 0x000004, "Wrong alignment on GameUserSettings_GetResolutionScaleInformationEx"); \ +static_assert(sizeof(GameUserSettings_GetResolutionScaleInformationEx) == 0x000010, "Wrong size on GameUserSettings_GetResolutionScaleInformationEx"); \ +static_assert(offsetof(GameUserSettings_GetResolutionScaleInformationEx, CurrentScaleNormalized) == 0x000000, "Member 'GameUserSettings_GetResolutionScaleInformationEx::CurrentScaleNormalized' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_GetResolutionScaleInformationEx, CurrentScaleValue) == 0x000004, "Member 'GameUserSettings_GetResolutionScaleInformationEx::CurrentScaleValue' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_GetResolutionScaleInformationEx, MinScaleValue) == 0x000008, "Member 'GameUserSettings_GetResolutionScaleInformationEx::MinScaleValue' has a wrong offset!"); \ +static_assert(offsetof(GameUserSettings_GetResolutionScaleInformationEx, MaxScaleValue) == 0x00000C, "Member 'GameUserSettings_GetResolutionScaleInformationEx::MaxScaleValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetResolutionScaleNormalized \ +static_assert(alignof(GameUserSettings_GetResolutionScaleNormalized) == 0x000004, "Wrong alignment on GameUserSettings_GetResolutionScaleNormalized"); \ +static_assert(sizeof(GameUserSettings_GetResolutionScaleNormalized) == 0x000004, "Wrong size on GameUserSettings_GetResolutionScaleNormalized"); \ +static_assert(offsetof(GameUserSettings_GetResolutionScaleNormalized, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetResolutionScaleNormalized::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetScreenResolution \ +static_assert(alignof(GameUserSettings_GetScreenResolution) == 0x000004, "Wrong alignment on GameUserSettings_GetScreenResolution"); \ +static_assert(sizeof(GameUserSettings_GetScreenResolution) == 0x000008, "Wrong size on GameUserSettings_GetScreenResolution"); \ +static_assert(offsetof(GameUserSettings_GetScreenResolution, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetScreenResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetShadingQuality \ +static_assert(alignof(GameUserSettings_GetShadingQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetShadingQuality"); \ +static_assert(sizeof(GameUserSettings_GetShadingQuality) == 0x000004, "Wrong size on GameUserSettings_GetShadingQuality"); \ +static_assert(offsetof(GameUserSettings_GetShadingQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetShadingQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetShadowQuality \ +static_assert(alignof(GameUserSettings_GetShadowQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetShadowQuality"); \ +static_assert(sizeof(GameUserSettings_GetShadowQuality) == 0x000004, "Wrong size on GameUserSettings_GetShadowQuality"); \ +static_assert(offsetof(GameUserSettings_GetShadowQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetShadowQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetTextureQuality \ +static_assert(alignof(GameUserSettings_GetTextureQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetTextureQuality"); \ +static_assert(sizeof(GameUserSettings_GetTextureQuality) == 0x000004, "Wrong size on GameUserSettings_GetTextureQuality"); \ +static_assert(offsetof(GameUserSettings_GetTextureQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetTextureQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetViewDistanceQuality \ +static_assert(alignof(GameUserSettings_GetViewDistanceQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetViewDistanceQuality"); \ +static_assert(sizeof(GameUserSettings_GetViewDistanceQuality) == 0x000004, "Wrong size on GameUserSettings_GetViewDistanceQuality"); \ +static_assert(offsetof(GameUserSettings_GetViewDistanceQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetViewDistanceQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_GetVisualEffectQuality \ +static_assert(alignof(GameUserSettings_GetVisualEffectQuality) == 0x000004, "Wrong alignment on GameUserSettings_GetVisualEffectQuality"); \ +static_assert(sizeof(GameUserSettings_GetVisualEffectQuality) == 0x000004, "Wrong size on GameUserSettings_GetVisualEffectQuality"); \ +static_assert(offsetof(GameUserSettings_GetVisualEffectQuality, ReturnValue) == 0x000000, "Member 'GameUserSettings_GetVisualEffectQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsDirty \ +static_assert(alignof(GameUserSettings_IsDirty) == 0x000001, "Wrong alignment on GameUserSettings_IsDirty"); \ +static_assert(sizeof(GameUserSettings_IsDirty) == 0x000001, "Wrong size on GameUserSettings_IsDirty"); \ +static_assert(offsetof(GameUserSettings_IsDirty, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsDirty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsDynamicResolutionDirty \ +static_assert(alignof(GameUserSettings_IsDynamicResolutionDirty) == 0x000001, "Wrong alignment on GameUserSettings_IsDynamicResolutionDirty"); \ +static_assert(sizeof(GameUserSettings_IsDynamicResolutionDirty) == 0x000001, "Wrong size on GameUserSettings_IsDynamicResolutionDirty"); \ +static_assert(offsetof(GameUserSettings_IsDynamicResolutionDirty, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsDynamicResolutionDirty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsDynamicResolutionEnabled \ +static_assert(alignof(GameUserSettings_IsDynamicResolutionEnabled) == 0x000001, "Wrong alignment on GameUserSettings_IsDynamicResolutionEnabled"); \ +static_assert(sizeof(GameUserSettings_IsDynamicResolutionEnabled) == 0x000001, "Wrong size on GameUserSettings_IsDynamicResolutionEnabled"); \ +static_assert(offsetof(GameUserSettings_IsDynamicResolutionEnabled, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsDynamicResolutionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsFullscreenModeDirty \ +static_assert(alignof(GameUserSettings_IsFullscreenModeDirty) == 0x000001, "Wrong alignment on GameUserSettings_IsFullscreenModeDirty"); \ +static_assert(sizeof(GameUserSettings_IsFullscreenModeDirty) == 0x000001, "Wrong size on GameUserSettings_IsFullscreenModeDirty"); \ +static_assert(offsetof(GameUserSettings_IsFullscreenModeDirty, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsFullscreenModeDirty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsHDREnabled \ +static_assert(alignof(GameUserSettings_IsHDREnabled) == 0x000001, "Wrong alignment on GameUserSettings_IsHDREnabled"); \ +static_assert(sizeof(GameUserSettings_IsHDREnabled) == 0x000001, "Wrong size on GameUserSettings_IsHDREnabled"); \ +static_assert(offsetof(GameUserSettings_IsHDREnabled, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsHDREnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsScreenResolutionDirty \ +static_assert(alignof(GameUserSettings_IsScreenResolutionDirty) == 0x000001, "Wrong alignment on GameUserSettings_IsScreenResolutionDirty"); \ +static_assert(sizeof(GameUserSettings_IsScreenResolutionDirty) == 0x000001, "Wrong size on GameUserSettings_IsScreenResolutionDirty"); \ +static_assert(offsetof(GameUserSettings_IsScreenResolutionDirty, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsScreenResolutionDirty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsVSyncDirty \ +static_assert(alignof(GameUserSettings_IsVSyncDirty) == 0x000001, "Wrong alignment on GameUserSettings_IsVSyncDirty"); \ +static_assert(sizeof(GameUserSettings_IsVSyncDirty) == 0x000001, "Wrong size on GameUserSettings_IsVSyncDirty"); \ +static_assert(offsetof(GameUserSettings_IsVSyncDirty, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsVSyncDirty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_IsVSyncEnabled \ +static_assert(alignof(GameUserSettings_IsVSyncEnabled) == 0x000001, "Wrong alignment on GameUserSettings_IsVSyncEnabled"); \ +static_assert(sizeof(GameUserSettings_IsVSyncEnabled) == 0x000001, "Wrong size on GameUserSettings_IsVSyncEnabled"); \ +static_assert(offsetof(GameUserSettings_IsVSyncEnabled, ReturnValue) == 0x000000, "Member 'GameUserSettings_IsVSyncEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameUserSettings_SupportsHDRDisplayOutput \ +static_assert(alignof(GameUserSettings_SupportsHDRDisplayOutput) == 0x000001, "Wrong alignment on GameUserSettings_SupportsHDRDisplayOutput"); \ +static_assert(sizeof(GameUserSettings_SupportsHDRDisplayOutput) == 0x000001, "Wrong size on GameUserSettings_SupportsHDRDisplayOutput"); \ +static_assert(offsetof(GameUserSettings_SupportsHDRDisplayOutput, ReturnValue) == 0x000000, "Member 'GameUserSettings_SupportsHDRDisplayOutput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameUserSettings \ +static_assert(alignof(UGameUserSettings) == 0x000008, "Wrong alignment on UGameUserSettings"); \ +static_assert(sizeof(UGameUserSettings) == 0x000148, "Wrong size on UGameUserSettings"); \ +static_assert(offsetof(UGameUserSettings, bUseVSync) == 0x000028, "Member 'UGameUserSettings::bUseVSync' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, bUseDynamicResolution) == 0x000029, "Member 'UGameUserSettings::bUseDynamicResolution' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, ResolutionSizeX) == 0x000088, "Member 'UGameUserSettings::ResolutionSizeX' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, ResolutionSizeY) == 0x00008C, "Member 'UGameUserSettings::ResolutionSizeY' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastUserConfirmedResolutionSizeX) == 0x000090, "Member 'UGameUserSettings::LastUserConfirmedResolutionSizeX' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastUserConfirmedResolutionSizeY) == 0x000094, "Member 'UGameUserSettings::LastUserConfirmedResolutionSizeY' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, WindowPosX) == 0x000098, "Member 'UGameUserSettings::WindowPosX' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, WindowPosY) == 0x00009C, "Member 'UGameUserSettings::WindowPosY' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, FullscreenMode) == 0x0000A0, "Member 'UGameUserSettings::FullscreenMode' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastConfirmedFullscreenMode) == 0x0000A4, "Member 'UGameUserSettings::LastConfirmedFullscreenMode' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, PreferredFullscreenMode) == 0x0000A8, "Member 'UGameUserSettings::PreferredFullscreenMode' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, Version) == 0x0000AC, "Member 'UGameUserSettings::Version' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, AudioQualityLevel) == 0x0000B0, "Member 'UGameUserSettings::AudioQualityLevel' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastConfirmedAudioQualityLevel) == 0x0000B4, "Member 'UGameUserSettings::LastConfirmedAudioQualityLevel' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, FrameRateLimit) == 0x0000B8, "Member 'UGameUserSettings::FrameRateLimit' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, DesiredScreenWidth) == 0x0000C0, "Member 'UGameUserSettings::DesiredScreenWidth' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, bUseDesiredScreenHeight) == 0x0000C4, "Member 'UGameUserSettings::bUseDesiredScreenHeight' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, DesiredScreenHeight) == 0x0000C8, "Member 'UGameUserSettings::DesiredScreenHeight' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastUserConfirmedDesiredScreenWidth) == 0x0000CC, "Member 'UGameUserSettings::LastUserConfirmedDesiredScreenWidth' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastUserConfirmedDesiredScreenHeight) == 0x0000D0, "Member 'UGameUserSettings::LastUserConfirmedDesiredScreenHeight' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastRecommendedScreenWidth) == 0x0000D4, "Member 'UGameUserSettings::LastRecommendedScreenWidth' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastRecommendedScreenHeight) == 0x0000D8, "Member 'UGameUserSettings::LastRecommendedScreenHeight' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastCPUBenchmarkResult) == 0x0000DC, "Member 'UGameUserSettings::LastCPUBenchmarkResult' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastGPUBenchmarkResult) == 0x0000E0, "Member 'UGameUserSettings::LastGPUBenchmarkResult' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastCPUBenchmarkSteps) == 0x0000E8, "Member 'UGameUserSettings::LastCPUBenchmarkSteps' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastGPUBenchmarkSteps) == 0x0000F8, "Member 'UGameUserSettings::LastGPUBenchmarkSteps' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, LastGPUBenchmarkMultiplier) == 0x000108, "Member 'UGameUserSettings::LastGPUBenchmarkMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, bUseHDRDisplayOutput) == 0x00010C, "Member 'UGameUserSettings::bUseHDRDisplayOutput' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, HDRDisplayOutputNits) == 0x000110, "Member 'UGameUserSettings::HDRDisplayOutputNits' has a wrong offset!"); \ +static_assert(offsetof(UGameUserSettings, OnGameUserSettingsUINeedsUpdate) == 0x000138, "Member 'UGameUserSettings::OnGameUserSettingsUINeedsUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScriptViewportClient \ +static_assert(alignof(UScriptViewportClient) == 0x000008, "Wrong alignment on UScriptViewportClient"); \ +static_assert(sizeof(UScriptViewportClient) == 0x000038, "Wrong size on UScriptViewportClient"); \ + +#define DUMPER7_ASSERTS_GameViewportClient_SetConsoleTarget \ +static_assert(alignof(GameViewportClient_SetConsoleTarget) == 0x000004, "Wrong alignment on GameViewportClient_SetConsoleTarget"); \ +static_assert(sizeof(GameViewportClient_SetConsoleTarget) == 0x000004, "Wrong size on GameViewportClient_SetConsoleTarget"); \ +static_assert(offsetof(GameViewportClient_SetConsoleTarget, PlayerIndex) == 0x000000, "Member 'GameViewportClient_SetConsoleTarget::PlayerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameViewportClient \ +static_assert(alignof(UGameViewportClient) == 0x000008, "Wrong alignment on UGameViewportClient"); \ +static_assert(sizeof(UGameViewportClient) == 0x0003B0, "Wrong size on UGameViewportClient"); \ +static_assert(offsetof(UGameViewportClient, ViewportConsole) == 0x000040, "Member 'UGameViewportClient::ViewportConsole' has a wrong offset!"); \ +static_assert(offsetof(UGameViewportClient, DebugProperties) == 0x000048, "Member 'UGameViewportClient::DebugProperties' has a wrong offset!"); \ +static_assert(offsetof(UGameViewportClient, MaxSplitscreenPlayers) == 0x000068, "Member 'UGameViewportClient::MaxSplitscreenPlayers' has a wrong offset!"); \ +static_assert(offsetof(UGameViewportClient, World) == 0x000078, "Member 'UGameViewportClient::World' has a wrong offset!"); \ +static_assert(offsetof(UGameViewportClient, GameInstance) == 0x000080, "Member 'UGameViewportClient::GameInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHLODEngineSubsystem \ +static_assert(alignof(UHLODEngineSubsystem) == 0x000008, "Wrong alignment on UHLODEngineSubsystem"); \ +static_assert(sizeof(UHLODEngineSubsystem) == 0x000030, "Wrong size on UHLODEngineSubsystem"); \ + +#define DUMPER7_ASSERTS_UHLODProxyDesc \ +static_assert(alignof(UHLODProxyDesc) == 0x000008, "Wrong alignment on UHLODProxyDesc"); \ +static_assert(sizeof(UHLODProxyDesc) == 0x000028, "Wrong size on UHLODProxyDesc"); \ + +#define DUMPER7_ASSERTS_IImportantToggleSettingInterface \ +static_assert(alignof(IImportantToggleSettingInterface) == 0x000001, "Wrong alignment on IImportantToggleSettingInterface"); \ +static_assert(sizeof(IImportantToggleSettingInterface) == 0x000001, "Wrong size on IImportantToggleSettingInterface"); \ + +#define DUMPER7_ASSERTS_UInputActionDelegateBinding \ +static_assert(alignof(UInputActionDelegateBinding) == 0x000008, "Wrong alignment on UInputActionDelegateBinding"); \ +static_assert(sizeof(UInputActionDelegateBinding) == 0x000038, "Wrong size on UInputActionDelegateBinding"); \ +static_assert(offsetof(UInputActionDelegateBinding, InputActionDelegateBindings) == 0x000028, "Member 'UInputActionDelegateBinding::InputActionDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputAxisDelegateBinding \ +static_assert(alignof(UInputAxisDelegateBinding) == 0x000008, "Wrong alignment on UInputAxisDelegateBinding"); \ +static_assert(sizeof(UInputAxisDelegateBinding) == 0x000038, "Wrong size on UInputAxisDelegateBinding"); \ +static_assert(offsetof(UInputAxisDelegateBinding, InputAxisDelegateBindings) == 0x000028, "Member 'UInputAxisDelegateBinding::InputAxisDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_EqualEqual_InputDeviceId \ +static_assert(alignof(InputDeviceLibrary_EqualEqual_InputDeviceId) == 0x000004, "Wrong alignment on InputDeviceLibrary_EqualEqual_InputDeviceId"); \ +static_assert(sizeof(InputDeviceLibrary_EqualEqual_InputDeviceId) == 0x00000C, "Wrong size on InputDeviceLibrary_EqualEqual_InputDeviceId"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_InputDeviceId, A) == 0x000000, "Member 'InputDeviceLibrary_EqualEqual_InputDeviceId::A' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_InputDeviceId, B) == 0x000004, "Member 'InputDeviceLibrary_EqualEqual_InputDeviceId::B' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_InputDeviceId, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_EqualEqual_InputDeviceId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_EqualEqual_PlatformUserId \ +static_assert(alignof(InputDeviceLibrary_EqualEqual_PlatformUserId) == 0x000004, "Wrong alignment on InputDeviceLibrary_EqualEqual_PlatformUserId"); \ +static_assert(sizeof(InputDeviceLibrary_EqualEqual_PlatformUserId) == 0x00000C, "Wrong size on InputDeviceLibrary_EqualEqual_PlatformUserId"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_PlatformUserId, A) == 0x000000, "Member 'InputDeviceLibrary_EqualEqual_PlatformUserId::A' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_PlatformUserId, B) == 0x000004, "Member 'InputDeviceLibrary_EqualEqual_PlatformUserId::B' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_EqualEqual_PlatformUserId, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_EqualEqual_PlatformUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetAllActiveUsers \ +static_assert(alignof(InputDeviceLibrary_GetAllActiveUsers) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetAllActiveUsers"); \ +static_assert(sizeof(InputDeviceLibrary_GetAllActiveUsers) == 0x000018, "Wrong size on InputDeviceLibrary_GetAllActiveUsers"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllActiveUsers, OutUsers) == 0x000000, "Member 'InputDeviceLibrary_GetAllActiveUsers::OutUsers' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllActiveUsers, ReturnValue) == 0x000010, "Member 'InputDeviceLibrary_GetAllActiveUsers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetAllConnectedInputDevices \ +static_assert(alignof(InputDeviceLibrary_GetAllConnectedInputDevices) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetAllConnectedInputDevices"); \ +static_assert(sizeof(InputDeviceLibrary_GetAllConnectedInputDevices) == 0x000018, "Wrong size on InputDeviceLibrary_GetAllConnectedInputDevices"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllConnectedInputDevices, OutInputDevices) == 0x000000, "Member 'InputDeviceLibrary_GetAllConnectedInputDevices::OutInputDevices' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllConnectedInputDevices, ReturnValue) == 0x000010, "Member 'InputDeviceLibrary_GetAllConnectedInputDevices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetAllInputDevices \ +static_assert(alignof(InputDeviceLibrary_GetAllInputDevices) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetAllInputDevices"); \ +static_assert(sizeof(InputDeviceLibrary_GetAllInputDevices) == 0x000018, "Wrong size on InputDeviceLibrary_GetAllInputDevices"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllInputDevices, OutInputDevices) == 0x000000, "Member 'InputDeviceLibrary_GetAllInputDevices::OutInputDevices' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllInputDevices, ReturnValue) == 0x000010, "Member 'InputDeviceLibrary_GetAllInputDevices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetAllInputDevicesForUser \ +static_assert(alignof(InputDeviceLibrary_GetAllInputDevicesForUser) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetAllInputDevicesForUser"); \ +static_assert(sizeof(InputDeviceLibrary_GetAllInputDevicesForUser) == 0x000020, "Wrong size on InputDeviceLibrary_GetAllInputDevicesForUser"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllInputDevicesForUser, UserId) == 0x000000, "Member 'InputDeviceLibrary_GetAllInputDevicesForUser::UserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllInputDevicesForUser, OutInputDevices) == 0x000008, "Member 'InputDeviceLibrary_GetAllInputDevicesForUser::OutInputDevices' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetAllInputDevicesForUser, ReturnValue) == 0x000018, "Member 'InputDeviceLibrary_GetAllInputDevicesForUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetDefaultInputDevice \ +static_assert(alignof(InputDeviceLibrary_GetDefaultInputDevice) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetDefaultInputDevice"); \ +static_assert(sizeof(InputDeviceLibrary_GetDefaultInputDevice) == 0x000004, "Wrong size on InputDeviceLibrary_GetDefaultInputDevice"); \ +static_assert(offsetof(InputDeviceLibrary_GetDefaultInputDevice, ReturnValue) == 0x000000, "Member 'InputDeviceLibrary_GetDefaultInputDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetInputDeviceConnectionState \ +static_assert(alignof(InputDeviceLibrary_GetInputDeviceConnectionState) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetInputDeviceConnectionState"); \ +static_assert(sizeof(InputDeviceLibrary_GetInputDeviceConnectionState) == 0x000008, "Wrong size on InputDeviceLibrary_GetInputDeviceConnectionState"); \ +static_assert(offsetof(InputDeviceLibrary_GetInputDeviceConnectionState, DeviceID) == 0x000000, "Member 'InputDeviceLibrary_GetInputDeviceConnectionState::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetInputDeviceConnectionState, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_GetInputDeviceConnectionState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetPlayerControllerFromInputDevice \ +static_assert(alignof(InputDeviceLibrary_GetPlayerControllerFromInputDevice) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetPlayerControllerFromInputDevice"); \ +static_assert(sizeof(InputDeviceLibrary_GetPlayerControllerFromInputDevice) == 0x000010, "Wrong size on InputDeviceLibrary_GetPlayerControllerFromInputDevice"); \ +static_assert(offsetof(InputDeviceLibrary_GetPlayerControllerFromInputDevice, DeviceID) == 0x000000, "Member 'InputDeviceLibrary_GetPlayerControllerFromInputDevice::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetPlayerControllerFromInputDevice, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_GetPlayerControllerFromInputDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetPlayerControllerFromPlatformUser \ +static_assert(alignof(InputDeviceLibrary_GetPlayerControllerFromPlatformUser) == 0x000008, "Wrong alignment on InputDeviceLibrary_GetPlayerControllerFromPlatformUser"); \ +static_assert(sizeof(InputDeviceLibrary_GetPlayerControllerFromPlatformUser) == 0x000010, "Wrong size on InputDeviceLibrary_GetPlayerControllerFromPlatformUser"); \ +static_assert(offsetof(InputDeviceLibrary_GetPlayerControllerFromPlatformUser, UserId) == 0x000000, "Member 'InputDeviceLibrary_GetPlayerControllerFromPlatformUser::UserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetPlayerControllerFromPlatformUser, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_GetPlayerControllerFromPlatformUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetPrimaryInputDeviceForUser \ +static_assert(alignof(InputDeviceLibrary_GetPrimaryInputDeviceForUser) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetPrimaryInputDeviceForUser"); \ +static_assert(sizeof(InputDeviceLibrary_GetPrimaryInputDeviceForUser) == 0x000008, "Wrong size on InputDeviceLibrary_GetPrimaryInputDeviceForUser"); \ +static_assert(offsetof(InputDeviceLibrary_GetPrimaryInputDeviceForUser, UserId) == 0x000000, "Member 'InputDeviceLibrary_GetPrimaryInputDeviceForUser::UserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetPrimaryInputDeviceForUser, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_GetPrimaryInputDeviceForUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetPrimaryPlatformUser \ +static_assert(alignof(InputDeviceLibrary_GetPrimaryPlatformUser) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetPrimaryPlatformUser"); \ +static_assert(sizeof(InputDeviceLibrary_GetPrimaryPlatformUser) == 0x000004, "Wrong size on InputDeviceLibrary_GetPrimaryPlatformUser"); \ +static_assert(offsetof(InputDeviceLibrary_GetPrimaryPlatformUser, ReturnValue) == 0x000000, "Member 'InputDeviceLibrary_GetPrimaryPlatformUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetUserForInputDevice \ +static_assert(alignof(InputDeviceLibrary_GetUserForInputDevice) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetUserForInputDevice"); \ +static_assert(sizeof(InputDeviceLibrary_GetUserForInputDevice) == 0x000008, "Wrong size on InputDeviceLibrary_GetUserForInputDevice"); \ +static_assert(offsetof(InputDeviceLibrary_GetUserForInputDevice, DeviceID) == 0x000000, "Member 'InputDeviceLibrary_GetUserForInputDevice::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_GetUserForInputDevice, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_GetUserForInputDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_GetUserForUnpairedInputDevices \ +static_assert(alignof(InputDeviceLibrary_GetUserForUnpairedInputDevices) == 0x000004, "Wrong alignment on InputDeviceLibrary_GetUserForUnpairedInputDevices"); \ +static_assert(sizeof(InputDeviceLibrary_GetUserForUnpairedInputDevices) == 0x000004, "Wrong size on InputDeviceLibrary_GetUserForUnpairedInputDevices"); \ +static_assert(offsetof(InputDeviceLibrary_GetUserForUnpairedInputDevices, ReturnValue) == 0x000000, "Member 'InputDeviceLibrary_GetUserForUnpairedInputDevices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_InputDeviceId_None \ +static_assert(alignof(InputDeviceLibrary_InputDeviceId_None) == 0x000004, "Wrong alignment on InputDeviceLibrary_InputDeviceId_None"); \ +static_assert(sizeof(InputDeviceLibrary_InputDeviceId_None) == 0x000004, "Wrong size on InputDeviceLibrary_InputDeviceId_None"); \ +static_assert(offsetof(InputDeviceLibrary_InputDeviceId_None, ReturnValue) == 0x000000, "Member 'InputDeviceLibrary_InputDeviceId_None::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_IsDevicePropertyHandleValid \ +static_assert(alignof(InputDeviceLibrary_IsDevicePropertyHandleValid) == 0x000004, "Wrong alignment on InputDeviceLibrary_IsDevicePropertyHandleValid"); \ +static_assert(sizeof(InputDeviceLibrary_IsDevicePropertyHandleValid) == 0x000008, "Wrong size on InputDeviceLibrary_IsDevicePropertyHandleValid"); \ +static_assert(offsetof(InputDeviceLibrary_IsDevicePropertyHandleValid, InHandle) == 0x000000, "Member 'InputDeviceLibrary_IsDevicePropertyHandleValid::InHandle' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_IsDevicePropertyHandleValid, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_IsDevicePropertyHandleValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser \ +static_assert(alignof(InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser) == 0x000004, "Wrong alignment on InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser"); \ +static_assert(sizeof(InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser) == 0x000008, "Wrong size on InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser"); \ +static_assert(offsetof(InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser, InputDevice) == 0x000000, "Member 'InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser::InputDevice' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_IsUnpairedUserId \ +static_assert(alignof(InputDeviceLibrary_IsUnpairedUserId) == 0x000004, "Wrong alignment on InputDeviceLibrary_IsUnpairedUserId"); \ +static_assert(sizeof(InputDeviceLibrary_IsUnpairedUserId) == 0x000008, "Wrong size on InputDeviceLibrary_IsUnpairedUserId"); \ +static_assert(offsetof(InputDeviceLibrary_IsUnpairedUserId, PlatformId) == 0x000000, "Member 'InputDeviceLibrary_IsUnpairedUserId::PlatformId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_IsUnpairedUserId, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_IsUnpairedUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_IsValidInputDevice \ +static_assert(alignof(InputDeviceLibrary_IsValidInputDevice) == 0x000004, "Wrong alignment on InputDeviceLibrary_IsValidInputDevice"); \ +static_assert(sizeof(InputDeviceLibrary_IsValidInputDevice) == 0x000008, "Wrong size on InputDeviceLibrary_IsValidInputDevice"); \ +static_assert(offsetof(InputDeviceLibrary_IsValidInputDevice, DeviceID) == 0x000000, "Member 'InputDeviceLibrary_IsValidInputDevice::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_IsValidInputDevice, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_IsValidInputDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_IsValidPlatformId \ +static_assert(alignof(InputDeviceLibrary_IsValidPlatformId) == 0x000004, "Wrong alignment on InputDeviceLibrary_IsValidPlatformId"); \ +static_assert(sizeof(InputDeviceLibrary_IsValidPlatformId) == 0x000008, "Wrong size on InputDeviceLibrary_IsValidPlatformId"); \ +static_assert(offsetof(InputDeviceLibrary_IsValidPlatformId, UserId) == 0x000000, "Member 'InputDeviceLibrary_IsValidPlatformId::UserId' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_IsValidPlatformId, ReturnValue) == 0x000004, "Member 'InputDeviceLibrary_IsValidPlatformId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_NotEqual_InputDeviceId \ +static_assert(alignof(InputDeviceLibrary_NotEqual_InputDeviceId) == 0x000004, "Wrong alignment on InputDeviceLibrary_NotEqual_InputDeviceId"); \ +static_assert(sizeof(InputDeviceLibrary_NotEqual_InputDeviceId) == 0x00000C, "Wrong size on InputDeviceLibrary_NotEqual_InputDeviceId"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_InputDeviceId, A) == 0x000000, "Member 'InputDeviceLibrary_NotEqual_InputDeviceId::A' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_InputDeviceId, B) == 0x000004, "Member 'InputDeviceLibrary_NotEqual_InputDeviceId::B' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_InputDeviceId, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_NotEqual_InputDeviceId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_NotEqual_PlatformUserId \ +static_assert(alignof(InputDeviceLibrary_NotEqual_PlatformUserId) == 0x000004, "Wrong alignment on InputDeviceLibrary_NotEqual_PlatformUserId"); \ +static_assert(sizeof(InputDeviceLibrary_NotEqual_PlatformUserId) == 0x00000C, "Wrong size on InputDeviceLibrary_NotEqual_PlatformUserId"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_PlatformUserId, A) == 0x000000, "Member 'InputDeviceLibrary_NotEqual_PlatformUserId::A' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_PlatformUserId, B) == 0x000004, "Member 'InputDeviceLibrary_NotEqual_PlatformUserId::B' has a wrong offset!"); \ +static_assert(offsetof(InputDeviceLibrary_NotEqual_PlatformUserId, ReturnValue) == 0x000008, "Member 'InputDeviceLibrary_NotEqual_PlatformUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputDeviceLibrary_PlatformUserId_None \ +static_assert(alignof(InputDeviceLibrary_PlatformUserId_None) == 0x000004, "Wrong alignment on InputDeviceLibrary_PlatformUserId_None"); \ +static_assert(sizeof(InputDeviceLibrary_PlatformUserId_None) == 0x000004, "Wrong size on InputDeviceLibrary_PlatformUserId_None"); \ +static_assert(offsetof(InputDeviceLibrary_PlatformUserId_None, ReturnValue) == 0x000000, "Member 'InputDeviceLibrary_PlatformUserId_None::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDeviceLibrary \ +static_assert(alignof(UInputDeviceLibrary) == 0x000008, "Wrong alignment on UInputDeviceLibrary"); \ +static_assert(sizeof(UInputDeviceLibrary) == 0x000028, "Wrong size on UInputDeviceLibrary"); \ + +#define DUMPER7_ASSERTS_UInputKeyDelegateBinding \ +static_assert(alignof(UInputKeyDelegateBinding) == 0x000008, "Wrong alignment on UInputKeyDelegateBinding"); \ +static_assert(sizeof(UInputKeyDelegateBinding) == 0x000038, "Wrong size on UInputKeyDelegateBinding"); \ +static_assert(offsetof(UInputKeyDelegateBinding, InputKeyDelegateBindings) == 0x000028, "Member 'UInputKeyDelegateBinding::InputKeyDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTouchDelegateBinding \ +static_assert(alignof(UInputTouchDelegateBinding) == 0x000008, "Wrong alignment on UInputTouchDelegateBinding"); \ +static_assert(sizeof(UInputTouchDelegateBinding) == 0x000038, "Wrong size on UInputTouchDelegateBinding"); \ +static_assert(offsetof(UInputTouchDelegateBinding, InputTouchDelegateBindings) == 0x000028, "Member 'UInputTouchDelegateBinding::InputTouchDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInstancedPlacemenClientSettings \ +static_assert(alignof(UInstancedPlacemenClientSettings) == 0x000008, "Wrong alignment on UInstancedPlacemenClientSettings"); \ +static_assert(sizeof(UInstancedPlacemenClientSettings) == 0x000028, "Wrong size on UInstancedPlacemenClientSettings"); \ + +#define DUMPER7_ASSERTS_AInstancedPlacementPartitionActor \ +static_assert(alignof(AInstancedPlacementPartitionActor) == 0x000008, "Wrong alignment on AInstancedPlacementPartitionActor"); \ +static_assert(sizeof(AInstancedPlacementPartitionActor) == 0x0002A8, "Wrong size on AInstancedPlacementPartitionActor"); \ + +#define DUMPER7_ASSERTS_UStringTable \ +static_assert(alignof(UStringTable) == 0x000008, "Wrong alignment on UStringTable"); \ +static_assert(sizeof(UStringTable) == 0x000040, "Wrong size on UStringTable"); \ + +#define DUMPER7_ASSERTS_UIntSerialization \ +static_assert(alignof(UIntSerialization) == 0x000008, "Wrong alignment on UIntSerialization"); \ +static_assert(sizeof(UIntSerialization) == 0x000050, "Wrong size on UIntSerialization"); \ +static_assert(offsetof(UIntSerialization, UnsignedInt16Variable) == 0x000028, "Member 'UIntSerialization::UnsignedInt16Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, UnsignedInt32Variable) == 0x00002C, "Member 'UIntSerialization::UnsignedInt32Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, UnsignedInt64Variable) == 0x000030, "Member 'UIntSerialization::UnsignedInt64Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, SignedInt8Variable) == 0x000038, "Member 'UIntSerialization::SignedInt8Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, SignedInt16Variable) == 0x00003A, "Member 'UIntSerialization::SignedInt16Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, SignedInt64Variable) == 0x000040, "Member 'UIntSerialization::SignedInt64Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, UnsignedInt8Variable) == 0x000048, "Member 'UIntSerialization::UnsignedInt8Variable' has a wrong offset!"); \ +static_assert(offsetof(UIntSerialization, SignedInt32Variable) == 0x00004C, "Member 'UIntSerialization::SignedInt32Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Add \ +static_assert(alignof(KismetArrayLibrary_Array_Add) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Add"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Add) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Add"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Add, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Add::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Add, NewItem) == 0x000010, "Member 'KismetArrayLibrary_Array_Add::NewItem' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Add, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_Add::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_AddUnique \ +static_assert(alignof(KismetArrayLibrary_Array_AddUnique) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_AddUnique"); \ +static_assert(sizeof(KismetArrayLibrary_Array_AddUnique) == 0x000018, "Wrong size on KismetArrayLibrary_Array_AddUnique"); \ +static_assert(offsetof(KismetArrayLibrary_Array_AddUnique, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_AddUnique::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_AddUnique, NewItem) == 0x000010, "Member 'KismetArrayLibrary_Array_AddUnique::NewItem' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_AddUnique, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_AddUnique::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Append \ +static_assert(alignof(KismetArrayLibrary_Array_Append) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Append"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Append) == 0x000020, "Wrong size on KismetArrayLibrary_Array_Append"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Append, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Append::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Append, SourceArray) == 0x000010, "Member 'KismetArrayLibrary_Array_Append::SourceArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Clear \ +static_assert(alignof(KismetArrayLibrary_Array_Clear) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Clear"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Clear) == 0x000010, "Wrong size on KismetArrayLibrary_Array_Clear"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Clear, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Clear::TargetArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Contains \ +static_assert(alignof(KismetArrayLibrary_Array_Contains) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Contains"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Contains) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Contains"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Contains, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Contains::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Contains, ItemToFind) == 0x000010, "Member 'KismetArrayLibrary_Array_Contains::ItemToFind' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Contains, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_Contains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Find \ +static_assert(alignof(KismetArrayLibrary_Array_Find) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Find"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Find) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Find"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Find, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Find::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Find, ItemToFind) == 0x000010, "Member 'KismetArrayLibrary_Array_Find::ItemToFind' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Find, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_Find::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Get \ +static_assert(alignof(KismetArrayLibrary_Array_Get) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Get"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Get) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Get"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Get, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Get::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Get, Index_0) == 0x000010, "Member 'KismetArrayLibrary_Array_Get::Index_0' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Get, Item) == 0x000014, "Member 'KismetArrayLibrary_Array_Get::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Identical \ +static_assert(alignof(KismetArrayLibrary_Array_Identical) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Identical"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Identical) == 0x000028, "Wrong size on KismetArrayLibrary_Array_Identical"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Identical, ArrayA) == 0x000000, "Member 'KismetArrayLibrary_Array_Identical::ArrayA' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Identical, ArrayB) == 0x000010, "Member 'KismetArrayLibrary_Array_Identical::ArrayB' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Identical, ReturnValue) == 0x000020, "Member 'KismetArrayLibrary_Array_Identical::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Insert \ +static_assert(alignof(KismetArrayLibrary_Array_Insert) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Insert"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Insert) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Insert"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Insert, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Insert::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Insert, NewItem) == 0x000010, "Member 'KismetArrayLibrary_Array_Insert::NewItem' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Insert, Index_0) == 0x000014, "Member 'KismetArrayLibrary_Array_Insert::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_IsEmpty \ +static_assert(alignof(KismetArrayLibrary_Array_IsEmpty) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_IsEmpty"); \ +static_assert(sizeof(KismetArrayLibrary_Array_IsEmpty) == 0x000018, "Wrong size on KismetArrayLibrary_Array_IsEmpty"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsEmpty, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_IsEmpty::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsEmpty, ReturnValue) == 0x000010, "Member 'KismetArrayLibrary_Array_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_IsNotEmpty \ +static_assert(alignof(KismetArrayLibrary_Array_IsNotEmpty) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_IsNotEmpty"); \ +static_assert(sizeof(KismetArrayLibrary_Array_IsNotEmpty) == 0x000018, "Wrong size on KismetArrayLibrary_Array_IsNotEmpty"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsNotEmpty, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_IsNotEmpty::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsNotEmpty, ReturnValue) == 0x000010, "Member 'KismetArrayLibrary_Array_IsNotEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_IsValidIndex \ +static_assert(alignof(KismetArrayLibrary_Array_IsValidIndex) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_IsValidIndex"); \ +static_assert(sizeof(KismetArrayLibrary_Array_IsValidIndex) == 0x000018, "Wrong size on KismetArrayLibrary_Array_IsValidIndex"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsValidIndex, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_IsValidIndex::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsValidIndex, IndexToTest) == 0x000010, "Member 'KismetArrayLibrary_Array_IsValidIndex::IndexToTest' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_IsValidIndex, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_IsValidIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_LastIndex \ +static_assert(alignof(KismetArrayLibrary_Array_LastIndex) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_LastIndex"); \ +static_assert(sizeof(KismetArrayLibrary_Array_LastIndex) == 0x000018, "Wrong size on KismetArrayLibrary_Array_LastIndex"); \ +static_assert(offsetof(KismetArrayLibrary_Array_LastIndex, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_LastIndex::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_LastIndex, ReturnValue) == 0x000010, "Member 'KismetArrayLibrary_Array_LastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Length \ +static_assert(alignof(KismetArrayLibrary_Array_Length) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Length"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Length) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Length"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Length, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Length::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Length, ReturnValue) == 0x000010, "Member 'KismetArrayLibrary_Array_Length::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Random \ +static_assert(alignof(KismetArrayLibrary_Array_Random) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Random"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Random) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Random"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Random, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Random::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Random, OutItem) == 0x000010, "Member 'KismetArrayLibrary_Array_Random::OutItem' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Random, OutIndex) == 0x000014, "Member 'KismetArrayLibrary_Array_Random::OutIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_RandomFromStream \ +static_assert(alignof(KismetArrayLibrary_Array_RandomFromStream) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_RandomFromStream"); \ +static_assert(sizeof(KismetArrayLibrary_Array_RandomFromStream) == 0x000020, "Wrong size on KismetArrayLibrary_Array_RandomFromStream"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RandomFromStream, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_RandomFromStream::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RandomFromStream, RandomStream) == 0x000010, "Member 'KismetArrayLibrary_Array_RandomFromStream::RandomStream' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RandomFromStream, OutItem) == 0x000018, "Member 'KismetArrayLibrary_Array_RandomFromStream::OutItem' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RandomFromStream, OutIndex) == 0x00001C, "Member 'KismetArrayLibrary_Array_RandomFromStream::OutIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Remove \ +static_assert(alignof(KismetArrayLibrary_Array_Remove) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Remove"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Remove) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Remove"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Remove, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Remove::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Remove, IndexToRemove) == 0x000010, "Member 'KismetArrayLibrary_Array_Remove::IndexToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_RemoveItem \ +static_assert(alignof(KismetArrayLibrary_Array_RemoveItem) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_RemoveItem"); \ +static_assert(sizeof(KismetArrayLibrary_Array_RemoveItem) == 0x000018, "Wrong size on KismetArrayLibrary_Array_RemoveItem"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RemoveItem, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_RemoveItem::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RemoveItem, Item) == 0x000010, "Member 'KismetArrayLibrary_Array_RemoveItem::Item' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_RemoveItem, ReturnValue) == 0x000014, "Member 'KismetArrayLibrary_Array_RemoveItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Resize \ +static_assert(alignof(KismetArrayLibrary_Array_Resize) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Resize"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Resize) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Resize"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Resize, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Resize::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Resize, Size) == 0x000010, "Member 'KismetArrayLibrary_Array_Resize::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Reverse \ +static_assert(alignof(KismetArrayLibrary_Array_Reverse) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Reverse"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Reverse) == 0x000010, "Wrong size on KismetArrayLibrary_Array_Reverse"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Reverse, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Reverse::TargetArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Set \ +static_assert(alignof(KismetArrayLibrary_Array_Set) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Set"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Set) == 0x000020, "Wrong size on KismetArrayLibrary_Array_Set"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Set, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Set::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Set, Index_0) == 0x000010, "Member 'KismetArrayLibrary_Array_Set::Index_0' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Set, Item) == 0x000014, "Member 'KismetArrayLibrary_Array_Set::Item' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Set, bSizeToFit) == 0x000018, "Member 'KismetArrayLibrary_Array_Set::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Shuffle \ +static_assert(alignof(KismetArrayLibrary_Array_Shuffle) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Shuffle"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Shuffle) == 0x000010, "Wrong size on KismetArrayLibrary_Array_Shuffle"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Shuffle, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Shuffle::TargetArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_ShuffleFromStream \ +static_assert(alignof(KismetArrayLibrary_Array_ShuffleFromStream) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_ShuffleFromStream"); \ +static_assert(sizeof(KismetArrayLibrary_Array_ShuffleFromStream) == 0x000018, "Wrong size on KismetArrayLibrary_Array_ShuffleFromStream"); \ +static_assert(offsetof(KismetArrayLibrary_Array_ShuffleFromStream, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_ShuffleFromStream::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_ShuffleFromStream, RandomStream) == 0x000010, "Member 'KismetArrayLibrary_Array_ShuffleFromStream::RandomStream' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_Array_Swap \ +static_assert(alignof(KismetArrayLibrary_Array_Swap) == 0x000008, "Wrong alignment on KismetArrayLibrary_Array_Swap"); \ +static_assert(sizeof(KismetArrayLibrary_Array_Swap) == 0x000018, "Wrong size on KismetArrayLibrary_Array_Swap"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Swap, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_Array_Swap::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Swap, FirstIndex) == 0x000010, "Member 'KismetArrayLibrary_Array_Swap::FirstIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_Array_Swap, SecondIndex) == 0x000014, "Member 'KismetArrayLibrary_Array_Swap::SecondIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_FilterArray \ +static_assert(alignof(KismetArrayLibrary_FilterArray) == 0x000008, "Wrong alignment on KismetArrayLibrary_FilterArray"); \ +static_assert(sizeof(KismetArrayLibrary_FilterArray) == 0x000028, "Wrong size on KismetArrayLibrary_FilterArray"); \ +static_assert(offsetof(KismetArrayLibrary_FilterArray, TargetArray) == 0x000000, "Member 'KismetArrayLibrary_FilterArray::TargetArray' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_FilterArray, FilterClass) == 0x000010, "Member 'KismetArrayLibrary_FilterArray::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_FilterArray, FilteredArray) == 0x000018, "Member 'KismetArrayLibrary_FilterArray::FilteredArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetArrayLibrary_SetArrayPropertyByName \ +static_assert(alignof(KismetArrayLibrary_SetArrayPropertyByName) == 0x000008, "Wrong alignment on KismetArrayLibrary_SetArrayPropertyByName"); \ +static_assert(sizeof(KismetArrayLibrary_SetArrayPropertyByName) == 0x000020, "Wrong size on KismetArrayLibrary_SetArrayPropertyByName"); \ +static_assert(offsetof(KismetArrayLibrary_SetArrayPropertyByName, Object) == 0x000000, "Member 'KismetArrayLibrary_SetArrayPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_SetArrayPropertyByName, PropertyName) == 0x000008, "Member 'KismetArrayLibrary_SetArrayPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetArrayLibrary_SetArrayPropertyByName, Value) == 0x000010, "Member 'KismetArrayLibrary_SetArrayPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetArrayLibrary \ +static_assert(alignof(UKismetArrayLibrary) == 0x000008, "Wrong alignment on UKismetArrayLibrary"); \ +static_assert(sizeof(UKismetArrayLibrary) == 0x000028, "Wrong size on UKismetArrayLibrary"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_EqualEqual_InputChordInputChord \ +static_assert(alignof(KismetInputLibrary_EqualEqual_InputChordInputChord) == 0x000008, "Wrong alignment on KismetInputLibrary_EqualEqual_InputChordInputChord"); \ +static_assert(sizeof(KismetInputLibrary_EqualEqual_InputChordInputChord) == 0x000048, "Wrong size on KismetInputLibrary_EqualEqual_InputChordInputChord"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_InputChordInputChord, A) == 0x000000, "Member 'KismetInputLibrary_EqualEqual_InputChordInputChord::A' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_InputChordInputChord, B) == 0x000020, "Member 'KismetInputLibrary_EqualEqual_InputChordInputChord::B' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_InputChordInputChord, ReturnValue) == 0x000040, "Member 'KismetInputLibrary_EqualEqual_InputChordInputChord::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_EqualEqual_KeyKey \ +static_assert(alignof(KismetInputLibrary_EqualEqual_KeyKey) == 0x000008, "Wrong alignment on KismetInputLibrary_EqualEqual_KeyKey"); \ +static_assert(sizeof(KismetInputLibrary_EqualEqual_KeyKey) == 0x000038, "Wrong size on KismetInputLibrary_EqualEqual_KeyKey"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_KeyKey, A) == 0x000000, "Member 'KismetInputLibrary_EqualEqual_KeyKey::A' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_KeyKey, B) == 0x000018, "Member 'KismetInputLibrary_EqualEqual_KeyKey::B' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_EqualEqual_KeyKey, ReturnValue) == 0x000030, "Member 'KismetInputLibrary_EqualEqual_KeyKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_GetAnalogValue \ +static_assert(alignof(KismetInputLibrary_GetAnalogValue) == 0x000008, "Wrong alignment on KismetInputLibrary_GetAnalogValue"); \ +static_assert(sizeof(KismetInputLibrary_GetAnalogValue) == 0x000050, "Wrong size on KismetInputLibrary_GetAnalogValue"); \ +static_assert(offsetof(KismetInputLibrary_GetAnalogValue, Input) == 0x000000, "Member 'KismetInputLibrary_GetAnalogValue::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_GetAnalogValue, ReturnValue) == 0x000048, "Member 'KismetInputLibrary_GetAnalogValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_GetKey \ +static_assert(alignof(KismetInputLibrary_GetKey) == 0x000008, "Wrong alignment on KismetInputLibrary_GetKey"); \ +static_assert(sizeof(KismetInputLibrary_GetKey) == 0x000058, "Wrong size on KismetInputLibrary_GetKey"); \ +static_assert(offsetof(KismetInputLibrary_GetKey, Input) == 0x000000, "Member 'KismetInputLibrary_GetKey::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_GetKey, ReturnValue) == 0x000040, "Member 'KismetInputLibrary_GetKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_GetModifierKeysState \ +static_assert(alignof(KismetInputLibrary_GetModifierKeysState) == 0x000001, "Wrong alignment on KismetInputLibrary_GetModifierKeysState"); \ +static_assert(sizeof(KismetInputLibrary_GetModifierKeysState) == 0x000001, "Wrong size on KismetInputLibrary_GetModifierKeysState"); \ +static_assert(offsetof(KismetInputLibrary_GetModifierKeysState, ReturnValue) == 0x000000, "Member 'KismetInputLibrary_GetModifierKeysState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_GetUserIndex \ +static_assert(alignof(KismetInputLibrary_GetUserIndex) == 0x000008, "Wrong alignment on KismetInputLibrary_GetUserIndex"); \ +static_assert(sizeof(KismetInputLibrary_GetUserIndex) == 0x000048, "Wrong size on KismetInputLibrary_GetUserIndex"); \ +static_assert(offsetof(KismetInputLibrary_GetUserIndex, Input) == 0x000000, "Member 'KismetInputLibrary_GetUserIndex::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_GetUserIndex, ReturnValue) == 0x000040, "Member 'KismetInputLibrary_GetUserIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputChord_GetDisplayName \ +static_assert(alignof(KismetInputLibrary_InputChord_GetDisplayName) == 0x000008, "Wrong alignment on KismetInputLibrary_InputChord_GetDisplayName"); \ +static_assert(sizeof(KismetInputLibrary_InputChord_GetDisplayName) == 0x000038, "Wrong size on KismetInputLibrary_InputChord_GetDisplayName"); \ +static_assert(offsetof(KismetInputLibrary_InputChord_GetDisplayName, Key) == 0x000000, "Member 'KismetInputLibrary_InputChord_GetDisplayName::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputChord_GetDisplayName, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputChord_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsAltDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsAltDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsAltDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsAltDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsAltDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsAltDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsAltDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsAltDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsAltDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsCommandDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsCommandDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsCommandDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsCommandDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsCommandDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsCommandDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsCommandDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsCommandDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsCommandDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsControlDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsControlDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsControlDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsControlDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsControlDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsControlDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsControlDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsControlDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsControlDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsLeftAltDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsLeftAltDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsLeftAltDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsLeftAltDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsLeftAltDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftAltDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsLeftAltDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftAltDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsLeftAltDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsLeftCommandDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsLeftCommandDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsLeftCommandDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsLeftCommandDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsLeftCommandDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftCommandDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsLeftCommandDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftCommandDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsLeftCommandDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsLeftControlDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsLeftControlDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsLeftControlDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsLeftControlDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsLeftControlDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftControlDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsLeftControlDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftControlDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsLeftControlDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsLeftShiftDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsLeftShiftDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsLeftShiftDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsLeftShiftDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsLeftShiftDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftShiftDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsLeftShiftDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsLeftShiftDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsLeftShiftDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsRepeat \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsRepeat) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsRepeat"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsRepeat) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsRepeat"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRepeat, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsRepeat::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRepeat, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsRepeat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsRightAltDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsRightAltDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsRightAltDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsRightAltDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsRightAltDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightAltDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsRightAltDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightAltDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsRightAltDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsRightCommandDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsRightCommandDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsRightCommandDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsRightCommandDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsRightCommandDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightCommandDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsRightCommandDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightCommandDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsRightCommandDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsRightControlDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsRightControlDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsRightControlDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsRightControlDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsRightControlDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightControlDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsRightControlDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightControlDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsRightControlDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsRightShiftDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsRightShiftDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsRightShiftDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsRightShiftDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsRightShiftDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightShiftDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsRightShiftDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsRightShiftDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsRightShiftDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_InputEvent_IsShiftDown \ +static_assert(alignof(KismetInputLibrary_InputEvent_IsShiftDown) == 0x000008, "Wrong alignment on KismetInputLibrary_InputEvent_IsShiftDown"); \ +static_assert(sizeof(KismetInputLibrary_InputEvent_IsShiftDown) == 0x000028, "Wrong size on KismetInputLibrary_InputEvent_IsShiftDown"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsShiftDown, Input) == 0x000000, "Member 'KismetInputLibrary_InputEvent_IsShiftDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_InputEvent_IsShiftDown, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_InputEvent_IsShiftDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_GetDisplayName \ +static_assert(alignof(KismetInputLibrary_Key_GetDisplayName) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_GetDisplayName"); \ +static_assert(sizeof(KismetInputLibrary_Key_GetDisplayName) == 0x000038, "Wrong size on KismetInputLibrary_Key_GetDisplayName"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetDisplayName, Key) == 0x000000, "Member 'KismetInputLibrary_Key_GetDisplayName::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetDisplayName, bLongDisplayName) == 0x000018, "Member 'KismetInputLibrary_Key_GetDisplayName::bLongDisplayName' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetDisplayName, ReturnValue) == 0x000020, "Member 'KismetInputLibrary_Key_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_GetNavigationAction \ +static_assert(alignof(KismetInputLibrary_Key_GetNavigationAction) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_GetNavigationAction"); \ +static_assert(sizeof(KismetInputLibrary_Key_GetNavigationAction) == 0x000020, "Wrong size on KismetInputLibrary_Key_GetNavigationAction"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationAction, InKey) == 0x000000, "Member 'KismetInputLibrary_Key_GetNavigationAction::InKey' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationAction, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_GetNavigationAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_GetNavigationActionFromKey \ +static_assert(alignof(KismetInputLibrary_Key_GetNavigationActionFromKey) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_GetNavigationActionFromKey"); \ +static_assert(sizeof(KismetInputLibrary_Key_GetNavigationActionFromKey) == 0x000048, "Wrong size on KismetInputLibrary_Key_GetNavigationActionFromKey"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationActionFromKey, InKeyEvent) == 0x000000, "Member 'KismetInputLibrary_Key_GetNavigationActionFromKey::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationActionFromKey, ReturnValue) == 0x000040, "Member 'KismetInputLibrary_Key_GetNavigationActionFromKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_GetNavigationDirectionFromAnalog \ +static_assert(alignof(KismetInputLibrary_Key_GetNavigationDirectionFromAnalog) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_GetNavigationDirectionFromAnalog"); \ +static_assert(sizeof(KismetInputLibrary_Key_GetNavigationDirectionFromAnalog) == 0x000050, "Wrong size on KismetInputLibrary_Key_GetNavigationDirectionFromAnalog"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationDirectionFromAnalog, InAnalogEvent) == 0x000000, "Member 'KismetInputLibrary_Key_GetNavigationDirectionFromAnalog::InAnalogEvent' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationDirectionFromAnalog, ReturnValue) == 0x000048, "Member 'KismetInputLibrary_Key_GetNavigationDirectionFromAnalog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_GetNavigationDirectionFromKey \ +static_assert(alignof(KismetInputLibrary_Key_GetNavigationDirectionFromKey) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_GetNavigationDirectionFromKey"); \ +static_assert(sizeof(KismetInputLibrary_Key_GetNavigationDirectionFromKey) == 0x000048, "Wrong size on KismetInputLibrary_Key_GetNavigationDirectionFromKey"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationDirectionFromKey, InKeyEvent) == 0x000000, "Member 'KismetInputLibrary_Key_GetNavigationDirectionFromKey::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_GetNavigationDirectionFromKey, ReturnValue) == 0x000040, "Member 'KismetInputLibrary_Key_GetNavigationDirectionFromKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsAnalog \ +static_assert(alignof(KismetInputLibrary_Key_IsAnalog) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsAnalog"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsAnalog) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsAnalog"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAnalog, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsAnalog::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAnalog, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsAnalog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsAxis1D \ +static_assert(alignof(KismetInputLibrary_Key_IsAxis1D) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsAxis1D"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsAxis1D) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsAxis1D"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis1D, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsAxis1D::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis1D, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsAxis1D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsAxis2D \ +static_assert(alignof(KismetInputLibrary_Key_IsAxis2D) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsAxis2D"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsAxis2D) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsAxis2D"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis2D, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsAxis2D::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis2D, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsAxis2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsAxis3D \ +static_assert(alignof(KismetInputLibrary_Key_IsAxis3D) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsAxis3D"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsAxis3D) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsAxis3D"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis3D, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsAxis3D::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsAxis3D, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsAxis3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsButtonAxis \ +static_assert(alignof(KismetInputLibrary_Key_IsButtonAxis) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsButtonAxis"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsButtonAxis) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsButtonAxis"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsButtonAxis, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsButtonAxis::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsButtonAxis, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsButtonAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsDigital \ +static_assert(alignof(KismetInputLibrary_Key_IsDigital) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsDigital"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsDigital) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsDigital"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsDigital, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsDigital::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsDigital, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsDigital::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsGamepadKey \ +static_assert(alignof(KismetInputLibrary_Key_IsGamepadKey) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsGamepadKey"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsGamepadKey) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsGamepadKey"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsGamepadKey, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsGamepadKey::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsGamepadKey, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsGamepadKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsKeyboardKey \ +static_assert(alignof(KismetInputLibrary_Key_IsKeyboardKey) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsKeyboardKey"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsKeyboardKey) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsKeyboardKey"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsKeyboardKey, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsKeyboardKey::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsKeyboardKey, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsKeyboardKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsModifierKey \ +static_assert(alignof(KismetInputLibrary_Key_IsModifierKey) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsModifierKey"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsModifierKey) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsModifierKey"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsModifierKey, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsModifierKey::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsModifierKey, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsModifierKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsMouseButton \ +static_assert(alignof(KismetInputLibrary_Key_IsMouseButton) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsMouseButton"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsMouseButton) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsMouseButton"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsMouseButton, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsMouseButton::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsMouseButton, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsMouseButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsValid \ +static_assert(alignof(KismetInputLibrary_Key_IsValid) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsValid"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsValid) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsValid"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsValid, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsValid::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsValid, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_Key_IsVectorAxis \ +static_assert(alignof(KismetInputLibrary_Key_IsVectorAxis) == 0x000008, "Wrong alignment on KismetInputLibrary_Key_IsVectorAxis"); \ +static_assert(sizeof(KismetInputLibrary_Key_IsVectorAxis) == 0x000020, "Wrong size on KismetInputLibrary_Key_IsVectorAxis"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsVectorAxis, Key) == 0x000000, "Member 'KismetInputLibrary_Key_IsVectorAxis::Key' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_Key_IsVectorAxis, ReturnValue) == 0x000018, "Member 'KismetInputLibrary_Key_IsVectorAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_ModifierKeysState_IsAltDown \ +static_assert(alignof(KismetInputLibrary_ModifierKeysState_IsAltDown) == 0x000001, "Wrong alignment on KismetInputLibrary_ModifierKeysState_IsAltDown"); \ +static_assert(sizeof(KismetInputLibrary_ModifierKeysState_IsAltDown) == 0x000002, "Wrong size on KismetInputLibrary_ModifierKeysState_IsAltDown"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsAltDown, KeysState) == 0x000000, "Member 'KismetInputLibrary_ModifierKeysState_IsAltDown::KeysState' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsAltDown, ReturnValue) == 0x000001, "Member 'KismetInputLibrary_ModifierKeysState_IsAltDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_ModifierKeysState_IsCommandDown \ +static_assert(alignof(KismetInputLibrary_ModifierKeysState_IsCommandDown) == 0x000001, "Wrong alignment on KismetInputLibrary_ModifierKeysState_IsCommandDown"); \ +static_assert(sizeof(KismetInputLibrary_ModifierKeysState_IsCommandDown) == 0x000002, "Wrong size on KismetInputLibrary_ModifierKeysState_IsCommandDown"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsCommandDown, KeysState) == 0x000000, "Member 'KismetInputLibrary_ModifierKeysState_IsCommandDown::KeysState' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsCommandDown, ReturnValue) == 0x000001, "Member 'KismetInputLibrary_ModifierKeysState_IsCommandDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_ModifierKeysState_IsControlDown \ +static_assert(alignof(KismetInputLibrary_ModifierKeysState_IsControlDown) == 0x000001, "Wrong alignment on KismetInputLibrary_ModifierKeysState_IsControlDown"); \ +static_assert(sizeof(KismetInputLibrary_ModifierKeysState_IsControlDown) == 0x000002, "Wrong size on KismetInputLibrary_ModifierKeysState_IsControlDown"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsControlDown, KeysState) == 0x000000, "Member 'KismetInputLibrary_ModifierKeysState_IsControlDown::KeysState' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsControlDown, ReturnValue) == 0x000001, "Member 'KismetInputLibrary_ModifierKeysState_IsControlDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_ModifierKeysState_IsShiftDown \ +static_assert(alignof(KismetInputLibrary_ModifierKeysState_IsShiftDown) == 0x000001, "Wrong alignment on KismetInputLibrary_ModifierKeysState_IsShiftDown"); \ +static_assert(sizeof(KismetInputLibrary_ModifierKeysState_IsShiftDown) == 0x000002, "Wrong size on KismetInputLibrary_ModifierKeysState_IsShiftDown"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsShiftDown, KeysState) == 0x000000, "Member 'KismetInputLibrary_ModifierKeysState_IsShiftDown::KeysState' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_ModifierKeysState_IsShiftDown, ReturnValue) == 0x000001, "Member 'KismetInputLibrary_ModifierKeysState_IsShiftDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetCursorDelta \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetCursorDelta) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetCursorDelta"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetCursorDelta) == 0x000088, "Wrong size on KismetInputLibrary_PointerEvent_GetCursorDelta"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetCursorDelta, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetCursorDelta::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetCursorDelta, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetCursorDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetEffectingButton \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetEffectingButton) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetEffectingButton"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetEffectingButton) == 0x000090, "Wrong size on KismetInputLibrary_PointerEvent_GetEffectingButton"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetEffectingButton, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetEffectingButton::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetEffectingButton, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetEffectingButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetGestureDelta \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetGestureDelta) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetGestureDelta"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetGestureDelta) == 0x000088, "Wrong size on KismetInputLibrary_PointerEvent_GetGestureDelta"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetGestureDelta, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetGestureDelta::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetGestureDelta, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetGestureDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetGestureType \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetGestureType) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetGestureType"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetGestureType) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_GetGestureType"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetGestureType, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetGestureType::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetGestureType, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetGestureType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition) == 0x000088, "Wrong size on KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetPointerIndex \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetPointerIndex) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetPointerIndex"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetPointerIndex) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_GetPointerIndex"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetPointerIndex, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetPointerIndex::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetPointerIndex, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetPointerIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetScreenSpacePosition \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetScreenSpacePosition) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetScreenSpacePosition"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetScreenSpacePosition) == 0x000088, "Wrong size on KismetInputLibrary_PointerEvent_GetScreenSpacePosition"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetScreenSpacePosition, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetScreenSpacePosition::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetScreenSpacePosition, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetScreenSpacePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetTouchpadIndex \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetTouchpadIndex) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetTouchpadIndex"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetTouchpadIndex) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_GetTouchpadIndex"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetTouchpadIndex, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetTouchpadIndex::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetTouchpadIndex, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetTouchpadIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetUserIndex \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetUserIndex) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetUserIndex"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetUserIndex) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_GetUserIndex"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetUserIndex, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetUserIndex::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetUserIndex, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetUserIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_GetWheelDelta \ +static_assert(alignof(KismetInputLibrary_PointerEvent_GetWheelDelta) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_GetWheelDelta"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_GetWheelDelta) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_GetWheelDelta"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetWheelDelta, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_GetWheelDelta::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_GetWheelDelta, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_GetWheelDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_IsMouseButtonDown \ +static_assert(alignof(KismetInputLibrary_PointerEvent_IsMouseButtonDown) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_IsMouseButtonDown"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_IsMouseButtonDown) == 0x000098, "Wrong size on KismetInputLibrary_PointerEvent_IsMouseButtonDown"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_IsMouseButtonDown, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_IsMouseButtonDown::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_IsMouseButtonDown, MouseButton) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_IsMouseButtonDown::MouseButton' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_IsMouseButtonDown, ReturnValue) == 0x000090, "Member 'KismetInputLibrary_PointerEvent_IsMouseButtonDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInputLibrary_PointerEvent_IsTouchEvent \ +static_assert(alignof(KismetInputLibrary_PointerEvent_IsTouchEvent) == 0x000008, "Wrong alignment on KismetInputLibrary_PointerEvent_IsTouchEvent"); \ +static_assert(sizeof(KismetInputLibrary_PointerEvent_IsTouchEvent) == 0x000080, "Wrong size on KismetInputLibrary_PointerEvent_IsTouchEvent"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_IsTouchEvent, Input) == 0x000000, "Member 'KismetInputLibrary_PointerEvent_IsTouchEvent::Input' has a wrong offset!"); \ +static_assert(offsetof(KismetInputLibrary_PointerEvent_IsTouchEvent, ReturnValue) == 0x000078, "Member 'KismetInputLibrary_PointerEvent_IsTouchEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetInputLibrary \ +static_assert(alignof(UKismetInputLibrary) == 0x000008, "Wrong alignment on UKismetInputLibrary"); \ +static_assert(sizeof(UKismetInputLibrary) == 0x000028, "Wrong size on UKismetInputLibrary"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture \ +static_assert(alignof(KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture) == 0x000004, "Wrong alignment on KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture) == 0x00000C, "Wrong size on KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture, AssetGroup) == 0x000000, "Member 'KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture::AssetGroup' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture, SaveToConfig) == 0x000008, "Member 'KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture::SaveToConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetCultureDisplayName \ +static_assert(alignof(KismetInternationalizationLibrary_GetCultureDisplayName) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetCultureDisplayName"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetCultureDisplayName) == 0x000028, "Wrong size on KismetInternationalizationLibrary_GetCultureDisplayName"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCultureDisplayName, Culture) == 0x000000, "Member 'KismetInternationalizationLibrary_GetCultureDisplayName::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCultureDisplayName, Localized) == 0x000010, "Member 'KismetInternationalizationLibrary_GetCultureDisplayName::Localized' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCultureDisplayName, ReturnValue) == 0x000018, "Member 'KismetInternationalizationLibrary_GetCultureDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetCurrentAssetGroupCulture \ +static_assert(alignof(KismetInternationalizationLibrary_GetCurrentAssetGroupCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetCurrentAssetGroupCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetCurrentAssetGroupCulture) == 0x000018, "Wrong size on KismetInternationalizationLibrary_GetCurrentAssetGroupCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCurrentAssetGroupCulture, AssetGroup) == 0x000000, "Member 'KismetInternationalizationLibrary_GetCurrentAssetGroupCulture::AssetGroup' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCurrentAssetGroupCulture, ReturnValue) == 0x000008, "Member 'KismetInternationalizationLibrary_GetCurrentAssetGroupCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetCurrentCulture \ +static_assert(alignof(KismetInternationalizationLibrary_GetCurrentCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetCurrentCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetCurrentCulture) == 0x000010, "Wrong size on KismetInternationalizationLibrary_GetCurrentCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCurrentCulture, ReturnValue) == 0x000000, "Member 'KismetInternationalizationLibrary_GetCurrentCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetCurrentLanguage \ +static_assert(alignof(KismetInternationalizationLibrary_GetCurrentLanguage) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetCurrentLanguage"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetCurrentLanguage) == 0x000010, "Wrong size on KismetInternationalizationLibrary_GetCurrentLanguage"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCurrentLanguage, ReturnValue) == 0x000000, "Member 'KismetInternationalizationLibrary_GetCurrentLanguage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetCurrentLocale \ +static_assert(alignof(KismetInternationalizationLibrary_GetCurrentLocale) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetCurrentLocale"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetCurrentLocale) == 0x000010, "Wrong size on KismetInternationalizationLibrary_GetCurrentLocale"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetCurrentLocale, ReturnValue) == 0x000000, "Member 'KismetInternationalizationLibrary_GetCurrentLocale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetLocalizedCultures \ +static_assert(alignof(KismetInternationalizationLibrary_GetLocalizedCultures) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetLocalizedCultures"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetLocalizedCultures) == 0x000018, "Wrong size on KismetInternationalizationLibrary_GetLocalizedCultures"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetLocalizedCultures, IncludeGame) == 0x000000, "Member 'KismetInternationalizationLibrary_GetLocalizedCultures::IncludeGame' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetLocalizedCultures, IncludeEngine) == 0x000001, "Member 'KismetInternationalizationLibrary_GetLocalizedCultures::IncludeEngine' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetLocalizedCultures, IncludeEditor) == 0x000002, "Member 'KismetInternationalizationLibrary_GetLocalizedCultures::IncludeEditor' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetLocalizedCultures, IncludeAdditional) == 0x000003, "Member 'KismetInternationalizationLibrary_GetLocalizedCultures::IncludeAdditional' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetLocalizedCultures, ReturnValue) == 0x000008, "Member 'KismetInternationalizationLibrary_GetLocalizedCultures::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetNativeCulture \ +static_assert(alignof(KismetInternationalizationLibrary_GetNativeCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetNativeCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetNativeCulture) == 0x000018, "Wrong size on KismetInternationalizationLibrary_GetNativeCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetNativeCulture, TextCategory) == 0x000000, "Member 'KismetInternationalizationLibrary_GetNativeCulture::TextCategory' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetNativeCulture, ReturnValue) == 0x000008, "Member 'KismetInternationalizationLibrary_GetNativeCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_GetSuitableCulture \ +static_assert(alignof(KismetInternationalizationLibrary_GetSuitableCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_GetSuitableCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_GetSuitableCulture) == 0x000040, "Wrong size on KismetInternationalizationLibrary_GetSuitableCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetSuitableCulture, AvailableCultures) == 0x000000, "Member 'KismetInternationalizationLibrary_GetSuitableCulture::AvailableCultures' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetSuitableCulture, CultureToMatch) == 0x000010, "Member 'KismetInternationalizationLibrary_GetSuitableCulture::CultureToMatch' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetSuitableCulture, FallbackCulture) == 0x000020, "Member 'KismetInternationalizationLibrary_GetSuitableCulture::FallbackCulture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_GetSuitableCulture, ReturnValue) == 0x000030, "Member 'KismetInternationalizationLibrary_GetSuitableCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_SetCurrentAssetGroupCulture \ +static_assert(alignof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_SetCurrentAssetGroupCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture) == 0x000020, "Wrong size on KismetInternationalizationLibrary_SetCurrentAssetGroupCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture, AssetGroup) == 0x000000, "Member 'KismetInternationalizationLibrary_SetCurrentAssetGroupCulture::AssetGroup' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture, Culture) == 0x000008, "Member 'KismetInternationalizationLibrary_SetCurrentAssetGroupCulture::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture, SaveToConfig) == 0x000018, "Member 'KismetInternationalizationLibrary_SetCurrentAssetGroupCulture::SaveToConfig' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentAssetGroupCulture, ReturnValue) == 0x000019, "Member 'KismetInternationalizationLibrary_SetCurrentAssetGroupCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_SetCurrentCulture \ +static_assert(alignof(KismetInternationalizationLibrary_SetCurrentCulture) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_SetCurrentCulture"); \ +static_assert(sizeof(KismetInternationalizationLibrary_SetCurrentCulture) == 0x000018, "Wrong size on KismetInternationalizationLibrary_SetCurrentCulture"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentCulture, Culture) == 0x000000, "Member 'KismetInternationalizationLibrary_SetCurrentCulture::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentCulture, SaveToConfig) == 0x000010, "Member 'KismetInternationalizationLibrary_SetCurrentCulture::SaveToConfig' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentCulture, ReturnValue) == 0x000011, "Member 'KismetInternationalizationLibrary_SetCurrentCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_SetCurrentLanguage \ +static_assert(alignof(KismetInternationalizationLibrary_SetCurrentLanguage) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_SetCurrentLanguage"); \ +static_assert(sizeof(KismetInternationalizationLibrary_SetCurrentLanguage) == 0x000018, "Wrong size on KismetInternationalizationLibrary_SetCurrentLanguage"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguage, Culture) == 0x000000, "Member 'KismetInternationalizationLibrary_SetCurrentLanguage::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguage, SaveToConfig) == 0x000010, "Member 'KismetInternationalizationLibrary_SetCurrentLanguage::SaveToConfig' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguage, ReturnValue) == 0x000011, "Member 'KismetInternationalizationLibrary_SetCurrentLanguage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_SetCurrentLanguageAndLocale \ +static_assert(alignof(KismetInternationalizationLibrary_SetCurrentLanguageAndLocale) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_SetCurrentLanguageAndLocale"); \ +static_assert(sizeof(KismetInternationalizationLibrary_SetCurrentLanguageAndLocale) == 0x000018, "Wrong size on KismetInternationalizationLibrary_SetCurrentLanguageAndLocale"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguageAndLocale, Culture) == 0x000000, "Member 'KismetInternationalizationLibrary_SetCurrentLanguageAndLocale::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguageAndLocale, SaveToConfig) == 0x000010, "Member 'KismetInternationalizationLibrary_SetCurrentLanguageAndLocale::SaveToConfig' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLanguageAndLocale, ReturnValue) == 0x000011, "Member 'KismetInternationalizationLibrary_SetCurrentLanguageAndLocale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetInternationalizationLibrary_SetCurrentLocale \ +static_assert(alignof(KismetInternationalizationLibrary_SetCurrentLocale) == 0x000008, "Wrong alignment on KismetInternationalizationLibrary_SetCurrentLocale"); \ +static_assert(sizeof(KismetInternationalizationLibrary_SetCurrentLocale) == 0x000018, "Wrong size on KismetInternationalizationLibrary_SetCurrentLocale"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLocale, Culture) == 0x000000, "Member 'KismetInternationalizationLibrary_SetCurrentLocale::Culture' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLocale, SaveToConfig) == 0x000010, "Member 'KismetInternationalizationLibrary_SetCurrentLocale::SaveToConfig' has a wrong offset!"); \ +static_assert(offsetof(KismetInternationalizationLibrary_SetCurrentLocale, ReturnValue) == 0x000011, "Member 'KismetInternationalizationLibrary_SetCurrentLocale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetInternationalizationLibrary \ +static_assert(alignof(UKismetInternationalizationLibrary) == 0x000008, "Wrong alignment on UKismetInternationalizationLibrary"); \ +static_assert(sizeof(UKismetInternationalizationLibrary) == 0x000028, "Wrong size on UKismetInternationalizationLibrary"); \ + +#define DUMPER7_ASSERTS_KismetMaterialLibrary_CreateDynamicMaterialInstance \ +static_assert(alignof(KismetMaterialLibrary_CreateDynamicMaterialInstance) == 0x000008, "Wrong alignment on KismetMaterialLibrary_CreateDynamicMaterialInstance"); \ +static_assert(sizeof(KismetMaterialLibrary_CreateDynamicMaterialInstance) == 0x000028, "Wrong size on KismetMaterialLibrary_CreateDynamicMaterialInstance"); \ +static_assert(offsetof(KismetMaterialLibrary_CreateDynamicMaterialInstance, WorldContextObject) == 0x000000, "Member 'KismetMaterialLibrary_CreateDynamicMaterialInstance::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_CreateDynamicMaterialInstance, Parent) == 0x000008, "Member 'KismetMaterialLibrary_CreateDynamicMaterialInstance::Parent' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_CreateDynamicMaterialInstance, OptionalName) == 0x000010, "Member 'KismetMaterialLibrary_CreateDynamicMaterialInstance::OptionalName' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_CreateDynamicMaterialInstance, CreationFlags) == 0x000018, "Member 'KismetMaterialLibrary_CreateDynamicMaterialInstance::CreationFlags' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_CreateDynamicMaterialInstance, ReturnValue) == 0x000020, "Member 'KismetMaterialLibrary_CreateDynamicMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMaterialLibrary_GetScalarParameterValue \ +static_assert(alignof(KismetMaterialLibrary_GetScalarParameterValue) == 0x000008, "Wrong alignment on KismetMaterialLibrary_GetScalarParameterValue"); \ +static_assert(sizeof(KismetMaterialLibrary_GetScalarParameterValue) == 0x000020, "Wrong size on KismetMaterialLibrary_GetScalarParameterValue"); \ +static_assert(offsetof(KismetMaterialLibrary_GetScalarParameterValue, WorldContextObject) == 0x000000, "Member 'KismetMaterialLibrary_GetScalarParameterValue::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetScalarParameterValue, Collection) == 0x000008, "Member 'KismetMaterialLibrary_GetScalarParameterValue::Collection' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetScalarParameterValue, ParameterName) == 0x000010, "Member 'KismetMaterialLibrary_GetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetScalarParameterValue, ReturnValue) == 0x000018, "Member 'KismetMaterialLibrary_GetScalarParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMaterialLibrary_GetVectorParameterValue \ +static_assert(alignof(KismetMaterialLibrary_GetVectorParameterValue) == 0x000008, "Wrong alignment on KismetMaterialLibrary_GetVectorParameterValue"); \ +static_assert(sizeof(KismetMaterialLibrary_GetVectorParameterValue) == 0x000028, "Wrong size on KismetMaterialLibrary_GetVectorParameterValue"); \ +static_assert(offsetof(KismetMaterialLibrary_GetVectorParameterValue, WorldContextObject) == 0x000000, "Member 'KismetMaterialLibrary_GetVectorParameterValue::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetVectorParameterValue, Collection) == 0x000008, "Member 'KismetMaterialLibrary_GetVectorParameterValue::Collection' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetVectorParameterValue, ParameterName) == 0x000010, "Member 'KismetMaterialLibrary_GetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_GetVectorParameterValue, ReturnValue) == 0x000018, "Member 'KismetMaterialLibrary_GetVectorParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMaterialLibrary_SetScalarParameterValue \ +static_assert(alignof(KismetMaterialLibrary_SetScalarParameterValue) == 0x000008, "Wrong alignment on KismetMaterialLibrary_SetScalarParameterValue"); \ +static_assert(sizeof(KismetMaterialLibrary_SetScalarParameterValue) == 0x000020, "Wrong size on KismetMaterialLibrary_SetScalarParameterValue"); \ +static_assert(offsetof(KismetMaterialLibrary_SetScalarParameterValue, WorldContextObject) == 0x000000, "Member 'KismetMaterialLibrary_SetScalarParameterValue::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetScalarParameterValue, Collection) == 0x000008, "Member 'KismetMaterialLibrary_SetScalarParameterValue::Collection' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetScalarParameterValue, ParameterName) == 0x000010, "Member 'KismetMaterialLibrary_SetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetScalarParameterValue, ParameterValue) == 0x000018, "Member 'KismetMaterialLibrary_SetScalarParameterValue::ParameterValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetMaterialLibrary_SetVectorParameterValue \ +static_assert(alignof(KismetMaterialLibrary_SetVectorParameterValue) == 0x000008, "Wrong alignment on KismetMaterialLibrary_SetVectorParameterValue"); \ +static_assert(sizeof(KismetMaterialLibrary_SetVectorParameterValue) == 0x000028, "Wrong size on KismetMaterialLibrary_SetVectorParameterValue"); \ +static_assert(offsetof(KismetMaterialLibrary_SetVectorParameterValue, WorldContextObject) == 0x000000, "Member 'KismetMaterialLibrary_SetVectorParameterValue::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetVectorParameterValue, Collection) == 0x000008, "Member 'KismetMaterialLibrary_SetVectorParameterValue::Collection' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetVectorParameterValue, ParameterName) == 0x000010, "Member 'KismetMaterialLibrary_SetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(KismetMaterialLibrary_SetVectorParameterValue, ParameterValue) == 0x000018, "Member 'KismetMaterialLibrary_SetVectorParameterValue::ParameterValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetMaterialLibrary \ +static_assert(alignof(UKismetMaterialLibrary) == 0x000008, "Wrong alignment on UKismetMaterialLibrary"); \ +static_assert(sizeof(UKismetMaterialLibrary) == 0x000028, "Wrong size on UKismetMaterialLibrary"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_BitIsMarked \ +static_assert(alignof(KismetNodeHelperLibrary_BitIsMarked) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_BitIsMarked"); \ +static_assert(sizeof(KismetNodeHelperLibrary_BitIsMarked) == 0x00000C, "Wrong size on KismetNodeHelperLibrary_BitIsMarked"); \ +static_assert(offsetof(KismetNodeHelperLibrary_BitIsMarked, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_BitIsMarked::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_BitIsMarked, Index_0) == 0x000004, "Member 'KismetNodeHelperLibrary_BitIsMarked::Index_0' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_BitIsMarked, ReturnValue) == 0x000008, "Member 'KismetNodeHelperLibrary_BitIsMarked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_ClearAllBits \ +static_assert(alignof(KismetNodeHelperLibrary_ClearAllBits) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_ClearAllBits"); \ +static_assert(sizeof(KismetNodeHelperLibrary_ClearAllBits) == 0x000004, "Wrong size on KismetNodeHelperLibrary_ClearAllBits"); \ +static_assert(offsetof(KismetNodeHelperLibrary_ClearAllBits, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_ClearAllBits::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_ClearBit \ +static_assert(alignof(KismetNodeHelperLibrary_ClearBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_ClearBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_ClearBit) == 0x000008, "Wrong size on KismetNodeHelperLibrary_ClearBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_ClearBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_ClearBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_ClearBit, Index_0) == 0x000004, "Member 'KismetNodeHelperLibrary_ClearBit::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetEnumeratorName \ +static_assert(alignof(KismetNodeHelperLibrary_GetEnumeratorName) == 0x000008, "Wrong alignment on KismetNodeHelperLibrary_GetEnumeratorName"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetEnumeratorName) == 0x000018, "Wrong size on KismetNodeHelperLibrary_GetEnumeratorName"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorName, Enum) == 0x000000, "Member 'KismetNodeHelperLibrary_GetEnumeratorName::Enum' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorName, EnumeratorValue) == 0x000008, "Member 'KismetNodeHelperLibrary_GetEnumeratorName::EnumeratorValue' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorName, ReturnValue) == 0x00000C, "Member 'KismetNodeHelperLibrary_GetEnumeratorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName \ +static_assert(alignof(KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName) == 0x000008, "Wrong alignment on KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName) == 0x000020, "Wrong size on KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName, Enum) == 0x000000, "Member 'KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName::Enum' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName, EnumeratorValue) == 0x000008, "Member 'KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName::EnumeratorValue' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName, ReturnValue) == 0x000010, "Member 'KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetEnumeratorValueFromIndex \ +static_assert(alignof(KismetNodeHelperLibrary_GetEnumeratorValueFromIndex) == 0x000008, "Wrong alignment on KismetNodeHelperLibrary_GetEnumeratorValueFromIndex"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetEnumeratorValueFromIndex) == 0x000010, "Wrong size on KismetNodeHelperLibrary_GetEnumeratorValueFromIndex"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorValueFromIndex, Enum) == 0x000000, "Member 'KismetNodeHelperLibrary_GetEnumeratorValueFromIndex::Enum' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorValueFromIndex, EnumeratorIndex) == 0x000008, "Member 'KismetNodeHelperLibrary_GetEnumeratorValueFromIndex::EnumeratorIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetEnumeratorValueFromIndex, ReturnValue) == 0x000009, "Member 'KismetNodeHelperLibrary_GetEnumeratorValueFromIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetFirstUnmarkedBit \ +static_assert(alignof(KismetNodeHelperLibrary_GetFirstUnmarkedBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_GetFirstUnmarkedBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetFirstUnmarkedBit) == 0x000010, "Wrong size on KismetNodeHelperLibrary_GetFirstUnmarkedBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetFirstUnmarkedBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_GetFirstUnmarkedBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetFirstUnmarkedBit, StartIdx) == 0x000004, "Member 'KismetNodeHelperLibrary_GetFirstUnmarkedBit::StartIdx' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetFirstUnmarkedBit, NumBits) == 0x000008, "Member 'KismetNodeHelperLibrary_GetFirstUnmarkedBit::NumBits' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetFirstUnmarkedBit, ReturnValue) == 0x00000C, "Member 'KismetNodeHelperLibrary_GetFirstUnmarkedBit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetRandomUnmarkedBit \ +static_assert(alignof(KismetNodeHelperLibrary_GetRandomUnmarkedBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_GetRandomUnmarkedBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetRandomUnmarkedBit) == 0x000010, "Wrong size on KismetNodeHelperLibrary_GetRandomUnmarkedBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetRandomUnmarkedBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_GetRandomUnmarkedBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetRandomUnmarkedBit, StartIdx) == 0x000004, "Member 'KismetNodeHelperLibrary_GetRandomUnmarkedBit::StartIdx' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetRandomUnmarkedBit, NumBits) == 0x000008, "Member 'KismetNodeHelperLibrary_GetRandomUnmarkedBit::NumBits' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetRandomUnmarkedBit, ReturnValue) == 0x00000C, "Member 'KismetNodeHelperLibrary_GetRandomUnmarkedBit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetUnmarkedBit \ +static_assert(alignof(KismetNodeHelperLibrary_GetUnmarkedBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_GetUnmarkedBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetUnmarkedBit) == 0x000014, "Wrong size on KismetNodeHelperLibrary_GetUnmarkedBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetUnmarkedBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_GetUnmarkedBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetUnmarkedBit, StartIdx) == 0x000004, "Member 'KismetNodeHelperLibrary_GetUnmarkedBit::StartIdx' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetUnmarkedBit, NumBits) == 0x000008, "Member 'KismetNodeHelperLibrary_GetUnmarkedBit::NumBits' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetUnmarkedBit, bRandom) == 0x00000C, "Member 'KismetNodeHelperLibrary_GetUnmarkedBit::bRandom' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetUnmarkedBit, ReturnValue) == 0x000010, "Member 'KismetNodeHelperLibrary_GetUnmarkedBit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_GetValidValue \ +static_assert(alignof(KismetNodeHelperLibrary_GetValidValue) == 0x000008, "Wrong alignment on KismetNodeHelperLibrary_GetValidValue"); \ +static_assert(sizeof(KismetNodeHelperLibrary_GetValidValue) == 0x000010, "Wrong size on KismetNodeHelperLibrary_GetValidValue"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetValidValue, Enum) == 0x000000, "Member 'KismetNodeHelperLibrary_GetValidValue::Enum' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetValidValue, EnumeratorValue) == 0x000008, "Member 'KismetNodeHelperLibrary_GetValidValue::EnumeratorValue' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_GetValidValue, ReturnValue) == 0x000009, "Member 'KismetNodeHelperLibrary_GetValidValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_HasMarkedBit \ +static_assert(alignof(KismetNodeHelperLibrary_HasMarkedBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_HasMarkedBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_HasMarkedBit) == 0x00000C, "Wrong size on KismetNodeHelperLibrary_HasMarkedBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasMarkedBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_HasMarkedBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasMarkedBit, NumBits) == 0x000004, "Member 'KismetNodeHelperLibrary_HasMarkedBit::NumBits' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasMarkedBit, ReturnValue) == 0x000008, "Member 'KismetNodeHelperLibrary_HasMarkedBit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_HasUnmarkedBit \ +static_assert(alignof(KismetNodeHelperLibrary_HasUnmarkedBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_HasUnmarkedBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_HasUnmarkedBit) == 0x00000C, "Wrong size on KismetNodeHelperLibrary_HasUnmarkedBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasUnmarkedBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_HasUnmarkedBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasUnmarkedBit, NumBits) == 0x000004, "Member 'KismetNodeHelperLibrary_HasUnmarkedBit::NumBits' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_HasUnmarkedBit, ReturnValue) == 0x000008, "Member 'KismetNodeHelperLibrary_HasUnmarkedBit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetNodeHelperLibrary_MarkBit \ +static_assert(alignof(KismetNodeHelperLibrary_MarkBit) == 0x000004, "Wrong alignment on KismetNodeHelperLibrary_MarkBit"); \ +static_assert(sizeof(KismetNodeHelperLibrary_MarkBit) == 0x000008, "Wrong size on KismetNodeHelperLibrary_MarkBit"); \ +static_assert(offsetof(KismetNodeHelperLibrary_MarkBit, Data) == 0x000000, "Member 'KismetNodeHelperLibrary_MarkBit::Data' has a wrong offset!"); \ +static_assert(offsetof(KismetNodeHelperLibrary_MarkBit, Index_0) == 0x000004, "Member 'KismetNodeHelperLibrary_MarkBit::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetNodeHelperLibrary \ +static_assert(alignof(UKismetNodeHelperLibrary) == 0x000008, "Wrong alignment on UKismetNodeHelperLibrary"); \ +static_assert(sizeof(UKismetNodeHelperLibrary) == 0x000028, "Wrong size on UKismetNodeHelperLibrary"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_BeginDrawCanvasToRenderTarget \ +static_assert(alignof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget) == 0x000008, "Wrong alignment on KismetRenderingLibrary_BeginDrawCanvasToRenderTarget"); \ +static_assert(sizeof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget) == 0x000030, "Wrong size on KismetRenderingLibrary_BeginDrawCanvasToRenderTarget"); \ +static_assert(offsetof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_BeginDrawCanvasToRenderTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_BeginDrawCanvasToRenderTarget::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget, Canvas) == 0x000010, "Member 'KismetRenderingLibrary_BeginDrawCanvasToRenderTarget::Canvas' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget, Size) == 0x000018, "Member 'KismetRenderingLibrary_BeginDrawCanvasToRenderTarget::Size' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BeginDrawCanvasToRenderTarget, Context) == 0x000028, "Member 'KismetRenderingLibrary_BeginDrawCanvasToRenderTarget::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_BreakSkinWeightInfo \ +static_assert(alignof(KismetRenderingLibrary_BreakSkinWeightInfo) == 0x000004, "Wrong alignment on KismetRenderingLibrary_BreakSkinWeightInfo"); \ +static_assert(sizeof(KismetRenderingLibrary_BreakSkinWeightInfo) == 0x00005C, "Wrong size on KismetRenderingLibrary_BreakSkinWeightInfo"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, InWeight) == 0x000000, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::InWeight' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Bone0) == 0x00003C, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Bone0' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Weight0) == 0x000040, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Weight0' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Bone1) == 0x000044, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Bone1' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Weight1) == 0x000048, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Weight1' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Bone2) == 0x00004C, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Bone2' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Weight2) == 0x000050, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Weight2' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Bone3) == 0x000054, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Bone3' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_BreakSkinWeightInfo, Weight3) == 0x000058, "Member 'KismetRenderingLibrary_BreakSkinWeightInfo::Weight3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_CalculateProjectionMatrix \ +static_assert(alignof(KismetRenderingLibrary_CalculateProjectionMatrix) == 0x000010, "Wrong alignment on KismetRenderingLibrary_CalculateProjectionMatrix"); \ +static_assert(sizeof(KismetRenderingLibrary_CalculateProjectionMatrix) == 0x000850, "Wrong size on KismetRenderingLibrary_CalculateProjectionMatrix"); \ +static_assert(offsetof(KismetRenderingLibrary_CalculateProjectionMatrix, MinimalViewInfo) == 0x000000, "Member 'KismetRenderingLibrary_CalculateProjectionMatrix::MinimalViewInfo' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CalculateProjectionMatrix, ReturnValue) == 0x0007D0, "Member 'KismetRenderingLibrary_CalculateProjectionMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ClearRenderTarget2D \ +static_assert(alignof(KismetRenderingLibrary_ClearRenderTarget2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ClearRenderTarget2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ClearRenderTarget2D) == 0x000020, "Wrong size on KismetRenderingLibrary_ClearRenderTarget2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ClearRenderTarget2D, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ClearRenderTarget2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ClearRenderTarget2D, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ClearRenderTarget2D::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ClearRenderTarget2D, ClearColor) == 0x000010, "Member 'KismetRenderingLibrary_ClearRenderTarget2D::ClearColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly \ +static_assert(alignof(KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly"); \ +static_assert(sizeof(KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly) == 0x000018, "Wrong size on KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly"); \ +static_assert(offsetof(KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly, RenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly::RenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly, Texture) == 0x000010, "Member 'KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_CreateRenderTarget2D \ +static_assert(alignof(KismetRenderingLibrary_CreateRenderTarget2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_CreateRenderTarget2D"); \ +static_assert(sizeof(KismetRenderingLibrary_CreateRenderTarget2D) == 0x000030, "Wrong size on KismetRenderingLibrary_CreateRenderTarget2D"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, Width) == 0x000008, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::Width' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, Height) == 0x00000C, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::Height' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, Format) == 0x000010, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::Format' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, ClearColor) == 0x000014, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, bAutoGenerateMipMaps) == 0x000024, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::bAutoGenerateMipMaps' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, bSupportUAVs) == 0x000025, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::bSupportUAVs' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2D, ReturnValue) == 0x000028, "Member 'KismetRenderingLibrary_CreateRenderTarget2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_CreateRenderTarget2DArray \ +static_assert(alignof(KismetRenderingLibrary_CreateRenderTarget2DArray) == 0x000008, "Wrong alignment on KismetRenderingLibrary_CreateRenderTarget2DArray"); \ +static_assert(sizeof(KismetRenderingLibrary_CreateRenderTarget2DArray) == 0x000038, "Wrong size on KismetRenderingLibrary_CreateRenderTarget2DArray"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, Width) == 0x000008, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::Width' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, Height) == 0x00000C, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::Height' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, Slices) == 0x000010, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::Slices' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, Format) == 0x000014, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::Format' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, ClearColor) == 0x000018, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, bAutoGenerateMipMaps) == 0x000028, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::bAutoGenerateMipMaps' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, bSupportUAVs) == 0x000029, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::bSupportUAVs' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTarget2DArray, ReturnValue) == 0x000030, "Member 'KismetRenderingLibrary_CreateRenderTarget2DArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_CreateRenderTargetVolume \ +static_assert(alignof(KismetRenderingLibrary_CreateRenderTargetVolume) == 0x000008, "Wrong alignment on KismetRenderingLibrary_CreateRenderTargetVolume"); \ +static_assert(sizeof(KismetRenderingLibrary_CreateRenderTargetVolume) == 0x000038, "Wrong size on KismetRenderingLibrary_CreateRenderTargetVolume"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, Width) == 0x000008, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::Width' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, Height) == 0x00000C, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::Height' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, Depth) == 0x000010, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::Depth' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, Format) == 0x000014, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::Format' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, ClearColor) == 0x000018, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, bAutoGenerateMipMaps) == 0x000028, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::bAutoGenerateMipMaps' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, bSupportUAVs) == 0x000029, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::bSupportUAVs' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_CreateRenderTargetVolume, ReturnValue) == 0x000030, "Member 'KismetRenderingLibrary_CreateRenderTargetVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_DrawMaterialToRenderTarget \ +static_assert(alignof(KismetRenderingLibrary_DrawMaterialToRenderTarget) == 0x000008, "Wrong alignment on KismetRenderingLibrary_DrawMaterialToRenderTarget"); \ +static_assert(sizeof(KismetRenderingLibrary_DrawMaterialToRenderTarget) == 0x000018, "Wrong size on KismetRenderingLibrary_DrawMaterialToRenderTarget"); \ +static_assert(offsetof(KismetRenderingLibrary_DrawMaterialToRenderTarget, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_DrawMaterialToRenderTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_DrawMaterialToRenderTarget, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_DrawMaterialToRenderTarget::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_DrawMaterialToRenderTarget, Material) == 0x000010, "Member 'KismetRenderingLibrary_DrawMaterialToRenderTarget::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_EnablePathTracing \ +static_assert(alignof(KismetRenderingLibrary_EnablePathTracing) == 0x000001, "Wrong alignment on KismetRenderingLibrary_EnablePathTracing"); \ +static_assert(sizeof(KismetRenderingLibrary_EnablePathTracing) == 0x000001, "Wrong size on KismetRenderingLibrary_EnablePathTracing"); \ +static_assert(offsetof(KismetRenderingLibrary_EnablePathTracing, bEnablePathTracer) == 0x000000, "Member 'KismetRenderingLibrary_EnablePathTracing::bEnablePathTracer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_EndDrawCanvasToRenderTarget \ +static_assert(alignof(KismetRenderingLibrary_EndDrawCanvasToRenderTarget) == 0x000008, "Wrong alignment on KismetRenderingLibrary_EndDrawCanvasToRenderTarget"); \ +static_assert(sizeof(KismetRenderingLibrary_EndDrawCanvasToRenderTarget) == 0x000010, "Wrong size on KismetRenderingLibrary_EndDrawCanvasToRenderTarget"); \ +static_assert(offsetof(KismetRenderingLibrary_EndDrawCanvasToRenderTarget, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_EndDrawCanvasToRenderTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_EndDrawCanvasToRenderTarget, Context) == 0x000008, "Member 'KismetRenderingLibrary_EndDrawCanvasToRenderTarget::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ExportRenderTarget \ +static_assert(alignof(KismetRenderingLibrary_ExportRenderTarget) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ExportRenderTarget"); \ +static_assert(sizeof(KismetRenderingLibrary_ExportRenderTarget) == 0x000030, "Wrong size on KismetRenderingLibrary_ExportRenderTarget"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportRenderTarget, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ExportRenderTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportRenderTarget, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ExportRenderTarget::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportRenderTarget, FilePath) == 0x000010, "Member 'KismetRenderingLibrary_ExportRenderTarget::FilePath' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportRenderTarget, Filename) == 0x000020, "Member 'KismetRenderingLibrary_ExportRenderTarget::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ExportTexture2D \ +static_assert(alignof(KismetRenderingLibrary_ExportTexture2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ExportTexture2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ExportTexture2D) == 0x000030, "Wrong size on KismetRenderingLibrary_ExportTexture2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportTexture2D, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ExportTexture2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportTexture2D, Texture) == 0x000008, "Member 'KismetRenderingLibrary_ExportTexture2D::Texture' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportTexture2D, FilePath) == 0x000010, "Member 'KismetRenderingLibrary_ExportTexture2D::FilePath' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ExportTexture2D, Filename) == 0x000020, "Member 'KismetRenderingLibrary_ExportTexture2D::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ImportBufferAsTexture2D \ +static_assert(alignof(KismetRenderingLibrary_ImportBufferAsTexture2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ImportBufferAsTexture2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ImportBufferAsTexture2D) == 0x000020, "Wrong size on KismetRenderingLibrary_ImportBufferAsTexture2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportBufferAsTexture2D, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ImportBufferAsTexture2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportBufferAsTexture2D, Buffer) == 0x000008, "Member 'KismetRenderingLibrary_ImportBufferAsTexture2D::Buffer' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportBufferAsTexture2D, ReturnValue) == 0x000018, "Member 'KismetRenderingLibrary_ImportBufferAsTexture2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ImportFileAsTexture2D \ +static_assert(alignof(KismetRenderingLibrary_ImportFileAsTexture2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ImportFileAsTexture2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ImportFileAsTexture2D) == 0x000020, "Wrong size on KismetRenderingLibrary_ImportFileAsTexture2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportFileAsTexture2D, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ImportFileAsTexture2D::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportFileAsTexture2D, Filename) == 0x000008, "Member 'KismetRenderingLibrary_ImportFileAsTexture2D::Filename' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ImportFileAsTexture2D, ReturnValue) == 0x000018, "Member 'KismetRenderingLibrary_ImportFileAsTexture2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_MakeSkinWeightInfo \ +static_assert(alignof(KismetRenderingLibrary_MakeSkinWeightInfo) == 0x000004, "Wrong alignment on KismetRenderingLibrary_MakeSkinWeightInfo"); \ +static_assert(sizeof(KismetRenderingLibrary_MakeSkinWeightInfo) == 0x00005C, "Wrong size on KismetRenderingLibrary_MakeSkinWeightInfo"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Bone0) == 0x000000, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Bone0' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Weight0) == 0x000004, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Weight0' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Bone1) == 0x000008, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Bone1' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Weight1) == 0x00000C, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Weight1' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Bone2) == 0x000010, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Bone2' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Weight2) == 0x000014, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Weight2' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Bone3) == 0x000018, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Bone3' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, Weight3) == 0x00001C, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::Weight3' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_MakeSkinWeightInfo, ReturnValue) == 0x000020, "Member 'KismetRenderingLibrary_MakeSkinWeightInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTarget \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTarget) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTarget"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTarget) == 0x000028, "Wrong size on KismetRenderingLibrary_ReadRenderTarget"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTarget, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTarget::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTarget, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTarget::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTarget, OutSamples) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTarget::OutSamples' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTarget, bNormalize) == 0x000020, "Member 'KismetRenderingLibrary_ReadRenderTarget::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTarget, ReturnValue) == 0x000021, "Member 'KismetRenderingLibrary_ReadRenderTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetPixel \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetPixel) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetPixel"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetPixel) == 0x000020, "Wrong size on KismetRenderingLibrary_ReadRenderTargetPixel"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetPixel, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetPixel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetPixel, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetPixel::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetPixel, X) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetPixel::X' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetPixel, Y) == 0x000014, "Member 'KismetRenderingLibrary_ReadRenderTargetPixel::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetPixel, ReturnValue) == 0x000018, "Member 'KismetRenderingLibrary_ReadRenderTargetPixel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetRaw \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetRaw) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetRaw"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetRaw) == 0x000028, "Wrong size on KismetRenderingLibrary_ReadRenderTargetRaw"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRaw, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetRaw::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRaw, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetRaw::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRaw, OutLinearSamples) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetRaw::OutLinearSamples' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRaw, bNormalize) == 0x000020, "Member 'KismetRenderingLibrary_ReadRenderTargetRaw::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRaw, ReturnValue) == 0x000021, "Member 'KismetRenderingLibrary_ReadRenderTargetRaw::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetRawPixel \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetRawPixel) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetRawPixel"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetRawPixel) == 0x000030, "Wrong size on KismetRenderingLibrary_ReadRenderTargetRawPixel"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, X) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::X' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, Y) == 0x000014, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, bNormalize) == 0x000018, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixel, ReturnValue) == 0x00001C, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetRawPixelArea \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetRawPixelArea"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea) == 0x000038, "Wrong size on KismetRenderingLibrary_ReadRenderTargetRawPixelArea"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, MinX) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::MinX' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, MinY) == 0x000014, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::MinY' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, MaxX) == 0x000018, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::MaxX' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, MaxY) == 0x00001C, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::MaxY' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, bNormalize) == 0x000020, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawPixelArea, ReturnValue) == 0x000028, "Member 'KismetRenderingLibrary_ReadRenderTargetRawPixelArea::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetRawUV \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetRawUV) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetRawUV"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetRawUV) == 0x000030, "Wrong size on KismetRenderingLibrary_ReadRenderTargetRawUV"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, U) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::U' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, V) == 0x000014, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::V' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, bNormalize) == 0x000018, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUV, ReturnValue) == 0x00001C, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetRawUVArea \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetRawUVArea) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetRawUVArea"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetRawUVArea) == 0x000050, "Wrong size on KismetRenderingLibrary_ReadRenderTargetRawUVArea"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUVArea, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUVArea::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUVArea, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUVArea::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUVArea, Area) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUVArea::Area' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUVArea, bNormalize) == 0x000038, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUVArea::bNormalize' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetRawUVArea, ReturnValue) == 0x000040, "Member 'KismetRenderingLibrary_ReadRenderTargetRawUVArea::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReadRenderTargetUV \ +static_assert(alignof(KismetRenderingLibrary_ReadRenderTargetUV) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReadRenderTargetUV"); \ +static_assert(sizeof(KismetRenderingLibrary_ReadRenderTargetUV) == 0x000020, "Wrong size on KismetRenderingLibrary_ReadRenderTargetUV"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetUV, WorldContextObject) == 0x000000, "Member 'KismetRenderingLibrary_ReadRenderTargetUV::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetUV, TextureRenderTarget) == 0x000008, "Member 'KismetRenderingLibrary_ReadRenderTargetUV::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetUV, U) == 0x000010, "Member 'KismetRenderingLibrary_ReadRenderTargetUV::U' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetUV, V) == 0x000014, "Member 'KismetRenderingLibrary_ReadRenderTargetUV::V' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ReadRenderTargetUV, ReturnValue) == 0x000018, "Member 'KismetRenderingLibrary_ReadRenderTargetUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ReleaseRenderTarget2D \ +static_assert(alignof(KismetRenderingLibrary_ReleaseRenderTarget2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ReleaseRenderTarget2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ReleaseRenderTarget2D) == 0x000008, "Wrong size on KismetRenderingLibrary_ReleaseRenderTarget2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ReleaseRenderTarget2D, TextureRenderTarget) == 0x000000, "Member 'KismetRenderingLibrary_ReleaseRenderTarget2D::TextureRenderTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly \ +static_assert(alignof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly) == 0x000008, "Wrong alignment on KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly"); \ +static_assert(sizeof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly) == 0x000028, "Wrong size on KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly"); \ +static_assert(offsetof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly, RenderTarget) == 0x000000, "Member 'KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly::RenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly, Name_0) == 0x000008, "Member 'KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly::Name_0' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly, CompressionSettings) == 0x000018, "Member 'KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly::CompressionSettings' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly, MipSettings) == 0x000019, "Member 'KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly::MipSettings' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly, ReturnValue) == 0x000020, "Member 'KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_ResizeRenderTarget2D \ +static_assert(alignof(KismetRenderingLibrary_ResizeRenderTarget2D) == 0x000008, "Wrong alignment on KismetRenderingLibrary_ResizeRenderTarget2D"); \ +static_assert(sizeof(KismetRenderingLibrary_ResizeRenderTarget2D) == 0x000010, "Wrong size on KismetRenderingLibrary_ResizeRenderTarget2D"); \ +static_assert(offsetof(KismetRenderingLibrary_ResizeRenderTarget2D, TextureRenderTarget) == 0x000000, "Member 'KismetRenderingLibrary_ResizeRenderTarget2D::TextureRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ResizeRenderTarget2D, Width) == 0x000008, "Member 'KismetRenderingLibrary_ResizeRenderTarget2D::Width' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_ResizeRenderTarget2D, Height) == 0x00000C, "Member 'KismetRenderingLibrary_ResizeRenderTarget2D::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetRenderingLibrary_SetCastInsetShadowForAllAttachments \ +static_assert(alignof(KismetRenderingLibrary_SetCastInsetShadowForAllAttachments) == 0x000008, "Wrong alignment on KismetRenderingLibrary_SetCastInsetShadowForAllAttachments"); \ +static_assert(sizeof(KismetRenderingLibrary_SetCastInsetShadowForAllAttachments) == 0x000010, "Wrong size on KismetRenderingLibrary_SetCastInsetShadowForAllAttachments"); \ +static_assert(offsetof(KismetRenderingLibrary_SetCastInsetShadowForAllAttachments, PrimitiveComponent) == 0x000000, "Member 'KismetRenderingLibrary_SetCastInsetShadowForAllAttachments::PrimitiveComponent' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_SetCastInsetShadowForAllAttachments, bCastInsetShadow) == 0x000008, "Member 'KismetRenderingLibrary_SetCastInsetShadowForAllAttachments::bCastInsetShadow' has a wrong offset!"); \ +static_assert(offsetof(KismetRenderingLibrary_SetCastInsetShadowForAllAttachments, bLightAttachmentsAsGroup) == 0x000009, "Member 'KismetRenderingLibrary_SetCastInsetShadowForAllAttachments::bLightAttachmentsAsGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetRenderingLibrary \ +static_assert(alignof(UKismetRenderingLibrary) == 0x000008, "Wrong alignment on UKismetRenderingLibrary"); \ +static_assert(sizeof(UKismetRenderingLibrary) == 0x000028, "Wrong size on UKismetRenderingLibrary"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Bool \ +static_assert(alignof(KismetStringLibrary_BuildString_Bool) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Bool"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Bool) == 0x000048, "Wrong size on KismetStringLibrary_BuildString_Bool"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Bool, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Bool::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Bool, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Bool::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Bool, InBool) == 0x000020, "Member 'KismetStringLibrary_BuildString_Bool::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Bool, Suffix) == 0x000028, "Member 'KismetStringLibrary_BuildString_Bool::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Bool, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_BuildString_Bool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Color \ +static_assert(alignof(KismetStringLibrary_BuildString_Color) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Color"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Color) == 0x000050, "Wrong size on KismetStringLibrary_BuildString_Color"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Color, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Color::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Color, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Color::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Color, InColor) == 0x000020, "Member 'KismetStringLibrary_BuildString_Color::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Color, Suffix) == 0x000030, "Member 'KismetStringLibrary_BuildString_Color::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Color, ReturnValue) == 0x000040, "Member 'KismetStringLibrary_BuildString_Color::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Double \ +static_assert(alignof(KismetStringLibrary_BuildString_Double) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Double"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Double) == 0x000048, "Wrong size on KismetStringLibrary_BuildString_Double"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Double, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Double::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Double, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Double::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Double, InDouble) == 0x000020, "Member 'KismetStringLibrary_BuildString_Double::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Double, Suffix) == 0x000028, "Member 'KismetStringLibrary_BuildString_Double::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Double, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_BuildString_Double::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Int \ +static_assert(alignof(KismetStringLibrary_BuildString_Int) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Int"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Int) == 0x000048, "Wrong size on KismetStringLibrary_BuildString_Int"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Int, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Int::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Int, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Int::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Int, inInt) == 0x000020, "Member 'KismetStringLibrary_BuildString_Int::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Int, Suffix) == 0x000028, "Member 'KismetStringLibrary_BuildString_Int::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Int, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_BuildString_Int::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_IntVector \ +static_assert(alignof(KismetStringLibrary_BuildString_IntVector) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_IntVector"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_IntVector) == 0x000050, "Wrong size on KismetStringLibrary_BuildString_IntVector"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_IntVector, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_IntVector::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_IntVector, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_IntVector::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_IntVector, InIntVector) == 0x000020, "Member 'KismetStringLibrary_BuildString_IntVector::InIntVector' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_IntVector, Suffix) == 0x000030, "Member 'KismetStringLibrary_BuildString_IntVector::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_IntVector, ReturnValue) == 0x000040, "Member 'KismetStringLibrary_BuildString_IntVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Name \ +static_assert(alignof(KismetStringLibrary_BuildString_Name) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Name"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Name) == 0x000048, "Wrong size on KismetStringLibrary_BuildString_Name"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Name, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Name::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Name, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Name::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Name, InName) == 0x000020, "Member 'KismetStringLibrary_BuildString_Name::InName' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Name, Suffix) == 0x000028, "Member 'KismetStringLibrary_BuildString_Name::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Name, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_BuildString_Name::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Object \ +static_assert(alignof(KismetStringLibrary_BuildString_Object) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Object"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Object) == 0x000048, "Wrong size on KismetStringLibrary_BuildString_Object"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Object, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Object::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Object, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Object::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Object, InObj) == 0x000020, "Member 'KismetStringLibrary_BuildString_Object::InObj' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Object, Suffix) == 0x000028, "Member 'KismetStringLibrary_BuildString_Object::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Object, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_BuildString_Object::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Rotator \ +static_assert(alignof(KismetStringLibrary_BuildString_Rotator) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Rotator"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Rotator) == 0x000058, "Wrong size on KismetStringLibrary_BuildString_Rotator"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Rotator, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Rotator::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Rotator, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Rotator::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Rotator, InRot) == 0x000020, "Member 'KismetStringLibrary_BuildString_Rotator::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Rotator, Suffix) == 0x000038, "Member 'KismetStringLibrary_BuildString_Rotator::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Rotator, ReturnValue) == 0x000048, "Member 'KismetStringLibrary_BuildString_Rotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Vector \ +static_assert(alignof(KismetStringLibrary_BuildString_Vector) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Vector"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Vector) == 0x000058, "Wrong size on KismetStringLibrary_BuildString_Vector"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Vector::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Vector::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector, InVector) == 0x000020, "Member 'KismetStringLibrary_BuildString_Vector::InVector' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector, Suffix) == 0x000038, "Member 'KismetStringLibrary_BuildString_Vector::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector, ReturnValue) == 0x000048, "Member 'KismetStringLibrary_BuildString_Vector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_BuildString_Vector2d \ +static_assert(alignof(KismetStringLibrary_BuildString_Vector2d) == 0x000008, "Wrong alignment on KismetStringLibrary_BuildString_Vector2d"); \ +static_assert(sizeof(KismetStringLibrary_BuildString_Vector2d) == 0x000050, "Wrong size on KismetStringLibrary_BuildString_Vector2d"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector2d, AppendTo) == 0x000000, "Member 'KismetStringLibrary_BuildString_Vector2d::AppendTo' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector2d, Prefix) == 0x000010, "Member 'KismetStringLibrary_BuildString_Vector2d::Prefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector2d, InVector2D) == 0x000020, "Member 'KismetStringLibrary_BuildString_Vector2d::InVector2D' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector2d, Suffix) == 0x000030, "Member 'KismetStringLibrary_BuildString_Vector2d::Suffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_BuildString_Vector2d, ReturnValue) == 0x000040, "Member 'KismetStringLibrary_BuildString_Vector2d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Concat_StrStr \ +static_assert(alignof(KismetStringLibrary_Concat_StrStr) == 0x000008, "Wrong alignment on KismetStringLibrary_Concat_StrStr"); \ +static_assert(sizeof(KismetStringLibrary_Concat_StrStr) == 0x000030, "Wrong size on KismetStringLibrary_Concat_StrStr"); \ +static_assert(offsetof(KismetStringLibrary_Concat_StrStr, A) == 0x000000, "Member 'KismetStringLibrary_Concat_StrStr::A' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Concat_StrStr, B) == 0x000010, "Member 'KismetStringLibrary_Concat_StrStr::B' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Concat_StrStr, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_Concat_StrStr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Contains \ +static_assert(alignof(KismetStringLibrary_Contains) == 0x000008, "Wrong alignment on KismetStringLibrary_Contains"); \ +static_assert(sizeof(KismetStringLibrary_Contains) == 0x000028, "Wrong size on KismetStringLibrary_Contains"); \ +static_assert(offsetof(KismetStringLibrary_Contains, SearchIn) == 0x000000, "Member 'KismetStringLibrary_Contains::SearchIn' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Contains, Substring) == 0x000010, "Member 'KismetStringLibrary_Contains::Substring' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Contains, bUseCase) == 0x000020, "Member 'KismetStringLibrary_Contains::bUseCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Contains, bSearchFromEnd) == 0x000021, "Member 'KismetStringLibrary_Contains::bSearchFromEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Contains, ReturnValue) == 0x000022, "Member 'KismetStringLibrary_Contains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_BoolToString \ +static_assert(alignof(KismetStringLibrary_Conv_BoolToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_BoolToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_BoolToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_BoolToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_BoolToString, InBool) == 0x000000, "Member 'KismetStringLibrary_Conv_BoolToString::InBool' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_BoolToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_BoolToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_ByteToString \ +static_assert(alignof(KismetStringLibrary_Conv_ByteToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_ByteToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_ByteToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_ByteToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ByteToString, InByte) == 0x000000, "Member 'KismetStringLibrary_Conv_ByteToString::InByte' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ByteToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_ByteToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_ColorToString \ +static_assert(alignof(KismetStringLibrary_Conv_ColorToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_ColorToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_ColorToString) == 0x000020, "Wrong size on KismetStringLibrary_Conv_ColorToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ColorToString, InColor) == 0x000000, "Member 'KismetStringLibrary_Conv_ColorToString::InColor' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ColorToString, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_ColorToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_DoubleToString \ +static_assert(alignof(KismetStringLibrary_Conv_DoubleToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_DoubleToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_DoubleToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_DoubleToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_DoubleToString, InDouble) == 0x000000, "Member 'KismetStringLibrary_Conv_DoubleToString::InDouble' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_DoubleToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_DoubleToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_InputDeviceIdToString \ +static_assert(alignof(KismetStringLibrary_Conv_InputDeviceIdToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_InputDeviceIdToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_InputDeviceIdToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_InputDeviceIdToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_InputDeviceIdToString, InDeviceId) == 0x000000, "Member 'KismetStringLibrary_Conv_InputDeviceIdToString::InDeviceId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_InputDeviceIdToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_InputDeviceIdToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_Int64ToString \ +static_assert(alignof(KismetStringLibrary_Conv_Int64ToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_Int64ToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_Int64ToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_Int64ToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Int64ToString, inInt) == 0x000000, "Member 'KismetStringLibrary_Conv_Int64ToString::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Int64ToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_Int64ToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_IntPointToString \ +static_assert(alignof(KismetStringLibrary_Conv_IntPointToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_IntPointToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_IntPointToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_IntPointToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntPointToString, InIntPoint) == 0x000000, "Member 'KismetStringLibrary_Conv_IntPointToString::InIntPoint' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntPointToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_IntPointToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_IntToString \ +static_assert(alignof(KismetStringLibrary_Conv_IntToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_IntToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_IntToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_IntToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntToString, inInt) == 0x000000, "Member 'KismetStringLibrary_Conv_IntToString::inInt' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_IntToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_IntVectorToString \ +static_assert(alignof(KismetStringLibrary_Conv_IntVectorToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_IntVectorToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_IntVectorToString) == 0x000020, "Wrong size on KismetStringLibrary_Conv_IntVectorToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntVectorToString, InIntVec) == 0x000000, "Member 'KismetStringLibrary_Conv_IntVectorToString::InIntVec' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_IntVectorToString, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_IntVectorToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_MatrixToString \ +static_assert(alignof(KismetStringLibrary_Conv_MatrixToString) == 0x000010, "Wrong alignment on KismetStringLibrary_Conv_MatrixToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_MatrixToString) == 0x000090, "Wrong size on KismetStringLibrary_Conv_MatrixToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_MatrixToString, InMatrix) == 0x000000, "Member 'KismetStringLibrary_Conv_MatrixToString::InMatrix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_MatrixToString, ReturnValue) == 0x000080, "Member 'KismetStringLibrary_Conv_MatrixToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_NameToString \ +static_assert(alignof(KismetStringLibrary_Conv_NameToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_NameToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_NameToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_NameToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_NameToString, InName) == 0x000000, "Member 'KismetStringLibrary_Conv_NameToString::InName' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_NameToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_NameToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_ObjectToString \ +static_assert(alignof(KismetStringLibrary_Conv_ObjectToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_ObjectToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_ObjectToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_ObjectToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ObjectToString, InObj) == 0x000000, "Member 'KismetStringLibrary_Conv_ObjectToString::InObj' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_ObjectToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_ObjectToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_PlatformUserIdToString \ +static_assert(alignof(KismetStringLibrary_Conv_PlatformUserIdToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_PlatformUserIdToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_PlatformUserIdToString) == 0x000018, "Wrong size on KismetStringLibrary_Conv_PlatformUserIdToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_PlatformUserIdToString, InPlatformUserId) == 0x000000, "Member 'KismetStringLibrary_Conv_PlatformUserIdToString::InPlatformUserId' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_PlatformUserIdToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_Conv_PlatformUserIdToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_RotatorToString \ +static_assert(alignof(KismetStringLibrary_Conv_RotatorToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_RotatorToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_RotatorToString) == 0x000028, "Wrong size on KismetStringLibrary_Conv_RotatorToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_RotatorToString, InRot) == 0x000000, "Member 'KismetStringLibrary_Conv_RotatorToString::InRot' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_RotatorToString, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_Conv_RotatorToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToColor \ +static_assert(alignof(KismetStringLibrary_Conv_StringToColor) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToColor"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToColor) == 0x000028, "Wrong size on KismetStringLibrary_Conv_StringToColor"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToColor, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToColor::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToColor, OutConvertedColor) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToColor::OutConvertedColor' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToColor, OutIsValid) == 0x000020, "Member 'KismetStringLibrary_Conv_StringToColor::OutIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToDouble \ +static_assert(alignof(KismetStringLibrary_Conv_StringToDouble) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToDouble"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToDouble) == 0x000018, "Wrong size on KismetStringLibrary_Conv_StringToDouble"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToDouble, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToDouble::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToDouble, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToInt \ +static_assert(alignof(KismetStringLibrary_Conv_StringToInt) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToInt"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToInt) == 0x000018, "Wrong size on KismetStringLibrary_Conv_StringToInt"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToInt, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToInt::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToInt, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToInt64 \ +static_assert(alignof(KismetStringLibrary_Conv_StringToInt64) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToInt64"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToInt64) == 0x000018, "Wrong size on KismetStringLibrary_Conv_StringToInt64"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToInt64, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToInt64::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToInt64, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToName \ +static_assert(alignof(KismetStringLibrary_Conv_StringToName) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToName"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToName) == 0x000018, "Wrong size on KismetStringLibrary_Conv_StringToName"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToName, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToName::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToName, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToRotator \ +static_assert(alignof(KismetStringLibrary_Conv_StringToRotator) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToRotator"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToRotator) == 0x000030, "Wrong size on KismetStringLibrary_Conv_StringToRotator"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToRotator, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToRotator::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToRotator, OutConvertedRotator) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToRotator::OutConvertedRotator' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToRotator, OutIsValid) == 0x000028, "Member 'KismetStringLibrary_Conv_StringToRotator::OutIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToVector \ +static_assert(alignof(KismetStringLibrary_Conv_StringToVector) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToVector"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToVector) == 0x000030, "Wrong size on KismetStringLibrary_Conv_StringToVector"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToVector::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector, OutConvertedVector) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToVector::OutConvertedVector' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector, OutIsValid) == 0x000028, "Member 'KismetStringLibrary_Conv_StringToVector::OutIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToVector2D \ +static_assert(alignof(KismetStringLibrary_Conv_StringToVector2D) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToVector2D"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToVector2D) == 0x000028, "Wrong size on KismetStringLibrary_Conv_StringToVector2D"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector2D, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToVector2D::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector2D, OutConvertedVector2D) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToVector2D::OutConvertedVector2D' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector2D, OutIsValid) == 0x000020, "Member 'KismetStringLibrary_Conv_StringToVector2D::OutIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_StringToVector3f \ +static_assert(alignof(KismetStringLibrary_Conv_StringToVector3f) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_StringToVector3f"); \ +static_assert(sizeof(KismetStringLibrary_Conv_StringToVector3f) == 0x000020, "Wrong size on KismetStringLibrary_Conv_StringToVector3f"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector3f, InString) == 0x000000, "Member 'KismetStringLibrary_Conv_StringToVector3f::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector3f, OutConvertedVector) == 0x000010, "Member 'KismetStringLibrary_Conv_StringToVector3f::OutConvertedVector' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_StringToVector3f, OutIsValid) == 0x00001C, "Member 'KismetStringLibrary_Conv_StringToVector3f::OutIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_TransformToString \ +static_assert(alignof(KismetStringLibrary_Conv_TransformToString) == 0x000010, "Wrong alignment on KismetStringLibrary_Conv_TransformToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_TransformToString) == 0x000070, "Wrong size on KismetStringLibrary_Conv_TransformToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_TransformToString, InTrans) == 0x000000, "Member 'KismetStringLibrary_Conv_TransformToString::InTrans' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_TransformToString, ReturnValue) == 0x000060, "Member 'KismetStringLibrary_Conv_TransformToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_Vector2dToString \ +static_assert(alignof(KismetStringLibrary_Conv_Vector2dToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_Vector2dToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_Vector2dToString) == 0x000020, "Wrong size on KismetStringLibrary_Conv_Vector2dToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Vector2dToString, InVec) == 0x000000, "Member 'KismetStringLibrary_Conv_Vector2dToString::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Vector2dToString, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_Vector2dToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_Vector3fToString \ +static_assert(alignof(KismetStringLibrary_Conv_Vector3fToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_Vector3fToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_Vector3fToString) == 0x000020, "Wrong size on KismetStringLibrary_Conv_Vector3fToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Vector3fToString, InVec) == 0x000000, "Member 'KismetStringLibrary_Conv_Vector3fToString::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_Vector3fToString, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Conv_Vector3fToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Conv_VectorToString \ +static_assert(alignof(KismetStringLibrary_Conv_VectorToString) == 0x000008, "Wrong alignment on KismetStringLibrary_Conv_VectorToString"); \ +static_assert(sizeof(KismetStringLibrary_Conv_VectorToString) == 0x000028, "Wrong size on KismetStringLibrary_Conv_VectorToString"); \ +static_assert(offsetof(KismetStringLibrary_Conv_VectorToString, InVec) == 0x000000, "Member 'KismetStringLibrary_Conv_VectorToString::InVec' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Conv_VectorToString, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_Conv_VectorToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_CullArray \ +static_assert(alignof(KismetStringLibrary_CullArray) == 0x000008, "Wrong alignment on KismetStringLibrary_CullArray"); \ +static_assert(sizeof(KismetStringLibrary_CullArray) == 0x000028, "Wrong size on KismetStringLibrary_CullArray"); \ +static_assert(offsetof(KismetStringLibrary_CullArray, SourceString) == 0x000000, "Member 'KismetStringLibrary_CullArray::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_CullArray, inArray) == 0x000010, "Member 'KismetStringLibrary_CullArray::inArray' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_CullArray, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_CullArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_EndsWith \ +static_assert(alignof(KismetStringLibrary_EndsWith) == 0x000008, "Wrong alignment on KismetStringLibrary_EndsWith"); \ +static_assert(sizeof(KismetStringLibrary_EndsWith) == 0x000028, "Wrong size on KismetStringLibrary_EndsWith"); \ +static_assert(offsetof(KismetStringLibrary_EndsWith, SourceString) == 0x000000, "Member 'KismetStringLibrary_EndsWith::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EndsWith, InSuffix) == 0x000010, "Member 'KismetStringLibrary_EndsWith::InSuffix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EndsWith, SearchCase) == 0x000020, "Member 'KismetStringLibrary_EndsWith::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EndsWith, ReturnValue) == 0x000021, "Member 'KismetStringLibrary_EndsWith::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_EqualEqual_StriStri \ +static_assert(alignof(KismetStringLibrary_EqualEqual_StriStri) == 0x000008, "Wrong alignment on KismetStringLibrary_EqualEqual_StriStri"); \ +static_assert(sizeof(KismetStringLibrary_EqualEqual_StriStri) == 0x000028, "Wrong size on KismetStringLibrary_EqualEqual_StriStri"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StriStri, A) == 0x000000, "Member 'KismetStringLibrary_EqualEqual_StriStri::A' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StriStri, B) == 0x000010, "Member 'KismetStringLibrary_EqualEqual_StriStri::B' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StriStri, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_EqualEqual_StriStri::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_EqualEqual_StrStr \ +static_assert(alignof(KismetStringLibrary_EqualEqual_StrStr) == 0x000008, "Wrong alignment on KismetStringLibrary_EqualEqual_StrStr"); \ +static_assert(sizeof(KismetStringLibrary_EqualEqual_StrStr) == 0x000028, "Wrong size on KismetStringLibrary_EqualEqual_StrStr"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StrStr, A) == 0x000000, "Member 'KismetStringLibrary_EqualEqual_StrStr::A' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StrStr, B) == 0x000010, "Member 'KismetStringLibrary_EqualEqual_StrStr::B' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_EqualEqual_StrStr, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_EqualEqual_StrStr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_FindSubstring \ +static_assert(alignof(KismetStringLibrary_FindSubstring) == 0x000008, "Wrong alignment on KismetStringLibrary_FindSubstring"); \ +static_assert(sizeof(KismetStringLibrary_FindSubstring) == 0x000030, "Wrong size on KismetStringLibrary_FindSubstring"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, SearchIn) == 0x000000, "Member 'KismetStringLibrary_FindSubstring::SearchIn' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, Substring) == 0x000010, "Member 'KismetStringLibrary_FindSubstring::Substring' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, bUseCase) == 0x000020, "Member 'KismetStringLibrary_FindSubstring::bUseCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, bSearchFromEnd) == 0x000021, "Member 'KismetStringLibrary_FindSubstring::bSearchFromEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, StartPosition) == 0x000024, "Member 'KismetStringLibrary_FindSubstring::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_FindSubstring, ReturnValue) == 0x000028, "Member 'KismetStringLibrary_FindSubstring::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_GetCharacterArrayFromString \ +static_assert(alignof(KismetStringLibrary_GetCharacterArrayFromString) == 0x000008, "Wrong alignment on KismetStringLibrary_GetCharacterArrayFromString"); \ +static_assert(sizeof(KismetStringLibrary_GetCharacterArrayFromString) == 0x000020, "Wrong size on KismetStringLibrary_GetCharacterArrayFromString"); \ +static_assert(offsetof(KismetStringLibrary_GetCharacterArrayFromString, SourceString) == 0x000000, "Member 'KismetStringLibrary_GetCharacterArrayFromString::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetCharacterArrayFromString, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_GetCharacterArrayFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_GetCharacterAsNumber \ +static_assert(alignof(KismetStringLibrary_GetCharacterAsNumber) == 0x000008, "Wrong alignment on KismetStringLibrary_GetCharacterAsNumber"); \ +static_assert(sizeof(KismetStringLibrary_GetCharacterAsNumber) == 0x000018, "Wrong size on KismetStringLibrary_GetCharacterAsNumber"); \ +static_assert(offsetof(KismetStringLibrary_GetCharacterAsNumber, SourceString) == 0x000000, "Member 'KismetStringLibrary_GetCharacterAsNumber::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetCharacterAsNumber, Index_0) == 0x000010, "Member 'KismetStringLibrary_GetCharacterAsNumber::Index_0' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetCharacterAsNumber, ReturnValue) == 0x000014, "Member 'KismetStringLibrary_GetCharacterAsNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_GetSubstring \ +static_assert(alignof(KismetStringLibrary_GetSubstring) == 0x000008, "Wrong alignment on KismetStringLibrary_GetSubstring"); \ +static_assert(sizeof(KismetStringLibrary_GetSubstring) == 0x000028, "Wrong size on KismetStringLibrary_GetSubstring"); \ +static_assert(offsetof(KismetStringLibrary_GetSubstring, SourceString) == 0x000000, "Member 'KismetStringLibrary_GetSubstring::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetSubstring, StartIndex) == 0x000010, "Member 'KismetStringLibrary_GetSubstring::StartIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetSubstring, Length) == 0x000014, "Member 'KismetStringLibrary_GetSubstring::Length' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_GetSubstring, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_GetSubstring::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_IsEmpty \ +static_assert(alignof(KismetStringLibrary_IsEmpty) == 0x000008, "Wrong alignment on KismetStringLibrary_IsEmpty"); \ +static_assert(sizeof(KismetStringLibrary_IsEmpty) == 0x000018, "Wrong size on KismetStringLibrary_IsEmpty"); \ +static_assert(offsetof(KismetStringLibrary_IsEmpty, InString) == 0x000000, "Member 'KismetStringLibrary_IsEmpty::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_IsEmpty, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_IsNumeric \ +static_assert(alignof(KismetStringLibrary_IsNumeric) == 0x000008, "Wrong alignment on KismetStringLibrary_IsNumeric"); \ +static_assert(sizeof(KismetStringLibrary_IsNumeric) == 0x000018, "Wrong size on KismetStringLibrary_IsNumeric"); \ +static_assert(offsetof(KismetStringLibrary_IsNumeric, SourceString) == 0x000000, "Member 'KismetStringLibrary_IsNumeric::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_IsNumeric, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_IsNumeric::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_JoinStringArray \ +static_assert(alignof(KismetStringLibrary_JoinStringArray) == 0x000008, "Wrong alignment on KismetStringLibrary_JoinStringArray"); \ +static_assert(sizeof(KismetStringLibrary_JoinStringArray) == 0x000030, "Wrong size on KismetStringLibrary_JoinStringArray"); \ +static_assert(offsetof(KismetStringLibrary_JoinStringArray, SourceArray) == 0x000000, "Member 'KismetStringLibrary_JoinStringArray::SourceArray' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_JoinStringArray, Separator) == 0x000010, "Member 'KismetStringLibrary_JoinStringArray::Separator' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_JoinStringArray, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_JoinStringArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Left \ +static_assert(alignof(KismetStringLibrary_Left) == 0x000008, "Wrong alignment on KismetStringLibrary_Left"); \ +static_assert(sizeof(KismetStringLibrary_Left) == 0x000028, "Wrong size on KismetStringLibrary_Left"); \ +static_assert(offsetof(KismetStringLibrary_Left, SourceString) == 0x000000, "Member 'KismetStringLibrary_Left::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Left, Count) == 0x000010, "Member 'KismetStringLibrary_Left::Count' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Left, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_Left::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_LeftChop \ +static_assert(alignof(KismetStringLibrary_LeftChop) == 0x000008, "Wrong alignment on KismetStringLibrary_LeftChop"); \ +static_assert(sizeof(KismetStringLibrary_LeftChop) == 0x000028, "Wrong size on KismetStringLibrary_LeftChop"); \ +static_assert(offsetof(KismetStringLibrary_LeftChop, SourceString) == 0x000000, "Member 'KismetStringLibrary_LeftChop::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_LeftChop, Count) == 0x000010, "Member 'KismetStringLibrary_LeftChop::Count' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_LeftChop, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_LeftChop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_LeftPad \ +static_assert(alignof(KismetStringLibrary_LeftPad) == 0x000008, "Wrong alignment on KismetStringLibrary_LeftPad"); \ +static_assert(sizeof(KismetStringLibrary_LeftPad) == 0x000028, "Wrong size on KismetStringLibrary_LeftPad"); \ +static_assert(offsetof(KismetStringLibrary_LeftPad, SourceString) == 0x000000, "Member 'KismetStringLibrary_LeftPad::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_LeftPad, ChCount) == 0x000010, "Member 'KismetStringLibrary_LeftPad::ChCount' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_LeftPad, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_LeftPad::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Len \ +static_assert(alignof(KismetStringLibrary_Len) == 0x000008, "Wrong alignment on KismetStringLibrary_Len"); \ +static_assert(sizeof(KismetStringLibrary_Len) == 0x000018, "Wrong size on KismetStringLibrary_Len"); \ +static_assert(offsetof(KismetStringLibrary_Len, S) == 0x000000, "Member 'KismetStringLibrary_Len::S' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Len, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Len::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_MatchesWildcard \ +static_assert(alignof(KismetStringLibrary_MatchesWildcard) == 0x000008, "Wrong alignment on KismetStringLibrary_MatchesWildcard"); \ +static_assert(sizeof(KismetStringLibrary_MatchesWildcard) == 0x000028, "Wrong size on KismetStringLibrary_MatchesWildcard"); \ +static_assert(offsetof(KismetStringLibrary_MatchesWildcard, SourceString) == 0x000000, "Member 'KismetStringLibrary_MatchesWildcard::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_MatchesWildcard, Wildcard) == 0x000010, "Member 'KismetStringLibrary_MatchesWildcard::Wildcard' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_MatchesWildcard, SearchCase) == 0x000020, "Member 'KismetStringLibrary_MatchesWildcard::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_MatchesWildcard, ReturnValue) == 0x000021, "Member 'KismetStringLibrary_MatchesWildcard::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Mid \ +static_assert(alignof(KismetStringLibrary_Mid) == 0x000008, "Wrong alignment on KismetStringLibrary_Mid"); \ +static_assert(sizeof(KismetStringLibrary_Mid) == 0x000028, "Wrong size on KismetStringLibrary_Mid"); \ +static_assert(offsetof(KismetStringLibrary_Mid, SourceString) == 0x000000, "Member 'KismetStringLibrary_Mid::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Mid, Start) == 0x000010, "Member 'KismetStringLibrary_Mid::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Mid, Count) == 0x000014, "Member 'KismetStringLibrary_Mid::Count' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Mid, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_Mid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_NotEqual_StriStri \ +static_assert(alignof(KismetStringLibrary_NotEqual_StriStri) == 0x000008, "Wrong alignment on KismetStringLibrary_NotEqual_StriStri"); \ +static_assert(sizeof(KismetStringLibrary_NotEqual_StriStri) == 0x000028, "Wrong size on KismetStringLibrary_NotEqual_StriStri"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StriStri, A) == 0x000000, "Member 'KismetStringLibrary_NotEqual_StriStri::A' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StriStri, B) == 0x000010, "Member 'KismetStringLibrary_NotEqual_StriStri::B' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StriStri, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_NotEqual_StriStri::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_NotEqual_StrStr \ +static_assert(alignof(KismetStringLibrary_NotEqual_StrStr) == 0x000008, "Wrong alignment on KismetStringLibrary_NotEqual_StrStr"); \ +static_assert(sizeof(KismetStringLibrary_NotEqual_StrStr) == 0x000028, "Wrong size on KismetStringLibrary_NotEqual_StrStr"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StrStr, A) == 0x000000, "Member 'KismetStringLibrary_NotEqual_StrStr::A' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StrStr, B) == 0x000010, "Member 'KismetStringLibrary_NotEqual_StrStr::B' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_NotEqual_StrStr, ReturnValue) == 0x000020, "Member 'KismetStringLibrary_NotEqual_StrStr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_ParseIntoArray \ +static_assert(alignof(KismetStringLibrary_ParseIntoArray) == 0x000008, "Wrong alignment on KismetStringLibrary_ParseIntoArray"); \ +static_assert(sizeof(KismetStringLibrary_ParseIntoArray) == 0x000038, "Wrong size on KismetStringLibrary_ParseIntoArray"); \ +static_assert(offsetof(KismetStringLibrary_ParseIntoArray, SourceString) == 0x000000, "Member 'KismetStringLibrary_ParseIntoArray::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ParseIntoArray, Delimiter) == 0x000010, "Member 'KismetStringLibrary_ParseIntoArray::Delimiter' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ParseIntoArray, CullEmptyStrings) == 0x000020, "Member 'KismetStringLibrary_ParseIntoArray::CullEmptyStrings' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ParseIntoArray, ReturnValue) == 0x000028, "Member 'KismetStringLibrary_ParseIntoArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Replace \ +static_assert(alignof(KismetStringLibrary_Replace) == 0x000008, "Wrong alignment on KismetStringLibrary_Replace"); \ +static_assert(sizeof(KismetStringLibrary_Replace) == 0x000048, "Wrong size on KismetStringLibrary_Replace"); \ +static_assert(offsetof(KismetStringLibrary_Replace, SourceString) == 0x000000, "Member 'KismetStringLibrary_Replace::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Replace, From) == 0x000010, "Member 'KismetStringLibrary_Replace::From' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Replace, To) == 0x000020, "Member 'KismetStringLibrary_Replace::To' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Replace, SearchCase) == 0x000030, "Member 'KismetStringLibrary_Replace::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Replace, ReturnValue) == 0x000038, "Member 'KismetStringLibrary_Replace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_ReplaceInline \ +static_assert(alignof(KismetStringLibrary_ReplaceInline) == 0x000008, "Wrong alignment on KismetStringLibrary_ReplaceInline"); \ +static_assert(sizeof(KismetStringLibrary_ReplaceInline) == 0x000038, "Wrong size on KismetStringLibrary_ReplaceInline"); \ +static_assert(offsetof(KismetStringLibrary_ReplaceInline, SourceString) == 0x000000, "Member 'KismetStringLibrary_ReplaceInline::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ReplaceInline, SearchText) == 0x000010, "Member 'KismetStringLibrary_ReplaceInline::SearchText' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ReplaceInline, ReplacementText) == 0x000020, "Member 'KismetStringLibrary_ReplaceInline::ReplacementText' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ReplaceInline, SearchCase) == 0x000030, "Member 'KismetStringLibrary_ReplaceInline::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ReplaceInline, ReturnValue) == 0x000034, "Member 'KismetStringLibrary_ReplaceInline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Reverse \ +static_assert(alignof(KismetStringLibrary_Reverse) == 0x000008, "Wrong alignment on KismetStringLibrary_Reverse"); \ +static_assert(sizeof(KismetStringLibrary_Reverse) == 0x000020, "Wrong size on KismetStringLibrary_Reverse"); \ +static_assert(offsetof(KismetStringLibrary_Reverse, SourceString) == 0x000000, "Member 'KismetStringLibrary_Reverse::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Reverse, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Reverse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Right \ +static_assert(alignof(KismetStringLibrary_Right) == 0x000008, "Wrong alignment on KismetStringLibrary_Right"); \ +static_assert(sizeof(KismetStringLibrary_Right) == 0x000028, "Wrong size on KismetStringLibrary_Right"); \ +static_assert(offsetof(KismetStringLibrary_Right, SourceString) == 0x000000, "Member 'KismetStringLibrary_Right::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Right, Count) == 0x000010, "Member 'KismetStringLibrary_Right::Count' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Right, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_Right::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_RightChop \ +static_assert(alignof(KismetStringLibrary_RightChop) == 0x000008, "Wrong alignment on KismetStringLibrary_RightChop"); \ +static_assert(sizeof(KismetStringLibrary_RightChop) == 0x000028, "Wrong size on KismetStringLibrary_RightChop"); \ +static_assert(offsetof(KismetStringLibrary_RightChop, SourceString) == 0x000000, "Member 'KismetStringLibrary_RightChop::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_RightChop, Count) == 0x000010, "Member 'KismetStringLibrary_RightChop::Count' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_RightChop, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_RightChop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_RightPad \ +static_assert(alignof(KismetStringLibrary_RightPad) == 0x000008, "Wrong alignment on KismetStringLibrary_RightPad"); \ +static_assert(sizeof(KismetStringLibrary_RightPad) == 0x000028, "Wrong size on KismetStringLibrary_RightPad"); \ +static_assert(offsetof(KismetStringLibrary_RightPad, SourceString) == 0x000000, "Member 'KismetStringLibrary_RightPad::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_RightPad, ChCount) == 0x000010, "Member 'KismetStringLibrary_RightPad::ChCount' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_RightPad, ReturnValue) == 0x000018, "Member 'KismetStringLibrary_RightPad::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Split \ +static_assert(alignof(KismetStringLibrary_Split) == 0x000008, "Wrong alignment on KismetStringLibrary_Split"); \ +static_assert(sizeof(KismetStringLibrary_Split) == 0x000048, "Wrong size on KismetStringLibrary_Split"); \ +static_assert(offsetof(KismetStringLibrary_Split, SourceString) == 0x000000, "Member 'KismetStringLibrary_Split::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, InStr) == 0x000010, "Member 'KismetStringLibrary_Split::InStr' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, LeftS) == 0x000020, "Member 'KismetStringLibrary_Split::LeftS' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, RightS) == 0x000030, "Member 'KismetStringLibrary_Split::RightS' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, SearchCase) == 0x000040, "Member 'KismetStringLibrary_Split::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, SearchDir) == 0x000041, "Member 'KismetStringLibrary_Split::SearchDir' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Split, ReturnValue) == 0x000042, "Member 'KismetStringLibrary_Split::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_StartsWith \ +static_assert(alignof(KismetStringLibrary_StartsWith) == 0x000008, "Wrong alignment on KismetStringLibrary_StartsWith"); \ +static_assert(sizeof(KismetStringLibrary_StartsWith) == 0x000028, "Wrong size on KismetStringLibrary_StartsWith"); \ +static_assert(offsetof(KismetStringLibrary_StartsWith, SourceString) == 0x000000, "Member 'KismetStringLibrary_StartsWith::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_StartsWith, InPrefix) == 0x000010, "Member 'KismetStringLibrary_StartsWith::InPrefix' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_StartsWith, SearchCase) == 0x000020, "Member 'KismetStringLibrary_StartsWith::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_StartsWith, ReturnValue) == 0x000021, "Member 'KismetStringLibrary_StartsWith::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_TimeSecondsToString \ +static_assert(alignof(KismetStringLibrary_TimeSecondsToString) == 0x000008, "Wrong alignment on KismetStringLibrary_TimeSecondsToString"); \ +static_assert(sizeof(KismetStringLibrary_TimeSecondsToString) == 0x000018, "Wrong size on KismetStringLibrary_TimeSecondsToString"); \ +static_assert(offsetof(KismetStringLibrary_TimeSecondsToString, InSeconds) == 0x000000, "Member 'KismetStringLibrary_TimeSecondsToString::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_TimeSecondsToString, ReturnValue) == 0x000008, "Member 'KismetStringLibrary_TimeSecondsToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_ToLower \ +static_assert(alignof(KismetStringLibrary_ToLower) == 0x000008, "Wrong alignment on KismetStringLibrary_ToLower"); \ +static_assert(sizeof(KismetStringLibrary_ToLower) == 0x000020, "Wrong size on KismetStringLibrary_ToLower"); \ +static_assert(offsetof(KismetStringLibrary_ToLower, SourceString) == 0x000000, "Member 'KismetStringLibrary_ToLower::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ToLower, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_ToLower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_ToUpper \ +static_assert(alignof(KismetStringLibrary_ToUpper) == 0x000008, "Wrong alignment on KismetStringLibrary_ToUpper"); \ +static_assert(sizeof(KismetStringLibrary_ToUpper) == 0x000020, "Wrong size on KismetStringLibrary_ToUpper"); \ +static_assert(offsetof(KismetStringLibrary_ToUpper, SourceString) == 0x000000, "Member 'KismetStringLibrary_ToUpper::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_ToUpper, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_ToUpper::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_Trim \ +static_assert(alignof(KismetStringLibrary_Trim) == 0x000008, "Wrong alignment on KismetStringLibrary_Trim"); \ +static_assert(sizeof(KismetStringLibrary_Trim) == 0x000020, "Wrong size on KismetStringLibrary_Trim"); \ +static_assert(offsetof(KismetStringLibrary_Trim, SourceString) == 0x000000, "Member 'KismetStringLibrary_Trim::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_Trim, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_Trim::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetStringLibrary_TrimTrailing \ +static_assert(alignof(KismetStringLibrary_TrimTrailing) == 0x000008, "Wrong alignment on KismetStringLibrary_TrimTrailing"); \ +static_assert(sizeof(KismetStringLibrary_TrimTrailing) == 0x000020, "Wrong size on KismetStringLibrary_TrimTrailing"); \ +static_assert(offsetof(KismetStringLibrary_TrimTrailing, SourceString) == 0x000000, "Member 'KismetStringLibrary_TrimTrailing::SourceString' has a wrong offset!"); \ +static_assert(offsetof(KismetStringLibrary_TrimTrailing, ReturnValue) == 0x000010, "Member 'KismetStringLibrary_TrimTrailing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetStringLibrary \ +static_assert(alignof(UKismetStringLibrary) == 0x000008, "Wrong alignment on UKismetStringLibrary"); \ +static_assert(sizeof(UKismetStringLibrary) == 0x000028, "Wrong size on UKismetStringLibrary"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_AddFloatHistorySample \ +static_assert(alignof(KismetSystemLibrary_AddFloatHistorySample) == 0x000008, "Wrong alignment on KismetSystemLibrary_AddFloatHistorySample"); \ +static_assert(sizeof(KismetSystemLibrary_AddFloatHistorySample) == 0x000048, "Wrong size on KismetSystemLibrary_AddFloatHistorySample"); \ +static_assert(offsetof(KismetSystemLibrary_AddFloatHistorySample, Value) == 0x000000, "Member 'KismetSystemLibrary_AddFloatHistorySample::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_AddFloatHistorySample, FloatHistory) == 0x000008, "Member 'KismetSystemLibrary_AddFloatHistorySample::FloatHistory' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_AddFloatHistorySample, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_AddFloatHistorySample::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BeginTransaction \ +static_assert(alignof(KismetSystemLibrary_BeginTransaction) == 0x000008, "Wrong alignment on KismetSystemLibrary_BeginTransaction"); \ +static_assert(sizeof(KismetSystemLibrary_BeginTransaction) == 0x000038, "Wrong size on KismetSystemLibrary_BeginTransaction"); \ +static_assert(offsetof(KismetSystemLibrary_BeginTransaction, Context) == 0x000000, "Member 'KismetSystemLibrary_BeginTransaction::Context' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BeginTransaction, Description) == 0x000010, "Member 'KismetSystemLibrary_BeginTransaction::Description' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BeginTransaction, PrimaryObject) == 0x000028, "Member 'KismetSystemLibrary_BeginTransaction::PrimaryObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BeginTransaction, ReturnValue) == 0x000030, "Member 'KismetSystemLibrary_BeginTransaction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxOverlapActors \ +static_assert(alignof(KismetSystemLibrary_BoxOverlapActors) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxOverlapActors"); \ +static_assert(sizeof(KismetSystemLibrary_BoxOverlapActors) == 0x000078, "Wrong size on KismetSystemLibrary_BoxOverlapActors"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxOverlapActors::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, BoxPos) == 0x000008, "Member 'KismetSystemLibrary_BoxOverlapActors::BoxPos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, BoxExtent) == 0x000020, "Member 'KismetSystemLibrary_BoxOverlapActors::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, ObjectTypes) == 0x000038, "Member 'KismetSystemLibrary_BoxOverlapActors::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, ActorClassFilter) == 0x000048, "Member 'KismetSystemLibrary_BoxOverlapActors::ActorClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_BoxOverlapActors::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, OutActors) == 0x000060, "Member 'KismetSystemLibrary_BoxOverlapActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapActors, ReturnValue) == 0x000070, "Member 'KismetSystemLibrary_BoxOverlapActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxOverlapComponents \ +static_assert(alignof(KismetSystemLibrary_BoxOverlapComponents) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxOverlapComponents"); \ +static_assert(sizeof(KismetSystemLibrary_BoxOverlapComponents) == 0x000078, "Wrong size on KismetSystemLibrary_BoxOverlapComponents"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxOverlapComponents::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, BoxPos) == 0x000008, "Member 'KismetSystemLibrary_BoxOverlapComponents::BoxPos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, Extent) == 0x000020, "Member 'KismetSystemLibrary_BoxOverlapComponents::Extent' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, ObjectTypes) == 0x000038, "Member 'KismetSystemLibrary_BoxOverlapComponents::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, ComponentClassFilter) == 0x000048, "Member 'KismetSystemLibrary_BoxOverlapComponents::ComponentClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_BoxOverlapComponents::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, OutComponents) == 0x000060, "Member 'KismetSystemLibrary_BoxOverlapComponents::OutComponents' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxOverlapComponents, ReturnValue) == 0x000070, "Member 'KismetSystemLibrary_BoxOverlapComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceMulti \ +static_assert(alignof(KismetSystemLibrary_BoxTraceMulti) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceMulti"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceMulti) == 0x0000C8, "Wrong size on KismetSystemLibrary_BoxTraceMulti"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceMulti::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceMulti::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceMulti::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceMulti::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceMulti::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, TraceChannel) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceMulti::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, bTraceComplex) == 0x000069, "Member 'KismetSystemLibrary_BoxTraceMulti::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, ActorsToIgnore) == 0x000070, "Member 'KismetSystemLibrary_BoxTraceMulti::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, DrawDebugType) == 0x000080, "Member 'KismetSystemLibrary_BoxTraceMulti::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, OutHits) == 0x000088, "Member 'KismetSystemLibrary_BoxTraceMulti::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, bIgnoreSelf) == 0x000098, "Member 'KismetSystemLibrary_BoxTraceMulti::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, TraceColor) == 0x00009C, "Member 'KismetSystemLibrary_BoxTraceMulti::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, TraceHitColor) == 0x0000AC, "Member 'KismetSystemLibrary_BoxTraceMulti::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, DrawTime) == 0x0000BC, "Member 'KismetSystemLibrary_BoxTraceMulti::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMulti, ReturnValue) == 0x0000C0, "Member 'KismetSystemLibrary_BoxTraceMulti::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceMultiByProfile \ +static_assert(alignof(KismetSystemLibrary_BoxTraceMultiByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceMultiByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceMultiByProfile) == 0x0000D0, "Wrong size on KismetSystemLibrary_BoxTraceMultiByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, ProfileName) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, bTraceComplex) == 0x000070, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, ActorsToIgnore) == 0x000078, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, DrawDebugType) == 0x000088, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, OutHits) == 0x000090, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, bIgnoreSelf) == 0x0000A0, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, TraceColor) == 0x0000A4, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, TraceHitColor) == 0x0000B4, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, DrawTime) == 0x0000C4, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiByProfile, ReturnValue) == 0x0000C8, "Member 'KismetSystemLibrary_BoxTraceMultiByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceMultiForObjects \ +static_assert(alignof(KismetSystemLibrary_BoxTraceMultiForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceMultiForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceMultiForObjects) == 0x0000D8, "Wrong size on KismetSystemLibrary_BoxTraceMultiForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, ObjectTypes) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, bTraceComplex) == 0x000078, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, ActorsToIgnore) == 0x000080, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, DrawDebugType) == 0x000090, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, OutHits) == 0x000098, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, bIgnoreSelf) == 0x0000A8, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, TraceColor) == 0x0000AC, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, TraceHitColor) == 0x0000BC, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, DrawTime) == 0x0000CC, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceMultiForObjects, ReturnValue) == 0x0000D0, "Member 'KismetSystemLibrary_BoxTraceMultiForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceSingle \ +static_assert(alignof(KismetSystemLibrary_BoxTraceSingle) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceSingle"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceSingle) == 0x0001A0, "Wrong size on KismetSystemLibrary_BoxTraceSingle"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceSingle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceSingle::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceSingle::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceSingle::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceSingle::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, TraceChannel) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceSingle::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, bTraceComplex) == 0x000069, "Member 'KismetSystemLibrary_BoxTraceSingle::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, ActorsToIgnore) == 0x000070, "Member 'KismetSystemLibrary_BoxTraceSingle::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, DrawDebugType) == 0x000080, "Member 'KismetSystemLibrary_BoxTraceSingle::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, OutHit) == 0x000088, "Member 'KismetSystemLibrary_BoxTraceSingle::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, bIgnoreSelf) == 0x000170, "Member 'KismetSystemLibrary_BoxTraceSingle::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, TraceColor) == 0x000174, "Member 'KismetSystemLibrary_BoxTraceSingle::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, TraceHitColor) == 0x000184, "Member 'KismetSystemLibrary_BoxTraceSingle::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, DrawTime) == 0x000194, "Member 'KismetSystemLibrary_BoxTraceSingle::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingle, ReturnValue) == 0x000198, "Member 'KismetSystemLibrary_BoxTraceSingle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceSingleByProfile \ +static_assert(alignof(KismetSystemLibrary_BoxTraceSingleByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceSingleByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceSingleByProfile) == 0x0001A8, "Wrong size on KismetSystemLibrary_BoxTraceSingleByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, ProfileName) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, bTraceComplex) == 0x000070, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, ActorsToIgnore) == 0x000078, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, DrawDebugType) == 0x000088, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, OutHit) == 0x000090, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, bIgnoreSelf) == 0x000178, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, TraceColor) == 0x00017C, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, TraceHitColor) == 0x00018C, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, DrawTime) == 0x00019C, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleByProfile, ReturnValue) == 0x0001A0, "Member 'KismetSystemLibrary_BoxTraceSingleByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BoxTraceSingleForObjects \ +static_assert(alignof(KismetSystemLibrary_BoxTraceSingleForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_BoxTraceSingleForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_BoxTraceSingleForObjects) == 0x0001B0, "Wrong size on KismetSystemLibrary_BoxTraceSingleForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, HalfSize) == 0x000038, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::HalfSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, Orientation) == 0x000050, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::Orientation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, ObjectTypes) == 0x000068, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, bTraceComplex) == 0x000078, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, ActorsToIgnore) == 0x000080, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, DrawDebugType) == 0x000090, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, OutHit) == 0x000098, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, bIgnoreSelf) == 0x000180, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, TraceColor) == 0x000184, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, TraceHitColor) == 0x000194, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, DrawTime) == 0x0001A4, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BoxTraceSingleForObjects, ReturnValue) == 0x0001A8, "Member 'KismetSystemLibrary_BoxTraceSingleForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BreakARFilter \ +static_assert(alignof(KismetSystemLibrary_BreakARFilter) == 0x000008, "Wrong alignment on KismetSystemLibrary_BreakARFilter"); \ +static_assert(sizeof(KismetSystemLibrary_BreakARFilter) == 0x000248, "Wrong size on KismetSystemLibrary_BreakARFilter"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, InARFilter) == 0x000000, "Member 'KismetSystemLibrary_BreakARFilter::InARFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, PackageNames) == 0x000150, "Member 'KismetSystemLibrary_BreakARFilter::PackageNames' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, PackagePaths) == 0x000160, "Member 'KismetSystemLibrary_BreakARFilter::PackagePaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, SoftObjectPaths) == 0x000170, "Member 'KismetSystemLibrary_BreakARFilter::SoftObjectPaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, ClassPaths) == 0x000180, "Member 'KismetSystemLibrary_BreakARFilter::ClassPaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, RecursiveClassPathsExclusionSet) == 0x000190, "Member 'KismetSystemLibrary_BreakARFilter::RecursiveClassPathsExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, ClassNames) == 0x0001E0, "Member 'KismetSystemLibrary_BreakARFilter::ClassNames' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, RecursiveClassesExclusionSet) == 0x0001F0, "Member 'KismetSystemLibrary_BreakARFilter::RecursiveClassesExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, bRecursivePaths) == 0x000240, "Member 'KismetSystemLibrary_BreakARFilter::bRecursivePaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, bRecursiveClasses) == 0x000241, "Member 'KismetSystemLibrary_BreakARFilter::bRecursiveClasses' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakARFilter, bIncludeOnlyOnDiskAssets) == 0x000242, "Member 'KismetSystemLibrary_BreakARFilter::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BreakSoftClassPath \ +static_assert(alignof(KismetSystemLibrary_BreakSoftClassPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_BreakSoftClassPath"); \ +static_assert(sizeof(KismetSystemLibrary_BreakSoftClassPath) == 0x000030, "Wrong size on KismetSystemLibrary_BreakSoftClassPath"); \ +static_assert(offsetof(KismetSystemLibrary_BreakSoftClassPath, InSoftClassPath) == 0x000000, "Member 'KismetSystemLibrary_BreakSoftClassPath::InSoftClassPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakSoftClassPath, PathString) == 0x000020, "Member 'KismetSystemLibrary_BreakSoftClassPath::PathString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BreakSoftObjectPath \ +static_assert(alignof(KismetSystemLibrary_BreakSoftObjectPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_BreakSoftObjectPath"); \ +static_assert(sizeof(KismetSystemLibrary_BreakSoftObjectPath) == 0x000030, "Wrong size on KismetSystemLibrary_BreakSoftObjectPath"); \ +static_assert(offsetof(KismetSystemLibrary_BreakSoftObjectPath, InSoftObjectPath) == 0x000000, "Member 'KismetSystemLibrary_BreakSoftObjectPath::InSoftObjectPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakSoftObjectPath, PathString) == 0x000020, "Member 'KismetSystemLibrary_BreakSoftObjectPath::PathString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_BreakTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_BreakTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_BreakTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_BreakTopLevelAssetPath) == 0x000020, "Wrong size on KismetSystemLibrary_BreakTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_BreakTopLevelAssetPath, TopLevelAssetPath) == 0x000000, "Member 'KismetSystemLibrary_BreakTopLevelAssetPath::TopLevelAssetPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_BreakTopLevelAssetPath, PathString) == 0x000010, "Member 'KismetSystemLibrary_BreakTopLevelAssetPath::PathString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CancelTransaction \ +static_assert(alignof(KismetSystemLibrary_CancelTransaction) == 0x000004, "Wrong alignment on KismetSystemLibrary_CancelTransaction"); \ +static_assert(sizeof(KismetSystemLibrary_CancelTransaction) == 0x000004, "Wrong size on KismetSystemLibrary_CancelTransaction"); \ +static_assert(offsetof(KismetSystemLibrary_CancelTransaction, Index_0) == 0x000000, "Member 'KismetSystemLibrary_CancelTransaction::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CanLaunchURL \ +static_assert(alignof(KismetSystemLibrary_CanLaunchURL) == 0x000008, "Wrong alignment on KismetSystemLibrary_CanLaunchURL"); \ +static_assert(sizeof(KismetSystemLibrary_CanLaunchURL) == 0x000018, "Wrong size on KismetSystemLibrary_CanLaunchURL"); \ +static_assert(offsetof(KismetSystemLibrary_CanLaunchURL, URL) == 0x000000, "Member 'KismetSystemLibrary_CanLaunchURL::URL' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CanLaunchURL, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_CanLaunchURL::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleOverlapActors \ +static_assert(alignof(KismetSystemLibrary_CapsuleOverlapActors) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleOverlapActors"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleOverlapActors) == 0x000068, "Wrong size on KismetSystemLibrary_CapsuleOverlapActors"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleOverlapActors::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, CapsulePos) == 0x000008, "Member 'KismetSystemLibrary_CapsuleOverlapActors::CapsulePos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, Radius) == 0x000020, "Member 'KismetSystemLibrary_CapsuleOverlapActors::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, HalfHeight) == 0x000024, "Member 'KismetSystemLibrary_CapsuleOverlapActors::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, ObjectTypes) == 0x000028, "Member 'KismetSystemLibrary_CapsuleOverlapActors::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, ActorClassFilter) == 0x000038, "Member 'KismetSystemLibrary_CapsuleOverlapActors::ActorClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_CapsuleOverlapActors::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, OutActors) == 0x000050, "Member 'KismetSystemLibrary_CapsuleOverlapActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapActors, ReturnValue) == 0x000060, "Member 'KismetSystemLibrary_CapsuleOverlapActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleOverlapComponents \ +static_assert(alignof(KismetSystemLibrary_CapsuleOverlapComponents) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleOverlapComponents"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleOverlapComponents) == 0x000068, "Wrong size on KismetSystemLibrary_CapsuleOverlapComponents"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, CapsulePos) == 0x000008, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::CapsulePos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, Radius) == 0x000020, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, HalfHeight) == 0x000024, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, ObjectTypes) == 0x000028, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, ComponentClassFilter) == 0x000038, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::ComponentClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, OutComponents) == 0x000050, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::OutComponents' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleOverlapComponents, ReturnValue) == 0x000060, "Member 'KismetSystemLibrary_CapsuleOverlapComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceMulti \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceMulti) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceMulti"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceMulti) == 0x0000A0, "Wrong size on KismetSystemLibrary_CapsuleTraceMulti"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceMulti::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceMulti::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceMulti::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceMulti::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceMulti::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, TraceChannel) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceMulti::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, bTraceComplex) == 0x000041, "Member 'KismetSystemLibrary_CapsuleTraceMulti::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_CapsuleTraceMulti::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_CapsuleTraceMulti::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, OutHits) == 0x000060, "Member 'KismetSystemLibrary_CapsuleTraceMulti::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, bIgnoreSelf) == 0x000070, "Member 'KismetSystemLibrary_CapsuleTraceMulti::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, TraceColor) == 0x000074, "Member 'KismetSystemLibrary_CapsuleTraceMulti::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, TraceHitColor) == 0x000084, "Member 'KismetSystemLibrary_CapsuleTraceMulti::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, DrawTime) == 0x000094, "Member 'KismetSystemLibrary_CapsuleTraceMulti::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMulti, ReturnValue) == 0x000098, "Member 'KismetSystemLibrary_CapsuleTraceMulti::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceMultiByProfile \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceMultiByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceMultiByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceMultiByProfile) == 0x0000A8, "Wrong size on KismetSystemLibrary_CapsuleTraceMultiByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, ProfileName) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, bTraceComplex) == 0x000048, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, DrawDebugType) == 0x000060, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, OutHits) == 0x000068, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, bIgnoreSelf) == 0x000078, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, TraceColor) == 0x00007C, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, TraceHitColor) == 0x00008C, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, DrawTime) == 0x00009C, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiByProfile, ReturnValue) == 0x0000A0, "Member 'KismetSystemLibrary_CapsuleTraceMultiByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceMultiForObjects \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceMultiForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceMultiForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceMultiForObjects) == 0x0000B0, "Wrong size on KismetSystemLibrary_CapsuleTraceMultiForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, ObjectTypes) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, bTraceComplex) == 0x000050, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, ActorsToIgnore) == 0x000058, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, DrawDebugType) == 0x000068, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, OutHits) == 0x000070, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, bIgnoreSelf) == 0x000080, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, TraceColor) == 0x000084, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, TraceHitColor) == 0x000094, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, DrawTime) == 0x0000A4, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceMultiForObjects, ReturnValue) == 0x0000A8, "Member 'KismetSystemLibrary_CapsuleTraceMultiForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceSingle \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceSingle) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceSingle"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceSingle) == 0x000178, "Wrong size on KismetSystemLibrary_CapsuleTraceSingle"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceSingle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceSingle::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceSingle::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceSingle::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceSingle::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, TraceChannel) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceSingle::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, bTraceComplex) == 0x000041, "Member 'KismetSystemLibrary_CapsuleTraceSingle::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_CapsuleTraceSingle::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_CapsuleTraceSingle::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, OutHit) == 0x000060, "Member 'KismetSystemLibrary_CapsuleTraceSingle::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, bIgnoreSelf) == 0x000148, "Member 'KismetSystemLibrary_CapsuleTraceSingle::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, TraceColor) == 0x00014C, "Member 'KismetSystemLibrary_CapsuleTraceSingle::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, TraceHitColor) == 0x00015C, "Member 'KismetSystemLibrary_CapsuleTraceSingle::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, DrawTime) == 0x00016C, "Member 'KismetSystemLibrary_CapsuleTraceSingle::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingle, ReturnValue) == 0x000170, "Member 'KismetSystemLibrary_CapsuleTraceSingle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceSingleByProfile \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceSingleByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceSingleByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceSingleByProfile) == 0x000180, "Wrong size on KismetSystemLibrary_CapsuleTraceSingleByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, ProfileName) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, bTraceComplex) == 0x000048, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, DrawDebugType) == 0x000060, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, OutHit) == 0x000068, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, bIgnoreSelf) == 0x000150, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, TraceColor) == 0x000154, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, TraceHitColor) == 0x000164, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, DrawTime) == 0x000174, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleByProfile, ReturnValue) == 0x000178, "Member 'KismetSystemLibrary_CapsuleTraceSingleByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CapsuleTraceSingleForObjects \ +static_assert(alignof(KismetSystemLibrary_CapsuleTraceSingleForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_CapsuleTraceSingleForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_CapsuleTraceSingleForObjects) == 0x000188, "Wrong size on KismetSystemLibrary_CapsuleTraceSingleForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, Radius) == 0x000038, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, HalfHeight) == 0x00003C, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, ObjectTypes) == 0x000040, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, bTraceComplex) == 0x000050, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, ActorsToIgnore) == 0x000058, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, DrawDebugType) == 0x000068, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, OutHit) == 0x000070, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, bIgnoreSelf) == 0x000158, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, TraceColor) == 0x00015C, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, TraceHitColor) == 0x00016C, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, DrawTime) == 0x00017C, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_CapsuleTraceSingleForObjects, ReturnValue) == 0x000180, "Member 'KismetSystemLibrary_CapsuleTraceSingleForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ComponentOverlapActors \ +static_assert(alignof(KismetSystemLibrary_ComponentOverlapActors) == 0x000010, "Wrong alignment on KismetSystemLibrary_ComponentOverlapActors"); \ +static_assert(sizeof(KismetSystemLibrary_ComponentOverlapActors) == 0x0000B0, "Wrong size on KismetSystemLibrary_ComponentOverlapActors"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, Component) == 0x000000, "Member 'KismetSystemLibrary_ComponentOverlapActors::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, ComponentTransform) == 0x000010, "Member 'KismetSystemLibrary_ComponentOverlapActors::ComponentTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, ObjectTypes) == 0x000070, "Member 'KismetSystemLibrary_ComponentOverlapActors::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, ActorClassFilter) == 0x000080, "Member 'KismetSystemLibrary_ComponentOverlapActors::ActorClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, ActorsToIgnore) == 0x000088, "Member 'KismetSystemLibrary_ComponentOverlapActors::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, OutActors) == 0x000098, "Member 'KismetSystemLibrary_ComponentOverlapActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapActors, ReturnValue) == 0x0000A8, "Member 'KismetSystemLibrary_ComponentOverlapActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ComponentOverlapComponents \ +static_assert(alignof(KismetSystemLibrary_ComponentOverlapComponents) == 0x000010, "Wrong alignment on KismetSystemLibrary_ComponentOverlapComponents"); \ +static_assert(sizeof(KismetSystemLibrary_ComponentOverlapComponents) == 0x0000B0, "Wrong size on KismetSystemLibrary_ComponentOverlapComponents"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, Component) == 0x000000, "Member 'KismetSystemLibrary_ComponentOverlapComponents::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, ComponentTransform) == 0x000010, "Member 'KismetSystemLibrary_ComponentOverlapComponents::ComponentTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, ObjectTypes) == 0x000070, "Member 'KismetSystemLibrary_ComponentOverlapComponents::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, ComponentClassFilter) == 0x000080, "Member 'KismetSystemLibrary_ComponentOverlapComponents::ComponentClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, ActorsToIgnore) == 0x000088, "Member 'KismetSystemLibrary_ComponentOverlapComponents::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, OutComponents) == 0x000098, "Member 'KismetSystemLibrary_ComponentOverlapComponents::OutComponents' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ComponentOverlapComponents, ReturnValue) == 0x0000A8, "Member 'KismetSystemLibrary_ComponentOverlapComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ControlScreensaver \ +static_assert(alignof(KismetSystemLibrary_ControlScreensaver) == 0x000001, "Wrong alignment on KismetSystemLibrary_ControlScreensaver"); \ +static_assert(sizeof(KismetSystemLibrary_ControlScreensaver) == 0x000001, "Wrong size on KismetSystemLibrary_ControlScreensaver"); \ +static_assert(offsetof(KismetSystemLibrary_ControlScreensaver, bAllowScreenSaver) == 0x000000, "Member 'KismetSystemLibrary_ControlScreensaver::bAllowScreenSaver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_ClassToSoftClassReference \ +static_assert(alignof(KismetSystemLibrary_Conv_ClassToSoftClassReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_ClassToSoftClassReference"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_ClassToSoftClassReference) == 0x000030, "Wrong size on KismetSystemLibrary_Conv_ClassToSoftClassReference"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ClassToSoftClassReference, Class_0) == 0x000000, "Member 'KismetSystemLibrary_Conv_ClassToSoftClassReference::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ClassToSoftClassReference, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_Conv_ClassToSoftClassReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference \ +static_assert(alignof(KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference) == 0x000070, "Wrong size on KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference, ComponentReference) == 0x000000, "Member 'KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference::ComponentReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_InterfaceToObject \ +static_assert(alignof(KismetSystemLibrary_Conv_InterfaceToObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_InterfaceToObject"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_InterfaceToObject) == 0x000018, "Wrong size on KismetSystemLibrary_Conv_InterfaceToObject"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_InterfaceToObject, Interface) == 0x000000, "Member 'KismetSystemLibrary_Conv_InterfaceToObject::Interface' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_InterfaceToObject, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_Conv_InterfaceToObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_ObjectToClass \ +static_assert(alignof(KismetSystemLibrary_Conv_ObjectToClass) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_ObjectToClass"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_ObjectToClass) == 0x000018, "Wrong size on KismetSystemLibrary_Conv_ObjectToClass"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ObjectToClass, Object) == 0x000000, "Member 'KismetSystemLibrary_Conv_ObjectToClass::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ObjectToClass, Class_0) == 0x000008, "Member 'KismetSystemLibrary_Conv_ObjectToClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ObjectToClass, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_Conv_ObjectToClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_ObjectToSoftObjectReference \ +static_assert(alignof(KismetSystemLibrary_Conv_ObjectToSoftObjectReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_ObjectToSoftObjectReference"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_ObjectToSoftObjectReference) == 0x000030, "Wrong size on KismetSystemLibrary_Conv_ObjectToSoftObjectReference"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ObjectToSoftObjectReference, Object) == 0x000000, "Member 'KismetSystemLibrary_Conv_ObjectToSoftObjectReference::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_ObjectToSoftObjectReference, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_Conv_ObjectToSoftObjectReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_PrimaryAssetIdToString \ +static_assert(alignof(KismetSystemLibrary_Conv_PrimaryAssetIdToString) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_PrimaryAssetIdToString"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_PrimaryAssetIdToString) == 0x000020, "Wrong size on KismetSystemLibrary_Conv_PrimaryAssetIdToString"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_PrimaryAssetIdToString, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_Conv_PrimaryAssetIdToString::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_PrimaryAssetIdToString, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_Conv_PrimaryAssetIdToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_PrimaryAssetTypeToString \ +static_assert(alignof(KismetSystemLibrary_Conv_PrimaryAssetTypeToString) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_PrimaryAssetTypeToString"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_PrimaryAssetTypeToString) == 0x000018, "Wrong size on KismetSystemLibrary_Conv_PrimaryAssetTypeToString"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_PrimaryAssetTypeToString, PrimaryAssetType) == 0x000000, "Member 'KismetSystemLibrary_Conv_PrimaryAssetTypeToString::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_PrimaryAssetTypeToString, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_Conv_PrimaryAssetTypeToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef) == 0x000048, "Wrong size on KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef, SoftClassPath) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef::SoftClassPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftClassReferenceToClass \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftClassReferenceToClass) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftClassReferenceToClass"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftClassReferenceToClass) == 0x000030, "Wrong size on KismetSystemLibrary_Conv_SoftClassReferenceToClass"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassReferenceToClass, SoftClass) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftClassReferenceToClass::SoftClass' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassReferenceToClass, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftClassReferenceToClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftClassReferenceToString \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftClassReferenceToString) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftClassReferenceToString"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftClassReferenceToString) == 0x000038, "Wrong size on KismetSystemLibrary_Conv_SoftClassReferenceToString"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassReferenceToString, SoftClassReference) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftClassReferenceToString::SoftClassReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftClassReferenceToString, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftClassReferenceToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftObjectReferenceToObject \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftObjectReferenceToObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftObjectReferenceToObject"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftObjectReferenceToObject) == 0x000030, "Wrong size on KismetSystemLibrary_Conv_SoftObjectReferenceToObject"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjectReferenceToObject, SoftObject) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftObjectReferenceToObject::SoftObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjectReferenceToObject, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftObjectReferenceToObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftObjectReferenceToString \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftObjectReferenceToString) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftObjectReferenceToString"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftObjectReferenceToString) == 0x000038, "Wrong size on KismetSystemLibrary_Conv_SoftObjectReferenceToString"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjectReferenceToString, SoftObjectReference) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftObjectReferenceToString::SoftObjectReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjectReferenceToString, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftObjectReferenceToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef) == 0x000048, "Wrong size on KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef, SoftObjectPath) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef::SoftObjectPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath) == 0x000048, "Wrong size on KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath, SoftClassReference) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath::SoftClassReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath \ +static_assert(alignof(KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath"); \ +static_assert(sizeof(KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath) == 0x000048, "Wrong size on KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath, SoftObjectReference) == 0x000000, "Member 'KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath::SoftObjectReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ConvertToAbsolutePath \ +static_assert(alignof(KismetSystemLibrary_ConvertToAbsolutePath) == 0x000008, "Wrong alignment on KismetSystemLibrary_ConvertToAbsolutePath"); \ +static_assert(sizeof(KismetSystemLibrary_ConvertToAbsolutePath) == 0x000020, "Wrong size on KismetSystemLibrary_ConvertToAbsolutePath"); \ +static_assert(offsetof(KismetSystemLibrary_ConvertToAbsolutePath, Filename) == 0x000000, "Member 'KismetSystemLibrary_ConvertToAbsolutePath::Filename' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ConvertToAbsolutePath, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_ConvertToAbsolutePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ConvertToRelativePath \ +static_assert(alignof(KismetSystemLibrary_ConvertToRelativePath) == 0x000008, "Wrong alignment on KismetSystemLibrary_ConvertToRelativePath"); \ +static_assert(sizeof(KismetSystemLibrary_ConvertToRelativePath) == 0x000020, "Wrong size on KismetSystemLibrary_ConvertToRelativePath"); \ +static_assert(offsetof(KismetSystemLibrary_ConvertToRelativePath, Filename) == 0x000000, "Member 'KismetSystemLibrary_ConvertToRelativePath::Filename' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ConvertToRelativePath, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_ConvertToRelativePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_CreateCopyForUndoBuffer \ +static_assert(alignof(KismetSystemLibrary_CreateCopyForUndoBuffer) == 0x000008, "Wrong alignment on KismetSystemLibrary_CreateCopyForUndoBuffer"); \ +static_assert(sizeof(KismetSystemLibrary_CreateCopyForUndoBuffer) == 0x000008, "Wrong size on KismetSystemLibrary_CreateCopyForUndoBuffer"); \ +static_assert(offsetof(KismetSystemLibrary_CreateCopyForUndoBuffer, ObjectToModify) == 0x000000, "Member 'KismetSystemLibrary_CreateCopyForUndoBuffer::ObjectToModify' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_Delay \ +static_assert(alignof(KismetSystemLibrary_Delay) == 0x000008, "Wrong alignment on KismetSystemLibrary_Delay"); \ +static_assert(sizeof(KismetSystemLibrary_Delay) == 0x000028, "Wrong size on KismetSystemLibrary_Delay"); \ +static_assert(offsetof(KismetSystemLibrary_Delay, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_Delay::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Delay, Duration) == 0x000008, "Member 'KismetSystemLibrary_Delay::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_Delay, LatentInfo) == 0x000010, "Member 'KismetSystemLibrary_Delay::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DelayUntilNextTick \ +static_assert(alignof(KismetSystemLibrary_DelayUntilNextTick) == 0x000008, "Wrong alignment on KismetSystemLibrary_DelayUntilNextTick"); \ +static_assert(sizeof(KismetSystemLibrary_DelayUntilNextTick) == 0x000020, "Wrong size on KismetSystemLibrary_DelayUntilNextTick"); \ +static_assert(offsetof(KismetSystemLibrary_DelayUntilNextTick, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DelayUntilNextTick::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DelayUntilNextTick, LatentInfo) == 0x000008, "Member 'KismetSystemLibrary_DelayUntilNextTick::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DoesImplementInterface \ +static_assert(alignof(KismetSystemLibrary_DoesImplementInterface) == 0x000008, "Wrong alignment on KismetSystemLibrary_DoesImplementInterface"); \ +static_assert(sizeof(KismetSystemLibrary_DoesImplementInterface) == 0x000018, "Wrong size on KismetSystemLibrary_DoesImplementInterface"); \ +static_assert(offsetof(KismetSystemLibrary_DoesImplementInterface, TestObject) == 0x000000, "Member 'KismetSystemLibrary_DoesImplementInterface::TestObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DoesImplementInterface, Interface) == 0x000008, "Member 'KismetSystemLibrary_DoesImplementInterface::Interface' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DoesImplementInterface, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_DoesImplementInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugArrow \ +static_assert(alignof(KismetSystemLibrary_DrawDebugArrow) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugArrow"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugArrow) == 0x000058, "Wrong size on KismetSystemLibrary_DrawDebugArrow"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugArrow::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, LineStart) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugArrow::LineStart' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, LineEnd) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugArrow::LineEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, ArrowSize) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugArrow::ArrowSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, LineColor) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugArrow::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, Duration) == 0x00004C, "Member 'KismetSystemLibrary_DrawDebugArrow::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugArrow, Thickness) == 0x000050, "Member 'KismetSystemLibrary_DrawDebugArrow::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugBox \ +static_assert(alignof(KismetSystemLibrary_DrawDebugBox) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugBox"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugBox) == 0x000068, "Wrong size on KismetSystemLibrary_DrawDebugBox"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugBox::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, Center) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugBox::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, Extent) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugBox::Extent' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, LineColor) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugBox::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, Rotation) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugBox::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, Duration) == 0x000060, "Member 'KismetSystemLibrary_DrawDebugBox::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugBox, Thickness) == 0x000064, "Member 'KismetSystemLibrary_DrawDebugBox::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCamera \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCamera) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCamera"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCamera) == 0x000020, "Wrong size on KismetSystemLibrary_DrawDebugCamera"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCamera, CameraActor) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCamera::CameraActor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCamera, CameraColor) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCamera::CameraColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCamera, Duration) == 0x000018, "Member 'KismetSystemLibrary_DrawDebugCamera::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCapsule \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCapsule) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCapsule"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCapsule) == 0x000058, "Wrong size on KismetSystemLibrary_DrawDebugCapsule"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCapsule::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, Center) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCapsule::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, HalfHeight) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugCapsule::HalfHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, Radius) == 0x000024, "Member 'KismetSystemLibrary_DrawDebugCapsule::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, Rotation) == 0x000028, "Member 'KismetSystemLibrary_DrawDebugCapsule::Rotation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, LineColor) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugCapsule::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, Duration) == 0x000050, "Member 'KismetSystemLibrary_DrawDebugCapsule::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCapsule, Thickness) == 0x000054, "Member 'KismetSystemLibrary_DrawDebugCapsule::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCircle \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCircle) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCircle"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCircle) == 0x000078, "Wrong size on KismetSystemLibrary_DrawDebugCircle"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCircle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, Center) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCircle::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, Radius) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugCircle::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, NumSegments) == 0x000024, "Member 'KismetSystemLibrary_DrawDebugCircle::NumSegments' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, LineColor) == 0x000028, "Member 'KismetSystemLibrary_DrawDebugCircle::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, Duration) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugCircle::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, Thickness) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugCircle::Thickness' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, YAxis) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugCircle::YAxis' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, ZAxis) == 0x000058, "Member 'KismetSystemLibrary_DrawDebugCircle::ZAxis' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCircle, bDrawAxis) == 0x000070, "Member 'KismetSystemLibrary_DrawDebugCircle::bDrawAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCone \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCone) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCone"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCone) == 0x000060, "Wrong size on KismetSystemLibrary_DrawDebugCone"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCone::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, Origin) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCone::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, Direction) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugCone::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, Length) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugCone::Length' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, AngleWidth) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugCone::AngleWidth' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, AngleHeight) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugCone::AngleHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, NumSides) == 0x000044, "Member 'KismetSystemLibrary_DrawDebugCone::NumSides' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, LineColor) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugCone::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, Duration) == 0x000058, "Member 'KismetSystemLibrary_DrawDebugCone::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCone, Thickness) == 0x00005C, "Member 'KismetSystemLibrary_DrawDebugCone::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugConeInDegrees \ +static_assert(alignof(KismetSystemLibrary_DrawDebugConeInDegrees) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugConeInDegrees"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugConeInDegrees) == 0x000060, "Wrong size on KismetSystemLibrary_DrawDebugConeInDegrees"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, Origin) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, Direction) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::Direction' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, Length) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::Length' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, AngleWidth) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::AngleWidth' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, AngleHeight) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::AngleHeight' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, NumSides) == 0x000044, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::NumSides' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, LineColor) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, Duration) == 0x000058, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugConeInDegrees, Thickness) == 0x00005C, "Member 'KismetSystemLibrary_DrawDebugConeInDegrees::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCoordinateSystem \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCoordinateSystem) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCoordinateSystem"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCoordinateSystem) == 0x000048, "Wrong size on KismetSystemLibrary_DrawDebugCoordinateSystem"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, AxisLoc) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::AxisLoc' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, AxisRot) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::AxisRot' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, Scale) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::Scale' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, Duration) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCoordinateSystem, Thickness) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugCoordinateSystem::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugCylinder \ +static_assert(alignof(KismetSystemLibrary_DrawDebugCylinder) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugCylinder"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugCylinder) == 0x000058, "Wrong size on KismetSystemLibrary_DrawDebugCylinder"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugCylinder::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, Start) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugCylinder::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, End) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugCylinder::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, Radius) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugCylinder::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, Segments) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugCylinder::Segments' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, LineColor) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugCylinder::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, Duration) == 0x000050, "Member 'KismetSystemLibrary_DrawDebugCylinder::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugCylinder, Thickness) == 0x000054, "Member 'KismetSystemLibrary_DrawDebugCylinder::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugFloatHistoryLocation \ +static_assert(alignof(KismetSystemLibrary_DrawDebugFloatHistoryLocation) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugFloatHistoryLocation"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugFloatHistoryLocation) == 0x000068, "Wrong size on KismetSystemLibrary_DrawDebugFloatHistoryLocation"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, FloatHistory) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::FloatHistory' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, DrawLocation) == 0x000028, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::DrawLocation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, DrawSize) == 0x000040, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::DrawSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, DrawColor) == 0x000050, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::DrawColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryLocation, Duration) == 0x000060, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryLocation::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugFloatHistoryTransform \ +static_assert(alignof(KismetSystemLibrary_DrawDebugFloatHistoryTransform) == 0x000010, "Wrong alignment on KismetSystemLibrary_DrawDebugFloatHistoryTransform"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugFloatHistoryTransform) == 0x0000C0, "Wrong size on KismetSystemLibrary_DrawDebugFloatHistoryTransform"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, FloatHistory) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::FloatHistory' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, DrawTransform) == 0x000030, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::DrawTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, DrawSize) == 0x000090, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::DrawSize' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, DrawColor) == 0x0000A0, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::DrawColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFloatHistoryTransform, Duration) == 0x0000B0, "Member 'KismetSystemLibrary_DrawDebugFloatHistoryTransform::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugFrustum \ +static_assert(alignof(KismetSystemLibrary_DrawDebugFrustum) == 0x000010, "Wrong alignment on KismetSystemLibrary_DrawDebugFrustum"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugFrustum) == 0x000090, "Wrong size on KismetSystemLibrary_DrawDebugFrustum"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFrustum, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugFrustum::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFrustum, FrustumTransform) == 0x000010, "Member 'KismetSystemLibrary_DrawDebugFrustum::FrustumTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFrustum, FrustumColor) == 0x000070, "Member 'KismetSystemLibrary_DrawDebugFrustum::FrustumColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFrustum, Duration) == 0x000080, "Member 'KismetSystemLibrary_DrawDebugFrustum::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugFrustum, Thickness) == 0x000084, "Member 'KismetSystemLibrary_DrawDebugFrustum::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugLine \ +static_assert(alignof(KismetSystemLibrary_DrawDebugLine) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugLine"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugLine) == 0x000050, "Wrong size on KismetSystemLibrary_DrawDebugLine"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugLine::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, LineStart) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugLine::LineStart' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, LineEnd) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugLine::LineEnd' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, LineColor) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugLine::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, Duration) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugLine::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugLine, Thickness) == 0x00004C, "Member 'KismetSystemLibrary_DrawDebugLine::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugPlane \ +static_assert(alignof(KismetSystemLibrary_DrawDebugPlane) == 0x000010, "Wrong alignment on KismetSystemLibrary_DrawDebugPlane"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugPlane) == 0x000060, "Wrong size on KismetSystemLibrary_DrawDebugPlane"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugPlane::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, PlaneCoordinates) == 0x000010, "Member 'KismetSystemLibrary_DrawDebugPlane::PlaneCoordinates' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, Location) == 0x000030, "Member 'KismetSystemLibrary_DrawDebugPlane::Location' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, Size) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugPlane::Size' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, PlaneColor) == 0x00004C, "Member 'KismetSystemLibrary_DrawDebugPlane::PlaneColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPlane, Duration) == 0x00005C, "Member 'KismetSystemLibrary_DrawDebugPlane::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugPoint \ +static_assert(alignof(KismetSystemLibrary_DrawDebugPoint) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugPoint"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugPoint) == 0x000038, "Wrong size on KismetSystemLibrary_DrawDebugPoint"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPoint, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugPoint::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPoint, Position) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPoint, Size) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugPoint::Size' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPoint, PointColor) == 0x000024, "Member 'KismetSystemLibrary_DrawDebugPoint::PointColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugPoint, Duration) == 0x000034, "Member 'KismetSystemLibrary_DrawDebugPoint::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugSphere \ +static_assert(alignof(KismetSystemLibrary_DrawDebugSphere) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugSphere"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugSphere) == 0x000040, "Wrong size on KismetSystemLibrary_DrawDebugSphere"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugSphere::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, Center) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugSphere::Center' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, Radius) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugSphere::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, Segments) == 0x000024, "Member 'KismetSystemLibrary_DrawDebugSphere::Segments' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, LineColor) == 0x000028, "Member 'KismetSystemLibrary_DrawDebugSphere::LineColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, Duration) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugSphere::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugSphere, Thickness) == 0x00003C, "Member 'KismetSystemLibrary_DrawDebugSphere::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_DrawDebugString \ +static_assert(alignof(KismetSystemLibrary_DrawDebugString) == 0x000008, "Wrong alignment on KismetSystemLibrary_DrawDebugString"); \ +static_assert(sizeof(KismetSystemLibrary_DrawDebugString) == 0x000050, "Wrong size on KismetSystemLibrary_DrawDebugString"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_DrawDebugString::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, TextLocation) == 0x000008, "Member 'KismetSystemLibrary_DrawDebugString::TextLocation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, Text) == 0x000020, "Member 'KismetSystemLibrary_DrawDebugString::Text' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, TestBaseActor) == 0x000030, "Member 'KismetSystemLibrary_DrawDebugString::TestBaseActor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, TextColor) == 0x000038, "Member 'KismetSystemLibrary_DrawDebugString::TextColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_DrawDebugString, Duration) == 0x000048, "Member 'KismetSystemLibrary_DrawDebugString::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_EndTransaction \ +static_assert(alignof(KismetSystemLibrary_EndTransaction) == 0x000004, "Wrong alignment on KismetSystemLibrary_EndTransaction"); \ +static_assert(sizeof(KismetSystemLibrary_EndTransaction) == 0x000004, "Wrong size on KismetSystemLibrary_EndTransaction"); \ +static_assert(offsetof(KismetSystemLibrary_EndTransaction, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_EndTransaction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_EqualEqual_PrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_EqualEqual_PrimaryAssetId) == 0x000004, "Wrong alignment on KismetSystemLibrary_EqualEqual_PrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_EqualEqual_PrimaryAssetId) == 0x000024, "Wrong size on KismetSystemLibrary_EqualEqual_PrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetId, A) == 0x000000, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetId::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetId, B) == 0x000010, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetId::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetId, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_EqualEqual_PrimaryAssetType \ +static_assert(alignof(KismetSystemLibrary_EqualEqual_PrimaryAssetType) == 0x000004, "Wrong alignment on KismetSystemLibrary_EqualEqual_PrimaryAssetType"); \ +static_assert(sizeof(KismetSystemLibrary_EqualEqual_PrimaryAssetType) == 0x000014, "Wrong size on KismetSystemLibrary_EqualEqual_PrimaryAssetType"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetType, A) == 0x000000, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetType::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetType, B) == 0x000008, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetType::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_PrimaryAssetType, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_EqualEqual_PrimaryAssetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_EqualEqual_SoftClassReference \ +static_assert(alignof(KismetSystemLibrary_EqualEqual_SoftClassReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_EqualEqual_SoftClassReference"); \ +static_assert(sizeof(KismetSystemLibrary_EqualEqual_SoftClassReference) == 0x000058, "Wrong size on KismetSystemLibrary_EqualEqual_SoftClassReference"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftClassReference, A) == 0x000000, "Member 'KismetSystemLibrary_EqualEqual_SoftClassReference::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftClassReference, B) == 0x000028, "Member 'KismetSystemLibrary_EqualEqual_SoftClassReference::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftClassReference, ReturnValue) == 0x000050, "Member 'KismetSystemLibrary_EqualEqual_SoftClassReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_EqualEqual_SoftObjectReference \ +static_assert(alignof(KismetSystemLibrary_EqualEqual_SoftObjectReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_EqualEqual_SoftObjectReference"); \ +static_assert(sizeof(KismetSystemLibrary_EqualEqual_SoftObjectReference) == 0x000058, "Wrong size on KismetSystemLibrary_EqualEqual_SoftObjectReference"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftObjectReference, A) == 0x000000, "Member 'KismetSystemLibrary_EqualEqual_SoftObjectReference::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftObjectReference, B) == 0x000028, "Member 'KismetSystemLibrary_EqualEqual_SoftObjectReference::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_EqualEqual_SoftObjectReference, ReturnValue) == 0x000050, "Member 'KismetSystemLibrary_EqualEqual_SoftObjectReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ExecuteConsoleCommand \ +static_assert(alignof(KismetSystemLibrary_ExecuteConsoleCommand) == 0x000008, "Wrong alignment on KismetSystemLibrary_ExecuteConsoleCommand"); \ +static_assert(sizeof(KismetSystemLibrary_ExecuteConsoleCommand) == 0x000020, "Wrong size on KismetSystemLibrary_ExecuteConsoleCommand"); \ +static_assert(offsetof(KismetSystemLibrary_ExecuteConsoleCommand, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_ExecuteConsoleCommand::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ExecuteConsoleCommand, Command) == 0x000008, "Member 'KismetSystemLibrary_ExecuteConsoleCommand::Command' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ExecuteConsoleCommand, SpecificPlayer) == 0x000018, "Member 'KismetSystemLibrary_ExecuteConsoleCommand::SpecificPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_FlushDebugStrings \ +static_assert(alignof(KismetSystemLibrary_FlushDebugStrings) == 0x000008, "Wrong alignment on KismetSystemLibrary_FlushDebugStrings"); \ +static_assert(sizeof(KismetSystemLibrary_FlushDebugStrings) == 0x000008, "Wrong size on KismetSystemLibrary_FlushDebugStrings"); \ +static_assert(offsetof(KismetSystemLibrary_FlushDebugStrings, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_FlushDebugStrings::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_FlushPersistentDebugLines \ +static_assert(alignof(KismetSystemLibrary_FlushPersistentDebugLines) == 0x000008, "Wrong alignment on KismetSystemLibrary_FlushPersistentDebugLines"); \ +static_assert(sizeof(KismetSystemLibrary_FlushPersistentDebugLines) == 0x000008, "Wrong size on KismetSystemLibrary_FlushPersistentDebugLines"); \ +static_assert(offsetof(KismetSystemLibrary_FlushPersistentDebugLines, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_FlushPersistentDebugLines::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetActorBounds \ +static_assert(alignof(KismetSystemLibrary_GetActorBounds) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetActorBounds"); \ +static_assert(sizeof(KismetSystemLibrary_GetActorBounds) == 0x000038, "Wrong size on KismetSystemLibrary_GetActorBounds"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorBounds, Actor) == 0x000000, "Member 'KismetSystemLibrary_GetActorBounds::Actor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorBounds, Origin) == 0x000008, "Member 'KismetSystemLibrary_GetActorBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorBounds, BoxExtent) == 0x000020, "Member 'KismetSystemLibrary_GetActorBounds::BoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetActorListFromComponentList \ +static_assert(alignof(KismetSystemLibrary_GetActorListFromComponentList) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetActorListFromComponentList"); \ +static_assert(sizeof(KismetSystemLibrary_GetActorListFromComponentList) == 0x000028, "Wrong size on KismetSystemLibrary_GetActorListFromComponentList"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorListFromComponentList, ComponentList) == 0x000000, "Member 'KismetSystemLibrary_GetActorListFromComponentList::ComponentList' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorListFromComponentList, ActorClassFilter) == 0x000010, "Member 'KismetSystemLibrary_GetActorListFromComponentList::ActorClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetActorListFromComponentList, OutActorList) == 0x000018, "Member 'KismetSystemLibrary_GetActorListFromComponentList::OutActorList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetAdIDCount \ +static_assert(alignof(KismetSystemLibrary_GetAdIDCount) == 0x000004, "Wrong alignment on KismetSystemLibrary_GetAdIDCount"); \ +static_assert(sizeof(KismetSystemLibrary_GetAdIDCount) == 0x000004, "Wrong size on KismetSystemLibrary_GetAdIDCount"); \ +static_assert(offsetof(KismetSystemLibrary_GetAdIDCount, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetAdIDCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetBuildConfiguration \ +static_assert(alignof(KismetSystemLibrary_GetBuildConfiguration) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetBuildConfiguration"); \ +static_assert(sizeof(KismetSystemLibrary_GetBuildConfiguration) == 0x000010, "Wrong size on KismetSystemLibrary_GetBuildConfiguration"); \ +static_assert(offsetof(KismetSystemLibrary_GetBuildConfiguration, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetBuildConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetBuildVersion \ +static_assert(alignof(KismetSystemLibrary_GetBuildVersion) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetBuildVersion"); \ +static_assert(sizeof(KismetSystemLibrary_GetBuildVersion) == 0x000010, "Wrong size on KismetSystemLibrary_GetBuildVersion"); \ +static_assert(offsetof(KismetSystemLibrary_GetBuildVersion, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetBuildVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetClassDisplayName \ +static_assert(alignof(KismetSystemLibrary_GetClassDisplayName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetClassDisplayName"); \ +static_assert(sizeof(KismetSystemLibrary_GetClassDisplayName) == 0x000018, "Wrong size on KismetSystemLibrary_GetClassDisplayName"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassDisplayName, Class_0) == 0x000000, "Member 'KismetSystemLibrary_GetClassDisplayName::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassDisplayName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetClassDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetClassFromPrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_GetClassFromPrimaryAssetId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetClassFromPrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_GetClassFromPrimaryAssetId) == 0x000018, "Wrong size on KismetSystemLibrary_GetClassFromPrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassFromPrimaryAssetId, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_GetClassFromPrimaryAssetId::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassFromPrimaryAssetId, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetClassFromPrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetClassTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_GetClassTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetClassTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetClassTopLevelAssetPath) == 0x000018, "Wrong size on KismetSystemLibrary_GetClassTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassTopLevelAssetPath, Class_0) == 0x000000, "Member 'KismetSystemLibrary_GetClassTopLevelAssetPath::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetClassTopLevelAssetPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetClassTopLevelAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetCommandLine \ +static_assert(alignof(KismetSystemLibrary_GetCommandLine) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetCommandLine"); \ +static_assert(sizeof(KismetSystemLibrary_GetCommandLine) == 0x000010, "Wrong size on KismetSystemLibrary_GetCommandLine"); \ +static_assert(offsetof(KismetSystemLibrary_GetCommandLine, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetCommandLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetComponentBounds \ +static_assert(alignof(KismetSystemLibrary_GetComponentBounds) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetComponentBounds"); \ +static_assert(sizeof(KismetSystemLibrary_GetComponentBounds) == 0x000040, "Wrong size on KismetSystemLibrary_GetComponentBounds"); \ +static_assert(offsetof(KismetSystemLibrary_GetComponentBounds, Component) == 0x000000, "Member 'KismetSystemLibrary_GetComponentBounds::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetComponentBounds, Origin) == 0x000008, "Member 'KismetSystemLibrary_GetComponentBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetComponentBounds, BoxExtent) == 0x000020, "Member 'KismetSystemLibrary_GetComponentBounds::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetComponentBounds, SphereRadius) == 0x000038, "Member 'KismetSystemLibrary_GetComponentBounds::SphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetConsoleVariableBoolValue \ +static_assert(alignof(KismetSystemLibrary_GetConsoleVariableBoolValue) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetConsoleVariableBoolValue"); \ +static_assert(sizeof(KismetSystemLibrary_GetConsoleVariableBoolValue) == 0x000018, "Wrong size on KismetSystemLibrary_GetConsoleVariableBoolValue"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableBoolValue, VariableName) == 0x000000, "Member 'KismetSystemLibrary_GetConsoleVariableBoolValue::VariableName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableBoolValue, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetConsoleVariableBoolValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetConsoleVariableFloatValue \ +static_assert(alignof(KismetSystemLibrary_GetConsoleVariableFloatValue) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetConsoleVariableFloatValue"); \ +static_assert(sizeof(KismetSystemLibrary_GetConsoleVariableFloatValue) == 0x000018, "Wrong size on KismetSystemLibrary_GetConsoleVariableFloatValue"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableFloatValue, VariableName) == 0x000000, "Member 'KismetSystemLibrary_GetConsoleVariableFloatValue::VariableName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableFloatValue, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetConsoleVariableFloatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetConsoleVariableIntValue \ +static_assert(alignof(KismetSystemLibrary_GetConsoleVariableIntValue) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetConsoleVariableIntValue"); \ +static_assert(sizeof(KismetSystemLibrary_GetConsoleVariableIntValue) == 0x000018, "Wrong size on KismetSystemLibrary_GetConsoleVariableIntValue"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableIntValue, VariableName) == 0x000000, "Member 'KismetSystemLibrary_GetConsoleVariableIntValue::VariableName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableIntValue, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetConsoleVariableIntValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetConsoleVariableStringValue \ +static_assert(alignof(KismetSystemLibrary_GetConsoleVariableStringValue) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetConsoleVariableStringValue"); \ +static_assert(sizeof(KismetSystemLibrary_GetConsoleVariableStringValue) == 0x000020, "Wrong size on KismetSystemLibrary_GetConsoleVariableStringValue"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableStringValue, VariableName) == 0x000000, "Member 'KismetSystemLibrary_GetConsoleVariableStringValue::VariableName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetConsoleVariableStringValue, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetConsoleVariableStringValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetConvenientWindowedResolutions \ +static_assert(alignof(KismetSystemLibrary_GetConvenientWindowedResolutions) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetConvenientWindowedResolutions"); \ +static_assert(sizeof(KismetSystemLibrary_GetConvenientWindowedResolutions) == 0x000018, "Wrong size on KismetSystemLibrary_GetConvenientWindowedResolutions"); \ +static_assert(offsetof(KismetSystemLibrary_GetConvenientWindowedResolutions, Resolutions) == 0x000000, "Member 'KismetSystemLibrary_GetConvenientWindowedResolutions::Resolutions' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetConvenientWindowedResolutions, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetConvenientWindowedResolutions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetCurrentBundleState \ +static_assert(alignof(KismetSystemLibrary_GetCurrentBundleState) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetCurrentBundleState"); \ +static_assert(sizeof(KismetSystemLibrary_GetCurrentBundleState) == 0x000030, "Wrong size on KismetSystemLibrary_GetCurrentBundleState"); \ +static_assert(offsetof(KismetSystemLibrary_GetCurrentBundleState, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_GetCurrentBundleState::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetCurrentBundleState, bForceCurrentState) == 0x000010, "Member 'KismetSystemLibrary_GetCurrentBundleState::bForceCurrentState' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetCurrentBundleState, OutBundles) == 0x000018, "Member 'KismetSystemLibrary_GetCurrentBundleState::OutBundles' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetCurrentBundleState, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_GetCurrentBundleState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetDefaultLanguage \ +static_assert(alignof(KismetSystemLibrary_GetDefaultLanguage) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetDefaultLanguage"); \ +static_assert(sizeof(KismetSystemLibrary_GetDefaultLanguage) == 0x000010, "Wrong size on KismetSystemLibrary_GetDefaultLanguage"); \ +static_assert(offsetof(KismetSystemLibrary_GetDefaultLanguage, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetDefaultLanguage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetDefaultLocale \ +static_assert(alignof(KismetSystemLibrary_GetDefaultLocale) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetDefaultLocale"); \ +static_assert(sizeof(KismetSystemLibrary_GetDefaultLocale) == 0x000010, "Wrong size on KismetSystemLibrary_GetDefaultLocale"); \ +static_assert(offsetof(KismetSystemLibrary_GetDefaultLocale, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetDefaultLocale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetDeviceId \ +static_assert(alignof(KismetSystemLibrary_GetDeviceId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetDeviceId"); \ +static_assert(sizeof(KismetSystemLibrary_GetDeviceId) == 0x000010, "Wrong size on KismetSystemLibrary_GetDeviceId"); \ +static_assert(offsetof(KismetSystemLibrary_GetDeviceId, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetDeviceId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetDisplayName \ +static_assert(alignof(KismetSystemLibrary_GetDisplayName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetDisplayName"); \ +static_assert(sizeof(KismetSystemLibrary_GetDisplayName) == 0x000018, "Wrong size on KismetSystemLibrary_GetDisplayName"); \ +static_assert(offsetof(KismetSystemLibrary_GetDisplayName, Object) == 0x000000, "Member 'KismetSystemLibrary_GetDisplayName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetDisplayName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetEngineVersion \ +static_assert(alignof(KismetSystemLibrary_GetEngineVersion) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetEngineVersion"); \ +static_assert(sizeof(KismetSystemLibrary_GetEngineVersion) == 0x000010, "Wrong size on KismetSystemLibrary_GetEngineVersion"); \ +static_assert(offsetof(KismetSystemLibrary_GetEngineVersion, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetEngineVersion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetEnumTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_GetEnumTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetEnumTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetEnumTopLevelAssetPath) == 0x000018, "Wrong size on KismetSystemLibrary_GetEnumTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetEnumTopLevelAssetPath, Enum) == 0x000000, "Member 'KismetSystemLibrary_GetEnumTopLevelAssetPath::Enum' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetEnumTopLevelAssetPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetEnumTopLevelAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetFrameCount \ +static_assert(alignof(KismetSystemLibrary_GetFrameCount) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetFrameCount"); \ +static_assert(sizeof(KismetSystemLibrary_GetFrameCount) == 0x000008, "Wrong size on KismetSystemLibrary_GetFrameCount"); \ +static_assert(offsetof(KismetSystemLibrary_GetFrameCount, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetFrameCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetGameBundleId \ +static_assert(alignof(KismetSystemLibrary_GetGameBundleId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetGameBundleId"); \ +static_assert(sizeof(KismetSystemLibrary_GetGameBundleId) == 0x000010, "Wrong size on KismetSystemLibrary_GetGameBundleId"); \ +static_assert(offsetof(KismetSystemLibrary_GetGameBundleId, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetGameBundleId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetGameName \ +static_assert(alignof(KismetSystemLibrary_GetGameName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetGameName"); \ +static_assert(sizeof(KismetSystemLibrary_GetGameName) == 0x000010, "Wrong size on KismetSystemLibrary_GetGameName"); \ +static_assert(offsetof(KismetSystemLibrary_GetGameName, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetGameName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetGamepadButtonGlyph \ +static_assert(alignof(KismetSystemLibrary_GetGamepadButtonGlyph) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetGamepadButtonGlyph"); \ +static_assert(sizeof(KismetSystemLibrary_GetGamepadButtonGlyph) == 0x000020, "Wrong size on KismetSystemLibrary_GetGamepadButtonGlyph"); \ +static_assert(offsetof(KismetSystemLibrary_GetGamepadButtonGlyph, ButtonKey) == 0x000000, "Member 'KismetSystemLibrary_GetGamepadButtonGlyph::ButtonKey' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetGamepadButtonGlyph, ControllerIndex) == 0x000010, "Member 'KismetSystemLibrary_GetGamepadButtonGlyph::ControllerIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetGamepadButtonGlyph, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_GetGamepadButtonGlyph::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetGamepadControllerName \ +static_assert(alignof(KismetSystemLibrary_GetGamepadControllerName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetGamepadControllerName"); \ +static_assert(sizeof(KismetSystemLibrary_GetGamepadControllerName) == 0x000018, "Wrong size on KismetSystemLibrary_GetGamepadControllerName"); \ +static_assert(offsetof(KismetSystemLibrary_GetGamepadControllerName, ControllerId) == 0x000000, "Member 'KismetSystemLibrary_GetGamepadControllerName::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetGamepadControllerName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetGamepadControllerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetGameTimeInSeconds \ +static_assert(alignof(KismetSystemLibrary_GetGameTimeInSeconds) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetGameTimeInSeconds"); \ +static_assert(sizeof(KismetSystemLibrary_GetGameTimeInSeconds) == 0x000010, "Wrong size on KismetSystemLibrary_GetGameTimeInSeconds"); \ +static_assert(offsetof(KismetSystemLibrary_GetGameTimeInSeconds, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_GetGameTimeInSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetGameTimeInSeconds, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetGameTimeInSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetLocalCurrencyCode \ +static_assert(alignof(KismetSystemLibrary_GetLocalCurrencyCode) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetLocalCurrencyCode"); \ +static_assert(sizeof(KismetSystemLibrary_GetLocalCurrencyCode) == 0x000010, "Wrong size on KismetSystemLibrary_GetLocalCurrencyCode"); \ +static_assert(offsetof(KismetSystemLibrary_GetLocalCurrencyCode, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetLocalCurrencyCode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetLocalCurrencySymbol \ +static_assert(alignof(KismetSystemLibrary_GetLocalCurrencySymbol) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetLocalCurrencySymbol"); \ +static_assert(sizeof(KismetSystemLibrary_GetLocalCurrencySymbol) == 0x000010, "Wrong size on KismetSystemLibrary_GetLocalCurrencySymbol"); \ +static_assert(offsetof(KismetSystemLibrary_GetLocalCurrencySymbol, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetLocalCurrencySymbol::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetMinYResolutionFor3DView \ +static_assert(alignof(KismetSystemLibrary_GetMinYResolutionFor3DView) == 0x000004, "Wrong alignment on KismetSystemLibrary_GetMinYResolutionFor3DView"); \ +static_assert(sizeof(KismetSystemLibrary_GetMinYResolutionFor3DView) == 0x000004, "Wrong size on KismetSystemLibrary_GetMinYResolutionFor3DView"); \ +static_assert(offsetof(KismetSystemLibrary_GetMinYResolutionFor3DView, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetMinYResolutionFor3DView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetMinYResolutionForUI \ +static_assert(alignof(KismetSystemLibrary_GetMinYResolutionForUI) == 0x000004, "Wrong alignment on KismetSystemLibrary_GetMinYResolutionForUI"); \ +static_assert(sizeof(KismetSystemLibrary_GetMinYResolutionForUI) == 0x000004, "Wrong size on KismetSystemLibrary_GetMinYResolutionForUI"); \ +static_assert(offsetof(KismetSystemLibrary_GetMinYResolutionForUI, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetMinYResolutionForUI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetObjectFromPrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_GetObjectFromPrimaryAssetId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetObjectFromPrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_GetObjectFromPrimaryAssetId) == 0x000018, "Wrong size on KismetSystemLibrary_GetObjectFromPrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_GetObjectFromPrimaryAssetId, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_GetObjectFromPrimaryAssetId::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetObjectFromPrimaryAssetId, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetObjectFromPrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetObjectName \ +static_assert(alignof(KismetSystemLibrary_GetObjectName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetObjectName"); \ +static_assert(sizeof(KismetSystemLibrary_GetObjectName) == 0x000018, "Wrong size on KismetSystemLibrary_GetObjectName"); \ +static_assert(offsetof(KismetSystemLibrary_GetObjectName, Object) == 0x000000, "Member 'KismetSystemLibrary_GetObjectName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetObjectName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetObjectName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetOuterObject \ +static_assert(alignof(KismetSystemLibrary_GetOuterObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetOuterObject"); \ +static_assert(sizeof(KismetSystemLibrary_GetOuterObject) == 0x000010, "Wrong size on KismetSystemLibrary_GetOuterObject"); \ +static_assert(offsetof(KismetSystemLibrary_GetOuterObject, Object) == 0x000000, "Member 'KismetSystemLibrary_GetOuterObject::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetOuterObject, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetOuterObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPathName \ +static_assert(alignof(KismetSystemLibrary_GetPathName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPathName"); \ +static_assert(sizeof(KismetSystemLibrary_GetPathName) == 0x000018, "Wrong size on KismetSystemLibrary_GetPathName"); \ +static_assert(offsetof(KismetSystemLibrary_GetPathName, Object) == 0x000000, "Member 'KismetSystemLibrary_GetPathName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPathName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetPathName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPlatformUserDir \ +static_assert(alignof(KismetSystemLibrary_GetPlatformUserDir) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPlatformUserDir"); \ +static_assert(sizeof(KismetSystemLibrary_GetPlatformUserDir) == 0x000010, "Wrong size on KismetSystemLibrary_GetPlatformUserDir"); \ +static_assert(offsetof(KismetSystemLibrary_GetPlatformUserDir, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetPlatformUserDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPlatformUserName \ +static_assert(alignof(KismetSystemLibrary_GetPlatformUserName) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPlatformUserName"); \ +static_assert(sizeof(KismetSystemLibrary_GetPlatformUserName) == 0x000010, "Wrong size on KismetSystemLibrary_GetPlatformUserName"); \ +static_assert(offsetof(KismetSystemLibrary_GetPlatformUserName, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetPlatformUserName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPreferredLanguages \ +static_assert(alignof(KismetSystemLibrary_GetPreferredLanguages) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPreferredLanguages"); \ +static_assert(sizeof(KismetSystemLibrary_GetPreferredLanguages) == 0x000010, "Wrong size on KismetSystemLibrary_GetPreferredLanguages"); \ +static_assert(offsetof(KismetSystemLibrary_GetPreferredLanguages, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetPreferredLanguages::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetIdFromClass \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetIdFromClass) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetIdFromClass"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetIdFromClass) == 0x000018, "Wrong size on KismetSystemLibrary_GetPrimaryAssetIdFromClass"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromClass, Class_0) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromClass, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetIdFromObject \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetIdFromObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetIdFromObject"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetIdFromObject) == 0x000018, "Wrong size on KismetSystemLibrary_GetPrimaryAssetIdFromObject"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromObject, Object) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromObject::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromObject, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference) == 0x000038, "Wrong size on KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference, SoftClassReference) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference::SoftClassReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference) == 0x000038, "Wrong size on KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference, SoftObjectReference) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference::SoftObjectReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetIdList \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetIdList) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetIdList"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetIdList) == 0x000018, "Wrong size on KismetSystemLibrary_GetPrimaryAssetIdList"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdList, PrimaryAssetType) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetIdList::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetIdList, OutPrimaryAssetIdList) == 0x000008, "Member 'KismetSystemLibrary_GetPrimaryAssetIdList::OutPrimaryAssetIdList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetPrimaryAssetsWithBundleState \ +static_assert(alignof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetPrimaryAssetsWithBundleState"); \ +static_assert(sizeof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState) == 0x000048, "Wrong size on KismetSystemLibrary_GetPrimaryAssetsWithBundleState"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState, RequiredBundles) == 0x000000, "Member 'KismetSystemLibrary_GetPrimaryAssetsWithBundleState::RequiredBundles' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState, ExcludedBundles) == 0x000010, "Member 'KismetSystemLibrary_GetPrimaryAssetsWithBundleState::ExcludedBundles' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState, ValidTypes) == 0x000020, "Member 'KismetSystemLibrary_GetPrimaryAssetsWithBundleState::ValidTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState, bForceCurrentState) == 0x000030, "Member 'KismetSystemLibrary_GetPrimaryAssetsWithBundleState::bForceCurrentState' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetPrimaryAssetsWithBundleState, OutPrimaryAssetIdList) == 0x000038, "Member 'KismetSystemLibrary_GetPrimaryAssetsWithBundleState::OutPrimaryAssetIdList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetProjectContentDirectory \ +static_assert(alignof(KismetSystemLibrary_GetProjectContentDirectory) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetProjectContentDirectory"); \ +static_assert(sizeof(KismetSystemLibrary_GetProjectContentDirectory) == 0x000010, "Wrong size on KismetSystemLibrary_GetProjectContentDirectory"); \ +static_assert(offsetof(KismetSystemLibrary_GetProjectContentDirectory, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetProjectContentDirectory::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetProjectDirectory \ +static_assert(alignof(KismetSystemLibrary_GetProjectDirectory) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetProjectDirectory"); \ +static_assert(sizeof(KismetSystemLibrary_GetProjectDirectory) == 0x000010, "Wrong size on KismetSystemLibrary_GetProjectDirectory"); \ +static_assert(offsetof(KismetSystemLibrary_GetProjectDirectory, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetProjectDirectory::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetProjectSavedDirectory \ +static_assert(alignof(KismetSystemLibrary_GetProjectSavedDirectory) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetProjectSavedDirectory"); \ +static_assert(sizeof(KismetSystemLibrary_GetProjectSavedDirectory) == 0x000010, "Wrong size on KismetSystemLibrary_GetProjectSavedDirectory"); \ +static_assert(offsetof(KismetSystemLibrary_GetProjectSavedDirectory, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetProjectSavedDirectory::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetRenderingDetailMode \ +static_assert(alignof(KismetSystemLibrary_GetRenderingDetailMode) == 0x000004, "Wrong alignment on KismetSystemLibrary_GetRenderingDetailMode"); \ +static_assert(sizeof(KismetSystemLibrary_GetRenderingDetailMode) == 0x000004, "Wrong size on KismetSystemLibrary_GetRenderingDetailMode"); \ +static_assert(offsetof(KismetSystemLibrary_GetRenderingDetailMode, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetRenderingDetailMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetRenderingMaterialQualityLevel \ +static_assert(alignof(KismetSystemLibrary_GetRenderingMaterialQualityLevel) == 0x000004, "Wrong alignment on KismetSystemLibrary_GetRenderingMaterialQualityLevel"); \ +static_assert(sizeof(KismetSystemLibrary_GetRenderingMaterialQualityLevel) == 0x000004, "Wrong size on KismetSystemLibrary_GetRenderingMaterialQualityLevel"); \ +static_assert(offsetof(KismetSystemLibrary_GetRenderingMaterialQualityLevel, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetRenderingMaterialQualityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSoftClassPath \ +static_assert(alignof(KismetSystemLibrary_GetSoftClassPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSoftClassPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetSoftClassPath) == 0x000028, "Wrong size on KismetSystemLibrary_GetSoftClassPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassPath, Class_0) == 0x000000, "Member 'KismetSystemLibrary_GetSoftClassPath::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetSoftClassPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId) == 0x000038, "Wrong size on KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSoftClassTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_GetSoftClassTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSoftClassTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetSoftClassTopLevelAssetPath) == 0x000038, "Wrong size on KismetSystemLibrary_GetSoftClassTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassTopLevelAssetPath, SoftClassReference) == 0x000000, "Member 'KismetSystemLibrary_GetSoftClassTopLevelAssetPath::SoftClassReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftClassTopLevelAssetPath, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_GetSoftClassTopLevelAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSoftObjectPath \ +static_assert(alignof(KismetSystemLibrary_GetSoftObjectPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSoftObjectPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetSoftObjectPath) == 0x000028, "Wrong size on KismetSystemLibrary_GetSoftObjectPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftObjectPath, Object) == 0x000000, "Member 'KismetSystemLibrary_GetSoftObjectPath::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftObjectPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId) == 0x000038, "Wrong size on KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetStructTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_GetStructTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetStructTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetStructTopLevelAssetPath) == 0x000018, "Wrong size on KismetSystemLibrary_GetStructTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetStructTopLevelAssetPath, Struct) == 0x000000, "Member 'KismetSystemLibrary_GetStructTopLevelAssetPath::Struct' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetStructTopLevelAssetPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetStructTopLevelAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSupportedFullscreenResolutions \ +static_assert(alignof(KismetSystemLibrary_GetSupportedFullscreenResolutions) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSupportedFullscreenResolutions"); \ +static_assert(sizeof(KismetSystemLibrary_GetSupportedFullscreenResolutions) == 0x000018, "Wrong size on KismetSystemLibrary_GetSupportedFullscreenResolutions"); \ +static_assert(offsetof(KismetSystemLibrary_GetSupportedFullscreenResolutions, Resolutions) == 0x000000, "Member 'KismetSystemLibrary_GetSupportedFullscreenResolutions::Resolutions' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSupportedFullscreenResolutions, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_GetSupportedFullscreenResolutions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetSystemPath \ +static_assert(alignof(KismetSystemLibrary_GetSystemPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetSystemPath"); \ +static_assert(sizeof(KismetSystemLibrary_GetSystemPath) == 0x000018, "Wrong size on KismetSystemLibrary_GetSystemPath"); \ +static_assert(offsetof(KismetSystemLibrary_GetSystemPath, Object) == 0x000000, "Member 'KismetSystemLibrary_GetSystemPath::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_GetSystemPath, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_GetSystemPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetUniqueDeviceId \ +static_assert(alignof(KismetSystemLibrary_GetUniqueDeviceId) == 0x000008, "Wrong alignment on KismetSystemLibrary_GetUniqueDeviceId"); \ +static_assert(sizeof(KismetSystemLibrary_GetUniqueDeviceId) == 0x000010, "Wrong size on KismetSystemLibrary_GetUniqueDeviceId"); \ +static_assert(offsetof(KismetSystemLibrary_GetUniqueDeviceId, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetUniqueDeviceId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_GetVolumeButtonsHandledBySystem \ +static_assert(alignof(KismetSystemLibrary_GetVolumeButtonsHandledBySystem) == 0x000001, "Wrong alignment on KismetSystemLibrary_GetVolumeButtonsHandledBySystem"); \ +static_assert(sizeof(KismetSystemLibrary_GetVolumeButtonsHandledBySystem) == 0x000001, "Wrong size on KismetSystemLibrary_GetVolumeButtonsHandledBySystem"); \ +static_assert(offsetof(KismetSystemLibrary_GetVolumeButtonsHandledBySystem, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_GetVolumeButtonsHandledBySystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_HasMultipleLocalPlayers \ +static_assert(alignof(KismetSystemLibrary_HasMultipleLocalPlayers) == 0x000008, "Wrong alignment on KismetSystemLibrary_HasMultipleLocalPlayers"); \ +static_assert(sizeof(KismetSystemLibrary_HasMultipleLocalPlayers) == 0x000010, "Wrong size on KismetSystemLibrary_HasMultipleLocalPlayers"); \ +static_assert(offsetof(KismetSystemLibrary_HasMultipleLocalPlayers, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_HasMultipleLocalPlayers::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_HasMultipleLocalPlayers, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_HasMultipleLocalPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsControllerAssignedToGamepad \ +static_assert(alignof(KismetSystemLibrary_IsControllerAssignedToGamepad) == 0x000004, "Wrong alignment on KismetSystemLibrary_IsControllerAssignedToGamepad"); \ +static_assert(sizeof(KismetSystemLibrary_IsControllerAssignedToGamepad) == 0x000008, "Wrong size on KismetSystemLibrary_IsControllerAssignedToGamepad"); \ +static_assert(offsetof(KismetSystemLibrary_IsControllerAssignedToGamepad, ControllerId) == 0x000000, "Member 'KismetSystemLibrary_IsControllerAssignedToGamepad::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsControllerAssignedToGamepad, ReturnValue) == 0x000004, "Member 'KismetSystemLibrary_IsControllerAssignedToGamepad::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsDedicatedServer \ +static_assert(alignof(KismetSystemLibrary_IsDedicatedServer) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsDedicatedServer"); \ +static_assert(sizeof(KismetSystemLibrary_IsDedicatedServer) == 0x000010, "Wrong size on KismetSystemLibrary_IsDedicatedServer"); \ +static_assert(offsetof(KismetSystemLibrary_IsDedicatedServer, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_IsDedicatedServer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsDedicatedServer, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsDedicatedServer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsInterstitialAdAvailable \ +static_assert(alignof(KismetSystemLibrary_IsInterstitialAdAvailable) == 0x000001, "Wrong alignment on KismetSystemLibrary_IsInterstitialAdAvailable"); \ +static_assert(sizeof(KismetSystemLibrary_IsInterstitialAdAvailable) == 0x000001, "Wrong size on KismetSystemLibrary_IsInterstitialAdAvailable"); \ +static_assert(offsetof(KismetSystemLibrary_IsInterstitialAdAvailable, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_IsInterstitialAdAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsInterstitialAdRequested \ +static_assert(alignof(KismetSystemLibrary_IsInterstitialAdRequested) == 0x000001, "Wrong alignment on KismetSystemLibrary_IsInterstitialAdRequested"); \ +static_assert(sizeof(KismetSystemLibrary_IsInterstitialAdRequested) == 0x000001, "Wrong size on KismetSystemLibrary_IsInterstitialAdRequested"); \ +static_assert(offsetof(KismetSystemLibrary_IsInterstitialAdRequested, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_IsInterstitialAdRequested::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsLoggedIn \ +static_assert(alignof(KismetSystemLibrary_IsLoggedIn) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsLoggedIn"); \ +static_assert(sizeof(KismetSystemLibrary_IsLoggedIn) == 0x000010, "Wrong size on KismetSystemLibrary_IsLoggedIn"); \ +static_assert(offsetof(KismetSystemLibrary_IsLoggedIn, SpecificPlayer) == 0x000000, "Member 'KismetSystemLibrary_IsLoggedIn::SpecificPlayer' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsLoggedIn, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsLoggedIn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsPackagedForDistribution \ +static_assert(alignof(KismetSystemLibrary_IsPackagedForDistribution) == 0x000001, "Wrong alignment on KismetSystemLibrary_IsPackagedForDistribution"); \ +static_assert(sizeof(KismetSystemLibrary_IsPackagedForDistribution) == 0x000001, "Wrong size on KismetSystemLibrary_IsPackagedForDistribution"); \ +static_assert(offsetof(KismetSystemLibrary_IsPackagedForDistribution, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_IsPackagedForDistribution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsScreensaverEnabled \ +static_assert(alignof(KismetSystemLibrary_IsScreensaverEnabled) == 0x000001, "Wrong alignment on KismetSystemLibrary_IsScreensaverEnabled"); \ +static_assert(sizeof(KismetSystemLibrary_IsScreensaverEnabled) == 0x000001, "Wrong size on KismetSystemLibrary_IsScreensaverEnabled"); \ +static_assert(offsetof(KismetSystemLibrary_IsScreensaverEnabled, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_IsScreensaverEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsServer \ +static_assert(alignof(KismetSystemLibrary_IsServer) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsServer"); \ +static_assert(sizeof(KismetSystemLibrary_IsServer) == 0x000010, "Wrong size on KismetSystemLibrary_IsServer"); \ +static_assert(offsetof(KismetSystemLibrary_IsServer, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_IsServer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsServer, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsServer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsSplitScreen \ +static_assert(alignof(KismetSystemLibrary_IsSplitScreen) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsSplitScreen"); \ +static_assert(sizeof(KismetSystemLibrary_IsSplitScreen) == 0x000010, "Wrong size on KismetSystemLibrary_IsSplitScreen"); \ +static_assert(offsetof(KismetSystemLibrary_IsSplitScreen, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_IsSplitScreen::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsSplitScreen, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsSplitScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsStandalone \ +static_assert(alignof(KismetSystemLibrary_IsStandalone) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsStandalone"); \ +static_assert(sizeof(KismetSystemLibrary_IsStandalone) == 0x000010, "Wrong size on KismetSystemLibrary_IsStandalone"); \ +static_assert(offsetof(KismetSystemLibrary_IsStandalone, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_IsStandalone::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsStandalone, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsStandalone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsUnattended \ +static_assert(alignof(KismetSystemLibrary_IsUnattended) == 0x000001, "Wrong alignment on KismetSystemLibrary_IsUnattended"); \ +static_assert(sizeof(KismetSystemLibrary_IsUnattended) == 0x000001, "Wrong size on KismetSystemLibrary_IsUnattended"); \ +static_assert(offsetof(KismetSystemLibrary_IsUnattended, ReturnValue) == 0x000000, "Member 'KismetSystemLibrary_IsUnattended::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValid \ +static_assert(alignof(KismetSystemLibrary_IsValid) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsValid"); \ +static_assert(sizeof(KismetSystemLibrary_IsValid) == 0x000010, "Wrong size on KismetSystemLibrary_IsValid"); \ +static_assert(offsetof(KismetSystemLibrary_IsValid, Object) == 0x000000, "Member 'KismetSystemLibrary_IsValid::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValid, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValidClass \ +static_assert(alignof(KismetSystemLibrary_IsValidClass) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsValidClass"); \ +static_assert(sizeof(KismetSystemLibrary_IsValidClass) == 0x000010, "Wrong size on KismetSystemLibrary_IsValidClass"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidClass, Class_0) == 0x000000, "Member 'KismetSystemLibrary_IsValidClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidClass, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsValidClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValidPrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_IsValidPrimaryAssetId) == 0x000004, "Wrong alignment on KismetSystemLibrary_IsValidPrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_IsValidPrimaryAssetId) == 0x000014, "Wrong size on KismetSystemLibrary_IsValidPrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidPrimaryAssetId, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_IsValidPrimaryAssetId::PrimaryAssetId' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidPrimaryAssetId, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_IsValidPrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValidPrimaryAssetType \ +static_assert(alignof(KismetSystemLibrary_IsValidPrimaryAssetType) == 0x000004, "Wrong alignment on KismetSystemLibrary_IsValidPrimaryAssetType"); \ +static_assert(sizeof(KismetSystemLibrary_IsValidPrimaryAssetType) == 0x00000C, "Wrong size on KismetSystemLibrary_IsValidPrimaryAssetType"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidPrimaryAssetType, PrimaryAssetType) == 0x000000, "Member 'KismetSystemLibrary_IsValidPrimaryAssetType::PrimaryAssetType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidPrimaryAssetType, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_IsValidPrimaryAssetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValidSoftClassReference \ +static_assert(alignof(KismetSystemLibrary_IsValidSoftClassReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsValidSoftClassReference"); \ +static_assert(sizeof(KismetSystemLibrary_IsValidSoftClassReference) == 0x000030, "Wrong size on KismetSystemLibrary_IsValidSoftClassReference"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidSoftClassReference, SoftClassReference) == 0x000000, "Member 'KismetSystemLibrary_IsValidSoftClassReference::SoftClassReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidSoftClassReference, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_IsValidSoftClassReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_IsValidSoftObjectReference \ +static_assert(alignof(KismetSystemLibrary_IsValidSoftObjectReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_IsValidSoftObjectReference"); \ +static_assert(sizeof(KismetSystemLibrary_IsValidSoftObjectReference) == 0x000030, "Wrong size on KismetSystemLibrary_IsValidSoftObjectReference"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidSoftObjectReference, SoftObjectReference) == 0x000000, "Member 'KismetSystemLibrary_IsValidSoftObjectReference::SoftObjectReference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_IsValidSoftObjectReference, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_IsValidSoftObjectReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_ClearTimer \ +static_assert(alignof(KismetSystemLibrary_K2_ClearTimer) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_ClearTimer"); \ +static_assert(sizeof(KismetSystemLibrary_K2_ClearTimer) == 0x000018, "Wrong size on KismetSystemLibrary_K2_ClearTimer"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearTimer, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_ClearTimer::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearTimer, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_ClearTimer::FunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_ClearTimerDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_ClearTimerDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_ClearTimerDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_ClearTimerDelegate) == 0x000010, "Wrong size on KismetSystemLibrary_K2_ClearTimerDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearTimerDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_ClearTimerDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_ClearTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_ClearTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_ClearTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_ClearTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_ClearTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearTimerHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_ClearTimerHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_ClearTimerHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_ClearTimerHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerElapsedTime \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerElapsedTime) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_GetTimerElapsedTime"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerElapsedTime) == 0x000020, "Wrong size on KismetSystemLibrary_K2_GetTimerElapsedTime"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTime, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTime::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTime, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTime::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTime, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate) == 0x000014, "Wrong size on KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerElapsedTimeHandle \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerElapsedTimeHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_GetTimerElapsedTimeHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerElapsedTimeHandle) == 0x000018, "Wrong size on KismetSystemLibrary_K2_GetTimerElapsedTimeHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTimeHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTimeHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTimeHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTimeHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerElapsedTimeHandle, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_GetTimerElapsedTimeHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerRemainingTime \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerRemainingTime) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_GetTimerRemainingTime"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerRemainingTime) == 0x000020, "Wrong size on KismetSystemLibrary_K2_GetTimerRemainingTime"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTime, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTime::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTime, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTime::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTime, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate) == 0x000014, "Wrong size on KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_GetTimerRemainingTimeHandle \ +static_assert(alignof(KismetSystemLibrary_K2_GetTimerRemainingTimeHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_GetTimerRemainingTimeHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_GetTimerRemainingTimeHandle) == 0x000018, "Wrong size on KismetSystemLibrary_K2_GetTimerRemainingTimeHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTimeHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTimeHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTimeHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTimeHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_GetTimerRemainingTimeHandle, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_GetTimerRemainingTimeHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_InvalidateTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_InvalidateTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_InvalidateTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_InvalidateTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_InvalidateTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_InvalidateTimerHandle, Handle) == 0x000000, "Member 'KismetSystemLibrary_K2_InvalidateTimerHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_InvalidateTimerHandle, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_K2_InvalidateTimerHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerActive \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerActive) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_IsTimerActive"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerActive) == 0x000020, "Wrong size on KismetSystemLibrary_K2_IsTimerActive"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActive, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerActive::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActive, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_IsTimerActive::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActive, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_IsTimerActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerActiveDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerActiveDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_IsTimerActiveDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerActiveDelegate) == 0x000014, "Wrong size on KismetSystemLibrary_K2_IsTimerActiveDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActiveDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerActiveDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActiveDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_IsTimerActiveDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerActiveHandle \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerActiveHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_IsTimerActiveHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerActiveHandle) == 0x000018, "Wrong size on KismetSystemLibrary_K2_IsTimerActiveHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActiveHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerActiveHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActiveHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_IsTimerActiveHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerActiveHandle, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_IsTimerActiveHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerPaused \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerPaused) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_IsTimerPaused"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerPaused) == 0x000020, "Wrong size on KismetSystemLibrary_K2_IsTimerPaused"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPaused, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerPaused::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPaused, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_IsTimerPaused::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPaused, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_IsTimerPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerPausedDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerPausedDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_IsTimerPausedDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerPausedDelegate) == 0x000014, "Wrong size on KismetSystemLibrary_K2_IsTimerPausedDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPausedDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerPausedDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPausedDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_IsTimerPausedDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsTimerPausedHandle \ +static_assert(alignof(KismetSystemLibrary_K2_IsTimerPausedHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_IsTimerPausedHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsTimerPausedHandle) == 0x000018, "Wrong size on KismetSystemLibrary_K2_IsTimerPausedHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPausedHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_IsTimerPausedHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPausedHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_IsTimerPausedHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsTimerPausedHandle, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_IsTimerPausedHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_IsValidTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_IsValidTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_IsValidTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_IsValidTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_IsValidTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsValidTimerHandle, Handle) == 0x000000, "Member 'KismetSystemLibrary_K2_IsValidTimerHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_IsValidTimerHandle, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_K2_IsValidTimerHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_PauseTimer \ +static_assert(alignof(KismetSystemLibrary_K2_PauseTimer) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_PauseTimer"); \ +static_assert(sizeof(KismetSystemLibrary_K2_PauseTimer) == 0x000018, "Wrong size on KismetSystemLibrary_K2_PauseTimer"); \ +static_assert(offsetof(KismetSystemLibrary_K2_PauseTimer, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_PauseTimer::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_PauseTimer, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_PauseTimer::FunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_PauseTimerDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_PauseTimerDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_PauseTimerDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_PauseTimerDelegate) == 0x000010, "Wrong size on KismetSystemLibrary_K2_PauseTimerDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_PauseTimerDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_PauseTimerDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_PauseTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_PauseTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_PauseTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_PauseTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_PauseTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_PauseTimerHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_PauseTimerHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_PauseTimerHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_PauseTimerHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_SetTimer \ +static_assert(alignof(KismetSystemLibrary_K2_SetTimer) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_SetTimer"); \ +static_assert(sizeof(KismetSystemLibrary_K2_SetTimer) == 0x000030, "Wrong size on KismetSystemLibrary_K2_SetTimer"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_SetTimer::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_SetTimer::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, Time) == 0x000018, "Member 'KismetSystemLibrary_K2_SetTimer::Time' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, bLooping) == 0x00001C, "Member 'KismetSystemLibrary_K2_SetTimer::bLooping' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, InitialStartDelay) == 0x000020, "Member 'KismetSystemLibrary_K2_SetTimer::InitialStartDelay' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, InitialStartDelayVariance) == 0x000024, "Member 'KismetSystemLibrary_K2_SetTimer::InitialStartDelayVariance' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimer, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_K2_SetTimer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_SetTimerDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_SetTimerDelegate) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_SetTimerDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_SetTimerDelegate) == 0x000028, "Wrong size on KismetSystemLibrary_K2_SetTimerDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, Time) == 0x000010, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::Time' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, bLooping) == 0x000014, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::bLooping' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, InitialStartDelay) == 0x000018, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::InitialStartDelay' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, InitialStartDelayVariance) == 0x00001C, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::InitialStartDelayVariance' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerDelegate, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_K2_SetTimerDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_SetTimerForNextTick \ +static_assert(alignof(KismetSystemLibrary_K2_SetTimerForNextTick) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_SetTimerForNextTick"); \ +static_assert(sizeof(KismetSystemLibrary_K2_SetTimerForNextTick) == 0x000020, "Wrong size on KismetSystemLibrary_K2_SetTimerForNextTick"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerForNextTick, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_SetTimerForNextTick::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerForNextTick, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_SetTimerForNextTick::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerForNextTick, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_SetTimerForNextTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_SetTimerForNextTickDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_SetTimerForNextTickDelegate) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_SetTimerForNextTickDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_SetTimerForNextTickDelegate) == 0x000018, "Wrong size on KismetSystemLibrary_K2_SetTimerForNextTickDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerForNextTickDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_SetTimerForNextTickDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_SetTimerForNextTickDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_SetTimerForNextTickDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_TimerExists \ +static_assert(alignof(KismetSystemLibrary_K2_TimerExists) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_TimerExists"); \ +static_assert(sizeof(KismetSystemLibrary_K2_TimerExists) == 0x000020, "Wrong size on KismetSystemLibrary_K2_TimerExists"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExists, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_TimerExists::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExists, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_TimerExists::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExists, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_K2_TimerExists::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_TimerExistsDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_TimerExistsDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_TimerExistsDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_TimerExistsDelegate) == 0x000014, "Wrong size on KismetSystemLibrary_K2_TimerExistsDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExistsDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_TimerExistsDelegate::Delegate' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExistsDelegate, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_TimerExistsDelegate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_TimerExistsHandle \ +static_assert(alignof(KismetSystemLibrary_K2_TimerExistsHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_TimerExistsHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_TimerExistsHandle) == 0x000018, "Wrong size on KismetSystemLibrary_K2_TimerExistsHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExistsHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_TimerExistsHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExistsHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_TimerExistsHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_TimerExistsHandle, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_K2_TimerExistsHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_UnPauseTimer \ +static_assert(alignof(KismetSystemLibrary_K2_UnPauseTimer) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_UnPauseTimer"); \ +static_assert(sizeof(KismetSystemLibrary_K2_UnPauseTimer) == 0x000018, "Wrong size on KismetSystemLibrary_K2_UnPauseTimer"); \ +static_assert(offsetof(KismetSystemLibrary_K2_UnPauseTimer, Object) == 0x000000, "Member 'KismetSystemLibrary_K2_UnPauseTimer::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_UnPauseTimer, FunctionName) == 0x000008, "Member 'KismetSystemLibrary_K2_UnPauseTimer::FunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_UnPauseTimerDelegate \ +static_assert(alignof(KismetSystemLibrary_K2_UnPauseTimerDelegate) == 0x000004, "Wrong alignment on KismetSystemLibrary_K2_UnPauseTimerDelegate"); \ +static_assert(sizeof(KismetSystemLibrary_K2_UnPauseTimerDelegate) == 0x000010, "Wrong size on KismetSystemLibrary_K2_UnPauseTimerDelegate"); \ +static_assert(offsetof(KismetSystemLibrary_K2_UnPauseTimerDelegate, Delegate) == 0x000000, "Member 'KismetSystemLibrary_K2_UnPauseTimerDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_K2_UnPauseTimerHandle \ +static_assert(alignof(KismetSystemLibrary_K2_UnPauseTimerHandle) == 0x000008, "Wrong alignment on KismetSystemLibrary_K2_UnPauseTimerHandle"); \ +static_assert(sizeof(KismetSystemLibrary_K2_UnPauseTimerHandle) == 0x000010, "Wrong size on KismetSystemLibrary_K2_UnPauseTimerHandle"); \ +static_assert(offsetof(KismetSystemLibrary_K2_UnPauseTimerHandle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_K2_UnPauseTimerHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_K2_UnPauseTimerHandle, Handle) == 0x000008, "Member 'KismetSystemLibrary_K2_UnPauseTimerHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LaunchURL \ +static_assert(alignof(KismetSystemLibrary_LaunchURL) == 0x000008, "Wrong alignment on KismetSystemLibrary_LaunchURL"); \ +static_assert(sizeof(KismetSystemLibrary_LaunchURL) == 0x000010, "Wrong size on KismetSystemLibrary_LaunchURL"); \ +static_assert(offsetof(KismetSystemLibrary_LaunchURL, URL) == 0x000000, "Member 'KismetSystemLibrary_LaunchURL::URL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceMulti \ +static_assert(alignof(KismetSystemLibrary_LineTraceMulti) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceMulti"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceMulti) == 0x000098, "Wrong size on KismetSystemLibrary_LineTraceMulti"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceMulti::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceMulti::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceMulti::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, TraceChannel) == 0x000038, "Member 'KismetSystemLibrary_LineTraceMulti::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, bTraceComplex) == 0x000039, "Member 'KismetSystemLibrary_LineTraceMulti::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_LineTraceMulti::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, DrawDebugType) == 0x000050, "Member 'KismetSystemLibrary_LineTraceMulti::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, OutHits) == 0x000058, "Member 'KismetSystemLibrary_LineTraceMulti::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, bIgnoreSelf) == 0x000068, "Member 'KismetSystemLibrary_LineTraceMulti::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, TraceColor) == 0x00006C, "Member 'KismetSystemLibrary_LineTraceMulti::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, TraceHitColor) == 0x00007C, "Member 'KismetSystemLibrary_LineTraceMulti::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, DrawTime) == 0x00008C, "Member 'KismetSystemLibrary_LineTraceMulti::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMulti, ReturnValue) == 0x000090, "Member 'KismetSystemLibrary_LineTraceMulti::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceMultiByProfile \ +static_assert(alignof(KismetSystemLibrary_LineTraceMultiByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceMultiByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceMultiByProfile) == 0x0000A0, "Wrong size on KismetSystemLibrary_LineTraceMultiByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, ProfileName) == 0x000038, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, bTraceComplex) == 0x000040, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, OutHits) == 0x000060, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, bIgnoreSelf) == 0x000070, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, TraceColor) == 0x000074, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, TraceHitColor) == 0x000084, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, DrawTime) == 0x000094, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiByProfile, ReturnValue) == 0x000098, "Member 'KismetSystemLibrary_LineTraceMultiByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceMultiForObjects \ +static_assert(alignof(KismetSystemLibrary_LineTraceMultiForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceMultiForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceMultiForObjects) == 0x0000A8, "Wrong size on KismetSystemLibrary_LineTraceMultiForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, ObjectTypes) == 0x000038, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, bTraceComplex) == 0x000048, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, DrawDebugType) == 0x000060, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, OutHits) == 0x000068, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, bIgnoreSelf) == 0x000078, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, TraceColor) == 0x00007C, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, TraceHitColor) == 0x00008C, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, DrawTime) == 0x00009C, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceMultiForObjects, ReturnValue) == 0x0000A0, "Member 'KismetSystemLibrary_LineTraceMultiForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceSingle \ +static_assert(alignof(KismetSystemLibrary_LineTraceSingle) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceSingle"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceSingle) == 0x000170, "Wrong size on KismetSystemLibrary_LineTraceSingle"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceSingle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceSingle::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceSingle::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, TraceChannel) == 0x000038, "Member 'KismetSystemLibrary_LineTraceSingle::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, bTraceComplex) == 0x000039, "Member 'KismetSystemLibrary_LineTraceSingle::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_LineTraceSingle::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, DrawDebugType) == 0x000050, "Member 'KismetSystemLibrary_LineTraceSingle::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, OutHit) == 0x000058, "Member 'KismetSystemLibrary_LineTraceSingle::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, bIgnoreSelf) == 0x000140, "Member 'KismetSystemLibrary_LineTraceSingle::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, TraceColor) == 0x000144, "Member 'KismetSystemLibrary_LineTraceSingle::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, TraceHitColor) == 0x000154, "Member 'KismetSystemLibrary_LineTraceSingle::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, DrawTime) == 0x000164, "Member 'KismetSystemLibrary_LineTraceSingle::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingle, ReturnValue) == 0x000168, "Member 'KismetSystemLibrary_LineTraceSingle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceSingleByProfile \ +static_assert(alignof(KismetSystemLibrary_LineTraceSingleByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceSingleByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceSingleByProfile) == 0x000178, "Wrong size on KismetSystemLibrary_LineTraceSingleByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, ProfileName) == 0x000038, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, bTraceComplex) == 0x000040, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, OutHit) == 0x000060, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, bIgnoreSelf) == 0x000148, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, TraceColor) == 0x00014C, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, TraceHitColor) == 0x00015C, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, DrawTime) == 0x00016C, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleByProfile, ReturnValue) == 0x000170, "Member 'KismetSystemLibrary_LineTraceSingleByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LineTraceSingleForObjects \ +static_assert(alignof(KismetSystemLibrary_LineTraceSingleForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_LineTraceSingleForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_LineTraceSingleForObjects) == 0x000180, "Wrong size on KismetSystemLibrary_LineTraceSingleForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, ObjectTypes) == 0x000038, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, bTraceComplex) == 0x000048, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, ActorsToIgnore) == 0x000050, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, DrawDebugType) == 0x000060, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, OutHit) == 0x000068, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, bIgnoreSelf) == 0x000150, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, TraceColor) == 0x000154, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, TraceHitColor) == 0x000164, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, DrawTime) == 0x000174, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LineTraceSingleForObjects, ReturnValue) == 0x000178, "Member 'KismetSystemLibrary_LineTraceSingleForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LoadAsset \ +static_assert(alignof(KismetSystemLibrary_LoadAsset) == 0x000008, "Wrong alignment on KismetSystemLibrary_LoadAsset"); \ +static_assert(sizeof(KismetSystemLibrary_LoadAsset) == 0x000058, "Wrong size on KismetSystemLibrary_LoadAsset"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LoadAsset::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset, Asset) == 0x000008, "Member 'KismetSystemLibrary_LoadAsset::Asset' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset, OnLoaded) == 0x000030, "Member 'KismetSystemLibrary_LoadAsset::OnLoaded' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset, LatentInfo) == 0x000040, "Member 'KismetSystemLibrary_LoadAsset::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LoadAsset_Blocking \ +static_assert(alignof(KismetSystemLibrary_LoadAsset_Blocking) == 0x000008, "Wrong alignment on KismetSystemLibrary_LoadAsset_Blocking"); \ +static_assert(sizeof(KismetSystemLibrary_LoadAsset_Blocking) == 0x000030, "Wrong size on KismetSystemLibrary_LoadAsset_Blocking"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset_Blocking, Asset) == 0x000000, "Member 'KismetSystemLibrary_LoadAsset_Blocking::Asset' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAsset_Blocking, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_LoadAsset_Blocking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LoadAssetClass \ +static_assert(alignof(KismetSystemLibrary_LoadAssetClass) == 0x000008, "Wrong alignment on KismetSystemLibrary_LoadAssetClass"); \ +static_assert(sizeof(KismetSystemLibrary_LoadAssetClass) == 0x000058, "Wrong size on KismetSystemLibrary_LoadAssetClass"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAssetClass, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_LoadAssetClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAssetClass, AssetClass) == 0x000008, "Member 'KismetSystemLibrary_LoadAssetClass::AssetClass' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAssetClass, OnLoaded) == 0x000030, "Member 'KismetSystemLibrary_LoadAssetClass::OnLoaded' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadAssetClass, LatentInfo) == 0x000040, "Member 'KismetSystemLibrary_LoadAssetClass::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LoadClassAsset_Blocking \ +static_assert(alignof(KismetSystemLibrary_LoadClassAsset_Blocking) == 0x000008, "Wrong alignment on KismetSystemLibrary_LoadClassAsset_Blocking"); \ +static_assert(sizeof(KismetSystemLibrary_LoadClassAsset_Blocking) == 0x000030, "Wrong size on KismetSystemLibrary_LoadClassAsset_Blocking"); \ +static_assert(offsetof(KismetSystemLibrary_LoadClassAsset_Blocking, AssetClass) == 0x000000, "Member 'KismetSystemLibrary_LoadClassAsset_Blocking::AssetClass' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LoadClassAsset_Blocking, ReturnValue) == 0x000028, "Member 'KismetSystemLibrary_LoadClassAsset_Blocking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LoadInterstitialAd \ +static_assert(alignof(KismetSystemLibrary_LoadInterstitialAd) == 0x000004, "Wrong alignment on KismetSystemLibrary_LoadInterstitialAd"); \ +static_assert(sizeof(KismetSystemLibrary_LoadInterstitialAd) == 0x000004, "Wrong size on KismetSystemLibrary_LoadInterstitialAd"); \ +static_assert(offsetof(KismetSystemLibrary_LoadInterstitialAd, AdIdIndex) == 0x000000, "Member 'KismetSystemLibrary_LoadInterstitialAd::AdIdIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_LogString \ +static_assert(alignof(KismetSystemLibrary_LogString) == 0x000008, "Wrong alignment on KismetSystemLibrary_LogString"); \ +static_assert(sizeof(KismetSystemLibrary_LogString) == 0x000018, "Wrong size on KismetSystemLibrary_LogString"); \ +static_assert(offsetof(KismetSystemLibrary_LogString, InString) == 0x000000, "Member 'KismetSystemLibrary_LogString::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_LogString, bPrintToLog) == 0x000010, "Member 'KismetSystemLibrary_LogString::bPrintToLog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeARFilter \ +static_assert(alignof(KismetSystemLibrary_MakeARFilter) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeARFilter"); \ +static_assert(sizeof(KismetSystemLibrary_MakeARFilter) == 0x000248, "Wrong size on KismetSystemLibrary_MakeARFilter"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, PackageNames) == 0x000000, "Member 'KismetSystemLibrary_MakeARFilter::PackageNames' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, PackagePaths) == 0x000010, "Member 'KismetSystemLibrary_MakeARFilter::PackagePaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, SoftObjectPaths) == 0x000020, "Member 'KismetSystemLibrary_MakeARFilter::SoftObjectPaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, ClassPaths) == 0x000030, "Member 'KismetSystemLibrary_MakeARFilter::ClassPaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, RecursiveClassPathsExclusionSet) == 0x000040, "Member 'KismetSystemLibrary_MakeARFilter::RecursiveClassPathsExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, ClassNames) == 0x000090, "Member 'KismetSystemLibrary_MakeARFilter::ClassNames' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, RecursiveClassesExclusionSet) == 0x0000A0, "Member 'KismetSystemLibrary_MakeARFilter::RecursiveClassesExclusionSet' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, bRecursivePaths) == 0x0000F0, "Member 'KismetSystemLibrary_MakeARFilter::bRecursivePaths' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, bRecursiveClasses) == 0x0000F1, "Member 'KismetSystemLibrary_MakeARFilter::bRecursiveClasses' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, bIncludeOnlyOnDiskAssets) == 0x0000F2, "Member 'KismetSystemLibrary_MakeARFilter::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeARFilter, ReturnValue) == 0x0000F8, "Member 'KismetSystemLibrary_MakeARFilter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralBool \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralBool) == 0x000001, "Wrong alignment on KismetSystemLibrary_MakeLiteralBool"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralBool) == 0x000002, "Wrong size on KismetSystemLibrary_MakeLiteralBool"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralBool, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralBool::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralBool, ReturnValue) == 0x000001, "Member 'KismetSystemLibrary_MakeLiteralBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralByte \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralByte) == 0x000001, "Wrong alignment on KismetSystemLibrary_MakeLiteralByte"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralByte) == 0x000002, "Wrong size on KismetSystemLibrary_MakeLiteralByte"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralByte, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralByte::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralByte, ReturnValue) == 0x000001, "Member 'KismetSystemLibrary_MakeLiteralByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralDouble \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralDouble) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeLiteralDouble"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralDouble) == 0x000010, "Wrong size on KismetSystemLibrary_MakeLiteralDouble"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralDouble, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralDouble::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralDouble, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_MakeLiteralDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralInt \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralInt) == 0x000004, "Wrong alignment on KismetSystemLibrary_MakeLiteralInt"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralInt) == 0x000008, "Wrong size on KismetSystemLibrary_MakeLiteralInt"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralInt, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralInt::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralInt, ReturnValue) == 0x000004, "Member 'KismetSystemLibrary_MakeLiteralInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralInt64 \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralInt64) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeLiteralInt64"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralInt64) == 0x000010, "Wrong size on KismetSystemLibrary_MakeLiteralInt64"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralInt64, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralInt64::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralInt64, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_MakeLiteralInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralName \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralName) == 0x000004, "Wrong alignment on KismetSystemLibrary_MakeLiteralName"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralName) == 0x000010, "Wrong size on KismetSystemLibrary_MakeLiteralName"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralName, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralName::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralName, ReturnValue) == 0x000008, "Member 'KismetSystemLibrary_MakeLiteralName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralString \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralString) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeLiteralString"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralString) == 0x000020, "Wrong size on KismetSystemLibrary_MakeLiteralString"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralString, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralString::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralString, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_MakeLiteralString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeLiteralText \ +static_assert(alignof(KismetSystemLibrary_MakeLiteralText) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeLiteralText"); \ +static_assert(sizeof(KismetSystemLibrary_MakeLiteralText) == 0x000030, "Wrong size on KismetSystemLibrary_MakeLiteralText"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralText, Value) == 0x000000, "Member 'KismetSystemLibrary_MakeLiteralText::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeLiteralText, ReturnValue) == 0x000018, "Member 'KismetSystemLibrary_MakeLiteralText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeSoftClassPath \ +static_assert(alignof(KismetSystemLibrary_MakeSoftClassPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeSoftClassPath"); \ +static_assert(sizeof(KismetSystemLibrary_MakeSoftClassPath) == 0x000030, "Wrong size on KismetSystemLibrary_MakeSoftClassPath"); \ +static_assert(offsetof(KismetSystemLibrary_MakeSoftClassPath, PathString) == 0x000000, "Member 'KismetSystemLibrary_MakeSoftClassPath::PathString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeSoftClassPath, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_MakeSoftClassPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeSoftObjectPath \ +static_assert(alignof(KismetSystemLibrary_MakeSoftObjectPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeSoftObjectPath"); \ +static_assert(sizeof(KismetSystemLibrary_MakeSoftObjectPath) == 0x000030, "Wrong size on KismetSystemLibrary_MakeSoftObjectPath"); \ +static_assert(offsetof(KismetSystemLibrary_MakeSoftObjectPath, PathString) == 0x000000, "Member 'KismetSystemLibrary_MakeSoftObjectPath::PathString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeSoftObjectPath, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_MakeSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MakeTopLevelAssetPath \ +static_assert(alignof(KismetSystemLibrary_MakeTopLevelAssetPath) == 0x000008, "Wrong alignment on KismetSystemLibrary_MakeTopLevelAssetPath"); \ +static_assert(sizeof(KismetSystemLibrary_MakeTopLevelAssetPath) == 0x000030, "Wrong size on KismetSystemLibrary_MakeTopLevelAssetPath"); \ +static_assert(offsetof(KismetSystemLibrary_MakeTopLevelAssetPath, PackageName) == 0x000000, "Member 'KismetSystemLibrary_MakeTopLevelAssetPath::PackageName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeTopLevelAssetPath, AssetName) == 0x000010, "Member 'KismetSystemLibrary_MakeTopLevelAssetPath::AssetName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MakeTopLevelAssetPath, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_MakeTopLevelAssetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_MoveComponentTo \ +static_assert(alignof(KismetSystemLibrary_MoveComponentTo) == 0x000008, "Wrong alignment on KismetSystemLibrary_MoveComponentTo"); \ +static_assert(sizeof(KismetSystemLibrary_MoveComponentTo) == 0x000060, "Wrong size on KismetSystemLibrary_MoveComponentTo"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, Component) == 0x000000, "Member 'KismetSystemLibrary_MoveComponentTo::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, TargetRelativeLocation) == 0x000008, "Member 'KismetSystemLibrary_MoveComponentTo::TargetRelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, TargetRelativeRotation) == 0x000020, "Member 'KismetSystemLibrary_MoveComponentTo::TargetRelativeRotation' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, bEaseOut) == 0x000038, "Member 'KismetSystemLibrary_MoveComponentTo::bEaseOut' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, bEaseIn) == 0x000039, "Member 'KismetSystemLibrary_MoveComponentTo::bEaseIn' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, OverTime) == 0x00003C, "Member 'KismetSystemLibrary_MoveComponentTo::OverTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, bForceShortestRotationPath) == 0x000040, "Member 'KismetSystemLibrary_MoveComponentTo::bForceShortestRotationPath' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, MoveAction) == 0x000041, "Member 'KismetSystemLibrary_MoveComponentTo::MoveAction' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_MoveComponentTo, LatentInfo) == 0x000048, "Member 'KismetSystemLibrary_MoveComponentTo::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_NormalizeFilename \ +static_assert(alignof(KismetSystemLibrary_NormalizeFilename) == 0x000008, "Wrong alignment on KismetSystemLibrary_NormalizeFilename"); \ +static_assert(sizeof(KismetSystemLibrary_NormalizeFilename) == 0x000020, "Wrong size on KismetSystemLibrary_NormalizeFilename"); \ +static_assert(offsetof(KismetSystemLibrary_NormalizeFilename, InFilename) == 0x000000, "Member 'KismetSystemLibrary_NormalizeFilename::InFilename' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NormalizeFilename, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_NormalizeFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_NotEqual_PrimaryAssetId \ +static_assert(alignof(KismetSystemLibrary_NotEqual_PrimaryAssetId) == 0x000004, "Wrong alignment on KismetSystemLibrary_NotEqual_PrimaryAssetId"); \ +static_assert(sizeof(KismetSystemLibrary_NotEqual_PrimaryAssetId) == 0x000024, "Wrong size on KismetSystemLibrary_NotEqual_PrimaryAssetId"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetId, A) == 0x000000, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetId::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetId, B) == 0x000010, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetId::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetId, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_NotEqual_PrimaryAssetType \ +static_assert(alignof(KismetSystemLibrary_NotEqual_PrimaryAssetType) == 0x000004, "Wrong alignment on KismetSystemLibrary_NotEqual_PrimaryAssetType"); \ +static_assert(sizeof(KismetSystemLibrary_NotEqual_PrimaryAssetType) == 0x000014, "Wrong size on KismetSystemLibrary_NotEqual_PrimaryAssetType"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetType, A) == 0x000000, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetType::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetType, B) == 0x000008, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetType::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_PrimaryAssetType, ReturnValue) == 0x000010, "Member 'KismetSystemLibrary_NotEqual_PrimaryAssetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_NotEqual_SoftClassReference \ +static_assert(alignof(KismetSystemLibrary_NotEqual_SoftClassReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_NotEqual_SoftClassReference"); \ +static_assert(sizeof(KismetSystemLibrary_NotEqual_SoftClassReference) == 0x000058, "Wrong size on KismetSystemLibrary_NotEqual_SoftClassReference"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftClassReference, A) == 0x000000, "Member 'KismetSystemLibrary_NotEqual_SoftClassReference::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftClassReference, B) == 0x000028, "Member 'KismetSystemLibrary_NotEqual_SoftClassReference::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftClassReference, ReturnValue) == 0x000050, "Member 'KismetSystemLibrary_NotEqual_SoftClassReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_NotEqual_SoftObjectReference \ +static_assert(alignof(KismetSystemLibrary_NotEqual_SoftObjectReference) == 0x000008, "Wrong alignment on KismetSystemLibrary_NotEqual_SoftObjectReference"); \ +static_assert(sizeof(KismetSystemLibrary_NotEqual_SoftObjectReference) == 0x000058, "Wrong size on KismetSystemLibrary_NotEqual_SoftObjectReference"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftObjectReference, A) == 0x000000, "Member 'KismetSystemLibrary_NotEqual_SoftObjectReference::A' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftObjectReference, B) == 0x000028, "Member 'KismetSystemLibrary_NotEqual_SoftObjectReference::B' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_NotEqual_SoftObjectReference, ReturnValue) == 0x000050, "Member 'KismetSystemLibrary_NotEqual_SoftObjectReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ParseCommandLine \ +static_assert(alignof(KismetSystemLibrary_ParseCommandLine) == 0x000008, "Wrong alignment on KismetSystemLibrary_ParseCommandLine"); \ +static_assert(sizeof(KismetSystemLibrary_ParseCommandLine) == 0x000080, "Wrong size on KismetSystemLibrary_ParseCommandLine"); \ +static_assert(offsetof(KismetSystemLibrary_ParseCommandLine, InCmdLine) == 0x000000, "Member 'KismetSystemLibrary_ParseCommandLine::InCmdLine' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseCommandLine, OutTokens) == 0x000010, "Member 'KismetSystemLibrary_ParseCommandLine::OutTokens' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseCommandLine, OutSwitches) == 0x000020, "Member 'KismetSystemLibrary_ParseCommandLine::OutSwitches' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseCommandLine, OutParams) == 0x000030, "Member 'KismetSystemLibrary_ParseCommandLine::OutParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ParseParam \ +static_assert(alignof(KismetSystemLibrary_ParseParam) == 0x000008, "Wrong alignment on KismetSystemLibrary_ParseParam"); \ +static_assert(sizeof(KismetSystemLibrary_ParseParam) == 0x000028, "Wrong size on KismetSystemLibrary_ParseParam"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParam, InString) == 0x000000, "Member 'KismetSystemLibrary_ParseParam::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParam, InParam) == 0x000010, "Member 'KismetSystemLibrary_ParseParam::InParam' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParam, ReturnValue) == 0x000020, "Member 'KismetSystemLibrary_ParseParam::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ParseParamValue \ +static_assert(alignof(KismetSystemLibrary_ParseParamValue) == 0x000008, "Wrong alignment on KismetSystemLibrary_ParseParamValue"); \ +static_assert(sizeof(KismetSystemLibrary_ParseParamValue) == 0x000038, "Wrong size on KismetSystemLibrary_ParseParamValue"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParamValue, InString) == 0x000000, "Member 'KismetSystemLibrary_ParseParamValue::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParamValue, InParam) == 0x000010, "Member 'KismetSystemLibrary_ParseParamValue::InParam' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParamValue, OutValue) == 0x000020, "Member 'KismetSystemLibrary_ParseParamValue::OutValue' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ParseParamValue, ReturnValue) == 0x000030, "Member 'KismetSystemLibrary_ParseParamValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_PrintString \ +static_assert(alignof(KismetSystemLibrary_PrintString) == 0x000008, "Wrong alignment on KismetSystemLibrary_PrintString"); \ +static_assert(sizeof(KismetSystemLibrary_PrintString) == 0x000038, "Wrong size on KismetSystemLibrary_PrintString"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_PrintString::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, InString) == 0x000008, "Member 'KismetSystemLibrary_PrintString::InString' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, bPrintToScreen) == 0x000018, "Member 'KismetSystemLibrary_PrintString::bPrintToScreen' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, bPrintToLog) == 0x000019, "Member 'KismetSystemLibrary_PrintString::bPrintToLog' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, TextColor) == 0x00001C, "Member 'KismetSystemLibrary_PrintString::TextColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, Duration) == 0x00002C, "Member 'KismetSystemLibrary_PrintString::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintString, Key) == 0x000030, "Member 'KismetSystemLibrary_PrintString::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_PrintText \ +static_assert(alignof(KismetSystemLibrary_PrintText) == 0x000008, "Wrong alignment on KismetSystemLibrary_PrintText"); \ +static_assert(sizeof(KismetSystemLibrary_PrintText) == 0x000040, "Wrong size on KismetSystemLibrary_PrintText"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_PrintText::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, InText) == 0x000008, "Member 'KismetSystemLibrary_PrintText::InText' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, bPrintToScreen) == 0x000020, "Member 'KismetSystemLibrary_PrintText::bPrintToScreen' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, bPrintToLog) == 0x000021, "Member 'KismetSystemLibrary_PrintText::bPrintToLog' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, TextColor) == 0x000024, "Member 'KismetSystemLibrary_PrintText::TextColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, Duration) == 0x000034, "Member 'KismetSystemLibrary_PrintText::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_PrintText, Key) == 0x000038, "Member 'KismetSystemLibrary_PrintText::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_PrintWarning \ +static_assert(alignof(KismetSystemLibrary_PrintWarning) == 0x000008, "Wrong alignment on KismetSystemLibrary_PrintWarning"); \ +static_assert(sizeof(KismetSystemLibrary_PrintWarning) == 0x000010, "Wrong size on KismetSystemLibrary_PrintWarning"); \ +static_assert(offsetof(KismetSystemLibrary_PrintWarning, InString) == 0x000000, "Member 'KismetSystemLibrary_PrintWarning::InString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_QuitGame \ +static_assert(alignof(KismetSystemLibrary_QuitGame) == 0x000008, "Wrong alignment on KismetSystemLibrary_QuitGame"); \ +static_assert(sizeof(KismetSystemLibrary_QuitGame) == 0x000018, "Wrong size on KismetSystemLibrary_QuitGame"); \ +static_assert(offsetof(KismetSystemLibrary_QuitGame, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_QuitGame::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_QuitGame, SpecificPlayer) == 0x000008, "Member 'KismetSystemLibrary_QuitGame::SpecificPlayer' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_QuitGame, QuitPreference) == 0x000010, "Member 'KismetSystemLibrary_QuitGame::QuitPreference' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_QuitGame, bIgnorePlatformRestrictions) == 0x000011, "Member 'KismetSystemLibrary_QuitGame::bIgnorePlatformRestrictions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ResetGamepadAssignmentToController \ +static_assert(alignof(KismetSystemLibrary_ResetGamepadAssignmentToController) == 0x000004, "Wrong alignment on KismetSystemLibrary_ResetGamepadAssignmentToController"); \ +static_assert(sizeof(KismetSystemLibrary_ResetGamepadAssignmentToController) == 0x000004, "Wrong size on KismetSystemLibrary_ResetGamepadAssignmentToController"); \ +static_assert(offsetof(KismetSystemLibrary_ResetGamepadAssignmentToController, ControllerId) == 0x000000, "Member 'KismetSystemLibrary_ResetGamepadAssignmentToController::ControllerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_RetriggerableDelay \ +static_assert(alignof(KismetSystemLibrary_RetriggerableDelay) == 0x000008, "Wrong alignment on KismetSystemLibrary_RetriggerableDelay"); \ +static_assert(sizeof(KismetSystemLibrary_RetriggerableDelay) == 0x000028, "Wrong size on KismetSystemLibrary_RetriggerableDelay"); \ +static_assert(offsetof(KismetSystemLibrary_RetriggerableDelay, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_RetriggerableDelay::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_RetriggerableDelay, Duration) == 0x000008, "Member 'KismetSystemLibrary_RetriggerableDelay::Duration' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_RetriggerableDelay, LatentInfo) == 0x000010, "Member 'KismetSystemLibrary_RetriggerableDelay::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetBoolPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetBoolPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetBoolPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetBoolPropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetBoolPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetBoolPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetBoolPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetBoolPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetBoolPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetBoolPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetBoolPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetBytePropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetBytePropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetBytePropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetBytePropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetBytePropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetBytePropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetBytePropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetBytePropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetBytePropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetBytePropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetBytePropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetClassPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetClassPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetClassPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetClassPropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetClassPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetClassPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetClassPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetClassPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetClassPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetClassPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetClassPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetCollisionProfileNameProperty \ +static_assert(alignof(KismetSystemLibrary_SetCollisionProfileNameProperty) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetCollisionProfileNameProperty"); \ +static_assert(sizeof(KismetSystemLibrary_SetCollisionProfileNameProperty) == 0x000018, "Wrong size on KismetSystemLibrary_SetCollisionProfileNameProperty"); \ +static_assert(offsetof(KismetSystemLibrary_SetCollisionProfileNameProperty, Object) == 0x000000, "Member 'KismetSystemLibrary_SetCollisionProfileNameProperty::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetCollisionProfileNameProperty, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetCollisionProfileNameProperty::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetCollisionProfileNameProperty, Value) == 0x000010, "Member 'KismetSystemLibrary_SetCollisionProfileNameProperty::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetColorPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetColorPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetColorPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetColorPropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetColorPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetColorPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetColorPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetColorPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetColorPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetColorPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetColorPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetDoublePropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetDoublePropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetDoublePropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetDoublePropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetDoublePropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetDoublePropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetDoublePropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetDoublePropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetDoublePropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetDoublePropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetDoublePropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetFieldPathPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetFieldPathPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetFieldPathPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetFieldPathPropertyByName) == 0x000030, "Wrong size on KismetSystemLibrary_SetFieldPathPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetFieldPathPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetFieldPathPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetFieldPathPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetFieldPathPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetFieldPathPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetFieldPathPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetGamepadsBlockDeviceFeedback \ +static_assert(alignof(KismetSystemLibrary_SetGamepadsBlockDeviceFeedback) == 0x000001, "Wrong alignment on KismetSystemLibrary_SetGamepadsBlockDeviceFeedback"); \ +static_assert(sizeof(KismetSystemLibrary_SetGamepadsBlockDeviceFeedback) == 0x000001, "Wrong size on KismetSystemLibrary_SetGamepadsBlockDeviceFeedback"); \ +static_assert(offsetof(KismetSystemLibrary_SetGamepadsBlockDeviceFeedback, bBlock) == 0x000000, "Member 'KismetSystemLibrary_SetGamepadsBlockDeviceFeedback::bBlock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetInt64PropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetInt64PropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetInt64PropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetInt64PropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetInt64PropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetInt64PropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetInt64PropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetInt64PropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetInt64PropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetInt64PropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetInt64PropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetInterfacePropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetInterfacePropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetInterfacePropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetInterfacePropertyByName) == 0x000020, "Wrong size on KismetSystemLibrary_SetInterfacePropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetInterfacePropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetInterfacePropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetInterfacePropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetInterfacePropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetInterfacePropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetInterfacePropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetIntPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetIntPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetIntPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetIntPropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetIntPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetIntPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetIntPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetIntPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetIntPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetIntPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetIntPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetLinearColorPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetLinearColorPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetLinearColorPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetLinearColorPropertyByName) == 0x000020, "Wrong size on KismetSystemLibrary_SetLinearColorPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetLinearColorPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetLinearColorPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetLinearColorPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetLinearColorPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetLinearColorPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetLinearColorPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetNamePropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetNamePropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetNamePropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetNamePropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetNamePropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetNamePropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetNamePropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetNamePropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetNamePropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetNamePropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetNamePropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetObjectPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetObjectPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetObjectPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetObjectPropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetObjectPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetObjectPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetObjectPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetObjectPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetObjectPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetObjectPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetObjectPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetRotatorPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetRotatorPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetRotatorPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetRotatorPropertyByName) == 0x000028, "Wrong size on KismetSystemLibrary_SetRotatorPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetRotatorPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetRotatorPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetRotatorPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetRotatorPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetRotatorPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetRotatorPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetSoftClassPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetSoftClassPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetSoftClassPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetSoftClassPropertyByName) == 0x000038, "Wrong size on KismetSystemLibrary_SetSoftClassPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftClassPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetSoftClassPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftClassPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetSoftClassPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftClassPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetSoftClassPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetSoftObjectPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetSoftObjectPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetSoftObjectPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetSoftObjectPropertyByName) == 0x000038, "Wrong size on KismetSystemLibrary_SetSoftObjectPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftObjectPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetSoftObjectPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftObjectPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetSoftObjectPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetSoftObjectPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetSoftObjectPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetStringPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetStringPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetStringPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetStringPropertyByName) == 0x000020, "Wrong size on KismetSystemLibrary_SetStringPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetStringPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetStringPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetStringPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetStringPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetStringPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetStringPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetStructurePropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetStructurePropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetStructurePropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetStructurePropertyByName) == 0x000018, "Wrong size on KismetSystemLibrary_SetStructurePropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetStructurePropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetStructurePropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetStructurePropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetStructurePropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetStructurePropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetStructurePropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetSuppressViewportTransitionMessage \ +static_assert(alignof(KismetSystemLibrary_SetSuppressViewportTransitionMessage) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetSuppressViewportTransitionMessage"); \ +static_assert(sizeof(KismetSystemLibrary_SetSuppressViewportTransitionMessage) == 0x000010, "Wrong size on KismetSystemLibrary_SetSuppressViewportTransitionMessage"); \ +static_assert(offsetof(KismetSystemLibrary_SetSuppressViewportTransitionMessage, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SetSuppressViewportTransitionMessage::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetSuppressViewportTransitionMessage, bState) == 0x000008, "Member 'KismetSystemLibrary_SetSuppressViewportTransitionMessage::bState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetTextPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetTextPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetTextPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetTextPropertyByName) == 0x000028, "Wrong size on KismetSystemLibrary_SetTextPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetTextPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetTextPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetTextPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetTextPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetTextPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetTextPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetTransformPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetTransformPropertyByName) == 0x000010, "Wrong alignment on KismetSystemLibrary_SetTransformPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetTransformPropertyByName) == 0x000070, "Wrong size on KismetSystemLibrary_SetTransformPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetTransformPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetTransformPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetTransformPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetTransformPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetTransformPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetTransformPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetUserActivity \ +static_assert(alignof(KismetSystemLibrary_SetUserActivity) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetUserActivity"); \ +static_assert(sizeof(KismetSystemLibrary_SetUserActivity) == 0x000018, "Wrong size on KismetSystemLibrary_SetUserActivity"); \ +static_assert(offsetof(KismetSystemLibrary_SetUserActivity, UserActivity) == 0x000000, "Member 'KismetSystemLibrary_SetUserActivity::UserActivity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetVector3fPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetVector3fPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetVector3fPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetVector3fPropertyByName) == 0x000020, "Wrong size on KismetSystemLibrary_SetVector3fPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetVector3fPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetVector3fPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetVector3fPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetVector3fPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetVector3fPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetVector3fPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetVectorPropertyByName \ +static_assert(alignof(KismetSystemLibrary_SetVectorPropertyByName) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetVectorPropertyByName"); \ +static_assert(sizeof(KismetSystemLibrary_SetVectorPropertyByName) == 0x000028, "Wrong size on KismetSystemLibrary_SetVectorPropertyByName"); \ +static_assert(offsetof(KismetSystemLibrary_SetVectorPropertyByName, Object) == 0x000000, "Member 'KismetSystemLibrary_SetVectorPropertyByName::Object' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetVectorPropertyByName, PropertyName) == 0x000008, "Member 'KismetSystemLibrary_SetVectorPropertyByName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SetVectorPropertyByName, Value) == 0x000010, "Member 'KismetSystemLibrary_SetVectorPropertyByName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetVolumeButtonsHandledBySystem \ +static_assert(alignof(KismetSystemLibrary_SetVolumeButtonsHandledBySystem) == 0x000001, "Wrong alignment on KismetSystemLibrary_SetVolumeButtonsHandledBySystem"); \ +static_assert(sizeof(KismetSystemLibrary_SetVolumeButtonsHandledBySystem) == 0x000001, "Wrong size on KismetSystemLibrary_SetVolumeButtonsHandledBySystem"); \ +static_assert(offsetof(KismetSystemLibrary_SetVolumeButtonsHandledBySystem, bEnabled) == 0x000000, "Member 'KismetSystemLibrary_SetVolumeButtonsHandledBySystem::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SetWindowTitle \ +static_assert(alignof(KismetSystemLibrary_SetWindowTitle) == 0x000008, "Wrong alignment on KismetSystemLibrary_SetWindowTitle"); \ +static_assert(sizeof(KismetSystemLibrary_SetWindowTitle) == 0x000018, "Wrong size on KismetSystemLibrary_SetWindowTitle"); \ +static_assert(offsetof(KismetSystemLibrary_SetWindowTitle, Title) == 0x000000, "Member 'KismetSystemLibrary_SetWindowTitle::Title' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ShowAdBanner \ +static_assert(alignof(KismetSystemLibrary_ShowAdBanner) == 0x000004, "Wrong alignment on KismetSystemLibrary_ShowAdBanner"); \ +static_assert(sizeof(KismetSystemLibrary_ShowAdBanner) == 0x000008, "Wrong size on KismetSystemLibrary_ShowAdBanner"); \ +static_assert(offsetof(KismetSystemLibrary_ShowAdBanner, AdIdIndex) == 0x000000, "Member 'KismetSystemLibrary_ShowAdBanner::AdIdIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_ShowAdBanner, bShowOnBottomOfScreen) == 0x000004, "Member 'KismetSystemLibrary_ShowAdBanner::bShowOnBottomOfScreen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen \ +static_assert(alignof(KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen) == 0x000008, "Wrong alignment on KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen"); \ +static_assert(sizeof(KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen) == 0x000008, "Wrong size on KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen"); \ +static_assert(offsetof(KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen, SpecificPlayer) == 0x000000, "Member 'KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen::SpecificPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen \ +static_assert(alignof(KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen) == 0x000008, "Wrong alignment on KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen"); \ +static_assert(sizeof(KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen) == 0x000010, "Wrong size on KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen"); \ +static_assert(offsetof(KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen, CategoryName) == 0x000000, "Member 'KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen::CategoryName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SnapshotObject \ +static_assert(alignof(KismetSystemLibrary_SnapshotObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_SnapshotObject"); \ +static_assert(sizeof(KismetSystemLibrary_SnapshotObject) == 0x000008, "Wrong size on KismetSystemLibrary_SnapshotObject"); \ +static_assert(offsetof(KismetSystemLibrary_SnapshotObject, Object) == 0x000000, "Member 'KismetSystemLibrary_SnapshotObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereOverlapActors \ +static_assert(alignof(KismetSystemLibrary_SphereOverlapActors) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereOverlapActors"); \ +static_assert(sizeof(KismetSystemLibrary_SphereOverlapActors) == 0x000068, "Wrong size on KismetSystemLibrary_SphereOverlapActors"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereOverlapActors::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, SpherePos) == 0x000008, "Member 'KismetSystemLibrary_SphereOverlapActors::SpherePos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, SphereRadius) == 0x000020, "Member 'KismetSystemLibrary_SphereOverlapActors::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, ObjectTypes) == 0x000028, "Member 'KismetSystemLibrary_SphereOverlapActors::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, ActorClassFilter) == 0x000038, "Member 'KismetSystemLibrary_SphereOverlapActors::ActorClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_SphereOverlapActors::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, OutActors) == 0x000050, "Member 'KismetSystemLibrary_SphereOverlapActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapActors, ReturnValue) == 0x000060, "Member 'KismetSystemLibrary_SphereOverlapActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereOverlapComponents \ +static_assert(alignof(KismetSystemLibrary_SphereOverlapComponents) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereOverlapComponents"); \ +static_assert(sizeof(KismetSystemLibrary_SphereOverlapComponents) == 0x000068, "Wrong size on KismetSystemLibrary_SphereOverlapComponents"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereOverlapComponents::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, SpherePos) == 0x000008, "Member 'KismetSystemLibrary_SphereOverlapComponents::SpherePos' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, SphereRadius) == 0x000020, "Member 'KismetSystemLibrary_SphereOverlapComponents::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, ObjectTypes) == 0x000028, "Member 'KismetSystemLibrary_SphereOverlapComponents::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, ComponentClassFilter) == 0x000038, "Member 'KismetSystemLibrary_SphereOverlapComponents::ComponentClassFilter' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_SphereOverlapComponents::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, OutComponents) == 0x000050, "Member 'KismetSystemLibrary_SphereOverlapComponents::OutComponents' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereOverlapComponents, ReturnValue) == 0x000060, "Member 'KismetSystemLibrary_SphereOverlapComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceMulti \ +static_assert(alignof(KismetSystemLibrary_SphereTraceMulti) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceMulti"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceMulti) == 0x000098, "Wrong size on KismetSystemLibrary_SphereTraceMulti"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceMulti::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceMulti::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceMulti::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceMulti::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, TraceChannel) == 0x00003C, "Member 'KismetSystemLibrary_SphereTraceMulti::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, bTraceComplex) == 0x00003D, "Member 'KismetSystemLibrary_SphereTraceMulti::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_SphereTraceMulti::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, DrawDebugType) == 0x000050, "Member 'KismetSystemLibrary_SphereTraceMulti::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, OutHits) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceMulti::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, bIgnoreSelf) == 0x000068, "Member 'KismetSystemLibrary_SphereTraceMulti::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, TraceColor) == 0x00006C, "Member 'KismetSystemLibrary_SphereTraceMulti::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, TraceHitColor) == 0x00007C, "Member 'KismetSystemLibrary_SphereTraceMulti::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, DrawTime) == 0x00008C, "Member 'KismetSystemLibrary_SphereTraceMulti::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMulti, ReturnValue) == 0x000090, "Member 'KismetSystemLibrary_SphereTraceMulti::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceMultiByProfile \ +static_assert(alignof(KismetSystemLibrary_SphereTraceMultiByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceMultiByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceMultiByProfile) == 0x0000A0, "Wrong size on KismetSystemLibrary_SphereTraceMultiByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, ProfileName) == 0x00003C, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, bTraceComplex) == 0x000044, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, OutHits) == 0x000060, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, bIgnoreSelf) == 0x000070, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, TraceColor) == 0x000074, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, TraceHitColor) == 0x000084, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, DrawTime) == 0x000094, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiByProfile, ReturnValue) == 0x000098, "Member 'KismetSystemLibrary_SphereTraceMultiByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceMultiForObjects \ +static_assert(alignof(KismetSystemLibrary_SphereTraceMultiForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceMultiForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceMultiForObjects) == 0x0000B0, "Wrong size on KismetSystemLibrary_SphereTraceMultiForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, ObjectTypes) == 0x000040, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, bTraceComplex) == 0x000050, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, ActorsToIgnore) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, DrawDebugType) == 0x000068, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, OutHits) == 0x000070, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::OutHits' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, bIgnoreSelf) == 0x000080, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, TraceColor) == 0x000084, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, TraceHitColor) == 0x000094, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, DrawTime) == 0x0000A4, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceMultiForObjects, ReturnValue) == 0x0000A8, "Member 'KismetSystemLibrary_SphereTraceMultiForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceSingle \ +static_assert(alignof(KismetSystemLibrary_SphereTraceSingle) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceSingle"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceSingle) == 0x000170, "Wrong size on KismetSystemLibrary_SphereTraceSingle"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceSingle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceSingle::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceSingle::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceSingle::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, TraceChannel) == 0x00003C, "Member 'KismetSystemLibrary_SphereTraceSingle::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, bTraceComplex) == 0x00003D, "Member 'KismetSystemLibrary_SphereTraceSingle::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, ActorsToIgnore) == 0x000040, "Member 'KismetSystemLibrary_SphereTraceSingle::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, DrawDebugType) == 0x000050, "Member 'KismetSystemLibrary_SphereTraceSingle::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, OutHit) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceSingle::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, bIgnoreSelf) == 0x000140, "Member 'KismetSystemLibrary_SphereTraceSingle::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, TraceColor) == 0x000144, "Member 'KismetSystemLibrary_SphereTraceSingle::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, TraceHitColor) == 0x000154, "Member 'KismetSystemLibrary_SphereTraceSingle::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, DrawTime) == 0x000164, "Member 'KismetSystemLibrary_SphereTraceSingle::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingle, ReturnValue) == 0x000168, "Member 'KismetSystemLibrary_SphereTraceSingle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceSingleByProfile \ +static_assert(alignof(KismetSystemLibrary_SphereTraceSingleByProfile) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceSingleByProfile"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceSingleByProfile) == 0x000178, "Wrong size on KismetSystemLibrary_SphereTraceSingleByProfile"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, ProfileName) == 0x00003C, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, bTraceComplex) == 0x000044, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, ActorsToIgnore) == 0x000048, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, DrawDebugType) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, OutHit) == 0x000060, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, bIgnoreSelf) == 0x000148, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, TraceColor) == 0x00014C, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, TraceHitColor) == 0x00015C, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, DrawTime) == 0x00016C, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleByProfile, ReturnValue) == 0x000170, "Member 'KismetSystemLibrary_SphereTraceSingleByProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_SphereTraceSingleForObjects \ +static_assert(alignof(KismetSystemLibrary_SphereTraceSingleForObjects) == 0x000008, "Wrong alignment on KismetSystemLibrary_SphereTraceSingleForObjects"); \ +static_assert(sizeof(KismetSystemLibrary_SphereTraceSingleForObjects) == 0x000188, "Wrong size on KismetSystemLibrary_SphereTraceSingleForObjects"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, WorldContextObject) == 0x000000, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, Start) == 0x000008, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::Start' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, End) == 0x000020, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::End' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, Radius) == 0x000038, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::Radius' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, ObjectTypes) == 0x000040, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, bTraceComplex) == 0x000050, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::bTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, ActorsToIgnore) == 0x000058, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, DrawDebugType) == 0x000068, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, OutHit) == 0x000070, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::OutHit' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, bIgnoreSelf) == 0x000158, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::bIgnoreSelf' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, TraceColor) == 0x00015C, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::TraceColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, TraceHitColor) == 0x00016C, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::TraceHitColor' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, DrawTime) == 0x00017C, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::DrawTime' has a wrong offset!"); \ +static_assert(offsetof(KismetSystemLibrary_SphereTraceSingleForObjects, ReturnValue) == 0x000180, "Member 'KismetSystemLibrary_SphereTraceSingleForObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_TransactObject \ +static_assert(alignof(KismetSystemLibrary_TransactObject) == 0x000008, "Wrong alignment on KismetSystemLibrary_TransactObject"); \ +static_assert(sizeof(KismetSystemLibrary_TransactObject) == 0x000008, "Wrong size on KismetSystemLibrary_TransactObject"); \ +static_assert(offsetof(KismetSystemLibrary_TransactObject, Object) == 0x000000, "Member 'KismetSystemLibrary_TransactObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_UnloadPrimaryAsset \ +static_assert(alignof(KismetSystemLibrary_UnloadPrimaryAsset) == 0x000004, "Wrong alignment on KismetSystemLibrary_UnloadPrimaryAsset"); \ +static_assert(sizeof(KismetSystemLibrary_UnloadPrimaryAsset) == 0x000010, "Wrong size on KismetSystemLibrary_UnloadPrimaryAsset"); \ +static_assert(offsetof(KismetSystemLibrary_UnloadPrimaryAsset, PrimaryAssetId) == 0x000000, "Member 'KismetSystemLibrary_UnloadPrimaryAsset::PrimaryAssetId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetSystemLibrary_UnloadPrimaryAssetList \ +static_assert(alignof(KismetSystemLibrary_UnloadPrimaryAssetList) == 0x000008, "Wrong alignment on KismetSystemLibrary_UnloadPrimaryAssetList"); \ +static_assert(sizeof(KismetSystemLibrary_UnloadPrimaryAssetList) == 0x000010, "Wrong size on KismetSystemLibrary_UnloadPrimaryAssetList"); \ +static_assert(offsetof(KismetSystemLibrary_UnloadPrimaryAssetList, PrimaryAssetIdList) == 0x000000, "Member 'KismetSystemLibrary_UnloadPrimaryAssetList::PrimaryAssetIdList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetSystemLibrary \ +static_assert(alignof(UKismetSystemLibrary) == 0x000008, "Wrong alignment on UKismetSystemLibrary"); \ +static_assert(sizeof(UKismetSystemLibrary) == 0x000028, "Wrong size on UKismetSystemLibrary"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_AutomationDir \ +static_assert(alignof(BlueprintPathsLibrary_AutomationDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_AutomationDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_AutomationDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_AutomationDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_AutomationDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_AutomationDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_AutomationLogDir \ +static_assert(alignof(BlueprintPathsLibrary_AutomationLogDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_AutomationLogDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_AutomationLogDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_AutomationLogDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_AutomationLogDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_AutomationLogDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_AutomationTransientDir \ +static_assert(alignof(BlueprintPathsLibrary_AutomationTransientDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_AutomationTransientDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_AutomationTransientDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_AutomationTransientDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_AutomationTransientDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_AutomationTransientDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_BugItDir \ +static_assert(alignof(BlueprintPathsLibrary_BugItDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_BugItDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_BugItDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_BugItDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_BugItDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_BugItDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ChangeExtension \ +static_assert(alignof(BlueprintPathsLibrary_ChangeExtension) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ChangeExtension"); \ +static_assert(sizeof(BlueprintPathsLibrary_ChangeExtension) == 0x000030, "Wrong size on BlueprintPathsLibrary_ChangeExtension"); \ +static_assert(offsetof(BlueprintPathsLibrary_ChangeExtension, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_ChangeExtension::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ChangeExtension, InNewExtension) == 0x000010, "Member 'BlueprintPathsLibrary_ChangeExtension::InNewExtension' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ChangeExtension, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_ChangeExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_CloudDir \ +static_assert(alignof(BlueprintPathsLibrary_CloudDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_CloudDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_CloudDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_CloudDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_CloudDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_CloudDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_CollapseRelativeDirectories \ +static_assert(alignof(BlueprintPathsLibrary_CollapseRelativeDirectories) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_CollapseRelativeDirectories"); \ +static_assert(sizeof(BlueprintPathsLibrary_CollapseRelativeDirectories) == 0x000028, "Wrong size on BlueprintPathsLibrary_CollapseRelativeDirectories"); \ +static_assert(offsetof(BlueprintPathsLibrary_CollapseRelativeDirectories, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_CollapseRelativeDirectories::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_CollapseRelativeDirectories, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_CollapseRelativeDirectories::OutPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_CollapseRelativeDirectories, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_CollapseRelativeDirectories::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_Combine \ +static_assert(alignof(BlueprintPathsLibrary_Combine) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_Combine"); \ +static_assert(sizeof(BlueprintPathsLibrary_Combine) == 0x000020, "Wrong size on BlueprintPathsLibrary_Combine"); \ +static_assert(offsetof(BlueprintPathsLibrary_Combine, InPaths) == 0x000000, "Member 'BlueprintPathsLibrary_Combine::InPaths' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_Combine, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_Combine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ConvertFromSandboxPath \ +static_assert(alignof(BlueprintPathsLibrary_ConvertFromSandboxPath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ConvertFromSandboxPath"); \ +static_assert(sizeof(BlueprintPathsLibrary_ConvertFromSandboxPath) == 0x000030, "Wrong size on BlueprintPathsLibrary_ConvertFromSandboxPath"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertFromSandboxPath, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_ConvertFromSandboxPath::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertFromSandboxPath, InSandboxName) == 0x000010, "Member 'BlueprintPathsLibrary_ConvertFromSandboxPath::InSandboxName' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertFromSandboxPath, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_ConvertFromSandboxPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ConvertRelativePathToFull \ +static_assert(alignof(BlueprintPathsLibrary_ConvertRelativePathToFull) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ConvertRelativePathToFull"); \ +static_assert(sizeof(BlueprintPathsLibrary_ConvertRelativePathToFull) == 0x000030, "Wrong size on BlueprintPathsLibrary_ConvertRelativePathToFull"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertRelativePathToFull, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_ConvertRelativePathToFull::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertRelativePathToFull, InBasePath) == 0x000010, "Member 'BlueprintPathsLibrary_ConvertRelativePathToFull::InBasePath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertRelativePathToFull, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_ConvertRelativePathToFull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ConvertToSandboxPath \ +static_assert(alignof(BlueprintPathsLibrary_ConvertToSandboxPath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ConvertToSandboxPath"); \ +static_assert(sizeof(BlueprintPathsLibrary_ConvertToSandboxPath) == 0x000030, "Wrong size on BlueprintPathsLibrary_ConvertToSandboxPath"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertToSandboxPath, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_ConvertToSandboxPath::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertToSandboxPath, InSandboxName) == 0x000010, "Member 'BlueprintPathsLibrary_ConvertToSandboxPath::InSandboxName' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ConvertToSandboxPath, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_ConvertToSandboxPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_CreateTempFilename \ +static_assert(alignof(BlueprintPathsLibrary_CreateTempFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_CreateTempFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_CreateTempFilename) == 0x000040, "Wrong size on BlueprintPathsLibrary_CreateTempFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_CreateTempFilename, Path) == 0x000000, "Member 'BlueprintPathsLibrary_CreateTempFilename::Path' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_CreateTempFilename, Prefix) == 0x000010, "Member 'BlueprintPathsLibrary_CreateTempFilename::Prefix' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_CreateTempFilename, Extension) == 0x000020, "Member 'BlueprintPathsLibrary_CreateTempFilename::Extension' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_CreateTempFilename, ReturnValue) == 0x000030, "Member 'BlueprintPathsLibrary_CreateTempFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_DiffDir \ +static_assert(alignof(BlueprintPathsLibrary_DiffDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_DiffDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_DiffDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_DiffDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_DiffDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_DiffDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_DirectoryExists \ +static_assert(alignof(BlueprintPathsLibrary_DirectoryExists) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_DirectoryExists"); \ +static_assert(sizeof(BlueprintPathsLibrary_DirectoryExists) == 0x000018, "Wrong size on BlueprintPathsLibrary_DirectoryExists"); \ +static_assert(offsetof(BlueprintPathsLibrary_DirectoryExists, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_DirectoryExists::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_DirectoryExists, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_DirectoryExists::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineConfigDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineConfigDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineConfigDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineConfigDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineConfigDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineConfigDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineConfigDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineContentDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineContentDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineContentDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineContentDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineContentDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineContentDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineContentDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineIntermediateDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineIntermediateDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineIntermediateDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineIntermediateDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineIntermediateDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineIntermediateDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineIntermediateDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EnginePluginsDir \ +static_assert(alignof(BlueprintPathsLibrary_EnginePluginsDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EnginePluginsDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EnginePluginsDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EnginePluginsDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EnginePluginsDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EnginePluginsDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineSavedDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineSavedDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineSavedDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineSavedDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineSavedDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineSavedDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineSavedDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineSourceDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineSourceDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineSourceDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineSourceDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineSourceDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineSourceDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineSourceDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineUserDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineUserDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineUserDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineUserDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineUserDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineUserDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineUserDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EngineVersionAgnosticUserDir \ +static_assert(alignof(BlueprintPathsLibrary_EngineVersionAgnosticUserDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EngineVersionAgnosticUserDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EngineVersionAgnosticUserDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EngineVersionAgnosticUserDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EngineVersionAgnosticUserDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EngineVersionAgnosticUserDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EnterpriseDir \ +static_assert(alignof(BlueprintPathsLibrary_EnterpriseDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EnterpriseDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EnterpriseDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EnterpriseDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EnterpriseDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EnterpriseDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EnterpriseFeaturePackDir \ +static_assert(alignof(BlueprintPathsLibrary_EnterpriseFeaturePackDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EnterpriseFeaturePackDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EnterpriseFeaturePackDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EnterpriseFeaturePackDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EnterpriseFeaturePackDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EnterpriseFeaturePackDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_EnterprisePluginsDir \ +static_assert(alignof(BlueprintPathsLibrary_EnterprisePluginsDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_EnterprisePluginsDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_EnterprisePluginsDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_EnterprisePluginsDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_EnterprisePluginsDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_EnterprisePluginsDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_FeaturePackDir \ +static_assert(alignof(BlueprintPathsLibrary_FeaturePackDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_FeaturePackDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_FeaturePackDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_FeaturePackDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_FeaturePackDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_FeaturePackDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_FileExists \ +static_assert(alignof(BlueprintPathsLibrary_FileExists) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_FileExists"); \ +static_assert(sizeof(BlueprintPathsLibrary_FileExists) == 0x000018, "Wrong size on BlueprintPathsLibrary_FileExists"); \ +static_assert(offsetof(BlueprintPathsLibrary_FileExists, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_FileExists::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_FileExists, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_FileExists::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GameAgnosticSavedDir \ +static_assert(alignof(BlueprintPathsLibrary_GameAgnosticSavedDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GameAgnosticSavedDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_GameAgnosticSavedDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_GameAgnosticSavedDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_GameAgnosticSavedDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GameAgnosticSavedDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GameDevelopersDir \ +static_assert(alignof(BlueprintPathsLibrary_GameDevelopersDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GameDevelopersDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_GameDevelopersDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_GameDevelopersDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_GameDevelopersDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GameDevelopersDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GameSourceDir \ +static_assert(alignof(BlueprintPathsLibrary_GameSourceDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GameSourceDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_GameSourceDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_GameSourceDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_GameSourceDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GameSourceDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GameUserDeveloperDir \ +static_assert(alignof(BlueprintPathsLibrary_GameUserDeveloperDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GameUserDeveloperDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_GameUserDeveloperDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_GameUserDeveloperDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_GameUserDeveloperDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GameUserDeveloperDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GeneratedConfigDir \ +static_assert(alignof(BlueprintPathsLibrary_GeneratedConfigDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GeneratedConfigDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_GeneratedConfigDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_GeneratedConfigDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_GeneratedConfigDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GeneratedConfigDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetBaseFilename \ +static_assert(alignof(BlueprintPathsLibrary_GetBaseFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetBaseFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetBaseFilename) == 0x000028, "Wrong size on BlueprintPathsLibrary_GetBaseFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetBaseFilename, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_GetBaseFilename::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetBaseFilename, bRemovePath) == 0x000010, "Member 'BlueprintPathsLibrary_GetBaseFilename::bRemovePath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetBaseFilename, ReturnValue) == 0x000018, "Member 'BlueprintPathsLibrary_GetBaseFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetCleanFilename \ +static_assert(alignof(BlueprintPathsLibrary_GetCleanFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetCleanFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetCleanFilename) == 0x000020, "Wrong size on BlueprintPathsLibrary_GetCleanFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetCleanFilename, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_GetCleanFilename::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetCleanFilename, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_GetCleanFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetEditorLocalizationPaths \ +static_assert(alignof(BlueprintPathsLibrary_GetEditorLocalizationPaths) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetEditorLocalizationPaths"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetEditorLocalizationPaths) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetEditorLocalizationPaths"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetEditorLocalizationPaths, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetEditorLocalizationPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetEngineLocalizationPaths \ +static_assert(alignof(BlueprintPathsLibrary_GetEngineLocalizationPaths) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetEngineLocalizationPaths"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetEngineLocalizationPaths) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetEngineLocalizationPaths"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetEngineLocalizationPaths, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetEngineLocalizationPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetExtension \ +static_assert(alignof(BlueprintPathsLibrary_GetExtension) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetExtension"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetExtension) == 0x000028, "Wrong size on BlueprintPathsLibrary_GetExtension"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetExtension, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_GetExtension::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetExtension, bIncludeDot) == 0x000010, "Member 'BlueprintPathsLibrary_GetExtension::bIncludeDot' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetExtension, ReturnValue) == 0x000018, "Member 'BlueprintPathsLibrary_GetExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetGameLocalizationPaths \ +static_assert(alignof(BlueprintPathsLibrary_GetGameLocalizationPaths) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetGameLocalizationPaths"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetGameLocalizationPaths) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetGameLocalizationPaths"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetGameLocalizationPaths, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetGameLocalizationPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetInvalidFileSystemChars \ +static_assert(alignof(BlueprintPathsLibrary_GetInvalidFileSystemChars) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetInvalidFileSystemChars"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetInvalidFileSystemChars) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetInvalidFileSystemChars"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetInvalidFileSystemChars, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetInvalidFileSystemChars::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetPath \ +static_assert(alignof(BlueprintPathsLibrary_GetPath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetPath"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetPath) == 0x000020, "Wrong size on BlueprintPathsLibrary_GetPath"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetPath, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_GetPath::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetPath, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_GetPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetProjectFilePath \ +static_assert(alignof(BlueprintPathsLibrary_GetProjectFilePath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetProjectFilePath"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetProjectFilePath) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetProjectFilePath"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetProjectFilePath, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetProjectFilePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetPropertyNameLocalizationPaths \ +static_assert(alignof(BlueprintPathsLibrary_GetPropertyNameLocalizationPaths) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetPropertyNameLocalizationPaths"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetPropertyNameLocalizationPaths) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetPropertyNameLocalizationPaths"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetPropertyNameLocalizationPaths, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetPropertyNameLocalizationPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetRelativePathToRoot \ +static_assert(alignof(BlueprintPathsLibrary_GetRelativePathToRoot) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetRelativePathToRoot"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetRelativePathToRoot) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetRelativePathToRoot"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetRelativePathToRoot, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetRelativePathToRoot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetRestrictedFolderNames \ +static_assert(alignof(BlueprintPathsLibrary_GetRestrictedFolderNames) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetRestrictedFolderNames"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetRestrictedFolderNames) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetRestrictedFolderNames"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetRestrictedFolderNames, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetRestrictedFolderNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_GetToolTipLocalizationPaths \ +static_assert(alignof(BlueprintPathsLibrary_GetToolTipLocalizationPaths) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_GetToolTipLocalizationPaths"); \ +static_assert(sizeof(BlueprintPathsLibrary_GetToolTipLocalizationPaths) == 0x000010, "Wrong size on BlueprintPathsLibrary_GetToolTipLocalizationPaths"); \ +static_assert(offsetof(BlueprintPathsLibrary_GetToolTipLocalizationPaths, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_GetToolTipLocalizationPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_HasProjectPersistentDownloadDir \ +static_assert(alignof(BlueprintPathsLibrary_HasProjectPersistentDownloadDir) == 0x000001, "Wrong alignment on BlueprintPathsLibrary_HasProjectPersistentDownloadDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_HasProjectPersistentDownloadDir) == 0x000001, "Wrong size on BlueprintPathsLibrary_HasProjectPersistentDownloadDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_HasProjectPersistentDownloadDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_HasProjectPersistentDownloadDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_IsDrive \ +static_assert(alignof(BlueprintPathsLibrary_IsDrive) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_IsDrive"); \ +static_assert(sizeof(BlueprintPathsLibrary_IsDrive) == 0x000018, "Wrong size on BlueprintPathsLibrary_IsDrive"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsDrive, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_IsDrive::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsDrive, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_IsDrive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_IsProjectFilePathSet \ +static_assert(alignof(BlueprintPathsLibrary_IsProjectFilePathSet) == 0x000001, "Wrong alignment on BlueprintPathsLibrary_IsProjectFilePathSet"); \ +static_assert(sizeof(BlueprintPathsLibrary_IsProjectFilePathSet) == 0x000001, "Wrong size on BlueprintPathsLibrary_IsProjectFilePathSet"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsProjectFilePathSet, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_IsProjectFilePathSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_IsRelative \ +static_assert(alignof(BlueprintPathsLibrary_IsRelative) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_IsRelative"); \ +static_assert(sizeof(BlueprintPathsLibrary_IsRelative) == 0x000018, "Wrong size on BlueprintPathsLibrary_IsRelative"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsRelative, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_IsRelative::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsRelative, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_IsRelative::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_IsRestrictedPath \ +static_assert(alignof(BlueprintPathsLibrary_IsRestrictedPath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_IsRestrictedPath"); \ +static_assert(sizeof(BlueprintPathsLibrary_IsRestrictedPath) == 0x000018, "Wrong size on BlueprintPathsLibrary_IsRestrictedPath"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsRestrictedPath, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_IsRestrictedPath::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsRestrictedPath, ReturnValue) == 0x000010, "Member 'BlueprintPathsLibrary_IsRestrictedPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_IsSamePath \ +static_assert(alignof(BlueprintPathsLibrary_IsSamePath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_IsSamePath"); \ +static_assert(sizeof(BlueprintPathsLibrary_IsSamePath) == 0x000028, "Wrong size on BlueprintPathsLibrary_IsSamePath"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsSamePath, PathA) == 0x000000, "Member 'BlueprintPathsLibrary_IsSamePath::PathA' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsSamePath, PathB) == 0x000010, "Member 'BlueprintPathsLibrary_IsSamePath::PathB' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_IsSamePath, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_IsSamePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_LaunchDir \ +static_assert(alignof(BlueprintPathsLibrary_LaunchDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_LaunchDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_LaunchDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_LaunchDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_LaunchDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_LaunchDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_MakePathRelativeTo \ +static_assert(alignof(BlueprintPathsLibrary_MakePathRelativeTo) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_MakePathRelativeTo"); \ +static_assert(sizeof(BlueprintPathsLibrary_MakePathRelativeTo) == 0x000038, "Wrong size on BlueprintPathsLibrary_MakePathRelativeTo"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePathRelativeTo, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_MakePathRelativeTo::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePathRelativeTo, InRelativeTo) == 0x000010, "Member 'BlueprintPathsLibrary_MakePathRelativeTo::InRelativeTo' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePathRelativeTo, OutPath) == 0x000020, "Member 'BlueprintPathsLibrary_MakePathRelativeTo::OutPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePathRelativeTo, ReturnValue) == 0x000030, "Member 'BlueprintPathsLibrary_MakePathRelativeTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_MakePlatformFilename \ +static_assert(alignof(BlueprintPathsLibrary_MakePlatformFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_MakePlatformFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_MakePlatformFilename) == 0x000020, "Wrong size on BlueprintPathsLibrary_MakePlatformFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePlatformFilename, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_MakePlatformFilename::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakePlatformFilename, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_MakePlatformFilename::OutPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_MakeStandardFilename \ +static_assert(alignof(BlueprintPathsLibrary_MakeStandardFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_MakeStandardFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_MakeStandardFilename) == 0x000020, "Wrong size on BlueprintPathsLibrary_MakeStandardFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakeStandardFilename, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_MakeStandardFilename::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakeStandardFilename, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_MakeStandardFilename::OutPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_MakeValidFileName \ +static_assert(alignof(BlueprintPathsLibrary_MakeValidFileName) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_MakeValidFileName"); \ +static_assert(sizeof(BlueprintPathsLibrary_MakeValidFileName) == 0x000030, "Wrong size on BlueprintPathsLibrary_MakeValidFileName"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakeValidFileName, InString) == 0x000000, "Member 'BlueprintPathsLibrary_MakeValidFileName::InString' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakeValidFileName, InReplacementChar) == 0x000010, "Member 'BlueprintPathsLibrary_MakeValidFileName::InReplacementChar' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_MakeValidFileName, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_MakeValidFileName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_NormalizeDirectoryName \ +static_assert(alignof(BlueprintPathsLibrary_NormalizeDirectoryName) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_NormalizeDirectoryName"); \ +static_assert(sizeof(BlueprintPathsLibrary_NormalizeDirectoryName) == 0x000020, "Wrong size on BlueprintPathsLibrary_NormalizeDirectoryName"); \ +static_assert(offsetof(BlueprintPathsLibrary_NormalizeDirectoryName, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_NormalizeDirectoryName::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_NormalizeDirectoryName, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_NormalizeDirectoryName::OutPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_NormalizeFilename \ +static_assert(alignof(BlueprintPathsLibrary_NormalizeFilename) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_NormalizeFilename"); \ +static_assert(sizeof(BlueprintPathsLibrary_NormalizeFilename) == 0x000020, "Wrong size on BlueprintPathsLibrary_NormalizeFilename"); \ +static_assert(offsetof(BlueprintPathsLibrary_NormalizeFilename, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_NormalizeFilename::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_NormalizeFilename, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_NormalizeFilename::OutPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProfilingDir \ +static_assert(alignof(BlueprintPathsLibrary_ProfilingDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProfilingDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProfilingDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProfilingDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProfilingDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProfilingDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectConfigDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectConfigDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectConfigDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectConfigDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectConfigDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectConfigDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectConfigDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectContentDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectContentDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectContentDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectContentDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectContentDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectContentDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectContentDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectIntermediateDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectIntermediateDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectIntermediateDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectIntermediateDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectIntermediateDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectIntermediateDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectIntermediateDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectLogDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectLogDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectLogDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectLogDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectLogDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectLogDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectLogDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectModsDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectModsDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectModsDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectModsDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectModsDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectModsDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectModsDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectPersistentDownloadDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectPersistentDownloadDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectPersistentDownloadDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectPersistentDownloadDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectPersistentDownloadDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectPersistentDownloadDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectPersistentDownloadDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectPluginsDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectPluginsDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectPluginsDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectPluginsDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectPluginsDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectPluginsDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectPluginsDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectSavedDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectSavedDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectSavedDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectSavedDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectSavedDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectSavedDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectSavedDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ProjectUserDir \ +static_assert(alignof(BlueprintPathsLibrary_ProjectUserDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ProjectUserDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ProjectUserDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ProjectUserDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ProjectUserDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ProjectUserDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_RemoveDuplicateSlashes \ +static_assert(alignof(BlueprintPathsLibrary_RemoveDuplicateSlashes) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_RemoveDuplicateSlashes"); \ +static_assert(sizeof(BlueprintPathsLibrary_RemoveDuplicateSlashes) == 0x000020, "Wrong size on BlueprintPathsLibrary_RemoveDuplicateSlashes"); \ +static_assert(offsetof(BlueprintPathsLibrary_RemoveDuplicateSlashes, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_RemoveDuplicateSlashes::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_RemoveDuplicateSlashes, OutPath) == 0x000010, "Member 'BlueprintPathsLibrary_RemoveDuplicateSlashes::OutPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_RootDir \ +static_assert(alignof(BlueprintPathsLibrary_RootDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_RootDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_RootDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_RootDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_RootDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_RootDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_SandboxesDir \ +static_assert(alignof(BlueprintPathsLibrary_SandboxesDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_SandboxesDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_SandboxesDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_SandboxesDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_SandboxesDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_SandboxesDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ScreenShotDir \ +static_assert(alignof(BlueprintPathsLibrary_ScreenShotDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ScreenShotDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ScreenShotDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ScreenShotDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ScreenShotDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ScreenShotDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_SetExtension \ +static_assert(alignof(BlueprintPathsLibrary_SetExtension) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_SetExtension"); \ +static_assert(sizeof(BlueprintPathsLibrary_SetExtension) == 0x000030, "Wrong size on BlueprintPathsLibrary_SetExtension"); \ +static_assert(offsetof(BlueprintPathsLibrary_SetExtension, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_SetExtension::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_SetExtension, InNewExtension) == 0x000010, "Member 'BlueprintPathsLibrary_SetExtension::InNewExtension' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_SetExtension, ReturnValue) == 0x000020, "Member 'BlueprintPathsLibrary_SetExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_SetProjectFilePath \ +static_assert(alignof(BlueprintPathsLibrary_SetProjectFilePath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_SetProjectFilePath"); \ +static_assert(sizeof(BlueprintPathsLibrary_SetProjectFilePath) == 0x000010, "Wrong size on BlueprintPathsLibrary_SetProjectFilePath"); \ +static_assert(offsetof(BlueprintPathsLibrary_SetProjectFilePath, NewGameProjectFilePath) == 0x000000, "Member 'BlueprintPathsLibrary_SetProjectFilePath::NewGameProjectFilePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ShaderWorkingDir \ +static_assert(alignof(BlueprintPathsLibrary_ShaderWorkingDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ShaderWorkingDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ShaderWorkingDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_ShaderWorkingDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ShaderWorkingDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ShaderWorkingDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ShouldSaveToUserDir \ +static_assert(alignof(BlueprintPathsLibrary_ShouldSaveToUserDir) == 0x000001, "Wrong alignment on BlueprintPathsLibrary_ShouldSaveToUserDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_ShouldSaveToUserDir) == 0x000001, "Wrong size on BlueprintPathsLibrary_ShouldSaveToUserDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_ShouldSaveToUserDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_ShouldSaveToUserDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_SourceConfigDir \ +static_assert(alignof(BlueprintPathsLibrary_SourceConfigDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_SourceConfigDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_SourceConfigDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_SourceConfigDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_SourceConfigDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_SourceConfigDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_Split \ +static_assert(alignof(BlueprintPathsLibrary_Split) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_Split"); \ +static_assert(sizeof(BlueprintPathsLibrary_Split) == 0x000040, "Wrong size on BlueprintPathsLibrary_Split"); \ +static_assert(offsetof(BlueprintPathsLibrary_Split, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_Split::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_Split, PathPart) == 0x000010, "Member 'BlueprintPathsLibrary_Split::PathPart' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_Split, FilenamePart) == 0x000020, "Member 'BlueprintPathsLibrary_Split::FilenamePart' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_Split, ExtensionPart) == 0x000030, "Member 'BlueprintPathsLibrary_Split::ExtensionPart' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_ValidatePath \ +static_assert(alignof(BlueprintPathsLibrary_ValidatePath) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_ValidatePath"); \ +static_assert(sizeof(BlueprintPathsLibrary_ValidatePath) == 0x000030, "Wrong size on BlueprintPathsLibrary_ValidatePath"); \ +static_assert(offsetof(BlueprintPathsLibrary_ValidatePath, InPath) == 0x000000, "Member 'BlueprintPathsLibrary_ValidatePath::InPath' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ValidatePath, bDidSucceed) == 0x000010, "Member 'BlueprintPathsLibrary_ValidatePath::bDidSucceed' has a wrong offset!"); \ +static_assert(offsetof(BlueprintPathsLibrary_ValidatePath, OutReason) == 0x000018, "Member 'BlueprintPathsLibrary_ValidatePath::OutReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintPathsLibrary_VideoCaptureDir \ +static_assert(alignof(BlueprintPathsLibrary_VideoCaptureDir) == 0x000008, "Wrong alignment on BlueprintPathsLibrary_VideoCaptureDir"); \ +static_assert(sizeof(BlueprintPathsLibrary_VideoCaptureDir) == 0x000010, "Wrong size on BlueprintPathsLibrary_VideoCaptureDir"); \ +static_assert(offsetof(BlueprintPathsLibrary_VideoCaptureDir, ReturnValue) == 0x000000, "Member 'BlueprintPathsLibrary_VideoCaptureDir::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintPathsLibrary \ +static_assert(alignof(UBlueprintPathsLibrary) == 0x000008, "Wrong alignment on UBlueprintPathsLibrary"); \ +static_assert(sizeof(UBlueprintPathsLibrary) == 0x000028, "Wrong size on UBlueprintPathsLibrary"); \ + +#define DUMPER7_ASSERTS_UPlatformGameInstance \ +static_assert(alignof(UPlatformGameInstance) == 0x000008, "Wrong alignment on UPlatformGameInstance"); \ +static_assert(sizeof(UPlatformGameInstance) == 0x000290, "Wrong size on UPlatformGameInstance"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationWillDeactivateDelegate) == 0x0001C0, "Member 'UPlatformGameInstance::ApplicationWillDeactivateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationHasReactivatedDelegate) == 0x0001D0, "Member 'UPlatformGameInstance::ApplicationHasReactivatedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationWillEnterBackgroundDelegate) == 0x0001E0, "Member 'UPlatformGameInstance::ApplicationWillEnterBackgroundDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationHasEnteredForegroundDelegate) == 0x0001F0, "Member 'UPlatformGameInstance::ApplicationHasEnteredForegroundDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationWillTerminateDelegate) == 0x000200, "Member 'UPlatformGameInstance::ApplicationWillTerminateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationShouldUnloadResourcesDelegate) == 0x000210, "Member 'UPlatformGameInstance::ApplicationShouldUnloadResourcesDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationReceivedStartupArgumentsDelegate) == 0x000220, "Member 'UPlatformGameInstance::ApplicationReceivedStartupArgumentsDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationRegisteredForRemoteNotificationsDelegate) == 0x000230, "Member 'UPlatformGameInstance::ApplicationRegisteredForRemoteNotificationsDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationRegisteredForUserNotificationsDelegate) == 0x000240, "Member 'UPlatformGameInstance::ApplicationRegisteredForUserNotificationsDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationFailedToRegisterForRemoteNotificationsDelegate) == 0x000250, "Member 'UPlatformGameInstance::ApplicationFailedToRegisterForRemoteNotificationsDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationReceivedRemoteNotificationDelegate) == 0x000260, "Member 'UPlatformGameInstance::ApplicationReceivedRemoteNotificationDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationReceivedLocalNotificationDelegate) == 0x000270, "Member 'UPlatformGameInstance::ApplicationReceivedLocalNotificationDelegate' has a wrong offset!"); \ +static_assert(offsetof(UPlatformGameInstance, ApplicationReceivedScreenOrientationChangedNotificationDelegate) == 0x000280, "Member 'UPlatformGameInstance::ApplicationReceivedScreenOrientationChangedNotificationDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertArrayType \ +static_assert(alignof(BlueprintTypeConversions_ConvertArrayType) == 0x000008, "Wrong alignment on BlueprintTypeConversions_ConvertArrayType"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertArrayType) == 0x000020, "Wrong size on BlueprintTypeConversions_ConvertArrayType"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertArrayType, inArray) == 0x000000, "Member 'BlueprintTypeConversions_ConvertArrayType::inArray' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertArrayType, ReturnValue) == 0x000010, "Member 'BlueprintTypeConversions_ConvertArrayType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFBox2dToFBox2f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFBox2dToFBox2f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFBox2dToFBox2f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFBox2dToFBox2f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFBox2dToFBox2f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFBox2dToFBox2f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFBox2dToFBox2f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFBox2dToFBox2f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFBox2dToFBox2f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFBox2fToFBox2d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFBox2fToFBox2d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFBox2fToFBox2d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFBox2fToFBox2d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFBox2fToFBox2d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFBox2fToFBox2d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFBox2fToFBox2d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFBox2fToFBox2d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFBox2fToFBox2d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFPlane4dToFPlane4f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFPlane4dToFPlane4f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFPlane4dToFPlane4f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFPlane4dToFPlane4f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFPlane4dToFPlane4f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFPlane4dToFPlane4f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFPlane4dToFPlane4f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFPlane4dToFPlane4f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFPlane4dToFPlane4f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFPlane4fToFPlane4d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFPlane4fToFPlane4d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFPlane4fToFPlane4d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFPlane4fToFPlane4d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFPlane4fToFPlane4d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFPlane4fToFPlane4d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFPlane4fToFPlane4d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFPlane4fToFPlane4d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFPlane4fToFPlane4d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFQuat4dToFQuat4f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFQuat4dToFQuat4f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFQuat4dToFQuat4f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFQuat4dToFQuat4f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFQuat4dToFQuat4f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFQuat4dToFQuat4f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFQuat4dToFQuat4f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFQuat4dToFQuat4f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFQuat4dToFQuat4f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFQuat4fToFQuat4d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFQuat4fToFQuat4d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFQuat4fToFQuat4d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFQuat4fToFQuat4d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFQuat4fToFQuat4d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFQuat4fToFQuat4d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFQuat4fToFQuat4d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFQuat4fToFQuat4d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFQuat4fToFQuat4d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFRotator3dToFRotator3f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFRotator3dToFRotator3f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFRotator3dToFRotator3f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFRotator3dToFRotator3f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFRotator3dToFRotator3f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFRotator3dToFRotator3f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFRotator3dToFRotator3f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFRotator3dToFRotator3f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFRotator3dToFRotator3f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFRotator3fToFRotator3d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFRotator3fToFRotator3d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFRotator3fToFRotator3d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFRotator3fToFRotator3d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFRotator3fToFRotator3d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFRotator3fToFRotator3d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFRotator3fToFRotator3d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFRotator3fToFRotator3d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFRotator3fToFRotator3d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFTransform3dToFTransform3f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFTransform3dToFTransform3f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFTransform3dToFTransform3f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFTransform3dToFTransform3f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFTransform3dToFTransform3f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFTransform3dToFTransform3f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFTransform3dToFTransform3f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFTransform3dToFTransform3f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFTransform3dToFTransform3f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFTransform3fToFTransform3d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFTransform3fToFTransform3d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFTransform3fToFTransform3d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFTransform3fToFTransform3d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFTransform3fToFTransform3d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFTransform3fToFTransform3d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFTransform3fToFTransform3d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFTransform3fToFTransform3d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFTransform3fToFTransform3d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector2dToFVector2f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector2dToFVector2f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector2dToFVector2f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector2dToFVector2f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector2dToFVector2f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector2dToFVector2f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector2dToFVector2f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector2dToFVector2f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector2dToFVector2f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector2fToFVector2d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector2fToFVector2d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector2fToFVector2d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector2fToFVector2d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector2fToFVector2d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector2fToFVector2d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector2fToFVector2d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector2fToFVector2d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector2fToFVector2d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector3dToFVector3f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector3dToFVector3f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector3dToFVector3f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector3dToFVector3f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector3dToFVector3f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector3dToFVector3f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector3dToFVector3f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector3dToFVector3f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector3dToFVector3f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector3fToFVector3d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector3fToFVector3d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector3fToFVector3d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector3fToFVector3d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector3fToFVector3d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector3fToFVector3d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector3fToFVector3d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector3fToFVector3d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector3fToFVector3d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector4dToFVector4f \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector4dToFVector4f) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector4dToFVector4f"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector4dToFVector4f) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector4dToFVector4f"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector4dToFVector4f, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector4dToFVector4f::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector4dToFVector4f, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector4dToFVector4f::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertFVector4fToFVector4d \ +static_assert(alignof(BlueprintTypeConversions_ConvertFVector4fToFVector4d) == 0x000004, "Wrong alignment on BlueprintTypeConversions_ConvertFVector4fToFVector4d"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertFVector4fToFVector4d) == 0x000008, "Wrong size on BlueprintTypeConversions_ConvertFVector4fToFVector4d"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector4fToFVector4d, InFromData) == 0x000000, "Member 'BlueprintTypeConversions_ConvertFVector4fToFVector4d::InFromData' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertFVector4fToFVector4d, ReturnValue) == 0x000004, "Member 'BlueprintTypeConversions_ConvertFVector4fToFVector4d::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertMapType \ +static_assert(alignof(BlueprintTypeConversions_ConvertMapType) == 0x000008, "Wrong alignment on BlueprintTypeConversions_ConvertMapType"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertMapType) == 0x0000A0, "Wrong size on BlueprintTypeConversions_ConvertMapType"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertMapType, InMap) == 0x000000, "Member 'BlueprintTypeConversions_ConvertMapType::InMap' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertMapType, ReturnValue) == 0x000050, "Member 'BlueprintTypeConversions_ConvertMapType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintTypeConversions_ConvertSetType \ +static_assert(alignof(BlueprintTypeConversions_ConvertSetType) == 0x000008, "Wrong alignment on BlueprintTypeConversions_ConvertSetType"); \ +static_assert(sizeof(BlueprintTypeConversions_ConvertSetType) == 0x0000A0, "Wrong size on BlueprintTypeConversions_ConvertSetType"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertSetType, Inset) == 0x000000, "Member 'BlueprintTypeConversions_ConvertSetType::Inset' has a wrong offset!"); \ +static_assert(offsetof(BlueprintTypeConversions_ConvertSetType, ReturnValue) == 0x000050, "Member 'BlueprintTypeConversions_ConvertSetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintTypeConversions \ +static_assert(alignof(UBlueprintTypeConversions) == 0x000008, "Wrong alignment on UBlueprintTypeConversions"); \ +static_assert(sizeof(UBlueprintTypeConversions) == 0x000028, "Wrong size on UBlueprintTypeConversions"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_BreakImportanceTexture \ +static_assert(alignof(ImportanceSamplingLibrary_BreakImportanceTexture) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_BreakImportanceTexture"); \ +static_assert(sizeof(ImportanceSamplingLibrary_BreakImportanceTexture) == 0x000060, "Wrong size on ImportanceSamplingLibrary_BreakImportanceTexture"); \ +static_assert(offsetof(ImportanceSamplingLibrary_BreakImportanceTexture, ImportanceTexture) == 0x000000, "Member 'ImportanceSamplingLibrary_BreakImportanceTexture::ImportanceTexture' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_BreakImportanceTexture, Texture) == 0x000050, "Member 'ImportanceSamplingLibrary_BreakImportanceTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_BreakImportanceTexture, WeightingFunc) == 0x000058, "Member 'ImportanceSamplingLibrary_BreakImportanceTexture::WeightingFunc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_ImportanceSample \ +static_assert(alignof(ImportanceSamplingLibrary_ImportanceSample) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_ImportanceSample"); \ +static_assert(sizeof(ImportanceSamplingLibrary_ImportanceSample) == 0x000090, "Wrong size on ImportanceSamplingLibrary_ImportanceSample"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, Texture) == 0x000000, "Member 'ImportanceSamplingLibrary_ImportanceSample::Texture' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, Rand) == 0x000050, "Member 'ImportanceSamplingLibrary_ImportanceSample::Rand' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, Samples) == 0x000060, "Member 'ImportanceSamplingLibrary_ImportanceSample::Samples' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, Intensity) == 0x000064, "Member 'ImportanceSamplingLibrary_ImportanceSample::Intensity' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, SamplePosition) == 0x000068, "Member 'ImportanceSamplingLibrary_ImportanceSample::SamplePosition' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, SampleColor) == 0x000078, "Member 'ImportanceSamplingLibrary_ImportanceSample::SampleColor' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, SampleIntensity) == 0x000088, "Member 'ImportanceSamplingLibrary_ImportanceSample::SampleIntensity' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_ImportanceSample, SampleSize) == 0x00008C, "Member 'ImportanceSamplingLibrary_ImportanceSample::SampleSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_MakeImportanceTexture \ +static_assert(alignof(ImportanceSamplingLibrary_MakeImportanceTexture) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_MakeImportanceTexture"); \ +static_assert(sizeof(ImportanceSamplingLibrary_MakeImportanceTexture) == 0x000060, "Wrong size on ImportanceSamplingLibrary_MakeImportanceTexture"); \ +static_assert(offsetof(ImportanceSamplingLibrary_MakeImportanceTexture, Texture) == 0x000000, "Member 'ImportanceSamplingLibrary_MakeImportanceTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_MakeImportanceTexture, WeightingFunc) == 0x000008, "Member 'ImportanceSamplingLibrary_MakeImportanceTexture::WeightingFunc' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_MakeImportanceTexture, ReturnValue) == 0x000010, "Member 'ImportanceSamplingLibrary_MakeImportanceTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_NextSobolCell2D \ +static_assert(alignof(ImportanceSamplingLibrary_NextSobolCell2D) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_NextSobolCell2D"); \ +static_assert(sizeof(ImportanceSamplingLibrary_NextSobolCell2D) == 0x000028, "Wrong size on ImportanceSamplingLibrary_NextSobolCell2D"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell2D, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_NextSobolCell2D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell2D, NumCells) == 0x000004, "Member 'ImportanceSamplingLibrary_NextSobolCell2D::NumCells' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell2D, PreviousValue) == 0x000008, "Member 'ImportanceSamplingLibrary_NextSobolCell2D::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell2D, ReturnValue) == 0x000018, "Member 'ImportanceSamplingLibrary_NextSobolCell2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_NextSobolCell3D \ +static_assert(alignof(ImportanceSamplingLibrary_NextSobolCell3D) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_NextSobolCell3D"); \ +static_assert(sizeof(ImportanceSamplingLibrary_NextSobolCell3D) == 0x000038, "Wrong size on ImportanceSamplingLibrary_NextSobolCell3D"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell3D, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_NextSobolCell3D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell3D, NumCells) == 0x000004, "Member 'ImportanceSamplingLibrary_NextSobolCell3D::NumCells' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell3D, PreviousValue) == 0x000008, "Member 'ImportanceSamplingLibrary_NextSobolCell3D::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolCell3D, ReturnValue) == 0x000020, "Member 'ImportanceSamplingLibrary_NextSobolCell3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_NextSobolFloat \ +static_assert(alignof(ImportanceSamplingLibrary_NextSobolFloat) == 0x000004, "Wrong alignment on ImportanceSamplingLibrary_NextSobolFloat"); \ +static_assert(sizeof(ImportanceSamplingLibrary_NextSobolFloat) == 0x000010, "Wrong size on ImportanceSamplingLibrary_NextSobolFloat"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolFloat, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_NextSobolFloat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolFloat, Dimension) == 0x000004, "Member 'ImportanceSamplingLibrary_NextSobolFloat::Dimension' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolFloat, PreviousValue) == 0x000008, "Member 'ImportanceSamplingLibrary_NextSobolFloat::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_NextSobolFloat, ReturnValue) == 0x00000C, "Member 'ImportanceSamplingLibrary_NextSobolFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_RandomSobolCell2D \ +static_assert(alignof(ImportanceSamplingLibrary_RandomSobolCell2D) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_RandomSobolCell2D"); \ +static_assert(sizeof(ImportanceSamplingLibrary_RandomSobolCell2D) == 0x000038, "Wrong size on ImportanceSamplingLibrary_RandomSobolCell2D"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell2D, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_RandomSobolCell2D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell2D, NumCells) == 0x000004, "Member 'ImportanceSamplingLibrary_RandomSobolCell2D::NumCells' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell2D, Cell) == 0x000008, "Member 'ImportanceSamplingLibrary_RandomSobolCell2D::Cell' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell2D, Seed) == 0x000018, "Member 'ImportanceSamplingLibrary_RandomSobolCell2D::Seed' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell2D, ReturnValue) == 0x000028, "Member 'ImportanceSamplingLibrary_RandomSobolCell2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_RandomSobolCell3D \ +static_assert(alignof(ImportanceSamplingLibrary_RandomSobolCell3D) == 0x000008, "Wrong alignment on ImportanceSamplingLibrary_RandomSobolCell3D"); \ +static_assert(sizeof(ImportanceSamplingLibrary_RandomSobolCell3D) == 0x000050, "Wrong size on ImportanceSamplingLibrary_RandomSobolCell3D"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell3D, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_RandomSobolCell3D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell3D, NumCells) == 0x000004, "Member 'ImportanceSamplingLibrary_RandomSobolCell3D::NumCells' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell3D, Cell) == 0x000008, "Member 'ImportanceSamplingLibrary_RandomSobolCell3D::Cell' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell3D, Seed) == 0x000020, "Member 'ImportanceSamplingLibrary_RandomSobolCell3D::Seed' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolCell3D, ReturnValue) == 0x000038, "Member 'ImportanceSamplingLibrary_RandomSobolCell3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImportanceSamplingLibrary_RandomSobolFloat \ +static_assert(alignof(ImportanceSamplingLibrary_RandomSobolFloat) == 0x000004, "Wrong alignment on ImportanceSamplingLibrary_RandomSobolFloat"); \ +static_assert(sizeof(ImportanceSamplingLibrary_RandomSobolFloat) == 0x000010, "Wrong size on ImportanceSamplingLibrary_RandomSobolFloat"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolFloat, Index_0) == 0x000000, "Member 'ImportanceSamplingLibrary_RandomSobolFloat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolFloat, Dimension) == 0x000004, "Member 'ImportanceSamplingLibrary_RandomSobolFloat::Dimension' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolFloat, Seed) == 0x000008, "Member 'ImportanceSamplingLibrary_RandomSobolFloat::Seed' has a wrong offset!"); \ +static_assert(offsetof(ImportanceSamplingLibrary_RandomSobolFloat, ReturnValue) == 0x00000C, "Member 'ImportanceSamplingLibrary_RandomSobolFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImportanceSamplingLibrary \ +static_assert(alignof(UImportanceSamplingLibrary) == 0x000008, "Wrong alignment on UImportanceSamplingLibrary"); \ +static_assert(sizeof(UImportanceSamplingLibrary) == 0x000028, "Wrong size on UImportanceSamplingLibrary"); \ + +#define DUMPER7_ASSERTS_ULayer \ +static_assert(alignof(ULayer) == 0x000008, "Wrong alignment on ULayer"); \ +static_assert(sizeof(ULayer) == 0x000048, "Wrong size on ULayer"); \ +static_assert(offsetof(ULayer, LayerName) == 0x000028, "Member 'ULayer::LayerName' has a wrong offset!"); \ +static_assert(offsetof(ULayer, ActorStats) == 0x000038, "Member 'ULayer::ActorStats' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelActorContainer \ +static_assert(alignof(ULevelActorContainer) == 0x000008, "Wrong alignment on ULevelActorContainer"); \ +static_assert(sizeof(ULevelActorContainer) == 0x000038, "Wrong size on ULevelActorContainer"); \ +static_assert(offsetof(ULevelActorContainer, Actors) == 0x000028, "Member 'ULevelActorContainer::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelBounds \ +static_assert(alignof(ALevelBounds) == 0x000008, "Wrong alignment on ALevelBounds"); \ +static_assert(sizeof(ALevelBounds) == 0x0002A8, "Wrong size on ALevelBounds"); \ +static_assert(offsetof(ALevelBounds, BoxComponent) == 0x000298, "Member 'ALevelBounds::BoxComponent' has a wrong offset!"); \ +static_assert(offsetof(ALevelBounds, bAutoUpdateBounds) == 0x0002A0, "Member 'ALevelBounds::bAutoUpdateBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelInstance \ +static_assert(alignof(ALevelInstance) == 0x000008, "Wrong alignment on ALevelInstance"); \ +static_assert(sizeof(ALevelInstance) == 0x000338, "Wrong size on ALevelInstance"); \ +static_assert(offsetof(ALevelInstance, LevelInstanceComponent) == 0x0002A0, "Member 'ALevelInstance::LevelInstanceComponent' has a wrong offset!"); \ +static_assert(offsetof(ALevelInstance, CookedWorldAsset) == 0x0002A8, "Member 'ALevelInstance::CookedWorldAsset' has a wrong offset!"); \ +static_assert(offsetof(ALevelInstance, LevelInstanceSpawnGuid) == 0x0002D0, "Member 'ALevelInstance::LevelInstanceSpawnGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelInstanceEditorInstanceActor \ +static_assert(alignof(ALevelInstanceEditorInstanceActor) == 0x000008, "Wrong alignment on ALevelInstanceEditorInstanceActor"); \ +static_assert(sizeof(ALevelInstanceEditorInstanceActor) == 0x000298, "Wrong size on ALevelInstanceEditorInstanceActor"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingLevelInstanceEditor \ +static_assert(alignof(ULevelStreamingLevelInstanceEditor) == 0x000010, "Wrong alignment on ULevelStreamingLevelInstanceEditor"); \ +static_assert(sizeof(ULevelStreamingLevelInstanceEditor) == 0x0001A0, "Wrong size on ULevelStreamingLevelInstanceEditor"); \ + +#define DUMPER7_ASSERTS_LevelInstanceInterface_GetWorldAsset \ +static_assert(alignof(LevelInstanceInterface_GetWorldAsset) == 0x000008, "Wrong alignment on LevelInstanceInterface_GetWorldAsset"); \ +static_assert(sizeof(LevelInstanceInterface_GetWorldAsset) == 0x000028, "Wrong size on LevelInstanceInterface_GetWorldAsset"); \ +static_assert(offsetof(LevelInstanceInterface_GetWorldAsset, ReturnValue) == 0x000000, "Member 'LevelInstanceInterface_GetWorldAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelInstanceInterface_IsLoaded \ +static_assert(alignof(LevelInstanceInterface_IsLoaded) == 0x000001, "Wrong alignment on LevelInstanceInterface_IsLoaded"); \ +static_assert(sizeof(LevelInstanceInterface_IsLoaded) == 0x000001, "Wrong size on LevelInstanceInterface_IsLoaded"); \ +static_assert(offsetof(LevelInstanceInterface_IsLoaded, ReturnValue) == 0x000000, "Member 'LevelInstanceInterface_IsLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ILevelInstanceInterface \ +static_assert(alignof(ILevelInstanceInterface) == 0x000001, "Wrong alignment on ILevelInstanceInterface"); \ +static_assert(sizeof(ILevelInstanceInterface) == 0x000001, "Wrong size on ILevelInstanceInterface"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingLevelInstance \ +static_assert(alignof(ULevelStreamingLevelInstance) == 0x000010, "Wrong alignment on ULevelStreamingLevelInstance"); \ +static_assert(sizeof(ULevelStreamingLevelInstance) == 0x0001D0, "Wrong size on ULevelStreamingLevelInstance"); \ + +#define DUMPER7_ASSERTS_ULevelInstanceSubsystem \ +static_assert(alignof(ULevelInstanceSubsystem) == 0x000008, "Wrong alignment on ULevelInstanceSubsystem"); \ +static_assert(sizeof(ULevelInstanceSubsystem) == 0x0001C0, "Wrong size on ULevelInstanceSubsystem"); \ + +#define DUMPER7_ASSERTS_ULevelScriptBlueprint \ +static_assert(alignof(ULevelScriptBlueprint) == 0x000008, "Wrong alignment on ULevelScriptBlueprint"); \ +static_assert(sizeof(ULevelScriptBlueprint) == 0x0000A8, "Wrong size on ULevelScriptBlueprint"); \ + +#define DUMPER7_ASSERTS_ULightmappedSurfaceCollection \ +static_assert(alignof(ULightmappedSurfaceCollection) == 0x000008, "Wrong alignment on ULightmappedSurfaceCollection"); \ +static_assert(sizeof(ULightmappedSurfaceCollection) == 0x000040, "Wrong size on ULightmappedSurfaceCollection"); \ +static_assert(offsetof(ULightmappedSurfaceCollection, SourceModel) == 0x000028, "Member 'ULightmappedSurfaceCollection::SourceModel' has a wrong offset!"); \ +static_assert(offsetof(ULightmappedSurfaceCollection, Surfaces) == 0x000030, "Member 'ULightmappedSurfaceCollection::Surfaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALightmassCharacterIndirectDetailVolume \ +static_assert(alignof(ALightmassCharacterIndirectDetailVolume) == 0x000008, "Wrong alignment on ALightmassCharacterIndirectDetailVolume"); \ +static_assert(sizeof(ALightmassCharacterIndirectDetailVolume) == 0x0002D0, "Wrong size on ALightmassCharacterIndirectDetailVolume"); \ + +#define DUMPER7_ASSERTS_ULightmassPrimitiveSettingsObject \ +static_assert(alignof(ULightmassPrimitiveSettingsObject) == 0x000008, "Wrong alignment on ULightmassPrimitiveSettingsObject"); \ +static_assert(sizeof(ULightmassPrimitiveSettingsObject) == 0x000040, "Wrong size on ULightmassPrimitiveSettingsObject"); \ +static_assert(offsetof(ULightmassPrimitiveSettingsObject, LightmassSettings) == 0x000028, "Member 'ULightmassPrimitiveSettingsObject::LightmassSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance \ +static_assert(alignof(LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance) == 0x000008, "Wrong alignment on LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance"); \ +static_assert(sizeof(LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance) == 0x000020, "Wrong size on LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance, Actor) == 0x000000, "Member 'LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance::Actor' has a wrong offset!"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance, ReturnValue) == 0x000008, "Member 'LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance \ +static_assert(alignof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance) == 0x000010, "Wrong alignment on LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance"); \ +static_assert(sizeof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance) == 0x0000A0, "Wrong size on LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance, ActorClass) == 0x000000, "Member 'LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance, Transform) == 0x000010, "Member 'LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance::Transform' has a wrong offset!"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance, Layer) == 0x000070, "Member 'LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance::Layer' has a wrong offset!"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance, World) == 0x000078, "Member 'LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance::World' has a wrong offset!"); \ +static_assert(offsetof(LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance, ReturnValue) == 0x000080, "Member 'LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightWeightInstanceBlueprintFunctionLibrary \ +static_assert(alignof(ULightWeightInstanceBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on ULightWeightInstanceBlueprintFunctionLibrary"); \ +static_assert(sizeof(ULightWeightInstanceBlueprintFunctionLibrary) == 0x000028, "Wrong size on ULightWeightInstanceBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UActorInstanceHandleInterface \ +static_assert(alignof(UActorInstanceHandleInterface) == 0x000008, "Wrong alignment on UActorInstanceHandleInterface"); \ +static_assert(sizeof(UActorInstanceHandleInterface) == 0x000048, "Wrong size on UActorInstanceHandleInterface"); \ + +#define DUMPER7_ASSERTS_ALightWeightInstanceStaticMeshManager \ +static_assert(alignof(ALightWeightInstanceStaticMeshManager) == 0x000008, "Wrong alignment on ALightWeightInstanceStaticMeshManager"); \ +static_assert(sizeof(ALightWeightInstanceStaticMeshManager) == 0x0003B0, "Wrong size on ALightWeightInstanceStaticMeshManager"); \ +static_assert(offsetof(ALightWeightInstanceStaticMeshManager, StaticMesh) == 0x000350, "Member 'ALightWeightInstanceStaticMeshManager::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceStaticMeshManager, InstancedStaticMeshComponent) == 0x000378, "Member 'ALightWeightInstanceStaticMeshManager::InstancedStaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceStaticMeshManager, RenderingIndicesToDataIndices) == 0x000380, "Member 'ALightWeightInstanceStaticMeshManager::RenderingIndicesToDataIndices' has a wrong offset!"); \ +static_assert(offsetof(ALightWeightInstanceStaticMeshManager, DataIndicesToRenderingIndices) == 0x000390, "Member 'ALightWeightInstanceStaticMeshManager::DataIndicesToRenderingIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalPlayer \ +static_assert(alignof(ULocalPlayer) == 0x000008, "Wrong alignment on ULocalPlayer"); \ +static_assert(sizeof(ULocalPlayer) == 0x0002B0, "Wrong size on ULocalPlayer"); \ +static_assert(offsetof(ULocalPlayer, ViewportClient) == 0x000078, "Member 'ULocalPlayer::ViewportClient' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayer, AspectRatioAxisConstraint) == 0x0000B8, "Member 'ULocalPlayer::AspectRatioAxisConstraint' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayer, PendingLevelPlayerControllerClass) == 0x0000C0, "Member 'ULocalPlayer::PendingLevelPlayerControllerClass' has a wrong offset!"); \ +static_assert(offsetof(ULocalPlayer, ControllerId) == 0x0000E0, "Member 'ULocalPlayer::ControllerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationVolume_IsLoaded \ +static_assert(alignof(LocationVolume_IsLoaded) == 0x000001, "Wrong alignment on LocationVolume_IsLoaded"); \ +static_assert(sizeof(LocationVolume_IsLoaded) == 0x000001, "Wrong size on LocationVolume_IsLoaded"); \ +static_assert(offsetof(LocationVolume_IsLoaded, ReturnValue) == 0x000000, "Member 'LocationVolume_IsLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALocationVolume \ +static_assert(alignof(ALocationVolume) == 0x000008, "Wrong alignment on ALocationVolume"); \ +static_assert(sizeof(ALocationVolume) == 0x0002E0, "Wrong size on ALocationVolume"); \ +static_assert(offsetof(ALocationVolume, DebugColor) == 0x0002D8, "Member 'ALocationVolume::DebugColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMaterialInstanceActor \ +static_assert(alignof(AMaterialInstanceActor) == 0x000008, "Wrong alignment on AMaterialInstanceActor"); \ +static_assert(sizeof(AMaterialInstanceActor) == 0x0002A8, "Wrong size on AMaterialInstanceActor"); \ +static_assert(offsetof(AMaterialInstanceActor, TargetActors) == 0x000298, "Member 'AMaterialInstanceActor::TargetActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterial \ +static_assert(alignof(UMaterial) == 0x000008, "Wrong alignment on UMaterial"); \ +static_assert(sizeof(UMaterial) == 0x000218, "Wrong size on UMaterial"); \ +static_assert(offsetof(UMaterial, PhysMaterial) == 0x0000B0, "Member 'UMaterial::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, PhysMaterialMask) == 0x0000B8, "Member 'UMaterial::PhysMaterialMask' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, PhysicalMaterialMap) == 0x0000C0, "Member 'UMaterial::PhysicalMaterialMap' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, RenderTracePhysicalMaterialOutputs) == 0x000100, "Member 'UMaterial::RenderTracePhysicalMaterialOutputs' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, MaterialDomain) == 0x000110, "Member 'UMaterial::MaterialDomain' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, BlendMode) == 0x000111, "Member 'UMaterial::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, DecalBlendMode) == 0x000112, "Member 'UMaterial::DecalBlendMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, MaterialDecalResponse) == 0x000113, "Member 'UMaterial::MaterialDecalResponse' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, NaniteOverrideMaterial) == 0x000118, "Member 'UMaterial::NaniteOverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, DisplacementScaling) == 0x000150, "Member 'UMaterial::DisplacementScaling' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, ShadingModel) == 0x000158, "Member 'UMaterial::ShadingModel' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, ShadingModels) == 0x00015A, "Member 'UMaterial::ShadingModels' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, OpacityMaskClipValue) == 0x00015C, "Member 'UMaterial::OpacityMaskClipValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucencyPass) == 0x000162, "Member 'UMaterial::TranslucencyPass' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucencyLightingMode) == 0x000163, "Member 'UMaterial::TranslucencyLightingMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, NumCustomizedUVs) == 0x000168, "Member 'UMaterial::NumCustomizedUVs' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucencyDirectionalLightingIntensity) == 0x00016C, "Member 'UMaterial::TranslucencyDirectionalLightingIntensity' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentShadowDensityScale) == 0x000170, "Member 'UMaterial::TranslucentShadowDensityScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentSelfShadowDensityScale) == 0x000174, "Member 'UMaterial::TranslucentSelfShadowDensityScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentSelfShadowSecondDensityScale) == 0x000178, "Member 'UMaterial::TranslucentSelfShadowSecondDensityScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentSelfShadowSecondOpacity) == 0x00017C, "Member 'UMaterial::TranslucentSelfShadowSecondOpacity' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentBackscatteringExponent) == 0x000180, "Member 'UMaterial::TranslucentBackscatteringExponent' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentMultipleScatteringExtinction) == 0x000184, "Member 'UMaterial::TranslucentMultipleScatteringExtinction' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, TranslucentShadowStartOffset) == 0x000194, "Member 'UMaterial::TranslucentShadowStartOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, FloatPrecisionMode) == 0x0001A1, "Member 'UMaterial::FloatPrecisionMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, ShadingRate) == 0x0001A9, "Member 'UMaterial::ShadingRate' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, BlendableLocation) == 0x0001AC, "Member 'UMaterial::BlendableLocation' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, StencilCompare) == 0x0001AE, "Member 'UMaterial::StencilCompare' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, StencilRefValue) == 0x0001AF, "Member 'UMaterial::StencilRefValue' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, RefractionMode) == 0x0001B0, "Member 'UMaterial::RefractionMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, RefractionMethod) == 0x0001B1, "Member 'UMaterial::RefractionMethod' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, RefractionCoverageMode) == 0x0001B2, "Member 'UMaterial::RefractionCoverageMode' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, BlendablePriority) == 0x0001B4, "Member 'UMaterial::BlendablePriority' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, UsageFlagWarnings) == 0x0001BC, "Member 'UMaterial::UsageFlagWarnings' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, RefractionDepthBias) == 0x0001C4, "Member 'UMaterial::RefractionDepthBias' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, MaxWorldPositionOffsetDisplacement) == 0x0001C8, "Member 'UMaterial::MaxWorldPositionOffsetDisplacement' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, bAlwaysEvaluateWorldPositionOffset) == 0x0001CC, "Member 'UMaterial::bAlwaysEvaluateWorldPositionOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterial, StateId) == 0x0001D4, "Member 'UMaterial::StateId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_CopyInterpParameters \ +static_assert(alignof(MaterialInstanceDynamic_CopyInterpParameters) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_CopyInterpParameters"); \ +static_assert(sizeof(MaterialInstanceDynamic_CopyInterpParameters) == 0x000008, "Wrong size on MaterialInstanceDynamic_CopyInterpParameters"); \ +static_assert(offsetof(MaterialInstanceDynamic_CopyInterpParameters, Source) == 0x000000, "Member 'MaterialInstanceDynamic_CopyInterpParameters::Source' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_CopyParameterOverrides \ +static_assert(alignof(MaterialInstanceDynamic_CopyParameterOverrides) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_CopyParameterOverrides"); \ +static_assert(sizeof(MaterialInstanceDynamic_CopyParameterOverrides) == 0x000008, "Wrong size on MaterialInstanceDynamic_CopyParameterOverrides"); \ +static_assert(offsetof(MaterialInstanceDynamic_CopyParameterOverrides, MaterialInstance) == 0x000000, "Member 'MaterialInstanceDynamic_CopyParameterOverrides::MaterialInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex \ +static_assert(alignof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex"); \ +static_assert(sizeof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex) == 0x000014, "Wrong size on MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex"); \ +static_assert(offsetof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex, Value) == 0x000008, "Member 'MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex::Value' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex, OutParameterIndex) == 0x00000C, "Member 'MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex::OutParameterIndex' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex, ReturnValue) == 0x000010, "Member 'MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters \ +static_assert(alignof(MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters) == 0x000010, "Wrong size on MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters, Source) == 0x000000, "Member 'MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters::Source' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters, bQuickParametersOnly) == 0x000008, "Member 'MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters::bQuickParametersOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetScalarParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetScalarParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_K2_GetScalarParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetScalarParameterValue) == 0x00000C, "Wrong size on MaterialInstanceDynamic_K2_GetScalarParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetScalarParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetScalarParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceDynamic_K2_GetScalarParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo) == 0x000014, "Wrong size on MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo, ReturnValue) == 0x000010, "Member 'MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetTextureParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetTextureParameterValue) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_K2_GetTextureParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetTextureParameterValue) == 0x000010, "Wrong size on MaterialInstanceDynamic_K2_GetTextureParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetTextureParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetTextureParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceDynamic_K2_GetTextureParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo) == 0x000018, "Wrong size on MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo, ReturnValue) == 0x000010, "Member 'MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetVectorParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetVectorParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_K2_GetVectorParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetVectorParameterValue) == 0x000018, "Wrong size on MaterialInstanceDynamic_K2_GetVectorParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetVectorParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetVectorParameterValue, ReturnValue) == 0x000008, "Member 'MaterialInstanceDynamic_K2_GetVectorParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo) == 0x000020, "Wrong size on MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo, ReturnValue) == 0x000010, "Member 'MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams \ +static_assert(alignof(MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams"); \ +static_assert(sizeof(MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams) == 0x000018, "Wrong size on MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams, SourceA) == 0x000000, "Member 'MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams::SourceA' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams, SourceB) == 0x000008, "Member 'MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams::SourceB' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams, alpha) == 0x000010, "Member 'MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetDoubleVectorParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetDoubleVectorParameterValue) == 0x000010, "Wrong alignment on MaterialInstanceDynamic_SetDoubleVectorParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetDoubleVectorParameterValue) == 0x000030, "Wrong size on MaterialInstanceDynamic_SetDoubleVectorParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetDoubleVectorParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetDoubleVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetDoubleVectorParameterValue, Value) == 0x000010, "Member 'MaterialInstanceDynamic_SetDoubleVectorParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue) == 0x000010, "Wrong size on MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue, Value) == 0x000008, "Member 'MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo) == 0x000018, "Wrong size on MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo, Value) == 0x000010, "Member 'MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetScalarParameterByIndex \ +static_assert(alignof(MaterialInstanceDynamic_SetScalarParameterByIndex) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_SetScalarParameterByIndex"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetScalarParameterByIndex) == 0x00000C, "Wrong size on MaterialInstanceDynamic_SetScalarParameterByIndex"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterByIndex, ParameterIndex) == 0x000000, "Member 'MaterialInstanceDynamic_SetScalarParameterByIndex::ParameterIndex' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterByIndex, Value) == 0x000004, "Member 'MaterialInstanceDynamic_SetScalarParameterByIndex::Value' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterByIndex, ReturnValue) == 0x000008, "Member 'MaterialInstanceDynamic_SetScalarParameterByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetScalarParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetScalarParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_SetScalarParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetScalarParameterValue) == 0x00000C, "Wrong size on MaterialInstanceDynamic_SetScalarParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterValue, Value) == 0x000008, "Member 'MaterialInstanceDynamic_SetScalarParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetScalarParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_SetScalarParameterValueByInfo) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_SetScalarParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetScalarParameterValueByInfo) == 0x000014, "Wrong size on MaterialInstanceDynamic_SetScalarParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_SetScalarParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetScalarParameterValueByInfo, Value) == 0x000010, "Member 'MaterialInstanceDynamic_SetScalarParameterValueByInfo::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue) == 0x000010, "Wrong size on MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue, Value) == 0x000008, "Member 'MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetTextureParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetTextureParameterValue) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_SetTextureParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetTextureParameterValue) == 0x000010, "Wrong size on MaterialInstanceDynamic_SetTextureParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetTextureParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetTextureParameterValue, Value) == 0x000008, "Member 'MaterialInstanceDynamic_SetTextureParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetTextureParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_SetTextureParameterValueByInfo) == 0x000008, "Wrong alignment on MaterialInstanceDynamic_SetTextureParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetTextureParameterValueByInfo) == 0x000018, "Wrong size on MaterialInstanceDynamic_SetTextureParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetTextureParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_SetTextureParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetTextureParameterValueByInfo, Value) == 0x000010, "Member 'MaterialInstanceDynamic_SetTextureParameterValueByInfo::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetVectorParameterValue \ +static_assert(alignof(MaterialInstanceDynamic_SetVectorParameterValue) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_SetVectorParameterValue"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetVectorParameterValue) == 0x000018, "Wrong size on MaterialInstanceDynamic_SetVectorParameterValue"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetVectorParameterValue, ParameterName) == 0x000000, "Member 'MaterialInstanceDynamic_SetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetVectorParameterValue, Value) == 0x000008, "Member 'MaterialInstanceDynamic_SetVectorParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialInstanceDynamic_SetVectorParameterValueByInfo \ +static_assert(alignof(MaterialInstanceDynamic_SetVectorParameterValueByInfo) == 0x000004, "Wrong alignment on MaterialInstanceDynamic_SetVectorParameterValueByInfo"); \ +static_assert(sizeof(MaterialInstanceDynamic_SetVectorParameterValueByInfo) == 0x000020, "Wrong size on MaterialInstanceDynamic_SetVectorParameterValueByInfo"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetVectorParameterValueByInfo, ParameterInfo) == 0x000000, "Member 'MaterialInstanceDynamic_SetVectorParameterValueByInfo::ParameterInfo' has a wrong offset!"); \ +static_assert(offsetof(MaterialInstanceDynamic_SetVectorParameterValueByInfo, Value) == 0x000010, "Member 'MaterialInstanceDynamic_SetVectorParameterValueByInfo::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialInstanceDynamic \ +static_assert(alignof(UMaterialInstanceDynamic) == 0x000008, "Wrong alignment on UMaterialInstanceDynamic"); \ +static_assert(sizeof(UMaterialInstanceDynamic) == 0x000298, "Wrong size on UMaterialInstanceDynamic"); \ + +#define DUMPER7_ASSERTS_MaterialParameterCollection_GetScalarParameterDefaultValue \ +static_assert(alignof(MaterialParameterCollection_GetScalarParameterDefaultValue) == 0x000004, "Wrong alignment on MaterialParameterCollection_GetScalarParameterDefaultValue"); \ +static_assert(sizeof(MaterialParameterCollection_GetScalarParameterDefaultValue) == 0x000010, "Wrong size on MaterialParameterCollection_GetScalarParameterDefaultValue"); \ +static_assert(offsetof(MaterialParameterCollection_GetScalarParameterDefaultValue, ParameterName) == 0x000000, "Member 'MaterialParameterCollection_GetScalarParameterDefaultValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialParameterCollection_GetScalarParameterDefaultValue, bParameterFound) == 0x000008, "Member 'MaterialParameterCollection_GetScalarParameterDefaultValue::bParameterFound' has a wrong offset!"); \ +static_assert(offsetof(MaterialParameterCollection_GetScalarParameterDefaultValue, ReturnValue) == 0x00000C, "Member 'MaterialParameterCollection_GetScalarParameterDefaultValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialParameterCollection_GetScalarParameterNames \ +static_assert(alignof(MaterialParameterCollection_GetScalarParameterNames) == 0x000008, "Wrong alignment on MaterialParameterCollection_GetScalarParameterNames"); \ +static_assert(sizeof(MaterialParameterCollection_GetScalarParameterNames) == 0x000010, "Wrong size on MaterialParameterCollection_GetScalarParameterNames"); \ +static_assert(offsetof(MaterialParameterCollection_GetScalarParameterNames, ReturnValue) == 0x000000, "Member 'MaterialParameterCollection_GetScalarParameterNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialParameterCollection_GetVectorParameterDefaultValue \ +static_assert(alignof(MaterialParameterCollection_GetVectorParameterDefaultValue) == 0x000004, "Wrong alignment on MaterialParameterCollection_GetVectorParameterDefaultValue"); \ +static_assert(sizeof(MaterialParameterCollection_GetVectorParameterDefaultValue) == 0x00001C, "Wrong size on MaterialParameterCollection_GetVectorParameterDefaultValue"); \ +static_assert(offsetof(MaterialParameterCollection_GetVectorParameterDefaultValue, ParameterName) == 0x000000, "Member 'MaterialParameterCollection_GetVectorParameterDefaultValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(MaterialParameterCollection_GetVectorParameterDefaultValue, bParameterFound) == 0x000008, "Member 'MaterialParameterCollection_GetVectorParameterDefaultValue::bParameterFound' has a wrong offset!"); \ +static_assert(offsetof(MaterialParameterCollection_GetVectorParameterDefaultValue, ReturnValue) == 0x00000C, "Member 'MaterialParameterCollection_GetVectorParameterDefaultValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MaterialParameterCollection_GetVectorParameterNames \ +static_assert(alignof(MaterialParameterCollection_GetVectorParameterNames) == 0x000008, "Wrong alignment on MaterialParameterCollection_GetVectorParameterNames"); \ +static_assert(sizeof(MaterialParameterCollection_GetVectorParameterNames) == 0x000010, "Wrong size on MaterialParameterCollection_GetVectorParameterNames"); \ +static_assert(offsetof(MaterialParameterCollection_GetVectorParameterNames, ReturnValue) == 0x000000, "Member 'MaterialParameterCollection_GetVectorParameterNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialParameterCollection \ +static_assert(alignof(UMaterialParameterCollection) == 0x000008, "Wrong alignment on UMaterialParameterCollection"); \ +static_assert(sizeof(UMaterialParameterCollection) == 0x000070, "Wrong size on UMaterialParameterCollection"); \ +static_assert(offsetof(UMaterialParameterCollection, StateId) == 0x000028, "Member 'UMaterialParameterCollection::StateId' has a wrong offset!"); \ +static_assert(offsetof(UMaterialParameterCollection, ScalarParameters) == 0x000038, "Member 'UMaterialParameterCollection::ScalarParameters' has a wrong offset!"); \ +static_assert(offsetof(UMaterialParameterCollection, VectorParameters) == 0x000048, "Member 'UMaterialParameterCollection::VectorParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMeshMergeCullingVolume \ +static_assert(alignof(AMeshMergeCullingVolume) == 0x000008, "Wrong alignment on AMeshMergeCullingVolume"); \ +static_assert(sizeof(AMeshMergeCullingVolume) == 0x0002D0, "Wrong size on AMeshMergeCullingVolume"); \ + +#define DUMPER7_ASSERTS_MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis \ +static_assert(alignof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis) == 0x000008, "Wrong alignment on MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis"); \ +static_assert(sizeof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis) == 0x000030, "Wrong size on MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis, StaticMeshComponent) == 0x000000, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis, StartColor) == 0x000008, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis::StartColor' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis, EndColor) == 0x000018, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis::EndColor' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis, Axis) == 0x000028, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis, bConvertToSRGB) == 0x000029, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis::bConvertToSRGB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshVertexPainterKismetLibrary_PaintVerticesSingleColor \ +static_assert(alignof(MeshVertexPainterKismetLibrary_PaintVerticesSingleColor) == 0x000008, "Wrong alignment on MeshVertexPainterKismetLibrary_PaintVerticesSingleColor"); \ +static_assert(sizeof(MeshVertexPainterKismetLibrary_PaintVerticesSingleColor) == 0x000020, "Wrong size on MeshVertexPainterKismetLibrary_PaintVerticesSingleColor"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesSingleColor, StaticMeshComponent) == 0x000000, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesSingleColor::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesSingleColor, FillColor) == 0x000008, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesSingleColor::FillColor' has a wrong offset!"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_PaintVerticesSingleColor, bConvertToSRGB) == 0x000018, "Member 'MeshVertexPainterKismetLibrary_PaintVerticesSingleColor::bConvertToSRGB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshVertexPainterKismetLibrary_RemovePaintedVertices \ +static_assert(alignof(MeshVertexPainterKismetLibrary_RemovePaintedVertices) == 0x000008, "Wrong alignment on MeshVertexPainterKismetLibrary_RemovePaintedVertices"); \ +static_assert(sizeof(MeshVertexPainterKismetLibrary_RemovePaintedVertices) == 0x000008, "Wrong size on MeshVertexPainterKismetLibrary_RemovePaintedVertices"); \ +static_assert(offsetof(MeshVertexPainterKismetLibrary_RemovePaintedVertices, StaticMeshComponent) == 0x000000, "Member 'MeshVertexPainterKismetLibrary_RemovePaintedVertices::StaticMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshVertexPainterKismetLibrary \ +static_assert(alignof(UMeshVertexPainterKismetLibrary) == 0x000008, "Wrong alignment on UMeshVertexPainterKismetLibrary"); \ +static_assert(sizeof(UMeshVertexPainterKismetLibrary) == 0x000028, "Wrong size on UMeshVertexPainterKismetLibrary"); \ + +#define DUMPER7_ASSERTS_UNetworkSettings \ +static_assert(alignof(UNetworkSettings) == 0x000008, "Wrong alignment on UNetworkSettings"); \ +static_assert(sizeof(UNetworkSettings) == 0x000050, "Wrong size on UNetworkSettings"); \ +static_assert(offsetof(UNetworkSettings, NetworkEmulationProfiles) == 0x000040, "Member 'UNetworkSettings::NetworkEmulationProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABandwidthTestActor \ +static_assert(alignof(ABandwidthTestActor) == 0x000008, "Wrong alignment on ABandwidthTestActor"); \ +static_assert(sizeof(ABandwidthTestActor) == 0x0002B8, "Wrong size on ABandwidthTestActor"); \ +static_assert(offsetof(ABandwidthTestActor, BandwidthGenerator) == 0x000298, "Member 'ABandwidthTestActor::BandwidthGenerator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetFaultConfig \ +static_assert(alignof(UNetFaultConfig) == 0x000008, "Wrong alignment on UNetFaultConfig"); \ +static_assert(sizeof(UNetFaultConfig) == 0x000088, "Wrong size on UNetFaultConfig"); \ + +#define DUMPER7_ASSERTS_NetPushModelHelpers_MarkPropertyDirty \ +static_assert(alignof(NetPushModelHelpers_MarkPropertyDirty) == 0x000008, "Wrong alignment on NetPushModelHelpers_MarkPropertyDirty"); \ +static_assert(sizeof(NetPushModelHelpers_MarkPropertyDirty) == 0x000010, "Wrong size on NetPushModelHelpers_MarkPropertyDirty"); \ +static_assert(offsetof(NetPushModelHelpers_MarkPropertyDirty, Object) == 0x000000, "Member 'NetPushModelHelpers_MarkPropertyDirty::Object' has a wrong offset!"); \ +static_assert(offsetof(NetPushModelHelpers_MarkPropertyDirty, PropertyName) == 0x000008, "Member 'NetPushModelHelpers_MarkPropertyDirty::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NetPushModelHelpers_MarkPropertyDirtyFromRepIndex \ +static_assert(alignof(NetPushModelHelpers_MarkPropertyDirtyFromRepIndex) == 0x000008, "Wrong alignment on NetPushModelHelpers_MarkPropertyDirtyFromRepIndex"); \ +static_assert(sizeof(NetPushModelHelpers_MarkPropertyDirtyFromRepIndex) == 0x000018, "Wrong size on NetPushModelHelpers_MarkPropertyDirtyFromRepIndex"); \ +static_assert(offsetof(NetPushModelHelpers_MarkPropertyDirtyFromRepIndex, Object) == 0x000000, "Member 'NetPushModelHelpers_MarkPropertyDirtyFromRepIndex::Object' has a wrong offset!"); \ +static_assert(offsetof(NetPushModelHelpers_MarkPropertyDirtyFromRepIndex, RepIndex) == 0x000008, "Member 'NetPushModelHelpers_MarkPropertyDirtyFromRepIndex::RepIndex' has a wrong offset!"); \ +static_assert(offsetof(NetPushModelHelpers_MarkPropertyDirtyFromRepIndex, PropertyName) == 0x00000C, "Member 'NetPushModelHelpers_MarkPropertyDirtyFromRepIndex::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetPushModelHelpers \ +static_assert(alignof(UNetPushModelHelpers) == 0x000008, "Wrong alignment on UNetPushModelHelpers"); \ +static_assert(sizeof(UNetPushModelHelpers) == 0x000028, "Wrong size on UNetPushModelHelpers"); \ + +#define DUMPER7_ASSERTS_ANote \ +static_assert(alignof(ANote) == 0x000008, "Wrong alignment on ANote"); \ +static_assert(sizeof(ANote) == 0x000298, "Wrong size on ANote"); \ + +#define DUMPER7_ASSERTS_UObjectLibrary \ +static_assert(alignof(UObjectLibrary) == 0x000008, "Wrong alignment on UObjectLibrary"); \ +static_assert(sizeof(UObjectLibrary) == 0x0000A8, "Wrong size on UObjectLibrary"); \ +static_assert(offsetof(UObjectLibrary, ObjectBaseClass) == 0x000028, "Member 'UObjectLibrary::ObjectBaseClass' has a wrong offset!"); \ +static_assert(offsetof(UObjectLibrary, bHasBlueprintClasses) == 0x000030, "Member 'UObjectLibrary::bHasBlueprintClasses' has a wrong offset!"); \ +static_assert(offsetof(UObjectLibrary, Objects) == 0x000038, "Member 'UObjectLibrary::Objects' has a wrong offset!"); \ +static_assert(offsetof(UObjectLibrary, WeakObjects) == 0x000048, "Member 'UObjectLibrary::WeakObjects' has a wrong offset!"); \ +static_assert(offsetof(UObjectLibrary, bUseWeakReferences) == 0x000058, "Member 'UObjectLibrary::bUseWeakReferences' has a wrong offset!"); \ +static_assert(offsetof(UObjectLibrary, bIsFullyLoaded) == 0x000059, "Member 'UObjectLibrary::bIsFullyLoaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnlineBlueprintCallProxyBase \ +static_assert(alignof(UOnlineBlueprintCallProxyBase) == 0x000008, "Wrong alignment on UOnlineBlueprintCallProxyBase"); \ +static_assert(sizeof(UOnlineBlueprintCallProxyBase) == 0x000030, "Wrong size on UOnlineBlueprintCallProxyBase"); \ + +#define DUMPER7_ASSERTS_UOnlineEngineInterface \ +static_assert(alignof(UOnlineEngineInterface) == 0x000008, "Wrong alignment on UOnlineEngineInterface"); \ +static_assert(sizeof(UOnlineEngineInterface) == 0x000028, "Wrong size on UOnlineEngineInterface"); \ + +#define DUMPER7_ASSERTS_APackedLevelActor \ +static_assert(alignof(APackedLevelActor) == 0x000008, "Wrong alignment on APackedLevelActor"); \ +static_assert(sizeof(APackedLevelActor) == 0x000338, "Wrong size on APackedLevelActor"); \ + +#define DUMPER7_ASSERTS_UEngineHandlerComponentFactory \ +static_assert(alignof(UEngineHandlerComponentFactory) == 0x000008, "Wrong alignment on UEngineHandlerComponentFactory"); \ +static_assert(sizeof(UEngineHandlerComponentFactory) == 0x000028, "Wrong size on UEngineHandlerComponentFactory"); \ + +#define DUMPER7_ASSERTS_APainCausingVolume \ +static_assert(alignof(APainCausingVolume) == 0x000008, "Wrong alignment on APainCausingVolume"); \ +static_assert(sizeof(APainCausingVolume) == 0x000308, "Wrong size on APainCausingVolume"); \ +static_assert(offsetof(APainCausingVolume, DamagePerSec) == 0x0002E4, "Member 'APainCausingVolume::DamagePerSec' has a wrong offset!"); \ +static_assert(offsetof(APainCausingVolume, DamageType) == 0x0002E8, "Member 'APainCausingVolume::DamageType' has a wrong offset!"); \ +static_assert(offsetof(APainCausingVolume, PainInterval) == 0x0002F0, "Member 'APainCausingVolume::PainInterval' has a wrong offset!"); \ +static_assert(offsetof(APainCausingVolume, DamageInstigator) == 0x0002F8, "Member 'APainCausingVolume::DamageInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncPhysicsInputComponent_ServerRPCBufferInput \ +static_assert(alignof(AsyncPhysicsInputComponent_ServerRPCBufferInput) == 0x000008, "Wrong alignment on AsyncPhysicsInputComponent_ServerRPCBufferInput"); \ +static_assert(sizeof(AsyncPhysicsInputComponent_ServerRPCBufferInput) == 0x000008, "Wrong size on AsyncPhysicsInputComponent_ServerRPCBufferInput"); \ +static_assert(offsetof(AsyncPhysicsInputComponent_ServerRPCBufferInput, AsyncPhysicsData) == 0x000000, "Member 'AsyncPhysicsInputComponent_ServerRPCBufferInput::AsyncPhysicsData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncPhysicsInputComponent_GetDataToConsume \ +static_assert(alignof(AsyncPhysicsInputComponent_GetDataToConsume) == 0x000008, "Wrong alignment on AsyncPhysicsInputComponent_GetDataToConsume"); \ +static_assert(sizeof(AsyncPhysicsInputComponent_GetDataToConsume) == 0x000008, "Wrong size on AsyncPhysicsInputComponent_GetDataToConsume"); \ +static_assert(offsetof(AsyncPhysicsInputComponent_GetDataToConsume, ReturnValue) == 0x000000, "Member 'AsyncPhysicsInputComponent_GetDataToConsume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncPhysicsInputComponent_GetDataToWrite \ +static_assert(alignof(AsyncPhysicsInputComponent_GetDataToWrite) == 0x000008, "Wrong alignment on AsyncPhysicsInputComponent_GetDataToWrite"); \ +static_assert(sizeof(AsyncPhysicsInputComponent_GetDataToWrite) == 0x000008, "Wrong size on AsyncPhysicsInputComponent_GetDataToWrite"); \ +static_assert(offsetof(AsyncPhysicsInputComponent_GetDataToWrite, ReturnValue) == 0x000000, "Member 'AsyncPhysicsInputComponent_GetDataToWrite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncPhysicsInputComponent \ +static_assert(alignof(UAsyncPhysicsInputComponent) == 0x000008, "Wrong alignment on UAsyncPhysicsInputComponent"); \ +static_assert(sizeof(UAsyncPhysicsInputComponent) == 0x0000C8, "Wrong size on UAsyncPhysicsInputComponent"); \ +static_assert(offsetof(UAsyncPhysicsInputComponent, DataClass) == 0x0000A0, "Member 'UAsyncPhysicsInputComponent::DataClass' has a wrong offset!"); \ +static_assert(offsetof(UAsyncPhysicsInputComponent, BufferedData) == 0x0000A8, "Member 'UAsyncPhysicsInputComponent::BufferedData' has a wrong offset!"); \ +static_assert(offsetof(UAsyncPhysicsInputComponent, DataToConsume) == 0x0000B8, "Member 'UAsyncPhysicsInputComponent::DataToConsume' has a wrong offset!"); \ +static_assert(offsetof(UAsyncPhysicsInputComponent, DataToWrite) == 0x0000C0, "Member 'UAsyncPhysicsInputComponent::DataToWrite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionActor_GetClusterUnionComponent \ +static_assert(alignof(ClusterUnionActor_GetClusterUnionComponent) == 0x000008, "Wrong alignment on ClusterUnionActor_GetClusterUnionComponent"); \ +static_assert(sizeof(ClusterUnionActor_GetClusterUnionComponent) == 0x000008, "Wrong size on ClusterUnionActor_GetClusterUnionComponent"); \ +static_assert(offsetof(ClusterUnionActor_GetClusterUnionComponent, ReturnValue) == 0x000000, "Member 'ClusterUnionActor_GetClusterUnionComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AClusterUnionActor \ +static_assert(alignof(AClusterUnionActor) == 0x000008, "Wrong alignment on AClusterUnionActor"); \ +static_assert(sizeof(AClusterUnionActor) == 0x0002A0, "Wrong size on AClusterUnionActor"); \ +static_assert(offsetof(AClusterUnionActor, ClusterUnion) == 0x000298, "Member 'AClusterUnionActor::ClusterUnion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_IsPendingDeletion \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_IsPendingDeletion) == 0x000001, "Wrong alignment on ClusterUnionReplicatedProxyComponent_IsPendingDeletion"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_IsPendingDeletion) == 0x000001, "Wrong size on ClusterUnionReplicatedProxyComponent_IsPendingDeletion"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_IsPendingDeletion, ReturnValue) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_IsPendingDeletion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent) == 0x000008, "Wrong alignment on ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent) == 0x000008, "Wrong size on ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent, InComponent) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_SetParentClusterUnion \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_SetParentClusterUnion) == 0x000008, "Wrong alignment on ClusterUnionReplicatedProxyComponent_SetParentClusterUnion"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_SetParentClusterUnion) == 0x000008, "Wrong size on ClusterUnionReplicatedProxyComponent_SetParentClusterUnion"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_SetParentClusterUnion, InComponent) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_SetParentClusterUnion::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_SetParticleBoneIds \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_SetParticleBoneIds) == 0x000008, "Wrong alignment on ClusterUnionReplicatedProxyComponent_SetParticleBoneIds"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_SetParticleBoneIds) == 0x000010, "Wrong size on ClusterUnionReplicatedProxyComponent_SetParticleBoneIds"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_SetParticleBoneIds, InIds) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_SetParticleBoneIds::InIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_SetParticleChildToParent \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_SetParticleChildToParent) == 0x000010, "Wrong alignment on ClusterUnionReplicatedProxyComponent_SetParticleChildToParent"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_SetParticleChildToParent) == 0x000070, "Wrong size on ClusterUnionReplicatedProxyComponent_SetParticleChildToParent"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_SetParticleChildToParent, BoneID) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_SetParticleChildToParent::BoneID' has a wrong offset!"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_SetParticleChildToParent, ChildToParent) == 0x000010, "Member 'ClusterUnionReplicatedProxyComponent_SetParticleChildToParent::ChildToParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent \ +static_assert(alignof(ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent) == 0x000008, "Wrong alignment on ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent"); \ +static_assert(sizeof(ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent) == 0x000008, "Wrong size on ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent"); \ +static_assert(offsetof(ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent, ReturnValue) == 0x000000, "Member 'ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClusterUnionReplicatedProxyComponent \ +static_assert(alignof(UClusterUnionReplicatedProxyComponent) == 0x000008, "Wrong alignment on UClusterUnionReplicatedProxyComponent"); \ +static_assert(sizeof(UClusterUnionReplicatedProxyComponent) == 0x0000F8, "Wrong size on UClusterUnionReplicatedProxyComponent"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, ParentClusterUnion) == 0x0000A0, "Member 'UClusterUnionReplicatedProxyComponent::ParentClusterUnion' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, bNetUpdateParentClusterUnion) == 0x0000A8, "Member 'UClusterUnionReplicatedProxyComponent::bNetUpdateParentClusterUnion' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, ChildClusteredComponent) == 0x0000AC, "Member 'UClusterUnionReplicatedProxyComponent::ChildClusteredComponent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, bNetUpdateChildClusteredComponent) == 0x0000B4, "Member 'UClusterUnionReplicatedProxyComponent::bNetUpdateChildClusteredComponent' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, ParticleBoneIds) == 0x0000B8, "Member 'UClusterUnionReplicatedProxyComponent::ParticleBoneIds' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, bNetUpdateParticleBoneIds) == 0x0000C8, "Member 'UClusterUnionReplicatedProxyComponent::bNetUpdateParticleBoneIds' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, ParticleChildToParents) == 0x0000D0, "Member 'UClusterUnionReplicatedProxyComponent::ParticleChildToParents' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, bNetUpdateParticleChildToParents) == 0x0000E0, "Member 'UClusterUnionReplicatedProxyComponent::bNetUpdateParticleChildToParents' has a wrong offset!"); \ +static_assert(offsetof(UClusterUnionReplicatedProxyComponent, bIsPendingDeletion) == 0x0000E1, "Member 'UClusterUnionReplicatedProxyComponent::bIsPendingDeletion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_CopyParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_CopyParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_CopyParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_CopyParams) == 0x00001C, "Wrong size on ConstraintInstanceBlueprintLibrary_CopyParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_CopyParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_CopyParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_CopyParams, SourceAccessor) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_CopyParams::SourceAccessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_CopyParams, bKeepPosition) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_CopyParams::bKeepPosition' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_CopyParams, bKeepRotation) == 0x000019, "Member 'ConstraintInstanceBlueprintLibrary_CopyParams::bKeepRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularBreakable \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularBreakable) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularBreakable"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularBreakable) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularBreakable"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularBreakable, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularBreakable::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularBreakable, bAngularBreakable) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularBreakable::bAngularBreakable' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularBreakable, AngularBreakThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularBreakable::AngularBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularDriveMode \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularDriveMode) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularDriveMode"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularDriveMode) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularDriveMode"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveMode, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveMode::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveMode, OutDriveMode) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveMode::OutDriveMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularDriveParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularDriveParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularDriveParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams, OutPositionStrength) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveParams::OutPositionStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams, OutVelocityStrength) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveParams::OutVelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularDriveParams, OutForceLimit) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularDriveParams::OutForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularLimits \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularLimits) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularLimits"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularLimits) == 0x000024, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularLimits"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, Swing1MotionType) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::Swing1MotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, Swing1LimitAngle) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::Swing1LimitAngle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, Swing2MotionType) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::Swing2MotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, Swing2LimitAngle) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::Swing2LimitAngle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, TwistMotionType) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::TwistMotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularLimits, TwistLimitAngle) == 0x000020, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularLimits::TwistLimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget, OutPosTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget::OutPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularPlasticity \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularPlasticity) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularPlasticity"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularPlasticity) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularPlasticity"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularPlasticity, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularPlasticity::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularPlasticity, bAngularPlasticity) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularPlasticity::bAngularPlasticity' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularPlasticity, AngularPlasticityThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularPlasticity::AngularPlasticityThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, bSoftSwingLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::bSoftSwingLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, SwingLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::SwingLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, SwingLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::SwingLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, SwingLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::SwingLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams, SwingLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams::SwingLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, bSoftTwistLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::bSoftTwistLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, TwistLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::TwistLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, TwistLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::TwistLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, TwistLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::TwistLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams, TwistLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams::TwistLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP, bOutEnableSLERP) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP::bOutEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing, bOutEnableTwistDrive) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing::bOutEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing, bOutEnableSwingDrive) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing::bOutEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget, OutVelTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget::OutVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames) == 0x00001C, "Wrong size on ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames, ParentBody) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames::ParentBody' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames, ChildBody) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames::ChildBody' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetContactTransferScale \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetContactTransferScale) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetContactTransferScale"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetContactTransferScale) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetContactTransferScale"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetContactTransferScale, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetContactTransferScale::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetContactTransferScale, ContactTransferScale) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetContactTransferScale::ContactTransferScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetDisableCollsion \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetDisableCollsion) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetDisableCollsion"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetDisableCollsion) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetDisableCollsion"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetDisableCollsion, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetDisableCollsion::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetDisableCollsion, ReturnValue) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetDisableCollsion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearBreakable \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearBreakable) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearBreakable"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearBreakable) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearBreakable"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearBreakable, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearBreakable::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearBreakable, bLinearBreakable) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearBreakable::bLinearBreakable' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearBreakable, LinearBreakThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearBreakable::LinearBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearDriveParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearDriveParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearDriveParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearDriveParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams, OutPositionStrength) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearDriveParams::OutPositionStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams, OutVelocityStrength) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearDriveParams::OutVelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearDriveParams, OutForceLimit) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearDriveParams::OutForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearLimits \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearLimits) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearLimits"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearLimits) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearLimits"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearLimits, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearLimits::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearLimits, XMotion) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearLimits::XMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearLimits, YMotion) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearLimits::YMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearLimits, ZMotion) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearLimits::ZMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearLimits, Limit) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearLimits::Limit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearPlasticity \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearPlasticity"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearPlasticity"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPlasticity::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity, bLinearPlasticity) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPlasticity::bLinearPlasticity' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity, LinearPlasticityThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPlasticity::LinearPlasticityThreshold' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPlasticity, PlasticityType) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPlasticity::PlasticityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive, bOutEnableDriveX) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive::bOutEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive, bOutEnableDriveY) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive::bOutEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive, bOutEnableDriveZ) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive::bOutEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget, OutPosTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget::OutPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, bSoftLinearLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::bSoftLinearLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, LinearLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::LinearLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, LinearLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::LinearLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, LinearLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::LinearLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams, LinearLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams::LinearLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive, bOutEnableDriveX) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive::bOutEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive, bOutEnableDriveY) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive::bOutEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive, bOutEnableDriveZ) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive::bOutEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget, OutVelTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget::OutVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled, ReturnValue) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP, bOutEnableSLERP) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP::bOutEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing, bOutEnableTwistDrive) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing::bOutEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing, bOutEnableSwingDrive) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing::bOutEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetParentDominates \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetParentDominates) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetParentDominates"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetParentDominates) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_GetParentDominates"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetParentDominates, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetParentDominates::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetParentDominates, ReturnValue) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetParentDominates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_GetProjectionParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_GetProjectionParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_GetProjectionParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_GetProjectionParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_GetProjectionParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetProjectionParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_GetProjectionParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetProjectionParams, bEnableProjection) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_GetProjectionParams::bEnableProjection' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetProjectionParams, ProjectionLinearAlpha) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_GetProjectionParams::ProjectionLinearAlpha' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_GetProjectionParams, ProjectionAngularAlpha) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_GetProjectionParams::ProjectionAngularAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularBreakable \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularBreakable) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularBreakable"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularBreakable) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularBreakable"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularBreakable, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularBreakable::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularBreakable, bAngularBreakable) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularBreakable::bAngularBreakable' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularBreakable, AngularBreakThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularBreakable::AngularBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularDriveMode \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularDriveMode) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularDriveMode"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularDriveMode) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularDriveMode"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveMode, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveMode::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveMode, DriveMode) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveMode::DriveMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularDriveParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularDriveParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularDriveParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams, PositionStrength) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveParams::PositionStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams, VelocityStrength) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveParams::VelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularDriveParams, InForceLimit) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularDriveParams::InForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularLimits \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularLimits) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularLimits"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularLimits) == 0x000024, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularLimits"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, Swing1MotionType) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::Swing1MotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, Swing1LimitAngle) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::Swing1LimitAngle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, Swing2MotionType) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::Swing2MotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, Swing2LimitAngle) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::Swing2LimitAngle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, TwistMotionType) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::TwistMotionType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularLimits, TwistLimitAngle) == 0x000020, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularLimits::TwistLimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget, InPosTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget::InPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularPlasticity \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularPlasticity) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularPlasticity"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularPlasticity) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularPlasticity"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularPlasticity, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularPlasticity::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularPlasticity, bAngularPlasticity) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularPlasticity::bAngularPlasticity' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularPlasticity, AngularPlasticityThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularPlasticity::AngularPlasticityThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, bSoftSwingLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::bSoftSwingLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, SwingLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::SwingLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, SwingLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::SwingLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, SwingLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::SwingLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams, SwingLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams::SwingLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, bSoftTwistLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::bSoftTwistLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, TwistLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::TwistLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, TwistLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::TwistLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, TwistLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::TwistLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams, TwistLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams::TwistLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP, bEnableSLERP) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP::bEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing, bEnableTwistDrive) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing, bEnableSwingDrive) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing::bEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget, InVelTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget::InVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetContactTransferScale \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetContactTransferScale) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetContactTransferScale"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetContactTransferScale) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetContactTransferScale"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetContactTransferScale, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetContactTransferScale::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetContactTransferScale, ContactTransferScale) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetContactTransferScale::ContactTransferScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetDisableCollision \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetDisableCollision) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetDisableCollision"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetDisableCollision) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetDisableCollision"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetDisableCollision, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetDisableCollision::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetDisableCollision, bDisableCollision) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetDisableCollision::bDisableCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearBreakable \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearBreakable) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearBreakable"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearBreakable) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearBreakable"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearBreakable, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearBreakable::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearBreakable, bLinearBreakable) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearBreakable::bLinearBreakable' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearBreakable, LinearBreakThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearBreakable::LinearBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearDriveParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearDriveParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearDriveParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearDriveParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams, PositionStrength) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearDriveParams::PositionStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams, VelocityStrength) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearDriveParams::VelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearDriveParams, InForceLimit) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearDriveParams::InForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearLimits \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearLimits) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearLimits"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearLimits) == 0x000014, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearLimits"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearLimits, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearLimits::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearLimits, XMotion) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearLimits::XMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearLimits, YMotion) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearLimits::YMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearLimits, ZMotion) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearLimits::ZMotion' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearLimits, Limit) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearLimits::Limit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearPlasticity \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearPlasticity"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearPlasticity"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPlasticity::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity, bLinearPlasticity) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPlasticity::bLinearPlasticity' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity, LinearPlasticityThreshold) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPlasticity::LinearPlasticityThreshold' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPlasticity, PlasticityType) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPlasticity::PlasticityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive, bEnableDriveX) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive::bEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive, bEnableDriveY) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive::bEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive, bEnableDriveZ) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive::bEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget, InPosTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget::InPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams) == 0x000020, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, bSoftLinearLimit) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::bSoftLinearLimit' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, LinearLimitStiffness) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::LinearLimitStiffness' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, LinearLimitDamping) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::LinearLimitDamping' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, LinearLimitRestitution) == 0x000018, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::LinearLimitRestitution' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams, LinearLimitContactDistance) == 0x00001C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams::LinearLimitContactDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive, bEnableDriveX) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive::bEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive, bEnableDriveY) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive::bEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive, bEnableDriveZ) == 0x00000E, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive::bEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget) == 0x000008, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget) == 0x000028, "Wrong size on ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget, InVelTarget) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget::InVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled, bEnableMassConditioning) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled::bEnableMassConditioning' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP, bEnableSLERP) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP::bEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing, bEnableTwistDrive) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing, bEnableSwingDrive) == 0x00000D, "Member 'ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing::bEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetParentDominates \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetParentDominates) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetParentDominates"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetParentDominates) == 0x000010, "Wrong size on ConstraintInstanceBlueprintLibrary_SetParentDominates"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetParentDominates, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetParentDominates::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetParentDominates, bParentDominates) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetParentDominates::bParentDominates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintInstanceBlueprintLibrary_SetProjectionParams \ +static_assert(alignof(ConstraintInstanceBlueprintLibrary_SetProjectionParams) == 0x000004, "Wrong alignment on ConstraintInstanceBlueprintLibrary_SetProjectionParams"); \ +static_assert(sizeof(ConstraintInstanceBlueprintLibrary_SetProjectionParams) == 0x000018, "Wrong size on ConstraintInstanceBlueprintLibrary_SetProjectionParams"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetProjectionParams, Accessor) == 0x000000, "Member 'ConstraintInstanceBlueprintLibrary_SetProjectionParams::Accessor' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetProjectionParams, bEnableProjection) == 0x00000C, "Member 'ConstraintInstanceBlueprintLibrary_SetProjectionParams::bEnableProjection' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetProjectionParams, ProjectionLinearAlpha) == 0x000010, "Member 'ConstraintInstanceBlueprintLibrary_SetProjectionParams::ProjectionLinearAlpha' has a wrong offset!"); \ +static_assert(offsetof(ConstraintInstanceBlueprintLibrary_SetProjectionParams, ProjectionAngularAlpha) == 0x000014, "Member 'ConstraintInstanceBlueprintLibrary_SetProjectionParams::ProjectionAngularAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConstraintInstanceBlueprintLibrary \ +static_assert(alignof(UConstraintInstanceBlueprintLibrary) == 0x000008, "Wrong alignment on UConstraintInstanceBlueprintLibrary"); \ +static_assert(sizeof(UConstraintInstanceBlueprintLibrary) == 0x000028, "Wrong size on UConstraintInstanceBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UNetworkPhysicsSystem \ +static_assert(alignof(UNetworkPhysicsSystem) == 0x000008, "Wrong alignment on UNetworkPhysicsSystem"); \ +static_assert(sizeof(UNetworkPhysicsSystem) == 0x000040, "Wrong size on UNetworkPhysicsSystem"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow \ +static_assert(alignof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow) == 0x000004, "Wrong alignment on PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow"); \ +static_assert(sizeof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow) == 0x000014, "Wrong size on PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow, BodyName) == 0x000000, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow::BodyName' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow, ProfileName) == 0x000008, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow, bIncludeSelf) == 0x000010, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow::bIncludeSelf' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow, bClearNotFound) == 0x000011, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow::bClearNotFound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_ApplyPhysicalAnimationSettings \ +static_assert(alignof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettings) == 0x000004, "Wrong alignment on PhysicalAnimationComponent_ApplyPhysicalAnimationSettings"); \ +static_assert(sizeof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettings) == 0x00002C, "Wrong size on PhysicalAnimationComponent_ApplyPhysicalAnimationSettings"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettings, BodyName) == 0x000000, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationSettings::BodyName' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettings, PhysicalAnimationData) == 0x000008, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationSettings::PhysicalAnimationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow \ +static_assert(alignof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow) == 0x000004, "Wrong alignment on PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow"); \ +static_assert(sizeof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow) == 0x000030, "Wrong size on PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow, BodyName) == 0x000000, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow::BodyName' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow, PhysicalAnimationData) == 0x000008, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow::PhysicalAnimationData' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow, bIncludeSelf) == 0x00002C, "Member 'PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow::bIncludeSelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_SetSkeletalMeshComponent \ +static_assert(alignof(PhysicalAnimationComponent_SetSkeletalMeshComponent) == 0x000008, "Wrong alignment on PhysicalAnimationComponent_SetSkeletalMeshComponent"); \ +static_assert(sizeof(PhysicalAnimationComponent_SetSkeletalMeshComponent) == 0x000008, "Wrong size on PhysicalAnimationComponent_SetSkeletalMeshComponent"); \ +static_assert(offsetof(PhysicalAnimationComponent_SetSkeletalMeshComponent, InSkeletalMeshComponent) == 0x000000, "Member 'PhysicalAnimationComponent_SetSkeletalMeshComponent::InSkeletalMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_SetStrengthMultiplyer \ +static_assert(alignof(PhysicalAnimationComponent_SetStrengthMultiplyer) == 0x000004, "Wrong alignment on PhysicalAnimationComponent_SetStrengthMultiplyer"); \ +static_assert(sizeof(PhysicalAnimationComponent_SetStrengthMultiplyer) == 0x000004, "Wrong size on PhysicalAnimationComponent_SetStrengthMultiplyer"); \ +static_assert(offsetof(PhysicalAnimationComponent_SetStrengthMultiplyer, InStrengthMultiplyer) == 0x000000, "Member 'PhysicalAnimationComponent_SetStrengthMultiplyer::InStrengthMultiplyer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicalAnimationComponent_GetBodyTargetTransform \ +static_assert(alignof(PhysicalAnimationComponent_GetBodyTargetTransform) == 0x000010, "Wrong alignment on PhysicalAnimationComponent_GetBodyTargetTransform"); \ +static_assert(sizeof(PhysicalAnimationComponent_GetBodyTargetTransform) == 0x000070, "Wrong size on PhysicalAnimationComponent_GetBodyTargetTransform"); \ +static_assert(offsetof(PhysicalAnimationComponent_GetBodyTargetTransform, BodyName) == 0x000000, "Member 'PhysicalAnimationComponent_GetBodyTargetTransform::BodyName' has a wrong offset!"); \ +static_assert(offsetof(PhysicalAnimationComponent_GetBodyTargetTransform, ReturnValue) == 0x000010, "Member 'PhysicalAnimationComponent_GetBodyTargetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicalAnimationComponent \ +static_assert(alignof(UPhysicalAnimationComponent) == 0x000008, "Wrong alignment on UPhysicalAnimationComponent"); \ +static_assert(sizeof(UPhysicalAnimationComponent) == 0x0000E0, "Wrong size on UPhysicalAnimationComponent"); \ +static_assert(offsetof(UPhysicalAnimationComponent, StrengthMultiplyer) == 0x0000A0, "Member 'UPhysicalAnimationComponent::StrengthMultiplyer' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalAnimationComponent, SkeletalMeshComponent) == 0x0000A8, "Member 'UPhysicalAnimationComponent::SkeletalMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicalMaterialMask \ +static_assert(alignof(UPhysicalMaterialMask) == 0x000008, "Wrong alignment on UPhysicalMaterialMask"); \ +static_assert(sizeof(UPhysicalMaterialMask) == 0x000038, "Wrong size on UPhysicalMaterialMask"); \ +static_assert(offsetof(UPhysicalMaterialMask, UVChannelIndex) == 0x000028, "Member 'UPhysicalMaterialMask::UVChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterialMask, AddressX) == 0x00002C, "Member 'UPhysicalMaterialMask::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterialMask, AddressY) == 0x00002D, "Member 'UPhysicalMaterialMask::AddressY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsAsset \ +static_assert(alignof(UPhysicsAsset) == 0x000008, "Wrong alignment on UPhysicsAsset"); \ +static_assert(sizeof(UPhysicsAsset) == 0x000150, "Wrong size on UPhysicsAsset"); \ +static_assert(offsetof(UPhysicsAsset, BoundsBodies) == 0x000030, "Member 'UPhysicsAsset::BoundsBodies' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, SkeletalBodySetups) == 0x000040, "Member 'UPhysicsAsset::SkeletalBodySetups' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, ConstraintSetup) == 0x000050, "Member 'UPhysicsAsset::ConstraintSetup' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, SolverSettings) == 0x000060, "Member 'UPhysicsAsset::SolverSettings' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, SolverIterations) == 0x00007C, "Member 'UPhysicsAsset::SolverIterations' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, SolverType) == 0x000094, "Member 'UPhysicsAsset::SolverType' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, ThumbnailInfo) == 0x000138, "Member 'UPhysicsAsset::ThumbnailInfo' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsAsset, BodySetup) == 0x000140, "Member 'UPhysicsAsset::BodySetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsCollisionHandler \ +static_assert(alignof(UPhysicsCollisionHandler) == 0x000008, "Wrong alignment on UPhysicsCollisionHandler"); \ +static_assert(sizeof(UPhysicsCollisionHandler) == 0x000040, "Wrong size on UPhysicsCollisionHandler"); \ +static_assert(offsetof(UPhysicsCollisionHandler, ImpactThreshold) == 0x000028, "Member 'UPhysicsCollisionHandler::ImpactThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsCollisionHandler, ImpactReFireDelay) == 0x00002C, "Member 'UPhysicsCollisionHandler::ImpactReFireDelay' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsCollisionHandler, DefaultImpactSound) == 0x000030, "Member 'UPhysicsCollisionHandler::DefaultImpactSound' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsCollisionHandler, LastImpactSoundTime) == 0x000038, "Member 'UPhysicsCollisionHandler::LastImpactSoundTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APhysicsConstraintActor \ +static_assert(alignof(APhysicsConstraintActor) == 0x000008, "Wrong alignment on APhysicsConstraintActor"); \ +static_assert(sizeof(APhysicsConstraintActor) == 0x0002B8, "Wrong size on APhysicsConstraintActor"); \ +static_assert(offsetof(APhysicsConstraintActor, ConstraintComp) == 0x000298, "Member 'APhysicsConstraintActor::ConstraintComp' has a wrong offset!"); \ +static_assert(offsetof(APhysicsConstraintActor, ConstraintActor1) == 0x0002A0, "Member 'APhysicsConstraintActor::ConstraintActor1' has a wrong offset!"); \ +static_assert(offsetof(APhysicsConstraintActor, ConstraintActor2) == 0x0002A8, "Member 'APhysicsConstraintActor::ConstraintActor2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetConstrainedComponents \ +static_assert(alignof(PhysicsConstraintComponent_GetConstrainedComponents) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_GetConstrainedComponents"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetConstrainedComponents) == 0x000020, "Wrong size on PhysicsConstraintComponent_GetConstrainedComponents"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstrainedComponents, OutComponent1) == 0x000000, "Member 'PhysicsConstraintComponent_GetConstrainedComponents::OutComponent1' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstrainedComponents, OutBoneName1) == 0x000008, "Member 'PhysicsConstraintComponent_GetConstrainedComponents::OutBoneName1' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstrainedComponents, OutComponent2) == 0x000010, "Member 'PhysicsConstraintComponent_GetConstrainedComponents::OutComponent2' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstrainedComponents, OutBoneName2) == 0x000018, "Member 'PhysicsConstraintComponent_GetConstrainedComponents::OutBoneName2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetConstraint \ +static_assert(alignof(PhysicsConstraintComponent_GetConstraint) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_GetConstraint"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetConstraint) == 0x00000C, "Wrong size on PhysicsConstraintComponent_GetConstraint"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstraint, ReturnValue) == 0x000000, "Member 'PhysicsConstraintComponent_GetConstraint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetConstraintForce \ +static_assert(alignof(PhysicsConstraintComponent_GetConstraintForce) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_GetConstraintForce"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetConstraintForce) == 0x000030, "Wrong size on PhysicsConstraintComponent_GetConstraintForce"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstraintForce, OutLinearForce) == 0x000000, "Member 'PhysicsConstraintComponent_GetConstraintForce::OutLinearForce' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetConstraintForce, OutAngularForce) == 0x000018, "Member 'PhysicsConstraintComponent_GetConstraintForce::OutAngularForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_IsBroken \ +static_assert(alignof(PhysicsConstraintComponent_IsBroken) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_IsBroken"); \ +static_assert(sizeof(PhysicsConstraintComponent_IsBroken) == 0x000001, "Wrong size on PhysicsConstraintComponent_IsBroken"); \ +static_assert(offsetof(PhysicsConstraintComponent_IsBroken, ReturnValue) == 0x000000, "Member 'PhysicsConstraintComponent_IsBroken::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularBreakable \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularBreakable) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularBreakable"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularBreakable) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetAngularBreakable"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularBreakable, bAngularBreakable) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularBreakable::bAngularBreakable' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularBreakable, AngularBreakThreshold) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularBreakable::AngularBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularDriveMode \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularDriveMode) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetAngularDriveMode"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularDriveMode) == 0x000001, "Wrong size on PhysicsConstraintComponent_SetAngularDriveMode"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularDriveMode, DriveMode) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularDriveMode::DriveMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularDriveParams \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularDriveParams) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularDriveParams"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularDriveParams) == 0x00000C, "Wrong size on PhysicsConstraintComponent_SetAngularDriveParams"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularDriveParams, PositionStrength) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularDriveParams::PositionStrength' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularDriveParams, VelocityStrength) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularDriveParams::VelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularDriveParams, InForceLimit) == 0x000008, "Member 'PhysicsConstraintComponent_SetAngularDriveParams::InForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularOrientationDrive \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularOrientationDrive) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetAngularOrientationDrive"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularOrientationDrive) == 0x000002, "Wrong size on PhysicsConstraintComponent_SetAngularOrientationDrive"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularOrientationDrive, bEnableSwingDrive) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularOrientationDrive::bEnableSwingDrive' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularOrientationDrive, bEnableTwistDrive) == 0x000001, "Member 'PhysicsConstraintComponent_SetAngularOrientationDrive::bEnableTwistDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularOrientationTarget \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularOrientationTarget) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetAngularOrientationTarget"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularOrientationTarget) == 0x000018, "Wrong size on PhysicsConstraintComponent_SetAngularOrientationTarget"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularOrientationTarget, InPosTarget) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularOrientationTarget::InPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularPlasticity \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularPlasticity) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularPlasticity"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularPlasticity) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetAngularPlasticity"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularPlasticity, bAngularPlasticity) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularPlasticity::bAngularPlasticity' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularPlasticity, AngularPlasticityThreshold) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularPlasticity::AngularPlasticityThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularSwing1Limit \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularSwing1Limit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularSwing1Limit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularSwing1Limit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetAngularSwing1Limit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularSwing1Limit, MotionType) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularSwing1Limit::MotionType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularSwing1Limit, Swing1LimitAngle) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularSwing1Limit::Swing1LimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularSwing2Limit \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularSwing2Limit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularSwing2Limit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularSwing2Limit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetAngularSwing2Limit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularSwing2Limit, MotionType) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularSwing2Limit::MotionType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularSwing2Limit, Swing2LimitAngle) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularSwing2Limit::Swing2LimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularTwistLimit \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularTwistLimit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetAngularTwistLimit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularTwistLimit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetAngularTwistLimit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularTwistLimit, ConstraintType) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularTwistLimit::ConstraintType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularTwistLimit, TwistLimitAngle) == 0x000004, "Member 'PhysicsConstraintComponent_SetAngularTwistLimit::TwistLimitAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularVelocityDrive \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularVelocityDrive) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetAngularVelocityDrive"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularVelocityDrive) == 0x000002, "Wrong size on PhysicsConstraintComponent_SetAngularVelocityDrive"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityDrive, bEnableSwingDrive) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularVelocityDrive::bEnableSwingDrive' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityDrive, bEnableTwistDrive) == 0x000001, "Member 'PhysicsConstraintComponent_SetAngularVelocityDrive::bEnableTwistDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularVelocityDriveSLERP \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularVelocityDriveSLERP) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetAngularVelocityDriveSLERP"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularVelocityDriveSLERP) == 0x000001, "Wrong size on PhysicsConstraintComponent_SetAngularVelocityDriveSLERP"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityDriveSLERP, bEnableSLERP) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularVelocityDriveSLERP::bEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing) == 0x000002, "Wrong size on PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing, bEnableTwistDrive) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing, bEnableSwingDrive) == 0x000001, "Member 'PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing::bEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetAngularVelocityTarget \ +static_assert(alignof(PhysicsConstraintComponent_SetAngularVelocityTarget) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetAngularVelocityTarget"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetAngularVelocityTarget) == 0x000018, "Wrong size on PhysicsConstraintComponent_SetAngularVelocityTarget"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetAngularVelocityTarget, InVelTarget) == 0x000000, "Member 'PhysicsConstraintComponent_SetAngularVelocityTarget::InVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetConstrainedComponents \ +static_assert(alignof(PhysicsConstraintComponent_SetConstrainedComponents) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetConstrainedComponents"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetConstrainedComponents) == 0x000020, "Wrong size on PhysicsConstraintComponent_SetConstrainedComponents"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstrainedComponents, Component1) == 0x000000, "Member 'PhysicsConstraintComponent_SetConstrainedComponents::Component1' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstrainedComponents, BoneName1) == 0x000008, "Member 'PhysicsConstraintComponent_SetConstrainedComponents::BoneName1' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstrainedComponents, Component2) == 0x000010, "Member 'PhysicsConstraintComponent_SetConstrainedComponents::Component2' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstrainedComponents, BoneName2) == 0x000018, "Member 'PhysicsConstraintComponent_SetConstrainedComponents::BoneName2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetConstraintReferenceFrame \ +static_assert(alignof(PhysicsConstraintComponent_SetConstraintReferenceFrame) == 0x000010, "Wrong alignment on PhysicsConstraintComponent_SetConstraintReferenceFrame"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetConstraintReferenceFrame) == 0x000070, "Wrong size on PhysicsConstraintComponent_SetConstraintReferenceFrame"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferenceFrame, Frame) == 0x000000, "Member 'PhysicsConstraintComponent_SetConstraintReferenceFrame::Frame' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferenceFrame, RefFrame) == 0x000010, "Member 'PhysicsConstraintComponent_SetConstraintReferenceFrame::RefFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetConstraintReferenceOrientation \ +static_assert(alignof(PhysicsConstraintComponent_SetConstraintReferenceOrientation) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetConstraintReferenceOrientation"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetConstraintReferenceOrientation) == 0x000038, "Wrong size on PhysicsConstraintComponent_SetConstraintReferenceOrientation"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferenceOrientation, Frame) == 0x000000, "Member 'PhysicsConstraintComponent_SetConstraintReferenceOrientation::Frame' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferenceOrientation, PriAxis) == 0x000008, "Member 'PhysicsConstraintComponent_SetConstraintReferenceOrientation::PriAxis' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferenceOrientation, SecAxis) == 0x000020, "Member 'PhysicsConstraintComponent_SetConstraintReferenceOrientation::SecAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetConstraintReferencePosition \ +static_assert(alignof(PhysicsConstraintComponent_SetConstraintReferencePosition) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetConstraintReferencePosition"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetConstraintReferencePosition) == 0x000020, "Wrong size on PhysicsConstraintComponent_SetConstraintReferencePosition"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferencePosition, Frame) == 0x000000, "Member 'PhysicsConstraintComponent_SetConstraintReferencePosition::Frame' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetConstraintReferencePosition, RefPosition) == 0x000008, "Member 'PhysicsConstraintComponent_SetConstraintReferencePosition::RefPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetContactTransferScale \ +static_assert(alignof(PhysicsConstraintComponent_SetContactTransferScale) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetContactTransferScale"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetContactTransferScale) == 0x000004, "Wrong size on PhysicsConstraintComponent_SetContactTransferScale"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetContactTransferScale, ContactTransferScale) == 0x000000, "Member 'PhysicsConstraintComponent_SetContactTransferScale::ContactTransferScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetDisableCollision \ +static_assert(alignof(PhysicsConstraintComponent_SetDisableCollision) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetDisableCollision"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetDisableCollision) == 0x000001, "Wrong size on PhysicsConstraintComponent_SetDisableCollision"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetDisableCollision, bDisableCollision) == 0x000000, "Member 'PhysicsConstraintComponent_SetDisableCollision::bDisableCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearBreakable \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearBreakable) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearBreakable"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearBreakable) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetLinearBreakable"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearBreakable, bLinearBreakable) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearBreakable::bLinearBreakable' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearBreakable, LinearBreakThreshold) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearBreakable::LinearBreakThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearDriveParams \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearDriveParams) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearDriveParams"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearDriveParams) == 0x00000C, "Wrong size on PhysicsConstraintComponent_SetLinearDriveParams"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearDriveParams, PositionStrength) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearDriveParams::PositionStrength' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearDriveParams, VelocityStrength) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearDriveParams::VelocityStrength' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearDriveParams, InForceLimit) == 0x000008, "Member 'PhysicsConstraintComponent_SetLinearDriveParams::InForceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearPlasticity \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearPlasticity) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearPlasticity"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearPlasticity) == 0x00000C, "Wrong size on PhysicsConstraintComponent_SetLinearPlasticity"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPlasticity, bLinearPlasticity) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearPlasticity::bLinearPlasticity' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPlasticity, LinearPlasticityThreshold) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearPlasticity::LinearPlasticityThreshold' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPlasticity, PlasticityType) == 0x000008, "Member 'PhysicsConstraintComponent_SetLinearPlasticity::PlasticityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearPositionDrive \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearPositionDrive) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetLinearPositionDrive"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearPositionDrive) == 0x000003, "Wrong size on PhysicsConstraintComponent_SetLinearPositionDrive"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPositionDrive, bEnableDriveX) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearPositionDrive::bEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPositionDrive, bEnableDriveY) == 0x000001, "Member 'PhysicsConstraintComponent_SetLinearPositionDrive::bEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPositionDrive, bEnableDriveZ) == 0x000002, "Member 'PhysicsConstraintComponent_SetLinearPositionDrive::bEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearPositionTarget \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearPositionTarget) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetLinearPositionTarget"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearPositionTarget) == 0x000018, "Wrong size on PhysicsConstraintComponent_SetLinearPositionTarget"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearPositionTarget, InPosTarget) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearPositionTarget::InPosTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearVelocityDrive \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearVelocityDrive) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetLinearVelocityDrive"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearVelocityDrive) == 0x000003, "Wrong size on PhysicsConstraintComponent_SetLinearVelocityDrive"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearVelocityDrive, bEnableDriveX) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearVelocityDrive::bEnableDriveX' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearVelocityDrive, bEnableDriveY) == 0x000001, "Member 'PhysicsConstraintComponent_SetLinearVelocityDrive::bEnableDriveY' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearVelocityDrive, bEnableDriveZ) == 0x000002, "Member 'PhysicsConstraintComponent_SetLinearVelocityDrive::bEnableDriveZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearVelocityTarget \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearVelocityTarget) == 0x000008, "Wrong alignment on PhysicsConstraintComponent_SetLinearVelocityTarget"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearVelocityTarget) == 0x000018, "Wrong size on PhysicsConstraintComponent_SetLinearVelocityTarget"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearVelocityTarget, InVelTarget) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearVelocityTarget::InVelTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearXLimit \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearXLimit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearXLimit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearXLimit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetLinearXLimit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearXLimit, ConstraintType) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearXLimit::ConstraintType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearXLimit, LimitSize) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearXLimit::LimitSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearYLimit \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearYLimit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearYLimit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearYLimit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetLinearYLimit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearYLimit, ConstraintType) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearYLimit::ConstraintType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearYLimit, LimitSize) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearYLimit::LimitSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetLinearZLimit \ +static_assert(alignof(PhysicsConstraintComponent_SetLinearZLimit) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_SetLinearZLimit"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetLinearZLimit) == 0x000008, "Wrong size on PhysicsConstraintComponent_SetLinearZLimit"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearZLimit, ConstraintType) == 0x000000, "Member 'PhysicsConstraintComponent_SetLinearZLimit::ConstraintType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetLinearZLimit, LimitSize) == 0x000004, "Member 'PhysicsConstraintComponent_SetLinearZLimit::LimitSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetOrientationDriveSLERP \ +static_assert(alignof(PhysicsConstraintComponent_SetOrientationDriveSLERP) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetOrientationDriveSLERP"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetOrientationDriveSLERP) == 0x000001, "Wrong size on PhysicsConstraintComponent_SetOrientationDriveSLERP"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetOrientationDriveSLERP, bEnableSLERP) == 0x000000, "Member 'PhysicsConstraintComponent_SetOrientationDriveSLERP::bEnableSLERP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing \ +static_assert(alignof(PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing) == 0x000001, "Wrong alignment on PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing"); \ +static_assert(sizeof(PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing) == 0x000002, "Wrong size on PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing, bEnableTwistDrive) == 0x000000, "Member 'PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing::bEnableTwistDrive' has a wrong offset!"); \ +static_assert(offsetof(PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing, bEnableSwingDrive) == 0x000001, "Member 'PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing::bEnableSwingDrive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetCurrentSwing1 \ +static_assert(alignof(PhysicsConstraintComponent_GetCurrentSwing1) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_GetCurrentSwing1"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetCurrentSwing1) == 0x000004, "Wrong size on PhysicsConstraintComponent_GetCurrentSwing1"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetCurrentSwing1, ReturnValue) == 0x000000, "Member 'PhysicsConstraintComponent_GetCurrentSwing1::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetCurrentSwing2 \ +static_assert(alignof(PhysicsConstraintComponent_GetCurrentSwing2) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_GetCurrentSwing2"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetCurrentSwing2) == 0x000004, "Wrong size on PhysicsConstraintComponent_GetCurrentSwing2"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetCurrentSwing2, ReturnValue) == 0x000000, "Member 'PhysicsConstraintComponent_GetCurrentSwing2::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsConstraintComponent_GetCurrentTwist \ +static_assert(alignof(PhysicsConstraintComponent_GetCurrentTwist) == 0x000004, "Wrong alignment on PhysicsConstraintComponent_GetCurrentTwist"); \ +static_assert(sizeof(PhysicsConstraintComponent_GetCurrentTwist) == 0x000004, "Wrong size on PhysicsConstraintComponent_GetCurrentTwist"); \ +static_assert(offsetof(PhysicsConstraintComponent_GetCurrentTwist, ReturnValue) == 0x000000, "Member 'PhysicsConstraintComponent_GetCurrentTwist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsConstraintComponent \ +static_assert(alignof(UPhysicsConstraintComponent) == 0x000010, "Wrong alignment on UPhysicsConstraintComponent"); \ +static_assert(sizeof(UPhysicsConstraintComponent) == 0x000570, "Wrong size on UPhysicsConstraintComponent"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ConstraintActor1) == 0x0002A0, "Member 'UPhysicsConstraintComponent::ConstraintActor1' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ComponentName1) == 0x0002A8, "Member 'UPhysicsConstraintComponent::ComponentName1' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ConstraintActor2) == 0x0002B0, "Member 'UPhysicsConstraintComponent::ConstraintActor2' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ComponentName2) == 0x0002B8, "Member 'UPhysicsConstraintComponent::ComponentName2' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ConstraintSetup) == 0x0002D0, "Member 'UPhysicsConstraintComponent::ConstraintSetup' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, OnConstraintBroken) == 0x0002D8, "Member 'UPhysicsConstraintComponent::OnConstraintBroken' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, OnPlasticDeformation) == 0x0002E8, "Member 'UPhysicsConstraintComponent::OnPlasticDeformation' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsConstraintComponent, ConstraintInstance) == 0x0002F8, "Member 'UPhysicsConstraintComponent::ConstraintInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_GrabComponent \ +static_assert(alignof(PhysicsHandleComponent_GrabComponent) == 0x000008, "Wrong alignment on PhysicsHandleComponent_GrabComponent"); \ +static_assert(sizeof(PhysicsHandleComponent_GrabComponent) == 0x000030, "Wrong size on PhysicsHandleComponent_GrabComponent"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponent, Component) == 0x000000, "Member 'PhysicsHandleComponent_GrabComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponent, InBoneName) == 0x000008, "Member 'PhysicsHandleComponent_GrabComponent::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponent, GrabLocation) == 0x000010, "Member 'PhysicsHandleComponent_GrabComponent::GrabLocation' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponent, bConstrainRotation) == 0x000028, "Member 'PhysicsHandleComponent_GrabComponent::bConstrainRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_GrabComponentAtLocation \ +static_assert(alignof(PhysicsHandleComponent_GrabComponentAtLocation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_GrabComponentAtLocation"); \ +static_assert(sizeof(PhysicsHandleComponent_GrabComponentAtLocation) == 0x000028, "Wrong size on PhysicsHandleComponent_GrabComponentAtLocation"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocation, Component) == 0x000000, "Member 'PhysicsHandleComponent_GrabComponentAtLocation::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocation, InBoneName) == 0x000008, "Member 'PhysicsHandleComponent_GrabComponentAtLocation::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocation, GrabLocation) == 0x000010, "Member 'PhysicsHandleComponent_GrabComponentAtLocation::GrabLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_GrabComponentAtLocationWithRotation \ +static_assert(alignof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_GrabComponentAtLocationWithRotation"); \ +static_assert(sizeof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation) == 0x000040, "Wrong size on PhysicsHandleComponent_GrabComponentAtLocationWithRotation"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation, Component) == 0x000000, "Member 'PhysicsHandleComponent_GrabComponentAtLocationWithRotation::Component' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation, InBoneName) == 0x000008, "Member 'PhysicsHandleComponent_GrabComponentAtLocationWithRotation::InBoneName' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation, Location) == 0x000010, "Member 'PhysicsHandleComponent_GrabComponentAtLocationWithRotation::Location' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GrabComponentAtLocationWithRotation, Rotation) == 0x000028, "Member 'PhysicsHandleComponent_GrabComponentAtLocationWithRotation::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetAngularDamping \ +static_assert(alignof(PhysicsHandleComponent_SetAngularDamping) == 0x000004, "Wrong alignment on PhysicsHandleComponent_SetAngularDamping"); \ +static_assert(sizeof(PhysicsHandleComponent_SetAngularDamping) == 0x000004, "Wrong size on PhysicsHandleComponent_SetAngularDamping"); \ +static_assert(offsetof(PhysicsHandleComponent_SetAngularDamping, NewAngularDamping) == 0x000000, "Member 'PhysicsHandleComponent_SetAngularDamping::NewAngularDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetAngularStiffness \ +static_assert(alignof(PhysicsHandleComponent_SetAngularStiffness) == 0x000004, "Wrong alignment on PhysicsHandleComponent_SetAngularStiffness"); \ +static_assert(sizeof(PhysicsHandleComponent_SetAngularStiffness) == 0x000004, "Wrong size on PhysicsHandleComponent_SetAngularStiffness"); \ +static_assert(offsetof(PhysicsHandleComponent_SetAngularStiffness, NewAngularStiffness) == 0x000000, "Member 'PhysicsHandleComponent_SetAngularStiffness::NewAngularStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetInterpolationSpeed \ +static_assert(alignof(PhysicsHandleComponent_SetInterpolationSpeed) == 0x000004, "Wrong alignment on PhysicsHandleComponent_SetInterpolationSpeed"); \ +static_assert(sizeof(PhysicsHandleComponent_SetInterpolationSpeed) == 0x000004, "Wrong size on PhysicsHandleComponent_SetInterpolationSpeed"); \ +static_assert(offsetof(PhysicsHandleComponent_SetInterpolationSpeed, NewInterpolationSpeed) == 0x000000, "Member 'PhysicsHandleComponent_SetInterpolationSpeed::NewInterpolationSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetLinearDamping \ +static_assert(alignof(PhysicsHandleComponent_SetLinearDamping) == 0x000004, "Wrong alignment on PhysicsHandleComponent_SetLinearDamping"); \ +static_assert(sizeof(PhysicsHandleComponent_SetLinearDamping) == 0x000004, "Wrong size on PhysicsHandleComponent_SetLinearDamping"); \ +static_assert(offsetof(PhysicsHandleComponent_SetLinearDamping, NewLinearDamping) == 0x000000, "Member 'PhysicsHandleComponent_SetLinearDamping::NewLinearDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetLinearStiffness \ +static_assert(alignof(PhysicsHandleComponent_SetLinearStiffness) == 0x000004, "Wrong alignment on PhysicsHandleComponent_SetLinearStiffness"); \ +static_assert(sizeof(PhysicsHandleComponent_SetLinearStiffness) == 0x000004, "Wrong size on PhysicsHandleComponent_SetLinearStiffness"); \ +static_assert(offsetof(PhysicsHandleComponent_SetLinearStiffness, NewLinearStiffness) == 0x000000, "Member 'PhysicsHandleComponent_SetLinearStiffness::NewLinearStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetTargetLocation \ +static_assert(alignof(PhysicsHandleComponent_SetTargetLocation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_SetTargetLocation"); \ +static_assert(sizeof(PhysicsHandleComponent_SetTargetLocation) == 0x000018, "Wrong size on PhysicsHandleComponent_SetTargetLocation"); \ +static_assert(offsetof(PhysicsHandleComponent_SetTargetLocation, NewLocation) == 0x000000, "Member 'PhysicsHandleComponent_SetTargetLocation::NewLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetTargetLocationAndRotation \ +static_assert(alignof(PhysicsHandleComponent_SetTargetLocationAndRotation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_SetTargetLocationAndRotation"); \ +static_assert(sizeof(PhysicsHandleComponent_SetTargetLocationAndRotation) == 0x000030, "Wrong size on PhysicsHandleComponent_SetTargetLocationAndRotation"); \ +static_assert(offsetof(PhysicsHandleComponent_SetTargetLocationAndRotation, NewLocation) == 0x000000, "Member 'PhysicsHandleComponent_SetTargetLocationAndRotation::NewLocation' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_SetTargetLocationAndRotation, NewRotation) == 0x000018, "Member 'PhysicsHandleComponent_SetTargetLocationAndRotation::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_SetTargetRotation \ +static_assert(alignof(PhysicsHandleComponent_SetTargetRotation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_SetTargetRotation"); \ +static_assert(sizeof(PhysicsHandleComponent_SetTargetRotation) == 0x000018, "Wrong size on PhysicsHandleComponent_SetTargetRotation"); \ +static_assert(offsetof(PhysicsHandleComponent_SetTargetRotation, NewRotation) == 0x000000, "Member 'PhysicsHandleComponent_SetTargetRotation::NewRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_GetGrabbedComponent \ +static_assert(alignof(PhysicsHandleComponent_GetGrabbedComponent) == 0x000008, "Wrong alignment on PhysicsHandleComponent_GetGrabbedComponent"); \ +static_assert(sizeof(PhysicsHandleComponent_GetGrabbedComponent) == 0x000008, "Wrong size on PhysicsHandleComponent_GetGrabbedComponent"); \ +static_assert(offsetof(PhysicsHandleComponent_GetGrabbedComponent, ReturnValue) == 0x000000, "Member 'PhysicsHandleComponent_GetGrabbedComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsHandleComponent_GetTargetLocationAndRotation \ +static_assert(alignof(PhysicsHandleComponent_GetTargetLocationAndRotation) == 0x000008, "Wrong alignment on PhysicsHandleComponent_GetTargetLocationAndRotation"); \ +static_assert(sizeof(PhysicsHandleComponent_GetTargetLocationAndRotation) == 0x000030, "Wrong size on PhysicsHandleComponent_GetTargetLocationAndRotation"); \ +static_assert(offsetof(PhysicsHandleComponent_GetTargetLocationAndRotation, TargetLocation) == 0x000000, "Member 'PhysicsHandleComponent_GetTargetLocationAndRotation::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(PhysicsHandleComponent_GetTargetLocationAndRotation, TargetRotation) == 0x000018, "Member 'PhysicsHandleComponent_GetTargetLocationAndRotation::TargetRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsHandleComponent \ +static_assert(alignof(UPhysicsHandleComponent) == 0x000010, "Wrong alignment on UPhysicsHandleComponent"); \ +static_assert(sizeof(UPhysicsHandleComponent) == 0x0004E0, "Wrong size on UPhysicsHandleComponent"); \ +static_assert(offsetof(UPhysicsHandleComponent, GrabbedComponent) == 0x0000A0, "Member 'UPhysicsHandleComponent::GrabbedComponent' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsHandleComponent, LinearDamping) == 0x0000B4, "Member 'UPhysicsHandleComponent::LinearDamping' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsHandleComponent, LinearStiffness) == 0x0000B8, "Member 'UPhysicsHandleComponent::LinearStiffness' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsHandleComponent, AngularDamping) == 0x0000BC, "Member 'UPhysicsHandleComponent::AngularDamping' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsHandleComponent, AngularStiffness) == 0x0000C0, "Member 'UPhysicsHandleComponent::AngularStiffness' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsHandleComponent, InterpolationSpeed) == 0x000190, "Member 'UPhysicsHandleComponent::InterpolationSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsSettings_GetPhysicsHistoryCount \ +static_assert(alignof(PhysicsSettings_GetPhysicsHistoryCount) == 0x000004, "Wrong alignment on PhysicsSettings_GetPhysicsHistoryCount"); \ +static_assert(sizeof(PhysicsSettings_GetPhysicsHistoryCount) == 0x000004, "Wrong size on PhysicsSettings_GetPhysicsHistoryCount"); \ +static_assert(offsetof(PhysicsSettings_GetPhysicsHistoryCount, ReturnValue) == 0x000000, "Member 'PhysicsSettings_GetPhysicsHistoryCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsSettings \ +static_assert(alignof(UPhysicsSettings) == 0x000008, "Wrong alignment on UPhysicsSettings"); \ +static_assert(sizeof(UPhysicsSettings) == 0x0001F0, "Wrong size on UPhysicsSettings"); \ +static_assert(offsetof(UPhysicsSettings, PhysicsPrediction) == 0x0000E0, "Member 'UPhysicsSettings::PhysicsPrediction' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, PhysicErrorCorrection) == 0x0000EC, "Member 'UPhysicsSettings::PhysicErrorCorrection' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, LockedAxis) == 0x000120, "Member 'UPhysicsSettings::LockedAxis' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, DefaultDegreesOfFreedom) == 0x000121, "Member 'UPhysicsSettings::DefaultDegreesOfFreedom' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bSuppressFaceRemapTable) == 0x000122, "Member 'UPhysicsSettings::bSuppressFaceRemapTable' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bSupportUVFromHitResults) == 0x000123, "Member 'UPhysicsSettings::bSupportUVFromHitResults' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bDisableActiveActors) == 0x000124, "Member 'UPhysicsSettings::bDisableActiveActors' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bDisableKinematicStaticPairs) == 0x000125, "Member 'UPhysicsSettings::bDisableKinematicStaticPairs' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bDisableKinematicKinematicPairs) == 0x000126, "Member 'UPhysicsSettings::bDisableKinematicKinematicPairs' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bDisableCCD) == 0x000127, "Member 'UPhysicsSettings::bDisableCCD' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, AnimPhysicsMinDeltaTime) == 0x000128, "Member 'UPhysicsSettings::AnimPhysicsMinDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bSimulateAnimPhysicsAfterReset) == 0x00012C, "Member 'UPhysicsSettings::bSimulateAnimPhysicsAfterReset' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, MinPhysicsDeltaTime) == 0x000130, "Member 'UPhysicsSettings::MinPhysicsDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, MaxPhysicsDeltaTime) == 0x000134, "Member 'UPhysicsSettings::MaxPhysicsDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bSubstepping) == 0x000138, "Member 'UPhysicsSettings::bSubstepping' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bSubsteppingAsync) == 0x000139, "Member 'UPhysicsSettings::bSubsteppingAsync' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, bTickPhysicsAsync) == 0x00013A, "Member 'UPhysicsSettings::bTickPhysicsAsync' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, AsyncFixedTimeStepSize) == 0x00013C, "Member 'UPhysicsSettings::AsyncFixedTimeStepSize' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, MaxSubstepDeltaTime) == 0x000140, "Member 'UPhysicsSettings::MaxSubstepDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, MaxSubsteps) == 0x000144, "Member 'UPhysicsSettings::MaxSubsteps' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, SyncSceneSmoothingFactor) == 0x000148, "Member 'UPhysicsSettings::SyncSceneSmoothingFactor' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, InitialAverageFrameRate) == 0x00014C, "Member 'UPhysicsSettings::InitialAverageFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, PhysXTreeRebuildRate) == 0x000150, "Member 'UPhysicsSettings::PhysXTreeRebuildRate' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, PhysicalSurfaces) == 0x000158, "Member 'UPhysicsSettings::PhysicalSurfaces' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, DefaultBroadphaseSettings) == 0x000168, "Member 'UPhysicsSettings::DefaultBroadphaseSettings' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, MinDeltaVelocityForHitEvents) == 0x0001E8, "Member 'UPhysicsSettings::MinDeltaVelocityForHitEvents' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettings, ChaosSettings) == 0x0001EC, "Member 'UPhysicsSettings::ChaosSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APhysicsThruster \ +static_assert(alignof(APhysicsThruster) == 0x000008, "Wrong alignment on APhysicsThruster"); \ +static_assert(sizeof(APhysicsThruster) == 0x0002A0, "Wrong size on APhysicsThruster"); \ +static_assert(offsetof(APhysicsThruster, ThrusterComponent) == 0x000298, "Member 'APhysicsThruster::ThrusterComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsFieldComponent \ +static_assert(alignof(UPhysicsFieldComponent) == 0x000010, "Wrong alignment on UPhysicsFieldComponent"); \ +static_assert(sizeof(UPhysicsFieldComponent) == 0x000380, "Wrong size on UPhysicsFieldComponent"); \ + +#define DUMPER7_ASSERTS_PhysicsFieldStatics_EvalPhysicsIntegerField \ +static_assert(alignof(PhysicsFieldStatics_EvalPhysicsIntegerField) == 0x000008, "Wrong alignment on PhysicsFieldStatics_EvalPhysicsIntegerField"); \ +static_assert(sizeof(PhysicsFieldStatics_EvalPhysicsIntegerField) == 0x000028, "Wrong size on PhysicsFieldStatics_EvalPhysicsIntegerField"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsIntegerField, WorldContextObject) == 0x000000, "Member 'PhysicsFieldStatics_EvalPhysicsIntegerField::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsIntegerField, WorldPosition) == 0x000008, "Member 'PhysicsFieldStatics_EvalPhysicsIntegerField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsIntegerField, IntegerType) == 0x000020, "Member 'PhysicsFieldStatics_EvalPhysicsIntegerField::IntegerType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsIntegerField, ReturnValue) == 0x000024, "Member 'PhysicsFieldStatics_EvalPhysicsIntegerField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsFieldStatics_EvalPhysicsScalarField \ +static_assert(alignof(PhysicsFieldStatics_EvalPhysicsScalarField) == 0x000008, "Wrong alignment on PhysicsFieldStatics_EvalPhysicsScalarField"); \ +static_assert(sizeof(PhysicsFieldStatics_EvalPhysicsScalarField) == 0x000028, "Wrong size on PhysicsFieldStatics_EvalPhysicsScalarField"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsScalarField, WorldContextObject) == 0x000000, "Member 'PhysicsFieldStatics_EvalPhysicsScalarField::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsScalarField, WorldPosition) == 0x000008, "Member 'PhysicsFieldStatics_EvalPhysicsScalarField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsScalarField, ScalarType) == 0x000020, "Member 'PhysicsFieldStatics_EvalPhysicsScalarField::ScalarType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsScalarField, ReturnValue) == 0x000024, "Member 'PhysicsFieldStatics_EvalPhysicsScalarField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PhysicsFieldStatics_EvalPhysicsVectorField \ +static_assert(alignof(PhysicsFieldStatics_EvalPhysicsVectorField) == 0x000008, "Wrong alignment on PhysicsFieldStatics_EvalPhysicsVectorField"); \ +static_assert(sizeof(PhysicsFieldStatics_EvalPhysicsVectorField) == 0x000040, "Wrong size on PhysicsFieldStatics_EvalPhysicsVectorField"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsVectorField, WorldContextObject) == 0x000000, "Member 'PhysicsFieldStatics_EvalPhysicsVectorField::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsVectorField, WorldPosition) == 0x000008, "Member 'PhysicsFieldStatics_EvalPhysicsVectorField::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsVectorField, VectorType) == 0x000020, "Member 'PhysicsFieldStatics_EvalPhysicsVectorField::VectorType' has a wrong offset!"); \ +static_assert(offsetof(PhysicsFieldStatics_EvalPhysicsVectorField, ReturnValue) == 0x000028, "Member 'PhysicsFieldStatics_EvalPhysicsVectorField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsFieldStatics \ +static_assert(alignof(UPhysicsFieldStatics) == 0x000008, "Wrong alignment on UPhysicsFieldStatics"); \ +static_assert(sizeof(UPhysicsFieldStatics) == 0x000028, "Wrong size on UPhysicsFieldStatics"); \ + +#define DUMPER7_ASSERTS_PlayerState_OnPawnPrivateDestroyed \ +static_assert(alignof(PlayerState_OnPawnPrivateDestroyed) == 0x000008, "Wrong alignment on PlayerState_OnPawnPrivateDestroyed"); \ +static_assert(sizeof(PlayerState_OnPawnPrivateDestroyed) == 0x000008, "Wrong size on PlayerState_OnPawnPrivateDestroyed"); \ +static_assert(offsetof(PlayerState_OnPawnPrivateDestroyed, InActor) == 0x000000, "Member 'PlayerState_OnPawnPrivateDestroyed::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_ReceiveCopyProperties \ +static_assert(alignof(PlayerState_ReceiveCopyProperties) == 0x000008, "Wrong alignment on PlayerState_ReceiveCopyProperties"); \ +static_assert(sizeof(PlayerState_ReceiveCopyProperties) == 0x000008, "Wrong size on PlayerState_ReceiveCopyProperties"); \ +static_assert(offsetof(PlayerState_ReceiveCopyProperties, NewPlayerState) == 0x000000, "Member 'PlayerState_ReceiveCopyProperties::NewPlayerState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_ReceiveOverrideWith \ +static_assert(alignof(PlayerState_ReceiveOverrideWith) == 0x000008, "Wrong alignment on PlayerState_ReceiveOverrideWith"); \ +static_assert(sizeof(PlayerState_ReceiveOverrideWith) == 0x000008, "Wrong size on PlayerState_ReceiveOverrideWith"); \ +static_assert(offsetof(PlayerState_ReceiveOverrideWith, OldPlayerState) == 0x000000, "Member 'PlayerState_ReceiveOverrideWith::OldPlayerState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_BP_GetUniqueId \ +static_assert(alignof(PlayerState_BP_GetUniqueId) == 0x000008, "Wrong alignment on PlayerState_BP_GetUniqueId"); \ +static_assert(sizeof(PlayerState_BP_GetUniqueId) == 0x000030, "Wrong size on PlayerState_BP_GetUniqueId"); \ +static_assert(offsetof(PlayerState_BP_GetUniqueId, ReturnValue) == 0x000000, "Member 'PlayerState_BP_GetUniqueId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetCompressedPing \ +static_assert(alignof(PlayerState_GetCompressedPing) == 0x000001, "Wrong alignment on PlayerState_GetCompressedPing"); \ +static_assert(sizeof(PlayerState_GetCompressedPing) == 0x000001, "Wrong size on PlayerState_GetCompressedPing"); \ +static_assert(offsetof(PlayerState_GetCompressedPing, ReturnValue) == 0x000000, "Member 'PlayerState_GetCompressedPing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetPawn \ +static_assert(alignof(PlayerState_GetPawn) == 0x000008, "Wrong alignment on PlayerState_GetPawn"); \ +static_assert(sizeof(PlayerState_GetPawn) == 0x000008, "Wrong size on PlayerState_GetPawn"); \ +static_assert(offsetof(PlayerState_GetPawn, ReturnValue) == 0x000000, "Member 'PlayerState_GetPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetPingInMilliseconds \ +static_assert(alignof(PlayerState_GetPingInMilliseconds) == 0x000004, "Wrong alignment on PlayerState_GetPingInMilliseconds"); \ +static_assert(sizeof(PlayerState_GetPingInMilliseconds) == 0x000004, "Wrong size on PlayerState_GetPingInMilliseconds"); \ +static_assert(offsetof(PlayerState_GetPingInMilliseconds, ReturnValue) == 0x000000, "Member 'PlayerState_GetPingInMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetPlayerController \ +static_assert(alignof(PlayerState_GetPlayerController) == 0x000008, "Wrong alignment on PlayerState_GetPlayerController"); \ +static_assert(sizeof(PlayerState_GetPlayerController) == 0x000008, "Wrong size on PlayerState_GetPlayerController"); \ +static_assert(offsetof(PlayerState_GetPlayerController, ReturnValue) == 0x000000, "Member 'PlayerState_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetPlayerId \ +static_assert(alignof(PlayerState_GetPlayerId) == 0x000004, "Wrong alignment on PlayerState_GetPlayerId"); \ +static_assert(sizeof(PlayerState_GetPlayerId) == 0x000004, "Wrong size on PlayerState_GetPlayerId"); \ +static_assert(offsetof(PlayerState_GetPlayerId, ReturnValue) == 0x000000, "Member 'PlayerState_GetPlayerId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetPlayerName \ +static_assert(alignof(PlayerState_GetPlayerName) == 0x000008, "Wrong alignment on PlayerState_GetPlayerName"); \ +static_assert(sizeof(PlayerState_GetPlayerName) == 0x000010, "Wrong size on PlayerState_GetPlayerName"); \ +static_assert(offsetof(PlayerState_GetPlayerName, ReturnValue) == 0x000000, "Member 'PlayerState_GetPlayerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_GetScore \ +static_assert(alignof(PlayerState_GetScore) == 0x000004, "Wrong alignment on PlayerState_GetScore"); \ +static_assert(sizeof(PlayerState_GetScore) == 0x000004, "Wrong size on PlayerState_GetScore"); \ +static_assert(offsetof(PlayerState_GetScore, ReturnValue) == 0x000000, "Member 'PlayerState_GetScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_IsABot \ +static_assert(alignof(PlayerState_IsABot) == 0x000001, "Wrong alignment on PlayerState_IsABot"); \ +static_assert(sizeof(PlayerState_IsABot) == 0x000001, "Wrong size on PlayerState_IsABot"); \ +static_assert(offsetof(PlayerState_IsABot, ReturnValue) == 0x000000, "Member 'PlayerState_IsABot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_IsOnlyASpectator \ +static_assert(alignof(PlayerState_IsOnlyASpectator) == 0x000001, "Wrong alignment on PlayerState_IsOnlyASpectator"); \ +static_assert(sizeof(PlayerState_IsOnlyASpectator) == 0x000001, "Wrong size on PlayerState_IsOnlyASpectator"); \ +static_assert(offsetof(PlayerState_IsOnlyASpectator, ReturnValue) == 0x000000, "Member 'PlayerState_IsOnlyASpectator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerState_IsSpectator \ +static_assert(alignof(PlayerState_IsSpectator) == 0x000001, "Wrong alignment on PlayerState_IsSpectator"); \ +static_assert(sizeof(PlayerState_IsSpectator) == 0x000001, "Wrong size on PlayerState_IsSpectator"); \ +static_assert(offsetof(PlayerState_IsSpectator, ReturnValue) == 0x000000, "Member 'PlayerState_IsSpectator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APlayerState \ +static_assert(alignof(APlayerState) == 0x000008, "Wrong alignment on APlayerState"); \ +static_assert(sizeof(APlayerState) == 0x000350, "Wrong size on APlayerState"); \ +static_assert(offsetof(APlayerState, Score) == 0x000298, "Member 'APlayerState::Score' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, PlayerId) == 0x00029C, "Member 'APlayerState::PlayerId' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, CompressedPing) == 0x0002A0, "Member 'APlayerState::CompressedPing' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, StartTime) == 0x0002A4, "Member 'APlayerState::StartTime' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, EngineMessageClass) == 0x0002A8, "Member 'APlayerState::EngineMessageClass' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, SavedNetworkAddress) == 0x0002B8, "Member 'APlayerState::SavedNetworkAddress' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, UniqueID) == 0x0002C8, "Member 'APlayerState::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, OnPawnSet) == 0x000300, "Member 'APlayerState::OnPawnSet' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, PawnPrivate) == 0x000310, "Member 'APlayerState::PawnPrivate' has a wrong offset!"); \ +static_assert(offsetof(APlayerState, PlayerNamePrivate) == 0x000330, "Member 'APlayerState::PlayerNamePrivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PostProcessVolume_AddOrUpdateBlendable \ +static_assert(alignof(PostProcessVolume_AddOrUpdateBlendable) == 0x000008, "Wrong alignment on PostProcessVolume_AddOrUpdateBlendable"); \ +static_assert(sizeof(PostProcessVolume_AddOrUpdateBlendable) == 0x000018, "Wrong size on PostProcessVolume_AddOrUpdateBlendable"); \ +static_assert(offsetof(PostProcessVolume_AddOrUpdateBlendable, InBlendableObject) == 0x000000, "Member 'PostProcessVolume_AddOrUpdateBlendable::InBlendableObject' has a wrong offset!"); \ +static_assert(offsetof(PostProcessVolume_AddOrUpdateBlendable, InWeight) == 0x000010, "Member 'PostProcessVolume_AddOrUpdateBlendable::InWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APostProcessVolume \ +static_assert(alignof(APostProcessVolume) == 0x000010, "Wrong alignment on APostProcessVolume"); \ +static_assert(sizeof(APostProcessVolume) == 0x0009E0, "Wrong size on APostProcessVolume"); \ +static_assert(offsetof(APostProcessVolume, Settings) == 0x0002E0, "Member 'APostProcessVolume::Settings' has a wrong offset!"); \ +static_assert(offsetof(APostProcessVolume, Priority) == 0x0009D0, "Member 'APostProcessVolume::Priority' has a wrong offset!"); \ +static_assert(offsetof(APostProcessVolume, BlendRadius) == 0x0009D4, "Member 'APostProcessVolume::BlendRadius' has a wrong offset!"); \ +static_assert(offsetof(APostProcessVolume, BlendWeight) == 0x0009D8, "Member 'APostProcessVolume::BlendWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APrecomputedVisibilityVolume \ +static_assert(alignof(APrecomputedVisibilityVolume) == 0x000008, "Wrong alignment on APrecomputedVisibilityVolume"); \ +static_assert(sizeof(APrecomputedVisibilityVolume) == 0x0002D0, "Wrong size on APrecomputedVisibilityVolume"); \ + +#define DUMPER7_ASSERTS_HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot \ +static_assert(alignof(HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot) == 0x000008, "Wrong alignment on HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot"); \ +static_assert(sizeof(HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot) == 0x000018, "Wrong size on HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot"); \ +static_assert(offsetof(HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot, SnapshotTitle) == 0x000000, "Member 'HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot::SnapshotTitle' has a wrong offset!"); \ +static_assert(offsetof(HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot, bResetStats) == 0x000010, "Member 'HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot::bResetStats' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHealthSnapshotBlueprintLibrary \ +static_assert(alignof(UHealthSnapshotBlueprintLibrary) == 0x000008, "Wrong alignment on UHealthSnapshotBlueprintLibrary"); \ +static_assert(sizeof(UHealthSnapshotBlueprintLibrary) == 0x000028, "Wrong size on UHealthSnapshotBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_ULevelStreamingProfilingSubsystem \ +static_assert(alignof(ULevelStreamingProfilingSubsystem) == 0x000008, "Wrong alignment on ULevelStreamingProfilingSubsystem"); \ +static_assert(sizeof(ULevelStreamingProfilingSubsystem) == 0x0000C0, "Wrong size on ULevelStreamingProfilingSubsystem"); \ + +#define DUMPER7_ASSERTS_ARectLight \ +static_assert(alignof(ARectLight) == 0x000008, "Wrong alignment on ARectLight"); \ +static_assert(sizeof(ARectLight) == 0x0002B0, "Wrong size on ARectLight"); \ +static_assert(offsetof(ARectLight, RectLightComponent) == 0x0002A8, "Member 'ARectLight::RectLightComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URendererSettings \ +static_assert(alignof(URendererSettings) == 0x000008, "Wrong alignment on URendererSettings"); \ +static_assert(sizeof(URendererSettings) == 0x0001F8, "Wrong size on URendererSettings"); \ +static_assert(offsetof(URendererSettings, MobileShadingPath) == 0x000038, "Member 'URendererSettings::MobileShadingPath' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MobileAntiAliasing) == 0x000040, "Member 'URendererSettings::MobileAntiAliasing' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MobileFloatPrecisionMode) == 0x000041, "Member 'URendererSettings::MobileFloatPrecisionMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, ShaderCompressionFormat) == 0x000048, "Member 'URendererSettings::ShaderCompressionFormat' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MinScreenRadiusForLights) == 0x000050, "Member 'URendererSettings::MinScreenRadiusForLights' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MinScreenRadiusForEarlyZPass) == 0x000054, "Member 'URendererSettings::MinScreenRadiusForEarlyZPass' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MinScreenRadiusForCSMdepth) == 0x000058, "Member 'URendererSettings::MinScreenRadiusForCSMdepth' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VirtualTextureTileSize) == 0x000060, "Member 'URendererSettings::VirtualTextureTileSize' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VirtualTextureTileBorderSize) == 0x000064, "Member 'URendererSettings::VirtualTextureTileBorderSize' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VirtualTextureFeedbackFactor) == 0x000068, "Member 'URendererSettings::VirtualTextureFeedbackFactor' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, WorkingColorSpaceChoice) == 0x00006C, "Member 'URendererSettings::WorkingColorSpaceChoice' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, RedChromaticityCoordinate) == 0x000070, "Member 'URendererSettings::RedChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, GreenChromaticityCoordinate) == 0x000080, "Member 'URendererSettings::GreenChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, BlueChromaticityCoordinate) == 0x000090, "Member 'URendererSettings::BlueChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, WhiteChromaticityCoordinate) == 0x0000A0, "Member 'URendererSettings::WhiteChromaticityCoordinate' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DynamicGlobalIllumination) == 0x0000B4, "Member 'URendererSettings::DynamicGlobalIllumination' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, Reflections) == 0x0000B5, "Member 'URendererSettings::Reflections' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, ReflectionCaptureResolution) == 0x0000B8, "Member 'URendererSettings::ReflectionCaptureResolution' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, LumenRayLightingMode) == 0x0000C0, "Member 'URendererSettings::LumenRayLightingMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, LumenSoftwareTracingMode) == 0x0000C8, "Member 'URendererSettings::LumenSoftwareTracingMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, ShadowMapMethod) == 0x0000C9, "Member 'URendererSettings::ShadowMapMethod' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DistanceFieldVoxelDensity) == 0x0000D0, "Member 'URendererSettings::DistanceFieldVoxelDensity' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, TranslucentSortPolicy) == 0x0000D8, "Member 'URendererSettings::TranslucentSortPolicy' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, TranslucentSortAxis) == 0x0000E0, "Member 'URendererSettings::TranslucentSortAxis' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, FoveationLevel) == 0x0000F8, "Member 'URendererSettings::FoveationLevel' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, CustomDepthStencil) == 0x000100, "Member 'URendererSettings::CustomDepthStencil' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, bEnableAlphaChannelInPostProcessing) == 0x000108, "Member 'URendererSettings::bEnableAlphaChannelInPostProcessing' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultFeatureAutoExposure) == 0x000110, "Member 'URendererSettings::DefaultFeatureAutoExposure' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultFeatureAutoExposureBias) == 0x000114, "Member 'URendererSettings::DefaultFeatureAutoExposureBias' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultFeatureLocalExposureHighlightContrastScale) == 0x00011C, "Member 'URendererSettings::DefaultFeatureLocalExposureHighlightContrastScale' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultFeatureLocalExposureShadowContrastScale) == 0x000120, "Member 'URendererSettings::DefaultFeatureLocalExposureShadowContrastScale' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultFeatureAntiAliasing) == 0x000128, "Member 'URendererSettings::DefaultFeatureAntiAliasing' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MSAASampleCount) == 0x000129, "Member 'URendererSettings::MSAASampleCount' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultLightUnits) == 0x00012A, "Member 'URendererSettings::DefaultLightUnits' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultBackBufferPixelFormat) == 0x00012B, "Member 'URendererSettings::DefaultBackBufferPixelFormat' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultManualScreenPercentage) == 0x00012C, "Member 'URendererSettings::DefaultManualScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultScreenPercentageDesktopMode) == 0x000130, "Member 'URendererSettings::DefaultScreenPercentageDesktopMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultScreenPercentageMobileMode) == 0x000134, "Member 'URendererSettings::DefaultScreenPercentageMobileMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultScreenPercentageVRMode) == 0x000138, "Member 'URendererSettings::DefaultScreenPercentageVRMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultScreenPercentagePathTracerMode) == 0x00013C, "Member 'URendererSettings::DefaultScreenPercentagePathTracerMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, EarlyZPass) == 0x000144, "Member 'URendererSettings::EarlyZPass' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, ClearSceneMethod) == 0x00014C, "Member 'URendererSettings::ClearSceneMethod' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VelocityPass) == 0x00014D, "Member 'URendererSettings::VelocityPass' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VertexDeformationOutputsVelocity) == 0x00014E, "Member 'URendererSettings::VertexDeformationOutputsVelocity' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, GPUSimulationTextureSizeX) == 0x000154, "Member 'URendererSettings::GPUSimulationTextureSizeX' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, GPUSimulationTextureSizeY) == 0x000158, "Member 'URendererSettings::GPUSimulationTextureSizeY' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, GBufferFormat) == 0x000160, "Member 'URendererSettings::GBufferFormat' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, WireframeCullThreshold) == 0x000168, "Member 'URendererSettings::WireframeCullThreshold' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultSkinCacheBehavior) == 0x000170, "Member 'URendererSettings::DefaultSkinCacheBehavior' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, SkinCacheSceneMemoryLimitInMB) == 0x000174, "Member 'URendererSettings::SkinCacheSceneMemoryLimitInMB' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, UnlimitedBonInfluencesThreshold) == 0x00017C, "Member 'URendererSettings::UnlimitedBonInfluencesThreshold' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, DefaultBoneInfluenceLimit) == 0x000180, "Member 'URendererSettings::DefaultBoneInfluenceLimit' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MaxSkinBones) == 0x000184, "Member 'URendererSettings::MaxSkinBones' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, MobilePlanarReflectionMode) == 0x000188, "Member 'URendererSettings::MobilePlanarReflectionMode' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, bStreamSkeletalMeshLODs) == 0x000190, "Member 'URendererSettings::bStreamSkeletalMeshLODs' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, bDiscardSkeletalMeshOptionalLODs) == 0x000191, "Member 'URendererSettings::bDiscardSkeletalMeshOptionalLODs' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VisualizeCalibrationColorMaterialPath) == 0x000198, "Member 'URendererSettings::VisualizeCalibrationColorMaterialPath' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VisualizeCalibrationCustomMaterialPath) == 0x0001B8, "Member 'URendererSettings::VisualizeCalibrationCustomMaterialPath' has a wrong offset!"); \ +static_assert(offsetof(URendererSettings, VisualizeCalibrationGrayscaleMaterialPath) == 0x0001D8, "Member 'URendererSettings::VisualizeCalibrationGrayscaleMaterialPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URendererOverrideSettings \ +static_assert(alignof(URendererOverrideSettings) == 0x000008, "Wrong alignment on URendererOverrideSettings"); \ +static_assert(sizeof(URendererOverrideSettings) == 0x000040, "Wrong size on URendererOverrideSettings"); \ + +#define DUMPER7_ASSERTS_USubsurfaceProfile \ +static_assert(alignof(USubsurfaceProfile) == 0x000008, "Wrong alignment on USubsurfaceProfile"); \ +static_assert(sizeof(USubsurfaceProfile) == 0x0000C8, "Wrong size on USubsurfaceProfile"); \ +static_assert(offsetof(USubsurfaceProfile, Settings) == 0x000028, "Member 'USubsurfaceProfile::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionSubsystem_IsAllStreamingCompleted \ +static_assert(alignof(WorldPartitionSubsystem_IsAllStreamingCompleted) == 0x000001, "Wrong alignment on WorldPartitionSubsystem_IsAllStreamingCompleted"); \ +static_assert(sizeof(WorldPartitionSubsystem_IsAllStreamingCompleted) == 0x000001, "Wrong size on WorldPartitionSubsystem_IsAllStreamingCompleted"); \ +static_assert(offsetof(WorldPartitionSubsystem_IsAllStreamingCompleted, ReturnValue) == 0x000000, "Member 'WorldPartitionSubsystem_IsAllStreamingCompleted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionSubsystem_IsStreamingCompleted \ +static_assert(alignof(WorldPartitionSubsystem_IsStreamingCompleted) == 0x000008, "Wrong alignment on WorldPartitionSubsystem_IsStreamingCompleted"); \ +static_assert(sizeof(WorldPartitionSubsystem_IsStreamingCompleted) == 0x000020, "Wrong size on WorldPartitionSubsystem_IsStreamingCompleted"); \ +static_assert(offsetof(WorldPartitionSubsystem_IsStreamingCompleted, QueryState) == 0x000000, "Member 'WorldPartitionSubsystem_IsStreamingCompleted::QueryState' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionSubsystem_IsStreamingCompleted, QuerySources) == 0x000008, "Member 'WorldPartitionSubsystem_IsStreamingCompleted::QuerySources' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionSubsystem_IsStreamingCompleted, bExactState) == 0x000018, "Member 'WorldPartitionSubsystem_IsStreamingCompleted::bExactState' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionSubsystem_IsStreamingCompleted, ReturnValue) == 0x000019, "Member 'WorldPartitionSubsystem_IsStreamingCompleted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionSubsystem \ +static_assert(alignof(UWorldPartitionSubsystem) == 0x000008, "Wrong alignment on UWorldPartitionSubsystem"); \ +static_assert(sizeof(UWorldPartitionSubsystem) == 0x0002D0, "Wrong size on UWorldPartitionSubsystem"); \ + +#define DUMPER7_ASSERTS_UReplayNetConnection \ +static_assert(alignof(UReplayNetConnection) == 0x000008, "Wrong alignment on UReplayNetConnection"); \ +static_assert(sizeof(UReplayNetConnection) == 0x002880, "Wrong size on UReplayNetConnection"); \ + +#define DUMPER7_ASSERTS_UReverbEffect \ +static_assert(alignof(UReverbEffect) == 0x000008, "Wrong alignment on UReverbEffect"); \ +static_assert(sizeof(UReverbEffect) == 0x000060, "Wrong size on UReverbEffect"); \ +static_assert(offsetof(UReverbEffect, bBypassEarlyReflections) == 0x000028, "Member 'UReverbEffect::bBypassEarlyReflections' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, ReflectionsDelay) == 0x00002C, "Member 'UReverbEffect::ReflectionsDelay' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, GainHF) == 0x000030, "Member 'UReverbEffect::GainHF' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, ReflectionsGain) == 0x000034, "Member 'UReverbEffect::ReflectionsGain' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, bBypassLateReflections) == 0x000038, "Member 'UReverbEffect::bBypassLateReflections' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, LateDelay) == 0x00003C, "Member 'UReverbEffect::LateDelay' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, DecayTime) == 0x000040, "Member 'UReverbEffect::DecayTime' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, Density) == 0x000044, "Member 'UReverbEffect::Density' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, Diffusion) == 0x000048, "Member 'UReverbEffect::Diffusion' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, AirAbsorptionGainHF) == 0x00004C, "Member 'UReverbEffect::AirAbsorptionGainHF' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, DecayHFRatio) == 0x000050, "Member 'UReverbEffect::DecayHFRatio' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, LateGain) == 0x000054, "Member 'UReverbEffect::LateGain' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, Gain) == 0x000058, "Member 'UReverbEffect::Gain' has a wrong offset!"); \ +static_assert(offsetof(UReverbEffect, RoomRolloffFactor) == 0x00005C, "Member 'UReverbEffect::RoomRolloffFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeOptionsBase \ +static_assert(alignof(URuntimeOptionsBase) == 0x000008, "Wrong alignment on URuntimeOptionsBase"); \ +static_assert(sizeof(URuntimeOptionsBase) == 0x000038, "Wrong size on URuntimeOptionsBase"); \ + +#define DUMPER7_ASSERTS_USCS_Node \ +static_assert(alignof(USCS_Node) == 0x000008, "Wrong alignment on USCS_Node"); \ +static_assert(sizeof(USCS_Node) == 0x0000D8, "Wrong size on USCS_Node"); \ +static_assert(offsetof(USCS_Node, ComponentClass) == 0x000028, "Member 'USCS_Node::ComponentClass' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, ComponentTemplate) == 0x000030, "Member 'USCS_Node::ComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, CookedComponentInstancingData) == 0x000038, "Member 'USCS_Node::CookedComponentInstancingData' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, AttachToName) == 0x000080, "Member 'USCS_Node::AttachToName' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, ParentComponentOrVariableName) == 0x000088, "Member 'USCS_Node::ParentComponentOrVariableName' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, ParentComponentOwnerClassName) == 0x000090, "Member 'USCS_Node::ParentComponentOwnerClassName' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, bIsParentComponentNative) == 0x000098, "Member 'USCS_Node::bIsParentComponentNative' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, ChildNodes) == 0x0000A0, "Member 'USCS_Node::ChildNodes' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, MetaDataArray) == 0x0000B0, "Member 'USCS_Node::MetaDataArray' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, VariableGuid) == 0x0000C0, "Member 'USCS_Node::VariableGuid' has a wrong offset!"); \ +static_assert(offsetof(USCS_Node, InternalVariableName) == 0x0000D0, "Member 'USCS_Node::InternalVariableName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedAsset_FindSocket \ +static_assert(alignof(SkinnedAsset_FindSocket) == 0x000008, "Wrong alignment on SkinnedAsset_FindSocket"); \ +static_assert(sizeof(SkinnedAsset_FindSocket) == 0x000010, "Wrong size on SkinnedAsset_FindSocket"); \ +static_assert(offsetof(SkinnedAsset_FindSocket, InSocketName) == 0x000000, "Member 'SkinnedAsset_FindSocket::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedAsset_FindSocket, ReturnValue) == 0x000008, "Member 'SkinnedAsset_FindSocket::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkinnedAsset_FindSocketInfo \ +static_assert(alignof(SkinnedAsset_FindSocketInfo) == 0x000010, "Wrong alignment on SkinnedAsset_FindSocketInfo"); \ +static_assert(sizeof(SkinnedAsset_FindSocketInfo) == 0x000080, "Wrong size on SkinnedAsset_FindSocketInfo"); \ +static_assert(offsetof(SkinnedAsset_FindSocketInfo, InSocketName) == 0x000000, "Member 'SkinnedAsset_FindSocketInfo::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SkinnedAsset_FindSocketInfo, OutTransform) == 0x000010, "Member 'SkinnedAsset_FindSocketInfo::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(SkinnedAsset_FindSocketInfo, OutBoneIndex) == 0x000070, "Member 'SkinnedAsset_FindSocketInfo::OutBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedAsset_FindSocketInfo, OutIndex) == 0x000074, "Member 'SkinnedAsset_FindSocketInfo::OutIndex' has a wrong offset!"); \ +static_assert(offsetof(SkinnedAsset_FindSocketInfo, ReturnValue) == 0x000078, "Member 'SkinnedAsset_FindSocketInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkinnedAsset \ +static_assert(alignof(USkinnedAsset) == 0x000008, "Wrong alignment on USkinnedAsset"); \ +static_assert(sizeof(USkinnedAsset) == 0x0000D0, "Wrong size on USkinnedAsset"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetDefaultAnimatingRig \ +static_assert(alignof(SkeletalMesh_SetDefaultAnimatingRig) == 0x000008, "Wrong alignment on SkeletalMesh_SetDefaultAnimatingRig"); \ +static_assert(sizeof(SkeletalMesh_SetDefaultAnimatingRig) == 0x000028, "Wrong size on SkeletalMesh_SetDefaultAnimatingRig"); \ +static_assert(offsetof(SkeletalMesh_SetDefaultAnimatingRig, InAnimatingRig) == 0x000000, "Member 'SkeletalMesh_SetDefaultAnimatingRig::InAnimatingRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetLODSettings \ +static_assert(alignof(SkeletalMesh_SetLODSettings) == 0x000008, "Wrong alignment on SkeletalMesh_SetLODSettings"); \ +static_assert(sizeof(SkeletalMesh_SetLODSettings) == 0x000008, "Wrong size on SkeletalMesh_SetLODSettings"); \ +static_assert(offsetof(SkeletalMesh_SetLODSettings, InLODSettings) == 0x000000, "Member 'SkeletalMesh_SetLODSettings::InLODSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetMaterials \ +static_assert(alignof(SkeletalMesh_SetMaterials) == 0x000008, "Wrong alignment on SkeletalMesh_SetMaterials"); \ +static_assert(sizeof(SkeletalMesh_SetMaterials) == 0x000010, "Wrong size on SkeletalMesh_SetMaterials"); \ +static_assert(offsetof(SkeletalMesh_SetMaterials, InMaterials) == 0x000000, "Member 'SkeletalMesh_SetMaterials::InMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetMeshClothingAssets \ +static_assert(alignof(SkeletalMesh_SetMeshClothingAssets) == 0x000008, "Wrong alignment on SkeletalMesh_SetMeshClothingAssets"); \ +static_assert(sizeof(SkeletalMesh_SetMeshClothingAssets) == 0x000010, "Wrong size on SkeletalMesh_SetMeshClothingAssets"); \ +static_assert(offsetof(SkeletalMesh_SetMeshClothingAssets, InMeshClothingAssets) == 0x000000, "Member 'SkeletalMesh_SetMeshClothingAssets::InMeshClothingAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetMinLODForQualityLevels \ +static_assert(alignof(SkeletalMesh_SetMinLODForQualityLevels) == 0x000008, "Wrong alignment on SkeletalMesh_SetMinLODForQualityLevels"); \ +static_assert(sizeof(SkeletalMesh_SetMinLODForQualityLevels) == 0x000058, "Wrong size on SkeletalMesh_SetMinLODForQualityLevels"); \ +static_assert(offsetof(SkeletalMesh_SetMinLODForQualityLevels, QualityLevelMinimumLODs) == 0x000000, "Member 'SkeletalMesh_SetMinLODForQualityLevels::QualityLevelMinimumLODs' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_SetMinLODForQualityLevels, Default) == 0x000050, "Member 'SkeletalMesh_SetMinLODForQualityLevels::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetMorphTargets \ +static_assert(alignof(SkeletalMesh_SetMorphTargets) == 0x000008, "Wrong alignment on SkeletalMesh_SetMorphTargets"); \ +static_assert(sizeof(SkeletalMesh_SetMorphTargets) == 0x000010, "Wrong size on SkeletalMesh_SetMorphTargets"); \ +static_assert(offsetof(SkeletalMesh_SetMorphTargets, InMorphTargets) == 0x000000, "Member 'SkeletalMesh_SetMorphTargets::InMorphTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetOverlayMaterial \ +static_assert(alignof(SkeletalMesh_SetOverlayMaterial) == 0x000008, "Wrong alignment on SkeletalMesh_SetOverlayMaterial"); \ +static_assert(sizeof(SkeletalMesh_SetOverlayMaterial) == 0x000008, "Wrong size on SkeletalMesh_SetOverlayMaterial"); \ +static_assert(offsetof(SkeletalMesh_SetOverlayMaterial, NewOverlayMaterial) == 0x000000, "Member 'SkeletalMesh_SetOverlayMaterial::NewOverlayMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetOverlayMaterialMaxDrawDistance \ +static_assert(alignof(SkeletalMesh_SetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong alignment on SkeletalMesh_SetOverlayMaterialMaxDrawDistance"); \ +static_assert(sizeof(SkeletalMesh_SetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong size on SkeletalMesh_SetOverlayMaterialMaxDrawDistance"); \ +static_assert(offsetof(SkeletalMesh_SetOverlayMaterialMaxDrawDistance, InMaxDrawDistance) == 0x000000, "Member 'SkeletalMesh_SetOverlayMaterialMaxDrawDistance::InMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_SetSkeleton \ +static_assert(alignof(SkeletalMesh_SetSkeleton) == 0x000008, "Wrong alignment on SkeletalMesh_SetSkeleton"); \ +static_assert(sizeof(SkeletalMesh_SetSkeleton) == 0x000008, "Wrong size on SkeletalMesh_SetSkeleton"); \ +static_assert(offsetof(SkeletalMesh_SetSkeleton, InSkeleton) == 0x000000, "Member 'SkeletalMesh_SetSkeleton::InSkeleton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_FindSocketAndIndex \ +static_assert(alignof(SkeletalMesh_FindSocketAndIndex) == 0x000008, "Wrong alignment on SkeletalMesh_FindSocketAndIndex"); \ +static_assert(sizeof(SkeletalMesh_FindSocketAndIndex) == 0x000018, "Wrong size on SkeletalMesh_FindSocketAndIndex"); \ +static_assert(offsetof(SkeletalMesh_FindSocketAndIndex, InSocketName) == 0x000000, "Member 'SkeletalMesh_FindSocketAndIndex::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_FindSocketAndIndex, OutIndex) == 0x000008, "Member 'SkeletalMesh_FindSocketAndIndex::OutIndex' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_FindSocketAndIndex, ReturnValue) == 0x000010, "Member 'SkeletalMesh_FindSocketAndIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetBounds \ +static_assert(alignof(SkeletalMesh_GetBounds) == 0x000008, "Wrong alignment on SkeletalMesh_GetBounds"); \ +static_assert(sizeof(SkeletalMesh_GetBounds) == 0x000038, "Wrong size on SkeletalMesh_GetBounds"); \ +static_assert(offsetof(SkeletalMesh_GetBounds, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetDefaultAnimatingRig \ +static_assert(alignof(SkeletalMesh_GetDefaultAnimatingRig) == 0x000008, "Wrong alignment on SkeletalMesh_GetDefaultAnimatingRig"); \ +static_assert(sizeof(SkeletalMesh_GetDefaultAnimatingRig) == 0x000028, "Wrong size on SkeletalMesh_GetDefaultAnimatingRig"); \ +static_assert(offsetof(SkeletalMesh_GetDefaultAnimatingRig, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetDefaultAnimatingRig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetImportedBounds \ +static_assert(alignof(SkeletalMesh_GetImportedBounds) == 0x000008, "Wrong alignment on SkeletalMesh_GetImportedBounds"); \ +static_assert(sizeof(SkeletalMesh_GetImportedBounds) == 0x000038, "Wrong size on SkeletalMesh_GetImportedBounds"); \ +static_assert(offsetof(SkeletalMesh_GetImportedBounds, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetImportedBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetLODSettings \ +static_assert(alignof(SkeletalMesh_GetLODSettings) == 0x000008, "Wrong alignment on SkeletalMesh_GetLODSettings"); \ +static_assert(sizeof(SkeletalMesh_GetLODSettings) == 0x000008, "Wrong size on SkeletalMesh_GetLODSettings"); \ +static_assert(offsetof(SkeletalMesh_GetLODSettings, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetLODSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetMaterials \ +static_assert(alignof(SkeletalMesh_GetMaterials) == 0x000008, "Wrong alignment on SkeletalMesh_GetMaterials"); \ +static_assert(sizeof(SkeletalMesh_GetMaterials) == 0x000010, "Wrong size on SkeletalMesh_GetMaterials"); \ +static_assert(offsetof(SkeletalMesh_GetMaterials, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetMeshClothingAssets \ +static_assert(alignof(SkeletalMesh_GetMeshClothingAssets) == 0x000008, "Wrong alignment on SkeletalMesh_GetMeshClothingAssets"); \ +static_assert(sizeof(SkeletalMesh_GetMeshClothingAssets) == 0x000010, "Wrong size on SkeletalMesh_GetMeshClothingAssets"); \ +static_assert(offsetof(SkeletalMesh_GetMeshClothingAssets, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetMeshClothingAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetMinLODForQualityLevels \ +static_assert(alignof(SkeletalMesh_GetMinLODForQualityLevels) == 0x000008, "Wrong alignment on SkeletalMesh_GetMinLODForQualityLevels"); \ +static_assert(sizeof(SkeletalMesh_GetMinLODForQualityLevels) == 0x000058, "Wrong size on SkeletalMesh_GetMinLODForQualityLevels"); \ +static_assert(offsetof(SkeletalMesh_GetMinLODForQualityLevels, QualityLevelMinimumLODs) == 0x000000, "Member 'SkeletalMesh_GetMinLODForQualityLevels::QualityLevelMinimumLODs' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_GetMinLODForQualityLevels, Default) == 0x000050, "Member 'SkeletalMesh_GetMinLODForQualityLevels::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetMorphTargetsPtrConv \ +static_assert(alignof(SkeletalMesh_GetMorphTargetsPtrConv) == 0x000008, "Wrong alignment on SkeletalMesh_GetMorphTargetsPtrConv"); \ +static_assert(sizeof(SkeletalMesh_GetMorphTargetsPtrConv) == 0x000010, "Wrong size on SkeletalMesh_GetMorphTargetsPtrConv"); \ +static_assert(offsetof(SkeletalMesh_GetMorphTargetsPtrConv, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetMorphTargetsPtrConv::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetNodeMappingContainer \ +static_assert(alignof(SkeletalMesh_GetNodeMappingContainer) == 0x000008, "Wrong alignment on SkeletalMesh_GetNodeMappingContainer"); \ +static_assert(sizeof(SkeletalMesh_GetNodeMappingContainer) == 0x000010, "Wrong size on SkeletalMesh_GetNodeMappingContainer"); \ +static_assert(offsetof(SkeletalMesh_GetNodeMappingContainer, SourceAsset) == 0x000000, "Member 'SkeletalMesh_GetNodeMappingContainer::SourceAsset' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_GetNodeMappingContainer, ReturnValue) == 0x000008, "Member 'SkeletalMesh_GetNodeMappingContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetNodeMappingData \ +static_assert(alignof(SkeletalMesh_GetNodeMappingData) == 0x000008, "Wrong alignment on SkeletalMesh_GetNodeMappingData"); \ +static_assert(sizeof(SkeletalMesh_GetNodeMappingData) == 0x000010, "Wrong size on SkeletalMesh_GetNodeMappingData"); \ +static_assert(offsetof(SkeletalMesh_GetNodeMappingData, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetNodeMappingData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetOverlayMaterial \ +static_assert(alignof(SkeletalMesh_GetOverlayMaterial) == 0x000008, "Wrong alignment on SkeletalMesh_GetOverlayMaterial"); \ +static_assert(sizeof(SkeletalMesh_GetOverlayMaterial) == 0x000008, "Wrong size on SkeletalMesh_GetOverlayMaterial"); \ +static_assert(offsetof(SkeletalMesh_GetOverlayMaterial, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetOverlayMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetOverlayMaterialMaxDrawDistance \ +static_assert(alignof(SkeletalMesh_GetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong alignment on SkeletalMesh_GetOverlayMaterialMaxDrawDistance"); \ +static_assert(sizeof(SkeletalMesh_GetOverlayMaterialMaxDrawDistance) == 0x000004, "Wrong size on SkeletalMesh_GetOverlayMaterialMaxDrawDistance"); \ +static_assert(offsetof(SkeletalMesh_GetOverlayMaterialMaxDrawDistance, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetOverlayMaterialMaxDrawDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetPhysicsAsset \ +static_assert(alignof(SkeletalMesh_GetPhysicsAsset) == 0x000008, "Wrong alignment on SkeletalMesh_GetPhysicsAsset"); \ +static_assert(sizeof(SkeletalMesh_GetPhysicsAsset) == 0x000008, "Wrong size on SkeletalMesh_GetPhysicsAsset"); \ +static_assert(offsetof(SkeletalMesh_GetPhysicsAsset, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetPhysicsAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetShadowPhysicsAsset \ +static_assert(alignof(SkeletalMesh_GetShadowPhysicsAsset) == 0x000008, "Wrong alignment on SkeletalMesh_GetShadowPhysicsAsset"); \ +static_assert(sizeof(SkeletalMesh_GetShadowPhysicsAsset) == 0x000008, "Wrong size on SkeletalMesh_GetShadowPhysicsAsset"); \ +static_assert(offsetof(SkeletalMesh_GetShadowPhysicsAsset, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetShadowPhysicsAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetSkeleton \ +static_assert(alignof(SkeletalMesh_GetSkeleton) == 0x000008, "Wrong alignment on SkeletalMesh_GetSkeleton"); \ +static_assert(sizeof(SkeletalMesh_GetSkeleton) == 0x000008, "Wrong size on SkeletalMesh_GetSkeleton"); \ +static_assert(offsetof(SkeletalMesh_GetSkeleton, ReturnValue) == 0x000000, "Member 'SkeletalMesh_GetSkeleton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_GetSocketByIndex \ +static_assert(alignof(SkeletalMesh_GetSocketByIndex) == 0x000008, "Wrong alignment on SkeletalMesh_GetSocketByIndex"); \ +static_assert(sizeof(SkeletalMesh_GetSocketByIndex) == 0x000010, "Wrong size on SkeletalMesh_GetSocketByIndex"); \ +static_assert(offsetof(SkeletalMesh_GetSocketByIndex, Index_0) == 0x000000, "Member 'SkeletalMesh_GetSocketByIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_GetSocketByIndex, ReturnValue) == 0x000008, "Member 'SkeletalMesh_GetSocketByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_IsSectionUsingCloth \ +static_assert(alignof(SkeletalMesh_IsSectionUsingCloth) == 0x000004, "Wrong alignment on SkeletalMesh_IsSectionUsingCloth"); \ +static_assert(sizeof(SkeletalMesh_IsSectionUsingCloth) == 0x000008, "Wrong size on SkeletalMesh_IsSectionUsingCloth"); \ +static_assert(offsetof(SkeletalMesh_IsSectionUsingCloth, InSectionIndex) == 0x000000, "Member 'SkeletalMesh_IsSectionUsingCloth::InSectionIndex' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_IsSectionUsingCloth, bCheckCorrespondingSections) == 0x000004, "Member 'SkeletalMesh_IsSectionUsingCloth::bCheckCorrespondingSections' has a wrong offset!"); \ +static_assert(offsetof(SkeletalMesh_IsSectionUsingCloth, ReturnValue) == 0x000005, "Member 'SkeletalMesh_IsSectionUsingCloth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_K2_GetAllMorphTargetNames \ +static_assert(alignof(SkeletalMesh_K2_GetAllMorphTargetNames) == 0x000008, "Wrong alignment on SkeletalMesh_K2_GetAllMorphTargetNames"); \ +static_assert(sizeof(SkeletalMesh_K2_GetAllMorphTargetNames) == 0x000010, "Wrong size on SkeletalMesh_K2_GetAllMorphTargetNames"); \ +static_assert(offsetof(SkeletalMesh_K2_GetAllMorphTargetNames, ReturnValue) == 0x000000, "Member 'SkeletalMesh_K2_GetAllMorphTargetNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalMesh_NumSockets \ +static_assert(alignof(SkeletalMesh_NumSockets) == 0x000004, "Wrong alignment on SkeletalMesh_NumSockets"); \ +static_assert(sizeof(SkeletalMesh_NumSockets) == 0x000004, "Wrong size on SkeletalMesh_NumSockets"); \ +static_assert(offsetof(SkeletalMesh_NumSockets, ReturnValue) == 0x000000, "Member 'SkeletalMesh_NumSockets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalMesh \ +static_assert(alignof(USkeletalMesh) == 0x000008, "Wrong alignment on USkeletalMesh"); \ +static_assert(sizeof(USkeletalMesh) == 0x0004E0, "Wrong size on USkeletalMesh"); \ +static_assert(offsetof(USkeletalMesh, Skeleton) == 0x0000F0, "Member 'USkeletalMesh::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, ImportedBounds) == 0x0000F8, "Member 'USkeletalMesh::ImportedBounds' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, ExtendedBounds) == 0x000130, "Member 'USkeletalMesh::ExtendedBounds' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, PositiveBoundsExtension) == 0x000168, "Member 'USkeletalMesh::PositiveBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, NegativeBoundsExtension) == 0x000180, "Member 'USkeletalMesh::NegativeBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, Materials) == 0x000198, "Member 'USkeletalMesh::Materials' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, LODInfo) == 0x0001A8, "Member 'USkeletalMesh::LODInfo' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, MinQualityLevelLOD) == 0x000208, "Member 'USkeletalMesh::MinQualityLevelLOD' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, MinLOD) == 0x000270, "Member 'USkeletalMesh::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, DisableBelowMinLodStripping) == 0x000274, "Member 'USkeletalMesh::DisableBelowMinLodStripping' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, BodySetup) == 0x000278, "Member 'USkeletalMesh::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, PhysicsAsset) == 0x000280, "Member 'USkeletalMesh::PhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, ShadowPhysicsAsset) == 0x000288, "Member 'USkeletalMesh::ShadowPhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, NodeMappingData) == 0x000290, "Member 'USkeletalMesh::NodeMappingData' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, RayTracingMinLOD) == 0x0002A4, "Member 'USkeletalMesh::RayTracingMinLOD' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, ClothLODBiasMode) == 0x0002A8, "Member 'USkeletalMesh::ClothLODBiasMode' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, MorphTargets) == 0x0002B0, "Member 'USkeletalMesh::MorphTargets' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, PostProcessAnimBlueprint) == 0x000438, "Member 'USkeletalMesh::PostProcessAnimBlueprint' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, PostProcessAnimBPLODThreshold) == 0x000440, "Member 'USkeletalMesh::PostProcessAnimBPLODThreshold' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, MeshClothingAssets) == 0x000448, "Member 'USkeletalMesh::MeshClothingAssets' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, SamplingInfo) == 0x000458, "Member 'USkeletalMesh::SamplingInfo' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, AssetUserData) == 0x000488, "Member 'USkeletalMesh::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, Sockets) == 0x000498, "Member 'USkeletalMesh::Sockets' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, SkinWeightProfiles) == 0x0004B8, "Member 'USkeletalMesh::SkinWeightProfiles' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, DefaultMeshDeformer) == 0x0004C8, "Member 'USkeletalMesh::DefaultMeshDeformer' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, OverlayMaterial) == 0x0004D0, "Member 'USkeletalMesh::OverlayMaterial' has a wrong offset!"); \ +static_assert(offsetof(USkeletalMesh, OverlayMaterialMaxDrawDistance) == 0x0004D8, "Member 'USkeletalMesh::OverlayMaterialMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalMeshEditorData \ +static_assert(alignof(USkeletalMeshEditorData) == 0x000008, "Wrong alignment on USkeletalMeshEditorData"); \ +static_assert(sizeof(USkeletalMeshEditorData) == 0x000028, "Wrong size on USkeletalMeshEditorData"); \ + +#define DUMPER7_ASSERTS_USkeletalMeshSimplificationSettings \ +static_assert(alignof(USkeletalMeshSimplificationSettings) == 0x000008, "Wrong alignment on USkeletalMeshSimplificationSettings"); \ +static_assert(sizeof(USkeletalMeshSimplificationSettings) == 0x000040, "Wrong size on USkeletalMeshSimplificationSettings"); \ +static_assert(offsetof(USkeletalMeshSimplificationSettings, SkeletalMeshReductionModuleName) == 0x000038, "Member 'USkeletalMeshSimplificationSettings::SkeletalMeshReductionModuleName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UButtonStyleAsset \ +static_assert(alignof(UButtonStyleAsset) == 0x000010, "Wrong alignment on UButtonStyleAsset"); \ +static_assert(sizeof(UButtonStyleAsset) == 0x000420, "Wrong size on UButtonStyleAsset"); \ +static_assert(offsetof(UButtonStyleAsset, ButtonStyle) == 0x000030, "Member 'UButtonStyleAsset::ButtonStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckBoxStyleAsset \ +static_assert(alignof(UCheckBoxStyleAsset) == 0x000010, "Wrong alignment on UCheckBoxStyleAsset"); \ +static_assert(sizeof(UCheckBoxStyleAsset) == 0x000B00, "Wrong size on UCheckBoxStyleAsset"); \ +static_assert(offsetof(UCheckBoxStyleAsset, CheckBoxStyle) == 0x000030, "Member 'UCheckBoxStyleAsset::CheckBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ISlateTextureAtlasInterface \ +static_assert(alignof(ISlateTextureAtlasInterface) == 0x000001, "Wrong alignment on ISlateTextureAtlasInterface"); \ +static_assert(sizeof(ISlateTextureAtlasInterface) == 0x000001, "Wrong size on ISlateTextureAtlasInterface"); \ + +#define DUMPER7_ASSERTS_USoundClass \ +static_assert(alignof(USoundClass) == 0x000008, "Wrong alignment on USoundClass"); \ +static_assert(sizeof(USoundClass) == 0x0001E8, "Wrong size on USoundClass"); \ +static_assert(offsetof(USoundClass, Properties) == 0x000028, "Member 'USoundClass::Properties' has a wrong offset!"); \ +static_assert(offsetof(USoundClass, ChildClasses) == 0x0001C0, "Member 'USoundClass::ChildClasses' has a wrong offset!"); \ +static_assert(offsetof(USoundClass, PassiveSoundMixModifiers) == 0x0001D0, "Member 'USoundClass::PassiveSoundMixModifiers' has a wrong offset!"); \ +static_assert(offsetof(USoundClass, ParentClass) == 0x0001E0, "Member 'USoundClass::ParentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundConcurrency \ +static_assert(alignof(USoundConcurrency) == 0x000008, "Wrong alignment on USoundConcurrency"); \ +static_assert(sizeof(USoundConcurrency) == 0x000048, "Wrong size on USoundConcurrency"); \ +static_assert(offsetof(USoundConcurrency, Concurrency) == 0x000028, "Member 'USoundConcurrency::Concurrency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundMix \ +static_assert(alignof(USoundMix) == 0x000008, "Wrong alignment on USoundMix"); \ +static_assert(sizeof(USoundMix) == 0x000090, "Wrong size on USoundMix"); \ +static_assert(offsetof(USoundMix, EQPriority) == 0x00002C, "Member 'USoundMix::EQPriority' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, EQSettings) == 0x000030, "Member 'USoundMix::EQSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, SoundClassEffects) == 0x000070, "Member 'USoundMix::SoundClassEffects' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, InitialDelay) == 0x000080, "Member 'USoundMix::InitialDelay' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, FadeInTime) == 0x000084, "Member 'USoundMix::FadeInTime' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, Duration) == 0x000088, "Member 'USoundMix::Duration' has a wrong offset!"); \ +static_assert(offsetof(USoundMix, FadeOutTime) == 0x00008C, "Member 'USoundMix::FadeOutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeAssetReferencer \ +static_assert(alignof(USoundNodeAssetReferencer) == 0x000008, "Wrong alignment on USoundNodeAssetReferencer"); \ +static_assert(sizeof(USoundNodeAssetReferencer) == 0x000048, "Wrong size on USoundNodeAssetReferencer"); \ + +#define DUMPER7_ASSERTS_USoundNodeAttenuation \ +static_assert(alignof(USoundNodeAttenuation) == 0x000008, "Wrong alignment on USoundNodeAttenuation"); \ +static_assert(sizeof(USoundNodeAttenuation) == 0x000428, "Wrong size on USoundNodeAttenuation"); \ +static_assert(offsetof(USoundNodeAttenuation, AttenuationSettings) == 0x000048, "Member 'USoundNodeAttenuation::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeAttenuation, AttenuationOverrides) == 0x000050, "Member 'USoundNodeAttenuation::AttenuationOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeConcatenator \ +static_assert(alignof(USoundNodeConcatenator) == 0x000008, "Wrong alignment on USoundNodeConcatenator"); \ +static_assert(sizeof(USoundNodeConcatenator) == 0x000058, "Wrong size on USoundNodeConcatenator"); \ +static_assert(offsetof(USoundNodeConcatenator, InputVolume) == 0x000048, "Member 'USoundNodeConcatenator::InputVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeDelay \ +static_assert(alignof(USoundNodeDelay) == 0x000008, "Wrong alignment on USoundNodeDelay"); \ +static_assert(sizeof(USoundNodeDelay) == 0x000050, "Wrong size on USoundNodeDelay"); \ +static_assert(offsetof(USoundNodeDelay, DelayMin) == 0x000048, "Member 'USoundNodeDelay::DelayMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeDelay, DelayMax) == 0x00004C, "Member 'USoundNodeDelay::DelayMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeDialoguePlayer \ +static_assert(alignof(USoundNodeDialoguePlayer) == 0x000008, "Wrong alignment on USoundNodeDialoguePlayer"); \ +static_assert(sizeof(USoundNodeDialoguePlayer) == 0x000070, "Wrong size on USoundNodeDialoguePlayer"); \ +static_assert(offsetof(USoundNodeDialoguePlayer, DialogueWaveParameter) == 0x000048, "Member 'USoundNodeDialoguePlayer::DialogueWaveParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeEnveloper \ +static_assert(alignof(USoundNodeEnveloper) == 0x000008, "Wrong alignment on USoundNodeEnveloper"); \ +static_assert(sizeof(USoundNodeEnveloper) == 0x000190, "Wrong size on USoundNodeEnveloper"); \ +static_assert(offsetof(USoundNodeEnveloper, LoopStart) == 0x000048, "Member 'USoundNodeEnveloper::LoopStart' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, LoopEnd) == 0x00004C, "Member 'USoundNodeEnveloper::LoopEnd' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, DurationAfterLoop) == 0x000050, "Member 'USoundNodeEnveloper::DurationAfterLoop' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, LoopCount) == 0x000054, "Member 'USoundNodeEnveloper::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, VolumeInterpCurve) == 0x000060, "Member 'USoundNodeEnveloper::VolumeInterpCurve' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, PitchInterpCurve) == 0x000068, "Member 'USoundNodeEnveloper::PitchInterpCurve' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, VolumeCurve) == 0x000070, "Member 'USoundNodeEnveloper::VolumeCurve' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, PitchCurve) == 0x0000F8, "Member 'USoundNodeEnveloper::PitchCurve' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, PitchMin) == 0x000180, "Member 'USoundNodeEnveloper::PitchMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, PitchMax) == 0x000184, "Member 'USoundNodeEnveloper::PitchMax' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, VolumeMin) == 0x000188, "Member 'USoundNodeEnveloper::VolumeMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeEnveloper, VolumeMax) == 0x00018C, "Member 'USoundNodeEnveloper::VolumeMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeGroupControl \ +static_assert(alignof(USoundNodeGroupControl) == 0x000008, "Wrong alignment on USoundNodeGroupControl"); \ +static_assert(sizeof(USoundNodeGroupControl) == 0x000058, "Wrong size on USoundNodeGroupControl"); \ +static_assert(offsetof(USoundNodeGroupControl, GroupSizes) == 0x000048, "Member 'USoundNodeGroupControl::GroupSizes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeMixer \ +static_assert(alignof(USoundNodeMixer) == 0x000008, "Wrong alignment on USoundNodeMixer"); \ +static_assert(sizeof(USoundNodeMixer) == 0x000058, "Wrong size on USoundNodeMixer"); \ +static_assert(offsetof(USoundNodeMixer, InputVolume) == 0x000048, "Member 'USoundNodeMixer::InputVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeModulator \ +static_assert(alignof(USoundNodeModulator) == 0x000008, "Wrong alignment on USoundNodeModulator"); \ +static_assert(sizeof(USoundNodeModulator) == 0x000058, "Wrong size on USoundNodeModulator"); \ +static_assert(offsetof(USoundNodeModulator, PitchMin) == 0x000048, "Member 'USoundNodeModulator::PitchMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeModulator, PitchMax) == 0x00004C, "Member 'USoundNodeModulator::PitchMax' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeModulator, VolumeMin) == 0x000050, "Member 'USoundNodeModulator::VolumeMin' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeModulator, VolumeMax) == 0x000054, "Member 'USoundNodeModulator::VolumeMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeQualityLevel \ +static_assert(alignof(USoundNodeQualityLevel) == 0x000008, "Wrong alignment on USoundNodeQualityLevel"); \ +static_assert(sizeof(USoundNodeQualityLevel) == 0x000050, "Wrong size on USoundNodeQualityLevel"); \ +static_assert(offsetof(USoundNodeQualityLevel, CookedQualityLevelIndex) == 0x000048, "Member 'USoundNodeQualityLevel::CookedQualityLevelIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeRandom \ +static_assert(alignof(USoundNodeRandom) == 0x000008, "Wrong alignment on USoundNodeRandom"); \ +static_assert(sizeof(USoundNodeRandom) == 0x000078, "Wrong size on USoundNodeRandom"); \ +static_assert(offsetof(USoundNodeRandom, Weights) == 0x000048, "Member 'USoundNodeRandom::Weights' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeRandom, HasBeenUsed) == 0x000058, "Member 'USoundNodeRandom::HasBeenUsed' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeRandom, NumRandomUsed) == 0x000068, "Member 'USoundNodeRandom::NumRandomUsed' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeRandom, PreselectAtLevelLoad) == 0x00006C, "Member 'USoundNodeRandom::PreselectAtLevelLoad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeWaveParam \ +static_assert(alignof(USoundNodeWaveParam) == 0x000008, "Wrong alignment on USoundNodeWaveParam"); \ +static_assert(sizeof(USoundNodeWaveParam) == 0x000050, "Wrong size on USoundNodeWaveParam"); \ +static_assert(offsetof(USoundNodeWaveParam, WaveParameterName) == 0x000048, "Member 'USoundNodeWaveParam::WaveParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundNodeWavePlayer \ +static_assert(alignof(USoundNodeWavePlayer) == 0x000008, "Wrong alignment on USoundNodeWavePlayer"); \ +static_assert(sizeof(USoundNodeWavePlayer) == 0x000080, "Wrong size on USoundNodeWavePlayer"); \ +static_assert(offsetof(USoundNodeWavePlayer, SoundWaveAssetPtr) == 0x000048, "Member 'USoundNodeWavePlayer::SoundWaveAssetPtr' has a wrong offset!"); \ +static_assert(offsetof(USoundNodeWavePlayer, SoundWave) == 0x000070, "Member 'USoundNodeWavePlayer::SoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_AddEnvelopeFollowerDelegate \ +static_assert(alignof(SoundSubmix_AddEnvelopeFollowerDelegate) == 0x000008, "Wrong alignment on SoundSubmix_AddEnvelopeFollowerDelegate"); \ +static_assert(sizeof(SoundSubmix_AddEnvelopeFollowerDelegate) == 0x000018, "Wrong size on SoundSubmix_AddEnvelopeFollowerDelegate"); \ +static_assert(offsetof(SoundSubmix_AddEnvelopeFollowerDelegate, WorldContextObject) == 0x000000, "Member 'SoundSubmix_AddEnvelopeFollowerDelegate::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddEnvelopeFollowerDelegate, OnSubmixEnvelopeBP) == 0x000008, "Member 'SoundSubmix_AddEnvelopeFollowerDelegate::OnSubmixEnvelopeBP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_AddSpectralAnalysisDelegate \ +static_assert(alignof(SoundSubmix_AddSpectralAnalysisDelegate) == 0x000008, "Wrong alignment on SoundSubmix_AddSpectralAnalysisDelegate"); \ +static_assert(sizeof(SoundSubmix_AddSpectralAnalysisDelegate) == 0x000040, "Wrong size on SoundSubmix_AddSpectralAnalysisDelegate"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, WorldContextObject) == 0x000000, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, InBandSettings) == 0x000008, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::InBandSettings' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, OnSubmixSpectralAnalysisBP) == 0x000018, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::OnSubmixSpectralAnalysisBP' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, UpdateRate) == 0x000028, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::UpdateRate' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, DecibelNoiseFloor) == 0x00002C, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::DecibelNoiseFloor' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, bDoNormalize) == 0x000030, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::bDoNormalize' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, bDoAutoRange) == 0x000031, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::bDoAutoRange' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, AutoRangeAttackTime) == 0x000034, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::AutoRangeAttackTime' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_AddSpectralAnalysisDelegate, AutoRangeReleaseTime) == 0x000038, "Member 'SoundSubmix_AddSpectralAnalysisDelegate::AutoRangeReleaseTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_RemoveSpectralAnalysisDelegate \ +static_assert(alignof(SoundSubmix_RemoveSpectralAnalysisDelegate) == 0x000008, "Wrong alignment on SoundSubmix_RemoveSpectralAnalysisDelegate"); \ +static_assert(sizeof(SoundSubmix_RemoveSpectralAnalysisDelegate) == 0x000018, "Wrong size on SoundSubmix_RemoveSpectralAnalysisDelegate"); \ +static_assert(offsetof(SoundSubmix_RemoveSpectralAnalysisDelegate, WorldContextObject) == 0x000000, "Member 'SoundSubmix_RemoveSpectralAnalysisDelegate::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_RemoveSpectralAnalysisDelegate, OnSubmixSpectralAnalysisBP) == 0x000008, "Member 'SoundSubmix_RemoveSpectralAnalysisDelegate::OnSubmixSpectralAnalysisBP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetDryVolumeModulation \ +static_assert(alignof(SoundSubmix_SetDryVolumeModulation) == 0x000008, "Wrong alignment on SoundSubmix_SetDryVolumeModulation"); \ +static_assert(sizeof(SoundSubmix_SetDryVolumeModulation) == 0x000058, "Wrong size on SoundSubmix_SetDryVolumeModulation"); \ +static_assert(offsetof(SoundSubmix_SetDryVolumeModulation, InVolMod) == 0x000000, "Member 'SoundSubmix_SetDryVolumeModulation::InVolMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetOutputVolumeModulation \ +static_assert(alignof(SoundSubmix_SetOutputVolumeModulation) == 0x000008, "Wrong alignment on SoundSubmix_SetOutputVolumeModulation"); \ +static_assert(sizeof(SoundSubmix_SetOutputVolumeModulation) == 0x000058, "Wrong size on SoundSubmix_SetOutputVolumeModulation"); \ +static_assert(offsetof(SoundSubmix_SetOutputVolumeModulation, InVolMod) == 0x000000, "Member 'SoundSubmix_SetOutputVolumeModulation::InVolMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetSubmixDryLevel \ +static_assert(alignof(SoundSubmix_SetSubmixDryLevel) == 0x000008, "Wrong alignment on SoundSubmix_SetSubmixDryLevel"); \ +static_assert(sizeof(SoundSubmix_SetSubmixDryLevel) == 0x000010, "Wrong size on SoundSubmix_SetSubmixDryLevel"); \ +static_assert(offsetof(SoundSubmix_SetSubmixDryLevel, WorldContextObject) == 0x000000, "Member 'SoundSubmix_SetSubmixDryLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_SetSubmixDryLevel, InDryLevel) == 0x000008, "Member 'SoundSubmix_SetSubmixDryLevel::InDryLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetSubmixOutputVolume \ +static_assert(alignof(SoundSubmix_SetSubmixOutputVolume) == 0x000008, "Wrong alignment on SoundSubmix_SetSubmixOutputVolume"); \ +static_assert(sizeof(SoundSubmix_SetSubmixOutputVolume) == 0x000010, "Wrong size on SoundSubmix_SetSubmixOutputVolume"); \ +static_assert(offsetof(SoundSubmix_SetSubmixOutputVolume, WorldContextObject) == 0x000000, "Member 'SoundSubmix_SetSubmixOutputVolume::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_SetSubmixOutputVolume, InOutputVolume) == 0x000008, "Member 'SoundSubmix_SetSubmixOutputVolume::InOutputVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetSubmixWetLevel \ +static_assert(alignof(SoundSubmix_SetSubmixWetLevel) == 0x000008, "Wrong alignment on SoundSubmix_SetSubmixWetLevel"); \ +static_assert(sizeof(SoundSubmix_SetSubmixWetLevel) == 0x000010, "Wrong size on SoundSubmix_SetSubmixWetLevel"); \ +static_assert(offsetof(SoundSubmix_SetSubmixWetLevel, WorldContextObject) == 0x000000, "Member 'SoundSubmix_SetSubmixWetLevel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_SetSubmixWetLevel, InWetLevel) == 0x000008, "Member 'SoundSubmix_SetSubmixWetLevel::InWetLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_SetWetVolumeModulation \ +static_assert(alignof(SoundSubmix_SetWetVolumeModulation) == 0x000008, "Wrong alignment on SoundSubmix_SetWetVolumeModulation"); \ +static_assert(sizeof(SoundSubmix_SetWetVolumeModulation) == 0x000058, "Wrong size on SoundSubmix_SetWetVolumeModulation"); \ +static_assert(offsetof(SoundSubmix_SetWetVolumeModulation, InVolMod) == 0x000000, "Member 'SoundSubmix_SetWetVolumeModulation::InVolMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StartEnvelopeFollowing \ +static_assert(alignof(SoundSubmix_StartEnvelopeFollowing) == 0x000008, "Wrong alignment on SoundSubmix_StartEnvelopeFollowing"); \ +static_assert(sizeof(SoundSubmix_StartEnvelopeFollowing) == 0x000008, "Wrong size on SoundSubmix_StartEnvelopeFollowing"); \ +static_assert(offsetof(SoundSubmix_StartEnvelopeFollowing, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StartEnvelopeFollowing::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StartRecordingOutput \ +static_assert(alignof(SoundSubmix_StartRecordingOutput) == 0x000008, "Wrong alignment on SoundSubmix_StartRecordingOutput"); \ +static_assert(sizeof(SoundSubmix_StartRecordingOutput) == 0x000010, "Wrong size on SoundSubmix_StartRecordingOutput"); \ +static_assert(offsetof(SoundSubmix_StartRecordingOutput, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StartRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartRecordingOutput, ExpectedDuration) == 0x000008, "Member 'SoundSubmix_StartRecordingOutput::ExpectedDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StartSpectralAnalysis \ +static_assert(alignof(SoundSubmix_StartSpectralAnalysis) == 0x000008, "Wrong alignment on SoundSubmix_StartSpectralAnalysis"); \ +static_assert(sizeof(SoundSubmix_StartSpectralAnalysis) == 0x000018, "Wrong size on SoundSubmix_StartSpectralAnalysis"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StartSpectralAnalysis::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, FFTSize) == 0x000008, "Member 'SoundSubmix_StartSpectralAnalysis::FFTSize' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, InterpolationMethod) == 0x000009, "Member 'SoundSubmix_StartSpectralAnalysis::InterpolationMethod' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, WindowType) == 0x00000A, "Member 'SoundSubmix_StartSpectralAnalysis::WindowType' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, HopSize) == 0x00000C, "Member 'SoundSubmix_StartSpectralAnalysis::HopSize' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StartSpectralAnalysis, SpectrumType) == 0x000010, "Member 'SoundSubmix_StartSpectralAnalysis::SpectrumType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StopEnvelopeFollowing \ +static_assert(alignof(SoundSubmix_StopEnvelopeFollowing) == 0x000008, "Wrong alignment on SoundSubmix_StopEnvelopeFollowing"); \ +static_assert(sizeof(SoundSubmix_StopEnvelopeFollowing) == 0x000008, "Wrong size on SoundSubmix_StopEnvelopeFollowing"); \ +static_assert(offsetof(SoundSubmix_StopEnvelopeFollowing, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StopEnvelopeFollowing::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StopRecordingOutput \ +static_assert(alignof(SoundSubmix_StopRecordingOutput) == 0x000008, "Wrong alignment on SoundSubmix_StopRecordingOutput"); \ +static_assert(sizeof(SoundSubmix_StopRecordingOutput) == 0x000038, "Wrong size on SoundSubmix_StopRecordingOutput"); \ +static_assert(offsetof(SoundSubmix_StopRecordingOutput, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StopRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StopRecordingOutput, ExportType) == 0x000008, "Member 'SoundSubmix_StopRecordingOutput::ExportType' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StopRecordingOutput, Name_0) == 0x000010, "Member 'SoundSubmix_StopRecordingOutput::Name_0' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StopRecordingOutput, Path) == 0x000020, "Member 'SoundSubmix_StopRecordingOutput::Path' has a wrong offset!"); \ +static_assert(offsetof(SoundSubmix_StopRecordingOutput, ExistingSoundWaveToOverwrite) == 0x000030, "Member 'SoundSubmix_StopRecordingOutput::ExistingSoundWaveToOverwrite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SoundSubmix_StopSpectralAnalysis \ +static_assert(alignof(SoundSubmix_StopSpectralAnalysis) == 0x000008, "Wrong alignment on SoundSubmix_StopSpectralAnalysis"); \ +static_assert(sizeof(SoundSubmix_StopSpectralAnalysis) == 0x000008, "Wrong size on SoundSubmix_StopSpectralAnalysis"); \ +static_assert(offsetof(SoundSubmix_StopSpectralAnalysis, WorldContextObject) == 0x000000, "Member 'SoundSubmix_StopSpectralAnalysis::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USoundSubmix \ +static_assert(alignof(USoundSubmix) == 0x000008, "Wrong alignment on USoundSubmix"); \ +static_assert(sizeof(USoundSubmix) == 0x0001B0, "Wrong size on USoundSubmix"); \ +static_assert(offsetof(USoundSubmix, SubmixEffectChain) == 0x000050, "Member 'USoundSubmix::SubmixEffectChain' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, AmbisonicsPluginSettings) == 0x000060, "Member 'USoundSubmix::AmbisonicsPluginSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, EnvelopeFollowerAttackTime) == 0x000068, "Member 'USoundSubmix::EnvelopeFollowerAttackTime' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, EnvelopeFollowerReleaseTime) == 0x00006C, "Member 'USoundSubmix::EnvelopeFollowerReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, OutputVolume) == 0x000070, "Member 'USoundSubmix::OutputVolume' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, WetLevel) == 0x000074, "Member 'USoundSubmix::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, DryLevel) == 0x000078, "Member 'USoundSubmix::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, OutputVolumeModulation) == 0x000080, "Member 'USoundSubmix::OutputVolumeModulation' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, WetLevelModulation) == 0x0000D8, "Member 'USoundSubmix::WetLevelModulation' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, DryLevelModulation) == 0x000130, "Member 'USoundSubmix::DryLevelModulation' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, AudioLinkSettings) == 0x000190, "Member 'USoundSubmix::AudioLinkSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundSubmix, OnSubmixRecordedFileDone) == 0x000198, "Member 'USoundSubmix::OnSubmixRecordedFileDone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEndpointSubmix \ +static_assert(alignof(UEndpointSubmix) == 0x000008, "Wrong alignment on UEndpointSubmix"); \ +static_assert(sizeof(UEndpointSubmix) == 0x000058, "Wrong size on UEndpointSubmix"); \ +static_assert(offsetof(UEndpointSubmix, EndpointType) == 0x000040, "Member 'UEndpointSubmix::EndpointType' has a wrong offset!"); \ +static_assert(offsetof(UEndpointSubmix, EndpointSettingsClass) == 0x000048, "Member 'UEndpointSubmix::EndpointSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(UEndpointSubmix, EndpointSettings) == 0x000050, "Member 'UEndpointSubmix::EndpointSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionEditorHash \ +static_assert(alignof(UWorldPartitionEditorHash) == 0x000008, "Wrong alignment on UWorldPartitionEditorHash"); \ +static_assert(sizeof(UWorldPartitionEditorHash) == 0x000028, "Wrong size on UWorldPartitionEditorHash"); \ + +#define DUMPER7_ASSERTS_USoundfieldEndpointSubmix \ +static_assert(alignof(USoundfieldEndpointSubmix) == 0x000008, "Wrong alignment on USoundfieldEndpointSubmix"); \ +static_assert(sizeof(USoundfieldEndpointSubmix) == 0x000078, "Wrong size on USoundfieldEndpointSubmix"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, SoundfieldEndpointType) == 0x000040, "Member 'USoundfieldEndpointSubmix::SoundfieldEndpointType' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, EndpointSettingsClass) == 0x000048, "Member 'USoundfieldEndpointSubmix::EndpointSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, EndpointSettings) == 0x000050, "Member 'USoundfieldEndpointSubmix::EndpointSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, EncodingSettingsClass) == 0x000058, "Member 'USoundfieldEndpointSubmix::EncodingSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, EncodingSettings) == 0x000060, "Member 'USoundfieldEndpointSubmix::EncodingSettings' has a wrong offset!"); \ +static_assert(offsetof(USoundfieldEndpointSubmix, SoundfieldEffectChain) == 0x000068, "Member 'USoundfieldEndpointSubmix::SoundfieldEffectChain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASpectatorPawn \ +static_assert(alignof(ASpectatorPawn) == 0x000008, "Wrong alignment on ASpectatorPawn"); \ +static_assert(sizeof(ASpectatorPawn) == 0x000348, "Wrong size on ASpectatorPawn"); \ + +#define DUMPER7_ASSERTS_ASplineMeshActor \ +static_assert(alignof(ASplineMeshActor) == 0x000008, "Wrong alignment on ASplineMeshActor"); \ +static_assert(sizeof(ASplineMeshActor) == 0x0002A0, "Wrong size on ASplineMeshActor"); \ +static_assert(offsetof(ASplineMeshActor, SplineMeshComponent) == 0x000298, "Member 'ASplineMeshActor::SplineMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_CreateStaticMeshDescription \ +static_assert(alignof(StaticMesh_CreateStaticMeshDescription) == 0x000008, "Wrong alignment on StaticMesh_CreateStaticMeshDescription"); \ +static_assert(sizeof(StaticMesh_CreateStaticMeshDescription) == 0x000010, "Wrong size on StaticMesh_CreateStaticMeshDescription"); \ +static_assert(offsetof(StaticMesh_CreateStaticMeshDescription, Outer_0) == 0x000000, "Member 'StaticMesh_CreateStaticMeshDescription::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_CreateStaticMeshDescription, ReturnValue) == 0x000008, "Member 'StaticMesh_CreateStaticMeshDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_AddMaterial \ +static_assert(alignof(StaticMesh_AddMaterial) == 0x000008, "Wrong alignment on StaticMesh_AddMaterial"); \ +static_assert(sizeof(StaticMesh_AddMaterial) == 0x000010, "Wrong size on StaticMesh_AddMaterial"); \ +static_assert(offsetof(StaticMesh_AddMaterial, Material) == 0x000000, "Member 'StaticMesh_AddMaterial::Material' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_AddMaterial, ReturnValue) == 0x000008, "Member 'StaticMesh_AddMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_AddSocket \ +static_assert(alignof(StaticMesh_AddSocket) == 0x000008, "Wrong alignment on StaticMesh_AddSocket"); \ +static_assert(sizeof(StaticMesh_AddSocket) == 0x000008, "Wrong size on StaticMesh_AddSocket"); \ +static_assert(offsetof(StaticMesh_AddSocket, Socket) == 0x000000, "Member 'StaticMesh_AddSocket::Socket' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_BuildFromStaticMeshDescriptions \ +static_assert(alignof(StaticMesh_BuildFromStaticMeshDescriptions) == 0x000008, "Wrong alignment on StaticMesh_BuildFromStaticMeshDescriptions"); \ +static_assert(sizeof(StaticMesh_BuildFromStaticMeshDescriptions) == 0x000018, "Wrong size on StaticMesh_BuildFromStaticMeshDescriptions"); \ +static_assert(offsetof(StaticMesh_BuildFromStaticMeshDescriptions, StaticMeshDescriptions) == 0x000000, "Member 'StaticMesh_BuildFromStaticMeshDescriptions::StaticMeshDescriptions' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_BuildFromStaticMeshDescriptions, bBuildSimpleCollision) == 0x000010, "Member 'StaticMesh_BuildFromStaticMeshDescriptions::bBuildSimpleCollision' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_BuildFromStaticMeshDescriptions, bFastBuild) == 0x000011, "Member 'StaticMesh_BuildFromStaticMeshDescriptions::bFastBuild' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetStaticMeshDescription \ +static_assert(alignof(StaticMesh_GetStaticMeshDescription) == 0x000008, "Wrong alignment on StaticMesh_GetStaticMeshDescription"); \ +static_assert(sizeof(StaticMesh_GetStaticMeshDescription) == 0x000010, "Wrong size on StaticMesh_GetStaticMeshDescription"); \ +static_assert(offsetof(StaticMesh_GetStaticMeshDescription, LODIndex) == 0x000000, "Member 'StaticMesh_GetStaticMeshDescription::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetStaticMeshDescription, ReturnValue) == 0x000008, "Member 'StaticMesh_GetStaticMeshDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_RemoveSocket \ +static_assert(alignof(StaticMesh_RemoveSocket) == 0x000008, "Wrong alignment on StaticMesh_RemoveSocket"); \ +static_assert(sizeof(StaticMesh_RemoveSocket) == 0x000008, "Wrong size on StaticMesh_RemoveSocket"); \ +static_assert(offsetof(StaticMesh_RemoveSocket, Socket) == 0x000000, "Member 'StaticMesh_RemoveSocket::Socket' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_SetMinimumLODForPlatform \ +static_assert(alignof(StaticMesh_SetMinimumLODForPlatform) == 0x000004, "Wrong alignment on StaticMesh_SetMinimumLODForPlatform"); \ +static_assert(sizeof(StaticMesh_SetMinimumLODForPlatform) == 0x00000C, "Wrong size on StaticMesh_SetMinimumLODForPlatform"); \ +static_assert(offsetof(StaticMesh_SetMinimumLODForPlatform, PlatformName) == 0x000000, "Member 'StaticMesh_SetMinimumLODForPlatform::PlatformName' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_SetMinimumLODForPlatform, InMinLOD) == 0x000008, "Member 'StaticMesh_SetMinimumLODForPlatform::InMinLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_SetMinimumLODForPlatforms \ +static_assert(alignof(StaticMesh_SetMinimumLODForPlatforms) == 0x000008, "Wrong alignment on StaticMesh_SetMinimumLODForPlatforms"); \ +static_assert(sizeof(StaticMesh_SetMinimumLODForPlatforms) == 0x000050, "Wrong size on StaticMesh_SetMinimumLODForPlatforms"); \ +static_assert(offsetof(StaticMesh_SetMinimumLODForPlatforms, PlatformMinimumLODs) == 0x000000, "Member 'StaticMesh_SetMinimumLODForPlatforms::PlatformMinimumLODs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_SetMinLODForQualityLevels \ +static_assert(alignof(StaticMesh_SetMinLODForQualityLevels) == 0x000008, "Wrong alignment on StaticMesh_SetMinLODForQualityLevels"); \ +static_assert(sizeof(StaticMesh_SetMinLODForQualityLevels) == 0x000058, "Wrong size on StaticMesh_SetMinLODForQualityLevels"); \ +static_assert(offsetof(StaticMesh_SetMinLODForQualityLevels, QualityLevelMinimumLODs) == 0x000000, "Member 'StaticMesh_SetMinLODForQualityLevels::QualityLevelMinimumLODs' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_SetMinLODForQualityLevels, Default) == 0x000050, "Member 'StaticMesh_SetMinLODForQualityLevels::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_SetStaticMaterials \ +static_assert(alignof(StaticMesh_SetStaticMaterials) == 0x000008, "Wrong alignment on StaticMesh_SetStaticMaterials"); \ +static_assert(sizeof(StaticMesh_SetStaticMaterials) == 0x000010, "Wrong size on StaticMesh_SetStaticMaterials"); \ +static_assert(offsetof(StaticMesh_SetStaticMaterials, InStaticMaterials) == 0x000000, "Member 'StaticMesh_SetStaticMaterials::InStaticMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_FindSocket \ +static_assert(alignof(StaticMesh_FindSocket) == 0x000008, "Wrong alignment on StaticMesh_FindSocket"); \ +static_assert(sizeof(StaticMesh_FindSocket) == 0x000010, "Wrong size on StaticMesh_FindSocket"); \ +static_assert(offsetof(StaticMesh_FindSocket, InSocketName) == 0x000000, "Member 'StaticMesh_FindSocket::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_FindSocket, ReturnValue) == 0x000008, "Member 'StaticMesh_FindSocket::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetBoundingBox \ +static_assert(alignof(StaticMesh_GetBoundingBox) == 0x000008, "Wrong alignment on StaticMesh_GetBoundingBox"); \ +static_assert(sizeof(StaticMesh_GetBoundingBox) == 0x000038, "Wrong size on StaticMesh_GetBoundingBox"); \ +static_assert(offsetof(StaticMesh_GetBoundingBox, ReturnValue) == 0x000000, "Member 'StaticMesh_GetBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetBounds \ +static_assert(alignof(StaticMesh_GetBounds) == 0x000008, "Wrong alignment on StaticMesh_GetBounds"); \ +static_assert(sizeof(StaticMesh_GetBounds) == 0x000038, "Wrong size on StaticMesh_GetBounds"); \ +static_assert(offsetof(StaticMesh_GetBounds, ReturnValue) == 0x000000, "Member 'StaticMesh_GetBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMaterial \ +static_assert(alignof(StaticMesh_GetMaterial) == 0x000008, "Wrong alignment on StaticMesh_GetMaterial"); \ +static_assert(sizeof(StaticMesh_GetMaterial) == 0x000010, "Wrong size on StaticMesh_GetMaterial"); \ +static_assert(offsetof(StaticMesh_GetMaterial, MaterialIndex) == 0x000000, "Member 'StaticMesh_GetMaterial::MaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetMaterial, ReturnValue) == 0x000008, "Member 'StaticMesh_GetMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMaterialIndex \ +static_assert(alignof(StaticMesh_GetMaterialIndex) == 0x000004, "Wrong alignment on StaticMesh_GetMaterialIndex"); \ +static_assert(sizeof(StaticMesh_GetMaterialIndex) == 0x00000C, "Wrong size on StaticMesh_GetMaterialIndex"); \ +static_assert(offsetof(StaticMesh_GetMaterialIndex, MaterialSlotName) == 0x000000, "Member 'StaticMesh_GetMaterialIndex::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetMaterialIndex, ReturnValue) == 0x000008, "Member 'StaticMesh_GetMaterialIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMinimumLODForPlatform \ +static_assert(alignof(StaticMesh_GetMinimumLODForPlatform) == 0x000004, "Wrong alignment on StaticMesh_GetMinimumLODForPlatform"); \ +static_assert(sizeof(StaticMesh_GetMinimumLODForPlatform) == 0x00000C, "Wrong size on StaticMesh_GetMinimumLODForPlatform"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForPlatform, PlatformName) == 0x000000, "Member 'StaticMesh_GetMinimumLODForPlatform::PlatformName' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForPlatform, ReturnValue) == 0x000008, "Member 'StaticMesh_GetMinimumLODForPlatform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMinimumLODForPlatforms \ +static_assert(alignof(StaticMesh_GetMinimumLODForPlatforms) == 0x000008, "Wrong alignment on StaticMesh_GetMinimumLODForPlatforms"); \ +static_assert(sizeof(StaticMesh_GetMinimumLODForPlatforms) == 0x000050, "Wrong size on StaticMesh_GetMinimumLODForPlatforms"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForPlatforms, PlatformMinimumLODs) == 0x000000, "Member 'StaticMesh_GetMinimumLODForPlatforms::PlatformMinimumLODs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMinimumLODForQualityLevel \ +static_assert(alignof(StaticMesh_GetMinimumLODForQualityLevel) == 0x000004, "Wrong alignment on StaticMesh_GetMinimumLODForQualityLevel"); \ +static_assert(sizeof(StaticMesh_GetMinimumLODForQualityLevel) == 0x00000C, "Wrong size on StaticMesh_GetMinimumLODForQualityLevel"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForQualityLevel, QualityLevel) == 0x000000, "Member 'StaticMesh_GetMinimumLODForQualityLevel::QualityLevel' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForQualityLevel, ReturnValue) == 0x000008, "Member 'StaticMesh_GetMinimumLODForQualityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMinimumLODForQualityLevels \ +static_assert(alignof(StaticMesh_GetMinimumLODForQualityLevels) == 0x000008, "Wrong alignment on StaticMesh_GetMinimumLODForQualityLevels"); \ +static_assert(sizeof(StaticMesh_GetMinimumLODForQualityLevels) == 0x000050, "Wrong size on StaticMesh_GetMinimumLODForQualityLevels"); \ +static_assert(offsetof(StaticMesh_GetMinimumLODForQualityLevels, QualityLevelMinimumLODs) == 0x000000, "Member 'StaticMesh_GetMinimumLODForQualityLevels::QualityLevelMinimumLODs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetMinLODForQualityLevels \ +static_assert(alignof(StaticMesh_GetMinLODForQualityLevels) == 0x000008, "Wrong alignment on StaticMesh_GetMinLODForQualityLevels"); \ +static_assert(sizeof(StaticMesh_GetMinLODForQualityLevels) == 0x000058, "Wrong size on StaticMesh_GetMinLODForQualityLevels"); \ +static_assert(offsetof(StaticMesh_GetMinLODForQualityLevels, QualityLevelMinimumLODs) == 0x000000, "Member 'StaticMesh_GetMinLODForQualityLevels::QualityLevelMinimumLODs' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetMinLODForQualityLevels, Default) == 0x000050, "Member 'StaticMesh_GetMinLODForQualityLevels::Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetNumLODs \ +static_assert(alignof(StaticMesh_GetNumLODs) == 0x000004, "Wrong alignment on StaticMesh_GetNumLODs"); \ +static_assert(sizeof(StaticMesh_GetNumLODs) == 0x000004, "Wrong size on StaticMesh_GetNumLODs"); \ +static_assert(offsetof(StaticMesh_GetNumLODs, ReturnValue) == 0x000000, "Member 'StaticMesh_GetNumLODs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetNumSections \ +static_assert(alignof(StaticMesh_GetNumSections) == 0x000004, "Wrong alignment on StaticMesh_GetNumSections"); \ +static_assert(sizeof(StaticMesh_GetNumSections) == 0x000008, "Wrong size on StaticMesh_GetNumSections"); \ +static_assert(offsetof(StaticMesh_GetNumSections, InLOD) == 0x000000, "Member 'StaticMesh_GetNumSections::InLOD' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetNumSections, ReturnValue) == 0x000004, "Member 'StaticMesh_GetNumSections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetNumTriangles \ +static_assert(alignof(StaticMesh_GetNumTriangles) == 0x000004, "Wrong alignment on StaticMesh_GetNumTriangles"); \ +static_assert(sizeof(StaticMesh_GetNumTriangles) == 0x000008, "Wrong size on StaticMesh_GetNumTriangles"); \ +static_assert(offsetof(StaticMesh_GetNumTriangles, LODIndex) == 0x000000, "Member 'StaticMesh_GetNumTriangles::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetNumTriangles, ReturnValue) == 0x000004, "Member 'StaticMesh_GetNumTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetSocketsByTag \ +static_assert(alignof(StaticMesh_GetSocketsByTag) == 0x000008, "Wrong alignment on StaticMesh_GetSocketsByTag"); \ +static_assert(sizeof(StaticMesh_GetSocketsByTag) == 0x000020, "Wrong size on StaticMesh_GetSocketsByTag"); \ +static_assert(offsetof(StaticMesh_GetSocketsByTag, InSocketTag) == 0x000000, "Member 'StaticMesh_GetSocketsByTag::InSocketTag' has a wrong offset!"); \ +static_assert(offsetof(StaticMesh_GetSocketsByTag, ReturnValue) == 0x000010, "Member 'StaticMesh_GetSocketsByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMesh_GetStaticMaterials \ +static_assert(alignof(StaticMesh_GetStaticMaterials) == 0x000008, "Wrong alignment on StaticMesh_GetStaticMaterials"); \ +static_assert(sizeof(StaticMesh_GetStaticMaterials) == 0x000010, "Wrong size on StaticMesh_GetStaticMaterials"); \ +static_assert(offsetof(StaticMesh_GetStaticMaterials, ReturnValue) == 0x000000, "Member 'StaticMesh_GetStaticMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticMesh \ +static_assert(alignof(UStaticMesh) == 0x000008, "Wrong alignment on UStaticMesh"); \ +static_assert(sizeof(UStaticMesh) == 0x000250, "Wrong size on UStaticMesh"); \ +static_assert(offsetof(UStaticMesh, MinQualityLevelLOD) == 0x0000E8, "Member 'UStaticMesh::MinQualityLevelLOD' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, MinLOD) == 0x000150, "Member 'UStaticMesh::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, StaticMaterials) == 0x000158, "Member 'UStaticMesh::StaticMaterials' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, LightmapUVDensity) == 0x000168, "Member 'UStaticMesh::LightmapUVDensity' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, LightMapResolution) == 0x00016C, "Member 'UStaticMesh::LightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, LightMapCoordinateIndex) == 0x000170, "Member 'UStaticMesh::LightMapCoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, DistanceFieldSelfShadowBias) == 0x000174, "Member 'UStaticMesh::DistanceFieldSelfShadowBias' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, BodySetup) == 0x000178, "Member 'UStaticMesh::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, LODForCollision) == 0x000180, "Member 'UStaticMesh::LODForCollision' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, Sockets) == 0x0001A8, "Member 'UStaticMesh::Sockets' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, PositiveBoundsExtension) == 0x0001C8, "Member 'UStaticMesh::PositiveBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, NegativeBoundsExtension) == 0x0001E0, "Member 'UStaticMesh::NegativeBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, ExtendedBounds) == 0x0001F8, "Member 'UStaticMesh::ExtendedBounds' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, ElementToIgnoreForTexFactor) == 0x000230, "Member 'UStaticMesh::ElementToIgnoreForTexFactor' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, AssetUserData) == 0x000238, "Member 'UStaticMesh::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(UStaticMesh, NavCollision) == 0x000248, "Member 'UStaticMesh::NavCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticMeshDescriptionBulkData \ +static_assert(alignof(UStaticMeshDescriptionBulkData) == 0x000008, "Wrong alignment on UStaticMeshDescriptionBulkData"); \ +static_assert(sizeof(UStaticMeshDescriptionBulkData) == 0x000028, "Wrong size on UStaticMeshDescriptionBulkData"); \ + +#define DUMPER7_ASSERTS_UActorTextureStreamingBuildDataComponent \ +static_assert(alignof(UActorTextureStreamingBuildDataComponent) == 0x000008, "Wrong alignment on UActorTextureStreamingBuildDataComponent"); \ +static_assert(sizeof(UActorTextureStreamingBuildDataComponent) == 0x0000A0, "Wrong size on UActorTextureStreamingBuildDataComponent"); \ + +#define DUMPER7_ASSERTS_AServerStreamingLevelsVisibility \ +static_assert(alignof(AServerStreamingLevelsVisibility) == 0x000008, "Wrong alignment on AServerStreamingLevelsVisibility"); \ +static_assert(sizeof(AServerStreamingLevelsVisibility) == 0x0002E8, "Wrong size on AServerStreamingLevelsVisibility"); \ + +#define DUMPER7_ASSERTS_UAudioSubsystemCollectionRoot \ +static_assert(alignof(UAudioSubsystemCollectionRoot) == 0x000008, "Wrong alignment on UAudioSubsystemCollectionRoot"); \ +static_assert(sizeof(UAudioSubsystemCollectionRoot) == 0x000030, "Wrong size on UAudioSubsystemCollectionRoot"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetAudioEngineSubsystem \ +static_assert(alignof(SubsystemBlueprintLibrary_GetAudioEngineSubsystem) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetAudioEngineSubsystem"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetAudioEngineSubsystem) == 0x000018, "Wrong size on SubsystemBlueprintLibrary_GetAudioEngineSubsystem"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetAudioEngineSubsystem, ContextObject) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetAudioEngineSubsystem::ContextObject' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetAudioEngineSubsystem, Class_0) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetAudioEngineSubsystem::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetAudioEngineSubsystem, ReturnValue) == 0x000010, "Member 'SubsystemBlueprintLibrary_GetAudioEngineSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetEngineSubsystem \ +static_assert(alignof(SubsystemBlueprintLibrary_GetEngineSubsystem) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetEngineSubsystem"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetEngineSubsystem) == 0x000010, "Wrong size on SubsystemBlueprintLibrary_GetEngineSubsystem"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetEngineSubsystem, Class_0) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetEngineSubsystem::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetEngineSubsystem, ReturnValue) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetEngineSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetGameInstanceSubsystem \ +static_assert(alignof(SubsystemBlueprintLibrary_GetGameInstanceSubsystem) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetGameInstanceSubsystem"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetGameInstanceSubsystem) == 0x000018, "Wrong size on SubsystemBlueprintLibrary_GetGameInstanceSubsystem"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetGameInstanceSubsystem, ContextObject) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetGameInstanceSubsystem::ContextObject' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetGameInstanceSubsystem, Class_0) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetGameInstanceSubsystem::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetGameInstanceSubsystem, ReturnValue) == 0x000010, "Member 'SubsystemBlueprintLibrary_GetGameInstanceSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetLocalPlayerSubsystem \ +static_assert(alignof(SubsystemBlueprintLibrary_GetLocalPlayerSubsystem) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetLocalPlayerSubsystem"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetLocalPlayerSubsystem) == 0x000018, "Wrong size on SubsystemBlueprintLibrary_GetLocalPlayerSubsystem"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubsystem, ContextObject) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubsystem::ContextObject' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubsystem, Class_0) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubsystem::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubsystem, ReturnValue) == 0x000010, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController \ +static_assert(alignof(SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController) == 0x000018, "Wrong size on SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController, PlayerController) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController, Class_0) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController, ReturnValue) == 0x000010, "Member 'SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubsystemBlueprintLibrary_GetWorldSubsystem \ +static_assert(alignof(SubsystemBlueprintLibrary_GetWorldSubsystem) == 0x000008, "Wrong alignment on SubsystemBlueprintLibrary_GetWorldSubsystem"); \ +static_assert(sizeof(SubsystemBlueprintLibrary_GetWorldSubsystem) == 0x000018, "Wrong size on SubsystemBlueprintLibrary_GetWorldSubsystem"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetWorldSubsystem, ContextObject) == 0x000000, "Member 'SubsystemBlueprintLibrary_GetWorldSubsystem::ContextObject' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetWorldSubsystem, Class_0) == 0x000008, "Member 'SubsystemBlueprintLibrary_GetWorldSubsystem::Class_0' has a wrong offset!"); \ +static_assert(offsetof(SubsystemBlueprintLibrary_GetWorldSubsystem, ReturnValue) == 0x000010, "Member 'SubsystemBlueprintLibrary_GetWorldSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubsystemBlueprintLibrary \ +static_assert(alignof(USubsystemBlueprintLibrary) == 0x000008, "Wrong alignment on USubsystemBlueprintLibrary"); \ +static_assert(sizeof(USubsystemBlueprintLibrary) == 0x000028, "Wrong size on USubsystemBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_ATargetPoint \ +static_assert(alignof(ATargetPoint) == 0x000008, "Wrong alignment on ATargetPoint"); \ +static_assert(sizeof(ATargetPoint) == 0x000298, "Wrong size on ATargetPoint"); \ + +#define DUMPER7_ASSERTS_UAutomationTestSettings \ +static_assert(alignof(UAutomationTestSettings) == 0x000008, "Wrong alignment on UAutomationTestSettings"); \ +static_assert(sizeof(UAutomationTestSettings) == 0x000358, "Wrong size on UAutomationTestSettings"); \ +static_assert(offsetof(UAutomationTestSettings, EngineTestModules) == 0x000028, "Member 'UAutomationTestSettings::EngineTestModules' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, EditorTestModules) == 0x000038, "Member 'UAutomationTestSettings::EditorTestModules' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, AutomationTestmap) == 0x000048, "Member 'UAutomationTestSettings::AutomationTestmap' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, EditorPerformanceTestMaps) == 0x000068, "Member 'UAutomationTestSettings::EditorPerformanceTestMaps' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, AssetsToOpen) == 0x000078, "Member 'UAutomationTestSettings::AssetsToOpen' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, MapsToPIETest) == 0x000088, "Member 'UAutomationTestSettings::MapsToPIETest' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, bUseAllProjectMapsToPlayInPIE) == 0x000098, "Member 'UAutomationTestSettings::bUseAllProjectMapsToPlayInPIE' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, BuildPromotionTest) == 0x0000A0, "Member 'UAutomationTestSettings::BuildPromotionTest' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, MaterialEditorPromotionTest) == 0x000290, "Member 'UAutomationTestSettings::MaterialEditorPromotionTest' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, ParticleEditorPromotionTest) == 0x0002C0, "Member 'UAutomationTestSettings::ParticleEditorPromotionTest' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, BlueprintEditorPromotionTest) == 0x0002D0, "Member 'UAutomationTestSettings::BlueprintEditorPromotionTest' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, TestLevelFolders) == 0x000300, "Member 'UAutomationTestSettings::TestLevelFolders' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, ExternalTools) == 0x000310, "Member 'UAutomationTestSettings::ExternalTools' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, ImportExportTestDefinitions) == 0x000320, "Member 'UAutomationTestSettings::ImportExportTestDefinitions' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, LaunchOnSettings) == 0x000330, "Member 'UAutomationTestSettings::LaunchOnSettings' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, DefaultScreenshotResolution) == 0x000340, "Member 'UAutomationTestSettings::DefaultScreenshotResolution' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, PIETestDuration) == 0x000348, "Member 'UAutomationTestSettings::PIETestDuration' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, DefaultInteractiveFramerate) == 0x00034C, "Member 'UAutomationTestSettings::DefaultInteractiveFramerate' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, DefaultInteractiveFramerateWaitTime) == 0x000350, "Member 'UAutomationTestSettings::DefaultInteractiveFramerateWaitTime' has a wrong offset!"); \ +static_assert(offsetof(UAutomationTestSettings, DefaultInteractiveFramerateDuration) == 0x000354, "Member 'UAutomationTestSettings::DefaultInteractiveFramerateDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTexture2DDynamic \ +static_assert(alignof(UTexture2DDynamic) == 0x000010, "Wrong alignment on UTexture2DDynamic"); \ +static_assert(sizeof(UTexture2DDynamic) == 0x0001E0, "Wrong size on UTexture2DDynamic"); \ +static_assert(offsetof(UTexture2DDynamic, Format) == 0x0001D0, "Member 'UTexture2DDynamic::Format' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureCube \ +static_assert(alignof(UTextureCube) == 0x000010, "Wrong alignment on UTextureCube"); \ +static_assert(sizeof(UTextureCube) == 0x000260, "Wrong size on UTextureCube"); \ + +#define DUMPER7_ASSERTS_UTextureCubeArray \ +static_assert(alignof(UTextureCubeArray) == 0x000010, "Wrong alignment on UTextureCubeArray"); \ +static_assert(sizeof(UTextureCubeArray) == 0x000260, "Wrong size on UTextureCubeArray"); \ + +#define DUMPER7_ASSERTS_UTextureRenderTarget2DArray \ +static_assert(alignof(UTextureRenderTarget2DArray) == 0x000010, "Wrong alignment on UTextureRenderTarget2DArray"); \ +static_assert(sizeof(UTextureRenderTarget2DArray) == 0x0001F0, "Wrong size on UTextureRenderTarget2DArray"); \ +static_assert(offsetof(UTextureRenderTarget2DArray, SizeX) == 0x0001D0, "Member 'UTextureRenderTarget2DArray::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2DArray, SizeY) == 0x0001D4, "Member 'UTextureRenderTarget2DArray::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2DArray, Slices) == 0x0001D8, "Member 'UTextureRenderTarget2DArray::Slices' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2DArray, ClearColor) == 0x0001DC, "Member 'UTextureRenderTarget2DArray::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTarget2DArray, OverrideFormat) == 0x0001EC, "Member 'UTextureRenderTarget2DArray::OverrideFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureRenderTargetCube \ +static_assert(alignof(UTextureRenderTargetCube) == 0x000010, "Wrong alignment on UTextureRenderTargetCube"); \ +static_assert(sizeof(UTextureRenderTargetCube) == 0x0001F0, "Wrong size on UTextureRenderTargetCube"); \ +static_assert(offsetof(UTextureRenderTargetCube, SizeX) == 0x0001D0, "Member 'UTextureRenderTargetCube::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetCube, ClearColor) == 0x0001D4, "Member 'UTextureRenderTargetCube::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetCube, OverrideFormat) == 0x0001E4, "Member 'UTextureRenderTargetCube::OverrideFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureRenderTargetVolume \ +static_assert(alignof(UTextureRenderTargetVolume) == 0x000010, "Wrong alignment on UTextureRenderTargetVolume"); \ +static_assert(sizeof(UTextureRenderTargetVolume) == 0x0001F0, "Wrong size on UTextureRenderTargetVolume"); \ +static_assert(offsetof(UTextureRenderTargetVolume, SizeX) == 0x0001D0, "Member 'UTextureRenderTargetVolume::SizeX' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetVolume, SizeY) == 0x0001D4, "Member 'UTextureRenderTargetVolume::SizeY' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetVolume, SizeZ) == 0x0001D8, "Member 'UTextureRenderTargetVolume::SizeZ' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetVolume, ClearColor) == 0x0001DC, "Member 'UTextureRenderTargetVolume::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(UTextureRenderTargetVolume, OverrideFormat) == 0x0001EC, "Member 'UTextureRenderTargetVolume::OverrideFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATriggerVolume \ +static_assert(alignof(ATriggerVolume) == 0x000008, "Wrong alignment on ATriggerVolume"); \ +static_assert(sizeof(ATriggerVolume) == 0x0002D0, "Wrong size on ATriggerVolume"); \ + +#define DUMPER7_ASSERTS_AWorldPartitionReplay \ +static_assert(alignof(AWorldPartitionReplay) == 0x000008, "Wrong alignment on AWorldPartitionReplay"); \ +static_assert(sizeof(AWorldPartitionReplay) == 0x0002B8, "Wrong size on AWorldPartitionReplay"); \ +static_assert(offsetof(AWorldPartitionReplay, StreamingSourceNames) == 0x000298, "Member 'AWorldPartitionReplay::StreamingSourceNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserDefinedEnum \ +static_assert(alignof(UUserDefinedEnum) == 0x000008, "Wrong alignment on UUserDefinedEnum"); \ +static_assert(sizeof(UUserDefinedEnum) == 0x0000B8, "Wrong size on UUserDefinedEnum"); \ +static_assert(offsetof(UUserDefinedEnum, DisplayNameMap) == 0x000068, "Member 'UUserDefinedEnum::DisplayNameMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserInterfaceSettings \ +static_assert(alignof(UUserInterfaceSettings) == 0x000008, "Wrong alignment on UUserInterfaceSettings"); \ +static_assert(sizeof(UUserInterfaceSettings) == 0x0002B0, "Wrong size on UUserInterfaceSettings"); \ +static_assert(offsetof(UUserInterfaceSettings, RenderFocusRule) == 0x000038, "Member 'UUserInterfaceSettings::RenderFocusRule' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, HardwareCursors) == 0x000040, "Member 'UUserInterfaceSettings::HardwareCursors' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, SoftwareCursors) == 0x000090, "Member 'UUserInterfaceSettings::SoftwareCursors' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, DefaultCursor) == 0x0000E0, "Member 'UUserInterfaceSettings::DefaultCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, TextEditBeamCursor) == 0x000100, "Member 'UUserInterfaceSettings::TextEditBeamCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, CrosshairsCursor) == 0x000120, "Member 'UUserInterfaceSettings::CrosshairsCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, HandCursor) == 0x000140, "Member 'UUserInterfaceSettings::HandCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, GrabHandCursor) == 0x000160, "Member 'UUserInterfaceSettings::GrabHandCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, GrabHandClosedCursor) == 0x000180, "Member 'UUserInterfaceSettings::GrabHandClosedCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, SlashedCircleCursor) == 0x0001A0, "Member 'UUserInterfaceSettings::SlashedCircleCursor' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, ApplicationScale) == 0x0001C0, "Member 'UUserInterfaceSettings::ApplicationScale' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, UIScaleRule) == 0x0001C4, "Member 'UUserInterfaceSettings::UIScaleRule' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, CustomScalingRuleClass) == 0x0001C8, "Member 'UUserInterfaceSettings::CustomScalingRuleClass' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, UIScaleCurve) == 0x0001E8, "Member 'UUserInterfaceSettings::UIScaleCurve' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, bAllowHighDPIInGameMode) == 0x000270, "Member 'UUserInterfaceSettings::bAllowHighDPIInGameMode' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, DesignScreenSize) == 0x000274, "Member 'UUserInterfaceSettings::DesignScreenSize' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, bLoadWidgetsOnDedicatedServer) == 0x00027C, "Member 'UUserInterfaceSettings::bLoadWidgetsOnDedicatedServer' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, bAuthorizeAutomaticWidgetVariableCreation) == 0x00027D, "Member 'UUserInterfaceSettings::bAuthorizeAutomaticWidgetVariableCreation' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, CursorClasses) == 0x000280, "Member 'UUserInterfaceSettings::CursorClasses' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, CustomScalingRuleClassInstance) == 0x000290, "Member 'UUserInterfaceSettings::CustomScalingRuleClassInstance' has a wrong offset!"); \ +static_assert(offsetof(UUserInterfaceSettings, CustomScalingRule) == 0x000298, "Member 'UUserInterfaceSettings::CustomScalingRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConsole \ +static_assert(alignof(UConsole) == 0x000008, "Wrong alignment on UConsole"); \ +static_assert(sizeof(UConsole) == 0x000130, "Wrong size on UConsole"); \ +static_assert(offsetof(UConsole, ConsoleTargetPlayer) == 0x000038, "Member 'UConsole::ConsoleTargetPlayer' has a wrong offset!"); \ +static_assert(offsetof(UConsole, DefaultTexture_Black) == 0x000040, "Member 'UConsole::DefaultTexture_Black' has a wrong offset!"); \ +static_assert(offsetof(UConsole, DefaultTexture_White) == 0x000048, "Member 'UConsole::DefaultTexture_White' has a wrong offset!"); \ +static_assert(offsetof(UConsole, HistoryBuffer) == 0x000068, "Member 'UConsole::HistoryBuffer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_GetInputSettings \ +static_assert(alignof(InputSettings_GetInputSettings) == 0x000008, "Wrong alignment on InputSettings_GetInputSettings"); \ +static_assert(sizeof(InputSettings_GetInputSettings) == 0x000008, "Wrong size on InputSettings_GetInputSettings"); \ +static_assert(offsetof(InputSettings_GetInputSettings, ReturnValue) == 0x000000, "Member 'InputSettings_GetInputSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_AddActionMapping \ +static_assert(alignof(InputSettings_AddActionMapping) == 0x000008, "Wrong alignment on InputSettings_AddActionMapping"); \ +static_assert(sizeof(InputSettings_AddActionMapping) == 0x000030, "Wrong size on InputSettings_AddActionMapping"); \ +static_assert(offsetof(InputSettings_AddActionMapping, KeyMapping) == 0x000000, "Member 'InputSettings_AddActionMapping::KeyMapping' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_AddActionMapping, bForceRebuildKeymaps) == 0x000028, "Member 'InputSettings_AddActionMapping::bForceRebuildKeymaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_AddAxisMapping \ +static_assert(alignof(InputSettings_AddAxisMapping) == 0x000008, "Wrong alignment on InputSettings_AddAxisMapping"); \ +static_assert(sizeof(InputSettings_AddAxisMapping) == 0x000030, "Wrong size on InputSettings_AddAxisMapping"); \ +static_assert(offsetof(InputSettings_AddAxisMapping, KeyMapping) == 0x000000, "Member 'InputSettings_AddAxisMapping::KeyMapping' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_AddAxisMapping, bForceRebuildKeymaps) == 0x000028, "Member 'InputSettings_AddAxisMapping::bForceRebuildKeymaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_RemoveActionMapping \ +static_assert(alignof(InputSettings_RemoveActionMapping) == 0x000008, "Wrong alignment on InputSettings_RemoveActionMapping"); \ +static_assert(sizeof(InputSettings_RemoveActionMapping) == 0x000030, "Wrong size on InputSettings_RemoveActionMapping"); \ +static_assert(offsetof(InputSettings_RemoveActionMapping, KeyMapping) == 0x000000, "Member 'InputSettings_RemoveActionMapping::KeyMapping' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_RemoveActionMapping, bForceRebuildKeymaps) == 0x000028, "Member 'InputSettings_RemoveActionMapping::bForceRebuildKeymaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_RemoveAxisMapping \ +static_assert(alignof(InputSettings_RemoveAxisMapping) == 0x000008, "Wrong alignment on InputSettings_RemoveAxisMapping"); \ +static_assert(sizeof(InputSettings_RemoveAxisMapping) == 0x000030, "Wrong size on InputSettings_RemoveAxisMapping"); \ +static_assert(offsetof(InputSettings_RemoveAxisMapping, KeyMapping) == 0x000000, "Member 'InputSettings_RemoveAxisMapping::KeyMapping' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_RemoveAxisMapping, bForceRebuildKeymaps) == 0x000028, "Member 'InputSettings_RemoveAxisMapping::bForceRebuildKeymaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_GetActionMappingByName \ +static_assert(alignof(InputSettings_GetActionMappingByName) == 0x000008, "Wrong alignment on InputSettings_GetActionMappingByName"); \ +static_assert(sizeof(InputSettings_GetActionMappingByName) == 0x000018, "Wrong size on InputSettings_GetActionMappingByName"); \ +static_assert(offsetof(InputSettings_GetActionMappingByName, InActionName) == 0x000000, "Member 'InputSettings_GetActionMappingByName::InActionName' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_GetActionMappingByName, OutMappings) == 0x000008, "Member 'InputSettings_GetActionMappingByName::OutMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_GetActionNames \ +static_assert(alignof(InputSettings_GetActionNames) == 0x000008, "Wrong alignment on InputSettings_GetActionNames"); \ +static_assert(sizeof(InputSettings_GetActionNames) == 0x000010, "Wrong size on InputSettings_GetActionNames"); \ +static_assert(offsetof(InputSettings_GetActionNames, ActionNames) == 0x000000, "Member 'InputSettings_GetActionNames::ActionNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_GetAxisMappingByName \ +static_assert(alignof(InputSettings_GetAxisMappingByName) == 0x000008, "Wrong alignment on InputSettings_GetAxisMappingByName"); \ +static_assert(sizeof(InputSettings_GetAxisMappingByName) == 0x000018, "Wrong size on InputSettings_GetAxisMappingByName"); \ +static_assert(offsetof(InputSettings_GetAxisMappingByName, InAxisName) == 0x000000, "Member 'InputSettings_GetAxisMappingByName::InAxisName' has a wrong offset!"); \ +static_assert(offsetof(InputSettings_GetAxisMappingByName, OutMappings) == 0x000008, "Member 'InputSettings_GetAxisMappingByName::OutMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputSettings_GetAxisNames \ +static_assert(alignof(InputSettings_GetAxisNames) == 0x000008, "Wrong alignment on InputSettings_GetAxisNames"); \ +static_assert(sizeof(InputSettings_GetAxisNames) == 0x000010, "Wrong size on InputSettings_GetAxisNames"); \ +static_assert(offsetof(InputSettings_GetAxisNames, AxisNames) == 0x000000, "Member 'InputSettings_GetAxisNames::AxisNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputSettings \ +static_assert(alignof(UInputSettings) == 0x000008, "Wrong alignment on UInputSettings"); \ +static_assert(sizeof(UInputSettings) == 0x000140, "Wrong size on UInputSettings"); \ +static_assert(offsetof(UInputSettings, AxisConfig) == 0x000028, "Member 'UInputSettings::AxisConfig' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, PlatformSettings) == 0x000038, "Member 'UInputSettings::PlatformSettings' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, ExcludedAutocorrectOS) == 0x000050, "Member 'UInputSettings::ExcludedAutocorrectOS' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, ExcludedAutocorrectCultures) == 0x000060, "Member 'UInputSettings::ExcludedAutocorrectCultures' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, ExcludedAutocorrectDeviceModels) == 0x000070, "Member 'UInputSettings::ExcludedAutocorrectDeviceModels' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DefaultViewportMouseCaptureMode) == 0x000080, "Member 'UInputSettings::DefaultViewportMouseCaptureMode' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DefaultViewportMouseLockMode) == 0x000081, "Member 'UInputSettings::DefaultViewportMouseLockMode' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, FOVScale) == 0x000084, "Member 'UInputSettings::FOVScale' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DoubleClickTime) == 0x000088, "Member 'UInputSettings::DoubleClickTime' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, ActionMappings) == 0x000090, "Member 'UInputSettings::ActionMappings' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, AxisMappings) == 0x0000A0, "Member 'UInputSettings::AxisMappings' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, SpeechMappings) == 0x0000B0, "Member 'UInputSettings::SpeechMappings' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DefaultPlayerInputClass) == 0x0000C0, "Member 'UInputSettings::DefaultPlayerInputClass' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DefaultInputComponentClass) == 0x0000E8, "Member 'UInputSettings::DefaultInputComponentClass' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, DefaultTouchInterface) == 0x000110, "Member 'UInputSettings::DefaultTouchInterface' has a wrong offset!"); \ +static_assert(offsetof(UInputSettings, ConsoleKeys) == 0x000130, "Member 'UInputSettings::ConsoleKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputPlatformSettings \ +static_assert(alignof(UInputPlatformSettings) == 0x000008, "Wrong alignment on UInputPlatformSettings"); \ +static_assert(sizeof(UInputPlatformSettings) == 0x000068, "Wrong size on UInputPlatformSettings"); \ +static_assert(offsetof(UInputPlatformSettings, MaxTriggerFeedbackPosition) == 0x000040, "Member 'UInputPlatformSettings::MaxTriggerFeedbackPosition' has a wrong offset!"); \ +static_assert(offsetof(UInputPlatformSettings, MaxTriggerFeedbackStrength) == 0x000044, "Member 'UInputPlatformSettings::MaxTriggerFeedbackStrength' has a wrong offset!"); \ +static_assert(offsetof(UInputPlatformSettings, MaxTriggerVibrationTriggerPosition) == 0x000048, "Member 'UInputPlatformSettings::MaxTriggerVibrationTriggerPosition' has a wrong offset!"); \ +static_assert(offsetof(UInputPlatformSettings, MaxTriggerVibrationFrequency) == 0x00004C, "Member 'UInputPlatformSettings::MaxTriggerVibrationFrequency' has a wrong offset!"); \ +static_assert(offsetof(UInputPlatformSettings, MaxTriggerVibrationAmplitude) == 0x000050, "Member 'UInputPlatformSettings::MaxTriggerVibrationAmplitude' has a wrong offset!"); \ +static_assert(offsetof(UInputPlatformSettings, HardwareDevices) == 0x000058, "Member 'UInputPlatformSettings::HardwareDevices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AVectorFieldVolume \ +static_assert(alignof(AVectorFieldVolume) == 0x000008, "Wrong alignment on AVectorFieldVolume"); \ +static_assert(sizeof(AVectorFieldVolume) == 0x0002A0, "Wrong size on AVectorFieldVolume"); \ +static_assert(offsetof(AVectorFieldVolume, VectorFieldComponent) == 0x000298, "Member 'AVectorFieldVolume::VectorFieldComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTireType \ +static_assert(alignof(UTireType) == 0x000008, "Wrong alignment on UTireType"); \ +static_assert(sizeof(UTireType) == 0x000038, "Wrong size on UTireType"); \ +static_assert(offsetof(UTireType, FrictionScale) == 0x000030, "Member 'UTireType::FrictionScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVisualLoggerAutomationTests \ +static_assert(alignof(UVisualLoggerAutomationTests) == 0x000008, "Wrong alignment on UVisualLoggerAutomationTests"); \ +static_assert(sizeof(UVisualLoggerAutomationTests) == 0x000028, "Wrong size on UVisualLoggerAutomationTests"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_EnableRecording \ +static_assert(alignof(VisualLoggerKismetLibrary_EnableRecording) == 0x000001, "Wrong alignment on VisualLoggerKismetLibrary_EnableRecording"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_EnableRecording) == 0x000001, "Wrong size on VisualLoggerKismetLibrary_EnableRecording"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_EnableRecording, bEnabled) == 0x000000, "Member 'VisualLoggerKismetLibrary_EnableRecording::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_LogBox \ +static_assert(alignof(VisualLoggerKismetLibrary_LogBox) == 0x000008, "Wrong alignment on VisualLoggerKismetLibrary_LogBox"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_LogBox) == 0x000070, "Wrong size on VisualLoggerKismetLibrary_LogBox"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, WorldContextObject) == 0x000000, "Member 'VisualLoggerKismetLibrary_LogBox::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, BoxShape) == 0x000008, "Member 'VisualLoggerKismetLibrary_LogBox::BoxShape' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, Text) == 0x000040, "Member 'VisualLoggerKismetLibrary_LogBox::Text' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, ObjectColor) == 0x000050, "Member 'VisualLoggerKismetLibrary_LogBox::ObjectColor' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, LogCategory) == 0x000060, "Member 'VisualLoggerKismetLibrary_LogBox::LogCategory' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogBox, bAddToMessageLog) == 0x000068, "Member 'VisualLoggerKismetLibrary_LogBox::bAddToMessageLog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_LogLocation \ +static_assert(alignof(VisualLoggerKismetLibrary_LogLocation) == 0x000008, "Wrong alignment on VisualLoggerKismetLibrary_LogLocation"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_LogLocation) == 0x000050, "Wrong size on VisualLoggerKismetLibrary_LogLocation"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, WorldContextObject) == 0x000000, "Member 'VisualLoggerKismetLibrary_LogLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, Location) == 0x000008, "Member 'VisualLoggerKismetLibrary_LogLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, Text) == 0x000020, "Member 'VisualLoggerKismetLibrary_LogLocation::Text' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, ObjectColor) == 0x000030, "Member 'VisualLoggerKismetLibrary_LogLocation::ObjectColor' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, Radius) == 0x000040, "Member 'VisualLoggerKismetLibrary_LogLocation::Radius' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, LogCategory) == 0x000044, "Member 'VisualLoggerKismetLibrary_LogLocation::LogCategory' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogLocation, bAddToMessageLog) == 0x00004C, "Member 'VisualLoggerKismetLibrary_LogLocation::bAddToMessageLog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_LogSegment \ +static_assert(alignof(VisualLoggerKismetLibrary_LogSegment) == 0x000008, "Wrong alignment on VisualLoggerKismetLibrary_LogSegment"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_LogSegment) == 0x000068, "Wrong size on VisualLoggerKismetLibrary_LogSegment"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, WorldContextObject) == 0x000000, "Member 'VisualLoggerKismetLibrary_LogSegment::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, SegmentStart) == 0x000008, "Member 'VisualLoggerKismetLibrary_LogSegment::SegmentStart' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, SegmentEnd) == 0x000020, "Member 'VisualLoggerKismetLibrary_LogSegment::SegmentEnd' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, Text) == 0x000038, "Member 'VisualLoggerKismetLibrary_LogSegment::Text' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, ObjectColor) == 0x000048, "Member 'VisualLoggerKismetLibrary_LogSegment::ObjectColor' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, Thickness) == 0x000058, "Member 'VisualLoggerKismetLibrary_LogSegment::Thickness' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, CategoryName) == 0x00005C, "Member 'VisualLoggerKismetLibrary_LogSegment::CategoryName' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogSegment, bAddToMessageLog) == 0x000064, "Member 'VisualLoggerKismetLibrary_LogSegment::bAddToMessageLog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_LogText \ +static_assert(alignof(VisualLoggerKismetLibrary_LogText) == 0x000008, "Wrong alignment on VisualLoggerKismetLibrary_LogText"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_LogText) == 0x000028, "Wrong size on VisualLoggerKismetLibrary_LogText"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogText, WorldContextObject) == 0x000000, "Member 'VisualLoggerKismetLibrary_LogText::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogText, Text) == 0x000008, "Member 'VisualLoggerKismetLibrary_LogText::Text' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogText, LogCategory) == 0x000018, "Member 'VisualLoggerKismetLibrary_LogText::LogCategory' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_LogText, bAddToMessageLog) == 0x000020, "Member 'VisualLoggerKismetLibrary_LogText::bAddToMessageLog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VisualLoggerKismetLibrary_RedirectVislog \ +static_assert(alignof(VisualLoggerKismetLibrary_RedirectVislog) == 0x000008, "Wrong alignment on VisualLoggerKismetLibrary_RedirectVislog"); \ +static_assert(sizeof(VisualLoggerKismetLibrary_RedirectVislog) == 0x000010, "Wrong size on VisualLoggerKismetLibrary_RedirectVislog"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_RedirectVislog, SourceOwner) == 0x000000, "Member 'VisualLoggerKismetLibrary_RedirectVislog::SourceOwner' has a wrong offset!"); \ +static_assert(offsetof(VisualLoggerKismetLibrary_RedirectVislog, DestinationOwner) == 0x000008, "Member 'VisualLoggerKismetLibrary_RedirectVislog::DestinationOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVisualLoggerKismetLibrary \ +static_assert(alignof(UVisualLoggerKismetLibrary) == 0x000008, "Wrong alignment on UVisualLoggerKismetLibrary"); \ +static_assert(sizeof(UVisualLoggerKismetLibrary) == 0x000028, "Wrong size on UVisualLoggerKismetLibrary"); \ + +#define DUMPER7_ASSERTS_UVoiceChannel \ +static_assert(alignof(UVoiceChannel) == 0x000008, "Wrong alignment on UVoiceChannel"); \ +static_assert(sizeof(UVoiceChannel) == 0x000078, "Wrong size on UVoiceChannel"); \ + +#define DUMPER7_ASSERTS_VOIPTalker_CreateTalkerForPlayer \ +static_assert(alignof(VOIPTalker_CreateTalkerForPlayer) == 0x000008, "Wrong alignment on VOIPTalker_CreateTalkerForPlayer"); \ +static_assert(sizeof(VOIPTalker_CreateTalkerForPlayer) == 0x000010, "Wrong size on VOIPTalker_CreateTalkerForPlayer"); \ +static_assert(offsetof(VOIPTalker_CreateTalkerForPlayer, OwningState) == 0x000000, "Member 'VOIPTalker_CreateTalkerForPlayer::OwningState' has a wrong offset!"); \ +static_assert(offsetof(VOIPTalker_CreateTalkerForPlayer, ReturnValue) == 0x000008, "Member 'VOIPTalker_CreateTalkerForPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VOIPTalker_BPOnTalkingBegin \ +static_assert(alignof(VOIPTalker_BPOnTalkingBegin) == 0x000008, "Wrong alignment on VOIPTalker_BPOnTalkingBegin"); \ +static_assert(sizeof(VOIPTalker_BPOnTalkingBegin) == 0x000008, "Wrong size on VOIPTalker_BPOnTalkingBegin"); \ +static_assert(offsetof(VOIPTalker_BPOnTalkingBegin, AudioComponent) == 0x000000, "Member 'VOIPTalker_BPOnTalkingBegin::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VOIPTalker_GetVoiceLevel \ +static_assert(alignof(VOIPTalker_GetVoiceLevel) == 0x000004, "Wrong alignment on VOIPTalker_GetVoiceLevel"); \ +static_assert(sizeof(VOIPTalker_GetVoiceLevel) == 0x000004, "Wrong size on VOIPTalker_GetVoiceLevel"); \ +static_assert(offsetof(VOIPTalker_GetVoiceLevel, ReturnValue) == 0x000000, "Member 'VOIPTalker_GetVoiceLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VOIPTalker_RegisterWithPlayerState \ +static_assert(alignof(VOIPTalker_RegisterWithPlayerState) == 0x000008, "Wrong alignment on VOIPTalker_RegisterWithPlayerState"); \ +static_assert(sizeof(VOIPTalker_RegisterWithPlayerState) == 0x000008, "Wrong size on VOIPTalker_RegisterWithPlayerState"); \ +static_assert(offsetof(VOIPTalker_RegisterWithPlayerState, OwningState) == 0x000000, "Member 'VOIPTalker_RegisterWithPlayerState::OwningState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVOIPTalker \ +static_assert(alignof(UVOIPTalker) == 0x000008, "Wrong alignment on UVOIPTalker"); \ +static_assert(sizeof(UVOIPTalker) == 0x0000E0, "Wrong size on UVOIPTalker"); \ +static_assert(offsetof(UVOIPTalker, Settings) == 0x0000A0, "Member 'UVOIPTalker::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVolumeTexture \ +static_assert(alignof(UVolumeTexture) == 0x000010, "Wrong alignment on UVolumeTexture"); \ +static_assert(sizeof(UVolumeTexture) == 0x000270, "Wrong size on UVolumeTexture"); \ +static_assert(offsetof(UVolumeTexture, AddressMode) == 0x000260, "Member 'UVolumeTexture::AddressMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AVolumetricLightmapDensityVolume \ +static_assert(alignof(AVolumetricLightmapDensityVolume) == 0x000008, "Wrong alignment on AVolumetricLightmapDensityVolume"); \ +static_assert(sizeof(AVolumetricLightmapDensityVolume) == 0x0002D8, "Wrong size on AVolumetricLightmapDensityVolume"); \ +static_assert(offsetof(AVolumetricLightmapDensityVolume, AllowedMipLevelRange) == 0x0002D0, "Member 'AVolumetricLightmapDensityVolume::AllowedMipLevelRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ARuntimeVirtualTextureVolume \ +static_assert(alignof(ARuntimeVirtualTextureVolume) == 0x000008, "Wrong alignment on ARuntimeVirtualTextureVolume"); \ +static_assert(sizeof(ARuntimeVirtualTextureVolume) == 0x0002A0, "Wrong size on ARuntimeVirtualTextureVolume"); \ +static_assert(offsetof(ARuntimeVirtualTextureVolume, VirtualTextureComponent) == 0x000298, "Member 'ARuntimeVirtualTextureVolume::VirtualTextureComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVirtualTexture \ +static_assert(alignof(UVirtualTexture) == 0x000008, "Wrong alignment on UVirtualTexture"); \ +static_assert(sizeof(UVirtualTexture) == 0x000028, "Wrong size on UVirtualTexture"); \ + +#define DUMPER7_ASSERTS_ULightMapVirtualTexture \ +static_assert(alignof(ULightMapVirtualTexture) == 0x000008, "Wrong alignment on ULightMapVirtualTexture"); \ +static_assert(sizeof(ULightMapVirtualTexture) == 0x000028, "Wrong size on ULightMapVirtualTexture"); \ + +#define DUMPER7_ASSERTS_UVirtualTexture2D \ +static_assert(alignof(UVirtualTexture2D) == 0x000010, "Wrong alignment on UVirtualTexture2D"); \ +static_assert(sizeof(UVirtualTexture2D) == 0x000290, "Wrong size on UVirtualTexture2D"); \ +static_assert(offsetof(UVirtualTexture2D, Settings) == 0x000278, "Member 'UVirtualTexture2D::Settings' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTexture2D, bContinuousUpdate) == 0x000280, "Member 'UVirtualTexture2D::bContinuousUpdate' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTexture2D, bSinglePhysicalSpace) == 0x000281, "Member 'UVirtualTexture2D::bSinglePhysicalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVirtualTextureBuilder \ +static_assert(alignof(UVirtualTextureBuilder) == 0x000008, "Wrong alignment on UVirtualTextureBuilder"); \ +static_assert(sizeof(UVirtualTextureBuilder) == 0x000048, "Wrong size on UVirtualTextureBuilder"); \ +static_assert(offsetof(UVirtualTextureBuilder, Texture) == 0x000028, "Member 'UVirtualTextureBuilder::Texture' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTextureBuilder, TextureMobile) == 0x000030, "Member 'UVirtualTextureBuilder::TextureMobile' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTextureBuilder, BuildHash) == 0x000038, "Member 'UVirtualTextureBuilder::BuildHash' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTextureBuilder, bSeparateTextureForMobile) == 0x000040, "Member 'UVirtualTextureBuilder::bSeparateTextureForMobile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVirtualTexturePoolConfig \ +static_assert(alignof(UVirtualTexturePoolConfig) == 0x000008, "Wrong alignment on UVirtualTexturePoolConfig"); \ +static_assert(sizeof(UVirtualTexturePoolConfig) == 0x000040, "Wrong size on UVirtualTexturePoolConfig"); \ +static_assert(offsetof(UVirtualTexturePoolConfig, DefaultSizeInMegabyte) == 0x000028, "Member 'UVirtualTexturePoolConfig::DefaultSizeInMegabyte' has a wrong offset!"); \ +static_assert(offsetof(UVirtualTexturePoolConfig, Pools) == 0x000030, "Member 'UVirtualTexturePoolConfig::Pools' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldComposition \ +static_assert(alignof(UWorldComposition) == 0x000008, "Wrong alignment on UWorldComposition"); \ +static_assert(sizeof(UWorldComposition) == 0x000068, "Wrong size on UWorldComposition"); \ +static_assert(offsetof(UWorldComposition, TilesStreaming) == 0x000048, "Member 'UWorldComposition::TilesStreaming' has a wrong offset!"); \ +static_assert(offsetof(UWorldComposition, TilesStreamingTimeThreshold) == 0x000058, "Member 'UWorldComposition::TilesStreamingTimeThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWorldComposition, bLoadAllTilesDuringCinematic) == 0x000060, "Member 'UWorldComposition::bLoadAllTilesDuringCinematic' has a wrong offset!"); \ +static_assert(offsetof(UWorldComposition, bRebaseOriginIn3DSpace) == 0x000061, "Member 'UWorldComposition::bRebaseOriginIn3DSpace' has a wrong offset!"); \ +static_assert(offsetof(UWorldComposition, RebaseOriginDistance) == 0x000064, "Member 'UWorldComposition::RebaseOriginDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_GetActorDescs \ +static_assert(alignof(WorldPartitionBlueprintLibrary_GetActorDescs) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_GetActorDescs"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_GetActorDescs) == 0x000018, "Wrong size on WorldPartitionBlueprintLibrary_GetActorDescs"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetActorDescs, OutActorDescs) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_GetActorDescs::OutActorDescs' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetActorDescs, ReturnValue) == 0x000010, "Member 'WorldPartitionBlueprintLibrary_GetActorDescs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_GetDataLayerManager \ +static_assert(alignof(WorldPartitionBlueprintLibrary_GetDataLayerManager) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_GetDataLayerManager"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_GetDataLayerManager) == 0x000010, "Wrong size on WorldPartitionBlueprintLibrary_GetDataLayerManager"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetDataLayerManager, WorldContextObject) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_GetDataLayerManager::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetDataLayerManager, ReturnValue) == 0x000008, "Member 'WorldPartitionBlueprintLibrary_GetDataLayerManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_GetEditorWorldBounds \ +static_assert(alignof(WorldPartitionBlueprintLibrary_GetEditorWorldBounds) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_GetEditorWorldBounds"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_GetEditorWorldBounds) == 0x000038, "Wrong size on WorldPartitionBlueprintLibrary_GetEditorWorldBounds"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetEditorWorldBounds, ReturnValue) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_GetEditorWorldBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_GetIntersectingActorDescs \ +static_assert(alignof(WorldPartitionBlueprintLibrary_GetIntersectingActorDescs) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_GetIntersectingActorDescs"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_GetIntersectingActorDescs) == 0x000050, "Wrong size on WorldPartitionBlueprintLibrary_GetIntersectingActorDescs"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetIntersectingActorDescs, InBox) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_GetIntersectingActorDescs::InBox' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetIntersectingActorDescs, OutActorDescs) == 0x000038, "Member 'WorldPartitionBlueprintLibrary_GetIntersectingActorDescs::OutActorDescs' has a wrong offset!"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetIntersectingActorDescs, ReturnValue) == 0x000048, "Member 'WorldPartitionBlueprintLibrary_GetIntersectingActorDescs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds \ +static_assert(alignof(WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds) == 0x000038, "Wrong size on WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds, ReturnValue) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_LoadActors \ +static_assert(alignof(WorldPartitionBlueprintLibrary_LoadActors) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_LoadActors"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_LoadActors) == 0x000010, "Wrong size on WorldPartitionBlueprintLibrary_LoadActors"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_LoadActors, InActorsToLoad) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_LoadActors::InActorsToLoad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_PinActors \ +static_assert(alignof(WorldPartitionBlueprintLibrary_PinActors) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_PinActors"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_PinActors) == 0x000010, "Wrong size on WorldPartitionBlueprintLibrary_PinActors"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_PinActors, InActorsToPin) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_PinActors::InActorsToPin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_UnloadActors \ +static_assert(alignof(WorldPartitionBlueprintLibrary_UnloadActors) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_UnloadActors"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_UnloadActors) == 0x000010, "Wrong size on WorldPartitionBlueprintLibrary_UnloadActors"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_UnloadActors, InActorsToUnload) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_UnloadActors::InActorsToUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionBlueprintLibrary_UnpinActors \ +static_assert(alignof(WorldPartitionBlueprintLibrary_UnpinActors) == 0x000008, "Wrong alignment on WorldPartitionBlueprintLibrary_UnpinActors"); \ +static_assert(sizeof(WorldPartitionBlueprintLibrary_UnpinActors) == 0x000010, "Wrong size on WorldPartitionBlueprintLibrary_UnpinActors"); \ +static_assert(offsetof(WorldPartitionBlueprintLibrary_UnpinActors, InActorsToUnpin) == 0x000000, "Member 'WorldPartitionBlueprintLibrary_UnpinActors::InActorsToUnpin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionBlueprintLibrary \ +static_assert(alignof(UWorldPartitionBlueprintLibrary) == 0x000008, "Wrong alignment on UWorldPartitionBlueprintLibrary"); \ +static_assert(sizeof(UWorldPartitionBlueprintLibrary) == 0x000028, "Wrong size on UWorldPartitionBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UActorDescContainer \ +static_assert(alignof(UActorDescContainer) == 0x000008, "Wrong alignment on UActorDescContainer"); \ +static_assert(sizeof(UActorDescContainer) == 0x000028, "Wrong size on UActorDescContainer"); \ + +#define DUMPER7_ASSERTS_UContentBundleUnsavedActorMonitor \ +static_assert(alignof(UContentBundleUnsavedActorMonitor) == 0x000008, "Wrong alignment on UContentBundleUnsavedActorMonitor"); \ +static_assert(sizeof(UContentBundleUnsavedActorMonitor) == 0x000028, "Wrong size on UContentBundleUnsavedActorMonitor"); \ + +#define DUMPER7_ASSERTS_UContentBundleEngineSubsystem \ +static_assert(alignof(UContentBundleEngineSubsystem) == 0x000008, "Wrong alignment on UContentBundleEngineSubsystem"); \ +static_assert(sizeof(UContentBundleEngineSubsystem) == 0x0000D0, "Wrong size on UContentBundleEngineSubsystem"); \ +static_assert(offsetof(UContentBundleEngineSubsystem, ContentBundleTypeFactoryClass) == 0x0000A0, "Member 'UContentBundleEngineSubsystem::ContentBundleTypeFactoryClass' has a wrong offset!"); \ +static_assert(offsetof(UContentBundleEngineSubsystem, ContentBundleTypeFactory) == 0x0000C8, "Member 'UContentBundleEngineSubsystem::ContentBundleTypeFactory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UContentBundleManager \ +static_assert(alignof(UContentBundleManager) == 0x000008, "Wrong alignment on UContentBundleManager"); \ +static_assert(sizeof(UContentBundleManager) == 0x000038, "Wrong size on UContentBundleManager"); \ + +#define DUMPER7_ASSERTS_WorldDataLayers_OnDataLayerRuntimeStateChanged \ +static_assert(alignof(WorldDataLayers_OnDataLayerRuntimeStateChanged) == 0x000008, "Wrong alignment on WorldDataLayers_OnDataLayerRuntimeStateChanged"); \ +static_assert(sizeof(WorldDataLayers_OnDataLayerRuntimeStateChanged) == 0x000010, "Wrong size on WorldDataLayers_OnDataLayerRuntimeStateChanged"); \ +static_assert(offsetof(WorldDataLayers_OnDataLayerRuntimeStateChanged, InDataLayer) == 0x000000, "Member 'WorldDataLayers_OnDataLayerRuntimeStateChanged::InDataLayer' has a wrong offset!"); \ +static_assert(offsetof(WorldDataLayers_OnDataLayerRuntimeStateChanged, InState) == 0x000008, "Member 'WorldDataLayers_OnDataLayerRuntimeStateChanged::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWorldDataLayers \ +static_assert(alignof(AWorldDataLayers) == 0x000008, "Wrong alignment on AWorldDataLayers"); \ +static_assert(sizeof(AWorldDataLayers) == 0x0005C0, "Wrong size on AWorldDataLayers"); \ +static_assert(offsetof(AWorldDataLayers, DataLayerInstances) == 0x000338, "Member 'AWorldDataLayers::DataLayerInstances' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, DeprecatedDataLayerNameToDataLayerInstance) == 0x000388, "Member 'AWorldDataLayers::DeprecatedDataLayerNameToDataLayerInstance' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, WorldDataLayers) == 0x0003D8, "Member 'AWorldDataLayers::WorldDataLayers' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, RepActiveDataLayerNames) == 0x000428, "Member 'AWorldDataLayers::RepActiveDataLayerNames' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, RepLoadedDataLayerNames) == 0x000438, "Member 'AWorldDataLayers::RepLoadedDataLayerNames' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, RepEffectiveActiveDataLayerNames) == 0x0004E8, "Member 'AWorldDataLayers::RepEffectiveActiveDataLayerNames' has a wrong offset!"); \ +static_assert(offsetof(AWorldDataLayers, RepEffectiveLoadedDataLayerNames) == 0x0004F8, "Member 'AWorldDataLayers::RepEffectiveLoadedDataLayerNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_Equals \ +static_assert(alignof(DataLayer_Equals) == 0x000004, "Wrong alignment on DataLayer_Equals"); \ +static_assert(sizeof(DataLayer_Equals) == 0x00000C, "Wrong size on DataLayer_Equals"); \ +static_assert(offsetof(DataLayer_Equals, ActorDataLayer) == 0x000000, "Member 'DataLayer_Equals::ActorDataLayer' has a wrong offset!"); \ +static_assert(offsetof(DataLayer_Equals, ReturnValue) == 0x000008, "Member 'DataLayer_Equals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_GetDataLayerLabel \ +static_assert(alignof(DataLayer_GetDataLayerLabel) == 0x000004, "Wrong alignment on DataLayer_GetDataLayerLabel"); \ +static_assert(sizeof(DataLayer_GetDataLayerLabel) == 0x000008, "Wrong size on DataLayer_GetDataLayerLabel"); \ +static_assert(offsetof(DataLayer_GetDataLayerLabel, ReturnValue) == 0x000000, "Member 'DataLayer_GetDataLayerLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_GetDebugColor \ +static_assert(alignof(DataLayer_GetDebugColor) == 0x000004, "Wrong alignment on DataLayer_GetDebugColor"); \ +static_assert(sizeof(DataLayer_GetDebugColor) == 0x000004, "Wrong size on DataLayer_GetDebugColor"); \ +static_assert(offsetof(DataLayer_GetDebugColor, ReturnValue) == 0x000000, "Member 'DataLayer_GetDebugColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_GetInitialRuntimeState \ +static_assert(alignof(DataLayer_GetInitialRuntimeState) == 0x000001, "Wrong alignment on DataLayer_GetInitialRuntimeState"); \ +static_assert(sizeof(DataLayer_GetInitialRuntimeState) == 0x000001, "Wrong size on DataLayer_GetInitialRuntimeState"); \ +static_assert(offsetof(DataLayer_GetInitialRuntimeState, ReturnValue) == 0x000000, "Member 'DataLayer_GetInitialRuntimeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_GetInitialState \ +static_assert(alignof(DataLayer_GetInitialState) == 0x000001, "Wrong alignment on DataLayer_GetInitialState"); \ +static_assert(sizeof(DataLayer_GetInitialState) == 0x000001, "Wrong size on DataLayer_GetInitialState"); \ +static_assert(offsetof(DataLayer_GetInitialState, ReturnValue) == 0x000000, "Member 'DataLayer_GetInitialState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsDynamicallyLoaded \ +static_assert(alignof(DataLayer_IsDynamicallyLoaded) == 0x000001, "Wrong alignment on DataLayer_IsDynamicallyLoaded"); \ +static_assert(sizeof(DataLayer_IsDynamicallyLoaded) == 0x000001, "Wrong size on DataLayer_IsDynamicallyLoaded"); \ +static_assert(offsetof(DataLayer_IsDynamicallyLoaded, ReturnValue) == 0x000000, "Member 'DataLayer_IsDynamicallyLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsEffectiveVisible \ +static_assert(alignof(DataLayer_IsEffectiveVisible) == 0x000001, "Wrong alignment on DataLayer_IsEffectiveVisible"); \ +static_assert(sizeof(DataLayer_IsEffectiveVisible) == 0x000001, "Wrong size on DataLayer_IsEffectiveVisible"); \ +static_assert(offsetof(DataLayer_IsEffectiveVisible, ReturnValue) == 0x000000, "Member 'DataLayer_IsEffectiveVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsInitiallyActive \ +static_assert(alignof(DataLayer_IsInitiallyActive) == 0x000001, "Wrong alignment on DataLayer_IsInitiallyActive"); \ +static_assert(sizeof(DataLayer_IsInitiallyActive) == 0x000001, "Wrong size on DataLayer_IsInitiallyActive"); \ +static_assert(offsetof(DataLayer_IsInitiallyActive, ReturnValue) == 0x000000, "Member 'DataLayer_IsInitiallyActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsInitiallyVisible \ +static_assert(alignof(DataLayer_IsInitiallyVisible) == 0x000001, "Wrong alignment on DataLayer_IsInitiallyVisible"); \ +static_assert(sizeof(DataLayer_IsInitiallyVisible) == 0x000001, "Wrong size on DataLayer_IsInitiallyVisible"); \ +static_assert(offsetof(DataLayer_IsInitiallyVisible, ReturnValue) == 0x000000, "Member 'DataLayer_IsInitiallyVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsRuntime \ +static_assert(alignof(DataLayer_IsRuntime) == 0x000001, "Wrong alignment on DataLayer_IsRuntime"); \ +static_assert(sizeof(DataLayer_IsRuntime) == 0x000001, "Wrong size on DataLayer_IsRuntime"); \ +static_assert(offsetof(DataLayer_IsRuntime, ReturnValue) == 0x000000, "Member 'DataLayer_IsRuntime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayer_IsVisible \ +static_assert(alignof(DataLayer_IsVisible) == 0x000001, "Wrong alignment on DataLayer_IsVisible"); \ +static_assert(sizeof(DataLayer_IsVisible) == 0x000001, "Wrong size on DataLayer_IsVisible"); \ +static_assert(offsetof(DataLayer_IsVisible, ReturnValue) == 0x000000, "Member 'DataLayer_IsVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayer \ +static_assert(alignof(UDataLayer) == 0x000008, "Wrong alignment on UDataLayer"); \ +static_assert(sizeof(UDataLayer) == 0x000058, "Wrong size on UDataLayer"); \ +static_assert(offsetof(UDataLayer, DataLayerLabel) == 0x000028, "Member 'UDataLayer::DataLayerLabel' has a wrong offset!"); \ +static_assert(offsetof(UDataLayer, InitialRuntimeState) == 0x000034, "Member 'UDataLayer::InitialRuntimeState' has a wrong offset!"); \ +static_assert(offsetof(UDataLayer, DebugColor) == 0x000038, "Member 'UDataLayer::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(UDataLayer, Parent) == 0x000040, "Member 'UDataLayer::Parent' has a wrong offset!"); \ +static_assert(offsetof(UDataLayer, Children) == 0x000048, "Member 'UDataLayer::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerAsset_GetDebugColor \ +static_assert(alignof(DataLayerAsset_GetDebugColor) == 0x000004, "Wrong alignment on DataLayerAsset_GetDebugColor"); \ +static_assert(sizeof(DataLayerAsset_GetDebugColor) == 0x000004, "Wrong size on DataLayerAsset_GetDebugColor"); \ +static_assert(offsetof(DataLayerAsset_GetDebugColor, ReturnValue) == 0x000000, "Member 'DataLayerAsset_GetDebugColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerAsset_GetType \ +static_assert(alignof(DataLayerAsset_GetType) == 0x000001, "Wrong alignment on DataLayerAsset_GetType"); \ +static_assert(sizeof(DataLayerAsset_GetType) == 0x000001, "Wrong size on DataLayerAsset_GetType"); \ +static_assert(offsetof(DataLayerAsset_GetType, ReturnValue) == 0x000000, "Member 'DataLayerAsset_GetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataLayerAsset_IsRuntime \ +static_assert(alignof(DataLayerAsset_IsRuntime) == 0x000001, "Wrong alignment on DataLayerAsset_IsRuntime"); \ +static_assert(sizeof(DataLayerAsset_IsRuntime) == 0x000001, "Wrong size on DataLayerAsset_IsRuntime"); \ +static_assert(offsetof(DataLayerAsset_IsRuntime, ReturnValue) == 0x000000, "Member 'DataLayerAsset_IsRuntime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerAsset \ +static_assert(alignof(UDataLayerAsset) == 0x000008, "Wrong alignment on UDataLayerAsset"); \ +static_assert(sizeof(UDataLayerAsset) == 0x000030, "Wrong size on UDataLayerAsset"); \ +static_assert(offsetof(UDataLayerAsset, DataLayerType) == 0x000028, "Member 'UDataLayerAsset::DataLayerType' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerAsset, bSupportsActorFilters) == 0x000029, "Member 'UDataLayerAsset::bSupportsActorFilters' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerAsset, DebugColor) == 0x00002C, "Member 'UDataLayerAsset::DebugColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerInstancePrivate \ +static_assert(alignof(UDataLayerInstancePrivate) == 0x000008, "Wrong alignment on UDataLayerInstancePrivate"); \ +static_assert(sizeof(UDataLayerInstancePrivate) == 0x000060, "Wrong size on UDataLayerInstancePrivate"); \ +static_assert(offsetof(UDataLayerInstancePrivate, ShortName) == 0x000048, "Member 'UDataLayerInstancePrivate::ShortName' has a wrong offset!"); \ +static_assert(offsetof(UDataLayerInstancePrivate, DataLayerAsset) == 0x000058, "Member 'UDataLayerInstancePrivate::DataLayerAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerInstanceWithAsset \ +static_assert(alignof(UDataLayerInstanceWithAsset) == 0x000008, "Wrong alignment on UDataLayerInstanceWithAsset"); \ +static_assert(sizeof(UDataLayerInstanceWithAsset) == 0x000050, "Wrong size on UDataLayerInstanceWithAsset"); \ +static_assert(offsetof(UDataLayerInstanceWithAsset, DataLayerAsset) == 0x000048, "Member 'UDataLayerInstanceWithAsset::DataLayerAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataLayerLoadingPolicy \ +static_assert(alignof(UDataLayerLoadingPolicy) == 0x000008, "Wrong alignment on UDataLayerLoadingPolicy"); \ +static_assert(sizeof(UDataLayerLoadingPolicy) == 0x000028, "Wrong size on UDataLayerLoadingPolicy"); \ + +#define DUMPER7_ASSERTS_UDeprecatedDataLayerInstance \ +static_assert(alignof(UDeprecatedDataLayerInstance) == 0x000008, "Wrong alignment on UDeprecatedDataLayerInstance"); \ +static_assert(sizeof(UDeprecatedDataLayerInstance) == 0x000060, "Wrong size on UDeprecatedDataLayerInstance"); \ +static_assert(offsetof(UDeprecatedDataLayerInstance, Label) == 0x000048, "Member 'UDeprecatedDataLayerInstance::Label' has a wrong offset!"); \ +static_assert(offsetof(UDeprecatedDataLayerInstance, DeprecatedDataLayerFName) == 0x000050, "Member 'UDeprecatedDataLayerInstance::DeprecatedDataLayerFName' has a wrong offset!"); \ +static_assert(offsetof(UDeprecatedDataLayerInstance, DataLayerType) == 0x000058, "Member 'UDeprecatedDataLayerInstance::DataLayerType' has a wrong offset!"); \ +static_assert(offsetof(UDeprecatedDataLayerInstance, DebugColor) == 0x00005C, "Member 'UDeprecatedDataLayerInstance::DebugColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionDestructibleHLODComponent \ +static_assert(alignof(UWorldPartitionDestructibleHLODComponent) == 0x000010, "Wrong alignment on UWorldPartitionDestructibleHLODComponent"); \ +static_assert(sizeof(UWorldPartitionDestructibleHLODComponent) == 0x0002B0, "Wrong size on UWorldPartitionDestructibleHLODComponent"); \ +static_assert(offsetof(UWorldPartitionDestructibleHLODComponent, DestructibleActors) == 0x0002A0, "Member 'UWorldPartitionDestructibleHLODComponent::DestructibleActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionDestructibleHLODMeshComponent \ +static_assert(alignof(UWorldPartitionDestructibleHLODMeshComponent) == 0x000010, "Wrong alignment on UWorldPartitionDestructibleHLODMeshComponent"); \ +static_assert(sizeof(UWorldPartitionDestructibleHLODMeshComponent) == 0x000410, "Wrong size on UWorldPartitionDestructibleHLODMeshComponent"); \ +static_assert(offsetof(UWorldPartitionDestructibleHLODMeshComponent, DestructibleHLODMaterial) == 0x0002B0, "Member 'UWorldPartitionDestructibleHLODMeshComponent::DestructibleHLODMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionDestructibleHLODMeshComponent, DestructibleHLODState) == 0x0002B8, "Member 'UWorldPartitionDestructibleHLODMeshComponent::DestructibleHLODState' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionDestructibleHLODMeshComponent, VisibilityMaterial) == 0x000400, "Member 'UWorldPartitionDestructibleHLODMeshComponent::VisibilityMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionDestructibleHLODMeshComponent, VisibilityTexture) == 0x000408, "Member 'UWorldPartitionDestructibleHLODMeshComponent::VisibilityTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHLODBuilderSettings \ +static_assert(alignof(UHLODBuilderSettings) == 0x000008, "Wrong alignment on UHLODBuilderSettings"); \ +static_assert(sizeof(UHLODBuilderSettings) == 0x000028, "Wrong size on UHLODBuilderSettings"); \ + +#define DUMPER7_ASSERTS_UNullHLODBuilder \ +static_assert(alignof(UNullHLODBuilder) == 0x000008, "Wrong alignment on UNullHLODBuilder"); \ +static_assert(sizeof(UNullHLODBuilder) == 0x000028, "Wrong size on UNullHLODBuilder"); \ + +#define DUMPER7_ASSERTS_WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag \ +static_assert(alignof(WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag) == 0x000008, "Wrong alignment on WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag"); \ +static_assert(sizeof(WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag) == 0x000010, "Wrong size on WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag"); \ +static_assert(offsetof(WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag, InDestructionTag) == 0x000000, "Member 'WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag::InDestructionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag \ +static_assert(alignof(WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag) == 0x000008, "Wrong alignment on WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag"); \ +static_assert(sizeof(WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag) == 0x000010, "Wrong size on WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag"); \ +static_assert(offsetof(WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag, ReturnValue) == 0x000000, "Member 'WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWorldPartitionDestructibleInHLODInterface \ +static_assert(alignof(IWorldPartitionDestructibleInHLODInterface) == 0x000001, "Wrong alignment on IWorldPartitionDestructibleInHLODInterface"); \ +static_assert(sizeof(IWorldPartitionDestructibleInHLODInterface) == 0x000001, "Wrong size on IWorldPartitionDestructibleInHLODInterface"); \ + +#define DUMPER7_ASSERTS_UHLODLayer \ +static_assert(alignof(UHLODLayer) == 0x000008, "Wrong alignment on UHLODLayer"); \ +static_assert(sizeof(UHLODLayer) == 0x000068, "Wrong size on UHLODLayer"); \ +static_assert(offsetof(UHLODLayer, LayerType) == 0x000028, "Member 'UHLODLayer::LayerType' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, HLODBuilderClass) == 0x000030, "Member 'UHLODLayer::HLODBuilderClass' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, HLODBuilderSettings) == 0x000038, "Member 'UHLODLayer::HLODBuilderSettings' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, CellSize) == 0x000044, "Member 'UHLODLayer::CellSize' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, LoadingRange) == 0x000048, "Member 'UHLODLayer::LoadingRange' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, ParentLayer) == 0x000050, "Member 'UHLODLayer::ParentLayer' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, HLODActorClass) == 0x000058, "Member 'UHLODLayer::HLODActorClass' has a wrong offset!"); \ +static_assert(offsetof(UHLODLayer, HLODModifierClass) == 0x000060, "Member 'UHLODLayer::HLODModifierClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWorldPartitionHLODProvider \ +static_assert(alignof(IWorldPartitionHLODProvider) == 0x000001, "Wrong alignment on IWorldPartitionHLODProvider"); \ +static_assert(sizeof(IWorldPartitionHLODProvider) == 0x000001, "Wrong size on IWorldPartitionHLODProvider"); \ + +#define DUMPER7_ASSERTS_UHLODSubsystem \ +static_assert(alignof(UHLODSubsystem) == 0x000008, "Wrong alignment on UHLODSubsystem"); \ +static_assert(sizeof(UHLODSubsystem) == 0x000150, "Wrong size on UHLODSubsystem"); \ + +#define DUMPER7_ASSERTS_ANavigationDataChunkActor \ +static_assert(alignof(ANavigationDataChunkActor) == 0x000008, "Wrong alignment on ANavigationDataChunkActor"); \ +static_assert(sizeof(ANavigationDataChunkActor) == 0x0002E0, "Wrong size on ANavigationDataChunkActor"); \ +static_assert(offsetof(ANavigationDataChunkActor, NavDataChunks) == 0x000298, "Member 'ANavigationDataChunkActor::NavDataChunks' has a wrong offset!"); \ +static_assert(offsetof(ANavigationDataChunkActor, DataChunkActorBounds) == 0x0002A8, "Member 'ANavigationDataChunkActor::DataChunkActorBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWorldPartitionActorLoaderInterface \ +static_assert(alignof(IWorldPartitionActorLoaderInterface) == 0x000001, "Wrong alignment on IWorldPartitionActorLoaderInterface"); \ +static_assert(sizeof(IWorldPartitionActorLoaderInterface) == 0x000001, "Wrong size on IWorldPartitionActorLoaderInterface"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionEditorSpatialHash \ +static_assert(alignof(UWorldPartitionEditorSpatialHash) == 0x000008, "Wrong alignment on UWorldPartitionEditorSpatialHash"); \ +static_assert(sizeof(UWorldPartitionEditorSpatialHash) == 0x000028, "Wrong size on UWorldPartitionEditorSpatialHash"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionStreamingPolicy \ +static_assert(alignof(UWorldPartitionStreamingPolicy) == 0x000008, "Wrong alignment on UWorldPartitionStreamingPolicy"); \ +static_assert(sizeof(UWorldPartitionStreamingPolicy) == 0x000288, "Wrong size on UWorldPartitionStreamingPolicy"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionLevelStreamingPolicy \ +static_assert(alignof(UWorldPartitionLevelStreamingPolicy) == 0x000008, "Wrong alignment on UWorldPartitionLevelStreamingPolicy"); \ +static_assert(sizeof(UWorldPartitionLevelStreamingPolicy) == 0x0002F8, "Wrong size on UWorldPartitionLevelStreamingPolicy"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingPolicy, SourceWorldAssetPath) == 0x000288, "Member 'UWorldPartitionLevelStreamingPolicy::SourceWorldAssetPath' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingPolicy, SubObjectsToCellRemapping) == 0x000298, "Member 'UWorldPartitionLevelStreamingPolicy::SubObjectsToCellRemapping' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionLevelStreamingPolicy, ExternalStreamingObjects) == 0x0002E8, "Member 'UWorldPartitionLevelStreamingPolicy::ExternalStreamingObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWorldPartitionMiniMap \ +static_assert(alignof(AWorldPartitionMiniMap) == 0x000008, "Wrong alignment on AWorldPartitionMiniMap"); \ +static_assert(sizeof(AWorldPartitionMiniMap) == 0x000368, "Wrong size on AWorldPartitionMiniMap"); \ +static_assert(offsetof(AWorldPartitionMiniMap, MiniMapWorldBounds) == 0x000298, "Member 'AWorldPartitionMiniMap::MiniMapWorldBounds' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, UVOffset) == 0x0002D0, "Member 'AWorldPartitionMiniMap::UVOffset' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, MiniMapTexture) == 0x0002F8, "Member 'AWorldPartitionMiniMap::MiniMapTexture' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, ExcludedDataLayers) == 0x000300, "Member 'AWorldPartitionMiniMap::ExcludedDataLayers' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, WorldUnitsPerPixel) == 0x000350, "Member 'AWorldPartitionMiniMap::WorldUnitsPerPixel' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, BuilderCellSize) == 0x000354, "Member 'AWorldPartitionMiniMap::BuilderCellSize' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, CaptureSource) == 0x000358, "Member 'AWorldPartitionMiniMap::CaptureSource' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, CaptureWarmupFrames) == 0x00035C, "Member 'AWorldPartitionMiniMap::CaptureWarmupFrames' has a wrong offset!"); \ +static_assert(offsetof(AWorldPartitionMiniMap, MiniMapTileSize) == 0x000360, "Member 'AWorldPartitionMiniMap::MiniMapTileSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWorldPartitionMiniMapVolume \ +static_assert(alignof(AWorldPartitionMiniMapVolume) == 0x000008, "Wrong alignment on AWorldPartitionMiniMapVolume"); \ +static_assert(sizeof(AWorldPartitionMiniMapVolume) == 0x0002D0, "Wrong size on AWorldPartitionMiniMapVolume"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeCellDataSpatialHash \ +static_assert(alignof(UWorldPartitionRuntimeCellDataSpatialHash) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeCellDataSpatialHash"); \ +static_assert(sizeof(UWorldPartitionRuntimeCellDataSpatialHash) == 0x0000F0, "Wrong size on UWorldPartitionRuntimeCellDataSpatialHash"); \ +static_assert(offsetof(UWorldPartitionRuntimeCellDataSpatialHash, Position) == 0x000088, "Member 'UWorldPartitionRuntimeCellDataSpatialHash::Position' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCellDataSpatialHash, Extent) == 0x0000A0, "Member 'UWorldPartitionRuntimeCellDataSpatialHash::Extent' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCellDataSpatialHash, Level) == 0x0000A4, "Member 'UWorldPartitionRuntimeCellDataSpatialHash::Level' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeCellDataSpatialHash, GridName) == 0x0000A8, "Member 'UWorldPartitionRuntimeCellDataSpatialHash::GridName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeLevelStreamingCell \ +static_assert(alignof(UWorldPartitionRuntimeLevelStreamingCell) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeLevelStreamingCell"); \ +static_assert(sizeof(UWorldPartitionRuntimeLevelStreamingCell) == 0x000090, "Wrong size on UWorldPartitionRuntimeLevelStreamingCell"); \ +static_assert(offsetof(UWorldPartitionRuntimeLevelStreamingCell, LevelStreaming) == 0x000088, "Member 'UWorldPartitionRuntimeLevelStreamingCell::LevelStreaming' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASpatialHashRuntimeGridInfo \ +static_assert(alignof(ASpatialHashRuntimeGridInfo) == 0x000008, "Wrong alignment on ASpatialHashRuntimeGridInfo"); \ +static_assert(sizeof(ASpatialHashRuntimeGridInfo) == 0x0002A0, "Wrong size on ASpatialHashRuntimeGridInfo"); \ +static_assert(offsetof(ASpatialHashRuntimeGridInfo, GridSettings) == 0x000298, "Member 'ASpatialHashRuntimeGridInfo::GridSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URuntimeSpatialHashExternalStreamingObject \ +static_assert(alignof(URuntimeSpatialHashExternalStreamingObject) == 0x000008, "Wrong alignment on URuntimeSpatialHashExternalStreamingObject"); \ +static_assert(sizeof(URuntimeSpatialHashExternalStreamingObject) == 0x000128, "Wrong size on URuntimeSpatialHashExternalStreamingObject"); \ +static_assert(offsetof(URuntimeSpatialHashExternalStreamingObject, StreamingGrids) == 0x000118, "Member 'URuntimeSpatialHashExternalStreamingObject::StreamingGrids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldPartitionRuntimeSpatialHash \ +static_assert(alignof(UWorldPartitionRuntimeSpatialHash) == 0x000008, "Wrong alignment on UWorldPartitionRuntimeSpatialHash"); \ +static_assert(sizeof(UWorldPartitionRuntimeSpatialHash) == 0x0000E8, "Wrong size on UWorldPartitionRuntimeSpatialHash"); \ +static_assert(offsetof(UWorldPartitionRuntimeSpatialHash, bEnableZCulling) == 0x000078, "Member 'UWorldPartitionRuntimeSpatialHash::bEnableZCulling' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeSpatialHash, Settings) == 0x000079, "Member 'UWorldPartitionRuntimeSpatialHash::Settings' has a wrong offset!"); \ +static_assert(offsetof(UWorldPartitionRuntimeSpatialHash, StreamingGrids) == 0x000080, "Member 'UWorldPartitionRuntimeSpatialHash::StreamingGrids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDefaultSubTabFont_C \ +static_assert(alignof(UDefaultSubTabFont_C) == 0x000010, "Wrong alignment on UDefaultSubTabFont_C"); \ +static_assert(sizeof(UDefaultSubTabFont_C) == 0x0001B0, "Wrong size on UDefaultSubTabFont_C"); \ + +#define DUMPER7_ASSERTS_UGE_VV_Cooldown_C \ +static_assert(alignof(UGE_VV_Cooldown_C) == 0x000008, "Wrong alignment on UGE_VV_Cooldown_C"); \ +static_assert(sizeof(UGE_VV_Cooldown_C) == 0x000A70, "Wrong size on UGE_VV_Cooldown_C"); \ + +#define DUMPER7_ASSERTS_FGameplayAttribute \ +static_assert(alignof(FGameplayAttribute) == 0x000008, "Wrong alignment on FGameplayAttribute"); \ +static_assert(sizeof(FGameplayAttribute) == 0x000038, "Wrong size on FGameplayAttribute"); \ +static_assert(offsetof(FGameplayAttribute, AttributeName) == 0x000000, "Member 'FGameplayAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAttribute, Attribute) == 0x000010, "Member 'FGameplayAttribute::Attribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAttribute, AttributeOwner) == 0x000030, "Member 'FGameplayAttribute::AttributeOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayEffectHandle \ +static_assert(alignof(FActiveGameplayEffectHandle) == 0x000004, "Wrong alignment on FActiveGameplayEffectHandle"); \ +static_assert(sizeof(FActiveGameplayEffectHandle) == 0x000008, "Wrong size on FActiveGameplayEffectHandle"); \ +static_assert(offsetof(FActiveGameplayEffectHandle, Handle) == 0x000000, "Member 'FActiveGameplayEffectHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffectHandle, bPassedFiltersAndWasExecuted) == 0x000004, "Member 'FActiveGameplayEffectHandle::bPassedFiltersAndWasExecuted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayModifierEvaluatedData \ +static_assert(alignof(FGameplayModifierEvaluatedData) == 0x000008, "Wrong alignment on FGameplayModifierEvaluatedData"); \ +static_assert(sizeof(FGameplayModifierEvaluatedData) == 0x000050, "Wrong size on FGameplayModifierEvaluatedData"); \ +static_assert(offsetof(FGameplayModifierEvaluatedData, Attribute) == 0x000000, "Member 'FGameplayModifierEvaluatedData::Attribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierEvaluatedData, ModifierOp) == 0x000038, "Member 'FGameplayModifierEvaluatedData::ModifierOp' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierEvaluatedData, Magnitude) == 0x00003C, "Member 'FGameplayModifierEvaluatedData::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierEvaluatedData, Handle) == 0x000040, "Member 'FGameplayModifierEvaluatedData::Handle' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierEvaluatedData, IsValid) == 0x000048, "Member 'FGameplayModifierEvaluatedData::IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectCustomExecutionOutput \ +static_assert(alignof(FGameplayEffectCustomExecutionOutput) == 0x000008, "Wrong alignment on FGameplayEffectCustomExecutionOutput"); \ +static_assert(sizeof(FGameplayEffectCustomExecutionOutput) == 0x000018, "Wrong size on FGameplayEffectCustomExecutionOutput"); \ +static_assert(offsetof(FGameplayEffectCustomExecutionOutput, OutputModifiers) == 0x000000, "Member 'FGameplayEffectCustomExecutionOutput::OutputModifiers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotifyActorArray \ +static_assert(alignof(FGameplayCueNotifyActorArray) == 0x000008, "Wrong alignment on FGameplayCueNotifyActorArray"); \ +static_assert(sizeof(FGameplayCueNotifyActorArray) == 0x000010, "Wrong size on FGameplayCueNotifyActorArray"); \ +static_assert(offsetof(FGameplayCueNotifyActorArray, Actors) == 0x000000, "Member 'FGameplayCueNotifyActorArray::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPreallocationInfo \ +static_assert(alignof(FPreallocationInfo) == 0x000008, "Wrong alignment on FPreallocationInfo"); \ +static_assert(sizeof(FPreallocationInfo) == 0x000068, "Wrong size on FPreallocationInfo"); \ +static_assert(offsetof(FPreallocationInfo, PreallocatedInstances) == 0x000000, "Member 'FPreallocationInfo::PreallocatedInstances' has a wrong offset!"); \ +static_assert(offsetof(FPreallocationInfo, ClassesNeedingPreallocation) == 0x000050, "Member 'FPreallocationInfo::ClassesNeedingPreallocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectModifiedAttribute \ +static_assert(alignof(FGameplayEffectModifiedAttribute) == 0x000008, "Wrong alignment on FGameplayEffectModifiedAttribute"); \ +static_assert(sizeof(FGameplayEffectModifiedAttribute) == 0x000040, "Wrong size on FGameplayEffectModifiedAttribute"); \ +static_assert(offsetof(FGameplayEffectModifiedAttribute, Attribute) == 0x000000, "Member 'FGameplayEffectModifiedAttribute::Attribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectModifiedAttribute, TotalMagnitude) == 0x000038, "Member 'FGameplayEffectModifiedAttribute::TotalMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectAttributeCaptureDefinition \ +static_assert(alignof(FGameplayEffectAttributeCaptureDefinition) == 0x000008, "Wrong alignment on FGameplayEffectAttributeCaptureDefinition"); \ +static_assert(sizeof(FGameplayEffectAttributeCaptureDefinition) == 0x000040, "Wrong size on FGameplayEffectAttributeCaptureDefinition"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureDefinition, AttributeToCapture) == 0x000000, "Member 'FGameplayEffectAttributeCaptureDefinition::AttributeToCapture' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureDefinition, AttributeSource) == 0x000038, "Member 'FGameplayEffectAttributeCaptureDefinition::AttributeSource' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureDefinition, bSnapshot) == 0x000039, "Member 'FGameplayEffectAttributeCaptureDefinition::bSnapshot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectAttributeCaptureSpec \ +static_assert(alignof(FGameplayEffectAttributeCaptureSpec) == 0x000008, "Wrong alignment on FGameplayEffectAttributeCaptureSpec"); \ +static_assert(sizeof(FGameplayEffectAttributeCaptureSpec) == 0x000050, "Wrong size on FGameplayEffectAttributeCaptureSpec"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureSpec, BackingDefinition) == 0x000000, "Member 'FGameplayEffectAttributeCaptureSpec::BackingDefinition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectAttributeCaptureSpecContainer \ +static_assert(alignof(FGameplayEffectAttributeCaptureSpecContainer) == 0x000008, "Wrong alignment on FGameplayEffectAttributeCaptureSpecContainer"); \ +static_assert(sizeof(FGameplayEffectAttributeCaptureSpecContainer) == 0x000028, "Wrong size on FGameplayEffectAttributeCaptureSpecContainer"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureSpecContainer, SourceAttributes) == 0x000000, "Member 'FGameplayEffectAttributeCaptureSpecContainer::SourceAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureSpecContainer, TargetAttributes) == 0x000010, "Member 'FGameplayEffectAttributeCaptureSpecContainer::TargetAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectAttributeCaptureSpecContainer, bHasNonSnapshottedAttributes) == 0x000020, "Member 'FGameplayEffectAttributeCaptureSpecContainer::bHasNonSnapshottedAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTagContainerAggregator \ +static_assert(alignof(FTagContainerAggregator) == 0x000008, "Wrong alignment on FTagContainerAggregator"); \ +static_assert(sizeof(FTagContainerAggregator) == 0x000088, "Wrong size on FTagContainerAggregator"); \ +static_assert(offsetof(FTagContainerAggregator, CapturedActorTags) == 0x000000, "Member 'FTagContainerAggregator::CapturedActorTags' has a wrong offset!"); \ +static_assert(offsetof(FTagContainerAggregator, CapturedSpecTags) == 0x000020, "Member 'FTagContainerAggregator::CapturedSpecTags' has a wrong offset!"); \ +static_assert(offsetof(FTagContainerAggregator, ScopedTags) == 0x000040, "Member 'FTagContainerAggregator::ScopedTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModifierSpec \ +static_assert(alignof(FModifierSpec) == 0x000004, "Wrong alignment on FModifierSpec"); \ +static_assert(sizeof(FModifierSpec) == 0x000004, "Wrong size on FModifierSpec"); \ +static_assert(offsetof(FModifierSpec, EvaluatedMagnitude) == 0x000000, "Member 'FModifierSpec::EvaluatedMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScalableFloat \ +static_assert(alignof(FScalableFloat) == 0x000008, "Wrong alignment on FScalableFloat"); \ +static_assert(sizeof(FScalableFloat) == 0x000028, "Wrong size on FScalableFloat"); \ +static_assert(offsetof(FScalableFloat, Value) == 0x000000, "Member 'FScalableFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FScalableFloat, Curve) == 0x000008, "Member 'FScalableFloat::Curve' has a wrong offset!"); \ +static_assert(offsetof(FScalableFloat, RegistryType) == 0x000018, "Member 'FScalableFloat::RegistryType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpecHandle \ +static_assert(alignof(FGameplayAbilitySpecHandle) == 0x000004, "Wrong alignment on FGameplayAbilitySpecHandle"); \ +static_assert(sizeof(FGameplayAbilitySpecHandle) == 0x000004, "Wrong size on FGameplayAbilitySpecHandle"); \ +static_assert(offsetof(FGameplayAbilitySpecHandle, Handle) == 0x000000, "Member 'FGameplayAbilitySpecHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpecDef \ +static_assert(alignof(FGameplayAbilitySpecDef) == 0x000008, "Wrong alignment on FGameplayAbilitySpecDef"); \ +static_assert(sizeof(FGameplayAbilitySpecDef) == 0x000098, "Wrong size on FGameplayAbilitySpecDef"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, Ability) == 0x000000, "Member 'FGameplayAbilitySpecDef::Ability' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, LevelScalableFloat) == 0x000008, "Member 'FGameplayAbilitySpecDef::LevelScalableFloat' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, InputID) == 0x000030, "Member 'FGameplayAbilitySpecDef::InputID' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, RemovalPolicy) == 0x000034, "Member 'FGameplayAbilitySpecDef::RemovalPolicy' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, SourceObject) == 0x000038, "Member 'FGameplayAbilitySpecDef::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecDef, AssignedHandle) == 0x000090, "Member 'FGameplayAbilitySpecDef::AssignedHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectContextHandle \ +static_assert(alignof(FGameplayEffectContextHandle) == 0x000008, "Wrong alignment on FGameplayEffectContextHandle"); \ +static_assert(sizeof(FGameplayEffectContextHandle) == 0x000018, "Wrong size on FGameplayEffectContextHandle"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectSpec \ +static_assert(alignof(FGameplayEffectSpec) == 0x000008, "Wrong alignment on FGameplayEffectSpec"); \ +static_assert(sizeof(FGameplayEffectSpec) == 0x000298, "Wrong size on FGameplayEffectSpec"); \ +static_assert(offsetof(FGameplayEffectSpec, Def) == 0x000000, "Member 'FGameplayEffectSpec::Def' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, ModifiedAttributes) == 0x000008, "Member 'FGameplayEffectSpec::ModifiedAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, CapturedRelevantAttributes) == 0x000018, "Member 'FGameplayEffectSpec::CapturedRelevantAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, Duration) == 0x000050, "Member 'FGameplayEffectSpec::Duration' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, Period) == 0x000054, "Member 'FGameplayEffectSpec::Period' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, ChanceToApplyToTarget) == 0x000058, "Member 'FGameplayEffectSpec::ChanceToApplyToTarget' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, CapturedSourceTags) == 0x000060, "Member 'FGameplayEffectSpec::CapturedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, CapturedTargetTags) == 0x0000E8, "Member 'FGameplayEffectSpec::CapturedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, DynamicGrantedTags) == 0x000170, "Member 'FGameplayEffectSpec::DynamicGrantedTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, DynamicAssetTags) == 0x000190, "Member 'FGameplayEffectSpec::DynamicAssetTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, Modifiers) == 0x0001B0, "Member 'FGameplayEffectSpec::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, StackCount) == 0x0001C0, "Member 'FGameplayEffectSpec::StackCount' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, GrantedAbilitySpecs) == 0x0001C8, "Member 'FGameplayEffectSpec::GrantedAbilitySpecs' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, EffectContext) == 0x000278, "Member 'FGameplayEffectSpec::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpec, Level) == 0x000290, "Member 'FGameplayEffectSpec::Level' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPredictionKey \ +static_assert(alignof(FPredictionKey) == 0x000008, "Wrong alignment on FPredictionKey"); \ +static_assert(sizeof(FPredictionKey) == 0x000018, "Wrong size on FPredictionKey"); \ +static_assert(offsetof(FPredictionKey, PredictiveConnection) == 0x000000, "Member 'FPredictionKey::PredictiveConnection' has a wrong offset!"); \ +static_assert(offsetof(FPredictionKey, Current) == 0x000008, "Member 'FPredictionKey::Current' has a wrong offset!"); \ +static_assert(offsetof(FPredictionKey, base) == 0x00000A, "Member 'FPredictionKey::base' has a wrong offset!"); \ +static_assert(offsetof(FPredictionKey, bIsStale) == 0x00000C, "Member 'FPredictionKey::bIsStale' has a wrong offset!"); \ +static_assert(offsetof(FPredictionKey, bIsServerInitiated) == 0x00000D, "Member 'FPredictionKey::bIsServerInitiated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayEffect \ +static_assert(alignof(FActiveGameplayEffect) == 0x000008, "Wrong alignment on FActiveGameplayEffect"); \ +static_assert(sizeof(FActiveGameplayEffect) == 0x000368, "Wrong size on FActiveGameplayEffect"); \ +static_assert(offsetof(FActiveGameplayEffect, Spec) == 0x000018, "Member 'FActiveGameplayEffect::Spec' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, PredictionKey) == 0x0002B0, "Member 'FActiveGameplayEffect::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, GrantedAbilityHandles) == 0x0002C8, "Member 'FActiveGameplayEffect::GrantedAbilityHandles' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, StartServerWorldTime) == 0x0002D8, "Member 'FActiveGameplayEffect::StartServerWorldTime' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, CachedStartServerWorldTime) == 0x0002DC, "Member 'FActiveGameplayEffect::CachedStartServerWorldTime' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, StartWorldTime) == 0x0002E0, "Member 'FActiveGameplayEffect::StartWorldTime' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayEffect, bIsInhibited) == 0x0002E4, "Member 'FActiveGameplayEffect::bIsInhibited' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagRequirements \ +static_assert(alignof(FGameplayTagRequirements) == 0x000008, "Wrong alignment on FGameplayTagRequirements"); \ +static_assert(sizeof(FGameplayTagRequirements) == 0x000088, "Wrong size on FGameplayTagRequirements"); \ +static_assert(offsetof(FGameplayTagRequirements, RequireTags) == 0x000000, "Member 'FGameplayTagRequirements::RequireTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagRequirements, IgnoreTags) == 0x000020, "Member 'FGameplayTagRequirements::IgnoreTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagRequirements, TagQuery) == 0x000040, "Member 'FGameplayTagRequirements::TagQuery' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetData \ +static_assert(alignof(FGameplayAbilityTargetData) == 0x000008, "Wrong alignment on FGameplayAbilityTargetData"); \ +static_assert(sizeof(FGameplayAbilityTargetData) == 0x000008, "Wrong size on FGameplayAbilityTargetData"); \ + +#define DUMPER7_ASSERTS_FGameplayTargetDataFilterHandle \ +static_assert(alignof(FGameplayTargetDataFilterHandle) == 0x000008, "Wrong alignment on FGameplayTargetDataFilterHandle"); \ +static_assert(sizeof(FGameplayTargetDataFilterHandle) == 0x000010, "Wrong size on FGameplayTargetDataFilterHandle"); \ + +#define DUMPER7_ASSERTS_FGameplayCueObjectLibrary \ +static_assert(alignof(FGameplayCueObjectLibrary) == 0x000008, "Wrong alignment on FGameplayCueObjectLibrary"); \ +static_assert(sizeof(FGameplayCueObjectLibrary) == 0x000050, "Wrong size on FGameplayCueObjectLibrary"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, Paths) == 0x000000, "Member 'FGameplayCueObjectLibrary::Paths' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, ActorObjectLibrary) == 0x000030, "Member 'FGameplayCueObjectLibrary::ActorObjectLibrary' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, StaticObjectLibrary) == 0x000038, "Member 'FGameplayCueObjectLibrary::StaticObjectLibrary' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, CueSet) == 0x000040, "Member 'FGameplayCueObjectLibrary::CueSet' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, bShouldSyncScan) == 0x00004C, "Member 'FGameplayCueObjectLibrary::bShouldSyncScan' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, bShouldAsyncLoad) == 0x00004D, "Member 'FGameplayCueObjectLibrary::bShouldAsyncLoad' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, bShouldSyncLoad) == 0x00004E, "Member 'FGameplayCueObjectLibrary::bShouldSyncLoad' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueObjectLibrary, bHasBeenInitialized) == 0x00004F, "Member 'FGameplayCueObjectLibrary::bHasBeenInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityActivationInfo \ +static_assert(alignof(FGameplayAbilityActivationInfo) == 0x000008, "Wrong alignment on FGameplayAbilityActivationInfo"); \ +static_assert(sizeof(FGameplayAbilityActivationInfo) == 0x000020, "Wrong size on FGameplayAbilityActivationInfo"); \ +static_assert(offsetof(FGameplayAbilityActivationInfo, ActivationMode) == 0x000000, "Member 'FGameplayAbilityActivationInfo::ActivationMode' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActivationInfo, PredictionKeyWhenActivated) == 0x000008, "Member 'FGameplayAbilityActivationInfo::PredictionKeyWhenActivated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpec \ +static_assert(alignof(FGameplayAbilitySpec) == 0x000008, "Wrong alignment on FGameplayAbilitySpec"); \ +static_assert(sizeof(FGameplayAbilitySpec) == 0x0000F8, "Wrong size on FGameplayAbilitySpec"); \ +static_assert(offsetof(FGameplayAbilitySpec, Handle) == 0x00000C, "Member 'FGameplayAbilitySpec::Handle' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, Ability) == 0x000010, "Member 'FGameplayAbilitySpec::Ability' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, Level) == 0x000018, "Member 'FGameplayAbilitySpec::Level' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, InputID) == 0x00001C, "Member 'FGameplayAbilitySpec::InputID' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, SourceObject) == 0x000020, "Member 'FGameplayAbilitySpec::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, ActiveCount) == 0x000028, "Member 'FGameplayAbilitySpec::ActiveCount' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, ActivationInfo) == 0x000040, "Member 'FGameplayAbilitySpec::ActivationInfo' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, DynamicAbilityTags) == 0x000060, "Member 'FGameplayAbilitySpec::DynamicAbilityTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, NonReplicatedInstances) == 0x000080, "Member 'FGameplayAbilitySpec::NonReplicatedInstances' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, ReplicatedInstances) == 0x000090, "Member 'FGameplayAbilitySpec::ReplicatedInstances' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpec, GameplayEffectHandle) == 0x0000A0, "Member 'FGameplayAbilitySpec::GameplayEffectHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinimalGameplayCueReplicationProxyNetSerializerConfig \ +static_assert(alignof(FMinimalGameplayCueReplicationProxyNetSerializerConfig) == 0x000008, "Wrong alignment on FMinimalGameplayCueReplicationProxyNetSerializerConfig"); \ +static_assert(sizeof(FMinimalGameplayCueReplicationProxyNetSerializerConfig) == 0x000010, "Wrong size on FMinimalGameplayCueReplicationProxyNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FMinimalGameplayCueReplicationProxy \ +static_assert(alignof(FMinimalGameplayCueReplicationProxy) == 0x000010, "Wrong alignment on FMinimalGameplayCueReplicationProxy"); \ +static_assert(sizeof(FMinimalGameplayCueReplicationProxy) == 0x000350, "Wrong size on FMinimalGameplayCueReplicationProxy"); \ +static_assert(offsetof(FMinimalGameplayCueReplicationProxy, Owner) == 0x000340, "Member 'FMinimalGameplayCueReplicationProxy::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetData_SingleTargetHit \ +static_assert(alignof(FGameplayAbilityTargetData_SingleTargetHit) == 0x000008, "Wrong alignment on FGameplayAbilityTargetData_SingleTargetHit"); \ +static_assert(sizeof(FGameplayAbilityTargetData_SingleTargetHit) == 0x0000F8, "Wrong size on FGameplayAbilityTargetData_SingleTargetHit"); \ +static_assert(offsetof(FGameplayAbilityTargetData_SingleTargetHit, HitResult) == 0x000008, "Member 'FGameplayAbilityTargetData_SingleTargetHit::HitResult' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetData_SingleTargetHit, bHitReplaced) == 0x0000F0, "Member 'FGameplayAbilityTargetData_SingleTargetHit::bHitReplaced' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomCalculationBasedFloat \ +static_assert(alignof(FCustomCalculationBasedFloat) == 0x000008, "Wrong alignment on FCustomCalculationBasedFloat"); \ +static_assert(sizeof(FCustomCalculationBasedFloat) == 0x000090, "Wrong size on FCustomCalculationBasedFloat"); \ +static_assert(offsetof(FCustomCalculationBasedFloat, CalculationClassMagnitude) == 0x000000, "Member 'FCustomCalculationBasedFloat::CalculationClassMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FCustomCalculationBasedFloat, Coefficient) == 0x000008, "Member 'FCustomCalculationBasedFloat::Coefficient' has a wrong offset!"); \ +static_assert(offsetof(FCustomCalculationBasedFloat, PreMultiplyAdditiveValue) == 0x000030, "Member 'FCustomCalculationBasedFloat::PreMultiplyAdditiveValue' has a wrong offset!"); \ +static_assert(offsetof(FCustomCalculationBasedFloat, PostMultiplyAdditiveValue) == 0x000058, "Member 'FCustomCalculationBasedFloat::PostMultiplyAdditiveValue' has a wrong offset!"); \ +static_assert(offsetof(FCustomCalculationBasedFloat, FinalLookupCurve) == 0x000080, "Member 'FCustomCalculationBasedFloat::FinalLookupCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributeBasedFloat \ +static_assert(alignof(FAttributeBasedFloat) == 0x000008, "Wrong alignment on FAttributeBasedFloat"); \ +static_assert(sizeof(FAttributeBasedFloat) == 0x000110, "Wrong size on FAttributeBasedFloat"); \ +static_assert(offsetof(FAttributeBasedFloat, Coefficient) == 0x000000, "Member 'FAttributeBasedFloat::Coefficient' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, PreMultiplyAdditiveValue) == 0x000028, "Member 'FAttributeBasedFloat::PreMultiplyAdditiveValue' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, PostMultiplyAdditiveValue) == 0x000050, "Member 'FAttributeBasedFloat::PostMultiplyAdditiveValue' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, BackingAttribute) == 0x000078, "Member 'FAttributeBasedFloat::BackingAttribute' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, AttributeCurve) == 0x0000B8, "Member 'FAttributeBasedFloat::AttributeCurve' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, AttributeCalculationType) == 0x0000C8, "Member 'FAttributeBasedFloat::AttributeCalculationType' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, FinalChannel) == 0x0000C9, "Member 'FAttributeBasedFloat::FinalChannel' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, SourceTagFilter) == 0x0000D0, "Member 'FAttributeBasedFloat::SourceTagFilter' has a wrong offset!"); \ +static_assert(offsetof(FAttributeBasedFloat, TargetTagFilter) == 0x0000F0, "Member 'FAttributeBasedFloat::TargetTagFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetByCallerFloat \ +static_assert(alignof(FSetByCallerFloat) == 0x000004, "Wrong alignment on FSetByCallerFloat"); \ +static_assert(sizeof(FSetByCallerFloat) == 0x000010, "Wrong size on FSetByCallerFloat"); \ +static_assert(offsetof(FSetByCallerFloat, DataName) == 0x000000, "Member 'FSetByCallerFloat::DataName' has a wrong offset!"); \ +static_assert(offsetof(FSetByCallerFloat, DataTag) == 0x000008, "Member 'FSetByCallerFloat::DataTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectModifierMagnitude \ +static_assert(alignof(FGameplayEffectModifierMagnitude) == 0x000008, "Wrong alignment on FGameplayEffectModifierMagnitude"); \ +static_assert(sizeof(FGameplayEffectModifierMagnitude) == 0x0001E0, "Wrong size on FGameplayEffectModifierMagnitude"); \ +static_assert(offsetof(FGameplayEffectModifierMagnitude, MagnitudeCalculationType) == 0x000000, "Member 'FGameplayEffectModifierMagnitude::MagnitudeCalculationType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectModifierMagnitude, ScalableFloatMagnitude) == 0x000008, "Member 'FGameplayEffectModifierMagnitude::ScalableFloatMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectModifierMagnitude, AttributeBasedMagnitude) == 0x000030, "Member 'FGameplayEffectModifierMagnitude::AttributeBasedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectModifierMagnitude, CustomMagnitude) == 0x000140, "Member 'FGameplayEffectModifierMagnitude::CustomMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectModifierMagnitude, SetByCallerMagnitude) == 0x0001D0, "Member 'FGameplayEffectModifierMagnitude::SetByCallerMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayModEvaluationChannelSettings \ +static_assert(alignof(FGameplayModEvaluationChannelSettings) == 0x000001, "Wrong alignment on FGameplayModEvaluationChannelSettings"); \ +static_assert(sizeof(FGameplayModEvaluationChannelSettings) == 0x000001, "Wrong size on FGameplayModEvaluationChannelSettings"); \ +static_assert(offsetof(FGameplayModEvaluationChannelSettings, Channel) == 0x000000, "Member 'FGameplayModEvaluationChannelSettings::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectExecutionScopedModifierInfo \ +static_assert(alignof(FGameplayEffectExecutionScopedModifierInfo) == 0x000008, "Wrong alignment on FGameplayEffectExecutionScopedModifierInfo"); \ +static_assert(sizeof(FGameplayEffectExecutionScopedModifierInfo) == 0x000348, "Wrong size on FGameplayEffectExecutionScopedModifierInfo"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, CapturedAttribute) == 0x000000, "Member 'FGameplayEffectExecutionScopedModifierInfo::CapturedAttribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, TransientAggregatorIdentifier) == 0x000040, "Member 'FGameplayEffectExecutionScopedModifierInfo::TransientAggregatorIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, AggregatorType) == 0x000048, "Member 'FGameplayEffectExecutionScopedModifierInfo::AggregatorType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, ModifierOp) == 0x000049, "Member 'FGameplayEffectExecutionScopedModifierInfo::ModifierOp' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, ModifierMagnitude) == 0x000050, "Member 'FGameplayEffectExecutionScopedModifierInfo::ModifierMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, EvaluationChannelSettings) == 0x000230, "Member 'FGameplayEffectExecutionScopedModifierInfo::EvaluationChannelSettings' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, SourceTags) == 0x000238, "Member 'FGameplayEffectExecutionScopedModifierInfo::SourceTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionScopedModifierInfo, TargetTags) == 0x0002C0, "Member 'FGameplayEffectExecutionScopedModifierInfo::TargetTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinimalReplicationTagCountMapForNetSerializer \ +static_assert(alignof(FMinimalReplicationTagCountMapForNetSerializer) == 0x000008, "Wrong alignment on FMinimalReplicationTagCountMapForNetSerializer"); \ +static_assert(sizeof(FMinimalReplicationTagCountMapForNetSerializer) == 0x000010, "Wrong size on FMinimalReplicationTagCountMapForNetSerializer"); \ +static_assert(offsetof(FMinimalReplicationTagCountMapForNetSerializer, Tags) == 0x000000, "Member 'FMinimalReplicationTagCountMapForNetSerializer::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpecHandleAndPredictionKey \ +static_assert(alignof(FGameplayAbilitySpecHandleAndPredictionKey) == 0x000004, "Wrong alignment on FGameplayAbilitySpecHandleAndPredictionKey"); \ +static_assert(sizeof(FGameplayAbilitySpecHandleAndPredictionKey) == 0x000008, "Wrong size on FGameplayAbilitySpecHandleAndPredictionKey"); \ +static_assert(offsetof(FGameplayAbilitySpecHandleAndPredictionKey, AbilityHandle) == 0x000000, "Member 'FGameplayAbilitySpecHandleAndPredictionKey::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecHandleAndPredictionKey, PredictionKeyAtCreation) == 0x000004, "Member 'FGameplayAbilitySpecHandleAndPredictionKey::PredictionKeyAtCreation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpecConfig \ +static_assert(alignof(FGameplayAbilitySpecConfig) == 0x000008, "Wrong alignment on FGameplayAbilitySpecConfig"); \ +static_assert(sizeof(FGameplayAbilitySpecConfig) == 0x000038, "Wrong size on FGameplayAbilitySpecConfig"); \ +static_assert(offsetof(FGameplayAbilitySpecConfig, Ability) == 0x000000, "Member 'FGameplayAbilitySpecConfig::Ability' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecConfig, LevelScalableFloat) == 0x000008, "Member 'FGameplayAbilitySpecConfig::LevelScalableFloat' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecConfig, InputID) == 0x000030, "Member 'FGameplayAbilitySpecConfig::InputID' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecConfig, RemovalPolicy) == 0x000034, "Member 'FGameplayAbilitySpecConfig::RemovalPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_SpawnCondition \ +static_assert(alignof(FGameplayCueNotify_SpawnCondition) == 0x000008, "Wrong alignment on FGameplayCueNotify_SpawnCondition"); \ +static_assert(sizeof(FGameplayCueNotify_SpawnCondition) == 0x000038, "Wrong size on FGameplayCueNotify_SpawnCondition"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnCondition, LocallyControlledSource) == 0x000000, "Member 'FGameplayCueNotify_SpawnCondition::LocallyControlledSource' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnCondition, LocallyControlledPolicy) == 0x000001, "Member 'FGameplayCueNotify_SpawnCondition::LocallyControlledPolicy' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnCondition, ChanceToPlay) == 0x000004, "Member 'FGameplayCueNotify_SpawnCondition::ChanceToPlay' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnCondition, AllowedSurfaceTypes) == 0x000008, "Member 'FGameplayCueNotify_SpawnCondition::AllowedSurfaceTypes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnCondition, RejectedSurfaceTypes) == 0x000020, "Member 'FGameplayCueNotify_SpawnCondition::RejectedSurfaceTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueTranslationLink \ +static_assert(alignof(FGameplayCueTranslationLink) == 0x000008, "Wrong alignment on FGameplayCueTranslationLink"); \ +static_assert(sizeof(FGameplayCueTranslationLink) == 0x000018, "Wrong size on FGameplayCueTranslationLink"); \ +static_assert(offsetof(FGameplayCueTranslationLink, RulesCDO) == 0x000000, "Member 'FGameplayCueTranslationLink::RulesCDO' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueTranslatorNodeIndex \ +static_assert(alignof(FGameplayCueTranslatorNodeIndex) == 0x000004, "Wrong alignment on FGameplayCueTranslatorNodeIndex"); \ +static_assert(sizeof(FGameplayCueTranslatorNodeIndex) == 0x000004, "Wrong size on FGameplayCueTranslatorNodeIndex"); \ +static_assert(offsetof(FGameplayCueTranslatorNodeIndex, Index) == 0x000000, "Member 'FGameplayCueTranslatorNodeIndex::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueTranslatorNode \ +static_assert(alignof(FGameplayCueTranslatorNode) == 0x000008, "Wrong alignment on FGameplayCueTranslatorNode"); \ +static_assert(sizeof(FGameplayCueTranslatorNode) == 0x000078, "Wrong size on FGameplayCueTranslatorNode"); \ +static_assert(offsetof(FGameplayCueTranslatorNode, Links) == 0x000000, "Member 'FGameplayCueTranslatorNode::Links' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueTranslatorNode, CachedIndex) == 0x000010, "Member 'FGameplayCueTranslatorNode::CachedIndex' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueTranslatorNode, CachedGameplayTag) == 0x000014, "Member 'FGameplayCueTranslatorNode::CachedGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueTranslatorNode, CachedGameplayTagName) == 0x00001C, "Member 'FGameplayCueTranslatorNode::CachedGameplayTagName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetDataHandle \ +static_assert(alignof(FGameplayAbilityTargetDataHandle) == 0x000008, "Wrong alignment on FGameplayAbilityTargetDataHandle"); \ +static_assert(sizeof(FGameplayAbilityTargetDataHandle) == 0x000028, "Wrong size on FGameplayAbilityTargetDataHandle"); \ + +#define DUMPER7_ASSERTS_GameplayAbilities__FServerAbilityRPCBatch \ +static_assert(alignof(GameplayAbilities::FServerAbilityRPCBatch) == 0x000008, "Wrong alignment on GameplayAbilities::FServerAbilityRPCBatch"); \ +static_assert(sizeof(GameplayAbilities::FServerAbilityRPCBatch) == 0x000050, "Wrong size on GameplayAbilities::FServerAbilityRPCBatch"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, AbilitySpecHandle) == 0x000000, "Member 'GameplayAbilities::FServerAbilityRPCBatch::AbilitySpecHandle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, PredictionKey) == 0x000008, "Member 'GameplayAbilities::FServerAbilityRPCBatch::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, TargetData) == 0x000020, "Member 'GameplayAbilities::FServerAbilityRPCBatch::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, InputPressed) == 0x000048, "Member 'GameplayAbilities::FServerAbilityRPCBatch::InputPressed' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, Ended) == 0x000049, "Member 'GameplayAbilities::FServerAbilityRPCBatch::Ended' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilities::FServerAbilityRPCBatch, Started) == 0x00004A, "Member 'GameplayAbilities::FServerAbilityRPCBatch::Started' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectSpecHandle \ +static_assert(alignof(FGameplayEffectSpecHandle) == 0x000008, "Wrong alignment on FGameplayEffectSpecHandle"); \ +static_assert(sizeof(FGameplayEffectSpecHandle) == 0x000010, "Wrong size on FGameplayEffectSpecHandle"); \ + +#define DUMPER7_ASSERTS_FGameplayCueParameters \ +static_assert(alignof(FGameplayCueParameters) == 0x000008, "Wrong alignment on FGameplayCueParameters"); \ +static_assert(sizeof(FGameplayCueParameters) == 0x0000D8, "Wrong size on FGameplayCueParameters"); \ +static_assert(offsetof(FGameplayCueParameters, NormalizedMagnitude) == 0x000000, "Member 'FGameplayCueParameters::NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, RawMagnitude) == 0x000004, "Member 'FGameplayCueParameters::RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, EffectContext) == 0x000008, "Member 'FGameplayCueParameters::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, MatchedTagName) == 0x000020, "Member 'FGameplayCueParameters::MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, OriginalTag) == 0x000028, "Member 'FGameplayCueParameters::OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, AggregatedSourceTags) == 0x000030, "Member 'FGameplayCueParameters::AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, AggregatedTargetTags) == 0x000050, "Member 'FGameplayCueParameters::AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, Location) == 0x000070, "Member 'FGameplayCueParameters::Location' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, Normal) == 0x000088, "Member 'FGameplayCueParameters::Normal' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, Instigator) == 0x0000A0, "Member 'FGameplayCueParameters::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, EffectCauser) == 0x0000A8, "Member 'FGameplayCueParameters::EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, SourceObject) == 0x0000B0, "Member 'FGameplayCueParameters::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, PhysicalMaterial) == 0x0000B8, "Member 'FGameplayCueParameters::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, GameplayEffectLevel) == 0x0000C0, "Member 'FGameplayCueParameters::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, AbilityLevel) == 0x0000C4, "Member 'FGameplayCueParameters::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, TargetAttachComponent) == 0x0000C8, "Member 'FGameplayCueParameters::TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueParameters, bReplicateLocationWhenUsingMinimalRepProxy) == 0x0000D0, "Member 'FGameplayCueParameters::bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectRemovalInfo \ +static_assert(alignof(FGameplayEffectRemovalInfo) == 0x000008, "Wrong alignment on FGameplayEffectRemovalInfo"); \ +static_assert(sizeof(FGameplayEffectRemovalInfo) == 0x000028, "Wrong size on FGameplayEffectRemovalInfo"); \ +static_assert(offsetof(FGameplayEffectRemovalInfo, bPrematureRemoval) == 0x000000, "Member 'FGameplayEffectRemovalInfo::bPrematureRemoval' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectRemovalInfo, StackCount) == 0x000004, "Member 'FGameplayEffectRemovalInfo::StackCount' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectRemovalInfo, EffectContext) == 0x000008, "Member 'FGameplayEffectRemovalInfo::EffectContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagReponsePair \ +static_assert(alignof(FGameplayTagReponsePair) == 0x000008, "Wrong alignment on FGameplayTagReponsePair"); \ +static_assert(sizeof(FGameplayTagReponsePair) == 0x000028, "Wrong size on FGameplayTagReponsePair"); \ +static_assert(offsetof(FGameplayTagReponsePair, Tag) == 0x000000, "Member 'FGameplayTagReponsePair::Tag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagReponsePair, ResponseGameplayEffect) == 0x000008, "Member 'FGameplayTagReponsePair::ResponseGameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagReponsePair, ResponseGameplayEffects) == 0x000010, "Member 'FGameplayTagReponsePair::ResponseGameplayEffects' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagReponsePair, SoftCountCap) == 0x000020, "Member 'FGameplayTagReponsePair::SoftCountCap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEventData \ +static_assert(alignof(FGameplayEventData) == 0x000008, "Wrong alignment on FGameplayEventData"); \ +static_assert(sizeof(FGameplayEventData) == 0x0000B0, "Wrong size on FGameplayEventData"); \ +static_assert(offsetof(FGameplayEventData, EventTag) == 0x000000, "Member 'FGameplayEventData::EventTag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, Instigator) == 0x000008, "Member 'FGameplayEventData::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, Target) == 0x000010, "Member 'FGameplayEventData::Target' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, OptionalObject) == 0x000018, "Member 'FGameplayEventData::OptionalObject' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, OptionalObject2) == 0x000020, "Member 'FGameplayEventData::OptionalObject2' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, ContextHandle) == 0x000028, "Member 'FGameplayEventData::ContextHandle' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, InstigatorTags) == 0x000040, "Member 'FGameplayEventData::InstigatorTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, TargetTags) == 0x000060, "Member 'FGameplayEventData::TargetTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, EventMagnitude) == 0x000080, "Member 'FGameplayEventData::EventMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEventData, TargetData) == 0x000088, "Member 'FGameplayEventData::TargetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayCue \ +static_assert(alignof(FActiveGameplayCue) == 0x000008, "Wrong alignment on FActiveGameplayCue"); \ +static_assert(sizeof(FActiveGameplayCue) == 0x000110, "Wrong size on FActiveGameplayCue"); \ +static_assert(offsetof(FActiveGameplayCue, GameplayCueTag) == 0x00000C, "Member 'FActiveGameplayCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayCue, PredictionKey) == 0x000018, "Member 'FActiveGameplayCue::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayCue, Parameters) == 0x000030, "Member 'FActiveGameplayCue::Parameters' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayCue, bPredictivelyRemoved) == 0x000108, "Member 'FActiveGameplayCue::bPredictivelyRemoved' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayCueContainer \ +static_assert(alignof(FActiveGameplayCueContainer) == 0x000008, "Wrong alignment on FActiveGameplayCueContainer"); \ +static_assert(sizeof(FActiveGameplayCueContainer) == 0x000128, "Wrong size on FActiveGameplayCueContainer"); \ +static_assert(offsetof(FActiveGameplayCueContainer, GameplayCues) == 0x000108, "Member 'FActiveGameplayCueContainer::GameplayCues' has a wrong offset!"); \ +static_assert(offsetof(FActiveGameplayCueContainer, Owner) == 0x000120, "Member 'FActiveGameplayCueContainer::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectQuery \ +static_assert(alignof(FGameplayEffectQuery) == 0x000008, "Wrong alignment on FGameplayEffectQuery"); \ +static_assert(sizeof(FGameplayEffectQuery) == 0x000198, "Wrong size on FGameplayEffectQuery"); \ +static_assert(offsetof(FGameplayEffectQuery, CustomMatchDelegate_BP) == 0x000010, "Member 'FGameplayEffectQuery::CustomMatchDelegate_BP' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, OwningTagQuery) == 0x000020, "Member 'FGameplayEffectQuery::OwningTagQuery' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, EffectTagQuery) == 0x000068, "Member 'FGameplayEffectQuery::EffectTagQuery' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, SourceTagQuery) == 0x0000B0, "Member 'FGameplayEffectQuery::SourceTagQuery' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, SourceAggregateTagQuery) == 0x0000F8, "Member 'FGameplayEffectQuery::SourceAggregateTagQuery' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, ModifyingAttribute) == 0x000140, "Member 'FGameplayEffectQuery::ModifyingAttribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, EffectSource) == 0x000178, "Member 'FGameplayEffectQuery::EffectSource' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectQuery, EffectDefinition) == 0x000180, "Member 'FGameplayEffectQuery::EffectDefinition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectSpecForRPC \ +static_assert(alignof(FGameplayEffectSpecForRPC) == 0x000008, "Wrong alignment on FGameplayEffectSpecForRPC"); \ +static_assert(sizeof(FGameplayEffectSpecForRPC) == 0x000078, "Wrong size on FGameplayEffectSpecForRPC"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, Def) == 0x000000, "Member 'FGameplayEffectSpecForRPC::Def' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, ModifiedAttributes) == 0x000008, "Member 'FGameplayEffectSpecForRPC::ModifiedAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, EffectContext) == 0x000018, "Member 'FGameplayEffectSpecForRPC::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, AggregatedSourceTags) == 0x000030, "Member 'FGameplayEffectSpecForRPC::AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, AggregatedTargetTags) == 0x000050, "Member 'FGameplayEffectSpecForRPC::AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, Level) == 0x000070, "Member 'FGameplayEffectSpecForRPC::Level' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectSpecForRPC, AbilityLevel) == 0x000074, "Member 'FGameplayEffectSpecForRPC::AbilityLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedPredictionKeyItem \ +static_assert(alignof(FReplicatedPredictionKeyItem) == 0x000008, "Wrong alignment on FReplicatedPredictionKeyItem"); \ +static_assert(sizeof(FReplicatedPredictionKeyItem) == 0x000028, "Wrong size on FReplicatedPredictionKeyItem"); \ +static_assert(offsetof(FReplicatedPredictionKeyItem, PredictionKey) == 0x000010, "Member 'FReplicatedPredictionKeyItem::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedPredictionKeyMap \ +static_assert(alignof(FReplicatedPredictionKeyMap) == 0x000008, "Wrong alignment on FReplicatedPredictionKeyMap"); \ +static_assert(sizeof(FReplicatedPredictionKeyMap) == 0x000118, "Wrong size on FReplicatedPredictionKeyMap"); \ +static_assert(offsetof(FReplicatedPredictionKeyMap, PredictionKeys) == 0x000108, "Member 'FReplicatedPredictionKeyMap::PredictionKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetingLocationInfo \ +static_assert(alignof(FGameplayAbilityTargetingLocationInfo) == 0x000010, "Wrong alignment on FGameplayAbilityTargetingLocationInfo"); \ +static_assert(sizeof(FGameplayAbilityTargetingLocationInfo) == 0x0000A0, "Wrong size on FGameplayAbilityTargetingLocationInfo"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, LocationType) == 0x000010, "Member 'FGameplayAbilityTargetingLocationInfo::LocationType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, LiteralTransform) == 0x000020, "Member 'FGameplayAbilityTargetingLocationInfo::LiteralTransform' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, SourceActor) == 0x000080, "Member 'FGameplayAbilityTargetingLocationInfo::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, SourceComponent) == 0x000088, "Member 'FGameplayAbilityTargetingLocationInfo::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, SourceAbility) == 0x000090, "Member 'FGameplayAbilityTargetingLocationInfo::SourceAbility' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetingLocationInfo, SourceSocketName) == 0x000098, "Member 'FGameplayAbilityTargetingLocationInfo::SourceSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetData_ActorArray \ +static_assert(alignof(FGameplayAbilityTargetData_ActorArray) == 0x000010, "Wrong alignment on FGameplayAbilityTargetData_ActorArray"); \ +static_assert(sizeof(FGameplayAbilityTargetData_ActorArray) == 0x0000C0, "Wrong size on FGameplayAbilityTargetData_ActorArray"); \ +static_assert(offsetof(FGameplayAbilityTargetData_ActorArray, SourceLocation) == 0x000010, "Member 'FGameplayAbilityTargetData_ActorArray::SourceLocation' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetData_ActorArray, TargetActorArray) == 0x0000B0, "Member 'FGameplayAbilityTargetData_ActorArray::TargetActorArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagBlueprintPropertyMapping \ +static_assert(alignof(FGameplayTagBlueprintPropertyMapping) == 0x000008, "Wrong alignment on FGameplayTagBlueprintPropertyMapping"); \ +static_assert(sizeof(FGameplayTagBlueprintPropertyMapping) == 0x000048, "Wrong size on FGameplayTagBlueprintPropertyMapping"); \ +static_assert(offsetof(FGameplayTagBlueprintPropertyMapping, TagToMap) == 0x000000, "Member 'FGameplayTagBlueprintPropertyMapping::TagToMap' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagBlueprintPropertyMapping, PropertyToEdit) == 0x000008, "Member 'FGameplayTagBlueprintPropertyMapping::PropertyToEdit' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagBlueprintPropertyMapping, PropertyName) == 0x000028, "Member 'FGameplayTagBlueprintPropertyMapping::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagBlueprintPropertyMapping, PropertyGuid) == 0x000030, "Member 'FGameplayTagBlueprintPropertyMapping::PropertyGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagBlueprintPropertyMap \ +static_assert(alignof(FGameplayTagBlueprintPropertyMap) == 0x000008, "Wrong alignment on FGameplayTagBlueprintPropertyMap"); \ +static_assert(sizeof(FGameplayTagBlueprintPropertyMap) == 0x000020, "Wrong size on FGameplayTagBlueprintPropertyMap"); \ +static_assert(offsetof(FGameplayTagBlueprintPropertyMap, PropertyMappings) == 0x000010, "Member 'FGameplayTagBlueprintPropertyMap::PropertyMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinimalReplicationTagCountMap \ +static_assert(alignof(FMinimalReplicationTagCountMap) == 0x000008, "Wrong alignment on FMinimalReplicationTagCountMap"); \ +static_assert(sizeof(FMinimalReplicationTagCountMap) == 0x000060, "Wrong size on FMinimalReplicationTagCountMap"); \ +static_assert(offsetof(FMinimalReplicationTagCountMap, Owner) == 0x000050, "Member 'FMinimalReplicationTagCountMap::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAbilityEndedData \ +static_assert(alignof(FAbilityEndedData) == 0x000008, "Wrong alignment on FAbilityEndedData"); \ +static_assert(sizeof(FAbilityEndedData) == 0x000010, "Wrong size on FAbilityEndedData"); \ +static_assert(offsetof(FAbilityEndedData, AbilityThatEnded) == 0x000000, "Member 'FAbilityEndedData::AbilityThatEnded' has a wrong offset!"); \ +static_assert(offsetof(FAbilityEndedData, AbilitySpecHandle) == 0x000008, "Member 'FAbilityEndedData::AbilitySpecHandle' has a wrong offset!"); \ +static_assert(offsetof(FAbilityEndedData, bReplicateEndAbility) == 0x00000C, "Member 'FAbilityEndedData::bReplicateEndAbility' has a wrong offset!"); \ +static_assert(offsetof(FAbilityEndedData, bWasCancelled) == 0x00000D, "Member 'FAbilityEndedData::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAbilityTaskDebugMessage \ +static_assert(alignof(FAbilityTaskDebugMessage) == 0x000008, "Wrong alignment on FAbilityTaskDebugMessage"); \ +static_assert(sizeof(FAbilityTaskDebugMessage) == 0x000018, "Wrong size on FAbilityTaskDebugMessage"); \ +static_assert(offsetof(FAbilityTaskDebugMessage, FromTask) == 0x000000, "Member 'FAbilityTaskDebugMessage::FromTask' has a wrong offset!"); \ +static_assert(offsetof(FAbilityTaskDebugMessage, Message) == 0x000008, "Member 'FAbilityTaskDebugMessage::Message' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayEffectsContainer \ +static_assert(alignof(FActiveGameplayEffectsContainer) == 0x000008, "Wrong alignment on FActiveGameplayEffectsContainer"); \ +static_assert(sizeof(FActiveGameplayEffectsContainer) == 0x0002F8, "Wrong size on FActiveGameplayEffectsContainer"); \ +static_assert(offsetof(FActiveGameplayEffectsContainer, GameplayEffects_Internal) == 0x000130, "Member 'FActiveGameplayEffectsContainer::GameplayEffects_Internal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityLocalAnimMontage \ +static_assert(alignof(FGameplayAbilityLocalAnimMontage) == 0x000008, "Wrong alignment on FGameplayAbilityLocalAnimMontage"); \ +static_assert(sizeof(FGameplayAbilityLocalAnimMontage) == 0x000030, "Wrong size on FGameplayAbilityLocalAnimMontage"); \ +static_assert(offsetof(FGameplayAbilityLocalAnimMontage, AnimMontage) == 0x000000, "Member 'FGameplayAbilityLocalAnimMontage::AnimMontage' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityLocalAnimMontage, PlayInstanceId) == 0x000008, "Member 'FGameplayAbilityLocalAnimMontage::PlayInstanceId' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityLocalAnimMontage, PredictionKey) == 0x000010, "Member 'FGameplayAbilityLocalAnimMontage::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityLocalAnimMontage, AnimatingAbility) == 0x000028, "Member 'FGameplayAbilityLocalAnimMontage::AnimatingAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagResponseTableEntry \ +static_assert(alignof(FGameplayTagResponseTableEntry) == 0x000008, "Wrong alignment on FGameplayTagResponseTableEntry"); \ +static_assert(sizeof(FGameplayTagResponseTableEntry) == 0x000050, "Wrong size on FGameplayTagResponseTableEntry"); \ +static_assert(offsetof(FGameplayTagResponseTableEntry, Positive) == 0x000000, "Member 'FGameplayTagResponseTableEntry::Positive' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagResponseTableEntry, Negative) == 0x000028, "Member 'FGameplayTagResponseTableEntry::Negative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueTag \ +static_assert(alignof(FGameplayCueTag) == 0x000004, "Wrong alignment on FGameplayCueTag"); \ +static_assert(sizeof(FGameplayCueTag) == 0x000008, "Wrong size on FGameplayCueTag"); \ +static_assert(offsetof(FGameplayCueTag, GameplayCueTag) == 0x000000, "Member 'FGameplayCueTag::GameplayCueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityRepAnimMontage \ +static_assert(alignof(FGameplayAbilityRepAnimMontage) == 0x000008, "Wrong alignment on FGameplayAbilityRepAnimMontage"); \ +static_assert(sizeof(FGameplayAbilityRepAnimMontage) == 0x000038, "Wrong size on FGameplayAbilityRepAnimMontage"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, AnimMontage) == 0x000000, "Member 'FGameplayAbilityRepAnimMontage::AnimMontage' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, PlayRate) == 0x000008, "Member 'FGameplayAbilityRepAnimMontage::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, Position) == 0x00000C, "Member 'FGameplayAbilityRepAnimMontage::Position' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, BlendTime) == 0x000010, "Member 'FGameplayAbilityRepAnimMontage::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, NextSectionID) == 0x000014, "Member 'FGameplayAbilityRepAnimMontage::NextSectionID' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, PlayInstanceId) == 0x000015, "Member 'FGameplayAbilityRepAnimMontage::PlayInstanceId' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, PredictionKey) == 0x000018, "Member 'FGameplayAbilityRepAnimMontage::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityRepAnimMontage, SectionIdToPlay) == 0x000030, "Member 'FGameplayAbilityRepAnimMontage::SectionIdToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilitySpecContainer \ +static_assert(alignof(FGameplayAbilitySpecContainer) == 0x000008, "Wrong alignment on FGameplayAbilitySpecContainer"); \ +static_assert(sizeof(FGameplayAbilitySpecContainer) == 0x000120, "Wrong size on FGameplayAbilitySpecContainer"); \ +static_assert(offsetof(FGameplayAbilitySpecContainer, Items) == 0x000108, "Member 'FGameplayAbilitySpecContainer::Items' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilitySpecContainer, Owner) == 0x000118, "Member 'FGameplayAbilitySpecContainer::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributeDefaults \ +static_assert(alignof(FAttributeDefaults) == 0x000008, "Wrong alignment on FAttributeDefaults"); \ +static_assert(sizeof(FAttributeDefaults) == 0x000010, "Wrong size on FAttributeDefaults"); \ +static_assert(offsetof(FAttributeDefaults, Attributes) == 0x000000, "Member 'FAttributeDefaults::Attributes' has a wrong offset!"); \ +static_assert(offsetof(FAttributeDefaults, DefaultStartingTable) == 0x000008, "Member 'FAttributeDefaults::DefaultStartingTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTargetDataFilter \ +static_assert(alignof(FGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FGameplayTargetDataFilter"); \ +static_assert(sizeof(FGameplayTargetDataFilter) == 0x000020, "Wrong size on FGameplayTargetDataFilter"); \ +static_assert(offsetof(FGameplayTargetDataFilter, SelfActor) == 0x000008, "Member 'FGameplayTargetDataFilter::SelfActor' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTargetDataFilter, RequiredActorClass) == 0x000010, "Member 'FGameplayTargetDataFilter::RequiredActorClass' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTargetDataFilter, SelfFilter) == 0x000018, "Member 'FGameplayTargetDataFilter::SelfFilter' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTargetDataFilter, bReverseFilter) == 0x000019, "Member 'FGameplayTargetDataFilter::bReverseFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetingLocationInfoNetSerializerConfig \ +static_assert(alignof(FGameplayAbilityTargetingLocationInfoNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayAbilityTargetingLocationInfoNetSerializerConfig"); \ +static_assert(sizeof(FGameplayAbilityTargetingLocationInfoNetSerializerConfig) == 0x000010, "Wrong size on FGameplayAbilityTargetingLocationInfoNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGameplayCuePendingExecute \ +static_assert(alignof(FGameplayCuePendingExecute) == 0x000008, "Wrong alignment on FGameplayCuePendingExecute"); \ +static_assert(sizeof(FGameplayCuePendingExecute) == 0x000190, "Wrong size on FGameplayCuePendingExecute"); \ +static_assert(offsetof(FGameplayCuePendingExecute, PredictionKey) == 0x000018, "Member 'FGameplayCuePendingExecute::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCuePendingExecute, PayloadType) == 0x000030, "Member 'FGameplayCuePendingExecute::PayloadType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCuePendingExecute, OwningComponent) == 0x000038, "Member 'FGameplayCuePendingExecute::OwningComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCuePendingExecute, FromSpec) == 0x000040, "Member 'FGameplayCuePendingExecute::FromSpec' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCuePendingExecute, CueParameters) == 0x0000B8, "Member 'FGameplayCuePendingExecute::CueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinimalGameplayCueReplicationProxyForNetSerializer \ +static_assert(alignof(FMinimalGameplayCueReplicationProxyForNetSerializer) == 0x000008, "Wrong alignment on FMinimalGameplayCueReplicationProxyForNetSerializer"); \ +static_assert(sizeof(FMinimalGameplayCueReplicationProxyForNetSerializer) == 0x000020, "Wrong size on FMinimalGameplayCueReplicationProxyForNetSerializer"); \ +static_assert(offsetof(FMinimalGameplayCueReplicationProxyForNetSerializer, Tags) == 0x000000, "Member 'FMinimalGameplayCueReplicationProxyForNetSerializer::Tags' has a wrong offset!"); \ +static_assert(offsetof(FMinimalGameplayCueReplicationProxyForNetSerializer, Locations) == 0x000010, "Member 'FMinimalGameplayCueReplicationProxyForNetSerializer::Locations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAbilityTriggerData \ +static_assert(alignof(FAbilityTriggerData) == 0x000004, "Wrong alignment on FAbilityTriggerData"); \ +static_assert(sizeof(FAbilityTriggerData) == 0x00000C, "Wrong size on FAbilityTriggerData"); \ +static_assert(offsetof(FAbilityTriggerData, TriggerTag) == 0x000000, "Member 'FAbilityTriggerData::TriggerTag' has a wrong offset!"); \ +static_assert(offsetof(FAbilityTriggerData, TriggerSource) == 0x000008, "Member 'FAbilityTriggerData::TriggerSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityBindInfo \ +static_assert(alignof(FGameplayAbilityBindInfo) == 0x000008, "Wrong alignment on FGameplayAbilityBindInfo"); \ +static_assert(sizeof(FGameplayAbilityBindInfo) == 0x000010, "Wrong size on FGameplayAbilityBindInfo"); \ +static_assert(offsetof(FGameplayAbilityBindInfo, Command) == 0x000000, "Member 'FGameplayAbilityBindInfo::Command' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityBindInfo, GameplayAbilityClass) == 0x000008, "Member 'FGameplayAbilityBindInfo::GameplayAbilityClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldReticleParameters \ +static_assert(alignof(FWorldReticleParameters) == 0x000008, "Wrong alignment on FWorldReticleParameters"); \ +static_assert(sizeof(FWorldReticleParameters) == 0x000018, "Wrong size on FWorldReticleParameters"); \ +static_assert(offsetof(FWorldReticleParameters, AOEScale) == 0x000000, "Member 'FWorldReticleParameters::AOEScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetSerializeScriptStructCache \ +static_assert(alignof(FNetSerializeScriptStructCache) == 0x000008, "Wrong alignment on FNetSerializeScriptStructCache"); \ +static_assert(sizeof(FNetSerializeScriptStructCache) == 0x000010, "Wrong size on FNetSerializeScriptStructCache"); \ +static_assert(offsetof(FNetSerializeScriptStructCache, ScriptStructs) == 0x000000, "Member 'FNetSerializeScriptStructCache::ScriptStructs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAttributeData \ +static_assert(alignof(FGameplayAttributeData) == 0x000008, "Wrong alignment on FGameplayAttributeData"); \ +static_assert(sizeof(FGameplayAttributeData) == 0x000010, "Wrong size on FGameplayAttributeData"); \ +static_assert(offsetof(FGameplayAttributeData, BaseValue) == 0x000008, "Member 'FGameplayAttributeData::BaseValue' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAttributeData, CurrentValue) == 0x00000C, "Member 'FGameplayAttributeData::CurrentValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttributeMetaData \ +static_assert(alignof(FAttributeMetaData) == 0x000008, "Wrong alignment on FAttributeMetaData"); \ +static_assert(sizeof(FAttributeMetaData) == 0x000030, "Wrong size on FAttributeMetaData"); \ +static_assert(offsetof(FAttributeMetaData, BaseValue) == 0x000008, "Member 'FAttributeMetaData::BaseValue' has a wrong offset!"); \ +static_assert(offsetof(FAttributeMetaData, MinValue) == 0x00000C, "Member 'FAttributeMetaData::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FAttributeMetaData, MaxValue) == 0x000010, "Member 'FAttributeMetaData::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FAttributeMetaData, DerivedAttributeInfo) == 0x000018, "Member 'FAttributeMetaData::DerivedAttributeInfo' has a wrong offset!"); \ +static_assert(offsetof(FAttributeMetaData, bCanStack) == 0x000028, "Member 'FAttributeMetaData::bCanStack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectVersion \ +static_assert(alignof(FGameplayEffectVersion) == 0x000001, "Wrong alignment on FGameplayEffectVersion"); \ +static_assert(sizeof(FGameplayEffectVersion) == 0x000001, "Wrong size on FGameplayEffectVersion"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetData_LocationInfo \ +static_assert(alignof(FGameplayAbilityTargetData_LocationInfo) == 0x000010, "Wrong alignment on FGameplayAbilityTargetData_LocationInfo"); \ +static_assert(sizeof(FGameplayAbilityTargetData_LocationInfo) == 0x000150, "Wrong size on FGameplayAbilityTargetData_LocationInfo"); \ +static_assert(offsetof(FGameplayAbilityTargetData_LocationInfo, SourceLocation) == 0x000010, "Member 'FGameplayAbilityTargetData_LocationInfo::SourceLocation' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityTargetData_LocationInfo, TargetLocation) == 0x0000B0, "Member 'FGameplayAbilityTargetData_LocationInfo::TargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityActorInfo \ +static_assert(alignof(FGameplayAbilityActorInfo) == 0x000008, "Wrong alignment on FGameplayAbilityActorInfo"); \ +static_assert(sizeof(FGameplayAbilityActorInfo) == 0x000048, "Wrong size on FGameplayAbilityActorInfo"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, OwnerActor) == 0x000008, "Member 'FGameplayAbilityActorInfo::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, AvatarActor) == 0x000010, "Member 'FGameplayAbilityActorInfo::AvatarActor' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, PlayerController) == 0x000018, "Member 'FGameplayAbilityActorInfo::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, AbilitySystemComponent) == 0x000020, "Member 'FGameplayAbilityActorInfo::AbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, SkeletalMeshComponent) == 0x000028, "Member 'FGameplayAbilityActorInfo::SkeletalMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, AnimInstance) == 0x000030, "Member 'FGameplayAbilityActorInfo::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, MovementComponent) == 0x000038, "Member 'FGameplayAbilityActorInfo::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayAbilityActorInfo, AffectedAnimInstanceTag) == 0x000040, "Member 'FGameplayAbilityActorInfo::AffectedAnimInstanceTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_PlacementInfo \ +static_assert(alignof(FGameplayCueNotify_PlacementInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_PlacementInfo"); \ +static_assert(sizeof(FGameplayCueNotify_PlacementInfo) == 0x000040, "Wrong size on FGameplayCueNotify_PlacementInfo"); \ +static_assert(offsetof(FGameplayCueNotify_PlacementInfo, SocketName) == 0x000000, "Member 'FGameplayCueNotify_PlacementInfo::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_PlacementInfo, AttachPolicy) == 0x000008, "Member 'FGameplayCueNotify_PlacementInfo::AttachPolicy' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_PlacementInfo, AttachmentRule) == 0x000009, "Member 'FGameplayCueNotify_PlacementInfo::AttachmentRule' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_PlacementInfo, RotationOverride) == 0x000010, "Member 'FGameplayCueNotify_PlacementInfo::RotationOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_PlacementInfo, ScaleOverride) == 0x000028, "Member 'FGameplayCueNotify_PlacementInfo::ScaleOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_SpawnResult \ +static_assert(alignof(FGameplayCueNotify_SpawnResult) == 0x000008, "Wrong alignment on FGameplayCueNotify_SpawnResult"); \ +static_assert(sizeof(FGameplayCueNotify_SpawnResult) == 0x000058, "Wrong size on FGameplayCueNotify_SpawnResult"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, FxSystemComponents) == 0x000000, "Member 'FGameplayCueNotify_SpawnResult::FxSystemComponents' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, AudioComponents) == 0x000010, "Member 'FGameplayCueNotify_SpawnResult::AudioComponents' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, CameraShakes) == 0x000020, "Member 'FGameplayCueNotify_SpawnResult::CameraShakes' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, CameraLensEffects) == 0x000030, "Member 'FGameplayCueNotify_SpawnResult::CameraLensEffects' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, ForceFeedbackComponent) == 0x000040, "Member 'FGameplayCueNotify_SpawnResult::ForceFeedbackComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, ForceFeedbackTargetPC) == 0x000048, "Member 'FGameplayCueNotify_SpawnResult::ForceFeedbackTargetPC' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SpawnResult, DecalComponent) == 0x000050, "Member 'FGameplayCueNotify_SpawnResult::DecalComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_ParticleInfo \ +static_assert(alignof(FGameplayCueNotify_ParticleInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_ParticleInfo"); \ +static_assert(sizeof(FGameplayCueNotify_ParticleInfo) == 0x000088, "Wrong size on FGameplayCueNotify_ParticleInfo"); \ +static_assert(offsetof(FGameplayCueNotify_ParticleInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_ParticleInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ParticleInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_ParticleInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ParticleInfo, NiagaraSystem) == 0x000078, "Member 'FGameplayCueNotify_ParticleInfo::NiagaraSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_SoundParameterInterfaceInfo \ +static_assert(alignof(FGameplayCueNotify_SoundParameterInterfaceInfo) == 0x000004, "Wrong alignment on FGameplayCueNotify_SoundParameterInterfaceInfo"); \ +static_assert(sizeof(FGameplayCueNotify_SoundParameterInterfaceInfo) == 0x000008, "Wrong size on FGameplayCueNotify_SoundParameterInterfaceInfo"); \ +static_assert(offsetof(FGameplayCueNotify_SoundParameterInterfaceInfo, StopTriggerName) == 0x000000, "Member 'FGameplayCueNotify_SoundParameterInterfaceInfo::StopTriggerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_SoundInfo \ +static_assert(alignof(FGameplayCueNotify_SoundInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_SoundInfo"); \ +static_assert(sizeof(FGameplayCueNotify_SoundInfo) == 0x0000A0, "Wrong size on FGameplayCueNotify_SoundInfo"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_SoundInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_SoundInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, Sound) == 0x000078, "Member 'FGameplayCueNotify_SoundInfo::Sound' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, SoundCue) == 0x000080, "Member 'FGameplayCueNotify_SoundInfo::SoundCue' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, LoopingFadeOutDuration) == 0x000088, "Member 'FGameplayCueNotify_SoundInfo::LoopingFadeOutDuration' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, LoopingFadeVolumeLevel) == 0x00008C, "Member 'FGameplayCueNotify_SoundInfo::LoopingFadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_SoundInfo, SoundParameterInterfaceInfo) == 0x000090, "Member 'FGameplayCueNotify_SoundInfo::SoundParameterInterfaceInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_CameraShakeInfo \ +static_assert(alignof(FGameplayCueNotify_CameraShakeInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_CameraShakeInfo"); \ +static_assert(sizeof(FGameplayCueNotify_CameraShakeInfo) == 0x000098, "Wrong size on FGameplayCueNotify_CameraShakeInfo"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_CameraShakeInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_CameraShakeInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, CameraShake) == 0x000078, "Member 'FGameplayCueNotify_CameraShakeInfo::CameraShake' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, ShakeScale) == 0x000080, "Member 'FGameplayCueNotify_CameraShakeInfo::ShakeScale' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, PlaySpace) == 0x000084, "Member 'FGameplayCueNotify_CameraShakeInfo::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, WorldInnerRadius) == 0x00008C, "Member 'FGameplayCueNotify_CameraShakeInfo::WorldInnerRadius' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, WorldOuterRadius) == 0x000090, "Member 'FGameplayCueNotify_CameraShakeInfo::WorldOuterRadius' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraShakeInfo, WorldFalloffExponent) == 0x000094, "Member 'FGameplayCueNotify_CameraShakeInfo::WorldFalloffExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_CameraLensEffectInfo \ +static_assert(alignof(FGameplayCueNotify_CameraLensEffectInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_CameraLensEffectInfo"); \ +static_assert(sizeof(FGameplayCueNotify_CameraLensEffectInfo) == 0x000090, "Wrong size on FGameplayCueNotify_CameraLensEffectInfo"); \ +static_assert(offsetof(FGameplayCueNotify_CameraLensEffectInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_CameraLensEffectInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraLensEffectInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_CameraLensEffectInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraLensEffectInfo, CameraLensEffect) == 0x000078, "Member 'FGameplayCueNotify_CameraLensEffectInfo::CameraLensEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraLensEffectInfo, WorldInnerRadius) == 0x000084, "Member 'FGameplayCueNotify_CameraLensEffectInfo::WorldInnerRadius' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_CameraLensEffectInfo, WorldOuterRadius) == 0x000088, "Member 'FGameplayCueNotify_CameraLensEffectInfo::WorldOuterRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_ForceFeedbackInfo \ +static_assert(alignof(FGameplayCueNotify_ForceFeedbackInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_ForceFeedbackInfo"); \ +static_assert(sizeof(FGameplayCueNotify_ForceFeedbackInfo) == 0x000098, "Wrong size on FGameplayCueNotify_ForceFeedbackInfo"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_ForceFeedbackInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_ForceFeedbackInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, ForceFeedbackEffect) == 0x000078, "Member 'FGameplayCueNotify_ForceFeedbackInfo::ForceFeedbackEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, ForceFeedbackTag) == 0x000080, "Member 'FGameplayCueNotify_ForceFeedbackInfo::ForceFeedbackTag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, WorldIntensity) == 0x00008C, "Member 'FGameplayCueNotify_ForceFeedbackInfo::WorldIntensity' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_ForceFeedbackInfo, WorldAttenuation) == 0x000090, "Member 'FGameplayCueNotify_ForceFeedbackInfo::WorldAttenuation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_InputDevicePropertyInfo \ +static_assert(alignof(FGameplayCueNotify_InputDevicePropertyInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_InputDevicePropertyInfo"); \ +static_assert(sizeof(FGameplayCueNotify_InputDevicePropertyInfo) == 0x000010, "Wrong size on FGameplayCueNotify_InputDevicePropertyInfo"); \ +static_assert(offsetof(FGameplayCueNotify_InputDevicePropertyInfo, DeviceProperties) == 0x000000, "Member 'FGameplayCueNotify_InputDevicePropertyInfo::DeviceProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_DecalInfo \ +static_assert(alignof(FGameplayCueNotify_DecalInfo) == 0x000008, "Wrong alignment on FGameplayCueNotify_DecalInfo"); \ +static_assert(sizeof(FGameplayCueNotify_DecalInfo) == 0x0000A8, "Wrong size on FGameplayCueNotify_DecalInfo"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, SpawnConditionOverride) == 0x000000, "Member 'FGameplayCueNotify_DecalInfo::SpawnConditionOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, PlacementInfoOverride) == 0x000038, "Member 'FGameplayCueNotify_DecalInfo::PlacementInfoOverride' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, DecalMaterial) == 0x000078, "Member 'FGameplayCueNotify_DecalInfo::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, DecalSize) == 0x000080, "Member 'FGameplayCueNotify_DecalInfo::DecalSize' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, FadeOutStartDelay) == 0x00009C, "Member 'FGameplayCueNotify_DecalInfo::FadeOutStartDelay' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_DecalInfo, FadeOutDuration) == 0x0000A0, "Member 'FGameplayCueNotify_DecalInfo::FadeOutDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_BurstEffects \ +static_assert(alignof(FGameplayCueNotify_BurstEffects) == 0x000008, "Wrong alignment on FGameplayCueNotify_BurstEffects"); \ +static_assert(sizeof(FGameplayCueNotify_BurstEffects) == 0x000298, "Wrong size on FGameplayCueNotify_BurstEffects"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstParticles) == 0x000000, "Member 'FGameplayCueNotify_BurstEffects::BurstParticles' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstSounds) == 0x000010, "Member 'FGameplayCueNotify_BurstEffects::BurstSounds' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstCameraShake) == 0x000020, "Member 'FGameplayCueNotify_BurstEffects::BurstCameraShake' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstCameraLensEffect) == 0x0000B8, "Member 'FGameplayCueNotify_BurstEffects::BurstCameraLensEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstForceFeedback) == 0x000148, "Member 'FGameplayCueNotify_BurstEffects::BurstForceFeedback' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstDevicePropertyEffect) == 0x0001E0, "Member 'FGameplayCueNotify_BurstEffects::BurstDevicePropertyEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_BurstEffects, BurstDecal) == 0x0001F0, "Member 'FGameplayCueNotify_BurstEffects::BurstDecal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotify_LoopingEffects \ +static_assert(alignof(FGameplayCueNotify_LoopingEffects) == 0x000008, "Wrong alignment on FGameplayCueNotify_LoopingEffects"); \ +static_assert(sizeof(FGameplayCueNotify_LoopingEffects) == 0x0001F0, "Wrong size on FGameplayCueNotify_LoopingEffects"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingParticles) == 0x000000, "Member 'FGameplayCueNotify_LoopingEffects::LoopingParticles' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingSounds) == 0x000010, "Member 'FGameplayCueNotify_LoopingEffects::LoopingSounds' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingCameraShake) == 0x000020, "Member 'FGameplayCueNotify_LoopingEffects::LoopingCameraShake' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingCameraLensEffect) == 0x0000B8, "Member 'FGameplayCueNotify_LoopingEffects::LoopingCameraLensEffect' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingForceFeedback) == 0x000148, "Member 'FGameplayCueNotify_LoopingEffects::LoopingForceFeedback' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotify_LoopingEffects, LoopingInputDevicePropertyEffect) == 0x0001E0, "Member 'FGameplayCueNotify_LoopingEffects::LoopingInputDevicePropertyEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueNotifyData \ +static_assert(alignof(FGameplayCueNotifyData) == 0x000008, "Wrong alignment on FGameplayCueNotifyData"); \ +static_assert(sizeof(FGameplayCueNotifyData) == 0x000038, "Wrong size on FGameplayCueNotifyData"); \ +static_assert(offsetof(FGameplayCueNotifyData, GameplayCueTag) == 0x000000, "Member 'FGameplayCueNotifyData::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotifyData, GameplayCueNotifyObj) == 0x000008, "Member 'FGameplayCueNotifyData::GameplayCueNotifyObj' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueNotifyData, LoadedGameplayCueClass) == 0x000028, "Member 'FGameplayCueNotifyData::LoadedGameplayCueClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayCueTranslationManager \ +static_assert(alignof(FGameplayCueTranslationManager) == 0x000008, "Wrong alignment on FGameplayCueTranslationManager"); \ +static_assert(sizeof(FGameplayCueTranslationManager) == 0x000080, "Wrong size on FGameplayCueTranslationManager"); \ +static_assert(offsetof(FGameplayCueTranslationManager, TranslationLUT) == 0x000000, "Member 'FGameplayCueTranslationManager::TranslationLUT' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueTranslationManager, TranslationNameToIndexMap) == 0x000010, "Member 'FGameplayCueTranslationManager::TranslationNameToIndexMap' has a wrong offset!"); \ +static_assert(offsetof(FGameplayCueTranslationManager, TagManager) == 0x000060, "Member 'FGameplayCueTranslationManager::TagManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConditionalGameplayEffect \ +static_assert(alignof(FConditionalGameplayEffect) == 0x000008, "Wrong alignment on FConditionalGameplayEffect"); \ +static_assert(sizeof(FConditionalGameplayEffect) == 0x000028, "Wrong size on FConditionalGameplayEffect"); \ +static_assert(offsetof(FConditionalGameplayEffect, EffectClass) == 0x000000, "Member 'FConditionalGameplayEffect::EffectClass' has a wrong offset!"); \ +static_assert(offsetof(FConditionalGameplayEffect, RequiredSourceTags) == 0x000008, "Member 'FConditionalGameplayEffect::RequiredSourceTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectExecutionDefinition \ +static_assert(alignof(FGameplayEffectExecutionDefinition) == 0x000008, "Wrong alignment on FGameplayEffectExecutionDefinition"); \ +static_assert(sizeof(FGameplayEffectExecutionDefinition) == 0x000048, "Wrong size on FGameplayEffectExecutionDefinition"); \ +static_assert(offsetof(FGameplayEffectExecutionDefinition, CalculationClass) == 0x000000, "Member 'FGameplayEffectExecutionDefinition::CalculationClass' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionDefinition, PassedInTags) == 0x000008, "Member 'FGameplayEffectExecutionDefinition::PassedInTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionDefinition, CalculationModifiers) == 0x000028, "Member 'FGameplayEffectExecutionDefinition::CalculationModifiers' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectExecutionDefinition, ConditionalGameplayEffects) == 0x000038, "Member 'FGameplayEffectExecutionDefinition::ConditionalGameplayEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayModifierInfo \ +static_assert(alignof(FGameplayModifierInfo) == 0x000008, "Wrong alignment on FGameplayModifierInfo"); \ +static_assert(sizeof(FGameplayModifierInfo) == 0x000338, "Wrong size on FGameplayModifierInfo"); \ +static_assert(offsetof(FGameplayModifierInfo, Attribute) == 0x000000, "Member 'FGameplayModifierInfo::Attribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierInfo, ModifierOp) == 0x000038, "Member 'FGameplayModifierInfo::ModifierOp' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierInfo, ModifierMagnitude) == 0x000040, "Member 'FGameplayModifierInfo::ModifierMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierInfo, EvaluationChannelSettings) == 0x000220, "Member 'FGameplayModifierInfo::EvaluationChannelSettings' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierInfo, SourceTags) == 0x000228, "Member 'FGameplayModifierInfo::SourceTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayModifierInfo, TargetTags) == 0x0002B0, "Member 'FGameplayModifierInfo::TargetTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectCue \ +static_assert(alignof(FGameplayEffectCue) == 0x000008, "Wrong alignment on FGameplayEffectCue"); \ +static_assert(sizeof(FGameplayEffectCue) == 0x000060, "Wrong size on FGameplayEffectCue"); \ +static_assert(offsetof(FGameplayEffectCue, MagnitudeAttribute) == 0x000000, "Member 'FGameplayEffectCue::MagnitudeAttribute' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectCue, MinLevel) == 0x000038, "Member 'FGameplayEffectCue::MinLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectCue, MaxLevel) == 0x00003C, "Member 'FGameplayEffectCue::MaxLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectCue, GameplayCueTags) == 0x000040, "Member 'FGameplayEffectCue::GameplayCueTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInheritedTagContainer \ +static_assert(alignof(FInheritedTagContainer) == 0x000008, "Wrong alignment on FInheritedTagContainer"); \ +static_assert(sizeof(FInheritedTagContainer) == 0x000060, "Wrong size on FInheritedTagContainer"); \ +static_assert(offsetof(FInheritedTagContainer, CombinedTags) == 0x000000, "Member 'FInheritedTagContainer::CombinedTags' has a wrong offset!"); \ +static_assert(offsetof(FInheritedTagContainer, Added) == 0x000020, "Member 'FInheritedTagContainer::Added' has a wrong offset!"); \ +static_assert(offsetof(FInheritedTagContainer, Removed) == 0x000040, "Member 'FInheritedTagContainer::Removed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGameplayEffectQuery \ +static_assert(alignof(FActiveGameplayEffectQuery) == 0x000008, "Wrong alignment on FActiveGameplayEffectQuery"); \ +static_assert(sizeof(FActiveGameplayEffectQuery) == 0x000088, "Wrong size on FActiveGameplayEffectQuery"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectCustomExecutionParameters \ +static_assert(alignof(FGameplayEffectCustomExecutionParameters) == 0x000008, "Wrong alignment on FGameplayEffectCustomExecutionParameters"); \ +static_assert(sizeof(FGameplayEffectCustomExecutionParameters) == 0x0000F8, "Wrong size on FGameplayEffectCustomExecutionParameters"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectContext \ +static_assert(alignof(FGameplayEffectContext) == 0x000008, "Wrong alignment on FGameplayEffectContext"); \ +static_assert(sizeof(FGameplayEffectContext) == 0x000080, "Wrong size on FGameplayEffectContext"); \ +static_assert(offsetof(FGameplayEffectContext, Instigator) == 0x000008, "Member 'FGameplayEffectContext::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, EffectCauser) == 0x000010, "Member 'FGameplayEffectContext::EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, AbilityCDO) == 0x000018, "Member 'FGameplayEffectContext::AbilityCDO' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, AbilityInstanceNotReplicated) == 0x000020, "Member 'FGameplayEffectContext::AbilityInstanceNotReplicated' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, AbilityLevel) == 0x000028, "Member 'FGameplayEffectContext::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, SourceObject) == 0x00002C, "Member 'FGameplayEffectContext::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, InstigatorAbilitySystemComponent) == 0x000034, "Member 'FGameplayEffectContext::InstigatorAbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, Actors) == 0x000040, "Member 'FGameplayEffectContext::Actors' has a wrong offset!"); \ +static_assert(offsetof(FGameplayEffectContext, WorldOrigin) == 0x000060, "Member 'FGameplayEffectContext::WorldOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGameplayCueKey \ +static_assert(alignof(FMovieSceneGameplayCueKey) == 0x000008, "Wrong alignment on FMovieSceneGameplayCueKey"); \ +static_assert(sizeof(FMovieSceneGameplayCueKey) == 0x000090, "Wrong size on FMovieSceneGameplayCueKey"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, Cue) == 0x000000, "Member 'FMovieSceneGameplayCueKey::Cue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, Location) == 0x000008, "Member 'FMovieSceneGameplayCueKey::Location' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, Normal) == 0x000020, "Member 'FMovieSceneGameplayCueKey::Normal' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, AttachSocketName) == 0x000038, "Member 'FMovieSceneGameplayCueKey::AttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, NormalizedMagnitude) == 0x000040, "Member 'FMovieSceneGameplayCueKey::NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, Instigator) == 0x000044, "Member 'FMovieSceneGameplayCueKey::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, EffectCauser) == 0x00005C, "Member 'FMovieSceneGameplayCueKey::EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, PhysicalMaterial) == 0x000078, "Member 'FMovieSceneGameplayCueKey::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, GameplayEffectLevel) == 0x000080, "Member 'FMovieSceneGameplayCueKey::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, AbilityLevel) == 0x000084, "Member 'FMovieSceneGameplayCueKey::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueKey, bAttachToBinding) == 0x000088, "Member 'FMovieSceneGameplayCueKey::bAttachToBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGameplayCueChannel \ +static_assert(alignof(FMovieSceneGameplayCueChannel) == 0x000008, "Wrong alignment on FMovieSceneGameplayCueChannel"); \ +static_assert(sizeof(FMovieSceneGameplayCueChannel) == 0x0000F8, "Wrong size on FMovieSceneGameplayCueChannel"); \ +static_assert(offsetof(FMovieSceneGameplayCueChannel, KeyTimes) == 0x000050, "Member 'FMovieSceneGameplayCueChannel::KeyTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGameplayCueChannel, KeyValues) == 0x000060, "Member 'FMovieSceneGameplayCueChannel::KeyValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityRepAnimMontageNetSerializerConfig \ +static_assert(alignof(FGameplayAbilityRepAnimMontageNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayAbilityRepAnimMontageNetSerializerConfig"); \ +static_assert(sizeof(FGameplayAbilityRepAnimMontageNetSerializerConfig) == 0x000010, "Wrong size on FGameplayAbilityRepAnimMontageNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectContextHandleNetSerializerConfig \ +static_assert(alignof(FGameplayEffectContextHandleNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayEffectContextHandleNetSerializerConfig"); \ +static_assert(sizeof(FGameplayEffectContextHandleNetSerializerConfig) == 0x000028, "Wrong size on FGameplayEffectContextHandleNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGameplayEffectContextNetSerializerConfig \ +static_assert(alignof(FGameplayEffectContextNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayEffectContextNetSerializerConfig"); \ +static_assert(sizeof(FGameplayEffectContextNetSerializerConfig) == 0x000010, "Wrong size on FGameplayEffectContextNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FMinimalReplicationTagCountMapNetSerializerConfig \ +static_assert(alignof(FMinimalReplicationTagCountMapNetSerializerConfig) == 0x000008, "Wrong alignment on FMinimalReplicationTagCountMapNetSerializerConfig"); \ +static_assert(sizeof(FMinimalReplicationTagCountMapNetSerializerConfig) == 0x000010, "Wrong size on FMinimalReplicationTagCountMapNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPredictionKeyNetSerializerConfig \ +static_assert(alignof(FPredictionKeyNetSerializerConfig) == 0x000008, "Wrong alignment on FPredictionKeyNetSerializerConfig"); \ +static_assert(sizeof(FPredictionKeyNetSerializerConfig) == 0x000010, "Wrong size on FPredictionKeyNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_UGameplayEffect \ +static_assert(alignof(UGameplayEffect) == 0x000008, "Wrong alignment on UGameplayEffect"); \ +static_assert(sizeof(UGameplayEffect) == 0x000A70, "Wrong size on UGameplayEffect"); \ +static_assert(offsetof(UGameplayEffect, DurationPolicy) == 0x000030, "Member 'UGameplayEffect::DurationPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, DurationMagnitude) == 0x000038, "Member 'UGameplayEffect::DurationMagnitude' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, Period) == 0x000218, "Member 'UGameplayEffect::Period' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, bExecutePeriodicEffectOnApplication) == 0x000240, "Member 'UGameplayEffect::bExecutePeriodicEffectOnApplication' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, PeriodicInhibitionPolicy) == 0x000241, "Member 'UGameplayEffect::PeriodicInhibitionPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, Modifiers) == 0x000248, "Member 'UGameplayEffect::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, Executions) == 0x000258, "Member 'UGameplayEffect::Executions' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, ChanceToApplyToTarget) == 0x000268, "Member 'UGameplayEffect::ChanceToApplyToTarget' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, ApplicationRequirements) == 0x000290, "Member 'UGameplayEffect::ApplicationRequirements' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, ConditionalGameplayEffects) == 0x0002A0, "Member 'UGameplayEffect::ConditionalGameplayEffects' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, OverflowEffects) == 0x0002B0, "Member 'UGameplayEffect::OverflowEffects' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, bDenyOverflowApplication) == 0x0002C0, "Member 'UGameplayEffect::bDenyOverflowApplication' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, bClearStackOnOverflow) == 0x0002C1, "Member 'UGameplayEffect::bClearStackOnOverflow' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, PrematureExpirationEffectClasses) == 0x0002C8, "Member 'UGameplayEffect::PrematureExpirationEffectClasses' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, RoutineExpirationEffectClasses) == 0x0002D8, "Member 'UGameplayEffect::RoutineExpirationEffectClasses' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, bRequireModifierSuccessToTriggerCues) == 0x0002E8, "Member 'UGameplayEffect::bRequireModifierSuccessToTriggerCues' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, bSuppressStackingCues) == 0x0002E9, "Member 'UGameplayEffect::bSuppressStackingCues' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, GameplayCues) == 0x0002F0, "Member 'UGameplayEffect::GameplayCues' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, UIData) == 0x000300, "Member 'UGameplayEffect::UIData' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, InheritableGameplayEffectTags) == 0x000308, "Member 'UGameplayEffect::InheritableGameplayEffectTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, InheritableOwnedTagsContainer) == 0x000368, "Member 'UGameplayEffect::InheritableOwnedTagsContainer' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, InheritableBlockedAbilityTagsContainer) == 0x0003C8, "Member 'UGameplayEffect::InheritableBlockedAbilityTagsContainer' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, OngoingTagRequirements) == 0x000428, "Member 'UGameplayEffect::OngoingTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, ApplicationTagRequirements) == 0x0004B0, "Member 'UGameplayEffect::ApplicationTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, RemovalTagRequirements) == 0x000538, "Member 'UGameplayEffect::RemovalTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, RemoveGameplayEffectsWithTags) == 0x0005C0, "Member 'UGameplayEffect::RemoveGameplayEffectsWithTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, GrantedApplicationImmunityTags) == 0x000620, "Member 'UGameplayEffect::GrantedApplicationImmunityTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, GrantedApplicationImmunityQuery) == 0x0006A8, "Member 'UGameplayEffect::GrantedApplicationImmunityQuery' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, RemoveGameplayEffectQuery) == 0x000848, "Member 'UGameplayEffect::RemoveGameplayEffectQuery' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, StackingType) == 0x0009E1, "Member 'UGameplayEffect::StackingType' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, StackLimitCount) == 0x0009E4, "Member 'UGameplayEffect::StackLimitCount' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, StackDurationRefreshPolicy) == 0x0009E8, "Member 'UGameplayEffect::StackDurationRefreshPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, StackPeriodResetPolicy) == 0x0009E9, "Member 'UGameplayEffect::StackPeriodResetPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, StackExpirationPolicy) == 0x0009EA, "Member 'UGameplayEffect::StackExpirationPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, GrantedAbilities) == 0x0009F0, "Member 'UGameplayEffect::GrantedAbilities' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEffect, GEComponents) == 0x000A60, "Member 'UGameplayEffect::GEComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_BP_ApplyGameplayEffectToOwner \ +static_assert(alignof(GameplayAbility_BP_ApplyGameplayEffectToOwner) == 0x000008, "Wrong alignment on GameplayAbility_BP_ApplyGameplayEffectToOwner"); \ +static_assert(sizeof(GameplayAbility_BP_ApplyGameplayEffectToOwner) == 0x000018, "Wrong size on GameplayAbility_BP_ApplyGameplayEffectToOwner"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToOwner, GameplayEffectClass) == 0x000000, "Member 'GameplayAbility_BP_ApplyGameplayEffectToOwner::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToOwner, GameplayEffectLevel) == 0x000008, "Member 'GameplayAbility_BP_ApplyGameplayEffectToOwner::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToOwner, Stacks) == 0x00000C, "Member 'GameplayAbility_BP_ApplyGameplayEffectToOwner::Stacks' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToOwner, ReturnValue) == 0x000010, "Member 'GameplayAbility_BP_ApplyGameplayEffectToOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_BP_ApplyGameplayEffectToTarget \ +static_assert(alignof(GameplayAbility_BP_ApplyGameplayEffectToTarget) == 0x000008, "Wrong alignment on GameplayAbility_BP_ApplyGameplayEffectToTarget"); \ +static_assert(sizeof(GameplayAbility_BP_ApplyGameplayEffectToTarget) == 0x000048, "Wrong size on GameplayAbility_BP_ApplyGameplayEffectToTarget"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToTarget, TargetData) == 0x000000, "Member 'GameplayAbility_BP_ApplyGameplayEffectToTarget::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToTarget, GameplayEffectClass) == 0x000028, "Member 'GameplayAbility_BP_ApplyGameplayEffectToTarget::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToTarget, GameplayEffectLevel) == 0x000030, "Member 'GameplayAbility_BP_ApplyGameplayEffectToTarget::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToTarget, Stacks) == 0x000034, "Member 'GameplayAbility_BP_ApplyGameplayEffectToTarget::Stacks' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_ApplyGameplayEffectToTarget, ReturnValue) == 0x000038, "Member 'GameplayAbility_BP_ApplyGameplayEffectToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags \ +static_assert(alignof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags) == 0x000008, "Wrong alignment on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags"); \ +static_assert(sizeof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags) == 0x000028, "Wrong size on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags, WithAssetTags) == 0x000000, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags::WithAssetTags' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags, StacksToRemove) == 0x000020, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithAssetTags::StacksToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags \ +static_assert(alignof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags) == 0x000008, "Wrong alignment on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags"); \ +static_assert(sizeof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags) == 0x000028, "Wrong size on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags, WithGrantedTags) == 0x000000, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags::WithGrantedTags' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags, StacksToRemove) == 0x000020, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithGrantedTags::StacksToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle \ +static_assert(alignof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle) == 0x000004, "Wrong alignment on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle"); \ +static_assert(sizeof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle) == 0x00000C, "Wrong size on GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle, Handle) == 0x000000, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle, StacksToRemove) == 0x000008, "Member 'GameplayAbility_BP_RemoveGameplayEffectFromOwnerWithHandle::StacksToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_CancelTaskByInstanceName \ +static_assert(alignof(GameplayAbility_CancelTaskByInstanceName) == 0x000004, "Wrong alignment on GameplayAbility_CancelTaskByInstanceName"); \ +static_assert(sizeof(GameplayAbility_CancelTaskByInstanceName) == 0x000008, "Wrong size on GameplayAbility_CancelTaskByInstanceName"); \ +static_assert(offsetof(GameplayAbility_CancelTaskByInstanceName, InstanceName) == 0x000000, "Member 'GameplayAbility_CancelTaskByInstanceName::InstanceName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_ConfirmTaskByInstanceName \ +static_assert(alignof(GameplayAbility_ConfirmTaskByInstanceName) == 0x000004, "Wrong alignment on GameplayAbility_ConfirmTaskByInstanceName"); \ +static_assert(sizeof(GameplayAbility_ConfirmTaskByInstanceName) == 0x00000C, "Wrong size on GameplayAbility_ConfirmTaskByInstanceName"); \ +static_assert(offsetof(GameplayAbility_ConfirmTaskByInstanceName, InstanceName) == 0x000000, "Member 'GameplayAbility_ConfirmTaskByInstanceName::InstanceName' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_ConfirmTaskByInstanceName, bEndTask) == 0x000008, "Member 'GameplayAbility_ConfirmTaskByInstanceName::bEndTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_EndAbilityState \ +static_assert(alignof(GameplayAbility_EndAbilityState) == 0x000004, "Wrong alignment on GameplayAbility_EndAbilityState"); \ +static_assert(sizeof(GameplayAbility_EndAbilityState) == 0x000008, "Wrong size on GameplayAbility_EndAbilityState"); \ +static_assert(offsetof(GameplayAbility_EndAbilityState, OptionalStateNameToEnd) == 0x000000, "Member 'GameplayAbility_EndAbilityState::OptionalStateNameToEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_EndTaskByInstanceName \ +static_assert(alignof(GameplayAbility_EndTaskByInstanceName) == 0x000004, "Wrong alignment on GameplayAbility_EndTaskByInstanceName"); \ +static_assert(sizeof(GameplayAbility_EndTaskByInstanceName) == 0x000008, "Wrong size on GameplayAbility_EndTaskByInstanceName"); \ +static_assert(offsetof(GameplayAbility_EndTaskByInstanceName, InstanceName) == 0x000000, "Member 'GameplayAbility_EndTaskByInstanceName::InstanceName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GameplayAbility_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GameplayAbility_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GameplayAbility_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GameplayAbility_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GameplayAbility_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GameplayAbility_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_AddGameplayCue \ +static_assert(alignof(GameplayAbility_K2_AddGameplayCue) == 0x000008, "Wrong alignment on GameplayAbility_K2_AddGameplayCue"); \ +static_assert(sizeof(GameplayAbility_K2_AddGameplayCue) == 0x000028, "Wrong size on GameplayAbility_K2_AddGameplayCue"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCue, GameplayCueTag) == 0x000000, "Member 'GameplayAbility_K2_AddGameplayCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCue, Context) == 0x000008, "Member 'GameplayAbility_K2_AddGameplayCue::Context' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCue, bRemoveOnAbilityEnd) == 0x000020, "Member 'GameplayAbility_K2_AddGameplayCue::bRemoveOnAbilityEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_AddGameplayCueWithParams \ +static_assert(alignof(GameplayAbility_K2_AddGameplayCueWithParams) == 0x000008, "Wrong alignment on GameplayAbility_K2_AddGameplayCueWithParams"); \ +static_assert(sizeof(GameplayAbility_K2_AddGameplayCueWithParams) == 0x0000E8, "Wrong size on GameplayAbility_K2_AddGameplayCueWithParams"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCueWithParams, GameplayCueTag) == 0x000000, "Member 'GameplayAbility_K2_AddGameplayCueWithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCueWithParams, GameplayCueParameter) == 0x000008, "Member 'GameplayAbility_K2_AddGameplayCueWithParams::GameplayCueParameter' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_AddGameplayCueWithParams, bRemoveOnAbilityEnd) == 0x0000E0, "Member 'GameplayAbility_K2_AddGameplayCueWithParams::bRemoveOnAbilityEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ApplyGameplayEffectSpecToOwner \ +static_assert(alignof(GameplayAbility_K2_ApplyGameplayEffectSpecToOwner) == 0x000008, "Wrong alignment on GameplayAbility_K2_ApplyGameplayEffectSpecToOwner"); \ +static_assert(sizeof(GameplayAbility_K2_ApplyGameplayEffectSpecToOwner) == 0x000018, "Wrong size on GameplayAbility_K2_ApplyGameplayEffectSpecToOwner"); \ +static_assert(offsetof(GameplayAbility_K2_ApplyGameplayEffectSpecToOwner, EffectSpecHandle) == 0x000000, "Member 'GameplayAbility_K2_ApplyGameplayEffectSpecToOwner::EffectSpecHandle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ApplyGameplayEffectSpecToOwner, ReturnValue) == 0x000010, "Member 'GameplayAbility_K2_ApplyGameplayEffectSpecToOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ApplyGameplayEffectSpecToTarget \ +static_assert(alignof(GameplayAbility_K2_ApplyGameplayEffectSpecToTarget) == 0x000008, "Wrong alignment on GameplayAbility_K2_ApplyGameplayEffectSpecToTarget"); \ +static_assert(sizeof(GameplayAbility_K2_ApplyGameplayEffectSpecToTarget) == 0x000048, "Wrong size on GameplayAbility_K2_ApplyGameplayEffectSpecToTarget"); \ +static_assert(offsetof(GameplayAbility_K2_ApplyGameplayEffectSpecToTarget, EffectSpecHandle) == 0x000000, "Member 'GameplayAbility_K2_ApplyGameplayEffectSpecToTarget::EffectSpecHandle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ApplyGameplayEffectSpecToTarget, TargetData) == 0x000010, "Member 'GameplayAbility_K2_ApplyGameplayEffectSpecToTarget::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ApplyGameplayEffectSpecToTarget, ReturnValue) == 0x000038, "Member 'GameplayAbility_K2_ApplyGameplayEffectSpecToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CheckAbilityCooldown \ +static_assert(alignof(GameplayAbility_K2_CheckAbilityCooldown) == 0x000001, "Wrong alignment on GameplayAbility_K2_CheckAbilityCooldown"); \ +static_assert(sizeof(GameplayAbility_K2_CheckAbilityCooldown) == 0x000001, "Wrong size on GameplayAbility_K2_CheckAbilityCooldown"); \ +static_assert(offsetof(GameplayAbility_K2_CheckAbilityCooldown, ReturnValue) == 0x000000, "Member 'GameplayAbility_K2_CheckAbilityCooldown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CheckAbilityCost \ +static_assert(alignof(GameplayAbility_K2_CheckAbilityCost) == 0x000001, "Wrong alignment on GameplayAbility_K2_CheckAbilityCost"); \ +static_assert(sizeof(GameplayAbility_K2_CheckAbilityCost) == 0x000001, "Wrong size on GameplayAbility_K2_CheckAbilityCost"); \ +static_assert(offsetof(GameplayAbility_K2_CheckAbilityCost, ReturnValue) == 0x000000, "Member 'GameplayAbility_K2_CheckAbilityCost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CommitAbility \ +static_assert(alignof(GameplayAbility_K2_CommitAbility) == 0x000001, "Wrong alignment on GameplayAbility_K2_CommitAbility"); \ +static_assert(sizeof(GameplayAbility_K2_CommitAbility) == 0x000001, "Wrong size on GameplayAbility_K2_CommitAbility"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbility, ReturnValue) == 0x000000, "Member 'GameplayAbility_K2_CommitAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CommitAbilityCooldown \ +static_assert(alignof(GameplayAbility_K2_CommitAbilityCooldown) == 0x000001, "Wrong alignment on GameplayAbility_K2_CommitAbilityCooldown"); \ +static_assert(sizeof(GameplayAbility_K2_CommitAbilityCooldown) == 0x000003, "Wrong size on GameplayAbility_K2_CommitAbilityCooldown"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbilityCooldown, BroadcastCommitEvent) == 0x000000, "Member 'GameplayAbility_K2_CommitAbilityCooldown::BroadcastCommitEvent' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbilityCooldown, ForceCooldown) == 0x000001, "Member 'GameplayAbility_K2_CommitAbilityCooldown::ForceCooldown' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbilityCooldown, ReturnValue) == 0x000002, "Member 'GameplayAbility_K2_CommitAbilityCooldown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CommitAbilityCost \ +static_assert(alignof(GameplayAbility_K2_CommitAbilityCost) == 0x000001, "Wrong alignment on GameplayAbility_K2_CommitAbilityCost"); \ +static_assert(sizeof(GameplayAbility_K2_CommitAbilityCost) == 0x000002, "Wrong size on GameplayAbility_K2_CommitAbilityCost"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbilityCost, BroadcastCommitEvent) == 0x000000, "Member 'GameplayAbility_K2_CommitAbilityCost::BroadcastCommitEvent' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CommitAbilityCost, ReturnValue) == 0x000001, "Member 'GameplayAbility_K2_CommitAbilityCost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ExecuteGameplayCue \ +static_assert(alignof(GameplayAbility_K2_ExecuteGameplayCue) == 0x000008, "Wrong alignment on GameplayAbility_K2_ExecuteGameplayCue"); \ +static_assert(sizeof(GameplayAbility_K2_ExecuteGameplayCue) == 0x000020, "Wrong size on GameplayAbility_K2_ExecuteGameplayCue"); \ +static_assert(offsetof(GameplayAbility_K2_ExecuteGameplayCue, GameplayCueTag) == 0x000000, "Member 'GameplayAbility_K2_ExecuteGameplayCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ExecuteGameplayCue, Context) == 0x000008, "Member 'GameplayAbility_K2_ExecuteGameplayCue::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ExecuteGameplayCueWithParams \ +static_assert(alignof(GameplayAbility_K2_ExecuteGameplayCueWithParams) == 0x000008, "Wrong alignment on GameplayAbility_K2_ExecuteGameplayCueWithParams"); \ +static_assert(sizeof(GameplayAbility_K2_ExecuteGameplayCueWithParams) == 0x0000E0, "Wrong size on GameplayAbility_K2_ExecuteGameplayCueWithParams"); \ +static_assert(offsetof(GameplayAbility_K2_ExecuteGameplayCueWithParams, GameplayCueTag) == 0x000000, "Member 'GameplayAbility_K2_ExecuteGameplayCueWithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ExecuteGameplayCueWithParams, GameplayCueParameters) == 0x000008, "Member 'GameplayAbility_K2_ExecuteGameplayCueWithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_OnEndAbility \ +static_assert(alignof(GameplayAbility_K2_OnEndAbility) == 0x000001, "Wrong alignment on GameplayAbility_K2_OnEndAbility"); \ +static_assert(sizeof(GameplayAbility_K2_OnEndAbility) == 0x000001, "Wrong size on GameplayAbility_K2_OnEndAbility"); \ +static_assert(offsetof(GameplayAbility_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GameplayAbility_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_RemoveGameplayCue \ +static_assert(alignof(GameplayAbility_K2_RemoveGameplayCue) == 0x000004, "Wrong alignment on GameplayAbility_K2_RemoveGameplayCue"); \ +static_assert(sizeof(GameplayAbility_K2_RemoveGameplayCue) == 0x000008, "Wrong size on GameplayAbility_K2_RemoveGameplayCue"); \ +static_assert(offsetof(GameplayAbility_K2_RemoveGameplayCue, GameplayCueTag) == 0x000000, "Member 'GameplayAbility_K2_RemoveGameplayCue::GameplayCueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MakeTargetLocationInfoFromOwnerActor \ +static_assert(alignof(GameplayAbility_MakeTargetLocationInfoFromOwnerActor) == 0x000010, "Wrong alignment on GameplayAbility_MakeTargetLocationInfoFromOwnerActor"); \ +static_assert(sizeof(GameplayAbility_MakeTargetLocationInfoFromOwnerActor) == 0x0000A0, "Wrong size on GameplayAbility_MakeTargetLocationInfoFromOwnerActor"); \ +static_assert(offsetof(GameplayAbility_MakeTargetLocationInfoFromOwnerActor, ReturnValue) == 0x000000, "Member 'GameplayAbility_MakeTargetLocationInfoFromOwnerActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent \ +static_assert(alignof(GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent) == 0x000010, "Wrong alignment on GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent"); \ +static_assert(sizeof(GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent) == 0x0000B0, "Wrong size on GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent"); \ +static_assert(offsetof(GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent, SocketName) == 0x000000, "Member 'GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent::SocketName' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent, ReturnValue) == 0x000010, "Member 'GameplayAbility_MakeTargetLocationInfoFromOwnerSkeletalMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MontageJumpToSection \ +static_assert(alignof(GameplayAbility_MontageJumpToSection) == 0x000004, "Wrong alignment on GameplayAbility_MontageJumpToSection"); \ +static_assert(sizeof(GameplayAbility_MontageJumpToSection) == 0x000008, "Wrong size on GameplayAbility_MontageJumpToSection"); \ +static_assert(offsetof(GameplayAbility_MontageJumpToSection, SectionName) == 0x000000, "Member 'GameplayAbility_MontageJumpToSection::SectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MontageSetNextSectionName \ +static_assert(alignof(GameplayAbility_MontageSetNextSectionName) == 0x000004, "Wrong alignment on GameplayAbility_MontageSetNextSectionName"); \ +static_assert(sizeof(GameplayAbility_MontageSetNextSectionName) == 0x000010, "Wrong size on GameplayAbility_MontageSetNextSectionName"); \ +static_assert(offsetof(GameplayAbility_MontageSetNextSectionName, FromSectionName) == 0x000000, "Member 'GameplayAbility_MontageSetNextSectionName::FromSectionName' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_MontageSetNextSectionName, ToSectionName) == 0x000008, "Member 'GameplayAbility_MontageSetNextSectionName::ToSectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MontageStop \ +static_assert(alignof(GameplayAbility_MontageStop) == 0x000004, "Wrong alignment on GameplayAbility_MontageStop"); \ +static_assert(sizeof(GameplayAbility_MontageStop) == 0x000004, "Wrong size on GameplayAbility_MontageStop"); \ +static_assert(offsetof(GameplayAbility_MontageStop, OverrideBlendOutTime) == 0x000000, "Member 'GameplayAbility_MontageStop::OverrideBlendOutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_SendGameplayEvent \ +static_assert(alignof(GameplayAbility_SendGameplayEvent) == 0x000008, "Wrong alignment on GameplayAbility_SendGameplayEvent"); \ +static_assert(sizeof(GameplayAbility_SendGameplayEvent) == 0x0000B8, "Wrong size on GameplayAbility_SendGameplayEvent"); \ +static_assert(offsetof(GameplayAbility_SendGameplayEvent, EventTag) == 0x000000, "Member 'GameplayAbility_SendGameplayEvent::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_SendGameplayEvent, Payload) == 0x000008, "Member 'GameplayAbility_SendGameplayEvent::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_SetCanBeCanceled \ +static_assert(alignof(GameplayAbility_SetCanBeCanceled) == 0x000001, "Wrong alignment on GameplayAbility_SetCanBeCanceled"); \ +static_assert(sizeof(GameplayAbility_SetCanBeCanceled) == 0x000001, "Wrong size on GameplayAbility_SetCanBeCanceled"); \ +static_assert(offsetof(GameplayAbility_SetCanBeCanceled, bCanBeCanceled) == 0x000000, "Member 'GameplayAbility_SetCanBeCanceled::bCanBeCanceled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_SetShouldBlockOtherAbilities \ +static_assert(alignof(GameplayAbility_SetShouldBlockOtherAbilities) == 0x000001, "Wrong alignment on GameplayAbility_SetShouldBlockOtherAbilities"); \ +static_assert(sizeof(GameplayAbility_SetShouldBlockOtherAbilities) == 0x000001, "Wrong size on GameplayAbility_SetShouldBlockOtherAbilities"); \ +static_assert(offsetof(GameplayAbility_SetShouldBlockOtherAbilities, bShouldBlockAbilities) == 0x000000, "Member 'GameplayAbility_SetShouldBlockOtherAbilities::bShouldBlockAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetAbilityLevel \ +static_assert(alignof(GameplayAbility_GetAbilityLevel) == 0x000004, "Wrong alignment on GameplayAbility_GetAbilityLevel"); \ +static_assert(sizeof(GameplayAbility_GetAbilityLevel) == 0x000004, "Wrong size on GameplayAbility_GetAbilityLevel"); \ +static_assert(offsetof(GameplayAbility_GetAbilityLevel, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetAbilityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetAbilityLevel_BP \ +static_assert(alignof(GameplayAbility_GetAbilityLevel_BP) == 0x000008, "Wrong alignment on GameplayAbility_GetAbilityLevel_BP"); \ +static_assert(sizeof(GameplayAbility_GetAbilityLevel_BP) == 0x000058, "Wrong size on GameplayAbility_GetAbilityLevel_BP"); \ +static_assert(offsetof(GameplayAbility_GetAbilityLevel_BP, Handle) == 0x000000, "Member 'GameplayAbility_GetAbilityLevel_BP::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_GetAbilityLevel_BP, ActorInfo) == 0x000008, "Member 'GameplayAbility_GetAbilityLevel_BP::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_GetAbilityLevel_BP, ReturnValue) == 0x000050, "Member 'GameplayAbility_GetAbilityLevel_BP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetAbilitySystemComponentFromActorInfo \ +static_assert(alignof(GameplayAbility_GetAbilitySystemComponentFromActorInfo) == 0x000008, "Wrong alignment on GameplayAbility_GetAbilitySystemComponentFromActorInfo"); \ +static_assert(sizeof(GameplayAbility_GetAbilitySystemComponentFromActorInfo) == 0x000008, "Wrong size on GameplayAbility_GetAbilitySystemComponentFromActorInfo"); \ +static_assert(offsetof(GameplayAbility_GetAbilitySystemComponentFromActorInfo, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetAbilitySystemComponentFromActorInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetActorInfo \ +static_assert(alignof(GameplayAbility_GetActorInfo) == 0x000008, "Wrong alignment on GameplayAbility_GetActorInfo"); \ +static_assert(sizeof(GameplayAbility_GetActorInfo) == 0x000048, "Wrong size on GameplayAbility_GetActorInfo"); \ +static_assert(offsetof(GameplayAbility_GetActorInfo, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetActorInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetAvatarActorFromActorInfo \ +static_assert(alignof(GameplayAbility_GetAvatarActorFromActorInfo) == 0x000008, "Wrong alignment on GameplayAbility_GetAvatarActorFromActorInfo"); \ +static_assert(sizeof(GameplayAbility_GetAvatarActorFromActorInfo) == 0x000008, "Wrong size on GameplayAbility_GetAvatarActorFromActorInfo"); \ +static_assert(offsetof(GameplayAbility_GetAvatarActorFromActorInfo, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetAvatarActorFromActorInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetContextFromOwner \ +static_assert(alignof(GameplayAbility_GetContextFromOwner) == 0x000008, "Wrong alignment on GameplayAbility_GetContextFromOwner"); \ +static_assert(sizeof(GameplayAbility_GetContextFromOwner) == 0x000040, "Wrong size on GameplayAbility_GetContextFromOwner"); \ +static_assert(offsetof(GameplayAbility_GetContextFromOwner, OptionalTargetData) == 0x000000, "Member 'GameplayAbility_GetContextFromOwner::OptionalTargetData' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_GetContextFromOwner, ReturnValue) == 0x000028, "Member 'GameplayAbility_GetContextFromOwner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetCooldownTimeRemaining \ +static_assert(alignof(GameplayAbility_GetCooldownTimeRemaining) == 0x000004, "Wrong alignment on GameplayAbility_GetCooldownTimeRemaining"); \ +static_assert(sizeof(GameplayAbility_GetCooldownTimeRemaining) == 0x000004, "Wrong size on GameplayAbility_GetCooldownTimeRemaining"); \ +static_assert(offsetof(GameplayAbility_GetCooldownTimeRemaining, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetCooldownTimeRemaining::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetCurrentMontage \ +static_assert(alignof(GameplayAbility_GetCurrentMontage) == 0x000008, "Wrong alignment on GameplayAbility_GetCurrentMontage"); \ +static_assert(sizeof(GameplayAbility_GetCurrentMontage) == 0x000008, "Wrong size on GameplayAbility_GetCurrentMontage"); \ +static_assert(offsetof(GameplayAbility_GetCurrentMontage, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetCurrentMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetCurrentSourceObject \ +static_assert(alignof(GameplayAbility_GetCurrentSourceObject) == 0x000008, "Wrong alignment on GameplayAbility_GetCurrentSourceObject"); \ +static_assert(sizeof(GameplayAbility_GetCurrentSourceObject) == 0x000008, "Wrong size on GameplayAbility_GetCurrentSourceObject"); \ +static_assert(offsetof(GameplayAbility_GetCurrentSourceObject, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetCurrentSourceObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetGrantedByEffectContext \ +static_assert(alignof(GameplayAbility_GetGrantedByEffectContext) == 0x000008, "Wrong alignment on GameplayAbility_GetGrantedByEffectContext"); \ +static_assert(sizeof(GameplayAbility_GetGrantedByEffectContext) == 0x000018, "Wrong size on GameplayAbility_GetGrantedByEffectContext"); \ +static_assert(offsetof(GameplayAbility_GetGrantedByEffectContext, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetGrantedByEffectContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetOwningActorFromActorInfo \ +static_assert(alignof(GameplayAbility_GetOwningActorFromActorInfo) == 0x000008, "Wrong alignment on GameplayAbility_GetOwningActorFromActorInfo"); \ +static_assert(sizeof(GameplayAbility_GetOwningActorFromActorInfo) == 0x000008, "Wrong size on GameplayAbility_GetOwningActorFromActorInfo"); \ +static_assert(offsetof(GameplayAbility_GetOwningActorFromActorInfo, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetOwningActorFromActorInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetOwningComponentFromActorInfo \ +static_assert(alignof(GameplayAbility_GetOwningComponentFromActorInfo) == 0x000008, "Wrong alignment on GameplayAbility_GetOwningComponentFromActorInfo"); \ +static_assert(sizeof(GameplayAbility_GetOwningComponentFromActorInfo) == 0x000008, "Wrong size on GameplayAbility_GetOwningComponentFromActorInfo"); \ +static_assert(offsetof(GameplayAbility_GetOwningComponentFromActorInfo, ReturnValue) == 0x000000, "Member 'GameplayAbility_GetOwningComponentFromActorInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_GetSourceObject_BP \ +static_assert(alignof(GameplayAbility_GetSourceObject_BP) == 0x000008, "Wrong alignment on GameplayAbility_GetSourceObject_BP"); \ +static_assert(sizeof(GameplayAbility_GetSourceObject_BP) == 0x000058, "Wrong size on GameplayAbility_GetSourceObject_BP"); \ +static_assert(offsetof(GameplayAbility_GetSourceObject_BP, Handle) == 0x000000, "Member 'GameplayAbility_GetSourceObject_BP::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_GetSourceObject_BP, ActorInfo) == 0x000008, "Member 'GameplayAbility_GetSourceObject_BP::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_GetSourceObject_BP, ReturnValue) == 0x000050, "Member 'GameplayAbility_GetSourceObject_BP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_IsLocallyControlled \ +static_assert(alignof(GameplayAbility_IsLocallyControlled) == 0x000001, "Wrong alignment on GameplayAbility_IsLocallyControlled"); \ +static_assert(sizeof(GameplayAbility_IsLocallyControlled) == 0x000001, "Wrong size on GameplayAbility_IsLocallyControlled"); \ +static_assert(offsetof(GameplayAbility_IsLocallyControlled, ReturnValue) == 0x000000, "Member 'GameplayAbility_IsLocallyControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_CanActivateAbility \ +static_assert(alignof(GameplayAbility_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GameplayAbility_K2_CanActivateAbility"); \ +static_assert(sizeof(GameplayAbility_K2_CanActivateAbility) == 0x000078, "Wrong size on GameplayAbility_K2_CanActivateAbility"); \ +static_assert(offsetof(GameplayAbility_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GameplayAbility_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GameplayAbility_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GameplayAbility_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GameplayAbility_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_HasAuthority \ +static_assert(alignof(GameplayAbility_K2_HasAuthority) == 0x000001, "Wrong alignment on GameplayAbility_K2_HasAuthority"); \ +static_assert(sizeof(GameplayAbility_K2_HasAuthority) == 0x000001, "Wrong size on GameplayAbility_K2_HasAuthority"); \ +static_assert(offsetof(GameplayAbility_K2_HasAuthority, ReturnValue) == 0x000000, "Member 'GameplayAbility_K2_HasAuthority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_K2_ShouldAbilityRespondToEvent \ +static_assert(alignof(GameplayAbility_K2_ShouldAbilityRespondToEvent) == 0x000008, "Wrong alignment on GameplayAbility_K2_ShouldAbilityRespondToEvent"); \ +static_assert(sizeof(GameplayAbility_K2_ShouldAbilityRespondToEvent) == 0x000100, "Wrong size on GameplayAbility_K2_ShouldAbilityRespondToEvent"); \ +static_assert(offsetof(GameplayAbility_K2_ShouldAbilityRespondToEvent, ActorInfo) == 0x000000, "Member 'GameplayAbility_K2_ShouldAbilityRespondToEvent::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ShouldAbilityRespondToEvent, Payload) == 0x000048, "Member 'GameplayAbility_K2_ShouldAbilityRespondToEvent::Payload' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_K2_ShouldAbilityRespondToEvent, ReturnValue) == 0x0000F8, "Member 'GameplayAbility_K2_ShouldAbilityRespondToEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbility_MakeOutgoingGameplayEffectSpec \ +static_assert(alignof(GameplayAbility_MakeOutgoingGameplayEffectSpec) == 0x000008, "Wrong alignment on GameplayAbility_MakeOutgoingGameplayEffectSpec"); \ +static_assert(sizeof(GameplayAbility_MakeOutgoingGameplayEffectSpec) == 0x000020, "Wrong size on GameplayAbility_MakeOutgoingGameplayEffectSpec"); \ +static_assert(offsetof(GameplayAbility_MakeOutgoingGameplayEffectSpec, GameplayEffectClass) == 0x000000, "Member 'GameplayAbility_MakeOutgoingGameplayEffectSpec::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_MakeOutgoingGameplayEffectSpec, Level) == 0x000008, "Member 'GameplayAbility_MakeOutgoingGameplayEffectSpec::Level' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbility_MakeOutgoingGameplayEffectSpec, ReturnValue) == 0x000010, "Member 'GameplayAbility_MakeOutgoingGameplayEffectSpec::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayAbility \ +static_assert(alignof(UGameplayAbility) == 0x000008, "Wrong alignment on UGameplayAbility"); \ +static_assert(sizeof(UGameplayAbility) == 0x0003B8, "Wrong size on UGameplayAbility"); \ +static_assert(offsetof(UGameplayAbility, AbilityTags) == 0x0000A8, "Member 'UGameplayAbility::AbilityTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bReplicateInputDirectly) == 0x0000C8, "Member 'UGameplayAbility::bReplicateInputDirectly' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, RemoteInstanceEnded) == 0x0000C9, "Member 'UGameplayAbility::RemoteInstanceEnded' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, ReplicationPolicy) == 0x0000CE, "Member 'UGameplayAbility::ReplicationPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, InstancingPolicy) == 0x0000CF, "Member 'UGameplayAbility::InstancingPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bServerRespectsRemoteAbilityCancellation) == 0x0000D0, "Member 'UGameplayAbility::bServerRespectsRemoteAbilityCancellation' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bRetriggerInstancedAbility) == 0x0000D1, "Member 'UGameplayAbility::bRetriggerInstancedAbility' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CurrentActivationInfo) == 0x0000D8, "Member 'UGameplayAbility::CurrentActivationInfo' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CurrentEventData) == 0x0000F8, "Member 'UGameplayAbility::CurrentEventData' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, NetExecutionPolicy) == 0x0001A8, "Member 'UGameplayAbility::NetExecutionPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, NetSecurityPolicy) == 0x0001A9, "Member 'UGameplayAbility::NetSecurityPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CostGameplayEffectClass) == 0x0001B0, "Member 'UGameplayAbility::CostGameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, AbilityTriggers) == 0x0001B8, "Member 'UGameplayAbility::AbilityTriggers' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CooldownGameplayEffectClass) == 0x0001C8, "Member 'UGameplayAbility::CooldownGameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CancelAbilitiesWithTag) == 0x0001D0, "Member 'UGameplayAbility::CancelAbilitiesWithTag' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, BlockAbilitiesWithTag) == 0x0001F0, "Member 'UGameplayAbility::BlockAbilitiesWithTag' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, ActivationOwnedTags) == 0x000210, "Member 'UGameplayAbility::ActivationOwnedTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, ActivationRequiredTags) == 0x000230, "Member 'UGameplayAbility::ActivationRequiredTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, ActivationBlockedTags) == 0x000250, "Member 'UGameplayAbility::ActivationBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, SourceRequiredTags) == 0x000270, "Member 'UGameplayAbility::SourceRequiredTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, SourceBlockedTags) == 0x000290, "Member 'UGameplayAbility::SourceBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, TargetRequiredTags) == 0x0002B0, "Member 'UGameplayAbility::TargetRequiredTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, TargetBlockedTags) == 0x0002D0, "Member 'UGameplayAbility::TargetBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, ActiveTasks) == 0x000310, "Member 'UGameplayAbility::ActiveTasks' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, CurrentMontage) == 0x000330, "Member 'UGameplayAbility::CurrentMontage' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bIsActive) == 0x000398, "Member 'UGameplayAbility::bIsActive' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bIsAbilityEnding) == 0x000399, "Member 'UGameplayAbility::bIsAbilityEnding' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bIsCancelable) == 0x00039A, "Member 'UGameplayAbility::bIsCancelable' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bIsBlockingOtherAbilities) == 0x00039B, "Member 'UGameplayAbility::bIsBlockingOtherAbilities' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility, bMarkPendingKillOnAbilityEnd) == 0x0003B0, "Member 'UGameplayAbility::bMarkPendingKillOnAbilityEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayAbility_CharacterJump \ +static_assert(alignof(UGameplayAbility_CharacterJump) == 0x000008, "Wrong alignment on UGameplayAbility_CharacterJump"); \ +static_assert(sizeof(UGameplayAbility_CharacterJump) == 0x0003B8, "Wrong size on UGameplayAbility_CharacterJump"); \ + +#define DUMPER7_ASSERTS_AAbilitySystemDebugHUD \ +static_assert(alignof(AAbilitySystemDebugHUD) == 0x000008, "Wrong alignment on AAbilitySystemDebugHUD"); \ +static_assert(sizeof(AAbilitySystemDebugHUD) == 0x000388, "Wrong size on AAbilitySystemDebugHUD"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectComponent \ +static_assert(alignof(UGameplayEffectComponent) == 0x000008, "Wrong alignment on UGameplayEffectComponent"); \ +static_assert(sizeof(UGameplayEffectComponent) == 0x000028, "Wrong size on UGameplayEffectComponent"); \ + +#define DUMPER7_ASSERTS_UAbilitiesGameplayEffectComponent \ +static_assert(alignof(UAbilitiesGameplayEffectComponent) == 0x000008, "Wrong alignment on UAbilitiesGameplayEffectComponent"); \ +static_assert(sizeof(UAbilitiesGameplayEffectComponent) == 0x000038, "Wrong size on UAbilitiesGameplayEffectComponent"); \ +static_assert(offsetof(UAbilitiesGameplayEffectComponent, GrantAbilityConfigs) == 0x000028, "Member 'UAbilitiesGameplayEffectComponent::GrantAbilityConfigs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAdditionalEffectsGameplayEffectComponent \ +static_assert(alignof(UAdditionalEffectsGameplayEffectComponent) == 0x000008, "Wrong alignment on UAdditionalEffectsGameplayEffectComponent"); \ +static_assert(sizeof(UAdditionalEffectsGameplayEffectComponent) == 0x000070, "Wrong size on UAdditionalEffectsGameplayEffectComponent"); \ +static_assert(offsetof(UAdditionalEffectsGameplayEffectComponent, bOnApplicationCopyDataFromOriginalSpec) == 0x000028, "Member 'UAdditionalEffectsGameplayEffectComponent::bOnApplicationCopyDataFromOriginalSpec' has a wrong offset!"); \ +static_assert(offsetof(UAdditionalEffectsGameplayEffectComponent, OnApplicationGameplayEffects) == 0x000030, "Member 'UAdditionalEffectsGameplayEffectComponent::OnApplicationGameplayEffects' has a wrong offset!"); \ +static_assert(offsetof(UAdditionalEffectsGameplayEffectComponent, OnCompleteAlways) == 0x000040, "Member 'UAdditionalEffectsGameplayEffectComponent::OnCompleteAlways' has a wrong offset!"); \ +static_assert(offsetof(UAdditionalEffectsGameplayEffectComponent, OnCompleteNormal) == 0x000050, "Member 'UAdditionalEffectsGameplayEffectComponent::OnCompleteNormal' has a wrong offset!"); \ +static_assert(offsetof(UAdditionalEffectsGameplayEffectComponent, OnCompletePrematurely) == 0x000060, "Member 'UAdditionalEffectsGameplayEffectComponent::OnCompletePrematurely' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetTagsGameplayEffectComponent \ +static_assert(alignof(UAssetTagsGameplayEffectComponent) == 0x000008, "Wrong alignment on UAssetTagsGameplayEffectComponent"); \ +static_assert(sizeof(UAssetTagsGameplayEffectComponent) == 0x000088, "Wrong size on UAssetTagsGameplayEffectComponent"); \ +static_assert(offsetof(UAssetTagsGameplayEffectComponent, InheritableAssetTags) == 0x000028, "Member 'UAssetTagsGameplayEffectComponent::InheritableAssetTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlockAbilityTagsGameplayEffectComponent \ +static_assert(alignof(UBlockAbilityTagsGameplayEffectComponent) == 0x000008, "Wrong alignment on UBlockAbilityTagsGameplayEffectComponent"); \ +static_assert(sizeof(UBlockAbilityTagsGameplayEffectComponent) == 0x000088, "Wrong size on UBlockAbilityTagsGameplayEffectComponent"); \ +static_assert(offsetof(UBlockAbilityTagsGameplayEffectComponent, InheritableBlockedAbilityTagsContainer) == 0x000028, "Member 'UBlockAbilityTagsGameplayEffectComponent::InheritableBlockedAbilityTagsContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChanceToApplyGameplayEffectComponent \ +static_assert(alignof(UChanceToApplyGameplayEffectComponent) == 0x000008, "Wrong alignment on UChanceToApplyGameplayEffectComponent"); \ +static_assert(sizeof(UChanceToApplyGameplayEffectComponent) == 0x000050, "Wrong size on UChanceToApplyGameplayEffectComponent"); \ +static_assert(offsetof(UChanceToApplyGameplayEffectComponent, ChanceToApplyToTarget) == 0x000028, "Member 'UChanceToApplyGameplayEffectComponent::ChanceToApplyToTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCustomCanApplyGameplayEffectComponent \ +static_assert(alignof(UCustomCanApplyGameplayEffectComponent) == 0x000008, "Wrong alignment on UCustomCanApplyGameplayEffectComponent"); \ +static_assert(sizeof(UCustomCanApplyGameplayEffectComponent) == 0x000038, "Wrong size on UCustomCanApplyGameplayEffectComponent"); \ +static_assert(offsetof(UCustomCanApplyGameplayEffectComponent, ApplicationRequirements) == 0x000028, "Member 'UCustomCanApplyGameplayEffectComponent::ApplicationRequirements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectUIData \ +static_assert(alignof(UGameplayEffectUIData) == 0x000008, "Wrong alignment on UGameplayEffectUIData"); \ +static_assert(sizeof(UGameplayEffectUIData) == 0x000028, "Wrong size on UGameplayEffectUIData"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectUIData_TextOnly \ +static_assert(alignof(UGameplayEffectUIData_TextOnly) == 0x000008, "Wrong alignment on UGameplayEffectUIData_TextOnly"); \ +static_assert(sizeof(UGameplayEffectUIData_TextOnly) == 0x000040, "Wrong size on UGameplayEffectUIData_TextOnly"); \ +static_assert(offsetof(UGameplayEffectUIData_TextOnly, Description) == 0x000028, "Member 'UGameplayEffectUIData_TextOnly::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImmunityGameplayEffectComponent \ +static_assert(alignof(UImmunityGameplayEffectComponent) == 0x000008, "Wrong alignment on UImmunityGameplayEffectComponent"); \ +static_assert(sizeof(UImmunityGameplayEffectComponent) == 0x000038, "Wrong size on UImmunityGameplayEffectComponent"); \ +static_assert(offsetof(UImmunityGameplayEffectComponent, ImmunityQueries) == 0x000028, "Member 'UImmunityGameplayEffectComponent::ImmunityQueries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URemoveOtherGameplayEffectComponent \ +static_assert(alignof(URemoveOtherGameplayEffectComponent) == 0x000008, "Wrong alignment on URemoveOtherGameplayEffectComponent"); \ +static_assert(sizeof(URemoveOtherGameplayEffectComponent) == 0x000038, "Wrong size on URemoveOtherGameplayEffectComponent"); \ +static_assert(offsetof(URemoveOtherGameplayEffectComponent, RemoveGameplayEffectQueries) == 0x000028, "Member 'URemoveOtherGameplayEffectComponent::RemoveGameplayEffectQueries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTargetTagRequirementsGameplayEffectComponent \ +static_assert(alignof(UTargetTagRequirementsGameplayEffectComponent) == 0x000008, "Wrong alignment on UTargetTagRequirementsGameplayEffectComponent"); \ +static_assert(sizeof(UTargetTagRequirementsGameplayEffectComponent) == 0x0001C0, "Wrong size on UTargetTagRequirementsGameplayEffectComponent"); \ +static_assert(offsetof(UTargetTagRequirementsGameplayEffectComponent, ApplicationTagRequirements) == 0x000028, "Member 'UTargetTagRequirementsGameplayEffectComponent::ApplicationTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(UTargetTagRequirementsGameplayEffectComponent, OngoingTagRequirements) == 0x0000B0, "Member 'UTargetTagRequirementsGameplayEffectComponent::OngoingTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(UTargetTagRequirementsGameplayEffectComponent, RemovalTagRequirements) == 0x000138, "Member 'UTargetTagRequirementsGameplayEffectComponent::RemovalTagRequirements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTargetTagsGameplayEffectComponent \ +static_assert(alignof(UTargetTagsGameplayEffectComponent) == 0x000008, "Wrong alignment on UTargetTagsGameplayEffectComponent"); \ +static_assert(sizeof(UTargetTagsGameplayEffectComponent) == 0x000088, "Wrong size on UTargetTagsGameplayEffectComponent"); \ +static_assert(offsetof(UTargetTagsGameplayEffectComponent, InheritableGrantedTagsContainer) == 0x000028, "Member 'UTargetTagsGameplayEffectComponent::InheritableGrantedTagsContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync \ +static_assert(alignof(UAbilityAsync) == 0x000008, "Wrong alignment on UAbilityAsync"); \ +static_assert(sizeof(UAbilityAsync) == 0x000038, "Wrong size on UAbilityAsync"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged \ +static_assert(alignof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged) == 0x000008, "Wrong alignment on AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged"); \ +static_assert(sizeof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged) == 0x000050, "Wrong size on AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged"); \ +static_assert(offsetof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged, Attribute) == 0x000008, "Member 'AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged, OnlyTriggerOnce) == 0x000040, "Member 'AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged, ReturnValue) == 0x000048, "Member 'AbilityAsync_WaitAttributeChanged_WaitForAttributeChanged::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitAttributeChanged \ +static_assert(alignof(UAbilityAsync_WaitAttributeChanged) == 0x000008, "Wrong alignment on UAbilityAsync_WaitAttributeChanged"); \ +static_assert(sizeof(UAbilityAsync_WaitAttributeChanged) == 0x000090, "Wrong size on UAbilityAsync_WaitAttributeChanged"); \ +static_assert(offsetof(UAbilityAsync_WaitAttributeChanged, Changed) == 0x000038, "Member 'UAbilityAsync_WaitAttributeChanged::Changed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor \ +static_assert(alignof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor) == 0x000008, "Wrong alignment on AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor"); \ +static_assert(sizeof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor) == 0x000138, "Wrong size on AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, SourceFilter) == 0x000008, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::SourceFilter' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, SourceTagRequirements) == 0x000018, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::SourceTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, TargetTagRequirements) == 0x0000A0, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::TargetTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, TriggerOnce) == 0x000128, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, ListenForPeriodicEffect) == 0x000129, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::ListenForPeriodicEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor, ReturnValue) == 0x000130, "Member 'AbilityAsync_WaitGameplayEffectApplied_WaitGameplayEffectAppliedToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayEffectApplied \ +static_assert(alignof(UAbilityAsync_WaitGameplayEffectApplied) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayEffectApplied"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayEffectApplied) == 0x000188, "Wrong size on UAbilityAsync_WaitGameplayEffectApplied"); \ +static_assert(offsetof(UAbilityAsync_WaitGameplayEffectApplied, OnApplied) == 0x000038, "Member 'UAbilityAsync_WaitGameplayEffectApplied::OnApplied' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor \ +static_assert(alignof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor) == 0x000008, "Wrong alignment on AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor"); \ +static_assert(sizeof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor) == 0x000020, "Wrong size on AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor, EventTag) == 0x000008, "Member 'AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor::EventTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor, OnlyTriggerOnce) == 0x000010, "Member 'AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor, OnlyMatchExact) == 0x000011, "Member 'AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor::OnlyMatchExact' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor, ReturnValue) == 0x000018, "Member 'AbilityAsync_WaitGameplayEvent_WaitGameplayEventToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayEvent \ +static_assert(alignof(UAbilityAsync_WaitGameplayEvent) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayEvent"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayEvent) == 0x000060, "Wrong size on UAbilityAsync_WaitGameplayEvent"); \ +static_assert(offsetof(UAbilityAsync_WaitGameplayEvent, EventReceived) == 0x000038, "Member 'UAbilityAsync_WaitGameplayEvent::EventReceived' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayTag \ +static_assert(alignof(UAbilityAsync_WaitGameplayTag) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayTag"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayTag) == 0x000050, "Wrong size on UAbilityAsync_WaitGameplayTag"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor \ +static_assert(alignof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor) == 0x000008, "Wrong alignment on AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor"); \ +static_assert(sizeof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor) == 0x000020, "Wrong size on AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor, Tag) == 0x000008, "Member 'AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor, OnlyTriggerOnce) == 0x000010, "Member 'AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor, ReturnValue) == 0x000018, "Member 'AbilityAsync_WaitGameplayTagAdded_WaitGameplayTagAddToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayTagAdded \ +static_assert(alignof(UAbilityAsync_WaitGameplayTagAdded) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayTagAdded"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayTagAdded) == 0x000060, "Wrong size on UAbilityAsync_WaitGameplayTagAdded"); \ +static_assert(offsetof(UAbilityAsync_WaitGameplayTagAdded, Added) == 0x000050, "Member 'UAbilityAsync_WaitGameplayTagAdded::Added' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor \ +static_assert(alignof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor) == 0x000008, "Wrong alignment on AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor"); \ +static_assert(sizeof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor) == 0x000020, "Wrong size on AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor, Tag) == 0x000008, "Member 'AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor, OnlyTriggerOnce) == 0x000010, "Member 'AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor, ReturnValue) == 0x000018, "Member 'AbilityAsync_WaitGameplayTagRemoved_WaitGameplayTagRemoveFromActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayTagRemoved \ +static_assert(alignof(UAbilityAsync_WaitGameplayTagRemoved) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayTagRemoved"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayTagRemoved) == 0x000060, "Wrong size on UAbilityAsync_WaitGameplayTagRemoved"); \ +static_assert(offsetof(UAbilityAsync_WaitGameplayTagRemoved, Removed) == 0x000050, "Member 'UAbilityAsync_WaitGameplayTagRemoved::Removed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor \ +static_assert(alignof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor) == 0x000008, "Wrong alignment on AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor"); \ +static_assert(sizeof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor) == 0x000060, "Wrong size on AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor, TargetActor) == 0x000000, "Member 'AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor, TagQuery) == 0x000008, "Member 'AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor, TriggerCondition) == 0x000050, "Member 'AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor::TriggerCondition' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor, bOnlyTriggerOnce) == 0x000051, "Member 'AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor::bOnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor, ReturnValue) == 0x000058, "Member 'AbilityAsync_WaitGameplayTagQuery_WaitGameplayTagQueryOnActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityAsync_WaitGameplayTagQuery \ +static_assert(alignof(UAbilityAsync_WaitGameplayTagQuery) == 0x000008, "Wrong alignment on UAbilityAsync_WaitGameplayTagQuery"); \ +static_assert(sizeof(UAbilityAsync_WaitGameplayTagQuery) == 0x000108, "Wrong size on UAbilityAsync_WaitGameplayTagQuery"); \ +static_assert(offsetof(UAbilityAsync_WaitGameplayTagQuery, Triggered) == 0x0000F8, "Member 'UAbilityAsync_WaitGameplayTagQuery::Triggered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayAbilitySet \ +static_assert(alignof(UGameplayAbilitySet) == 0x000008, "Wrong alignment on UGameplayAbilitySet"); \ +static_assert(sizeof(UGameplayAbilitySet) == 0x000040, "Wrong size on UGameplayAbilitySet"); \ +static_assert(offsetof(UGameplayAbilitySet, Abilities) == 0x000030, "Member 'UGameplayAbilitySet::Abilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor \ +static_assert(alignof(AGameplayAbilityTargetActor) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor"); \ +static_assert(sizeof(AGameplayAbilityTargetActor) == 0x0003E0, "Wrong size on AGameplayAbilityTargetActor"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, ShouldProduceTargetDataOnServer) == 0x000298, "Member 'AGameplayAbilityTargetActor::ShouldProduceTargetDataOnServer' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, StartLocation) == 0x0002A0, "Member 'AGameplayAbilityTargetActor::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, PrimaryPC) == 0x000370, "Member 'AGameplayAbilityTargetActor::PrimaryPC' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, OwningAbility) == 0x000378, "Member 'AGameplayAbilityTargetActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, bDestroyOnConfirmation) == 0x000380, "Member 'AGameplayAbilityTargetActor::bDestroyOnConfirmation' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, SourceActor) == 0x000388, "Member 'AGameplayAbilityTargetActor::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, ReticleParams) == 0x000390, "Member 'AGameplayAbilityTargetActor::ReticleParams' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, ReticleClass) == 0x0003A8, "Member 'AGameplayAbilityTargetActor::ReticleClass' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, Filter) == 0x0003B0, "Member 'AGameplayAbilityTargetActor::Filter' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, bDebug) == 0x0003C0, "Member 'AGameplayAbilityTargetActor::bDebug' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor, GenericDelegateBoundASC) == 0x0003D8, "Member 'AGameplayAbilityTargetActor::GenericDelegateBoundASC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor_Trace \ +static_assert(alignof(AGameplayAbilityTargetActor_Trace) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor_Trace"); \ +static_assert(sizeof(AGameplayAbilityTargetActor_Trace) == 0x000400, "Wrong size on AGameplayAbilityTargetActor_Trace"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_Trace, MaxRange) == 0x0003E0, "Member 'AGameplayAbilityTargetActor_Trace::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_Trace, TraceProfile) == 0x0003E4, "Member 'AGameplayAbilityTargetActor_Trace::TraceProfile' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_Trace, bTraceAffectsAimPitch) == 0x0003EC, "Member 'AGameplayAbilityTargetActor_Trace::bTraceAffectsAimPitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor_GroundTrace \ +static_assert(alignof(AGameplayAbilityTargetActor_GroundTrace) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor_GroundTrace"); \ +static_assert(sizeof(AGameplayAbilityTargetActor_GroundTrace) == 0x000420, "Wrong size on AGameplayAbilityTargetActor_GroundTrace"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_GroundTrace, CollisionRadius) == 0x0003F8, "Member 'AGameplayAbilityTargetActor_GroundTrace::CollisionRadius' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_GroundTrace, CollisionHeight) == 0x0003FC, "Member 'AGameplayAbilityTargetActor_GroundTrace::CollisionHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor_ActorPlacement \ +static_assert(alignof(AGameplayAbilityTargetActor_ActorPlacement) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor_ActorPlacement"); \ +static_assert(sizeof(AGameplayAbilityTargetActor_ActorPlacement) == 0x000430, "Wrong size on AGameplayAbilityTargetActor_ActorPlacement"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_ActorPlacement, PlacedActorClass) == 0x000418, "Member 'AGameplayAbilityTargetActor_ActorPlacement::PlacedActorClass' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_ActorPlacement, PlacedActorMaterial) == 0x000420, "Member 'AGameplayAbilityTargetActor_ActorPlacement::PlacedActorMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor_Radius \ +static_assert(alignof(AGameplayAbilityTargetActor_Radius) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor_Radius"); \ +static_assert(sizeof(AGameplayAbilityTargetActor_Radius) == 0x0003F0, "Wrong size on AGameplayAbilityTargetActor_Radius"); \ +static_assert(offsetof(AGameplayAbilityTargetActor_Radius, Radius) == 0x0003E0, "Member 'AGameplayAbilityTargetActor_Radius::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityTargetActor_SingleLineTrace \ +static_assert(alignof(AGameplayAbilityTargetActor_SingleLineTrace) == 0x000010, "Wrong alignment on AGameplayAbilityTargetActor_SingleLineTrace"); \ +static_assert(sizeof(AGameplayAbilityTargetActor_SingleLineTrace) == 0x000400, "Wrong size on AGameplayAbilityTargetActor_SingleLineTrace"); \ + +#define DUMPER7_ASSERTS_GameplayAbilityWorldReticle_FaceTowardSource \ +static_assert(alignof(GameplayAbilityWorldReticle_FaceTowardSource) == 0x000001, "Wrong alignment on GameplayAbilityWorldReticle_FaceTowardSource"); \ +static_assert(sizeof(GameplayAbilityWorldReticle_FaceTowardSource) == 0x000001, "Wrong size on GameplayAbilityWorldReticle_FaceTowardSource"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_FaceTowardSource, bFaceIn2D) == 0x000000, "Member 'GameplayAbilityWorldReticle_FaceTowardSource::bFaceIn2D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbilityWorldReticle_OnTargetingAnActor \ +static_assert(alignof(GameplayAbilityWorldReticle_OnTargetingAnActor) == 0x000001, "Wrong alignment on GameplayAbilityWorldReticle_OnTargetingAnActor"); \ +static_assert(sizeof(GameplayAbilityWorldReticle_OnTargetingAnActor) == 0x000001, "Wrong size on GameplayAbilityWorldReticle_OnTargetingAnActor"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_OnTargetingAnActor, bNewValue) == 0x000000, "Member 'GameplayAbilityWorldReticle_OnTargetingAnActor::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbilityWorldReticle_OnValidTargetChanged \ +static_assert(alignof(GameplayAbilityWorldReticle_OnValidTargetChanged) == 0x000001, "Wrong alignment on GameplayAbilityWorldReticle_OnValidTargetChanged"); \ +static_assert(sizeof(GameplayAbilityWorldReticle_OnValidTargetChanged) == 0x000001, "Wrong size on GameplayAbilityWorldReticle_OnValidTargetChanged"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_OnValidTargetChanged, bNewValue) == 0x000000, "Member 'GameplayAbilityWorldReticle_OnValidTargetChanged::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbilityWorldReticle_SetReticleMaterialParamFloat \ +static_assert(alignof(GameplayAbilityWorldReticle_SetReticleMaterialParamFloat) == 0x000004, "Wrong alignment on GameplayAbilityWorldReticle_SetReticleMaterialParamFloat"); \ +static_assert(sizeof(GameplayAbilityWorldReticle_SetReticleMaterialParamFloat) == 0x00000C, "Wrong size on GameplayAbilityWorldReticle_SetReticleMaterialParamFloat"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_SetReticleMaterialParamFloat, ParamName) == 0x000000, "Member 'GameplayAbilityWorldReticle_SetReticleMaterialParamFloat::ParamName' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_SetReticleMaterialParamFloat, Value) == 0x000008, "Member 'GameplayAbilityWorldReticle_SetReticleMaterialParamFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayAbilityWorldReticle_SetReticleMaterialParamVector \ +static_assert(alignof(GameplayAbilityWorldReticle_SetReticleMaterialParamVector) == 0x000008, "Wrong alignment on GameplayAbilityWorldReticle_SetReticleMaterialParamVector"); \ +static_assert(sizeof(GameplayAbilityWorldReticle_SetReticleMaterialParamVector) == 0x000020, "Wrong size on GameplayAbilityWorldReticle_SetReticleMaterialParamVector"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_SetReticleMaterialParamVector, ParamName) == 0x000000, "Member 'GameplayAbilityWorldReticle_SetReticleMaterialParamVector::ParamName' has a wrong offset!"); \ +static_assert(offsetof(GameplayAbilityWorldReticle_SetReticleMaterialParamVector, Value) == 0x000008, "Member 'GameplayAbilityWorldReticle_SetReticleMaterialParamVector::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityWorldReticle \ +static_assert(alignof(AGameplayAbilityWorldReticle) == 0x000008, "Wrong alignment on AGameplayAbilityWorldReticle"); \ +static_assert(sizeof(AGameplayAbilityWorldReticle) == 0x0002C8, "Wrong size on AGameplayAbilityWorldReticle"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, Parameters) == 0x000298, "Member 'AGameplayAbilityWorldReticle::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, bFaceOwnerFlat) == 0x0002B0, "Member 'AGameplayAbilityWorldReticle::bFaceOwnerFlat' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, bSnapToTargetedActor) == 0x0002B1, "Member 'AGameplayAbilityWorldReticle::bSnapToTargetedActor' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, bIsTargetValid) == 0x0002B2, "Member 'AGameplayAbilityWorldReticle::bIsTargetValid' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, bIsTargetAnActor) == 0x0002B3, "Member 'AGameplayAbilityWorldReticle::bIsTargetAnActor' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, PrimaryPC) == 0x0002B8, "Member 'AGameplayAbilityWorldReticle::PrimaryPC' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle, TargetingActor) == 0x0002C0, "Member 'AGameplayAbilityWorldReticle::TargetingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayAbilityWorldReticle_ActorVisualization \ +static_assert(alignof(AGameplayAbilityWorldReticle_ActorVisualization) == 0x000008, "Wrong alignment on AGameplayAbilityWorldReticle_ActorVisualization"); \ +static_assert(sizeof(AGameplayAbilityWorldReticle_ActorVisualization) == 0x0002E0, "Wrong size on AGameplayAbilityWorldReticle_ActorVisualization"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle_ActorVisualization, CollisionComponent) == 0x0002C8, "Member 'AGameplayAbilityWorldReticle_ActorVisualization::CollisionComponent' has a wrong offset!"); \ +static_assert(offsetof(AGameplayAbilityWorldReticle_ActorVisualization, VisualizationComponents) == 0x0002D0, "Member 'AGameplayAbilityWorldReticle_ActorVisualization::VisualizationComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayAbility_Montage \ +static_assert(alignof(UGameplayAbility_Montage) == 0x000008, "Wrong alignment on UGameplayAbility_Montage"); \ +static_assert(sizeof(UGameplayAbility_Montage) == 0x0003F0, "Wrong size on UGameplayAbility_Montage"); \ +static_assert(offsetof(UGameplayAbility_Montage, MontageToPlay) == 0x0003B8, "Member 'UGameplayAbility_Montage::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility_Montage, PlayRate) == 0x0003C0, "Member 'UGameplayAbility_Montage::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility_Montage, SectionName) == 0x0003C4, "Member 'UGameplayAbility_Montage::SectionName' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility_Montage, GameplayEffectClassesWhileAnimating) == 0x0003D0, "Member 'UGameplayAbility_Montage::GameplayEffectClassesWhileAnimating' has a wrong offset!"); \ +static_assert(offsetof(UGameplayAbility_Montage, GameplayEffectsWhileAnimating) == 0x0003E0, "Member 'UGameplayAbility_Montage::GameplayEffectsWhileAnimating' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask \ +static_assert(alignof(UAbilityTask) == 0x000008, "Wrong alignment on UAbilityTask"); \ +static_assert(sizeof(UAbilityTask) == 0x000080, "Wrong size on UAbilityTask"); \ +static_assert(offsetof(UAbilityTask, Ability) == 0x000068, "Member 'UAbilityTask::Ability' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask, AbilitySystemComponent) == 0x000070, "Member 'UAbilityTask::AbilitySystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotion_Base \ +static_assert(alignof(UAbilityTask_ApplyRootMotion_Base) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotion_Base"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotion_Base) == 0x0000C8, "Wrong size on UAbilityTask_ApplyRootMotion_Base"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotion_Base, ForceName) == 0x000080, "Member 'UAbilityTask_ApplyRootMotion_Base::ForceName' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotion_Base, FinishVelocityMode) == 0x000088, "Member 'UAbilityTask_ApplyRootMotion_Base::FinishVelocityMode' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotion_Base, FinishSetVelocity) == 0x000090, "Member 'UAbilityTask_ApplyRootMotion_Base::FinishSetVelocity' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotion_Base, FinishClampVelocity) == 0x0000A8, "Member 'UAbilityTask_ApplyRootMotion_Base::FinishClampVelocity' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotion_Base, MovementComponent) == 0x0000B0, "Member 'UAbilityTask_ApplyRootMotion_Base::MovementComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce) == 0x000070, "Wrong size on AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, WorldDirection_0) == 0x000010, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::WorldDirection_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, Strength_0) == 0x000028, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, Duration_0) == 0x00002C, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, bIsAdditive_0) == 0x000030, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::bIsAdditive_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, StrengthOverTime_0) == 0x000038, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::StrengthOverTime_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, VelocityOnFinishMode) == 0x000040, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, SetVelocityOnFinish) == 0x000048, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, ClampVelocityOnFinish) == 0x000060, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, bEnableGravity_0) == 0x000064, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::bEnableGravity_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce, ReturnValue) == 0x000068, "Member 'AbilityTask_ApplyRootMotionConstantForce_ApplyRootMotionConstantForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotionConstantForce \ +static_assert(alignof(UAbilityTask_ApplyRootMotionConstantForce) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotionConstantForce"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotionConstantForce) == 0x000110, "Wrong size on UAbilityTask_ApplyRootMotionConstantForce"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, OnFinish) == 0x0000C8, "Member 'UAbilityTask_ApplyRootMotionConstantForce::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, WorldDirection) == 0x0000D8, "Member 'UAbilityTask_ApplyRootMotionConstantForce::WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, Strength) == 0x0000F0, "Member 'UAbilityTask_ApplyRootMotionConstantForce::Strength' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, Duration) == 0x0000F4, "Member 'UAbilityTask_ApplyRootMotionConstantForce::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, bIsAdditive) == 0x0000F8, "Member 'UAbilityTask_ApplyRootMotionConstantForce::bIsAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, StrengthOverTime) == 0x000100, "Member 'UAbilityTask_ApplyRootMotionConstantForce::StrengthOverTime' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionConstantForce, bEnableGravity) == 0x000108, "Member 'UAbilityTask_ApplyRootMotionConstantForce::bEnableGravity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce) == 0x000078, "Wrong size on AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, Rotation_0) == 0x000010, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::Rotation_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, Distance_0) == 0x000028, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::Distance_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, Height_0) == 0x00002C, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::Height_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, Duration_0) == 0x000030, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, MinimumLandedTriggerTime_0) == 0x000034, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::MinimumLandedTriggerTime_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, bFinishOnLanded_0) == 0x000038, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::bFinishOnLanded_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, VelocityOnFinishMode) == 0x000039, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, SetVelocityOnFinish) == 0x000040, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, ClampVelocityOnFinish) == 0x000058, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, PathOffsetCurve_0) == 0x000060, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::PathOffsetCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, TimeMappingCurve_0) == 0x000068, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::TimeMappingCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce, ReturnValue) == 0x000070, "Member 'AbilityTask_ApplyRootMotionJumpForce_ApplyRootMotionJumpForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback \ +static_assert(alignof(AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback) == 0x0000E8, "Wrong size on AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback, Hit) == 0x000000, "Member 'AbilityTask_ApplyRootMotionJumpForce_OnLandedCallback::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotionJumpForce \ +static_assert(alignof(UAbilityTask_ApplyRootMotionJumpForce) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotionJumpForce"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotionJumpForce) == 0x000130, "Wrong size on UAbilityTask_ApplyRootMotionJumpForce"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, OnFinish) == 0x0000C8, "Member 'UAbilityTask_ApplyRootMotionJumpForce::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, OnLanded) == 0x0000D8, "Member 'UAbilityTask_ApplyRootMotionJumpForce::OnLanded' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, Rotation) == 0x0000E8, "Member 'UAbilityTask_ApplyRootMotionJumpForce::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, Distance) == 0x000100, "Member 'UAbilityTask_ApplyRootMotionJumpForce::Distance' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, Height) == 0x000104, "Member 'UAbilityTask_ApplyRootMotionJumpForce::Height' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, Duration) == 0x000108, "Member 'UAbilityTask_ApplyRootMotionJumpForce::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, MinimumLandedTriggerTime) == 0x00010C, "Member 'UAbilityTask_ApplyRootMotionJumpForce::MinimumLandedTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, bFinishOnLanded) == 0x000110, "Member 'UAbilityTask_ApplyRootMotionJumpForce::bFinishOnLanded' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, PathOffsetCurve) == 0x000118, "Member 'UAbilityTask_ApplyRootMotionJumpForce::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionJumpForce, TimeMappingCurve) == 0x000120, "Member 'UAbilityTask_ApplyRootMotionJumpForce::TimeMappingCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce) == 0x000090, "Wrong size on AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TargetActor_0) == 0x000010, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TargetLocationOffset_0) == 0x000018, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TargetLocationOffset_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, OffsetAlignment_0) == 0x000030, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::OffsetAlignment_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, Duration_0) == 0x000034, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TargetLerpSpeedHorizontal) == 0x000038, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TargetLerpSpeedHorizontal' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TargetLerpSpeedVertical) == 0x000040, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TargetLerpSpeedVertical' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, bSetNewMovementMode_0) == 0x000048, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::bSetNewMovementMode_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, MovementMode) == 0x000049, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, bRestrictSpeedToExpected_0) == 0x00004A, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::bRestrictSpeedToExpected_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, PathOffsetCurve_0) == 0x000050, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::PathOffsetCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, TimeMappingCurve_0) == 0x000058, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::TimeMappingCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, VelocityOnFinishMode) == 0x000060, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, SetVelocityOnFinish) == 0x000068, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, ClampVelocityOnFinish) == 0x000080, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, bDisableDestinationReachedInterrupt_0) == 0x000084, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::bDisableDestinationReachedInterrupt_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce, ReturnValue) == 0x000088, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToActorForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce) == 0x0000B8, "Wrong size on AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetDataHandle) == 0x000010, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetDataHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetDataIndex) == 0x000038, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetDataIndex' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetActorIndex) == 0x00003C, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetActorIndex' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetLocationOffset_0) == 0x000040, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetLocationOffset_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, OffsetAlignment_0) == 0x000058, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::OffsetAlignment_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, Duration_0) == 0x00005C, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetLerpSpeedHorizontal) == 0x000060, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetLerpSpeedHorizontal' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TargetLerpSpeedVertical) == 0x000068, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TargetLerpSpeedVertical' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, bSetNewMovementMode_0) == 0x000070, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::bSetNewMovementMode_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, MovementMode) == 0x000071, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, bRestrictSpeedToExpected_0) == 0x000072, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::bRestrictSpeedToExpected_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, PathOffsetCurve_0) == 0x000078, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::PathOffsetCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, TimeMappingCurve_0) == 0x000080, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::TimeMappingCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, VelocityOnFinishMode) == 0x000088, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, SetVelocityOnFinish) == 0x000090, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, ClampVelocityOnFinish) == 0x0000A8, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, bDisableDestinationReachedInterrupt_0) == 0x0000AC, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::bDisableDestinationReachedInterrupt_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce, ReturnValue) == 0x0000B0, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_ApplyRootMotionMoveToTargetDataActorForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped \ +static_assert(alignof(AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped) == 0x000010, "Wrong size on AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped, OriginalTarget) == 0x000000, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped::OriginalTarget' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped, NewTarget) == 0x000008, "Member 'AbilityTask_ApplyRootMotionMoveToActorForce_OnTargetActorSwapped::NewTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotionMoveToActorForce \ +static_assert(alignof(UAbilityTask_ApplyRootMotionMoveToActorForce) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotionMoveToActorForce"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotionMoveToActorForce) == 0x000168, "Wrong size on UAbilityTask_ApplyRootMotionMoveToActorForce"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, OnFinished) == 0x0000C8, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::OnFinished' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, StartLocation) == 0x0000E0, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TargetLocation) == 0x0000F8, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TargetActor) == 0x000110, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TargetLocationOffset) == 0x000118, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, OffsetAlignment) == 0x000130, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::OffsetAlignment' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, Duration) == 0x000134, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, bDisableDestinationReachedInterrupt) == 0x000138, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::bDisableDestinationReachedInterrupt' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, bSetNewMovementMode) == 0x000139, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::bSetNewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, NewMovementMode) == 0x00013A, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, bRestrictSpeedToExpected) == 0x00013B, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, PathOffsetCurve) == 0x000140, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TimeMappingCurve) == 0x000148, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TimeMappingCurve' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TargetLerpSpeedHorizontalCurve) == 0x000150, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TargetLerpSpeedHorizontalCurve' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToActorForce, TargetLerpSpeedVerticalCurve) == 0x000158, "Member 'UAbilityTask_ApplyRootMotionMoveToActorForce::TargetLerpSpeedVerticalCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce) == 0x000068, "Wrong size on AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, TargetLocation_0) == 0x000010, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::TargetLocation_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, Duration_0) == 0x000028, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, bSetNewMovementMode_0) == 0x00002C, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::bSetNewMovementMode_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, MovementMode) == 0x00002D, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, bRestrictSpeedToExpected_0) == 0x00002E, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::bRestrictSpeedToExpected_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, PathOffsetCurve_0) == 0x000030, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::PathOffsetCurve_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, VelocityOnFinishMode) == 0x000038, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, SetVelocityOnFinish) == 0x000040, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, ClampVelocityOnFinish) == 0x000058, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce, ReturnValue) == 0x000060, "Member 'AbilityTask_ApplyRootMotionMoveToForce_ApplyRootMotionMoveToForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotionMoveToForce \ +static_assert(alignof(UAbilityTask_ApplyRootMotionMoveToForce) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotionMoveToForce"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotionMoveToForce) == 0x000130, "Wrong size on UAbilityTask_ApplyRootMotionMoveToForce"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, OnTimedOut) == 0x0000C8, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::OnTimedOut' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, OnTimedOutAndDestinationReached) == 0x0000D8, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::OnTimedOutAndDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, StartLocation) == 0x0000E8, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, TargetLocation) == 0x000100, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, Duration) == 0x000118, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, bSetNewMovementMode) == 0x00011C, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::bSetNewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, NewMovementMode) == 0x00011D, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, bRestrictSpeedToExpected) == 0x00011E, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionMoveToForce, PathOffsetCurve) == 0x000120, "Member 'UAbilityTask_ApplyRootMotionMoveToForce::PathOffsetCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce \ +static_assert(alignof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce) == 0x000008, "Wrong alignment on AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce"); \ +static_assert(sizeof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce) == 0x0000A0, "Wrong size on AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, OwningAbility) == 0x000000, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, TaskInstanceName) == 0x000008, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, Location_0) == 0x000010, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::Location_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, LocationActor_0) == 0x000028, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::LocationActor_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, Strength_0) == 0x000030, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, Duration_0) == 0x000034, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, Radius_0) == 0x000038, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::Radius_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, bIsPush_0) == 0x00003C, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::bIsPush_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, bIsAdditive_0) == 0x00003D, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::bIsAdditive_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, bNoZForce_0) == 0x00003E, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::bNoZForce_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, StrengthDistanceFalloff_0) == 0x000040, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::StrengthDistanceFalloff_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, StrengthOverTime_0) == 0x000048, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::StrengthOverTime_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, bUseFixedWorldDirection_0) == 0x000050, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::bUseFixedWorldDirection_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, FixedWorldDirection_0) == 0x000058, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::FixedWorldDirection_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, VelocityOnFinishMode) == 0x000070, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, SetVelocityOnFinish) == 0x000078, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, ClampVelocityOnFinish) == 0x000090, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce, ReturnValue) == 0x000098, "Member 'AbilityTask_ApplyRootMotionRadialForce_ApplyRootMotionRadialForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_ApplyRootMotionRadialForce \ +static_assert(alignof(UAbilityTask_ApplyRootMotionRadialForce) == 0x000008, "Wrong alignment on UAbilityTask_ApplyRootMotionRadialForce"); \ +static_assert(sizeof(UAbilityTask_ApplyRootMotionRadialForce) == 0x000138, "Wrong size on UAbilityTask_ApplyRootMotionRadialForce"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, OnFinish) == 0x0000C8, "Member 'UAbilityTask_ApplyRootMotionRadialForce::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, Location) == 0x0000D8, "Member 'UAbilityTask_ApplyRootMotionRadialForce::Location' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, LocationActor) == 0x0000F0, "Member 'UAbilityTask_ApplyRootMotionRadialForce::LocationActor' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, Strength) == 0x0000F8, "Member 'UAbilityTask_ApplyRootMotionRadialForce::Strength' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, Duration) == 0x0000FC, "Member 'UAbilityTask_ApplyRootMotionRadialForce::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, Radius) == 0x000100, "Member 'UAbilityTask_ApplyRootMotionRadialForce::Radius' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, bIsPush) == 0x000104, "Member 'UAbilityTask_ApplyRootMotionRadialForce::bIsPush' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, bIsAdditive) == 0x000105, "Member 'UAbilityTask_ApplyRootMotionRadialForce::bIsAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, bNoZForce) == 0x000106, "Member 'UAbilityTask_ApplyRootMotionRadialForce::bNoZForce' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, StrengthDistanceFalloff) == 0x000108, "Member 'UAbilityTask_ApplyRootMotionRadialForce::StrengthDistanceFalloff' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, StrengthOverTime) == 0x000110, "Member 'UAbilityTask_ApplyRootMotionRadialForce::StrengthOverTime' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, bUseFixedWorldDirection) == 0x000118, "Member 'UAbilityTask_ApplyRootMotionRadialForce::bUseFixedWorldDirection' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_ApplyRootMotionRadialForce, FixedWorldDirection) == 0x000120, "Member 'UAbilityTask_ApplyRootMotionRadialForce::FixedWorldDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_MoveToLocation_MoveToLocation \ +static_assert(alignof(AbilityTask_MoveToLocation_MoveToLocation) == 0x000008, "Wrong alignment on AbilityTask_MoveToLocation_MoveToLocation"); \ +static_assert(sizeof(AbilityTask_MoveToLocation_MoveToLocation) == 0x000048, "Wrong size on AbilityTask_MoveToLocation_MoveToLocation"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, OwningAbility) == 0x000000, "Member 'AbilityTask_MoveToLocation_MoveToLocation::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, TaskInstanceName) == 0x000008, "Member 'AbilityTask_MoveToLocation_MoveToLocation::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, Location) == 0x000010, "Member 'AbilityTask_MoveToLocation_MoveToLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, Duration) == 0x000028, "Member 'AbilityTask_MoveToLocation_MoveToLocation::Duration' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, OptionalInterpolationCurve) == 0x000030, "Member 'AbilityTask_MoveToLocation_MoveToLocation::OptionalInterpolationCurve' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, OptionalVectorInterpolationCurve) == 0x000038, "Member 'AbilityTask_MoveToLocation_MoveToLocation::OptionalVectorInterpolationCurve' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_MoveToLocation_MoveToLocation, ReturnValue) == 0x000040, "Member 'AbilityTask_MoveToLocation_MoveToLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_MoveToLocation \ +static_assert(alignof(UAbilityTask_MoveToLocation) == 0x000008, "Wrong alignment on UAbilityTask_MoveToLocation"); \ +static_assert(sizeof(UAbilityTask_MoveToLocation) == 0x0000E8, "Wrong size on UAbilityTask_MoveToLocation"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, OnTargetLocationReached) == 0x000080, "Member 'UAbilityTask_MoveToLocation::OnTargetLocationReached' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, StartLocation) == 0x000098, "Member 'UAbilityTask_MoveToLocation::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, TargetLocation) == 0x0000B0, "Member 'UAbilityTask_MoveToLocation::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, DurationOfMovement) == 0x0000C8, "Member 'UAbilityTask_MoveToLocation::DurationOfMovement' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, LerpCurve) == 0x0000D8, "Member 'UAbilityTask_MoveToLocation::LerpCurve' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_MoveToLocation, LerpCurveVector) == 0x0000E0, "Member 'UAbilityTask_MoveToLocation::LerpCurveVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_NetworkSyncPoint_WaitNetSync \ +static_assert(alignof(AbilityTask_NetworkSyncPoint_WaitNetSync) == 0x000008, "Wrong alignment on AbilityTask_NetworkSyncPoint_WaitNetSync"); \ +static_assert(sizeof(AbilityTask_NetworkSyncPoint_WaitNetSync) == 0x000018, "Wrong size on AbilityTask_NetworkSyncPoint_WaitNetSync"); \ +static_assert(offsetof(AbilityTask_NetworkSyncPoint_WaitNetSync, OwningAbility) == 0x000000, "Member 'AbilityTask_NetworkSyncPoint_WaitNetSync::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_NetworkSyncPoint_WaitNetSync, SyncType) == 0x000008, "Member 'AbilityTask_NetworkSyncPoint_WaitNetSync::SyncType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_NetworkSyncPoint_WaitNetSync, ReturnValue) == 0x000010, "Member 'AbilityTask_NetworkSyncPoint_WaitNetSync::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_NetworkSyncPoint \ +static_assert(alignof(UAbilityTask_NetworkSyncPoint) == 0x000008, "Wrong alignment on UAbilityTask_NetworkSyncPoint"); \ +static_assert(sizeof(UAbilityTask_NetworkSyncPoint) == 0x000098, "Wrong size on UAbilityTask_NetworkSyncPoint"); \ +static_assert(offsetof(UAbilityTask_NetworkSyncPoint, OnSync) == 0x000080, "Member 'UAbilityTask_NetworkSyncPoint::OnSync' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy \ +static_assert(alignof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy) == 0x000008, "Wrong alignment on AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy"); \ +static_assert(sizeof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy) == 0x000040, "Wrong size on AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, OwningAbility) == 0x000000, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, TaskInstanceName) == 0x000008, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, MontageToPlay_0) == 0x000010, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::MontageToPlay_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, Rate_0) == 0x000018, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::Rate_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, StartSection_0) == 0x00001C, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::StartSection_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, bStopWhenAbilityEnds_0) == 0x000024, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::bStopWhenAbilityEnds_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, AnimRootMotionTranslationScale_0) == 0x000028, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::AnimRootMotionTranslationScale_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, StartTimeSeconds_0) == 0x00002C, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::StartTimeSeconds_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, bAllowInterruptAfterBlendOut_0) == 0x000030, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::bAllowInterruptAfterBlendOut_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy, ReturnValue) == 0x000038, "Member 'AbilityTask_PlayMontageAndWait_CreatePlayMontageAndWaitProxy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_PlayMontageAndWait_OnMontageBlendingOut \ +static_assert(alignof(AbilityTask_PlayMontageAndWait_OnMontageBlendingOut) == 0x000008, "Wrong alignment on AbilityTask_PlayMontageAndWait_OnMontageBlendingOut"); \ +static_assert(sizeof(AbilityTask_PlayMontageAndWait_OnMontageBlendingOut) == 0x000010, "Wrong size on AbilityTask_PlayMontageAndWait_OnMontageBlendingOut"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_OnMontageBlendingOut, Montage) == 0x000000, "Member 'AbilityTask_PlayMontageAndWait_OnMontageBlendingOut::Montage' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_OnMontageBlendingOut, bInterrupted) == 0x000008, "Member 'AbilityTask_PlayMontageAndWait_OnMontageBlendingOut::bInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_PlayMontageAndWait_OnMontageEnded \ +static_assert(alignof(AbilityTask_PlayMontageAndWait_OnMontageEnded) == 0x000008, "Wrong alignment on AbilityTask_PlayMontageAndWait_OnMontageEnded"); \ +static_assert(sizeof(AbilityTask_PlayMontageAndWait_OnMontageEnded) == 0x000010, "Wrong size on AbilityTask_PlayMontageAndWait_OnMontageEnded"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_OnMontageEnded, Montage) == 0x000000, "Member 'AbilityTask_PlayMontageAndWait_OnMontageEnded::Montage' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_PlayMontageAndWait_OnMontageEnded, bInterrupted) == 0x000008, "Member 'AbilityTask_PlayMontageAndWait_OnMontageEnded::bInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_PlayMontageAndWait \ +static_assert(alignof(UAbilityTask_PlayMontageAndWait) == 0x000008, "Wrong alignment on UAbilityTask_PlayMontageAndWait"); \ +static_assert(sizeof(UAbilityTask_PlayMontageAndWait) == 0x000108, "Wrong size on UAbilityTask_PlayMontageAndWait"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, OnCompleted) == 0x000080, "Member 'UAbilityTask_PlayMontageAndWait::OnCompleted' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, OnBlendOut) == 0x000090, "Member 'UAbilityTask_PlayMontageAndWait::OnBlendOut' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, OnInterrupted) == 0x0000A0, "Member 'UAbilityTask_PlayMontageAndWait::OnInterrupted' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, OnCancelled) == 0x0000B0, "Member 'UAbilityTask_PlayMontageAndWait::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, MontageToPlay) == 0x0000E8, "Member 'UAbilityTask_PlayMontageAndWait::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, Rate) == 0x0000F0, "Member 'UAbilityTask_PlayMontageAndWait::Rate' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, StartSection) == 0x0000F4, "Member 'UAbilityTask_PlayMontageAndWait::StartSection' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, AnimRootMotionTranslationScale) == 0x0000FC, "Member 'UAbilityTask_PlayMontageAndWait::AnimRootMotionTranslationScale' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, StartTimeSeconds) == 0x000100, "Member 'UAbilityTask_PlayMontageAndWait::StartTimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, bStopWhenAbilityEnds) == 0x000104, "Member 'UAbilityTask_PlayMontageAndWait::bStopWhenAbilityEnds' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_PlayMontageAndWait, bAllowInterruptAfterBlendOut) == 0x000105, "Member 'UAbilityTask_PlayMontageAndWait::bAllowInterruptAfterBlendOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_Repeat_RepeatAction \ +static_assert(alignof(AbilityTask_Repeat_RepeatAction) == 0x000008, "Wrong alignment on AbilityTask_Repeat_RepeatAction"); \ +static_assert(sizeof(AbilityTask_Repeat_RepeatAction) == 0x000018, "Wrong size on AbilityTask_Repeat_RepeatAction"); \ +static_assert(offsetof(AbilityTask_Repeat_RepeatAction, OwningAbility) == 0x000000, "Member 'AbilityTask_Repeat_RepeatAction::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_Repeat_RepeatAction, TimeBetweenActions) == 0x000008, "Member 'AbilityTask_Repeat_RepeatAction::TimeBetweenActions' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_Repeat_RepeatAction, TotalActionCount) == 0x00000C, "Member 'AbilityTask_Repeat_RepeatAction::TotalActionCount' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_Repeat_RepeatAction, ReturnValue) == 0x000010, "Member 'AbilityTask_Repeat_RepeatAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_Repeat \ +static_assert(alignof(UAbilityTask_Repeat) == 0x000008, "Wrong alignment on UAbilityTask_Repeat"); \ +static_assert(sizeof(UAbilityTask_Repeat) == 0x0000B8, "Wrong size on UAbilityTask_Repeat"); \ +static_assert(offsetof(UAbilityTask_Repeat, OnPerformAction) == 0x000080, "Member 'UAbilityTask_Repeat::OnPerformAction' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_Repeat, OnFinished) == 0x000090, "Member 'UAbilityTask_Repeat::OnFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_SpawnActor_SpawnActor \ +static_assert(alignof(AbilityTask_SpawnActor_SpawnActor) == 0x000008, "Wrong alignment on AbilityTask_SpawnActor_SpawnActor"); \ +static_assert(sizeof(AbilityTask_SpawnActor_SpawnActor) == 0x000040, "Wrong size on AbilityTask_SpawnActor_SpawnActor"); \ +static_assert(offsetof(AbilityTask_SpawnActor_SpawnActor, OwningAbility) == 0x000000, "Member 'AbilityTask_SpawnActor_SpawnActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_SpawnActor, TargetData) == 0x000008, "Member 'AbilityTask_SpawnActor_SpawnActor::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_SpawnActor, Class_0) == 0x000030, "Member 'AbilityTask_SpawnActor_SpawnActor::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_SpawnActor, ReturnValue) == 0x000038, "Member 'AbilityTask_SpawnActor_SpawnActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_SpawnActor_BeginSpawningActor \ +static_assert(alignof(AbilityTask_SpawnActor_BeginSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_SpawnActor_BeginSpawningActor"); \ +static_assert(sizeof(AbilityTask_SpawnActor_BeginSpawningActor) == 0x000048, "Wrong size on AbilityTask_SpawnActor_BeginSpawningActor"); \ +static_assert(offsetof(AbilityTask_SpawnActor_BeginSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_SpawnActor_BeginSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_BeginSpawningActor, TargetData) == 0x000008, "Member 'AbilityTask_SpawnActor_BeginSpawningActor::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_BeginSpawningActor, Class_0) == 0x000030, "Member 'AbilityTask_SpawnActor_BeginSpawningActor::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_BeginSpawningActor, SpawnedActor) == 0x000038, "Member 'AbilityTask_SpawnActor_BeginSpawningActor::SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_BeginSpawningActor, ReturnValue) == 0x000040, "Member 'AbilityTask_SpawnActor_BeginSpawningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_SpawnActor_FinishSpawningActor \ +static_assert(alignof(AbilityTask_SpawnActor_FinishSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_SpawnActor_FinishSpawningActor"); \ +static_assert(sizeof(AbilityTask_SpawnActor_FinishSpawningActor) == 0x000038, "Wrong size on AbilityTask_SpawnActor_FinishSpawningActor"); \ +static_assert(offsetof(AbilityTask_SpawnActor_FinishSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_SpawnActor_FinishSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_FinishSpawningActor, TargetData) == 0x000008, "Member 'AbilityTask_SpawnActor_FinishSpawningActor::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_SpawnActor_FinishSpawningActor, SpawnedActor) == 0x000030, "Member 'AbilityTask_SpawnActor_FinishSpawningActor::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_SpawnActor \ +static_assert(alignof(UAbilityTask_SpawnActor) == 0x000008, "Wrong alignment on UAbilityTask_SpawnActor"); \ +static_assert(sizeof(UAbilityTask_SpawnActor) == 0x0000C8, "Wrong size on UAbilityTask_SpawnActor"); \ +static_assert(offsetof(UAbilityTask_SpawnActor, Success) == 0x000080, "Member 'UAbilityTask_SpawnActor::Success' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_SpawnActor, DidNotSpawn) == 0x000090, "Member 'UAbilityTask_SpawnActor::DidNotSpawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_StartAbilityState_StartAbilityState \ +static_assert(alignof(AbilityTask_StartAbilityState_StartAbilityState) == 0x000008, "Wrong alignment on AbilityTask_StartAbilityState_StartAbilityState"); \ +static_assert(sizeof(AbilityTask_StartAbilityState_StartAbilityState) == 0x000020, "Wrong size on AbilityTask_StartAbilityState_StartAbilityState"); \ +static_assert(offsetof(AbilityTask_StartAbilityState_StartAbilityState, OwningAbility) == 0x000000, "Member 'AbilityTask_StartAbilityState_StartAbilityState::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_StartAbilityState_StartAbilityState, StateName) == 0x000008, "Member 'AbilityTask_StartAbilityState_StartAbilityState::StateName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_StartAbilityState_StartAbilityState, bEndCurrentState) == 0x000010, "Member 'AbilityTask_StartAbilityState_StartAbilityState::bEndCurrentState' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_StartAbilityState_StartAbilityState, ReturnValue) == 0x000018, "Member 'AbilityTask_StartAbilityState_StartAbilityState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_StartAbilityState \ +static_assert(alignof(UAbilityTask_StartAbilityState) == 0x000008, "Wrong alignment on UAbilityTask_StartAbilityState"); \ +static_assert(sizeof(UAbilityTask_StartAbilityState) == 0x0000B8, "Wrong size on UAbilityTask_StartAbilityState"); \ +static_assert(offsetof(UAbilityTask_StartAbilityState, OnStateEnded) == 0x000080, "Member 'UAbilityTask_StartAbilityState::OnStateEnded' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_StartAbilityState, OnStateInterrupted) == 0x000090, "Member 'UAbilityTask_StartAbilityState::OnStateInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_VisualizeTargeting_VisualizeTargeting \ +static_assert(alignof(AbilityTask_VisualizeTargeting_VisualizeTargeting) == 0x000008, "Wrong alignment on AbilityTask_VisualizeTargeting_VisualizeTargeting"); \ +static_assert(sizeof(AbilityTask_VisualizeTargeting_VisualizeTargeting) == 0x000028, "Wrong size on AbilityTask_VisualizeTargeting_VisualizeTargeting"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargeting, OwningAbility) == 0x000000, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargeting::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargeting, Class_0) == 0x000008, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargeting::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargeting, TaskInstanceName) == 0x000010, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargeting::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargeting, Duration) == 0x000018, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargeting::Duration' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargeting, ReturnValue) == 0x000020, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargeting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor \ +static_assert(alignof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor) == 0x000008, "Wrong alignment on AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor"); \ +static_assert(sizeof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor) == 0x000028, "Wrong size on AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor, OwningAbility) == 0x000000, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor, TargetActor) == 0x000008, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor, TaskInstanceName) == 0x000010, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor, Duration) == 0x000018, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor::Duration' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor, ReturnValue) == 0x000020, "Member 'AbilityTask_VisualizeTargeting_VisualizeTargetingUsingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_VisualizeTargeting_BeginSpawningActor \ +static_assert(alignof(AbilityTask_VisualizeTargeting_BeginSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_VisualizeTargeting_BeginSpawningActor"); \ +static_assert(sizeof(AbilityTask_VisualizeTargeting_BeginSpawningActor) == 0x000020, "Wrong size on AbilityTask_VisualizeTargeting_BeginSpawningActor"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_BeginSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_VisualizeTargeting_BeginSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_BeginSpawningActor, Class_0) == 0x000008, "Member 'AbilityTask_VisualizeTargeting_BeginSpawningActor::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_BeginSpawningActor, SpawnedActor) == 0x000010, "Member 'AbilityTask_VisualizeTargeting_BeginSpawningActor::SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_BeginSpawningActor, ReturnValue) == 0x000018, "Member 'AbilityTask_VisualizeTargeting_BeginSpawningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_VisualizeTargeting_FinishSpawningActor \ +static_assert(alignof(AbilityTask_VisualizeTargeting_FinishSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_VisualizeTargeting_FinishSpawningActor"); \ +static_assert(sizeof(AbilityTask_VisualizeTargeting_FinishSpawningActor) == 0x000010, "Wrong size on AbilityTask_VisualizeTargeting_FinishSpawningActor"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_FinishSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_VisualizeTargeting_FinishSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_VisualizeTargeting_FinishSpawningActor, SpawnedActor) == 0x000008, "Member 'AbilityTask_VisualizeTargeting_FinishSpawningActor::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_VisualizeTargeting \ +static_assert(alignof(UAbilityTask_VisualizeTargeting) == 0x000008, "Wrong alignment on UAbilityTask_VisualizeTargeting"); \ +static_assert(sizeof(UAbilityTask_VisualizeTargeting) == 0x0000A8, "Wrong size on UAbilityTask_VisualizeTargeting"); \ +static_assert(offsetof(UAbilityTask_VisualizeTargeting, TimeElapsed) == 0x000080, "Member 'UAbilityTask_VisualizeTargeting::TimeElapsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityActivate_WaitForAbilityActivate \ +static_assert(alignof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityActivate_WaitForAbilityActivate"); \ +static_assert(sizeof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate) == 0x000028, "Wrong size on AbilityTask_WaitAbilityActivate_WaitForAbilityActivate"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, WithTag) == 0x000008, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::WithTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, WithoutTag) == 0x000010, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::WithoutTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, IncludeTriggeredAbilities) == 0x000018, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::IncludeTriggeredAbilities' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, TriggerOnce) == 0x000019, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query \ +static_assert(alignof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query"); \ +static_assert(sizeof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query) == 0x000060, "Wrong size on AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query, Query) == 0x000008, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query::Query' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query, IncludeTriggeredAbilities) == 0x000050, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query::IncludeTriggeredAbilities' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query, TriggerOnce) == 0x000051, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query, ReturnValue) == 0x000058, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivate_Query::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements \ +static_assert(alignof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements"); \ +static_assert(sizeof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements) == 0x0000A0, "Wrong size on AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements, TagRequirements) == 0x000008, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements::TagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements, IncludeTriggeredAbilities) == 0x000090, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements::IncludeTriggeredAbilities' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements, TriggerOnce) == 0x000091, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements, ReturnValue) == 0x000098, "Member 'AbilityTask_WaitAbilityActivate_WaitForAbilityActivateWithTagRequirements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityActivate_OnAbilityActivate \ +static_assert(alignof(AbilityTask_WaitAbilityActivate_OnAbilityActivate) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityActivate_OnAbilityActivate"); \ +static_assert(sizeof(AbilityTask_WaitAbilityActivate_OnAbilityActivate) == 0x000008, "Wrong size on AbilityTask_WaitAbilityActivate_OnAbilityActivate"); \ +static_assert(offsetof(AbilityTask_WaitAbilityActivate_OnAbilityActivate, ActivatedAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityActivate_OnAbilityActivate::ActivatedAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitAbilityActivate \ +static_assert(alignof(UAbilityTask_WaitAbilityActivate) == 0x000008, "Wrong alignment on UAbilityTask_WaitAbilityActivate"); \ +static_assert(sizeof(UAbilityTask_WaitAbilityActivate) == 0x000180, "Wrong size on UAbilityTask_WaitAbilityActivate"); \ +static_assert(offsetof(UAbilityTask_WaitAbilityActivate, OnActivate) == 0x000080, "Member 'UAbilityTask_WaitAbilityActivate::OnActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityCommit_WaitForAbilityCommit \ +static_assert(alignof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityCommit_WaitForAbilityCommit"); \ +static_assert(sizeof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit) == 0x000028, "Wrong size on AbilityTask_WaitAbilityCommit_WaitForAbilityCommit"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit, WithTag) == 0x000008, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit::WithTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit, WithoutTage) == 0x000010, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit::WithoutTage' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit, TriggerOnce) == 0x000018, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query \ +static_assert(alignof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query"); \ +static_assert(sizeof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query) == 0x000060, "Wrong size on AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query, Query) == 0x000008, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query::Query' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query, TriggerOnce) == 0x000050, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query, ReturnValue) == 0x000058, "Member 'AbilityTask_WaitAbilityCommit_WaitForAbilityCommit_Query::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAbilityCommit_OnAbilityCommit \ +static_assert(alignof(AbilityTask_WaitAbilityCommit_OnAbilityCommit) == 0x000008, "Wrong alignment on AbilityTask_WaitAbilityCommit_OnAbilityCommit"); \ +static_assert(sizeof(AbilityTask_WaitAbilityCommit_OnAbilityCommit) == 0x000008, "Wrong size on AbilityTask_WaitAbilityCommit_OnAbilityCommit"); \ +static_assert(offsetof(AbilityTask_WaitAbilityCommit_OnAbilityCommit, ActivatedAbility) == 0x000000, "Member 'AbilityTask_WaitAbilityCommit_OnAbilityCommit::ActivatedAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitAbilityCommit \ +static_assert(alignof(UAbilityTask_WaitAbilityCommit) == 0x000008, "Wrong alignment on UAbilityTask_WaitAbilityCommit"); \ +static_assert(sizeof(UAbilityTask_WaitAbilityCommit) == 0x0000F8, "Wrong size on UAbilityTask_WaitAbilityCommit"); \ +static_assert(offsetof(UAbilityTask_WaitAbilityCommit, OnCommit) == 0x000080, "Member 'UAbilityTask_WaitAbilityCommit::OnCommit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAttributeChange_WaitForAttributeChange \ +static_assert(alignof(AbilityTask_WaitAttributeChange_WaitForAttributeChange) == 0x000008, "Wrong alignment on AbilityTask_WaitAttributeChange_WaitForAttributeChange"); \ +static_assert(sizeof(AbilityTask_WaitAttributeChange_WaitForAttributeChange) == 0x000068, "Wrong size on AbilityTask_WaitAttributeChange_WaitForAttributeChange"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, Attribute) == 0x000008, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, WithSrcTag) == 0x000040, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::WithSrcTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, WithoutSrcTag) == 0x000048, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::WithoutSrcTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, TriggerOnce) == 0x000050, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, OptionalExternalOwner) == 0x000058, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChange, ReturnValue) == 0x000060, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison \ +static_assert(alignof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison) == 0x000008, "Wrong alignment on AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison"); \ +static_assert(sizeof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison) == 0x000070, "Wrong size on AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, InAttribute) == 0x000008, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::InAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, InWithTag) == 0x000040, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::InWithTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, InWithoutTag) == 0x000048, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::InWithoutTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, InComparisonType) == 0x000050, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::InComparisonType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, InComparisonValue) == 0x000054, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::InComparisonValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, TriggerOnce) == 0x000058, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, OptionalExternalOwner) == 0x000060, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison, ReturnValue) == 0x000068, "Member 'AbilityTask_WaitAttributeChange_WaitForAttributeChangeWithComparison::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitAttributeChange \ +static_assert(alignof(UAbilityTask_WaitAttributeChange) == 0x000008, "Wrong alignment on UAbilityTask_WaitAttributeChange"); \ +static_assert(sizeof(UAbilityTask_WaitAttributeChange) == 0x0000F8, "Wrong size on UAbilityTask_WaitAttributeChange"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChange, OnChange) == 0x000080, "Member 'UAbilityTask_WaitAttributeChange::OnChange' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChange, ExternalOwner) == 0x0000F0, "Member 'UAbilityTask_WaitAttributeChange::ExternalOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold \ +static_assert(alignof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold) == 0x000008, "Wrong alignment on AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold"); \ +static_assert(sizeof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold) == 0x000098, "Wrong size on AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, AttributeNumerator) == 0x000008, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::AttributeNumerator' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, AttributeDenominator) == 0x000040, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::AttributeDenominator' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, ComparisonType) == 0x000078, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::ComparisonType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, ComparisonValue) == 0x00007C, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::ComparisonValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, bTriggerOnce) == 0x000080, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::bTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, OptionalExternalOwner) == 0x000088, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold, ReturnValue) == 0x000090, "Member 'AbilityTask_WaitAttributeChangeRatioThreshold_WaitForAttributeChangeRatioThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitAttributeChangeRatioThreshold \ +static_assert(alignof(UAbilityTask_WaitAttributeChangeRatioThreshold) == 0x000008, "Wrong alignment on UAbilityTask_WaitAttributeChangeRatioThreshold"); \ +static_assert(sizeof(UAbilityTask_WaitAttributeChangeRatioThreshold) == 0x000140, "Wrong size on UAbilityTask_WaitAttributeChangeRatioThreshold"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChangeRatioThreshold, OnChange) == 0x000080, "Member 'UAbilityTask_WaitAttributeChangeRatioThreshold::OnChange' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChangeRatioThreshold, ExternalOwner) == 0x000138, "Member 'UAbilityTask_WaitAttributeChangeRatioThreshold::ExternalOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold \ +static_assert(alignof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold) == 0x000008, "Wrong alignment on AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold"); \ +static_assert(sizeof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold) == 0x000060, "Wrong size on AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, Attribute) == 0x000008, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, ComparisonType) == 0x000040, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::ComparisonType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, ComparisonValue) == 0x000044, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::ComparisonValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, bTriggerOnce) == 0x000048, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::bTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, OptionalExternalOwner) == 0x000050, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold, ReturnValue) == 0x000058, "Member 'AbilityTask_WaitAttributeChangeThreshold_WaitForAttributeChangeThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitAttributeChangeThreshold \ +static_assert(alignof(UAbilityTask_WaitAttributeChangeThreshold) == 0x000008, "Wrong alignment on UAbilityTask_WaitAttributeChangeThreshold"); \ +static_assert(sizeof(UAbilityTask_WaitAttributeChangeThreshold) == 0x0000F0, "Wrong size on UAbilityTask_WaitAttributeChangeThreshold"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChangeThreshold, OnChange) == 0x000080, "Member 'UAbilityTask_WaitAttributeChangeThreshold::OnChange' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitAttributeChangeThreshold, ExternalOwner) == 0x0000E8, "Member 'UAbilityTask_WaitAttributeChangeThreshold::ExternalOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitCancel_WaitCancel \ +static_assert(alignof(AbilityTask_WaitCancel_WaitCancel) == 0x000008, "Wrong alignment on AbilityTask_WaitCancel_WaitCancel"); \ +static_assert(sizeof(AbilityTask_WaitCancel_WaitCancel) == 0x000010, "Wrong size on AbilityTask_WaitCancel_WaitCancel"); \ +static_assert(offsetof(AbilityTask_WaitCancel_WaitCancel, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitCancel_WaitCancel::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitCancel_WaitCancel, ReturnValue) == 0x000008, "Member 'AbilityTask_WaitCancel_WaitCancel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitCancel \ +static_assert(alignof(UAbilityTask_WaitCancel) == 0x000008, "Wrong alignment on UAbilityTask_WaitCancel"); \ +static_assert(sizeof(UAbilityTask_WaitCancel) == 0x000098, "Wrong size on UAbilityTask_WaitCancel"); \ +static_assert(offsetof(UAbilityTask_WaitCancel, OnCancel) == 0x000080, "Member 'UAbilityTask_WaitCancel::OnCancel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitConfirm_WaitConfirm \ +static_assert(alignof(AbilityTask_WaitConfirm_WaitConfirm) == 0x000008, "Wrong alignment on AbilityTask_WaitConfirm_WaitConfirm"); \ +static_assert(sizeof(AbilityTask_WaitConfirm_WaitConfirm) == 0x000010, "Wrong size on AbilityTask_WaitConfirm_WaitConfirm"); \ +static_assert(offsetof(AbilityTask_WaitConfirm_WaitConfirm, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitConfirm_WaitConfirm::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitConfirm_WaitConfirm, ReturnValue) == 0x000008, "Member 'AbilityTask_WaitConfirm_WaitConfirm::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitConfirm_OnConfirmCallback \ +static_assert(alignof(AbilityTask_WaitConfirm_OnConfirmCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitConfirm_OnConfirmCallback"); \ +static_assert(sizeof(AbilityTask_WaitConfirm_OnConfirmCallback) == 0x000008, "Wrong size on AbilityTask_WaitConfirm_OnConfirmCallback"); \ +static_assert(offsetof(AbilityTask_WaitConfirm_OnConfirmCallback, InAbility) == 0x000000, "Member 'AbilityTask_WaitConfirm_OnConfirmCallback::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitConfirm \ +static_assert(alignof(UAbilityTask_WaitConfirm) == 0x000008, "Wrong alignment on UAbilityTask_WaitConfirm"); \ +static_assert(sizeof(UAbilityTask_WaitConfirm) == 0x0000A0, "Wrong size on UAbilityTask_WaitConfirm"); \ +static_assert(offsetof(UAbilityTask_WaitConfirm, OnConfirm) == 0x000080, "Member 'UAbilityTask_WaitConfirm::OnConfirm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitConfirmCancel_WaitConfirmCancel \ +static_assert(alignof(AbilityTask_WaitConfirmCancel_WaitConfirmCancel) == 0x000008, "Wrong alignment on AbilityTask_WaitConfirmCancel_WaitConfirmCancel"); \ +static_assert(sizeof(AbilityTask_WaitConfirmCancel_WaitConfirmCancel) == 0x000010, "Wrong size on AbilityTask_WaitConfirmCancel_WaitConfirmCancel"); \ +static_assert(offsetof(AbilityTask_WaitConfirmCancel_WaitConfirmCancel, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitConfirmCancel_WaitConfirmCancel::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitConfirmCancel_WaitConfirmCancel, ReturnValue) == 0x000008, "Member 'AbilityTask_WaitConfirmCancel_WaitConfirmCancel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitConfirmCancel \ +static_assert(alignof(UAbilityTask_WaitConfirmCancel) == 0x000008, "Wrong alignment on UAbilityTask_WaitConfirmCancel"); \ +static_assert(sizeof(UAbilityTask_WaitConfirmCancel) == 0x0000A8, "Wrong size on UAbilityTask_WaitConfirmCancel"); \ +static_assert(offsetof(UAbilityTask_WaitConfirmCancel, OnConfirm) == 0x000080, "Member 'UAbilityTask_WaitConfirmCancel::OnConfirm' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitConfirmCancel, OnCancel) == 0x000090, "Member 'UAbilityTask_WaitConfirmCancel::OnCancel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitDelay_WaitDelay \ +static_assert(alignof(AbilityTask_WaitDelay_WaitDelay) == 0x000008, "Wrong alignment on AbilityTask_WaitDelay_WaitDelay"); \ +static_assert(sizeof(AbilityTask_WaitDelay_WaitDelay) == 0x000018, "Wrong size on AbilityTask_WaitDelay_WaitDelay"); \ +static_assert(offsetof(AbilityTask_WaitDelay_WaitDelay, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitDelay_WaitDelay::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitDelay_WaitDelay, Time) == 0x000008, "Member 'AbilityTask_WaitDelay_WaitDelay::Time' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitDelay_WaitDelay, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitDelay_WaitDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitDelay \ +static_assert(alignof(UAbilityTask_WaitDelay) == 0x000008, "Wrong alignment on UAbilityTask_WaitDelay"); \ +static_assert(sizeof(UAbilityTask_WaitDelay) == 0x000098, "Wrong size on UAbilityTask_WaitDelay"); \ +static_assert(offsetof(UAbilityTask_WaitDelay, OnFinish) == 0x000080, "Member 'UAbilityTask_WaitDelay::OnFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback \ +static_assert(alignof(AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback) == 0x0002A8, "Wrong size on AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback, Target) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback::Target' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback, SpecApplied) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback::SpecApplied' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback, ActiveHandle) == 0x0002A0, "Member 'AbilityTask_WaitGameplayEffectApplied_OnApplyGameplayEffectCallback::ActiveHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectApplied \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectApplied) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectApplied"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectApplied) == 0x000248, "Wrong size on UAbilityTask_WaitGameplayEffectApplied"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectApplied, ExternalOwner) == 0x000238, "Member 'UAbilityTask_WaitGameplayEffectApplied::ExternalOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf \ +static_assert(alignof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf) == 0x000148, "Wrong size on AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, SourceFilter) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::SourceFilter' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, SourceTagRequirements) == 0x000018, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::SourceTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, TargetTagRequirements) == 0x0000A0, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::TargetTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, TriggerOnce) == 0x000128, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, OptionalExternalOwner) == 0x000130, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, ListenForPeriodicEffect) == 0x000138, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::ListenForPeriodicEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf, ReturnValue) == 0x000140, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query \ +static_assert(alignof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query) == 0x0000C8, "Wrong size on AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, SourceFilter) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::SourceFilter' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, SourceTagQuery) == 0x000018, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::SourceTagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, TargetTagQuery) == 0x000060, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::TargetTagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, TriggerOnce) == 0x0000A8, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, OptionalExternalOwner) == 0x0000B0, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, ListenForPeriodicEffect) == 0x0000B8, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::ListenForPeriodicEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query, ReturnValue) == 0x0000C0, "Member 'AbilityTask_WaitGameplayEffectApplied_Self_WaitGameplayEffectAppliedToSelf_Query::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectApplied_Self \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectApplied_Self) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectApplied_Self"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectApplied_Self) == 0x000268, "Wrong size on UAbilityTask_WaitGameplayEffectApplied_Self"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectApplied_Self, OnApplied) == 0x000248, "Member 'UAbilityTask_WaitGameplayEffectApplied_Self::OnApplied' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget \ +static_assert(alignof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget) == 0x000148, "Wrong size on AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, TargetFilter) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::TargetFilter' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, SourceTagRequirements) == 0x000018, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::SourceTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, TargetTagRequirements) == 0x0000A0, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::TargetTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, TriggerOnce) == 0x000128, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, OptionalExternalOwner) == 0x000130, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, ListenForPeriodicEffects) == 0x000138, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::ListenForPeriodicEffects' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget, ReturnValue) == 0x000140, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query \ +static_assert(alignof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query) == 0x0000C8, "Wrong size on AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, SourceFilter) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::SourceFilter' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, SourceTagQuery) == 0x000018, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::SourceTagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, TargetTagQuery) == 0x000060, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::TargetTagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, TriggerOnce) == 0x0000A8, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::TriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, OptionalExternalOwner) == 0x0000B0, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::OptionalExternalOwner' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, ListenForPeriodicEffect) == 0x0000B8, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::ListenForPeriodicEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query, ReturnValue) == 0x0000C0, "Member 'AbilityTask_WaitGameplayEffectApplied_Target_WaitGameplayEffectAppliedToTarget_Query::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectApplied_Target \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectApplied_Target) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectApplied_Target"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectApplied_Target) == 0x000268, "Wrong size on UAbilityTask_WaitGameplayEffectApplied_Target"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectApplied_Target, OnApplied) == 0x000248, "Member 'UAbilityTask_WaitGameplayEffectApplied_Target::OnApplied' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity \ +static_assert(alignof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity) == 0x000130, "Wrong size on AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, SourceTagRequirements) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::SourceTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, TargetTagRequirements) == 0x000090, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::TargetTagRequirements' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, OptionalExternalTarget) == 0x000118, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::OptionalExternalTarget' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, OnlyTriggerOnce) == 0x000120, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity, ReturnValue) == 0x000128, "Member 'AbilityTask_WaitGameplayEffectBlockedImmunity_WaitGameplayEffectBlockedByImmunity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectBlockedImmunity \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectBlockedImmunity) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectBlockedImmunity"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectBlockedImmunity) == 0x0001B8, "Wrong size on UAbilityTask_WaitGameplayEffectBlockedImmunity"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectBlockedImmunity, bLocked) == 0x000080, "Member 'UAbilityTask_WaitGameplayEffectBlockedImmunity::bLocked' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectBlockedImmunity, ExternalOwner) == 0x0001A8, "Member 'UAbilityTask_WaitGameplayEffectBlockedImmunity::ExternalOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved \ +static_assert(alignof(AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved) == 0x000018, "Wrong size on AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved, Handle) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved::Handle' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitGameplayEffectRemoved_WaitForGameplayEffectRemoved::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved \ +static_assert(alignof(AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved) == 0x000028, "Wrong size on AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved, InGameplayEffectRemovalInfo) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectRemoved_OnGameplayEffectRemoved::InGameplayEffectRemovalInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectRemoved \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectRemoved) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectRemoved"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectRemoved) == 0x0000C0, "Wrong size on UAbilityTask_WaitGameplayEffectRemoved"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectRemoved, OnRemoved) == 0x000080, "Member 'UAbilityTask_WaitGameplayEffectRemoved::OnRemoved' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectRemoved, InvalidHandle) == 0x000090, "Member 'UAbilityTask_WaitGameplayEffectRemoved::InvalidHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange \ +static_assert(alignof(AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange) == 0x000018, "Wrong size on AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange, Handle) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange::Handle' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitGameplayEffectStackChange_WaitForGameplayEffectStackChange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange \ +static_assert(alignof(AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange) == 0x000004, "Wrong alignment on AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange) == 0x000010, "Wrong size on AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange, Handle) == 0x000000, "Member 'AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange::Handle' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange, NewCount) == 0x000008, "Member 'AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange::NewCount' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange, OldCount) == 0x00000C, "Member 'AbilityTask_WaitGameplayEffectStackChange_OnGameplayEffectStackChange::OldCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEffectStackChange \ +static_assert(alignof(UAbilityTask_WaitGameplayEffectStackChange) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEffectStackChange"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEffectStackChange) == 0x0000B8, "Wrong size on UAbilityTask_WaitGameplayEffectStackChange"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectStackChange, OnChange) == 0x000080, "Member 'UAbilityTask_WaitGameplayEffectStackChange::OnChange' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEffectStackChange, InvalidHandle) == 0x000090, "Member 'UAbilityTask_WaitGameplayEffectStackChange::InvalidHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayEvent_WaitGameplayEvent \ +static_assert(alignof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayEvent_WaitGameplayEvent"); \ +static_assert(sizeof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent) == 0x000028, "Wrong size on AbilityTask_WaitGameplayEvent_WaitGameplayEvent"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, EventTag) == 0x000008, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::EventTag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, OptionalExternalTarget_0) == 0x000010, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::OptionalExternalTarget_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, OnlyTriggerOnce) == 0x000018, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, OnlyMatchExact) == 0x000019, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::OnlyMatchExact' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayEvent_WaitGameplayEvent, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitGameplayEvent_WaitGameplayEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayEvent \ +static_assert(alignof(UAbilityTask_WaitGameplayEvent) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayEvent"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayEvent) == 0x0000B0, "Wrong size on UAbilityTask_WaitGameplayEvent"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEvent, EventReceived) == 0x000080, "Member 'UAbilityTask_WaitGameplayEvent::EventReceived' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayEvent, OptionalExternalTarget) == 0x000098, "Member 'UAbilityTask_WaitGameplayEvent::OptionalExternalTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayTag_GameplayTagCallback \ +static_assert(alignof(AbilityTask_WaitGameplayTag_GameplayTagCallback) == 0x000004, "Wrong alignment on AbilityTask_WaitGameplayTag_GameplayTagCallback"); \ +static_assert(sizeof(AbilityTask_WaitGameplayTag_GameplayTagCallback) == 0x00000C, "Wrong size on AbilityTask_WaitGameplayTag_GameplayTagCallback"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTag_GameplayTagCallback, Tag) == 0x000000, "Member 'AbilityTask_WaitGameplayTag_GameplayTagCallback::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTag_GameplayTagCallback, NewCount) == 0x000008, "Member 'AbilityTask_WaitGameplayTag_GameplayTagCallback::NewCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayTag \ +static_assert(alignof(UAbilityTask_WaitGameplayTag) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayTag"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayTag) == 0x0000A8, "Wrong size on UAbilityTask_WaitGameplayTag"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayTag, OptionalExternalTarget) == 0x000090, "Member 'UAbilityTask_WaitGameplayTag::OptionalExternalTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd \ +static_assert(alignof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd"); \ +static_assert(sizeof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd) == 0x000028, "Wrong size on AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd, Tag) == 0x000008, "Member 'AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd, InOptionalExternalTarget) == 0x000010, "Member 'AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd::InOptionalExternalTarget' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd, OnlyTriggerOnce) == 0x000018, "Member 'AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitGameplayTagAdded_WaitGameplayTagAdd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayTagAdded \ +static_assert(alignof(UAbilityTask_WaitGameplayTagAdded) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayTagAdded"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayTagAdded) == 0x0000B8, "Wrong size on UAbilityTask_WaitGameplayTagAdded"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayTagAdded, Added) == 0x0000A8, "Member 'UAbilityTask_WaitGameplayTagAdded::Added' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove \ +static_assert(alignof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove"); \ +static_assert(sizeof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove) == 0x000028, "Wrong size on AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove, Tag) == 0x000008, "Member 'AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove, InOptionalExternalTarget) == 0x000010, "Member 'AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove::InOptionalExternalTarget' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove, OnlyTriggerOnce) == 0x000018, "Member 'AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove::OnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitGameplayTagRemoved_WaitGameplayTagRemove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayTagRemoved \ +static_assert(alignof(UAbilityTask_WaitGameplayTagRemoved) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayTagRemoved"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayTagRemoved) == 0x0000B8, "Wrong size on UAbilityTask_WaitGameplayTagRemoved"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayTagRemoved, Removed) == 0x0000A8, "Member 'UAbilityTask_WaitGameplayTagRemoved::Removed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery \ +static_assert(alignof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery) == 0x000008, "Wrong alignment on AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery"); \ +static_assert(sizeof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery) == 0x000068, "Wrong size on AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, TagQuery) == 0x000008, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, InOptionalExternalTarget) == 0x000050, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::InOptionalExternalTarget' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, TriggerCondition) == 0x000058, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::TriggerCondition' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, bOnlyTriggerOnce) == 0x000059, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::bOnlyTriggerOnce' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery, ReturnValue) == 0x000060, "Member 'AbilityTask_WaitGameplayTagQuery_WaitGameplayTagQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitGameplayTagQuery_UpdateTargetTags \ +static_assert(alignof(AbilityTask_WaitGameplayTagQuery_UpdateTargetTags) == 0x000004, "Wrong alignment on AbilityTask_WaitGameplayTagQuery_UpdateTargetTags"); \ +static_assert(sizeof(AbilityTask_WaitGameplayTagQuery_UpdateTargetTags) == 0x00000C, "Wrong size on AbilityTask_WaitGameplayTagQuery_UpdateTargetTags"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_UpdateTargetTags, Tag) == 0x000000, "Member 'AbilityTask_WaitGameplayTagQuery_UpdateTargetTags::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitGameplayTagQuery_UpdateTargetTags, NewCount) == 0x000008, "Member 'AbilityTask_WaitGameplayTagQuery_UpdateTargetTags::NewCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitGameplayTagQuery \ +static_assert(alignof(UAbilityTask_WaitGameplayTagQuery) == 0x000008, "Wrong alignment on UAbilityTask_WaitGameplayTagQuery"); \ +static_assert(sizeof(UAbilityTask_WaitGameplayTagQuery) == 0x000160, "Wrong size on UAbilityTask_WaitGameplayTagQuery"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayTagQuery, Triggered) == 0x000140, "Member 'UAbilityTask_WaitGameplayTagQuery::Triggered' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitGameplayTagQuery, OptionalExternalTarget) == 0x000150, "Member 'UAbilityTask_WaitGameplayTagQuery::OptionalExternalTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitInputPress_WaitInputPress \ +static_assert(alignof(AbilityTask_WaitInputPress_WaitInputPress) == 0x000008, "Wrong alignment on AbilityTask_WaitInputPress_WaitInputPress"); \ +static_assert(sizeof(AbilityTask_WaitInputPress_WaitInputPress) == 0x000018, "Wrong size on AbilityTask_WaitInputPress_WaitInputPress"); \ +static_assert(offsetof(AbilityTask_WaitInputPress_WaitInputPress, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitInputPress_WaitInputPress::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitInputPress_WaitInputPress, bTestAlreadyPressed) == 0x000008, "Member 'AbilityTask_WaitInputPress_WaitInputPress::bTestAlreadyPressed' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitInputPress_WaitInputPress, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitInputPress_WaitInputPress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitInputPress \ +static_assert(alignof(UAbilityTask_WaitInputPress) == 0x000008, "Wrong alignment on UAbilityTask_WaitInputPress"); \ +static_assert(sizeof(UAbilityTask_WaitInputPress) == 0x0000A0, "Wrong size on UAbilityTask_WaitInputPress"); \ +static_assert(offsetof(UAbilityTask_WaitInputPress, OnPress) == 0x000080, "Member 'UAbilityTask_WaitInputPress::OnPress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitInputRelease_WaitInputRelease \ +static_assert(alignof(AbilityTask_WaitInputRelease_WaitInputRelease) == 0x000008, "Wrong alignment on AbilityTask_WaitInputRelease_WaitInputRelease"); \ +static_assert(sizeof(AbilityTask_WaitInputRelease_WaitInputRelease) == 0x000018, "Wrong size on AbilityTask_WaitInputRelease_WaitInputRelease"); \ +static_assert(offsetof(AbilityTask_WaitInputRelease_WaitInputRelease, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitInputRelease_WaitInputRelease::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitInputRelease_WaitInputRelease, bTestAlreadyReleased) == 0x000008, "Member 'AbilityTask_WaitInputRelease_WaitInputRelease::bTestAlreadyReleased' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitInputRelease_WaitInputRelease, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitInputRelease_WaitInputRelease::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitInputRelease \ +static_assert(alignof(UAbilityTask_WaitInputRelease) == 0x000008, "Wrong alignment on UAbilityTask_WaitInputRelease"); \ +static_assert(sizeof(UAbilityTask_WaitInputRelease) == 0x0000A0, "Wrong size on UAbilityTask_WaitInputRelease"); \ +static_assert(offsetof(UAbilityTask_WaitInputRelease, OnRelease) == 0x000080, "Member 'UAbilityTask_WaitInputRelease::OnRelease' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange \ +static_assert(alignof(AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange) == 0x000008, "Wrong alignment on AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange"); \ +static_assert(sizeof(AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange) == 0x000018, "Wrong size on AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange, NewMode) == 0x000008, "Member 'AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange::NewMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange, ReturnValue) == 0x000010, "Member 'AbilityTask_WaitMovementModeChange_CreateWaitMovementModeChange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitMovementModeChange_OnMovementModeChange \ +static_assert(alignof(AbilityTask_WaitMovementModeChange_OnMovementModeChange) == 0x000008, "Wrong alignment on AbilityTask_WaitMovementModeChange_OnMovementModeChange"); \ +static_assert(sizeof(AbilityTask_WaitMovementModeChange_OnMovementModeChange) == 0x000010, "Wrong size on AbilityTask_WaitMovementModeChange_OnMovementModeChange"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_OnMovementModeChange, Character) == 0x000000, "Member 'AbilityTask_WaitMovementModeChange_OnMovementModeChange::Character' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_OnMovementModeChange, PrevMovementMode) == 0x000008, "Member 'AbilityTask_WaitMovementModeChange_OnMovementModeChange::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitMovementModeChange_OnMovementModeChange, PreviousCustomMode) == 0x000009, "Member 'AbilityTask_WaitMovementModeChange_OnMovementModeChange::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitMovementModeChange \ +static_assert(alignof(UAbilityTask_WaitMovementModeChange) == 0x000008, "Wrong alignment on UAbilityTask_WaitMovementModeChange"); \ +static_assert(sizeof(UAbilityTask_WaitMovementModeChange) == 0x0000A0, "Wrong size on UAbilityTask_WaitMovementModeChange"); \ +static_assert(offsetof(UAbilityTask_WaitMovementModeChange, OnChange) == 0x000080, "Member 'UAbilityTask_WaitMovementModeChange::OnChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitOverlap_WaitForOverlap \ +static_assert(alignof(AbilityTask_WaitOverlap_WaitForOverlap) == 0x000008, "Wrong alignment on AbilityTask_WaitOverlap_WaitForOverlap"); \ +static_assert(sizeof(AbilityTask_WaitOverlap_WaitForOverlap) == 0x000010, "Wrong size on AbilityTask_WaitOverlap_WaitForOverlap"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_WaitForOverlap, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitOverlap_WaitForOverlap::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_WaitForOverlap, ReturnValue) == 0x000008, "Member 'AbilityTask_WaitOverlap_WaitForOverlap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitOverlap_OnHitCallback \ +static_assert(alignof(AbilityTask_WaitOverlap_OnHitCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitOverlap_OnHitCallback"); \ +static_assert(sizeof(AbilityTask_WaitOverlap_OnHitCallback) == 0x000118, "Wrong size on AbilityTask_WaitOverlap_OnHitCallback"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_OnHitCallback, HitComp) == 0x000000, "Member 'AbilityTask_WaitOverlap_OnHitCallback::HitComp' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_OnHitCallback, OtherActor) == 0x000008, "Member 'AbilityTask_WaitOverlap_OnHitCallback::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_OnHitCallback, OtherComp) == 0x000010, "Member 'AbilityTask_WaitOverlap_OnHitCallback::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_OnHitCallback, NormalImpulse) == 0x000018, "Member 'AbilityTask_WaitOverlap_OnHitCallback::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitOverlap_OnHitCallback, Hit) == 0x000030, "Member 'AbilityTask_WaitOverlap_OnHitCallback::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitOverlap \ +static_assert(alignof(UAbilityTask_WaitOverlap) == 0x000008, "Wrong alignment on UAbilityTask_WaitOverlap"); \ +static_assert(sizeof(UAbilityTask_WaitOverlap) == 0x000090, "Wrong size on UAbilityTask_WaitOverlap"); \ +static_assert(offsetof(UAbilityTask_WaitOverlap, OnOverlap) == 0x000080, "Member 'UAbilityTask_WaitOverlap::OnOverlap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_WaitTargetData \ +static_assert(alignof(AbilityTask_WaitTargetData_WaitTargetData) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_WaitTargetData"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_WaitTargetData) == 0x000028, "Wrong size on AbilityTask_WaitTargetData_WaitTargetData"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetData, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitTargetData_WaitTargetData::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetData, TaskInstanceName) == 0x000008, "Member 'AbilityTask_WaitTargetData_WaitTargetData::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetData, ConfirmationType) == 0x000010, "Member 'AbilityTask_WaitTargetData_WaitTargetData::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetData, Class_0) == 0x000018, "Member 'AbilityTask_WaitTargetData_WaitTargetData::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetData, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitTargetData_WaitTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_WaitTargetDataUsingActor \ +static_assert(alignof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_WaitTargetDataUsingActor"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor) == 0x000028, "Wrong size on AbilityTask_WaitTargetData_WaitTargetDataUsingActor"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitTargetData_WaitTargetDataUsingActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor, TaskInstanceName) == 0x000008, "Member 'AbilityTask_WaitTargetData_WaitTargetDataUsingActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor, ConfirmationType) == 0x000010, "Member 'AbilityTask_WaitTargetData_WaitTargetDataUsingActor::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor, TargetActor_0) == 0x000018, "Member 'AbilityTask_WaitTargetData_WaitTargetDataUsingActor::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_WaitTargetDataUsingActor, ReturnValue) == 0x000020, "Member 'AbilityTask_WaitTargetData_WaitTargetDataUsingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_BeginSpawningActor \ +static_assert(alignof(AbilityTask_WaitTargetData_BeginSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_BeginSpawningActor"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_BeginSpawningActor) == 0x000020, "Wrong size on AbilityTask_WaitTargetData_BeginSpawningActor"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_BeginSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitTargetData_BeginSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_BeginSpawningActor, Class_0) == 0x000008, "Member 'AbilityTask_WaitTargetData_BeginSpawningActor::Class_0' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_BeginSpawningActor, SpawnedActor) == 0x000010, "Member 'AbilityTask_WaitTargetData_BeginSpawningActor::SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_BeginSpawningActor, ReturnValue) == 0x000018, "Member 'AbilityTask_WaitTargetData_BeginSpawningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_FinishSpawningActor \ +static_assert(alignof(AbilityTask_WaitTargetData_FinishSpawningActor) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_FinishSpawningActor"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_FinishSpawningActor) == 0x000010, "Wrong size on AbilityTask_WaitTargetData_FinishSpawningActor"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_FinishSpawningActor, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitTargetData_FinishSpawningActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_FinishSpawningActor, SpawnedActor) == 0x000008, "Member 'AbilityTask_WaitTargetData_FinishSpawningActor::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_OnTargetDataCancelledCallback \ +static_assert(alignof(AbilityTask_WaitTargetData_OnTargetDataCancelledCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_OnTargetDataCancelledCallback"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_OnTargetDataCancelledCallback) == 0x000028, "Wrong size on AbilityTask_WaitTargetData_OnTargetDataCancelledCallback"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_OnTargetDataCancelledCallback, Data) == 0x000000, "Member 'AbilityTask_WaitTargetData_OnTargetDataCancelledCallback::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_OnTargetDataReadyCallback \ +static_assert(alignof(AbilityTask_WaitTargetData_OnTargetDataReadyCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_OnTargetDataReadyCallback"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_OnTargetDataReadyCallback) == 0x000028, "Wrong size on AbilityTask_WaitTargetData_OnTargetDataReadyCallback"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_OnTargetDataReadyCallback, Data) == 0x000000, "Member 'AbilityTask_WaitTargetData_OnTargetDataReadyCallback::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback \ +static_assert(alignof(AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback) == 0x000008, "Wrong alignment on AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback"); \ +static_assert(sizeof(AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback) == 0x000030, "Wrong size on AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback, Data) == 0x000000, "Member 'AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback::Data' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback, ActivationTag) == 0x000028, "Member 'AbilityTask_WaitTargetData_OnTargetDataReplicatedCallback::ActivationTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitTargetData \ +static_assert(alignof(UAbilityTask_WaitTargetData) == 0x000008, "Wrong alignment on UAbilityTask_WaitTargetData"); \ +static_assert(sizeof(UAbilityTask_WaitTargetData) == 0x0000C0, "Wrong size on UAbilityTask_WaitTargetData"); \ +static_assert(offsetof(UAbilityTask_WaitTargetData, ValidData) == 0x000080, "Member 'UAbilityTask_WaitTargetData::ValidData' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitTargetData, Cancelled) == 0x000090, "Member 'UAbilityTask_WaitTargetData::Cancelled' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitTargetData, TargetClass) == 0x0000A0, "Member 'UAbilityTask_WaitTargetData::TargetClass' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitTargetData, TargetActor) == 0x0000A8, "Member 'UAbilityTask_WaitTargetData::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityTask_WaitVelocityChange_CreateWaitVelocityChange \ +static_assert(alignof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange) == 0x000008, "Wrong alignment on AbilityTask_WaitVelocityChange_CreateWaitVelocityChange"); \ +static_assert(sizeof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange) == 0x000030, "Wrong size on AbilityTask_WaitVelocityChange_CreateWaitVelocityChange"); \ +static_assert(offsetof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange, OwningAbility) == 0x000000, "Member 'AbilityTask_WaitVelocityChange_CreateWaitVelocityChange::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange, Direction) == 0x000008, "Member 'AbilityTask_WaitVelocityChange_CreateWaitVelocityChange::Direction' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange, MinimumMagnitude) == 0x000020, "Member 'AbilityTask_WaitVelocityChange_CreateWaitVelocityChange::MinimumMagnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilityTask_WaitVelocityChange_CreateWaitVelocityChange, ReturnValue) == 0x000028, "Member 'AbilityTask_WaitVelocityChange_CreateWaitVelocityChange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityTask_WaitVelocityChange \ +static_assert(alignof(UAbilityTask_WaitVelocityChange) == 0x000008, "Wrong alignment on UAbilityTask_WaitVelocityChange"); \ +static_assert(sizeof(UAbilityTask_WaitVelocityChange) == 0x0000B8, "Wrong size on UAbilityTask_WaitVelocityChange"); \ +static_assert(offsetof(UAbilityTask_WaitVelocityChange, OnVelocityChage) == 0x000080, "Member 'UAbilityTask_WaitVelocityChange::OnVelocityChage' has a wrong offset!"); \ +static_assert(offsetof(UAbilityTask_WaitVelocityChange, CachedMovementComponent) == 0x000090, "Member 'UAbilityTask_WaitVelocityChange::CachedMovementComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray, ActorArray) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray::ActorArray' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray, OneTargetPerHandle) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray::OneTargetPerHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromActorArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult) == 0x000110, "Wrong size on AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult, HitResult) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult::HitResult' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult, ReturnValue) == 0x0000E8, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations) == 0x000010, "Wrong alignment on AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations) == 0x000170, "Wrong size on AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations, SourceLocation) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations::SourceLocation' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations, TargetLocation) == 0x0000A0, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations, ReturnValue) == 0x000140, "Member 'AbilitySystemBlueprintLibrary_AbilityTargetDataFromLocations::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddAssetTag \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddAssetTag) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddAssetTag"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddAssetTag) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_AddAssetTag"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTag, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddAssetTag::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTag, NewGameplayTag) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddAssetTag::NewGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTag, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AddAssetTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddAssetTags \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddAssetTags) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddAssetTags"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddAssetTags) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_AddAssetTags"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTags, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddAssetTags::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTags, NewGameplayTags) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddAssetTags::NewGameplayTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddAssetTags, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_AddAssetTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddGrantedTag \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddGrantedTag) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddGrantedTag"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddGrantedTag) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_AddGrantedTag"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTag, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTag::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTag, NewGameplayTag) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTag::NewGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTag, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddGrantedTags \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddGrantedTags) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddGrantedTags"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddGrantedTags) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_AddGrantedTags"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTags, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTags::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTags, NewGameplayTags) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTags::NewGameplayTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddGrantedTags, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_AddGrantedTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect, LinkedGameplayEffect) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect::LinkedGameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec, LinkedGameplayEffectSpec) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec::LinkedGameplayEffectSpec' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec, ReturnValue) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_AddLinkedGameplayEffectSpec::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AddLooseGameplayTags \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AddLooseGameplayTags"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_AddLooseGameplayTags"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AddLooseGameplayTags::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags, GameplayTags) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_AddLooseGameplayTags::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags, bShouldReplicate) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_AddLooseGameplayTags::bShouldReplicate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AddLooseGameplayTags, ReturnValue) == 0x000029, "Member 'AbilitySystemBlueprintLibrary_AddLooseGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AppendTargetDataHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AppendTargetDataHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AppendTargetDataHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AppendTargetDataHandle) == 0x000078, "Wrong size on AbilitySystemBlueprintLibrary_AppendTargetDataHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AppendTargetDataHandle, TargetHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AppendTargetDataHandle::TargetHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AppendTargetDataHandle, HandleToAdd) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_AppendTargetDataHandle::HandleToAdd' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AppendTargetDataHandle, ReturnValue) == 0x000050, "Member 'AbilitySystemBlueprintLibrary_AppendTargetDataHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude, DataName) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude::DataName' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude, Magnitude) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude, ReturnValue) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_AssignSetByCallerMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude \ +static_assert(alignof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude, DataTag) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude::DataTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude, Magnitude) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude, ReturnValue) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_AssignTagSetByCallerMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_BreakGameplayCueParameters \ +static_assert(alignof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_BreakGameplayCueParameters"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters) == 0x0001B0, "Wrong size on AbilitySystemBlueprintLibrary_BreakGameplayCueParameters"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, NormalizedMagnitude) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, RawMagnitude) == 0x0000DC, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, EffectContext) == 0x0000E0, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, MatchedTagName) == 0x0000F8, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, OriginalTag) == 0x000100, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, AggregatedSourceTags) == 0x000108, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, AggregatedTargetTags) == 0x000128, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, Location) == 0x000148, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::Location' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, Normal) == 0x000160, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::Normal' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, Instigator) == 0x000178, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::Instigator' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, EffectCauser) == 0x000180, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, SourceObject) == 0x000188, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, PhysicalMaterial) == 0x000190, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, GameplayEffectLevel) == 0x000198, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, AbilityLevel) == 0x00019C, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, TargetAttachComponent) == 0x0001A0, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_BreakGameplayCueParameters, bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001A8, "Member 'AbilitySystemBlueprintLibrary_BreakGameplayCueParameters::bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_CloneSpecHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_CloneSpecHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_CloneSpecHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_CloneSpecHandle) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_CloneSpecHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_CloneSpecHandle, InNewInstigator) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_CloneSpecHandle::InNewInstigator' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_CloneSpecHandle, InEffectCauser) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_CloneSpecHandle::InEffectCauser' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_CloneSpecHandle, GameplayEffectSpecHandle_Clone) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_CloneSpecHandle::GameplayEffectSpecHandle_Clone' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_CloneSpecHandle, ReturnValue) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_CloneSpecHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements \ +static_assert(alignof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements) == 0x0001F0, "Wrong size on AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements, SourceTagReqs) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements::SourceTagReqs' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements, TargetTagReqs) == 0x000160, "Member 'AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements::TargetTagReqs' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements, ReturnValue) == 0x0001E8, "Member 'AbilitySystemBlueprintLibrary_DoesGameplayCueMeetTagRequirements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_DoesTargetDataContainActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_DoesTargetDataContainActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_DoesTargetDataContainActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_DoesTargetDataContainActor::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_DoesTargetDataContainActor::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor, Actor) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_DoesTargetDataContainActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_DoesTargetDataContainActor, ReturnValue) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_DoesTargetDataContainActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextAddHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextAddHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextAddHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextAddHitResult) == 0x000108, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextAddHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextAddHitResult, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextAddHitResult::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextAddHitResult, HitResult) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextAddHitResult::HitResult' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextAddHitResult, bReset) == 0x000100, "Member 'AbilitySystemBlueprintLibrary_EffectContextAddHitResult::bReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetEffectCauser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetHitResult) == 0x000100, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetHitResult, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetHitResult::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetHitResult, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetInstigatorActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetOrigin \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetOrigin) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetOrigin"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetOrigin) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetOrigin"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetOrigin, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetOrigin::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetOrigin, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetOriginalInstigatorActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextGetSourceObject \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextGetSourceObject) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextGetSourceObject"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextGetSourceObject) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextGetSourceObject"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetSourceObject, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetSourceObject::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextGetSourceObject, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextGetSourceObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextHasHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextHasHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextHasHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextHasHitResult) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextHasHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextHasHitResult, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextHasHitResult::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextHasHitResult, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextHasHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextIsInstigatorLocallyControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextIsValid \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextIsValid) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextIsValid"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextIsValid) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextIsValid"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextIsValid, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextIsValid::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextIsValid, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextIsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EffectContextSetOrigin \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EffectContextSetOrigin) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EffectContextSetOrigin"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EffectContextSetOrigin) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_EffectContextSetOrigin"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextSetOrigin, EffectContext) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EffectContextSetOrigin::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EffectContextSetOrigin, Origin) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_EffectContextSetOrigin::Origin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle) == 0x000014, "Wrong size on AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle, A) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle::A' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle, B) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle::B' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_ActiveGameplayEffectHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle, A) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle::A' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle, B) == 0x000004, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle::B' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAbilitySpecHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute) == 0x000078, "Wrong size on AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute, AttributeA) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute::AttributeA' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute, AttributeB) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute::AttributeB' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute, ReturnValue) == 0x000070, "Member 'AbilitySystemBlueprintLibrary_EqualEqual_GameplayAttributeGameplayAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags) == 0x000088, "Wrong size on AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, AbilitySystem) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::AbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, SourceTags) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::SourceTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, TargetTags) == 0x000060, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::TargetTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, bSuccess) == 0x000080, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags, ReturnValue) == 0x000084, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase \ +static_assert(alignof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase) == 0x000090, "Wrong size on AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, AbilitySystem) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::AbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, SourceTags) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::SourceTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, TargetTags) == 0x000060, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::TargetTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, BaseValue) == 0x000080, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::BaseValue' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, bSuccess) == 0x000084, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase, ReturnValue) == 0x000088, "Member 'AbilitySystemBlueprintLibrary_EvaluateAttributeValueWithTagsAndBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_FilterTargetData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_FilterTargetData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_FilterTargetData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_FilterTargetData) == 0x000060, "Wrong size on AbilitySystemBlueprintLibrary_FilterTargetData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_FilterTargetData, TargetDataHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_FilterTargetData::TargetDataHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_FilterTargetData, ActorFilterClass) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_FilterTargetData::ActorFilterClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_FilterTargetData, ReturnValue) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_FilterTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget \ +static_assert(alignof(AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget) == 0x0000F0, "Wrong size on AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget, TargetCueInterface) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget::TargetCueInterface' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget, EventType) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget::EventType' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget, Parameters) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_ForwardGameplayCueToTarget::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetAbilitySystemComponent \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetAbilitySystemComponent) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetAbilitySystemComponent"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetAbilitySystemComponent) == 0x000010, "Wrong size on AbilitySystemBlueprintLibrary_GetAbilitySystemComponent"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAbilitySystemComponent, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetAbilitySystemComponent::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAbilitySystemComponent, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetAbilitySystemComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString) == 0x000018, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectExpectedEndTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration) == 0x000018, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration, WorldContextObject) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration, ActiveHandle) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectRemainingDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStackLimitCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetActiveGameplayEffectTotalDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActorByIndex \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActorByIndex) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActorByIndex"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActorByIndex) == 0x0000E8, "Wrong size on AbilitySystemBlueprintLibrary_GetActorByIndex"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorByIndex, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActorByIndex::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorByIndex, Index_0) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_GetActorByIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorByIndex, ReturnValue) == 0x0000E0, "Member 'AbilitySystemBlueprintLibrary_GetActorByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActorCount \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActorCount) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActorCount"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActorCount) == 0x0000E0, "Wrong size on AbilitySystemBlueprintLibrary_GetActorCount"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorCount, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActorCount::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorCount, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_GetActorCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetActorsFromTargetData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetActorsFromTargetData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetActorsFromTargetData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetActorsFromTargetData) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_GetActorsFromTargetData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorsFromTargetData, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetActorsFromTargetData::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorsFromTargetData, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetActorsFromTargetData::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetActorsFromTargetData, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_GetActorsFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData) == 0x000038, "Wrong size on AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData, ReturnValue) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetAllActorsFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetAllLinkedGameplayEffectSpecHandles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetDataCountFromTargetData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetDataCountFromTargetData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetDataCountFromTargetData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetDataCountFromTargetData) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_GetDataCountFromTargetData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetDataCountFromTargetData, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetDataCountFromTargetData::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetDataCountFromTargetData, ReturnValue) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetDataCountFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute, Attribute) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute, ReturnValue) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_GetDebugStringFromGameplayAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetEffectContext \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetEffectContext) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetEffectContext"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetEffectContext) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_GetEffectContext"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetEffectContext, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetEffectContext::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetEffectContext, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetEffectContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetFloatAttribute \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetFloatAttribute) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetFloatAttribute"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetFloatAttribute) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetFloatAttribute"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttribute, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttribute::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttribute, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttribute::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttribute, bSuccessfullyFoundAttribute) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttribute::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttribute, ReturnValue) == 0x000044, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetFloatAttributeBase \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetFloatAttributeBase"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetFloatAttributeBase"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBase::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBase::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase, bSuccessfullyFoundAttribute) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBase::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBase, ReturnValue) == 0x000044, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent, AbilitySystemComponent) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent::AbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent, bSuccessfullyFoundAttribute) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent, ReturnValue) == 0x000044, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeBaseFromAbilitySystemComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent, AbilitySystem) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent::AbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent, Attribute) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent, bSuccessfullyFoundAttribute) == 0x000040, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent, ReturnValue) == 0x000044, "Member 'AbilitySystemBlueprintLibrary_GetFloatAttributeFromAbilitySystemComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle) == 0x000018, "Wrong size on AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle, AbilitySystem) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle::AbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle, AbilitySpecHandle) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle::AbilitySpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle, bIsInstance) == 0x00000C, "Member 'AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle::bIsInstance' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetGameplayAbilityFromSpecHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetGameplayCueDirection \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetGameplayCueDirection"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection) == 0x000100, "Wrong size on AbilitySystemBlueprintLibrary_GetGameplayCueDirection"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection, TargetActor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueDirection::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection, Parameters) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueDirection::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection, Direction) == 0x0000E0, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueDirection, ReturnValue) == 0x0000F8, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal) == 0x000118, "Wrong size on AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal, TargetActor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal, Parameters) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal, Location) == 0x0000E0, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal::Location' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal, Normal) == 0x0000F8, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal::Normal' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal, ReturnValue) == 0x000110, "Member 'AbilitySystemBlueprintLibrary_GetGameplayCueEndLocationAndNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle) == 0x000010, "Wrong size on AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle, ActiveHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetGameplayEffectFromActiveEffectHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetGameplayEffectUIData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetGameplayEffectUIData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetGameplayEffectUIData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetGameplayEffectUIData) == 0x000018, "Wrong size on AbilitySystemBlueprintLibrary_GetGameplayEffectUIData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayEffectUIData, EffectClass) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetGameplayEffectUIData::EffectClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayEffectUIData, DataType) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_GetGameplayEffectUIData::DataType' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetGameplayEffectUIData, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetGameplayEffectUIData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetHitResult) == 0x0001C0, "Wrong size on AbilitySystemBlueprintLibrary_GetHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetHitResult, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetHitResult::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetHitResult, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_GetHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetHitResultFromTargetData \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetHitResultFromTargetData) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetHitResultFromTargetData"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetHitResultFromTargetData) == 0x000118, "Wrong size on AbilitySystemBlueprintLibrary_GetHitResultFromTargetData"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetHitResultFromTargetData, HitResult) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetHitResultFromTargetData::HitResult' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetHitResultFromTargetData, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetHitResultFromTargetData::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetHitResultFromTargetData, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_GetHitResultFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetInstigatorActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetInstigatorActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetInstigatorActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetInstigatorActor) == 0x0000E0, "Wrong size on AbilitySystemBlueprintLibrary_GetInstigatorActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetInstigatorActor, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetInstigatorActor::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetInstigatorActor, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_GetInstigatorActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetInstigatorTransform \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetInstigatorTransform) == 0x000010, "Wrong alignment on AbilitySystemBlueprintLibrary_GetInstigatorTransform"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetInstigatorTransform) == 0x000140, "Wrong size on AbilitySystemBlueprintLibrary_GetInstigatorTransform"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetInstigatorTransform, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetInstigatorTransform::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetInstigatorTransform, ReturnValue) == 0x0000E0, "Member 'AbilitySystemBlueprintLibrary_GetInstigatorTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude) == 0x000050, "Wrong size on AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude, Attribute) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude, ReturnValue) == 0x000048, "Member 'AbilitySystemBlueprintLibrary_GetModifiedAttributeMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetOrigin \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetOrigin) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetOrigin"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetOrigin) == 0x0000F0, "Wrong size on AbilitySystemBlueprintLibrary_GetOrigin"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetOrigin, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetOrigin::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetOrigin, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_GetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetTargetDataEndPoint \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetTargetDataEndPoint) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_GetTargetDataEndPoint"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetTargetDataEndPoint) == 0x000048, "Wrong size on AbilitySystemBlueprintLibrary_GetTargetDataEndPoint"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPoint, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPoint::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPoint, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPoint::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPoint, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform) == 0x000010, "Wrong alignment on AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform) == 0x000090, "Wrong size on AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataEndPointTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_GetTargetDataOrigin \ +static_assert(alignof(AbilitySystemBlueprintLibrary_GetTargetDataOrigin) == 0x000010, "Wrong alignment on AbilitySystemBlueprintLibrary_GetTargetDataOrigin"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_GetTargetDataOrigin) == 0x000090, "Wrong size on AbilitySystemBlueprintLibrary_GetTargetDataOrigin"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataOrigin, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataOrigin::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataOrigin, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataOrigin::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_GetTargetDataOrigin, ReturnValue) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_GetTargetDataOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_HasHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_HasHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_HasHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_HasHitResult) == 0x0000E0, "Wrong size on AbilitySystemBlueprintLibrary_HasHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_HasHitResult, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_HasHitResult::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_HasHitResult, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_HasHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled \ +static_assert(alignof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled) == 0x0000E0, "Wrong size on AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer \ +static_assert(alignof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer) == 0x0000E0, "Wrong size on AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer, Parameters) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer::Parameters' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_IsInstigatorLocallyControlledPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_IsValid \ +static_assert(alignof(AbilitySystemBlueprintLibrary_IsValid) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_IsValid"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_IsValid) == 0x000040, "Wrong size on AbilitySystemBlueprintLibrary_IsValid"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsValid, Attribute) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_IsValid::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_IsValid, ReturnValue) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_MakeFilterHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_MakeFilterHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_MakeFilterHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_MakeFilterHandle) == 0x000038, "Wrong size on AbilitySystemBlueprintLibrary_MakeFilterHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeFilterHandle, Filter) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_MakeFilterHandle::Filter' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeFilterHandle, FilterActor) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_MakeFilterHandle::FilterActor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeFilterHandle, ReturnValue) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_MakeFilterHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_MakeGameplayCueParameters \ +static_assert(alignof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_MakeGameplayCueParameters"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters) == 0x0001B0, "Wrong size on AbilitySystemBlueprintLibrary_MakeGameplayCueParameters"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, NormalizedMagnitude) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, RawMagnitude) == 0x000004, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, EffectContext) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, MatchedTagName) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, OriginalTag) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, AggregatedSourceTags) == 0x000030, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, AggregatedTargetTags) == 0x000050, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, Location) == 0x000070, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::Location' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, Normal) == 0x000088, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::Normal' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, Instigator) == 0x0000A0, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::Instigator' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, EffectCauser) == 0x0000A8, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, SourceObject) == 0x0000B0, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, PhysicalMaterial) == 0x0000B8, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, GameplayEffectLevel) == 0x0000C0, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, AbilityLevel) == 0x0000C4, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, TargetAttachComponent) == 0x0000C8, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, bReplicateLocationWhenUsingMinimalRepProxy) == 0x0000D0, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeGameplayCueParameters, ReturnValue) == 0x0000D8, "Member 'AbilitySystemBlueprintLibrary_MakeGameplayCueParameters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_MakeSpecHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_MakeSpecHandle) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_MakeSpecHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_MakeSpecHandle) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_MakeSpecHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeSpecHandle, InGameplayEffect) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_MakeSpecHandle::InGameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeSpecHandle, InInstigator) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_MakeSpecHandle::InInstigator' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeSpecHandle, InEffectCauser) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_MakeSpecHandle::InEffectCauser' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeSpecHandle, InLevel) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_MakeSpecHandle::InLevel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_MakeSpecHandle, ReturnValue) == 0x000020, "Member 'AbilitySystemBlueprintLibrary_MakeSpecHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle) == 0x000014, "Wrong size on AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle, A) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle::A' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle, B) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle::B' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_NotEqual_ActiveGameplayEffectHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle \ +static_assert(alignof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle) == 0x000004, "Wrong alignment on AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle) == 0x00000C, "Wrong size on AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle, A) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle::A' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle, B) == 0x000004, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle::B' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle, ReturnValue) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAbilitySpecHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute \ +static_assert(alignof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute) == 0x000078, "Wrong size on AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute, AttributeA) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute::AttributeA' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute, AttributeB) == 0x000038, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute::AttributeB' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute, ReturnValue) == 0x000070, "Member 'AbilitySystemBlueprintLibrary_NotEqual_GameplayAttributeGameplayAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags \ +static_assert(alignof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags, GameplayTags) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags, bShouldReplicate) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags::bShouldReplicate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags, ReturnValue) == 0x000029, "Member 'AbilitySystemBlueprintLibrary_RemoveLooseGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_SendGameplayEventToActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_SendGameplayEventToActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_SendGameplayEventToActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_SendGameplayEventToActor) == 0x0000C0, "Wrong size on AbilitySystemBlueprintLibrary_SendGameplayEventToActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SendGameplayEventToActor, Actor) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_SendGameplayEventToActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SendGameplayEventToActor, EventTag) == 0x000008, "Member 'AbilitySystemBlueprintLibrary_SendGameplayEventToActor::EventTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SendGameplayEventToActor, Payload) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_SendGameplayEventToActor::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_SetDuration \ +static_assert(alignof(AbilitySystemBlueprintLibrary_SetDuration) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_SetDuration"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_SetDuration) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_SetDuration"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetDuration, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_SetDuration::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetDuration, Duration) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_SetDuration::Duration' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetDuration, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_SetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_SetStackCount \ +static_assert(alignof(AbilitySystemBlueprintLibrary_SetStackCount) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_SetStackCount"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_SetStackCount) == 0x000028, "Wrong size on AbilitySystemBlueprintLibrary_SetStackCount"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetStackCount, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_SetStackCount::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetStackCount, StackCount) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_SetStackCount::StackCount' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetStackCount, ReturnValue) == 0x000018, "Member 'AbilitySystemBlueprintLibrary_SetStackCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_SetStackCountToMax \ +static_assert(alignof(AbilitySystemBlueprintLibrary_SetStackCountToMax) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_SetStackCountToMax"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_SetStackCountToMax) == 0x000020, "Wrong size on AbilitySystemBlueprintLibrary_SetStackCountToMax"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetStackCountToMax, SpecHandle) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_SetStackCountToMax::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_SetStackCountToMax, ReturnValue) == 0x000010, "Member 'AbilitySystemBlueprintLibrary_SetStackCountToMax::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_TargetDataHasActor \ +static_assert(alignof(AbilitySystemBlueprintLibrary_TargetDataHasActor) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_TargetDataHasActor"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_TargetDataHasActor) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_TargetDataHasActor"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasActor, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasActor::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasActor, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasActor::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasActor, ReturnValue) == 0x00002C, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_TargetDataHasEndPoint \ +static_assert(alignof(AbilitySystemBlueprintLibrary_TargetDataHasEndPoint) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_TargetDataHasEndPoint"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_TargetDataHasEndPoint) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_TargetDataHasEndPoint"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasEndPoint, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasEndPoint::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasEndPoint, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasEndPoint::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasEndPoint, ReturnValue) == 0x00002C, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasEndPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_TargetDataHasHitResult \ +static_assert(alignof(AbilitySystemBlueprintLibrary_TargetDataHasHitResult) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_TargetDataHasHitResult"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_TargetDataHasHitResult) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_TargetDataHasHitResult"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasHitResult, HitResult) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasHitResult::HitResult' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasHitResult, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasHitResult::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasHitResult, ReturnValue) == 0x00002C, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemBlueprintLibrary_TargetDataHasOrigin \ +static_assert(alignof(AbilitySystemBlueprintLibrary_TargetDataHasOrigin) == 0x000008, "Wrong alignment on AbilitySystemBlueprintLibrary_TargetDataHasOrigin"); \ +static_assert(sizeof(AbilitySystemBlueprintLibrary_TargetDataHasOrigin) == 0x000030, "Wrong size on AbilitySystemBlueprintLibrary_TargetDataHasOrigin"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasOrigin, TargetData) == 0x000000, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasOrigin::TargetData' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasOrigin, Index_0) == 0x000028, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasOrigin::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemBlueprintLibrary_TargetDataHasOrigin, ReturnValue) == 0x00002C, "Member 'AbilitySystemBlueprintLibrary_TargetDataHasOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemBlueprintLibrary \ +static_assert(alignof(UAbilitySystemBlueprintLibrary) == 0x000008, "Wrong alignment on UAbilitySystemBlueprintLibrary"); \ +static_assert(sizeof(UAbilitySystemBlueprintLibrary) == 0x000028, "Wrong size on UAbilitySystemBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf \ +static_assert(alignof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf) == 0x000008, "Wrong alignment on AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf"); \ +static_assert(sizeof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf) == 0x000018, "Wrong size on AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf, SpecHandle) == 0x000000, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf, ReturnValue) == 0x000010, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectSpecToSelf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget \ +static_assert(alignof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget) == 0x000008, "Wrong alignment on AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget"); \ +static_assert(sizeof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget) == 0x000020, "Wrong size on AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget, SpecHandle) == 0x000000, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget::SpecHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget, Target) == 0x000010, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget, ReturnValue) == 0x000018, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectSpecToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_BP_ApplyGameplayEffectToSelf \ +static_assert(alignof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf) == 0x000008, "Wrong alignment on AbilitySystemComponent_BP_ApplyGameplayEffectToSelf"); \ +static_assert(sizeof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf) == 0x000030, "Wrong size on AbilitySystemComponent_BP_ApplyGameplayEffectToSelf"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf, GameplayEffectClass) == 0x000000, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToSelf::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf, Level) == 0x000008, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToSelf::Level' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf, EffectContext) == 0x000010, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToSelf::EffectContext' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToSelf, ReturnValue) == 0x000028, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToSelf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_BP_ApplyGameplayEffectToTarget \ +static_assert(alignof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget) == 0x000008, "Wrong alignment on AbilitySystemComponent_BP_ApplyGameplayEffectToTarget"); \ +static_assert(sizeof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget) == 0x000038, "Wrong size on AbilitySystemComponent_BP_ApplyGameplayEffectToTarget"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget, GameplayEffectClass) == 0x000000, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToTarget::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget, Target) == 0x000008, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget, Level) == 0x000010, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToTarget::Level' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget, Context) == 0x000018, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToTarget::Context' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_BP_ApplyGameplayEffectToTarget, ReturnValue) == 0x000030, "Member 'AbilitySystemComponent_BP_ApplyGameplayEffectToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClearAbility \ +static_assert(alignof(AbilitySystemComponent_ClearAbility) == 0x000004, "Wrong alignment on AbilitySystemComponent_ClearAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ClearAbility) == 0x000004, "Wrong size on AbilitySystemComponent_ClearAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ClearAbility, Handle) == 0x000000, "Member 'AbilitySystemComponent_ClearAbility::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClearAllAbilitiesWithInputID \ +static_assert(alignof(AbilitySystemComponent_ClearAllAbilitiesWithInputID) == 0x000004, "Wrong alignment on AbilitySystemComponent_ClearAllAbilitiesWithInputID"); \ +static_assert(sizeof(AbilitySystemComponent_ClearAllAbilitiesWithInputID) == 0x000004, "Wrong size on AbilitySystemComponent_ClearAllAbilitiesWithInputID"); \ +static_assert(offsetof(AbilitySystemComponent_ClearAllAbilitiesWithInputID, InputID) == 0x000000, "Member 'AbilitySystemComponent_ClearAllAbilitiesWithInputID::InputID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientActivateAbilityFailed \ +static_assert(alignof(AbilitySystemComponent_ClientActivateAbilityFailed) == 0x000004, "Wrong alignment on AbilitySystemComponent_ClientActivateAbilityFailed"); \ +static_assert(sizeof(AbilitySystemComponent_ClientActivateAbilityFailed) == 0x000008, "Wrong size on AbilitySystemComponent_ClientActivateAbilityFailed"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilityFailed, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ClientActivateAbilityFailed::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilityFailed, PredictionKey) == 0x000004, "Member 'AbilitySystemComponent_ClientActivateAbilityFailed::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientActivateAbilitySucceed \ +static_assert(alignof(AbilitySystemComponent_ClientActivateAbilitySucceed) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientActivateAbilitySucceed"); \ +static_assert(sizeof(AbilitySystemComponent_ClientActivateAbilitySucceed) == 0x000020, "Wrong size on AbilitySystemComponent_ClientActivateAbilitySucceed"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilitySucceed, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ClientActivateAbilitySucceed::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilitySucceed, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ClientActivateAbilitySucceed::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData \ +static_assert(alignof(AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData"); \ +static_assert(sizeof(AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData) == 0x0000D0, "Wrong size on AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData, TriggerEventData) == 0x000020, "Member 'AbilitySystemComponent_ClientActivateAbilitySucceedWithEventData::TriggerEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientCancelAbility \ +static_assert(alignof(AbilitySystemComponent_ClientCancelAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientCancelAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ClientCancelAbility) == 0x000028, "Wrong size on AbilitySystemComponent_ClientCancelAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ClientCancelAbility, AbilityToCancel) == 0x000000, "Member 'AbilitySystemComponent_ClientCancelAbility::AbilityToCancel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientCancelAbility, ActivationInfo) == 0x000008, "Member 'AbilitySystemComponent_ClientCancelAbility::ActivationInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientEndAbility \ +static_assert(alignof(AbilitySystemComponent_ClientEndAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientEndAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ClientEndAbility) == 0x000028, "Wrong size on AbilitySystemComponent_ClientEndAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ClientEndAbility, AbilityToEnd) == 0x000000, "Member 'AbilitySystemComponent_ClientEndAbility::AbilityToEnd' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientEndAbility, ActivationInfo) == 0x000008, "Member 'AbilitySystemComponent_ClientEndAbility::ActivationInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientPrintDebug_Response \ +static_assert(alignof(AbilitySystemComponent_ClientPrintDebug_Response) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientPrintDebug_Response"); \ +static_assert(sizeof(AbilitySystemComponent_ClientPrintDebug_Response) == 0x000018, "Wrong size on AbilitySystemComponent_ClientPrintDebug_Response"); \ +static_assert(offsetof(AbilitySystemComponent_ClientPrintDebug_Response, Strings) == 0x000000, "Member 'AbilitySystemComponent_ClientPrintDebug_Response::Strings' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientPrintDebug_Response, GameFlags) == 0x000010, "Member 'AbilitySystemComponent_ClientPrintDebug_Response::GameFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientSetReplicatedEvent \ +static_assert(alignof(AbilitySystemComponent_ClientSetReplicatedEvent) == 0x000008, "Wrong alignment on AbilitySystemComponent_ClientSetReplicatedEvent"); \ +static_assert(sizeof(AbilitySystemComponent_ClientSetReplicatedEvent) == 0x000020, "Wrong size on AbilitySystemComponent_ClientSetReplicatedEvent"); \ +static_assert(offsetof(AbilitySystemComponent_ClientSetReplicatedEvent, EventType) == 0x000000, "Member 'AbilitySystemComponent_ClientSetReplicatedEvent::EventType' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientSetReplicatedEvent, AbilityHandle) == 0x000004, "Member 'AbilitySystemComponent_ClientSetReplicatedEvent::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ClientSetReplicatedEvent, AbilityOriginalPredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ClientSetReplicatedEvent::AbilityOriginalPredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ClientTryActivateAbility \ +static_assert(alignof(AbilitySystemComponent_ClientTryActivateAbility) == 0x000004, "Wrong alignment on AbilitySystemComponent_ClientTryActivateAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ClientTryActivateAbility) == 0x000004, "Wrong size on AbilitySystemComponent_ClientTryActivateAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ClientTryActivateAbility, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ClientTryActivateAbility::AbilityToActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetAllAttributes \ +static_assert(alignof(AbilitySystemComponent_GetAllAttributes) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetAllAttributes"); \ +static_assert(sizeof(AbilitySystemComponent_GetAllAttributes) == 0x000010, "Wrong size on AbilitySystemComponent_GetAllAttributes"); \ +static_assert(offsetof(AbilitySystemComponent_GetAllAttributes, OutAttributes) == 0x000000, "Member 'AbilitySystemComponent_GetAllAttributes::OutAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_K2_GiveAbility \ +static_assert(alignof(AbilitySystemComponent_K2_GiveAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_K2_GiveAbility"); \ +static_assert(sizeof(AbilitySystemComponent_K2_GiveAbility) == 0x000018, "Wrong size on AbilitySystemComponent_K2_GiveAbility"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbility, AbilityClass) == 0x000000, "Member 'AbilitySystemComponent_K2_GiveAbility::AbilityClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbility, Level) == 0x000008, "Member 'AbilitySystemComponent_K2_GiveAbility::Level' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbility, InputID) == 0x00000C, "Member 'AbilitySystemComponent_K2_GiveAbility::InputID' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbility, ReturnValue) == 0x000010, "Member 'AbilitySystemComponent_K2_GiveAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_K2_GiveAbilityAndActivateOnce \ +static_assert(alignof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce) == 0x000008, "Wrong alignment on AbilitySystemComponent_K2_GiveAbilityAndActivateOnce"); \ +static_assert(sizeof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce) == 0x000018, "Wrong size on AbilitySystemComponent_K2_GiveAbilityAndActivateOnce"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce, AbilityClass) == 0x000000, "Member 'AbilitySystemComponent_K2_GiveAbilityAndActivateOnce::AbilityClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce, Level) == 0x000008, "Member 'AbilitySystemComponent_K2_GiveAbilityAndActivateOnce::Level' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce, InputID) == 0x00000C, "Member 'AbilitySystemComponent_K2_GiveAbilityAndActivateOnce::InputID' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_GiveAbilityAndActivateOnce, ReturnValue) == 0x000010, "Member 'AbilitySystemComponent_K2_GiveAbilityAndActivateOnce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_K2_InitStats \ +static_assert(alignof(AbilitySystemComponent_K2_InitStats) == 0x000008, "Wrong alignment on AbilitySystemComponent_K2_InitStats"); \ +static_assert(sizeof(AbilitySystemComponent_K2_InitStats) == 0x000010, "Wrong size on AbilitySystemComponent_K2_InitStats"); \ +static_assert(offsetof(AbilitySystemComponent_K2_InitStats, Attributes) == 0x000000, "Member 'AbilitySystemComponent_K2_InitStats::Attributes' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_K2_InitStats, DataTable) == 0x000008, "Member 'AbilitySystemComponent_K2_InitStats::DataTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded) == 0x000038, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded, EffectContext) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded::EffectContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams) == 0x0000F8, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams, Parameters) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAdded_WithParams::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec) == 0x000090, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec, Spec) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec::Spec' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec, PredictionKey) == 0x000078, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_FromSpec::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams) == 0x0000F8, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams, GameplayCueParameters) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueAddedAndWhileActive_WithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted) == 0x000038, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted, EffectContext) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted::EffectContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec) == 0x000090, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec, Spec) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec::Spec' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec, PredictionKey) == 0x000078, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_FromSpec::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams) == 0x0000F8, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams, GameplayCueParameters) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCueExecuted_WithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams) == 0x000110, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams, GameplayCueTags) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams::GameplayCueTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams, PredictionKey) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams, GameplayCueParameters) == 0x000038, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesAddedAndWhileActive_WithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted) == 0x000050, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted, GameplayCueTags) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted::GameplayCueTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted, PredictionKey) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted, EffectContext) == 0x000038, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted::EffectContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams \ +static_assert(alignof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams) == 0x000008, "Wrong alignment on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams"); \ +static_assert(sizeof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams) == 0x000110, "Wrong size on AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams, GameplayCueTags) == 0x000000, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams::GameplayCueTags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams, PredictionKey) == 0x000020, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams, GameplayCueParameters) == 0x000038, "Member 'AbilitySystemComponent_NetMulticast_InvokeGameplayCuesExecuted_WithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_OnAvatarActorDestroyed \ +static_assert(alignof(AbilitySystemComponent_OnAvatarActorDestroyed) == 0x000008, "Wrong alignment on AbilitySystemComponent_OnAvatarActorDestroyed"); \ +static_assert(sizeof(AbilitySystemComponent_OnAvatarActorDestroyed) == 0x000008, "Wrong size on AbilitySystemComponent_OnAvatarActorDestroyed"); \ +static_assert(offsetof(AbilitySystemComponent_OnAvatarActorDestroyed, InActor) == 0x000000, "Member 'AbilitySystemComponent_OnAvatarActorDestroyed::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_OnOwnerActorDestroyed \ +static_assert(alignof(AbilitySystemComponent_OnOwnerActorDestroyed) == 0x000008, "Wrong alignment on AbilitySystemComponent_OnOwnerActorDestroyed"); \ +static_assert(sizeof(AbilitySystemComponent_OnOwnerActorDestroyed) == 0x000008, "Wrong size on AbilitySystemComponent_OnOwnerActorDestroyed"); \ +static_assert(offsetof(AbilitySystemComponent_OnOwnerActorDestroyed, InActor) == 0x000000, "Member 'AbilitySystemComponent_OnOwnerActorDestroyed::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_OnRep_SpawnedAttributes \ +static_assert(alignof(AbilitySystemComponent_OnRep_SpawnedAttributes) == 0x000008, "Wrong alignment on AbilitySystemComponent_OnRep_SpawnedAttributes"); \ +static_assert(sizeof(AbilitySystemComponent_OnRep_SpawnedAttributes) == 0x000010, "Wrong size on AbilitySystemComponent_OnRep_SpawnedAttributes"); \ +static_assert(offsetof(AbilitySystemComponent_OnRep_SpawnedAttributes, PreviousSpawnedAttributes) == 0x000000, "Member 'AbilitySystemComponent_OnRep_SpawnedAttributes::PreviousSpawnedAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_OnSpawnedAttributesEndPlayed \ +static_assert(alignof(AbilitySystemComponent_OnSpawnedAttributesEndPlayed) == 0x000008, "Wrong alignment on AbilitySystemComponent_OnSpawnedAttributesEndPlayed"); \ +static_assert(sizeof(AbilitySystemComponent_OnSpawnedAttributesEndPlayed) == 0x000010, "Wrong size on AbilitySystemComponent_OnSpawnedAttributesEndPlayed"); \ +static_assert(offsetof(AbilitySystemComponent_OnSpawnedAttributesEndPlayed, InActor) == 0x000000, "Member 'AbilitySystemComponent_OnSpawnedAttributesEndPlayed::InActor' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_OnSpawnedAttributesEndPlayed, EndPlayReason) == 0x000008, "Member 'AbilitySystemComponent_OnSpawnedAttributesEndPlayed::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_PressInputID \ +static_assert(alignof(AbilitySystemComponent_PressInputID) == 0x000004, "Wrong alignment on AbilitySystemComponent_PressInputID"); \ +static_assert(sizeof(AbilitySystemComponent_PressInputID) == 0x000004, "Wrong size on AbilitySystemComponent_PressInputID"); \ +static_assert(offsetof(AbilitySystemComponent_PressInputID, InputID) == 0x000000, "Member 'AbilitySystemComponent_PressInputID::InputID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ReleaseInputID \ +static_assert(alignof(AbilitySystemComponent_ReleaseInputID) == 0x000004, "Wrong alignment on AbilitySystemComponent_ReleaseInputID"); \ +static_assert(sizeof(AbilitySystemComponent_ReleaseInputID) == 0x000004, "Wrong size on AbilitySystemComponent_ReleaseInputID"); \ +static_assert(offsetof(AbilitySystemComponent_ReleaseInputID, InputID) == 0x000000, "Member 'AbilitySystemComponent_ReleaseInputID::InputID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags) == 0x000028, "Wrong size on AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags, Tags) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags, ReturnValue) == 0x000020, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithAppliedTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags) == 0x000028, "Wrong size on AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags, Tags) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags, ReturnValue) == 0x000020, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithGrantedTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveEffectsWithSourceTags \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveEffectsWithSourceTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_RemoveActiveEffectsWithSourceTags"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveEffectsWithSourceTags) == 0x000028, "Wrong size on AbilitySystemComponent_RemoveActiveEffectsWithSourceTags"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithSourceTags, Tags) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithSourceTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithSourceTags, ReturnValue) == 0x000020, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithSourceTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveEffectsWithTags \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveEffectsWithTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_RemoveActiveEffectsWithTags"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveEffectsWithTags) == 0x000028, "Wrong size on AbilitySystemComponent_RemoveActiveEffectsWithTags"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithTags, Tags) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveEffectsWithTags, ReturnValue) == 0x000020, "Member 'AbilitySystemComponent_RemoveActiveEffectsWithTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveGameplayEffect \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveGameplayEffect) == 0x000004, "Wrong alignment on AbilitySystemComponent_RemoveActiveGameplayEffect"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveGameplayEffect) == 0x000010, "Wrong size on AbilitySystemComponent_RemoveActiveGameplayEffect"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffect, Handle) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffect::Handle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffect, StacksToRemove) == 0x000008, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffect::StacksToRemove' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffect, ReturnValue) == 0x00000C, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect \ +static_assert(alignof(AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect) == 0x000008, "Wrong alignment on AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect"); \ +static_assert(sizeof(AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect) == 0x000018, "Wrong size on AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect, GameplayEffect) == 0x000000, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect::GameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect, InstigatorAbilitySystemComponent) == 0x000008, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect::InstigatorAbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect, StacksToRemove) == 0x000010, "Member 'AbilitySystemComponent_RemoveActiveGameplayEffectBySourceEffect::StacksToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerAbilityRPCBatch \ +static_assert(alignof(AbilitySystemComponent_ServerAbilityRPCBatch) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerAbilityRPCBatch"); \ +static_assert(sizeof(AbilitySystemComponent_ServerAbilityRPCBatch) == 0x000050, "Wrong size on AbilitySystemComponent_ServerAbilityRPCBatch"); \ +static_assert(offsetof(AbilitySystemComponent_ServerAbilityRPCBatch, BatchInfo) == 0x000000, "Member 'AbilitySystemComponent_ServerAbilityRPCBatch::BatchInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerCancelAbility \ +static_assert(alignof(AbilitySystemComponent_ServerCancelAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerCancelAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ServerCancelAbility) == 0x000028, "Wrong size on AbilitySystemComponent_ServerCancelAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCancelAbility, AbilityToCancel) == 0x000000, "Member 'AbilitySystemComponent_ServerCancelAbility::AbilityToCancel' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCancelAbility, ActivationInfo) == 0x000008, "Member 'AbilitySystemComponent_ServerCancelAbility::ActivationInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerCurrentMontageJumpToSectionName \ +static_assert(alignof(AbilitySystemComponent_ServerCurrentMontageJumpToSectionName) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerCurrentMontageJumpToSectionName"); \ +static_assert(sizeof(AbilitySystemComponent_ServerCurrentMontageJumpToSectionName) == 0x000010, "Wrong size on AbilitySystemComponent_ServerCurrentMontageJumpToSectionName"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageJumpToSectionName, ClientAnimMontage) == 0x000000, "Member 'AbilitySystemComponent_ServerCurrentMontageJumpToSectionName::ClientAnimMontage' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageJumpToSectionName, SectionName) == 0x000008, "Member 'AbilitySystemComponent_ServerCurrentMontageJumpToSectionName::SectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerCurrentMontageSetNextSectionName \ +static_assert(alignof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerCurrentMontageSetNextSectionName"); \ +static_assert(sizeof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName) == 0x000020, "Wrong size on AbilitySystemComponent_ServerCurrentMontageSetNextSectionName"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName, ClientAnimMontage) == 0x000000, "Member 'AbilitySystemComponent_ServerCurrentMontageSetNextSectionName::ClientAnimMontage' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName, ClientPosition) == 0x000008, "Member 'AbilitySystemComponent_ServerCurrentMontageSetNextSectionName::ClientPosition' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName, SectionName) == 0x00000C, "Member 'AbilitySystemComponent_ServerCurrentMontageSetNextSectionName::SectionName' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetNextSectionName, NextSectionName) == 0x000014, "Member 'AbilitySystemComponent_ServerCurrentMontageSetNextSectionName::NextSectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerCurrentMontageSetPlayRate \ +static_assert(alignof(AbilitySystemComponent_ServerCurrentMontageSetPlayRate) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerCurrentMontageSetPlayRate"); \ +static_assert(sizeof(AbilitySystemComponent_ServerCurrentMontageSetPlayRate) == 0x000010, "Wrong size on AbilitySystemComponent_ServerCurrentMontageSetPlayRate"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetPlayRate, ClientAnimMontage) == 0x000000, "Member 'AbilitySystemComponent_ServerCurrentMontageSetPlayRate::ClientAnimMontage' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerCurrentMontageSetPlayRate, InPlayRate) == 0x000008, "Member 'AbilitySystemComponent_ServerCurrentMontageSetPlayRate::InPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerEndAbility \ +static_assert(alignof(AbilitySystemComponent_ServerEndAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerEndAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ServerEndAbility) == 0x000040, "Wrong size on AbilitySystemComponent_ServerEndAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ServerEndAbility, AbilityToEnd) == 0x000000, "Member 'AbilitySystemComponent_ServerEndAbility::AbilityToEnd' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerEndAbility, ActivationInfo) == 0x000008, "Member 'AbilitySystemComponent_ServerEndAbility::ActivationInfo' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerEndAbility, PredictionKey) == 0x000028, "Member 'AbilitySystemComponent_ServerEndAbility::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerPrintDebug_RequestWithStrings \ +static_assert(alignof(AbilitySystemComponent_ServerPrintDebug_RequestWithStrings) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerPrintDebug_RequestWithStrings"); \ +static_assert(sizeof(AbilitySystemComponent_ServerPrintDebug_RequestWithStrings) == 0x000010, "Wrong size on AbilitySystemComponent_ServerPrintDebug_RequestWithStrings"); \ +static_assert(offsetof(AbilitySystemComponent_ServerPrintDebug_RequestWithStrings, Strings) == 0x000000, "Member 'AbilitySystemComponent_ServerPrintDebug_RequestWithStrings::Strings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetInputPressed \ +static_assert(alignof(AbilitySystemComponent_ServerSetInputPressed) == 0x000004, "Wrong alignment on AbilitySystemComponent_ServerSetInputPressed"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetInputPressed) == 0x000004, "Wrong size on AbilitySystemComponent_ServerSetInputPressed"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetInputPressed, AbilityHandle) == 0x000000, "Member 'AbilitySystemComponent_ServerSetInputPressed::AbilityHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetInputReleased \ +static_assert(alignof(AbilitySystemComponent_ServerSetInputReleased) == 0x000004, "Wrong alignment on AbilitySystemComponent_ServerSetInputReleased"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetInputReleased) == 0x000004, "Wrong size on AbilitySystemComponent_ServerSetInputReleased"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetInputReleased, AbilityHandle) == 0x000000, "Member 'AbilitySystemComponent_ServerSetInputReleased::AbilityHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetReplicatedEvent \ +static_assert(alignof(AbilitySystemComponent_ServerSetReplicatedEvent) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerSetReplicatedEvent"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetReplicatedEvent) == 0x000038, "Wrong size on AbilitySystemComponent_ServerSetReplicatedEvent"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEvent, EventType) == 0x000000, "Member 'AbilitySystemComponent_ServerSetReplicatedEvent::EventType' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEvent, AbilityHandle) == 0x000004, "Member 'AbilitySystemComponent_ServerSetReplicatedEvent::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEvent, AbilityOriginalPredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerSetReplicatedEvent::AbilityOriginalPredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEvent, CurrentPredictionKey) == 0x000020, "Member 'AbilitySystemComponent_ServerSetReplicatedEvent::CurrentPredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetReplicatedEventWithPayload \ +static_assert(alignof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerSetReplicatedEventWithPayload"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload) == 0x000050, "Wrong size on AbilitySystemComponent_ServerSetReplicatedEventWithPayload"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload, EventType) == 0x000000, "Member 'AbilitySystemComponent_ServerSetReplicatedEventWithPayload::EventType' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload, AbilityHandle) == 0x000004, "Member 'AbilitySystemComponent_ServerSetReplicatedEventWithPayload::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload, AbilityOriginalPredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerSetReplicatedEventWithPayload::AbilityOriginalPredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload, CurrentPredictionKey) == 0x000020, "Member 'AbilitySystemComponent_ServerSetReplicatedEventWithPayload::CurrentPredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedEventWithPayload, VectorPayload) == 0x000038, "Member 'AbilitySystemComponent_ServerSetReplicatedEventWithPayload::VectorPayload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetReplicatedTargetData \ +static_assert(alignof(AbilitySystemComponent_ServerSetReplicatedTargetData) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerSetReplicatedTargetData"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetReplicatedTargetData) == 0x000068, "Wrong size on AbilitySystemComponent_ServerSetReplicatedTargetData"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetData, AbilityHandle) == 0x000000, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetData::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetData, AbilityOriginalPredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetData::AbilityOriginalPredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetData, ReplicatedTargetDataHandle) == 0x000020, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetData::ReplicatedTargetDataHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetData, ApplicationTag) == 0x000048, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetData::ApplicationTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetData, CurrentPredictionKey) == 0x000050, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetData::CurrentPredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled \ +static_assert(alignof(AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled"); \ +static_assert(sizeof(AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled) == 0x000038, "Wrong size on AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled, AbilityHandle) == 0x000000, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled::AbilityHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled, AbilityOriginalPredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled::AbilityOriginalPredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled, CurrentPredictionKey) == 0x000020, "Member 'AbilitySystemComponent_ServerSetReplicatedTargetDataCancelled::CurrentPredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerTryActivateAbility \ +static_assert(alignof(AbilitySystemComponent_ServerTryActivateAbility) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerTryActivateAbility"); \ +static_assert(sizeof(AbilitySystemComponent_ServerTryActivateAbility) == 0x000020, "Wrong size on AbilitySystemComponent_ServerTryActivateAbility"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbility, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ServerTryActivateAbility::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbility, InputPressed) == 0x000004, "Member 'AbilitySystemComponent_ServerTryActivateAbility::InputPressed' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbility, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerTryActivateAbility::PredictionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_ServerTryActivateAbilityWithEventData \ +static_assert(alignof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData) == 0x000008, "Wrong alignment on AbilitySystemComponent_ServerTryActivateAbilityWithEventData"); \ +static_assert(sizeof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData) == 0x0000D0, "Wrong size on AbilitySystemComponent_ServerTryActivateAbilityWithEventData"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_ServerTryActivateAbilityWithEventData::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData, InputPressed) == 0x000004, "Member 'AbilitySystemComponent_ServerTryActivateAbilityWithEventData::InputPressed' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData, PredictionKey) == 0x000008, "Member 'AbilitySystemComponent_ServerTryActivateAbilityWithEventData::PredictionKey' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_ServerTryActivateAbilityWithEventData, TriggerEventData) == 0x000020, "Member 'AbilitySystemComponent_ServerTryActivateAbilityWithEventData::TriggerEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_SetActiveGameplayEffectLevel \ +static_assert(alignof(AbilitySystemComponent_SetActiveGameplayEffectLevel) == 0x000004, "Wrong alignment on AbilitySystemComponent_SetActiveGameplayEffectLevel"); \ +static_assert(sizeof(AbilitySystemComponent_SetActiveGameplayEffectLevel) == 0x00000C, "Wrong size on AbilitySystemComponent_SetActiveGameplayEffectLevel"); \ +static_assert(offsetof(AbilitySystemComponent_SetActiveGameplayEffectLevel, ActiveHandle) == 0x000000, "Member 'AbilitySystemComponent_SetActiveGameplayEffectLevel::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_SetActiveGameplayEffectLevel, NewLevel) == 0x000008, "Member 'AbilitySystemComponent_SetActiveGameplayEffectLevel::NewLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery \ +static_assert(alignof(AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery) == 0x000008, "Wrong alignment on AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery"); \ +static_assert(sizeof(AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery) == 0x0001A0, "Wrong size on AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery"); \ +static_assert(offsetof(AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery, Query) == 0x000000, "Member 'AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery::Query' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery, NewLevel) == 0x000198, "Member 'AbilitySystemComponent_SetActiveGameplayEffectLevelUsingQuery::NewLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_SetUserAbilityActivationInhibited \ +static_assert(alignof(AbilitySystemComponent_SetUserAbilityActivationInhibited) == 0x000001, "Wrong alignment on AbilitySystemComponent_SetUserAbilityActivationInhibited"); \ +static_assert(sizeof(AbilitySystemComponent_SetUserAbilityActivationInhibited) == 0x000001, "Wrong size on AbilitySystemComponent_SetUserAbilityActivationInhibited"); \ +static_assert(offsetof(AbilitySystemComponent_SetUserAbilityActivationInhibited, NewInhibit) == 0x000000, "Member 'AbilitySystemComponent_SetUserAbilityActivationInhibited::NewInhibit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_TryActivateAbilitiesByTag \ +static_assert(alignof(AbilitySystemComponent_TryActivateAbilitiesByTag) == 0x000008, "Wrong alignment on AbilitySystemComponent_TryActivateAbilitiesByTag"); \ +static_assert(sizeof(AbilitySystemComponent_TryActivateAbilitiesByTag) == 0x000028, "Wrong size on AbilitySystemComponent_TryActivateAbilitiesByTag"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilitiesByTag, GameplayTagContainer) == 0x000000, "Member 'AbilitySystemComponent_TryActivateAbilitiesByTag::GameplayTagContainer' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilitiesByTag, bAllowRemoteActivation) == 0x000020, "Member 'AbilitySystemComponent_TryActivateAbilitiesByTag::bAllowRemoteActivation' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilitiesByTag, ReturnValue) == 0x000021, "Member 'AbilitySystemComponent_TryActivateAbilitiesByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_TryActivateAbility \ +static_assert(alignof(AbilitySystemComponent_TryActivateAbility) == 0x000004, "Wrong alignment on AbilitySystemComponent_TryActivateAbility"); \ +static_assert(sizeof(AbilitySystemComponent_TryActivateAbility) == 0x000008, "Wrong size on AbilitySystemComponent_TryActivateAbility"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbility, AbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_TryActivateAbility::AbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbility, bAllowRemoteActivation) == 0x000004, "Member 'AbilitySystemComponent_TryActivateAbility::bAllowRemoteActivation' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbility, ReturnValue) == 0x000005, "Member 'AbilitySystemComponent_TryActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_TryActivateAbilityByClass \ +static_assert(alignof(AbilitySystemComponent_TryActivateAbilityByClass) == 0x000008, "Wrong alignment on AbilitySystemComponent_TryActivateAbilityByClass"); \ +static_assert(sizeof(AbilitySystemComponent_TryActivateAbilityByClass) == 0x000010, "Wrong size on AbilitySystemComponent_TryActivateAbilityByClass"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilityByClass, InAbilityToActivate) == 0x000000, "Member 'AbilitySystemComponent_TryActivateAbilityByClass::InAbilityToActivate' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilityByClass, bAllowRemoteActivation) == 0x000008, "Member 'AbilitySystemComponent_TryActivateAbilityByClass::bAllowRemoteActivation' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_TryActivateAbilityByClass, ReturnValue) == 0x000009, "Member 'AbilitySystemComponent_TryActivateAbilityByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude \ +static_assert(alignof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude) == 0x000004, "Wrong alignment on AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude"); \ +static_assert(sizeof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude) == 0x000014, "Wrong size on AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude"); \ +static_assert(offsetof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude, ActiveHandle) == 0x000000, "Member 'AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude, SetByCallerTag) == 0x000008, "Member 'AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude::SetByCallerTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude, NewValue) == 0x000010, "Member 'AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitude::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes \ +static_assert(alignof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes) == 0x000008, "Wrong alignment on AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes"); \ +static_assert(sizeof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes) == 0x000058, "Wrong size on AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes"); \ +static_assert(offsetof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes, ActiveHandle) == 0x000000, "Member 'AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes::ActiveHandle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes, NewSetByCallerValues) == 0x000008, "Member 'AbilitySystemComponent_UpdateActiveGameplayEffectSetByCallerMagnitudes::NewSetByCallerValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_FindAllAbilitiesMatchingQuery \ +static_assert(alignof(AbilitySystemComponent_FindAllAbilitiesMatchingQuery) == 0x000008, "Wrong alignment on AbilitySystemComponent_FindAllAbilitiesMatchingQuery"); \ +static_assert(sizeof(AbilitySystemComponent_FindAllAbilitiesMatchingQuery) == 0x000058, "Wrong size on AbilitySystemComponent_FindAllAbilitiesMatchingQuery"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesMatchingQuery, OutAbilityHandles) == 0x000000, "Member 'AbilitySystemComponent_FindAllAbilitiesMatchingQuery::OutAbilityHandles' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesMatchingQuery, Query) == 0x000010, "Member 'AbilitySystemComponent_FindAllAbilitiesMatchingQuery::Query' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_FindAllAbilitiesWithInputID \ +static_assert(alignof(AbilitySystemComponent_FindAllAbilitiesWithInputID) == 0x000008, "Wrong alignment on AbilitySystemComponent_FindAllAbilitiesWithInputID"); \ +static_assert(sizeof(AbilitySystemComponent_FindAllAbilitiesWithInputID) == 0x000018, "Wrong size on AbilitySystemComponent_FindAllAbilitiesWithInputID"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesWithInputID, OutAbilityHandles) == 0x000000, "Member 'AbilitySystemComponent_FindAllAbilitiesWithInputID::OutAbilityHandles' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesWithInputID, InputID) == 0x000010, "Member 'AbilitySystemComponent_FindAllAbilitiesWithInputID::InputID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_FindAllAbilitiesWithTags \ +static_assert(alignof(AbilitySystemComponent_FindAllAbilitiesWithTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_FindAllAbilitiesWithTags"); \ +static_assert(sizeof(AbilitySystemComponent_FindAllAbilitiesWithTags) == 0x000038, "Wrong size on AbilitySystemComponent_FindAllAbilitiesWithTags"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesWithTags, OutAbilityHandles) == 0x000000, "Member 'AbilitySystemComponent_FindAllAbilitiesWithTags::OutAbilityHandles' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesWithTags, Tags) == 0x000010, "Member 'AbilitySystemComponent_FindAllAbilitiesWithTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_FindAllAbilitiesWithTags, bExactMatch) == 0x000030, "Member 'AbilitySystemComponent_FindAllAbilitiesWithTags::bExactMatch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetActiveEffects \ +static_assert(alignof(AbilitySystemComponent_GetActiveEffects) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetActiveEffects"); \ +static_assert(sizeof(AbilitySystemComponent_GetActiveEffects) == 0x0001A8, "Wrong size on AbilitySystemComponent_GetActiveEffects"); \ +static_assert(offsetof(AbilitySystemComponent_GetActiveEffects, Query) == 0x000000, "Member 'AbilitySystemComponent_GetActiveEffects::Query' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetActiveEffects, ReturnValue) == 0x000198, "Member 'AbilitySystemComponent_GetActiveEffects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetActiveEffectsWithAllTags \ +static_assert(alignof(AbilitySystemComponent_GetActiveEffectsWithAllTags) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetActiveEffectsWithAllTags"); \ +static_assert(sizeof(AbilitySystemComponent_GetActiveEffectsWithAllTags) == 0x000030, "Wrong size on AbilitySystemComponent_GetActiveEffectsWithAllTags"); \ +static_assert(offsetof(AbilitySystemComponent_GetActiveEffectsWithAllTags, Tags) == 0x000000, "Member 'AbilitySystemComponent_GetActiveEffectsWithAllTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetActiveEffectsWithAllTags, ReturnValue) == 0x000020, "Member 'AbilitySystemComponent_GetActiveEffectsWithAllTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetAllAbilities \ +static_assert(alignof(AbilitySystemComponent_GetAllAbilities) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetAllAbilities"); \ +static_assert(sizeof(AbilitySystemComponent_GetAllAbilities) == 0x000010, "Wrong size on AbilitySystemComponent_GetAllAbilities"); \ +static_assert(offsetof(AbilitySystemComponent_GetAllAbilities, OutAbilityHandles) == 0x000000, "Member 'AbilitySystemComponent_GetAllAbilities::OutAbilityHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetAttributeSet \ +static_assert(alignof(AbilitySystemComponent_GetAttributeSet) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetAttributeSet"); \ +static_assert(sizeof(AbilitySystemComponent_GetAttributeSet) == 0x000010, "Wrong size on AbilitySystemComponent_GetAttributeSet"); \ +static_assert(offsetof(AbilitySystemComponent_GetAttributeSet, AttributeSetClass) == 0x000000, "Member 'AbilitySystemComponent_GetAttributeSet::AttributeSetClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetAttributeSet, ReturnValue) == 0x000008, "Member 'AbilitySystemComponent_GetAttributeSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetGameplayAttributeValue \ +static_assert(alignof(AbilitySystemComponent_GetGameplayAttributeValue) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetGameplayAttributeValue"); \ +static_assert(sizeof(AbilitySystemComponent_GetGameplayAttributeValue) == 0x000040, "Wrong size on AbilitySystemComponent_GetGameplayAttributeValue"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayAttributeValue, Attribute) == 0x000000, "Member 'AbilitySystemComponent_GetGameplayAttributeValue::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayAttributeValue, bFound) == 0x000038, "Member 'AbilitySystemComponent_GetGameplayAttributeValue::bFound' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayAttributeValue, ReturnValue) == 0x00003C, "Member 'AbilitySystemComponent_GetGameplayAttributeValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetGameplayEffectCount \ +static_assert(alignof(AbilitySystemComponent_GetGameplayEffectCount) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetGameplayEffectCount"); \ +static_assert(sizeof(AbilitySystemComponent_GetGameplayEffectCount) == 0x000018, "Wrong size on AbilitySystemComponent_GetGameplayEffectCount"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount, SourceGameplayEffect) == 0x000000, "Member 'AbilitySystemComponent_GetGameplayEffectCount::SourceGameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount, OptionalInstigatorFilterComponent) == 0x000008, "Member 'AbilitySystemComponent_GetGameplayEffectCount::OptionalInstigatorFilterComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount, bEnforceOnGoingCheck) == 0x000010, "Member 'AbilitySystemComponent_GetGameplayEffectCount::bEnforceOnGoingCheck' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount, ReturnValue) == 0x000014, "Member 'AbilitySystemComponent_GetGameplayEffectCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetGameplayEffectCount_IfLoaded \ +static_assert(alignof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetGameplayEffectCount_IfLoaded"); \ +static_assert(sizeof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded) == 0x000038, "Wrong size on AbilitySystemComponent_GetGameplayEffectCount_IfLoaded"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded, SoftSourceGameplayEffect) == 0x000000, "Member 'AbilitySystemComponent_GetGameplayEffectCount_IfLoaded::SoftSourceGameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded, OptionalInstigatorFilterComponent) == 0x000028, "Member 'AbilitySystemComponent_GetGameplayEffectCount_IfLoaded::OptionalInstigatorFilterComponent' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded, bEnforceOnGoingCheck) == 0x000030, "Member 'AbilitySystemComponent_GetGameplayEffectCount_IfLoaded::bEnforceOnGoingCheck' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectCount_IfLoaded, ReturnValue) == 0x000034, "Member 'AbilitySystemComponent_GetGameplayEffectCount_IfLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetGameplayEffectMagnitude \ +static_assert(alignof(AbilitySystemComponent_GetGameplayEffectMagnitude) == 0x000008, "Wrong alignment on AbilitySystemComponent_GetGameplayEffectMagnitude"); \ +static_assert(sizeof(AbilitySystemComponent_GetGameplayEffectMagnitude) == 0x000048, "Wrong size on AbilitySystemComponent_GetGameplayEffectMagnitude"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectMagnitude, Handle) == 0x000000, "Member 'AbilitySystemComponent_GetGameplayEffectMagnitude::Handle' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectMagnitude, Attribute) == 0x000008, "Member 'AbilitySystemComponent_GetGameplayEffectMagnitude::Attribute' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayEffectMagnitude, ReturnValue) == 0x000040, "Member 'AbilitySystemComponent_GetGameplayEffectMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetGameplayTagCount \ +static_assert(alignof(AbilitySystemComponent_GetGameplayTagCount) == 0x000004, "Wrong alignment on AbilitySystemComponent_GetGameplayTagCount"); \ +static_assert(sizeof(AbilitySystemComponent_GetGameplayTagCount) == 0x00000C, "Wrong size on AbilitySystemComponent_GetGameplayTagCount"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayTagCount, GameplayTag) == 0x000000, "Member 'AbilitySystemComponent_GetGameplayTagCount::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_GetGameplayTagCount, ReturnValue) == 0x000008, "Member 'AbilitySystemComponent_GetGameplayTagCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_GetUserAbilityActivationInhibited \ +static_assert(alignof(AbilitySystemComponent_GetUserAbilityActivationInhibited) == 0x000001, "Wrong alignment on AbilitySystemComponent_GetUserAbilityActivationInhibited"); \ +static_assert(sizeof(AbilitySystemComponent_GetUserAbilityActivationInhibited) == 0x000001, "Wrong size on AbilitySystemComponent_GetUserAbilityActivationInhibited"); \ +static_assert(offsetof(AbilitySystemComponent_GetUserAbilityActivationInhibited, ReturnValue) == 0x000000, "Member 'AbilitySystemComponent_GetUserAbilityActivationInhibited::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_IsGameplayCueActive \ +static_assert(alignof(AbilitySystemComponent_IsGameplayCueActive) == 0x000004, "Wrong alignment on AbilitySystemComponent_IsGameplayCueActive"); \ +static_assert(sizeof(AbilitySystemComponent_IsGameplayCueActive) == 0x00000C, "Wrong size on AbilitySystemComponent_IsGameplayCueActive"); \ +static_assert(offsetof(AbilitySystemComponent_IsGameplayCueActive, GameplayCueTag) == 0x000000, "Member 'AbilitySystemComponent_IsGameplayCueActive::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_IsGameplayCueActive, ReturnValue) == 0x000008, "Member 'AbilitySystemComponent_IsGameplayCueActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_MakeEffectContext \ +static_assert(alignof(AbilitySystemComponent_MakeEffectContext) == 0x000008, "Wrong alignment on AbilitySystemComponent_MakeEffectContext"); \ +static_assert(sizeof(AbilitySystemComponent_MakeEffectContext) == 0x000018, "Wrong size on AbilitySystemComponent_MakeEffectContext"); \ +static_assert(offsetof(AbilitySystemComponent_MakeEffectContext, ReturnValue) == 0x000000, "Member 'AbilitySystemComponent_MakeEffectContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitySystemComponent_MakeOutgoingSpec \ +static_assert(alignof(AbilitySystemComponent_MakeOutgoingSpec) == 0x000008, "Wrong alignment on AbilitySystemComponent_MakeOutgoingSpec"); \ +static_assert(sizeof(AbilitySystemComponent_MakeOutgoingSpec) == 0x000038, "Wrong size on AbilitySystemComponent_MakeOutgoingSpec"); \ +static_assert(offsetof(AbilitySystemComponent_MakeOutgoingSpec, GameplayEffectClass) == 0x000000, "Member 'AbilitySystemComponent_MakeOutgoingSpec::GameplayEffectClass' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_MakeOutgoingSpec, Level) == 0x000008, "Member 'AbilitySystemComponent_MakeOutgoingSpec::Level' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_MakeOutgoingSpec, Context) == 0x000010, "Member 'AbilitySystemComponent_MakeOutgoingSpec::Context' has a wrong offset!"); \ +static_assert(offsetof(AbilitySystemComponent_MakeOutgoingSpec, ReturnValue) == 0x000028, "Member 'AbilitySystemComponent_MakeOutgoingSpec::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemComponent \ +static_assert(alignof(UAbilitySystemComponent) == 0x000008, "Wrong alignment on UAbilitySystemComponent"); \ +static_assert(sizeof(UAbilitySystemComponent) == 0x001250, "Wrong size on UAbilitySystemComponent"); \ +static_assert(offsetof(UAbilitySystemComponent, DefaultStartingData) == 0x000128, "Member 'UAbilitySystemComponent::DefaultStartingData' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, AffectedAnimInstanceTag) == 0x000138, "Member 'UAbilitySystemComponent::AffectedAnimInstanceTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, OutgoingDuration) == 0x0002F0, "Member 'UAbilitySystemComponent::OutgoingDuration' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, IncomingDuration) == 0x0002F4, "Member 'UAbilitySystemComponent::IncomingDuration' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ClientDebugStrings) == 0x000318, "Member 'UAbilitySystemComponent::ClientDebugStrings' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ServerDebugStrings) == 0x000328, "Member 'UAbilitySystemComponent::ServerDebugStrings' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, UserAbilityActivationInhibited) == 0x000398, "Member 'UAbilitySystemComponent::UserAbilityActivationInhibited' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ReplicationProxyEnabled) == 0x000399, "Member 'UAbilitySystemComponent::ReplicationProxyEnabled' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, bSuppressGrantAbility) == 0x00039A, "Member 'UAbilitySystemComponent::bSuppressGrantAbility' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, bSuppressGameplayCues) == 0x00039B, "Member 'UAbilitySystemComponent::bSuppressGameplayCues' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, SpawnedTargetActors) == 0x0003A0, "Member 'UAbilitySystemComponent::SpawnedTargetActors' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, OwnerActor) == 0x0003D8, "Member 'UAbilitySystemComponent::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, AvatarActor) == 0x0003E0, "Member 'UAbilitySystemComponent::AvatarActor' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ActivatableAbilities) == 0x0003F8, "Member 'UAbilitySystemComponent::ActivatableAbilities' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, AllReplicatedInstancedAbilities) == 0x000548, "Member 'UAbilitySystemComponent::AllReplicatedInstancedAbilities' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, RepAnimMontageInfo) == 0x000788, "Member 'UAbilitySystemComponent::RepAnimMontageInfo' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, bCachedIsNetSimulated) == 0x0007C0, "Member 'UAbilitySystemComponent::bCachedIsNetSimulated' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, bPendingMontageRep) == 0x0007C1, "Member 'UAbilitySystemComponent::bPendingMontageRep' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, LocalAnimMontageInfo) == 0x0007C8, "Member 'UAbilitySystemComponent::LocalAnimMontageInfo' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ActiveGameplayEffects) == 0x000898, "Member 'UAbilitySystemComponent::ActiveGameplayEffects' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ActiveGameplayCues) == 0x000B90, "Member 'UAbilitySystemComponent::ActiveGameplayCues' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, MinimalReplicationGameplayCues) == 0x000CB8, "Member 'UAbilitySystemComponent::MinimalReplicationGameplayCues' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, BlockedAbilityBindings) == 0x000F08, "Member 'UAbilitySystemComponent::BlockedAbilityBindings' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, MinimalReplicationTags) == 0x001040, "Member 'UAbilitySystemComponent::MinimalReplicationTags' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, SpawnedAttributes) == 0x0010A0, "Member 'UAbilitySystemComponent::SpawnedAttributes' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ReplicatedLooseTags) == 0x0010C0, "Member 'UAbilitySystemComponent::ReplicatedLooseTags' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemComponent, ReplicatedPredictionKeyMap) == 0x001128, "Member 'UAbilitySystemComponent::ReplicatedPredictionKeyMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemDebugHUDExtension \ +static_assert(alignof(UAbilitySystemDebugHUDExtension) == 0x000008, "Wrong alignment on UAbilitySystemDebugHUDExtension"); \ +static_assert(sizeof(UAbilitySystemDebugHUDExtension) == 0x000028, "Wrong size on UAbilitySystemDebugHUDExtension"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemDebugHUDExtension_Tags \ +static_assert(alignof(UAbilitySystemDebugHUDExtension_Tags) == 0x000008, "Wrong alignment on UAbilitySystemDebugHUDExtension_Tags"); \ +static_assert(sizeof(UAbilitySystemDebugHUDExtension_Tags) == 0x000080, "Wrong size on UAbilitySystemDebugHUDExtension_Tags"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemDebugHUDExtension_Attributes \ +static_assert(alignof(UAbilitySystemDebugHUDExtension_Attributes) == 0x000008, "Wrong alignment on UAbilitySystemDebugHUDExtension_Attributes"); \ +static_assert(sizeof(UAbilitySystemDebugHUDExtension_Attributes) == 0x000080, "Wrong size on UAbilitySystemDebugHUDExtension_Attributes"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemDebugHUDExtension_BlockedAbilityTags \ +static_assert(alignof(UAbilitySystemDebugHUDExtension_BlockedAbilityTags) == 0x000008, "Wrong alignment on UAbilitySystemDebugHUDExtension_BlockedAbilityTags"); \ +static_assert(sizeof(UAbilitySystemDebugHUDExtension_BlockedAbilityTags) == 0x000080, "Wrong size on UAbilitySystemDebugHUDExtension_BlockedAbilityTags"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemGlobals \ +static_assert(alignof(UAbilitySystemGlobals) == 0x000008, "Wrong alignment on UAbilitySystemGlobals"); \ +static_assert(sizeof(UAbilitySystemGlobals) == 0x0002A8, "Wrong size on UAbilitySystemGlobals"); \ +static_assert(offsetof(UAbilitySystemGlobals, AbilitySystemGlobalsClassName) == 0x000028, "Member 'UAbilitySystemGlobals::AbilitySystemGlobalsClassName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, bUseDebugTargetFromHud) == 0x000070, "Member 'UAbilitySystemGlobals::bUseDebugTargetFromHud' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailIsDeadTag) == 0x000074, "Member 'UAbilitySystemGlobals::ActivateFailIsDeadTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailIsDeadName) == 0x00007C, "Member 'UAbilitySystemGlobals::ActivateFailIsDeadName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailCooldownTag) == 0x000084, "Member 'UAbilitySystemGlobals::ActivateFailCooldownTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailCooldownName) == 0x00008C, "Member 'UAbilitySystemGlobals::ActivateFailCooldownName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailCostTag) == 0x000094, "Member 'UAbilitySystemGlobals::ActivateFailCostTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailCostName) == 0x00009C, "Member 'UAbilitySystemGlobals::ActivateFailCostName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailTagsBlockedTag) == 0x0000A4, "Member 'UAbilitySystemGlobals::ActivateFailTagsBlockedTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailTagsBlockedName) == 0x0000AC, "Member 'UAbilitySystemGlobals::ActivateFailTagsBlockedName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailTagsMissingTag) == 0x0000B4, "Member 'UAbilitySystemGlobals::ActivateFailTagsMissingTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailTagsMissingName) == 0x0000BC, "Member 'UAbilitySystemGlobals::ActivateFailTagsMissingName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailNetworkingTag) == 0x0000C4, "Member 'UAbilitySystemGlobals::ActivateFailNetworkingTag' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ActivateFailNetworkingName) == 0x0000CC, "Member 'UAbilitySystemGlobals::ActivateFailNetworkingName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, MinimalReplicationTagCountBits) == 0x0000D4, "Member 'UAbilitySystemGlobals::MinimalReplicationTagCountBits' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, TargetDataStructCache) == 0x0000D8, "Member 'UAbilitySystemGlobals::TargetDataStructCache' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, EffectContextStructCache) == 0x0000E8, "Member 'UAbilitySystemGlobals::EffectContextStructCache' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, bAllowGameplayModEvaluationChannels) == 0x0000F8, "Member 'UAbilitySystemGlobals::bAllowGameplayModEvaluationChannels' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, DefaultGameplayModEvaluationChannel) == 0x0000F9, "Member 'UAbilitySystemGlobals::DefaultGameplayModEvaluationChannel' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GameplayModEvaluationChannelAliases) == 0x0000FC, "Member 'UAbilitySystemGlobals::GameplayModEvaluationChannelAliases' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalCurveTableName) == 0x000150, "Member 'UAbilitySystemGlobals::GlobalCurveTableName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalCurveTable) == 0x000170, "Member 'UAbilitySystemGlobals::GlobalCurveTable' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalAttributeMetaDataTableName) == 0x000178, "Member 'UAbilitySystemGlobals::GlobalAttributeMetaDataTableName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalAttributeMetaDataTable) == 0x000198, "Member 'UAbilitySystemGlobals::GlobalAttributeMetaDataTable' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalAttributeSetDefaultsTableName) == 0x0001A0, "Member 'UAbilitySystemGlobals::GlobalAttributeSetDefaultsTableName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalAttributeSetDefaultsTableNames) == 0x0001C0, "Member 'UAbilitySystemGlobals::GlobalAttributeSetDefaultsTableNames' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalAttributeDefaultsTables) == 0x0001D0, "Member 'UAbilitySystemGlobals::GlobalAttributeDefaultsTables' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalGameplayCueManagerClass) == 0x0001E0, "Member 'UAbilitySystemGlobals::GlobalGameplayCueManagerClass' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalGameplayCueManagerName) == 0x000200, "Member 'UAbilitySystemGlobals::GlobalGameplayCueManagerName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GameplayCueNotifyPaths) == 0x000220, "Member 'UAbilitySystemGlobals::GameplayCueNotifyPaths' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GameplayTagResponseTableName) == 0x000230, "Member 'UAbilitySystemGlobals::GameplayTagResponseTableName' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GameplayTagResponseTable) == 0x000250, "Member 'UAbilitySystemGlobals::GameplayTagResponseTable' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, PredictTargetGameplayEffects) == 0x000259, "Member 'UAbilitySystemGlobals::PredictTargetGameplayEffects' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, ReplicateActivationOwnedTags) == 0x00025A, "Member 'UAbilitySystemGlobals::ReplicateActivationOwnedTags' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemGlobals, GlobalGameplayCueManager) == 0x000260, "Member 'UAbilitySystemGlobals::GlobalGameplayCueManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAbilitySystemInterface \ +static_assert(alignof(IAbilitySystemInterface) == 0x000001, "Wrong alignment on IAbilitySystemInterface"); \ +static_assert(sizeof(IAbilitySystemInterface) == 0x000001, "Wrong size on IAbilitySystemInterface"); \ + +#define DUMPER7_ASSERTS_IAbilitySystemReplicationProxyInterface \ +static_assert(alignof(IAbilitySystemReplicationProxyInterface) == 0x000001, "Wrong alignment on IAbilitySystemReplicationProxyInterface"); \ +static_assert(sizeof(IAbilitySystemReplicationProxyInterface) == 0x000001, "Wrong size on IAbilitySystemReplicationProxyInterface"); \ + +#define DUMPER7_ASSERTS_UAttributeSet \ +static_assert(alignof(UAttributeSet) == 0x000008, "Wrong alignment on UAttributeSet"); \ +static_assert(sizeof(UAttributeSet) == 0x000030, "Wrong size on UAttributeSet"); \ + +#define DUMPER7_ASSERTS_UAbilitySystemTestAttributeSet \ +static_assert(alignof(UAbilitySystemTestAttributeSet) == 0x000008, "Wrong alignment on UAbilitySystemTestAttributeSet"); \ +static_assert(sizeof(UAbilitySystemTestAttributeSet) == 0x000070, "Wrong size on UAbilitySystemTestAttributeSet"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, MaxHealth) == 0x000030, "Member 'UAbilitySystemTestAttributeSet::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, Health) == 0x000034, "Member 'UAbilitySystemTestAttributeSet::Health' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, Mana) == 0x000038, "Member 'UAbilitySystemTestAttributeSet::Mana' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, MaxMana) == 0x00003C, "Member 'UAbilitySystemTestAttributeSet::MaxMana' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, Damage) == 0x000040, "Member 'UAbilitySystemTestAttributeSet::Damage' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, SpellDamage) == 0x000044, "Member 'UAbilitySystemTestAttributeSet::SpellDamage' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, PhysicalDamage) == 0x000048, "Member 'UAbilitySystemTestAttributeSet::PhysicalDamage' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, CritChance) == 0x00004C, "Member 'UAbilitySystemTestAttributeSet::CritChance' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, CritMultiplier) == 0x000050, "Member 'UAbilitySystemTestAttributeSet::CritMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, ArmorDamageReduction) == 0x000054, "Member 'UAbilitySystemTestAttributeSet::ArmorDamageReduction' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, DodgeChance) == 0x000058, "Member 'UAbilitySystemTestAttributeSet::DodgeChance' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, LifeSteal) == 0x00005C, "Member 'UAbilitySystemTestAttributeSet::LifeSteal' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, Strength) == 0x000060, "Member 'UAbilitySystemTestAttributeSet::Strength' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, StackingAttribute1) == 0x000064, "Member 'UAbilitySystemTestAttributeSet::StackingAttribute1' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, StackingAttribute2) == 0x000068, "Member 'UAbilitySystemTestAttributeSet::StackingAttribute2' has a wrong offset!"); \ +static_assert(offsetof(UAbilitySystemTestAttributeSet, NoStackAttribute) == 0x00006C, "Member 'UAbilitySystemTestAttributeSet::NoStackAttribute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAbilitySystemTestPawn \ +static_assert(alignof(AAbilitySystemTestPawn) == 0x000008, "Wrong alignment on AAbilitySystemTestPawn"); \ +static_assert(sizeof(AAbilitySystemTestPawn) == 0x000368, "Wrong size on AAbilitySystemTestPawn"); \ +static_assert(offsetof(AAbilitySystemTestPawn, AbilitySystemComponent) == 0x000360, "Member 'AAbilitySystemTestPawn::AbilitySystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_GameplayCue \ +static_assert(alignof(UAnimNotify_GameplayCue) == 0x000008, "Wrong alignment on UAnimNotify_GameplayCue"); \ +static_assert(sizeof(UAnimNotify_GameplayCue) == 0x000040, "Wrong size on UAnimNotify_GameplayCue"); \ +static_assert(offsetof(UAnimNotify_GameplayCue, GameplayCue) == 0x000038, "Member 'UAnimNotify_GameplayCue::GameplayCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_GameplayCueState \ +static_assert(alignof(UAnimNotify_GameplayCueState) == 0x000008, "Wrong alignment on UAnimNotify_GameplayCueState"); \ +static_assert(sizeof(UAnimNotify_GameplayCueState) == 0x000038, "Wrong size on UAnimNotify_GameplayCueState"); \ +static_assert(offsetof(UAnimNotify_GameplayCueState, GameplayCue) == 0x000030, "Member 'UAnimNotify_GameplayCueState::GameplayCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayAbilityBlueprint \ +static_assert(alignof(UGameplayAbilityBlueprint) == 0x000008, "Wrong alignment on UGameplayAbilityBlueprint"); \ +static_assert(sizeof(UGameplayAbilityBlueprint) == 0x0000A8, "Wrong size on UGameplayAbilityBlueprint"); \ + +#define DUMPER7_ASSERTS_GameplayCueFunctionLibrary_AddGameplayCueOnActor \ +static_assert(alignof(GameplayCueFunctionLibrary_AddGameplayCueOnActor) == 0x000008, "Wrong alignment on GameplayCueFunctionLibrary_AddGameplayCueOnActor"); \ +static_assert(sizeof(GameplayCueFunctionLibrary_AddGameplayCueOnActor) == 0x0000E8, "Wrong size on GameplayCueFunctionLibrary_AddGameplayCueOnActor"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_AddGameplayCueOnActor, Target) == 0x000000, "Member 'GameplayCueFunctionLibrary_AddGameplayCueOnActor::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_AddGameplayCueOnActor, GameplayCueTag) == 0x000008, "Member 'GameplayCueFunctionLibrary_AddGameplayCueOnActor::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_AddGameplayCueOnActor, Parameters) == 0x000010, "Member 'GameplayCueFunctionLibrary_AddGameplayCueOnActor::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor \ +static_assert(alignof(GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor) == 0x000008, "Wrong alignment on GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor"); \ +static_assert(sizeof(GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor) == 0x0000E8, "Wrong size on GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor, Target) == 0x000000, "Member 'GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor, GameplayCueTag) == 0x000008, "Member 'GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor, Parameters) == 0x000010, "Member 'GameplayCueFunctionLibrary_ExecuteGameplayCueOnActor::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult \ +static_assert(alignof(GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult) == 0x000008, "Wrong alignment on GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult"); \ +static_assert(sizeof(GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult) == 0x0001C0, "Wrong size on GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult, HitResult) == 0x000000, "Member 'GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult::HitResult' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult, ReturnValue) == 0x0000E8, "Member 'GameplayCueFunctionLibrary_MakeGameplayCueParametersFromHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueFunctionLibrary_RemoveGameplayCueOnActor \ +static_assert(alignof(GameplayCueFunctionLibrary_RemoveGameplayCueOnActor) == 0x000008, "Wrong alignment on GameplayCueFunctionLibrary_RemoveGameplayCueOnActor"); \ +static_assert(sizeof(GameplayCueFunctionLibrary_RemoveGameplayCueOnActor) == 0x0000E8, "Wrong size on GameplayCueFunctionLibrary_RemoveGameplayCueOnActor"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_RemoveGameplayCueOnActor, Target) == 0x000000, "Member 'GameplayCueFunctionLibrary_RemoveGameplayCueOnActor::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_RemoveGameplayCueOnActor, GameplayCueTag) == 0x000008, "Member 'GameplayCueFunctionLibrary_RemoveGameplayCueOnActor::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueFunctionLibrary_RemoveGameplayCueOnActor, Parameters) == 0x000010, "Member 'GameplayCueFunctionLibrary_RemoveGameplayCueOnActor::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueFunctionLibrary \ +static_assert(alignof(UGameplayCueFunctionLibrary) == 0x000008, "Wrong alignment on UGameplayCueFunctionLibrary"); \ +static_assert(sizeof(UGameplayCueFunctionLibrary) == 0x000028, "Wrong size on UGameplayCueFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_GameplayCueInterface_BlueprintCustomHandler \ +static_assert(alignof(GameplayCueInterface_BlueprintCustomHandler) == 0x000008, "Wrong alignment on GameplayCueInterface_BlueprintCustomHandler"); \ +static_assert(sizeof(GameplayCueInterface_BlueprintCustomHandler) == 0x0000E0, "Wrong size on GameplayCueInterface_BlueprintCustomHandler"); \ +static_assert(offsetof(GameplayCueInterface_BlueprintCustomHandler, EventType) == 0x000000, "Member 'GameplayCueInterface_BlueprintCustomHandler::EventType' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueInterface_BlueprintCustomHandler, Parameters) == 0x000008, "Member 'GameplayCueInterface_BlueprintCustomHandler::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGameplayCueInterface \ +static_assert(alignof(IGameplayCueInterface) == 0x000001, "Wrong alignment on IGameplayCueInterface"); \ +static_assert(sizeof(IGameplayCueInterface) == 0x000001, "Wrong size on IGameplayCueInterface"); \ + +#define DUMPER7_ASSERTS_UGameplayCueManager \ +static_assert(alignof(UGameplayCueManager) == 0x000008, "Wrong alignment on UGameplayCueManager"); \ +static_assert(sizeof(UGameplayCueManager) == 0x0002C0, "Wrong size on UGameplayCueManager"); \ +static_assert(offsetof(UGameplayCueManager, RuntimeGameplayCueObjectLibrary) == 0x000048, "Member 'UGameplayCueManager::RuntimeGameplayCueObjectLibrary' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, EditorGameplayCueObjectLibrary) == 0x000098, "Member 'UGameplayCueManager::EditorGameplayCueObjectLibrary' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, LoadedGameplayCueNotifyClasses) == 0x000260, "Member 'UGameplayCueManager::LoadedGameplayCueNotifyClasses' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, GameplayCueClassesForPreallocation) == 0x000270, "Member 'UGameplayCueManager::GameplayCueClassesForPreallocation' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, PendingExecuteCues) == 0x000280, "Member 'UGameplayCueManager::PendingExecuteCues' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, GameplayCueSendContextCount) == 0x000290, "Member 'UGameplayCueManager::GameplayCueSendContextCount' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueManager, PreallocationInfoList_Internal) == 0x000298, "Member 'UGameplayCueManager::PreallocationInfoList_Internal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_K2_HandleGameplayCue \ +static_assert(alignof(GameplayCueNotify_Actor_K2_HandleGameplayCue) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_K2_HandleGameplayCue"); \ +static_assert(sizeof(GameplayCueNotify_Actor_K2_HandleGameplayCue) == 0x0000E8, "Wrong size on GameplayCueNotify_Actor_K2_HandleGameplayCue"); \ +static_assert(offsetof(GameplayCueNotify_Actor_K2_HandleGameplayCue, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Actor_K2_HandleGameplayCue::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_K2_HandleGameplayCue, EventType) == 0x000008, "Member 'GameplayCueNotify_Actor_K2_HandleGameplayCue::EventType' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_K2_HandleGameplayCue, Parameters) == 0x000010, "Member 'GameplayCueNotify_Actor_K2_HandleGameplayCue::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_OnActive \ +static_assert(alignof(GameplayCueNotify_Actor_OnActive) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_OnActive"); \ +static_assert(sizeof(GameplayCueNotify_Actor_OnActive) == 0x0000E8, "Wrong size on GameplayCueNotify_Actor_OnActive"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnActive, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Actor_OnActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnActive, Parameters) == 0x000008, "Member 'GameplayCueNotify_Actor_OnActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnActive, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Actor_OnActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_OnExecute \ +static_assert(alignof(GameplayCueNotify_Actor_OnExecute) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_OnExecute"); \ +static_assert(sizeof(GameplayCueNotify_Actor_OnExecute) == 0x0000E8, "Wrong size on GameplayCueNotify_Actor_OnExecute"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnExecute, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Actor_OnExecute::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnExecute, Parameters) == 0x000008, "Member 'GameplayCueNotify_Actor_OnExecute::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnExecute, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Actor_OnExecute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_OnOwnerDestroyed \ +static_assert(alignof(GameplayCueNotify_Actor_OnOwnerDestroyed) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_OnOwnerDestroyed"); \ +static_assert(sizeof(GameplayCueNotify_Actor_OnOwnerDestroyed) == 0x000008, "Wrong size on GameplayCueNotify_Actor_OnOwnerDestroyed"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnOwnerDestroyed, DestroyedActor) == 0x000000, "Member 'GameplayCueNotify_Actor_OnOwnerDestroyed::DestroyedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_OnRemove \ +static_assert(alignof(GameplayCueNotify_Actor_OnRemove) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_OnRemove"); \ +static_assert(sizeof(GameplayCueNotify_Actor_OnRemove) == 0x0000E8, "Wrong size on GameplayCueNotify_Actor_OnRemove"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnRemove, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Actor_OnRemove::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnRemove, Parameters) == 0x000008, "Member 'GameplayCueNotify_Actor_OnRemove::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_OnRemove, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Actor_OnRemove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Actor_WhileActive \ +static_assert(alignof(GameplayCueNotify_Actor_WhileActive) == 0x000008, "Wrong alignment on GameplayCueNotify_Actor_WhileActive"); \ +static_assert(sizeof(GameplayCueNotify_Actor_WhileActive) == 0x0000E8, "Wrong size on GameplayCueNotify_Actor_WhileActive"); \ +static_assert(offsetof(GameplayCueNotify_Actor_WhileActive, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Actor_WhileActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_WhileActive, Parameters) == 0x000008, "Member 'GameplayCueNotify_Actor_WhileActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Actor_WhileActive, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Actor_WhileActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayCueNotify_Actor \ +static_assert(alignof(AGameplayCueNotify_Actor) == 0x000008, "Wrong alignment on AGameplayCueNotify_Actor"); \ +static_assert(sizeof(AGameplayCueNotify_Actor) == 0x000308, "Wrong size on AGameplayCueNotify_Actor"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bAutoDestroyOnRemove) == 0x000298, "Member 'AGameplayCueNotify_Actor::bAutoDestroyOnRemove' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, AutoDestroyDelay) == 0x00029C, "Member 'AGameplayCueNotify_Actor::AutoDestroyDelay' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, WarnIfTimelineIsStillRunning) == 0x0002A0, "Member 'AGameplayCueNotify_Actor::WarnIfTimelineIsStillRunning' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, WarnIfLatentActionIsStillRunning) == 0x0002A1, "Member 'AGameplayCueNotify_Actor::WarnIfLatentActionIsStillRunning' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, GameplayCueTag) == 0x0002A4, "Member 'AGameplayCueNotify_Actor::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, GameplayCueName) == 0x0002AC, "Member 'AGameplayCueNotify_Actor::GameplayCueName' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bAutoAttachToOwner) == 0x0002B4, "Member 'AGameplayCueNotify_Actor::bAutoAttachToOwner' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, IsOverride) == 0x0002B5, "Member 'AGameplayCueNotify_Actor::IsOverride' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bUniqueInstancePerInstigator) == 0x0002B6, "Member 'AGameplayCueNotify_Actor::bUniqueInstancePerInstigator' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bUniqueInstancePerSourceObject) == 0x0002B7, "Member 'AGameplayCueNotify_Actor::bUniqueInstancePerSourceObject' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bAllowMultipleOnActiveEvents) == 0x0002B8, "Member 'AGameplayCueNotify_Actor::bAllowMultipleOnActiveEvents' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, bAllowMultipleWhileActiveEvents) == 0x0002B9, "Member 'AGameplayCueNotify_Actor::bAllowMultipleWhileActiveEvents' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Actor, NumPreallocatedInstances) == 0x0002BC, "Member 'AGameplayCueNotify_Actor::NumPreallocatedInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Static_K2_HandleGameplayCue \ +static_assert(alignof(GameplayCueNotify_Static_K2_HandleGameplayCue) == 0x000008, "Wrong alignment on GameplayCueNotify_Static_K2_HandleGameplayCue"); \ +static_assert(sizeof(GameplayCueNotify_Static_K2_HandleGameplayCue) == 0x0000E8, "Wrong size on GameplayCueNotify_Static_K2_HandleGameplayCue"); \ +static_assert(offsetof(GameplayCueNotify_Static_K2_HandleGameplayCue, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Static_K2_HandleGameplayCue::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_K2_HandleGameplayCue, EventType) == 0x000008, "Member 'GameplayCueNotify_Static_K2_HandleGameplayCue::EventType' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_K2_HandleGameplayCue, Parameters) == 0x000010, "Member 'GameplayCueNotify_Static_K2_HandleGameplayCue::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Static_OnActive \ +static_assert(alignof(GameplayCueNotify_Static_OnActive) == 0x000008, "Wrong alignment on GameplayCueNotify_Static_OnActive"); \ +static_assert(sizeof(GameplayCueNotify_Static_OnActive) == 0x0000E8, "Wrong size on GameplayCueNotify_Static_OnActive"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnActive, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Static_OnActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnActive, Parameters) == 0x000008, "Member 'GameplayCueNotify_Static_OnActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnActive, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Static_OnActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Static_OnExecute \ +static_assert(alignof(GameplayCueNotify_Static_OnExecute) == 0x000008, "Wrong alignment on GameplayCueNotify_Static_OnExecute"); \ +static_assert(sizeof(GameplayCueNotify_Static_OnExecute) == 0x0000E8, "Wrong size on GameplayCueNotify_Static_OnExecute"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnExecute, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Static_OnExecute::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnExecute, Parameters) == 0x000008, "Member 'GameplayCueNotify_Static_OnExecute::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnExecute, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Static_OnExecute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Static_OnRemove \ +static_assert(alignof(GameplayCueNotify_Static_OnRemove) == 0x000008, "Wrong alignment on GameplayCueNotify_Static_OnRemove"); \ +static_assert(sizeof(GameplayCueNotify_Static_OnRemove) == 0x0000E8, "Wrong size on GameplayCueNotify_Static_OnRemove"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnRemove, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Static_OnRemove::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnRemove, Parameters) == 0x000008, "Member 'GameplayCueNotify_Static_OnRemove::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_OnRemove, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Static_OnRemove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Static_WhileActive \ +static_assert(alignof(GameplayCueNotify_Static_WhileActive) == 0x000008, "Wrong alignment on GameplayCueNotify_Static_WhileActive"); \ +static_assert(sizeof(GameplayCueNotify_Static_WhileActive) == 0x0000E8, "Wrong size on GameplayCueNotify_Static_WhileActive"); \ +static_assert(offsetof(GameplayCueNotify_Static_WhileActive, MyTarget) == 0x000000, "Member 'GameplayCueNotify_Static_WhileActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_WhileActive, Parameters) == 0x000008, "Member 'GameplayCueNotify_Static_WhileActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Static_WhileActive, ReturnValue) == 0x0000E0, "Member 'GameplayCueNotify_Static_WhileActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueNotify_Static \ +static_assert(alignof(UGameplayCueNotify_Static) == 0x000008, "Wrong alignment on UGameplayCueNotify_Static"); \ +static_assert(sizeof(UGameplayCueNotify_Static) == 0x000040, "Wrong size on UGameplayCueNotify_Static"); \ +static_assert(offsetof(UGameplayCueNotify_Static, GameplayCueTag) == 0x000028, "Member 'UGameplayCueNotify_Static::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueNotify_Static, GameplayCueName) == 0x000030, "Member 'UGameplayCueNotify_Static::GameplayCueName' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueNotify_Static, IsOverride) == 0x000038, "Member 'UGameplayCueNotify_Static::IsOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Burst_OnBurst \ +static_assert(alignof(GameplayCueNotify_Burst_OnBurst) == 0x000008, "Wrong alignment on GameplayCueNotify_Burst_OnBurst"); \ +static_assert(sizeof(GameplayCueNotify_Burst_OnBurst) == 0x000138, "Wrong size on GameplayCueNotify_Burst_OnBurst"); \ +static_assert(offsetof(GameplayCueNotify_Burst_OnBurst, Target) == 0x000000, "Member 'GameplayCueNotify_Burst_OnBurst::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Burst_OnBurst, Parameters) == 0x000008, "Member 'GameplayCueNotify_Burst_OnBurst::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Burst_OnBurst, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_Burst_OnBurst::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueNotify_Burst \ +static_assert(alignof(UGameplayCueNotify_Burst) == 0x000008, "Wrong alignment on UGameplayCueNotify_Burst"); \ +static_assert(sizeof(UGameplayCueNotify_Burst) == 0x000350, "Wrong size on UGameplayCueNotify_Burst"); \ +static_assert(offsetof(UGameplayCueNotify_Burst, DefaultSpawnCondition) == 0x000040, "Member 'UGameplayCueNotify_Burst::DefaultSpawnCondition' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueNotify_Burst, DefaultPlacementInfo) == 0x000078, "Member 'UGameplayCueNotify_Burst::DefaultPlacementInfo' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueNotify_Burst, BurstEffects) == 0x0000B8, "Member 'UGameplayCueNotify_Burst::BurstEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_BurstLatent_OnBurst \ +static_assert(alignof(GameplayCueNotify_BurstLatent_OnBurst) == 0x000008, "Wrong alignment on GameplayCueNotify_BurstLatent_OnBurst"); \ +static_assert(sizeof(GameplayCueNotify_BurstLatent_OnBurst) == 0x000138, "Wrong size on GameplayCueNotify_BurstLatent_OnBurst"); \ +static_assert(offsetof(GameplayCueNotify_BurstLatent_OnBurst, Target) == 0x000000, "Member 'GameplayCueNotify_BurstLatent_OnBurst::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_BurstLatent_OnBurst, Parameters) == 0x000008, "Member 'GameplayCueNotify_BurstLatent_OnBurst::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_BurstLatent_OnBurst, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_BurstLatent_OnBurst::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayCueNotify_BurstLatent \ +static_assert(alignof(AGameplayCueNotify_BurstLatent) == 0x000008, "Wrong alignment on AGameplayCueNotify_BurstLatent"); \ +static_assert(sizeof(AGameplayCueNotify_BurstLatent) == 0x000670, "Wrong size on AGameplayCueNotify_BurstLatent"); \ +static_assert(offsetof(AGameplayCueNotify_BurstLatent, DefaultSpawnCondition) == 0x000308, "Member 'AGameplayCueNotify_BurstLatent::DefaultSpawnCondition' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_BurstLatent, DefaultPlacementInfo) == 0x000340, "Member 'AGameplayCueNotify_BurstLatent::DefaultPlacementInfo' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_BurstLatent, BurstEffects) == 0x000380, "Member 'AGameplayCueNotify_BurstLatent::BurstEffects' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_BurstLatent, BurstSpawnResults) == 0x000618, "Member 'AGameplayCueNotify_BurstLatent::BurstSpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueNotify_HitImpact \ +static_assert(alignof(UGameplayCueNotify_HitImpact) == 0x000008, "Wrong alignment on UGameplayCueNotify_HitImpact"); \ +static_assert(sizeof(UGameplayCueNotify_HitImpact) == 0x000050, "Wrong size on UGameplayCueNotify_HitImpact"); \ +static_assert(offsetof(UGameplayCueNotify_HitImpact, Sound) == 0x000040, "Member 'UGameplayCueNotify_HitImpact::Sound' has a wrong offset!"); \ +static_assert(offsetof(UGameplayCueNotify_HitImpact, ParticleSystem) == 0x000048, "Member 'UGameplayCueNotify_HitImpact::ParticleSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Looping_OnApplication \ +static_assert(alignof(GameplayCueNotify_Looping_OnApplication) == 0x000008, "Wrong alignment on GameplayCueNotify_Looping_OnApplication"); \ +static_assert(sizeof(GameplayCueNotify_Looping_OnApplication) == 0x000138, "Wrong size on GameplayCueNotify_Looping_OnApplication"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnApplication, Target) == 0x000000, "Member 'GameplayCueNotify_Looping_OnApplication::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnApplication, Parameters) == 0x000008, "Member 'GameplayCueNotify_Looping_OnApplication::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnApplication, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_Looping_OnApplication::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Looping_OnLoopingStart \ +static_assert(alignof(GameplayCueNotify_Looping_OnLoopingStart) == 0x000008, "Wrong alignment on GameplayCueNotify_Looping_OnLoopingStart"); \ +static_assert(sizeof(GameplayCueNotify_Looping_OnLoopingStart) == 0x000138, "Wrong size on GameplayCueNotify_Looping_OnLoopingStart"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnLoopingStart, Target) == 0x000000, "Member 'GameplayCueNotify_Looping_OnLoopingStart::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnLoopingStart, Parameters) == 0x000008, "Member 'GameplayCueNotify_Looping_OnLoopingStart::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnLoopingStart, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_Looping_OnLoopingStart::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Looping_OnRecurring \ +static_assert(alignof(GameplayCueNotify_Looping_OnRecurring) == 0x000008, "Wrong alignment on GameplayCueNotify_Looping_OnRecurring"); \ +static_assert(sizeof(GameplayCueNotify_Looping_OnRecurring) == 0x000138, "Wrong size on GameplayCueNotify_Looping_OnRecurring"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRecurring, Target) == 0x000000, "Member 'GameplayCueNotify_Looping_OnRecurring::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRecurring, Parameters) == 0x000008, "Member 'GameplayCueNotify_Looping_OnRecurring::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRecurring, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_Looping_OnRecurring::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCueNotify_Looping_OnRemoval \ +static_assert(alignof(GameplayCueNotify_Looping_OnRemoval) == 0x000008, "Wrong alignment on GameplayCueNotify_Looping_OnRemoval"); \ +static_assert(sizeof(GameplayCueNotify_Looping_OnRemoval) == 0x000138, "Wrong size on GameplayCueNotify_Looping_OnRemoval"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRemoval, Target) == 0x000000, "Member 'GameplayCueNotify_Looping_OnRemoval::Target' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRemoval, Parameters) == 0x000008, "Member 'GameplayCueNotify_Looping_OnRemoval::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GameplayCueNotify_Looping_OnRemoval, SpawnResults) == 0x0000E0, "Member 'GameplayCueNotify_Looping_OnRemoval::SpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGameplayCueNotify_Looping \ +static_assert(alignof(AGameplayCueNotify_Looping) == 0x000008, "Wrong alignment on AGameplayCueNotify_Looping"); \ +static_assert(sizeof(AGameplayCueNotify_Looping) == 0x000EA0, "Wrong size on AGameplayCueNotify_Looping"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, DefaultSpawnCondition) == 0x000308, "Member 'AGameplayCueNotify_Looping::DefaultSpawnCondition' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, DefaultPlacementInfo) == 0x000340, "Member 'AGameplayCueNotify_Looping::DefaultPlacementInfo' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, ApplicationEffects) == 0x000380, "Member 'AGameplayCueNotify_Looping::ApplicationEffects' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, ApplicationSpawnResults) == 0x000618, "Member 'AGameplayCueNotify_Looping::ApplicationSpawnResults' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, LoopingEffects) == 0x000670, "Member 'AGameplayCueNotify_Looping::LoopingEffects' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, LoopingSpawnResults) == 0x000860, "Member 'AGameplayCueNotify_Looping::LoopingSpawnResults' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, RecurringEffects) == 0x0008B8, "Member 'AGameplayCueNotify_Looping::RecurringEffects' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, RecurringSpawnResults) == 0x000B50, "Member 'AGameplayCueNotify_Looping::RecurringSpawnResults' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, RemovalEffects) == 0x000BA8, "Member 'AGameplayCueNotify_Looping::RemovalEffects' has a wrong offset!"); \ +static_assert(offsetof(AGameplayCueNotify_Looping, RemovalSpawnResults) == 0x000E40, "Member 'AGameplayCueNotify_Looping::RemovalSpawnResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueSet \ +static_assert(alignof(UGameplayCueSet) == 0x000008, "Wrong alignment on UGameplayCueSet"); \ +static_assert(sizeof(UGameplayCueSet) == 0x000090, "Wrong size on UGameplayCueSet"); \ +static_assert(offsetof(UGameplayCueSet, GameplayCueData) == 0x000030, "Member 'UGameplayCueSet::GameplayCueData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCueTranslator \ +static_assert(alignof(UGameplayCueTranslator) == 0x000008, "Wrong alignment on UGameplayCueTranslator"); \ +static_assert(sizeof(UGameplayCueTranslator) == 0x000028, "Wrong size on UGameplayCueTranslator"); \ + +#define DUMPER7_ASSERTS_UGameplayCueTranslator_Test \ +static_assert(alignof(UGameplayCueTranslator_Test) == 0x000008, "Wrong alignment on UGameplayCueTranslator_Test"); \ +static_assert(sizeof(UGameplayCueTranslator_Test) == 0x000028, "Wrong size on UGameplayCueTranslator_Test"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectCalculation \ +static_assert(alignof(UGameplayEffectCalculation) == 0x000008, "Wrong alignment on UGameplayEffectCalculation"); \ +static_assert(sizeof(UGameplayEffectCalculation) == 0x000038, "Wrong size on UGameplayEffectCalculation"); \ +static_assert(offsetof(UGameplayEffectCalculation, RelevantAttributesToCapture) == 0x000028, "Member 'UGameplayEffectCalculation::RelevantAttributesToCapture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect \ +static_assert(alignof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect) == 0x000008, "Wrong alignment on GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect"); \ +static_assert(sizeof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect) == 0x0002B0, "Wrong size on GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect"); \ +static_assert(offsetof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect, GameplayEffect) == 0x000000, "Member 'GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect::GameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect, Spec) == 0x000008, "Member 'GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect::Spec' has a wrong offset!"); \ +static_assert(offsetof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect, ASC) == 0x0002A0, "Member 'GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect::ASC' has a wrong offset!"); \ +static_assert(offsetof(GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect, ReturnValue) == 0x0002A8, "Member 'GameplayEffectCustomApplicationRequirement_CanApplyGameplayEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectCustomApplicationRequirement \ +static_assert(alignof(UGameplayEffectCustomApplicationRequirement) == 0x000008, "Wrong alignment on UGameplayEffectCustomApplicationRequirement"); \ +static_assert(sizeof(UGameplayEffectCustomApplicationRequirement) == 0x000028, "Wrong size on UGameplayEffectCustomApplicationRequirement"); \ + +#define DUMPER7_ASSERTS_GameplayEffectExecutionCalculation_Execute \ +static_assert(alignof(GameplayEffectExecutionCalculation_Execute) == 0x000008, "Wrong alignment on GameplayEffectExecutionCalculation_Execute"); \ +static_assert(sizeof(GameplayEffectExecutionCalculation_Execute) == 0x000110, "Wrong size on GameplayEffectExecutionCalculation_Execute"); \ +static_assert(offsetof(GameplayEffectExecutionCalculation_Execute, ExecutionParams) == 0x000000, "Member 'GameplayEffectExecutionCalculation_Execute::ExecutionParams' has a wrong offset!"); \ +static_assert(offsetof(GameplayEffectExecutionCalculation_Execute, OutExecutionOutput) == 0x0000F8, "Member 'GameplayEffectExecutionCalculation_Execute::OutExecutionOutput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayEffectExecutionCalculation \ +static_assert(alignof(UGameplayEffectExecutionCalculation) == 0x000008, "Wrong alignment on UGameplayEffectExecutionCalculation"); \ +static_assert(sizeof(UGameplayEffectExecutionCalculation) == 0x000040, "Wrong size on UGameplayEffectExecutionCalculation"); \ +static_assert(offsetof(UGameplayEffectExecutionCalculation, bRequiresPassedInTags) == 0x000038, "Member 'UGameplayEffectExecutionCalculation::bRequiresPassedInTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_CalculateBaseMagnitude \ +static_assert(alignof(GameplayModMagnitudeCalculation_CalculateBaseMagnitude) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_CalculateBaseMagnitude"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_CalculateBaseMagnitude) == 0x0002A0, "Wrong size on GameplayModMagnitudeCalculation_CalculateBaseMagnitude"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_CalculateBaseMagnitude, Spec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_CalculateBaseMagnitude::Spec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_CalculateBaseMagnitude, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_CalculateBaseMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName) == 0x0002A8, "Wrong size on GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName, MagnitudeName) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName::MagnitudeName' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName, ReturnValue) == 0x0002A0, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag) == 0x0002A8, "Wrong size on GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag, Tag) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag, ReturnValue) == 0x0002A0, "Member 'GameplayModMagnitudeCalculation_GetSetByCallerMagnitudeByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetSourceActorTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetSourceActorTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetSourceActorTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetSourceActorTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetSourceActorTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceActorTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetSourceActorTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceActorTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetSourceActorTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetSourceAggregatedTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetSourceAggregatedTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetSourceAggregatedTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetSourceAggregatedTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetSourceAggregatedTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceAggregatedTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetSourceAggregatedTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceAggregatedTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetSourceAggregatedTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetSourceSpecTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetSourceSpecTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetSourceSpecTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetSourceSpecTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetSourceSpecTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceSpecTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetSourceSpecTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetSourceSpecTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetSourceSpecTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetTargetActorTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetTargetActorTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetTargetActorTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetTargetActorTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetTargetActorTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetActorTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetTargetActorTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetActorTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetTargetActorTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetTargetAggregatedTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetTargetAggregatedTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetTargetAggregatedTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetTargetAggregatedTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetTargetAggregatedTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetAggregatedTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetTargetAggregatedTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetAggregatedTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetTargetAggregatedTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_GetTargetSpecTags \ +static_assert(alignof(GameplayModMagnitudeCalculation_GetTargetSpecTags) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_GetTargetSpecTags"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_GetTargetSpecTags) == 0x0002B8, "Wrong size on GameplayModMagnitudeCalculation_GetTargetSpecTags"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetSpecTags, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_GetTargetSpecTags::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_GetTargetSpecTags, ReturnValue) == 0x000298, "Member 'GameplayModMagnitudeCalculation_GetTargetSpecTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude \ +static_assert(alignof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude) == 0x000008, "Wrong alignment on GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude"); \ +static_assert(sizeof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude) == 0x000318, "Wrong size on GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude, EffectSpec) == 0x000000, "Member 'GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude::EffectSpec' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude, Attribute) == 0x000298, "Member 'GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude::Attribute' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude, SourceTags) == 0x0002D0, "Member 'GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude::SourceTags' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude, TargetTags) == 0x0002F0, "Member 'GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude::TargetTags' has a wrong offset!"); \ +static_assert(offsetof(GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude, ReturnValue) == 0x000310, "Member 'GameplayModMagnitudeCalculation_K2_GetCapturedAttributeMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayModMagnitudeCalculation \ +static_assert(alignof(UGameplayModMagnitudeCalculation) == 0x000008, "Wrong alignment on UGameplayModMagnitudeCalculation"); \ +static_assert(sizeof(UGameplayModMagnitudeCalculation) == 0x000040, "Wrong size on UGameplayModMagnitudeCalculation"); \ +static_assert(offsetof(UGameplayModMagnitudeCalculation, bAllowNonNetAuthorityDependencyRegistration) == 0x000038, "Member 'UGameplayModMagnitudeCalculation::bAllowNonNetAuthorityDependencyRegistration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTagReponseTable_TagResponseEvent \ +static_assert(alignof(GameplayTagReponseTable_TagResponseEvent) == 0x000008, "Wrong alignment on GameplayTagReponseTable_TagResponseEvent"); \ +static_assert(sizeof(GameplayTagReponseTable_TagResponseEvent) == 0x000020, "Wrong size on GameplayTagReponseTable_TagResponseEvent"); \ +static_assert(offsetof(GameplayTagReponseTable_TagResponseEvent, Tag) == 0x000000, "Member 'GameplayTagReponseTable_TagResponseEvent::Tag' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagReponseTable_TagResponseEvent, NewCount) == 0x000008, "Member 'GameplayTagReponseTable_TagResponseEvent::NewCount' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagReponseTable_TagResponseEvent, ASC) == 0x000010, "Member 'GameplayTagReponseTable_TagResponseEvent::ASC' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagReponseTable_TagResponseEvent, Idx) == 0x000018, "Member 'GameplayTagReponseTable_TagResponseEvent::Idx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTagReponseTable \ +static_assert(alignof(UGameplayTagReponseTable) == 0x000008, "Wrong alignment on UGameplayTagReponseTable"); \ +static_assert(sizeof(UGameplayTagReponseTable) == 0x000230, "Wrong size on UGameplayTagReponseTable"); \ +static_assert(offsetof(UGameplayTagReponseTable, Entries) == 0x000030, "Member 'UGameplayTagReponseTable::Entries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGameplayCueTriggerSection \ +static_assert(alignof(UMovieSceneGameplayCueTriggerSection) == 0x000008, "Wrong alignment on UMovieSceneGameplayCueTriggerSection"); \ +static_assert(sizeof(UMovieSceneGameplayCueTriggerSection) == 0x000200, "Wrong size on UMovieSceneGameplayCueTriggerSection"); \ +static_assert(offsetof(UMovieSceneGameplayCueTriggerSection, Channel) == 0x000108, "Member 'UMovieSceneGameplayCueTriggerSection::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGameplayCueSection \ +static_assert(alignof(UMovieSceneGameplayCueSection) == 0x000008, "Wrong alignment on UMovieSceneGameplayCueSection"); \ +static_assert(sizeof(UMovieSceneGameplayCueSection) == 0x000198, "Wrong size on UMovieSceneGameplayCueSection"); \ +static_assert(offsetof(UMovieSceneGameplayCueSection, Cue) == 0x000108, "Member 'UMovieSceneGameplayCueSection::Cue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneGameplayCueTrack_SetSequencerTrackHandler \ +static_assert(alignof(MovieSceneGameplayCueTrack_SetSequencerTrackHandler) == 0x000004, "Wrong alignment on MovieSceneGameplayCueTrack_SetSequencerTrackHandler"); \ +static_assert(sizeof(MovieSceneGameplayCueTrack_SetSequencerTrackHandler) == 0x000010, "Wrong size on MovieSceneGameplayCueTrack_SetSequencerTrackHandler"); \ +static_assert(offsetof(MovieSceneGameplayCueTrack_SetSequencerTrackHandler, InGameplayCueTrackHandler) == 0x000000, "Member 'MovieSceneGameplayCueTrack_SetSequencerTrackHandler::InGameplayCueTrackHandler' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGameplayCueTrack \ +static_assert(alignof(UMovieSceneGameplayCueTrack) == 0x000008, "Wrong alignment on UMovieSceneGameplayCueTrack"); \ +static_assert(sizeof(UMovieSceneGameplayCueTrack) == 0x0000A8, "Wrong size on UMovieSceneGameplayCueTrack"); \ +static_assert(offsetof(UMovieSceneGameplayCueTrack, Sections) == 0x000098, "Member 'UMovieSceneGameplayCueTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITickableAttributeSetInterface \ +static_assert(alignof(ITickableAttributeSetInterface) == 0x000001, "Wrong alignment on ITickableAttributeSetInterface"); \ +static_assert(sizeof(ITickableAttributeSetInterface) == 0x000001, "Wrong size on ITickableAttributeSetInterface"); \ + +#define DUMPER7_ASSERTS_FAxis \ +static_assert(alignof(FAxis) == 0x000008, "Wrong alignment on FAxis"); \ +static_assert(sizeof(FAxis) == 0x000020, "Wrong size on FAxis"); \ +static_assert(offsetof(FAxis, Axis) == 0x000000, "Member 'FAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(FAxis, bInLocalSpace) == 0x000018, "Member 'FAxis::bInLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeChain \ +static_assert(alignof(FNodeChain) == 0x000008, "Wrong alignment on FNodeChain"); \ +static_assert(sizeof(FNodeChain) == 0x000010, "Wrong size on FNodeChain"); \ +static_assert(offsetof(FNodeChain, Nodes) == 0x000000, "Member 'FNodeChain::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeObject \ +static_assert(alignof(FNodeObject) == 0x000004, "Wrong alignment on FNodeObject"); \ +static_assert(sizeof(FNodeObject) == 0x000010, "Wrong size on FNodeObject"); \ +static_assert(offsetof(FNodeObject, Name) == 0x000000, "Member 'FNodeObject::Name' has a wrong offset!"); \ +static_assert(offsetof(FNodeObject, ParentName) == 0x000008, "Member 'FNodeObject::ParentName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeHierarchyData \ +static_assert(alignof(FNodeHierarchyData) == 0x000008, "Wrong alignment on FNodeHierarchyData"); \ +static_assert(sizeof(FNodeHierarchyData) == 0x000070, "Wrong size on FNodeHierarchyData"); \ +static_assert(offsetof(FNodeHierarchyData, Nodes) == 0x000000, "Member 'FNodeHierarchyData::Nodes' has a wrong offset!"); \ +static_assert(offsetof(FNodeHierarchyData, Transforms) == 0x000010, "Member 'FNodeHierarchyData::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FNodeHierarchyData, NodeNameToIndexMapping) == 0x000020, "Member 'FNodeHierarchyData::NodeNameToIndexMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNodeHierarchyWithUserData \ +static_assert(alignof(FNodeHierarchyWithUserData) == 0x000008, "Wrong alignment on FNodeHierarchyWithUserData"); \ +static_assert(sizeof(FNodeHierarchyWithUserData) == 0x000078, "Wrong size on FNodeHierarchyWithUserData"); \ +static_assert(offsetof(FNodeHierarchyWithUserData, Hierarchy) == 0x000008, "Member 'FNodeHierarchyWithUserData::Hierarchy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCCDIKChainLink \ +static_assert(alignof(FCCDIKChainLink) == 0x000010, "Wrong alignment on FCCDIKChainLink"); \ +static_assert(sizeof(FCCDIKChainLink) == 0x0000E0, "Wrong size on FCCDIKChainLink"); \ + +#define DUMPER7_ASSERTS_FFilterOptionPerAxis \ +static_assert(alignof(FFilterOptionPerAxis) == 0x000001, "Wrong alignment on FFilterOptionPerAxis"); \ +static_assert(sizeof(FFilterOptionPerAxis) == 0x000003, "Wrong size on FFilterOptionPerAxis"); \ +static_assert(offsetof(FFilterOptionPerAxis, bX) == 0x000000, "Member 'FFilterOptionPerAxis::bX' has a wrong offset!"); \ +static_assert(offsetof(FFilterOptionPerAxis, bY) == 0x000001, "Member 'FFilterOptionPerAxis::bY' has a wrong offset!"); \ +static_assert(offsetof(FFilterOptionPerAxis, bZ) == 0x000002, "Member 'FFilterOptionPerAxis::bZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformFilter \ +static_assert(alignof(FTransformFilter) == 0x000001, "Wrong alignment on FTransformFilter"); \ +static_assert(sizeof(FTransformFilter) == 0x000009, "Wrong size on FTransformFilter"); \ +static_assert(offsetof(FTransformFilter, TranslationFilter) == 0x000000, "Member 'FTransformFilter::TranslationFilter' has a wrong offset!"); \ +static_assert(offsetof(FTransformFilter, RotationFilter) == 0x000003, "Member 'FTransformFilter::RotationFilter' has a wrong offset!"); \ +static_assert(offsetof(FTransformFilter, ScaleFilter) == 0x000006, "Member 'FTransformFilter::ScaleFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintDescription \ +static_assert(alignof(FConstraintDescription) == 0x000001, "Wrong alignment on FConstraintDescription"); \ +static_assert(sizeof(FConstraintDescription) == 0x00000D, "Wrong size on FConstraintDescription"); \ +static_assert(offsetof(FConstraintDescription, bTranslation) == 0x000000, "Member 'FConstraintDescription::bTranslation' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, bRotation) == 0x000001, "Member 'FConstraintDescription::bRotation' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, bScale) == 0x000002, "Member 'FConstraintDescription::bScale' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, bParent) == 0x000003, "Member 'FConstraintDescription::bParent' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, TranslationAxes) == 0x000004, "Member 'FConstraintDescription::TranslationAxes' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, RotationAxes) == 0x000007, "Member 'FConstraintDescription::RotationAxes' has a wrong offset!"); \ +static_assert(offsetof(FConstraintDescription, ScaleAxes) == 0x00000A, "Member 'FConstraintDescription::ScaleAxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintOffset \ +static_assert(alignof(FConstraintOffset) == 0x000010, "Wrong alignment on FConstraintOffset"); \ +static_assert(sizeof(FConstraintOffset) == 0x0000C0, "Wrong size on FConstraintOffset"); \ +static_assert(offsetof(FConstraintOffset, Translation) == 0x000000, "Member 'FConstraintOffset::Translation' has a wrong offset!"); \ +static_assert(offsetof(FConstraintOffset, Rotation) == 0x000020, "Member 'FConstraintOffset::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FConstraintOffset, Scale) == 0x000040, "Member 'FConstraintOffset::Scale' has a wrong offset!"); \ +static_assert(offsetof(FConstraintOffset, Parent) == 0x000060, "Member 'FConstraintOffset::Parent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformConstraint \ +static_assert(alignof(FTransformConstraint) == 0x000004, "Wrong alignment on FTransformConstraint"); \ +static_assert(sizeof(FTransformConstraint) == 0x000028, "Wrong size on FTransformConstraint"); \ +static_assert(offsetof(FTransformConstraint, Operator) == 0x000000, "Member 'FTransformConstraint::Operator' has a wrong offset!"); \ +static_assert(offsetof(FTransformConstraint, SourceNode) == 0x000010, "Member 'FTransformConstraint::SourceNode' has a wrong offset!"); \ +static_assert(offsetof(FTransformConstraint, TargetNode) == 0x000018, "Member 'FTransformConstraint::TargetNode' has a wrong offset!"); \ +static_assert(offsetof(FTransformConstraint, Weight) == 0x000020, "Member 'FTransformConstraint::Weight' has a wrong offset!"); \ +static_assert(offsetof(FTransformConstraint, bMaintainOffset) == 0x000024, "Member 'FTransformConstraint::bMaintainOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintDescriptionEx \ +static_assert(alignof(FConstraintDescriptionEx) == 0x000008, "Wrong alignment on FConstraintDescriptionEx"); \ +static_assert(sizeof(FConstraintDescriptionEx) == 0x000010, "Wrong size on FConstraintDescriptionEx"); \ +static_assert(offsetof(FConstraintDescriptionEx, AxesFilterOption) == 0x000008, "Member 'FConstraintDescriptionEx::AxesFilterOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformConstraintDescription \ +static_assert(alignof(FTransformConstraintDescription) == 0x000008, "Wrong alignment on FTransformConstraintDescription"); \ +static_assert(sizeof(FTransformConstraintDescription) == 0x000018, "Wrong size on FTransformConstraintDescription"); \ +static_assert(offsetof(FTransformConstraintDescription, TransformType) == 0x000010, "Member 'FTransformConstraintDescription::TransformType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAimConstraintDescription \ +static_assert(alignof(FAimConstraintDescription) == 0x000008, "Wrong alignment on FAimConstraintDescription"); \ +static_assert(sizeof(FAimConstraintDescription) == 0x000070, "Wrong size on FAimConstraintDescription"); \ +static_assert(offsetof(FAimConstraintDescription, LookAt_Axis) == 0x000010, "Member 'FAimConstraintDescription::LookAt_Axis' has a wrong offset!"); \ +static_assert(offsetof(FAimConstraintDescription, LookUp_Axis) == 0x000030, "Member 'FAimConstraintDescription::LookUp_Axis' has a wrong offset!"); \ +static_assert(offsetof(FAimConstraintDescription, bUseLookUp) == 0x000050, "Member 'FAimConstraintDescription::bUseLookUp' has a wrong offset!"); \ +static_assert(offsetof(FAimConstraintDescription, LookUpTarget) == 0x000058, "Member 'FAimConstraintDescription::LookUpTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintDescriptor \ +static_assert(alignof(FConstraintDescriptor) == 0x000008, "Wrong alignment on FConstraintDescriptor"); \ +static_assert(sizeof(FConstraintDescriptor) == 0x000010, "Wrong size on FConstraintDescriptor"); \ +static_assert(offsetof(FConstraintDescriptor, Type) == 0x000000, "Member 'FConstraintDescriptor::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintData \ +static_assert(alignof(FConstraintData) == 0x000010, "Wrong alignment on FConstraintData"); \ +static_assert(sizeof(FConstraintData) == 0x0000E0, "Wrong size on FConstraintData"); \ +static_assert(offsetof(FConstraintData, Constraint) == 0x000000, "Member 'FConstraintData::Constraint' has a wrong offset!"); \ +static_assert(offsetof(FConstraintData, Weight) == 0x000010, "Member 'FConstraintData::Weight' has a wrong offset!"); \ +static_assert(offsetof(FConstraintData, bMaintainOffset) == 0x000014, "Member 'FConstraintData::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FConstraintData, Offset) == 0x000020, "Member 'FConstraintData::Offset' has a wrong offset!"); \ +static_assert(offsetof(FConstraintData, CurrentTransform) == 0x000080, "Member 'FConstraintData::CurrentTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEulerTransform \ +static_assert(alignof(FEulerTransform) == 0x000008, "Wrong alignment on FEulerTransform"); \ +static_assert(sizeof(FEulerTransform) == 0x000048, "Wrong size on FEulerTransform"); \ +static_assert(offsetof(FEulerTransform, Location) == 0x000000, "Member 'FEulerTransform::Location' has a wrong offset!"); \ +static_assert(offsetof(FEulerTransform, Rotation) == 0x000018, "Member 'FEulerTransform::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FEulerTransform, Scale) == 0x000030, "Member 'FEulerTransform::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFABRIKChainLink \ +static_assert(alignof(FFABRIKChainLink) == 0x000008, "Wrong alignment on FFABRIKChainLink"); \ +static_assert(sizeof(FFABRIKChainLink) == 0x000050, "Wrong size on FFABRIKChainLink"); \ + +#define DUMPER7_ASSERTS_FTransformNoScale \ +static_assert(alignof(FTransformNoScale) == 0x000010, "Wrong alignment on FTransformNoScale"); \ +static_assert(sizeof(FTransformNoScale) == 0x000040, "Wrong size on FTransformNoScale"); \ +static_assert(offsetof(FTransformNoScale, Location) == 0x000000, "Member 'FTransformNoScale::Location' has a wrong offset!"); \ +static_assert(offsetof(FTransformNoScale, Rotation) == 0x000020, "Member 'FTransformNoScale::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationDataSourceRegistry \ +static_assert(alignof(UAnimationDataSourceRegistry) == 0x000008, "Wrong alignment on UAnimationDataSourceRegistry"); \ +static_assert(sizeof(UAnimationDataSourceRegistry) == 0x000078, "Wrong size on UAnimationDataSourceRegistry"); \ +static_assert(offsetof(UAnimationDataSourceRegistry, DataSources) == 0x000028, "Member 'UAnimationDataSourceRegistry::DataSources' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPP_ProEscape_Basement_Hallway_01_C \ +static_assert(alignof(ABPP_ProEscape_Basement_Hallway_01_C) == 0x000008, "Wrong alignment on ABPP_ProEscape_Basement_Hallway_01_C"); \ +static_assert(sizeof(ABPP_ProEscape_Basement_Hallway_01_C) == 0x000680, "Wrong size on ABPP_ProEscape_Basement_Hallway_01_C"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh104) == 0x000338, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh104' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh103) == 0x000340, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh103' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh102) == 0x000348, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh102' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh101) == 0x000350, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh101' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh100) == 0x000358, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh100' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh99) == 0x000360, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh99' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh98) == 0x000368, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh98' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh97) == 0x000370, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh97' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh96) == 0x000378, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh96' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh95) == 0x000380, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh95' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh94) == 0x000388, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh94' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh93) == 0x000390, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh93' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh92) == 0x000398, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh92' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh91) == 0x0003A0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh91' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh90) == 0x0003A8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh90' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh89) == 0x0003B0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh89' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh88) == 0x0003B8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh88' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh87) == 0x0003C0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh87' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh86) == 0x0003C8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh86' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh85) == 0x0003D0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh85' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh84) == 0x0003D8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh84' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh83) == 0x0003E0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh83' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh82) == 0x0003E8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh82' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh81) == 0x0003F0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh81' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh80) == 0x0003F8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh80' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh79) == 0x000400, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh79' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh78) == 0x000408, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh78' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh77) == 0x000410, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh77' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh76) == 0x000418, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh76' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh75) == 0x000420, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh75' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh74) == 0x000428, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh74' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh73) == 0x000430, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh73' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh72) == 0x000438, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh72' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh71) == 0x000440, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh71' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh70) == 0x000448, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh70' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh69) == 0x000450, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh69' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh68) == 0x000458, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh68' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh67) == 0x000460, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh67' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh66) == 0x000468, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh66' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh65) == 0x000470, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh65' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh64) == 0x000478, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh64' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh63) == 0x000480, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh63' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh62) == 0x000488, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh62' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh61) == 0x000490, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh61' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh60) == 0x000498, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh60' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh59) == 0x0004A0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh59' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh58) == 0x0004A8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh58' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh57) == 0x0004B0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh57' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh56) == 0x0004B8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh56' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh55) == 0x0004C0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh55' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh54) == 0x0004C8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh54' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh53) == 0x0004D0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh53' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh52) == 0x0004D8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh52' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh51) == 0x0004E0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh51' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh50) == 0x0004E8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh50' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh49) == 0x0004F0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh49' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh48) == 0x0004F8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh48' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh47) == 0x000500, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh47' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh46) == 0x000508, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh46' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh45) == 0x000510, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh45' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh44) == 0x000518, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh44' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh43) == 0x000520, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh43' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh42) == 0x000528, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh42' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh41) == 0x000530, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh41' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh40) == 0x000538, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh40' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh39) == 0x000540, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh39' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh38) == 0x000548, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh38' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh37) == 0x000550, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh37' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh36) == 0x000558, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh36' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh35) == 0x000560, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh35' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh34) == 0x000568, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh34' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh33) == 0x000570, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh33' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh32) == 0x000578, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh32' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh31) == 0x000580, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh31' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh30) == 0x000588, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh30' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh29) == 0x000590, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh29' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh28) == 0x000598, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh28' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh27) == 0x0005A0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh27' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh26) == 0x0005A8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh26' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh25) == 0x0005B0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh25' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh24) == 0x0005B8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh24' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh23) == 0x0005C0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh23' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh22) == 0x0005C8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh22' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh21) == 0x0005D0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh21' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh20) == 0x0005D8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh20' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh19) == 0x0005E0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh19' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh18) == 0x0005E8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh18' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh17) == 0x0005F0, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh17' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh16) == 0x0005F8, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh16' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh15) == 0x000600, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh15' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh14) == 0x000608, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh14' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh13) == 0x000610, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh13' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh12) == 0x000618, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh12' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh11) == 0x000620, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh11' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh10) == 0x000628, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh10' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh9) == 0x000630, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh9' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh8) == 0x000638, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh8' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh7) == 0x000640, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh7' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh6) == 0x000648, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh6' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh5) == 0x000650, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh5' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh4) == 0x000658, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh4' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh3) == 0x000660, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh3' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh2) == 0x000668, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh2' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh1) == 0x000670, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh1' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hallway_01_C, InstancedStaticMesh) == 0x000678, "Member 'ABPP_ProEscape_Basement_Hallway_01_C::InstancedStaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPC_lightutility_torch_03_apartment_01_C \ +static_assert(alignof(ABPC_lightutility_torch_03_apartment_01_C) == 0x000008, "Wrong alignment on ABPC_lightutility_torch_03_apartment_01_C"); \ +static_assert(sizeof(ABPC_lightutility_torch_03_apartment_01_C) == 0x0007C0, "Wrong size on ABPC_lightutility_torch_03_apartment_01_C"); \ +static_assert(offsetof(ABPC_lightutility_torch_03_apartment_01_C, SpotLight___Falloff) == 0x0007B8, "Member 'ABPC_lightutility_torch_03_apartment_01_C::SpotLight___Falloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKey \ +static_assert(alignof(FKey) == 0x000008, "Wrong alignment on FKey"); \ +static_assert(sizeof(FKey) == 0x000018, "Wrong size on FKey"); \ +static_assert(offsetof(FKey, KeyName) == 0x000000, "Member 'FKey::KeyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputCoreTypes \ +static_assert(alignof(UInputCoreTypes) == 0x000008, "Wrong alignment on UInputCoreTypes"); \ +static_assert(sizeof(UInputCoreTypes) == 0x000028, "Wrong size on UInputCoreTypes"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshReadLOD \ +static_assert(alignof(FGeometryScriptMeshReadLOD) == 0x000004, "Wrong alignment on FGeometryScriptMeshReadLOD"); \ +static_assert(sizeof(FGeometryScriptMeshReadLOD) == 0x000008, "Wrong size on FGeometryScriptMeshReadLOD"); \ +static_assert(offsetof(FGeometryScriptMeshReadLOD, LODType) == 0x000000, "Member 'FGeometryScriptMeshReadLOD::LODType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshReadLOD, LODIndex) == 0x000004, "Member 'FGeometryScriptMeshReadLOD::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshWriteLOD \ +static_assert(alignof(FGeometryScriptMeshWriteLOD) == 0x000004, "Wrong alignment on FGeometryScriptMeshWriteLOD"); \ +static_assert(sizeof(FGeometryScriptMeshWriteLOD) == 0x000008, "Wrong size on FGeometryScriptMeshWriteLOD"); \ +static_assert(offsetof(FGeometryScriptMeshWriteLOD, bWriteHiResSource) == 0x000000, "Member 'FGeometryScriptMeshWriteLOD::bWriteHiResSource' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshWriteLOD, LODIndex) == 0x000004, "Member 'FGeometryScriptMeshWriteLOD::LODIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTriangle \ +static_assert(alignof(FGeometryScriptTriangle) == 0x000008, "Wrong alignment on FGeometryScriptTriangle"); \ +static_assert(sizeof(FGeometryScriptTriangle) == 0x000048, "Wrong size on FGeometryScriptTriangle"); \ +static_assert(offsetof(FGeometryScriptTriangle, Vector0) == 0x000000, "Member 'FGeometryScriptTriangle::Vector0' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTriangle, Vector1) == 0x000018, "Member 'FGeometryScriptTriangle::Vector1' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTriangle, Vector2) == 0x000030, "Member 'FGeometryScriptTriangle::Vector2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTrianglePoint \ +static_assert(alignof(FGeometryScriptTrianglePoint) == 0x000008, "Wrong alignment on FGeometryScriptTrianglePoint"); \ +static_assert(sizeof(FGeometryScriptTrianglePoint) == 0x000038, "Wrong size on FGeometryScriptTrianglePoint"); \ +static_assert(offsetof(FGeometryScriptTrianglePoint, bValid) == 0x000000, "Member 'FGeometryScriptTrianglePoint::bValid' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTrianglePoint, TriangleID) == 0x000004, "Member 'FGeometryScriptTrianglePoint::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTrianglePoint, Position) == 0x000008, "Member 'FGeometryScriptTrianglePoint::Position' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTrianglePoint, BaryCoords) == 0x000020, "Member 'FGeometryScriptTrianglePoint::BaryCoords' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptUVTriangle \ +static_assert(alignof(FGeometryScriptUVTriangle) == 0x000008, "Wrong alignment on FGeometryScriptUVTriangle"); \ +static_assert(sizeof(FGeometryScriptUVTriangle) == 0x000030, "Wrong size on FGeometryScriptUVTriangle"); \ +static_assert(offsetof(FGeometryScriptUVTriangle, UV0) == 0x000000, "Member 'FGeometryScriptUVTriangle::UV0' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptUVTriangle, UV1) == 0x000010, "Member 'FGeometryScriptUVTriangle::UV1' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptUVTriangle, UV2) == 0x000020, "Member 'FGeometryScriptUVTriangle::UV2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScript3DGridParameters \ +static_assert(alignof(FGeometryScript3DGridParameters) == 0x000004, "Wrong alignment on FGeometryScript3DGridParameters"); \ +static_assert(sizeof(FGeometryScript3DGridParameters) == 0x00000C, "Wrong size on FGeometryScript3DGridParameters"); \ +static_assert(offsetof(FGeometryScript3DGridParameters, SizeMethod) == 0x000000, "Member 'FGeometryScript3DGridParameters::SizeMethod' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScript3DGridParameters, GridCellSize) == 0x000004, "Member 'FGeometryScript3DGridParameters::GridCellSize' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScript3DGridParameters, GridResolution) == 0x000008, "Member 'FGeometryScript3DGridParameters::GridResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSolidifyOptions \ +static_assert(alignof(FGeometryScriptSolidifyOptions) == 0x000008, "Wrong alignment on FGeometryScriptSolidifyOptions"); \ +static_assert(sizeof(FGeometryScriptSolidifyOptions) == 0x000028, "Wrong size on FGeometryScriptSolidifyOptions"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, GridParameters) == 0x000000, "Member 'FGeometryScriptSolidifyOptions::GridParameters' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, WindingThreshold) == 0x00000C, "Member 'FGeometryScriptSolidifyOptions::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, bSolidAtBoundaries) == 0x000010, "Member 'FGeometryScriptSolidifyOptions::bSolidAtBoundaries' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, ExtendBounds) == 0x000014, "Member 'FGeometryScriptSolidifyOptions::ExtendBounds' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, SurfaceSearchSteps) == 0x000018, "Member 'FGeometryScriptSolidifyOptions::SurfaceSearchSteps' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, bThickenShells) == 0x00001C, "Member 'FGeometryScriptSolidifyOptions::bThickenShells' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSolidifyOptions, ShellThickness) == 0x000020, "Member 'FGeometryScriptSolidifyOptions::ShellThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptColorFlags \ +static_assert(alignof(FGeometryScriptColorFlags) == 0x000001, "Wrong alignment on FGeometryScriptColorFlags"); \ +static_assert(sizeof(FGeometryScriptColorFlags) == 0x000004, "Wrong size on FGeometryScriptColorFlags"); \ +static_assert(offsetof(FGeometryScriptColorFlags, bRed) == 0x000000, "Member 'FGeometryScriptColorFlags::bRed' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptColorFlags, bGreen) == 0x000001, "Member 'FGeometryScriptColorFlags::bGreen' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptColorFlags, bBlue) == 0x000002, "Member 'FGeometryScriptColorFlags::bBlue' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptColorFlags, bAlpha) == 0x000003, "Member 'FGeometryScriptColorFlags::bAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptGroupLayer \ +static_assert(alignof(FGeometryScriptGroupLayer) == 0x000004, "Wrong alignment on FGeometryScriptGroupLayer"); \ +static_assert(sizeof(FGeometryScriptGroupLayer) == 0x000008, "Wrong size on FGeometryScriptGroupLayer"); \ +static_assert(offsetof(FGeometryScriptGroupLayer, bDefaultLayer) == 0x000000, "Member 'FGeometryScriptGroupLayer::bDefaultLayer' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptGroupLayer, ExtendedLayerIndex) == 0x000004, "Member 'FGeometryScriptGroupLayer::ExtendedLayerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptIndexList \ +static_assert(alignof(FGeometryScriptIndexList) == 0x000008, "Wrong alignment on FGeometryScriptIndexList"); \ +static_assert(sizeof(FGeometryScriptIndexList) == 0x000018, "Wrong size on FGeometryScriptIndexList"); \ +static_assert(offsetof(FGeometryScriptIndexList, IndexType) == 0x000000, "Member 'FGeometryScriptIndexList::IndexType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTriangleList \ +static_assert(alignof(FGeometryScriptTriangleList) == 0x000008, "Wrong alignment on FGeometryScriptTriangleList"); \ +static_assert(sizeof(FGeometryScriptTriangleList) == 0x000010, "Wrong size on FGeometryScriptTriangleList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptScalarList \ +static_assert(alignof(FGeometryScriptScalarList) == 0x000008, "Wrong alignment on FGeometryScriptScalarList"); \ +static_assert(sizeof(FGeometryScriptScalarList) == 0x000010, "Wrong size on FGeometryScriptScalarList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptVectorList \ +static_assert(alignof(FGeometryScriptVectorList) == 0x000008, "Wrong alignment on FGeometryScriptVectorList"); \ +static_assert(sizeof(FGeometryScriptVectorList) == 0x000010, "Wrong size on FGeometryScriptVectorList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptUVList \ +static_assert(alignof(FGeometryScriptUVList) == 0x000008, "Wrong alignment on FGeometryScriptUVList"); \ +static_assert(sizeof(FGeometryScriptUVList) == 0x000010, "Wrong size on FGeometryScriptUVList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptColorList \ +static_assert(alignof(FGeometryScriptColorList) == 0x000008, "Wrong alignment on FGeometryScriptColorList"); \ +static_assert(sizeof(FGeometryScriptColorList) == 0x000010, "Wrong size on FGeometryScriptColorList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRepackUVsOptions \ +static_assert(alignof(FGeometryScriptRepackUVsOptions) == 0x000004, "Wrong alignment on FGeometryScriptRepackUVsOptions"); \ +static_assert(sizeof(FGeometryScriptRepackUVsOptions) == 0x000008, "Wrong size on FGeometryScriptRepackUVsOptions"); \ +static_assert(offsetof(FGeometryScriptRepackUVsOptions, TargetImageWidth) == 0x000000, "Member 'FGeometryScriptRepackUVsOptions::TargetImageWidth' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRepackUVsOptions, bOptimizeIslandRotation) == 0x000004, "Member 'FGeometryScriptRepackUVsOptions::bOptimizeIslandRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPolyPath \ +static_assert(alignof(FGeometryScriptPolyPath) == 0x000008, "Wrong alignment on FGeometryScriptPolyPath"); \ +static_assert(sizeof(FGeometryScriptPolyPath) == 0x000018, "Wrong size on FGeometryScriptPolyPath"); \ +static_assert(offsetof(FGeometryScriptPolyPath, bClosedLoop) == 0x000010, "Member 'FGeometryScriptPolyPath::bClosedLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSimplePolygon \ +static_assert(alignof(FGeometryScriptSimplePolygon) == 0x000008, "Wrong alignment on FGeometryScriptSimplePolygon"); \ +static_assert(sizeof(FGeometryScriptSimplePolygon) == 0x000010, "Wrong size on FGeometryScriptSimplePolygon"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptGeneralPolygonList \ +static_assert(alignof(FGeometryScriptGeneralPolygonList) == 0x000008, "Wrong alignment on FGeometryScriptGeneralPolygonList"); \ +static_assert(sizeof(FGeometryScriptGeneralPolygonList) == 0x000010, "Wrong size on FGeometryScriptGeneralPolygonList"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptDynamicMeshBVH \ +static_assert(alignof(FGeometryScriptDynamicMeshBVH) == 0x000008, "Wrong alignment on FGeometryScriptDynamicMeshBVH"); \ +static_assert(sizeof(FGeometryScriptDynamicMeshBVH) == 0x000020, "Wrong size on FGeometryScriptDynamicMeshBVH"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptDebugMessage \ +static_assert(alignof(FGeometryScriptDebugMessage) == 0x000008, "Wrong alignment on FGeometryScriptDebugMessage"); \ +static_assert(sizeof(FGeometryScriptDebugMessage) == 0x000020, "Wrong size on FGeometryScriptDebugMessage"); \ +static_assert(offsetof(FGeometryScriptDebugMessage, MessageType) == 0x000000, "Member 'FGeometryScriptDebugMessage::MessageType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDebugMessage, ErrorType) == 0x000001, "Member 'FGeometryScriptDebugMessage::ErrorType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDebugMessage, Message) == 0x000008, "Member 'FGeometryScriptDebugMessage::Message' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptCollisionFromMeshOptions \ +static_assert(alignof(FGeometryScriptCollisionFromMeshOptions) == 0x000004, "Wrong alignment on FGeometryScriptCollisionFromMeshOptions"); \ +static_assert(sizeof(FGeometryScriptCollisionFromMeshOptions) == 0x000030, "Wrong size on FGeometryScriptCollisionFromMeshOptions"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bEmitTransaction) == 0x000000, "Member 'FGeometryScriptCollisionFromMeshOptions::bEmitTransaction' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, Method) == 0x000001, "Member 'FGeometryScriptCollisionFromMeshOptions::Method' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bAutoDetectSpheres) == 0x000002, "Member 'FGeometryScriptCollisionFromMeshOptions::bAutoDetectSpheres' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bAutoDetectBoxes) == 0x000003, "Member 'FGeometryScriptCollisionFromMeshOptions::bAutoDetectBoxes' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bAutoDetectCapsules) == 0x000004, "Member 'FGeometryScriptCollisionFromMeshOptions::bAutoDetectCapsules' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, MinThickness) == 0x000008, "Member 'FGeometryScriptCollisionFromMeshOptions::MinThickness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bSimplifyHulls) == 0x00000C, "Member 'FGeometryScriptCollisionFromMeshOptions::bSimplifyHulls' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, ConvexHullTargetFaceCount) == 0x000010, "Member 'FGeometryScriptCollisionFromMeshOptions::ConvexHullTargetFaceCount' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, MaxConvexHullsPerMesh) == 0x000014, "Member 'FGeometryScriptCollisionFromMeshOptions::MaxConvexHullsPerMesh' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, ConvexDecompositionSearchFactor) == 0x000018, "Member 'FGeometryScriptCollisionFromMeshOptions::ConvexDecompositionSearchFactor' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, ConvexDecompositionErrorTolerance) == 0x00001C, "Member 'FGeometryScriptCollisionFromMeshOptions::ConvexDecompositionErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, ConvexDecompositionMinPartThickness) == 0x000020, "Member 'FGeometryScriptCollisionFromMeshOptions::ConvexDecompositionMinPartThickness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, SweptHullSimplifyTolerance) == 0x000024, "Member 'FGeometryScriptCollisionFromMeshOptions::SweptHullSimplifyTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, SweptHullAxis) == 0x000028, "Member 'FGeometryScriptCollisionFromMeshOptions::SweptHullAxis' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, bRemoveFullyContainedShapes) == 0x000029, "Member 'FGeometryScriptCollisionFromMeshOptions::bRemoveFullyContainedShapes' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCollisionFromMeshOptions, MaxShapeCount) == 0x00002C, "Member 'FGeometryScriptCollisionFromMeshOptions::MaxShapeCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSetSimpleCollisionOptions \ +static_assert(alignof(FGeometryScriptSetSimpleCollisionOptions) == 0x000001, "Wrong alignment on FGeometryScriptSetSimpleCollisionOptions"); \ +static_assert(sizeof(FGeometryScriptSetSimpleCollisionOptions) == 0x000001, "Wrong size on FGeometryScriptSetSimpleCollisionOptions"); \ +static_assert(offsetof(FGeometryScriptSetSimpleCollisionOptions, bEmitTransaction) == 0x000000, "Member 'FGeometryScriptSetSimpleCollisionOptions::bEmitTransaction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptConvexHullOptions \ +static_assert(alignof(FGeometryScriptConvexHullOptions) == 0x000004, "Wrong alignment on FGeometryScriptConvexHullOptions"); \ +static_assert(sizeof(FGeometryScriptConvexHullOptions) == 0x00000C, "Wrong size on FGeometryScriptConvexHullOptions"); \ +static_assert(offsetof(FGeometryScriptConvexHullOptions, bPrefilterVertices) == 0x000000, "Member 'FGeometryScriptConvexHullOptions::bPrefilterVertices' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexHullOptions, PrefilterGridResolution) == 0x000004, "Member 'FGeometryScriptConvexHullOptions::PrefilterGridResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexHullOptions, SimplifyToFaceCount) == 0x000008, "Member 'FGeometryScriptConvexHullOptions::SimplifyToFaceCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSweptHullOptions \ +static_assert(alignof(FGeometryScriptSweptHullOptions) == 0x000004, "Wrong alignment on FGeometryScriptSweptHullOptions"); \ +static_assert(sizeof(FGeometryScriptSweptHullOptions) == 0x000018, "Wrong size on FGeometryScriptSweptHullOptions"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, bPrefilterVertices) == 0x000000, "Member 'FGeometryScriptSweptHullOptions::bPrefilterVertices' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, PrefilterGridResolution) == 0x000004, "Member 'FGeometryScriptSweptHullOptions::PrefilterGridResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, MinThickness) == 0x000008, "Member 'FGeometryScriptSweptHullOptions::MinThickness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, bSimplify) == 0x00000C, "Member 'FGeometryScriptSweptHullOptions::bSimplify' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, MinEdgeLength) == 0x000010, "Member 'FGeometryScriptSweptHullOptions::MinEdgeLength' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSweptHullOptions, SimplifyTolerance) == 0x000014, "Member 'FGeometryScriptSweptHullOptions::SimplifyTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptConvexDecompositionOptions \ +static_assert(alignof(FGeometryScriptConvexDecompositionOptions) == 0x000008, "Wrong alignment on FGeometryScriptConvexDecompositionOptions"); \ +static_assert(sizeof(FGeometryScriptConvexDecompositionOptions) == 0x000028, "Wrong size on FGeometryScriptConvexDecompositionOptions"); \ +static_assert(offsetof(FGeometryScriptConvexDecompositionOptions, NumHulls) == 0x000000, "Member 'FGeometryScriptConvexDecompositionOptions::NumHulls' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexDecompositionOptions, SearchFactor) == 0x000008, "Member 'FGeometryScriptConvexDecompositionOptions::SearchFactor' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexDecompositionOptions, ErrorTolerance) == 0x000010, "Member 'FGeometryScriptConvexDecompositionOptions::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexDecompositionOptions, MinPartThickness) == 0x000018, "Member 'FGeometryScriptConvexDecompositionOptions::MinPartThickness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConvexDecompositionOptions, SimplifyToFaceCount) == 0x000020, "Member 'FGeometryScriptConvexDecompositionOptions::SimplifyToFaceCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPNTessellateOptions \ +static_assert(alignof(FGeometryScriptPNTessellateOptions) == 0x000001, "Wrong alignment on FGeometryScriptPNTessellateOptions"); \ +static_assert(sizeof(FGeometryScriptPNTessellateOptions) == 0x000001, "Wrong size on FGeometryScriptPNTessellateOptions"); \ +static_assert(offsetof(FGeometryScriptPNTessellateOptions, bRecomputeNormals) == 0x000000, "Member 'FGeometryScriptPNTessellateOptions::bRecomputeNormals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshSelection \ +static_assert(alignof(FGeometryScriptMeshSelection) == 0x000008, "Wrong alignment on FGeometryScriptMeshSelection"); \ +static_assert(sizeof(FGeometryScriptMeshSelection) == 0x000010, "Wrong size on FGeometryScriptMeshSelection"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptCopyMeshFromAssetOptions \ +static_assert(alignof(FGeometryScriptCopyMeshFromAssetOptions) == 0x000001, "Wrong alignment on FGeometryScriptCopyMeshFromAssetOptions"); \ +static_assert(sizeof(FGeometryScriptCopyMeshFromAssetOptions) == 0x000003, "Wrong size on FGeometryScriptCopyMeshFromAssetOptions"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromAssetOptions, bApplyBuildSettings) == 0x000000, "Member 'FGeometryScriptCopyMeshFromAssetOptions::bApplyBuildSettings' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromAssetOptions, bRequestTangents) == 0x000001, "Member 'FGeometryScriptCopyMeshFromAssetOptions::bRequestTangents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromAssetOptions, bIgnoreRemoveDegenerates) == 0x000002, "Member 'FGeometryScriptCopyMeshFromAssetOptions::bIgnoreRemoveDegenerates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptNaniteOptions \ +static_assert(alignof(FGeometryScriptNaniteOptions) == 0x000004, "Wrong alignment on FGeometryScriptNaniteOptions"); \ +static_assert(sizeof(FGeometryScriptNaniteOptions) == 0x00000C, "Wrong size on FGeometryScriptNaniteOptions"); \ +static_assert(offsetof(FGeometryScriptNaniteOptions, bEnabled) == 0x000000, "Member 'FGeometryScriptNaniteOptions::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNaniteOptions, FallbackPercentTriangles) == 0x000004, "Member 'FGeometryScriptNaniteOptions::FallbackPercentTriangles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNaniteOptions, FallbackRelativeError) == 0x000008, "Member 'FGeometryScriptNaniteOptions::FallbackRelativeError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptCopyMeshToAssetOptions \ +static_assert(alignof(FGeometryScriptCopyMeshToAssetOptions) == 0x000008, "Wrong alignment on FGeometryScriptCopyMeshToAssetOptions"); \ +static_assert(sizeof(FGeometryScriptCopyMeshToAssetOptions) == 0x000080, "Wrong size on FGeometryScriptCopyMeshToAssetOptions"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bEnableRecomputeNormals) == 0x000000, "Member 'FGeometryScriptCopyMeshToAssetOptions::bEnableRecomputeNormals' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bEnableRecomputeTangents) == 0x000001, "Member 'FGeometryScriptCopyMeshToAssetOptions::bEnableRecomputeTangents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bEnableRemoveDegenerates) == 0x000002, "Member 'FGeometryScriptCopyMeshToAssetOptions::bEnableRemoveDegenerates' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bReplaceMaterials) == 0x000003, "Member 'FGeometryScriptCopyMeshToAssetOptions::bReplaceMaterials' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, NewMaterials) == 0x000008, "Member 'FGeometryScriptCopyMeshToAssetOptions::NewMaterials' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, NewMaterialSlotNames) == 0x000018, "Member 'FGeometryScriptCopyMeshToAssetOptions::NewMaterialSlotNames' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bApplyNaniteSettings) == 0x000028, "Member 'FGeometryScriptCopyMeshToAssetOptions::bApplyNaniteSettings' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, NaniteSettings) == 0x00002C, "Member 'FGeometryScriptCopyMeshToAssetOptions::NaniteSettings' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, NewNaniteSettings) == 0x000038, "Member 'FGeometryScriptCopyMeshToAssetOptions::NewNaniteSettings' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bEmitTransaction) == 0x000078, "Member 'FGeometryScriptCopyMeshToAssetOptions::bEmitTransaction' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshToAssetOptions, bDeferMeshPostEditChange) == 0x000079, "Member 'FGeometryScriptCopyMeshToAssetOptions::bDeferMeshPostEditChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeTypeOptions \ +static_assert(alignof(FGeometryScriptBakeTypeOptions) == 0x000008, "Wrong alignment on FGeometryScriptBakeTypeOptions"); \ +static_assert(sizeof(FGeometryScriptBakeTypeOptions) == 0x000018, "Wrong size on FGeometryScriptBakeTypeOptions"); \ +static_assert(offsetof(FGeometryScriptBakeTypeOptions, BakeType) == 0x000000, "Member 'FGeometryScriptBakeTypeOptions::BakeType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeTextureOptions \ +static_assert(alignof(FGeometryScriptBakeTextureOptions) == 0x000008, "Wrong alignment on FGeometryScriptBakeTextureOptions"); \ +static_assert(sizeof(FGeometryScriptBakeTextureOptions) == 0x000020, "Wrong size on FGeometryScriptBakeTextureOptions"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, Resolution) == 0x000000, "Member 'FGeometryScriptBakeTextureOptions::Resolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, BitDepth) == 0x000001, "Member 'FGeometryScriptBakeTextureOptions::BitDepth' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, SamplesPerPixel) == 0x000002, "Member 'FGeometryScriptBakeTextureOptions::SamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, SampleFilterMask) == 0x000008, "Member 'FGeometryScriptBakeTextureOptions::SampleFilterMask' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, FilteringType) == 0x000010, "Member 'FGeometryScriptBakeTextureOptions::FilteringType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, ProjectionDistance) == 0x000014, "Member 'FGeometryScriptBakeTextureOptions::ProjectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeTextureOptions, bProjectionInWorldSpace) == 0x000018, "Member 'FGeometryScriptBakeTextureOptions::bProjectionInWorldSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeVertexOptions \ +static_assert(alignof(FGeometryScriptBakeVertexOptions) == 0x000004, "Wrong alignment on FGeometryScriptBakeVertexOptions"); \ +static_assert(sizeof(FGeometryScriptBakeVertexOptions) == 0x00000C, "Wrong size on FGeometryScriptBakeVertexOptions"); \ +static_assert(offsetof(FGeometryScriptBakeVertexOptions, bSplitAtNormalSeams) == 0x000000, "Member 'FGeometryScriptBakeVertexOptions::bSplitAtNormalSeams' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeVertexOptions, bSplitAtUVSeams) == 0x000001, "Member 'FGeometryScriptBakeVertexOptions::bSplitAtUVSeams' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeVertexOptions, ProjectionDistance) == 0x000004, "Member 'FGeometryScriptBakeVertexOptions::ProjectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeVertexOptions, bProjectionInWorldSpace) == 0x000008, "Member 'FGeometryScriptBakeVertexOptions::bProjectionInWorldSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeOutputType \ +static_assert(alignof(FGeometryScriptBakeOutputType) == 0x000008, "Wrong alignment on FGeometryScriptBakeOutputType"); \ +static_assert(sizeof(FGeometryScriptBakeOutputType) == 0x000080, "Wrong size on FGeometryScriptBakeOutputType"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, OutputMode) == 0x000000, "Member 'FGeometryScriptBakeOutputType::OutputMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, RGBA) == 0x000008, "Member 'FGeometryScriptBakeOutputType::RGBA' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, R) == 0x000020, "Member 'FGeometryScriptBakeOutputType::R' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, G) == 0x000038, "Member 'FGeometryScriptBakeOutputType::G' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, B) == 0x000050, "Member 'FGeometryScriptBakeOutputType::B' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeOutputType, A) == 0x000068, "Member 'FGeometryScriptBakeOutputType::A' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeTargetMeshOptions \ +static_assert(alignof(FGeometryScriptBakeTargetMeshOptions) == 0x000004, "Wrong alignment on FGeometryScriptBakeTargetMeshOptions"); \ +static_assert(sizeof(FGeometryScriptBakeTargetMeshOptions) == 0x000004, "Wrong size on FGeometryScriptBakeTargetMeshOptions"); \ +static_assert(offsetof(FGeometryScriptBakeTargetMeshOptions, TargetUVLayer) == 0x000000, "Member 'FGeometryScriptBakeTargetMeshOptions::TargetUVLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeSourceMeshOptions \ +static_assert(alignof(FGeometryScriptBakeSourceMeshOptions) == 0x000008, "Wrong alignment on FGeometryScriptBakeSourceMeshOptions"); \ +static_assert(sizeof(FGeometryScriptBakeSourceMeshOptions) == 0x000010, "Wrong size on FGeometryScriptBakeSourceMeshOptions"); \ +static_assert(offsetof(FGeometryScriptBakeSourceMeshOptions, SourceNormalMap) == 0x000000, "Member 'FGeometryScriptBakeSourceMeshOptions::SourceNormalMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeSourceMeshOptions, SourceNormalUVLayer) == 0x000008, "Member 'FGeometryScriptBakeSourceMeshOptions::SourceNormalUVLayer' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeSourceMeshOptions, SourceNormalSpace) == 0x00000C, "Member 'FGeometryScriptBakeSourceMeshOptions::SourceNormalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBakeRenderCaptureOptions \ +static_assert(alignof(FGeometryScriptBakeRenderCaptureOptions) == 0x000008, "Wrong alignment on FGeometryScriptBakeRenderCaptureOptions"); \ +static_assert(sizeof(FGeometryScriptBakeRenderCaptureOptions) == 0x000028, "Wrong size on FGeometryScriptBakeRenderCaptureOptions"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, Resolution) == 0x000000, "Member 'FGeometryScriptBakeRenderCaptureOptions::Resolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, RenderCaptureResolution) == 0x000001, "Member 'FGeometryScriptBakeRenderCaptureOptions::RenderCaptureResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, SamplesPerPixel) == 0x000002, "Member 'FGeometryScriptBakeRenderCaptureOptions::SamplesPerPixel' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bRenderCaptureAntiAliasing) == 0x000003, "Member 'FGeometryScriptBakeRenderCaptureOptions::bRenderCaptureAntiAliasing' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, CleanupTolerance) == 0x000004, "Member 'FGeometryScriptBakeRenderCaptureOptions::CleanupTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bBaseColorMap) == 0x000008, "Member 'FGeometryScriptBakeRenderCaptureOptions::bBaseColorMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bNormalMap) == 0x000009, "Member 'FGeometryScriptBakeRenderCaptureOptions::bNormalMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bPackedMRSMap) == 0x00000A, "Member 'FGeometryScriptBakeRenderCaptureOptions::bPackedMRSMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bMetallicMap) == 0x00000B, "Member 'FGeometryScriptBakeRenderCaptureOptions::bMetallicMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bRoughnessMap) == 0x00000C, "Member 'FGeometryScriptBakeRenderCaptureOptions::bRoughnessMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bSpecularMap) == 0x00000D, "Member 'FGeometryScriptBakeRenderCaptureOptions::bSpecularMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bEmissiveMap) == 0x00000E, "Member 'FGeometryScriptBakeRenderCaptureOptions::bEmissiveMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bOpacityMap) == 0x00000F, "Member 'FGeometryScriptBakeRenderCaptureOptions::bOpacityMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, bSubsurfaceColorMap) == 0x000010, "Member 'FGeometryScriptBakeRenderCaptureOptions::bSubsurfaceColorMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, FieldOfViewDegrees) == 0x000018, "Member 'FGeometryScriptBakeRenderCaptureOptions::FieldOfViewDegrees' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBakeRenderCaptureOptions, NearPlaneDist) == 0x000020, "Member 'FGeometryScriptBakeRenderCaptureOptions::NearPlaneDist' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRenderCaptureTextures \ +static_assert(alignof(FGeometryScriptRenderCaptureTextures) == 0x000008, "Wrong alignment on FGeometryScriptRenderCaptureTextures"); \ +static_assert(sizeof(FGeometryScriptRenderCaptureTextures) == 0x000090, "Wrong size on FGeometryScriptRenderCaptureTextures"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, BaseColorMap) == 0x000000, "Member 'FGeometryScriptRenderCaptureTextures::BaseColorMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasBaseColorMap) == 0x000008, "Member 'FGeometryScriptRenderCaptureTextures::bHasBaseColorMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, NormalMap) == 0x000010, "Member 'FGeometryScriptRenderCaptureTextures::NormalMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasNormalMap) == 0x000018, "Member 'FGeometryScriptRenderCaptureTextures::bHasNormalMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, PackedMRSMap) == 0x000020, "Member 'FGeometryScriptRenderCaptureTextures::PackedMRSMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasPackedMRSMap) == 0x000028, "Member 'FGeometryScriptRenderCaptureTextures::bHasPackedMRSMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, MetallicMap) == 0x000030, "Member 'FGeometryScriptRenderCaptureTextures::MetallicMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasMetallicMap) == 0x000038, "Member 'FGeometryScriptRenderCaptureTextures::bHasMetallicMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, RoughnessMap) == 0x000040, "Member 'FGeometryScriptRenderCaptureTextures::RoughnessMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasRoughnessMap) == 0x000048, "Member 'FGeometryScriptRenderCaptureTextures::bHasRoughnessMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, SpecularMap) == 0x000050, "Member 'FGeometryScriptRenderCaptureTextures::SpecularMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasSpecularMap) == 0x000058, "Member 'FGeometryScriptRenderCaptureTextures::bHasSpecularMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, EmissiveMap) == 0x000060, "Member 'FGeometryScriptRenderCaptureTextures::EmissiveMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasEmissiveMap) == 0x000068, "Member 'FGeometryScriptRenderCaptureTextures::bHasEmissiveMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, OpacityMap) == 0x000070, "Member 'FGeometryScriptRenderCaptureTextures::OpacityMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasOpacityMap) == 0x000078, "Member 'FGeometryScriptRenderCaptureTextures::bHasOpacityMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, SubsurfaceColorMap) == 0x000080, "Member 'FGeometryScriptRenderCaptureTextures::SubsurfaceColorMap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRenderCaptureTextures, bHasSubsurfaceColorMap) == 0x000088, "Member 'FGeometryScriptRenderCaptureTextures::bHasSubsurfaceColorMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSimpleMeshBuffers \ +static_assert(alignof(FGeometryScriptSimpleMeshBuffers) == 0x000008, "Wrong alignment on FGeometryScriptSimpleMeshBuffers"); \ +static_assert(sizeof(FGeometryScriptSimpleMeshBuffers) == 0x0000D0, "Wrong size on FGeometryScriptSimpleMeshBuffers"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, Vertices) == 0x000000, "Member 'FGeometryScriptSimpleMeshBuffers::Vertices' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, Normals) == 0x000010, "Member 'FGeometryScriptSimpleMeshBuffers::Normals' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV0) == 0x000020, "Member 'FGeometryScriptSimpleMeshBuffers::UV0' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV1) == 0x000030, "Member 'FGeometryScriptSimpleMeshBuffers::UV1' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV2) == 0x000040, "Member 'FGeometryScriptSimpleMeshBuffers::UV2' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV3) == 0x000050, "Member 'FGeometryScriptSimpleMeshBuffers::UV3' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV4) == 0x000060, "Member 'FGeometryScriptSimpleMeshBuffers::UV4' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV5) == 0x000070, "Member 'FGeometryScriptSimpleMeshBuffers::UV5' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV6) == 0x000080, "Member 'FGeometryScriptSimpleMeshBuffers::UV6' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, UV7) == 0x000090, "Member 'FGeometryScriptSimpleMeshBuffers::UV7' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, VertexColors) == 0x0000A0, "Member 'FGeometryScriptSimpleMeshBuffers::VertexColors' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, Triangles) == 0x0000B0, "Member 'FGeometryScriptSimpleMeshBuffers::Triangles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimpleMeshBuffers, TriGroupIDs) == 0x0000C0, "Member 'FGeometryScriptSimpleMeshBuffers::TriGroupIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptAppendMeshOptions \ +static_assert(alignof(FGeometryScriptAppendMeshOptions) == 0x000001, "Wrong alignment on FGeometryScriptAppendMeshOptions"); \ +static_assert(sizeof(FGeometryScriptAppendMeshOptions) == 0x000001, "Wrong size on FGeometryScriptAppendMeshOptions"); \ +static_assert(offsetof(FGeometryScriptAppendMeshOptions, CombineMode) == 0x000000, "Member 'FGeometryScriptAppendMeshOptions::CombineMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBoneWeight \ +static_assert(alignof(FGeometryScriptBoneWeight) == 0x000004, "Wrong alignment on FGeometryScriptBoneWeight"); \ +static_assert(sizeof(FGeometryScriptBoneWeight) == 0x000008, "Wrong size on FGeometryScriptBoneWeight"); \ +static_assert(offsetof(FGeometryScriptBoneWeight, BoneIndex) == 0x000000, "Member 'FGeometryScriptBoneWeight::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneWeight, Weight) == 0x000004, "Member 'FGeometryScriptBoneWeight::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBoneWeightProfile \ +static_assert(alignof(FGeometryScriptBoneWeightProfile) == 0x000004, "Wrong alignment on FGeometryScriptBoneWeightProfile"); \ +static_assert(sizeof(FGeometryScriptBoneWeightProfile) == 0x000008, "Wrong size on FGeometryScriptBoneWeightProfile"); \ +static_assert(offsetof(FGeometryScriptBoneWeightProfile, ProfileName) == 0x000000, "Member 'FGeometryScriptBoneWeightProfile::ProfileName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSampleTextureOptions \ +static_assert(alignof(FGeometryScriptSampleTextureOptions) == 0x000008, "Wrong alignment on FGeometryScriptSampleTextureOptions"); \ +static_assert(sizeof(FGeometryScriptSampleTextureOptions) == 0x000028, "Wrong size on FGeometryScriptSampleTextureOptions"); \ +static_assert(offsetof(FGeometryScriptSampleTextureOptions, SamplingMethod) == 0x000000, "Member 'FGeometryScriptSampleTextureOptions::SamplingMethod' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSampleTextureOptions, bWrap) == 0x000001, "Member 'FGeometryScriptSampleTextureOptions::bWrap' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSampleTextureOptions, UVScale) == 0x000008, "Member 'FGeometryScriptSampleTextureOptions::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSampleTextureOptions, UVOffset) == 0x000018, "Member 'FGeometryScriptSampleTextureOptions::UVOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSmoothBoneWeightsOptions \ +static_assert(alignof(FGeometryScriptSmoothBoneWeightsOptions) == 0x000004, "Wrong alignment on FGeometryScriptSmoothBoneWeightsOptions"); \ +static_assert(sizeof(FGeometryScriptSmoothBoneWeightsOptions) == 0x000010, "Wrong size on FGeometryScriptSmoothBoneWeightsOptions"); \ +static_assert(offsetof(FGeometryScriptSmoothBoneWeightsOptions, DistanceWeighingType) == 0x000000, "Member 'FGeometryScriptSmoothBoneWeightsOptions::DistanceWeighingType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSmoothBoneWeightsOptions, Stiffness) == 0x000004, "Member 'FGeometryScriptSmoothBoneWeightsOptions::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSmoothBoneWeightsOptions, MaxInfluences) == 0x000008, "Member 'FGeometryScriptSmoothBoneWeightsOptions::MaxInfluences' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSmoothBoneWeightsOptions, VoxelResolution) == 0x00000C, "Member 'FGeometryScriptSmoothBoneWeightsOptions::VoxelResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTransferBoneWeightsOptions \ +static_assert(alignof(FGeometryScriptTransferBoneWeightsOptions) == 0x000008, "Wrong alignment on FGeometryScriptTransferBoneWeightsOptions"); \ +static_assert(sizeof(FGeometryScriptTransferBoneWeightsOptions) == 0x000040, "Wrong size on FGeometryScriptTransferBoneWeightsOptions"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, TransferMethod) == 0x000000, "Member 'FGeometryScriptTransferBoneWeightsOptions::TransferMethod' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, OutputTargetMeshBones) == 0x000001, "Member 'FGeometryScriptTransferBoneWeightsOptions::OutputTargetMeshBones' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, SourceProfile) == 0x000004, "Member 'FGeometryScriptTransferBoneWeightsOptions::SourceProfile' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, TargetProfile) == 0x00000C, "Member 'FGeometryScriptTransferBoneWeightsOptions::TargetProfile' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, RadiusPercentage) == 0x000018, "Member 'FGeometryScriptTransferBoneWeightsOptions::RadiusPercentage' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, NormalThreshold) == 0x000020, "Member 'FGeometryScriptTransferBoneWeightsOptions::NormalThreshold' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, LayeredMeshSupport) == 0x000028, "Member 'FGeometryScriptTransferBoneWeightsOptions::LayeredMeshSupport' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, NumSmoothingIterations) == 0x00002C, "Member 'FGeometryScriptTransferBoneWeightsOptions::NumSmoothingIterations' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, SmoothingStrength) == 0x000030, "Member 'FGeometryScriptTransferBoneWeightsOptions::SmoothingStrength' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTransferBoneWeightsOptions, InpaintMask) == 0x000034, "Member 'FGeometryScriptTransferBoneWeightsOptions::InpaintMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBoneInfo \ +static_assert(alignof(FGeometryScriptBoneInfo) == 0x000010, "Wrong alignment on FGeometryScriptBoneInfo"); \ +static_assert(sizeof(FGeometryScriptBoneInfo) == 0x0000E0, "Wrong size on FGeometryScriptBoneInfo"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, Index) == 0x000000, "Member 'FGeometryScriptBoneInfo::Index' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, Name) == 0x000004, "Member 'FGeometryScriptBoneInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, ParentIndex) == 0x00000C, "Member 'FGeometryScriptBoneInfo::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, LocalTransform) == 0x000010, "Member 'FGeometryScriptBoneInfo::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, WorldTransform) == 0x000070, "Member 'FGeometryScriptBoneInfo::WorldTransform' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBoneInfo, Color) == 0x0000D0, "Member 'FGeometryScriptBoneInfo::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshBooleanOptions \ +static_assert(alignof(FGeometryScriptMeshBooleanOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshBooleanOptions"); \ +static_assert(sizeof(FGeometryScriptMeshBooleanOptions) == 0x000008, "Wrong size on FGeometryScriptMeshBooleanOptions"); \ +static_assert(offsetof(FGeometryScriptMeshBooleanOptions, bFillHoles) == 0x000000, "Member 'FGeometryScriptMeshBooleanOptions::bFillHoles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBooleanOptions, bSimplifyOutput) == 0x000001, "Member 'FGeometryScriptMeshBooleanOptions::bSimplifyOutput' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBooleanOptions, SimplifyPlanarTolerance) == 0x000004, "Member 'FGeometryScriptMeshBooleanOptions::SimplifyPlanarTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPolygroupSimplifyOptions \ +static_assert(alignof(FGeometryScriptPolygroupSimplifyOptions) == 0x000004, "Wrong alignment on FGeometryScriptPolygroupSimplifyOptions"); \ +static_assert(sizeof(FGeometryScriptPolygroupSimplifyOptions) == 0x000008, "Wrong size on FGeometryScriptPolygroupSimplifyOptions"); \ +static_assert(offsetof(FGeometryScriptPolygroupSimplifyOptions, AngleThreshold) == 0x000000, "Member 'FGeometryScriptPolygroupSimplifyOptions::AngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPolygroupSimplifyOptions, bAutoCompact) == 0x000004, "Member 'FGeometryScriptPolygroupSimplifyOptions::bAutoCompact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshSelfUnionOptions \ +static_assert(alignof(FGeometryScriptMeshSelfUnionOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshSelfUnionOptions"); \ +static_assert(sizeof(FGeometryScriptMeshSelfUnionOptions) == 0x00000C, "Wrong size on FGeometryScriptMeshSelfUnionOptions"); \ +static_assert(offsetof(FGeometryScriptMeshSelfUnionOptions, bFillHoles) == 0x000000, "Member 'FGeometryScriptMeshSelfUnionOptions::bFillHoles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshSelfUnionOptions, bTrimFlaps) == 0x000001, "Member 'FGeometryScriptMeshSelfUnionOptions::bTrimFlaps' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshSelfUnionOptions, bSimplifyOutput) == 0x000002, "Member 'FGeometryScriptMeshSelfUnionOptions::bSimplifyOutput' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshSelfUnionOptions, SimplifyPlanarTolerance) == 0x000004, "Member 'FGeometryScriptMeshSelfUnionOptions::SimplifyPlanarTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshSelfUnionOptions, WindingThreshold) == 0x000008, "Member 'FGeometryScriptMeshSelfUnionOptions::WindingThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshPlaneCutOptions \ +static_assert(alignof(FGeometryScriptMeshPlaneCutOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshPlaneCutOptions"); \ +static_assert(sizeof(FGeometryScriptMeshPlaneCutOptions) == 0x000008, "Wrong size on FGeometryScriptMeshPlaneCutOptions"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneCutOptions, bFillHoles) == 0x000000, "Member 'FGeometryScriptMeshPlaneCutOptions::bFillHoles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneCutOptions, bFillSpans) == 0x000001, "Member 'FGeometryScriptMeshPlaneCutOptions::bFillSpans' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneCutOptions, bFlipCutSide) == 0x000002, "Member 'FGeometryScriptMeshPlaneCutOptions::bFlipCutSide' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneCutOptions, UVWorldDimension) == 0x000004, "Member 'FGeometryScriptMeshPlaneCutOptions::UVWorldDimension' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshPlaneSliceOptions \ +static_assert(alignof(FGeometryScriptMeshPlaneSliceOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshPlaneSliceOptions"); \ +static_assert(sizeof(FGeometryScriptMeshPlaneSliceOptions) == 0x00000C, "Wrong size on FGeometryScriptMeshPlaneSliceOptions"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneSliceOptions, bFillHoles) == 0x000000, "Member 'FGeometryScriptMeshPlaneSliceOptions::bFillHoles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneSliceOptions, bFillSpans) == 0x000001, "Member 'FGeometryScriptMeshPlaneSliceOptions::bFillSpans' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneSliceOptions, GapWidth) == 0x000004, "Member 'FGeometryScriptMeshPlaneSliceOptions::GapWidth' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPlaneSliceOptions, UVWorldDimension) == 0x000008, "Member 'FGeometryScriptMeshPlaneSliceOptions::UVWorldDimension' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshMirrorOptions \ +static_assert(alignof(FGeometryScriptMeshMirrorOptions) == 0x000001, "Wrong alignment on FGeometryScriptMeshMirrorOptions"); \ +static_assert(sizeof(FGeometryScriptMeshMirrorOptions) == 0x000003, "Wrong size on FGeometryScriptMeshMirrorOptions"); \ +static_assert(offsetof(FGeometryScriptMeshMirrorOptions, bApplyPlaneCut) == 0x000000, "Member 'FGeometryScriptMeshMirrorOptions::bApplyPlaneCut' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshMirrorOptions, bFlipCutSide) == 0x000001, "Member 'FGeometryScriptMeshMirrorOptions::bFlipCutSide' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshMirrorOptions, bWeldAlongPlane) == 0x000002, "Member 'FGeometryScriptMeshMirrorOptions::bWeldAlongPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptIsSameMeshOptions \ +static_assert(alignof(FGeometryScriptIsSameMeshOptions) == 0x000004, "Wrong alignment on FGeometryScriptIsSameMeshOptions"); \ +static_assert(sizeof(FGeometryScriptIsSameMeshOptions) == 0x00000C, "Wrong size on FGeometryScriptIsSameMeshOptions"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckConnectivity) == 0x000000, "Member 'FGeometryScriptIsSameMeshOptions::bCheckConnectivity' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckEdgeIDs) == 0x000001, "Member 'FGeometryScriptIsSameMeshOptions::bCheckEdgeIDs' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckNormals) == 0x000002, "Member 'FGeometryScriptIsSameMeshOptions::bCheckNormals' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckColors) == 0x000003, "Member 'FGeometryScriptIsSameMeshOptions::bCheckColors' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckUVs) == 0x000004, "Member 'FGeometryScriptIsSameMeshOptions::bCheckUVs' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckGroups) == 0x000005, "Member 'FGeometryScriptIsSameMeshOptions::bCheckGroups' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, bCheckAttributes) == 0x000006, "Member 'FGeometryScriptIsSameMeshOptions::bCheckAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIsSameMeshOptions, Epsilon) == 0x000008, "Member 'FGeometryScriptIsSameMeshOptions::Epsilon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeasureMeshDistanceOptions \ +static_assert(alignof(FGeometryScriptMeasureMeshDistanceOptions) == 0x000001, "Wrong alignment on FGeometryScriptMeasureMeshDistanceOptions"); \ +static_assert(sizeof(FGeometryScriptMeasureMeshDistanceOptions) == 0x000001, "Wrong size on FGeometryScriptMeasureMeshDistanceOptions"); \ +static_assert(offsetof(FGeometryScriptMeasureMeshDistanceOptions, bSymmetric) == 0x000000, "Member 'FGeometryScriptMeasureMeshDistanceOptions::bSymmetric' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBendWarpOptions \ +static_assert(alignof(FGeometryScriptBendWarpOptions) == 0x000004, "Wrong alignment on FGeometryScriptBendWarpOptions"); \ +static_assert(sizeof(FGeometryScriptBendWarpOptions) == 0x00000C, "Wrong size on FGeometryScriptBendWarpOptions"); \ +static_assert(offsetof(FGeometryScriptBendWarpOptions, bSymmetricExtents) == 0x000000, "Member 'FGeometryScriptBendWarpOptions::bSymmetricExtents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBendWarpOptions, LowerExtent) == 0x000004, "Member 'FGeometryScriptBendWarpOptions::LowerExtent' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBendWarpOptions, bBidirectional) == 0x000008, "Member 'FGeometryScriptBendWarpOptions::bBidirectional' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTwistWarpOptions \ +static_assert(alignof(FGeometryScriptTwistWarpOptions) == 0x000004, "Wrong alignment on FGeometryScriptTwistWarpOptions"); \ +static_assert(sizeof(FGeometryScriptTwistWarpOptions) == 0x00000C, "Wrong size on FGeometryScriptTwistWarpOptions"); \ +static_assert(offsetof(FGeometryScriptTwistWarpOptions, bSymmetricExtents) == 0x000000, "Member 'FGeometryScriptTwistWarpOptions::bSymmetricExtents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTwistWarpOptions, LowerExtent) == 0x000004, "Member 'FGeometryScriptTwistWarpOptions::LowerExtent' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTwistWarpOptions, bBidirectional) == 0x000008, "Member 'FGeometryScriptTwistWarpOptions::bBidirectional' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptFlareWarpOptions \ +static_assert(alignof(FGeometryScriptFlareWarpOptions) == 0x000004, "Wrong alignment on FGeometryScriptFlareWarpOptions"); \ +static_assert(sizeof(FGeometryScriptFlareWarpOptions) == 0x00000C, "Wrong size on FGeometryScriptFlareWarpOptions"); \ +static_assert(offsetof(FGeometryScriptFlareWarpOptions, bSymmetricExtents) == 0x000000, "Member 'FGeometryScriptFlareWarpOptions::bSymmetricExtents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptFlareWarpOptions, LowerExtent) == 0x000004, "Member 'FGeometryScriptFlareWarpOptions::LowerExtent' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptFlareWarpOptions, FlareType) == 0x000008, "Member 'FGeometryScriptFlareWarpOptions::FlareType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPerlinNoiseLayerOptions \ +static_assert(alignof(FGeometryScriptPerlinNoiseLayerOptions) == 0x000008, "Wrong alignment on FGeometryScriptPerlinNoiseLayerOptions"); \ +static_assert(sizeof(FGeometryScriptPerlinNoiseLayerOptions) == 0x000028, "Wrong size on FGeometryScriptPerlinNoiseLayerOptions"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseLayerOptions, Magnitude) == 0x000000, "Member 'FGeometryScriptPerlinNoiseLayerOptions::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseLayerOptions, Frequency) == 0x000004, "Member 'FGeometryScriptPerlinNoiseLayerOptions::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseLayerOptions, FrequencyShift) == 0x000008, "Member 'FGeometryScriptPerlinNoiseLayerOptions::FrequencyShift' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseLayerOptions, RandomSeed) == 0x000020, "Member 'FGeometryScriptPerlinNoiseLayerOptions::RandomSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMathWarpOptions \ +static_assert(alignof(FGeometryScriptMathWarpOptions) == 0x000004, "Wrong alignment on FGeometryScriptMathWarpOptions"); \ +static_assert(sizeof(FGeometryScriptMathWarpOptions) == 0x00000C, "Wrong size on FGeometryScriptMathWarpOptions"); \ +static_assert(offsetof(FGeometryScriptMathWarpOptions, Magnitude) == 0x000000, "Member 'FGeometryScriptMathWarpOptions::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMathWarpOptions, Frequency) == 0x000004, "Member 'FGeometryScriptMathWarpOptions::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMathWarpOptions, FrequencyShift) == 0x000008, "Member 'FGeometryScriptMathWarpOptions::FrequencyShift' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPerlinNoiseOptions \ +static_assert(alignof(FGeometryScriptPerlinNoiseOptions) == 0x000008, "Wrong alignment on FGeometryScriptPerlinNoiseOptions"); \ +static_assert(sizeof(FGeometryScriptPerlinNoiseOptions) == 0x000030, "Wrong size on FGeometryScriptPerlinNoiseOptions"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseOptions, BaseLayer) == 0x000000, "Member 'FGeometryScriptPerlinNoiseOptions::BaseLayer' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseOptions, bApplyAlongNormal) == 0x000028, "Member 'FGeometryScriptPerlinNoiseOptions::bApplyAlongNormal' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPerlinNoiseOptions, EmptyBehavior) == 0x000029, "Member 'FGeometryScriptPerlinNoiseOptions::EmptyBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptIterativeMeshSmoothingOptions \ +static_assert(alignof(FGeometryScriptIterativeMeshSmoothingOptions) == 0x000004, "Wrong alignment on FGeometryScriptIterativeMeshSmoothingOptions"); \ +static_assert(sizeof(FGeometryScriptIterativeMeshSmoothingOptions) == 0x00000C, "Wrong size on FGeometryScriptIterativeMeshSmoothingOptions"); \ +static_assert(offsetof(FGeometryScriptIterativeMeshSmoothingOptions, NumIterations) == 0x000000, "Member 'FGeometryScriptIterativeMeshSmoothingOptions::NumIterations' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIterativeMeshSmoothingOptions, alpha) == 0x000004, "Member 'FGeometryScriptIterativeMeshSmoothingOptions::alpha' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptIterativeMeshSmoothingOptions, EmptyBehavior) == 0x000008, "Member 'FGeometryScriptIterativeMeshSmoothingOptions::EmptyBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptDisplaceFromTextureOptions \ +static_assert(alignof(FGeometryScriptDisplaceFromTextureOptions) == 0x000008, "Wrong alignment on FGeometryScriptDisplaceFromTextureOptions"); \ +static_assert(sizeof(FGeometryScriptDisplaceFromTextureOptions) == 0x000038, "Wrong size on FGeometryScriptDisplaceFromTextureOptions"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, Magnitude) == 0x000000, "Member 'FGeometryScriptDisplaceFromTextureOptions::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, UVScale) == 0x000008, "Member 'FGeometryScriptDisplaceFromTextureOptions::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, UVOffset) == 0x000018, "Member 'FGeometryScriptDisplaceFromTextureOptions::UVOffset' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, Center) == 0x000028, "Member 'FGeometryScriptDisplaceFromTextureOptions::Center' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, ImageChannel) == 0x00002C, "Member 'FGeometryScriptDisplaceFromTextureOptions::ImageChannel' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDisplaceFromTextureOptions, EmptyBehavior) == 0x000030, "Member 'FGeometryScriptDisplaceFromTextureOptions::EmptyBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshEditPolygroupOptions \ +static_assert(alignof(FGeometryScriptMeshEditPolygroupOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshEditPolygroupOptions"); \ +static_assert(sizeof(FGeometryScriptMeshEditPolygroupOptions) == 0x000008, "Wrong size on FGeometryScriptMeshEditPolygroupOptions"); \ +static_assert(offsetof(FGeometryScriptMeshEditPolygroupOptions, GroupMode) == 0x000000, "Member 'FGeometryScriptMeshEditPolygroupOptions::GroupMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshEditPolygroupOptions, ConstantGroup) == 0x000004, "Member 'FGeometryScriptMeshEditPolygroupOptions::ConstantGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshOffsetOptions \ +static_assert(alignof(FGeometryScriptMeshOffsetOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshOffsetOptions"); \ +static_assert(sizeof(FGeometryScriptMeshOffsetOptions) == 0x000018, "Wrong size on FGeometryScriptMeshOffsetOptions"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, OffsetDistance) == 0x000000, "Member 'FGeometryScriptMeshOffsetOptions::OffsetDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, bFixedBoundary) == 0x000004, "Member 'FGeometryScriptMeshOffsetOptions::bFixedBoundary' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, SolveSteps) == 0x000008, "Member 'FGeometryScriptMeshOffsetOptions::SolveSteps' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, SmoothAlpha) == 0x00000C, "Member 'FGeometryScriptMeshOffsetOptions::SmoothAlpha' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, bReprojectDuringSmoothing) == 0x000010, "Member 'FGeometryScriptMeshOffsetOptions::bReprojectDuringSmoothing' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetOptions, BoundaryAlpha) == 0x000014, "Member 'FGeometryScriptMeshOffsetOptions::BoundaryAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPolygonOffsetOptions \ +static_assert(alignof(FGeometryScriptPolygonOffsetOptions) == 0x000008, "Wrong alignment on FGeometryScriptPolygonOffsetOptions"); \ +static_assert(sizeof(FGeometryScriptPolygonOffsetOptions) == 0x000028, "Wrong size on FGeometryScriptPolygonOffsetOptions"); \ +static_assert(offsetof(FGeometryScriptPolygonOffsetOptions, JoinType) == 0x000000, "Member 'FGeometryScriptPolygonOffsetOptions::JoinType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPolygonOffsetOptions, MiterLimit) == 0x000008, "Member 'FGeometryScriptPolygonOffsetOptions::MiterLimit' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPolygonOffsetOptions, bOffsetBothSides) == 0x000010, "Member 'FGeometryScriptPolygonOffsetOptions::bOffsetBothSides' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPolygonOffsetOptions, StepsPerRadianScale) == 0x000018, "Member 'FGeometryScriptPolygonOffsetOptions::StepsPerRadianScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPolygonOffsetOptions, MaximumStepsPerRadian) == 0x000020, "Member 'FGeometryScriptPolygonOffsetOptions::MaximumStepsPerRadian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshExtrudeOptions \ +static_assert(alignof(FGeometryScriptMeshExtrudeOptions) == 0x000008, "Wrong alignment on FGeometryScriptMeshExtrudeOptions"); \ +static_assert(sizeof(FGeometryScriptMeshExtrudeOptions) == 0x000028, "Wrong size on FGeometryScriptMeshExtrudeOptions"); \ +static_assert(offsetof(FGeometryScriptMeshExtrudeOptions, ExtrudeDistance) == 0x000000, "Member 'FGeometryScriptMeshExtrudeOptions::ExtrudeDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshExtrudeOptions, ExtrudeDirection) == 0x000008, "Member 'FGeometryScriptMeshExtrudeOptions::ExtrudeDirection' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshExtrudeOptions, UVScale) == 0x000020, "Member 'FGeometryScriptMeshExtrudeOptions::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshExtrudeOptions, bSolidsToShells) == 0x000024, "Member 'FGeometryScriptMeshExtrudeOptions::bSolidsToShells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshLinearExtrudeOptions \ +static_assert(alignof(FGeometryScriptMeshLinearExtrudeOptions) == 0x000008, "Wrong alignment on FGeometryScriptMeshLinearExtrudeOptions"); \ +static_assert(sizeof(FGeometryScriptMeshLinearExtrudeOptions) == 0x000038, "Wrong size on FGeometryScriptMeshLinearExtrudeOptions"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, Distance) == 0x000000, "Member 'FGeometryScriptMeshLinearExtrudeOptions::Distance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, DirectionMode) == 0x000004, "Member 'FGeometryScriptMeshLinearExtrudeOptions::DirectionMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, Direction) == 0x000008, "Member 'FGeometryScriptMeshLinearExtrudeOptions::Direction' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, AreaMode) == 0x000020, "Member 'FGeometryScriptMeshLinearExtrudeOptions::AreaMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, GroupOptions) == 0x000024, "Member 'FGeometryScriptMeshLinearExtrudeOptions::GroupOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, UVScale) == 0x00002C, "Member 'FGeometryScriptMeshLinearExtrudeOptions::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshLinearExtrudeOptions, bSolidsToShells) == 0x000030, "Member 'FGeometryScriptMeshLinearExtrudeOptions::bSolidsToShells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptUniformRemeshOptions \ +static_assert(alignof(FGeometryScriptUniformRemeshOptions) == 0x000004, "Wrong alignment on FGeometryScriptUniformRemeshOptions"); \ +static_assert(sizeof(FGeometryScriptUniformRemeshOptions) == 0x00000C, "Wrong size on FGeometryScriptUniformRemeshOptions"); \ +static_assert(offsetof(FGeometryScriptUniformRemeshOptions, TargetType) == 0x000000, "Member 'FGeometryScriptUniformRemeshOptions::TargetType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptUniformRemeshOptions, TargetTriangleCount) == 0x000004, "Member 'FGeometryScriptUniformRemeshOptions::TargetTriangleCount' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptUniformRemeshOptions, TargetEdgeLength) == 0x000008, "Member 'FGeometryScriptUniformRemeshOptions::TargetEdgeLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshOffsetFacesOptions \ +static_assert(alignof(FGeometryScriptMeshOffsetFacesOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshOffsetFacesOptions"); \ +static_assert(sizeof(FGeometryScriptMeshOffsetFacesOptions) == 0x000018, "Wrong size on FGeometryScriptMeshOffsetFacesOptions"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, Distance) == 0x000000, "Member 'FGeometryScriptMeshOffsetFacesOptions::Distance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, OffsetType) == 0x000004, "Member 'FGeometryScriptMeshOffsetFacesOptions::OffsetType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, AreaMode) == 0x000005, "Member 'FGeometryScriptMeshOffsetFacesOptions::AreaMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, GroupOptions) == 0x000008, "Member 'FGeometryScriptMeshOffsetFacesOptions::GroupOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, UVScale) == 0x000010, "Member 'FGeometryScriptMeshOffsetFacesOptions::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshOffsetFacesOptions, bSolidsToShells) == 0x000014, "Member 'FGeometryScriptMeshOffsetFacesOptions::bSolidsToShells' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshInsetOutsetFacesOptions \ +static_assert(alignof(FGeometryScriptMeshInsetOutsetFacesOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshInsetOutsetFacesOptions"); \ +static_assert(sizeof(FGeometryScriptMeshInsetOutsetFacesOptions) == 0x000020, "Wrong size on FGeometryScriptMeshInsetOutsetFacesOptions"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, Distance) == 0x000000, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::Distance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, bReproject) == 0x000004, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::bReproject' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, bBoundaryOnly) == 0x000005, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::bBoundaryOnly' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, Softness) == 0x000008, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::Softness' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, AreaScale) == 0x00000C, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::AreaScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, AreaMode) == 0x000010, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::AreaMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, GroupOptions) == 0x000014, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::GroupOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshInsetOutsetFacesOptions, UVScale) == 0x00001C, "Member 'FGeometryScriptMeshInsetOutsetFacesOptions::UVScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshBevelOptions \ +static_assert(alignof(FGeometryScriptMeshBevelOptions) == 0x000010, "Wrong alignment on FGeometryScriptMeshBevelOptions"); \ +static_assert(sizeof(FGeometryScriptMeshBevelOptions) == 0x0000C0, "Wrong size on FGeometryScriptMeshBevelOptions"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, BevelDistance) == 0x000000, "Member 'FGeometryScriptMeshBevelOptions::BevelDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, bInferMaterialID) == 0x000004, "Member 'FGeometryScriptMeshBevelOptions::bInferMaterialID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, SetMaterialID) == 0x000008, "Member 'FGeometryScriptMeshBevelOptions::SetMaterialID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, bApplyFilterBox) == 0x00000C, "Member 'FGeometryScriptMeshBevelOptions::bApplyFilterBox' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, FilterBox) == 0x000010, "Member 'FGeometryScriptMeshBevelOptions::FilterBox' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, FilterBoxTransform) == 0x000050, "Member 'FGeometryScriptMeshBevelOptions::FilterBoxTransform' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelOptions, bFullyContained) == 0x0000B0, "Member 'FGeometryScriptMeshBevelOptions::bFullyContained' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshBevelSelectionOptions \ +static_assert(alignof(FGeometryScriptMeshBevelSelectionOptions) == 0x000004, "Wrong alignment on FGeometryScriptMeshBevelSelectionOptions"); \ +static_assert(sizeof(FGeometryScriptMeshBevelSelectionOptions) == 0x00000C, "Wrong size on FGeometryScriptMeshBevelSelectionOptions"); \ +static_assert(offsetof(FGeometryScriptMeshBevelSelectionOptions, BevelDistance) == 0x000000, "Member 'FGeometryScriptMeshBevelSelectionOptions::BevelDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelSelectionOptions, bInferMaterialID) == 0x000004, "Member 'FGeometryScriptMeshBevelSelectionOptions::bInferMaterialID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshBevelSelectionOptions, SetMaterialID) == 0x000008, "Member 'FGeometryScriptMeshBevelSelectionOptions::SetMaterialID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptCalculateNormalsOptions \ +static_assert(alignof(FGeometryScriptCalculateNormalsOptions) == 0x000001, "Wrong alignment on FGeometryScriptCalculateNormalsOptions"); \ +static_assert(sizeof(FGeometryScriptCalculateNormalsOptions) == 0x000002, "Wrong size on FGeometryScriptCalculateNormalsOptions"); \ +static_assert(offsetof(FGeometryScriptCalculateNormalsOptions, bAngleWeighted) == 0x000000, "Member 'FGeometryScriptCalculateNormalsOptions::bAngleWeighted' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCalculateNormalsOptions, bAreaWeighted) == 0x000001, "Member 'FGeometryScriptCalculateNormalsOptions::bAreaWeighted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSplitNormalsOptions \ +static_assert(alignof(FGeometryScriptSplitNormalsOptions) == 0x000004, "Wrong alignment on FGeometryScriptSplitNormalsOptions"); \ +static_assert(sizeof(FGeometryScriptSplitNormalsOptions) == 0x000014, "Wrong size on FGeometryScriptSplitNormalsOptions"); \ +static_assert(offsetof(FGeometryScriptSplitNormalsOptions, bSplitByOpeningAngle) == 0x000000, "Member 'FGeometryScriptSplitNormalsOptions::bSplitByOpeningAngle' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplitNormalsOptions, OpeningAngleDeg) == 0x000004, "Member 'FGeometryScriptSplitNormalsOptions::OpeningAngleDeg' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplitNormalsOptions, bSplitByFaceGroup) == 0x000008, "Member 'FGeometryScriptSplitNormalsOptions::bSplitByFaceGroup' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplitNormalsOptions, GroupLayer) == 0x00000C, "Member 'FGeometryScriptSplitNormalsOptions::GroupLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptTangentsOptions \ +static_assert(alignof(FGeometryScriptTangentsOptions) == 0x000004, "Wrong alignment on FGeometryScriptTangentsOptions"); \ +static_assert(sizeof(FGeometryScriptTangentsOptions) == 0x000008, "Wrong size on FGeometryScriptTangentsOptions"); \ +static_assert(offsetof(FGeometryScriptTangentsOptions, Type) == 0x000000, "Member 'FGeometryScriptTangentsOptions::Type' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptTangentsOptions, UVLayer) == 0x000004, "Member 'FGeometryScriptTangentsOptions::UVLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPrimitiveOptions \ +static_assert(alignof(FGeometryScriptPrimitiveOptions) == 0x000001, "Wrong alignment on FGeometryScriptPrimitiveOptions"); \ +static_assert(sizeof(FGeometryScriptPrimitiveOptions) == 0x000003, "Wrong size on FGeometryScriptPrimitiveOptions"); \ +static_assert(offsetof(FGeometryScriptPrimitiveOptions, PolygroupMode) == 0x000000, "Member 'FGeometryScriptPrimitiveOptions::PolygroupMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPrimitiveOptions, bFlipOrientation) == 0x000001, "Member 'FGeometryScriptPrimitiveOptions::bFlipOrientation' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPrimitiveOptions, UVMode) == 0x000002, "Member 'FGeometryScriptPrimitiveOptions::UVMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRevolveOptions \ +static_assert(alignof(FGeometryScriptRevolveOptions) == 0x000004, "Wrong alignment on FGeometryScriptRevolveOptions"); \ +static_assert(sizeof(FGeometryScriptRevolveOptions) == 0x000014, "Wrong size on FGeometryScriptRevolveOptions"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, RevolveDegrees) == 0x000000, "Member 'FGeometryScriptRevolveOptions::RevolveDegrees' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, DegreeOffset) == 0x000004, "Member 'FGeometryScriptRevolveOptions::DegreeOffset' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, bReverseDirection) == 0x000008, "Member 'FGeometryScriptRevolveOptions::bReverseDirection' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, bHardNormals) == 0x000009, "Member 'FGeometryScriptRevolveOptions::bHardNormals' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, HardNormalAngle) == 0x00000C, "Member 'FGeometryScriptRevolveOptions::HardNormalAngle' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, bProfileAtMidpoint) == 0x000010, "Member 'FGeometryScriptRevolveOptions::bProfileAtMidpoint' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRevolveOptions, bFillPartialRevolveEndcaps) == 0x000011, "Member 'FGeometryScriptRevolveOptions::bFillPartialRevolveEndcaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptVoronoiOptions \ +static_assert(alignof(FGeometryScriptVoronoiOptions) == 0x000008, "Wrong alignment on FGeometryScriptVoronoiOptions"); \ +static_assert(sizeof(FGeometryScriptVoronoiOptions) == 0x000058, "Wrong size on FGeometryScriptVoronoiOptions"); \ +static_assert(offsetof(FGeometryScriptVoronoiOptions, BoundsExpand) == 0x000000, "Member 'FGeometryScriptVoronoiOptions::BoundsExpand' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptVoronoiOptions, Bounds) == 0x000008, "Member 'FGeometryScriptVoronoiOptions::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptVoronoiOptions, CreateCells) == 0x000040, "Member 'FGeometryScriptVoronoiOptions::CreateCells' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptVoronoiOptions, bIncludeBoundary) == 0x000050, "Member 'FGeometryScriptVoronoiOptions::bIncludeBoundary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptConstrainedDelaunayTriangulationOptions \ +static_assert(alignof(FGeometryScriptConstrainedDelaunayTriangulationOptions) == 0x000001, "Wrong alignment on FGeometryScriptConstrainedDelaunayTriangulationOptions"); \ +static_assert(sizeof(FGeometryScriptConstrainedDelaunayTriangulationOptions) == 0x000003, "Wrong size on FGeometryScriptConstrainedDelaunayTriangulationOptions"); \ +static_assert(offsetof(FGeometryScriptConstrainedDelaunayTriangulationOptions, ConstrainedEdgesFillMode) == 0x000000, "Member 'FGeometryScriptConstrainedDelaunayTriangulationOptions::ConstrainedEdgesFillMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConstrainedDelaunayTriangulationOptions, bValidateEdgesInResult) == 0x000001, "Member 'FGeometryScriptConstrainedDelaunayTriangulationOptions::bValidateEdgesInResult' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptConstrainedDelaunayTriangulationOptions, bRemoveDuplicateVertices) == 0x000002, "Member 'FGeometryScriptConstrainedDelaunayTriangulationOptions::bRemoveDuplicateVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPolygonsTriangulationOptions \ +static_assert(alignof(FGeometryScriptPolygonsTriangulationOptions) == 0x000001, "Wrong alignment on FGeometryScriptPolygonsTriangulationOptions"); \ +static_assert(sizeof(FGeometryScriptPolygonsTriangulationOptions) == 0x000001, "Wrong size on FGeometryScriptPolygonsTriangulationOptions"); \ +static_assert(offsetof(FGeometryScriptPolygonsTriangulationOptions, bStillAppendOnTriangulationError) == 0x000000, "Member 'FGeometryScriptPolygonsTriangulationOptions::bStillAppendOnTriangulationError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRemeshOptions \ +static_assert(alignof(FGeometryScriptRemeshOptions) == 0x000004, "Wrong alignment on FGeometryScriptRemeshOptions"); \ +static_assert(sizeof(FGeometryScriptRemeshOptions) == 0x00001C, "Wrong size on FGeometryScriptRemeshOptions"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bDiscardAttributes) == 0x000000, "Member 'FGeometryScriptRemeshOptions::bDiscardAttributes' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bReprojectToInputMesh) == 0x000001, "Member 'FGeometryScriptRemeshOptions::bReprojectToInputMesh' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, SmoothingType) == 0x000002, "Member 'FGeometryScriptRemeshOptions::SmoothingType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, SmoothingRate) == 0x000004, "Member 'FGeometryScriptRemeshOptions::SmoothingRate' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, MeshBoundaryConstraint) == 0x000008, "Member 'FGeometryScriptRemeshOptions::MeshBoundaryConstraint' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, GroupBoundaryConstraint) == 0x000009, "Member 'FGeometryScriptRemeshOptions::GroupBoundaryConstraint' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, MaterialBoundaryConstraint) == 0x00000A, "Member 'FGeometryScriptRemeshOptions::MaterialBoundaryConstraint' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bAllowFlips) == 0x00000B, "Member 'FGeometryScriptRemeshOptions::bAllowFlips' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bAllowSplits) == 0x00000C, "Member 'FGeometryScriptRemeshOptions::bAllowSplits' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bAllowCollapses) == 0x00000D, "Member 'FGeometryScriptRemeshOptions::bAllowCollapses' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bPreventNormalFlips) == 0x00000E, "Member 'FGeometryScriptRemeshOptions::bPreventNormalFlips' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bPreventTinyTriangles) == 0x00000F, "Member 'FGeometryScriptRemeshOptions::bPreventTinyTriangles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bUseFullRemeshPasses) == 0x000010, "Member 'FGeometryScriptRemeshOptions::bUseFullRemeshPasses' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, RemeshIterations) == 0x000014, "Member 'FGeometryScriptRemeshOptions::RemeshIterations' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemeshOptions, bAutoCompact) == 0x000018, "Member 'FGeometryScriptRemeshOptions::bAutoCompact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptWeldEdgesOptions \ +static_assert(alignof(FGeometryScriptWeldEdgesOptions) == 0x000004, "Wrong alignment on FGeometryScriptWeldEdgesOptions"); \ +static_assert(sizeof(FGeometryScriptWeldEdgesOptions) == 0x000008, "Wrong size on FGeometryScriptWeldEdgesOptions"); \ +static_assert(offsetof(FGeometryScriptWeldEdgesOptions, Tolerance) == 0x000000, "Member 'FGeometryScriptWeldEdgesOptions::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptWeldEdgesOptions, bOnlyUniquePairs) == 0x000004, "Member 'FGeometryScriptWeldEdgesOptions::bOnlyUniquePairs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptResolveTJunctionOptions \ +static_assert(alignof(FGeometryScriptResolveTJunctionOptions) == 0x000004, "Wrong alignment on FGeometryScriptResolveTJunctionOptions"); \ +static_assert(sizeof(FGeometryScriptResolveTJunctionOptions) == 0x000004, "Wrong size on FGeometryScriptResolveTJunctionOptions"); \ +static_assert(offsetof(FGeometryScriptResolveTJunctionOptions, Tolerance) == 0x000000, "Member 'FGeometryScriptResolveTJunctionOptions::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptFillHolesOptions \ +static_assert(alignof(FGeometryScriptFillHolesOptions) == 0x000001, "Wrong alignment on FGeometryScriptFillHolesOptions"); \ +static_assert(sizeof(FGeometryScriptFillHolesOptions) == 0x000002, "Wrong size on FGeometryScriptFillHolesOptions"); \ +static_assert(offsetof(FGeometryScriptFillHolesOptions, FillMethod) == 0x000000, "Member 'FGeometryScriptFillHolesOptions::FillMethod' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptFillHolesOptions, bDeleteIsolatedTriangles) == 0x000001, "Member 'FGeometryScriptFillHolesOptions::bDeleteIsolatedTriangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRemoveSmallComponentOptions \ +static_assert(alignof(FGeometryScriptRemoveSmallComponentOptions) == 0x000004, "Wrong alignment on FGeometryScriptRemoveSmallComponentOptions"); \ +static_assert(sizeof(FGeometryScriptRemoveSmallComponentOptions) == 0x00000C, "Wrong size on FGeometryScriptRemoveSmallComponentOptions"); \ +static_assert(offsetof(FGeometryScriptRemoveSmallComponentOptions, MinVolume) == 0x000000, "Member 'FGeometryScriptRemoveSmallComponentOptions::MinVolume' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveSmallComponentOptions, MinArea) == 0x000004, "Member 'FGeometryScriptRemoveSmallComponentOptions::MinArea' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveSmallComponentOptions, MinTriangleCount) == 0x000008, "Member 'FGeometryScriptRemoveSmallComponentOptions::MinTriangleCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRemoveHiddenTrianglesOptions \ +static_assert(alignof(FGeometryScriptRemoveHiddenTrianglesOptions) == 0x000004, "Wrong alignment on FGeometryScriptRemoveHiddenTrianglesOptions"); \ +static_assert(sizeof(FGeometryScriptRemoveHiddenTrianglesOptions) == 0x00001C, "Wrong size on FGeometryScriptRemoveHiddenTrianglesOptions"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, Method) == 0x000000, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::Method' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, SamplesPerTriangle) == 0x000004, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::SamplesPerTriangle' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, ShrinkSelection) == 0x000008, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::ShrinkSelection' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, WindingIsoValue) == 0x00000C, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::WindingIsoValue' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, RaysPerSample) == 0x000010, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::RaysPerSample' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, NormalOffset) == 0x000014, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::NormalOffset' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRemoveHiddenTrianglesOptions, bCompactResult) == 0x000018, "Member 'FGeometryScriptRemoveHiddenTrianglesOptions::bCompactResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptDegenerateTriangleOptions \ +static_assert(alignof(FGeometryScriptDegenerateTriangleOptions) == 0x000008, "Wrong alignment on FGeometryScriptDegenerateTriangleOptions"); \ +static_assert(sizeof(FGeometryScriptDegenerateTriangleOptions) == 0x000020, "Wrong size on FGeometryScriptDegenerateTriangleOptions"); \ +static_assert(offsetof(FGeometryScriptDegenerateTriangleOptions, Mode) == 0x000000, "Member 'FGeometryScriptDegenerateTriangleOptions::Mode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDegenerateTriangleOptions, MinTriangleArea) == 0x000008, "Member 'FGeometryScriptDegenerateTriangleOptions::MinTriangleArea' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDegenerateTriangleOptions, MinEdgeLength) == 0x000010, "Member 'FGeometryScriptDegenerateTriangleOptions::MinEdgeLength' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptDegenerateTriangleOptions, bCompactOnCompletion) == 0x000018, "Member 'FGeometryScriptDegenerateTriangleOptions::bCompactOnCompletion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMeshPointSamplingOptions \ +static_assert(alignof(FGeometryScriptMeshPointSamplingOptions) == 0x000008, "Wrong alignment on FGeometryScriptMeshPointSamplingOptions"); \ +static_assert(sizeof(FGeometryScriptMeshPointSamplingOptions) == 0x000018, "Wrong size on FGeometryScriptMeshPointSamplingOptions"); \ +static_assert(offsetof(FGeometryScriptMeshPointSamplingOptions, SamplingRadius) == 0x000000, "Member 'FGeometryScriptMeshPointSamplingOptions::SamplingRadius' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPointSamplingOptions, MaxNumSamples) == 0x000004, "Member 'FGeometryScriptMeshPointSamplingOptions::MaxNumSamples' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPointSamplingOptions, RandomSeed) == 0x000008, "Member 'FGeometryScriptMeshPointSamplingOptions::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMeshPointSamplingOptions, SubSampleDensity) == 0x000010, "Member 'FGeometryScriptMeshPointSamplingOptions::SubSampleDensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptNonUniformPointSamplingOptions \ +static_assert(alignof(FGeometryScriptNonUniformPointSamplingOptions) == 0x000008, "Wrong alignment on FGeometryScriptNonUniformPointSamplingOptions"); \ +static_assert(sizeof(FGeometryScriptNonUniformPointSamplingOptions) == 0x000018, "Wrong size on FGeometryScriptNonUniformPointSamplingOptions"); \ +static_assert(offsetof(FGeometryScriptNonUniformPointSamplingOptions, MaxSamplingRadius) == 0x000000, "Member 'FGeometryScriptNonUniformPointSamplingOptions::MaxSamplingRadius' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNonUniformPointSamplingOptions, SizeDistribution) == 0x000004, "Member 'FGeometryScriptNonUniformPointSamplingOptions::SizeDistribution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNonUniformPointSamplingOptions, SizeDistributionPower) == 0x000008, "Member 'FGeometryScriptNonUniformPointSamplingOptions::SizeDistributionPower' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNonUniformPointSamplingOptions, WeightMode) == 0x000010, "Member 'FGeometryScriptNonUniformPointSamplingOptions::WeightMode' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptNonUniformPointSamplingOptions, bInvertWeights) == 0x000011, "Member 'FGeometryScriptNonUniformPointSamplingOptions::bInvertWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPlanarSimplifyOptions \ +static_assert(alignof(FGeometryScriptPlanarSimplifyOptions) == 0x000004, "Wrong alignment on FGeometryScriptPlanarSimplifyOptions"); \ +static_assert(sizeof(FGeometryScriptPlanarSimplifyOptions) == 0x000008, "Wrong size on FGeometryScriptPlanarSimplifyOptions"); \ +static_assert(offsetof(FGeometryScriptPlanarSimplifyOptions, AngleThreshold) == 0x000000, "Member 'FGeometryScriptPlanarSimplifyOptions::AngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPlanarSimplifyOptions, bAutoCompact) == 0x000004, "Member 'FGeometryScriptPlanarSimplifyOptions::bAutoCompact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSimplifyMeshOptions \ +static_assert(alignof(FGeometryScriptSimplifyMeshOptions) == 0x000001, "Wrong alignment on FGeometryScriptSimplifyMeshOptions"); \ +static_assert(sizeof(FGeometryScriptSimplifyMeshOptions) == 0x000007, "Wrong size on FGeometryScriptSimplifyMeshOptions"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, Method) == 0x000000, "Member 'FGeometryScriptSimplifyMeshOptions::Method' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bAllowSeamCollapse) == 0x000001, "Member 'FGeometryScriptSimplifyMeshOptions::bAllowSeamCollapse' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bAllowSeamSmoothing) == 0x000002, "Member 'FGeometryScriptSimplifyMeshOptions::bAllowSeamSmoothing' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bAllowSeamSplits) == 0x000003, "Member 'FGeometryScriptSimplifyMeshOptions::bAllowSeamSplits' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bPreserveVertexPositions) == 0x000004, "Member 'FGeometryScriptSimplifyMeshOptions::bPreserveVertexPositions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bRetainQuadricMemory) == 0x000005, "Member 'FGeometryScriptSimplifyMeshOptions::bRetainQuadricMemory' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSimplifyMeshOptions, bAutoCompact) == 0x000006, "Member 'FGeometryScriptSimplifyMeshOptions::bAutoCompact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSpatialQueryOptions \ +static_assert(alignof(FGeometryScriptSpatialQueryOptions) == 0x000004, "Wrong alignment on FGeometryScriptSpatialQueryOptions"); \ +static_assert(sizeof(FGeometryScriptSpatialQueryOptions) == 0x00000C, "Wrong size on FGeometryScriptSpatialQueryOptions"); \ +static_assert(offsetof(FGeometryScriptSpatialQueryOptions, MaxDistance) == 0x000000, "Member 'FGeometryScriptSpatialQueryOptions::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSpatialQueryOptions, bAllowUnsafeModifiedQueries) == 0x000004, "Member 'FGeometryScriptSpatialQueryOptions::bAllowUnsafeModifiedQueries' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSpatialQueryOptions, WindingIsoThreshold) == 0x000008, "Member 'FGeometryScriptSpatialQueryOptions::WindingIsoThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRayHitResult \ +static_assert(alignof(FGeometryScriptRayHitResult) == 0x000008, "Wrong alignment on FGeometryScriptRayHitResult"); \ +static_assert(sizeof(FGeometryScriptRayHitResult) == 0x000040, "Wrong size on FGeometryScriptRayHitResult"); \ +static_assert(offsetof(FGeometryScriptRayHitResult, bHit) == 0x000000, "Member 'FGeometryScriptRayHitResult::bHit' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRayHitResult, RayParameter) == 0x000004, "Member 'FGeometryScriptRayHitResult::RayParameter' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRayHitResult, HitTriangleID) == 0x000008, "Member 'FGeometryScriptRayHitResult::HitTriangleID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRayHitResult, HitPosition) == 0x000010, "Member 'FGeometryScriptRayHitResult::HitPosition' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRayHitResult, HitBaryCoords) == 0x000028, "Member 'FGeometryScriptRayHitResult::HitBaryCoords' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSelectiveTessellateOptions \ +static_assert(alignof(FGeometryScriptSelectiveTessellateOptions) == 0x000001, "Wrong alignment on FGeometryScriptSelectiveTessellateOptions"); \ +static_assert(sizeof(FGeometryScriptSelectiveTessellateOptions) == 0x000002, "Wrong size on FGeometryScriptSelectiveTessellateOptions"); \ +static_assert(offsetof(FGeometryScriptSelectiveTessellateOptions, bEnableMultithreading) == 0x000000, "Member 'FGeometryScriptSelectiveTessellateOptions::bEnableMultithreading' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSelectiveTessellateOptions, EmptyBehavior) == 0x000001, "Member 'FGeometryScriptSelectiveTessellateOptions::EmptyBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptExpMapUVOptions \ +static_assert(alignof(FGeometryScriptExpMapUVOptions) == 0x000004, "Wrong alignment on FGeometryScriptExpMapUVOptions"); \ +static_assert(sizeof(FGeometryScriptExpMapUVOptions) == 0x000008, "Wrong size on FGeometryScriptExpMapUVOptions"); \ +static_assert(offsetof(FGeometryScriptExpMapUVOptions, NormalSmoothingRounds) == 0x000000, "Member 'FGeometryScriptExpMapUVOptions::NormalSmoothingRounds' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptExpMapUVOptions, NormalSmoothingAlpha) == 0x000004, "Member 'FGeometryScriptExpMapUVOptions::NormalSmoothingAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSpectralConformalUVOptions \ +static_assert(alignof(FGeometryScriptSpectralConformalUVOptions) == 0x000001, "Wrong alignment on FGeometryScriptSpectralConformalUVOptions"); \ +static_assert(sizeof(FGeometryScriptSpectralConformalUVOptions) == 0x000001, "Wrong size on FGeometryScriptSpectralConformalUVOptions"); \ +static_assert(offsetof(FGeometryScriptSpectralConformalUVOptions, bPreserveIrregularity) == 0x000000, "Member 'FGeometryScriptSpectralConformalUVOptions::bPreserveIrregularity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptRecomputeUVsOptions \ +static_assert(alignof(FGeometryScriptRecomputeUVsOptions) == 0x000004, "Wrong alignment on FGeometryScriptRecomputeUVsOptions"); \ +static_assert(sizeof(FGeometryScriptRecomputeUVsOptions) == 0x00001C, "Wrong size on FGeometryScriptRecomputeUVsOptions"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, Method) == 0x000000, "Member 'FGeometryScriptRecomputeUVsOptions::Method' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, IslandSource) == 0x000001, "Member 'FGeometryScriptRecomputeUVsOptions::IslandSource' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, ExpMapOptions) == 0x000004, "Member 'FGeometryScriptRecomputeUVsOptions::ExpMapOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, SpectralConformalOptions) == 0x00000C, "Member 'FGeometryScriptRecomputeUVsOptions::SpectralConformalOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, GroupLayer) == 0x000010, "Member 'FGeometryScriptRecomputeUVsOptions::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptRecomputeUVsOptions, bAutoAlignIslandsWithAxes) == 0x000018, "Member 'FGeometryScriptRecomputeUVsOptions::bAutoAlignIslandsWithAxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptPatchBuilderOptions \ +static_assert(alignof(FGeometryScriptPatchBuilderOptions) == 0x000004, "Wrong alignment on FGeometryScriptPatchBuilderOptions"); \ +static_assert(sizeof(FGeometryScriptPatchBuilderOptions) == 0x000034, "Wrong size on FGeometryScriptPatchBuilderOptions"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, InitialPatchCount) == 0x000000, "Member 'FGeometryScriptPatchBuilderOptions::InitialPatchCount' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, MinPatchSize) == 0x000004, "Member 'FGeometryScriptPatchBuilderOptions::MinPatchSize' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, PatchCurvatureAlignmentWeight) == 0x000008, "Member 'FGeometryScriptPatchBuilderOptions::PatchCurvatureAlignmentWeight' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, PatchMergingMetricThresh) == 0x00000C, "Member 'FGeometryScriptPatchBuilderOptions::PatchMergingMetricThresh' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, PatchMergingAngleThresh) == 0x000010, "Member 'FGeometryScriptPatchBuilderOptions::PatchMergingAngleThresh' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, ExpMapOptions) == 0x000014, "Member 'FGeometryScriptPatchBuilderOptions::ExpMapOptions' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, bRespectInputGroups) == 0x00001C, "Member 'FGeometryScriptPatchBuilderOptions::bRespectInputGroups' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, GroupLayer) == 0x000020, "Member 'FGeometryScriptPatchBuilderOptions::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, bAutoPack) == 0x000028, "Member 'FGeometryScriptPatchBuilderOptions::bAutoPack' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptPatchBuilderOptions, PackingOptions) == 0x00002C, "Member 'FGeometryScriptPatchBuilderOptions::PackingOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptXAtlasOptions \ +static_assert(alignof(FGeometryScriptXAtlasOptions) == 0x000004, "Wrong alignment on FGeometryScriptXAtlasOptions"); \ +static_assert(sizeof(FGeometryScriptXAtlasOptions) == 0x000004, "Wrong size on FGeometryScriptXAtlasOptions"); \ +static_assert(offsetof(FGeometryScriptXAtlasOptions, MaxIterations) == 0x000000, "Member 'FGeometryScriptXAtlasOptions::MaxIterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptBlurMeshVertexColorsOptions \ +static_assert(alignof(FGeometryScriptBlurMeshVertexColorsOptions) == 0x000001, "Wrong alignment on FGeometryScriptBlurMeshVertexColorsOptions"); \ +static_assert(sizeof(FGeometryScriptBlurMeshVertexColorsOptions) == 0x000004, "Wrong size on FGeometryScriptBlurMeshVertexColorsOptions"); \ +static_assert(offsetof(FGeometryScriptBlurMeshVertexColorsOptions, Red) == 0x000000, "Member 'FGeometryScriptBlurMeshVertexColorsOptions::Red' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBlurMeshVertexColorsOptions, Green) == 0x000001, "Member 'FGeometryScriptBlurMeshVertexColorsOptions::Green' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBlurMeshVertexColorsOptions, Blue) == 0x000002, "Member 'FGeometryScriptBlurMeshVertexColorsOptions::Blue' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptBlurMeshVertexColorsOptions, alpha) == 0x000003, "Member 'FGeometryScriptBlurMeshVertexColorsOptions::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptMorphologyOptions \ +static_assert(alignof(FGeometryScriptMorphologyOptions) == 0x000004, "Wrong alignment on FGeometryScriptMorphologyOptions"); \ +static_assert(sizeof(FGeometryScriptMorphologyOptions) == 0x000024, "Wrong size on FGeometryScriptMorphologyOptions"); \ +static_assert(offsetof(FGeometryScriptMorphologyOptions, SDFGridParameters) == 0x000000, "Member 'FGeometryScriptMorphologyOptions::SDFGridParameters' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMorphologyOptions, bUseSeparateMeshGrid) == 0x00000C, "Member 'FGeometryScriptMorphologyOptions::bUseSeparateMeshGrid' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMorphologyOptions, MeshGridParameters) == 0x000010, "Member 'FGeometryScriptMorphologyOptions::MeshGridParameters' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMorphologyOptions, Operation) == 0x00001C, "Member 'FGeometryScriptMorphologyOptions::Operation' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptMorphologyOptions, Distance) == 0x000020, "Member 'FGeometryScriptMorphologyOptions::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptOpenPathOffsetOptions \ +static_assert(alignof(FGeometryScriptOpenPathOffsetOptions) == 0x000008, "Wrong alignment on FGeometryScriptOpenPathOffsetOptions"); \ +static_assert(sizeof(FGeometryScriptOpenPathOffsetOptions) == 0x000028, "Wrong size on FGeometryScriptOpenPathOffsetOptions"); \ +static_assert(offsetof(FGeometryScriptOpenPathOffsetOptions, JoinType) == 0x000000, "Member 'FGeometryScriptOpenPathOffsetOptions::JoinType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptOpenPathOffsetOptions, MiterLimit) == 0x000008, "Member 'FGeometryScriptOpenPathOffsetOptions::MiterLimit' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptOpenPathOffsetOptions, EndType) == 0x000010, "Member 'FGeometryScriptOpenPathOffsetOptions::EndType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptOpenPathOffsetOptions, StepsPerRadianScale) == 0x000018, "Member 'FGeometryScriptOpenPathOffsetOptions::StepsPerRadianScale' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptOpenPathOffsetOptions, MaximumStepsPerRadian) == 0x000020, "Member 'FGeometryScriptOpenPathOffsetOptions::MaximumStepsPerRadian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptSplineSamplingOptions \ +static_assert(alignof(FGeometryScriptSplineSamplingOptions) == 0x000004, "Wrong alignment on FGeometryScriptSplineSamplingOptions"); \ +static_assert(sizeof(FGeometryScriptSplineSamplingOptions) == 0x00000C, "Wrong size on FGeometryScriptSplineSamplingOptions"); \ +static_assert(offsetof(FGeometryScriptSplineSamplingOptions, NumSamples) == 0x000000, "Member 'FGeometryScriptSplineSamplingOptions::NumSamples' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplineSamplingOptions, ErrorTolerance) == 0x000004, "Member 'FGeometryScriptSplineSamplingOptions::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplineSamplingOptions, SampleSpacing) == 0x000008, "Member 'FGeometryScriptSplineSamplingOptions::SampleSpacing' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptSplineSamplingOptions, CoordinateSpace) == 0x000009, "Member 'FGeometryScriptSplineSamplingOptions::CoordinateSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryScriptCopyMeshFromComponentOptions \ +static_assert(alignof(FGeometryScriptCopyMeshFromComponentOptions) == 0x000004, "Wrong alignment on FGeometryScriptCopyMeshFromComponentOptions"); \ +static_assert(sizeof(FGeometryScriptCopyMeshFromComponentOptions) == 0x00000C, "Wrong size on FGeometryScriptCopyMeshFromComponentOptions"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromComponentOptions, bWantNormals) == 0x000000, "Member 'FGeometryScriptCopyMeshFromComponentOptions::bWantNormals' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromComponentOptions, bWantTangents) == 0x000001, "Member 'FGeometryScriptCopyMeshFromComponentOptions::bWantTangents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryScriptCopyMeshFromComponentOptions, RequestedLOD) == 0x000004, "Member 'FGeometryScriptCopyMeshFromComponentOptions::RequestedLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptDebug \ +static_assert(alignof(UGeometryScriptDebug) == 0x000008, "Wrong alignment on UGeometryScriptDebug"); \ +static_assert(sizeof(UGeometryScriptDebug) == 0x000038, "Wrong size on UGeometryScriptDebug"); \ +static_assert(offsetof(UGeometryScriptDebug, Messages) == 0x000028, "Member 'UGeometryScriptDebug::Messages' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision \ +static_assert(alignof(GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision) == 0x000008, "Wrong alignment on GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision"); \ +static_assert(sizeof(GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision) == 0x000018, "Wrong size on GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision, Component) == 0x000000, "Member 'GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision::Component' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision, bEmitTransaction) == 0x000008, "Member 'GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision::bEmitTransaction' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision, Debug) == 0x000010, "Member 'GeometryScriptLibrary_CollisionFunctions_ResetDynamicMeshCollision::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh \ +static_assert(alignof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh) == 0x000050, "Wrong size on GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh, FromDynamicMesh) == 0x000000, "Member 'GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh::FromDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh, ToDynamicMeshComponent) == 0x000008, "Member 'GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh::ToDynamicMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh, Options) == 0x000010, "Member 'GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh, Debug) == 0x000040, "Member 'GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_CollisionFunctions_SetDynamicMeshCollisionFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent \ +static_assert(alignof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent) == 0x000008, "Wrong alignment on GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent"); \ +static_assert(sizeof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent) == 0x000020, "Wrong size on GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent, StaticMeshAsset) == 0x000000, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent::StaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent, SourceComponent) == 0x000008, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent, Options) == 0x000010, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent, Debug) == 0x000018, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromComponent::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh \ +static_assert(alignof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh) == 0x000050, "Wrong size on GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh, FromDynamicMesh) == 0x000000, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh::FromDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh, ToStaticMeshAsset) == 0x000008, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh::ToStaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh, Options) == 0x000010, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh, Debug) == 0x000040, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_CollisionFunctions_SetStaticMeshCollisionFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_CollisionFunctions \ +static_assert(alignof(UGeometryScriptLibrary_CollisionFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_CollisionFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_CollisionFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_CollisionFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition \ +static_assert(alignof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition"); \ +static_assert(sizeof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition) == 0x000050, "Wrong size on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, CopyToMesh) == 0x000008, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::CopyToMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, CopyToMeshOut) == 0x000010, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::CopyToMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, Options) == 0x000018, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, Debug) == 0x000040, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexDecomposition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull \ +static_assert(alignof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull"); \ +static_assert(sizeof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull) == 0x000048, "Wrong size on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, CopyToMesh) == 0x000008, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::CopyToMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, CopyToMeshOut) == 0x000010, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::CopyToMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, Selection) == 0x000018, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, Options) == 0x000028, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, Debug) == 0x000038, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshConvexHull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull \ +static_assert(alignof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull) == 0x000010, "Wrong alignment on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull"); \ +static_assert(sizeof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull) == 0x0000B0, "Wrong size on GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, CopyToMesh) == 0x000008, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::CopyToMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, CopyToMeshOut) == 0x000010, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::CopyToMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, ProjectionFrame) == 0x000020, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::ProjectionFrame' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, Options) == 0x000080, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, Debug) == 0x000098, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_ContainmentFunctions_ComputeMeshSweptHull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_ContainmentFunctions \ +static_assert(alignof(UGeometryScriptLibrary_ContainmentFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_ContainmentFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_ContainmentFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_ContainmentFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ClearColorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ClearColorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ClearColorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ClearColorList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ClearColorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearColorList, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearColorList::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearColorList, ClearColor) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearColorList::ClearColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList, ClearValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearIndexList::ClearValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList, ClearValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearScalarList::ClearValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ClearUVList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ClearUVList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ClearUVList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ClearUVList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ClearUVList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearUVList, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearUVList::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearUVList, ClearUV) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearUVList::ClearUV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList, ClearValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ClearVectorList::ClearValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList, ColorArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList::ColorArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList, ColorList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToColorList::ColorList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList) == 0x000030, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList, IndexArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList::IndexArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList, IndexList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList, IndexType) == 0x000028, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToIndexList::IndexType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList, VectorArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList, ScalarList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToScalarList::ScalarList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList, TriangleArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList::TriangleArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList, TriangleList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToTriangleList::TriangleList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList, UVArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList::UVArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList, UVList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToUVList::UVList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList, VectorArray) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList, VectorList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertArrayToVectorList::VectorList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray, ColorArray) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertColorListToArray::ColorArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray, IndexArray) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertIndexListToArray::IndexArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray, ScalarArray) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertScalarListToArray::ScalarArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray, TriangleList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray, TriangleArray) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertTriangleListToArray::TriangleArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray, UVArray) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertUVListToArray::UVArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray, VectorArray) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ConvertVectorListToArray::VectorArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList, DuplicateList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateColorList::DuplicateList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList) == 0x000030, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList, DuplicateList) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateIndexList::DuplicateList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList, DuplicateList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateScalarList::DuplicateList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList, DuplicateList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateUVList::DuplicateList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList, DuplicateList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_DuplicateVectorList::DuplicateList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel, ScalarList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel, ChannelIndex) == 0x000020, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannel::ChannelIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels) == 0x000030, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels, VectorList) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels, XChannelIndex) == 0x000020, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels::XChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels, YChannelIndex) == 0x000024, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels::YChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels, ZChannelIndex) == 0x000028, "Member 'GeometryScriptLibrary_ListUtilityFunctions_ExtractColorListChannels::ZChannelIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem, bIsValidIndex) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetColorListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem, Index_0) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem, bIsValidIndex) == 0x00001C, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetIndexListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem) == 0x000020, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem, bIsValidIndex) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetScalarListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem, TriangleList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem, Triangle) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem::Triangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem, bIsValidTriangle) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle, TriangleList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLastTriangle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength, TriangleList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetTriangleListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem, bIsValidIndex) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetUVListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem) == 0x000030, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem, bIsValidIndex) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength) == 0x000018, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_GetVectorListLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem, ColorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem, NewColor) == 0x000014, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem::NewColor' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem, bIsValidIndex) == 0x000024, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetColorListItem::bIsValidIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem, IndexList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem, Index_0) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem, NewValue) == 0x00001C, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem::NewValue' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem, bIsValidIndex) == 0x000020, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetIndexListItem::bIsValidIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem) == 0x000028, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem, NewValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem::NewValue' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem, bIsValidIndex) == 0x000020, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetScalarListItem::bIsValidIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem) == 0x000030, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem, UVList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem, NewUV) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem::NewUV' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem, bIsValidIndex) == 0x000028, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetUVListItem::bIsValidIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem \ +static_assert(alignof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem) == 0x000008, "Wrong alignment on GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem"); \ +static_assert(sizeof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem) == 0x000038, "Wrong size on GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem, Index_0) == 0x000010, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem, NewValue) == 0x000018, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem::NewValue' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem, bIsValidIndex) == 0x000030, "Member 'GeometryScriptLibrary_ListUtilityFunctions_SetVectorListItem::bIsValidIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_ListUtilityFunctions \ +static_assert(alignof(UGeometryScriptLibrary_ListUtilityFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_ListUtilityFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_ListUtilityFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_ListUtilityFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh \ +static_assert(alignof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, FromSkeletalMeshAsset) == 0x000000, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::FromSkeletalMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, ToDynamicMesh) == 0x000008, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::ToDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, AssetOptions) == 0x000010, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::AssetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, RequestedLOD) == 0x000014, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::RequestedLOD' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, Outcome) == 0x00001C, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, Debug) == 0x000020, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromSkeletalMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh \ +static_assert(alignof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, FromStaticMeshAsset) == 0x000000, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::FromStaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, ToDynamicMesh) == 0x000008, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::ToDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, AssetOptions) == 0x000010, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::AssetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, RequestedLOD) == 0x000014, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::RequestedLOD' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, Outcome) == 0x00001C, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, Debug) == 0x000020, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshFromStaticMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh \ +static_assert(alignof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh) == 0x0000B0, "Wrong size on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, FromDynamicMesh) == 0x000000, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::FromDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, ToSkeletalMeshAsset) == 0x000008, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::ToSkeletalMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, Options) == 0x000010, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, TargetLod) == 0x000090, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::TargetLod' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, Outcome) == 0x000098, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToSkeletalMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh \ +static_assert(alignof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh) == 0x0000B0, "Wrong size on GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, FromDynamicMesh) == 0x000000, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::FromDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, ToStaticMeshAsset) == 0x000008, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::ToStaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, Options) == 0x000010, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, TargetLod) == 0x000090, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::TargetLod' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, Outcome) == 0x000098, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_StaticMeshFunctions_CopyMeshToStaticMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh \ +static_assert(alignof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, FromStaticMeshAsset) == 0x000000, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::FromStaticMeshAsset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, RequestedLOD) == 0x000008, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::RequestedLOD' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, MaterialList) == 0x000010, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::MaterialList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, MaterialIndex) == 0x000020, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::MaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, Outcome) == 0x000030, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh, Debug) == 0x000038, "Member 'GeometryScriptLibrary_StaticMeshFunctions_GetSectionMaterialListFromStaticMesh::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_StaticMeshFunctions \ +static_assert(alignof(UGeometryScriptLibrary_StaticMeshFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_StaticMeshFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_StaticMeshFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_StaticMeshFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_BakeTexture \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_BakeTexture"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture) == 0x000140, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_BakeTexture"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, TargetTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::TargetTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, TargetOptions) == 0x000070, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::TargetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, SourceMesh) == 0x000078, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::SourceMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, SourceTransform) == 0x000080, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::SourceTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, SourceOptions) == 0x0000E0, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::SourceOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, BakeTypes) == 0x0000F0, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::BakeTypes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, BakeOptions) == 0x000100, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::BakeOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, Debug) == 0x000120, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTexture, ReturnValue) == 0x000128, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures) == 0x000150, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, TargetLocalToWorld) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::TargetLocalToWorld' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, TargetOptions) == 0x000070, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::TargetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, SourceActors) == 0x000078, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::SourceActors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, BakeOptions) == 0x000088, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::BakeOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, Debug) == 0x0000B0, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures, ReturnValue) == 0x0000B8, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeTextureFromRenderCaptures::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_BakeVertex \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_BakeVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex) == 0x000190, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_BakeVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, TargetTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::TargetTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, TargetOptions) == 0x000070, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::TargetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, SourceMesh) == 0x000078, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::SourceMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, SourceTransform) == 0x000080, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::SourceTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, SourceOptions) == 0x0000E0, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::SourceOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, BakeTypes) == 0x0000F0, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::BakeTypes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, BakeOptions) == 0x000170, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::BakeOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, Debug) == 0x000180, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_BakeVertex, ReturnValue) == 0x000188, "Member 'GeometryScriptLibrary_MeshBakeFunctions_BakeVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion, OcclusionRays) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion::OcclusionRays' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion, MaxDistance) == 0x000004, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion, SpreadAngle) == 0x000008, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion::SpreadAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion, BiasAngle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion::BiasAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeAmbientOcclusion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal, OcclusionRays) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal::OcclusionRays' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal, MaxDistance) == 0x000004, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal, SpreadAngle) == 0x000008, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal::SpreadAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeBentNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, CurvatureType) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::CurvatureType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, ColorMapping) == 0x000001, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::ColorMapping' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, ColorRangeMultiplier) == 0x000004, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::ColorRangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, MinRangeMultiplier) == 0x000008, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::MinRangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, Clamping) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::Clamping' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeCurvature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeFaceNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture, MaterialIDSourceTextures) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture::MaterialIDSourceTextures' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture, SourceUVLayer) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture::SourceUVLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeMultiTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeObjectNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTangentNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture, SourceTexture) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture::SourceTexture' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture, SourceUVLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture::SourceUVLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor \ +static_assert(alignof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_MeshBakeFunctions_MakeBakeTypeVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshBakeFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshBakeFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshBakeFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshBakeFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshBakeFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, NewTrianglesList) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::NewTrianglesList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, NewIndicesList) == 0x000018, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::NewIndicesList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, NewTriangleGroupID) == 0x000030, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::NewTriangleGroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, bDeferChangeNotifications) == 0x000034, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTrianglesToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, NewTriangle) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::NewTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, NewTriangleIndex) == 0x000014, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::NewTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, NewTriangleGroupID) == 0x000018, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::NewTriangleGroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, bDeferChangeNotifications) == 0x00001C, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddTriangleToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh, NewPosition) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh::NewPosition' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh, NewVertexIndex) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh::NewVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh, bDeferChangeNotifications) == 0x000024, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVertexToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh, NewPositionsList) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh::NewPositionsList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh, NewIndicesList) == 0x000018, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh::NewIndicesList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh, bDeferChangeNotifications) == 0x000030, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AddVerticesToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh) == 0x000108, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, Buffers) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::Buffers' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, NewTriangleIndicesList) == 0x0000D8, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::NewTriangleIndicesList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, MaterialID) == 0x0000F0, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, bDeferChangeNotifications) == 0x0000F4, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, Debug) == 0x0000F8, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh, ReturnValue) == 0x000100, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendBuffersToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, AppendMesh_0) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::AppendMesh_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, AppendTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::AppendTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, bDeferChangeNotifications) == 0x000070, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, AppendOptions) == 0x000071, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::AppendOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, AppendMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::AppendMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, AppendTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::AppendTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, RepeatCount) == 0x000070, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::RepeatCount' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, bApplyTransformToFirstInstance) == 0x000074, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::bApplyTransformToFirstInstance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, bDeferChangeNotifications) == 0x000075, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, AppendOptions) == 0x000076, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::AppendOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshRepeated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, AppendMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::AppendMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, AppendTransforms) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::AppendTransforms' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, ConstantTransform) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::ConstantTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, bConstantTransformIsRelative) == 0x000080, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::bConstantTransformIsRelative' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, bDeferChangeNotifications) == 0x000081, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, AppendOptions) == 0x000082, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::AppendOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_AppendMeshTransformed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh, NumDeleted) == 0x000018, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh::NumDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh, bDeferChangeNotifications) == 0x00001C, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteSelectedTrianglesFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh, bWasTriangleDeleted) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh::bWasTriangleDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh, bDeferChangeNotifications) == 0x00000D, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTriangleFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh, TriangleList) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh, NumDeleted) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh::NumDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh, bDeferChangeNotifications) == 0x000024, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteTrianglesFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh, bWasVertexDeleted) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh::bWasVertexDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh, bDeferChangeNotifications) == 0x00000D, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVertexFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh, VertexList) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh::VertexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh, NumDeleted) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh::NumDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh, bDeferChangeNotifications) == 0x000024, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DeleteVerticesFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes, bDeferChangeNotifications) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_DiscardMeshAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions, PositionList) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions::PositionList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetAllMeshVertexPositions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition \ +static_assert(alignof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, NewPosition) == 0x000010, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::NewPosition' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, bIsValidVertex) == 0x000028, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::bIsValidVertex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, bDeferChangeNotifications) == 0x000029, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshBasicEditFunctions_SetVertexPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshBasicEditFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshBasicEditFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshBasicEditFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshBasicEditFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshBasicEditFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, Skeleton) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, Options) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, Profile) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_ComputeSmoothBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh, SourceMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh::SourceMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh, TargetMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_CopyBonesFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_DiscardBonesFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo, BonesInfo) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo::BonesInfo' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetAllBonesInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, BoneName) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, bRecursive) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, bIsValidBoneName) == 0x000011, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::bIsValidBoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, ChildrenInfo) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::ChildrenInfo' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, BoneName) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, bIsValidBoneName) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::bIsValidBoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, BoneIndex) == 0x000014, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo) == 0x000110, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, BoneName) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, bIsValidBoneName) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::bIsValidBoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, BoneInfo) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::BoneInfo' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, Debug) == 0x000100, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo, ReturnValue) == 0x000108, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetBoneInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, BoneWeight) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::BoneWeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, bHasValidBoneWeights) == 0x000014, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::bHasValidBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, Profile) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetLargestVertexBoneWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex, bHasBoneWeights) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex::bHasBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex, MaxBoneIndex) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex::MaxBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex, Profile) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetMaxBoneWeightIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName, BoneName) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetRootBoneName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, BoneWeights) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::BoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, bHasValidBoneWeights) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::bHasValidBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, Profile) == 0x000024, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_GetVertexBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights, bProfileExisted) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights::bProfileExisted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights, bReplaceExistingProfile) == 0x000009, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights::bReplaceExistingProfile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights, Profile) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshCreateBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights, bHasBoneWeights) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights::bHasBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights, Profile) == 0x00000C, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_MeshHasBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights, BoneWeights) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights::BoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights, Profile) == 0x000018, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetAllVertexBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, BoneWeights) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::BoneWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, bIsValidVertexID) == 0x000020, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::bIsValidVertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, Profile) == 0x000024, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::Profile' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_SetVertexBoneWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh) == 0x000060, "Wrong size on GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh, SourceMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh::SourceMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh, TargetMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh, Options) == 0x000010, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh, Debug) == 0x000050, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_MeshBoneWeightFunctions_TransferBoneWeightsFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshBoneWeightFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshBoneWeightFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshBoneWeightFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshBoneWeightFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshBoneWeightFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean \ +static_assert(alignof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean) == 0x000100, "Wrong size on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, TargetTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::TargetTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, ToolMesh) == 0x000070, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::ToolMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, ToolTransform) == 0x000080, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::ToolTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, Operation) == 0x0000E0, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::Operation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, Options) == 0x0000E4, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, Debug) == 0x0000F0, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean, ReturnValue) == 0x0000F8, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshBoolean::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror \ +static_assert(alignof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror, MirrorFrame) == 0x000010, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror::MirrorFrame' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror, Options) == 0x000070, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshMirror::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut \ +static_assert(alignof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut, CutFrame) == 0x000010, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut::CutFrame' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut, Options) == 0x000070, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneCut::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice \ +static_assert(alignof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice, CutFrame) == 0x000010, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice::CutFrame' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice, Options) == 0x000070, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshPlaneSlice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion \ +static_assert(alignof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshBooleanFunctions_ApplyMeshSelfUnion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshBooleanFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshBooleanFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshBooleanFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshBooleanFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshBooleanFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh) == 0x000100, "Wrong size on GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, TargetTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::TargetTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, OtherMesh) == 0x000070, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::OtherMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, OtherTransform) == 0x000080, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::OtherTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, bIsIntersecting) == 0x0000E0, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::bIsIntersecting' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, Debug) == 0x0000E8, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh, ReturnValue) == 0x0000F0, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsIntersectingMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs \ +static_assert(alignof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, OtherMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::OtherMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, Options) == 0x000010, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, bIsSameMesh) == 0x00001C, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::bIsSameMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_IsSameMeshAs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes \ +static_assert(alignof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, OtherMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::OtherMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, Options) == 0x000010, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, MaxDistance) == 0x000018, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, MinDistance) == 0x000020, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, AverageDistance) == 0x000028, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::AverageDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, RootMeanSqrDeviation) == 0x000030, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::RootMeanSqrDeviation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshComparisonFunctions_MeasureDistancesBetweenMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshComparisonFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshComparisonFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshComparisonFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshComparisonFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshComparisonFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, StoreToSubmesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::StoreToSubmesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, Selection) == 0x000010, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, StoreToSubmeshOut) == 0x000020, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::StoreToSubmeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, bAppendToExisting) == 0x000028, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::bAppendToExisting' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, bPreserveGroupIDs) == 0x000029, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::bPreserveGroupIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshSelectionToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh, CopyFromMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh::CopyFromMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh, CopyToMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh::CopyToMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh, CopyToMeshOut) == 0x000010, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh::CopyToMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_CopyMeshToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, StoreToSubmesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::StoreToSubmesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, TriangleList) == 0x000010, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, StoreToSubmeshOut) == 0x000028, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::StoreToSubmeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_GetSubMeshFromMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents, ComponentMeshes) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents::ComponentMeshes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents, MeshPool) == 0x000018, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents::MeshPool' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, ComponentMeshes) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::ComponentMeshes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, ComponentMaterialIDs) == 0x000018, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::ComponentMaterialIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, MeshPool) == 0x000028, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::MeshPool' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, ComponentMeshes) == 0x000010, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::ComponentMeshes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, ComponentPolygroups) == 0x000020, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::ComponentPolygroups' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, MeshPool) == 0x000030, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::MeshPool' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshDecompositionFunctions_SplitMeshByPolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshDecompositionFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshDecompositionFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshDecompositionFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshDecompositionFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshDecompositionFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, BendOrientation) == 0x000020, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::BendOrientation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, BendAngle) == 0x000080, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::BendAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, BendExtent) == 0x000084, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::BendExtent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyBendWarpToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, VectorList) == 0x000018, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, Magnitude) == 0x000028, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromPerVertexVectors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap) == 0x000070, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, Texture) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::Texture' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, Selection) == 0x000010, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, Options) == 0x000020, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, UVLayer) == 0x000058, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::UVLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, Debug) == 0x000060, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap, ReturnValue) == 0x000068, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyDisplaceFromTextureMap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, FlareOrientation) == 0x000020, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::FlareOrientation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, FlarePercentX) == 0x000080, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::FlarePercentX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, FlarePercentY) == 0x000084, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::FlarePercentY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, FlareExtent) == 0x000088, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::FlareExtent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, Debug) == 0x000090, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyFlareWarpToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh, Options) == 0x000018, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyIterativeSmoothingToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, WarpOrientation) == 0x000010, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::WarpOrientation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, WarpType) == 0x000070, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::WarpType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, Options) == 0x000074, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyMathWarpToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh, Options) == 0x000018, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh, Debug) == 0x000048, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyPerlinNoiseToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, TwistOrientation) == 0x000020, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::TwistOrientation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, TwistAngle) == 0x000080, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::TwistAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, TwistExtent) == 0x000084, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::TwistExtent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshDeformFunctions_ApplyTwistWarpToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshDeformFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshDeformFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshDeformFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshDeformFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshDeformFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath \ +static_assert(alignof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath) == 0x000078, "Wrong size on GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, Direction) == 0x000008, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::Direction' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, StartTriangleID) == 0x000020, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::StartTriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, StartBaryCoords) == 0x000028, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::StartBaryCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, MaxPathLength) == 0x000040, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::MaxPathLength' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, SurfacePath) == 0x000048, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::SurfacePath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, bFoundErrors) == 0x000060, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::bFoundErrors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, Debug) == 0x000068, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_CreateSurfacePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath \ +static_assert(alignof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath) == 0x000078, "Wrong size on GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, StartTriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::StartTriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, StartBaryCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::StartBaryCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, EndTriangleID) == 0x000028, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::EndTriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, EndBaryCoords) == 0x000030, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::EndBaryCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, ShortestPath) == 0x000048, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::ShortestPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, bFoundErrors) == 0x000060, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::bFoundErrors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, Debug) == 0x000068, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestSurfacePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath \ +static_assert(alignof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, StartVertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::StartVertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, EndVertexID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::EndVertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, VertexIDList) == 0x000010, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::VertexIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, bFoundErrors) == 0x000028, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::bFoundErrors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshGeodesicFunctions_GetShortestVertexPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshGeodesicFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshGeodesicFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshGeodesicFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshGeodesicFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshGeodesicFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs, ClearValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs::ClearValue' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_ClearMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs, SourceMaterialList) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs::SourceMaterialList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs, CompactedMaterialList) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs::CompactedMaterialList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_CompactMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, MaterialID) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, NumDeleted) == 0x00000C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::NumDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, bDeferChangeNotifications) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_DeleteTrianglesByMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_EnableMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs, MaterialIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs::MaterialIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs, bHasMaterialIDs) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs::bHasMaterialIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetAllTriangleMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles, TriangleIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles::TriangleIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles, MaterialIDList) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles::MaterialIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaterialIDsOfTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID, bHasMaterialIDs) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID::bHasMaterialIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID, ReturnValue) == 0x00000C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetMaxMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID, bIsValidTriangle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTriangleMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID, MaterialID) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID, TriangleIDList) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID::TriangleIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_GetTrianglesByMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs, FromMaterialID) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs::FromMaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs, ToMaterialID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs::ToMaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_RemapMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs, TriangleMaterialIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs::TriangleMaterialIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs, bDeferChangeNotifications) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetAllTriangleMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, MaterialID) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, bDeferChangeNotifications) == 0x00001C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDForMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, TriangleIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::TriangleIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, MaterialID) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, bDeferChangeNotifications) == 0x000024, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetMaterialIDOnTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, PolygroupID) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::PolygroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, MaterialID) == 0x000014, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, bIsValidPolygroupID) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::bIsValidPolygroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, bDeferChangeNotifications) == 0x000019, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetPolygroupMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID \ +static_assert(alignof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, MaterialID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::MaterialID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, bIsValidTriangle) == 0x000010, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, bDeferChangeNotifications) == 0x000011, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshMaterialFunctions_SetTriangleMaterialID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshMaterialFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshMaterialFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshMaterialFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshMaterialFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshMaterialFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, BevelMode) == 0x000018, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::BevelMode' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, BevelOptions) == 0x00001C, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::BevelOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshBevelSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces, bAllowBowtiesInOutput) == 0x000018, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces::bAllowBowtiesInOutput' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDisconnectFaces::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, NewTriangles) == 0x000018, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::NewTriangles' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, GroupOptions) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::GroupOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshDuplicateFaces::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0 \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshExtrude_Compatibility_5p0::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces, Selection) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshInsetOutsetFaces::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces) == 0x000060, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces, Selection) == 0x000040, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces, Debug) == 0x000050, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshLinearExtrudeFaces::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces, Selection) == 0x000020, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshOffsetFaces::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel) == 0x0000E0, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel, Options) == 0x000010, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel, Debug) == 0x0000D0, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel, ReturnValue) == 0x0000D8, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshPolygroupBevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell \ +static_assert(alignof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshModelingFunctions_ApplyMeshShell::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshModelingFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshModelingFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshModelingFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshModelingFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshModelingFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_AutoRepairNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals, SplitOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals::SplitOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals, CalculateOptions) == 0x00001C, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals::CalculateOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeSplitNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_ComputeTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_DiscardTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_FlipNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents, bHasTangents) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents::bHasTangents' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshHasTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, NormalList) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::NormalList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, bIsValidNormalSet) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::bIsValidNormalSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, bHasVertexIDGaps) == 0x000019, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, bAverageSplitVertexValues) == 0x00001A, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::bAverageSplitVertexValues' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, TangentXList) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::TangentXList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, TangentYList) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::TangentYList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, bIsValidTangentSet) == 0x000028, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::bIsValidTangentSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, bHasVertexIDGaps) == 0x000029, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, bAverageSplitVertexValues) == 0x00002A, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::bAverageSplitVertexValues' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_GetMeshPerVertexTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals, CalculateOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals::CalculateOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals, bDeferChangeNotifications) == 0x00000A, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, CalculateOptions) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::CalculateOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, bDeferChangeNotifications) == 0x00001A, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_RecomputeNormalsForMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals, VertexNormalList) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals::VertexNormalList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents, TangentXList) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents::TangentXList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents, TangentYList) == 0x000018, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents::TangentYList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshPerVertexTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals) == 0x000068, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, Normals) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::Normals' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, bIsValidTriangle) == 0x000058, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, bDeferChangeNotifications) == 0x000059, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals, ReturnValue) == 0x000060, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetMeshTriangleNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerFaceNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_SetPerVertexNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal) == 0x000070, "Wrong size on GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, bUpdateNormal) == 0x00000C, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::bUpdateNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, NewNormal) == 0x000010, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::NewNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, bUpdateTangents) == 0x000028, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::bUpdateTangents' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, NewTangentX) == 0x000030, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::NewTangentX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, NewTangentY) == 0x000048, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::NewTangentY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, bIsValidVertex) == 0x000060, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::bIsValidVertex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, bMergeSplitValues) == 0x000061, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::bMergeSplitValues' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, bDeferChangeNotifications) == 0x000062, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal, ReturnValue) == 0x000068, "Member 'GeometryScriptLibrary_MeshNormalsFunctions_UpdateVertexNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshNormalsFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshNormalsFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshNormalsFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshNormalsFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshNormalsFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups, ClearValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups::ClearValue' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ClearPolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, CreaseAngle) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::CreaseAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, MinGroupSize) == 0x000014, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::MinGroupSize' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromAngleThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, bRespectUVSeams) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::bRespectUVSeams' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, bRespectHardNormals) == 0x000011, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::bRespectHardNormals' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, QuadAdjacencyWeight) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::QuadAdjacencyWeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, QuadMetricClamp) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::QuadMetricClamp' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, MaxSearchRounds) == 0x000028, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::MaxSearchRounds' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ComputePolygroupsFromPolygonDetection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertComponentsToPolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups, UVLayer) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups::UVLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_ConvertUVIslandsToPolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer, FromGroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer::FromGroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer, ToGroupLayer) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer::ToGroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_CopyPolygroupsLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, PolygroupID) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::PolygroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, NumDeleted) == 0x000014, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::NumDeleted' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, bDeferChangeNotifications) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_DeleteTrianglesInPolygroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_EnablePolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs, PolygroupIDsOut) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs::PolygroupIDsOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetAllTrianglePolygroupIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh, PolygroupIDsOut) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh::PolygroupIDsOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetPolygroupIDsInMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID, TriangleID) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID, bIsValidTriangle) == 0x000014, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglePolygroupID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup, PolygroupID) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup::PolygroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup, TriangleIDsOut) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup::TriangleIDsOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_GetTrianglesInPolygroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers, NumLayers) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers::NumLayers' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetNumExtendedPolygroupLayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, GroupLayer) == 0x000008, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, Selection) == 0x000010, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, SetPolygroupIDOut) == 0x000020, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::SetPolygroupIDOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, SetPolygroupID) == 0x000024, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::SetPolygroupID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, bGenerateNewPolygroup) == 0x000028, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::bGenerateNewPolygroup' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, bDeferChangeNotifications) == 0x000029, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshPolygroupFunctions_SetPolygroupForMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshPolygroupFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshPolygroupFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshPolygroupFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshPolygroupFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshPolygroupFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox) == 0x0000D0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, Box) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, StepsX) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::StepsX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, StepsY) == 0x0000AC, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::StepsY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, StepsZ) == 0x0000B0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::StepsZ' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, Debug) == 0x0000B8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox, ReturnValue) == 0x0000C0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, DimensionX) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::DimensionX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, DimensionY) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::DimensionY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, DimensionZ) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::DimensionZ' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, StepsX) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::StepsX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, StepsY) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::StepsY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, StepsZ) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::StepsZ' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, Origin) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, Debug) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, Radius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, LineLength) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::LineLength' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, HemisphereSteps) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::HemisphereSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, CircleSteps) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::CircleSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, Origin) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCapsule::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, BaseRadius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::BaseRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, TopRadius) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::TopRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, Height) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::Height' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, RadialSteps) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::RadialSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, HeightSteps) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::HeightSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, bCapped) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, Origin) == 0x000085, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, StepWidth) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::StepWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, StepHeight) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::StepHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, InnerRadius) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, CurveAngle) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::CurveAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, NumSteps) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::NumSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, bFloating) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::bFloating' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCurvedStairs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, Radius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, Height) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::Height' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, RadialSteps) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::RadialSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, HeightSteps) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::HeightSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, bCapped) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, Origin) == 0x000081, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendCylinder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D) == 0x0000C0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, VertexPositions) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::VertexPositions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, ConstrainedEdges) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::ConstrainedEdges' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, TriangulationOptions) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::TriangulationOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, PositionsToVertexIDs) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::PositionsToVertexIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, bHasDuplicateVertices) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::bHasDuplicateVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, Debug) == 0x0000B0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D, ReturnValue) == 0x0000B8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDelaunayTriangulation2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, Radius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, AngleSteps) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::AngleSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, SpokeSteps) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::SpokeSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, StartAngle) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::StartAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, EndAngle) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::EndAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, HoleRadius) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::HoleRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendDisc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, StepWidth) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::StepWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, StepHeight) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::StepHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, StepDepth) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::StepDepth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, NumSteps) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::NumSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, bFloating) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::bFloating' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendLinearStairs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, PolygonList) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, TriangulationOptions) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::TriangulationOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, bTriangulationError) == 0x000081, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::bTriangulationError' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendPolygonListTriangulation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0 \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, DimensionX) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::DimensionX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, DimensionY) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::DimensionY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, StepsWidth) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::StepsWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, StepsHeight) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::StepsHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangle_Compatibility_5_0::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, DimensionX) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::DimensionX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, DimensionY) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::DimensionY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, StepsWidth) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::StepsWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, StepsHeight) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::StepsHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRectangleXY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, PathVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::PathVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, RevolveOptions) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::RevolveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, Steps) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::Steps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, bCapped) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, RevolveOptions) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::RevolveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, Radius) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, Steps) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::Steps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRevolvePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0 \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, DimensionX) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::DimensionX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, DimensionY) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::DimensionY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, CornerRadius) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::CornerRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, StepsWidth) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::StepsWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, StepsHeight) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::StepsHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, StepsRound) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::StepsRound' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangle_Compatibility_5_0::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, DimensionX) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::DimensionX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, DimensionY) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::DimensionY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, CornerRadius) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::CornerRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, StepsWidth) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::StepsWidth' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, StepsHeight) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::StepsHeight' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, StepsRound) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::StepsRound' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendRoundRectangleXY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, Height) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::Height' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, HeightSteps) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::HeightSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, bCapped) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, Origin) == 0x000089, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, Debug) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleExtrudePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, SweepPath) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::SweepPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, bLoop) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::bLoop' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, bCapped) == 0x000091, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, StartScale) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::StartScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, EndScale) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::EndScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSimpleSweptPolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, Radius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, StepsX) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::StepsX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, StepsY) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::StepsY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, StepsZ) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::StepsZ' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, Origin) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, Radius) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, StepsPhi) == 0x000074, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::StepsPhi' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, StepsTheta) == 0x000078, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::StepsTheta' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, Origin) == 0x00007C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSphereLatLong::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, RevolveOptions) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::RevolveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, Radius) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, Steps) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::Steps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, RisePerRevolution) == 0x00009C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::RisePerRevolution' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSpiralRevolvePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, SweepPath) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::SweepPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, bLoop) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::bLoop' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, bCapped) == 0x000091, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::bCapped' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, StartScale) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::StartScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, EndScale) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::EndScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, RotationAngleDeg) == 0x00009C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::RotationAngleDeg' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, Debug) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon, ReturnValue) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline) == 0x0000D0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, PolylineVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::PolylineVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, SweepPath) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::SweepPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, PolylineTexParamU) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::PolylineTexParamU' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, SweepPathTexParamV) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::SweepPathTexParamV' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, bLoop) == 0x0000B0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::bLoop' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, StartScale) == 0x0000B4, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::StartScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, EndScale) == 0x0000B8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::EndScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, RotationAngleDeg) == 0x0000BC, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::RotationAngleDeg' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, Debug) == 0x0000C0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline, ReturnValue) == 0x0000C8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendSweepPolyline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, RevolveOptions) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::RevolveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, MajorRadius) == 0x000084, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::MajorRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, MinorRadius) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::MinorRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, MajorSteps) == 0x00008C, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::MajorSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, MinorSteps) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::MinorSteps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, Origin) == 0x000094, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, Debug) == 0x000098, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTorus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, PolygonVertices) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::PolygonVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, bAllowSelfIntersections) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::bAllowSelfIntersections' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendTriangulatedPolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D \ +static_assert(alignof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D) == 0x0000F0, "Wrong size on GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, PrimitiveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::PrimitiveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, VoronoiSites) == 0x000070, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::VoronoiSites' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, VoronoiOptions) == 0x000080, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::VoronoiOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, Debug) == 0x0000D8, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D, ReturnValue) == 0x0000E0, "Member 'GeometryScriptLibrary_MeshPrimitiveFunctions_AppendVoronoiDiagram2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshPrimitiveFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshPrimitiveFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshPrimitiveFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshPrimitiveFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshPrimitiveFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, bIsValidTriangle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, Point) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, Vertex1) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::Vertex1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, Vertex2) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::Vertex2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, Vertex3) == 0x000058, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::Vertex3' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, BarycentricCoords) == 0x000070, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshQueryFunctions_ComputeTriangleBarycentricCoords::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, VertexID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, ElementIDs) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::ElementIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, ElementUVs) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::ElementUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, bHaveValidUVs) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::bHaveValidUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllSplitUVsAtVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs, TriangleIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs::TriangleIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs, bHasTriangleIDGaps) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs::bHasTriangleIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices, TriangleList) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices::TriangleList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices, bSkipGaps) == 0x000018, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices::bSkipGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices, bHasTriangleIDGaps) == 0x000019, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices::bHasTriangleIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllTriangleIndices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs, VertexIDList) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs::VertexIDList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs, bHasVertexIDGaps) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions, PositionList) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions::PositionList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions, bSkipGaps) == 0x000018, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions::bSkipGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions, bHasVertexIDGaps) == 0x000019, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetAllVertexPositions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasMaterialIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasPolygroups::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleIDGaps::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasTriangleNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetHasVertexIDGaps::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, BarycentricCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, bTriHasValidNormals) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::bTriHasValidNormals' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, InterpolatedNormal) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::InterpolatedNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents) == 0x000080, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, BarycentricCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, bTriHasValidElements) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::bTriHasValidElements' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, InterpolatedNormal) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::InterpolatedNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, InterpolatedTangent) == 0x000048, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::InterpolatedTangent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, InterpolatedBiTangent) == 0x000060, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::InterpolatedBiTangent' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents, ReturnValue) == 0x000078, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleNormalTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, BarycentricCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, bIsValidTriangle) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, InterpolatedPosition) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::InterpolatedPosition' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTrianglePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, TriangleID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, BarycentricCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, bTriHasValidUVs) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::bTriHasValidUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, InterpolatedUV) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::InterpolatedUV' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, BarycentricCoords) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::BarycentricCoords' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, DefaultColor) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::DefaultColor' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, bTriHasValidVertexColors) == 0x000038, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::bTriHasValidVertexColors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, InterpolatedColor) == 0x00003C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::InterpolatedColor' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetInterpolatedTriangleVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetIsClosedMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetIsDenseMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshHasAttributeSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshInfoString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea, SurfaceArea) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea::SurfaceArea' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea, Volume) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeArea::Volume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter, SurfaceArea) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter::SurfaceArea' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter, Volume) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter::Volume' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter, CenterOfMass) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetMeshVolumeAreaCenter::CenterOfMass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumConnectedComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumExtendedPolygroupLayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderEdges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops, bAmbiguousTopologyFound) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops::bAmbiguousTopologyFound' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops, ReturnValue) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumOpenBorderLoops::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumTriangleIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumUVSets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetNumVertexIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal, bIsValidTriangle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleFaceNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices, bIsValidTriangle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleIndices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals) == 0x000068, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, Normal1) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::Normal1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, Normal2) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::Normal2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, Normal3) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::Normal3' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, bTriHasValidNormals) == 0x000058, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::bTriHasValidNormals' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals, ReturnValue) == 0x000060, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents) == 0x0000F0, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, bTriHasValidElements) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::bTriHasValidElements' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, Normals) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::Normals' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, Tangents) == 0x000058, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::Tangents' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, BiTangents) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::BiTangents' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents, ReturnValue) == 0x0000E8, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleNormalTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, bIsValidTriangle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, Vertex1) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::Vertex1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, Vertex2) == 0x000028, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::Vertex2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions, Vertex3) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTrianglePositions::Vertex3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, TriangleID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, UV1) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::UV1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, UV2) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::UV2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, UV3) == 0x000030, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::UV3' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs, bHaveValidUVs) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleUVs::bHaveValidUVs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, Color1) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::Color1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, Color2) == 0x00001C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::Color2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, Color3) == 0x00002C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::Color3' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, bTriHasValidVertexColors) == 0x00003C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::bTriHasValidVertexColors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetTriangleVertexColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox, bIsValidUVSet) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox::bIsValidUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox, bUVSetIsEmpty) == 0x00000D, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox::bUVSetIsEmpty' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetUVSetBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles, Triangles) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles::Triangles' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices, Vertices) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices::Vertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexConnectedVertices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount, ReturnValue) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition, bIsValidVertex) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition::bIsValidVertex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshQueryFunctions_GetVertexPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID, TriangleID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID, ReturnValue) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidTriangleID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID \ +static_assert(alignof(GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID) == 0x000010, "Wrong size on GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID, VertexID) == 0x000008, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID::VertexID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID, ReturnValue) == 0x00000C, "Member 'GeometryScriptLibrary_MeshQueryFunctions_IsValidVertexID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshQueryFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshQueryFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshQueryFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshQueryFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshQueryFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh \ +static_assert(alignof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh"); \ +static_assert(sizeof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh) == 0x000040, "Wrong size on GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh"); \ +static_assert(offsetof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh, RemeshOptions) == 0x000008, "Member 'GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh::RemeshOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh, UniformOptions) == 0x000024, "Member 'GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh::UniformOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh, Debug) == 0x000030, "Member 'GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_RemeshingFunctions_ApplyUniformRemesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_RemeshingFunctions \ +static_assert(alignof(UGeometryScriptLibrary_RemeshingFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_RemeshingFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_RemeshingFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_RemeshingFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_CompactMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_CompactMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_CompactMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_CompactMesh) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_CompactMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_CompactMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_CompactMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_CompactMesh, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_CompactMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_CompactMesh, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshRepairFunctions_CompactMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, FillOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::FillOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, NumFilledHoles) == 0x00000C, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::NumFilledHoles' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, NumFailedHoleFills) == 0x000010, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::NumFailedHoleFills' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshRepairFunctions_FillAllMeshHoles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveHiddenTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RemoveSmallComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshRepairFunctions_RepairMeshDegenerateGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions, ResolveOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions::ResolveOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshRepairFunctions_ResolveMeshTJunctions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties, bMeshBowties) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties::bMeshBowties' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties, bAttributeBowties) == 0x000009, "Member 'GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties::bAttributeBowties' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshRepairFunctions_SplitMeshBowties::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges \ +static_assert(alignof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges, WeldOptions) == 0x000008, "Member 'GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges::WeldOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshRepairFunctions_WeldMeshEdges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshRepairFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshRepairFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshRepairFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshRepairFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshRepairFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling \ +static_assert(alignof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling) == 0x000080, "Wrong size on GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, NonUniformOptions) == 0x000020, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::NonUniformOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, Samples) == 0x000038, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::Samples' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, SampleRadii) == 0x000048, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::SampleRadii' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, TriangleIDs) == 0x000058, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::TriangleIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, Debug) == 0x000070, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling, ReturnValue) == 0x000078, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeNonUniformPointSampling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling \ +static_assert(alignof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, Samples) == 0x000020, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::Samples' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, TriangleIDs) == 0x000030, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::TriangleIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, Debug) == 0x000048, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputePointSampling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling \ +static_assert(alignof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, NonUniformOptions) == 0x000020, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::NonUniformOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, VertexWeights) == 0x000038, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::VertexWeights' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, Samples) == 0x000048, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::Samples' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, SampleRadii) == 0x000058, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::SampleRadii' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, TriangleIDs) == 0x000068, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::TriangleIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshSamplingFunctions_ComputeVertexWeightedPointSampling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSamplingFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshSamplingFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSamplingFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSamplingFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSamplingFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections, SelectionA) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections::SelectionA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections, SelectionB) == 0x000010, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections::SelectionB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections, ResultSelection) == 0x000020, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections::ResultSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections, CombineMode) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CombineMeshSelections::CombineMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection, IndexArray) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection::IndexArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection, SelectionType) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection, Selection) == 0x000020, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexArrayToMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection, IndexList) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection, SelectionType) == 0x000020, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection, Selection) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexListToMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection) == 0x000078, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection, IndexSet) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection::IndexSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection, SelectionType) == 0x000058, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection, Selection) == 0x000060, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertIndexSetToMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, FromSelection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::FromSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, ToSelection) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::ToSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, NewType) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::NewType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, bAllowPartialInclusion) == 0x000029, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::bAllowPartialInclusion' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray, IndexArray) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray::IndexArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray, SelectionType) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, IndexList) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::IndexList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, ResultListType) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::ResultListType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, ConvertToType) == 0x000031, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::ConvertToType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ConvertMeshSelectionToIndexList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection, SelectionType) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_CreateSelectAllMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection, Selection) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection, bDisable) == 0x000010, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_DebugPrintMeshSelection::bDisable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, NewSelection) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::NewSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, Iterations) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::Iterations' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, bContract) == 0x00002C, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::bContract' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, bOnlyExpandToFaceNeighbours) == 0x00002D, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::bOnlyExpandToFaceNeighbours' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandContractMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected, NewSelection) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected::NewSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected, ConnectionType) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected::ConnectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_ExpandMeshSelectionToConnected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo, Selection) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo, SelectionType) == 0x000010, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo, NumSelected) == 0x000014, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_GetMeshSelectionInfo::NumSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection, NewSelection) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection::NewSelection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection, bOnlyToConnected) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection::bOnlyToConnected' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_InvertMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, Normal) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::Normal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, MaxAngleDeg) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::MaxAngleDeg' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, SelectionType) == 0x000038, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, bInvert) == 0x000039, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, MinNumTrianglePoints) == 0x00003C, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsByNormalAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox) == 0x000060, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, Box) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, SelectionType) == 0x000050, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, bInvert) == 0x000051, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, MinNumTrianglePoints) == 0x000054, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh) == 0x0000B0, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, SelectionMesh) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::SelectionMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, Selection) == 0x000010, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, SelectionMeshTransform) == 0x000020, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::SelectionMeshTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, SelectionType) == 0x000080, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, bInvert) == 0x000081, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, ShellDistance) == 0x000088, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::ShellDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, WindingThreshold) == 0x000090, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, MinNumTrianglePoints) == 0x000098, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInsideMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, SphereOrigin) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::SphereOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, SphereRadius) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, SelectionType) == 0x000038, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, bInvert) == 0x000039, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, MinNumTrianglePoints) == 0x00003C, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsInSphere::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, PlaneOrigin) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::PlaneOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, PlaneNormal) == 0x000030, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, SelectionType) == 0x000048, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, bInvert) == 0x000049, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, MinNumTrianglePoints) == 0x00004C, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshSelectionFunctions_SelectMeshElementsWithPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSelectionFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshSelectionFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSelectionFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSelectionFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSelectionFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, IndexLoops) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::IndexLoops' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, PathLoops) == 0x000028, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::PathLoops' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, NumLoops) == 0x000038, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::NumLoops' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, bFoundErrors) == 0x00003C, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::bFoundErrors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, Debug) == 0x000040, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundaryLoops::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox \ +static_assert(alignof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox) == 0x000068, "Wrong size on GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, SelectionBounds) == 0x000018, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::SelectionBounds' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, bIsEmpty) == 0x000050, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::bIsEmpty' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, Debug) == 0x000058, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox, ReturnValue) == 0x000060, "Member 'GeometryScriptLibrary_MeshSelectionQueryFunctions_GetMeshSelectionBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSelectionQueryFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshSelectionQueryFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSelectionQueryFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSelectionQueryFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSelectionQueryFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar \ +static_assert(alignof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPlanar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology \ +static_assert(alignof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology, GroupLayer) == 0x000010, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology::GroupLayer' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToPolygroupTopology::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance \ +static_assert(alignof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance, Tolerance) == 0x000008, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTolerance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount \ +static_assert(alignof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount, TriangleCount) == 0x000008, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount::TriangleCount' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToTriangleCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount \ +static_assert(alignof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount, VertexCount) == 0x000008, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount::VertexCount' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshSimplifyFunctions_ApplySimplifyToVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSimplifyFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshSimplifyFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSimplifyFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSimplifyFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSimplifyFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh, OutputBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh::OutputBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSpatial_BuildBVHForMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, QueryBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::QueryBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, QueryPoint) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::QueryPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, Options) == 0x000040, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, NearestResult) == 0x000050, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::NearestResult' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, Outcome) == 0x000088, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, Debug) == 0x000090, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestPointOnMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh) == 0x0000C0, "Wrong size on GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, QueryBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::QueryBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, RayOrigin) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::RayOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, RayDirection) == 0x000040, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::RayDirection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, Options) == 0x000058, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, HitResult) == 0x000068, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::HitResult' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, Outcome) == 0x0000A8, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, Debug) == 0x0000B0, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh, ReturnValue) == 0x0000B8, "Member 'GeometryScriptLibrary_MeshSpatial_FindNearestRayIntersectionWithMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh, TestBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh::TestBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh, bIsValid) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh::bIsValid' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshSpatial_IsBVHValidForMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh) == 0x000060, "Wrong size on GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, QueryBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::QueryBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, QueryPoint) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::QueryPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, Options) == 0x000040, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, bIsInside) == 0x00004C, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::bIsInside' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, Outcome) == 0x00004D, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, Debug) == 0x000050, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_MeshSpatial_IsPointInsideMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh, UpdateBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh::UpdateBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh, bOnlyIfInvalid) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh::bOnlyIfInvalid' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshSpatial_RebuildBVHForMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_ResetBVH \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_ResetBVH) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_ResetBVH"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_ResetBVH) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshSpatial_ResetBVH"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_ResetBVH, ResetBVH_0) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_ResetBVH::ResetBVH_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH \ +static_assert(alignof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH) == 0x000098, "Wrong size on GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, QueryBVH) == 0x000008, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::QueryBVH' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, QueryBox) == 0x000028, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::QueryBox' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, Options) == 0x000060, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, Selection) == 0x000070, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, SelectionType) == 0x000080, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::SelectionType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, MinNumTrianglePoints) == 0x000084, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::MinNumTrianglePoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshSpatial_SelectMeshElementsInBoxWithBVH::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSpatial \ +static_assert(alignof(UGeometryScriptLibrary_MeshSpatial) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSpatial"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSpatial) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSpatial"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation \ +static_assert(alignof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation, TessellationLevel) == 0x00000C, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation::TessellationLevel' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyPNTessellation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation \ +static_assert(alignof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, Options) == 0x000018, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, TessellationLevel) == 0x00001C, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::TessellationLevel' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, PatternType) == 0x000020, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::PatternType' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplySelectiveTessellation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation \ +static_assert(alignof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation, TessellationLevel) == 0x000008, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation::TessellationLevel' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshSubdivideFunctions_ApplyUniformTessellation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshSubdivideFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshSubdivideFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshSubdivideFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshSubdivideFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshSubdivideFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_RotateMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_RotateMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_RotateMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh, Rotation) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMesh::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh, RotationOrigin) == 0x000020, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMesh::RotationOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMesh, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, Rotation) == 0x000018, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::Rotation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, RotationOrigin) == 0x000030, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::RotationOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, Debug) == 0x000048, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshTransformFunctions_RotateMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, Scale) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::Scale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, ScaleOrigin) == 0x000020, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::ScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, bFixOrientationForNegativeScale) == 0x000038, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::bFixOrientationForNegativeScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, Debug) == 0x000040, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection) == 0x000058, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, Scale) == 0x000018, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::Scale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, ScaleOrigin) == 0x000030, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::ScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, Debug) == 0x000048, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_MeshTransformFunctions_ScaleMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_TransformMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_TransformMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_TransformMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh, Transform) == 0x000010, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMesh::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh, bFixOrientationForNegativeScale) == 0x000070, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMesh::bFixOrientationForNegativeScale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMesh, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection, Transform) == 0x000020, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TransformMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh, Translation) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh::Translation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection, Translation) == 0x000018, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection::Translation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslateMeshSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation \ +static_assert(alignof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation, PivotLocation) == 0x000008, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation::PivotLocation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshTransformFunctions_TranslatePivotToLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshTransformFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshTransformFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshTransformFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshTransformFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshTransformFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs, Debug) == 0x000040, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGeneratePatchBuilderMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_AutoGenerateXAtlasMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam) == 0x000088, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, CenterPoint) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::CenterPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, CenterPointTriangleID) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::CenterPointTriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, VertexIDs) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::VertexIDs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, VertexUVs) == 0x000038, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::VertexUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, Radius) == 0x000048, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, bUseInterpolatedNormal) == 0x000050, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::bUseInterpolatedNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, TangentYDirection) == 0x000058, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::TangentYDirection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, UVRotationDeg) == 0x000070, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::UVRotationDeg' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, Debug) == 0x000078, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam, ReturnValue) == 0x000080, "Member 'GeometryScriptLibrary_MeshUVFunctions_ComputeMeshLocalUVParam::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, CopyFromUVMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::CopyFromUVMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, ToUVSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::ToUVSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, CopyToMesh) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::CopyToMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, CopyToMeshOut) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::CopyToMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, bFoundTopologyErrors) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::bFoundTopologyErrors' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, bIsValidUVSet) == 0x000021, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::bIsValidUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, bOnlyUVPositions) == 0x000022, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::bOnlyUVPositions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshToMeshUVLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, CopyFromMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::CopyFromMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, CopyToUVMesh) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::CopyToUVMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, CopyToUVMeshOut) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::CopyToUVMeshOut' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, bInvalidTopology) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::bInvalidTopology' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, bIsValidUVSet) == 0x000021, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::bIsValidUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyMeshUVLayerToMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_CopyUVSet \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_CopyUVSet"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_CopyUVSet"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyUVSet::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet, FromUVSet) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyUVSet::FromUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet, ToUVSet) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyUVSet::ToUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyUVSet::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_CopyUVSet, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_CopyUVSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs) == 0x000038, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, UVList) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, bIsValidUVSet) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::bIsValidUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, bHasVertexIDGaps) == 0x000021, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, bHasSplitUVs) == 0x000022, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::bHasSplitUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, Debug) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshPerVertexUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo) == 0x0000A8, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, Selection) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, MeshArea) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::MeshArea' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, UVArea) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::UVArea' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, MeshBounds) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::MeshBounds' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, UVBounds) == 0x000068, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::UVBounds' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, bIsValidUVSet) == 0x000090, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::bIsValidUVSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, bFoundUnsetUVs) == 0x000091, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::bFoundUnsetUVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, bOnlyIncludeValidUVTris) == 0x000092, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::bOnlyIncludeValidUVTris' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, Debug) == 0x000098, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_MeshUVFunctions_GetMeshUVSizeInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs) == 0x000048, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, Options) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, Selection) == 0x000028, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, Debug) == 0x000038, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_MeshUVFunctions_RecomputeMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs, RepackOptions) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs::RepackOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_RepackMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, RotationAngle) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::RotationAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, RotationOrigin) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::RotationOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, Selection) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshUVFunctions_RotateMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, Scale) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::Scale' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, ScaleOrigin) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::ScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, Selection) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, Debug) == 0x000040, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshUVFunctions_ScaleMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs) == 0x000050, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, TriangleID) == 0x00000C, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, UVs) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::UVs' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, bIsValidTriangle) == 0x000040, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::bIsValidTriangle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, bDeferChangeNotifications) == 0x000041, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::bDeferChangeNotifications' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshTriangleUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, BoxTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::BoxTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, Selection) == 0x000070, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, MinIslandTriCount) == 0x000080, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::MinIslandTriCount' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromBoxProjection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection) == 0x0000A0, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, CylinderTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::CylinderTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, Selection) == 0x000070, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, SplitAngle) == 0x000080, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::SplitAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, Debug) == 0x000088, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromCylinderProjection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection) == 0x000010, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection) == 0x000090, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, PlaneTransform) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::PlaneTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, Selection) == 0x000070, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, Debug) == 0x000080, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection, ReturnValue) == 0x000088, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetMeshUVsFromPlanarProjection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets) == 0x000020, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets, NumUVSets) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets::NumUVSets' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets, Debug) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_MeshUVFunctions_SetNumUVSets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs \ +static_assert(alignof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, UvSetIndex) == 0x000008, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, Translation) == 0x000010, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::Translation' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, Selection) == 0x000020, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshUVFunctions_TranslateMeshUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshUVFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshUVFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshUVFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshUVFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshUVFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, NumIterations) == 0x000018, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::NumIterations' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, Strength) == 0x000020, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::Strength' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, BlurMode) == 0x000028, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::BlurMode' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, Options) == 0x000029, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_BlurMeshVertexColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsLinearToSRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear) == 0x000018, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear, Debug) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_ConvertMeshVertexColorsSRGBToLinear::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, ColorList) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, bIsValidColorSet) == 0x000018, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::bIsValidColorSet' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, bHasVertexIDGaps) == 0x000019, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::bHasVertexIDGaps' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, bBlendSplitVertexValues) == 0x00001A, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::bBlendSplitVertexValues' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_GetMeshPerVertexColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor) == 0x000030, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, Color) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::Color' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, Flags_0) == 0x000018, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::Flags_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, bClearExisting) == 0x00001C, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::bClearExisting' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, Debug) == 0x000020, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshConstantVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors) == 0x000028, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors, VertexColorList) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors::VertexColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors, Debug) == 0x000018, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshPerVertexColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor \ +static_assert(alignof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, Selection) == 0x000008, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::Selection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, Color) == 0x000018, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::Color' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, Flags_0) == 0x000028, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::Flags_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, bCreateColorSeam) == 0x00002C, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::bCreateColorSeam' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshVertexColorFunctions_SetMeshSelectionVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshVertexColorFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshVertexColorFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshVertexColorFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshVertexColorFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshVertexColorFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology \ +static_assert(alignof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshMorphology::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify \ +static_assert(alignof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify) == 0x000008, "Wrong alignment on GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify"); \ +static_assert(sizeof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify) == 0x000040, "Wrong size on GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify, TargetMesh) == 0x000000, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify, Options) == 0x000008, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify, Debug) == 0x000030, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_MeshVoxelFunctions_ApplyMeshSolidify::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_MeshVoxelFunctions \ +static_assert(alignof(UGeometryScriptLibrary_MeshVoxelFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_MeshVoxelFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_MeshVoxelFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_MeshVoxelFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex) == 0x000028, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex, Position) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_AddPolygonVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon) == 0x000020, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon, PathVertices) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon::PathVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayOfVector2DToGeometryScriptSimplePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon) == 0x000020, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon, PathVertices) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon::PathVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_ArrayToGeometryScriptSimplePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray) == 0x000020, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D) == 0x000020, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_Conv_GeometryScriptSimplePolygonToArrayOfVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon) == 0x000028, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon, Spline) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon::Spline' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon, Polygon) == 0x000008, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon, SamplingOptions) == 0x000018, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon::SamplingOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon, DropAxis) == 0x000024, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_ConvertSplineToPolygon::DropAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength) == 0x000018, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArcLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea) == 0x000018, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonArea::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds) == 0x000038, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent) == 0x000028, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent, VertexIndex) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent::VertexIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent, bPolygonIsEmpty) == 0x000014, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent::bPolygonIsEmpty' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex) == 0x000028, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex, VertexIndex) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex::VertexIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex, bPolygonIsEmpty) == 0x000014, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex::bPolygonIsEmpty' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount) == 0x000018, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_GetPolygonVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex \ +static_assert(alignof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex) == 0x000030, "Wrong size on GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex, Polygon) == 0x000000, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex::Polygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex, VertexIndex) == 0x000010, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex::VertexIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex, Position) == 0x000018, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex, bPolygonIsEmpty) == 0x000028, "Member 'GeometryScriptLibrary_SimplePolygonFunctions_SetPolygonVertex::bPolygonIsEmpty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_SimplePolygonFunctions \ +static_assert(alignof(UGeometryScriptLibrary_SimplePolygonFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_SimplePolygonFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_SimplePolygonFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_SimplePolygonFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList) == 0x000038, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList, OuterPolygon) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList::OuterPolygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList, HolePolygons) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList::HolePolygons' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList, bFixHoleOrientations) == 0x000030, "Member 'GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList::bFixHoleOrientations' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList, ReturnValue) == 0x000034, "Member 'GeometryScriptLibrary_PolygonListFunctions_AddPolygonToList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList) == 0x000020, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList, PolygonsToAppend) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_AppendPolygonList::PolygonsToAppend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons) == 0x000020, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons, OuterPolygons) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons::OuterPolygons' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSimplePolygons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon) == 0x000038, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon, OuterPolygon) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon::OuterPolygon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon, HolePolygons) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon::HolePolygons' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon, bFixHoleOrientations) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon::bFixHoleOrientations' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonListFromSinglePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset) == 0x000058, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, PolyPaths) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::PolyPaths' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, Offset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, bOperationSuccess) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, bCopyInputOnFailure) == 0x000041, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromOpenPolyPathsOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset) == 0x000058, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, Path) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::Path' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, Offset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, bOperationSuccess) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, bCopyInputOnFailure) == 0x000041, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_CreatePolygonsFromPathOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea) == 0x000020, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea, bValidIndex) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea::bValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea, PolygonIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonArea::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds) == 0x000040, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds, bValidIndex) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds::bValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds, PolygonIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount) == 0x000018, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount) == 0x000020, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount, bValidIndex) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount::bValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount, PolygonIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonHoleCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea) == 0x000018, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonListArea::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds) == 0x000038, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonListBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, bIsValidVertex) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::bIsValidVertex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, VertexIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::VertexIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, PolygonIndex) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, HoleIndex) == 0x00001C, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::HoleIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount) == 0x000020, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount, bValidIndices) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount::bValidIndices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount, PolygonIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount, HoleIndex) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount::HoleIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount, ReturnValue) == 0x00001C, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices, OutVertices) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices::OutVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices, bValidIndices) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices::bValidIndices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices, PolygonIndex) == 0x000024, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices, HoleIndex) == 0x000028, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetPolygonVertices::HoleIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon, bValidIndices) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon::bValidIndices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon, PolygonIndex) == 0x000014, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon::PolygonIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon, HoleIndex) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon::HoleIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_GetSimplePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference, PolygonsToSubtract) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference::PolygonsToSubtract' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsDifference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr, PolygonsToExclusiveOr) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr::PolygonsToExclusiveOr' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsExclusiveOr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection) == 0x000030, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection, PolygonsToIntersect) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection::PolygonsToIntersect' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose) == 0x000058, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, Offset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::Offset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, bOperationSuccess) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, bCopyInputOnFailure) == 0x000041, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyClose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen) == 0x000058, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, Offset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::Offset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, bOperationSuccess) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, bCopyInputOnFailure) == 0x000041, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsMorphologyOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset) == 0x000058, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, Offset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, bOperationSuccess) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, bCopyInputOnFailure) == 0x000041, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets) == 0x000060, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, OffsetOptions) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::OffsetOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, FirstOffset) == 0x000038, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::FirstOffset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, SecondOffset) == 0x000040, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::SecondOffset' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, bOperationSuccess) == 0x000048, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::bOperationSuccess' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, bCopyInputOnFailure) == 0x000049, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsOffsets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion \ +static_assert(alignof(GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion"); \ +static_assert(sizeof(GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion) == 0x000028, "Wrong size on GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion, PolygonList) == 0x000000, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion::PolygonList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion, bCopyInputOnFailure) == 0x000010, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion::bCopyInputOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolygonListFunctions_PolygonsUnion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_PolygonListFunctions \ +static_assert(alignof(UGeometryScriptLibrary_PolygonListFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_PolygonListFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_PolygonListFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_PolygonListFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath, PathVertices) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath::PathVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayOfVector2DToGeometryScriptPolyPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath, PathVertices) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath::PathVertices' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_ArrayToGeometryScriptPolyPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_Conv_GeometryScriptPolyPathToArrayOfVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath, VertexArray) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath::VertexArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath, PolyPath) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertArrayOfVector2DToPolyPath::PolyPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath, VertexArray) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath::VertexArray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath, PolyPath) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertArrayToPolyPath::PolyPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray, VertexArray) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArray::VertexArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D) == 0x000028, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D, VertexArray) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertPolyPathToArrayOfVector2D::VertexArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath) == 0x000030, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath, Spline) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath::Spline' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath, PolyPath) == 0x000008, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath, SamplingOptions) == 0x000020, "Member 'GeometryScriptLibrary_PolyPathFunctions_ConvertSplineToPolyPath::SamplingOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D) == 0x000038, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, Center) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::Center' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, Radius) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, NumPoints) == 0x000014, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::NumPoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, StartAngle) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::StartAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, EndAngle) == 0x00001C, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::EndAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D) == 0x000010, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D) == 0x000090, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, Transform) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, Radius) == 0x000060, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, NumPoints) == 0x000064, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::NumPoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, StartAngle) == 0x000068, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::StartAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, EndAngle) == 0x00006C, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::EndAngle' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateArcPath3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D) == 0x000030, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D, Center) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D::Center' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D, Radius) == 0x000010, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D, NumPoints) == 0x000014, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D::NumPoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D) == 0x000010, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D) == 0x000080, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D, Transform) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D, Radius) == 0x000060, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D, NumPoints) == 0x000064, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D::NumPoints' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D, ReturnValue) == 0x000068, "Member 'GeometryScriptLibrary_PolyPathFunctions_CreateCirclePath3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis) == 0x000038, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis, DropAxis) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis::DropAxis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolyPathFunctions_FlattenTo2DOnAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex) == 0x000038, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex, Point) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetNearestVertexIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength) == 0x000020, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathArcLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex) == 0x000020, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathLastIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices) == 0x000020, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathNumVertices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent) == 0x000038, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent, Index_0) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent, bIsValidIndex) == 0x00001C, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex) == 0x000008, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex) == 0x000038, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex, PolyPath) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex::PolyPath' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex, Index_0) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex, bIsValidIndex) == 0x00001C, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex::bIsValidIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_PolyPathFunctions_GetPolyPathVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms \ +static_assert(alignof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms) == 0x000010, "Wrong alignment on GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms"); \ +static_assert(sizeof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms) == 0x0000B0, "Wrong size on GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, Spline) == 0x000000, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::Spline' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, Frames) == 0x000008, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::Frames' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, FrameTimes) == 0x000018, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::FrameTimes' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, SamplingOptions) == 0x000028, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::SamplingOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, RelativeTransform) == 0x000040, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms, bIncludeScale) == 0x0000A0, "Member 'GeometryScriptLibrary_PolyPathFunctions_SampleSplineToTransforms::bIncludeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_PolyPathFunctions \ +static_assert(alignof(UGeometryScriptLibrary_PolyPathFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_PolyPathFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_PolyPathFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_PolyPathFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject \ +static_assert(alignof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject) == 0x000010, "Wrong alignment on GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject"); \ +static_assert(sizeof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject) == 0x0000A0, "Wrong size on GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, FromObject) == 0x000000, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::FromObject' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, ToDynamicMesh) == 0x000008, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::ToDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, bTransformToWorld) == 0x000010, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::bTransformToWorld' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, LocalToWorld) == 0x000020, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::LocalToWorld' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, Outcome) == 0x000080, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, bUseComplexCollision) == 0x000081, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::bUseComplexCollision' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, SphereResolution) == 0x000084, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::SphereResolution' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, Debug) == 0x000088, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyCollisionMeshesFromObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent \ +static_assert(alignof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent) == 0x000010, "Wrong alignment on GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent"); \ +static_assert(sizeof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent) == 0x0000A0, "Wrong size on GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, Component) == 0x000000, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, ToDynamicMesh) == 0x000008, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::ToDynamicMesh' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, Options) == 0x000010, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::Options' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, bTransformToWorld) == 0x00001C, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::bTransformToWorld' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, LocalToWorld) == 0x000020, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::LocalToWorld' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, Outcome) == 0x000080, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::Outcome' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, Debug) == 0x000088, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::Debug' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent, ReturnValue) == 0x000090, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CopyMeshFromComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool \ +static_assert(alignof(GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool"); \ +static_assert(sizeof(GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool) == 0x000008, "Wrong size on GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool, ReturnValue) == 0x000000, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_CreateDynamicMeshPool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList \ +static_assert(alignof(GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList) == 0x000008, "Wrong alignment on GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList"); \ +static_assert(sizeof(GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList) == 0x000020, "Wrong size on GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList, Component) == 0x000000, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList::Component' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList, MaterialList) == 0x000008, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList::MaterialList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList, Debug) == 0x000018, "Member 'GeometryScriptLibrary_SceneUtilityFunctions_SetComponentMaterialList::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_SceneUtilityFunctions \ +static_assert(alignof(UGeometryScriptLibrary_SceneUtilityFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_SceneUtilityFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_SceneUtilityFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_SceneUtilityFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane \ +static_assert(alignof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane) == 0x000010, "Wrong alignment on GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane"); \ +static_assert(sizeof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane) == 0x000090, "Wrong size on GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane, Transform) == 0x000000, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane, Axis) == 0x000060, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane::Axis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay \ +static_assert(alignof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay) == 0x000010, "Wrong alignment on GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay"); \ +static_assert(sizeof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay) == 0x0000A0, "Wrong size on GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay, Transform) == 0x000000, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay, Axis) == 0x000060, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay::Axis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay, ReturnValue) == 0x000068, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisRay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector \ +static_assert(alignof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector) == 0x000010, "Wrong alignment on GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector"); \ +static_assert(sizeof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector) == 0x000080, "Wrong size on GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector, Transform) == 0x000000, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector, Axis) == 0x000060, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector::Axis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector, ReturnValue) == 0x000068, "Member 'GeometryScriptLibrary_TransformFunctions_GetTransformAxisVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes \ +static_assert(alignof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes) == 0x000010, "Wrong alignment on GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes"); \ +static_assert(sizeof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes) == 0x0000B0, "Wrong size on GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes, Location) == 0x000000, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes::Location' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes, ZAxis) == 0x000018, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes::ZAxis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes, TangentAxis) == 0x000030, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes::TangentAxis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes, bTangentIsX) == 0x000048, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes::bTangentIsX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromAxes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis \ +static_assert(alignof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis) == 0x000010, "Wrong alignment on GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis"); \ +static_assert(sizeof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis) == 0x000090, "Wrong size on GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis, Location) == 0x000000, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis::Location' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis, ZAxis) == 0x000018, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis::ZAxis' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_TransformFunctions_MakeTransformFromZAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_TransformFunctions \ +static_assert(alignof(UGeometryScriptLibrary_TransformFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_TransformFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_TransformFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_TransformFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection) == 0x000078, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection, Box) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection, HitDistance) == 0x000068, "Member 'GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection::HitDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_RayFunctions_GetRayBoxIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayClosestPoint \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayClosestPoint) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayClosestPoint"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayClosestPoint) == 0x000060, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayClosestPoint"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayClosestPoint, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayClosestPoint::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayClosestPoint, Point) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayClosestPoint::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayClosestPoint, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRayClosestPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint) == 0x0000A8, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, LineOrigin) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::LineOrigin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, LineDirection) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::LineDirection' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, RayParameter) == 0x000060, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::RayParameter' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, RayPoint) == 0x000068, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::RayPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, LineParameter) == 0x000080, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::LineParameter' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, LinePoint) == 0x000088, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::LinePoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_RayFunctions_GetRayLineClosestPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayParameter \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayParameter) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayParameter"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayParameter) == 0x000050, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayParameter"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayParameter, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayParameter::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayParameter, Point) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayParameter::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayParameter, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRayParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection) == 0x000010, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection) == 0x000060, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection, Plane) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection::Plane' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection, HitDistance) == 0x000050, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection::HitDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPlaneIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayPoint \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayPoint) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayPoint"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayPoint) == 0x000050, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayPoint"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPoint, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPoint::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPoint, Distance) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPoint::Distance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPoint, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayPointDistance \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayPointDistance) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayPointDistance"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayPointDistance) == 0x000050, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayPointDistance"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPointDistance, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPointDistance::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPointDistance, Point) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPointDistance::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayPointDistance, ReturnValue) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRayPointDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint) == 0x0000A0, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, SegStartPoint) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::SegStartPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, SegEndPoint) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::SegEndPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, RayParameter) == 0x000060, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::RayParameter' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, RayPoint) == 0x000068, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::RayPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, SegPoint) == 0x000080, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::SegPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySegmentClosestPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection) == 0x000068, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, SphereCenter) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::SphereCenter' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, SphereRadius) == 0x000048, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, Distance1) == 0x000050, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::Distance1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, Distance2) == 0x000058, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::Distance2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection, ReturnValue) == 0x000060, "Member 'GeometryScriptLibrary_RayFunctions_GetRaySphereIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetRayStartEnd \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetRayStartEnd"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd) == 0x000070, "Wrong size on GeometryScriptLibrary_RayFunctions_GetRayStartEnd"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetRayStartEnd::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd, StartDistance) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetRayStartEnd::StartDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd, EndDistance) == 0x000038, "Member 'GeometryScriptLibrary_RayFunctions_GetRayStartEnd::EndDistance' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd, StartPoint) == 0x000040, "Member 'GeometryScriptLibrary_RayFunctions_GetRayStartEnd::StartPoint' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetRayStartEnd, EndPoint) == 0x000058, "Member 'GeometryScriptLibrary_RayFunctions_GetRayStartEnd::EndPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_GetTransformedRay \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_GetTransformedRay) == 0x000010, "Wrong alignment on GeometryScriptLibrary_RayFunctions_GetTransformedRay"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_GetTransformedRay) == 0x0000D0, "Wrong size on GeometryScriptLibrary_RayFunctions_GetTransformedRay"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetTransformedRay, Ray) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_GetTransformedRay::Ray' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetTransformedRay, Transform) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_GetTransformedRay::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetTransformedRay, bInvert) == 0x000090, "Member 'GeometryScriptLibrary_RayFunctions_GetTransformedRay::bInvert' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_GetTransformedRay, ReturnValue) == 0x000098, "Member 'GeometryScriptLibrary_RayFunctions_GetTransformedRay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection) == 0x000068, "Wrong size on GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection, Origin) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection::Origin' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection, Direction) == 0x000018, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection, bDirectionIsNormalized) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection::bDirectionIsNormalized' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection, ReturnValue) == 0x000038, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPointDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_RayFunctions_MakeRayFromPoints \ +static_assert(alignof(GeometryScriptLibrary_RayFunctions_MakeRayFromPoints) == 0x000008, "Wrong alignment on GeometryScriptLibrary_RayFunctions_MakeRayFromPoints"); \ +static_assert(sizeof(GeometryScriptLibrary_RayFunctions_MakeRayFromPoints) == 0x000060, "Wrong size on GeometryScriptLibrary_RayFunctions_MakeRayFromPoints"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPoints, A) == 0x000000, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPoints::A' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPoints, B) == 0x000018, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPoints::B' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_RayFunctions_MakeRayFromPoints, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_RayFunctions_MakeRayFromPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_RayFunctions \ +static_assert(alignof(UGeometryScriptLibrary_RayFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_RayFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_RayFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_RayFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection) == 0x0000B0, "Wrong size on GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection, Box1) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection::Box1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection, Box2) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection::Box2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection, bIsIntersecting) == 0x000070, "Member 'GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection::bIsIntersecting' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection, ReturnValue) == 0x000078, "Member 'GeometryScriptLibrary_BoxFunctions_FindBoxBoxIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox) == 0x000070, "Wrong size on GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox, Point) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox, bIsInside) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox::bIsInside' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_BoxFunctions_FindClosestPointOnBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance) == 0x000078, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance, Box1) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance::Box1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance, Box2) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance::Box2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxBoxDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize) == 0x000068, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize, Center) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize::Center' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize, Dimensions) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCenterSize::Dimensions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxCorner \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxCorner) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxCorner"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxCorner) == 0x000058, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxCorner"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCorner, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCorner::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCorner, CornerIndex) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCorner::CornerIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxCorner, ReturnValue) == 0x000040, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxCorner::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter) == 0x000070, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter, FaceIndex) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter::FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter, FaceNormal) == 0x000040, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter::FaceNormal' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxFaceCenter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance) == 0x000058, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance, Point) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxPointDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea) == 0x000048, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea, Volume) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea::Volume' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea, SurfaceArea) == 0x000040, "Member 'GeometryScriptLibrary_BoxFunctions_GetBoxVolumeArea::SurfaceArea' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetExpandedBox \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetExpandedBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetExpandedBox"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetExpandedBox) == 0x000088, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetExpandedBox"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetExpandedBox, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetExpandedBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetExpandedBox, ExpandBy) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_GetExpandedBox::ExpandBy' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetExpandedBox, ReturnValue) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_GetExpandedBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_GetTransformedBox \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_GetTransformedBox) == 0x000010, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_GetTransformedBox"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_GetTransformedBox) == 0x0000E0, "Wrong size on GeometryScriptLibrary_BoxFunctions_GetTransformedBox"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetTransformedBox, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_GetTransformedBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetTransformedBox, Transform) == 0x000040, "Member 'GeometryScriptLibrary_BoxFunctions_GetTransformedBox::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_GetTransformedBox, ReturnValue) == 0x0000A0, "Member 'GeometryScriptLibrary_BoxFunctions_GetTransformedBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents) == 0x000068, "Wrong size on GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents, Center) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents::Center' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents, Extents) == 0x000018, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents::Extents' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterExtents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize) == 0x000068, "Wrong size on GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize, Center) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize::Center' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize, Dimensions) == 0x000018, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_BoxFunctions_MakeBoxFromCenterSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection) == 0x000078, "Wrong size on GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection, Box1) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection::Box1' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection, Box2) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection::Box2' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection, ReturnValue) == 0x000070, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxBoxIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection) == 0x000060, "Wrong size on GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection, SphereCenter) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection::SphereCenter' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection, SphereRadius) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection::SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection, ReturnValue) == 0x000058, "Member 'GeometryScriptLibrary_BoxFunctions_TestBoxSphereIntersection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_BoxFunctions_TestPointInsideBox \ +static_assert(alignof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox) == 0x000008, "Wrong alignment on GeometryScriptLibrary_BoxFunctions_TestPointInsideBox"); \ +static_assert(sizeof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox) == 0x000058, "Wrong size on GeometryScriptLibrary_BoxFunctions_TestPointInsideBox"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox, Box) == 0x000000, "Member 'GeometryScriptLibrary_BoxFunctions_TestPointInsideBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox, Point) == 0x000038, "Member 'GeometryScriptLibrary_BoxFunctions_TestPointInsideBox::Point' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox, bConsiderOnBoxAsInside) == 0x000050, "Member 'GeometryScriptLibrary_BoxFunctions_TestPointInsideBox::bConsiderOnBoxAsInside' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_BoxFunctions_TestPointInsideBox, ReturnValue) == 0x000051, "Member 'GeometryScriptLibrary_BoxFunctions_TestPointInsideBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_BoxFunctions \ +static_assert(alignof(UGeometryScriptLibrary_BoxFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_BoxFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_BoxFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_BoxFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions \ +static_assert(alignof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions"); \ +static_assert(sizeof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions) == 0x000058, "Wrong size on GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions, UVList) == 0x000000, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions, Texture) == 0x000010, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions::Texture' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions, SampleOptions) == 0x000018, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions::SampleOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions, ColorList) == 0x000040, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions, Debug) == 0x000050, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTexture2DAtUVPositions::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions \ +static_assert(alignof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions) == 0x000008, "Wrong alignment on GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions"); \ +static_assert(sizeof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions) == 0x000058, "Wrong size on GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions, UVList) == 0x000000, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions::UVList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions, Texture) == 0x000010, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions::Texture' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions, SampleOptions) == 0x000018, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions::SampleOptions' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions, ColorList) == 0x000040, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions::ColorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions, Debug) == 0x000050, "Member 'GeometryScriptLibrary_TextureMapFunctions_SampleTextureRenderTarget2DAtUVPositions::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_TextureMapFunctions \ +static_assert(alignof(UGeometryScriptLibrary_TextureMapFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_TextureMapFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_TextureMapFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_TextureMapFunctions"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply, Constant) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply::Constant' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply, ScalarList) == 0x000008, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace) == 0x000018, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace, Constant) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace::Constant' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace, ScalarList) == 0x000008, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantScalarMultiplyInPlace::ScalarList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply, Constant) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply::Constant' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply, VectorList) == 0x000008, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply, ReturnValue) == 0x000018, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace) == 0x000018, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace, Constant) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace::Constant' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace, VectorList) == 0x000008, "Member 'GeometryScriptLibrary_VectorMathFunctions_ConstantVectorMultiplyInPlace::VectorList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarBlend \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarBlend"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend) == 0x000040, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarBlend"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend, ScalarListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlend::ScalarListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend, ScalarListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlend::ScalarListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend, ConstantA) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlend::ConstantA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend, ConstantB) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlend::ConstantB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlend, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlend::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace) == 0x000030, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace, ScalarListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace::ScalarListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace, ScalarListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace::ScalarListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace, ConstantA) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace::ConstantA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace, ConstantB) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarBlendInPlace::ConstantB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarInvert \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarInvert"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert) == 0x000038, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarInvert"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvert::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert, Numerator) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvert::Numerator' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert, SetOnFailure) == 0x000018, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvert::SetOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert, Epsilon) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvert::Epsilon' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvert, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvert::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace, Numerator) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace::Numerator' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace, SetOnFailure) == 0x000018, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace::SetOnFailure' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace, Epsilon) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarInvertInPlace::Epsilon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply) == 0x000038, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply, ScalarListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply::ScalarListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply, ScalarListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply::ScalarListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply, ConstantMultiplier) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply::ConstantMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace, ScalarListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace::ScalarListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace, ScalarListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace::ScalarListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace, ConstantMultiplier) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarMultiplyInPlace::ConstantMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply) == 0x000038, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply, VectorList) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply, ScalarMultiplier) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply::ScalarMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace, ScalarList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace::ScalarList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace, VectorList) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace, ScalarMultiplier) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_ScalarVectorMultiplyInPlace::ScalarMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorBlend \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorBlend"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend) == 0x000040, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorBlend"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend, VectorListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlend::VectorListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend, VectorListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlend::VectorListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend, ConstantA) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlend::ConstantA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend, ConstantB) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlend::ConstantB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlend, ReturnValue) == 0x000030, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlend::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace) == 0x000030, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace, VectorListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace::VectorListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace, VectorListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace::VectorListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace, ConstantA) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace::ConstantA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace, ConstantB) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorBlendInPlace::ConstantB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorCross \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorCross) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorCross"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorCross) == 0x000030, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorCross"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorCross, VectorListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorCross::VectorListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorCross, VectorListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorCross::VectorListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorCross, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorCross::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorDot \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorDot) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorDot"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorDot) == 0x000030, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorDot"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorDot, VectorListA) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorDot::VectorListA' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorDot, VectorListB) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorDot::VectorListB' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorDot, ReturnValue) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorDot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorLength \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorLength) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorLength"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorLength) == 0x000020, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorLength"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorLength, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorLength::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorLength, ReturnValue) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace) == 0x000028, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace, SetOnFailure) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorNormalizeInPlace::SetOnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryScriptLibrary_VectorMathFunctions_VectorToScalar \ +static_assert(alignof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar) == 0x000008, "Wrong alignment on GeometryScriptLibrary_VectorMathFunctions_VectorToScalar"); \ +static_assert(sizeof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar) == 0x000038, "Wrong size on GeometryScriptLibrary_VectorMathFunctions_VectorToScalar"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar, VectorList) == 0x000000, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorToScalar::VectorList' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar, ConstantX) == 0x000010, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorToScalar::ConstantX' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar, ConstantY) == 0x000018, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorToScalar::ConstantY' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar, ConstantZ) == 0x000020, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorToScalar::ConstantZ' has a wrong offset!"); \ +static_assert(offsetof(GeometryScriptLibrary_VectorMathFunctions_VectorToScalar, ReturnValue) == 0x000028, "Member 'GeometryScriptLibrary_VectorMathFunctions_VectorToScalar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryScriptLibrary_VectorMathFunctions \ +static_assert(alignof(UGeometryScriptLibrary_VectorMathFunctions) == 0x000008, "Wrong alignment on UGeometryScriptLibrary_VectorMathFunctions"); \ +static_assert(sizeof(UGeometryScriptLibrary_VectorMathFunctions) == 0x000028, "Wrong size on UGeometryScriptLibrary_VectorMathFunctions"); \ + +#define DUMPER7_ASSERTS_FInputEvent \ +static_assert(alignof(FInputEvent) == 0x000008, "Wrong alignment on FInputEvent"); \ +static_assert(sizeof(FInputEvent) == 0x000020, "Wrong size on FInputEvent"); \ + +#define DUMPER7_ASSERTS_FGeometry \ +static_assert(alignof(FGeometry) == 0x000004, "Wrong alignment on FGeometry"); \ +static_assert(sizeof(FGeometry) == 0x000038, "Wrong size on FGeometry"); \ + +#define DUMPER7_ASSERTS_FPointerEvent \ +static_assert(alignof(FPointerEvent) == 0x000008, "Wrong alignment on FPointerEvent"); \ +static_assert(sizeof(FPointerEvent) == 0x000078, "Wrong size on FPointerEvent"); \ + +#define DUMPER7_ASSERTS_FKeyEvent \ +static_assert(alignof(FKeyEvent) == 0x000008, "Wrong alignment on FKeyEvent"); \ +static_assert(sizeof(FKeyEvent) == 0x000040, "Wrong size on FKeyEvent"); \ + +#define DUMPER7_ASSERTS_FFontOutlineSettings \ +static_assert(alignof(FFontOutlineSettings) == 0x000008, "Wrong alignment on FFontOutlineSettings"); \ +static_assert(sizeof(FFontOutlineSettings) == 0x000020, "Wrong size on FFontOutlineSettings"); \ +static_assert(offsetof(FFontOutlineSettings, OutlineSize) == 0x000000, "Member 'FFontOutlineSettings::OutlineSize' has a wrong offset!"); \ +static_assert(offsetof(FFontOutlineSettings, bSeparateFillAlpha) == 0x000004, "Member 'FFontOutlineSettings::bSeparateFillAlpha' has a wrong offset!"); \ +static_assert(offsetof(FFontOutlineSettings, bApplyOutlineToDropShadows) == 0x000005, "Member 'FFontOutlineSettings::bApplyOutlineToDropShadows' has a wrong offset!"); \ +static_assert(offsetof(FFontOutlineSettings, OutlineMaterial) == 0x000008, "Member 'FFontOutlineSettings::OutlineMaterial' has a wrong offset!"); \ +static_assert(offsetof(FFontOutlineSettings, OutlineColor) == 0x000010, "Member 'FFontOutlineSettings::OutlineColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateFontInfo \ +static_assert(alignof(FSlateFontInfo) == 0x000008, "Wrong alignment on FSlateFontInfo"); \ +static_assert(sizeof(FSlateFontInfo) == 0x000058, "Wrong size on FSlateFontInfo"); \ +static_assert(offsetof(FSlateFontInfo, FontObject) == 0x000000, "Member 'FSlateFontInfo::FontObject' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, FontMaterial) == 0x000008, "Member 'FSlateFontInfo::FontMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, OutlineSettings) == 0x000010, "Member 'FSlateFontInfo::OutlineSettings' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, TypefaceFontName) == 0x000040, "Member 'FSlateFontInfo::TypefaceFontName' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, Size) == 0x000048, "Member 'FSlateFontInfo::Size' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, LetterSpacing) == 0x00004C, "Member 'FSlateFontInfo::LetterSpacing' has a wrong offset!"); \ +static_assert(offsetof(FSlateFontInfo, SkewAmount) == 0x000050, "Member 'FSlateFontInfo::SkewAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeprecateSlateVector2D \ +static_assert(alignof(FDeprecateSlateVector2D) == 0x000004, "Wrong alignment on FDeprecateSlateVector2D"); \ +static_assert(sizeof(FDeprecateSlateVector2D) == 0x000008, "Wrong size on FDeprecateSlateVector2D"); \ + +#define DUMPER7_ASSERTS_FSlateColor \ +static_assert(alignof(FSlateColor) == 0x000004, "Wrong alignment on FSlateColor"); \ +static_assert(sizeof(FSlateColor) == 0x000014, "Wrong size on FSlateColor"); \ +static_assert(offsetof(FSlateColor, SpecifiedColor) == 0x000000, "Member 'FSlateColor::SpecifiedColor' has a wrong offset!"); \ +static_assert(offsetof(FSlateColor, ColorUseRule) == 0x000010, "Member 'FSlateColor::ColorUseRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateBrushOutlineSettings \ +static_assert(alignof(FSlateBrushOutlineSettings) == 0x000010, "Wrong alignment on FSlateBrushOutlineSettings"); \ +static_assert(sizeof(FSlateBrushOutlineSettings) == 0x000040, "Wrong size on FSlateBrushOutlineSettings"); \ +static_assert(offsetof(FSlateBrushOutlineSettings, CornerRadii) == 0x000000, "Member 'FSlateBrushOutlineSettings::CornerRadii' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrushOutlineSettings, Color) == 0x000020, "Member 'FSlateBrushOutlineSettings::Color' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrushOutlineSettings, Width) == 0x000034, "Member 'FSlateBrushOutlineSettings::Width' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrushOutlineSettings, RoundingType) == 0x000038, "Member 'FSlateBrushOutlineSettings::RoundingType' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrushOutlineSettings, bUseBrushTransparency) == 0x000039, "Member 'FSlateBrushOutlineSettings::bUseBrushTransparency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMargin \ +static_assert(alignof(FMargin) == 0x000004, "Wrong alignment on FMargin"); \ +static_assert(sizeof(FMargin) == 0x000010, "Wrong size on FMargin"); \ +static_assert(offsetof(FMargin, Left) == 0x000000, "Member 'FMargin::Left' has a wrong offset!"); \ +static_assert(offsetof(FMargin, Top) == 0x000004, "Member 'FMargin::Top' has a wrong offset!"); \ +static_assert(offsetof(FMargin, Right) == 0x000008, "Member 'FMargin::Right' has a wrong offset!"); \ +static_assert(offsetof(FMargin, Bottom) == 0x00000C, "Member 'FMargin::Bottom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateBrush \ +static_assert(alignof(FSlateBrush) == 0x000010, "Wrong alignment on FSlateBrush"); \ +static_assert(sizeof(FSlateBrush) == 0x0000D0, "Wrong size on FSlateBrush"); \ +static_assert(offsetof(FSlateBrush, DrawAs) == 0x000011, "Member 'FSlateBrush::DrawAs' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, Tiling) == 0x000012, "Member 'FSlateBrush::Tiling' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, Mirroring) == 0x000013, "Member 'FSlateBrush::Mirroring' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, ImageType) == 0x000014, "Member 'FSlateBrush::ImageType' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, ImageSize) == 0x000018, "Member 'FSlateBrush::ImageSize' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, Margin) == 0x000020, "Member 'FSlateBrush::Margin' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, TintColor) == 0x000030, "Member 'FSlateBrush::TintColor' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, OutlineSettings) == 0x000050, "Member 'FSlateBrush::OutlineSettings' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, ResourceObject) == 0x000090, "Member 'FSlateBrush::ResourceObject' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, ResourceName) == 0x000098, "Member 'FSlateBrush::ResourceName' has a wrong offset!"); \ +static_assert(offsetof(FSlateBrush, UVRegion) == 0x0000A0, "Member 'FSlateBrush::UVRegion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateWidgetStyle \ +static_assert(alignof(FSlateWidgetStyle) == 0x000008, "Wrong alignment on FSlateWidgetStyle"); \ +static_assert(sizeof(FSlateWidgetStyle) == 0x000008, "Wrong size on FSlateWidgetStyle"); \ + +#define DUMPER7_ASSERTS_FTextBlockStyle \ +static_assert(alignof(FTextBlockStyle) == 0x000010, "Wrong alignment on FTextBlockStyle"); \ +static_assert(sizeof(FTextBlockStyle) == 0x000340, "Wrong size on FTextBlockStyle"); \ +static_assert(offsetof(FTextBlockStyle, Font) == 0x000008, "Member 'FTextBlockStyle::Font' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, ColorAndOpacity) == 0x000060, "Member 'FTextBlockStyle::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, ShadowOffset) == 0x000074, "Member 'FTextBlockStyle::ShadowOffset' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, ShadowColorAndOpacity) == 0x00007C, "Member 'FTextBlockStyle::ShadowColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, SelectedBackgroundColor) == 0x00008C, "Member 'FTextBlockStyle::SelectedBackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, HighlightColor) == 0x0000A0, "Member 'FTextBlockStyle::HighlightColor' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, HighlightShape) == 0x0000C0, "Member 'FTextBlockStyle::HighlightShape' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, StrikeBrush) == 0x000190, "Member 'FTextBlockStyle::StrikeBrush' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, UnderlineBrush) == 0x000260, "Member 'FTextBlockStyle::UnderlineBrush' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, TransformPolicy) == 0x000330, "Member 'FTextBlockStyle::TransformPolicy' has a wrong offset!"); \ +static_assert(offsetof(FTextBlockStyle, OverflowPolicy) == 0x000331, "Member 'FTextBlockStyle::OverflowPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateSound \ +static_assert(alignof(FSlateSound) == 0x000008, "Wrong alignment on FSlateSound"); \ +static_assert(sizeof(FSlateSound) == 0x000018, "Wrong size on FSlateSound"); \ +static_assert(offsetof(FSlateSound, ResourceObject) == 0x000000, "Member 'FSlateSound::ResourceObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCheckBoxStyle \ +static_assert(alignof(FCheckBoxStyle) == 0x000010, "Wrong alignment on FCheckBoxStyle"); \ +static_assert(sizeof(FCheckBoxStyle) == 0x000AD0, "Wrong size on FCheckBoxStyle"); \ +static_assert(offsetof(FCheckBoxStyle, CheckBoxType) == 0x000008, "Member 'FCheckBoxStyle::CheckBoxType' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UncheckedImage) == 0x000010, "Member 'FCheckBoxStyle::UncheckedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UncheckedHoveredImage) == 0x0000E0, "Member 'FCheckBoxStyle::UncheckedHoveredImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UncheckedPressedImage) == 0x0001B0, "Member 'FCheckBoxStyle::UncheckedPressedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedImage) == 0x000280, "Member 'FCheckBoxStyle::CheckedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedHoveredImage) == 0x000350, "Member 'FCheckBoxStyle::CheckedHoveredImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedPressedImage) == 0x000420, "Member 'FCheckBoxStyle::CheckedPressedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UndeterminedImage) == 0x0004F0, "Member 'FCheckBoxStyle::UndeterminedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UndeterminedHoveredImage) == 0x0005C0, "Member 'FCheckBoxStyle::UndeterminedHoveredImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UndeterminedPressedImage) == 0x000690, "Member 'FCheckBoxStyle::UndeterminedPressedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, Padding) == 0x000760, "Member 'FCheckBoxStyle::Padding' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, BackgroundImage) == 0x000770, "Member 'FCheckBoxStyle::BackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, BackgroundHoveredImage) == 0x000840, "Member 'FCheckBoxStyle::BackgroundHoveredImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, BackgroundPressedImage) == 0x000910, "Member 'FCheckBoxStyle::BackgroundPressedImage' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, ForegroundColor) == 0x0009E0, "Member 'FCheckBoxStyle::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, HoveredForeground) == 0x0009F4, "Member 'FCheckBoxStyle::HoveredForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, PressedForeground) == 0x000A08, "Member 'FCheckBoxStyle::PressedForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedForeground) == 0x000A1C, "Member 'FCheckBoxStyle::CheckedForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedHoveredForeground) == 0x000A30, "Member 'FCheckBoxStyle::CheckedHoveredForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedPressedForeground) == 0x000A44, "Member 'FCheckBoxStyle::CheckedPressedForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UndeterminedForeground) == 0x000A58, "Member 'FCheckBoxStyle::UndeterminedForeground' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, BorderBackgroundColor) == 0x000A6C, "Member 'FCheckBoxStyle::BorderBackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, CheckedSlateSound) == 0x000A80, "Member 'FCheckBoxStyle::CheckedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, UncheckedSlateSound) == 0x000A98, "Member 'FCheckBoxStyle::UncheckedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(FCheckBoxStyle, HoveredSlateSound) == 0x000AB0, "Member 'FCheckBoxStyle::HoveredSlateSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSegmentedControlStyle \ +static_assert(alignof(FSegmentedControlStyle) == 0x000010, "Wrong alignment on FSegmentedControlStyle"); \ +static_assert(sizeof(FSegmentedControlStyle) == 0x002160, "Wrong size on FSegmentedControlStyle"); \ +static_assert(offsetof(FSegmentedControlStyle, ControlStyle) == 0x000010, "Member 'FSegmentedControlStyle::ControlStyle' has a wrong offset!"); \ +static_assert(offsetof(FSegmentedControlStyle, FirstControlStyle) == 0x000AE0, "Member 'FSegmentedControlStyle::FirstControlStyle' has a wrong offset!"); \ +static_assert(offsetof(FSegmentedControlStyle, LastControlStyle) == 0x0015B0, "Member 'FSegmentedControlStyle::LastControlStyle' has a wrong offset!"); \ +static_assert(offsetof(FSegmentedControlStyle, BackgroundBrush) == 0x002080, "Member 'FSegmentedControlStyle::BackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FSegmentedControlStyle, UniformPadding) == 0x002150, "Member 'FSegmentedControlStyle::UniformPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFontData \ +static_assert(alignof(FFontData) == 0x000008, "Wrong alignment on FFontData"); \ +static_assert(sizeof(FFontData) == 0x000028, "Wrong size on FFontData"); \ +static_assert(offsetof(FFontData, FontFilename) == 0x000000, "Member 'FFontData::FontFilename' has a wrong offset!"); \ +static_assert(offsetof(FFontData, Hinting) == 0x000014, "Member 'FFontData::Hinting' has a wrong offset!"); \ +static_assert(offsetof(FFontData, LoadingPolicy) == 0x000015, "Member 'FFontData::LoadingPolicy' has a wrong offset!"); \ +static_assert(offsetof(FFontData, SubFaceIndex) == 0x000018, "Member 'FFontData::SubFaceIndex' has a wrong offset!"); \ +static_assert(offsetof(FFontData, FontFaceAsset) == 0x000020, "Member 'FFontData::FontFaceAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypefaceEntry \ +static_assert(alignof(FTypefaceEntry) == 0x000008, "Wrong alignment on FTypefaceEntry"); \ +static_assert(sizeof(FTypefaceEntry) == 0x000030, "Wrong size on FTypefaceEntry"); \ +static_assert(offsetof(FTypefaceEntry, Name) == 0x000000, "Member 'FTypefaceEntry::Name' has a wrong offset!"); \ +static_assert(offsetof(FTypefaceEntry, Font) == 0x000008, "Member 'FTypefaceEntry::Font' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypeface \ +static_assert(alignof(FTypeface) == 0x000008, "Wrong alignment on FTypeface"); \ +static_assert(sizeof(FTypeface) == 0x000010, "Wrong size on FTypeface"); \ +static_assert(offsetof(FTypeface, Fonts) == 0x000000, "Member 'FTypeface::Fonts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositeFallbackFont \ +static_assert(alignof(FCompositeFallbackFont) == 0x000008, "Wrong alignment on FCompositeFallbackFont"); \ +static_assert(sizeof(FCompositeFallbackFont) == 0x000018, "Wrong size on FCompositeFallbackFont"); \ +static_assert(offsetof(FCompositeFallbackFont, Typeface) == 0x000000, "Member 'FCompositeFallbackFont::Typeface' has a wrong offset!"); \ +static_assert(offsetof(FCompositeFallbackFont, ScalingFactor) == 0x000010, "Member 'FCompositeFallbackFont::ScalingFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScrollBarStyle \ +static_assert(alignof(FScrollBarStyle) == 0x000010, "Wrong alignment on FScrollBarStyle"); \ +static_assert(sizeof(FScrollBarStyle) == 0x000770, "Wrong size on FScrollBarStyle"); \ +static_assert(offsetof(FScrollBarStyle, HorizontalBackgroundImage) == 0x000010, "Member 'FScrollBarStyle::HorizontalBackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, VerticalBackgroundImage) == 0x0000E0, "Member 'FScrollBarStyle::VerticalBackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, VerticalTopSlotImage) == 0x0001B0, "Member 'FScrollBarStyle::VerticalTopSlotImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, HorizontalTopSlotImage) == 0x000280, "Member 'FScrollBarStyle::HorizontalTopSlotImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, VerticalBottomSlotImage) == 0x000350, "Member 'FScrollBarStyle::VerticalBottomSlotImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, HorizontalBottomSlotImage) == 0x000420, "Member 'FScrollBarStyle::HorizontalBottomSlotImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, NormalThumbImage) == 0x0004F0, "Member 'FScrollBarStyle::NormalThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, HoveredThumbImage) == 0x0005C0, "Member 'FScrollBarStyle::HoveredThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, DraggedThumbImage) == 0x000690, "Member 'FScrollBarStyle::DraggedThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FScrollBarStyle, Thickness) == 0x000760, "Member 'FScrollBarStyle::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTableRowStyle \ +static_assert(alignof(FTableRowStyle) == 0x000010, "Wrong alignment on FTableRowStyle"); \ +static_assert(sizeof(FTableRowStyle) == 0x000D50, "Wrong size on FTableRowStyle"); \ +static_assert(offsetof(FTableRowStyle, SelectorFocusedBrush) == 0x000010, "Member 'FTableRowStyle::SelectorFocusedBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, ActiveHoveredBrush) == 0x0000E0, "Member 'FTableRowStyle::ActiveHoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, ActiveBrush) == 0x0001B0, "Member 'FTableRowStyle::ActiveBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, InactiveHoveredBrush) == 0x000280, "Member 'FTableRowStyle::InactiveHoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, InactiveBrush) == 0x000350, "Member 'FTableRowStyle::InactiveBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, bUseParentRowBrush) == 0x000420, "Member 'FTableRowStyle::bUseParentRowBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, ParentRowBackgroundBrush) == 0x000430, "Member 'FTableRowStyle::ParentRowBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, ParentRowBackgroundHoveredBrush) == 0x000500, "Member 'FTableRowStyle::ParentRowBackgroundHoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, EvenRowBackgroundHoveredBrush) == 0x0005D0, "Member 'FTableRowStyle::EvenRowBackgroundHoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, EvenRowBackgroundBrush) == 0x0006A0, "Member 'FTableRowStyle::EvenRowBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, OddRowBackgroundHoveredBrush) == 0x000770, "Member 'FTableRowStyle::OddRowBackgroundHoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, OddRowBackgroundBrush) == 0x000840, "Member 'FTableRowStyle::OddRowBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, TextColor) == 0x000910, "Member 'FTableRowStyle::TextColor' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, SelectedTextColor) == 0x000924, "Member 'FTableRowStyle::SelectedTextColor' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, DropIndicator_Above) == 0x000940, "Member 'FTableRowStyle::DropIndicator_Above' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, DropIndicator_Onto) == 0x000A10, "Member 'FTableRowStyle::DropIndicator_Onto' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, DropIndicator_Below) == 0x000AE0, "Member 'FTableRowStyle::DropIndicator_Below' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, ActiveHighlightedBrush) == 0x000BB0, "Member 'FTableRowStyle::ActiveHighlightedBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableRowStyle, InactiveHighlightedBrush) == 0x000C80, "Member 'FTableRowStyle::InactiveHighlightedBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSliderStyle \ +static_assert(alignof(FSliderStyle) == 0x000010, "Wrong alignment on FSliderStyle"); \ +static_assert(sizeof(FSliderStyle) == 0x000500, "Wrong size on FSliderStyle"); \ +static_assert(offsetof(FSliderStyle, NormalBarImage) == 0x000010, "Member 'FSliderStyle::NormalBarImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, HoveredBarImage) == 0x0000E0, "Member 'FSliderStyle::HoveredBarImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, DisabledBarImage) == 0x0001B0, "Member 'FSliderStyle::DisabledBarImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, NormalThumbImage) == 0x000280, "Member 'FSliderStyle::NormalThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, HoveredThumbImage) == 0x000350, "Member 'FSliderStyle::HoveredThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, DisabledThumbImage) == 0x000420, "Member 'FSliderStyle::DisabledThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FSliderStyle, BarThickness) == 0x0004F0, "Member 'FSliderStyle::BarThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVolumeControlStyle \ +static_assert(alignof(FVolumeControlStyle) == 0x000010, "Wrong alignment on FVolumeControlStyle"); \ +static_assert(sizeof(FVolumeControlStyle) == 0x000920, "Wrong size on FVolumeControlStyle"); \ +static_assert(offsetof(FVolumeControlStyle, SliderStyle) == 0x000010, "Member 'FVolumeControlStyle::SliderStyle' has a wrong offset!"); \ +static_assert(offsetof(FVolumeControlStyle, HighVolumeImage) == 0x000510, "Member 'FVolumeControlStyle::HighVolumeImage' has a wrong offset!"); \ +static_assert(offsetof(FVolumeControlStyle, MidVolumeImage) == 0x0005E0, "Member 'FVolumeControlStyle::MidVolumeImage' has a wrong offset!"); \ +static_assert(offsetof(FVolumeControlStyle, LowVolumeImage) == 0x0006B0, "Member 'FVolumeControlStyle::LowVolumeImage' has a wrong offset!"); \ +static_assert(offsetof(FVolumeControlStyle, NoVolumeImage) == 0x000780, "Member 'FVolumeControlStyle::NoVolumeImage' has a wrong offset!"); \ +static_assert(offsetof(FVolumeControlStyle, MutedImage) == 0x000850, "Member 'FVolumeControlStyle::MutedImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FButtonStyle \ +static_assert(alignof(FButtonStyle) == 0x000010, "Wrong alignment on FButtonStyle"); \ +static_assert(sizeof(FButtonStyle) == 0x0003F0, "Wrong size on FButtonStyle"); \ +static_assert(offsetof(FButtonStyle, Normal) == 0x000010, "Member 'FButtonStyle::Normal' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, Hovered) == 0x0000E0, "Member 'FButtonStyle::Hovered' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, Pressed) == 0x0001B0, "Member 'FButtonStyle::Pressed' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, Disabled) == 0x000280, "Member 'FButtonStyle::Disabled' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, NormalForeground) == 0x000350, "Member 'FButtonStyle::NormalForeground' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, HoveredForeground) == 0x000364, "Member 'FButtonStyle::HoveredForeground' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, PressedForeground) == 0x000378, "Member 'FButtonStyle::PressedForeground' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, DisabledForeground) == 0x00038C, "Member 'FButtonStyle::DisabledForeground' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, NormalPadding) == 0x0003A0, "Member 'FButtonStyle::NormalPadding' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, PressedPadding) == 0x0003B0, "Member 'FButtonStyle::PressedPadding' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, PressedSlateSound) == 0x0003C0, "Member 'FButtonStyle::PressedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(FButtonStyle, HoveredSlateSound) == 0x0003D8, "Member 'FButtonStyle::HoveredSlateSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComboButtonStyle \ +static_assert(alignof(FComboButtonStyle) == 0x000010, "Wrong alignment on FComboButtonStyle"); \ +static_assert(sizeof(FComboButtonStyle) == 0x000600, "Wrong size on FComboButtonStyle"); \ +static_assert(offsetof(FComboButtonStyle, ButtonStyle) == 0x000010, "Member 'FComboButtonStyle::ButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, DownArrowImage) == 0x000400, "Member 'FComboButtonStyle::DownArrowImage' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, ShadowOffset) == 0x0004D0, "Member 'FComboButtonStyle::ShadowOffset' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, ShadowColorAndOpacity) == 0x0004D8, "Member 'FComboButtonStyle::ShadowColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, MenuBorderBrush) == 0x0004F0, "Member 'FComboButtonStyle::MenuBorderBrush' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, MenuBorderPadding) == 0x0005C0, "Member 'FComboButtonStyle::MenuBorderPadding' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, ContentPadding) == 0x0005D0, "Member 'FComboButtonStyle::ContentPadding' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, DownArrowPadding) == 0x0005E0, "Member 'FComboButtonStyle::DownArrowPadding' has a wrong offset!"); \ +static_assert(offsetof(FComboButtonStyle, DownArrowAlign) == 0x0005F0, "Member 'FComboButtonStyle::DownArrowAlign' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FComboBoxStyle \ +static_assert(alignof(FComboBoxStyle) == 0x000010, "Wrong alignment on FComboBoxStyle"); \ +static_assert(sizeof(FComboBoxStyle) == 0x000660, "Wrong size on FComboBoxStyle"); \ +static_assert(offsetof(FComboBoxStyle, ComboButtonStyle) == 0x000010, "Member 'FComboBoxStyle::ComboButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FComboBoxStyle, PressedSlateSound) == 0x000610, "Member 'FComboBoxStyle::PressedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(FComboBoxStyle, SelectionChangeSlateSound) == 0x000628, "Member 'FComboBoxStyle::SelectionChangeSlateSound' has a wrong offset!"); \ +static_assert(offsetof(FComboBoxStyle, ContentPadding) == 0x000640, "Member 'FComboBoxStyle::ContentPadding' has a wrong offset!"); \ +static_assert(offsetof(FComboBoxStyle, MenuRowPadding) == 0x000650, "Member 'FComboBoxStyle::MenuRowPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScrollBoxStyle \ +static_assert(alignof(FScrollBoxStyle) == 0x000010, "Wrong alignment on FScrollBoxStyle"); \ +static_assert(sizeof(FScrollBoxStyle) == 0x000370, "Wrong size on FScrollBoxStyle"); \ +static_assert(offsetof(FScrollBoxStyle, BarThickness) == 0x000008, "Member 'FScrollBoxStyle::BarThickness' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, TopShadowBrush) == 0x000010, "Member 'FScrollBoxStyle::TopShadowBrush' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, BottomShadowBrush) == 0x0000E0, "Member 'FScrollBoxStyle::BottomShadowBrush' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, LeftShadowBrush) == 0x0001B0, "Member 'FScrollBoxStyle::LeftShadowBrush' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, RightShadowBrush) == 0x000280, "Member 'FScrollBoxStyle::RightShadowBrush' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, HorizontalScrolledContentPadding) == 0x000350, "Member 'FScrollBoxStyle::HorizontalScrolledContentPadding' has a wrong offset!"); \ +static_assert(offsetof(FScrollBoxStyle, VerticalScrolledContentPadding) == 0x000360, "Member 'FScrollBoxStyle::VerticalScrolledContentPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditableTextBoxStyle \ +static_assert(alignof(FEditableTextBoxStyle) == 0x000010, "Wrong alignment on FEditableTextBoxStyle"); \ +static_assert(sizeof(FEditableTextBoxStyle) == 0x000E80, "Wrong size on FEditableTextBoxStyle"); \ +static_assert(offsetof(FEditableTextBoxStyle, BackgroundImageNormal) == 0x000010, "Member 'FEditableTextBoxStyle::BackgroundImageNormal' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, BackgroundImageHovered) == 0x0000E0, "Member 'FEditableTextBoxStyle::BackgroundImageHovered' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, BackgroundImageFocused) == 0x0001B0, "Member 'FEditableTextBoxStyle::BackgroundImageFocused' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, BackgroundImageReadOnly) == 0x000280, "Member 'FEditableTextBoxStyle::BackgroundImageReadOnly' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, Padding) == 0x000350, "Member 'FEditableTextBoxStyle::Padding' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, TextStyle) == 0x000360, "Member 'FEditableTextBoxStyle::TextStyle' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, ForegroundColor) == 0x0006A0, "Member 'FEditableTextBoxStyle::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, BackgroundColor) == 0x0006B4, "Member 'FEditableTextBoxStyle::BackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, ReadOnlyForegroundColor) == 0x0006C8, "Member 'FEditableTextBoxStyle::ReadOnlyForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, FocusedForegroundColor) == 0x0006DC, "Member 'FEditableTextBoxStyle::FocusedForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, HScrollBarPadding) == 0x0006F0, "Member 'FEditableTextBoxStyle::HScrollBarPadding' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, VScrollBarPadding) == 0x000700, "Member 'FEditableTextBoxStyle::VScrollBarPadding' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextBoxStyle, ScrollBarStyle) == 0x000710, "Member 'FEditableTextBoxStyle::ScrollBarStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSearchBoxStyle \ +static_assert(alignof(FSearchBoxStyle) == 0x000010, "Wrong alignment on FSearchBoxStyle"); \ +static_assert(sizeof(FSearchBoxStyle) == 0x001250, "Wrong size on FSearchBoxStyle"); \ +static_assert(offsetof(FSearchBoxStyle, TextBoxStyle) == 0x000010, "Member 'FSearchBoxStyle::TextBoxStyle' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, ActiveFontInfo) == 0x000E90, "Member 'FSearchBoxStyle::ActiveFontInfo' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, UpArrowImage) == 0x000EF0, "Member 'FSearchBoxStyle::UpArrowImage' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, DownArrowImage) == 0x000FC0, "Member 'FSearchBoxStyle::DownArrowImage' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, GlassImage) == 0x001090, "Member 'FSearchBoxStyle::GlassImage' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, ClearImage) == 0x001160, "Member 'FSearchBoxStyle::ClearImage' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, ImagePadding) == 0x001230, "Member 'FSearchBoxStyle::ImagePadding' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, bLeftAlignButtons) == 0x001240, "Member 'FSearchBoxStyle::bLeftAlignButtons' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, bLeftAlignSearchResultButtons) == 0x001241, "Member 'FSearchBoxStyle::bLeftAlignSearchResultButtons' has a wrong offset!"); \ +static_assert(offsetof(FSearchBoxStyle, bLeftAlignGlassImageAndClearButton) == 0x001242, "Member 'FSearchBoxStyle::bLeftAlignGlassImageAndClearButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpandableAreaStyle \ +static_assert(alignof(FExpandableAreaStyle) == 0x000010, "Wrong alignment on FExpandableAreaStyle"); \ +static_assert(sizeof(FExpandableAreaStyle) == 0x0001C0, "Wrong size on FExpandableAreaStyle"); \ +static_assert(offsetof(FExpandableAreaStyle, CollapsedImage) == 0x000010, "Member 'FExpandableAreaStyle::CollapsedImage' has a wrong offset!"); \ +static_assert(offsetof(FExpandableAreaStyle, ExpandedImage) == 0x0000E0, "Member 'FExpandableAreaStyle::ExpandedImage' has a wrong offset!"); \ +static_assert(offsetof(FExpandableAreaStyle, RolloutAnimationSeconds) == 0x0001B0, "Member 'FExpandableAreaStyle::RolloutAnimationSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFocusEvent \ +static_assert(alignof(FFocusEvent) == 0x000004, "Wrong alignment on FFocusEvent"); \ +static_assert(sizeof(FFocusEvent) == 0x000008, "Wrong size on FFocusEvent"); \ + +#define DUMPER7_ASSERTS_FTableColumnHeaderStyle \ +static_assert(alignof(FTableColumnHeaderStyle) == 0x000010, "Wrong alignment on FTableColumnHeaderStyle"); \ +static_assert(sizeof(FTableColumnHeaderStyle) == 0x000760, "Wrong size on FTableColumnHeaderStyle"); \ +static_assert(offsetof(FTableColumnHeaderStyle, SortPrimaryAscendingImage) == 0x000010, "Member 'FTableColumnHeaderStyle::SortPrimaryAscendingImage' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, SortPrimaryDescendingImage) == 0x0000E0, "Member 'FTableColumnHeaderStyle::SortPrimaryDescendingImage' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, SortSecondaryAscendingImage) == 0x0001B0, "Member 'FTableColumnHeaderStyle::SortSecondaryAscendingImage' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, SortSecondaryDescendingImage) == 0x000280, "Member 'FTableColumnHeaderStyle::SortSecondaryDescendingImage' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, NormalBrush) == 0x000350, "Member 'FTableColumnHeaderStyle::NormalBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, HoveredBrush) == 0x000420, "Member 'FTableColumnHeaderStyle::HoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, MenuDropdownImage) == 0x0004F0, "Member 'FTableColumnHeaderStyle::MenuDropdownImage' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, MenuDropdownNormalBorderBrush) == 0x0005C0, "Member 'FTableColumnHeaderStyle::MenuDropdownNormalBorderBrush' has a wrong offset!"); \ +static_assert(offsetof(FTableColumnHeaderStyle, MenuDropdownHoveredBorderBrush) == 0x000690, "Member 'FTableColumnHeaderStyle::MenuDropdownHoveredBorderBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScrollBorderStyle \ +static_assert(alignof(FScrollBorderStyle) == 0x000010, "Wrong alignment on FScrollBorderStyle"); \ +static_assert(sizeof(FScrollBorderStyle) == 0x0001B0, "Wrong size on FScrollBorderStyle"); \ +static_assert(offsetof(FScrollBorderStyle, TopShadowBrush) == 0x000010, "Member 'FScrollBorderStyle::TopShadowBrush' has a wrong offset!"); \ +static_assert(offsetof(FScrollBorderStyle, BottomShadowBrush) == 0x0000E0, "Member 'FScrollBorderStyle::BottomShadowBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEditableTextStyle \ +static_assert(alignof(FEditableTextStyle) == 0x000010, "Wrong alignment on FEditableTextStyle"); \ +static_assert(sizeof(FEditableTextStyle) == 0x0002F0, "Wrong size on FEditableTextStyle"); \ +static_assert(offsetof(FEditableTextStyle, Font) == 0x000008, "Member 'FEditableTextStyle::Font' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextStyle, ColorAndOpacity) == 0x000060, "Member 'FEditableTextStyle::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextStyle, BackgroundImageSelected) == 0x000080, "Member 'FEditableTextStyle::BackgroundImageSelected' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextStyle, BackgroundImageComposing) == 0x000150, "Member 'FEditableTextStyle::BackgroundImageComposing' has a wrong offset!"); \ +static_assert(offsetof(FEditableTextStyle, CaretImage) == 0x000220, "Member 'FEditableTextStyle::CaretImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpinBoxStyle \ +static_assert(alignof(FSpinBoxStyle) == 0x000010, "Wrong alignment on FSpinBoxStyle"); \ +static_assert(sizeof(FSpinBoxStyle) == 0x000600, "Wrong size on FSpinBoxStyle"); \ +static_assert(offsetof(FSpinBoxStyle, BackgroundBrush) == 0x000010, "Member 'FSpinBoxStyle::BackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, ActiveBackgroundBrush) == 0x0000E0, "Member 'FSpinBoxStyle::ActiveBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, HoveredBackgroundBrush) == 0x0001B0, "Member 'FSpinBoxStyle::HoveredBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, ActiveFillBrush) == 0x000280, "Member 'FSpinBoxStyle::ActiveFillBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, HoveredFillBrush) == 0x000350, "Member 'FSpinBoxStyle::HoveredFillBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, InactiveFillBrush) == 0x000420, "Member 'FSpinBoxStyle::InactiveFillBrush' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, ArrowsImage) == 0x0004F0, "Member 'FSpinBoxStyle::ArrowsImage' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, ForegroundColor) == 0x0005C0, "Member 'FSpinBoxStyle::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, TextPadding) == 0x0005D4, "Member 'FSpinBoxStyle::TextPadding' has a wrong offset!"); \ +static_assert(offsetof(FSpinBoxStyle, InsetPadding) == 0x0005E4, "Member 'FSpinBoxStyle::InsetPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharacterEvent \ +static_assert(alignof(FCharacterEvent) == 0x000008, "Wrong alignment on FCharacterEvent"); \ +static_assert(sizeof(FCharacterEvent) == 0x000028, "Wrong size on FCharacterEvent"); \ + +#define DUMPER7_ASSERTS_FNavigationEvent \ +static_assert(alignof(FNavigationEvent) == 0x000008, "Wrong alignment on FNavigationEvent"); \ +static_assert(sizeof(FNavigationEvent) == 0x000028, "Wrong size on FNavigationEvent"); \ + +#define DUMPER7_ASSERTS_FAnalogInputEvent \ +static_assert(alignof(FAnalogInputEvent) == 0x000008, "Wrong alignment on FAnalogInputEvent"); \ +static_assert(sizeof(FAnalogInputEvent) == 0x000048, "Wrong size on FAnalogInputEvent"); \ + +#define DUMPER7_ASSERTS_FMotionEvent \ +static_assert(alignof(FMotionEvent) == 0x000008, "Wrong alignment on FMotionEvent"); \ +static_assert(sizeof(FMotionEvent) == 0x000080, "Wrong size on FMotionEvent"); \ + +#define DUMPER7_ASSERTS_FProgressBarStyle \ +static_assert(alignof(FProgressBarStyle) == 0x000010, "Wrong alignment on FProgressBarStyle"); \ +static_assert(sizeof(FProgressBarStyle) == 0x000290, "Wrong size on FProgressBarStyle"); \ +static_assert(offsetof(FProgressBarStyle, BackgroundImage) == 0x000010, "Member 'FProgressBarStyle::BackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FProgressBarStyle, FillImage) == 0x0000E0, "Member 'FProgressBarStyle::FillImage' has a wrong offset!"); \ +static_assert(offsetof(FProgressBarStyle, MarqueeImage) == 0x0001B0, "Member 'FProgressBarStyle::MarqueeImage' has a wrong offset!"); \ +static_assert(offsetof(FProgressBarStyle, EnableFillAnimation) == 0x000280, "Member 'FProgressBarStyle::EnableFillAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositeSubFont \ +static_assert(alignof(FCompositeSubFont) == 0x000008, "Wrong alignment on FCompositeSubFont"); \ +static_assert(sizeof(FCompositeSubFont) == 0x000038, "Wrong size on FCompositeSubFont"); \ +static_assert(offsetof(FCompositeSubFont, CharacterRanges) == 0x000018, "Member 'FCompositeSubFont::CharacterRanges' has a wrong offset!"); \ +static_assert(offsetof(FCompositeSubFont, Cultures) == 0x000028, "Member 'FCompositeSubFont::Cultures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositeFont \ +static_assert(alignof(FCompositeFont) == 0x000008, "Wrong alignment on FCompositeFont"); \ +static_assert(sizeof(FCompositeFont) == 0x000038, "Wrong size on FCompositeFont"); \ +static_assert(offsetof(FCompositeFont, DefaultTypeface) == 0x000000, "Member 'FCompositeFont::DefaultTypeface' has a wrong offset!"); \ +static_assert(offsetof(FCompositeFont, FallbackTypeface) == 0x000010, "Member 'FCompositeFont::FallbackTypeface' has a wrong offset!"); \ +static_assert(offsetof(FCompositeFont, SubTypefaces) == 0x000028, "Member 'FCompositeFont::SubTypefaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCaptureLostEvent \ +static_assert(alignof(FCaptureLostEvent) == 0x000004, "Wrong alignment on FCaptureLostEvent"); \ +static_assert(sizeof(FCaptureLostEvent) == 0x000008, "Wrong size on FCaptureLostEvent"); \ + +#define DUMPER7_ASSERTS_FHyperlinkStyle \ +static_assert(alignof(FHyperlinkStyle) == 0x000010, "Wrong alignment on FHyperlinkStyle"); \ +static_assert(sizeof(FHyperlinkStyle) == 0x000750, "Wrong size on FHyperlinkStyle"); \ +static_assert(offsetof(FHyperlinkStyle, UnderlineStyle) == 0x000010, "Member 'FHyperlinkStyle::UnderlineStyle' has a wrong offset!"); \ +static_assert(offsetof(FHyperlinkStyle, TextStyle) == 0x000400, "Member 'FHyperlinkStyle::TextStyle' has a wrong offset!"); \ +static_assert(offsetof(FHyperlinkStyle, Padding) == 0x000740, "Member 'FHyperlinkStyle::Padding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInlineEditableTextBlockStyle \ +static_assert(alignof(FInlineEditableTextBlockStyle) == 0x000010, "Wrong alignment on FInlineEditableTextBlockStyle"); \ +static_assert(sizeof(FInlineEditableTextBlockStyle) == 0x0011D0, "Wrong size on FInlineEditableTextBlockStyle"); \ +static_assert(offsetof(FInlineEditableTextBlockStyle, EditableTextBoxStyle) == 0x000010, "Member 'FInlineEditableTextBlockStyle::EditableTextBoxStyle' has a wrong offset!"); \ +static_assert(offsetof(FInlineEditableTextBlockStyle, TextStyle) == 0x000E90, "Member 'FInlineEditableTextBlockStyle::TextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInlineTextImageStyle \ +static_assert(alignof(FInlineTextImageStyle) == 0x000010, "Wrong alignment on FInlineTextImageStyle"); \ +static_assert(sizeof(FInlineTextImageStyle) == 0x0000F0, "Wrong size on FInlineTextImageStyle"); \ +static_assert(offsetof(FInlineTextImageStyle, Image) == 0x000010, "Member 'FInlineTextImageStyle::Image' has a wrong offset!"); \ +static_assert(offsetof(FInlineTextImageStyle, Baseline) == 0x0000E0, "Member 'FInlineTextImageStyle::Baseline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplitterStyle \ +static_assert(alignof(FSplitterStyle) == 0x000010, "Wrong alignment on FSplitterStyle"); \ +static_assert(sizeof(FSplitterStyle) == 0x0001B0, "Wrong size on FSplitterStyle"); \ +static_assert(offsetof(FSplitterStyle, HandleNormalBrush) == 0x000010, "Member 'FSplitterStyle::HandleNormalBrush' has a wrong offset!"); \ +static_assert(offsetof(FSplitterStyle, HandleHighlightBrush) == 0x0000E0, "Member 'FSplitterStyle::HandleHighlightBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTableViewStyle \ +static_assert(alignof(FTableViewStyle) == 0x000010, "Wrong alignment on FTableViewStyle"); \ +static_assert(sizeof(FTableViewStyle) == 0x0000E0, "Wrong size on FTableViewStyle"); \ +static_assert(offsetof(FTableViewStyle, BackgroundBrush) == 0x000010, "Member 'FTableViewStyle::BackgroundBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeaderRowStyle \ +static_assert(alignof(FHeaderRowStyle) == 0x000010, "Wrong alignment on FHeaderRowStyle"); \ +static_assert(sizeof(FHeaderRowStyle) == 0x001260, "Wrong size on FHeaderRowStyle"); \ +static_assert(offsetof(FHeaderRowStyle, ColumnStyle) == 0x000010, "Member 'FHeaderRowStyle::ColumnStyle' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, LastColumnStyle) == 0x000770, "Member 'FHeaderRowStyle::LastColumnStyle' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, ColumnSplitterStyle) == 0x000ED0, "Member 'FHeaderRowStyle::ColumnSplitterStyle' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, SplitterHandleSize) == 0x001080, "Member 'FHeaderRowStyle::SplitterHandleSize' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, BackgroundBrush) == 0x001090, "Member 'FHeaderRowStyle::BackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, ForegroundColor) == 0x001160, "Member 'FHeaderRowStyle::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, HorizontalSeparatorBrush) == 0x001180, "Member 'FHeaderRowStyle::HorizontalSeparatorBrush' has a wrong offset!"); \ +static_assert(offsetof(FHeaderRowStyle, HorizontalSeparatorThickness) == 0x001250, "Member 'FHeaderRowStyle::HorizontalSeparatorThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDockTabStyle \ +static_assert(alignof(FDockTabStyle) == 0x000010, "Wrong alignment on FDockTabStyle"); \ +static_assert(sizeof(FDockTabStyle) == 0x000D80, "Wrong size on FDockTabStyle"); \ +static_assert(offsetof(FDockTabStyle, CloseButtonStyle) == 0x000010, "Member 'FDockTabStyle::CloseButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, NormalBrush) == 0x000400, "Member 'FDockTabStyle::NormalBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ColorOverlayTabBrush) == 0x0004D0, "Member 'FDockTabStyle::ColorOverlayTabBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ColorOverlayIconBrush) == 0x0005A0, "Member 'FDockTabStyle::ColorOverlayIconBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ForegroundBrush) == 0x000670, "Member 'FDockTabStyle::ForegroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, HoveredBrush) == 0x000740, "Member 'FDockTabStyle::HoveredBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ContentAreaBrush) == 0x000810, "Member 'FDockTabStyle::ContentAreaBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, TabWellBrush) == 0x0008E0, "Member 'FDockTabStyle::TabWellBrush' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, TabTextStyle) == 0x0009B0, "Member 'FDockTabStyle::TabTextStyle' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, TabPadding) == 0x000CF0, "Member 'FDockTabStyle::TabPadding' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, IconSize) == 0x000D00, "Member 'FDockTabStyle::IconSize' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, OverlapWidth) == 0x000D08, "Member 'FDockTabStyle::OverlapWidth' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, FlashColor) == 0x000D0C, "Member 'FDockTabStyle::FlashColor' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, NormalForegroundColor) == 0x000D20, "Member 'FDockTabStyle::NormalForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, HoveredForegroundColor) == 0x000D34, "Member 'FDockTabStyle::HoveredForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ActiveForegroundColor) == 0x000D48, "Member 'FDockTabStyle::ActiveForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, ForegroundForegroundColor) == 0x000D5C, "Member 'FDockTabStyle::ForegroundForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(FDockTabStyle, IconBorderPadding) == 0x000D70, "Member 'FDockTabStyle::IconBorderPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWindowStyle \ +static_assert(alignof(FWindowStyle) == 0x000010, "Wrong alignment on FWindowStyle"); \ +static_assert(sizeof(FWindowStyle) == 0x001940, "Wrong size on FWindowStyle"); \ +static_assert(offsetof(FWindowStyle, MinimizeButtonStyle) == 0x000010, "Member 'FWindowStyle::MinimizeButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, MaximizeButtonStyle) == 0x000400, "Member 'FWindowStyle::MaximizeButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, RestoreButtonStyle) == 0x0007F0, "Member 'FWindowStyle::RestoreButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, CloseButtonStyle) == 0x000BE0, "Member 'FWindowStyle::CloseButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, TitleTextStyle) == 0x000FD0, "Member 'FWindowStyle::TitleTextStyle' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, ActiveTitleBrush) == 0x001310, "Member 'FWindowStyle::ActiveTitleBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, InactiveTitleBrush) == 0x0013E0, "Member 'FWindowStyle::InactiveTitleBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, FlashTitleBrush) == 0x0014B0, "Member 'FWindowStyle::FlashTitleBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, BackgroundColor) == 0x001580, "Member 'FWindowStyle::BackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, OutlineBrush) == 0x0015A0, "Member 'FWindowStyle::OutlineBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, OutlineColor) == 0x001670, "Member 'FWindowStyle::OutlineColor' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, BorderBrush) == 0x001690, "Member 'FWindowStyle::BorderBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, BorderColor) == 0x001760, "Member 'FWindowStyle::BorderColor' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, BackgroundBrush) == 0x001780, "Member 'FWindowStyle::BackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, ChildBackgroundBrush) == 0x001850, "Member 'FWindowStyle::ChildBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, WindowCornerRadius) == 0x001920, "Member 'FWindowStyle::WindowCornerRadius' has a wrong offset!"); \ +static_assert(offsetof(FWindowStyle, BorderPadding) == 0x001924, "Member 'FWindowStyle::BorderPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStyleColorList \ +static_assert(alignof(FStyleColorList) == 0x000008, "Wrong alignment on FStyleColorList"); \ +static_assert(sizeof(FStyleColorList) == 0x000988, "Wrong size on FStyleColorList"); \ +static_assert(offsetof(FStyleColorList, StyleColors) == 0x000000, "Member 'FStyleColorList::StyleColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStyleTheme \ +static_assert(alignof(FStyleTheme) == 0x000008, "Wrong alignment on FStyleTheme"); \ +static_assert(sizeof(FStyleTheme) == 0x000048, "Wrong size on FStyleTheme"); \ + +#define DUMPER7_ASSERTS_FToolBarStyle \ +static_assert(alignof(FToolBarStyle) == 0x000010, "Wrong alignment on FToolBarStyle"); \ +static_assert(sizeof(FToolBarStyle) == 0x003E90, "Wrong size on FToolBarStyle"); \ +static_assert(offsetof(FToolBarStyle, BackgroundBrush) == 0x000010, "Member 'FToolBarStyle::BackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ExpandBrush) == 0x0000E0, "Member 'FToolBarStyle::ExpandBrush' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, SeparatorBrush) == 0x0001B0, "Member 'FToolBarStyle::SeparatorBrush' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, LabelStyle) == 0x000280, "Member 'FToolBarStyle::LabelStyle' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, EditableTextStyle) == 0x0005C0, "Member 'FToolBarStyle::EditableTextStyle' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ToggleButton) == 0x001440, "Member 'FToolBarStyle::ToggleButton' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ComboButtonStyle) == 0x001F10, "Member 'FToolBarStyle::ComboButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, SettingsButtonStyle) == 0x002510, "Member 'FToolBarStyle::SettingsButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, SettingsComboButton) == 0x002900, "Member 'FToolBarStyle::SettingsComboButton' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, SettingsToggleButton) == 0x002F00, "Member 'FToolBarStyle::SettingsToggleButton' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ButtonStyle) == 0x0039D0, "Member 'FToolBarStyle::ButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, LabelPadding) == 0x003DC0, "Member 'FToolBarStyle::LabelPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, UniformBlockWidth) == 0x003DD0, "Member 'FToolBarStyle::UniformBlockWidth' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, UniformBlockHeight) == 0x003DD4, "Member 'FToolBarStyle::UniformBlockHeight' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, NumColumns) == 0x003DD8, "Member 'FToolBarStyle::NumColumns' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, IconPadding) == 0x003DDC, "Member 'FToolBarStyle::IconPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, SeparatorPadding) == 0x003DEC, "Member 'FToolBarStyle::SeparatorPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ComboButtonPadding) == 0x003DFC, "Member 'FToolBarStyle::ComboButtonPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ButtonPadding) == 0x003E0C, "Member 'FToolBarStyle::ButtonPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, CheckBoxPadding) == 0x003E1C, "Member 'FToolBarStyle::CheckBoxPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, BlockPadding) == 0x003E2C, "Member 'FToolBarStyle::BlockPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, IndentedBlockPadding) == 0x003E3C, "Member 'FToolBarStyle::IndentedBlockPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, BackgroundPadding) == 0x003E4C, "Member 'FToolBarStyle::BackgroundPadding' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, IconSize) == 0x003E5C, "Member 'FToolBarStyle::IconSize' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, bShowLabels) == 0x003E64, "Member 'FToolBarStyle::bShowLabels' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ButtonContentMaxWidth) == 0x003E68, "Member 'FToolBarStyle::ButtonContentMaxWidth' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, ButtonContentFillWidth) == 0x003E6C, "Member 'FToolBarStyle::ButtonContentFillWidth' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, IconPaddingWithVisibleLabel) == 0x003E70, "Member 'FToolBarStyle::IconPaddingWithVisibleLabel' has a wrong offset!"); \ +static_assert(offsetof(FToolBarStyle, IconPaddingWithCollapsedLabel) == 0x003E80, "Member 'FToolBarStyle::IconPaddingWithCollapsedLabel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USlateWidgetStyleAsset \ +static_assert(alignof(USlateWidgetStyleAsset) == 0x000008, "Wrong alignment on USlateWidgetStyleAsset"); \ +static_assert(sizeof(USlateWidgetStyleAsset) == 0x000030, "Wrong size on USlateWidgetStyleAsset"); \ +static_assert(offsetof(USlateWidgetStyleAsset, CustomStyle) == 0x000028, "Member 'USlateWidgetStyleAsset::CustomStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFontBulkData \ +static_assert(alignof(UFontBulkData) == 0x000008, "Wrong alignment on UFontBulkData"); \ +static_assert(sizeof(UFontBulkData) == 0x000078, "Wrong size on UFontBulkData"); \ + +#define DUMPER7_ASSERTS_IFontFaceInterface \ +static_assert(alignof(IFontFaceInterface) == 0x000001, "Wrong alignment on IFontFaceInterface"); \ +static_assert(sizeof(IFontFaceInterface) == 0x000001, "Wrong size on IFontFaceInterface"); \ + +#define DUMPER7_ASSERTS_IFontProviderInterface \ +static_assert(alignof(IFontProviderInterface) == 0x000001, "Wrong alignment on IFontProviderInterface"); \ +static_assert(sizeof(IFontProviderInterface) == 0x000001, "Wrong size on IFontProviderInterface"); \ + +#define DUMPER7_ASSERTS_USlateTypes \ +static_assert(alignof(USlateTypes) == 0x000008, "Wrong alignment on USlateTypes"); \ +static_assert(sizeof(USlateTypes) == 0x000028, "Wrong size on USlateTypes"); \ + +#define DUMPER7_ASSERTS_USlateWidgetStyleContainerBase \ +static_assert(alignof(USlateWidgetStyleContainerBase) == 0x000008, "Wrong alignment on USlateWidgetStyleContainerBase"); \ +static_assert(sizeof(USlateWidgetStyleContainerBase) == 0x000030, "Wrong size on USlateWidgetStyleContainerBase"); \ + +#define DUMPER7_ASSERTS_ISlateWidgetStyleContainerInterface \ +static_assert(alignof(ISlateWidgetStyleContainerInterface) == 0x000001, "Wrong alignment on ISlateWidgetStyleContainerInterface"); \ +static_assert(sizeof(ISlateWidgetStyleContainerInterface) == 0x000001, "Wrong size on ISlateWidgetStyleContainerInterface"); \ + +#define DUMPER7_ASSERTS_USlateThemeManager \ +static_assert(alignof(USlateThemeManager) == 0x000008, "Wrong alignment on USlateThemeManager"); \ +static_assert(sizeof(USlateThemeManager) == 0x0009C0, "Wrong size on USlateThemeManager"); \ +static_assert(offsetof(USlateThemeManager, CurrentThemeId) == 0x000028, "Member 'USlateThemeManager::CurrentThemeId' has a wrong offset!"); \ +static_assert(offsetof(USlateThemeManager, ActiveColors) == 0x000038, "Member 'USlateThemeManager::ActiveColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVirtualKeyboardOptions \ +static_assert(alignof(FVirtualKeyboardOptions) == 0x000001, "Wrong alignment on FVirtualKeyboardOptions"); \ +static_assert(sizeof(FVirtualKeyboardOptions) == 0x000001, "Wrong size on FVirtualKeyboardOptions"); \ +static_assert(offsetof(FVirtualKeyboardOptions, bEnableAutocorrect) == 0x000000, "Member 'FVirtualKeyboardOptions::bEnableAutocorrect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharRange \ +static_assert(alignof(FCharRange) == 0x000002, "Wrong alignment on FCharRange"); \ +static_assert(sizeof(FCharRange) == 0x000004, "Wrong size on FCharRange"); \ +static_assert(offsetof(FCharRange, First) == 0x000000, "Member 'FCharRange::First' has a wrong offset!"); \ +static_assert(offsetof(FCharRange, Last) == 0x000002, "Member 'FCharRange::Last' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputChord \ +static_assert(alignof(FInputChord) == 0x000008, "Wrong alignment on FInputChord"); \ +static_assert(sizeof(FInputChord) == 0x000020, "Wrong size on FInputChord"); \ +static_assert(offsetof(FInputChord, Key) == 0x000000, "Member 'FInputChord::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCharRangeList \ +static_assert(alignof(FCharRangeList) == 0x000008, "Wrong alignment on FCharRangeList"); \ +static_assert(sizeof(FCharRangeList) == 0x000010, "Wrong size on FCharRangeList"); \ +static_assert(offsetof(FCharRangeList, Ranges) == 0x000000, "Member 'FCharRangeList::Ranges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnchors \ +static_assert(alignof(FAnchors) == 0x000008, "Wrong alignment on FAnchors"); \ +static_assert(sizeof(FAnchors) == 0x000020, "Wrong size on FAnchors"); \ +static_assert(offsetof(FAnchors, Minimum) == 0x000000, "Member 'FAnchors::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FAnchors, Maximum) == 0x000010, "Member 'FAnchors::Maximum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomizedToolMenuEntry \ +static_assert(alignof(FCustomizedToolMenuEntry) == 0x000004, "Wrong alignment on FCustomizedToolMenuEntry"); \ +static_assert(sizeof(FCustomizedToolMenuEntry) == 0x000004, "Wrong size on FCustomizedToolMenuEntry"); \ +static_assert(offsetof(FCustomizedToolMenuEntry, Visibility) == 0x000000, "Member 'FCustomizedToolMenuEntry::Visibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomizedToolMenuSection \ +static_assert(alignof(FCustomizedToolMenuSection) == 0x000004, "Wrong alignment on FCustomizedToolMenuSection"); \ +static_assert(sizeof(FCustomizedToolMenuSection) == 0x000004, "Wrong size on FCustomizedToolMenuSection"); \ +static_assert(offsetof(FCustomizedToolMenuSection, Visibility) == 0x000000, "Member 'FCustomizedToolMenuSection::Visibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomizedToolMenuNameArray \ +static_assert(alignof(FCustomizedToolMenuNameArray) == 0x000008, "Wrong alignment on FCustomizedToolMenuNameArray"); \ +static_assert(sizeof(FCustomizedToolMenuNameArray) == 0x000010, "Wrong size on FCustomizedToolMenuNameArray"); \ +static_assert(offsetof(FCustomizedToolMenuNameArray, Names) == 0x000000, "Member 'FCustomizedToolMenuNameArray::Names' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomizedToolMenu \ +static_assert(alignof(FCustomizedToolMenu) == 0x000008, "Wrong alignment on FCustomizedToolMenu"); \ +static_assert(sizeof(FCustomizedToolMenu) == 0x000200, "Wrong size on FCustomizedToolMenu"); \ +static_assert(offsetof(FCustomizedToolMenu, Name) == 0x000000, "Member 'FCustomizedToolMenu::Name' has a wrong offset!"); \ +static_assert(offsetof(FCustomizedToolMenu, Entries) == 0x000008, "Member 'FCustomizedToolMenu::Entries' has a wrong offset!"); \ +static_assert(offsetof(FCustomizedToolMenu, Sections) == 0x000058, "Member 'FCustomizedToolMenu::Sections' has a wrong offset!"); \ +static_assert(offsetof(FCustomizedToolMenu, EntryOrder) == 0x0000A8, "Member 'FCustomizedToolMenu::EntryOrder' has a wrong offset!"); \ +static_assert(offsetof(FCustomizedToolMenu, SectionOrder) == 0x0000F8, "Member 'FCustomizedToolMenu::SectionOrder' has a wrong offset!"); \ +static_assert(offsetof(FCustomizedToolMenu, SuppressExtenders) == 0x000108, "Member 'FCustomizedToolMenu::SuppressExtenders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToolMenuBase \ +static_assert(alignof(UToolMenuBase) == 0x000008, "Wrong alignment on UToolMenuBase"); \ +static_assert(sizeof(UToolMenuBase) == 0x000028, "Wrong size on UToolMenuBase"); \ + +#define DUMPER7_ASSERTS_USlateSettings \ +static_assert(alignof(USlateSettings) == 0x000008, "Wrong alignment on USlateSettings"); \ +static_assert(sizeof(USlateSettings) == 0x000030, "Wrong size on USlateSettings"); \ +static_assert(offsetof(USlateSettings, bExplicitCanvasChildZOrder) == 0x000028, "Member 'USlateSettings::bExplicitCanvasChildZOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UButtonWidgetStyle \ +static_assert(alignof(UButtonWidgetStyle) == 0x000010, "Wrong alignment on UButtonWidgetStyle"); \ +static_assert(sizeof(UButtonWidgetStyle) == 0x000420, "Wrong size on UButtonWidgetStyle"); \ +static_assert(offsetof(UButtonWidgetStyle, ButtonStyle) == 0x000030, "Member 'UButtonWidgetStyle::ButtonStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckBoxWidgetStyle \ +static_assert(alignof(UCheckBoxWidgetStyle) == 0x000010, "Wrong alignment on UCheckBoxWidgetStyle"); \ +static_assert(sizeof(UCheckBoxWidgetStyle) == 0x000B00, "Wrong size on UCheckBoxWidgetStyle"); \ +static_assert(offsetof(UCheckBoxWidgetStyle, CheckBoxStyle) == 0x000030, "Member 'UCheckBoxWidgetStyle::CheckBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComboBoxWidgetStyle \ +static_assert(alignof(UComboBoxWidgetStyle) == 0x000010, "Wrong alignment on UComboBoxWidgetStyle"); \ +static_assert(sizeof(UComboBoxWidgetStyle) == 0x000690, "Wrong size on UComboBoxWidgetStyle"); \ +static_assert(offsetof(UComboBoxWidgetStyle, ComboBoxStyle) == 0x000030, "Member 'UComboBoxWidgetStyle::ComboBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComboButtonWidgetStyle \ +static_assert(alignof(UComboButtonWidgetStyle) == 0x000010, "Wrong alignment on UComboButtonWidgetStyle"); \ +static_assert(sizeof(UComboButtonWidgetStyle) == 0x000630, "Wrong size on UComboButtonWidgetStyle"); \ +static_assert(offsetof(UComboButtonWidgetStyle, ComboButtonStyle) == 0x000030, "Member 'UComboButtonWidgetStyle::ComboButtonStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableTextBoxWidgetStyle \ +static_assert(alignof(UEditableTextBoxWidgetStyle) == 0x000010, "Wrong alignment on UEditableTextBoxWidgetStyle"); \ +static_assert(sizeof(UEditableTextBoxWidgetStyle) == 0x000EB0, "Wrong size on UEditableTextBoxWidgetStyle"); \ +static_assert(offsetof(UEditableTextBoxWidgetStyle, EditableTextBoxStyle) == 0x000030, "Member 'UEditableTextBoxWidgetStyle::EditableTextBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableTextWidgetStyle \ +static_assert(alignof(UEditableTextWidgetStyle) == 0x000010, "Wrong alignment on UEditableTextWidgetStyle"); \ +static_assert(sizeof(UEditableTextWidgetStyle) == 0x000320, "Wrong size on UEditableTextWidgetStyle"); \ +static_assert(offsetof(UEditableTextWidgetStyle, EditableTextStyle) == 0x000030, "Member 'UEditableTextWidgetStyle::EditableTextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProgressWidgetStyle \ +static_assert(alignof(UProgressWidgetStyle) == 0x000010, "Wrong alignment on UProgressWidgetStyle"); \ +static_assert(sizeof(UProgressWidgetStyle) == 0x0002C0, "Wrong size on UProgressWidgetStyle"); \ +static_assert(offsetof(UProgressWidgetStyle, ProgressBarStyle) == 0x000030, "Member 'UProgressWidgetStyle::ProgressBarStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScrollBarWidgetStyle \ +static_assert(alignof(UScrollBarWidgetStyle) == 0x000010, "Wrong alignment on UScrollBarWidgetStyle"); \ +static_assert(sizeof(UScrollBarWidgetStyle) == 0x0007A0, "Wrong size on UScrollBarWidgetStyle"); \ +static_assert(offsetof(UScrollBarWidgetStyle, ScrollBarStyle) == 0x000030, "Member 'UScrollBarWidgetStyle::ScrollBarStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScrollBoxWidgetStyle \ +static_assert(alignof(UScrollBoxWidgetStyle) == 0x000010, "Wrong alignment on UScrollBoxWidgetStyle"); \ +static_assert(sizeof(UScrollBoxWidgetStyle) == 0x0003A0, "Wrong size on UScrollBoxWidgetStyle"); \ +static_assert(offsetof(UScrollBoxWidgetStyle, ScrollBoxStyle) == 0x000030, "Member 'UScrollBoxWidgetStyle::ScrollBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpinBoxWidgetStyle \ +static_assert(alignof(USpinBoxWidgetStyle) == 0x000010, "Wrong alignment on USpinBoxWidgetStyle"); \ +static_assert(sizeof(USpinBoxWidgetStyle) == 0x000630, "Wrong size on USpinBoxWidgetStyle"); \ +static_assert(offsetof(USpinBoxWidgetStyle, SpinBoxStyle) == 0x000030, "Member 'USpinBoxWidgetStyle::SpinBoxStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextBlockWidgetStyle \ +static_assert(alignof(UTextBlockWidgetStyle) == 0x000010, "Wrong alignment on UTextBlockWidgetStyle"); \ +static_assert(sizeof(UTextBlockWidgetStyle) == 0x000370, "Wrong size on UTextBlockWidgetStyle"); \ +static_assert(offsetof(UTextBlockWidgetStyle, TextBlockStyle) == 0x000030, "Member 'UTextBlockWidgetStyle::TextBlockStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_DisablePP \ +static_assert(alignof(TCR_RPGMenuScreen_C_DisablePP) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_DisablePP"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_DisablePP) == 0x000030, "Wrong size on TCR_RPGMenuScreen_C_DisablePP"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, DataLayerName) == 0x000000, "Member 'TCR_RPGMenuScreen_C_DisablePP::DataLayerName' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_GetDataLayerManager_ReturnValue) == 0x000010, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_GetDataLayerManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_GetDataLayerInstanceFromName_ReturnValue) == 0x000020, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_GetDataLayerInstanceFromName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_IsValid_ReturnValue_1) == 0x000028, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_DisablePP, CallFunc_SetDataLayerInstanceRuntimeState_ReturnValue) == 0x000029, "Member 'TCR_RPGMenuScreen_C_DisablePP::CallFunc_SetDataLayerInstanceRuntimeState_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_EnablePP \ +static_assert(alignof(TCR_RPGMenuScreen_C_EnablePP) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_EnablePP"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_EnablePP) == 0x000028, "Wrong size on TCR_RPGMenuScreen_C_EnablePP"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, DataLayerName) == 0x000000, "Member 'TCR_RPGMenuScreen_C_EnablePP::DataLayerName' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, CallFunc_GetDataLayerManager_ReturnValue) == 0x000008, "Member 'TCR_RPGMenuScreen_C_EnablePP::CallFunc_GetDataLayerManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'TCR_RPGMenuScreen_C_EnablePP::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, CallFunc_GetDataLayerInstanceFromName_ReturnValue) == 0x000018, "Member 'TCR_RPGMenuScreen_C_EnablePP::CallFunc_GetDataLayerInstanceFromName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'TCR_RPGMenuScreen_C_EnablePP::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_EnablePP, CallFunc_SetDataLayerInstanceRuntimeState_ReturnValue) == 0x000021, "Member 'TCR_RPGMenuScreen_C_EnablePP::CallFunc_SetDataLayerInstanceRuntimeState_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen \ +static_assert(alignof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen) == 0x0000C0, "Wrong size on TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, EntryPoint) == 0x000000, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CreateDelegate_OutputDelegate_2) == 0x000030, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CreateDelegate_OutputDelegate_3) == 0x000040, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CustomEvent_CostumeTag_1) == 0x000050, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CustomEvent_CostumeTag_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetTabButton_ReturnValue) == 0x000058, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetTabButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_DynamicCast_AsTCR_RPGMenu_Button) == 0x000060, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_DynamicCast_AsTCR_RPGMenu_Button' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetHud_ReturnValue) == 0x000070, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000078, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_DynamicCast_AsWrestler_Side_Container_Widget) == 0x000080, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_DynamicCast_AsWrestler_Side_Container_Widget' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_DynamicCast_bSuccess_1) == 0x000088, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_PlayAnimation_ReturnValue) == 0x000090, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_Event_OldIndex) == 0x000098, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_Event_OldIndex' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_Event_NewIndex) == 0x00009C, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_Event_NewIndex' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, K2Node_CustomEvent_CostumeTag) == 0x0000A0, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::K2Node_CustomEvent_CostumeTag' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetActiveWidgetIndex_ReturnValue) == 0x0000A8, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetActiveWidgetIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetHud_ReturnValue_1) == 0x0000B0, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetHud_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen, CallFunc_GetHUDWidget_ReturnValue) == 0x0000B8, "Member 'TCR_RPGMenuScreen_C_ExecuteUbergraph_TCR_RPGMenuScreen::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event \ +static_assert(alignof(TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event) == 0x000004, "Wrong alignment on TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event) == 0x000008, "Wrong size on TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event, CostumeTag) == 0x000000, "Member 'TCR_RPGMenuScreen_C_OnCostumeUnlockedEvent_Event::CostumeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_OnCostumeViewed \ +static_assert(alignof(TCR_RPGMenuScreen_C_OnCostumeViewed) == 0x000004, "Wrong alignment on TCR_RPGMenuScreen_C_OnCostumeViewed"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_OnCostumeViewed) == 0x000008, "Wrong size on TCR_RPGMenuScreen_C_OnCostumeViewed"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_OnCostumeViewed, CostumeTag) == 0x000000, "Member 'TCR_RPGMenuScreen_C_OnCostumeViewed::CostumeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_OnWidgetIndexChanged \ +static_assert(alignof(TCR_RPGMenuScreen_C_OnWidgetIndexChanged) == 0x000004, "Wrong alignment on TCR_RPGMenuScreen_C_OnWidgetIndexChanged"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_OnWidgetIndexChanged) == 0x000008, "Wrong size on TCR_RPGMenuScreen_C_OnWidgetIndexChanged"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_OnWidgetIndexChanged, OldIndex) == 0x000000, "Member 'TCR_RPGMenuScreen_C_OnWidgetIndexChanged::OldIndex' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_OnWidgetIndexChanged, NewIndex) == 0x000004, "Member 'TCR_RPGMenuScreen_C_OnWidgetIndexChanged::NewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_RefreshNotificationTabIcon \ +static_assert(alignof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_RefreshNotificationTabIcon"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon) == 0x000028, "Wrong size on TCR_RPGMenuScreen_C_RefreshNotificationTabIcon"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, InIndex) == 0x000000, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::InIndex' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, CallFunc_GetTabButton_ReturnValue) == 0x000008, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::CallFunc_GetTabButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, CallFunc_GetActiveWidget_ReturnValue) == 0x000010, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::CallFunc_GetActiveWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, K2Node_DynamicCast_AsTCR_RPGMenu_Button) == 0x000018, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::K2Node_DynamicCast_AsTCR_RPGMenu_Button' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_RefreshNotificationTabIcon, CallFunc_ShouldShowNotificationIcon_ReturnValue) == 0x000021, "Member 'TCR_RPGMenuScreen_C_RefreshNotificationTabIcon::CallFunc_ShouldShowNotificationIcon_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_ShowHideBackground \ +static_assert(alignof(TCR_RPGMenuScreen_C_ShowHideBackground) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_ShowHideBackground"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_ShowHideBackground) == 0x000018, "Wrong size on TCR_RPGMenuScreen_C_ShowHideBackground"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ShowHideBackground, Hide_0) == 0x000000, "Member 'TCR_RPGMenuScreen_C_ShowHideBackground::Hide_0' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ShowHideBackground, K2Node_DynamicCast_AsTCR_RPGMenu_Layout) == 0x000008, "Member 'TCR_RPGMenuScreen_C_ShowHideBackground::K2Node_DynamicCast_AsTCR_RPGMenu_Layout' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_ShowHideBackground, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'TCR_RPGMenuScreen_C_ShowHideBackground::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_UpdateClanRelatedTab \ +static_assert(alignof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab) == 0x000008, "Wrong alignment on TCR_RPGMenuScreen_C_UpdateClanRelatedTab"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab) == 0x000058, "Wrong size on TCR_RPGMenuScreen_C_UpdateClanRelatedTab"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, AbilityTab) == 0x000000, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::AbilityTab' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, OutfitTab) == 0x000001, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::OutfitTab' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_IsPlayerLockedIntoDialogue_ReturnValue) == 0x000010, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_IsPlayerLockedIntoDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_Not_PreBool_ReturnValue) == 0x000020, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, K2Node_DynamicCast_AsWrestler_Character) == 0x000028, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000038, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_GetClan_ReturnValue) == 0x000048, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateClanRelatedTab, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000050, "Member 'TCR_RPGMenuScreen_C_UpdateClanRelatedTab::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuScreen_C_UpdateMalkavianCodex \ +static_assert(alignof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex) == 0x000004, "Wrong alignment on TCR_RPGMenuScreen_C_UpdateMalkavianCodex"); \ +static_assert(sizeof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex) == 0x000010, "Wrong size on TCR_RPGMenuScreen_C_UpdateMalkavianCodex"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, CodexTab) == 0x000000, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::CodexTab' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, OutfitTab) == 0x000001, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::OutfitTab' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, MalkavianTab) == 0x000002, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::MalkavianTab' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x00000C, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuScreen_C_UpdateMalkavianCodex, CallFunc_IsValid_ReturnValue) == 0x00000D, "Member 'TCR_RPGMenuScreen_C_UpdateMalkavianCodex::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_RPGMenuScreen_C \ +static_assert(alignof(UTCR_RPGMenuScreen_C) == 0x000008, "Wrong alignment on UTCR_RPGMenuScreen_C"); \ +static_assert(sizeof(UTCR_RPGMenuScreen_C) == 0x0003C8, "Wrong size on UTCR_RPGMenuScreen_C"); \ +static_assert(offsetof(UTCR_RPGMenuScreen_C, UberGraphFrame) == 0x0003A0, "Member 'UTCR_RPGMenuScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuScreen_C, Bg) == 0x0003A8, "Member 'UTCR_RPGMenuScreen_C::Bg' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuScreen_C, CurrentPlayerCharacter) == 0x0003B0, "Member 'UTCR_RPGMenuScreen_C::CurrentPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuScreen_C, IsNextCallToShow) == 0x0003B8, "Member 'UTCR_RPGMenuScreen_C::IsNextCallToShow' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuScreen_C, CameraModifierProperty) == 0x0003C0, "Member 'UTCR_RPGMenuScreen_C::CameraModifierProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAutoCompleteCommand \ +static_assert(alignof(FAutoCompleteCommand) == 0x000008, "Wrong alignment on FAutoCompleteCommand"); \ +static_assert(sizeof(FAutoCompleteCommand) == 0x000028, "Wrong size on FAutoCompleteCommand"); \ +static_assert(offsetof(FAutoCompleteCommand, Command) == 0x000000, "Member 'FAutoCompleteCommand::Command' has a wrong offset!"); \ +static_assert(offsetof(FAutoCompleteCommand, Desc) == 0x000010, "Member 'FAutoCompleteCommand::Desc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameModeName \ +static_assert(alignof(FGameModeName) == 0x000008, "Wrong alignment on FGameModeName"); \ +static_assert(sizeof(FGameModeName) == 0x000030, "Wrong size on FGameModeName"); \ +static_assert(offsetof(FGameModeName, Name) == 0x000000, "Member 'FGameModeName::Name' has a wrong offset!"); \ +static_assert(offsetof(FGameModeName, GameMode) == 0x000010, "Member 'FGameModeName::GameMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTemplateMapInfoOverride \ +static_assert(alignof(FTemplateMapInfoOverride) == 0x000008, "Wrong alignment on FTemplateMapInfoOverride"); \ +static_assert(sizeof(FTemplateMapInfoOverride) == 0x000058, "Wrong size on FTemplateMapInfoOverride"); \ +static_assert(offsetof(FTemplateMapInfoOverride, Thumbnail) == 0x000000, "Member 'FTemplateMapInfoOverride::Thumbnail' has a wrong offset!"); \ +static_assert(offsetof(FTemplateMapInfoOverride, Map) == 0x000020, "Member 'FTemplateMapInfoOverride::Map' has a wrong offset!"); \ +static_assert(offsetof(FTemplateMapInfoOverride, DisplayName) == 0x000040, "Member 'FTemplateMapInfoOverride::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConsoleSettings \ +static_assert(alignof(UConsoleSettings) == 0x000008, "Wrong alignment on UConsoleSettings"); \ +static_assert(sizeof(UConsoleSettings) == 0x000070, "Wrong size on UConsoleSettings"); \ +static_assert(offsetof(UConsoleSettings, MaxScrollbackSize) == 0x000028, "Member 'UConsoleSettings::MaxScrollbackSize' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, ManualAutoCompleteList) == 0x000030, "Member 'UConsoleSettings::ManualAutoCompleteList' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, AutoCompleteMapPaths) == 0x000040, "Member 'UConsoleSettings::AutoCompleteMapPaths' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, BackgroundOpacityPercentage) == 0x000050, "Member 'UConsoleSettings::BackgroundOpacityPercentage' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, bOrderTopToBottom) == 0x000054, "Member 'UConsoleSettings::bOrderTopToBottom' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, bDisplayHelpInAutoComplete) == 0x000055, "Member 'UConsoleSettings::bDisplayHelpInAutoComplete' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, InputColor) == 0x000058, "Member 'UConsoleSettings::InputColor' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, HistoryColor) == 0x00005C, "Member 'UConsoleSettings::HistoryColor' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, AutoCompleteCommandColor) == 0x000060, "Member 'UConsoleSettings::AutoCompleteCommandColor' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, AutoCompleteCVarColor) == 0x000064, "Member 'UConsoleSettings::AutoCompleteCVarColor' has a wrong offset!"); \ +static_assert(offsetof(UConsoleSettings, AutoCompleteFadedColor) == 0x000068, "Member 'UConsoleSettings::AutoCompleteFadedColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMapsSettings_GetGameMapsSettings \ +static_assert(alignof(GameMapsSettings_GetGameMapsSettings) == 0x000008, "Wrong alignment on GameMapsSettings_GetGameMapsSettings"); \ +static_assert(sizeof(GameMapsSettings_GetGameMapsSettings) == 0x000008, "Wrong size on GameMapsSettings_GetGameMapsSettings"); \ +static_assert(offsetof(GameMapsSettings_GetGameMapsSettings, ReturnValue) == 0x000000, "Member 'GameMapsSettings_GetGameMapsSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMapsSettings_SetSkipAssigningGamepadToPlayer1 \ +static_assert(alignof(GameMapsSettings_SetSkipAssigningGamepadToPlayer1) == 0x000001, "Wrong alignment on GameMapsSettings_SetSkipAssigningGamepadToPlayer1"); \ +static_assert(sizeof(GameMapsSettings_SetSkipAssigningGamepadToPlayer1) == 0x000001, "Wrong size on GameMapsSettings_SetSkipAssigningGamepadToPlayer1"); \ +static_assert(offsetof(GameMapsSettings_SetSkipAssigningGamepadToPlayer1, bSkipFirstPlayer) == 0x000000, "Member 'GameMapsSettings_SetSkipAssigningGamepadToPlayer1::bSkipFirstPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameMapsSettings_GetSkipAssigningGamepadToPlayer1 \ +static_assert(alignof(GameMapsSettings_GetSkipAssigningGamepadToPlayer1) == 0x000001, "Wrong alignment on GameMapsSettings_GetSkipAssigningGamepadToPlayer1"); \ +static_assert(sizeof(GameMapsSettings_GetSkipAssigningGamepadToPlayer1) == 0x000001, "Wrong size on GameMapsSettings_GetSkipAssigningGamepadToPlayer1"); \ +static_assert(offsetof(GameMapsSettings_GetSkipAssigningGamepadToPlayer1, ReturnValue) == 0x000000, "Member 'GameMapsSettings_GetSkipAssigningGamepadToPlayer1::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameMapsSettings \ +static_assert(alignof(UGameMapsSettings) == 0x000008, "Wrong alignment on UGameMapsSettings"); \ +static_assert(sizeof(UGameMapsSettings) == 0x000140, "Wrong size on UGameMapsSettings"); \ +static_assert(offsetof(UGameMapsSettings, LocalMapOptions) == 0x000028, "Member 'UGameMapsSettings::LocalMapOptions' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, TransitionMap) == 0x000038, "Member 'UGameMapsSettings::TransitionMap' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, TransitionHandlerClass) == 0x000058, "Member 'UGameMapsSettings::TransitionHandlerClass' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, bUseSplitscreen) == 0x000078, "Member 'UGameMapsSettings::bUseSplitscreen' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, TwoPlayerSplitscreenLayout) == 0x000079, "Member 'UGameMapsSettings::TwoPlayerSplitscreenLayout' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, ThreePlayerSplitscreenLayout) == 0x00007A, "Member 'UGameMapsSettings::ThreePlayerSplitscreenLayout' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, FourPlayerSplitscreenLayout) == 0x00007B, "Member 'UGameMapsSettings::FourPlayerSplitscreenLayout' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, bOffsetPlayerGamepadIds) == 0x00007C, "Member 'UGameMapsSettings::bOffsetPlayerGamepadIds' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GameInstanceClass) == 0x000080, "Member 'UGameMapsSettings::GameInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GameDefaultMap) == 0x0000A0, "Member 'UGameMapsSettings::GameDefaultMap' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, ServerDefaultMap) == 0x0000C0, "Member 'UGameMapsSettings::ServerDefaultMap' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GlobalDefaultGameMode) == 0x0000E0, "Member 'UGameMapsSettings::GlobalDefaultGameMode' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GlobalDefaultServerGameMode) == 0x000100, "Member 'UGameMapsSettings::GlobalDefaultServerGameMode' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GameModeMapPrefixes) == 0x000120, "Member 'UGameMapsSettings::GameModeMapPrefixes' has a wrong offset!"); \ +static_assert(offsetof(UGameMapsSettings, GameModeClassAliases) == 0x000130, "Member 'UGameMapsSettings::GameModeClassAliases' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameNetworkManagerSettings \ +static_assert(alignof(UGameNetworkManagerSettings) == 0x000008, "Wrong alignment on UGameNetworkManagerSettings"); \ +static_assert(sizeof(UGameNetworkManagerSettings) == 0x000058, "Wrong size on UGameNetworkManagerSettings"); \ +static_assert(offsetof(UGameNetworkManagerSettings, MinDynamicBandwidth) == 0x000028, "Member 'UGameNetworkManagerSettings::MinDynamicBandwidth' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, MaxDynamicBandwidth) == 0x00002C, "Member 'UGameNetworkManagerSettings::MaxDynamicBandwidth' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, TotalNetBandwidth) == 0x000030, "Member 'UGameNetworkManagerSettings::TotalNetBandwidth' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, BadPingThreshold) == 0x000034, "Member 'UGameNetworkManagerSettings::BadPingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, StandbyRxCheatTime) == 0x00003C, "Member 'UGameNetworkManagerSettings::StandbyRxCheatTime' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, StandbyTxCheatTime) == 0x000040, "Member 'UGameNetworkManagerSettings::StandbyTxCheatTime' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, PercentMissingForRxStandby) == 0x000044, "Member 'UGameNetworkManagerSettings::PercentMissingForRxStandby' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, PercentMissingForTxStandby) == 0x000048, "Member 'UGameNetworkManagerSettings::PercentMissingForTxStandby' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, PercentForBadPing) == 0x00004C, "Member 'UGameNetworkManagerSettings::PercentForBadPing' has a wrong offset!"); \ +static_assert(offsetof(UGameNetworkManagerSettings, JoinInProgressStandbyWaitTime) == 0x000050, "Member 'UGameNetworkManagerSettings::JoinInProgressStandbyWaitTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSessionSettings \ +static_assert(alignof(UGameSessionSettings) == 0x000008, "Wrong alignment on UGameSessionSettings"); \ +static_assert(sizeof(UGameSessionSettings) == 0x000038, "Wrong size on UGameSessionSettings"); \ +static_assert(offsetof(UGameSessionSettings, MaxSpectators) == 0x000028, "Member 'UGameSessionSettings::MaxSpectators' has a wrong offset!"); \ +static_assert(offsetof(UGameSessionSettings, MaxPlayers) == 0x00002C, "Member 'UGameSessionSettings::MaxPlayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeneralEngineSettings \ +static_assert(alignof(UGeneralEngineSettings) == 0x000008, "Wrong alignment on UGeneralEngineSettings"); \ +static_assert(sizeof(UGeneralEngineSettings) == 0x000028, "Wrong size on UGeneralEngineSettings"); \ + +#define DUMPER7_ASSERTS_UGeneralProjectSettings \ +static_assert(alignof(UGeneralProjectSettings) == 0x000008, "Wrong alignment on UGeneralProjectSettings"); \ +static_assert(sizeof(UGeneralProjectSettings) == 0x000118, "Wrong size on UGeneralProjectSettings"); \ +static_assert(offsetof(UGeneralProjectSettings, CompanyName) == 0x000028, "Member 'UGeneralProjectSettings::CompanyName' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, CompanyDistinguishedName) == 0x000038, "Member 'UGeneralProjectSettings::CompanyDistinguishedName' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, CopyrightNotice) == 0x000048, "Member 'UGeneralProjectSettings::CopyrightNotice' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, Description) == 0x000058, "Member 'UGeneralProjectSettings::Description' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, Homepage) == 0x000068, "Member 'UGeneralProjectSettings::Homepage' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, LicensingTerms) == 0x000078, "Member 'UGeneralProjectSettings::LicensingTerms' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, PrivacyPolicy) == 0x000088, "Member 'UGeneralProjectSettings::PrivacyPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, ProjectID) == 0x000098, "Member 'UGeneralProjectSettings::ProjectID' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, ProjectName) == 0x0000A8, "Member 'UGeneralProjectSettings::ProjectName' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, ProjectVersion) == 0x0000B8, "Member 'UGeneralProjectSettings::ProjectVersion' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, SupportContact) == 0x0000C8, "Member 'UGeneralProjectSettings::SupportContact' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, ProjectDisplayedTitle) == 0x0000D8, "Member 'UGeneralProjectSettings::ProjectDisplayedTitle' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, ProjectDebugTitleInfo) == 0x0000F0, "Member 'UGeneralProjectSettings::ProjectDebugTitleInfo' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bShouldWindowPreserveAspectRatio) == 0x000108, "Member 'UGeneralProjectSettings::bShouldWindowPreserveAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bUseBorderlessWindow) == 0x000109, "Member 'UGeneralProjectSettings::bUseBorderlessWindow' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bStartInVR) == 0x00010A, "Member 'UGeneralProjectSettings::bStartInVR' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bAllowWindowResize) == 0x00010B, "Member 'UGeneralProjectSettings::bAllowWindowResize' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bAllowClose) == 0x00010C, "Member 'UGeneralProjectSettings::bAllowClose' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bAllowMaximize) == 0x00010D, "Member 'UGeneralProjectSettings::bAllowMaximize' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, bAllowMinimize) == 0x00010E, "Member 'UGeneralProjectSettings::bAllowMinimize' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, EyeOffsetForFakeStereoRenderingDevice) == 0x000110, "Member 'UGeneralProjectSettings::EyeOffsetForFakeStereoRenderingDevice' has a wrong offset!"); \ +static_assert(offsetof(UGeneralProjectSettings, FOVForFakeStereoRenderingDevice) == 0x000114, "Member 'UGeneralProjectSettings::FOVForFakeStereoRenderingDevice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHudSettings \ +static_assert(alignof(UHudSettings) == 0x000008, "Wrong alignment on UHudSettings"); \ +static_assert(sizeof(UHudSettings) == 0x000040, "Wrong size on UHudSettings"); \ +static_assert(offsetof(UHudSettings, DebugDisplay) == 0x000030, "Member 'UHudSettings::DebugDisplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomFieldData \ +static_assert(alignof(FCustomFieldData) == 0x000008, "Wrong alignment on FCustomFieldData"); \ +static_assert(sizeof(FCustomFieldData) == 0x000020, "Wrong size on FCustomFieldData"); \ +static_assert(offsetof(FCustomFieldData, Key) == 0x000000, "Member 'FCustomFieldData::Key' has a wrong offset!"); \ +static_assert(offsetof(FCustomFieldData, Value) == 0x000010, "Member 'FCustomFieldData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSHAHashData \ +static_assert(alignof(FSHAHashData) == 0x000001, "Wrong alignment on FSHAHashData"); \ +static_assert(sizeof(FSHAHashData) == 0x000014, "Wrong size on FSHAHashData"); \ +static_assert(offsetof(FSHAHashData, Hash) == 0x000000, "Member 'FSHAHashData::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChunkInfoData \ +static_assert(alignof(FChunkInfoData) == 0x000008, "Wrong alignment on FChunkInfoData"); \ +static_assert(sizeof(FChunkInfoData) == 0x000040, "Wrong size on FChunkInfoData"); \ +static_assert(offsetof(FChunkInfoData, Guid) == 0x000000, "Member 'FChunkInfoData::Guid' has a wrong offset!"); \ +static_assert(offsetof(FChunkInfoData, Hash) == 0x000010, "Member 'FChunkInfoData::Hash' has a wrong offset!"); \ +static_assert(offsetof(FChunkInfoData, ShaHash) == 0x000018, "Member 'FChunkInfoData::ShaHash' has a wrong offset!"); \ +static_assert(offsetof(FChunkInfoData, FileSize) == 0x000030, "Member 'FChunkInfoData::FileSize' has a wrong offset!"); \ +static_assert(offsetof(FChunkInfoData, GroupNumber) == 0x000038, "Member 'FChunkInfoData::GroupNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChunkPartData \ +static_assert(alignof(FChunkPartData) == 0x000004, "Wrong alignment on FChunkPartData"); \ +static_assert(sizeof(FChunkPartData) == 0x000018, "Wrong size on FChunkPartData"); \ +static_assert(offsetof(FChunkPartData, Guid) == 0x000000, "Member 'FChunkPartData::Guid' has a wrong offset!"); \ +static_assert(offsetof(FChunkPartData, Offset) == 0x000010, "Member 'FChunkPartData::Offset' has a wrong offset!"); \ +static_assert(offsetof(FChunkPartData, Size) == 0x000014, "Member 'FChunkPartData::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFileManifestData \ +static_assert(alignof(FFileManifestData) == 0x000008, "Wrong alignment on FFileManifestData"); \ +static_assert(sizeof(FFileManifestData) == 0x000068, "Wrong size on FFileManifestData"); \ +static_assert(offsetof(FFileManifestData, Filename) == 0x000000, "Member 'FFileManifestData::Filename' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, FileHash) == 0x000010, "Member 'FFileManifestData::FileHash' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, FileChunkParts) == 0x000028, "Member 'FFileManifestData::FileChunkParts' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, InstallTags) == 0x000038, "Member 'FFileManifestData::InstallTags' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, bIsUnixExecutable) == 0x000048, "Member 'FFileManifestData::bIsUnixExecutable' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, SymlinkTarget) == 0x000050, "Member 'FFileManifestData::SymlinkTarget' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, bIsReadOnly) == 0x000060, "Member 'FFileManifestData::bIsReadOnly' has a wrong offset!"); \ +static_assert(offsetof(FFileManifestData, bIsCompressed) == 0x000061, "Member 'FFileManifestData::bIsCompressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBuildPatchManifest \ +static_assert(alignof(UBuildPatchManifest) == 0x000008, "Wrong alignment on UBuildPatchManifest"); \ +static_assert(sizeof(UBuildPatchManifest) == 0x000120, "Wrong size on UBuildPatchManifest"); \ +static_assert(offsetof(UBuildPatchManifest, ManifestFileVersion) == 0x000028, "Member 'UBuildPatchManifest::ManifestFileVersion' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, bIsFileData) == 0x000029, "Member 'UBuildPatchManifest::bIsFileData' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, AppID) == 0x00002C, "Member 'UBuildPatchManifest::AppID' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, AppName) == 0x000030, "Member 'UBuildPatchManifest::AppName' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, BuildVersion) == 0x000040, "Member 'UBuildPatchManifest::BuildVersion' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, LaunchExe) == 0x000050, "Member 'UBuildPatchManifest::LaunchExe' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, LaunchCommand) == 0x000060, "Member 'UBuildPatchManifest::LaunchCommand' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, PrereqIds) == 0x000070, "Member 'UBuildPatchManifest::PrereqIds' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, PrereqName) == 0x0000C0, "Member 'UBuildPatchManifest::PrereqName' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, PrereqPath) == 0x0000D0, "Member 'UBuildPatchManifest::PrereqPath' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, PrereqArgs) == 0x0000E0, "Member 'UBuildPatchManifest::PrereqArgs' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, FileManifestList) == 0x0000F0, "Member 'UBuildPatchManifest::FileManifestList' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, ChunkList) == 0x000100, "Member 'UBuildPatchManifest::ChunkList' has a wrong offset!"); \ +static_assert(offsetof(UBuildPatchManifest, CustomFields) == 0x000110, "Member 'UBuildPatchManifest::CustomFields' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerPlatformSettings \ +static_assert(alignof(FPerPlatformSettings) == 0x000008, "Wrong alignment on FPerPlatformSettings"); \ +static_assert(sizeof(FPerPlatformSettings) == 0x000010, "Wrong size on FPerPlatformSettings"); \ +static_assert(offsetof(FPerPlatformSettings, Settings) == 0x000000, "Member 'FPerPlatformSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformSettingsInstances \ +static_assert(alignof(FPlatformSettingsInstances) == 0x000008, "Wrong alignment on FPlatformSettingsInstances"); \ +static_assert(sizeof(FPlatformSettingsInstances) == 0x000058, "Wrong size on FPlatformSettingsInstances"); \ +static_assert(offsetof(FPlatformSettingsInstances, PlatformInstance) == 0x000000, "Member 'FPlatformSettingsInstances::PlatformInstance' has a wrong offset!"); \ +static_assert(offsetof(FPlatformSettingsInstances, OtherPlatforms) == 0x000008, "Member 'FPlatformSettingsInstances::OtherPlatforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDeveloperSettings \ +static_assert(alignof(UDeveloperSettings) == 0x000008, "Wrong alignment on UDeveloperSettings"); \ +static_assert(sizeof(UDeveloperSettings) == 0x000038, "Wrong size on UDeveloperSettings"); \ + +#define DUMPER7_ASSERTS_UDeveloperSettingsBackedByCVars \ +static_assert(alignof(UDeveloperSettingsBackedByCVars) == 0x000008, "Wrong alignment on UDeveloperSettingsBackedByCVars"); \ +static_assert(sizeof(UDeveloperSettingsBackedByCVars) == 0x000038, "Wrong size on UDeveloperSettingsBackedByCVars"); \ + +#define DUMPER7_ASSERTS_UPlatformSettings \ +static_assert(alignof(UPlatformSettings) == 0x000008, "Wrong alignment on UPlatformSettings"); \ +static_assert(sizeof(UPlatformSettings) == 0x000040, "Wrong size on UPlatformSettings"); \ + +#define DUMPER7_ASSERTS_UPlatformSettingsManager \ +static_assert(alignof(UPlatformSettingsManager) == 0x000008, "Wrong alignment on UPlatformSettingsManager"); \ +static_assert(sizeof(UPlatformSettingsManager) == 0x000080, "Wrong size on UPlatformSettingsManager"); \ +static_assert(offsetof(UPlatformSettingsManager, SettingsMap) == 0x000028, "Member 'UPlatformSettingsManager::SettingsMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_DefensiveDash_Human_C \ +static_assert(alignof(UGA_Enemy_DefensiveDash_Human_C) == 0x000008, "Wrong alignment on UGA_Enemy_DefensiveDash_Human_C"); \ +static_assert(sizeof(UGA_Enemy_DefensiveDash_Human_C) == 0x0006B0, "Wrong size on UGA_Enemy_DefensiveDash_Human_C"); \ + +#define DUMPER7_ASSERTS_FBodyInstanceCore \ +static_assert(alignof(FBodyInstanceCore) == 0x000008, "Wrong alignment on FBodyInstanceCore"); \ +static_assert(sizeof(FBodyInstanceCore) == 0x000018, "Wrong size on FBodyInstanceCore"); \ + +#define DUMPER7_ASSERTS_FPhysicalMaterialStrength \ +static_assert(alignof(FPhysicalMaterialStrength) == 0x000004, "Wrong alignment on FPhysicalMaterialStrength"); \ +static_assert(sizeof(FPhysicalMaterialStrength) == 0x00000C, "Wrong size on FPhysicalMaterialStrength"); \ +static_assert(offsetof(FPhysicalMaterialStrength, TensileStrength) == 0x000000, "Member 'FPhysicalMaterialStrength::TensileStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalMaterialStrength, CompressionStrength) == 0x000004, "Member 'FPhysicalMaterialStrength::CompressionStrength' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalMaterialStrength, ShearStrength) == 0x000008, "Member 'FPhysicalMaterialStrength::ShearStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicalMaterialPropertyBase \ +static_assert(alignof(UPhysicalMaterialPropertyBase) == 0x000008, "Wrong alignment on UPhysicalMaterialPropertyBase"); \ +static_assert(sizeof(UPhysicalMaterialPropertyBase) == 0x000028, "Wrong size on UPhysicalMaterialPropertyBase"); \ + +#define DUMPER7_ASSERTS_UBodySetupCore \ +static_assert(alignof(UBodySetupCore) == 0x000008, "Wrong alignment on UBodySetupCore"); \ +static_assert(sizeof(UBodySetupCore) == 0x000038, "Wrong size on UBodySetupCore"); \ +static_assert(offsetof(UBodySetupCore, BoneName) == 0x000028, "Member 'UBodySetupCore::BoneName' has a wrong offset!"); \ +static_assert(offsetof(UBodySetupCore, PhysicsType) == 0x000030, "Member 'UBodySetupCore::PhysicsType' has a wrong offset!"); \ +static_assert(offsetof(UBodySetupCore, CollisionTraceFlag) == 0x000031, "Member 'UBodySetupCore::CollisionTraceFlag' has a wrong offset!"); \ +static_assert(offsetof(UBodySetupCore, CollisionReponse) == 0x000032, "Member 'UBodySetupCore::CollisionReponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosPhysicalMaterial \ +static_assert(alignof(UChaosPhysicalMaterial) == 0x000008, "Wrong alignment on UChaosPhysicalMaterial"); \ +static_assert(sizeof(UChaosPhysicalMaterial) == 0x000048, "Wrong size on UChaosPhysicalMaterial"); \ +static_assert(offsetof(UChaosPhysicalMaterial, Friction) == 0x000028, "Member 'UChaosPhysicalMaterial::Friction' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, StaticFriction) == 0x00002C, "Member 'UChaosPhysicalMaterial::StaticFriction' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, Restitution) == 0x000030, "Member 'UChaosPhysicalMaterial::Restitution' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, LinearEtherDrag) == 0x000034, "Member 'UChaosPhysicalMaterial::LinearEtherDrag' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, AngularEtherDrag) == 0x000038, "Member 'UChaosPhysicalMaterial::AngularEtherDrag' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, SleepingLinearVelocityThreshold) == 0x00003C, "Member 'UChaosPhysicalMaterial::SleepingLinearVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UChaosPhysicalMaterial, SleepingAngularVelocityThreshold) == 0x000040, "Member 'UChaosPhysicalMaterial::SleepingAngularVelocityThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicalMaterial \ +static_assert(alignof(UPhysicalMaterial) == 0x000008, "Wrong alignment on UPhysicalMaterial"); \ +static_assert(sizeof(UPhysicalMaterial) == 0x000088, "Wrong size on UPhysicalMaterial"); \ +static_assert(offsetof(UPhysicalMaterial, Friction) == 0x000028, "Member 'UPhysicalMaterial::Friction' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, StaticFriction) == 0x00002C, "Member 'UPhysicalMaterial::StaticFriction' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, FrictionCombineMode) == 0x000030, "Member 'UPhysicalMaterial::FrictionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, bOverrideFrictionCombineMode) == 0x000031, "Member 'UPhysicalMaterial::bOverrideFrictionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, Restitution) == 0x000034, "Member 'UPhysicalMaterial::Restitution' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, RestitutionCombineMode) == 0x000038, "Member 'UPhysicalMaterial::RestitutionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, bOverrideRestitutionCombineMode) == 0x000039, "Member 'UPhysicalMaterial::bOverrideRestitutionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, Density) == 0x00003C, "Member 'UPhysicalMaterial::Density' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, SleepLinearVelocityThreshold) == 0x000040, "Member 'UPhysicalMaterial::SleepLinearVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, SleepAngularVelocityThreshold) == 0x000044, "Member 'UPhysicalMaterial::SleepAngularVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, SleepCounterThreshold) == 0x000048, "Member 'UPhysicalMaterial::SleepCounterThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, RaiseMassToPower) == 0x00004C, "Member 'UPhysicalMaterial::RaiseMassToPower' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, DestructibleDamageThresholdScale) == 0x000050, "Member 'UPhysicalMaterial::DestructibleDamageThresholdScale' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, PhysicalMaterialProperty) == 0x000058, "Member 'UPhysicalMaterial::PhysicalMaterialProperty' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, SurfaceType) == 0x000060, "Member 'UPhysicalMaterial::SurfaceType' has a wrong offset!"); \ +static_assert(offsetof(UPhysicalMaterial, Strength) == 0x000064, "Member 'UPhysicalMaterial::Strength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPhysicsSettingsCore \ +static_assert(alignof(UPhysicsSettingsCore) == 0x000008, "Wrong alignment on UPhysicsSettingsCore"); \ +static_assert(sizeof(UPhysicsSettingsCore) == 0x0000E0, "Wrong size on UPhysicsSettingsCore"); \ +static_assert(offsetof(UPhysicsSettingsCore, DefaultGravityZ) == 0x000038, "Member 'UPhysicsSettingsCore::DefaultGravityZ' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, DefaultTerminalVelocity) == 0x00003C, "Member 'UPhysicsSettingsCore::DefaultTerminalVelocity' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, DefaultFluidFriction) == 0x000040, "Member 'UPhysicsSettingsCore::DefaultFluidFriction' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, SimulateScratchMemorySize) == 0x000044, "Member 'UPhysicsSettingsCore::SimulateScratchMemorySize' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, RagdollAggregateThreshold) == 0x000048, "Member 'UPhysicsSettingsCore::RagdollAggregateThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, TriangleMeshTriangleMinAreaThreshold) == 0x00004C, "Member 'UPhysicsSettingsCore::TriangleMeshTriangleMinAreaThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bEnableEnhancedDeterminism) == 0x000050, "Member 'UPhysicsSettingsCore::bEnableEnhancedDeterminism' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bEnableShapeSharing) == 0x000051, "Member 'UPhysicsSettingsCore::bEnableShapeSharing' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bEnablePCM) == 0x000052, "Member 'UPhysicsSettingsCore::bEnablePCM' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bEnableStabilization) == 0x000053, "Member 'UPhysicsSettingsCore::bEnableStabilization' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bWarnMissingLocks) == 0x000054, "Member 'UPhysicsSettingsCore::bWarnMissingLocks' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bEnable2DPhysics) == 0x000055, "Member 'UPhysicsSettingsCore::bEnable2DPhysics' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bDefaultHasComplexCollision) == 0x000056, "Member 'UPhysicsSettingsCore::bDefaultHasComplexCollision' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, BounceThresholdVelocity) == 0x000058, "Member 'UPhysicsSettingsCore::BounceThresholdVelocity' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, FrictionCombineMode) == 0x00005C, "Member 'UPhysicsSettingsCore::FrictionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, RestitutionCombineMode) == 0x00005D, "Member 'UPhysicsSettingsCore::RestitutionCombineMode' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, MaxAngularVelocity) == 0x000060, "Member 'UPhysicsSettingsCore::MaxAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, MaxDepenetrationVelocity) == 0x000064, "Member 'UPhysicsSettingsCore::MaxDepenetrationVelocity' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, ContactOffsetMultiplier) == 0x000068, "Member 'UPhysicsSettingsCore::ContactOffsetMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, MinContactOffset) == 0x00006C, "Member 'UPhysicsSettingsCore::MinContactOffset' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, MaxContactOffset) == 0x000070, "Member 'UPhysicsSettingsCore::MaxContactOffset' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, bSimulateSkeletalMeshOnDedicatedServer) == 0x000074, "Member 'UPhysicsSettingsCore::bSimulateSkeletalMeshOnDedicatedServer' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, DefaultShapeComplexity) == 0x000075, "Member 'UPhysicsSettingsCore::DefaultShapeComplexity' has a wrong offset!"); \ +static_assert(offsetof(UPhysicsSettingsCore, SolverOptions) == 0x000078, "Member 'UPhysicsSettingsCore::SolverOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCacheParams \ +static_assert(alignof(FMovieSceneGeometryCacheParams) == 0x000008, "Wrong alignment on FMovieSceneGeometryCacheParams"); \ +static_assert(sizeof(FMovieSceneGeometryCacheParams) == 0x000048, "Wrong size on FMovieSceneGeometryCacheParams"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, GeometryCacheAsset) == 0x000000, "Member 'FMovieSceneGeometryCacheParams::GeometryCacheAsset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, FirstLoopStartFrameOffset) == 0x000008, "Member 'FMovieSceneGeometryCacheParams::FirstLoopStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, StartFrameOffset) == 0x00000C, "Member 'FMovieSceneGeometryCacheParams::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, EndFrameOffset) == 0x000010, "Member 'FMovieSceneGeometryCacheParams::EndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, PlayRate) == 0x000014, "Member 'FMovieSceneGeometryCacheParams::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, StartOffset) == 0x00001C, "Member 'FMovieSceneGeometryCacheParams::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, EndOffset) == 0x000020, "Member 'FMovieSceneGeometryCacheParams::EndOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheParams, GeometryCache) == 0x000028, "Member 'FMovieSceneGeometryCacheParams::GeometryCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCacheSectionTemplateParameters \ +static_assert(alignof(FMovieSceneGeometryCacheSectionTemplateParameters) == 0x000008, "Wrong alignment on FMovieSceneGeometryCacheSectionTemplateParameters"); \ +static_assert(sizeof(FMovieSceneGeometryCacheSectionTemplateParameters) == 0x000050, "Wrong size on FMovieSceneGeometryCacheSectionTemplateParameters"); \ +static_assert(offsetof(FMovieSceneGeometryCacheSectionTemplateParameters, SectionStartTime) == 0x000048, "Member 'FMovieSceneGeometryCacheSectionTemplateParameters::SectionStartTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCacheSectionTemplateParameters, SectionEndTime) == 0x00004C, "Member 'FMovieSceneGeometryCacheSectionTemplateParameters::SectionEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCacheSectionTemplate \ +static_assert(alignof(FMovieSceneGeometryCacheSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneGeometryCacheSectionTemplate"); \ +static_assert(sizeof(FMovieSceneGeometryCacheSectionTemplate) == 0x000070, "Wrong size on FMovieSceneGeometryCacheSectionTemplate"); \ +static_assert(offsetof(FMovieSceneGeometryCacheSectionTemplate, Params) == 0x000020, "Member 'FMovieSceneGeometryCacheSectionTemplate::Params' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGeometryCacheSection \ +static_assert(alignof(UMovieSceneGeometryCacheSection) == 0x000008, "Wrong alignment on UMovieSceneGeometryCacheSection"); \ +static_assert(sizeof(UMovieSceneGeometryCacheSection) == 0x000138, "Wrong size on UMovieSceneGeometryCacheSection"); \ +static_assert(offsetof(UMovieSceneGeometryCacheSection, Params_0) == 0x0000F0, "Member 'UMovieSceneGeometryCacheSection::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGeometryCacheTrack \ +static_assert(alignof(UMovieSceneGeometryCacheTrack) == 0x000008, "Wrong alignment on UMovieSceneGeometryCacheTrack"); \ +static_assert(sizeof(UMovieSceneGeometryCacheTrack) == 0x0000B0, "Wrong size on UMovieSceneGeometryCacheTrack"); \ +static_assert(offsetof(UMovieSceneGeometryCacheTrack, AnimationSections) == 0x0000A0, "Member 'UMovieSceneGeometryCacheTrack::AnimationSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldNotificationId \ +static_assert(alignof(FFieldNotificationId) == 0x000004, "Wrong alignment on FFieldNotificationId"); \ +static_assert(sizeof(FFieldNotificationId) == 0x000008, "Wrong size on FFieldNotificationId"); \ +static_assert(offsetof(FFieldNotificationId, FieldName) == 0x000000, "Member 'FFieldNotificationId::FieldName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INotifyFieldValueChanged \ +static_assert(alignof(INotifyFieldValueChanged) == 0x000001, "Wrong alignment on INotifyFieldValueChanged"); \ +static_assert(sizeof(INotifyFieldValueChanged) == 0x000001, "Wrong size on INotifyFieldValueChanged"); \ + +#define DUMPER7_ASSERTS_UFadeOverlay_C \ +static_assert(alignof(UFadeOverlay_C) == 0x000008, "Wrong alignment on UFadeOverlay_C"); \ +static_assert(sizeof(UFadeOverlay_C) == 0x0000B0, "Wrong size on UFadeOverlay_C"); \ + +#define DUMPER7_ASSERTS_FElementID \ +static_assert(alignof(FElementID) == 0x000004, "Wrong alignment on FElementID"); \ +static_assert(sizeof(FElementID) == 0x000004, "Wrong size on FElementID"); \ +static_assert(offsetof(FElementID, IDValue) == 0x000000, "Member 'FElementID::IDValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVertexID \ +static_assert(alignof(FVertexID) == 0x000004, "Wrong alignment on FVertexID"); \ +static_assert(sizeof(FVertexID) == 0x000004, "Wrong size on FVertexID"); \ + +#define DUMPER7_ASSERTS_FVertexInstanceID \ +static_assert(alignof(FVertexInstanceID) == 0x000004, "Wrong alignment on FVertexInstanceID"); \ +static_assert(sizeof(FVertexInstanceID) == 0x000004, "Wrong size on FVertexInstanceID"); \ + +#define DUMPER7_ASSERTS_FEdgeID \ +static_assert(alignof(FEdgeID) == 0x000004, "Wrong alignment on FEdgeID"); \ +static_assert(sizeof(FEdgeID) == 0x000004, "Wrong size on FEdgeID"); \ + +#define DUMPER7_ASSERTS_FUVID \ +static_assert(alignof(FUVID) == 0x000004, "Wrong alignment on FUVID"); \ +static_assert(sizeof(FUVID) == 0x000004, "Wrong size on FUVID"); \ + +#define DUMPER7_ASSERTS_FTriangleID \ +static_assert(alignof(FTriangleID) == 0x000004, "Wrong alignment on FTriangleID"); \ +static_assert(sizeof(FTriangleID) == 0x000004, "Wrong size on FTriangleID"); \ + +#define DUMPER7_ASSERTS_FPolygonGroupID \ +static_assert(alignof(FPolygonGroupID) == 0x000004, "Wrong alignment on FPolygonGroupID"); \ +static_assert(sizeof(FPolygonGroupID) == 0x000004, "Wrong size on FPolygonGroupID"); \ + +#define DUMPER7_ASSERTS_FPolygonID \ +static_assert(alignof(FPolygonID) == 0x000004, "Wrong alignment on FPolygonID"); \ +static_assert(sizeof(FPolygonID) == 0x000004, "Wrong size on FPolygonID"); \ + +#define DUMPER7_ASSERTS_FBoneID \ +static_assert(alignof(FBoneID) == 0x000004, "Wrong alignment on FBoneID"); \ +static_assert(sizeof(FBoneID) == 0x000004, "Wrong size on FBoneID"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ComputePolygonTriangulation \ +static_assert(alignof(MeshDescriptionBase_ComputePolygonTriangulation) == 0x000004, "Wrong alignment on MeshDescriptionBase_ComputePolygonTriangulation"); \ +static_assert(sizeof(MeshDescriptionBase_ComputePolygonTriangulation) == 0x000004, "Wrong size on MeshDescriptionBase_ComputePolygonTriangulation"); \ +static_assert(offsetof(MeshDescriptionBase_ComputePolygonTriangulation, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_ComputePolygonTriangulation::PolygonID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateEdge \ +static_assert(alignof(MeshDescriptionBase_CreateEdge) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateEdge"); \ +static_assert(sizeof(MeshDescriptionBase_CreateEdge) == 0x00000C, "Wrong size on MeshDescriptionBase_CreateEdge"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdge, VertexID0) == 0x000000, "Member 'MeshDescriptionBase_CreateEdge::VertexID0' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdge, VertexID1) == 0x000004, "Member 'MeshDescriptionBase_CreateEdge::VertexID1' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdge, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_CreateEdge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateEdgeWithID \ +static_assert(alignof(MeshDescriptionBase_CreateEdgeWithID) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateEdgeWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreateEdgeWithID) == 0x00000C, "Wrong size on MeshDescriptionBase_CreateEdgeWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdgeWithID, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_CreateEdgeWithID::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdgeWithID, VertexID0) == 0x000004, "Member 'MeshDescriptionBase_CreateEdgeWithID::VertexID0' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateEdgeWithID, VertexID1) == 0x000008, "Member 'MeshDescriptionBase_CreateEdgeWithID::VertexID1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreatePolygon \ +static_assert(alignof(MeshDescriptionBase_CreatePolygon) == 0x000008, "Wrong alignment on MeshDescriptionBase_CreatePolygon"); \ +static_assert(sizeof(MeshDescriptionBase_CreatePolygon) == 0x000030, "Wrong size on MeshDescriptionBase_CreatePolygon"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygon, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_CreatePolygon::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygon, VertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_CreatePolygon::VertexInstanceIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygon, NewEdgeIDs) == 0x000018, "Member 'MeshDescriptionBase_CreatePolygon::NewEdgeIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygon, ReturnValue) == 0x000028, "Member 'MeshDescriptionBase_CreatePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreatePolygonGroup \ +static_assert(alignof(MeshDescriptionBase_CreatePolygonGroup) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreatePolygonGroup"); \ +static_assert(sizeof(MeshDescriptionBase_CreatePolygonGroup) == 0x000004, "Wrong size on MeshDescriptionBase_CreatePolygonGroup"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonGroup, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_CreatePolygonGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreatePolygonGroupWithID \ +static_assert(alignof(MeshDescriptionBase_CreatePolygonGroupWithID) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreatePolygonGroupWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreatePolygonGroupWithID) == 0x000004, "Wrong size on MeshDescriptionBase_CreatePolygonGroupWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonGroupWithID, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_CreatePolygonGroupWithID::PolygonGroupID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreatePolygonWithID \ +static_assert(alignof(MeshDescriptionBase_CreatePolygonWithID) == 0x000008, "Wrong alignment on MeshDescriptionBase_CreatePolygonWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreatePolygonWithID) == 0x000028, "Wrong size on MeshDescriptionBase_CreatePolygonWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonWithID, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_CreatePolygonWithID::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonWithID, PolygonGroupID) == 0x000004, "Member 'MeshDescriptionBase_CreatePolygonWithID::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonWithID, VertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_CreatePolygonWithID::VertexInstanceIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreatePolygonWithID, NewEdgeIDs) == 0x000018, "Member 'MeshDescriptionBase_CreatePolygonWithID::NewEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateTriangle \ +static_assert(alignof(MeshDescriptionBase_CreateTriangle) == 0x000008, "Wrong alignment on MeshDescriptionBase_CreateTriangle"); \ +static_assert(sizeof(MeshDescriptionBase_CreateTriangle) == 0x000030, "Wrong size on MeshDescriptionBase_CreateTriangle"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangle, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_CreateTriangle::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangle, VertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_CreateTriangle::VertexInstanceIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangle, NewEdgeIDs) == 0x000018, "Member 'MeshDescriptionBase_CreateTriangle::NewEdgeIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangle, ReturnValue) == 0x000028, "Member 'MeshDescriptionBase_CreateTriangle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateTriangleWithID \ +static_assert(alignof(MeshDescriptionBase_CreateTriangleWithID) == 0x000008, "Wrong alignment on MeshDescriptionBase_CreateTriangleWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreateTriangleWithID) == 0x000028, "Wrong size on MeshDescriptionBase_CreateTriangleWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangleWithID, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_CreateTriangleWithID::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangleWithID, PolygonGroupID) == 0x000004, "Member 'MeshDescriptionBase_CreateTriangleWithID::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangleWithID, VertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_CreateTriangleWithID::VertexInstanceIDs' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateTriangleWithID, NewEdgeIDs) == 0x000018, "Member 'MeshDescriptionBase_CreateTriangleWithID::NewEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateVertex \ +static_assert(alignof(MeshDescriptionBase_CreateVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateVertex"); \ +static_assert(sizeof(MeshDescriptionBase_CreateVertex) == 0x000004, "Wrong size on MeshDescriptionBase_CreateVertex"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertex, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_CreateVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateVertexInstance \ +static_assert(alignof(MeshDescriptionBase_CreateVertexInstance) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateVertexInstance"); \ +static_assert(sizeof(MeshDescriptionBase_CreateVertexInstance) == 0x000008, "Wrong size on MeshDescriptionBase_CreateVertexInstance"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertexInstance, VertexID) == 0x000000, "Member 'MeshDescriptionBase_CreateVertexInstance::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertexInstance, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_CreateVertexInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateVertexInstanceWithID \ +static_assert(alignof(MeshDescriptionBase_CreateVertexInstanceWithID) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateVertexInstanceWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreateVertexInstanceWithID) == 0x000008, "Wrong size on MeshDescriptionBase_CreateVertexInstanceWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertexInstanceWithID, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_CreateVertexInstanceWithID::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertexInstanceWithID, VertexID) == 0x000004, "Member 'MeshDescriptionBase_CreateVertexInstanceWithID::VertexID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_CreateVertexWithID \ +static_assert(alignof(MeshDescriptionBase_CreateVertexWithID) == 0x000004, "Wrong alignment on MeshDescriptionBase_CreateVertexWithID"); \ +static_assert(sizeof(MeshDescriptionBase_CreateVertexWithID) == 0x000004, "Wrong size on MeshDescriptionBase_CreateVertexWithID"); \ +static_assert(offsetof(MeshDescriptionBase_CreateVertexWithID, VertexID) == 0x000000, "Member 'MeshDescriptionBase_CreateVertexWithID::VertexID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeleteEdge \ +static_assert(alignof(MeshDescriptionBase_DeleteEdge) == 0x000008, "Wrong alignment on MeshDescriptionBase_DeleteEdge"); \ +static_assert(sizeof(MeshDescriptionBase_DeleteEdge) == 0x000018, "Wrong size on MeshDescriptionBase_DeleteEdge"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteEdge, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_DeleteEdge::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteEdge, OrphanedVertices) == 0x000008, "Member 'MeshDescriptionBase_DeleteEdge::OrphanedVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeletePolygon \ +static_assert(alignof(MeshDescriptionBase_DeletePolygon) == 0x000008, "Wrong alignment on MeshDescriptionBase_DeletePolygon"); \ +static_assert(sizeof(MeshDescriptionBase_DeletePolygon) == 0x000038, "Wrong size on MeshDescriptionBase_DeletePolygon"); \ +static_assert(offsetof(MeshDescriptionBase_DeletePolygon, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_DeletePolygon::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeletePolygon, OrphanedEdges) == 0x000008, "Member 'MeshDescriptionBase_DeletePolygon::OrphanedEdges' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeletePolygon, OrphanedVertexInstances) == 0x000018, "Member 'MeshDescriptionBase_DeletePolygon::OrphanedVertexInstances' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeletePolygon, OrphanedPolygonGroups) == 0x000028, "Member 'MeshDescriptionBase_DeletePolygon::OrphanedPolygonGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeletePolygonGroup \ +static_assert(alignof(MeshDescriptionBase_DeletePolygonGroup) == 0x000004, "Wrong alignment on MeshDescriptionBase_DeletePolygonGroup"); \ +static_assert(sizeof(MeshDescriptionBase_DeletePolygonGroup) == 0x000004, "Wrong size on MeshDescriptionBase_DeletePolygonGroup"); \ +static_assert(offsetof(MeshDescriptionBase_DeletePolygonGroup, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_DeletePolygonGroup::PolygonGroupID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeleteTriangle \ +static_assert(alignof(MeshDescriptionBase_DeleteTriangle) == 0x000008, "Wrong alignment on MeshDescriptionBase_DeleteTriangle"); \ +static_assert(sizeof(MeshDescriptionBase_DeleteTriangle) == 0x000038, "Wrong size on MeshDescriptionBase_DeleteTriangle"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteTriangle, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_DeleteTriangle::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteTriangle, OrphanedEdges) == 0x000008, "Member 'MeshDescriptionBase_DeleteTriangle::OrphanedEdges' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteTriangle, OrphanedVertexInstances) == 0x000018, "Member 'MeshDescriptionBase_DeleteTriangle::OrphanedVertexInstances' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteTriangle, OrphanedPolygonGroupsPtr) == 0x000028, "Member 'MeshDescriptionBase_DeleteTriangle::OrphanedPolygonGroupsPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeleteVertex \ +static_assert(alignof(MeshDescriptionBase_DeleteVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_DeleteVertex"); \ +static_assert(sizeof(MeshDescriptionBase_DeleteVertex) == 0x000004, "Wrong size on MeshDescriptionBase_DeleteVertex"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteVertex, VertexID) == 0x000000, "Member 'MeshDescriptionBase_DeleteVertex::VertexID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_DeleteVertexInstance \ +static_assert(alignof(MeshDescriptionBase_DeleteVertexInstance) == 0x000008, "Wrong alignment on MeshDescriptionBase_DeleteVertexInstance"); \ +static_assert(sizeof(MeshDescriptionBase_DeleteVertexInstance) == 0x000018, "Wrong size on MeshDescriptionBase_DeleteVertexInstance"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteVertexInstance, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_DeleteVertexInstance::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_DeleteVertexInstance, OrphanedVertices) == 0x000008, "Member 'MeshDescriptionBase_DeleteVertexInstance::OrphanedVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewEdges \ +static_assert(alignof(MeshDescriptionBase_ReserveNewEdges) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewEdges"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewEdges) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewEdges"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewEdges, NumberOfNewEdges) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewEdges::NumberOfNewEdges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewPolygonGroups \ +static_assert(alignof(MeshDescriptionBase_ReserveNewPolygonGroups) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewPolygonGroups"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewPolygonGroups) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewPolygonGroups"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewPolygonGroups, NumberOfNewPolygonGroups) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewPolygonGroups::NumberOfNewPolygonGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewPolygons \ +static_assert(alignof(MeshDescriptionBase_ReserveNewPolygons) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewPolygons) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewPolygons, NumberOfNewPolygons) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewPolygons::NumberOfNewPolygons' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewTriangles \ +static_assert(alignof(MeshDescriptionBase_ReserveNewTriangles) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewTriangles) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewTriangles, NumberOfNewTriangles) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewTriangles::NumberOfNewTriangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewVertexInstances \ +static_assert(alignof(MeshDescriptionBase_ReserveNewVertexInstances) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewVertexInstances) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewVertexInstances, NumberOfNewVertexInstances) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewVertexInstances::NumberOfNewVertexInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReserveNewVertices \ +static_assert(alignof(MeshDescriptionBase_ReserveNewVertices) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReserveNewVertices"); \ +static_assert(sizeof(MeshDescriptionBase_ReserveNewVertices) == 0x000004, "Wrong size on MeshDescriptionBase_ReserveNewVertices"); \ +static_assert(offsetof(MeshDescriptionBase_ReserveNewVertices, NumberOfNewVertices) == 0x000000, "Member 'MeshDescriptionBase_ReserveNewVertices::NumberOfNewVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_ReversePolygonFacing \ +static_assert(alignof(MeshDescriptionBase_ReversePolygonFacing) == 0x000004, "Wrong alignment on MeshDescriptionBase_ReversePolygonFacing"); \ +static_assert(sizeof(MeshDescriptionBase_ReversePolygonFacing) == 0x000004, "Wrong size on MeshDescriptionBase_ReversePolygonFacing"); \ +static_assert(offsetof(MeshDescriptionBase_ReversePolygonFacing, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_ReversePolygonFacing::PolygonID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_SetPolygonPolygonGroup \ +static_assert(alignof(MeshDescriptionBase_SetPolygonPolygonGroup) == 0x000004, "Wrong alignment on MeshDescriptionBase_SetPolygonPolygonGroup"); \ +static_assert(sizeof(MeshDescriptionBase_SetPolygonPolygonGroup) == 0x000008, "Wrong size on MeshDescriptionBase_SetPolygonPolygonGroup"); \ +static_assert(offsetof(MeshDescriptionBase_SetPolygonPolygonGroup, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_SetPolygonPolygonGroup::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_SetPolygonPolygonGroup, PolygonGroupID) == 0x000004, "Member 'MeshDescriptionBase_SetPolygonPolygonGroup::PolygonGroupID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_SetPolygonVertexInstances \ +static_assert(alignof(MeshDescriptionBase_SetPolygonVertexInstances) == 0x000008, "Wrong alignment on MeshDescriptionBase_SetPolygonVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_SetPolygonVertexInstances) == 0x000018, "Wrong size on MeshDescriptionBase_SetPolygonVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_SetPolygonVertexInstances, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_SetPolygonVertexInstances::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_SetPolygonVertexInstances, VertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_SetPolygonVertexInstances::VertexInstanceIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_SetVertexPosition \ +static_assert(alignof(MeshDescriptionBase_SetVertexPosition) == 0x000008, "Wrong alignment on MeshDescriptionBase_SetVertexPosition"); \ +static_assert(sizeof(MeshDescriptionBase_SetVertexPosition) == 0x000020, "Wrong size on MeshDescriptionBase_SetVertexPosition"); \ +static_assert(offsetof(MeshDescriptionBase_SetVertexPosition, VertexID) == 0x000000, "Member 'MeshDescriptionBase_SetVertexPosition::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_SetVertexPosition, Position) == 0x000008, "Member 'MeshDescriptionBase_SetVertexPosition::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetEdgeConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetEdgeConnectedPolygons) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetEdgeConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetEdgeConnectedPolygons) == 0x000018, "Wrong size on MeshDescriptionBase_GetEdgeConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeConnectedPolygons, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetEdgeConnectedPolygons::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeConnectedPolygons, OutConnectedPolygonIDs) == 0x000008, "Member 'MeshDescriptionBase_GetEdgeConnectedPolygons::OutConnectedPolygonIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetEdgeConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetEdgeConnectedTriangles) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetEdgeConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetEdgeConnectedTriangles) == 0x000018, "Wrong size on MeshDescriptionBase_GetEdgeConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeConnectedTriangles, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetEdgeConnectedTriangles::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeConnectedTriangles, OutConnectedTriangleIDs) == 0x000008, "Member 'MeshDescriptionBase_GetEdgeConnectedTriangles::OutConnectedTriangleIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetEdgeCount \ +static_assert(alignof(MeshDescriptionBase_GetEdgeCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetEdgeCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetEdgeCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetEdgeCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetEdgeCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetEdgeVertex \ +static_assert(alignof(MeshDescriptionBase_GetEdgeVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetEdgeVertex"); \ +static_assert(sizeof(MeshDescriptionBase_GetEdgeVertex) == 0x00000C, "Wrong size on MeshDescriptionBase_GetEdgeVertex"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeVertex, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetEdgeVertex::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeVertex, VertexNumber) == 0x000004, "Member 'MeshDescriptionBase_GetEdgeVertex::VertexNumber' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeVertex, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetEdgeVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetEdgeVertices \ +static_assert(alignof(MeshDescriptionBase_GetEdgeVertices) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetEdgeVertices"); \ +static_assert(sizeof(MeshDescriptionBase_GetEdgeVertices) == 0x000018, "Wrong size on MeshDescriptionBase_GetEdgeVertices"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeVertices, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetEdgeVertices::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetEdgeVertices, OutVertexIDs) == 0x000008, "Member 'MeshDescriptionBase_GetEdgeVertices::OutVertexIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumEdgeConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetNumEdgeConnectedPolygons) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumEdgeConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumEdgeConnectedPolygons) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumEdgeConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumEdgeConnectedPolygons, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetNumEdgeConnectedPolygons::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumEdgeConnectedPolygons, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumEdgeConnectedPolygons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumEdgeConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetNumEdgeConnectedTriangles) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumEdgeConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumEdgeConnectedTriangles) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumEdgeConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumEdgeConnectedTriangles, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_GetNumEdgeConnectedTriangles::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumEdgeConnectedTriangles, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumEdgeConnectedTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumPolygonGroupPolygons \ +static_assert(alignof(MeshDescriptionBase_GetNumPolygonGroupPolygons) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumPolygonGroupPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumPolygonGroupPolygons) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumPolygonGroupPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonGroupPolygons, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_GetNumPolygonGroupPolygons::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonGroupPolygons, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumPolygonGroupPolygons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumPolygonInternalEdges \ +static_assert(alignof(MeshDescriptionBase_GetNumPolygonInternalEdges) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumPolygonInternalEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumPolygonInternalEdges) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumPolygonInternalEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonInternalEdges, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetNumPolygonInternalEdges::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonInternalEdges, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumPolygonInternalEdges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumPolygonTriangles \ +static_assert(alignof(MeshDescriptionBase_GetNumPolygonTriangles) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumPolygonTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumPolygonTriangles) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumPolygonTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonTriangles, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetNumPolygonTriangles::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonTriangles, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumPolygonTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumPolygonVertices \ +static_assert(alignof(MeshDescriptionBase_GetNumPolygonVertices) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumPolygonVertices"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumPolygonVertices) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumPolygonVertices"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonVertices, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetNumPolygonVertices::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumPolygonVertices, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumPolygonVertices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexConnectedEdges \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexConnectedEdges) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexConnectedEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexConnectedEdges) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexConnectedEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedEdges, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexConnectedEdges::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedEdges, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexConnectedEdges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexConnectedPolygons) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexConnectedPolygons) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedPolygons, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexConnectedPolygons::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedPolygons, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexConnectedPolygons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexConnectedTriangles) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexConnectedTriangles) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedTriangles, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexConnectedTriangles::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexConnectedTriangles, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexConnectedTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexInstanceConnectedPolygons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexInstanceConnectedTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetNumVertexVertexInstances \ +static_assert(alignof(MeshDescriptionBase_GetNumVertexVertexInstances) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetNumVertexVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_GetNumVertexVertexInstances) == 0x000008, "Wrong size on MeshDescriptionBase_GetNumVertexVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexVertexInstances, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetNumVertexVertexInstances::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetNumVertexVertexInstances, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetNumVertexVertexInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonAdjacentPolygons \ +static_assert(alignof(MeshDescriptionBase_GetPolygonAdjacentPolygons) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonAdjacentPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonAdjacentPolygons) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonAdjacentPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonAdjacentPolygons, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonAdjacentPolygons::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonAdjacentPolygons, OutPolygonIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonAdjacentPolygons::OutPolygonIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonCount \ +static_assert(alignof(MeshDescriptionBase_GetPolygonCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetPolygonCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetPolygonCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonGroupCount \ +static_assert(alignof(MeshDescriptionBase_GetPolygonGroupCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetPolygonGroupCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonGroupCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetPolygonGroupCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonGroupCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonGroupCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonGroupPolygons \ +static_assert(alignof(MeshDescriptionBase_GetPolygonGroupPolygons) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonGroupPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonGroupPolygons) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonGroupPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonGroupPolygons, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonGroupPolygons::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonGroupPolygons, OutPolygonIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonGroupPolygons::OutPolygonIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonInternalEdges \ +static_assert(alignof(MeshDescriptionBase_GetPolygonInternalEdges) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonInternalEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonInternalEdges) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonInternalEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonInternalEdges, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonInternalEdges::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonInternalEdges, OutEdgeIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonInternalEdges::OutEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonPerimeterEdges \ +static_assert(alignof(MeshDescriptionBase_GetPolygonPerimeterEdges) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonPerimeterEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonPerimeterEdges) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonPerimeterEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonPerimeterEdges, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonPerimeterEdges::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonPerimeterEdges, OutEdgeIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonPerimeterEdges::OutEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonPolygonGroup \ +static_assert(alignof(MeshDescriptionBase_GetPolygonPolygonGroup) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetPolygonPolygonGroup"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonPolygonGroup) == 0x000008, "Wrong size on MeshDescriptionBase_GetPolygonPolygonGroup"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonPolygonGroup, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonPolygonGroup::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonPolygonGroup, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetPolygonPolygonGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonTriangles \ +static_assert(alignof(MeshDescriptionBase_GetPolygonTriangles) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonTriangles) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonTriangles, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonTriangles::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonTriangles, OutTriangleIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonTriangles::OutTriangleIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonVertexInstances \ +static_assert(alignof(MeshDescriptionBase_GetPolygonVertexInstances) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonVertexInstances) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonVertexInstances, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonVertexInstances::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonVertexInstances, OutVertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonVertexInstances::OutVertexInstanceIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetPolygonVertices \ +static_assert(alignof(MeshDescriptionBase_GetPolygonVertices) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetPolygonVertices"); \ +static_assert(sizeof(MeshDescriptionBase_GetPolygonVertices) == 0x000018, "Wrong size on MeshDescriptionBase_GetPolygonVertices"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonVertices, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetPolygonVertices::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetPolygonVertices, OutVertexIDs) == 0x000008, "Member 'MeshDescriptionBase_GetPolygonVertices::OutVertexIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleAdjacentTriangles \ +static_assert(alignof(MeshDescriptionBase_GetTriangleAdjacentTriangles) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetTriangleAdjacentTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleAdjacentTriangles) == 0x000018, "Wrong size on MeshDescriptionBase_GetTriangleAdjacentTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleAdjacentTriangles, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleAdjacentTriangles::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleAdjacentTriangles, OutTriangleIDs) == 0x000008, "Member 'MeshDescriptionBase_GetTriangleAdjacentTriangles::OutTriangleIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleCount \ +static_assert(alignof(MeshDescriptionBase_GetTriangleCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetTriangleCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetTriangleCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleEdges \ +static_assert(alignof(MeshDescriptionBase_GetTriangleEdges) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetTriangleEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleEdges) == 0x000018, "Wrong size on MeshDescriptionBase_GetTriangleEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleEdges, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleEdges::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleEdges, OutEdgeIDs) == 0x000008, "Member 'MeshDescriptionBase_GetTriangleEdges::OutEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTrianglePolygon \ +static_assert(alignof(MeshDescriptionBase_GetTrianglePolygon) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetTrianglePolygon"); \ +static_assert(sizeof(MeshDescriptionBase_GetTrianglePolygon) == 0x000008, "Wrong size on MeshDescriptionBase_GetTrianglePolygon"); \ +static_assert(offsetof(MeshDescriptionBase_GetTrianglePolygon, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTrianglePolygon::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTrianglePolygon, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetTrianglePolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTrianglePolygonGroup \ +static_assert(alignof(MeshDescriptionBase_GetTrianglePolygonGroup) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetTrianglePolygonGroup"); \ +static_assert(sizeof(MeshDescriptionBase_GetTrianglePolygonGroup) == 0x000008, "Wrong size on MeshDescriptionBase_GetTrianglePolygonGroup"); \ +static_assert(offsetof(MeshDescriptionBase_GetTrianglePolygonGroup, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTrianglePolygonGroup::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTrianglePolygonGroup, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetTrianglePolygonGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleVertexInstance \ +static_assert(alignof(MeshDescriptionBase_GetTriangleVertexInstance) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetTriangleVertexInstance"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleVertexInstance) == 0x00000C, "Wrong size on MeshDescriptionBase_GetTriangleVertexInstance"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertexInstance, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleVertexInstance::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertexInstance, Index_0) == 0x000004, "Member 'MeshDescriptionBase_GetTriangleVertexInstance::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertexInstance, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetTriangleVertexInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleVertexInstances \ +static_assert(alignof(MeshDescriptionBase_GetTriangleVertexInstances) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetTriangleVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleVertexInstances) == 0x000018, "Wrong size on MeshDescriptionBase_GetTriangleVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertexInstances, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleVertexInstances::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertexInstances, OutVertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_GetTriangleVertexInstances::OutVertexInstanceIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetTriangleVertices \ +static_assert(alignof(MeshDescriptionBase_GetTriangleVertices) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetTriangleVertices"); \ +static_assert(sizeof(MeshDescriptionBase_GetTriangleVertices) == 0x000018, "Wrong size on MeshDescriptionBase_GetTriangleVertices"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertices, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetTriangleVertices::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetTriangleVertices, OutVertexIDs) == 0x000008, "Member 'MeshDescriptionBase_GetTriangleVertices::OutVertexIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexAdjacentVertices \ +static_assert(alignof(MeshDescriptionBase_GetVertexAdjacentVertices) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexAdjacentVertices"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexAdjacentVertices) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexAdjacentVertices"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexAdjacentVertices, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexAdjacentVertices::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexAdjacentVertices, OutAdjacentVertexIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexAdjacentVertices::OutAdjacentVertexIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexConnectedEdges \ +static_assert(alignof(MeshDescriptionBase_GetVertexConnectedEdges) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexConnectedEdges"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexConnectedEdges) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexConnectedEdges"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedEdges, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexConnectedEdges::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedEdges, OutEdgeIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexConnectedEdges::OutEdgeIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetVertexConnectedPolygons) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexConnectedPolygons) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedPolygons, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexConnectedPolygons::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedPolygons, OutConnectedPolygonIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexConnectedPolygons::OutConnectedPolygonIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetVertexConnectedTriangles) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexConnectedTriangles) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedTriangles, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexConnectedTriangles::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexConnectedTriangles, OutConnectedTriangleIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexConnectedTriangles::OutConnectedTriangleIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexCount \ +static_assert(alignof(MeshDescriptionBase_GetVertexCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetVertexCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceConnectedPolygons \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceConnectedPolygons) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceConnectedPolygons"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceConnectedPolygons) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexInstanceConnectedPolygons"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceConnectedPolygons, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceConnectedPolygons::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceConnectedPolygons, OutConnectedPolygonIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexInstanceConnectedPolygons::OutConnectedPolygonIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceConnectedTriangles \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceConnectedTriangles) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceConnectedTriangles"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceConnectedTriangles) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexInstanceConnectedTriangles"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceConnectedTriangles, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceConnectedTriangles::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceConnectedTriangles, OutConnectedTriangleIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexInstanceConnectedTriangles::OutConnectedTriangleIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceCount \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceCount) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceCount"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceCount) == 0x000004, "Wrong size on MeshDescriptionBase_GetVertexInstanceCount"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceCount, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceForPolygonVertex \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceForPolygonVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceForPolygonVertex"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceForPolygonVertex) == 0x00000C, "Wrong size on MeshDescriptionBase_GetVertexInstanceForPolygonVertex"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForPolygonVertex, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceForPolygonVertex::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForPolygonVertex, VertexID) == 0x000004, "Member 'MeshDescriptionBase_GetVertexInstanceForPolygonVertex::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForPolygonVertex, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetVertexInstanceForPolygonVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceForTriangleVertex \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceForTriangleVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceForTriangleVertex"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceForTriangleVertex) == 0x00000C, "Wrong size on MeshDescriptionBase_GetVertexInstanceForTriangleVertex"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForTriangleVertex, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceForTriangleVertex::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForTriangleVertex, VertexID) == 0x000004, "Member 'MeshDescriptionBase_GetVertexInstanceForTriangleVertex::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceForTriangleVertex, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetVertexInstanceForTriangleVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstancePairEdge \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstancePairEdge) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexInstancePairEdge"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstancePairEdge) == 0x00000C, "Wrong size on MeshDescriptionBase_GetVertexInstancePairEdge"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstancePairEdge, VertexInstanceID0) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstancePairEdge::VertexInstanceID0' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstancePairEdge, VertexInstanceID1) == 0x000004, "Member 'MeshDescriptionBase_GetVertexInstancePairEdge::VertexInstanceID1' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstancePairEdge, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetVertexInstancePairEdge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexInstanceVertex \ +static_assert(alignof(MeshDescriptionBase_GetVertexInstanceVertex) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexInstanceVertex"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexInstanceVertex) == 0x000008, "Wrong size on MeshDescriptionBase_GetVertexInstanceVertex"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceVertex, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexInstanceVertex::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexInstanceVertex, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_GetVertexInstanceVertex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexPairEdge \ +static_assert(alignof(MeshDescriptionBase_GetVertexPairEdge) == 0x000004, "Wrong alignment on MeshDescriptionBase_GetVertexPairEdge"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexPairEdge) == 0x00000C, "Wrong size on MeshDescriptionBase_GetVertexPairEdge"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexPairEdge, VertexID0) == 0x000000, "Member 'MeshDescriptionBase_GetVertexPairEdge::VertexID0' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexPairEdge, VertexID1) == 0x000004, "Member 'MeshDescriptionBase_GetVertexPairEdge::VertexID1' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexPairEdge, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetVertexPairEdge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexPosition \ +static_assert(alignof(MeshDescriptionBase_GetVertexPosition) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexPosition"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexPosition) == 0x000020, "Wrong size on MeshDescriptionBase_GetVertexPosition"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexPosition, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexPosition::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexPosition, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_GetVertexPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_GetVertexVertexInstances \ +static_assert(alignof(MeshDescriptionBase_GetVertexVertexInstances) == 0x000008, "Wrong alignment on MeshDescriptionBase_GetVertexVertexInstances"); \ +static_assert(sizeof(MeshDescriptionBase_GetVertexVertexInstances) == 0x000018, "Wrong size on MeshDescriptionBase_GetVertexVertexInstances"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexVertexInstances, VertexID) == 0x000000, "Member 'MeshDescriptionBase_GetVertexVertexInstances::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_GetVertexVertexInstances, OutVertexInstanceIDs) == 0x000008, "Member 'MeshDescriptionBase_GetVertexVertexInstances::OutVertexInstanceIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsEdgeInternal \ +static_assert(alignof(MeshDescriptionBase_IsEdgeInternal) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsEdgeInternal"); \ +static_assert(sizeof(MeshDescriptionBase_IsEdgeInternal) == 0x000008, "Wrong size on MeshDescriptionBase_IsEdgeInternal"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeInternal, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_IsEdgeInternal::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeInternal, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsEdgeInternal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsEdgeInternalToPolygon \ +static_assert(alignof(MeshDescriptionBase_IsEdgeInternalToPolygon) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsEdgeInternalToPolygon"); \ +static_assert(sizeof(MeshDescriptionBase_IsEdgeInternalToPolygon) == 0x00000C, "Wrong size on MeshDescriptionBase_IsEdgeInternalToPolygon"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeInternalToPolygon, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_IsEdgeInternalToPolygon::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeInternalToPolygon, PolygonID) == 0x000004, "Member 'MeshDescriptionBase_IsEdgeInternalToPolygon::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeInternalToPolygon, ReturnValue) == 0x000008, "Member 'MeshDescriptionBase_IsEdgeInternalToPolygon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsEdgeValid \ +static_assert(alignof(MeshDescriptionBase_IsEdgeValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsEdgeValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsEdgeValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsEdgeValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeValid, EdgeID) == 0x000000, "Member 'MeshDescriptionBase_IsEdgeValid::EdgeID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsEdgeValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsEdgeValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsEmpty \ +static_assert(alignof(MeshDescriptionBase_IsEmpty) == 0x000001, "Wrong alignment on MeshDescriptionBase_IsEmpty"); \ +static_assert(sizeof(MeshDescriptionBase_IsEmpty) == 0x000001, "Wrong size on MeshDescriptionBase_IsEmpty"); \ +static_assert(offsetof(MeshDescriptionBase_IsEmpty, ReturnValue) == 0x000000, "Member 'MeshDescriptionBase_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsPolygonGroupValid \ +static_assert(alignof(MeshDescriptionBase_IsPolygonGroupValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsPolygonGroupValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsPolygonGroupValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsPolygonGroupValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsPolygonGroupValid, PolygonGroupID) == 0x000000, "Member 'MeshDescriptionBase_IsPolygonGroupValid::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsPolygonGroupValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsPolygonGroupValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsPolygonValid \ +static_assert(alignof(MeshDescriptionBase_IsPolygonValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsPolygonValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsPolygonValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsPolygonValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsPolygonValid, PolygonID) == 0x000000, "Member 'MeshDescriptionBase_IsPolygonValid::PolygonID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsPolygonValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsPolygonValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsTrianglePartOfNgon \ +static_assert(alignof(MeshDescriptionBase_IsTrianglePartOfNgon) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsTrianglePartOfNgon"); \ +static_assert(sizeof(MeshDescriptionBase_IsTrianglePartOfNgon) == 0x000008, "Wrong size on MeshDescriptionBase_IsTrianglePartOfNgon"); \ +static_assert(offsetof(MeshDescriptionBase_IsTrianglePartOfNgon, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_IsTrianglePartOfNgon::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsTrianglePartOfNgon, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsTrianglePartOfNgon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsTriangleValid \ +static_assert(alignof(MeshDescriptionBase_IsTriangleValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsTriangleValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsTriangleValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsTriangleValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsTriangleValid, TriangleID) == 0x000000, "Member 'MeshDescriptionBase_IsTriangleValid::TriangleID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsTriangleValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsTriangleValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsVertexInstanceValid \ +static_assert(alignof(MeshDescriptionBase_IsVertexInstanceValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsVertexInstanceValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsVertexInstanceValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsVertexInstanceValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexInstanceValid, VertexInstanceID) == 0x000000, "Member 'MeshDescriptionBase_IsVertexInstanceValid::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexInstanceValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsVertexInstanceValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsVertexOrphaned \ +static_assert(alignof(MeshDescriptionBase_IsVertexOrphaned) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsVertexOrphaned"); \ +static_assert(sizeof(MeshDescriptionBase_IsVertexOrphaned) == 0x000008, "Wrong size on MeshDescriptionBase_IsVertexOrphaned"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexOrphaned, VertexID) == 0x000000, "Member 'MeshDescriptionBase_IsVertexOrphaned::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexOrphaned, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsVertexOrphaned::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshDescriptionBase_IsVertexValid \ +static_assert(alignof(MeshDescriptionBase_IsVertexValid) == 0x000004, "Wrong alignment on MeshDescriptionBase_IsVertexValid"); \ +static_assert(sizeof(MeshDescriptionBase_IsVertexValid) == 0x000008, "Wrong size on MeshDescriptionBase_IsVertexValid"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexValid, VertexID) == 0x000000, "Member 'MeshDescriptionBase_IsVertexValid::VertexID' has a wrong offset!"); \ +static_assert(offsetof(MeshDescriptionBase_IsVertexValid, ReturnValue) == 0x000004, "Member 'MeshDescriptionBase_IsVertexValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshDescriptionBase \ +static_assert(alignof(UMeshDescriptionBase) == 0x000008, "Wrong alignment on UMeshDescriptionBase"); \ +static_assert(sizeof(UMeshDescriptionBase) == 0x0002F0, "Wrong size on UMeshDescriptionBase"); \ + +#define DUMPER7_ASSERTS_UMeshDescriptionBaseBulkData \ +static_assert(alignof(UMeshDescriptionBaseBulkData) == 0x000008, "Wrong alignment on UMeshDescriptionBaseBulkData"); \ +static_assert(sizeof(UMeshDescriptionBaseBulkData) == 0x000028, "Wrong size on UMeshDescriptionBaseBulkData"); \ + +#define DUMPER7_ASSERTS_UDisabledSubTabFont_C \ +static_assert(alignof(UDisabledSubTabFont_C) == 0x000010, "Wrong alignment on UDisabledSubTabFont_C"); \ +static_assert(sizeof(UDisabledSubTabFont_C) == 0x0001B0, "Wrong size on UDisabledSubTabFont_C"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Shotgun_ThinbloodEarly_C \ +static_assert(alignof(UBP_WeaponInstance_Shotgun_ThinbloodEarly_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Shotgun_ThinbloodEarly_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Shotgun_ThinbloodEarly_C) == 0x000240, "Wrong size on UBP_WeaponInstance_Shotgun_ThinbloodEarly_C"); \ + +#define DUMPER7_ASSERTS_BPI_Elixir_C_CanCollect \ +static_assert(alignof(BPI_Elixir_C_CanCollect) == 0x000001, "Wrong alignment on BPI_Elixir_C_CanCollect"); \ +static_assert(sizeof(BPI_Elixir_C_CanCollect) == 0x000001, "Wrong size on BPI_Elixir_C_CanCollect"); \ +static_assert(offsetof(BPI_Elixir_C_CanCollect, Can_Collect) == 0x000000, "Member 'BPI_Elixir_C_CanCollect::Can_Collect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_Elixir_C \ +static_assert(alignof(IBPI_Elixir_C) == 0x000001, "Wrong alignment on IBPI_Elixir_C"); \ +static_assert(sizeof(IBPI_Elixir_C) == 0x000001, "Wrong size on IBPI_Elixir_C"); \ + +#define DUMPER7_ASSERTS_WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon \ +static_assert(alignof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon) == 0x000008, "Wrong alignment on WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon"); \ +static_assert(sizeof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon) == 0x000048, "Wrong size on WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, EntryPoint) == 0x000000, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, CallFunc_GetVisibility_ReturnValue) == 0x000020, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::CallFunc_GetVisibility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_Event_InCurrentInputType) == 0x000021, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_CustomEvent_InVisibility) == 0x000022, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_CustomEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_SwitchEnum_CmpSuccess) == 0x000023, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, CallFunc_PlayAnimation_ReturnValue) == 0x000028, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_CustomEvent_bInPaused) == 0x000030, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'WBP_TempFeedIcon_C_ExecuteUbergraph_WBP_TempFeedIcon::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempFeedIcon_C_OnInputChanged \ +static_assert(alignof(WBP_TempFeedIcon_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_TempFeedIcon_C_OnInputChanged"); \ +static_assert(sizeof(WBP_TempFeedIcon_C_OnInputChanged) == 0x000001, "Wrong size on WBP_TempFeedIcon_C_OnInputChanged"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_TempFeedIcon_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempFeedIcon_C_OnPauseGame \ +static_assert(alignof(WBP_TempFeedIcon_C_OnPauseGame) == 0x000001, "Wrong alignment on WBP_TempFeedIcon_C_OnPauseGame"); \ +static_assert(sizeof(WBP_TempFeedIcon_C_OnPauseGame) == 0x000001, "Wrong size on WBP_TempFeedIcon_C_OnPauseGame"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_OnPauseGame, bInPaused) == 0x000000, "Member 'WBP_TempFeedIcon_C_OnPauseGame::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempFeedIcon_C_UpdateExtraIcons \ +static_assert(alignof(WBP_TempFeedIcon_C_UpdateExtraIcons) == 0x000001, "Wrong alignment on WBP_TempFeedIcon_C_UpdateExtraIcons"); \ +static_assert(sizeof(WBP_TempFeedIcon_C_UpdateExtraIcons) == 0x000002, "Wrong size on WBP_TempFeedIcon_C_UpdateExtraIcons"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_UpdateExtraIcons, InInputType) == 0x000000, "Member 'WBP_TempFeedIcon_C_UpdateExtraIcons::InInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_UpdateExtraIcons, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_TempFeedIcon_C_UpdateExtraIcons::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempFeedIcon_C_VisChange \ +static_assert(alignof(WBP_TempFeedIcon_C_VisChange) == 0x000001, "Wrong alignment on WBP_TempFeedIcon_C_VisChange"); \ +static_assert(sizeof(WBP_TempFeedIcon_C_VisChange) == 0x000001, "Wrong size on WBP_TempFeedIcon_C_VisChange"); \ +static_assert(offsetof(WBP_TempFeedIcon_C_VisChange, InVisibility) == 0x000000, "Member 'WBP_TempFeedIcon_C_VisChange::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TempFeedIcon_C \ +static_assert(alignof(UWBP_TempFeedIcon_C) == 0x000008, "Wrong alignment on UWBP_TempFeedIcon_C"); \ +static_assert(sizeof(UWBP_TempFeedIcon_C) == 0x000360, "Wrong size on UWBP_TempFeedIcon_C"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, UberGraphFrame) == 0x000330, "Member 'UWBP_TempFeedIcon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, Show) == 0x000338, "Member 'UWBP_TempFeedIcon_C::Show' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, ExtraControllerIcon) == 0x000340, "Member 'UWBP_TempFeedIcon_C::ExtraControllerIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, FeedAction) == 0x000348, "Member 'UWBP_TempFeedIcon_C::FeedAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, TextBlock) == 0x000350, "Member 'UWBP_TempFeedIcon_C::TextBlock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempFeedIcon_C, PerPauseVisibility) == 0x000358, "Member 'UWBP_TempFeedIcon_C::PerPauseVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUVMapSettings \ +static_assert(alignof(FUVMapSettings) == 0x000008, "Wrong alignment on FUVMapSettings"); \ +static_assert(sizeof(FUVMapSettings) == 0x000070, "Wrong size on FUVMapSettings"); \ +static_assert(offsetof(FUVMapSettings, Size) == 0x000000, "Member 'FUVMapSettings::Size' has a wrong offset!"); \ +static_assert(offsetof(FUVMapSettings, UVTile) == 0x000018, "Member 'FUVMapSettings::UVTile' has a wrong offset!"); \ +static_assert(offsetof(FUVMapSettings, Position) == 0x000028, "Member 'FUVMapSettings::Position' has a wrong offset!"); \ +static_assert(offsetof(FUVMapSettings, Rotation) == 0x000040, "Member 'FUVMapSettings::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FUVMapSettings, Scale) == 0x000058, "Member 'FUVMapSettings::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshDescription_CreateCube \ +static_assert(alignof(StaticMeshDescription_CreateCube) == 0x000008, "Wrong alignment on StaticMeshDescription_CreateCube"); \ +static_assert(sizeof(StaticMeshDescription_CreateCube) == 0x000050, "Wrong size on StaticMeshDescription_CreateCube"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, Center) == 0x000000, "Member 'StaticMeshDescription_CreateCube::Center' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, HalfExtents) == 0x000018, "Member 'StaticMeshDescription_CreateCube::HalfExtents' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonGroup) == 0x000030, "Member 'StaticMeshDescription_CreateCube::PolygonGroup' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_PlusX) == 0x000034, "Member 'StaticMeshDescription_CreateCube::PolygonID_PlusX' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_MinusX) == 0x000038, "Member 'StaticMeshDescription_CreateCube::PolygonID_MinusX' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_PlusY) == 0x00003C, "Member 'StaticMeshDescription_CreateCube::PolygonID_PlusY' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_MinusY) == 0x000040, "Member 'StaticMeshDescription_CreateCube::PolygonID_MinusY' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_PlusZ) == 0x000044, "Member 'StaticMeshDescription_CreateCube::PolygonID_PlusZ' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_CreateCube, PolygonID_MinusZ) == 0x000048, "Member 'StaticMeshDescription_CreateCube::PolygonID_MinusZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshDescription_SetPolygonGroupMaterialSlotName \ +static_assert(alignof(StaticMeshDescription_SetPolygonGroupMaterialSlotName) == 0x000004, "Wrong alignment on StaticMeshDescription_SetPolygonGroupMaterialSlotName"); \ +static_assert(sizeof(StaticMeshDescription_SetPolygonGroupMaterialSlotName) == 0x00000C, "Wrong size on StaticMeshDescription_SetPolygonGroupMaterialSlotName"); \ +static_assert(offsetof(StaticMeshDescription_SetPolygonGroupMaterialSlotName, PolygonGroupID) == 0x000000, "Member 'StaticMeshDescription_SetPolygonGroupMaterialSlotName::PolygonGroupID' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_SetPolygonGroupMaterialSlotName, SlotName) == 0x000004, "Member 'StaticMeshDescription_SetPolygonGroupMaterialSlotName::SlotName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshDescription_SetVertexInstanceUV \ +static_assert(alignof(StaticMeshDescription_SetVertexInstanceUV) == 0x000008, "Wrong alignment on StaticMeshDescription_SetVertexInstanceUV"); \ +static_assert(sizeof(StaticMeshDescription_SetVertexInstanceUV) == 0x000020, "Wrong size on StaticMeshDescription_SetVertexInstanceUV"); \ +static_assert(offsetof(StaticMeshDescription_SetVertexInstanceUV, VertexInstanceID) == 0x000000, "Member 'StaticMeshDescription_SetVertexInstanceUV::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_SetVertexInstanceUV, UV) == 0x000008, "Member 'StaticMeshDescription_SetVertexInstanceUV::UV' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_SetVertexInstanceUV, UVIndex) == 0x000018, "Member 'StaticMeshDescription_SetVertexInstanceUV::UVIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StaticMeshDescription_GetVertexInstanceUV \ +static_assert(alignof(StaticMeshDescription_GetVertexInstanceUV) == 0x000008, "Wrong alignment on StaticMeshDescription_GetVertexInstanceUV"); \ +static_assert(sizeof(StaticMeshDescription_GetVertexInstanceUV) == 0x000018, "Wrong size on StaticMeshDescription_GetVertexInstanceUV"); \ +static_assert(offsetof(StaticMeshDescription_GetVertexInstanceUV, VertexInstanceID) == 0x000000, "Member 'StaticMeshDescription_GetVertexInstanceUV::VertexInstanceID' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_GetVertexInstanceUV, UVIndex) == 0x000004, "Member 'StaticMeshDescription_GetVertexInstanceUV::UVIndex' has a wrong offset!"); \ +static_assert(offsetof(StaticMeshDescription_GetVertexInstanceUV, ReturnValue) == 0x000008, "Member 'StaticMeshDescription_GetVertexInstanceUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStaticMeshDescription \ +static_assert(alignof(UStaticMeshDescription) == 0x000008, "Wrong alignment on UStaticMeshDescription"); \ +static_assert(sizeof(UStaticMeshDescription) == 0x0002F0, "Wrong size on UStaticMeshDescription"); \ + +#define DUMPER7_ASSERTS_FStateStruct \ +static_assert(alignof(FStateStruct) == 0x000008, "Wrong alignment on FStateStruct"); \ +static_assert(sizeof(FStateStruct) == 0x000018, "Wrong size on FStateStruct"); \ +static_assert(offsetof(FStateStruct, StateName) == 0x000008, "Member 'FStateStruct::StateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFastArraySerializerItem \ +static_assert(alignof(FFastArraySerializerItem) == 0x000004, "Wrong alignment on FFastArraySerializerItem"); \ +static_assert(sizeof(FFastArraySerializerItem) == 0x00000C, "Wrong size on FFastArraySerializerItem"); \ +static_assert(offsetof(FFastArraySerializerItem, ReplicationID) == 0x000000, "Member 'FFastArraySerializerItem::ReplicationID' has a wrong offset!"); \ +static_assert(offsetof(FFastArraySerializerItem, ReplicationKey) == 0x000004, "Member 'FFastArraySerializerItem::ReplicationKey' has a wrong offset!"); \ +static_assert(offsetof(FFastArraySerializerItem, MostRecentArrayReplicationKey) == 0x000008, "Member 'FFastArraySerializerItem::MostRecentArrayReplicationKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFastArraySerializer \ +static_assert(alignof(FFastArraySerializer) == 0x000008, "Wrong alignment on FFastArraySerializer"); \ +static_assert(sizeof(FFastArraySerializer) == 0x000108, "Wrong size on FFastArraySerializer"); \ +static_assert(offsetof(FFastArraySerializer, ArrayReplicationKey) == 0x000054, "Member 'FFastArraySerializer::ArrayReplicationKey' has a wrong offset!"); \ +static_assert(offsetof(FFastArraySerializer, DeltaFlags) == 0x000100, "Member 'FFastArraySerializer::DeltaFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetAnalyticsDataConfig \ +static_assert(alignof(FNetAnalyticsDataConfig) == 0x000004, "Wrong alignment on FNetAnalyticsDataConfig"); \ +static_assert(sizeof(FNetAnalyticsDataConfig) == 0x00000C, "Wrong size on FNetAnalyticsDataConfig"); \ +static_assert(offsetof(FNetAnalyticsDataConfig, DataName) == 0x000000, "Member 'FNetAnalyticsDataConfig::DataName' has a wrong offset!"); \ +static_assert(offsetof(FNetAnalyticsDataConfig, bEnabled) == 0x000008, "Member 'FNetAnalyticsDataConfig::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEscalationState \ +static_assert(alignof(FEscalationState) == 0x000008, "Wrong alignment on FEscalationState"); \ +static_assert(sizeof(FEscalationState) == 0x000030, "Wrong size on FEscalationState"); \ +static_assert(offsetof(FEscalationState, bLogEscalate) == 0x000018, "Member 'FEscalationState::bLogEscalate' has a wrong offset!"); \ +static_assert(offsetof(FEscalationState, bDormant) == 0x000019, "Member 'FEscalationState::bDormant' has a wrong offset!"); \ +static_assert(offsetof(FEscalationState, CooloffTime) == 0x00001A, "Member 'FEscalationState::CooloffTime' has a wrong offset!"); \ +static_assert(offsetof(FEscalationState, AutoEscalateTime) == 0x00001C, "Member 'FEscalationState::AutoEscalateTime' has a wrong offset!"); \ +static_assert(offsetof(FEscalationState, HighestTimePeriod) == 0x00001E, "Member 'FEscalationState::HighestTimePeriod' has a wrong offset!"); \ +static_assert(offsetof(FEscalationState, AllTimePeriods) == 0x000020, "Member 'FEscalationState::AllTimePeriods' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetFaultState \ +static_assert(alignof(FNetFaultState) == 0x000008, "Wrong alignment on FNetFaultState"); \ +static_assert(sizeof(FNetFaultState) == 0x000040, "Wrong size on FNetFaultState"); \ +static_assert(offsetof(FNetFaultState, bCloseConnection) == 0x000030, "Member 'FNetFaultState::bCloseConnection' has a wrong offset!"); \ +static_assert(offsetof(FNetFaultState, EscalateQuotaFaultsPerPeriod) == 0x000032, "Member 'FNetFaultState::EscalateQuotaFaultsPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FNetFaultState, EscalateQuotaFaultPercentPerPeriod) == 0x000034, "Member 'FNetFaultState::EscalateQuotaFaultPercentPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FNetFaultState, DescalateQuotaFaultsPerPeriod) == 0x000036, "Member 'FNetFaultState::DescalateQuotaFaultsPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FNetFaultState, DescalateQuotaFaultPercentPerPeriod) == 0x000038, "Member 'FNetFaultState::DescalateQuotaFaultPercentPerPeriod' has a wrong offset!"); \ +static_assert(offsetof(FNetFaultState, EscalateQuotaTimePeriod) == 0x000039, "Member 'FNetFaultState::EscalateQuotaTimePeriod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetAnalyticsAggregatorConfig \ +static_assert(alignof(UNetAnalyticsAggregatorConfig) == 0x000008, "Wrong alignment on UNetAnalyticsAggregatorConfig"); \ +static_assert(sizeof(UNetAnalyticsAggregatorConfig) == 0x000038, "Wrong size on UNetAnalyticsAggregatorConfig"); \ +static_assert(offsetof(UNetAnalyticsAggregatorConfig, NetAnalyticsData) == 0x000028, "Member 'UNetAnalyticsAggregatorConfig::NetAnalyticsData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStatePerObjectConfig \ +static_assert(alignof(UStatePerObjectConfig) == 0x000008, "Wrong alignment on UStatePerObjectConfig"); \ +static_assert(sizeof(UStatePerObjectConfig) == 0x000068, "Wrong size on UStatePerObjectConfig"); \ +static_assert(offsetof(UStatePerObjectConfig, PerObjectConfigSection) == 0x000050, "Member 'UStatePerObjectConfig::PerObjectConfigSection' has a wrong offset!"); \ +static_assert(offsetof(UStatePerObjectConfig, bEnabled) == 0x000060, "Member 'UStatePerObjectConfig::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEscalationManagerConfig \ +static_assert(alignof(UEscalationManagerConfig) == 0x000008, "Wrong alignment on UEscalationManagerConfig"); \ +static_assert(sizeof(UEscalationManagerConfig) == 0x000088, "Wrong size on UEscalationManagerConfig"); \ +static_assert(offsetof(UEscalationManagerConfig, EscalationSeverity) == 0x000068, "Member 'UEscalationManagerConfig::EscalationSeverity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonArrowButtonLeft_C \ +static_assert(alignof(UCommonArrowButtonLeft_C) == 0x000010, "Wrong alignment on UCommonArrowButtonLeft_C"); \ +static_assert(sizeof(UCommonArrowButtonLeft_C) == 0x0007B0, "Wrong size on UCommonArrowButtonLeft_C"); \ + +#define DUMPER7_ASSERTS_FDataflowConnection \ +static_assert(alignof(FDataflowConnection) == 0x000008, "Wrong alignment on FDataflowConnection"); \ +static_assert(sizeof(FDataflowConnection) == 0x000040, "Wrong size on FDataflowConnection"); \ + +#define DUMPER7_ASSERTS_FDataflowInput \ +static_assert(alignof(FDataflowInput) == 0x000008, "Wrong alignment on FDataflowInput"); \ +static_assert(sizeof(FDataflowInput) == 0x000048, "Wrong size on FDataflowInput"); \ + +#define DUMPER7_ASSERTS_FDataflowOutput \ +static_assert(alignof(FDataflowOutput) == 0x000008, "Wrong alignment on FDataflowOutput"); \ +static_assert(sizeof(FDataflowOutput) == 0x000068, "Wrong size on FDataflowOutput"); \ + +#define DUMPER7_ASSERTS_FDataflowNode \ +static_assert(alignof(FDataflowNode) == 0x000008, "Wrong alignment on FDataflowNode"); \ +static_assert(sizeof(FDataflowNode) == 0x0000E8, "Wrong size on FDataflowNode"); \ +static_assert(offsetof(FDataflowNode, bActive) == 0x0000C8, "Member 'FDataflowNode::bActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataflowOverrideNode \ +static_assert(alignof(FDataflowOverrideNode) == 0x000008, "Wrong alignment on FDataflowOverrideNode"); \ +static_assert(sizeof(FDataflowOverrideNode) == 0x000108, "Wrong size on FDataflowOverrideNode"); \ +static_assert(offsetof(FDataflowOverrideNode, Key) == 0x0000E8, "Member 'FDataflowOverrideNode::Key' has a wrong offset!"); \ +static_assert(offsetof(FDataflowOverrideNode, Default) == 0x0000F0, "Member 'FDataflowOverrideNode::Default' has a wrong offset!"); \ +static_assert(offsetof(FDataflowOverrideNode, IsOverriden) == 0x000100, "Member 'FDataflowOverrideNode::IsOverriden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataflowSelection \ +static_assert(alignof(FDataflowSelection) == 0x000008, "Wrong alignment on FDataflowSelection"); \ +static_assert(sizeof(FDataflowSelection) == 0x000020, "Wrong size on FDataflowSelection"); \ + +#define DUMPER7_ASSERTS_FDataflowTransformSelection \ +static_assert(alignof(FDataflowTransformSelection) == 0x000008, "Wrong alignment on FDataflowTransformSelection"); \ +static_assert(sizeof(FDataflowTransformSelection) == 0x000020, "Wrong size on FDataflowTransformSelection"); \ + +#define DUMPER7_ASSERTS_FDataflowVertexSelection \ +static_assert(alignof(FDataflowVertexSelection) == 0x000008, "Wrong alignment on FDataflowVertexSelection"); \ +static_assert(sizeof(FDataflowVertexSelection) == 0x000020, "Wrong size on FDataflowVertexSelection"); \ + +#define DUMPER7_ASSERTS_FDataflowFaceSelection \ +static_assert(alignof(FDataflowFaceSelection) == 0x000008, "Wrong alignment on FDataflowFaceSelection"); \ +static_assert(sizeof(FDataflowFaceSelection) == 0x000020, "Wrong size on FDataflowFaceSelection"); \ + +#define DUMPER7_ASSERTS_FNodeColors \ +static_assert(alignof(FNodeColors) == 0x000004, "Wrong alignment on FNodeColors"); \ +static_assert(sizeof(FNodeColors) == 0x000020, "Wrong size on FNodeColors"); \ +static_assert(offsetof(FNodeColors, NodeTitleColor) == 0x000000, "Member 'FNodeColors::NodeTitleColor' has a wrong offset!"); \ +static_assert(offsetof(FNodeColors, NodeBodyTintColor) == 0x000010, "Member 'FNodeColors::NodeBodyTintColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataflowTerminalNode \ +static_assert(alignof(FDataflowTerminalNode) == 0x000008, "Wrong alignment on FDataflowTerminalNode"); \ +static_assert(sizeof(FDataflowTerminalNode) == 0x0000E8, "Wrong size on FDataflowTerminalNode"); \ + +#define DUMPER7_ASSERTS_UDataflowSettings \ +static_assert(alignof(UDataflowSettings) == 0x000008, "Wrong alignment on UDataflowSettings"); \ +static_assert(sizeof(UDataflowSettings) == 0x0000E0, "Wrong size on UDataflowSettings"); \ +static_assert(offsetof(UDataflowSettings, ArrayPinTypeColor) == 0x000038, "Member 'UDataflowSettings::ArrayPinTypeColor' has a wrong offset!"); \ +static_assert(offsetof(UDataflowSettings, ManagedArrayCollectionPinTypeColor) == 0x000048, "Member 'UDataflowSettings::ManagedArrayCollectionPinTypeColor' has a wrong offset!"); \ +static_assert(offsetof(UDataflowSettings, BoxPinTypeColor) == 0x000058, "Member 'UDataflowSettings::BoxPinTypeColor' has a wrong offset!"); \ +static_assert(offsetof(UDataflowSettings, SpherePinTypeColor) == 0x000068, "Member 'UDataflowSettings::SpherePinTypeColor' has a wrong offset!"); \ +static_assert(offsetof(UDataflowSettings, NodeColorsMap) == 0x000078, "Member 'UDataflowSettings::NodeColorsMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid, AnimationTrackUid) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid::AnimationTrackUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetFactoryNode_AddCustomAnimationTrackUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid, AnimationTrackUid) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid::AnimationTrackUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetFactoryNode_RemoveCustomAnimationTrackUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate) == 0x000008, "Wrong size on InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetFactoryNode_SetCustomFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid, Index_0) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid, OutAnimationTrackUid) == 0x000008, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUid::OutAnimationTrackUid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount) == 0x000004, "Wrong size on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount, ReturnValue) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids) == 0x000010, "Wrong size on InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids, OutAnimationTrackUids) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomAnimationTrackUids::OutAnimationTrackUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate) == 0x000008, "Wrong size on InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetFactoryNode_GetCustomFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeAnimationTrackSetFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeAnimationTrackSetFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeAnimationTrackSetFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeAnimationTrackSetFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeAnimationTrackSetFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackSetFactoryNode \ +static_assert(alignof(UInterchangeAnimationTrackSetFactoryNode) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackSetFactoryNode"); \ +static_assert(sizeof(UInterchangeAnimationTrackSetFactoryNode) == 0x000170, "Wrong size on UInterchangeAnimationTrackSetFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_SetCustomActorClassName \ +static_assert(alignof(InterchangeActorFactoryNode_SetCustomActorClassName) == 0x000008, "Wrong alignment on InterchangeActorFactoryNode_SetCustomActorClassName"); \ +static_assert(sizeof(InterchangeActorFactoryNode_SetCustomActorClassName) == 0x000018, "Wrong size on InterchangeActorFactoryNode_SetCustomActorClassName"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomActorClassName, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_SetCustomActorClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomActorClassName, ReturnValue) == 0x000010, "Member 'InterchangeActorFactoryNode_SetCustomActorClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_SetCustomGlobalTransform \ +static_assert(alignof(InterchangeActorFactoryNode_SetCustomGlobalTransform) == 0x000010, "Wrong alignment on InterchangeActorFactoryNode_SetCustomGlobalTransform"); \ +static_assert(sizeof(InterchangeActorFactoryNode_SetCustomGlobalTransform) == 0x000070, "Wrong size on InterchangeActorFactoryNode_SetCustomGlobalTransform"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomGlobalTransform, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_SetCustomGlobalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomGlobalTransform, bAddApplyDelegate) == 0x000060, "Member 'InterchangeActorFactoryNode_SetCustomGlobalTransform::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomGlobalTransform, ReturnValue) == 0x000061, "Member 'InterchangeActorFactoryNode_SetCustomGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_SetCustomMobility \ +static_assert(alignof(InterchangeActorFactoryNode_SetCustomMobility) == 0x000001, "Wrong alignment on InterchangeActorFactoryNode_SetCustomMobility"); \ +static_assert(sizeof(InterchangeActorFactoryNode_SetCustomMobility) == 0x000003, "Wrong size on InterchangeActorFactoryNode_SetCustomMobility"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomMobility, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_SetCustomMobility::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomMobility, bAddApplyDelegate) == 0x000001, "Member 'InterchangeActorFactoryNode_SetCustomMobility::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_SetCustomMobility, ReturnValue) == 0x000002, "Member 'InterchangeActorFactoryNode_SetCustomMobility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_GetCustomActorClassName \ +static_assert(alignof(InterchangeActorFactoryNode_GetCustomActorClassName) == 0x000008, "Wrong alignment on InterchangeActorFactoryNode_GetCustomActorClassName"); \ +static_assert(sizeof(InterchangeActorFactoryNode_GetCustomActorClassName) == 0x000018, "Wrong size on InterchangeActorFactoryNode_GetCustomActorClassName"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomActorClassName, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_GetCustomActorClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomActorClassName, ReturnValue) == 0x000010, "Member 'InterchangeActorFactoryNode_GetCustomActorClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_GetCustomGlobalTransform \ +static_assert(alignof(InterchangeActorFactoryNode_GetCustomGlobalTransform) == 0x000010, "Wrong alignment on InterchangeActorFactoryNode_GetCustomGlobalTransform"); \ +static_assert(sizeof(InterchangeActorFactoryNode_GetCustomGlobalTransform) == 0x000070, "Wrong size on InterchangeActorFactoryNode_GetCustomGlobalTransform"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomGlobalTransform, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_GetCustomGlobalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomGlobalTransform, ReturnValue) == 0x000060, "Member 'InterchangeActorFactoryNode_GetCustomGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeActorFactoryNode_GetCustomMobility \ +static_assert(alignof(InterchangeActorFactoryNode_GetCustomMobility) == 0x000001, "Wrong alignment on InterchangeActorFactoryNode_GetCustomMobility"); \ +static_assert(sizeof(InterchangeActorFactoryNode_GetCustomMobility) == 0x000002, "Wrong size on InterchangeActorFactoryNode_GetCustomMobility"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomMobility, AttributeValue) == 0x000000, "Member 'InterchangeActorFactoryNode_GetCustomMobility::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeActorFactoryNode_GetCustomMobility, ReturnValue) == 0x000001, "Member 'InterchangeActorFactoryNode_GetCustomMobility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeActorFactoryNode \ +static_assert(alignof(UInterchangeActorFactoryNode) == 0x000008, "Wrong alignment on UInterchangeActorFactoryNode"); \ +static_assert(sizeof(UInterchangeActorFactoryNode) == 0x000170, "Wrong size on UInterchangeActorFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_SetCustomFocalLength \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_SetCustomFocalLength) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_SetCustomFocalLength"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_SetCustomFocalLength) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_SetCustomFocalLength"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocalLength, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocalLength::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocalLength, bAddApplyDelegate) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocalLength::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocalLength, ReturnValue) == 0x000005, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocalLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod) == 0x000001, "Wrong alignment on InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod) == 0x000003, "Wrong size on InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod, bAddApplyDelegate) == 0x000001, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod, ReturnValue) == 0x000002, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomFocusMethod::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight, bAddApplyDelegate) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight, ReturnValue) == 0x000005, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth, bAddApplyDelegate) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth, ReturnValue) == 0x000005, "Member 'InterchangePhysicalCameraFactoryNode_SetCustomSensorWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_GetCustomFocalLength \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_GetCustomFocalLength) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_GetCustomFocalLength"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_GetCustomFocalLength) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_GetCustomFocalLength"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomFocalLength, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomFocalLength::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomFocalLength, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomFocalLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod) == 0x000001, "Wrong alignment on InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod) == 0x000002, "Wrong size on InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod, ReturnValue) == 0x000001, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomFocusMethod::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomSensorHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth \ +static_assert(alignof(InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth) == 0x000004, "Wrong alignment on InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth"); \ +static_assert(sizeof(InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth) == 0x000008, "Wrong size on InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraFactoryNode_GetCustomSensorWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePhysicalCameraFactoryNode \ +static_assert(alignof(UInterchangePhysicalCameraFactoryNode) == 0x000008, "Wrong alignment on UInterchangePhysicalCameraFactoryNode"); \ +static_assert(sizeof(UInterchangePhysicalCameraFactoryNode) == 0x0001B0, "Wrong size on UInterchangePhysicalCameraFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomAspectRatio \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomAspectRatio) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomAspectRatio"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomAspectRatio) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomAspectRatio"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomAspectRatio, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomAspectRatio::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomAspectRatio, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_SetCustomAspectRatio::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomAspectRatio, ReturnValue) == 0x000005, "Member 'InterchangeStandardCameraFactoryNode_SetCustomAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane, ReturnValue) == 0x000005, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFarClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomFieldOfView \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomFieldOfView) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomFieldOfView"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomFieldOfView) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomFieldOfView"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFieldOfView, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFieldOfView::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFieldOfView, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFieldOfView::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomFieldOfView, ReturnValue) == 0x000005, "Member 'InterchangeStandardCameraFactoryNode_SetCustomFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane, ReturnValue) == 0x000005, "Member 'InterchangeStandardCameraFactoryNode_SetCustomNearClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomProjectionMode \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomProjectionMode) == 0x000001, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomProjectionMode"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomProjectionMode) == 0x000003, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomProjectionMode"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomProjectionMode, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomProjectionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomProjectionMode, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStandardCameraFactoryNode_SetCustomProjectionMode::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomProjectionMode, ReturnValue) == 0x000002, "Member 'InterchangeStandardCameraFactoryNode_SetCustomProjectionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_SetCustomWidth \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_SetCustomWidth) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_SetCustomWidth"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_SetCustomWidth) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_SetCustomWidth"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomWidth, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_SetCustomWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomWidth, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_SetCustomWidth::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_SetCustomWidth, ReturnValue) == 0x000005, "Member 'InterchangeStandardCameraFactoryNode_SetCustomWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomAspectRatio \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomAspectRatio) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomAspectRatio"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomAspectRatio) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomAspectRatio"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomAspectRatio, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomAspectRatio::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomAspectRatio, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_GetCustomAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_GetCustomFarClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomFieldOfView \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomFieldOfView) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomFieldOfView"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomFieldOfView) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomFieldOfView"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomFieldOfView, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomFieldOfView::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomFieldOfView, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_GetCustomFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_GetCustomNearClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomProjectionMode \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomProjectionMode) == 0x000001, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomProjectionMode"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomProjectionMode) == 0x000002, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomProjectionMode"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomProjectionMode, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomProjectionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomProjectionMode, ReturnValue) == 0x000001, "Member 'InterchangeStandardCameraFactoryNode_GetCustomProjectionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraFactoryNode_GetCustomWidth \ +static_assert(alignof(InterchangeStandardCameraFactoryNode_GetCustomWidth) == 0x000004, "Wrong alignment on InterchangeStandardCameraFactoryNode_GetCustomWidth"); \ +static_assert(sizeof(InterchangeStandardCameraFactoryNode_GetCustomWidth) == 0x000008, "Wrong size on InterchangeStandardCameraFactoryNode_GetCustomWidth"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomWidth, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraFactoryNode_GetCustomWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraFactoryNode_GetCustomWidth, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraFactoryNode_GetCustomWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeStandardCameraFactoryNode \ +static_assert(alignof(UInterchangeStandardCameraFactoryNode) == 0x000008, "Wrong alignment on UInterchangeStandardCameraFactoryNode"); \ +static_assert(sizeof(UInterchangeStandardCameraFactoryNode) == 0x0001D0, "Wrong size on UInterchangeStandardCameraFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_SetCustomIntensity \ +static_assert(alignof(InterchangeBaseLightFactoryNode_SetCustomIntensity) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_SetCustomIntensity"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_SetCustomIntensity) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_SetCustomIntensity"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomIntensity, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_SetCustomIntensity::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomIntensity, bAddApplyDelegate) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_SetCustomIntensity::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomIntensity, ReturnValue) == 0x000005, "Member 'InterchangeBaseLightFactoryNode_SetCustomIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_SetCustomLightColor \ +static_assert(alignof(InterchangeBaseLightFactoryNode_SetCustomLightColor) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_SetCustomLightColor"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_SetCustomLightColor) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_SetCustomLightColor"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomLightColor, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_SetCustomLightColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomLightColor, bAddApplyDelegate) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_SetCustomLightColor::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomLightColor, ReturnValue) == 0x000005, "Member 'InterchangeBaseLightFactoryNode_SetCustomLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_SetCustomTemperature \ +static_assert(alignof(InterchangeBaseLightFactoryNode_SetCustomTemperature) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_SetCustomTemperature"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_SetCustomTemperature) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_SetCustomTemperature"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_SetCustomTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomTemperature, bAddApplyDelegate) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_SetCustomTemperature::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomTemperature, ReturnValue) == 0x000005, "Member 'InterchangeBaseLightFactoryNode_SetCustomTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_SetCustomUseTemperature \ +static_assert(alignof(InterchangeBaseLightFactoryNode_SetCustomUseTemperature) == 0x000001, "Wrong alignment on InterchangeBaseLightFactoryNode_SetCustomUseTemperature"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_SetCustomUseTemperature) == 0x000003, "Wrong size on InterchangeBaseLightFactoryNode_SetCustomUseTemperature"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomUseTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_SetCustomUseTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomUseTemperature, bAddApplyDelegate) == 0x000001, "Member 'InterchangeBaseLightFactoryNode_SetCustomUseTemperature::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_SetCustomUseTemperature, ReturnValue) == 0x000002, "Member 'InterchangeBaseLightFactoryNode_SetCustomUseTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_GetCustomIntensity \ +static_assert(alignof(InterchangeBaseLightFactoryNode_GetCustomIntensity) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_GetCustomIntensity"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_GetCustomIntensity) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_GetCustomIntensity"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomIntensity, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_GetCustomIntensity::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomIntensity, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_GetCustomIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_GetCustomLightColor \ +static_assert(alignof(InterchangeBaseLightFactoryNode_GetCustomLightColor) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_GetCustomLightColor"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_GetCustomLightColor) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_GetCustomLightColor"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomLightColor, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_GetCustomLightColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomLightColor, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_GetCustomLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_GetCustomTemperature \ +static_assert(alignof(InterchangeBaseLightFactoryNode_GetCustomTemperature) == 0x000004, "Wrong alignment on InterchangeBaseLightFactoryNode_GetCustomTemperature"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_GetCustomTemperature) == 0x000008, "Wrong size on InterchangeBaseLightFactoryNode_GetCustomTemperature"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_GetCustomTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomTemperature, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightFactoryNode_GetCustomTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightFactoryNode_GetCustomUseTemperature \ +static_assert(alignof(InterchangeBaseLightFactoryNode_GetCustomUseTemperature) == 0x000001, "Wrong alignment on InterchangeBaseLightFactoryNode_GetCustomUseTemperature"); \ +static_assert(sizeof(InterchangeBaseLightFactoryNode_GetCustomUseTemperature) == 0x000002, "Wrong size on InterchangeBaseLightFactoryNode_GetCustomUseTemperature"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomUseTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightFactoryNode_GetCustomUseTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightFactoryNode_GetCustomUseTemperature, ReturnValue) == 0x000001, "Member 'InterchangeBaseLightFactoryNode_GetCustomUseTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeBaseLightFactoryNode \ +static_assert(alignof(UInterchangeBaseLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangeBaseLightFactoryNode"); \ +static_assert(sizeof(UInterchangeBaseLightFactoryNode) == 0x0001B0, "Wrong size on UInterchangeBaseLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeDirectionalLightFactoryNode \ +static_assert(alignof(UInterchangeDirectionalLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangeDirectionalLightFactoryNode"); \ +static_assert(sizeof(UInterchangeDirectionalLightFactoryNode) == 0x0001B0, "Wrong size on UInterchangeDirectionalLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_SetCustomAttenuationRadius \ +static_assert(alignof(InterchangeLightFactoryNode_SetCustomAttenuationRadius) == 0x000004, "Wrong alignment on InterchangeLightFactoryNode_SetCustomAttenuationRadius"); \ +static_assert(sizeof(InterchangeLightFactoryNode_SetCustomAttenuationRadius) == 0x000008, "Wrong size on InterchangeLightFactoryNode_SetCustomAttenuationRadius"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomAttenuationRadius, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_SetCustomAttenuationRadius::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomAttenuationRadius, bAddApplyDelegate) == 0x000004, "Member 'InterchangeLightFactoryNode_SetCustomAttenuationRadius::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomAttenuationRadius, ReturnValue) == 0x000005, "Member 'InterchangeLightFactoryNode_SetCustomAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_SetCustomIESTexture \ +static_assert(alignof(InterchangeLightFactoryNode_SetCustomIESTexture) == 0x000008, "Wrong alignment on InterchangeLightFactoryNode_SetCustomIESTexture"); \ +static_assert(sizeof(InterchangeLightFactoryNode_SetCustomIESTexture) == 0x000018, "Wrong size on InterchangeLightFactoryNode_SetCustomIESTexture"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomIESTexture, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_SetCustomIESTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomIESTexture, ReturnValue) == 0x000010, "Member 'InterchangeLightFactoryNode_SetCustomIESTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_SetCustomIntensityUnits \ +static_assert(alignof(InterchangeLightFactoryNode_SetCustomIntensityUnits) == 0x000001, "Wrong alignment on InterchangeLightFactoryNode_SetCustomIntensityUnits"); \ +static_assert(sizeof(InterchangeLightFactoryNode_SetCustomIntensityUnits) == 0x000003, "Wrong size on InterchangeLightFactoryNode_SetCustomIntensityUnits"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomIntensityUnits, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_SetCustomIntensityUnits::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomIntensityUnits, bAddApplyDelegate) == 0x000001, "Member 'InterchangeLightFactoryNode_SetCustomIntensityUnits::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_SetCustomIntensityUnits, ReturnValue) == 0x000002, "Member 'InterchangeLightFactoryNode_SetCustomIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_GetCustomAttenuationRadius \ +static_assert(alignof(InterchangeLightFactoryNode_GetCustomAttenuationRadius) == 0x000004, "Wrong alignment on InterchangeLightFactoryNode_GetCustomAttenuationRadius"); \ +static_assert(sizeof(InterchangeLightFactoryNode_GetCustomAttenuationRadius) == 0x000008, "Wrong size on InterchangeLightFactoryNode_GetCustomAttenuationRadius"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomAttenuationRadius, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_GetCustomAttenuationRadius::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomAttenuationRadius, ReturnValue) == 0x000004, "Member 'InterchangeLightFactoryNode_GetCustomAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_GetCustomIESTexture \ +static_assert(alignof(InterchangeLightFactoryNode_GetCustomIESTexture) == 0x000008, "Wrong alignment on InterchangeLightFactoryNode_GetCustomIESTexture"); \ +static_assert(sizeof(InterchangeLightFactoryNode_GetCustomIESTexture) == 0x000018, "Wrong size on InterchangeLightFactoryNode_GetCustomIESTexture"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomIESTexture, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_GetCustomIESTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomIESTexture, ReturnValue) == 0x000010, "Member 'InterchangeLightFactoryNode_GetCustomIESTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightFactoryNode_GetCustomIntensityUnits \ +static_assert(alignof(InterchangeLightFactoryNode_GetCustomIntensityUnits) == 0x000001, "Wrong alignment on InterchangeLightFactoryNode_GetCustomIntensityUnits"); \ +static_assert(sizeof(InterchangeLightFactoryNode_GetCustomIntensityUnits) == 0x000002, "Wrong size on InterchangeLightFactoryNode_GetCustomIntensityUnits"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomIntensityUnits, AttributeValue) == 0x000000, "Member 'InterchangeLightFactoryNode_GetCustomIntensityUnits::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightFactoryNode_GetCustomIntensityUnits, ReturnValue) == 0x000001, "Member 'InterchangeLightFactoryNode_GetCustomIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeLightFactoryNode \ +static_assert(alignof(UInterchangeLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangeLightFactoryNode"); \ +static_assert(sizeof(UInterchangeLightFactoryNode) == 0x0001E0, "Wrong size on UInterchangeLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightFactoryNode_SetCustomSourceHeight \ +static_assert(alignof(InterchangeRectLightFactoryNode_SetCustomSourceHeight) == 0x000004, "Wrong alignment on InterchangeRectLightFactoryNode_SetCustomSourceHeight"); \ +static_assert(sizeof(InterchangeRectLightFactoryNode_SetCustomSourceHeight) == 0x000008, "Wrong size on InterchangeRectLightFactoryNode_SetCustomSourceHeight"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceHeight, AttributeValue) == 0x000000, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceHeight, bAddApplyDelegate) == 0x000004, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceHeight::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceHeight, ReturnValue) == 0x000005, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightFactoryNode_SetCustomSourceWidth \ +static_assert(alignof(InterchangeRectLightFactoryNode_SetCustomSourceWidth) == 0x000004, "Wrong alignment on InterchangeRectLightFactoryNode_SetCustomSourceWidth"); \ +static_assert(sizeof(InterchangeRectLightFactoryNode_SetCustomSourceWidth) == 0x000008, "Wrong size on InterchangeRectLightFactoryNode_SetCustomSourceWidth"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceWidth, AttributeValue) == 0x000000, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceWidth, bAddApplyDelegate) == 0x000004, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceWidth::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_SetCustomSourceWidth, ReturnValue) == 0x000005, "Member 'InterchangeRectLightFactoryNode_SetCustomSourceWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightFactoryNode_GetCustomSourceHeight \ +static_assert(alignof(InterchangeRectLightFactoryNode_GetCustomSourceHeight) == 0x000004, "Wrong alignment on InterchangeRectLightFactoryNode_GetCustomSourceHeight"); \ +static_assert(sizeof(InterchangeRectLightFactoryNode_GetCustomSourceHeight) == 0x000008, "Wrong size on InterchangeRectLightFactoryNode_GetCustomSourceHeight"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_GetCustomSourceHeight, AttributeValue) == 0x000000, "Member 'InterchangeRectLightFactoryNode_GetCustomSourceHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_GetCustomSourceHeight, ReturnValue) == 0x000004, "Member 'InterchangeRectLightFactoryNode_GetCustomSourceHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightFactoryNode_GetCustomSourceWidth \ +static_assert(alignof(InterchangeRectLightFactoryNode_GetCustomSourceWidth) == 0x000004, "Wrong alignment on InterchangeRectLightFactoryNode_GetCustomSourceWidth"); \ +static_assert(sizeof(InterchangeRectLightFactoryNode_GetCustomSourceWidth) == 0x000008, "Wrong size on InterchangeRectLightFactoryNode_GetCustomSourceWidth"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_GetCustomSourceWidth, AttributeValue) == 0x000000, "Member 'InterchangeRectLightFactoryNode_GetCustomSourceWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightFactoryNode_GetCustomSourceWidth, ReturnValue) == 0x000004, "Member 'InterchangeRectLightFactoryNode_GetCustomSourceWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeRectLightFactoryNode \ +static_assert(alignof(UInterchangeRectLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangeRectLightFactoryNode"); \ +static_assert(sizeof(UInterchangeRectLightFactoryNode) == 0x000200, "Wrong size on UInterchangeRectLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightFactoryNode_SetCustomLightFalloffExponent \ +static_assert(alignof(InterchangePointLightFactoryNode_SetCustomLightFalloffExponent) == 0x000004, "Wrong alignment on InterchangePointLightFactoryNode_SetCustomLightFalloffExponent"); \ +static_assert(sizeof(InterchangePointLightFactoryNode_SetCustomLightFalloffExponent) == 0x000008, "Wrong size on InterchangePointLightFactoryNode_SetCustomLightFalloffExponent"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomLightFalloffExponent, AttributeValue) == 0x000000, "Member 'InterchangePointLightFactoryNode_SetCustomLightFalloffExponent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomLightFalloffExponent, bAddApplyDelegate) == 0x000004, "Member 'InterchangePointLightFactoryNode_SetCustomLightFalloffExponent::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomLightFalloffExponent, ReturnValue) == 0x000005, "Member 'InterchangePointLightFactoryNode_SetCustomLightFalloffExponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff \ +static_assert(alignof(InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff) == 0x000001, "Wrong alignment on InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff"); \ +static_assert(sizeof(InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff) == 0x000003, "Wrong size on InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff, AttributeValue) == 0x000000, "Member 'InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff, bAddApplyDelegate) == 0x000001, "Member 'InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff, ReturnValue) == 0x000002, "Member 'InterchangePointLightFactoryNode_SetCustomUseInverseSquaredFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightFactoryNode_GetCustomLightFalloffExponent \ +static_assert(alignof(InterchangePointLightFactoryNode_GetCustomLightFalloffExponent) == 0x000004, "Wrong alignment on InterchangePointLightFactoryNode_GetCustomLightFalloffExponent"); \ +static_assert(sizeof(InterchangePointLightFactoryNode_GetCustomLightFalloffExponent) == 0x000008, "Wrong size on InterchangePointLightFactoryNode_GetCustomLightFalloffExponent"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_GetCustomLightFalloffExponent, AttributeValue) == 0x000000, "Member 'InterchangePointLightFactoryNode_GetCustomLightFalloffExponent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_GetCustomLightFalloffExponent, ReturnValue) == 0x000004, "Member 'InterchangePointLightFactoryNode_GetCustomLightFalloffExponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff \ +static_assert(alignof(InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff) == 0x000001, "Wrong alignment on InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff"); \ +static_assert(sizeof(InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff) == 0x000002, "Wrong size on InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff, AttributeValue) == 0x000000, "Member 'InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff, ReturnValue) == 0x000001, "Member 'InterchangePointLightFactoryNode_GetCustomUseInverseSquaredFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePointLightFactoryNode \ +static_assert(alignof(UInterchangePointLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangePointLightFactoryNode"); \ +static_assert(sizeof(UInterchangePointLightFactoryNode) == 0x000200, "Wrong size on UInterchangePointLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle \ +static_assert(alignof(InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle, ReturnValue) == 0x000005, "Member 'InterchangeSpotLightFactoryNode_SetCustomInnerConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle \ +static_assert(alignof(InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle, ReturnValue) == 0x000005, "Member 'InterchangeSpotLightFactoryNode_SetCustomOuterConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle \ +static_assert(alignof(InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightFactoryNode_GetCustomInnerConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle \ +static_assert(alignof(InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightFactoryNode_GetCustomOuterConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSpotLightFactoryNode \ +static_assert(alignof(UInterchangeSpotLightFactoryNode) == 0x000008, "Wrong alignment on UInterchangeSpotLightFactoryNode"); \ +static_assert(sizeof(UInterchangeSpotLightFactoryNode) == 0x000220, "Wrong size on UInterchangeSpotLightFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode \ +static_assert(alignof(InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode) == 0x000008, "Wrong alignment on InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode"); \ +static_assert(sizeof(InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode) == 0x000030, "Wrong size on InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode, UniqueID) == 0x000000, "Member 'InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode, DisplayLabel) == 0x000010, "Member 'InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode, InAssetClass) == 0x000020, "Member 'InterchangePhysicsAssetFactoryNode_InitializePhysicsAssetNode::InAssetClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid \ +static_assert(alignof(InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid) == 0x000008, "Wrong alignment on InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid"); \ +static_assert(sizeof(InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid) == 0x000018, "Wrong size on InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid, AttributeValue) == 0x000000, "Member 'InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid, ReturnValue) == 0x000010, "Member 'InterchangePhysicsAssetFactoryNode_SetCustomSkeletalMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid \ +static_assert(alignof(InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid) == 0x000008, "Wrong alignment on InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid"); \ +static_assert(sizeof(InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid) == 0x000018, "Wrong size on InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid, AttributeValue) == 0x000000, "Member 'InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid, ReturnValue) == 0x000010, "Member 'InterchangePhysicsAssetFactoryNode_GetCustomSkeletalMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicsAssetFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangePhysicsAssetFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangePhysicsAssetFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangePhysicsAssetFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangePhysicsAssetFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangePhysicsAssetFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangePhysicsAssetFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePhysicsAssetFactoryNode \ +static_assert(alignof(UInterchangePhysicsAssetFactoryNode) == 0x000008, "Wrong alignment on UInterchangePhysicsAssetFactoryNode"); \ +static_assert(sizeof(UInterchangePhysicsAssetFactoryNode) == 0x000170, "Wrong size on UInterchangePhysicsAssetFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid, VariantUid) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid::VariantUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneVariantSetsFactoryNode_AddCustomVariantSetUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid, VariantUid) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid::VariantUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneVariantSetsFactoryNode_RemoveCustomVariantSetUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid, Index_0) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid, OutVariantUid) == 0x000008, "Member 'InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUid::OutVariantUid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount) == 0x000004, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount) == 0x000004, "Wrong size on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount, ReturnValue) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids) == 0x000010, "Wrong size on InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids, OutVariantUids) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_GetCustomVariantSetUids::OutVariantUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeSceneVariantSetsFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeSceneVariantSetsFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeSceneVariantSetsFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeSceneVariantSetsFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeSceneVariantSetsFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneVariantSetsFactoryNode \ +static_assert(alignof(UInterchangeSceneVariantSetsFactoryNode) == 0x000008, "Wrong alignment on UInterchangeSceneVariantSetsFactoryNode"); \ +static_assert(sizeof(UInterchangeSceneVariantSetsFactoryNode) == 0x000160, "Wrong size on UInterchangeSceneVariantSetsFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_InitializeSkeletonNode \ +static_assert(alignof(InterchangeSkeletonFactoryNode_InitializeSkeletonNode) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_InitializeSkeletonNode"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_InitializeSkeletonNode) == 0x000030, "Wrong size on InterchangeSkeletonFactoryNode_InitializeSkeletonNode"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_InitializeSkeletonNode, UniqueID) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_InitializeSkeletonNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_InitializeSkeletonNode, DisplayLabel) == 0x000010, "Member 'InterchangeSkeletonFactoryNode_InitializeSkeletonNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_InitializeSkeletonNode, InAssetClass) == 0x000020, "Member 'InterchangeSkeletonFactoryNode_InitializeSkeletonNode::InAssetClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_SetCustomRootJointUid \ +static_assert(alignof(InterchangeSkeletonFactoryNode_SetCustomRootJointUid) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_SetCustomRootJointUid"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_SetCustomRootJointUid) == 0x000018, "Wrong size on InterchangeSkeletonFactoryNode_SetCustomRootJointUid"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomRootJointUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_SetCustomRootJointUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomRootJointUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletonFactoryNode_SetCustomRootJointUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid \ +static_assert(alignof(InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid) == 0x000018, "Wrong size on InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletonFactoryNode_SetCustomSkeletalMeshFactoryNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose \ +static_assert(alignof(InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose) == 0x000001, "Wrong alignment on InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose) == 0x000002, "Wrong size on InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose, ReturnValue) == 0x000001, "Member 'InterchangeSkeletonFactoryNode_SetCustomUseTimeZeroForBindPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_GetCustomRootJointUid \ +static_assert(alignof(InterchangeSkeletonFactoryNode_GetCustomRootJointUid) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_GetCustomRootJointUid"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_GetCustomRootJointUid) == 0x000018, "Wrong size on InterchangeSkeletonFactoryNode_GetCustomRootJointUid"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomRootJointUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_GetCustomRootJointUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomRootJointUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletonFactoryNode_GetCustomRootJointUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid \ +static_assert(alignof(InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid) == 0x000018, "Wrong size on InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletonFactoryNode_GetCustomSkeletalMeshFactoryNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose \ +static_assert(alignof(InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose) == 0x000001, "Wrong alignment on InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose) == 0x000002, "Wrong size on InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose, AttributeValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose, ReturnValue) == 0x000001, "Member 'InterchangeSkeletonFactoryNode_GetCustomUseTimeZeroForBindPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletonFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeSkeletonFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeSkeletonFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeSkeletonFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeSkeletonFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeSkeletonFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeSkeletonFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletonFactoryNode \ +static_assert(alignof(UInterchangeSkeletonFactoryNode) == 0x000008, "Wrong alignment on UInterchangeSkeletonFactoryNode"); \ +static_assert(sizeof(UInterchangeSkeletonFactoryNode) == 0x000190, "Wrong size on UInterchangeSkeletonFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_InitializeTextureNode \ +static_assert(alignof(InterchangeTextureFactoryNode_InitializeTextureNode) == 0x000008, "Wrong alignment on InterchangeTextureFactoryNode_InitializeTextureNode"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_InitializeTextureNode) == 0x000030, "Wrong size on InterchangeTextureFactoryNode_InitializeTextureNode"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_InitializeTextureNode, UniqueID) == 0x000000, "Member 'InterchangeTextureFactoryNode_InitializeTextureNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_InitializeTextureNode, DisplayLabel) == 0x000010, "Member 'InterchangeTextureFactoryNode_InitializeTextureNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_InitializeTextureNode, InAssetName) == 0x000020, "Member 'InterchangeTextureFactoryNode_InitializeTextureNode::InAssetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustBrightness \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustBrightness) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustBrightness"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustBrightness) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustBrightness"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightness, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightness::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightness, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightness::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightness, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustBrightnessCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustHue \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustHue) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustHue"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustHue) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustHue"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustHue, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustHue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustHue, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustHue::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustHue, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustHue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMaxAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustMinAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustRGBCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustSaturation \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustSaturation) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustSaturation"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustSaturation) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustSaturation"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustSaturation, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustSaturation::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustSaturation, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustSaturation::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustSaturation, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustSaturation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAdjustVibrance \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAdjustVibrance) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAdjustVibrance"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAdjustVibrance) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomAdjustVibrance"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustVibrance, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustVibrance::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustVibrance, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustVibrance::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAdjustVibrance, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomAdjustVibrance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomAllowNonPowerOfTwo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds) == 0x000010, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds) == 0x000030, "Wrong size on InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds, bAddApplyDelegate) == 0x000020, "Member 'InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds, ReturnValue) == 0x000021, "Member 'InterchangeTextureFactoryNode_SetCustomAlphaCoverageThresholds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustombChromaKeyTexture \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustombChromaKeyTexture) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustombChromaKeyTexture"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustombChromaKeyTexture) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustombChromaKeyTexture"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombChromaKeyTexture, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustombChromaKeyTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombChromaKeyTexture, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustombChromaKeyTexture::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombChromaKeyTexture, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustombChromaKeyTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustombDoScaleMipsForAlphaCoverage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustombFlipGreenChannel \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustombFlipGreenChannel) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustombFlipGreenChannel"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustombFlipGreenChannel) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustombFlipGreenChannel"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombFlipGreenChannel, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustombFlipGreenChannel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombFlipGreenChannel, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustombFlipGreenChannel::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombFlipGreenChannel, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustombFlipGreenChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustombPreserveBorder \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustombPreserveBorder) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustombPreserveBorder"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustombPreserveBorder) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustombPreserveBorder"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombPreserveBorder, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustombPreserveBorder::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombPreserveBorder, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustombPreserveBorder::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombPreserveBorder, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustombPreserveBorder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustombUseLegacyGamma \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustombUseLegacyGamma) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustombUseLegacyGamma"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustombUseLegacyGamma) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustombUseLegacyGamma"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombUseLegacyGamma, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustombUseLegacyGamma::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombUseLegacyGamma, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustombUseLegacyGamma::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustombUseLegacyGamma, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustombUseLegacyGamma::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomChromaKeyColor \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomChromaKeyColor) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomChromaKeyColor"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomChromaKeyColor) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomChromaKeyColor"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyColor, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyColor, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyColor::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyColor, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomChromaKeyThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomCompositePower \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomCompositePower) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomCompositePower"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomCompositePower) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomCompositePower"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositePower, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomCompositePower::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositePower, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomCompositePower::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositePower, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomCompositePower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomCompositeTextureMode \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomCompositeTextureMode) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomCompositeTextureMode"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomCompositeTextureMode) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomCompositeTextureMode"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositeTextureMode, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomCompositeTextureMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositeTextureMode, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomCompositeTextureMode::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompositeTextureMode, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomCompositeTextureMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionNoAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomCompressionQuality \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomCompressionQuality) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomCompressionQuality"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomCompressionQuality) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomCompressionQuality"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionQuality, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionQuality::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionQuality, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionQuality::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionQuality, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomCompressionSettings \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomCompressionSettings) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomCompressionSettings"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomCompressionSettings) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomCompressionSettings"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionSettings, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionSettings::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionSettings, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionSettings::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomCompressionSettings, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomCompressionSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomDeferCompression \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomDeferCompression) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomDeferCompression"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomDeferCompression) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomDeferCompression"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDeferCompression, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomDeferCompression::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDeferCompression, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomDeferCompression::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDeferCompression, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomDeferCompression::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomDownscale \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomDownscale) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomDownscale"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomDownscale) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomDownscale"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscale, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomDownscale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscale, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomDownscale::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscale, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomDownscale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomDownscaleOptions \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomDownscaleOptions) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomDownscaleOptions"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomDownscaleOptions) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomDownscaleOptions"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscaleOptions, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomDownscaleOptions::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscaleOptions, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomDownscaleOptions::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomDownscaleOptions, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomDownscaleOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomFilter \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomFilter) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomFilter"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomFilter) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomFilter"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomFilter, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomFilter::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomFilter, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomFilter::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomFilter, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomFilter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomLODBias \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomLODBias) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomLODBias"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomLODBias) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomLODBias"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODBias, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomLODBias::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODBias, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomLODBias::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODBias, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomLODBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomLODGroup \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomLODGroup) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomLODGroup"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomLODGroup) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomLODGroup"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODGroup, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomLODGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODGroup, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomLODGroup::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLODGroup, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomLODGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomLossyCompressionAmount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomMaxTextureSize \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomMaxTextureSize) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomMaxTextureSize"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomMaxTextureSize) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomMaxTextureSize"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMaxTextureSize, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomMaxTextureSize::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMaxTextureSize, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomMaxTextureSize::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMaxTextureSize, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomMaxTextureSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomMipGenSettings \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomMipGenSettings) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomMipGenSettings"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomMipGenSettings) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomMipGenSettings"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipGenSettings, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomMipGenSettings::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipGenSettings, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomMipGenSettings::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipGenSettings, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomMipGenSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomMipLoadOptions \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomMipLoadOptions) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomMipLoadOptions"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomMipLoadOptions) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomMipLoadOptions"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipLoadOptions, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomMipLoadOptions::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipLoadOptions, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomMipLoadOptions::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomMipLoadOptions, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomMipLoadOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomPaddingColor \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomPaddingColor) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomPaddingColor"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomPaddingColor) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_SetCustomPaddingColor"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPaddingColor, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomPaddingColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPaddingColor, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureFactoryNode_SetCustomPaddingColor::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPaddingColor, ReturnValue) == 0x000005, "Member 'InterchangeTextureFactoryNode_SetCustomPaddingColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomPowerOfTwoMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomPreferCompressedSourceData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomSRGB \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomSRGB) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomSRGB"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomSRGB) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomSRGB"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomSRGB, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomSRGB::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomSRGB, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomSRGB::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomSRGB, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomSRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid) == 0x000008, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid) == 0x000018, "Wrong size on InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeTextureFactoryNode_SetCustomTranslatedTextureNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming \ +static_assert(alignof(InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming) == 0x000003, "Wrong size on InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming, ReturnValue) == 0x000002, "Member 'InterchangeTextureFactoryNode_SetCustomVirtualTextureStreaming::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustBrightness \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustBrightness) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustBrightness"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustBrightness) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustBrightness"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustBrightness, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustBrightness::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustBrightness, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustBrightness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustBrightnessCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustHue \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustHue) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustHue"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustHue) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustHue"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustHue, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustHue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustHue, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustHue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustMaxAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustMinAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustRGBCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustSaturation \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustSaturation) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustSaturation"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustSaturation) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustSaturation"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustSaturation, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustSaturation::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustSaturation, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustSaturation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAdjustVibrance \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAdjustVibrance) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAdjustVibrance"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAdjustVibrance) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomAdjustVibrance"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustVibrance, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustVibrance::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAdjustVibrance, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomAdjustVibrance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomAllowNonPowerOfTwo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds) == 0x000010, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds) == 0x000030, "Wrong size on InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds, ReturnValue) == 0x000020, "Member 'InterchangeTextureFactoryNode_GetCustomAlphaCoverageThresholds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustombChromaKeyTexture \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustombChromaKeyTexture) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustombChromaKeyTexture"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustombChromaKeyTexture) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustombChromaKeyTexture"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombChromaKeyTexture, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustombChromaKeyTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombChromaKeyTexture, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustombChromaKeyTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustombDoScaleMipsForAlphaCoverage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustombFlipGreenChannel \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustombFlipGreenChannel) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustombFlipGreenChannel"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustombFlipGreenChannel) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustombFlipGreenChannel"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombFlipGreenChannel, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustombFlipGreenChannel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombFlipGreenChannel, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustombFlipGreenChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustombPreserveBorder \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustombPreserveBorder) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustombPreserveBorder"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustombPreserveBorder) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustombPreserveBorder"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombPreserveBorder, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustombPreserveBorder::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombPreserveBorder, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustombPreserveBorder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustombUseLegacyGamma \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustombUseLegacyGamma) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustombUseLegacyGamma"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustombUseLegacyGamma) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustombUseLegacyGamma"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombUseLegacyGamma, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustombUseLegacyGamma::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustombUseLegacyGamma, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustombUseLegacyGamma::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomChromaKeyColor \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomChromaKeyColor) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomChromaKeyColor"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomChromaKeyColor) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomChromaKeyColor"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomChromaKeyColor, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomChromaKeyColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomChromaKeyColor, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomChromaKeyColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomChromaKeyThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomCompositePower \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomCompositePower) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomCompositePower"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomCompositePower) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomCompositePower"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompositePower, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomCompositePower::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompositePower, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomCompositePower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomCompositeTextureMode \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomCompositeTextureMode) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomCompositeTextureMode"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomCompositeTextureMode) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomCompositeTextureMode"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompositeTextureMode, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomCompositeTextureMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompositeTextureMode, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomCompositeTextureMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionNoAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomCompressionQuality \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomCompressionQuality) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomCompressionQuality"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomCompressionQuality) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomCompressionQuality"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionQuality, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionQuality::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionQuality, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomCompressionSettings \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomCompressionSettings) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomCompressionSettings"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomCompressionSettings) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomCompressionSettings"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionSettings, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionSettings::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomCompressionSettings, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomCompressionSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomDeferCompression \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomDeferCompression) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomDeferCompression"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomDeferCompression) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomDeferCompression"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDeferCompression, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomDeferCompression::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDeferCompression, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomDeferCompression::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomDownscale \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomDownscale) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomDownscale"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomDownscale) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomDownscale"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDownscale, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomDownscale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDownscale, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomDownscale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomDownscaleOptions \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomDownscaleOptions) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomDownscaleOptions"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomDownscaleOptions) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomDownscaleOptions"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDownscaleOptions, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomDownscaleOptions::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomDownscaleOptions, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomDownscaleOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomFilter \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomFilter) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomFilter"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomFilter) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomFilter"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomFilter, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomFilter::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomFilter, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomFilter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomLODBias \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomLODBias) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomLODBias"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomLODBias) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomLODBias"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLODBias, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomLODBias::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLODBias, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomLODBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomLODGroup \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomLODGroup) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomLODGroup"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomLODGroup) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomLODGroup"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLODGroup, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomLODGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLODGroup, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomLODGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomLossyCompressionAmount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomMaxTextureSize \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomMaxTextureSize) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomMaxTextureSize"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomMaxTextureSize) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomMaxTextureSize"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMaxTextureSize, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomMaxTextureSize::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMaxTextureSize, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomMaxTextureSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomMipGenSettings \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomMipGenSettings) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomMipGenSettings"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomMipGenSettings) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomMipGenSettings"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMipGenSettings, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomMipGenSettings::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMipGenSettings, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomMipGenSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomMipLoadOptions \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomMipLoadOptions) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomMipLoadOptions"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomMipLoadOptions) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomMipLoadOptions"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMipLoadOptions, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomMipLoadOptions::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomMipLoadOptions, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomMipLoadOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomPaddingColor \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomPaddingColor) == 0x000004, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomPaddingColor"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomPaddingColor) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetCustomPaddingColor"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPaddingColor, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomPaddingColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPaddingColor, ReturnValue) == 0x000004, "Member 'InterchangeTextureFactoryNode_GetCustomPaddingColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomPowerOfTwoMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomPreferCompressedSourceData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomSRGB \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomSRGB) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomSRGB"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomSRGB) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomSRGB"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomSRGB, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomSRGB::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomSRGB, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomSRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid) == 0x000008, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid) == 0x000018, "Wrong size on InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeTextureFactoryNode_GetCustomTranslatedTextureNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming \ +static_assert(alignof(InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming) == 0x000001, "Wrong alignment on InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming) == 0x000002, "Wrong size on InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming, AttributeValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming, ReturnValue) == 0x000001, "Member 'InterchangeTextureFactoryNode_GetCustomVirtualTextureStreaming::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeTextureFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeTextureFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeTextureFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeTextureFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeTextureFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeTextureFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureFactoryNode \ +static_assert(alignof(UInterchangeTextureFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTextureFactoryNode"); \ +static_assert(sizeof(UInterchangeTextureFactoryNode) == 0x0003D0, "Wrong size on UInterchangeTextureFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ \ +static_assert(alignof(InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ) == 0x000001, "Wrong alignment on InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ"); \ +static_assert(sizeof(InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ) == 0x000003, "Wrong size on InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ, ReturnValue) == 0x000002, "Member 'InterchangeTexture2DArrayFactoryNode_SetCustomAddressZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DArrayFactoryNode_GetCustomAddressX \ +static_assert(alignof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressX) == 0x000001, "Wrong alignment on InterchangeTexture2DArrayFactoryNode_GetCustomAddressX"); \ +static_assert(sizeof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressX) == 0x000002, "Wrong size on InterchangeTexture2DArrayFactoryNode_GetCustomAddressX"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressX, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressX::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressX, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DArrayFactoryNode_GetCustomAddressY \ +static_assert(alignof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressY) == 0x000001, "Wrong alignment on InterchangeTexture2DArrayFactoryNode_GetCustomAddressY"); \ +static_assert(sizeof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressY) == 0x000002, "Wrong size on InterchangeTexture2DArrayFactoryNode_GetCustomAddressY"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressY, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressY::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressY, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ \ +static_assert(alignof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ) == 0x000001, "Wrong alignment on InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ"); \ +static_assert(sizeof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ) == 0x000002, "Wrong size on InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DArrayFactoryNode_GetCustomAddressZ::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTexture2DArrayFactoryNode \ +static_assert(alignof(UInterchangeTexture2DArrayFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTexture2DArrayFactoryNode"); \ +static_assert(sizeof(UInterchangeTexture2DArrayFactoryNode) == 0x000400, "Wrong size on UInterchangeTexture2DArrayFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_SetCustomAddressX \ +static_assert(alignof(InterchangeTexture2DFactoryNode_SetCustomAddressX) == 0x000001, "Wrong alignment on InterchangeTexture2DFactoryNode_SetCustomAddressX"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_SetCustomAddressX) == 0x000003, "Wrong size on InterchangeTexture2DFactoryNode_SetCustomAddressX"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressX, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressX::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressX, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressX::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressX, ReturnValue) == 0x000002, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_SetCustomAddressY \ +static_assert(alignof(InterchangeTexture2DFactoryNode_SetCustomAddressY) == 0x000001, "Wrong alignment on InterchangeTexture2DFactoryNode_SetCustomAddressY"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_SetCustomAddressY) == 0x000003, "Wrong size on InterchangeTexture2DFactoryNode_SetCustomAddressY"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressY, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressY::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressY, bAddApplyDelegate) == 0x000001, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressY::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetCustomAddressY, ReturnValue) == 0x000002, "Member 'InterchangeTexture2DFactoryNode_SetCustomAddressY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_SetSourceBlock \ +static_assert(alignof(InterchangeTexture2DFactoryNode_SetSourceBlock) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_SetSourceBlock"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_SetSourceBlock) == 0x000018, "Wrong size on InterchangeTexture2DFactoryNode_SetSourceBlock"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlock, BlockIndex) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlock::BlockIndex' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlock, InSourceFile) == 0x000008, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlock::InSourceFile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates \ +static_assert(alignof(InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates) == 0x000018, "Wrong size on InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates, X) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates::X' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates, Y) == 0x000004, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates::Y' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates, InSourceFile) == 0x000008, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlockByCoordinates::InSourceFile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_SetSourceBlocks \ +static_assert(alignof(InterchangeTexture2DFactoryNode_SetSourceBlocks) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_SetSourceBlocks"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_SetSourceBlocks) == 0x000050, "Wrong size on InterchangeTexture2DFactoryNode_SetSourceBlocks"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_SetSourceBlocks, InSourceBlocks) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_SetSourceBlocks::InSourceBlocks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_GetCustomAddressX \ +static_assert(alignof(InterchangeTexture2DFactoryNode_GetCustomAddressX) == 0x000001, "Wrong alignment on InterchangeTexture2DFactoryNode_GetCustomAddressX"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_GetCustomAddressX) == 0x000002, "Wrong size on InterchangeTexture2DFactoryNode_GetCustomAddressX"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetCustomAddressX, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_GetCustomAddressX::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetCustomAddressX, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DFactoryNode_GetCustomAddressX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_GetCustomAddressY \ +static_assert(alignof(InterchangeTexture2DFactoryNode_GetCustomAddressY) == 0x000001, "Wrong alignment on InterchangeTexture2DFactoryNode_GetCustomAddressY"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_GetCustomAddressY) == 0x000002, "Wrong size on InterchangeTexture2DFactoryNode_GetCustomAddressY"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetCustomAddressY, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_GetCustomAddressY::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetCustomAddressY, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DFactoryNode_GetCustomAddressY::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_GetSourceBlock \ +static_assert(alignof(InterchangeTexture2DFactoryNode_GetSourceBlock) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_GetSourceBlock"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_GetSourceBlock) == 0x000020, "Wrong size on InterchangeTexture2DFactoryNode_GetSourceBlock"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlock, BlockIndex) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlock::BlockIndex' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlock, OutSourceFile) == 0x000008, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlock::OutSourceFile' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlock, ReturnValue) == 0x000018, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlock::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates \ +static_assert(alignof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates) == 0x000020, "Wrong size on InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates, X) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates::X' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates, Y) == 0x000004, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates::Y' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates, OutSourceFile) == 0x000008, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates::OutSourceFile' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates, ReturnValue) == 0x000018, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlockByCoordinates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DFactoryNode_GetSourceBlocks \ +static_assert(alignof(InterchangeTexture2DFactoryNode_GetSourceBlocks) == 0x000008, "Wrong alignment on InterchangeTexture2DFactoryNode_GetSourceBlocks"); \ +static_assert(sizeof(InterchangeTexture2DFactoryNode_GetSourceBlocks) == 0x000050, "Wrong size on InterchangeTexture2DFactoryNode_GetSourceBlocks"); \ +static_assert(offsetof(InterchangeTexture2DFactoryNode_GetSourceBlocks, ReturnValue) == 0x000000, "Member 'InterchangeTexture2DFactoryNode_GetSourceBlocks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTexture2DFactoryNode \ +static_assert(alignof(UInterchangeTexture2DFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTexture2DFactoryNode"); \ +static_assert(sizeof(UInterchangeTexture2DFactoryNode) == 0x000468, "Wrong size on UInterchangeTexture2DFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureCubeArrayFactoryNode \ +static_assert(alignof(UInterchangeTextureCubeArrayFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTextureCubeArrayFactoryNode"); \ +static_assert(sizeof(UInterchangeTextureCubeArrayFactoryNode) == 0x0003D0, "Wrong size on UInterchangeTextureCubeArrayFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureCubeFactoryNode \ +static_assert(alignof(UInterchangeTextureCubeFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTextureCubeFactoryNode"); \ +static_assert(sizeof(UInterchangeTextureCubeFactoryNode) == 0x0003D0, "Wrong size on UInterchangeTextureCubeFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureLightProfileFactoryNode_SetCustomBrightness \ +static_assert(alignof(InterchangeTextureLightProfileFactoryNode_SetCustomBrightness) == 0x000004, "Wrong alignment on InterchangeTextureLightProfileFactoryNode_SetCustomBrightness"); \ +static_assert(sizeof(InterchangeTextureLightProfileFactoryNode_SetCustomBrightness) == 0x000008, "Wrong size on InterchangeTextureLightProfileFactoryNode_SetCustomBrightness"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomBrightness, AttributeValue) == 0x000000, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomBrightness::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomBrightness, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomBrightness::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomBrightness, ReturnValue) == 0x000005, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomBrightness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier \ +static_assert(alignof(InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier) == 0x000004, "Wrong alignment on InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier"); \ +static_assert(sizeof(InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier) == 0x000008, "Wrong size on InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier, AttributeValue) == 0x000000, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier, bAddApplyDelegate) == 0x000004, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier, ReturnValue) == 0x000005, "Member 'InterchangeTextureLightProfileFactoryNode_SetCustomTextureMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureLightProfileFactoryNode_GetCustomBrightness \ +static_assert(alignof(InterchangeTextureLightProfileFactoryNode_GetCustomBrightness) == 0x000004, "Wrong alignment on InterchangeTextureLightProfileFactoryNode_GetCustomBrightness"); \ +static_assert(sizeof(InterchangeTextureLightProfileFactoryNode_GetCustomBrightness) == 0x000008, "Wrong size on InterchangeTextureLightProfileFactoryNode_GetCustomBrightness"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_GetCustomBrightness, AttributeValue) == 0x000000, "Member 'InterchangeTextureLightProfileFactoryNode_GetCustomBrightness::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_GetCustomBrightness, ReturnValue) == 0x000004, "Member 'InterchangeTextureLightProfileFactoryNode_GetCustomBrightness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier \ +static_assert(alignof(InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier) == 0x000004, "Wrong alignment on InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier"); \ +static_assert(sizeof(InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier) == 0x000008, "Wrong size on InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier, AttributeValue) == 0x000000, "Member 'InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier, ReturnValue) == 0x000004, "Member 'InterchangeTextureLightProfileFactoryNode_GetCustomTextureMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureLightProfileFactoryNode \ +static_assert(alignof(UInterchangeTextureLightProfileFactoryNode) == 0x000008, "Wrong alignment on UInterchangeTextureLightProfileFactoryNode"); \ +static_assert(sizeof(UInterchangeTextureLightProfileFactoryNode) == 0x000488, "Wrong size on UInterchangeTextureLightProfileFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeVolumeTextureFactoryNode \ +static_assert(alignof(UInterchangeVolumeTextureFactoryNode) == 0x000008, "Wrong alignment on UInterchangeVolumeTextureFactoryNode"); \ +static_assert(sizeof(UInterchangeVolumeTextureFactoryNode) == 0x0003D0, "Wrong size on UInterchangeVolumeTextureFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode) == 0x000020, "Wrong size on InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode, UniqueID) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode, DisplayLabel) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_InitializeAnimSequenceNode::DisplayLabel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName, AttributeCurveName) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName::AttributeCurveName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeCurveName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName, AttributeStepCurveName) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName::AttributeStepCurveName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedAttributeStepCurveName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe, MaterialCurveSuffixe) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe::MaterialCurveSuffixe' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_RemoveAnimatedMaterialCurveSuffixe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName, AttributeCurveName) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName::AttributeCurveName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeCurveName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName, AttributeStepCurveName) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName::AttributeStepCurveName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedAttributeStepCurveName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe, MaterialCurveSuffixe) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe::MaterialCurveSuffixe' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimatedMaterialCurveSuffixe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids) == 0x0000A0, "Wrong size on InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids, MorphTargetAnimationPayloadKeyUids) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids::MorphTargetAnimationPayloadKeyUids' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids, MorphTargetAnimationPayloadKeyTypes) == 0x000050, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForMorphTargetNodeUids::MorphTargetAnimationPayloadKeyTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids) == 0x0000A0, "Wrong size on InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids, SceneNodeAnimationPayloadKeyUids) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids::SceneNodeAnimationPayloadKeyUids' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids, SceneNodeAnimationPayloadKeyTypes) == 0x000050, "Member 'InterchangeAnimSequenceFactoryNode_SetAnimationPayloadKeysForSceneNodeUids::SceneNodeAnimationPayloadKeyTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomAddCurveMetadataToSkeleton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingCustomAttributeCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingMorphTargetCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDeleteExistingNonCurveCustomAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomDoNotImportCurveWithZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportAttributeCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksRangeStop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomImportBoneTracksSampleRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomMaterialDriveParameterOnCustomAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomRemoveCurveRedundantKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomSkeletonFactoryNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath) == 0x000028, "Wrong size on InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeAnimSequenceFactoryNode_SetCustomSkeletonSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName, Index_0) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName, OutAttributeCurveName) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveName::OutAttributeCurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames, OutAttributeCurveNames) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNames::OutAttributeCurveNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount) == 0x000004, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount) == 0x000004, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount, ReturnValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeCurveNamesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName, Index_0) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName, OutAttributeStepCurveName) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveName::OutAttributeStepCurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames, OutAttributeStepCurveNames) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNames::OutAttributeStepCurveNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount) == 0x000004, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount) == 0x000004, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount, ReturnValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedAttributeStepCurveNamesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe, Index_0) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe, OutMaterialCurveSuffixe) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixe::OutMaterialCurveSuffixe' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes, OutMaterialCurveSuffixes) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixes::OutMaterialCurveSuffixes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount) == 0x000004, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount) == 0x000004, "Wrong size on InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount, ReturnValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetAnimatedMaterialCurveSuffixesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomAddCurveMetadataToSkeleton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingCustomAttributeCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingMorphTargetCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDeleteExistingNonCurveCustomAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomDoNotImportCurveWithZero::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportAttributeCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksRangeStop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate) == 0x000010, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate, ReturnValue) == 0x000008, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomImportBoneTracksSampleRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomMaterialDriveParameterOnCustomAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys) == 0x000001, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys) == 0x000002, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys, ReturnValue) == 0x000001, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomRemoveCurveRedundantKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid) == 0x000018, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomSkeletonFactoryNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath) == 0x000028, "Wrong size on InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeAnimSequenceFactoryNode_GetCustomSkeletonSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys) == 0x000050, "Wrong size on InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys, OutMorphTargetNodeAnimationPayloads) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetMorphTargetNodeAnimationPayloadKeys::OutMorphTargetNodeAnimationPayloads' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeAnimSequenceFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys \ +static_assert(alignof(InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys) == 0x000008, "Wrong alignment on InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys"); \ +static_assert(sizeof(InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys) == 0x000050, "Wrong size on InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys"); \ +static_assert(offsetof(InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys, OutSceneNodeAnimationPayloadKeys) == 0x000000, "Member 'InterchangeAnimSequenceFactoryNode_GetSceneNodeAnimationPayloadKeys::OutSceneNodeAnimationPayloadKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimSequenceFactoryNode \ +static_assert(alignof(UInterchangeAnimSequenceFactoryNode) == 0x000008, "Wrong alignment on UInterchangeAnimSequenceFactoryNode"); \ +static_assert(sizeof(UInterchangeAnimSequenceFactoryNode) == 0x000480, "Wrong size on UInterchangeAnimSequenceFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes \ +static_assert(alignof(InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes) == 0x000008, "Wrong alignment on InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes"); \ +static_assert(sizeof(InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes) == 0x000010, "Wrong size on InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes, NodeContainer) == 0x000000, "Member 'InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes::NodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes, AttributeValue) == 0x000008, "Member 'InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes, ReturnValue) == 0x000009, "Member 'InterchangeCommonPipelineDataFactoryNode_SetBakeMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform \ +static_assert(alignof(InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform) == 0x000010, "Wrong alignment on InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform"); \ +static_assert(sizeof(InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform) == 0x000080, "Wrong size on InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform, NodeContainer) == 0x000000, "Member 'InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform::NodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform, AttributeValue) == 0x000010, "Member 'InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform, ReturnValue) == 0x000070, "Member 'InterchangeCommonPipelineDataFactoryNode_SetCustomGlobalOffsetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes \ +static_assert(alignof(InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes) == 0x000001, "Wrong alignment on InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes"); \ +static_assert(sizeof(InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes) == 0x000002, "Wrong size on InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes, AttributeValue) == 0x000000, "Member 'InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes, ReturnValue) == 0x000001, "Member 'InterchangeCommonPipelineDataFactoryNode_GetBakeMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform \ +static_assert(alignof(InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform) == 0x000010, "Wrong alignment on InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform"); \ +static_assert(sizeof(InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform) == 0x000070, "Wrong size on InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform, AttributeValue) == 0x000000, "Member 'InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform, ReturnValue) == 0x000060, "Member 'InterchangeCommonPipelineDataFactoryNode_GetCustomGlobalOffsetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeCommonPipelineDataFactoryNode \ +static_assert(alignof(UInterchangeCommonPipelineDataFactoryNode) == 0x000008, "Wrong alignment on UInterchangeCommonPipelineDataFactoryNode"); \ +static_assert(sizeof(UInterchangeCommonPipelineDataFactoryNode) == 0x000160, "Wrong size on UInterchangeCommonPipelineDataFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeBaseMaterialFactoryNode \ +static_assert(alignof(UInterchangeBaseMaterialFactoryNode) == 0x000008, "Wrong alignment on UInterchangeBaseMaterialFactoryNode"); \ +static_assert(sizeof(UInterchangeBaseMaterialFactoryNode) == 0x000140, "Wrong size on UInterchangeBaseMaterialFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToAnisotropy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToBaseColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToBaseColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToBaseColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToBaseColor) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToBaseColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToBaseColor, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToBaseColor::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToBaseColor, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToBaseColor::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToBaseColor, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToBaseColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToClearCoat \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoat) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToClearCoat"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoat) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToClearCoat"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoat, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoat::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoat, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoat::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoat, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToClearCoatRoughness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToCloth \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToCloth) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToCloth"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToCloth) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToCloth"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToCloth, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToCloth::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToCloth, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToCloth::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToCloth, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToCloth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToEmissiveColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToFuzzColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToMetallic \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToMetallic) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToMetallic"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToMetallic) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToMetallic"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToMetallic, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToMetallic::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToMetallic, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToMetallic::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToMetallic, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToMetallic::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToNormal \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToNormal) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToNormal"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToNormal) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToNormal"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToNormal, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToNormal::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToNormal, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToNormal::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToNormal, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToOcclusion \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToOcclusion) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToOcclusion"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToOcclusion) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToOcclusion"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOcclusion, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOcclusion::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOcclusion, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOcclusion::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOcclusion, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOcclusion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToOpacity \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToOpacity) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToOpacity"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToOpacity) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToOpacity"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOpacity, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOpacity::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOpacity, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOpacity::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToOpacity, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToRefraction \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToRefraction) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToRefraction"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToRefraction) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToRefraction"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRefraction, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRefraction::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRefraction, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRefraction::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRefraction, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRefraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToRoughness \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToRoughness) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToRoughness"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToRoughness) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToRoughness"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRoughness, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRoughness::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRoughness, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRoughness::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToRoughness, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToRoughness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToSpecular \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToSpecular) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToSpecular"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToSpecular) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToSpecular"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSpecular, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSpecular::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSpecular, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSpecular::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSpecular, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSpecular::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToSubsurface \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToSubsurface) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToSubsurface"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToSubsurface) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToSubsurface"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSubsurface, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSubsurface::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSubsurface, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSubsurface::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToSubsurface, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToSubsurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToTangent \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToTangent) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToTangent"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToTangent) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToTangent"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTangent, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTangent::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTangent, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTangent::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTangent, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_ConnectOutputToTransmissionColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToAnisotropy \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToAnisotropy) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToAnisotropy"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToAnisotropy) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToAnisotropy"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToAnisotropy, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToAnisotropy::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToAnisotropy, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToAnisotropy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToBaseColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToBaseColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToBaseColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToBaseColor) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToBaseColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToBaseColor, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToBaseColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToBaseColor, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToBaseColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToClearCoat \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToClearCoat) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToClearCoat"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToClearCoat) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToClearCoat"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoat, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoat::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoat, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToClearCoatNormal \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToClearCoatNormal) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToClearCoatNormal"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToClearCoatNormal) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToClearCoatNormal"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoatNormal, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoatNormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoatNormal, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoatNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToClearCoatRoughness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToCloth \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToCloth) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToCloth"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToCloth) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToCloth"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToCloth, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToCloth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToCloth, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToCloth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToEmissiveColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToEmissiveColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToEmissiveColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToEmissiveColor) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToEmissiveColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToEmissiveColor, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToEmissiveColor::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToEmissiveColor, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToEmissiveColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToFuzzColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToFuzzColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToFuzzColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToFuzzColor) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToFuzzColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToFuzzColor, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToFuzzColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToFuzzColor, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToFuzzColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToMetallic \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToMetallic) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToMetallic"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToMetallic) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToMetallic"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToMetallic, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToMetallic::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToMetallic, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToMetallic::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToNormal \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToNormal) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToNormal"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToNormal) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToNormal"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToNormal, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToNormal::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToNormal, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToOcclusion \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToOcclusion) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToOcclusion"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToOcclusion) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToOcclusion"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToOcclusion, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToOcclusion::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToOcclusion, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToOcclusion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToOpacity \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToOpacity) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToOpacity"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToOpacity) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToOpacity"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToOpacity, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToOpacity::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToOpacity, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToRefraction \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToRefraction) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToRefraction"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToRefraction) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToRefraction"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToRefraction, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToRefraction::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToRefraction, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToRefraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToRoughness \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToRoughness) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToRoughness"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToRoughness) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToRoughness"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToRoughness, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToRoughness::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToRoughness, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToRoughness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToSpecular \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToSpecular) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToSpecular"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToSpecular) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToSpecular"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToSpecular, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToSpecular::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToSpecular, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToSpecular::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToSubsurface \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToSubsurface) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToSubsurface"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToSubsurface) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToSubsurface"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToSubsurface, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToSubsurface::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToSubsurface, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToSubsurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToTangent \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToTangent) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToTangent"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToTangent) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToTangent"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToTangent, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToTangent::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToTangent, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_ConnectToTransmissionColor \ +static_assert(alignof(InterchangeMaterialFactoryNode_ConnectToTransmissionColor) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_ConnectToTransmissionColor"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_ConnectToTransmissionColor) == 0x000018, "Wrong size on InterchangeMaterialFactoryNode_ConnectToTransmissionColor"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToTransmissionColor, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_ConnectToTransmissionColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_ConnectToTransmissionColor, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFactoryNode_ConnectToTransmissionColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomBlendMode \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomBlendMode) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomBlendMode"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomBlendMode) == 0x000003, "Wrong size on InterchangeMaterialFactoryNode_SetCustomBlendMode"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomBlendMode, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomBlendMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomBlendMode, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomBlendMode::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomBlendMode, ReturnValue) == 0x000002, "Member 'InterchangeMaterialFactoryNode_SetCustomBlendMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue) == 0x000004, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue) == 0x000008, "Wrong size on InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue, bAddApplyDelegate) == 0x000004, "Member 'InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue, ReturnValue) == 0x000005, "Member 'InterchangeMaterialFactoryNode_SetCustomOpacityMaskClipValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomRefractionMethod \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomRefractionMethod) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomRefractionMethod"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomRefractionMethod) == 0x000003, "Wrong size on InterchangeMaterialFactoryNode_SetCustomRefractionMethod"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomRefractionMethod, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomRefractionMethod::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomRefractionMethod, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomRefractionMethod::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomRefractionMethod, ReturnValue) == 0x000002, "Member 'InterchangeMaterialFactoryNode_SetCustomRefractionMethod::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomScreenSpaceReflections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomShadingModel \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomShadingModel) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomShadingModel"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomShadingModel) == 0x000003, "Wrong size on InterchangeMaterialFactoryNode_SetCustomShadingModel"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomShadingModel, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomShadingModel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomShadingModel, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomShadingModel::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomShadingModel, ReturnValue) == 0x000002, "Member 'InterchangeMaterialFactoryNode_SetCustomShadingModel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode) == 0x000003, "Wrong size on InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode, ReturnValue) == 0x000002, "Member 'InterchangeMaterialFactoryNode_SetCustomTranslucencyLightingMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_SetCustomTwoSided \ +static_assert(alignof(InterchangeMaterialFactoryNode_SetCustomTwoSided) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_SetCustomTwoSided"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_SetCustomTwoSided) == 0x000003, "Wrong size on InterchangeMaterialFactoryNode_SetCustomTwoSided"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_SetCustomTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTwoSided, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMaterialFactoryNode_SetCustomTwoSided::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_SetCustomTwoSided, ReturnValue) == 0x000002, "Member 'InterchangeMaterialFactoryNode_SetCustomTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetAnisotropyConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetAnisotropyConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetAnisotropyConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetAnisotropyConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetAnisotropyConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetAnisotropyConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetAnisotropyConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetAnisotropyConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetAnisotropyConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetAnisotropyConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetAnisotropyConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetBaseColorConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetBaseColorConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetBaseColorConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetBaseColorConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetBaseColorConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetBaseColorConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetBaseColorConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetBaseColorConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetBaseColorConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetBaseColorConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetBaseColorConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetClearCoatConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetClearCoatConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetClearCoatConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetClearCoatConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetClearCoatConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetClearCoatConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetClearCoatConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetClearCoatConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetClearCoatNormalConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetClearCoatNormalConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetClearCoatNormalConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetClearCoatNormalConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetClearCoatNormalConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatNormalConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetClearCoatNormalConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatNormalConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetClearCoatNormalConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatNormalConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetClearCoatNormalConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetClearCoatRoughnessConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetClothConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetClothConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetClothConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetClothConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetClothConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClothConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetClothConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClothConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetClothConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetClothConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetClothConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomBlendMode \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomBlendMode) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomBlendMode"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomBlendMode) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomBlendMode"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomBlendMode, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomBlendMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomBlendMode, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomBlendMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue) == 0x000004, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue) == 0x000008, "Wrong size on InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue, ReturnValue) == 0x000004, "Member 'InterchangeMaterialFactoryNode_GetCustomOpacityMaskClipValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomRefractionMethod \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomRefractionMethod) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomRefractionMethod"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomRefractionMethod) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomRefractionMethod"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomRefractionMethod, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomRefractionMethod::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomRefractionMethod, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomRefractionMethod::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomScreenSpaceReflections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomShadingModel \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomShadingModel) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomShadingModel"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomShadingModel) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomShadingModel"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomShadingModel, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomShadingModel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomShadingModel, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomShadingModel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomTranslucencyLightingMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetCustomTwoSided \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetCustomTwoSided) == 0x000001, "Wrong alignment on InterchangeMaterialFactoryNode_GetCustomTwoSided"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetCustomTwoSided) == 0x000002, "Wrong size on InterchangeMaterialFactoryNode_GetCustomTwoSided"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetCustomTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetCustomTwoSided, ReturnValue) == 0x000001, "Member 'InterchangeMaterialFactoryNode_GetCustomTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetEmissiveColorConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetEmissiveColorConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetEmissiveColorConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetEmissiveColorConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetEmissiveColorConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetEmissiveColorConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetEmissiveColorConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetEmissiveColorConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetEmissiveColorConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetEmissiveColorConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetEmissiveColorConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetFuzzColorConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetFuzzColorConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetFuzzColorConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetFuzzColorConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetFuzzColorConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetFuzzColorConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetFuzzColorConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetFuzzColorConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetFuzzColorConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetFuzzColorConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetFuzzColorConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetMetallicConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetMetallicConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetMetallicConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetMetallicConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetMetallicConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetMetallicConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetMetallicConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetMetallicConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetMetallicConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetMetallicConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetMetallicConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetNormalConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetNormalConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetNormalConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetNormalConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetNormalConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetNormalConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetNormalConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetNormalConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetNormalConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetNormalConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetNormalConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeMaterialFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetOcclusionConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetOcclusionConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetOcclusionConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetOcclusionConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetOcclusionConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOcclusionConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetOcclusionConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOcclusionConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetOcclusionConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOcclusionConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetOcclusionConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetOpacityConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetOpacityConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetOpacityConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetOpacityConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetOpacityConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOpacityConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetOpacityConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOpacityConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetOpacityConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetOpacityConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetOpacityConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetRefractionConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetRefractionConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetRefractionConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetRefractionConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetRefractionConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRefractionConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetRefractionConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRefractionConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetRefractionConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRefractionConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetRefractionConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetRoughnessConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetRoughnessConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetRoughnessConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetRoughnessConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetRoughnessConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRoughnessConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetRoughnessConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRoughnessConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetRoughnessConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetRoughnessConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetRoughnessConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetSpecularConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetSpecularConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetSpecularConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetSpecularConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetSpecularConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSpecularConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetSpecularConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSpecularConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetSpecularConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSpecularConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetSpecularConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetSubsurfaceConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetSubsurfaceConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetSubsurfaceConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetSubsurfaceConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetSubsurfaceConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSubsurfaceConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetSubsurfaceConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSubsurfaceConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetSubsurfaceConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetSubsurfaceConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetSubsurfaceConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetTangentConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetTangentConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetTangentConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetTangentConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetTangentConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTangentConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetTangentConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTangentConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetTangentConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTangentConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetTangentConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFactoryNode_GetTransmissionColorConnection \ +static_assert(alignof(InterchangeMaterialFactoryNode_GetTransmissionColorConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFactoryNode_GetTransmissionColorConnection"); \ +static_assert(sizeof(InterchangeMaterialFactoryNode_GetTransmissionColorConnection) == 0x000028, "Wrong size on InterchangeMaterialFactoryNode_GetTransmissionColorConnection"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTransmissionColorConnection, ExpressionNodeUid) == 0x000000, "Member 'InterchangeMaterialFactoryNode_GetTransmissionColorConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTransmissionColorConnection, OutputName) == 0x000010, "Member 'InterchangeMaterialFactoryNode_GetTransmissionColorConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFactoryNode_GetTransmissionColorConnection, ReturnValue) == 0x000020, "Member 'InterchangeMaterialFactoryNode_GetTransmissionColorConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialFactoryNode \ +static_assert(alignof(UInterchangeMaterialFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMaterialFactoryNode"); \ +static_assert(sizeof(UInterchangeMaterialFactoryNode) == 0x0001B0, "Wrong size on UInterchangeMaterialFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName \ +static_assert(alignof(InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName) == 0x000008, "Wrong alignment on InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName"); \ +static_assert(sizeof(InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName) == 0x000018, "Wrong size on InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName"); \ +static_assert(offsetof(InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName, AttributeValue) == 0x000000, "Member 'InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName, ReturnValue) == 0x000010, "Member 'InterchangeMaterialExpressionFactoryNode_SetCustomExpressionClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName \ +static_assert(alignof(InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName) == 0x000008, "Wrong alignment on InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName"); \ +static_assert(sizeof(InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName) == 0x000018, "Wrong size on InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName"); \ +static_assert(offsetof(InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName, AttributeValue) == 0x000000, "Member 'InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName, ReturnValue) == 0x000010, "Member 'InterchangeMaterialExpressionFactoryNode_GetCustomExpressionClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialExpressionFactoryNode \ +static_assert(alignof(UInterchangeMaterialExpressionFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMaterialExpressionFactoryNode"); \ +static_assert(sizeof(UInterchangeMaterialExpressionFactoryNode) == 0x000150, "Wrong size on UInterchangeMaterialExpressionFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName \ +static_assert(alignof(InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName"); \ +static_assert(sizeof(InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName) == 0x000018, "Wrong size on InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceFactoryNode_SetCustomInstanceClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceFactoryNode_SetCustomParent \ +static_assert(alignof(InterchangeMaterialInstanceFactoryNode_SetCustomParent) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceFactoryNode_SetCustomParent"); \ +static_assert(sizeof(InterchangeMaterialInstanceFactoryNode_SetCustomParent) == 0x000018, "Wrong size on InterchangeMaterialInstanceFactoryNode_SetCustomParent"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_SetCustomParent, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceFactoryNode_SetCustomParent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_SetCustomParent, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceFactoryNode_SetCustomParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName \ +static_assert(alignof(InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName"); \ +static_assert(sizeof(InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName) == 0x000018, "Wrong size on InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceFactoryNode_GetCustomInstanceClassName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceFactoryNode_GetCustomParent \ +static_assert(alignof(InterchangeMaterialInstanceFactoryNode_GetCustomParent) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceFactoryNode_GetCustomParent"); \ +static_assert(sizeof(InterchangeMaterialInstanceFactoryNode_GetCustomParent) == 0x000018, "Wrong size on InterchangeMaterialInstanceFactoryNode_GetCustomParent"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_GetCustomParent, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceFactoryNode_GetCustomParent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceFactoryNode_GetCustomParent, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceFactoryNode_GetCustomParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialInstanceFactoryNode \ +static_assert(alignof(UInterchangeMaterialInstanceFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMaterialInstanceFactoryNode"); \ +static_assert(sizeof(UInterchangeMaterialInstanceFactoryNode) == 0x000160, "Wrong size on UInterchangeMaterialInstanceFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency \ +static_assert(alignof(InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency) == 0x000008, "Wrong alignment on InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency"); \ +static_assert(sizeof(InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency) == 0x000018, "Wrong size on InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency"); \ +static_assert(offsetof(InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFunctionCallExpressionFactoryNode_SetCustomMaterialFunctionDependency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency \ +static_assert(alignof(InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency) == 0x000008, "Wrong alignment on InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency"); \ +static_assert(sizeof(InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency) == 0x000018, "Wrong size on InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency"); \ +static_assert(offsetof(InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency, AttributeValue) == 0x000000, "Member 'InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency, ReturnValue) == 0x000010, "Member 'InterchangeMaterialFunctionCallExpressionFactoryNode_GetCustomMaterialFunctionDependency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialFunctionCallExpressionFactoryNode \ +static_assert(alignof(UInterchangeMaterialFunctionCallExpressionFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMaterialFunctionCallExpressionFactoryNode"); \ +static_assert(sizeof(UInterchangeMaterialFunctionCallExpressionFactoryNode) == 0x000160, "Wrong size on UInterchangeMaterialFunctionCallExpressionFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFunctionFactoryNode_GetInputConnection \ +static_assert(alignof(InterchangeMaterialFunctionFactoryNode_GetInputConnection) == 0x000008, "Wrong alignment on InterchangeMaterialFunctionFactoryNode_GetInputConnection"); \ +static_assert(sizeof(InterchangeMaterialFunctionFactoryNode_GetInputConnection) == 0x000038, "Wrong size on InterchangeMaterialFunctionFactoryNode_GetInputConnection"); \ +static_assert(offsetof(InterchangeMaterialFunctionFactoryNode_GetInputConnection, InputName) == 0x000000, "Member 'InterchangeMaterialFunctionFactoryNode_GetInputConnection::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFunctionFactoryNode_GetInputConnection, ExpressionNodeUid) == 0x000010, "Member 'InterchangeMaterialFunctionFactoryNode_GetInputConnection::ExpressionNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFunctionFactoryNode_GetInputConnection, OutputName) == 0x000020, "Member 'InterchangeMaterialFunctionFactoryNode_GetInputConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialFunctionFactoryNode_GetInputConnection, ReturnValue) == 0x000030, "Member 'InterchangeMaterialFunctionFactoryNode_GetInputConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialFunctionFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeMaterialFunctionFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeMaterialFunctionFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeMaterialFunctionFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeMaterialFunctionFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeMaterialFunctionFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeMaterialFunctionFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialFunctionFactoryNode \ +static_assert(alignof(UInterchangeMaterialFunctionFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMaterialFunctionFactoryNode"); \ +static_assert(sizeof(UInterchangeMaterialFunctionFactoryNode) == 0x000140, "Wrong size on UInterchangeMaterialFunctionFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid) == 0x000018, "Wrong size on InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshActorFactoryNode_RemoveSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay \ +static_assert(alignof(InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay) == 0x000018, "Wrong size on InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay, AttributeValue) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay, ReturnValue) == 0x000010, "Member 'InterchangeMeshActorFactoryNode_SetCustomAnimationAssetUidToPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_SetCustomGeometricTransform \ +static_assert(alignof(InterchangeMeshActorFactoryNode_SetCustomGeometricTransform) == 0x000010, "Wrong alignment on InterchangeMeshActorFactoryNode_SetCustomGeometricTransform"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_SetCustomGeometricTransform) == 0x000070, "Wrong size on InterchangeMeshActorFactoryNode_SetCustomGeometricTransform"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetCustomGeometricTransform, AttributeValue) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_SetCustomGeometricTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetCustomGeometricTransform, ReturnValue) == 0x000060, "Member 'InterchangeMeshActorFactoryNode_SetCustomGeometricTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid, MaterialDependencyUid) == 0x000010, "Member 'InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid::MaterialDependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshActorFactoryNode_SetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay \ +static_assert(alignof(InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay) == 0x000018, "Wrong size on InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay, AttributeValue) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay, ReturnValue) == 0x000010, "Member 'InterchangeMeshActorFactoryNode_GetCustomAnimationAssetUidToPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_GetCustomGeometricTransform \ +static_assert(alignof(InterchangeMeshActorFactoryNode_GetCustomGeometricTransform) == 0x000010, "Wrong alignment on InterchangeMeshActorFactoryNode_GetCustomGeometricTransform"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_GetCustomGeometricTransform) == 0x000070, "Wrong size on InterchangeMeshActorFactoryNode_GetCustomGeometricTransform"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetCustomGeometricTransform, AttributeValue) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_GetCustomGeometricTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetCustomGeometricTransform, ReturnValue) == 0x000060, "Member 'InterchangeMeshActorFactoryNode_GetCustomGeometricTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies \ +static_assert(alignof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies) == 0x000050, "Wrong size on InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies, OutMaterialDependencies) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_GetSlotMaterialDependencies::OutMaterialDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid, OutMaterialDependency) == 0x000010, "Member 'InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid::OutMaterialDependency' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshActorFactoryNode_GetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMeshActorFactoryNode \ +static_assert(alignof(UInterchangeMeshActorFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMeshActorFactoryNode"); \ +static_assert(sizeof(UInterchangeMeshActorFactoryNode) == 0x000208, "Wrong size on UInterchangeMeshActorFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_AddLodDataUniqueId \ +static_assert(alignof(InterchangeMeshFactoryNode_AddLodDataUniqueId) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_AddLodDataUniqueId"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_AddLodDataUniqueId) == 0x000018, "Wrong size on InterchangeMeshFactoryNode_AddLodDataUniqueId"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_AddLodDataUniqueId, LodDataUniqueId) == 0x000000, "Member 'InterchangeMeshFactoryNode_AddLodDataUniqueId::LodDataUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_AddLodDataUniqueId, ReturnValue) == 0x000010, "Member 'InterchangeMeshFactoryNode_AddLodDataUniqueId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_RemoveLodDataUniqueId \ +static_assert(alignof(InterchangeMeshFactoryNode_RemoveLodDataUniqueId) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_RemoveLodDataUniqueId"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_RemoveLodDataUniqueId) == 0x000018, "Wrong size on InterchangeMeshFactoryNode_RemoveLodDataUniqueId"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_RemoveLodDataUniqueId, LodDataUniqueId) == 0x000000, "Member 'InterchangeMeshFactoryNode_RemoveLodDataUniqueId::LodDataUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_RemoveLodDataUniqueId, ReturnValue) == 0x000010, "Member 'InterchangeMeshFactoryNode_RemoveLodDataUniqueId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid) == 0x000018, "Wrong size on InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshFactoryNode_RemoveSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomComputeWeightedNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomLODGroup \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomLODGroup) == 0x000004, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomLODGroup"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomLODGroup) == 0x00000C, "Wrong size on InterchangeMeshFactoryNode_SetCustomLODGroup"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomLODGroup, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomLODGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomLODGroup, bAddApplyDelegate) == 0x000008, "Member 'InterchangeMeshFactoryNode_SetCustomLODGroup::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomLODGroup, ReturnValue) == 0x000009, "Member 'InterchangeMeshFactoryNode_SetCustomLODGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomRecomputeNormals \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomRecomputeNormals) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomRecomputeNormals"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomRecomputeNormals) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomRecomputeNormals"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeNormals, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeNormals::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeNormals, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeNormals::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeNormals, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomRecomputeTangents \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomRecomputeTangents) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomRecomputeTangents"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomRecomputeTangents) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomRecomputeTangents"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeTangents, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeTangents::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeTangents, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeTangents::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRecomputeTangents, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomRecomputeTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomRemoveDegenerates \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomRemoveDegenerates) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomRemoveDegenerates"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomRemoveDegenerates) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomRemoveDegenerates"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRemoveDegenerates, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomRemoveDegenerates::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRemoveDegenerates, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomRemoveDegenerates::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomRemoveDegenerates, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomRemoveDegenerates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomUseBackwardsCompatibleF16TruncUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomUseFullPrecisionUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomUseHighPrecisionTangentBasis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomUseMikkTSpace \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomUseMikkTSpace) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomUseMikkTSpace"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomUseMikkTSpace) == 0x000003, "Wrong size on InterchangeMeshFactoryNode_SetCustomUseMikkTSpace"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseMikkTSpace, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomUseMikkTSpace::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseMikkTSpace, bAddApplyDelegate) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomUseMikkTSpace::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomUseMikkTSpace, ReturnValue) == 0x000002, "Member 'InterchangeMeshFactoryNode_SetCustomUseMikkTSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomVertexColorIgnore \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomVertexColorIgnore) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomVertexColorIgnore"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomVertexColorIgnore) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_SetCustomVertexColorIgnore"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorIgnore, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorIgnore::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorIgnore, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorIgnore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomVertexColorOverride \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomVertexColorOverride) == 0x000004, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomVertexColorOverride"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomVertexColorOverride) == 0x000008, "Wrong size on InterchangeMeshFactoryNode_SetCustomVertexColorOverride"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorOverride, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorOverride::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorOverride, ReturnValue) == 0x000004, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorOverride::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetCustomVertexColorReplace \ +static_assert(alignof(InterchangeMeshFactoryNode_SetCustomVertexColorReplace) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_SetCustomVertexColorReplace"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetCustomVertexColorReplace) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_SetCustomVertexColorReplace"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorReplace, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorReplace::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetCustomVertexColorReplace, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_SetCustomVertexColorReplace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid, MaterialDependencyUid) == 0x000010, "Member 'InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid::MaterialDependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshFactoryNode_SetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomComputeWeightedNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomLODGroup \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomLODGroup) == 0x000004, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomLODGroup"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomLODGroup) == 0x00000C, "Wrong size on InterchangeMeshFactoryNode_GetCustomLODGroup"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomLODGroup, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomLODGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomLODGroup, ReturnValue) == 0x000008, "Member 'InterchangeMeshFactoryNode_GetCustomLODGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomRecomputeNormals \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomRecomputeNormals) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomRecomputeNormals"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomRecomputeNormals) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomRecomputeNormals"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRecomputeNormals, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomRecomputeNormals::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRecomputeNormals, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomRecomputeNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomRecomputeTangents \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomRecomputeTangents) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomRecomputeTangents"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomRecomputeTangents) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomRecomputeTangents"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRecomputeTangents, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomRecomputeTangents::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRecomputeTangents, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomRecomputeTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomRemoveDegenerates \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomRemoveDegenerates) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomRemoveDegenerates"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomRemoveDegenerates) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomRemoveDegenerates"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRemoveDegenerates, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomRemoveDegenerates::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomRemoveDegenerates, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomRemoveDegenerates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomUseBackwardsCompatibleF16TruncUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomUseFullPrecisionUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomUseHighPrecisionTangentBasis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomUseMikkTSpace \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomUseMikkTSpace) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomUseMikkTSpace"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomUseMikkTSpace) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomUseMikkTSpace"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseMikkTSpace, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomUseMikkTSpace::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomUseMikkTSpace, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomUseMikkTSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomVertexColorIgnore \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomVertexColorIgnore) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomVertexColorIgnore"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomVertexColorIgnore) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomVertexColorIgnore"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorIgnore, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorIgnore::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorIgnore, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorIgnore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomVertexColorOverride \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomVertexColorOverride) == 0x000004, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomVertexColorOverride"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomVertexColorOverride) == 0x000008, "Wrong size on InterchangeMeshFactoryNode_GetCustomVertexColorOverride"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorOverride, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorOverride::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorOverride, ReturnValue) == 0x000004, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorOverride::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetCustomVertexColorReplace \ +static_assert(alignof(InterchangeMeshFactoryNode_GetCustomVertexColorReplace) == 0x000001, "Wrong alignment on InterchangeMeshFactoryNode_GetCustomVertexColorReplace"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetCustomVertexColorReplace) == 0x000002, "Wrong size on InterchangeMeshFactoryNode_GetCustomVertexColorReplace"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorReplace, AttributeValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorReplace::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetCustomVertexColorReplace, ReturnValue) == 0x000001, "Member 'InterchangeMeshFactoryNode_GetCustomVertexColorReplace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetLodDataCount \ +static_assert(alignof(InterchangeMeshFactoryNode_GetLodDataCount) == 0x000004, "Wrong alignment on InterchangeMeshFactoryNode_GetLodDataCount"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetLodDataCount) == 0x000004, "Wrong size on InterchangeMeshFactoryNode_GetLodDataCount"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetLodDataCount, ReturnValue) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetLodDataCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetLodDataUniqueIds \ +static_assert(alignof(InterchangeMeshFactoryNode_GetLodDataUniqueIds) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_GetLodDataUniqueIds"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetLodDataUniqueIds) == 0x000010, "Wrong size on InterchangeMeshFactoryNode_GetLodDataUniqueIds"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetLodDataUniqueIds, OutLodDataUniqueIds) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetLodDataUniqueIds::OutLodDataUniqueIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetSlotMaterialDependencies \ +static_assert(alignof(InterchangeMeshFactoryNode_GetSlotMaterialDependencies) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_GetSlotMaterialDependencies"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetSlotMaterialDependencies) == 0x000050, "Wrong size on InterchangeMeshFactoryNode_GetSlotMaterialDependencies"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetSlotMaterialDependencies, OutMaterialDependencies) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetSlotMaterialDependencies::OutMaterialDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid, OutMaterialDependency) == 0x000010, "Member 'InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid::OutMaterialDependency' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshFactoryNode_GetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMeshFactoryNode \ +static_assert(alignof(UInterchangeMeshFactoryNode) == 0x000008, "Wrong alignment on UInterchangeMeshFactoryNode"); \ +static_assert(sizeof(UInterchangeMeshFactoryNode) == 0x0002B0, "Wrong size on UInterchangeMeshFactoryNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneImportAssetFactoryNode \ +static_assert(alignof(UInterchangeSceneImportAssetFactoryNode) == 0x000008, "Wrong alignment on UInterchangeSceneImportAssetFactoryNode"); \ +static_assert(sizeof(UInterchangeSceneImportAssetFactoryNode) == 0x000140, "Wrong size on UInterchangeSceneImportAssetFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode) == 0x000030, "Wrong size on InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode, UniqueID) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode, DisplayLabel) == 0x000010, "Member 'InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode, InAssetClass) == 0x000020, "Member 'InterchangeSkeletalMeshFactoryNode_InitializeSkeletalMeshNode::InAssetClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit, ReturnValue) == 0x000005, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomBoneInfluenceLimit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomCreatePhysicsAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomImportContentType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomImportMorphTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition, ReturnValue) == 0x000005, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomMorphThresholdPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath) == 0x000028, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomPhysicAssetSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath) == 0x000028, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomSkeletonSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition, ReturnValue) == 0x000005, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal, ReturnValue) == 0x000005, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdTangentNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV, bAddApplyDelegate) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV, ReturnValue) == 0x000005, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomThresholdUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights) == 0x000003, "Wrong size on InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights, bAddApplyDelegate) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights, ReturnValue) == 0x000002, "Member 'InterchangeSkeletalMeshFactoryNode_SetCustomUseHighPrecisionSkinWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit, ReturnValue) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomBoneInfluenceLimit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomCreatePhysicsAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomImportContentType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomImportMorphTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition, ReturnValue) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomMorphThresholdPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath) == 0x000028, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomPhysicAssetSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath) == 0x000028, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath, ReturnValue) == 0x000020, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomSkeletonSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition, ReturnValue) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal, ReturnValue) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdTangentNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV, ReturnValue) == 0x000004, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomThresholdUV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights) == 0x000002, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights, ReturnValue) == 0x000001, "Member 'InterchangeSkeletalMeshFactoryNode_GetCustomUseHighPrecisionSkinWeights::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeSkeletalMeshFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeSkeletalMeshFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeSkeletalMeshFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeSkeletalMeshFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeSkeletalMeshFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletalMeshFactoryNode \ +static_assert(alignof(UInterchangeSkeletalMeshFactoryNode) == 0x000008, "Wrong alignment on UInterchangeSkeletalMeshFactoryNode"); \ +static_assert(sizeof(UInterchangeSkeletalMeshFactoryNode) == 0x000378, "Wrong size on UInterchangeSkeletalMeshFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_AddMeshUid \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_AddMeshUid) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_AddMeshUid"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_AddMeshUid) == 0x000018, "Wrong size on InterchangeSkeletalMeshLodDataNode_AddMeshUid"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_AddMeshUid, MeshName) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_AddMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_AddMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalMeshLodDataNode_AddMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes) == 0x000001, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes) == 0x000001, "Wrong size on InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes, ReturnValue) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_RemoveAllMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_RemoveMeshUid \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_RemoveMeshUid) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_RemoveMeshUid"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_RemoveMeshUid) == 0x000018, "Wrong size on InterchangeSkeletalMeshLodDataNode_RemoveMeshUid"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_RemoveMeshUid, MeshName) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_RemoveMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_RemoveMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalMeshLodDataNode_RemoveMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid) == 0x000018, "Wrong size on InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalMeshLodDataNode_SetCustomSkeletonUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid) == 0x000018, "Wrong size on InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalMeshLodDataNode_GetCustomSkeletonUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_GetMeshUids \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_GetMeshUids) == 0x000008, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_GetMeshUids"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_GetMeshUids) == 0x000010, "Wrong size on InterchangeSkeletalMeshLodDataNode_GetMeshUids"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_GetMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_GetMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount \ +static_assert(alignof(InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount"); \ +static_assert(sizeof(InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount) == 0x000004, "Wrong size on InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount"); \ +static_assert(offsetof(InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeSkeletalMeshLodDataNode_GetMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletalMeshLodDataNode \ +static_assert(alignof(UInterchangeSkeletalMeshLodDataNode) == 0x000008, "Wrong alignment on UInterchangeSkeletalMeshLodDataNode"); \ +static_assert(sizeof(UInterchangeSkeletalMeshLodDataNode) == 0x000170, "Wrong size on UInterchangeSkeletalMeshLodDataNode"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_AddSocketUid \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_AddSocketUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_AddSocketUid"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_AddSocketUid) == 0x000018, "Wrong size on InterchangeStaticMeshFactoryNode_AddSocketUid"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_AddSocketUid, SocketUid) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_AddSocketUid::SocketUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_AddSocketUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshFactoryNode_AddSocketUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_AddSocketUids \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_AddSocketUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_AddSocketUids"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_AddSocketUids) == 0x000018, "Wrong size on InterchangeStaticMeshFactoryNode_AddSocketUids"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_AddSocketUids, InSocketUids) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_AddSocketUids::InSocketUids' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_AddSocketUids, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshFactoryNode_AddSocketUids::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode) == 0x000030, "Wrong size on InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode, UniqueID) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode, DisplayLabel) == 0x000010, "Member 'InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode, InAssetClass) == 0x000020, "Member 'InterchangeStaticMeshFactoryNode_InitializeStaticMeshNode::InAssetClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_RemoveSocketUd \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_RemoveSocketUd) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_RemoveSocketUd"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_RemoveSocketUd) == 0x000018, "Wrong size on InterchangeStaticMeshFactoryNode_RemoveSocketUd"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_RemoveSocketUd, SocketUid) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_RemoveSocketUd::SocketUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_RemoveSocketUd, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshFactoryNode_RemoveSocketUd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomBuildNanite \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomBuildNanite) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomBuildNanite"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomBuildNanite) == 0x000003, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomBuildNanite"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildNanite, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildNanite::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildNanite, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildNanite::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildNanite, ReturnValue) == 0x000002, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildNanite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer) == 0x000003, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer, ReturnValue) == 0x000002, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildReversedIndexBuffer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D) == 0x000020, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D, bAddApplyDelegate) == 0x000018, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D, ReturnValue) == 0x000019, "Member 'InterchangeStaticMeshFactoryNode_SetCustomBuildScale3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh) == 0x000028, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh, bAddApplyDelegate) == 0x000020, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh, ReturnValue) == 0x000021, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldReplacementMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale, ReturnValue) == 0x000005, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDistanceFieldResolutionScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex, ReturnValue) == 0x000005, "Member 'InterchangeStaticMeshFactoryNode_SetCustomDstLightmapIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided) == 0x000003, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided, ReturnValue) == 0x000002, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateDistanceFieldAsIfTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs) == 0x000003, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs, ReturnValue) == 0x000002, "Member 'InterchangeStaticMeshFactoryNode_SetCustomGenerateLightmapUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards, ReturnValue) == 0x000005, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMaxLumenMeshCards::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution, ReturnValue) == 0x000005, "Member 'InterchangeStaticMeshFactoryNode_SetCustomMinLightmapResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex, bAddApplyDelegate) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex, ReturnValue) == 0x000005, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSrcLightmapIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap) == 0x000003, "Wrong size on InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap, bAddApplyDelegate) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap, ReturnValue) == 0x000002, "Member 'InterchangeStaticMeshFactoryNode_SetCustomSupportFaceRemap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomBuildNanite \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomBuildNanite) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomBuildNanite"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomBuildNanite) == 0x000002, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomBuildNanite"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildNanite, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildNanite::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildNanite, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildNanite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer) == 0x000002, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildReversedIndexBuffer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D) == 0x000020, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D, ReturnValue) == 0x000018, "Member 'InterchangeStaticMeshFactoryNode_GetCustomBuildScale3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh) == 0x000028, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh, ReturnValue) == 0x000020, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldReplacementMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale, ReturnValue) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDistanceFieldResolutionScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex, ReturnValue) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_GetCustomDstLightmapIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided) == 0x000002, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_GetCustomGenerateDistanceFieldAsIfTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs) == 0x000002, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_GetCustomGenerateLightmapUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards, ReturnValue) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_GetCustomMaxLumenMeshCards::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution, ReturnValue) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_GetCustomMinLightmapResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex, ReturnValue) == 0x000004, "Member 'InterchangeStaticMeshFactoryNode_GetCustomSrcLightmapIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap) == 0x000001, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap) == 0x000002, "Wrong size on InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshFactoryNode_GetCustomSupportFaceRemap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetObjectClass \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetObjectClass) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetObjectClass"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetObjectClass) == 0x000008, "Wrong size on InterchangeStaticMeshFactoryNode_GetObjectClass"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetObjectClass, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetSocketUidCount \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetSocketUidCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetSocketUidCount"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetSocketUidCount) == 0x000004, "Wrong size on InterchangeStaticMeshFactoryNode_GetSocketUidCount"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetSocketUidCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetSocketUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshFactoryNode_GetSocketUids \ +static_assert(alignof(InterchangeStaticMeshFactoryNode_GetSocketUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshFactoryNode_GetSocketUids"); \ +static_assert(sizeof(InterchangeStaticMeshFactoryNode_GetSocketUids) == 0x000010, "Wrong size on InterchangeStaticMeshFactoryNode_GetSocketUids"); \ +static_assert(offsetof(InterchangeStaticMeshFactoryNode_GetSocketUids, OutSocketUids) == 0x000000, "Member 'InterchangeStaticMeshFactoryNode_GetSocketUids::OutSocketUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeStaticMeshFactoryNode \ +static_assert(alignof(UInterchangeStaticMeshFactoryNode) == 0x000008, "Wrong alignment on UInterchangeStaticMeshFactoryNode"); \ +static_assert(sizeof(UInterchangeStaticMeshFactoryNode) == 0x000398, "Wrong size on UInterchangeStaticMeshFactoryNode"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_AddBoxCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_AddCapsuleCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_AddConvexCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_AddMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_AddMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_AddMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_AddMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_AddMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_AddMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_AddMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_AddSphereCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes) == 0x000001, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveAllBoxCollisionMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes) == 0x000001, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveAllCapsuleCollisionMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes) == 0x000001, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveAllConvexCollisionMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveAllMeshes \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveAllMeshes) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveAllMeshes"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveAllMeshes) == 0x000001, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveAllMeshes"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveAllMeshes, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveAllMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes) == 0x000001, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveAllSphereCollisionMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_RemoveBoxCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_RemoveCapsuleCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_RemoveConvexCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_RemoveMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid) == 0x000018, "Wrong size on InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid, MeshName) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid::MeshName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid, ReturnValue) == 0x000010, "Member 'InterchangeStaticMeshLodDataNode_RemoveSphereCollisionMeshUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_SetImportCollision \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_SetImportCollision) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_SetImportCollision"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_SetImportCollision) == 0x000002, "Wrong size on InterchangeStaticMeshLodDataNode_SetImportCollision"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_SetImportCollision, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_SetImportCollision::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_SetImportCollision, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshLodDataNode_SetImportCollision::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX) == 0x000002, "Wrong size on InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshLodDataNode_SetOneConvexHullPerUCX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids) == 0x000010, "Wrong size on InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount) == 0x000004, "Wrong size on InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetBoxCollisionMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids) == 0x000010, "Wrong size on InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount) == 0x000004, "Wrong size on InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetCapsuleCollisionMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids) == 0x000010, "Wrong size on InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount) == 0x000004, "Wrong size on InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetConvexCollisionMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetImportCollision \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetImportCollision) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetImportCollision"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetImportCollision) == 0x000002, "Wrong size on InterchangeStaticMeshLodDataNode_GetImportCollision"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetImportCollision, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetImportCollision::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetImportCollision, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshLodDataNode_GetImportCollision::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetMeshUids \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetMeshUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetMeshUids"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetMeshUids) == 0x000010, "Wrong size on InterchangeStaticMeshLodDataNode_GetMeshUids"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetMeshUidsCount \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetMeshUidsCount"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetMeshUidsCount) == 0x000004, "Wrong size on InterchangeStaticMeshLodDataNode_GetMeshUidsCount"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX) == 0x000001, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX) == 0x000002, "Wrong size on InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX, AttributeValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX, ReturnValue) == 0x000001, "Member 'InterchangeStaticMeshLodDataNode_GetOneConvexHullPerUCX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids) == 0x000008, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids) == 0x000010, "Wrong size on InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids, OutMeshNames) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUids::OutMeshNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount \ +static_assert(alignof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount) == 0x000004, "Wrong alignment on InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount"); \ +static_assert(sizeof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount) == 0x000004, "Wrong size on InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount"); \ +static_assert(offsetof(InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeStaticMeshLodDataNode_GetSphereCollisionMeshUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeStaticMeshLodDataNode \ +static_assert(alignof(UInterchangeStaticMeshLodDataNode) == 0x000008, "Wrong alignment on UInterchangeStaticMeshLodDataNode"); \ +static_assert(sizeof(UInterchangeStaticMeshLodDataNode) == 0x000200, "Wrong size on UInterchangeStaticMeshLodDataNode"); \ + +#define DUMPER7_ASSERTS_FPropertyPathSegment \ +static_assert(alignof(FPropertyPathSegment) == 0x000008, "Wrong alignment on FPropertyPathSegment"); \ +static_assert(sizeof(FPropertyPathSegment) == 0x000020, "Wrong size on FPropertyPathSegment"); \ +static_assert(offsetof(FPropertyPathSegment, Name) == 0x000000, "Member 'FPropertyPathSegment::Name' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathSegment, ArrayIndex) == 0x000008, "Member 'FPropertyPathSegment::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathSegment, Struct) == 0x000010, "Member 'FPropertyPathSegment::Struct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedPropertyPath \ +static_assert(alignof(FCachedPropertyPath) == 0x000008, "Wrong alignment on FCachedPropertyPath"); \ +static_assert(sizeof(FCachedPropertyPath) == 0x000038, "Wrong size on FCachedPropertyPath"); \ +static_assert(offsetof(FCachedPropertyPath, Segments) == 0x000000, "Member 'FCachedPropertyPath::Segments' has a wrong offset!"); \ +static_assert(offsetof(FCachedPropertyPath, CachedFunction) == 0x000018, "Member 'FCachedPropertyPath::CachedFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyPathTestInnerStruct \ +static_assert(alignof(FPropertyPathTestInnerStruct) == 0x000008, "Wrong alignment on FPropertyPathTestInnerStruct"); \ +static_assert(sizeof(FPropertyPathTestInnerStruct) == 0x000020, "Wrong size on FPropertyPathTestInnerStruct"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, float_0) == 0x000000, "Member 'FPropertyPathTestInnerStruct::float_0' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, Bool) == 0x000004, "Member 'FPropertyPathTestInnerStruct::Bool' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, EnumOne) == 0x000005, "Member 'FPropertyPathTestInnerStruct::EnumOne' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, EnumTwo) == 0x000006, "Member 'FPropertyPathTestInnerStruct::EnumTwo' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, EnumThree) == 0x000007, "Member 'FPropertyPathTestInnerStruct::EnumThree' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, EnumFour) == 0x000008, "Member 'FPropertyPathTestInnerStruct::EnumFour' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, Integer) == 0x00000C, "Member 'FPropertyPathTestInnerStruct::Integer' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestInnerStruct, String) == 0x000010, "Member 'FPropertyPathTestInnerStruct::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyPathTestStruct \ +static_assert(alignof(FPropertyPathTestStruct) == 0x000008, "Wrong alignment on FPropertyPathTestStruct"); \ +static_assert(sizeof(FPropertyPathTestStruct) == 0x000050, "Wrong size on FPropertyPathTestStruct"); \ +static_assert(offsetof(FPropertyPathTestStruct, Bool) == 0x000000, "Member 'FPropertyPathTestStruct::Bool' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, Integer) == 0x000004, "Member 'FPropertyPathTestStruct::Integer' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, EnumOne) == 0x000008, "Member 'FPropertyPathTestStruct::EnumOne' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, EnumTwo) == 0x000009, "Member 'FPropertyPathTestStruct::EnumTwo' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, EnumThree) == 0x00000A, "Member 'FPropertyPathTestStruct::EnumThree' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, EnumFour) == 0x00000B, "Member 'FPropertyPathTestStruct::EnumFour' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, String) == 0x000010, "Member 'FPropertyPathTestStruct::String' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, float_0) == 0x000020, "Member 'FPropertyPathTestStruct::float_0' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, InnerStruct) == 0x000028, "Member 'FPropertyPathTestStruct::InnerStruct' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestStruct, InnerObject) == 0x000048, "Member 'FPropertyPathTestStruct::InnerObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyPathTestBed \ +static_assert(alignof(FPropertyPathTestBed) == 0x000008, "Wrong alignment on FPropertyPathTestBed"); \ +static_assert(sizeof(FPropertyPathTestBed) == 0x0000B0, "Wrong size on FPropertyPathTestBed"); \ +static_assert(offsetof(FPropertyPathTestBed, Object) == 0x000000, "Member 'FPropertyPathTestBed::Object' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestBed, ModifiedObject) == 0x000008, "Member 'FPropertyPathTestBed::ModifiedObject' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestBed, ModifiedStruct) == 0x000010, "Member 'FPropertyPathTestBed::ModifiedStruct' has a wrong offset!"); \ +static_assert(offsetof(FPropertyPathTestBed, DefaultStruct) == 0x000060, "Member 'FPropertyPathTestBed::DefaultStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_SetFloat \ +static_assert(alignof(PropertyPathTestObject_SetFloat) == 0x000004, "Wrong alignment on PropertyPathTestObject_SetFloat"); \ +static_assert(sizeof(PropertyPathTestObject_SetFloat) == 0x000004, "Wrong size on PropertyPathTestObject_SetFloat"); \ +static_assert(offsetof(PropertyPathTestObject_SetFloat, InFloat) == 0x000000, "Member 'PropertyPathTestObject_SetFloat::InFloat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_SetStruct \ +static_assert(alignof(PropertyPathTestObject_SetStruct) == 0x000008, "Wrong alignment on PropertyPathTestObject_SetStruct"); \ +static_assert(sizeof(PropertyPathTestObject_SetStruct) == 0x000050, "Wrong size on PropertyPathTestObject_SetStruct"); \ +static_assert(offsetof(PropertyPathTestObject_SetStruct, InStruct) == 0x000000, "Member 'PropertyPathTestObject_SetStruct::InStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_SetStructConstRef \ +static_assert(alignof(PropertyPathTestObject_SetStructConstRef) == 0x000008, "Wrong alignment on PropertyPathTestObject_SetStructConstRef"); \ +static_assert(sizeof(PropertyPathTestObject_SetStructConstRef) == 0x000050, "Wrong size on PropertyPathTestObject_SetStructConstRef"); \ +static_assert(offsetof(PropertyPathTestObject_SetStructConstRef, InStruct) == 0x000000, "Member 'PropertyPathTestObject_SetStructConstRef::InStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_SetStructRef \ +static_assert(alignof(PropertyPathTestObject_SetStructRef) == 0x000008, "Wrong alignment on PropertyPathTestObject_SetStructRef"); \ +static_assert(sizeof(PropertyPathTestObject_SetStructRef) == 0x000050, "Wrong size on PropertyPathTestObject_SetStructRef"); \ +static_assert(offsetof(PropertyPathTestObject_SetStructRef, InStruct) == 0x000000, "Member 'PropertyPathTestObject_SetStructRef::InStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_GetFloat \ +static_assert(alignof(PropertyPathTestObject_GetFloat) == 0x000004, "Wrong alignment on PropertyPathTestObject_GetFloat"); \ +static_assert(sizeof(PropertyPathTestObject_GetFloat) == 0x000004, "Wrong size on PropertyPathTestObject_GetFloat"); \ +static_assert(offsetof(PropertyPathTestObject_GetFloat, ReturnValue) == 0x000000, "Member 'PropertyPathTestObject_GetFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_GetStruct \ +static_assert(alignof(PropertyPathTestObject_GetStruct) == 0x000008, "Wrong alignment on PropertyPathTestObject_GetStruct"); \ +static_assert(sizeof(PropertyPathTestObject_GetStruct) == 0x000050, "Wrong size on PropertyPathTestObject_GetStruct"); \ +static_assert(offsetof(PropertyPathTestObject_GetStruct, ReturnValue) == 0x000000, "Member 'PropertyPathTestObject_GetStruct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_GetStructConstRef \ +static_assert(alignof(PropertyPathTestObject_GetStructConstRef) == 0x000008, "Wrong alignment on PropertyPathTestObject_GetStructConstRef"); \ +static_assert(sizeof(PropertyPathTestObject_GetStructConstRef) == 0x000050, "Wrong size on PropertyPathTestObject_GetStructConstRef"); \ +static_assert(offsetof(PropertyPathTestObject_GetStructConstRef, ReturnValue) == 0x000000, "Member 'PropertyPathTestObject_GetStructConstRef::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyPathTestObject_GetStructRef \ +static_assert(alignof(PropertyPathTestObject_GetStructRef) == 0x000008, "Wrong alignment on PropertyPathTestObject_GetStructRef"); \ +static_assert(sizeof(PropertyPathTestObject_GetStructRef) == 0x000050, "Wrong size on PropertyPathTestObject_GetStructRef"); \ +static_assert(offsetof(PropertyPathTestObject_GetStructRef, ReturnValue) == 0x000000, "Member 'PropertyPathTestObject_GetStructRef::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPropertyPathTestObject \ +static_assert(alignof(UPropertyPathTestObject) == 0x000008, "Wrong alignment on UPropertyPathTestObject"); \ +static_assert(sizeof(UPropertyPathTestObject) == 0x000150, "Wrong size on UPropertyPathTestObject"); \ +static_assert(offsetof(UPropertyPathTestObject, Bool) == 0x000028, "Member 'UPropertyPathTestObject::Bool' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, EnumOne) == 0x000029, "Member 'UPropertyPathTestObject::EnumOne' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, EnumTwo) == 0x00002A, "Member 'UPropertyPathTestObject::EnumTwo' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, EnumThree) == 0x00002B, "Member 'UPropertyPathTestObject::EnumThree' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, EnumFour) == 0x00002C, "Member 'UPropertyPathTestObject::EnumFour' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, Integer) == 0x000030, "Member 'UPropertyPathTestObject::Integer' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, String) == 0x000038, "Member 'UPropertyPathTestObject::String' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, float_0) == 0x000048, "Member 'UPropertyPathTestObject::float_0' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, Struct) == 0x000050, "Member 'UPropertyPathTestObject::Struct' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, StructRef) == 0x0000A0, "Member 'UPropertyPathTestObject::StructRef' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, StructConstRef) == 0x0000F0, "Member 'UPropertyPathTestObject::StructConstRef' has a wrong offset!"); \ +static_assert(offsetof(UPropertyPathTestObject, InnerObject) == 0x000140, "Member 'UPropertyPathTestObject::InnerObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades \ +static_assert(alignof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades) == 0x000008, "Wrong alignment on SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades"); \ +static_assert(sizeof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades) == 0x000068, "Wrong size on SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, EntryPoint) == 0x000000, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, Temp_int_Array_Index_Variable) == 0x000008, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_Array_Get_Item) == 0x000010, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000038, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, K2Node_Event_InAutomata) == 0x000040, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, K2Node_Event_InState) == 0x000048, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, K2Node_DynamicCast_AsBP_Grenade_Spawner) == 0x000050, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::K2Node_DynamicCast_AsBP_Grenade_Spawner' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, Temp_int_Loop_Counter_Variable) == 0x00005C, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades, CallFunc_Add_IntInt_ReturnValue) == 0x000064, "Member 'SpawnGrenades_C_ExecuteUbergraph_SpawnGrenades::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnGrenades_C_ReceiveExecute \ +static_assert(alignof(SpawnGrenades_C_ReceiveExecute) == 0x000008, "Wrong alignment on SpawnGrenades_C_ReceiveExecute"); \ +static_assert(sizeof(SpawnGrenades_C_ReceiveExecute) == 0x000010, "Wrong size on SpawnGrenades_C_ReceiveExecute"); \ +static_assert(offsetof(SpawnGrenades_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SpawnGrenades_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnGrenades_C_ReceiveExecute, InState) == 0x000008, "Member 'SpawnGrenades_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpawnGrenades_C \ +static_assert(alignof(USpawnGrenades_C) == 0x000008, "Wrong alignment on USpawnGrenades_C"); \ +static_assert(sizeof(USpawnGrenades_C) == 0x0000A8, "Wrong size on USpawnGrenades_C"); \ +static_assert(offsetof(USpawnGrenades_C, UberGraphFrame) == 0x000088, "Member 'USpawnGrenades_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USpawnGrenades_C, Enabled) == 0x000090, "Member 'USpawnGrenades_C::Enabled' has a wrong offset!"); \ +static_assert(offsetof(USpawnGrenades_C, GrenadeSpawn) == 0x000098, "Member 'USpawnGrenades_C::GrenadeSpawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_RestoreBlood_C \ +static_assert(alignof(UGE_RestoreBlood_C) == 0x000008, "Wrong alignment on UGE_RestoreBlood_C"); \ +static_assert(sizeof(UGE_RestoreBlood_C) == 0x000A70, "Wrong size on UGE_RestoreBlood_C"); \ + +#define DUMPER7_ASSERTS_FSoundGeneratorOutput \ +static_assert(alignof(FSoundGeneratorOutput) == 0x000004, "Wrong alignment on FSoundGeneratorOutput"); \ +static_assert(sizeof(FSoundGeneratorOutput) == 0x000008, "Wrong size on FSoundGeneratorOutput"); \ +static_assert(offsetof(FSoundGeneratorOutput, Name) == 0x000000, "Member 'FSoundGeneratorOutput::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioParameter \ +static_assert(alignof(FAudioParameter) == 0x000008, "Wrong alignment on FAudioParameter"); \ +static_assert(sizeof(FAudioParameter) == 0x0000A0, "Wrong size on FAudioParameter"); \ +static_assert(offsetof(FAudioParameter, ParamName) == 0x000000, "Member 'FAudioParameter::ParamName' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, FloatParam) == 0x000008, "Member 'FAudioParameter::FloatParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, BoolParam) == 0x00000C, "Member 'FAudioParameter::BoolParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, IntParam) == 0x000010, "Member 'FAudioParameter::IntParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ObjectParam) == 0x000018, "Member 'FAudioParameter::ObjectParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, StringParam) == 0x000020, "Member 'FAudioParameter::StringParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ArrayFloatParam) == 0x000030, "Member 'FAudioParameter::ArrayFloatParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ArrayBoolParam) == 0x000040, "Member 'FAudioParameter::ArrayBoolParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ArrayIntParam) == 0x000050, "Member 'FAudioParameter::ArrayIntParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ArrayObjectParam) == 0x000060, "Member 'FAudioParameter::ArrayObjectParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ArrayStringParam) == 0x000070, "Member 'FAudioParameter::ArrayStringParam' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, ParamType) == 0x000080, "Member 'FAudioParameter::ParamType' has a wrong offset!"); \ +static_assert(offsetof(FAudioParameter, TypeName) == 0x000084, "Member 'FAudioParameter::TypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpatializationPluginSourceSettingsBase \ +static_assert(alignof(USpatializationPluginSourceSettingsBase) == 0x000008, "Wrong alignment on USpatializationPluginSourceSettingsBase"); \ +static_assert(sizeof(USpatializationPluginSourceSettingsBase) == 0x000028, "Wrong size on USpatializationPluginSourceSettingsBase"); \ + +#define DUMPER7_ASSERTS_USourceDataOverridePluginSourceSettingsBase \ +static_assert(alignof(USourceDataOverridePluginSourceSettingsBase) == 0x000008, "Wrong alignment on USourceDataOverridePluginSourceSettingsBase"); \ +static_assert(sizeof(USourceDataOverridePluginSourceSettingsBase) == 0x000028, "Wrong size on USourceDataOverridePluginSourceSettingsBase"); \ + +#define DUMPER7_ASSERTS_UOcclusionPluginSourceSettingsBase \ +static_assert(alignof(UOcclusionPluginSourceSettingsBase) == 0x000008, "Wrong alignment on UOcclusionPluginSourceSettingsBase"); \ +static_assert(sizeof(UOcclusionPluginSourceSettingsBase) == 0x000028, "Wrong size on UOcclusionPluginSourceSettingsBase"); \ + +#define DUMPER7_ASSERTS_UReverbPluginSourceSettingsBase \ +static_assert(alignof(UReverbPluginSourceSettingsBase) == 0x000008, "Wrong alignment on UReverbPluginSourceSettingsBase"); \ +static_assert(sizeof(UReverbPluginSourceSettingsBase) == 0x000028, "Wrong size on UReverbPluginSourceSettingsBase"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetBoolArrayParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetBoolArrayParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetBoolArrayParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetBoolArrayParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetBoolArrayParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetBoolArrayParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetBoolArrayParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetBoolArrayParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetBoolArrayParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetBoolParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetBoolParameter) == 0x000004, "Wrong alignment on AudioParameterControllerInterface_SetBoolParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetBoolParameter) == 0x00000C, "Wrong size on AudioParameterControllerInterface_SetBoolParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetBoolParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetBoolParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetBoolParameter, InBool) == 0x000008, "Member 'AudioParameterControllerInterface_SetBoolParameter::InBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetFloatArrayParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetFloatArrayParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetFloatArrayParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetFloatArrayParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetFloatArrayParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetFloatArrayParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetFloatArrayParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetFloatArrayParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetFloatArrayParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetFloatParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetFloatParameter) == 0x000004, "Wrong alignment on AudioParameterControllerInterface_SetFloatParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetFloatParameter) == 0x00000C, "Wrong size on AudioParameterControllerInterface_SetFloatParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetFloatParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetFloatParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetFloatParameter, InFloat) == 0x000008, "Member 'AudioParameterControllerInterface_SetFloatParameter::InFloat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetIntArrayParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetIntArrayParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetIntArrayParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetIntArrayParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetIntArrayParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetIntArrayParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetIntArrayParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetIntArrayParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetIntArrayParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetIntParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetIntParameter) == 0x000004, "Wrong alignment on AudioParameterControllerInterface_SetIntParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetIntParameter) == 0x00000C, "Wrong size on AudioParameterControllerInterface_SetIntParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetIntParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetIntParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetIntParameter, inInt) == 0x000008, "Member 'AudioParameterControllerInterface_SetIntParameter::inInt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetObjectArrayParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetObjectArrayParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetObjectArrayParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetObjectArrayParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetObjectArrayParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetObjectArrayParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetObjectArrayParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetObjectArrayParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetObjectArrayParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetObjectParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetObjectParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetObjectParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetObjectParameter) == 0x000010, "Wrong size on AudioParameterControllerInterface_SetObjectParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetObjectParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetObjectParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetObjectParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetObjectParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetParameters_Blueprint \ +static_assert(alignof(AudioParameterControllerInterface_SetParameters_Blueprint) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetParameters_Blueprint"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetParameters_Blueprint) == 0x000010, "Wrong size on AudioParameterControllerInterface_SetParameters_Blueprint"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetParameters_Blueprint, InParameters) == 0x000000, "Member 'AudioParameterControllerInterface_SetParameters_Blueprint::InParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetStringArrayParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetStringArrayParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetStringArrayParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetStringArrayParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetStringArrayParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetStringArrayParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetStringArrayParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetStringArrayParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetStringArrayParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetStringParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetStringParameter) == 0x000008, "Wrong alignment on AudioParameterControllerInterface_SetStringParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetStringParameter) == 0x000018, "Wrong size on AudioParameterControllerInterface_SetStringParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetStringParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetStringParameter::InName' has a wrong offset!"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetStringParameter, InValue) == 0x000008, "Member 'AudioParameterControllerInterface_SetStringParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioParameterControllerInterface_SetTriggerParameter \ +static_assert(alignof(AudioParameterControllerInterface_SetTriggerParameter) == 0x000004, "Wrong alignment on AudioParameterControllerInterface_SetTriggerParameter"); \ +static_assert(sizeof(AudioParameterControllerInterface_SetTriggerParameter) == 0x000008, "Wrong size on AudioParameterControllerInterface_SetTriggerParameter"); \ +static_assert(offsetof(AudioParameterControllerInterface_SetTriggerParameter, InName) == 0x000000, "Member 'AudioParameterControllerInterface_SetTriggerParameter::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAudioParameterControllerInterface \ +static_assert(alignof(IAudioParameterControllerInterface) == 0x000001, "Wrong alignment on IAudioParameterControllerInterface"); \ +static_assert(sizeof(IAudioParameterControllerInterface) == 0x000001, "Wrong size on IAudioParameterControllerInterface"); \ + +#define DUMPER7_ASSERTS_UAudioCodecEncoderSettings \ +static_assert(alignof(UAudioCodecEncoderSettings) == 0x000008, "Wrong alignment on UAudioCodecEncoderSettings"); \ +static_assert(sizeof(UAudioCodecEncoderSettings) == 0x000030, "Wrong size on UAudioCodecEncoderSettings"); \ +static_assert(offsetof(UAudioCodecEncoderSettings, Version) == 0x000028, "Member 'UAudioCodecEncoderSettings::Version' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioEndpointSettingsBase \ +static_assert(alignof(UAudioEndpointSettingsBase) == 0x000008, "Wrong alignment on UAudioEndpointSettingsBase"); \ +static_assert(sizeof(UAudioEndpointSettingsBase) == 0x000028, "Wrong size on UAudioEndpointSettingsBase"); \ + +#define DUMPER7_ASSERTS_UDummyEndpointSettings \ +static_assert(alignof(UDummyEndpointSettings) == 0x000008, "Wrong alignment on UDummyEndpointSettings"); \ +static_assert(sizeof(UDummyEndpointSettings) == 0x000028, "Wrong size on UDummyEndpointSettings"); \ + +#define DUMPER7_ASSERTS_USoundModulatorBase \ +static_assert(alignof(USoundModulatorBase) == 0x000008, "Wrong alignment on USoundModulatorBase"); \ +static_assert(sizeof(USoundModulatorBase) == 0x000030, "Wrong size on USoundModulatorBase"); \ + +#define DUMPER7_ASSERTS_USoundfieldEndpointSettingsBase \ +static_assert(alignof(USoundfieldEndpointSettingsBase) == 0x000008, "Wrong alignment on USoundfieldEndpointSettingsBase"); \ +static_assert(sizeof(USoundfieldEndpointSettingsBase) == 0x000028, "Wrong size on USoundfieldEndpointSettingsBase"); \ + +#define DUMPER7_ASSERTS_USoundfieldEncodingSettingsBase \ +static_assert(alignof(USoundfieldEncodingSettingsBase) == 0x000008, "Wrong alignment on USoundfieldEncodingSettingsBase"); \ +static_assert(sizeof(USoundfieldEncodingSettingsBase) == 0x000028, "Wrong size on USoundfieldEncodingSettingsBase"); \ + +#define DUMPER7_ASSERTS_USoundfieldEffectSettingsBase \ +static_assert(alignof(USoundfieldEffectSettingsBase) == 0x000008, "Wrong alignment on USoundfieldEffectSettingsBase"); \ +static_assert(sizeof(USoundfieldEffectSettingsBase) == 0x000028, "Wrong size on USoundfieldEffectSettingsBase"); \ + +#define DUMPER7_ASSERTS_USoundfieldEffectBase \ +static_assert(alignof(USoundfieldEffectBase) == 0x000008, "Wrong alignment on USoundfieldEffectBase"); \ +static_assert(sizeof(USoundfieldEffectBase) == 0x000030, "Wrong size on USoundfieldEffectBase"); \ +static_assert(offsetof(USoundfieldEffectBase, Settings) == 0x000028, "Member 'USoundfieldEffectBase::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWaveformTransformationBase \ +static_assert(alignof(UWaveformTransformationBase) == 0x000008, "Wrong alignment on UWaveformTransformationBase"); \ +static_assert(sizeof(UWaveformTransformationBase) == 0x000028, "Wrong size on UWaveformTransformationBase"); \ + +#define DUMPER7_ASSERTS_UWaveformTransformationChain \ +static_assert(alignof(UWaveformTransformationChain) == 0x000008, "Wrong alignment on UWaveformTransformationChain"); \ +static_assert(sizeof(UWaveformTransformationChain) == 0x000038, "Wrong size on UWaveformTransformationChain"); \ +static_assert(offsetof(UWaveformTransformationChain, Transformations) == 0x000028, "Member 'UWaveformTransformationChain::Transformations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve \ +static_assert(alignof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve) == 0x000008, "Wrong alignment on BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve"); \ +static_assert(sizeof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve) == 0x000178, "Wrong size on BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, EntryPoint) == 0x000000, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_1) == 0x000018, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_3) == 0x000028, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_3) == 0x00002C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_3) == 0x000030, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_4) == 0x000034, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_4) == 0x000038, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_5) == 0x00003C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_4) == 0x000040, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_5) == 0x000044, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_5) == 0x000048, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_GetAttachedActors_OutActors) == 0x000058, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item) == 0x000068, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue) == 0x000070, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue) == 0x000074, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue) == 0x000075, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000078, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_1) == 0x000088, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_1) == 0x000090, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_GetMaterial_ReturnValue) == 0x000098, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_GetMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000A0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue_1) == 0x0000A1, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x0000A8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Add_ReturnValue) == 0x0000B0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_2) == 0x0000B4, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue_2) == 0x0000B8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_2) == 0x0000C0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue_3) == 0x0000C8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_3) == 0x0000CC, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x0000D0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000D8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_6) == 0x0000DC, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000E0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_6) == 0x0000E4, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Loop_Counter_Variable_7) == 0x0000E8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Loop_Counter_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_4) == 0x0000EC, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_3) == 0x0000F0, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_4) == 0x0000F1, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Add_IntInt_ReturnValue_7) == 0x0000F4, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_6) == 0x0000F8, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_3) == 0x000100, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_4) == 0x000108, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_5) == 0x000110, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue_4) == 0x000118, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_5) == 0x00011C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_5) == 0x000120, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_6) == 0x000124, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_6) == 0x000128, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, Temp_int_Array_Index_Variable_7) == 0x00012C, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::Temp_int_Array_Index_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_6) == 0x000130, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_IsValid_ReturnValue_5) == 0x000138, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_GetAttachedActors_OutActors_1) == 0x000140, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_GetAttachedActors_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Length_ReturnValue_7) == 0x000150, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Array_Get_Item_7) == 0x000158, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_Less_IntInt_ReturnValue_7) == 0x000160, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, K2Node_DynamicCast_AsBP_Custom_Husk_HS_VFX_Performance) == 0x000168, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::K2Node_DynamicCast_AsBP_Custom_Husk_HS_VFX_Performance' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, K2Node_DynamicCast_bSuccess) == 0x000170, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000174, "Member 'BP_HuskDissolve_C_ExecuteUbergraph_BP_HuskDissolve::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_HuskDissolve_C \ +static_assert(alignof(ABP_HuskDissolve_C) == 0x000008, "Wrong alignment on ABP_HuskDissolve_C"); \ +static_assert(sizeof(ABP_HuskDissolve_C) == 0x000340, "Wrong size on ABP_HuskDissolve_C"); \ +static_assert(offsetof(ABP_HuskDissolve_C, UberGraphFrame) == 0x000298, "Member 'ABP_HuskDissolve_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, TextRender) == 0x0002A0, "Member 'ABP_HuskDissolve_C::TextRender' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_HuskDissolve_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, Timeline_Alpha_D87FD500469FD36A25BD67935E368149) == 0x0002B0, "Member 'ABP_HuskDissolve_C::Timeline_Alpha_D87FD500469FD36A25BD67935E368149' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, Timeline__Direction_D87FD500469FD36A25BD67935E368149) == 0x0002B4, "Member 'ABP_HuskDissolve_C::Timeline__Direction_D87FD500469FD36A25BD67935E368149' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, Timeline) == 0x0002B8, "Member 'ABP_HuskDissolve_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DissolveAmountFrom) == 0x0002C0, "Member 'ABP_HuskDissolve_C::DissolveAmountFrom' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DisolveAmountTo) == 0x0002C8, "Member 'ABP_HuskDissolve_C::DisolveAmountTo' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DisolveTime) == 0x0002D0, "Member 'ABP_HuskDissolve_C::DisolveTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, TargetMaterialFoliage) == 0x0002D8, "Member 'ABP_HuskDissolve_C::TargetMaterialFoliage' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, FoliageActor) == 0x0002E0, "Member 'ABP_HuskDissolve_C::FoliageActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DynamicMaterialFoliage) == 0x0002E8, "Member 'ABP_HuskDissolve_C::DynamicMaterialFoliage' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, MatchingFoliageComponenets) == 0x0002F0, "Member 'ABP_HuskDissolve_C::MatchingFoliageComponenets' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, TargetMaterialStatic) == 0x000300, "Member 'ABP_HuskDissolve_C::TargetMaterialStatic' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, StaticMeshActors) == 0x000308, "Member 'ABP_HuskDissolve_C::StaticMeshActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, DynamicMaterialStatic) == 0x000318, "Member 'ABP_HuskDissolve_C::DynamicMaterialStatic' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, StartHidden) == 0x000320, "Member 'ABP_HuskDissolve_C::StartHidden' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, Child_Actors) == 0x000328, "Member 'ABP_HuskDissolve_C::Child_Actors' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, MPC_HuskFallRoom) == 0x000330, "Member 'ABP_HuskDissolve_C::MPC_HuskFallRoom' has a wrong offset!"); \ +static_assert(offsetof(ABP_HuskDissolve_C, Start_Dead) == 0x000338, "Member 'ABP_HuskDissolve_C::Start_Dead' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScriptTypedElementHandle \ +static_assert(alignof(FScriptTypedElementHandle) == 0x000008, "Wrong alignment on FScriptTypedElementHandle"); \ +static_assert(sizeof(FScriptTypedElementHandle) == 0x000008, "Wrong size on FScriptTypedElementHandle"); \ + +#define DUMPER7_ASSERTS_FTypedElementDataStorageColumn \ +static_assert(alignof(FTypedElementDataStorageColumn) == 0x000001, "Wrong alignment on FTypedElementDataStorageColumn"); \ +static_assert(sizeof(FTypedElementDataStorageColumn) == 0x000001, "Wrong size on FTypedElementDataStorageColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementLabelColumn \ +static_assert(alignof(FTypedElementLabelColumn) == 0x000008, "Wrong alignment on FTypedElementLabelColumn"); \ +static_assert(sizeof(FTypedElementLabelColumn) == 0x000010, "Wrong size on FTypedElementLabelColumn"); \ +static_assert(offsetof(FTypedElementLabelColumn, Label) == 0x000000, "Member 'FTypedElementLabelColumn::Label' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementUObjectColumn \ +static_assert(alignof(FTypedElementUObjectColumn) == 0x000004, "Wrong alignment on FTypedElementUObjectColumn"); \ +static_assert(sizeof(FTypedElementUObjectColumn) == 0x000008, "Wrong size on FTypedElementUObjectColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementExternalObjectColumn \ +static_assert(alignof(FTypedElementExternalObjectColumn) == 0x000008, "Wrong alignment on FTypedElementExternalObjectColumn"); \ +static_assert(sizeof(FTypedElementExternalObjectColumn) == 0x000008, "Wrong size on FTypedElementExternalObjectColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementDataStorageTag \ +static_assert(alignof(FTypedElementDataStorageTag) == 0x000001, "Wrong alignment on FTypedElementDataStorageTag"); \ +static_assert(sizeof(FTypedElementDataStorageTag) == 0x000001, "Wrong size on FTypedElementDataStorageTag"); \ + +#define DUMPER7_ASSERTS_FTypedElementWidgetConstructor \ +static_assert(alignof(FTypedElementWidgetConstructor) == 0x000008, "Wrong alignment on FTypedElementWidgetConstructor"); \ +static_assert(sizeof(FTypedElementWidgetConstructor) == 0x000010, "Wrong size on FTypedElementWidgetConstructor"); \ + +#define DUMPER7_ASSERTS_FTypedElementLabelHashColumn \ +static_assert(alignof(FTypedElementLabelHashColumn) == 0x000008, "Wrong alignment on FTypedElementLabelHashColumn"); \ +static_assert(sizeof(FTypedElementLabelHashColumn) == 0x000008, "Wrong size on FTypedElementLabelHashColumn"); \ +static_assert(offsetof(FTypedElementLabelHashColumn, LabelHash) == 0x000000, "Member 'FTypedElementLabelHashColumn::LabelHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScriptTypedElementListProxy \ +static_assert(alignof(FScriptTypedElementListProxy) == 0x000008, "Wrong alignment on FScriptTypedElementListProxy"); \ +static_assert(sizeof(FScriptTypedElementListProxy) == 0x000010, "Wrong size on FScriptTypedElementListProxy"); \ + +#define DUMPER7_ASSERTS_FTypedElementSyncBackToWorldTag \ +static_assert(alignof(FTypedElementSyncBackToWorldTag) == 0x000001, "Wrong alignment on FTypedElementSyncBackToWorldTag"); \ +static_assert(sizeof(FTypedElementSyncBackToWorldTag) == 0x000001, "Wrong size on FTypedElementSyncBackToWorldTag"); \ + +#define DUMPER7_ASSERTS_FTypedElementSyncFromWorldTag \ +static_assert(alignof(FTypedElementSyncFromWorldTag) == 0x000001, "Wrong alignment on FTypedElementSyncFromWorldTag"); \ +static_assert(sizeof(FTypedElementSyncFromWorldTag) == 0x000001, "Wrong size on FTypedElementSyncFromWorldTag"); \ + +#define DUMPER7_ASSERTS_FTypedElementRowReferenceColumn \ +static_assert(alignof(FTypedElementRowReferenceColumn) == 0x000008, "Wrong alignment on FTypedElementRowReferenceColumn"); \ +static_assert(sizeof(FTypedElementRowReferenceColumn) == 0x000008, "Wrong size on FTypedElementRowReferenceColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementPackagePathColumn \ +static_assert(alignof(FTypedElementPackagePathColumn) == 0x000008, "Wrong alignment on FTypedElementPackagePathColumn"); \ +static_assert(sizeof(FTypedElementPackagePathColumn) == 0x000010, "Wrong size on FTypedElementPackagePathColumn"); \ +static_assert(offsetof(FTypedElementPackagePathColumn, Path) == 0x000000, "Member 'FTypedElementPackagePathColumn::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementPackageLoadedPathColumn \ +static_assert(alignof(FTypedElementPackageLoadedPathColumn) == 0x000004, "Wrong alignment on FTypedElementPackageLoadedPathColumn"); \ +static_assert(sizeof(FTypedElementPackageLoadedPathColumn) == 0x00000C, "Wrong size on FTypedElementPackageLoadedPathColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementSelectionColumn \ +static_assert(alignof(FTypedElementSelectionColumn) == 0x000001, "Wrong alignment on FTypedElementSelectionColumn"); \ +static_assert(sizeof(FTypedElementSelectionColumn) == 0x000001, "Wrong size on FTypedElementSelectionColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementSlateWidgetReferenceColumn \ +static_assert(alignof(FTypedElementSlateWidgetReferenceColumn) == 0x000008, "Wrong alignment on FTypedElementSlateWidgetReferenceColumn"); \ +static_assert(sizeof(FTypedElementSlateWidgetReferenceColumn) == 0x000010, "Wrong size on FTypedElementSlateWidgetReferenceColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementSlateWidgetReferenceDeletesRowTag \ +static_assert(alignof(FTypedElementSlateWidgetReferenceDeletesRowTag) == 0x000001, "Wrong alignment on FTypedElementSlateWidgetReferenceDeletesRowTag"); \ +static_assert(sizeof(FTypedElementSlateWidgetReferenceDeletesRowTag) == 0x000001, "Wrong size on FTypedElementSlateWidgetReferenceDeletesRowTag"); \ + +#define DUMPER7_ASSERTS_FTypedElementLocalTransformColumn \ +static_assert(alignof(FTypedElementLocalTransformColumn) == 0x000010, "Wrong alignment on FTypedElementLocalTransformColumn"); \ +static_assert(sizeof(FTypedElementLocalTransformColumn) == 0x000060, "Wrong size on FTypedElementLocalTransformColumn"); \ +static_assert(offsetof(FTypedElementLocalTransformColumn, Transform) == 0x000000, "Member 'FTypedElementLocalTransformColumn::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementClassTypeInfoColumn \ +static_assert(alignof(FTypedElementClassTypeInfoColumn) == 0x000004, "Wrong alignment on FTypedElementClassTypeInfoColumn"); \ +static_assert(sizeof(FTypedElementClassTypeInfoColumn) == 0x000008, "Wrong size on FTypedElementClassTypeInfoColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementScriptStructTypeInfoColumn \ +static_assert(alignof(FTypedElementScriptStructTypeInfoColumn) == 0x000004, "Wrong alignment on FTypedElementScriptStructTypeInfoColumn"); \ +static_assert(sizeof(FTypedElementScriptStructTypeInfoColumn) == 0x000008, "Wrong size on FTypedElementScriptStructTypeInfoColumn"); \ + +#define DUMPER7_ASSERTS_FTypedElementU32IntValueCacheColumn \ +static_assert(alignof(FTypedElementU32IntValueCacheColumn) == 0x000004, "Wrong alignment on FTypedElementU32IntValueCacheColumn"); \ +static_assert(sizeof(FTypedElementU32IntValueCacheColumn) == 0x000004, "Wrong size on FTypedElementU32IntValueCacheColumn"); \ +static_assert(offsetof(FTypedElementU32IntValueCacheColumn, Value) == 0x000000, "Member 'FTypedElementU32IntValueCacheColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementI32IntValueCacheColumn \ +static_assert(alignof(FTypedElementI32IntValueCacheColumn) == 0x000004, "Wrong alignment on FTypedElementI32IntValueCacheColumn"); \ +static_assert(sizeof(FTypedElementI32IntValueCacheColumn) == 0x000004, "Wrong size on FTypedElementI32IntValueCacheColumn"); \ +static_assert(offsetof(FTypedElementI32IntValueCacheColumn, Value) == 0x000000, "Member 'FTypedElementI32IntValueCacheColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementU64IntValueCacheColumn \ +static_assert(alignof(FTypedElementU64IntValueCacheColumn) == 0x000008, "Wrong alignment on FTypedElementU64IntValueCacheColumn"); \ +static_assert(sizeof(FTypedElementU64IntValueCacheColumn) == 0x000008, "Wrong size on FTypedElementU64IntValueCacheColumn"); \ +static_assert(offsetof(FTypedElementU64IntValueCacheColumn, Value) == 0x000000, "Member 'FTypedElementU64IntValueCacheColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementI64IntValueCacheColumn \ +static_assert(alignof(FTypedElementI64IntValueCacheColumn) == 0x000008, "Wrong alignment on FTypedElementI64IntValueCacheColumn"); \ +static_assert(sizeof(FTypedElementI64IntValueCacheColumn) == 0x000008, "Wrong size on FTypedElementI64IntValueCacheColumn"); \ +static_assert(offsetof(FTypedElementI64IntValueCacheColumn, Value) == 0x000000, "Member 'FTypedElementI64IntValueCacheColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementFloatValueCacheColumn \ +static_assert(alignof(FTypedElementFloatValueCacheColumn) == 0x000004, "Wrong alignment on FTypedElementFloatValueCacheColumn"); \ +static_assert(sizeof(FTypedElementFloatValueCacheColumn) == 0x000004, "Wrong size on FTypedElementFloatValueCacheColumn"); \ +static_assert(offsetof(FTypedElementFloatValueCacheColumn, Value) == 0x000000, "Member 'FTypedElementFloatValueCacheColumn::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementViewportColorColumn \ +static_assert(alignof(FTypedElementViewportColorColumn) == 0x000001, "Wrong alignment on FTypedElementViewportColorColumn"); \ +static_assert(sizeof(FTypedElementViewportColorColumn) == 0x000001, "Wrong size on FTypedElementViewportColorColumn"); \ +static_assert(offsetof(FTypedElementViewportColorColumn, SelectionOutlineColorIndex) == 0x000000, "Member 'FTypedElementViewportColorColumn::SelectionOutlineColorIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementDataStorageCompatibilityInterface \ +static_assert(alignof(ITypedElementDataStorageCompatibilityInterface) == 0x000001, "Wrong alignment on ITypedElementDataStorageCompatibilityInterface"); \ +static_assert(sizeof(ITypedElementDataStorageCompatibilityInterface) == 0x000001, "Wrong size on ITypedElementDataStorageCompatibilityInterface"); \ + +#define DUMPER7_ASSERTS_UTypedElementDataStorageFactory \ +static_assert(alignof(UTypedElementDataStorageFactory) == 0x000008, "Wrong alignment on UTypedElementDataStorageFactory"); \ +static_assert(sizeof(UTypedElementDataStorageFactory) == 0x000028, "Wrong size on UTypedElementDataStorageFactory"); \ + +#define DUMPER7_ASSERTS_ITypedElementDataStorageInterface \ +static_assert(alignof(ITypedElementDataStorageInterface) == 0x000001, "Wrong alignment on ITypedElementDataStorageInterface"); \ +static_assert(sizeof(ITypedElementDataStorageInterface) == 0x000001, "Wrong size on ITypedElementDataStorageInterface"); \ + +#define DUMPER7_ASSERTS_ITypedElementDataStorageUiInterface \ +static_assert(alignof(ITypedElementDataStorageUiInterface) == 0x000001, "Wrong alignment on ITypedElementDataStorageUiInterface"); \ +static_assert(sizeof(ITypedElementDataStorageUiInterface) == 0x000001, "Wrong size on ITypedElementDataStorageUiInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementHandleLibrary_Equal \ +static_assert(alignof(TypedElementHandleLibrary_Equal) == 0x000008, "Wrong alignment on TypedElementHandleLibrary_Equal"); \ +static_assert(sizeof(TypedElementHandleLibrary_Equal) == 0x000018, "Wrong size on TypedElementHandleLibrary_Equal"); \ +static_assert(offsetof(TypedElementHandleLibrary_Equal, LHS) == 0x000000, "Member 'TypedElementHandleLibrary_Equal::LHS' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHandleLibrary_Equal, RHS) == 0x000008, "Member 'TypedElementHandleLibrary_Equal::RHS' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHandleLibrary_Equal, ReturnValue) == 0x000010, "Member 'TypedElementHandleLibrary_Equal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementHandleLibrary_IsSet \ +static_assert(alignof(TypedElementHandleLibrary_IsSet) == 0x000008, "Wrong alignment on TypedElementHandleLibrary_IsSet"); \ +static_assert(sizeof(TypedElementHandleLibrary_IsSet) == 0x000010, "Wrong size on TypedElementHandleLibrary_IsSet"); \ +static_assert(offsetof(TypedElementHandleLibrary_IsSet, ElementHandle) == 0x000000, "Member 'TypedElementHandleLibrary_IsSet::ElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHandleLibrary_IsSet, ReturnValue) == 0x000008, "Member 'TypedElementHandleLibrary_IsSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementHandleLibrary_NotEqual \ +static_assert(alignof(TypedElementHandleLibrary_NotEqual) == 0x000008, "Wrong alignment on TypedElementHandleLibrary_NotEqual"); \ +static_assert(sizeof(TypedElementHandleLibrary_NotEqual) == 0x000018, "Wrong size on TypedElementHandleLibrary_NotEqual"); \ +static_assert(offsetof(TypedElementHandleLibrary_NotEqual, LHS) == 0x000000, "Member 'TypedElementHandleLibrary_NotEqual::LHS' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHandleLibrary_NotEqual, RHS) == 0x000008, "Member 'TypedElementHandleLibrary_NotEqual::RHS' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHandleLibrary_NotEqual, ReturnValue) == 0x000010, "Member 'TypedElementHandleLibrary_NotEqual::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementHandleLibrary_Release \ +static_assert(alignof(TypedElementHandleLibrary_Release) == 0x000008, "Wrong alignment on TypedElementHandleLibrary_Release"); \ +static_assert(sizeof(TypedElementHandleLibrary_Release) == 0x000008, "Wrong size on TypedElementHandleLibrary_Release"); \ +static_assert(offsetof(TypedElementHandleLibrary_Release, ElementHandle) == 0x000000, "Member 'TypedElementHandleLibrary_Release::ElementHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementHandleLibrary \ +static_assert(alignof(UTypedElementHandleLibrary) == 0x000008, "Wrong alignment on UTypedElementHandleLibrary"); \ +static_assert(sizeof(UTypedElementHandleLibrary) == 0x000028, "Wrong size on UTypedElementHandleLibrary"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Add \ +static_assert(alignof(TypedElementListLibrary_Add) == 0x000008, "Wrong alignment on TypedElementListLibrary_Add"); \ +static_assert(sizeof(TypedElementListLibrary_Add) == 0x000020, "Wrong size on TypedElementListLibrary_Add"); \ +static_assert(offsetof(TypedElementListLibrary_Add, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Add::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Add, ElementHandle) == 0x000010, "Member 'TypedElementListLibrary_Add::ElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Add, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_Add::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Append \ +static_assert(alignof(TypedElementListLibrary_Append) == 0x000008, "Wrong alignment on TypedElementListLibrary_Append"); \ +static_assert(sizeof(TypedElementListLibrary_Append) == 0x000020, "Wrong size on TypedElementListLibrary_Append"); \ +static_assert(offsetof(TypedElementListLibrary_Append, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Append::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Append, ElementHandles) == 0x000010, "Member 'TypedElementListLibrary_Append::ElementHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_AppendList \ +static_assert(alignof(TypedElementListLibrary_AppendList) == 0x000008, "Wrong alignment on TypedElementListLibrary_AppendList"); \ +static_assert(sizeof(TypedElementListLibrary_AppendList) == 0x000020, "Wrong size on TypedElementListLibrary_AppendList"); \ +static_assert(offsetof(TypedElementListLibrary_AppendList, ElementList) == 0x000000, "Member 'TypedElementListLibrary_AppendList::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_AppendList, OtherElementList) == 0x000010, "Member 'TypedElementListLibrary_AppendList::OtherElementList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Clone \ +static_assert(alignof(TypedElementListLibrary_Clone) == 0x000008, "Wrong alignment on TypedElementListLibrary_Clone"); \ +static_assert(sizeof(TypedElementListLibrary_Clone) == 0x000020, "Wrong size on TypedElementListLibrary_Clone"); \ +static_assert(offsetof(TypedElementListLibrary_Clone, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Clone::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Clone, ReturnValue) == 0x000010, "Member 'TypedElementListLibrary_Clone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Contains \ +static_assert(alignof(TypedElementListLibrary_Contains) == 0x000008, "Wrong alignment on TypedElementListLibrary_Contains"); \ +static_assert(sizeof(TypedElementListLibrary_Contains) == 0x000020, "Wrong size on TypedElementListLibrary_Contains"); \ +static_assert(offsetof(TypedElementListLibrary_Contains, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Contains::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Contains, ElementHandle) == 0x000010, "Member 'TypedElementListLibrary_Contains::ElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Contains, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_Contains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_CountElements \ +static_assert(alignof(TypedElementListLibrary_CountElements) == 0x000008, "Wrong alignment on TypedElementListLibrary_CountElements"); \ +static_assert(sizeof(TypedElementListLibrary_CountElements) == 0x000020, "Wrong size on TypedElementListLibrary_CountElements"); \ +static_assert(offsetof(TypedElementListLibrary_CountElements, ElementList) == 0x000000, "Member 'TypedElementListLibrary_CountElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_CountElements, BaseInterfaceType) == 0x000010, "Member 'TypedElementListLibrary_CountElements::BaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_CountElements, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_CountElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_CountElementsOfType \ +static_assert(alignof(TypedElementListLibrary_CountElementsOfType) == 0x000008, "Wrong alignment on TypedElementListLibrary_CountElementsOfType"); \ +static_assert(sizeof(TypedElementListLibrary_CountElementsOfType) == 0x000020, "Wrong size on TypedElementListLibrary_CountElementsOfType"); \ +static_assert(offsetof(TypedElementListLibrary_CountElementsOfType, ElementList) == 0x000000, "Member 'TypedElementListLibrary_CountElementsOfType::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_CountElementsOfType, ElementTypeName) == 0x000010, "Member 'TypedElementListLibrary_CountElementsOfType::ElementTypeName' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_CountElementsOfType, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_CountElementsOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_CreateScriptElementList \ +static_assert(alignof(TypedElementListLibrary_CreateScriptElementList) == 0x000008, "Wrong alignment on TypedElementListLibrary_CreateScriptElementList"); \ +static_assert(sizeof(TypedElementListLibrary_CreateScriptElementList) == 0x000018, "Wrong size on TypedElementListLibrary_CreateScriptElementList"); \ +static_assert(offsetof(TypedElementListLibrary_CreateScriptElementList, Registry) == 0x000000, "Member 'TypedElementListLibrary_CreateScriptElementList::Registry' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_CreateScriptElementList, ReturnValue) == 0x000008, "Member 'TypedElementListLibrary_CreateScriptElementList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Empty \ +static_assert(alignof(TypedElementListLibrary_Empty) == 0x000008, "Wrong alignment on TypedElementListLibrary_Empty"); \ +static_assert(sizeof(TypedElementListLibrary_Empty) == 0x000018, "Wrong size on TypedElementListLibrary_Empty"); \ +static_assert(offsetof(TypedElementListLibrary_Empty, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Empty::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Empty, Slack) == 0x000010, "Member 'TypedElementListLibrary_Empty::Slack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_GetElementHandleAt \ +static_assert(alignof(TypedElementListLibrary_GetElementHandleAt) == 0x000008, "Wrong alignment on TypedElementListLibrary_GetElementHandleAt"); \ +static_assert(sizeof(TypedElementListLibrary_GetElementHandleAt) == 0x000020, "Wrong size on TypedElementListLibrary_GetElementHandleAt"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandleAt, ElementList) == 0x000000, "Member 'TypedElementListLibrary_GetElementHandleAt::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandleAt, Index_0) == 0x000010, "Member 'TypedElementListLibrary_GetElementHandleAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandleAt, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_GetElementHandleAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_GetElementHandles \ +static_assert(alignof(TypedElementListLibrary_GetElementHandles) == 0x000008, "Wrong alignment on TypedElementListLibrary_GetElementHandles"); \ +static_assert(sizeof(TypedElementListLibrary_GetElementHandles) == 0x000028, "Wrong size on TypedElementListLibrary_GetElementHandles"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandles, ElementList) == 0x000000, "Member 'TypedElementListLibrary_GetElementHandles::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandles, BaseInterfaceType) == 0x000010, "Member 'TypedElementListLibrary_GetElementHandles::BaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementHandles, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_GetElementHandles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_GetElementInterface \ +static_assert(alignof(TypedElementListLibrary_GetElementInterface) == 0x000008, "Wrong alignment on TypedElementListLibrary_GetElementInterface"); \ +static_assert(sizeof(TypedElementListLibrary_GetElementInterface) == 0x000028, "Wrong size on TypedElementListLibrary_GetElementInterface"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementInterface, ElementList) == 0x000000, "Member 'TypedElementListLibrary_GetElementInterface::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementInterface, ElementHandle) == 0x000010, "Member 'TypedElementListLibrary_GetElementInterface::ElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementInterface, BaseInterfaceType) == 0x000018, "Member 'TypedElementListLibrary_GetElementInterface::BaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_GetElementInterface, ReturnValue) == 0x000020, "Member 'TypedElementListLibrary_GetElementInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_HasElements \ +static_assert(alignof(TypedElementListLibrary_HasElements) == 0x000008, "Wrong alignment on TypedElementListLibrary_HasElements"); \ +static_assert(sizeof(TypedElementListLibrary_HasElements) == 0x000020, "Wrong size on TypedElementListLibrary_HasElements"); \ +static_assert(offsetof(TypedElementListLibrary_HasElements, ElementList) == 0x000000, "Member 'TypedElementListLibrary_HasElements::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_HasElements, BaseInterfaceType) == 0x000010, "Member 'TypedElementListLibrary_HasElements::BaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_HasElements, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_HasElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_HasElementsOfType \ +static_assert(alignof(TypedElementListLibrary_HasElementsOfType) == 0x000008, "Wrong alignment on TypedElementListLibrary_HasElementsOfType"); \ +static_assert(sizeof(TypedElementListLibrary_HasElementsOfType) == 0x000020, "Wrong size on TypedElementListLibrary_HasElementsOfType"); \ +static_assert(offsetof(TypedElementListLibrary_HasElementsOfType, ElementList) == 0x000000, "Member 'TypedElementListLibrary_HasElementsOfType::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_HasElementsOfType, ElementTypeName) == 0x000010, "Member 'TypedElementListLibrary_HasElementsOfType::ElementTypeName' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_HasElementsOfType, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_HasElementsOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_IsValidIndex \ +static_assert(alignof(TypedElementListLibrary_IsValidIndex) == 0x000008, "Wrong alignment on TypedElementListLibrary_IsValidIndex"); \ +static_assert(sizeof(TypedElementListLibrary_IsValidIndex) == 0x000018, "Wrong size on TypedElementListLibrary_IsValidIndex"); \ +static_assert(offsetof(TypedElementListLibrary_IsValidIndex, ElementList) == 0x000000, "Member 'TypedElementListLibrary_IsValidIndex::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_IsValidIndex, Index_0) == 0x000010, "Member 'TypedElementListLibrary_IsValidIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_IsValidIndex, ReturnValue) == 0x000014, "Member 'TypedElementListLibrary_IsValidIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Num \ +static_assert(alignof(TypedElementListLibrary_Num) == 0x000008, "Wrong alignment on TypedElementListLibrary_Num"); \ +static_assert(sizeof(TypedElementListLibrary_Num) == 0x000018, "Wrong size on TypedElementListLibrary_Num"); \ +static_assert(offsetof(TypedElementListLibrary_Num, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Num::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Num, ReturnValue) == 0x000010, "Member 'TypedElementListLibrary_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Remove \ +static_assert(alignof(TypedElementListLibrary_Remove) == 0x000008, "Wrong alignment on TypedElementListLibrary_Remove"); \ +static_assert(sizeof(TypedElementListLibrary_Remove) == 0x000020, "Wrong size on TypedElementListLibrary_Remove"); \ +static_assert(offsetof(TypedElementListLibrary_Remove, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Remove::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Remove, ElementHandle) == 0x000010, "Member 'TypedElementListLibrary_Remove::ElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Remove, ReturnValue) == 0x000018, "Member 'TypedElementListLibrary_Remove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Reserve \ +static_assert(alignof(TypedElementListLibrary_Reserve) == 0x000008, "Wrong alignment on TypedElementListLibrary_Reserve"); \ +static_assert(sizeof(TypedElementListLibrary_Reserve) == 0x000018, "Wrong size on TypedElementListLibrary_Reserve"); \ +static_assert(offsetof(TypedElementListLibrary_Reserve, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Reserve::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementListLibrary_Reserve, Size) == 0x000010, "Member 'TypedElementListLibrary_Reserve::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Reset \ +static_assert(alignof(TypedElementListLibrary_Reset) == 0x000008, "Wrong alignment on TypedElementListLibrary_Reset"); \ +static_assert(sizeof(TypedElementListLibrary_Reset) == 0x000010, "Wrong size on TypedElementListLibrary_Reset"); \ +static_assert(offsetof(TypedElementListLibrary_Reset, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Reset::ElementList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementListLibrary_Shrink \ +static_assert(alignof(TypedElementListLibrary_Shrink) == 0x000008, "Wrong alignment on TypedElementListLibrary_Shrink"); \ +static_assert(sizeof(TypedElementListLibrary_Shrink) == 0x000010, "Wrong size on TypedElementListLibrary_Shrink"); \ +static_assert(offsetof(TypedElementListLibrary_Shrink, ElementList) == 0x000000, "Member 'TypedElementListLibrary_Shrink::ElementList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementListLibrary \ +static_assert(alignof(UTypedElementListLibrary) == 0x000008, "Wrong alignment on UTypedElementListLibrary"); \ +static_assert(sizeof(UTypedElementListLibrary) == 0x000028, "Wrong size on UTypedElementListLibrary"); \ + +#define DUMPER7_ASSERTS_ITypedElementCounterInterface \ +static_assert(alignof(ITypedElementCounterInterface) == 0x000001, "Wrong alignment on ITypedElementCounterInterface"); \ +static_assert(sizeof(ITypedElementCounterInterface) == 0x000001, "Wrong size on ITypedElementCounterInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementRegistry_GetInstance \ +static_assert(alignof(TypedElementRegistry_GetInstance) == 0x000008, "Wrong alignment on TypedElementRegistry_GetInstance"); \ +static_assert(sizeof(TypedElementRegistry_GetInstance) == 0x000008, "Wrong size on TypedElementRegistry_GetInstance"); \ +static_assert(offsetof(TypedElementRegistry_GetInstance, ReturnValue) == 0x000000, "Member 'TypedElementRegistry_GetInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementRegistry_GetElementInterface \ +static_assert(alignof(TypedElementRegistry_GetElementInterface) == 0x000008, "Wrong alignment on TypedElementRegistry_GetElementInterface"); \ +static_assert(sizeof(TypedElementRegistry_GetElementInterface) == 0x000018, "Wrong size on TypedElementRegistry_GetElementInterface"); \ +static_assert(offsetof(TypedElementRegistry_GetElementInterface, InElementHandle) == 0x000000, "Member 'TypedElementRegistry_GetElementInterface::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementRegistry_GetElementInterface, InBaseInterfaceType) == 0x000008, "Member 'TypedElementRegistry_GetElementInterface::InBaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementRegistry_GetElementInterface, ReturnValue) == 0x000010, "Member 'TypedElementRegistry_GetElementInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementRegistry \ +static_assert(alignof(UTypedElementRegistry) == 0x000008, "Wrong alignment on UTypedElementRegistry"); \ +static_assert(sizeof(UTypedElementRegistry) == 0x000978, "Wrong size on UTypedElementRegistry"); \ + +#define DUMPER7_ASSERTS_TestTypedElementInterfaceA_GetDisplayName \ +static_assert(alignof(TestTypedElementInterfaceA_GetDisplayName) == 0x000008, "Wrong alignment on TestTypedElementInterfaceA_GetDisplayName"); \ +static_assert(sizeof(TestTypedElementInterfaceA_GetDisplayName) == 0x000020, "Wrong size on TestTypedElementInterfaceA_GetDisplayName"); \ +static_assert(offsetof(TestTypedElementInterfaceA_GetDisplayName, InElementHandle) == 0x000000, "Member 'TestTypedElementInterfaceA_GetDisplayName::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceA_GetDisplayName, ReturnValue) == 0x000008, "Member 'TestTypedElementInterfaceA_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TestTypedElementInterfaceA_SetDisplayName \ +static_assert(alignof(TestTypedElementInterfaceA_SetDisplayName) == 0x000008, "Wrong alignment on TestTypedElementInterfaceA_SetDisplayName"); \ +static_assert(sizeof(TestTypedElementInterfaceA_SetDisplayName) == 0x000028, "Wrong size on TestTypedElementInterfaceA_SetDisplayName"); \ +static_assert(offsetof(TestTypedElementInterfaceA_SetDisplayName, InElementHandle) == 0x000000, "Member 'TestTypedElementInterfaceA_SetDisplayName::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceA_SetDisplayName, InNewName) == 0x000008, "Member 'TestTypedElementInterfaceA_SetDisplayName::InNewName' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceA_SetDisplayName, bNotify) == 0x000020, "Member 'TestTypedElementInterfaceA_SetDisplayName::bNotify' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceA_SetDisplayName, ReturnValue) == 0x000021, "Member 'TestTypedElementInterfaceA_SetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITestTypedElementInterfaceA \ +static_assert(alignof(ITestTypedElementInterfaceA) == 0x000001, "Wrong alignment on ITestTypedElementInterfaceA"); \ +static_assert(sizeof(ITestTypedElementInterfaceA) == 0x000001, "Wrong size on ITestTypedElementInterfaceA"); \ + +#define DUMPER7_ASSERTS_TestTypedElementInterfaceB_MarkAsTested \ +static_assert(alignof(TestTypedElementInterfaceB_MarkAsTested) == 0x000008, "Wrong alignment on TestTypedElementInterfaceB_MarkAsTested"); \ +static_assert(sizeof(TestTypedElementInterfaceB_MarkAsTested) == 0x000010, "Wrong size on TestTypedElementInterfaceB_MarkAsTested"); \ +static_assert(offsetof(TestTypedElementInterfaceB_MarkAsTested, InElementHandle) == 0x000000, "Member 'TestTypedElementInterfaceB_MarkAsTested::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceB_MarkAsTested, ReturnValue) == 0x000008, "Member 'TestTypedElementInterfaceB_MarkAsTested::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITestTypedElementInterfaceB \ +static_assert(alignof(ITestTypedElementInterfaceB) == 0x000001, "Wrong alignment on ITestTypedElementInterfaceB"); \ +static_assert(sizeof(ITestTypedElementInterfaceB) == 0x000001, "Wrong size on ITestTypedElementInterfaceB"); \ + +#define DUMPER7_ASSERTS_TestTypedElementInterfaceC_GetIsTested \ +static_assert(alignof(TestTypedElementInterfaceC_GetIsTested) == 0x000008, "Wrong alignment on TestTypedElementInterfaceC_GetIsTested"); \ +static_assert(sizeof(TestTypedElementInterfaceC_GetIsTested) == 0x000010, "Wrong size on TestTypedElementInterfaceC_GetIsTested"); \ +static_assert(offsetof(TestTypedElementInterfaceC_GetIsTested, InElementHandle) == 0x000000, "Member 'TestTypedElementInterfaceC_GetIsTested::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TestTypedElementInterfaceC_GetIsTested, ReturnValue) == 0x000008, "Member 'TestTypedElementInterfaceC_GetIsTested::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITestTypedElementInterfaceC \ +static_assert(alignof(ITestTypedElementInterfaceC) == 0x000001, "Wrong alignment on ITestTypedElementInterfaceC"); \ +static_assert(sizeof(ITestTypedElementInterfaceC) == 0x000001, "Wrong size on ITestTypedElementInterfaceC"); \ + +#define DUMPER7_ASSERTS_UTestTypedElementInterfaceA_ImplTyped \ +static_assert(alignof(UTestTypedElementInterfaceA_ImplTyped) == 0x000008, "Wrong alignment on UTestTypedElementInterfaceA_ImplTyped"); \ +static_assert(sizeof(UTestTypedElementInterfaceA_ImplTyped) == 0x000030, "Wrong size on UTestTypedElementInterfaceA_ImplTyped"); \ + +#define DUMPER7_ASSERTS_UTestTypedElementInterfaceA_ImplUntyped \ +static_assert(alignof(UTestTypedElementInterfaceA_ImplUntyped) == 0x000008, "Wrong alignment on UTestTypedElementInterfaceA_ImplUntyped"); \ +static_assert(sizeof(UTestTypedElementInterfaceA_ImplUntyped) == 0x000030, "Wrong size on UTestTypedElementInterfaceA_ImplUntyped"); \ + +#define DUMPER7_ASSERTS_UTestTypedElementInterfaceBAndC_Typed \ +static_assert(alignof(UTestTypedElementInterfaceBAndC_Typed) == 0x000008, "Wrong alignment on UTestTypedElementInterfaceBAndC_Typed"); \ +static_assert(sizeof(UTestTypedElementInterfaceBAndC_Typed) == 0x000038, "Wrong size on UTestTypedElementInterfaceBAndC_Typed"); \ + +#define DUMPER7_ASSERTS_FTypedElementSelectionOptions \ +static_assert(alignof(FTypedElementSelectionOptions) == 0x000001, "Wrong alignment on FTypedElementSelectionOptions"); \ +static_assert(sizeof(FTypedElementSelectionOptions) == 0x000005, "Wrong size on FTypedElementSelectionOptions"); \ +static_assert(offsetof(FTypedElementSelectionOptions, bAllowHidden) == 0x000000, "Member 'FTypedElementSelectionOptions::bAllowHidden' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementSelectionOptions, bAllowGroups) == 0x000001, "Member 'FTypedElementSelectionOptions::bAllowGroups' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementSelectionOptions, bAllowLegacyNotifications) == 0x000002, "Member 'FTypedElementSelectionOptions::bAllowLegacyNotifications' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementSelectionOptions, bWarnIfLocked) == 0x000003, "Member 'FTypedElementSelectionOptions::bWarnIfLocked' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementSelectionOptions, ChildElementInclusionMethod) == 0x000004, "Member 'FTypedElementSelectionOptions::ChildElementInclusionMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementSelectionNormalizationOptions \ +static_assert(alignof(FTypedElementSelectionNormalizationOptions) == 0x000001, "Wrong alignment on FTypedElementSelectionNormalizationOptions"); \ +static_assert(sizeof(FTypedElementSelectionNormalizationOptions) == 0x000002, "Wrong size on FTypedElementSelectionNormalizationOptions"); \ +static_assert(offsetof(FTypedElementSelectionNormalizationOptions, bExpandGroups) == 0x000000, "Member 'FTypedElementSelectionNormalizationOptions::bExpandGroups' has a wrong offset!"); \ +static_assert(offsetof(FTypedElementSelectionNormalizationOptions, bFollowAttachment) == 0x000001, "Member 'FTypedElementSelectionNormalizationOptions::bFollowAttachment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementSelectionSetState \ +static_assert(alignof(FTypedElementSelectionSetState) == 0x000008, "Wrong alignment on FTypedElementSelectionSetState"); \ +static_assert(sizeof(FTypedElementSelectionSetState) == 0x000018, "Wrong size on FTypedElementSelectionSetState"); \ +static_assert(offsetof(FTypedElementSelectionSetState, CreatedFromSelectionSet) == 0x000000, "Member 'FTypedElementSelectionSetState::CreatedFromSelectionSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTypedElementIsSelectedOptions \ +static_assert(alignof(FTypedElementIsSelectedOptions) == 0x000001, "Wrong alignment on FTypedElementIsSelectedOptions"); \ +static_assert(sizeof(FTypedElementIsSelectedOptions) == 0x000001, "Wrong size on FTypedElementIsSelectedOptions"); \ +static_assert(offsetof(FTypedElementIsSelectedOptions, bAllowIndirect) == 0x000000, "Member 'FTypedElementIsSelectedOptions::bAllowIndirect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSetLibrary_DeselectElementsFromList \ +static_assert(alignof(TypedElementSelectionSetLibrary_DeselectElementsFromList) == 0x000008, "Wrong alignment on TypedElementSelectionSetLibrary_DeselectElementsFromList"); \ +static_assert(sizeof(TypedElementSelectionSetLibrary_DeselectElementsFromList) == 0x000020, "Wrong size on TypedElementSelectionSetLibrary_DeselectElementsFromList"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_DeselectElementsFromList, SelectionSet) == 0x000000, "Member 'TypedElementSelectionSetLibrary_DeselectElementsFromList::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_DeselectElementsFromList, ElementList) == 0x000008, "Member 'TypedElementSelectionSetLibrary_DeselectElementsFromList::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_DeselectElementsFromList, SelectionOptions) == 0x000018, "Member 'TypedElementSelectionSetLibrary_DeselectElementsFromList::SelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_DeselectElementsFromList, ReturnValue) == 0x00001D, "Member 'TypedElementSelectionSetLibrary_DeselectElementsFromList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSetLibrary_GetNormalizedElementList \ +static_assert(alignof(TypedElementSelectionSetLibrary_GetNormalizedElementList) == 0x000008, "Wrong alignment on TypedElementSelectionSetLibrary_GetNormalizedElementList"); \ +static_assert(sizeof(TypedElementSelectionSetLibrary_GetNormalizedElementList) == 0x000030, "Wrong size on TypedElementSelectionSetLibrary_GetNormalizedElementList"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedElementList, SelectionSet) == 0x000000, "Member 'TypedElementSelectionSetLibrary_GetNormalizedElementList::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedElementList, ElementList) == 0x000008, "Member 'TypedElementSelectionSetLibrary_GetNormalizedElementList::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedElementList, NormalizationOptions) == 0x000018, "Member 'TypedElementSelectionSetLibrary_GetNormalizedElementList::NormalizationOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedElementList, ReturnValue) == 0x000020, "Member 'TypedElementSelectionSetLibrary_GetNormalizedElementList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSetLibrary_GetNormalizedSelection \ +static_assert(alignof(TypedElementSelectionSetLibrary_GetNormalizedSelection) == 0x000008, "Wrong alignment on TypedElementSelectionSetLibrary_GetNormalizedSelection"); \ +static_assert(sizeof(TypedElementSelectionSetLibrary_GetNormalizedSelection) == 0x000020, "Wrong size on TypedElementSelectionSetLibrary_GetNormalizedSelection"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedSelection, SelectionSet) == 0x000000, "Member 'TypedElementSelectionSetLibrary_GetNormalizedSelection::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedSelection, NormalizationOptions) == 0x000008, "Member 'TypedElementSelectionSetLibrary_GetNormalizedSelection::NormalizationOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_GetNormalizedSelection, ReturnValue) == 0x000010, "Member 'TypedElementSelectionSetLibrary_GetNormalizedSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSetLibrary_SelectElementsFromList \ +static_assert(alignof(TypedElementSelectionSetLibrary_SelectElementsFromList) == 0x000008, "Wrong alignment on TypedElementSelectionSetLibrary_SelectElementsFromList"); \ +static_assert(sizeof(TypedElementSelectionSetLibrary_SelectElementsFromList) == 0x000020, "Wrong size on TypedElementSelectionSetLibrary_SelectElementsFromList"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SelectElementsFromList, SelectionSet) == 0x000000, "Member 'TypedElementSelectionSetLibrary_SelectElementsFromList::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SelectElementsFromList, ElementList) == 0x000008, "Member 'TypedElementSelectionSetLibrary_SelectElementsFromList::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SelectElementsFromList, SelectionOptions) == 0x000018, "Member 'TypedElementSelectionSetLibrary_SelectElementsFromList::SelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SelectElementsFromList, ReturnValue) == 0x00001D, "Member 'TypedElementSelectionSetLibrary_SelectElementsFromList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSetLibrary_SetSelectionFromList \ +static_assert(alignof(TypedElementSelectionSetLibrary_SetSelectionFromList) == 0x000008, "Wrong alignment on TypedElementSelectionSetLibrary_SetSelectionFromList"); \ +static_assert(sizeof(TypedElementSelectionSetLibrary_SetSelectionFromList) == 0x000020, "Wrong size on TypedElementSelectionSetLibrary_SetSelectionFromList"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SetSelectionFromList, SelectionSet) == 0x000000, "Member 'TypedElementSelectionSetLibrary_SetSelectionFromList::SelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SetSelectionFromList, ElementList) == 0x000008, "Member 'TypedElementSelectionSetLibrary_SetSelectionFromList::ElementList' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SetSelectionFromList, SelectionOptions) == 0x000018, "Member 'TypedElementSelectionSetLibrary_SetSelectionFromList::SelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSetLibrary_SetSelectionFromList, ReturnValue) == 0x00001D, "Member 'TypedElementSelectionSetLibrary_SetSelectionFromList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementSelectionSetLibrary \ +static_assert(alignof(UTypedElementSelectionSetLibrary) == 0x000008, "Wrong alignment on UTypedElementSelectionSetLibrary"); \ +static_assert(sizeof(UTypedElementSelectionSetLibrary) == 0x000028, "Wrong size on UTypedElementSelectionSetLibrary"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_ClearSelection \ +static_assert(alignof(TypedElementSelectionSet_ClearSelection) == 0x000001, "Wrong alignment on TypedElementSelectionSet_ClearSelection"); \ +static_assert(sizeof(TypedElementSelectionSet_ClearSelection) == 0x000006, "Wrong size on TypedElementSelectionSet_ClearSelection"); \ +static_assert(offsetof(TypedElementSelectionSet_ClearSelection, InSelectionOptions) == 0x000000, "Member 'TypedElementSelectionSet_ClearSelection::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_ClearSelection, ReturnValue) == 0x000005, "Member 'TypedElementSelectionSet_ClearSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_DeselectElement \ +static_assert(alignof(TypedElementSelectionSet_DeselectElement) == 0x000008, "Wrong alignment on TypedElementSelectionSet_DeselectElement"); \ +static_assert(sizeof(TypedElementSelectionSet_DeselectElement) == 0x000010, "Wrong size on TypedElementSelectionSet_DeselectElement"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_DeselectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionSet_DeselectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionSet_DeselectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_DeselectElements \ +static_assert(alignof(TypedElementSelectionSet_DeselectElements) == 0x000008, "Wrong alignment on TypedElementSelectionSet_DeselectElements"); \ +static_assert(sizeof(TypedElementSelectionSet_DeselectElements) == 0x000018, "Wrong size on TypedElementSelectionSet_DeselectElements"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElements, InElementHandles) == 0x000000, "Member 'TypedElementSelectionSet_DeselectElements::InElementHandles' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElements, InSelectionOptions) == 0x000010, "Member 'TypedElementSelectionSet_DeselectElements::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_DeselectElements, ReturnValue) == 0x000015, "Member 'TypedElementSelectionSet_DeselectElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_RestoreSelectionState \ +static_assert(alignof(TypedElementSelectionSet_RestoreSelectionState) == 0x000008, "Wrong alignment on TypedElementSelectionSet_RestoreSelectionState"); \ +static_assert(sizeof(TypedElementSelectionSet_RestoreSelectionState) == 0x000018, "Wrong size on TypedElementSelectionSet_RestoreSelectionState"); \ +static_assert(offsetof(TypedElementSelectionSet_RestoreSelectionState, InSelectionState) == 0x000000, "Member 'TypedElementSelectionSet_RestoreSelectionState::InSelectionState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_SelectElement \ +static_assert(alignof(TypedElementSelectionSet_SelectElement) == 0x000008, "Wrong alignment on TypedElementSelectionSet_SelectElement"); \ +static_assert(sizeof(TypedElementSelectionSet_SelectElement) == 0x000010, "Wrong size on TypedElementSelectionSet_SelectElement"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_SelectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionSet_SelectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionSet_SelectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_SelectElements \ +static_assert(alignof(TypedElementSelectionSet_SelectElements) == 0x000008, "Wrong alignment on TypedElementSelectionSet_SelectElements"); \ +static_assert(sizeof(TypedElementSelectionSet_SelectElements) == 0x000018, "Wrong size on TypedElementSelectionSet_SelectElements"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElements, InElementHandles) == 0x000000, "Member 'TypedElementSelectionSet_SelectElements::InElementHandles' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElements, InSelectionOptions) == 0x000010, "Member 'TypedElementSelectionSet_SelectElements::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SelectElements, ReturnValue) == 0x000015, "Member 'TypedElementSelectionSet_SelectElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_SetSelection \ +static_assert(alignof(TypedElementSelectionSet_SetSelection) == 0x000008, "Wrong alignment on TypedElementSelectionSet_SetSelection"); \ +static_assert(sizeof(TypedElementSelectionSet_SetSelection) == 0x000018, "Wrong size on TypedElementSelectionSet_SetSelection"); \ +static_assert(offsetof(TypedElementSelectionSet_SetSelection, InElementHandles) == 0x000000, "Member 'TypedElementSelectionSet_SetSelection::InElementHandles' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SetSelection, InSelectionOptions) == 0x000010, "Member 'TypedElementSelectionSet_SetSelection::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_SetSelection, ReturnValue) == 0x000015, "Member 'TypedElementSelectionSet_SetSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_AllowSelectionModifiers \ +static_assert(alignof(TypedElementSelectionSet_AllowSelectionModifiers) == 0x000008, "Wrong alignment on TypedElementSelectionSet_AllowSelectionModifiers"); \ +static_assert(sizeof(TypedElementSelectionSet_AllowSelectionModifiers) == 0x000010, "Wrong size on TypedElementSelectionSet_AllowSelectionModifiers"); \ +static_assert(offsetof(TypedElementSelectionSet_AllowSelectionModifiers, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_AllowSelectionModifiers::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_AllowSelectionModifiers, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_AllowSelectionModifiers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_CanDeselectElement \ +static_assert(alignof(TypedElementSelectionSet_CanDeselectElement) == 0x000008, "Wrong alignment on TypedElementSelectionSet_CanDeselectElement"); \ +static_assert(sizeof(TypedElementSelectionSet_CanDeselectElement) == 0x000010, "Wrong size on TypedElementSelectionSet_CanDeselectElement"); \ +static_assert(offsetof(TypedElementSelectionSet_CanDeselectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_CanDeselectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CanDeselectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionSet_CanDeselectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CanDeselectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionSet_CanDeselectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_CanSelectElement \ +static_assert(alignof(TypedElementSelectionSet_CanSelectElement) == 0x000008, "Wrong alignment on TypedElementSelectionSet_CanSelectElement"); \ +static_assert(sizeof(TypedElementSelectionSet_CanSelectElement) == 0x000010, "Wrong size on TypedElementSelectionSet_CanSelectElement"); \ +static_assert(offsetof(TypedElementSelectionSet_CanSelectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_CanSelectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CanSelectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionSet_CanSelectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CanSelectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionSet_CanSelectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_CountSelectedElements \ +static_assert(alignof(TypedElementSelectionSet_CountSelectedElements) == 0x000008, "Wrong alignment on TypedElementSelectionSet_CountSelectedElements"); \ +static_assert(sizeof(TypedElementSelectionSet_CountSelectedElements) == 0x000010, "Wrong size on TypedElementSelectionSet_CountSelectedElements"); \ +static_assert(offsetof(TypedElementSelectionSet_CountSelectedElements, InBaseInterfaceType) == 0x000000, "Member 'TypedElementSelectionSet_CountSelectedElements::InBaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CountSelectedElements, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_CountSelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_CountSelectedObjects \ +static_assert(alignof(TypedElementSelectionSet_CountSelectedObjects) == 0x000008, "Wrong alignment on TypedElementSelectionSet_CountSelectedObjects"); \ +static_assert(sizeof(TypedElementSelectionSet_CountSelectedObjects) == 0x000010, "Wrong size on TypedElementSelectionSet_CountSelectedObjects"); \ +static_assert(offsetof(TypedElementSelectionSet_CountSelectedObjects, InRequiredClass) == 0x000000, "Member 'TypedElementSelectionSet_CountSelectedObjects::InRequiredClass' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_CountSelectedObjects, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_CountSelectedObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetBottomSelectedObject \ +static_assert(alignof(TypedElementSelectionSet_GetBottomSelectedObject) == 0x000008, "Wrong alignment on TypedElementSelectionSet_GetBottomSelectedObject"); \ +static_assert(sizeof(TypedElementSelectionSet_GetBottomSelectedObject) == 0x000010, "Wrong size on TypedElementSelectionSet_GetBottomSelectedObject"); \ +static_assert(offsetof(TypedElementSelectionSet_GetBottomSelectedObject, InRequiredClass) == 0x000000, "Member 'TypedElementSelectionSet_GetBottomSelectedObject::InRequiredClass' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_GetBottomSelectedObject, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_GetBottomSelectedObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetCurrentSelectionState \ +static_assert(alignof(TypedElementSelectionSet_GetCurrentSelectionState) == 0x000008, "Wrong alignment on TypedElementSelectionSet_GetCurrentSelectionState"); \ +static_assert(sizeof(TypedElementSelectionSet_GetCurrentSelectionState) == 0x000018, "Wrong size on TypedElementSelectionSet_GetCurrentSelectionState"); \ +static_assert(offsetof(TypedElementSelectionSet_GetCurrentSelectionState, ReturnValue) == 0x000000, "Member 'TypedElementSelectionSet_GetCurrentSelectionState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetNumSelectedElements \ +static_assert(alignof(TypedElementSelectionSet_GetNumSelectedElements) == 0x000004, "Wrong alignment on TypedElementSelectionSet_GetNumSelectedElements"); \ +static_assert(sizeof(TypedElementSelectionSet_GetNumSelectedElements) == 0x000004, "Wrong size on TypedElementSelectionSet_GetNumSelectedElements"); \ +static_assert(offsetof(TypedElementSelectionSet_GetNumSelectedElements, ReturnValue) == 0x000000, "Member 'TypedElementSelectionSet_GetNumSelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetSelectedObjects \ +static_assert(alignof(TypedElementSelectionSet_GetSelectedObjects) == 0x000008, "Wrong alignment on TypedElementSelectionSet_GetSelectedObjects"); \ +static_assert(sizeof(TypedElementSelectionSet_GetSelectedObjects) == 0x000018, "Wrong size on TypedElementSelectionSet_GetSelectedObjects"); \ +static_assert(offsetof(TypedElementSelectionSet_GetSelectedObjects, InRequiredClass) == 0x000000, "Member 'TypedElementSelectionSet_GetSelectedObjects::InRequiredClass' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_GetSelectedObjects, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_GetSelectedObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetSelectionElement \ +static_assert(alignof(TypedElementSelectionSet_GetSelectionElement) == 0x000008, "Wrong alignment on TypedElementSelectionSet_GetSelectionElement"); \ +static_assert(sizeof(TypedElementSelectionSet_GetSelectionElement) == 0x000018, "Wrong size on TypedElementSelectionSet_GetSelectionElement"); \ +static_assert(offsetof(TypedElementSelectionSet_GetSelectionElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_GetSelectionElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_GetSelectionElement, InSelectionMethod) == 0x000008, "Member 'TypedElementSelectionSet_GetSelectionElement::InSelectionMethod' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_GetSelectionElement, ReturnValue) == 0x000010, "Member 'TypedElementSelectionSet_GetSelectionElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_GetTopSelectedObject \ +static_assert(alignof(TypedElementSelectionSet_GetTopSelectedObject) == 0x000008, "Wrong alignment on TypedElementSelectionSet_GetTopSelectedObject"); \ +static_assert(sizeof(TypedElementSelectionSet_GetTopSelectedObject) == 0x000010, "Wrong size on TypedElementSelectionSet_GetTopSelectedObject"); \ +static_assert(offsetof(TypedElementSelectionSet_GetTopSelectedObject, InRequiredClass) == 0x000000, "Member 'TypedElementSelectionSet_GetTopSelectedObject::InRequiredClass' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_GetTopSelectedObject, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_GetTopSelectedObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_HasSelectedElements \ +static_assert(alignof(TypedElementSelectionSet_HasSelectedElements) == 0x000008, "Wrong alignment on TypedElementSelectionSet_HasSelectedElements"); \ +static_assert(sizeof(TypedElementSelectionSet_HasSelectedElements) == 0x000010, "Wrong size on TypedElementSelectionSet_HasSelectedElements"); \ +static_assert(offsetof(TypedElementSelectionSet_HasSelectedElements, InBaseInterfaceType) == 0x000000, "Member 'TypedElementSelectionSet_HasSelectedElements::InBaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_HasSelectedElements, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_HasSelectedElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_HasSelectedObjects \ +static_assert(alignof(TypedElementSelectionSet_HasSelectedObjects) == 0x000008, "Wrong alignment on TypedElementSelectionSet_HasSelectedObjects"); \ +static_assert(sizeof(TypedElementSelectionSet_HasSelectedObjects) == 0x000010, "Wrong size on TypedElementSelectionSet_HasSelectedObjects"); \ +static_assert(offsetof(TypedElementSelectionSet_HasSelectedObjects, InRequiredClass) == 0x000000, "Member 'TypedElementSelectionSet_HasSelectedObjects::InRequiredClass' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_HasSelectedObjects, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_HasSelectedObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_IsElementSelected \ +static_assert(alignof(TypedElementSelectionSet_IsElementSelected) == 0x000008, "Wrong alignment on TypedElementSelectionSet_IsElementSelected"); \ +static_assert(sizeof(TypedElementSelectionSet_IsElementSelected) == 0x000010, "Wrong size on TypedElementSelectionSet_IsElementSelected"); \ +static_assert(offsetof(TypedElementSelectionSet_IsElementSelected, InElementHandle) == 0x000000, "Member 'TypedElementSelectionSet_IsElementSelected::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_IsElementSelected, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionSet_IsElementSelected::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_IsElementSelected, ReturnValue) == 0x000009, "Member 'TypedElementSelectionSet_IsElementSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionSet_K2_GetSelectedElementHandles \ +static_assert(alignof(TypedElementSelectionSet_K2_GetSelectedElementHandles) == 0x000008, "Wrong alignment on TypedElementSelectionSet_K2_GetSelectedElementHandles"); \ +static_assert(sizeof(TypedElementSelectionSet_K2_GetSelectedElementHandles) == 0x000018, "Wrong size on TypedElementSelectionSet_K2_GetSelectedElementHandles"); \ +static_assert(offsetof(TypedElementSelectionSet_K2_GetSelectedElementHandles, InBaseInterfaceType) == 0x000000, "Member 'TypedElementSelectionSet_K2_GetSelectedElementHandles::InBaseInterfaceType' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionSet_K2_GetSelectedElementHandles, ReturnValue) == 0x000008, "Member 'TypedElementSelectionSet_K2_GetSelectedElementHandles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTypedElementSelectionSet \ +static_assert(alignof(UTypedElementSelectionSet) == 0x000008, "Wrong alignment on UTypedElementSelectionSet"); \ +static_assert(sizeof(UTypedElementSelectionSet) == 0x000898, "Wrong size on UTypedElementSelectionSet"); \ +static_assert(offsetof(UTypedElementSelectionSet, OnPreSelectionChange) == 0x000828, "Member 'UTypedElementSelectionSet::OnPreSelectionChange' has a wrong offset!"); \ +static_assert(offsetof(UTypedElementSelectionSet, OnSelectionChange) == 0x000838, "Member 'UTypedElementSelectionSet::OnSelectionChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementAssetDataInterface_GetAllReferencedAssetDatas \ +static_assert(alignof(TypedElementAssetDataInterface_GetAllReferencedAssetDatas) == 0x000008, "Wrong alignment on TypedElementAssetDataInterface_GetAllReferencedAssetDatas"); \ +static_assert(sizeof(TypedElementAssetDataInterface_GetAllReferencedAssetDatas) == 0x000018, "Wrong size on TypedElementAssetDataInterface_GetAllReferencedAssetDatas"); \ +static_assert(offsetof(TypedElementAssetDataInterface_GetAllReferencedAssetDatas, InElementHandle) == 0x000000, "Member 'TypedElementAssetDataInterface_GetAllReferencedAssetDatas::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementAssetDataInterface_GetAllReferencedAssetDatas, ReturnValue) == 0x000008, "Member 'TypedElementAssetDataInterface_GetAllReferencedAssetDatas::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementAssetDataInterface_GetAssetData \ +static_assert(alignof(TypedElementAssetDataInterface_GetAssetData) == 0x000008, "Wrong alignment on TypedElementAssetDataInterface_GetAssetData"); \ +static_assert(sizeof(TypedElementAssetDataInterface_GetAssetData) == 0x000070, "Wrong size on TypedElementAssetDataInterface_GetAssetData"); \ +static_assert(offsetof(TypedElementAssetDataInterface_GetAssetData, InElementHandle) == 0x000000, "Member 'TypedElementAssetDataInterface_GetAssetData::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementAssetDataInterface_GetAssetData, ReturnValue) == 0x000008, "Member 'TypedElementAssetDataInterface_GetAssetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementAssetDataInterface \ +static_assert(alignof(ITypedElementAssetDataInterface) == 0x000001, "Wrong alignment on ITypedElementAssetDataInterface"); \ +static_assert(sizeof(ITypedElementAssetDataInterface) == 0x000001, "Wrong size on ITypedElementAssetDataInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementHierarchyInterface_GetChildElements \ +static_assert(alignof(TypedElementHierarchyInterface_GetChildElements) == 0x000008, "Wrong alignment on TypedElementHierarchyInterface_GetChildElements"); \ +static_assert(sizeof(TypedElementHierarchyInterface_GetChildElements) == 0x000020, "Wrong size on TypedElementHierarchyInterface_GetChildElements"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetChildElements, InElementHandle) == 0x000000, "Member 'TypedElementHierarchyInterface_GetChildElements::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetChildElements, OutElementHandles) == 0x000008, "Member 'TypedElementHierarchyInterface_GetChildElements::OutElementHandles' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetChildElements, bAllowCreate) == 0x000018, "Member 'TypedElementHierarchyInterface_GetChildElements::bAllowCreate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementHierarchyInterface_GetParentElement \ +static_assert(alignof(TypedElementHierarchyInterface_GetParentElement) == 0x000008, "Wrong alignment on TypedElementHierarchyInterface_GetParentElement"); \ +static_assert(sizeof(TypedElementHierarchyInterface_GetParentElement) == 0x000018, "Wrong size on TypedElementHierarchyInterface_GetParentElement"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetParentElement, InElementHandle) == 0x000000, "Member 'TypedElementHierarchyInterface_GetParentElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetParentElement, bAllowCreate) == 0x000008, "Member 'TypedElementHierarchyInterface_GetParentElement::bAllowCreate' has a wrong offset!"); \ +static_assert(offsetof(TypedElementHierarchyInterface_GetParentElement, ReturnValue) == 0x000010, "Member 'TypedElementHierarchyInterface_GetParentElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementHierarchyInterface \ +static_assert(alignof(ITypedElementHierarchyInterface) == 0x000001, "Wrong alignment on ITypedElementHierarchyInterface"); \ +static_assert(sizeof(ITypedElementHierarchyInterface) == 0x000001, "Wrong size on ITypedElementHierarchyInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementObjectInterface_GetObject \ +static_assert(alignof(TypedElementObjectInterface_GetObject) == 0x000008, "Wrong alignment on TypedElementObjectInterface_GetObject"); \ +static_assert(sizeof(TypedElementObjectInterface_GetObject) == 0x000010, "Wrong size on TypedElementObjectInterface_GetObject"); \ +static_assert(offsetof(TypedElementObjectInterface_GetObject, InElementHandle) == 0x000000, "Member 'TypedElementObjectInterface_GetObject::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementObjectInterface_GetObject, ReturnValue) == 0x000008, "Member 'TypedElementObjectInterface_GetObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementObjectInterface_GetObjectClass \ +static_assert(alignof(TypedElementObjectInterface_GetObjectClass) == 0x000008, "Wrong alignment on TypedElementObjectInterface_GetObjectClass"); \ +static_assert(sizeof(TypedElementObjectInterface_GetObjectClass) == 0x000010, "Wrong size on TypedElementObjectInterface_GetObjectClass"); \ +static_assert(offsetof(TypedElementObjectInterface_GetObjectClass, InElementHandle) == 0x000000, "Member 'TypedElementObjectInterface_GetObjectClass::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementObjectInterface_GetObjectClass, ReturnValue) == 0x000008, "Member 'TypedElementObjectInterface_GetObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementObjectInterface \ +static_assert(alignof(ITypedElementObjectInterface) == 0x000001, "Wrong alignment on ITypedElementObjectInterface"); \ +static_assert(sizeof(ITypedElementObjectInterface) == 0x000001, "Wrong size on ITypedElementObjectInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementPrimitiveCustomDataInterface_SetCustomData \ +static_assert(alignof(TypedElementPrimitiveCustomDataInterface_SetCustomData) == 0x000008, "Wrong alignment on TypedElementPrimitiveCustomDataInterface_SetCustomData"); \ +static_assert(sizeof(TypedElementPrimitiveCustomDataInterface_SetCustomData) == 0x000020, "Wrong size on TypedElementPrimitiveCustomDataInterface_SetCustomData"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomData, InElementHandle) == 0x000000, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomData::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomData, CustomDataFloats) == 0x000008, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomData::CustomDataFloats' has a wrong offset!"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomData, bMarkRenderStateDirty) == 0x000018, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomData::bMarkRenderStateDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementPrimitiveCustomDataInterface_SetCustomDataValue \ +static_assert(alignof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue) == 0x000008, "Wrong alignment on TypedElementPrimitiveCustomDataInterface_SetCustomDataValue"); \ +static_assert(sizeof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue) == 0x000018, "Wrong size on TypedElementPrimitiveCustomDataInterface_SetCustomDataValue"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue, InElementHandle) == 0x000000, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomDataValue::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue, CustomDataIndex) == 0x000008, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomDataValue::CustomDataIndex' has a wrong offset!"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue, CustomDataValue) == 0x00000C, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomDataValue::CustomDataValue' has a wrong offset!"); \ +static_assert(offsetof(TypedElementPrimitiveCustomDataInterface_SetCustomDataValue, bMarkRenderStateDirty) == 0x000010, "Member 'TypedElementPrimitiveCustomDataInterface_SetCustomDataValue::bMarkRenderStateDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementPrimitiveCustomDataInterface \ +static_assert(alignof(ITypedElementPrimitiveCustomDataInterface) == 0x000001, "Wrong alignment on ITypedElementPrimitiveCustomDataInterface"); \ +static_assert(sizeof(ITypedElementPrimitiveCustomDataInterface) == 0x000001, "Wrong size on ITypedElementPrimitiveCustomDataInterface"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_AllowSelectionModifiers \ +static_assert(alignof(TypedElementSelectionInterface_AllowSelectionModifiers) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_AllowSelectionModifiers"); \ +static_assert(sizeof(TypedElementSelectionInterface_AllowSelectionModifiers) == 0x000020, "Wrong size on TypedElementSelectionInterface_AllowSelectionModifiers"); \ +static_assert(offsetof(TypedElementSelectionInterface_AllowSelectionModifiers, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_AllowSelectionModifiers::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_AllowSelectionModifiers, InSelectionSet) == 0x000008, "Member 'TypedElementSelectionInterface_AllowSelectionModifiers::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_AllowSelectionModifiers, ReturnValue) == 0x000018, "Member 'TypedElementSelectionInterface_AllowSelectionModifiers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_CanDeselectElement \ +static_assert(alignof(TypedElementSelectionInterface_CanDeselectElement) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_CanDeselectElement"); \ +static_assert(sizeof(TypedElementSelectionInterface_CanDeselectElement) == 0x000010, "Wrong size on TypedElementSelectionInterface_CanDeselectElement"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanDeselectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_CanDeselectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanDeselectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionInterface_CanDeselectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanDeselectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionInterface_CanDeselectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_CanSelectElement \ +static_assert(alignof(TypedElementSelectionInterface_CanSelectElement) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_CanSelectElement"); \ +static_assert(sizeof(TypedElementSelectionInterface_CanSelectElement) == 0x000010, "Wrong size on TypedElementSelectionInterface_CanSelectElement"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanSelectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_CanSelectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanSelectElement, InSelectionOptions) == 0x000008, "Member 'TypedElementSelectionInterface_CanSelectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_CanSelectElement, ReturnValue) == 0x00000D, "Member 'TypedElementSelectionInterface_CanSelectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_DeselectElement \ +static_assert(alignof(TypedElementSelectionInterface_DeselectElement) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_DeselectElement"); \ +static_assert(sizeof(TypedElementSelectionInterface_DeselectElement) == 0x000020, "Wrong size on TypedElementSelectionInterface_DeselectElement"); \ +static_assert(offsetof(TypedElementSelectionInterface_DeselectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_DeselectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_DeselectElement, InSelectionSet) == 0x000008, "Member 'TypedElementSelectionInterface_DeselectElement::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_DeselectElement, InSelectionOptions) == 0x000018, "Member 'TypedElementSelectionInterface_DeselectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_DeselectElement, ReturnValue) == 0x00001D, "Member 'TypedElementSelectionInterface_DeselectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_GetSelectionElement \ +static_assert(alignof(TypedElementSelectionInterface_GetSelectionElement) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_GetSelectionElement"); \ +static_assert(sizeof(TypedElementSelectionInterface_GetSelectionElement) == 0x000028, "Wrong size on TypedElementSelectionInterface_GetSelectionElement"); \ +static_assert(offsetof(TypedElementSelectionInterface_GetSelectionElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_GetSelectionElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_GetSelectionElement, InCurrentSelection) == 0x000008, "Member 'TypedElementSelectionInterface_GetSelectionElement::InCurrentSelection' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_GetSelectionElement, InSelectionMethod) == 0x000018, "Member 'TypedElementSelectionInterface_GetSelectionElement::InSelectionMethod' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_GetSelectionElement, ReturnValue) == 0x000020, "Member 'TypedElementSelectionInterface_GetSelectionElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_IsElementSelected \ +static_assert(alignof(TypedElementSelectionInterface_IsElementSelected) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_IsElementSelected"); \ +static_assert(sizeof(TypedElementSelectionInterface_IsElementSelected) == 0x000020, "Wrong size on TypedElementSelectionInterface_IsElementSelected"); \ +static_assert(offsetof(TypedElementSelectionInterface_IsElementSelected, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_IsElementSelected::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_IsElementSelected, InSelectionSet) == 0x000008, "Member 'TypedElementSelectionInterface_IsElementSelected::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_IsElementSelected, InSelectionOptions) == 0x000018, "Member 'TypedElementSelectionInterface_IsElementSelected::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_IsElementSelected, ReturnValue) == 0x000019, "Member 'TypedElementSelectionInterface_IsElementSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TypedElementSelectionInterface_SelectElement \ +static_assert(alignof(TypedElementSelectionInterface_SelectElement) == 0x000008, "Wrong alignment on TypedElementSelectionInterface_SelectElement"); \ +static_assert(sizeof(TypedElementSelectionInterface_SelectElement) == 0x000020, "Wrong size on TypedElementSelectionInterface_SelectElement"); \ +static_assert(offsetof(TypedElementSelectionInterface_SelectElement, InElementHandle) == 0x000000, "Member 'TypedElementSelectionInterface_SelectElement::InElementHandle' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_SelectElement, InSelectionSet) == 0x000008, "Member 'TypedElementSelectionInterface_SelectElement::InSelectionSet' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_SelectElement, InSelectionOptions) == 0x000018, "Member 'TypedElementSelectionInterface_SelectElement::InSelectionOptions' has a wrong offset!"); \ +static_assert(offsetof(TypedElementSelectionInterface_SelectElement, ReturnValue) == 0x00001D, "Member 'TypedElementSelectionInterface_SelectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITypedElementSelectionInterface \ +static_assert(alignof(ITypedElementSelectionInterface) == 0x000001, "Wrong alignment on ITypedElementSelectionInterface"); \ +static_assert(sizeof(ITypedElementSelectionInterface) == 0x000001, "Wrong size on ITypedElementSelectionInterface"); \ + +#define DUMPER7_ASSERTS_Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus \ +static_assert(alignof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus) == 0x000008, "Wrong alignment on Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus"); \ +static_assert(sizeof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus) == 0x0002C0, "Wrong size on Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, EntryPoint) == 0x000000, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetGameMode_ReturnValue) == 0x000008, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000010, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000020, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetPlayerController_ReturnValue) == 0x000028, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle) == 0x000030, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives) == 0x000048, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions) == 0x000058, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue) == 0x000068, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_MakeStruct_WrestlerNotificationData) == 0x000070, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_MakeStruct_WrestlerNotificationData' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_IsValid_ReturnValue_1) == 0x0000C8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetPlayerController_ReturnValue_1) == 0x0000D0, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle_1) == 0x0000D8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives_1) == 0x0000F0, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions_1) == 0x000100, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue_1) == 0x000110, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000111, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_MakeStruct_WrestlerNotificationData_1) == 0x000118, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_MakeStruct_WrestlerNotificationData_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetGameMode_ReturnValue_1) == 0x000170, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetGameMode_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_DynamicCast_AsWrestler_Mode_in_Game_1) == 0x000178, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_DynamicCast_AsWrestler_Mode_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_DynamicCast_bSuccess_1) == 0x000180, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000181, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetQuestProgressComponent_ReturnValue_1) == 0x000188, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetQuestProgressComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_IsValid_ReturnValue_2) == 0x000190, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_IsValid_ReturnValue_3) == 0x000191, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetDisplayName_ReturnValue) == 0x000198, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_Event_InAutomata) == 0x0001A8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_Event_InState) == 0x0001B0, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_Concat_StrStr_ReturnValue) == 0x0001B8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0001C8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0001D8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0001E0, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_IsValid_ReturnValue_4) == 0x0001E8, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_Set_ToArray_Result) == 0x0001F0, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_OpenNewQuest_ReturnValue) == 0x000200, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_OpenNewQuest_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_Set_ToArray_Result_1) == 0x000208, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_Set_ToArray_Result_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_OpenNewQuestWithInitialObjective_ReturnValue) == 0x000218, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_OpenNewQuestWithInitialObjective_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_OpenNewQuest_ReturnValue_1) == 0x000219, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_OpenNewQuest_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_OpenNewQuestWithInitialObjective_ReturnValue_1) == 0x00021A, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_OpenNewQuestWithInitialObjective_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetPlayerController_ReturnValue_2) == 0x000220, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle_2) == 0x000228, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestTitle_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives_2) == 0x000240, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestObjectives_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions_2) == 0x000250, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_OutQuestDescriptions_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue_2) == 0x000260, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::CallFunc_GetFormattedQuestDataForGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus, K2Node_MakeStruct_WrestlerNotificationData_2) == 0x000268, "Member 'Change_QuestStatus_C_ExecuteUbergraph_Change_QuestStatus::K2Node_MakeStruct_WrestlerNotificationData_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestStatus_C_ReceiveExecute \ +static_assert(alignof(Change_QuestStatus_C_ReceiveExecute) == 0x000008, "Wrong alignment on Change_QuestStatus_C_ReceiveExecute"); \ +static_assert(sizeof(Change_QuestStatus_C_ReceiveExecute) == 0x000010, "Wrong size on Change_QuestStatus_C_ReceiveExecute"); \ +static_assert(offsetof(Change_QuestStatus_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Change_QuestStatus_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_ReceiveExecute, InState) == 0x000008, "Member 'Change_QuestStatus_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestStatus_C_GetQuestObjectives \ +static_assert(alignof(Change_QuestStatus_C_GetQuestObjectives) == 0x000008, "Wrong alignment on Change_QuestStatus_C_GetQuestObjectives"); \ +static_assert(sizeof(Change_QuestStatus_C_GetQuestObjectives) == 0x000020, "Wrong size on Change_QuestStatus_C_GetQuestObjectives"); \ +static_assert(offsetof(Change_QuestStatus_C_GetQuestObjectives, ReturnValue) == 0x000000, "Member 'Change_QuestStatus_C_GetQuestObjectives::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestStatus_C_GetQuestObjectives, CallFunc_GetQuestObjectivesList_ReturnValue) == 0x000010, "Member 'Change_QuestStatus_C_GetQuestObjectives::CallFunc_GetQuestObjectivesList_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChange_QuestStatus_C \ +static_assert(alignof(UChange_QuestStatus_C) == 0x000008, "Wrong alignment on UChange_QuestStatus_C"); \ +static_assert(sizeof(UChange_QuestStatus_C) == 0x000168, "Wrong size on UChange_QuestStatus_C"); \ +static_assert(offsetof(UChange_QuestStatus_C, UberGraphFrame) == 0x0000F8, "Member 'UChange_QuestStatus_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChange_QuestStatus_C, Status) == 0x000100, "Member 'UChange_QuestStatus_C::Status' has a wrong offset!"); \ +static_assert(offsetof(UChange_QuestStatus_C, QuestNotificationData) == 0x000108, "Member 'UChange_QuestStatus_C::QuestNotificationData' has a wrong offset!"); \ +static_assert(offsetof(UChange_QuestStatus_C, BlockNotification) == 0x000160, "Member 'UChange_QuestStatus_C::BlockNotification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioLinkSettingsAbstract \ +static_assert(alignof(UAudioLinkSettingsAbstract) == 0x000008, "Wrong alignment on UAudioLinkSettingsAbstract"); \ +static_assert(sizeof(UAudioLinkSettingsAbstract) == 0x000038, "Wrong size on UAudioLinkSettingsAbstract"); \ + +#define DUMPER7_ASSERTS_FJsonObjectWrapper \ +static_assert(alignof(FJsonObjectWrapper) == 0x000008, "Wrong alignment on FJsonObjectWrapper"); \ +static_assert(sizeof(FJsonObjectWrapper) == 0x000020, "Wrong size on FJsonObjectWrapper"); \ +static_assert(offsetof(FJsonObjectWrapper, JsonString) == 0x000000, "Member 'FJsonObjectWrapper::JsonString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UJsonUtilitiesDummyObject \ +static_assert(alignof(UJsonUtilitiesDummyObject) == 0x000008, "Wrong alignment on UJsonUtilitiesDummyObject"); \ +static_assert(sizeof(UJsonUtilitiesDummyObject) == 0x000028, "Wrong size on UJsonUtilitiesDummyObject"); \ + +#define DUMPER7_ASSERTS_FTagAndValue \ +static_assert(alignof(FTagAndValue) == 0x000008, "Wrong alignment on FTagAndValue"); \ +static_assert(sizeof(FTagAndValue) == 0x000018, "Wrong size on FTagAndValue"); \ +static_assert(offsetof(FTagAndValue, Tag) == 0x000000, "Member 'FTagAndValue::Tag' has a wrong offset!"); \ +static_assert(offsetof(FTagAndValue, Value) == 0x000008, "Member 'FTagAndValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAssetRegistryDependencyOptions \ +static_assert(alignof(FAssetRegistryDependencyOptions) == 0x000001, "Wrong alignment on FAssetRegistryDependencyOptions"); \ +static_assert(sizeof(FAssetRegistryDependencyOptions) == 0x000005, "Wrong size on FAssetRegistryDependencyOptions"); \ +static_assert(offsetof(FAssetRegistryDependencyOptions, bIncludeSoftPackageReferences) == 0x000000, "Member 'FAssetRegistryDependencyOptions::bIncludeSoftPackageReferences' has a wrong offset!"); \ +static_assert(offsetof(FAssetRegistryDependencyOptions, bIncludeHardPackageReferences) == 0x000001, "Member 'FAssetRegistryDependencyOptions::bIncludeHardPackageReferences' has a wrong offset!"); \ +static_assert(offsetof(FAssetRegistryDependencyOptions, bIncludeSearchableNames) == 0x000002, "Member 'FAssetRegistryDependencyOptions::bIncludeSearchableNames' has a wrong offset!"); \ +static_assert(offsetof(FAssetRegistryDependencyOptions, bIncludeSoftManagementReferences) == 0x000003, "Member 'FAssetRegistryDependencyOptions::bIncludeSoftManagementReferences' has a wrong offset!"); \ +static_assert(offsetof(FAssetRegistryDependencyOptions, bIncludeHardManagementReferences) == 0x000004, "Member 'FAssetRegistryDependencyOptions::bIncludeHardManagementReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_CreateAssetData \ +static_assert(alignof(AssetRegistryHelpers_CreateAssetData) == 0x000008, "Wrong alignment on AssetRegistryHelpers_CreateAssetData"); \ +static_assert(sizeof(AssetRegistryHelpers_CreateAssetData) == 0x000078, "Wrong size on AssetRegistryHelpers_CreateAssetData"); \ +static_assert(offsetof(AssetRegistryHelpers_CreateAssetData, InAsset) == 0x000000, "Member 'AssetRegistryHelpers_CreateAssetData::InAsset' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_CreateAssetData, bAllowBlueprintClass) == 0x000008, "Member 'AssetRegistryHelpers_CreateAssetData::bAllowBlueprintClass' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_CreateAssetData, ReturnValue) == 0x000010, "Member 'AssetRegistryHelpers_CreateAssetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_FindAssetNativeClass \ +static_assert(alignof(AssetRegistryHelpers_FindAssetNativeClass) == 0x000008, "Wrong alignment on AssetRegistryHelpers_FindAssetNativeClass"); \ +static_assert(sizeof(AssetRegistryHelpers_FindAssetNativeClass) == 0x000070, "Wrong size on AssetRegistryHelpers_FindAssetNativeClass"); \ +static_assert(offsetof(AssetRegistryHelpers_FindAssetNativeClass, AssetData) == 0x000000, "Member 'AssetRegistryHelpers_FindAssetNativeClass::AssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_FindAssetNativeClass, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_FindAssetNativeClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetAsset \ +static_assert(alignof(AssetRegistryHelpers_GetAsset) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetAsset"); \ +static_assert(sizeof(AssetRegistryHelpers_GetAsset) == 0x000070, "Wrong size on AssetRegistryHelpers_GetAsset"); \ +static_assert(offsetof(AssetRegistryHelpers_GetAsset, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_GetAsset::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetAsset, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_GetAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetAssetRegistry \ +static_assert(alignof(AssetRegistryHelpers_GetAssetRegistry) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetAssetRegistry"); \ +static_assert(sizeof(AssetRegistryHelpers_GetAssetRegistry) == 0x000010, "Wrong size on AssetRegistryHelpers_GetAssetRegistry"); \ +static_assert(offsetof(AssetRegistryHelpers_GetAssetRegistry, ReturnValue) == 0x000000, "Member 'AssetRegistryHelpers_GetAssetRegistry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetBlueprintAssets \ +static_assert(alignof(AssetRegistryHelpers_GetBlueprintAssets) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetBlueprintAssets"); \ +static_assert(sizeof(AssetRegistryHelpers_GetBlueprintAssets) == 0x000160, "Wrong size on AssetRegistryHelpers_GetBlueprintAssets"); \ +static_assert(offsetof(AssetRegistryHelpers_GetBlueprintAssets, InFilter) == 0x000000, "Member 'AssetRegistryHelpers_GetBlueprintAssets::InFilter' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetBlueprintAssets, OutAssetData) == 0x000150, "Member 'AssetRegistryHelpers_GetBlueprintAssets::OutAssetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetClass \ +static_assert(alignof(AssetRegistryHelpers_GetClass) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetClass"); \ +static_assert(sizeof(AssetRegistryHelpers_GetClass) == 0x000070, "Wrong size on AssetRegistryHelpers_GetClass"); \ +static_assert(offsetof(AssetRegistryHelpers_GetClass, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_GetClass::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetClass, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_GetClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetExportTextName \ +static_assert(alignof(AssetRegistryHelpers_GetExportTextName) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetExportTextName"); \ +static_assert(sizeof(AssetRegistryHelpers_GetExportTextName) == 0x000078, "Wrong size on AssetRegistryHelpers_GetExportTextName"); \ +static_assert(offsetof(AssetRegistryHelpers_GetExportTextName, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_GetExportTextName::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetExportTextName, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_GetExportTextName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetFullName \ +static_assert(alignof(AssetRegistryHelpers_GetFullName) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetFullName"); \ +static_assert(sizeof(AssetRegistryHelpers_GetFullName) == 0x000078, "Wrong size on AssetRegistryHelpers_GetFullName"); \ +static_assert(offsetof(AssetRegistryHelpers_GetFullName, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_GetFullName::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetFullName, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_GetFullName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_GetTagValue \ +static_assert(alignof(AssetRegistryHelpers_GetTagValue) == 0x000008, "Wrong alignment on AssetRegistryHelpers_GetTagValue"); \ +static_assert(sizeof(AssetRegistryHelpers_GetTagValue) == 0x000088, "Wrong size on AssetRegistryHelpers_GetTagValue"); \ +static_assert(offsetof(AssetRegistryHelpers_GetTagValue, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_GetTagValue::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetTagValue, InTagName) == 0x000068, "Member 'AssetRegistryHelpers_GetTagValue::InTagName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetTagValue, OutTagValue) == 0x000070, "Member 'AssetRegistryHelpers_GetTagValue::OutTagValue' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_GetTagValue, ReturnValue) == 0x000080, "Member 'AssetRegistryHelpers_GetTagValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_IsAssetLoaded \ +static_assert(alignof(AssetRegistryHelpers_IsAssetLoaded) == 0x000008, "Wrong alignment on AssetRegistryHelpers_IsAssetLoaded"); \ +static_assert(sizeof(AssetRegistryHelpers_IsAssetLoaded) == 0x000070, "Wrong size on AssetRegistryHelpers_IsAssetLoaded"); \ +static_assert(offsetof(AssetRegistryHelpers_IsAssetLoaded, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_IsAssetLoaded::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_IsAssetLoaded, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_IsAssetLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_IsRedirector \ +static_assert(alignof(AssetRegistryHelpers_IsRedirector) == 0x000008, "Wrong alignment on AssetRegistryHelpers_IsRedirector"); \ +static_assert(sizeof(AssetRegistryHelpers_IsRedirector) == 0x000070, "Wrong size on AssetRegistryHelpers_IsRedirector"); \ +static_assert(offsetof(AssetRegistryHelpers_IsRedirector, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_IsRedirector::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_IsRedirector, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_IsRedirector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_IsUAsset \ +static_assert(alignof(AssetRegistryHelpers_IsUAsset) == 0x000008, "Wrong alignment on AssetRegistryHelpers_IsUAsset"); \ +static_assert(sizeof(AssetRegistryHelpers_IsUAsset) == 0x000070, "Wrong size on AssetRegistryHelpers_IsUAsset"); \ +static_assert(offsetof(AssetRegistryHelpers_IsUAsset, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_IsUAsset::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_IsUAsset, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_IsUAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_IsValid \ +static_assert(alignof(AssetRegistryHelpers_IsValid) == 0x000008, "Wrong alignment on AssetRegistryHelpers_IsValid"); \ +static_assert(sizeof(AssetRegistryHelpers_IsValid) == 0x000070, "Wrong size on AssetRegistryHelpers_IsValid"); \ +static_assert(offsetof(AssetRegistryHelpers_IsValid, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_IsValid::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_IsValid, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_SetFilterTagsAndValues \ +static_assert(alignof(AssetRegistryHelpers_SetFilterTagsAndValues) == 0x000008, "Wrong alignment on AssetRegistryHelpers_SetFilterTagsAndValues"); \ +static_assert(sizeof(AssetRegistryHelpers_SetFilterTagsAndValues) == 0x0002B0, "Wrong size on AssetRegistryHelpers_SetFilterTagsAndValues"); \ +static_assert(offsetof(AssetRegistryHelpers_SetFilterTagsAndValues, InFilter) == 0x000000, "Member 'AssetRegistryHelpers_SetFilterTagsAndValues::InFilter' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_SetFilterTagsAndValues, InTagsAndValues) == 0x000150, "Member 'AssetRegistryHelpers_SetFilterTagsAndValues::InTagsAndValues' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_SetFilterTagsAndValues, ReturnValue) == 0x000160, "Member 'AssetRegistryHelpers_SetFilterTagsAndValues::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistryHelpers_ToSoftObjectPath \ +static_assert(alignof(AssetRegistryHelpers_ToSoftObjectPath) == 0x000008, "Wrong alignment on AssetRegistryHelpers_ToSoftObjectPath"); \ +static_assert(sizeof(AssetRegistryHelpers_ToSoftObjectPath) == 0x000088, "Wrong size on AssetRegistryHelpers_ToSoftObjectPath"); \ +static_assert(offsetof(AssetRegistryHelpers_ToSoftObjectPath, InAssetData) == 0x000000, "Member 'AssetRegistryHelpers_ToSoftObjectPath::InAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistryHelpers_ToSoftObjectPath, ReturnValue) == 0x000068, "Member 'AssetRegistryHelpers_ToSoftObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetRegistryHelpers \ +static_assert(alignof(UAssetRegistryHelpers) == 0x000008, "Wrong alignment on UAssetRegistryHelpers"); \ +static_assert(sizeof(UAssetRegistryHelpers) == 0x000028, "Wrong size on UAssetRegistryHelpers"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_PrioritizeSearchPath \ +static_assert(alignof(AssetRegistry_PrioritizeSearchPath) == 0x000008, "Wrong alignment on AssetRegistry_PrioritizeSearchPath"); \ +static_assert(sizeof(AssetRegistry_PrioritizeSearchPath) == 0x000010, "Wrong size on AssetRegistry_PrioritizeSearchPath"); \ +static_assert(offsetof(AssetRegistry_PrioritizeSearchPath, PathToPrioritize) == 0x000000, "Member 'AssetRegistry_PrioritizeSearchPath::PathToPrioritize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_ScanFilesSynchronous \ +static_assert(alignof(AssetRegistry_ScanFilesSynchronous) == 0x000008, "Wrong alignment on AssetRegistry_ScanFilesSynchronous"); \ +static_assert(sizeof(AssetRegistry_ScanFilesSynchronous) == 0x000018, "Wrong size on AssetRegistry_ScanFilesSynchronous"); \ +static_assert(offsetof(AssetRegistry_ScanFilesSynchronous, InFilePaths) == 0x000000, "Member 'AssetRegistry_ScanFilesSynchronous::InFilePaths' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_ScanFilesSynchronous, bForceRescan) == 0x000010, "Member 'AssetRegistry_ScanFilesSynchronous::bForceRescan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_ScanModifiedAssetFiles \ +static_assert(alignof(AssetRegistry_ScanModifiedAssetFiles) == 0x000008, "Wrong alignment on AssetRegistry_ScanModifiedAssetFiles"); \ +static_assert(sizeof(AssetRegistry_ScanModifiedAssetFiles) == 0x000010, "Wrong size on AssetRegistry_ScanModifiedAssetFiles"); \ +static_assert(offsetof(AssetRegistry_ScanModifiedAssetFiles, InFilePaths) == 0x000000, "Member 'AssetRegistry_ScanModifiedAssetFiles::InFilePaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_ScanPathsSynchronous \ +static_assert(alignof(AssetRegistry_ScanPathsSynchronous) == 0x000008, "Wrong alignment on AssetRegistry_ScanPathsSynchronous"); \ +static_assert(sizeof(AssetRegistry_ScanPathsSynchronous) == 0x000018, "Wrong size on AssetRegistry_ScanPathsSynchronous"); \ +static_assert(offsetof(AssetRegistry_ScanPathsSynchronous, InPaths) == 0x000000, "Member 'AssetRegistry_ScanPathsSynchronous::InPaths' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_ScanPathsSynchronous, bForceRescan) == 0x000010, "Member 'AssetRegistry_ScanPathsSynchronous::bForceRescan' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_ScanPathsSynchronous, bIgnoreDenyListScanFilters) == 0x000011, "Member 'AssetRegistry_ScanPathsSynchronous::bIgnoreDenyListScanFilters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_SearchAllAssets \ +static_assert(alignof(AssetRegistry_SearchAllAssets) == 0x000001, "Wrong alignment on AssetRegistry_SearchAllAssets"); \ +static_assert(sizeof(AssetRegistry_SearchAllAssets) == 0x000001, "Wrong size on AssetRegistry_SearchAllAssets"); \ +static_assert(offsetof(AssetRegistry_SearchAllAssets, bSynchronousSearch) == 0x000000, "Member 'AssetRegistry_SearchAllAssets::bSynchronousSearch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_WaitForPackage \ +static_assert(alignof(AssetRegistry_WaitForPackage) == 0x000008, "Wrong alignment on AssetRegistry_WaitForPackage"); \ +static_assert(sizeof(AssetRegistry_WaitForPackage) == 0x000010, "Wrong size on AssetRegistry_WaitForPackage"); \ +static_assert(offsetof(AssetRegistry_WaitForPackage, PackageName) == 0x000000, "Member 'AssetRegistry_WaitForPackage::PackageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAllAssets \ +static_assert(alignof(AssetRegistry_GetAllAssets) == 0x000008, "Wrong alignment on AssetRegistry_GetAllAssets"); \ +static_assert(sizeof(AssetRegistry_GetAllAssets) == 0x000018, "Wrong size on AssetRegistry_GetAllAssets"); \ +static_assert(offsetof(AssetRegistry_GetAllAssets, OutAssetData) == 0x000000, "Member 'AssetRegistry_GetAllAssets::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAllAssets, bIncludeOnlyOnDiskAssets) == 0x000010, "Member 'AssetRegistry_GetAllAssets::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAllAssets, ReturnValue) == 0x000011, "Member 'AssetRegistry_GetAllAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAllCachedPaths \ +static_assert(alignof(AssetRegistry_GetAllCachedPaths) == 0x000008, "Wrong alignment on AssetRegistry_GetAllCachedPaths"); \ +static_assert(sizeof(AssetRegistry_GetAllCachedPaths) == 0x000010, "Wrong size on AssetRegistry_GetAllCachedPaths"); \ +static_assert(offsetof(AssetRegistry_GetAllCachedPaths, OutPathList) == 0x000000, "Member 'AssetRegistry_GetAllCachedPaths::OutPathList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAncestorClassNames \ +static_assert(alignof(AssetRegistry_GetAncestorClassNames) == 0x000008, "Wrong alignment on AssetRegistry_GetAncestorClassNames"); \ +static_assert(sizeof(AssetRegistry_GetAncestorClassNames) == 0x000028, "Wrong size on AssetRegistry_GetAncestorClassNames"); \ +static_assert(offsetof(AssetRegistry_GetAncestorClassNames, ClassPathName) == 0x000000, "Member 'AssetRegistry_GetAncestorClassNames::ClassPathName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAncestorClassNames, OutAncestorClassNames) == 0x000010, "Member 'AssetRegistry_GetAncestorClassNames::OutAncestorClassNames' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAncestorClassNames, ReturnValue) == 0x000020, "Member 'AssetRegistry_GetAncestorClassNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssetByObjectPath \ +static_assert(alignof(AssetRegistry_GetAssetByObjectPath) == 0x000008, "Wrong alignment on AssetRegistry_GetAssetByObjectPath"); \ +static_assert(sizeof(AssetRegistry_GetAssetByObjectPath) == 0x000078, "Wrong size on AssetRegistry_GetAssetByObjectPath"); \ +static_assert(offsetof(AssetRegistry_GetAssetByObjectPath, ObjectPath) == 0x000000, "Member 'AssetRegistry_GetAssetByObjectPath::ObjectPath' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetByObjectPath, bIncludeOnlyOnDiskAssets) == 0x000008, "Member 'AssetRegistry_GetAssetByObjectPath::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetByObjectPath, ReturnValue) == 0x000010, "Member 'AssetRegistry_GetAssetByObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssets \ +static_assert(alignof(AssetRegistry_GetAssets) == 0x000008, "Wrong alignment on AssetRegistry_GetAssets"); \ +static_assert(sizeof(AssetRegistry_GetAssets) == 0x000168, "Wrong size on AssetRegistry_GetAssets"); \ +static_assert(offsetof(AssetRegistry_GetAssets, Filter) == 0x000000, "Member 'AssetRegistry_GetAssets::Filter' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssets, OutAssetData) == 0x000150, "Member 'AssetRegistry_GetAssets::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssets, bSkipARFilteredAssets) == 0x000160, "Member 'AssetRegistry_GetAssets::bSkipARFilteredAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssets, ReturnValue) == 0x000161, "Member 'AssetRegistry_GetAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssetsByClass \ +static_assert(alignof(AssetRegistry_GetAssetsByClass) == 0x000008, "Wrong alignment on AssetRegistry_GetAssetsByClass"); \ +static_assert(sizeof(AssetRegistry_GetAssetsByClass) == 0x000028, "Wrong size on AssetRegistry_GetAssetsByClass"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByClass, ClassPathName) == 0x000000, "Member 'AssetRegistry_GetAssetsByClass::ClassPathName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByClass, OutAssetData) == 0x000010, "Member 'AssetRegistry_GetAssetsByClass::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByClass, bSearchSubClasses) == 0x000020, "Member 'AssetRegistry_GetAssetsByClass::bSearchSubClasses' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByClass, ReturnValue) == 0x000021, "Member 'AssetRegistry_GetAssetsByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssetsByPackageName \ +static_assert(alignof(AssetRegistry_GetAssetsByPackageName) == 0x000008, "Wrong alignment on AssetRegistry_GetAssetsByPackageName"); \ +static_assert(sizeof(AssetRegistry_GetAssetsByPackageName) == 0x000020, "Wrong size on AssetRegistry_GetAssetsByPackageName"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPackageName, PackageName) == 0x000000, "Member 'AssetRegistry_GetAssetsByPackageName::PackageName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPackageName, OutAssetData) == 0x000008, "Member 'AssetRegistry_GetAssetsByPackageName::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPackageName, bIncludeOnlyOnDiskAssets) == 0x000018, "Member 'AssetRegistry_GetAssetsByPackageName::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPackageName, bSkipARFilteredAssets) == 0x000019, "Member 'AssetRegistry_GetAssetsByPackageName::bSkipARFilteredAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPackageName, ReturnValue) == 0x00001A, "Member 'AssetRegistry_GetAssetsByPackageName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssetsByPath \ +static_assert(alignof(AssetRegistry_GetAssetsByPath) == 0x000008, "Wrong alignment on AssetRegistry_GetAssetsByPath"); \ +static_assert(sizeof(AssetRegistry_GetAssetsByPath) == 0x000020, "Wrong size on AssetRegistry_GetAssetsByPath"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPath, PackagePath) == 0x000000, "Member 'AssetRegistry_GetAssetsByPath::PackagePath' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPath, OutAssetData) == 0x000008, "Member 'AssetRegistry_GetAssetsByPath::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPath, bRecursive) == 0x000018, "Member 'AssetRegistry_GetAssetsByPath::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPath, bIncludeOnlyOnDiskAssets) == 0x000019, "Member 'AssetRegistry_GetAssetsByPath::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPath, ReturnValue) == 0x00001A, "Member 'AssetRegistry_GetAssetsByPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetAssetsByPaths \ +static_assert(alignof(AssetRegistry_GetAssetsByPaths) == 0x000008, "Wrong alignment on AssetRegistry_GetAssetsByPaths"); \ +static_assert(sizeof(AssetRegistry_GetAssetsByPaths) == 0x000028, "Wrong size on AssetRegistry_GetAssetsByPaths"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPaths, PackagePaths) == 0x000000, "Member 'AssetRegistry_GetAssetsByPaths::PackagePaths' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPaths, OutAssetData) == 0x000010, "Member 'AssetRegistry_GetAssetsByPaths::OutAssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPaths, bRecursive) == 0x000020, "Member 'AssetRegistry_GetAssetsByPaths::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPaths, bIncludeOnlyOnDiskAssets) == 0x000021, "Member 'AssetRegistry_GetAssetsByPaths::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetAssetsByPaths, ReturnValue) == 0x000022, "Member 'AssetRegistry_GetAssetsByPaths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetDerivedClassNames \ +static_assert(alignof(AssetRegistry_GetDerivedClassNames) == 0x000008, "Wrong alignment on AssetRegistry_GetDerivedClassNames"); \ +static_assert(sizeof(AssetRegistry_GetDerivedClassNames) == 0x0000B0, "Wrong size on AssetRegistry_GetDerivedClassNames"); \ +static_assert(offsetof(AssetRegistry_GetDerivedClassNames, ClassNames) == 0x000000, "Member 'AssetRegistry_GetDerivedClassNames::ClassNames' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetDerivedClassNames, ExcludedClassNames) == 0x000010, "Member 'AssetRegistry_GetDerivedClassNames::ExcludedClassNames' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetDerivedClassNames, OutDerivedClassNames) == 0x000060, "Member 'AssetRegistry_GetDerivedClassNames::OutDerivedClassNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_GetSubPaths \ +static_assert(alignof(AssetRegistry_GetSubPaths) == 0x000008, "Wrong alignment on AssetRegistry_GetSubPaths"); \ +static_assert(sizeof(AssetRegistry_GetSubPaths) == 0x000028, "Wrong size on AssetRegistry_GetSubPaths"); \ +static_assert(offsetof(AssetRegistry_GetSubPaths, InBasePath) == 0x000000, "Member 'AssetRegistry_GetSubPaths::InBasePath' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetSubPaths, OutPathList) == 0x000010, "Member 'AssetRegistry_GetSubPaths::OutPathList' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_GetSubPaths, bInRecurse) == 0x000020, "Member 'AssetRegistry_GetSubPaths::bInRecurse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_HasAssets \ +static_assert(alignof(AssetRegistry_HasAssets) == 0x000004, "Wrong alignment on AssetRegistry_HasAssets"); \ +static_assert(sizeof(AssetRegistry_HasAssets) == 0x00000C, "Wrong size on AssetRegistry_HasAssets"); \ +static_assert(offsetof(AssetRegistry_HasAssets, PackagePath) == 0x000000, "Member 'AssetRegistry_HasAssets::PackagePath' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_HasAssets, bRecursive) == 0x000008, "Member 'AssetRegistry_HasAssets::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_HasAssets, ReturnValue) == 0x000009, "Member 'AssetRegistry_HasAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_IsLoadingAssets \ +static_assert(alignof(AssetRegistry_IsLoadingAssets) == 0x000001, "Wrong alignment on AssetRegistry_IsLoadingAssets"); \ +static_assert(sizeof(AssetRegistry_IsLoadingAssets) == 0x000001, "Wrong size on AssetRegistry_IsLoadingAssets"); \ +static_assert(offsetof(AssetRegistry_IsLoadingAssets, ReturnValue) == 0x000000, "Member 'AssetRegistry_IsLoadingAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_IsSearchAllAssets \ +static_assert(alignof(AssetRegistry_IsSearchAllAssets) == 0x000001, "Wrong alignment on AssetRegistry_IsSearchAllAssets"); \ +static_assert(sizeof(AssetRegistry_IsSearchAllAssets) == 0x000001, "Wrong size on AssetRegistry_IsSearchAllAssets"); \ +static_assert(offsetof(AssetRegistry_IsSearchAllAssets, ReturnValue) == 0x000000, "Member 'AssetRegistry_IsSearchAllAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_IsSearchAsync \ +static_assert(alignof(AssetRegistry_IsSearchAsync) == 0x000001, "Wrong alignment on AssetRegistry_IsSearchAsync"); \ +static_assert(sizeof(AssetRegistry_IsSearchAsync) == 0x000001, "Wrong size on AssetRegistry_IsSearchAsync"); \ +static_assert(offsetof(AssetRegistry_IsSearchAsync, ReturnValue) == 0x000000, "Member 'AssetRegistry_IsSearchAsync::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_K2_GetAssetByObjectPath \ +static_assert(alignof(AssetRegistry_K2_GetAssetByObjectPath) == 0x000008, "Wrong alignment on AssetRegistry_K2_GetAssetByObjectPath"); \ +static_assert(sizeof(AssetRegistry_K2_GetAssetByObjectPath) == 0x000090, "Wrong size on AssetRegistry_K2_GetAssetByObjectPath"); \ +static_assert(offsetof(AssetRegistry_K2_GetAssetByObjectPath, ObjectPath) == 0x000000, "Member 'AssetRegistry_K2_GetAssetByObjectPath::ObjectPath' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetAssetByObjectPath, bIncludeOnlyOnDiskAssets) == 0x000020, "Member 'AssetRegistry_K2_GetAssetByObjectPath::bIncludeOnlyOnDiskAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetAssetByObjectPath, bSkipARFilteredAssets) == 0x000021, "Member 'AssetRegistry_K2_GetAssetByObjectPath::bSkipARFilteredAssets' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetAssetByObjectPath, ReturnValue) == 0x000028, "Member 'AssetRegistry_K2_GetAssetByObjectPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_K2_GetDependencies \ +static_assert(alignof(AssetRegistry_K2_GetDependencies) == 0x000008, "Wrong alignment on AssetRegistry_K2_GetDependencies"); \ +static_assert(sizeof(AssetRegistry_K2_GetDependencies) == 0x000028, "Wrong size on AssetRegistry_K2_GetDependencies"); \ +static_assert(offsetof(AssetRegistry_K2_GetDependencies, PackageName) == 0x000000, "Member 'AssetRegistry_K2_GetDependencies::PackageName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetDependencies, DependencyOptions) == 0x000008, "Member 'AssetRegistry_K2_GetDependencies::DependencyOptions' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetDependencies, OutDependencies) == 0x000010, "Member 'AssetRegistry_K2_GetDependencies::OutDependencies' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetDependencies, ReturnValue) == 0x000020, "Member 'AssetRegistry_K2_GetDependencies::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_K2_GetReferencers \ +static_assert(alignof(AssetRegistry_K2_GetReferencers) == 0x000008, "Wrong alignment on AssetRegistry_K2_GetReferencers"); \ +static_assert(sizeof(AssetRegistry_K2_GetReferencers) == 0x000028, "Wrong size on AssetRegistry_K2_GetReferencers"); \ +static_assert(offsetof(AssetRegistry_K2_GetReferencers, PackageName) == 0x000000, "Member 'AssetRegistry_K2_GetReferencers::PackageName' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetReferencers, ReferenceOptions) == 0x000008, "Member 'AssetRegistry_K2_GetReferencers::ReferenceOptions' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetReferencers, OutReferencers) == 0x000010, "Member 'AssetRegistry_K2_GetReferencers::OutReferencers' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_K2_GetReferencers, ReturnValue) == 0x000020, "Member 'AssetRegistry_K2_GetReferencers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_RunAssetsThroughFilter \ +static_assert(alignof(AssetRegistry_RunAssetsThroughFilter) == 0x000008, "Wrong alignment on AssetRegistry_RunAssetsThroughFilter"); \ +static_assert(sizeof(AssetRegistry_RunAssetsThroughFilter) == 0x000160, "Wrong size on AssetRegistry_RunAssetsThroughFilter"); \ +static_assert(offsetof(AssetRegistry_RunAssetsThroughFilter, AssetDataList) == 0x000000, "Member 'AssetRegistry_RunAssetsThroughFilter::AssetDataList' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_RunAssetsThroughFilter, Filter) == 0x000010, "Member 'AssetRegistry_RunAssetsThroughFilter::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetRegistry_UseFilterToExcludeAssets \ +static_assert(alignof(AssetRegistry_UseFilterToExcludeAssets) == 0x000008, "Wrong alignment on AssetRegistry_UseFilterToExcludeAssets"); \ +static_assert(sizeof(AssetRegistry_UseFilterToExcludeAssets) == 0x000160, "Wrong size on AssetRegistry_UseFilterToExcludeAssets"); \ +static_assert(offsetof(AssetRegistry_UseFilterToExcludeAssets, AssetDataList) == 0x000000, "Member 'AssetRegistry_UseFilterToExcludeAssets::AssetDataList' has a wrong offset!"); \ +static_assert(offsetof(AssetRegistry_UseFilterToExcludeAssets, Filter) == 0x000010, "Member 'AssetRegistry_UseFilterToExcludeAssets::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAssetRegistry \ +static_assert(alignof(IAssetRegistry) == 0x000001, "Wrong alignment on IAssetRegistry"); \ +static_assert(sizeof(IAssetRegistry) == 0x000001, "Wrong size on IAssetRegistry"); \ + +#define DUMPER7_ASSERTS_UAssetRegistryImpl \ +static_assert(alignof(UAssetRegistryImpl) == 0x000008, "Wrong alignment on UAssetRegistryImpl"); \ +static_assert(sizeof(UAssetRegistryImpl) == 0x000D78, "Wrong size on UAssetRegistryImpl"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation \ +static_assert(alignof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation) == 0x000008, "Wrong alignment on BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation"); \ +static_assert(sizeof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation) == 0x0004F8, "Wrong size on BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, Temp_object_Variable) == 0x000018, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_RandomFloatInRange_ReturnValue) == 0x000028, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_MakeRotator_ReturnValue) == 0x000030, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_K2_AddRelativeRotation_SweepHitResult) == 0x000048, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_K2_AddRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_GetForwardVector_ReturnValue) == 0x000130, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000148, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000160, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000178, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000190, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutHit) == 0x0001A8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutPathPositions) == 0x000290, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutPathPositions' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutLastTraceDestination) == 0x0002A0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_OutLastTraceDestination' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_ReturnValue) == 0x0002B8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Blueprint_PredictProjectilePath_ByTraceChannel_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_bBlockingHit) == 0x0002B9, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002BA, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_Time) == 0x0002BC, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_Distance) == 0x0002C0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_Location) == 0x0002C8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_ImpactPoint) == 0x0002E0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_Normal) == 0x0002F8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_ImpactNormal) == 0x000310, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_PhysMat) == 0x000328, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_HitActor) == 0x000330, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_HitComponent) == 0x000338, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_HitBoneName) == 0x000340, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_BoneName) == 0x000348, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_HitItem) == 0x000350, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_ElementIndex) == 0x000354, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_FaceIndex) == 0x000358, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_TraceStart) == 0x000360, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_BreakHitResult_TraceEnd) == 0x000378, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000390, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_FClamp_ReturnValue) == 0x0003A8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0003B0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_MakeVector_ReturnValue) == 0x0003C8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_K2_SetWorldLocationAndRotation_SweepHitResult) == 0x0003E0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_K2_SetWorldLocationAndRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x0004C8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0004E0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_FClamp_Value_ImplicitCast) == 0x0004E8, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_SetFloatParameter_Param_ImplicitCast) == 0x0004F0, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_SetFloatParameter_Param_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation, CallFunc_SetFloatParameter_Param_ImplicitCast_1) == 0x0004F4, "Member 'BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C_PredictSplashLocation::CallFunc_SetFloatParameter_Param_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C \ +static_assert(alignof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C) == 0x000008, "Wrong alignment on ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C"); \ +static_assert(sizeof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C) == 0x000338, "Wrong size on ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C"); \ +static_assert(offsetof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C, WetPuddle) == 0x000310, "Member 'ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C::WetPuddle' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C, NS_PipeWater_Splashes) == 0x000318, "Member 'ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C::NS_PipeWater_Splashes' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C, Decal) == 0x000320, "Member 'ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C::Decal' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C, SplashesEnabled_) == 0x000328, "Member 'ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C::SplashesEnabled_' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C, SplashPredictionStrength) == 0x000330, "Member 'ABP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_C::SplashPredictionStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer \ +static_assert(alignof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer) == 0x000008, "Wrong alignment on UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer"); \ +static_assert(sizeof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer) == 0x000028, "Wrong size on UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer, EntryPoint) == 0x000000, "Member 'UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer, K2Node_Event_InState) == 0x000010, "Member 'UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'UnBlockAllAbilitiesOnPlayer_C_ExecuteUbergraph_UnBlockAllAbilitiesOnPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute \ +static_assert(alignof(UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'UnBlockAllAbilitiesOnPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnBlockAllAbilitiesOnPlayer_C \ +static_assert(alignof(UUnBlockAllAbilitiesOnPlayer_C) == 0x000008, "Wrong alignment on UUnBlockAllAbilitiesOnPlayer_C"); \ +static_assert(sizeof(UUnBlockAllAbilitiesOnPlayer_C) == 0x000090, "Wrong size on UUnBlockAllAbilitiesOnPlayer_C"); \ +static_assert(offsetof(UUnBlockAllAbilitiesOnPlayer_C, UberGraphFrame) == 0x000088, "Member 'UUnBlockAllAbilitiesOnPlayer_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Light_Uppercut_C \ +static_assert(alignof(UGA_PlayerPunch_Light_Uppercut_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Light_Uppercut_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Light_Uppercut_C) == 0x000948, "Wrong size on UGA_PlayerPunch_Light_Uppercut_C"); \ + +#define DUMPER7_ASSERTS_FDataStreamDefinition \ +static_assert(alignof(FDataStreamDefinition) == 0x000008, "Wrong alignment on FDataStreamDefinition"); \ +static_assert(sizeof(FDataStreamDefinition) == 0x000020, "Wrong size on FDataStreamDefinition"); \ +static_assert(offsetof(FDataStreamDefinition, DataStreamName) == 0x000000, "Member 'FDataStreamDefinition::DataStreamName' has a wrong offset!"); \ +static_assert(offsetof(FDataStreamDefinition, ClassName) == 0x000008, "Member 'FDataStreamDefinition::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FDataStreamDefinition, Class) == 0x000010, "Member 'FDataStreamDefinition::Class' has a wrong offset!"); \ +static_assert(offsetof(FDataStreamDefinition, DefaultSendStatus) == 0x000018, "Member 'FDataStreamDefinition::DefaultSendStatus' has a wrong offset!"); \ +static_assert(offsetof(FDataStreamDefinition, bAutoCreate) == 0x000019, "Member 'FDataStreamDefinition::bAutoCreate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetSerializerConfig \ +static_assert(alignof(FNetSerializerConfig) == 0x000008, "Wrong alignment on FNetSerializerConfig"); \ +static_assert(sizeof(FNetSerializerConfig) == 0x000010, "Wrong size on FNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FDateTimeNetSerializerConfig \ +static_assert(alignof(FDateTimeNetSerializerConfig) == 0x000008, "Wrong alignment on FDateTimeNetSerializerConfig"); \ +static_assert(sizeof(FDateTimeNetSerializerConfig) == 0x000010, "Wrong size on FDateTimeNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FEnumInt8NetSerializerConfig \ +static_assert(alignof(FEnumInt8NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumInt8NetSerializerConfig"); \ +static_assert(sizeof(FEnumInt8NetSerializerConfig) == 0x000020, "Wrong size on FEnumInt8NetSerializerConfig"); \ +static_assert(offsetof(FEnumInt8NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumInt8NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt8NetSerializerConfig, UpperBound) == 0x000011, "Member 'FEnumInt8NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt8NetSerializerConfig, BitCount) == 0x000012, "Member 'FEnumInt8NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumInt16NetSerializerConfig \ +static_assert(alignof(FEnumInt16NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumInt16NetSerializerConfig"); \ +static_assert(sizeof(FEnumInt16NetSerializerConfig) == 0x000020, "Wrong size on FEnumInt16NetSerializerConfig"); \ +static_assert(offsetof(FEnumInt16NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumInt16NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt16NetSerializerConfig, UpperBound) == 0x000012, "Member 'FEnumInt16NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt16NetSerializerConfig, BitCount) == 0x000014, "Member 'FEnumInt16NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumInt32NetSerializerConfig \ +static_assert(alignof(FEnumInt32NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumInt32NetSerializerConfig"); \ +static_assert(sizeof(FEnumInt32NetSerializerConfig) == 0x000028, "Wrong size on FEnumInt32NetSerializerConfig"); \ +static_assert(offsetof(FEnumInt32NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumInt32NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt32NetSerializerConfig, UpperBound) == 0x000014, "Member 'FEnumInt32NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt32NetSerializerConfig, BitCount) == 0x000018, "Member 'FEnumInt32NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumInt64NetSerializerConfig \ +static_assert(alignof(FEnumInt64NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumInt64NetSerializerConfig"); \ +static_assert(sizeof(FEnumInt64NetSerializerConfig) == 0x000030, "Wrong size on FEnumInt64NetSerializerConfig"); \ +static_assert(offsetof(FEnumInt64NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumInt64NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt64NetSerializerConfig, UpperBound) == 0x000018, "Member 'FEnumInt64NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumInt64NetSerializerConfig, BitCount) == 0x000020, "Member 'FEnumInt64NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumUint8NetSerializerConfig \ +static_assert(alignof(FEnumUint8NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumUint8NetSerializerConfig"); \ +static_assert(sizeof(FEnumUint8NetSerializerConfig) == 0x000020, "Wrong size on FEnumUint8NetSerializerConfig"); \ +static_assert(offsetof(FEnumUint8NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumUint8NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint8NetSerializerConfig, UpperBound) == 0x000011, "Member 'FEnumUint8NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint8NetSerializerConfig, BitCount) == 0x000012, "Member 'FEnumUint8NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumUint16NetSerializerConfig \ +static_assert(alignof(FEnumUint16NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumUint16NetSerializerConfig"); \ +static_assert(sizeof(FEnumUint16NetSerializerConfig) == 0x000020, "Wrong size on FEnumUint16NetSerializerConfig"); \ +static_assert(offsetof(FEnumUint16NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumUint16NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint16NetSerializerConfig, UpperBound) == 0x000012, "Member 'FEnumUint16NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint16NetSerializerConfig, BitCount) == 0x000014, "Member 'FEnumUint16NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumUint32NetSerializerConfig \ +static_assert(alignof(FEnumUint32NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumUint32NetSerializerConfig"); \ +static_assert(sizeof(FEnumUint32NetSerializerConfig) == 0x000028, "Wrong size on FEnumUint32NetSerializerConfig"); \ +static_assert(offsetof(FEnumUint32NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumUint32NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint32NetSerializerConfig, UpperBound) == 0x000014, "Member 'FEnumUint32NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint32NetSerializerConfig, BitCount) == 0x000018, "Member 'FEnumUint32NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumUint64NetSerializerConfig \ +static_assert(alignof(FEnumUint64NetSerializerConfig) == 0x000008, "Wrong alignment on FEnumUint64NetSerializerConfig"); \ +static_assert(sizeof(FEnumUint64NetSerializerConfig) == 0x000030, "Wrong size on FEnumUint64NetSerializerConfig"); \ +static_assert(offsetof(FEnumUint64NetSerializerConfig, LowerBound) == 0x000010, "Member 'FEnumUint64NetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint64NetSerializerConfig, UpperBound) == 0x000018, "Member 'FEnumUint64NetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FEnumUint64NetSerializerConfig, BitCount) == 0x000020, "Member 'FEnumUint64NetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatNetSerializerConfig \ +static_assert(alignof(FFloatNetSerializerConfig) == 0x000008, "Wrong alignment on FFloatNetSerializerConfig"); \ +static_assert(sizeof(FFloatNetSerializerConfig) == 0x000010, "Wrong size on FFloatNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FDoubleNetSerializerConfig \ +static_assert(alignof(FDoubleNetSerializerConfig) == 0x000008, "Wrong alignment on FDoubleNetSerializerConfig"); \ +static_assert(sizeof(FDoubleNetSerializerConfig) == 0x000010, "Wrong size on FDoubleNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGuidNetSerializerConfig \ +static_assert(alignof(FGuidNetSerializerConfig) == 0x000008, "Wrong alignment on FGuidNetSerializerConfig"); \ +static_assert(sizeof(FGuidNetSerializerConfig) == 0x000010, "Wrong size on FGuidNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FBitfieldNetSerializerConfig \ +static_assert(alignof(FBitfieldNetSerializerConfig) == 0x000008, "Wrong alignment on FBitfieldNetSerializerConfig"); \ +static_assert(sizeof(FBitfieldNetSerializerConfig) == 0x000018, "Wrong size on FBitfieldNetSerializerConfig"); \ +static_assert(offsetof(FBitfieldNetSerializerConfig, BitMask) == 0x000010, "Member 'FBitfieldNetSerializerConfig::BitMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArrayPropertyNetSerializerConfig \ +static_assert(alignof(FArrayPropertyNetSerializerConfig) == 0x000008, "Wrong alignment on FArrayPropertyNetSerializerConfig"); \ +static_assert(sizeof(FArrayPropertyNetSerializerConfig) == 0x000040, "Wrong size on FArrayPropertyNetSerializerConfig"); \ +static_assert(offsetof(FArrayPropertyNetSerializerConfig, MaxElementCount) == 0x000010, "Member 'FArrayPropertyNetSerializerConfig::MaxElementCount' has a wrong offset!"); \ +static_assert(offsetof(FArrayPropertyNetSerializerConfig, ElementCountBitCount) == 0x000012, "Member 'FArrayPropertyNetSerializerConfig::ElementCountBitCount' has a wrong offset!"); \ +static_assert(offsetof(FArrayPropertyNetSerializerConfig, Property) == 0x000018, "Member 'FArrayPropertyNetSerializerConfig::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLastResortPropertyNetSerializerConfig \ +static_assert(alignof(FLastResortPropertyNetSerializerConfig) == 0x000008, "Wrong alignment on FLastResortPropertyNetSerializerConfig"); \ +static_assert(sizeof(FLastResortPropertyNetSerializerConfig) == 0x000038, "Wrong size on FLastResortPropertyNetSerializerConfig"); \ +static_assert(offsetof(FLastResortPropertyNetSerializerConfig, Property) == 0x000010, "Member 'FLastResortPropertyNetSerializerConfig::Property' has a wrong offset!"); \ +static_assert(offsetof(FLastResortPropertyNetSerializerConfig, MaxAllowedObjectReferences) == 0x000030, "Member 'FLastResortPropertyNetSerializerConfig::MaxAllowedObjectReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetRoleNetSerializerConfig \ +static_assert(alignof(FNetRoleNetSerializerConfig) == 0x000008, "Wrong alignment on FNetRoleNetSerializerConfig"); \ +static_assert(sizeof(FNetRoleNetSerializerConfig) == 0x000028, "Wrong size on FNetRoleNetSerializerConfig"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, RelativeInternalOffsetToOtherRole) == 0x000010, "Member 'FNetRoleNetSerializerConfig::RelativeInternalOffsetToOtherRole' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, RelativeExternalOffsetToOtherRole) == 0x000014, "Member 'FNetRoleNetSerializerConfig::RelativeExternalOffsetToOtherRole' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, LowerBound) == 0x000018, "Member 'FNetRoleNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, UpperBound) == 0x000019, "Member 'FNetRoleNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, BitCount) == 0x00001A, "Member 'FNetRoleNetSerializerConfig::BitCount' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, AutonomousProxyValue) == 0x00001B, "Member 'FNetRoleNetSerializerConfig::AutonomousProxyValue' has a wrong offset!"); \ +static_assert(offsetof(FNetRoleNetSerializerConfig, SimulatedProxyValue) == 0x00001C, "Member 'FNetRoleNetSerializerConfig::SimulatedProxyValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldPathNetSerializerConfig \ +static_assert(alignof(FFieldPathNetSerializerConfig) == 0x000008, "Wrong alignment on FFieldPathNetSerializerConfig"); \ +static_assert(sizeof(FFieldPathNetSerializerConfig) == 0x000030, "Wrong size on FFieldPathNetSerializerConfig"); \ +static_assert(offsetof(FFieldPathNetSerializerConfig, Property) == 0x000010, "Member 'FFieldPathNetSerializerConfig::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldPathNetSerializerSerializationHelper \ +static_assert(alignof(FFieldPathNetSerializerSerializationHelper) == 0x000008, "Wrong alignment on FFieldPathNetSerializerSerializationHelper"); \ +static_assert(sizeof(FFieldPathNetSerializerSerializationHelper) == 0x000018, "Wrong size on FFieldPathNetSerializerSerializationHelper"); \ +static_assert(offsetof(FFieldPathNetSerializerSerializationHelper, Owner) == 0x000000, "Member 'FFieldPathNetSerializerSerializationHelper::Owner' has a wrong offset!"); \ +static_assert(offsetof(FFieldPathNetSerializerSerializationHelper, PropertyPath) == 0x000008, "Member 'FFieldPathNetSerializerSerializationHelper::PropertyPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntNetSerializerConfig \ +static_assert(alignof(FIntNetSerializerConfig) == 0x000008, "Wrong alignment on FIntNetSerializerConfig"); \ +static_assert(sizeof(FIntNetSerializerConfig) == 0x000018, "Wrong size on FIntNetSerializerConfig"); \ +static_assert(offsetof(FIntNetSerializerConfig, BitCount) == 0x000010, "Member 'FIntNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt8RangeNetSerializerConfig \ +static_assert(alignof(FInt8RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FInt8RangeNetSerializerConfig"); \ +static_assert(sizeof(FInt8RangeNetSerializerConfig) == 0x000018, "Wrong size on FInt8RangeNetSerializerConfig"); \ +static_assert(offsetof(FInt8RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FInt8RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FInt8RangeNetSerializerConfig, UpperBound) == 0x000011, "Member 'FInt8RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FInt8RangeNetSerializerConfig, BitCount) == 0x000012, "Member 'FInt8RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt16RangeNetSerializerConfig \ +static_assert(alignof(FInt16RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FInt16RangeNetSerializerConfig"); \ +static_assert(sizeof(FInt16RangeNetSerializerConfig) == 0x000018, "Wrong size on FInt16RangeNetSerializerConfig"); \ +static_assert(offsetof(FInt16RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FInt16RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FInt16RangeNetSerializerConfig, UpperBound) == 0x000012, "Member 'FInt16RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FInt16RangeNetSerializerConfig, BitCount) == 0x000014, "Member 'FInt16RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt32RangeNetSerializerConfig \ +static_assert(alignof(FInt32RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FInt32RangeNetSerializerConfig"); \ +static_assert(sizeof(FInt32RangeNetSerializerConfig) == 0x000020, "Wrong size on FInt32RangeNetSerializerConfig"); \ +static_assert(offsetof(FInt32RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FInt32RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FInt32RangeNetSerializerConfig, UpperBound) == 0x000014, "Member 'FInt32RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FInt32RangeNetSerializerConfig, BitCount) == 0x000018, "Member 'FInt32RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInt64RangeNetSerializerConfig \ +static_assert(alignof(FInt64RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FInt64RangeNetSerializerConfig"); \ +static_assert(sizeof(FInt64RangeNetSerializerConfig) == 0x000028, "Wrong size on FInt64RangeNetSerializerConfig"); \ +static_assert(offsetof(FInt64RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FInt64RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FInt64RangeNetSerializerConfig, UpperBound) == 0x000018, "Member 'FInt64RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FInt64RangeNetSerializerConfig, BitCount) == 0x000020, "Member 'FInt64RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIrisFastArraySerializer \ +static_assert(alignof(FIrisFastArraySerializer) == 0x000008, "Wrong alignment on FIrisFastArraySerializer"); \ +static_assert(sizeof(FIrisFastArraySerializer) == 0x000120, "Wrong size on FIrisFastArraySerializer"); \ +static_assert(offsetof(FIrisFastArraySerializer, ChangeMaskStorage) == 0x00010C, "Member 'FIrisFastArraySerializer::ChangeMaskStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetBlobHandlerDefinition \ +static_assert(alignof(FNetBlobHandlerDefinition) == 0x000004, "Wrong alignment on FNetBlobHandlerDefinition"); \ +static_assert(sizeof(FNetBlobHandlerDefinition) == 0x000008, "Wrong size on FNetBlobHandlerDefinition"); \ +static_assert(offsetof(FNetBlobHandlerDefinition, ClassName) == 0x000000, "Member 'FNetBlobHandlerDefinition::ClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetObjectFilterDefinition \ +static_assert(alignof(FNetObjectFilterDefinition) == 0x000004, "Wrong alignment on FNetObjectFilterDefinition"); \ +static_assert(sizeof(FNetObjectFilterDefinition) == 0x000018, "Wrong size on FNetObjectFilterDefinition"); \ +static_assert(offsetof(FNetObjectFilterDefinition, FilterName) == 0x000000, "Member 'FNetObjectFilterDefinition::FilterName' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectFilterDefinition, ClassName) == 0x000008, "Member 'FNetObjectFilterDefinition::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectFilterDefinition, ConfigClassName) == 0x000010, "Member 'FNetObjectFilterDefinition::ConfigClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNetObjectPrioritizerDefinition \ +static_assert(alignof(FNetObjectPrioritizerDefinition) == 0x000008, "Wrong alignment on FNetObjectPrioritizerDefinition"); \ +static_assert(sizeof(FNetObjectPrioritizerDefinition) == 0x000028, "Wrong size on FNetObjectPrioritizerDefinition"); \ +static_assert(offsetof(FNetObjectPrioritizerDefinition, PrioritizerName) == 0x000000, "Member 'FNetObjectPrioritizerDefinition::PrioritizerName' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectPrioritizerDefinition, ClassName) == 0x000008, "Member 'FNetObjectPrioritizerDefinition::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectPrioritizerDefinition, Class) == 0x000010, "Member 'FNetObjectPrioritizerDefinition::Class' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectPrioritizerDefinition, ConfigClassName) == 0x000018, "Member 'FNetObjectPrioritizerDefinition::ConfigClassName' has a wrong offset!"); \ +static_assert(offsetof(FNetObjectPrioritizerDefinition, ConfigClass) == 0x000020, "Member 'FNetObjectPrioritizerDefinition::ConfigClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolNetSerializerConfig \ +static_assert(alignof(FBoolNetSerializerConfig) == 0x000008, "Wrong alignment on FBoolNetSerializerConfig"); \ +static_assert(sizeof(FBoolNetSerializerConfig) == 0x000010, "Wrong size on FBoolNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FStructNetSerializerConfig \ +static_assert(alignof(FStructNetSerializerConfig) == 0x000008, "Wrong alignment on FStructNetSerializerConfig"); \ +static_assert(sizeof(FStructNetSerializerConfig) == 0x000018, "Wrong size on FStructNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FNopNetSerializerConfig \ +static_assert(alignof(FNopNetSerializerConfig) == 0x000008, "Wrong alignment on FNopNetSerializerConfig"); \ +static_assert(sizeof(FNopNetSerializerConfig) == 0x000010, "Wrong size on FNopNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FObjectNetSerializerConfig \ +static_assert(alignof(FObjectNetSerializerConfig) == 0x000008, "Wrong alignment on FObjectNetSerializerConfig"); \ +static_assert(sizeof(FObjectNetSerializerConfig) == 0x000010, "Wrong size on FObjectNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FWeakObjectNetSerializerConfig \ +static_assert(alignof(FWeakObjectNetSerializerConfig) == 0x000008, "Wrong alignment on FWeakObjectNetSerializerConfig"); \ +static_assert(sizeof(FWeakObjectNetSerializerConfig) == 0x000010, "Wrong size on FWeakObjectNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FScriptInterfaceNetSerializerConfig \ +static_assert(alignof(FScriptInterfaceNetSerializerConfig) == 0x000008, "Wrong alignment on FScriptInterfaceNetSerializerConfig"); \ +static_assert(sizeof(FScriptInterfaceNetSerializerConfig) == 0x000018, "Wrong size on FScriptInterfaceNetSerializerConfig"); \ +static_assert(offsetof(FScriptInterfaceNetSerializerConfig, InterfaceClass) == 0x000010, "Member 'FScriptInterfaceNetSerializerConfig::InterfaceClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectReplicationBridgePollConfig \ +static_assert(alignof(FObjectReplicationBridgePollConfig) == 0x000004, "Wrong alignment on FObjectReplicationBridgePollConfig"); \ +static_assert(sizeof(FObjectReplicationBridgePollConfig) == 0x000010, "Wrong size on FObjectReplicationBridgePollConfig"); \ +static_assert(offsetof(FObjectReplicationBridgePollConfig, ClassName) == 0x000000, "Member 'FObjectReplicationBridgePollConfig::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgePollConfig, PollFrequency) == 0x000008, "Member 'FObjectReplicationBridgePollConfig::PollFrequency' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgePollConfig, bIncludeSubclasses) == 0x00000C, "Member 'FObjectReplicationBridgePollConfig::bIncludeSubclasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectReplicationBridgeFilterConfig \ +static_assert(alignof(FObjectReplicationBridgeFilterConfig) == 0x000004, "Wrong alignment on FObjectReplicationBridgeFilterConfig"); \ +static_assert(sizeof(FObjectReplicationBridgeFilterConfig) == 0x000010, "Wrong size on FObjectReplicationBridgeFilterConfig"); \ +static_assert(offsetof(FObjectReplicationBridgeFilterConfig, ClassName) == 0x000000, "Member 'FObjectReplicationBridgeFilterConfig::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgeFilterConfig, DynamicFilterName) == 0x000008, "Member 'FObjectReplicationBridgeFilterConfig::DynamicFilterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectReplicationBridgePrioritizerConfig \ +static_assert(alignof(FObjectReplicationBridgePrioritizerConfig) == 0x000004, "Wrong alignment on FObjectReplicationBridgePrioritizerConfig"); \ +static_assert(sizeof(FObjectReplicationBridgePrioritizerConfig) == 0x000014, "Wrong size on FObjectReplicationBridgePrioritizerConfig"); \ +static_assert(offsetof(FObjectReplicationBridgePrioritizerConfig, ClassName) == 0x000000, "Member 'FObjectReplicationBridgePrioritizerConfig::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgePrioritizerConfig, PrioritizerName) == 0x000008, "Member 'FObjectReplicationBridgePrioritizerConfig::PrioritizerName' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgePrioritizerConfig, bForceEnableOnAllInstances) == 0x000010, "Member 'FObjectReplicationBridgePrioritizerConfig::bForceEnableOnAllInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectReplicationBridgeDeltaCompressionConfig \ +static_assert(alignof(FObjectReplicationBridgeDeltaCompressionConfig) == 0x000004, "Wrong alignment on FObjectReplicationBridgeDeltaCompressionConfig"); \ +static_assert(sizeof(FObjectReplicationBridgeDeltaCompressionConfig) == 0x00000C, "Wrong size on FObjectReplicationBridgeDeltaCompressionConfig"); \ +static_assert(offsetof(FObjectReplicationBridgeDeltaCompressionConfig, ClassName) == 0x000000, "Member 'FObjectReplicationBridgeDeltaCompressionConfig::ClassName' has a wrong offset!"); \ +static_assert(offsetof(FObjectReplicationBridgeDeltaCompressionConfig, bEnableDeltaCompression) == 0x000008, "Member 'FObjectReplicationBridgeDeltaCompressionConfig::bEnableDeltaCompression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPackedInt64NetSerializerConfig \ +static_assert(alignof(FPackedInt64NetSerializerConfig) == 0x000008, "Wrong alignment on FPackedInt64NetSerializerConfig"); \ +static_assert(sizeof(FPackedInt64NetSerializerConfig) == 0x000010, "Wrong size on FPackedInt64NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPackedUint64NetSerializerConfig \ +static_assert(alignof(FPackedUint64NetSerializerConfig) == 0x000008, "Wrong alignment on FPackedUint64NetSerializerConfig"); \ +static_assert(sizeof(FPackedUint64NetSerializerConfig) == 0x000010, "Wrong size on FPackedUint64NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPackedInt32NetSerializerConfig \ +static_assert(alignof(FPackedInt32NetSerializerConfig) == 0x000008, "Wrong alignment on FPackedInt32NetSerializerConfig"); \ +static_assert(sizeof(FPackedInt32NetSerializerConfig) == 0x000010, "Wrong size on FPackedInt32NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPackedUint32NetSerializerConfig \ +static_assert(alignof(FPackedUint32NetSerializerConfig) == 0x000008, "Wrong alignment on FPackedUint32NetSerializerConfig"); \ +static_assert(sizeof(FPackedUint32NetSerializerConfig) == 0x000010, "Wrong size on FPackedUint32NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVectorNetQuantizeNetSerializerConfig \ +static_assert(alignof(FVectorNetQuantizeNetSerializerConfig) == 0x000008, "Wrong alignment on FVectorNetQuantizeNetSerializerConfig"); \ +static_assert(sizeof(FVectorNetQuantizeNetSerializerConfig) == 0x000010, "Wrong size on FVectorNetQuantizeNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVectorNetQuantize10NetSerializerConfig \ +static_assert(alignof(FVectorNetQuantize10NetSerializerConfig) == 0x000008, "Wrong alignment on FVectorNetQuantize10NetSerializerConfig"); \ +static_assert(sizeof(FVectorNetQuantize10NetSerializerConfig) == 0x000010, "Wrong size on FVectorNetQuantize10NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVectorNetQuantize100NetSerializerConfig \ +static_assert(alignof(FVectorNetQuantize100NetSerializerConfig) == 0x000008, "Wrong alignment on FVectorNetQuantize100NetSerializerConfig"); \ +static_assert(sizeof(FVectorNetQuantize100NetSerializerConfig) == 0x000010, "Wrong size on FVectorNetQuantize100NetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVectorNetQuantizeNormalNetSerializerConfig \ +static_assert(alignof(FVectorNetQuantizeNormalNetSerializerConfig) == 0x000008, "Wrong alignment on FVectorNetQuantizeNormalNetSerializerConfig"); \ +static_assert(sizeof(FVectorNetQuantizeNormalNetSerializerConfig) == 0x000010, "Wrong size on FVectorNetQuantizeNormalNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPolymorphicStructNetSerializerConfig \ +static_assert(alignof(FPolymorphicStructNetSerializerConfig) == 0x000008, "Wrong alignment on FPolymorphicStructNetSerializerConfig"); \ +static_assert(sizeof(FPolymorphicStructNetSerializerConfig) == 0x000028, "Wrong size on FPolymorphicStructNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FPolymorphicArrayStructNetSerializerConfig \ +static_assert(alignof(FPolymorphicArrayStructNetSerializerConfig) == 0x000008, "Wrong alignment on FPolymorphicArrayStructNetSerializerConfig"); \ +static_assert(sizeof(FPolymorphicArrayStructNetSerializerConfig) == 0x000028, "Wrong size on FPolymorphicArrayStructNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FUnitQuatNetSerializerConfig \ +static_assert(alignof(FUnitQuatNetSerializerConfig) == 0x000008, "Wrong alignment on FUnitQuatNetSerializerConfig"); \ +static_assert(sizeof(FUnitQuatNetSerializerConfig) == 0x000010, "Wrong size on FUnitQuatNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FUnitQuat4fNetSerializerConfig \ +static_assert(alignof(FUnitQuat4fNetSerializerConfig) == 0x000008, "Wrong alignment on FUnitQuat4fNetSerializerConfig"); \ +static_assert(sizeof(FUnitQuat4fNetSerializerConfig) == 0x000010, "Wrong size on FUnitQuat4fNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FUnitQuat4dNetSerializerConfig \ +static_assert(alignof(FUnitQuat4dNetSerializerConfig) == 0x000008, "Wrong alignment on FUnitQuat4dNetSerializerConfig"); \ +static_assert(sizeof(FUnitQuat4dNetSerializerConfig) == 0x000010, "Wrong size on FUnitQuat4dNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FRotatorNetSerializerConfig \ +static_assert(alignof(FRotatorNetSerializerConfig) == 0x000008, "Wrong alignment on FRotatorNetSerializerConfig"); \ +static_assert(sizeof(FRotatorNetSerializerConfig) == 0x000010, "Wrong size on FRotatorNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FRotatorAsByteNetSerializerConfig \ +static_assert(alignof(FRotatorAsByteNetSerializerConfig) == 0x000008, "Wrong alignment on FRotatorAsByteNetSerializerConfig"); \ +static_assert(sizeof(FRotatorAsByteNetSerializerConfig) == 0x000010, "Wrong size on FRotatorAsByteNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FRotatorAsShortNetSerializerConfig \ +static_assert(alignof(FRotatorAsShortNetSerializerConfig) == 0x000008, "Wrong alignment on FRotatorAsShortNetSerializerConfig"); \ +static_assert(sizeof(FRotatorAsShortNetSerializerConfig) == 0x000010, "Wrong size on FRotatorAsShortNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FSoftObjectNetSerializerConfig \ +static_assert(alignof(FSoftObjectNetSerializerConfig) == 0x000008, "Wrong alignment on FSoftObjectNetSerializerConfig"); \ +static_assert(sizeof(FSoftObjectNetSerializerConfig) == 0x000010, "Wrong size on FSoftObjectNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FSoftObjectPathNetSerializerConfig \ +static_assert(alignof(FSoftObjectPathNetSerializerConfig) == 0x000008, "Wrong alignment on FSoftObjectPathNetSerializerConfig"); \ +static_assert(sizeof(FSoftObjectPathNetSerializerConfig) == 0x000010, "Wrong size on FSoftObjectPathNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FSoftClassPathNetSerializerConfig \ +static_assert(alignof(FSoftClassPathNetSerializerConfig) == 0x000008, "Wrong alignment on FSoftClassPathNetSerializerConfig"); \ +static_assert(sizeof(FSoftClassPathNetSerializerConfig) == 0x000010, "Wrong size on FSoftClassPathNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FNameNetSerializerConfig \ +static_assert(alignof(FNameNetSerializerConfig) == 0x000008, "Wrong alignment on FNameNetSerializerConfig"); \ +static_assert(sizeof(FNameNetSerializerConfig) == 0x000010, "Wrong size on FNameNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FStringNetSerializerConfig \ +static_assert(alignof(FStringNetSerializerConfig) == 0x000008, "Wrong alignment on FStringNetSerializerConfig"); \ +static_assert(sizeof(FStringNetSerializerConfig) == 0x000010, "Wrong size on FStringNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FUintNetSerializerConfig \ +static_assert(alignof(FUintNetSerializerConfig) == 0x000008, "Wrong alignment on FUintNetSerializerConfig"); \ +static_assert(sizeof(FUintNetSerializerConfig) == 0x000018, "Wrong size on FUintNetSerializerConfig"); \ +static_assert(offsetof(FUintNetSerializerConfig, BitCount) == 0x000010, "Member 'FUintNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint8RangeNetSerializerConfig \ +static_assert(alignof(FUint8RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FUint8RangeNetSerializerConfig"); \ +static_assert(sizeof(FUint8RangeNetSerializerConfig) == 0x000018, "Wrong size on FUint8RangeNetSerializerConfig"); \ +static_assert(offsetof(FUint8RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FUint8RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FUint8RangeNetSerializerConfig, UpperBound) == 0x000011, "Member 'FUint8RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FUint8RangeNetSerializerConfig, BitCount) == 0x000012, "Member 'FUint8RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint16RangeNetSerializerConfig \ +static_assert(alignof(FUint16RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FUint16RangeNetSerializerConfig"); \ +static_assert(sizeof(FUint16RangeNetSerializerConfig) == 0x000018, "Wrong size on FUint16RangeNetSerializerConfig"); \ +static_assert(offsetof(FUint16RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FUint16RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FUint16RangeNetSerializerConfig, UpperBound) == 0x000012, "Member 'FUint16RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FUint16RangeNetSerializerConfig, BitCount) == 0x000014, "Member 'FUint16RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint32RangeNetSerializerConfig \ +static_assert(alignof(FUint32RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FUint32RangeNetSerializerConfig"); \ +static_assert(sizeof(FUint32RangeNetSerializerConfig) == 0x000020, "Wrong size on FUint32RangeNetSerializerConfig"); \ +static_assert(offsetof(FUint32RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FUint32RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FUint32RangeNetSerializerConfig, UpperBound) == 0x000014, "Member 'FUint32RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FUint32RangeNetSerializerConfig, BitCount) == 0x000018, "Member 'FUint32RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUint64RangeNetSerializerConfig \ +static_assert(alignof(FUint64RangeNetSerializerConfig) == 0x000008, "Wrong alignment on FUint64RangeNetSerializerConfig"); \ +static_assert(sizeof(FUint64RangeNetSerializerConfig) == 0x000028, "Wrong size on FUint64RangeNetSerializerConfig"); \ +static_assert(offsetof(FUint64RangeNetSerializerConfig, LowerBound) == 0x000010, "Member 'FUint64RangeNetSerializerConfig::LowerBound' has a wrong offset!"); \ +static_assert(offsetof(FUint64RangeNetSerializerConfig, UpperBound) == 0x000018, "Member 'FUint64RangeNetSerializerConfig::UpperBound' has a wrong offset!"); \ +static_assert(offsetof(FUint64RangeNetSerializerConfig, BitCount) == 0x000020, "Member 'FUint64RangeNetSerializerConfig::BitCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorNetSerializerConfig \ +static_assert(alignof(FVectorNetSerializerConfig) == 0x000008, "Wrong alignment on FVectorNetSerializerConfig"); \ +static_assert(sizeof(FVectorNetSerializerConfig) == 0x000010, "Wrong size on FVectorNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVector3fNetSerializerConfig \ +static_assert(alignof(FVector3fNetSerializerConfig) == 0x000008, "Wrong alignment on FVector3fNetSerializerConfig"); \ +static_assert(sizeof(FVector3fNetSerializerConfig) == 0x000010, "Wrong size on FVector3fNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FVector3dNetSerializerConfig \ +static_assert(alignof(FVector3dNetSerializerConfig) == 0x000008, "Wrong alignment on FVector3dNetSerializerConfig"); \ +static_assert(sizeof(FVector3dNetSerializerConfig) == 0x000010, "Wrong size on FVector3dNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FSupportsStructNetSerializerConfig \ +static_assert(alignof(FSupportsStructNetSerializerConfig) == 0x000004, "Wrong alignment on FSupportsStructNetSerializerConfig"); \ +static_assert(sizeof(FSupportsStructNetSerializerConfig) == 0x00000C, "Wrong size on FSupportsStructNetSerializerConfig"); \ +static_assert(offsetof(FSupportsStructNetSerializerConfig, StructName) == 0x000000, "Member 'FSupportsStructNetSerializerConfig::StructName' has a wrong offset!"); \ +static_assert(offsetof(FSupportsStructNetSerializerConfig, bCanUseStructNetSerializer) == 0x000008, "Member 'FSupportsStructNetSerializerConfig::bCanUseStructNetSerializer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataStream \ +static_assert(alignof(UDataStream) == 0x000008, "Wrong alignment on UDataStream"); \ +static_assert(sizeof(UDataStream) == 0x000028, "Wrong size on UDataStream"); \ + +#define DUMPER7_ASSERTS_UDataStreamDefinitions \ +static_assert(alignof(UDataStreamDefinitions) == 0x000008, "Wrong alignment on UDataStreamDefinitions"); \ +static_assert(sizeof(UDataStreamDefinitions) == 0x000040, "Wrong size on UDataStreamDefinitions"); \ +static_assert(offsetof(UDataStreamDefinitions, DataStreamDefinitions) == 0x000028, "Member 'UDataStreamDefinitions::DataStreamDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataStreamManager \ +static_assert(alignof(UDataStreamManager) == 0x000008, "Wrong alignment on UDataStreamManager"); \ +static_assert(sizeof(UDataStreamManager) == 0x000030, "Wrong size on UDataStreamManager"); \ + +#define DUMPER7_ASSERTS_UNetObjectFilterConfig \ +static_assert(alignof(UNetObjectFilterConfig) == 0x000008, "Wrong alignment on UNetObjectFilterConfig"); \ +static_assert(sizeof(UNetObjectFilterConfig) == 0x000030, "Wrong size on UNetObjectFilterConfig"); \ +static_assert(offsetof(UNetObjectFilterConfig, FilterType) == 0x000028, "Member 'UNetObjectFilterConfig::FilterType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFilterOutNetObjectFilterConfig \ +static_assert(alignof(UFilterOutNetObjectFilterConfig) == 0x000008, "Wrong alignment on UFilterOutNetObjectFilterConfig"); \ +static_assert(sizeof(UFilterOutNetObjectFilterConfig) == 0x000030, "Wrong size on UFilterOutNetObjectFilterConfig"); \ + +#define DUMPER7_ASSERTS_UNetObjectFilter \ +static_assert(alignof(UNetObjectFilter) == 0x000008, "Wrong alignment on UNetObjectFilter"); \ +static_assert(sizeof(UNetObjectFilter) == 0x000050, "Wrong size on UNetObjectFilter"); \ + +#define DUMPER7_ASSERTS_UFilterOutNetObjectFilter \ +static_assert(alignof(UFilterOutNetObjectFilter) == 0x000008, "Wrong alignment on UFilterOutNetObjectFilter"); \ +static_assert(sizeof(UFilterOutNetObjectFilter) == 0x000050, "Wrong size on UFilterOutNetObjectFilter"); \ + +#define DUMPER7_ASSERTS_UIrisObjectReferencePackageMap \ +static_assert(alignof(UIrisObjectReferencePackageMap) == 0x000008, "Wrong alignment on UIrisObjectReferencePackageMap"); \ +static_assert(sizeof(UIrisObjectReferencePackageMap) == 0x0000E8, "Wrong size on UIrisObjectReferencePackageMap"); \ + +#define DUMPER7_ASSERTS_UNetObjectPrioritizer \ +static_assert(alignof(UNetObjectPrioritizer) == 0x000008, "Wrong alignment on UNetObjectPrioritizer"); \ +static_assert(sizeof(UNetObjectPrioritizer) == 0x000028, "Wrong size on UNetObjectPrioritizer"); \ + +#define DUMPER7_ASSERTS_ULocationBasedNetObjectPrioritizer \ +static_assert(alignof(ULocationBasedNetObjectPrioritizer) == 0x000008, "Wrong alignment on ULocationBasedNetObjectPrioritizer"); \ +static_assert(sizeof(ULocationBasedNetObjectPrioritizer) == 0x000060, "Wrong size on ULocationBasedNetObjectPrioritizer"); \ + +#define DUMPER7_ASSERTS_UNetBlobHandler \ +static_assert(alignof(UNetBlobHandler) == 0x000008, "Wrong alignment on UNetBlobHandler"); \ +static_assert(sizeof(UNetBlobHandler) == 0x000038, "Wrong size on UNetBlobHandler"); \ + +#define DUMPER7_ASSERTS_UNetBlobHandlerDefinitions \ +static_assert(alignof(UNetBlobHandlerDefinitions) == 0x000008, "Wrong alignment on UNetBlobHandlerDefinitions"); \ +static_assert(sizeof(UNetBlobHandlerDefinitions) == 0x000038, "Wrong size on UNetBlobHandlerDefinitions"); \ +static_assert(offsetof(UNetBlobHandlerDefinitions, NetBlobHandlerDefinitions) == 0x000028, "Member 'UNetBlobHandlerDefinitions::NetBlobHandlerDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetObjectBlobHandler \ +static_assert(alignof(UNetObjectBlobHandler) == 0x000008, "Wrong alignment on UNetObjectBlobHandler"); \ +static_assert(sizeof(UNetObjectBlobHandler) == 0x000038, "Wrong size on UNetObjectBlobHandler"); \ + +#define DUMPER7_ASSERTS_UNetObjectConnectionFilterConfig \ +static_assert(alignof(UNetObjectConnectionFilterConfig) == 0x000008, "Wrong alignment on UNetObjectConnectionFilterConfig"); \ +static_assert(sizeof(UNetObjectConnectionFilterConfig) == 0x000038, "Wrong size on UNetObjectConnectionFilterConfig"); \ +static_assert(offsetof(UNetObjectConnectionFilterConfig, MaxObjectCount) == 0x000030, "Member 'UNetObjectConnectionFilterConfig::MaxObjectCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetObjectConnectionFilter \ +static_assert(alignof(UNetObjectConnectionFilter) == 0x000008, "Wrong alignment on UNetObjectConnectionFilter"); \ +static_assert(sizeof(UNetObjectConnectionFilter) == 0x0000A0, "Wrong size on UNetObjectConnectionFilter"); \ + +#define DUMPER7_ASSERTS_UNetObjectPrioritizerConfig \ +static_assert(alignof(UNetObjectPrioritizerConfig) == 0x000008, "Wrong alignment on UNetObjectPrioritizerConfig"); \ +static_assert(sizeof(UNetObjectPrioritizerConfig) == 0x000028, "Wrong size on UNetObjectPrioritizerConfig"); \ + +#define DUMPER7_ASSERTS_UNetObjectCountLimiterConfig \ +static_assert(alignof(UNetObjectCountLimiterConfig) == 0x000008, "Wrong alignment on UNetObjectCountLimiterConfig"); \ +static_assert(sizeof(UNetObjectCountLimiterConfig) == 0x000040, "Wrong size on UNetObjectCountLimiterConfig"); \ +static_assert(offsetof(UNetObjectCountLimiterConfig, Mode) == 0x000028, "Member 'UNetObjectCountLimiterConfig::Mode' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectCountLimiterConfig, MaxObjectCount) == 0x00002C, "Member 'UNetObjectCountLimiterConfig::MaxObjectCount' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectCountLimiterConfig, Priority) == 0x000030, "Member 'UNetObjectCountLimiterConfig::Priority' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectCountLimiterConfig, OwningConnectionPriority) == 0x000034, "Member 'UNetObjectCountLimiterConfig::OwningConnectionPriority' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectCountLimiterConfig, bEnableOwnedObjectsFastLane) == 0x000038, "Member 'UNetObjectCountLimiterConfig::bEnableOwnedObjectsFastLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetObjectCountLimiter \ +static_assert(alignof(UNetObjectCountLimiter) == 0x000008, "Wrong alignment on UNetObjectCountLimiter"); \ +static_assert(sizeof(UNetObjectCountLimiter) == 0x000090, "Wrong size on UNetObjectCountLimiter"); \ + +#define DUMPER7_ASSERTS_UNetObjectFilterDefinitions \ +static_assert(alignof(UNetObjectFilterDefinitions) == 0x000008, "Wrong alignment on UNetObjectFilterDefinitions"); \ +static_assert(sizeof(UNetObjectFilterDefinitions) == 0x000038, "Wrong size on UNetObjectFilterDefinitions"); \ +static_assert(offsetof(UNetObjectFilterDefinitions, NetObjectFilterDefinitions) == 0x000028, "Member 'UNetObjectFilterDefinitions::NetObjectFilterDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetObjectGridFilterConfig \ +static_assert(alignof(UNetObjectGridFilterConfig) == 0x000008, "Wrong alignment on UNetObjectGridFilterConfig"); \ +static_assert(sizeof(UNetObjectGridFilterConfig) == 0x000078, "Wrong size on UNetObjectGridFilterConfig"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, ViewPosRelevancyFrameCount) == 0x000030, "Member 'UNetObjectGridFilterConfig::ViewPosRelevancyFrameCount' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, CellSizeX) == 0x000034, "Member 'UNetObjectGridFilterConfig::CellSizeX' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, CellSizeY) == 0x000038, "Member 'UNetObjectGridFilterConfig::CellSizeY' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, MaxCullDistance) == 0x00003C, "Member 'UNetObjectGridFilterConfig::MaxCullDistance' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, DefaultCullDistance) == 0x000040, "Member 'UNetObjectGridFilterConfig::DefaultCullDistance' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, MinPos) == 0x000048, "Member 'UNetObjectGridFilterConfig::MinPos' has a wrong offset!"); \ +static_assert(offsetof(UNetObjectGridFilterConfig, MaxPos) == 0x000060, "Member 'UNetObjectGridFilterConfig::MaxPos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetObjectGridFilter \ +static_assert(alignof(UNetObjectGridFilter) == 0x000008, "Wrong alignment on UNetObjectGridFilter"); \ +static_assert(sizeof(UNetObjectGridFilter) == 0x0000F8, "Wrong size on UNetObjectGridFilter"); \ + +#define DUMPER7_ASSERTS_UNetObjectGridWorldLocFilter \ +static_assert(alignof(UNetObjectGridWorldLocFilter) == 0x000008, "Wrong alignment on UNetObjectGridWorldLocFilter"); \ +static_assert(sizeof(UNetObjectGridWorldLocFilter) == 0x000100, "Wrong size on UNetObjectGridWorldLocFilter"); \ + +#define DUMPER7_ASSERTS_UNetObjectGridFragmentLocFilter \ +static_assert(alignof(UNetObjectGridFragmentLocFilter) == 0x000008, "Wrong alignment on UNetObjectGridFragmentLocFilter"); \ +static_assert(sizeof(UNetObjectGridFragmentLocFilter) == 0x000148, "Wrong size on UNetObjectGridFragmentLocFilter"); \ + +#define DUMPER7_ASSERTS_UNetObjectPrioritizerDefinitions \ +static_assert(alignof(UNetObjectPrioritizerDefinitions) == 0x000008, "Wrong alignment on UNetObjectPrioritizerDefinitions"); \ +static_assert(sizeof(UNetObjectPrioritizerDefinitions) == 0x000038, "Wrong size on UNetObjectPrioritizerDefinitions"); \ +static_assert(offsetof(UNetObjectPrioritizerDefinitions, NetObjectPrioritizerDefinitions) == 0x000028, "Member 'UNetObjectPrioritizerDefinitions::NetObjectPrioritizerDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetRPCHandler \ +static_assert(alignof(UNetRPCHandler) == 0x000008, "Wrong alignment on UNetRPCHandler"); \ +static_assert(sizeof(UNetRPCHandler) == 0x000040, "Wrong size on UNetRPCHandler"); \ + +#define DUMPER7_ASSERTS_UNetTokenDataStream \ +static_assert(alignof(UNetTokenDataStream) == 0x000008, "Wrong alignment on UNetTokenDataStream"); \ +static_assert(sizeof(UNetTokenDataStream) == 0x000078, "Wrong size on UNetTokenDataStream"); \ + +#define DUMPER7_ASSERTS_UNopNetObjectFilterConfig \ +static_assert(alignof(UNopNetObjectFilterConfig) == 0x000008, "Wrong alignment on UNopNetObjectFilterConfig"); \ +static_assert(sizeof(UNopNetObjectFilterConfig) == 0x000030, "Wrong size on UNopNetObjectFilterConfig"); \ + +#define DUMPER7_ASSERTS_UNopNetObjectFilter \ +static_assert(alignof(UNopNetObjectFilter) == 0x000008, "Wrong alignment on UNopNetObjectFilter"); \ +static_assert(sizeof(UNopNetObjectFilter) == 0x000050, "Wrong size on UNopNetObjectFilter"); \ + +#define DUMPER7_ASSERTS_UReplicationBridge \ +static_assert(alignof(UReplicationBridge) == 0x000008, "Wrong alignment on UReplicationBridge"); \ +static_assert(sizeof(UReplicationBridge) == 0x000110, "Wrong size on UReplicationBridge"); \ + +#define DUMPER7_ASSERTS_UObjectReplicationBridge \ +static_assert(alignof(UObjectReplicationBridge) == 0x000008, "Wrong alignment on UObjectReplicationBridge"); \ +static_assert(sizeof(UObjectReplicationBridge) == 0x0004B0, "Wrong size on UObjectReplicationBridge"); \ + +#define DUMPER7_ASSERTS_UObjectReplicationBridgeConfig \ +static_assert(alignof(UObjectReplicationBridgeConfig) == 0x000008, "Wrong alignment on UObjectReplicationBridgeConfig"); \ +static_assert(sizeof(UObjectReplicationBridgeConfig) == 0x000078, "Wrong size on UObjectReplicationBridgeConfig"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, PollConfigs) == 0x000028, "Member 'UObjectReplicationBridgeConfig::PollConfigs' has a wrong offset!"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, FilterConfigs) == 0x000038, "Member 'UObjectReplicationBridgeConfig::FilterConfigs' has a wrong offset!"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, PrioritizerConfigs) == 0x000048, "Member 'UObjectReplicationBridgeConfig::PrioritizerConfigs' has a wrong offset!"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, DeltaCompressionConfigs) == 0x000058, "Member 'UObjectReplicationBridgeConfig::DeltaCompressionConfigs' has a wrong offset!"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, DefaultSpatialFilterName) == 0x000068, "Member 'UObjectReplicationBridgeConfig::DefaultSpatialFilterName' has a wrong offset!"); \ +static_assert(offsetof(UObjectReplicationBridgeConfig, RequiredNetDriverChannelClassName) == 0x000070, "Member 'UObjectReplicationBridgeConfig::RequiredNetDriverChannelClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequentialPartialNetBlobHandlerConfig \ +static_assert(alignof(USequentialPartialNetBlobHandlerConfig) == 0x000008, "Wrong alignment on USequentialPartialNetBlobHandlerConfig"); \ +static_assert(sizeof(USequentialPartialNetBlobHandlerConfig) == 0x000030, "Wrong size on USequentialPartialNetBlobHandlerConfig"); \ +static_assert(offsetof(USequentialPartialNetBlobHandlerConfig, MaxPartBitCount) == 0x000028, "Member 'USequentialPartialNetBlobHandlerConfig::MaxPartBitCount' has a wrong offset!"); \ +static_assert(offsetof(USequentialPartialNetBlobHandlerConfig, MaxPartCount) == 0x00002C, "Member 'USequentialPartialNetBlobHandlerConfig::MaxPartCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPartialNetObjectAttachmentHandlerConfig \ +static_assert(alignof(UPartialNetObjectAttachmentHandlerConfig) == 0x000008, "Wrong alignment on UPartialNetObjectAttachmentHandlerConfig"); \ +static_assert(sizeof(UPartialNetObjectAttachmentHandlerConfig) == 0x000038, "Wrong size on UPartialNetObjectAttachmentHandlerConfig"); \ +static_assert(offsetof(UPartialNetObjectAttachmentHandlerConfig, BitCountSplitThreshold) == 0x000030, "Member 'UPartialNetObjectAttachmentHandlerConfig::BitCountSplitThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequentialPartialNetBlobHandler \ +static_assert(alignof(USequentialPartialNetBlobHandler) == 0x000008, "Wrong alignment on USequentialPartialNetBlobHandler"); \ +static_assert(sizeof(USequentialPartialNetBlobHandler) == 0x000048, "Wrong size on USequentialPartialNetBlobHandler"); \ + +#define DUMPER7_ASSERTS_UPartialNetObjectAttachmentHandler \ +static_assert(alignof(UPartialNetObjectAttachmentHandler) == 0x000008, "Wrong alignment on UPartialNetObjectAttachmentHandler"); \ +static_assert(sizeof(UPartialNetObjectAttachmentHandler) == 0x000048, "Wrong size on UPartialNetObjectAttachmentHandler"); \ + +#define DUMPER7_ASSERTS_UReplicationDataStream \ +static_assert(alignof(UReplicationDataStream) == 0x000008, "Wrong alignment on UReplicationDataStream"); \ +static_assert(sizeof(UReplicationDataStream) == 0x000038, "Wrong size on UReplicationDataStream"); \ + +#define DUMPER7_ASSERTS_UReplicationSystem \ +static_assert(alignof(UReplicationSystem) == 0x000008, "Wrong alignment on UReplicationSystem"); \ +static_assert(sizeof(UReplicationSystem) == 0x000058, "Wrong size on UReplicationSystem"); \ +static_assert(offsetof(UReplicationSystem, ReplicationBridge) == 0x000038, "Member 'UReplicationSystem::ReplicationBridge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USphereNetObjectPrioritizerConfig \ +static_assert(alignof(USphereNetObjectPrioritizerConfig) == 0x000008, "Wrong alignment on USphereNetObjectPrioritizerConfig"); \ +static_assert(sizeof(USphereNetObjectPrioritizerConfig) == 0x000040, "Wrong size on USphereNetObjectPrioritizerConfig"); \ +static_assert(offsetof(USphereNetObjectPrioritizerConfig, InnerRadius) == 0x000028, "Member 'USphereNetObjectPrioritizerConfig::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(USphereNetObjectPrioritizerConfig, OuterRadius) == 0x00002C, "Member 'USphereNetObjectPrioritizerConfig::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(USphereNetObjectPrioritizerConfig, InnerPriority) == 0x000030, "Member 'USphereNetObjectPrioritizerConfig::InnerPriority' has a wrong offset!"); \ +static_assert(offsetof(USphereNetObjectPrioritizerConfig, OuterPriority) == 0x000034, "Member 'USphereNetObjectPrioritizerConfig::OuterPriority' has a wrong offset!"); \ +static_assert(offsetof(USphereNetObjectPrioritizerConfig, OutsidePriority) == 0x000038, "Member 'USphereNetObjectPrioritizerConfig::OutsidePriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USphereNetObjectPrioritizer \ +static_assert(alignof(USphereNetObjectPrioritizer) == 0x000008, "Wrong alignment on USphereNetObjectPrioritizer"); \ +static_assert(sizeof(USphereNetObjectPrioritizer) == 0x000068, "Wrong size on USphereNetObjectPrioritizer"); \ + +#define DUMPER7_ASSERTS_USphereWithOwnerBoostNetObjectPrioritizerConfig \ +static_assert(alignof(USphereWithOwnerBoostNetObjectPrioritizerConfig) == 0x000008, "Wrong alignment on USphereWithOwnerBoostNetObjectPrioritizerConfig"); \ +static_assert(sizeof(USphereWithOwnerBoostNetObjectPrioritizerConfig) == 0x000048, "Wrong size on USphereWithOwnerBoostNetObjectPrioritizerConfig"); \ +static_assert(offsetof(USphereWithOwnerBoostNetObjectPrioritizerConfig, OwnerPriorityBoost) == 0x000040, "Member 'USphereWithOwnerBoostNetObjectPrioritizerConfig::OwnerPriorityBoost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USphereWithOwnerBoostNetObjectPrioritizer \ +static_assert(alignof(USphereWithOwnerBoostNetObjectPrioritizer) == 0x000008, "Wrong alignment on USphereWithOwnerBoostNetObjectPrioritizer"); \ +static_assert(sizeof(USphereWithOwnerBoostNetObjectPrioritizer) == 0x0000A0, "Wrong size on USphereWithOwnerBoostNetObjectPrioritizer"); \ + +#define DUMPER7_ASSERTS_UReplicationStateDescriptorConfig \ +static_assert(alignof(UReplicationStateDescriptorConfig) == 0x000008, "Wrong alignment on UReplicationStateDescriptorConfig"); \ +static_assert(sizeof(UReplicationStateDescriptorConfig) == 0x000038, "Wrong size on UReplicationStateDescriptorConfig"); \ +static_assert(offsetof(UReplicationStateDescriptorConfig, SupportsStructNetSerializerList) == 0x000028, "Member 'UReplicationStateDescriptorConfig::SupportsStructNetSerializerList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHandlerComponentFactory \ +static_assert(alignof(UHandlerComponentFactory) == 0x000008, "Wrong alignment on UHandlerComponentFactory"); \ +static_assert(sizeof(UHandlerComponentFactory) == 0x000028, "Wrong size on UHandlerComponentFactory"); \ + +#define DUMPER7_ASSERTS_UPacketHandlerProfileConfig \ +static_assert(alignof(UPacketHandlerProfileConfig) == 0x000008, "Wrong alignment on UPacketHandlerProfileConfig"); \ +static_assert(sizeof(UPacketHandlerProfileConfig) == 0x000038, "Wrong size on UPacketHandlerProfileConfig"); \ +static_assert(offsetof(UPacketHandlerProfileConfig, Components) == 0x000028, "Member 'UPacketHandlerProfileConfig::Components' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionPrim_Sphere \ +static_assert(alignof(FClothCollisionPrim_Sphere) == 0x000008, "Wrong alignment on FClothCollisionPrim_Sphere"); \ +static_assert(sizeof(FClothCollisionPrim_Sphere) == 0x000020, "Wrong size on FClothCollisionPrim_Sphere"); \ +static_assert(offsetof(FClothCollisionPrim_Sphere, BoneIndex) == 0x000000, "Member 'FClothCollisionPrim_Sphere::BoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Sphere, Radius) == 0x000004, "Member 'FClothCollisionPrim_Sphere::Radius' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Sphere, LocalPosition) == 0x000008, "Member 'FClothCollisionPrim_Sphere::LocalPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionPrim_SphereConnection \ +static_assert(alignof(FClothCollisionPrim_SphereConnection) == 0x000004, "Wrong alignment on FClothCollisionPrim_SphereConnection"); \ +static_assert(sizeof(FClothCollisionPrim_SphereConnection) == 0x000008, "Wrong size on FClothCollisionPrim_SphereConnection"); \ +static_assert(offsetof(FClothCollisionPrim_SphereConnection, SphereIndices) == 0x000000, "Member 'FClothCollisionPrim_SphereConnection::SphereIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionPrim_ConvexFace \ +static_assert(alignof(FClothCollisionPrim_ConvexFace) == 0x000010, "Wrong alignment on FClothCollisionPrim_ConvexFace"); \ +static_assert(sizeof(FClothCollisionPrim_ConvexFace) == 0x000030, "Wrong size on FClothCollisionPrim_ConvexFace"); \ +static_assert(offsetof(FClothCollisionPrim_ConvexFace, Plane) == 0x000000, "Member 'FClothCollisionPrim_ConvexFace::Plane' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_ConvexFace, Indices) == 0x000020, "Member 'FClothCollisionPrim_ConvexFace::Indices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionPrim_Convex \ +static_assert(alignof(FClothCollisionPrim_Convex) == 0x000008, "Wrong alignment on FClothCollisionPrim_Convex"); \ +static_assert(sizeof(FClothCollisionPrim_Convex) == 0x000028, "Wrong size on FClothCollisionPrim_Convex"); \ +static_assert(offsetof(FClothCollisionPrim_Convex, Faces) == 0x000000, "Member 'FClothCollisionPrim_Convex::Faces' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Convex, SurfacePoints) == 0x000010, "Member 'FClothCollisionPrim_Convex::SurfacePoints' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Convex, BoneIndex) == 0x000020, "Member 'FClothCollisionPrim_Convex::BoneIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionPrim_Box \ +static_assert(alignof(FClothCollisionPrim_Box) == 0x000010, "Wrong alignment on FClothCollisionPrim_Box"); \ +static_assert(sizeof(FClothCollisionPrim_Box) == 0x000060, "Wrong size on FClothCollisionPrim_Box"); \ +static_assert(offsetof(FClothCollisionPrim_Box, LocalPosition) == 0x000000, "Member 'FClothCollisionPrim_Box::LocalPosition' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Box, LocalRotation) == 0x000020, "Member 'FClothCollisionPrim_Box::LocalRotation' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Box, HalfExtents) == 0x000040, "Member 'FClothCollisionPrim_Box::HalfExtents' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionPrim_Box, BoneIndex) == 0x000058, "Member 'FClothCollisionPrim_Box::BoneIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothVertBoneData \ +static_assert(alignof(FClothVertBoneData) == 0x000004, "Wrong alignment on FClothVertBoneData"); \ +static_assert(sizeof(FClothVertBoneData) == 0x00004C, "Wrong size on FClothVertBoneData"); \ +static_assert(offsetof(FClothVertBoneData, NumInfluences) == 0x000000, "Member 'FClothVertBoneData::NumInfluences' has a wrong offset!"); \ +static_assert(offsetof(FClothVertBoneData, BoneIndices) == 0x000004, "Member 'FClothVertBoneData::BoneIndices' has a wrong offset!"); \ +static_assert(offsetof(FClothVertBoneData, BoneWeights) == 0x00001C, "Member 'FClothVertBoneData::BoneWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothCollisionData \ +static_assert(alignof(FClothCollisionData) == 0x000008, "Wrong alignment on FClothCollisionData"); \ +static_assert(sizeof(FClothCollisionData) == 0x000040, "Wrong size on FClothCollisionData"); \ +static_assert(offsetof(FClothCollisionData, Spheres) == 0x000000, "Member 'FClothCollisionData::Spheres' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionData, SphereConnections) == 0x000010, "Member 'FClothCollisionData::SphereConnections' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionData, Convexes) == 0x000020, "Member 'FClothCollisionData::Convexes' has a wrong offset!"); \ +static_assert(offsetof(FClothCollisionData, Boxes) == 0x000030, "Member 'FClothCollisionData::Boxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothingAssetBase \ +static_assert(alignof(UClothingAssetBase) == 0x000008, "Wrong alignment on UClothingAssetBase"); \ +static_assert(sizeof(UClothingAssetBase) == 0x000048, "Wrong size on UClothingAssetBase"); \ +static_assert(offsetof(UClothingAssetBase, ImportedFilePath) == 0x000028, "Member 'UClothingAssetBase::ImportedFilePath' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetBase, AssetGuid) == 0x000038, "Member 'UClothingAssetBase::AssetGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothConfigBase \ +static_assert(alignof(UClothConfigBase) == 0x000008, "Wrong alignment on UClothConfigBase"); \ +static_assert(sizeof(UClothConfigBase) == 0x000028, "Wrong size on UClothConfigBase"); \ + +#define DUMPER7_ASSERTS_UClothSharedSimConfigBase \ +static_assert(alignof(UClothSharedSimConfigBase) == 0x000008, "Wrong alignment on UClothSharedSimConfigBase"); \ +static_assert(sizeof(UClothSharedSimConfigBase) == 0x000028, "Wrong size on UClothSharedSimConfigBase"); \ + +#define DUMPER7_ASSERTS_UClothingSimulationFactory \ +static_assert(alignof(UClothingSimulationFactory) == 0x000008, "Wrong alignment on UClothingSimulationFactory"); \ +static_assert(sizeof(UClothingSimulationFactory) == 0x000028, "Wrong size on UClothingSimulationFactory"); \ + +#define DUMPER7_ASSERTS_UClothingInteractor \ +static_assert(alignof(UClothingInteractor) == 0x000008, "Wrong alignment on UClothingInteractor"); \ +static_assert(sizeof(UClothingInteractor) == 0x000030, "Wrong size on UClothingInteractor"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_EnableGravityOverride \ +static_assert(alignof(ClothingSimulationInteractor_EnableGravityOverride) == 0x000008, "Wrong alignment on ClothingSimulationInteractor_EnableGravityOverride"); \ +static_assert(sizeof(ClothingSimulationInteractor_EnableGravityOverride) == 0x000018, "Wrong size on ClothingSimulationInteractor_EnableGravityOverride"); \ +static_assert(offsetof(ClothingSimulationInteractor_EnableGravityOverride, InVector) == 0x000000, "Member 'ClothingSimulationInteractor_EnableGravityOverride::InVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_SetAnimDriveSpringStiffness \ +static_assert(alignof(ClothingSimulationInteractor_SetAnimDriveSpringStiffness) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_SetAnimDriveSpringStiffness"); \ +static_assert(sizeof(ClothingSimulationInteractor_SetAnimDriveSpringStiffness) == 0x000004, "Wrong size on ClothingSimulationInteractor_SetAnimDriveSpringStiffness"); \ +static_assert(offsetof(ClothingSimulationInteractor_SetAnimDriveSpringStiffness, InStiffness) == 0x000000, "Member 'ClothingSimulationInteractor_SetAnimDriveSpringStiffness::InStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_SetMaxNumIterations \ +static_assert(alignof(ClothingSimulationInteractor_SetMaxNumIterations) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_SetMaxNumIterations"); \ +static_assert(sizeof(ClothingSimulationInteractor_SetMaxNumIterations) == 0x000004, "Wrong size on ClothingSimulationInteractor_SetMaxNumIterations"); \ +static_assert(offsetof(ClothingSimulationInteractor_SetMaxNumIterations, MaxNumIterations) == 0x000000, "Member 'ClothingSimulationInteractor_SetMaxNumIterations::MaxNumIterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_SetNumIterations \ +static_assert(alignof(ClothingSimulationInteractor_SetNumIterations) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_SetNumIterations"); \ +static_assert(sizeof(ClothingSimulationInteractor_SetNumIterations) == 0x000004, "Wrong size on ClothingSimulationInteractor_SetNumIterations"); \ +static_assert(offsetof(ClothingSimulationInteractor_SetNumIterations, NumIterations) == 0x000000, "Member 'ClothingSimulationInteractor_SetNumIterations::NumIterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_SetNumSubsteps \ +static_assert(alignof(ClothingSimulationInteractor_SetNumSubsteps) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_SetNumSubsteps"); \ +static_assert(sizeof(ClothingSimulationInteractor_SetNumSubsteps) == 0x000004, "Wrong size on ClothingSimulationInteractor_SetNumSubsteps"); \ +static_assert(offsetof(ClothingSimulationInteractor_SetNumSubsteps, NumSubsteps) == 0x000000, "Member 'ClothingSimulationInteractor_SetNumSubsteps::NumSubsteps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetClothingInteractor \ +static_assert(alignof(ClothingSimulationInteractor_GetClothingInteractor) == 0x000008, "Wrong alignment on ClothingSimulationInteractor_GetClothingInteractor"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetClothingInteractor) == 0x000018, "Wrong size on ClothingSimulationInteractor_GetClothingInteractor"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetClothingInteractor, ClothingAssetName) == 0x000000, "Member 'ClothingSimulationInteractor_GetClothingInteractor::ClothingAssetName' has a wrong offset!"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetClothingInteractor, ReturnValue) == 0x000010, "Member 'ClothingSimulationInteractor_GetClothingInteractor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetNumCloths \ +static_assert(alignof(ClothingSimulationInteractor_GetNumCloths) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetNumCloths"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetNumCloths) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetNumCloths"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetNumCloths, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetNumCloths::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetNumDynamicParticles \ +static_assert(alignof(ClothingSimulationInteractor_GetNumDynamicParticles) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetNumDynamicParticles"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetNumDynamicParticles) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetNumDynamicParticles"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetNumDynamicParticles, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetNumDynamicParticles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetNumIterations \ +static_assert(alignof(ClothingSimulationInteractor_GetNumIterations) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetNumIterations"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetNumIterations) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetNumIterations"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetNumIterations, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetNumIterations::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetNumKinematicParticles \ +static_assert(alignof(ClothingSimulationInteractor_GetNumKinematicParticles) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetNumKinematicParticles"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetNumKinematicParticles) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetNumKinematicParticles"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetNumKinematicParticles, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetNumKinematicParticles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetNumSubsteps \ +static_assert(alignof(ClothingSimulationInteractor_GetNumSubsteps) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetNumSubsteps"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetNumSubsteps) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetNumSubsteps"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetNumSubsteps, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetNumSubsteps::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractor_GetSimulationTime \ +static_assert(alignof(ClothingSimulationInteractor_GetSimulationTime) == 0x000004, "Wrong alignment on ClothingSimulationInteractor_GetSimulationTime"); \ +static_assert(sizeof(ClothingSimulationInteractor_GetSimulationTime) == 0x000004, "Wrong size on ClothingSimulationInteractor_GetSimulationTime"); \ +static_assert(offsetof(ClothingSimulationInteractor_GetSimulationTime, ReturnValue) == 0x000000, "Member 'ClothingSimulationInteractor_GetSimulationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothingSimulationInteractor \ +static_assert(alignof(UClothingSimulationInteractor) == 0x000008, "Wrong alignment on UClothingSimulationInteractor"); \ +static_assert(sizeof(UClothingSimulationInteractor) == 0x000090, "Wrong size on UClothingSimulationInteractor"); \ +static_assert(offsetof(UClothingSimulationInteractor, ClothingInteractors) == 0x000028, "Member 'UClothingSimulationInteractor::ClothingInteractors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothPhysicalMeshDataBase_Legacy \ +static_assert(alignof(UClothPhysicalMeshDataBase_Legacy) == 0x000008, "Wrong alignment on UClothPhysicalMeshDataBase_Legacy"); \ +static_assert(sizeof(UClothPhysicalMeshDataBase_Legacy) == 0x0000E0, "Wrong size on UClothPhysicalMeshDataBase_Legacy"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, Vertices) == 0x000028, "Member 'UClothPhysicalMeshDataBase_Legacy::Vertices' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, Normals) == 0x000038, "Member 'UClothPhysicalMeshDataBase_Legacy::Normals' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, Indices) == 0x000048, "Member 'UClothPhysicalMeshDataBase_Legacy::Indices' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, InverseMasses) == 0x000058, "Member 'UClothPhysicalMeshDataBase_Legacy::InverseMasses' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, BoneData) == 0x000068, "Member 'UClothPhysicalMeshDataBase_Legacy::BoneData' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, NumFixedVerts) == 0x000078, "Member 'UClothPhysicalMeshDataBase_Legacy::NumFixedVerts' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, MaxBoneWeights) == 0x00007C, "Member 'UClothPhysicalMeshDataBase_Legacy::MaxBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataBase_Legacy, SelfCollisionIndices) == 0x000080, "Member 'UClothPhysicalMeshDataBase_Legacy::SelfCollisionIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImageWriteOptions \ +static_assert(alignof(FImageWriteOptions) == 0x000010, "Wrong alignment on FImageWriteOptions"); \ +static_assert(sizeof(FImageWriteOptions) == 0x000060, "Wrong size on FImageWriteOptions"); \ +static_assert(offsetof(FImageWriteOptions, Format) == 0x000000, "Member 'FImageWriteOptions::Format' has a wrong offset!"); \ +static_assert(offsetof(FImageWriteOptions, OnComplete) == 0x000004, "Member 'FImageWriteOptions::OnComplete' has a wrong offset!"); \ +static_assert(offsetof(FImageWriteOptions, CompressionQuality) == 0x000014, "Member 'FImageWriteOptions::CompressionQuality' has a wrong offset!"); \ +static_assert(offsetof(FImageWriteOptions, bOverwriteFile) == 0x000018, "Member 'FImageWriteOptions::bOverwriteFile' has a wrong offset!"); \ +static_assert(offsetof(FImageWriteOptions, bAsync) == 0x000019, "Member 'FImageWriteOptions::bAsync' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImageWriteBlueprintLibrary_ExportToDisk \ +static_assert(alignof(ImageWriteBlueprintLibrary_ExportToDisk) == 0x000010, "Wrong alignment on ImageWriteBlueprintLibrary_ExportToDisk"); \ +static_assert(sizeof(ImageWriteBlueprintLibrary_ExportToDisk) == 0x000080, "Wrong size on ImageWriteBlueprintLibrary_ExportToDisk"); \ +static_assert(offsetof(ImageWriteBlueprintLibrary_ExportToDisk, Texture) == 0x000000, "Member 'ImageWriteBlueprintLibrary_ExportToDisk::Texture' has a wrong offset!"); \ +static_assert(offsetof(ImageWriteBlueprintLibrary_ExportToDisk, Filename) == 0x000008, "Member 'ImageWriteBlueprintLibrary_ExportToDisk::Filename' has a wrong offset!"); \ +static_assert(offsetof(ImageWriteBlueprintLibrary_ExportToDisk, Options) == 0x000020, "Member 'ImageWriteBlueprintLibrary_ExportToDisk::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImageWriteBlueprintLibrary \ +static_assert(alignof(UImageWriteBlueprintLibrary) == 0x000008, "Wrong alignment on UImageWriteBlueprintLibrary"); \ +static_assert(sizeof(UImageWriteBlueprintLibrary) == 0x000028, "Wrong size on UImageWriteBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_FMaterialQualityOverrides \ +static_assert(alignof(FMaterialQualityOverrides) == 0x000001, "Wrong alignment on FMaterialQualityOverrides"); \ +static_assert(sizeof(FMaterialQualityOverrides) == 0x000008, "Wrong size on FMaterialQualityOverrides"); \ +static_assert(offsetof(FMaterialQualityOverrides, bDiscardQualityDuringCook) == 0x000000, "Member 'FMaterialQualityOverrides::bDiscardQualityDuringCook' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bEnableOverride) == 0x000001, "Member 'FMaterialQualityOverrides::bEnableOverride' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bForceFullyRough) == 0x000002, "Member 'FMaterialQualityOverrides::bForceFullyRough' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bForceNonMetal) == 0x000003, "Member 'FMaterialQualityOverrides::bForceNonMetal' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bForceDisableLMDirectionality) == 0x000004, "Member 'FMaterialQualityOverrides::bForceDisableLMDirectionality' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bForceDisablePreintegratedGF) == 0x000005, "Member 'FMaterialQualityOverrides::bForceDisablePreintegratedGF' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, bDisableMaterialNormalCalculation) == 0x000006, "Member 'FMaterialQualityOverrides::bDisableMaterialNormalCalculation' has a wrong offset!"); \ +static_assert(offsetof(FMaterialQualityOverrides, MobileShadowQuality) == 0x000007, "Member 'FMaterialQualityOverrides::MobileShadowQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShaderPlatformQualitySettings \ +static_assert(alignof(UShaderPlatformQualitySettings) == 0x000008, "Wrong alignment on UShaderPlatformQualitySettings"); \ +static_assert(sizeof(UShaderPlatformQualitySettings) == 0x000058, "Wrong size on UShaderPlatformQualitySettings"); \ +static_assert(offsetof(UShaderPlatformQualitySettings, QualityOverrides) == 0x000028, "Member 'UShaderPlatformQualitySettings::QualityOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialShaderQualitySettings \ +static_assert(alignof(UMaterialShaderQualitySettings) == 0x000008, "Wrong alignment on UMaterialShaderQualitySettings"); \ +static_assert(sizeof(UMaterialShaderQualitySettings) == 0x000078, "Wrong size on UMaterialShaderQualitySettings"); \ +static_assert(offsetof(UMaterialShaderQualitySettings, ForwardSettingMap) == 0x000028, "Member 'UMaterialShaderQualitySettings::ForwardSettingMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_SniperTargeting_NoCrouch_C \ +static_assert(alignof(UGA_Additive_SniperTargeting_NoCrouch_C) == 0x000008, "Wrong alignment on UGA_Additive_SniperTargeting_NoCrouch_C"); \ +static_assert(sizeof(UGA_Additive_SniperTargeting_NoCrouch_C) == 0x0006B8, "Wrong size on UGA_Additive_SniperTargeting_NoCrouch_C"); \ + +#define DUMPER7_ASSERTS_FCamShakeSettings \ +static_assert(alignof(FCamShakeSettings) == 0x000008, "Wrong alignment on FCamShakeSettings"); \ +static_assert(sizeof(FCamShakeSettings) == 0x000020, "Wrong size on FCamShakeSettings"); \ +static_assert(offsetof(FCamShakeSettings, ShakeClass_2_BA808477430D617E316C198BEAA2AA79) == 0x000000, "Member 'FCamShakeSettings::ShakeClass_2_BA808477430D617E316C198BEAA2AA79' has a wrong offset!"); \ +static_assert(offsetof(FCamShakeSettings, Strength_10_05EB376B40CD03681DD2728F8288BA38) == 0x000008, "Member 'FCamShakeSettings::Strength_10_05EB376B40CD03681DD2728F8288BA38' has a wrong offset!"); \ +static_assert(offsetof(FCamShakeSettings, Falloff_11_BC40C52B44267562A933BB9E3294F9E6) == 0x000010, "Member 'FCamShakeSettings::Falloff_11_BC40C52B44267562A933BB9E3294F9E6' has a wrong offset!"); \ +static_assert(offsetof(FCamShakeSettings, FalloffExponent_12_108C102840AA76E715D3CDA671E19228) == 0x000018, "Member 'FCamShakeSettings::FalloffExponent_12_108C102840AA76E715D3CDA671E19228' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEyeTrackerGazeData \ +static_assert(alignof(FEyeTrackerGazeData) == 0x000008, "Wrong alignment on FEyeTrackerGazeData"); \ +static_assert(sizeof(FEyeTrackerGazeData) == 0x000058, "Wrong size on FEyeTrackerGazeData"); \ +static_assert(offsetof(FEyeTrackerGazeData, GazeOrigin) == 0x000000, "Member 'FEyeTrackerGazeData::GazeOrigin' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, GazeDirection) == 0x000018, "Member 'FEyeTrackerGazeData::GazeDirection' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, FixationPoint) == 0x000030, "Member 'FEyeTrackerGazeData::FixationPoint' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, ConfidenceValue) == 0x000048, "Member 'FEyeTrackerGazeData::ConfidenceValue' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, bIsLeftEyeBlink) == 0x00004C, "Member 'FEyeTrackerGazeData::bIsLeftEyeBlink' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, bIsRightEyeBlink) == 0x00004D, "Member 'FEyeTrackerGazeData::bIsRightEyeBlink' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, LeftPupilDiameter) == 0x000050, "Member 'FEyeTrackerGazeData::LeftPupilDiameter' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerGazeData, RightPupilDiameter) == 0x000054, "Member 'FEyeTrackerGazeData::RightPupilDiameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEyeTrackerStereoGazeData \ +static_assert(alignof(FEyeTrackerStereoGazeData) == 0x000008, "Wrong alignment on FEyeTrackerStereoGazeData"); \ +static_assert(sizeof(FEyeTrackerStereoGazeData) == 0x000080, "Wrong size on FEyeTrackerStereoGazeData"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, LeftEyeOrigin) == 0x000000, "Member 'FEyeTrackerStereoGazeData::LeftEyeOrigin' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, LeftEyeDirection) == 0x000018, "Member 'FEyeTrackerStereoGazeData::LeftEyeDirection' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, RightEyeOrigin) == 0x000030, "Member 'FEyeTrackerStereoGazeData::RightEyeOrigin' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, RightEyeDirection) == 0x000048, "Member 'FEyeTrackerStereoGazeData::RightEyeDirection' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, FixationPoint) == 0x000060, "Member 'FEyeTrackerStereoGazeData::FixationPoint' has a wrong offset!"); \ +static_assert(offsetof(FEyeTrackerStereoGazeData, ConfidenceValue) == 0x000078, "Member 'FEyeTrackerStereoGazeData::ConfidenceValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EyeTrackerFunctionLibrary_GetGazeData \ +static_assert(alignof(EyeTrackerFunctionLibrary_GetGazeData) == 0x000008, "Wrong alignment on EyeTrackerFunctionLibrary_GetGazeData"); \ +static_assert(sizeof(EyeTrackerFunctionLibrary_GetGazeData) == 0x000060, "Wrong size on EyeTrackerFunctionLibrary_GetGazeData"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_GetGazeData, OutGazeData) == 0x000000, "Member 'EyeTrackerFunctionLibrary_GetGazeData::OutGazeData' has a wrong offset!"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_GetGazeData, ReturnValue) == 0x000058, "Member 'EyeTrackerFunctionLibrary_GetGazeData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EyeTrackerFunctionLibrary_GetStereoGazeData \ +static_assert(alignof(EyeTrackerFunctionLibrary_GetStereoGazeData) == 0x000008, "Wrong alignment on EyeTrackerFunctionLibrary_GetStereoGazeData"); \ +static_assert(sizeof(EyeTrackerFunctionLibrary_GetStereoGazeData) == 0x000088, "Wrong size on EyeTrackerFunctionLibrary_GetStereoGazeData"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_GetStereoGazeData, OutGazeData) == 0x000000, "Member 'EyeTrackerFunctionLibrary_GetStereoGazeData::OutGazeData' has a wrong offset!"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_GetStereoGazeData, ReturnValue) == 0x000080, "Member 'EyeTrackerFunctionLibrary_GetStereoGazeData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EyeTrackerFunctionLibrary_IsEyeTrackerConnected \ +static_assert(alignof(EyeTrackerFunctionLibrary_IsEyeTrackerConnected) == 0x000001, "Wrong alignment on EyeTrackerFunctionLibrary_IsEyeTrackerConnected"); \ +static_assert(sizeof(EyeTrackerFunctionLibrary_IsEyeTrackerConnected) == 0x000001, "Wrong size on EyeTrackerFunctionLibrary_IsEyeTrackerConnected"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_IsEyeTrackerConnected, ReturnValue) == 0x000000, "Member 'EyeTrackerFunctionLibrary_IsEyeTrackerConnected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable \ +static_assert(alignof(EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable) == 0x000001, "Wrong alignment on EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable"); \ +static_assert(sizeof(EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable) == 0x000001, "Wrong size on EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable, ReturnValue) == 0x000000, "Member 'EyeTrackerFunctionLibrary_IsStereoGazeDataAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EyeTrackerFunctionLibrary_SetEyeTrackedPlayer \ +static_assert(alignof(EyeTrackerFunctionLibrary_SetEyeTrackedPlayer) == 0x000008, "Wrong alignment on EyeTrackerFunctionLibrary_SetEyeTrackedPlayer"); \ +static_assert(sizeof(EyeTrackerFunctionLibrary_SetEyeTrackedPlayer) == 0x000008, "Wrong size on EyeTrackerFunctionLibrary_SetEyeTrackedPlayer"); \ +static_assert(offsetof(EyeTrackerFunctionLibrary_SetEyeTrackedPlayer, PlayerController) == 0x000000, "Member 'EyeTrackerFunctionLibrary_SetEyeTrackedPlayer::PlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEyeTrackerFunctionLibrary \ +static_assert(alignof(UEyeTrackerFunctionLibrary) == 0x000008, "Wrong alignment on UEyeTrackerFunctionLibrary"); \ +static_assert(sizeof(UEyeTrackerFunctionLibrary) == 0x000028, "Wrong size on UEyeTrackerFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_USparseVolumeTextureViewerComponent \ +static_assert(alignof(USparseVolumeTextureViewerComponent) == 0x000010, "Wrong alignment on USparseVolumeTextureViewerComponent"); \ +static_assert(sizeof(USparseVolumeTextureViewerComponent) == 0x0005B0, "Wrong size on USparseVolumeTextureViewerComponent"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, SparseVolumeTexturePreview) == 0x000570, "Member 'USparseVolumeTextureViewerComponent::SparseVolumeTexturePreview' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, AnimationFrame) == 0x00057C, "Member 'USparseVolumeTextureViewerComponent::AnimationFrame' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, FrameRate) == 0x000580, "Member 'USparseVolumeTextureViewerComponent::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, AnimationTime) == 0x000584, "Member 'USparseVolumeTextureViewerComponent::AnimationTime' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, PreviewAttribute) == 0x000588, "Member 'USparseVolumeTextureViewerComponent::PreviewAttribute' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, MipLevel) == 0x00058C, "Member 'USparseVolumeTextureViewerComponent::MipLevel' has a wrong offset!"); \ +static_assert(offsetof(USparseVolumeTextureViewerComponent, Extinction) == 0x000590, "Member 'USparseVolumeTextureViewerComponent::Extinction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASparseVolumeTextureViewer \ +static_assert(alignof(ASparseVolumeTextureViewer) == 0x000008, "Wrong alignment on ASparseVolumeTextureViewer"); \ +static_assert(sizeof(ASparseVolumeTextureViewer) == 0x0002A0, "Wrong size on ASparseVolumeTextureViewer"); \ +static_assert(offsetof(ASparseVolumeTextureViewer, SparseVolumeTextureViewerComponent) == 0x000298, "Member 'ASparseVolumeTextureViewer::SparseVolumeTextureViewerComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImgMediaSourceCustomizationSequenceProxy \ +static_assert(alignof(FImgMediaSourceCustomizationSequenceProxy) == 0x000001, "Wrong alignment on FImgMediaSourceCustomizationSequenceProxy"); \ +static_assert(sizeof(FImgMediaSourceCustomizationSequenceProxy) == 0x000001, "Wrong size on FImgMediaSourceCustomizationSequenceProxy"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_AddGlobalCamera \ +static_assert(alignof(ImgMediaSource_AddGlobalCamera) == 0x000008, "Wrong alignment on ImgMediaSource_AddGlobalCamera"); \ +static_assert(sizeof(ImgMediaSource_AddGlobalCamera) == 0x000008, "Wrong size on ImgMediaSource_AddGlobalCamera"); \ +static_assert(offsetof(ImgMediaSource_AddGlobalCamera, InActor) == 0x000000, "Member 'ImgMediaSource_AddGlobalCamera::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_AddTargetObject \ +static_assert(alignof(ImgMediaSource_AddTargetObject) == 0x000008, "Wrong alignment on ImgMediaSource_AddTargetObject"); \ +static_assert(sizeof(ImgMediaSource_AddTargetObject) == 0x000008, "Wrong size on ImgMediaSource_AddTargetObject"); \ +static_assert(offsetof(ImgMediaSource_AddTargetObject, InActor) == 0x000000, "Member 'ImgMediaSource_AddTargetObject::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_RemoveGlobalCamera \ +static_assert(alignof(ImgMediaSource_RemoveGlobalCamera) == 0x000008, "Wrong alignment on ImgMediaSource_RemoveGlobalCamera"); \ +static_assert(sizeof(ImgMediaSource_RemoveGlobalCamera) == 0x000008, "Wrong size on ImgMediaSource_RemoveGlobalCamera"); \ +static_assert(offsetof(ImgMediaSource_RemoveGlobalCamera, InActor) == 0x000000, "Member 'ImgMediaSource_RemoveGlobalCamera::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_RemoveTargetObject \ +static_assert(alignof(ImgMediaSource_RemoveTargetObject) == 0x000008, "Wrong alignment on ImgMediaSource_RemoveTargetObject"); \ +static_assert(sizeof(ImgMediaSource_RemoveTargetObject) == 0x000008, "Wrong size on ImgMediaSource_RemoveTargetObject"); \ +static_assert(offsetof(ImgMediaSource_RemoveTargetObject, InActor) == 0x000000, "Member 'ImgMediaSource_RemoveTargetObject::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_SetMipLevelDistance \ +static_assert(alignof(ImgMediaSource_SetMipLevelDistance) == 0x000004, "Wrong alignment on ImgMediaSource_SetMipLevelDistance"); \ +static_assert(sizeof(ImgMediaSource_SetMipLevelDistance) == 0x000004, "Wrong size on ImgMediaSource_SetMipLevelDistance"); \ +static_assert(offsetof(ImgMediaSource_SetMipLevelDistance, Distance) == 0x000000, "Member 'ImgMediaSource_SetMipLevelDistance::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_SetSequencePath \ +static_assert(alignof(ImgMediaSource_SetSequencePath) == 0x000008, "Wrong alignment on ImgMediaSource_SetSequencePath"); \ +static_assert(sizeof(ImgMediaSource_SetSequencePath) == 0x000010, "Wrong size on ImgMediaSource_SetSequencePath"); \ +static_assert(offsetof(ImgMediaSource_SetSequencePath, Path) == 0x000000, "Member 'ImgMediaSource_SetSequencePath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_SetTokenizedSequencePath \ +static_assert(alignof(ImgMediaSource_SetTokenizedSequencePath) == 0x000008, "Wrong alignment on ImgMediaSource_SetTokenizedSequencePath"); \ +static_assert(sizeof(ImgMediaSource_SetTokenizedSequencePath) == 0x000010, "Wrong size on ImgMediaSource_SetTokenizedSequencePath"); \ +static_assert(offsetof(ImgMediaSource_SetTokenizedSequencePath, Path) == 0x000000, "Member 'ImgMediaSource_SetTokenizedSequencePath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_GetProxies \ +static_assert(alignof(ImgMediaSource_GetProxies) == 0x000008, "Wrong alignment on ImgMediaSource_GetProxies"); \ +static_assert(sizeof(ImgMediaSource_GetProxies) == 0x000010, "Wrong size on ImgMediaSource_GetProxies"); \ +static_assert(offsetof(ImgMediaSource_GetProxies, OutProxies) == 0x000000, "Member 'ImgMediaSource_GetProxies::OutProxies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ImgMediaSource_GetSequencePath \ +static_assert(alignof(ImgMediaSource_GetSequencePath) == 0x000008, "Wrong alignment on ImgMediaSource_GetSequencePath"); \ +static_assert(sizeof(ImgMediaSource_GetSequencePath) == 0x000010, "Wrong size on ImgMediaSource_GetSequencePath"); \ +static_assert(offsetof(ImgMediaSource_GetSequencePath, ReturnValue) == 0x000000, "Member 'ImgMediaSource_GetSequencePath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImgMediaSource \ +static_assert(alignof(UImgMediaSource) == 0x000008, "Wrong alignment on UImgMediaSource"); \ +static_assert(sizeof(UImgMediaSource) == 0x0000D0, "Wrong size on UImgMediaSource"); \ +static_assert(offsetof(UImgMediaSource, IsPathRelativeToProjectRoot) == 0x000088, "Member 'UImgMediaSource::IsPathRelativeToProjectRoot' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSource, FrameRateOverride) == 0x00008C, "Member 'UImgMediaSource::FrameRateOverride' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSource, ProxyOverride) == 0x000098, "Member 'UImgMediaSource::ProxyOverride' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSource, bFillGapsInSequence) == 0x0000A8, "Member 'UImgMediaSource::bFillGapsInSequence' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSource, SequencePath) == 0x0000B0, "Member 'UImgMediaSource::SequencePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXRHMDData \ +static_assert(alignof(FXRHMDData) == 0x000010, "Wrong alignment on FXRHMDData"); \ +static_assert(sizeof(FXRHMDData) == 0x000060, "Wrong size on FXRHMDData"); \ +static_assert(offsetof(FXRHMDData, bValid) == 0x000000, "Member 'FXRHMDData::bValid' has a wrong offset!"); \ +static_assert(offsetof(FXRHMDData, DeviceName) == 0x000004, "Member 'FXRHMDData::DeviceName' has a wrong offset!"); \ +static_assert(offsetof(FXRHMDData, ApplicationInstanceID) == 0x00000C, "Member 'FXRHMDData::ApplicationInstanceID' has a wrong offset!"); \ +static_assert(offsetof(FXRHMDData, TrackingStatus) == 0x00001C, "Member 'FXRHMDData::TrackingStatus' has a wrong offset!"); \ +static_assert(offsetof(FXRHMDData, Position) == 0x000020, "Member 'FXRHMDData::Position' has a wrong offset!"); \ +static_assert(offsetof(FXRHMDData, Rotation) == 0x000040, "Member 'FXRHMDData::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXRMotionControllerData \ +static_assert(alignof(FXRMotionControllerData) == 0x000010, "Wrong alignment on FXRMotionControllerData"); \ +static_assert(sizeof(FXRMotionControllerData) == 0x000120, "Wrong size on FXRMotionControllerData"); \ +static_assert(offsetof(FXRMotionControllerData, bValid) == 0x000000, "Member 'FXRMotionControllerData::bValid' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, DeviceName) == 0x000004, "Member 'FXRMotionControllerData::DeviceName' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, ApplicationInstanceID) == 0x00000C, "Member 'FXRMotionControllerData::ApplicationInstanceID' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, DeviceVisualType) == 0x00001C, "Member 'FXRMotionControllerData::DeviceVisualType' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, HandIndex) == 0x00001D, "Member 'FXRMotionControllerData::HandIndex' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, TrackingStatus) == 0x00001E, "Member 'FXRMotionControllerData::TrackingStatus' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, GripPosition) == 0x000020, "Member 'FXRMotionControllerData::GripPosition' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, GripRotation) == 0x000040, "Member 'FXRMotionControllerData::GripRotation' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, AimPosition) == 0x000060, "Member 'FXRMotionControllerData::AimPosition' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, AimRotation) == 0x000080, "Member 'FXRMotionControllerData::AimRotation' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, PalmPosition) == 0x0000A0, "Member 'FXRMotionControllerData::PalmPosition' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, PalmRotation) == 0x0000C0, "Member 'FXRMotionControllerData::PalmRotation' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, HandKeyPositions) == 0x0000E0, "Member 'FXRMotionControllerData::HandKeyPositions' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, HandKeyRotations) == 0x0000F0, "Member 'FXRMotionControllerData::HandKeyRotations' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, HandKeyRadii) == 0x000100, "Member 'FXRMotionControllerData::HandKeyRadii' has a wrong offset!"); \ +static_assert(offsetof(FXRMotionControllerData, bIsGrasped) == 0x000110, "Member 'FXRMotionControllerData::bIsGrasped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXRGestureConfig \ +static_assert(alignof(FXRGestureConfig) == 0x000001, "Wrong alignment on FXRGestureConfig"); \ +static_assert(sizeof(FXRGestureConfig) == 0x000006, "Wrong size on FXRGestureConfig"); \ +static_assert(offsetof(FXRGestureConfig, bTap) == 0x000000, "Member 'FXRGestureConfig::bTap' has a wrong offset!"); \ +static_assert(offsetof(FXRGestureConfig, bHold) == 0x000001, "Member 'FXRGestureConfig::bHold' has a wrong offset!"); \ +static_assert(offsetof(FXRGestureConfig, AxisGesture) == 0x000002, "Member 'FXRGestureConfig::AxisGesture' has a wrong offset!"); \ +static_assert(offsetof(FXRGestureConfig, bNavigationAxisX) == 0x000003, "Member 'FXRGestureConfig::bNavigationAxisX' has a wrong offset!"); \ +static_assert(offsetof(FXRGestureConfig, bNavigationAxisY) == 0x000004, "Member 'FXRGestureConfig::bNavigationAxisY' has a wrong offset!"); \ +static_assert(offsetof(FXRGestureConfig, bNavigationAxisZ) == 0x000005, "Member 'FXRGestureConfig::bNavigationAxisZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FXRDeviceId \ +static_assert(alignof(FXRDeviceId) == 0x000004, "Wrong alignment on FXRDeviceId"); \ +static_assert(sizeof(FXRDeviceId) == 0x00000C, "Wrong size on FXRDeviceId"); \ +static_assert(offsetof(FXRDeviceId, SystemName) == 0x000000, "Member 'FXRDeviceId::SystemName' has a wrong offset!"); \ +static_assert(offsetof(FXRDeviceId, DeviceID) == 0x000008, "Member 'FXRDeviceId::DeviceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HandKeypointConversion_Conv_HandKeypointToInt32 \ +static_assert(alignof(HandKeypointConversion_Conv_HandKeypointToInt32) == 0x000004, "Wrong alignment on HandKeypointConversion_Conv_HandKeypointToInt32"); \ +static_assert(sizeof(HandKeypointConversion_Conv_HandKeypointToInt32) == 0x000008, "Wrong size on HandKeypointConversion_Conv_HandKeypointToInt32"); \ +static_assert(offsetof(HandKeypointConversion_Conv_HandKeypointToInt32, Input) == 0x000000, "Member 'HandKeypointConversion_Conv_HandKeypointToInt32::Input' has a wrong offset!"); \ +static_assert(offsetof(HandKeypointConversion_Conv_HandKeypointToInt32, ReturnValue) == 0x000004, "Member 'HandKeypointConversion_Conv_HandKeypointToInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHandKeypointConversion \ +static_assert(alignof(UHandKeypointConversion) == 0x000008, "Wrong alignment on UHandKeypointConversion"); \ +static_assert(sizeof(UHandKeypointConversion) == 0x000028, "Wrong size on UHandKeypointConversion"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetHandJointPosition \ +static_assert(alignof(MotionControllerComponent_GetHandJointPosition) == 0x000008, "Wrong alignment on MotionControllerComponent_GetHandJointPosition"); \ +static_assert(sizeof(MotionControllerComponent_GetHandJointPosition) == 0x000020, "Wrong size on MotionControllerComponent_GetHandJointPosition"); \ +static_assert(offsetof(MotionControllerComponent_GetHandJointPosition, jointIndex) == 0x000000, "Member 'MotionControllerComponent_GetHandJointPosition::jointIndex' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetHandJointPosition, bValueFound) == 0x000004, "Member 'MotionControllerComponent_GetHandJointPosition::bValueFound' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetHandJointPosition, ReturnValue) == 0x000008, "Member 'MotionControllerComponent_GetHandJointPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetParameterValue \ +static_assert(alignof(MotionControllerComponent_GetParameterValue) == 0x000004, "Wrong alignment on MotionControllerComponent_GetParameterValue"); \ +static_assert(sizeof(MotionControllerComponent_GetParameterValue) == 0x000010, "Wrong size on MotionControllerComponent_GetParameterValue"); \ +static_assert(offsetof(MotionControllerComponent_GetParameterValue, InName) == 0x000000, "Member 'MotionControllerComponent_GetParameterValue::InName' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetParameterValue, bValueFound) == 0x000008, "Member 'MotionControllerComponent_GetParameterValue::bValueFound' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetParameterValue, ReturnValue) == 0x00000C, "Member 'MotionControllerComponent_GetParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetAssociatedPlayerIndex \ +static_assert(alignof(MotionControllerComponent_SetAssociatedPlayerIndex) == 0x000004, "Wrong alignment on MotionControllerComponent_SetAssociatedPlayerIndex"); \ +static_assert(sizeof(MotionControllerComponent_SetAssociatedPlayerIndex) == 0x000004, "Wrong size on MotionControllerComponent_SetAssociatedPlayerIndex"); \ +static_assert(offsetof(MotionControllerComponent_SetAssociatedPlayerIndex, NewPlayer) == 0x000000, "Member 'MotionControllerComponent_SetAssociatedPlayerIndex::NewPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetCustomDisplayMesh \ +static_assert(alignof(MotionControllerComponent_SetCustomDisplayMesh) == 0x000008, "Wrong alignment on MotionControllerComponent_SetCustomDisplayMesh"); \ +static_assert(sizeof(MotionControllerComponent_SetCustomDisplayMesh) == 0x000008, "Wrong size on MotionControllerComponent_SetCustomDisplayMesh"); \ +static_assert(offsetof(MotionControllerComponent_SetCustomDisplayMesh, NewDisplayMesh) == 0x000000, "Member 'MotionControllerComponent_SetCustomDisplayMesh::NewDisplayMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetDisplayModelSource \ +static_assert(alignof(MotionControllerComponent_SetDisplayModelSource) == 0x000004, "Wrong alignment on MotionControllerComponent_SetDisplayModelSource"); \ +static_assert(sizeof(MotionControllerComponent_SetDisplayModelSource) == 0x000008, "Wrong size on MotionControllerComponent_SetDisplayModelSource"); \ +static_assert(offsetof(MotionControllerComponent_SetDisplayModelSource, NewDisplayModelSource) == 0x000000, "Member 'MotionControllerComponent_SetDisplayModelSource::NewDisplayModelSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetShowDeviceModel \ +static_assert(alignof(MotionControllerComponent_SetShowDeviceModel) == 0x000001, "Wrong alignment on MotionControllerComponent_SetShowDeviceModel"); \ +static_assert(sizeof(MotionControllerComponent_SetShowDeviceModel) == 0x000001, "Wrong size on MotionControllerComponent_SetShowDeviceModel"); \ +static_assert(offsetof(MotionControllerComponent_SetShowDeviceModel, bShowControllerModel) == 0x000000, "Member 'MotionControllerComponent_SetShowDeviceModel::bShowControllerModel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetTrackingMotionSource \ +static_assert(alignof(MotionControllerComponent_SetTrackingMotionSource) == 0x000004, "Wrong alignment on MotionControllerComponent_SetTrackingMotionSource"); \ +static_assert(sizeof(MotionControllerComponent_SetTrackingMotionSource) == 0x000008, "Wrong size on MotionControllerComponent_SetTrackingMotionSource"); \ +static_assert(offsetof(MotionControllerComponent_SetTrackingMotionSource, NewSource) == 0x000000, "Member 'MotionControllerComponent_SetTrackingMotionSource::NewSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_SetTrackingSource \ +static_assert(alignof(MotionControllerComponent_SetTrackingSource) == 0x000001, "Wrong alignment on MotionControllerComponent_SetTrackingSource"); \ +static_assert(sizeof(MotionControllerComponent_SetTrackingSource) == 0x000001, "Wrong size on MotionControllerComponent_SetTrackingSource"); \ +static_assert(offsetof(MotionControllerComponent_SetTrackingSource, NewSource) == 0x000000, "Member 'MotionControllerComponent_SetTrackingSource::NewSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetAngularVelocity \ +static_assert(alignof(MotionControllerComponent_GetAngularVelocity) == 0x000008, "Wrong alignment on MotionControllerComponent_GetAngularVelocity"); \ +static_assert(sizeof(MotionControllerComponent_GetAngularVelocity) == 0x000020, "Wrong size on MotionControllerComponent_GetAngularVelocity"); \ +static_assert(offsetof(MotionControllerComponent_GetAngularVelocity, OutAngularVelocity) == 0x000000, "Member 'MotionControllerComponent_GetAngularVelocity::OutAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetAngularVelocity, ReturnValue) == 0x000018, "Member 'MotionControllerComponent_GetAngularVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetLinearAcceleration \ +static_assert(alignof(MotionControllerComponent_GetLinearAcceleration) == 0x000008, "Wrong alignment on MotionControllerComponent_GetLinearAcceleration"); \ +static_assert(sizeof(MotionControllerComponent_GetLinearAcceleration) == 0x000020, "Wrong size on MotionControllerComponent_GetLinearAcceleration"); \ +static_assert(offsetof(MotionControllerComponent_GetLinearAcceleration, OutLinearAcceleration) == 0x000000, "Member 'MotionControllerComponent_GetLinearAcceleration::OutLinearAcceleration' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetLinearAcceleration, ReturnValue) == 0x000018, "Member 'MotionControllerComponent_GetLinearAcceleration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetLinearVelocity \ +static_assert(alignof(MotionControllerComponent_GetLinearVelocity) == 0x000008, "Wrong alignment on MotionControllerComponent_GetLinearVelocity"); \ +static_assert(sizeof(MotionControllerComponent_GetLinearVelocity) == 0x000020, "Wrong size on MotionControllerComponent_GetLinearVelocity"); \ +static_assert(offsetof(MotionControllerComponent_GetLinearVelocity, OutLinearVelocity) == 0x000000, "Member 'MotionControllerComponent_GetLinearVelocity::OutLinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(MotionControllerComponent_GetLinearVelocity, ReturnValue) == 0x000018, "Member 'MotionControllerComponent_GetLinearVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_GetTrackingSource \ +static_assert(alignof(MotionControllerComponent_GetTrackingSource) == 0x000001, "Wrong alignment on MotionControllerComponent_GetTrackingSource"); \ +static_assert(sizeof(MotionControllerComponent_GetTrackingSource) == 0x000001, "Wrong size on MotionControllerComponent_GetTrackingSource"); \ +static_assert(offsetof(MotionControllerComponent_GetTrackingSource, ReturnValue) == 0x000000, "Member 'MotionControllerComponent_GetTrackingSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionControllerComponent_IsTracked \ +static_assert(alignof(MotionControllerComponent_IsTracked) == 0x000001, "Wrong alignment on MotionControllerComponent_IsTracked"); \ +static_assert(sizeof(MotionControllerComponent_IsTracked) == 0x000001, "Wrong size on MotionControllerComponent_IsTracked"); \ +static_assert(offsetof(MotionControllerComponent_IsTracked, ReturnValue) == 0x000000, "Member 'MotionControllerComponent_IsTracked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMotionControllerComponent \ +static_assert(alignof(UMotionControllerComponent) == 0x000010, "Wrong alignment on UMotionControllerComponent"); \ +static_assert(sizeof(UMotionControllerComponent) == 0x0006F0, "Wrong size on UMotionControllerComponent"); \ +static_assert(offsetof(UMotionControllerComponent, PlayerIndex) == 0x000570, "Member 'UMotionControllerComponent::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, MotionSource) == 0x000574, "Member 'UMotionControllerComponent::MotionSource' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, CurrentTrackingStatus) == 0x000580, "Member 'UMotionControllerComponent::CurrentTrackingStatus' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, bDisplayDeviceModel) == 0x000581, "Member 'UMotionControllerComponent::bDisplayDeviceModel' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, DisplayModelSource) == 0x000584, "Member 'UMotionControllerComponent::DisplayModelSource' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, CustomDisplayMesh) == 0x000590, "Member 'UMotionControllerComponent::CustomDisplayMesh' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, DisplayMeshMaterialOverrides) == 0x000598, "Member 'UMotionControllerComponent::DisplayMeshMaterialOverrides' has a wrong offset!"); \ +static_assert(offsetof(UMotionControllerComponent, DisplayComponent) == 0x0005A8, "Member 'UMotionControllerComponent::DisplayComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFoliageTypeObject \ +static_assert(alignof(FFoliageTypeObject) == 0x000008, "Wrong alignment on FFoliageTypeObject"); \ +static_assert(sizeof(FFoliageTypeObject) == 0x000020, "Wrong size on FFoliageTypeObject"); \ +static_assert(offsetof(FFoliageTypeObject, FoliageTypeObject) == 0x000000, "Member 'FFoliageTypeObject::FoliageTypeObject' has a wrong offset!"); \ +static_assert(offsetof(FFoliageTypeObject, TypeInstance) == 0x000008, "Member 'FFoliageTypeObject::TypeInstance' has a wrong offset!"); \ +static_assert(offsetof(FFoliageTypeObject, bIsAsset) == 0x000010, "Member 'FFoliageTypeObject::bIsAsset' has a wrong offset!"); \ +static_assert(offsetof(FFoliageTypeObject, Type) == 0x000018, "Member 'FFoliageTypeObject::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFoliageVertexColorChannelMask \ +static_assert(alignof(FFoliageVertexColorChannelMask) == 0x000004, "Wrong alignment on FFoliageVertexColorChannelMask"); \ +static_assert(sizeof(FFoliageVertexColorChannelMask) == 0x00000C, "Wrong size on FFoliageVertexColorChannelMask"); \ +static_assert(offsetof(FFoliageVertexColorChannelMask, MaskThreshold) == 0x000004, "Member 'FFoliageVertexColorChannelMask::MaskThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProceduralFoliageInstance \ +static_assert(alignof(FProceduralFoliageInstance) == 0x000010, "Wrong alignment on FProceduralFoliageInstance"); \ +static_assert(sizeof(FProceduralFoliageInstance) == 0x000080, "Wrong size on FProceduralFoliageInstance"); \ +static_assert(offsetof(FProceduralFoliageInstance, Rotation) == 0x000000, "Member 'FProceduralFoliageInstance::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FProceduralFoliageInstance, Location) == 0x000020, "Member 'FProceduralFoliageInstance::Location' has a wrong offset!"); \ +static_assert(offsetof(FProceduralFoliageInstance, Age) == 0x000038, "Member 'FProceduralFoliageInstance::Age' has a wrong offset!"); \ +static_assert(offsetof(FProceduralFoliageInstance, Normal) == 0x000040, "Member 'FProceduralFoliageInstance::Normal' has a wrong offset!"); \ +static_assert(offsetof(FProceduralFoliageInstance, Scale) == 0x000058, "Member 'FProceduralFoliageInstance::Scale' has a wrong offset!"); \ +static_assert(offsetof(FProceduralFoliageInstance, Type) == 0x000060, "Member 'FProceduralFoliageInstance::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFoliageDensityFalloff \ +static_assert(alignof(FFoliageDensityFalloff) == 0x000008, "Wrong alignment on FFoliageDensityFalloff"); \ +static_assert(sizeof(FFoliageDensityFalloff) == 0x000090, "Wrong size on FFoliageDensityFalloff"); \ +static_assert(offsetof(FFoliageDensityFalloff, bUseFalloffCurve) == 0x000000, "Member 'FFoliageDensityFalloff::bUseFalloffCurve' has a wrong offset!"); \ +static_assert(offsetof(FFoliageDensityFalloff, FalloffCurve) == 0x000008, "Member 'FFoliageDensityFalloff::FalloffCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveFoliageComponent \ +static_assert(alignof(UInteractiveFoliageComponent) == 0x000010, "Wrong alignment on UInteractiveFoliageComponent"); \ +static_assert(sizeof(UInteractiveFoliageComponent) == 0x000630, "Wrong size on UInteractiveFoliageComponent"); \ + +#define DUMPER7_ASSERTS_UFoliageInstancedStaticMeshComponent \ +static_assert(alignof(UFoliageInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UFoliageInstancedStaticMeshComponent"); \ +static_assert(sizeof(UFoliageInstancedStaticMeshComponent) == 0x000940, "Wrong size on UFoliageInstancedStaticMeshComponent"); \ +static_assert(offsetof(UFoliageInstancedStaticMeshComponent, OnInstanceTakePointDamage) == 0x000900, "Member 'UFoliageInstancedStaticMeshComponent::OnInstanceTakePointDamage' has a wrong offset!"); \ +static_assert(offsetof(UFoliageInstancedStaticMeshComponent, OnInstanceTakeRadialDamage) == 0x000910, "Member 'UFoliageInstancedStaticMeshComponent::OnInstanceTakeRadialDamage' has a wrong offset!"); \ +static_assert(offsetof(UFoliageInstancedStaticMeshComponent, bEnableDiscardOnLoad) == 0x000920, "Member 'UFoliageInstancedStaticMeshComponent::bEnableDiscardOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UFoliageInstancedStaticMeshComponent, GenerationGuid) == 0x000924, "Member 'UFoliageInstancedStaticMeshComponent::GenerationGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFoliageType \ +static_assert(alignof(UFoliageType) == 0x000008, "Wrong alignment on UFoliageType"); \ +static_assert(sizeof(UFoliageType) == 0x0004C0, "Wrong size on UFoliageType"); \ +static_assert(offsetof(UFoliageType, UpdateGuid) == 0x000028, "Member 'UFoliageType::UpdateGuid' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, Density) == 0x000038, "Member 'UFoliageType::Density' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, DensityAdjustmentFactor) == 0x00003C, "Member 'UFoliageType::DensityAdjustmentFactor' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, Radius) == 0x000040, "Member 'UFoliageType::Radius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, bSingleInstanceModeOverrideRadius) == 0x000044, "Member 'UFoliageType::bSingleInstanceModeOverrideRadius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, SingleInstanceModeRadius) == 0x000048, "Member 'UFoliageType::SingleInstanceModeRadius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, Scaling) == 0x00004C, "Member 'UFoliageType::Scaling' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ScaleX) == 0x000050, "Member 'UFoliageType::ScaleX' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ScaleY) == 0x000058, "Member 'UFoliageType::ScaleY' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ScaleZ) == 0x000060, "Member 'UFoliageType::ScaleZ' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, VertexColorMaskByChannel) == 0x000068, "Member 'UFoliageType::VertexColorMaskByChannel' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, VertexColorMask) == 0x000098, "Member 'UFoliageType::VertexColorMask' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, VertexColorMaskThreshold) == 0x00009C, "Member 'UFoliageType::VertexColorMaskThreshold' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ZOffset) == 0x0000A4, "Member 'UFoliageType::ZOffset' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, AlignMaxAngle) == 0x0000B0, "Member 'UFoliageType::AlignMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, RandomPitchAngle) == 0x0000B8, "Member 'UFoliageType::RandomPitchAngle' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, GroundSlopeAngle) == 0x0000BC, "Member 'UFoliageType::GroundSlopeAngle' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, Height) == 0x0000C4, "Member 'UFoliageType::Height' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, LandscapeLayers) == 0x0000D0, "Member 'UFoliageType::LandscapeLayers' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MinimumLayerWeight) == 0x0000E0, "Member 'UFoliageType::MinimumLayerWeight' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ExclusionLandscapeLayers) == 0x0000E8, "Member 'UFoliageType::ExclusionLandscapeLayers' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MinimumExclusionLayerWeight) == 0x0000F8, "Member 'UFoliageType::MinimumExclusionLayerWeight' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, LandscapeLayer) == 0x0000FC, "Member 'UFoliageType::LandscapeLayer' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CollisionScale) == 0x000108, "Member 'UFoliageType::CollisionScale' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, AverageNormalSampleCount) == 0x000120, "Member 'UFoliageType::AverageNormalSampleCount' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MeshBounds) == 0x000128, "Member 'UFoliageType::MeshBounds' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, LowBoundOriginRadius) == 0x000160, "Member 'UFoliageType::LowBoundOriginRadius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, Mobility) == 0x000178, "Member 'UFoliageType::Mobility' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CullDistance) == 0x00017C, "Member 'UFoliageType::CullDistance' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ShadowCacheInvalidationBehavior) == 0x000190, "Member 'UFoliageType::ShadowCacheInvalidationBehavior' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, OverriddenLightMapRes) == 0x000194, "Member 'UFoliageType::OverriddenLightMapRes' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, LightmapType) == 0x000198, "Member 'UFoliageType::LightmapType' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, WorldPositionOffsetDisableDistance) == 0x0001A4, "Member 'UFoliageType::WorldPositionOffsetDisableDistance' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, BodyInstance) == 0x0001A8, "Member 'UFoliageType::BodyInstance' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CustomNavigableGeometry) == 0x000338, "Member 'UFoliageType::CustomNavigableGeometry' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, LightingChannels) == 0x000339, "Member 'UFoliageType::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CustomDepthStencilWriteMask) == 0x000340, "Member 'UFoliageType::CustomDepthStencilWriteMask' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CustomDepthStencilValue) == 0x000344, "Member 'UFoliageType::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, TranslucencySortPriority) == 0x000348, "Member 'UFoliageType::TranslucencySortPriority' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, CollisionRadius) == 0x00034C, "Member 'UFoliageType::CollisionRadius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ShadeRadius) == 0x000350, "Member 'UFoliageType::ShadeRadius' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, NumSteps) == 0x000354, "Member 'UFoliageType::NumSteps' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, InitialSeedDensity) == 0x000358, "Member 'UFoliageType::InitialSeedDensity' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, AverageSpreadDistance) == 0x00035C, "Member 'UFoliageType::AverageSpreadDistance' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, SpreadVariance) == 0x000360, "Member 'UFoliageType::SpreadVariance' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, SeedsPerStep) == 0x000364, "Member 'UFoliageType::SeedsPerStep' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, DistributionSeed) == 0x000368, "Member 'UFoliageType::DistributionSeed' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MaxInitialSeedOffset) == 0x00036C, "Member 'UFoliageType::MaxInitialSeedOffset' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, bCanGrowInShade) == 0x000370, "Member 'UFoliageType::bCanGrowInShade' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, bSpawnsInShade) == 0x000371, "Member 'UFoliageType::bSpawnsInShade' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MaxInitialAge) == 0x000374, "Member 'UFoliageType::MaxInitialAge' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, MaxAge) == 0x000378, "Member 'UFoliageType::MaxAge' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, OverlapPriority) == 0x00037C, "Member 'UFoliageType::OverlapPriority' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ProceduralScale) == 0x000380, "Member 'UFoliageType::ProceduralScale' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ScaleCurve) == 0x000388, "Member 'UFoliageType::ScaleCurve' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, DensityFalloff) == 0x000410, "Member 'UFoliageType::DensityFalloff' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, ChangeCount) == 0x0004A0, "Member 'UFoliageType::ChangeCount' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, RuntimeVirtualTextures) == 0x0004A8, "Member 'UFoliageType::RuntimeVirtualTextures' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, VirtualTextureCullMips) == 0x0004B8, "Member 'UFoliageType::VirtualTextureCullMips' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType, VirtualTextureRenderPassType) == 0x0004BC, "Member 'UFoliageType::VirtualTextureRenderPassType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFoliageType_Actor \ +static_assert(alignof(UFoliageType_Actor) == 0x000008, "Wrong alignment on UFoliageType_Actor"); \ +static_assert(sizeof(UFoliageType_Actor) == 0x0004D8, "Wrong size on UFoliageType_Actor"); \ +static_assert(offsetof(UFoliageType_Actor, ActorClass) == 0x0004C0, "Member 'UFoliageType_Actor::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_Actor, bShouldAttachToBaseComponent) == 0x0004C8, "Member 'UFoliageType_Actor::bShouldAttachToBaseComponent' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_Actor, bStaticMeshOnly) == 0x0004C9, "Member 'UFoliageType_Actor::bStaticMeshOnly' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_Actor, StaticMeshOnlyComponentClass) == 0x0004D0, "Member 'UFoliageType_Actor::StaticMeshOnlyComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGrassInstancedStaticMeshComponent \ +static_assert(alignof(UGrassInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UGrassInstancedStaticMeshComponent"); \ +static_assert(sizeof(UGrassInstancedStaticMeshComponent) == 0x000900, "Wrong size on UGrassInstancedStaticMeshComponent"); \ + +#define DUMPER7_ASSERTS_UFoliageType_InstancedStaticMesh \ +static_assert(alignof(UFoliageType_InstancedStaticMesh) == 0x000008, "Wrong alignment on UFoliageType_InstancedStaticMesh"); \ +static_assert(sizeof(UFoliageType_InstancedStaticMesh) == 0x0004F0, "Wrong size on UFoliageType_InstancedStaticMesh"); \ +static_assert(offsetof(UFoliageType_InstancedStaticMesh, Mesh) == 0x0004C0, "Member 'UFoliageType_InstancedStaticMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_InstancedStaticMesh, OverrideMaterials) == 0x0004C8, "Member 'UFoliageType_InstancedStaticMesh::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_InstancedStaticMesh, NaniteOverrideMaterials) == 0x0004D8, "Member 'UFoliageType_InstancedStaticMesh::NaniteOverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UFoliageType_InstancedStaticMesh, ComponentClass) == 0x0004E8, "Member 'UFoliageType_InstancedStaticMesh::ComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AInstancedFoliageActor \ +static_assert(alignof(AInstancedFoliageActor) == 0x000008, "Wrong alignment on AInstancedFoliageActor"); \ +static_assert(sizeof(AInstancedFoliageActor) == 0x0002F8, "Wrong size on AInstancedFoliageActor"); \ + +#define DUMPER7_ASSERTS_FoliageStatistics_FoliageOverlappingBoxCount \ +static_assert(alignof(FoliageStatistics_FoliageOverlappingBoxCount) == 0x000008, "Wrong alignment on FoliageStatistics_FoliageOverlappingBoxCount"); \ +static_assert(sizeof(FoliageStatistics_FoliageOverlappingBoxCount) == 0x000050, "Wrong size on FoliageStatistics_FoliageOverlappingBoxCount"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxCount, WorldContextObject) == 0x000000, "Member 'FoliageStatistics_FoliageOverlappingBoxCount::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxCount, StaticMesh) == 0x000008, "Member 'FoliageStatistics_FoliageOverlappingBoxCount::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxCount, Box) == 0x000010, "Member 'FoliageStatistics_FoliageOverlappingBoxCount::Box' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxCount, ReturnValue) == 0x000048, "Member 'FoliageStatistics_FoliageOverlappingBoxCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FoliageStatistics_FoliageOverlappingBoxTransforms \ +static_assert(alignof(FoliageStatistics_FoliageOverlappingBoxTransforms) == 0x000008, "Wrong alignment on FoliageStatistics_FoliageOverlappingBoxTransforms"); \ +static_assert(sizeof(FoliageStatistics_FoliageOverlappingBoxTransforms) == 0x000058, "Wrong size on FoliageStatistics_FoliageOverlappingBoxTransforms"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxTransforms, WorldContextObject) == 0x000000, "Member 'FoliageStatistics_FoliageOverlappingBoxTransforms::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxTransforms, StaticMesh) == 0x000008, "Member 'FoliageStatistics_FoliageOverlappingBoxTransforms::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxTransforms, Box) == 0x000010, "Member 'FoliageStatistics_FoliageOverlappingBoxTransforms::Box' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingBoxTransforms, OutTransforms) == 0x000048, "Member 'FoliageStatistics_FoliageOverlappingBoxTransforms::OutTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FoliageStatistics_FoliageOverlappingSphereCount \ +static_assert(alignof(FoliageStatistics_FoliageOverlappingSphereCount) == 0x000008, "Wrong alignment on FoliageStatistics_FoliageOverlappingSphereCount"); \ +static_assert(sizeof(FoliageStatistics_FoliageOverlappingSphereCount) == 0x000030, "Wrong size on FoliageStatistics_FoliageOverlappingSphereCount"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingSphereCount, WorldContextObject) == 0x000000, "Member 'FoliageStatistics_FoliageOverlappingSphereCount::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingSphereCount, StaticMesh) == 0x000008, "Member 'FoliageStatistics_FoliageOverlappingSphereCount::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingSphereCount, CenterPosition) == 0x000010, "Member 'FoliageStatistics_FoliageOverlappingSphereCount::CenterPosition' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingSphereCount, Radius) == 0x000028, "Member 'FoliageStatistics_FoliageOverlappingSphereCount::Radius' has a wrong offset!"); \ +static_assert(offsetof(FoliageStatistics_FoliageOverlappingSphereCount, ReturnValue) == 0x00002C, "Member 'FoliageStatistics_FoliageOverlappingSphereCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFoliageStatistics \ +static_assert(alignof(UFoliageStatistics) == 0x000008, "Wrong alignment on UFoliageStatistics"); \ +static_assert(sizeof(UFoliageStatistics) == 0x000028, "Wrong size on UFoliageStatistics"); \ + +#define DUMPER7_ASSERTS_InteractiveFoliageActor_CapsuleTouched \ +static_assert(alignof(InteractiveFoliageActor_CapsuleTouched) == 0x000008, "Wrong alignment on InteractiveFoliageActor_CapsuleTouched"); \ +static_assert(sizeof(InteractiveFoliageActor_CapsuleTouched) == 0x000108, "Wrong size on InteractiveFoliageActor_CapsuleTouched"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, OverlappedComp) == 0x000000, "Member 'InteractiveFoliageActor_CapsuleTouched::OverlappedComp' has a wrong offset!"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, Other) == 0x000008, "Member 'InteractiveFoliageActor_CapsuleTouched::Other' has a wrong offset!"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, OtherComp) == 0x000010, "Member 'InteractiveFoliageActor_CapsuleTouched::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, OtherBodyIndex) == 0x000018, "Member 'InteractiveFoliageActor_CapsuleTouched::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, bFromSweep) == 0x00001C, "Member 'InteractiveFoliageActor_CapsuleTouched::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(InteractiveFoliageActor_CapsuleTouched, OverlapInfo) == 0x000020, "Member 'InteractiveFoliageActor_CapsuleTouched::OverlapInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AInteractiveFoliageActor \ +static_assert(alignof(AInteractiveFoliageActor) == 0x000008, "Wrong alignment on AInteractiveFoliageActor"); \ +static_assert(sizeof(AInteractiveFoliageActor) == 0x000338, "Wrong size on AInteractiveFoliageActor"); \ +static_assert(offsetof(AInteractiveFoliageActor, CapsuleComponent) == 0x0002A8, "Member 'AInteractiveFoliageActor::CapsuleComponent' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, TouchingActorEntryPosition) == 0x0002B0, "Member 'AInteractiveFoliageActor::TouchingActorEntryPosition' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageVelocity) == 0x0002C8, "Member 'AInteractiveFoliageActor::FoliageVelocity' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageForce) == 0x0002E0, "Member 'AInteractiveFoliageActor::FoliageForce' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliagePosition) == 0x0002F8, "Member 'AInteractiveFoliageActor::FoliagePosition' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageDamageImpulseScale) == 0x000310, "Member 'AInteractiveFoliageActor::FoliageDamageImpulseScale' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageTouchImpulseScale) == 0x000314, "Member 'AInteractiveFoliageActor::FoliageTouchImpulseScale' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageStiffness) == 0x000318, "Member 'AInteractiveFoliageActor::FoliageStiffness' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageStiffnessQuadratic) == 0x00031C, "Member 'AInteractiveFoliageActor::FoliageStiffnessQuadratic' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, FoliageDamping) == 0x000320, "Member 'AInteractiveFoliageActor::FoliageDamping' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, MaxDamageImpulse) == 0x000324, "Member 'AInteractiveFoliageActor::MaxDamageImpulse' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, MaxTouchImpulse) == 0x000328, "Member 'AInteractiveFoliageActor::MaxTouchImpulse' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, MaxForce) == 0x00032C, "Member 'AInteractiveFoliageActor::MaxForce' has a wrong offset!"); \ +static_assert(offsetof(AInteractiveFoliageActor, MASS) == 0x000330, "Member 'AInteractiveFoliageActor::MASS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AProceduralFoliageBlockingVolume \ +static_assert(alignof(AProceduralFoliageBlockingVolume) == 0x000008, "Wrong alignment on AProceduralFoliageBlockingVolume"); \ +static_assert(sizeof(AProceduralFoliageBlockingVolume) == 0x000368, "Wrong size on AProceduralFoliageBlockingVolume"); \ +static_assert(offsetof(AProceduralFoliageBlockingVolume, ProceduralFoliageVolume) == 0x0002D0, "Member 'AProceduralFoliageBlockingVolume::ProceduralFoliageVolume' has a wrong offset!"); \ +static_assert(offsetof(AProceduralFoliageBlockingVolume, DensityFalloff) == 0x0002D8, "Member 'AProceduralFoliageBlockingVolume::DensityFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralFoliageComponent \ +static_assert(alignof(UProceduralFoliageComponent) == 0x000008, "Wrong alignment on UProceduralFoliageComponent"); \ +static_assert(sizeof(UProceduralFoliageComponent) == 0x0000C8, "Wrong size on UProceduralFoliageComponent"); \ +static_assert(offsetof(UProceduralFoliageComponent, FoliageSpawner) == 0x0000A0, "Member 'UProceduralFoliageComponent::FoliageSpawner' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageComponent, TileOverlap) == 0x0000A8, "Member 'UProceduralFoliageComponent::TileOverlap' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageComponent, SpawningVolume) == 0x0000B0, "Member 'UProceduralFoliageComponent::SpawningVolume' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageComponent, ProceduralGuid) == 0x0000B8, "Member 'UProceduralFoliageComponent::ProceduralGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralFoliageSpawner_Simulate \ +static_assert(alignof(ProceduralFoliageSpawner_Simulate) == 0x000004, "Wrong alignment on ProceduralFoliageSpawner_Simulate"); \ +static_assert(sizeof(ProceduralFoliageSpawner_Simulate) == 0x000004, "Wrong size on ProceduralFoliageSpawner_Simulate"); \ +static_assert(offsetof(ProceduralFoliageSpawner_Simulate, NumSteps) == 0x000000, "Member 'ProceduralFoliageSpawner_Simulate::NumSteps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralFoliageSpawner \ +static_assert(alignof(UProceduralFoliageSpawner) == 0x000008, "Wrong alignment on UProceduralFoliageSpawner"); \ +static_assert(sizeof(UProceduralFoliageSpawner) == 0x000080, "Wrong size on UProceduralFoliageSpawner"); \ +static_assert(offsetof(UProceduralFoliageSpawner, RandomSeed) == 0x000028, "Member 'UProceduralFoliageSpawner::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, TileSize) == 0x00002C, "Member 'UProceduralFoliageSpawner::TileSize' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, NumUniqueTiles) == 0x000030, "Member 'UProceduralFoliageSpawner::NumUniqueTiles' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, MinimumQuadTreeSize) == 0x000034, "Member 'UProceduralFoliageSpawner::MinimumQuadTreeSize' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, FoliageTypes) == 0x000040, "Member 'UProceduralFoliageSpawner::FoliageTypes' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, bUseOverrideFoliageTerrainMaterials) == 0x000050, "Member 'UProceduralFoliageSpawner::bUseOverrideFoliageTerrainMaterials' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageSpawner, OverrideFoliageTerrainMaterials) == 0x000058, "Member 'UProceduralFoliageSpawner::OverrideFoliageTerrainMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralFoliageTile \ +static_assert(alignof(UProceduralFoliageTile) == 0x000008, "Wrong alignment on UProceduralFoliageTile"); \ +static_assert(sizeof(UProceduralFoliageTile) == 0x000170, "Wrong size on UProceduralFoliageTile"); \ +static_assert(offsetof(UProceduralFoliageTile, FoliageSpawner) == 0x000028, "Member 'UProceduralFoliageTile::FoliageSpawner' has a wrong offset!"); \ +static_assert(offsetof(UProceduralFoliageTile, InstancesArray) == 0x0000D0, "Member 'UProceduralFoliageTile::InstancesArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AProceduralFoliageVolume \ +static_assert(alignof(AProceduralFoliageVolume) == 0x000008, "Wrong alignment on AProceduralFoliageVolume"); \ +static_assert(sizeof(AProceduralFoliageVolume) == 0x0002E0, "Wrong size on AProceduralFoliageVolume"); \ +static_assert(offsetof(AProceduralFoliageVolume, ProceduralComponent) == 0x0002D8, "Member 'AProceduralFoliageVolume::ProceduralComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeightmapData \ +static_assert(alignof(FHeightmapData) == 0x000008, "Wrong alignment on FHeightmapData"); \ +static_assert(sizeof(FHeightmapData) == 0x000008, "Wrong size on FHeightmapData"); \ +static_assert(offsetof(FHeightmapData, Texture) == 0x000000, "Member 'FHeightmapData::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeLayerBrush \ +static_assert(alignof(FLandscapeLayerBrush) == 0x000001, "Wrong alignment on FLandscapeLayerBrush"); \ +static_assert(sizeof(FLandscapeLayerBrush) == 0x000001, "Wrong size on FLandscapeLayerBrush"); \ + +#define DUMPER7_ASSERTS_FLandscapeLayer \ +static_assert(alignof(FLandscapeLayer) == 0x000008, "Wrong alignment on FLandscapeLayer"); \ +static_assert(sizeof(FLandscapeLayer) == 0x000088, "Wrong size on FLandscapeLayer"); \ +static_assert(offsetof(FLandscapeLayer, Guid) == 0x000000, "Member 'FLandscapeLayer::Guid' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, Name) == 0x000010, "Member 'FLandscapeLayer::Name' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, bVisible) == 0x000018, "Member 'FLandscapeLayer::bVisible' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, bLocked) == 0x000019, "Member 'FLandscapeLayer::bLocked' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, HeightmapAlpha) == 0x00001C, "Member 'FLandscapeLayer::HeightmapAlpha' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, WeightmapAlpha) == 0x000020, "Member 'FLandscapeLayer::WeightmapAlpha' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, BlendMode) == 0x000024, "Member 'FLandscapeLayer::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, Brushes) == 0x000028, "Member 'FLandscapeLayer::Brushes' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayer, WeightmapLayerAllocationBlend) == 0x000038, "Member 'FLandscapeLayer::WeightmapLayerAllocationBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeEditToolRenderData \ +static_assert(alignof(FLandscapeEditToolRenderData) == 0x000008, "Wrong alignment on FLandscapeEditToolRenderData"); \ +static_assert(sizeof(FLandscapeEditToolRenderData) == 0x000038, "Wrong size on FLandscapeEditToolRenderData"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, ToolMaterial) == 0x000000, "Member 'FLandscapeEditToolRenderData::ToolMaterial' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, GizmoMaterial) == 0x000008, "Member 'FLandscapeEditToolRenderData::GizmoMaterial' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, SelectedType) == 0x000010, "Member 'FLandscapeEditToolRenderData::SelectedType' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, DebugChannelR) == 0x000014, "Member 'FLandscapeEditToolRenderData::DebugChannelR' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, DebugChannelG) == 0x000018, "Member 'FLandscapeEditToolRenderData::DebugChannelG' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, DebugChannelB) == 0x00001C, "Member 'FLandscapeEditToolRenderData::DebugChannelB' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, DataTexture) == 0x000020, "Member 'FLandscapeEditToolRenderData::DataTexture' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, LayerContributionTexture) == 0x000028, "Member 'FLandscapeEditToolRenderData::LayerContributionTexture' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeEditToolRenderData, DirtyTexture) == 0x000030, "Member 'FLandscapeEditToolRenderData::DirtyTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWeightmapLayerAllocationInfo \ +static_assert(alignof(FWeightmapLayerAllocationInfo) == 0x000008, "Wrong alignment on FWeightmapLayerAllocationInfo"); \ +static_assert(sizeof(FWeightmapLayerAllocationInfo) == 0x000010, "Wrong size on FWeightmapLayerAllocationInfo"); \ +static_assert(offsetof(FWeightmapLayerAllocationInfo, LayerInfo) == 0x000000, "Member 'FWeightmapLayerAllocationInfo::LayerInfo' has a wrong offset!"); \ +static_assert(offsetof(FWeightmapLayerAllocationInfo, WeightmapTextureIndex) == 0x000008, "Member 'FWeightmapLayerAllocationInfo::WeightmapTextureIndex' has a wrong offset!"); \ +static_assert(offsetof(FWeightmapLayerAllocationInfo, WeightmapTextureChannel) == 0x000009, "Member 'FWeightmapLayerAllocationInfo::WeightmapTextureChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeComponentMaterialOverride \ +static_assert(alignof(FLandscapeComponentMaterialOverride) == 0x000008, "Wrong alignment on FLandscapeComponentMaterialOverride"); \ +static_assert(sizeof(FLandscapeComponentMaterialOverride) == 0x000010, "Wrong size on FLandscapeComponentMaterialOverride"); \ +static_assert(offsetof(FLandscapeComponentMaterialOverride, LODIndex) == 0x000000, "Member 'FLandscapeComponentMaterialOverride::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeComponentMaterialOverride, Material) == 0x000008, "Member 'FLandscapeComponentMaterialOverride::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapePerLODMaterialOverride \ +static_assert(alignof(FLandscapePerLODMaterialOverride) == 0x000008, "Wrong alignment on FLandscapePerLODMaterialOverride"); \ +static_assert(sizeof(FLandscapePerLODMaterialOverride) == 0x000010, "Wrong size on FLandscapePerLODMaterialOverride"); \ +static_assert(offsetof(FLandscapePerLODMaterialOverride, LODIndex) == 0x000000, "Member 'FLandscapePerLODMaterialOverride::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FLandscapePerLODMaterialOverride, Material) == 0x000008, "Member 'FLandscapePerLODMaterialOverride::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWeightmapData \ +static_assert(alignof(FWeightmapData) == 0x000008, "Wrong alignment on FWeightmapData"); \ +static_assert(sizeof(FWeightmapData) == 0x000030, "Wrong size on FWeightmapData"); \ +static_assert(offsetof(FWeightmapData, Textures) == 0x000000, "Member 'FWeightmapData::Textures' has a wrong offset!"); \ +static_assert(offsetof(FWeightmapData, LayerAllocations) == 0x000010, "Member 'FWeightmapData::LayerAllocations' has a wrong offset!"); \ +static_assert(offsetof(FWeightmapData, TextureUsages) == 0x000020, "Member 'FWeightmapData::TextureUsages' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeLayerComponentData \ +static_assert(alignof(FLandscapeLayerComponentData) == 0x000008, "Wrong alignment on FLandscapeLayerComponentData"); \ +static_assert(sizeof(FLandscapeLayerComponentData) == 0x000038, "Wrong size on FLandscapeLayerComponentData"); \ +static_assert(offsetof(FLandscapeLayerComponentData, HeightmapData) == 0x000000, "Member 'FLandscapeLayerComponentData::HeightmapData' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeLayerComponentData, WeightmapData) == 0x000008, "Member 'FLandscapeLayerComponentData::WeightmapData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoSelectData \ +static_assert(alignof(FGizmoSelectData) == 0x000008, "Wrong alignment on FGizmoSelectData"); \ +static_assert(sizeof(FGizmoSelectData) == 0x000050, "Wrong size on FGizmoSelectData"); \ + +#define DUMPER7_ASSERTS_FGrassVariety \ +static_assert(alignof(FGrassVariety) == 0x000008, "Wrong alignment on FGrassVariety"); \ +static_assert(sizeof(FGrassVariety) == 0x0001A8, "Wrong size on FGrassVariety"); \ +static_assert(offsetof(FGrassVariety, GrassMesh) == 0x000000, "Member 'FGrassVariety::GrassMesh' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, OverrideMaterials) == 0x000008, "Member 'FGrassVariety::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, GrassDensity) == 0x000018, "Member 'FGrassVariety::GrassDensity' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, GrassDensityQuality) == 0x000020, "Member 'FGrassVariety::GrassDensityQuality' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bUseGrid) == 0x000088, "Member 'FGrassVariety::bUseGrid' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, PlacementJitter) == 0x00008C, "Member 'FGrassVariety::PlacementJitter' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, StartCullDistance) == 0x000090, "Member 'FGrassVariety::StartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, StartCullDistanceQuality) == 0x000098, "Member 'FGrassVariety::StartCullDistanceQuality' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, EndCullDistance) == 0x000100, "Member 'FGrassVariety::EndCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, EndCullDistanceQuality) == 0x000108, "Member 'FGrassVariety::EndCullDistanceQuality' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, MinLOD) == 0x000170, "Member 'FGrassVariety::MinLOD' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, Scaling) == 0x000174, "Member 'FGrassVariety::Scaling' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, ScaleX) == 0x000178, "Member 'FGrassVariety::ScaleX' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, ScaleY) == 0x000180, "Member 'FGrassVariety::ScaleY' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, ScaleZ) == 0x000188, "Member 'FGrassVariety::ScaleZ' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, RandomRotation) == 0x000190, "Member 'FGrassVariety::RandomRotation' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, AlignToSurface) == 0x000191, "Member 'FGrassVariety::AlignToSurface' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bUseLandscapeLightmap) == 0x000192, "Member 'FGrassVariety::bUseLandscapeLightmap' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, LightingChannels) == 0x000193, "Member 'FGrassVariety::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bReceivesDecals) == 0x000194, "Member 'FGrassVariety::bReceivesDecals' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bAffectDistanceFieldLighting) == 0x000195, "Member 'FGrassVariety::bAffectDistanceFieldLighting' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bCastDynamicShadow) == 0x000196, "Member 'FGrassVariety::bCastDynamicShadow' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bCastContactShadow) == 0x000197, "Member 'FGrassVariety::bCastContactShadow' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, bKeepInstanceBufferCPUCopy) == 0x000198, "Member 'FGrassVariety::bKeepInstanceBufferCPUCopy' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, InstanceWorldPositionOffsetDisableDistance) == 0x00019C, "Member 'FGrassVariety::InstanceWorldPositionOffsetDisableDistance' has a wrong offset!"); \ +static_assert(offsetof(FGrassVariety, ShadowCacheInvalidationBehavior) == 0x0001A0, "Member 'FGrassVariety::ShadowCacheInvalidationBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeMaterialTextureStreamingInfo \ +static_assert(alignof(FLandscapeMaterialTextureStreamingInfo) == 0x000004, "Wrong alignment on FLandscapeMaterialTextureStreamingInfo"); \ +static_assert(sizeof(FLandscapeMaterialTextureStreamingInfo) == 0x00000C, "Wrong size on FLandscapeMaterialTextureStreamingInfo"); \ +static_assert(offsetof(FLandscapeMaterialTextureStreamingInfo, TextureName) == 0x000000, "Member 'FLandscapeMaterialTextureStreamingInfo::TextureName' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeMaterialTextureStreamingInfo, TexelFactor) == 0x000008, "Member 'FLandscapeMaterialTextureStreamingInfo::TexelFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeSplineConnection \ +static_assert(alignof(FLandscapeSplineConnection) == 0x000008, "Wrong alignment on FLandscapeSplineConnection"); \ +static_assert(sizeof(FLandscapeSplineConnection) == 0x000010, "Wrong size on FLandscapeSplineConnection"); \ +static_assert(offsetof(FLandscapeSplineConnection, Segment) == 0x000000, "Member 'FLandscapeSplineConnection::Segment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FForeignControlPointData \ +static_assert(alignof(FForeignControlPointData) == 0x000001, "Wrong alignment on FForeignControlPointData"); \ +static_assert(sizeof(FForeignControlPointData) == 0x000001, "Wrong size on FForeignControlPointData"); \ + +#define DUMPER7_ASSERTS_FForeignSplineSegmentData \ +static_assert(alignof(FForeignSplineSegmentData) == 0x000001, "Wrong alignment on FForeignSplineSegmentData"); \ +static_assert(sizeof(FForeignSplineSegmentData) == 0x000001, "Wrong size on FForeignSplineSegmentData"); \ + +#define DUMPER7_ASSERTS_FForeignWorldSplineData \ +static_assert(alignof(FForeignWorldSplineData) == 0x000001, "Wrong alignment on FForeignWorldSplineData"); \ +static_assert(sizeof(FForeignWorldSplineData) == 0x000001, "Wrong size on FForeignWorldSplineData"); \ + +#define DUMPER7_ASSERTS_FLandscapeSplineInterpPoint \ +static_assert(alignof(FLandscapeSplineInterpPoint) == 0x000008, "Wrong alignment on FLandscapeSplineInterpPoint"); \ +static_assert(sizeof(FLandscapeSplineInterpPoint) == 0x0000E0, "Wrong size on FLandscapeSplineInterpPoint"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, Center) == 0x000000, "Member 'FLandscapeSplineInterpPoint::Center' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, Left) == 0x000018, "Member 'FLandscapeSplineInterpPoint::Left' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, Right) == 0x000030, "Member 'FLandscapeSplineInterpPoint::Right' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, FalloffLeft) == 0x000048, "Member 'FLandscapeSplineInterpPoint::FalloffLeft' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, FalloffRight) == 0x000060, "Member 'FLandscapeSplineInterpPoint::FalloffRight' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, LayerLeft) == 0x000078, "Member 'FLandscapeSplineInterpPoint::LayerLeft' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, LayerRight) == 0x000090, "Member 'FLandscapeSplineInterpPoint::LayerRight' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, LayerFalloffLeft) == 0x0000A8, "Member 'FLandscapeSplineInterpPoint::LayerFalloffLeft' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, LayerFalloffRight) == 0x0000C0, "Member 'FLandscapeSplineInterpPoint::LayerFalloffRight' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineInterpPoint, StartEndFalloff) == 0x0000D8, "Member 'FLandscapeSplineInterpPoint::StartEndFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeSplineSegmentConnection \ +static_assert(alignof(FLandscapeSplineSegmentConnection) == 0x000008, "Wrong alignment on FLandscapeSplineSegmentConnection"); \ +static_assert(sizeof(FLandscapeSplineSegmentConnection) == 0x000018, "Wrong size on FLandscapeSplineSegmentConnection"); \ +static_assert(offsetof(FLandscapeSplineSegmentConnection, ControlPoint) == 0x000000, "Member 'FLandscapeSplineSegmentConnection::ControlPoint' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineSegmentConnection, TangentLen) == 0x000008, "Member 'FLandscapeSplineSegmentConnection::TangentLen' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineSegmentConnection, SocketName) == 0x00000C, "Member 'FLandscapeSplineSegmentConnection::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeSplineMeshEntry \ +static_assert(alignof(FLandscapeSplineMeshEntry) == 0x000008, "Wrong alignment on FLandscapeSplineMeshEntry"); \ +static_assert(sizeof(FLandscapeSplineMeshEntry) == 0x000058, "Wrong size on FLandscapeSplineMeshEntry"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, Mesh) == 0x000000, "Member 'FLandscapeSplineMeshEntry::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, MaterialOverrides) == 0x000008, "Member 'FLandscapeSplineMeshEntry::MaterialOverrides' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, CenterAdjust) == 0x000020, "Member 'FLandscapeSplineMeshEntry::CenterAdjust' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, Scale) == 0x000038, "Member 'FLandscapeSplineMeshEntry::Scale' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, Orientation) == 0x000050, "Member 'FLandscapeSplineMeshEntry::Orientation' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, ForwardAxis) == 0x000051, "Member 'FLandscapeSplineMeshEntry::ForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeSplineMeshEntry, UpAxis) == 0x000052, "Member 'FLandscapeSplineMeshEntry::UpAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGrassInput \ +static_assert(alignof(FGrassInput) == 0x000008, "Wrong alignment on FGrassInput"); \ +static_assert(sizeof(FGrassInput) == 0x000038, "Wrong size on FGrassInput"); \ +static_assert(offsetof(FGrassInput, Name) == 0x000000, "Member 'FGrassInput::Name' has a wrong offset!"); \ +static_assert(offsetof(FGrassInput, GrassType) == 0x000008, "Member 'FGrassInput::GrassType' has a wrong offset!"); \ +static_assert(offsetof(FGrassInput, Input) == 0x000010, "Member 'FGrassInput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLayerBlendInput \ +static_assert(alignof(FLayerBlendInput) == 0x000008, "Wrong alignment on FLayerBlendInput"); \ +static_assert(sizeof(FLayerBlendInput) == 0x000088, "Wrong size on FLayerBlendInput"); \ +static_assert(offsetof(FLayerBlendInput, LayerName) == 0x000000, "Member 'FLayerBlendInput::LayerName' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, BlendType) == 0x000008, "Member 'FLayerBlendInput::BlendType' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, LayerInput) == 0x000010, "Member 'FLayerBlendInput::LayerInput' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, HeightInput) == 0x000038, "Member 'FLayerBlendInput::HeightInput' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, PreviewWeight) == 0x000060, "Member 'FLayerBlendInput::PreviewWeight' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, ConstLayerInput) == 0x000068, "Member 'FLayerBlendInput::ConstLayerInput' has a wrong offset!"); \ +static_assert(offsetof(FLayerBlendInput, ConstHeightInput) == 0x000080, "Member 'FLayerBlendInput::ConstHeightInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeBrushParameters \ +static_assert(alignof(FLandscapeBrushParameters) == 0x000008, "Wrong alignment on FLandscapeBrushParameters"); \ +static_assert(sizeof(FLandscapeBrushParameters) == 0x000018, "Wrong size on FLandscapeBrushParameters"); \ +static_assert(offsetof(FLandscapeBrushParameters, LayerType) == 0x000000, "Member 'FLandscapeBrushParameters::LayerType' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeBrushParameters, CombinedResult) == 0x000008, "Member 'FLandscapeBrushParameters::CombinedResult' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeBrushParameters, WeightmapLayerName) == 0x000010, "Member 'FLandscapeBrushParameters::WeightmapLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeInfoLayerSettings \ +static_assert(alignof(FLandscapeInfoLayerSettings) == 0x000008, "Wrong alignment on FLandscapeInfoLayerSettings"); \ +static_assert(sizeof(FLandscapeInfoLayerSettings) == 0x000010, "Wrong size on FLandscapeInfoLayerSettings"); \ +static_assert(offsetof(FLandscapeInfoLayerSettings, LayerInfoObj) == 0x000000, "Member 'FLandscapeInfoLayerSettings::LayerInfoObj' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeInfoLayerSettings, LayerName) == 0x000008, "Member 'FLandscapeInfoLayerSettings::LayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeEditorLayerSettings \ +static_assert(alignof(FLandscapeEditorLayerSettings) == 0x000001, "Wrong alignment on FLandscapeEditorLayerSettings"); \ +static_assert(sizeof(FLandscapeEditorLayerSettings) == 0x000001, "Wrong size on FLandscapeEditorLayerSettings"); \ + +#define DUMPER7_ASSERTS_FLandscapeLayerStruct \ +static_assert(alignof(FLandscapeLayerStruct) == 0x000008, "Wrong alignment on FLandscapeLayerStruct"); \ +static_assert(sizeof(FLandscapeLayerStruct) == 0x000008, "Wrong size on FLandscapeLayerStruct"); \ +static_assert(offsetof(FLandscapeLayerStruct, LayerInfoObj) == 0x000000, "Member 'FLandscapeLayerStruct::LayerInfoObj' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeImportLayerInfo \ +static_assert(alignof(FLandscapeImportLayerInfo) == 0x000001, "Wrong alignment on FLandscapeImportLayerInfo"); \ +static_assert(sizeof(FLandscapeImportLayerInfo) == 0x000001, "Wrong size on FLandscapeImportLayerInfo"); \ + +#define DUMPER7_ASSERTS_FLandscapeProxyMaterialOverride \ +static_assert(alignof(FLandscapeProxyMaterialOverride) == 0x000008, "Wrong alignment on FLandscapeProxyMaterialOverride"); \ +static_assert(sizeof(FLandscapeProxyMaterialOverride) == 0x000010, "Wrong size on FLandscapeProxyMaterialOverride"); \ +static_assert(offsetof(FLandscapeProxyMaterialOverride, LODIndex) == 0x000000, "Member 'FLandscapeProxyMaterialOverride::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeProxyMaterialOverride, Material) == 0x000008, "Member 'FLandscapeProxyMaterialOverride::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLandscapeTexture2DMipMap \ +static_assert(alignof(FLandscapeTexture2DMipMap) == 0x000008, "Wrong alignment on FLandscapeTexture2DMipMap"); \ +static_assert(sizeof(FLandscapeTexture2DMipMap) == 0x000038, "Wrong size on FLandscapeTexture2DMipMap"); \ +static_assert(offsetof(FLandscapeTexture2DMipMap, SizeX) == 0x000000, "Member 'FLandscapeTexture2DMipMap::SizeX' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeTexture2DMipMap, SizeY) == 0x000004, "Member 'FLandscapeTexture2DMipMap::SizeY' has a wrong offset!"); \ +static_assert(offsetof(FLandscapeTexture2DMipMap, bCompressed) == 0x000008, "Member 'FLandscapeTexture2DMipMap::bCompressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPhysicalMaterialInput \ +static_assert(alignof(FPhysicalMaterialInput) == 0x000008, "Wrong alignment on FPhysicalMaterialInput"); \ +static_assert(sizeof(FPhysicalMaterialInput) == 0x000030, "Wrong size on FPhysicalMaterialInput"); \ +static_assert(offsetof(FPhysicalMaterialInput, PhysicalMaterial) == 0x000000, "Member 'FPhysicalMaterialInput::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FPhysicalMaterialInput, Input) == 0x000008, "Member 'FPhysicalMaterialInput::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeGizmoActor \ +static_assert(alignof(ALandscapeGizmoActor) == 0x000008, "Wrong alignment on ALandscapeGizmoActor"); \ +static_assert(sizeof(ALandscapeGizmoActor) == 0x000298, "Wrong size on ALandscapeGizmoActor"); \ + +#define DUMPER7_ASSERTS_ALandscapeGizmoActiveActor \ +static_assert(alignof(ALandscapeGizmoActiveActor) == 0x000008, "Wrong alignment on ALandscapeGizmoActiveActor"); \ +static_assert(sizeof(ALandscapeGizmoActiveActor) == 0x0002E8, "Wrong size on ALandscapeGizmoActiveActor"); \ + +#define DUMPER7_ASSERTS_UControlPointMeshComponent \ +static_assert(alignof(UControlPointMeshComponent) == 0x000010, "Wrong alignment on UControlPointMeshComponent"); \ +static_assert(sizeof(UControlPointMeshComponent) == 0x000630, "Wrong size on UControlPointMeshComponent"); \ +static_assert(offsetof(UControlPointMeshComponent, VirtualTextureMainPassMaxDrawDistance) == 0x000628, "Member 'UControlPointMeshComponent::VirtualTextureMainPassMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ILandscapeSplineInterface \ +static_assert(alignof(ILandscapeSplineInterface) == 0x000001, "Wrong alignment on ILandscapeSplineInterface"); \ +static_assert(sizeof(ILandscapeSplineInterface) == 0x000001, "Wrong size on ILandscapeSplineInterface"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_ChangeComponentScreenSizeToUseSubSections \ +static_assert(alignof(LandscapeProxy_ChangeComponentScreenSizeToUseSubSections) == 0x000004, "Wrong alignment on LandscapeProxy_ChangeComponentScreenSizeToUseSubSections"); \ +static_assert(sizeof(LandscapeProxy_ChangeComponentScreenSizeToUseSubSections) == 0x000004, "Wrong size on LandscapeProxy_ChangeComponentScreenSizeToUseSubSections"); \ +static_assert(offsetof(LandscapeProxy_ChangeComponentScreenSizeToUseSubSections, InComponentScreenSizeToUseSubSections) == 0x000000, "Member 'LandscapeProxy_ChangeComponentScreenSizeToUseSubSections::InComponentScreenSizeToUseSubSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_ChangeLODDistanceFactor \ +static_assert(alignof(LandscapeProxy_ChangeLODDistanceFactor) == 0x000004, "Wrong alignment on LandscapeProxy_ChangeLODDistanceFactor"); \ +static_assert(sizeof(LandscapeProxy_ChangeLODDistanceFactor) == 0x000004, "Wrong size on LandscapeProxy_ChangeLODDistanceFactor"); \ +static_assert(offsetof(LandscapeProxy_ChangeLODDistanceFactor, InLODDistanceFactor) == 0x000000, "Member 'LandscapeProxy_ChangeLODDistanceFactor::InLODDistanceFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_EditorApplySpline \ +static_assert(alignof(LandscapeProxy_EditorApplySpline) == 0x000008, "Wrong alignment on LandscapeProxy_EditorApplySpline"); \ +static_assert(sizeof(LandscapeProxy_EditorApplySpline) == 0x000038, "Wrong size on LandscapeProxy_EditorApplySpline"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, InSplineComponent) == 0x000000, "Member 'LandscapeProxy_EditorApplySpline::InSplineComponent' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, StartWidth) == 0x000008, "Member 'LandscapeProxy_EditorApplySpline::StartWidth' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, EndWidth) == 0x00000C, "Member 'LandscapeProxy_EditorApplySpline::EndWidth' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, StartSideFalloff) == 0x000010, "Member 'LandscapeProxy_EditorApplySpline::StartSideFalloff' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, EndSideFalloff) == 0x000014, "Member 'LandscapeProxy_EditorApplySpline::EndSideFalloff' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, StartRoll) == 0x000018, "Member 'LandscapeProxy_EditorApplySpline::StartRoll' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, EndRoll) == 0x00001C, "Member 'LandscapeProxy_EditorApplySpline::EndRoll' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, NumSubdivisions) == 0x000020, "Member 'LandscapeProxy_EditorApplySpline::NumSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, bRaiseHeights) == 0x000024, "Member 'LandscapeProxy_EditorApplySpline::bRaiseHeights' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, bLowerHeights) == 0x000025, "Member 'LandscapeProxy_EditorApplySpline::bLowerHeights' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, PaintLayer) == 0x000028, "Member 'LandscapeProxy_EditorApplySpline::PaintLayer' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_EditorApplySpline, EditLayerName) == 0x000030, "Member 'LandscapeProxy_EditorApplySpline::EditLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_EditorSetLandscapeMaterial \ +static_assert(alignof(LandscapeProxy_EditorSetLandscapeMaterial) == 0x000008, "Wrong alignment on LandscapeProxy_EditorSetLandscapeMaterial"); \ +static_assert(sizeof(LandscapeProxy_EditorSetLandscapeMaterial) == 0x000008, "Wrong size on LandscapeProxy_EditorSetLandscapeMaterial"); \ +static_assert(offsetof(LandscapeProxy_EditorSetLandscapeMaterial, NewLandscapeMaterial) == 0x000000, "Member 'LandscapeProxy_EditorSetLandscapeMaterial::NewLandscapeMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_GetLandscapeActor \ +static_assert(alignof(LandscapeProxy_GetLandscapeActor) == 0x000008, "Wrong alignment on LandscapeProxy_GetLandscapeActor"); \ +static_assert(sizeof(LandscapeProxy_GetLandscapeActor) == 0x000008, "Wrong size on LandscapeProxy_GetLandscapeActor"); \ +static_assert(offsetof(LandscapeProxy_GetLandscapeActor, ReturnValue) == 0x000000, "Member 'LandscapeProxy_GetLandscapeActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_LandscapeExportHeightmapToRenderTarget \ +static_assert(alignof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget) == 0x000008, "Wrong alignment on LandscapeProxy_LandscapeExportHeightmapToRenderTarget"); \ +static_assert(sizeof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget) == 0x000010, "Wrong size on LandscapeProxy_LandscapeExportHeightmapToRenderTarget"); \ +static_assert(offsetof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget, InRenderTarget) == 0x000000, "Member 'LandscapeProxy_LandscapeExportHeightmapToRenderTarget::InRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget, InExportHeightIntoRGChannel) == 0x000008, "Member 'LandscapeProxy_LandscapeExportHeightmapToRenderTarget::InExportHeightIntoRGChannel' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget, InExportLandscapeProxies) == 0x000009, "Member 'LandscapeProxy_LandscapeExportHeightmapToRenderTarget::InExportLandscapeProxies' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_LandscapeExportHeightmapToRenderTarget, ReturnValue) == 0x00000A, "Member 'LandscapeProxy_LandscapeExportHeightmapToRenderTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_SetLandscapeMaterialScalarParameterValue \ +static_assert(alignof(LandscapeProxy_SetLandscapeMaterialScalarParameterValue) == 0x000004, "Wrong alignment on LandscapeProxy_SetLandscapeMaterialScalarParameterValue"); \ +static_assert(sizeof(LandscapeProxy_SetLandscapeMaterialScalarParameterValue) == 0x00000C, "Wrong size on LandscapeProxy_SetLandscapeMaterialScalarParameterValue"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialScalarParameterValue, ParameterName) == 0x000000, "Member 'LandscapeProxy_SetLandscapeMaterialScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialScalarParameterValue, Value) == 0x000008, "Member 'LandscapeProxy_SetLandscapeMaterialScalarParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_SetLandscapeMaterialTextureParameterValue \ +static_assert(alignof(LandscapeProxy_SetLandscapeMaterialTextureParameterValue) == 0x000008, "Wrong alignment on LandscapeProxy_SetLandscapeMaterialTextureParameterValue"); \ +static_assert(sizeof(LandscapeProxy_SetLandscapeMaterialTextureParameterValue) == 0x000010, "Wrong size on LandscapeProxy_SetLandscapeMaterialTextureParameterValue"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialTextureParameterValue, ParameterName) == 0x000000, "Member 'LandscapeProxy_SetLandscapeMaterialTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialTextureParameterValue, Value) == 0x000008, "Member 'LandscapeProxy_SetLandscapeMaterialTextureParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_SetLandscapeMaterialVectorParameterValue \ +static_assert(alignof(LandscapeProxy_SetLandscapeMaterialVectorParameterValue) == 0x000004, "Wrong alignment on LandscapeProxy_SetLandscapeMaterialVectorParameterValue"); \ +static_assert(sizeof(LandscapeProxy_SetLandscapeMaterialVectorParameterValue) == 0x000018, "Wrong size on LandscapeProxy_SetLandscapeMaterialVectorParameterValue"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialVectorParameterValue, ParameterName) == 0x000000, "Member 'LandscapeProxy_SetLandscapeMaterialVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(LandscapeProxy_SetLandscapeMaterialVectorParameterValue, Value) == 0x000008, "Member 'LandscapeProxy_SetLandscapeMaterialVectorParameterValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeProxy_SetVirtualTextureRenderPassType \ +static_assert(alignof(LandscapeProxy_SetVirtualTextureRenderPassType) == 0x000001, "Wrong alignment on LandscapeProxy_SetVirtualTextureRenderPassType"); \ +static_assert(sizeof(LandscapeProxy_SetVirtualTextureRenderPassType) == 0x000001, "Wrong size on LandscapeProxy_SetVirtualTextureRenderPassType"); \ +static_assert(offsetof(LandscapeProxy_SetVirtualTextureRenderPassType, InType) == 0x000000, "Member 'LandscapeProxy_SetVirtualTextureRenderPassType::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeProxy \ +static_assert(alignof(ALandscapeProxy) == 0x000008, "Wrong alignment on ALandscapeProxy"); \ +static_assert(sizeof(ALandscapeProxy) == 0x000620, "Wrong size on ALandscapeProxy"); \ +static_assert(offsetof(ALandscapeProxy, SplineComponent) == 0x0002A0, "Member 'ALandscapeProxy::SplineComponent' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LandscapeGuid) == 0x0002A8, "Member 'ALandscapeProxy::LandscapeGuid' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bEnableNanite) == 0x0002C8, "Member 'ALandscapeProxy::bEnableNanite' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, PerLODOverrideMaterials) == 0x0002D0, "Member 'ALandscapeProxy::PerLODOverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LandscapeSectionOffset) == 0x0002E0, "Member 'ALandscapeProxy::LandscapeSectionOffset' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, MaxLODLevel) == 0x0002E8, "Member 'ALandscapeProxy::MaxLODLevel' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, ComponentScreenSizeToUseSubSections) == 0x0002EC, "Member 'ALandscapeProxy::ComponentScreenSizeToUseSubSections' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LOD0ScreenSize) == 0x0002F0, "Member 'ALandscapeProxy::LOD0ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LODGroupKey) == 0x0002F4, "Member 'ALandscapeProxy::LODGroupKey' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LOD0DistributionSetting) == 0x0002F8, "Member 'ALandscapeProxy::LOD0DistributionSetting' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LODDistributionSetting) == 0x0002FC, "Member 'ALandscapeProxy::LODDistributionSetting' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, StaticLightingLOD) == 0x000300, "Member 'ALandscapeProxy::StaticLightingLOD' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, DefaultPhysMaterial) == 0x000308, "Member 'ALandscapeProxy::DefaultPhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, StreamingDistanceMultiplier) == 0x000310, "Member 'ALandscapeProxy::StreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LandscapeMaterial) == 0x000318, "Member 'ALandscapeProxy::LandscapeMaterial' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LandscapeHoleMaterial) == 0x000340, "Member 'ALandscapeProxy::LandscapeHoleMaterial' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, RuntimeVirtualTextures) == 0x000348, "Member 'ALandscapeProxy::RuntimeVirtualTextures' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bSetCreateRuntimeVirtualTextureVolumes) == 0x000358, "Member 'ALandscapeProxy::bSetCreateRuntimeVirtualTextureVolumes' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bVirtualTextureRenderWithQuad) == 0x000359, "Member 'ALandscapeProxy::bVirtualTextureRenderWithQuad' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bVirtualTextureRenderWithQuadHQ) == 0x00035A, "Member 'ALandscapeProxy::bVirtualTextureRenderWithQuadHQ' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, VirtualTextureNumLods) == 0x00035C, "Member 'ALandscapeProxy::VirtualTextureNumLods' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, VirtualTextureLodBias) == 0x000360, "Member 'ALandscapeProxy::VirtualTextureLodBias' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, VirtualTextureRenderPassType) == 0x000364, "Member 'ALandscapeProxy::VirtualTextureRenderPassType' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, NegativeZBoundsExtension) == 0x000368, "Member 'ALandscapeProxy::NegativeZBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, PositiveZBoundsExtension) == 0x00036C, "Member 'ALandscapeProxy::PositiveZBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LandscapeComponents) == 0x000370, "Member 'ALandscapeProxy::LandscapeComponents' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, CollisionComponents) == 0x000380, "Member 'ALandscapeProxy::CollisionComponents' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, FoliageComponents) == 0x000390, "Member 'ALandscapeProxy::FoliageComponents' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, NaniteComponent) == 0x0003A0, "Member 'ALandscapeProxy::NaniteComponent' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, NaniteComponents) == 0x0003A8, "Member 'ALandscapeProxy::NaniteComponents' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bHasLandscapeGrass) == 0x00041C, "Member 'ALandscapeProxy::bHasLandscapeGrass' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, StaticLightingResolution) == 0x000420, "Member 'ALandscapeProxy::StaticLightingResolution' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, ShadowCacheInvalidationBehavior) == 0x000425, "Member 'ALandscapeProxy::ShadowCacheInvalidationBehavior' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LightingChannels) == 0x000435, "Member 'ALandscapeProxy::LightingChannels' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, CustomDepthStencilWriteMask) == 0x00043C, "Member 'ALandscapeProxy::CustomDepthStencilWriteMask' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, CustomDepthStencilValue) == 0x000440, "Member 'ALandscapeProxy::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LDMaxDrawDistance) == 0x000444, "Member 'ALandscapeProxy::LDMaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, LightmassSettings) == 0x000448, "Member 'ALandscapeProxy::LightmassSettings' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, CollisionMipLevel) == 0x000460, "Member 'ALandscapeProxy::CollisionMipLevel' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, SimpleCollisionMipLevel) == 0x000464, "Member 'ALandscapeProxy::SimpleCollisionMipLevel' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, BodyInstance) == 0x000470, "Member 'ALandscapeProxy::BodyInstance' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, ComponentSizeQuads) == 0x000604, "Member 'ALandscapeProxy::ComponentSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, SubsectionSizeQuads) == 0x000608, "Member 'ALandscapeProxy::SubsectionSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, NumSubsections) == 0x00060C, "Member 'ALandscapeProxy::NumSubsections' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, NavigationGeometryGatheringMode) == 0x000614, "Member 'ALandscapeProxy::NavigationGeometryGatheringMode' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bUseDynamicMaterialInstance) == 0x000615, "Member 'ALandscapeProxy::bUseDynamicMaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bUseLandscapeForCullingInvisibleHLODVertices) == 0x000616, "Member 'ALandscapeProxy::bUseLandscapeForCullingInvisibleHLODVertices' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bHasLayersContent) == 0x000617, "Member 'ALandscapeProxy::bHasLayersContent' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeProxy, bUseCompressedHeightmapStorage) == 0x000618, "Member 'ALandscapeProxy::bUseCompressedHeightmapStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Landscape_RenderHeightmap \ +static_assert(alignof(Landscape_RenderHeightmap) == 0x000010, "Wrong alignment on Landscape_RenderHeightmap"); \ +static_assert(sizeof(Landscape_RenderHeightmap) == 0x000090, "Wrong size on Landscape_RenderHeightmap"); \ +static_assert(offsetof(Landscape_RenderHeightmap, InWorldTransform) == 0x000000, "Member 'Landscape_RenderHeightmap::InWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(Landscape_RenderHeightmap, InExtents) == 0x000060, "Member 'Landscape_RenderHeightmap::InExtents' has a wrong offset!"); \ +static_assert(offsetof(Landscape_RenderHeightmap, OutRenderTarget) == 0x000088, "Member 'Landscape_RenderHeightmap::OutRenderTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscape \ +static_assert(alignof(ALandscape) == 0x000008, "Wrong alignment on ALandscape"); \ +static_assert(sizeof(ALandscape) == 0x000620, "Wrong size on ALandscape"); \ + +#define DUMPER7_ASSERTS_ULandscapeLODStreamingProxy_DEPRECATED \ +static_assert(alignof(ULandscapeLODStreamingProxy_DEPRECATED) == 0x000008, "Wrong alignment on ULandscapeLODStreamingProxy_DEPRECATED"); \ +static_assert(sizeof(ULandscapeLODStreamingProxy_DEPRECATED) == 0x0000C8, "Wrong size on ULandscapeLODStreamingProxy_DEPRECATED"); \ + +#define DUMPER7_ASSERTS_LandscapeComponent_EditorGetPaintLayerWeightAtLocation \ +static_assert(alignof(LandscapeComponent_EditorGetPaintLayerWeightAtLocation) == 0x000008, "Wrong alignment on LandscapeComponent_EditorGetPaintLayerWeightAtLocation"); \ +static_assert(sizeof(LandscapeComponent_EditorGetPaintLayerWeightAtLocation) == 0x000028, "Wrong size on LandscapeComponent_EditorGetPaintLayerWeightAtLocation"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightAtLocation, InLocation) == 0x000000, "Member 'LandscapeComponent_EditorGetPaintLayerWeightAtLocation::InLocation' has a wrong offset!"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightAtLocation, PaintLayer) == 0x000018, "Member 'LandscapeComponent_EditorGetPaintLayerWeightAtLocation::PaintLayer' has a wrong offset!"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightAtLocation, ReturnValue) == 0x000020, "Member 'LandscapeComponent_EditorGetPaintLayerWeightAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation \ +static_assert(alignof(LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation) == 0x000008, "Wrong alignment on LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation"); \ +static_assert(sizeof(LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation) == 0x000028, "Wrong size on LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation, InLocation) == 0x000000, "Member 'LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation::InLocation' has a wrong offset!"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation, InPaintLayerName) == 0x000018, "Member 'LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation::InPaintLayerName' has a wrong offset!"); \ +static_assert(offsetof(LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation, ReturnValue) == 0x000020, "Member 'LandscapeComponent_EditorGetPaintLayerWeightByNameAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeComponent_SetForcedLOD \ +static_assert(alignof(LandscapeComponent_SetForcedLOD) == 0x000004, "Wrong alignment on LandscapeComponent_SetForcedLOD"); \ +static_assert(sizeof(LandscapeComponent_SetForcedLOD) == 0x000004, "Wrong size on LandscapeComponent_SetForcedLOD"); \ +static_assert(offsetof(LandscapeComponent_SetForcedLOD, InForcedLOD) == 0x000000, "Member 'LandscapeComponent_SetForcedLOD::InForcedLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeComponent_SetLODBias \ +static_assert(alignof(LandscapeComponent_SetLODBias) == 0x000004, "Wrong alignment on LandscapeComponent_SetLODBias"); \ +static_assert(sizeof(LandscapeComponent_SetLODBias) == 0x000004, "Wrong size on LandscapeComponent_SetLODBias"); \ +static_assert(offsetof(LandscapeComponent_SetLODBias, InLODBias) == 0x000000, "Member 'LandscapeComponent_SetLODBias::InLODBias' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeComponent_GetMaterialInstanceDynamic \ +static_assert(alignof(LandscapeComponent_GetMaterialInstanceDynamic) == 0x000008, "Wrong alignment on LandscapeComponent_GetMaterialInstanceDynamic"); \ +static_assert(sizeof(LandscapeComponent_GetMaterialInstanceDynamic) == 0x000010, "Wrong size on LandscapeComponent_GetMaterialInstanceDynamic"); \ +static_assert(offsetof(LandscapeComponent_GetMaterialInstanceDynamic, InIndex) == 0x000000, "Member 'LandscapeComponent_GetMaterialInstanceDynamic::InIndex' has a wrong offset!"); \ +static_assert(offsetof(LandscapeComponent_GetMaterialInstanceDynamic, ReturnValue) == 0x000008, "Member 'LandscapeComponent_GetMaterialInstanceDynamic::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeComponent \ +static_assert(alignof(ULandscapeComponent) == 0x000010, "Wrong alignment on ULandscapeComponent"); \ +static_assert(sizeof(ULandscapeComponent) == 0x000760, "Wrong size on ULandscapeComponent"); \ +static_assert(offsetof(ULandscapeComponent, SectionBaseX) == 0x000570, "Member 'ULandscapeComponent::SectionBaseX' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, SectionBaseY) == 0x000574, "Member 'ULandscapeComponent::SectionBaseY' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, ComponentSizeQuads) == 0x000578, "Member 'ULandscapeComponent::ComponentSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, SubsectionSizeQuads) == 0x00057C, "Member 'ULandscapeComponent::SubsectionSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, NumSubsections) == 0x000580, "Member 'ULandscapeComponent::NumSubsections' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, OverrideMaterial) == 0x000588, "Member 'ULandscapeComponent::OverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, OverrideHoleMaterial) == 0x000590, "Member 'ULandscapeComponent::OverrideHoleMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MaterialInstances) == 0x000598, "Member 'ULandscapeComponent::MaterialInstances' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MaterialInstancesDynamic) == 0x0005A8, "Member 'ULandscapeComponent::MaterialInstancesDynamic' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, LODIndexToMaterialIndex) == 0x0005B8, "Member 'ULandscapeComponent::LODIndexToMaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, XYOffsetmapTexture) == 0x0005C8, "Member 'ULandscapeComponent::XYOffsetmapTexture' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, WeightmapScaleBias) == 0x0005D0, "Member 'ULandscapeComponent::WeightmapScaleBias' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, WeightmapSubsectionOffset) == 0x0005F0, "Member 'ULandscapeComponent::WeightmapSubsectionOffset' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, HeightmapScaleBias) == 0x000600, "Member 'ULandscapeComponent::HeightmapScaleBias' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, CachedLocalBox) == 0x000620, "Member 'ULandscapeComponent::CachedLocalBox' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, CollisionComponentRef) == 0x000658, "Member 'ULandscapeComponent::CollisionComponentRef' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, bUserTriggeredChangeRequested) == 0x000660, "Member 'ULandscapeComponent::bUserTriggeredChangeRequested' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, bNaniteActive) == 0x000661, "Member 'ULandscapeComponent::bNaniteActive' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, HeightmapTexture) == 0x000668, "Member 'ULandscapeComponent::HeightmapTexture' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, WeightmapLayerAllocations) == 0x000670, "Member 'ULandscapeComponent::WeightmapLayerAllocations' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, WeightmapTextures) == 0x000680, "Member 'ULandscapeComponent::WeightmapTextures' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, PerLODOverrideMaterials) == 0x000690, "Member 'ULandscapeComponent::PerLODOverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MapBuildDataId) == 0x0006A0, "Member 'ULandscapeComponent::MapBuildDataId' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, CollisionMipLevel) == 0x0006B0, "Member 'ULandscapeComponent::CollisionMipLevel' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, SimpleCollisionMipLevel) == 0x0006B4, "Member 'ULandscapeComponent::SimpleCollisionMipLevel' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, NegativeZBoundsExtension) == 0x0006B8, "Member 'ULandscapeComponent::NegativeZBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, PositiveZBoundsExtension) == 0x0006BC, "Member 'ULandscapeComponent::PositiveZBoundsExtension' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, StaticLightingResolution) == 0x0006C0, "Member 'ULandscapeComponent::StaticLightingResolution' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, ForcedLOD) == 0x0006C4, "Member 'ULandscapeComponent::ForcedLOD' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, LODBias) == 0x0006C8, "Member 'ULandscapeComponent::LODBias' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, StateId) == 0x0006CC, "Member 'ULandscapeComponent::StateId' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MobileMaterialInterface) == 0x000700, "Member 'ULandscapeComponent::MobileMaterialInterface' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MobileMaterialInterfaces) == 0x000708, "Member 'ULandscapeComponent::MobileMaterialInterfaces' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MobileWeightmapTextures) == 0x000718, "Member 'ULandscapeComponent::MobileWeightmapTextures' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeComponent, MobileWeightmapLayerAllocations) == 0x000728, "Member 'ULandscapeComponent::MobileWeightmapLayerAllocations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeGizmoRenderComponent \ +static_assert(alignof(ULandscapeGizmoRenderComponent) == 0x000010, "Wrong alignment on ULandscapeGizmoRenderComponent"); \ +static_assert(sizeof(ULandscapeGizmoRenderComponent) == 0x000570, "Wrong size on ULandscapeGizmoRenderComponent"); \ + +#define DUMPER7_ASSERTS_ULandscapeGrassType \ +static_assert(alignof(ULandscapeGrassType) == 0x000008, "Wrong alignment on ULandscapeGrassType"); \ +static_assert(sizeof(ULandscapeGrassType) == 0x000060, "Wrong size on ULandscapeGrassType"); \ +static_assert(offsetof(ULandscapeGrassType, GrassVarieties) == 0x000028, "Member 'ULandscapeGrassType::GrassVarieties' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, GrassMesh) == 0x000040, "Member 'ULandscapeGrassType::GrassMesh' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, GrassDensity) == 0x000048, "Member 'ULandscapeGrassType::GrassDensity' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, PlacementJitter) == 0x00004C, "Member 'ULandscapeGrassType::PlacementJitter' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, StartCullDistance) == 0x000050, "Member 'ULandscapeGrassType::StartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, EndCullDistance) == 0x000054, "Member 'ULandscapeGrassType::EndCullDistance' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, RandomRotation) == 0x000058, "Member 'ULandscapeGrassType::RandomRotation' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeGrassType, AlignToSurface) == 0x000059, "Member 'ULandscapeGrassType::AlignToSurface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeHeightfieldCollisionComponent_GetRenderComponent \ +static_assert(alignof(LandscapeHeightfieldCollisionComponent_GetRenderComponent) == 0x000008, "Wrong alignment on LandscapeHeightfieldCollisionComponent_GetRenderComponent"); \ +static_assert(sizeof(LandscapeHeightfieldCollisionComponent_GetRenderComponent) == 0x000008, "Wrong size on LandscapeHeightfieldCollisionComponent_GetRenderComponent"); \ +static_assert(offsetof(LandscapeHeightfieldCollisionComponent_GetRenderComponent, ReturnValue) == 0x000000, "Member 'LandscapeHeightfieldCollisionComponent_GetRenderComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeHeightfieldCollisionComponent \ +static_assert(alignof(ULandscapeHeightfieldCollisionComponent) == 0x000010, "Wrong alignment on ULandscapeHeightfieldCollisionComponent"); \ +static_assert(sizeof(ULandscapeHeightfieldCollisionComponent) == 0x000660, "Wrong size on ULandscapeHeightfieldCollisionComponent"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, ComponentLayerInfos) == 0x000570, "Member 'ULandscapeHeightfieldCollisionComponent::ComponentLayerInfos' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, SectionBaseX) == 0x000580, "Member 'ULandscapeHeightfieldCollisionComponent::SectionBaseX' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, SectionBaseY) == 0x000584, "Member 'ULandscapeHeightfieldCollisionComponent::SectionBaseY' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, CollisionSizeQuads) == 0x000588, "Member 'ULandscapeHeightfieldCollisionComponent::CollisionSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, CollisionScale) == 0x00058C, "Member 'ULandscapeHeightfieldCollisionComponent::CollisionScale' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, SimpleCollisionSizeQuads) == 0x000590, "Member 'ULandscapeHeightfieldCollisionComponent::SimpleCollisionSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, CollisionQuadFlags) == 0x000598, "Member 'ULandscapeHeightfieldCollisionComponent::CollisionQuadFlags' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, HeightfieldGuid) == 0x0005A8, "Member 'ULandscapeHeightfieldCollisionComponent::HeightfieldGuid' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, CachedLocalBox) == 0x0005B8, "Member 'ULandscapeHeightfieldCollisionComponent::CachedLocalBox' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, RenderComponentRef) == 0x0005F0, "Member 'ULandscapeHeightfieldCollisionComponent::RenderComponentRef' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeHeightfieldCollisionComponent, CookedPhysicalMaterials) == 0x000608, "Member 'ULandscapeHeightfieldCollisionComponent::CookedPhysicalMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeLayerInfoObject \ +static_assert(alignof(ULandscapeLayerInfoObject) == 0x000008, "Wrong alignment on ULandscapeLayerInfoObject"); \ +static_assert(sizeof(ULandscapeLayerInfoObject) == 0x000050, "Wrong size on ULandscapeLayerInfoObject"); \ +static_assert(offsetof(ULandscapeLayerInfoObject, LayerName) == 0x000028, "Member 'ULandscapeLayerInfoObject::LayerName' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeLayerInfoObject, PhysMaterial) == 0x000030, "Member 'ULandscapeLayerInfoObject::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeLayerInfoObject, Hardness) == 0x000038, "Member 'ULandscapeLayerInfoObject::Hardness' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeLayerInfoObject, LayerUsageDebugColor) == 0x00003C, "Member 'ULandscapeLayerInfoObject::LayerUsageDebugColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeMaterialInstanceConstant \ +static_assert(alignof(ULandscapeMaterialInstanceConstant) == 0x000008, "Wrong alignment on ULandscapeMaterialInstanceConstant"); \ +static_assert(sizeof(ULandscapeMaterialInstanceConstant) == 0x000268, "Wrong size on ULandscapeMaterialInstanceConstant"); \ +static_assert(offsetof(ULandscapeMaterialInstanceConstant, TextureStreamingInfo) == 0x000250, "Member 'ULandscapeMaterialInstanceConstant::TextureStreamingInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeMeshCollisionComponent \ +static_assert(alignof(ULandscapeMeshCollisionComponent) == 0x000010, "Wrong alignment on ULandscapeMeshCollisionComponent"); \ +static_assert(sizeof(ULandscapeMeshCollisionComponent) == 0x000670, "Wrong size on ULandscapeMeshCollisionComponent"); \ +static_assert(offsetof(ULandscapeMeshCollisionComponent, MeshGuid) == 0x000658, "Member 'ULandscapeMeshCollisionComponent::MeshGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeMeshProxyActor \ +static_assert(alignof(ALandscapeMeshProxyActor) == 0x000008, "Wrong alignment on ALandscapeMeshProxyActor"); \ +static_assert(sizeof(ALandscapeMeshProxyActor) == 0x0002A0, "Wrong size on ALandscapeMeshProxyActor"); \ +static_assert(offsetof(ALandscapeMeshProxyActor, LandscapeMeshProxyComponent) == 0x000298, "Member 'ALandscapeMeshProxyActor::LandscapeMeshProxyComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeMeshProxyComponent \ +static_assert(alignof(ULandscapeMeshProxyComponent) == 0x000010, "Wrong alignment on ULandscapeMeshProxyComponent"); \ +static_assert(sizeof(ULandscapeMeshProxyComponent) == 0x000650, "Wrong size on ULandscapeMeshProxyComponent"); \ +static_assert(offsetof(ULandscapeMeshProxyComponent, LandscapeGuid) == 0x000628, "Member 'ULandscapeMeshProxyComponent::LandscapeGuid' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeMeshProxyComponent, ProxyComponentBases) == 0x000638, "Member 'ULandscapeMeshProxyComponent::ProxyComponentBases' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeMeshProxyComponent, ProxyLOD) == 0x000648, "Member 'ULandscapeMeshProxyComponent::ProxyLOD' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeMeshProxyComponent, LODGroupKey) == 0x00064C, "Member 'ULandscapeMeshProxyComponent::LODGroupKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeSettings \ +static_assert(alignof(ULandscapeSettings) == 0x000008, "Wrong alignment on ULandscapeSettings"); \ +static_assert(sizeof(ULandscapeSettings) == 0x0000A8, "Wrong size on ULandscapeSettings"); \ +static_assert(offsetof(ULandscapeSettings, MaxNumberOfLayers) == 0x000038, "Member 'ULandscapeSettings::MaxNumberOfLayers' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, MaxComponents) == 0x00003C, "Member 'ULandscapeSettings::MaxComponents' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, MaxImageImportCacheSizeMegaBytes) == 0x000040, "Member 'ULandscapeSettings::MaxImageImportCacheSizeMegaBytes' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, PaintStrengthGamma) == 0x000044, "Member 'ULandscapeSettings::PaintStrengthGamma' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, bDisablePaintingStartupSlowdown) == 0x000048, "Member 'ULandscapeSettings::bDisablePaintingStartupSlowdown' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, LandscapeDirtyingMode) == 0x000049, "Member 'ULandscapeSettings::LandscapeDirtyingMode' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, SideResolutionLimit) == 0x00004C, "Member 'ULandscapeSettings::SideResolutionLimit' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, DefaultLandscapeMaterial) == 0x000050, "Member 'ULandscapeSettings::DefaultLandscapeMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, DefaultLayerInfoObject) == 0x000078, "Member 'ULandscapeSettings::DefaultLayerInfoObject' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSettings, bRestrictiveMode) == 0x0000A0, "Member 'ULandscapeSettings::bRestrictiveMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeSplinesComponent_GetSplineMeshComponents \ +static_assert(alignof(LandscapeSplinesComponent_GetSplineMeshComponents) == 0x000008, "Wrong alignment on LandscapeSplinesComponent_GetSplineMeshComponents"); \ +static_assert(sizeof(LandscapeSplinesComponent_GetSplineMeshComponents) == 0x000010, "Wrong size on LandscapeSplinesComponent_GetSplineMeshComponents"); \ +static_assert(offsetof(LandscapeSplinesComponent_GetSplineMeshComponents, ReturnValue) == 0x000000, "Member 'LandscapeSplinesComponent_GetSplineMeshComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeSplinesComponent \ +static_assert(alignof(ULandscapeSplinesComponent) == 0x000010, "Wrong alignment on ULandscapeSplinesComponent"); \ +static_assert(sizeof(ULandscapeSplinesComponent) == 0x0005A0, "Wrong size on ULandscapeSplinesComponent"); \ +static_assert(offsetof(ULandscapeSplinesComponent, ControlPoints) == 0x000570, "Member 'ULandscapeSplinesComponent::ControlPoints' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplinesComponent, Segments) == 0x000580, "Member 'ULandscapeSplinesComponent::Segments' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplinesComponent, CookedForeignMeshComponents) == 0x000590, "Member 'ULandscapeSplinesComponent::CookedForeignMeshComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeSplineControlPoint \ +static_assert(alignof(ULandscapeSplineControlPoint) == 0x000008, "Wrong alignment on ULandscapeSplineControlPoint"); \ +static_assert(sizeof(ULandscapeSplineControlPoint) == 0x0000D8, "Wrong size on ULandscapeSplineControlPoint"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, Location) == 0x000028, "Member 'ULandscapeSplineControlPoint::Location' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, Rotation) == 0x000040, "Member 'ULandscapeSplineControlPoint::Rotation' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, Width) == 0x000058, "Member 'ULandscapeSplineControlPoint::Width' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, LayerWidthRatio) == 0x00005C, "Member 'ULandscapeSplineControlPoint::LayerWidthRatio' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, SideFalloff) == 0x000060, "Member 'ULandscapeSplineControlPoint::SideFalloff' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, LeftSideFalloffFactor) == 0x000064, "Member 'ULandscapeSplineControlPoint::LeftSideFalloffFactor' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, RightSideFalloffFactor) == 0x000068, "Member 'ULandscapeSplineControlPoint::RightSideFalloffFactor' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, LeftSideLayerFalloffFactor) == 0x00006C, "Member 'ULandscapeSplineControlPoint::LeftSideLayerFalloffFactor' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, RightSideLayerFalloffFactor) == 0x000070, "Member 'ULandscapeSplineControlPoint::RightSideLayerFalloffFactor' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, EndFalloff) == 0x000074, "Member 'ULandscapeSplineControlPoint::EndFalloff' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, ConnectedSegments) == 0x000078, "Member 'ULandscapeSplineControlPoint::ConnectedSegments' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, Points) == 0x000088, "Member 'ULandscapeSplineControlPoint::Points' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, Bounds) == 0x000098, "Member 'ULandscapeSplineControlPoint::Bounds' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineControlPoint, LocalMeshComponent) == 0x0000D0, "Member 'ULandscapeSplineControlPoint::LocalMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeSplineSegment \ +static_assert(alignof(ULandscapeSplineSegment) == 0x000008, "Wrong alignment on ULandscapeSplineSegment"); \ +static_assert(sizeof(ULandscapeSplineSegment) == 0x0000C8, "Wrong size on ULandscapeSplineSegment"); \ +static_assert(offsetof(ULandscapeSplineSegment, Connections) == 0x000028, "Member 'ULandscapeSplineSegment::Connections' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineSegment, SplineInfo) == 0x000058, "Member 'ULandscapeSplineSegment::SplineInfo' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineSegment, Points) == 0x000070, "Member 'ULandscapeSplineSegment::Points' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineSegment, Bounds) == 0x000080, "Member 'ULandscapeSplineSegment::Bounds' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeSplineSegment, LocalMeshComponents) == 0x0000B8, "Member 'ULandscapeSplineSegment::LocalMeshComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeStreamingProxy \ +static_assert(alignof(ALandscapeStreamingProxy) == 0x000008, "Wrong alignment on ALandscapeStreamingProxy"); \ +static_assert(sizeof(ALandscapeStreamingProxy) == 0x000698, "Wrong size on ALandscapeStreamingProxy"); \ +static_assert(offsetof(ALandscapeStreamingProxy, LandscapeActorRef) == 0x000620, "Member 'ALandscapeStreamingProxy::LandscapeActorRef' has a wrong offset!"); \ +static_assert(offsetof(ALandscapeStreamingProxy, OverriddenSharedProperties) == 0x000648, "Member 'ALandscapeStreamingProxy::OverriddenSharedProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeWeightmapUsage \ +static_assert(alignof(ULandscapeWeightmapUsage) == 0x000008, "Wrong alignment on ULandscapeWeightmapUsage"); \ +static_assert(sizeof(ULandscapeWeightmapUsage) == 0x000058, "Wrong size on ULandscapeWeightmapUsage"); \ +static_assert(offsetof(ULandscapeWeightmapUsage, ChannelUsage) == 0x000028, "Member 'ULandscapeWeightmapUsage::ChannelUsage' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeWeightmapUsage, LayerGuid) == 0x000048, "Member 'ULandscapeWeightmapUsage::LayerGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeGrassOutput \ +static_assert(alignof(UMaterialExpressionLandscapeGrassOutput) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeGrassOutput"); \ +static_assert(sizeof(UMaterialExpressionLandscapeGrassOutput) == 0x0000C0, "Wrong size on UMaterialExpressionLandscapeGrassOutput"); \ +static_assert(offsetof(UMaterialExpressionLandscapeGrassOutput, GrassTypes) == 0x0000B0, "Member 'UMaterialExpressionLandscapeGrassOutput::GrassTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeLayerBlend \ +static_assert(alignof(UMaterialExpressionLandscapeLayerBlend) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeLayerBlend"); \ +static_assert(sizeof(UMaterialExpressionLandscapeLayerBlend) == 0x0000C0, "Wrong size on UMaterialExpressionLandscapeLayerBlend"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerBlend, Layers) == 0x0000B0, "Member 'UMaterialExpressionLandscapeLayerBlend::Layers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeLayerCoords \ +static_assert(alignof(UMaterialExpressionLandscapeLayerCoords) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeLayerCoords"); \ +static_assert(sizeof(UMaterialExpressionLandscapeLayerCoords) == 0x0000C8, "Wrong size on UMaterialExpressionLandscapeLayerCoords"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, MappingType) == 0x0000B0, "Member 'UMaterialExpressionLandscapeLayerCoords::MappingType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, CustomUVType) == 0x0000B1, "Member 'UMaterialExpressionLandscapeLayerCoords::CustomUVType' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, MappingScale) == 0x0000B4, "Member 'UMaterialExpressionLandscapeLayerCoords::MappingScale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, MappingRotation) == 0x0000B8, "Member 'UMaterialExpressionLandscapeLayerCoords::MappingRotation' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, MappingPanU) == 0x0000BC, "Member 'UMaterialExpressionLandscapeLayerCoords::MappingPanU' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerCoords, MappingPanV) == 0x0000C0, "Member 'UMaterialExpressionLandscapeLayerCoords::MappingPanV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AControlPointMeshActor \ +static_assert(alignof(AControlPointMeshActor) == 0x000008, "Wrong alignment on AControlPointMeshActor"); \ +static_assert(sizeof(AControlPointMeshActor) == 0x0002A0, "Wrong size on AControlPointMeshActor"); \ +static_assert(offsetof(AControlPointMeshActor, ControlPointMeshComponent) == 0x000298, "Member 'AControlPointMeshActor::ControlPointMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies \ +static_assert(alignof(LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies) == 0x000008, "Wrong alignment on LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies"); \ +static_assert(sizeof(LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies) == 0x000010, "Wrong size on LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies, OutStreamableAssets) == 0x000000, "Member 'LandscapeBlueprintBrushBase_GetBlueprintRenderDependencies::OutStreamableAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeBlueprintBrushBase_Initialize \ +static_assert(alignof(LandscapeBlueprintBrushBase_Initialize) == 0x000010, "Wrong alignment on LandscapeBlueprintBrushBase_Initialize"); \ +static_assert(sizeof(LandscapeBlueprintBrushBase_Initialize) == 0x000070, "Wrong size on LandscapeBlueprintBrushBase_Initialize"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Initialize, InLandscapeTransform) == 0x000000, "Member 'LandscapeBlueprintBrushBase_Initialize::InLandscapeTransform' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Initialize, InLandscapeSize) == 0x000060, "Member 'LandscapeBlueprintBrushBase_Initialize::InLandscapeSize' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Initialize, InLandscapeRenderTargetSize) == 0x000068, "Member 'LandscapeBlueprintBrushBase_Initialize::InLandscapeRenderTargetSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeBlueprintBrushBase_Render \ +static_assert(alignof(LandscapeBlueprintBrushBase_Render) == 0x000008, "Wrong alignment on LandscapeBlueprintBrushBase_Render"); \ +static_assert(sizeof(LandscapeBlueprintBrushBase_Render) == 0x000020, "Wrong size on LandscapeBlueprintBrushBase_Render"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Render, InIsHeightmap) == 0x000000, "Member 'LandscapeBlueprintBrushBase_Render::InIsHeightmap' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Render, InCombinedResult) == 0x000008, "Member 'LandscapeBlueprintBrushBase_Render::InCombinedResult' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Render, InWeightmapLayerName) == 0x000010, "Member 'LandscapeBlueprintBrushBase_Render::InWeightmapLayerName' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_Render, ReturnValue) == 0x000018, "Member 'LandscapeBlueprintBrushBase_Render::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeBlueprintBrushBase_RenderLayer \ +static_assert(alignof(LandscapeBlueprintBrushBase_RenderLayer) == 0x000008, "Wrong alignment on LandscapeBlueprintBrushBase_RenderLayer"); \ +static_assert(sizeof(LandscapeBlueprintBrushBase_RenderLayer) == 0x000020, "Wrong size on LandscapeBlueprintBrushBase_RenderLayer"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_RenderLayer, InParameters) == 0x000000, "Member 'LandscapeBlueprintBrushBase_RenderLayer::InParameters' has a wrong offset!"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_RenderLayer, ReturnValue) == 0x000018, "Member 'LandscapeBlueprintBrushBase_RenderLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LandscapeBlueprintBrushBase_RequestLandscapeUpdate \ +static_assert(alignof(LandscapeBlueprintBrushBase_RequestLandscapeUpdate) == 0x000001, "Wrong alignment on LandscapeBlueprintBrushBase_RequestLandscapeUpdate"); \ +static_assert(sizeof(LandscapeBlueprintBrushBase_RequestLandscapeUpdate) == 0x000001, "Wrong size on LandscapeBlueprintBrushBase_RequestLandscapeUpdate"); \ +static_assert(offsetof(LandscapeBlueprintBrushBase_RequestLandscapeUpdate, bInUserTriggered) == 0x000000, "Member 'LandscapeBlueprintBrushBase_RequestLandscapeUpdate::bInUserTriggered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeBlueprintBrushBase \ +static_assert(alignof(ALandscapeBlueprintBrushBase) == 0x000008, "Wrong alignment on ALandscapeBlueprintBrushBase"); \ +static_assert(sizeof(ALandscapeBlueprintBrushBase) == 0x000298, "Wrong size on ALandscapeBlueprintBrushBase"); \ + +#define DUMPER7_ASSERTS_ULandscapeHLODBuilder \ +static_assert(alignof(ULandscapeHLODBuilder) == 0x000008, "Wrong alignment on ULandscapeHLODBuilder"); \ +static_assert(sizeof(ULandscapeHLODBuilder) == 0x000028, "Wrong size on ULandscapeHLODBuilder"); \ + +#define DUMPER7_ASSERTS_ULandscapeInfo \ +static_assert(alignof(ULandscapeInfo) == 0x000008, "Wrong alignment on ULandscapeInfo"); \ +static_assert(sizeof(ULandscapeInfo) == 0x000228, "Wrong size on ULandscapeInfo"); \ +static_assert(offsetof(ULandscapeInfo, LandscapeActor) == 0x000028, "Member 'ULandscapeInfo::LandscapeActor' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, LandscapeGuid) == 0x000030, "Member 'ULandscapeInfo::LandscapeGuid' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, ComponentSizeQuads) == 0x000040, "Member 'ULandscapeInfo::ComponentSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, SubsectionSizeQuads) == 0x000044, "Member 'ULandscapeInfo::SubsectionSizeQuads' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, ComponentNumSubsections) == 0x000048, "Member 'ULandscapeInfo::ComponentNumSubsections' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, DrawScale) == 0x000050, "Member 'ULandscapeInfo::DrawScale' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeInfo, StreamingProxies) == 0x000118, "Member 'ULandscapeInfo::StreamingProxies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeInfoMap \ +static_assert(alignof(ULandscapeInfoMap) == 0x000008, "Wrong alignment on ULandscapeInfoMap"); \ +static_assert(sizeof(ULandscapeInfoMap) == 0x000080, "Wrong size on ULandscapeInfoMap"); \ + +#define DUMPER7_ASSERTS_ULandscapeNaniteComponent \ +static_assert(alignof(ULandscapeNaniteComponent) == 0x000010, "Wrong alignment on ULandscapeNaniteComponent"); \ +static_assert(sizeof(ULandscapeNaniteComponent) == 0x000640, "Wrong size on ULandscapeNaniteComponent"); \ +static_assert(offsetof(ULandscapeNaniteComponent, ProxyContentId) == 0x000628, "Member 'ULandscapeNaniteComponent::ProxyContentId' has a wrong offset!"); \ +static_assert(offsetof(ULandscapeNaniteComponent, bEnabled) == 0x000638, "Member 'ULandscapeNaniteComponent::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeSplineActor \ +static_assert(alignof(ALandscapeSplineActor) == 0x000008, "Wrong alignment on ALandscapeSplineActor"); \ +static_assert(sizeof(ALandscapeSplineActor) == 0x0002B0, "Wrong size on ALandscapeSplineActor"); \ +static_assert(offsetof(ALandscapeSplineActor, LandscapeGuid) == 0x0002A0, "Member 'ALandscapeSplineActor::LandscapeGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALandscapeSplineMeshesActor \ +static_assert(alignof(ALandscapeSplineMeshesActor) == 0x000008, "Wrong alignment on ALandscapeSplineMeshesActor"); \ +static_assert(sizeof(ALandscapeSplineMeshesActor) == 0x0002A8, "Wrong size on ALandscapeSplineMeshesActor"); \ +static_assert(offsetof(ALandscapeSplineMeshesActor, StaticMeshComponents) == 0x000298, "Member 'ALandscapeSplineMeshesActor::StaticMeshComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULandscapeSubsystem \ +static_assert(alignof(ULandscapeSubsystem) == 0x000008, "Wrong alignment on ULandscapeSubsystem"); \ +static_assert(sizeof(ULandscapeSubsystem) == 0x000060, "Wrong size on ULandscapeSubsystem"); \ + +#define DUMPER7_ASSERTS_ULandscapeTextureStorageProviderFactory \ +static_assert(alignof(ULandscapeTextureStorageProviderFactory) == 0x000008, "Wrong alignment on ULandscapeTextureStorageProviderFactory"); \ +static_assert(sizeof(ULandscapeTextureStorageProviderFactory) == 0x000060, "Wrong size on ULandscapeTextureStorageProviderFactory"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeLayerSample \ +static_assert(alignof(UMaterialExpressionLandscapeLayerSample) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeLayerSample"); \ +static_assert(sizeof(UMaterialExpressionLandscapeLayerSample) == 0x0000C0, "Wrong size on UMaterialExpressionLandscapeLayerSample"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerSample, ParameterName) == 0x0000B0, "Member 'UMaterialExpressionLandscapeLayerSample::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerSample, PreviewWeight) == 0x0000B8, "Member 'UMaterialExpressionLandscapeLayerSample::PreviewWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeLayerSwitch \ +static_assert(alignof(UMaterialExpressionLandscapeLayerSwitch) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeLayerSwitch"); \ +static_assert(sizeof(UMaterialExpressionLandscapeLayerSwitch) == 0x000110, "Wrong size on UMaterialExpressionLandscapeLayerSwitch"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerSwitch, LayerUsed) == 0x0000B0, "Member 'UMaterialExpressionLandscapeLayerSwitch::LayerUsed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerSwitch, LayerNotUsed) == 0x0000D8, "Member 'UMaterialExpressionLandscapeLayerSwitch::LayerNotUsed' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerSwitch, ParameterName) == 0x000100, "Member 'UMaterialExpressionLandscapeLayerSwitch::ParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeLayerWeight \ +static_assert(alignof(UMaterialExpressionLandscapeLayerWeight) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeLayerWeight"); \ +static_assert(sizeof(UMaterialExpressionLandscapeLayerWeight) == 0x000128, "Wrong size on UMaterialExpressionLandscapeLayerWeight"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerWeight, base) == 0x0000B0, "Member 'UMaterialExpressionLandscapeLayerWeight::base' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerWeight, Layer) == 0x0000D8, "Member 'UMaterialExpressionLandscapeLayerWeight::Layer' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerWeight, ParameterName) == 0x000100, "Member 'UMaterialExpressionLandscapeLayerWeight::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerWeight, PreviewWeight) == 0x000108, "Member 'UMaterialExpressionLandscapeLayerWeight::PreviewWeight' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionLandscapeLayerWeight, ConstBase) == 0x000110, "Member 'UMaterialExpressionLandscapeLayerWeight::ConstBase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapePhysicalMaterialOutput \ +static_assert(alignof(UMaterialExpressionLandscapePhysicalMaterialOutput) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapePhysicalMaterialOutput"); \ +static_assert(sizeof(UMaterialExpressionLandscapePhysicalMaterialOutput) == 0x0000C0, "Wrong size on UMaterialExpressionLandscapePhysicalMaterialOutput"); \ +static_assert(offsetof(UMaterialExpressionLandscapePhysicalMaterialOutput, Inputs) == 0x0000B0, "Member 'UMaterialExpressionLandscapePhysicalMaterialOutput::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionLandscapeVisibilityMask \ +static_assert(alignof(UMaterialExpressionLandscapeVisibilityMask) == 0x000008, "Wrong alignment on UMaterialExpressionLandscapeVisibilityMask"); \ +static_assert(sizeof(UMaterialExpressionLandscapeVisibilityMask) == 0x0000B0, "Wrong size on UMaterialExpressionLandscapeVisibilityMask"); \ + +#define DUMPER7_ASSERTS_UCameraShake_RecallPlace_C \ +static_assert(alignof(UCameraShake_RecallPlace_C) == 0x000010, "Wrong alignment on UCameraShake_RecallPlace_C"); \ +static_assert(sizeof(UCameraShake_RecallPlace_C) == 0x0001F0, "Wrong size on UCameraShake_RecallPlace_C"); \ + +#define DUMPER7_ASSERTS_FTimedDataChannelSampleTime \ +static_assert(alignof(FTimedDataChannelSampleTime) == 0x000008, "Wrong alignment on FTimedDataChannelSampleTime"); \ +static_assert(sizeof(FTimedDataChannelSampleTime) == 0x000018, "Wrong size on FTimedDataChannelSampleTime"); \ + +#define DUMPER7_ASSERTS_FTimedDataInputEvaluationData \ +static_assert(alignof(FTimedDataInputEvaluationData) == 0x000004, "Wrong alignment on FTimedDataInputEvaluationData"); \ +static_assert(sizeof(FTimedDataInputEvaluationData) == 0x000008, "Wrong size on FTimedDataInputEvaluationData"); \ +static_assert(offsetof(FTimedDataInputEvaluationData, DistanceToNewestSampleSeconds) == 0x000000, "Member 'FTimedDataInputEvaluationData::DistanceToNewestSampleSeconds' has a wrong offset!"); \ +static_assert(offsetof(FTimedDataInputEvaluationData, DistanceToOldestSampleSeconds) == 0x000004, "Member 'FTimedDataInputEvaluationData::DistanceToOldestSampleSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFixedFrameRateCustomTimeStep \ +static_assert(alignof(UFixedFrameRateCustomTimeStep) == 0x000008, "Wrong alignment on UFixedFrameRateCustomTimeStep"); \ +static_assert(sizeof(UFixedFrameRateCustomTimeStep) == 0x000028, "Wrong size on UFixedFrameRateCustomTimeStep"); \ + +#define DUMPER7_ASSERTS_UGenlockedCustomTimeStep \ +static_assert(alignof(UGenlockedCustomTimeStep) == 0x000008, "Wrong alignment on UGenlockedCustomTimeStep"); \ +static_assert(sizeof(UGenlockedCustomTimeStep) == 0x000030, "Wrong size on UGenlockedCustomTimeStep"); \ +static_assert(offsetof(UGenlockedCustomTimeStep, bAutoDetectFormat) == 0x000028, "Member 'UGenlockedCustomTimeStep::bAutoDetectFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGenlockedFixedRateCustomTimeStep \ +static_assert(alignof(UGenlockedFixedRateCustomTimeStep) == 0x000008, "Wrong alignment on UGenlockedFixedRateCustomTimeStep"); \ +static_assert(sizeof(UGenlockedFixedRateCustomTimeStep) == 0x000050, "Wrong size on UGenlockedFixedRateCustomTimeStep"); \ +static_assert(offsetof(UGenlockedFixedRateCustomTimeStep, FrameRate) == 0x000030, "Member 'UGenlockedFixedRateCustomTimeStep::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(UGenlockedFixedRateCustomTimeStep, bShouldBlock) == 0x000038, "Member 'UGenlockedFixedRateCustomTimeStep::bShouldBlock' has a wrong offset!"); \ +static_assert(offsetof(UGenlockedFixedRateCustomTimeStep, bForceSingleFrameDeltaTime) == 0x000039, "Member 'UGenlockedFixedRateCustomTimeStep::bForceSingleFrameDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGenlockedTimecodeProvider \ +static_assert(alignof(UGenlockedTimecodeProvider) == 0x000008, "Wrong alignment on UGenlockedTimecodeProvider"); \ +static_assert(sizeof(UGenlockedTimecodeProvider) == 0x000058, "Wrong size on UGenlockedTimecodeProvider"); \ +static_assert(offsetof(UGenlockedTimecodeProvider, bUseGenlockToCount) == 0x000030, "Member 'UGenlockedTimecodeProvider::bUseGenlockToCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber \ +static_assert(alignof(TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Add_FrameNumberInteger \ +static_assert(alignof(TimeManagementBlueprintLibrary_Add_FrameNumberInteger) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Add_FrameNumberInteger"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Add_FrameNumberInteger) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Add_FrameNumberInteger"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberInteger, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberInteger::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberInteger, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberInteger::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Add_FrameNumberInteger, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Add_FrameNumberInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger \ +static_assert(alignof(TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger) == 0x000008, "Wrong size on TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger, InFrameNumber) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger::InFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger, ReturnValue) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Conv_FrameNumberToInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Conv_FrameRateToInterval \ +static_assert(alignof(TimeManagementBlueprintLibrary_Conv_FrameRateToInterval) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Conv_FrameRateToInterval"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Conv_FrameRateToInterval) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Conv_FrameRateToInterval"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameRateToInterval, InFrameRate) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Conv_FrameRateToInterval::InFrameRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameRateToInterval, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Conv_FrameRateToInterval::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds \ +static_assert(alignof(TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds, InFrameRate) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds::InFrameRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Conv_FrameRateToSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds \ +static_assert(alignof(TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds) == 0x000014, "Wrong size on TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds, InFrameTime) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds::InFrameTime' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds, ReturnValue) == 0x000010, "Member 'TimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Conv_TimecodeToString \ +static_assert(alignof(TimeManagementBlueprintLibrary_Conv_TimecodeToString) == 0x000008, "Wrong alignment on TimeManagementBlueprintLibrary_Conv_TimecodeToString"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Conv_TimecodeToString) == 0x000028, "Wrong size on TimeManagementBlueprintLibrary_Conv_TimecodeToString"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_TimecodeToString, InTimecode) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Conv_TimecodeToString::InTimecode' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_TimecodeToString, bForceSignDisplay) == 0x000014, "Member 'TimeManagementBlueprintLibrary_Conv_TimecodeToString::bForceSignDisplay' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Conv_TimecodeToString, ReturnValue) == 0x000018, "Member 'TimeManagementBlueprintLibrary_Conv_TimecodeToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Divide_FrameNumberInteger \ +static_assert(alignof(TimeManagementBlueprintLibrary_Divide_FrameNumberInteger) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Divide_FrameNumberInteger"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Divide_FrameNumberInteger) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Divide_FrameNumberInteger"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Divide_FrameNumberInteger, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Divide_FrameNumberInteger::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Divide_FrameNumberInteger, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Divide_FrameNumberInteger::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Divide_FrameNumberInteger, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Divide_FrameNumberInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_GetTimecode \ +static_assert(alignof(TimeManagementBlueprintLibrary_GetTimecode) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_GetTimecode"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_GetTimecode) == 0x000014, "Wrong size on TimeManagementBlueprintLibrary_GetTimecode"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_GetTimecode, ReturnValue) == 0x000000, "Member 'TimeManagementBlueprintLibrary_GetTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_GetTimecodeFrameRate \ +static_assert(alignof(TimeManagementBlueprintLibrary_GetTimecodeFrameRate) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_GetTimecodeFrameRate"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_GetTimecodeFrameRate) == 0x000008, "Wrong size on TimeManagementBlueprintLibrary_GetTimecodeFrameRate"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_GetTimecodeFrameRate, ReturnValue) == 0x000000, "Member 'TimeManagementBlueprintLibrary_GetTimecodeFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_IsValid_Framerate \ +static_assert(alignof(TimeManagementBlueprintLibrary_IsValid_Framerate) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_IsValid_Framerate"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_IsValid_Framerate) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_IsValid_Framerate"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_IsValid_Framerate, InFrameRate) == 0x000000, "Member 'TimeManagementBlueprintLibrary_IsValid_Framerate::InFrameRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_IsValid_Framerate, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_IsValid_Framerate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_IsValid_MultipleOf \ +static_assert(alignof(TimeManagementBlueprintLibrary_IsValid_MultipleOf) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_IsValid_MultipleOf"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_IsValid_MultipleOf) == 0x000014, "Wrong size on TimeManagementBlueprintLibrary_IsValid_MultipleOf"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_IsValid_MultipleOf, InFrameRate) == 0x000000, "Member 'TimeManagementBlueprintLibrary_IsValid_MultipleOf::InFrameRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_IsValid_MultipleOf, OtherFramerate) == 0x000008, "Member 'TimeManagementBlueprintLibrary_IsValid_MultipleOf::OtherFramerate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_IsValid_MultipleOf, ReturnValue) == 0x000010, "Member 'TimeManagementBlueprintLibrary_IsValid_MultipleOf::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger \ +static_assert(alignof(TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Multiply_FrameNumberInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate \ +static_assert(alignof(TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate) == 0x000014, "Wrong size on TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate, TimeInSeconds) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate::TimeInSeconds' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate, FrameRate) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate, ReturnValue) == 0x00000C, "Member 'TimeManagementBlueprintLibrary_Multiply_SecondsFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_SnapFrameTimeToRate \ +static_assert(alignof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_SnapFrameTimeToRate"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate) == 0x000020, "Wrong size on TimeManagementBlueprintLibrary_SnapFrameTimeToRate"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate, SourceTime) == 0x000000, "Member 'TimeManagementBlueprintLibrary_SnapFrameTimeToRate::SourceTime' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate, SourceRate) == 0x000008, "Member 'TimeManagementBlueprintLibrary_SnapFrameTimeToRate::SourceRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate, SnapToRate) == 0x000010, "Member 'TimeManagementBlueprintLibrary_SnapFrameTimeToRate::SnapToRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_SnapFrameTimeToRate, ReturnValue) == 0x000018, "Member 'TimeManagementBlueprintLibrary_SnapFrameTimeToRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber \ +static_assert(alignof(TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger \ +static_assert(alignof(TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger) == 0x00000C, "Wrong size on TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger, A) == 0x000000, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger::A' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger, B) == 0x000004, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger::B' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger, ReturnValue) == 0x000008, "Member 'TimeManagementBlueprintLibrary_Subtract_FrameNumberInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TimeManagementBlueprintLibrary_TransformTime \ +static_assert(alignof(TimeManagementBlueprintLibrary_TransformTime) == 0x000004, "Wrong alignment on TimeManagementBlueprintLibrary_TransformTime"); \ +static_assert(sizeof(TimeManagementBlueprintLibrary_TransformTime) == 0x000020, "Wrong size on TimeManagementBlueprintLibrary_TransformTime"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_TransformTime, SourceTime) == 0x000000, "Member 'TimeManagementBlueprintLibrary_TransformTime::SourceTime' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_TransformTime, SourceRate) == 0x000008, "Member 'TimeManagementBlueprintLibrary_TransformTime::SourceRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_TransformTime, DestinationRate) == 0x000010, "Member 'TimeManagementBlueprintLibrary_TransformTime::DestinationRate' has a wrong offset!"); \ +static_assert(offsetof(TimeManagementBlueprintLibrary_TransformTime, ReturnValue) == 0x000018, "Member 'TimeManagementBlueprintLibrary_TransformTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTimeManagementBlueprintLibrary \ +static_assert(alignof(UTimeManagementBlueprintLibrary) == 0x000008, "Wrong alignment on UTimeManagementBlueprintLibrary"); \ +static_assert(sizeof(UTimeManagementBlueprintLibrary) == 0x000028, "Wrong size on UTimeManagementBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UTimeSynchronizationSource \ +static_assert(alignof(UTimeSynchronizationSource) == 0x000008, "Wrong alignment on UTimeSynchronizationSource"); \ +static_assert(sizeof(UTimeSynchronizationSource) == 0x000030, "Wrong size on UTimeSynchronizationSource"); \ +static_assert(offsetof(UTimeSynchronizationSource, bUseForSynchronization) == 0x000028, "Member 'UTimeSynchronizationSource::bUseForSynchronization' has a wrong offset!"); \ +static_assert(offsetof(UTimeSynchronizationSource, FrameOffset) == 0x00002C, "Member 'UTimeSynchronizationSource::FrameOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldEntityTree \ +static_assert(alignof(FMovieSceneEvaluationFieldEntityTree) == 0x000008, "Wrong alignment on FMovieSceneEvaluationFieldEntityTree"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldEntityTree) == 0x000060, "Wrong size on FMovieSceneEvaluationFieldEntityTree"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldEntityKey \ +static_assert(alignof(FMovieSceneEvaluationFieldEntityKey) == 0x000004, "Wrong alignment on FMovieSceneEvaluationFieldEntityKey"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldEntityKey) == 0x00000C, "Wrong size on FMovieSceneEvaluationFieldEntityKey"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntityKey, EntityOwner) == 0x000000, "Member 'FMovieSceneEvaluationFieldEntityKey::EntityOwner' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntityKey, EntityID) == 0x000008, "Member 'FMovieSceneEvaluationFieldEntityKey::EntityID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldEntity \ +static_assert(alignof(FMovieSceneEvaluationFieldEntity) == 0x000004, "Wrong alignment on FMovieSceneEvaluationFieldEntity"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldEntity) == 0x000010, "Wrong size on FMovieSceneEvaluationFieldEntity"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntity, Key) == 0x000000, "Member 'FMovieSceneEvaluationFieldEntity::Key' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntity, SharedMetaDataIndex) == 0x00000C, "Member 'FMovieSceneEvaluationFieldEntity::SharedMetaDataIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldEntityMetaData \ +static_assert(alignof(FMovieSceneEvaluationFieldEntityMetaData) == 0x000008, "Wrong alignment on FMovieSceneEvaluationFieldEntityMetaData"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldEntityMetaData) == 0x000018, "Wrong size on FMovieSceneEvaluationFieldEntityMetaData"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntityMetaData, OverrideBoundPropertyPath) == 0x000000, "Member 'FMovieSceneEvaluationFieldEntityMetaData::OverrideBoundPropertyPath' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntityMetaData, ForcedTime) == 0x000010, "Member 'FMovieSceneEvaluationFieldEntityMetaData::ForcedTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldEntityMetaData, Flags) == 0x000014, "Member 'FMovieSceneEvaluationFieldEntityMetaData::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldSharedEntityMetaData \ +static_assert(alignof(FMovieSceneEvaluationFieldSharedEntityMetaData) == 0x000004, "Wrong alignment on FMovieSceneEvaluationFieldSharedEntityMetaData"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldSharedEntityMetaData) == 0x000010, "Wrong size on FMovieSceneEvaluationFieldSharedEntityMetaData"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldSharedEntityMetaData, ObjectBindingID) == 0x000000, "Member 'FMovieSceneEvaluationFieldSharedEntityMetaData::ObjectBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEntityComponentField \ +static_assert(alignof(FMovieSceneEntityComponentField) == 0x000008, "Wrong alignment on FMovieSceneEntityComponentField"); \ +static_assert(sizeof(FMovieSceneEntityComponentField) == 0x0000F0, "Wrong size on FMovieSceneEntityComponentField"); \ +static_assert(offsetof(FMovieSceneEntityComponentField, PersistentEntityTree) == 0x000000, "Member 'FMovieSceneEntityComponentField::PersistentEntityTree' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEntityComponentField, OneShotEntityTree) == 0x000060, "Member 'FMovieSceneEntityComponentField::OneShotEntityTree' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEntityComponentField, Entities) == 0x0000C0, "Member 'FMovieSceneEntityComponentField::Entities' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEntityComponentField, EntityMetaData) == 0x0000D0, "Member 'FMovieSceneEntityComponentField::EntityMetaData' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEntityComponentField, SharedMetaData) == 0x0000E0, "Member 'FMovieSceneEntityComponentField::SharedMetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceID \ +static_assert(alignof(FMovieSceneSequenceID) == 0x000004, "Wrong alignment on FMovieSceneSequenceID"); \ +static_assert(sizeof(FMovieSceneSequenceID) == 0x000004, "Wrong size on FMovieSceneSequenceID"); \ +static_assert(offsetof(FMovieSceneSequenceID, Value) == 0x000000, "Member 'FMovieSceneSequenceID::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackIdentifier \ +static_assert(alignof(FMovieSceneTrackIdentifier) == 0x000004, "Wrong alignment on FMovieSceneTrackIdentifier"); \ +static_assert(sizeof(FMovieSceneTrackIdentifier) == 0x000004, "Wrong size on FMovieSceneTrackIdentifier"); \ +static_assert(offsetof(FMovieSceneTrackIdentifier, Value) == 0x000000, "Member 'FMovieSceneTrackIdentifier::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationKey \ +static_assert(alignof(FMovieSceneEvaluationKey) == 0x000004, "Wrong alignment on FMovieSceneEvaluationKey"); \ +static_assert(sizeof(FMovieSceneEvaluationKey) == 0x00000C, "Wrong size on FMovieSceneEvaluationKey"); \ +static_assert(offsetof(FMovieSceneEvaluationKey, SequenceID) == 0x000000, "Member 'FMovieSceneEvaluationKey::SequenceID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationKey, TrackIdentifier) == 0x000004, "Member 'FMovieSceneEvaluationKey::TrackIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationKey, SectionIndex) == 0x000008, "Member 'FMovieSceneEvaluationKey::SectionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEntitySystemGraphNode \ +static_assert(alignof(FMovieSceneEntitySystemGraphNode) == 0x000008, "Wrong alignment on FMovieSceneEntitySystemGraphNode"); \ +static_assert(sizeof(FMovieSceneEntitySystemGraphNode) == 0x000028, "Wrong size on FMovieSceneEntitySystemGraphNode"); \ +static_assert(offsetof(FMovieSceneEntitySystemGraphNode, System) == 0x000020, "Member 'FMovieSceneEntitySystemGraphNode::System' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEasingSettings \ +static_assert(alignof(FMovieSceneEasingSettings) == 0x000008, "Wrong alignment on FMovieSceneEasingSettings"); \ +static_assert(sizeof(FMovieSceneEasingSettings) == 0x000038, "Wrong size on FMovieSceneEasingSettings"); \ +static_assert(offsetof(FMovieSceneEasingSettings, AutoEaseInDuration) == 0x000000, "Member 'FMovieSceneEasingSettings::AutoEaseInDuration' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, AutoEaseOutDuration) == 0x000004, "Member 'FMovieSceneEasingSettings::AutoEaseOutDuration' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, EaseIn) == 0x000008, "Member 'FMovieSceneEasingSettings::EaseIn' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, bManualEaseIn) == 0x000018, "Member 'FMovieSceneEasingSettings::bManualEaseIn' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, ManualEaseInDuration) == 0x00001C, "Member 'FMovieSceneEasingSettings::ManualEaseInDuration' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, EaseOut) == 0x000020, "Member 'FMovieSceneEasingSettings::EaseOut' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, bManualEaseOut) == 0x000030, "Member 'FMovieSceneEasingSettings::bManualEaseOut' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEasingSettings, ManualEaseOutDuration) == 0x000034, "Member 'FMovieSceneEasingSettings::ManualEaseOutDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceLoopCount \ +static_assert(alignof(FMovieSceneSequenceLoopCount) == 0x000004, "Wrong alignment on FMovieSceneSequenceLoopCount"); \ +static_assert(sizeof(FMovieSceneSequenceLoopCount) == 0x000004, "Wrong size on FMovieSceneSequenceLoopCount"); \ +static_assert(offsetof(FMovieSceneSequenceLoopCount, Value) == 0x000000, "Member 'FMovieSceneSequenceLoopCount::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceTickInterval \ +static_assert(alignof(FMovieSceneSequenceTickInterval) == 0x000004, "Wrong alignment on FMovieSceneSequenceTickInterval"); \ +static_assert(sizeof(FMovieSceneSequenceTickInterval) == 0x00000C, "Wrong size on FMovieSceneSequenceTickInterval"); \ +static_assert(offsetof(FMovieSceneSequenceTickInterval, TickIntervalSeconds) == 0x000000, "Member 'FMovieSceneSequenceTickInterval::TickIntervalSeconds' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceTickInterval, EvaluationBudgetMicroseconds) == 0x000004, "Member 'FMovieSceneSequenceTickInterval::EvaluationBudgetMicroseconds' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceTickInterval, bTickWhenPaused) == 0x000008, "Member 'FMovieSceneSequenceTickInterval::bTickWhenPaused' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceTickInterval, bAllowRounding) == 0x000009, "Member 'FMovieSceneSequenceTickInterval::bAllowRounding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequencePlaybackSettings \ +static_assert(alignof(FMovieSceneSequencePlaybackSettings) == 0x000004, "Wrong alignment on FMovieSceneSequencePlaybackSettings"); \ +static_assert(sizeof(FMovieSceneSequencePlaybackSettings) == 0x000020, "Wrong size on FMovieSceneSequencePlaybackSettings"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackSettings, LoopCount) == 0x000004, "Member 'FMovieSceneSequencePlaybackSettings::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackSettings, TickInterval) == 0x000008, "Member 'FMovieSceneSequencePlaybackSettings::TickInterval' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackSettings, PlayRate) == 0x000014, "Member 'FMovieSceneSequencePlaybackSettings::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackSettings, StartTime) == 0x000018, "Member 'FMovieSceneSequencePlaybackSettings::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceCompilerMaskStruct \ +static_assert(alignof(FMovieSceneSequenceCompilerMaskStruct) == 0x000001, "Wrong alignment on FMovieSceneSequenceCompilerMaskStruct"); \ +static_assert(sizeof(FMovieSceneSequenceCompilerMaskStruct) == 0x000001, "Wrong size on FMovieSceneSequenceCompilerMaskStruct"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDynamicBinding \ +static_assert(alignof(FMovieSceneDynamicBinding) == 0x000008, "Wrong alignment on FMovieSceneDynamicBinding"); \ +static_assert(sizeof(FMovieSceneDynamicBinding) == 0x000028, "Wrong size on FMovieSceneDynamicBinding"); \ +static_assert(offsetof(FMovieSceneDynamicBinding, Function) == 0x000000, "Member 'FMovieSceneDynamicBinding::Function' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDynamicBinding, ResolveParamsProperty) == 0x000008, "Member 'FMovieSceneDynamicBinding::ResolveParamsProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorForWorldTransforms \ +static_assert(alignof(FActorForWorldTransforms) == 0x000004, "Wrong alignment on FActorForWorldTransforms"); \ +static_assert(sizeof(FActorForWorldTransforms) == 0x000018, "Wrong size on FActorForWorldTransforms"); \ +static_assert(offsetof(FActorForWorldTransforms, Actor) == 0x000000, "Member 'FActorForWorldTransforms::Actor' has a wrong offset!"); \ +static_assert(offsetof(FActorForWorldTransforms, Component) == 0x000008, "Member 'FActorForWorldTransforms::Component' has a wrong offset!"); \ +static_assert(offsetof(FActorForWorldTransforms, SocketName) == 0x000010, "Member 'FActorForWorldTransforms::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDeterminismData \ +static_assert(alignof(FMovieSceneDeterminismData) == 0x000008, "Wrong alignment on FMovieSceneDeterminismData"); \ +static_assert(sizeof(FMovieSceneDeterminismData) == 0x000018, "Wrong size on FMovieSceneDeterminismData"); \ +static_assert(offsetof(FMovieSceneDeterminismData, Fences) == 0x000000, "Member 'FMovieSceneDeterminismData::Fences' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDeterminismData, bParentSequenceRequiresLowerFence) == 0x000010, "Member 'FMovieSceneDeterminismData::bParentSequenceRequiresLowerFence' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDeterminismData, bParentSequenceRequiresUpperFence) == 0x000011, "Member 'FMovieSceneDeterminismData::bParentSequenceRequiresUpperFence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationGroupLUTIndex \ +static_assert(alignof(FMovieSceneEvaluationGroupLUTIndex) == 0x000004, "Wrong alignment on FMovieSceneEvaluationGroupLUTIndex"); \ +static_assert(sizeof(FMovieSceneEvaluationGroupLUTIndex) == 0x000008, "Wrong size on FMovieSceneEvaluationGroupLUTIndex"); \ +static_assert(offsetof(FMovieSceneEvaluationGroupLUTIndex, NumInitPtrs) == 0x000000, "Member 'FMovieSceneEvaluationGroupLUTIndex::NumInitPtrs' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationGroupLUTIndex, NumEvalPtrs) == 0x000004, "Member 'FMovieSceneEvaluationGroupLUTIndex::NumEvalPtrs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldTrackPtr \ +static_assert(alignof(FMovieSceneEvaluationFieldTrackPtr) == 0x000004, "Wrong alignment on FMovieSceneEvaluationFieldTrackPtr"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldTrackPtr) == 0x000008, "Wrong size on FMovieSceneEvaluationFieldTrackPtr"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldTrackPtr, SequenceID) == 0x000000, "Member 'FMovieSceneEvaluationFieldTrackPtr::SequenceID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldTrackPtr, TrackIdentifier) == 0x000004, "Member 'FMovieSceneEvaluationFieldTrackPtr::TrackIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFieldEntry_EvaluationTrack \ +static_assert(alignof(FMovieSceneFieldEntry_EvaluationTrack) == 0x000004, "Wrong alignment on FMovieSceneFieldEntry_EvaluationTrack"); \ +static_assert(sizeof(FMovieSceneFieldEntry_EvaluationTrack) == 0x00000C, "Wrong size on FMovieSceneFieldEntry_EvaluationTrack"); \ +static_assert(offsetof(FMovieSceneFieldEntry_EvaluationTrack, TrackPtr) == 0x000000, "Member 'FMovieSceneFieldEntry_EvaluationTrack::TrackPtr' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFieldEntry_EvaluationTrack, NumChildren) == 0x000008, "Member 'FMovieSceneFieldEntry_EvaluationTrack::NumChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFieldEntry_ChildTemplate \ +static_assert(alignof(FMovieSceneFieldEntry_ChildTemplate) == 0x000004, "Wrong alignment on FMovieSceneFieldEntry_ChildTemplate"); \ +static_assert(sizeof(FMovieSceneFieldEntry_ChildTemplate) == 0x000008, "Wrong size on FMovieSceneFieldEntry_ChildTemplate"); \ +static_assert(offsetof(FMovieSceneFieldEntry_ChildTemplate, ChildIndex) == 0x000000, "Member 'FMovieSceneFieldEntry_ChildTemplate::ChildIndex' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFieldEntry_ChildTemplate, Flags) == 0x000002, "Member 'FMovieSceneFieldEntry_ChildTemplate::Flags' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFieldEntry_ChildTemplate, ForcedTime) == 0x000004, "Member 'FMovieSceneFieldEntry_ChildTemplate::ForcedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationGroup \ +static_assert(alignof(FMovieSceneEvaluationGroup) == 0x000008, "Wrong alignment on FMovieSceneEvaluationGroup"); \ +static_assert(sizeof(FMovieSceneEvaluationGroup) == 0x000030, "Wrong size on FMovieSceneEvaluationGroup"); \ +static_assert(offsetof(FMovieSceneEvaluationGroup, LUTIndices) == 0x000000, "Member 'FMovieSceneEvaluationGroup::LUTIndices' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationGroup, TrackLUT) == 0x000010, "Member 'FMovieSceneEvaluationGroup::TrackLUT' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationGroup, SectionLUT) == 0x000020, "Member 'FMovieSceneEvaluationGroup::SectionLUT' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEmptyStruct \ +static_assert(alignof(FMovieSceneEmptyStruct) == 0x000001, "Wrong alignment on FMovieSceneEmptyStruct"); \ +static_assert(sizeof(FMovieSceneEmptyStruct) == 0x000001, "Wrong size on FMovieSceneEmptyStruct"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvalTemplateBase \ +static_assert(alignof(FMovieSceneEvalTemplateBase) == 0x000008, "Wrong alignment on FMovieSceneEvalTemplateBase"); \ +static_assert(sizeof(FMovieSceneEvalTemplateBase) == 0x000010, "Wrong size on FMovieSceneEvalTemplateBase"); \ + +#define DUMPER7_ASSERTS_FMovieSceneKeyHandleMap \ +static_assert(alignof(FMovieSceneKeyHandleMap) == 0x000008, "Wrong alignment on FMovieSceneKeyHandleMap"); \ +static_assert(sizeof(FMovieSceneKeyHandleMap) == 0x000088, "Wrong size on FMovieSceneKeyHandleMap"); \ + +#define DUMPER7_ASSERTS_FSectionEvaluationData \ +static_assert(alignof(FSectionEvaluationData) == 0x000004, "Wrong alignment on FSectionEvaluationData"); \ +static_assert(sizeof(FSectionEvaluationData) == 0x00000C, "Wrong size on FSectionEvaluationData"); \ +static_assert(offsetof(FSectionEvaluationData, ImplIndex) == 0x000000, "Member 'FSectionEvaluationData::ImplIndex' has a wrong offset!"); \ +static_assert(offsetof(FSectionEvaluationData, ForcedTime) == 0x000004, "Member 'FSectionEvaluationData::ForcedTime' has a wrong offset!"); \ +static_assert(offsetof(FSectionEvaluationData, Flags) == 0x000008, "Member 'FSectionEvaluationData::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationOperand \ +static_assert(alignof(FMovieSceneEvaluationOperand) == 0x000004, "Wrong alignment on FMovieSceneEvaluationOperand"); \ +static_assert(sizeof(FMovieSceneEvaluationOperand) == 0x000014, "Wrong size on FMovieSceneEvaluationOperand"); \ +static_assert(offsetof(FMovieSceneEvaluationOperand, ObjectBindingID) == 0x000000, "Member 'FMovieSceneEvaluationOperand::ObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationOperand, SequenceID) == 0x000010, "Member 'FMovieSceneEvaluationOperand::SequenceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneKeyStruct \ +static_assert(alignof(FMovieSceneKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneKeyStruct"); \ +static_assert(sizeof(FMovieSceneKeyStruct) == 0x000008, "Wrong size on FMovieSceneKeyStruct"); \ + +#define DUMPER7_ASSERTS_FGeneratedMovieSceneKeyStruct \ +static_assert(alignof(FGeneratedMovieSceneKeyStruct) == 0x000010, "Wrong alignment on FGeneratedMovieSceneKeyStruct"); \ +static_assert(sizeof(FGeneratedMovieSceneKeyStruct) == 0x000050, "Wrong size on FGeneratedMovieSceneKeyStruct"); \ + +#define DUMPER7_ASSERTS_FMovieSceneKeyTimeStruct \ +static_assert(alignof(FMovieSceneKeyTimeStruct) == 0x000008, "Wrong alignment on FMovieSceneKeyTimeStruct"); \ +static_assert(sizeof(FMovieSceneKeyTimeStruct) == 0x000028, "Wrong size on FMovieSceneKeyTimeStruct"); \ +static_assert(offsetof(FMovieSceneKeyTimeStruct, Time) == 0x000008, "Member 'FMovieSceneKeyTimeStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneChannel \ +static_assert(alignof(FMovieSceneChannel) == 0x000008, "Wrong alignment on FMovieSceneChannel"); \ +static_assert(sizeof(FMovieSceneChannel) == 0x000050, "Wrong size on FMovieSceneChannel"); \ + +#define DUMPER7_ASSERTS_FMovieSceneAudioTriggerChannel \ +static_assert(alignof(FMovieSceneAudioTriggerChannel) == 0x000008, "Wrong alignment on FMovieSceneAudioTriggerChannel"); \ +static_assert(sizeof(FMovieSceneAudioTriggerChannel) == 0x0000F8, "Wrong size on FMovieSceneAudioTriggerChannel"); \ +static_assert(offsetof(FMovieSceneAudioTriggerChannel, Times) == 0x000050, "Member 'FMovieSceneAudioTriggerChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneAudioTriggerChannel, Values) == 0x000060, "Member 'FMovieSceneAudioTriggerChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneAudioTriggerChannel, KeyHandles) == 0x000070, "Member 'FMovieSceneAudioTriggerChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScenePropertyBinding \ +static_assert(alignof(FMovieScenePropertyBinding) == 0x000004, "Wrong alignment on FMovieScenePropertyBinding"); \ +static_assert(sizeof(FMovieScenePropertyBinding) == 0x000014, "Wrong size on FMovieScenePropertyBinding"); \ +static_assert(offsetof(FMovieScenePropertyBinding, PropertyName) == 0x000000, "Member 'FMovieScenePropertyBinding::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePropertyBinding, PropertyPath) == 0x000008, "Member 'FMovieScenePropertyBinding::PropertyPath' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePropertyBinding, bCanUseClassLookup) == 0x000010, "Member 'FMovieScenePropertyBinding::bCanUseClassLookup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneOrderedEvaluationKey \ +static_assert(alignof(FMovieSceneOrderedEvaluationKey) == 0x000004, "Wrong alignment on FMovieSceneOrderedEvaluationKey"); \ +static_assert(sizeof(FMovieSceneOrderedEvaluationKey) == 0x000010, "Wrong size on FMovieSceneOrderedEvaluationKey"); \ +static_assert(offsetof(FMovieSceneOrderedEvaluationKey, Key) == 0x000000, "Member 'FMovieSceneOrderedEvaluationKey::Key' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneOrderedEvaluationKey, SetupIndex) == 0x00000C, "Member 'FMovieSceneOrderedEvaluationKey::SetupIndex' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneOrderedEvaluationKey, TearDownIndex) == 0x00000E, "Member 'FMovieSceneOrderedEvaluationKey::TearDownIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationMetaData \ +static_assert(alignof(FMovieSceneEvaluationMetaData) == 0x000008, "Wrong alignment on FMovieSceneEvaluationMetaData"); \ +static_assert(sizeof(FMovieSceneEvaluationMetaData) == 0x000020, "Wrong size on FMovieSceneEvaluationMetaData"); \ +static_assert(offsetof(FMovieSceneEvaluationMetaData, ActiveSequences) == 0x000000, "Member 'FMovieSceneEvaluationMetaData::ActiveSequences' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationMetaData, ActiveEntities) == 0x000010, "Member 'FMovieSceneEvaluationMetaData::ActiveEntities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSectionParameters \ +static_assert(alignof(FMovieSceneSectionParameters) == 0x000004, "Wrong alignment on FMovieSceneSectionParameters"); \ +static_assert(sizeof(FMovieSceneSectionParameters) == 0x000028, "Wrong size on FMovieSceneSectionParameters"); \ +static_assert(offsetof(FMovieSceneSectionParameters, StartFrameOffset) == 0x000000, "Member 'FMovieSceneSectionParameters::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, bCanLoop) == 0x000004, "Member 'FMovieSceneSectionParameters::bCanLoop' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, EndFrameOffset) == 0x000008, "Member 'FMovieSceneSectionParameters::EndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, FirstLoopStartFrameOffset) == 0x00000C, "Member 'FMovieSceneSectionParameters::FirstLoopStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, TimeScale) == 0x000010, "Member 'FMovieSceneSectionParameters::TimeScale' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, HierarchicalBias) == 0x000014, "Member 'FMovieSceneSectionParameters::HierarchicalBias' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, Flags) == 0x000018, "Member 'FMovieSceneSectionParameters::Flags' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, StartOffset) == 0x00001C, "Member 'FMovieSceneSectionParameters::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, PrerollTime) == 0x000020, "Member 'FMovieSceneSectionParameters::PrerollTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionParameters, PostrollTime) == 0x000024, "Member 'FMovieSceneSectionParameters::PostrollTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSegmentIdentifier \ +static_assert(alignof(FMovieSceneSegmentIdentifier) == 0x000004, "Wrong alignment on FMovieSceneSegmentIdentifier"); \ +static_assert(sizeof(FMovieSceneSegmentIdentifier) == 0x000004, "Wrong size on FMovieSceneSegmentIdentifier"); \ +static_assert(offsetof(FMovieSceneSegmentIdentifier, IdentifierIndex) == 0x000000, "Member 'FMovieSceneSegmentIdentifier::IdentifierIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSegment \ +static_assert(alignof(FMovieSceneSegment) == 0x000008, "Wrong alignment on FMovieSceneSegment"); \ +static_assert(sizeof(FMovieSceneSegment) == 0x000058, "Wrong size on FMovieSceneSegment"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTimeTransform \ +static_assert(alignof(FMovieSceneTimeTransform) == 0x000004, "Wrong alignment on FMovieSceneTimeTransform"); \ +static_assert(sizeof(FMovieSceneTimeTransform) == 0x00000C, "Wrong size on FMovieSceneTimeTransform"); \ +static_assert(offsetof(FMovieSceneTimeTransform, TimeScale) == 0x000000, "Member 'FMovieSceneTimeTransform::TimeScale' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTimeTransform, Offset) == 0x000004, "Member 'FMovieSceneTimeTransform::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBoolChannel \ +static_assert(alignof(FMovieSceneBoolChannel) == 0x000008, "Wrong alignment on FMovieSceneBoolChannel"); \ +static_assert(sizeof(FMovieSceneBoolChannel) == 0x000100, "Wrong size on FMovieSceneBoolChannel"); \ +static_assert(offsetof(FMovieSceneBoolChannel, Times) == 0x000050, "Member 'FMovieSceneBoolChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBoolChannel, DefaultValue) == 0x000060, "Member 'FMovieSceneBoolChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBoolChannel, bHasDefaultValue) == 0x000061, "Member 'FMovieSceneBoolChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBoolChannel, Values) == 0x000068, "Member 'FMovieSceneBoolChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBoolChannel, KeyHandles) == 0x000078, "Member 'FMovieSceneBoolChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneByteChannel \ +static_assert(alignof(FMovieSceneByteChannel) == 0x000008, "Wrong alignment on FMovieSceneByteChannel"); \ +static_assert(sizeof(FMovieSceneByteChannel) == 0x000108, "Wrong size on FMovieSceneByteChannel"); \ +static_assert(offsetof(FMovieSceneByteChannel, Times) == 0x000050, "Member 'FMovieSceneByteChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneByteChannel, DefaultValue) == 0x000060, "Member 'FMovieSceneByteChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneByteChannel, bHasDefaultValue) == 0x000061, "Member 'FMovieSceneByteChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneByteChannel, Values) == 0x000068, "Member 'FMovieSceneByteChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneByteChannel, Enum) == 0x000078, "Member 'FMovieSceneByteChannel::Enum' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneByteChannel, KeyHandles) == 0x000080, "Member 'FMovieSceneByteChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTangentData \ +static_assert(alignof(FMovieSceneTangentData) == 0x000004, "Wrong alignment on FMovieSceneTangentData"); \ +static_assert(sizeof(FMovieSceneTangentData) == 0x000014, "Wrong size on FMovieSceneTangentData"); \ +static_assert(offsetof(FMovieSceneTangentData, ArriveTangent) == 0x000000, "Member 'FMovieSceneTangentData::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentData, LeaveTangent) == 0x000004, "Member 'FMovieSceneTangentData::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentData, ArriveTangentWeight) == 0x000008, "Member 'FMovieSceneTangentData::ArriveTangentWeight' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentData, LeaveTangentWeight) == 0x00000C, "Member 'FMovieSceneTangentData::LeaveTangentWeight' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentData, TangentWeightMode) == 0x000010, "Member 'FMovieSceneTangentData::TangentWeightMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDoubleValue \ +static_assert(alignof(FMovieSceneDoubleValue) == 0x000008, "Wrong alignment on FMovieSceneDoubleValue"); \ +static_assert(sizeof(FMovieSceneDoubleValue) == 0x000020, "Wrong size on FMovieSceneDoubleValue"); \ +static_assert(offsetof(FMovieSceneDoubleValue, Value) == 0x000000, "Member 'FMovieSceneDoubleValue::Value' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleValue, Tangent) == 0x000008, "Member 'FMovieSceneDoubleValue::Tangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleValue, InterpMode) == 0x00001C, "Member 'FMovieSceneDoubleValue::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleValue, TangentMode) == 0x00001D, "Member 'FMovieSceneDoubleValue::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleValue, PaddingByte) == 0x00001E, "Member 'FMovieSceneDoubleValue::PaddingByte' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDoubleChannel \ +static_assert(alignof(FMovieSceneDoubleChannel) == 0x000008, "Wrong alignment on FMovieSceneDoubleChannel"); \ +static_assert(sizeof(FMovieSceneDoubleChannel) == 0x000118, "Wrong size on FMovieSceneDoubleChannel"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, PreInfinityExtrap) == 0x000050, "Member 'FMovieSceneDoubleChannel::PreInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, PostInfinityExtrap) == 0x000051, "Member 'FMovieSceneDoubleChannel::PostInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, Times) == 0x000058, "Member 'FMovieSceneDoubleChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, Values) == 0x000068, "Member 'FMovieSceneDoubleChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, DefaultValue) == 0x000078, "Member 'FMovieSceneDoubleChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, bHasDefaultValue) == 0x000080, "Member 'FMovieSceneDoubleChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, KeyHandles) == 0x000088, "Member 'FMovieSceneDoubleChannel::KeyHandles' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDoubleChannel, TickResolution) == 0x000110, "Member 'FMovieSceneDoubleChannel::TickResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatValue \ +static_assert(alignof(FMovieSceneFloatValue) == 0x000004, "Wrong alignment on FMovieSceneFloatValue"); \ +static_assert(sizeof(FMovieSceneFloatValue) == 0x00001C, "Wrong size on FMovieSceneFloatValue"); \ +static_assert(offsetof(FMovieSceneFloatValue, Value) == 0x000000, "Member 'FMovieSceneFloatValue::Value' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValue, Tangent) == 0x000004, "Member 'FMovieSceneFloatValue::Tangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValue, InterpMode) == 0x000018, "Member 'FMovieSceneFloatValue::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValue, TangentMode) == 0x000019, "Member 'FMovieSceneFloatValue::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValue, PaddingByte) == 0x00001A, "Member 'FMovieSceneFloatValue::PaddingByte' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatChannel \ +static_assert(alignof(FMovieSceneFloatChannel) == 0x000008, "Wrong alignment on FMovieSceneFloatChannel"); \ +static_assert(sizeof(FMovieSceneFloatChannel) == 0x000110, "Wrong size on FMovieSceneFloatChannel"); \ +static_assert(offsetof(FMovieSceneFloatChannel, PreInfinityExtrap) == 0x000050, "Member 'FMovieSceneFloatChannel::PreInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, PostInfinityExtrap) == 0x000051, "Member 'FMovieSceneFloatChannel::PostInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, Times) == 0x000058, "Member 'FMovieSceneFloatChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, Values) == 0x000068, "Member 'FMovieSceneFloatChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, DefaultValue) == 0x000078, "Member 'FMovieSceneFloatChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, bHasDefaultValue) == 0x00007C, "Member 'FMovieSceneFloatChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, KeyHandles) == 0x000080, "Member 'FMovieSceneFloatChannel::KeyHandles' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannel, TickResolution) == 0x000108, "Member 'FMovieSceneFloatChannel::TickResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneIntegerChannel \ +static_assert(alignof(FMovieSceneIntegerChannel) == 0x000008, "Wrong alignment on FMovieSceneIntegerChannel"); \ +static_assert(sizeof(FMovieSceneIntegerChannel) == 0x000100, "Wrong size on FMovieSceneIntegerChannel"); \ +static_assert(offsetof(FMovieSceneIntegerChannel, Times) == 0x000050, "Member 'FMovieSceneIntegerChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneIntegerChannel, DefaultValue) == 0x000060, "Member 'FMovieSceneIntegerChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneIntegerChannel, bHasDefaultValue) == 0x000064, "Member 'FMovieSceneIntegerChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneIntegerChannel, Values) == 0x000068, "Member 'FMovieSceneIntegerChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneIntegerChannel, KeyHandles) == 0x000078, "Member 'FMovieSceneIntegerChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneObjectPathChannelKeyValue \ +static_assert(alignof(FMovieSceneObjectPathChannelKeyValue) == 0x000008, "Wrong alignment on FMovieSceneObjectPathChannelKeyValue"); \ +static_assert(sizeof(FMovieSceneObjectPathChannelKeyValue) == 0x000030, "Wrong size on FMovieSceneObjectPathChannelKeyValue"); \ +static_assert(offsetof(FMovieSceneObjectPathChannelKeyValue, SoftPtr) == 0x000000, "Member 'FMovieSceneObjectPathChannelKeyValue::SoftPtr' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectPathChannelKeyValue, HardPtr) == 0x000028, "Member 'FMovieSceneObjectPathChannelKeyValue::HardPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneObjectPathChannel \ +static_assert(alignof(FMovieSceneObjectPathChannel) == 0x000008, "Wrong alignment on FMovieSceneObjectPathChannel"); \ +static_assert(sizeof(FMovieSceneObjectPathChannel) == 0x000130, "Wrong size on FMovieSceneObjectPathChannel"); \ +static_assert(offsetof(FMovieSceneObjectPathChannel, PropertyClass) == 0x000050, "Member 'FMovieSceneObjectPathChannel::PropertyClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectPathChannel, Times) == 0x000058, "Member 'FMovieSceneObjectPathChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectPathChannel, Values) == 0x000068, "Member 'FMovieSceneObjectPathChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectPathChannel, DefaultValue) == 0x000078, "Member 'FMovieSceneObjectPathChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectPathChannel, KeyHandles) == 0x0000A8, "Member 'FMovieSceneObjectPathChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCompiledSequenceFlagStruct \ +static_assert(alignof(FMovieSceneCompiledSequenceFlagStruct) == 0x000001, "Wrong alignment on FMovieSceneCompiledSequenceFlagStruct"); \ +static_assert(sizeof(FMovieSceneCompiledSequenceFlagStruct) == 0x000001, "Wrong size on FMovieSceneCompiledSequenceFlagStruct"); \ + +#define DUMPER7_ASSERTS_FEasingComponentData \ +static_assert(alignof(FEasingComponentData) == 0x000008, "Wrong alignment on FEasingComponentData"); \ +static_assert(sizeof(FEasingComponentData) == 0x000008, "Wrong size on FEasingComponentData"); \ +static_assert(offsetof(FEasingComponentData, Section) == 0x000000, "Member 'FEasingComponentData::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackInstanceComponent \ +static_assert(alignof(FMovieSceneTrackInstanceComponent) == 0x000008, "Wrong alignment on FMovieSceneTrackInstanceComponent"); \ +static_assert(sizeof(FMovieSceneTrackInstanceComponent) == 0x000010, "Wrong size on FMovieSceneTrackInstanceComponent"); \ +static_assert(offsetof(FMovieSceneTrackInstanceComponent, Owner) == 0x000000, "Member 'FMovieSceneTrackInstanceComponent::Owner' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackInstanceComponent, TrackInstanceClass) == 0x000008, "Member 'FMovieSceneTrackInstanceComponent::TrackInstanceClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationHookComponent \ +static_assert(alignof(FMovieSceneEvaluationHookComponent) == 0x000008, "Wrong alignment on FMovieSceneEvaluationHookComponent"); \ +static_assert(sizeof(FMovieSceneEvaluationHookComponent) == 0x000020, "Wrong size on FMovieSceneEvaluationHookComponent"); \ +static_assert(offsetof(FMovieSceneEvaluationHookComponent, Interface) == 0x000000, "Member 'FMovieSceneEvaluationHookComponent::Interface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTrackInstanceInputComponent \ +static_assert(alignof(FTrackInstanceInputComponent) == 0x000008, "Wrong alignment on FTrackInstanceInputComponent"); \ +static_assert(sizeof(FTrackInstanceInputComponent) == 0x000010, "Wrong size on FTrackInstanceInputComponent"); \ +static_assert(offsetof(FTrackInstanceInputComponent, Section) == 0x000000, "Member 'FTrackInstanceInputComponent::Section' has a wrong offset!"); \ +static_assert(offsetof(FTrackInstanceInputComponent, OutputIndex) == 0x000008, "Member 'FTrackInstanceInputComponent::OutputIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEntitySystemGraphNodes \ +static_assert(alignof(FMovieSceneEntitySystemGraphNodes) == 0x000008, "Wrong alignment on FMovieSceneEntitySystemGraphNodes"); \ +static_assert(sizeof(FMovieSceneEntitySystemGraphNodes) == 0x000038, "Wrong size on FMovieSceneEntitySystemGraphNodes"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEntitySystemGraph \ +static_assert(alignof(FMovieSceneEntitySystemGraph) == 0x000008, "Wrong alignment on FMovieSceneEntitySystemGraph"); \ +static_assert(sizeof(FMovieSceneEntitySystemGraph) == 0x000190, "Wrong size on FMovieSceneEntitySystemGraph"); \ +static_assert(offsetof(FMovieSceneEntitySystemGraph, Nodes) == 0x0000B8, "Member 'FMovieSceneEntitySystemGraph::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationHookEvent \ +static_assert(alignof(FMovieSceneEvaluationHookEvent) == 0x000008, "Wrong alignment on FMovieSceneEvaluationHookEvent"); \ +static_assert(sizeof(FMovieSceneEvaluationHookEvent) == 0x000038, "Wrong size on FMovieSceneEvaluationHookEvent"); \ +static_assert(offsetof(FMovieSceneEvaluationHookEvent, Hook) == 0x000000, "Member 'FMovieSceneEvaluationHookEvent::Hook' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationHookEventContainer \ +static_assert(alignof(FMovieSceneEvaluationHookEventContainer) == 0x000008, "Wrong alignment on FMovieSceneEvaluationHookEventContainer"); \ +static_assert(sizeof(FMovieSceneEvaluationHookEventContainer) == 0x000010, "Wrong size on FMovieSceneEvaluationHookEventContainer"); \ +static_assert(offsetof(FMovieSceneEvaluationHookEventContainer, Events) == 0x000000, "Member 'FMovieSceneEvaluationHookEventContainer::Events' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationInstanceKey \ +static_assert(alignof(FMovieSceneEvaluationInstanceKey) == 0x000002, "Wrong alignment on FMovieSceneEvaluationInstanceKey"); \ +static_assert(sizeof(FMovieSceneEvaluationInstanceKey) == 0x000004, "Wrong size on FMovieSceneEvaluationInstanceKey"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackInstanceInput \ +static_assert(alignof(FMovieSceneTrackInstanceInput) == 0x000008, "Wrong alignment on FMovieSceneTrackInstanceInput"); \ +static_assert(sizeof(FMovieSceneTrackInstanceInput) == 0x000010, "Wrong size on FMovieSceneTrackInstanceInput"); \ +static_assert(offsetof(FMovieSceneTrackInstanceInput, Section) == 0x000000, "Member 'FMovieSceneTrackInstanceInput::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackInstanceEntry \ +static_assert(alignof(FMovieSceneTrackInstanceEntry) == 0x000008, "Wrong alignment on FMovieSceneTrackInstanceEntry"); \ +static_assert(sizeof(FMovieSceneTrackInstanceEntry) == 0x000010, "Wrong size on FMovieSceneTrackInstanceEntry"); \ +static_assert(offsetof(FMovieSceneTrackInstanceEntry, BoundObject) == 0x000000, "Member 'FMovieSceneTrackInstanceEntry::BoundObject' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackInstanceEntry, TrackInstance) == 0x000008, "Member 'FMovieSceneTrackInstanceEntry::TrackInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOptionalMovieSceneBlendType \ +static_assert(alignof(FOptionalMovieSceneBlendType) == 0x000001, "Wrong alignment on FOptionalMovieSceneBlendType"); \ +static_assert(sizeof(FOptionalMovieSceneBlendType) == 0x000002, "Wrong size on FOptionalMovieSceneBlendType"); \ +static_assert(offsetof(FOptionalMovieSceneBlendType, BlendType) == 0x000000, "Member 'FOptionalMovieSceneBlendType::BlendType' has a wrong offset!"); \ +static_assert(offsetof(FOptionalMovieSceneBlendType, bIsValid) == 0x000001, "Member 'FOptionalMovieSceneBlendType::bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvalTemplate \ +static_assert(alignof(FMovieSceneEvalTemplate) == 0x000008, "Wrong alignment on FMovieSceneEvalTemplate"); \ +static_assert(sizeof(FMovieSceneEvalTemplate) == 0x000020, "Wrong size on FMovieSceneEvalTemplate"); \ +static_assert(offsetof(FMovieSceneEvalTemplate, CompletionMode) == 0x000010, "Member 'FMovieSceneEvalTemplate::CompletionMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvalTemplate, SourceSectionPtr) == 0x000014, "Member 'FMovieSceneEvalTemplate::SourceSectionPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvalTemplatePtr \ +static_assert(alignof(FMovieSceneEvalTemplatePtr) == 0x000008, "Wrong alignment on FMovieSceneEvalTemplatePtr"); \ +static_assert(sizeof(FMovieSceneEvalTemplatePtr) == 0x000088, "Wrong size on FMovieSceneEvalTemplatePtr"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationFieldSegmentPtr \ +static_assert(alignof(FMovieSceneEvaluationFieldSegmentPtr) == 0x000004, "Wrong alignment on FMovieSceneEvaluationFieldSegmentPtr"); \ +static_assert(sizeof(FMovieSceneEvaluationFieldSegmentPtr) == 0x00000C, "Wrong size on FMovieSceneEvaluationFieldSegmentPtr"); \ +static_assert(offsetof(FMovieSceneEvaluationFieldSegmentPtr, SegmentID) == 0x000008, "Member 'FMovieSceneEvaluationFieldSegmentPtr::SegmentID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFrameRange \ +static_assert(alignof(FMovieSceneFrameRange) == 0x000004, "Wrong alignment on FMovieSceneFrameRange"); \ +static_assert(sizeof(FMovieSceneFrameRange) == 0x000010, "Wrong size on FMovieSceneFrameRange"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationField \ +static_assert(alignof(FMovieSceneEvaluationField) == 0x000008, "Wrong alignment on FMovieSceneEvaluationField"); \ +static_assert(sizeof(FMovieSceneEvaluationField) == 0x000030, "Wrong size on FMovieSceneEvaluationField"); \ +static_assert(offsetof(FMovieSceneEvaluationField, Ranges) == 0x000000, "Member 'FMovieSceneEvaluationField::Ranges' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationField, Groups) == 0x000010, "Member 'FMovieSceneEvaluationField::Groups' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationField, MetaData) == 0x000020, "Member 'FMovieSceneEvaluationField::MetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTemplateGenerationLedger \ +static_assert(alignof(FMovieSceneTemplateGenerationLedger) == 0x000008, "Wrong alignment on FMovieSceneTemplateGenerationLedger"); \ +static_assert(sizeof(FMovieSceneTemplateGenerationLedger) == 0x0000A8, "Wrong size on FMovieSceneTemplateGenerationLedger"); \ +static_assert(offsetof(FMovieSceneTemplateGenerationLedger, LastTrackIdentifier) == 0x000000, "Member 'FMovieSceneTemplateGenerationLedger::LastTrackIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTemplateGenerationLedger, TrackSignatureToTrackIdentifier) == 0x000008, "Member 'FMovieSceneTemplateGenerationLedger::TrackSignatureToTrackIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTemplateGenerationLedger, SubSectionRanges) == 0x000058, "Member 'FMovieSceneTemplateGenerationLedger::SubSectionRanges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSubSectionData \ +static_assert(alignof(FMovieSceneSubSectionData) == 0x000004, "Wrong alignment on FMovieSceneSubSectionData"); \ +static_assert(sizeof(FMovieSceneSubSectionData) == 0x00001C, "Wrong size on FMovieSceneSubSectionData"); \ +static_assert(offsetof(FMovieSceneSubSectionData, Section) == 0x000000, "Member 'FMovieSceneSubSectionData::Section' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSectionData, ObjectBindingID) == 0x000008, "Member 'FMovieSceneSubSectionData::ObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSectionData, Flags) == 0x000018, "Member 'FMovieSceneSubSectionData::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationTemplateSerialNumber \ +static_assert(alignof(FMovieSceneEvaluationTemplateSerialNumber) == 0x000004, "Wrong alignment on FMovieSceneEvaluationTemplateSerialNumber"); \ +static_assert(sizeof(FMovieSceneEvaluationTemplateSerialNumber) == 0x000004, "Wrong size on FMovieSceneEvaluationTemplateSerialNumber"); \ +static_assert(offsetof(FMovieSceneEvaluationTemplateSerialNumber, Value) == 0x000000, "Member 'FMovieSceneEvaluationTemplateSerialNumber::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackImplementationPtr \ +static_assert(alignof(FMovieSceneTrackImplementationPtr) == 0x000008, "Wrong alignment on FMovieSceneTrackImplementationPtr"); \ +static_assert(sizeof(FMovieSceneTrackImplementationPtr) == 0x000038, "Wrong size on FMovieSceneTrackImplementationPtr"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationTrack \ +static_assert(alignof(FMovieSceneEvaluationTrack) == 0x000008, "Wrong alignment on FMovieSceneEvaluationTrack"); \ +static_assert(sizeof(FMovieSceneEvaluationTrack) == 0x000078, "Wrong size on FMovieSceneEvaluationTrack"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, ObjectBindingID) == 0x000000, "Member 'FMovieSceneEvaluationTrack::ObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, EvaluationPriority) == 0x000010, "Member 'FMovieSceneEvaluationTrack::EvaluationPriority' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, EvaluationMethod) == 0x000012, "Member 'FMovieSceneEvaluationTrack::EvaluationMethod' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, SourceTrack) == 0x000014, "Member 'FMovieSceneEvaluationTrack::SourceTrack' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, ChildTemplates) == 0x000020, "Member 'FMovieSceneEvaluationTrack::ChildTemplates' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, TrackTemplate) == 0x000030, "Member 'FMovieSceneEvaluationTrack::TrackTemplate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTrack, EvaluationGroup) == 0x000068, "Member 'FMovieSceneEvaluationTrack::EvaluationGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvaluationTemplate \ +static_assert(alignof(FMovieSceneEvaluationTemplate) == 0x000008, "Wrong alignment on FMovieSceneEvaluationTemplate"); \ +static_assert(sizeof(FMovieSceneEvaluationTemplate) == 0x000160, "Wrong size on FMovieSceneEvaluationTemplate"); \ +static_assert(offsetof(FMovieSceneEvaluationTemplate, Tracks) == 0x000000, "Member 'FMovieSceneEvaluationTemplate::Tracks' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTemplate, SequenceSignature) == 0x0000A0, "Member 'FMovieSceneEvaluationTemplate::SequenceSignature' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTemplate, TemplateSerialNumber) == 0x0000B0, "Member 'FMovieSceneEvaluationTemplate::TemplateSerialNumber' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEvaluationTemplate, TemplateLedger) == 0x0000B8, "Member 'FMovieSceneEvaluationTemplate::TemplateLedger' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneRootEvaluationTemplateInstance \ +static_assert(alignof(FMovieSceneRootEvaluationTemplateInstance) == 0x000008, "Wrong alignment on FMovieSceneRootEvaluationTemplateInstance"); \ +static_assert(sizeof(FMovieSceneRootEvaluationTemplateInstance) == 0x000088, "Wrong size on FMovieSceneRootEvaluationTemplateInstance"); \ +static_assert(offsetof(FMovieSceneRootEvaluationTemplateInstance, WeakRootSequence) == 0x000000, "Member 'FMovieSceneRootEvaluationTemplateInstance::WeakRootSequence' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneRootEvaluationTemplateInstance, CompiledDataManager) == 0x000008, "Member 'FMovieSceneRootEvaluationTemplateInstance::CompiledDataManager' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneRootEvaluationTemplateInstance, EntitySystemLinker) == 0x000028, "Member 'FMovieSceneRootEvaluationTemplateInstance::EntitySystemLinker' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneRootEvaluationTemplateInstance, DirectorInstances) == 0x000030, "Member 'FMovieSceneRootEvaluationTemplateInstance::DirectorInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScenePropertySectionData \ +static_assert(alignof(FMovieScenePropertySectionData) == 0x000008, "Wrong alignment on FMovieScenePropertySectionData"); \ +static_assert(sizeof(FMovieScenePropertySectionData) == 0x000018, "Wrong size on FMovieScenePropertySectionData"); \ +static_assert(offsetof(FMovieScenePropertySectionData, PropertyName) == 0x000000, "Member 'FMovieScenePropertySectionData::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePropertySectionData, PropertyPath) == 0x000008, "Member 'FMovieScenePropertySectionData::PropertyPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScenePropertySectionTemplate \ +static_assert(alignof(FMovieScenePropertySectionTemplate) == 0x000008, "Wrong alignment on FMovieScenePropertySectionTemplate"); \ +static_assert(sizeof(FMovieScenePropertySectionTemplate) == 0x000038, "Wrong size on FMovieScenePropertySectionTemplate"); \ +static_assert(offsetof(FMovieScenePropertySectionTemplate, PropertyData) == 0x000020, "Member 'FMovieScenePropertySectionTemplate::PropertyData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTimeWarping \ +static_assert(alignof(FMovieSceneTimeWarping) == 0x000004, "Wrong alignment on FMovieSceneTimeWarping"); \ +static_assert(sizeof(FMovieSceneTimeWarping) == 0x000008, "Wrong size on FMovieSceneTimeWarping"); \ +static_assert(offsetof(FMovieSceneTimeWarping, Start) == 0x000000, "Member 'FMovieSceneTimeWarping::Start' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTimeWarping, End) == 0x000004, "Member 'FMovieSceneTimeWarping::End' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNestedSequenceTransform \ +static_assert(alignof(FMovieSceneNestedSequenceTransform) == 0x000004, "Wrong alignment on FMovieSceneNestedSequenceTransform"); \ +static_assert(sizeof(FMovieSceneNestedSequenceTransform) == 0x000014, "Wrong size on FMovieSceneNestedSequenceTransform"); \ +static_assert(offsetof(FMovieSceneNestedSequenceTransform, LinearTransform) == 0x000000, "Member 'FMovieSceneNestedSequenceTransform::LinearTransform' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNestedSequenceTransform, Warping) == 0x00000C, "Member 'FMovieSceneNestedSequenceTransform::Warping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceTransform \ +static_assert(alignof(FMovieSceneSequenceTransform) == 0x000008, "Wrong alignment on FMovieSceneSequenceTransform"); \ +static_assert(sizeof(FMovieSceneSequenceTransform) == 0x000020, "Wrong size on FMovieSceneSequenceTransform"); \ +static_assert(offsetof(FMovieSceneSequenceTransform, LinearTransform) == 0x000000, "Member 'FMovieSceneSequenceTransform::LinearTransform' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceTransform, NestedTransforms) == 0x000010, "Member 'FMovieSceneSequenceTransform::NestedTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceInstanceDataPtr \ +static_assert(alignof(FMovieSceneSequenceInstanceDataPtr) == 0x000008, "Wrong alignment on FMovieSceneSequenceInstanceDataPtr"); \ +static_assert(sizeof(FMovieSceneSequenceInstanceDataPtr) == 0x000018, "Wrong size on FMovieSceneSequenceInstanceDataPtr"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSubSequenceData \ +static_assert(alignof(FMovieSceneSubSequenceData) == 0x000008, "Wrong alignment on FMovieSceneSubSequenceData"); \ +static_assert(sizeof(FMovieSceneSubSequenceData) == 0x000118, "Wrong size on FMovieSceneSubSequenceData"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, Sequence) == 0x000000, "Member 'FMovieSceneSubSequenceData::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, OuterToInnerTransform) == 0x000020, "Member 'FMovieSceneSubSequenceData::OuterToInnerTransform' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, RootToSequenceTransform) == 0x000040, "Member 'FMovieSceneSubSequenceData::RootToSequenceTransform' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, TickResolution) == 0x000060, "Member 'FMovieSceneSubSequenceData::TickResolution' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, DeterministicSequenceID) == 0x000068, "Member 'FMovieSceneSubSequenceData::DeterministicSequenceID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, ParentPlayRange) == 0x00006C, "Member 'FMovieSceneSubSequenceData::ParentPlayRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, ParentStartFrameOffset) == 0x00007C, "Member 'FMovieSceneSubSequenceData::ParentStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, ParentEndFrameOffset) == 0x000080, "Member 'FMovieSceneSubSequenceData::ParentEndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, ParentFirstLoopStartFrameOffset) == 0x000084, "Member 'FMovieSceneSubSequenceData::ParentFirstLoopStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, bCanLoop) == 0x000088, "Member 'FMovieSceneSubSequenceData::bCanLoop' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, PlayRange) == 0x00008C, "Member 'FMovieSceneSubSequenceData::PlayRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, FullPlayRange) == 0x00009C, "Member 'FMovieSceneSubSequenceData::FullPlayRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, UnwarpedPlayRange) == 0x0000AC, "Member 'FMovieSceneSubSequenceData::UnwarpedPlayRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, PreRollRange) == 0x0000BC, "Member 'FMovieSceneSubSequenceData::PreRollRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, PostRollRange) == 0x0000CC, "Member 'FMovieSceneSubSequenceData::PostRollRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, HierarchicalBias) == 0x0000DC, "Member 'FMovieSceneSubSequenceData::HierarchicalBias' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, AccumulatedFlags) == 0x0000E0, "Member 'FMovieSceneSubSequenceData::AccumulatedFlags' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, InstanceData) == 0x0000E8, "Member 'FMovieSceneSubSequenceData::InstanceData' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSubSequenceData, SubSectionSignature) == 0x000108, "Member 'FMovieSceneSubSequenceData::SubSectionSignature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceHierarchyNode \ +static_assert(alignof(FMovieSceneSequenceHierarchyNode) == 0x000008, "Wrong alignment on FMovieSceneSequenceHierarchyNode"); \ +static_assert(sizeof(FMovieSceneSequenceHierarchyNode) == 0x000018, "Wrong size on FMovieSceneSequenceHierarchyNode"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchyNode, ParentID) == 0x000000, "Member 'FMovieSceneSequenceHierarchyNode::ParentID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchyNode, Children) == 0x000008, "Member 'FMovieSceneSequenceHierarchyNode::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSubSequenceTreeEntry \ +static_assert(alignof(FMovieSceneSubSequenceTreeEntry) == 0x000008, "Wrong alignment on FMovieSceneSubSequenceTreeEntry"); \ +static_assert(sizeof(FMovieSceneSubSequenceTreeEntry) == 0x000018, "Wrong size on FMovieSceneSubSequenceTreeEntry"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSubSequenceTree \ +static_assert(alignof(FMovieSceneSubSequenceTree) == 0x000008, "Wrong alignment on FMovieSceneSubSequenceTree"); \ +static_assert(sizeof(FMovieSceneSubSequenceTree) == 0x000060, "Wrong size on FMovieSceneSubSequenceTree"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceHierarchy \ +static_assert(alignof(FMovieSceneSequenceHierarchy) == 0x000008, "Wrong alignment on FMovieSceneSequenceHierarchy"); \ +static_assert(sizeof(FMovieSceneSequenceHierarchy) == 0x000118, "Wrong size on FMovieSceneSequenceHierarchy"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchy, RootNode) == 0x000000, "Member 'FMovieSceneSequenceHierarchy::RootNode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchy, Tree) == 0x000018, "Member 'FMovieSceneSequenceHierarchy::Tree' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchy, SubSequences) == 0x000078, "Member 'FMovieSceneSequenceHierarchy::SubSequences' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceHierarchy, Hierarchy) == 0x0000C8, "Member 'FMovieSceneSequenceHierarchy::Hierarchy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneWarpCounter \ +static_assert(alignof(FMovieSceneWarpCounter) == 0x000008, "Wrong alignment on FMovieSceneWarpCounter"); \ +static_assert(sizeof(FMovieSceneWarpCounter) == 0x000010, "Wrong size on FMovieSceneWarpCounter"); \ +static_assert(offsetof(FMovieSceneWarpCounter, WarpCounts) == 0x000000, "Member 'FMovieSceneWarpCounter::WarpCounts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackImplementation \ +static_assert(alignof(FMovieSceneTrackImplementation) == 0x000008, "Wrong alignment on FMovieSceneTrackImplementation"); \ +static_assert(sizeof(FMovieSceneTrackImplementation) == 0x000010, "Wrong size on FMovieSceneTrackImplementation"); \ + +#define DUMPER7_ASSERTS_FMovieSceneExpansionState \ +static_assert(alignof(FMovieSceneExpansionState) == 0x000001, "Wrong alignment on FMovieSceneExpansionState"); \ +static_assert(sizeof(FMovieSceneExpansionState) == 0x000001, "Wrong size on FMovieSceneExpansionState"); \ +static_assert(offsetof(FMovieSceneExpansionState, bExpanded) == 0x000000, "Member 'FMovieSceneExpansionState::bExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEditorData \ +static_assert(alignof(FMovieSceneEditorData) == 0x000008, "Wrong alignment on FMovieSceneEditorData"); \ +static_assert(sizeof(FMovieSceneEditorData) == 0x0000F0, "Wrong size on FMovieSceneEditorData"); \ +static_assert(offsetof(FMovieSceneEditorData, ExpansionStates) == 0x000000, "Member 'FMovieSceneEditorData::ExpansionStates' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, PinnedNodes) == 0x000050, "Member 'FMovieSceneEditorData::PinnedNodes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, ViewStart) == 0x000060, "Member 'FMovieSceneEditorData::ViewStart' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, ViewEnd) == 0x000068, "Member 'FMovieSceneEditorData::ViewEnd' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, WorkStart) == 0x000070, "Member 'FMovieSceneEditorData::WorkStart' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, WorkEnd) == 0x000078, "Member 'FMovieSceneEditorData::WorkEnd' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, MarkedFrames) == 0x000080, "Member 'FMovieSceneEditorData::MarkedFrames' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, WorkingRange) == 0x0000D0, "Member 'FMovieSceneEditorData::WorkingRange' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEditorData, ViewRange) == 0x0000E0, "Member 'FMovieSceneEditorData::ViewRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackLabels \ +static_assert(alignof(FMovieSceneTrackLabels) == 0x000008, "Wrong alignment on FMovieSceneTrackLabels"); \ +static_assert(sizeof(FMovieSceneTrackLabels) == 0x000010, "Wrong size on FMovieSceneTrackLabels"); \ +static_assert(offsetof(FMovieSceneTrackLabels, Strings) == 0x000000, "Member 'FMovieSceneTrackLabels::Strings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneObjectBindingID \ +static_assert(alignof(FMovieSceneObjectBindingID) == 0x000004, "Wrong alignment on FMovieSceneObjectBindingID"); \ +static_assert(sizeof(FMovieSceneObjectBindingID) == 0x000018, "Wrong size on FMovieSceneObjectBindingID"); \ +static_assert(offsetof(FMovieSceneObjectBindingID, Guid) == 0x000000, "Member 'FMovieSceneObjectBindingID::Guid' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectBindingID, SequenceID) == 0x000010, "Member 'FMovieSceneObjectBindingID::SequenceID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneObjectBindingID, ResolveParentIndex) == 0x000014, "Member 'FMovieSceneObjectBindingID::ResolveParentIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneObjectBindingIDs \ +static_assert(alignof(FMovieSceneObjectBindingIDs) == 0x000008, "Wrong alignment on FMovieSceneObjectBindingIDs"); \ +static_assert(sizeof(FMovieSceneObjectBindingIDs) == 0x000010, "Wrong size on FMovieSceneObjectBindingIDs"); \ +static_assert(offsetof(FMovieSceneObjectBindingIDs, IDs) == 0x000000, "Member 'FMovieSceneObjectBindingIDs::IDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSectionGroup \ +static_assert(alignof(FMovieSceneSectionGroup) == 0x000008, "Wrong alignment on FMovieSceneSectionGroup"); \ +static_assert(sizeof(FMovieSceneSectionGroup) == 0x000010, "Wrong size on FMovieSceneSectionGroup"); \ +static_assert(offsetof(FMovieSceneSectionGroup, Sections) == 0x000000, "Member 'FMovieSceneSectionGroup::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneMarkedFrame \ +static_assert(alignof(FMovieSceneMarkedFrame) == 0x000008, "Wrong alignment on FMovieSceneMarkedFrame"); \ +static_assert(sizeof(FMovieSceneMarkedFrame) == 0x000020, "Wrong size on FMovieSceneMarkedFrame"); \ +static_assert(offsetof(FMovieSceneMarkedFrame, FrameNumber) == 0x000000, "Member 'FMovieSceneMarkedFrame::FrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMarkedFrame, Label) == 0x000008, "Member 'FMovieSceneMarkedFrame::Label' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMarkedFrame, bIsDeterminismFence) == 0x000018, "Member 'FMovieSceneMarkedFrame::bIsDeterminismFence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBinding \ +static_assert(alignof(FMovieSceneBinding) == 0x000008, "Wrong alignment on FMovieSceneBinding"); \ +static_assert(sizeof(FMovieSceneBinding) == 0x000030, "Wrong size on FMovieSceneBinding"); \ +static_assert(offsetof(FMovieSceneBinding, ObjectGuid) == 0x000000, "Member 'FMovieSceneBinding::ObjectGuid' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBinding, BindingName) == 0x000010, "Member 'FMovieSceneBinding::BindingName' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBinding, Tracks) == 0x000020, "Member 'FMovieSceneBinding::Tracks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBindingOverrideData \ +static_assert(alignof(FMovieSceneBindingOverrideData) == 0x000008, "Wrong alignment on FMovieSceneBindingOverrideData"); \ +static_assert(sizeof(FMovieSceneBindingOverrideData) == 0x000048, "Wrong size on FMovieSceneBindingOverrideData"); \ +static_assert(offsetof(FMovieSceneBindingOverrideData, ObjectBindingID) == 0x000000, "Member 'FMovieSceneBindingOverrideData::ObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBindingOverrideData, Object) == 0x000018, "Member 'FMovieSceneBindingOverrideData::Object' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBindingOverrideData, bOverridesDefault) == 0x000040, "Member 'FMovieSceneBindingOverrideData::bOverridesDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBindingProxy \ +static_assert(alignof(FMovieSceneBindingProxy) == 0x000008, "Wrong alignment on FMovieSceneBindingProxy"); \ +static_assert(sizeof(FMovieSceneBindingProxy) == 0x000018, "Wrong size on FMovieSceneBindingProxy"); \ +static_assert(offsetof(FMovieSceneBindingProxy, BindingID) == 0x000000, "Member 'FMovieSceneBindingProxy::BindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBindingProxy, Sequence) == 0x000010, "Member 'FMovieSceneBindingProxy::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDynamicBindingPayloadVariable \ +static_assert(alignof(FMovieSceneDynamicBindingPayloadVariable) == 0x000008, "Wrong alignment on FMovieSceneDynamicBindingPayloadVariable"); \ +static_assert(sizeof(FMovieSceneDynamicBindingPayloadVariable) == 0x000010, "Wrong size on FMovieSceneDynamicBindingPayloadVariable"); \ +static_assert(offsetof(FMovieSceneDynamicBindingPayloadVariable, Value) == 0x000000, "Member 'FMovieSceneDynamicBindingPayloadVariable::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDynamicBindingResolveParams \ +static_assert(alignof(FMovieSceneDynamicBindingResolveParams) == 0x000008, "Wrong alignment on FMovieSceneDynamicBindingResolveParams"); \ +static_assert(sizeof(FMovieSceneDynamicBindingResolveParams) == 0x000020, "Wrong size on FMovieSceneDynamicBindingResolveParams"); \ +static_assert(offsetof(FMovieSceneDynamicBindingResolveParams, Sequence) == 0x000000, "Member 'FMovieSceneDynamicBindingResolveParams::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDynamicBindingResolveParams, ObjectBindingID) == 0x000008, "Member 'FMovieSceneDynamicBindingResolveParams::ObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDynamicBindingResolveParams, RootSequence) == 0x000018, "Member 'FMovieSceneDynamicBindingResolveParams::RootSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDynamicBindingResolveResult \ +static_assert(alignof(FMovieSceneDynamicBindingResolveResult) == 0x000008, "Wrong alignment on FMovieSceneDynamicBindingResolveResult"); \ +static_assert(sizeof(FMovieSceneDynamicBindingResolveResult) == 0x000010, "Wrong size on FMovieSceneDynamicBindingResolveResult"); \ +static_assert(offsetof(FMovieSceneDynamicBindingResolveResult, Object) == 0x000000, "Member 'FMovieSceneDynamicBindingResolveResult::Object' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneDynamicBindingResolveResult, bIsPossessedObject) == 0x000008, "Member 'FMovieSceneDynamicBindingResolveResult::bIsPossessedObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDynamicBindingContainer \ +static_assert(alignof(FMovieSceneDynamicBindingContainer) == 0x000008, "Wrong alignment on FMovieSceneDynamicBindingContainer"); \ +static_assert(sizeof(FMovieSceneDynamicBindingContainer) == 0x000028, "Wrong size on FMovieSceneDynamicBindingContainer"); \ +static_assert(offsetof(FMovieSceneDynamicBindingContainer, DynamicBinding) == 0x000000, "Member 'FMovieSceneDynamicBindingContainer::DynamicBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScenePossessable \ +static_assert(alignof(FMovieScenePossessable) == 0x000008, "Wrong alignment on FMovieScenePossessable"); \ +static_assert(sizeof(FMovieScenePossessable) == 0x000080, "Wrong size on FMovieScenePossessable"); \ +static_assert(offsetof(FMovieScenePossessable, Tags) == 0x000000, "Member 'FMovieScenePossessable::Tags' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePossessable, DynamicBinding) == 0x000010, "Member 'FMovieScenePossessable::DynamicBinding' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePossessable, Guid) == 0x000038, "Member 'FMovieScenePossessable::Guid' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePossessable, Name) == 0x000048, "Member 'FMovieScenePossessable::Name' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePossessable, ParentGuid) == 0x000058, "Member 'FMovieScenePossessable::ParentGuid' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePossessable, SpawnableObjectBindingID) == 0x000068, "Member 'FMovieScenePossessable::SpawnableObjectBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSectionEvalOptions \ +static_assert(alignof(FMovieSceneSectionEvalOptions) == 0x000001, "Wrong alignment on FMovieSceneSectionEvalOptions"); \ +static_assert(sizeof(FMovieSceneSectionEvalOptions) == 0x000002, "Wrong size on FMovieSceneSectionEvalOptions"); \ +static_assert(offsetof(FMovieSceneSectionEvalOptions, bCanEditCompletionMode) == 0x000000, "Member 'FMovieSceneSectionEvalOptions::bCanEditCompletionMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSectionEvalOptions, CompletionMode) == 0x000001, "Member 'FMovieSceneSectionEvalOptions::CompletionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTimecodeSource \ +static_assert(alignof(FMovieSceneTimecodeSource) == 0x000004, "Wrong alignment on FMovieSceneTimecodeSource"); \ +static_assert(sizeof(FMovieSceneTimecodeSource) == 0x000014, "Wrong size on FMovieSceneTimecodeSource"); \ +static_assert(offsetof(FMovieSceneTimecodeSource, Timecode) == 0x000000, "Member 'FMovieSceneTimecodeSource::Timecode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceInstanceData \ +static_assert(alignof(FMovieSceneSequenceInstanceData) == 0x000008, "Wrong alignment on FMovieSceneSequenceInstanceData"); \ +static_assert(sizeof(FMovieSceneSequenceInstanceData) == 0x000008, "Wrong size on FMovieSceneSequenceInstanceData"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequenceReplProperties \ +static_assert(alignof(FMovieSceneSequenceReplProperties) == 0x000004, "Wrong alignment on FMovieSceneSequenceReplProperties"); \ +static_assert(sizeof(FMovieSceneSequenceReplProperties) == 0x000014, "Wrong size on FMovieSceneSequenceReplProperties"); \ +static_assert(offsetof(FMovieSceneSequenceReplProperties, LastKnownPosition) == 0x000000, "Member 'FMovieSceneSequenceReplProperties::LastKnownPosition' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceReplProperties, LastKnownStatus) == 0x000008, "Member 'FMovieSceneSequenceReplProperties::LastKnownStatus' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceReplProperties, LastKnownNumLoops) == 0x00000C, "Member 'FMovieSceneSequenceReplProperties::LastKnownNumLoops' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequenceReplProperties, LastKnownSerialNumber) == 0x000010, "Member 'FMovieSceneSequenceReplProperties::LastKnownSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequencePlaybackParams \ +static_assert(alignof(FMovieSceneSequencePlaybackParams) == 0x000008, "Wrong alignment on FMovieSceneSequencePlaybackParams"); \ +static_assert(sizeof(FMovieSceneSequencePlaybackParams) == 0x000028, "Wrong size on FMovieSceneSequencePlaybackParams"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, Frame) == 0x000000, "Member 'FMovieSceneSequencePlaybackParams::Frame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, Time) == 0x000008, "Member 'FMovieSceneSequencePlaybackParams::Time' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, MarkedFrame) == 0x000010, "Member 'FMovieSceneSequencePlaybackParams::MarkedFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, PositionType) == 0x000020, "Member 'FMovieSceneSequencePlaybackParams::PositionType' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, UpdateMethod) == 0x000021, "Member 'FMovieSceneSequencePlaybackParams::UpdateMethod' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSequencePlaybackParams, bHasJumped) == 0x000022, "Member 'FMovieSceneSequencePlaybackParams::bHasJumped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSequencePlayToParams \ +static_assert(alignof(FMovieSceneSequencePlayToParams) == 0x000001, "Wrong alignment on FMovieSceneSequencePlayToParams"); \ +static_assert(sizeof(FMovieSceneSequencePlayToParams) == 0x000001, "Wrong size on FMovieSceneSequencePlayToParams"); \ +static_assert(offsetof(FMovieSceneSequencePlayToParams, bExclusive) == 0x000000, "Member 'FMovieSceneSequencePlayToParams::bExclusive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSpawnable \ +static_assert(alignof(FMovieSceneSpawnable) == 0x000010, "Wrong alignment on FMovieSceneSpawnable"); \ +static_assert(sizeof(FMovieSceneSpawnable) == 0x0000F0, "Wrong size on FMovieSceneSpawnable"); \ +static_assert(offsetof(FMovieSceneSpawnable, SpawnTransform) == 0x000000, "Member 'FMovieSceneSpawnable::SpawnTransform' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, Tags) == 0x000060, "Member 'FMovieSceneSpawnable::Tags' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, bContinuouslyRespawn) == 0x000070, "Member 'FMovieSceneSpawnable::bContinuouslyRespawn' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, bNetAddressableName) == 0x000071, "Member 'FMovieSceneSpawnable::bNetAddressableName' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, DynamicBinding) == 0x000078, "Member 'FMovieSceneSpawnable::DynamicBinding' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, Guid) == 0x0000A0, "Member 'FMovieSceneSpawnable::Guid' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, Name) == 0x0000B0, "Member 'FMovieSceneSpawnable::Name' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, ObjectTemplate) == 0x0000C0, "Member 'FMovieSceneSpawnable::ObjectTemplate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, ChildPossessables) == 0x0000C8, "Member 'FMovieSceneSpawnable::ChildPossessables' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, Ownership) == 0x0000D8, "Member 'FMovieSceneSpawnable::Ownership' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSpawnable, LevelName) == 0x0000DC, "Member 'FMovieSceneSpawnable::LevelName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackEvalOptions \ +static_assert(alignof(FMovieSceneTrackEvalOptions) == 0x000004, "Wrong alignment on FMovieSceneTrackEvalOptions"); \ +static_assert(sizeof(FMovieSceneTrackEvalOptions) == 0x000004, "Wrong size on FMovieSceneTrackEvalOptions"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackDisplayOptions \ +static_assert(alignof(FMovieSceneTrackDisplayOptions) == 0x000004, "Wrong alignment on FMovieSceneTrackDisplayOptions"); \ +static_assert(sizeof(FMovieSceneTrackDisplayOptions) == 0x000004, "Wrong size on FMovieSceneTrackDisplayOptions"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackEvaluationFieldEntry \ +static_assert(alignof(FMovieSceneTrackEvaluationFieldEntry) == 0x000008, "Wrong alignment on FMovieSceneTrackEvaluationFieldEntry"); \ +static_assert(sizeof(FMovieSceneTrackEvaluationFieldEntry) == 0x000020, "Wrong size on FMovieSceneTrackEvaluationFieldEntry"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationFieldEntry, Section) == 0x000000, "Member 'FMovieSceneTrackEvaluationFieldEntry::Section' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationFieldEntry, Range) == 0x000008, "Member 'FMovieSceneTrackEvaluationFieldEntry::Range' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationFieldEntry, ForcedTime) == 0x000018, "Member 'FMovieSceneTrackEvaluationFieldEntry::ForcedTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationFieldEntry, Flags) == 0x00001C, "Member 'FMovieSceneTrackEvaluationFieldEntry::Flags' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationFieldEntry, LegacySortOrder) == 0x00001E, "Member 'FMovieSceneTrackEvaluationFieldEntry::LegacySortOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTrackEvaluationField \ +static_assert(alignof(FMovieSceneTrackEvaluationField) == 0x000008, "Wrong alignment on FMovieSceneTrackEvaluationField"); \ +static_assert(sizeof(FMovieSceneTrackEvaluationField) == 0x000010, "Wrong size on FMovieSceneTrackEvaluationField"); \ +static_assert(offsetof(FMovieSceneTrackEvaluationField, Entries) == 0x000000, "Member 'FMovieSceneTrackEvaluationField::Entries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTestMovieSceneEvalTemplate \ +static_assert(alignof(FTestMovieSceneEvalTemplate) == 0x000008, "Wrong alignment on FTestMovieSceneEvalTemplate"); \ +static_assert(sizeof(FTestMovieSceneEvalTemplate) == 0x000020, "Wrong size on FTestMovieSceneEvalTemplate"); \ + +#define DUMPER7_ASSERTS_IMovieSceneBlenderSystemSupport \ +static_assert(alignof(IMovieSceneBlenderSystemSupport) == 0x000001, "Wrong alignment on IMovieSceneBlenderSystemSupport"); \ +static_assert(sizeof(IMovieSceneBlenderSystemSupport) == 0x000001, "Wrong size on IMovieSceneBlenderSystemSupport"); \ + +#define DUMPER7_ASSERTS_MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer \ +static_assert(alignof(MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer) == 0x000008, "Wrong alignment on MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer"); \ +static_assert(sizeof(MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer) == 0x000010, "Wrong size on MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer"); \ +static_assert(offsetof(MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer, ResolvedObject) == 0x000000, "Member 'MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer::ResolvedObject' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer, ReturnValue) == 0x000008, "Member 'MovieSceneBoundObjectProxy_BP_GetBoundObjectForSequencer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneBoundObjectProxy \ +static_assert(alignof(IMovieSceneBoundObjectProxy) == 0x000001, "Wrong alignment on IMovieSceneBoundObjectProxy"); \ +static_assert(sizeof(IMovieSceneBoundObjectProxy) == 0x000001, "Wrong size on IMovieSceneBoundObjectProxy"); \ + +#define DUMPER7_ASSERTS_IMovieSceneChannelOverrideProvider \ +static_assert(alignof(IMovieSceneChannelOverrideProvider) == 0x000001, "Wrong alignment on IMovieSceneChannelOverrideProvider"); \ +static_assert(sizeof(IMovieSceneChannelOverrideProvider) == 0x000001, "Wrong size on IMovieSceneChannelOverrideProvider"); \ + +#define DUMPER7_ASSERTS_IMovieSceneDeterminismSource \ +static_assert(alignof(IMovieSceneDeterminismSource) == 0x000001, "Wrong alignment on IMovieSceneDeterminismSource"); \ +static_assert(sizeof(IMovieSceneDeterminismSource) == 0x000001, "Wrong size on IMovieSceneDeterminismSource"); \ + +#define DUMPER7_ASSERTS_IMovieSceneEvaluationHook \ +static_assert(alignof(IMovieSceneEvaluationHook) == 0x000001, "Wrong alignment on IMovieSceneEvaluationHook"); \ +static_assert(sizeof(IMovieSceneEvaluationHook) == 0x000001, "Wrong size on IMovieSceneEvaluationHook"); \ + +#define DUMPER7_ASSERTS_IMovieSceneMetaDataInterface \ +static_assert(alignof(IMovieSceneMetaDataInterface) == 0x000001, "Wrong alignment on IMovieSceneMetaDataInterface"); \ +static_assert(sizeof(IMovieSceneMetaDataInterface) == 0x000001, "Wrong size on IMovieSceneMetaDataInterface"); \ + +#define DUMPER7_ASSERTS_IMovieScenePlaybackClient \ +static_assert(alignof(IMovieScenePlaybackClient) == 0x000001, "Wrong alignment on IMovieScenePlaybackClient"); \ +static_assert(sizeof(IMovieScenePlaybackClient) == 0x000001, "Wrong size on IMovieScenePlaybackClient"); \ + +#define DUMPER7_ASSERTS_IMovieSceneSequencePlayerObserver \ +static_assert(alignof(IMovieSceneSequencePlayerObserver) == 0x000001, "Wrong alignment on IMovieSceneSequencePlayerObserver"); \ +static_assert(sizeof(IMovieSceneSequencePlayerObserver) == 0x000001, "Wrong size on IMovieSceneSequencePlayerObserver"); \ + +#define DUMPER7_ASSERTS_IMovieSceneBindingOwnerInterface \ +static_assert(alignof(IMovieSceneBindingOwnerInterface) == 0x000001, "Wrong alignment on IMovieSceneBindingOwnerInterface"); \ +static_assert(sizeof(IMovieSceneBindingOwnerInterface) == 0x000001, "Wrong size on IMovieSceneBindingOwnerInterface"); \ + +#define DUMPER7_ASSERTS_IMovieSceneCachedTrack \ +static_assert(alignof(IMovieSceneCachedTrack) == 0x000001, "Wrong alignment on IMovieSceneCachedTrack"); \ +static_assert(sizeof(IMovieSceneCachedTrack) == 0x000001, "Wrong size on IMovieSceneCachedTrack"); \ + +#define DUMPER7_ASSERTS_MovieSceneEasingFunction_OnEvaluate \ +static_assert(alignof(MovieSceneEasingFunction_OnEvaluate) == 0x000004, "Wrong alignment on MovieSceneEasingFunction_OnEvaluate"); \ +static_assert(sizeof(MovieSceneEasingFunction_OnEvaluate) == 0x000008, "Wrong size on MovieSceneEasingFunction_OnEvaluate"); \ +static_assert(offsetof(MovieSceneEasingFunction_OnEvaluate, Interp) == 0x000000, "Member 'MovieSceneEasingFunction_OnEvaluate::Interp' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneEasingFunction_OnEvaluate, ReturnValue) == 0x000004, "Member 'MovieSceneEasingFunction_OnEvaluate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneEasingFunction \ +static_assert(alignof(IMovieSceneEasingFunction) == 0x000001, "Wrong alignment on IMovieSceneEasingFunction"); \ +static_assert(sizeof(IMovieSceneEasingFunction) == 0x000001, "Wrong size on IMovieSceneEasingFunction"); \ + +#define DUMPER7_ASSERTS_IMovieSceneKeyProxy \ +static_assert(alignof(IMovieSceneKeyProxy) == 0x000001, "Wrong alignment on IMovieSceneKeyProxy"); \ +static_assert(sizeof(IMovieSceneKeyProxy) == 0x000001, "Wrong size on IMovieSceneKeyProxy"); \ + +#define DUMPER7_ASSERTS_IMovieSceneSequenceTickManagerClient \ +static_assert(alignof(IMovieSceneSequenceTickManagerClient) == 0x000001, "Wrong alignment on IMovieSceneSequenceTickManagerClient"); \ +static_assert(sizeof(IMovieSceneSequenceTickManagerClient) == 0x000001, "Wrong size on IMovieSceneSequenceTickManagerClient"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSignedObject \ +static_assert(alignof(UMovieSceneSignedObject) == 0x000008, "Wrong alignment on UMovieSceneSignedObject"); \ +static_assert(sizeof(UMovieSceneSignedObject) == 0x000058, "Wrong size on UMovieSceneSignedObject"); \ +static_assert(offsetof(UMovieSceneSignedObject, Signature) == 0x00002C, "Member 'UMovieSceneSignedObject::Signature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneChannelOverrideContainer \ +static_assert(alignof(UMovieSceneChannelOverrideContainer) == 0x000008, "Wrong alignment on UMovieSceneChannelOverrideContainer"); \ +static_assert(sizeof(UMovieSceneChannelOverrideContainer) == 0x000058, "Wrong size on UMovieSceneChannelOverrideContainer"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSectionChannelOverrideRegistry \ +static_assert(alignof(UMovieSceneSectionChannelOverrideRegistry) == 0x000008, "Wrong alignment on UMovieSceneSectionChannelOverrideRegistry"); \ +static_assert(sizeof(UMovieSceneSectionChannelOverrideRegistry) == 0x000078, "Wrong size on UMovieSceneSectionChannelOverrideRegistry"); \ +static_assert(offsetof(UMovieSceneSectionChannelOverrideRegistry, Overrides) == 0x000028, "Member 'UMovieSceneSectionChannelOverrideRegistry::Overrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneTrackTemplateProducer \ +static_assert(alignof(IMovieSceneTrackTemplateProducer) == 0x000001, "Wrong alignment on IMovieSceneTrackTemplateProducer"); \ +static_assert(sizeof(IMovieSceneTrackTemplateProducer) == 0x000001, "Wrong size on IMovieSceneTrackTemplateProducer"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCompiledData \ +static_assert(alignof(UMovieSceneCompiledData) == 0x000008, "Wrong alignment on UMovieSceneCompiledData"); \ +static_assert(sizeof(UMovieSceneCompiledData) == 0x0003F8, "Wrong size on UMovieSceneCompiledData"); \ +static_assert(offsetof(UMovieSceneCompiledData, EvaluationTemplate) == 0x000028, "Member 'UMovieSceneCompiledData::EvaluationTemplate' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, Hierarchy) == 0x000188, "Member 'UMovieSceneCompiledData::Hierarchy' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, EntityComponentField) == 0x0002A0, "Member 'UMovieSceneCompiledData::EntityComponentField' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, TrackTemplateField) == 0x000390, "Member 'UMovieSceneCompiledData::TrackTemplateField' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, DeterminismFences) == 0x0003C0, "Member 'UMovieSceneCompiledData::DeterminismFences' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, CompiledSignature) == 0x0003D0, "Member 'UMovieSceneCompiledData::CompiledSignature' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, CompilerVersion) == 0x0003E0, "Member 'UMovieSceneCompiledData::CompilerVersion' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, AccumulatedMask) == 0x0003F0, "Member 'UMovieSceneCompiledData::AccumulatedMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, AllocatedMask) == 0x0003F1, "Member 'UMovieSceneCompiledData::AllocatedMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledData, AccumulatedFlags) == 0x0003F2, "Member 'UMovieSceneCompiledData::AccumulatedFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCompiledDataManager \ +static_assert(alignof(UMovieSceneCompiledDataManager) == 0x000008, "Wrong alignment on UMovieSceneCompiledDataManager"); \ +static_assert(sizeof(UMovieSceneCompiledDataManager) == 0x000230, "Wrong size on UMovieSceneCompiledDataManager"); \ +static_assert(offsetof(UMovieSceneCompiledDataManager, Hierarchies) == 0x0000D8, "Member 'UMovieSceneCompiledDataManager::Hierarchies' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledDataManager, TrackTemplates) == 0x000128, "Member 'UMovieSceneCompiledDataManager::TrackTemplates' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledDataManager, TrackTemplateFields) == 0x000178, "Member 'UMovieSceneCompiledDataManager::TrackTemplateFields' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCompiledDataManager, EntityComponentFields) == 0x0001C8, "Member 'UMovieSceneCompiledDataManager::EntityComponentFields' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneEntityProvider \ +static_assert(alignof(IMovieSceneEntityProvider) == 0x000001, "Wrong alignment on IMovieSceneEntityProvider"); \ +static_assert(sizeof(IMovieSceneEntityProvider) == 0x000001, "Wrong size on IMovieSceneEntityProvider"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEntitySystem \ +static_assert(alignof(UMovieSceneEntitySystem) == 0x000008, "Wrong alignment on UMovieSceneEntitySystem"); \ +static_assert(sizeof(UMovieSceneEntitySystem) == 0x000040, "Wrong size on UMovieSceneEntitySystem"); \ +static_assert(offsetof(UMovieSceneEntitySystem, Linker) == 0x000028, "Member 'UMovieSceneEntitySystem::Linker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBlenderSystem \ +static_assert(alignof(UMovieSceneBlenderSystem) == 0x000008, "Wrong alignment on UMovieSceneBlenderSystem"); \ +static_assert(sizeof(UMovieSceneBlenderSystem) == 0x000068, "Wrong size on UMovieSceneBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEntityInstantiatorSystem \ +static_assert(alignof(UMovieSceneEntityInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieSceneEntityInstantiatorSystem"); \ +static_assert(sizeof(UMovieSceneEntityInstantiatorSystem) == 0x000040, "Wrong size on UMovieSceneEntityInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGenericBoundObjectInstantiator \ +static_assert(alignof(UMovieSceneGenericBoundObjectInstantiator) == 0x000008, "Wrong alignment on UMovieSceneGenericBoundObjectInstantiator"); \ +static_assert(sizeof(UMovieSceneGenericBoundObjectInstantiator) == 0x000040, "Wrong size on UMovieSceneGenericBoundObjectInstantiator"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBoundSceneComponentInstantiator \ +static_assert(alignof(UMovieSceneBoundSceneComponentInstantiator) == 0x000008, "Wrong alignment on UMovieSceneBoundSceneComponentInstantiator"); \ +static_assert(sizeof(UMovieSceneBoundSceneComponentInstantiator) == 0x000040, "Wrong size on UMovieSceneBoundSceneComponentInstantiator"); \ + +#define DUMPER7_ASSERTS_IMovieSceneValueDecomposer \ +static_assert(alignof(IMovieSceneValueDecomposer) == 0x000001, "Wrong alignment on IMovieSceneValueDecomposer"); \ +static_assert(sizeof(IMovieSceneValueDecomposer) == 0x000001, "Wrong size on IMovieSceneValueDecomposer"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEntitySystemLinker \ +static_assert(alignof(UMovieSceneEntitySystemLinker) == 0x000008, "Wrong alignment on UMovieSceneEntitySystemLinker"); \ +static_assert(sizeof(UMovieSceneEntitySystemLinker) == 0x000738, "Wrong size on UMovieSceneEntitySystemLinker"); \ +static_assert(offsetof(UMovieSceneEntitySystemLinker, SystemGraph) == 0x0002A0, "Member 'UMovieSceneEntitySystemLinker::SystemGraph' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEvalTimeSystem \ +static_assert(alignof(UMovieSceneEvalTimeSystem) == 0x000008, "Wrong alignment on UMovieSceneEvalTimeSystem"); \ +static_assert(sizeof(UMovieSceneEvalTimeSystem) == 0x0001B0, "Wrong size on UMovieSceneEvalTimeSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEvaluationHookSystem \ +static_assert(alignof(UMovieSceneEvaluationHookSystem) == 0x000008, "Wrong alignment on UMovieSceneEvaluationHookSystem"); \ +static_assert(sizeof(UMovieSceneEvaluationHookSystem) == 0x000090, "Wrong size on UMovieSceneEvaluationHookSystem"); \ +static_assert(offsetof(UMovieSceneEvaluationHookSystem, PendingEventsByRootInstance) == 0x000040, "Member 'UMovieSceneEvaluationHookSystem::PendingEventsByRootInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieScenePreAnimatedStateSystemInterface \ +static_assert(alignof(IMovieScenePreAnimatedStateSystemInterface) == 0x000001, "Wrong alignment on IMovieScenePreAnimatedStateSystemInterface"); \ +static_assert(sizeof(IMovieScenePreAnimatedStateSystemInterface) == 0x000001, "Wrong size on IMovieScenePreAnimatedStateSystemInterface"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCachePreAnimatedStateSystem \ +static_assert(alignof(UMovieSceneCachePreAnimatedStateSystem) == 0x000008, "Wrong alignment on UMovieSceneCachePreAnimatedStateSystem"); \ +static_assert(sizeof(UMovieSceneCachePreAnimatedStateSystem) == 0x000040, "Wrong size on UMovieSceneCachePreAnimatedStateSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneRestorePreAnimatedStateSystem \ +static_assert(alignof(UMovieSceneRestorePreAnimatedStateSystem) == 0x000008, "Wrong alignment on UMovieSceneRestorePreAnimatedStateSystem"); \ +static_assert(sizeof(UMovieSceneRestorePreAnimatedStateSystem) == 0x000050, "Wrong size on UMovieSceneRestorePreAnimatedStateSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneRootInstantiatorSystem \ +static_assert(alignof(UMovieSceneRootInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieSceneRootInstantiatorSystem"); \ +static_assert(sizeof(UMovieSceneRootInstantiatorSystem) == 0x000040, "Wrong size on UMovieSceneRootInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSpawnablesSystem \ +static_assert(alignof(UMovieSceneSpawnablesSystem) == 0x000008, "Wrong alignment on UMovieSceneSpawnablesSystem"); \ +static_assert(sizeof(UMovieSceneSpawnablesSystem) == 0x000040, "Wrong size on UMovieSceneSpawnablesSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTrackInstance \ +static_assert(alignof(UMovieSceneTrackInstance) == 0x000008, "Wrong alignment on UMovieSceneTrackInstance"); \ +static_assert(sizeof(UMovieSceneTrackInstance) == 0x000050, "Wrong size on UMovieSceneTrackInstance"); \ +static_assert(offsetof(UMovieSceneTrackInstance, WeakAnimatedObject) == 0x000028, "Member 'UMovieSceneTrackInstance::WeakAnimatedObject' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrackInstance, bIsRootTrackInstance) == 0x000030, "Member 'UMovieSceneTrackInstance::bIsRootTrackInstance' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrackInstance, PrivateLinker) == 0x000038, "Member 'UMovieSceneTrackInstance::PrivateLinker' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrackInstance, Inputs) == 0x000040, "Member 'UMovieSceneTrackInstance::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTrackInstanceInstantiator \ +static_assert(alignof(UMovieSceneTrackInstanceInstantiator) == 0x000008, "Wrong alignment on UMovieSceneTrackInstanceInstantiator"); \ +static_assert(sizeof(UMovieSceneTrackInstanceInstantiator) == 0x0000F0, "Wrong size on UMovieSceneTrackInstanceInstantiator"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTrackInstanceSystem \ +static_assert(alignof(UMovieSceneTrackInstanceSystem) == 0x000008, "Wrong alignment on UMovieSceneTrackInstanceSystem"); \ +static_assert(sizeof(UMovieSceneTrackInstanceSystem) == 0x000048, "Wrong size on UMovieSceneTrackInstanceSystem"); \ +static_assert(offsetof(UMovieSceneTrackInstanceSystem, Instantiator) == 0x000040, "Member 'UMovieSceneTrackInstanceSystem::Instantiator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCustomClockSource_OnRequestCurrentTime \ +static_assert(alignof(MovieSceneCustomClockSource_OnRequestCurrentTime) == 0x000004, "Wrong alignment on MovieSceneCustomClockSource_OnRequestCurrentTime"); \ +static_assert(sizeof(MovieSceneCustomClockSource_OnRequestCurrentTime) == 0x00001C, "Wrong size on MovieSceneCustomClockSource_OnRequestCurrentTime"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnRequestCurrentTime, InCurrentTime) == 0x000000, "Member 'MovieSceneCustomClockSource_OnRequestCurrentTime::InCurrentTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnRequestCurrentTime, InPlayRate) == 0x000010, "Member 'MovieSceneCustomClockSource_OnRequestCurrentTime::InPlayRate' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnRequestCurrentTime, ReturnValue) == 0x000014, "Member 'MovieSceneCustomClockSource_OnRequestCurrentTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCustomClockSource_OnStartPlaying \ +static_assert(alignof(MovieSceneCustomClockSource_OnStartPlaying) == 0x000004, "Wrong alignment on MovieSceneCustomClockSource_OnStartPlaying"); \ +static_assert(sizeof(MovieSceneCustomClockSource_OnStartPlaying) == 0x000010, "Wrong size on MovieSceneCustomClockSource_OnStartPlaying"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnStartPlaying, InStartTime) == 0x000000, "Member 'MovieSceneCustomClockSource_OnStartPlaying::InStartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCustomClockSource_OnStopPlaying \ +static_assert(alignof(MovieSceneCustomClockSource_OnStopPlaying) == 0x000004, "Wrong alignment on MovieSceneCustomClockSource_OnStopPlaying"); \ +static_assert(sizeof(MovieSceneCustomClockSource_OnStopPlaying) == 0x000010, "Wrong size on MovieSceneCustomClockSource_OnStopPlaying"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnStopPlaying, InStopTime) == 0x000000, "Member 'MovieSceneCustomClockSource_OnStopPlaying::InStopTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCustomClockSource_OnTick \ +static_assert(alignof(MovieSceneCustomClockSource_OnTick) == 0x000004, "Wrong alignment on MovieSceneCustomClockSource_OnTick"); \ +static_assert(sizeof(MovieSceneCustomClockSource_OnTick) == 0x000008, "Wrong size on MovieSceneCustomClockSource_OnTick"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnTick, DeltaSeconds) == 0x000000, "Member 'MovieSceneCustomClockSource_OnTick::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneCustomClockSource_OnTick, InPlayRate) == 0x000004, "Member 'MovieSceneCustomClockSource_OnTick::InPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneCustomClockSource \ +static_assert(alignof(IMovieSceneCustomClockSource) == 0x000001, "Wrong alignment on IMovieSceneCustomClockSource"); \ +static_assert(sizeof(IMovieSceneCustomClockSource) == 0x000001, "Wrong size on IMovieSceneCustomClockSource"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBuiltInEasingFunction \ +static_assert(alignof(UMovieSceneBuiltInEasingFunction) == 0x000008, "Wrong alignment on UMovieSceneBuiltInEasingFunction"); \ +static_assert(sizeof(UMovieSceneBuiltInEasingFunction) == 0x000038, "Wrong size on UMovieSceneBuiltInEasingFunction"); \ +static_assert(offsetof(UMovieSceneBuiltInEasingFunction, Type) == 0x000030, "Member 'UMovieSceneBuiltInEasingFunction::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEasingExternalCurve \ +static_assert(alignof(UMovieSceneEasingExternalCurve) == 0x000008, "Wrong alignment on UMovieSceneEasingExternalCurve"); \ +static_assert(sizeof(UMovieSceneEasingExternalCurve) == 0x000038, "Wrong size on UMovieSceneEasingExternalCurve"); \ +static_assert(offsetof(UMovieSceneEasingExternalCurve, Curve) == 0x000030, "Member 'UMovieSceneEasingExternalCurve::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INodeAndChannelMappings \ +static_assert(alignof(INodeAndChannelMappings) == 0x000001, "Wrong alignment on INodeAndChannelMappings"); \ +static_assert(sizeof(INodeAndChannelMappings) == 0x000001, "Wrong size on INodeAndChannelMappings"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNodeGroup \ +static_assert(alignof(UMovieSceneNodeGroup) == 0x000008, "Wrong alignment on UMovieSceneNodeGroup"); \ +static_assert(sizeof(UMovieSceneNodeGroup) == 0x000028, "Wrong size on UMovieSceneNodeGroup"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNodeGroupCollection \ +static_assert(alignof(UMovieSceneNodeGroupCollection) == 0x000008, "Wrong alignment on UMovieSceneNodeGroupCollection"); \ +static_assert(sizeof(UMovieSceneNodeGroupCollection) == 0x000028, "Wrong size on UMovieSceneNodeGroupCollection"); \ + +#define DUMPER7_ASSERTS_UMovieScene \ +static_assert(alignof(UMovieScene) == 0x000008, "Wrong alignment on UMovieScene"); \ +static_assert(sizeof(UMovieScene) == 0x000160, "Wrong size on UMovieScene"); \ +static_assert(offsetof(UMovieScene, Spawnables) == 0x000060, "Member 'UMovieScene::Spawnables' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, Possessables) == 0x000070, "Member 'UMovieScene::Possessables' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, ObjectBindings) == 0x000080, "Member 'UMovieScene::ObjectBindings' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, BindingGroups) == 0x000090, "Member 'UMovieScene::BindingGroups' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, Tracks) == 0x0000E0, "Member 'UMovieScene::Tracks' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, CameraCutTrack) == 0x0000F0, "Member 'UMovieScene::CameraCutTrack' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, SelectionRange) == 0x0000F8, "Member 'UMovieScene::SelectionRange' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, PlaybackRange) == 0x000108, "Member 'UMovieScene::PlaybackRange' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, TickResolution) == 0x000118, "Member 'UMovieScene::TickResolution' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, DisplayRate) == 0x000120, "Member 'UMovieScene::DisplayRate' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, EvaluationType) == 0x000128, "Member 'UMovieScene::EvaluationType' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, ClockSource) == 0x000129, "Member 'UMovieScene::ClockSource' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, CustomClockSourcePath) == 0x000130, "Member 'UMovieScene::CustomClockSourcePath' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene, MarkedFrames) == 0x000150, "Member 'UMovieScene::MarkedFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBindingOverrides \ +static_assert(alignof(UMovieSceneBindingOverrides) == 0x000008, "Wrong alignment on UMovieSceneBindingOverrides"); \ +static_assert(sizeof(UMovieSceneBindingOverrides) == 0x000090, "Wrong size on UMovieSceneBindingOverrides"); \ +static_assert(offsetof(UMovieSceneBindingOverrides, BindingData) == 0x000028, "Member 'UMovieSceneBindingOverrides::BindingData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn \ +static_assert(alignof(BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn) == 0x000008, "Wrong alignment on BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn"); \ +static_assert(sizeof(BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn) == 0x000020, "Wrong size on BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn"); \ +static_assert(offsetof(BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn, WorldContextObject) == 0x000000, "Member 'BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn, PlayerControllerIndex) == 0x000008, "Member 'BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn::PlayerControllerIndex' has a wrong offset!"); \ +static_assert(offsetof(BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn, ReturnValue) == 0x000010, "Member 'BuiltInDynamicBindingResolverLibrary_ResolveToPlayerPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBuiltInDynamicBindingResolverLibrary \ +static_assert(alignof(UBuiltInDynamicBindingResolverLibrary) == 0x000008, "Wrong alignment on UBuiltInDynamicBindingResolverLibrary"); \ +static_assert(sizeof(UBuiltInDynamicBindingResolverLibrary) == 0x000028, "Wrong size on UBuiltInDynamicBindingResolverLibrary"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFolder \ +static_assert(alignof(UMovieSceneFolder) == 0x000008, "Wrong alignment on UMovieSceneFolder"); \ +static_assert(sizeof(UMovieSceneFolder) == 0x000078, "Wrong size on UMovieSceneFolder"); \ +static_assert(offsetof(UMovieSceneFolder, FolderName) == 0x00002C, "Member 'UMovieSceneFolder::FolderName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFolder, ChildFolders) == 0x000038, "Member 'UMovieSceneFolder::ChildFolders' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFolder, ChildTracks) == 0x000048, "Member 'UMovieSceneFolder::ChildTracks' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFolder, ChildObjectBindingStrings) == 0x000058, "Member 'UMovieSceneFolder::ChildObjectBindingStrings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_SetAuthor \ +static_assert(alignof(MovieSceneMetaData_SetAuthor) == 0x000008, "Wrong alignment on MovieSceneMetaData_SetAuthor"); \ +static_assert(sizeof(MovieSceneMetaData_SetAuthor) == 0x000010, "Wrong size on MovieSceneMetaData_SetAuthor"); \ +static_assert(offsetof(MovieSceneMetaData_SetAuthor, InAuthor) == 0x000000, "Member 'MovieSceneMetaData_SetAuthor::InAuthor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_SetCreated \ +static_assert(alignof(MovieSceneMetaData_SetCreated) == 0x000008, "Wrong alignment on MovieSceneMetaData_SetCreated"); \ +static_assert(sizeof(MovieSceneMetaData_SetCreated) == 0x000008, "Wrong size on MovieSceneMetaData_SetCreated"); \ +static_assert(offsetof(MovieSceneMetaData_SetCreated, InCreated) == 0x000000, "Member 'MovieSceneMetaData_SetCreated::InCreated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_SetNotes \ +static_assert(alignof(MovieSceneMetaData_SetNotes) == 0x000008, "Wrong alignment on MovieSceneMetaData_SetNotes"); \ +static_assert(sizeof(MovieSceneMetaData_SetNotes) == 0x000010, "Wrong size on MovieSceneMetaData_SetNotes"); \ +static_assert(offsetof(MovieSceneMetaData_SetNotes, InNotes) == 0x000000, "Member 'MovieSceneMetaData_SetNotes::InNotes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_GetAuthor \ +static_assert(alignof(MovieSceneMetaData_GetAuthor) == 0x000008, "Wrong alignment on MovieSceneMetaData_GetAuthor"); \ +static_assert(sizeof(MovieSceneMetaData_GetAuthor) == 0x000010, "Wrong size on MovieSceneMetaData_GetAuthor"); \ +static_assert(offsetof(MovieSceneMetaData_GetAuthor, ReturnValue) == 0x000000, "Member 'MovieSceneMetaData_GetAuthor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_GetCreated \ +static_assert(alignof(MovieSceneMetaData_GetCreated) == 0x000008, "Wrong alignment on MovieSceneMetaData_GetCreated"); \ +static_assert(sizeof(MovieSceneMetaData_GetCreated) == 0x000008, "Wrong size on MovieSceneMetaData_GetCreated"); \ +static_assert(offsetof(MovieSceneMetaData_GetCreated, ReturnValue) == 0x000000, "Member 'MovieSceneMetaData_GetCreated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMetaData_GetNotes \ +static_assert(alignof(MovieSceneMetaData_GetNotes) == 0x000008, "Wrong alignment on MovieSceneMetaData_GetNotes"); \ +static_assert(sizeof(MovieSceneMetaData_GetNotes) == 0x000010, "Wrong size on MovieSceneMetaData_GetNotes"); \ +static_assert(offsetof(MovieSceneMetaData_GetNotes, ReturnValue) == 0x000000, "Member 'MovieSceneMetaData_GetNotes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMetaData \ +static_assert(alignof(UMovieSceneMetaData) == 0x000008, "Wrong alignment on UMovieSceneMetaData"); \ +static_assert(sizeof(UMovieSceneMetaData) == 0x000058, "Wrong size on UMovieSceneMetaData"); \ +static_assert(offsetof(UMovieSceneMetaData, Author) == 0x000030, "Member 'UMovieSceneMetaData::Author' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMetaData, Created) == 0x000040, "Member 'UMovieSceneMetaData::Created' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMetaData, Notes) == 0x000048, "Member 'UMovieSceneMetaData::Notes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTrack \ +static_assert(alignof(UMovieSceneTrack) == 0x000008, "Wrong alignment on UMovieSceneTrack"); \ +static_assert(sizeof(UMovieSceneTrack) == 0x000098, "Wrong size on UMovieSceneTrack"); \ +static_assert(offsetof(UMovieSceneTrack, EvalOptions) == 0x000058, "Member 'UMovieSceneTrack::EvalOptions' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrack, bIsEvalDisabled) == 0x00005D, "Member 'UMovieSceneTrack::bIsEvalDisabled' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrack, RowsDisabled) == 0x000060, "Member 'UMovieSceneTrack::RowsDisabled' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrack, EvaluationFieldGuid) == 0x000074, "Member 'UMovieSceneTrack::EvaluationFieldGuid' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTrack, EvaluationField) == 0x000088, "Member 'UMovieSceneTrack::EvaluationField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNameableTrack \ +static_assert(alignof(UMovieSceneNameableTrack) == 0x000008, "Wrong alignment on UMovieSceneNameableTrack"); \ +static_assert(sizeof(UMovieSceneNameableTrack) == 0x000098, "Wrong size on UMovieSceneNameableTrack"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetBlendType \ +static_assert(alignof(MovieSceneSection_SetBlendType) == 0x000001, "Wrong alignment on MovieSceneSection_SetBlendType"); \ +static_assert(sizeof(MovieSceneSection_SetBlendType) == 0x000001, "Wrong size on MovieSceneSection_SetBlendType"); \ +static_assert(offsetof(MovieSceneSection_SetBlendType, InBlendType) == 0x000000, "Member 'MovieSceneSection_SetBlendType::InBlendType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetColorTint \ +static_assert(alignof(MovieSceneSection_SetColorTint) == 0x000004, "Wrong alignment on MovieSceneSection_SetColorTint"); \ +static_assert(sizeof(MovieSceneSection_SetColorTint) == 0x000004, "Wrong size on MovieSceneSection_SetColorTint"); \ +static_assert(offsetof(MovieSceneSection_SetColorTint, InColorTint) == 0x000000, "Member 'MovieSceneSection_SetColorTint::InColorTint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetCompletionMode \ +static_assert(alignof(MovieSceneSection_SetCompletionMode) == 0x000001, "Wrong alignment on MovieSceneSection_SetCompletionMode"); \ +static_assert(sizeof(MovieSceneSection_SetCompletionMode) == 0x000001, "Wrong size on MovieSceneSection_SetCompletionMode"); \ +static_assert(offsetof(MovieSceneSection_SetCompletionMode, InCompletionMode) == 0x000000, "Member 'MovieSceneSection_SetCompletionMode::InCompletionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetIsActive \ +static_assert(alignof(MovieSceneSection_SetIsActive) == 0x000001, "Wrong alignment on MovieSceneSection_SetIsActive"); \ +static_assert(sizeof(MovieSceneSection_SetIsActive) == 0x000001, "Wrong size on MovieSceneSection_SetIsActive"); \ +static_assert(offsetof(MovieSceneSection_SetIsActive, bInIsActive) == 0x000000, "Member 'MovieSceneSection_SetIsActive::bInIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetIsLocked \ +static_assert(alignof(MovieSceneSection_SetIsLocked) == 0x000001, "Wrong alignment on MovieSceneSection_SetIsLocked"); \ +static_assert(sizeof(MovieSceneSection_SetIsLocked) == 0x000001, "Wrong size on MovieSceneSection_SetIsLocked"); \ +static_assert(offsetof(MovieSceneSection_SetIsLocked, bInIsLocked) == 0x000000, "Member 'MovieSceneSection_SetIsLocked::bInIsLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetOverlapPriority \ +static_assert(alignof(MovieSceneSection_SetOverlapPriority) == 0x000004, "Wrong alignment on MovieSceneSection_SetOverlapPriority"); \ +static_assert(sizeof(MovieSceneSection_SetOverlapPriority) == 0x000004, "Wrong size on MovieSceneSection_SetOverlapPriority"); \ +static_assert(offsetof(MovieSceneSection_SetOverlapPriority, NewPriority) == 0x000000, "Member 'MovieSceneSection_SetOverlapPriority::NewPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetPostRollFrames \ +static_assert(alignof(MovieSceneSection_SetPostRollFrames) == 0x000004, "Wrong alignment on MovieSceneSection_SetPostRollFrames"); \ +static_assert(sizeof(MovieSceneSection_SetPostRollFrames) == 0x000004, "Wrong size on MovieSceneSection_SetPostRollFrames"); \ +static_assert(offsetof(MovieSceneSection_SetPostRollFrames, InPostRollFrames) == 0x000000, "Member 'MovieSceneSection_SetPostRollFrames::InPostRollFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetPreRollFrames \ +static_assert(alignof(MovieSceneSection_SetPreRollFrames) == 0x000004, "Wrong alignment on MovieSceneSection_SetPreRollFrames"); \ +static_assert(sizeof(MovieSceneSection_SetPreRollFrames) == 0x000004, "Wrong size on MovieSceneSection_SetPreRollFrames"); \ +static_assert(offsetof(MovieSceneSection_SetPreRollFrames, InPreRollFrames) == 0x000000, "Member 'MovieSceneSection_SetPreRollFrames::InPreRollFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_SetRowIndex \ +static_assert(alignof(MovieSceneSection_SetRowIndex) == 0x000004, "Wrong alignment on MovieSceneSection_SetRowIndex"); \ +static_assert(sizeof(MovieSceneSection_SetRowIndex) == 0x000004, "Wrong size on MovieSceneSection_SetRowIndex"); \ +static_assert(offsetof(MovieSceneSection_SetRowIndex, NewRowIndex) == 0x000000, "Member 'MovieSceneSection_SetRowIndex::NewRowIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetBlendType \ +static_assert(alignof(MovieSceneSection_GetBlendType) == 0x000001, "Wrong alignment on MovieSceneSection_GetBlendType"); \ +static_assert(sizeof(MovieSceneSection_GetBlendType) == 0x000002, "Wrong size on MovieSceneSection_GetBlendType"); \ +static_assert(offsetof(MovieSceneSection_GetBlendType, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetBlendType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetColorTint \ +static_assert(alignof(MovieSceneSection_GetColorTint) == 0x000004, "Wrong alignment on MovieSceneSection_GetColorTint"); \ +static_assert(sizeof(MovieSceneSection_GetColorTint) == 0x000004, "Wrong size on MovieSceneSection_GetColorTint"); \ +static_assert(offsetof(MovieSceneSection_GetColorTint, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetColorTint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetCompletionMode \ +static_assert(alignof(MovieSceneSection_GetCompletionMode) == 0x000001, "Wrong alignment on MovieSceneSection_GetCompletionMode"); \ +static_assert(sizeof(MovieSceneSection_GetCompletionMode) == 0x000001, "Wrong size on MovieSceneSection_GetCompletionMode"); \ +static_assert(offsetof(MovieSceneSection_GetCompletionMode, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetCompletionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetOverlapPriority \ +static_assert(alignof(MovieSceneSection_GetOverlapPriority) == 0x000004, "Wrong alignment on MovieSceneSection_GetOverlapPriority"); \ +static_assert(sizeof(MovieSceneSection_GetOverlapPriority) == 0x000004, "Wrong size on MovieSceneSection_GetOverlapPriority"); \ +static_assert(offsetof(MovieSceneSection_GetOverlapPriority, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetOverlapPriority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetPostRollFrames \ +static_assert(alignof(MovieSceneSection_GetPostRollFrames) == 0x000004, "Wrong alignment on MovieSceneSection_GetPostRollFrames"); \ +static_assert(sizeof(MovieSceneSection_GetPostRollFrames) == 0x000004, "Wrong size on MovieSceneSection_GetPostRollFrames"); \ +static_assert(offsetof(MovieSceneSection_GetPostRollFrames, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetPostRollFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetPreRollFrames \ +static_assert(alignof(MovieSceneSection_GetPreRollFrames) == 0x000004, "Wrong alignment on MovieSceneSection_GetPreRollFrames"); \ +static_assert(sizeof(MovieSceneSection_GetPreRollFrames) == 0x000004, "Wrong size on MovieSceneSection_GetPreRollFrames"); \ +static_assert(offsetof(MovieSceneSection_GetPreRollFrames, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetPreRollFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_GetRowIndex \ +static_assert(alignof(MovieSceneSection_GetRowIndex) == 0x000004, "Wrong alignment on MovieSceneSection_GetRowIndex"); \ +static_assert(sizeof(MovieSceneSection_GetRowIndex) == 0x000004, "Wrong size on MovieSceneSection_GetRowIndex"); \ +static_assert(offsetof(MovieSceneSection_GetRowIndex, ReturnValue) == 0x000000, "Member 'MovieSceneSection_GetRowIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_IsActive \ +static_assert(alignof(MovieSceneSection_IsActive) == 0x000001, "Wrong alignment on MovieSceneSection_IsActive"); \ +static_assert(sizeof(MovieSceneSection_IsActive) == 0x000001, "Wrong size on MovieSceneSection_IsActive"); \ +static_assert(offsetof(MovieSceneSection_IsActive, ReturnValue) == 0x000000, "Member 'MovieSceneSection_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSection_IsLocked \ +static_assert(alignof(MovieSceneSection_IsLocked) == 0x000001, "Wrong alignment on MovieSceneSection_IsLocked"); \ +static_assert(sizeof(MovieSceneSection_IsLocked) == 0x000001, "Wrong size on MovieSceneSection_IsLocked"); \ +static_assert(offsetof(MovieSceneSection_IsLocked, ReturnValue) == 0x000000, "Member 'MovieSceneSection_IsLocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSection \ +static_assert(alignof(UMovieSceneSection) == 0x000008, "Wrong alignment on UMovieSceneSection"); \ +static_assert(sizeof(UMovieSceneSection) == 0x0000F0, "Wrong size on UMovieSceneSection"); \ +static_assert(offsetof(UMovieSceneSection, EvalOptions) == 0x000058, "Member 'UMovieSceneSection::EvalOptions' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, Easing) == 0x000060, "Member 'UMovieSceneSection::Easing' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, SectionRange) == 0x000098, "Member 'UMovieSceneSection::SectionRange' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, PreRollFrames) == 0x0000A8, "Member 'UMovieSceneSection::PreRollFrames' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, PostRollFrames) == 0x0000AC, "Member 'UMovieSceneSection::PostRollFrames' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, RowIndex) == 0x0000B0, "Member 'UMovieSceneSection::RowIndex' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, OverlapPriority) == 0x0000B4, "Member 'UMovieSceneSection::OverlapPriority' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, StartTime) == 0x0000BC, "Member 'UMovieSceneSection::StartTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, EndTime) == 0x0000C0, "Member 'UMovieSceneSection::EndTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, PrerollTime) == 0x0000C4, "Member 'UMovieSceneSection::PrerollTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, PostrollTime) == 0x0000C8, "Member 'UMovieSceneSection::PostrollTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, bSupportsInfiniteRange) == 0x0000D0, "Member 'UMovieSceneSection::bSupportsInfiniteRange' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSection, BlendType) == 0x0000D1, "Member 'UMovieSceneSection::BlendType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequence_FindBindingByTag \ +static_assert(alignof(MovieSceneSequence_FindBindingByTag) == 0x000004, "Wrong alignment on MovieSceneSequence_FindBindingByTag"); \ +static_assert(sizeof(MovieSceneSequence_FindBindingByTag) == 0x000020, "Wrong size on MovieSceneSequence_FindBindingByTag"); \ +static_assert(offsetof(MovieSceneSequence_FindBindingByTag, InBindingName) == 0x000000, "Member 'MovieSceneSequence_FindBindingByTag::InBindingName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequence_FindBindingByTag, ReturnValue) == 0x000008, "Member 'MovieSceneSequence_FindBindingByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequence_FindBindingsByTag \ +static_assert(alignof(MovieSceneSequence_FindBindingsByTag) == 0x000008, "Wrong alignment on MovieSceneSequence_FindBindingsByTag"); \ +static_assert(sizeof(MovieSceneSequence_FindBindingsByTag) == 0x000018, "Wrong size on MovieSceneSequence_FindBindingsByTag"); \ +static_assert(offsetof(MovieSceneSequence_FindBindingsByTag, InBindingName) == 0x000000, "Member 'MovieSceneSequence_FindBindingsByTag::InBindingName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequence_FindBindingsByTag, ReturnValue) == 0x000008, "Member 'MovieSceneSequence_FindBindingsByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequence_GetEarliestTimecodeSource \ +static_assert(alignof(MovieSceneSequence_GetEarliestTimecodeSource) == 0x000004, "Wrong alignment on MovieSceneSequence_GetEarliestTimecodeSource"); \ +static_assert(sizeof(MovieSceneSequence_GetEarliestTimecodeSource) == 0x000014, "Wrong size on MovieSceneSequence_GetEarliestTimecodeSource"); \ +static_assert(offsetof(MovieSceneSequence_GetEarliestTimecodeSource, ReturnValue) == 0x000000, "Member 'MovieSceneSequence_GetEarliestTimecodeSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSequence \ +static_assert(alignof(UMovieSceneSequence) == 0x000008, "Wrong alignment on UMovieSceneSequence"); \ +static_assert(sizeof(UMovieSceneSequence) == 0x000068, "Wrong size on UMovieSceneSequence"); \ +static_assert(offsetof(UMovieSceneSequence, CompiledData) == 0x000058, "Member 'UMovieSceneSequence::CompiledData' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequence, DefaultCompletionMode) == 0x000060, "Member 'UMovieSceneSequence::DefaultCompletionMode' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequence, bParentContextsAreSignificant) == 0x000061, "Member 'UMovieSceneSequence::bParentContextsAreSignificant' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequence, bPlayableDirectly) == 0x000062, "Member 'UMovieSceneSequence::bPlayableDirectly' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequence, SequenceFlags) == 0x000063, "Member 'UMovieSceneSequence::SequenceFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetBoundObjects \ +static_assert(alignof(MovieSceneSequencePlayer_GetBoundObjects) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_GetBoundObjects"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetBoundObjects) == 0x000028, "Wrong size on MovieSceneSequencePlayer_GetBoundObjects"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetBoundObjects, ObjectBinding) == 0x000000, "Member 'MovieSceneSequencePlayer_GetBoundObjects::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetBoundObjects, ReturnValue) == 0x000018, "Member 'MovieSceneSequencePlayer_GetBoundObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetDisableCameraCuts \ +static_assert(alignof(MovieSceneSequencePlayer_GetDisableCameraCuts) == 0x000001, "Wrong alignment on MovieSceneSequencePlayer_GetDisableCameraCuts"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetDisableCameraCuts) == 0x000001, "Wrong size on MovieSceneSequencePlayer_GetDisableCameraCuts"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetDisableCameraCuts, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetDisableCameraCuts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetObjectBindings \ +static_assert(alignof(MovieSceneSequencePlayer_GetObjectBindings) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_GetObjectBindings"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetObjectBindings) == 0x000018, "Wrong size on MovieSceneSequencePlayer_GetObjectBindings"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetObjectBindings, InObject) == 0x000000, "Member 'MovieSceneSequencePlayer_GetObjectBindings::InObject' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetObjectBindings, ReturnValue) == 0x000008, "Member 'MovieSceneSequencePlayer_GetObjectBindings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_PlayLooping \ +static_assert(alignof(MovieSceneSequencePlayer_PlayLooping) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_PlayLooping"); \ +static_assert(sizeof(MovieSceneSequencePlayer_PlayLooping) == 0x000004, "Wrong size on MovieSceneSequencePlayer_PlayLooping"); \ +static_assert(offsetof(MovieSceneSequencePlayer_PlayLooping, NumLoops) == 0x000000, "Member 'MovieSceneSequencePlayer_PlayLooping::NumLoops' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_PlayTo \ +static_assert(alignof(MovieSceneSequencePlayer_PlayTo) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_PlayTo"); \ +static_assert(sizeof(MovieSceneSequencePlayer_PlayTo) == 0x000030, "Wrong size on MovieSceneSequencePlayer_PlayTo"); \ +static_assert(offsetof(MovieSceneSequencePlayer_PlayTo, PlaybackParams) == 0x000000, "Member 'MovieSceneSequencePlayer_PlayTo::PlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_PlayTo, PlayToParams) == 0x000028, "Member 'MovieSceneSequencePlayer_PlayTo::PlayToParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent \ +static_assert(alignof(MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent"); \ +static_assert(sizeof(MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent) == 0x000010, "Wrong size on MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent, Method) == 0x000000, "Member 'MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent::Method' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent, RelevantTime) == 0x000004, "Member 'MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent::RelevantTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent, NewSerialNumber) == 0x00000C, "Member 'MovieSceneSequencePlayer_RPC_ExplicitServerUpdateEvent::NewSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent \ +static_assert(alignof(MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent"); \ +static_assert(sizeof(MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent) == 0x00000C, "Wrong size on MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent, StoppedTime) == 0x000000, "Member 'MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent::StoppedTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent, NewSerialNumber) == 0x000008, "Member 'MovieSceneSequencePlayer_RPC_OnFinishPlaybackEvent::NewSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_RPC_OnStopEvent \ +static_assert(alignof(MovieSceneSequencePlayer_RPC_OnStopEvent) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_RPC_OnStopEvent"); \ +static_assert(sizeof(MovieSceneSequencePlayer_RPC_OnStopEvent) == 0x00000C, "Wrong size on MovieSceneSequencePlayer_RPC_OnStopEvent"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_OnStopEvent, StoppedTime) == 0x000000, "Member 'MovieSceneSequencePlayer_RPC_OnStopEvent::StoppedTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_RPC_OnStopEvent, NewSerialNumber) == 0x000008, "Member 'MovieSceneSequencePlayer_RPC_OnStopEvent::NewSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetDisableCameraCuts \ +static_assert(alignof(MovieSceneSequencePlayer_SetDisableCameraCuts) == 0x000001, "Wrong alignment on MovieSceneSequencePlayer_SetDisableCameraCuts"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetDisableCameraCuts) == 0x000001, "Wrong size on MovieSceneSequencePlayer_SetDisableCameraCuts"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetDisableCameraCuts, bInDisableCameraCuts) == 0x000000, "Member 'MovieSceneSequencePlayer_SetDisableCameraCuts::bInDisableCameraCuts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetFrameRange \ +static_assert(alignof(MovieSceneSequencePlayer_SetFrameRange) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_SetFrameRange"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetFrameRange) == 0x00000C, "Wrong size on MovieSceneSequencePlayer_SetFrameRange"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetFrameRange, StartFrame) == 0x000000, "Member 'MovieSceneSequencePlayer_SetFrameRange::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetFrameRange, Duration) == 0x000004, "Member 'MovieSceneSequencePlayer_SetFrameRange::Duration' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetFrameRange, SubFrames) == 0x000008, "Member 'MovieSceneSequencePlayer_SetFrameRange::SubFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetFrameRate \ +static_assert(alignof(MovieSceneSequencePlayer_SetFrameRate) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_SetFrameRate"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetFrameRate) == 0x000008, "Wrong size on MovieSceneSequencePlayer_SetFrameRate"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetFrameRate, FrameRate) == 0x000000, "Member 'MovieSceneSequencePlayer_SetFrameRate::FrameRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetPlaybackPosition \ +static_assert(alignof(MovieSceneSequencePlayer_SetPlaybackPosition) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_SetPlaybackPosition"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetPlaybackPosition) == 0x000028, "Wrong size on MovieSceneSequencePlayer_SetPlaybackPosition"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetPlaybackPosition, PlaybackParams) == 0x000000, "Member 'MovieSceneSequencePlayer_SetPlaybackPosition::PlaybackParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetPlayRate \ +static_assert(alignof(MovieSceneSequencePlayer_SetPlayRate) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_SetPlayRate"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetPlayRate) == 0x000004, "Wrong size on MovieSceneSequencePlayer_SetPlayRate"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetPlayRate, PlayRate) == 0x000000, "Member 'MovieSceneSequencePlayer_SetPlayRate::PlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetTimeRange \ +static_assert(alignof(MovieSceneSequencePlayer_SetTimeRange) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_SetTimeRange"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetTimeRange) == 0x000008, "Wrong size on MovieSceneSequencePlayer_SetTimeRange"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetTimeRange, StartTime_0) == 0x000000, "Member 'MovieSceneSequencePlayer_SetTimeRange::StartTime_0' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetTimeRange, Duration) == 0x000004, "Member 'MovieSceneSequencePlayer_SetTimeRange::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_SetWeight \ +static_assert(alignof(MovieSceneSequencePlayer_SetWeight) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_SetWeight"); \ +static_assert(sizeof(MovieSceneSequencePlayer_SetWeight) == 0x000008, "Wrong size on MovieSceneSequencePlayer_SetWeight"); \ +static_assert(offsetof(MovieSceneSequencePlayer_SetWeight, InWeight) == 0x000000, "Member 'MovieSceneSequencePlayer_SetWeight::InWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetCurrentTime \ +static_assert(alignof(MovieSceneSequencePlayer_GetCurrentTime) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetCurrentTime"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetCurrentTime) == 0x000010, "Wrong size on MovieSceneSequencePlayer_GetCurrentTime"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetCurrentTime, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetCurrentTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetDuration \ +static_assert(alignof(MovieSceneSequencePlayer_GetDuration) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetDuration"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetDuration) == 0x000010, "Wrong size on MovieSceneSequencePlayer_GetDuration"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetDuration, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetEndTime \ +static_assert(alignof(MovieSceneSequencePlayer_GetEndTime) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetEndTime"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetEndTime) == 0x000010, "Wrong size on MovieSceneSequencePlayer_GetEndTime"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetEndTime, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetEndTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetFrameDuration \ +static_assert(alignof(MovieSceneSequencePlayer_GetFrameDuration) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetFrameDuration"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetFrameDuration) == 0x000004, "Wrong size on MovieSceneSequencePlayer_GetFrameDuration"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetFrameDuration, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetFrameDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetFrameRate \ +static_assert(alignof(MovieSceneSequencePlayer_GetFrameRate) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetFrameRate"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetFrameRate) == 0x000008, "Wrong size on MovieSceneSequencePlayer_GetFrameRate"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetFrameRate, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetPlayRate \ +static_assert(alignof(MovieSceneSequencePlayer_GetPlayRate) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetPlayRate"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetPlayRate) == 0x000004, "Wrong size on MovieSceneSequencePlayer_GetPlayRate"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetPlayRate, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetSequence \ +static_assert(alignof(MovieSceneSequencePlayer_GetSequence) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_GetSequence"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetSequence) == 0x000008, "Wrong size on MovieSceneSequencePlayer_GetSequence"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetSequence, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetSequenceName \ +static_assert(alignof(MovieSceneSequencePlayer_GetSequenceName) == 0x000008, "Wrong alignment on MovieSceneSequencePlayer_GetSequenceName"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetSequenceName) == 0x000018, "Wrong size on MovieSceneSequencePlayer_GetSequenceName"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetSequenceName, bAddClientInfo) == 0x000000, "Member 'MovieSceneSequencePlayer_GetSequenceName::bAddClientInfo' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetSequenceName, ReturnValue) == 0x000008, "Member 'MovieSceneSequencePlayer_GetSequenceName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_GetStartTime \ +static_assert(alignof(MovieSceneSequencePlayer_GetStartTime) == 0x000004, "Wrong alignment on MovieSceneSequencePlayer_GetStartTime"); \ +static_assert(sizeof(MovieSceneSequencePlayer_GetStartTime) == 0x000010, "Wrong size on MovieSceneSequencePlayer_GetStartTime"); \ +static_assert(offsetof(MovieSceneSequencePlayer_GetStartTime, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_GetStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_IsPaused \ +static_assert(alignof(MovieSceneSequencePlayer_IsPaused) == 0x000001, "Wrong alignment on MovieSceneSequencePlayer_IsPaused"); \ +static_assert(sizeof(MovieSceneSequencePlayer_IsPaused) == 0x000001, "Wrong size on MovieSceneSequencePlayer_IsPaused"); \ +static_assert(offsetof(MovieSceneSequencePlayer_IsPaused, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_IsPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_IsPlaying \ +static_assert(alignof(MovieSceneSequencePlayer_IsPlaying) == 0x000001, "Wrong alignment on MovieSceneSequencePlayer_IsPlaying"); \ +static_assert(sizeof(MovieSceneSequencePlayer_IsPlaying) == 0x000001, "Wrong size on MovieSceneSequencePlayer_IsPlaying"); \ +static_assert(offsetof(MovieSceneSequencePlayer_IsPlaying, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequencePlayer_IsReversed \ +static_assert(alignof(MovieSceneSequencePlayer_IsReversed) == 0x000001, "Wrong alignment on MovieSceneSequencePlayer_IsReversed"); \ +static_assert(sizeof(MovieSceneSequencePlayer_IsReversed) == 0x000001, "Wrong size on MovieSceneSequencePlayer_IsReversed"); \ +static_assert(offsetof(MovieSceneSequencePlayer_IsReversed, ReturnValue) == 0x000000, "Member 'MovieSceneSequencePlayer_IsReversed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSequencePlayer \ +static_assert(alignof(UMovieSceneSequencePlayer) == 0x000008, "Wrong alignment on UMovieSceneSequencePlayer"); \ +static_assert(sizeof(UMovieSceneSequencePlayer) == 0x0004C8, "Wrong size on UMovieSceneSequencePlayer"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, Observer) == 0x000228, "Member 'UMovieSceneSequencePlayer::Observer' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, OnPlay) == 0x000238, "Member 'UMovieSceneSequencePlayer::OnPlay' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, OnPlayReverse) == 0x000248, "Member 'UMovieSceneSequencePlayer::OnPlayReverse' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, OnStop) == 0x000258, "Member 'UMovieSceneSequencePlayer::OnStop' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, OnPause) == 0x000268, "Member 'UMovieSceneSequencePlayer::OnPause' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, OnFinished) == 0x000278, "Member 'UMovieSceneSequencePlayer::OnFinished' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, Status) == 0x000288, "Member 'UMovieSceneSequencePlayer::Status' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, Sequence) == 0x000290, "Member 'UMovieSceneSequencePlayer::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, StartTime) == 0x000298, "Member 'UMovieSceneSequencePlayer::StartTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, DurationFrames) == 0x00029C, "Member 'UMovieSceneSequencePlayer::DurationFrames' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, DurationSubFrames) == 0x0002A0, "Member 'UMovieSceneSequencePlayer::DurationSubFrames' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, CurrentNumLoops) == 0x0002A4, "Member 'UMovieSceneSequencePlayer::CurrentNumLoops' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, SerialNumber) == 0x0002A8, "Member 'UMovieSceneSequencePlayer::SerialNumber' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, PlaybackSettings) == 0x0002AC, "Member 'UMovieSceneSequencePlayer::PlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, RootTemplateInstance) == 0x0002D0, "Member 'UMovieSceneSequencePlayer::RootTemplateInstance' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, NetSyncProps) == 0x0003E8, "Member 'UMovieSceneSequencePlayer::NetSyncProps' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, PlaybackClient) == 0x000400, "Member 'UMovieSceneSequencePlayer::PlaybackClient' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSequencePlayer, TickManager) == 0x000410, "Member 'UMovieSceneSequencePlayer::TickManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSequenceTickManager \ +static_assert(alignof(UMovieSceneSequenceTickManager) == 0x000008, "Wrong alignment on UMovieSceneSequenceTickManager"); \ +static_assert(sizeof(UMovieSceneSequenceTickManager) == 0x000098, "Wrong size on UMovieSceneSequenceTickManager"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBoolSection \ +static_assert(alignof(UMovieSceneBoolSection) == 0x000008, "Wrong alignment on UMovieSceneBoolSection"); \ +static_assert(sizeof(UMovieSceneBoolSection) == 0x0001F8, "Wrong size on UMovieSceneBoolSection"); \ +static_assert(offsetof(UMovieSceneBoolSection, DefaultValue) == 0x0000F0, "Member 'UMovieSceneBoolSection::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneBoolSection, BoolCurve) == 0x0000F8, "Member 'UMovieSceneBoolSection::BoolCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneHookSection \ +static_assert(alignof(UMovieSceneHookSection) == 0x000008, "Wrong alignment on UMovieSceneHookSection"); \ +static_assert(sizeof(UMovieSceneHookSection) == 0x000108, "Wrong size on UMovieSceneHookSection"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSpawnSection \ +static_assert(alignof(UMovieSceneSpawnSection) == 0x000008, "Wrong alignment on UMovieSceneSpawnSection"); \ +static_assert(sizeof(UMovieSceneSpawnSection) == 0x000200, "Wrong size on UMovieSceneSpawnSection"); \ + +#define DUMPER7_ASSERTS_MovieSceneSubSection_SetSequence \ +static_assert(alignof(MovieSceneSubSection_SetSequence) == 0x000008, "Wrong alignment on MovieSceneSubSection_SetSequence"); \ +static_assert(sizeof(MovieSceneSubSection_SetSequence) == 0x000008, "Wrong size on MovieSceneSubSection_SetSequence"); \ +static_assert(offsetof(MovieSceneSubSection_SetSequence, Sequence) == 0x000000, "Member 'MovieSceneSubSection_SetSequence::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSubSection_GetSequence \ +static_assert(alignof(MovieSceneSubSection_GetSequence) == 0x000008, "Wrong alignment on MovieSceneSubSection_GetSequence"); \ +static_assert(sizeof(MovieSceneSubSection_GetSequence) == 0x000008, "Wrong size on MovieSceneSubSection_GetSequence"); \ +static_assert(offsetof(MovieSceneSubSection_GetSequence, ReturnValue) == 0x000000, "Member 'MovieSceneSubSection_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSubSection \ +static_assert(alignof(UMovieSceneSubSection) == 0x000008, "Wrong alignment on UMovieSceneSubSection"); \ +static_assert(sizeof(UMovieSceneSubSection) == 0x000138, "Wrong size on UMovieSceneSubSection"); \ +static_assert(offsetof(UMovieSceneSubSection, Parameters) == 0x0000F8, "Member 'UMovieSceneSubSection::Parameters' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSubSection, StartOffset) == 0x000120, "Member 'UMovieSceneSubSection::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSubSection, TimeScale) == 0x000124, "Member 'UMovieSceneSubSection::TimeScale' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSubSection, PrerollTime_MovieSceneSubSection) == 0x000128, "Member 'UMovieSceneSubSection::PrerollTime_MovieSceneSubSection' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSubSection, NetworkMask) == 0x00012C, "Member 'UMovieSceneSubSection::NetworkMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSubSection, SubSequence) == 0x000130, "Member 'UMovieSceneSubSection::SubSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneTrack \ +static_assert(alignof(UTestMovieSceneTrack) == 0x000008, "Wrong alignment on UTestMovieSceneTrack"); \ +static_assert(sizeof(UTestMovieSceneTrack) == 0x0000B8, "Wrong size on UTestMovieSceneTrack"); \ +static_assert(offsetof(UTestMovieSceneTrack, bHighPassFilter) == 0x0000A0, "Member 'UTestMovieSceneTrack::bHighPassFilter' has a wrong offset!"); \ +static_assert(offsetof(UTestMovieSceneTrack, SectionArray) == 0x0000A8, "Member 'UTestMovieSceneTrack::SectionArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneSection \ +static_assert(alignof(UTestMovieSceneSection) == 0x000008, "Wrong alignment on UTestMovieSceneSection"); \ +static_assert(sizeof(UTestMovieSceneSection) == 0x0000F0, "Wrong size on UTestMovieSceneSection"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneSequence \ +static_assert(alignof(UTestMovieSceneSequence) == 0x000008, "Wrong alignment on UTestMovieSceneSequence"); \ +static_assert(sizeof(UTestMovieSceneSequence) == 0x000070, "Wrong size on UTestMovieSceneSequence"); \ +static_assert(offsetof(UTestMovieSceneSequence, MovieScene) == 0x000068, "Member 'UTestMovieSceneSequence::MovieScene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSubTrack \ +static_assert(alignof(UMovieSceneSubTrack) == 0x000008, "Wrong alignment on UMovieSceneSubTrack"); \ +static_assert(sizeof(UMovieSceneSubTrack) == 0x0000A8, "Wrong size on UMovieSceneSubTrack"); \ +static_assert(offsetof(UMovieSceneSubTrack, Sections) == 0x000098, "Member 'UMovieSceneSubTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneSubTrack \ +static_assert(alignof(UTestMovieSceneSubTrack) == 0x000008, "Wrong alignment on UTestMovieSceneSubTrack"); \ +static_assert(sizeof(UTestMovieSceneSubTrack) == 0x0000B8, "Wrong size on UTestMovieSceneSubTrack"); \ +static_assert(offsetof(UTestMovieSceneSubTrack, SectionArray) == 0x0000A8, "Member 'UTestMovieSceneSubTrack::SectionArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneSubSection \ +static_assert(alignof(UTestMovieSceneSubSection) == 0x000008, "Wrong alignment on UTestMovieSceneSubSection"); \ +static_assert(sizeof(UTestMovieSceneSubSection) == 0x000138, "Wrong size on UTestMovieSceneSubSection"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneEvalHookTrack \ +static_assert(alignof(UTestMovieSceneEvalHookTrack) == 0x000008, "Wrong alignment on UTestMovieSceneEvalHookTrack"); \ +static_assert(sizeof(UTestMovieSceneEvalHookTrack) == 0x0000A8, "Wrong size on UTestMovieSceneEvalHookTrack"); \ +static_assert(offsetof(UTestMovieSceneEvalHookTrack, SectionArray) == 0x000098, "Member 'UTestMovieSceneEvalHookTrack::SectionArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestMovieSceneEvalHookSection \ +static_assert(alignof(UTestMovieSceneEvalHookSection) == 0x000008, "Wrong alignment on UTestMovieSceneEvalHookSection"); \ +static_assert(sizeof(UTestMovieSceneEvalHookSection) == 0x000120, "Wrong size on UTestMovieSceneEvalHookSection"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSpawnTrack \ +static_assert(alignof(UMovieSceneSpawnTrack) == 0x000008, "Wrong alignment on UMovieSceneSpawnTrack"); \ +static_assert(sizeof(UMovieSceneSpawnTrack) == 0x0000B8, "Wrong size on UMovieSceneSpawnTrack"); \ +static_assert(offsetof(UMovieSceneSpawnTrack, Sections) == 0x000098, "Member 'UMovieSceneSpawnTrack::Sections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSpawnTrack, ObjectGuid) == 0x0000A8, "Member 'UMovieSceneSpawnTrack::ObjectGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_TwitchyReaction_C \ +static_assert(alignof(UGE_TwitchyReaction_C) == 0x000008, "Wrong alignment on UGE_TwitchyReaction_C"); \ +static_assert(sizeof(UGE_TwitchyReaction_C) == 0x000A70, "Wrong size on UGE_TwitchyReaction_C"); \ + +#define DUMPER7_ASSERTS_FChaosPhysicsCollisionInfo \ +static_assert(alignof(FChaosPhysicsCollisionInfo) == 0x000008, "Wrong alignment on FChaosPhysicsCollisionInfo"); \ +static_assert(sizeof(FChaosPhysicsCollisionInfo) == 0x0000C0, "Wrong size on FChaosPhysicsCollisionInfo"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, Component) == 0x000000, "Member 'FChaosPhysicsCollisionInfo::Component' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, OtherComponent) == 0x000008, "Member 'FChaosPhysicsCollisionInfo::OtherComponent' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, Location) == 0x000010, "Member 'FChaosPhysicsCollisionInfo::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, Normal) == 0x000028, "Member 'FChaosPhysicsCollisionInfo::Normal' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, AccumulatedImpulse) == 0x000040, "Member 'FChaosPhysicsCollisionInfo::AccumulatedImpulse' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, Velocity) == 0x000058, "Member 'FChaosPhysicsCollisionInfo::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, OtherVelocity) == 0x000070, "Member 'FChaosPhysicsCollisionInfo::OtherVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, AngularVelocity) == 0x000088, "Member 'FChaosPhysicsCollisionInfo::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, OtherAngularVelocity) == 0x0000A0, "Member 'FChaosPhysicsCollisionInfo::OtherAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, MASS) == 0x0000B8, "Member 'FChaosPhysicsCollisionInfo::MASS' has a wrong offset!"); \ +static_assert(offsetof(FChaosPhysicsCollisionInfo, OtherMass) == 0x0000BC, "Member 'FChaosPhysicsCollisionInfo::OtherMass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBreakEventCallbackWrapper \ +static_assert(alignof(FBreakEventCallbackWrapper) == 0x000010, "Wrong alignment on FBreakEventCallbackWrapper"); \ +static_assert(sizeof(FBreakEventCallbackWrapper) == 0x000040, "Wrong size on FBreakEventCallbackWrapper"); \ + +#define DUMPER7_ASSERTS_FRemovalEventCallbackWrapper \ +static_assert(alignof(FRemovalEventCallbackWrapper) == 0x000010, "Wrong alignment on FRemovalEventCallbackWrapper"); \ +static_assert(sizeof(FRemovalEventCallbackWrapper) == 0x000040, "Wrong size on FRemovalEventCallbackWrapper"); \ + +#define DUMPER7_ASSERTS_FCrumblingEventCallbackWrapper \ +static_assert(alignof(FCrumblingEventCallbackWrapper) == 0x000010, "Wrong alignment on FCrumblingEventCallbackWrapper"); \ +static_assert(sizeof(FCrumblingEventCallbackWrapper) == 0x000040, "Wrong size on FCrumblingEventCallbackWrapper"); \ + +#define DUMPER7_ASSERTS_FChaosHandlerSet \ +static_assert(alignof(FChaosHandlerSet) == 0x000008, "Wrong alignment on FChaosHandlerSet"); \ +static_assert(sizeof(FChaosHandlerSet) == 0x000058, "Wrong size on FChaosHandlerSet"); \ +static_assert(offsetof(FChaosHandlerSet, ChaosHandlers) == 0x000008, "Member 'FChaosHandlerSet::ChaosHandlers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosDebugSubstepControl \ +static_assert(alignof(FChaosDebugSubstepControl) == 0x000001, "Wrong alignment on FChaosDebugSubstepControl"); \ +static_assert(sizeof(FChaosDebugSubstepControl) == 0x000003, "Wrong size on FChaosDebugSubstepControl"); \ +static_assert(offsetof(FChaosDebugSubstepControl, bPause) == 0x000000, "Member 'FChaosDebugSubstepControl::bPause' has a wrong offset!"); \ +static_assert(offsetof(FChaosDebugSubstepControl, bSubstep) == 0x000001, "Member 'FChaosDebugSubstepControl::bSubstep' has a wrong offset!"); \ +static_assert(offsetof(FChaosDebugSubstepControl, bStep) == 0x000002, "Member 'FChaosDebugSubstepControl::bStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosDebugDrawComponent \ +static_assert(alignof(UChaosDebugDrawComponent) == 0x000008, "Wrong alignment on UChaosDebugDrawComponent"); \ +static_assert(sizeof(UChaosDebugDrawComponent) == 0x0000A8, "Wrong size on UChaosDebugDrawComponent"); \ + +#define DUMPER7_ASSERTS_UChaosEventListenerComponent \ +static_assert(alignof(UChaosEventListenerComponent) == 0x000008, "Wrong alignment on UChaosEventListenerComponent"); \ +static_assert(sizeof(UChaosEventListenerComponent) == 0x0000A8, "Wrong size on UChaosEventListenerComponent"); \ + +#define DUMPER7_ASSERTS_UChaosGameplayEventDispatcher \ +static_assert(alignof(UChaosGameplayEventDispatcher) == 0x000008, "Wrong alignment on UChaosGameplayEventDispatcher"); \ +static_assert(sizeof(UChaosGameplayEventDispatcher) == 0x0002B8, "Wrong size on UChaosGameplayEventDispatcher"); \ +static_assert(offsetof(UChaosGameplayEventDispatcher, CollisionEventRegistrations) == 0x000168, "Member 'UChaosGameplayEventDispatcher::CollisionEventRegistrations' has a wrong offset!"); \ +static_assert(offsetof(UChaosGameplayEventDispatcher, BreakEventRegistrations) == 0x0001B8, "Member 'UChaosGameplayEventDispatcher::BreakEventRegistrations' has a wrong offset!"); \ +static_assert(offsetof(UChaosGameplayEventDispatcher, RemovalEventRegistrations) == 0x000208, "Member 'UChaosGameplayEventDispatcher::RemovalEventRegistrations' has a wrong offset!"); \ +static_assert(offsetof(UChaosGameplayEventDispatcher, CrumblingEventRegistrations) == 0x000258, "Member 'UChaosGameplayEventDispatcher::CrumblingEventRegistrations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IChaosNotifyHandlerInterface \ +static_assert(alignof(IChaosNotifyHandlerInterface) == 0x000001, "Wrong alignment on IChaosNotifyHandlerInterface"); \ +static_assert(sizeof(IChaosNotifyHandlerInterface) == 0x000001, "Wrong size on IChaosNotifyHandlerInterface"); \ + +#define DUMPER7_ASSERTS_ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult \ +static_assert(alignof(ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult) == 0x000008, "Wrong alignment on ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult"); \ +static_assert(sizeof(ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult) == 0x0001A8, "Wrong size on ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult"); \ +static_assert(offsetof(ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult, PhysicsCollision) == 0x000000, "Member 'ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult::PhysicsCollision' has a wrong offset!"); \ +static_assert(offsetof(ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult, ReturnValue) == 0x0000C0, "Member 'ChaosSolverEngineBlueprintLibrary_ConvertPhysicsCollisionToHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosSolverEngineBlueprintLibrary \ +static_assert(alignof(UChaosSolverEngineBlueprintLibrary) == 0x000008, "Wrong alignment on UChaosSolverEngineBlueprintLibrary"); \ +static_assert(sizeof(UChaosSolverEngineBlueprintLibrary) == 0x000028, "Wrong size on UChaosSolverEngineBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UChaosSolver \ +static_assert(alignof(UChaosSolver) == 0x000008, "Wrong alignment on UChaosSolver"); \ +static_assert(sizeof(UChaosSolver) == 0x000028, "Wrong size on UChaosSolver"); \ + +#define DUMPER7_ASSERTS_ChaosSolverActor_SetSolverActive \ +static_assert(alignof(ChaosSolverActor_SetSolverActive) == 0x000001, "Wrong alignment on ChaosSolverActor_SetSolverActive"); \ +static_assert(sizeof(ChaosSolverActor_SetSolverActive) == 0x000001, "Wrong size on ChaosSolverActor_SetSolverActive"); \ +static_assert(offsetof(ChaosSolverActor_SetSolverActive, bActive) == 0x000000, "Member 'ChaosSolverActor_SetSolverActive::bActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AChaosSolverActor \ +static_assert(alignof(AChaosSolverActor) == 0x000008, "Wrong alignment on AChaosSolverActor"); \ +static_assert(sizeof(AChaosSolverActor) == 0x000390, "Wrong size on AChaosSolverActor"); \ +static_assert(offsetof(AChaosSolverActor, Properties) == 0x000298, "Member 'AChaosSolverActor::Properties' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, TimeStepMultiplier) == 0x000300, "Member 'AChaosSolverActor::TimeStepMultiplier' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, CollisionIterations) == 0x000304, "Member 'AChaosSolverActor::CollisionIterations' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, PushOutIterations) == 0x000308, "Member 'AChaosSolverActor::PushOutIterations' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, PushOutPairIterations) == 0x00030C, "Member 'AChaosSolverActor::PushOutPairIterations' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, ClusterConnectionFactor) == 0x000310, "Member 'AChaosSolverActor::ClusterConnectionFactor' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, ClusterUnionConnectionType) == 0x000314, "Member 'AChaosSolverActor::ClusterUnionConnectionType' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, DoGenerateCollisionData) == 0x000315, "Member 'AChaosSolverActor::DoGenerateCollisionData' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, CollisionFilterSettings) == 0x000318, "Member 'AChaosSolverActor::CollisionFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, DoGenerateBreakingData) == 0x000328, "Member 'AChaosSolverActor::DoGenerateBreakingData' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, BreakingFilterSettings) == 0x00032C, "Member 'AChaosSolverActor::BreakingFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, DoGenerateTrailingData) == 0x00033C, "Member 'AChaosSolverActor::DoGenerateTrailingData' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, TrailingFilterSettings) == 0x000340, "Member 'AChaosSolverActor::TrailingFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, MassScale) == 0x000350, "Member 'AChaosSolverActor::MassScale' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, bHasFloor) == 0x000354, "Member 'AChaosSolverActor::bHasFloor' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, FloorHeight) == 0x000358, "Member 'AChaosSolverActor::FloorHeight' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, ChaosDebugSubstepControl) == 0x00035C, "Member 'AChaosSolverActor::ChaosDebugSubstepControl' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, SpriteComponent) == 0x000360, "Member 'AChaosSolverActor::SpriteComponent' has a wrong offset!"); \ +static_assert(offsetof(AChaosSolverActor, GameplayEventDispatcherComponent) == 0x000380, "Member 'AChaosSolverActor::GameplayEventDispatcherComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosSolverSettings \ +static_assert(alignof(UChaosSolverSettings) == 0x000008, "Wrong alignment on UChaosSolverSettings"); \ +static_assert(sizeof(UChaosSolverSettings) == 0x000060, "Wrong size on UChaosSolverSettings"); \ +static_assert(offsetof(UChaosSolverSettings, DefaultChaosSolverActorClass) == 0x000040, "Member 'UChaosSolverSettings::DefaultChaosSolverActorClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldObjectCommands \ +static_assert(alignof(FFieldObjectCommands) == 0x000008, "Wrong alignment on FFieldObjectCommands"); \ +static_assert(sizeof(FFieldObjectCommands) == 0x000030, "Wrong size on FFieldObjectCommands"); \ +static_assert(offsetof(FFieldObjectCommands, TargetNames) == 0x000000, "Member 'FFieldObjectCommands::TargetNames' has a wrong offset!"); \ +static_assert(offsetof(FFieldObjectCommands, RootNodes) == 0x000010, "Member 'FFieldObjectCommands::RootNodes' has a wrong offset!"); \ +static_assert(offsetof(FFieldObjectCommands, MetaDatas) == 0x000020, "Member 'FFieldObjectCommands::MetaDatas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AFieldSystemActor \ +static_assert(alignof(AFieldSystemActor) == 0x000008, "Wrong alignment on AFieldSystemActor"); \ +static_assert(sizeof(AFieldSystemActor) == 0x0002A0, "Wrong size on AFieldSystemActor"); \ +static_assert(offsetof(AFieldSystemActor, FieldSystemComponent) == 0x000298, "Member 'AFieldSystemActor::FieldSystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystem \ +static_assert(alignof(UFieldSystem) == 0x000008, "Wrong alignment on UFieldSystem"); \ +static_assert(sizeof(UFieldSystem) == 0x000038, "Wrong size on UFieldSystem"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_AddFieldCommand \ +static_assert(alignof(FieldSystemComponent_AddFieldCommand) == 0x000008, "Wrong alignment on FieldSystemComponent_AddFieldCommand"); \ +static_assert(sizeof(FieldSystemComponent_AddFieldCommand) == 0x000018, "Wrong size on FieldSystemComponent_AddFieldCommand"); \ +static_assert(offsetof(FieldSystemComponent_AddFieldCommand, Enabled) == 0x000000, "Member 'FieldSystemComponent_AddFieldCommand::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddFieldCommand, Target) == 0x000001, "Member 'FieldSystemComponent_AddFieldCommand::Target' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddFieldCommand, MetaData) == 0x000008, "Member 'FieldSystemComponent_AddFieldCommand::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddFieldCommand, Field) == 0x000010, "Member 'FieldSystemComponent_AddFieldCommand::Field' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_AddPersistentField \ +static_assert(alignof(FieldSystemComponent_AddPersistentField) == 0x000008, "Wrong alignment on FieldSystemComponent_AddPersistentField"); \ +static_assert(sizeof(FieldSystemComponent_AddPersistentField) == 0x000018, "Wrong size on FieldSystemComponent_AddPersistentField"); \ +static_assert(offsetof(FieldSystemComponent_AddPersistentField, Enabled) == 0x000000, "Member 'FieldSystemComponent_AddPersistentField::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddPersistentField, Target) == 0x000001, "Member 'FieldSystemComponent_AddPersistentField::Target' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddPersistentField, MetaData) == 0x000008, "Member 'FieldSystemComponent_AddPersistentField::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_AddPersistentField, Field) == 0x000010, "Member 'FieldSystemComponent_AddPersistentField::Field' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyLinearForce \ +static_assert(alignof(FieldSystemComponent_ApplyLinearForce) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyLinearForce"); \ +static_assert(sizeof(FieldSystemComponent_ApplyLinearForce) == 0x000028, "Wrong size on FieldSystemComponent_ApplyLinearForce"); \ +static_assert(offsetof(FieldSystemComponent_ApplyLinearForce, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyLinearForce::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyLinearForce, Direction) == 0x000008, "Member 'FieldSystemComponent_ApplyLinearForce::Direction' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyLinearForce, Magnitude) == 0x000020, "Member 'FieldSystemComponent_ApplyLinearForce::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyPhysicsField \ +static_assert(alignof(FieldSystemComponent_ApplyPhysicsField) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyPhysicsField"); \ +static_assert(sizeof(FieldSystemComponent_ApplyPhysicsField) == 0x000018, "Wrong size on FieldSystemComponent_ApplyPhysicsField"); \ +static_assert(offsetof(FieldSystemComponent_ApplyPhysicsField, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyPhysicsField::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyPhysicsField, Target) == 0x000001, "Member 'FieldSystemComponent_ApplyPhysicsField::Target' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyPhysicsField, MetaData) == 0x000008, "Member 'FieldSystemComponent_ApplyPhysicsField::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyPhysicsField, Field) == 0x000010, "Member 'FieldSystemComponent_ApplyPhysicsField::Field' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyRadialForce \ +static_assert(alignof(FieldSystemComponent_ApplyRadialForce) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyRadialForce"); \ +static_assert(sizeof(FieldSystemComponent_ApplyRadialForce) == 0x000028, "Wrong size on FieldSystemComponent_ApplyRadialForce"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialForce, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyRadialForce::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialForce, Position) == 0x000008, "Member 'FieldSystemComponent_ApplyRadialForce::Position' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialForce, Magnitude) == 0x000020, "Member 'FieldSystemComponent_ApplyRadialForce::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyRadialVectorFalloffForce \ +static_assert(alignof(FieldSystemComponent_ApplyRadialVectorFalloffForce) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyRadialVectorFalloffForce"); \ +static_assert(sizeof(FieldSystemComponent_ApplyRadialVectorFalloffForce) == 0x000028, "Wrong size on FieldSystemComponent_ApplyRadialVectorFalloffForce"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialVectorFalloffForce, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyRadialVectorFalloffForce::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialVectorFalloffForce, Position) == 0x000008, "Member 'FieldSystemComponent_ApplyRadialVectorFalloffForce::Position' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialVectorFalloffForce, Radius) == 0x000020, "Member 'FieldSystemComponent_ApplyRadialVectorFalloffForce::Radius' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyRadialVectorFalloffForce, Magnitude) == 0x000024, "Member 'FieldSystemComponent_ApplyRadialVectorFalloffForce::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyStayDynamicField \ +static_assert(alignof(FieldSystemComponent_ApplyStayDynamicField) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyStayDynamicField"); \ +static_assert(sizeof(FieldSystemComponent_ApplyStayDynamicField) == 0x000028, "Wrong size on FieldSystemComponent_ApplyStayDynamicField"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStayDynamicField, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyStayDynamicField::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStayDynamicField, Position) == 0x000008, "Member 'FieldSystemComponent_ApplyStayDynamicField::Position' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStayDynamicField, Radius) == 0x000020, "Member 'FieldSystemComponent_ApplyStayDynamicField::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyStrainField \ +static_assert(alignof(FieldSystemComponent_ApplyStrainField) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyStrainField"); \ +static_assert(sizeof(FieldSystemComponent_ApplyStrainField) == 0x000030, "Wrong size on FieldSystemComponent_ApplyStrainField"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStrainField, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyStrainField::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStrainField, Position) == 0x000008, "Member 'FieldSystemComponent_ApplyStrainField::Position' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStrainField, Radius) == 0x000020, "Member 'FieldSystemComponent_ApplyStrainField::Radius' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStrainField, Magnitude) == 0x000024, "Member 'FieldSystemComponent_ApplyStrainField::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyStrainField, Iterations) == 0x000028, "Member 'FieldSystemComponent_ApplyStrainField::Iterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemComponent_ApplyUniformVectorFalloffForce \ +static_assert(alignof(FieldSystemComponent_ApplyUniformVectorFalloffForce) == 0x000008, "Wrong alignment on FieldSystemComponent_ApplyUniformVectorFalloffForce"); \ +static_assert(sizeof(FieldSystemComponent_ApplyUniformVectorFalloffForce) == 0x000040, "Wrong size on FieldSystemComponent_ApplyUniformVectorFalloffForce"); \ +static_assert(offsetof(FieldSystemComponent_ApplyUniformVectorFalloffForce, Enabled) == 0x000000, "Member 'FieldSystemComponent_ApplyUniformVectorFalloffForce::Enabled' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyUniformVectorFalloffForce, Position) == 0x000008, "Member 'FieldSystemComponent_ApplyUniformVectorFalloffForce::Position' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyUniformVectorFalloffForce, Direction) == 0x000020, "Member 'FieldSystemComponent_ApplyUniformVectorFalloffForce::Direction' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyUniformVectorFalloffForce, Radius) == 0x000038, "Member 'FieldSystemComponent_ApplyUniformVectorFalloffForce::Radius' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemComponent_ApplyUniformVectorFalloffForce, Magnitude) == 0x00003C, "Member 'FieldSystemComponent_ApplyUniformVectorFalloffForce::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystemComponent \ +static_assert(alignof(UFieldSystemComponent) == 0x000010, "Wrong alignment on UFieldSystemComponent"); \ +static_assert(sizeof(UFieldSystemComponent) == 0x000640, "Wrong size on UFieldSystemComponent"); \ +static_assert(offsetof(UFieldSystemComponent, FieldSystem) == 0x000570, "Member 'UFieldSystemComponent::FieldSystem' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemComponent, bIsWorldField) == 0x000578, "Member 'UFieldSystemComponent::bIsWorldField' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemComponent, bIsChaosField) == 0x000579, "Member 'UFieldSystemComponent::bIsChaosField' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemComponent, SupportedSolvers) == 0x000580, "Member 'UFieldSystemComponent::SupportedSolvers' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemComponent, ConstructionCommands) == 0x000590, "Member 'UFieldSystemComponent::ConstructionCommands' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemComponent, BufferCommands) == 0x0005C0, "Member 'UFieldSystemComponent::BufferCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystemMetaData \ +static_assert(alignof(UFieldSystemMetaData) == 0x000008, "Wrong alignment on UFieldSystemMetaData"); \ +static_assert(sizeof(UFieldSystemMetaData) == 0x0000A0, "Wrong size on UFieldSystemMetaData"); \ + +#define DUMPER7_ASSERTS_FieldSystemMetaDataIteration_SetMetaDataIteration \ +static_assert(alignof(FieldSystemMetaDataIteration_SetMetaDataIteration) == 0x000008, "Wrong alignment on FieldSystemMetaDataIteration_SetMetaDataIteration"); \ +static_assert(sizeof(FieldSystemMetaDataIteration_SetMetaDataIteration) == 0x000010, "Wrong size on FieldSystemMetaDataIteration_SetMetaDataIteration"); \ +static_assert(offsetof(FieldSystemMetaDataIteration_SetMetaDataIteration, Iterations_0) == 0x000000, "Member 'FieldSystemMetaDataIteration_SetMetaDataIteration::Iterations_0' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemMetaDataIteration_SetMetaDataIteration, ReturnValue) == 0x000008, "Member 'FieldSystemMetaDataIteration_SetMetaDataIteration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystemMetaDataIteration \ +static_assert(alignof(UFieldSystemMetaDataIteration) == 0x000008, "Wrong alignment on UFieldSystemMetaDataIteration"); \ +static_assert(sizeof(UFieldSystemMetaDataIteration) == 0x0000A8, "Wrong size on UFieldSystemMetaDataIteration"); \ +static_assert(offsetof(UFieldSystemMetaDataIteration, Iterations) == 0x0000A0, "Member 'UFieldSystemMetaDataIteration::Iterations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType \ +static_assert(alignof(FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType) == 0x000008, "Wrong alignment on FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType"); \ +static_assert(sizeof(FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType) == 0x000010, "Wrong size on FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType"); \ +static_assert(offsetof(FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType, ResolutionType_0) == 0x000000, "Member 'FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType::ResolutionType_0' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType, ReturnValue) == 0x000008, "Member 'FieldSystemMetaDataProcessingResolution_SetMetaDataaProcessingResolutionType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystemMetaDataProcessingResolution \ +static_assert(alignof(UFieldSystemMetaDataProcessingResolution) == 0x000008, "Wrong alignment on UFieldSystemMetaDataProcessingResolution"); \ +static_assert(sizeof(UFieldSystemMetaDataProcessingResolution) == 0x0000A8, "Wrong size on UFieldSystemMetaDataProcessingResolution"); \ +static_assert(offsetof(UFieldSystemMetaDataProcessingResolution, ResolutionType) == 0x0000A0, "Member 'UFieldSystemMetaDataProcessingResolution::ResolutionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FieldSystemMetaDataFilter_SetMetaDataFilterType \ +static_assert(alignof(FieldSystemMetaDataFilter_SetMetaDataFilterType) == 0x000008, "Wrong alignment on FieldSystemMetaDataFilter_SetMetaDataFilterType"); \ +static_assert(sizeof(FieldSystemMetaDataFilter_SetMetaDataFilterType) == 0x000010, "Wrong size on FieldSystemMetaDataFilter_SetMetaDataFilterType"); \ +static_assert(offsetof(FieldSystemMetaDataFilter_SetMetaDataFilterType, FilterType_0) == 0x000000, "Member 'FieldSystemMetaDataFilter_SetMetaDataFilterType::FilterType_0' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemMetaDataFilter_SetMetaDataFilterType, ObjectType_0) == 0x000001, "Member 'FieldSystemMetaDataFilter_SetMetaDataFilterType::ObjectType_0' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemMetaDataFilter_SetMetaDataFilterType, PositionType_0) == 0x000002, "Member 'FieldSystemMetaDataFilter_SetMetaDataFilterType::PositionType_0' has a wrong offset!"); \ +static_assert(offsetof(FieldSystemMetaDataFilter_SetMetaDataFilterType, ReturnValue) == 0x000008, "Member 'FieldSystemMetaDataFilter_SetMetaDataFilterType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldSystemMetaDataFilter \ +static_assert(alignof(UFieldSystemMetaDataFilter) == 0x000008, "Wrong alignment on UFieldSystemMetaDataFilter"); \ +static_assert(sizeof(UFieldSystemMetaDataFilter) == 0x0000A8, "Wrong size on UFieldSystemMetaDataFilter"); \ +static_assert(offsetof(UFieldSystemMetaDataFilter, FilterType) == 0x0000A0, "Member 'UFieldSystemMetaDataFilter::FilterType' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemMetaDataFilter, ObjectType) == 0x0000A1, "Member 'UFieldSystemMetaDataFilter::ObjectType' has a wrong offset!"); \ +static_assert(offsetof(UFieldSystemMetaDataFilter, PositionType) == 0x0000A2, "Member 'UFieldSystemMetaDataFilter::PositionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFieldNodeBase \ +static_assert(alignof(UFieldNodeBase) == 0x000008, "Wrong alignment on UFieldNodeBase"); \ +static_assert(sizeof(UFieldNodeBase) == 0x0000A0, "Wrong size on UFieldNodeBase"); \ + +#define DUMPER7_ASSERTS_UFieldNodeInt \ +static_assert(alignof(UFieldNodeInt) == 0x000008, "Wrong alignment on UFieldNodeInt"); \ +static_assert(sizeof(UFieldNodeInt) == 0x0000A0, "Wrong size on UFieldNodeInt"); \ + +#define DUMPER7_ASSERTS_UFieldNodeFloat \ +static_assert(alignof(UFieldNodeFloat) == 0x000008, "Wrong alignment on UFieldNodeFloat"); \ +static_assert(sizeof(UFieldNodeFloat) == 0x0000A0, "Wrong size on UFieldNodeFloat"); \ + +#define DUMPER7_ASSERTS_UFieldNodeVector \ +static_assert(alignof(UFieldNodeVector) == 0x000008, "Wrong alignment on UFieldNodeVector"); \ +static_assert(sizeof(UFieldNodeVector) == 0x0000A0, "Wrong size on UFieldNodeVector"); \ + +#define DUMPER7_ASSERTS_UniformInteger_SetUniformInteger \ +static_assert(alignof(UniformInteger_SetUniformInteger) == 0x000008, "Wrong alignment on UniformInteger_SetUniformInteger"); \ +static_assert(sizeof(UniformInteger_SetUniformInteger) == 0x000010, "Wrong size on UniformInteger_SetUniformInteger"); \ +static_assert(offsetof(UniformInteger_SetUniformInteger, Magnitude_0) == 0x000000, "Member 'UniformInteger_SetUniformInteger::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(UniformInteger_SetUniformInteger, ReturnValue) == 0x000008, "Member 'UniformInteger_SetUniformInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUniformInteger \ +static_assert(alignof(UUniformInteger) == 0x000008, "Wrong alignment on UUniformInteger"); \ +static_assert(sizeof(UUniformInteger) == 0x0000A8, "Wrong size on UUniformInteger"); \ +static_assert(offsetof(UUniformInteger, Magnitude) == 0x0000A0, "Member 'UUniformInteger::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialIntMask_SetRadialIntMask \ +static_assert(alignof(RadialIntMask_SetRadialIntMask) == 0x000008, "Wrong alignment on RadialIntMask_SetRadialIntMask"); \ +static_assert(sizeof(RadialIntMask_SetRadialIntMask) == 0x000038, "Wrong size on RadialIntMask_SetRadialIntMask"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, Radius_0) == 0x000000, "Member 'RadialIntMask_SetRadialIntMask::Radius_0' has a wrong offset!"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, Position_0) == 0x000008, "Member 'RadialIntMask_SetRadialIntMask::Position_0' has a wrong offset!"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, InteriorValue_0) == 0x000020, "Member 'RadialIntMask_SetRadialIntMask::InteriorValue_0' has a wrong offset!"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, ExteriorValue_0) == 0x000024, "Member 'RadialIntMask_SetRadialIntMask::ExteriorValue_0' has a wrong offset!"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, SetMaskConditionIn) == 0x000028, "Member 'RadialIntMask_SetRadialIntMask::SetMaskConditionIn' has a wrong offset!"); \ +static_assert(offsetof(RadialIntMask_SetRadialIntMask, ReturnValue) == 0x000030, "Member 'RadialIntMask_SetRadialIntMask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URadialIntMask \ +static_assert(alignof(URadialIntMask) == 0x000008, "Wrong alignment on URadialIntMask"); \ +static_assert(sizeof(URadialIntMask) == 0x0000D0, "Wrong size on URadialIntMask"); \ +static_assert(offsetof(URadialIntMask, Radius) == 0x0000A0, "Member 'URadialIntMask::Radius' has a wrong offset!"); \ +static_assert(offsetof(URadialIntMask, Position) == 0x0000A8, "Member 'URadialIntMask::Position' has a wrong offset!"); \ +static_assert(offsetof(URadialIntMask, InteriorValue) == 0x0000C0, "Member 'URadialIntMask::InteriorValue' has a wrong offset!"); \ +static_assert(offsetof(URadialIntMask, ExteriorValue) == 0x0000C4, "Member 'URadialIntMask::ExteriorValue' has a wrong offset!"); \ +static_assert(offsetof(URadialIntMask, SetMaskCondition) == 0x0000C8, "Member 'URadialIntMask::SetMaskCondition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformScalar_SetUniformScalar \ +static_assert(alignof(UniformScalar_SetUniformScalar) == 0x000008, "Wrong alignment on UniformScalar_SetUniformScalar"); \ +static_assert(sizeof(UniformScalar_SetUniformScalar) == 0x000010, "Wrong size on UniformScalar_SetUniformScalar"); \ +static_assert(offsetof(UniformScalar_SetUniformScalar, Magnitude_0) == 0x000000, "Member 'UniformScalar_SetUniformScalar::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(UniformScalar_SetUniformScalar, ReturnValue) == 0x000008, "Member 'UniformScalar_SetUniformScalar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUniformScalar \ +static_assert(alignof(UUniformScalar) == 0x000008, "Wrong alignment on UUniformScalar"); \ +static_assert(sizeof(UUniformScalar) == 0x0000A8, "Wrong size on UUniformScalar"); \ +static_assert(offsetof(UUniformScalar, Magnitude) == 0x0000A0, "Member 'UUniformScalar::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaveScalar_SetWaveScalar \ +static_assert(alignof(WaveScalar_SetWaveScalar) == 0x000008, "Wrong alignment on WaveScalar_SetWaveScalar"); \ +static_assert(sizeof(WaveScalar_SetWaveScalar) == 0x000038, "Wrong size on WaveScalar_SetWaveScalar"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Magnitude_0) == 0x000000, "Member 'WaveScalar_SetWaveScalar::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Position_0) == 0x000008, "Member 'WaveScalar_SetWaveScalar::Position_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Wavelength_0) == 0x000020, "Member 'WaveScalar_SetWaveScalar::Wavelength_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Period_0) == 0x000024, "Member 'WaveScalar_SetWaveScalar::Period_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Time) == 0x000028, "Member 'WaveScalar_SetWaveScalar::Time' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Function_0) == 0x00002C, "Member 'WaveScalar_SetWaveScalar::Function_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, Falloff_0) == 0x00002D, "Member 'WaveScalar_SetWaveScalar::Falloff_0' has a wrong offset!"); \ +static_assert(offsetof(WaveScalar_SetWaveScalar, ReturnValue) == 0x000030, "Member 'WaveScalar_SetWaveScalar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWaveScalar \ +static_assert(alignof(UWaveScalar) == 0x000008, "Wrong alignment on UWaveScalar"); \ +static_assert(sizeof(UWaveScalar) == 0x0000D0, "Wrong size on UWaveScalar"); \ +static_assert(offsetof(UWaveScalar, Magnitude) == 0x0000A0, "Member 'UWaveScalar::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UWaveScalar, Position) == 0x0000A8, "Member 'UWaveScalar::Position' has a wrong offset!"); \ +static_assert(offsetof(UWaveScalar, Wavelength) == 0x0000C0, "Member 'UWaveScalar::Wavelength' has a wrong offset!"); \ +static_assert(offsetof(UWaveScalar, Period) == 0x0000C4, "Member 'UWaveScalar::Period' has a wrong offset!"); \ +static_assert(offsetof(UWaveScalar, Function) == 0x0000C8, "Member 'UWaveScalar::Function' has a wrong offset!"); \ +static_assert(offsetof(UWaveScalar, Falloff) == 0x0000C9, "Member 'UWaveScalar::Falloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialFalloff_SetRadialFalloff \ +static_assert(alignof(RadialFalloff_SetRadialFalloff) == 0x000008, "Wrong alignment on RadialFalloff_SetRadialFalloff"); \ +static_assert(sizeof(RadialFalloff_SetRadialFalloff) == 0x000040, "Wrong size on RadialFalloff_SetRadialFalloff"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, Magnitude_0) == 0x000000, "Member 'RadialFalloff_SetRadialFalloff::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, MinRange_0) == 0x000004, "Member 'RadialFalloff_SetRadialFalloff::MinRange_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, MaxRange_0) == 0x000008, "Member 'RadialFalloff_SetRadialFalloff::MaxRange_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, Default_0) == 0x00000C, "Member 'RadialFalloff_SetRadialFalloff::Default_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, Radius_0) == 0x000010, "Member 'RadialFalloff_SetRadialFalloff::Radius_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, Position_0) == 0x000018, "Member 'RadialFalloff_SetRadialFalloff::Position_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, Falloff_0) == 0x000030, "Member 'RadialFalloff_SetRadialFalloff::Falloff_0' has a wrong offset!"); \ +static_assert(offsetof(RadialFalloff_SetRadialFalloff, ReturnValue) == 0x000038, "Member 'RadialFalloff_SetRadialFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URadialFalloff \ +static_assert(alignof(URadialFalloff) == 0x000008, "Wrong alignment on URadialFalloff"); \ +static_assert(sizeof(URadialFalloff) == 0x0000D8, "Wrong size on URadialFalloff"); \ +static_assert(offsetof(URadialFalloff, Magnitude) == 0x0000A0, "Member 'URadialFalloff::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, MinRange) == 0x0000A4, "Member 'URadialFalloff::MinRange' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, MaxRange) == 0x0000A8, "Member 'URadialFalloff::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, Default) == 0x0000AC, "Member 'URadialFalloff::Default' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, Radius) == 0x0000B0, "Member 'URadialFalloff::Radius' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, Position) == 0x0000B8, "Member 'URadialFalloff::Position' has a wrong offset!"); \ +static_assert(offsetof(URadialFalloff, Falloff) == 0x0000D0, "Member 'URadialFalloff::Falloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlaneFalloff_SetPlaneFalloff \ +static_assert(alignof(PlaneFalloff_SetPlaneFalloff) == 0x000008, "Wrong alignment on PlaneFalloff_SetPlaneFalloff"); \ +static_assert(sizeof(PlaneFalloff_SetPlaneFalloff) == 0x000058, "Wrong size on PlaneFalloff_SetPlaneFalloff"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Magnitude_0) == 0x000000, "Member 'PlaneFalloff_SetPlaneFalloff::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, MinRange_0) == 0x000004, "Member 'PlaneFalloff_SetPlaneFalloff::MinRange_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, MaxRange_0) == 0x000008, "Member 'PlaneFalloff_SetPlaneFalloff::MaxRange_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Default_0) == 0x00000C, "Member 'PlaneFalloff_SetPlaneFalloff::Default_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Distance_0) == 0x000010, "Member 'PlaneFalloff_SetPlaneFalloff::Distance_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Position_0) == 0x000018, "Member 'PlaneFalloff_SetPlaneFalloff::Position_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Normal_0) == 0x000030, "Member 'PlaneFalloff_SetPlaneFalloff::Normal_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, Falloff_0) == 0x000048, "Member 'PlaneFalloff_SetPlaneFalloff::Falloff_0' has a wrong offset!"); \ +static_assert(offsetof(PlaneFalloff_SetPlaneFalloff, ReturnValue) == 0x000050, "Member 'PlaneFalloff_SetPlaneFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlaneFalloff \ +static_assert(alignof(UPlaneFalloff) == 0x000008, "Wrong alignment on UPlaneFalloff"); \ +static_assert(sizeof(UPlaneFalloff) == 0x0000F0, "Wrong size on UPlaneFalloff"); \ +static_assert(offsetof(UPlaneFalloff, Magnitude) == 0x0000A0, "Member 'UPlaneFalloff::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, MinRange) == 0x0000A4, "Member 'UPlaneFalloff::MinRange' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, MaxRange) == 0x0000A8, "Member 'UPlaneFalloff::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, Default) == 0x0000AC, "Member 'UPlaneFalloff::Default' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, Distance) == 0x0000B0, "Member 'UPlaneFalloff::Distance' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, Position) == 0x0000B8, "Member 'UPlaneFalloff::Position' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, Normal) == 0x0000D0, "Member 'UPlaneFalloff::Normal' has a wrong offset!"); \ +static_assert(offsetof(UPlaneFalloff, Falloff) == 0x0000E8, "Member 'UPlaneFalloff::Falloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoxFalloff_SetBoxFalloff \ +static_assert(alignof(BoxFalloff_SetBoxFalloff) == 0x000010, "Wrong alignment on BoxFalloff_SetBoxFalloff"); \ +static_assert(sizeof(BoxFalloff_SetBoxFalloff) == 0x000080, "Wrong size on BoxFalloff_SetBoxFalloff"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, Magnitude_0) == 0x000000, "Member 'BoxFalloff_SetBoxFalloff::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, MinRange_0) == 0x000004, "Member 'BoxFalloff_SetBoxFalloff::MinRange_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, MaxRange_0) == 0x000008, "Member 'BoxFalloff_SetBoxFalloff::MaxRange_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, Default_0) == 0x00000C, "Member 'BoxFalloff_SetBoxFalloff::Default_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, Transform_0) == 0x000010, "Member 'BoxFalloff_SetBoxFalloff::Transform_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, Falloff_0) == 0x000070, "Member 'BoxFalloff_SetBoxFalloff::Falloff_0' has a wrong offset!"); \ +static_assert(offsetof(BoxFalloff_SetBoxFalloff, ReturnValue) == 0x000078, "Member 'BoxFalloff_SetBoxFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoxFalloff \ +static_assert(alignof(UBoxFalloff) == 0x000010, "Wrong alignment on UBoxFalloff"); \ +static_assert(sizeof(UBoxFalloff) == 0x000120, "Wrong size on UBoxFalloff"); \ +static_assert(offsetof(UBoxFalloff, Magnitude) == 0x0000A0, "Member 'UBoxFalloff::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UBoxFalloff, MinRange) == 0x0000A4, "Member 'UBoxFalloff::MinRange' has a wrong offset!"); \ +static_assert(offsetof(UBoxFalloff, MaxRange) == 0x0000A8, "Member 'UBoxFalloff::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UBoxFalloff, Default) == 0x0000AC, "Member 'UBoxFalloff::Default' has a wrong offset!"); \ +static_assert(offsetof(UBoxFalloff, Transform) == 0x0000B0, "Member 'UBoxFalloff::Transform' has a wrong offset!"); \ +static_assert(offsetof(UBoxFalloff, Falloff) == 0x000110, "Member 'UBoxFalloff::Falloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NoiseField_SetNoiseField \ +static_assert(alignof(NoiseField_SetNoiseField) == 0x000010, "Wrong alignment on NoiseField_SetNoiseField"); \ +static_assert(sizeof(NoiseField_SetNoiseField) == 0x000080, "Wrong size on NoiseField_SetNoiseField"); \ +static_assert(offsetof(NoiseField_SetNoiseField, MinRange_0) == 0x000000, "Member 'NoiseField_SetNoiseField::MinRange_0' has a wrong offset!"); \ +static_assert(offsetof(NoiseField_SetNoiseField, MaxRange_0) == 0x000004, "Member 'NoiseField_SetNoiseField::MaxRange_0' has a wrong offset!"); \ +static_assert(offsetof(NoiseField_SetNoiseField, Transform_0) == 0x000010, "Member 'NoiseField_SetNoiseField::Transform_0' has a wrong offset!"); \ +static_assert(offsetof(NoiseField_SetNoiseField, ReturnValue) == 0x000070, "Member 'NoiseField_SetNoiseField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNoiseField \ +static_assert(alignof(UNoiseField) == 0x000010, "Wrong alignment on UNoiseField"); \ +static_assert(sizeof(UNoiseField) == 0x000110, "Wrong size on UNoiseField"); \ +static_assert(offsetof(UNoiseField, MinRange) == 0x0000A0, "Member 'UNoiseField::MinRange' has a wrong offset!"); \ +static_assert(offsetof(UNoiseField, MaxRange) == 0x0000A4, "Member 'UNoiseField::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UNoiseField, Transform) == 0x0000B0, "Member 'UNoiseField::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformVector_SetUniformVector \ +static_assert(alignof(UniformVector_SetUniformVector) == 0x000008, "Wrong alignment on UniformVector_SetUniformVector"); \ +static_assert(sizeof(UniformVector_SetUniformVector) == 0x000028, "Wrong size on UniformVector_SetUniformVector"); \ +static_assert(offsetof(UniformVector_SetUniformVector, Magnitude_0) == 0x000000, "Member 'UniformVector_SetUniformVector::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(UniformVector_SetUniformVector, Direction_0) == 0x000008, "Member 'UniformVector_SetUniformVector::Direction_0' has a wrong offset!"); \ +static_assert(offsetof(UniformVector_SetUniformVector, ReturnValue) == 0x000020, "Member 'UniformVector_SetUniformVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUniformVector \ +static_assert(alignof(UUniformVector) == 0x000008, "Wrong alignment on UUniformVector"); \ +static_assert(sizeof(UUniformVector) == 0x0000C0, "Wrong size on UUniformVector"); \ +static_assert(offsetof(UUniformVector, Magnitude) == 0x0000A0, "Member 'UUniformVector::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UUniformVector, Direction) == 0x0000A8, "Member 'UUniformVector::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialVector_SetRadialVector \ +static_assert(alignof(RadialVector_SetRadialVector) == 0x000008, "Wrong alignment on RadialVector_SetRadialVector"); \ +static_assert(sizeof(RadialVector_SetRadialVector) == 0x000028, "Wrong size on RadialVector_SetRadialVector"); \ +static_assert(offsetof(RadialVector_SetRadialVector, Magnitude_0) == 0x000000, "Member 'RadialVector_SetRadialVector::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(RadialVector_SetRadialVector, Position_0) == 0x000008, "Member 'RadialVector_SetRadialVector::Position_0' has a wrong offset!"); \ +static_assert(offsetof(RadialVector_SetRadialVector, ReturnValue) == 0x000020, "Member 'RadialVector_SetRadialVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URadialVector \ +static_assert(alignof(URadialVector) == 0x000008, "Wrong alignment on URadialVector"); \ +static_assert(sizeof(URadialVector) == 0x0000C0, "Wrong size on URadialVector"); \ +static_assert(offsetof(URadialVector, Magnitude) == 0x0000A0, "Member 'URadialVector::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(URadialVector, Position) == 0x0000A8, "Member 'URadialVector::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RandomVector_SetRandomVector \ +static_assert(alignof(RandomVector_SetRandomVector) == 0x000008, "Wrong alignment on RandomVector_SetRandomVector"); \ +static_assert(sizeof(RandomVector_SetRandomVector) == 0x000010, "Wrong size on RandomVector_SetRandomVector"); \ +static_assert(offsetof(RandomVector_SetRandomVector, Magnitude_0) == 0x000000, "Member 'RandomVector_SetRandomVector::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(RandomVector_SetRandomVector, ReturnValue) == 0x000008, "Member 'RandomVector_SetRandomVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URandomVector \ +static_assert(alignof(URandomVector) == 0x000008, "Wrong alignment on URandomVector"); \ +static_assert(sizeof(URandomVector) == 0x0000A8, "Wrong size on URandomVector"); \ +static_assert(offsetof(URandomVector, Magnitude) == 0x0000A0, "Member 'URandomVector::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OperatorField_SetOperatorField \ +static_assert(alignof(OperatorField_SetOperatorField) == 0x000008, "Wrong alignment on OperatorField_SetOperatorField"); \ +static_assert(sizeof(OperatorField_SetOperatorField) == 0x000028, "Wrong size on OperatorField_SetOperatorField"); \ +static_assert(offsetof(OperatorField_SetOperatorField, Magnitude_0) == 0x000000, "Member 'OperatorField_SetOperatorField::Magnitude_0' has a wrong offset!"); \ +static_assert(offsetof(OperatorField_SetOperatorField, LeftField_0) == 0x000008, "Member 'OperatorField_SetOperatorField::LeftField_0' has a wrong offset!"); \ +static_assert(offsetof(OperatorField_SetOperatorField, RightField_0) == 0x000010, "Member 'OperatorField_SetOperatorField::RightField_0' has a wrong offset!"); \ +static_assert(offsetof(OperatorField_SetOperatorField, Operation_0) == 0x000018, "Member 'OperatorField_SetOperatorField::Operation_0' has a wrong offset!"); \ +static_assert(offsetof(OperatorField_SetOperatorField, ReturnValue) == 0x000020, "Member 'OperatorField_SetOperatorField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOperatorField \ +static_assert(alignof(UOperatorField) == 0x000008, "Wrong alignment on UOperatorField"); \ +static_assert(sizeof(UOperatorField) == 0x0000C0, "Wrong size on UOperatorField"); \ +static_assert(offsetof(UOperatorField, Magnitude) == 0x0000A0, "Member 'UOperatorField::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UOperatorField, RightField) == 0x0000A8, "Member 'UOperatorField::RightField' has a wrong offset!"); \ +static_assert(offsetof(UOperatorField, LeftField) == 0x0000B0, "Member 'UOperatorField::LeftField' has a wrong offset!"); \ +static_assert(offsetof(UOperatorField, Operation) == 0x0000B8, "Member 'UOperatorField::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToIntegerField_SetToIntegerField \ +static_assert(alignof(ToIntegerField_SetToIntegerField) == 0x000008, "Wrong alignment on ToIntegerField_SetToIntegerField"); \ +static_assert(sizeof(ToIntegerField_SetToIntegerField) == 0x000010, "Wrong size on ToIntegerField_SetToIntegerField"); \ +static_assert(offsetof(ToIntegerField_SetToIntegerField, FloatField_0) == 0x000000, "Member 'ToIntegerField_SetToIntegerField::FloatField_0' has a wrong offset!"); \ +static_assert(offsetof(ToIntegerField_SetToIntegerField, ReturnValue) == 0x000008, "Member 'ToIntegerField_SetToIntegerField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToIntegerField \ +static_assert(alignof(UToIntegerField) == 0x000008, "Wrong alignment on UToIntegerField"); \ +static_assert(sizeof(UToIntegerField) == 0x0000A8, "Wrong size on UToIntegerField"); \ +static_assert(offsetof(UToIntegerField, FloatField) == 0x0000A0, "Member 'UToIntegerField::FloatField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToFloatField_SetToFloatField \ +static_assert(alignof(ToFloatField_SetToFloatField) == 0x000008, "Wrong alignment on ToFloatField_SetToFloatField"); \ +static_assert(sizeof(ToFloatField_SetToFloatField) == 0x000010, "Wrong size on ToFloatField_SetToFloatField"); \ +static_assert(offsetof(ToFloatField_SetToFloatField, IntegerField) == 0x000000, "Member 'ToFloatField_SetToFloatField::IntegerField' has a wrong offset!"); \ +static_assert(offsetof(ToFloatField_SetToFloatField, ReturnValue) == 0x000008, "Member 'ToFloatField_SetToFloatField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToFloatField \ +static_assert(alignof(UToFloatField) == 0x000008, "Wrong alignment on UToFloatField"); \ +static_assert(sizeof(UToFloatField) == 0x0000A8, "Wrong size on UToFloatField"); \ +static_assert(offsetof(UToFloatField, IntField) == 0x0000A0, "Member 'UToFloatField::IntField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CullingField_SetCullingField \ +static_assert(alignof(CullingField_SetCullingField) == 0x000008, "Wrong alignment on CullingField_SetCullingField"); \ +static_assert(sizeof(CullingField_SetCullingField) == 0x000020, "Wrong size on CullingField_SetCullingField"); \ +static_assert(offsetof(CullingField_SetCullingField, Culling_0) == 0x000000, "Member 'CullingField_SetCullingField::Culling_0' has a wrong offset!"); \ +static_assert(offsetof(CullingField_SetCullingField, Field_0) == 0x000008, "Member 'CullingField_SetCullingField::Field_0' has a wrong offset!"); \ +static_assert(offsetof(CullingField_SetCullingField, Operation_0) == 0x000010, "Member 'CullingField_SetCullingField::Operation_0' has a wrong offset!"); \ +static_assert(offsetof(CullingField_SetCullingField, ReturnValue) == 0x000018, "Member 'CullingField_SetCullingField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCullingField \ +static_assert(alignof(UCullingField) == 0x000008, "Wrong alignment on UCullingField"); \ +static_assert(sizeof(UCullingField) == 0x0000B8, "Wrong size on UCullingField"); \ +static_assert(offsetof(UCullingField, Culling) == 0x0000A0, "Member 'UCullingField::Culling' has a wrong offset!"); \ +static_assert(offsetof(UCullingField, Field) == 0x0000A8, "Member 'UCullingField::Field' has a wrong offset!"); \ +static_assert(offsetof(UCullingField, Operation) == 0x0000B0, "Member 'UCullingField::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReturnResultsTerminal_SetReturnResultsTerminal \ +static_assert(alignof(ReturnResultsTerminal_SetReturnResultsTerminal) == 0x000008, "Wrong alignment on ReturnResultsTerminal_SetReturnResultsTerminal"); \ +static_assert(sizeof(ReturnResultsTerminal_SetReturnResultsTerminal) == 0x000008, "Wrong size on ReturnResultsTerminal_SetReturnResultsTerminal"); \ +static_assert(offsetof(ReturnResultsTerminal_SetReturnResultsTerminal, ReturnValue) == 0x000000, "Member 'ReturnResultsTerminal_SetReturnResultsTerminal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReturnResultsTerminal \ +static_assert(alignof(UReturnResultsTerminal) == 0x000008, "Wrong alignment on UReturnResultsTerminal"); \ +static_assert(sizeof(UReturnResultsTerminal) == 0x0000A0, "Wrong size on UReturnResultsTerminal"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract \ +static_assert(alignof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract"); \ +static_assert(sizeof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract) == 0x000002, "Wrong size on BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_CanInteract::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull \ +static_assert(alignof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull"); \ +static_assert(sizeof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull) == 0x000001, "Wrong size on BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks \ +static_assert(alignof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks"); \ +static_assert(sizeof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks) == 0x0000D8, "Wrong size on BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, EntryPoint) == 0x000000, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_delegate_Variable) == 0x000024, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_delegate_Variable_1) == 0x000034, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_bool_Has_Been_Initd_Variable) == 0x000044, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_bool_IsClosed_Variable) == 0x000045, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_bool_Has_Been_Initd_Variable_1) == 0x000046, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_bool_IsClosed_Variable_1) == 0x000047, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_GetPlayerPawn_ReturnValue) == 0x000048, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_delegate_Variable_2) == 0x000050, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_GetPlayerController_ReturnValue) == 0x000078, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000080, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000098, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B0, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks, Temp_delegate_Variable_3) == 0x0000C8, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_ExecuteUbergraph_BP_TelekinesisInteractable_ProEscape_Planks::Temp_delegate_Variable_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent \ +static_assert(alignof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent"); \ +static_assert(sizeof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent) == 0x000008, "Wrong size on BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation \ +static_assert(alignof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation"); \ +static_assert(sizeof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation) == 0x000030, "Wrong size on BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000018, "Member 'BP_TelekinesisInteractable_ProEscape_Planks_C_GetHandleLocation::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TelekinesisInteractable_ProEscape_Planks_C \ +static_assert(alignof(ABP_TelekinesisInteractable_ProEscape_Planks_C) == 0x000008, "Wrong alignment on ABP_TelekinesisInteractable_ProEscape_Planks_C"); \ +static_assert(sizeof(ABP_TelekinesisInteractable_ProEscape_Planks_C) == 0x0003F8, "Wrong size on ABP_TelekinesisInteractable_ProEscape_Planks_C"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, UberGraphFrame_BP_TelekinesisInteractable_ProEscape_Planks_C) == 0x000368, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::UberGraphFrame_BP_TelekinesisInteractable_ProEscape_Planks_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, WrestlerInteractionPoint) == 0x000370, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Niagara1) == 0x000378, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Niagara1' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_00c) == 0x000380, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_00c' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_00b) == 0x000388, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_00b' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_02c) == 0x000390, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_02c' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_01c) == 0x000398, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_01c' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_01b) == 0x0003A0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_01b' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_02b) == 0x0003A8, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_02b' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Phys_Route) == 0x0003B0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Phys_Route' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_01) == 0x0003B8, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Plank_02) == 0x0003C0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Plank_02' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, WrestlerPersistenceComponentBreakable) == 0x0003C8, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::WrestlerPersistenceComponentBreakable' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, HeraAudio_0) == 0x0003D0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::HeraAudio_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Event) == 0x0003D8, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, HasBeenPulled_0) == 0x0003E0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::HasBeenPulled_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Material) == 0x0003E8, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_ProEscape_Planks_C, Overlay_material) == 0x0003F0, "Member 'ABP_TelekinesisInteractable_ProEscape_Planks_C::Overlay_material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStringValuePair \ +static_assert(alignof(FStringValuePair) == 0x000008, "Wrong alignment on FStringValuePair"); \ +static_assert(sizeof(FStringValuePair) == 0x000020, "Wrong size on FStringValuePair"); \ +static_assert(offsetof(FStringValuePair, Key) == 0x000000, "Member 'FStringValuePair::Key' has a wrong offset!"); \ +static_assert(offsetof(FStringValuePair, Value) == 0x000010, "Member 'FStringValuePair::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataflowBlueprintLibrary_EvaluateTerminalNodeByName \ +static_assert(alignof(DataflowBlueprintLibrary_EvaluateTerminalNodeByName) == 0x000008, "Wrong alignment on DataflowBlueprintLibrary_EvaluateTerminalNodeByName"); \ +static_assert(sizeof(DataflowBlueprintLibrary_EvaluateTerminalNodeByName) == 0x000018, "Wrong size on DataflowBlueprintLibrary_EvaluateTerminalNodeByName"); \ +static_assert(offsetof(DataflowBlueprintLibrary_EvaluateTerminalNodeByName, Dataflow) == 0x000000, "Member 'DataflowBlueprintLibrary_EvaluateTerminalNodeByName::Dataflow' has a wrong offset!"); \ +static_assert(offsetof(DataflowBlueprintLibrary_EvaluateTerminalNodeByName, TerminalNodeName) == 0x000008, "Member 'DataflowBlueprintLibrary_EvaluateTerminalNodeByName::TerminalNodeName' has a wrong offset!"); \ +static_assert(offsetof(DataflowBlueprintLibrary_EvaluateTerminalNodeByName, ResultAsset) == 0x000010, "Member 'DataflowBlueprintLibrary_EvaluateTerminalNodeByName::ResultAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataflowBlueprintLibrary \ +static_assert(alignof(UDataflowBlueprintLibrary) == 0x000008, "Wrong alignment on UDataflowBlueprintLibrary"); \ +static_assert(sizeof(UDataflowBlueprintLibrary) == 0x000028, "Wrong size on UDataflowBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UDataflowEdNode \ +static_assert(alignof(UDataflowEdNode) == 0x000008, "Wrong alignment on UDataflowEdNode"); \ +static_assert(sizeof(UDataflowEdNode) == 0x0000C0, "Wrong size on UDataflowEdNode"); \ +static_assert(offsetof(UDataflowEdNode, bRenderInAssetEditor) == 0x0000B8, "Member 'UDataflowEdNode::bRenderInAssetEditor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataflow \ +static_assert(alignof(UDataflow) == 0x000008, "Wrong alignment on UDataflow"); \ +static_assert(sizeof(UDataflow) == 0x0000A8, "Wrong size on UDataflow"); \ +static_assert(offsetof(UDataflow, bActive) == 0x000088, "Member 'UDataflow::bActive' has a wrong offset!"); \ +static_assert(offsetof(UDataflow, Targets) == 0x000090, "Member 'UDataflow::Targets' has a wrong offset!"); \ +static_assert(offsetof(UDataflow, Material) == 0x0000A0, "Member 'UDataflow::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_DamageSetByCaller_C \ +static_assert(alignof(UGE_DamageSetByCaller_C) == 0x000008, "Wrong alignment on UGE_DamageSetByCaller_C"); \ +static_assert(sizeof(UGE_DamageSetByCaller_C) == 0x000A70, "Wrong size on UGE_DamageSetByCaller_C"); \ + +#define DUMPER7_ASSERTS_FChaosBreakingEventData \ +static_assert(alignof(FChaosBreakingEventData) == 0x000008, "Wrong alignment on FChaosBreakingEventData"); \ +static_assert(sizeof(FChaosBreakingEventData) == 0x000038, "Wrong size on FChaosBreakingEventData"); \ +static_assert(offsetof(FChaosBreakingEventData, Location) == 0x000000, "Member 'FChaosBreakingEventData::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventData, Velocity) == 0x000018, "Member 'FChaosBreakingEventData::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventData, MASS) == 0x000030, "Member 'FChaosBreakingEventData::MASS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionRenderResourceSizeInfo \ +static_assert(alignof(FGeometryCollectionRenderResourceSizeInfo) == 0x000008, "Wrong alignment on FGeometryCollectionRenderResourceSizeInfo"); \ +static_assert(sizeof(FGeometryCollectionRenderResourceSizeInfo) == 0x000010, "Wrong size on FGeometryCollectionRenderResourceSizeInfo"); \ +static_assert(offsetof(FGeometryCollectionRenderResourceSizeInfo, MeshResourcesSize) == 0x000000, "Member 'FGeometryCollectionRenderResourceSizeInfo::MeshResourcesSize' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionRenderResourceSizeInfo, NaniteResourcesSize) == 0x000008, "Member 'FGeometryCollectionRenderResourceSizeInfo::NaniteResourcesSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionRepData \ +static_assert(alignof(FGeometryCollectionRepData) == 0x000008, "Wrong alignment on FGeometryCollectionRepData"); \ +static_assert(sizeof(FGeometryCollectionRepData) == 0x000038, "Wrong size on FGeometryCollectionRepData"); \ + +#define DUMPER7_ASSERTS_FChaosCollisionEventData \ +static_assert(alignof(FChaosCollisionEventData) == 0x000008, "Wrong alignment on FChaosCollisionEventData"); \ +static_assert(sizeof(FChaosCollisionEventData) == 0x000080, "Wrong size on FChaosCollisionEventData"); \ +static_assert(offsetof(FChaosCollisionEventData, Location) == 0x000000, "Member 'FChaosCollisionEventData::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Normal) == 0x000018, "Member 'FChaosCollisionEventData::Normal' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Velocity1) == 0x000030, "Member 'FChaosCollisionEventData::Velocity1' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Velocity2) == 0x000048, "Member 'FChaosCollisionEventData::Velocity2' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Mass1) == 0x000060, "Member 'FChaosCollisionEventData::Mass1' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Mass2) == 0x000064, "Member 'FChaosCollisionEventData::Mass2' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventData, Impulse) == 0x000068, "Member 'FChaosCollisionEventData::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosRemovalEventData \ +static_assert(alignof(FChaosRemovalEventData) == 0x000008, "Wrong alignment on FChaosRemovalEventData"); \ +static_assert(sizeof(FChaosRemovalEventData) == 0x000020, "Wrong size on FChaosRemovalEventData"); \ +static_assert(offsetof(FChaosRemovalEventData, Location) == 0x000000, "Member 'FChaosRemovalEventData::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEventData, MASS) == 0x000018, "Member 'FChaosRemovalEventData::MASS' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEventData, ParticleIndex) == 0x00001C, "Member 'FChaosRemovalEventData::ParticleIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosTrailingEventData \ +static_assert(alignof(FChaosTrailingEventData) == 0x000008, "Wrong alignment on FChaosTrailingEventData"); \ +static_assert(sizeof(FChaosTrailingEventData) == 0x000050, "Wrong size on FChaosTrailingEventData"); \ +static_assert(offsetof(FChaosTrailingEventData, Location) == 0x000000, "Member 'FChaosTrailingEventData::Location' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventData, Velocity) == 0x000018, "Member 'FChaosTrailingEventData::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventData, AngularVelocity) == 0x000030, "Member 'FChaosTrailingEventData::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventData, MASS) == 0x000048, "Member 'FChaosTrailingEventData::MASS' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventData, ParticleIndex) == 0x00004C, "Member 'FChaosTrailingEventData::ParticleIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosBreakingEventRequestSettings \ +static_assert(alignof(FChaosBreakingEventRequestSettings) == 0x000004, "Wrong alignment on FChaosBreakingEventRequestSettings"); \ +static_assert(sizeof(FChaosBreakingEventRequestSettings) == 0x000018, "Wrong size on FChaosBreakingEventRequestSettings"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, MaxNumberOfResults) == 0x000000, "Member 'FChaosBreakingEventRequestSettings::MaxNumberOfResults' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, MinRadius) == 0x000004, "Member 'FChaosBreakingEventRequestSettings::MinRadius' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, MinSpeed) == 0x000008, "Member 'FChaosBreakingEventRequestSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, MinMass) == 0x00000C, "Member 'FChaosBreakingEventRequestSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, MaxDistance) == 0x000010, "Member 'FChaosBreakingEventRequestSettings::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FChaosBreakingEventRequestSettings, SortMethod) == 0x000014, "Member 'FChaosBreakingEventRequestSettings::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeomComponentCacheParameters \ +static_assert(alignof(FGeomComponentCacheParameters) == 0x000008, "Wrong alignment on FGeomComponentCacheParameters"); \ +static_assert(sizeof(FGeomComponentCacheParameters) == 0x000050, "Wrong size on FGeomComponentCacheParameters"); \ +static_assert(offsetof(FGeomComponentCacheParameters, CacheMode) == 0x000000, "Member 'FGeomComponentCacheParameters::CacheMode' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, TargetCache) == 0x000008, "Member 'FGeomComponentCacheParameters::TargetCache' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, ReverseCacheBeginTime) == 0x000010, "Member 'FGeomComponentCacheParameters::ReverseCacheBeginTime' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, SaveCollisionData) == 0x000014, "Member 'FGeomComponentCacheParameters::SaveCollisionData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, DoGenerateCollisionData) == 0x000015, "Member 'FGeomComponentCacheParameters::DoGenerateCollisionData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, CollisionDataSizeMax) == 0x000018, "Member 'FGeomComponentCacheParameters::CollisionDataSizeMax' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, DoCollisionDataSpatialHash) == 0x00001C, "Member 'FGeomComponentCacheParameters::DoCollisionDataSpatialHash' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, CollisionDataSpatialHashRadius) == 0x000020, "Member 'FGeomComponentCacheParameters::CollisionDataSpatialHashRadius' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, MaxCollisionPerCell) == 0x000024, "Member 'FGeomComponentCacheParameters::MaxCollisionPerCell' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, SaveBreakingData) == 0x000028, "Member 'FGeomComponentCacheParameters::SaveBreakingData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, DoGenerateBreakingData) == 0x000029, "Member 'FGeomComponentCacheParameters::DoGenerateBreakingData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, BreakingDataSizeMax) == 0x00002C, "Member 'FGeomComponentCacheParameters::BreakingDataSizeMax' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, DoBreakingDataSpatialHash) == 0x000030, "Member 'FGeomComponentCacheParameters::DoBreakingDataSpatialHash' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, BreakingDataSpatialHashRadius) == 0x000034, "Member 'FGeomComponentCacheParameters::BreakingDataSpatialHashRadius' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, MaxBreakingPerCell) == 0x000038, "Member 'FGeomComponentCacheParameters::MaxBreakingPerCell' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, SaveTrailingData) == 0x00003C, "Member 'FGeomComponentCacheParameters::SaveTrailingData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, DoGenerateTrailingData) == 0x00003D, "Member 'FGeomComponentCacheParameters::DoGenerateTrailingData' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, TrailingDataSizeMax) == 0x000040, "Member 'FGeomComponentCacheParameters::TrailingDataSizeMax' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, TrailingMinSpeedThreshold) == 0x000044, "Member 'FGeomComponentCacheParameters::TrailingMinSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(FGeomComponentCacheParameters, TrailingMinVolumeThreshold) == 0x000048, "Member 'FGeomComponentCacheParameters::TrailingMinVolumeThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionLevelSetData \ +static_assert(alignof(FGeometryCollectionLevelSetData) == 0x000004, "Wrong alignment on FGeometryCollectionLevelSetData"); \ +static_assert(sizeof(FGeometryCollectionLevelSetData) == 0x000010, "Wrong size on FGeometryCollectionLevelSetData"); \ +static_assert(offsetof(FGeometryCollectionLevelSetData, MinLevelSetResolution) == 0x000000, "Member 'FGeometryCollectionLevelSetData::MinLevelSetResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionLevelSetData, MaxLevelSetResolution) == 0x000004, "Member 'FGeometryCollectionLevelSetData::MaxLevelSetResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionLevelSetData, MinClusterLevelSetResolution) == 0x000008, "Member 'FGeometryCollectionLevelSetData::MinClusterLevelSetResolution' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionLevelSetData, MaxClusterLevelSetResolution) == 0x00000C, "Member 'FGeometryCollectionLevelSetData::MaxClusterLevelSetResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionCollisionParticleData \ +static_assert(alignof(FGeometryCollectionCollisionParticleData) == 0x000004, "Wrong alignment on FGeometryCollectionCollisionParticleData"); \ +static_assert(sizeof(FGeometryCollectionCollisionParticleData) == 0x000008, "Wrong size on FGeometryCollectionCollisionParticleData"); \ +static_assert(offsetof(FGeometryCollectionCollisionParticleData, CollisionParticlesFraction) == 0x000000, "Member 'FGeometryCollectionCollisionParticleData::CollisionParticlesFraction' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionParticleData, MaximumCollisionParticles) == 0x000004, "Member 'FGeometryCollectionCollisionParticleData::MaximumCollisionParticles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionCollisionTypeData \ +static_assert(alignof(FGeometryCollectionCollisionTypeData) == 0x000004, "Wrong alignment on FGeometryCollectionCollisionTypeData"); \ +static_assert(sizeof(FGeometryCollectionCollisionTypeData) == 0x000024, "Wrong size on FGeometryCollectionCollisionTypeData"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, CollisionType) == 0x000000, "Member 'FGeometryCollectionCollisionTypeData::CollisionType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, ImplicitType) == 0x000001, "Member 'FGeometryCollectionCollisionTypeData::ImplicitType' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, LevelSet) == 0x000004, "Member 'FGeometryCollectionCollisionTypeData::LevelSet' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, CollisionParticles) == 0x000014, "Member 'FGeometryCollectionCollisionTypeData::CollisionParticles' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, CollisionObjectReductionPercentage) == 0x00001C, "Member 'FGeometryCollectionCollisionTypeData::CollisionObjectReductionPercentage' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionCollisionTypeData, CollisionMarginFraction) == 0x000020, "Member 'FGeometryCollectionCollisionTypeData::CollisionMarginFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionSizeSpecificData \ +static_assert(alignof(FGeometryCollectionSizeSpecificData) == 0x000008, "Wrong alignment on FGeometryCollectionSizeSpecificData"); \ +static_assert(sizeof(FGeometryCollectionSizeSpecificData) == 0x000020, "Wrong size on FGeometryCollectionSizeSpecificData"); \ +static_assert(offsetof(FGeometryCollectionSizeSpecificData, MaxSize) == 0x000000, "Member 'FGeometryCollectionSizeSpecificData::MaxSize' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSizeSpecificData, CollisionShapes) == 0x000008, "Member 'FGeometryCollectionSizeSpecificData::CollisionShapes' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSizeSpecificData, DamageThreshold) == 0x000018, "Member 'FGeometryCollectionSizeSpecificData::DamageThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionDamagePropagationData \ +static_assert(alignof(FGeometryCollectionDamagePropagationData) == 0x000004, "Wrong alignment on FGeometryCollectionDamagePropagationData"); \ +static_assert(sizeof(FGeometryCollectionDamagePropagationData) == 0x00000C, "Wrong size on FGeometryCollectionDamagePropagationData"); \ +static_assert(offsetof(FGeometryCollectionDamagePropagationData, bEnabled) == 0x000000, "Member 'FGeometryCollectionDamagePropagationData::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionDamagePropagationData, BreakDamagePropagationFactor) == 0x000004, "Member 'FGeometryCollectionDamagePropagationData::BreakDamagePropagationFactor' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionDamagePropagationData, ShockDamagePropagationFactor) == 0x000008, "Member 'FGeometryCollectionDamagePropagationData::ShockDamagePropagationFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosCollisionEventRequestSettings \ +static_assert(alignof(FChaosCollisionEventRequestSettings) == 0x000004, "Wrong alignment on FChaosCollisionEventRequestSettings"); \ +static_assert(sizeof(FChaosCollisionEventRequestSettings) == 0x000018, "Wrong size on FChaosCollisionEventRequestSettings"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, MaxNumberResults) == 0x000000, "Member 'FChaosCollisionEventRequestSettings::MaxNumberResults' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, MinMass) == 0x000004, "Member 'FChaosCollisionEventRequestSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, MinSpeed) == 0x000008, "Member 'FChaosCollisionEventRequestSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, MinImpulse) == 0x00000C, "Member 'FChaosCollisionEventRequestSettings::MinImpulse' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, MaxDistance) == 0x000010, "Member 'FChaosCollisionEventRequestSettings::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FChaosCollisionEventRequestSettings, SortMethod) == 0x000014, "Member 'FChaosCollisionEventRequestSettings::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosRemovalEventRequestSettings \ +static_assert(alignof(FChaosRemovalEventRequestSettings) == 0x000004, "Wrong alignment on FChaosRemovalEventRequestSettings"); \ +static_assert(sizeof(FChaosRemovalEventRequestSettings) == 0x000010, "Wrong size on FChaosRemovalEventRequestSettings"); \ +static_assert(offsetof(FChaosRemovalEventRequestSettings, MaxNumberOfResults) == 0x000000, "Member 'FChaosRemovalEventRequestSettings::MaxNumberOfResults' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEventRequestSettings, MinMass) == 0x000004, "Member 'FChaosRemovalEventRequestSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEventRequestSettings, MaxDistance) == 0x000008, "Member 'FChaosRemovalEventRequestSettings::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FChaosRemovalEventRequestSettings, SortMethod) == 0x00000C, "Member 'FChaosRemovalEventRequestSettings::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosTrailingEventRequestSettings \ +static_assert(alignof(FChaosTrailingEventRequestSettings) == 0x000004, "Wrong alignment on FChaosTrailingEventRequestSettings"); \ +static_assert(sizeof(FChaosTrailingEventRequestSettings) == 0x000018, "Wrong size on FChaosTrailingEventRequestSettings"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, MaxNumberOfResults) == 0x000000, "Member 'FChaosTrailingEventRequestSettings::MaxNumberOfResults' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, MinMass) == 0x000004, "Member 'FChaosTrailingEventRequestSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, MinSpeed) == 0x000008, "Member 'FChaosTrailingEventRequestSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, MinAngularSpeed) == 0x00000C, "Member 'FChaosTrailingEventRequestSettings::MinAngularSpeed' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, MaxDistance) == 0x000010, "Member 'FChaosTrailingEventRequestSettings::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FChaosTrailingEventRequestSettings, SortMethod) == 0x000014, "Member 'FChaosTrailingEventRequestSettings::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionDebugDrawWarningMessage \ +static_assert(alignof(FGeometryCollectionDebugDrawWarningMessage) == 0x000001, "Wrong alignment on FGeometryCollectionDebugDrawWarningMessage"); \ +static_assert(sizeof(FGeometryCollectionDebugDrawWarningMessage) == 0x000001, "Wrong size on FGeometryCollectionDebugDrawWarningMessage"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionDebugDrawActorSelectedRigidBody \ +static_assert(alignof(FGeometryCollectionDebugDrawActorSelectedRigidBody) == 0x000008, "Wrong alignment on FGeometryCollectionDebugDrawActorSelectedRigidBody"); \ +static_assert(sizeof(FGeometryCollectionDebugDrawActorSelectedRigidBody) == 0x000018, "Wrong size on FGeometryCollectionDebugDrawActorSelectedRigidBody"); \ +static_assert(offsetof(FGeometryCollectionDebugDrawActorSelectedRigidBody, ID) == 0x000000, "Member 'FGeometryCollectionDebugDrawActorSelectedRigidBody::ID' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionDebugDrawActorSelectedRigidBody, Solver) == 0x000008, "Member 'FGeometryCollectionDebugDrawActorSelectedRigidBody::Solver' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionDebugDrawActorSelectedRigidBody, GeometryCollection) == 0x000010, "Member 'FGeometryCollectionDebugDrawActorSelectedRigidBody::GeometryCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionSource \ +static_assert(alignof(FGeometryCollectionSource) == 0x000010, "Wrong alignment on FGeometryCollectionSource"); \ +static_assert(sizeof(FGeometryCollectionSource) == 0x0000B0, "Wrong size on FGeometryCollectionSource"); \ +static_assert(offsetof(FGeometryCollectionSource, SourceGeometryObject) == 0x000000, "Member 'FGeometryCollectionSource::SourceGeometryObject' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, LocalTransform) == 0x000020, "Member 'FGeometryCollectionSource::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, SourceMaterial) == 0x000080, "Member 'FGeometryCollectionSource::SourceMaterial' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, InstanceCustomData) == 0x000090, "Member 'FGeometryCollectionSource::InstanceCustomData' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, bAddInternalMaterials) == 0x0000A0, "Member 'FGeometryCollectionSource::bAddInternalMaterials' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, bSplitComponents) == 0x0000A1, "Member 'FGeometryCollectionSource::bSplitComponents' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionSource, bSetInternalFromMaterialIndex) == 0x0000A2, "Member 'FGeometryCollectionSource::bSetInternalFromMaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionAutoInstanceMesh \ +static_assert(alignof(FGeometryCollectionAutoInstanceMesh) == 0x000008, "Wrong alignment on FGeometryCollectionAutoInstanceMesh"); \ +static_assert(sizeof(FGeometryCollectionAutoInstanceMesh) == 0x000030, "Wrong size on FGeometryCollectionAutoInstanceMesh"); \ +static_assert(offsetof(FGeometryCollectionAutoInstanceMesh, Mesh) == 0x000000, "Member 'FGeometryCollectionAutoInstanceMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionAutoInstanceMesh, Materials) == 0x000008, "Member 'FGeometryCollectionAutoInstanceMesh::Materials' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionAutoInstanceMesh, NumInstances) == 0x000018, "Member 'FGeometryCollectionAutoInstanceMesh::NumInstances' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionAutoInstanceMesh, CustomData) == 0x000020, "Member 'FGeometryCollectionAutoInstanceMesh::CustomData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionEmbeddedExemplar \ +static_assert(alignof(FGeometryCollectionEmbeddedExemplar) == 0x000008, "Wrong alignment on FGeometryCollectionEmbeddedExemplar"); \ +static_assert(sizeof(FGeometryCollectionEmbeddedExemplar) == 0x000030, "Wrong size on FGeometryCollectionEmbeddedExemplar"); \ +static_assert(offsetof(FGeometryCollectionEmbeddedExemplar, StaticMeshExemplar) == 0x000000, "Member 'FGeometryCollectionEmbeddedExemplar::StaticMeshExemplar' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionEmbeddedExemplar, StartCullDistance) == 0x000020, "Member 'FGeometryCollectionEmbeddedExemplar::StartCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionEmbeddedExemplar, EndCullDistance) == 0x000024, "Member 'FGeometryCollectionEmbeddedExemplar::EndCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionEmbeddedExemplar, InstanceCount) == 0x000028, "Member 'FGeometryCollectionEmbeddedExemplar::InstanceCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionProxyMeshData \ +static_assert(alignof(FGeometryCollectionProxyMeshData) == 0x000008, "Wrong alignment on FGeometryCollectionProxyMeshData"); \ +static_assert(sizeof(FGeometryCollectionProxyMeshData) == 0x000010, "Wrong size on FGeometryCollectionProxyMeshData"); \ +static_assert(offsetof(FGeometryCollectionProxyMeshData, ProxyMeshes) == 0x000000, "Member 'FGeometryCollectionProxyMeshData::ProxyMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGeometryCollectionExternalRenderInterface \ +static_assert(alignof(IGeometryCollectionExternalRenderInterface) == 0x000001, "Wrong alignment on IGeometryCollectionExternalRenderInterface"); \ +static_assert(sizeof(IGeometryCollectionExternalRenderInterface) == 0x000001, "Wrong size on IGeometryCollectionExternalRenderInterface"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionISMPoolSubSystem \ +static_assert(alignof(UGeometryCollectionISMPoolSubSystem) == 0x000008, "Wrong alignment on UGeometryCollectionISMPoolSubSystem"); \ +static_assert(sizeof(UGeometryCollectionISMPoolSubSystem) == 0x000038, "Wrong size on UGeometryCollectionISMPoolSubSystem"); \ +static_assert(offsetof(UGeometryCollectionISMPoolSubSystem, ISMPoolActor) == 0x000030, "Member 'UGeometryCollectionISMPoolSubSystem::ISMPoolActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_AddChaosSolverActor \ +static_assert(alignof(ChaosDestructionListener_AddChaosSolverActor) == 0x000008, "Wrong alignment on ChaosDestructionListener_AddChaosSolverActor"); \ +static_assert(sizeof(ChaosDestructionListener_AddChaosSolverActor) == 0x000008, "Wrong size on ChaosDestructionListener_AddChaosSolverActor"); \ +static_assert(offsetof(ChaosDestructionListener_AddChaosSolverActor, ChaosSolverActor) == 0x000000, "Member 'ChaosDestructionListener_AddChaosSolverActor::ChaosSolverActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_AddGeometryCollectionActor \ +static_assert(alignof(ChaosDestructionListener_AddGeometryCollectionActor) == 0x000008, "Wrong alignment on ChaosDestructionListener_AddGeometryCollectionActor"); \ +static_assert(sizeof(ChaosDestructionListener_AddGeometryCollectionActor) == 0x000008, "Wrong size on ChaosDestructionListener_AddGeometryCollectionActor"); \ +static_assert(offsetof(ChaosDestructionListener_AddGeometryCollectionActor, GeometryCollectionActor) == 0x000000, "Member 'ChaosDestructionListener_AddGeometryCollectionActor::GeometryCollectionActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_RemoveChaosSolverActor \ +static_assert(alignof(ChaosDestructionListener_RemoveChaosSolverActor) == 0x000008, "Wrong alignment on ChaosDestructionListener_RemoveChaosSolverActor"); \ +static_assert(sizeof(ChaosDestructionListener_RemoveChaosSolverActor) == 0x000008, "Wrong size on ChaosDestructionListener_RemoveChaosSolverActor"); \ +static_assert(offsetof(ChaosDestructionListener_RemoveChaosSolverActor, ChaosSolverActor) == 0x000000, "Member 'ChaosDestructionListener_RemoveChaosSolverActor::ChaosSolverActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_RemoveGeometryCollectionActor \ +static_assert(alignof(ChaosDestructionListener_RemoveGeometryCollectionActor) == 0x000008, "Wrong alignment on ChaosDestructionListener_RemoveGeometryCollectionActor"); \ +static_assert(sizeof(ChaosDestructionListener_RemoveGeometryCollectionActor) == 0x000008, "Wrong size on ChaosDestructionListener_RemoveGeometryCollectionActor"); \ +static_assert(offsetof(ChaosDestructionListener_RemoveGeometryCollectionActor, GeometryCollectionActor) == 0x000000, "Member 'ChaosDestructionListener_RemoveGeometryCollectionActor::GeometryCollectionActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetBreakingEventEnabled \ +static_assert(alignof(ChaosDestructionListener_SetBreakingEventEnabled) == 0x000001, "Wrong alignment on ChaosDestructionListener_SetBreakingEventEnabled"); \ +static_assert(sizeof(ChaosDestructionListener_SetBreakingEventEnabled) == 0x000001, "Wrong size on ChaosDestructionListener_SetBreakingEventEnabled"); \ +static_assert(offsetof(ChaosDestructionListener_SetBreakingEventEnabled, bIsEnabled) == 0x000000, "Member 'ChaosDestructionListener_SetBreakingEventEnabled::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetBreakingEventRequestSettings \ +static_assert(alignof(ChaosDestructionListener_SetBreakingEventRequestSettings) == 0x000004, "Wrong alignment on ChaosDestructionListener_SetBreakingEventRequestSettings"); \ +static_assert(sizeof(ChaosDestructionListener_SetBreakingEventRequestSettings) == 0x000018, "Wrong size on ChaosDestructionListener_SetBreakingEventRequestSettings"); \ +static_assert(offsetof(ChaosDestructionListener_SetBreakingEventRequestSettings, InSettings) == 0x000000, "Member 'ChaosDestructionListener_SetBreakingEventRequestSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetCollisionEventEnabled \ +static_assert(alignof(ChaosDestructionListener_SetCollisionEventEnabled) == 0x000001, "Wrong alignment on ChaosDestructionListener_SetCollisionEventEnabled"); \ +static_assert(sizeof(ChaosDestructionListener_SetCollisionEventEnabled) == 0x000001, "Wrong size on ChaosDestructionListener_SetCollisionEventEnabled"); \ +static_assert(offsetof(ChaosDestructionListener_SetCollisionEventEnabled, bIsEnabled) == 0x000000, "Member 'ChaosDestructionListener_SetCollisionEventEnabled::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetCollisionEventRequestSettings \ +static_assert(alignof(ChaosDestructionListener_SetCollisionEventRequestSettings) == 0x000004, "Wrong alignment on ChaosDestructionListener_SetCollisionEventRequestSettings"); \ +static_assert(sizeof(ChaosDestructionListener_SetCollisionEventRequestSettings) == 0x000018, "Wrong size on ChaosDestructionListener_SetCollisionEventRequestSettings"); \ +static_assert(offsetof(ChaosDestructionListener_SetCollisionEventRequestSettings, InSettings) == 0x000000, "Member 'ChaosDestructionListener_SetCollisionEventRequestSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetRemovalEventEnabled \ +static_assert(alignof(ChaosDestructionListener_SetRemovalEventEnabled) == 0x000001, "Wrong alignment on ChaosDestructionListener_SetRemovalEventEnabled"); \ +static_assert(sizeof(ChaosDestructionListener_SetRemovalEventEnabled) == 0x000001, "Wrong size on ChaosDestructionListener_SetRemovalEventEnabled"); \ +static_assert(offsetof(ChaosDestructionListener_SetRemovalEventEnabled, bIsEnabled) == 0x000000, "Member 'ChaosDestructionListener_SetRemovalEventEnabled::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetRemovalEventRequestSettings \ +static_assert(alignof(ChaosDestructionListener_SetRemovalEventRequestSettings) == 0x000004, "Wrong alignment on ChaosDestructionListener_SetRemovalEventRequestSettings"); \ +static_assert(sizeof(ChaosDestructionListener_SetRemovalEventRequestSettings) == 0x000010, "Wrong size on ChaosDestructionListener_SetRemovalEventRequestSettings"); \ +static_assert(offsetof(ChaosDestructionListener_SetRemovalEventRequestSettings, InSettings) == 0x000000, "Member 'ChaosDestructionListener_SetRemovalEventRequestSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetTrailingEventEnabled \ +static_assert(alignof(ChaosDestructionListener_SetTrailingEventEnabled) == 0x000001, "Wrong alignment on ChaosDestructionListener_SetTrailingEventEnabled"); \ +static_assert(sizeof(ChaosDestructionListener_SetTrailingEventEnabled) == 0x000001, "Wrong size on ChaosDestructionListener_SetTrailingEventEnabled"); \ +static_assert(offsetof(ChaosDestructionListener_SetTrailingEventEnabled, bIsEnabled) == 0x000000, "Member 'ChaosDestructionListener_SetTrailingEventEnabled::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SetTrailingEventRequestSettings \ +static_assert(alignof(ChaosDestructionListener_SetTrailingEventRequestSettings) == 0x000004, "Wrong alignment on ChaosDestructionListener_SetTrailingEventRequestSettings"); \ +static_assert(sizeof(ChaosDestructionListener_SetTrailingEventRequestSettings) == 0x000018, "Wrong size on ChaosDestructionListener_SetTrailingEventRequestSettings"); \ +static_assert(offsetof(ChaosDestructionListener_SetTrailingEventRequestSettings, InSettings) == 0x000000, "Member 'ChaosDestructionListener_SetTrailingEventRequestSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SortBreakingEvents \ +static_assert(alignof(ChaosDestructionListener_SortBreakingEvents) == 0x000008, "Wrong alignment on ChaosDestructionListener_SortBreakingEvents"); \ +static_assert(sizeof(ChaosDestructionListener_SortBreakingEvents) == 0x000018, "Wrong size on ChaosDestructionListener_SortBreakingEvents"); \ +static_assert(offsetof(ChaosDestructionListener_SortBreakingEvents, BreakingEvents) == 0x000000, "Member 'ChaosDestructionListener_SortBreakingEvents::BreakingEvents' has a wrong offset!"); \ +static_assert(offsetof(ChaosDestructionListener_SortBreakingEvents, SortMethod) == 0x000010, "Member 'ChaosDestructionListener_SortBreakingEvents::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SortCollisionEvents \ +static_assert(alignof(ChaosDestructionListener_SortCollisionEvents) == 0x000008, "Wrong alignment on ChaosDestructionListener_SortCollisionEvents"); \ +static_assert(sizeof(ChaosDestructionListener_SortCollisionEvents) == 0x000018, "Wrong size on ChaosDestructionListener_SortCollisionEvents"); \ +static_assert(offsetof(ChaosDestructionListener_SortCollisionEvents, CollisionEvents) == 0x000000, "Member 'ChaosDestructionListener_SortCollisionEvents::CollisionEvents' has a wrong offset!"); \ +static_assert(offsetof(ChaosDestructionListener_SortCollisionEvents, SortMethod) == 0x000010, "Member 'ChaosDestructionListener_SortCollisionEvents::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SortRemovalEvents \ +static_assert(alignof(ChaosDestructionListener_SortRemovalEvents) == 0x000008, "Wrong alignment on ChaosDestructionListener_SortRemovalEvents"); \ +static_assert(sizeof(ChaosDestructionListener_SortRemovalEvents) == 0x000018, "Wrong size on ChaosDestructionListener_SortRemovalEvents"); \ +static_assert(offsetof(ChaosDestructionListener_SortRemovalEvents, RemovalEvents) == 0x000000, "Member 'ChaosDestructionListener_SortRemovalEvents::RemovalEvents' has a wrong offset!"); \ +static_assert(offsetof(ChaosDestructionListener_SortRemovalEvents, SortMethod) == 0x000010, "Member 'ChaosDestructionListener_SortRemovalEvents::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_SortTrailingEvents \ +static_assert(alignof(ChaosDestructionListener_SortTrailingEvents) == 0x000008, "Wrong alignment on ChaosDestructionListener_SortTrailingEvents"); \ +static_assert(sizeof(ChaosDestructionListener_SortTrailingEvents) == 0x000018, "Wrong size on ChaosDestructionListener_SortTrailingEvents"); \ +static_assert(offsetof(ChaosDestructionListener_SortTrailingEvents, TrailingEvents) == 0x000000, "Member 'ChaosDestructionListener_SortTrailingEvents::TrailingEvents' has a wrong offset!"); \ +static_assert(offsetof(ChaosDestructionListener_SortTrailingEvents, SortMethod) == 0x000010, "Member 'ChaosDestructionListener_SortTrailingEvents::SortMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosDestructionListener_IsEventListening \ +static_assert(alignof(ChaosDestructionListener_IsEventListening) == 0x000001, "Wrong alignment on ChaosDestructionListener_IsEventListening"); \ +static_assert(sizeof(ChaosDestructionListener_IsEventListening) == 0x000001, "Wrong size on ChaosDestructionListener_IsEventListening"); \ +static_assert(offsetof(ChaosDestructionListener_IsEventListening, ReturnValue) == 0x000000, "Member 'ChaosDestructionListener_IsEventListening::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosDestructionListener \ +static_assert(alignof(UChaosDestructionListener) == 0x000010, "Wrong alignment on UChaosDestructionListener"); \ +static_assert(sizeof(UChaosDestructionListener) == 0x000550, "Wrong size on UChaosDestructionListener"); \ +static_assert(offsetof(UChaosDestructionListener, CollisionEventRequestSettings) == 0x0002A4, "Member 'UChaosDestructionListener::CollisionEventRequestSettings' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, BreakingEventRequestSettings) == 0x0002BC, "Member 'UChaosDestructionListener::BreakingEventRequestSettings' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, TrailingEventRequestSettings) == 0x0002D4, "Member 'UChaosDestructionListener::TrailingEventRequestSettings' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, RemovalEventRequestSettings) == 0x0002EC, "Member 'UChaosDestructionListener::RemovalEventRequestSettings' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, ChaosSolverActors) == 0x000300, "Member 'UChaosDestructionListener::ChaosSolverActors' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, GeometryCollectionActors) == 0x000350, "Member 'UChaosDestructionListener::GeometryCollectionActors' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, OnCollisionEvents) == 0x0003A0, "Member 'UChaosDestructionListener::OnCollisionEvents' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, OnBreakingEvents) == 0x0003B0, "Member 'UChaosDestructionListener::OnBreakingEvents' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, OnTrailingEvents) == 0x0003C0, "Member 'UChaosDestructionListener::OnTrailingEvents' has a wrong offset!"); \ +static_assert(offsetof(UChaosDestructionListener, OnRemovalEvents) == 0x0003D0, "Member 'UChaosDestructionListener::OnRemovalEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionActor_RaycastSingle \ +static_assert(alignof(GeometryCollectionActor_RaycastSingle) == 0x000008, "Wrong alignment on GeometryCollectionActor_RaycastSingle"); \ +static_assert(sizeof(GeometryCollectionActor_RaycastSingle) == 0x000120, "Wrong size on GeometryCollectionActor_RaycastSingle"); \ +static_assert(offsetof(GeometryCollectionActor_RaycastSingle, Start) == 0x000000, "Member 'GeometryCollectionActor_RaycastSingle::Start' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionActor_RaycastSingle, End) == 0x000018, "Member 'GeometryCollectionActor_RaycastSingle::End' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionActor_RaycastSingle, OutHit) == 0x000030, "Member 'GeometryCollectionActor_RaycastSingle::OutHit' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionActor_RaycastSingle, ReturnValue) == 0x000118, "Member 'GeometryCollectionActor_RaycastSingle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGeometryCollectionActor \ +static_assert(alignof(AGeometryCollectionActor) == 0x000008, "Wrong alignment on AGeometryCollectionActor"); \ +static_assert(sizeof(AGeometryCollectionActor) == 0x0002A8, "Wrong size on AGeometryCollectionActor"); \ +static_assert(offsetof(AGeometryCollectionActor, GeometryCollectionComponent) == 0x000298, "Member 'AGeometryCollectionActor::GeometryCollectionComponent' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionActor, GeometryCollectionDebugDrawComponent) == 0x0002A0, "Member 'AGeometryCollectionActor::GeometryCollectionDebugDrawComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionCache \ +static_assert(alignof(UGeometryCollectionCache) == 0x000008, "Wrong alignment on UGeometryCollectionCache"); \ +static_assert(sizeof(UGeometryCollectionCache) == 0x000050, "Wrong size on UGeometryCollectionCache"); \ +static_assert(offsetof(UGeometryCollectionCache, RecordedData) == 0x000028, "Member 'UGeometryCollectionCache::RecordedData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionCache, SupportedCollection) == 0x000038, "Member 'UGeometryCollectionCache::SupportedCollection' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionCache, CompatibleCollectionState) == 0x000040, "Member 'UGeometryCollectionCache::CompatibleCollectionState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyAngularVelocity \ +static_assert(alignof(GeometryCollectionComponent_ApplyAngularVelocity) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyAngularVelocity"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyAngularVelocity) == 0x000020, "Wrong size on GeometryCollectionComponent_ApplyAngularVelocity"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyAngularVelocity, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyAngularVelocity::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyAngularVelocity, AngularVelocity) == 0x000008, "Member 'GeometryCollectionComponent_ApplyAngularVelocity::AngularVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyBreakingAngularVelocity \ +static_assert(alignof(GeometryCollectionComponent_ApplyBreakingAngularVelocity) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyBreakingAngularVelocity"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyBreakingAngularVelocity) == 0x000020, "Wrong size on GeometryCollectionComponent_ApplyBreakingAngularVelocity"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyBreakingAngularVelocity, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyBreakingAngularVelocity::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyBreakingAngularVelocity, AngularVelocity) == 0x000008, "Member 'GeometryCollectionComponent_ApplyBreakingAngularVelocity::AngularVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyBreakingLinearVelocity \ +static_assert(alignof(GeometryCollectionComponent_ApplyBreakingLinearVelocity) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyBreakingLinearVelocity"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyBreakingLinearVelocity) == 0x000020, "Wrong size on GeometryCollectionComponent_ApplyBreakingLinearVelocity"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyBreakingLinearVelocity, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyBreakingLinearVelocity::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyBreakingLinearVelocity, LinearVelocity) == 0x000008, "Member 'GeometryCollectionComponent_ApplyBreakingLinearVelocity::LinearVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyExternalStrain \ +static_assert(alignof(GeometryCollectionComponent_ApplyExternalStrain) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyExternalStrain"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyExternalStrain) == 0x000030, "Wrong size on GeometryCollectionComponent_ApplyExternalStrain"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyExternalStrain::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, Location) == 0x000008, "Member 'GeometryCollectionComponent_ApplyExternalStrain::Location' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, Radius) == 0x000020, "Member 'GeometryCollectionComponent_ApplyExternalStrain::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, PropagationDepth) == 0x000024, "Member 'GeometryCollectionComponent_ApplyExternalStrain::PropagationDepth' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, PropagationFactor) == 0x000028, "Member 'GeometryCollectionComponent_ApplyExternalStrain::PropagationFactor' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyExternalStrain, Strain) == 0x00002C, "Member 'GeometryCollectionComponent_ApplyExternalStrain::Strain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyInternalStrain \ +static_assert(alignof(GeometryCollectionComponent_ApplyInternalStrain) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyInternalStrain"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyInternalStrain) == 0x000030, "Wrong size on GeometryCollectionComponent_ApplyInternalStrain"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyInternalStrain::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, Location) == 0x000008, "Member 'GeometryCollectionComponent_ApplyInternalStrain::Location' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, Radius) == 0x000020, "Member 'GeometryCollectionComponent_ApplyInternalStrain::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, PropagationDepth) == 0x000024, "Member 'GeometryCollectionComponent_ApplyInternalStrain::PropagationDepth' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, PropagationFactor) == 0x000028, "Member 'GeometryCollectionComponent_ApplyInternalStrain::PropagationFactor' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyInternalStrain, Strain) == 0x00002C, "Member 'GeometryCollectionComponent_ApplyInternalStrain::Strain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyKinematicField \ +static_assert(alignof(GeometryCollectionComponent_ApplyKinematicField) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyKinematicField"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyKinematicField) == 0x000020, "Wrong size on GeometryCollectionComponent_ApplyKinematicField"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyKinematicField, Radius) == 0x000000, "Member 'GeometryCollectionComponent_ApplyKinematicField::Radius' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyKinematicField, Position) == 0x000008, "Member 'GeometryCollectionComponent_ApplyKinematicField::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyLinearVelocity \ +static_assert(alignof(GeometryCollectionComponent_ApplyLinearVelocity) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyLinearVelocity"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyLinearVelocity) == 0x000020, "Wrong size on GeometryCollectionComponent_ApplyLinearVelocity"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyLinearVelocity, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_ApplyLinearVelocity::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyLinearVelocity, LinearVelocity) == 0x000008, "Member 'GeometryCollectionComponent_ApplyLinearVelocity::LinearVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ApplyPhysicsField \ +static_assert(alignof(GeometryCollectionComponent_ApplyPhysicsField) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ApplyPhysicsField"); \ +static_assert(sizeof(GeometryCollectionComponent_ApplyPhysicsField) == 0x000018, "Wrong size on GeometryCollectionComponent_ApplyPhysicsField"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyPhysicsField, Enabled) == 0x000000, "Member 'GeometryCollectionComponent_ApplyPhysicsField::Enabled' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyPhysicsField, Target) == 0x000001, "Member 'GeometryCollectionComponent_ApplyPhysicsField::Target' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyPhysicsField, MetaData) == 0x000008, "Member 'GeometryCollectionComponent_ApplyPhysicsField::MetaData' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_ApplyPhysicsField, Field) == 0x000010, "Member 'GeometryCollectionComponent_ApplyPhysicsField::Field' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_CrumbleCluster \ +static_assert(alignof(GeometryCollectionComponent_CrumbleCluster) == 0x000004, "Wrong alignment on GeometryCollectionComponent_CrumbleCluster"); \ +static_assert(sizeof(GeometryCollectionComponent_CrumbleCluster) == 0x000004, "Wrong size on GeometryCollectionComponent_CrumbleCluster"); \ +static_assert(offsetof(GeometryCollectionComponent_CrumbleCluster, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_CrumbleCluster::ItemIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetDebugInfo \ +static_assert(alignof(GeometryCollectionComponent_GetDebugInfo) == 0x000008, "Wrong alignment on GeometryCollectionComponent_GetDebugInfo"); \ +static_assert(sizeof(GeometryCollectionComponent_GetDebugInfo) == 0x000010, "Wrong size on GeometryCollectionComponent_GetDebugInfo"); \ +static_assert(offsetof(GeometryCollectionComponent_GetDebugInfo, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetDebugInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetInitialLevel \ +static_assert(alignof(GeometryCollectionComponent_GetInitialLevel) == 0x000004, "Wrong alignment on GeometryCollectionComponent_GetInitialLevel"); \ +static_assert(sizeof(GeometryCollectionComponent_GetInitialLevel) == 0x000008, "Wrong size on GeometryCollectionComponent_GetInitialLevel"); \ +static_assert(offsetof(GeometryCollectionComponent_GetInitialLevel, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_GetInitialLevel::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_GetInitialLevel, ReturnValue) == 0x000004, "Member 'GeometryCollectionComponent_GetInitialLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetMassAndExtents \ +static_assert(alignof(GeometryCollectionComponent_GetMassAndExtents) == 0x000008, "Wrong alignment on GeometryCollectionComponent_GetMassAndExtents"); \ +static_assert(sizeof(GeometryCollectionComponent_GetMassAndExtents) == 0x000040, "Wrong size on GeometryCollectionComponent_GetMassAndExtents"); \ +static_assert(offsetof(GeometryCollectionComponent_GetMassAndExtents, ItemIndex) == 0x000000, "Member 'GeometryCollectionComponent_GetMassAndExtents::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_GetMassAndExtents, OutMass) == 0x000004, "Member 'GeometryCollectionComponent_GetMassAndExtents::OutMass' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_GetMassAndExtents, OutExtents) == 0x000008, "Member 'GeometryCollectionComponent_GetMassAndExtents::OutExtents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_ReceivePhysicsCollision \ +static_assert(alignof(GeometryCollectionComponent_ReceivePhysicsCollision) == 0x000008, "Wrong alignment on GeometryCollectionComponent_ReceivePhysicsCollision"); \ +static_assert(sizeof(GeometryCollectionComponent_ReceivePhysicsCollision) == 0x0000C0, "Wrong size on GeometryCollectionComponent_ReceivePhysicsCollision"); \ +static_assert(offsetof(GeometryCollectionComponent_ReceivePhysicsCollision, CollisionInfo) == 0x000000, "Member 'GeometryCollectionComponent_ReceivePhysicsCollision::CollisionInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName \ +static_assert(alignof(GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName) == 0x000004, "Wrong alignment on GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName"); \ +static_assert(sizeof(GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName) == 0x000008, "Wrong size on GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName, CollisionProfile) == 0x000000, "Member 'GeometryCollectionComponent_SetAbandonedParticleCollisionProfileName::CollisionProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetAnchoredByBox \ +static_assert(alignof(GeometryCollectionComponent_SetAnchoredByBox) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetAnchoredByBox"); \ +static_assert(sizeof(GeometryCollectionComponent_SetAnchoredByBox) == 0x000040, "Wrong size on GeometryCollectionComponent_SetAnchoredByBox"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByBox, WorldSpaceBox) == 0x000000, "Member 'GeometryCollectionComponent_SetAnchoredByBox::WorldSpaceBox' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByBox, bAnchored) == 0x000038, "Member 'GeometryCollectionComponent_SetAnchoredByBox::bAnchored' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByBox, MaxLevel) == 0x00003C, "Member 'GeometryCollectionComponent_SetAnchoredByBox::MaxLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetAnchoredByIndex \ +static_assert(alignof(GeometryCollectionComponent_SetAnchoredByIndex) == 0x000004, "Wrong alignment on GeometryCollectionComponent_SetAnchoredByIndex"); \ +static_assert(sizeof(GeometryCollectionComponent_SetAnchoredByIndex) == 0x000008, "Wrong size on GeometryCollectionComponent_SetAnchoredByIndex"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByIndex, Index_0) == 0x000000, "Member 'GeometryCollectionComponent_SetAnchoredByIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByIndex, bAnchored) == 0x000004, "Member 'GeometryCollectionComponent_SetAnchoredByIndex::bAnchored' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetAnchoredByTransformedBox \ +static_assert(alignof(GeometryCollectionComponent_SetAnchoredByTransformedBox) == 0x000010, "Wrong alignment on GeometryCollectionComponent_SetAnchoredByTransformedBox"); \ +static_assert(sizeof(GeometryCollectionComponent_SetAnchoredByTransformedBox) == 0x0000B0, "Wrong size on GeometryCollectionComponent_SetAnchoredByTransformedBox"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByTransformedBox, Box) == 0x000000, "Member 'GeometryCollectionComponent_SetAnchoredByTransformedBox::Box' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByTransformedBox, Transform) == 0x000040, "Member 'GeometryCollectionComponent_SetAnchoredByTransformedBox::Transform' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByTransformedBox, bAnchored) == 0x0000A0, "Member 'GeometryCollectionComponent_SetAnchoredByTransformedBox::bAnchored' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetAnchoredByTransformedBox, MaxLevel) == 0x0000A4, "Member 'GeometryCollectionComponent_SetAnchoredByTransformedBox::MaxLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetDamageThreshold \ +static_assert(alignof(GeometryCollectionComponent_SetDamageThreshold) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetDamageThreshold"); \ +static_assert(sizeof(GeometryCollectionComponent_SetDamageThreshold) == 0x000010, "Wrong size on GeometryCollectionComponent_SetDamageThreshold"); \ +static_assert(offsetof(GeometryCollectionComponent_SetDamageThreshold, InDamageThreshold) == 0x000000, "Member 'GeometryCollectionComponent_SetDamageThreshold::InDamageThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetEnableDamageFromCollision \ +static_assert(alignof(GeometryCollectionComponent_SetEnableDamageFromCollision) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetEnableDamageFromCollision"); \ +static_assert(sizeof(GeometryCollectionComponent_SetEnableDamageFromCollision) == 0x000001, "Wrong size on GeometryCollectionComponent_SetEnableDamageFromCollision"); \ +static_assert(offsetof(GeometryCollectionComponent_SetEnableDamageFromCollision, bValue) == 0x000000, "Member 'GeometryCollectionComponent_SetEnableDamageFromCollision::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetLocalRestTransforms \ +static_assert(alignof(GeometryCollectionComponent_SetLocalRestTransforms) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetLocalRestTransforms"); \ +static_assert(sizeof(GeometryCollectionComponent_SetLocalRestTransforms) == 0x000018, "Wrong size on GeometryCollectionComponent_SetLocalRestTransforms"); \ +static_assert(offsetof(GeometryCollectionComponent_SetLocalRestTransforms, Transforms) == 0x000000, "Member 'GeometryCollectionComponent_SetLocalRestTransforms::Transforms' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetLocalRestTransforms, bOnlyLeaves) == 0x000010, "Member 'GeometryCollectionComponent_SetLocalRestTransforms::bOnlyLeaves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyBreaks \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyBreaks) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyBreaks"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyBreaks) == 0x000001, "Wrong size on GeometryCollectionComponent_SetNotifyBreaks"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyBreaks, bNewNotifyBreaks) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyBreaks::bNewNotifyBreaks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyCrumblings \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyCrumblings) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyCrumblings"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyCrumblings) == 0x000002, "Wrong size on GeometryCollectionComponent_SetNotifyCrumblings"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyCrumblings, bNewNotifyCrumblings) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyCrumblings::bNewNotifyCrumblings' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyCrumblings, bNewCrumblingEventIncludesChildren) == 0x000001, "Member 'GeometryCollectionComponent_SetNotifyCrumblings::bNewCrumblingEventIncludesChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyGlobalBreaks \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyGlobalBreaks) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyGlobalBreaks"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyGlobalBreaks) == 0x000001, "Wrong size on GeometryCollectionComponent_SetNotifyGlobalBreaks"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyGlobalBreaks, bNewNotifyGlobalBreaks) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyGlobalBreaks::bNewNotifyGlobalBreaks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyGlobalCollision \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyGlobalCollision) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyGlobalCollision"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyGlobalCollision) == 0x000001, "Wrong size on GeometryCollectionComponent_SetNotifyGlobalCollision"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyGlobalCollision, bNewNotifyGlobalCollisions) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyGlobalCollision::bNewNotifyGlobalCollisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyGlobalCrumblings \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyGlobalCrumblings) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyGlobalCrumblings"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyGlobalCrumblings) == 0x000002, "Wrong size on GeometryCollectionComponent_SetNotifyGlobalCrumblings"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyGlobalCrumblings, bNewNotifyGlobalCrumblings) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyGlobalCrumblings::bNewNotifyGlobalCrumblings' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyGlobalCrumblings, bGlobalNewCrumblingEventIncludesChildren) == 0x000001, "Member 'GeometryCollectionComponent_SetNotifyGlobalCrumblings::bGlobalNewCrumblingEventIncludesChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyGlobalRemovals \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyGlobalRemovals) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyGlobalRemovals"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyGlobalRemovals) == 0x000001, "Wrong size on GeometryCollectionComponent_SetNotifyGlobalRemovals"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyGlobalRemovals, bNewNotifyGlobalRemovals) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyGlobalRemovals::bNewNotifyGlobalRemovals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetNotifyRemovals \ +static_assert(alignof(GeometryCollectionComponent_SetNotifyRemovals) == 0x000001, "Wrong alignment on GeometryCollectionComponent_SetNotifyRemovals"); \ +static_assert(sizeof(GeometryCollectionComponent_SetNotifyRemovals) == 0x000001, "Wrong size on GeometryCollectionComponent_SetNotifyRemovals"); \ +static_assert(offsetof(GeometryCollectionComponent_SetNotifyRemovals, bNewNotifyRemovals) == 0x000000, "Member 'GeometryCollectionComponent_SetNotifyRemovals::bNewNotifyRemovals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetPerLevelCollisionProfileNames \ +static_assert(alignof(GeometryCollectionComponent_SetPerLevelCollisionProfileNames) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetPerLevelCollisionProfileNames"); \ +static_assert(sizeof(GeometryCollectionComponent_SetPerLevelCollisionProfileNames) == 0x000010, "Wrong size on GeometryCollectionComponent_SetPerLevelCollisionProfileNames"); \ +static_assert(offsetof(GeometryCollectionComponent_SetPerLevelCollisionProfileNames, ProfileNames) == 0x000000, "Member 'GeometryCollectionComponent_SetPerLevelCollisionProfileNames::ProfileNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetPerParticleCollisionProfileName \ +static_assert(alignof(GeometryCollectionComponent_SetPerParticleCollisionProfileName) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetPerParticleCollisionProfileName"); \ +static_assert(sizeof(GeometryCollectionComponent_SetPerParticleCollisionProfileName) == 0x000018, "Wrong size on GeometryCollectionComponent_SetPerParticleCollisionProfileName"); \ +static_assert(offsetof(GeometryCollectionComponent_SetPerParticleCollisionProfileName, BoneIds) == 0x000000, "Member 'GeometryCollectionComponent_SetPerParticleCollisionProfileName::BoneIds' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetPerParticleCollisionProfileName, ProfileName) == 0x000010, "Member 'GeometryCollectionComponent_SetPerParticleCollisionProfileName::ProfileName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_SetRestCollection \ +static_assert(alignof(GeometryCollectionComponent_SetRestCollection) == 0x000008, "Wrong alignment on GeometryCollectionComponent_SetRestCollection"); \ +static_assert(sizeof(GeometryCollectionComponent_SetRestCollection) == 0x000010, "Wrong size on GeometryCollectionComponent_SetRestCollection"); \ +static_assert(offsetof(GeometryCollectionComponent_SetRestCollection, RestCollectionIn) == 0x000000, "Member 'GeometryCollectionComponent_SetRestCollection::RestCollectionIn' has a wrong offset!"); \ +static_assert(offsetof(GeometryCollectionComponent_SetRestCollection, bApplyAssetDefaults) == 0x000008, "Member 'GeometryCollectionComponent_SetRestCollection::bApplyAssetDefaults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetDamageThreshold \ +static_assert(alignof(GeometryCollectionComponent_GetDamageThreshold) == 0x000008, "Wrong alignment on GeometryCollectionComponent_GetDamageThreshold"); \ +static_assert(sizeof(GeometryCollectionComponent_GetDamageThreshold) == 0x000010, "Wrong size on GeometryCollectionComponent_GetDamageThreshold"); \ +static_assert(offsetof(GeometryCollectionComponent_GetDamageThreshold, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetDamageThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetInitialLocalRestTransforms \ +static_assert(alignof(GeometryCollectionComponent_GetInitialLocalRestTransforms) == 0x000008, "Wrong alignment on GeometryCollectionComponent_GetInitialLocalRestTransforms"); \ +static_assert(sizeof(GeometryCollectionComponent_GetInitialLocalRestTransforms) == 0x000010, "Wrong size on GeometryCollectionComponent_GetInitialLocalRestTransforms"); \ +static_assert(offsetof(GeometryCollectionComponent_GetInitialLocalRestTransforms, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetInitialLocalRestTransforms::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetLocalBounds \ +static_assert(alignof(GeometryCollectionComponent_GetLocalBounds) == 0x000008, "Wrong alignment on GeometryCollectionComponent_GetLocalBounds"); \ +static_assert(sizeof(GeometryCollectionComponent_GetLocalBounds) == 0x000038, "Wrong size on GeometryCollectionComponent_GetLocalBounds"); \ +static_assert(offsetof(GeometryCollectionComponent_GetLocalBounds, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetLocalBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetRootCurrentTransform \ +static_assert(alignof(GeometryCollectionComponent_GetRootCurrentTransform) == 0x000010, "Wrong alignment on GeometryCollectionComponent_GetRootCurrentTransform"); \ +static_assert(sizeof(GeometryCollectionComponent_GetRootCurrentTransform) == 0x000060, "Wrong size on GeometryCollectionComponent_GetRootCurrentTransform"); \ +static_assert(offsetof(GeometryCollectionComponent_GetRootCurrentTransform, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetRootCurrentTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetRootIndex \ +static_assert(alignof(GeometryCollectionComponent_GetRootIndex) == 0x000004, "Wrong alignment on GeometryCollectionComponent_GetRootIndex"); \ +static_assert(sizeof(GeometryCollectionComponent_GetRootIndex) == 0x000004, "Wrong size on GeometryCollectionComponent_GetRootIndex"); \ +static_assert(offsetof(GeometryCollectionComponent_GetRootIndex, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetRootIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_GetRootInitialTransform \ +static_assert(alignof(GeometryCollectionComponent_GetRootInitialTransform) == 0x000010, "Wrong alignment on GeometryCollectionComponent_GetRootInitialTransform"); \ +static_assert(sizeof(GeometryCollectionComponent_GetRootInitialTransform) == 0x000060, "Wrong size on GeometryCollectionComponent_GetRootInitialTransform"); \ +static_assert(offsetof(GeometryCollectionComponent_GetRootInitialTransform, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_GetRootInitialTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollectionComponent_IsRootBroken \ +static_assert(alignof(GeometryCollectionComponent_IsRootBroken) == 0x000001, "Wrong alignment on GeometryCollectionComponent_IsRootBroken"); \ +static_assert(sizeof(GeometryCollectionComponent_IsRootBroken) == 0x000001, "Wrong size on GeometryCollectionComponent_IsRootBroken"); \ +static_assert(offsetof(GeometryCollectionComponent_IsRootBroken, ReturnValue) == 0x000000, "Member 'GeometryCollectionComponent_IsRootBroken::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionComponent \ +static_assert(alignof(UGeometryCollectionComponent) == 0x000010, "Wrong alignment on UGeometryCollectionComponent"); \ +static_assert(sizeof(UGeometryCollectionComponent) == 0x000BE0, "Wrong size on UGeometryCollectionComponent"); \ +static_assert(offsetof(UGeometryCollectionComponent, ChaosSolverActor) == 0x0005B0, "Member 'UGeometryCollectionComponent::ChaosSolverActor' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, RestCollection) == 0x0006A0, "Member 'UGeometryCollectionComponent::RestCollection' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, InitializationFields) == 0x0006A8, "Member 'UGeometryCollectionComponent::InitializationFields' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, Simulating) == 0x0006B8, "Member 'UGeometryCollectionComponent::Simulating' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ObjectType) == 0x0006BA, "Member 'UGeometryCollectionComponent::ObjectType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, GravityGroupIndex) == 0x0006BC, "Member 'UGeometryCollectionComponent::GravityGroupIndex' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bForceMotionBlur) == 0x0006C0, "Member 'UGeometryCollectionComponent::bForceMotionBlur' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, EnableClustering) == 0x0006C1, "Member 'UGeometryCollectionComponent::EnableClustering' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ClusterGroupIndex) == 0x0006C4, "Member 'UGeometryCollectionComponent::ClusterGroupIndex' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, MaxClusterLevel) == 0x0006C8, "Member 'UGeometryCollectionComponent::MaxClusterLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, MaxSimulatedLevel) == 0x0006CC, "Member 'UGeometryCollectionComponent::MaxSimulatedLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, DamageModel) == 0x0006D0, "Member 'UGeometryCollectionComponent::DamageModel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, DamageThreshold) == 0x0006D8, "Member 'UGeometryCollectionComponent::DamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bUseSizeSpecificDamageThreshold) == 0x0006E8, "Member 'UGeometryCollectionComponent::bUseSizeSpecificDamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, DamagePropagationData) == 0x0006EC, "Member 'UGeometryCollectionComponent::DamagePropagationData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bEnableDamageFromCollision) == 0x0006F8, "Member 'UGeometryCollectionComponent::bEnableDamageFromCollision' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bAllowRemovalOnSleep) == 0x0006F9, "Member 'UGeometryCollectionComponent::bAllowRemovalOnSleep' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bAllowRemovalOnBreak) == 0x0006FA, "Member 'UGeometryCollectionComponent::bAllowRemovalOnBreak' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ClusterConnectionType) == 0x0006FB, "Member 'UGeometryCollectionComponent::ClusterConnectionType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CollisionGroup) == 0x0006FC, "Member 'UGeometryCollectionComponent::CollisionGroup' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CollisionSampleFraction) == 0x000700, "Member 'UGeometryCollectionComponent::CollisionSampleFraction' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, LinearEtherDrag) == 0x000704, "Member 'UGeometryCollectionComponent::LinearEtherDrag' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, AngularEtherDrag) == 0x000708, "Member 'UGeometryCollectionComponent::AngularEtherDrag' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, PhysicalMaterial) == 0x000710, "Member 'UGeometryCollectionComponent::PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, InitialVelocityType) == 0x000718, "Member 'UGeometryCollectionComponent::InitialVelocityType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, InitialLinearVelocity) == 0x000720, "Member 'UGeometryCollectionComponent::InitialLinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, InitialAngularVelocity) == 0x000738, "Member 'UGeometryCollectionComponent::InitialAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, PhysicalMaterialOverride) == 0x000750, "Member 'UGeometryCollectionComponent::PhysicalMaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CacheParameters) == 0x000758, "Member 'UGeometryCollectionComponent::CacheParameters' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, RestTransforms) == 0x0007A8, "Member 'UGeometryCollectionComponent::RestTransforms' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, NotifyGeometryCollectionPhysicsStateChange) == 0x0007B8, "Member 'UGeometryCollectionComponent::NotifyGeometryCollectionPhysicsStateChange' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, NotifyGeometryCollectionPhysicsLoadingStateChange) == 0x0007C8, "Member 'UGeometryCollectionComponent::NotifyGeometryCollectionPhysicsLoadingStateChange' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, OnChaosBreakEvent) == 0x0007F0, "Member 'UGeometryCollectionComponent::OnChaosBreakEvent' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, OnChaosRemovalEvent) == 0x000800, "Member 'UGeometryCollectionComponent::OnChaosRemovalEvent' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, OnChaosCrumblingEvent) == 0x000810, "Member 'UGeometryCollectionComponent::OnChaosCrumblingEvent' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, DesiredCacheTime) == 0x000830, "Member 'UGeometryCollectionComponent::DesiredCacheTime' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CachePlayback) == 0x000834, "Member 'UGeometryCollectionComponent::CachePlayback' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, OnChaosPhysicsCollision) == 0x000838, "Member 'UGeometryCollectionComponent::OnChaosPhysicsCollision' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyBreaks) == 0x000848, "Member 'UGeometryCollectionComponent::bNotifyBreaks' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyCollisions) == 0x000849, "Member 'UGeometryCollectionComponent::bNotifyCollisions' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyTrailing) == 0x00084A, "Member 'UGeometryCollectionComponent::bNotifyTrailing' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyRemovals) == 0x00084B, "Member 'UGeometryCollectionComponent::bNotifyRemovals' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyCrumblings) == 0x00084C, "Member 'UGeometryCollectionComponent::bNotifyCrumblings' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bCrumblingEventIncludesChildren) == 0x00084D, "Member 'UGeometryCollectionComponent::bCrumblingEventIncludesChildren' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyGlobalBreaks) == 0x00084E, "Member 'UGeometryCollectionComponent::bNotifyGlobalBreaks' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyGlobalCollisions) == 0x00084F, "Member 'UGeometryCollectionComponent::bNotifyGlobalCollisions' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyGlobalRemovals) == 0x000850, "Member 'UGeometryCollectionComponent::bNotifyGlobalRemovals' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bNotifyGlobalCrumblings) == 0x000851, "Member 'UGeometryCollectionComponent::bNotifyGlobalCrumblings' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bGlobalCrumblingEventIncludesChildren) == 0x000852, "Member 'UGeometryCollectionComponent::bGlobalCrumblingEventIncludesChildren' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bStoreVelocities) == 0x000853, "Member 'UGeometryCollectionComponent::bStoreVelocities' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bShowBoneColors) == 0x000854, "Member 'UGeometryCollectionComponent::bShowBoneColors' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bUseRootProxyForNavigation) == 0x000855, "Member 'UGeometryCollectionComponent::bUseRootProxyForNavigation' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bUpdateNavigationInTick) == 0x000856, "Member 'UGeometryCollectionComponent::bUpdateNavigationInTick' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ISMPool) == 0x000858, "Member 'UGeometryCollectionComponent::ISMPool' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bAutoAssignISMPool) == 0x000860, "Member 'UGeometryCollectionComponent::bAutoAssignISMPool' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bOverrideCustomRenderer) == 0x000861, "Member 'UGeometryCollectionComponent::bOverrideCustomRenderer' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CustomRendererType) == 0x000868, "Member 'UGeometryCollectionComponent::CustomRendererType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CustomRenderer) == 0x000870, "Member 'UGeometryCollectionComponent::CustomRenderer' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bEnableReplication) == 0x000878, "Member 'UGeometryCollectionComponent::bEnableReplication' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, bEnableAbandonAfterLevel) == 0x000879, "Member 'UGeometryCollectionComponent::bEnableAbandonAfterLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, AbandonedCollisionProfileName) == 0x00087C, "Member 'UGeometryCollectionComponent::AbandonedCollisionProfileName' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, CollisionProfilePerLevel) == 0x000888, "Member 'UGeometryCollectionComponent::CollisionProfilePerLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ReplicationAbandonClusterLevel) == 0x0008A8, "Member 'UGeometryCollectionComponent::ReplicationAbandonClusterLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ReplicationAbandonAfterLevel) == 0x0008AC, "Member 'UGeometryCollectionComponent::ReplicationAbandonAfterLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, ReplicationMaxPositionAndVelocityCorrectionLevel) == 0x0008B0, "Member 'UGeometryCollectionComponent::ReplicationMaxPositionAndVelocityCorrectionLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, RepData) == 0x0008B8, "Member 'UGeometryCollectionComponent::RepData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, DummyBodySetup) == 0x000B98, "Member 'UGeometryCollectionComponent::DummyBodySetup' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, EventDispatcher) == 0x000BA0, "Member 'UGeometryCollectionComponent::EventDispatcher' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionComponent, EmbeddedGeometryComponents) == 0x000BA8, "Member 'UGeometryCollectionComponent::EmbeddedGeometryComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGeometryCollectionDebugDrawActor \ +static_assert(alignof(AGeometryCollectionDebugDrawActor) == 0x000008, "Wrong alignment on AGeometryCollectionDebugDrawActor"); \ +static_assert(sizeof(AGeometryCollectionDebugDrawActor) == 0x000358, "Wrong size on AGeometryCollectionDebugDrawActor"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, WarningMessage) == 0x000298, "Member 'AGeometryCollectionDebugDrawActor::WarningMessage' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, SelectedRigidBody) == 0x0002A0, "Member 'AGeometryCollectionDebugDrawActor::SelectedRigidBody' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bDebugDrawWholeCollection) == 0x0002B8, "Member 'AGeometryCollectionDebugDrawActor::bDebugDrawWholeCollection' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bDebugDrawHierarchy) == 0x0002B9, "Member 'AGeometryCollectionDebugDrawActor::bDebugDrawHierarchy' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bDebugDrawClustering) == 0x0002BA, "Member 'AGeometryCollectionDebugDrawActor::bDebugDrawClustering' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, HideGeometry) == 0x0002BB, "Member 'AGeometryCollectionDebugDrawActor::HideGeometry' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyId) == 0x0002BC, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyId' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyCollision) == 0x0002BD, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyCollision' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bCollisionAtOrigin) == 0x0002BE, "Member 'AGeometryCollectionDebugDrawActor::bCollisionAtOrigin' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyTransform) == 0x0002BF, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyTransform' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyInertia) == 0x0002C0, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyInertia' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyVelocity) == 0x0002C1, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyVelocity' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyForce) == 0x0002C2, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyForce' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowRigidBodyInfos) == 0x0002C3, "Member 'AGeometryCollectionDebugDrawActor::bShowRigidBodyInfos' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowTransformIndex) == 0x0002C4, "Member 'AGeometryCollectionDebugDrawActor::bShowTransformIndex' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowTransform) == 0x0002C5, "Member 'AGeometryCollectionDebugDrawActor::bShowTransform' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowParent) == 0x0002C6, "Member 'AGeometryCollectionDebugDrawActor::bShowParent' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowLevel) == 0x0002C7, "Member 'AGeometryCollectionDebugDrawActor::bShowLevel' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowConnectivityEdges) == 0x0002C8, "Member 'AGeometryCollectionDebugDrawActor::bShowConnectivityEdges' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowGeometryIndex) == 0x0002C9, "Member 'AGeometryCollectionDebugDrawActor::bShowGeometryIndex' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowGeometryTransform) == 0x0002CA, "Member 'AGeometryCollectionDebugDrawActor::bShowGeometryTransform' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowBoundingBox) == 0x0002CB, "Member 'AGeometryCollectionDebugDrawActor::bShowBoundingBox' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowFaces) == 0x0002CC, "Member 'AGeometryCollectionDebugDrawActor::bShowFaces' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowFaceIndices) == 0x0002CD, "Member 'AGeometryCollectionDebugDrawActor::bShowFaceIndices' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowFaceNormals) == 0x0002CE, "Member 'AGeometryCollectionDebugDrawActor::bShowFaceNormals' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowSingleFace) == 0x0002CF, "Member 'AGeometryCollectionDebugDrawActor::bShowSingleFace' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, SingleFaceIndex) == 0x0002D0, "Member 'AGeometryCollectionDebugDrawActor::SingleFaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowVertices) == 0x0002D4, "Member 'AGeometryCollectionDebugDrawActor::bShowVertices' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowVertexIndices) == 0x0002D5, "Member 'AGeometryCollectionDebugDrawActor::bShowVertexIndices' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bShowVertexNormals) == 0x0002D6, "Member 'AGeometryCollectionDebugDrawActor::bShowVertexNormals' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bUseActiveVisualization) == 0x0002D7, "Member 'AGeometryCollectionDebugDrawActor::bUseActiveVisualization' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, PointThickness) == 0x0002D8, "Member 'AGeometryCollectionDebugDrawActor::PointThickness' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, LineThickness) == 0x0002DC, "Member 'AGeometryCollectionDebugDrawActor::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, bTextShadow) == 0x0002E0, "Member 'AGeometryCollectionDebugDrawActor::bTextShadow' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, TextScale) == 0x0002E4, "Member 'AGeometryCollectionDebugDrawActor::TextScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, NormalScale) == 0x0002E8, "Member 'AGeometryCollectionDebugDrawActor::NormalScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, AxisScale) == 0x0002EC, "Member 'AGeometryCollectionDebugDrawActor::AxisScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, ArrowScale) == 0x0002F0, "Member 'AGeometryCollectionDebugDrawActor::ArrowScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyIdColor) == 0x0002F4, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyIdColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyTransformScale) == 0x0002F8, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyTransformScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyCollisionColor) == 0x0002FC, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyCollisionColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyInertiaColor) == 0x000300, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyInertiaColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyVelocityColor) == 0x000304, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyVelocityColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyForceColor) == 0x000308, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyForceColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, RigidBodyInfoColor) == 0x00030C, "Member 'AGeometryCollectionDebugDrawActor::RigidBodyInfoColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, TransformIndexColor) == 0x000310, "Member 'AGeometryCollectionDebugDrawActor::TransformIndexColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, TransformScale) == 0x000314, "Member 'AGeometryCollectionDebugDrawActor::TransformScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, LevelColor) == 0x000318, "Member 'AGeometryCollectionDebugDrawActor::LevelColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, ParentColor) == 0x00031C, "Member 'AGeometryCollectionDebugDrawActor::ParentColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, ConnectivityEdgeThickness) == 0x000320, "Member 'AGeometryCollectionDebugDrawActor::ConnectivityEdgeThickness' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, GeometryIndexColor) == 0x000324, "Member 'AGeometryCollectionDebugDrawActor::GeometryIndexColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, GeometryTransformScale) == 0x000328, "Member 'AGeometryCollectionDebugDrawActor::GeometryTransformScale' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, BoundingBoxColor) == 0x00032C, "Member 'AGeometryCollectionDebugDrawActor::BoundingBoxColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, FaceColor) == 0x000330, "Member 'AGeometryCollectionDebugDrawActor::FaceColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, FaceIndexColor) == 0x000334, "Member 'AGeometryCollectionDebugDrawActor::FaceIndexColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, FaceNormalColor) == 0x000338, "Member 'AGeometryCollectionDebugDrawActor::FaceNormalColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, SingleFaceColor) == 0x00033C, "Member 'AGeometryCollectionDebugDrawActor::SingleFaceColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, VertexColor) == 0x000340, "Member 'AGeometryCollectionDebugDrawActor::VertexColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, VertexIndexColor) == 0x000344, "Member 'AGeometryCollectionDebugDrawActor::VertexIndexColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, VertexNormalColor) == 0x000348, "Member 'AGeometryCollectionDebugDrawActor::VertexNormalColor' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionDebugDrawActor, SpriteComponent) == 0x000350, "Member 'AGeometryCollectionDebugDrawActor::SpriteComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionDebugDrawComponent \ +static_assert(alignof(UGeometryCollectionDebugDrawComponent) == 0x000008, "Wrong alignment on UGeometryCollectionDebugDrawComponent"); \ +static_assert(sizeof(UGeometryCollectionDebugDrawComponent) == 0x0000B8, "Wrong size on UGeometryCollectionDebugDrawComponent"); \ +static_assert(offsetof(UGeometryCollectionDebugDrawComponent, GeometryCollectionDebugDrawActor) == 0x0000A0, "Member 'UGeometryCollectionDebugDrawComponent::GeometryCollectionDebugDrawActor' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionDebugDrawComponent, GeometryCollectionRenderLevelSetActor) == 0x0000A8, "Member 'UGeometryCollectionDebugDrawComponent::GeometryCollectionRenderLevelSetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGeometryCollectionISMPoolActor \ +static_assert(alignof(AGeometryCollectionISMPoolActor) == 0x000008, "Wrong alignment on AGeometryCollectionISMPoolActor"); \ +static_assert(sizeof(AGeometryCollectionISMPoolActor) == 0x0002A8, "Wrong size on AGeometryCollectionISMPoolActor"); \ +static_assert(offsetof(AGeometryCollectionISMPoolActor, ISMPoolComp) == 0x000298, "Member 'AGeometryCollectionISMPoolActor::ISMPoolComp' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionISMPoolActor, ISMPoolDebugDrawComp) == 0x0002A0, "Member 'AGeometryCollectionISMPoolActor::ISMPoolDebugDrawComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionISMPoolComponent \ +static_assert(alignof(UGeometryCollectionISMPoolComponent) == 0x000010, "Wrong alignment on UGeometryCollectionISMPoolComponent"); \ +static_assert(sizeof(UGeometryCollectionISMPoolComponent) == 0x000370, "Wrong size on UGeometryCollectionISMPoolComponent"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionISMPoolRenderer \ +static_assert(alignof(UGeometryCollectionISMPoolRenderer) == 0x000010, "Wrong alignment on UGeometryCollectionISMPoolRenderer"); \ +static_assert(sizeof(UGeometryCollectionISMPoolRenderer) == 0x0000D0, "Wrong size on UGeometryCollectionISMPoolRenderer"); \ +static_assert(offsetof(UGeometryCollectionISMPoolRenderer, ISMPoolActor) == 0x000030, "Member 'UGeometryCollectionISMPoolRenderer::ISMPoolActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollection_SetConvertVertexColorsToSRGB \ +static_assert(alignof(GeometryCollection_SetConvertVertexColorsToSRGB) == 0x000001, "Wrong alignment on GeometryCollection_SetConvertVertexColorsToSRGB"); \ +static_assert(sizeof(GeometryCollection_SetConvertVertexColorsToSRGB) == 0x000001, "Wrong size on GeometryCollection_SetConvertVertexColorsToSRGB"); \ +static_assert(offsetof(GeometryCollection_SetConvertVertexColorsToSRGB, bValue) == 0x000000, "Member 'GeometryCollection_SetConvertVertexColorsToSRGB::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCollection_SetEnableNanite \ +static_assert(alignof(GeometryCollection_SetEnableNanite) == 0x000001, "Wrong alignment on GeometryCollection_SetEnableNanite"); \ +static_assert(sizeof(GeometryCollection_SetEnableNanite) == 0x000001, "Wrong size on GeometryCollection_SetEnableNanite"); \ +static_assert(offsetof(GeometryCollection_SetEnableNanite, bValue) == 0x000000, "Member 'GeometryCollection_SetEnableNanite::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollection \ +static_assert(alignof(UGeometryCollection) == 0x000008, "Wrong alignment on UGeometryCollection"); \ +static_assert(sizeof(UGeometryCollection) == 0x0001E8, "Wrong size on UGeometryCollection"); \ +static_assert(offsetof(UGeometryCollection, EnableClustering) == 0x000038, "Member 'UGeometryCollection::EnableClustering' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, ClusterGroupIndex) == 0x00003C, "Member 'UGeometryCollection::ClusterGroupIndex' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, MaxClusterLevel) == 0x000040, "Member 'UGeometryCollection::MaxClusterLevel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, DamageModel) == 0x000044, "Member 'UGeometryCollection::DamageModel' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, DamageThreshold) == 0x000048, "Member 'UGeometryCollection::DamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bUseSizeSpecificDamageThreshold) == 0x000058, "Member 'UGeometryCollection::bUseSizeSpecificDamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, PerClusterOnlyDamageThreshold) == 0x000059, "Member 'UGeometryCollection::PerClusterOnlyDamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, DamagePropagationData) == 0x00005C, "Member 'UGeometryCollection::DamagePropagationData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, ClusterConnectionType) == 0x000068, "Member 'UGeometryCollection::ClusterConnectionType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, ConnectionGraphBoundsFilteringMargin) == 0x00006C, "Member 'UGeometryCollection::ConnectionGraphBoundsFilteringMargin' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, Materials) == 0x000070, "Member 'UGeometryCollection::Materials' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, EmbeddedGeometryExemplar) == 0x000080, "Member 'UGeometryCollection::EmbeddedGeometryExemplar' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bUseFullPrecisionUVs) == 0x000090, "Member 'UGeometryCollection::bUseFullPrecisionUVs' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bStripOnCook) == 0x000091, "Member 'UGeometryCollection::bStripOnCook' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bStripRenderDataOnCook) == 0x000092, "Member 'UGeometryCollection::bStripRenderDataOnCook' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, CustomRendererType) == 0x000098, "Member 'UGeometryCollection::CustomRendererType' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, RootProxyData) == 0x0000A0, "Member 'UGeometryCollection::RootProxyData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, AutoInstanceMeshes) == 0x0000B0, "Member 'UGeometryCollection::AutoInstanceMeshes' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, EnableNanite) == 0x0000C0, "Member 'UGeometryCollection::EnableNanite' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bConvertVertexColorsToSRGB) == 0x0000C1, "Member 'UGeometryCollection::bConvertVertexColorsToSRGB' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, PhysicsMaterial) == 0x0000C8, "Member 'UGeometryCollection::PhysicsMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bDensityFromPhysicsMaterial) == 0x0000D0, "Member 'UGeometryCollection::bDensityFromPhysicsMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bMassAsDensity) == 0x0000D1, "Member 'UGeometryCollection::bMassAsDensity' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, MASS) == 0x0000D4, "Member 'UGeometryCollection::MASS' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, MinimumMassClamp) == 0x0000D8, "Member 'UGeometryCollection::MinimumMassClamp' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bImportCollisionFromSource) == 0x0000DC, "Member 'UGeometryCollection::bImportCollisionFromSource' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bScaleOnRemoval) == 0x0000DD, "Member 'UGeometryCollection::bScaleOnRemoval' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bRemoveOnMaxSleep) == 0x0000DE, "Member 'UGeometryCollection::bRemoveOnMaxSleep' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, MaximumSleepTime) == 0x0000E0, "Member 'UGeometryCollection::MaximumSleepTime' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, RemovalDuration) == 0x0000F0, "Member 'UGeometryCollection::RemovalDuration' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, bSlowMovingAsSleeping) == 0x000100, "Member 'UGeometryCollection::bSlowMovingAsSleeping' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, SlowMovingVelocityThreshold) == 0x000104, "Member 'UGeometryCollection::SlowMovingVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, SizeSpecificData) == 0x000108, "Member 'UGeometryCollection::SizeSpecificData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, EnableRemovePiecesOnFracture) == 0x000118, "Member 'UGeometryCollection::EnableRemovePiecesOnFracture' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, RemoveOnFractureMaterials) == 0x000120, "Member 'UGeometryCollection::RemoveOnFractureMaterials' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, DataflowAsset) == 0x000130, "Member 'UGeometryCollection::DataflowAsset' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, DataflowTerminal) == 0x000138, "Member 'UGeometryCollection::DataflowTerminal' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, Overrides) == 0x000148, "Member 'UGeometryCollection::Overrides' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, PersistentGuid) == 0x000198, "Member 'UGeometryCollection::PersistentGuid' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, StateGuid) == 0x0001A8, "Member 'UGeometryCollection::StateGuid' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, RootIndex) == 0x0001B8, "Member 'UGeometryCollection::RootIndex' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, BoneSelectedMaterialIndex) == 0x0001BC, "Member 'UGeometryCollection::BoneSelectedMaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, BoneSelectedMaterial) == 0x0001C0, "Member 'UGeometryCollection::BoneSelectedMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollection, AssetUserData) == 0x0001D8, "Member 'UGeometryCollection::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGeometryCollectionRenderLevelSetActor \ +static_assert(alignof(AGeometryCollectionRenderLevelSetActor) == 0x000010, "Wrong alignment on AGeometryCollectionRenderLevelSetActor"); \ +static_assert(sizeof(AGeometryCollectionRenderLevelSetActor) == 0x000390, "Wrong size on AGeometryCollectionRenderLevelSetActor"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, TargetVolumeTexture) == 0x000298, "Member 'AGeometryCollectionRenderLevelSetActor::TargetVolumeTexture' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, RayMarchMaterial) == 0x0002A0, "Member 'AGeometryCollectionRenderLevelSetActor::RayMarchMaterial' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, SurfaceTolerance) == 0x0002A8, "Member 'AGeometryCollectionRenderLevelSetActor::SurfaceTolerance' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, Isovalue) == 0x0002AC, "Member 'AGeometryCollectionRenderLevelSetActor::Isovalue' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, Enabled) == 0x0002B0, "Member 'AGeometryCollectionRenderLevelSetActor::Enabled' has a wrong offset!"); \ +static_assert(offsetof(AGeometryCollectionRenderLevelSetActor, RenderVolumeBoundingBox) == 0x0002B1, "Member 'AGeometryCollectionRenderLevelSetActor::RenderVolumeBoundingBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCollectionISMPoolDebugDrawComponent \ +static_assert(alignof(UGeometryCollectionISMPoolDebugDrawComponent) == 0x000010, "Wrong alignment on UGeometryCollectionISMPoolDebugDrawComponent"); \ +static_assert(sizeof(UGeometryCollectionISMPoolDebugDrawComponent) == 0x0005E0, "Wrong size on UGeometryCollectionISMPoolDebugDrawComponent"); \ +static_assert(offsetof(UGeometryCollectionISMPoolDebugDrawComponent, bShowGlobalStats) == 0x0005C0, "Member 'UGeometryCollectionISMPoolDebugDrawComponent::bShowGlobalStats' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionISMPoolDebugDrawComponent, bShowStats) == 0x0005C1, "Member 'UGeometryCollectionISMPoolDebugDrawComponent::bShowStats' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionISMPoolDebugDrawComponent, bShowBounds) == 0x0005C2, "Member 'UGeometryCollectionISMPoolDebugDrawComponent::bShowBounds' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCollectionISMPoolDebugDrawComponent, SelectedComponent) == 0x0005C8, "Member 'UGeometryCollectionISMPoolDebugDrawComponent::SelectedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAngularRangeLimit \ +static_assert(alignof(FAngularRangeLimit) == 0x000008, "Wrong alignment on FAngularRangeLimit"); \ +static_assert(sizeof(FAngularRangeLimit) == 0x000040, "Wrong size on FAngularRangeLimit"); \ +static_assert(offsetof(FAngularRangeLimit, LimitMin) == 0x000000, "Member 'FAngularRangeLimit::LimitMin' has a wrong offset!"); \ +static_assert(offsetof(FAngularRangeLimit, LimitMax) == 0x000018, "Member 'FAngularRangeLimit::LimitMax' has a wrong offset!"); \ +static_assert(offsetof(FAngularRangeLimit, bone) == 0x000030, "Member 'FAngularRangeLimit::bone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_MeshSpaceRefPose \ +static_assert(alignof(FAnimNode_MeshSpaceRefPose) == 0x000008, "Wrong alignment on FAnimNode_MeshSpaceRefPose"); \ +static_assert(sizeof(FAnimNode_MeshSpaceRefPose) == 0x000010, "Wrong size on FAnimNode_MeshSpaceRefPose"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpaceGraphBase \ +static_assert(alignof(FAnimNode_BlendSpaceGraphBase) == 0x000008, "Wrong alignment on FAnimNode_BlendSpaceGraphBase"); \ +static_assert(sizeof(FAnimNode_BlendSpaceGraphBase) == 0x000068, "Wrong size on FAnimNode_BlendSpaceGraphBase"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, X) == 0x000010, "Member 'FAnimNode_BlendSpaceGraphBase::X' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, Y) == 0x000014, "Member 'FAnimNode_BlendSpaceGraphBase::Y' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, GroupName) == 0x000018, "Member 'FAnimNode_BlendSpaceGraphBase::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, GroupRole) == 0x000020, "Member 'FAnimNode_BlendSpaceGraphBase::GroupRole' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, BlendSpace) == 0x000028, "Member 'FAnimNode_BlendSpaceGraphBase::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceGraphBase, SamplePoseLinks) == 0x000030, "Member 'FAnimNode_BlendSpaceGraphBase::SamplePoseLinks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RotationOffsetBlendSpaceGraph \ +static_assert(alignof(FAnimNode_RotationOffsetBlendSpaceGraph) == 0x000008, "Wrong alignment on FAnimNode_RotationOffsetBlendSpaceGraph"); \ +static_assert(sizeof(FAnimNode_RotationOffsetBlendSpaceGraph) == 0x000110, "Wrong size on FAnimNode_RotationOffsetBlendSpaceGraph"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, BasePose) == 0x000068, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::BasePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, LODThreshold) == 0x000078, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, alpha) == 0x00007C, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, AlphaScaleBias) == 0x000080, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, AlphaBoolBlend) == 0x000088, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, AlphaCurveName) == 0x0000D0, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, AlphaScaleBiasClamp) == 0x0000D8, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, AlphaInputType) == 0x00010C, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpaceGraph, bAlphaBoolEnabled) == 0x00010D, "Member 'FAnimNode_RotationOffsetBlendSpaceGraph::bAlphaBoolEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequenceEvaluatorBase \ +static_assert(alignof(FAnimNode_SequenceEvaluatorBase) == 0x000008, "Wrong alignment on FAnimNode_SequenceEvaluatorBase"); \ +static_assert(sizeof(FAnimNode_SequenceEvaluatorBase) == 0x000040, "Wrong size on FAnimNode_SequenceEvaluatorBase"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequenceEvaluator_Standalone \ +static_assert(alignof(FAnimNode_SequenceEvaluator_Standalone) == 0x000008, "Wrong alignment on FAnimNode_SequenceEvaluator_Standalone"); \ +static_assert(sizeof(FAnimNode_SequenceEvaluator_Standalone) == 0x000068, "Wrong size on FAnimNode_SequenceEvaluator_Standalone"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, GroupName) == 0x000040, "Member 'FAnimNode_SequenceEvaluator_Standalone::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, GroupRole) == 0x000048, "Member 'FAnimNode_SequenceEvaluator_Standalone::GroupRole' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, Method) == 0x000049, "Member 'FAnimNode_SequenceEvaluator_Standalone::Method' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, bIgnoreForRelevancyTest) == 0x00004A, "Member 'FAnimNode_SequenceEvaluator_Standalone::bIgnoreForRelevancyTest' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, Sequence) == 0x000050, "Member 'FAnimNode_SequenceEvaluator_Standalone::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, ExplicitTime) == 0x000058, "Member 'FAnimNode_SequenceEvaluator_Standalone::ExplicitTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, bShouldLoop) == 0x00005C, "Member 'FAnimNode_SequenceEvaluator_Standalone::bShouldLoop' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, bTeleportToExplicitTime) == 0x00005D, "Member 'FAnimNode_SequenceEvaluator_Standalone::bTeleportToExplicitTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, ReinitializationBehavior) == 0x00005E, "Member 'FAnimNode_SequenceEvaluator_Standalone::ReinitializationBehavior' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SequenceEvaluator_Standalone, StartPosition) == 0x000060, "Member 'FAnimNode_SequenceEvaluator_Standalone::StartPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpaceGraph \ +static_assert(alignof(FAnimNode_BlendSpaceGraph) == 0x000008, "Wrong alignment on FAnimNode_BlendSpaceGraph"); \ +static_assert(sizeof(FAnimNode_BlendSpaceGraph) == 0x000068, "Wrong size on FAnimNode_BlendSpaceGraph"); \ + +#define DUMPER7_ASSERTS_FAnimPhysSphericalLimit \ +static_assert(alignof(FAnimPhysSphericalLimit) == 0x000008, "Wrong alignment on FAnimPhysSphericalLimit"); \ +static_assert(sizeof(FAnimPhysSphericalLimit) == 0x000030, "Wrong size on FAnimPhysSphericalLimit"); \ +static_assert(offsetof(FAnimPhysSphericalLimit, DrivingBone) == 0x000000, "Member 'FAnimPhysSphericalLimit::DrivingBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysSphericalLimit, SphereLocalOffset) == 0x000010, "Member 'FAnimPhysSphericalLimit::SphereLocalOffset' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysSphericalLimit, LimitRadius) == 0x000028, "Member 'FAnimPhysSphericalLimit::LimitRadius' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysSphericalLimit, LimitType) == 0x00002C, "Member 'FAnimPhysSphericalLimit::LimitType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SkeletalControlBase \ +static_assert(alignof(FAnimNode_SkeletalControlBase) == 0x000008, "Wrong alignment on FAnimNode_SkeletalControlBase"); \ +static_assert(sizeof(FAnimNode_SkeletalControlBase) == 0x0000C8, "Wrong size on FAnimNode_SkeletalControlBase"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, ComponentPose) == 0x000010, "Member 'FAnimNode_SkeletalControlBase::ComponentPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, LODThreshold) == 0x000020, "Member 'FAnimNode_SkeletalControlBase::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, ActualAlpha) == 0x000024, "Member 'FAnimNode_SkeletalControlBase::ActualAlpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, AlphaInputType) == 0x000028, "Member 'FAnimNode_SkeletalControlBase::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, bAlphaBoolEnabled) == 0x000029, "Member 'FAnimNode_SkeletalControlBase::bAlphaBoolEnabled' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, alpha) == 0x00002C, "Member 'FAnimNode_SkeletalControlBase::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, AlphaScaleBias) == 0x000030, "Member 'FAnimNode_SkeletalControlBase::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, AlphaBoolBlend) == 0x000038, "Member 'FAnimNode_SkeletalControlBase::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, AlphaCurveName) == 0x000080, "Member 'FAnimNode_SkeletalControlBase::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SkeletalControlBase, AlphaScaleBiasClamp) == 0x000088, "Member 'FAnimNode_SkeletalControlBase::AlphaScaleBiasClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ModifyBone \ +static_assert(alignof(FAnimNode_ModifyBone) == 0x000008, "Wrong alignment on FAnimNode_ModifyBone"); \ +static_assert(sizeof(FAnimNode_ModifyBone) == 0x000128, "Wrong size on FAnimNode_ModifyBone"); \ +static_assert(offsetof(FAnimNode_ModifyBone, BoneToModify) == 0x0000C8, "Member 'FAnimNode_ModifyBone::BoneToModify' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, Translation) == 0x0000D8, "Member 'FAnimNode_ModifyBone::Translation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, Rotation) == 0x0000F0, "Member 'FAnimNode_ModifyBone::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, Scale) == 0x000108, "Member 'FAnimNode_ModifyBone::Scale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, TranslationMode) == 0x000120, "Member 'FAnimNode_ModifyBone::TranslationMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, RotationMode) == 0x000121, "Member 'FAnimNode_ModifyBone::RotationMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, ScaleMode) == 0x000122, "Member 'FAnimNode_ModifyBone::ScaleMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, TranslationSpace) == 0x000123, "Member 'FAnimNode_ModifyBone::TranslationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, RotationSpace) == 0x000124, "Member 'FAnimNode_ModifyBone::RotationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyBone, ScaleSpace) == 0x000125, "Member 'FAnimNode_ModifyBone::ScaleSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Sync \ +static_assert(alignof(FAnimNode_Sync) == 0x000008, "Wrong alignment on FAnimNode_Sync"); \ +static_assert(sizeof(FAnimNode_Sync) == 0x000030, "Wrong size on FAnimNode_Sync"); \ +static_assert(offsetof(FAnimNode_Sync, Source) == 0x000010, "Member 'FAnimNode_Sync::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Sync, GroupName) == 0x000020, "Member 'FAnimNode_Sync::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Sync, GroupRole) == 0x000028, "Member 'FAnimNode_Sync::GroupRole' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpaceSampleResult \ +static_assert(alignof(FAnimNode_BlendSpaceSampleResult) == 0x000008, "Wrong alignment on FAnimNode_BlendSpaceSampleResult"); \ +static_assert(sizeof(FAnimNode_BlendSpaceSampleResult) == 0x000020, "Wrong size on FAnimNode_BlendSpaceSampleResult"); \ + +#define DUMPER7_ASSERTS_FAnimNode_TwoWayBlend \ +static_assert(alignof(FAnimNode_TwoWayBlend) == 0x000008, "Wrong alignment on FAnimNode_TwoWayBlend"); \ +static_assert(sizeof(FAnimNode_TwoWayBlend) == 0x0000C8, "Wrong size on FAnimNode_TwoWayBlend"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, A) == 0x000010, "Member 'FAnimNode_TwoWayBlend::A' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, B) == 0x000020, "Member 'FAnimNode_TwoWayBlend::B' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, AlphaInputType) == 0x000030, "Member 'FAnimNode_TwoWayBlend::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, alpha) == 0x000034, "Member 'FAnimNode_TwoWayBlend::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, AlphaScaleBias) == 0x000038, "Member 'FAnimNode_TwoWayBlend::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, AlphaBoolBlend) == 0x000040, "Member 'FAnimNode_TwoWayBlend::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, AlphaCurveName) == 0x000088, "Member 'FAnimNode_TwoWayBlend::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoWayBlend, AlphaScaleBiasClamp) == 0x000090, "Member 'FAnimNode_TwoWayBlend::AlphaScaleBiasClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimPhysConstraintSetup \ +static_assert(alignof(FAnimPhysConstraintSetup) == 0x000008, "Wrong alignment on FAnimPhysConstraintSetup"); \ +static_assert(sizeof(FAnimPhysConstraintSetup) == 0x000088, "Wrong size on FAnimPhysConstraintSetup"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, LinearXLimitType) == 0x000000, "Member 'FAnimPhysConstraintSetup::LinearXLimitType' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, LinearYLimitType) == 0x000001, "Member 'FAnimPhysConstraintSetup::LinearYLimitType' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, LinearZLimitType) == 0x000002, "Member 'FAnimPhysConstraintSetup::LinearZLimitType' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, LinearAxesMin) == 0x000008, "Member 'FAnimPhysConstraintSetup::LinearAxesMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, LinearAxesMax) == 0x000020, "Member 'FAnimPhysConstraintSetup::LinearAxesMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, AngularConstraintType) == 0x000038, "Member 'FAnimPhysConstraintSetup::AngularConstraintType' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, TwistAxis) == 0x000039, "Member 'FAnimPhysConstraintSetup::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, AngularTargetAxis) == 0x00003A, "Member 'FAnimPhysConstraintSetup::AngularTargetAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, ConeAngle) == 0x00003C, "Member 'FAnimPhysConstraintSetup::ConeAngle' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, AngularLimitsMin) == 0x000040, "Member 'FAnimPhysConstraintSetup::AngularLimitsMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, AngularLimitsMax) == 0x000058, "Member 'FAnimPhysConstraintSetup::AngularLimitsMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysConstraintSetup, AngularTarget) == 0x000070, "Member 'FAnimPhysConstraintSetup::AngularTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimPhysBodyDefinition \ +static_assert(alignof(FAnimPhysBodyDefinition) == 0x000008, "Wrong alignment on FAnimPhysBodyDefinition"); \ +static_assert(sizeof(FAnimPhysBodyDefinition) == 0x0000D0, "Wrong size on FAnimPhysBodyDefinition"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, BoundBone) == 0x000000, "Member 'FAnimPhysBodyDefinition::BoundBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, BoxExtents) == 0x000010, "Member 'FAnimPhysBodyDefinition::BoxExtents' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, LocalJointOffset) == 0x000028, "Member 'FAnimPhysBodyDefinition::LocalJointOffset' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, ConstraintSetup) == 0x000040, "Member 'FAnimPhysBodyDefinition::ConstraintSetup' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, CollisionType) == 0x0000C8, "Member 'FAnimPhysBodyDefinition::CollisionType' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysBodyDefinition, SphereCollisionRadius) == 0x0000CC, "Member 'FAnimPhysBodyDefinition::SphereCollisionRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimPhysPlanarLimit \ +static_assert(alignof(FAnimPhysPlanarLimit) == 0x000010, "Wrong alignment on FAnimPhysPlanarLimit"); \ +static_assert(sizeof(FAnimPhysPlanarLimit) == 0x000070, "Wrong size on FAnimPhysPlanarLimit"); \ +static_assert(offsetof(FAnimPhysPlanarLimit, DrivingBone) == 0x000000, "Member 'FAnimPhysPlanarLimit::DrivingBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimPhysPlanarLimit, PlaneTransform) == 0x000010, "Member 'FAnimPhysPlanarLimit::PlaneTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRotationRetargetingInfo \ +static_assert(alignof(FRotationRetargetingInfo) == 0x000010, "Wrong alignment on FRotationRetargetingInfo"); \ +static_assert(sizeof(FRotationRetargetingInfo) == 0x0001A0, "Wrong size on FRotationRetargetingInfo"); \ +static_assert(offsetof(FRotationRetargetingInfo, bEnabled) == 0x000000, "Member 'FRotationRetargetingInfo::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, Source) == 0x000010, "Member 'FRotationRetargetingInfo::Source' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, Target) == 0x000070, "Member 'FRotationRetargetingInfo::Target' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, RotationComponent) == 0x0000D0, "Member 'FRotationRetargetingInfo::RotationComponent' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, TwistAxis) == 0x0000D8, "Member 'FRotationRetargetingInfo::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, bUseAbsoluteAngle) == 0x0000F0, "Member 'FRotationRetargetingInfo::bUseAbsoluteAngle' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, SourceMinimum) == 0x0000F4, "Member 'FRotationRetargetingInfo::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, SourceMaximum) == 0x0000F8, "Member 'FRotationRetargetingInfo::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, TargetMinimum) == 0x0000FC, "Member 'FRotationRetargetingInfo::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, TargetMaximum) == 0x000100, "Member 'FRotationRetargetingInfo::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, EasingType) == 0x000104, "Member 'FRotationRetargetingInfo::EasingType' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, CustomCurve) == 0x000108, "Member 'FRotationRetargetingInfo::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, bFlipEasing) == 0x000190, "Member 'FRotationRetargetingInfo::bFlipEasing' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, EasingWeight) == 0x000194, "Member 'FRotationRetargetingInfo::EasingWeight' has a wrong offset!"); \ +static_assert(offsetof(FRotationRetargetingInfo, bClamp) == 0x000198, "Member 'FRotationRetargetingInfo::bClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_AnimDynamics \ +static_assert(alignof(FAnimNode_AnimDynamics) == 0x000010, "Wrong alignment on FAnimNode_AnimDynamics"); \ +static_assert(sizeof(FAnimNode_AnimDynamics) == 0x000520, "Wrong size on FAnimNode_AnimDynamics"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, LinearDampingOverride) == 0x0000C8, "Member 'FAnimNode_AnimDynamics::LinearDampingOverride' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, AngularDampingOverride) == 0x0000CC, "Member 'FAnimNode_AnimDynamics::AngularDampingOverride' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, RelativeSpaceBone) == 0x000190, "Member 'FAnimNode_AnimDynamics::RelativeSpaceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, BoundBone) == 0x0001A0, "Member 'FAnimNode_AnimDynamics::BoundBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, ChainEnd) == 0x0001B0, "Member 'FAnimNode_AnimDynamics::ChainEnd' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, PhysicsBodyDefinitions) == 0x0001C0, "Member 'FAnimNode_AnimDynamics::PhysicsBodyDefinitions' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, GravityScale) == 0x0001D0, "Member 'FAnimNode_AnimDynamics::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, GravityOverride) == 0x0001D8, "Member 'FAnimNode_AnimDynamics::GravityOverride' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, LinearSpringConstant) == 0x0001F0, "Member 'FAnimNode_AnimDynamics::LinearSpringConstant' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, AngularSpringConstant) == 0x0001F4, "Member 'FAnimNode_AnimDynamics::AngularSpringConstant' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, WindScale) == 0x0001F8, "Member 'FAnimNode_AnimDynamics::WindScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, ComponentLinearAccScale) == 0x000200, "Member 'FAnimNode_AnimDynamics::ComponentLinearAccScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, ComponentLinearVelScale) == 0x000218, "Member 'FAnimNode_AnimDynamics::ComponentLinearVelScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, ComponentAppliedLinearAccClamp) == 0x000230, "Member 'FAnimNode_AnimDynamics::ComponentAppliedLinearAccClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, AngularBiasOverride) == 0x000248, "Member 'FAnimNode_AnimDynamics::AngularBiasOverride' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, NumSolverIterationsPreUpdate) == 0x00024C, "Member 'FAnimNode_AnimDynamics::NumSolverIterationsPreUpdate' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, NumSolverIterationsPostUpdate) == 0x000250, "Member 'FAnimNode_AnimDynamics::NumSolverIterationsPostUpdate' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, SphericalLimits) == 0x000258, "Member 'FAnimNode_AnimDynamics::SphericalLimits' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, ExternalForce) == 0x000268, "Member 'FAnimNode_AnimDynamics::ExternalForce' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, PlanarLimits) == 0x000280, "Member 'FAnimNode_AnimDynamics::PlanarLimits' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, SimulationSpace) == 0x000290, "Member 'FAnimNode_AnimDynamics::SimulationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AnimDynamics, RetargetingSettings) == 0x0002A0, "Member 'FAnimNode_AnimDynamics::RetargetingSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RefPose \ +static_assert(alignof(FAnimNode_RefPose) == 0x000008, "Wrong alignment on FAnimNode_RefPose"); \ +static_assert(sizeof(FAnimNode_RefPose) == 0x000010, "Wrong size on FAnimNode_RefPose"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ApplyLimits \ +static_assert(alignof(FAnimNode_ApplyLimits) == 0x000008, "Wrong alignment on FAnimNode_ApplyLimits"); \ +static_assert(sizeof(FAnimNode_ApplyLimits) == 0x0000E8, "Wrong size on FAnimNode_ApplyLimits"); \ +static_assert(offsetof(FAnimNode_ApplyLimits, AngularRangeLimits) == 0x0000C8, "Member 'FAnimNode_ApplyLimits::AngularRangeLimits' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyLimits, AngularOffsets) == 0x0000D8, "Member 'FAnimNode_ApplyLimits::AngularOffsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RotationMultiplier \ +static_assert(alignof(FAnimNode_RotationMultiplier) == 0x000008, "Wrong alignment on FAnimNode_RotationMultiplier"); \ +static_assert(sizeof(FAnimNode_RotationMultiplier) == 0x0000F0, "Wrong size on FAnimNode_RotationMultiplier"); \ +static_assert(offsetof(FAnimNode_RotationMultiplier, TargetBone) == 0x0000C8, "Member 'FAnimNode_RotationMultiplier::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationMultiplier, SourceBone) == 0x0000D8, "Member 'FAnimNode_RotationMultiplier::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationMultiplier, Multiplier) == 0x0000E8, "Member 'FAnimNode_RotationMultiplier::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationMultiplier, RotationAxisToRefer) == 0x0000EC, "Member 'FAnimNode_RotationMultiplier::RotationAxisToRefer' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationMultiplier, bIsAdditive) == 0x0000ED, "Member 'FAnimNode_RotationMultiplier::bIsAdditive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendSpaceReference \ +static_assert(alignof(FBlendSpaceReference) == 0x000008, "Wrong alignment on FBlendSpaceReference"); \ +static_assert(sizeof(FBlendSpaceReference) == 0x000010, "Wrong size on FBlendSpaceReference"); \ + +#define DUMPER7_ASSERTS_FPositionHistory \ +static_assert(alignof(FPositionHistory) == 0x000008, "Wrong alignment on FPositionHistory"); \ +static_assert(sizeof(FPositionHistory) == 0x000030, "Wrong size on FPositionHistory"); \ +static_assert(offsetof(FPositionHistory, Positions) == 0x000000, "Member 'FPositionHistory::Positions' has a wrong offset!"); \ +static_assert(offsetof(FPositionHistory, Range) == 0x000010, "Member 'FPositionHistory::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationStateResultReference \ +static_assert(alignof(FAnimationStateResultReference) == 0x000008, "Wrong alignment on FAnimationStateResultReference"); \ +static_assert(sizeof(FAnimationStateResultReference) == 0x000010, "Wrong size on FAnimationStateResultReference"); \ + +#define DUMPER7_ASSERTS_FAnimationStateMachineReference \ +static_assert(alignof(FAnimationStateMachineReference) == 0x000008, "Wrong alignment on FAnimationStateMachineReference"); \ +static_assert(sizeof(FAnimationStateMachineReference) == 0x000010, "Wrong size on FAnimationStateMachineReference"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpacePlayerBase \ +static_assert(alignof(FAnimNode_BlendSpacePlayerBase) == 0x000008, "Wrong alignment on FAnimNode_BlendSpacePlayerBase"); \ +static_assert(sizeof(FAnimNode_BlendSpacePlayerBase) == 0x000068, "Wrong size on FAnimNode_BlendSpacePlayerBase"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayerBase, PreviousBlendSpace) == 0x000060, "Member 'FAnimNode_BlendSpacePlayerBase::PreviousBlendSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpacePlayer \ +static_assert(alignof(FAnimNode_BlendSpacePlayer) == 0x000008, "Wrong alignment on FAnimNode_BlendSpacePlayer"); \ +static_assert(sizeof(FAnimNode_BlendSpacePlayer) == 0x000070, "Wrong size on FAnimNode_BlendSpacePlayer"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer, BlendSpace) == 0x000068, "Member 'FAnimNode_BlendSpacePlayer::BlendSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_AimOffsetLookAt \ +static_assert(alignof(FAnimNode_AimOffsetLookAt) == 0x000010, "Wrong alignment on FAnimNode_AimOffsetLookAt"); \ +static_assert(sizeof(FAnimNode_AimOffsetLookAt) == 0x0001D0, "Wrong size on FAnimNode_AimOffsetLookAt"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, BasePose) == 0x000130, "Member 'FAnimNode_AimOffsetLookAt::BasePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, LODThreshold) == 0x000140, "Member 'FAnimNode_AimOffsetLookAt::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, SourceSocketName) == 0x000144, "Member 'FAnimNode_AimOffsetLookAt::SourceSocketName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, PivotSocketName) == 0x00014C, "Member 'FAnimNode_AimOffsetLookAt::PivotSocketName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, LookAtLocation) == 0x000158, "Member 'FAnimNode_AimOffsetLookAt::LookAtLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, SocketAxis) == 0x000170, "Member 'FAnimNode_AimOffsetLookAt::SocketAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_AimOffsetLookAt, alpha) == 0x000188, "Member 'FAnimNode_AimOffsetLookAt::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ApplyAdditive \ +static_assert(alignof(FAnimNode_ApplyAdditive) == 0x000008, "Wrong alignment on FAnimNode_ApplyAdditive"); \ +static_assert(sizeof(FAnimNode_ApplyAdditive) == 0x0000C8, "Wrong size on FAnimNode_ApplyAdditive"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, base) == 0x000010, "Member 'FAnimNode_ApplyAdditive::base' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, Additive) == 0x000020, "Member 'FAnimNode_ApplyAdditive::Additive' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, alpha) == 0x000030, "Member 'FAnimNode_ApplyAdditive::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, AlphaScaleBias) == 0x000034, "Member 'FAnimNode_ApplyAdditive::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, LODThreshold) == 0x00003C, "Member 'FAnimNode_ApplyAdditive::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, AlphaBoolBlend) == 0x000040, "Member 'FAnimNode_ApplyAdditive::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, AlphaCurveName) == 0x000088, "Member 'FAnimNode_ApplyAdditive::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, AlphaScaleBiasClamp) == 0x000090, "Member 'FAnimNode_ApplyAdditive::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, AlphaInputType) == 0x0000C4, "Member 'FAnimNode_ApplyAdditive::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ApplyAdditive, bAlphaBoolEnabled) == 0x0000C5, "Member 'FAnimNode_ApplyAdditive::bAlphaBoolEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendBoneByChannelEntry \ +static_assert(alignof(FBlendBoneByChannelEntry) == 0x000004, "Wrong alignment on FBlendBoneByChannelEntry"); \ +static_assert(sizeof(FBlendBoneByChannelEntry) == 0x000024, "Wrong size on FBlendBoneByChannelEntry"); \ +static_assert(offsetof(FBlendBoneByChannelEntry, SourceBone) == 0x000000, "Member 'FBlendBoneByChannelEntry::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FBlendBoneByChannelEntry, TargetBone) == 0x000010, "Member 'FBlendBoneByChannelEntry::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FBlendBoneByChannelEntry, bBlendTranslation) == 0x000020, "Member 'FBlendBoneByChannelEntry::bBlendTranslation' has a wrong offset!"); \ +static_assert(offsetof(FBlendBoneByChannelEntry, bBlendRotation) == 0x000021, "Member 'FBlendBoneByChannelEntry::bBlendRotation' has a wrong offset!"); \ +static_assert(offsetof(FBlendBoneByChannelEntry, bBlendScale) == 0x000022, "Member 'FBlendBoneByChannelEntry::bBlendScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendBoneByChannel \ +static_assert(alignof(FAnimNode_BlendBoneByChannel) == 0x000008, "Wrong alignment on FAnimNode_BlendBoneByChannel"); \ +static_assert(sizeof(FAnimNode_BlendBoneByChannel) == 0x000068, "Wrong size on FAnimNode_BlendBoneByChannel"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, A) == 0x000010, "Member 'FAnimNode_BlendBoneByChannel::A' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, B) == 0x000020, "Member 'FAnimNode_BlendBoneByChannel::B' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, BoneDefinitions) == 0x000030, "Member 'FAnimNode_BlendBoneByChannel::BoneDefinitions' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, alpha) == 0x000050, "Member 'FAnimNode_BlendBoneByChannel::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, AlphaScaleBias) == 0x000058, "Member 'FAnimNode_BlendBoneByChannel::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendBoneByChannel, TransformsSpace) == 0x000060, "Member 'FAnimNode_BlendBoneByChannel::TransformsSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendListBase \ +static_assert(alignof(FAnimNode_BlendListBase) == 0x000008, "Wrong alignment on FAnimNode_BlendListBase"); \ +static_assert(sizeof(FAnimNode_BlendListBase) == 0x000048, "Wrong size on FAnimNode_BlendListBase"); \ +static_assert(offsetof(FAnimNode_BlendListBase, BlendPose) == 0x000010, "Member 'FAnimNode_BlendListBase::BlendPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendListByBool \ +static_assert(alignof(FAnimNode_BlendListByBool) == 0x000008, "Wrong alignment on FAnimNode_BlendListByBool"); \ +static_assert(sizeof(FAnimNode_BlendListByBool) == 0x000048, "Wrong size on FAnimNode_BlendListByBool"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendListByEnum \ +static_assert(alignof(FAnimNode_BlendListByEnum) == 0x000008, "Wrong alignment on FAnimNode_BlendListByEnum"); \ +static_assert(sizeof(FAnimNode_BlendListByEnum) == 0x000048, "Wrong size on FAnimNode_BlendListByEnum"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendListByInt \ +static_assert(alignof(FAnimNode_BlendListByInt) == 0x000008, "Wrong alignment on FAnimNode_BlendListByInt"); \ +static_assert(sizeof(FAnimNode_BlendListByInt) == 0x000048, "Wrong size on FAnimNode_BlendListByInt"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpaceEvaluator \ +static_assert(alignof(FAnimNode_BlendSpaceEvaluator) == 0x000008, "Wrong alignment on FAnimNode_BlendSpaceEvaluator"); \ +static_assert(sizeof(FAnimNode_BlendSpaceEvaluator) == 0x000078, "Wrong size on FAnimNode_BlendSpaceEvaluator"); \ +static_assert(offsetof(FAnimNode_BlendSpaceEvaluator, NormalizedTime) == 0x000070, "Member 'FAnimNode_BlendSpaceEvaluator::NormalizedTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpaceEvaluator, bTeleportToNormalizedTime) == 0x000074, "Member 'FAnimNode_BlendSpaceEvaluator::bTeleportToNormalizedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BlendSpacePlayer_Standalone \ +static_assert(alignof(FAnimNode_BlendSpacePlayer_Standalone) == 0x000008, "Wrong alignment on FAnimNode_BlendSpacePlayer_Standalone"); \ +static_assert(sizeof(FAnimNode_BlendSpacePlayer_Standalone) == 0x000090, "Wrong size on FAnimNode_BlendSpacePlayer_Standalone"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, GroupName) == 0x000068, "Member 'FAnimNode_BlendSpacePlayer_Standalone::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, GroupRole) == 0x000070, "Member 'FAnimNode_BlendSpacePlayer_Standalone::GroupRole' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, Method) == 0x000071, "Member 'FAnimNode_BlendSpacePlayer_Standalone::Method' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, bIgnoreForRelevancyTest) == 0x000072, "Member 'FAnimNode_BlendSpacePlayer_Standalone::bIgnoreForRelevancyTest' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, X) == 0x000074, "Member 'FAnimNode_BlendSpacePlayer_Standalone::X' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, Y) == 0x000078, "Member 'FAnimNode_BlendSpacePlayer_Standalone::Y' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, PlayRate) == 0x00007C, "Member 'FAnimNode_BlendSpacePlayer_Standalone::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, bLoop) == 0x000080, "Member 'FAnimNode_BlendSpacePlayer_Standalone::bLoop' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, bResetPlayTimeWhenBlendSpaceChanges) == 0x000081, "Member 'FAnimNode_BlendSpacePlayer_Standalone::bResetPlayTimeWhenBlendSpaceChanges' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, StartPosition) == 0x000084, "Member 'FAnimNode_BlendSpacePlayer_Standalone::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BlendSpacePlayer_Standalone, BlendSpace) == 0x000088, "Member 'FAnimNode_BlendSpacePlayer_Standalone::BlendSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CallFunction \ +static_assert(alignof(FAnimNode_CallFunction) == 0x000008, "Wrong alignment on FAnimNode_CallFunction"); \ +static_assert(sizeof(FAnimNode_CallFunction) == 0x000038, "Wrong size on FAnimNode_CallFunction"); \ +static_assert(offsetof(FAnimNode_CallFunction, Source) == 0x000010, "Member 'FAnimNode_CallFunction::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CallFunction, CallSite) == 0x000034, "Member 'FAnimNode_CallFunction::CallSite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CopyPoseFromMesh \ +static_assert(alignof(FAnimNode_CopyPoseFromMesh) == 0x000008, "Wrong alignment on FAnimNode_CopyPoseFromMesh"); \ +static_assert(sizeof(FAnimNode_CopyPoseFromMesh) == 0x000158, "Wrong size on FAnimNode_CopyPoseFromMesh"); \ +static_assert(offsetof(FAnimNode_CopyPoseFromMesh, SourceMeshComponent) == 0x000010, "Member 'FAnimNode_CopyPoseFromMesh::SourceMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyPoseFromMesh, bCopyCustomAttributes) == 0x000019, "Member 'FAnimNode_CopyPoseFromMesh::bCopyCustomAttributes' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyPoseFromMesh, RootBoneToCopy) == 0x00001C, "Member 'FAnimNode_CopyPoseFromMesh::RootBoneToCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CurveSource \ +static_assert(alignof(FAnimNode_CurveSource) == 0x000008, "Wrong alignment on FAnimNode_CurveSource"); \ +static_assert(sizeof(FAnimNode_CurveSource) == 0x000040, "Wrong size on FAnimNode_CurveSource"); \ +static_assert(offsetof(FAnimNode_CurveSource, SourcePose) == 0x000010, "Member 'FAnimNode_CurveSource::SourcePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CurveSource, SourceBinding) == 0x000020, "Member 'FAnimNode_CurveSource::SourceBinding' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CurveSource, alpha) == 0x000028, "Member 'FAnimNode_CurveSource::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CurveSource, CurveSource) == 0x000030, "Member 'FAnimNode_CurveSource::CurveSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LayeredBoneBlend \ +static_assert(alignof(FAnimNode_LayeredBoneBlend) == 0x000008, "Wrong alignment on FAnimNode_LayeredBoneBlend"); \ +static_assert(sizeof(FAnimNode_LayeredBoneBlend) == 0x0000F0, "Wrong size on FAnimNode_LayeredBoneBlend"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, BasePose) == 0x000010, "Member 'FAnimNode_LayeredBoneBlend::BasePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, BlendPoses) == 0x000020, "Member 'FAnimNode_LayeredBoneBlend::BlendPoses' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, BlendMode) == 0x000030, "Member 'FAnimNode_LayeredBoneBlend::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, BlendMasks) == 0x000038, "Member 'FAnimNode_LayeredBoneBlend::BlendMasks' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, LayerSetup) == 0x000048, "Member 'FAnimNode_LayeredBoneBlend::LayerSetup' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, BlendWeights) == 0x000058, "Member 'FAnimNode_LayeredBoneBlend::BlendWeights' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, bMeshSpaceRotationBlend) == 0x000068, "Member 'FAnimNode_LayeredBoneBlend::bMeshSpaceRotationBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, bMeshSpaceScaleBlend) == 0x000069, "Member 'FAnimNode_LayeredBoneBlend::bMeshSpaceScaleBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, CurveBlendOption) == 0x00006A, "Member 'FAnimNode_LayeredBoneBlend::CurveBlendOption' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, bBlendRootMotionBasedOnRootBone) == 0x00006B, "Member 'FAnimNode_LayeredBoneBlend::bBlendRootMotionBasedOnRootBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, LODThreshold) == 0x000070, "Member 'FAnimNode_LayeredBoneBlend::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, PerBoneBlendWeights) == 0x000078, "Member 'FAnimNode_LayeredBoneBlend::PerBoneBlendWeights' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, SkeletonGuid) == 0x000088, "Member 'FAnimNode_LayeredBoneBlend::SkeletonGuid' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LayeredBoneBlend, VirtualBoneGuid) == 0x000098, "Member 'FAnimNode_LayeredBoneBlend::VirtualBoneGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_MakeDynamicAdditive \ +static_assert(alignof(FAnimNode_MakeDynamicAdditive) == 0x000008, "Wrong alignment on FAnimNode_MakeDynamicAdditive"); \ +static_assert(sizeof(FAnimNode_MakeDynamicAdditive) == 0x000038, "Wrong size on FAnimNode_MakeDynamicAdditive"); \ +static_assert(offsetof(FAnimNode_MakeDynamicAdditive, base) == 0x000010, "Member 'FAnimNode_MakeDynamicAdditive::base' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MakeDynamicAdditive, Additive) == 0x000020, "Member 'FAnimNode_MakeDynamicAdditive::Additive' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MakeDynamicAdditive, bMeshSpaceAdditive) == 0x000030, "Member 'FAnimNode_MakeDynamicAdditive::bMeshSpaceAdditive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_MirrorBase \ +static_assert(alignof(FAnimNode_MirrorBase) == 0x000008, "Wrong alignment on FAnimNode_MirrorBase"); \ +static_assert(sizeof(FAnimNode_MirrorBase) == 0x000048, "Wrong size on FAnimNode_MirrorBase"); \ +static_assert(offsetof(FAnimNode_MirrorBase, Source) == 0x000010, "Member 'FAnimNode_MirrorBase::Source' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Mirror \ +static_assert(alignof(FAnimNode_Mirror) == 0x000008, "Wrong alignment on FAnimNode_Mirror"); \ +static_assert(sizeof(FAnimNode_Mirror) == 0x000048, "Wrong size on FAnimNode_Mirror"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Mirror_Standalone \ +static_assert(alignof(FAnimNode_Mirror_Standalone) == 0x000008, "Wrong alignment on FAnimNode_Mirror_Standalone"); \ +static_assert(sizeof(FAnimNode_Mirror_Standalone) == 0x000060, "Wrong size on FAnimNode_Mirror_Standalone"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, bMirror) == 0x000048, "Member 'FAnimNode_Mirror_Standalone::bMirror' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, MirrorDataTable) == 0x000050, "Member 'FAnimNode_Mirror_Standalone::MirrorDataTable' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, BlendTime) == 0x000058, "Member 'FAnimNode_Mirror_Standalone::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, bResetChild) == 0x00005C, "Member 'FAnimNode_Mirror_Standalone::bResetChild' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, bBoneMirroring) == 0x00005D, "Member 'FAnimNode_Mirror_Standalone::bBoneMirroring' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, bCurveMirroring) == 0x00005E, "Member 'FAnimNode_Mirror_Standalone::bCurveMirroring' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Mirror_Standalone, bAttributeMirroring) == 0x00005F, "Member 'FAnimNode_Mirror_Standalone::bAttributeMirroring' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ModifyCurve \ +static_assert(alignof(FAnimNode_ModifyCurve) == 0x000008, "Wrong alignment on FAnimNode_ModifyCurve"); \ +static_assert(sizeof(FAnimNode_ModifyCurve) == 0x000120, "Wrong size on FAnimNode_ModifyCurve"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, SourcePose) == 0x000010, "Member 'FAnimNode_ModifyCurve::SourcePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, CurveMap) == 0x000020, "Member 'FAnimNode_ModifyCurve::CurveMap' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, CurveValues) == 0x000070, "Member 'FAnimNode_ModifyCurve::CurveValues' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, CurveNames) == 0x000080, "Member 'FAnimNode_ModifyCurve::CurveNames' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, alpha) == 0x000118, "Member 'FAnimNode_ModifyCurve::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ModifyCurve, ApplyMode) == 0x00011C, "Member 'FAnimNode_ModifyCurve::ApplyMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_MultiWayBlend \ +static_assert(alignof(FAnimNode_MultiWayBlend) == 0x000008, "Wrong alignment on FAnimNode_MultiWayBlend"); \ +static_assert(sizeof(FAnimNode_MultiWayBlend) == 0x000050, "Wrong size on FAnimNode_MultiWayBlend"); \ +static_assert(offsetof(FAnimNode_MultiWayBlend, Poses) == 0x000010, "Member 'FAnimNode_MultiWayBlend::Poses' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MultiWayBlend, DesiredAlphas) == 0x000020, "Member 'FAnimNode_MultiWayBlend::DesiredAlphas' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MultiWayBlend, AlphaScaleBias) == 0x000040, "Member 'FAnimNode_MultiWayBlend::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MultiWayBlend, bAdditiveNode) == 0x000048, "Member 'FAnimNode_MultiWayBlend::bAdditiveNode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_MultiWayBlend, bNormalizeAlpha) == 0x000049, "Member 'FAnimNode_MultiWayBlend::bNormalizeAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_PoseHandler \ +static_assert(alignof(FAnimNode_PoseHandler) == 0x000008, "Wrong alignment on FAnimNode_PoseHandler"); \ +static_assert(sizeof(FAnimNode_PoseHandler) == 0x000098, "Wrong size on FAnimNode_PoseHandler"); \ +static_assert(offsetof(FAnimNode_PoseHandler, PoseAsset) == 0x000038, "Member 'FAnimNode_PoseHandler::PoseAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_PoseBlendNode \ +static_assert(alignof(FAnimNode_PoseBlendNode) == 0x000008, "Wrong alignment on FAnimNode_PoseBlendNode"); \ +static_assert(sizeof(FAnimNode_PoseBlendNode) == 0x0000D0, "Wrong size on FAnimNode_PoseBlendNode"); \ +static_assert(offsetof(FAnimNode_PoseBlendNode, SourcePose) == 0x000098, "Member 'FAnimNode_PoseBlendNode::SourcePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseBlendNode, BlendOption) == 0x0000A8, "Member 'FAnimNode_PoseBlendNode::BlendOption' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseBlendNode, CustomCurve) == 0x0000B0, "Member 'FAnimNode_PoseBlendNode::CustomCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_PoseByName \ +static_assert(alignof(FAnimNode_PoseByName) == 0x000008, "Wrong alignment on FAnimNode_PoseByName"); \ +static_assert(sizeof(FAnimNode_PoseByName) == 0x0000B0, "Wrong size on FAnimNode_PoseByName"); \ +static_assert(offsetof(FAnimNode_PoseByName, PoseName) == 0x000098, "Member 'FAnimNode_PoseByName::PoseName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseByName, PoseWeight) == 0x0000A0, "Member 'FAnimNode_PoseByName::PoseWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseDriverTransform \ +static_assert(alignof(FPoseDriverTransform) == 0x000008, "Wrong alignment on FPoseDriverTransform"); \ +static_assert(sizeof(FPoseDriverTransform) == 0x000030, "Wrong size on FPoseDriverTransform"); \ +static_assert(offsetof(FPoseDriverTransform, TargetTranslation) == 0x000000, "Member 'FPoseDriverTransform::TargetTranslation' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTransform, TargetRotation) == 0x000018, "Member 'FPoseDriverTransform::TargetRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPoseDriverTarget \ +static_assert(alignof(FPoseDriverTarget) == 0x000008, "Wrong alignment on FPoseDriverTarget"); \ +static_assert(sizeof(FPoseDriverTarget) == 0x0000C8, "Wrong size on FPoseDriverTarget"); \ +static_assert(offsetof(FPoseDriverTarget, BoneTransforms) == 0x000000, "Member 'FPoseDriverTarget::BoneTransforms' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, TargetRotation) == 0x000010, "Member 'FPoseDriverTarget::TargetRotation' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, TargetScale) == 0x000028, "Member 'FPoseDriverTarget::TargetScale' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, DistanceMethod) == 0x00002C, "Member 'FPoseDriverTarget::DistanceMethod' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, FunctionType) == 0x00002D, "Member 'FPoseDriverTarget::FunctionType' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, bApplyCustomCurve) == 0x00002E, "Member 'FPoseDriverTarget::bApplyCustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, CustomCurve) == 0x000030, "Member 'FPoseDriverTarget::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, DrivenName) == 0x0000B0, "Member 'FPoseDriverTarget::DrivenName' has a wrong offset!"); \ +static_assert(offsetof(FPoseDriverTarget, bIsHidden) == 0x0000C0, "Member 'FPoseDriverTarget::bIsHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRBFParams \ +static_assert(alignof(FRBFParams) == 0x000008, "Wrong alignment on FRBFParams"); \ +static_assert(sizeof(FRBFParams) == 0x000038, "Wrong size on FRBFParams"); \ +static_assert(offsetof(FRBFParams, TargetDimensions) == 0x000000, "Member 'FRBFParams::TargetDimensions' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, SolverType) == 0x000004, "Member 'FRBFParams::SolverType' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, Radius) == 0x000008, "Member 'FRBFParams::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, bAutomaticRadius) == 0x00000C, "Member 'FRBFParams::bAutomaticRadius' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, Function) == 0x00000D, "Member 'FRBFParams::Function' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, DistanceMethod) == 0x00000E, "Member 'FRBFParams::DistanceMethod' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, TwistAxis) == 0x00000F, "Member 'FRBFParams::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, WeightThreshold) == 0x000010, "Member 'FRBFParams::WeightThreshold' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, NormalizeMethod) == 0x000014, "Member 'FRBFParams::NormalizeMethod' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, MedianReference) == 0x000018, "Member 'FRBFParams::MedianReference' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, MedianMin) == 0x000030, "Member 'FRBFParams::MedianMin' has a wrong offset!"); \ +static_assert(offsetof(FRBFParams, MedianMax) == 0x000034, "Member 'FRBFParams::MedianMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_PoseDriver \ +static_assert(alignof(FAnimNode_PoseDriver) == 0x000008, "Wrong alignment on FAnimNode_PoseDriver"); \ +static_assert(sizeof(FAnimNode_PoseDriver) == 0x0001A0, "Wrong size on FAnimNode_PoseDriver"); \ +static_assert(offsetof(FAnimNode_PoseDriver, SourcePose) == 0x000098, "Member 'FAnimNode_PoseDriver::SourcePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, SourceBones) == 0x0000A8, "Member 'FAnimNode_PoseDriver::SourceBones' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, EvalSpaceBone) == 0x0000B8, "Member 'FAnimNode_PoseDriver::EvalSpaceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, bEvalFromRefPose) == 0x0000C8, "Member 'FAnimNode_PoseDriver::bEvalFromRefPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, OnlyDriveBones) == 0x0000D0, "Member 'FAnimNode_PoseDriver::OnlyDriveBones' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, PoseTargets) == 0x0000E0, "Member 'FAnimNode_PoseDriver::PoseTargets' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, RBFParams) == 0x0000F0, "Member 'FAnimNode_PoseDriver::RBFParams' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, DriveSource) == 0x000128, "Member 'FAnimNode_PoseDriver::DriveSource' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, DriveOutput) == 0x000129, "Member 'FAnimNode_PoseDriver::DriveOutput' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseDriver, LODThreshold) == 0x00016C, "Member 'FAnimNode_PoseDriver::LODThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_PoseSnapshot \ +static_assert(alignof(FAnimNode_PoseSnapshot) == 0x000008, "Wrong alignment on FAnimNode_PoseSnapshot"); \ +static_assert(sizeof(FAnimNode_PoseSnapshot) == 0x000090, "Wrong size on FAnimNode_PoseSnapshot"); \ +static_assert(offsetof(FAnimNode_PoseSnapshot, SnapshotName) == 0x000010, "Member 'FAnimNode_PoseSnapshot::SnapshotName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseSnapshot, Snapshot) == 0x000018, "Member 'FAnimNode_PoseSnapshot::Snapshot' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_PoseSnapshot, Mode) == 0x000050, "Member 'FAnimNode_PoseSnapshot::Mode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomPlayerSequenceEntry \ +static_assert(alignof(FRandomPlayerSequenceEntry) == 0x000008, "Wrong alignment on FRandomPlayerSequenceEntry"); \ +static_assert(sizeof(FRandomPlayerSequenceEntry) == 0x000050, "Wrong size on FRandomPlayerSequenceEntry"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, Sequence) == 0x000000, "Member 'FRandomPlayerSequenceEntry::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, ChanceToPlay) == 0x000008, "Member 'FRandomPlayerSequenceEntry::ChanceToPlay' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, MinLoopCount) == 0x00000C, "Member 'FRandomPlayerSequenceEntry::MinLoopCount' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, MaxLoopCount) == 0x000010, "Member 'FRandomPlayerSequenceEntry::MaxLoopCount' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, MinPlayRate) == 0x000014, "Member 'FRandomPlayerSequenceEntry::MinPlayRate' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, MaxPlayRate) == 0x000018, "Member 'FRandomPlayerSequenceEntry::MaxPlayRate' has a wrong offset!"); \ +static_assert(offsetof(FRandomPlayerSequenceEntry, BlendIn) == 0x000020, "Member 'FRandomPlayerSequenceEntry::BlendIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RandomPlayer \ +static_assert(alignof(FAnimNode_RandomPlayer) == 0x000008, "Wrong alignment on FAnimNode_RandomPlayer"); \ +static_assert(sizeof(FAnimNode_RandomPlayer) == 0x000078, "Wrong size on FAnimNode_RandomPlayer"); \ +static_assert(offsetof(FAnimNode_RandomPlayer, Entries) == 0x000010, "Member 'FAnimNode_RandomPlayer::Entries' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RandomPlayer, BlendWeight) == 0x000070, "Member 'FAnimNode_RandomPlayer::BlendWeight' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RandomPlayer, bShuffleMode) == 0x000074, "Member 'FAnimNode_RandomPlayer::bShuffleMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RotateRootBone \ +static_assert(alignof(FAnimNode_RotateRootBone) == 0x000008, "Wrong alignment on FAnimNode_RotateRootBone"); \ +static_assert(sizeof(FAnimNode_RotateRootBone) == 0x0000B0, "Wrong size on FAnimNode_RotateRootBone"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, BasePose) == 0x000010, "Member 'FAnimNode_RotateRootBone::BasePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, Pitch) == 0x000020, "Member 'FAnimNode_RotateRootBone::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, Yaw) == 0x000024, "Member 'FAnimNode_RotateRootBone::Yaw' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, PitchScaleBiasClamp) == 0x000028, "Member 'FAnimNode_RotateRootBone::PitchScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, YawScaleBiasClamp) == 0x000058, "Member 'FAnimNode_RotateRootBone::YawScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, MeshToComponent) == 0x000088, "Member 'FAnimNode_RotateRootBone::MeshToComponent' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotateRootBone, bRotateRootMotionAttribute) == 0x0000A0, "Member 'FAnimNode_RotateRootBone::bRotateRootMotionAttribute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RotationOffsetBlendSpace \ +static_assert(alignof(FAnimNode_RotationOffsetBlendSpace) == 0x000008, "Wrong alignment on FAnimNode_RotationOffsetBlendSpace"); \ +static_assert(sizeof(FAnimNode_RotationOffsetBlendSpace) == 0x000118, "Wrong size on FAnimNode_RotationOffsetBlendSpace"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, BasePose) == 0x000070, "Member 'FAnimNode_RotationOffsetBlendSpace::BasePose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, LODThreshold) == 0x000080, "Member 'FAnimNode_RotationOffsetBlendSpace::LODThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, alpha) == 0x000084, "Member 'FAnimNode_RotationOffsetBlendSpace::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, AlphaScaleBias) == 0x000088, "Member 'FAnimNode_RotationOffsetBlendSpace::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, AlphaBoolBlend) == 0x000090, "Member 'FAnimNode_RotationOffsetBlendSpace::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, AlphaCurveName) == 0x0000D8, "Member 'FAnimNode_RotationOffsetBlendSpace::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, AlphaScaleBiasClamp) == 0x0000E0, "Member 'FAnimNode_RotationOffsetBlendSpace::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, AlphaInputType) == 0x000114, "Member 'FAnimNode_RotationOffsetBlendSpace::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RotationOffsetBlendSpace, bAlphaBoolEnabled) == 0x000115, "Member 'FAnimNode_RotationOffsetBlendSpace::bAlphaBoolEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SequenceEvaluator \ +static_assert(alignof(FAnimNode_SequenceEvaluator) == 0x000008, "Wrong alignment on FAnimNode_SequenceEvaluator"); \ +static_assert(sizeof(FAnimNode_SequenceEvaluator) == 0x000040, "Wrong size on FAnimNode_SequenceEvaluator"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Slot \ +static_assert(alignof(FAnimNode_Slot) == 0x000008, "Wrong alignment on FAnimNode_Slot"); \ +static_assert(sizeof(FAnimNode_Slot) == 0x000048, "Wrong size on FAnimNode_Slot"); \ +static_assert(offsetof(FAnimNode_Slot, Source) == 0x000010, "Member 'FAnimNode_Slot::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Slot, SlotName) == 0x000020, "Member 'FAnimNode_Slot::SlotName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Slot, bAlwaysUpdateSourcePose) == 0x000028, "Member 'FAnimNode_Slot::bAlwaysUpdateSourcePose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimSequencerInstanceProxy \ +static_assert(alignof(FAnimSequencerInstanceProxy) == 0x000010, "Wrong alignment on FAnimSequencerInstanceProxy"); \ +static_assert(sizeof(FAnimSequencerInstanceProxy) == 0x000B60, "Wrong size on FAnimSequencerInstanceProxy"); \ + +#define DUMPER7_ASSERTS_FBlendListBaseReference \ +static_assert(alignof(FBlendListBaseReference) == 0x000008, "Wrong alignment on FBlendListBaseReference"); \ +static_assert(sizeof(FBlendListBaseReference) == 0x000010, "Wrong size on FBlendListBaseReference"); \ + +#define DUMPER7_ASSERTS_FBlendSpacePlayerReference \ +static_assert(alignof(FBlendSpacePlayerReference) == 0x000008, "Wrong alignment on FBlendSpacePlayerReference"); \ +static_assert(sizeof(FBlendSpacePlayerReference) == 0x000010, "Wrong size on FBlendSpacePlayerReference"); \ + +#define DUMPER7_ASSERTS_FAnimNode_BoneDrivenController \ +static_assert(alignof(FAnimNode_BoneDrivenController) == 0x000008, "Wrong alignment on FAnimNode_BoneDrivenController"); \ +static_assert(sizeof(FAnimNode_BoneDrivenController) == 0x000128, "Wrong size on FAnimNode_BoneDrivenController"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, SourceBone) == 0x0000C8, "Member 'FAnimNode_BoneDrivenController::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, DrivingCurve) == 0x0000D8, "Member 'FAnimNode_BoneDrivenController::DrivingCurve' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, Multiplier) == 0x0000E0, "Member 'FAnimNode_BoneDrivenController::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, RangeMin) == 0x0000E8, "Member 'FAnimNode_BoneDrivenController::RangeMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, RangeMax) == 0x0000F0, "Member 'FAnimNode_BoneDrivenController::RangeMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, RemappedMin) == 0x0000F8, "Member 'FAnimNode_BoneDrivenController::RemappedMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, RemappedMax) == 0x000100, "Member 'FAnimNode_BoneDrivenController::RemappedMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, ParameterName) == 0x000108, "Member 'FAnimNode_BoneDrivenController::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, TargetBone) == 0x000110, "Member 'FAnimNode_BoneDrivenController::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, DestinationMode) == 0x000120, "Member 'FAnimNode_BoneDrivenController::DestinationMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, ModificationMode) == 0x000121, "Member 'FAnimNode_BoneDrivenController::ModificationMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_BoneDrivenController, SourceComponent) == 0x000122, "Member 'FAnimNode_BoneDrivenController::SourceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CCDIK \ +static_assert(alignof(FAnimNode_CCDIK) == 0x000010, "Wrong alignment on FAnimNode_CCDIK"); \ +static_assert(sizeof(FAnimNode_CCDIK) == 0x0001C0, "Wrong size on FAnimNode_CCDIK"); \ +static_assert(offsetof(FAnimNode_CCDIK, EffectorLocation) == 0x0000C8, "Member 'FAnimNode_CCDIK::EffectorLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, EffectorLocationSpace) == 0x0000E0, "Member 'FAnimNode_CCDIK::EffectorLocationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, EffectorTarget) == 0x0000F0, "Member 'FAnimNode_CCDIK::EffectorTarget' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, TipBone) == 0x000180, "Member 'FAnimNode_CCDIK::TipBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, RootBone) == 0x000190, "Member 'FAnimNode_CCDIK::RootBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, Precision) == 0x0001A0, "Member 'FAnimNode_CCDIK::Precision' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, MaxIterations) == 0x0001A4, "Member 'FAnimNode_CCDIK::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, bStartFromTail) == 0x0001A8, "Member 'FAnimNode_CCDIK::bStartFromTail' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, bEnableRotationLimit) == 0x0001A9, "Member 'FAnimNode_CCDIK::bEnableRotationLimit' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CCDIK, RotationLimitPerJoints) == 0x0001B0, "Member 'FAnimNode_CCDIK::RotationLimitPerJoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraint \ +static_assert(alignof(FConstraint) == 0x000004, "Wrong alignment on FConstraint"); \ +static_assert(sizeof(FConstraint) == 0x00001C, "Wrong size on FConstraint"); \ +static_assert(offsetof(FConstraint, TargetBone) == 0x000000, "Member 'FConstraint::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FConstraint, OffsetOption) == 0x000010, "Member 'FConstraint::OffsetOption' has a wrong offset!"); \ +static_assert(offsetof(FConstraint, TransformType) == 0x000011, "Member 'FConstraint::TransformType' has a wrong offset!"); \ +static_assert(offsetof(FConstraint, PerAxis) == 0x000012, "Member 'FConstraint::PerAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Constraint \ +static_assert(alignof(FAnimNode_Constraint) == 0x000008, "Wrong alignment on FAnimNode_Constraint"); \ +static_assert(sizeof(FAnimNode_Constraint) == 0x000108, "Wrong size on FAnimNode_Constraint"); \ +static_assert(offsetof(FAnimNode_Constraint, BoneToModify) == 0x0000C8, "Member 'FAnimNode_Constraint::BoneToModify' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Constraint, ConstraintSetup) == 0x0000D8, "Member 'FAnimNode_Constraint::ConstraintSetup' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Constraint, ConstraintWeights) == 0x0000E8, "Member 'FAnimNode_Constraint::ConstraintWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CopyBone \ +static_assert(alignof(FAnimNode_CopyBone) == 0x000008, "Wrong alignment on FAnimNode_CopyBone"); \ +static_assert(sizeof(FAnimNode_CopyBone) == 0x0000F0, "Wrong size on FAnimNode_CopyBone"); \ +static_assert(offsetof(FAnimNode_CopyBone, SourceBone) == 0x0000C8, "Member 'FAnimNode_CopyBone::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBone, TargetBone) == 0x0000D8, "Member 'FAnimNode_CopyBone::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBone, bCopyTranslation) == 0x0000E8, "Member 'FAnimNode_CopyBone::bCopyTranslation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBone, bCopyRotation) == 0x0000E9, "Member 'FAnimNode_CopyBone::bCopyRotation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBone, bCopyScale) == 0x0000EA, "Member 'FAnimNode_CopyBone::bCopyScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBone, ControlSpace) == 0x0000EB, "Member 'FAnimNode_CopyBone::ControlSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_CopyBoneDelta \ +static_assert(alignof(FAnimNode_CopyBoneDelta) == 0x000008, "Wrong alignment on FAnimNode_CopyBoneDelta"); \ +static_assert(sizeof(FAnimNode_CopyBoneDelta) == 0x0000F8, "Wrong size on FAnimNode_CopyBoneDelta"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, SourceBone) == 0x0000C8, "Member 'FAnimNode_CopyBoneDelta::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, TargetBone) == 0x0000D8, "Member 'FAnimNode_CopyBoneDelta::TargetBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, bCopyTranslation) == 0x0000E8, "Member 'FAnimNode_CopyBoneDelta::bCopyTranslation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, bCopyRotation) == 0x0000E9, "Member 'FAnimNode_CopyBoneDelta::bCopyRotation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, bCopyScale) == 0x0000EA, "Member 'FAnimNode_CopyBoneDelta::bCopyScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, CopyMode) == 0x0000EB, "Member 'FAnimNode_CopyBoneDelta::CopyMode' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, TranslationMultiplier) == 0x0000EC, "Member 'FAnimNode_CopyBoneDelta::TranslationMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, RotationMultiplier) == 0x0000F0, "Member 'FAnimNode_CopyBoneDelta::RotationMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_CopyBoneDelta, ScaleMultiplier) == 0x0000F4, "Member 'FAnimNode_CopyBoneDelta::ScaleMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Fabrik \ +static_assert(alignof(FAnimNode_Fabrik) == 0x000010, "Wrong alignment on FAnimNode_Fabrik"); \ +static_assert(sizeof(FAnimNode_Fabrik) == 0x0001F0, "Wrong size on FAnimNode_Fabrik"); \ +static_assert(offsetof(FAnimNode_Fabrik, EffectorTransform) == 0x0000D0, "Member 'FAnimNode_Fabrik::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, EffectorTarget) == 0x000130, "Member 'FAnimNode_Fabrik::EffectorTarget' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, TipBone) == 0x0001C0, "Member 'FAnimNode_Fabrik::TipBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, RootBone) == 0x0001D0, "Member 'FAnimNode_Fabrik::RootBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, Precision) == 0x0001E0, "Member 'FAnimNode_Fabrik::Precision' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, MaxIterations) == 0x0001E4, "Member 'FAnimNode_Fabrik::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, EffectorTransformSpace) == 0x0001E8, "Member 'FAnimNode_Fabrik::EffectorTransformSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Fabrik, EffectorRotationSource) == 0x0001E9, "Member 'FAnimNode_Fabrik::EffectorRotationSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_HandIKRetargeting \ +static_assert(alignof(FAnimNode_HandIKRetargeting) == 0x000008, "Wrong alignment on FAnimNode_HandIKRetargeting"); \ +static_assert(sizeof(FAnimNode_HandIKRetargeting) == 0x000120, "Wrong size on FAnimNode_HandIKRetargeting"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, RightHandFK) == 0x0000C8, "Member 'FAnimNode_HandIKRetargeting::RightHandFK' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, LeftHandFK) == 0x0000D8, "Member 'FAnimNode_HandIKRetargeting::LeftHandFK' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, RightHandIK) == 0x0000E8, "Member 'FAnimNode_HandIKRetargeting::RightHandIK' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, LeftHandIK) == 0x0000F8, "Member 'FAnimNode_HandIKRetargeting::LeftHandIK' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, IKBonesToMove) == 0x000108, "Member 'FAnimNode_HandIKRetargeting::IKBonesToMove' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_HandIKRetargeting, HandFKWeight) == 0x000118, "Member 'FAnimNode_HandIKRetargeting::HandFKWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIKChainLink \ +static_assert(alignof(FIKChainLink) == 0x000008, "Wrong alignment on FIKChainLink"); \ +static_assert(sizeof(FIKChainLink) == 0x000070, "Wrong size on FIKChainLink"); \ + +#define DUMPER7_ASSERTS_FIKChain \ +static_assert(alignof(FIKChain) == 0x000008, "Wrong alignment on FIKChain"); \ +static_assert(sizeof(FIKChain) == 0x000050, "Wrong size on FIKChain"); \ + +#define DUMPER7_ASSERTS_FAnimLegIKDefinition \ +static_assert(alignof(FAnimLegIKDefinition) == 0x000004, "Wrong alignment on FAnimLegIKDefinition"); \ +static_assert(sizeof(FAnimLegIKDefinition) == 0x000034, "Wrong size on FAnimLegIKDefinition"); \ +static_assert(offsetof(FAnimLegIKDefinition, IKFootBone) == 0x000000, "Member 'FAnimLegIKDefinition::IKFootBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, FKFootBone) == 0x000010, "Member 'FAnimLegIKDefinition::FKFootBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, NumBonesInLimb) == 0x000020, "Member 'FAnimLegIKDefinition::NumBonesInLimb' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, MinRotationAngle) == 0x000024, "Member 'FAnimLegIKDefinition::MinRotationAngle' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, FootBoneForwardAxis) == 0x000028, "Member 'FAnimLegIKDefinition::FootBoneForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, HingeRotationAxis) == 0x000029, "Member 'FAnimLegIKDefinition::HingeRotationAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, bEnableRotationLimit) == 0x00002A, "Member 'FAnimLegIKDefinition::bEnableRotationLimit' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, bEnableKneeTwistCorrection) == 0x00002B, "Member 'FAnimLegIKDefinition::bEnableKneeTwistCorrection' has a wrong offset!"); \ +static_assert(offsetof(FAnimLegIKDefinition, TwistOffsetCurveName) == 0x00002C, "Member 'FAnimLegIKDefinition::TwistOffsetCurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimLegIKData \ +static_assert(alignof(FAnimLegIKData) == 0x000010, "Wrong alignment on FAnimLegIKData"); \ +static_assert(sizeof(FAnimLegIKData) == 0x0000F0, "Wrong size on FAnimLegIKData"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LegIK \ +static_assert(alignof(FAnimNode_LegIK) == 0x000008, "Wrong alignment on FAnimNode_LegIK"); \ +static_assert(sizeof(FAnimNode_LegIK) == 0x0000F8, "Wrong size on FAnimNode_LegIK"); \ +static_assert(offsetof(FAnimNode_LegIK, ReachPrecision) == 0x0000C8, "Member 'FAnimNode_LegIK::ReachPrecision' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LegIK, MaxIterations) == 0x0000CC, "Member 'FAnimNode_LegIK::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LegIK, LegsDefinition) == 0x0000D0, "Member 'FAnimNode_LegIK::LegsDefinition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_LookAt \ +static_assert(alignof(FAnimNode_LookAt) == 0x000010, "Wrong alignment on FAnimNode_LookAt"); \ +static_assert(sizeof(FAnimNode_LookAt) == 0x000250, "Wrong size on FAnimNode_LookAt"); \ +static_assert(offsetof(FAnimNode_LookAt, BoneToModify) == 0x0000C8, "Member 'FAnimNode_LookAt::BoneToModify' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, LookAtTarget) == 0x0000E0, "Member 'FAnimNode_LookAt::LookAtTarget' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, LookAtLocation) == 0x000170, "Member 'FAnimNode_LookAt::LookAtLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, LookAt_Axis) == 0x000188, "Member 'FAnimNode_LookAt::LookAt_Axis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, bUseLookUpAxis) == 0x0001A8, "Member 'FAnimNode_LookAt::bUseLookUpAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, InterpolationType) == 0x0001A9, "Member 'FAnimNode_LookAt::InterpolationType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, LookUp_Axis) == 0x0001B0, "Member 'FAnimNode_LookAt::LookUp_Axis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, LookAtClamp) == 0x0001D0, "Member 'FAnimNode_LookAt::LookAtClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, InterpolationTime) == 0x0001D4, "Member 'FAnimNode_LookAt::InterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_LookAt, InterpolationTriggerThreashold) == 0x0001D8, "Member 'FAnimNode_LookAt::InterpolationTriggerThreashold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ObserveBone \ +static_assert(alignof(FAnimNode_ObserveBone) == 0x000008, "Wrong alignment on FAnimNode_ObserveBone"); \ +static_assert(sizeof(FAnimNode_ObserveBone) == 0x000128, "Wrong size on FAnimNode_ObserveBone"); \ +static_assert(offsetof(FAnimNode_ObserveBone, BoneToObserve) == 0x0000C8, "Member 'FAnimNode_ObserveBone::BoneToObserve' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ObserveBone, DisplaySpace) == 0x0000D8, "Member 'FAnimNode_ObserveBone::DisplaySpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ObserveBone, bRelativeToRefPose) == 0x0000D9, "Member 'FAnimNode_ObserveBone::bRelativeToRefPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ObserveBone, Translation) == 0x0000E0, "Member 'FAnimNode_ObserveBone::Translation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ObserveBone, Rotation) == 0x0000F8, "Member 'FAnimNode_ObserveBone::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ObserveBone, Scale) == 0x000110, "Member 'FAnimNode_ObserveBone::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ResetRoot \ +static_assert(alignof(FAnimNode_ResetRoot) == 0x000008, "Wrong alignment on FAnimNode_ResetRoot"); \ +static_assert(sizeof(FAnimNode_ResetRoot) == 0x0000D8, "Wrong size on FAnimNode_ResetRoot"); \ + +#define DUMPER7_ASSERTS_FSimSpaceSettings \ +static_assert(alignof(FSimSpaceSettings) == 0x000008, "Wrong alignment on FSimSpaceSettings"); \ +static_assert(sizeof(FSimSpaceSettings) == 0x000060, "Wrong size on FSimSpaceSettings"); \ +static_assert(offsetof(FSimSpaceSettings, WorldAlpha) == 0x000000, "Member 'FSimSpaceSettings::WorldAlpha' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, VelocityScaleZ) == 0x000004, "Member 'FSimSpaceSettings::VelocityScaleZ' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, MaxLinearVelocity) == 0x000008, "Member 'FSimSpaceSettings::MaxLinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, MaxAngularVelocity) == 0x00000C, "Member 'FSimSpaceSettings::MaxAngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, MaxLinearAcceleration) == 0x000010, "Member 'FSimSpaceSettings::MaxLinearAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, MaxAngularAcceleration) == 0x000014, "Member 'FSimSpaceSettings::MaxAngularAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, ExternalLinearDragV) == 0x000018, "Member 'FSimSpaceSettings::ExternalLinearDragV' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, ExternalLinearVelocity) == 0x000030, "Member 'FSimSpaceSettings::ExternalLinearVelocity' has a wrong offset!"); \ +static_assert(offsetof(FSimSpaceSettings, ExternalAngularVelocity) == 0x000048, "Member 'FSimSpaceSettings::ExternalAngularVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RigidBody \ +static_assert(alignof(FAnimNode_RigidBody) == 0x000010, "Wrong alignment on FAnimNode_RigidBody"); \ +static_assert(sizeof(FAnimNode_RigidBody) == 0x000950, "Wrong size on FAnimNode_RigidBody"); \ +static_assert(offsetof(FAnimNode_RigidBody, OverridePhysicsAsset) == 0x0000C8, "Member 'FAnimNode_RigidBody::OverridePhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, OverrideWorldGravity) == 0x0001F8, "Member 'FAnimNode_RigidBody::OverrideWorldGravity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, ExternalForce) == 0x000210, "Member 'FAnimNode_RigidBody::ExternalForce' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, ComponentLinearAccScale) == 0x000228, "Member 'FAnimNode_RigidBody::ComponentLinearAccScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, ComponentLinearVelScale) == 0x000240, "Member 'FAnimNode_RigidBody::ComponentLinearVelScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, ComponentAppliedLinearAccClamp) == 0x000258, "Member 'FAnimNode_RigidBody::ComponentAppliedLinearAccClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, SimSpaceSettings) == 0x000270, "Member 'FAnimNode_RigidBody::SimSpaceSettings' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, CachedBoundsScale) == 0x0002D0, "Member 'FAnimNode_RigidBody::CachedBoundsScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, BaseBoneRef) == 0x0002D4, "Member 'FAnimNode_RigidBody::BaseBoneRef' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, OverlapChannel) == 0x0002E4, "Member 'FAnimNode_RigidBody::OverlapChannel' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, SimulationSpace) == 0x0002E5, "Member 'FAnimNode_RigidBody::SimulationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, bForceDisableCollisionBetweenConstraintBodies) == 0x0002E6, "Member 'FAnimNode_RigidBody::bForceDisableCollisionBetweenConstraintBodies' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, bUseExternalClothCollision) == 0x0002E7, "Member 'FAnimNode_RigidBody::bUseExternalClothCollision' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, WorldSpaceMinimumScale) == 0x0002EC, "Member 'FAnimNode_RigidBody::WorldSpaceMinimumScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, EvaluationResetTime) == 0x0002F0, "Member 'FAnimNode_RigidBody::EvaluationResetTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RigidBody, SimulationTiming) == 0x0002F5, "Member 'FAnimNode_RigidBody::SimulationTiming' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ScaleChainLength \ +static_assert(alignof(FAnimNode_ScaleChainLength) == 0x000008, "Wrong alignment on FAnimNode_ScaleChainLength"); \ +static_assert(sizeof(FAnimNode_ScaleChainLength) == 0x000088, "Wrong size on FAnimNode_ScaleChainLength"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, InputPose) == 0x000010, "Member 'FAnimNode_ScaleChainLength::InputPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, DefaultChainLength) == 0x000020, "Member 'FAnimNode_ScaleChainLength::DefaultChainLength' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, ChainStartBone) == 0x000024, "Member 'FAnimNode_ScaleChainLength::ChainStartBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, ChainEndBone) == 0x000034, "Member 'FAnimNode_ScaleChainLength::ChainEndBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, TargetLocation) == 0x000048, "Member 'FAnimNode_ScaleChainLength::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, alpha) == 0x000060, "Member 'FAnimNode_ScaleChainLength::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, AlphaScaleBias) == 0x000068, "Member 'FAnimNode_ScaleChainLength::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ScaleChainLength, ChainInitialLength) == 0x000070, "Member 'FAnimNode_ScaleChainLength::ChainInitialLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSplineIKCachedBoneData \ +static_assert(alignof(FSplineIKCachedBoneData) == 0x000004, "Wrong alignment on FSplineIKCachedBoneData"); \ +static_assert(sizeof(FSplineIKCachedBoneData) == 0x000014, "Wrong size on FSplineIKCachedBoneData"); \ +static_assert(offsetof(FSplineIKCachedBoneData, bone) == 0x000000, "Member 'FSplineIKCachedBoneData::bone' has a wrong offset!"); \ +static_assert(offsetof(FSplineIKCachedBoneData, RefSkeletonIndex) == 0x000010, "Member 'FSplineIKCachedBoneData::RefSkeletonIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SplineIK \ +static_assert(alignof(FAnimNode_SplineIK) == 0x000008, "Wrong alignment on FAnimNode_SplineIK"); \ +static_assert(sizeof(FAnimNode_SplineIK) == 0x000270, "Wrong size on FAnimNode_SplineIK"); \ +static_assert(offsetof(FAnimNode_SplineIK, StartBone) == 0x0000C8, "Member 'FAnimNode_SplineIK::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, EndBone) == 0x0000D8, "Member 'FAnimNode_SplineIK::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, BoneAxis) == 0x0000E8, "Member 'FAnimNode_SplineIK::BoneAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, bAutoCalculateSpline) == 0x0000E9, "Member 'FAnimNode_SplineIK::bAutoCalculateSpline' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, PointCount) == 0x0000EC, "Member 'FAnimNode_SplineIK::PointCount' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, ControlPoints) == 0x0000F0, "Member 'FAnimNode_SplineIK::ControlPoints' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, Roll) == 0x000100, "Member 'FAnimNode_SplineIK::Roll' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, TwistStart) == 0x000104, "Member 'FAnimNode_SplineIK::TwistStart' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, TwistEnd) == 0x000108, "Member 'FAnimNode_SplineIK::TwistEnd' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, TwistBlend) == 0x000110, "Member 'FAnimNode_SplineIK::TwistBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, Stretch) == 0x000140, "Member 'FAnimNode_SplineIK::Stretch' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SplineIK, Offset) == 0x000144, "Member 'FAnimNode_SplineIK::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_SpringBone \ +static_assert(alignof(FAnimNode_SpringBone) == 0x000008, "Wrong alignment on FAnimNode_SpringBone"); \ +static_assert(sizeof(FAnimNode_SpringBone) == 0x000168, "Wrong size on FAnimNode_SpringBone"); \ +static_assert(offsetof(FAnimNode_SpringBone, SpringBone) == 0x0000C8, "Member 'FAnimNode_SpringBone::SpringBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SpringBone, MaxDisplacement) == 0x0000D8, "Member 'FAnimNode_SpringBone::MaxDisplacement' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SpringBone, SpringStiffness) == 0x0000E0, "Member 'FAnimNode_SpringBone::SpringStiffness' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SpringBone, SpringDamping) == 0x0000E8, "Member 'FAnimNode_SpringBone::SpringDamping' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_SpringBone, ErrorResetThresh) == 0x0000F0, "Member 'FAnimNode_SpringBone::ErrorResetThresh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRotationLimit \ +static_assert(alignof(FRotationLimit) == 0x000008, "Wrong alignment on FRotationLimit"); \ +static_assert(sizeof(FRotationLimit) == 0x000030, "Wrong size on FRotationLimit"); \ +static_assert(offsetof(FRotationLimit, LimitMin) == 0x000000, "Member 'FRotationLimit::LimitMin' has a wrong offset!"); \ +static_assert(offsetof(FRotationLimit, LimitMax) == 0x000018, "Member 'FRotationLimit::LimitMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_Trail \ +static_assert(alignof(FAnimNode_Trail) == 0x000010, "Wrong alignment on FAnimNode_Trail"); \ +static_assert(sizeof(FAnimNode_Trail) == 0x0002A0, "Wrong size on FAnimNode_Trail"); \ +static_assert(offsetof(FAnimNode_Trail, TrailBone) == 0x000130, "Member 'FAnimNode_Trail::TrailBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, ChainLength) == 0x000140, "Member 'FAnimNode_Trail::ChainLength' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, ChainBoneAxis) == 0x000144, "Member 'FAnimNode_Trail::ChainBoneAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, MaxDeltaTime) == 0x000148, "Member 'FAnimNode_Trail::MaxDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, RelaxationSpeedScale) == 0x00014C, "Member 'FAnimNode_Trail::RelaxationSpeedScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, TrailRelaxationSpeed) == 0x000150, "Member 'FAnimNode_Trail::TrailRelaxationSpeed' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, RelaxationSpeedScaleInputProcessor) == 0x0001D8, "Member 'FAnimNode_Trail::RelaxationSpeedScaleInputProcessor' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, RotationLimits) == 0x000208, "Member 'FAnimNode_Trail::RotationLimits' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, RotationOffsets) == 0x000218, "Member 'FAnimNode_Trail::RotationOffsets' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, PlanarLimits) == 0x000228, "Member 'FAnimNode_Trail::PlanarLimits' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, StretchLimit) == 0x000238, "Member 'FAnimNode_Trail::StretchLimit' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, FakeVelocity) == 0x000240, "Member 'FAnimNode_Trail::FakeVelocity' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, BaseJoint) == 0x000258, "Member 'FAnimNode_Trail::BaseJoint' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_Trail, LastBoneRotationAnimAlphaBlend) == 0x000268, "Member 'FAnimNode_Trail::LastBoneRotationAnimAlphaBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReferenceBoneFrame \ +static_assert(alignof(FReferenceBoneFrame) == 0x000008, "Wrong alignment on FReferenceBoneFrame"); \ +static_assert(sizeof(FReferenceBoneFrame) == 0x000030, "Wrong size on FReferenceBoneFrame"); \ +static_assert(offsetof(FReferenceBoneFrame, bone) == 0x000000, "Member 'FReferenceBoneFrame::bone' has a wrong offset!"); \ +static_assert(offsetof(FReferenceBoneFrame, Axis) == 0x000010, "Member 'FReferenceBoneFrame::Axis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_TwistCorrectiveNode \ +static_assert(alignof(FAnimNode_TwistCorrectiveNode) == 0x000008, "Wrong alignment on FAnimNode_TwistCorrectiveNode"); \ +static_assert(sizeof(FAnimNode_TwistCorrectiveNode) == 0x000168, "Wrong size on FAnimNode_TwistCorrectiveNode"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, BaseFrame) == 0x0000C8, "Member 'FAnimNode_TwistCorrectiveNode::BaseFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, TwistFrame) == 0x0000F8, "Member 'FAnimNode_TwistCorrectiveNode::TwistFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, TwistPlaneNormalAxis) == 0x000128, "Member 'FAnimNode_TwistCorrectiveNode::TwistPlaneNormalAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, RangeMax) == 0x000148, "Member 'FAnimNode_TwistCorrectiveNode::RangeMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, RemappedMin) == 0x00014C, "Member 'FAnimNode_TwistCorrectiveNode::RemappedMin' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, RemappedMax) == 0x000150, "Member 'FAnimNode_TwistCorrectiveNode::RemappedMax' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwistCorrectiveNode, CurveName) == 0x000154, "Member 'FAnimNode_TwistCorrectiveNode::CurveName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_TwoBoneIK \ +static_assert(alignof(FAnimNode_TwoBoneIK) == 0x000010, "Wrong alignment on FAnimNode_TwoBoneIK"); \ +static_assert(sizeof(FAnimNode_TwoBoneIK) == 0x000280, "Wrong size on FAnimNode_TwoBoneIK"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, IKBone) == 0x0000C8, "Member 'FAnimNode_TwoBoneIK::IKBone' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, StartStretchRatio) == 0x0000D8, "Member 'FAnimNode_TwoBoneIK::StartStretchRatio' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, MaxStretchScale) == 0x0000E0, "Member 'FAnimNode_TwoBoneIK::MaxStretchScale' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, EffectorLocation) == 0x0000E8, "Member 'FAnimNode_TwoBoneIK::EffectorLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, EffectorTarget) == 0x000110, "Member 'FAnimNode_TwoBoneIK::EffectorTarget' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, JointTargetLocation) == 0x0001A0, "Member 'FAnimNode_TwoBoneIK::JointTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, JointTarget) == 0x0001C0, "Member 'FAnimNode_TwoBoneIK::JointTarget' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, TwistAxis) == 0x000250, "Member 'FAnimNode_TwoBoneIK::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, EffectorLocationSpace) == 0x000270, "Member 'FAnimNode_TwoBoneIK::EffectorLocationSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_TwoBoneIK, JointTargetLocationSpace) == 0x000271, "Member 'FAnimNode_TwoBoneIK::JointTargetLocationSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIKFootPelvisPullDownSolver \ +static_assert(alignof(FIKFootPelvisPullDownSolver) == 0x000008, "Wrong alignment on FIKFootPelvisPullDownSolver"); \ +static_assert(sizeof(FIKFootPelvisPullDownSolver) == 0x000080, "Wrong size on FIKFootPelvisPullDownSolver"); \ +static_assert(offsetof(FIKFootPelvisPullDownSolver, PelvisAdjustmentInterp) == 0x000000, "Member 'FIKFootPelvisPullDownSolver::PelvisAdjustmentInterp' has a wrong offset!"); \ +static_assert(offsetof(FIKFootPelvisPullDownSolver, PelvisAdjustmentInterpAlpha) == 0x000060, "Member 'FIKFootPelvisPullDownSolver::PelvisAdjustmentInterpAlpha' has a wrong offset!"); \ +static_assert(offsetof(FIKFootPelvisPullDownSolver, PelvisAdjustmentMaxDistance) == 0x000068, "Member 'FIKFootPelvisPullDownSolver::PelvisAdjustmentMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FIKFootPelvisPullDownSolver, PelvisAdjustmentErrorTolerance) == 0x000070, "Member 'FIKFootPelvisPullDownSolver::PelvisAdjustmentErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FIKFootPelvisPullDownSolver, PelvisAdjustmentMaxIter) == 0x000078, "Member 'FIKFootPelvisPullDownSolver::PelvisAdjustmentMaxIter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWarpingVectorValue \ +static_assert(alignof(FWarpingVectorValue) == 0x000008, "Wrong alignment on FWarpingVectorValue"); \ +static_assert(sizeof(FWarpingVectorValue) == 0x000020, "Wrong size on FWarpingVectorValue"); \ +static_assert(offsetof(FWarpingVectorValue, Mode) == 0x000000, "Member 'FWarpingVectorValue::Mode' has a wrong offset!"); \ +static_assert(offsetof(FWarpingVectorValue, Value) == 0x000008, "Member 'FWarpingVectorValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLayeredBoneBlendReference \ +static_assert(alignof(FLayeredBoneBlendReference) == 0x000008, "Wrong alignment on FLayeredBoneBlendReference"); \ +static_assert(sizeof(FLayeredBoneBlendReference) == 0x000010, "Wrong size on FLayeredBoneBlendReference"); \ + +#define DUMPER7_ASSERTS_FLinkedAnimGraphReference \ +static_assert(alignof(FLinkedAnimGraphReference) == 0x000008, "Wrong alignment on FLinkedAnimGraphReference"); \ +static_assert(sizeof(FLinkedAnimGraphReference) == 0x000010, "Wrong size on FLinkedAnimGraphReference"); \ + +#define DUMPER7_ASSERTS_FRBFEntry \ +static_assert(alignof(FRBFEntry) == 0x000008, "Wrong alignment on FRBFEntry"); \ +static_assert(sizeof(FRBFEntry) == 0x000010, "Wrong size on FRBFEntry"); \ +static_assert(offsetof(FRBFEntry, Values) == 0x000000, "Member 'FRBFEntry::Values' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRBFTarget \ +static_assert(alignof(FRBFTarget) == 0x000008, "Wrong alignment on FRBFTarget"); \ +static_assert(sizeof(FRBFTarget) == 0x0000A0, "Wrong size on FRBFTarget"); \ +static_assert(offsetof(FRBFTarget, ScaleFactor) == 0x000010, "Member 'FRBFTarget::ScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(FRBFTarget, bApplyCustomCurve) == 0x000014, "Member 'FRBFTarget::bApplyCustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FRBFTarget, CustomCurve) == 0x000018, "Member 'FRBFTarget::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(FRBFTarget, DistanceMethod) == 0x000098, "Member 'FRBFTarget::DistanceMethod' has a wrong offset!"); \ +static_assert(offsetof(FRBFTarget, FunctionType) == 0x000099, "Member 'FRBFTarget::FunctionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSequenceEvaluatorReference \ +static_assert(alignof(FSequenceEvaluatorReference) == 0x000008, "Wrong alignment on FSequenceEvaluatorReference"); \ +static_assert(sizeof(FSequenceEvaluatorReference) == 0x000010, "Wrong size on FSequenceEvaluatorReference"); \ + +#define DUMPER7_ASSERTS_FSequencePlayerReference \ +static_assert(alignof(FSequencePlayerReference) == 0x000008, "Wrong alignment on FSequencePlayerReference"); \ +static_assert(sizeof(FSequencePlayerReference) == 0x000010, "Wrong size on FSequencePlayerReference"); \ + +#define DUMPER7_ASSERTS_FSkeletalControlReference \ +static_assert(alignof(FSkeletalControlReference) == 0x000008, "Wrong alignment on FSkeletalControlReference"); \ +static_assert(sizeof(FSkeletalControlReference) == 0x000010, "Wrong size on FSkeletalControlReference"); \ + +#define DUMPER7_ASSERTS_BlendSpaceLibrary_ConvertToBlendSpace \ +static_assert(alignof(BlendSpaceLibrary_ConvertToBlendSpace) == 0x000008, "Wrong alignment on BlendSpaceLibrary_ConvertToBlendSpace"); \ +static_assert(sizeof(BlendSpaceLibrary_ConvertToBlendSpace) == 0x000028, "Wrong size on BlendSpaceLibrary_ConvertToBlendSpace"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpace, Node) == 0x000000, "Member 'BlendSpaceLibrary_ConvertToBlendSpace::Node' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpace, Result) == 0x000010, "Member 'BlendSpaceLibrary_ConvertToBlendSpace::Result' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpace, ReturnValue) == 0x000018, "Member 'BlendSpaceLibrary_ConvertToBlendSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpaceLibrary_ConvertToBlendSpacePure \ +static_assert(alignof(BlendSpaceLibrary_ConvertToBlendSpacePure) == 0x000008, "Wrong alignment on BlendSpaceLibrary_ConvertToBlendSpacePure"); \ +static_assert(sizeof(BlendSpaceLibrary_ConvertToBlendSpacePure) == 0x000028, "Wrong size on BlendSpaceLibrary_ConvertToBlendSpacePure"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpacePure, Node) == 0x000000, "Member 'BlendSpaceLibrary_ConvertToBlendSpacePure::Node' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpacePure, BlendSpace) == 0x000010, "Member 'BlendSpaceLibrary_ConvertToBlendSpacePure::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_ConvertToBlendSpacePure, Result) == 0x000020, "Member 'BlendSpaceLibrary_ConvertToBlendSpacePure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpaceLibrary_GetFilteredPosition \ +static_assert(alignof(BlendSpaceLibrary_GetFilteredPosition) == 0x000008, "Wrong alignment on BlendSpaceLibrary_GetFilteredPosition"); \ +static_assert(sizeof(BlendSpaceLibrary_GetFilteredPosition) == 0x000028, "Wrong size on BlendSpaceLibrary_GetFilteredPosition"); \ +static_assert(offsetof(BlendSpaceLibrary_GetFilteredPosition, BlendSpace) == 0x000000, "Member 'BlendSpaceLibrary_GetFilteredPosition::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_GetFilteredPosition, ReturnValue) == 0x000010, "Member 'BlendSpaceLibrary_GetFilteredPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpaceLibrary_GetPosition \ +static_assert(alignof(BlendSpaceLibrary_GetPosition) == 0x000008, "Wrong alignment on BlendSpaceLibrary_GetPosition"); \ +static_assert(sizeof(BlendSpaceLibrary_GetPosition) == 0x000028, "Wrong size on BlendSpaceLibrary_GetPosition"); \ +static_assert(offsetof(BlendSpaceLibrary_GetPosition, BlendSpace) == 0x000000, "Member 'BlendSpaceLibrary_GetPosition::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_GetPosition, ReturnValue) == 0x000010, "Member 'BlendSpaceLibrary_GetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpaceLibrary_SnapToPosition \ +static_assert(alignof(BlendSpaceLibrary_SnapToPosition) == 0x000008, "Wrong alignment on BlendSpaceLibrary_SnapToPosition"); \ +static_assert(sizeof(BlendSpaceLibrary_SnapToPosition) == 0x000028, "Wrong size on BlendSpaceLibrary_SnapToPosition"); \ +static_assert(offsetof(BlendSpaceLibrary_SnapToPosition, BlendSpace) == 0x000000, "Member 'BlendSpaceLibrary_SnapToPosition::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpaceLibrary_SnapToPosition, NewPosition) == 0x000010, "Member 'BlendSpaceLibrary_SnapToPosition::NewPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlendSpaceLibrary \ +static_assert(alignof(UBlendSpaceLibrary) == 0x000008, "Wrong alignment on UBlendSpaceLibrary"); \ +static_assert(sizeof(UBlendSpaceLibrary) == 0x000028, "Wrong size on UBlendSpaceLibrary"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_ConvertToAnimationStateMachine \ +static_assert(alignof(AnimationStateMachineLibrary_ConvertToAnimationStateMachine) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_ConvertToAnimationStateMachine"); \ +static_assert(sizeof(AnimationStateMachineLibrary_ConvertToAnimationStateMachine) == 0x000028, "Wrong size on AnimationStateMachineLibrary_ConvertToAnimationStateMachine"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachine, Node) == 0x000000, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachine::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachine, AnimationState) == 0x000010, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachine::AnimationState' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachine, Result) == 0x000020, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachine::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure \ +static_assert(alignof(AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure"); \ +static_assert(sizeof(AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure) == 0x000028, "Wrong size on AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure, Node) == 0x000000, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure, AnimationState) == 0x000010, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure::AnimationState' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure, Result) == 0x000020, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateMachinePure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_ConvertToAnimationStateResult \ +static_assert(alignof(AnimationStateMachineLibrary_ConvertToAnimationStateResult) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_ConvertToAnimationStateResult"); \ +static_assert(sizeof(AnimationStateMachineLibrary_ConvertToAnimationStateResult) == 0x000028, "Wrong size on AnimationStateMachineLibrary_ConvertToAnimationStateResult"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResult, Node) == 0x000000, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResult::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResult, AnimationState) == 0x000010, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResult::AnimationState' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResult, Result) == 0x000020, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResult::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_ConvertToAnimationStateResultPure \ +static_assert(alignof(AnimationStateMachineLibrary_ConvertToAnimationStateResultPure) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_ConvertToAnimationStateResultPure"); \ +static_assert(sizeof(AnimationStateMachineLibrary_ConvertToAnimationStateResultPure) == 0x000028, "Wrong size on AnimationStateMachineLibrary_ConvertToAnimationStateResultPure"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResultPure, Node) == 0x000000, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResultPure::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResultPure, AnimationState) == 0x000010, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResultPure::AnimationState' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_ConvertToAnimationStateResultPure, Result) == 0x000020, "Member 'AnimationStateMachineLibrary_ConvertToAnimationStateResultPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining \ +static_assert(alignof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining"); \ +static_assert(sizeof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining) == 0x000028, "Wrong size on AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining, ReturnValue) == 0x000020, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemaining::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction \ +static_assert(alignof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction"); \ +static_assert(sizeof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction) == 0x000028, "Wrong size on AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction, ReturnValue) == 0x000020, "Member 'AnimationStateMachineLibrary_GetRelevantAnimTimeRemainingFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_GetState \ +static_assert(alignof(AnimationStateMachineLibrary_GetState) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_GetState"); \ +static_assert(sizeof(AnimationStateMachineLibrary_GetState) == 0x000028, "Wrong size on AnimationStateMachineLibrary_GetState"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetState, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_GetState::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetState, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_GetState::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_GetState, ReturnValue) == 0x000020, "Member 'AnimationStateMachineLibrary_GetState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_IsStateBlendingIn \ +static_assert(alignof(AnimationStateMachineLibrary_IsStateBlendingIn) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_IsStateBlendingIn"); \ +static_assert(sizeof(AnimationStateMachineLibrary_IsStateBlendingIn) == 0x000028, "Wrong size on AnimationStateMachineLibrary_IsStateBlendingIn"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingIn, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_IsStateBlendingIn::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingIn, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_IsStateBlendingIn::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingIn, ReturnValue) == 0x000020, "Member 'AnimationStateMachineLibrary_IsStateBlendingIn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_IsStateBlendingOut \ +static_assert(alignof(AnimationStateMachineLibrary_IsStateBlendingOut) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_IsStateBlendingOut"); \ +static_assert(sizeof(AnimationStateMachineLibrary_IsStateBlendingOut) == 0x000028, "Wrong size on AnimationStateMachineLibrary_IsStateBlendingOut"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingOut, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_IsStateBlendingOut::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingOut, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_IsStateBlendingOut::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_IsStateBlendingOut, ReturnValue) == 0x000020, "Member 'AnimationStateMachineLibrary_IsStateBlendingOut::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationStateMachineLibrary_SetState \ +static_assert(alignof(AnimationStateMachineLibrary_SetState) == 0x000008, "Wrong alignment on AnimationStateMachineLibrary_SetState"); \ +static_assert(sizeof(AnimationStateMachineLibrary_SetState) == 0x000048, "Wrong size on AnimationStateMachineLibrary_SetState"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, UpdateContext) == 0x000000, "Member 'AnimationStateMachineLibrary_SetState::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, Node) == 0x000010, "Member 'AnimationStateMachineLibrary_SetState::Node' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, TargetState) == 0x000020, "Member 'AnimationStateMachineLibrary_SetState::TargetState' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, Duration) == 0x000028, "Member 'AnimationStateMachineLibrary_SetState::Duration' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, BlendType) == 0x00002C, "Member 'AnimationStateMachineLibrary_SetState::BlendType' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, BlendProfile) == 0x000030, "Member 'AnimationStateMachineLibrary_SetState::BlendProfile' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, AlphaBlendOption) == 0x000038, "Member 'AnimationStateMachineLibrary_SetState::AlphaBlendOption' has a wrong offset!"); \ +static_assert(offsetof(AnimationStateMachineLibrary_SetState, CustomBlendCurve) == 0x000040, "Member 'AnimationStateMachineLibrary_SetState::CustomBlendCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationStateMachineLibrary \ +static_assert(alignof(UAnimationStateMachineLibrary) == 0x000008, "Wrong alignment on UAnimationStateMachineLibrary"); \ +static_assert(sizeof(UAnimationStateMachineLibrary) == 0x000028, "Wrong size on UAnimationStateMachineLibrary"); \ + +#define DUMPER7_ASSERTS_UAnimSequencerInstance \ +static_assert(alignof(UAnimSequencerInstance) == 0x000010, "Wrong alignment on UAnimSequencerInstance"); \ +static_assert(sizeof(UAnimSequencerInstance) == 0x000350, "Wrong size on UAnimSequencerInstance"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext \ +static_assert(alignof(AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext"); \ +static_assert(sizeof(AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext) == 0x000028, "Wrong size on AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext, Result) == 0x000010, "Member 'AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext::Result' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext, ReturnValue) == 0x000018, "Member 'AnimExecutionContextLibrary_ConvertToComponentSpacePoseContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_ConvertToInitializationContext \ +static_assert(alignof(AnimExecutionContextLibrary_ConvertToInitializationContext) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_ConvertToInitializationContext"); \ +static_assert(sizeof(AnimExecutionContextLibrary_ConvertToInitializationContext) == 0x000028, "Wrong size on AnimExecutionContextLibrary_ConvertToInitializationContext"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToInitializationContext, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_ConvertToInitializationContext::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToInitializationContext, Result) == 0x000010, "Member 'AnimExecutionContextLibrary_ConvertToInitializationContext::Result' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToInitializationContext, ReturnValue) == 0x000018, "Member 'AnimExecutionContextLibrary_ConvertToInitializationContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_ConvertToPoseContext \ +static_assert(alignof(AnimExecutionContextLibrary_ConvertToPoseContext) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_ConvertToPoseContext"); \ +static_assert(sizeof(AnimExecutionContextLibrary_ConvertToPoseContext) == 0x000028, "Wrong size on AnimExecutionContextLibrary_ConvertToPoseContext"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToPoseContext, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_ConvertToPoseContext::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToPoseContext, Result) == 0x000010, "Member 'AnimExecutionContextLibrary_ConvertToPoseContext::Result' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToPoseContext, ReturnValue) == 0x000018, "Member 'AnimExecutionContextLibrary_ConvertToPoseContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_ConvertToUpdateContext \ +static_assert(alignof(AnimExecutionContextLibrary_ConvertToUpdateContext) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_ConvertToUpdateContext"); \ +static_assert(sizeof(AnimExecutionContextLibrary_ConvertToUpdateContext) == 0x000028, "Wrong size on AnimExecutionContextLibrary_ConvertToUpdateContext"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToUpdateContext, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_ConvertToUpdateContext::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToUpdateContext, Result) == 0x000010, "Member 'AnimExecutionContextLibrary_ConvertToUpdateContext::Result' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_ConvertToUpdateContext, ReturnValue) == 0x000018, "Member 'AnimExecutionContextLibrary_ConvertToUpdateContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_GetAnimInstance \ +static_assert(alignof(AnimExecutionContextLibrary_GetAnimInstance) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_GetAnimInstance"); \ +static_assert(sizeof(AnimExecutionContextLibrary_GetAnimInstance) == 0x000018, "Wrong size on AnimExecutionContextLibrary_GetAnimInstance"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetAnimInstance, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_GetAnimInstance::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetAnimInstance, ReturnValue) == 0x000010, "Member 'AnimExecutionContextLibrary_GetAnimInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_GetAnimNodeReference \ +static_assert(alignof(AnimExecutionContextLibrary_GetAnimNodeReference) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_GetAnimNodeReference"); \ +static_assert(sizeof(AnimExecutionContextLibrary_GetAnimNodeReference) == 0x000020, "Wrong size on AnimExecutionContextLibrary_GetAnimNodeReference"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetAnimNodeReference, Instance) == 0x000000, "Member 'AnimExecutionContextLibrary_GetAnimNodeReference::Instance' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetAnimNodeReference, Index_0) == 0x000008, "Member 'AnimExecutionContextLibrary_GetAnimNodeReference::Index_0' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetAnimNodeReference, ReturnValue) == 0x000010, "Member 'AnimExecutionContextLibrary_GetAnimNodeReference::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_GetCurrentWeight \ +static_assert(alignof(AnimExecutionContextLibrary_GetCurrentWeight) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_GetCurrentWeight"); \ +static_assert(sizeof(AnimExecutionContextLibrary_GetCurrentWeight) == 0x000018, "Wrong size on AnimExecutionContextLibrary_GetCurrentWeight"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetCurrentWeight, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_GetCurrentWeight::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetCurrentWeight, ReturnValue) == 0x000010, "Member 'AnimExecutionContextLibrary_GetCurrentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimExecutionContextLibrary_GetDeltaTime \ +static_assert(alignof(AnimExecutionContextLibrary_GetDeltaTime) == 0x000008, "Wrong alignment on AnimExecutionContextLibrary_GetDeltaTime"); \ +static_assert(sizeof(AnimExecutionContextLibrary_GetDeltaTime) == 0x000018, "Wrong size on AnimExecutionContextLibrary_GetDeltaTime"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetDeltaTime, Context) == 0x000000, "Member 'AnimExecutionContextLibrary_GetDeltaTime::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimExecutionContextLibrary_GetDeltaTime, ReturnValue) == 0x000010, "Member 'AnimExecutionContextLibrary_GetDeltaTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimExecutionContextLibrary \ +static_assert(alignof(UAnimExecutionContextLibrary) == 0x000008, "Wrong alignment on UAnimExecutionContextLibrary"); \ +static_assert(sizeof(UAnimExecutionContextLibrary) == 0x000028, "Wrong size on UAnimExecutionContextLibrary"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer \ +static_assert(alignof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer, Node) == 0x000000, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer::Node' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer, Result) == 0x000010, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer::Result' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer, ReturnValue) == 0x000018, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure \ +static_assert(alignof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure, Node) == 0x000000, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure::Node' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure, BlendSpacePlayer) == 0x000010, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure, Result) == 0x000020, "Member 'BlendSpacePlayerLibrary_ConvertToBlendSpacePlayerPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_GetBlendSpace \ +static_assert(alignof(BlendSpacePlayerLibrary_GetBlendSpace) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_GetBlendSpace"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_GetBlendSpace) == 0x000018, "Wrong size on BlendSpacePlayerLibrary_GetBlendSpace"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetBlendSpace, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_GetBlendSpace::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetBlendSpace, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_GetBlendSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_GetLoop \ +static_assert(alignof(BlendSpacePlayerLibrary_GetLoop) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_GetLoop"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_GetLoop) == 0x000018, "Wrong size on BlendSpacePlayerLibrary_GetLoop"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetLoop, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_GetLoop::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetLoop, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_GetLoop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_GetPlayRate \ +static_assert(alignof(BlendSpacePlayerLibrary_GetPlayRate) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_GetPlayRate"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_GetPlayRate) == 0x000018, "Wrong size on BlendSpacePlayerLibrary_GetPlayRate"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetPlayRate, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_GetPlayRate::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetPlayRate, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_GetPosition \ +static_assert(alignof(BlendSpacePlayerLibrary_GetPosition) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_GetPosition"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_GetPosition) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_GetPosition"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetPosition, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_GetPosition::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetPosition, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_GetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_GetStartPosition \ +static_assert(alignof(BlendSpacePlayerLibrary_GetStartPosition) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_GetStartPosition"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_GetStartPosition) == 0x000018, "Wrong size on BlendSpacePlayerLibrary_GetStartPosition"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetStartPosition, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_GetStartPosition::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_GetStartPosition, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_GetStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SetBlendSpace \ +static_assert(alignof(BlendSpacePlayerLibrary_SetBlendSpace) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SetBlendSpace"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SetBlendSpace) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_SetBlendSpace"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpace, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_SetBlendSpace::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpace, BlendSpace) == 0x000010, "Member 'BlendSpacePlayerLibrary_SetBlendSpace::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpace, ReturnValue) == 0x000018, "Member 'BlendSpacePlayerLibrary_SetBlendSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending \ +static_assert(alignof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending) == 0x000040, "Wrong size on BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending, UpdateContext) == 0x000000, "Member 'BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending, BlendSpacePlayer) == 0x000010, "Member 'BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending, BlendSpace) == 0x000020, "Member 'BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending::BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending, BlendTime) == 0x000028, "Member 'BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending, ReturnValue) == 0x000030, "Member 'BlendSpacePlayerLibrary_SetBlendSpaceWithInertialBlending::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SetLoop \ +static_assert(alignof(BlendSpacePlayerLibrary_SetLoop) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SetLoop"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SetLoop) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_SetLoop"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetLoop, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_SetLoop::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetLoop, bLoop) == 0x000010, "Member 'BlendSpacePlayerLibrary_SetLoop::bLoop' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetLoop, ReturnValue) == 0x000018, "Member 'BlendSpacePlayerLibrary_SetLoop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SetPlayRate \ +static_assert(alignof(BlendSpacePlayerLibrary_SetPlayRate) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SetPlayRate"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SetPlayRate) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_SetPlayRate"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetPlayRate, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_SetPlayRate::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetPlayRate, PlayRate) == 0x000010, "Member 'BlendSpacePlayerLibrary_SetPlayRate::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetPlayRate, ReturnValue) == 0x000018, "Member 'BlendSpacePlayerLibrary_SetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges \ +static_assert(alignof(BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges, bReset) == 0x000010, "Member 'BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges::bReset' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges, ReturnValue) == 0x000018, "Member 'BlendSpacePlayerLibrary_SetResetPlayTimeWhenBlendSpaceChanges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges \ +static_assert(alignof(BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges) == 0x000018, "Wrong size on BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges, ReturnValue) == 0x000010, "Member 'BlendSpacePlayerLibrary_ShouldResetPlayTimeWhenBlendSpaceChanges::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendSpacePlayerLibrary_SnapToPosition \ +static_assert(alignof(BlendSpacePlayerLibrary_SnapToPosition) == 0x000008, "Wrong alignment on BlendSpacePlayerLibrary_SnapToPosition"); \ +static_assert(sizeof(BlendSpacePlayerLibrary_SnapToPosition) == 0x000028, "Wrong size on BlendSpacePlayerLibrary_SnapToPosition"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SnapToPosition, BlendSpacePlayer) == 0x000000, "Member 'BlendSpacePlayerLibrary_SnapToPosition::BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(BlendSpacePlayerLibrary_SnapToPosition, NewPosition) == 0x000010, "Member 'BlendSpacePlayerLibrary_SnapToPosition::NewPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlendSpacePlayerLibrary \ +static_assert(alignof(UBlendSpacePlayerLibrary) == 0x000008, "Wrong alignment on UBlendSpacePlayerLibrary"); \ +static_assert(sizeof(UBlendSpacePlayerLibrary) == 0x000028, "Wrong size on UBlendSpacePlayerLibrary"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PlayMontageNotify \ +static_assert(alignof(UAnimNotify_PlayMontageNotify) == 0x000008, "Wrong alignment on UAnimNotify_PlayMontageNotify"); \ +static_assert(sizeof(UAnimNotify_PlayMontageNotify) == 0x000040, "Wrong size on UAnimNotify_PlayMontageNotify"); \ +static_assert(offsetof(UAnimNotify_PlayMontageNotify, NotifyName) == 0x000038, "Member 'UAnimNotify_PlayMontageNotify::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PlayMontageNotifyWindow \ +static_assert(alignof(UAnimNotify_PlayMontageNotifyWindow) == 0x000008, "Wrong alignment on UAnimNotify_PlayMontageNotifyWindow"); \ +static_assert(sizeof(UAnimNotify_PlayMontageNotifyWindow) == 0x000038, "Wrong size on UAnimNotify_PlayMontageNotifyWindow"); \ +static_assert(offsetof(UAnimNotify_PlayMontageNotifyWindow, NotifyName) == 0x000030, "Member 'UAnimNotify_PlayMontageNotifyWindow::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendListBaseLibrary_ConvertToBlendListBase \ +static_assert(alignof(BlendListBaseLibrary_ConvertToBlendListBase) == 0x000008, "Wrong alignment on BlendListBaseLibrary_ConvertToBlendListBase"); \ +static_assert(sizeof(BlendListBaseLibrary_ConvertToBlendListBase) == 0x000028, "Wrong size on BlendListBaseLibrary_ConvertToBlendListBase"); \ +static_assert(offsetof(BlendListBaseLibrary_ConvertToBlendListBase, Node) == 0x000000, "Member 'BlendListBaseLibrary_ConvertToBlendListBase::Node' has a wrong offset!"); \ +static_assert(offsetof(BlendListBaseLibrary_ConvertToBlendListBase, Result) == 0x000010, "Member 'BlendListBaseLibrary_ConvertToBlendListBase::Result' has a wrong offset!"); \ +static_assert(offsetof(BlendListBaseLibrary_ConvertToBlendListBase, ReturnValue) == 0x000018, "Member 'BlendListBaseLibrary_ConvertToBlendListBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlendListBaseLibrary_ResetNode \ +static_assert(alignof(BlendListBaseLibrary_ResetNode) == 0x000008, "Wrong alignment on BlendListBaseLibrary_ResetNode"); \ +static_assert(sizeof(BlendListBaseLibrary_ResetNode) == 0x000010, "Wrong size on BlendListBaseLibrary_ResetNode"); \ +static_assert(offsetof(BlendListBaseLibrary_ResetNode, BlendListBase) == 0x000000, "Member 'BlendListBaseLibrary_ResetNode::BlendListBase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlendListBaseLibrary \ +static_assert(alignof(UBlendListBaseLibrary) == 0x000008, "Wrong alignment on UBlendListBaseLibrary"); \ +static_assert(sizeof(UBlendListBaseLibrary) == 0x000028, "Wrong size on UBlendListBaseLibrary"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_CalculateDirection \ +static_assert(alignof(KismetAnimationLibrary_CalculateDirection) == 0x000008, "Wrong alignment on KismetAnimationLibrary_CalculateDirection"); \ +static_assert(sizeof(KismetAnimationLibrary_CalculateDirection) == 0x000038, "Wrong size on KismetAnimationLibrary_CalculateDirection"); \ +static_assert(offsetof(KismetAnimationLibrary_CalculateDirection, Velocity) == 0x000000, "Member 'KismetAnimationLibrary_CalculateDirection::Velocity' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_CalculateDirection, BaseRotation) == 0x000018, "Member 'KismetAnimationLibrary_CalculateDirection::BaseRotation' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_CalculateDirection, ReturnValue) == 0x000030, "Member 'KismetAnimationLibrary_CalculateDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory \ +static_assert(alignof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory) == 0x000060, "Wrong size on KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, DeltaSeconds) == 0x000000, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, Position) == 0x000008, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::Position' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, History) == 0x000020, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::History' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, NumberOfSamples) == 0x000050, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::NumberOfSamples' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, VelocityMin) == 0x000054, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::VelocityMin' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, VelocityMax) == 0x000058, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::VelocityMax' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory, ReturnValue) == 0x00005C, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromPositionHistory::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_CalculateVelocityFromSockets \ +static_assert(alignof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_CalculateVelocityFromSockets"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets) == 0x000110, "Wrong size on KismetAnimationLibrary_K2_CalculateVelocityFromSockets"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, DeltaSeconds) == 0x000000, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, Component) == 0x000008, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, SocketOrBoneName) == 0x000010, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::SocketOrBoneName' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, ReferenceSocketOrBone) == 0x000018, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::ReferenceSocketOrBone' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, SocketSpace) == 0x000020, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::SocketSpace' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, OffsetInBoneSpace) == 0x000028, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::OffsetInBoneSpace' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, History) == 0x000040, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::History' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, NumberOfSamples) == 0x000070, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::NumberOfSamples' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, VelocityMin) == 0x000074, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::VelocityMin' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, VelocityMax) == 0x000078, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::VelocityMax' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, EasingType) == 0x00007C, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::EasingType' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, CustomCurve) == 0x000080, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::CustomCurve' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_CalculateVelocityFromSockets, ReturnValue) == 0x000108, "Member 'KismetAnimationLibrary_K2_CalculateVelocityFromSockets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_DirectionBetweenSockets \ +static_assert(alignof(KismetAnimationLibrary_K2_DirectionBetweenSockets) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_DirectionBetweenSockets"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_DirectionBetweenSockets) == 0x000030, "Wrong size on KismetAnimationLibrary_K2_DirectionBetweenSockets"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DirectionBetweenSockets, Component) == 0x000000, "Member 'KismetAnimationLibrary_K2_DirectionBetweenSockets::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DirectionBetweenSockets, SocketOrBoneNameFrom) == 0x000008, "Member 'KismetAnimationLibrary_K2_DirectionBetweenSockets::SocketOrBoneNameFrom' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DirectionBetweenSockets, SocketOrBoneNameTo) == 0x000010, "Member 'KismetAnimationLibrary_K2_DirectionBetweenSockets::SocketOrBoneNameTo' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DirectionBetweenSockets, ReturnValue) == 0x000018, "Member 'KismetAnimationLibrary_K2_DirectionBetweenSockets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange \ +static_assert(alignof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange) == 0x000038, "Wrong size on KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, Component) == 0x000000, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::Component' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, SocketOrBoneNameA) == 0x000008, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::SocketOrBoneNameA' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, SocketSpaceA) == 0x000010, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::SocketSpaceA' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, SocketOrBoneNameB) == 0x000014, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::SocketOrBoneNameB' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, SocketSpaceB) == 0x00001C, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::SocketSpaceB' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, bRemapRange) == 0x00001D, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::bRemapRange' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, InRangeMin) == 0x000020, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::InRangeMin' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, InRangeMax) == 0x000024, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::InRangeMax' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, OutRangeMin) == 0x000028, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::OutRangeMin' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, OutRangeMax) == 0x00002C, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::OutRangeMax' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange, ReturnValue) == 0x000030, "Member 'KismetAnimationLibrary_K2_DistanceBetweenTwoSocketsAndMapRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_EndProfilingTimer \ +static_assert(alignof(KismetAnimationLibrary_K2_EndProfilingTimer) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_EndProfilingTimer"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_EndProfilingTimer) == 0x000020, "Wrong size on KismetAnimationLibrary_K2_EndProfilingTimer"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_EndProfilingTimer, bLog) == 0x000000, "Member 'KismetAnimationLibrary_K2_EndProfilingTimer::bLog' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_EndProfilingTimer, LogPrefix) == 0x000008, "Member 'KismetAnimationLibrary_K2_EndProfilingTimer::LogPrefix' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_EndProfilingTimer, ReturnValue) == 0x000018, "Member 'KismetAnimationLibrary_K2_EndProfilingTimer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_LookAt \ +static_assert(alignof(KismetAnimationLibrary_K2_LookAt) == 0x000010, "Wrong alignment on KismetAnimationLibrary_K2_LookAt"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_LookAt) == 0x000120, "Wrong size on KismetAnimationLibrary_K2_LookAt"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, CurrentTransform) == 0x000000, "Member 'KismetAnimationLibrary_K2_LookAt::CurrentTransform' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, TargetPosition) == 0x000060, "Member 'KismetAnimationLibrary_K2_LookAt::TargetPosition' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, LookAtVector) == 0x000078, "Member 'KismetAnimationLibrary_K2_LookAt::LookAtVector' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, bUseUpVector) == 0x000090, "Member 'KismetAnimationLibrary_K2_LookAt::bUseUpVector' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, UpVector) == 0x000098, "Member 'KismetAnimationLibrary_K2_LookAt::UpVector' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, ClampConeInDegree) == 0x0000B0, "Member 'KismetAnimationLibrary_K2_LookAt::ClampConeInDegree' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_LookAt, ReturnValue) == 0x0000C0, "Member 'KismetAnimationLibrary_K2_LookAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap \ +static_assert(alignof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap) == 0x000004, "Wrong alignment on KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap) == 0x000010, "Wrong size on KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap, Value) == 0x000000, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap::Value' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap, RangeOutMin) == 0x000004, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap::RangeOutMin' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap, RangeOutMax) == 0x000008, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap::RangeOutMax' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap, ReturnValue) == 0x00000C, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseAndRemap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap \ +static_assert(alignof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap) == 0x000040, "Wrong size on KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, X) == 0x000000, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::X' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, Y) == 0x000004, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::Y' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, Z) == 0x000008, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::Z' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMinX) == 0x00000C, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMinX' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMaxX) == 0x000010, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMaxX' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMinY) == 0x000014, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMinY' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMaxY) == 0x000018, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMaxY' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMinZ) == 0x00001C, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMinZ' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, RangeOutMaxZ) == 0x000020, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::RangeOutMaxZ' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap, ReturnValue) == 0x000028, "Member 'KismetAnimationLibrary_K2_MakePerlinNoiseVectorAndRemap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetAnimationLibrary_K2_TwoBoneIK \ +static_assert(alignof(KismetAnimationLibrary_K2_TwoBoneIK) == 0x000008, "Wrong alignment on KismetAnimationLibrary_K2_TwoBoneIK"); \ +static_assert(sizeof(KismetAnimationLibrary_K2_TwoBoneIK) == 0x0000B8, "Wrong size on KismetAnimationLibrary_K2_TwoBoneIK"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, RootPos) == 0x000000, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::RootPos' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, JointPos) == 0x000018, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::JointPos' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, EndPos) == 0x000030, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::EndPos' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, JointTarget) == 0x000048, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::JointTarget' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, Effector) == 0x000060, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::Effector' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, OutJointPos) == 0x000078, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::OutJointPos' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, OutEndPos) == 0x000090, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::OutEndPos' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, bAllowStretching) == 0x0000A8, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::bAllowStretching' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, StartStretchRatio) == 0x0000AC, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::StartStretchRatio' has a wrong offset!"); \ +static_assert(offsetof(KismetAnimationLibrary_K2_TwoBoneIK, MaxStretchScale) == 0x0000B0, "Member 'KismetAnimationLibrary_K2_TwoBoneIK::MaxStretchScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetAnimationLibrary \ +static_assert(alignof(UKismetAnimationLibrary) == 0x000008, "Wrong alignment on UKismetAnimationLibrary"); \ +static_assert(sizeof(UKismetAnimationLibrary) == 0x000028, "Wrong size on UKismetAnimationLibrary"); \ + +#define DUMPER7_ASSERTS_LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure \ +static_assert(alignof(LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure) == 0x000008, "Wrong alignment on LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure"); \ +static_assert(sizeof(LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure) == 0x000028, "Wrong size on LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure, Node) == 0x000000, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure::Node' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure, LayeredBoneBlend) == 0x000010, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure::LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure, Result) == 0x000020, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBlendPerBonePure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend \ +static_assert(alignof(LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend) == 0x000008, "Wrong alignment on LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend"); \ +static_assert(sizeof(LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend) == 0x000028, "Wrong size on LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend, Node) == 0x000000, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend::Node' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend, Result) == 0x000010, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend::Result' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend, ReturnValue) == 0x000018, "Member 'LayeredBoneBlendLibrary_ConvertToLayeredBoneBlend::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayeredBoneBlendLibrary_GetNumPoses \ +static_assert(alignof(LayeredBoneBlendLibrary_GetNumPoses) == 0x000008, "Wrong alignment on LayeredBoneBlendLibrary_GetNumPoses"); \ +static_assert(sizeof(LayeredBoneBlendLibrary_GetNumPoses) == 0x000018, "Wrong size on LayeredBoneBlendLibrary_GetNumPoses"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_GetNumPoses, LayeredBoneBlend) == 0x000000, "Member 'LayeredBoneBlendLibrary_GetNumPoses::LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_GetNumPoses, ReturnValue) == 0x000010, "Member 'LayeredBoneBlendLibrary_GetNumPoses::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayeredBoneBlendLibrary_SetBlendMask \ +static_assert(alignof(LayeredBoneBlendLibrary_SetBlendMask) == 0x000008, "Wrong alignment on LayeredBoneBlendLibrary_SetBlendMask"); \ +static_assert(sizeof(LayeredBoneBlendLibrary_SetBlendMask) == 0x000040, "Wrong size on LayeredBoneBlendLibrary_SetBlendMask"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_SetBlendMask, UpdateContext) == 0x000000, "Member 'LayeredBoneBlendLibrary_SetBlendMask::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_SetBlendMask, LayeredBoneBlend) == 0x000010, "Member 'LayeredBoneBlendLibrary_SetBlendMask::LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_SetBlendMask, PoseIndex) == 0x000020, "Member 'LayeredBoneBlendLibrary_SetBlendMask::PoseIndex' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_SetBlendMask, BlendMaskName) == 0x000024, "Member 'LayeredBoneBlendLibrary_SetBlendMask::BlendMaskName' has a wrong offset!"); \ +static_assert(offsetof(LayeredBoneBlendLibrary_SetBlendMask, ReturnValue) == 0x000030, "Member 'LayeredBoneBlendLibrary_SetBlendMask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULayeredBoneBlendLibrary \ +static_assert(alignof(ULayeredBoneBlendLibrary) == 0x000008, "Wrong alignment on ULayeredBoneBlendLibrary"); \ +static_assert(sizeof(ULayeredBoneBlendLibrary) == 0x000028, "Wrong size on ULayeredBoneBlendLibrary"); \ + +#define DUMPER7_ASSERTS_LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph \ +static_assert(alignof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph) == 0x000008, "Wrong alignment on LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph"); \ +static_assert(sizeof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph) == 0x000028, "Wrong size on LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph, Node) == 0x000000, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph::Node' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph, Result) == 0x000010, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph::Result' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph, ReturnValue) == 0x000018, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraph::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure \ +static_assert(alignof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure) == 0x000008, "Wrong alignment on LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure"); \ +static_assert(sizeof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure) == 0x000028, "Wrong size on LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure, Node) == 0x000000, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure::Node' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure, LinkedAnimGraph) == 0x000010, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure::LinkedAnimGraph' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure, Result) == 0x000020, "Member 'LinkedAnimGraphLibrary_ConvertToLinkedAnimGraphPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LinkedAnimGraphLibrary_GetLinkedAnimInstance \ +static_assert(alignof(LinkedAnimGraphLibrary_GetLinkedAnimInstance) == 0x000008, "Wrong alignment on LinkedAnimGraphLibrary_GetLinkedAnimInstance"); \ +static_assert(sizeof(LinkedAnimGraphLibrary_GetLinkedAnimInstance) == 0x000018, "Wrong size on LinkedAnimGraphLibrary_GetLinkedAnimInstance"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_GetLinkedAnimInstance, Node) == 0x000000, "Member 'LinkedAnimGraphLibrary_GetLinkedAnimInstance::Node' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_GetLinkedAnimInstance, ReturnValue) == 0x000010, "Member 'LinkedAnimGraphLibrary_GetLinkedAnimInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LinkedAnimGraphLibrary_HasLinkedAnimInstance \ +static_assert(alignof(LinkedAnimGraphLibrary_HasLinkedAnimInstance) == 0x000008, "Wrong alignment on LinkedAnimGraphLibrary_HasLinkedAnimInstance"); \ +static_assert(sizeof(LinkedAnimGraphLibrary_HasLinkedAnimInstance) == 0x000018, "Wrong size on LinkedAnimGraphLibrary_HasLinkedAnimInstance"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_HasLinkedAnimInstance, Node) == 0x000000, "Member 'LinkedAnimGraphLibrary_HasLinkedAnimInstance::Node' has a wrong offset!"); \ +static_assert(offsetof(LinkedAnimGraphLibrary_HasLinkedAnimInstance, ReturnValue) == 0x000010, "Member 'LinkedAnimGraphLibrary_HasLinkedAnimInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULinkedAnimGraphLibrary \ +static_assert(alignof(ULinkedAnimGraphLibrary) == 0x000008, "Wrong alignment on ULinkedAnimGraphLibrary"); \ +static_assert(sizeof(ULinkedAnimGraphLibrary) == 0x000028, "Wrong size on ULinkedAnimGraphLibrary"); \ + +#define DUMPER7_ASSERTS_PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage \ +static_assert(alignof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage) == 0x000008, "Wrong alignment on PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage"); \ +static_assert(sizeof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage) == 0x000028, "Wrong size on PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, InSkeletalMeshComponent) == 0x000000, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::InSkeletalMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, MontageToPlay) == 0x000008, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, PlayRate) == 0x000010, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, StartingPosition) == 0x000014, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::StartingPosition' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, StartingSection) == 0x000018, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::StartingSection' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage, ReturnValue) == 0x000020, "Member 'PlayMontageCallbackProxy_CreateProxyObjectForPlayMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayMontageCallbackProxy_OnMontageBlendingOut \ +static_assert(alignof(PlayMontageCallbackProxy_OnMontageBlendingOut) == 0x000008, "Wrong alignment on PlayMontageCallbackProxy_OnMontageBlendingOut"); \ +static_assert(sizeof(PlayMontageCallbackProxy_OnMontageBlendingOut) == 0x000010, "Wrong size on PlayMontageCallbackProxy_OnMontageBlendingOut"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnMontageBlendingOut, Montage) == 0x000000, "Member 'PlayMontageCallbackProxy_OnMontageBlendingOut::Montage' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnMontageBlendingOut, bInterrupted) == 0x000008, "Member 'PlayMontageCallbackProxy_OnMontageBlendingOut::bInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayMontageCallbackProxy_OnMontageEnded \ +static_assert(alignof(PlayMontageCallbackProxy_OnMontageEnded) == 0x000008, "Wrong alignment on PlayMontageCallbackProxy_OnMontageEnded"); \ +static_assert(sizeof(PlayMontageCallbackProxy_OnMontageEnded) == 0x000010, "Wrong size on PlayMontageCallbackProxy_OnMontageEnded"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnMontageEnded, Montage) == 0x000000, "Member 'PlayMontageCallbackProxy_OnMontageEnded::Montage' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnMontageEnded, bInterrupted) == 0x000008, "Member 'PlayMontageCallbackProxy_OnMontageEnded::bInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayMontageCallbackProxy_OnNotifyBeginReceived \ +static_assert(alignof(PlayMontageCallbackProxy_OnNotifyBeginReceived) == 0x000008, "Wrong alignment on PlayMontageCallbackProxy_OnNotifyBeginReceived"); \ +static_assert(sizeof(PlayMontageCallbackProxy_OnNotifyBeginReceived) == 0x000028, "Wrong size on PlayMontageCallbackProxy_OnNotifyBeginReceived"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnNotifyBeginReceived, NotifyName) == 0x000000, "Member 'PlayMontageCallbackProxy_OnNotifyBeginReceived::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnNotifyBeginReceived, BranchingPointNotifyPayload) == 0x000008, "Member 'PlayMontageCallbackProxy_OnNotifyBeginReceived::BranchingPointNotifyPayload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayMontageCallbackProxy_OnNotifyEndReceived \ +static_assert(alignof(PlayMontageCallbackProxy_OnNotifyEndReceived) == 0x000008, "Wrong alignment on PlayMontageCallbackProxy_OnNotifyEndReceived"); \ +static_assert(sizeof(PlayMontageCallbackProxy_OnNotifyEndReceived) == 0x000028, "Wrong size on PlayMontageCallbackProxy_OnNotifyEndReceived"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnNotifyEndReceived, NotifyName) == 0x000000, "Member 'PlayMontageCallbackProxy_OnNotifyEndReceived::NotifyName' has a wrong offset!"); \ +static_assert(offsetof(PlayMontageCallbackProxy_OnNotifyEndReceived, BranchingPointNotifyPayload) == 0x000008, "Member 'PlayMontageCallbackProxy_OnNotifyEndReceived::BranchingPointNotifyPayload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayMontageCallbackProxy \ +static_assert(alignof(UPlayMontageCallbackProxy) == 0x000008, "Wrong alignment on UPlayMontageCallbackProxy"); \ +static_assert(sizeof(UPlayMontageCallbackProxy) == 0x0000A8, "Wrong size on UPlayMontageCallbackProxy"); \ +static_assert(offsetof(UPlayMontageCallbackProxy, OnCompleted) == 0x000028, "Member 'UPlayMontageCallbackProxy::OnCompleted' has a wrong offset!"); \ +static_assert(offsetof(UPlayMontageCallbackProxy, OnBlendOut) == 0x000038, "Member 'UPlayMontageCallbackProxy::OnBlendOut' has a wrong offset!"); \ +static_assert(offsetof(UPlayMontageCallbackProxy, OnInterrupted) == 0x000048, "Member 'UPlayMontageCallbackProxy::OnInterrupted' has a wrong offset!"); \ +static_assert(offsetof(UPlayMontageCallbackProxy, OnNotifyBegin) == 0x000058, "Member 'UPlayMontageCallbackProxy::OnNotifyBegin' has a wrong offset!"); \ +static_assert(offsetof(UPlayMontageCallbackProxy, OnNotifyEnd) == 0x000068, "Member 'UPlayMontageCallbackProxy::OnNotifyEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_AdvanceTime \ +static_assert(alignof(SequenceEvaluatorLibrary_AdvanceTime) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_AdvanceTime"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_AdvanceTime) == 0x000038, "Wrong size on SequenceEvaluatorLibrary_AdvanceTime"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_AdvanceTime, UpdateContext) == 0x000000, "Member 'SequenceEvaluatorLibrary_AdvanceTime::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_AdvanceTime, SequenceEvaluator) == 0x000010, "Member 'SequenceEvaluatorLibrary_AdvanceTime::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_AdvanceTime, PlayRate) == 0x000020, "Member 'SequenceEvaluatorLibrary_AdvanceTime::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_AdvanceTime, ReturnValue) == 0x000028, "Member 'SequenceEvaluatorLibrary_AdvanceTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_ConvertToSequenceEvaluator \ +static_assert(alignof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluator) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_ConvertToSequenceEvaluator"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluator) == 0x000028, "Wrong size on SequenceEvaluatorLibrary_ConvertToSequenceEvaluator"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluator, Node) == 0x000000, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluator::Node' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluator, Result) == 0x000010, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluator::Result' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluator, ReturnValue) == 0x000018, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure \ +static_assert(alignof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure) == 0x000028, "Wrong size on SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure, Node) == 0x000000, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure::Node' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure, SequenceEvaluator) == 0x000010, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure, Result) == 0x000020, "Member 'SequenceEvaluatorLibrary_ConvertToSequenceEvaluatorPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_GetAccumulatedTime \ +static_assert(alignof(SequenceEvaluatorLibrary_GetAccumulatedTime) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_GetAccumulatedTime"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_GetAccumulatedTime) == 0x000018, "Wrong size on SequenceEvaluatorLibrary_GetAccumulatedTime"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_GetAccumulatedTime, SequenceEvaluator) == 0x000000, "Member 'SequenceEvaluatorLibrary_GetAccumulatedTime::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_GetAccumulatedTime, ReturnValue) == 0x000010, "Member 'SequenceEvaluatorLibrary_GetAccumulatedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_GetSequence \ +static_assert(alignof(SequenceEvaluatorLibrary_GetSequence) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_GetSequence"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_GetSequence) == 0x000018, "Wrong size on SequenceEvaluatorLibrary_GetSequence"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_GetSequence, SequenceEvaluator) == 0x000000, "Member 'SequenceEvaluatorLibrary_GetSequence::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_GetSequence, ReturnValue) == 0x000010, "Member 'SequenceEvaluatorLibrary_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_SetExplicitTime \ +static_assert(alignof(SequenceEvaluatorLibrary_SetExplicitTime) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_SetExplicitTime"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_SetExplicitTime) == 0x000028, "Wrong size on SequenceEvaluatorLibrary_SetExplicitTime"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetExplicitTime, SequenceEvaluator) == 0x000000, "Member 'SequenceEvaluatorLibrary_SetExplicitTime::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetExplicitTime, Time) == 0x000010, "Member 'SequenceEvaluatorLibrary_SetExplicitTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetExplicitTime, ReturnValue) == 0x000018, "Member 'SequenceEvaluatorLibrary_SetExplicitTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_SetSequence \ +static_assert(alignof(SequenceEvaluatorLibrary_SetSequence) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_SetSequence"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_SetSequence) == 0x000028, "Wrong size on SequenceEvaluatorLibrary_SetSequence"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequence, SequenceEvaluator) == 0x000000, "Member 'SequenceEvaluatorLibrary_SetSequence::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequence, Sequence) == 0x000010, "Member 'SequenceEvaluatorLibrary_SetSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequence, ReturnValue) == 0x000018, "Member 'SequenceEvaluatorLibrary_SetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceEvaluatorLibrary_SetSequenceWithInertialBlending \ +static_assert(alignof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending) == 0x000008, "Wrong alignment on SequenceEvaluatorLibrary_SetSequenceWithInertialBlending"); \ +static_assert(sizeof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending) == 0x000040, "Wrong size on SequenceEvaluatorLibrary_SetSequenceWithInertialBlending"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending, UpdateContext) == 0x000000, "Member 'SequenceEvaluatorLibrary_SetSequenceWithInertialBlending::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending, SequenceEvaluator) == 0x000010, "Member 'SequenceEvaluatorLibrary_SetSequenceWithInertialBlending::SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending, Sequence) == 0x000020, "Member 'SequenceEvaluatorLibrary_SetSequenceWithInertialBlending::Sequence' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending, BlendTime) == 0x000028, "Member 'SequenceEvaluatorLibrary_SetSequenceWithInertialBlending::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(SequenceEvaluatorLibrary_SetSequenceWithInertialBlending, ReturnValue) == 0x000030, "Member 'SequenceEvaluatorLibrary_SetSequenceWithInertialBlending::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequenceEvaluatorLibrary \ +static_assert(alignof(USequenceEvaluatorLibrary) == 0x000008, "Wrong alignment on USequenceEvaluatorLibrary"); \ +static_assert(sizeof(USequenceEvaluatorLibrary) == 0x000028, "Wrong size on USequenceEvaluatorLibrary"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_ComputePlayRateFromDuration \ +static_assert(alignof(SequencePlayerLibrary_ComputePlayRateFromDuration) == 0x000008, "Wrong alignment on SequencePlayerLibrary_ComputePlayRateFromDuration"); \ +static_assert(sizeof(SequencePlayerLibrary_ComputePlayRateFromDuration) == 0x000018, "Wrong size on SequencePlayerLibrary_ComputePlayRateFromDuration"); \ +static_assert(offsetof(SequencePlayerLibrary_ComputePlayRateFromDuration, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_ComputePlayRateFromDuration::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ComputePlayRateFromDuration, Duration) == 0x000010, "Member 'SequencePlayerLibrary_ComputePlayRateFromDuration::Duration' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ComputePlayRateFromDuration, ReturnValue) == 0x000014, "Member 'SequencePlayerLibrary_ComputePlayRateFromDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_ConvertToSequencePlayer \ +static_assert(alignof(SequencePlayerLibrary_ConvertToSequencePlayer) == 0x000008, "Wrong alignment on SequencePlayerLibrary_ConvertToSequencePlayer"); \ +static_assert(sizeof(SequencePlayerLibrary_ConvertToSequencePlayer) == 0x000028, "Wrong size on SequencePlayerLibrary_ConvertToSequencePlayer"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayer, Node) == 0x000000, "Member 'SequencePlayerLibrary_ConvertToSequencePlayer::Node' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayer, Result) == 0x000010, "Member 'SequencePlayerLibrary_ConvertToSequencePlayer::Result' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayer, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_ConvertToSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_ConvertToSequencePlayerPure \ +static_assert(alignof(SequencePlayerLibrary_ConvertToSequencePlayerPure) == 0x000008, "Wrong alignment on SequencePlayerLibrary_ConvertToSequencePlayerPure"); \ +static_assert(sizeof(SequencePlayerLibrary_ConvertToSequencePlayerPure) == 0x000028, "Wrong size on SequencePlayerLibrary_ConvertToSequencePlayerPure"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayerPure, Node) == 0x000000, "Member 'SequencePlayerLibrary_ConvertToSequencePlayerPure::Node' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayerPure, SequencePlayer) == 0x000010, "Member 'SequencePlayerLibrary_ConvertToSequencePlayerPure::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_ConvertToSequencePlayerPure, Result) == 0x000020, "Member 'SequencePlayerLibrary_ConvertToSequencePlayerPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetAccumulatedTime \ +static_assert(alignof(SequencePlayerLibrary_GetAccumulatedTime) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetAccumulatedTime"); \ +static_assert(sizeof(SequencePlayerLibrary_GetAccumulatedTime) == 0x000018, "Wrong size on SequencePlayerLibrary_GetAccumulatedTime"); \ +static_assert(offsetof(SequencePlayerLibrary_GetAccumulatedTime, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetAccumulatedTime::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetAccumulatedTime, ReturnValue) == 0x000010, "Member 'SequencePlayerLibrary_GetAccumulatedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetLoopAnimation \ +static_assert(alignof(SequencePlayerLibrary_GetLoopAnimation) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetLoopAnimation"); \ +static_assert(sizeof(SequencePlayerLibrary_GetLoopAnimation) == 0x000018, "Wrong size on SequencePlayerLibrary_GetLoopAnimation"); \ +static_assert(offsetof(SequencePlayerLibrary_GetLoopAnimation, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetLoopAnimation::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetLoopAnimation, ReturnValue) == 0x000010, "Member 'SequencePlayerLibrary_GetLoopAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetPlayRate \ +static_assert(alignof(SequencePlayerLibrary_GetPlayRate) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetPlayRate"); \ +static_assert(sizeof(SequencePlayerLibrary_GetPlayRate) == 0x000018, "Wrong size on SequencePlayerLibrary_GetPlayRate"); \ +static_assert(offsetof(SequencePlayerLibrary_GetPlayRate, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetPlayRate::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetPlayRate, ReturnValue) == 0x000010, "Member 'SequencePlayerLibrary_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetSequence \ +static_assert(alignof(SequencePlayerLibrary_GetSequence) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetSequence"); \ +static_assert(sizeof(SequencePlayerLibrary_GetSequence) == 0x000028, "Wrong size on SequencePlayerLibrary_GetSequence"); \ +static_assert(offsetof(SequencePlayerLibrary_GetSequence, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetSequence::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetSequence, SequenceBase) == 0x000010, "Member 'SequencePlayerLibrary_GetSequence::SequenceBase' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetSequence, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetSequencePure \ +static_assert(alignof(SequencePlayerLibrary_GetSequencePure) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetSequencePure"); \ +static_assert(sizeof(SequencePlayerLibrary_GetSequencePure) == 0x000018, "Wrong size on SequencePlayerLibrary_GetSequencePure"); \ +static_assert(offsetof(SequencePlayerLibrary_GetSequencePure, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetSequencePure::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetSequencePure, ReturnValue) == 0x000010, "Member 'SequencePlayerLibrary_GetSequencePure::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_GetStartPosition \ +static_assert(alignof(SequencePlayerLibrary_GetStartPosition) == 0x000008, "Wrong alignment on SequencePlayerLibrary_GetStartPosition"); \ +static_assert(sizeof(SequencePlayerLibrary_GetStartPosition) == 0x000018, "Wrong size on SequencePlayerLibrary_GetStartPosition"); \ +static_assert(offsetof(SequencePlayerLibrary_GetStartPosition, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_GetStartPosition::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_GetStartPosition, ReturnValue) == 0x000010, "Member 'SequencePlayerLibrary_GetStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_SetAccumulatedTime \ +static_assert(alignof(SequencePlayerLibrary_SetAccumulatedTime) == 0x000008, "Wrong alignment on SequencePlayerLibrary_SetAccumulatedTime"); \ +static_assert(sizeof(SequencePlayerLibrary_SetAccumulatedTime) == 0x000028, "Wrong size on SequencePlayerLibrary_SetAccumulatedTime"); \ +static_assert(offsetof(SequencePlayerLibrary_SetAccumulatedTime, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_SetAccumulatedTime::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetAccumulatedTime, Time) == 0x000010, "Member 'SequencePlayerLibrary_SetAccumulatedTime::Time' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetAccumulatedTime, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_SetAccumulatedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_SetPlayRate \ +static_assert(alignof(SequencePlayerLibrary_SetPlayRate) == 0x000008, "Wrong alignment on SequencePlayerLibrary_SetPlayRate"); \ +static_assert(sizeof(SequencePlayerLibrary_SetPlayRate) == 0x000028, "Wrong size on SequencePlayerLibrary_SetPlayRate"); \ +static_assert(offsetof(SequencePlayerLibrary_SetPlayRate, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_SetPlayRate::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetPlayRate, PlayRate) == 0x000010, "Member 'SequencePlayerLibrary_SetPlayRate::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetPlayRate, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_SetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_SetSequence \ +static_assert(alignof(SequencePlayerLibrary_SetSequence) == 0x000008, "Wrong alignment on SequencePlayerLibrary_SetSequence"); \ +static_assert(sizeof(SequencePlayerLibrary_SetSequence) == 0x000028, "Wrong size on SequencePlayerLibrary_SetSequence"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequence, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_SetSequence::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequence, Sequence) == 0x000010, "Member 'SequencePlayerLibrary_SetSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequence, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_SetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_SetSequenceWithInertialBlending \ +static_assert(alignof(SequencePlayerLibrary_SetSequenceWithInertialBlending) == 0x000008, "Wrong alignment on SequencePlayerLibrary_SetSequenceWithInertialBlending"); \ +static_assert(sizeof(SequencePlayerLibrary_SetSequenceWithInertialBlending) == 0x000040, "Wrong size on SequencePlayerLibrary_SetSequenceWithInertialBlending"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequenceWithInertialBlending, UpdateContext) == 0x000000, "Member 'SequencePlayerLibrary_SetSequenceWithInertialBlending::UpdateContext' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequenceWithInertialBlending, SequencePlayer) == 0x000010, "Member 'SequencePlayerLibrary_SetSequenceWithInertialBlending::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequenceWithInertialBlending, Sequence) == 0x000020, "Member 'SequencePlayerLibrary_SetSequenceWithInertialBlending::Sequence' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequenceWithInertialBlending, BlendTime) == 0x000028, "Member 'SequencePlayerLibrary_SetSequenceWithInertialBlending::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetSequenceWithInertialBlending, ReturnValue) == 0x000030, "Member 'SequencePlayerLibrary_SetSequenceWithInertialBlending::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencePlayerLibrary_SetStartPosition \ +static_assert(alignof(SequencePlayerLibrary_SetStartPosition) == 0x000008, "Wrong alignment on SequencePlayerLibrary_SetStartPosition"); \ +static_assert(sizeof(SequencePlayerLibrary_SetStartPosition) == 0x000028, "Wrong size on SequencePlayerLibrary_SetStartPosition"); \ +static_assert(offsetof(SequencePlayerLibrary_SetStartPosition, SequencePlayer) == 0x000000, "Member 'SequencePlayerLibrary_SetStartPosition::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetStartPosition, StartPosition) == 0x000010, "Member 'SequencePlayerLibrary_SetStartPosition::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(SequencePlayerLibrary_SetStartPosition, ReturnValue) == 0x000018, "Member 'SequencePlayerLibrary_SetStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequencePlayerLibrary \ +static_assert(alignof(USequencePlayerLibrary) == 0x000008, "Wrong alignment on USequencePlayerLibrary"); \ +static_assert(sizeof(USequencePlayerLibrary) == 0x000028, "Wrong size on USequencePlayerLibrary"); \ + +#define DUMPER7_ASSERTS_ISequencerAnimationSupport \ +static_assert(alignof(ISequencerAnimationSupport) == 0x000001, "Wrong alignment on ISequencerAnimationSupport"); \ +static_assert(sizeof(ISequencerAnimationSupport) == 0x000001, "Wrong size on ISequencerAnimationSupport"); \ + +#define DUMPER7_ASSERTS_SkeletalControlLibrary_ConvertToSkeletalControl \ +static_assert(alignof(SkeletalControlLibrary_ConvertToSkeletalControl) == 0x000008, "Wrong alignment on SkeletalControlLibrary_ConvertToSkeletalControl"); \ +static_assert(sizeof(SkeletalControlLibrary_ConvertToSkeletalControl) == 0x000028, "Wrong size on SkeletalControlLibrary_ConvertToSkeletalControl"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControl, Node) == 0x000000, "Member 'SkeletalControlLibrary_ConvertToSkeletalControl::Node' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControl, Result) == 0x000010, "Member 'SkeletalControlLibrary_ConvertToSkeletalControl::Result' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControl, ReturnValue) == 0x000018, "Member 'SkeletalControlLibrary_ConvertToSkeletalControl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalControlLibrary_ConvertToSkeletalControlPure \ +static_assert(alignof(SkeletalControlLibrary_ConvertToSkeletalControlPure) == 0x000008, "Wrong alignment on SkeletalControlLibrary_ConvertToSkeletalControlPure"); \ +static_assert(sizeof(SkeletalControlLibrary_ConvertToSkeletalControlPure) == 0x000028, "Wrong size on SkeletalControlLibrary_ConvertToSkeletalControlPure"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControlPure, Node) == 0x000000, "Member 'SkeletalControlLibrary_ConvertToSkeletalControlPure::Node' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControlPure, SkeletalControl) == 0x000010, "Member 'SkeletalControlLibrary_ConvertToSkeletalControlPure::SkeletalControl' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_ConvertToSkeletalControlPure, Result) == 0x000020, "Member 'SkeletalControlLibrary_ConvertToSkeletalControlPure::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalControlLibrary_GetAlpha \ +static_assert(alignof(SkeletalControlLibrary_GetAlpha) == 0x000008, "Wrong alignment on SkeletalControlLibrary_GetAlpha"); \ +static_assert(sizeof(SkeletalControlLibrary_GetAlpha) == 0x000018, "Wrong size on SkeletalControlLibrary_GetAlpha"); \ +static_assert(offsetof(SkeletalControlLibrary_GetAlpha, SkeletalControl) == 0x000000, "Member 'SkeletalControlLibrary_GetAlpha::SkeletalControl' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_GetAlpha, ReturnValue) == 0x000010, "Member 'SkeletalControlLibrary_GetAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SkeletalControlLibrary_SetAlpha \ +static_assert(alignof(SkeletalControlLibrary_SetAlpha) == 0x000008, "Wrong alignment on SkeletalControlLibrary_SetAlpha"); \ +static_assert(sizeof(SkeletalControlLibrary_SetAlpha) == 0x000028, "Wrong size on SkeletalControlLibrary_SetAlpha"); \ +static_assert(offsetof(SkeletalControlLibrary_SetAlpha, SkeletalControl) == 0x000000, "Member 'SkeletalControlLibrary_SetAlpha::SkeletalControl' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_SetAlpha, alpha) == 0x000010, "Member 'SkeletalControlLibrary_SetAlpha::alpha' has a wrong offset!"); \ +static_assert(offsetof(SkeletalControlLibrary_SetAlpha, ReturnValue) == 0x000018, "Member 'SkeletalControlLibrary_SetAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USkeletalControlLibrary \ +static_assert(alignof(USkeletalControlLibrary) == 0x000008, "Wrong alignment on USkeletalControlLibrary"); \ +static_assert(sizeof(USkeletalControlLibrary) == 0x000028, "Wrong size on USkeletalControlLibrary"); \ + +#define DUMPER7_ASSERTS_TCR_MultiactionWidget_C_SetOverrideIconForIndex \ +static_assert(alignof(TCR_MultiactionWidget_C_SetOverrideIconForIndex) == 0x000010, "Wrong alignment on TCR_MultiactionWidget_C_SetOverrideIconForIndex"); \ +static_assert(sizeof(TCR_MultiactionWidget_C_SetOverrideIconForIndex) == 0x0000E0, "Wrong size on TCR_MultiactionWidget_C_SetOverrideIconForIndex"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_SetOverrideIconForIndex, Brush) == 0x000000, "Member 'TCR_MultiactionWidget_C_SetOverrideIconForIndex::Brush' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_SetOverrideIconForIndex, Index_0) == 0x0000D0, "Member 'TCR_MultiactionWidget_C_SetOverrideIconForIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget \ +static_assert(alignof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget) == 0x000010, "Wrong alignment on TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget"); \ +static_assert(sizeof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget) == 0x000140, "Wrong size on TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, EntryPoint) == 0x000000, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, Temp_bool_True_if_break_was_hit_Variable) == 0x000004, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Subtract_IntInt_ReturnValue) == 0x000008, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Not_PreBool_ReturnValue) == 0x00000C, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, Temp_int_Array_Index_Variable) == 0x000010, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000018, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Add_IntInt_ReturnValue) == 0x00001C, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Create_ReturnValue) == 0x000020, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Array_Get_Item) == 0x000028, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_AddChildToHorizontalBox_ReturnValue) == 0x000040, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_AddChildToHorizontalBox_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, K2Node_Event_Brush) == 0x000050, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::K2Node_Event_Brush' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, K2Node_Event_Index) == 0x000120, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::K2Node_Event_Index' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_BooleanAND_ReturnValue) == 0x000124, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, CallFunc_GetChildAt_ReturnValue) == 0x000128, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, K2Node_DynamicCast_AsTCR_Rich_Wrestler_Action_Widget) == 0x000130, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::K2Node_DynamicCast_AsTCR_Rich_Wrestler_Action_Widget' has a wrong offset!"); \ +static_assert(offsetof(TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'TCR_MultiactionWidget_C_ExecuteUbergraph_TCR_MultiactionWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_MultiactionWidget_C \ +static_assert(alignof(UTCR_MultiactionWidget_C) == 0x000008, "Wrong alignment on UTCR_MultiactionWidget_C"); \ +static_assert(sizeof(UTCR_MultiactionWidget_C) == 0x000310, "Wrong size on UTCR_MultiactionWidget_C"); \ +static_assert(offsetof(UTCR_MultiactionWidget_C, UberGraphFrame) == 0x0002F8, "Member 'UTCR_MultiactionWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MultiactionWidget_C, HorizontalBox_30) == 0x000300, "Member 'UTCR_MultiactionWidget_C::HorizontalBox_30' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MultiactionWidget_C, IconLimit) == 0x000308, "Member 'UTCR_MultiactionWidget_C::IconLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneConstraintChannel \ +static_assert(alignof(FMovieSceneConstraintChannel) == 0x000008, "Wrong alignment on FMovieSceneConstraintChannel"); \ +static_assert(sizeof(FMovieSceneConstraintChannel) == 0x000100, "Wrong size on FMovieSceneConstraintChannel"); \ + +#define DUMPER7_ASSERTS_FConstraintAndActiveChannel \ +static_assert(alignof(FConstraintAndActiveChannel) == 0x000008, "Wrong alignment on FConstraintAndActiveChannel"); \ +static_assert(sizeof(FConstraintAndActiveChannel) == 0x000130, "Wrong size on FConstraintAndActiveChannel"); \ +static_assert(offsetof(FConstraintAndActiveChannel, Constraint) == 0x000000, "Member 'FConstraintAndActiveChannel::Constraint' has a wrong offset!"); \ +static_assert(offsetof(FConstraintAndActiveChannel, ActiveChannel) == 0x000028, "Member 'FConstraintAndActiveChannel::ActiveChannel' has a wrong offset!"); \ +static_assert(offsetof(FConstraintAndActiveChannel, ConstraintCopyToSpawn) == 0x000128, "Member 'FConstraintAndActiveChannel::ConstraintCopyToSpawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintTickFunction \ +static_assert(alignof(FConstraintTickFunction) == 0x000008, "Wrong alignment on FConstraintTickFunction"); \ +static_assert(sizeof(FConstraintTickFunction) == 0x000040, "Wrong size on FConstraintTickFunction"); \ + +#define DUMPER7_ASSERTS_AConstraintsActor \ +static_assert(alignof(AConstraintsActor) == 0x000008, "Wrong alignment on AConstraintsActor"); \ +static_assert(sizeof(AConstraintsActor) == 0x0002A0, "Wrong size on AConstraintsActor"); \ +static_assert(offsetof(AConstraintsActor, ConstraintsManager) == 0x000298, "Member 'AConstraintsActor::ConstraintsManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableConstraint \ +static_assert(alignof(UTickableConstraint) == 0x000008, "Wrong alignment on UTickableConstraint"); \ +static_assert(sizeof(UTickableConstraint) == 0x000070, "Wrong size on UTickableConstraint"); \ +static_assert(offsetof(UTickableConstraint, ConstraintTick) == 0x000028, "Member 'UTickableConstraint::ConstraintTick' has a wrong offset!"); \ +static_assert(offsetof(UTickableConstraint, Active) == 0x000068, "Member 'UTickableConstraint::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConstraintsManager \ +static_assert(alignof(UConstraintsManager) == 0x000008, "Wrong alignment on UConstraintsManager"); \ +static_assert(sizeof(UConstraintsManager) == 0x000048, "Wrong size on UConstraintsManager"); \ +static_assert(offsetof(UConstraintsManager, OnConstraintAdded_BP) == 0x000028, "Member 'UConstraintsManager::OnConstraintAdded_BP' has a wrong offset!"); \ +static_assert(offsetof(UConstraintsManager, OnConstraintRemoved_BP) == 0x000029, "Member 'UConstraintsManager::OnConstraintRemoved_BP' has a wrong offset!"); \ +static_assert(offsetof(UConstraintsManager, Constraints) == 0x000038, "Member 'UConstraintsManager::Constraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_AddConstraint \ +static_assert(alignof(ConstraintsScriptingLibrary_AddConstraint) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_AddConstraint"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_AddConstraint) == 0x000028, "Wrong size on ConstraintsScriptingLibrary_AddConstraint"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_AddConstraint::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, InParentHandle) == 0x000008, "Member 'ConstraintsScriptingLibrary_AddConstraint::InParentHandle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, InChildHandle) == 0x000010, "Member 'ConstraintsScriptingLibrary_AddConstraint::InChildHandle' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, InConstraint) == 0x000018, "Member 'ConstraintsScriptingLibrary_AddConstraint::InConstraint' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, bMaintainOffset) == 0x000020, "Member 'ConstraintsScriptingLibrary_AddConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_AddConstraint, ReturnValue) == 0x000021, "Member 'ConstraintsScriptingLibrary_AddConstraint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_CreateFromType \ +static_assert(alignof(ConstraintsScriptingLibrary_CreateFromType) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_CreateFromType"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_CreateFromType) == 0x000018, "Wrong size on ConstraintsScriptingLibrary_CreateFromType"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateFromType, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_CreateFromType::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateFromType, InType) == 0x000008, "Member 'ConstraintsScriptingLibrary_CreateFromType::InType' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateFromType, ReturnValue) == 0x000010, "Member 'ConstraintsScriptingLibrary_CreateFromType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_CreateTransformableComponentHandle \ +static_assert(alignof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_CreateTransformableComponentHandle"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle) == 0x000020, "Wrong size on ConstraintsScriptingLibrary_CreateTransformableComponentHandle"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_CreateTransformableComponentHandle::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle, InSceneComponent) == 0x000008, "Member 'ConstraintsScriptingLibrary_CreateTransformableComponentHandle::InSceneComponent' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle, InSocketName) == 0x000010, "Member 'ConstraintsScriptingLibrary_CreateTransformableComponentHandle::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableComponentHandle, ReturnValue) == 0x000018, "Member 'ConstraintsScriptingLibrary_CreateTransformableComponentHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_CreateTransformableHandle \ +static_assert(alignof(ConstraintsScriptingLibrary_CreateTransformableHandle) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_CreateTransformableHandle"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_CreateTransformableHandle) == 0x000020, "Wrong size on ConstraintsScriptingLibrary_CreateTransformableHandle"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableHandle, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_CreateTransformableHandle::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableHandle, InObject) == 0x000008, "Member 'ConstraintsScriptingLibrary_CreateTransformableHandle::InObject' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableHandle, InAttachmentName) == 0x000010, "Member 'ConstraintsScriptingLibrary_CreateTransformableHandle::InAttachmentName' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_CreateTransformableHandle, ReturnValue) == 0x000018, "Member 'ConstraintsScriptingLibrary_CreateTransformableHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_GetConstraintsArray \ +static_assert(alignof(ConstraintsScriptingLibrary_GetConstraintsArray) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_GetConstraintsArray"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_GetConstraintsArray) == 0x000018, "Wrong size on ConstraintsScriptingLibrary_GetConstraintsArray"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_GetConstraintsArray, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_GetConstraintsArray::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_GetConstraintsArray, ReturnValue) == 0x000008, "Member 'ConstraintsScriptingLibrary_GetConstraintsArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_GetManager \ +static_assert(alignof(ConstraintsScriptingLibrary_GetManager) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_GetManager"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_GetManager) == 0x000010, "Wrong size on ConstraintsScriptingLibrary_GetManager"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_GetManager, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_GetManager::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_GetManager, ReturnValue) == 0x000008, "Member 'ConstraintsScriptingLibrary_GetManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_RemoveConstraint \ +static_assert(alignof(ConstraintsScriptingLibrary_RemoveConstraint) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_RemoveConstraint"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_RemoveConstraint) == 0x000010, "Wrong size on ConstraintsScriptingLibrary_RemoveConstraint"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveConstraint, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_RemoveConstraint::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveConstraint, InIndex) == 0x000008, "Member 'ConstraintsScriptingLibrary_RemoveConstraint::InIndex' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveConstraint, ReturnValue) == 0x00000C, "Member 'ConstraintsScriptingLibrary_RemoveConstraint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstraintsScriptingLibrary_RemoveThisConstraint \ +static_assert(alignof(ConstraintsScriptingLibrary_RemoveThisConstraint) == 0x000008, "Wrong alignment on ConstraintsScriptingLibrary_RemoveThisConstraint"); \ +static_assert(sizeof(ConstraintsScriptingLibrary_RemoveThisConstraint) == 0x000018, "Wrong size on ConstraintsScriptingLibrary_RemoveThisConstraint"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveThisConstraint, InWorld) == 0x000000, "Member 'ConstraintsScriptingLibrary_RemoveThisConstraint::InWorld' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveThisConstraint, InTickableConstraint) == 0x000008, "Member 'ConstraintsScriptingLibrary_RemoveThisConstraint::InTickableConstraint' has a wrong offset!"); \ +static_assert(offsetof(ConstraintsScriptingLibrary_RemoveThisConstraint, ReturnValue) == 0x000010, "Member 'ConstraintsScriptingLibrary_RemoveThisConstraint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConstraintsScriptingLibrary \ +static_assert(alignof(UConstraintsScriptingLibrary) == 0x000008, "Wrong alignment on UConstraintsScriptingLibrary"); \ +static_assert(sizeof(UConstraintsScriptingLibrary) == 0x000028, "Wrong size on UConstraintsScriptingLibrary"); \ + +#define DUMPER7_ASSERTS_UTransformableHandle \ +static_assert(alignof(UTransformableHandle) == 0x000008, "Wrong alignment on UTransformableHandle"); \ +static_assert(sizeof(UTransformableHandle) == 0x000058, "Wrong size on UTransformableHandle"); \ +static_assert(offsetof(UTransformableHandle, ConstraintBindingID) == 0x000028, "Member 'UTransformableHandle::ConstraintBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTransformableComponentHandle \ +static_assert(alignof(UTransformableComponentHandle) == 0x000008, "Wrong alignment on UTransformableComponentHandle"); \ +static_assert(sizeof(UTransformableComponentHandle) == 0x000068, "Wrong size on UTransformableComponentHandle"); \ +static_assert(offsetof(UTransformableComponentHandle, Component) == 0x000058, "Member 'UTransformableComponentHandle::Component' has a wrong offset!"); \ +static_assert(offsetof(UTransformableComponentHandle, SocketName) == 0x000060, "Member 'UTransformableComponentHandle::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableTransformConstraint \ +static_assert(alignof(UTickableTransformConstraint) == 0x000008, "Wrong alignment on UTickableTransformConstraint"); \ +static_assert(sizeof(UTickableTransformConstraint) == 0x000090, "Wrong size on UTickableTransformConstraint"); \ +static_assert(offsetof(UTickableTransformConstraint, ParentTRSHandle) == 0x000070, "Member 'UTickableTransformConstraint::ParentTRSHandle' has a wrong offset!"); \ +static_assert(offsetof(UTickableTransformConstraint, ChildTRSHandle) == 0x000078, "Member 'UTickableTransformConstraint::ChildTRSHandle' has a wrong offset!"); \ +static_assert(offsetof(UTickableTransformConstraint, bMaintainOffset) == 0x000080, "Member 'UTickableTransformConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(UTickableTransformConstraint, Weight) == 0x000084, "Member 'UTickableTransformConstraint::Weight' has a wrong offset!"); \ +static_assert(offsetof(UTickableTransformConstraint, bDynamicOffset) == 0x000088, "Member 'UTickableTransformConstraint::bDynamicOffset' has a wrong offset!"); \ +static_assert(offsetof(UTickableTransformConstraint, Type) == 0x000089, "Member 'UTickableTransformConstraint::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableTranslationConstraint \ +static_assert(alignof(UTickableTranslationConstraint) == 0x000008, "Wrong alignment on UTickableTranslationConstraint"); \ +static_assert(sizeof(UTickableTranslationConstraint) == 0x0000B8, "Wrong size on UTickableTranslationConstraint"); \ +static_assert(offsetof(UTickableTranslationConstraint, OffsetTranslation) == 0x000098, "Member 'UTickableTranslationConstraint::OffsetTranslation' has a wrong offset!"); \ +static_assert(offsetof(UTickableTranslationConstraint, AxisFilter) == 0x0000B0, "Member 'UTickableTranslationConstraint::AxisFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableRotationConstraint \ +static_assert(alignof(UTickableRotationConstraint) == 0x000010, "Wrong alignment on UTickableRotationConstraint"); \ +static_assert(sizeof(UTickableRotationConstraint) == 0x0000D0, "Wrong size on UTickableRotationConstraint"); \ +static_assert(offsetof(UTickableRotationConstraint, OffsetRotation) == 0x0000A0, "Member 'UTickableRotationConstraint::OffsetRotation' has a wrong offset!"); \ +static_assert(offsetof(UTickableRotationConstraint, AxisFilter) == 0x0000C0, "Member 'UTickableRotationConstraint::AxisFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableScaleConstraint \ +static_assert(alignof(UTickableScaleConstraint) == 0x000008, "Wrong alignment on UTickableScaleConstraint"); \ +static_assert(sizeof(UTickableScaleConstraint) == 0x0000B8, "Wrong size on UTickableScaleConstraint"); \ +static_assert(offsetof(UTickableScaleConstraint, OffsetScale) == 0x000098, "Member 'UTickableScaleConstraint::OffsetScale' has a wrong offset!"); \ +static_assert(offsetof(UTickableScaleConstraint, AxisFilter) == 0x0000B0, "Member 'UTickableScaleConstraint::AxisFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableParentConstraint \ +static_assert(alignof(UTickableParentConstraint) == 0x000010, "Wrong alignment on UTickableParentConstraint"); \ +static_assert(sizeof(UTickableParentConstraint) == 0x000110, "Wrong size on UTickableParentConstraint"); \ +static_assert(offsetof(UTickableParentConstraint, OffsetTransform) == 0x0000A0, "Member 'UTickableParentConstraint::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(UTickableParentConstraint, bScaling) == 0x000100, "Member 'UTickableParentConstraint::bScaling' has a wrong offset!"); \ +static_assert(offsetof(UTickableParentConstraint, TransformFilter) == 0x000101, "Member 'UTickableParentConstraint::TransformFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTickableLookAtConstraint \ +static_assert(alignof(UTickableLookAtConstraint) == 0x000008, "Wrong alignment on UTickableLookAtConstraint"); \ +static_assert(sizeof(UTickableLookAtConstraint) == 0x0000A8, "Wrong size on UTickableLookAtConstraint"); \ +static_assert(offsetof(UTickableLookAtConstraint, Axis) == 0x000090, "Member 'UTickableLookAtConstraint::Axis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig \ +static_assert(alignof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig) == 0x000008, "Wrong alignment on AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig"); \ +static_assert(sizeof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig) == 0x000020, "Wrong size on AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig, EntryPoint) == 0x000000, "Member 'AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig, CallFunc_SetTaskBoardConfig_ReturnValue) == 0x000004, "Member 'AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig::CallFunc_SetTaskBoardConfig_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig, K2Node_Event_InAutomata) == 0x000008, "Member 'AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig, K2Node_Event_InState) == 0x000010, "Member 'AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000018, "Member 'AssignCombatTaskBoardConfig_C_ExecuteUbergraph_AssignCombatTaskBoardConfig::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssignCombatTaskBoardConfig_C_ReceiveExecute \ +static_assert(alignof(AssignCombatTaskBoardConfig_C_ReceiveExecute) == 0x000008, "Wrong alignment on AssignCombatTaskBoardConfig_C_ReceiveExecute"); \ +static_assert(sizeof(AssignCombatTaskBoardConfig_C_ReceiveExecute) == 0x000010, "Wrong size on AssignCombatTaskBoardConfig_C_ReceiveExecute"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AssignCombatTaskBoardConfig_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AssignCombatTaskBoardConfig_C_ReceiveExecute, InState) == 0x000008, "Member 'AssignCombatTaskBoardConfig_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssignCombatTaskBoardConfig_C \ +static_assert(alignof(UAssignCombatTaskBoardConfig_C) == 0x000008, "Wrong alignment on UAssignCombatTaskBoardConfig_C"); \ +static_assert(sizeof(UAssignCombatTaskBoardConfig_C) == 0x000098, "Wrong size on UAssignCombatTaskBoardConfig_C"); \ +static_assert(offsetof(UAssignCombatTaskBoardConfig_C, UberGraphFrame) == 0x000088, "Member 'UAssignCombatTaskBoardConfig_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAssignCombatTaskBoardConfig_C, TaskBoardTag) == 0x000090, "Member 'UAssignCombatTaskBoardConfig_C::TaskBoardTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BFL_RequestBark_C_CreateArrays \ +static_assert(alignof(BFL_RequestBark_C_CreateArrays) == 0x000008, "Wrong alignment on BFL_RequestBark_C_CreateArrays"); \ +static_assert(sizeof(BFL_RequestBark_C_CreateArrays) == 0x0000B8, "Wrong size on BFL_RequestBark_C_CreateArrays"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, SelfPawn) == 0x000000, "Member 'BFL_RequestBark_C_CreateArrays::SelfPawn' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, PartnerPawn) == 0x000008, "Member 'BFL_RequestBark_C_CreateArrays::PartnerPawn' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, IsSolo) == 0x000010, "Member 'BFL_RequestBark_C_CreateArrays::IsSolo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, PartnerFirst) == 0x000011, "Member 'BFL_RequestBark_C_CreateArrays::PartnerFirst' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, __WorldContext) == 0x000018, "Member 'BFL_RequestBark_C_CreateArrays::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, OutActors) == 0x000020, "Member 'BFL_RequestBark_C_CreateArrays::OutActors' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, OutDialogueInfos) == 0x000030, "Member 'BFL_RequestBark_C_CreateArrays::OutDialogueInfos' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, InDialogueInfos) == 0x000040, "Member 'BFL_RequestBark_C_CreateArrays::InDialogueInfos' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, InActors) == 0x000050, "Member 'BFL_RequestBark_C_CreateArrays::InActors' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, K2Node_MakeArray_Array) == 0x000060, "Member 'BFL_RequestBark_C_CreateArrays::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, CallFunc_GetDialogueInfo_ReturnValue) == 0x000070, "Member 'BFL_RequestBark_C_CreateArrays::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'BFL_RequestBark_C_CreateArrays::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, K2Node_MakeArray_Array_1) == 0x000080, "Member 'BFL_RequestBark_C_CreateArrays::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, CallFunc_GetDialogueInfo_ReturnValue_1) == 0x000090, "Member 'BFL_RequestBark_C_CreateArrays::CallFunc_GetDialogueInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, K2Node_MakeArray_Array_2) == 0x000098, "Member 'BFL_RequestBark_C_CreateArrays::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_CreateArrays, K2Node_MakeArray_Array_3) == 0x0000A8, "Member 'BFL_RequestBark_C_CreateArrays::K2Node_MakeArray_Array_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BFL_RequestBark_C_FindPartner \ +static_assert(alignof(BFL_RequestBark_C_FindPartner) == 0x000008, "Wrong alignment on BFL_RequestBark_C_FindPartner"); \ +static_assert(sizeof(BFL_RequestBark_C_FindPartner) == 0x0001F8, "Wrong size on BFL_RequestBark_C_FindPartner"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Actor) == 0x000000, "Member 'BFL_RequestBark_C_FindPartner::Actor' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, LivingEnemies) == 0x000008, "Member 'BFL_RequestBark_C_FindPartner::LivingEnemies' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, TestLOSToPartner) == 0x000018, "Member 'BFL_RequestBark_C_FindPartner::TestLOSToPartner' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, PartnerRequiredState) == 0x00001C, "Member 'BFL_RequestBark_C_FindPartner::PartnerRequiredState' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, PartnerMaxDistance) == 0x000028, "Member 'BFL_RequestBark_C_FindPartner::PartnerMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, __WorldContext) == 0x000030, "Member 'BFL_RequestBark_C_FindPartner::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Partner) == 0x000038, "Member 'BFL_RequestBark_C_FindPartner::Partner' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Solo) == 0x000040, "Member 'BFL_RequestBark_C_FindPartner::Solo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CachedDistance) == 0x000048, "Member 'BFL_RequestBark_C_FindPartner::CachedDistance' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, OtherPawn) == 0x000050, "Member 'BFL_RequestBark_C_FindPartner::OtherPawn' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_GetAIController_ReturnValue) == 0x000078, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000080, "Member 'BFL_RequestBark_C_FindPartner::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'BFL_RequestBark_C_FindPartner::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_IsValid_ReturnValue) == 0x000091, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Temp_int_Array_Index_Variable) == 0x000094, "Member 'BFL_RequestBark_C_FindPartner::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Not_PreBool_ReturnValue) == 0x000098, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Array_Get_Item) == 0x0000A0, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0000A8, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x0000A9, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B0, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, K2Node_MakeArray_Array) == 0x0000C8, "Member 'BFL_RequestBark_C_FindPartner::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_GetDistanceTo_ReturnValue) == 0x0000D8, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_LineTraceSingle_OutHit) == 0x0000E0, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_LineTraceSingle_ReturnValue) == 0x0001C8, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0001C9, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0001CA, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_PawnHasStateTag_ReturnValue) == 0x0001CB, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Temp_int_Loop_Counter_Variable) == 0x0001CC, "Member 'BFL_RequestBark_C_FindPartner::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Less_IntInt_ReturnValue) == 0x0001D0, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Add_IntInt_ReturnValue) == 0x0001D4, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, Temp_byte_Variable) == 0x0001D8, "Member 'BFL_RequestBark_C_FindPartner::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0001D9, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, K2Node_VariableSet_CachedDistance_ImplicitCast) == 0x0001E0, "Member 'BFL_RequestBark_C_FindPartner::K2Node_VariableSet_CachedDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x0001E8, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_FindPartner, CallFunc_Less_DoubleDouble_A_ImplicitCast_1) == 0x0001F0, "Member 'BFL_RequestBark_C_FindPartner::CallFunc_Less_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BFL_RequestBark_C_RequestBark \ +static_assert(alignof(BFL_RequestBark_C_RequestBark) == 0x000008, "Wrong alignment on BFL_RequestBark_C_RequestBark"); \ +static_assert(sizeof(BFL_RequestBark_C_RequestBark) == 0x0000E0, "Wrong size on BFL_RequestBark_C_RequestBark"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, IsSolo) == 0x000000, "Member 'BFL_RequestBark_C_RequestBark::IsSolo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, Speaker) == 0x000008, "Member 'BFL_RequestBark_C_RequestBark::Speaker' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, PartnerSpeaksFirst) == 0x000010, "Member 'BFL_RequestBark_C_RequestBark::PartnerSpeaksFirst' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, TestLOSToPartner) == 0x000011, "Member 'BFL_RequestBark_C_RequestBark::TestLOSToPartner' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, PartnerRequiredState) == 0x000014, "Member 'BFL_RequestBark_C_RequestBark::PartnerRequiredState' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, PartnerMaxDistance) == 0x000020, "Member 'BFL_RequestBark_C_RequestBark::PartnerMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, SoloDialoguePrompt) == 0x000028, "Member 'BFL_RequestBark_C_RequestBark::SoloDialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, SoloHeightenedDialoguePrompt) == 0x000030, "Member 'BFL_RequestBark_C_RequestBark::SoloHeightenedDialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, GroupDialoguePrompt) == 0x000038, "Member 'BFL_RequestBark_C_RequestBark::GroupDialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, GroupHeightenedDialoguePrompt) == 0x000040, "Member 'BFL_RequestBark_C_RequestBark::GroupHeightenedDialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, HeightenedStateTag) == 0x000048, "Member 'BFL_RequestBark_C_RequestBark::HeightenedStateTag' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, __WorldContext) == 0x000050, "Member 'BFL_RequestBark_C_RequestBark::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, Solo) == 0x000058, "Member 'BFL_RequestBark_C_RequestBark::Solo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000060, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000070, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000080, "Member 'BFL_RequestBark_C_RequestBark::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'BFL_RequestBark_C_RequestBark::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_SetPrompt_Prompt) == 0x00008C, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_SetPrompt_Prompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000098, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_IsGameplayTagValid_ReturnValue) == 0x0000A8, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_FindPartner_Partner) == 0x0000B0, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_FindPartner_Partner' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_FindPartner_Solo) == 0x0000B8, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_FindPartner_Solo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_CreateArrays_OutActors) == 0x0000C0, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_CreateArrays_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestBark, CallFunc_CreateArrays_OutDialogueInfos) == 0x0000D0, "Member 'BFL_RequestBark_C_RequestBark::CallFunc_CreateArrays_OutDialogueInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BFL_RequestBark_C_RequestSoloBark \ +static_assert(alignof(BFL_RequestBark_C_RequestSoloBark) == 0x000008, "Wrong alignment on BFL_RequestBark_C_RequestSoloBark"); \ +static_assert(sizeof(BFL_RequestBark_C_RequestSoloBark) == 0x000090, "Wrong size on BFL_RequestBark_C_RequestSoloBark"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, Speaker) == 0x000000, "Member 'BFL_RequestBark_C_RequestSoloBark::Speaker' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, DialoguePrompt) == 0x000008, "Member 'BFL_RequestBark_C_RequestSoloBark::DialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, BarkChance) == 0x000010, "Member 'BFL_RequestBark_C_RequestSoloBark::BarkChance' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, __WorldContext) == 0x000018, "Member 'BFL_RequestBark_C_RequestSoloBark::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_DynamicCast_AsWrestler_Mass_Character) == 0x000028, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_DynamicCast_AsWrestler_Mass_Character' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000031, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_GetEntityIndexAndSerialNumber_OutIndex) == 0x000034, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_GetEntityIndexAndSerialNumber_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_GetEntityIndexAndSerialNumber_OutSerialNumber) == 0x000038, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_GetEntityIndexAndSerialNumber_OutSerialNumber' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_IsGameplayTagValid_ReturnValue) == 0x00003C, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_IsValid_ReturnValue) == 0x00003D, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_BooleanAND_ReturnValue) == 0x00003E, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_MassAIDialogueRequest_ReturnValue) == 0x00003F, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_MassAIDialogueRequest_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_BooleanAND_ReturnValue_1) == 0x000040, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_RandomFloat_ReturnValue) == 0x000048, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_RandomFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000050, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000059, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_GetDialogueInfo_ReturnValue) == 0x000060, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, CallFunc_BooleanAND_ReturnValue_2) == 0x000068, "Member 'BFL_RequestBark_C_RequestSoloBark::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_MakeArray_Array) == 0x000070, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_RequestSoloBark, K2Node_MakeArray_Array_1) == 0x000080, "Member 'BFL_RequestBark_C_RequestSoloBark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BFL_RequestBark_C_SetPrompt \ +static_assert(alignof(BFL_RequestBark_C_SetPrompt) == 0x000008, "Wrong alignment on BFL_RequestBark_C_SetPrompt"); \ +static_assert(sizeof(BFL_RequestBark_C_SetPrompt) == 0x000058, "Wrong size on BFL_RequestBark_C_SetPrompt"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, IsSolo) == 0x000000, "Member 'BFL_RequestBark_C_SetPrompt::IsSolo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, Pawn) == 0x000008, "Member 'BFL_RequestBark_C_SetPrompt::Pawn' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, Solo) == 0x000010, "Member 'BFL_RequestBark_C_SetPrompt::Solo' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, SoloHeightened) == 0x000018, "Member 'BFL_RequestBark_C_SetPrompt::SoloHeightened' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, Group) == 0x000020, "Member 'BFL_RequestBark_C_SetPrompt::Group' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, GroupHeightened) == 0x000028, "Member 'BFL_RequestBark_C_SetPrompt::GroupHeightened' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, State) == 0x000030, "Member 'BFL_RequestBark_C_SetPrompt::State' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, __WorldContext) == 0x000038, "Member 'BFL_RequestBark_C_SetPrompt::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, Prompt) == 0x000040, "Member 'BFL_RequestBark_C_SetPrompt::Prompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, InPrompt) == 0x000048, "Member 'BFL_RequestBark_C_SetPrompt::InPrompt' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, CallFunc_PawnHasStateTag_ReturnValue) == 0x000050, "Member 'BFL_RequestBark_C_SetPrompt::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000051, "Member 'BFL_RequestBark_C_SetPrompt::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BFL_RequestBark_C_SetPrompt, CallFunc_IsValid_ReturnValue) == 0x000052, "Member 'BFL_RequestBark_C_SetPrompt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBFL_RequestBark_C \ +static_assert(alignof(UBFL_RequestBark_C) == 0x000008, "Wrong alignment on UBFL_RequestBark_C"); \ +static_assert(sizeof(UBFL_RequestBark_C) == 0x000028, "Wrong size on UBFL_RequestBark_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_PunchImpact_Med_C \ +static_assert(alignof(UCameraShake_PunchImpact_Med_C) == 0x000010, "Wrong alignment on UCameraShake_PunchImpact_Med_C"); \ +static_assert(sizeof(UCameraShake_PunchImpact_Med_C) == 0x000230, "Wrong size on UCameraShake_PunchImpact_Med_C"); \ + +#define DUMPER7_ASSERTS_FMoviePipelinePassIdentifier \ +static_assert(alignof(FMoviePipelinePassIdentifier) == 0x000008, "Wrong alignment on FMoviePipelinePassIdentifier"); \ +static_assert(sizeof(FMoviePipelinePassIdentifier) == 0x000020, "Wrong size on FMoviePipelinePassIdentifier"); \ +static_assert(offsetof(FMoviePipelinePassIdentifier, Name) == 0x000000, "Member 'FMoviePipelinePassIdentifier::Name' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelinePassIdentifier, CameraName) == 0x000010, "Member 'FMoviePipelinePassIdentifier::CameraName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineRenderPassOutputData \ +static_assert(alignof(FMoviePipelineRenderPassOutputData) == 0x000008, "Wrong alignment on FMoviePipelineRenderPassOutputData"); \ +static_assert(sizeof(FMoviePipelineRenderPassOutputData) == 0x000010, "Wrong size on FMoviePipelineRenderPassOutputData"); \ +static_assert(offsetof(FMoviePipelineRenderPassOutputData, FilePaths) == 0x000000, "Member 'FMoviePipelineRenderPassOutputData::FilePaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineShotOutputData \ +static_assert(alignof(FMoviePipelineShotOutputData) == 0x000008, "Wrong alignment on FMoviePipelineShotOutputData"); \ +static_assert(sizeof(FMoviePipelineShotOutputData) == 0x000058, "Wrong size on FMoviePipelineShotOutputData"); \ +static_assert(offsetof(FMoviePipelineShotOutputData, Shot) == 0x000000, "Member 'FMoviePipelineShotOutputData::Shot' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineShotOutputData, RenderPassData) == 0x000008, "Member 'FMoviePipelineShotOutputData::RenderPassData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineOutputData \ +static_assert(alignof(FMoviePipelineOutputData) == 0x000008, "Wrong alignment on FMoviePipelineOutputData"); \ +static_assert(sizeof(FMoviePipelineOutputData) == 0x000028, "Wrong size on FMoviePipelineOutputData"); \ +static_assert(offsetof(FMoviePipelineOutputData, Pipeline) == 0x000000, "Member 'FMoviePipelineOutputData::Pipeline' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineOutputData, Job) == 0x000008, "Member 'FMoviePipelineOutputData::Job' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineOutputData, bSuccess) == 0x000010, "Member 'FMoviePipelineOutputData::bSuccess' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineOutputData, ShotData) == 0x000018, "Member 'FMoviePipelineOutputData::ShotData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphRenderDataIdentifier \ +static_assert(alignof(FMovieGraphRenderDataIdentifier) == 0x000008, "Wrong alignment on FMovieGraphRenderDataIdentifier"); \ +static_assert(sizeof(FMovieGraphRenderDataIdentifier) == 0x000038, "Wrong size on FMovieGraphRenderDataIdentifier"); \ +static_assert(offsetof(FMovieGraphRenderDataIdentifier, RootBranchName) == 0x000000, "Member 'FMovieGraphRenderDataIdentifier::RootBranchName' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphRenderDataIdentifier, RendererName) == 0x000008, "Member 'FMovieGraphRenderDataIdentifier::RendererName' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphRenderDataIdentifier, SubResourceName) == 0x000018, "Member 'FMovieGraphRenderDataIdentifier::SubResourceName' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphRenderDataIdentifier, CameraName) == 0x000028, "Member 'FMovieGraphRenderDataIdentifier::CameraName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphTimeStepData \ +static_assert(alignof(FMovieGraphTimeStepData) == 0x000008, "Wrong alignment on FMovieGraphTimeStepData"); \ +static_assert(sizeof(FMovieGraphTimeStepData) == 0x000020, "Wrong size on FMovieGraphTimeStepData"); \ +static_assert(offsetof(FMovieGraphTimeStepData, OutputFrameNumber) == 0x000000, "Member 'FMovieGraphTimeStepData::OutputFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, FrameDeltaTime) == 0x000004, "Member 'FMovieGraphTimeStepData::FrameDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, WorldTimeDilation) == 0x000008, "Member 'FMovieGraphTimeStepData::WorldTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, WorldSeconds) == 0x00000C, "Member 'FMovieGraphTimeStepData::WorldSeconds' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, MotionBlurFraction) == 0x000010, "Member 'FMovieGraphTimeStepData::MotionBlurFraction' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, bIsFirstTemporalSampleForFrame) == 0x000014, "Member 'FMovieGraphTimeStepData::bIsFirstTemporalSampleForFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, bIsLastTemporalSampleForFrame) == 0x000015, "Member 'FMovieGraphTimeStepData::bIsLastTemporalSampleForFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, bRequiresAccumulator) == 0x000016, "Member 'FMovieGraphTimeStepData::bRequiresAccumulator' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTimeStepData, EvaluatedConfig) == 0x000018, "Member 'FMovieGraphTimeStepData::EvaluatedConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphTraversalContext \ +static_assert(alignof(FMovieGraphTraversalContext) == 0x000008, "Wrong alignment on FMovieGraphTraversalContext"); \ +static_assert(sizeof(FMovieGraphTraversalContext) == 0x000078, "Wrong size on FMovieGraphTraversalContext"); \ +static_assert(offsetof(FMovieGraphTraversalContext, RootBranch) == 0x000000, "Member 'FMovieGraphTraversalContext::RootBranch' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, ShotIndex) == 0x000008, "Member 'FMovieGraphTraversalContext::ShotIndex' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, ShotCount) == 0x00000C, "Member 'FMovieGraphTraversalContext::ShotCount' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, Job) == 0x000010, "Member 'FMovieGraphTraversalContext::Job' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, RootGraph) == 0x000018, "Member 'FMovieGraphTraversalContext::RootGraph' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, RenderDataIdentifier) == 0x000020, "Member 'FMovieGraphTraversalContext::RenderDataIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphTraversalContext, Time) == 0x000058, "Member 'FMovieGraphTraversalContext::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphEvaluationContext \ +static_assert(alignof(FMovieGraphEvaluationContext) == 0x000008, "Wrong alignment on FMovieGraphEvaluationContext"); \ +static_assert(sizeof(FMovieGraphEvaluationContext) == 0x0000E0, "Wrong size on FMovieGraphEvaluationContext"); \ +static_assert(offsetof(FMovieGraphEvaluationContext, UserContext) == 0x000000, "Member 'FMovieGraphEvaluationContext::UserContext' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphEvaluationContext, VisitedNodes) == 0x000078, "Member 'FMovieGraphEvaluationContext::VisitedNodes' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphEvaluationContext, PinBeingFollowed) == 0x0000C8, "Member 'FMovieGraphEvaluationContext::PinBeingFollowed' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphEvaluationContext, SubgraphStack) == 0x0000D0, "Member 'FMovieGraphEvaluationContext::SubgraphStack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphEvaluatedSettingsStack \ +static_assert(alignof(FMovieGraphEvaluatedSettingsStack) == 0x000008, "Wrong alignment on FMovieGraphEvaluatedSettingsStack"); \ +static_assert(sizeof(FMovieGraphEvaluatedSettingsStack) == 0x000010, "Wrong size on FMovieGraphEvaluatedSettingsStack"); \ +static_assert(offsetof(FMovieGraphEvaluatedSettingsStack, NodeInstances) == 0x000000, "Member 'FMovieGraphEvaluatedSettingsStack::NodeInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphEvaluatedBranchConfig \ +static_assert(alignof(FMovieGraphEvaluatedBranchConfig) == 0x000008, "Wrong alignment on FMovieGraphEvaluatedBranchConfig"); \ +static_assert(sizeof(FMovieGraphEvaluatedBranchConfig) == 0x000050, "Wrong size on FMovieGraphEvaluatedBranchConfig"); \ +static_assert(offsetof(FMovieGraphEvaluatedBranchConfig, NamedNodes) == 0x000000, "Member 'FMovieGraphEvaluatedBranchConfig::NamedNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphInitConfig \ +static_assert(alignof(FMovieGraphInitConfig) == 0x000008, "Wrong alignment on FMovieGraphInitConfig"); \ +static_assert(sizeof(FMovieGraphInitConfig) == 0x000020, "Wrong size on FMovieGraphInitConfig"); \ +static_assert(offsetof(FMovieGraphInitConfig, TimeStepClass) == 0x000000, "Member 'FMovieGraphInitConfig::TimeStepClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphInitConfig, RendererClass) == 0x000008, "Member 'FMovieGraphInitConfig::RendererClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphInitConfig, DataSourceClass) == 0x000010, "Member 'FMovieGraphInitConfig::DataSourceClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphInitConfig, bRenderViewport) == 0x000018, "Member 'FMovieGraphInitConfig::bRenderViewport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphRenderPassOutputData \ +static_assert(alignof(FMovieGraphRenderPassOutputData) == 0x000008, "Wrong alignment on FMovieGraphRenderPassOutputData"); \ +static_assert(sizeof(FMovieGraphRenderPassOutputData) == 0x000010, "Wrong size on FMovieGraphRenderPassOutputData"); \ +static_assert(offsetof(FMovieGraphRenderPassOutputData, FilePaths) == 0x000000, "Member 'FMovieGraphRenderPassOutputData::FilePaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphRenderOutputData \ +static_assert(alignof(FMovieGraphRenderOutputData) == 0x000008, "Wrong alignment on FMovieGraphRenderOutputData"); \ +static_assert(sizeof(FMovieGraphRenderOutputData) == 0x000058, "Wrong size on FMovieGraphRenderOutputData"); \ +static_assert(offsetof(FMovieGraphRenderOutputData, Shot) == 0x000000, "Member 'FMovieGraphRenderOutputData::Shot' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphRenderOutputData, RenderPassData) == 0x000008, "Member 'FMovieGraphRenderOutputData::RenderPassData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphResolveArgs \ +static_assert(alignof(FMovieGraphResolveArgs) == 0x000008, "Wrong alignment on FMovieGraphResolveArgs"); \ +static_assert(sizeof(FMovieGraphResolveArgs) == 0x0000A0, "Wrong size on FMovieGraphResolveArgs"); \ +static_assert(offsetof(FMovieGraphResolveArgs, FilenameArguments) == 0x000000, "Member 'FMovieGraphResolveArgs::FilenameArguments' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphResolveArgs, FileMetadata) == 0x000050, "Member 'FMovieGraphResolveArgs::FileMetadata' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphFilenameResolveParams \ +static_assert(alignof(FMovieGraphFilenameResolveParams) == 0x000008, "Wrong alignment on FMovieGraphFilenameResolveParams"); \ +static_assert(sizeof(FMovieGraphFilenameResolveParams) == 0x000128, "Wrong size on FMovieGraphFilenameResolveParams"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, RenderDataIdentifier) == 0x000000, "Member 'FMovieGraphFilenameResolveParams::RenderDataIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, RootFrameNumber) == 0x000038, "Member 'FMovieGraphFilenameResolveParams::RootFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, ShotFrameNumber) == 0x00003C, "Member 'FMovieGraphFilenameResolveParams::ShotFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, RootFrameNumberRel) == 0x000040, "Member 'FMovieGraphFilenameResolveParams::RootFrameNumberRel' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, ShotFrameNumberRel) == 0x000044, "Member 'FMovieGraphFilenameResolveParams::ShotFrameNumberRel' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, FileMetadata) == 0x000048, "Member 'FMovieGraphFilenameResolveParams::FileMetadata' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, Version) == 0x000098, "Member 'FMovieGraphFilenameResolveParams::Version' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, bForceRelativeFrameNumbers) == 0x00009C, "Member 'FMovieGraphFilenameResolveParams::bForceRelativeFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, bEnsureAbsolutePath) == 0x00009D, "Member 'FMovieGraphFilenameResolveParams::bEnsureAbsolutePath' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, InitializationTime) == 0x0000A0, "Member 'FMovieGraphFilenameResolveParams::InitializationTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, ZeroPadFrameNumberCount) == 0x0000A8, "Member 'FMovieGraphFilenameResolveParams::ZeroPadFrameNumberCount' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, FileNameFormatOverrides) == 0x0000B0, "Member 'FMovieGraphFilenameResolveParams::FileNameFormatOverrides' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, Job) == 0x000100, "Member 'FMovieGraphFilenameResolveParams::Job' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, Shot) == 0x000108, "Member 'FMovieGraphFilenameResolveParams::Shot' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, EvaluatedConfig) == 0x000110, "Member 'FMovieGraphFilenameResolveParams::EvaluatedConfig' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, FrameNumberOffset) == 0x000118, "Member 'FMovieGraphFilenameResolveParams::FrameNumberOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphFilenameResolveParams, DefaultFrameRate) == 0x00011C, "Member 'FMovieGraphFilenameResolveParams::DefaultFrameRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphPropertyInfo \ +static_assert(alignof(FMovieGraphPropertyInfo) == 0x000004, "Wrong alignment on FMovieGraphPropertyInfo"); \ +static_assert(sizeof(FMovieGraphPropertyInfo) == 0x00000C, "Wrong size on FMovieGraphPropertyInfo"); \ +static_assert(offsetof(FMovieGraphPropertyInfo, Name) == 0x000000, "Member 'FMovieGraphPropertyInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphPropertyInfo, bIsDynamicProperty) == 0x000008, "Member 'FMovieGraphPropertyInfo::bIsDynamicProperty' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphPropertyInfo, ValueType) == 0x000009, "Member 'FMovieGraphPropertyInfo::ValueType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphPinProperties \ +static_assert(alignof(FMovieGraphPinProperties) == 0x000004, "Wrong alignment on FMovieGraphPinProperties"); \ +static_assert(sizeof(FMovieGraphPinProperties) == 0x00000C, "Wrong size on FMovieGraphPinProperties"); \ +static_assert(offsetof(FMovieGraphPinProperties, Label) == 0x000000, "Member 'FMovieGraphPinProperties::Label' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphPinProperties, Type) == 0x000008, "Member 'FMovieGraphPinProperties::Type' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphPinProperties, bAllowMultipleConnections) == 0x000009, "Member 'FMovieGraphPinProperties::bAllowMultipleConnections' has a wrong offset!"); \ +static_assert(offsetof(FMovieGraphPinProperties, bIsBranch) == 0x00000A, "Member 'FMovieGraphPinProperties::bIsBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieGraphBranch \ +static_assert(alignof(FMovieGraphBranch) == 0x000004, "Wrong alignment on FMovieGraphBranch"); \ +static_assert(sizeof(FMovieGraphBranch) == 0x000008, "Wrong size on FMovieGraphBranch"); \ +static_assert(offsetof(FMovieGraphBranch, BranchName) == 0x000000, "Member 'FMovieGraphBranch::BranchName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineSidecarCamera \ +static_assert(alignof(FMoviePipelineSidecarCamera) == 0x000008, "Wrong alignment on FMoviePipelineSidecarCamera"); \ +static_assert(sizeof(FMoviePipelineSidecarCamera) == 0x000028, "Wrong size on FMoviePipelineSidecarCamera"); \ +static_assert(offsetof(FMoviePipelineSidecarCamera, BindingID) == 0x000000, "Member 'FMoviePipelineSidecarCamera::BindingID' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSidecarCamera, Name) == 0x000018, "Member 'FMoviePipelineSidecarCamera::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineSegmentWorkMetrics \ +static_assert(alignof(FMoviePipelineSegmentWorkMetrics) == 0x000008, "Wrong alignment on FMoviePipelineSegmentWorkMetrics"); \ +static_assert(sizeof(FMoviePipelineSegmentWorkMetrics) == 0x000028, "Wrong size on FMoviePipelineSegmentWorkMetrics"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, SegmentName) == 0x000000, "Member 'FMoviePipelineSegmentWorkMetrics::SegmentName' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, OutputFrameIndex) == 0x000010, "Member 'FMoviePipelineSegmentWorkMetrics::OutputFrameIndex' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, TotalOutputFrameCount) == 0x000014, "Member 'FMoviePipelineSegmentWorkMetrics::TotalOutputFrameCount' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, OutputSubSampleIndex) == 0x000018, "Member 'FMoviePipelineSegmentWorkMetrics::OutputSubSampleIndex' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, TotalSubSampleCount) == 0x00001C, "Member 'FMoviePipelineSegmentWorkMetrics::TotalSubSampleCount' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, EngineWarmUpFrameIndex) == 0x000020, "Member 'FMoviePipelineSegmentWorkMetrics::EngineWarmUpFrameIndex' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineSegmentWorkMetrics, TotalEngineWarmUpFrameCount) == 0x000024, "Member 'FMoviePipelineSegmentWorkMetrics::TotalEngineWarmUpFrameCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineCameraCutInfo \ +static_assert(alignof(FMoviePipelineCameraCutInfo) == 0x000008, "Wrong alignment on FMoviePipelineCameraCutInfo"); \ +static_assert(sizeof(FMoviePipelineCameraCutInfo) == 0x0000B0, "Wrong size on FMoviePipelineCameraCutInfo"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineFormatArgs \ +static_assert(alignof(FMoviePipelineFormatArgs) == 0x000008, "Wrong alignment on FMoviePipelineFormatArgs"); \ +static_assert(sizeof(FMoviePipelineFormatArgs) == 0x0000A8, "Wrong size on FMoviePipelineFormatArgs"); \ +static_assert(offsetof(FMoviePipelineFormatArgs, FilenameArguments) == 0x000000, "Member 'FMoviePipelineFormatArgs::FilenameArguments' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFormatArgs, FileMetadata) == 0x000050, "Member 'FMoviePipelineFormatArgs::FileMetadata' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFormatArgs, InJob) == 0x0000A0, "Member 'FMoviePipelineFormatArgs::InJob' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineFilenameResolveParams \ +static_assert(alignof(FMoviePipelineFilenameResolveParams) == 0x000008, "Wrong alignment on FMoviePipelineFilenameResolveParams"); \ +static_assert(sizeof(FMoviePipelineFilenameResolveParams) == 0x000118, "Wrong size on FMoviePipelineFilenameResolveParams"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FrameNumber) == 0x000000, "Member 'FMoviePipelineFilenameResolveParams::FrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FrameNumberShot) == 0x000004, "Member 'FMoviePipelineFilenameResolveParams::FrameNumberShot' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FrameNumberRel) == 0x000008, "Member 'FMoviePipelineFilenameResolveParams::FrameNumberRel' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FrameNumberShotRel) == 0x00000C, "Member 'FMoviePipelineFilenameResolveParams::FrameNumberShotRel' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, CameraNameOverride) == 0x000010, "Member 'FMoviePipelineFilenameResolveParams::CameraNameOverride' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, ShotNameOverride) == 0x000020, "Member 'FMoviePipelineFilenameResolveParams::ShotNameOverride' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, ZeroPadFrameNumberCount) == 0x000030, "Member 'FMoviePipelineFilenameResolveParams::ZeroPadFrameNumberCount' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, bForceRelativeFrameNumbers) == 0x000034, "Member 'FMoviePipelineFilenameResolveParams::bForceRelativeFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FileNameOverride) == 0x000038, "Member 'FMoviePipelineFilenameResolveParams::FileNameOverride' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FileNameFormatOverrides) == 0x000048, "Member 'FMoviePipelineFilenameResolveParams::FileNameFormatOverrides' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, FileMetadata) == 0x000098, "Member 'FMoviePipelineFilenameResolveParams::FileMetadata' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, InitializationTime) == 0x0000E8, "Member 'FMoviePipelineFilenameResolveParams::InitializationTime' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, InitializationVersion) == 0x0000F0, "Member 'FMoviePipelineFilenameResolveParams::InitializationVersion' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, Job) == 0x0000F8, "Member 'FMoviePipelineFilenameResolveParams::Job' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, ShotOverride) == 0x000108, "Member 'FMoviePipelineFilenameResolveParams::ShotOverride' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineFilenameResolveParams, AdditionalFrameNumberOffset) == 0x000110, "Member 'FMoviePipelineFilenameResolveParams::AdditionalFrameNumberOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphBlueprintLibrary_GetEffectiveFrameRate \ +static_assert(alignof(MovieGraphBlueprintLibrary_GetEffectiveFrameRate) == 0x000008, "Wrong alignment on MovieGraphBlueprintLibrary_GetEffectiveFrameRate"); \ +static_assert(sizeof(MovieGraphBlueprintLibrary_GetEffectiveFrameRate) == 0x000018, "Wrong size on MovieGraphBlueprintLibrary_GetEffectiveFrameRate"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveFrameRate, InNode) == 0x000000, "Member 'MovieGraphBlueprintLibrary_GetEffectiveFrameRate::InNode' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveFrameRate, InDefaultRate) == 0x000008, "Member 'MovieGraphBlueprintLibrary_GetEffectiveFrameRate::InDefaultRate' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveFrameRate, ReturnValue) == 0x000010, "Member 'MovieGraphBlueprintLibrary_GetEffectiveFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphBlueprintLibrary_GetEffectiveOutputResolution \ +static_assert(alignof(MovieGraphBlueprintLibrary_GetEffectiveOutputResolution) == 0x000008, "Wrong alignment on MovieGraphBlueprintLibrary_GetEffectiveOutputResolution"); \ +static_assert(sizeof(MovieGraphBlueprintLibrary_GetEffectiveOutputResolution) == 0x000018, "Wrong size on MovieGraphBlueprintLibrary_GetEffectiveOutputResolution"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveOutputResolution, InEvaluatedGraph) == 0x000000, "Member 'MovieGraphBlueprintLibrary_GetEffectiveOutputResolution::InEvaluatedGraph' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveOutputResolution, InBranchName) == 0x000008, "Member 'MovieGraphBlueprintLibrary_GetEffectiveOutputResolution::InBranchName' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_GetEffectiveOutputResolution, ReturnValue) == 0x000010, "Member 'MovieGraphBlueprintLibrary_GetEffectiveOutputResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments \ +static_assert(alignof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments) == 0x000008, "Wrong alignment on MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments"); \ +static_assert(sizeof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments) == 0x0001E8, "Wrong size on MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments, InFormatString) == 0x000000, "Member 'MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments::InFormatString' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments, InParams) == 0x000010, "Member 'MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments::InParams' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments, OutMergedFormatArgs) == 0x000138, "Member 'MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments::OutMergedFormatArgs' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments, ReturnValue) == 0x0001D8, "Member 'MovieGraphBlueprintLibrary_ResolveFilenameFormatArguments::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphBlueprintLibrary \ +static_assert(alignof(UMovieGraphBlueprintLibrary) == 0x000008, "Wrong alignment on UMovieGraphBlueprintLibrary"); \ +static_assert(sizeof(UMovieGraphBlueprintLibrary) == 0x000028, "Wrong size on UMovieGraphBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UMovieGraphNode \ +static_assert(alignof(UMovieGraphNode) == 0x000008, "Wrong alignment on UMovieGraphNode"); \ +static_assert(sizeof(UMovieGraphNode) == 0x000090, "Wrong size on UMovieGraphNode"); \ +static_assert(offsetof(UMovieGraphNode, InputPins) == 0x000040, "Member 'UMovieGraphNode::InputPins' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphNode, OutputPins) == 0x000050, "Member 'UMovieGraphNode::OutputPins' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphNode, DynamicProperties) == 0x000060, "Member 'UMovieGraphNode::DynamicProperties' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphNode, ExposedPropertyInfo) == 0x000070, "Member 'UMovieGraphNode::ExposedPropertyInfo' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphNode, Guid) == 0x000080, "Member 'UMovieGraphNode::Guid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphBranchNode \ +static_assert(alignof(UMovieGraphBranchNode) == 0x000008, "Wrong alignment on UMovieGraphBranchNode"); \ +static_assert(sizeof(UMovieGraphBranchNode) == 0x000090, "Wrong size on UMovieGraphBranchNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphSettingNode \ +static_assert(alignof(UMovieGraphSettingNode) == 0x000008, "Wrong alignment on UMovieGraphSettingNode"); \ +static_assert(sizeof(UMovieGraphSettingNode) == 0x000090, "Wrong size on UMovieGraphSettingNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphRenderPassNode \ +static_assert(alignof(UMovieGraphRenderPassNode) == 0x000008, "Wrong alignment on UMovieGraphRenderPassNode"); \ +static_assert(sizeof(UMovieGraphRenderPassNode) == 0x000090, "Wrong size on UMovieGraphRenderPassNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphBurnInNode \ +static_assert(alignof(UMovieGraphBurnInNode) == 0x000008, "Wrong alignment on UMovieGraphBurnInNode"); \ +static_assert(sizeof(UMovieGraphBurnInNode) == 0x000180, "Wrong size on UMovieGraphBurnInNode"); \ +static_assert(offsetof(UMovieGraphBurnInNode, BurnInClass) == 0x000098, "Member 'UMovieGraphBurnInNode::BurnInClass' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphBurnInNode, bCompositeOntoFinalImage) == 0x0000B8, "Member 'UMovieGraphBurnInNode::bCompositeOntoFinalImage' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphBurnInNode, BurnInWidgetInstances) == 0x000120, "Member 'UMovieGraphBurnInNode::BurnInWidgetInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphBurnInWidget_UpdateForGraph \ +static_assert(alignof(MovieGraphBurnInWidget_UpdateForGraph) == 0x000008, "Wrong alignment on MovieGraphBurnInWidget_UpdateForGraph"); \ +static_assert(sizeof(MovieGraphBurnInWidget_UpdateForGraph) == 0x000008, "Wrong size on MovieGraphBurnInWidget_UpdateForGraph"); \ +static_assert(offsetof(MovieGraphBurnInWidget_UpdateForGraph, InGraphPipeline) == 0x000000, "Member 'MovieGraphBurnInWidget_UpdateForGraph::InGraphPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphBurnInWidget \ +static_assert(alignof(UMovieGraphBurnInWidget) == 0x000008, "Wrong alignment on UMovieGraphBurnInWidget"); \ +static_assert(sizeof(UMovieGraphBurnInWidget) == 0x0002C0, "Wrong size on UMovieGraphBurnInWidget"); \ + +#define DUMPER7_ASSERTS_UMovieGraphCollectionNode \ +static_assert(alignof(UMovieGraphCollectionNode) == 0x000008, "Wrong alignment on UMovieGraphCollectionNode"); \ +static_assert(sizeof(UMovieGraphCollectionNode) == 0x0000B0, "Wrong size on UMovieGraphCollectionNode"); \ +static_assert(offsetof(UMovieGraphCollectionNode, CollectionName) == 0x000098, "Member 'UMovieGraphCollectionNode::CollectionName' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphCollectionNode, QueryClass) == 0x0000A8, "Member 'UMovieGraphCollectionNode::QueryClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueSerializedString \ +static_assert(alignof(MovieGraphValueContainer_GetValueSerializedString) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueSerializedString"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueSerializedString) == 0x000010, "Wrong size on MovieGraphValueContainer_GetValueSerializedString"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueSerializedString, ReturnValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueSerializedString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueBool \ +static_assert(alignof(MovieGraphValueContainer_SetValueBool) == 0x000001, "Wrong alignment on MovieGraphValueContainer_SetValueBool"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueBool) == 0x000002, "Wrong size on MovieGraphValueContainer_SetValueBool"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueBool, bInValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueBool::bInValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueBool, ReturnValue) == 0x000001, "Member 'MovieGraphValueContainer_SetValueBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueByte \ +static_assert(alignof(MovieGraphValueContainer_SetValueByte) == 0x000001, "Wrong alignment on MovieGraphValueContainer_SetValueByte"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueByte) == 0x000002, "Wrong size on MovieGraphValueContainer_SetValueByte"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueByte, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueByte::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueByte, ReturnValue) == 0x000001, "Member 'MovieGraphValueContainer_SetValueByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueClass \ +static_assert(alignof(MovieGraphValueContainer_SetValueClass) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueClass"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueClass) == 0x000010, "Wrong size on MovieGraphValueContainer_SetValueClass"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueClass, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueClass::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueClass, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_SetValueClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueContainerType \ +static_assert(alignof(MovieGraphValueContainer_SetValueContainerType) == 0x000001, "Wrong alignment on MovieGraphValueContainer_SetValueContainerType"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueContainerType) == 0x000001, "Wrong size on MovieGraphValueContainer_SetValueContainerType"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueContainerType, ContainerType) == 0x000000, "Member 'MovieGraphValueContainer_SetValueContainerType::ContainerType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueDouble \ +static_assert(alignof(MovieGraphValueContainer_SetValueDouble) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueDouble"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueDouble) == 0x000010, "Wrong size on MovieGraphValueContainer_SetValueDouble"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueDouble, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueDouble::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueDouble, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_SetValueDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueEnum \ +static_assert(alignof(MovieGraphValueContainer_SetValueEnum) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueEnum"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueEnum) == 0x000018, "Wrong size on MovieGraphValueContainer_SetValueEnum"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueEnum, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueEnum::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueEnum, Enum) == 0x000008, "Member 'MovieGraphValueContainer_SetValueEnum::Enum' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueEnum, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_SetValueEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueFloat \ +static_assert(alignof(MovieGraphValueContainer_SetValueFloat) == 0x000004, "Wrong alignment on MovieGraphValueContainer_SetValueFloat"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueFloat) == 0x000008, "Wrong size on MovieGraphValueContainer_SetValueFloat"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueFloat, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueFloat::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueFloat, ReturnValue) == 0x000004, "Member 'MovieGraphValueContainer_SetValueFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueInt32 \ +static_assert(alignof(MovieGraphValueContainer_SetValueInt32) == 0x000004, "Wrong alignment on MovieGraphValueContainer_SetValueInt32"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueInt32) == 0x000008, "Wrong size on MovieGraphValueContainer_SetValueInt32"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueInt32, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueInt32::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueInt32, ReturnValue) == 0x000004, "Member 'MovieGraphValueContainer_SetValueInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueInt64 \ +static_assert(alignof(MovieGraphValueContainer_SetValueInt64) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueInt64"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueInt64) == 0x000010, "Wrong size on MovieGraphValueContainer_SetValueInt64"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueInt64, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueInt64::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueInt64, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_SetValueInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueName \ +static_assert(alignof(MovieGraphValueContainer_SetValueName) == 0x000004, "Wrong alignment on MovieGraphValueContainer_SetValueName"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueName) == 0x00000C, "Wrong size on MovieGraphValueContainer_SetValueName"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueName, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueName::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueName, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_SetValueName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueObject \ +static_assert(alignof(MovieGraphValueContainer_SetValueObject) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueObject"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueObject) == 0x000010, "Wrong size on MovieGraphValueContainer_SetValueObject"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueObject, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueObject::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueObject, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_SetValueObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueSerializedString \ +static_assert(alignof(MovieGraphValueContainer_SetValueSerializedString) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueSerializedString"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueSerializedString) == 0x000018, "Wrong size on MovieGraphValueContainer_SetValueSerializedString"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueSerializedString, NewValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueSerializedString::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueSerializedString, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_SetValueSerializedString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueString \ +static_assert(alignof(MovieGraphValueContainer_SetValueString) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueString"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueString) == 0x000018, "Wrong size on MovieGraphValueContainer_SetValueString"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueString, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueString::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueString, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_SetValueString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueText \ +static_assert(alignof(MovieGraphValueContainer_SetValueText) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueText"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueText) == 0x000020, "Wrong size on MovieGraphValueContainer_SetValueText"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueText, InValue) == 0x000000, "Member 'MovieGraphValueContainer_SetValueText::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueText, ReturnValue) == 0x000018, "Member 'MovieGraphValueContainer_SetValueText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueType \ +static_assert(alignof(MovieGraphValueContainer_SetValueType) == 0x000001, "Wrong alignment on MovieGraphValueContainer_SetValueType"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueType) == 0x000001, "Wrong size on MovieGraphValueContainer_SetValueType"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueType, ValueType) == 0x000000, "Member 'MovieGraphValueContainer_SetValueType::ValueType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_SetValueTypeObject \ +static_assert(alignof(MovieGraphValueContainer_SetValueTypeObject) == 0x000008, "Wrong alignment on MovieGraphValueContainer_SetValueTypeObject"); \ +static_assert(sizeof(MovieGraphValueContainer_SetValueTypeObject) == 0x000008, "Wrong size on MovieGraphValueContainer_SetValueTypeObject"); \ +static_assert(offsetof(MovieGraphValueContainer_SetValueTypeObject, ValueTypeObject) == 0x000000, "Member 'MovieGraphValueContainer_SetValueTypeObject::ValueTypeObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueBool \ +static_assert(alignof(MovieGraphValueContainer_GetValueBool) == 0x000001, "Wrong alignment on MovieGraphValueContainer_GetValueBool"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueBool) == 0x000002, "Wrong size on MovieGraphValueContainer_GetValueBool"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueBool, bOutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueBool::bOutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueBool, ReturnValue) == 0x000001, "Member 'MovieGraphValueContainer_GetValueBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueByte \ +static_assert(alignof(MovieGraphValueContainer_GetValueByte) == 0x000001, "Wrong alignment on MovieGraphValueContainer_GetValueByte"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueByte) == 0x000002, "Wrong size on MovieGraphValueContainer_GetValueByte"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueByte, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueByte::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueByte, ReturnValue) == 0x000001, "Member 'MovieGraphValueContainer_GetValueByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueClass \ +static_assert(alignof(MovieGraphValueContainer_GetValueClass) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueClass"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueClass) == 0x000010, "Wrong size on MovieGraphValueContainer_GetValueClass"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueClass, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueClass::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueClass, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_GetValueClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueContainerType \ +static_assert(alignof(MovieGraphValueContainer_GetValueContainerType) == 0x000001, "Wrong alignment on MovieGraphValueContainer_GetValueContainerType"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueContainerType) == 0x000001, "Wrong size on MovieGraphValueContainer_GetValueContainerType"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueContainerType, ReturnValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueContainerType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueDouble \ +static_assert(alignof(MovieGraphValueContainer_GetValueDouble) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueDouble"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueDouble) == 0x000010, "Wrong size on MovieGraphValueContainer_GetValueDouble"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueDouble, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueDouble::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueDouble, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_GetValueDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueEnum \ +static_assert(alignof(MovieGraphValueContainer_GetValueEnum) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueEnum"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueEnum) == 0x000018, "Wrong size on MovieGraphValueContainer_GetValueEnum"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueEnum, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueEnum::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueEnum, RequestedEnum) == 0x000008, "Member 'MovieGraphValueContainer_GetValueEnum::RequestedEnum' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueEnum, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_GetValueEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueFloat \ +static_assert(alignof(MovieGraphValueContainer_GetValueFloat) == 0x000004, "Wrong alignment on MovieGraphValueContainer_GetValueFloat"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueFloat) == 0x000008, "Wrong size on MovieGraphValueContainer_GetValueFloat"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueFloat, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueFloat::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueFloat, ReturnValue) == 0x000004, "Member 'MovieGraphValueContainer_GetValueFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueInt32 \ +static_assert(alignof(MovieGraphValueContainer_GetValueInt32) == 0x000004, "Wrong alignment on MovieGraphValueContainer_GetValueInt32"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueInt32) == 0x000008, "Wrong size on MovieGraphValueContainer_GetValueInt32"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueInt32, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueInt32::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueInt32, ReturnValue) == 0x000004, "Member 'MovieGraphValueContainer_GetValueInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueInt64 \ +static_assert(alignof(MovieGraphValueContainer_GetValueInt64) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueInt64"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueInt64) == 0x000010, "Wrong size on MovieGraphValueContainer_GetValueInt64"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueInt64, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueInt64::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueInt64, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_GetValueInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueName \ +static_assert(alignof(MovieGraphValueContainer_GetValueName) == 0x000004, "Wrong alignment on MovieGraphValueContainer_GetValueName"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueName) == 0x00000C, "Wrong size on MovieGraphValueContainer_GetValueName"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueName, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueName::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueName, ReturnValue) == 0x000008, "Member 'MovieGraphValueContainer_GetValueName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueObject \ +static_assert(alignof(MovieGraphValueContainer_GetValueObject) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueObject"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueObject) == 0x000018, "Wrong size on MovieGraphValueContainer_GetValueObject"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueObject, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueObject::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueObject, RequestedClass) == 0x000008, "Member 'MovieGraphValueContainer_GetValueObject::RequestedClass' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueObject, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_GetValueObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueString \ +static_assert(alignof(MovieGraphValueContainer_GetValueString) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueString"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueString) == 0x000018, "Wrong size on MovieGraphValueContainer_GetValueString"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueString, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueString::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueString, ReturnValue) == 0x000010, "Member 'MovieGraphValueContainer_GetValueString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueText \ +static_assert(alignof(MovieGraphValueContainer_GetValueText) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueText"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueText) == 0x000020, "Wrong size on MovieGraphValueContainer_GetValueText"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueText, OutValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueText::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueText, ReturnValue) == 0x000018, "Member 'MovieGraphValueContainer_GetValueText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueType \ +static_assert(alignof(MovieGraphValueContainer_GetValueType) == 0x000001, "Wrong alignment on MovieGraphValueContainer_GetValueType"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueType) == 0x000001, "Wrong size on MovieGraphValueContainer_GetValueType"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueType, ReturnValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphValueContainer_GetValueTypeObject \ +static_assert(alignof(MovieGraphValueContainer_GetValueTypeObject) == 0x000008, "Wrong alignment on MovieGraphValueContainer_GetValueTypeObject"); \ +static_assert(sizeof(MovieGraphValueContainer_GetValueTypeObject) == 0x000008, "Wrong size on MovieGraphValueContainer_GetValueTypeObject"); \ +static_assert(offsetof(MovieGraphValueContainer_GetValueTypeObject, ReturnValue) == 0x000000, "Member 'MovieGraphValueContainer_GetValueTypeObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphValueContainer \ +static_assert(alignof(UMovieGraphValueContainer) == 0x000008, "Wrong alignment on UMovieGraphValueContainer"); \ +static_assert(sizeof(UMovieGraphValueContainer) == 0x000038, "Wrong size on UMovieGraphValueContainer"); \ +static_assert(offsetof(UMovieGraphValueContainer, Value) == 0x000028, "Member 'UMovieGraphValueContainer::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphMember \ +static_assert(alignof(UMovieGraphMember) == 0x000008, "Wrong alignment on UMovieGraphMember"); \ +static_assert(sizeof(UMovieGraphMember) == 0x000070, "Wrong size on UMovieGraphMember"); \ +static_assert(offsetof(UMovieGraphMember, Description) == 0x000038, "Member 'UMovieGraphMember::Description' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphMember, Name_0) == 0x000048, "Member 'UMovieGraphMember::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphMember, Guid) == 0x000058, "Member 'UMovieGraphMember::Guid' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphMember, bIsEditable) == 0x000068, "Member 'UMovieGraphMember::bIsEditable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphVariable \ +static_assert(alignof(UMovieGraphVariable) == 0x000008, "Wrong alignment on UMovieGraphVariable"); \ +static_assert(sizeof(UMovieGraphVariable) == 0x000078, "Wrong size on UMovieGraphVariable"); \ +static_assert(offsetof(UMovieGraphVariable, bIsGlobal) == 0x000070, "Member 'UMovieGraphVariable::bIsGlobal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphInterfaceBase \ +static_assert(alignof(UMovieGraphInterfaceBase) == 0x000008, "Wrong alignment on UMovieGraphInterfaceBase"); \ +static_assert(sizeof(UMovieGraphInterfaceBase) == 0x000078, "Wrong size on UMovieGraphInterfaceBase"); \ +static_assert(offsetof(UMovieGraphInterfaceBase, bIsBranch) == 0x000070, "Member 'UMovieGraphInterfaceBase::bIsBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphInput \ +static_assert(alignof(UMovieGraphInput) == 0x000008, "Wrong alignment on UMovieGraphInput"); \ +static_assert(sizeof(UMovieGraphInput) == 0x000078, "Wrong size on UMovieGraphInput"); \ + +#define DUMPER7_ASSERTS_UMovieGraphOutput \ +static_assert(alignof(UMovieGraphOutput) == 0x000008, "Wrong alignment on UMovieGraphOutput"); \ +static_assert(sizeof(UMovieGraphOutput) == 0x000078, "Wrong size on UMovieGraphOutput"); \ + +#define DUMPER7_ASSERTS_UMovieGraphEvaluatedConfig \ +static_assert(alignof(UMovieGraphEvaluatedConfig) == 0x000008, "Wrong alignment on UMovieGraphEvaluatedConfig"); \ +static_assert(sizeof(UMovieGraphEvaluatedConfig) == 0x000078, "Wrong size on UMovieGraphEvaluatedConfig"); \ +static_assert(offsetof(UMovieGraphEvaluatedConfig, BranchConfigMapping) == 0x000028, "Member 'UMovieGraphEvaluatedConfig::BranchConfigMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphConfig_AddVariable \ +static_assert(alignof(MovieGraphConfig_AddVariable) == 0x000008, "Wrong alignment on MovieGraphConfig_AddVariable"); \ +static_assert(sizeof(MovieGraphConfig_AddVariable) == 0x000010, "Wrong size on MovieGraphConfig_AddVariable"); \ +static_assert(offsetof(MovieGraphConfig_AddVariable, InCustomBaseName) == 0x000000, "Member 'MovieGraphConfig_AddVariable::InCustomBaseName' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphConfig_AddVariable, ReturnValue) == 0x000008, "Member 'MovieGraphConfig_AddVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphConfig_CreateFlattenedGraph \ +static_assert(alignof(MovieGraphConfig_CreateFlattenedGraph) == 0x000008, "Wrong alignment on MovieGraphConfig_CreateFlattenedGraph"); \ +static_assert(sizeof(MovieGraphConfig_CreateFlattenedGraph) == 0x000080, "Wrong size on MovieGraphConfig_CreateFlattenedGraph"); \ +static_assert(offsetof(MovieGraphConfig_CreateFlattenedGraph, InContext) == 0x000000, "Member 'MovieGraphConfig_CreateFlattenedGraph::InContext' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphConfig_CreateFlattenedGraph, ReturnValue) == 0x000078, "Member 'MovieGraphConfig_CreateFlattenedGraph::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphConfig_GetVariables \ +static_assert(alignof(MovieGraphConfig_GetVariables) == 0x000008, "Wrong alignment on MovieGraphConfig_GetVariables"); \ +static_assert(sizeof(MovieGraphConfig_GetVariables) == 0x000018, "Wrong size on MovieGraphConfig_GetVariables"); \ +static_assert(offsetof(MovieGraphConfig_GetVariables, bIncludeGlobal) == 0x000000, "Member 'MovieGraphConfig_GetVariables::bIncludeGlobal' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphConfig_GetVariables, ReturnValue) == 0x000008, "Member 'MovieGraphConfig_GetVariables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphConfig \ +static_assert(alignof(UMovieGraphConfig) == 0x000008, "Wrong alignment on UMovieGraphConfig"); \ +static_assert(sizeof(UMovieGraphConfig) == 0x000078, "Wrong size on UMovieGraphConfig"); \ +static_assert(offsetof(UMovieGraphConfig, AllNodes) == 0x000028, "Member 'UMovieGraphConfig::AllNodes' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphConfig, InputNode) == 0x000038, "Member 'UMovieGraphConfig::InputNode' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphConfig, OutputNode) == 0x000040, "Member 'UMovieGraphConfig::OutputNode' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphConfig, Variables) == 0x000048, "Member 'UMovieGraphConfig::Variables' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphConfig, Inputs) == 0x000058, "Member 'UMovieGraphConfig::Inputs' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphConfig, Outputs) == 0x000068, "Member 'UMovieGraphConfig::Outputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphTimeStepBase \ +static_assert(alignof(UMovieGraphTimeStepBase) == 0x000008, "Wrong alignment on UMovieGraphTimeStepBase"); \ +static_assert(sizeof(UMovieGraphTimeStepBase) == 0x000028, "Wrong size on UMovieGraphTimeStepBase"); \ + +#define DUMPER7_ASSERTS_UMovieGraphRendererBase \ +static_assert(alignof(UMovieGraphRendererBase) == 0x000008, "Wrong alignment on UMovieGraphRendererBase"); \ +static_assert(sizeof(UMovieGraphRendererBase) == 0x000028, "Wrong size on UMovieGraphRendererBase"); \ + +#define DUMPER7_ASSERTS_UMovieGraphDataSourceBase \ +static_assert(alignof(UMovieGraphDataSourceBase) == 0x000008, "Wrong alignment on UMovieGraphDataSourceBase"); \ +static_assert(sizeof(UMovieGraphDataSourceBase) == 0x000028, "Wrong size on UMovieGraphDataSourceBase"); \ + +#define DUMPER7_ASSERTS_UMovieGraphDefaultRenderer \ +static_assert(alignof(UMovieGraphDefaultRenderer) == 0x000008, "Wrong alignment on UMovieGraphDefaultRenderer"); \ +static_assert(sizeof(UMovieGraphDefaultRenderer) == 0x0001B0, "Wrong size on UMovieGraphDefaultRenderer"); \ +static_assert(offsetof(UMovieGraphDefaultRenderer, RenderPassesInUse) == 0x000028, "Member 'UMovieGraphDefaultRenderer::RenderPassesInUse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphDeferredRenderPassNode \ +static_assert(alignof(UMovieGraphDeferredRenderPassNode) == 0x000008, "Wrong alignment on UMovieGraphDeferredRenderPassNode"); \ +static_assert(sizeof(UMovieGraphDeferredRenderPassNode) == 0x0000A0, "Wrong size on UMovieGraphDeferredRenderPassNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphEdge \ +static_assert(alignof(UMovieGraphEdge) == 0x000008, "Wrong alignment on UMovieGraphEdge"); \ +static_assert(sizeof(UMovieGraphEdge) == 0x000038, "Wrong size on UMovieGraphEdge"); \ +static_assert(offsetof(UMovieGraphEdge, InputPin) == 0x000028, "Member 'UMovieGraphEdge::InputPin' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphEdge, OutputPin) == 0x000030, "Member 'UMovieGraphEdge::OutputPin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphFileOutputNode \ +static_assert(alignof(UMovieGraphFileOutputNode) == 0x000008, "Wrong alignment on UMovieGraphFileOutputNode"); \ +static_assert(sizeof(UMovieGraphFileOutputNode) == 0x000090, "Wrong size on UMovieGraphFileOutputNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphGetCVarValueNode \ +static_assert(alignof(UMovieGraphGetCVarValueNode) == 0x000008, "Wrong alignment on UMovieGraphGetCVarValueNode"); \ +static_assert(sizeof(UMovieGraphGetCVarValueNode) == 0x0000A8, "Wrong size on UMovieGraphGetCVarValueNode"); \ +static_assert(offsetof(UMovieGraphGetCVarValueNode, Name_0) == 0x000098, "Member 'UMovieGraphGetCVarValueNode::Name_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphGlobalGameOverridesNode \ +static_assert(alignof(UMovieGraphGlobalGameOverridesNode) == 0x000008, "Wrong alignment on UMovieGraphGlobalGameOverridesNode"); \ +static_assert(sizeof(UMovieGraphGlobalGameOverridesNode) == 0x0000C0, "Wrong size on UMovieGraphGlobalGameOverridesNode"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, GameModeOverride) == 0x000098, "Member 'UMovieGraphGlobalGameOverridesNode::GameModeOverride' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bCinematicQualitySettings) == 0x0000A0, "Member 'UMovieGraphGlobalGameOverridesNode::bCinematicQualitySettings' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, TextureStreaming) == 0x0000A1, "Member 'UMovieGraphGlobalGameOverridesNode::TextureStreaming' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bUseLODZero) == 0x0000A2, "Member 'UMovieGraphGlobalGameOverridesNode::bUseLODZero' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bDisableHLODs) == 0x0000A3, "Member 'UMovieGraphGlobalGameOverridesNode::bDisableHLODs' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bUseHighQualityShadows) == 0x0000A4, "Member 'UMovieGraphGlobalGameOverridesNode::bUseHighQualityShadows' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, ShadowDistanceScale) == 0x0000A8, "Member 'UMovieGraphGlobalGameOverridesNode::ShadowDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, ShadowRadiusThreshold) == 0x0000AC, "Member 'UMovieGraphGlobalGameOverridesNode::ShadowRadiusThreshold' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, ViewDistanceScale) == 0x0000B0, "Member 'UMovieGraphGlobalGameOverridesNode::ViewDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bFlushGrassStreaming) == 0x0000B4, "Member 'UMovieGraphGlobalGameOverridesNode::bFlushGrassStreaming' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, bFlushStreamingManagers) == 0x0000B5, "Member 'UMovieGraphGlobalGameOverridesNode::bFlushStreamingManagers' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphGlobalGameOverridesNode, VirtualTextureFeedbackFactor) == 0x0000B8, "Member 'UMovieGraphGlobalGameOverridesNode::VirtualTextureFeedbackFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphImageSequenceOutputNode \ +static_assert(alignof(UMovieGraphImageSequenceOutputNode) == 0x000008, "Wrong alignment on UMovieGraphImageSequenceOutputNode"); \ +static_assert(sizeof(UMovieGraphImageSequenceOutputNode) == 0x0000B0, "Wrong size on UMovieGraphImageSequenceOutputNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphImageSequenceOutputNode_BMP \ +static_assert(alignof(UMovieGraphImageSequenceOutputNode_BMP) == 0x000008, "Wrong alignment on UMovieGraphImageSequenceOutputNode_BMP"); \ +static_assert(sizeof(UMovieGraphImageSequenceOutputNode_BMP) == 0x0000B0, "Wrong size on UMovieGraphImageSequenceOutputNode_BMP"); \ + +#define DUMPER7_ASSERTS_UMovieGraphImageSequenceOutputNode_JPG \ +static_assert(alignof(UMovieGraphImageSequenceOutputNode_JPG) == 0x000008, "Wrong alignment on UMovieGraphImageSequenceOutputNode_JPG"); \ +static_assert(sizeof(UMovieGraphImageSequenceOutputNode_JPG) == 0x0000B0, "Wrong size on UMovieGraphImageSequenceOutputNode_JPG"); \ + +#define DUMPER7_ASSERTS_UMovieGraphImageSequenceOutputNode_PNG \ +static_assert(alignof(UMovieGraphImageSequenceOutputNode_PNG) == 0x000008, "Wrong alignment on UMovieGraphImageSequenceOutputNode_PNG"); \ +static_assert(sizeof(UMovieGraphImageSequenceOutputNode_PNG) == 0x0000B0, "Wrong size on UMovieGraphImageSequenceOutputNode_PNG"); \ + +#define DUMPER7_ASSERTS_UMovieGraphInputNode \ +static_assert(alignof(UMovieGraphInputNode) == 0x000008, "Wrong alignment on UMovieGraphInputNode"); \ +static_assert(sizeof(UMovieGraphInputNode) == 0x000090, "Wrong size on UMovieGraphInputNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphLinearTimeStep \ +static_assert(alignof(UMovieGraphLinearTimeStep) == 0x000008, "Wrong alignment on UMovieGraphLinearTimeStep"); \ +static_assert(sizeof(UMovieGraphLinearTimeStep) == 0x000140, "Wrong size on UMovieGraphLinearTimeStep"); \ +static_assert(offsetof(UMovieGraphLinearTimeStep, CurrentTimeStepData) == 0x000028, "Member 'UMovieGraphLinearTimeStep::CurrentTimeStepData' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphLinearTimeStep, CustomTimeStep) == 0x000130, "Member 'UMovieGraphLinearTimeStep::CustomTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphLinearTimeStep, PrevCustomTimeStep) == 0x000138, "Member 'UMovieGraphLinearTimeStep::PrevCustomTimeStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphEngineTimeStep \ +static_assert(alignof(UMovieGraphEngineTimeStep) == 0x000008, "Wrong alignment on UMovieGraphEngineTimeStep"); \ +static_assert(sizeof(UMovieGraphEngineTimeStep) == 0x000038, "Wrong size on UMovieGraphEngineTimeStep"); \ + +#define DUMPER7_ASSERTS_UMovieGraphModifierNode \ +static_assert(alignof(UMovieGraphModifierNode) == 0x000008, "Wrong alignment on UMovieGraphModifierNode"); \ +static_assert(sizeof(UMovieGraphModifierNode) == 0x0000C0, "Wrong size on UMovieGraphModifierNode"); \ +static_assert(offsetof(UMovieGraphModifierNode, ModifierName) == 0x000098, "Member 'UMovieGraphModifierNode::ModifierName' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphModifierNode, ModifiedCollectionName) == 0x0000A8, "Member 'UMovieGraphModifierNode::ModifiedCollectionName' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphModifierNode, ModifierClass) == 0x0000B8, "Member 'UMovieGraphModifierNode::ModifierClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphOutputNode \ +static_assert(alignof(UMovieGraphOutputNode) == 0x000008, "Wrong alignment on UMovieGraphOutputNode"); \ +static_assert(sizeof(UMovieGraphOutputNode) == 0x000090, "Wrong size on UMovieGraphOutputNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphOutputSettingNode \ +static_assert(alignof(UMovieGraphOutputSettingNode) == 0x000008, "Wrong alignment on UMovieGraphOutputSettingNode"); \ +static_assert(sizeof(UMovieGraphOutputSettingNode) == 0x0000D8, "Wrong size on UMovieGraphOutputSettingNode"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, OutputDirectory) == 0x000098, "Member 'UMovieGraphOutputSettingNode::OutputDirectory' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, FileNameFormat) == 0x0000A8, "Member 'UMovieGraphOutputSettingNode::FileNameFormat' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, OutputResolution) == 0x0000B8, "Member 'UMovieGraphOutputSettingNode::OutputResolution' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, OutputFrameRate) == 0x0000C0, "Member 'UMovieGraphOutputSettingNode::OutputFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, bOverwriteExistingOutput) == 0x0000C8, "Member 'UMovieGraphOutputSettingNode::bOverwriteExistingOutput' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, ZeroPadFrameNumbers) == 0x0000CC, "Member 'UMovieGraphOutputSettingNode::ZeroPadFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphOutputSettingNode, FrameNumberOffset) == 0x0000D0, "Member 'UMovieGraphOutputSettingNode::FrameNumberOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphPin \ +static_assert(alignof(UMovieGraphPin) == 0x000008, "Wrong alignment on UMovieGraphPin"); \ +static_assert(sizeof(UMovieGraphPin) == 0x000050, "Wrong size on UMovieGraphPin"); \ +static_assert(offsetof(UMovieGraphPin, Node) == 0x000028, "Member 'UMovieGraphPin::Node' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPin, Properties) == 0x000030, "Member 'UMovieGraphPin::Properties' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPin, Edges) == 0x000040, "Member 'UMovieGraphPin::Edges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBase_RequestShutdown \ +static_assert(alignof(MoviePipelineBase_RequestShutdown) == 0x000001, "Wrong alignment on MoviePipelineBase_RequestShutdown"); \ +static_assert(sizeof(MoviePipelineBase_RequestShutdown) == 0x000001, "Wrong size on MoviePipelineBase_RequestShutdown"); \ +static_assert(offsetof(MoviePipelineBase_RequestShutdown, bIsError) == 0x000000, "Member 'MoviePipelineBase_RequestShutdown::bIsError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBase_Shutdown \ +static_assert(alignof(MoviePipelineBase_Shutdown) == 0x000001, "Wrong alignment on MoviePipelineBase_Shutdown"); \ +static_assert(sizeof(MoviePipelineBase_Shutdown) == 0x000001, "Wrong size on MoviePipelineBase_Shutdown"); \ +static_assert(offsetof(MoviePipelineBase_Shutdown, bIsError) == 0x000000, "Member 'MoviePipelineBase_Shutdown::bIsError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBase_GetPipelineState \ +static_assert(alignof(MoviePipelineBase_GetPipelineState) == 0x000001, "Wrong alignment on MoviePipelineBase_GetPipelineState"); \ +static_assert(sizeof(MoviePipelineBase_GetPipelineState) == 0x000001, "Wrong size on MoviePipelineBase_GetPipelineState"); \ +static_assert(offsetof(MoviePipelineBase_GetPipelineState, ReturnValue) == 0x000000, "Member 'MoviePipelineBase_GetPipelineState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBase_IsShutdownRequested \ +static_assert(alignof(MoviePipelineBase_IsShutdownRequested) == 0x000001, "Wrong alignment on MoviePipelineBase_IsShutdownRequested"); \ +static_assert(sizeof(MoviePipelineBase_IsShutdownRequested) == 0x000001, "Wrong size on MoviePipelineBase_IsShutdownRequested"); \ +static_assert(offsetof(MoviePipelineBase_IsShutdownRequested, ReturnValue) == 0x000000, "Member 'MoviePipelineBase_IsShutdownRequested::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineBase \ +static_assert(alignof(UMoviePipelineBase) == 0x000008, "Wrong alignment on UMoviePipelineBase"); \ +static_assert(sizeof(UMoviePipelineBase) == 0x000058, "Wrong size on UMoviePipelineBase"); \ + +#define DUMPER7_ASSERTS_MovieGraphPipeline_Initialize \ +static_assert(alignof(MovieGraphPipeline_Initialize) == 0x000008, "Wrong alignment on MovieGraphPipeline_Initialize"); \ +static_assert(sizeof(MovieGraphPipeline_Initialize) == 0x000028, "Wrong size on MovieGraphPipeline_Initialize"); \ +static_assert(offsetof(MovieGraphPipeline_Initialize, InJob) == 0x000000, "Member 'MovieGraphPipeline_Initialize::InJob' has a wrong offset!"); \ +static_assert(offsetof(MovieGraphPipeline_Initialize, InitConfig) == 0x000008, "Member 'MovieGraphPipeline_Initialize::InitConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphPipeline_SetInitializationTime \ +static_assert(alignof(MovieGraphPipeline_SetInitializationTime) == 0x000008, "Wrong alignment on MovieGraphPipeline_SetInitializationTime"); \ +static_assert(sizeof(MovieGraphPipeline_SetInitializationTime) == 0x000008, "Wrong size on MovieGraphPipeline_SetInitializationTime"); \ +static_assert(offsetof(MovieGraphPipeline_SetInitializationTime, InDateTime) == 0x000000, "Member 'MovieGraphPipeline_SetInitializationTime::InDateTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphPipeline_GetCurrentJob \ +static_assert(alignof(MovieGraphPipeline_GetCurrentJob) == 0x000008, "Wrong alignment on MovieGraphPipeline_GetCurrentJob"); \ +static_assert(sizeof(MovieGraphPipeline_GetCurrentJob) == 0x000008, "Wrong size on MovieGraphPipeline_GetCurrentJob"); \ +static_assert(offsetof(MovieGraphPipeline_GetCurrentJob, ReturnValue) == 0x000000, "Member 'MovieGraphPipeline_GetCurrentJob::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphPipeline_GetInitializationTime \ +static_assert(alignof(MovieGraphPipeline_GetInitializationTime) == 0x000008, "Wrong alignment on MovieGraphPipeline_GetInitializationTime"); \ +static_assert(sizeof(MovieGraphPipeline_GetInitializationTime) == 0x000008, "Wrong size on MovieGraphPipeline_GetInitializationTime"); \ +static_assert(offsetof(MovieGraphPipeline_GetInitializationTime, ReturnValue) == 0x000000, "Member 'MovieGraphPipeline_GetInitializationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphPipeline \ +static_assert(alignof(UMovieGraphPipeline) == 0x000008, "Wrong alignment on UMovieGraphPipeline"); \ +static_assert(sizeof(UMovieGraphPipeline) == 0x000130, "Wrong size on UMovieGraphPipeline"); \ +static_assert(offsetof(UMovieGraphPipeline, GraphTimeStepInstance) == 0x000058, "Member 'UMovieGraphPipeline::GraphTimeStepInstance' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPipeline, GraphRendererInstance) == 0x000060, "Member 'UMovieGraphPipeline::GraphRendererInstance' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPipeline, GraphDataSourceInstance) == 0x000068, "Member 'UMovieGraphPipeline::GraphDataSourceInstance' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPipeline, CurrentJob) == 0x000070, "Member 'UMovieGraphPipeline::CurrentJob' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPipeline, ActiveShotList) == 0x000078, "Member 'UMovieGraphPipeline::ActiveShotList' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphPipeline, OutputNodesDataSentTo) == 0x000088, "Member 'UMovieGraphPipeline::OutputNodesDataSentTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphPathTracedRendererNode \ +static_assert(alignof(UMovieGraphPathTracedRendererNode) == 0x000008, "Wrong alignment on UMovieGraphPathTracedRendererNode"); \ +static_assert(sizeof(UMovieGraphPathTracedRendererNode) == 0x000090, "Wrong size on UMovieGraphPathTracedRendererNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphEXRSequenceNode \ +static_assert(alignof(UMovieGraphEXRSequenceNode) == 0x000008, "Wrong alignment on UMovieGraphEXRSequenceNode"); \ +static_assert(sizeof(UMovieGraphEXRSequenceNode) == 0x000090, "Wrong size on UMovieGraphEXRSequenceNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphAntiAliasingNode \ +static_assert(alignof(UMovieGraphAntiAliasingNode) == 0x000008, "Wrong alignment on UMovieGraphAntiAliasingNode"); \ +static_assert(sizeof(UMovieGraphAntiAliasingNode) == 0x000090, "Wrong size on UMovieGraphAntiAliasingNode"); \ + +#define DUMPER7_ASSERTS_UMovieGraphRenderLayerNode \ +static_assert(alignof(UMovieGraphRenderLayerNode) == 0x000008, "Wrong alignment on UMovieGraphRenderLayerNode"); \ +static_assert(sizeof(UMovieGraphRenderLayerNode) == 0x0000A8, "Wrong size on UMovieGraphRenderLayerNode"); \ +static_assert(offsetof(UMovieGraphRenderLayerNode, LayerName) == 0x000098, "Member 'UMovieGraphRenderLayerNode::LayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphSelectNode \ +static_assert(alignof(UMovieGraphSelectNode) == 0x000008, "Wrong alignment on UMovieGraphSelectNode"); \ +static_assert(sizeof(UMovieGraphSelectNode) == 0x0000C0, "Wrong size on UMovieGraphSelectNode"); \ +static_assert(offsetof(UMovieGraphSelectNode, SelectOptions) == 0x000090, "Member 'UMovieGraphSelectNode::SelectOptions' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphSelectNode, SelectedOption) == 0x0000A0, "Member 'UMovieGraphSelectNode::SelectedOption' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphSelectNode, Description) == 0x0000B0, "Member 'UMovieGraphSelectNode::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphSequenceDataSource \ +static_assert(alignof(UMovieGraphSequenceDataSource) == 0x000008, "Wrong alignment on UMovieGraphSequenceDataSource"); \ +static_assert(sizeof(UMovieGraphSequenceDataSource) == 0x000040, "Wrong size on UMovieGraphSequenceDataSource"); \ +static_assert(offsetof(UMovieGraphSequenceDataSource, LevelSequenceActor) == 0x000028, "Member 'UMovieGraphSequenceDataSource::LevelSequenceActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphSetCVarValueNode \ +static_assert(alignof(UMovieGraphSetCVarValueNode) == 0x000008, "Wrong alignment on UMovieGraphSetCVarValueNode"); \ +static_assert(sizeof(UMovieGraphSetCVarValueNode) == 0x0000B8, "Wrong size on UMovieGraphSetCVarValueNode"); \ +static_assert(offsetof(UMovieGraphSetCVarValueNode, Name_0) == 0x000098, "Member 'UMovieGraphSetCVarValueNode::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphSetCVarValueNode, Value) == 0x0000A8, "Member 'UMovieGraphSetCVarValueNode::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphSubgraphNode_SetSubGraphAsset \ +static_assert(alignof(MovieGraphSubgraphNode_SetSubGraphAsset) == 0x000008, "Wrong alignment on MovieGraphSubgraphNode_SetSubGraphAsset"); \ +static_assert(sizeof(MovieGraphSubgraphNode_SetSubGraphAsset) == 0x000028, "Wrong size on MovieGraphSubgraphNode_SetSubGraphAsset"); \ +static_assert(offsetof(MovieGraphSubgraphNode_SetSubGraphAsset, InSubgraphAsset) == 0x000000, "Member 'MovieGraphSubgraphNode_SetSubGraphAsset::InSubgraphAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieGraphSubgraphNode_GetSubgraphAsset \ +static_assert(alignof(MovieGraphSubgraphNode_GetSubgraphAsset) == 0x000008, "Wrong alignment on MovieGraphSubgraphNode_GetSubgraphAsset"); \ +static_assert(sizeof(MovieGraphSubgraphNode_GetSubgraphAsset) == 0x000008, "Wrong size on MovieGraphSubgraphNode_GetSubgraphAsset"); \ +static_assert(offsetof(MovieGraphSubgraphNode_GetSubgraphAsset, ReturnValue) == 0x000000, "Member 'MovieGraphSubgraphNode_GetSubgraphAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphSubgraphNode \ +static_assert(alignof(UMovieGraphSubgraphNode) == 0x000008, "Wrong alignment on UMovieGraphSubgraphNode"); \ +static_assert(sizeof(UMovieGraphSubgraphNode) == 0x0000B8, "Wrong size on UMovieGraphSubgraphNode"); \ +static_assert(offsetof(UMovieGraphSubgraphNode, SubgraphAsset) == 0x000090, "Member 'UMovieGraphSubgraphNode::SubgraphAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieGraphVariableNode \ +static_assert(alignof(UMovieGraphVariableNode) == 0x000008, "Wrong alignment on UMovieGraphVariableNode"); \ +static_assert(sizeof(UMovieGraphVariableNode) == 0x0000A8, "Wrong size on UMovieGraphVariableNode"); \ +static_assert(offsetof(UMovieGraphVariableNode, GraphVariable) == 0x000090, "Member 'UMovieGraphVariableNode::GraphVariable' has a wrong offset!"); \ +static_assert(offsetof(UMovieGraphVariableNode, OutputPin) == 0x000098, "Member 'UMovieGraphVariableNode::OutputPin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueSerializedString \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueSerializedString) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueSerializedString"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueSerializedString) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_GetValueSerializedString"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueSerializedString, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueSerializedString::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueSerializedString, ReturnValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueSerializedString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState, InGraphVariable) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState::InGraphVariable' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState, bOutIsEnabled) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState::bOutIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_GetVariableAssignmentEnableState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetGraphConfig \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetGraphConfig) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetGraphConfig"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetGraphConfig) == 0x000028, "Wrong size on MovieJobVariableAssignmentContainer_SetGraphConfig"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetGraphConfig, InGraphConfig) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetGraphConfig::InGraphConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueBool \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueBool) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueBool"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueBool) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_SetValueBool"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueBool, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueBool::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueBool, bInValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueBool::bInValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueBool, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_SetValueBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueByte \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueByte) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueByte"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueByte) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_SetValueByte"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueByte, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueByte::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueByte, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueByte::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueByte, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_SetValueByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueClass \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueClass) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueClass"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueClass) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_SetValueClass"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueClass, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueClass::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueClass, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueClass::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueClass, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueDouble \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueDouble) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueDouble"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueDouble) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_SetValueDouble"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueDouble, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueDouble::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueDouble, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueDouble::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueDouble, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueEnum \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueEnum) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueEnum"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueEnum) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_SetValueEnum"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueEnum, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueEnum::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueEnum, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueEnum::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueEnum, Enum) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueEnum::Enum' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueEnum, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_SetValueEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueFloat \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueFloat) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueFloat"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueFloat) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_SetValueFloat"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueFloat, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueFloat::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueFloat, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueFloat::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueFloat, ReturnValue) == 0x00000C, "Member 'MovieJobVariableAssignmentContainer_SetValueFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueInt32 \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueInt32) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueInt32"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueInt32) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_SetValueInt32"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt32, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueInt32::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt32, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueInt32::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt32, ReturnValue) == 0x00000C, "Member 'MovieJobVariableAssignmentContainer_SetValueInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueInt64 \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueInt64) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueInt64"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueInt64) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_SetValueInt64"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt64, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueInt64::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt64, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueInt64::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueInt64, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueName \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueName) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueName"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueName) == 0x000014, "Wrong size on MovieJobVariableAssignmentContainer_SetValueName"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueName, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueName, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueName::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueName, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueObject \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueObject) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueObject"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueObject) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_SetValueObject"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueObject, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueObject::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueObject, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueObject::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueObject, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_SetValueObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueSerializedString \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueSerializedString) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueSerializedString"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueSerializedString) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_SetValueSerializedString"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueSerializedString, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueSerializedString::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueSerializedString, NewValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueSerializedString::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueSerializedString, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_SetValueSerializedString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueString \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueString) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueString"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueString) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_SetValueString"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueString, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueString::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueString, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueString::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueString, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_SetValueString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetValueText \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetValueText) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetValueText"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetValueText) == 0x000028, "Wrong size on MovieJobVariableAssignmentContainer_SetValueText"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueText, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetValueText::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueText, InValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetValueText::InValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetValueText, ReturnValue) == 0x000020, "Member 'MovieJobVariableAssignmentContainer_SetValueText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState \ +static_assert(alignof(MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState, InGraphVariable) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState::InGraphVariable' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState, bIsEnabled) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_SetVariableAssignmentEnableState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueBool \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueBool) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueBool"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueBool) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_GetValueBool"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueBool, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueBool::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueBool, bOutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueBool::bOutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueBool, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_GetValueBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueByte \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueByte) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueByte"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueByte) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_GetValueByte"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueByte, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueByte::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueByte, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueByte::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueByte, ReturnValue) == 0x000009, "Member 'MovieJobVariableAssignmentContainer_GetValueByte::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueClass \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueClass) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueClass"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueClass) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_GetValueClass"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueClass, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueClass::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueClass, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueClass::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueClass, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueContainerType \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueContainerType) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueContainerType"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueContainerType) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_GetValueContainerType"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueContainerType, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueContainerType::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueContainerType, ReturnValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueContainerType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueDouble \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueDouble) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueDouble"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueDouble) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_GetValueDouble"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueDouble, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueDouble::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueDouble, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueDouble::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueDouble, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueEnum \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueEnum) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueEnum"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueEnum) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_GetValueEnum"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueEnum, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueEnum::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueEnum, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueEnum::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueEnum, RequestedEnum) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueEnum::RequestedEnum' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueEnum, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_GetValueEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueFloat \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueFloat) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueFloat"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueFloat) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_GetValueFloat"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueFloat, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueFloat::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueFloat, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueFloat::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueFloat, ReturnValue) == 0x00000C, "Member 'MovieJobVariableAssignmentContainer_GetValueFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueInt32 \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueInt32) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueInt32"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueInt32) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_GetValueInt32"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt32, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueInt32::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt32, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueInt32::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt32, ReturnValue) == 0x00000C, "Member 'MovieJobVariableAssignmentContainer_GetValueInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueInt64 \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueInt64) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueInt64"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueInt64) == 0x000018, "Wrong size on MovieJobVariableAssignmentContainer_GetValueInt64"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt64, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueInt64::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt64, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueInt64::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueInt64, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueInt64::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueName \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueName) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueName"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueName) == 0x000014, "Wrong size on MovieJobVariableAssignmentContainer_GetValueName"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueName, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueName::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueName, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueName::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueName, ReturnValue) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueObject \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueObject) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueObject"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueObject) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_GetValueObject"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueObject, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueObject::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueObject, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueObject::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueObject, RequestedClass) == 0x000010, "Member 'MovieJobVariableAssignmentContainer_GetValueObject::RequestedClass' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueObject, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_GetValueObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueString \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueString) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueString"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueString) == 0x000020, "Wrong size on MovieJobVariableAssignmentContainer_GetValueString"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueString, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueString::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueString, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueString::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueString, ReturnValue) == 0x000018, "Member 'MovieJobVariableAssignmentContainer_GetValueString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueText \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueText) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueText"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueText) == 0x000028, "Wrong size on MovieJobVariableAssignmentContainer_GetValueText"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueText, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueText::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueText, OutValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueText::OutValue' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueText, ReturnValue) == 0x000020, "Member 'MovieJobVariableAssignmentContainer_GetValueText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueType \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueType) == 0x000004, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueType"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueType) == 0x00000C, "Wrong size on MovieJobVariableAssignmentContainer_GetValueType"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueType, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueType::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueType, ReturnValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieJobVariableAssignmentContainer_GetValueTypeObject \ +static_assert(alignof(MovieJobVariableAssignmentContainer_GetValueTypeObject) == 0x000008, "Wrong alignment on MovieJobVariableAssignmentContainer_GetValueTypeObject"); \ +static_assert(sizeof(MovieJobVariableAssignmentContainer_GetValueTypeObject) == 0x000010, "Wrong size on MovieJobVariableAssignmentContainer_GetValueTypeObject"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueTypeObject, PropertyName) == 0x000000, "Member 'MovieJobVariableAssignmentContainer_GetValueTypeObject::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieJobVariableAssignmentContainer_GetValueTypeObject, ReturnValue) == 0x000008, "Member 'MovieJobVariableAssignmentContainer_GetValueTypeObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieJobVariableAssignmentContainer \ +static_assert(alignof(UMovieJobVariableAssignmentContainer) == 0x000008, "Wrong alignment on UMovieJobVariableAssignmentContainer"); \ +static_assert(sizeof(UMovieJobVariableAssignmentContainer) == 0x000060, "Wrong size on UMovieJobVariableAssignmentContainer"); \ +static_assert(offsetof(UMovieJobVariableAssignmentContainer, Value) == 0x000028, "Member 'UMovieJobVariableAssignmentContainer::Value' has a wrong offset!"); \ +static_assert(offsetof(UMovieJobVariableAssignmentContainer, GraphPreset) == 0x000038, "Member 'UMovieJobVariableAssignmentContainer::GraphPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_SetIsEnabled \ +static_assert(alignof(MoviePipelineSetting_SetIsEnabled) == 0x000001, "Wrong alignment on MoviePipelineSetting_SetIsEnabled"); \ +static_assert(sizeof(MoviePipelineSetting_SetIsEnabled) == 0x000001, "Wrong size on MoviePipelineSetting_SetIsEnabled"); \ +static_assert(offsetof(MoviePipelineSetting_SetIsEnabled, bInEnabled) == 0x000000, "Member 'MoviePipelineSetting_SetIsEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_BuildNewProcessCommandLine \ +static_assert(alignof(MoviePipelineSetting_BuildNewProcessCommandLine) == 0x000008, "Wrong alignment on MoviePipelineSetting_BuildNewProcessCommandLine"); \ +static_assert(sizeof(MoviePipelineSetting_BuildNewProcessCommandLine) == 0x000020, "Wrong size on MoviePipelineSetting_BuildNewProcessCommandLine"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLine, InOutUnrealURLParams) == 0x000000, "Member 'MoviePipelineSetting_BuildNewProcessCommandLine::InOutUnrealURLParams' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLine, InOutCommandLineArgs) == 0x000010, "Member 'MoviePipelineSetting_BuildNewProcessCommandLine::InOutCommandLineArgs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_BuildNewProcessCommandLineArgs \ +static_assert(alignof(MoviePipelineSetting_BuildNewProcessCommandLineArgs) == 0x000008, "Wrong alignment on MoviePipelineSetting_BuildNewProcessCommandLineArgs"); \ +static_assert(sizeof(MoviePipelineSetting_BuildNewProcessCommandLineArgs) == 0x000040, "Wrong size on MoviePipelineSetting_BuildNewProcessCommandLineArgs"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLineArgs, InOutUnrealURLParams) == 0x000000, "Member 'MoviePipelineSetting_BuildNewProcessCommandLineArgs::InOutUnrealURLParams' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLineArgs, InOutCommandLineArgs) == 0x000010, "Member 'MoviePipelineSetting_BuildNewProcessCommandLineArgs::InOutCommandLineArgs' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLineArgs, InOutDeviceProfileCvars) == 0x000020, "Member 'MoviePipelineSetting_BuildNewProcessCommandLineArgs::InOutDeviceProfileCvars' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineSetting_BuildNewProcessCommandLineArgs, InOutExecCmds) == 0x000030, "Member 'MoviePipelineSetting_BuildNewProcessCommandLineArgs::InOutExecCmds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_IsEnabled \ +static_assert(alignof(MoviePipelineSetting_IsEnabled) == 0x000001, "Wrong alignment on MoviePipelineSetting_IsEnabled"); \ +static_assert(sizeof(MoviePipelineSetting_IsEnabled) == 0x000001, "Wrong size on MoviePipelineSetting_IsEnabled"); \ +static_assert(offsetof(MoviePipelineSetting_IsEnabled, ReturnValue) == 0x000000, "Member 'MoviePipelineSetting_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineSetting \ +static_assert(alignof(UMoviePipelineSetting) == 0x000008, "Wrong alignment on UMoviePipelineSetting"); \ +static_assert(sizeof(UMoviePipelineSetting) == 0x000048, "Wrong size on UMoviePipelineSetting"); \ +static_assert(offsetof(UMoviePipelineSetting, CachedPipeline) == 0x000028, "Member 'UMoviePipelineSetting::CachedPipeline' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineSetting, bEnabled) == 0x000030, "Member 'UMoviePipelineSetting::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCameraSetting \ +static_assert(alignof(UMoviePipelineCameraSetting) == 0x000008, "Wrong alignment on UMoviePipelineCameraSetting"); \ +static_assert(sizeof(UMoviePipelineCameraSetting) == 0x000058, "Wrong size on UMoviePipelineCameraSetting"); \ +static_assert(offsetof(UMoviePipelineCameraSetting, ShutterTiming) == 0x000048, "Member 'UMoviePipelineCameraSetting::ShutterTiming' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCameraSetting, OverscanPercentage) == 0x00004C, "Member 'UMoviePipelineCameraSetting::OverscanPercentage' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCameraSetting, bRenderAllCameras) == 0x000050, "Member 'UMoviePipelineCameraSetting::bRenderAllCameras' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMoviePipelineGameMode \ +static_assert(alignof(AMoviePipelineGameMode) == 0x000008, "Wrong alignment on AMoviePipelineGameMode"); \ +static_assert(sizeof(AMoviePipelineGameMode) == 0x000338, "Wrong size on AMoviePipelineGameMode"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineHighResSetting \ +static_assert(alignof(UMoviePipelineHighResSetting) == 0x000008, "Wrong alignment on UMoviePipelineHighResSetting"); \ +static_assert(sizeof(UMoviePipelineHighResSetting) == 0x000068, "Wrong size on UMoviePipelineHighResSetting"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, TileCount) == 0x000048, "Member 'UMoviePipelineHighResSetting::TileCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, TextureSharpnessBias) == 0x00004C, "Member 'UMoviePipelineHighResSetting::TextureSharpnessBias' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, OverlapRatio) == 0x000050, "Member 'UMoviePipelineHighResSetting::OverlapRatio' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, bOverrideSubSurfaceScattering) == 0x000054, "Member 'UMoviePipelineHighResSetting::bOverrideSubSurfaceScattering' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, BurleySampleCount) == 0x000058, "Member 'UMoviePipelineHighResSetting::BurleySampleCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineHighResSetting, bAllocateHistoryPerTile) == 0x00005C, "Member 'UMoviePipelineHighResSetting::bAllocateHistoryPerTile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineInProcessExecutorSettings \ +static_assert(alignof(UMoviePipelineInProcessExecutorSettings) == 0x000008, "Wrong alignment on UMoviePipelineInProcessExecutorSettings"); \ +static_assert(sizeof(UMoviePipelineInProcessExecutorSettings) == 0x000068, "Wrong size on UMoviePipelineInProcessExecutorSettings"); \ +static_assert(offsetof(UMoviePipelineInProcessExecutorSettings, bCloseEditor) == 0x000038, "Member 'UMoviePipelineInProcessExecutorSettings::bCloseEditor' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineInProcessExecutorSettings, AdditionalCommandLineArguments) == 0x000040, "Member 'UMoviePipelineInProcessExecutorSettings::AdditionalCommandLineArguments' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineInProcessExecutorSettings, InheritedCommandLineArguments) == 0x000050, "Member 'UMoviePipelineInProcessExecutorSettings::InheritedCommandLineArguments' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineInProcessExecutorSettings, InitialDelayFrameCount) == 0x000060, "Member 'UMoviePipelineInProcessExecutorSettings::InitialDelayFrameCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineOutputBase \ +static_assert(alignof(UMoviePipelineOutputBase) == 0x000008, "Wrong alignment on UMoviePipelineOutputBase"); \ +static_assert(sizeof(UMoviePipelineOutputBase) == 0x000048, "Wrong size on UMoviePipelineOutputBase"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollection_AddQuery \ +static_assert(alignof(MoviePipelineCollection_AddQuery) == 0x000008, "Wrong alignment on MoviePipelineCollection_AddQuery"); \ +static_assert(sizeof(MoviePipelineCollection_AddQuery) == 0x000008, "Wrong size on MoviePipelineCollection_AddQuery"); \ +static_assert(offsetof(MoviePipelineCollection_AddQuery, Query) == 0x000000, "Member 'MoviePipelineCollection_AddQuery::Query' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollection_SetCollectionName \ +static_assert(alignof(MoviePipelineCollection_SetCollectionName) == 0x000008, "Wrong alignment on MoviePipelineCollection_SetCollectionName"); \ +static_assert(sizeof(MoviePipelineCollection_SetCollectionName) == 0x000010, "Wrong size on MoviePipelineCollection_SetCollectionName"); \ +static_assert(offsetof(MoviePipelineCollection_SetCollectionName, InName) == 0x000000, "Member 'MoviePipelineCollection_SetCollectionName::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollection_GetCollectionName \ +static_assert(alignof(MoviePipelineCollection_GetCollectionName) == 0x000008, "Wrong alignment on MoviePipelineCollection_GetCollectionName"); \ +static_assert(sizeof(MoviePipelineCollection_GetCollectionName) == 0x000010, "Wrong size on MoviePipelineCollection_GetCollectionName"); \ +static_assert(offsetof(MoviePipelineCollection_GetCollectionName, ReturnValue) == 0x000000, "Member 'MoviePipelineCollection_GetCollectionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollection_GetMatchingActors \ +static_assert(alignof(MoviePipelineCollection_GetMatchingActors) == 0x000008, "Wrong alignment on MoviePipelineCollection_GetMatchingActors"); \ +static_assert(sizeof(MoviePipelineCollection_GetMatchingActors) == 0x000020, "Wrong size on MoviePipelineCollection_GetMatchingActors"); \ +static_assert(offsetof(MoviePipelineCollection_GetMatchingActors, World) == 0x000000, "Member 'MoviePipelineCollection_GetMatchingActors::World' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineCollection_GetMatchingActors, bInvertResult) == 0x000008, "Member 'MoviePipelineCollection_GetMatchingActors::bInvertResult' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineCollection_GetMatchingActors, ReturnValue) == 0x000010, "Member 'MoviePipelineCollection_GetMatchingActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCollection \ +static_assert(alignof(UMoviePipelineCollection) == 0x000008, "Wrong alignment on UMoviePipelineCollection"); \ +static_assert(sizeof(UMoviePipelineCollection) == 0x000048, "Wrong size on UMoviePipelineCollection"); \ +static_assert(offsetof(UMoviePipelineCollection, CollectionName) == 0x000028, "Member 'UMoviePipelineCollection::CollectionName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCollection, Queries) == 0x000038, "Member 'UMoviePipelineCollection::Queries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionModifier_AddCollection \ +static_assert(alignof(MoviePipelineCollectionModifier_AddCollection) == 0x000008, "Wrong alignment on MoviePipelineCollectionModifier_AddCollection"); \ +static_assert(sizeof(MoviePipelineCollectionModifier_AddCollection) == 0x000008, "Wrong size on MoviePipelineCollectionModifier_AddCollection"); \ +static_assert(offsetof(MoviePipelineCollectionModifier_AddCollection, Collection) == 0x000000, "Member 'MoviePipelineCollectionModifier_AddCollection::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionModifier_SetCollections \ +static_assert(alignof(MoviePipelineCollectionModifier_SetCollections) == 0x000008, "Wrong alignment on MoviePipelineCollectionModifier_SetCollections"); \ +static_assert(sizeof(MoviePipelineCollectionModifier_SetCollections) == 0x000010, "Wrong size on MoviePipelineCollectionModifier_SetCollections"); \ +static_assert(offsetof(MoviePipelineCollectionModifier_SetCollections, InCollections) == 0x000000, "Member 'MoviePipelineCollectionModifier_SetCollections::InCollections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionModifier_SetIsInverted \ +static_assert(alignof(MoviePipelineCollectionModifier_SetIsInverted) == 0x000001, "Wrong alignment on MoviePipelineCollectionModifier_SetIsInverted"); \ +static_assert(sizeof(MoviePipelineCollectionModifier_SetIsInverted) == 0x000001, "Wrong size on MoviePipelineCollectionModifier_SetIsInverted"); \ +static_assert(offsetof(MoviePipelineCollectionModifier_SetIsInverted, bIsInverted) == 0x000000, "Member 'MoviePipelineCollectionModifier_SetIsInverted::bIsInverted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionModifier_GetCollections \ +static_assert(alignof(MoviePipelineCollectionModifier_GetCollections) == 0x000008, "Wrong alignment on MoviePipelineCollectionModifier_GetCollections"); \ +static_assert(sizeof(MoviePipelineCollectionModifier_GetCollections) == 0x000010, "Wrong size on MoviePipelineCollectionModifier_GetCollections"); \ +static_assert(offsetof(MoviePipelineCollectionModifier_GetCollections, ReturnValue) == 0x000000, "Member 'MoviePipelineCollectionModifier_GetCollections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionModifier_IsInverted \ +static_assert(alignof(MoviePipelineCollectionModifier_IsInverted) == 0x000001, "Wrong alignment on MoviePipelineCollectionModifier_IsInverted"); \ +static_assert(sizeof(MoviePipelineCollectionModifier_IsInverted) == 0x000001, "Wrong size on MoviePipelineCollectionModifier_IsInverted"); \ +static_assert(offsetof(MoviePipelineCollectionModifier_IsInverted, ReturnValue) == 0x000000, "Member 'MoviePipelineCollectionModifier_IsInverted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCollectionModifier \ +static_assert(alignof(UMoviePipelineCollectionModifier) == 0x000008, "Wrong alignment on UMoviePipelineCollectionModifier"); \ +static_assert(sizeof(UMoviePipelineCollectionModifier) == 0x000040, "Wrong size on UMoviePipelineCollectionModifier"); \ +static_assert(offsetof(UMoviePipelineCollectionModifier, Collections) == 0x000028, "Member 'UMoviePipelineCollectionModifier::Collections' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCollectionModifier, bUseInvertedActors) == 0x000038, "Member 'UMoviePipelineCollectionModifier::bUseInvertedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineMaterialModifier_ApplyModifier \ +static_assert(alignof(MoviePipelineMaterialModifier_ApplyModifier) == 0x000008, "Wrong alignment on MoviePipelineMaterialModifier_ApplyModifier"); \ +static_assert(sizeof(MoviePipelineMaterialModifier_ApplyModifier) == 0x000008, "Wrong size on MoviePipelineMaterialModifier_ApplyModifier"); \ +static_assert(offsetof(MoviePipelineMaterialModifier_ApplyModifier, World) == 0x000000, "Member 'MoviePipelineMaterialModifier_ApplyModifier::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineMaterialModifier_SetMaterial \ +static_assert(alignof(MoviePipelineMaterialModifier_SetMaterial) == 0x000008, "Wrong alignment on MoviePipelineMaterialModifier_SetMaterial"); \ +static_assert(sizeof(MoviePipelineMaterialModifier_SetMaterial) == 0x000028, "Wrong size on MoviePipelineMaterialModifier_SetMaterial"); \ +static_assert(offsetof(MoviePipelineMaterialModifier_SetMaterial, InMaterial) == 0x000000, "Member 'MoviePipelineMaterialModifier_SetMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineMaterialModifier \ +static_assert(alignof(UMoviePipelineMaterialModifier) == 0x000008, "Wrong alignment on UMoviePipelineMaterialModifier"); \ +static_assert(sizeof(UMoviePipelineMaterialModifier) == 0x0000B8, "Wrong size on UMoviePipelineMaterialModifier"); \ +static_assert(offsetof(UMoviePipelineMaterialModifier, MaterialToApply) == 0x000090, "Member 'UMoviePipelineMaterialModifier::MaterialToApply' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineVisibilityModifier_ApplyModifier \ +static_assert(alignof(MoviePipelineVisibilityModifier_ApplyModifier) == 0x000008, "Wrong alignment on MoviePipelineVisibilityModifier_ApplyModifier"); \ +static_assert(sizeof(MoviePipelineVisibilityModifier_ApplyModifier) == 0x000008, "Wrong size on MoviePipelineVisibilityModifier_ApplyModifier"); \ +static_assert(offsetof(MoviePipelineVisibilityModifier_ApplyModifier, World) == 0x000000, "Member 'MoviePipelineVisibilityModifier_ApplyModifier::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineVisibilityModifier_SetHidden \ +static_assert(alignof(MoviePipelineVisibilityModifier_SetHidden) == 0x000001, "Wrong alignment on MoviePipelineVisibilityModifier_SetHidden"); \ +static_assert(sizeof(MoviePipelineVisibilityModifier_SetHidden) == 0x000001, "Wrong size on MoviePipelineVisibilityModifier_SetHidden"); \ +static_assert(offsetof(MoviePipelineVisibilityModifier_SetHidden, bInIsHidden) == 0x000000, "Member 'MoviePipelineVisibilityModifier_SetHidden::bInIsHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineVisibilityModifier_IsHidden \ +static_assert(alignof(MoviePipelineVisibilityModifier_IsHidden) == 0x000001, "Wrong alignment on MoviePipelineVisibilityModifier_IsHidden"); \ +static_assert(sizeof(MoviePipelineVisibilityModifier_IsHidden) == 0x000001, "Wrong size on MoviePipelineVisibilityModifier_IsHidden"); \ +static_assert(offsetof(MoviePipelineVisibilityModifier_IsHidden, ReturnValue) == 0x000000, "Member 'MoviePipelineVisibilityModifier_IsHidden::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineVisibilityModifier \ +static_assert(alignof(UMoviePipelineVisibilityModifier) == 0x000008, "Wrong alignment on UMoviePipelineVisibilityModifier"); \ +static_assert(sizeof(UMoviePipelineVisibilityModifier) == 0x000098, "Wrong size on UMoviePipelineVisibilityModifier"); \ +static_assert(offsetof(UMoviePipelineVisibilityModifier, ModifiedActors) == 0x000040, "Member 'UMoviePipelineVisibilityModifier::ModifiedActors' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineVisibilityModifier, bIsHidden) == 0x000090, "Member 'UMoviePipelineVisibilityModifier::bIsHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCollectionQuery \ +static_assert(alignof(UMoviePipelineCollectionQuery) == 0x000008, "Wrong alignment on UMoviePipelineCollectionQuery"); \ +static_assert(sizeof(UMoviePipelineCollectionQuery) == 0x000028, "Wrong size on UMoviePipelineCollectionQuery"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionCommonQuery_SetActorNames \ +static_assert(alignof(MoviePipelineCollectionCommonQuery_SetActorNames) == 0x000008, "Wrong alignment on MoviePipelineCollectionCommonQuery_SetActorNames"); \ +static_assert(sizeof(MoviePipelineCollectionCommonQuery_SetActorNames) == 0x000010, "Wrong size on MoviePipelineCollectionCommonQuery_SetActorNames"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_SetActorNames, InActorNames) == 0x000000, "Member 'MoviePipelineCollectionCommonQuery_SetActorNames::InActorNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionCommonQuery_SetComponentTypes \ +static_assert(alignof(MoviePipelineCollectionCommonQuery_SetComponentTypes) == 0x000008, "Wrong alignment on MoviePipelineCollectionCommonQuery_SetComponentTypes"); \ +static_assert(sizeof(MoviePipelineCollectionCommonQuery_SetComponentTypes) == 0x000010, "Wrong size on MoviePipelineCollectionCommonQuery_SetComponentTypes"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_SetComponentTypes, InComponentTypes) == 0x000000, "Member 'MoviePipelineCollectionCommonQuery_SetComponentTypes::InComponentTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionCommonQuery_SetQueryMode \ +static_assert(alignof(MoviePipelineCollectionCommonQuery_SetQueryMode) == 0x000001, "Wrong alignment on MoviePipelineCollectionCommonQuery_SetQueryMode"); \ +static_assert(sizeof(MoviePipelineCollectionCommonQuery_SetQueryMode) == 0x000001, "Wrong size on MoviePipelineCollectionCommonQuery_SetQueryMode"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_SetQueryMode, InQueryMode) == 0x000000, "Member 'MoviePipelineCollectionCommonQuery_SetQueryMode::InQueryMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionCommonQuery_SetTags \ +static_assert(alignof(MoviePipelineCollectionCommonQuery_SetTags) == 0x000008, "Wrong alignment on MoviePipelineCollectionCommonQuery_SetTags"); \ +static_assert(sizeof(MoviePipelineCollectionCommonQuery_SetTags) == 0x000010, "Wrong size on MoviePipelineCollectionCommonQuery_SetTags"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_SetTags, InTags) == 0x000000, "Member 'MoviePipelineCollectionCommonQuery_SetTags::InTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineCollectionCommonQuery_DoesActorMatchQuery \ +static_assert(alignof(MoviePipelineCollectionCommonQuery_DoesActorMatchQuery) == 0x000008, "Wrong alignment on MoviePipelineCollectionCommonQuery_DoesActorMatchQuery"); \ +static_assert(sizeof(MoviePipelineCollectionCommonQuery_DoesActorMatchQuery) == 0x000010, "Wrong size on MoviePipelineCollectionCommonQuery_DoesActorMatchQuery"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_DoesActorMatchQuery, Actor) == 0x000000, "Member 'MoviePipelineCollectionCommonQuery_DoesActorMatchQuery::Actor' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineCollectionCommonQuery_DoesActorMatchQuery, ReturnValue) == 0x000008, "Member 'MoviePipelineCollectionCommonQuery_DoesActorMatchQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCollectionCommonQuery \ +static_assert(alignof(UMoviePipelineCollectionCommonQuery) == 0x000008, "Wrong alignment on UMoviePipelineCollectionCommonQuery"); \ +static_assert(sizeof(UMoviePipelineCollectionCommonQuery) == 0x000060, "Wrong size on UMoviePipelineCollectionCommonQuery"); \ +static_assert(offsetof(UMoviePipelineCollectionCommonQuery, ComponentTypes) == 0x000028, "Member 'UMoviePipelineCollectionCommonQuery::ComponentTypes' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCollectionCommonQuery, QueryMode) == 0x000038, "Member 'UMoviePipelineCollectionCommonQuery::QueryMode' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCollectionCommonQuery, ActorNames) == 0x000040, "Member 'UMoviePipelineCollectionCommonQuery::ActorNames' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCollectionCommonQuery, Tags) == 0x000050, "Member 'UMoviePipelineCollectionCommonQuery::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_AddModifier \ +static_assert(alignof(MoviePipelineRenderLayer_AddModifier) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_AddModifier"); \ +static_assert(sizeof(MoviePipelineRenderLayer_AddModifier) == 0x000008, "Wrong size on MoviePipelineRenderLayer_AddModifier"); \ +static_assert(offsetof(MoviePipelineRenderLayer_AddModifier, Modifier) == 0x000000, "Member 'MoviePipelineRenderLayer_AddModifier::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_Preview \ +static_assert(alignof(MoviePipelineRenderLayer_Preview) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_Preview"); \ +static_assert(sizeof(MoviePipelineRenderLayer_Preview) == 0x000008, "Wrong size on MoviePipelineRenderLayer_Preview"); \ +static_assert(offsetof(MoviePipelineRenderLayer_Preview, World) == 0x000000, "Member 'MoviePipelineRenderLayer_Preview::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_RemoveModifier \ +static_assert(alignof(MoviePipelineRenderLayer_RemoveModifier) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_RemoveModifier"); \ +static_assert(sizeof(MoviePipelineRenderLayer_RemoveModifier) == 0x000008, "Wrong size on MoviePipelineRenderLayer_RemoveModifier"); \ +static_assert(offsetof(MoviePipelineRenderLayer_RemoveModifier, Modifier) == 0x000000, "Member 'MoviePipelineRenderLayer_RemoveModifier::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_SetRenderLayerName \ +static_assert(alignof(MoviePipelineRenderLayer_SetRenderLayerName) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_SetRenderLayerName"); \ +static_assert(sizeof(MoviePipelineRenderLayer_SetRenderLayerName) == 0x000010, "Wrong size on MoviePipelineRenderLayer_SetRenderLayerName"); \ +static_assert(offsetof(MoviePipelineRenderLayer_SetRenderLayerName, NewName) == 0x000000, "Member 'MoviePipelineRenderLayer_SetRenderLayerName::NewName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_UndoPreview \ +static_assert(alignof(MoviePipelineRenderLayer_UndoPreview) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_UndoPreview"); \ +static_assert(sizeof(MoviePipelineRenderLayer_UndoPreview) == 0x000008, "Wrong size on MoviePipelineRenderLayer_UndoPreview"); \ +static_assert(offsetof(MoviePipelineRenderLayer_UndoPreview, World) == 0x000000, "Member 'MoviePipelineRenderLayer_UndoPreview::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_GetCollectionByName \ +static_assert(alignof(MoviePipelineRenderLayer_GetCollectionByName) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_GetCollectionByName"); \ +static_assert(sizeof(MoviePipelineRenderLayer_GetCollectionByName) == 0x000018, "Wrong size on MoviePipelineRenderLayer_GetCollectionByName"); \ +static_assert(offsetof(MoviePipelineRenderLayer_GetCollectionByName, Name_0) == 0x000000, "Member 'MoviePipelineRenderLayer_GetCollectionByName::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineRenderLayer_GetCollectionByName, ReturnValue) == 0x000010, "Member 'MoviePipelineRenderLayer_GetCollectionByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_GetModifiers \ +static_assert(alignof(MoviePipelineRenderLayer_GetModifiers) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_GetModifiers"); \ +static_assert(sizeof(MoviePipelineRenderLayer_GetModifiers) == 0x000010, "Wrong size on MoviePipelineRenderLayer_GetModifiers"); \ +static_assert(offsetof(MoviePipelineRenderLayer_GetModifiers, ReturnValue) == 0x000000, "Member 'MoviePipelineRenderLayer_GetModifiers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayer_GetRenderLayerName \ +static_assert(alignof(MoviePipelineRenderLayer_GetRenderLayerName) == 0x000008, "Wrong alignment on MoviePipelineRenderLayer_GetRenderLayerName"); \ +static_assert(sizeof(MoviePipelineRenderLayer_GetRenderLayerName) == 0x000010, "Wrong size on MoviePipelineRenderLayer_GetRenderLayerName"); \ +static_assert(offsetof(MoviePipelineRenderLayer_GetRenderLayerName, ReturnValue) == 0x000000, "Member 'MoviePipelineRenderLayer_GetRenderLayerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineRenderLayer \ +static_assert(alignof(UMoviePipelineRenderLayer) == 0x000008, "Wrong alignment on UMoviePipelineRenderLayer"); \ +static_assert(sizeof(UMoviePipelineRenderLayer) == 0x000048, "Wrong size on UMoviePipelineRenderLayer"); \ +static_assert(offsetof(UMoviePipelineRenderLayer, RenderLayerName) == 0x000028, "Member 'UMoviePipelineRenderLayer::RenderLayerName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayer, Modifiers) == 0x000038, "Member 'UMoviePipelineRenderLayer::Modifiers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_GetFromWorld \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_GetFromWorld) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_GetFromWorld"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_GetFromWorld) == 0x000010, "Wrong size on MoviePipelineRenderLayerSubsystem_GetFromWorld"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_GetFromWorld, World) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_GetFromWorld::World' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_GetFromWorld, ReturnValue) == 0x000008, "Member 'MoviePipelineRenderLayerSubsystem_GetFromWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_AddRenderLayer \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_AddRenderLayer) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_AddRenderLayer"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_AddRenderLayer) == 0x000010, "Wrong size on MoviePipelineRenderLayerSubsystem_AddRenderLayer"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_AddRenderLayer, RenderLayer) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_AddRenderLayer::RenderLayer' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_AddRenderLayer, ReturnValue) == 0x000008, "Member 'MoviePipelineRenderLayerSubsystem_AddRenderLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_GetRenderLayers \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_GetRenderLayers) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_GetRenderLayers"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_GetRenderLayers) == 0x000010, "Wrong size on MoviePipelineRenderLayerSubsystem_GetRenderLayers"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_GetRenderLayers, ReturnValue) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_GetRenderLayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_PreviewCollection \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_PreviewCollection) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_PreviewCollection"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_PreviewCollection) == 0x000008, "Wrong size on MoviePipelineRenderLayerSubsystem_PreviewCollection"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_PreviewCollection, Collection) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_PreviewCollection::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_PreviewModifier \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_PreviewModifier) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_PreviewModifier"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_PreviewModifier) == 0x000008, "Wrong size on MoviePipelineRenderLayerSubsystem_PreviewModifier"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_PreviewModifier, Modifier) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_PreviewModifier::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_RemoveRenderLayer \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_RemoveRenderLayer) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_RemoveRenderLayer"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_RemoveRenderLayer) == 0x000010, "Wrong size on MoviePipelineRenderLayerSubsystem_RemoveRenderLayer"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_RemoveRenderLayer, RenderLayerName) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_RemoveRenderLayer::RenderLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName) == 0x000010, "Wrong size on MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName, RenderLayerName) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByName::RenderLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj) == 0x000008, "Wrong size on MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj, RenderLayer) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_SetActiveRenderLayerByObj::RenderLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer \ +static_assert(alignof(MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer) == 0x000008, "Wrong alignment on MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer"); \ +static_assert(sizeof(MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer) == 0x000008, "Wrong size on MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer"); \ +static_assert(offsetof(MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer, ReturnValue) == 0x000000, "Member 'MoviePipelineRenderLayerSubsystem_GetActiveRenderLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineRenderLayerSubsystem \ +static_assert(alignof(UMoviePipelineRenderLayerSubsystem) == 0x000008, "Wrong alignment on UMoviePipelineRenderLayerSubsystem"); \ +static_assert(sizeof(UMoviePipelineRenderLayerSubsystem) == 0x000078, "Wrong size on UMoviePipelineRenderLayerSubsystem"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, RenderLayers) == 0x000030, "Member 'UMoviePipelineRenderLayerSubsystem::RenderLayers' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, ActiveRenderLayer) == 0x000040, "Member 'UMoviePipelineRenderLayerSubsystem::ActiveRenderLayer' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, ActiveCollection) == 0x000048, "Member 'UMoviePipelineRenderLayerSubsystem::ActiveCollection' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, ActiveModifier) == 0x000050, "Member 'UMoviePipelineRenderLayerSubsystem::ActiveModifier' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, VisualizationRenderLayer) == 0x000058, "Member 'UMoviePipelineRenderLayerSubsystem::VisualizationRenderLayer' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, VisualizationEmptyCollection) == 0x000060, "Member 'UMoviePipelineRenderLayerSubsystem::VisualizationEmptyCollection' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, VisualizationModifier_HideWorld) == 0x000068, "Member 'UMoviePipelineRenderLayerSubsystem::VisualizationModifier_HideWorld' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineRenderLayerSubsystem, VisualizationModifier_VisibleCollections) == 0x000070, "Member 'UMoviePipelineRenderLayerSubsystem::VisualizationModifier_VisibleCollections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl \ +static_assert(alignof(MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl) == 0x000008, "Wrong alignment on MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl"); \ +static_assert(sizeof(MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl) == 0x000008, "Wrong size on MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl"); \ +static_assert(offsetof(MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl, InPipeline) == 0x000000, "Member 'MoviePipelineSetting_BlueprintBase_ReceiveSetupForPipelineImpl::InPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl \ +static_assert(alignof(MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl) == 0x000008, "Wrong alignment on MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl"); \ +static_assert(sizeof(MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl) == 0x000008, "Wrong size on MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl"); \ +static_assert(offsetof(MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl, InPipeline) == 0x000000, "Member 'MoviePipelineSetting_BlueprintBase_ReceiveTeardownForPipelineImpl::InPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments \ +static_assert(alignof(MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments) == 0x000008, "Wrong alignment on MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments"); \ +static_assert(sizeof(MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments) == 0x000150, "Wrong size on MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments"); \ +static_assert(offsetof(MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments, InOutFormatArgs) == 0x000000, "Member 'MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments::InOutFormatArgs' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments, ReturnValue) == 0x0000A8, "Member 'MoviePipelineSetting_BlueprintBase_ReceiveGetFormatArguments::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineSetting_BlueprintBase \ +static_assert(alignof(UMoviePipelineSetting_BlueprintBase) == 0x000008, "Wrong alignment on UMoviePipelineSetting_BlueprintBase"); \ +static_assert(sizeof(UMoviePipelineSetting_BlueprintBase) == 0x000068, "Wrong size on UMoviePipelineSetting_BlueprintBase"); \ +static_assert(offsetof(UMoviePipelineSetting_BlueprintBase, CategoryText) == 0x000048, "Member 'UMoviePipelineSetting_BlueprintBase::CategoryText' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineSetting_BlueprintBase, bIsValidOnPrimary) == 0x000060, "Member 'UMoviePipelineSetting_BlueprintBase::bIsValidOnPrimary' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineSetting_BlueprintBase, bIsValidOnShots) == 0x000061, "Member 'UMoviePipelineSetting_BlueprintBase::bIsValidOnShots' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineSetting_BlueprintBase, bCanBeDisabled) == 0x000062, "Member 'UMoviePipelineSetting_BlueprintBase::bCanBeDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineViewFamilySetting \ +static_assert(alignof(UMoviePipelineViewFamilySetting) == 0x000008, "Wrong alignment on UMoviePipelineViewFamilySetting"); \ +static_assert(sizeof(UMoviePipelineViewFamilySetting) == 0x000048, "Wrong size on UMoviePipelineViewFamilySetting"); \ + +#define DUMPER7_ASSERTS_MovieRenderDebugWidget_OnInitializedForPipeline \ +static_assert(alignof(MovieRenderDebugWidget_OnInitializedForPipeline) == 0x000008, "Wrong alignment on MovieRenderDebugWidget_OnInitializedForPipeline"); \ +static_assert(sizeof(MovieRenderDebugWidget_OnInitializedForPipeline) == 0x000008, "Wrong size on MovieRenderDebugWidget_OnInitializedForPipeline"); \ +static_assert(offsetof(MovieRenderDebugWidget_OnInitializedForPipeline, ForPipeline) == 0x000000, "Member 'MovieRenderDebugWidget_OnInitializedForPipeline::ForPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieRenderDebugWidget \ +static_assert(alignof(UMovieRenderDebugWidget) == 0x000008, "Wrong alignment on UMovieRenderDebugWidget"); \ +static_assert(sizeof(UMovieRenderDebugWidget) == 0x0002C0, "Wrong size on UMovieRenderDebugWidget"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_Initialize \ +static_assert(alignof(MoviePipeline_Initialize) == 0x000008, "Wrong alignment on MoviePipeline_Initialize"); \ +static_assert(sizeof(MoviePipeline_Initialize) == 0x000008, "Wrong size on MoviePipeline_Initialize"); \ +static_assert(offsetof(MoviePipeline_Initialize, InJob) == 0x000000, "Member 'MoviePipeline_Initialize::InJob' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_SetInitializationTime \ +static_assert(alignof(MoviePipeline_SetInitializationTime) == 0x000008, "Wrong alignment on MoviePipeline_SetInitializationTime"); \ +static_assert(sizeof(MoviePipeline_SetInitializationTime) == 0x000008, "Wrong size on MoviePipeline_SetInitializationTime"); \ +static_assert(offsetof(MoviePipeline_SetInitializationTime, InDateTime) == 0x000000, "Member 'MoviePipeline_SetInitializationTime::InDateTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_GetCurrentJob \ +static_assert(alignof(MoviePipeline_GetCurrentJob) == 0x000008, "Wrong alignment on MoviePipeline_GetCurrentJob"); \ +static_assert(sizeof(MoviePipeline_GetCurrentJob) == 0x000008, "Wrong size on MoviePipeline_GetCurrentJob"); \ +static_assert(offsetof(MoviePipeline_GetCurrentJob, ReturnValue) == 0x000000, "Member 'MoviePipeline_GetCurrentJob::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_GetInitializationTime \ +static_assert(alignof(MoviePipeline_GetInitializationTime) == 0x000008, "Wrong alignment on MoviePipeline_GetInitializationTime"); \ +static_assert(sizeof(MoviePipeline_GetInitializationTime) == 0x000008, "Wrong size on MoviePipeline_GetInitializationTime"); \ +static_assert(offsetof(MoviePipeline_GetInitializationTime, ReturnValue) == 0x000000, "Member 'MoviePipeline_GetInitializationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_GetPipelineMasterConfig \ +static_assert(alignof(MoviePipeline_GetPipelineMasterConfig) == 0x000008, "Wrong alignment on MoviePipeline_GetPipelineMasterConfig"); \ +static_assert(sizeof(MoviePipeline_GetPipelineMasterConfig) == 0x000008, "Wrong size on MoviePipeline_GetPipelineMasterConfig"); \ +static_assert(offsetof(MoviePipeline_GetPipelineMasterConfig, ReturnValue) == 0x000000, "Member 'MoviePipeline_GetPipelineMasterConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_GetPipelinePrimaryConfig \ +static_assert(alignof(MoviePipeline_GetPipelinePrimaryConfig) == 0x000008, "Wrong alignment on MoviePipeline_GetPipelinePrimaryConfig"); \ +static_assert(sizeof(MoviePipeline_GetPipelinePrimaryConfig) == 0x000008, "Wrong size on MoviePipeline_GetPipelinePrimaryConfig"); \ +static_assert(offsetof(MoviePipeline_GetPipelinePrimaryConfig, ReturnValue) == 0x000000, "Member 'MoviePipeline_GetPipelinePrimaryConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipeline_GetPreviewTexture \ +static_assert(alignof(MoviePipeline_GetPreviewTexture) == 0x000008, "Wrong alignment on MoviePipeline_GetPreviewTexture"); \ +static_assert(sizeof(MoviePipeline_GetPreviewTexture) == 0x000008, "Wrong size on MoviePipeline_GetPreviewTexture"); \ +static_assert(offsetof(MoviePipeline_GetPreviewTexture, ReturnValue) == 0x000000, "Member 'MoviePipeline_GetPreviewTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipeline \ +static_assert(alignof(UMoviePipeline) == 0x000008, "Wrong alignment on UMoviePipeline"); \ +static_assert(sizeof(UMoviePipeline) == 0x000418, "Wrong size on UMoviePipeline"); \ +static_assert(offsetof(UMoviePipeline, OnMoviePipelineFinishedDelegate) == 0x000058, "Member 'UMoviePipeline::OnMoviePipelineFinishedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, OnMoviePipelineWorkFinishedDelegate) == 0x000068, "Member 'UMoviePipeline::OnMoviePipelineWorkFinishedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, OnMoviePipelineShotWorkFinishedDelegate) == 0x000078, "Member 'UMoviePipeline::OnMoviePipelineShotWorkFinishedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, CustomTimeStep) == 0x000088, "Member 'UMoviePipeline::CustomTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, CachedPrevCustomTimeStep) == 0x0000A0, "Member 'UMoviePipeline::CachedPrevCustomTimeStep' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, TargetSequence) == 0x0000A8, "Member 'UMoviePipeline::TargetSequence' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, LevelSequenceActor) == 0x0000B0, "Member 'UMoviePipeline::LevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, DebugWidget) == 0x0000B8, "Member 'UMoviePipeline::DebugWidget' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, PreviewTexture) == 0x0000C0, "Member 'UMoviePipeline::PreviewTexture' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, DebugWidgetClass) == 0x000320, "Member 'UMoviePipeline::DebugWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipeline, CurrentJob) == 0x000330, "Member 'UMoviePipeline::CurrentJob' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCustomTimeStep \ +static_assert(alignof(UMoviePipelineCustomTimeStep) == 0x000008, "Wrong alignment on UMoviePipelineCustomTimeStep"); \ +static_assert(sizeof(UMoviePipelineCustomTimeStep) == 0x000038, "Wrong size on UMoviePipelineCustomTimeStep"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineAntiAliasingSetting \ +static_assert(alignof(UMoviePipelineAntiAliasingSetting) == 0x000008, "Wrong alignment on UMoviePipelineAntiAliasingSetting"); \ +static_assert(sizeof(UMoviePipelineAntiAliasingSetting) == 0x000068, "Wrong size on UMoviePipelineAntiAliasingSetting"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, SpatialSampleCount) == 0x000048, "Member 'UMoviePipelineAntiAliasingSetting::SpatialSampleCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, TemporalSampleCount) == 0x00004C, "Member 'UMoviePipelineAntiAliasingSetting::TemporalSampleCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, bOverrideAntiAliasing) == 0x000050, "Member 'UMoviePipelineAntiAliasingSetting::bOverrideAntiAliasing' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, AntiAliasingMethod) == 0x000051, "Member 'UMoviePipelineAntiAliasingSetting::AntiAliasingMethod' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, RenderWarmUpCount) == 0x000054, "Member 'UMoviePipelineAntiAliasingSetting::RenderWarmUpCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, bUseCameraCutForWarmUp) == 0x000058, "Member 'UMoviePipelineAntiAliasingSetting::bUseCameraCutForWarmUp' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, EngineWarmUpCount) == 0x00005C, "Member 'UMoviePipelineAntiAliasingSetting::EngineWarmUpCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineAntiAliasingSetting, bRenderWarmUpFrames) == 0x000060, "Member 'UMoviePipelineAntiAliasingSetting::bRenderWarmUpFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_DuplicateSequence \ +static_assert(alignof(MoviePipelineBlueprintLibrary_DuplicateSequence) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_DuplicateSequence"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_DuplicateSequence) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_DuplicateSequence"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_DuplicateSequence, Outer_0) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_DuplicateSequence::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_DuplicateSequence, InSequence) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_DuplicateSequence::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_DuplicateSequence, ReturnValue) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_DuplicateSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot \ +static_assert(alignof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot, InSettingType) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot::InSettingType' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot, InPrimaryConfig) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot::InPrimaryConfig' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot, InShot) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot::InShot' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot, ReturnValue) == 0x000018, "Member 'MoviePipelineBlueprintLibrary_FindOrGetDefaultSettingForShot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCompletionPercentage \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCompletionPercentage) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCompletionPercentage"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCompletionPercentage) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCompletionPercentage"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCompletionPercentage, InPipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCompletionPercentage::InPipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCompletionPercentage, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCompletionPercentage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentAperture \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentAperture) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentAperture"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentAperture) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentAperture"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentAperture, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentAperture::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentAperture, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentAperture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentExecutorShot \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentExecutorShot) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentExecutorShot"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentExecutorShot) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentExecutorShot"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentExecutorShot, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentExecutorShot::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentExecutorShot, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentExecutorShot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentFocalLength \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentFocalLength) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentFocalLength"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentFocalLength) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentFocalLength"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentFocalLength, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentFocalLength::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentFocalLength, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentFocalLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentFocusDistance \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentFocusDistance) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentFocusDistance"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentFocusDistance) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentFocusDistance"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentFocusDistance, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentFocusDistance::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentFocusDistance, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentFocusDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentSegmentName \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentSegmentName) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentSegmentName"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentSegmentName) == 0x000038, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentSegmentName"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentName, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentName::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentName, OutOuterName) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentName::OutOuterName' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentName, OutInnerName) == 0x000020, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentName::OutInnerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentSegmentState \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentSegmentState) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentSegmentState"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentSegmentState) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentSegmentState"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentState, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentState::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentState, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics) == 0x000030, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSegmentWorkMetrics::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentSequence \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentSequence) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentSequence"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentSequence) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentSequence"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSequence, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSequence::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentSequence, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentShotFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetCurrentShotTimecode \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetCurrentShotTimecode) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetCurrentShotTimecode"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetCurrentShotTimecode) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetCurrentShotTimecode"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentShotTimecode, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetCurrentShotTimecode::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetCurrentShotTimecode, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetCurrentShotTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution, InPrimaryConfig) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution::InPrimaryConfig' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution, InPipelineExecutorShot) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution::InPipelineExecutorShot' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution, ReturnValue) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_GetEffectiveOutputResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining, InPipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining::InPipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining, OutEstimate) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining::OutEstimate' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining, ReturnValue) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_GetEstimatedTimeRemaining::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetJobAuthor \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetJobAuthor) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetJobAuthor"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetJobAuthor) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetJobAuthor"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobAuthor, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetJobAuthor::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobAuthor, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetJobAuthor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetJobInitializationTime \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetJobInitializationTime) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetJobInitializationTime"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetJobInitializationTime) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetJobInitializationTime"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobInitializationTime, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetJobInitializationTime::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobInitializationTime, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetJobInitializationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetJobName \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetJobName) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetJobName"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetJobName) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetJobName"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobName, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetJobName::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetJobName, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetJobName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetMapPackageName \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetMapPackageName) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetMapPackageName"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetMapPackageName) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_GetMapPackageName"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMapPackageName, InJob) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetMapPackageName::InJob' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMapPackageName, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetMapPackageName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetMasterFrameNumber \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetMasterFrameNumber) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetMasterFrameNumber"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetMasterFrameNumber) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetMasterFrameNumber"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMasterFrameNumber, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetMasterFrameNumber::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMasterFrameNumber, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetMasterFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetMasterTimecode \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetMasterTimecode) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetMasterTimecode"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetMasterTimecode) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetMasterTimecode"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMasterTimecode, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetMasterTimecode::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMasterTimecode, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetMasterTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetMoviePipelineEngineChangelistLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetOverallOutputFrames \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetOverallOutputFrames) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetOverallOutputFrames"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetOverallOutputFrames) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetOverallOutputFrames"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallOutputFrames, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetOverallOutputFrames::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallOutputFrames, OutCurrentIndex) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetOverallOutputFrames::OutCurrentIndex' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallOutputFrames, OutTotalCount) == 0x00000C, "Member 'MoviePipelineBlueprintLibrary_GetOverallOutputFrames::OutTotalCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetOverallSegmentCounts \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetOverallSegmentCounts) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetOverallSegmentCounts"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetOverallSegmentCounts) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetOverallSegmentCounts"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallSegmentCounts, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetOverallSegmentCounts::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallSegmentCounts, OutCurrentIndex) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetOverallSegmentCounts::OutCurrentIndex' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetOverallSegmentCounts, OutTotalCount) == 0x00000C, "Member 'MoviePipelineBlueprintLibrary_GetOverallSegmentCounts::OutTotalCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetPipelineState \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetPipelineState) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetPipelineState"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetPipelineState) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetPipelineState"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetPipelineState, InPipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetPipelineState::InPipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetPipelineState, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetPipelineState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetRootFrameNumber \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetRootFrameNumber) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetRootFrameNumber"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetRootFrameNumber) == 0x000010, "Wrong size on MoviePipelineBlueprintLibrary_GetRootFrameNumber"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetRootFrameNumber, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetRootFrameNumber::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetRootFrameNumber, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetRootFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_GetRootTimecode \ +static_assert(alignof(MoviePipelineBlueprintLibrary_GetRootTimecode) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_GetRootTimecode"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_GetRootTimecode) == 0x000020, "Wrong size on MoviePipelineBlueprintLibrary_GetRootTimecode"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetRootTimecode, InMoviePipeline) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_GetRootTimecode::InMoviePipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_GetRootTimecode, ReturnValue) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_GetRootTimecode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_LoadManifestFileFromString \ +static_assert(alignof(MoviePipelineBlueprintLibrary_LoadManifestFileFromString) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_LoadManifestFileFromString"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_LoadManifestFileFromString) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_LoadManifestFileFromString"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_LoadManifestFileFromString, InManifestFilePath) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_LoadManifestFileFromString::InManifestFilePath' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_LoadManifestFileFromString, ReturnValue) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_LoadManifestFileFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments \ +static_assert(alignof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments) == 0x0001E0, "Wrong size on MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments, InFormatString) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments::InFormatString' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments, InParams) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments::InParams' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments, OutFinalPath) == 0x000128, "Member 'MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments::OutFinalPath' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments, OutMergedFormatArgs) == 0x000138, "Member 'MoviePipelineBlueprintLibrary_ResolveFilenameFormatArguments::OutMergedFormatArgs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_ResolveVersionNumber \ +static_assert(alignof(MoviePipelineBlueprintLibrary_ResolveVersionNumber) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_ResolveVersionNumber"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_ResolveVersionNumber) == 0x000120, "Wrong size on MoviePipelineBlueprintLibrary_ResolveVersionNumber"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveVersionNumber, InParams) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_ResolveVersionNumber::InParams' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveVersionNumber, bGetNextVersion) == 0x000118, "Member 'MoviePipelineBlueprintLibrary_ResolveVersionNumber::bGetNextVersion' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_ResolveVersionNumber, ReturnValue) == 0x00011C, "Member 'MoviePipelineBlueprintLibrary_ResolveVersionNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence \ +static_assert(alignof(MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence) == 0x000008, "Wrong alignment on MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence"); \ +static_assert(sizeof(MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence) == 0x000018, "Wrong size on MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence, InSequence) == 0x000000, "Member 'MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence, InJob) == 0x000008, "Member 'MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence::InJob' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence, bShotsChanged) == 0x000010, "Member 'MoviePipelineBlueprintLibrary_UpdateJobShotListFromSequence::bShotsChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineBlueprintLibrary \ +static_assert(alignof(UMoviePipelineBlueprintLibrary) == 0x000008, "Wrong alignment on UMoviePipelineBlueprintLibrary"); \ +static_assert(sizeof(UMoviePipelineBlueprintLibrary) == 0x000028, "Wrong size on UMoviePipelineBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineColorSetting \ +static_assert(alignof(UMoviePipelineColorSetting) == 0x000008, "Wrong alignment on UMoviePipelineColorSetting"); \ +static_assert(sizeof(UMoviePipelineColorSetting) == 0x0000F0, "Wrong size on UMoviePipelineColorSetting"); \ +static_assert(offsetof(UMoviePipelineColorSetting, OCIOConfiguration) == 0x000048, "Member 'UMoviePipelineColorSetting::OCIOConfiguration' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineColorSetting, bDisableToneCurve) == 0x0000E8, "Member 'UMoviePipelineColorSetting::bDisableToneCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCommandLineEncoder \ +static_assert(alignof(UMoviePipelineCommandLineEncoder) == 0x000008, "Wrong alignment on UMoviePipelineCommandLineEncoder"); \ +static_assert(sizeof(UMoviePipelineCommandLineEncoder) == 0x000088, "Wrong size on UMoviePipelineCommandLineEncoder"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, FileNameFormatOverride) == 0x000048, "Member 'UMoviePipelineCommandLineEncoder::FileNameFormatOverride' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, Quality) == 0x000058, "Member 'UMoviePipelineCommandLineEncoder::Quality' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, AdditionalCommandLineArgs) == 0x000060, "Member 'UMoviePipelineCommandLineEncoder::AdditionalCommandLineArgs' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, bDeleteSourceFiles) == 0x000070, "Member 'UMoviePipelineCommandLineEncoder::bDeleteSourceFiles' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, bSkipEncodeOnRenderCanceled) == 0x000071, "Member 'UMoviePipelineCommandLineEncoder::bSkipEncodeOnRenderCanceled' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoder, bWriteEachFrameDuration) == 0x000072, "Member 'UMoviePipelineCommandLineEncoder::bWriteEachFrameDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineCommandLineEncoderSettings \ +static_assert(alignof(UMoviePipelineCommandLineEncoderSettings) == 0x000008, "Wrong alignment on UMoviePipelineCommandLineEncoderSettings"); \ +static_assert(sizeof(UMoviePipelineCommandLineEncoderSettings) == 0x000100, "Wrong size on UMoviePipelineCommandLineEncoderSettings"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, ExecutablePath) == 0x000038, "Member 'UMoviePipelineCommandLineEncoderSettings::ExecutablePath' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, CodecHelpText) == 0x000048, "Member 'UMoviePipelineCommandLineEncoderSettings::CodecHelpText' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, VideoCodec) == 0x000060, "Member 'UMoviePipelineCommandLineEncoderSettings::VideoCodec' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, AudioCodec) == 0x000070, "Member 'UMoviePipelineCommandLineEncoderSettings::AudioCodec' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, OutputFileExtension) == 0x000080, "Member 'UMoviePipelineCommandLineEncoderSettings::OutputFileExtension' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, CommandLineFormat) == 0x000090, "Member 'UMoviePipelineCommandLineEncoderSettings::CommandLineFormat' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, VideoInputStringFormat) == 0x0000A0, "Member 'UMoviePipelineCommandLineEncoderSettings::VideoInputStringFormat' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, AudioInputStringFormat) == 0x0000B0, "Member 'UMoviePipelineCommandLineEncoderSettings::AudioInputStringFormat' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, EncodeSettings_Low) == 0x0000C0, "Member 'UMoviePipelineCommandLineEncoderSettings::EncodeSettings_Low' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, EncodeSettings_Med) == 0x0000D0, "Member 'UMoviePipelineCommandLineEncoderSettings::EncodeSettings_Med' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, EncodeSettings_High) == 0x0000E0, "Member 'UMoviePipelineCommandLineEncoderSettings::EncodeSettings_High' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineCommandLineEncoderSettings, EncodeSettings_Epic) == 0x0000F0, "Member 'UMoviePipelineCommandLineEncoderSettings::EncodeSettings_Epic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_CopyFrom \ +static_assert(alignof(MoviePipelineConfigBase_CopyFrom) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_CopyFrom"); \ +static_assert(sizeof(MoviePipelineConfigBase_CopyFrom) == 0x000008, "Wrong size on MoviePipelineConfigBase_CopyFrom"); \ +static_assert(offsetof(MoviePipelineConfigBase_CopyFrom, InConfig) == 0x000000, "Member 'MoviePipelineConfigBase_CopyFrom::InConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_FindOrAddSettingByClass \ +static_assert(alignof(MoviePipelineConfigBase_FindOrAddSettingByClass) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_FindOrAddSettingByClass"); \ +static_assert(sizeof(MoviePipelineConfigBase_FindOrAddSettingByClass) == 0x000018, "Wrong size on MoviePipelineConfigBase_FindOrAddSettingByClass"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindOrAddSettingByClass, InClass) == 0x000000, "Member 'MoviePipelineConfigBase_FindOrAddSettingByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindOrAddSettingByClass, bIncludeDisabledSettings) == 0x000008, "Member 'MoviePipelineConfigBase_FindOrAddSettingByClass::bIncludeDisabledSettings' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindOrAddSettingByClass, bExactMatch) == 0x000009, "Member 'MoviePipelineConfigBase_FindOrAddSettingByClass::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindOrAddSettingByClass, ReturnValue) == 0x000010, "Member 'MoviePipelineConfigBase_FindOrAddSettingByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_RemoveSetting \ +static_assert(alignof(MoviePipelineConfigBase_RemoveSetting) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_RemoveSetting"); \ +static_assert(sizeof(MoviePipelineConfigBase_RemoveSetting) == 0x000008, "Wrong size on MoviePipelineConfigBase_RemoveSetting"); \ +static_assert(offsetof(MoviePipelineConfigBase_RemoveSetting, InSetting) == 0x000000, "Member 'MoviePipelineConfigBase_RemoveSetting::InSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_SetConfigOrigin \ +static_assert(alignof(MoviePipelineConfigBase_SetConfigOrigin) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_SetConfigOrigin"); \ +static_assert(sizeof(MoviePipelineConfigBase_SetConfigOrigin) == 0x000008, "Wrong size on MoviePipelineConfigBase_SetConfigOrigin"); \ +static_assert(offsetof(MoviePipelineConfigBase_SetConfigOrigin, InConfig) == 0x000000, "Member 'MoviePipelineConfigBase_SetConfigOrigin::InConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_FindSettingByClass \ +static_assert(alignof(MoviePipelineConfigBase_FindSettingByClass) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_FindSettingByClass"); \ +static_assert(sizeof(MoviePipelineConfigBase_FindSettingByClass) == 0x000018, "Wrong size on MoviePipelineConfigBase_FindSettingByClass"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingByClass, InClass) == 0x000000, "Member 'MoviePipelineConfigBase_FindSettingByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingByClass, bIncludeDisabledSettings) == 0x000008, "Member 'MoviePipelineConfigBase_FindSettingByClass::bIncludeDisabledSettings' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingByClass, bExactMatch) == 0x000009, "Member 'MoviePipelineConfigBase_FindSettingByClass::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingByClass, ReturnValue) == 0x000010, "Member 'MoviePipelineConfigBase_FindSettingByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_FindSettingsByClass \ +static_assert(alignof(MoviePipelineConfigBase_FindSettingsByClass) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_FindSettingsByClass"); \ +static_assert(sizeof(MoviePipelineConfigBase_FindSettingsByClass) == 0x000020, "Wrong size on MoviePipelineConfigBase_FindSettingsByClass"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingsByClass, InClass) == 0x000000, "Member 'MoviePipelineConfigBase_FindSettingsByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingsByClass, bIncludeDisabledSettings) == 0x000008, "Member 'MoviePipelineConfigBase_FindSettingsByClass::bIncludeDisabledSettings' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingsByClass, bExactMatch) == 0x000009, "Member 'MoviePipelineConfigBase_FindSettingsByClass::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConfigBase_FindSettingsByClass, ReturnValue) == 0x000010, "Member 'MoviePipelineConfigBase_FindSettingsByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_GetConfigOrigin \ +static_assert(alignof(MoviePipelineConfigBase_GetConfigOrigin) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_GetConfigOrigin"); \ +static_assert(sizeof(MoviePipelineConfigBase_GetConfigOrigin) == 0x000008, "Wrong size on MoviePipelineConfigBase_GetConfigOrigin"); \ +static_assert(offsetof(MoviePipelineConfigBase_GetConfigOrigin, ReturnValue) == 0x000000, "Member 'MoviePipelineConfigBase_GetConfigOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConfigBase_GetUserSettings \ +static_assert(alignof(MoviePipelineConfigBase_GetUserSettings) == 0x000008, "Wrong alignment on MoviePipelineConfigBase_GetUserSettings"); \ +static_assert(sizeof(MoviePipelineConfigBase_GetUserSettings) == 0x000010, "Wrong size on MoviePipelineConfigBase_GetUserSettings"); \ +static_assert(offsetof(MoviePipelineConfigBase_GetUserSettings, ReturnValue) == 0x000000, "Member 'MoviePipelineConfigBase_GetUserSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineConfigBase \ +static_assert(alignof(UMoviePipelineConfigBase) == 0x000008, "Wrong alignment on UMoviePipelineConfigBase"); \ +static_assert(sizeof(UMoviePipelineConfigBase) == 0x000078, "Wrong size on UMoviePipelineConfigBase"); \ +static_assert(offsetof(UMoviePipelineConfigBase, DisplayName) == 0x000028, "Member 'UMoviePipelineConfigBase::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConfigBase, Settings) == 0x000038, "Member 'UMoviePipelineConfigBase::Settings' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConfigBase, ConfigOrigin) == 0x000048, "Member 'UMoviePipelineConfigBase::ConfigOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDebugSettings \ +static_assert(alignof(UMoviePipelineDebugSettings) == 0x000008, "Wrong alignment on UMoviePipelineDebugSettings"); \ +static_assert(sizeof(UMoviePipelineDebugSettings) == 0x000058, "Wrong size on UMoviePipelineDebugSettings"); \ +static_assert(offsetof(UMoviePipelineDebugSettings, bWriteAllSamples) == 0x000048, "Member 'UMoviePipelineDebugSettings::bWriteAllSamples' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDebugSettings, bCaptureFramesWithRenderDoc) == 0x000049, "Member 'UMoviePipelineDebugSettings::bCaptureFramesWithRenderDoc' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDebugSettings, CaptureFrame) == 0x00004C, "Member 'UMoviePipelineDebugSettings::CaptureFrame' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDebugSettings, bCaptureUnrealInsightsTrace) == 0x000050, "Member 'UMoviePipelineDebugSettings::bCaptureUnrealInsightsTrace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_ConnectSocket \ +static_assert(alignof(MoviePipelineExecutorBase_ConnectSocket) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_ConnectSocket"); \ +static_assert(sizeof(MoviePipelineExecutorBase_ConnectSocket) == 0x000018, "Wrong size on MoviePipelineExecutorBase_ConnectSocket"); \ +static_assert(offsetof(MoviePipelineExecutorBase_ConnectSocket, InHostName) == 0x000000, "Member 'MoviePipelineExecutorBase_ConnectSocket::InHostName' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_ConnectSocket, InPort) == 0x000010, "Member 'MoviePipelineExecutorBase_ConnectSocket::InPort' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_ConnectSocket, ReturnValue) == 0x000014, "Member 'MoviePipelineExecutorBase_ConnectSocket::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_Execute \ +static_assert(alignof(MoviePipelineExecutorBase_Execute) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_Execute"); \ +static_assert(sizeof(MoviePipelineExecutorBase_Execute) == 0x000008, "Wrong size on MoviePipelineExecutorBase_Execute"); \ +static_assert(offsetof(MoviePipelineExecutorBase_Execute, InPipelineQueue) == 0x000000, "Member 'MoviePipelineExecutorBase_Execute::InPipelineQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_OnExecutorErroredImpl \ +static_assert(alignof(MoviePipelineExecutorBase_OnExecutorErroredImpl) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_OnExecutorErroredImpl"); \ +static_assert(sizeof(MoviePipelineExecutorBase_OnExecutorErroredImpl) == 0x000028, "Wrong size on MoviePipelineExecutorBase_OnExecutorErroredImpl"); \ +static_assert(offsetof(MoviePipelineExecutorBase_OnExecutorErroredImpl, ErroredPipeline) == 0x000000, "Member 'MoviePipelineExecutorBase_OnExecutorErroredImpl::ErroredPipeline' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_OnExecutorErroredImpl, bFatal) == 0x000008, "Member 'MoviePipelineExecutorBase_OnExecutorErroredImpl::bFatal' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_OnExecutorErroredImpl, ErrorReason) == 0x000010, "Member 'MoviePipelineExecutorBase_OnExecutorErroredImpl::ErrorReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_SendHTTPRequest \ +static_assert(alignof(MoviePipelineExecutorBase_SendHTTPRequest) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_SendHTTPRequest"); \ +static_assert(sizeof(MoviePipelineExecutorBase_SendHTTPRequest) == 0x000088, "Wrong size on MoviePipelineExecutorBase_SendHTTPRequest"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendHTTPRequest, InURL) == 0x000000, "Member 'MoviePipelineExecutorBase_SendHTTPRequest::InURL' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendHTTPRequest, InVerb) == 0x000010, "Member 'MoviePipelineExecutorBase_SendHTTPRequest::InVerb' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendHTTPRequest, InMessage) == 0x000020, "Member 'MoviePipelineExecutorBase_SendHTTPRequest::InMessage' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendHTTPRequest, InHeaders) == 0x000030, "Member 'MoviePipelineExecutorBase_SendHTTPRequest::InHeaders' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendHTTPRequest, ReturnValue) == 0x000080, "Member 'MoviePipelineExecutorBase_SendHTTPRequest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_SendSocketMessage \ +static_assert(alignof(MoviePipelineExecutorBase_SendSocketMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_SendSocketMessage"); \ +static_assert(sizeof(MoviePipelineExecutorBase_SendSocketMessage) == 0x000018, "Wrong size on MoviePipelineExecutorBase_SendSocketMessage"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendSocketMessage, InMessage) == 0x000000, "Member 'MoviePipelineExecutorBase_SendSocketMessage::InMessage' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SendSocketMessage, ReturnValue) == 0x000010, "Member 'MoviePipelineExecutorBase_SendSocketMessage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_SetMoviePipelineClass \ +static_assert(alignof(MoviePipelineExecutorBase_SetMoviePipelineClass) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_SetMoviePipelineClass"); \ +static_assert(sizeof(MoviePipelineExecutorBase_SetMoviePipelineClass) == 0x000008, "Wrong size on MoviePipelineExecutorBase_SetMoviePipelineClass"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SetMoviePipelineClass, InPipelineClass) == 0x000000, "Member 'MoviePipelineExecutorBase_SetMoviePipelineClass::InPipelineClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_SetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorBase_SetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_SetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorBase_SetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorBase_SetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SetStatusMessage, InStatus) == 0x000000, "Member 'MoviePipelineExecutorBase_SetStatusMessage::InStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_SetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorBase_SetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorBase_SetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorBase_SetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorBase_SetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorBase_SetStatusProgress, InProgress) == 0x000000, "Member 'MoviePipelineExecutorBase_SetStatusProgress::InProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_GetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorBase_GetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorBase_GetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorBase_GetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorBase_GetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorBase_GetStatusMessage, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorBase_GetStatusMessage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_GetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorBase_GetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorBase_GetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorBase_GetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorBase_GetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorBase_GetStatusProgress, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorBase_GetStatusProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_IsRendering \ +static_assert(alignof(MoviePipelineExecutorBase_IsRendering) == 0x000001, "Wrong alignment on MoviePipelineExecutorBase_IsRendering"); \ +static_assert(sizeof(MoviePipelineExecutorBase_IsRendering) == 0x000001, "Wrong size on MoviePipelineExecutorBase_IsRendering"); \ +static_assert(offsetof(MoviePipelineExecutorBase_IsRendering, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorBase_IsRendering::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorBase_IsSocketConnected \ +static_assert(alignof(MoviePipelineExecutorBase_IsSocketConnected) == 0x000001, "Wrong alignment on MoviePipelineExecutorBase_IsSocketConnected"); \ +static_assert(sizeof(MoviePipelineExecutorBase_IsSocketConnected) == 0x000001, "Wrong size on MoviePipelineExecutorBase_IsSocketConnected"); \ +static_assert(offsetof(MoviePipelineExecutorBase_IsSocketConnected, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorBase_IsSocketConnected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineExecutorBase \ +static_assert(alignof(UMoviePipelineExecutorBase) == 0x000008, "Wrong alignment on UMoviePipelineExecutorBase"); \ +static_assert(sizeof(UMoviePipelineExecutorBase) == 0x000118, "Wrong size on UMoviePipelineExecutorBase"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, OnExecutorFinishedDelegate) == 0x000028, "Member 'UMoviePipelineExecutorBase::OnExecutorFinishedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, OnExecutorErroredDelegate) == 0x000050, "Member 'UMoviePipelineExecutorBase::OnExecutorErroredDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, SocketMessageRecievedDelegate) == 0x000080, "Member 'UMoviePipelineExecutorBase::SocketMessageRecievedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, HTTPResponseRecievedDelegate) == 0x000090, "Member 'UMoviePipelineExecutorBase::HTTPResponseRecievedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, DebugWidgetClass) == 0x0000A0, "Member 'UMoviePipelineExecutorBase::DebugWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, UserData) == 0x0000B8, "Member 'UMoviePipelineExecutorBase::UserData' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorBase, TargetPipelineClass) == 0x0000C8, "Member 'UMoviePipelineExecutorBase::TargetPipelineClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineFCPXMLExporter \ +static_assert(alignof(UMoviePipelineFCPXMLExporter) == 0x000008, "Wrong alignment on UMoviePipelineFCPXMLExporter"); \ +static_assert(sizeof(UMoviePipelineFCPXMLExporter) == 0x000080, "Wrong size on UMoviePipelineFCPXMLExporter"); \ +static_assert(offsetof(UMoviePipelineFCPXMLExporter, FileNameFormatOverride) == 0x000050, "Member 'UMoviePipelineFCPXMLExporter::FileNameFormatOverride' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineFCPXMLExporter, DataSource) == 0x000060, "Member 'UMoviePipelineFCPXMLExporter::DataSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineGameOverrideSetting \ +static_assert(alignof(UMoviePipelineGameOverrideSetting) == 0x000008, "Wrong alignment on UMoviePipelineGameOverrideSetting"); \ +static_assert(sizeof(UMoviePipelineGameOverrideSetting) == 0x000130, "Wrong size on UMoviePipelineGameOverrideSetting"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, GameModeOverride) == 0x000048, "Member 'UMoviePipelineGameOverrideSetting::GameModeOverride' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bCinematicQualitySettings) == 0x000050, "Member 'UMoviePipelineGameOverrideSetting::bCinematicQualitySettings' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, TextureStreaming) == 0x000051, "Member 'UMoviePipelineGameOverrideSetting::TextureStreaming' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bUseLODZero) == 0x000052, "Member 'UMoviePipelineGameOverrideSetting::bUseLODZero' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bDisableHLODs) == 0x000053, "Member 'UMoviePipelineGameOverrideSetting::bDisableHLODs' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bUseHighQualityShadows) == 0x000054, "Member 'UMoviePipelineGameOverrideSetting::bUseHighQualityShadows' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, ShadowDistanceScale) == 0x000058, "Member 'UMoviePipelineGameOverrideSetting::ShadowDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, ShadowRadiusThreshold) == 0x00005C, "Member 'UMoviePipelineGameOverrideSetting::ShadowRadiusThreshold' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bOverrideViewDistanceScale) == 0x000060, "Member 'UMoviePipelineGameOverrideSetting::bOverrideViewDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, ViewDistanceScale) == 0x000064, "Member 'UMoviePipelineGameOverrideSetting::ViewDistanceScale' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bFlushGrassStreaming) == 0x000068, "Member 'UMoviePipelineGameOverrideSetting::bFlushGrassStreaming' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bFlushStreamingManagers) == 0x000069, "Member 'UMoviePipelineGameOverrideSetting::bFlushStreamingManagers' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, bOverrideVirtualTextureFeedbackFactor) == 0x00006A, "Member 'UMoviePipelineGameOverrideSetting::bOverrideVirtualTextureFeedbackFactor' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineGameOverrideSetting, VirtualTextureFeedbackFactor) == 0x00006C, "Member 'UMoviePipelineGameOverrideSetting::VirtualTextureFeedbackFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineLinearExecutorBase \ +static_assert(alignof(UMoviePipelineLinearExecutorBase) == 0x000008, "Wrong alignment on UMoviePipelineLinearExecutorBase"); \ +static_assert(sizeof(UMoviePipelineLinearExecutorBase) == 0x000140, "Wrong size on UMoviePipelineLinearExecutorBase"); \ +static_assert(offsetof(UMoviePipelineLinearExecutorBase, Queue) == 0x000118, "Member 'UMoviePipelineLinearExecutorBase::Queue' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineLinearExecutorBase, ActiveMoviePipeline) == 0x000120, "Member 'UMoviePipelineLinearExecutorBase::ActiveMoviePipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineInProcessExecutor \ +static_assert(alignof(UMoviePipelineInProcessExecutor) == 0x000008, "Wrong alignment on UMoviePipelineInProcessExecutor"); \ +static_assert(sizeof(UMoviePipelineInProcessExecutor) == 0x000190, "Wrong size on UMoviePipelineInProcessExecutor"); \ +static_assert(offsetof(UMoviePipelineInProcessExecutor, bUseCurrentLevel) == 0x000140, "Member 'UMoviePipelineInProcessExecutor::bUseCurrentLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineOutputSetting \ +static_assert(alignof(UMoviePipelineOutputSetting) == 0x000008, "Wrong alignment on UMoviePipelineOutputSetting"); \ +static_assert(sizeof(UMoviePipelineOutputSetting) == 0x0000B0, "Wrong size on UMoviePipelineOutputSetting"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, OutputDirectory) == 0x000048, "Member 'UMoviePipelineOutputSetting::OutputDirectory' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, FileNameFormat) == 0x000058, "Member 'UMoviePipelineOutputSetting::FileNameFormat' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, OutputResolution) == 0x000068, "Member 'UMoviePipelineOutputSetting::OutputResolution' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, bUseCustomFrameRate) == 0x000070, "Member 'UMoviePipelineOutputSetting::bUseCustomFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, OutputFrameRate) == 0x000074, "Member 'UMoviePipelineOutputSetting::OutputFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, bOverrideExistingOutput) == 0x000080, "Member 'UMoviePipelineOutputSetting::bOverrideExistingOutput' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, HandleFrameCount) == 0x000084, "Member 'UMoviePipelineOutputSetting::HandleFrameCount' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, OutputFrameStep) == 0x000088, "Member 'UMoviePipelineOutputSetting::OutputFrameStep' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, bUseCustomPlaybackRange) == 0x00008C, "Member 'UMoviePipelineOutputSetting::bUseCustomPlaybackRange' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, CustomStartFrame) == 0x000090, "Member 'UMoviePipelineOutputSetting::CustomStartFrame' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, CustomEndFrame) == 0x000094, "Member 'UMoviePipelineOutputSetting::CustomEndFrame' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, VersionNumber) == 0x000098, "Member 'UMoviePipelineOutputSetting::VersionNumber' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, bAutoVersion) == 0x00009C, "Member 'UMoviePipelineOutputSetting::bAutoVersion' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, ZeroPadFrameNumbers) == 0x0000A0, "Member 'UMoviePipelineOutputSetting::ZeroPadFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, FrameNumberOffset) == 0x0000A4, "Member 'UMoviePipelineOutputSetting::FrameNumberOffset' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineOutputSetting, bFlushDiskWritesPerShot) == 0x0000A8, "Member 'UMoviePipelineOutputSetting::bFlushDiskWritesPerShot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePrimaryConfig_GetAllSettings \ +static_assert(alignof(MoviePipelinePrimaryConfig_GetAllSettings) == 0x000008, "Wrong alignment on MoviePipelinePrimaryConfig_GetAllSettings"); \ +static_assert(sizeof(MoviePipelinePrimaryConfig_GetAllSettings) == 0x000018, "Wrong size on MoviePipelinePrimaryConfig_GetAllSettings"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetAllSettings, bIncludeDisabledSettings) == 0x000000, "Member 'MoviePipelinePrimaryConfig_GetAllSettings::bIncludeDisabledSettings' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetAllSettings, bIncludeTransientSettings) == 0x000001, "Member 'MoviePipelinePrimaryConfig_GetAllSettings::bIncludeTransientSettings' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetAllSettings, ReturnValue) == 0x000008, "Member 'MoviePipelinePrimaryConfig_GetAllSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePrimaryConfig_GetEffectiveFrameRate \ +static_assert(alignof(MoviePipelinePrimaryConfig_GetEffectiveFrameRate) == 0x000008, "Wrong alignment on MoviePipelinePrimaryConfig_GetEffectiveFrameRate"); \ +static_assert(sizeof(MoviePipelinePrimaryConfig_GetEffectiveFrameRate) == 0x000010, "Wrong size on MoviePipelinePrimaryConfig_GetEffectiveFrameRate"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetEffectiveFrameRate, InSequence) == 0x000000, "Member 'MoviePipelinePrimaryConfig_GetEffectiveFrameRate::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetEffectiveFrameRate, ReturnValue) == 0x000008, "Member 'MoviePipelinePrimaryConfig_GetEffectiveFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePrimaryConfig_GetTransientSettings \ +static_assert(alignof(MoviePipelinePrimaryConfig_GetTransientSettings) == 0x000008, "Wrong alignment on MoviePipelinePrimaryConfig_GetTransientSettings"); \ +static_assert(sizeof(MoviePipelinePrimaryConfig_GetTransientSettings) == 0x000010, "Wrong size on MoviePipelinePrimaryConfig_GetTransientSettings"); \ +static_assert(offsetof(MoviePipelinePrimaryConfig_GetTransientSettings, ReturnValue) == 0x000000, "Member 'MoviePipelinePrimaryConfig_GetTransientSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelinePrimaryConfig \ +static_assert(alignof(UMoviePipelinePrimaryConfig) == 0x000008, "Wrong alignment on UMoviePipelinePrimaryConfig"); \ +static_assert(sizeof(UMoviePipelinePrimaryConfig) == 0x0000E0, "Wrong size on UMoviePipelinePrimaryConfig"); \ +static_assert(offsetof(UMoviePipelinePrimaryConfig, PerShotConfigMapping) == 0x000078, "Member 'UMoviePipelinePrimaryConfig::PerShotConfigMapping' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelinePrimaryConfig, OutputSetting) == 0x0000C8, "Member 'UMoviePipelinePrimaryConfig::OutputSetting' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelinePrimaryConfig, TransientSettings) == 0x0000D0, "Member 'UMoviePipelinePrimaryConfig::TransientSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePythonHostExecutor_ExecuteDelayed \ +static_assert(alignof(MoviePipelinePythonHostExecutor_ExecuteDelayed) == 0x000008, "Wrong alignment on MoviePipelinePythonHostExecutor_ExecuteDelayed"); \ +static_assert(sizeof(MoviePipelinePythonHostExecutor_ExecuteDelayed) == 0x000008, "Wrong size on MoviePipelinePythonHostExecutor_ExecuteDelayed"); \ +static_assert(offsetof(MoviePipelinePythonHostExecutor_ExecuteDelayed, InPipelineQueue) == 0x000000, "Member 'MoviePipelinePythonHostExecutor_ExecuteDelayed::InPipelineQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePythonHostExecutor_OnMapLoad \ +static_assert(alignof(MoviePipelinePythonHostExecutor_OnMapLoad) == 0x000008, "Wrong alignment on MoviePipelinePythonHostExecutor_OnMapLoad"); \ +static_assert(sizeof(MoviePipelinePythonHostExecutor_OnMapLoad) == 0x000008, "Wrong size on MoviePipelinePythonHostExecutor_OnMapLoad"); \ +static_assert(offsetof(MoviePipelinePythonHostExecutor_OnMapLoad, InWorld) == 0x000000, "Member 'MoviePipelinePythonHostExecutor_OnMapLoad::InWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelinePythonHostExecutor_GetLastLoadedWorld \ +static_assert(alignof(MoviePipelinePythonHostExecutor_GetLastLoadedWorld) == 0x000008, "Wrong alignment on MoviePipelinePythonHostExecutor_GetLastLoadedWorld"); \ +static_assert(sizeof(MoviePipelinePythonHostExecutor_GetLastLoadedWorld) == 0x000008, "Wrong size on MoviePipelinePythonHostExecutor_GetLastLoadedWorld"); \ +static_assert(offsetof(MoviePipelinePythonHostExecutor_GetLastLoadedWorld, ReturnValue) == 0x000000, "Member 'MoviePipelinePythonHostExecutor_GetLastLoadedWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelinePythonHostExecutor \ +static_assert(alignof(UMoviePipelinePythonHostExecutor) == 0x000008, "Wrong alignment on UMoviePipelinePythonHostExecutor"); \ +static_assert(sizeof(UMoviePipelinePythonHostExecutor) == 0x000130, "Wrong size on UMoviePipelinePythonHostExecutor"); \ +static_assert(offsetof(UMoviePipelinePythonHostExecutor, ExecutorClass) == 0x000118, "Member 'UMoviePipelinePythonHostExecutor::ExecutorClass' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelinePythonHostExecutor, PipelineQueue) == 0x000120, "Member 'UMoviePipelinePythonHostExecutor::PipelineQueue' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelinePythonHostExecutor, LastLoadedWorld) == 0x000128, "Member 'UMoviePipelinePythonHostExecutor::LastLoadedWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_AllocateNewShotOverrideConfig \ +static_assert(alignof(MoviePipelineExecutorShot_AllocateNewShotOverrideConfig) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_AllocateNewShotOverrideConfig"); \ +static_assert(sizeof(MoviePipelineExecutorShot_AllocateNewShotOverrideConfig) == 0x000010, "Wrong size on MoviePipelineExecutorShot_AllocateNewShotOverrideConfig"); \ +static_assert(offsetof(MoviePipelineExecutorShot_AllocateNewShotOverrideConfig, InConfigType) == 0x000000, "Member 'MoviePipelineExecutorShot_AllocateNewShotOverrideConfig::InConfigType' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorShot_AllocateNewShotOverrideConfig, ReturnValue) == 0x000008, "Member 'MoviePipelineExecutorShot_AllocateNewShotOverrideConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetGraphConfig \ +static_assert(alignof(MoviePipelineExecutorShot_SetGraphConfig) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_SetGraphConfig"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetGraphConfig) == 0x000008, "Wrong size on MoviePipelineExecutorShot_SetGraphConfig"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetGraphConfig, InGraphConfig) == 0x000000, "Member 'MoviePipelineExecutorShot_SetGraphConfig::InGraphConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetGraphPreset \ +static_assert(alignof(MoviePipelineExecutorShot_SetGraphPreset) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_SetGraphPreset"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetGraphPreset) == 0x000008, "Wrong size on MoviePipelineExecutorShot_SetGraphPreset"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetGraphPreset, InGraphPreset) == 0x000000, "Member 'MoviePipelineExecutorShot_SetGraphPreset::InGraphPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetShotOverrideConfiguration \ +static_assert(alignof(MoviePipelineExecutorShot_SetShotOverrideConfiguration) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_SetShotOverrideConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetShotOverrideConfiguration) == 0x000008, "Wrong size on MoviePipelineExecutorShot_SetShotOverrideConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetShotOverrideConfiguration, InPreset) == 0x000000, "Member 'MoviePipelineExecutorShot_SetShotOverrideConfiguration::InPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetShotOverridePresetOrigin \ +static_assert(alignof(MoviePipelineExecutorShot_SetShotOverridePresetOrigin) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_SetShotOverridePresetOrigin"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetShotOverridePresetOrigin) == 0x000008, "Wrong size on MoviePipelineExecutorShot_SetShotOverridePresetOrigin"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetShotOverridePresetOrigin, InPreset) == 0x000000, "Member 'MoviePipelineExecutorShot_SetShotOverridePresetOrigin::InPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorShot_SetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_SetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorShot_SetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetStatusMessage, InStatus) == 0x000000, "Member 'MoviePipelineExecutorShot_SetStatusMessage::InStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_SetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorShot_SetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorShot_SetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorShot_SetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorShot_SetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorShot_SetStatusProgress, InProgress) == 0x000000, "Member 'MoviePipelineExecutorShot_SetStatusProgress::InProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetCameraName \ +static_assert(alignof(MoviePipelineExecutorShot_GetCameraName) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetCameraName"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetCameraName) == 0x000018, "Wrong size on MoviePipelineExecutorShot_GetCameraName"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetCameraName, InCameraIndex) == 0x000000, "Member 'MoviePipelineExecutorShot_GetCameraName::InCameraIndex' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetCameraName, ReturnValue) == 0x000008, "Member 'MoviePipelineExecutorShot_GetCameraName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetGraphConfig \ +static_assert(alignof(MoviePipelineExecutorShot_GetGraphConfig) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetGraphConfig"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetGraphConfig) == 0x000008, "Wrong size on MoviePipelineExecutorShot_GetGraphConfig"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetGraphConfig, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetGraphConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetGraphPreset \ +static_assert(alignof(MoviePipelineExecutorShot_GetGraphPreset) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetGraphPreset"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetGraphPreset) == 0x000008, "Wrong size on MoviePipelineExecutorShot_GetGraphPreset"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetGraphPreset, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetGraphPreset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetShotOverrideConfiguration \ +static_assert(alignof(MoviePipelineExecutorShot_GetShotOverrideConfiguration) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetShotOverrideConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetShotOverrideConfiguration) == 0x000008, "Wrong size on MoviePipelineExecutorShot_GetShotOverrideConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetShotOverrideConfiguration, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetShotOverrideConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetShotOverridePresetOrigin \ +static_assert(alignof(MoviePipelineExecutorShot_GetShotOverridePresetOrigin) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetShotOverridePresetOrigin"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetShotOverridePresetOrigin) == 0x000008, "Wrong size on MoviePipelineExecutorShot_GetShotOverridePresetOrigin"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetShotOverridePresetOrigin, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetShotOverridePresetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorShot_GetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorShot_GetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorShot_GetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetStatusMessage, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetStatusMessage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_GetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorShot_GetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorShot_GetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorShot_GetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorShot_GetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorShot_GetStatusProgress, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_GetStatusProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_IsUsingGraphConfiguration \ +static_assert(alignof(MoviePipelineExecutorShot_IsUsingGraphConfiguration) == 0x000001, "Wrong alignment on MoviePipelineExecutorShot_IsUsingGraphConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorShot_IsUsingGraphConfiguration) == 0x000001, "Wrong size on MoviePipelineExecutorShot_IsUsingGraphConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorShot_IsUsingGraphConfiguration, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_IsUsingGraphConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorShot_ShouldRender \ +static_assert(alignof(MoviePipelineExecutorShot_ShouldRender) == 0x000001, "Wrong alignment on MoviePipelineExecutorShot_ShouldRender"); \ +static_assert(sizeof(MoviePipelineExecutorShot_ShouldRender) == 0x000001, "Wrong size on MoviePipelineExecutorShot_ShouldRender"); \ +static_assert(offsetof(MoviePipelineExecutorShot_ShouldRender, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorShot_ShouldRender::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineExecutorShot \ +static_assert(alignof(UMoviePipelineExecutorShot) == 0x000008, "Wrong alignment on UMoviePipelineExecutorShot"); \ +static_assert(sizeof(UMoviePipelineExecutorShot) == 0x000190, "Wrong size on UMoviePipelineExecutorShot"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, bEnabled) == 0x000028, "Member 'UMoviePipelineExecutorShot::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, OuterName) == 0x000030, "Member 'UMoviePipelineExecutorShot::OuterName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, InnerName) == 0x000040, "Member 'UMoviePipelineExecutorShot::InnerName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, SidecarCameras) == 0x000050, "Member 'UMoviePipelineExecutorShot::SidecarCameras' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, VariableAssignments) == 0x000060, "Member 'UMoviePipelineExecutorShot::VariableAssignments' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, Progress) == 0x000118, "Member 'UMoviePipelineExecutorShot::Progress' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, StatusMessage) == 0x000120, "Member 'UMoviePipelineExecutorShot::StatusMessage' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, ShotOverrideConfig) == 0x000130, "Member 'UMoviePipelineExecutorShot::ShotOverrideConfig' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, ShotOverridePresetOrigin) == 0x000138, "Member 'UMoviePipelineExecutorShot::ShotOverridePresetOrigin' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, GraphConfig) == 0x000160, "Member 'UMoviePipelineExecutorShot::GraphConfig' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorShot, GraphPreset) == 0x000168, "Member 'UMoviePipelineExecutorShot::GraphPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetConfiguration \ +static_assert(alignof(MoviePipelineExecutorJob_SetConfiguration) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetConfiguration) == 0x000008, "Wrong size on MoviePipelineExecutorJob_SetConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetConfiguration, InPreset) == 0x000000, "Member 'MoviePipelineExecutorJob_SetConfiguration::InPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetConsumed \ +static_assert(alignof(MoviePipelineExecutorJob_SetConsumed) == 0x000001, "Wrong alignment on MoviePipelineExecutorJob_SetConsumed"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetConsumed) == 0x000001, "Wrong size on MoviePipelineExecutorJob_SetConsumed"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetConsumed, bInConsumed) == 0x000000, "Member 'MoviePipelineExecutorJob_SetConsumed::bInConsumed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetGraphConfig \ +static_assert(alignof(MoviePipelineExecutorJob_SetGraphConfig) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetGraphConfig"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetGraphConfig) == 0x000008, "Wrong size on MoviePipelineExecutorJob_SetGraphConfig"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetGraphConfig, InGraphConfig) == 0x000000, "Member 'MoviePipelineExecutorJob_SetGraphConfig::InGraphConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetGraphPreset \ +static_assert(alignof(MoviePipelineExecutorJob_SetGraphPreset) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetGraphPreset"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetGraphPreset) == 0x000008, "Wrong size on MoviePipelineExecutorJob_SetGraphPreset"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetGraphPreset, InGraphPreset) == 0x000000, "Member 'MoviePipelineExecutorJob_SetGraphPreset::InGraphPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetIsEnabled \ +static_assert(alignof(MoviePipelineExecutorJob_SetIsEnabled) == 0x000001, "Wrong alignment on MoviePipelineExecutorJob_SetIsEnabled"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetIsEnabled) == 0x000001, "Wrong size on MoviePipelineExecutorJob_SetIsEnabled"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetIsEnabled, bInEnabled) == 0x000000, "Member 'MoviePipelineExecutorJob_SetIsEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetPresetOrigin \ +static_assert(alignof(MoviePipelineExecutorJob_SetPresetOrigin) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetPresetOrigin"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetPresetOrigin) == 0x000008, "Wrong size on MoviePipelineExecutorJob_SetPresetOrigin"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetPresetOrigin, InPreset) == 0x000000, "Member 'MoviePipelineExecutorJob_SetPresetOrigin::InPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetSequence \ +static_assert(alignof(MoviePipelineExecutorJob_SetSequence) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetSequence"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetSequence) == 0x000020, "Wrong size on MoviePipelineExecutorJob_SetSequence"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetSequence, InSequence) == 0x000000, "Member 'MoviePipelineExecutorJob_SetSequence::InSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorJob_SetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_SetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorJob_SetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetStatusMessage, InStatus) == 0x000000, "Member 'MoviePipelineExecutorJob_SetStatusMessage::InStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_SetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorJob_SetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorJob_SetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorJob_SetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorJob_SetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorJob_SetStatusProgress, InProgress) == 0x000000, "Member 'MoviePipelineExecutorJob_SetStatusProgress::InProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetConfiguration \ +static_assert(alignof(MoviePipelineExecutorJob_GetConfiguration) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_GetConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetConfiguration) == 0x000008, "Wrong size on MoviePipelineExecutorJob_GetConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetConfiguration, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetGraphConfig \ +static_assert(alignof(MoviePipelineExecutorJob_GetGraphConfig) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_GetGraphConfig"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetGraphConfig) == 0x000008, "Wrong size on MoviePipelineExecutorJob_GetGraphConfig"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetGraphConfig, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetGraphConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetGraphPreset \ +static_assert(alignof(MoviePipelineExecutorJob_GetGraphPreset) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_GetGraphPreset"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetGraphPreset) == 0x000008, "Wrong size on MoviePipelineExecutorJob_GetGraphPreset"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetGraphPreset, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetGraphPreset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetPresetOrigin \ +static_assert(alignof(MoviePipelineExecutorJob_GetPresetOrigin) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_GetPresetOrigin"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetPresetOrigin) == 0x000008, "Wrong size on MoviePipelineExecutorJob_GetPresetOrigin"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetPresetOrigin, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetPresetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetStatusMessage \ +static_assert(alignof(MoviePipelineExecutorJob_GetStatusMessage) == 0x000008, "Wrong alignment on MoviePipelineExecutorJob_GetStatusMessage"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetStatusMessage) == 0x000010, "Wrong size on MoviePipelineExecutorJob_GetStatusMessage"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetStatusMessage, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetStatusMessage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_GetStatusProgress \ +static_assert(alignof(MoviePipelineExecutorJob_GetStatusProgress) == 0x000004, "Wrong alignment on MoviePipelineExecutorJob_GetStatusProgress"); \ +static_assert(sizeof(MoviePipelineExecutorJob_GetStatusProgress) == 0x000004, "Wrong size on MoviePipelineExecutorJob_GetStatusProgress"); \ +static_assert(offsetof(MoviePipelineExecutorJob_GetStatusProgress, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_GetStatusProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_IsConsumed \ +static_assert(alignof(MoviePipelineExecutorJob_IsConsumed) == 0x000001, "Wrong alignment on MoviePipelineExecutorJob_IsConsumed"); \ +static_assert(sizeof(MoviePipelineExecutorJob_IsConsumed) == 0x000001, "Wrong size on MoviePipelineExecutorJob_IsConsumed"); \ +static_assert(offsetof(MoviePipelineExecutorJob_IsConsumed, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_IsConsumed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_IsEnabled \ +static_assert(alignof(MoviePipelineExecutorJob_IsEnabled) == 0x000001, "Wrong alignment on MoviePipelineExecutorJob_IsEnabled"); \ +static_assert(sizeof(MoviePipelineExecutorJob_IsEnabled) == 0x000001, "Wrong size on MoviePipelineExecutorJob_IsEnabled"); \ +static_assert(offsetof(MoviePipelineExecutorJob_IsEnabled, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineExecutorJob_IsUsingGraphConfiguration \ +static_assert(alignof(MoviePipelineExecutorJob_IsUsingGraphConfiguration) == 0x000001, "Wrong alignment on MoviePipelineExecutorJob_IsUsingGraphConfiguration"); \ +static_assert(sizeof(MoviePipelineExecutorJob_IsUsingGraphConfiguration) == 0x000001, "Wrong size on MoviePipelineExecutorJob_IsUsingGraphConfiguration"); \ +static_assert(offsetof(MoviePipelineExecutorJob_IsUsingGraphConfiguration, ReturnValue) == 0x000000, "Member 'MoviePipelineExecutorJob_IsUsingGraphConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineExecutorJob \ +static_assert(alignof(UMoviePipelineExecutorJob) == 0x000008, "Wrong alignment on UMoviePipelineExecutorJob"); \ +static_assert(sizeof(UMoviePipelineExecutorJob) == 0x000140, "Wrong size on UMoviePipelineExecutorJob"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, JobName) == 0x000028, "Member 'UMoviePipelineExecutorJob::JobName' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, Sequence) == 0x000038, "Member 'UMoviePipelineExecutorJob::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, Map) == 0x000058, "Member 'UMoviePipelineExecutorJob::Map' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, Author) == 0x000078, "Member 'UMoviePipelineExecutorJob::Author' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, Comment) == 0x000088, "Member 'UMoviePipelineExecutorJob::Comment' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, ShotInfo) == 0x000098, "Member 'UMoviePipelineExecutorJob::ShotInfo' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, UserData) == 0x0000A8, "Member 'UMoviePipelineExecutorJob::UserData' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, VariableAssignments) == 0x0000B8, "Member 'UMoviePipelineExecutorJob::VariableAssignments' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, StatusMessage) == 0x0000C0, "Member 'UMoviePipelineExecutorJob::StatusMessage' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, StatusProgress) == 0x0000D0, "Member 'UMoviePipelineExecutorJob::StatusProgress' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, bIsConsumed) == 0x0000D4, "Member 'UMoviePipelineExecutorJob::bIsConsumed' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, Configuration) == 0x0000D8, "Member 'UMoviePipelineExecutorJob::Configuration' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, PresetOrigin) == 0x0000E0, "Member 'UMoviePipelineExecutorJob::PresetOrigin' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, bEnabled) == 0x000108, "Member 'UMoviePipelineExecutorJob::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, GraphConfig) == 0x000110, "Member 'UMoviePipelineExecutorJob::GraphConfig' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineExecutorJob, GraphPreset) == 0x000118, "Member 'UMoviePipelineExecutorJob::GraphPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_AllocateNewJob \ +static_assert(alignof(MoviePipelineQueue_AllocateNewJob) == 0x000008, "Wrong alignment on MoviePipelineQueue_AllocateNewJob"); \ +static_assert(sizeof(MoviePipelineQueue_AllocateNewJob) == 0x000010, "Wrong size on MoviePipelineQueue_AllocateNewJob"); \ +static_assert(offsetof(MoviePipelineQueue_AllocateNewJob, InJobType) == 0x000000, "Member 'MoviePipelineQueue_AllocateNewJob::InJobType' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueue_AllocateNewJob, ReturnValue) == 0x000008, "Member 'MoviePipelineQueue_AllocateNewJob::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_CopyFrom \ +static_assert(alignof(MoviePipelineQueue_CopyFrom) == 0x000008, "Wrong alignment on MoviePipelineQueue_CopyFrom"); \ +static_assert(sizeof(MoviePipelineQueue_CopyFrom) == 0x000008, "Wrong size on MoviePipelineQueue_CopyFrom"); \ +static_assert(offsetof(MoviePipelineQueue_CopyFrom, InQueue) == 0x000000, "Member 'MoviePipelineQueue_CopyFrom::InQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_DeleteJob \ +static_assert(alignof(MoviePipelineQueue_DeleteJob) == 0x000008, "Wrong alignment on MoviePipelineQueue_DeleteJob"); \ +static_assert(sizeof(MoviePipelineQueue_DeleteJob) == 0x000008, "Wrong size on MoviePipelineQueue_DeleteJob"); \ +static_assert(offsetof(MoviePipelineQueue_DeleteJob, InJob) == 0x000000, "Member 'MoviePipelineQueue_DeleteJob::InJob' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_DuplicateJob \ +static_assert(alignof(MoviePipelineQueue_DuplicateJob) == 0x000008, "Wrong alignment on MoviePipelineQueue_DuplicateJob"); \ +static_assert(sizeof(MoviePipelineQueue_DuplicateJob) == 0x000010, "Wrong size on MoviePipelineQueue_DuplicateJob"); \ +static_assert(offsetof(MoviePipelineQueue_DuplicateJob, InJob) == 0x000000, "Member 'MoviePipelineQueue_DuplicateJob::InJob' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueue_DuplicateJob, ReturnValue) == 0x000008, "Member 'MoviePipelineQueue_DuplicateJob::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_SetJobIndex \ +static_assert(alignof(MoviePipelineQueue_SetJobIndex) == 0x000008, "Wrong alignment on MoviePipelineQueue_SetJobIndex"); \ +static_assert(sizeof(MoviePipelineQueue_SetJobIndex) == 0x000010, "Wrong size on MoviePipelineQueue_SetJobIndex"); \ +static_assert(offsetof(MoviePipelineQueue_SetJobIndex, InJob) == 0x000000, "Member 'MoviePipelineQueue_SetJobIndex::InJob' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueue_SetJobIndex, Index_0) == 0x000008, "Member 'MoviePipelineQueue_SetJobIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_SetQueueOrigin \ +static_assert(alignof(MoviePipelineQueue_SetQueueOrigin) == 0x000008, "Wrong alignment on MoviePipelineQueue_SetQueueOrigin"); \ +static_assert(sizeof(MoviePipelineQueue_SetQueueOrigin) == 0x000008, "Wrong size on MoviePipelineQueue_SetQueueOrigin"); \ +static_assert(offsetof(MoviePipelineQueue_SetQueueOrigin, InConfig) == 0x000000, "Member 'MoviePipelineQueue_SetQueueOrigin::InConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_GetJobs \ +static_assert(alignof(MoviePipelineQueue_GetJobs) == 0x000008, "Wrong alignment on MoviePipelineQueue_GetJobs"); \ +static_assert(sizeof(MoviePipelineQueue_GetJobs) == 0x000010, "Wrong size on MoviePipelineQueue_GetJobs"); \ +static_assert(offsetof(MoviePipelineQueue_GetJobs, ReturnValue) == 0x000000, "Member 'MoviePipelineQueue_GetJobs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueue_GetQueueOrigin \ +static_assert(alignof(MoviePipelineQueue_GetQueueOrigin) == 0x000008, "Wrong alignment on MoviePipelineQueue_GetQueueOrigin"); \ +static_assert(sizeof(MoviePipelineQueue_GetQueueOrigin) == 0x000008, "Wrong size on MoviePipelineQueue_GetQueueOrigin"); \ +static_assert(offsetof(MoviePipelineQueue_GetQueueOrigin, ReturnValue) == 0x000000, "Member 'MoviePipelineQueue_GetQueueOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineQueue \ +static_assert(alignof(UMoviePipelineQueue) == 0x000008, "Wrong alignment on UMoviePipelineQueue"); \ +static_assert(sizeof(UMoviePipelineQueue) == 0x000068, "Wrong size on UMoviePipelineQueue"); \ +static_assert(offsetof(UMoviePipelineQueue, Jobs) == 0x000028, "Member 'UMoviePipelineQueue::Jobs' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineQueue, QueueOrigin) == 0x000038, "Member 'UMoviePipelineQueue::QueueOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_AllocateJob \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_AllocateJob) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_AllocateJob"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_AllocateJob) == 0x000010, "Wrong size on MoviePipelineQueueEngineSubsystem_AllocateJob"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_AllocateJob, InSequence) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_AllocateJob::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_AllocateJob, ReturnValue) == 0x000008, "Member 'MoviePipelineQueueEngineSubsystem_AllocateJob::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_RenderJob \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_RenderJob) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_RenderJob"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_RenderJob) == 0x000008, "Wrong size on MoviePipelineQueueEngineSubsystem_RenderJob"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_RenderJob, InJob) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_RenderJob::InJob' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor) == 0x000010, "Wrong size on MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor, InExecutorType) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor::InExecutorType' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor, ReturnValue) == 0x000008, "Member 'MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance) == 0x000008, "Wrong size on MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance, InExecutor) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_RenderQueueWithExecutorInstance::InExecutor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_SetConfiguration \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_SetConfiguration) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_SetConfiguration"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_SetConfiguration) == 0x000010, "Wrong size on MoviePipelineQueueEngineSubsystem_SetConfiguration"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_SetConfiguration, InProgressWidgetClass) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_SetConfiguration::InProgressWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_SetConfiguration, bRenderPlayerViewport) == 0x000008, "Member 'MoviePipelineQueueEngineSubsystem_SetConfiguration::bRenderPlayerViewport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_GetActiveExecutor \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_GetActiveExecutor) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_GetActiveExecutor"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_GetActiveExecutor) == 0x000008, "Wrong size on MoviePipelineQueueEngineSubsystem_GetActiveExecutor"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_GetActiveExecutor, ReturnValue) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_GetActiveExecutor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_GetQueue \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_GetQueue) == 0x000008, "Wrong alignment on MoviePipelineQueueEngineSubsystem_GetQueue"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_GetQueue) == 0x000008, "Wrong size on MoviePipelineQueueEngineSubsystem_GetQueue"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_GetQueue, ReturnValue) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_GetQueue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineQueueEngineSubsystem_IsRendering \ +static_assert(alignof(MoviePipelineQueueEngineSubsystem_IsRendering) == 0x000001, "Wrong alignment on MoviePipelineQueueEngineSubsystem_IsRendering"); \ +static_assert(sizeof(MoviePipelineQueueEngineSubsystem_IsRendering) == 0x000001, "Wrong size on MoviePipelineQueueEngineSubsystem_IsRendering"); \ +static_assert(offsetof(MoviePipelineQueueEngineSubsystem_IsRendering, ReturnValue) == 0x000000, "Member 'MoviePipelineQueueEngineSubsystem_IsRendering::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineQueueEngineSubsystem \ +static_assert(alignof(UMoviePipelineQueueEngineSubsystem) == 0x000008, "Wrong alignment on UMoviePipelineQueueEngineSubsystem"); \ +static_assert(sizeof(UMoviePipelineQueueEngineSubsystem) == 0x000090, "Wrong size on UMoviePipelineQueueEngineSubsystem"); \ +static_assert(offsetof(UMoviePipelineQueueEngineSubsystem, OnRenderFinished) == 0x000030, "Member 'UMoviePipelineQueueEngineSubsystem::OnRenderFinished' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineQueueEngineSubsystem, ActiveExecutor) == 0x000040, "Member 'UMoviePipelineQueueEngineSubsystem::ActiveExecutor' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineQueueEngineSubsystem, CurrentQueue) == 0x000048, "Member 'UMoviePipelineQueueEngineSubsystem::CurrentQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineRenderPass \ +static_assert(alignof(UMoviePipelineRenderPass) == 0x000008, "Wrong alignment on UMoviePipelineRenderPass"); \ +static_assert(sizeof(UMoviePipelineRenderPass) == 0x000048, "Wrong size on UMoviePipelineRenderPass"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineShotConfig \ +static_assert(alignof(UMoviePipelineShotConfig) == 0x000008, "Wrong alignment on UMoviePipelineShotConfig"); \ +static_assert(sizeof(UMoviePipelineShotConfig) == 0x000078, "Wrong size on UMoviePipelineShotConfig"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineVideoOutputBase \ +static_assert(alignof(UMoviePipelineVideoOutputBase) == 0x000008, "Wrong alignment on UMoviePipelineVideoOutputBase"); \ +static_assert(sizeof(UMoviePipelineVideoOutputBase) == 0x000090, "Wrong size on UMoviePipelineVideoOutputBase"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSkeletalAnimationParams \ +static_assert(alignof(FMovieSceneSkeletalAnimationParams) == 0x000008, "Wrong alignment on FMovieSceneSkeletalAnimationParams"); \ +static_assert(sizeof(FMovieSceneSkeletalAnimationParams) == 0x000150, "Wrong size on FMovieSceneSkeletalAnimationParams"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, Animation) == 0x000000, "Member 'FMovieSceneSkeletalAnimationParams::Animation' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, FirstLoopStartFrameOffset) == 0x000008, "Member 'FMovieSceneSkeletalAnimationParams::FirstLoopStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, StartFrameOffset) == 0x00000C, "Member 'FMovieSceneSkeletalAnimationParams::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, EndFrameOffset) == 0x000010, "Member 'FMovieSceneSkeletalAnimationParams::EndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, PlayRate) == 0x000014, "Member 'FMovieSceneSkeletalAnimationParams::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, SlotName) == 0x00001C, "Member 'FMovieSceneSkeletalAnimationParams::SlotName' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, MirrorDataTable) == 0x000028, "Member 'FMovieSceneSkeletalAnimationParams::MirrorDataTable' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, Weight) == 0x000030, "Member 'FMovieSceneSkeletalAnimationParams::Weight' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, bSkipAnimNotifiers) == 0x000140, "Member 'FMovieSceneSkeletalAnimationParams::bSkipAnimNotifiers' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, bForceCustomMode) == 0x000141, "Member 'FMovieSceneSkeletalAnimationParams::bForceCustomMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, SwapRootBone) == 0x000142, "Member 'FMovieSceneSkeletalAnimationParams::SwapRootBone' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, StartOffset) == 0x000144, "Member 'FMovieSceneSkeletalAnimationParams::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationParams, EndOffset) == 0x000148, "Member 'FMovieSceneSkeletalAnimationParams::EndOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScenePreAnimatedMaterialParameters \ +static_assert(alignof(FMovieScenePreAnimatedMaterialParameters) == 0x000008, "Wrong alignment on FMovieScenePreAnimatedMaterialParameters"); \ +static_assert(sizeof(FMovieScenePreAnimatedMaterialParameters) == 0x000030, "Wrong size on FMovieScenePreAnimatedMaterialParameters"); \ +static_assert(offsetof(FMovieScenePreAnimatedMaterialParameters, PreviousMaterial) == 0x000000, "Member 'FMovieScenePreAnimatedMaterialParameters::PreviousMaterial' has a wrong offset!"); \ +static_assert(offsetof(FMovieScenePreAnimatedMaterialParameters, SoftPreviousMaterial) == 0x000008, "Member 'FMovieScenePreAnimatedMaterialParameters::SoftPreviousMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDoubleVectorKeyStructBase \ +static_assert(alignof(FMovieSceneDoubleVectorKeyStructBase) == 0x000008, "Wrong alignment on FMovieSceneDoubleVectorKeyStructBase"); \ +static_assert(sizeof(FMovieSceneDoubleVectorKeyStructBase) == 0x000028, "Wrong size on FMovieSceneDoubleVectorKeyStructBase"); \ +static_assert(offsetof(FMovieSceneDoubleVectorKeyStructBase, Time) == 0x000008, "Member 'FMovieSceneDoubleVectorKeyStructBase::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector3dKeyStruct \ +static_assert(alignof(FMovieSceneVector3dKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneVector3dKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector3dKeyStruct) == 0x000040, "Wrong size on FMovieSceneVector3dKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector3dKeyStruct, Vector) == 0x000028, "Member 'FMovieSceneVector3dKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSourceTrigger \ +static_assert(alignof(FMovieSceneCameraShakeSourceTrigger) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSourceTrigger"); \ +static_assert(sizeof(FMovieSceneCameraShakeSourceTrigger) == 0x000028, "Wrong size on FMovieSceneCameraShakeSourceTrigger"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTrigger, ShakeClass) == 0x000000, "Member 'FMovieSceneCameraShakeSourceTrigger::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTrigger, PlayScale) == 0x000008, "Member 'FMovieSceneCameraShakeSourceTrigger::PlayScale' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTrigger, PlaySpace) == 0x00000C, "Member 'FMovieSceneCameraShakeSourceTrigger::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTrigger, UserDefinedPlaySpace) == 0x000010, "Member 'FMovieSceneCameraShakeSourceTrigger::UserDefinedPlaySpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSectionData \ +static_assert(alignof(FMovieSceneCameraShakeSectionData) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSectionData"); \ +static_assert(sizeof(FMovieSceneCameraShakeSectionData) == 0x000028, "Wrong size on FMovieSceneCameraShakeSectionData"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionData, ShakeClass) == 0x000000, "Member 'FMovieSceneCameraShakeSectionData::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionData, PlayScale) == 0x000008, "Member 'FMovieSceneCameraShakeSectionData::PlayScale' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionData, PlaySpace) == 0x00000C, "Member 'FMovieSceneCameraShakeSectionData::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionData, UserDefinedPlaySpace) == 0x000010, "Member 'FMovieSceneCameraShakeSectionData::UserDefinedPlaySpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSectionTemplate \ +static_assert(alignof(FMovieSceneCameraShakeSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSectionTemplate"); \ +static_assert(sizeof(FMovieSceneCameraShakeSectionTemplate) == 0x000050, "Wrong size on FMovieSceneCameraShakeSectionTemplate"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionTemplate, SourceData) == 0x000020, "Member 'FMovieSceneCameraShakeSectionTemplate::SourceData' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSectionTemplate, SectionStartTime) == 0x000048, "Member 'FMovieSceneCameraShakeSectionTemplate::SectionStartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSourceTriggerChannel \ +static_assert(alignof(FMovieSceneCameraShakeSourceTriggerChannel) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSourceTriggerChannel"); \ +static_assert(sizeof(FMovieSceneCameraShakeSourceTriggerChannel) == 0x0000F8, "Wrong size on FMovieSceneCameraShakeSourceTriggerChannel"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTriggerChannel, KeyTimes) == 0x000050, "Member 'FMovieSceneCameraShakeSourceTriggerChannel::KeyTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTriggerChannel, KeyValues) == 0x000060, "Member 'FMovieSceneCameraShakeSourceTriggerChannel::KeyValues' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTriggerChannel, KeyHandles) == 0x000070, "Member 'FMovieSceneCameraShakeSourceTriggerChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneColorKeyStruct \ +static_assert(alignof(FMovieSceneColorKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneColorKeyStruct"); \ +static_assert(sizeof(FMovieSceneColorKeyStruct) == 0x000038, "Wrong size on FMovieSceneColorKeyStruct"); \ +static_assert(offsetof(FMovieSceneColorKeyStruct, Color) == 0x000008, "Member 'FMovieSceneColorKeyStruct::Color' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneColorKeyStruct, Time) == 0x000018, "Member 'FMovieSceneColorKeyStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerlinNoiseParams \ +static_assert(alignof(FPerlinNoiseParams) == 0x000008, "Wrong alignment on FPerlinNoiseParams"); \ +static_assert(sizeof(FPerlinNoiseParams) == 0x000018, "Wrong size on FPerlinNoiseParams"); \ +static_assert(offsetof(FPerlinNoiseParams, Frequency) == 0x000000, "Member 'FPerlinNoiseParams::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FPerlinNoiseParams, Amplitude) == 0x000008, "Member 'FPerlinNoiseParams::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FPerlinNoiseParams, Offset) == 0x000010, "Member 'FPerlinNoiseParams::Offset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDoublePerlinNoiseChannel \ +static_assert(alignof(FMovieSceneDoublePerlinNoiseChannel) == 0x000008, "Wrong alignment on FMovieSceneDoublePerlinNoiseChannel"); \ +static_assert(sizeof(FMovieSceneDoublePerlinNoiseChannel) == 0x000068, "Wrong size on FMovieSceneDoublePerlinNoiseChannel"); \ +static_assert(offsetof(FMovieSceneDoublePerlinNoiseChannel, PerlinNoiseParams) == 0x000050, "Member 'FMovieSceneDoublePerlinNoiseChannel::PerlinNoiseParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSourceShakeSectionTemplate \ +static_assert(alignof(FMovieSceneCameraShakeSourceShakeSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSourceShakeSectionTemplate"); \ +static_assert(sizeof(FMovieSceneCameraShakeSourceShakeSectionTemplate) == 0x000050, "Wrong size on FMovieSceneCameraShakeSourceShakeSectionTemplate"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceShakeSectionTemplate, SourceData) == 0x000020, "Member 'FMovieSceneCameraShakeSourceShakeSectionTemplate::SourceData' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceShakeSectionTemplate, SectionStartTime) == 0x000048, "Member 'FMovieSceneCameraShakeSourceShakeSectionTemplate::SectionStartTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceShakeSectionTemplate, SectionEndTime) == 0x00004C, "Member 'FMovieSceneCameraShakeSourceShakeSectionTemplate::SectionEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventPayloadVariable \ +static_assert(alignof(FMovieSceneEventPayloadVariable) == 0x000008, "Wrong alignment on FMovieSceneEventPayloadVariable"); \ +static_assert(sizeof(FMovieSceneEventPayloadVariable) == 0x000010, "Wrong size on FMovieSceneEventPayloadVariable"); \ +static_assert(offsetof(FMovieSceneEventPayloadVariable, Value) == 0x000000, "Member 'FMovieSceneEventPayloadVariable::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventParameters \ +static_assert(alignof(FMovieSceneEventParameters) == 0x000008, "Wrong alignment on FMovieSceneEventParameters"); \ +static_assert(sizeof(FMovieSceneEventParameters) == 0x000030, "Wrong size on FMovieSceneEventParameters"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventPtrs \ +static_assert(alignof(FMovieSceneEventPtrs) == 0x000008, "Wrong alignment on FMovieSceneEventPtrs"); \ +static_assert(sizeof(FMovieSceneEventPtrs) == 0x000028, "Wrong size on FMovieSceneEventPtrs"); \ +static_assert(offsetof(FMovieSceneEventPtrs, Function) == 0x000000, "Member 'FMovieSceneEventPtrs::Function' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventPtrs, BoundObjectProperty) == 0x000008, "Member 'FMovieSceneEventPtrs::BoundObjectProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatVectorKeyStructBase \ +static_assert(alignof(FMovieSceneFloatVectorKeyStructBase) == 0x000008, "Wrong alignment on FMovieSceneFloatVectorKeyStructBase"); \ +static_assert(sizeof(FMovieSceneFloatVectorKeyStructBase) == 0x000028, "Wrong size on FMovieSceneFloatVectorKeyStructBase"); \ +static_assert(offsetof(FMovieSceneFloatVectorKeyStructBase, Time) == 0x000008, "Member 'FMovieSceneFloatVectorKeyStructBase::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEvent \ +static_assert(alignof(FMovieSceneEvent) == 0x000008, "Wrong alignment on FMovieSceneEvent"); \ +static_assert(sizeof(FMovieSceneEvent) == 0x000028, "Wrong size on FMovieSceneEvent"); \ +static_assert(offsetof(FMovieSceneEvent, Ptrs) == 0x000000, "Member 'FMovieSceneEvent::Ptrs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector4dKeyStruct \ +static_assert(alignof(FMovieSceneVector4dKeyStruct) == 0x000010, "Wrong alignment on FMovieSceneVector4dKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector4dKeyStruct) == 0x000050, "Wrong size on FMovieSceneVector4dKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector4dKeyStruct, Vector) == 0x000030, "Member 'FMovieSceneVector4dKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventChannel \ +static_assert(alignof(FMovieSceneEventChannel) == 0x000008, "Wrong alignment on FMovieSceneEventChannel"); \ +static_assert(sizeof(FMovieSceneEventChannel) == 0x0000F8, "Wrong size on FMovieSceneEventChannel"); \ +static_assert(offsetof(FMovieSceneEventChannel, KeyTimes) == 0x000050, "Member 'FMovieSceneEventChannel::KeyTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventChannel, KeyValues) == 0x000060, "Member 'FMovieSceneEventChannel::KeyValues' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventChannel, KeyHandles) == 0x000070, "Member 'FMovieSceneEventChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatPerlinNoiseChannel \ +static_assert(alignof(FMovieSceneFloatPerlinNoiseChannel) == 0x000008, "Wrong alignment on FMovieSceneFloatPerlinNoiseChannel"); \ +static_assert(sizeof(FMovieSceneFloatPerlinNoiseChannel) == 0x000068, "Wrong size on FMovieSceneFloatPerlinNoiseChannel"); \ +static_assert(offsetof(FMovieSceneFloatPerlinNoiseChannel, PerlinNoiseParams) == 0x000050, "Member 'FMovieSceneFloatPerlinNoiseChannel::PerlinNoiseParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneStringChannel \ +static_assert(alignof(FMovieSceneStringChannel) == 0x000008, "Wrong alignment on FMovieSceneStringChannel"); \ +static_assert(sizeof(FMovieSceneStringChannel) == 0x000110, "Wrong size on FMovieSceneStringChannel"); \ +static_assert(offsetof(FMovieSceneStringChannel, Times) == 0x000050, "Member 'FMovieSceneStringChannel::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneStringChannel, Values) == 0x000060, "Member 'FMovieSceneStringChannel::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneStringChannel, DefaultValue) == 0x000070, "Member 'FMovieSceneStringChannel::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneStringChannel, bHasDefaultValue) == 0x000080, "Member 'FMovieSceneStringChannel::bHasDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneStringChannel, KeyHandles) == 0x000088, "Member 'FMovieSceneStringChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene3DPathSectionTemplate \ +static_assert(alignof(FMovieScene3DPathSectionTemplate) == 0x000008, "Wrong alignment on FMovieScene3DPathSectionTemplate"); \ +static_assert(sizeof(FMovieScene3DPathSectionTemplate) == 0x000150, "Wrong size on FMovieScene3DPathSectionTemplate"); \ +static_assert(offsetof(FMovieScene3DPathSectionTemplate, PathBindingID) == 0x000020, "Member 'FMovieScene3DPathSectionTemplate::PathBindingID' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DPathSectionTemplate, TimingCurve) == 0x000038, "Member 'FMovieScene3DPathSectionTemplate::TimingCurve' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DPathSectionTemplate, FrontAxisEnum) == 0x000148, "Member 'FMovieScene3DPathSectionTemplate::FrontAxisEnum' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DPathSectionTemplate, UpAxisEnum) == 0x000149, "Member 'FMovieScene3DPathSectionTemplate::UpAxisEnum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneActorReferenceKey \ +static_assert(alignof(FMovieSceneActorReferenceKey) == 0x000004, "Wrong alignment on FMovieSceneActorReferenceKey"); \ +static_assert(sizeof(FMovieSceneActorReferenceKey) == 0x000028, "Wrong size on FMovieSceneActorReferenceKey"); \ +static_assert(offsetof(FMovieSceneActorReferenceKey, Object) == 0x000000, "Member 'FMovieSceneActorReferenceKey::Object' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceKey, ComponentName) == 0x000018, "Member 'FMovieSceneActorReferenceKey::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceKey, SocketName) == 0x000020, "Member 'FMovieSceneActorReferenceKey::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneActorReferenceData \ +static_assert(alignof(FMovieSceneActorReferenceData) == 0x000008, "Wrong alignment on FMovieSceneActorReferenceData"); \ +static_assert(sizeof(FMovieSceneActorReferenceData) == 0x000120, "Wrong size on FMovieSceneActorReferenceData"); \ +static_assert(offsetof(FMovieSceneActorReferenceData, KeyTimes) == 0x000050, "Member 'FMovieSceneActorReferenceData::KeyTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceData, DefaultValue) == 0x000060, "Member 'FMovieSceneActorReferenceData::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceData, KeyValues) == 0x000088, "Member 'FMovieSceneActorReferenceData::KeyValues' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceData, KeyHandles) == 0x000098, "Member 'FMovieSceneActorReferenceData::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneActorReferenceSectionTemplate \ +static_assert(alignof(FMovieSceneActorReferenceSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneActorReferenceSectionTemplate"); \ +static_assert(sizeof(FMovieSceneActorReferenceSectionTemplate) == 0x000158, "Wrong size on FMovieSceneActorReferenceSectionTemplate"); \ +static_assert(offsetof(FMovieSceneActorReferenceSectionTemplate, PropertyData) == 0x000020, "Member 'FMovieSceneActorReferenceSectionTemplate::PropertyData' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneActorReferenceSectionTemplate, ActorReferenceData) == 0x000038, "Member 'FMovieSceneActorReferenceSectionTemplate::ActorReferenceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBaseCacheSectionTemplateParameters \ +static_assert(alignof(FMovieSceneBaseCacheSectionTemplateParameters) == 0x000004, "Wrong alignment on FMovieSceneBaseCacheSectionTemplateParameters"); \ +static_assert(sizeof(FMovieSceneBaseCacheSectionTemplateParameters) == 0x000008, "Wrong size on FMovieSceneBaseCacheSectionTemplateParameters"); \ +static_assert(offsetof(FMovieSceneBaseCacheSectionTemplateParameters, SectionStartTime) == 0x000000, "Member 'FMovieSceneBaseCacheSectionTemplateParameters::SectionStartTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBaseCacheSectionTemplateParameters, SectionEndTime) == 0x000004, "Member 'FMovieSceneBaseCacheSectionTemplateParameters::SectionEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCameraShakeSourceTriggerSectionTemplate \ +static_assert(alignof(FMovieSceneCameraShakeSourceTriggerSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneCameraShakeSourceTriggerSectionTemplate"); \ +static_assert(sizeof(FMovieSceneCameraShakeSourceTriggerSectionTemplate) == 0x000040, "Wrong size on FMovieSceneCameraShakeSourceTriggerSectionTemplate"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTriggerSectionTemplate, TriggerTimes) == 0x000020, "Member 'FMovieSceneCameraShakeSourceTriggerSectionTemplate::TriggerTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCameraShakeSourceTriggerSectionTemplate, TriggerValues) == 0x000030, "Member 'FMovieSceneCameraShakeSourceTriggerSectionTemplate::TriggerValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEventPayload \ +static_assert(alignof(FEventPayload) == 0x000008, "Wrong alignment on FEventPayload"); \ +static_assert(sizeof(FEventPayload) == 0x000038, "Wrong size on FEventPayload"); \ +static_assert(offsetof(FEventPayload, EventName) == 0x000000, "Member 'FEventPayload::EventName' has a wrong offset!"); \ +static_assert(offsetof(FEventPayload, Parameters) == 0x000008, "Member 'FEventPayload::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventSectionData \ +static_assert(alignof(FMovieSceneEventSectionData) == 0x000008, "Wrong alignment on FMovieSceneEventSectionData"); \ +static_assert(sizeof(FMovieSceneEventSectionData) == 0x0000F8, "Wrong size on FMovieSceneEventSectionData"); \ +static_assert(offsetof(FMovieSceneEventSectionData, Times) == 0x000050, "Member 'FMovieSceneEventSectionData::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventSectionData, KeyValues) == 0x000060, "Member 'FMovieSceneEventSectionData::KeyValues' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventSectionData, KeyHandles) == 0x000070, "Member 'FMovieSceneEventSectionData::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventSectionTemplate \ +static_assert(alignof(FMovieSceneEventSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneEventSectionTemplate"); \ +static_assert(sizeof(FMovieSceneEventSectionTemplate) == 0x000120, "Wrong size on FMovieSceneEventSectionTemplate"); \ +static_assert(offsetof(FMovieSceneEventSectionTemplate, EventData) == 0x000020, "Member 'FMovieSceneEventSectionTemplate::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneObjectPropertyTemplate \ +static_assert(alignof(FMovieSceneObjectPropertyTemplate) == 0x000008, "Wrong alignment on FMovieSceneObjectPropertyTemplate"); \ +static_assert(sizeof(FMovieSceneObjectPropertyTemplate) == 0x000168, "Wrong size on FMovieSceneObjectPropertyTemplate"); \ +static_assert(offsetof(FMovieSceneObjectPropertyTemplate, ObjectChannel) == 0x000038, "Member 'FMovieSceneObjectPropertyTemplate::ObjectChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScalarParameterNameAndCurve \ +static_assert(alignof(FScalarParameterNameAndCurve) == 0x000008, "Wrong alignment on FScalarParameterNameAndCurve"); \ +static_assert(sizeof(FScalarParameterNameAndCurve) == 0x000118, "Wrong size on FScalarParameterNameAndCurve"); \ +static_assert(offsetof(FScalarParameterNameAndCurve, ParameterName) == 0x000000, "Member 'FScalarParameterNameAndCurve::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FScalarParameterNameAndCurve, ParameterCurve) == 0x000008, "Member 'FScalarParameterNameAndCurve::ParameterCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolParameterNameAndCurve \ +static_assert(alignof(FBoolParameterNameAndCurve) == 0x000008, "Wrong alignment on FBoolParameterNameAndCurve"); \ +static_assert(sizeof(FBoolParameterNameAndCurve) == 0x000108, "Wrong size on FBoolParameterNameAndCurve"); \ +static_assert(offsetof(FBoolParameterNameAndCurve, ParameterName) == 0x000000, "Member 'FBoolParameterNameAndCurve::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FBoolParameterNameAndCurve, ParameterCurve) == 0x000008, "Member 'FBoolParameterNameAndCurve::ParameterCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVector2DParameterNameAndCurves \ +static_assert(alignof(FVector2DParameterNameAndCurves) == 0x000008, "Wrong alignment on FVector2DParameterNameAndCurves"); \ +static_assert(sizeof(FVector2DParameterNameAndCurves) == 0x000228, "Wrong size on FVector2DParameterNameAndCurves"); \ +static_assert(offsetof(FVector2DParameterNameAndCurves, ParameterName) == 0x000000, "Member 'FVector2DParameterNameAndCurves::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FVector2DParameterNameAndCurves, XCurve) == 0x000008, "Member 'FVector2DParameterNameAndCurves::XCurve' has a wrong offset!"); \ +static_assert(offsetof(FVector2DParameterNameAndCurves, YCurve) == 0x000118, "Member 'FVector2DParameterNameAndCurves::YCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorParameterNameAndCurves \ +static_assert(alignof(FVectorParameterNameAndCurves) == 0x000008, "Wrong alignment on FVectorParameterNameAndCurves"); \ +static_assert(sizeof(FVectorParameterNameAndCurves) == 0x000338, "Wrong size on FVectorParameterNameAndCurves"); \ +static_assert(offsetof(FVectorParameterNameAndCurves, ParameterName) == 0x000000, "Member 'FVectorParameterNameAndCurves::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FVectorParameterNameAndCurves, XCurve) == 0x000008, "Member 'FVectorParameterNameAndCurves::XCurve' has a wrong offset!"); \ +static_assert(offsetof(FVectorParameterNameAndCurves, YCurve) == 0x000118, "Member 'FVectorParameterNameAndCurves::YCurve' has a wrong offset!"); \ +static_assert(offsetof(FVectorParameterNameAndCurves, ZCurve) == 0x000228, "Member 'FVectorParameterNameAndCurves::ZCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FColorParameterNameAndCurves \ +static_assert(alignof(FColorParameterNameAndCurves) == 0x000008, "Wrong alignment on FColorParameterNameAndCurves"); \ +static_assert(sizeof(FColorParameterNameAndCurves) == 0x000448, "Wrong size on FColorParameterNameAndCurves"); \ +static_assert(offsetof(FColorParameterNameAndCurves, ParameterName) == 0x000000, "Member 'FColorParameterNameAndCurves::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FColorParameterNameAndCurves, RedCurve) == 0x000008, "Member 'FColorParameterNameAndCurves::RedCurve' has a wrong offset!"); \ +static_assert(offsetof(FColorParameterNameAndCurves, GreenCurve) == 0x000118, "Member 'FColorParameterNameAndCurves::GreenCurve' has a wrong offset!"); \ +static_assert(offsetof(FColorParameterNameAndCurves, BlueCurve) == 0x000228, "Member 'FColorParameterNameAndCurves::BlueCurve' has a wrong offset!"); \ +static_assert(offsetof(FColorParameterNameAndCurves, AlphaCurve) == 0x000338, "Member 'FColorParameterNameAndCurves::AlphaCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformParameterNameAndCurves \ +static_assert(alignof(FTransformParameterNameAndCurves) == 0x000008, "Wrong alignment on FTransformParameterNameAndCurves"); \ +static_assert(sizeof(FTransformParameterNameAndCurves) == 0x000998, "Wrong size on FTransformParameterNameAndCurves"); \ +static_assert(offsetof(FTransformParameterNameAndCurves, ParameterName) == 0x000000, "Member 'FTransformParameterNameAndCurves::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FTransformParameterNameAndCurves, Translation) == 0x000008, "Member 'FTransformParameterNameAndCurves::Translation' has a wrong offset!"); \ +static_assert(offsetof(FTransformParameterNameAndCurves, Rotation) == 0x000338, "Member 'FTransformParameterNameAndCurves::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FTransformParameterNameAndCurves, Scale) == 0x000668, "Member 'FTransformParameterNameAndCurves::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneParameterSectionTemplate \ +static_assert(alignof(FMovieSceneParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneParameterSectionTemplate) == 0x000080, "Wrong size on FMovieSceneParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Scalars) == 0x000020, "Member 'FMovieSceneParameterSectionTemplate::Scalars' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Bools) == 0x000030, "Member 'FMovieSceneParameterSectionTemplate::Bools' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Vector2Ds) == 0x000040, "Member 'FMovieSceneParameterSectionTemplate::Vector2Ds' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Vectors) == 0x000050, "Member 'FMovieSceneParameterSectionTemplate::Vectors' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Colors) == 0x000060, "Member 'FMovieSceneParameterSectionTemplate::Colors' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneParameterSectionTemplate, Transforms) == 0x000070, "Member 'FMovieSceneParameterSectionTemplate::Transforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneParticleParameterSectionTemplate \ +static_assert(alignof(FMovieSceneParticleParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneParticleParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneParticleParameterSectionTemplate) == 0x000080, "Wrong size on FMovieSceneParticleParameterSectionTemplate"); \ + +#define DUMPER7_ASSERTS_FMovieSceneParticleChannel \ +static_assert(alignof(FMovieSceneParticleChannel) == 0x000008, "Wrong alignment on FMovieSceneParticleChannel"); \ +static_assert(sizeof(FMovieSceneParticleChannel) == 0x000108, "Wrong size on FMovieSceneParticleChannel"); \ + +#define DUMPER7_ASSERTS_FMovieSceneParticleSectionTemplate \ +static_assert(alignof(FMovieSceneParticleSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneParticleSectionTemplate"); \ +static_assert(sizeof(FMovieSceneParticleSectionTemplate) == 0x000128, "Wrong size on FMovieSceneParticleSectionTemplate"); \ +static_assert(offsetof(FMovieSceneParticleSectionTemplate, ParticleKeys) == 0x000020, "Member 'FMovieSceneParticleSectionTemplate::ParticleKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBoolPropertySectionTemplate \ +static_assert(alignof(FMovieSceneBoolPropertySectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneBoolPropertySectionTemplate"); \ +static_assert(sizeof(FMovieSceneBoolPropertySectionTemplate) == 0x000138, "Wrong size on FMovieSceneBoolPropertySectionTemplate"); \ +static_assert(offsetof(FMovieSceneBoolPropertySectionTemplate, BoolCurve) == 0x000038, "Member 'FMovieSceneBoolPropertySectionTemplate::BoolCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSlomoSectionTemplate \ +static_assert(alignof(FMovieSceneSlomoSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneSlomoSectionTemplate"); \ +static_assert(sizeof(FMovieSceneSlomoSectionTemplate) == 0x000130, "Wrong size on FMovieSceneSlomoSectionTemplate"); \ +static_assert(offsetof(FMovieSceneSlomoSectionTemplate, SlomoCurve) == 0x000020, "Member 'FMovieSceneSlomoSectionTemplate::SlomoCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVisibilitySectionTemplate \ +static_assert(alignof(FMovieSceneVisibilitySectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneVisibilitySectionTemplate"); \ +static_assert(sizeof(FMovieSceneVisibilitySectionTemplate) == 0x000138, "Wrong size on FMovieSceneVisibilitySectionTemplate"); \ + +#define DUMPER7_ASSERTS_FLevelVisibilityComponentData \ +static_assert(alignof(FLevelVisibilityComponentData) == 0x000008, "Wrong alignment on FLevelVisibilityComponentData"); \ +static_assert(sizeof(FLevelVisibilityComponentData) == 0x000008, "Wrong size on FLevelVisibilityComponentData"); \ +static_assert(offsetof(FLevelVisibilityComponentData, Section) == 0x000000, "Member 'FLevelVisibilityComponentData::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneDataLayerComponentData \ +static_assert(alignof(FMovieSceneDataLayerComponentData) == 0x000008, "Wrong alignment on FMovieSceneDataLayerComponentData"); \ +static_assert(sizeof(FMovieSceneDataLayerComponentData) == 0x000008, "Wrong size on FMovieSceneDataLayerComponentData"); \ +static_assert(offsetof(FMovieSceneDataLayerComponentData, Section) == 0x000000, "Member 'FMovieSceneDataLayerComponentData::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintComponentData \ +static_assert(alignof(FConstraintComponentData) == 0x000008, "Wrong alignment on FConstraintComponentData"); \ +static_assert(sizeof(FConstraintComponentData) == 0x000010, "Wrong size on FConstraintComponentData"); \ +static_assert(offsetof(FConstraintComponentData, ConstraintName) == 0x000000, "Member 'FConstraintComponentData::ConstraintName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSkeletalAnimationComponentData \ +static_assert(alignof(FMovieSceneSkeletalAnimationComponentData) == 0x000008, "Wrong alignment on FMovieSceneSkeletalAnimationComponentData"); \ +static_assert(sizeof(FMovieSceneSkeletalAnimationComponentData) == 0x000008, "Wrong size on FMovieSceneSkeletalAnimationComponentData"); \ +static_assert(offsetof(FMovieSceneSkeletalAnimationComponentData, Section) == 0x000000, "Member 'FMovieSceneSkeletalAnimationComponentData::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneAudioComponentData \ +static_assert(alignof(FMovieSceneAudioComponentData) == 0x000008, "Wrong alignment on FMovieSceneAudioComponentData"); \ +static_assert(sizeof(FMovieSceneAudioComponentData) == 0x000008, "Wrong size on FMovieSceneAudioComponentData"); \ +static_assert(offsetof(FMovieSceneAudioComponentData, Section) == 0x000000, "Member 'FMovieSceneAudioComponentData::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneAudioInputData \ +static_assert(alignof(FMovieSceneAudioInputData) == 0x000004, "Wrong alignment on FMovieSceneAudioInputData"); \ +static_assert(sizeof(FMovieSceneAudioInputData) == 0x000060, "Wrong size on FMovieSceneAudioInputData"); \ +static_assert(offsetof(FMovieSceneAudioInputData, FloatInputs) == 0x000000, "Member 'FMovieSceneAudioInputData::FloatInputs' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneAudioInputData, StringInput) == 0x000048, "Member 'FMovieSceneAudioInputData::StringInput' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneAudioInputData, BoolInput) == 0x000050, "Member 'FMovieSceneAudioInputData::BoolInput' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneAudioInputData, IntInput) == 0x000058, "Member 'FMovieSceneAudioInputData::IntInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene3DLocationKeyStruct \ +static_assert(alignof(FMovieScene3DLocationKeyStruct) == 0x000008, "Wrong alignment on FMovieScene3DLocationKeyStruct"); \ +static_assert(sizeof(FMovieScene3DLocationKeyStruct) == 0x000040, "Wrong size on FMovieScene3DLocationKeyStruct"); \ +static_assert(offsetof(FMovieScene3DLocationKeyStruct, Location) == 0x000008, "Member 'FMovieScene3DLocationKeyStruct::Location' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DLocationKeyStruct, Time) == 0x000020, "Member 'FMovieScene3DLocationKeyStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene3DRotationKeyStruct \ +static_assert(alignof(FMovieScene3DRotationKeyStruct) == 0x000008, "Wrong alignment on FMovieScene3DRotationKeyStruct"); \ +static_assert(sizeof(FMovieScene3DRotationKeyStruct) == 0x000040, "Wrong size on FMovieScene3DRotationKeyStruct"); \ +static_assert(offsetof(FMovieScene3DRotationKeyStruct, Rotation) == 0x000008, "Member 'FMovieScene3DRotationKeyStruct::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DRotationKeyStruct, Time) == 0x000020, "Member 'FMovieScene3DRotationKeyStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene3DScaleKeyStruct \ +static_assert(alignof(FMovieScene3DScaleKeyStruct) == 0x000008, "Wrong alignment on FMovieScene3DScaleKeyStruct"); \ +static_assert(sizeof(FMovieScene3DScaleKeyStruct) == 0x000030, "Wrong size on FMovieScene3DScaleKeyStruct"); \ +static_assert(offsetof(FMovieScene3DScaleKeyStruct, Scale) == 0x000008, "Member 'FMovieScene3DScaleKeyStruct::Scale' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DScaleKeyStruct, Time) == 0x000014, "Member 'FMovieScene3DScaleKeyStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene3DTransformKeyStruct \ +static_assert(alignof(FMovieScene3DTransformKeyStruct) == 0x000008, "Wrong alignment on FMovieScene3DTransformKeyStruct"); \ +static_assert(sizeof(FMovieScene3DTransformKeyStruct) == 0x000060, "Wrong size on FMovieScene3DTransformKeyStruct"); \ +static_assert(offsetof(FMovieScene3DTransformKeyStruct, Location) == 0x000008, "Member 'FMovieScene3DTransformKeyStruct::Location' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DTransformKeyStruct, Rotation) == 0x000020, "Member 'FMovieScene3DTransformKeyStruct::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DTransformKeyStruct, Scale) == 0x000038, "Member 'FMovieScene3DTransformKeyStruct::Scale' has a wrong offset!"); \ +static_assert(offsetof(FMovieScene3DTransformKeyStruct, Time) == 0x000044, "Member 'FMovieScene3DTransformKeyStruct::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTransformMask \ +static_assert(alignof(FMovieSceneTransformMask) == 0x000004, "Wrong alignment on FMovieSceneTransformMask"); \ +static_assert(sizeof(FMovieSceneTransformMask) == 0x000004, "Wrong size on FMovieSceneTransformMask"); \ +static_assert(offsetof(FMovieSceneTransformMask, Mask) == 0x000000, "Member 'FMovieSceneTransformMask::Mask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneBaseCacheParams \ +static_assert(alignof(FMovieSceneBaseCacheParams) == 0x000008, "Wrong alignment on FMovieSceneBaseCacheParams"); \ +static_assert(sizeof(FMovieSceneBaseCacheParams) == 0x000020, "Wrong size on FMovieSceneBaseCacheParams"); \ +static_assert(offsetof(FMovieSceneBaseCacheParams, FirstLoopStartFrameOffset) == 0x000008, "Member 'FMovieSceneBaseCacheParams::FirstLoopStartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBaseCacheParams, StartFrameOffset) == 0x00000C, "Member 'FMovieSceneBaseCacheParams::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBaseCacheParams, EndFrameOffset) == 0x000010, "Member 'FMovieSceneBaseCacheParams::EndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneBaseCacheParams, PlayRate) == 0x000014, "Member 'FMovieSceneBaseCacheParams::PlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneConsoleVariableCollection \ +static_assert(alignof(FMovieSceneConsoleVariableCollection) == 0x000008, "Wrong alignment on FMovieSceneConsoleVariableCollection"); \ +static_assert(sizeof(FMovieSceneConsoleVariableCollection) == 0x000018, "Wrong size on FMovieSceneConsoleVariableCollection"); \ +static_assert(offsetof(FMovieSceneConsoleVariableCollection, Interface) == 0x000000, "Member 'FMovieSceneConsoleVariableCollection::Interface' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneConsoleVariableCollection, bOnlyIncludeChecked) == 0x000010, "Member 'FMovieSceneConsoleVariableCollection::bOnlyIncludeChecked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCVarOverrides \ +static_assert(alignof(FMovieSceneCVarOverrides) == 0x000008, "Wrong alignment on FMovieSceneCVarOverrides"); \ +static_assert(sizeof(FMovieSceneCVarOverrides) == 0x000050, "Wrong size on FMovieSceneCVarOverrides"); \ +static_assert(offsetof(FMovieSceneCVarOverrides, ValuesByCVar) == 0x000000, "Member 'FMovieSceneCVarOverrides::ValuesByCVar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector2fKeyStruct \ +static_assert(alignof(FMovieSceneVector2fKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneVector2fKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector2fKeyStruct) == 0x000030, "Wrong size on FMovieSceneVector2fKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector2fKeyStruct, Vector) == 0x000028, "Member 'FMovieSceneVector2fKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector3fKeyStruct \ +static_assert(alignof(FMovieSceneVector3fKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneVector3fKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector3fKeyStruct) == 0x000038, "Wrong size on FMovieSceneVector3fKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector3fKeyStruct, Vector) == 0x000028, "Member 'FMovieSceneVector3fKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector4fKeyStruct \ +static_assert(alignof(FMovieSceneVector4fKeyStruct) == 0x000010, "Wrong alignment on FMovieSceneVector4fKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector4fKeyStruct) == 0x000040, "Wrong size on FMovieSceneVector4fKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector4fKeyStruct, Vector) == 0x000030, "Member 'FMovieSceneVector4fKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneVector2DKeyStruct \ +static_assert(alignof(FMovieSceneVector2DKeyStruct) == 0x000008, "Wrong alignment on FMovieSceneVector2DKeyStruct"); \ +static_assert(sizeof(FMovieSceneVector2DKeyStruct) == 0x000038, "Wrong size on FMovieSceneVector2DKeyStruct"); \ +static_assert(offsetof(FMovieSceneVector2DKeyStruct, Vector) == 0x000028, "Member 'FMovieSceneVector2DKeyStruct::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneEventTriggerData \ +static_assert(alignof(FMovieSceneEventTriggerData) == 0x000008, "Wrong alignment on FMovieSceneEventTriggerData"); \ +static_assert(sizeof(FMovieSceneEventTriggerData) == 0x000048, "Wrong size on FMovieSceneEventTriggerData"); \ +static_assert(offsetof(FMovieSceneEventTriggerData, Ptrs) == 0x000000, "Member 'FMovieSceneEventTriggerData::Ptrs' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneEventTriggerData, ObjectBindingID) == 0x000028, "Member 'FMovieSceneEventTriggerData::ObjectBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneSkeletalAnimRootMotionTrackParams \ +static_assert(alignof(FMovieSceneSkeletalAnimRootMotionTrackParams) == 0x000010, "Wrong alignment on FMovieSceneSkeletalAnimRootMotionTrackParams"); \ +static_assert(sizeof(FMovieSceneSkeletalAnimRootMotionTrackParams) == 0x000080, "Wrong size on FMovieSceneSkeletalAnimRootMotionTrackParams"); \ + +#define DUMPER7_ASSERTS_UByteChannelEvaluatorSystem \ +static_assert(alignof(UByteChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UByteChannelEvaluatorSystem"); \ +static_assert(sizeof(UByteChannelEvaluatorSystem) == 0x000040, "Wrong size on UByteChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_MovieSceneTransformOrigin_BP_GetTransformOrigin \ +static_assert(alignof(MovieSceneTransformOrigin_BP_GetTransformOrigin) == 0x000010, "Wrong alignment on MovieSceneTransformOrigin_BP_GetTransformOrigin"); \ +static_assert(sizeof(MovieSceneTransformOrigin_BP_GetTransformOrigin) == 0x000060, "Wrong size on MovieSceneTransformOrigin_BP_GetTransformOrigin"); \ +static_assert(offsetof(MovieSceneTransformOrigin_BP_GetTransformOrigin, ReturnValue) == 0x000000, "Member 'MovieSceneTransformOrigin_BP_GetTransformOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneTransformOrigin \ +static_assert(alignof(IMovieSceneTransformOrigin) == 0x000001, "Wrong alignment on IMovieSceneTransformOrigin"); \ +static_assert(sizeof(IMovieSceneTransformOrigin) == 0x000001, "Wrong size on IMovieSceneTransformOrigin"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMaterialTrack \ +static_assert(alignof(UMovieSceneMaterialTrack) == 0x000008, "Wrong alignment on UMovieSceneMaterialTrack"); \ +static_assert(sizeof(UMovieSceneMaterialTrack) == 0x0000B0, "Wrong size on UMovieSceneMaterialTrack"); \ +static_assert(offsetof(UMovieSceneMaterialTrack, Sections) == 0x000098, "Member 'UMovieSceneMaterialTrack::Sections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMaterialTrack, SectionToKey) == 0x0000A8, "Member 'UMovieSceneMaterialTrack::SectionToKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMaterialParameterCollectionTrack \ +static_assert(alignof(UMovieSceneMaterialParameterCollectionTrack) == 0x000008, "Wrong alignment on UMovieSceneMaterialParameterCollectionTrack"); \ +static_assert(sizeof(UMovieSceneMaterialParameterCollectionTrack) == 0x0000C8, "Wrong size on UMovieSceneMaterialParameterCollectionTrack"); \ +static_assert(offsetof(UMovieSceneMaterialParameterCollectionTrack, MPC) == 0x0000C0, "Member 'UMovieSceneMaterialParameterCollectionTrack::MPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneConsoleVariableTrackInterface \ +static_assert(alignof(IMovieSceneConsoleVariableTrackInterface) == 0x000001, "Wrong alignment on IMovieSceneConsoleVariableTrackInterface"); \ +static_assert(sizeof(IMovieSceneConsoleVariableTrackInterface) == 0x000001, "Wrong size on IMovieSceneConsoleVariableTrackInterface"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDecomposerTestObject \ +static_assert(alignof(UMovieSceneDecomposerTestObject) == 0x000008, "Wrong alignment on UMovieSceneDecomposerTestObject"); \ +static_assert(sizeof(UMovieSceneDecomposerTestObject) == 0x000030, "Wrong size on UMovieSceneDecomposerTestObject"); \ +static_assert(offsetof(UMovieSceneDecomposerTestObject, FloatProperty) == 0x000028, "Member 'UMovieSceneDecomposerTestObject::FloatProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeSourceTriggerSection \ +static_assert(alignof(UMovieSceneCameraShakeSourceTriggerSection) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeSourceTriggerSection"); \ +static_assert(sizeof(UMovieSceneCameraShakeSourceTriggerSection) == 0x0001E8, "Wrong size on UMovieSceneCameraShakeSourceTriggerSection"); \ +static_assert(offsetof(UMovieSceneCameraShakeSourceTriggerSection, Channel) == 0x0000F0, "Member 'UMovieSceneCameraShakeSourceTriggerSection::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePiecewiseBoolBlenderSystem \ +static_assert(alignof(UMovieScenePiecewiseBoolBlenderSystem) == 0x000008, "Wrong alignment on UMovieScenePiecewiseBoolBlenderSystem"); \ +static_assert(sizeof(UMovieScenePiecewiseBoolBlenderSystem) == 0x000090, "Wrong size on UMovieScenePiecewiseBoolBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTestSequence \ +static_assert(alignof(UMovieSceneTestSequence) == 0x000008, "Wrong alignment on UMovieSceneTestSequence"); \ +static_assert(sizeof(UMovieSceneTestSequence) == 0x000090, "Wrong size on UMovieSceneTestSequence"); \ +static_assert(offsetof(UMovieSceneTestSequence, MovieScene) == 0x000068, "Member 'UMovieSceneTestSequence::MovieScene' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTestSequence, BoundObjects) == 0x000070, "Member 'UMovieSceneTestSequence::BoundObjects' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTestSequence, BindingGuids) == 0x000080, "Member 'UMovieSceneTestSequence::BindingGuids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFloatPerlinNoiseChannelEvaluatorSystem \ +static_assert(alignof(UFloatPerlinNoiseChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UFloatPerlinNoiseChannelEvaluatorSystem"); \ +static_assert(sizeof(UFloatPerlinNoiseChannelEvaluatorSystem) == 0x000040, "Wrong size on UFloatPerlinNoiseChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoublePerlinNoiseChannelContainer \ +static_assert(alignof(UMovieSceneDoublePerlinNoiseChannelContainer) == 0x000008, "Wrong alignment on UMovieSceneDoublePerlinNoiseChannelContainer"); \ +static_assert(sizeof(UMovieSceneDoublePerlinNoiseChannelContainer) == 0x0000C0, "Wrong size on UMovieSceneDoublePerlinNoiseChannelContainer"); \ +static_assert(offsetof(UMovieSceneDoublePerlinNoiseChannelContainer, PerlinNoiseChannel) == 0x000058, "Member 'UMovieSceneDoublePerlinNoiseChannelContainer::PerlinNoiseChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePropertySystem \ +static_assert(alignof(UMovieScenePropertySystem) == 0x000008, "Wrong alignment on UMovieScenePropertySystem"); \ +static_assert(sizeof(UMovieScenePropertySystem) == 0x000058, "Wrong size on UMovieScenePropertySystem"); \ +static_assert(offsetof(UMovieScenePropertySystem, InstantiatorSystem) == 0x000048, "Member 'UMovieScenePropertySystem::InstantiatorSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBytePropertySystem \ +static_assert(alignof(UMovieSceneBytePropertySystem) == 0x000008, "Wrong alignment on UMovieSceneBytePropertySystem"); \ +static_assert(sizeof(UMovieSceneBytePropertySystem) == 0x000058, "Wrong size on UMovieSceneBytePropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePropertyTrack \ +static_assert(alignof(UMovieScenePropertyTrack) == 0x000008, "Wrong alignment on UMovieScenePropertyTrack"); \ +static_assert(sizeof(UMovieScenePropertyTrack) == 0x0000C8, "Wrong size on UMovieScenePropertyTrack"); \ +static_assert(offsetof(UMovieScenePropertyTrack, SectionToKey) == 0x000098, "Member 'UMovieScenePropertyTrack::SectionToKey' has a wrong offset!"); \ +static_assert(offsetof(UMovieScenePropertyTrack, PropertyBinding) == 0x0000A0, "Member 'UMovieScenePropertyTrack::PropertyBinding' has a wrong offset!"); \ +static_assert(offsetof(UMovieScenePropertyTrack, Sections) == 0x0000B8, "Member 'UMovieScenePropertyTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneColorTrack \ +static_assert(alignof(UMovieSceneColorTrack) == 0x000008, "Wrong alignment on UMovieSceneColorTrack"); \ +static_assert(sizeof(UMovieSceneColorTrack) == 0x0000D0, "Wrong size on UMovieSceneColorTrack"); \ +static_assert(offsetof(UMovieSceneColorTrack, bIsSlateColor) == 0x0000C8, "Member 'UMovieSceneColorTrack::bIsSlateColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatPerlinNoiseChannelContainer \ +static_assert(alignof(UMovieSceneFloatPerlinNoiseChannelContainer) == 0x000008, "Wrong alignment on UMovieSceneFloatPerlinNoiseChannelContainer"); \ +static_assert(sizeof(UMovieSceneFloatPerlinNoiseChannelContainer) == 0x0000C0, "Wrong size on UMovieSceneFloatPerlinNoiseChannelContainer"); \ +static_assert(offsetof(UMovieSceneFloatPerlinNoiseChannelContainer, PerlinNoiseChannel) == 0x000058, "Member 'UMovieSceneFloatPerlinNoiseChannelContainer::PerlinNoiseChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneInterrogatedPropertyInstantiatorSystem \ +static_assert(alignof(UMovieSceneInterrogatedPropertyInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieSceneInterrogatedPropertyInstantiatorSystem"); \ +static_assert(sizeof(UMovieSceneInterrogatedPropertyInstantiatorSystem) == 0x0001F0, "Wrong size on UMovieSceneInterrogatedPropertyInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_MovieSceneCVarSection_SetFromString \ +static_assert(alignof(MovieSceneCVarSection_SetFromString) == 0x000008, "Wrong alignment on MovieSceneCVarSection_SetFromString"); \ +static_assert(sizeof(MovieSceneCVarSection_SetFromString) == 0x000010, "Wrong size on MovieSceneCVarSection_SetFromString"); \ +static_assert(offsetof(MovieSceneCVarSection_SetFromString, InString) == 0x000000, "Member 'MovieSceneCVarSection_SetFromString::InString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCVarSection_GetString \ +static_assert(alignof(MovieSceneCVarSection_GetString) == 0x000008, "Wrong alignment on MovieSceneCVarSection_GetString"); \ +static_assert(sizeof(MovieSceneCVarSection_GetString) == 0x000010, "Wrong size on MovieSceneCVarSection_GetString"); \ +static_assert(offsetof(MovieSceneCVarSection_GetString, ReturnValue) == 0x000000, "Member 'MovieSceneCVarSection_GetString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCVarSection \ +static_assert(alignof(UMovieSceneCVarSection) == 0x000008, "Wrong alignment on UMovieSceneCVarSection"); \ +static_assert(sizeof(UMovieSceneCVarSection) == 0x000158, "Wrong size on UMovieSceneCVarSection"); \ +static_assert(offsetof(UMovieSceneCVarSection, ConsoleVariableCollections) == 0x0000F8, "Member 'UMovieSceneCVarSection::ConsoleVariableCollections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCVarSection, ConsoleVariables) == 0x000108, "Member 'UMovieSceneCVarSection::ConsoleVariables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePiecewiseIntegerBlenderSystem \ +static_assert(alignof(UMovieScenePiecewiseIntegerBlenderSystem) == 0x000008, "Wrong alignment on UMovieScenePiecewiseIntegerBlenderSystem"); \ +static_assert(sizeof(UMovieScenePiecewiseIntegerBlenderSystem) == 0x0000B0, "Wrong size on UMovieScenePiecewiseIntegerBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeEvaluator \ +static_assert(alignof(UMovieSceneCameraShakeEvaluator) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeEvaluator"); \ +static_assert(sizeof(UMovieSceneCameraShakeEvaluator) == 0x000028, "Wrong size on UMovieSceneCameraShakeEvaluator"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAudioSystem \ +static_assert(alignof(UMovieSceneAudioSystem) == 0x000008, "Wrong alignment on UMovieSceneAudioSystem"); \ +static_assert(sizeof(UMovieSceneAudioSystem) == 0x0000F0, "Wrong size on UMovieSceneAudioSystem"); \ + +#define DUMPER7_ASSERTS_MovieScene3DConstraintSection_SetConstraintBindingID \ +static_assert(alignof(MovieScene3DConstraintSection_SetConstraintBindingID) == 0x000004, "Wrong alignment on MovieScene3DConstraintSection_SetConstraintBindingID"); \ +static_assert(sizeof(MovieScene3DConstraintSection_SetConstraintBindingID) == 0x000018, "Wrong size on MovieScene3DConstraintSection_SetConstraintBindingID"); \ +static_assert(offsetof(MovieScene3DConstraintSection_SetConstraintBindingID, InConstraintBindingID) == 0x000000, "Member 'MovieScene3DConstraintSection_SetConstraintBindingID::InConstraintBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScene3DConstraintSection_GetConstraintBindingID \ +static_assert(alignof(MovieScene3DConstraintSection_GetConstraintBindingID) == 0x000004, "Wrong alignment on MovieScene3DConstraintSection_GetConstraintBindingID"); \ +static_assert(sizeof(MovieScene3DConstraintSection_GetConstraintBindingID) == 0x000018, "Wrong size on MovieScene3DConstraintSection_GetConstraintBindingID"); \ +static_assert(offsetof(MovieScene3DConstraintSection_GetConstraintBindingID, ReturnValue) == 0x000000, "Member 'MovieScene3DConstraintSection_GetConstraintBindingID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DConstraintSection \ +static_assert(alignof(UMovieScene3DConstraintSection) == 0x000008, "Wrong alignment on UMovieScene3DConstraintSection"); \ +static_assert(sizeof(UMovieScene3DConstraintSection) == 0x000118, "Wrong size on UMovieScene3DConstraintSection"); \ +static_assert(offsetof(UMovieScene3DConstraintSection, ConstraintId) == 0x0000F0, "Member 'UMovieScene3DConstraintSection::ConstraintId' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DConstraintSection, ConstraintBindingID) == 0x000100, "Member 'UMovieScene3DConstraintSection::ConstraintBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneStringTrack \ +static_assert(alignof(UMovieSceneStringTrack) == 0x000008, "Wrong alignment on UMovieSceneStringTrack"); \ +static_assert(sizeof(UMovieSceneStringTrack) == 0x0000C8, "Wrong size on UMovieSceneStringTrack"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DAttachSection \ +static_assert(alignof(UMovieScene3DAttachSection) == 0x000008, "Wrong alignment on UMovieScene3DAttachSection"); \ +static_assert(sizeof(UMovieScene3DAttachSection) == 0x000138, "Wrong size on UMovieScene3DAttachSection"); \ +static_assert(offsetof(UMovieScene3DAttachSection, AttachSocketName) == 0x000120, "Member 'UMovieScene3DAttachSection::AttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, AttachComponentName) == 0x000128, "Member 'UMovieScene3DAttachSection::AttachComponentName' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, AttachmentLocationRule) == 0x000130, "Member 'UMovieScene3DAttachSection::AttachmentLocationRule' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, AttachmentRotationRule) == 0x000131, "Member 'UMovieScene3DAttachSection::AttachmentRotationRule' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, AttachmentScaleRule) == 0x000132, "Member 'UMovieScene3DAttachSection::AttachmentScaleRule' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, DetachmentLocationRule) == 0x000133, "Member 'UMovieScene3DAttachSection::DetachmentLocationRule' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, DetachmentRotationRule) == 0x000134, "Member 'UMovieScene3DAttachSection::DetachmentRotationRule' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DAttachSection, DetachmentScaleRule) == 0x000135, "Member 'UMovieScene3DAttachSection::DetachmentScaleRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCinematicShotSection_SetShotDisplayName \ +static_assert(alignof(MovieSceneCinematicShotSection_SetShotDisplayName) == 0x000008, "Wrong alignment on MovieSceneCinematicShotSection_SetShotDisplayName"); \ +static_assert(sizeof(MovieSceneCinematicShotSection_SetShotDisplayName) == 0x000010, "Wrong size on MovieSceneCinematicShotSection_SetShotDisplayName"); \ +static_assert(offsetof(MovieSceneCinematicShotSection_SetShotDisplayName, InShotDisplayName) == 0x000000, "Member 'MovieSceneCinematicShotSection_SetShotDisplayName::InShotDisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCinematicShotSection_GetShotDisplayName \ +static_assert(alignof(MovieSceneCinematicShotSection_GetShotDisplayName) == 0x000008, "Wrong alignment on MovieSceneCinematicShotSection_GetShotDisplayName"); \ +static_assert(sizeof(MovieSceneCinematicShotSection_GetShotDisplayName) == 0x000010, "Wrong size on MovieSceneCinematicShotSection_GetShotDisplayName"); \ +static_assert(offsetof(MovieSceneCinematicShotSection_GetShotDisplayName, ReturnValue) == 0x000000, "Member 'MovieSceneCinematicShotSection_GetShotDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCinematicShotSection \ +static_assert(alignof(UMovieSceneCinematicShotSection) == 0x000008, "Wrong alignment on UMovieSceneCinematicShotSection"); \ +static_assert(sizeof(UMovieSceneCinematicShotSection) == 0x000160, "Wrong size on UMovieSceneCinematicShotSection"); \ +static_assert(offsetof(UMovieSceneCinematicShotSection, ShotDisplayName) == 0x000138, "Member 'UMovieSceneCinematicShotSection::ShotDisplayName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCinematicShotSection, DisplayName) == 0x000148, "Member 'UMovieSceneCinematicShotSection::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DPathSection \ +static_assert(alignof(UMovieScene3DPathSection) == 0x000008, "Wrong alignment on UMovieScene3DPathSection"); \ +static_assert(sizeof(UMovieScene3DPathSection) == 0x000230, "Wrong size on UMovieScene3DPathSection"); \ +static_assert(offsetof(UMovieScene3DPathSection, TimingCurve) == 0x000118, "Member 'UMovieScene3DPathSection::TimingCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DPathSection, FrontAxisEnum) == 0x000228, "Member 'UMovieScene3DPathSection::FrontAxisEnum' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DPathSection, UpAxisEnum) == 0x000229, "Member 'UMovieScene3DPathSection::UpAxisEnum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventSectionBase \ +static_assert(alignof(UMovieSceneEventSectionBase) == 0x000008, "Wrong alignment on UMovieSceneEventSectionBase"); \ +static_assert(sizeof(UMovieSceneEventSectionBase) == 0x0000F0, "Wrong size on UMovieSceneEventSectionBase"); \ + +#define DUMPER7_ASSERTS_UMovieScenePropertyInstantiatorSystem \ +static_assert(alignof(UMovieScenePropertyInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieScenePropertyInstantiatorSystem"); \ +static_assert(sizeof(UMovieScenePropertyInstantiatorSystem) == 0x000268, "Wrong size on UMovieScenePropertyInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DTransformSectionConstraints \ +static_assert(alignof(UMovieScene3DTransformSectionConstraints) == 0x000008, "Wrong alignment on UMovieScene3DTransformSectionConstraints"); \ +static_assert(sizeof(UMovieScene3DTransformSectionConstraints) == 0x000038, "Wrong size on UMovieScene3DTransformSectionConstraints"); \ +static_assert(offsetof(UMovieScene3DTransformSectionConstraints, ConstraintsChannels) == 0x000028, "Member 'UMovieScene3DTransformSectionConstraints::ConstraintsChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneColorPropertySystem \ +static_assert(alignof(UMovieSceneColorPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneColorPropertySystem"); \ +static_assert(sizeof(UMovieSceneColorPropertySystem) == 0x000058, "Wrong size on UMovieSceneColorPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DTransformSection \ +static_assert(alignof(UMovieScene3DTransformSection) == 0x000008, "Wrong alignment on UMovieScene3DTransformSection"); \ +static_assert(sizeof(UMovieScene3DTransformSection) == 0x000C38, "Wrong size on UMovieScene3DTransformSection"); \ +static_assert(offsetof(UMovieScene3DTransformSection, TransformMask) == 0x000130, "Member 'UMovieScene3DTransformSection::TransformMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, Translation) == 0x000138, "Member 'UMovieScene3DTransformSection::Translation' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, Rotation) == 0x000480, "Member 'UMovieScene3DTransformSection::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, Scale) == 0x0007C8, "Member 'UMovieScene3DTransformSection::Scale' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, ManualWeight) == 0x000B10, "Member 'UMovieScene3DTransformSection::ManualWeight' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, OverrideRegistry) == 0x000C20, "Member 'UMovieScene3DTransformSection::OverrideRegistry' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, Constraints) == 0x000C28, "Member 'UMovieScene3DTransformSection::Constraints' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene3DTransformSection, bUseQuaternionInterpolation) == 0x000C30, "Member 'UMovieScene3DTransformSection::bUseQuaternionInterpolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatTrack \ +static_assert(alignof(UMovieSceneFloatTrack) == 0x000008, "Wrong alignment on UMovieSceneFloatTrack"); \ +static_assert(sizeof(UMovieSceneFloatTrack) == 0x0000C8, "Wrong size on UMovieSceneFloatTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFadeTrack \ +static_assert(alignof(UMovieSceneFadeTrack) == 0x000008, "Wrong alignment on UMovieSceneFadeTrack"); \ +static_assert(sizeof(UMovieSceneFadeTrack) == 0x0000C8, "Wrong size on UMovieSceneFadeTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneActorReferenceSection \ +static_assert(alignof(UMovieSceneActorReferenceSection) == 0x000008, "Wrong alignment on UMovieSceneActorReferenceSection"); \ +static_assert(sizeof(UMovieSceneActorReferenceSection) == 0x0002A0, "Wrong size on UMovieSceneActorReferenceSection"); \ +static_assert(offsetof(UMovieSceneActorReferenceSection, ActorReferenceData) == 0x0000F0, "Member 'UMovieSceneActorReferenceSection::ActorReferenceData' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneActorReferenceSection, ActorGuidIndexCurve) == 0x000210, "Member 'UMovieSceneActorReferenceSection::ActorGuidIndexCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneActorReferenceSection, ActorGuidStrings) == 0x000290, "Member 'UMovieSceneActorReferenceSection::ActorGuidStrings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetAttenuationSettings \ +static_assert(alignof(MovieSceneAudioSection_SetAttenuationSettings) == 0x000008, "Wrong alignment on MovieSceneAudioSection_SetAttenuationSettings"); \ +static_assert(sizeof(MovieSceneAudioSection_SetAttenuationSettings) == 0x000008, "Wrong size on MovieSceneAudioSection_SetAttenuationSettings"); \ +static_assert(offsetof(MovieSceneAudioSection_SetAttenuationSettings, InAttenuationSettings) == 0x000000, "Member 'MovieSceneAudioSection_SetAttenuationSettings::InAttenuationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetLooping \ +static_assert(alignof(MovieSceneAudioSection_SetLooping) == 0x000001, "Wrong alignment on MovieSceneAudioSection_SetLooping"); \ +static_assert(sizeof(MovieSceneAudioSection_SetLooping) == 0x000001, "Wrong size on MovieSceneAudioSection_SetLooping"); \ +static_assert(offsetof(MovieSceneAudioSection_SetLooping, bInLooping) == 0x000000, "Member 'MovieSceneAudioSection_SetLooping::bInLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetOverrideAttenuation \ +static_assert(alignof(MovieSceneAudioSection_SetOverrideAttenuation) == 0x000001, "Wrong alignment on MovieSceneAudioSection_SetOverrideAttenuation"); \ +static_assert(sizeof(MovieSceneAudioSection_SetOverrideAttenuation) == 0x000001, "Wrong size on MovieSceneAudioSection_SetOverrideAttenuation"); \ +static_assert(offsetof(MovieSceneAudioSection_SetOverrideAttenuation, bInOverrideAttenuation) == 0x000000, "Member 'MovieSceneAudioSection_SetOverrideAttenuation::bInOverrideAttenuation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetSound \ +static_assert(alignof(MovieSceneAudioSection_SetSound) == 0x000008, "Wrong alignment on MovieSceneAudioSection_SetSound"); \ +static_assert(sizeof(MovieSceneAudioSection_SetSound) == 0x000008, "Wrong size on MovieSceneAudioSection_SetSound"); \ +static_assert(offsetof(MovieSceneAudioSection_SetSound, InSound) == 0x000000, "Member 'MovieSceneAudioSection_SetSound::InSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetStartOffset \ +static_assert(alignof(MovieSceneAudioSection_SetStartOffset) == 0x000004, "Wrong alignment on MovieSceneAudioSection_SetStartOffset"); \ +static_assert(sizeof(MovieSceneAudioSection_SetStartOffset) == 0x000004, "Wrong size on MovieSceneAudioSection_SetStartOffset"); \ +static_assert(offsetof(MovieSceneAudioSection_SetStartOffset, InStartOffset) == 0x000000, "Member 'MovieSceneAudioSection_SetStartOffset::InStartOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_SetSuppressSubtitles \ +static_assert(alignof(MovieSceneAudioSection_SetSuppressSubtitles) == 0x000001, "Wrong alignment on MovieSceneAudioSection_SetSuppressSubtitles"); \ +static_assert(sizeof(MovieSceneAudioSection_SetSuppressSubtitles) == 0x000001, "Wrong size on MovieSceneAudioSection_SetSuppressSubtitles"); \ +static_assert(offsetof(MovieSceneAudioSection_SetSuppressSubtitles, bInSuppressSubtitles) == 0x000000, "Member 'MovieSceneAudioSection_SetSuppressSubtitles::bInSuppressSubtitles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetAttenuationSettings \ +static_assert(alignof(MovieSceneAudioSection_GetAttenuationSettings) == 0x000008, "Wrong alignment on MovieSceneAudioSection_GetAttenuationSettings"); \ +static_assert(sizeof(MovieSceneAudioSection_GetAttenuationSettings) == 0x000008, "Wrong size on MovieSceneAudioSection_GetAttenuationSettings"); \ +static_assert(offsetof(MovieSceneAudioSection_GetAttenuationSettings, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetAttenuationSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetLooping \ +static_assert(alignof(MovieSceneAudioSection_GetLooping) == 0x000001, "Wrong alignment on MovieSceneAudioSection_GetLooping"); \ +static_assert(sizeof(MovieSceneAudioSection_GetLooping) == 0x000001, "Wrong size on MovieSceneAudioSection_GetLooping"); \ +static_assert(offsetof(MovieSceneAudioSection_GetLooping, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetOverrideAttenuation \ +static_assert(alignof(MovieSceneAudioSection_GetOverrideAttenuation) == 0x000001, "Wrong alignment on MovieSceneAudioSection_GetOverrideAttenuation"); \ +static_assert(sizeof(MovieSceneAudioSection_GetOverrideAttenuation) == 0x000001, "Wrong size on MovieSceneAudioSection_GetOverrideAttenuation"); \ +static_assert(offsetof(MovieSceneAudioSection_GetOverrideAttenuation, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetOverrideAttenuation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetSound \ +static_assert(alignof(MovieSceneAudioSection_GetSound) == 0x000008, "Wrong alignment on MovieSceneAudioSection_GetSound"); \ +static_assert(sizeof(MovieSceneAudioSection_GetSound) == 0x000008, "Wrong size on MovieSceneAudioSection_GetSound"); \ +static_assert(offsetof(MovieSceneAudioSection_GetSound, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetSound::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetStartOffset \ +static_assert(alignof(MovieSceneAudioSection_GetStartOffset) == 0x000004, "Wrong alignment on MovieSceneAudioSection_GetStartOffset"); \ +static_assert(sizeof(MovieSceneAudioSection_GetStartOffset) == 0x000004, "Wrong size on MovieSceneAudioSection_GetStartOffset"); \ +static_assert(offsetof(MovieSceneAudioSection_GetStartOffset, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetStartOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAudioSection_GetSuppressSubtitles \ +static_assert(alignof(MovieSceneAudioSection_GetSuppressSubtitles) == 0x000001, "Wrong alignment on MovieSceneAudioSection_GetSuppressSubtitles"); \ +static_assert(sizeof(MovieSceneAudioSection_GetSuppressSubtitles) == 0x000001, "Wrong size on MovieSceneAudioSection_GetSuppressSubtitles"); \ +static_assert(offsetof(MovieSceneAudioSection_GetSuppressSubtitles, ReturnValue) == 0x000000, "Member 'MovieSceneAudioSection_GetSuppressSubtitles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAudioSection \ +static_assert(alignof(UMovieSceneAudioSection) == 0x000008, "Wrong alignment on UMovieSceneAudioSection"); \ +static_assert(sizeof(UMovieSceneAudioSection) == 0x000628, "Wrong size on UMovieSceneAudioSection"); \ +static_assert(offsetof(UMovieSceneAudioSection, Sound) == 0x0000F8, "Member 'UMovieSceneAudioSection::Sound' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, StartFrameOffset) == 0x000100, "Member 'UMovieSceneAudioSection::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, StartOffset) == 0x000104, "Member 'UMovieSceneAudioSection::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, AudioStartTime) == 0x000108, "Member 'UMovieSceneAudioSection::AudioStartTime' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, AudioDilationFactor) == 0x00010C, "Member 'UMovieSceneAudioSection::AudioDilationFactor' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, AudioVolume) == 0x000110, "Member 'UMovieSceneAudioSection::AudioVolume' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, SoundVolume) == 0x000118, "Member 'UMovieSceneAudioSection::SoundVolume' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, PitchMultiplier) == 0x000228, "Member 'UMovieSceneAudioSection::PitchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, Inputs_Float) == 0x000338, "Member 'UMovieSceneAudioSection::Inputs_Float' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, Inputs_String) == 0x000388, "Member 'UMovieSceneAudioSection::Inputs_String' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, Inputs_Bool) == 0x0003D8, "Member 'UMovieSceneAudioSection::Inputs_Bool' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, Inputs_Int) == 0x000428, "Member 'UMovieSceneAudioSection::Inputs_Int' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, Inputs_Trigger) == 0x000478, "Member 'UMovieSceneAudioSection::Inputs_Trigger' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, AttachActorData) == 0x0004C8, "Member 'UMovieSceneAudioSection::AttachActorData' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, bLooping) == 0x0005E8, "Member 'UMovieSceneAudioSection::bLooping' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, bSuppressSubtitles) == 0x0005E9, "Member 'UMovieSceneAudioSection::bSuppressSubtitles' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, bOverrideAttenuation) == 0x0005EA, "Member 'UMovieSceneAudioSection::bOverrideAttenuation' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, AttenuationSettings) == 0x0005F0, "Member 'UMovieSceneAudioSection::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, OnQueueSubtitles) == 0x0005F8, "Member 'UMovieSceneAudioSection::OnQueueSubtitles' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, OnAudioFinished) == 0x000608, "Member 'UMovieSceneAudioSection::OnAudioFinished' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAudioSection, OnAudioPlaybackPercent) == 0x000618, "Member 'UMovieSceneAudioSection::OnAudioPlaybackPercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBaseCacheSection \ +static_assert(alignof(UMovieSceneBaseCacheSection) == 0x000008, "Wrong alignment on UMovieSceneBaseCacheSection"); \ +static_assert(sizeof(UMovieSceneBaseCacheSection) == 0x0000F8, "Wrong size on UMovieSceneBaseCacheSection"); \ + +#define DUMPER7_ASSERTS_UMovieSceneByteSection \ +static_assert(alignof(UMovieSceneByteSection) == 0x000008, "Wrong alignment on UMovieSceneByteSection"); \ +static_assert(sizeof(UMovieSceneByteSection) == 0x000200, "Wrong size on UMovieSceneByteSection"); \ +static_assert(offsetof(UMovieSceneByteSection, ByteCurve) == 0x0000F8, "Member 'UMovieSceneByteSection::ByteCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCameraCutSection_SetCameraBindingID \ +static_assert(alignof(MovieSceneCameraCutSection_SetCameraBindingID) == 0x000004, "Wrong alignment on MovieSceneCameraCutSection_SetCameraBindingID"); \ +static_assert(sizeof(MovieSceneCameraCutSection_SetCameraBindingID) == 0x000018, "Wrong size on MovieSceneCameraCutSection_SetCameraBindingID"); \ +static_assert(offsetof(MovieSceneCameraCutSection_SetCameraBindingID, InCameraBindingID) == 0x000000, "Member 'MovieSceneCameraCutSection_SetCameraBindingID::InCameraBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCameraCutSection_GetCameraBindingID \ +static_assert(alignof(MovieSceneCameraCutSection_GetCameraBindingID) == 0x000004, "Wrong alignment on MovieSceneCameraCutSection_GetCameraBindingID"); \ +static_assert(sizeof(MovieSceneCameraCutSection_GetCameraBindingID) == 0x000018, "Wrong size on MovieSceneCameraCutSection_GetCameraBindingID"); \ +static_assert(offsetof(MovieSceneCameraCutSection_GetCameraBindingID, ReturnValue) == 0x000000, "Member 'MovieSceneCameraCutSection_GetCameraBindingID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraCutSection \ +static_assert(alignof(UMovieSceneCameraCutSection) == 0x000010, "Wrong alignment on UMovieSceneCameraCutSection"); \ +static_assert(sizeof(UMovieSceneCameraCutSection) == 0x0001A0, "Wrong size on UMovieSceneCameraCutSection"); \ +static_assert(offsetof(UMovieSceneCameraCutSection, bLockPreviousCamera) == 0x0000F8, "Member 'UMovieSceneCameraCutSection::bLockPreviousCamera' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraCutSection, CameraGuid) == 0x0000FC, "Member 'UMovieSceneCameraCutSection::CameraGuid' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraCutSection, CameraBindingID) == 0x00010C, "Member 'UMovieSceneCameraCutSection::CameraBindingID' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraCutSection, InitialCameraCutTransform) == 0x000130, "Member 'UMovieSceneCameraCutSection::InitialCameraCutTransform' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraCutSection, bHasInitialCameraCutTransform) == 0x000190, "Member 'UMovieSceneCameraCutSection::bHasInitialCameraCutTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeSection \ +static_assert(alignof(UMovieSceneCameraShakeSection) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeSection"); \ +static_assert(sizeof(UMovieSceneCameraShakeSection) == 0x000140, "Wrong size on UMovieSceneCameraShakeSection"); \ +static_assert(offsetof(UMovieSceneCameraShakeSection, ShakeData) == 0x0000F0, "Member 'UMovieSceneCameraShakeSection::ShakeData' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraShakeSection, ShakeClass) == 0x000118, "Member 'UMovieSceneCameraShakeSection::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraShakeSection, PlayScale) == 0x000120, "Member 'UMovieSceneCameraShakeSection::PlayScale' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraShakeSection, PlaySpace) == 0x000124, "Member 'UMovieSceneCameraShakeSection::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraShakeSection, UserDefinedPlaySpace) == 0x000128, "Member 'UMovieSceneCameraShakeSection::UserDefinedPlaySpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeSourceShakeSection \ +static_assert(alignof(UMovieSceneCameraShakeSourceShakeSection) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeSourceShakeSection"); \ +static_assert(sizeof(UMovieSceneCameraShakeSourceShakeSection) == 0x000118, "Wrong size on UMovieSceneCameraShakeSourceShakeSection"); \ +static_assert(offsetof(UMovieSceneCameraShakeSourceShakeSection, ShakeData) == 0x0000F0, "Member 'UMovieSceneCameraShakeSourceShakeSection::ShakeData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneColorSection \ +static_assert(alignof(UMovieSceneColorSection) == 0x000008, "Wrong alignment on UMovieSceneColorSection"); \ +static_assert(sizeof(UMovieSceneColorSection) == 0x000538, "Wrong size on UMovieSceneColorSection"); \ +static_assert(offsetof(UMovieSceneColorSection, RedCurve) == 0x0000F8, "Member 'UMovieSceneColorSection::RedCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneColorSection, GreenCurve) == 0x000208, "Member 'UMovieSceneColorSection::GreenCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneColorSection, BlueCurve) == 0x000318, "Member 'UMovieSceneColorSection::BlueCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneColorSection, AlphaCurve) == 0x000428, "Member 'UMovieSceneColorSection::AlphaCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneConstrainedSection \ +static_assert(alignof(IMovieSceneConstrainedSection) == 0x000001, "Wrong alignment on IMovieSceneConstrainedSection"); \ +static_assert(sizeof(IMovieSceneConstrainedSection) == 0x000001, "Wrong size on IMovieSceneConstrainedSection"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_SetDataLayerAssets \ +static_assert(alignof(MovieSceneDataLayerSection_SetDataLayerAssets) == 0x000008, "Wrong alignment on MovieSceneDataLayerSection_SetDataLayerAssets"); \ +static_assert(sizeof(MovieSceneDataLayerSection_SetDataLayerAssets) == 0x000010, "Wrong size on MovieSceneDataLayerSection_SetDataLayerAssets"); \ +static_assert(offsetof(MovieSceneDataLayerSection_SetDataLayerAssets, InDataLayerAssets) == 0x000000, "Member 'MovieSceneDataLayerSection_SetDataLayerAssets::InDataLayerAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_SetDataLayers \ +static_assert(alignof(MovieSceneDataLayerSection_SetDataLayers) == 0x000008, "Wrong alignment on MovieSceneDataLayerSection_SetDataLayers"); \ +static_assert(sizeof(MovieSceneDataLayerSection_SetDataLayers) == 0x000010, "Wrong size on MovieSceneDataLayerSection_SetDataLayers"); \ +static_assert(offsetof(MovieSceneDataLayerSection_SetDataLayers, InDataLayers) == 0x000000, "Member 'MovieSceneDataLayerSection_SetDataLayers::InDataLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_SetDesiredState \ +static_assert(alignof(MovieSceneDataLayerSection_SetDesiredState) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_SetDesiredState"); \ +static_assert(sizeof(MovieSceneDataLayerSection_SetDesiredState) == 0x000001, "Wrong size on MovieSceneDataLayerSection_SetDesiredState"); \ +static_assert(offsetof(MovieSceneDataLayerSection_SetDesiredState, InDesiredState) == 0x000000, "Member 'MovieSceneDataLayerSection_SetDesiredState::InDesiredState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_SetFlushOnUnload \ +static_assert(alignof(MovieSceneDataLayerSection_SetFlushOnUnload) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_SetFlushOnUnload"); \ +static_assert(sizeof(MovieSceneDataLayerSection_SetFlushOnUnload) == 0x000001, "Wrong size on MovieSceneDataLayerSection_SetFlushOnUnload"); \ +static_assert(offsetof(MovieSceneDataLayerSection_SetFlushOnUnload, bFlushOnUnload_0) == 0x000000, "Member 'MovieSceneDataLayerSection_SetFlushOnUnload::bFlushOnUnload_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_SetPrerollState \ +static_assert(alignof(MovieSceneDataLayerSection_SetPrerollState) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_SetPrerollState"); \ +static_assert(sizeof(MovieSceneDataLayerSection_SetPrerollState) == 0x000001, "Wrong size on MovieSceneDataLayerSection_SetPrerollState"); \ +static_assert(offsetof(MovieSceneDataLayerSection_SetPrerollState, InPrerollState) == 0x000000, "Member 'MovieSceneDataLayerSection_SetPrerollState::InPrerollState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_GetDataLayerAssets \ +static_assert(alignof(MovieSceneDataLayerSection_GetDataLayerAssets) == 0x000008, "Wrong alignment on MovieSceneDataLayerSection_GetDataLayerAssets"); \ +static_assert(sizeof(MovieSceneDataLayerSection_GetDataLayerAssets) == 0x000010, "Wrong size on MovieSceneDataLayerSection_GetDataLayerAssets"); \ +static_assert(offsetof(MovieSceneDataLayerSection_GetDataLayerAssets, ReturnValue) == 0x000000, "Member 'MovieSceneDataLayerSection_GetDataLayerAssets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_GetDataLayers \ +static_assert(alignof(MovieSceneDataLayerSection_GetDataLayers) == 0x000008, "Wrong alignment on MovieSceneDataLayerSection_GetDataLayers"); \ +static_assert(sizeof(MovieSceneDataLayerSection_GetDataLayers) == 0x000010, "Wrong size on MovieSceneDataLayerSection_GetDataLayers"); \ +static_assert(offsetof(MovieSceneDataLayerSection_GetDataLayers, ReturnValue) == 0x000000, "Member 'MovieSceneDataLayerSection_GetDataLayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_GetDesiredState \ +static_assert(alignof(MovieSceneDataLayerSection_GetDesiredState) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_GetDesiredState"); \ +static_assert(sizeof(MovieSceneDataLayerSection_GetDesiredState) == 0x000001, "Wrong size on MovieSceneDataLayerSection_GetDesiredState"); \ +static_assert(offsetof(MovieSceneDataLayerSection_GetDesiredState, ReturnValue) == 0x000000, "Member 'MovieSceneDataLayerSection_GetDesiredState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_GetFlushOnUnload \ +static_assert(alignof(MovieSceneDataLayerSection_GetFlushOnUnload) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_GetFlushOnUnload"); \ +static_assert(sizeof(MovieSceneDataLayerSection_GetFlushOnUnload) == 0x000001, "Wrong size on MovieSceneDataLayerSection_GetFlushOnUnload"); \ +static_assert(offsetof(MovieSceneDataLayerSection_GetFlushOnUnload, ReturnValue) == 0x000000, "Member 'MovieSceneDataLayerSection_GetFlushOnUnload::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDataLayerSection_GetPrerollState \ +static_assert(alignof(MovieSceneDataLayerSection_GetPrerollState) == 0x000001, "Wrong alignment on MovieSceneDataLayerSection_GetPrerollState"); \ +static_assert(sizeof(MovieSceneDataLayerSection_GetPrerollState) == 0x000001, "Wrong size on MovieSceneDataLayerSection_GetPrerollState"); \ +static_assert(offsetof(MovieSceneDataLayerSection_GetPrerollState, ReturnValue) == 0x000000, "Member 'MovieSceneDataLayerSection_GetPrerollState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDataLayerSection \ +static_assert(alignof(UMovieSceneDataLayerSection) == 0x000008, "Wrong alignment on UMovieSceneDataLayerSection"); \ +static_assert(sizeof(UMovieSceneDataLayerSection) == 0x000120, "Wrong size on UMovieSceneDataLayerSection"); \ +static_assert(offsetof(UMovieSceneDataLayerSection, DataLayers) == 0x0000F8, "Member 'UMovieSceneDataLayerSection::DataLayers' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneDataLayerSection, DataLayerAssets) == 0x000108, "Member 'UMovieSceneDataLayerSection::DataLayerAssets' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneDataLayerSection, DesiredState) == 0x000118, "Member 'UMovieSceneDataLayerSection::DesiredState' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneDataLayerSection, PrerollState) == 0x000119, "Member 'UMovieSceneDataLayerSection::PrerollState' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneDataLayerSection, bFlushOnUnload) == 0x00011A, "Member 'UMovieSceneDataLayerSection::bFlushOnUnload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleSection \ +static_assert(alignof(UMovieSceneDoubleSection) == 0x000008, "Wrong alignment on UMovieSceneDoubleSection"); \ +static_assert(sizeof(UMovieSceneDoubleSection) == 0x000210, "Wrong size on UMovieSceneDoubleSection"); \ +static_assert(offsetof(UMovieSceneDoubleSection, DoubleCurve) == 0x0000F8, "Member 'UMovieSceneDoubleSection::DoubleCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEnumSection \ +static_assert(alignof(UMovieSceneEnumSection) == 0x000008, "Wrong alignment on UMovieSceneEnumSection"); \ +static_assert(sizeof(UMovieSceneEnumSection) == 0x000200, "Wrong size on UMovieSceneEnumSection"); \ +static_assert(offsetof(UMovieSceneEnumSection, EnumCurve) == 0x0000F8, "Member 'UMovieSceneEnumSection::EnumCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventRepeaterSection \ +static_assert(alignof(UMovieSceneEventRepeaterSection) == 0x000008, "Wrong alignment on UMovieSceneEventRepeaterSection"); \ +static_assert(sizeof(UMovieSceneEventRepeaterSection) == 0x000120, "Wrong size on UMovieSceneEventRepeaterSection"); \ +static_assert(offsetof(UMovieSceneEventRepeaterSection, Event) == 0x0000F8, "Member 'UMovieSceneEventRepeaterSection::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventSection \ +static_assert(alignof(UMovieSceneEventSection) == 0x000008, "Wrong alignment on UMovieSceneEventSection"); \ +static_assert(sizeof(UMovieSceneEventSection) == 0x000260, "Wrong size on UMovieSceneEventSection"); \ +static_assert(offsetof(UMovieSceneEventSection, Events) == 0x0000F0, "Member 'UMovieSceneEventSection::Events' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneEventSection, EventData) == 0x000168, "Member 'UMovieSceneEventSection::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventTriggerSection \ +static_assert(alignof(UMovieSceneEventTriggerSection) == 0x000008, "Wrong alignment on UMovieSceneEventTriggerSection"); \ +static_assert(sizeof(UMovieSceneEventTriggerSection) == 0x0001F0, "Wrong size on UMovieSceneEventTriggerSection"); \ +static_assert(offsetof(UMovieSceneEventTriggerSection, EventChannel) == 0x0000F8, "Member 'UMovieSceneEventTriggerSection::EventChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFadeSection \ +static_assert(alignof(UMovieSceneFadeSection) == 0x000008, "Wrong alignment on UMovieSceneFadeSection"); \ +static_assert(sizeof(UMovieSceneFadeSection) == 0x000220, "Wrong size on UMovieSceneFadeSection"); \ +static_assert(offsetof(UMovieSceneFadeSection, FloatCurve) == 0x0000F8, "Member 'UMovieSceneFadeSection::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFadeSection, FadeColor) == 0x000208, "Member 'UMovieSceneFadeSection::FadeColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatSection \ +static_assert(alignof(UMovieSceneFloatSection) == 0x000008, "Wrong alignment on UMovieSceneFloatSection"); \ +static_assert(sizeof(UMovieSceneFloatSection) == 0x000218, "Wrong size on UMovieSceneFloatSection"); \ +static_assert(offsetof(UMovieSceneFloatSection, FloatCurve) == 0x000100, "Member 'UMovieSceneFloatSection::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFloatSection, OverrideRegistry) == 0x000210, "Member 'UMovieSceneFloatSection::OverrideRegistry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneIntegerSection \ +static_assert(alignof(UMovieSceneIntegerSection) == 0x000008, "Wrong alignment on UMovieSceneIntegerSection"); \ +static_assert(sizeof(UMovieSceneIntegerSection) == 0x0001F8, "Wrong size on UMovieSceneIntegerSection"); \ +static_assert(offsetof(UMovieSceneIntegerSection, IntegerCurve) == 0x0000F8, "Member 'UMovieSceneIntegerSection::IntegerCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneLevelVisibilitySection_SetLevelNames \ +static_assert(alignof(MovieSceneLevelVisibilitySection_SetLevelNames) == 0x000008, "Wrong alignment on MovieSceneLevelVisibilitySection_SetLevelNames"); \ +static_assert(sizeof(MovieSceneLevelVisibilitySection_SetLevelNames) == 0x000010, "Wrong size on MovieSceneLevelVisibilitySection_SetLevelNames"); \ +static_assert(offsetof(MovieSceneLevelVisibilitySection_SetLevelNames, InLevelNames) == 0x000000, "Member 'MovieSceneLevelVisibilitySection_SetLevelNames::InLevelNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneLevelVisibilitySection_SetVisibility \ +static_assert(alignof(MovieSceneLevelVisibilitySection_SetVisibility) == 0x000001, "Wrong alignment on MovieSceneLevelVisibilitySection_SetVisibility"); \ +static_assert(sizeof(MovieSceneLevelVisibilitySection_SetVisibility) == 0x000001, "Wrong size on MovieSceneLevelVisibilitySection_SetVisibility"); \ +static_assert(offsetof(MovieSceneLevelVisibilitySection_SetVisibility, InVisibility) == 0x000000, "Member 'MovieSceneLevelVisibilitySection_SetVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneLevelVisibilitySection_GetLevelNames \ +static_assert(alignof(MovieSceneLevelVisibilitySection_GetLevelNames) == 0x000008, "Wrong alignment on MovieSceneLevelVisibilitySection_GetLevelNames"); \ +static_assert(sizeof(MovieSceneLevelVisibilitySection_GetLevelNames) == 0x000010, "Wrong size on MovieSceneLevelVisibilitySection_GetLevelNames"); \ +static_assert(offsetof(MovieSceneLevelVisibilitySection_GetLevelNames, ReturnValue) == 0x000000, "Member 'MovieSceneLevelVisibilitySection_GetLevelNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneLevelVisibilitySection_GetVisibility \ +static_assert(alignof(MovieSceneLevelVisibilitySection_GetVisibility) == 0x000001, "Wrong alignment on MovieSceneLevelVisibilitySection_GetVisibility"); \ +static_assert(sizeof(MovieSceneLevelVisibilitySection_GetVisibility) == 0x000001, "Wrong size on MovieSceneLevelVisibilitySection_GetVisibility"); \ +static_assert(offsetof(MovieSceneLevelVisibilitySection_GetVisibility, ReturnValue) == 0x000000, "Member 'MovieSceneLevelVisibilitySection_GetVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneLevelVisibilitySection \ +static_assert(alignof(UMovieSceneLevelVisibilitySection) == 0x000008, "Wrong alignment on UMovieSceneLevelVisibilitySection"); \ +static_assert(sizeof(UMovieSceneLevelVisibilitySection) == 0x000110, "Wrong size on UMovieSceneLevelVisibilitySection"); \ +static_assert(offsetof(UMovieSceneLevelVisibilitySection, Visibility) == 0x0000F8, "Member 'UMovieSceneLevelVisibilitySection::Visibility' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneLevelVisibilitySection, LevelNames) == 0x000100, "Member 'UMovieSceneLevelVisibilitySection::LevelNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneObjectPropertySection \ +static_assert(alignof(UMovieSceneObjectPropertySection) == 0x000008, "Wrong alignment on UMovieSceneObjectPropertySection"); \ +static_assert(sizeof(UMovieSceneObjectPropertySection) == 0x000220, "Wrong size on UMovieSceneObjectPropertySection"); \ +static_assert(offsetof(UMovieSceneObjectPropertySection, ObjectChannel) == 0x0000F0, "Member 'UMovieSceneObjectPropertySection::ObjectChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneParameterSectionExtender \ +static_assert(alignof(IMovieSceneParameterSectionExtender) == 0x000001, "Wrong alignment on IMovieSceneParameterSectionExtender"); \ +static_assert(sizeof(IMovieSceneParameterSectionExtender) == 0x000001, "Wrong size on IMovieSceneParameterSectionExtender"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddBoolParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddBoolParameterKey) == 0x000004, "Wrong alignment on MovieSceneParameterSection_AddBoolParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddBoolParameterKey) == 0x000010, "Wrong size on MovieSceneParameterSection_AddBoolParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddBoolParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddBoolParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddBoolParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddBoolParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddBoolParameterKey, InValue) == 0x00000C, "Member 'MovieSceneParameterSection_AddBoolParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddColorParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddColorParameterKey) == 0x000004, "Wrong alignment on MovieSceneParameterSection_AddColorParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddColorParameterKey) == 0x00001C, "Wrong size on MovieSceneParameterSection_AddColorParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddColorParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddColorParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddColorParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddColorParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddColorParameterKey, InValue) == 0x00000C, "Member 'MovieSceneParameterSection_AddColorParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddScalarParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddScalarParameterKey) == 0x000004, "Wrong alignment on MovieSceneParameterSection_AddScalarParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddScalarParameterKey) == 0x000010, "Wrong size on MovieSceneParameterSection_AddScalarParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddScalarParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddScalarParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddScalarParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddScalarParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddScalarParameterKey, InValue) == 0x00000C, "Member 'MovieSceneParameterSection_AddScalarParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddTransformParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddTransformParameterKey) == 0x000010, "Wrong alignment on MovieSceneParameterSection_AddTransformParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddTransformParameterKey) == 0x000070, "Wrong size on MovieSceneParameterSection_AddTransformParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddTransformParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddTransformParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddTransformParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddTransformParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddTransformParameterKey, InValue) == 0x000010, "Member 'MovieSceneParameterSection_AddTransformParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddVector2DParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddVector2DParameterKey) == 0x000008, "Wrong alignment on MovieSceneParameterSection_AddVector2DParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddVector2DParameterKey) == 0x000020, "Wrong size on MovieSceneParameterSection_AddVector2DParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVector2DParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddVector2DParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVector2DParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddVector2DParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVector2DParameterKey, InValue) == 0x000010, "Member 'MovieSceneParameterSection_AddVector2DParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_AddVectorParameterKey \ +static_assert(alignof(MovieSceneParameterSection_AddVectorParameterKey) == 0x000008, "Wrong alignment on MovieSceneParameterSection_AddVectorParameterKey"); \ +static_assert(sizeof(MovieSceneParameterSection_AddVectorParameterKey) == 0x000028, "Wrong size on MovieSceneParameterSection_AddVectorParameterKey"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVectorParameterKey, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_AddVectorParameterKey::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVectorParameterKey, InTime) == 0x000008, "Member 'MovieSceneParameterSection_AddVectorParameterKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_AddVectorParameterKey, InValue) == 0x000010, "Member 'MovieSceneParameterSection_AddVectorParameterKey::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveBoolParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveBoolParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveBoolParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveBoolParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveBoolParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveBoolParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveBoolParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveBoolParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveBoolParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveColorParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveColorParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveColorParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveColorParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveColorParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveColorParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveColorParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveColorParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveColorParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveScalarParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveScalarParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveScalarParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveScalarParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveScalarParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveScalarParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveScalarParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveScalarParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveScalarParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveTransformParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveTransformParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveTransformParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveTransformParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveTransformParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveTransformParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveTransformParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveTransformParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveTransformParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveVector2DParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveVector2DParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveVector2DParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveVector2DParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveVector2DParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveVector2DParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveVector2DParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveVector2DParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveVector2DParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_RemoveVectorParameter \ +static_assert(alignof(MovieSceneParameterSection_RemoveVectorParameter) == 0x000004, "Wrong alignment on MovieSceneParameterSection_RemoveVectorParameter"); \ +static_assert(sizeof(MovieSceneParameterSection_RemoveVectorParameter) == 0x00000C, "Wrong size on MovieSceneParameterSection_RemoveVectorParameter"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveVectorParameter, InParameterName) == 0x000000, "Member 'MovieSceneParameterSection_RemoveVectorParameter::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneParameterSection_RemoveVectorParameter, ReturnValue) == 0x000008, "Member 'MovieSceneParameterSection_RemoveVectorParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneParameterSection_GetParameterNames \ +static_assert(alignof(MovieSceneParameterSection_GetParameterNames) == 0x000008, "Wrong alignment on MovieSceneParameterSection_GetParameterNames"); \ +static_assert(sizeof(MovieSceneParameterSection_GetParameterNames) == 0x000050, "Wrong size on MovieSceneParameterSection_GetParameterNames"); \ +static_assert(offsetof(MovieSceneParameterSection_GetParameterNames, ParameterNames) == 0x000000, "Member 'MovieSceneParameterSection_GetParameterNames::ParameterNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneParameterSection \ +static_assert(alignof(UMovieSceneParameterSection) == 0x000008, "Wrong alignment on UMovieSceneParameterSection"); \ +static_assert(sizeof(UMovieSceneParameterSection) == 0x000158, "Wrong size on UMovieSceneParameterSection"); \ +static_assert(offsetof(UMovieSceneParameterSection, BoolParameterNamesAndCurves) == 0x0000F8, "Member 'UMovieSceneParameterSection::BoolParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneParameterSection, ScalarParameterNamesAndCurves) == 0x000108, "Member 'UMovieSceneParameterSection::ScalarParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneParameterSection, Vector2DParameterNamesAndCurves) == 0x000118, "Member 'UMovieSceneParameterSection::Vector2DParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneParameterSection, VectorParameterNamesAndCurves) == 0x000128, "Member 'UMovieSceneParameterSection::VectorParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneParameterSection, ColorParameterNamesAndCurves) == 0x000138, "Member 'UMovieSceneParameterSection::ColorParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneParameterSection, TransformParameterNamesAndCurves) == 0x000148, "Member 'UMovieSceneParameterSection::TransformParameterNamesAndCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneParticleSection \ +static_assert(alignof(UMovieSceneParticleSection) == 0x000008, "Wrong alignment on UMovieSceneParticleSection"); \ +static_assert(sizeof(UMovieSceneParticleSection) == 0x0001F8, "Wrong size on UMovieSceneParticleSection"); \ +static_assert(offsetof(UMovieSceneParticleSection, ParticleKeys) == 0x0000F0, "Member 'UMovieSceneParticleSection::ParticleKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePrimitiveMaterialSection \ +static_assert(alignof(UMovieScenePrimitiveMaterialSection) == 0x000008, "Wrong alignment on UMovieScenePrimitiveMaterialSection"); \ +static_assert(sizeof(UMovieScenePrimitiveMaterialSection) == 0x000228, "Wrong size on UMovieScenePrimitiveMaterialSection"); \ +static_assert(offsetof(UMovieScenePrimitiveMaterialSection, MaterialChannel) == 0x0000F8, "Member 'UMovieScenePrimitiveMaterialSection::MaterialChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSkeletalAnimationSection \ +static_assert(alignof(UMovieSceneSkeletalAnimationSection) == 0x000010, "Wrong alignment on UMovieSceneSkeletalAnimationSection"); \ +static_assert(sizeof(UMovieSceneSkeletalAnimationSection) == 0x000360, "Wrong size on UMovieSceneSkeletalAnimationSection"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, Params_0) == 0x0000F8, "Member 'UMovieSceneSkeletalAnimationSection::Params_0' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, AnimSequence) == 0x000248, "Member 'UMovieSceneSkeletalAnimationSection::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, Animation) == 0x000250, "Member 'UMovieSceneSkeletalAnimationSection::Animation' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, StartOffset) == 0x000258, "Member 'UMovieSceneSkeletalAnimationSection::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, EndOffset) == 0x00025C, "Member 'UMovieSceneSkeletalAnimationSection::EndOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, PlayRate) == 0x000260, "Member 'UMovieSceneSkeletalAnimationSection::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, SlotName) == 0x000268, "Member 'UMovieSceneSkeletalAnimationSection::SlotName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, StartLocationOffset) == 0x000270, "Member 'UMovieSceneSkeletalAnimationSection::StartLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, StartRotationOffset) == 0x000288, "Member 'UMovieSceneSkeletalAnimationSection::StartRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchWithPrevious) == 0x0002A0, "Member 'UMovieSceneSkeletalAnimationSection::bMatchWithPrevious' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, MatchedBoneName) == 0x0002A4, "Member 'UMovieSceneSkeletalAnimationSection::MatchedBoneName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, MatchedLocationOffset) == 0x0002B0, "Member 'UMovieSceneSkeletalAnimationSection::MatchedLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, MatchedRotationOffset) == 0x0002C8, "Member 'UMovieSceneSkeletalAnimationSection::MatchedRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchTranslation) == 0x0002E0, "Member 'UMovieSceneSkeletalAnimationSection::bMatchTranslation' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchIncludeZHeight) == 0x0002E1, "Member 'UMovieSceneSkeletalAnimationSection::bMatchIncludeZHeight' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchRotationYaw) == 0x0002E2, "Member 'UMovieSceneSkeletalAnimationSection::bMatchRotationYaw' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchRotationPitch) == 0x0002E3, "Member 'UMovieSceneSkeletalAnimationSection::bMatchRotationPitch' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationSection, bMatchRotationRoll) == 0x0002E4, "Member 'UMovieSceneSkeletalAnimationSection::bMatchRotationRoll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSlomoSection \ +static_assert(alignof(UMovieSceneSlomoSection) == 0x000008, "Wrong alignment on UMovieSceneSlomoSection"); \ +static_assert(sizeof(UMovieSceneSlomoSection) == 0x000200, "Wrong size on UMovieSceneSlomoSection"); \ +static_assert(offsetof(UMovieSceneSlomoSection, FloatCurve) == 0x0000F0, "Member 'UMovieSceneSlomoSection::FloatCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneStringSection \ +static_assert(alignof(UMovieSceneStringSection) == 0x000008, "Wrong alignment on UMovieSceneStringSection"); \ +static_assert(sizeof(UMovieSceneStringSection) == 0x000208, "Wrong size on UMovieSceneStringSection"); \ +static_assert(offsetof(UMovieSceneStringSection, StringCurve) == 0x0000F8, "Member 'UMovieSceneStringSection::StringCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatVectorSection \ +static_assert(alignof(UMovieSceneFloatVectorSection) == 0x000008, "Wrong alignment on UMovieSceneFloatVectorSection"); \ +static_assert(sizeof(UMovieSceneFloatVectorSection) == 0x000540, "Wrong size on UMovieSceneFloatVectorSection"); \ +static_assert(offsetof(UMovieSceneFloatVectorSection, Curves) == 0x0000F8, "Member 'UMovieSceneFloatVectorSection::Curves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneFloatVectorSection, ChannelsUsed) == 0x000538, "Member 'UMovieSceneFloatVectorSection::ChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleVectorSection \ +static_assert(alignof(UMovieSceneDoubleVectorSection) == 0x000008, "Wrong alignment on UMovieSceneDoubleVectorSection"); \ +static_assert(sizeof(UMovieSceneDoubleVectorSection) == 0x000560, "Wrong size on UMovieSceneDoubleVectorSection"); \ +static_assert(offsetof(UMovieSceneDoubleVectorSection, Curves) == 0x0000F8, "Member 'UMovieSceneDoubleVectorSection::Curves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneDoubleVectorSection, ChannelsUsed) == 0x000558, "Member 'UMovieSceneDoubleVectorSection::ChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoolChannelEvaluatorSystem \ +static_assert(alignof(UBoolChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UBoolChannelEvaluatorSystem"); \ +static_assert(sizeof(UBoolChannelEvaluatorSystem) == 0x000040, "Wrong size on UBoolChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UDoubleChannelEvaluatorSystem \ +static_assert(alignof(UDoubleChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UDoubleChannelEvaluatorSystem"); \ +static_assert(sizeof(UDoubleChannelEvaluatorSystem) == 0x000040, "Wrong size on UDoubleChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UDoublePerlinNoiseChannelEvaluatorSystem \ +static_assert(alignof(UDoublePerlinNoiseChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UDoublePerlinNoiseChannelEvaluatorSystem"); \ +static_assert(sizeof(UDoublePerlinNoiseChannelEvaluatorSystem) == 0x000040, "Wrong size on UDoublePerlinNoiseChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UFloatChannelEvaluatorSystem \ +static_assert(alignof(UFloatChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UFloatChannelEvaluatorSystem"); \ +static_assert(sizeof(UFloatChannelEvaluatorSystem) == 0x000040, "Wrong size on UFloatChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UIntegerChannelEvaluatorSystem \ +static_assert(alignof(UIntegerChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UIntegerChannelEvaluatorSystem"); \ +static_assert(sizeof(UIntegerChannelEvaluatorSystem) == 0x000040, "Wrong size on UIntegerChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DTransformPropertySystem \ +static_assert(alignof(UMovieScene3DTransformPropertySystem) == 0x000008, "Wrong alignment on UMovieScene3DTransformPropertySystem"); \ +static_assert(sizeof(UMovieScene3DTransformPropertySystem) == 0x000058, "Wrong size on UMovieScene3DTransformPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBaseValueEvaluatorSystem \ +static_assert(alignof(UMovieSceneBaseValueEvaluatorSystem) == 0x000008, "Wrong alignment on UMovieSceneBaseValueEvaluatorSystem"); \ +static_assert(sizeof(UMovieSceneBaseValueEvaluatorSystem) == 0x000040, "Wrong size on UMovieSceneBaseValueEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBoolPropertySystem \ +static_assert(alignof(UMovieSceneBoolPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneBoolPropertySystem"); \ +static_assert(sizeof(UMovieSceneBoolPropertySystem) == 0x000058, "Wrong size on UMovieSceneBoolPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentAttachmentInvalidatorSystem \ +static_assert(alignof(UMovieSceneComponentAttachmentInvalidatorSystem) == 0x000008, "Wrong alignment on UMovieSceneComponentAttachmentInvalidatorSystem"); \ +static_assert(sizeof(UMovieSceneComponentAttachmentInvalidatorSystem) == 0x000040, "Wrong size on UMovieSceneComponentAttachmentInvalidatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentAttachmentSystem \ +static_assert(alignof(UMovieSceneComponentAttachmentSystem) == 0x000008, "Wrong alignment on UMovieSceneComponentAttachmentSystem"); \ +static_assert(sizeof(UMovieSceneComponentAttachmentSystem) == 0x0001D0, "Wrong size on UMovieSceneComponentAttachmentSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentMaterialSystem \ +static_assert(alignof(UMovieSceneComponentMaterialSystem) == 0x000008, "Wrong alignment on UMovieSceneComponentMaterialSystem"); \ +static_assert(sizeof(UMovieSceneComponentMaterialSystem) == 0x0001A0, "Wrong size on UMovieSceneComponentMaterialSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentMobilitySystem \ +static_assert(alignof(UMovieSceneComponentMobilitySystem) == 0x000008, "Wrong alignment on UMovieSceneComponentMobilitySystem"); \ +static_assert(sizeof(UMovieSceneComponentMobilitySystem) == 0x000230, "Wrong size on UMovieSceneComponentMobilitySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentTransformSystem \ +static_assert(alignof(UMovieSceneComponentTransformSystem) == 0x000008, "Wrong alignment on UMovieSceneComponentTransformSystem"); \ +static_assert(sizeof(UMovieSceneComponentTransformSystem) == 0x000058, "Wrong size on UMovieSceneComponentTransformSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneConstraintSystem \ +static_assert(alignof(UMovieSceneConstraintSystem) == 0x000008, "Wrong alignment on UMovieSceneConstraintSystem"); \ +static_assert(sizeof(UMovieSceneConstraintSystem) == 0x000050, "Wrong size on UMovieSceneConstraintSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDataLayerSystem \ +static_assert(alignof(UMovieSceneDataLayerSystem) == 0x000008, "Wrong alignment on UMovieSceneDataLayerSystem"); \ +static_assert(sizeof(UMovieSceneDataLayerSystem) == 0x0000D0, "Wrong size on UMovieSceneDataLayerSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDeferredComponentMovementSystem \ +static_assert(alignof(UMovieSceneDeferredComponentMovementSystem) == 0x000008, "Wrong alignment on UMovieSceneDeferredComponentMovementSystem"); \ +static_assert(sizeof(UMovieSceneDeferredComponentMovementSystem) == 0x000058, "Wrong size on UMovieSceneDeferredComponentMovementSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoublePropertySystem \ +static_assert(alignof(UMovieSceneDoublePropertySystem) == 0x000008, "Wrong alignment on UMovieSceneDoublePropertySystem"); \ +static_assert(sizeof(UMovieSceneDoublePropertySystem) == 0x000058, "Wrong size on UMovieSceneDoublePropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEnumPropertySystem \ +static_assert(alignof(UMovieSceneEnumPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneEnumPropertySystem"); \ +static_assert(sizeof(UMovieSceneEnumPropertySystem) == 0x000058, "Wrong size on UMovieSceneEnumPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEulerTransformPropertySystem \ +static_assert(alignof(UMovieSceneEulerTransformPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneEulerTransformPropertySystem"); \ +static_assert(sizeof(UMovieSceneEulerTransformPropertySystem) == 0x000058, "Wrong size on UMovieSceneEulerTransformPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventSystem \ +static_assert(alignof(UMovieSceneEventSystem) == 0x000008, "Wrong alignment on UMovieSceneEventSystem"); \ +static_assert(sizeof(UMovieSceneEventSystem) == 0x000090, "Wrong size on UMovieSceneEventSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePreSpawnEventSystem \ +static_assert(alignof(UMovieScenePreSpawnEventSystem) == 0x000008, "Wrong alignment on UMovieScenePreSpawnEventSystem"); \ +static_assert(sizeof(UMovieScenePreSpawnEventSystem) == 0x000090, "Wrong size on UMovieScenePreSpawnEventSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePostSpawnEventSystem \ +static_assert(alignof(UMovieScenePostSpawnEventSystem) == 0x000008, "Wrong alignment on UMovieScenePostSpawnEventSystem"); \ +static_assert(sizeof(UMovieScenePostSpawnEventSystem) == 0x000090, "Wrong size on UMovieScenePostSpawnEventSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePostEvalEventSystem \ +static_assert(alignof(UMovieScenePostEvalEventSystem) == 0x000008, "Wrong alignment on UMovieScenePostEvalEventSystem"); \ +static_assert(sizeof(UMovieScenePostEvalEventSystem) == 0x000090, "Wrong size on UMovieScenePostEvalEventSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFadeSystem \ +static_assert(alignof(UMovieSceneFadeSystem) == 0x000008, "Wrong alignment on UMovieSceneFadeSystem"); \ +static_assert(sizeof(UMovieSceneFadeSystem) == 0x000050, "Wrong size on UMovieSceneFadeSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatPropertySystem \ +static_assert(alignof(UMovieSceneFloatPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneFloatPropertySystem"); \ +static_assert(sizeof(UMovieSceneFloatPropertySystem) == 0x000058, "Wrong size on UMovieSceneFloatPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneHierarchicalBiasSystem \ +static_assert(alignof(UMovieSceneHierarchicalBiasSystem) == 0x000008, "Wrong alignment on UMovieSceneHierarchicalBiasSystem"); \ +static_assert(sizeof(UMovieSceneHierarchicalBiasSystem) == 0x000040, "Wrong size on UMovieSceneHierarchicalBiasSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneInitialValueSystem \ +static_assert(alignof(UMovieSceneInitialValueSystem) == 0x000008, "Wrong alignment on UMovieSceneInitialValueSystem"); \ +static_assert(sizeof(UMovieSceneInitialValueSystem) == 0x000040, "Wrong size on UMovieSceneInitialValueSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneIntegerPropertySystem \ +static_assert(alignof(UMovieSceneIntegerPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneIntegerPropertySystem"); \ +static_assert(sizeof(UMovieSceneIntegerPropertySystem) == 0x000058, "Wrong size on UMovieSceneIntegerPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneLevelVisibilitySystem \ +static_assert(alignof(UMovieSceneLevelVisibilitySystem) == 0x000008, "Wrong alignment on UMovieSceneLevelVisibilitySystem"); \ +static_assert(sizeof(UMovieSceneLevelVisibilitySystem) == 0x0001A8, "Wrong size on UMovieSceneLevelVisibilitySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMaterialParameterCollectionSystem \ +static_assert(alignof(UMovieSceneMaterialParameterCollectionSystem) == 0x000008, "Wrong alignment on UMovieSceneMaterialParameterCollectionSystem"); \ +static_assert(sizeof(UMovieSceneMaterialParameterCollectionSystem) == 0x000060, "Wrong size on UMovieSceneMaterialParameterCollectionSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMaterialParameterSystem \ +static_assert(alignof(UMovieSceneMaterialParameterSystem) == 0x000008, "Wrong alignment on UMovieSceneMaterialParameterSystem"); \ +static_assert(sizeof(UMovieSceneMaterialParameterSystem) == 0x000348, "Wrong size on UMovieSceneMaterialParameterSystem"); \ +static_assert(offsetof(UMovieSceneMaterialParameterSystem, DoubleBlenderSystem) == 0x000340, "Member 'UMovieSceneMaterialParameterSystem::DoubleBlenderSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMotionVectorSimulationSystem \ +static_assert(alignof(UMovieSceneMotionVectorSimulationSystem) == 0x000008, "Wrong alignment on UMovieSceneMotionVectorSimulationSystem"); \ +static_assert(sizeof(UMovieSceneMotionVectorSimulationSystem) == 0x000098, "Wrong size on UMovieSceneMotionVectorSimulationSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePiecewiseByteBlenderSystem \ +static_assert(alignof(UMovieScenePiecewiseByteBlenderSystem) == 0x000008, "Wrong alignment on UMovieScenePiecewiseByteBlenderSystem"); \ +static_assert(sizeof(UMovieScenePiecewiseByteBlenderSystem) == 0x000090, "Wrong size on UMovieScenePiecewiseByteBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePiecewiseDoubleBlenderSystem \ +static_assert(alignof(UMovieScenePiecewiseDoubleBlenderSystem) == 0x000008, "Wrong alignment on UMovieScenePiecewiseDoubleBlenderSystem"); \ +static_assert(sizeof(UMovieScenePiecewiseDoubleBlenderSystem) == 0x000130, "Wrong size on UMovieScenePiecewiseDoubleBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieScenePiecewiseEnumBlenderSystem \ +static_assert(alignof(UMovieScenePiecewiseEnumBlenderSystem) == 0x000008, "Wrong alignment on UMovieScenePiecewiseEnumBlenderSystem"); \ +static_assert(sizeof(UMovieScenePiecewiseEnumBlenderSystem) == 0x000090, "Wrong size on UMovieScenePiecewiseEnumBlenderSystem"); \ + +#define DUMPER7_ASSERTS_MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame \ +static_assert(alignof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame) == 0x000008, "Wrong alignment on MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame"); \ +static_assert(sizeof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame) == 0x000020, "Wrong size on MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame, Player) == 0x000000, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame::Player' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame, TargetComponent) == 0x000008, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame, FrameTime) == 0x000010, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame::FrameTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame, ReturnValue) == 0x000018, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime \ +static_assert(alignof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime) == 0x000008, "Wrong alignment on MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime"); \ +static_assert(sizeof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime) == 0x000020, "Wrong size on MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime, Player) == 0x000000, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime::Player' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime, TargetComponent) == 0x000008, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime, TimeInSeconds) == 0x000010, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime::TimeInSeconds' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime, ReturnValue) == 0x000018, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictLocalTransformAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame \ +static_assert(alignof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame) == 0x000008, "Wrong alignment on MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame"); \ +static_assert(sizeof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame) == 0x000020, "Wrong size on MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame, Player) == 0x000000, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame::Player' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame, TargetComponent) == 0x000008, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame, FrameTime) == 0x000010, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame::FrameTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame, ReturnValue) == 0x000018, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime \ +static_assert(alignof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime) == 0x000008, "Wrong alignment on MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime"); \ +static_assert(sizeof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime) == 0x000020, "Wrong size on MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime, Player) == 0x000000, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime::Player' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime, TargetComponent) == 0x000008, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime, TimeInSeconds) == 0x000010, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime::TimeInSeconds' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime, ReturnValue) == 0x000018, "Member 'MovieSceneAsyncAction_SequencePrediction_PredictWorldTransformAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAsyncAction_SequencePrediction \ +static_assert(alignof(UMovieSceneAsyncAction_SequencePrediction) == 0x000008, "Wrong alignment on UMovieSceneAsyncAction_SequencePrediction"); \ +static_assert(sizeof(UMovieSceneAsyncAction_SequencePrediction) == 0x000080, "Wrong size on UMovieSceneAsyncAction_SequencePrediction"); \ +static_assert(offsetof(UMovieSceneAsyncAction_SequencePrediction, Result) == 0x000030, "Member 'UMovieSceneAsyncAction_SequencePrediction::Result' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAsyncAction_SequencePrediction, Failure) == 0x000040, "Member 'UMovieSceneAsyncAction_SequencePrediction::Failure' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAsyncAction_SequencePrediction, SequencePlayer) == 0x000060, "Member 'UMovieSceneAsyncAction_SequencePrediction::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAsyncAction_SequencePrediction, SceneComponent) == 0x000068, "Member 'UMovieSceneAsyncAction_SequencePrediction::SceneComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePredictionSystem \ +static_assert(alignof(UMovieScenePredictionSystem) == 0x000008, "Wrong alignment on UMovieScenePredictionSystem"); \ +static_assert(sizeof(UMovieScenePredictionSystem) == 0x0000F0, "Wrong size on UMovieScenePredictionSystem"); \ +static_assert(offsetof(UMovieScenePredictionSystem, PendingPredictions) == 0x0000D0, "Member 'UMovieScenePredictionSystem::PendingPredictions' has a wrong offset!"); \ +static_assert(offsetof(UMovieScenePredictionSystem, ProcessingPredictions) == 0x0000E0, "Member 'UMovieScenePredictionSystem::ProcessingPredictions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneQuaternionBlenderSystem \ +static_assert(alignof(UMovieSceneQuaternionBlenderSystem) == 0x000008, "Wrong alignment on UMovieSceneQuaternionBlenderSystem"); \ +static_assert(sizeof(UMovieSceneQuaternionBlenderSystem) == 0x0000C8, "Wrong size on UMovieSceneQuaternionBlenderSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneQuaternionInterpolationRotationSystem \ +static_assert(alignof(UMovieSceneQuaternionInterpolationRotationSystem) == 0x000008, "Wrong alignment on UMovieSceneQuaternionInterpolationRotationSystem"); \ +static_assert(sizeof(UMovieSceneQuaternionInterpolationRotationSystem) == 0x000040, "Wrong size on UMovieSceneQuaternionInterpolationRotationSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSkeletalAnimationSystem \ +static_assert(alignof(UMovieSceneSkeletalAnimationSystem) == 0x000008, "Wrong alignment on UMovieSceneSkeletalAnimationSystem"); \ +static_assert(sizeof(UMovieSceneSkeletalAnimationSystem) == 0x0000E0, "Wrong size on UMovieSceneSkeletalAnimationSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneStringPropertySystem \ +static_assert(alignof(UMovieSceneStringPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneStringPropertySystem"); \ +static_assert(sizeof(UMovieSceneStringPropertySystem) == 0x000058, "Wrong size on UMovieSceneStringPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTransformOriginInstantiatorSystem \ +static_assert(alignof(UMovieSceneTransformOriginInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieSceneTransformOriginInstantiatorSystem"); \ +static_assert(sizeof(UMovieSceneTransformOriginInstantiatorSystem) == 0x000040, "Wrong size on UMovieSceneTransformOriginInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTransformOriginSystem \ +static_assert(alignof(UMovieSceneTransformOriginSystem) == 0x000008, "Wrong alignment on UMovieSceneTransformOriginSystem"); \ +static_assert(sizeof(UMovieSceneTransformOriginSystem) == 0x000078, "Wrong size on UMovieSceneTransformOriginSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatVectorPropertySystem \ +static_assert(alignof(UMovieSceneFloatVectorPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneFloatVectorPropertySystem"); \ +static_assert(sizeof(UMovieSceneFloatVectorPropertySystem) == 0x000058, "Wrong size on UMovieSceneFloatVectorPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleVectorPropertySystem \ +static_assert(alignof(UMovieSceneDoubleVectorPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneDoubleVectorPropertySystem"); \ +static_assert(sizeof(UMovieSceneDoubleVectorPropertySystem) == 0x000058, "Wrong size on UMovieSceneDoubleVectorPropertySystem"); \ + +#define DUMPER7_ASSERTS_UObjectPathChannelEvaluatorSystem \ +static_assert(alignof(UObjectPathChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UObjectPathChannelEvaluatorSystem"); \ +static_assert(sizeof(UObjectPathChannelEvaluatorSystem) == 0x000040, "Wrong size on UObjectPathChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UStringChannelEvaluatorSystem \ +static_assert(alignof(UStringChannelEvaluatorSystem) == 0x000008, "Wrong alignment on UStringChannelEvaluatorSystem"); \ +static_assert(sizeof(UStringChannelEvaluatorSystem) == 0x000040, "Wrong size on UStringChannelEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneHierarchicalEasingInstantiatorSystem \ +static_assert(alignof(UMovieSceneHierarchicalEasingInstantiatorSystem) == 0x000008, "Wrong alignment on UMovieSceneHierarchicalEasingInstantiatorSystem"); \ +static_assert(sizeof(UMovieSceneHierarchicalEasingInstantiatorSystem) == 0x0000D8, "Wrong size on UMovieSceneHierarchicalEasingInstantiatorSystem"); \ +static_assert(offsetof(UMovieSceneHierarchicalEasingInstantiatorSystem, EvaluatorSystem) == 0x0000C8, "Member 'UMovieSceneHierarchicalEasingInstantiatorSystem::EvaluatorSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneHierarchicalEasingFinalizationSystem \ +static_assert(alignof(UMovieSceneHierarchicalEasingFinalizationSystem) == 0x000008, "Wrong alignment on UMovieSceneHierarchicalEasingFinalizationSystem"); \ +static_assert(sizeof(UMovieSceneHierarchicalEasingFinalizationSystem) == 0x000048, "Wrong size on UMovieSceneHierarchicalEasingFinalizationSystem"); \ +static_assert(offsetof(UMovieSceneHierarchicalEasingFinalizationSystem, InstantiatorSystem) == 0x000040, "Member 'UMovieSceneHierarchicalEasingFinalizationSystem::InstantiatorSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWeightAndEasingEvaluatorSystem \ +static_assert(alignof(UWeightAndEasingEvaluatorSystem) == 0x000008, "Wrong alignment on UWeightAndEasingEvaluatorSystem"); \ +static_assert(sizeof(UWeightAndEasingEvaluatorSystem) == 0x000058, "Wrong size on UWeightAndEasingEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraCutTrackInstance \ +static_assert(alignof(UMovieSceneCameraCutTrackInstance) == 0x000008, "Wrong alignment on UMovieSceneCameraCutTrackInstance"); \ +static_assert(sizeof(UMovieSceneCameraCutTrackInstance) == 0x0000C8, "Wrong size on UMovieSceneCameraCutTrackInstance"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCVarTrackInstance \ +static_assert(alignof(UMovieSceneCVarTrackInstance) == 0x000008, "Wrong alignment on UMovieSceneCVarTrackInstance"); \ +static_assert(sizeof(UMovieSceneCVarTrackInstance) == 0x0000A0, "Wrong size on UMovieSceneCVarTrackInstance"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DConstraintTrack \ +static_assert(alignof(UMovieScene3DConstraintTrack) == 0x000008, "Wrong alignment on UMovieScene3DConstraintTrack"); \ +static_assert(sizeof(UMovieScene3DConstraintTrack) == 0x0000A8, "Wrong size on UMovieScene3DConstraintTrack"); \ +static_assert(offsetof(UMovieScene3DConstraintTrack, ConstraintSections) == 0x000098, "Member 'UMovieScene3DConstraintTrack::ConstraintSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DAttachTrack \ +static_assert(alignof(UMovieScene3DAttachTrack) == 0x000008, "Wrong alignment on UMovieScene3DAttachTrack"); \ +static_assert(sizeof(UMovieScene3DAttachTrack) == 0x0000A8, "Wrong size on UMovieScene3DAttachTrack"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DPathTrack \ +static_assert(alignof(UMovieScene3DPathTrack) == 0x000008, "Wrong alignment on UMovieScene3DPathTrack"); \ +static_assert(sizeof(UMovieScene3DPathTrack) == 0x0000B0, "Wrong size on UMovieScene3DPathTrack"); \ + +#define DUMPER7_ASSERTS_UMovieScene3DTransformTrack \ +static_assert(alignof(UMovieScene3DTransformTrack) == 0x000008, "Wrong alignment on UMovieScene3DTransformTrack"); \ +static_assert(sizeof(UMovieScene3DTransformTrack) == 0x0000D8, "Wrong size on UMovieScene3DTransformTrack"); \ +static_assert(offsetof(UMovieScene3DTransformTrack, BlenderSystemClass) == 0x0000D0, "Member 'UMovieScene3DTransformTrack::BlenderSystemClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneActorReferenceTrack \ +static_assert(alignof(UMovieSceneActorReferenceTrack) == 0x000008, "Wrong alignment on UMovieSceneActorReferenceTrack"); \ +static_assert(sizeof(UMovieSceneActorReferenceTrack) == 0x0000D0, "Wrong size on UMovieSceneActorReferenceTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAudioTrack \ +static_assert(alignof(UMovieSceneAudioTrack) == 0x000008, "Wrong alignment on UMovieSceneAudioTrack"); \ +static_assert(sizeof(UMovieSceneAudioTrack) == 0x0000A8, "Wrong size on UMovieSceneAudioTrack"); \ +static_assert(offsetof(UMovieSceneAudioTrack, AudioSections) == 0x000098, "Member 'UMovieSceneAudioTrack::AudioSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBoolTrack \ +static_assert(alignof(UMovieSceneBoolTrack) == 0x000008, "Wrong alignment on UMovieSceneBoolTrack"); \ +static_assert(sizeof(UMovieSceneBoolTrack) == 0x0000D0, "Wrong size on UMovieSceneBoolTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneByteTrack \ +static_assert(alignof(UMovieSceneByteTrack) == 0x000008, "Wrong alignment on UMovieSceneByteTrack"); \ +static_assert(sizeof(UMovieSceneByteTrack) == 0x0000D0, "Wrong size on UMovieSceneByteTrack"); \ +static_assert(offsetof(UMovieSceneByteTrack, Enum) == 0x0000C8, "Member 'UMovieSceneByteTrack::Enum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraCutTrack \ +static_assert(alignof(UMovieSceneCameraCutTrack) == 0x000008, "Wrong alignment on UMovieSceneCameraCutTrack"); \ +static_assert(sizeof(UMovieSceneCameraCutTrack) == 0x0000B0, "Wrong size on UMovieSceneCameraCutTrack"); \ +static_assert(offsetof(UMovieSceneCameraCutTrack, bCanBlend) == 0x000098, "Member 'UMovieSceneCameraCutTrack::bCanBlend' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCameraCutTrack, Sections) == 0x0000A0, "Member 'UMovieSceneCameraCutTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeSourceShakeTrack \ +static_assert(alignof(UMovieSceneCameraShakeSourceShakeTrack) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeSourceShakeTrack"); \ +static_assert(sizeof(UMovieSceneCameraShakeSourceShakeTrack) == 0x0000B0, "Wrong size on UMovieSceneCameraShakeSourceShakeTrack"); \ +static_assert(offsetof(UMovieSceneCameraShakeSourceShakeTrack, CameraShakeSections) == 0x0000A0, "Member 'UMovieSceneCameraShakeSourceShakeTrack::CameraShakeSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeSourceTriggerTrack \ +static_assert(alignof(UMovieSceneCameraShakeSourceTriggerTrack) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeSourceTriggerTrack"); \ +static_assert(sizeof(UMovieSceneCameraShakeSourceTriggerTrack) == 0x0000B0, "Wrong size on UMovieSceneCameraShakeSourceTriggerTrack"); \ +static_assert(offsetof(UMovieSceneCameraShakeSourceTriggerTrack, Sections) == 0x0000A0, "Member 'UMovieSceneCameraShakeSourceTriggerTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCameraShakeTrack \ +static_assert(alignof(UMovieSceneCameraShakeTrack) == 0x000008, "Wrong alignment on UMovieSceneCameraShakeTrack"); \ +static_assert(sizeof(UMovieSceneCameraShakeTrack) == 0x0000B0, "Wrong size on UMovieSceneCameraShakeTrack"); \ +static_assert(offsetof(UMovieSceneCameraShakeTrack, CameraShakeSections) == 0x0000A0, "Member 'UMovieSceneCameraShakeTrack::CameraShakeSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCinematicShotTrack \ +static_assert(alignof(UMovieSceneCinematicShotTrack) == 0x000008, "Wrong alignment on UMovieSceneCinematicShotTrack"); \ +static_assert(sizeof(UMovieSceneCinematicShotTrack) == 0x0000A8, "Wrong size on UMovieSceneCinematicShotTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCVarTrack \ +static_assert(alignof(UMovieSceneCVarTrack) == 0x000008, "Wrong alignment on UMovieSceneCVarTrack"); \ +static_assert(sizeof(UMovieSceneCVarTrack) == 0x0000A8, "Wrong size on UMovieSceneCVarTrack"); \ +static_assert(offsetof(UMovieSceneCVarTrack, Sections) == 0x000098, "Member 'UMovieSceneCVarTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDataLayerTrack \ +static_assert(alignof(UMovieSceneDataLayerTrack) == 0x000008, "Wrong alignment on UMovieSceneDataLayerTrack"); \ +static_assert(sizeof(UMovieSceneDataLayerTrack) == 0x0000A8, "Wrong size on UMovieSceneDataLayerTrack"); \ +static_assert(offsetof(UMovieSceneDataLayerTrack, Sections) == 0x000098, "Member 'UMovieSceneDataLayerTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleTrack \ +static_assert(alignof(UMovieSceneDoubleTrack) == 0x000008, "Wrong alignment on UMovieSceneDoubleTrack"); \ +static_assert(sizeof(UMovieSceneDoubleTrack) == 0x0000C8, "Wrong size on UMovieSceneDoubleTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEnumTrack \ +static_assert(alignof(UMovieSceneEnumTrack) == 0x000008, "Wrong alignment on UMovieSceneEnumTrack"); \ +static_assert(sizeof(UMovieSceneEnumTrack) == 0x0000D0, "Wrong size on UMovieSceneEnumTrack"); \ +static_assert(offsetof(UMovieSceneEnumTrack, Enum) == 0x0000C8, "Member 'UMovieSceneEnumTrack::Enum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEulerTransformTrack \ +static_assert(alignof(UMovieSceneEulerTransformTrack) == 0x000008, "Wrong alignment on UMovieSceneEulerTransformTrack"); \ +static_assert(sizeof(UMovieSceneEulerTransformTrack) == 0x0000C8, "Wrong size on UMovieSceneEulerTransformTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventTrack \ +static_assert(alignof(UMovieSceneEventTrack) == 0x000008, "Wrong alignment on UMovieSceneEventTrack"); \ +static_assert(sizeof(UMovieSceneEventTrack) == 0x0000C0, "Wrong size on UMovieSceneEventTrack"); \ +static_assert(offsetof(UMovieSceneEventTrack, EventPosition) == 0x0000AC, "Member 'UMovieSceneEventTrack::EventPosition' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneEventTrack, Sections) == 0x0000B0, "Member 'UMovieSceneEventTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneIntegerTrack \ +static_assert(alignof(UMovieSceneIntegerTrack) == 0x000008, "Wrong alignment on UMovieSceneIntegerTrack"); \ +static_assert(sizeof(UMovieSceneIntegerTrack) == 0x0000C8, "Wrong size on UMovieSceneIntegerTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneLevelVisibilityTrack \ +static_assert(alignof(UMovieSceneLevelVisibilityTrack) == 0x000008, "Wrong alignment on UMovieSceneLevelVisibilityTrack"); \ +static_assert(sizeof(UMovieSceneLevelVisibilityTrack) == 0x0000A8, "Wrong size on UMovieSceneLevelVisibilityTrack"); \ +static_assert(offsetof(UMovieSceneLevelVisibilityTrack, Sections) == 0x000098, "Member 'UMovieSceneLevelVisibilityTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneComponentMaterialTrack \ +static_assert(alignof(UMovieSceneComponentMaterialTrack) == 0x000008, "Wrong alignment on UMovieSceneComponentMaterialTrack"); \ +static_assert(sizeof(UMovieSceneComponentMaterialTrack) == 0x0000C8, "Wrong size on UMovieSceneComponentMaterialTrack"); \ +static_assert(offsetof(UMovieSceneComponentMaterialTrack, MaterialIndex) == 0x0000C0, "Member 'UMovieSceneComponentMaterialTrack::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneObjectPropertyTrack \ +static_assert(alignof(UMovieSceneObjectPropertyTrack) == 0x000008, "Wrong alignment on UMovieSceneObjectPropertyTrack"); \ +static_assert(sizeof(UMovieSceneObjectPropertyTrack) == 0x0000D8, "Wrong size on UMovieSceneObjectPropertyTrack"); \ +static_assert(offsetof(UMovieSceneObjectPropertyTrack, PropertyClass) == 0x0000D0, "Member 'UMovieSceneObjectPropertyTrack::PropertyClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneParticleParameterTrack \ +static_assert(alignof(UMovieSceneParticleParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneParticleParameterTrack"); \ +static_assert(sizeof(UMovieSceneParticleParameterTrack) == 0x0000B0, "Wrong size on UMovieSceneParticleParameterTrack"); \ +static_assert(offsetof(UMovieSceneParticleParameterTrack, Sections) == 0x0000A0, "Member 'UMovieSceneParticleParameterTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneParticleTrack \ +static_assert(alignof(UMovieSceneParticleTrack) == 0x000008, "Wrong alignment on UMovieSceneParticleTrack"); \ +static_assert(sizeof(UMovieSceneParticleTrack) == 0x0000B0, "Wrong size on UMovieSceneParticleTrack"); \ +static_assert(offsetof(UMovieSceneParticleTrack, ParticleSections) == 0x0000A0, "Member 'UMovieSceneParticleTrack::ParticleSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePrimitiveMaterialTrack \ +static_assert(alignof(UMovieScenePrimitiveMaterialTrack) == 0x000008, "Wrong alignment on UMovieScenePrimitiveMaterialTrack"); \ +static_assert(sizeof(UMovieScenePrimitiveMaterialTrack) == 0x0000D0, "Wrong size on UMovieScenePrimitiveMaterialTrack"); \ +static_assert(offsetof(UMovieScenePrimitiveMaterialTrack, MaterialIndex) == 0x0000C8, "Member 'UMovieScenePrimitiveMaterialTrack::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSkeletalAnimationTrack_SetSwapRootBone \ +static_assert(alignof(MovieSceneSkeletalAnimationTrack_SetSwapRootBone) == 0x000001, "Wrong alignment on MovieSceneSkeletalAnimationTrack_SetSwapRootBone"); \ +static_assert(sizeof(MovieSceneSkeletalAnimationTrack_SetSwapRootBone) == 0x000001, "Wrong size on MovieSceneSkeletalAnimationTrack_SetSwapRootBone"); \ +static_assert(offsetof(MovieSceneSkeletalAnimationTrack_SetSwapRootBone, InValue) == 0x000000, "Member 'MovieSceneSkeletalAnimationTrack_SetSwapRootBone::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSkeletalAnimationTrack_GetSwapRootBone \ +static_assert(alignof(MovieSceneSkeletalAnimationTrack_GetSwapRootBone) == 0x000001, "Wrong alignment on MovieSceneSkeletalAnimationTrack_GetSwapRootBone"); \ +static_assert(sizeof(MovieSceneSkeletalAnimationTrack_GetSwapRootBone) == 0x000001, "Wrong size on MovieSceneSkeletalAnimationTrack_GetSwapRootBone"); \ +static_assert(offsetof(MovieSceneSkeletalAnimationTrack_GetSwapRootBone, ReturnValue) == 0x000000, "Member 'MovieSceneSkeletalAnimationTrack_GetSwapRootBone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSkeletalAnimationTrack \ +static_assert(alignof(UMovieSceneSkeletalAnimationTrack) == 0x000010, "Wrong alignment on UMovieSceneSkeletalAnimationTrack"); \ +static_assert(sizeof(UMovieSceneSkeletalAnimationTrack) == 0x000140, "Wrong size on UMovieSceneSkeletalAnimationTrack"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationTrack, AnimationSections) == 0x000098, "Member 'UMovieSceneSkeletalAnimationTrack::AnimationSections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationTrack, bUseLegacySectionIndexBlend) == 0x0000A8, "Member 'UMovieSceneSkeletalAnimationTrack::bUseLegacySectionIndexBlend' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationTrack, RootMotionParams) == 0x0000B0, "Member 'UMovieSceneSkeletalAnimationTrack::RootMotionParams' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationTrack, bBlendFirstChildOfRoot) == 0x000130, "Member 'UMovieSceneSkeletalAnimationTrack::bBlendFirstChildOfRoot' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneSkeletalAnimationTrack, SwapRootBone) == 0x000131, "Member 'UMovieSceneSkeletalAnimationTrack::SwapRootBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSlomoTrack \ +static_assert(alignof(UMovieSceneSlomoTrack) == 0x000008, "Wrong alignment on UMovieSceneSlomoTrack"); \ +static_assert(sizeof(UMovieSceneSlomoTrack) == 0x0000D0, "Wrong size on UMovieSceneSlomoTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTransformTrack \ +static_assert(alignof(UMovieSceneTransformTrack) == 0x000008, "Wrong alignment on UMovieSceneTransformTrack"); \ +static_assert(sizeof(UMovieSceneTransformTrack) == 0x0000C8, "Wrong size on UMovieSceneTransformTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatVectorTrack \ +static_assert(alignof(UMovieSceneFloatVectorTrack) == 0x000008, "Wrong alignment on UMovieSceneFloatVectorTrack"); \ +static_assert(sizeof(UMovieSceneFloatVectorTrack) == 0x0000D0, "Wrong size on UMovieSceneFloatVectorTrack"); \ +static_assert(offsetof(UMovieSceneFloatVectorTrack, NumChannelsUsed) == 0x0000C8, "Member 'UMovieSceneFloatVectorTrack::NumChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleVectorTrack \ +static_assert(alignof(UMovieSceneDoubleVectorTrack) == 0x000008, "Wrong alignment on UMovieSceneDoubleVectorTrack"); \ +static_assert(sizeof(UMovieSceneDoubleVectorTrack) == 0x0000D0, "Wrong size on UMovieSceneDoubleVectorTrack"); \ +static_assert(offsetof(UMovieSceneDoubleVectorTrack, NumChannelsUsed) == 0x0000C8, "Member 'UMovieSceneDoubleVectorTrack::NumChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneVisibilityTrack \ +static_assert(alignof(UMovieSceneVisibilityTrack) == 0x000008, "Wrong alignment on UMovieSceneVisibilityTrack"); \ +static_assert(sizeof(UMovieSceneVisibilityTrack) == 0x0000D0, "Wrong size on UMovieSceneVisibilityTrack"); \ + +#define DUMPER7_ASSERTS_FShapedTextOptions \ +static_assert(alignof(FShapedTextOptions) == 0x000001, "Wrong alignment on FShapedTextOptions"); \ +static_assert(sizeof(FShapedTextOptions) == 0x000003, "Wrong size on FShapedTextOptions"); \ +static_assert(offsetof(FShapedTextOptions, TextShapingMethod) == 0x000001, "Member 'FShapedTextOptions::TextShapingMethod' has a wrong offset!"); \ +static_assert(offsetof(FShapedTextOptions, TextFlowDirection) == 0x000002, "Member 'FShapedTextOptions::TextFlowDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEventReply \ +static_assert(alignof(FEventReply) == 0x000008, "Wrong alignment on FEventReply"); \ +static_assert(sizeof(FEventReply) == 0x0000B8, "Wrong size on FEventReply"); \ + +#define DUMPER7_ASSERTS_FWidgetChild \ +static_assert(alignof(FWidgetChild) == 0x000004, "Wrong alignment on FWidgetChild"); \ +static_assert(sizeof(FWidgetChild) == 0x000010, "Wrong size on FWidgetChild"); \ +static_assert(offsetof(FWidgetChild, WidgetName) == 0x000000, "Member 'FWidgetChild::WidgetName' has a wrong offset!"); \ +static_assert(offsetof(FWidgetChild, WidgetPtr) == 0x000008, "Member 'FWidgetChild::WidgetPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetTransform \ +static_assert(alignof(FWidgetTransform) == 0x000008, "Wrong alignment on FWidgetTransform"); \ +static_assert(sizeof(FWidgetTransform) == 0x000038, "Wrong size on FWidgetTransform"); \ +static_assert(offsetof(FWidgetTransform, Translation) == 0x000000, "Member 'FWidgetTransform::Translation' has a wrong offset!"); \ +static_assert(offsetof(FWidgetTransform, Scale) == 0x000010, "Member 'FWidgetTransform::Scale' has a wrong offset!"); \ +static_assert(offsetof(FWidgetTransform, Shear) == 0x000020, "Member 'FWidgetTransform::Shear' has a wrong offset!"); \ +static_assert(offsetof(FWidgetTransform, Angle) == 0x000030, "Member 'FWidgetTransform::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaintContext \ +static_assert(alignof(FPaintContext) == 0x000008, "Wrong alignment on FPaintContext"); \ +static_assert(sizeof(FPaintContext) == 0x000030, "Wrong size on FPaintContext"); \ + +#define DUMPER7_ASSERTS_FAnimationEventBinding \ +static_assert(alignof(FAnimationEventBinding) == 0x000008, "Wrong alignment on FAnimationEventBinding"); \ +static_assert(sizeof(FAnimationEventBinding) == 0x000028, "Wrong size on FAnimationEventBinding"); \ +static_assert(offsetof(FAnimationEventBinding, Animation) == 0x000000, "Member 'FAnimationEventBinding::Animation' has a wrong offset!"); \ +static_assert(offsetof(FAnimationEventBinding, Delegate) == 0x000008, "Member 'FAnimationEventBinding::Delegate' has a wrong offset!"); \ +static_assert(offsetof(FAnimationEventBinding, AnimationEvent) == 0x000018, "Member 'FAnimationEventBinding::AnimationEvent' has a wrong offset!"); \ +static_assert(offsetof(FAnimationEventBinding, UserTag) == 0x00001C, "Member 'FAnimationEventBinding::UserTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedSlotBinding \ +static_assert(alignof(FNamedSlotBinding) == 0x000008, "Wrong alignment on FNamedSlotBinding"); \ +static_assert(sizeof(FNamedSlotBinding) == 0x000010, "Wrong size on FNamedSlotBinding"); \ +static_assert(offsetof(FNamedSlotBinding, Name) == 0x000000, "Member 'FNamedSlotBinding::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedSlotBinding, Content) == 0x000008, "Member 'FNamedSlotBinding::Content' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialBoxSettings \ +static_assert(alignof(FRadialBoxSettings) == 0x000004, "Wrong alignment on FRadialBoxSettings"); \ +static_assert(sizeof(FRadialBoxSettings) == 0x000010, "Wrong size on FRadialBoxSettings"); \ +static_assert(offsetof(FRadialBoxSettings, StartingAngle) == 0x000000, "Member 'FRadialBoxSettings::StartingAngle' has a wrong offset!"); \ +static_assert(offsetof(FRadialBoxSettings, bDistributeItemsEvenly) == 0x000004, "Member 'FRadialBoxSettings::bDistributeItemsEvenly' has a wrong offset!"); \ +static_assert(offsetof(FRadialBoxSettings, AngleBetweenItems) == 0x000008, "Member 'FRadialBoxSettings::AngleBetweenItems' has a wrong offset!"); \ +static_assert(offsetof(FRadialBoxSettings, SectorCentralAngle) == 0x00000C, "Member 'FRadialBoxSettings::SectorCentralAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSlateChildSize \ +static_assert(alignof(FSlateChildSize) == 0x000004, "Wrong alignment on FSlateChildSize"); \ +static_assert(sizeof(FSlateChildSize) == 0x000008, "Wrong size on FSlateChildSize"); \ +static_assert(offsetof(FSlateChildSize, Value) == 0x000000, "Member 'FSlateChildSize::Value' has a wrong offset!"); \ +static_assert(offsetof(FSlateChildSize, SizeRule) == 0x000004, "Member 'FSlateChildSize::SizeRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetEventField \ +static_assert(alignof(FWidgetEventField) == 0x000001, "Wrong alignment on FWidgetEventField"); \ +static_assert(sizeof(FWidgetEventField) == 0x000001, "Wrong size on FWidgetEventField"); \ + +#define DUMPER7_ASSERTS_FWidgetNavigationData \ +static_assert(alignof(FWidgetNavigationData) == 0x000004, "Wrong alignment on FWidgetNavigationData"); \ +static_assert(sizeof(FWidgetNavigationData) == 0x000024, "Wrong size on FWidgetNavigationData"); \ +static_assert(offsetof(FWidgetNavigationData, Rule) == 0x000000, "Member 'FWidgetNavigationData::Rule' has a wrong offset!"); \ +static_assert(offsetof(FWidgetNavigationData, WidgetToFocus) == 0x000004, "Member 'FWidgetNavigationData::WidgetToFocus' has a wrong offset!"); \ +static_assert(offsetof(FWidgetNavigationData, Widget) == 0x00000C, "Member 'FWidgetNavigationData::Widget' has a wrong offset!"); \ +static_assert(offsetof(FWidgetNavigationData, CustomDelegate) == 0x000014, "Member 'FWidgetNavigationData::CustomDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieScene2DTransformMask \ +static_assert(alignof(FMovieScene2DTransformMask) == 0x000004, "Wrong alignment on FMovieScene2DTransformMask"); \ +static_assert(sizeof(FMovieScene2DTransformMask) == 0x000004, "Wrong size on FMovieScene2DTransformMask"); \ +static_assert(offsetof(FMovieScene2DTransformMask, Mask) == 0x000000, "Member 'FMovieScene2DTransformMask::Mask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSequenceTickManagerWidgetData \ +static_assert(alignof(FSequenceTickManagerWidgetData) == 0x000001, "Wrong alignment on FSequenceTickManagerWidgetData"); \ +static_assert(sizeof(FSequenceTickManagerWidgetData) == 0x000002, "Wrong size on FSequenceTickManagerWidgetData"); \ + +#define DUMPER7_ASSERTS_FWidgetAnimationBinding \ +static_assert(alignof(FWidgetAnimationBinding) == 0x000004, "Wrong alignment on FWidgetAnimationBinding"); \ +static_assert(sizeof(FWidgetAnimationBinding) == 0x000024, "Wrong size on FWidgetAnimationBinding"); \ +static_assert(offsetof(FWidgetAnimationBinding, WidgetName) == 0x000000, "Member 'FWidgetAnimationBinding::WidgetName' has a wrong offset!"); \ +static_assert(offsetof(FWidgetAnimationBinding, SlotWidgetName) == 0x000008, "Member 'FWidgetAnimationBinding::SlotWidgetName' has a wrong offset!"); \ +static_assert(offsetof(FWidgetAnimationBinding, AnimationGuid) == 0x000010, "Member 'FWidgetAnimationBinding::AnimationGuid' has a wrong offset!"); \ +static_assert(offsetof(FWidgetAnimationBinding, bIsRootWidget) == 0x000020, "Member 'FWidgetAnimationBinding::bIsRootWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintWidgetAnimationDelegateBinding \ +static_assert(alignof(FBlueprintWidgetAnimationDelegateBinding) == 0x000004, "Wrong alignment on FBlueprintWidgetAnimationDelegateBinding"); \ +static_assert(sizeof(FBlueprintWidgetAnimationDelegateBinding) == 0x00001C, "Wrong size on FBlueprintWidgetAnimationDelegateBinding"); \ +static_assert(offsetof(FBlueprintWidgetAnimationDelegateBinding, Action) == 0x000000, "Member 'FBlueprintWidgetAnimationDelegateBinding::Action' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintWidgetAnimationDelegateBinding, AnimationToBind) == 0x000004, "Member 'FBlueprintWidgetAnimationDelegateBinding::AnimationToBind' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintWidgetAnimationDelegateBinding, FunctionNameToBind) == 0x00000C, "Member 'FBlueprintWidgetAnimationDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintWidgetAnimationDelegateBinding, UserTag) == 0x000014, "Member 'FBlueprintWidgetAnimationDelegateBinding::UserTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDynamicPropertyPath \ +static_assert(alignof(FDynamicPropertyPath) == 0x000008, "Wrong alignment on FDynamicPropertyPath"); \ +static_assert(sizeof(FDynamicPropertyPath) == 0x000038, "Wrong size on FDynamicPropertyPath"); \ + +#define DUMPER7_ASSERTS_FWidgetStateBitfield \ +static_assert(alignof(FWidgetStateBitfield) == 0x000008, "Wrong alignment on FWidgetStateBitfield"); \ +static_assert(sizeof(FWidgetStateBitfield) == 0x000590, "Wrong size on FWidgetStateBitfield"); \ + +#define DUMPER7_ASSERTS_FGameViewportWidgetSlot \ +static_assert(alignof(FGameViewportWidgetSlot) == 0x000008, "Wrong alignment on FGameViewportWidgetSlot"); \ +static_assert(sizeof(FGameViewportWidgetSlot) == 0x000048, "Wrong size on FGameViewportWidgetSlot"); \ +static_assert(offsetof(FGameViewportWidgetSlot, Anchors) == 0x000000, "Member 'FGameViewportWidgetSlot::Anchors' has a wrong offset!"); \ +static_assert(offsetof(FGameViewportWidgetSlot, Offsets) == 0x000020, "Member 'FGameViewportWidgetSlot::Offsets' has a wrong offset!"); \ +static_assert(offsetof(FGameViewportWidgetSlot, Alignment) == 0x000030, "Member 'FGameViewportWidgetSlot::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FGameViewportWidgetSlot, ZOrder) == 0x000040, "Member 'FGameViewportWidgetSlot::ZOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUserWidgetPool \ +static_assert(alignof(FUserWidgetPool) == 0x000008, "Wrong alignment on FUserWidgetPool"); \ +static_assert(sizeof(FUserWidgetPool) == 0x000088, "Wrong size on FUserWidgetPool"); \ +static_assert(offsetof(FUserWidgetPool, ActiveWidgets) == 0x000000, "Member 'FUserWidgetPool::ActiveWidgets' has a wrong offset!"); \ +static_assert(offsetof(FUserWidgetPool, InactiveWidgets) == 0x000010, "Member 'FUserWidgetPool::InactiveWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnchorData \ +static_assert(alignof(FAnchorData) == 0x000008, "Wrong alignment on FAnchorData"); \ +static_assert(sizeof(FAnchorData) == 0x000040, "Wrong size on FAnchorData"); \ +static_assert(offsetof(FAnchorData, Offsets) == 0x000000, "Member 'FAnchorData::Offsets' has a wrong offset!"); \ +static_assert(offsetof(FAnchorData, Anchors) == 0x000010, "Member 'FAnchorData::Anchors' has a wrong offset!"); \ +static_assert(offsetof(FAnchorData, Alignment) == 0x000030, "Member 'FAnchorData::Alignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichTextStyleRow \ +static_assert(alignof(FRichTextStyleRow) == 0x000010, "Wrong alignment on FRichTextStyleRow"); \ +static_assert(sizeof(FRichTextStyleRow) == 0x000350, "Wrong size on FRichTextStyleRow"); \ +static_assert(offsetof(FRichTextStyleRow, TextStyle) == 0x000010, "Member 'FRichTextStyleRow::TextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichImageRow \ +static_assert(alignof(FRichImageRow) == 0x000010, "Wrong alignment on FRichImageRow"); \ +static_assert(sizeof(FRichImageRow) == 0x0000E0, "Wrong size on FRichImageRow"); \ +static_assert(offsetof(FRichImageRow, Brush) == 0x000010, "Member 'FRichImageRow::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetComponentInstanceData \ +static_assert(alignof(FWidgetComponentInstanceData) == 0x000008, "Wrong alignment on FWidgetComponentInstanceData"); \ +static_assert(sizeof(FWidgetComponentInstanceData) == 0x0000C8, "Wrong size on FWidgetComponentInstanceData"); \ + +#define DUMPER7_ASSERTS_FSlateMeshVertex \ +static_assert(alignof(FSlateMeshVertex) == 0x000004, "Wrong alignment on FSlateMeshVertex"); \ +static_assert(sizeof(FSlateMeshVertex) == 0x00003C, "Wrong size on FSlateMeshVertex"); \ +static_assert(offsetof(FSlateMeshVertex, Position) == 0x000000, "Member 'FSlateMeshVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, Color) == 0x000008, "Member 'FSlateMeshVertex::Color' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV0) == 0x00000C, "Member 'FSlateMeshVertex::UV0' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV1) == 0x000014, "Member 'FSlateMeshVertex::UV1' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV2) == 0x00001C, "Member 'FSlateMeshVertex::UV2' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV3) == 0x000024, "Member 'FSlateMeshVertex::UV3' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV4) == 0x00002C, "Member 'FSlateMeshVertex::UV4' has a wrong offset!"); \ +static_assert(offsetof(FSlateMeshVertex, UV5) == 0x000034, "Member 'FSlateMeshVertex::UV5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDelegateRuntimeBinding \ +static_assert(alignof(FDelegateRuntimeBinding) == 0x000008, "Wrong alignment on FDelegateRuntimeBinding"); \ +static_assert(sizeof(FDelegateRuntimeBinding) == 0x000060, "Wrong size on FDelegateRuntimeBinding"); \ +static_assert(offsetof(FDelegateRuntimeBinding, ObjectName) == 0x000000, "Member 'FDelegateRuntimeBinding::ObjectName' has a wrong offset!"); \ +static_assert(offsetof(FDelegateRuntimeBinding, PropertyName) == 0x000010, "Member 'FDelegateRuntimeBinding::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FDelegateRuntimeBinding, FunctionName) == 0x000018, "Member 'FDelegateRuntimeBinding::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(FDelegateRuntimeBinding, SourcePath) == 0x000020, "Member 'FDelegateRuntimeBinding::SourcePath' has a wrong offset!"); \ +static_assert(offsetof(FDelegateRuntimeBinding, Kind) == 0x000058, "Member 'FDelegateRuntimeBinding::Kind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_AbsoluteToLocal \ +static_assert(alignof(SlateBlueprintLibrary_AbsoluteToLocal) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_AbsoluteToLocal"); \ +static_assert(sizeof(SlateBlueprintLibrary_AbsoluteToLocal) == 0x000058, "Wrong size on SlateBlueprintLibrary_AbsoluteToLocal"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToLocal, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_AbsoluteToLocal::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToLocal, AbsoluteCoordinate) == 0x000038, "Member 'SlateBlueprintLibrary_AbsoluteToLocal::AbsoluteCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToLocal, ReturnValue) == 0x000048, "Member 'SlateBlueprintLibrary_AbsoluteToLocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_AbsoluteToViewport \ +static_assert(alignof(SlateBlueprintLibrary_AbsoluteToViewport) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_AbsoluteToViewport"); \ +static_assert(sizeof(SlateBlueprintLibrary_AbsoluteToViewport) == 0x000038, "Wrong size on SlateBlueprintLibrary_AbsoluteToViewport"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToViewport, WorldContextObject) == 0x000000, "Member 'SlateBlueprintLibrary_AbsoluteToViewport::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToViewport, AbsoluteDesktopCoordinate) == 0x000008, "Member 'SlateBlueprintLibrary_AbsoluteToViewport::AbsoluteDesktopCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToViewport, PixelPosition) == 0x000018, "Member 'SlateBlueprintLibrary_AbsoluteToViewport::PixelPosition' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_AbsoluteToViewport, ViewportPosition) == 0x000028, "Member 'SlateBlueprintLibrary_AbsoluteToViewport::ViewportPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_EqualEqual_SlateBrush \ +static_assert(alignof(SlateBlueprintLibrary_EqualEqual_SlateBrush) == 0x000010, "Wrong alignment on SlateBlueprintLibrary_EqualEqual_SlateBrush"); \ +static_assert(sizeof(SlateBlueprintLibrary_EqualEqual_SlateBrush) == 0x0001B0, "Wrong size on SlateBlueprintLibrary_EqualEqual_SlateBrush"); \ +static_assert(offsetof(SlateBlueprintLibrary_EqualEqual_SlateBrush, A) == 0x000000, "Member 'SlateBlueprintLibrary_EqualEqual_SlateBrush::A' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_EqualEqual_SlateBrush, B) == 0x0000D0, "Member 'SlateBlueprintLibrary_EqualEqual_SlateBrush::B' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_EqualEqual_SlateBrush, ReturnValue) == 0x0001A0, "Member 'SlateBlueprintLibrary_EqualEqual_SlateBrush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_GetAbsoluteSize \ +static_assert(alignof(SlateBlueprintLibrary_GetAbsoluteSize) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_GetAbsoluteSize"); \ +static_assert(sizeof(SlateBlueprintLibrary_GetAbsoluteSize) == 0x000048, "Wrong size on SlateBlueprintLibrary_GetAbsoluteSize"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetAbsoluteSize, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_GetAbsoluteSize::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetAbsoluteSize, ReturnValue) == 0x000038, "Member 'SlateBlueprintLibrary_GetAbsoluteSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_GetLocalSize \ +static_assert(alignof(SlateBlueprintLibrary_GetLocalSize) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_GetLocalSize"); \ +static_assert(sizeof(SlateBlueprintLibrary_GetLocalSize) == 0x000048, "Wrong size on SlateBlueprintLibrary_GetLocalSize"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetLocalSize, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_GetLocalSize::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetLocalSize, ReturnValue) == 0x000038, "Member 'SlateBlueprintLibrary_GetLocalSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_GetLocalTopLeft \ +static_assert(alignof(SlateBlueprintLibrary_GetLocalTopLeft) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_GetLocalTopLeft"); \ +static_assert(sizeof(SlateBlueprintLibrary_GetLocalTopLeft) == 0x000048, "Wrong size on SlateBlueprintLibrary_GetLocalTopLeft"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetLocalTopLeft, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_GetLocalTopLeft::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_GetLocalTopLeft, ReturnValue) == 0x000038, "Member 'SlateBlueprintLibrary_GetLocalTopLeft::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_IsUnderLocation \ +static_assert(alignof(SlateBlueprintLibrary_IsUnderLocation) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_IsUnderLocation"); \ +static_assert(sizeof(SlateBlueprintLibrary_IsUnderLocation) == 0x000050, "Wrong size on SlateBlueprintLibrary_IsUnderLocation"); \ +static_assert(offsetof(SlateBlueprintLibrary_IsUnderLocation, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_IsUnderLocation::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_IsUnderLocation, AbsoluteCoordinate) == 0x000038, "Member 'SlateBlueprintLibrary_IsUnderLocation::AbsoluteCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_IsUnderLocation, ReturnValue) == 0x000048, "Member 'SlateBlueprintLibrary_IsUnderLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_LocalToAbsolute \ +static_assert(alignof(SlateBlueprintLibrary_LocalToAbsolute) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_LocalToAbsolute"); \ +static_assert(sizeof(SlateBlueprintLibrary_LocalToAbsolute) == 0x000058, "Wrong size on SlateBlueprintLibrary_LocalToAbsolute"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToAbsolute, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_LocalToAbsolute::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToAbsolute, LocalCoordinate) == 0x000038, "Member 'SlateBlueprintLibrary_LocalToAbsolute::LocalCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToAbsolute, ReturnValue) == 0x000048, "Member 'SlateBlueprintLibrary_LocalToAbsolute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_LocalToViewport \ +static_assert(alignof(SlateBlueprintLibrary_LocalToViewport) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_LocalToViewport"); \ +static_assert(sizeof(SlateBlueprintLibrary_LocalToViewport) == 0x000070, "Wrong size on SlateBlueprintLibrary_LocalToViewport"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToViewport, WorldContextObject) == 0x000000, "Member 'SlateBlueprintLibrary_LocalToViewport::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToViewport, Geometry) == 0x000008, "Member 'SlateBlueprintLibrary_LocalToViewport::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToViewport, LocalCoordinate) == 0x000040, "Member 'SlateBlueprintLibrary_LocalToViewport::LocalCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToViewport, PixelPosition) == 0x000050, "Member 'SlateBlueprintLibrary_LocalToViewport::PixelPosition' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_LocalToViewport, ViewportPosition) == 0x000060, "Member 'SlateBlueprintLibrary_LocalToViewport::ViewportPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_ScreenToViewport \ +static_assert(alignof(SlateBlueprintLibrary_ScreenToViewport) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_ScreenToViewport"); \ +static_assert(sizeof(SlateBlueprintLibrary_ScreenToViewport) == 0x000028, "Wrong size on SlateBlueprintLibrary_ScreenToViewport"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToViewport, WorldContextObject) == 0x000000, "Member 'SlateBlueprintLibrary_ScreenToViewport::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToViewport, ScreenPosition) == 0x000008, "Member 'SlateBlueprintLibrary_ScreenToViewport::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToViewport, ViewportPosition) == 0x000018, "Member 'SlateBlueprintLibrary_ScreenToViewport::ViewportPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_ScreenToWidgetAbsolute \ +static_assert(alignof(SlateBlueprintLibrary_ScreenToWidgetAbsolute) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_ScreenToWidgetAbsolute"); \ +static_assert(sizeof(SlateBlueprintLibrary_ScreenToWidgetAbsolute) == 0x000030, "Wrong size on SlateBlueprintLibrary_ScreenToWidgetAbsolute"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetAbsolute, WorldContextObject) == 0x000000, "Member 'SlateBlueprintLibrary_ScreenToWidgetAbsolute::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetAbsolute, ScreenPosition) == 0x000008, "Member 'SlateBlueprintLibrary_ScreenToWidgetAbsolute::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetAbsolute, AbsoluteCoordinate) == 0x000018, "Member 'SlateBlueprintLibrary_ScreenToWidgetAbsolute::AbsoluteCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetAbsolute, bIncludeWindowPosition) == 0x000028, "Member 'SlateBlueprintLibrary_ScreenToWidgetAbsolute::bIncludeWindowPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_ScreenToWidgetLocal \ +static_assert(alignof(SlateBlueprintLibrary_ScreenToWidgetLocal) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_ScreenToWidgetLocal"); \ +static_assert(sizeof(SlateBlueprintLibrary_ScreenToWidgetLocal) == 0x000068, "Wrong size on SlateBlueprintLibrary_ScreenToWidgetLocal"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetLocal, WorldContextObject) == 0x000000, "Member 'SlateBlueprintLibrary_ScreenToWidgetLocal::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetLocal, Geometry) == 0x000008, "Member 'SlateBlueprintLibrary_ScreenToWidgetLocal::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetLocal, ScreenPosition) == 0x000040, "Member 'SlateBlueprintLibrary_ScreenToWidgetLocal::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetLocal, LocalCoordinate) == 0x000050, "Member 'SlateBlueprintLibrary_ScreenToWidgetLocal::LocalCoordinate' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_ScreenToWidgetLocal, bIncludeWindowPosition) == 0x000060, "Member 'SlateBlueprintLibrary_ScreenToWidgetLocal::bIncludeWindowPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_TransformScalarAbsoluteToLocal \ +static_assert(alignof(SlateBlueprintLibrary_TransformScalarAbsoluteToLocal) == 0x000004, "Wrong alignment on SlateBlueprintLibrary_TransformScalarAbsoluteToLocal"); \ +static_assert(sizeof(SlateBlueprintLibrary_TransformScalarAbsoluteToLocal) == 0x000040, "Wrong size on SlateBlueprintLibrary_TransformScalarAbsoluteToLocal"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarAbsoluteToLocal, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_TransformScalarAbsoluteToLocal::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarAbsoluteToLocal, AbsoluteScalar) == 0x000038, "Member 'SlateBlueprintLibrary_TransformScalarAbsoluteToLocal::AbsoluteScalar' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarAbsoluteToLocal, ReturnValue) == 0x00003C, "Member 'SlateBlueprintLibrary_TransformScalarAbsoluteToLocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_TransformScalarLocalToAbsolute \ +static_assert(alignof(SlateBlueprintLibrary_TransformScalarLocalToAbsolute) == 0x000004, "Wrong alignment on SlateBlueprintLibrary_TransformScalarLocalToAbsolute"); \ +static_assert(sizeof(SlateBlueprintLibrary_TransformScalarLocalToAbsolute) == 0x000040, "Wrong size on SlateBlueprintLibrary_TransformScalarLocalToAbsolute"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarLocalToAbsolute, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_TransformScalarLocalToAbsolute::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarLocalToAbsolute, LocalScalar) == 0x000038, "Member 'SlateBlueprintLibrary_TransformScalarLocalToAbsolute::LocalScalar' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformScalarLocalToAbsolute, ReturnValue) == 0x00003C, "Member 'SlateBlueprintLibrary_TransformScalarLocalToAbsolute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_TransformVectorAbsoluteToLocal \ +static_assert(alignof(SlateBlueprintLibrary_TransformVectorAbsoluteToLocal) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_TransformVectorAbsoluteToLocal"); \ +static_assert(sizeof(SlateBlueprintLibrary_TransformVectorAbsoluteToLocal) == 0x000058, "Wrong size on SlateBlueprintLibrary_TransformVectorAbsoluteToLocal"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorAbsoluteToLocal, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_TransformVectorAbsoluteToLocal::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorAbsoluteToLocal, AbsoluteVector) == 0x000038, "Member 'SlateBlueprintLibrary_TransformVectorAbsoluteToLocal::AbsoluteVector' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorAbsoluteToLocal, ReturnValue) == 0x000048, "Member 'SlateBlueprintLibrary_TransformVectorAbsoluteToLocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SlateBlueprintLibrary_TransformVectorLocalToAbsolute \ +static_assert(alignof(SlateBlueprintLibrary_TransformVectorLocalToAbsolute) == 0x000008, "Wrong alignment on SlateBlueprintLibrary_TransformVectorLocalToAbsolute"); \ +static_assert(sizeof(SlateBlueprintLibrary_TransformVectorLocalToAbsolute) == 0x000058, "Wrong size on SlateBlueprintLibrary_TransformVectorLocalToAbsolute"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorLocalToAbsolute, Geometry) == 0x000000, "Member 'SlateBlueprintLibrary_TransformVectorLocalToAbsolute::Geometry' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorLocalToAbsolute, LocalVector) == 0x000038, "Member 'SlateBlueprintLibrary_TransformVectorLocalToAbsolute::LocalVector' has a wrong offset!"); \ +static_assert(offsetof(SlateBlueprintLibrary_TransformVectorLocalToAbsolute, ReturnValue) == 0x000048, "Member 'SlateBlueprintLibrary_TransformVectorLocalToAbsolute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USlateBlueprintLibrary \ +static_assert(alignof(USlateBlueprintLibrary) == 0x000008, "Wrong alignment on USlateBlueprintLibrary"); \ +static_assert(sizeof(USlateBlueprintLibrary) == 0x000028, "Wrong size on USlateBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UUserWidgetBlueprint \ +static_assert(alignof(UUserWidgetBlueprint) == 0x000008, "Wrong alignment on UUserWidgetBlueprint"); \ +static_assert(sizeof(UUserWidgetBlueprint) == 0x0000A8, "Wrong size on UUserWidgetBlueprint"); \ + +#define DUMPER7_ASSERTS_UVisual \ +static_assert(alignof(UVisual) == 0x000008, "Wrong alignment on UVisual"); \ +static_assert(sizeof(UVisual) == 0x000028, "Wrong size on UVisual"); \ + +#define DUMPER7_ASSERTS_UPanelSlot \ +static_assert(alignof(UPanelSlot) == 0x000008, "Wrong alignment on UPanelSlot"); \ +static_assert(sizeof(UPanelSlot) == 0x000038, "Wrong size on UPanelSlot"); \ +static_assert(offsetof(UPanelSlot, Parent) == 0x000028, "Member 'UPanelSlot::Parent' has a wrong offset!"); \ +static_assert(offsetof(UPanelSlot, Content) == 0x000030, "Member 'UPanelSlot::Content' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetAlignment \ +static_assert(alignof(CanvasPanelSlot_SetAlignment) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetAlignment"); \ +static_assert(sizeof(CanvasPanelSlot_SetAlignment) == 0x000010, "Wrong size on CanvasPanelSlot_SetAlignment"); \ +static_assert(offsetof(CanvasPanelSlot_SetAlignment, InAlignment) == 0x000000, "Member 'CanvasPanelSlot_SetAlignment::InAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetAnchors \ +static_assert(alignof(CanvasPanelSlot_SetAnchors) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetAnchors"); \ +static_assert(sizeof(CanvasPanelSlot_SetAnchors) == 0x000020, "Wrong size on CanvasPanelSlot_SetAnchors"); \ +static_assert(offsetof(CanvasPanelSlot_SetAnchors, InAnchors) == 0x000000, "Member 'CanvasPanelSlot_SetAnchors::InAnchors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetAutoSize \ +static_assert(alignof(CanvasPanelSlot_SetAutoSize) == 0x000001, "Wrong alignment on CanvasPanelSlot_SetAutoSize"); \ +static_assert(sizeof(CanvasPanelSlot_SetAutoSize) == 0x000001, "Wrong size on CanvasPanelSlot_SetAutoSize"); \ +static_assert(offsetof(CanvasPanelSlot_SetAutoSize, InbAutoSize) == 0x000000, "Member 'CanvasPanelSlot_SetAutoSize::InbAutoSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetLayout \ +static_assert(alignof(CanvasPanelSlot_SetLayout) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetLayout"); \ +static_assert(sizeof(CanvasPanelSlot_SetLayout) == 0x000040, "Wrong size on CanvasPanelSlot_SetLayout"); \ +static_assert(offsetof(CanvasPanelSlot_SetLayout, InLayoutData) == 0x000000, "Member 'CanvasPanelSlot_SetLayout::InLayoutData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetMaximum \ +static_assert(alignof(CanvasPanelSlot_SetMaximum) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetMaximum"); \ +static_assert(sizeof(CanvasPanelSlot_SetMaximum) == 0x000010, "Wrong size on CanvasPanelSlot_SetMaximum"); \ +static_assert(offsetof(CanvasPanelSlot_SetMaximum, InMaximumAnchors) == 0x000000, "Member 'CanvasPanelSlot_SetMaximum::InMaximumAnchors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetMinimum \ +static_assert(alignof(CanvasPanelSlot_SetMinimum) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetMinimum"); \ +static_assert(sizeof(CanvasPanelSlot_SetMinimum) == 0x000010, "Wrong size on CanvasPanelSlot_SetMinimum"); \ +static_assert(offsetof(CanvasPanelSlot_SetMinimum, InMinimumAnchors) == 0x000000, "Member 'CanvasPanelSlot_SetMinimum::InMinimumAnchors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetOffsets \ +static_assert(alignof(CanvasPanelSlot_SetOffsets) == 0x000004, "Wrong alignment on CanvasPanelSlot_SetOffsets"); \ +static_assert(sizeof(CanvasPanelSlot_SetOffsets) == 0x000010, "Wrong size on CanvasPanelSlot_SetOffsets"); \ +static_assert(offsetof(CanvasPanelSlot_SetOffsets, InOffset) == 0x000000, "Member 'CanvasPanelSlot_SetOffsets::InOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetPosition \ +static_assert(alignof(CanvasPanelSlot_SetPosition) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetPosition"); \ +static_assert(sizeof(CanvasPanelSlot_SetPosition) == 0x000010, "Wrong size on CanvasPanelSlot_SetPosition"); \ +static_assert(offsetof(CanvasPanelSlot_SetPosition, InPosition) == 0x000000, "Member 'CanvasPanelSlot_SetPosition::InPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetSize \ +static_assert(alignof(CanvasPanelSlot_SetSize) == 0x000008, "Wrong alignment on CanvasPanelSlot_SetSize"); \ +static_assert(sizeof(CanvasPanelSlot_SetSize) == 0x000010, "Wrong size on CanvasPanelSlot_SetSize"); \ +static_assert(offsetof(CanvasPanelSlot_SetSize, InSize) == 0x000000, "Member 'CanvasPanelSlot_SetSize::InSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_SetZOrder \ +static_assert(alignof(CanvasPanelSlot_SetZOrder) == 0x000004, "Wrong alignment on CanvasPanelSlot_SetZOrder"); \ +static_assert(sizeof(CanvasPanelSlot_SetZOrder) == 0x000004, "Wrong size on CanvasPanelSlot_SetZOrder"); \ +static_assert(offsetof(CanvasPanelSlot_SetZOrder, InZOrder) == 0x000000, "Member 'CanvasPanelSlot_SetZOrder::InZOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetAlignment \ +static_assert(alignof(CanvasPanelSlot_GetAlignment) == 0x000008, "Wrong alignment on CanvasPanelSlot_GetAlignment"); \ +static_assert(sizeof(CanvasPanelSlot_GetAlignment) == 0x000010, "Wrong size on CanvasPanelSlot_GetAlignment"); \ +static_assert(offsetof(CanvasPanelSlot_GetAlignment, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetAlignment::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetAnchors \ +static_assert(alignof(CanvasPanelSlot_GetAnchors) == 0x000008, "Wrong alignment on CanvasPanelSlot_GetAnchors"); \ +static_assert(sizeof(CanvasPanelSlot_GetAnchors) == 0x000020, "Wrong size on CanvasPanelSlot_GetAnchors"); \ +static_assert(offsetof(CanvasPanelSlot_GetAnchors, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetAnchors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetAutoSize \ +static_assert(alignof(CanvasPanelSlot_GetAutoSize) == 0x000001, "Wrong alignment on CanvasPanelSlot_GetAutoSize"); \ +static_assert(sizeof(CanvasPanelSlot_GetAutoSize) == 0x000001, "Wrong size on CanvasPanelSlot_GetAutoSize"); \ +static_assert(offsetof(CanvasPanelSlot_GetAutoSize, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetAutoSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetLayout \ +static_assert(alignof(CanvasPanelSlot_GetLayout) == 0x000008, "Wrong alignment on CanvasPanelSlot_GetLayout"); \ +static_assert(sizeof(CanvasPanelSlot_GetLayout) == 0x000040, "Wrong size on CanvasPanelSlot_GetLayout"); \ +static_assert(offsetof(CanvasPanelSlot_GetLayout, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetLayout::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetOffsets \ +static_assert(alignof(CanvasPanelSlot_GetOffsets) == 0x000004, "Wrong alignment on CanvasPanelSlot_GetOffsets"); \ +static_assert(sizeof(CanvasPanelSlot_GetOffsets) == 0x000010, "Wrong size on CanvasPanelSlot_GetOffsets"); \ +static_assert(offsetof(CanvasPanelSlot_GetOffsets, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetOffsets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetPosition \ +static_assert(alignof(CanvasPanelSlot_GetPosition) == 0x000008, "Wrong alignment on CanvasPanelSlot_GetPosition"); \ +static_assert(sizeof(CanvasPanelSlot_GetPosition) == 0x000010, "Wrong size on CanvasPanelSlot_GetPosition"); \ +static_assert(offsetof(CanvasPanelSlot_GetPosition, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetSize \ +static_assert(alignof(CanvasPanelSlot_GetSize) == 0x000008, "Wrong alignment on CanvasPanelSlot_GetSize"); \ +static_assert(sizeof(CanvasPanelSlot_GetSize) == 0x000010, "Wrong size on CanvasPanelSlot_GetSize"); \ +static_assert(offsetof(CanvasPanelSlot_GetSize, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanelSlot_GetZOrder \ +static_assert(alignof(CanvasPanelSlot_GetZOrder) == 0x000004, "Wrong alignment on CanvasPanelSlot_GetZOrder"); \ +static_assert(sizeof(CanvasPanelSlot_GetZOrder) == 0x000004, "Wrong size on CanvasPanelSlot_GetZOrder"); \ +static_assert(offsetof(CanvasPanelSlot_GetZOrder, ReturnValue) == 0x000000, "Member 'CanvasPanelSlot_GetZOrder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCanvasPanelSlot \ +static_assert(alignof(UCanvasPanelSlot) == 0x000008, "Wrong alignment on UCanvasPanelSlot"); \ +static_assert(sizeof(UCanvasPanelSlot) == 0x000088, "Wrong size on UCanvasPanelSlot"); \ +static_assert(offsetof(UCanvasPanelSlot, LayoutData) == 0x000038, "Member 'UCanvasPanelSlot::LayoutData' has a wrong offset!"); \ +static_assert(offsetof(UCanvasPanelSlot, bAutoSize) == 0x000078, "Member 'UCanvasPanelSlot::bAutoSize' has a wrong offset!"); \ +static_assert(offsetof(UCanvasPanelSlot, ZOrder) == 0x00007C, "Member 'UCanvasPanelSlot::ZOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_ForceVolatile \ +static_assert(alignof(Widget_ForceVolatile) == 0x000001, "Wrong alignment on Widget_ForceVolatile"); \ +static_assert(sizeof(Widget_ForceVolatile) == 0x000001, "Wrong size on Widget_ForceVolatile"); \ +static_assert(offsetof(Widget_ForceVolatile, bForce) == 0x000000, "Member 'Widget_ForceVolatile::bForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_K2_AddFieldValueChangedDelegate \ +static_assert(alignof(Widget_K2_AddFieldValueChangedDelegate) == 0x000004, "Wrong alignment on Widget_K2_AddFieldValueChangedDelegate"); \ +static_assert(sizeof(Widget_K2_AddFieldValueChangedDelegate) == 0x000018, "Wrong size on Widget_K2_AddFieldValueChangedDelegate"); \ +static_assert(offsetof(Widget_K2_AddFieldValueChangedDelegate, FieldId) == 0x000000, "Member 'Widget_K2_AddFieldValueChangedDelegate::FieldId' has a wrong offset!"); \ +static_assert(offsetof(Widget_K2_AddFieldValueChangedDelegate, Delegate) == 0x000008, "Member 'Widget_K2_AddFieldValueChangedDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_K2_BroadcastFieldValueChanged \ +static_assert(alignof(Widget_K2_BroadcastFieldValueChanged) == 0x000004, "Wrong alignment on Widget_K2_BroadcastFieldValueChanged"); \ +static_assert(sizeof(Widget_K2_BroadcastFieldValueChanged) == 0x000008, "Wrong size on Widget_K2_BroadcastFieldValueChanged"); \ +static_assert(offsetof(Widget_K2_BroadcastFieldValueChanged, FieldId) == 0x000000, "Member 'Widget_K2_BroadcastFieldValueChanged::FieldId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_K2_RemoveFieldValueChangedDelegate \ +static_assert(alignof(Widget_K2_RemoveFieldValueChangedDelegate) == 0x000004, "Wrong alignment on Widget_K2_RemoveFieldValueChangedDelegate"); \ +static_assert(sizeof(Widget_K2_RemoveFieldValueChangedDelegate) == 0x000018, "Wrong size on Widget_K2_RemoveFieldValueChangedDelegate"); \ +static_assert(offsetof(Widget_K2_RemoveFieldValueChangedDelegate, FieldId) == 0x000000, "Member 'Widget_K2_RemoveFieldValueChangedDelegate::FieldId' has a wrong offset!"); \ +static_assert(offsetof(Widget_K2_RemoveFieldValueChangedDelegate, Delegate) == 0x000008, "Member 'Widget_K2_RemoveFieldValueChangedDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetAllNavigationRules \ +static_assert(alignof(Widget_SetAllNavigationRules) == 0x000004, "Wrong alignment on Widget_SetAllNavigationRules"); \ +static_assert(sizeof(Widget_SetAllNavigationRules) == 0x00000C, "Wrong size on Widget_SetAllNavigationRules"); \ +static_assert(offsetof(Widget_SetAllNavigationRules, Rule) == 0x000000, "Member 'Widget_SetAllNavigationRules::Rule' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetAllNavigationRules, WidgetToFocus) == 0x000004, "Member 'Widget_SetAllNavigationRules::WidgetToFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetClipping \ +static_assert(alignof(Widget_SetClipping) == 0x000001, "Wrong alignment on Widget_SetClipping"); \ +static_assert(sizeof(Widget_SetClipping) == 0x000001, "Wrong size on Widget_SetClipping"); \ +static_assert(offsetof(Widget_SetClipping, InClipping) == 0x000000, "Member 'Widget_SetClipping::InClipping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetCursor \ +static_assert(alignof(Widget_SetCursor) == 0x000001, "Wrong alignment on Widget_SetCursor"); \ +static_assert(sizeof(Widget_SetCursor) == 0x000001, "Wrong size on Widget_SetCursor"); \ +static_assert(offsetof(Widget_SetCursor, InCursor) == 0x000000, "Member 'Widget_SetCursor::InCursor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetIsEnabled \ +static_assert(alignof(Widget_SetIsEnabled) == 0x000001, "Wrong alignment on Widget_SetIsEnabled"); \ +static_assert(sizeof(Widget_SetIsEnabled) == 0x000001, "Wrong size on Widget_SetIsEnabled"); \ +static_assert(offsetof(Widget_SetIsEnabled, bInIsEnabled) == 0x000000, "Member 'Widget_SetIsEnabled::bInIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetNavigationRule \ +static_assert(alignof(Widget_SetNavigationRule) == 0x000004, "Wrong alignment on Widget_SetNavigationRule"); \ +static_assert(sizeof(Widget_SetNavigationRule) == 0x00000C, "Wrong size on Widget_SetNavigationRule"); \ +static_assert(offsetof(Widget_SetNavigationRule, Direction) == 0x000000, "Member 'Widget_SetNavigationRule::Direction' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRule, Rule) == 0x000001, "Member 'Widget_SetNavigationRule::Rule' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRule, WidgetToFocus) == 0x000004, "Member 'Widget_SetNavigationRule::WidgetToFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetNavigationRuleBase \ +static_assert(alignof(Widget_SetNavigationRuleBase) == 0x000001, "Wrong alignment on Widget_SetNavigationRuleBase"); \ +static_assert(sizeof(Widget_SetNavigationRuleBase) == 0x000002, "Wrong size on Widget_SetNavigationRuleBase"); \ +static_assert(offsetof(Widget_SetNavigationRuleBase, Direction) == 0x000000, "Member 'Widget_SetNavigationRuleBase::Direction' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRuleBase, Rule) == 0x000001, "Member 'Widget_SetNavigationRuleBase::Rule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetNavigationRuleCustom \ +static_assert(alignof(Widget_SetNavigationRuleCustom) == 0x000004, "Wrong alignment on Widget_SetNavigationRuleCustom"); \ +static_assert(sizeof(Widget_SetNavigationRuleCustom) == 0x000014, "Wrong size on Widget_SetNavigationRuleCustom"); \ +static_assert(offsetof(Widget_SetNavigationRuleCustom, Direction) == 0x000000, "Member 'Widget_SetNavigationRuleCustom::Direction' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRuleCustom, InCustomDelegate) == 0x000004, "Member 'Widget_SetNavigationRuleCustom::InCustomDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetNavigationRuleCustomBoundary \ +static_assert(alignof(Widget_SetNavigationRuleCustomBoundary) == 0x000004, "Wrong alignment on Widget_SetNavigationRuleCustomBoundary"); \ +static_assert(sizeof(Widget_SetNavigationRuleCustomBoundary) == 0x000014, "Wrong size on Widget_SetNavigationRuleCustomBoundary"); \ +static_assert(offsetof(Widget_SetNavigationRuleCustomBoundary, Direction) == 0x000000, "Member 'Widget_SetNavigationRuleCustomBoundary::Direction' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRuleCustomBoundary, InCustomDelegate) == 0x000004, "Member 'Widget_SetNavigationRuleCustomBoundary::InCustomDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetNavigationRuleExplicit \ +static_assert(alignof(Widget_SetNavigationRuleExplicit) == 0x000008, "Wrong alignment on Widget_SetNavigationRuleExplicit"); \ +static_assert(sizeof(Widget_SetNavigationRuleExplicit) == 0x000010, "Wrong size on Widget_SetNavigationRuleExplicit"); \ +static_assert(offsetof(Widget_SetNavigationRuleExplicit, Direction) == 0x000000, "Member 'Widget_SetNavigationRuleExplicit::Direction' has a wrong offset!"); \ +static_assert(offsetof(Widget_SetNavigationRuleExplicit, InWidget) == 0x000008, "Member 'Widget_SetNavigationRuleExplicit::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderOpacity \ +static_assert(alignof(Widget_SetRenderOpacity) == 0x000004, "Wrong alignment on Widget_SetRenderOpacity"); \ +static_assert(sizeof(Widget_SetRenderOpacity) == 0x000004, "Wrong size on Widget_SetRenderOpacity"); \ +static_assert(offsetof(Widget_SetRenderOpacity, InOpacity) == 0x000000, "Member 'Widget_SetRenderOpacity::InOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderScale \ +static_assert(alignof(Widget_SetRenderScale) == 0x000008, "Wrong alignment on Widget_SetRenderScale"); \ +static_assert(sizeof(Widget_SetRenderScale) == 0x000010, "Wrong size on Widget_SetRenderScale"); \ +static_assert(offsetof(Widget_SetRenderScale, Scale) == 0x000000, "Member 'Widget_SetRenderScale::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderShear \ +static_assert(alignof(Widget_SetRenderShear) == 0x000008, "Wrong alignment on Widget_SetRenderShear"); \ +static_assert(sizeof(Widget_SetRenderShear) == 0x000010, "Wrong size on Widget_SetRenderShear"); \ +static_assert(offsetof(Widget_SetRenderShear, Shear) == 0x000000, "Member 'Widget_SetRenderShear::Shear' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderTransform \ +static_assert(alignof(Widget_SetRenderTransform) == 0x000008, "Wrong alignment on Widget_SetRenderTransform"); \ +static_assert(sizeof(Widget_SetRenderTransform) == 0x000038, "Wrong size on Widget_SetRenderTransform"); \ +static_assert(offsetof(Widget_SetRenderTransform, InTransform) == 0x000000, "Member 'Widget_SetRenderTransform::InTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderTransformAngle \ +static_assert(alignof(Widget_SetRenderTransformAngle) == 0x000004, "Wrong alignment on Widget_SetRenderTransformAngle"); \ +static_assert(sizeof(Widget_SetRenderTransformAngle) == 0x000004, "Wrong size on Widget_SetRenderTransformAngle"); \ +static_assert(offsetof(Widget_SetRenderTransformAngle, Angle) == 0x000000, "Member 'Widget_SetRenderTransformAngle::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderTransformPivot \ +static_assert(alignof(Widget_SetRenderTransformPivot) == 0x000008, "Wrong alignment on Widget_SetRenderTransformPivot"); \ +static_assert(sizeof(Widget_SetRenderTransformPivot) == 0x000010, "Wrong size on Widget_SetRenderTransformPivot"); \ +static_assert(offsetof(Widget_SetRenderTransformPivot, Pivot) == 0x000000, "Member 'Widget_SetRenderTransformPivot::Pivot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetRenderTranslation \ +static_assert(alignof(Widget_SetRenderTranslation) == 0x000008, "Wrong alignment on Widget_SetRenderTranslation"); \ +static_assert(sizeof(Widget_SetRenderTranslation) == 0x000010, "Wrong size on Widget_SetRenderTranslation"); \ +static_assert(offsetof(Widget_SetRenderTranslation, Translation) == 0x000000, "Member 'Widget_SetRenderTranslation::Translation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetToolTip \ +static_assert(alignof(Widget_SetToolTip) == 0x000008, "Wrong alignment on Widget_SetToolTip"); \ +static_assert(sizeof(Widget_SetToolTip) == 0x000008, "Wrong size on Widget_SetToolTip"); \ +static_assert(offsetof(Widget_SetToolTip, Widget) == 0x000000, "Member 'Widget_SetToolTip::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetToolTipText \ +static_assert(alignof(Widget_SetToolTipText) == 0x000008, "Wrong alignment on Widget_SetToolTipText"); \ +static_assert(sizeof(Widget_SetToolTipText) == 0x000018, "Wrong size on Widget_SetToolTipText"); \ +static_assert(offsetof(Widget_SetToolTipText, InToolTipText) == 0x000000, "Member 'Widget_SetToolTipText::InToolTipText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetUserFocus \ +static_assert(alignof(Widget_SetUserFocus) == 0x000008, "Wrong alignment on Widget_SetUserFocus"); \ +static_assert(sizeof(Widget_SetUserFocus) == 0x000008, "Wrong size on Widget_SetUserFocus"); \ +static_assert(offsetof(Widget_SetUserFocus, PlayerController) == 0x000000, "Member 'Widget_SetUserFocus::PlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_SetVisibility \ +static_assert(alignof(Widget_SetVisibility) == 0x000001, "Wrong alignment on Widget_SetVisibility"); \ +static_assert(sizeof(Widget_SetVisibility) == 0x000001, "Wrong size on Widget_SetVisibility"); \ +static_assert(offsetof(Widget_SetVisibility, InVisibility) == 0x000000, "Member 'Widget_SetVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetAccessibleSummaryText \ +static_assert(alignof(Widget_GetAccessibleSummaryText) == 0x000008, "Wrong alignment on Widget_GetAccessibleSummaryText"); \ +static_assert(sizeof(Widget_GetAccessibleSummaryText) == 0x000018, "Wrong size on Widget_GetAccessibleSummaryText"); \ +static_assert(offsetof(Widget_GetAccessibleSummaryText, ReturnValue) == 0x000000, "Member 'Widget_GetAccessibleSummaryText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetAccessibleText \ +static_assert(alignof(Widget_GetAccessibleText) == 0x000008, "Wrong alignment on Widget_GetAccessibleText"); \ +static_assert(sizeof(Widget_GetAccessibleText) == 0x000018, "Wrong size on Widget_GetAccessibleText"); \ +static_assert(offsetof(Widget_GetAccessibleText, ReturnValue) == 0x000000, "Member 'Widget_GetAccessibleText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetCachedGeometry \ +static_assert(alignof(Widget_GetCachedGeometry) == 0x000004, "Wrong alignment on Widget_GetCachedGeometry"); \ +static_assert(sizeof(Widget_GetCachedGeometry) == 0x000038, "Wrong size on Widget_GetCachedGeometry"); \ +static_assert(offsetof(Widget_GetCachedGeometry, ReturnValue) == 0x000000, "Member 'Widget_GetCachedGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetClipping \ +static_assert(alignof(Widget_GetClipping) == 0x000001, "Wrong alignment on Widget_GetClipping"); \ +static_assert(sizeof(Widget_GetClipping) == 0x000001, "Wrong size on Widget_GetClipping"); \ +static_assert(offsetof(Widget_GetClipping, ReturnValue) == 0x000000, "Member 'Widget_GetClipping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetDesiredSize \ +static_assert(alignof(Widget_GetDesiredSize) == 0x000008, "Wrong alignment on Widget_GetDesiredSize"); \ +static_assert(sizeof(Widget_GetDesiredSize) == 0x000010, "Wrong size on Widget_GetDesiredSize"); \ +static_assert(offsetof(Widget_GetDesiredSize, ReturnValue) == 0x000000, "Member 'Widget_GetDesiredSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetGameInstance \ +static_assert(alignof(Widget_GetGameInstance) == 0x000008, "Wrong alignment on Widget_GetGameInstance"); \ +static_assert(sizeof(Widget_GetGameInstance) == 0x000008, "Wrong size on Widget_GetGameInstance"); \ +static_assert(offsetof(Widget_GetGameInstance, ReturnValue) == 0x000000, "Member 'Widget_GetGameInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetIsEnabled \ +static_assert(alignof(Widget_GetIsEnabled) == 0x000001, "Wrong alignment on Widget_GetIsEnabled"); \ +static_assert(sizeof(Widget_GetIsEnabled) == 0x000001, "Wrong size on Widget_GetIsEnabled"); \ +static_assert(offsetof(Widget_GetIsEnabled, ReturnValue) == 0x000000, "Member 'Widget_GetIsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetOwningLocalPlayer \ +static_assert(alignof(Widget_GetOwningLocalPlayer) == 0x000008, "Wrong alignment on Widget_GetOwningLocalPlayer"); \ +static_assert(sizeof(Widget_GetOwningLocalPlayer) == 0x000008, "Wrong size on Widget_GetOwningLocalPlayer"); \ +static_assert(offsetof(Widget_GetOwningLocalPlayer, ReturnValue) == 0x000000, "Member 'Widget_GetOwningLocalPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetOwningPlayer \ +static_assert(alignof(Widget_GetOwningPlayer) == 0x000008, "Wrong alignment on Widget_GetOwningPlayer"); \ +static_assert(sizeof(Widget_GetOwningPlayer) == 0x000008, "Wrong size on Widget_GetOwningPlayer"); \ +static_assert(offsetof(Widget_GetOwningPlayer, ReturnValue) == 0x000000, "Member 'Widget_GetOwningPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetPaintSpaceGeometry \ +static_assert(alignof(Widget_GetPaintSpaceGeometry) == 0x000004, "Wrong alignment on Widget_GetPaintSpaceGeometry"); \ +static_assert(sizeof(Widget_GetPaintSpaceGeometry) == 0x000038, "Wrong size on Widget_GetPaintSpaceGeometry"); \ +static_assert(offsetof(Widget_GetPaintSpaceGeometry, ReturnValue) == 0x000000, "Member 'Widget_GetPaintSpaceGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetParent \ +static_assert(alignof(Widget_GetParent) == 0x000008, "Wrong alignment on Widget_GetParent"); \ +static_assert(sizeof(Widget_GetParent) == 0x000008, "Wrong size on Widget_GetParent"); \ +static_assert(offsetof(Widget_GetParent, ReturnValue) == 0x000000, "Member 'Widget_GetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetRenderOpacity \ +static_assert(alignof(Widget_GetRenderOpacity) == 0x000004, "Wrong alignment on Widget_GetRenderOpacity"); \ +static_assert(sizeof(Widget_GetRenderOpacity) == 0x000004, "Wrong size on Widget_GetRenderOpacity"); \ +static_assert(offsetof(Widget_GetRenderOpacity, ReturnValue) == 0x000000, "Member 'Widget_GetRenderOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetRenderTransformAngle \ +static_assert(alignof(Widget_GetRenderTransformAngle) == 0x000004, "Wrong alignment on Widget_GetRenderTransformAngle"); \ +static_assert(sizeof(Widget_GetRenderTransformAngle) == 0x000004, "Wrong size on Widget_GetRenderTransformAngle"); \ +static_assert(offsetof(Widget_GetRenderTransformAngle, ReturnValue) == 0x000000, "Member 'Widget_GetRenderTransformAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetTickSpaceGeometry \ +static_assert(alignof(Widget_GetTickSpaceGeometry) == 0x000004, "Wrong alignment on Widget_GetTickSpaceGeometry"); \ +static_assert(sizeof(Widget_GetTickSpaceGeometry) == 0x000038, "Wrong size on Widget_GetTickSpaceGeometry"); \ +static_assert(offsetof(Widget_GetTickSpaceGeometry, ReturnValue) == 0x000000, "Member 'Widget_GetTickSpaceGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_GetVisibility \ +static_assert(alignof(Widget_GetVisibility) == 0x000001, "Wrong alignment on Widget_GetVisibility"); \ +static_assert(sizeof(Widget_GetVisibility) == 0x000001, "Wrong size on Widget_GetVisibility"); \ +static_assert(offsetof(Widget_GetVisibility, ReturnValue) == 0x000000, "Member 'Widget_GetVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasAnyUserFocus \ +static_assert(alignof(Widget_HasAnyUserFocus) == 0x000001, "Wrong alignment on Widget_HasAnyUserFocus"); \ +static_assert(sizeof(Widget_HasAnyUserFocus) == 0x000001, "Wrong size on Widget_HasAnyUserFocus"); \ +static_assert(offsetof(Widget_HasAnyUserFocus, ReturnValue) == 0x000000, "Member 'Widget_HasAnyUserFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasFocusedDescendants \ +static_assert(alignof(Widget_HasFocusedDescendants) == 0x000001, "Wrong alignment on Widget_HasFocusedDescendants"); \ +static_assert(sizeof(Widget_HasFocusedDescendants) == 0x000001, "Wrong size on Widget_HasFocusedDescendants"); \ +static_assert(offsetof(Widget_HasFocusedDescendants, ReturnValue) == 0x000000, "Member 'Widget_HasFocusedDescendants::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasKeyboardFocus \ +static_assert(alignof(Widget_HasKeyboardFocus) == 0x000001, "Wrong alignment on Widget_HasKeyboardFocus"); \ +static_assert(sizeof(Widget_HasKeyboardFocus) == 0x000001, "Wrong size on Widget_HasKeyboardFocus"); \ +static_assert(offsetof(Widget_HasKeyboardFocus, ReturnValue) == 0x000000, "Member 'Widget_HasKeyboardFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasMouseCapture \ +static_assert(alignof(Widget_HasMouseCapture) == 0x000001, "Wrong alignment on Widget_HasMouseCapture"); \ +static_assert(sizeof(Widget_HasMouseCapture) == 0x000001, "Wrong size on Widget_HasMouseCapture"); \ +static_assert(offsetof(Widget_HasMouseCapture, ReturnValue) == 0x000000, "Member 'Widget_HasMouseCapture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasMouseCaptureByUser \ +static_assert(alignof(Widget_HasMouseCaptureByUser) == 0x000004, "Wrong alignment on Widget_HasMouseCaptureByUser"); \ +static_assert(sizeof(Widget_HasMouseCaptureByUser) == 0x00000C, "Wrong size on Widget_HasMouseCaptureByUser"); \ +static_assert(offsetof(Widget_HasMouseCaptureByUser, UserIndex) == 0x000000, "Member 'Widget_HasMouseCaptureByUser::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(Widget_HasMouseCaptureByUser, PointerIndex) == 0x000004, "Member 'Widget_HasMouseCaptureByUser::PointerIndex' has a wrong offset!"); \ +static_assert(offsetof(Widget_HasMouseCaptureByUser, ReturnValue) == 0x000008, "Member 'Widget_HasMouseCaptureByUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasUserFocus \ +static_assert(alignof(Widget_HasUserFocus) == 0x000008, "Wrong alignment on Widget_HasUserFocus"); \ +static_assert(sizeof(Widget_HasUserFocus) == 0x000010, "Wrong size on Widget_HasUserFocus"); \ +static_assert(offsetof(Widget_HasUserFocus, PlayerController) == 0x000000, "Member 'Widget_HasUserFocus::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(Widget_HasUserFocus, ReturnValue) == 0x000008, "Member 'Widget_HasUserFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_HasUserFocusedDescendants \ +static_assert(alignof(Widget_HasUserFocusedDescendants) == 0x000008, "Wrong alignment on Widget_HasUserFocusedDescendants"); \ +static_assert(sizeof(Widget_HasUserFocusedDescendants) == 0x000010, "Wrong size on Widget_HasUserFocusedDescendants"); \ +static_assert(offsetof(Widget_HasUserFocusedDescendants, PlayerController) == 0x000000, "Member 'Widget_HasUserFocusedDescendants::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(Widget_HasUserFocusedDescendants, ReturnValue) == 0x000008, "Member 'Widget_HasUserFocusedDescendants::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_IsHovered \ +static_assert(alignof(Widget_IsHovered) == 0x000001, "Wrong alignment on Widget_IsHovered"); \ +static_assert(sizeof(Widget_IsHovered) == 0x000001, "Wrong size on Widget_IsHovered"); \ +static_assert(offsetof(Widget_IsHovered, ReturnValue) == 0x000000, "Member 'Widget_IsHovered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_IsInViewport \ +static_assert(alignof(Widget_IsInViewport) == 0x000001, "Wrong alignment on Widget_IsInViewport"); \ +static_assert(sizeof(Widget_IsInViewport) == 0x000001, "Wrong size on Widget_IsInViewport"); \ +static_assert(offsetof(Widget_IsInViewport, ReturnValue) == 0x000000, "Member 'Widget_IsInViewport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_IsRendered \ +static_assert(alignof(Widget_IsRendered) == 0x000001, "Wrong alignment on Widget_IsRendered"); \ +static_assert(sizeof(Widget_IsRendered) == 0x000001, "Wrong size on Widget_IsRendered"); \ +static_assert(offsetof(Widget_IsRendered, ReturnValue) == 0x000000, "Member 'Widget_IsRendered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Widget_IsVisible \ +static_assert(alignof(Widget_IsVisible) == 0x000001, "Wrong alignment on Widget_IsVisible"); \ +static_assert(sizeof(Widget_IsVisible) == 0x000001, "Wrong size on Widget_IsVisible"); \ +static_assert(offsetof(Widget_IsVisible, ReturnValue) == 0x000000, "Member 'Widget_IsVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidget \ +static_assert(alignof(UWidget) == 0x000008, "Wrong alignment on UWidget"); \ +static_assert(sizeof(UWidget) == 0x000180, "Wrong size on UWidget"); \ +static_assert(offsetof(UWidget, Slot) == 0x000030, "Member 'UWidget::Slot' has a wrong offset!"); \ +static_assert(offsetof(UWidget, bIsEnabledDelegate) == 0x000038, "Member 'UWidget::bIsEnabledDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWidget, ToolTipText) == 0x000048, "Member 'UWidget::ToolTipText' has a wrong offset!"); \ +static_assert(offsetof(UWidget, ToolTipTextDelegate) == 0x000060, "Member 'UWidget::ToolTipTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWidget, ToolTipWidget) == 0x000070, "Member 'UWidget::ToolTipWidget' has a wrong offset!"); \ +static_assert(offsetof(UWidget, ToolTipWidgetDelegate) == 0x000078, "Member 'UWidget::ToolTipWidgetDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWidget, VisibilityDelegate) == 0x000088, "Member 'UWidget::VisibilityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWidget, RenderTransform) == 0x000098, "Member 'UWidget::RenderTransform' has a wrong offset!"); \ +static_assert(offsetof(UWidget, RenderTransformPivot) == 0x0000D0, "Member 'UWidget::RenderTransformPivot' has a wrong offset!"); \ +static_assert(offsetof(UWidget, FlowDirectionPreference) == 0x0000E0, "Member 'UWidget::FlowDirectionPreference' has a wrong offset!"); \ +static_assert(offsetof(UWidget, Cursor) == 0x0000E2, "Member 'UWidget::Cursor' has a wrong offset!"); \ +static_assert(offsetof(UWidget, Clipping) == 0x0000E3, "Member 'UWidget::Clipping' has a wrong offset!"); \ +static_assert(offsetof(UWidget, Visibility) == 0x0000E4, "Member 'UWidget::Visibility' has a wrong offset!"); \ +static_assert(offsetof(UWidget, RenderOpacity) == 0x0000E8, "Member 'UWidget::RenderOpacity' has a wrong offset!"); \ +static_assert(offsetof(UWidget, PixelSnapping) == 0x0000EC, "Member 'UWidget::PixelSnapping' has a wrong offset!"); \ +static_assert(offsetof(UWidget, AccessibleWidgetData) == 0x0000F0, "Member 'UWidget::AccessibleWidgetData' has a wrong offset!"); \ +static_assert(offsetof(UWidget, Navigation) == 0x0000F8, "Member 'UWidget::Navigation' has a wrong offset!"); \ +static_assert(offsetof(UWidget, NativeBindings) == 0x000150, "Member 'UWidget::NativeBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_AddExtension \ +static_assert(alignof(UserWidget_AddExtension) == 0x000008, "Wrong alignment on UserWidget_AddExtension"); \ +static_assert(sizeof(UserWidget_AddExtension) == 0x000010, "Wrong size on UserWidget_AddExtension"); \ +static_assert(offsetof(UserWidget_AddExtension, InExtensionType) == 0x000000, "Member 'UserWidget_AddExtension::InExtensionType' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_AddExtension, ReturnValue) == 0x000008, "Member 'UserWidget_AddExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_AddToPlayerScreen \ +static_assert(alignof(UserWidget_AddToPlayerScreen) == 0x000004, "Wrong alignment on UserWidget_AddToPlayerScreen"); \ +static_assert(sizeof(UserWidget_AddToPlayerScreen) == 0x000008, "Wrong size on UserWidget_AddToPlayerScreen"); \ +static_assert(offsetof(UserWidget_AddToPlayerScreen, ZOrder) == 0x000000, "Member 'UserWidget_AddToPlayerScreen::ZOrder' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_AddToPlayerScreen, ReturnValue) == 0x000004, "Member 'UserWidget_AddToPlayerScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_AddToViewport \ +static_assert(alignof(UserWidget_AddToViewport) == 0x000004, "Wrong alignment on UserWidget_AddToViewport"); \ +static_assert(sizeof(UserWidget_AddToViewport) == 0x000004, "Wrong size on UserWidget_AddToViewport"); \ +static_assert(offsetof(UserWidget_AddToViewport, ZOrder) == 0x000000, "Member 'UserWidget_AddToViewport::ZOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_BindToAnimationEvent \ +static_assert(alignof(UserWidget_BindToAnimationEvent) == 0x000008, "Wrong alignment on UserWidget_BindToAnimationEvent"); \ +static_assert(sizeof(UserWidget_BindToAnimationEvent) == 0x000028, "Wrong size on UserWidget_BindToAnimationEvent"); \ +static_assert(offsetof(UserWidget_BindToAnimationEvent, Animation) == 0x000000, "Member 'UserWidget_BindToAnimationEvent::Animation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_BindToAnimationEvent, Delegate) == 0x000008, "Member 'UserWidget_BindToAnimationEvent::Delegate' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_BindToAnimationEvent, AnimationEvent) == 0x000018, "Member 'UserWidget_BindToAnimationEvent::AnimationEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_BindToAnimationEvent, UserTag) == 0x00001C, "Member 'UserWidget_BindToAnimationEvent::UserTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_BindToAnimationFinished \ +static_assert(alignof(UserWidget_BindToAnimationFinished) == 0x000008, "Wrong alignment on UserWidget_BindToAnimationFinished"); \ +static_assert(sizeof(UserWidget_BindToAnimationFinished) == 0x000018, "Wrong size on UserWidget_BindToAnimationFinished"); \ +static_assert(offsetof(UserWidget_BindToAnimationFinished, Animation) == 0x000000, "Member 'UserWidget_BindToAnimationFinished::Animation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_BindToAnimationFinished, Delegate) == 0x000008, "Member 'UserWidget_BindToAnimationFinished::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_BindToAnimationStarted \ +static_assert(alignof(UserWidget_BindToAnimationStarted) == 0x000008, "Wrong alignment on UserWidget_BindToAnimationStarted"); \ +static_assert(sizeof(UserWidget_BindToAnimationStarted) == 0x000018, "Wrong size on UserWidget_BindToAnimationStarted"); \ +static_assert(offsetof(UserWidget_BindToAnimationStarted, Animation) == 0x000000, "Member 'UserWidget_BindToAnimationStarted::Animation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_BindToAnimationStarted, Delegate) == 0x000008, "Member 'UserWidget_BindToAnimationStarted::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsAnimationPlayingForward \ +static_assert(alignof(UserWidget_IsAnimationPlayingForward) == 0x000008, "Wrong alignment on UserWidget_IsAnimationPlayingForward"); \ +static_assert(sizeof(UserWidget_IsAnimationPlayingForward) == 0x000010, "Wrong size on UserWidget_IsAnimationPlayingForward"); \ +static_assert(offsetof(UserWidget_IsAnimationPlayingForward, InAnimation) == 0x000000, "Member 'UserWidget_IsAnimationPlayingForward::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_IsAnimationPlayingForward, ReturnValue) == 0x000008, "Member 'UserWidget_IsAnimationPlayingForward::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_ListenForInputAction \ +static_assert(alignof(UserWidget_ListenForInputAction) == 0x000004, "Wrong alignment on UserWidget_ListenForInputAction"); \ +static_assert(sizeof(UserWidget_ListenForInputAction) == 0x00001C, "Wrong size on UserWidget_ListenForInputAction"); \ +static_assert(offsetof(UserWidget_ListenForInputAction, ActionName) == 0x000000, "Member 'UserWidget_ListenForInputAction::ActionName' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_ListenForInputAction, EventType) == 0x000008, "Member 'UserWidget_ListenForInputAction::EventType' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_ListenForInputAction, bConsume) == 0x000009, "Member 'UserWidget_ListenForInputAction::bConsume' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_ListenForInputAction, Callback) == 0x00000C, "Member 'UserWidget_ListenForInputAction::Callback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnAddedToFocusPath \ +static_assert(alignof(UserWidget_OnAddedToFocusPath) == 0x000004, "Wrong alignment on UserWidget_OnAddedToFocusPath"); \ +static_assert(sizeof(UserWidget_OnAddedToFocusPath) == 0x000008, "Wrong size on UserWidget_OnAddedToFocusPath"); \ +static_assert(offsetof(UserWidget_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'UserWidget_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnAnalogValueChanged \ +static_assert(alignof(UserWidget_OnAnalogValueChanged) == 0x000008, "Wrong alignment on UserWidget_OnAnalogValueChanged"); \ +static_assert(sizeof(UserWidget_OnAnalogValueChanged) == 0x000138, "Wrong size on UserWidget_OnAnalogValueChanged"); \ +static_assert(offsetof(UserWidget_OnAnalogValueChanged, MyGeometry) == 0x000000, "Member 'UserWidget_OnAnalogValueChanged::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnAnalogValueChanged, InAnalogInputEvent) == 0x000038, "Member 'UserWidget_OnAnalogValueChanged::InAnalogInputEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnAnalogValueChanged, ReturnValue) == 0x000080, "Member 'UserWidget_OnAnalogValueChanged::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnAnimationFinished \ +static_assert(alignof(UserWidget_OnAnimationFinished) == 0x000008, "Wrong alignment on UserWidget_OnAnimationFinished"); \ +static_assert(sizeof(UserWidget_OnAnimationFinished) == 0x000008, "Wrong size on UserWidget_OnAnimationFinished"); \ +static_assert(offsetof(UserWidget_OnAnimationFinished, Animation) == 0x000000, "Member 'UserWidget_OnAnimationFinished::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnAnimationStarted \ +static_assert(alignof(UserWidget_OnAnimationStarted) == 0x000008, "Wrong alignment on UserWidget_OnAnimationStarted"); \ +static_assert(sizeof(UserWidget_OnAnimationStarted) == 0x000008, "Wrong size on UserWidget_OnAnimationStarted"); \ +static_assert(offsetof(UserWidget_OnAnimationStarted, Animation) == 0x000000, "Member 'UserWidget_OnAnimationStarted::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDragCancelled \ +static_assert(alignof(UserWidget_OnDragCancelled) == 0x000008, "Wrong alignment on UserWidget_OnDragCancelled"); \ +static_assert(sizeof(UserWidget_OnDragCancelled) == 0x000080, "Wrong size on UserWidget_OnDragCancelled"); \ +static_assert(offsetof(UserWidget_OnDragCancelled, PointerEvent) == 0x000000, "Member 'UserWidget_OnDragCancelled::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragCancelled, Operation) == 0x000078, "Member 'UserWidget_OnDragCancelled::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDragDetected \ +static_assert(alignof(UserWidget_OnDragDetected) == 0x000008, "Wrong alignment on UserWidget_OnDragDetected"); \ +static_assert(sizeof(UserWidget_OnDragDetected) == 0x0000B8, "Wrong size on UserWidget_OnDragDetected"); \ +static_assert(offsetof(UserWidget_OnDragDetected, MyGeometry) == 0x000000, "Member 'UserWidget_OnDragDetected::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragDetected, PointerEvent) == 0x000038, "Member 'UserWidget_OnDragDetected::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragDetected, Operation) == 0x0000B0, "Member 'UserWidget_OnDragDetected::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDragEnter \ +static_assert(alignof(UserWidget_OnDragEnter) == 0x000008, "Wrong alignment on UserWidget_OnDragEnter"); \ +static_assert(sizeof(UserWidget_OnDragEnter) == 0x0000B8, "Wrong size on UserWidget_OnDragEnter"); \ +static_assert(offsetof(UserWidget_OnDragEnter, MyGeometry) == 0x000000, "Member 'UserWidget_OnDragEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragEnter, PointerEvent) == 0x000038, "Member 'UserWidget_OnDragEnter::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragEnter, Operation) == 0x0000B0, "Member 'UserWidget_OnDragEnter::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDragLeave \ +static_assert(alignof(UserWidget_OnDragLeave) == 0x000008, "Wrong alignment on UserWidget_OnDragLeave"); \ +static_assert(sizeof(UserWidget_OnDragLeave) == 0x000080, "Wrong size on UserWidget_OnDragLeave"); \ +static_assert(offsetof(UserWidget_OnDragLeave, PointerEvent) == 0x000000, "Member 'UserWidget_OnDragLeave::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragLeave, Operation) == 0x000078, "Member 'UserWidget_OnDragLeave::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDragOver \ +static_assert(alignof(UserWidget_OnDragOver) == 0x000008, "Wrong alignment on UserWidget_OnDragOver"); \ +static_assert(sizeof(UserWidget_OnDragOver) == 0x0000C0, "Wrong size on UserWidget_OnDragOver"); \ +static_assert(offsetof(UserWidget_OnDragOver, MyGeometry) == 0x000000, "Member 'UserWidget_OnDragOver::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragOver, PointerEvent) == 0x000038, "Member 'UserWidget_OnDragOver::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragOver, Operation) == 0x0000B0, "Member 'UserWidget_OnDragOver::Operation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDragOver, ReturnValue) == 0x0000B8, "Member 'UserWidget_OnDragOver::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnDrop \ +static_assert(alignof(UserWidget_OnDrop) == 0x000008, "Wrong alignment on UserWidget_OnDrop"); \ +static_assert(sizeof(UserWidget_OnDrop) == 0x0000C0, "Wrong size on UserWidget_OnDrop"); \ +static_assert(offsetof(UserWidget_OnDrop, MyGeometry) == 0x000000, "Member 'UserWidget_OnDrop::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDrop, PointerEvent) == 0x000038, "Member 'UserWidget_OnDrop::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDrop, Operation) == 0x0000B0, "Member 'UserWidget_OnDrop::Operation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnDrop, ReturnValue) == 0x0000B8, "Member 'UserWidget_OnDrop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnFocusLost \ +static_assert(alignof(UserWidget_OnFocusLost) == 0x000004, "Wrong alignment on UserWidget_OnFocusLost"); \ +static_assert(sizeof(UserWidget_OnFocusLost) == 0x000008, "Wrong size on UserWidget_OnFocusLost"); \ +static_assert(offsetof(UserWidget_OnFocusLost, InFocusEvent) == 0x000000, "Member 'UserWidget_OnFocusLost::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnFocusReceived \ +static_assert(alignof(UserWidget_OnFocusReceived) == 0x000008, "Wrong alignment on UserWidget_OnFocusReceived"); \ +static_assert(sizeof(UserWidget_OnFocusReceived) == 0x0000F8, "Wrong size on UserWidget_OnFocusReceived"); \ +static_assert(offsetof(UserWidget_OnFocusReceived, MyGeometry) == 0x000000, "Member 'UserWidget_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'UserWidget_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnFocusReceived, ReturnValue) == 0x000040, "Member 'UserWidget_OnFocusReceived::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnKeyChar \ +static_assert(alignof(UserWidget_OnKeyChar) == 0x000008, "Wrong alignment on UserWidget_OnKeyChar"); \ +static_assert(sizeof(UserWidget_OnKeyChar) == 0x000118, "Wrong size on UserWidget_OnKeyChar"); \ +static_assert(offsetof(UserWidget_OnKeyChar, MyGeometry) == 0x000000, "Member 'UserWidget_OnKeyChar::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyChar, InCharacterEvent) == 0x000038, "Member 'UserWidget_OnKeyChar::InCharacterEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyChar, ReturnValue) == 0x000060, "Member 'UserWidget_OnKeyChar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnKeyDown \ +static_assert(alignof(UserWidget_OnKeyDown) == 0x000008, "Wrong alignment on UserWidget_OnKeyDown"); \ +static_assert(sizeof(UserWidget_OnKeyDown) == 0x000130, "Wrong size on UserWidget_OnKeyDown"); \ +static_assert(offsetof(UserWidget_OnKeyDown, MyGeometry) == 0x000000, "Member 'UserWidget_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyDown, InKeyEvent) == 0x000038, "Member 'UserWidget_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyDown, ReturnValue) == 0x000078, "Member 'UserWidget_OnKeyDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnKeyUp \ +static_assert(alignof(UserWidget_OnKeyUp) == 0x000008, "Wrong alignment on UserWidget_OnKeyUp"); \ +static_assert(sizeof(UserWidget_OnKeyUp) == 0x000130, "Wrong size on UserWidget_OnKeyUp"); \ +static_assert(offsetof(UserWidget_OnKeyUp, MyGeometry) == 0x000000, "Member 'UserWidget_OnKeyUp::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyUp, InKeyEvent) == 0x000038, "Member 'UserWidget_OnKeyUp::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnKeyUp, ReturnValue) == 0x000078, "Member 'UserWidget_OnKeyUp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMotionDetected \ +static_assert(alignof(UserWidget_OnMotionDetected) == 0x000008, "Wrong alignment on UserWidget_OnMotionDetected"); \ +static_assert(sizeof(UserWidget_OnMotionDetected) == 0x000170, "Wrong size on UserWidget_OnMotionDetected"); \ +static_assert(offsetof(UserWidget_OnMotionDetected, MyGeometry) == 0x000000, "Member 'UserWidget_OnMotionDetected::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMotionDetected, InMotionEvent) == 0x000038, "Member 'UserWidget_OnMotionDetected::InMotionEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMotionDetected, ReturnValue) == 0x0000B8, "Member 'UserWidget_OnMotionDetected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseButtonDoubleClick \ +static_assert(alignof(UserWidget_OnMouseButtonDoubleClick) == 0x000008, "Wrong alignment on UserWidget_OnMouseButtonDoubleClick"); \ +static_assert(sizeof(UserWidget_OnMouseButtonDoubleClick) == 0x000168, "Wrong size on UserWidget_OnMouseButtonDoubleClick"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDoubleClick, InMyGeometry) == 0x000000, "Member 'UserWidget_OnMouseButtonDoubleClick::InMyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDoubleClick, InMouseEvent) == 0x000038, "Member 'UserWidget_OnMouseButtonDoubleClick::InMouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDoubleClick, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnMouseButtonDoubleClick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseButtonDown \ +static_assert(alignof(UserWidget_OnMouseButtonDown) == 0x000008, "Wrong alignment on UserWidget_OnMouseButtonDown"); \ +static_assert(sizeof(UserWidget_OnMouseButtonDown) == 0x000168, "Wrong size on UserWidget_OnMouseButtonDown"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDown, MyGeometry) == 0x000000, "Member 'UserWidget_OnMouseButtonDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDown, MouseEvent) == 0x000038, "Member 'UserWidget_OnMouseButtonDown::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonDown, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnMouseButtonDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseButtonUp \ +static_assert(alignof(UserWidget_OnMouseButtonUp) == 0x000008, "Wrong alignment on UserWidget_OnMouseButtonUp"); \ +static_assert(sizeof(UserWidget_OnMouseButtonUp) == 0x000168, "Wrong size on UserWidget_OnMouseButtonUp"); \ +static_assert(offsetof(UserWidget_OnMouseButtonUp, MyGeometry) == 0x000000, "Member 'UserWidget_OnMouseButtonUp::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonUp, MouseEvent) == 0x000038, "Member 'UserWidget_OnMouseButtonUp::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseButtonUp, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnMouseButtonUp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseEnter \ +static_assert(alignof(UserWidget_OnMouseEnter) == 0x000008, "Wrong alignment on UserWidget_OnMouseEnter"); \ +static_assert(sizeof(UserWidget_OnMouseEnter) == 0x0000B0, "Wrong size on UserWidget_OnMouseEnter"); \ +static_assert(offsetof(UserWidget_OnMouseEnter, MyGeometry) == 0x000000, "Member 'UserWidget_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseEnter, MouseEvent) == 0x000038, "Member 'UserWidget_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseLeave \ +static_assert(alignof(UserWidget_OnMouseLeave) == 0x000008, "Wrong alignment on UserWidget_OnMouseLeave"); \ +static_assert(sizeof(UserWidget_OnMouseLeave) == 0x000078, "Wrong size on UserWidget_OnMouseLeave"); \ +static_assert(offsetof(UserWidget_OnMouseLeave, MouseEvent) == 0x000000, "Member 'UserWidget_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseMove \ +static_assert(alignof(UserWidget_OnMouseMove) == 0x000008, "Wrong alignment on UserWidget_OnMouseMove"); \ +static_assert(sizeof(UserWidget_OnMouseMove) == 0x000168, "Wrong size on UserWidget_OnMouseMove"); \ +static_assert(offsetof(UserWidget_OnMouseMove, MyGeometry) == 0x000000, "Member 'UserWidget_OnMouseMove::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseMove, MouseEvent) == 0x000038, "Member 'UserWidget_OnMouseMove::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseMove, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnMouseMove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnMouseWheel \ +static_assert(alignof(UserWidget_OnMouseWheel) == 0x000008, "Wrong alignment on UserWidget_OnMouseWheel"); \ +static_assert(sizeof(UserWidget_OnMouseWheel) == 0x000168, "Wrong size on UserWidget_OnMouseWheel"); \ +static_assert(offsetof(UserWidget_OnMouseWheel, MyGeometry) == 0x000000, "Member 'UserWidget_OnMouseWheel::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseWheel, MouseEvent) == 0x000038, "Member 'UserWidget_OnMouseWheel::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnMouseWheel, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnMouseWheel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnPreviewKeyDown \ +static_assert(alignof(UserWidget_OnPreviewKeyDown) == 0x000008, "Wrong alignment on UserWidget_OnPreviewKeyDown"); \ +static_assert(sizeof(UserWidget_OnPreviewKeyDown) == 0x000130, "Wrong size on UserWidget_OnPreviewKeyDown"); \ +static_assert(offsetof(UserWidget_OnPreviewKeyDown, MyGeometry) == 0x000000, "Member 'UserWidget_OnPreviewKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnPreviewKeyDown, InKeyEvent) == 0x000038, "Member 'UserWidget_OnPreviewKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnPreviewKeyDown, ReturnValue) == 0x000078, "Member 'UserWidget_OnPreviewKeyDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnPreviewMouseButtonDown \ +static_assert(alignof(UserWidget_OnPreviewMouseButtonDown) == 0x000008, "Wrong alignment on UserWidget_OnPreviewMouseButtonDown"); \ +static_assert(sizeof(UserWidget_OnPreviewMouseButtonDown) == 0x000168, "Wrong size on UserWidget_OnPreviewMouseButtonDown"); \ +static_assert(offsetof(UserWidget_OnPreviewMouseButtonDown, MyGeometry) == 0x000000, "Member 'UserWidget_OnPreviewMouseButtonDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnPreviewMouseButtonDown, MouseEvent) == 0x000038, "Member 'UserWidget_OnPreviewMouseButtonDown::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnPreviewMouseButtonDown, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnPreviewMouseButtonDown::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnRemovedFromFocusPath \ +static_assert(alignof(UserWidget_OnRemovedFromFocusPath) == 0x000004, "Wrong alignment on UserWidget_OnRemovedFromFocusPath"); \ +static_assert(sizeof(UserWidget_OnRemovedFromFocusPath) == 0x000008, "Wrong size on UserWidget_OnRemovedFromFocusPath"); \ +static_assert(offsetof(UserWidget_OnRemovedFromFocusPath, InFocusEvent) == 0x000000, "Member 'UserWidget_OnRemovedFromFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnTouchEnded \ +static_assert(alignof(UserWidget_OnTouchEnded) == 0x000008, "Wrong alignment on UserWidget_OnTouchEnded"); \ +static_assert(sizeof(UserWidget_OnTouchEnded) == 0x000168, "Wrong size on UserWidget_OnTouchEnded"); \ +static_assert(offsetof(UserWidget_OnTouchEnded, MyGeometry) == 0x000000, "Member 'UserWidget_OnTouchEnded::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchEnded, InTouchEvent) == 0x000038, "Member 'UserWidget_OnTouchEnded::InTouchEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchEnded, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnTouchEnded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnTouchForceChanged \ +static_assert(alignof(UserWidget_OnTouchForceChanged) == 0x000008, "Wrong alignment on UserWidget_OnTouchForceChanged"); \ +static_assert(sizeof(UserWidget_OnTouchForceChanged) == 0x000168, "Wrong size on UserWidget_OnTouchForceChanged"); \ +static_assert(offsetof(UserWidget_OnTouchForceChanged, MyGeometry) == 0x000000, "Member 'UserWidget_OnTouchForceChanged::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchForceChanged, InTouchEvent) == 0x000038, "Member 'UserWidget_OnTouchForceChanged::InTouchEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchForceChanged, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnTouchForceChanged::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnTouchGesture \ +static_assert(alignof(UserWidget_OnTouchGesture) == 0x000008, "Wrong alignment on UserWidget_OnTouchGesture"); \ +static_assert(sizeof(UserWidget_OnTouchGesture) == 0x000168, "Wrong size on UserWidget_OnTouchGesture"); \ +static_assert(offsetof(UserWidget_OnTouchGesture, MyGeometry) == 0x000000, "Member 'UserWidget_OnTouchGesture::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchGesture, GestureEvent) == 0x000038, "Member 'UserWidget_OnTouchGesture::GestureEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchGesture, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnTouchGesture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnTouchMoved \ +static_assert(alignof(UserWidget_OnTouchMoved) == 0x000008, "Wrong alignment on UserWidget_OnTouchMoved"); \ +static_assert(sizeof(UserWidget_OnTouchMoved) == 0x000168, "Wrong size on UserWidget_OnTouchMoved"); \ +static_assert(offsetof(UserWidget_OnTouchMoved, MyGeometry) == 0x000000, "Member 'UserWidget_OnTouchMoved::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchMoved, InTouchEvent) == 0x000038, "Member 'UserWidget_OnTouchMoved::InTouchEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchMoved, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnTouchMoved::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnTouchStarted \ +static_assert(alignof(UserWidget_OnTouchStarted) == 0x000008, "Wrong alignment on UserWidget_OnTouchStarted"); \ +static_assert(sizeof(UserWidget_OnTouchStarted) == 0x000168, "Wrong size on UserWidget_OnTouchStarted"); \ +static_assert(offsetof(UserWidget_OnTouchStarted, MyGeometry) == 0x000000, "Member 'UserWidget_OnTouchStarted::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchStarted, InTouchEvent) == 0x000038, "Member 'UserWidget_OnTouchStarted::InTouchEvent' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_OnTouchStarted, ReturnValue) == 0x0000B0, "Member 'UserWidget_OnTouchStarted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PauseAnimation \ +static_assert(alignof(UserWidget_PauseAnimation) == 0x000008, "Wrong alignment on UserWidget_PauseAnimation"); \ +static_assert(sizeof(UserWidget_PauseAnimation) == 0x000010, "Wrong size on UserWidget_PauseAnimation"); \ +static_assert(offsetof(UserWidget_PauseAnimation, InAnimation) == 0x000000, "Member 'UserWidget_PauseAnimation::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PauseAnimation, ReturnValue) == 0x000008, "Member 'UserWidget_PauseAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PlayAnimation \ +static_assert(alignof(UserWidget_PlayAnimation) == 0x000008, "Wrong alignment on UserWidget_PlayAnimation"); \ +static_assert(sizeof(UserWidget_PlayAnimation) == 0x000028, "Wrong size on UserWidget_PlayAnimation"); \ +static_assert(offsetof(UserWidget_PlayAnimation, InAnimation) == 0x000000, "Member 'UserWidget_PlayAnimation::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, StartAtTime) == 0x000008, "Member 'UserWidget_PlayAnimation::StartAtTime' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, NumLoopsToPlay) == 0x00000C, "Member 'UserWidget_PlayAnimation::NumLoopsToPlay' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, PlayMode) == 0x000010, "Member 'UserWidget_PlayAnimation::PlayMode' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, PlaybackSpeed) == 0x000014, "Member 'UserWidget_PlayAnimation::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, bRestoreState) == 0x000018, "Member 'UserWidget_PlayAnimation::bRestoreState' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimation, ReturnValue) == 0x000020, "Member 'UserWidget_PlayAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PlayAnimationForward \ +static_assert(alignof(UserWidget_PlayAnimationForward) == 0x000008, "Wrong alignment on UserWidget_PlayAnimationForward"); \ +static_assert(sizeof(UserWidget_PlayAnimationForward) == 0x000018, "Wrong size on UserWidget_PlayAnimationForward"); \ +static_assert(offsetof(UserWidget_PlayAnimationForward, InAnimation) == 0x000000, "Member 'UserWidget_PlayAnimationForward::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationForward, PlaybackSpeed) == 0x000008, "Member 'UserWidget_PlayAnimationForward::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationForward, bRestoreState) == 0x00000C, "Member 'UserWidget_PlayAnimationForward::bRestoreState' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationForward, ReturnValue) == 0x000010, "Member 'UserWidget_PlayAnimationForward::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PlayAnimationReverse \ +static_assert(alignof(UserWidget_PlayAnimationReverse) == 0x000008, "Wrong alignment on UserWidget_PlayAnimationReverse"); \ +static_assert(sizeof(UserWidget_PlayAnimationReverse) == 0x000018, "Wrong size on UserWidget_PlayAnimationReverse"); \ +static_assert(offsetof(UserWidget_PlayAnimationReverse, InAnimation) == 0x000000, "Member 'UserWidget_PlayAnimationReverse::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationReverse, PlaybackSpeed) == 0x000008, "Member 'UserWidget_PlayAnimationReverse::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationReverse, bRestoreState) == 0x00000C, "Member 'UserWidget_PlayAnimationReverse::bRestoreState' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationReverse, ReturnValue) == 0x000010, "Member 'UserWidget_PlayAnimationReverse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PlayAnimationTimeRange \ +static_assert(alignof(UserWidget_PlayAnimationTimeRange) == 0x000008, "Wrong alignment on UserWidget_PlayAnimationTimeRange"); \ +static_assert(sizeof(UserWidget_PlayAnimationTimeRange) == 0x000028, "Wrong size on UserWidget_PlayAnimationTimeRange"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, InAnimation) == 0x000000, "Member 'UserWidget_PlayAnimationTimeRange::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, StartAtTime) == 0x000008, "Member 'UserWidget_PlayAnimationTimeRange::StartAtTime' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, EndAtTime) == 0x00000C, "Member 'UserWidget_PlayAnimationTimeRange::EndAtTime' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, NumLoopsToPlay) == 0x000010, "Member 'UserWidget_PlayAnimationTimeRange::NumLoopsToPlay' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, PlayMode) == 0x000014, "Member 'UserWidget_PlayAnimationTimeRange::PlayMode' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, PlaybackSpeed) == 0x000018, "Member 'UserWidget_PlayAnimationTimeRange::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, bRestoreState) == 0x00001C, "Member 'UserWidget_PlayAnimationTimeRange::bRestoreState' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_PlayAnimationTimeRange, ReturnValue) == 0x000020, "Member 'UserWidget_PlayAnimationTimeRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PlaySound \ +static_assert(alignof(UserWidget_PlaySound) == 0x000008, "Wrong alignment on UserWidget_PlaySound"); \ +static_assert(sizeof(UserWidget_PlaySound) == 0x000008, "Wrong size on UserWidget_PlaySound"); \ +static_assert(offsetof(UserWidget_PlaySound, SoundToPlay) == 0x000000, "Member 'UserWidget_PlaySound::SoundToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_PreConstruct \ +static_assert(alignof(UserWidget_PreConstruct) == 0x000001, "Wrong alignment on UserWidget_PreConstruct"); \ +static_assert(sizeof(UserWidget_PreConstruct) == 0x000001, "Wrong size on UserWidget_PreConstruct"); \ +static_assert(offsetof(UserWidget_PreConstruct, IsDesignTime) == 0x000000, "Member 'UserWidget_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_RemoveExtension \ +static_assert(alignof(UserWidget_RemoveExtension) == 0x000008, "Wrong alignment on UserWidget_RemoveExtension"); \ +static_assert(sizeof(UserWidget_RemoveExtension) == 0x000008, "Wrong size on UserWidget_RemoveExtension"); \ +static_assert(offsetof(UserWidget_RemoveExtension, InExtension) == 0x000000, "Member 'UserWidget_RemoveExtension::InExtension' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_RemoveExtensions \ +static_assert(alignof(UserWidget_RemoveExtensions) == 0x000008, "Wrong alignment on UserWidget_RemoveExtensions"); \ +static_assert(sizeof(UserWidget_RemoveExtensions) == 0x000008, "Wrong size on UserWidget_RemoveExtensions"); \ +static_assert(offsetof(UserWidget_RemoveExtensions, InExtensionType) == 0x000000, "Member 'UserWidget_RemoveExtensions::InExtensionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_ReverseAnimation \ +static_assert(alignof(UserWidget_ReverseAnimation) == 0x000008, "Wrong alignment on UserWidget_ReverseAnimation"); \ +static_assert(sizeof(UserWidget_ReverseAnimation) == 0x000008, "Wrong size on UserWidget_ReverseAnimation"); \ +static_assert(offsetof(UserWidget_ReverseAnimation, InAnimation) == 0x000000, "Member 'UserWidget_ReverseAnimation::InAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetAlignmentInViewport \ +static_assert(alignof(UserWidget_SetAlignmentInViewport) == 0x000008, "Wrong alignment on UserWidget_SetAlignmentInViewport"); \ +static_assert(sizeof(UserWidget_SetAlignmentInViewport) == 0x000010, "Wrong size on UserWidget_SetAlignmentInViewport"); \ +static_assert(offsetof(UserWidget_SetAlignmentInViewport, Alignment) == 0x000000, "Member 'UserWidget_SetAlignmentInViewport::Alignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetAnchorsInViewport \ +static_assert(alignof(UserWidget_SetAnchorsInViewport) == 0x000008, "Wrong alignment on UserWidget_SetAnchorsInViewport"); \ +static_assert(sizeof(UserWidget_SetAnchorsInViewport) == 0x000020, "Wrong size on UserWidget_SetAnchorsInViewport"); \ +static_assert(offsetof(UserWidget_SetAnchorsInViewport, Anchors) == 0x000000, "Member 'UserWidget_SetAnchorsInViewport::Anchors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetAnimationCurrentTime \ +static_assert(alignof(UserWidget_SetAnimationCurrentTime) == 0x000008, "Wrong alignment on UserWidget_SetAnimationCurrentTime"); \ +static_assert(sizeof(UserWidget_SetAnimationCurrentTime) == 0x000010, "Wrong size on UserWidget_SetAnimationCurrentTime"); \ +static_assert(offsetof(UserWidget_SetAnimationCurrentTime, InAnimation) == 0x000000, "Member 'UserWidget_SetAnimationCurrentTime::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_SetAnimationCurrentTime, InTime) == 0x000008, "Member 'UserWidget_SetAnimationCurrentTime::InTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetColorAndOpacity \ +static_assert(alignof(UserWidget_SetColorAndOpacity) == 0x000004, "Wrong alignment on UserWidget_SetColorAndOpacity"); \ +static_assert(sizeof(UserWidget_SetColorAndOpacity) == 0x000010, "Wrong size on UserWidget_SetColorAndOpacity"); \ +static_assert(offsetof(UserWidget_SetColorAndOpacity, InColorAndOpacity) == 0x000000, "Member 'UserWidget_SetColorAndOpacity::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetDesiredSizeInViewport \ +static_assert(alignof(UserWidget_SetDesiredSizeInViewport) == 0x000008, "Wrong alignment on UserWidget_SetDesiredSizeInViewport"); \ +static_assert(sizeof(UserWidget_SetDesiredSizeInViewport) == 0x000010, "Wrong size on UserWidget_SetDesiredSizeInViewport"); \ +static_assert(offsetof(UserWidget_SetDesiredSizeInViewport, Size) == 0x000000, "Member 'UserWidget_SetDesiredSizeInViewport::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetForegroundColor \ +static_assert(alignof(UserWidget_SetForegroundColor) == 0x000004, "Wrong alignment on UserWidget_SetForegroundColor"); \ +static_assert(sizeof(UserWidget_SetForegroundColor) == 0x000014, "Wrong size on UserWidget_SetForegroundColor"); \ +static_assert(offsetof(UserWidget_SetForegroundColor, InForegroundColor) == 0x000000, "Member 'UserWidget_SetForegroundColor::InForegroundColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetInputActionBlocking \ +static_assert(alignof(UserWidget_SetInputActionBlocking) == 0x000001, "Wrong alignment on UserWidget_SetInputActionBlocking"); \ +static_assert(sizeof(UserWidget_SetInputActionBlocking) == 0x000001, "Wrong size on UserWidget_SetInputActionBlocking"); \ +static_assert(offsetof(UserWidget_SetInputActionBlocking, bShouldBlock) == 0x000000, "Member 'UserWidget_SetInputActionBlocking::bShouldBlock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetInputActionPriority \ +static_assert(alignof(UserWidget_SetInputActionPriority) == 0x000004, "Wrong alignment on UserWidget_SetInputActionPriority"); \ +static_assert(sizeof(UserWidget_SetInputActionPriority) == 0x000004, "Wrong size on UserWidget_SetInputActionPriority"); \ +static_assert(offsetof(UserWidget_SetInputActionPriority, NewPriority) == 0x000000, "Member 'UserWidget_SetInputActionPriority::NewPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetNumLoopsToPlay \ +static_assert(alignof(UserWidget_SetNumLoopsToPlay) == 0x000008, "Wrong alignment on UserWidget_SetNumLoopsToPlay"); \ +static_assert(sizeof(UserWidget_SetNumLoopsToPlay) == 0x000010, "Wrong size on UserWidget_SetNumLoopsToPlay"); \ +static_assert(offsetof(UserWidget_SetNumLoopsToPlay, InAnimation) == 0x000000, "Member 'UserWidget_SetNumLoopsToPlay::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_SetNumLoopsToPlay, NumLoopsToPlay) == 0x000008, "Member 'UserWidget_SetNumLoopsToPlay::NumLoopsToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetOwningPlayer \ +static_assert(alignof(UserWidget_SetOwningPlayer) == 0x000008, "Wrong alignment on UserWidget_SetOwningPlayer"); \ +static_assert(sizeof(UserWidget_SetOwningPlayer) == 0x000008, "Wrong size on UserWidget_SetOwningPlayer"); \ +static_assert(offsetof(UserWidget_SetOwningPlayer, LocalPlayerController) == 0x000000, "Member 'UserWidget_SetOwningPlayer::LocalPlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetPadding \ +static_assert(alignof(UserWidget_SetPadding) == 0x000004, "Wrong alignment on UserWidget_SetPadding"); \ +static_assert(sizeof(UserWidget_SetPadding) == 0x000010, "Wrong size on UserWidget_SetPadding"); \ +static_assert(offsetof(UserWidget_SetPadding, InPadding) == 0x000000, "Member 'UserWidget_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetPlaybackSpeed \ +static_assert(alignof(UserWidget_SetPlaybackSpeed) == 0x000008, "Wrong alignment on UserWidget_SetPlaybackSpeed"); \ +static_assert(sizeof(UserWidget_SetPlaybackSpeed) == 0x000010, "Wrong size on UserWidget_SetPlaybackSpeed"); \ +static_assert(offsetof(UserWidget_SetPlaybackSpeed, InAnimation) == 0x000000, "Member 'UserWidget_SetPlaybackSpeed::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_SetPlaybackSpeed, PlaybackSpeed) == 0x000008, "Member 'UserWidget_SetPlaybackSpeed::PlaybackSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_SetPositionInViewport \ +static_assert(alignof(UserWidget_SetPositionInViewport) == 0x000008, "Wrong alignment on UserWidget_SetPositionInViewport"); \ +static_assert(sizeof(UserWidget_SetPositionInViewport) == 0x000018, "Wrong size on UserWidget_SetPositionInViewport"); \ +static_assert(offsetof(UserWidget_SetPositionInViewport, Position) == 0x000000, "Member 'UserWidget_SetPositionInViewport::Position' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_SetPositionInViewport, bRemoveDPIScale) == 0x000010, "Member 'UserWidget_SetPositionInViewport::bRemoveDPIScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_StopAnimation \ +static_assert(alignof(UserWidget_StopAnimation) == 0x000008, "Wrong alignment on UserWidget_StopAnimation"); \ +static_assert(sizeof(UserWidget_StopAnimation) == 0x000008, "Wrong size on UserWidget_StopAnimation"); \ +static_assert(offsetof(UserWidget_StopAnimation, InAnimation) == 0x000000, "Member 'UserWidget_StopAnimation::InAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_StopListeningForInputAction \ +static_assert(alignof(UserWidget_StopListeningForInputAction) == 0x000004, "Wrong alignment on UserWidget_StopListeningForInputAction"); \ +static_assert(sizeof(UserWidget_StopListeningForInputAction) == 0x00000C, "Wrong size on UserWidget_StopListeningForInputAction"); \ +static_assert(offsetof(UserWidget_StopListeningForInputAction, ActionName) == 0x000000, "Member 'UserWidget_StopListeningForInputAction::ActionName' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_StopListeningForInputAction, EventType) == 0x000008, "Member 'UserWidget_StopListeningForInputAction::EventType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_Tick \ +static_assert(alignof(UserWidget_Tick) == 0x000004, "Wrong alignment on UserWidget_Tick"); \ +static_assert(sizeof(UserWidget_Tick) == 0x00003C, "Wrong size on UserWidget_Tick"); \ +static_assert(offsetof(UserWidget_Tick, MyGeometry) == 0x000000, "Member 'UserWidget_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_Tick, InDeltaTime) == 0x000038, "Member 'UserWidget_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_UnbindAllFromAnimationFinished \ +static_assert(alignof(UserWidget_UnbindAllFromAnimationFinished) == 0x000008, "Wrong alignment on UserWidget_UnbindAllFromAnimationFinished"); \ +static_assert(sizeof(UserWidget_UnbindAllFromAnimationFinished) == 0x000008, "Wrong size on UserWidget_UnbindAllFromAnimationFinished"); \ +static_assert(offsetof(UserWidget_UnbindAllFromAnimationFinished, Animation) == 0x000000, "Member 'UserWidget_UnbindAllFromAnimationFinished::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_UnbindAllFromAnimationStarted \ +static_assert(alignof(UserWidget_UnbindAllFromAnimationStarted) == 0x000008, "Wrong alignment on UserWidget_UnbindAllFromAnimationStarted"); \ +static_assert(sizeof(UserWidget_UnbindAllFromAnimationStarted) == 0x000008, "Wrong size on UserWidget_UnbindAllFromAnimationStarted"); \ +static_assert(offsetof(UserWidget_UnbindAllFromAnimationStarted, Animation) == 0x000000, "Member 'UserWidget_UnbindAllFromAnimationStarted::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_UnbindFromAnimationFinished \ +static_assert(alignof(UserWidget_UnbindFromAnimationFinished) == 0x000008, "Wrong alignment on UserWidget_UnbindFromAnimationFinished"); \ +static_assert(sizeof(UserWidget_UnbindFromAnimationFinished) == 0x000018, "Wrong size on UserWidget_UnbindFromAnimationFinished"); \ +static_assert(offsetof(UserWidget_UnbindFromAnimationFinished, Animation) == 0x000000, "Member 'UserWidget_UnbindFromAnimationFinished::Animation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_UnbindFromAnimationFinished, Delegate) == 0x000008, "Member 'UserWidget_UnbindFromAnimationFinished::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_UnbindFromAnimationStarted \ +static_assert(alignof(UserWidget_UnbindFromAnimationStarted) == 0x000008, "Wrong alignment on UserWidget_UnbindFromAnimationStarted"); \ +static_assert(sizeof(UserWidget_UnbindFromAnimationStarted) == 0x000018, "Wrong size on UserWidget_UnbindFromAnimationStarted"); \ +static_assert(offsetof(UserWidget_UnbindFromAnimationStarted, Animation) == 0x000000, "Member 'UserWidget_UnbindFromAnimationStarted::Animation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_UnbindFromAnimationStarted, Delegate) == 0x000008, "Member 'UserWidget_UnbindFromAnimationStarted::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetAlignmentInViewport \ +static_assert(alignof(UserWidget_GetAlignmentInViewport) == 0x000008, "Wrong alignment on UserWidget_GetAlignmentInViewport"); \ +static_assert(sizeof(UserWidget_GetAlignmentInViewport) == 0x000010, "Wrong size on UserWidget_GetAlignmentInViewport"); \ +static_assert(offsetof(UserWidget_GetAlignmentInViewport, ReturnValue) == 0x000000, "Member 'UserWidget_GetAlignmentInViewport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetAnchorsInViewport \ +static_assert(alignof(UserWidget_GetAnchorsInViewport) == 0x000008, "Wrong alignment on UserWidget_GetAnchorsInViewport"); \ +static_assert(sizeof(UserWidget_GetAnchorsInViewport) == 0x000020, "Wrong size on UserWidget_GetAnchorsInViewport"); \ +static_assert(offsetof(UserWidget_GetAnchorsInViewport, ReturnValue) == 0x000000, "Member 'UserWidget_GetAnchorsInViewport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetAnimationCurrentTime \ +static_assert(alignof(UserWidget_GetAnimationCurrentTime) == 0x000008, "Wrong alignment on UserWidget_GetAnimationCurrentTime"); \ +static_assert(sizeof(UserWidget_GetAnimationCurrentTime) == 0x000010, "Wrong size on UserWidget_GetAnimationCurrentTime"); \ +static_assert(offsetof(UserWidget_GetAnimationCurrentTime, InAnimation) == 0x000000, "Member 'UserWidget_GetAnimationCurrentTime::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_GetAnimationCurrentTime, ReturnValue) == 0x000008, "Member 'UserWidget_GetAnimationCurrentTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetExtension \ +static_assert(alignof(UserWidget_GetExtension) == 0x000008, "Wrong alignment on UserWidget_GetExtension"); \ +static_assert(sizeof(UserWidget_GetExtension) == 0x000010, "Wrong size on UserWidget_GetExtension"); \ +static_assert(offsetof(UserWidget_GetExtension, ExtensionType) == 0x000000, "Member 'UserWidget_GetExtension::ExtensionType' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_GetExtension, ReturnValue) == 0x000008, "Member 'UserWidget_GetExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetExtensions \ +static_assert(alignof(UserWidget_GetExtensions) == 0x000008, "Wrong alignment on UserWidget_GetExtensions"); \ +static_assert(sizeof(UserWidget_GetExtensions) == 0x000018, "Wrong size on UserWidget_GetExtensions"); \ +static_assert(offsetof(UserWidget_GetExtensions, ExtensionType) == 0x000000, "Member 'UserWidget_GetExtensions::ExtensionType' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_GetExtensions, ReturnValue) == 0x000008, "Member 'UserWidget_GetExtensions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetIsVisible \ +static_assert(alignof(UserWidget_GetIsVisible) == 0x000001, "Wrong alignment on UserWidget_GetIsVisible"); \ +static_assert(sizeof(UserWidget_GetIsVisible) == 0x000001, "Wrong size on UserWidget_GetIsVisible"); \ +static_assert(offsetof(UserWidget_GetIsVisible, ReturnValue) == 0x000000, "Member 'UserWidget_GetIsVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetOwningPlayerCameraManager \ +static_assert(alignof(UserWidget_GetOwningPlayerCameraManager) == 0x000008, "Wrong alignment on UserWidget_GetOwningPlayerCameraManager"); \ +static_assert(sizeof(UserWidget_GetOwningPlayerCameraManager) == 0x000008, "Wrong size on UserWidget_GetOwningPlayerCameraManager"); \ +static_assert(offsetof(UserWidget_GetOwningPlayerCameraManager, ReturnValue) == 0x000000, "Member 'UserWidget_GetOwningPlayerCameraManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_GetOwningPlayerPawn \ +static_assert(alignof(UserWidget_GetOwningPlayerPawn) == 0x000008, "Wrong alignment on UserWidget_GetOwningPlayerPawn"); \ +static_assert(sizeof(UserWidget_GetOwningPlayerPawn) == 0x000008, "Wrong size on UserWidget_GetOwningPlayerPawn"); \ +static_assert(offsetof(UserWidget_GetOwningPlayerPawn, ReturnValue) == 0x000000, "Member 'UserWidget_GetOwningPlayerPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsAnimationPlaying \ +static_assert(alignof(UserWidget_IsAnimationPlaying) == 0x000008, "Wrong alignment on UserWidget_IsAnimationPlaying"); \ +static_assert(sizeof(UserWidget_IsAnimationPlaying) == 0x000010, "Wrong size on UserWidget_IsAnimationPlaying"); \ +static_assert(offsetof(UserWidget_IsAnimationPlaying, InAnimation) == 0x000000, "Member 'UserWidget_IsAnimationPlaying::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_IsAnimationPlaying, ReturnValue) == 0x000008, "Member 'UserWidget_IsAnimationPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsAnyAnimationPlaying \ +static_assert(alignof(UserWidget_IsAnyAnimationPlaying) == 0x000001, "Wrong alignment on UserWidget_IsAnyAnimationPlaying"); \ +static_assert(sizeof(UserWidget_IsAnyAnimationPlaying) == 0x000001, "Wrong size on UserWidget_IsAnyAnimationPlaying"); \ +static_assert(offsetof(UserWidget_IsAnyAnimationPlaying, ReturnValue) == 0x000000, "Member 'UserWidget_IsAnyAnimationPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsInteractable \ +static_assert(alignof(UserWidget_IsInteractable) == 0x000001, "Wrong alignment on UserWidget_IsInteractable"); \ +static_assert(sizeof(UserWidget_IsInteractable) == 0x000001, "Wrong size on UserWidget_IsInteractable"); \ +static_assert(offsetof(UserWidget_IsInteractable, ReturnValue) == 0x000000, "Member 'UserWidget_IsInteractable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsListeningForInputAction \ +static_assert(alignof(UserWidget_IsListeningForInputAction) == 0x000004, "Wrong alignment on UserWidget_IsListeningForInputAction"); \ +static_assert(sizeof(UserWidget_IsListeningForInputAction) == 0x00000C, "Wrong size on UserWidget_IsListeningForInputAction"); \ +static_assert(offsetof(UserWidget_IsListeningForInputAction, ActionName) == 0x000000, "Member 'UserWidget_IsListeningForInputAction::ActionName' has a wrong offset!"); \ +static_assert(offsetof(UserWidget_IsListeningForInputAction, ReturnValue) == 0x000008, "Member 'UserWidget_IsListeningForInputAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_IsPlayingAnimation \ +static_assert(alignof(UserWidget_IsPlayingAnimation) == 0x000001, "Wrong alignment on UserWidget_IsPlayingAnimation"); \ +static_assert(sizeof(UserWidget_IsPlayingAnimation) == 0x000001, "Wrong size on UserWidget_IsPlayingAnimation"); \ +static_assert(offsetof(UserWidget_IsPlayingAnimation, ReturnValue) == 0x000000, "Member 'UserWidget_IsPlayingAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserWidget_OnPaint \ +static_assert(alignof(UserWidget_OnPaint) == 0x000008, "Wrong alignment on UserWidget_OnPaint"); \ +static_assert(sizeof(UserWidget_OnPaint) == 0x000030, "Wrong size on UserWidget_OnPaint"); \ +static_assert(offsetof(UserWidget_OnPaint, Context) == 0x000000, "Member 'UserWidget_OnPaint::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserWidget \ +static_assert(alignof(UUserWidget) == 0x000008, "Wrong alignment on UUserWidget"); \ +static_assert(sizeof(UUserWidget) == 0x0002C0, "Wrong size on UUserWidget"); \ +static_assert(offsetof(UUserWidget, ColorAndOpacity) == 0x000188, "Member 'UUserWidget::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, ColorAndOpacityDelegate) == 0x000198, "Member 'UUserWidget::ColorAndOpacityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, ForegroundColor) == 0x0001A8, "Member 'UUserWidget::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, ForegroundColorDelegate) == 0x0001BC, "Member 'UUserWidget::ForegroundColorDelegate' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, OnVisibilityChanged) == 0x0001D0, "Member 'UUserWidget::OnVisibilityChanged' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, Padding) == 0x0001F8, "Member 'UUserWidget::Padding' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, Priority) == 0x000208, "Member 'UUserWidget::Priority' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, ActiveSequencePlayers) == 0x000210, "Member 'UUserWidget::ActiveSequencePlayers' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, AnimationTickManager) == 0x000220, "Member 'UUserWidget::AnimationTickManager' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, StoppedSequencePlayers) == 0x000228, "Member 'UUserWidget::StoppedSequencePlayers' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, NamedSlotBindings) == 0x000238, "Member 'UUserWidget::NamedSlotBindings' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, Extensions) == 0x000248, "Member 'UUserWidget::Extensions' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, WidgetTree) == 0x000258, "Member 'UUserWidget::WidgetTree' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, TickFrequency) == 0x000278, "Member 'UUserWidget::TickFrequency' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, DesiredFocusWidget) == 0x00027C, "Member 'UUserWidget::DesiredFocusWidget' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, InputComponent) == 0x000290, "Member 'UUserWidget::InputComponent' has a wrong offset!"); \ +static_assert(offsetof(UUserWidget, AnimationCallbacks) == 0x000298, "Member 'UUserWidget::AnimationCallbacks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_AddChild \ +static_assert(alignof(PanelWidget_AddChild) == 0x000008, "Wrong alignment on PanelWidget_AddChild"); \ +static_assert(sizeof(PanelWidget_AddChild) == 0x000010, "Wrong size on PanelWidget_AddChild"); \ +static_assert(offsetof(PanelWidget_AddChild, Content) == 0x000000, "Member 'PanelWidget_AddChild::Content' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_AddChild, ReturnValue) == 0x000008, "Member 'PanelWidget_AddChild::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_RemoveChild \ +static_assert(alignof(PanelWidget_RemoveChild) == 0x000008, "Wrong alignment on PanelWidget_RemoveChild"); \ +static_assert(sizeof(PanelWidget_RemoveChild) == 0x000010, "Wrong size on PanelWidget_RemoveChild"); \ +static_assert(offsetof(PanelWidget_RemoveChild, Content) == 0x000000, "Member 'PanelWidget_RemoveChild::Content' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_RemoveChild, ReturnValue) == 0x000008, "Member 'PanelWidget_RemoveChild::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_RemoveChildAt \ +static_assert(alignof(PanelWidget_RemoveChildAt) == 0x000004, "Wrong alignment on PanelWidget_RemoveChildAt"); \ +static_assert(sizeof(PanelWidget_RemoveChildAt) == 0x000008, "Wrong size on PanelWidget_RemoveChildAt"); \ +static_assert(offsetof(PanelWidget_RemoveChildAt, Index_0) == 0x000000, "Member 'PanelWidget_RemoveChildAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_RemoveChildAt, ReturnValue) == 0x000004, "Member 'PanelWidget_RemoveChildAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_GetAllChildren \ +static_assert(alignof(PanelWidget_GetAllChildren) == 0x000008, "Wrong alignment on PanelWidget_GetAllChildren"); \ +static_assert(sizeof(PanelWidget_GetAllChildren) == 0x000010, "Wrong size on PanelWidget_GetAllChildren"); \ +static_assert(offsetof(PanelWidget_GetAllChildren, ReturnValue) == 0x000000, "Member 'PanelWidget_GetAllChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_GetChildAt \ +static_assert(alignof(PanelWidget_GetChildAt) == 0x000008, "Wrong alignment on PanelWidget_GetChildAt"); \ +static_assert(sizeof(PanelWidget_GetChildAt) == 0x000010, "Wrong size on PanelWidget_GetChildAt"); \ +static_assert(offsetof(PanelWidget_GetChildAt, Index_0) == 0x000000, "Member 'PanelWidget_GetChildAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_GetChildAt, ReturnValue) == 0x000008, "Member 'PanelWidget_GetChildAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_GetChildIndex \ +static_assert(alignof(PanelWidget_GetChildIndex) == 0x000008, "Wrong alignment on PanelWidget_GetChildIndex"); \ +static_assert(sizeof(PanelWidget_GetChildIndex) == 0x000010, "Wrong size on PanelWidget_GetChildIndex"); \ +static_assert(offsetof(PanelWidget_GetChildIndex, Content) == 0x000000, "Member 'PanelWidget_GetChildIndex::Content' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_GetChildIndex, ReturnValue) == 0x000008, "Member 'PanelWidget_GetChildIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_GetChildrenCount \ +static_assert(alignof(PanelWidget_GetChildrenCount) == 0x000004, "Wrong alignment on PanelWidget_GetChildrenCount"); \ +static_assert(sizeof(PanelWidget_GetChildrenCount) == 0x000004, "Wrong size on PanelWidget_GetChildrenCount"); \ +static_assert(offsetof(PanelWidget_GetChildrenCount, ReturnValue) == 0x000000, "Member 'PanelWidget_GetChildrenCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_HasAnyChildren \ +static_assert(alignof(PanelWidget_HasAnyChildren) == 0x000001, "Wrong alignment on PanelWidget_HasAnyChildren"); \ +static_assert(sizeof(PanelWidget_HasAnyChildren) == 0x000001, "Wrong size on PanelWidget_HasAnyChildren"); \ +static_assert(offsetof(PanelWidget_HasAnyChildren, ReturnValue) == 0x000000, "Member 'PanelWidget_HasAnyChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PanelWidget_HasChild \ +static_assert(alignof(PanelWidget_HasChild) == 0x000008, "Wrong alignment on PanelWidget_HasChild"); \ +static_assert(sizeof(PanelWidget_HasChild) == 0x000010, "Wrong size on PanelWidget_HasChild"); \ +static_assert(offsetof(PanelWidget_HasChild, Content) == 0x000000, "Member 'PanelWidget_HasChild::Content' has a wrong offset!"); \ +static_assert(offsetof(PanelWidget_HasChild, ReturnValue) == 0x000008, "Member 'PanelWidget_HasChild::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPanelWidget \ +static_assert(alignof(UPanelWidget) == 0x000008, "Wrong alignment on UPanelWidget"); \ +static_assert(sizeof(UPanelWidget) == 0x000198, "Wrong size on UPanelWidget"); \ +static_assert(offsetof(UPanelWidget, Slots) == 0x000180, "Member 'UPanelWidget::Slots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ContentWidget_SetContent \ +static_assert(alignof(ContentWidget_SetContent) == 0x000008, "Wrong alignment on ContentWidget_SetContent"); \ +static_assert(sizeof(ContentWidget_SetContent) == 0x000010, "Wrong size on ContentWidget_SetContent"); \ +static_assert(offsetof(ContentWidget_SetContent, Content) == 0x000000, "Member 'ContentWidget_SetContent::Content' has a wrong offset!"); \ +static_assert(offsetof(ContentWidget_SetContent, ReturnValue) == 0x000008, "Member 'ContentWidget_SetContent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ContentWidget_GetContent \ +static_assert(alignof(ContentWidget_GetContent) == 0x000008, "Wrong alignment on ContentWidget_GetContent"); \ +static_assert(sizeof(ContentWidget_GetContent) == 0x000008, "Wrong size on ContentWidget_GetContent"); \ +static_assert(offsetof(ContentWidget_GetContent, ReturnValue) == 0x000000, "Member 'ContentWidget_GetContent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ContentWidget_GetContentSlot \ +static_assert(alignof(ContentWidget_GetContentSlot) == 0x000008, "Wrong alignment on ContentWidget_GetContentSlot"); \ +static_assert(sizeof(ContentWidget_GetContentSlot) == 0x000008, "Wrong size on ContentWidget_GetContentSlot"); \ +static_assert(offsetof(ContentWidget_GetContentSlot, ReturnValue) == 0x000000, "Member 'ContentWidget_GetContentSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UContentWidget \ +static_assert(alignof(UContentWidget) == 0x000008, "Wrong alignment on UContentWidget"); \ +static_assert(sizeof(UContentWidget) == 0x000198, "Wrong size on UContentWidget"); \ + +#define DUMPER7_ASSERTS_CheckBox_SetCheckedState \ +static_assert(alignof(CheckBox_SetCheckedState) == 0x000001, "Wrong alignment on CheckBox_SetCheckedState"); \ +static_assert(sizeof(CheckBox_SetCheckedState) == 0x000001, "Wrong size on CheckBox_SetCheckedState"); \ +static_assert(offsetof(CheckBox_SetCheckedState, InCheckedState) == 0x000000, "Member 'CheckBox_SetCheckedState::InCheckedState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_SetClickMethod \ +static_assert(alignof(CheckBox_SetClickMethod) == 0x000001, "Wrong alignment on CheckBox_SetClickMethod"); \ +static_assert(sizeof(CheckBox_SetClickMethod) == 0x000001, "Wrong size on CheckBox_SetClickMethod"); \ +static_assert(offsetof(CheckBox_SetClickMethod, InClickMethod) == 0x000000, "Member 'CheckBox_SetClickMethod::InClickMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_SetIsChecked \ +static_assert(alignof(CheckBox_SetIsChecked) == 0x000001, "Wrong alignment on CheckBox_SetIsChecked"); \ +static_assert(sizeof(CheckBox_SetIsChecked) == 0x000001, "Wrong size on CheckBox_SetIsChecked"); \ +static_assert(offsetof(CheckBox_SetIsChecked, InIsChecked) == 0x000000, "Member 'CheckBox_SetIsChecked::InIsChecked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_SetPressMethod \ +static_assert(alignof(CheckBox_SetPressMethod) == 0x000001, "Wrong alignment on CheckBox_SetPressMethod"); \ +static_assert(sizeof(CheckBox_SetPressMethod) == 0x000001, "Wrong size on CheckBox_SetPressMethod"); \ +static_assert(offsetof(CheckBox_SetPressMethod, InPressMethod) == 0x000000, "Member 'CheckBox_SetPressMethod::InPressMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_SetTouchMethod \ +static_assert(alignof(CheckBox_SetTouchMethod) == 0x000001, "Wrong alignment on CheckBox_SetTouchMethod"); \ +static_assert(sizeof(CheckBox_SetTouchMethod) == 0x000001, "Wrong size on CheckBox_SetTouchMethod"); \ +static_assert(offsetof(CheckBox_SetTouchMethod, InTouchMethod) == 0x000000, "Member 'CheckBox_SetTouchMethod::InTouchMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_GetCheckedState \ +static_assert(alignof(CheckBox_GetCheckedState) == 0x000001, "Wrong alignment on CheckBox_GetCheckedState"); \ +static_assert(sizeof(CheckBox_GetCheckedState) == 0x000001, "Wrong size on CheckBox_GetCheckedState"); \ +static_assert(offsetof(CheckBox_GetCheckedState, ReturnValue) == 0x000000, "Member 'CheckBox_GetCheckedState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_IsChecked \ +static_assert(alignof(CheckBox_IsChecked) == 0x000001, "Wrong alignment on CheckBox_IsChecked"); \ +static_assert(sizeof(CheckBox_IsChecked) == 0x000001, "Wrong size on CheckBox_IsChecked"); \ +static_assert(offsetof(CheckBox_IsChecked, ReturnValue) == 0x000000, "Member 'CheckBox_IsChecked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckBox_IsPressed \ +static_assert(alignof(CheckBox_IsPressed) == 0x000001, "Wrong alignment on CheckBox_IsPressed"); \ +static_assert(sizeof(CheckBox_IsPressed) == 0x000001, "Wrong size on CheckBox_IsPressed"); \ +static_assert(offsetof(CheckBox_IsPressed, ReturnValue) == 0x000000, "Member 'CheckBox_IsPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckBox \ +static_assert(alignof(UCheckBox) == 0x000010, "Wrong alignment on UCheckBox"); \ +static_assert(sizeof(UCheckBox) == 0x000CB0, "Wrong size on UCheckBox"); \ +static_assert(offsetof(UCheckBox, CheckedState) == 0x000198, "Member 'UCheckBox::CheckedState' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, CheckedStateDelegate) == 0x00019C, "Member 'UCheckBox::CheckedStateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, WidgetStyle) == 0x0001B0, "Member 'UCheckBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, HorizontalAlignment) == 0x000C80, "Member 'UCheckBox::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, ClickMethod) == 0x000C81, "Member 'UCheckBox::ClickMethod' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, TouchMethod) == 0x000C82, "Member 'UCheckBox::TouchMethod' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, PressMethod) == 0x000C83, "Member 'UCheckBox::PressMethod' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, IsFocusable) == 0x000C84, "Member 'UCheckBox::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UCheckBox, OnCheckStateChanged) == 0x000C88, "Member 'UCheckBox::OnCheckStateChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetEnumStateRegistration \ +static_assert(alignof(UWidgetEnumStateRegistration) == 0x000008, "Wrong alignment on UWidgetEnumStateRegistration"); \ +static_assert(sizeof(UWidgetEnumStateRegistration) == 0x000028, "Wrong size on UWidgetEnumStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetCheckedStateRegistration \ +static_assert(alignof(UWidgetCheckedStateRegistration) == 0x000008, "Wrong alignment on UWidgetCheckedStateRegistration"); \ +static_assert(sizeof(UWidgetCheckedStateRegistration) == 0x000028, "Wrong size on UWidgetCheckedStateRegistration"); \ + +#define DUMPER7_ASSERTS_ListViewBase_SetScrollbarVisibility \ +static_assert(alignof(ListViewBase_SetScrollbarVisibility) == 0x000001, "Wrong alignment on ListViewBase_SetScrollbarVisibility"); \ +static_assert(sizeof(ListViewBase_SetScrollbarVisibility) == 0x000001, "Wrong size on ListViewBase_SetScrollbarVisibility"); \ +static_assert(offsetof(ListViewBase_SetScrollbarVisibility, InVisibility) == 0x000000, "Member 'ListViewBase_SetScrollbarVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListViewBase_SetScrollOffset \ +static_assert(alignof(ListViewBase_SetScrollOffset) == 0x000004, "Wrong alignment on ListViewBase_SetScrollOffset"); \ +static_assert(sizeof(ListViewBase_SetScrollOffset) == 0x000004, "Wrong size on ListViewBase_SetScrollOffset"); \ +static_assert(offsetof(ListViewBase_SetScrollOffset, InScrollOffset) == 0x000000, "Member 'ListViewBase_SetScrollOffset::InScrollOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListViewBase_SetWheelScrollMultiplier \ +static_assert(alignof(ListViewBase_SetWheelScrollMultiplier) == 0x000004, "Wrong alignment on ListViewBase_SetWheelScrollMultiplier"); \ +static_assert(sizeof(ListViewBase_SetWheelScrollMultiplier) == 0x000004, "Wrong size on ListViewBase_SetWheelScrollMultiplier"); \ +static_assert(offsetof(ListViewBase_SetWheelScrollMultiplier, NewWheelScrollMultiplier) == 0x000000, "Member 'ListViewBase_SetWheelScrollMultiplier::NewWheelScrollMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListViewBase_GetDisplayedEntryWidgets \ +static_assert(alignof(ListViewBase_GetDisplayedEntryWidgets) == 0x000008, "Wrong alignment on ListViewBase_GetDisplayedEntryWidgets"); \ +static_assert(sizeof(ListViewBase_GetDisplayedEntryWidgets) == 0x000010, "Wrong size on ListViewBase_GetDisplayedEntryWidgets"); \ +static_assert(offsetof(ListViewBase_GetDisplayedEntryWidgets, ReturnValue) == 0x000000, "Member 'ListViewBase_GetDisplayedEntryWidgets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListViewBase_GetScrollOffset \ +static_assert(alignof(ListViewBase_GetScrollOffset) == 0x000004, "Wrong alignment on ListViewBase_GetScrollOffset"); \ +static_assert(sizeof(ListViewBase_GetScrollOffset) == 0x000004, "Wrong size on ListViewBase_GetScrollOffset"); \ +static_assert(offsetof(ListViewBase_GetScrollOffset, ReturnValue) == 0x000000, "Member 'ListViewBase_GetScrollOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UListViewBase \ +static_assert(alignof(UListViewBase) == 0x000008, "Wrong alignment on UListViewBase"); \ +static_assert(sizeof(UListViewBase) == 0x000298, "Wrong size on UListViewBase"); \ +static_assert(offsetof(UListViewBase, BP_OnEntryGenerated) == 0x000180, "Member 'UListViewBase::BP_OnEntryGenerated' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, EntryWidgetClass) == 0x0001A0, "Member 'UListViewBase::EntryWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, WheelScrollMultiplier) == 0x0001A8, "Member 'UListViewBase::WheelScrollMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, bEnableScrollAnimation) == 0x0001AC, "Member 'UListViewBase::bEnableScrollAnimation' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, AllowOverscroll) == 0x0001AD, "Member 'UListViewBase::AllowOverscroll' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, bEnableRightClickScrolling) == 0x0001AE, "Member 'UListViewBase::bEnableRightClickScrolling' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, bEnableFixedLineOffset) == 0x0001AF, "Member 'UListViewBase::bEnableFixedLineOffset' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, FixedLineScrollOffset) == 0x0001B0, "Member 'UListViewBase::FixedLineScrollOffset' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, bAllowDragging) == 0x0001B4, "Member 'UListViewBase::bAllowDragging' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, BP_OnEntryReleased) == 0x0001B8, "Member 'UListViewBase::BP_OnEntryReleased' has a wrong offset!"); \ +static_assert(offsetof(UListViewBase, EntryWidgetPool) == 0x0001C8, "Member 'UListViewBase::EntryWidgetPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CircularThrobber_SetNumberOfPieces \ +static_assert(alignof(CircularThrobber_SetNumberOfPieces) == 0x000004, "Wrong alignment on CircularThrobber_SetNumberOfPieces"); \ +static_assert(sizeof(CircularThrobber_SetNumberOfPieces) == 0x000004, "Wrong size on CircularThrobber_SetNumberOfPieces"); \ +static_assert(offsetof(CircularThrobber_SetNumberOfPieces, InNumberOfPieces) == 0x000000, "Member 'CircularThrobber_SetNumberOfPieces::InNumberOfPieces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CircularThrobber_SetPeriod \ +static_assert(alignof(CircularThrobber_SetPeriod) == 0x000004, "Wrong alignment on CircularThrobber_SetPeriod"); \ +static_assert(sizeof(CircularThrobber_SetPeriod) == 0x000004, "Wrong size on CircularThrobber_SetPeriod"); \ +static_assert(offsetof(CircularThrobber_SetPeriod, InPeriod) == 0x000000, "Member 'CircularThrobber_SetPeriod::InPeriod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CircularThrobber_SetRadius \ +static_assert(alignof(CircularThrobber_SetRadius) == 0x000004, "Wrong alignment on CircularThrobber_SetRadius"); \ +static_assert(sizeof(CircularThrobber_SetRadius) == 0x000004, "Wrong size on CircularThrobber_SetRadius"); \ +static_assert(offsetof(CircularThrobber_SetRadius, InRadius) == 0x000000, "Member 'CircularThrobber_SetRadius::InRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCircularThrobber \ +static_assert(alignof(UCircularThrobber) == 0x000010, "Wrong alignment on UCircularThrobber"); \ +static_assert(sizeof(UCircularThrobber) == 0x000280, "Wrong size on UCircularThrobber"); \ +static_assert(offsetof(UCircularThrobber, NumberOfPieces) == 0x000180, "Member 'UCircularThrobber::NumberOfPieces' has a wrong offset!"); \ +static_assert(offsetof(UCircularThrobber, Period) == 0x000184, "Member 'UCircularThrobber::Period' has a wrong offset!"); \ +static_assert(offsetof(UCircularThrobber, Radius) == 0x000188, "Member 'UCircularThrobber::Radius' has a wrong offset!"); \ +static_assert(offsetof(UCircularThrobber, Image) == 0x000190, "Member 'UCircularThrobber::Image' has a wrong offset!"); \ +static_assert(offsetof(UCircularThrobber, bEnableRadius) == 0x000260, "Member 'UCircularThrobber::bEnableRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_AddItem \ +static_assert(alignof(ListView_AddItem) == 0x000008, "Wrong alignment on ListView_AddItem"); \ +static_assert(sizeof(ListView_AddItem) == 0x000008, "Wrong size on ListView_AddItem"); \ +static_assert(offsetof(ListView_AddItem, Item) == 0x000000, "Member 'ListView_AddItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_NavigateToItem \ +static_assert(alignof(ListView_BP_NavigateToItem) == 0x000008, "Wrong alignment on ListView_BP_NavigateToItem"); \ +static_assert(sizeof(ListView_BP_NavigateToItem) == 0x000008, "Wrong size on ListView_BP_NavigateToItem"); \ +static_assert(offsetof(ListView_BP_NavigateToItem, Item) == 0x000000, "Member 'ListView_BP_NavigateToItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_ScrollItemIntoView \ +static_assert(alignof(ListView_BP_ScrollItemIntoView) == 0x000008, "Wrong alignment on ListView_BP_ScrollItemIntoView"); \ +static_assert(sizeof(ListView_BP_ScrollItemIntoView) == 0x000008, "Wrong size on ListView_BP_ScrollItemIntoView"); \ +static_assert(offsetof(ListView_BP_ScrollItemIntoView, Item) == 0x000000, "Member 'ListView_BP_ScrollItemIntoView::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_SetItemSelection \ +static_assert(alignof(ListView_BP_SetItemSelection) == 0x000008, "Wrong alignment on ListView_BP_SetItemSelection"); \ +static_assert(sizeof(ListView_BP_SetItemSelection) == 0x000010, "Wrong size on ListView_BP_SetItemSelection"); \ +static_assert(offsetof(ListView_BP_SetItemSelection, Item) == 0x000000, "Member 'ListView_BP_SetItemSelection::Item' has a wrong offset!"); \ +static_assert(offsetof(ListView_BP_SetItemSelection, bSelected) == 0x000008, "Member 'ListView_BP_SetItemSelection::bSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_SetListItems \ +static_assert(alignof(ListView_BP_SetListItems) == 0x000008, "Wrong alignment on ListView_BP_SetListItems"); \ +static_assert(sizeof(ListView_BP_SetListItems) == 0x000010, "Wrong size on ListView_BP_SetListItems"); \ +static_assert(offsetof(ListView_BP_SetListItems, InListItems) == 0x000000, "Member 'ListView_BP_SetListItems::InListItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_SetSelectedItem \ +static_assert(alignof(ListView_BP_SetSelectedItem) == 0x000008, "Wrong alignment on ListView_BP_SetSelectedItem"); \ +static_assert(sizeof(ListView_BP_SetSelectedItem) == 0x000008, "Wrong size on ListView_BP_SetSelectedItem"); \ +static_assert(offsetof(ListView_BP_SetSelectedItem, Item) == 0x000000, "Member 'ListView_BP_SetSelectedItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_NavigateToIndex \ +static_assert(alignof(ListView_NavigateToIndex) == 0x000004, "Wrong alignment on ListView_NavigateToIndex"); \ +static_assert(sizeof(ListView_NavigateToIndex) == 0x000004, "Wrong size on ListView_NavigateToIndex"); \ +static_assert(offsetof(ListView_NavigateToIndex, Index_0) == 0x000000, "Member 'ListView_NavigateToIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_OnListItemEndPlayed \ +static_assert(alignof(ListView_OnListItemEndPlayed) == 0x000008, "Wrong alignment on ListView_OnListItemEndPlayed"); \ +static_assert(sizeof(ListView_OnListItemEndPlayed) == 0x000010, "Wrong size on ListView_OnListItemEndPlayed"); \ +static_assert(offsetof(ListView_OnListItemEndPlayed, Item) == 0x000000, "Member 'ListView_OnListItemEndPlayed::Item' has a wrong offset!"); \ +static_assert(offsetof(ListView_OnListItemEndPlayed, EndPlayReason) == 0x000008, "Member 'ListView_OnListItemEndPlayed::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_OnListItemOuterEndPlayed \ +static_assert(alignof(ListView_OnListItemOuterEndPlayed) == 0x000008, "Wrong alignment on ListView_OnListItemOuterEndPlayed"); \ +static_assert(sizeof(ListView_OnListItemOuterEndPlayed) == 0x000010, "Wrong size on ListView_OnListItemOuterEndPlayed"); \ +static_assert(offsetof(ListView_OnListItemOuterEndPlayed, ItemOuter) == 0x000000, "Member 'ListView_OnListItemOuterEndPlayed::ItemOuter' has a wrong offset!"); \ +static_assert(offsetof(ListView_OnListItemOuterEndPlayed, EndPlayReason) == 0x000008, "Member 'ListView_OnListItemOuterEndPlayed::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_RemoveItem \ +static_assert(alignof(ListView_RemoveItem) == 0x000008, "Wrong alignment on ListView_RemoveItem"); \ +static_assert(sizeof(ListView_RemoveItem) == 0x000008, "Wrong size on ListView_RemoveItem"); \ +static_assert(offsetof(ListView_RemoveItem, Item) == 0x000000, "Member 'ListView_RemoveItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_ScrollIndexIntoView \ +static_assert(alignof(ListView_ScrollIndexIntoView) == 0x000004, "Wrong alignment on ListView_ScrollIndexIntoView"); \ +static_assert(sizeof(ListView_ScrollIndexIntoView) == 0x000004, "Wrong size on ListView_ScrollIndexIntoView"); \ +static_assert(offsetof(ListView_ScrollIndexIntoView, Index_0) == 0x000000, "Member 'ListView_ScrollIndexIntoView::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_SetSelectedIndex \ +static_assert(alignof(ListView_SetSelectedIndex) == 0x000004, "Wrong alignment on ListView_SetSelectedIndex"); \ +static_assert(sizeof(ListView_SetSelectedIndex) == 0x000004, "Wrong size on ListView_SetSelectedIndex"); \ +static_assert(offsetof(ListView_SetSelectedIndex, Index_0) == 0x000000, "Member 'ListView_SetSelectedIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_SetSelectionMode \ +static_assert(alignof(ListView_SetSelectionMode) == 0x000001, "Wrong alignment on ListView_SetSelectionMode"); \ +static_assert(sizeof(ListView_SetSelectionMode) == 0x000001, "Wrong size on ListView_SetSelectionMode"); \ +static_assert(offsetof(ListView_SetSelectionMode, SelectionMode_0) == 0x000000, "Member 'ListView_SetSelectionMode::SelectionMode_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_GetNumItemsSelected \ +static_assert(alignof(ListView_BP_GetNumItemsSelected) == 0x000004, "Wrong alignment on ListView_BP_GetNumItemsSelected"); \ +static_assert(sizeof(ListView_BP_GetNumItemsSelected) == 0x000004, "Wrong size on ListView_BP_GetNumItemsSelected"); \ +static_assert(offsetof(ListView_BP_GetNumItemsSelected, ReturnValue) == 0x000000, "Member 'ListView_BP_GetNumItemsSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_GetSelectedItem \ +static_assert(alignof(ListView_BP_GetSelectedItem) == 0x000008, "Wrong alignment on ListView_BP_GetSelectedItem"); \ +static_assert(sizeof(ListView_BP_GetSelectedItem) == 0x000008, "Wrong size on ListView_BP_GetSelectedItem"); \ +static_assert(offsetof(ListView_BP_GetSelectedItem, ReturnValue) == 0x000000, "Member 'ListView_BP_GetSelectedItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_GetSelectedItems \ +static_assert(alignof(ListView_BP_GetSelectedItems) == 0x000008, "Wrong alignment on ListView_BP_GetSelectedItems"); \ +static_assert(sizeof(ListView_BP_GetSelectedItems) == 0x000018, "Wrong size on ListView_BP_GetSelectedItems"); \ +static_assert(offsetof(ListView_BP_GetSelectedItems, Items) == 0x000000, "Member 'ListView_BP_GetSelectedItems::Items' has a wrong offset!"); \ +static_assert(offsetof(ListView_BP_GetSelectedItems, ReturnValue) == 0x000010, "Member 'ListView_BP_GetSelectedItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_BP_IsItemVisible \ +static_assert(alignof(ListView_BP_IsItemVisible) == 0x000008, "Wrong alignment on ListView_BP_IsItemVisible"); \ +static_assert(sizeof(ListView_BP_IsItemVisible) == 0x000010, "Wrong size on ListView_BP_IsItemVisible"); \ +static_assert(offsetof(ListView_BP_IsItemVisible, Item) == 0x000000, "Member 'ListView_BP_IsItemVisible::Item' has a wrong offset!"); \ +static_assert(offsetof(ListView_BP_IsItemVisible, ReturnValue) == 0x000008, "Member 'ListView_BP_IsItemVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetHorizontalEntrySpacing \ +static_assert(alignof(ListView_GetHorizontalEntrySpacing) == 0x000004, "Wrong alignment on ListView_GetHorizontalEntrySpacing"); \ +static_assert(sizeof(ListView_GetHorizontalEntrySpacing) == 0x000004, "Wrong size on ListView_GetHorizontalEntrySpacing"); \ +static_assert(offsetof(ListView_GetHorizontalEntrySpacing, ReturnValue) == 0x000000, "Member 'ListView_GetHorizontalEntrySpacing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetIndexForItem \ +static_assert(alignof(ListView_GetIndexForItem) == 0x000008, "Wrong alignment on ListView_GetIndexForItem"); \ +static_assert(sizeof(ListView_GetIndexForItem) == 0x000010, "Wrong size on ListView_GetIndexForItem"); \ +static_assert(offsetof(ListView_GetIndexForItem, Item) == 0x000000, "Member 'ListView_GetIndexForItem::Item' has a wrong offset!"); \ +static_assert(offsetof(ListView_GetIndexForItem, ReturnValue) == 0x000008, "Member 'ListView_GetIndexForItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetItemAt \ +static_assert(alignof(ListView_GetItemAt) == 0x000008, "Wrong alignment on ListView_GetItemAt"); \ +static_assert(sizeof(ListView_GetItemAt) == 0x000010, "Wrong size on ListView_GetItemAt"); \ +static_assert(offsetof(ListView_GetItemAt, Index_0) == 0x000000, "Member 'ListView_GetItemAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ListView_GetItemAt, ReturnValue) == 0x000008, "Member 'ListView_GetItemAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetListItems \ +static_assert(alignof(ListView_GetListItems) == 0x000008, "Wrong alignment on ListView_GetListItems"); \ +static_assert(sizeof(ListView_GetListItems) == 0x000010, "Wrong size on ListView_GetListItems"); \ +static_assert(offsetof(ListView_GetListItems, ReturnValue) == 0x000000, "Member 'ListView_GetListItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetNumItems \ +static_assert(alignof(ListView_GetNumItems) == 0x000004, "Wrong alignment on ListView_GetNumItems"); \ +static_assert(sizeof(ListView_GetNumItems) == 0x000004, "Wrong size on ListView_GetNumItems"); \ +static_assert(offsetof(ListView_GetNumItems, ReturnValue) == 0x000000, "Member 'ListView_GetNumItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_GetVerticalEntrySpacing \ +static_assert(alignof(ListView_GetVerticalEntrySpacing) == 0x000004, "Wrong alignment on ListView_GetVerticalEntrySpacing"); \ +static_assert(sizeof(ListView_GetVerticalEntrySpacing) == 0x000004, "Wrong size on ListView_GetVerticalEntrySpacing"); \ +static_assert(offsetof(ListView_GetVerticalEntrySpacing, ReturnValue) == 0x000000, "Member 'ListView_GetVerticalEntrySpacing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ListView_IsRefreshPending \ +static_assert(alignof(ListView_IsRefreshPending) == 0x000001, "Wrong alignment on ListView_IsRefreshPending"); \ +static_assert(sizeof(ListView_IsRefreshPending) == 0x000001, "Wrong size on ListView_IsRefreshPending"); \ +static_assert(offsetof(ListView_IsRefreshPending, ReturnValue) == 0x000000, "Member 'ListView_IsRefreshPending::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UListView \ +static_assert(alignof(UListView) == 0x000010, "Wrong alignment on UListView"); \ +static_assert(sizeof(UListView) == 0x000C70, "Wrong size on UListView"); \ +static_assert(offsetof(UListView, WidgetStyle) == 0x000380, "Member 'UListView::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UListView, ScrollBarStyle) == 0x000460, "Member 'UListView::ScrollBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UListView, Orientation) == 0x000BD0, "Member 'UListView::Orientation' has a wrong offset!"); \ +static_assert(offsetof(UListView, SelectionMode) == 0x000BD1, "Member 'UListView::SelectionMode' has a wrong offset!"); \ +static_assert(offsetof(UListView, ConsumeMouseWheel) == 0x000BD2, "Member 'UListView::ConsumeMouseWheel' has a wrong offset!"); \ +static_assert(offsetof(UListView, bClearSelectionOnClick) == 0x000BD3, "Member 'UListView::bClearSelectionOnClick' has a wrong offset!"); \ +static_assert(offsetof(UListView, bIsFocusable) == 0x000BD4, "Member 'UListView::bIsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UListView, bReturnFocusToSelection) == 0x000BD5, "Member 'UListView::bReturnFocusToSelection' has a wrong offset!"); \ +static_assert(offsetof(UListView, ListItems) == 0x000BD8, "Member 'UListView::ListItems' has a wrong offset!"); \ +static_assert(offsetof(UListView, HorizontalEntrySpacing) == 0x000BF8, "Member 'UListView::HorizontalEntrySpacing' has a wrong offset!"); \ +static_assert(offsetof(UListView, VerticalEntrySpacing) == 0x000BFC, "Member 'UListView::VerticalEntrySpacing' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnEntryInitialized) == 0x000C00, "Member 'UListView::BP_OnEntryInitialized' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnItemClicked) == 0x000C10, "Member 'UListView::BP_OnItemClicked' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnItemDoubleClicked) == 0x000C20, "Member 'UListView::BP_OnItemDoubleClicked' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnItemIsHoveredChanged) == 0x000C30, "Member 'UListView::BP_OnItemIsHoveredChanged' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnItemSelectionChanged) == 0x000C40, "Member 'UListView::BP_OnItemSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnItemScrolledIntoView) == 0x000C50, "Member 'UListView::BP_OnItemScrolledIntoView' has a wrong offset!"); \ +static_assert(offsetof(UListView, BP_OnListViewScrolled) == 0x000C60, "Member 'UListView::BP_OnListViewScrolled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComboBox \ +static_assert(alignof(UComboBox) == 0x000010, "Wrong alignment on UComboBox"); \ +static_assert(sizeof(UComboBox) == 0x000930, "Wrong size on UComboBox"); \ +static_assert(offsetof(UComboBox, ScrollBarStyle) == 0x000180, "Member 'UComboBox::ScrollBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBox, Items) == 0x0008F0, "Member 'UComboBox::Items' has a wrong offset!"); \ +static_assert(offsetof(UComboBox, OnGenerateWidgetEvent) == 0x000900, "Member 'UComboBox::OnGenerateWidgetEvent' has a wrong offset!"); \ +static_assert(offsetof(UComboBox, bIsFocusable) == 0x000910, "Member 'UComboBox::bIsFocusable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarAreaSlot_SetHorizontalAlignment \ +static_assert(alignof(WindowTitleBarAreaSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on WindowTitleBarAreaSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(WindowTitleBarAreaSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on WindowTitleBarAreaSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(WindowTitleBarAreaSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'WindowTitleBarAreaSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarAreaSlot_SetPadding \ +static_assert(alignof(WindowTitleBarAreaSlot_SetPadding) == 0x000004, "Wrong alignment on WindowTitleBarAreaSlot_SetPadding"); \ +static_assert(sizeof(WindowTitleBarAreaSlot_SetPadding) == 0x000010, "Wrong size on WindowTitleBarAreaSlot_SetPadding"); \ +static_assert(offsetof(WindowTitleBarAreaSlot_SetPadding, InPadding) == 0x000000, "Member 'WindowTitleBarAreaSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarAreaSlot_SetVerticalAlignment \ +static_assert(alignof(WindowTitleBarAreaSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on WindowTitleBarAreaSlot_SetVerticalAlignment"); \ +static_assert(sizeof(WindowTitleBarAreaSlot_SetVerticalAlignment) == 0x000001, "Wrong size on WindowTitleBarAreaSlot_SetVerticalAlignment"); \ +static_assert(offsetof(WindowTitleBarAreaSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'WindowTitleBarAreaSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWindowTitleBarAreaSlot \ +static_assert(alignof(UWindowTitleBarAreaSlot) == 0x000008, "Wrong alignment on UWindowTitleBarAreaSlot"); \ +static_assert(sizeof(UWindowTitleBarAreaSlot) == 0x000060, "Wrong size on UWindowTitleBarAreaSlot"); \ +static_assert(offsetof(UWindowTitleBarAreaSlot, Padding) == 0x000038, "Member 'UWindowTitleBarAreaSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UWindowTitleBarAreaSlot, HorizontalAlignment) == 0x000048, "Member 'UWindowTitleBarAreaSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWindowTitleBarAreaSlot, VerticalAlignment) == 0x000049, "Member 'UWindowTitleBarAreaSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UListViewDesignerPreviewItem \ +static_assert(alignof(UListViewDesignerPreviewItem) == 0x000008, "Wrong alignment on UListViewDesignerPreviewItem"); \ +static_assert(sizeof(UListViewDesignerPreviewItem) == 0x000028, "Wrong size on UListViewDesignerPreviewItem"); \ + +#define DUMPER7_ASSERTS_USlateAccessibleWidgetData \ +static_assert(alignof(USlateAccessibleWidgetData) == 0x000008, "Wrong alignment on USlateAccessibleWidgetData"); \ +static_assert(sizeof(USlateAccessibleWidgetData) == 0x000080, "Wrong size on USlateAccessibleWidgetData"); \ +static_assert(offsetof(USlateAccessibleWidgetData, bCanChildrenBeAccessible) == 0x000028, "Member 'USlateAccessibleWidgetData::bCanChildrenBeAccessible' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleBehavior) == 0x000029, "Member 'USlateAccessibleWidgetData::AccessibleBehavior' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleSummaryBehavior) == 0x00002A, "Member 'USlateAccessibleWidgetData::AccessibleSummaryBehavior' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleText) == 0x000030, "Member 'USlateAccessibleWidgetData::AccessibleText' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleTextDelegate) == 0x000048, "Member 'USlateAccessibleWidgetData::AccessibleTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleSummaryText) == 0x000058, "Member 'USlateAccessibleWidgetData::AccessibleSummaryText' has a wrong offset!"); \ +static_assert(offsetof(USlateAccessibleWidgetData, AccessibleSummaryTextDelegate) == 0x000070, "Member 'USlateAccessibleWidgetData::AccessibleSummaryTextDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcherSlot_SetHorizontalAlignment \ +static_assert(alignof(WidgetSwitcherSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on WidgetSwitcherSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(WidgetSwitcherSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on WidgetSwitcherSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(WidgetSwitcherSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'WidgetSwitcherSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcherSlot_SetPadding \ +static_assert(alignof(WidgetSwitcherSlot_SetPadding) == 0x000004, "Wrong alignment on WidgetSwitcherSlot_SetPadding"); \ +static_assert(sizeof(WidgetSwitcherSlot_SetPadding) == 0x000010, "Wrong size on WidgetSwitcherSlot_SetPadding"); \ +static_assert(offsetof(WidgetSwitcherSlot_SetPadding, InPadding) == 0x000000, "Member 'WidgetSwitcherSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcherSlot_SetVerticalAlignment \ +static_assert(alignof(WidgetSwitcherSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on WidgetSwitcherSlot_SetVerticalAlignment"); \ +static_assert(sizeof(WidgetSwitcherSlot_SetVerticalAlignment) == 0x000001, "Wrong size on WidgetSwitcherSlot_SetVerticalAlignment"); \ +static_assert(offsetof(WidgetSwitcherSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'WidgetSwitcherSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetSwitcherSlot \ +static_assert(alignof(UWidgetSwitcherSlot) == 0x000008, "Wrong alignment on UWidgetSwitcherSlot"); \ +static_assert(sizeof(UWidgetSwitcherSlot) == 0x000058, "Wrong size on UWidgetSwitcherSlot"); \ +static_assert(offsetof(UWidgetSwitcherSlot, Padding) == 0x000040, "Member 'UWidgetSwitcherSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UWidgetSwitcherSlot, HorizontalAlignment) == 0x000050, "Member 'UWidgetSwitcherSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWidgetSwitcherSlot, VerticalAlignment) == 0x000051, "Member 'UWidgetSwitcherSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserWidgetExtension \ +static_assert(alignof(UUserWidgetExtension) == 0x000008, "Wrong alignment on UUserWidgetExtension"); \ +static_assert(sizeof(UUserWidgetExtension) == 0x000028, "Wrong size on UUserWidgetExtension"); \ + +#define DUMPER7_ASSERTS_UWidgetBlueprintGeneratedClassExtension \ +static_assert(alignof(UWidgetBlueprintGeneratedClassExtension) == 0x000008, "Wrong alignment on UWidgetBlueprintGeneratedClassExtension"); \ +static_assert(sizeof(UWidgetBlueprintGeneratedClassExtension) == 0x000028, "Wrong size on UWidgetBlueprintGeneratedClassExtension"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_CaptureJoystick \ +static_assert(alignof(WidgetBlueprintLibrary_CaptureJoystick) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_CaptureJoystick"); \ +static_assert(sizeof(WidgetBlueprintLibrary_CaptureJoystick) == 0x000180, "Wrong size on WidgetBlueprintLibrary_CaptureJoystick"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureJoystick, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_CaptureJoystick::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureJoystick, CapturingWidget) == 0x0000B8, "Member 'WidgetBlueprintLibrary_CaptureJoystick::CapturingWidget' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureJoystick, bInAllJoysticks) == 0x0000C0, "Member 'WidgetBlueprintLibrary_CaptureJoystick::bInAllJoysticks' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureJoystick, ReturnValue) == 0x0000C8, "Member 'WidgetBlueprintLibrary_CaptureJoystick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_CaptureMouse \ +static_assert(alignof(WidgetBlueprintLibrary_CaptureMouse) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_CaptureMouse"); \ +static_assert(sizeof(WidgetBlueprintLibrary_CaptureMouse) == 0x000178, "Wrong size on WidgetBlueprintLibrary_CaptureMouse"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureMouse, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_CaptureMouse::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureMouse, CapturingWidget) == 0x0000B8, "Member 'WidgetBlueprintLibrary_CaptureMouse::CapturingWidget' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CaptureMouse, ReturnValue) == 0x0000C0, "Member 'WidgetBlueprintLibrary_CaptureMouse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_ClearUserFocus \ +static_assert(alignof(WidgetBlueprintLibrary_ClearUserFocus) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_ClearUserFocus"); \ +static_assert(sizeof(WidgetBlueprintLibrary_ClearUserFocus) == 0x000178, "Wrong size on WidgetBlueprintLibrary_ClearUserFocus"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ClearUserFocus, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_ClearUserFocus::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ClearUserFocus, bInAllUsers) == 0x0000B8, "Member 'WidgetBlueprintLibrary_ClearUserFocus::bInAllUsers' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ClearUserFocus, ReturnValue) == 0x0000C0, "Member 'WidgetBlueprintLibrary_ClearUserFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_Create \ +static_assert(alignof(WidgetBlueprintLibrary_Create) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_Create"); \ +static_assert(sizeof(WidgetBlueprintLibrary_Create) == 0x000020, "Wrong size on WidgetBlueprintLibrary_Create"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Create, WorldContextObject) == 0x000000, "Member 'WidgetBlueprintLibrary_Create::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Create, WidgetType) == 0x000008, "Member 'WidgetBlueprintLibrary_Create::WidgetType' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Create, OwningPlayer) == 0x000010, "Member 'WidgetBlueprintLibrary_Create::OwningPlayer' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Create, ReturnValue) == 0x000018, "Member 'WidgetBlueprintLibrary_Create::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_CreateDragDropOperation \ +static_assert(alignof(WidgetBlueprintLibrary_CreateDragDropOperation) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_CreateDragDropOperation"); \ +static_assert(sizeof(WidgetBlueprintLibrary_CreateDragDropOperation) == 0x000010, "Wrong size on WidgetBlueprintLibrary_CreateDragDropOperation"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CreateDragDropOperation, OperationClass) == 0x000000, "Member 'WidgetBlueprintLibrary_CreateDragDropOperation::OperationClass' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_CreateDragDropOperation, ReturnValue) == 0x000008, "Member 'WidgetBlueprintLibrary_CreateDragDropOperation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DetectDrag \ +static_assert(alignof(WidgetBlueprintLibrary_DetectDrag) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DetectDrag"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DetectDrag) == 0x000190, "Wrong size on WidgetBlueprintLibrary_DetectDrag"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDrag, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_DetectDrag::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDrag, WidgetDetectingDrag) == 0x0000B8, "Member 'WidgetBlueprintLibrary_DetectDrag::WidgetDetectingDrag' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDrag, DragKey) == 0x0000C0, "Member 'WidgetBlueprintLibrary_DetectDrag::DragKey' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDrag, ReturnValue) == 0x0000D8, "Member 'WidgetBlueprintLibrary_DetectDrag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DetectDragIfPressed \ +static_assert(alignof(WidgetBlueprintLibrary_DetectDragIfPressed) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DetectDragIfPressed"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DetectDragIfPressed) == 0x000150, "Wrong size on WidgetBlueprintLibrary_DetectDragIfPressed"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDragIfPressed, PointerEvent) == 0x000000, "Member 'WidgetBlueprintLibrary_DetectDragIfPressed::PointerEvent' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDragIfPressed, WidgetDetectingDrag) == 0x000078, "Member 'WidgetBlueprintLibrary_DetectDragIfPressed::WidgetDetectingDrag' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDragIfPressed, DragKey) == 0x000080, "Member 'WidgetBlueprintLibrary_DetectDragIfPressed::DragKey' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DetectDragIfPressed, ReturnValue) == 0x000098, "Member 'WidgetBlueprintLibrary_DetectDragIfPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawBox \ +static_assert(alignof(WidgetBlueprintLibrary_DrawBox) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawBox"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawBox) == 0x000068, "Wrong size on WidgetBlueprintLibrary_DrawBox"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawBox, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawBox::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawBox, Position) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawBox::Position' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawBox, Size) == 0x000040, "Member 'WidgetBlueprintLibrary_DrawBox::Size' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawBox, Brush) == 0x000050, "Member 'WidgetBlueprintLibrary_DrawBox::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawBox, Tint) == 0x000058, "Member 'WidgetBlueprintLibrary_DrawBox::Tint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawLine \ +static_assert(alignof(WidgetBlueprintLibrary_DrawLine) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawLine"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawLine) == 0x000068, "Wrong size on WidgetBlueprintLibrary_DrawLine"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawLine::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, PositionA) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawLine::PositionA' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, PositionB) == 0x000040, "Member 'WidgetBlueprintLibrary_DrawLine::PositionB' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, Tint) == 0x000050, "Member 'WidgetBlueprintLibrary_DrawLine::Tint' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, bAntiAlias) == 0x000060, "Member 'WidgetBlueprintLibrary_DrawLine::bAntiAlias' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLine, Thickness) == 0x000064, "Member 'WidgetBlueprintLibrary_DrawLine::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawLines \ +static_assert(alignof(WidgetBlueprintLibrary_DrawLines) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawLines"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawLines) == 0x000058, "Wrong size on WidgetBlueprintLibrary_DrawLines"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLines, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawLines::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLines, Points) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawLines::Points' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLines, Tint) == 0x000040, "Member 'WidgetBlueprintLibrary_DrawLines::Tint' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLines, bAntiAlias) == 0x000050, "Member 'WidgetBlueprintLibrary_DrawLines::bAntiAlias' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawLines, Thickness) == 0x000054, "Member 'WidgetBlueprintLibrary_DrawLines::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawSpline \ +static_assert(alignof(WidgetBlueprintLibrary_DrawSpline) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawSpline"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawSpline) == 0x000088, "Wrong size on WidgetBlueprintLibrary_DrawSpline"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawSpline::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, Start) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawSpline::Start' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, StartDir) == 0x000040, "Member 'WidgetBlueprintLibrary_DrawSpline::StartDir' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, End) == 0x000050, "Member 'WidgetBlueprintLibrary_DrawSpline::End' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, EndDir) == 0x000060, "Member 'WidgetBlueprintLibrary_DrawSpline::EndDir' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, Tint) == 0x000070, "Member 'WidgetBlueprintLibrary_DrawSpline::Tint' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawSpline, Thickness) == 0x000080, "Member 'WidgetBlueprintLibrary_DrawSpline::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawText \ +static_assert(alignof(WidgetBlueprintLibrary_DrawText) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawText"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawText) == 0x000060, "Wrong size on WidgetBlueprintLibrary_DrawText"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawText, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawText::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawText, InString) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawText::InString' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawText, Position) == 0x000040, "Member 'WidgetBlueprintLibrary_DrawText::Position' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawText, Tint) == 0x000050, "Member 'WidgetBlueprintLibrary_DrawText::Tint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_DrawTextFormatted \ +static_assert(alignof(WidgetBlueprintLibrary_DrawTextFormatted) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_DrawTextFormatted"); \ +static_assert(sizeof(WidgetBlueprintLibrary_DrawTextFormatted) == 0x000080, "Wrong size on WidgetBlueprintLibrary_DrawTextFormatted"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, Context) == 0x000000, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::Context' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, Text) == 0x000030, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::Text' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, Position) == 0x000048, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::Position' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, Font) == 0x000058, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::Font' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, FontSize) == 0x000060, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::FontSize' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, FontTypeFace) == 0x000064, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::FontTypeFace' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_DrawTextFormatted, Tint) == 0x00006C, "Member 'WidgetBlueprintLibrary_DrawTextFormatted::Tint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_EndDragDrop \ +static_assert(alignof(WidgetBlueprintLibrary_EndDragDrop) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_EndDragDrop"); \ +static_assert(sizeof(WidgetBlueprintLibrary_EndDragDrop) == 0x000170, "Wrong size on WidgetBlueprintLibrary_EndDragDrop"); \ +static_assert(offsetof(WidgetBlueprintLibrary_EndDragDrop, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_EndDragDrop::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_EndDragDrop, ReturnValue) == 0x0000B8, "Member 'WidgetBlueprintLibrary_EndDragDrop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetAllWidgetsOfClass \ +static_assert(alignof(WidgetBlueprintLibrary_GetAllWidgetsOfClass) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetAllWidgetsOfClass"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetAllWidgetsOfClass) == 0x000028, "Wrong size on WidgetBlueprintLibrary_GetAllWidgetsOfClass"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsOfClass, WorldContextObject) == 0x000000, "Member 'WidgetBlueprintLibrary_GetAllWidgetsOfClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsOfClass, FoundWidgets) == 0x000008, "Member 'WidgetBlueprintLibrary_GetAllWidgetsOfClass::FoundWidgets' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsOfClass, WidgetClass) == 0x000018, "Member 'WidgetBlueprintLibrary_GetAllWidgetsOfClass::WidgetClass' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsOfClass, TopLevelOnly) == 0x000020, "Member 'WidgetBlueprintLibrary_GetAllWidgetsOfClass::TopLevelOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetAllWidgetsWithInterface \ +static_assert(alignof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetAllWidgetsWithInterface"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface) == 0x000028, "Wrong size on WidgetBlueprintLibrary_GetAllWidgetsWithInterface"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface, WorldContextObject) == 0x000000, "Member 'WidgetBlueprintLibrary_GetAllWidgetsWithInterface::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface, FoundWidgets) == 0x000008, "Member 'WidgetBlueprintLibrary_GetAllWidgetsWithInterface::FoundWidgets' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface, Interface) == 0x000018, "Member 'WidgetBlueprintLibrary_GetAllWidgetsWithInterface::Interface' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetAllWidgetsWithInterface, TopLevelOnly) == 0x000020, "Member 'WidgetBlueprintLibrary_GetAllWidgetsWithInterface::TopLevelOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetBrushResource \ +static_assert(alignof(WidgetBlueprintLibrary_GetBrushResource) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_GetBrushResource"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetBrushResource) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_GetBrushResource"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResource, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_GetBrushResource::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResource, ReturnValue) == 0x0000D0, "Member 'WidgetBlueprintLibrary_GetBrushResource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetBrushResourceAsMaterial \ +static_assert(alignof(WidgetBlueprintLibrary_GetBrushResourceAsMaterial) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_GetBrushResourceAsMaterial"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetBrushResourceAsMaterial) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_GetBrushResourceAsMaterial"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResourceAsMaterial, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_GetBrushResourceAsMaterial::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResourceAsMaterial, ReturnValue) == 0x0000D0, "Member 'WidgetBlueprintLibrary_GetBrushResourceAsMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetBrushResourceAsTexture2D \ +static_assert(alignof(WidgetBlueprintLibrary_GetBrushResourceAsTexture2D) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_GetBrushResourceAsTexture2D"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetBrushResourceAsTexture2D) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_GetBrushResourceAsTexture2D"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResourceAsTexture2D, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_GetBrushResourceAsTexture2D::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetBrushResourceAsTexture2D, ReturnValue) == 0x0000D0, "Member 'WidgetBlueprintLibrary_GetBrushResourceAsTexture2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetDragDroppingContent \ +static_assert(alignof(WidgetBlueprintLibrary_GetDragDroppingContent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetDragDroppingContent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetDragDroppingContent) == 0x000008, "Wrong size on WidgetBlueprintLibrary_GetDragDroppingContent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetDragDroppingContent, ReturnValue) == 0x000000, "Member 'WidgetBlueprintLibrary_GetDragDroppingContent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetDynamicMaterial \ +static_assert(alignof(WidgetBlueprintLibrary_GetDynamicMaterial) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_GetDynamicMaterial"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetDynamicMaterial) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_GetDynamicMaterial"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetDynamicMaterial, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_GetDynamicMaterial::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetDynamicMaterial, ReturnValue) == 0x0000D0, "Member 'WidgetBlueprintLibrary_GetDynamicMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetInputEventFromCharacterEvent \ +static_assert(alignof(WidgetBlueprintLibrary_GetInputEventFromCharacterEvent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetInputEventFromCharacterEvent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetInputEventFromCharacterEvent) == 0x000048, "Wrong size on WidgetBlueprintLibrary_GetInputEventFromCharacterEvent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromCharacterEvent, Event) == 0x000000, "Member 'WidgetBlueprintLibrary_GetInputEventFromCharacterEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromCharacterEvent, ReturnValue) == 0x000028, "Member 'WidgetBlueprintLibrary_GetInputEventFromCharacterEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetInputEventFromKeyEvent \ +static_assert(alignof(WidgetBlueprintLibrary_GetInputEventFromKeyEvent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetInputEventFromKeyEvent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetInputEventFromKeyEvent) == 0x000060, "Wrong size on WidgetBlueprintLibrary_GetInputEventFromKeyEvent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromKeyEvent, Event) == 0x000000, "Member 'WidgetBlueprintLibrary_GetInputEventFromKeyEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromKeyEvent, ReturnValue) == 0x000040, "Member 'WidgetBlueprintLibrary_GetInputEventFromKeyEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetInputEventFromNavigationEvent \ +static_assert(alignof(WidgetBlueprintLibrary_GetInputEventFromNavigationEvent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetInputEventFromNavigationEvent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetInputEventFromNavigationEvent) == 0x000048, "Wrong size on WidgetBlueprintLibrary_GetInputEventFromNavigationEvent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromNavigationEvent, Event) == 0x000000, "Member 'WidgetBlueprintLibrary_GetInputEventFromNavigationEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromNavigationEvent, ReturnValue) == 0x000028, "Member 'WidgetBlueprintLibrary_GetInputEventFromNavigationEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetInputEventFromPointerEvent \ +static_assert(alignof(WidgetBlueprintLibrary_GetInputEventFromPointerEvent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetInputEventFromPointerEvent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetInputEventFromPointerEvent) == 0x000098, "Wrong size on WidgetBlueprintLibrary_GetInputEventFromPointerEvent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromPointerEvent, Event) == 0x000000, "Member 'WidgetBlueprintLibrary_GetInputEventFromPointerEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetInputEventFromPointerEvent, ReturnValue) == 0x000078, "Member 'WidgetBlueprintLibrary_GetInputEventFromPointerEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent \ +static_assert(alignof(WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent) == 0x000088, "Wrong size on WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent, Event) == 0x000000, "Member 'WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent, ReturnValue) == 0x000048, "Member 'WidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_GetSafeZonePadding \ +static_assert(alignof(WidgetBlueprintLibrary_GetSafeZonePadding) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_GetSafeZonePadding"); \ +static_assert(sizeof(WidgetBlueprintLibrary_GetSafeZonePadding) == 0x000060, "Wrong size on WidgetBlueprintLibrary_GetSafeZonePadding"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetSafeZonePadding, WorldContextObject) == 0x000000, "Member 'WidgetBlueprintLibrary_GetSafeZonePadding::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetSafeZonePadding, SafePadding) == 0x000010, "Member 'WidgetBlueprintLibrary_GetSafeZonePadding::SafePadding' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetSafeZonePadding, SafePaddingScale) == 0x000030, "Member 'WidgetBlueprintLibrary_GetSafeZonePadding::SafePaddingScale' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_GetSafeZonePadding, SpillOverPadding) == 0x000040, "Member 'WidgetBlueprintLibrary_GetSafeZonePadding::SpillOverPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_Handled \ +static_assert(alignof(WidgetBlueprintLibrary_Handled) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_Handled"); \ +static_assert(sizeof(WidgetBlueprintLibrary_Handled) == 0x0000B8, "Wrong size on WidgetBlueprintLibrary_Handled"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Handled, ReturnValue) == 0x000000, "Member 'WidgetBlueprintLibrary_Handled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_IsDragDropping \ +static_assert(alignof(WidgetBlueprintLibrary_IsDragDropping) == 0x000001, "Wrong alignment on WidgetBlueprintLibrary_IsDragDropping"); \ +static_assert(sizeof(WidgetBlueprintLibrary_IsDragDropping) == 0x000001, "Wrong size on WidgetBlueprintLibrary_IsDragDropping"); \ +static_assert(offsetof(WidgetBlueprintLibrary_IsDragDropping, ReturnValue) == 0x000000, "Member 'WidgetBlueprintLibrary_IsDragDropping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_LockMouse \ +static_assert(alignof(WidgetBlueprintLibrary_LockMouse) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_LockMouse"); \ +static_assert(sizeof(WidgetBlueprintLibrary_LockMouse) == 0x000178, "Wrong size on WidgetBlueprintLibrary_LockMouse"); \ +static_assert(offsetof(WidgetBlueprintLibrary_LockMouse, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_LockMouse::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_LockMouse, CapturingWidget) == 0x0000B8, "Member 'WidgetBlueprintLibrary_LockMouse::CapturingWidget' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_LockMouse, ReturnValue) == 0x0000C0, "Member 'WidgetBlueprintLibrary_LockMouse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_MakeBrushFromAsset \ +static_assert(alignof(WidgetBlueprintLibrary_MakeBrushFromAsset) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_MakeBrushFromAsset"); \ +static_assert(sizeof(WidgetBlueprintLibrary_MakeBrushFromAsset) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_MakeBrushFromAsset"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromAsset, BrushAsset) == 0x000000, "Member 'WidgetBlueprintLibrary_MakeBrushFromAsset::BrushAsset' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromAsset, ReturnValue) == 0x000010, "Member 'WidgetBlueprintLibrary_MakeBrushFromAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_MakeBrushFromMaterial \ +static_assert(alignof(WidgetBlueprintLibrary_MakeBrushFromMaterial) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_MakeBrushFromMaterial"); \ +static_assert(sizeof(WidgetBlueprintLibrary_MakeBrushFromMaterial) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_MakeBrushFromMaterial"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromMaterial, Material) == 0x000000, "Member 'WidgetBlueprintLibrary_MakeBrushFromMaterial::Material' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromMaterial, Width) == 0x000008, "Member 'WidgetBlueprintLibrary_MakeBrushFromMaterial::Width' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromMaterial, Height) == 0x00000C, "Member 'WidgetBlueprintLibrary_MakeBrushFromMaterial::Height' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromMaterial, ReturnValue) == 0x000010, "Member 'WidgetBlueprintLibrary_MakeBrushFromMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_MakeBrushFromTexture \ +static_assert(alignof(WidgetBlueprintLibrary_MakeBrushFromTexture) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_MakeBrushFromTexture"); \ +static_assert(sizeof(WidgetBlueprintLibrary_MakeBrushFromTexture) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_MakeBrushFromTexture"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromTexture, Texture) == 0x000000, "Member 'WidgetBlueprintLibrary_MakeBrushFromTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromTexture, Width) == 0x000008, "Member 'WidgetBlueprintLibrary_MakeBrushFromTexture::Width' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromTexture, Height) == 0x00000C, "Member 'WidgetBlueprintLibrary_MakeBrushFromTexture::Height' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_MakeBrushFromTexture, ReturnValue) == 0x000010, "Member 'WidgetBlueprintLibrary_MakeBrushFromTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_NoResourceBrush \ +static_assert(alignof(WidgetBlueprintLibrary_NoResourceBrush) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_NoResourceBrush"); \ +static_assert(sizeof(WidgetBlueprintLibrary_NoResourceBrush) == 0x0000D0, "Wrong size on WidgetBlueprintLibrary_NoResourceBrush"); \ +static_assert(offsetof(WidgetBlueprintLibrary_NoResourceBrush, ReturnValue) == 0x000000, "Member 'WidgetBlueprintLibrary_NoResourceBrush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_ReleaseJoystickCapture \ +static_assert(alignof(WidgetBlueprintLibrary_ReleaseJoystickCapture) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_ReleaseJoystickCapture"); \ +static_assert(sizeof(WidgetBlueprintLibrary_ReleaseJoystickCapture) == 0x000178, "Wrong size on WidgetBlueprintLibrary_ReleaseJoystickCapture"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ReleaseJoystickCapture, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_ReleaseJoystickCapture::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ReleaseJoystickCapture, bInAllJoysticks) == 0x0000B8, "Member 'WidgetBlueprintLibrary_ReleaseJoystickCapture::bInAllJoysticks' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ReleaseJoystickCapture, ReturnValue) == 0x0000C0, "Member 'WidgetBlueprintLibrary_ReleaseJoystickCapture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_ReleaseMouseCapture \ +static_assert(alignof(WidgetBlueprintLibrary_ReleaseMouseCapture) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_ReleaseMouseCapture"); \ +static_assert(sizeof(WidgetBlueprintLibrary_ReleaseMouseCapture) == 0x000170, "Wrong size on WidgetBlueprintLibrary_ReleaseMouseCapture"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ReleaseMouseCapture, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_ReleaseMouseCapture::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_ReleaseMouseCapture, ReturnValue) == 0x0000B8, "Member 'WidgetBlueprintLibrary_ReleaseMouseCapture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetBrushResourceToMaterial \ +static_assert(alignof(WidgetBlueprintLibrary_SetBrushResourceToMaterial) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_SetBrushResourceToMaterial"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetBrushResourceToMaterial) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_SetBrushResourceToMaterial"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetBrushResourceToMaterial, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_SetBrushResourceToMaterial::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetBrushResourceToMaterial, Material) == 0x0000D0, "Member 'WidgetBlueprintLibrary_SetBrushResourceToMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetBrushResourceToTexture \ +static_assert(alignof(WidgetBlueprintLibrary_SetBrushResourceToTexture) == 0x000010, "Wrong alignment on WidgetBlueprintLibrary_SetBrushResourceToTexture"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetBrushResourceToTexture) == 0x0000E0, "Wrong size on WidgetBlueprintLibrary_SetBrushResourceToTexture"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetBrushResourceToTexture, Brush) == 0x000000, "Member 'WidgetBlueprintLibrary_SetBrushResourceToTexture::Brush' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetBrushResourceToTexture, Texture) == 0x0000D0, "Member 'WidgetBlueprintLibrary_SetBrushResourceToTexture::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetColorVisionDeficiencyType \ +static_assert(alignof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType) == 0x000004, "Wrong alignment on WidgetBlueprintLibrary_SetColorVisionDeficiencyType"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType) == 0x00000C, "Wrong size on WidgetBlueprintLibrary_SetColorVisionDeficiencyType"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType, Type) == 0x000000, "Member 'WidgetBlueprintLibrary_SetColorVisionDeficiencyType::Type' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType, Severity) == 0x000004, "Member 'WidgetBlueprintLibrary_SetColorVisionDeficiencyType::Severity' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType, CorrectDeficiency) == 0x000008, "Member 'WidgetBlueprintLibrary_SetColorVisionDeficiencyType::CorrectDeficiency' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetColorVisionDeficiencyType, ShowCorrectionWithDeficiency) == 0x000009, "Member 'WidgetBlueprintLibrary_SetColorVisionDeficiencyType::ShowCorrectionWithDeficiency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetHardwareCursor \ +static_assert(alignof(WidgetBlueprintLibrary_SetHardwareCursor) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetHardwareCursor"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetHardwareCursor) == 0x000030, "Wrong size on WidgetBlueprintLibrary_SetHardwareCursor"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetHardwareCursor, WorldContextObject) == 0x000000, "Member 'WidgetBlueprintLibrary_SetHardwareCursor::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetHardwareCursor, CursorShape) == 0x000008, "Member 'WidgetBlueprintLibrary_SetHardwareCursor::CursorShape' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetHardwareCursor, CursorName) == 0x00000C, "Member 'WidgetBlueprintLibrary_SetHardwareCursor::CursorName' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetHardwareCursor, HotSpot) == 0x000018, "Member 'WidgetBlueprintLibrary_SetHardwareCursor::HotSpot' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetHardwareCursor, ReturnValue) == 0x000028, "Member 'WidgetBlueprintLibrary_SetHardwareCursor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetInputMode_GameAndUIEx \ +static_assert(alignof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetInputMode_GameAndUIEx"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx) == 0x000018, "Wrong size on WidgetBlueprintLibrary_SetInputMode_GameAndUIEx"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx, PlayerController) == 0x000000, "Member 'WidgetBlueprintLibrary_SetInputMode_GameAndUIEx::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx, InWidgetToFocus) == 0x000008, "Member 'WidgetBlueprintLibrary_SetInputMode_GameAndUIEx::InWidgetToFocus' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx, InMouseLockMode) == 0x000010, "Member 'WidgetBlueprintLibrary_SetInputMode_GameAndUIEx::InMouseLockMode' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx, bHideCursorDuringCapture) == 0x000011, "Member 'WidgetBlueprintLibrary_SetInputMode_GameAndUIEx::bHideCursorDuringCapture' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameAndUIEx, bFlushInput) == 0x000012, "Member 'WidgetBlueprintLibrary_SetInputMode_GameAndUIEx::bFlushInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetInputMode_GameOnly \ +static_assert(alignof(WidgetBlueprintLibrary_SetInputMode_GameOnly) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetInputMode_GameOnly"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetInputMode_GameOnly) == 0x000010, "Wrong size on WidgetBlueprintLibrary_SetInputMode_GameOnly"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameOnly, PlayerController) == 0x000000, "Member 'WidgetBlueprintLibrary_SetInputMode_GameOnly::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_GameOnly, bFlushInput) == 0x000008, "Member 'WidgetBlueprintLibrary_SetInputMode_GameOnly::bFlushInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetInputMode_UIOnlyEx \ +static_assert(alignof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetInputMode_UIOnlyEx"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx) == 0x000018, "Wrong size on WidgetBlueprintLibrary_SetInputMode_UIOnlyEx"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx, PlayerController) == 0x000000, "Member 'WidgetBlueprintLibrary_SetInputMode_UIOnlyEx::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx, InWidgetToFocus) == 0x000008, "Member 'WidgetBlueprintLibrary_SetInputMode_UIOnlyEx::InWidgetToFocus' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx, InMouseLockMode) == 0x000010, "Member 'WidgetBlueprintLibrary_SetInputMode_UIOnlyEx::InMouseLockMode' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetInputMode_UIOnlyEx, bFlushInput) == 0x000011, "Member 'WidgetBlueprintLibrary_SetInputMode_UIOnlyEx::bFlushInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetMousePosition \ +static_assert(alignof(WidgetBlueprintLibrary_SetMousePosition) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetMousePosition"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetMousePosition) == 0x000180, "Wrong size on WidgetBlueprintLibrary_SetMousePosition"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetMousePosition, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_SetMousePosition::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetMousePosition, NewMousePosition) == 0x0000B8, "Member 'WidgetBlueprintLibrary_SetMousePosition::NewMousePosition' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetMousePosition, ReturnValue) == 0x0000C8, "Member 'WidgetBlueprintLibrary_SetMousePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetUserFocus \ +static_assert(alignof(WidgetBlueprintLibrary_SetUserFocus) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetUserFocus"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetUserFocus) == 0x000180, "Wrong size on WidgetBlueprintLibrary_SetUserFocus"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetUserFocus, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_SetUserFocus::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetUserFocus, FocusWidget) == 0x0000B8, "Member 'WidgetBlueprintLibrary_SetUserFocus::FocusWidget' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetUserFocus, bInAllUsers) == 0x0000C0, "Member 'WidgetBlueprintLibrary_SetUserFocus::bInAllUsers' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetUserFocus, ReturnValue) == 0x0000C8, "Member 'WidgetBlueprintLibrary_SetUserFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive \ +static_assert(alignof(WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive) == 0x000001, "Wrong alignment on WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive) == 0x000001, "Wrong size on WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive, bActive) == 0x000000, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive::bActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate \ +static_assert(alignof(WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate) == 0x000004, "Wrong alignment on WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate) == 0x000010, "Wrong size on WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate, Delegate) == 0x000000, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_SetWindowTitleBarState \ +static_assert(alignof(WidgetBlueprintLibrary_SetWindowTitleBarState) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_SetWindowTitleBarState"); \ +static_assert(sizeof(WidgetBlueprintLibrary_SetWindowTitleBarState) == 0x000010, "Wrong size on WidgetBlueprintLibrary_SetWindowTitleBarState"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarState, TitleBarContent) == 0x000000, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarState::TitleBarContent' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarState, Mode) == 0x000008, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarState::Mode' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarState, bTitleBarDragEnabled) == 0x000009, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarState::bTitleBarDragEnabled' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarState, bWindowButtonsVisible) == 0x00000A, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarState::bWindowButtonsVisible' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_SetWindowTitleBarState, bTitleBarVisible) == 0x00000B, "Member 'WidgetBlueprintLibrary_SetWindowTitleBarState::bTitleBarVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_Unhandled \ +static_assert(alignof(WidgetBlueprintLibrary_Unhandled) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_Unhandled"); \ +static_assert(sizeof(WidgetBlueprintLibrary_Unhandled) == 0x0000B8, "Wrong size on WidgetBlueprintLibrary_Unhandled"); \ +static_assert(offsetof(WidgetBlueprintLibrary_Unhandled, ReturnValue) == 0x000000, "Member 'WidgetBlueprintLibrary_Unhandled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetBlueprintLibrary_UnlockMouse \ +static_assert(alignof(WidgetBlueprintLibrary_UnlockMouse) == 0x000008, "Wrong alignment on WidgetBlueprintLibrary_UnlockMouse"); \ +static_assert(sizeof(WidgetBlueprintLibrary_UnlockMouse) == 0x000170, "Wrong size on WidgetBlueprintLibrary_UnlockMouse"); \ +static_assert(offsetof(WidgetBlueprintLibrary_UnlockMouse, Reply) == 0x000000, "Member 'WidgetBlueprintLibrary_UnlockMouse::Reply' has a wrong offset!"); \ +static_assert(offsetof(WidgetBlueprintLibrary_UnlockMouse, ReturnValue) == 0x0000B8, "Member 'WidgetBlueprintLibrary_UnlockMouse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetBlueprintLibrary \ +static_assert(alignof(UWidgetBlueprintLibrary) == 0x000008, "Wrong alignment on UWidgetBlueprintLibrary"); \ +static_assert(sizeof(UWidgetBlueprintLibrary) == 0x000028, "Wrong size on UWidgetBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UWidgetFieldNotificationExtension \ +static_assert(alignof(UWidgetFieldNotificationExtension) == 0x000008, "Wrong alignment on UWidgetFieldNotificationExtension"); \ +static_assert(sizeof(UWidgetFieldNotificationExtension) == 0x000040, "Wrong size on UWidgetFieldNotificationExtension"); \ + +#define DUMPER7_ASSERTS_UWidgetNavigation \ +static_assert(alignof(UWidgetNavigation) == 0x000008, "Wrong alignment on UWidgetNavigation"); \ +static_assert(sizeof(UWidgetNavigation) == 0x000100, "Wrong size on UWidgetNavigation"); \ +static_assert(offsetof(UWidgetNavigation, Up) == 0x000028, "Member 'UWidgetNavigation::Up' has a wrong offset!"); \ +static_assert(offsetof(UWidgetNavigation, Down) == 0x00004C, "Member 'UWidgetNavigation::Down' has a wrong offset!"); \ +static_assert(offsetof(UWidgetNavigation, Left) == 0x000070, "Member 'UWidgetNavigation::Left' has a wrong offset!"); \ +static_assert(offsetof(UWidgetNavigation, Right) == 0x000094, "Member 'UWidgetNavigation::Right' has a wrong offset!"); \ +static_assert(offsetof(UWidgetNavigation, Next) == 0x0000B8, "Member 'UWidgetNavigation::Next' has a wrong offset!"); \ +static_assert(offsetof(UWidgetNavigation, Previous) == 0x0000DC, "Member 'UWidgetNavigation::Previous' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScene2DTransformPropertySystem \ +static_assert(alignof(UMovieScene2DTransformPropertySystem) == 0x000008, "Wrong alignment on UMovieScene2DTransformPropertySystem"); \ +static_assert(sizeof(UMovieScene2DTransformPropertySystem) == 0x000058, "Wrong size on UMovieScene2DTransformPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieScene2DTransformSection \ +static_assert(alignof(UMovieScene2DTransformSection) == 0x000008, "Wrong alignment on UMovieScene2DTransformSection"); \ +static_assert(sizeof(UMovieScene2DTransformSection) == 0x000870, "Wrong size on UMovieScene2DTransformSection"); \ +static_assert(offsetof(UMovieScene2DTransformSection, TransformMask) == 0x0000F8, "Member 'UMovieScene2DTransformSection::TransformMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene2DTransformSection, Translation) == 0x000100, "Member 'UMovieScene2DTransformSection::Translation' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene2DTransformSection, Rotation) == 0x000320, "Member 'UMovieScene2DTransformSection::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene2DTransformSection, Scale) == 0x000430, "Member 'UMovieScene2DTransformSection::Scale' has a wrong offset!"); \ +static_assert(offsetof(UMovieScene2DTransformSection, Shear) == 0x000650, "Member 'UMovieScene2DTransformSection::Shear' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScene2DTransformTrack \ +static_assert(alignof(UMovieScene2DTransformTrack) == 0x000008, "Wrong alignment on UMovieScene2DTransformTrack"); \ +static_assert(sizeof(UMovieScene2DTransformTrack) == 0x0000C8, "Wrong size on UMovieScene2DTransformTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMarginPropertySystem \ +static_assert(alignof(UMovieSceneMarginPropertySystem) == 0x000008, "Wrong alignment on UMovieSceneMarginPropertySystem"); \ +static_assert(sizeof(UMovieSceneMarginPropertySystem) == 0x000058, "Wrong size on UMovieSceneMarginPropertySystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMarginSection \ +static_assert(alignof(UMovieSceneMarginSection) == 0x000008, "Wrong alignment on UMovieSceneMarginSection"); \ +static_assert(sizeof(UMovieSceneMarginSection) == 0x000538, "Wrong size on UMovieSceneMarginSection"); \ +static_assert(offsetof(UMovieSceneMarginSection, TopCurve) == 0x0000F8, "Member 'UMovieSceneMarginSection::TopCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMarginSection, LeftCurve) == 0x000208, "Member 'UMovieSceneMarginSection::LeftCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMarginSection, RightCurve) == 0x000318, "Member 'UMovieSceneMarginSection::RightCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMarginSection, BottomCurve) == 0x000428, "Member 'UMovieSceneMarginSection::BottomCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMarginTrack \ +static_assert(alignof(UMovieSceneMarginTrack) == 0x000008, "Wrong alignment on UMovieSceneMarginTrack"); \ +static_assert(sizeof(UMovieSceneMarginTrack) == 0x0000C8, "Wrong size on UMovieSceneMarginTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneWidgetMaterialSystem \ +static_assert(alignof(UMovieSceneWidgetMaterialSystem) == 0x000008, "Wrong alignment on UMovieSceneWidgetMaterialSystem"); \ +static_assert(sizeof(UMovieSceneWidgetMaterialSystem) == 0x0001A0, "Wrong size on UMovieSceneWidgetMaterialSystem"); \ + +#define DUMPER7_ASSERTS_UMovieSceneWidgetMaterialTrack \ +static_assert(alignof(UMovieSceneWidgetMaterialTrack) == 0x000008, "Wrong alignment on UMovieSceneWidgetMaterialTrack"); \ +static_assert(sizeof(UMovieSceneWidgetMaterialTrack) == 0x0000D8, "Wrong size on UMovieSceneWidgetMaterialTrack"); \ +static_assert(offsetof(UMovieSceneWidgetMaterialTrack, BrushPropertyNamePath) == 0x0000C0, "Member 'UMovieSceneWidgetMaterialTrack::BrushPropertyNamePath' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneWidgetMaterialTrack, TrackName) == 0x0000D0, "Member 'UMovieSceneWidgetMaterialTrack::TrackName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMGSequencePlayer_SetUserTag \ +static_assert(alignof(UMGSequencePlayer_SetUserTag) == 0x000004, "Wrong alignment on UMGSequencePlayer_SetUserTag"); \ +static_assert(sizeof(UMGSequencePlayer_SetUserTag) == 0x000008, "Wrong size on UMGSequencePlayer_SetUserTag"); \ +static_assert(offsetof(UMGSequencePlayer_SetUserTag, InUserTag) == 0x000000, "Member 'UMGSequencePlayer_SetUserTag::InUserTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMGSequencePlayer_GetUserTag \ +static_assert(alignof(UMGSequencePlayer_GetUserTag) == 0x000004, "Wrong alignment on UMGSequencePlayer_GetUserTag"); \ +static_assert(sizeof(UMGSequencePlayer_GetUserTag) == 0x000008, "Wrong size on UMGSequencePlayer_GetUserTag"); \ +static_assert(offsetof(UMGSequencePlayer_GetUserTag, ReturnValue) == 0x000000, "Member 'UMGSequencePlayer_GetUserTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUMGSequencePlayer \ +static_assert(alignof(UUMGSequencePlayer) == 0x000008, "Wrong alignment on UUMGSequencePlayer"); \ +static_assert(sizeof(UUMGSequencePlayer) == 0x000338, "Wrong size on UUMGSequencePlayer"); \ +static_assert(offsetof(UUMGSequencePlayer, Animation) == 0x000220, "Member 'UUMGSequencePlayer::Animation' has a wrong offset!"); \ +static_assert(offsetof(UUMGSequencePlayer, RootTemplateInstance) == 0x000230, "Member 'UUMGSequencePlayer::RootTemplateInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUMGSequenceTickManager \ +static_assert(alignof(UUMGSequenceTickManager) == 0x000008, "Wrong alignment on UUMGSequenceTickManager"); \ +static_assert(sizeof(UUMGSequenceTickManager) == 0x0000C0, "Wrong size on UUMGSequenceTickManager"); \ +static_assert(offsetof(UUMGSequenceTickManager, WeakUserWidgetData) == 0x000028, "Member 'UUMGSequenceTickManager::WeakUserWidgetData' has a wrong offset!"); \ +static_assert(offsetof(UUMGSequenceTickManager, Linker) == 0x000078, "Member 'UUMGSequenceTickManager::Linker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_BindToAnimationFinished \ +static_assert(alignof(WidgetAnimation_BindToAnimationFinished) == 0x000008, "Wrong alignment on WidgetAnimation_BindToAnimationFinished"); \ +static_assert(sizeof(WidgetAnimation_BindToAnimationFinished) == 0x000018, "Wrong size on WidgetAnimation_BindToAnimationFinished"); \ +static_assert(offsetof(WidgetAnimation_BindToAnimationFinished, Widget) == 0x000000, "Member 'WidgetAnimation_BindToAnimationFinished::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimation_BindToAnimationFinished, Delegate) == 0x000008, "Member 'WidgetAnimation_BindToAnimationFinished::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_BindToAnimationStarted \ +static_assert(alignof(WidgetAnimation_BindToAnimationStarted) == 0x000008, "Wrong alignment on WidgetAnimation_BindToAnimationStarted"); \ +static_assert(sizeof(WidgetAnimation_BindToAnimationStarted) == 0x000018, "Wrong size on WidgetAnimation_BindToAnimationStarted"); \ +static_assert(offsetof(WidgetAnimation_BindToAnimationStarted, Widget) == 0x000000, "Member 'WidgetAnimation_BindToAnimationStarted::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimation_BindToAnimationStarted, Delegate) == 0x000008, "Member 'WidgetAnimation_BindToAnimationStarted::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_UnbindAllFromAnimationFinished \ +static_assert(alignof(WidgetAnimation_UnbindAllFromAnimationFinished) == 0x000008, "Wrong alignment on WidgetAnimation_UnbindAllFromAnimationFinished"); \ +static_assert(sizeof(WidgetAnimation_UnbindAllFromAnimationFinished) == 0x000008, "Wrong size on WidgetAnimation_UnbindAllFromAnimationFinished"); \ +static_assert(offsetof(WidgetAnimation_UnbindAllFromAnimationFinished, Widget) == 0x000000, "Member 'WidgetAnimation_UnbindAllFromAnimationFinished::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_UnbindAllFromAnimationStarted \ +static_assert(alignof(WidgetAnimation_UnbindAllFromAnimationStarted) == 0x000008, "Wrong alignment on WidgetAnimation_UnbindAllFromAnimationStarted"); \ +static_assert(sizeof(WidgetAnimation_UnbindAllFromAnimationStarted) == 0x000008, "Wrong size on WidgetAnimation_UnbindAllFromAnimationStarted"); \ +static_assert(offsetof(WidgetAnimation_UnbindAllFromAnimationStarted, Widget) == 0x000000, "Member 'WidgetAnimation_UnbindAllFromAnimationStarted::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_UnbindFromAnimationFinished \ +static_assert(alignof(WidgetAnimation_UnbindFromAnimationFinished) == 0x000008, "Wrong alignment on WidgetAnimation_UnbindFromAnimationFinished"); \ +static_assert(sizeof(WidgetAnimation_UnbindFromAnimationFinished) == 0x000018, "Wrong size on WidgetAnimation_UnbindFromAnimationFinished"); \ +static_assert(offsetof(WidgetAnimation_UnbindFromAnimationFinished, Widget) == 0x000000, "Member 'WidgetAnimation_UnbindFromAnimationFinished::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimation_UnbindFromAnimationFinished, Delegate) == 0x000008, "Member 'WidgetAnimation_UnbindFromAnimationFinished::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_UnbindFromAnimationStarted \ +static_assert(alignof(WidgetAnimation_UnbindFromAnimationStarted) == 0x000008, "Wrong alignment on WidgetAnimation_UnbindFromAnimationStarted"); \ +static_assert(sizeof(WidgetAnimation_UnbindFromAnimationStarted) == 0x000018, "Wrong size on WidgetAnimation_UnbindFromAnimationStarted"); \ +static_assert(offsetof(WidgetAnimation_UnbindFromAnimationStarted, Widget) == 0x000000, "Member 'WidgetAnimation_UnbindFromAnimationStarted::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimation_UnbindFromAnimationStarted, Delegate) == 0x000008, "Member 'WidgetAnimation_UnbindFromAnimationStarted::Delegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_GetEndTime \ +static_assert(alignof(WidgetAnimation_GetEndTime) == 0x000004, "Wrong alignment on WidgetAnimation_GetEndTime"); \ +static_assert(sizeof(WidgetAnimation_GetEndTime) == 0x000004, "Wrong size on WidgetAnimation_GetEndTime"); \ +static_assert(offsetof(WidgetAnimation_GetEndTime, ReturnValue) == 0x000000, "Member 'WidgetAnimation_GetEndTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimation_GetStartTime \ +static_assert(alignof(WidgetAnimation_GetStartTime) == 0x000004, "Wrong alignment on WidgetAnimation_GetStartTime"); \ +static_assert(sizeof(WidgetAnimation_GetStartTime) == 0x000004, "Wrong size on WidgetAnimation_GetStartTime"); \ +static_assert(offsetof(WidgetAnimation_GetStartTime, ReturnValue) == 0x000000, "Member 'WidgetAnimation_GetStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetAnimation \ +static_assert(alignof(UWidgetAnimation) == 0x000008, "Wrong alignment on UWidgetAnimation"); \ +static_assert(sizeof(UWidgetAnimation) == 0x000098, "Wrong size on UWidgetAnimation"); \ +static_assert(offsetof(UWidgetAnimation, MovieScene) == 0x000068, "Member 'UWidgetAnimation::MovieScene' has a wrong offset!"); \ +static_assert(offsetof(UWidgetAnimation, AnimationBindings) == 0x000070, "Member 'UWidgetAnimation::AnimationBindings' has a wrong offset!"); \ +static_assert(offsetof(UWidgetAnimation, bLegacyFinishOnStop) == 0x000080, "Member 'UWidgetAnimation::bLegacyFinishOnStop' has a wrong offset!"); \ +static_assert(offsetof(UWidgetAnimation, DisplayLabel) == 0x000088, "Member 'UWidgetAnimation::DisplayLabel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetAnimationDelegateBinding \ +static_assert(alignof(UWidgetAnimationDelegateBinding) == 0x000008, "Wrong alignment on UWidgetAnimationDelegateBinding"); \ +static_assert(sizeof(UWidgetAnimationDelegateBinding) == 0x000038, "Wrong size on UWidgetAnimationDelegateBinding"); \ +static_assert(offsetof(UWidgetAnimationDelegateBinding, WidgetAnimationDelegateBindings) == 0x000028, "Member 'UWidgetAnimationDelegateBinding::WidgetAnimationDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject \ +static_assert(alignof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject) == 0x000008, "Wrong alignment on WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject"); \ +static_assert(sizeof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject) == 0x000030, "Wrong size on WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, Result) == 0x000000, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::Result' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, Widget) == 0x000008, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, InAnimation) == 0x000010, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, StartAtTime) == 0x000018, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::StartAtTime' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, NumLoopsToPlay) == 0x00001C, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::NumLoopsToPlay' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, PlayMode) == 0x000020, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::PlayMode' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, PlaybackSpeed) == 0x000024, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject, ReturnValue) == 0x000028, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject \ +static_assert(alignof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject) == 0x000008, "Wrong alignment on WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject"); \ +static_assert(sizeof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject) == 0x000038, "Wrong size on WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, Result) == 0x000000, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::Result' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, Widget) == 0x000008, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, InAnimation) == 0x000010, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, StartAtTime) == 0x000018, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::StartAtTime' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, EndAtTime) == 0x00001C, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::EndAtTime' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, NumLoopsToPlay) == 0x000020, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::NumLoopsToPlay' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, PlayMode) == 0x000024, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::PlayMode' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, PlaybackSpeed) == 0x000028, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject, ReturnValue) == 0x000030, "Member 'WidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetAnimationPlayCallbackProxy \ +static_assert(alignof(UWidgetAnimationPlayCallbackProxy) == 0x000008, "Wrong alignment on UWidgetAnimationPlayCallbackProxy"); \ +static_assert(sizeof(UWidgetAnimationPlayCallbackProxy) == 0x000040, "Wrong size on UWidgetAnimationPlayCallbackProxy"); \ +static_assert(offsetof(UWidgetAnimationPlayCallbackProxy, Finished) == 0x000028, "Member 'UWidgetAnimationPlayCallbackProxy::Finished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPropertyBinding \ +static_assert(alignof(UPropertyBinding) == 0x000008, "Wrong alignment on UPropertyBinding"); \ +static_assert(sizeof(UPropertyBinding) == 0x000070, "Wrong size on UPropertyBinding"); \ +static_assert(offsetof(UPropertyBinding, SourceObject) == 0x000028, "Member 'UPropertyBinding::SourceObject' has a wrong offset!"); \ +static_assert(offsetof(UPropertyBinding, SourcePath) == 0x000030, "Member 'UPropertyBinding::SourcePath' has a wrong offset!"); \ +static_assert(offsetof(UPropertyBinding, DestinationProperty) == 0x000068, "Member 'UPropertyBinding::DestinationProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BoolBinding_GetValue \ +static_assert(alignof(BoolBinding_GetValue) == 0x000001, "Wrong alignment on BoolBinding_GetValue"); \ +static_assert(sizeof(BoolBinding_GetValue) == 0x000001, "Wrong size on BoolBinding_GetValue"); \ +static_assert(offsetof(BoolBinding_GetValue, ReturnValue) == 0x000000, "Member 'BoolBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoolBinding \ +static_assert(alignof(UBoolBinding) == 0x000008, "Wrong alignment on UBoolBinding"); \ +static_assert(sizeof(UBoolBinding) == 0x000070, "Wrong size on UBoolBinding"); \ + +#define DUMPER7_ASSERTS_BrushBinding_GetValue \ +static_assert(alignof(BrushBinding_GetValue) == 0x000010, "Wrong alignment on BrushBinding_GetValue"); \ +static_assert(sizeof(BrushBinding_GetValue) == 0x0000D0, "Wrong size on BrushBinding_GetValue"); \ +static_assert(offsetof(BrushBinding_GetValue, ReturnValue) == 0x000000, "Member 'BrushBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrushBinding \ +static_assert(alignof(UBrushBinding) == 0x000008, "Wrong alignment on UBrushBinding"); \ +static_assert(sizeof(UBrushBinding) == 0x000078, "Wrong size on UBrushBinding"); \ + +#define DUMPER7_ASSERTS_CheckedStateBinding_GetValue \ +static_assert(alignof(CheckedStateBinding_GetValue) == 0x000001, "Wrong alignment on CheckedStateBinding_GetValue"); \ +static_assert(sizeof(CheckedStateBinding_GetValue) == 0x000001, "Wrong size on CheckedStateBinding_GetValue"); \ +static_assert(offsetof(CheckedStateBinding_GetValue, ReturnValue) == 0x000000, "Member 'CheckedStateBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckedStateBinding \ +static_assert(alignof(UCheckedStateBinding) == 0x000008, "Wrong alignment on UCheckedStateBinding"); \ +static_assert(sizeof(UCheckedStateBinding) == 0x000078, "Wrong size on UCheckedStateBinding"); \ + +#define DUMPER7_ASSERTS_ColorBinding_GetLinearValue \ +static_assert(alignof(ColorBinding_GetLinearValue) == 0x000004, "Wrong alignment on ColorBinding_GetLinearValue"); \ +static_assert(sizeof(ColorBinding_GetLinearValue) == 0x000010, "Wrong size on ColorBinding_GetLinearValue"); \ +static_assert(offsetof(ColorBinding_GetLinearValue, ReturnValue) == 0x000000, "Member 'ColorBinding_GetLinearValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ColorBinding_GetSlateValue \ +static_assert(alignof(ColorBinding_GetSlateValue) == 0x000004, "Wrong alignment on ColorBinding_GetSlateValue"); \ +static_assert(sizeof(ColorBinding_GetSlateValue) == 0x000014, "Wrong size on ColorBinding_GetSlateValue"); \ +static_assert(offsetof(ColorBinding_GetSlateValue, ReturnValue) == 0x000000, "Member 'ColorBinding_GetSlateValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UColorBinding \ +static_assert(alignof(UColorBinding) == 0x000008, "Wrong alignment on UColorBinding"); \ +static_assert(sizeof(UColorBinding) == 0x000078, "Wrong size on UColorBinding"); \ + +#define DUMPER7_ASSERTS_FloatBinding_GetValue \ +static_assert(alignof(FloatBinding_GetValue) == 0x000004, "Wrong alignment on FloatBinding_GetValue"); \ +static_assert(sizeof(FloatBinding_GetValue) == 0x000004, "Wrong size on FloatBinding_GetValue"); \ +static_assert(offsetof(FloatBinding_GetValue, ReturnValue) == 0x000000, "Member 'FloatBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFloatBinding \ +static_assert(alignof(UFloatBinding) == 0x000008, "Wrong alignment on UFloatBinding"); \ +static_assert(sizeof(UFloatBinding) == 0x000070, "Wrong size on UFloatBinding"); \ + +#define DUMPER7_ASSERTS_Int32Binding_GetValue \ +static_assert(alignof(Int32Binding_GetValue) == 0x000004, "Wrong alignment on Int32Binding_GetValue"); \ +static_assert(sizeof(Int32Binding_GetValue) == 0x000004, "Wrong size on Int32Binding_GetValue"); \ +static_assert(offsetof(Int32Binding_GetValue, ReturnValue) == 0x000000, "Member 'Int32Binding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInt32Binding \ +static_assert(alignof(UInt32Binding) == 0x000008, "Wrong alignment on UInt32Binding"); \ +static_assert(sizeof(UInt32Binding) == 0x000070, "Wrong size on UInt32Binding"); \ + +#define DUMPER7_ASSERTS_MouseCursorBinding_GetValue \ +static_assert(alignof(MouseCursorBinding_GetValue) == 0x000001, "Wrong alignment on MouseCursorBinding_GetValue"); \ +static_assert(sizeof(MouseCursorBinding_GetValue) == 0x000001, "Wrong size on MouseCursorBinding_GetValue"); \ +static_assert(offsetof(MouseCursorBinding_GetValue, ReturnValue) == 0x000000, "Member 'MouseCursorBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMouseCursorBinding \ +static_assert(alignof(UMouseCursorBinding) == 0x000008, "Wrong alignment on UMouseCursorBinding"); \ +static_assert(sizeof(UMouseCursorBinding) == 0x000070, "Wrong size on UMouseCursorBinding"); \ + +#define DUMPER7_ASSERTS_UWidgetBinaryStateRegistration \ +static_assert(alignof(UWidgetBinaryStateRegistration) == 0x000008, "Wrong alignment on UWidgetBinaryStateRegistration"); \ +static_assert(sizeof(UWidgetBinaryStateRegistration) == 0x000028, "Wrong size on UWidgetBinaryStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetHoveredStateRegistration \ +static_assert(alignof(UWidgetHoveredStateRegistration) == 0x000008, "Wrong alignment on UWidgetHoveredStateRegistration"); \ +static_assert(sizeof(UWidgetHoveredStateRegistration) == 0x000028, "Wrong size on UWidgetHoveredStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetPressedStateRegistration \ +static_assert(alignof(UWidgetPressedStateRegistration) == 0x000008, "Wrong alignment on UWidgetPressedStateRegistration"); \ +static_assert(sizeof(UWidgetPressedStateRegistration) == 0x000028, "Wrong size on UWidgetPressedStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetDisabledStateRegistration \ +static_assert(alignof(UWidgetDisabledStateRegistration) == 0x000008, "Wrong alignment on UWidgetDisabledStateRegistration"); \ +static_assert(sizeof(UWidgetDisabledStateRegistration) == 0x000028, "Wrong size on UWidgetDisabledStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetSelectedStateRegistration \ +static_assert(alignof(UWidgetSelectedStateRegistration) == 0x000008, "Wrong alignment on UWidgetSelectedStateRegistration"); \ +static_assert(sizeof(UWidgetSelectedStateRegistration) == 0x000028, "Wrong size on UWidgetSelectedStateRegistration"); \ + +#define DUMPER7_ASSERTS_UWidgetStateSettings \ +static_assert(alignof(UWidgetStateSettings) == 0x000008, "Wrong alignment on UWidgetStateSettings"); \ +static_assert(sizeof(UWidgetStateSettings) == 0x0006E8, "Wrong size on UWidgetStateSettings"); \ + +#define DUMPER7_ASSERTS_TextBinding_GetStringValue \ +static_assert(alignof(TextBinding_GetStringValue) == 0x000008, "Wrong alignment on TextBinding_GetStringValue"); \ +static_assert(sizeof(TextBinding_GetStringValue) == 0x000010, "Wrong size on TextBinding_GetStringValue"); \ +static_assert(offsetof(TextBinding_GetStringValue, ReturnValue) == 0x000000, "Member 'TextBinding_GetStringValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBinding_GetTextValue \ +static_assert(alignof(TextBinding_GetTextValue) == 0x000008, "Wrong alignment on TextBinding_GetTextValue"); \ +static_assert(sizeof(TextBinding_GetTextValue) == 0x000018, "Wrong size on TextBinding_GetTextValue"); \ +static_assert(offsetof(TextBinding_GetTextValue, ReturnValue) == 0x000000, "Member 'TextBinding_GetTextValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextBinding \ +static_assert(alignof(UTextBinding) == 0x000008, "Wrong alignment on UTextBinding"); \ +static_assert(sizeof(UTextBinding) == 0x000078, "Wrong size on UTextBinding"); \ + +#define DUMPER7_ASSERTS_VisibilityBinding_GetValue \ +static_assert(alignof(VisibilityBinding_GetValue) == 0x000001, "Wrong alignment on VisibilityBinding_GetValue"); \ +static_assert(sizeof(VisibilityBinding_GetValue) == 0x000001, "Wrong size on VisibilityBinding_GetValue"); \ +static_assert(offsetof(VisibilityBinding_GetValue, ReturnValue) == 0x000000, "Member 'VisibilityBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVisibilityBinding \ +static_assert(alignof(UVisibilityBinding) == 0x000008, "Wrong alignment on UVisibilityBinding"); \ +static_assert(sizeof(UVisibilityBinding) == 0x000070, "Wrong size on UVisibilityBinding"); \ + +#define DUMPER7_ASSERTS_WidgetBinding_GetValue \ +static_assert(alignof(WidgetBinding_GetValue) == 0x000008, "Wrong alignment on WidgetBinding_GetValue"); \ +static_assert(sizeof(WidgetBinding_GetValue) == 0x000008, "Wrong size on WidgetBinding_GetValue"); \ +static_assert(offsetof(WidgetBinding_GetValue, ReturnValue) == 0x000000, "Member 'WidgetBinding_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetBinding \ +static_assert(alignof(UWidgetBinding) == 0x000008, "Wrong alignment on UWidgetBinding"); \ +static_assert(sizeof(UWidgetBinding) == 0x000070, "Wrong size on UWidgetBinding"); \ + +#define DUMPER7_ASSERTS_AsyncTaskDownloadImage_DownloadImage \ +static_assert(alignof(AsyncTaskDownloadImage_DownloadImage) == 0x000008, "Wrong alignment on AsyncTaskDownloadImage_DownloadImage"); \ +static_assert(sizeof(AsyncTaskDownloadImage_DownloadImage) == 0x000018, "Wrong size on AsyncTaskDownloadImage_DownloadImage"); \ +static_assert(offsetof(AsyncTaskDownloadImage_DownloadImage, URL) == 0x000000, "Member 'AsyncTaskDownloadImage_DownloadImage::URL' has a wrong offset!"); \ +static_assert(offsetof(AsyncTaskDownloadImage_DownloadImage, ReturnValue) == 0x000010, "Member 'AsyncTaskDownloadImage_DownloadImage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncTaskDownloadImage \ +static_assert(alignof(UAsyncTaskDownloadImage) == 0x000008, "Wrong alignment on UAsyncTaskDownloadImage"); \ +static_assert(sizeof(UAsyncTaskDownloadImage) == 0x000050, "Wrong size on UAsyncTaskDownloadImage"); \ +static_assert(offsetof(UAsyncTaskDownloadImage, OnSuccess) == 0x000030, "Member 'UAsyncTaskDownloadImage::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UAsyncTaskDownloadImage, OnFail) == 0x000040, "Member 'UAsyncTaskDownloadImage::OnFail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_SetWidgetSlotDesiredSize \ +static_assert(alignof(GameViewportSubsystem_SetWidgetSlotDesiredSize) == 0x000008, "Wrong alignment on GameViewportSubsystem_SetWidgetSlotDesiredSize"); \ +static_assert(sizeof(GameViewportSubsystem_SetWidgetSlotDesiredSize) == 0x0000A0, "Wrong size on GameViewportSubsystem_SetWidgetSlotDesiredSize"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotDesiredSize, Slot) == 0x000000, "Member 'GameViewportSubsystem_SetWidgetSlotDesiredSize::Slot' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotDesiredSize, Size) == 0x000048, "Member 'GameViewportSubsystem_SetWidgetSlotDesiredSize::Size' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotDesiredSize, ReturnValue) == 0x000058, "Member 'GameViewportSubsystem_SetWidgetSlotDesiredSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_SetWidgetSlotPosition \ +static_assert(alignof(GameViewportSubsystem_SetWidgetSlotPosition) == 0x000008, "Wrong alignment on GameViewportSubsystem_SetWidgetSlotPosition"); \ +static_assert(sizeof(GameViewportSubsystem_SetWidgetSlotPosition) == 0x0000B0, "Wrong size on GameViewportSubsystem_SetWidgetSlotPosition"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotPosition, Slot) == 0x000000, "Member 'GameViewportSubsystem_SetWidgetSlotPosition::Slot' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotPosition, Widget) == 0x000048, "Member 'GameViewportSubsystem_SetWidgetSlotPosition::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotPosition, Position) == 0x000050, "Member 'GameViewportSubsystem_SetWidgetSlotPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotPosition, bRemoveDPIScale) == 0x000060, "Member 'GameViewportSubsystem_SetWidgetSlotPosition::bRemoveDPIScale' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlotPosition, ReturnValue) == 0x000068, "Member 'GameViewportSubsystem_SetWidgetSlotPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_AddWidget \ +static_assert(alignof(GameViewportSubsystem_AddWidget) == 0x000008, "Wrong alignment on GameViewportSubsystem_AddWidget"); \ +static_assert(sizeof(GameViewportSubsystem_AddWidget) == 0x000058, "Wrong size on GameViewportSubsystem_AddWidget"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidget, Widget) == 0x000000, "Member 'GameViewportSubsystem_AddWidget::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidget, Slot) == 0x000008, "Member 'GameViewportSubsystem_AddWidget::Slot' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidget, ReturnValue) == 0x000050, "Member 'GameViewportSubsystem_AddWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_AddWidgetForPlayer \ +static_assert(alignof(GameViewportSubsystem_AddWidgetForPlayer) == 0x000008, "Wrong alignment on GameViewportSubsystem_AddWidgetForPlayer"); \ +static_assert(sizeof(GameViewportSubsystem_AddWidgetForPlayer) == 0x000060, "Wrong size on GameViewportSubsystem_AddWidgetForPlayer"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidgetForPlayer, Widget) == 0x000000, "Member 'GameViewportSubsystem_AddWidgetForPlayer::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidgetForPlayer, Player) == 0x000008, "Member 'GameViewportSubsystem_AddWidgetForPlayer::Player' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidgetForPlayer, Slot) == 0x000010, "Member 'GameViewportSubsystem_AddWidgetForPlayer::Slot' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_AddWidgetForPlayer, ReturnValue) == 0x000058, "Member 'GameViewportSubsystem_AddWidgetForPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_RemoveWidget \ +static_assert(alignof(GameViewportSubsystem_RemoveWidget) == 0x000008, "Wrong alignment on GameViewportSubsystem_RemoveWidget"); \ +static_assert(sizeof(GameViewportSubsystem_RemoveWidget) == 0x000008, "Wrong size on GameViewportSubsystem_RemoveWidget"); \ +static_assert(offsetof(GameViewportSubsystem_RemoveWidget, Widget) == 0x000000, "Member 'GameViewportSubsystem_RemoveWidget::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_SetWidgetSlot \ +static_assert(alignof(GameViewportSubsystem_SetWidgetSlot) == 0x000008, "Wrong alignment on GameViewportSubsystem_SetWidgetSlot"); \ +static_assert(sizeof(GameViewportSubsystem_SetWidgetSlot) == 0x000050, "Wrong size on GameViewportSubsystem_SetWidgetSlot"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlot, Widget) == 0x000000, "Member 'GameViewportSubsystem_SetWidgetSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_SetWidgetSlot, Slot) == 0x000008, "Member 'GameViewportSubsystem_SetWidgetSlot::Slot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_GetWidgetSlot \ +static_assert(alignof(GameViewportSubsystem_GetWidgetSlot) == 0x000008, "Wrong alignment on GameViewportSubsystem_GetWidgetSlot"); \ +static_assert(sizeof(GameViewportSubsystem_GetWidgetSlot) == 0x000050, "Wrong size on GameViewportSubsystem_GetWidgetSlot"); \ +static_assert(offsetof(GameViewportSubsystem_GetWidgetSlot, Widget) == 0x000000, "Member 'GameViewportSubsystem_GetWidgetSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_GetWidgetSlot, ReturnValue) == 0x000008, "Member 'GameViewportSubsystem_GetWidgetSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameViewportSubsystem_IsWidgetAdded \ +static_assert(alignof(GameViewportSubsystem_IsWidgetAdded) == 0x000008, "Wrong alignment on GameViewportSubsystem_IsWidgetAdded"); \ +static_assert(sizeof(GameViewportSubsystem_IsWidgetAdded) == 0x000010, "Wrong size on GameViewportSubsystem_IsWidgetAdded"); \ +static_assert(offsetof(GameViewportSubsystem_IsWidgetAdded, Widget) == 0x000000, "Member 'GameViewportSubsystem_IsWidgetAdded::Widget' has a wrong offset!"); \ +static_assert(offsetof(GameViewportSubsystem_IsWidgetAdded, ReturnValue) == 0x000008, "Member 'GameViewportSubsystem_IsWidgetAdded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameViewportSubsystem \ +static_assert(alignof(UGameViewportSubsystem) == 0x000008, "Wrong alignment on UGameViewportSubsystem"); \ +static_assert(sizeof(UGameViewportSubsystem) == 0x0000B0, "Wrong size on UGameViewportSubsystem"); \ + +#define DUMPER7_ASSERTS_UserListEntry_BP_OnItemExpansionChanged \ +static_assert(alignof(UserListEntry_BP_OnItemExpansionChanged) == 0x000001, "Wrong alignment on UserListEntry_BP_OnItemExpansionChanged"); \ +static_assert(sizeof(UserListEntry_BP_OnItemExpansionChanged) == 0x000001, "Wrong size on UserListEntry_BP_OnItemExpansionChanged"); \ +static_assert(offsetof(UserListEntry_BP_OnItemExpansionChanged, bIsExpanded) == 0x000000, "Member 'UserListEntry_BP_OnItemExpansionChanged::bIsExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserListEntry_BP_OnItemSelectionChanged \ +static_assert(alignof(UserListEntry_BP_OnItemSelectionChanged) == 0x000001, "Wrong alignment on UserListEntry_BP_OnItemSelectionChanged"); \ +static_assert(sizeof(UserListEntry_BP_OnItemSelectionChanged) == 0x000001, "Wrong size on UserListEntry_BP_OnItemSelectionChanged"); \ +static_assert(offsetof(UserListEntry_BP_OnItemSelectionChanged, bIsSelected) == 0x000000, "Member 'UserListEntry_BP_OnItemSelectionChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IUserListEntry \ +static_assert(alignof(IUserListEntry) == 0x000001, "Wrong alignment on IUserListEntry"); \ +static_assert(sizeof(IUserListEntry) == 0x000001, "Wrong size on IUserListEntry"); \ + +#define DUMPER7_ASSERTS_UserListEntryLibrary_GetOwningListView \ +static_assert(alignof(UserListEntryLibrary_GetOwningListView) == 0x000008, "Wrong alignment on UserListEntryLibrary_GetOwningListView"); \ +static_assert(sizeof(UserListEntryLibrary_GetOwningListView) == 0x000018, "Wrong size on UserListEntryLibrary_GetOwningListView"); \ +static_assert(offsetof(UserListEntryLibrary_GetOwningListView, UserListEntry) == 0x000000, "Member 'UserListEntryLibrary_GetOwningListView::UserListEntry' has a wrong offset!"); \ +static_assert(offsetof(UserListEntryLibrary_GetOwningListView, ReturnValue) == 0x000010, "Member 'UserListEntryLibrary_GetOwningListView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserListEntryLibrary_IsListItemExpanded \ +static_assert(alignof(UserListEntryLibrary_IsListItemExpanded) == 0x000008, "Wrong alignment on UserListEntryLibrary_IsListItemExpanded"); \ +static_assert(sizeof(UserListEntryLibrary_IsListItemExpanded) == 0x000018, "Wrong size on UserListEntryLibrary_IsListItemExpanded"); \ +static_assert(offsetof(UserListEntryLibrary_IsListItemExpanded, UserListEntry) == 0x000000, "Member 'UserListEntryLibrary_IsListItemExpanded::UserListEntry' has a wrong offset!"); \ +static_assert(offsetof(UserListEntryLibrary_IsListItemExpanded, ReturnValue) == 0x000010, "Member 'UserListEntryLibrary_IsListItemExpanded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserListEntryLibrary_IsListItemSelected \ +static_assert(alignof(UserListEntryLibrary_IsListItemSelected) == 0x000008, "Wrong alignment on UserListEntryLibrary_IsListItemSelected"); \ +static_assert(sizeof(UserListEntryLibrary_IsListItemSelected) == 0x000018, "Wrong size on UserListEntryLibrary_IsListItemSelected"); \ +static_assert(offsetof(UserListEntryLibrary_IsListItemSelected, UserListEntry) == 0x000000, "Member 'UserListEntryLibrary_IsListItemSelected::UserListEntry' has a wrong offset!"); \ +static_assert(offsetof(UserListEntryLibrary_IsListItemSelected, ReturnValue) == 0x000010, "Member 'UserListEntryLibrary_IsListItemSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserListEntryLibrary \ +static_assert(alignof(UUserListEntryLibrary) == 0x000008, "Wrong alignment on UUserListEntryLibrary"); \ +static_assert(sizeof(UUserListEntryLibrary) == 0x000028, "Wrong size on UUserListEntryLibrary"); \ + +#define DUMPER7_ASSERTS_UserObjectListEntry_OnListItemObjectSet \ +static_assert(alignof(UserObjectListEntry_OnListItemObjectSet) == 0x000008, "Wrong alignment on UserObjectListEntry_OnListItemObjectSet"); \ +static_assert(sizeof(UserObjectListEntry_OnListItemObjectSet) == 0x000008, "Wrong size on UserObjectListEntry_OnListItemObjectSet"); \ +static_assert(offsetof(UserObjectListEntry_OnListItemObjectSet, ListItemObject) == 0x000000, "Member 'UserObjectListEntry_OnListItemObjectSet::ListItemObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IUserObjectListEntry \ +static_assert(alignof(IUserObjectListEntry) == 0x000001, "Wrong alignment on IUserObjectListEntry"); \ +static_assert(sizeof(IUserObjectListEntry) == 0x000001, "Wrong size on IUserObjectListEntry"); \ + +#define DUMPER7_ASSERTS_UserObjectListEntryLibrary_GetListItemObject \ +static_assert(alignof(UserObjectListEntryLibrary_GetListItemObject) == 0x000008, "Wrong alignment on UserObjectListEntryLibrary_GetListItemObject"); \ +static_assert(sizeof(UserObjectListEntryLibrary_GetListItemObject) == 0x000018, "Wrong size on UserObjectListEntryLibrary_GetListItemObject"); \ +static_assert(offsetof(UserObjectListEntryLibrary_GetListItemObject, UserObjectListEntry) == 0x000000, "Member 'UserObjectListEntryLibrary_GetListItemObject::UserObjectListEntry' has a wrong offset!"); \ +static_assert(offsetof(UserObjectListEntryLibrary_GetListItemObject, ReturnValue) == 0x000010, "Member 'UserObjectListEntryLibrary_GetListItemObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserObjectListEntryLibrary \ +static_assert(alignof(UUserObjectListEntryLibrary) == 0x000008, "Wrong alignment on UUserObjectListEntryLibrary"); \ +static_assert(sizeof(UUserObjectListEntryLibrary) == 0x000028, "Wrong size on UUserObjectListEntryLibrary"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetApplyAlphaToBlur \ +static_assert(alignof(BackgroundBlur_SetApplyAlphaToBlur) == 0x000001, "Wrong alignment on BackgroundBlur_SetApplyAlphaToBlur"); \ +static_assert(sizeof(BackgroundBlur_SetApplyAlphaToBlur) == 0x000001, "Wrong size on BackgroundBlur_SetApplyAlphaToBlur"); \ +static_assert(offsetof(BackgroundBlur_SetApplyAlphaToBlur, bInApplyAlphaToBlur) == 0x000000, "Member 'BackgroundBlur_SetApplyAlphaToBlur::bInApplyAlphaToBlur' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetBlurRadius \ +static_assert(alignof(BackgroundBlur_SetBlurRadius) == 0x000004, "Wrong alignment on BackgroundBlur_SetBlurRadius"); \ +static_assert(sizeof(BackgroundBlur_SetBlurRadius) == 0x000004, "Wrong size on BackgroundBlur_SetBlurRadius"); \ +static_assert(offsetof(BackgroundBlur_SetBlurRadius, InBlurRadius) == 0x000000, "Member 'BackgroundBlur_SetBlurRadius::InBlurRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetBlurStrength \ +static_assert(alignof(BackgroundBlur_SetBlurStrength) == 0x000004, "Wrong alignment on BackgroundBlur_SetBlurStrength"); \ +static_assert(sizeof(BackgroundBlur_SetBlurStrength) == 0x000004, "Wrong size on BackgroundBlur_SetBlurStrength"); \ +static_assert(offsetof(BackgroundBlur_SetBlurStrength, InStrength) == 0x000000, "Member 'BackgroundBlur_SetBlurStrength::InStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetCornerRadius \ +static_assert(alignof(BackgroundBlur_SetCornerRadius) == 0x000010, "Wrong alignment on BackgroundBlur_SetCornerRadius"); \ +static_assert(sizeof(BackgroundBlur_SetCornerRadius) == 0x000020, "Wrong size on BackgroundBlur_SetCornerRadius"); \ +static_assert(offsetof(BackgroundBlur_SetCornerRadius, InCornerRadius) == 0x000000, "Member 'BackgroundBlur_SetCornerRadius::InCornerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetHorizontalAlignment \ +static_assert(alignof(BackgroundBlur_SetHorizontalAlignment) == 0x000001, "Wrong alignment on BackgroundBlur_SetHorizontalAlignment"); \ +static_assert(sizeof(BackgroundBlur_SetHorizontalAlignment) == 0x000001, "Wrong size on BackgroundBlur_SetHorizontalAlignment"); \ +static_assert(offsetof(BackgroundBlur_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'BackgroundBlur_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetLowQualityFallbackBrush \ +static_assert(alignof(BackgroundBlur_SetLowQualityFallbackBrush) == 0x000010, "Wrong alignment on BackgroundBlur_SetLowQualityFallbackBrush"); \ +static_assert(sizeof(BackgroundBlur_SetLowQualityFallbackBrush) == 0x0000D0, "Wrong size on BackgroundBlur_SetLowQualityFallbackBrush"); \ +static_assert(offsetof(BackgroundBlur_SetLowQualityFallbackBrush, InBrush) == 0x000000, "Member 'BackgroundBlur_SetLowQualityFallbackBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetPadding \ +static_assert(alignof(BackgroundBlur_SetPadding) == 0x000004, "Wrong alignment on BackgroundBlur_SetPadding"); \ +static_assert(sizeof(BackgroundBlur_SetPadding) == 0x000010, "Wrong size on BackgroundBlur_SetPadding"); \ +static_assert(offsetof(BackgroundBlur_SetPadding, InPadding) == 0x000000, "Member 'BackgroundBlur_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlur_SetVerticalAlignment \ +static_assert(alignof(BackgroundBlur_SetVerticalAlignment) == 0x000001, "Wrong alignment on BackgroundBlur_SetVerticalAlignment"); \ +static_assert(sizeof(BackgroundBlur_SetVerticalAlignment) == 0x000001, "Wrong size on BackgroundBlur_SetVerticalAlignment"); \ +static_assert(offsetof(BackgroundBlur_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'BackgroundBlur_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBackgroundBlur \ +static_assert(alignof(UBackgroundBlur) == 0x000010, "Wrong alignment on UBackgroundBlur"); \ +static_assert(sizeof(UBackgroundBlur) == 0x0002C0, "Wrong size on UBackgroundBlur"); \ +static_assert(offsetof(UBackgroundBlur, Padding) == 0x000198, "Member 'UBackgroundBlur::Padding' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, HorizontalAlignment) == 0x0001A8, "Member 'UBackgroundBlur::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, VerticalAlignment) == 0x0001A9, "Member 'UBackgroundBlur::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, bApplyAlphaToBlur) == 0x0001AA, "Member 'UBackgroundBlur::bApplyAlphaToBlur' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, BlurStrength) == 0x0001AC, "Member 'UBackgroundBlur::BlurStrength' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, bOverrideAutoRadiusCalculation) == 0x0001B0, "Member 'UBackgroundBlur::bOverrideAutoRadiusCalculation' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, BlurRadius) == 0x0001B4, "Member 'UBackgroundBlur::BlurRadius' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, CornerRadius) == 0x0001C0, "Member 'UBackgroundBlur::CornerRadius' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlur, LowQualityFallbackBrush) == 0x0001E0, "Member 'UBackgroundBlur::LowQualityFallbackBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlurSlot_SetHorizontalAlignment \ +static_assert(alignof(BackgroundBlurSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on BackgroundBlurSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(BackgroundBlurSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on BackgroundBlurSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(BackgroundBlurSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'BackgroundBlurSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlurSlot_SetPadding \ +static_assert(alignof(BackgroundBlurSlot_SetPadding) == 0x000004, "Wrong alignment on BackgroundBlurSlot_SetPadding"); \ +static_assert(sizeof(BackgroundBlurSlot_SetPadding) == 0x000010, "Wrong size on BackgroundBlurSlot_SetPadding"); \ +static_assert(offsetof(BackgroundBlurSlot_SetPadding, InPadding) == 0x000000, "Member 'BackgroundBlurSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BackgroundBlurSlot_SetVerticalAlignment \ +static_assert(alignof(BackgroundBlurSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on BackgroundBlurSlot_SetVerticalAlignment"); \ +static_assert(sizeof(BackgroundBlurSlot_SetVerticalAlignment) == 0x000001, "Wrong size on BackgroundBlurSlot_SetVerticalAlignment"); \ +static_assert(offsetof(BackgroundBlurSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'BackgroundBlurSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBackgroundBlurSlot \ +static_assert(alignof(UBackgroundBlurSlot) == 0x000008, "Wrong alignment on UBackgroundBlurSlot"); \ +static_assert(sizeof(UBackgroundBlurSlot) == 0x000060, "Wrong size on UBackgroundBlurSlot"); \ +static_assert(offsetof(UBackgroundBlurSlot, Padding) == 0x000038, "Member 'UBackgroundBlurSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlurSlot, HorizontalAlignment) == 0x000048, "Member 'UBackgroundBlurSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBackgroundBlurSlot, VerticalAlignment) == 0x000049, "Member 'UBackgroundBlurSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_GetDynamicMaterial \ +static_assert(alignof(Border_GetDynamicMaterial) == 0x000008, "Wrong alignment on Border_GetDynamicMaterial"); \ +static_assert(sizeof(Border_GetDynamicMaterial) == 0x000008, "Wrong size on Border_GetDynamicMaterial"); \ +static_assert(offsetof(Border_GetDynamicMaterial, ReturnValue) == 0x000000, "Member 'Border_GetDynamicMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetBrush \ +static_assert(alignof(Border_SetBrush) == 0x000010, "Wrong alignment on Border_SetBrush"); \ +static_assert(sizeof(Border_SetBrush) == 0x0000D0, "Wrong size on Border_SetBrush"); \ +static_assert(offsetof(Border_SetBrush, InBrush) == 0x000000, "Member 'Border_SetBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetBrushColor \ +static_assert(alignof(Border_SetBrushColor) == 0x000004, "Wrong alignment on Border_SetBrushColor"); \ +static_assert(sizeof(Border_SetBrushColor) == 0x000010, "Wrong size on Border_SetBrushColor"); \ +static_assert(offsetof(Border_SetBrushColor, InBrushColor) == 0x000000, "Member 'Border_SetBrushColor::InBrushColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetBrushFromAsset \ +static_assert(alignof(Border_SetBrushFromAsset) == 0x000008, "Wrong alignment on Border_SetBrushFromAsset"); \ +static_assert(sizeof(Border_SetBrushFromAsset) == 0x000008, "Wrong size on Border_SetBrushFromAsset"); \ +static_assert(offsetof(Border_SetBrushFromAsset, Asset) == 0x000000, "Member 'Border_SetBrushFromAsset::Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetBrushFromMaterial \ +static_assert(alignof(Border_SetBrushFromMaterial) == 0x000008, "Wrong alignment on Border_SetBrushFromMaterial"); \ +static_assert(sizeof(Border_SetBrushFromMaterial) == 0x000008, "Wrong size on Border_SetBrushFromMaterial"); \ +static_assert(offsetof(Border_SetBrushFromMaterial, Material) == 0x000000, "Member 'Border_SetBrushFromMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetBrushFromTexture \ +static_assert(alignof(Border_SetBrushFromTexture) == 0x000008, "Wrong alignment on Border_SetBrushFromTexture"); \ +static_assert(sizeof(Border_SetBrushFromTexture) == 0x000008, "Wrong size on Border_SetBrushFromTexture"); \ +static_assert(offsetof(Border_SetBrushFromTexture, Texture) == 0x000000, "Member 'Border_SetBrushFromTexture::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetContentColorAndOpacity \ +static_assert(alignof(Border_SetContentColorAndOpacity) == 0x000004, "Wrong alignment on Border_SetContentColorAndOpacity"); \ +static_assert(sizeof(Border_SetContentColorAndOpacity) == 0x000010, "Wrong size on Border_SetContentColorAndOpacity"); \ +static_assert(offsetof(Border_SetContentColorAndOpacity, InContentColorAndOpacity) == 0x000000, "Member 'Border_SetContentColorAndOpacity::InContentColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetDesiredSizeScale \ +static_assert(alignof(Border_SetDesiredSizeScale) == 0x000008, "Wrong alignment on Border_SetDesiredSizeScale"); \ +static_assert(sizeof(Border_SetDesiredSizeScale) == 0x000010, "Wrong size on Border_SetDesiredSizeScale"); \ +static_assert(offsetof(Border_SetDesiredSizeScale, InScale) == 0x000000, "Member 'Border_SetDesiredSizeScale::InScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetHorizontalAlignment \ +static_assert(alignof(Border_SetHorizontalAlignment) == 0x000001, "Wrong alignment on Border_SetHorizontalAlignment"); \ +static_assert(sizeof(Border_SetHorizontalAlignment) == 0x000001, "Wrong size on Border_SetHorizontalAlignment"); \ +static_assert(offsetof(Border_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'Border_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetPadding \ +static_assert(alignof(Border_SetPadding) == 0x000004, "Wrong alignment on Border_SetPadding"); \ +static_assert(sizeof(Border_SetPadding) == 0x000010, "Wrong size on Border_SetPadding"); \ +static_assert(offsetof(Border_SetPadding, InPadding) == 0x000000, "Member 'Border_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetShowEffectWhenDisabled \ +static_assert(alignof(Border_SetShowEffectWhenDisabled) == 0x000001, "Wrong alignment on Border_SetShowEffectWhenDisabled"); \ +static_assert(sizeof(Border_SetShowEffectWhenDisabled) == 0x000001, "Wrong size on Border_SetShowEffectWhenDisabled"); \ +static_assert(offsetof(Border_SetShowEffectWhenDisabled, bInShowEffectWhenDisabled) == 0x000000, "Member 'Border_SetShowEffectWhenDisabled::bInShowEffectWhenDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Border_SetVerticalAlignment \ +static_assert(alignof(Border_SetVerticalAlignment) == 0x000001, "Wrong alignment on Border_SetVerticalAlignment"); \ +static_assert(sizeof(Border_SetVerticalAlignment) == 0x000001, "Wrong size on Border_SetVerticalAlignment"); \ +static_assert(offsetof(Border_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'Border_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBorder \ +static_assert(alignof(UBorder) == 0x000010, "Wrong alignment on UBorder"); \ +static_assert(sizeof(UBorder) == 0x000340, "Wrong size on UBorder"); \ +static_assert(offsetof(UBorder, HorizontalAlignment) == 0x000198, "Member 'UBorder::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBorder, VerticalAlignment) == 0x000199, "Member 'UBorder::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBorder, ContentColorAndOpacity) == 0x00019C, "Member 'UBorder::ContentColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UBorder, ContentColorAndOpacityDelegate) == 0x0001AC, "Member 'UBorder::ContentColorAndOpacityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UBorder, Padding) == 0x0001BC, "Member 'UBorder::Padding' has a wrong offset!"); \ +static_assert(offsetof(UBorder, Background) == 0x0001D0, "Member 'UBorder::Background' has a wrong offset!"); \ +static_assert(offsetof(UBorder, BackgroundDelegate) == 0x0002A0, "Member 'UBorder::BackgroundDelegate' has a wrong offset!"); \ +static_assert(offsetof(UBorder, BrushColor) == 0x0002B0, "Member 'UBorder::BrushColor' has a wrong offset!"); \ +static_assert(offsetof(UBorder, BrushColorDelegate) == 0x0002C0, "Member 'UBorder::BrushColorDelegate' has a wrong offset!"); \ +static_assert(offsetof(UBorder, DesiredSizeScale) == 0x0002D0, "Member 'UBorder::DesiredSizeScale' has a wrong offset!"); \ +static_assert(offsetof(UBorder, bFlipForRightToLeftFlowDirection) == 0x0002E0, "Member 'UBorder::bFlipForRightToLeftFlowDirection' has a wrong offset!"); \ +static_assert(offsetof(UBorder, OnMouseButtonDownEvent) == 0x0002E4, "Member 'UBorder::OnMouseButtonDownEvent' has a wrong offset!"); \ +static_assert(offsetof(UBorder, OnMouseButtonUpEvent) == 0x0002F4, "Member 'UBorder::OnMouseButtonUpEvent' has a wrong offset!"); \ +static_assert(offsetof(UBorder, OnMouseMoveEvent) == 0x000304, "Member 'UBorder::OnMouseMoveEvent' has a wrong offset!"); \ +static_assert(offsetof(UBorder, OnMouseDoubleClickEvent) == 0x000314, "Member 'UBorder::OnMouseDoubleClickEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BorderSlot_SetHorizontalAlignment \ +static_assert(alignof(BorderSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on BorderSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(BorderSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on BorderSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(BorderSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'BorderSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BorderSlot_SetPadding \ +static_assert(alignof(BorderSlot_SetPadding) == 0x000004, "Wrong alignment on BorderSlot_SetPadding"); \ +static_assert(sizeof(BorderSlot_SetPadding) == 0x000010, "Wrong size on BorderSlot_SetPadding"); \ +static_assert(offsetof(BorderSlot_SetPadding, InPadding) == 0x000000, "Member 'BorderSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BorderSlot_SetVerticalAlignment \ +static_assert(alignof(BorderSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on BorderSlot_SetVerticalAlignment"); \ +static_assert(sizeof(BorderSlot_SetVerticalAlignment) == 0x000001, "Wrong size on BorderSlot_SetVerticalAlignment"); \ +static_assert(offsetof(BorderSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'BorderSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBorderSlot \ +static_assert(alignof(UBorderSlot) == 0x000008, "Wrong alignment on UBorderSlot"); \ +static_assert(sizeof(UBorderSlot) == 0x000060, "Wrong size on UBorderSlot"); \ +static_assert(offsetof(UBorderSlot, Padding) == 0x000038, "Member 'UBorderSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UBorderSlot, HorizontalAlignment) == 0x000048, "Member 'UBorderSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UBorderSlot, VerticalAlignment) == 0x000049, "Member 'UBorderSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetBackgroundColor \ +static_assert(alignof(Button_SetBackgroundColor) == 0x000004, "Wrong alignment on Button_SetBackgroundColor"); \ +static_assert(sizeof(Button_SetBackgroundColor) == 0x000010, "Wrong size on Button_SetBackgroundColor"); \ +static_assert(offsetof(Button_SetBackgroundColor, InBackgroundColor) == 0x000000, "Member 'Button_SetBackgroundColor::InBackgroundColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetClickMethod \ +static_assert(alignof(Button_SetClickMethod) == 0x000001, "Wrong alignment on Button_SetClickMethod"); \ +static_assert(sizeof(Button_SetClickMethod) == 0x000001, "Wrong size on Button_SetClickMethod"); \ +static_assert(offsetof(Button_SetClickMethod, InClickMethod) == 0x000000, "Member 'Button_SetClickMethod::InClickMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetColorAndOpacity \ +static_assert(alignof(Button_SetColorAndOpacity) == 0x000004, "Wrong alignment on Button_SetColorAndOpacity"); \ +static_assert(sizeof(Button_SetColorAndOpacity) == 0x000010, "Wrong size on Button_SetColorAndOpacity"); \ +static_assert(offsetof(Button_SetColorAndOpacity, InColorAndOpacity) == 0x000000, "Member 'Button_SetColorAndOpacity::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetPressMethod \ +static_assert(alignof(Button_SetPressMethod) == 0x000001, "Wrong alignment on Button_SetPressMethod"); \ +static_assert(sizeof(Button_SetPressMethod) == 0x000001, "Wrong size on Button_SetPressMethod"); \ +static_assert(offsetof(Button_SetPressMethod, InPressMethod) == 0x000000, "Member 'Button_SetPressMethod::InPressMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetStyle \ +static_assert(alignof(Button_SetStyle) == 0x000010, "Wrong alignment on Button_SetStyle"); \ +static_assert(sizeof(Button_SetStyle) == 0x0003F0, "Wrong size on Button_SetStyle"); \ +static_assert(offsetof(Button_SetStyle, InStyle) == 0x000000, "Member 'Button_SetStyle::InStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_SetTouchMethod \ +static_assert(alignof(Button_SetTouchMethod) == 0x000001, "Wrong alignment on Button_SetTouchMethod"); \ +static_assert(sizeof(Button_SetTouchMethod) == 0x000001, "Wrong size on Button_SetTouchMethod"); \ +static_assert(offsetof(Button_SetTouchMethod, InTouchMethod) == 0x000000, "Member 'Button_SetTouchMethod::InTouchMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Button_IsPressed \ +static_assert(alignof(Button_IsPressed) == 0x000001, "Wrong alignment on Button_IsPressed"); \ +static_assert(sizeof(Button_IsPressed) == 0x000001, "Wrong size on Button_IsPressed"); \ +static_assert(offsetof(Button_IsPressed, ReturnValue) == 0x000000, "Member 'Button_IsPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UButton \ +static_assert(alignof(UButton) == 0x000010, "Wrong alignment on UButton"); \ +static_assert(sizeof(UButton) == 0x000620, "Wrong size on UButton"); \ +static_assert(offsetof(UButton, WidgetStyle) == 0x0001A0, "Member 'UButton::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UButton, ColorAndOpacity) == 0x000590, "Member 'UButton::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UButton, BackgroundColor) == 0x0005A0, "Member 'UButton::BackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(UButton, ClickMethod) == 0x0005B0, "Member 'UButton::ClickMethod' has a wrong offset!"); \ +static_assert(offsetof(UButton, TouchMethod) == 0x0005B1, "Member 'UButton::TouchMethod' has a wrong offset!"); \ +static_assert(offsetof(UButton, PressMethod) == 0x0005B2, "Member 'UButton::PressMethod' has a wrong offset!"); \ +static_assert(offsetof(UButton, IsFocusable) == 0x0005B3, "Member 'UButton::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UButton, OnClicked) == 0x0005B8, "Member 'UButton::OnClicked' has a wrong offset!"); \ +static_assert(offsetof(UButton, OnPressed) == 0x0005C8, "Member 'UButton::OnPressed' has a wrong offset!"); \ +static_assert(offsetof(UButton, OnReleased) == 0x0005D8, "Member 'UButton::OnReleased' has a wrong offset!"); \ +static_assert(offsetof(UButton, OnHovered) == 0x0005E8, "Member 'UButton::OnHovered' has a wrong offset!"); \ +static_assert(offsetof(UButton, OnUnhovered) == 0x0005F8, "Member 'UButton::OnUnhovered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ButtonSlot_SetHorizontalAlignment \ +static_assert(alignof(ButtonSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on ButtonSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(ButtonSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on ButtonSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(ButtonSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'ButtonSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ButtonSlot_SetPadding \ +static_assert(alignof(ButtonSlot_SetPadding) == 0x000004, "Wrong alignment on ButtonSlot_SetPadding"); \ +static_assert(sizeof(ButtonSlot_SetPadding) == 0x000010, "Wrong size on ButtonSlot_SetPadding"); \ +static_assert(offsetof(ButtonSlot_SetPadding, InPadding) == 0x000000, "Member 'ButtonSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ButtonSlot_SetVerticalAlignment \ +static_assert(alignof(ButtonSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on ButtonSlot_SetVerticalAlignment"); \ +static_assert(sizeof(ButtonSlot_SetVerticalAlignment) == 0x000001, "Wrong size on ButtonSlot_SetVerticalAlignment"); \ +static_assert(offsetof(ButtonSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'ButtonSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UButtonSlot \ +static_assert(alignof(UButtonSlot) == 0x000008, "Wrong alignment on UButtonSlot"); \ +static_assert(sizeof(UButtonSlot) == 0x000060, "Wrong size on UButtonSlot"); \ +static_assert(offsetof(UButtonSlot, Padding) == 0x000038, "Member 'UButtonSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UButtonSlot, HorizontalAlignment) == 0x000048, "Member 'UButtonSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UButtonSlot, VerticalAlignment) == 0x000049, "Member 'UButtonSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CanvasPanel_AddChildToCanvas \ +static_assert(alignof(CanvasPanel_AddChildToCanvas) == 0x000008, "Wrong alignment on CanvasPanel_AddChildToCanvas"); \ +static_assert(sizeof(CanvasPanel_AddChildToCanvas) == 0x000010, "Wrong size on CanvasPanel_AddChildToCanvas"); \ +static_assert(offsetof(CanvasPanel_AddChildToCanvas, Content) == 0x000000, "Member 'CanvasPanel_AddChildToCanvas::Content' has a wrong offset!"); \ +static_assert(offsetof(CanvasPanel_AddChildToCanvas, ReturnValue) == 0x000008, "Member 'CanvasPanel_AddChildToCanvas::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCanvasPanel \ +static_assert(alignof(UCanvasPanel) == 0x000008, "Wrong alignment on UCanvasPanel"); \ +static_assert(sizeof(UCanvasPanel) == 0x0001A8, "Wrong size on UCanvasPanel"); \ + +#define DUMPER7_ASSERTS_ComboBoxKey_AddOption \ +static_assert(alignof(ComboBoxKey_AddOption) == 0x000004, "Wrong alignment on ComboBoxKey_AddOption"); \ +static_assert(sizeof(ComboBoxKey_AddOption) == 0x000008, "Wrong size on ComboBoxKey_AddOption"); \ +static_assert(offsetof(ComboBoxKey_AddOption, Option) == 0x000000, "Member 'ComboBoxKey_AddOption::Option' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxKey_RemoveOption \ +static_assert(alignof(ComboBoxKey_RemoveOption) == 0x000004, "Wrong alignment on ComboBoxKey_RemoveOption"); \ +static_assert(sizeof(ComboBoxKey_RemoveOption) == 0x00000C, "Wrong size on ComboBoxKey_RemoveOption"); \ +static_assert(offsetof(ComboBoxKey_RemoveOption, Option) == 0x000000, "Member 'ComboBoxKey_RemoveOption::Option' has a wrong offset!"); \ +static_assert(offsetof(ComboBoxKey_RemoveOption, ReturnValue) == 0x000008, "Member 'ComboBoxKey_RemoveOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxKey_SetSelectedOption \ +static_assert(alignof(ComboBoxKey_SetSelectedOption) == 0x000004, "Wrong alignment on ComboBoxKey_SetSelectedOption"); \ +static_assert(sizeof(ComboBoxKey_SetSelectedOption) == 0x000008, "Wrong size on ComboBoxKey_SetSelectedOption"); \ +static_assert(offsetof(ComboBoxKey_SetSelectedOption, Option) == 0x000000, "Member 'ComboBoxKey_SetSelectedOption::Option' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxKey_GetSelectedOption \ +static_assert(alignof(ComboBoxKey_GetSelectedOption) == 0x000004, "Wrong alignment on ComboBoxKey_GetSelectedOption"); \ +static_assert(sizeof(ComboBoxKey_GetSelectedOption) == 0x000008, "Wrong size on ComboBoxKey_GetSelectedOption"); \ +static_assert(offsetof(ComboBoxKey_GetSelectedOption, ReturnValue) == 0x000000, "Member 'ComboBoxKey_GetSelectedOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxKey_IsOpen \ +static_assert(alignof(ComboBoxKey_IsOpen) == 0x000001, "Wrong alignment on ComboBoxKey_IsOpen"); \ +static_assert(sizeof(ComboBoxKey_IsOpen) == 0x000001, "Wrong size on ComboBoxKey_IsOpen"); \ +static_assert(offsetof(ComboBoxKey_IsOpen, ReturnValue) == 0x000000, "Member 'ComboBoxKey_IsOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComboBoxKey \ +static_assert(alignof(UComboBoxKey) == 0x000010, "Wrong alignment on UComboBoxKey"); \ +static_assert(sizeof(UComboBoxKey) == 0x001D50, "Wrong size on UComboBoxKey"); \ +static_assert(offsetof(UComboBoxKey, Options) == 0x000180, "Member 'UComboBoxKey::Options' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, SelectedOption) == 0x000190, "Member 'UComboBoxKey::SelectedOption' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, WidgetStyle) == 0x0001A0, "Member 'UComboBoxKey::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, ItemStyle) == 0x000800, "Member 'UComboBoxKey::ItemStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, ScrollBarStyle) == 0x001550, "Member 'UComboBoxKey::ScrollBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, ForegroundColor) == 0x001CC0, "Member 'UComboBoxKey::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, ContentPadding) == 0x001CD4, "Member 'UComboBoxKey::ContentPadding' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, MaxListHeight) == 0x001CE4, "Member 'UComboBoxKey::MaxListHeight' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, bHasDownArrow) == 0x001CE8, "Member 'UComboBoxKey::bHasDownArrow' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, bEnableGamepadNavigationMode) == 0x001CE9, "Member 'UComboBoxKey::bEnableGamepadNavigationMode' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, bIsFocusable) == 0x001CEA, "Member 'UComboBoxKey::bIsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, OnGenerateContentWidget) == 0x001CEC, "Member 'UComboBoxKey::OnGenerateContentWidget' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, OnGenerateItemWidget) == 0x001CFC, "Member 'UComboBoxKey::OnGenerateItemWidget' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, OnSelectionChanged) == 0x001D10, "Member 'UComboBoxKey::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxKey, OnOpening) == 0x001D20, "Member 'UComboBoxKey::OnOpening' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_AddOption \ +static_assert(alignof(ComboBoxString_AddOption) == 0x000008, "Wrong alignment on ComboBoxString_AddOption"); \ +static_assert(sizeof(ComboBoxString_AddOption) == 0x000010, "Wrong size on ComboBoxString_AddOption"); \ +static_assert(offsetof(ComboBoxString_AddOption, Option) == 0x000000, "Member 'ComboBoxString_AddOption::Option' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_RemoveOption \ +static_assert(alignof(ComboBoxString_RemoveOption) == 0x000008, "Wrong alignment on ComboBoxString_RemoveOption"); \ +static_assert(sizeof(ComboBoxString_RemoveOption) == 0x000018, "Wrong size on ComboBoxString_RemoveOption"); \ +static_assert(offsetof(ComboBoxString_RemoveOption, Option) == 0x000000, "Member 'ComboBoxString_RemoveOption::Option' has a wrong offset!"); \ +static_assert(offsetof(ComboBoxString_RemoveOption, ReturnValue) == 0x000010, "Member 'ComboBoxString_RemoveOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_SetSelectedIndex \ +static_assert(alignof(ComboBoxString_SetSelectedIndex) == 0x000004, "Wrong alignment on ComboBoxString_SetSelectedIndex"); \ +static_assert(sizeof(ComboBoxString_SetSelectedIndex) == 0x000004, "Wrong size on ComboBoxString_SetSelectedIndex"); \ +static_assert(offsetof(ComboBoxString_SetSelectedIndex, Index_0) == 0x000000, "Member 'ComboBoxString_SetSelectedIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_SetSelectedOption \ +static_assert(alignof(ComboBoxString_SetSelectedOption) == 0x000008, "Wrong alignment on ComboBoxString_SetSelectedOption"); \ +static_assert(sizeof(ComboBoxString_SetSelectedOption) == 0x000010, "Wrong size on ComboBoxString_SetSelectedOption"); \ +static_assert(offsetof(ComboBoxString_SetSelectedOption, Option) == 0x000000, "Member 'ComboBoxString_SetSelectedOption::Option' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_FindOptionIndex \ +static_assert(alignof(ComboBoxString_FindOptionIndex) == 0x000008, "Wrong alignment on ComboBoxString_FindOptionIndex"); \ +static_assert(sizeof(ComboBoxString_FindOptionIndex) == 0x000018, "Wrong size on ComboBoxString_FindOptionIndex"); \ +static_assert(offsetof(ComboBoxString_FindOptionIndex, Option) == 0x000000, "Member 'ComboBoxString_FindOptionIndex::Option' has a wrong offset!"); \ +static_assert(offsetof(ComboBoxString_FindOptionIndex, ReturnValue) == 0x000010, "Member 'ComboBoxString_FindOptionIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_GetOptionAtIndex \ +static_assert(alignof(ComboBoxString_GetOptionAtIndex) == 0x000008, "Wrong alignment on ComboBoxString_GetOptionAtIndex"); \ +static_assert(sizeof(ComboBoxString_GetOptionAtIndex) == 0x000018, "Wrong size on ComboBoxString_GetOptionAtIndex"); \ +static_assert(offsetof(ComboBoxString_GetOptionAtIndex, Index_0) == 0x000000, "Member 'ComboBoxString_GetOptionAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ComboBoxString_GetOptionAtIndex, ReturnValue) == 0x000008, "Member 'ComboBoxString_GetOptionAtIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_GetOptionCount \ +static_assert(alignof(ComboBoxString_GetOptionCount) == 0x000004, "Wrong alignment on ComboBoxString_GetOptionCount"); \ +static_assert(sizeof(ComboBoxString_GetOptionCount) == 0x000004, "Wrong size on ComboBoxString_GetOptionCount"); \ +static_assert(offsetof(ComboBoxString_GetOptionCount, ReturnValue) == 0x000000, "Member 'ComboBoxString_GetOptionCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_GetSelectedIndex \ +static_assert(alignof(ComboBoxString_GetSelectedIndex) == 0x000004, "Wrong alignment on ComboBoxString_GetSelectedIndex"); \ +static_assert(sizeof(ComboBoxString_GetSelectedIndex) == 0x000004, "Wrong size on ComboBoxString_GetSelectedIndex"); \ +static_assert(offsetof(ComboBoxString_GetSelectedIndex, ReturnValue) == 0x000000, "Member 'ComboBoxString_GetSelectedIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_GetSelectedOption \ +static_assert(alignof(ComboBoxString_GetSelectedOption) == 0x000008, "Wrong alignment on ComboBoxString_GetSelectedOption"); \ +static_assert(sizeof(ComboBoxString_GetSelectedOption) == 0x000010, "Wrong size on ComboBoxString_GetSelectedOption"); \ +static_assert(offsetof(ComboBoxString_GetSelectedOption, ReturnValue) == 0x000000, "Member 'ComboBoxString_GetSelectedOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ComboBoxString_IsOpen \ +static_assert(alignof(ComboBoxString_IsOpen) == 0x000001, "Wrong alignment on ComboBoxString_IsOpen"); \ +static_assert(sizeof(ComboBoxString_IsOpen) == 0x000001, "Wrong size on ComboBoxString_IsOpen"); \ +static_assert(offsetof(ComboBoxString_IsOpen, ReturnValue) == 0x000000, "Member 'ComboBoxString_IsOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UComboBoxString \ +static_assert(alignof(UComboBoxString) == 0x000010, "Wrong alignment on UComboBoxString"); \ +static_assert(sizeof(UComboBoxString) == 0x001DD0, "Wrong size on UComboBoxString"); \ +static_assert(offsetof(UComboBoxString, DefaultOptions) == 0x000180, "Member 'UComboBoxString::DefaultOptions' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, SelectedOption) == 0x000190, "Member 'UComboBoxString::SelectedOption' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, WidgetStyle) == 0x0001A0, "Member 'UComboBoxString::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, ItemStyle) == 0x000800, "Member 'UComboBoxString::ItemStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, ScrollBarStyle) == 0x001550, "Member 'UComboBoxString::ScrollBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, ContentPadding) == 0x001CC0, "Member 'UComboBoxString::ContentPadding' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, MaxListHeight) == 0x001CD0, "Member 'UComboBoxString::MaxListHeight' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, HasDownArrow) == 0x001CD4, "Member 'UComboBoxString::HasDownArrow' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, EnableGamepadNavigationMode) == 0x001CD5, "Member 'UComboBoxString::EnableGamepadNavigationMode' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, Font) == 0x001CD8, "Member 'UComboBoxString::Font' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, ForegroundColor) == 0x001D30, "Member 'UComboBoxString::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, bIsFocusable) == 0x001D44, "Member 'UComboBoxString::bIsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, OnGenerateWidgetEvent) == 0x001D48, "Member 'UComboBoxString::OnGenerateWidgetEvent' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, OnSelectionChanged) == 0x001D58, "Member 'UComboBoxString::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UComboBoxString, OnOpening) == 0x001D68, "Member 'UComboBoxString::OnOpening' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBoxBase_SetEntrySpacing \ +static_assert(alignof(DynamicEntryBoxBase_SetEntrySpacing) == 0x000008, "Wrong alignment on DynamicEntryBoxBase_SetEntrySpacing"); \ +static_assert(sizeof(DynamicEntryBoxBase_SetEntrySpacing) == 0x000010, "Wrong size on DynamicEntryBoxBase_SetEntrySpacing"); \ +static_assert(offsetof(DynamicEntryBoxBase_SetEntrySpacing, InEntrySpacing) == 0x000000, "Member 'DynamicEntryBoxBase_SetEntrySpacing::InEntrySpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBoxBase_SetRadialSettings \ +static_assert(alignof(DynamicEntryBoxBase_SetRadialSettings) == 0x000004, "Wrong alignment on DynamicEntryBoxBase_SetRadialSettings"); \ +static_assert(sizeof(DynamicEntryBoxBase_SetRadialSettings) == 0x000010, "Wrong size on DynamicEntryBoxBase_SetRadialSettings"); \ +static_assert(offsetof(DynamicEntryBoxBase_SetRadialSettings, InSettings) == 0x000000, "Member 'DynamicEntryBoxBase_SetRadialSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBoxBase_GetAllEntries \ +static_assert(alignof(DynamicEntryBoxBase_GetAllEntries) == 0x000008, "Wrong alignment on DynamicEntryBoxBase_GetAllEntries"); \ +static_assert(sizeof(DynamicEntryBoxBase_GetAllEntries) == 0x000010, "Wrong size on DynamicEntryBoxBase_GetAllEntries"); \ +static_assert(offsetof(DynamicEntryBoxBase_GetAllEntries, ReturnValue) == 0x000000, "Member 'DynamicEntryBoxBase_GetAllEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBoxBase_GetNumEntries \ +static_assert(alignof(DynamicEntryBoxBase_GetNumEntries) == 0x000004, "Wrong alignment on DynamicEntryBoxBase_GetNumEntries"); \ +static_assert(sizeof(DynamicEntryBoxBase_GetNumEntries) == 0x000004, "Wrong size on DynamicEntryBoxBase_GetNumEntries"); \ +static_assert(offsetof(DynamicEntryBoxBase_GetNumEntries, ReturnValue) == 0x000000, "Member 'DynamicEntryBoxBase_GetNumEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicEntryBoxBase \ +static_assert(alignof(UDynamicEntryBoxBase) == 0x000008, "Wrong alignment on UDynamicEntryBoxBase"); \ +static_assert(sizeof(UDynamicEntryBoxBase) == 0x000260, "Wrong size on UDynamicEntryBoxBase"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntrySpacing) == 0x000180, "Member 'UDynamicEntryBoxBase::EntrySpacing' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, SpacingPattern) == 0x000190, "Member 'UDynamicEntryBoxBase::SpacingPattern' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntryBoxType) == 0x0001A0, "Member 'UDynamicEntryBoxBase::EntryBoxType' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntrySizeRule) == 0x0001A4, "Member 'UDynamicEntryBoxBase::EntrySizeRule' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntryHorizontalAlignment) == 0x0001AC, "Member 'UDynamicEntryBoxBase::EntryHorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntryVerticalAlignment) == 0x0001AD, "Member 'UDynamicEntryBoxBase::EntryVerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, MaxElementSize) == 0x0001B0, "Member 'UDynamicEntryBoxBase::MaxElementSize' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, RadialBoxSettings) == 0x0001B4, "Member 'UDynamicEntryBoxBase::RadialBoxSettings' has a wrong offset!"); \ +static_assert(offsetof(UDynamicEntryBoxBase, EntryWidgetPool) == 0x0001D8, "Member 'UDynamicEntryBoxBase::EntryWidgetPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBox_BP_CreateEntry \ +static_assert(alignof(DynamicEntryBox_BP_CreateEntry) == 0x000008, "Wrong alignment on DynamicEntryBox_BP_CreateEntry"); \ +static_assert(sizeof(DynamicEntryBox_BP_CreateEntry) == 0x000008, "Wrong size on DynamicEntryBox_BP_CreateEntry"); \ +static_assert(offsetof(DynamicEntryBox_BP_CreateEntry, ReturnValue) == 0x000000, "Member 'DynamicEntryBox_BP_CreateEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBox_BP_CreateEntryOfClass \ +static_assert(alignof(DynamicEntryBox_BP_CreateEntryOfClass) == 0x000008, "Wrong alignment on DynamicEntryBox_BP_CreateEntryOfClass"); \ +static_assert(sizeof(DynamicEntryBox_BP_CreateEntryOfClass) == 0x000010, "Wrong size on DynamicEntryBox_BP_CreateEntryOfClass"); \ +static_assert(offsetof(DynamicEntryBox_BP_CreateEntryOfClass, EntryClass) == 0x000000, "Member 'DynamicEntryBox_BP_CreateEntryOfClass::EntryClass' has a wrong offset!"); \ +static_assert(offsetof(DynamicEntryBox_BP_CreateEntryOfClass, ReturnValue) == 0x000008, "Member 'DynamicEntryBox_BP_CreateEntryOfClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBox_RemoveEntry \ +static_assert(alignof(DynamicEntryBox_RemoveEntry) == 0x000008, "Wrong alignment on DynamicEntryBox_RemoveEntry"); \ +static_assert(sizeof(DynamicEntryBox_RemoveEntry) == 0x000008, "Wrong size on DynamicEntryBox_RemoveEntry"); \ +static_assert(offsetof(DynamicEntryBox_RemoveEntry, EntryWidget) == 0x000000, "Member 'DynamicEntryBox_RemoveEntry::EntryWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicEntryBox_Reset \ +static_assert(alignof(DynamicEntryBox_Reset) == 0x000001, "Wrong alignment on DynamicEntryBox_Reset"); \ +static_assert(sizeof(DynamicEntryBox_Reset) == 0x000001, "Wrong size on DynamicEntryBox_Reset"); \ +static_assert(offsetof(DynamicEntryBox_Reset, bDeleteWidgets) == 0x000000, "Member 'DynamicEntryBox_Reset::bDeleteWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicEntryBox \ +static_assert(alignof(UDynamicEntryBox) == 0x000008, "Wrong alignment on UDynamicEntryBox"); \ +static_assert(sizeof(UDynamicEntryBox) == 0x000268, "Wrong size on UDynamicEntryBox"); \ +static_assert(offsetof(UDynamicEntryBox, EntryWidgetClass) == 0x000260, "Member 'UDynamicEntryBox::EntryWidgetClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetFont \ +static_assert(alignof(EditableText_SetFont) == 0x000008, "Wrong alignment on EditableText_SetFont"); \ +static_assert(sizeof(EditableText_SetFont) == 0x000058, "Wrong size on EditableText_SetFont"); \ +static_assert(offsetof(EditableText_SetFont, InFontInfo) == 0x000000, "Member 'EditableText_SetFont::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetFontMaterial \ +static_assert(alignof(EditableText_SetFontMaterial) == 0x000008, "Wrong alignment on EditableText_SetFontMaterial"); \ +static_assert(sizeof(EditableText_SetFontMaterial) == 0x000008, "Wrong size on EditableText_SetFontMaterial"); \ +static_assert(offsetof(EditableText_SetFontMaterial, InMaterial) == 0x000000, "Member 'EditableText_SetFontMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetFontOutlineMaterial \ +static_assert(alignof(EditableText_SetFontOutlineMaterial) == 0x000008, "Wrong alignment on EditableText_SetFontOutlineMaterial"); \ +static_assert(sizeof(EditableText_SetFontOutlineMaterial) == 0x000008, "Wrong size on EditableText_SetFontOutlineMaterial"); \ +static_assert(offsetof(EditableText_SetFontOutlineMaterial, InMaterial) == 0x000000, "Member 'EditableText_SetFontOutlineMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetHintText \ +static_assert(alignof(EditableText_SetHintText) == 0x000008, "Wrong alignment on EditableText_SetHintText"); \ +static_assert(sizeof(EditableText_SetHintText) == 0x000018, "Wrong size on EditableText_SetHintText"); \ +static_assert(offsetof(EditableText_SetHintText, InHintText) == 0x000000, "Member 'EditableText_SetHintText::InHintText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetIsPassword \ +static_assert(alignof(EditableText_SetIsPassword) == 0x000001, "Wrong alignment on EditableText_SetIsPassword"); \ +static_assert(sizeof(EditableText_SetIsPassword) == 0x000001, "Wrong size on EditableText_SetIsPassword"); \ +static_assert(offsetof(EditableText_SetIsPassword, InbIsPassword) == 0x000000, "Member 'EditableText_SetIsPassword::InbIsPassword' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetIsReadOnly \ +static_assert(alignof(EditableText_SetIsReadOnly) == 0x000001, "Wrong alignment on EditableText_SetIsReadOnly"); \ +static_assert(sizeof(EditableText_SetIsReadOnly) == 0x000001, "Wrong size on EditableText_SetIsReadOnly"); \ +static_assert(offsetof(EditableText_SetIsReadOnly, InbIsReadyOnly) == 0x000000, "Member 'EditableText_SetIsReadOnly::InbIsReadyOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetJustification \ +static_assert(alignof(EditableText_SetJustification) == 0x000001, "Wrong alignment on EditableText_SetJustification"); \ +static_assert(sizeof(EditableText_SetJustification) == 0x000001, "Wrong size on EditableText_SetJustification"); \ +static_assert(offsetof(EditableText_SetJustification, InJustification) == 0x000000, "Member 'EditableText_SetJustification::InJustification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetMinimumDesiredWidth \ +static_assert(alignof(EditableText_SetMinimumDesiredWidth) == 0x000004, "Wrong alignment on EditableText_SetMinimumDesiredWidth"); \ +static_assert(sizeof(EditableText_SetMinimumDesiredWidth) == 0x000004, "Wrong size on EditableText_SetMinimumDesiredWidth"); \ +static_assert(offsetof(EditableText_SetMinimumDesiredWidth, InMinDesiredWidth) == 0x000000, "Member 'EditableText_SetMinimumDesiredWidth::InMinDesiredWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetText \ +static_assert(alignof(EditableText_SetText) == 0x000008, "Wrong alignment on EditableText_SetText"); \ +static_assert(sizeof(EditableText_SetText) == 0x000018, "Wrong size on EditableText_SetText"); \ +static_assert(offsetof(EditableText_SetText, InText) == 0x000000, "Member 'EditableText_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_SetTextOverflowPolicy \ +static_assert(alignof(EditableText_SetTextOverflowPolicy) == 0x000001, "Wrong alignment on EditableText_SetTextOverflowPolicy"); \ +static_assert(sizeof(EditableText_SetTextOverflowPolicy) == 0x000001, "Wrong size on EditableText_SetTextOverflowPolicy"); \ +static_assert(offsetof(EditableText_SetTextOverflowPolicy, InOverflowPolicy) == 0x000000, "Member 'EditableText_SetTextOverflowPolicy::InOverflowPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_GetFont \ +static_assert(alignof(EditableText_GetFont) == 0x000008, "Wrong alignment on EditableText_GetFont"); \ +static_assert(sizeof(EditableText_GetFont) == 0x000058, "Wrong size on EditableText_GetFont"); \ +static_assert(offsetof(EditableText_GetFont, ReturnValue) == 0x000000, "Member 'EditableText_GetFont::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_GetHintText \ +static_assert(alignof(EditableText_GetHintText) == 0x000008, "Wrong alignment on EditableText_GetHintText"); \ +static_assert(sizeof(EditableText_GetHintText) == 0x000018, "Wrong size on EditableText_GetHintText"); \ +static_assert(offsetof(EditableText_GetHintText, ReturnValue) == 0x000000, "Member 'EditableText_GetHintText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_GetJustification \ +static_assert(alignof(EditableText_GetJustification) == 0x000001, "Wrong alignment on EditableText_GetJustification"); \ +static_assert(sizeof(EditableText_GetJustification) == 0x000001, "Wrong size on EditableText_GetJustification"); \ +static_assert(offsetof(EditableText_GetJustification, ReturnValue) == 0x000000, "Member 'EditableText_GetJustification::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableText_GetText \ +static_assert(alignof(EditableText_GetText) == 0x000008, "Wrong alignment on EditableText_GetText"); \ +static_assert(sizeof(EditableText_GetText) == 0x000018, "Wrong size on EditableText_GetText"); \ +static_assert(offsetof(EditableText_GetText, ReturnValue) == 0x000000, "Member 'EditableText_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableText \ +static_assert(alignof(UEditableText) == 0x000010, "Wrong alignment on UEditableText"); \ +static_assert(sizeof(UEditableText) == 0x000510, "Wrong size on UEditableText"); \ +static_assert(offsetof(UEditableText, Text) == 0x000180, "Member 'UEditableText::Text' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, TextDelegate) == 0x000198, "Member 'UEditableText::TextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, HintText) == 0x0001A8, "Member 'UEditableText::HintText' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, HintTextDelegate) == 0x0001C0, "Member 'UEditableText::HintTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, WidgetStyle) == 0x0001D0, "Member 'UEditableText::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, IsReadOnly) == 0x0004C0, "Member 'UEditableText::IsReadOnly' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, IsPassword) == 0x0004C1, "Member 'UEditableText::IsPassword' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, MinimumDesiredWidth) == 0x0004C4, "Member 'UEditableText::MinimumDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, IsCaretMovedWhenGainFocus) == 0x0004C8, "Member 'UEditableText::IsCaretMovedWhenGainFocus' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, SelectAllTextWhenFocused) == 0x0004C9, "Member 'UEditableText::SelectAllTextWhenFocused' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, RevertTextOnEscape) == 0x0004CA, "Member 'UEditableText::RevertTextOnEscape' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, ClearKeyboardFocusOnCommit) == 0x0004CB, "Member 'UEditableText::ClearKeyboardFocusOnCommit' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, SelectAllTextOnCommit) == 0x0004CC, "Member 'UEditableText::SelectAllTextOnCommit' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, AllowContextMenu) == 0x0004CD, "Member 'UEditableText::AllowContextMenu' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, KeyboardType) == 0x0004CE, "Member 'UEditableText::KeyboardType' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, VirtualKeyboardOptions) == 0x0004CF, "Member 'UEditableText::VirtualKeyboardOptions' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, VirtualKeyboardTrigger) == 0x0004D0, "Member 'UEditableText::VirtualKeyboardTrigger' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, VirtualKeyboardDismissAction) == 0x0004D1, "Member 'UEditableText::VirtualKeyboardDismissAction' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, Justification) == 0x0004D2, "Member 'UEditableText::Justification' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, OverflowPolicy) == 0x0004D3, "Member 'UEditableText::OverflowPolicy' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, ShapedTextOptions) == 0x0004D4, "Member 'UEditableText::ShapedTextOptions' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, OnTextChanged) == 0x0004D8, "Member 'UEditableText::OnTextChanged' has a wrong offset!"); \ +static_assert(offsetof(UEditableText, OnTextCommitted) == 0x0004E8, "Member 'UEditableText::OnTextCommitted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetError \ +static_assert(alignof(EditableTextBox_SetError) == 0x000008, "Wrong alignment on EditableTextBox_SetError"); \ +static_assert(sizeof(EditableTextBox_SetError) == 0x000018, "Wrong size on EditableTextBox_SetError"); \ +static_assert(offsetof(EditableTextBox_SetError, InError) == 0x000000, "Member 'EditableTextBox_SetError::InError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetForegroundColor \ +static_assert(alignof(EditableTextBox_SetForegroundColor) == 0x000004, "Wrong alignment on EditableTextBox_SetForegroundColor"); \ +static_assert(sizeof(EditableTextBox_SetForegroundColor) == 0x000010, "Wrong size on EditableTextBox_SetForegroundColor"); \ +static_assert(offsetof(EditableTextBox_SetForegroundColor, Color) == 0x000000, "Member 'EditableTextBox_SetForegroundColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetHintText \ +static_assert(alignof(EditableTextBox_SetHintText) == 0x000008, "Wrong alignment on EditableTextBox_SetHintText"); \ +static_assert(sizeof(EditableTextBox_SetHintText) == 0x000018, "Wrong size on EditableTextBox_SetHintText"); \ +static_assert(offsetof(EditableTextBox_SetHintText, InText) == 0x000000, "Member 'EditableTextBox_SetHintText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetIsPassword \ +static_assert(alignof(EditableTextBox_SetIsPassword) == 0x000001, "Wrong alignment on EditableTextBox_SetIsPassword"); \ +static_assert(sizeof(EditableTextBox_SetIsPassword) == 0x000001, "Wrong size on EditableTextBox_SetIsPassword"); \ +static_assert(offsetof(EditableTextBox_SetIsPassword, bIsPassword) == 0x000000, "Member 'EditableTextBox_SetIsPassword::bIsPassword' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetIsReadOnly \ +static_assert(alignof(EditableTextBox_SetIsReadOnly) == 0x000001, "Wrong alignment on EditableTextBox_SetIsReadOnly"); \ +static_assert(sizeof(EditableTextBox_SetIsReadOnly) == 0x000001, "Wrong size on EditableTextBox_SetIsReadOnly"); \ +static_assert(offsetof(EditableTextBox_SetIsReadOnly, bReadOnly) == 0x000000, "Member 'EditableTextBox_SetIsReadOnly::bReadOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetJustification \ +static_assert(alignof(EditableTextBox_SetJustification) == 0x000001, "Wrong alignment on EditableTextBox_SetJustification"); \ +static_assert(sizeof(EditableTextBox_SetJustification) == 0x000001, "Wrong size on EditableTextBox_SetJustification"); \ +static_assert(offsetof(EditableTextBox_SetJustification, InJustification) == 0x000000, "Member 'EditableTextBox_SetJustification::InJustification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetText \ +static_assert(alignof(EditableTextBox_SetText) == 0x000008, "Wrong alignment on EditableTextBox_SetText"); \ +static_assert(sizeof(EditableTextBox_SetText) == 0x000018, "Wrong size on EditableTextBox_SetText"); \ +static_assert(offsetof(EditableTextBox_SetText, InText) == 0x000000, "Member 'EditableTextBox_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_SetTextOverflowPolicy \ +static_assert(alignof(EditableTextBox_SetTextOverflowPolicy) == 0x000001, "Wrong alignment on EditableTextBox_SetTextOverflowPolicy"); \ +static_assert(sizeof(EditableTextBox_SetTextOverflowPolicy) == 0x000001, "Wrong size on EditableTextBox_SetTextOverflowPolicy"); \ +static_assert(offsetof(EditableTextBox_SetTextOverflowPolicy, InOverflowPolicy) == 0x000000, "Member 'EditableTextBox_SetTextOverflowPolicy::InOverflowPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_GetText \ +static_assert(alignof(EditableTextBox_GetText) == 0x000008, "Wrong alignment on EditableTextBox_GetText"); \ +static_assert(sizeof(EditableTextBox_GetText) == 0x000018, "Wrong size on EditableTextBox_GetText"); \ +static_assert(offsetof(EditableTextBox_GetText, ReturnValue) == 0x000000, "Member 'EditableTextBox_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EditableTextBox_HasError \ +static_assert(alignof(EditableTextBox_HasError) == 0x000001, "Wrong alignment on EditableTextBox_HasError"); \ +static_assert(sizeof(EditableTextBox_HasError) == 0x000001, "Wrong size on EditableTextBox_HasError"); \ +static_assert(offsetof(EditableTextBox_HasError, ReturnValue) == 0x000000, "Member 'EditableTextBox_HasError::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableTextBox \ +static_assert(alignof(UEditableTextBox) == 0x000010, "Wrong alignment on UEditableTextBox"); \ +static_assert(sizeof(UEditableTextBox) == 0x0010A0, "Wrong size on UEditableTextBox"); \ +static_assert(offsetof(UEditableTextBox, Text) == 0x000180, "Member 'UEditableTextBox::Text' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, TextDelegate) == 0x000198, "Member 'UEditableTextBox::TextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, WidgetStyle) == 0x0001B0, "Member 'UEditableTextBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, HintText) == 0x001030, "Member 'UEditableTextBox::HintText' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, HintTextDelegate) == 0x001048, "Member 'UEditableTextBox::HintTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, IsReadOnly) == 0x001058, "Member 'UEditableTextBox::IsReadOnly' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, IsPassword) == 0x001059, "Member 'UEditableTextBox::IsPassword' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, MinimumDesiredWidth) == 0x00105C, "Member 'UEditableTextBox::MinimumDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, IsCaretMovedWhenGainFocus) == 0x001060, "Member 'UEditableTextBox::IsCaretMovedWhenGainFocus' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, SelectAllTextWhenFocused) == 0x001061, "Member 'UEditableTextBox::SelectAllTextWhenFocused' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, RevertTextOnEscape) == 0x001062, "Member 'UEditableTextBox::RevertTextOnEscape' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, ClearKeyboardFocusOnCommit) == 0x001063, "Member 'UEditableTextBox::ClearKeyboardFocusOnCommit' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, SelectAllTextOnCommit) == 0x001064, "Member 'UEditableTextBox::SelectAllTextOnCommit' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, AllowContextMenu) == 0x001065, "Member 'UEditableTextBox::AllowContextMenu' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, KeyboardType) == 0x001066, "Member 'UEditableTextBox::KeyboardType' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, VirtualKeyboardOptions) == 0x001067, "Member 'UEditableTextBox::VirtualKeyboardOptions' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, VirtualKeyboardTrigger) == 0x001068, "Member 'UEditableTextBox::VirtualKeyboardTrigger' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, VirtualKeyboardDismissAction) == 0x001069, "Member 'UEditableTextBox::VirtualKeyboardDismissAction' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, Justification) == 0x00106A, "Member 'UEditableTextBox::Justification' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, OverflowPolicy) == 0x00106B, "Member 'UEditableTextBox::OverflowPolicy' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, ShapedTextOptions) == 0x00106C, "Member 'UEditableTextBox::ShapedTextOptions' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, OnTextChanged) == 0x001070, "Member 'UEditableTextBox::OnTextChanged' has a wrong offset!"); \ +static_assert(offsetof(UEditableTextBox, OnTextCommitted) == 0x001080, "Member 'UEditableTextBox::OnTextCommitted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExpandableArea_SetIsExpanded \ +static_assert(alignof(ExpandableArea_SetIsExpanded) == 0x000001, "Wrong alignment on ExpandableArea_SetIsExpanded"); \ +static_assert(sizeof(ExpandableArea_SetIsExpanded) == 0x000001, "Wrong size on ExpandableArea_SetIsExpanded"); \ +static_assert(offsetof(ExpandableArea_SetIsExpanded, IsExpanded) == 0x000000, "Member 'ExpandableArea_SetIsExpanded::IsExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExpandableArea_SetIsExpanded_Animated \ +static_assert(alignof(ExpandableArea_SetIsExpanded_Animated) == 0x000001, "Wrong alignment on ExpandableArea_SetIsExpanded_Animated"); \ +static_assert(sizeof(ExpandableArea_SetIsExpanded_Animated) == 0x000001, "Wrong size on ExpandableArea_SetIsExpanded_Animated"); \ +static_assert(offsetof(ExpandableArea_SetIsExpanded_Animated, IsExpanded) == 0x000000, "Member 'ExpandableArea_SetIsExpanded_Animated::IsExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExpandableArea_GetIsExpanded \ +static_assert(alignof(ExpandableArea_GetIsExpanded) == 0x000001, "Wrong alignment on ExpandableArea_GetIsExpanded"); \ +static_assert(sizeof(ExpandableArea_GetIsExpanded) == 0x000001, "Wrong size on ExpandableArea_GetIsExpanded"); \ +static_assert(offsetof(ExpandableArea_GetIsExpanded, ReturnValue) == 0x000000, "Member 'ExpandableArea_GetIsExpanded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UExpandableArea \ +static_assert(alignof(UExpandableArea) == 0x000010, "Wrong alignment on UExpandableArea"); \ +static_assert(sizeof(UExpandableArea) == 0x000490, "Wrong size on UExpandableArea"); \ +static_assert(offsetof(UExpandableArea, Style) == 0x000190, "Member 'UExpandableArea::Style' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, BorderBrush) == 0x000350, "Member 'UExpandableArea::BorderBrush' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, BorderColor) == 0x000420, "Member 'UExpandableArea::BorderColor' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, bIsExpanded) == 0x000434, "Member 'UExpandableArea::bIsExpanded' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, MaxHeight) == 0x000438, "Member 'UExpandableArea::MaxHeight' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, HeaderPadding) == 0x00043C, "Member 'UExpandableArea::HeaderPadding' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, AreaPadding) == 0x00044C, "Member 'UExpandableArea::AreaPadding' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, OnExpansionChanged) == 0x000460, "Member 'UExpandableArea::OnExpansionChanged' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, HeaderContent) == 0x000470, "Member 'UExpandableArea::HeaderContent' has a wrong offset!"); \ +static_assert(offsetof(UExpandableArea, BodyContent) == 0x000478, "Member 'UExpandableArea::BodyContent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridPanel_AddChildToGrid \ +static_assert(alignof(GridPanel_AddChildToGrid) == 0x000008, "Wrong alignment on GridPanel_AddChildToGrid"); \ +static_assert(sizeof(GridPanel_AddChildToGrid) == 0x000018, "Wrong size on GridPanel_AddChildToGrid"); \ +static_assert(offsetof(GridPanel_AddChildToGrid, Content) == 0x000000, "Member 'GridPanel_AddChildToGrid::Content' has a wrong offset!"); \ +static_assert(offsetof(GridPanel_AddChildToGrid, InRow) == 0x000008, "Member 'GridPanel_AddChildToGrid::InRow' has a wrong offset!"); \ +static_assert(offsetof(GridPanel_AddChildToGrid, InColumn) == 0x00000C, "Member 'GridPanel_AddChildToGrid::InColumn' has a wrong offset!"); \ +static_assert(offsetof(GridPanel_AddChildToGrid, ReturnValue) == 0x000010, "Member 'GridPanel_AddChildToGrid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridPanel_SetColumnFill \ +static_assert(alignof(GridPanel_SetColumnFill) == 0x000004, "Wrong alignment on GridPanel_SetColumnFill"); \ +static_assert(sizeof(GridPanel_SetColumnFill) == 0x000008, "Wrong size on GridPanel_SetColumnFill"); \ +static_assert(offsetof(GridPanel_SetColumnFill, ColumnIndex) == 0x000000, "Member 'GridPanel_SetColumnFill::ColumnIndex' has a wrong offset!"); \ +static_assert(offsetof(GridPanel_SetColumnFill, Coefficient) == 0x000004, "Member 'GridPanel_SetColumnFill::Coefficient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridPanel_SetRowFill \ +static_assert(alignof(GridPanel_SetRowFill) == 0x000004, "Wrong alignment on GridPanel_SetRowFill"); \ +static_assert(sizeof(GridPanel_SetRowFill) == 0x000008, "Wrong size on GridPanel_SetRowFill"); \ +static_assert(offsetof(GridPanel_SetRowFill, RowIndex) == 0x000000, "Member 'GridPanel_SetRowFill::RowIndex' has a wrong offset!"); \ +static_assert(offsetof(GridPanel_SetRowFill, Coefficient) == 0x000004, "Member 'GridPanel_SetRowFill::Coefficient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGridPanel \ +static_assert(alignof(UGridPanel) == 0x000008, "Wrong alignment on UGridPanel"); \ +static_assert(sizeof(UGridPanel) == 0x0001C8, "Wrong size on UGridPanel"); \ +static_assert(offsetof(UGridPanel, ColumnFill) == 0x000198, "Member 'UGridPanel::ColumnFill' has a wrong offset!"); \ +static_assert(offsetof(UGridPanel, RowFill) == 0x0001A8, "Member 'UGridPanel::RowFill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetColumn \ +static_assert(alignof(GridSlot_SetColumn) == 0x000004, "Wrong alignment on GridSlot_SetColumn"); \ +static_assert(sizeof(GridSlot_SetColumn) == 0x000004, "Wrong size on GridSlot_SetColumn"); \ +static_assert(offsetof(GridSlot_SetColumn, InColumn) == 0x000000, "Member 'GridSlot_SetColumn::InColumn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetColumnSpan \ +static_assert(alignof(GridSlot_SetColumnSpan) == 0x000004, "Wrong alignment on GridSlot_SetColumnSpan"); \ +static_assert(sizeof(GridSlot_SetColumnSpan) == 0x000004, "Wrong size on GridSlot_SetColumnSpan"); \ +static_assert(offsetof(GridSlot_SetColumnSpan, InColumnSpan) == 0x000000, "Member 'GridSlot_SetColumnSpan::InColumnSpan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetHorizontalAlignment \ +static_assert(alignof(GridSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on GridSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(GridSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on GridSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(GridSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'GridSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetLayer \ +static_assert(alignof(GridSlot_SetLayer) == 0x000004, "Wrong alignment on GridSlot_SetLayer"); \ +static_assert(sizeof(GridSlot_SetLayer) == 0x000004, "Wrong size on GridSlot_SetLayer"); \ +static_assert(offsetof(GridSlot_SetLayer, InLayer) == 0x000000, "Member 'GridSlot_SetLayer::InLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetNudge \ +static_assert(alignof(GridSlot_SetNudge) == 0x000008, "Wrong alignment on GridSlot_SetNudge"); \ +static_assert(sizeof(GridSlot_SetNudge) == 0x000010, "Wrong size on GridSlot_SetNudge"); \ +static_assert(offsetof(GridSlot_SetNudge, InNudge) == 0x000000, "Member 'GridSlot_SetNudge::InNudge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetPadding \ +static_assert(alignof(GridSlot_SetPadding) == 0x000004, "Wrong alignment on GridSlot_SetPadding"); \ +static_assert(sizeof(GridSlot_SetPadding) == 0x000010, "Wrong size on GridSlot_SetPadding"); \ +static_assert(offsetof(GridSlot_SetPadding, InPadding) == 0x000000, "Member 'GridSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetRow \ +static_assert(alignof(GridSlot_SetRow) == 0x000004, "Wrong alignment on GridSlot_SetRow"); \ +static_assert(sizeof(GridSlot_SetRow) == 0x000004, "Wrong size on GridSlot_SetRow"); \ +static_assert(offsetof(GridSlot_SetRow, InRow) == 0x000000, "Member 'GridSlot_SetRow::InRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetRowSpan \ +static_assert(alignof(GridSlot_SetRowSpan) == 0x000004, "Wrong alignment on GridSlot_SetRowSpan"); \ +static_assert(sizeof(GridSlot_SetRowSpan) == 0x000004, "Wrong size on GridSlot_SetRowSpan"); \ +static_assert(offsetof(GridSlot_SetRowSpan, InRowSpan) == 0x000000, "Member 'GridSlot_SetRowSpan::InRowSpan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GridSlot_SetVerticalAlignment \ +static_assert(alignof(GridSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on GridSlot_SetVerticalAlignment"); \ +static_assert(sizeof(GridSlot_SetVerticalAlignment) == 0x000001, "Wrong size on GridSlot_SetVerticalAlignment"); \ +static_assert(offsetof(GridSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'GridSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGridSlot \ +static_assert(alignof(UGridSlot) == 0x000008, "Wrong alignment on UGridSlot"); \ +static_assert(sizeof(UGridSlot) == 0x000078, "Wrong size on UGridSlot"); \ +static_assert(offsetof(UGridSlot, Padding) == 0x000038, "Member 'UGridSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, HorizontalAlignment) == 0x000048, "Member 'UGridSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, VerticalAlignment) == 0x000049, "Member 'UGridSlot::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, Row) == 0x00004C, "Member 'UGridSlot::Row' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, RowSpan) == 0x000050, "Member 'UGridSlot::RowSpan' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, Column) == 0x000054, "Member 'UGridSlot::Column' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, ColumnSpan) == 0x000058, "Member 'UGridSlot::ColumnSpan' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, Layer) == 0x00005C, "Member 'UGridSlot::Layer' has a wrong offset!"); \ +static_assert(offsetof(UGridSlot, Nudge) == 0x000060, "Member 'UGridSlot::Nudge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HorizontalBox_AddChildToHorizontalBox \ +static_assert(alignof(HorizontalBox_AddChildToHorizontalBox) == 0x000008, "Wrong alignment on HorizontalBox_AddChildToHorizontalBox"); \ +static_assert(sizeof(HorizontalBox_AddChildToHorizontalBox) == 0x000010, "Wrong size on HorizontalBox_AddChildToHorizontalBox"); \ +static_assert(offsetof(HorizontalBox_AddChildToHorizontalBox, Content) == 0x000000, "Member 'HorizontalBox_AddChildToHorizontalBox::Content' has a wrong offset!"); \ +static_assert(offsetof(HorizontalBox_AddChildToHorizontalBox, ReturnValue) == 0x000008, "Member 'HorizontalBox_AddChildToHorizontalBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHorizontalBox \ +static_assert(alignof(UHorizontalBox) == 0x000008, "Wrong alignment on UHorizontalBox"); \ +static_assert(sizeof(UHorizontalBox) == 0x0001A8, "Wrong size on UHorizontalBox"); \ + +#define DUMPER7_ASSERTS_HorizontalBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(HorizontalBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on HorizontalBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(HorizontalBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on HorizontalBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(HorizontalBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'HorizontalBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HorizontalBoxSlot_SetPadding \ +static_assert(alignof(HorizontalBoxSlot_SetPadding) == 0x000004, "Wrong alignment on HorizontalBoxSlot_SetPadding"); \ +static_assert(sizeof(HorizontalBoxSlot_SetPadding) == 0x000010, "Wrong size on HorizontalBoxSlot_SetPadding"); \ +static_assert(offsetof(HorizontalBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'HorizontalBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HorizontalBoxSlot_SetSize \ +static_assert(alignof(HorizontalBoxSlot_SetSize) == 0x000004, "Wrong alignment on HorizontalBoxSlot_SetSize"); \ +static_assert(sizeof(HorizontalBoxSlot_SetSize) == 0x000008, "Wrong size on HorizontalBoxSlot_SetSize"); \ +static_assert(offsetof(HorizontalBoxSlot_SetSize, InSize) == 0x000000, "Member 'HorizontalBoxSlot_SetSize::InSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HorizontalBoxSlot_SetVerticalAlignment \ +static_assert(alignof(HorizontalBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on HorizontalBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(HorizontalBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on HorizontalBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(HorizontalBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'HorizontalBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHorizontalBoxSlot \ +static_assert(alignof(UHorizontalBoxSlot) == 0x000008, "Wrong alignment on UHorizontalBoxSlot"); \ +static_assert(sizeof(UHorizontalBoxSlot) == 0x000060, "Wrong size on UHorizontalBoxSlot"); \ +static_assert(offsetof(UHorizontalBoxSlot, Size) == 0x000040, "Member 'UHorizontalBoxSlot::Size' has a wrong offset!"); \ +static_assert(offsetof(UHorizontalBoxSlot, Padding) == 0x000048, "Member 'UHorizontalBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UHorizontalBoxSlot, HorizontalAlignment) == 0x000058, "Member 'UHorizontalBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UHorizontalBoxSlot, VerticalAlignment) == 0x000059, "Member 'UHorizontalBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_GetDynamicMaterial \ +static_assert(alignof(Image_GetDynamicMaterial) == 0x000008, "Wrong alignment on Image_GetDynamicMaterial"); \ +static_assert(sizeof(Image_GetDynamicMaterial) == 0x000008, "Wrong size on Image_GetDynamicMaterial"); \ +static_assert(offsetof(Image_GetDynamicMaterial, ReturnValue) == 0x000000, "Member 'Image_GetDynamicMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrush \ +static_assert(alignof(Image_SetBrush) == 0x000010, "Wrong alignment on Image_SetBrush"); \ +static_assert(sizeof(Image_SetBrush) == 0x0000D0, "Wrong size on Image_SetBrush"); \ +static_assert(offsetof(Image_SetBrush, InBrush) == 0x000000, "Member 'Image_SetBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromAsset \ +static_assert(alignof(Image_SetBrushFromAsset) == 0x000008, "Wrong alignment on Image_SetBrushFromAsset"); \ +static_assert(sizeof(Image_SetBrushFromAsset) == 0x000008, "Wrong size on Image_SetBrushFromAsset"); \ +static_assert(offsetof(Image_SetBrushFromAsset, Asset) == 0x000000, "Member 'Image_SetBrushFromAsset::Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromAtlasInterface \ +static_assert(alignof(Image_SetBrushFromAtlasInterface) == 0x000008, "Wrong alignment on Image_SetBrushFromAtlasInterface"); \ +static_assert(sizeof(Image_SetBrushFromAtlasInterface) == 0x000018, "Wrong size on Image_SetBrushFromAtlasInterface"); \ +static_assert(offsetof(Image_SetBrushFromAtlasInterface, AtlasRegion) == 0x000000, "Member 'Image_SetBrushFromAtlasInterface::AtlasRegion' has a wrong offset!"); \ +static_assert(offsetof(Image_SetBrushFromAtlasInterface, bMatchSize) == 0x000010, "Member 'Image_SetBrushFromAtlasInterface::bMatchSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromMaterial \ +static_assert(alignof(Image_SetBrushFromMaterial) == 0x000008, "Wrong alignment on Image_SetBrushFromMaterial"); \ +static_assert(sizeof(Image_SetBrushFromMaterial) == 0x000008, "Wrong size on Image_SetBrushFromMaterial"); \ +static_assert(offsetof(Image_SetBrushFromMaterial, Material) == 0x000000, "Member 'Image_SetBrushFromMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromSoftMaterial \ +static_assert(alignof(Image_SetBrushFromSoftMaterial) == 0x000008, "Wrong alignment on Image_SetBrushFromSoftMaterial"); \ +static_assert(sizeof(Image_SetBrushFromSoftMaterial) == 0x000028, "Wrong size on Image_SetBrushFromSoftMaterial"); \ +static_assert(offsetof(Image_SetBrushFromSoftMaterial, SoftMaterial) == 0x000000, "Member 'Image_SetBrushFromSoftMaterial::SoftMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromSoftTexture \ +static_assert(alignof(Image_SetBrushFromSoftTexture) == 0x000008, "Wrong alignment on Image_SetBrushFromSoftTexture"); \ +static_assert(sizeof(Image_SetBrushFromSoftTexture) == 0x000030, "Wrong size on Image_SetBrushFromSoftTexture"); \ +static_assert(offsetof(Image_SetBrushFromSoftTexture, SoftTexture) == 0x000000, "Member 'Image_SetBrushFromSoftTexture::SoftTexture' has a wrong offset!"); \ +static_assert(offsetof(Image_SetBrushFromSoftTexture, bMatchSize) == 0x000028, "Member 'Image_SetBrushFromSoftTexture::bMatchSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromTexture \ +static_assert(alignof(Image_SetBrushFromTexture) == 0x000008, "Wrong alignment on Image_SetBrushFromTexture"); \ +static_assert(sizeof(Image_SetBrushFromTexture) == 0x000010, "Wrong size on Image_SetBrushFromTexture"); \ +static_assert(offsetof(Image_SetBrushFromTexture, Texture) == 0x000000, "Member 'Image_SetBrushFromTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(Image_SetBrushFromTexture, bMatchSize) == 0x000008, "Member 'Image_SetBrushFromTexture::bMatchSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushFromTextureDynamic \ +static_assert(alignof(Image_SetBrushFromTextureDynamic) == 0x000008, "Wrong alignment on Image_SetBrushFromTextureDynamic"); \ +static_assert(sizeof(Image_SetBrushFromTextureDynamic) == 0x000010, "Wrong size on Image_SetBrushFromTextureDynamic"); \ +static_assert(offsetof(Image_SetBrushFromTextureDynamic, Texture) == 0x000000, "Member 'Image_SetBrushFromTextureDynamic::Texture' has a wrong offset!"); \ +static_assert(offsetof(Image_SetBrushFromTextureDynamic, bMatchSize) == 0x000008, "Member 'Image_SetBrushFromTextureDynamic::bMatchSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushResourceObject \ +static_assert(alignof(Image_SetBrushResourceObject) == 0x000008, "Wrong alignment on Image_SetBrushResourceObject"); \ +static_assert(sizeof(Image_SetBrushResourceObject) == 0x000008, "Wrong size on Image_SetBrushResourceObject"); \ +static_assert(offsetof(Image_SetBrushResourceObject, ResourceObject) == 0x000000, "Member 'Image_SetBrushResourceObject::ResourceObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetBrushTintColor \ +static_assert(alignof(Image_SetBrushTintColor) == 0x000004, "Wrong alignment on Image_SetBrushTintColor"); \ +static_assert(sizeof(Image_SetBrushTintColor) == 0x000014, "Wrong size on Image_SetBrushTintColor"); \ +static_assert(offsetof(Image_SetBrushTintColor, TintColor) == 0x000000, "Member 'Image_SetBrushTintColor::TintColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetColorAndOpacity \ +static_assert(alignof(Image_SetColorAndOpacity) == 0x000004, "Wrong alignment on Image_SetColorAndOpacity"); \ +static_assert(sizeof(Image_SetColorAndOpacity) == 0x000010, "Wrong size on Image_SetColorAndOpacity"); \ +static_assert(offsetof(Image_SetColorAndOpacity, InColorAndOpacity) == 0x000000, "Member 'Image_SetColorAndOpacity::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetDesiredSizeOverride \ +static_assert(alignof(Image_SetDesiredSizeOverride) == 0x000008, "Wrong alignment on Image_SetDesiredSizeOverride"); \ +static_assert(sizeof(Image_SetDesiredSizeOverride) == 0x000010, "Wrong size on Image_SetDesiredSizeOverride"); \ +static_assert(offsetof(Image_SetDesiredSizeOverride, DesiredSize) == 0x000000, "Member 'Image_SetDesiredSizeOverride::DesiredSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Image_SetOpacity \ +static_assert(alignof(Image_SetOpacity) == 0x000004, "Wrong alignment on Image_SetOpacity"); \ +static_assert(sizeof(Image_SetOpacity) == 0x000004, "Wrong size on Image_SetOpacity"); \ +static_assert(offsetof(Image_SetOpacity, InOpacity) == 0x000000, "Member 'Image_SetOpacity::InOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImage \ +static_assert(alignof(UImage) == 0x000010, "Wrong alignment on UImage"); \ +static_assert(sizeof(UImage) == 0x0002E0, "Wrong size on UImage"); \ +static_assert(offsetof(UImage, Brush) == 0x000180, "Member 'UImage::Brush' has a wrong offset!"); \ +static_assert(offsetof(UImage, BrushDelegate) == 0x000250, "Member 'UImage::BrushDelegate' has a wrong offset!"); \ +static_assert(offsetof(UImage, ColorAndOpacity) == 0x000260, "Member 'UImage::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UImage, ColorAndOpacityDelegate) == 0x000270, "Member 'UImage::ColorAndOpacityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UImage, bFlipForRightToLeftFlowDirection) == 0x000280, "Member 'UImage::bFlipForRightToLeftFlowDirection' has a wrong offset!"); \ +static_assert(offsetof(UImage, OnMouseButtonDownEvent) == 0x000284, "Member 'UImage::OnMouseButtonDownEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetAllowGamepadKeys \ +static_assert(alignof(InputKeySelector_SetAllowGamepadKeys) == 0x000001, "Wrong alignment on InputKeySelector_SetAllowGamepadKeys"); \ +static_assert(sizeof(InputKeySelector_SetAllowGamepadKeys) == 0x000001, "Wrong size on InputKeySelector_SetAllowGamepadKeys"); \ +static_assert(offsetof(InputKeySelector_SetAllowGamepadKeys, bInAllowGamepadKeys) == 0x000000, "Member 'InputKeySelector_SetAllowGamepadKeys::bInAllowGamepadKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetAllowModifierKeys \ +static_assert(alignof(InputKeySelector_SetAllowModifierKeys) == 0x000001, "Wrong alignment on InputKeySelector_SetAllowModifierKeys"); \ +static_assert(sizeof(InputKeySelector_SetAllowModifierKeys) == 0x000001, "Wrong size on InputKeySelector_SetAllowModifierKeys"); \ +static_assert(offsetof(InputKeySelector_SetAllowModifierKeys, bInAllowModifierKeys) == 0x000000, "Member 'InputKeySelector_SetAllowModifierKeys::bInAllowModifierKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetEscapeKeys \ +static_assert(alignof(InputKeySelector_SetEscapeKeys) == 0x000008, "Wrong alignment on InputKeySelector_SetEscapeKeys"); \ +static_assert(sizeof(InputKeySelector_SetEscapeKeys) == 0x000010, "Wrong size on InputKeySelector_SetEscapeKeys"); \ +static_assert(offsetof(InputKeySelector_SetEscapeKeys, InKeys) == 0x000000, "Member 'InputKeySelector_SetEscapeKeys::InKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetKeySelectionText \ +static_assert(alignof(InputKeySelector_SetKeySelectionText) == 0x000008, "Wrong alignment on InputKeySelector_SetKeySelectionText"); \ +static_assert(sizeof(InputKeySelector_SetKeySelectionText) == 0x000018, "Wrong size on InputKeySelector_SetKeySelectionText"); \ +static_assert(offsetof(InputKeySelector_SetKeySelectionText, InKeySelectionText) == 0x000000, "Member 'InputKeySelector_SetKeySelectionText::InKeySelectionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetNoKeySpecifiedText \ +static_assert(alignof(InputKeySelector_SetNoKeySpecifiedText) == 0x000008, "Wrong alignment on InputKeySelector_SetNoKeySpecifiedText"); \ +static_assert(sizeof(InputKeySelector_SetNoKeySpecifiedText) == 0x000018, "Wrong size on InputKeySelector_SetNoKeySpecifiedText"); \ +static_assert(offsetof(InputKeySelector_SetNoKeySpecifiedText, InNoKeySpecifiedText) == 0x000000, "Member 'InputKeySelector_SetNoKeySpecifiedText::InNoKeySpecifiedText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetSelectedKey \ +static_assert(alignof(InputKeySelector_SetSelectedKey) == 0x000008, "Wrong alignment on InputKeySelector_SetSelectedKey"); \ +static_assert(sizeof(InputKeySelector_SetSelectedKey) == 0x000020, "Wrong size on InputKeySelector_SetSelectedKey"); \ +static_assert(offsetof(InputKeySelector_SetSelectedKey, InSelectedKey) == 0x000000, "Member 'InputKeySelector_SetSelectedKey::InSelectedKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_SetTextBlockVisibility \ +static_assert(alignof(InputKeySelector_SetTextBlockVisibility) == 0x000001, "Wrong alignment on InputKeySelector_SetTextBlockVisibility"); \ +static_assert(sizeof(InputKeySelector_SetTextBlockVisibility) == 0x000001, "Wrong size on InputKeySelector_SetTextBlockVisibility"); \ +static_assert(offsetof(InputKeySelector_SetTextBlockVisibility, InVisibility) == 0x000000, "Member 'InputKeySelector_SetTextBlockVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputKeySelector_GetIsSelectingKey \ +static_assert(alignof(InputKeySelector_GetIsSelectingKey) == 0x000001, "Wrong alignment on InputKeySelector_GetIsSelectingKey"); \ +static_assert(sizeof(InputKeySelector_GetIsSelectingKey) == 0x000001, "Wrong size on InputKeySelector_GetIsSelectingKey"); \ +static_assert(offsetof(InputKeySelector_GetIsSelectingKey, ReturnValue) == 0x000000, "Member 'InputKeySelector_GetIsSelectingKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputKeySelector \ +static_assert(alignof(UInputKeySelector) == 0x000010, "Wrong alignment on UInputKeySelector"); \ +static_assert(sizeof(UInputKeySelector) == 0x000960, "Wrong size on UInputKeySelector"); \ +static_assert(offsetof(UInputKeySelector, WidgetStyle) == 0x000180, "Member 'UInputKeySelector::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, TextStyle) == 0x000570, "Member 'UInputKeySelector::TextStyle' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, SelectedKey) == 0x0008B0, "Member 'UInputKeySelector::SelectedKey' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, Margin) == 0x0008D0, "Member 'UInputKeySelector::Margin' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, KeySelectionText) == 0x0008E0, "Member 'UInputKeySelector::KeySelectionText' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, NoKeySpecifiedText) == 0x0008F8, "Member 'UInputKeySelector::NoKeySpecifiedText' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, bAllowModifierKeys) == 0x000910, "Member 'UInputKeySelector::bAllowModifierKeys' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, bAllowGamepadKeys) == 0x000911, "Member 'UInputKeySelector::bAllowGamepadKeys' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, EscapeKeys) == 0x000918, "Member 'UInputKeySelector::EscapeKeys' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, OnKeySelected) == 0x000928, "Member 'UInputKeySelector::OnKeySelected' has a wrong offset!"); \ +static_assert(offsetof(UInputKeySelector, OnIsSelectingKeyChanged) == 0x000938, "Member 'UInputKeySelector::OnIsSelectingKeyChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InvalidationBox_SetCanCache \ +static_assert(alignof(InvalidationBox_SetCanCache) == 0x000001, "Wrong alignment on InvalidationBox_SetCanCache"); \ +static_assert(sizeof(InvalidationBox_SetCanCache) == 0x000001, "Wrong size on InvalidationBox_SetCanCache"); \ +static_assert(offsetof(InvalidationBox_SetCanCache, CanCache) == 0x000000, "Member 'InvalidationBox_SetCanCache::CanCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InvalidationBox_GetCanCache \ +static_assert(alignof(InvalidationBox_GetCanCache) == 0x000001, "Wrong alignment on InvalidationBox_GetCanCache"); \ +static_assert(sizeof(InvalidationBox_GetCanCache) == 0x000001, "Wrong size on InvalidationBox_GetCanCache"); \ +static_assert(offsetof(InvalidationBox_GetCanCache, ReturnValue) == 0x000000, "Member 'InvalidationBox_GetCanCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInvalidationBox \ +static_assert(alignof(UInvalidationBox) == 0x000008, "Wrong alignment on UInvalidationBox"); \ +static_assert(sizeof(UInvalidationBox) == 0x0001B0, "Wrong size on UInvalidationBox"); \ +static_assert(offsetof(UInvalidationBox, bCanCache) == 0x000198, "Member 'UInvalidationBox::bCanCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_FitInWindow \ +static_assert(alignof(MenuAnchor_FitInWindow) == 0x000001, "Wrong alignment on MenuAnchor_FitInWindow"); \ +static_assert(sizeof(MenuAnchor_FitInWindow) == 0x000001, "Wrong size on MenuAnchor_FitInWindow"); \ +static_assert(offsetof(MenuAnchor_FitInWindow, bFit) == 0x000000, "Member 'MenuAnchor_FitInWindow::bFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_Open \ +static_assert(alignof(MenuAnchor_Open) == 0x000001, "Wrong alignment on MenuAnchor_Open"); \ +static_assert(sizeof(MenuAnchor_Open) == 0x000001, "Wrong size on MenuAnchor_Open"); \ +static_assert(offsetof(MenuAnchor_Open, bFocusMenu) == 0x000000, "Member 'MenuAnchor_Open::bFocusMenu' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_SetPlacement \ +static_assert(alignof(MenuAnchor_SetPlacement) == 0x000001, "Wrong alignment on MenuAnchor_SetPlacement"); \ +static_assert(sizeof(MenuAnchor_SetPlacement) == 0x000001, "Wrong size on MenuAnchor_SetPlacement"); \ +static_assert(offsetof(MenuAnchor_SetPlacement, InPlacement) == 0x000000, "Member 'MenuAnchor_SetPlacement::InPlacement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_ToggleOpen \ +static_assert(alignof(MenuAnchor_ToggleOpen) == 0x000001, "Wrong alignment on MenuAnchor_ToggleOpen"); \ +static_assert(sizeof(MenuAnchor_ToggleOpen) == 0x000001, "Wrong size on MenuAnchor_ToggleOpen"); \ +static_assert(offsetof(MenuAnchor_ToggleOpen, bFocusOnOpen) == 0x000000, "Member 'MenuAnchor_ToggleOpen::bFocusOnOpen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_GetMenuPosition \ +static_assert(alignof(MenuAnchor_GetMenuPosition) == 0x000008, "Wrong alignment on MenuAnchor_GetMenuPosition"); \ +static_assert(sizeof(MenuAnchor_GetMenuPosition) == 0x000010, "Wrong size on MenuAnchor_GetMenuPosition"); \ +static_assert(offsetof(MenuAnchor_GetMenuPosition, ReturnValue) == 0x000000, "Member 'MenuAnchor_GetMenuPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_HasOpenSubMenus \ +static_assert(alignof(MenuAnchor_HasOpenSubMenus) == 0x000001, "Wrong alignment on MenuAnchor_HasOpenSubMenus"); \ +static_assert(sizeof(MenuAnchor_HasOpenSubMenus) == 0x000001, "Wrong size on MenuAnchor_HasOpenSubMenus"); \ +static_assert(offsetof(MenuAnchor_HasOpenSubMenus, ReturnValue) == 0x000000, "Member 'MenuAnchor_HasOpenSubMenus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_IsOpen \ +static_assert(alignof(MenuAnchor_IsOpen) == 0x000001, "Wrong alignment on MenuAnchor_IsOpen"); \ +static_assert(sizeof(MenuAnchor_IsOpen) == 0x000001, "Wrong size on MenuAnchor_IsOpen"); \ +static_assert(offsetof(MenuAnchor_IsOpen, ReturnValue) == 0x000000, "Member 'MenuAnchor_IsOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MenuAnchor_ShouldOpenDueToClick \ +static_assert(alignof(MenuAnchor_ShouldOpenDueToClick) == 0x000001, "Wrong alignment on MenuAnchor_ShouldOpenDueToClick"); \ +static_assert(sizeof(MenuAnchor_ShouldOpenDueToClick) == 0x000001, "Wrong size on MenuAnchor_ShouldOpenDueToClick"); \ +static_assert(offsetof(MenuAnchor_ShouldOpenDueToClick, ReturnValue) == 0x000000, "Member 'MenuAnchor_ShouldOpenDueToClick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMenuAnchor \ +static_assert(alignof(UMenuAnchor) == 0x000008, "Wrong alignment on UMenuAnchor"); \ +static_assert(sizeof(UMenuAnchor) == 0x0001E8, "Wrong size on UMenuAnchor"); \ +static_assert(offsetof(UMenuAnchor, MenuClass) == 0x000198, "Member 'UMenuAnchor::MenuClass' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, OnGetMenuContentEvent) == 0x0001A0, "Member 'UMenuAnchor::OnGetMenuContentEvent' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, OnGetUserMenuContentEvent) == 0x0001B0, "Member 'UMenuAnchor::OnGetUserMenuContentEvent' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, Placement) == 0x0001C0, "Member 'UMenuAnchor::Placement' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, bFitInWindow) == 0x0001C1, "Member 'UMenuAnchor::bFitInWindow' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, ShouldDeferPaintingAfterWindowContent) == 0x0001C2, "Member 'UMenuAnchor::ShouldDeferPaintingAfterWindowContent' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, UseApplicationMenuStack) == 0x0001C3, "Member 'UMenuAnchor::UseApplicationMenuStack' has a wrong offset!"); \ +static_assert(offsetof(UMenuAnchor, OnMenuOpenChanged) == 0x0001C8, "Member 'UMenuAnchor::OnMenuOpenChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextLayoutWidget_SetJustification \ +static_assert(alignof(TextLayoutWidget_SetJustification) == 0x000001, "Wrong alignment on TextLayoutWidget_SetJustification"); \ +static_assert(sizeof(TextLayoutWidget_SetJustification) == 0x000001, "Wrong size on TextLayoutWidget_SetJustification"); \ +static_assert(offsetof(TextLayoutWidget_SetJustification, InJustification) == 0x000000, "Member 'TextLayoutWidget_SetJustification::InJustification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextLayoutWidget \ +static_assert(alignof(UTextLayoutWidget) == 0x000008, "Wrong alignment on UTextLayoutWidget"); \ +static_assert(sizeof(UTextLayoutWidget) == 0x0001A0, "Wrong size on UTextLayoutWidget"); \ +static_assert(offsetof(UTextLayoutWidget, ShapedTextOptions) == 0x000180, "Member 'UTextLayoutWidget::ShapedTextOptions' has a wrong offset!"); \ +static_assert(offsetof(UTextLayoutWidget, Justification) == 0x000183, "Member 'UTextLayoutWidget::Justification' has a wrong offset!"); \ +static_assert(offsetof(UTextLayoutWidget, WrappingPolicy) == 0x000184, "Member 'UTextLayoutWidget::WrappingPolicy' has a wrong offset!"); \ +static_assert(offsetof(UTextLayoutWidget, WrapTextAt) == 0x000188, "Member 'UTextLayoutWidget::WrapTextAt' has a wrong offset!"); \ +static_assert(offsetof(UTextLayoutWidget, Margin) == 0x00018C, "Member 'UTextLayoutWidget::Margin' has a wrong offset!"); \ +static_assert(offsetof(UTextLayoutWidget, LineHeightPercentage) == 0x00019C, "Member 'UTextLayoutWidget::LineHeightPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetFont \ +static_assert(alignof(MultiLineEditableText_SetFont) == 0x000008, "Wrong alignment on MultiLineEditableText_SetFont"); \ +static_assert(sizeof(MultiLineEditableText_SetFont) == 0x000058, "Wrong size on MultiLineEditableText_SetFont"); \ +static_assert(offsetof(MultiLineEditableText_SetFont, InFontInfo) == 0x000000, "Member 'MultiLineEditableText_SetFont::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetFontMaterial \ +static_assert(alignof(MultiLineEditableText_SetFontMaterial) == 0x000008, "Wrong alignment on MultiLineEditableText_SetFontMaterial"); \ +static_assert(sizeof(MultiLineEditableText_SetFontMaterial) == 0x000008, "Wrong size on MultiLineEditableText_SetFontMaterial"); \ +static_assert(offsetof(MultiLineEditableText_SetFontMaterial, InMaterial) == 0x000000, "Member 'MultiLineEditableText_SetFontMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetFontOutlineMaterial \ +static_assert(alignof(MultiLineEditableText_SetFontOutlineMaterial) == 0x000008, "Wrong alignment on MultiLineEditableText_SetFontOutlineMaterial"); \ +static_assert(sizeof(MultiLineEditableText_SetFontOutlineMaterial) == 0x000008, "Wrong size on MultiLineEditableText_SetFontOutlineMaterial"); \ +static_assert(offsetof(MultiLineEditableText_SetFontOutlineMaterial, InMaterial) == 0x000000, "Member 'MultiLineEditableText_SetFontOutlineMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetHintText \ +static_assert(alignof(MultiLineEditableText_SetHintText) == 0x000008, "Wrong alignment on MultiLineEditableText_SetHintText"); \ +static_assert(sizeof(MultiLineEditableText_SetHintText) == 0x000018, "Wrong size on MultiLineEditableText_SetHintText"); \ +static_assert(offsetof(MultiLineEditableText_SetHintText, InHintText) == 0x000000, "Member 'MultiLineEditableText_SetHintText::InHintText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetIsReadOnly \ +static_assert(alignof(MultiLineEditableText_SetIsReadOnly) == 0x000001, "Wrong alignment on MultiLineEditableText_SetIsReadOnly"); \ +static_assert(sizeof(MultiLineEditableText_SetIsReadOnly) == 0x000001, "Wrong size on MultiLineEditableText_SetIsReadOnly"); \ +static_assert(offsetof(MultiLineEditableText_SetIsReadOnly, bReadOnly) == 0x000000, "Member 'MultiLineEditableText_SetIsReadOnly::bReadOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetText \ +static_assert(alignof(MultiLineEditableText_SetText) == 0x000008, "Wrong alignment on MultiLineEditableText_SetText"); \ +static_assert(sizeof(MultiLineEditableText_SetText) == 0x000018, "Wrong size on MultiLineEditableText_SetText"); \ +static_assert(offsetof(MultiLineEditableText_SetText, InText) == 0x000000, "Member 'MultiLineEditableText_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_SetWidgetStyle \ +static_assert(alignof(MultiLineEditableText_SetWidgetStyle) == 0x000010, "Wrong alignment on MultiLineEditableText_SetWidgetStyle"); \ +static_assert(sizeof(MultiLineEditableText_SetWidgetStyle) == 0x000340, "Wrong size on MultiLineEditableText_SetWidgetStyle"); \ +static_assert(offsetof(MultiLineEditableText_SetWidgetStyle, InWidgetStyle) == 0x000000, "Member 'MultiLineEditableText_SetWidgetStyle::InWidgetStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_GetFont \ +static_assert(alignof(MultiLineEditableText_GetFont) == 0x000008, "Wrong alignment on MultiLineEditableText_GetFont"); \ +static_assert(sizeof(MultiLineEditableText_GetFont) == 0x000058, "Wrong size on MultiLineEditableText_GetFont"); \ +static_assert(offsetof(MultiLineEditableText_GetFont, ReturnValue) == 0x000000, "Member 'MultiLineEditableText_GetFont::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_GetHintText \ +static_assert(alignof(MultiLineEditableText_GetHintText) == 0x000008, "Wrong alignment on MultiLineEditableText_GetHintText"); \ +static_assert(sizeof(MultiLineEditableText_GetHintText) == 0x000018, "Wrong size on MultiLineEditableText_GetHintText"); \ +static_assert(offsetof(MultiLineEditableText_GetHintText, ReturnValue) == 0x000000, "Member 'MultiLineEditableText_GetHintText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableText_GetText \ +static_assert(alignof(MultiLineEditableText_GetText) == 0x000008, "Wrong alignment on MultiLineEditableText_GetText"); \ +static_assert(sizeof(MultiLineEditableText_GetText) == 0x000018, "Wrong size on MultiLineEditableText_GetText"); \ +static_assert(offsetof(MultiLineEditableText_GetText, ReturnValue) == 0x000000, "Member 'MultiLineEditableText_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiLineEditableText \ +static_assert(alignof(UMultiLineEditableText) == 0x000010, "Wrong alignment on UMultiLineEditableText"); \ +static_assert(sizeof(UMultiLineEditableText) == 0x000560, "Wrong size on UMultiLineEditableText"); \ +static_assert(offsetof(UMultiLineEditableText, Text) == 0x0001A0, "Member 'UMultiLineEditableText::Text' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, HintText) == 0x0001B8, "Member 'UMultiLineEditableText::HintText' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, HintTextDelegate) == 0x0001D0, "Member 'UMultiLineEditableText::HintTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, WidgetStyle) == 0x0001E0, "Member 'UMultiLineEditableText::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, bIsReadOnly) == 0x000520, "Member 'UMultiLineEditableText::bIsReadOnly' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, SelectAllTextWhenFocused) == 0x000521, "Member 'UMultiLineEditableText::SelectAllTextWhenFocused' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, ClearTextSelectionOnFocusLoss) == 0x000522, "Member 'UMultiLineEditableText::ClearTextSelectionOnFocusLoss' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, RevertTextOnEscape) == 0x000523, "Member 'UMultiLineEditableText::RevertTextOnEscape' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, ClearKeyboardFocusOnCommit) == 0x000524, "Member 'UMultiLineEditableText::ClearKeyboardFocusOnCommit' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, AllowContextMenu) == 0x000525, "Member 'UMultiLineEditableText::AllowContextMenu' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, VirtualKeyboardOptions) == 0x000526, "Member 'UMultiLineEditableText::VirtualKeyboardOptions' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, VirtualKeyboardDismissAction) == 0x000527, "Member 'UMultiLineEditableText::VirtualKeyboardDismissAction' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, OnTextChanged) == 0x000528, "Member 'UMultiLineEditableText::OnTextChanged' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableText, OnTextCommitted) == 0x000538, "Member 'UMultiLineEditableText::OnTextCommitted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetError \ +static_assert(alignof(MultiLineEditableTextBox_SetError) == 0x000008, "Wrong alignment on MultiLineEditableTextBox_SetError"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetError) == 0x000018, "Wrong size on MultiLineEditableTextBox_SetError"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetError, InError) == 0x000000, "Member 'MultiLineEditableTextBox_SetError::InError' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetForegroundColor \ +static_assert(alignof(MultiLineEditableTextBox_SetForegroundColor) == 0x000004, "Wrong alignment on MultiLineEditableTextBox_SetForegroundColor"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetForegroundColor) == 0x000010, "Wrong size on MultiLineEditableTextBox_SetForegroundColor"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetForegroundColor, Color) == 0x000000, "Member 'MultiLineEditableTextBox_SetForegroundColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetHintText \ +static_assert(alignof(MultiLineEditableTextBox_SetHintText) == 0x000008, "Wrong alignment on MultiLineEditableTextBox_SetHintText"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetHintText) == 0x000018, "Wrong size on MultiLineEditableTextBox_SetHintText"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetHintText, InHintText) == 0x000000, "Member 'MultiLineEditableTextBox_SetHintText::InHintText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetIsReadOnly \ +static_assert(alignof(MultiLineEditableTextBox_SetIsReadOnly) == 0x000001, "Wrong alignment on MultiLineEditableTextBox_SetIsReadOnly"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetIsReadOnly) == 0x000001, "Wrong size on MultiLineEditableTextBox_SetIsReadOnly"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetIsReadOnly, bReadOnly) == 0x000000, "Member 'MultiLineEditableTextBox_SetIsReadOnly::bReadOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetText \ +static_assert(alignof(MultiLineEditableTextBox_SetText) == 0x000008, "Wrong alignment on MultiLineEditableTextBox_SetText"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetText) == 0x000018, "Wrong size on MultiLineEditableTextBox_SetText"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetText, InText) == 0x000000, "Member 'MultiLineEditableTextBox_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_SetTextStyle \ +static_assert(alignof(MultiLineEditableTextBox_SetTextStyle) == 0x000010, "Wrong alignment on MultiLineEditableTextBox_SetTextStyle"); \ +static_assert(sizeof(MultiLineEditableTextBox_SetTextStyle) == 0x000340, "Wrong size on MultiLineEditableTextBox_SetTextStyle"); \ +static_assert(offsetof(MultiLineEditableTextBox_SetTextStyle, InTextStyle) == 0x000000, "Member 'MultiLineEditableTextBox_SetTextStyle::InTextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_GetHintText \ +static_assert(alignof(MultiLineEditableTextBox_GetHintText) == 0x000008, "Wrong alignment on MultiLineEditableTextBox_GetHintText"); \ +static_assert(sizeof(MultiLineEditableTextBox_GetHintText) == 0x000018, "Wrong size on MultiLineEditableTextBox_GetHintText"); \ +static_assert(offsetof(MultiLineEditableTextBox_GetHintText, ReturnValue) == 0x000000, "Member 'MultiLineEditableTextBox_GetHintText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiLineEditableTextBox_GetText \ +static_assert(alignof(MultiLineEditableTextBox_GetText) == 0x000008, "Wrong alignment on MultiLineEditableTextBox_GetText"); \ +static_assert(sizeof(MultiLineEditableTextBox_GetText) == 0x000018, "Wrong size on MultiLineEditableTextBox_GetText"); \ +static_assert(offsetof(MultiLineEditableTextBox_GetText, ReturnValue) == 0x000000, "Member 'MultiLineEditableTextBox_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiLineEditableTextBox \ +static_assert(alignof(UMultiLineEditableTextBox) == 0x000010, "Wrong alignment on UMultiLineEditableTextBox"); \ +static_assert(sizeof(UMultiLineEditableTextBox) == 0x0010A0, "Wrong size on UMultiLineEditableTextBox"); \ +static_assert(offsetof(UMultiLineEditableTextBox, Text) == 0x0001A0, "Member 'UMultiLineEditableTextBox::Text' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, HintText) == 0x0001B8, "Member 'UMultiLineEditableTextBox::HintText' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, HintTextDelegate) == 0x0001D0, "Member 'UMultiLineEditableTextBox::HintTextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, WidgetStyle) == 0x0001E0, "Member 'UMultiLineEditableTextBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, bIsReadOnly) == 0x001060, "Member 'UMultiLineEditableTextBox::bIsReadOnly' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, AllowContextMenu) == 0x001061, "Member 'UMultiLineEditableTextBox::AllowContextMenu' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, VirtualKeyboardOptions) == 0x001062, "Member 'UMultiLineEditableTextBox::VirtualKeyboardOptions' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, VirtualKeyboardDismissAction) == 0x001063, "Member 'UMultiLineEditableTextBox::VirtualKeyboardDismissAction' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, OnTextChanged) == 0x001068, "Member 'UMultiLineEditableTextBox::OnTextChanged' has a wrong offset!"); \ +static_assert(offsetof(UMultiLineEditableTextBox, OnTextCommitted) == 0x001078, "Member 'UMultiLineEditableTextBox::OnTextCommitted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNamedSlot \ +static_assert(alignof(UNamedSlot) == 0x000008, "Wrong alignment on UNamedSlot"); \ +static_assert(sizeof(UNamedSlot) == 0x0001A8, "Wrong size on UNamedSlot"); \ + +#define DUMPER7_ASSERTS_INamedSlotInterface \ +static_assert(alignof(INamedSlotInterface) == 0x000001, "Wrong alignment on INamedSlotInterface"); \ +static_assert(sizeof(INamedSlotInterface) == 0x000001, "Wrong size on INamedSlotInterface"); \ + +#define DUMPER7_ASSERTS_UNativeWidgetHost \ +static_assert(alignof(UNativeWidgetHost) == 0x000008, "Wrong alignment on UNativeWidgetHost"); \ +static_assert(sizeof(UNativeWidgetHost) == 0x000190, "Wrong size on UNativeWidgetHost"); \ + +#define DUMPER7_ASSERTS_Overlay_AddChildToOverlay \ +static_assert(alignof(Overlay_AddChildToOverlay) == 0x000008, "Wrong alignment on Overlay_AddChildToOverlay"); \ +static_assert(sizeof(Overlay_AddChildToOverlay) == 0x000010, "Wrong size on Overlay_AddChildToOverlay"); \ +static_assert(offsetof(Overlay_AddChildToOverlay, Content) == 0x000000, "Member 'Overlay_AddChildToOverlay::Content' has a wrong offset!"); \ +static_assert(offsetof(Overlay_AddChildToOverlay, ReturnValue) == 0x000008, "Member 'Overlay_AddChildToOverlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Overlay_ReplaceOverlayChildAt \ +static_assert(alignof(Overlay_ReplaceOverlayChildAt) == 0x000008, "Wrong alignment on Overlay_ReplaceOverlayChildAt"); \ +static_assert(sizeof(Overlay_ReplaceOverlayChildAt) == 0x000018, "Wrong size on Overlay_ReplaceOverlayChildAt"); \ +static_assert(offsetof(Overlay_ReplaceOverlayChildAt, Index_0) == 0x000000, "Member 'Overlay_ReplaceOverlayChildAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(Overlay_ReplaceOverlayChildAt, Content) == 0x000008, "Member 'Overlay_ReplaceOverlayChildAt::Content' has a wrong offset!"); \ +static_assert(offsetof(Overlay_ReplaceOverlayChildAt, ReturnValue) == 0x000010, "Member 'Overlay_ReplaceOverlayChildAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOverlay \ +static_assert(alignof(UOverlay) == 0x000008, "Wrong alignment on UOverlay"); \ +static_assert(sizeof(UOverlay) == 0x0001A8, "Wrong size on UOverlay"); \ + +#define DUMPER7_ASSERTS_OverlaySlot_SetHorizontalAlignment \ +static_assert(alignof(OverlaySlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on OverlaySlot_SetHorizontalAlignment"); \ +static_assert(sizeof(OverlaySlot_SetHorizontalAlignment) == 0x000001, "Wrong size on OverlaySlot_SetHorizontalAlignment"); \ +static_assert(offsetof(OverlaySlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'OverlaySlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OverlaySlot_SetPadding \ +static_assert(alignof(OverlaySlot_SetPadding) == 0x000004, "Wrong alignment on OverlaySlot_SetPadding"); \ +static_assert(sizeof(OverlaySlot_SetPadding) == 0x000010, "Wrong size on OverlaySlot_SetPadding"); \ +static_assert(offsetof(OverlaySlot_SetPadding, InPadding) == 0x000000, "Member 'OverlaySlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OverlaySlot_SetVerticalAlignment \ +static_assert(alignof(OverlaySlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on OverlaySlot_SetVerticalAlignment"); \ +static_assert(sizeof(OverlaySlot_SetVerticalAlignment) == 0x000001, "Wrong size on OverlaySlot_SetVerticalAlignment"); \ +static_assert(offsetof(OverlaySlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'OverlaySlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOverlaySlot \ +static_assert(alignof(UOverlaySlot) == 0x000008, "Wrong alignment on UOverlaySlot"); \ +static_assert(sizeof(UOverlaySlot) == 0x000058, "Wrong size on UOverlaySlot"); \ +static_assert(offsetof(UOverlaySlot, Padding) == 0x000040, "Member 'UOverlaySlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UOverlaySlot, HorizontalAlignment) == 0x000050, "Member 'UOverlaySlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UOverlaySlot, VerticalAlignment) == 0x000051, "Member 'UOverlaySlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProgressBar_SetFillColorAndOpacity \ +static_assert(alignof(ProgressBar_SetFillColorAndOpacity) == 0x000004, "Wrong alignment on ProgressBar_SetFillColorAndOpacity"); \ +static_assert(sizeof(ProgressBar_SetFillColorAndOpacity) == 0x000010, "Wrong size on ProgressBar_SetFillColorAndOpacity"); \ +static_assert(offsetof(ProgressBar_SetFillColorAndOpacity, InColor) == 0x000000, "Member 'ProgressBar_SetFillColorAndOpacity::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProgressBar_SetIsMarquee \ +static_assert(alignof(ProgressBar_SetIsMarquee) == 0x000001, "Wrong alignment on ProgressBar_SetIsMarquee"); \ +static_assert(sizeof(ProgressBar_SetIsMarquee) == 0x000001, "Wrong size on ProgressBar_SetIsMarquee"); \ +static_assert(offsetof(ProgressBar_SetIsMarquee, InbIsMarquee) == 0x000000, "Member 'ProgressBar_SetIsMarquee::InbIsMarquee' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProgressBar_SetPercent \ +static_assert(alignof(ProgressBar_SetPercent) == 0x000004, "Wrong alignment on ProgressBar_SetPercent"); \ +static_assert(sizeof(ProgressBar_SetPercent) == 0x000004, "Wrong size on ProgressBar_SetPercent"); \ +static_assert(offsetof(ProgressBar_SetPercent, InPercent) == 0x000000, "Member 'ProgressBar_SetPercent::InPercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProgressBar \ +static_assert(alignof(UProgressBar) == 0x000010, "Wrong alignment on UProgressBar"); \ +static_assert(sizeof(UProgressBar) == 0x000470, "Wrong size on UProgressBar"); \ +static_assert(offsetof(UProgressBar, WidgetStyle) == 0x000180, "Member 'UProgressBar::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, Percent) == 0x000410, "Member 'UProgressBar::Percent' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, BarFillType) == 0x000414, "Member 'UProgressBar::BarFillType' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, BarFillStyle) == 0x000415, "Member 'UProgressBar::BarFillStyle' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, bIsMarquee) == 0x000416, "Member 'UProgressBar::bIsMarquee' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, BorderPadding) == 0x000418, "Member 'UProgressBar::BorderPadding' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, PercentDelegate) == 0x000428, "Member 'UProgressBar::PercentDelegate' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, FillColorAndOpacity) == 0x000438, "Member 'UProgressBar::FillColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UProgressBar, FillColorAndOpacityDelegate) == 0x000448, "Member 'UProgressBar::FillColorAndOpacityDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RetainerBox_SetEffectMaterial \ +static_assert(alignof(RetainerBox_SetEffectMaterial) == 0x000008, "Wrong alignment on RetainerBox_SetEffectMaterial"); \ +static_assert(sizeof(RetainerBox_SetEffectMaterial) == 0x000008, "Wrong size on RetainerBox_SetEffectMaterial"); \ +static_assert(offsetof(RetainerBox_SetEffectMaterial, EffectMaterial_0) == 0x000000, "Member 'RetainerBox_SetEffectMaterial::EffectMaterial_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RetainerBox_SetRenderingPhase \ +static_assert(alignof(RetainerBox_SetRenderingPhase) == 0x000004, "Wrong alignment on RetainerBox_SetRenderingPhase"); \ +static_assert(sizeof(RetainerBox_SetRenderingPhase) == 0x000008, "Wrong size on RetainerBox_SetRenderingPhase"); \ +static_assert(offsetof(RetainerBox_SetRenderingPhase, RenderPhase) == 0x000000, "Member 'RetainerBox_SetRenderingPhase::RenderPhase' has a wrong offset!"); \ +static_assert(offsetof(RetainerBox_SetRenderingPhase, TotalPhases) == 0x000004, "Member 'RetainerBox_SetRenderingPhase::TotalPhases' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RetainerBox_SetRetainRendering \ +static_assert(alignof(RetainerBox_SetRetainRendering) == 0x000001, "Wrong alignment on RetainerBox_SetRetainRendering"); \ +static_assert(sizeof(RetainerBox_SetRetainRendering) == 0x000001, "Wrong size on RetainerBox_SetRetainRendering"); \ +static_assert(offsetof(RetainerBox_SetRetainRendering, bInRetainRendering) == 0x000000, "Member 'RetainerBox_SetRetainRendering::bInRetainRendering' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RetainerBox_SetTextureParameter \ +static_assert(alignof(RetainerBox_SetTextureParameter) == 0x000004, "Wrong alignment on RetainerBox_SetTextureParameter"); \ +static_assert(sizeof(RetainerBox_SetTextureParameter) == 0x000008, "Wrong size on RetainerBox_SetTextureParameter"); \ +static_assert(offsetof(RetainerBox_SetTextureParameter, TextureParameter_0) == 0x000000, "Member 'RetainerBox_SetTextureParameter::TextureParameter_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RetainerBox_GetEffectMaterial \ +static_assert(alignof(RetainerBox_GetEffectMaterial) == 0x000008, "Wrong alignment on RetainerBox_GetEffectMaterial"); \ +static_assert(sizeof(RetainerBox_GetEffectMaterial) == 0x000008, "Wrong size on RetainerBox_GetEffectMaterial"); \ +static_assert(offsetof(RetainerBox_GetEffectMaterial, ReturnValue) == 0x000000, "Member 'RetainerBox_GetEffectMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URetainerBox \ +static_assert(alignof(URetainerBox) == 0x000008, "Wrong alignment on URetainerBox"); \ +static_assert(sizeof(URetainerBox) == 0x0001C8, "Wrong size on URetainerBox"); \ +static_assert(offsetof(URetainerBox, bRetainRender) == 0x000198, "Member 'URetainerBox::bRetainRender' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, RenderOnInvalidation) == 0x000199, "Member 'URetainerBox::RenderOnInvalidation' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, RenderOnPhase) == 0x00019A, "Member 'URetainerBox::RenderOnPhase' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, Phase) == 0x00019C, "Member 'URetainerBox::Phase' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, PhaseCount) == 0x0001A0, "Member 'URetainerBox::PhaseCount' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, EffectMaterial) == 0x0001A8, "Member 'URetainerBox::EffectMaterial' has a wrong offset!"); \ +static_assert(offsetof(URetainerBox, TextureParameter) == 0x0001B0, "Member 'URetainerBox::TextureParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_GetDecoratorByClass \ +static_assert(alignof(RichTextBlock_GetDecoratorByClass) == 0x000008, "Wrong alignment on RichTextBlock_GetDecoratorByClass"); \ +static_assert(sizeof(RichTextBlock_GetDecoratorByClass) == 0x000010, "Wrong size on RichTextBlock_GetDecoratorByClass"); \ +static_assert(offsetof(RichTextBlock_GetDecoratorByClass, DecoratorClass) == 0x000000, "Member 'RichTextBlock_GetDecoratorByClass::DecoratorClass' has a wrong offset!"); \ +static_assert(offsetof(RichTextBlock_GetDecoratorByClass, ReturnValue) == 0x000008, "Member 'RichTextBlock_GetDecoratorByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_GetDefaultDynamicMaterial \ +static_assert(alignof(RichTextBlock_GetDefaultDynamicMaterial) == 0x000008, "Wrong alignment on RichTextBlock_GetDefaultDynamicMaterial"); \ +static_assert(sizeof(RichTextBlock_GetDefaultDynamicMaterial) == 0x000008, "Wrong size on RichTextBlock_GetDefaultDynamicMaterial"); \ +static_assert(offsetof(RichTextBlock_GetDefaultDynamicMaterial, ReturnValue) == 0x000000, "Member 'RichTextBlock_GetDefaultDynamicMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetAutoWrapText \ +static_assert(alignof(RichTextBlock_SetAutoWrapText) == 0x000001, "Wrong alignment on RichTextBlock_SetAutoWrapText"); \ +static_assert(sizeof(RichTextBlock_SetAutoWrapText) == 0x000001, "Wrong size on RichTextBlock_SetAutoWrapText"); \ +static_assert(offsetof(RichTextBlock_SetAutoWrapText, InAutoTextWrap) == 0x000000, "Member 'RichTextBlock_SetAutoWrapText::InAutoTextWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDecorators \ +static_assert(alignof(RichTextBlock_SetDecorators) == 0x000008, "Wrong alignment on RichTextBlock_SetDecorators"); \ +static_assert(sizeof(RichTextBlock_SetDecorators) == 0x000010, "Wrong size on RichTextBlock_SetDecorators"); \ +static_assert(offsetof(RichTextBlock_SetDecorators, InDecoratorClasses) == 0x000000, "Member 'RichTextBlock_SetDecorators::InDecoratorClasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultColorAndOpacity \ +static_assert(alignof(RichTextBlock_SetDefaultColorAndOpacity) == 0x000004, "Wrong alignment on RichTextBlock_SetDefaultColorAndOpacity"); \ +static_assert(sizeof(RichTextBlock_SetDefaultColorAndOpacity) == 0x000014, "Wrong size on RichTextBlock_SetDefaultColorAndOpacity"); \ +static_assert(offsetof(RichTextBlock_SetDefaultColorAndOpacity, InColorAndOpacity) == 0x000000, "Member 'RichTextBlock_SetDefaultColorAndOpacity::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultFont \ +static_assert(alignof(RichTextBlock_SetDefaultFont) == 0x000008, "Wrong alignment on RichTextBlock_SetDefaultFont"); \ +static_assert(sizeof(RichTextBlock_SetDefaultFont) == 0x000058, "Wrong size on RichTextBlock_SetDefaultFont"); \ +static_assert(offsetof(RichTextBlock_SetDefaultFont, InFontInfo) == 0x000000, "Member 'RichTextBlock_SetDefaultFont::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultMaterial \ +static_assert(alignof(RichTextBlock_SetDefaultMaterial) == 0x000008, "Wrong alignment on RichTextBlock_SetDefaultMaterial"); \ +static_assert(sizeof(RichTextBlock_SetDefaultMaterial) == 0x000008, "Wrong size on RichTextBlock_SetDefaultMaterial"); \ +static_assert(offsetof(RichTextBlock_SetDefaultMaterial, InMaterial) == 0x000000, "Member 'RichTextBlock_SetDefaultMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultShadowColorAndOpacity \ +static_assert(alignof(RichTextBlock_SetDefaultShadowColorAndOpacity) == 0x000004, "Wrong alignment on RichTextBlock_SetDefaultShadowColorAndOpacity"); \ +static_assert(sizeof(RichTextBlock_SetDefaultShadowColorAndOpacity) == 0x000010, "Wrong size on RichTextBlock_SetDefaultShadowColorAndOpacity"); \ +static_assert(offsetof(RichTextBlock_SetDefaultShadowColorAndOpacity, InShadowColorAndOpacity) == 0x000000, "Member 'RichTextBlock_SetDefaultShadowColorAndOpacity::InShadowColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultShadowOffset \ +static_assert(alignof(RichTextBlock_SetDefaultShadowOffset) == 0x000008, "Wrong alignment on RichTextBlock_SetDefaultShadowOffset"); \ +static_assert(sizeof(RichTextBlock_SetDefaultShadowOffset) == 0x000010, "Wrong size on RichTextBlock_SetDefaultShadowOffset"); \ +static_assert(offsetof(RichTextBlock_SetDefaultShadowOffset, InShadowOffset) == 0x000000, "Member 'RichTextBlock_SetDefaultShadowOffset::InShadowOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultStrikeBrush \ +static_assert(alignof(RichTextBlock_SetDefaultStrikeBrush) == 0x000010, "Wrong alignment on RichTextBlock_SetDefaultStrikeBrush"); \ +static_assert(sizeof(RichTextBlock_SetDefaultStrikeBrush) == 0x0000D0, "Wrong size on RichTextBlock_SetDefaultStrikeBrush"); \ +static_assert(offsetof(RichTextBlock_SetDefaultStrikeBrush, InStrikeBrush) == 0x000000, "Member 'RichTextBlock_SetDefaultStrikeBrush::InStrikeBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetDefaultTextStyle \ +static_assert(alignof(RichTextBlock_SetDefaultTextStyle) == 0x000010, "Wrong alignment on RichTextBlock_SetDefaultTextStyle"); \ +static_assert(sizeof(RichTextBlock_SetDefaultTextStyle) == 0x000340, "Wrong size on RichTextBlock_SetDefaultTextStyle"); \ +static_assert(offsetof(RichTextBlock_SetDefaultTextStyle, InDefaultTextStyle) == 0x000000, "Member 'RichTextBlock_SetDefaultTextStyle::InDefaultTextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetMinDesiredWidth \ +static_assert(alignof(RichTextBlock_SetMinDesiredWidth) == 0x000004, "Wrong alignment on RichTextBlock_SetMinDesiredWidth"); \ +static_assert(sizeof(RichTextBlock_SetMinDesiredWidth) == 0x000004, "Wrong size on RichTextBlock_SetMinDesiredWidth"); \ +static_assert(offsetof(RichTextBlock_SetMinDesiredWidth, InMinDesiredWidth) == 0x000000, "Member 'RichTextBlock_SetMinDesiredWidth::InMinDesiredWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetText \ +static_assert(alignof(RichTextBlock_SetText) == 0x000008, "Wrong alignment on RichTextBlock_SetText"); \ +static_assert(sizeof(RichTextBlock_SetText) == 0x000018, "Wrong size on RichTextBlock_SetText"); \ +static_assert(offsetof(RichTextBlock_SetText, InText) == 0x000000, "Member 'RichTextBlock_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetTextOverflowPolicy \ +static_assert(alignof(RichTextBlock_SetTextOverflowPolicy) == 0x000001, "Wrong alignment on RichTextBlock_SetTextOverflowPolicy"); \ +static_assert(sizeof(RichTextBlock_SetTextOverflowPolicy) == 0x000001, "Wrong size on RichTextBlock_SetTextOverflowPolicy"); \ +static_assert(offsetof(RichTextBlock_SetTextOverflowPolicy, InOverflowPolicy) == 0x000000, "Member 'RichTextBlock_SetTextOverflowPolicy::InOverflowPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetTextStyleSet \ +static_assert(alignof(RichTextBlock_SetTextStyleSet) == 0x000008, "Wrong alignment on RichTextBlock_SetTextStyleSet"); \ +static_assert(sizeof(RichTextBlock_SetTextStyleSet) == 0x000008, "Wrong size on RichTextBlock_SetTextStyleSet"); \ +static_assert(offsetof(RichTextBlock_SetTextStyleSet, NewTextStyleSet) == 0x000000, "Member 'RichTextBlock_SetTextStyleSet::NewTextStyleSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_SetTextTransformPolicy \ +static_assert(alignof(RichTextBlock_SetTextTransformPolicy) == 0x000001, "Wrong alignment on RichTextBlock_SetTextTransformPolicy"); \ +static_assert(sizeof(RichTextBlock_SetTextTransformPolicy) == 0x000001, "Wrong size on RichTextBlock_SetTextTransformPolicy"); \ +static_assert(offsetof(RichTextBlock_SetTextTransformPolicy, InTransformPolicy) == 0x000000, "Member 'RichTextBlock_SetTextTransformPolicy::InTransformPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_GetText \ +static_assert(alignof(RichTextBlock_GetText) == 0x000008, "Wrong alignment on RichTextBlock_GetText"); \ +static_assert(sizeof(RichTextBlock_GetText) == 0x000018, "Wrong size on RichTextBlock_GetText"); \ +static_assert(offsetof(RichTextBlock_GetText, ReturnValue) == 0x000000, "Member 'RichTextBlock_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RichTextBlock_GetTextStyleSet \ +static_assert(alignof(RichTextBlock_GetTextStyleSet) == 0x000008, "Wrong alignment on RichTextBlock_GetTextStyleSet"); \ +static_assert(sizeof(RichTextBlock_GetTextStyleSet) == 0x000008, "Wrong size on RichTextBlock_GetTextStyleSet"); \ +static_assert(offsetof(RichTextBlock_GetTextStyleSet, ReturnValue) == 0x000000, "Member 'RichTextBlock_GetTextStyleSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URichTextBlock \ +static_assert(alignof(URichTextBlock) == 0x000010, "Wrong alignment on URichTextBlock"); \ +static_assert(sizeof(URichTextBlock) == 0x0008A0, "Wrong size on URichTextBlock"); \ +static_assert(offsetof(URichTextBlock, Text) == 0x0001A0, "Member 'URichTextBlock::Text' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, TextStyleSet) == 0x0001B8, "Member 'URichTextBlock::TextStyleSet' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, DecoratorClasses) == 0x0001C0, "Member 'URichTextBlock::DecoratorClasses' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, bOverrideDefaultStyle) == 0x0001D0, "Member 'URichTextBlock::bOverrideDefaultStyle' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, DefaultTextStyleOverride) == 0x0001E0, "Member 'URichTextBlock::DefaultTextStyleOverride' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, MinDesiredWidth) == 0x000520, "Member 'URichTextBlock::MinDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, TextTransformPolicy) == 0x000524, "Member 'URichTextBlock::TextTransformPolicy' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, TextOverflowPolicy) == 0x000525, "Member 'URichTextBlock::TextOverflowPolicy' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, DefaultTextStyle) == 0x000530, "Member 'URichTextBlock::DefaultTextStyle' has a wrong offset!"); \ +static_assert(offsetof(URichTextBlock, InstanceDecorators) == 0x000870, "Member 'URichTextBlock::InstanceDecorators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URichTextBlockDecorator \ +static_assert(alignof(URichTextBlockDecorator) == 0x000008, "Wrong alignment on URichTextBlockDecorator"); \ +static_assert(sizeof(URichTextBlockDecorator) == 0x000028, "Wrong size on URichTextBlockDecorator"); \ + +#define DUMPER7_ASSERTS_URichTextBlockImageDecorator \ +static_assert(alignof(URichTextBlockImageDecorator) == 0x000008, "Wrong alignment on URichTextBlockImageDecorator"); \ +static_assert(sizeof(URichTextBlockImageDecorator) == 0x000030, "Wrong size on URichTextBlockImageDecorator"); \ +static_assert(offsetof(URichTextBlockImageDecorator, ImageSet) == 0x000028, "Member 'URichTextBlockImageDecorator::ImageSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SafeZone_SetSidesToPad \ +static_assert(alignof(SafeZone_SetSidesToPad) == 0x000001, "Wrong alignment on SafeZone_SetSidesToPad"); \ +static_assert(sizeof(SafeZone_SetSidesToPad) == 0x000004, "Wrong size on SafeZone_SetSidesToPad"); \ +static_assert(offsetof(SafeZone_SetSidesToPad, InPadLeft) == 0x000000, "Member 'SafeZone_SetSidesToPad::InPadLeft' has a wrong offset!"); \ +static_assert(offsetof(SafeZone_SetSidesToPad, InPadRight) == 0x000001, "Member 'SafeZone_SetSidesToPad::InPadRight' has a wrong offset!"); \ +static_assert(offsetof(SafeZone_SetSidesToPad, InPadTop) == 0x000002, "Member 'SafeZone_SetSidesToPad::InPadTop' has a wrong offset!"); \ +static_assert(offsetof(SafeZone_SetSidesToPad, InPadBottom) == 0x000003, "Member 'SafeZone_SetSidesToPad::InPadBottom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USafeZone \ +static_assert(alignof(USafeZone) == 0x000008, "Wrong alignment on USafeZone"); \ +static_assert(sizeof(USafeZone) == 0x0001B0, "Wrong size on USafeZone"); \ +static_assert(offsetof(USafeZone, PadLeft) == 0x000198, "Member 'USafeZone::PadLeft' has a wrong offset!"); \ +static_assert(offsetof(USafeZone, PadRight) == 0x000199, "Member 'USafeZone::PadRight' has a wrong offset!"); \ +static_assert(offsetof(USafeZone, PadTop) == 0x00019A, "Member 'USafeZone::PadTop' has a wrong offset!"); \ +static_assert(offsetof(USafeZone, PadBottom) == 0x00019B, "Member 'USafeZone::PadBottom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USafeZoneSlot \ +static_assert(alignof(USafeZoneSlot) == 0x000008, "Wrong alignment on USafeZoneSlot"); \ +static_assert(sizeof(USafeZoneSlot) == 0x000070, "Wrong size on USafeZoneSlot"); \ +static_assert(offsetof(USafeZoneSlot, bIsTitleSafe) == 0x000038, "Member 'USafeZoneSlot::bIsTitleSafe' has a wrong offset!"); \ +static_assert(offsetof(USafeZoneSlot, SafeAreaScale) == 0x00003C, "Member 'USafeZoneSlot::SafeAreaScale' has a wrong offset!"); \ +static_assert(offsetof(USafeZoneSlot, HAlign) == 0x00004C, "Member 'USafeZoneSlot::HAlign' has a wrong offset!"); \ +static_assert(offsetof(USafeZoneSlot, VAlign) == 0x00004D, "Member 'USafeZoneSlot::VAlign' has a wrong offset!"); \ +static_assert(offsetof(USafeZoneSlot, Padding) == 0x000050, "Member 'USafeZoneSlot::Padding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBox_SetIgnoreInheritedScale \ +static_assert(alignof(ScaleBox_SetIgnoreInheritedScale) == 0x000001, "Wrong alignment on ScaleBox_SetIgnoreInheritedScale"); \ +static_assert(sizeof(ScaleBox_SetIgnoreInheritedScale) == 0x000001, "Wrong size on ScaleBox_SetIgnoreInheritedScale"); \ +static_assert(offsetof(ScaleBox_SetIgnoreInheritedScale, bInIgnoreInheritedScale) == 0x000000, "Member 'ScaleBox_SetIgnoreInheritedScale::bInIgnoreInheritedScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBox_SetStretch \ +static_assert(alignof(ScaleBox_SetStretch) == 0x000001, "Wrong alignment on ScaleBox_SetStretch"); \ +static_assert(sizeof(ScaleBox_SetStretch) == 0x000001, "Wrong size on ScaleBox_SetStretch"); \ +static_assert(offsetof(ScaleBox_SetStretch, InStretch) == 0x000000, "Member 'ScaleBox_SetStretch::InStretch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBox_SetStretchDirection \ +static_assert(alignof(ScaleBox_SetStretchDirection) == 0x000001, "Wrong alignment on ScaleBox_SetStretchDirection"); \ +static_assert(sizeof(ScaleBox_SetStretchDirection) == 0x000001, "Wrong size on ScaleBox_SetStretchDirection"); \ +static_assert(offsetof(ScaleBox_SetStretchDirection, InStretchDirection) == 0x000000, "Member 'ScaleBox_SetStretchDirection::InStretchDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBox_SetUserSpecifiedScale \ +static_assert(alignof(ScaleBox_SetUserSpecifiedScale) == 0x000004, "Wrong alignment on ScaleBox_SetUserSpecifiedScale"); \ +static_assert(sizeof(ScaleBox_SetUserSpecifiedScale) == 0x000004, "Wrong size on ScaleBox_SetUserSpecifiedScale"); \ +static_assert(offsetof(ScaleBox_SetUserSpecifiedScale, InUserSpecifiedScale) == 0x000000, "Member 'ScaleBox_SetUserSpecifiedScale::InUserSpecifiedScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScaleBox \ +static_assert(alignof(UScaleBox) == 0x000008, "Wrong alignment on UScaleBox"); \ +static_assert(sizeof(UScaleBox) == 0x0001B8, "Wrong size on UScaleBox"); \ +static_assert(offsetof(UScaleBox, Stretch) == 0x000198, "Member 'UScaleBox::Stretch' has a wrong offset!"); \ +static_assert(offsetof(UScaleBox, StretchDirection) == 0x000199, "Member 'UScaleBox::StretchDirection' has a wrong offset!"); \ +static_assert(offsetof(UScaleBox, UserSpecifiedScale) == 0x00019C, "Member 'UScaleBox::UserSpecifiedScale' has a wrong offset!"); \ +static_assert(offsetof(UScaleBox, IgnoreInheritedScale) == 0x0001A0, "Member 'UScaleBox::IgnoreInheritedScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(ScaleBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on ScaleBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(ScaleBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on ScaleBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(ScaleBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'ScaleBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBoxSlot_SetPadding \ +static_assert(alignof(ScaleBoxSlot_SetPadding) == 0x000004, "Wrong alignment on ScaleBoxSlot_SetPadding"); \ +static_assert(sizeof(ScaleBoxSlot_SetPadding) == 0x000010, "Wrong size on ScaleBoxSlot_SetPadding"); \ +static_assert(offsetof(ScaleBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'ScaleBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScaleBoxSlot_SetVerticalAlignment \ +static_assert(alignof(ScaleBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on ScaleBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(ScaleBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on ScaleBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(ScaleBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'ScaleBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScaleBoxSlot \ +static_assert(alignof(UScaleBoxSlot) == 0x000008, "Wrong alignment on UScaleBoxSlot"); \ +static_assert(sizeof(UScaleBoxSlot) == 0x000050, "Wrong size on UScaleBoxSlot"); \ +static_assert(offsetof(UScaleBoxSlot, HorizontalAlignment) == 0x000038, "Member 'UScaleBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UScaleBoxSlot, VerticalAlignment) == 0x000039, "Member 'UScaleBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBar_SetState \ +static_assert(alignof(ScrollBar_SetState) == 0x000004, "Wrong alignment on ScrollBar_SetState"); \ +static_assert(sizeof(ScrollBar_SetState) == 0x000008, "Wrong size on ScrollBar_SetState"); \ +static_assert(offsetof(ScrollBar_SetState, InOffsetFraction) == 0x000000, "Member 'ScrollBar_SetState::InOffsetFraction' has a wrong offset!"); \ +static_assert(offsetof(ScrollBar_SetState, InThumbSizeFraction) == 0x000004, "Member 'ScrollBar_SetState::InThumbSizeFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScrollBar \ +static_assert(alignof(UScrollBar) == 0x000010, "Wrong alignment on UScrollBar"); \ +static_assert(sizeof(UScrollBar) == 0x000930, "Wrong size on UScrollBar"); \ +static_assert(offsetof(UScrollBar, WidgetStyle) == 0x000180, "Member 'UScrollBar::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UScrollBar, bAlwaysShowScrollbar) == 0x0008F0, "Member 'UScrollBar::bAlwaysShowScrollbar' has a wrong offset!"); \ +static_assert(offsetof(UScrollBar, bAlwaysShowScrollbarTrack) == 0x0008F1, "Member 'UScrollBar::bAlwaysShowScrollbarTrack' has a wrong offset!"); \ +static_assert(offsetof(UScrollBar, Orientation) == 0x0008F2, "Member 'UScrollBar::Orientation' has a wrong offset!"); \ +static_assert(offsetof(UScrollBar, Thickness) == 0x0008F8, "Member 'UScrollBar::Thickness' has a wrong offset!"); \ +static_assert(offsetof(UScrollBar, Padding) == 0x000908, "Member 'UScrollBar::Padding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_ScrollWidgetIntoView \ +static_assert(alignof(ScrollBox_ScrollWidgetIntoView) == 0x000008, "Wrong alignment on ScrollBox_ScrollWidgetIntoView"); \ +static_assert(sizeof(ScrollBox_ScrollWidgetIntoView) == 0x000010, "Wrong size on ScrollBox_ScrollWidgetIntoView"); \ +static_assert(offsetof(ScrollBox_ScrollWidgetIntoView, WidgetToFind) == 0x000000, "Member 'ScrollBox_ScrollWidgetIntoView::WidgetToFind' has a wrong offset!"); \ +static_assert(offsetof(ScrollBox_ScrollWidgetIntoView, AnimateScroll) == 0x000008, "Member 'ScrollBox_ScrollWidgetIntoView::AnimateScroll' has a wrong offset!"); \ +static_assert(offsetof(ScrollBox_ScrollWidgetIntoView, ScrollDestination) == 0x000009, "Member 'ScrollBox_ScrollWidgetIntoView::ScrollDestination' has a wrong offset!"); \ +static_assert(offsetof(ScrollBox_ScrollWidgetIntoView, Padding) == 0x00000C, "Member 'ScrollBox_ScrollWidgetIntoView::Padding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetAllowOverscroll \ +static_assert(alignof(ScrollBox_SetAllowOverscroll) == 0x000001, "Wrong alignment on ScrollBox_SetAllowOverscroll"); \ +static_assert(sizeof(ScrollBox_SetAllowOverscroll) == 0x000001, "Wrong size on ScrollBox_SetAllowOverscroll"); \ +static_assert(offsetof(ScrollBox_SetAllowOverscroll, NewAllowOverscroll) == 0x000000, "Member 'ScrollBox_SetAllowOverscroll::NewAllowOverscroll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetAlwaysShowScrollbar \ +static_assert(alignof(ScrollBox_SetAlwaysShowScrollbar) == 0x000001, "Wrong alignment on ScrollBox_SetAlwaysShowScrollbar"); \ +static_assert(sizeof(ScrollBox_SetAlwaysShowScrollbar) == 0x000001, "Wrong size on ScrollBox_SetAlwaysShowScrollbar"); \ +static_assert(offsetof(ScrollBox_SetAlwaysShowScrollbar, NewAlwaysShowScrollbar) == 0x000000, "Member 'ScrollBox_SetAlwaysShowScrollbar::NewAlwaysShowScrollbar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetAnimateWheelScrolling \ +static_assert(alignof(ScrollBox_SetAnimateWheelScrolling) == 0x000001, "Wrong alignment on ScrollBox_SetAnimateWheelScrolling"); \ +static_assert(sizeof(ScrollBox_SetAnimateWheelScrolling) == 0x000001, "Wrong size on ScrollBox_SetAnimateWheelScrolling"); \ +static_assert(offsetof(ScrollBox_SetAnimateWheelScrolling, bShouldAnimateWheelScrolling) == 0x000000, "Member 'ScrollBox_SetAnimateWheelScrolling::bShouldAnimateWheelScrolling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetConsumeMouseWheel \ +static_assert(alignof(ScrollBox_SetConsumeMouseWheel) == 0x000001, "Wrong alignment on ScrollBox_SetConsumeMouseWheel"); \ +static_assert(sizeof(ScrollBox_SetConsumeMouseWheel) == 0x000001, "Wrong size on ScrollBox_SetConsumeMouseWheel"); \ +static_assert(offsetof(ScrollBox_SetConsumeMouseWheel, NewConsumeMouseWheel) == 0x000000, "Member 'ScrollBox_SetConsumeMouseWheel::NewConsumeMouseWheel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetNavigationDestination \ +static_assert(alignof(ScrollBox_SetNavigationDestination) == 0x000001, "Wrong alignment on ScrollBox_SetNavigationDestination"); \ +static_assert(sizeof(ScrollBox_SetNavigationDestination) == 0x000001, "Wrong size on ScrollBox_SetNavigationDestination"); \ +static_assert(offsetof(ScrollBox_SetNavigationDestination, NewNavigationDestination) == 0x000000, "Member 'ScrollBox_SetNavigationDestination::NewNavigationDestination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetOrientation \ +static_assert(alignof(ScrollBox_SetOrientation) == 0x000001, "Wrong alignment on ScrollBox_SetOrientation"); \ +static_assert(sizeof(ScrollBox_SetOrientation) == 0x000001, "Wrong size on ScrollBox_SetOrientation"); \ +static_assert(offsetof(ScrollBox_SetOrientation, NewOrientation) == 0x000000, "Member 'ScrollBox_SetOrientation::NewOrientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetScrollbarPadding \ +static_assert(alignof(ScrollBox_SetScrollbarPadding) == 0x000004, "Wrong alignment on ScrollBox_SetScrollbarPadding"); \ +static_assert(sizeof(ScrollBox_SetScrollbarPadding) == 0x000010, "Wrong size on ScrollBox_SetScrollbarPadding"); \ +static_assert(offsetof(ScrollBox_SetScrollbarPadding, NewScrollbarPadding) == 0x000000, "Member 'ScrollBox_SetScrollbarPadding::NewScrollbarPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetScrollbarThickness \ +static_assert(alignof(ScrollBox_SetScrollbarThickness) == 0x000008, "Wrong alignment on ScrollBox_SetScrollbarThickness"); \ +static_assert(sizeof(ScrollBox_SetScrollbarThickness) == 0x000010, "Wrong size on ScrollBox_SetScrollbarThickness"); \ +static_assert(offsetof(ScrollBox_SetScrollbarThickness, NewScrollbarThickness) == 0x000000, "Member 'ScrollBox_SetScrollbarThickness::NewScrollbarThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetScrollbarVisibility \ +static_assert(alignof(ScrollBox_SetScrollbarVisibility) == 0x000001, "Wrong alignment on ScrollBox_SetScrollbarVisibility"); \ +static_assert(sizeof(ScrollBox_SetScrollbarVisibility) == 0x000001, "Wrong size on ScrollBox_SetScrollbarVisibility"); \ +static_assert(offsetof(ScrollBox_SetScrollbarVisibility, NewScrollBarVisibility) == 0x000000, "Member 'ScrollBox_SetScrollbarVisibility::NewScrollBarVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetScrollOffset \ +static_assert(alignof(ScrollBox_SetScrollOffset) == 0x000004, "Wrong alignment on ScrollBox_SetScrollOffset"); \ +static_assert(sizeof(ScrollBox_SetScrollOffset) == 0x000004, "Wrong size on ScrollBox_SetScrollOffset"); \ +static_assert(offsetof(ScrollBox_SetScrollOffset, NewScrollOffset) == 0x000000, "Member 'ScrollBox_SetScrollOffset::NewScrollOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetScrollWhenFocusChanges \ +static_assert(alignof(ScrollBox_SetScrollWhenFocusChanges) == 0x000001, "Wrong alignment on ScrollBox_SetScrollWhenFocusChanges"); \ +static_assert(sizeof(ScrollBox_SetScrollWhenFocusChanges) == 0x000001, "Wrong size on ScrollBox_SetScrollWhenFocusChanges"); \ +static_assert(offsetof(ScrollBox_SetScrollWhenFocusChanges, NewScrollWhenFocusChanges) == 0x000000, "Member 'ScrollBox_SetScrollWhenFocusChanges::NewScrollWhenFocusChanges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_SetWheelScrollMultiplier \ +static_assert(alignof(ScrollBox_SetWheelScrollMultiplier) == 0x000004, "Wrong alignment on ScrollBox_SetWheelScrollMultiplier"); \ +static_assert(sizeof(ScrollBox_SetWheelScrollMultiplier) == 0x000004, "Wrong size on ScrollBox_SetWheelScrollMultiplier"); \ +static_assert(offsetof(ScrollBox_SetWheelScrollMultiplier, NewWheelScrollMultiplier) == 0x000000, "Member 'ScrollBox_SetWheelScrollMultiplier::NewWheelScrollMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_GetScrollOffset \ +static_assert(alignof(ScrollBox_GetScrollOffset) == 0x000004, "Wrong alignment on ScrollBox_GetScrollOffset"); \ +static_assert(sizeof(ScrollBox_GetScrollOffset) == 0x000004, "Wrong size on ScrollBox_GetScrollOffset"); \ +static_assert(offsetof(ScrollBox_GetScrollOffset, ReturnValue) == 0x000000, "Member 'ScrollBox_GetScrollOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_GetScrollOffsetOfEnd \ +static_assert(alignof(ScrollBox_GetScrollOffsetOfEnd) == 0x000004, "Wrong alignment on ScrollBox_GetScrollOffsetOfEnd"); \ +static_assert(sizeof(ScrollBox_GetScrollOffsetOfEnd) == 0x000004, "Wrong size on ScrollBox_GetScrollOffsetOfEnd"); \ +static_assert(offsetof(ScrollBox_GetScrollOffsetOfEnd, ReturnValue) == 0x000000, "Member 'ScrollBox_GetScrollOffsetOfEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_GetViewFraction \ +static_assert(alignof(ScrollBox_GetViewFraction) == 0x000004, "Wrong alignment on ScrollBox_GetViewFraction"); \ +static_assert(sizeof(ScrollBox_GetViewFraction) == 0x000004, "Wrong size on ScrollBox_GetViewFraction"); \ +static_assert(offsetof(ScrollBox_GetViewFraction, ReturnValue) == 0x000000, "Member 'ScrollBox_GetViewFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBox_GetViewOffsetFraction \ +static_assert(alignof(ScrollBox_GetViewOffsetFraction) == 0x000004, "Wrong alignment on ScrollBox_GetViewOffsetFraction"); \ +static_assert(sizeof(ScrollBox_GetViewOffsetFraction) == 0x000004, "Wrong size on ScrollBox_GetViewOffsetFraction"); \ +static_assert(offsetof(ScrollBox_GetViewOffsetFraction, ReturnValue) == 0x000000, "Member 'ScrollBox_GetViewOffsetFraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScrollBox \ +static_assert(alignof(UScrollBox) == 0x000010, "Wrong alignment on UScrollBox"); \ +static_assert(sizeof(UScrollBox) == 0x000CF0, "Wrong size on UScrollBox"); \ +static_assert(offsetof(UScrollBox, WidgetStyle) == 0x0001A0, "Member 'UScrollBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, WidgetBarStyle) == 0x000510, "Member 'UScrollBox::WidgetBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, Orientation) == 0x000C80, "Member 'UScrollBox::Orientation' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, ScrollBarVisibility) == 0x000C81, "Member 'UScrollBox::ScrollBarVisibility' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, ConsumeMouseWheel) == 0x000C82, "Member 'UScrollBox::ConsumeMouseWheel' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, ScrollbarThickness) == 0x000C88, "Member 'UScrollBox::ScrollbarThickness' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, ScrollbarPadding) == 0x000C98, "Member 'UScrollBox::ScrollbarPadding' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, AlwaysShowScrollbar) == 0x000CA8, "Member 'UScrollBox::AlwaysShowScrollbar' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, AlwaysShowScrollbarTrack) == 0x000CA9, "Member 'UScrollBox::AlwaysShowScrollbarTrack' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, AllowOverscroll) == 0x000CAA, "Member 'UScrollBox::AllowOverscroll' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, BackPadScrolling) == 0x000CAB, "Member 'UScrollBox::BackPadScrolling' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, FrontPadScrolling) == 0x000CAC, "Member 'UScrollBox::FrontPadScrolling' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, bAnimateWheelScrolling) == 0x000CAD, "Member 'UScrollBox::bAnimateWheelScrolling' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, NavigationDestination) == 0x000CAE, "Member 'UScrollBox::NavigationDestination' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, NavigationScrollPadding) == 0x000CB0, "Member 'UScrollBox::NavigationScrollPadding' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, ScrollWhenFocusChanges) == 0x000CB4, "Member 'UScrollBox::ScrollWhenFocusChanges' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, bAllowRightClickDragScrolling) == 0x000CB5, "Member 'UScrollBox::bAllowRightClickDragScrolling' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, WheelScrollMultiplier) == 0x000CB8, "Member 'UScrollBox::WheelScrollMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UScrollBox, OnUserScrolled) == 0x000CC0, "Member 'UScrollBox::OnUserScrolled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(ScrollBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on ScrollBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(ScrollBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on ScrollBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(ScrollBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'ScrollBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBoxSlot_SetPadding \ +static_assert(alignof(ScrollBoxSlot_SetPadding) == 0x000004, "Wrong alignment on ScrollBoxSlot_SetPadding"); \ +static_assert(sizeof(ScrollBoxSlot_SetPadding) == 0x000010, "Wrong size on ScrollBoxSlot_SetPadding"); \ +static_assert(offsetof(ScrollBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'ScrollBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ScrollBoxSlot_SetVerticalAlignment \ +static_assert(alignof(ScrollBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on ScrollBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(ScrollBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on ScrollBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(ScrollBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'ScrollBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScrollBoxSlot \ +static_assert(alignof(UScrollBoxSlot) == 0x000008, "Wrong alignment on UScrollBoxSlot"); \ +static_assert(sizeof(UScrollBoxSlot) == 0x000060, "Wrong size on UScrollBoxSlot"); \ +static_assert(offsetof(UScrollBoxSlot, Size) == 0x000038, "Member 'UScrollBoxSlot::Size' has a wrong offset!"); \ +static_assert(offsetof(UScrollBoxSlot, Padding) == 0x000040, "Member 'UScrollBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UScrollBoxSlot, HorizontalAlignment) == 0x000050, "Member 'UScrollBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UScrollBoxSlot, VerticalAlignment) == 0x000051, "Member 'UScrollBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetHeightOverride \ +static_assert(alignof(SizeBox_SetHeightOverride) == 0x000004, "Wrong alignment on SizeBox_SetHeightOverride"); \ +static_assert(sizeof(SizeBox_SetHeightOverride) == 0x000004, "Wrong size on SizeBox_SetHeightOverride"); \ +static_assert(offsetof(SizeBox_SetHeightOverride, InHeightOverride) == 0x000000, "Member 'SizeBox_SetHeightOverride::InHeightOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMaxAspectRatio \ +static_assert(alignof(SizeBox_SetMaxAspectRatio) == 0x000004, "Wrong alignment on SizeBox_SetMaxAspectRatio"); \ +static_assert(sizeof(SizeBox_SetMaxAspectRatio) == 0x000004, "Wrong size on SizeBox_SetMaxAspectRatio"); \ +static_assert(offsetof(SizeBox_SetMaxAspectRatio, InMaxAspectRatio) == 0x000000, "Member 'SizeBox_SetMaxAspectRatio::InMaxAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMaxDesiredHeight \ +static_assert(alignof(SizeBox_SetMaxDesiredHeight) == 0x000004, "Wrong alignment on SizeBox_SetMaxDesiredHeight"); \ +static_assert(sizeof(SizeBox_SetMaxDesiredHeight) == 0x000004, "Wrong size on SizeBox_SetMaxDesiredHeight"); \ +static_assert(offsetof(SizeBox_SetMaxDesiredHeight, InMaxDesiredHeight) == 0x000000, "Member 'SizeBox_SetMaxDesiredHeight::InMaxDesiredHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMaxDesiredWidth \ +static_assert(alignof(SizeBox_SetMaxDesiredWidth) == 0x000004, "Wrong alignment on SizeBox_SetMaxDesiredWidth"); \ +static_assert(sizeof(SizeBox_SetMaxDesiredWidth) == 0x000004, "Wrong size on SizeBox_SetMaxDesiredWidth"); \ +static_assert(offsetof(SizeBox_SetMaxDesiredWidth, InMaxDesiredWidth) == 0x000000, "Member 'SizeBox_SetMaxDesiredWidth::InMaxDesiredWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMinAspectRatio \ +static_assert(alignof(SizeBox_SetMinAspectRatio) == 0x000004, "Wrong alignment on SizeBox_SetMinAspectRatio"); \ +static_assert(sizeof(SizeBox_SetMinAspectRatio) == 0x000004, "Wrong size on SizeBox_SetMinAspectRatio"); \ +static_assert(offsetof(SizeBox_SetMinAspectRatio, InMinAspectRatio) == 0x000000, "Member 'SizeBox_SetMinAspectRatio::InMinAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMinDesiredHeight \ +static_assert(alignof(SizeBox_SetMinDesiredHeight) == 0x000004, "Wrong alignment on SizeBox_SetMinDesiredHeight"); \ +static_assert(sizeof(SizeBox_SetMinDesiredHeight) == 0x000004, "Wrong size on SizeBox_SetMinDesiredHeight"); \ +static_assert(offsetof(SizeBox_SetMinDesiredHeight, InMinDesiredHeight) == 0x000000, "Member 'SizeBox_SetMinDesiredHeight::InMinDesiredHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetMinDesiredWidth \ +static_assert(alignof(SizeBox_SetMinDesiredWidth) == 0x000004, "Wrong alignment on SizeBox_SetMinDesiredWidth"); \ +static_assert(sizeof(SizeBox_SetMinDesiredWidth) == 0x000004, "Wrong size on SizeBox_SetMinDesiredWidth"); \ +static_assert(offsetof(SizeBox_SetMinDesiredWidth, InMinDesiredWidth) == 0x000000, "Member 'SizeBox_SetMinDesiredWidth::InMinDesiredWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBox_SetWidthOverride \ +static_assert(alignof(SizeBox_SetWidthOverride) == 0x000004, "Wrong alignment on SizeBox_SetWidthOverride"); \ +static_assert(sizeof(SizeBox_SetWidthOverride) == 0x000004, "Wrong size on SizeBox_SetWidthOverride"); \ +static_assert(offsetof(SizeBox_SetWidthOverride, InWidthOverride) == 0x000000, "Member 'SizeBox_SetWidthOverride::InWidthOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USizeBox \ +static_assert(alignof(USizeBox) == 0x000008, "Wrong alignment on USizeBox"); \ +static_assert(sizeof(USizeBox) == 0x0001D0, "Wrong size on USizeBox"); \ +static_assert(offsetof(USizeBox, WidthOverride) == 0x0001A8, "Member 'USizeBox::WidthOverride' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, HeightOverride) == 0x0001AC, "Member 'USizeBox::HeightOverride' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MinDesiredWidth) == 0x0001B0, "Member 'USizeBox::MinDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MinDesiredHeight) == 0x0001B4, "Member 'USizeBox::MinDesiredHeight' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MaxDesiredWidth) == 0x0001B8, "Member 'USizeBox::MaxDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MaxDesiredHeight) == 0x0001BC, "Member 'USizeBox::MaxDesiredHeight' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MinAspectRatio) == 0x0001C0, "Member 'USizeBox::MinAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(USizeBox, MaxAspectRatio) == 0x0001C4, "Member 'USizeBox::MaxAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(SizeBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on SizeBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(SizeBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on SizeBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(SizeBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'SizeBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBoxSlot_SetPadding \ +static_assert(alignof(SizeBoxSlot_SetPadding) == 0x000004, "Wrong alignment on SizeBoxSlot_SetPadding"); \ +static_assert(sizeof(SizeBoxSlot_SetPadding) == 0x000010, "Wrong size on SizeBoxSlot_SetPadding"); \ +static_assert(offsetof(SizeBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'SizeBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SizeBoxSlot_SetVerticalAlignment \ +static_assert(alignof(SizeBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on SizeBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(SizeBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on SizeBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(SizeBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'SizeBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USizeBoxSlot \ +static_assert(alignof(USizeBoxSlot) == 0x000008, "Wrong alignment on USizeBoxSlot"); \ +static_assert(sizeof(USizeBoxSlot) == 0x000060, "Wrong size on USizeBoxSlot"); \ +static_assert(offsetof(USizeBoxSlot, Padding) == 0x000038, "Member 'USizeBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(USizeBoxSlot, HorizontalAlignment) == 0x000058, "Member 'USizeBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(USizeBoxSlot, VerticalAlignment) == 0x000059, "Member 'USizeBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetIndentHandle \ +static_assert(alignof(Slider_SetIndentHandle) == 0x000001, "Wrong alignment on Slider_SetIndentHandle"); \ +static_assert(sizeof(Slider_SetIndentHandle) == 0x000001, "Wrong size on Slider_SetIndentHandle"); \ +static_assert(offsetof(Slider_SetIndentHandle, InValue) == 0x000000, "Member 'Slider_SetIndentHandle::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetLocked \ +static_assert(alignof(Slider_SetLocked) == 0x000001, "Wrong alignment on Slider_SetLocked"); \ +static_assert(sizeof(Slider_SetLocked) == 0x000001, "Wrong size on Slider_SetLocked"); \ +static_assert(offsetof(Slider_SetLocked, InValue) == 0x000000, "Member 'Slider_SetLocked::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetMaxValue \ +static_assert(alignof(Slider_SetMaxValue) == 0x000004, "Wrong alignment on Slider_SetMaxValue"); \ +static_assert(sizeof(Slider_SetMaxValue) == 0x000004, "Wrong size on Slider_SetMaxValue"); \ +static_assert(offsetof(Slider_SetMaxValue, InValue) == 0x000000, "Member 'Slider_SetMaxValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetMinValue \ +static_assert(alignof(Slider_SetMinValue) == 0x000004, "Wrong alignment on Slider_SetMinValue"); \ +static_assert(sizeof(Slider_SetMinValue) == 0x000004, "Wrong size on Slider_SetMinValue"); \ +static_assert(offsetof(Slider_SetMinValue, InValue) == 0x000000, "Member 'Slider_SetMinValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetSliderBarColor \ +static_assert(alignof(Slider_SetSliderBarColor) == 0x000004, "Wrong alignment on Slider_SetSliderBarColor"); \ +static_assert(sizeof(Slider_SetSliderBarColor) == 0x000010, "Wrong size on Slider_SetSliderBarColor"); \ +static_assert(offsetof(Slider_SetSliderBarColor, InValue) == 0x000000, "Member 'Slider_SetSliderBarColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetSliderHandleColor \ +static_assert(alignof(Slider_SetSliderHandleColor) == 0x000004, "Wrong alignment on Slider_SetSliderHandleColor"); \ +static_assert(sizeof(Slider_SetSliderHandleColor) == 0x000010, "Wrong size on Slider_SetSliderHandleColor"); \ +static_assert(offsetof(Slider_SetSliderHandleColor, InValue) == 0x000000, "Member 'Slider_SetSliderHandleColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetStepSize \ +static_assert(alignof(Slider_SetStepSize) == 0x000004, "Wrong alignment on Slider_SetStepSize"); \ +static_assert(sizeof(Slider_SetStepSize) == 0x000004, "Wrong size on Slider_SetStepSize"); \ +static_assert(offsetof(Slider_SetStepSize, InValue) == 0x000000, "Member 'Slider_SetStepSize::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_SetValue \ +static_assert(alignof(Slider_SetValue) == 0x000004, "Wrong alignment on Slider_SetValue"); \ +static_assert(sizeof(Slider_SetValue) == 0x000004, "Wrong size on Slider_SetValue"); \ +static_assert(offsetof(Slider_SetValue, InValue) == 0x000000, "Member 'Slider_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_GetNormalizedValue \ +static_assert(alignof(Slider_GetNormalizedValue) == 0x000004, "Wrong alignment on Slider_GetNormalizedValue"); \ +static_assert(sizeof(Slider_GetNormalizedValue) == 0x000004, "Wrong size on Slider_GetNormalizedValue"); \ +static_assert(offsetof(Slider_GetNormalizedValue, ReturnValue) == 0x000000, "Member 'Slider_GetNormalizedValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Slider_GetValue \ +static_assert(alignof(Slider_GetValue) == 0x000004, "Wrong alignment on Slider_GetValue"); \ +static_assert(sizeof(Slider_GetValue) == 0x000004, "Wrong size on Slider_GetValue"); \ +static_assert(offsetof(Slider_GetValue, ReturnValue) == 0x000000, "Member 'Slider_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USlider \ +static_assert(alignof(USlider) == 0x000010, "Wrong alignment on USlider"); \ +static_assert(sizeof(USlider) == 0x000730, "Wrong size on USlider"); \ +static_assert(offsetof(USlider, Value) == 0x000180, "Member 'USlider::Value' has a wrong offset!"); \ +static_assert(offsetof(USlider, ValueDelegate) == 0x000184, "Member 'USlider::ValueDelegate' has a wrong offset!"); \ +static_assert(offsetof(USlider, MinValue) == 0x000194, "Member 'USlider::MinValue' has a wrong offset!"); \ +static_assert(offsetof(USlider, MaxValue) == 0x000198, "Member 'USlider::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(USlider, WidgetStyle) == 0x0001A0, "Member 'USlider::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(USlider, Orientation) == 0x0006A0, "Member 'USlider::Orientation' has a wrong offset!"); \ +static_assert(offsetof(USlider, SliderBarColor) == 0x0006A4, "Member 'USlider::SliderBarColor' has a wrong offset!"); \ +static_assert(offsetof(USlider, SliderHandleColor) == 0x0006B4, "Member 'USlider::SliderHandleColor' has a wrong offset!"); \ +static_assert(offsetof(USlider, IndentHandle) == 0x0006C4, "Member 'USlider::IndentHandle' has a wrong offset!"); \ +static_assert(offsetof(USlider, Locked) == 0x0006C5, "Member 'USlider::Locked' has a wrong offset!"); \ +static_assert(offsetof(USlider, MouseUsesStep) == 0x0006C6, "Member 'USlider::MouseUsesStep' has a wrong offset!"); \ +static_assert(offsetof(USlider, RequiresControllerLock) == 0x0006C7, "Member 'USlider::RequiresControllerLock' has a wrong offset!"); \ +static_assert(offsetof(USlider, StepSize) == 0x0006C8, "Member 'USlider::StepSize' has a wrong offset!"); \ +static_assert(offsetof(USlider, IsFocusable) == 0x0006CC, "Member 'USlider::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(USlider, OnMouseCaptureBegin) == 0x0006D0, "Member 'USlider::OnMouseCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USlider, OnMouseCaptureEnd) == 0x0006E0, "Member 'USlider::OnMouseCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USlider, OnControllerCaptureBegin) == 0x0006F0, "Member 'USlider::OnControllerCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USlider, OnControllerCaptureEnd) == 0x000700, "Member 'USlider::OnControllerCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USlider, OnValueChanged) == 0x000710, "Member 'USlider::OnValueChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Spacer_SetSize \ +static_assert(alignof(Spacer_SetSize) == 0x000008, "Wrong alignment on Spacer_SetSize"); \ +static_assert(sizeof(Spacer_SetSize) == 0x000010, "Wrong size on Spacer_SetSize"); \ +static_assert(offsetof(Spacer_SetSize, InSize) == 0x000000, "Member 'Spacer_SetSize::InSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpacer \ +static_assert(alignof(USpacer) == 0x000008, "Wrong alignment on USpacer"); \ +static_assert(sizeof(USpacer) == 0x0001A0, "Wrong size on USpacer"); \ +static_assert(offsetof(USpacer, Size) == 0x000180, "Member 'USpacer::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetAlwaysUsesDeltaSnap \ +static_assert(alignof(SpinBox_SetAlwaysUsesDeltaSnap) == 0x000001, "Wrong alignment on SpinBox_SetAlwaysUsesDeltaSnap"); \ +static_assert(sizeof(SpinBox_SetAlwaysUsesDeltaSnap) == 0x000001, "Wrong size on SpinBox_SetAlwaysUsesDeltaSnap"); \ +static_assert(offsetof(SpinBox_SetAlwaysUsesDeltaSnap, bNewValue) == 0x000000, "Member 'SpinBox_SetAlwaysUsesDeltaSnap::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetDelta \ +static_assert(alignof(SpinBox_SetDelta) == 0x000004, "Wrong alignment on SpinBox_SetDelta"); \ +static_assert(sizeof(SpinBox_SetDelta) == 0x000004, "Wrong size on SpinBox_SetDelta"); \ +static_assert(offsetof(SpinBox_SetDelta, NewValue) == 0x000000, "Member 'SpinBox_SetDelta::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetForegroundColor \ +static_assert(alignof(SpinBox_SetForegroundColor) == 0x000004, "Wrong alignment on SpinBox_SetForegroundColor"); \ +static_assert(sizeof(SpinBox_SetForegroundColor) == 0x000014, "Wrong size on SpinBox_SetForegroundColor"); \ +static_assert(offsetof(SpinBox_SetForegroundColor, InForegroundColor) == 0x000000, "Member 'SpinBox_SetForegroundColor::InForegroundColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMaxFractionalDigits \ +static_assert(alignof(SpinBox_SetMaxFractionalDigits) == 0x000004, "Wrong alignment on SpinBox_SetMaxFractionalDigits"); \ +static_assert(sizeof(SpinBox_SetMaxFractionalDigits) == 0x000004, "Wrong size on SpinBox_SetMaxFractionalDigits"); \ +static_assert(offsetof(SpinBox_SetMaxFractionalDigits, NewValue) == 0x000000, "Member 'SpinBox_SetMaxFractionalDigits::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMaxSliderValue \ +static_assert(alignof(SpinBox_SetMaxSliderValue) == 0x000004, "Wrong alignment on SpinBox_SetMaxSliderValue"); \ +static_assert(sizeof(SpinBox_SetMaxSliderValue) == 0x000004, "Wrong size on SpinBox_SetMaxSliderValue"); \ +static_assert(offsetof(SpinBox_SetMaxSliderValue, NewValue) == 0x000000, "Member 'SpinBox_SetMaxSliderValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMaxValue \ +static_assert(alignof(SpinBox_SetMaxValue) == 0x000004, "Wrong alignment on SpinBox_SetMaxValue"); \ +static_assert(sizeof(SpinBox_SetMaxValue) == 0x000004, "Wrong size on SpinBox_SetMaxValue"); \ +static_assert(offsetof(SpinBox_SetMaxValue, NewValue) == 0x000000, "Member 'SpinBox_SetMaxValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMinFractionalDigits \ +static_assert(alignof(SpinBox_SetMinFractionalDigits) == 0x000004, "Wrong alignment on SpinBox_SetMinFractionalDigits"); \ +static_assert(sizeof(SpinBox_SetMinFractionalDigits) == 0x000004, "Wrong size on SpinBox_SetMinFractionalDigits"); \ +static_assert(offsetof(SpinBox_SetMinFractionalDigits, NewValue) == 0x000000, "Member 'SpinBox_SetMinFractionalDigits::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMinSliderValue \ +static_assert(alignof(SpinBox_SetMinSliderValue) == 0x000004, "Wrong alignment on SpinBox_SetMinSliderValue"); \ +static_assert(sizeof(SpinBox_SetMinSliderValue) == 0x000004, "Wrong size on SpinBox_SetMinSliderValue"); \ +static_assert(offsetof(SpinBox_SetMinSliderValue, NewValue) == 0x000000, "Member 'SpinBox_SetMinSliderValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetMinValue \ +static_assert(alignof(SpinBox_SetMinValue) == 0x000004, "Wrong alignment on SpinBox_SetMinValue"); \ +static_assert(sizeof(SpinBox_SetMinValue) == 0x000004, "Wrong size on SpinBox_SetMinValue"); \ +static_assert(offsetof(SpinBox_SetMinValue, NewValue) == 0x000000, "Member 'SpinBox_SetMinValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_SetValue \ +static_assert(alignof(SpinBox_SetValue) == 0x000004, "Wrong alignment on SpinBox_SetValue"); \ +static_assert(sizeof(SpinBox_SetValue) == 0x000004, "Wrong size on SpinBox_SetValue"); \ +static_assert(offsetof(SpinBox_SetValue, NewValue) == 0x000000, "Member 'SpinBox_SetValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetAlwaysUsesDeltaSnap \ +static_assert(alignof(SpinBox_GetAlwaysUsesDeltaSnap) == 0x000001, "Wrong alignment on SpinBox_GetAlwaysUsesDeltaSnap"); \ +static_assert(sizeof(SpinBox_GetAlwaysUsesDeltaSnap) == 0x000001, "Wrong size on SpinBox_GetAlwaysUsesDeltaSnap"); \ +static_assert(offsetof(SpinBox_GetAlwaysUsesDeltaSnap, ReturnValue) == 0x000000, "Member 'SpinBox_GetAlwaysUsesDeltaSnap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetDelta \ +static_assert(alignof(SpinBox_GetDelta) == 0x000004, "Wrong alignment on SpinBox_GetDelta"); \ +static_assert(sizeof(SpinBox_GetDelta) == 0x000004, "Wrong size on SpinBox_GetDelta"); \ +static_assert(offsetof(SpinBox_GetDelta, ReturnValue) == 0x000000, "Member 'SpinBox_GetDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMaxFractionalDigits \ +static_assert(alignof(SpinBox_GetMaxFractionalDigits) == 0x000004, "Wrong alignment on SpinBox_GetMaxFractionalDigits"); \ +static_assert(sizeof(SpinBox_GetMaxFractionalDigits) == 0x000004, "Wrong size on SpinBox_GetMaxFractionalDigits"); \ +static_assert(offsetof(SpinBox_GetMaxFractionalDigits, ReturnValue) == 0x000000, "Member 'SpinBox_GetMaxFractionalDigits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMaxSliderValue \ +static_assert(alignof(SpinBox_GetMaxSliderValue) == 0x000004, "Wrong alignment on SpinBox_GetMaxSliderValue"); \ +static_assert(sizeof(SpinBox_GetMaxSliderValue) == 0x000004, "Wrong size on SpinBox_GetMaxSliderValue"); \ +static_assert(offsetof(SpinBox_GetMaxSliderValue, ReturnValue) == 0x000000, "Member 'SpinBox_GetMaxSliderValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMaxValue \ +static_assert(alignof(SpinBox_GetMaxValue) == 0x000004, "Wrong alignment on SpinBox_GetMaxValue"); \ +static_assert(sizeof(SpinBox_GetMaxValue) == 0x000004, "Wrong size on SpinBox_GetMaxValue"); \ +static_assert(offsetof(SpinBox_GetMaxValue, ReturnValue) == 0x000000, "Member 'SpinBox_GetMaxValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMinFractionalDigits \ +static_assert(alignof(SpinBox_GetMinFractionalDigits) == 0x000004, "Wrong alignment on SpinBox_GetMinFractionalDigits"); \ +static_assert(sizeof(SpinBox_GetMinFractionalDigits) == 0x000004, "Wrong size on SpinBox_GetMinFractionalDigits"); \ +static_assert(offsetof(SpinBox_GetMinFractionalDigits, ReturnValue) == 0x000000, "Member 'SpinBox_GetMinFractionalDigits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMinSliderValue \ +static_assert(alignof(SpinBox_GetMinSliderValue) == 0x000004, "Wrong alignment on SpinBox_GetMinSliderValue"); \ +static_assert(sizeof(SpinBox_GetMinSliderValue) == 0x000004, "Wrong size on SpinBox_GetMinSliderValue"); \ +static_assert(offsetof(SpinBox_GetMinSliderValue, ReturnValue) == 0x000000, "Member 'SpinBox_GetMinSliderValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetMinValue \ +static_assert(alignof(SpinBox_GetMinValue) == 0x000004, "Wrong alignment on SpinBox_GetMinValue"); \ +static_assert(sizeof(SpinBox_GetMinValue) == 0x000004, "Wrong size on SpinBox_GetMinValue"); \ +static_assert(offsetof(SpinBox_GetMinValue, ReturnValue) == 0x000000, "Member 'SpinBox_GetMinValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpinBox_GetValue \ +static_assert(alignof(SpinBox_GetValue) == 0x000004, "Wrong alignment on SpinBox_GetValue"); \ +static_assert(sizeof(SpinBox_GetValue) == 0x000004, "Wrong size on SpinBox_GetValue"); \ +static_assert(offsetof(SpinBox_GetValue, ReturnValue) == 0x000000, "Member 'SpinBox_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpinBox \ +static_assert(alignof(USpinBox) == 0x000010, "Wrong alignment on USpinBox"); \ +static_assert(sizeof(USpinBox) == 0x0008A0, "Wrong size on USpinBox"); \ +static_assert(offsetof(USpinBox, Value) == 0x000180, "Member 'USpinBox::Value' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, ValueDelegate) == 0x000184, "Member 'USpinBox::ValueDelegate' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, WidgetStyle) == 0x0001A0, "Member 'USpinBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MinFractionalDigits) == 0x0007A0, "Member 'USpinBox::MinFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MaxFractionalDigits) == 0x0007A4, "Member 'USpinBox::MaxFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, bAlwaysUsesDeltaSnap) == 0x0007A8, "Member 'USpinBox::bAlwaysUsesDeltaSnap' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, bEnableSlider) == 0x0007A9, "Member 'USpinBox::bEnableSlider' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, Delta) == 0x0007AC, "Member 'USpinBox::Delta' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, SliderExponent) == 0x0007B0, "Member 'USpinBox::SliderExponent' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, Font) == 0x0007B8, "Member 'USpinBox::Font' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, Justification) == 0x000810, "Member 'USpinBox::Justification' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MinDesiredWidth) == 0x000814, "Member 'USpinBox::MinDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, KeyboardType) == 0x000818, "Member 'USpinBox::KeyboardType' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, ClearKeyboardFocusOnCommit) == 0x000819, "Member 'USpinBox::ClearKeyboardFocusOnCommit' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, SelectAllTextOnCommit) == 0x00081A, "Member 'USpinBox::SelectAllTextOnCommit' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, ForegroundColor) == 0x00081C, "Member 'USpinBox::ForegroundColor' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, OnValueChanged) == 0x000830, "Member 'USpinBox::OnValueChanged' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, OnValueCommitted) == 0x000840, "Member 'USpinBox::OnValueCommitted' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, OnBeginSliderMovement) == 0x000850, "Member 'USpinBox::OnBeginSliderMovement' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, OnEndSliderMovement) == 0x000860, "Member 'USpinBox::OnEndSliderMovement' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MinValue) == 0x000874, "Member 'USpinBox::MinValue' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MaxValue) == 0x000878, "Member 'USpinBox::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MinSliderValue) == 0x00087C, "Member 'USpinBox::MinSliderValue' has a wrong offset!"); \ +static_assert(offsetof(USpinBox, MaxSliderValue) == 0x000880, "Member 'USpinBox::MaxSliderValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StackBox_AddChildToStackBox \ +static_assert(alignof(StackBox_AddChildToStackBox) == 0x000008, "Wrong alignment on StackBox_AddChildToStackBox"); \ +static_assert(sizeof(StackBox_AddChildToStackBox) == 0x000010, "Wrong size on StackBox_AddChildToStackBox"); \ +static_assert(offsetof(StackBox_AddChildToStackBox, Content) == 0x000000, "Member 'StackBox_AddChildToStackBox::Content' has a wrong offset!"); \ +static_assert(offsetof(StackBox_AddChildToStackBox, ReturnValue) == 0x000008, "Member 'StackBox_AddChildToStackBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StackBox_ReplaceStackBoxChildAt \ +static_assert(alignof(StackBox_ReplaceStackBoxChildAt) == 0x000008, "Wrong alignment on StackBox_ReplaceStackBoxChildAt"); \ +static_assert(sizeof(StackBox_ReplaceStackBoxChildAt) == 0x000018, "Wrong size on StackBox_ReplaceStackBoxChildAt"); \ +static_assert(offsetof(StackBox_ReplaceStackBoxChildAt, Index_0) == 0x000000, "Member 'StackBox_ReplaceStackBoxChildAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(StackBox_ReplaceStackBoxChildAt, Content) == 0x000008, "Member 'StackBox_ReplaceStackBoxChildAt::Content' has a wrong offset!"); \ +static_assert(offsetof(StackBox_ReplaceStackBoxChildAt, ReturnValue) == 0x000010, "Member 'StackBox_ReplaceStackBoxChildAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStackBox \ +static_assert(alignof(UStackBox) == 0x000008, "Wrong alignment on UStackBox"); \ +static_assert(sizeof(UStackBox) == 0x0001B0, "Wrong size on UStackBox"); \ +static_assert(offsetof(UStackBox, Orientation) == 0x000198, "Member 'UStackBox::Orientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStackBoxSlot \ +static_assert(alignof(UStackBoxSlot) == 0x000008, "Wrong alignment on UStackBoxSlot"); \ +static_assert(sizeof(UStackBoxSlot) == 0x000060, "Wrong size on UStackBoxSlot"); \ +static_assert(offsetof(UStackBoxSlot, Padding) == 0x000038, "Member 'UStackBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UStackBoxSlot, Size) == 0x000048, "Member 'UStackBoxSlot::Size' has a wrong offset!"); \ +static_assert(offsetof(UStackBoxSlot, HorizontalAlignment) == 0x000050, "Member 'UStackBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UStackBoxSlot, VerticalAlignment) == 0x000051, "Member 'UStackBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_GetDynamicFontMaterial \ +static_assert(alignof(TextBlock_GetDynamicFontMaterial) == 0x000008, "Wrong alignment on TextBlock_GetDynamicFontMaterial"); \ +static_assert(sizeof(TextBlock_GetDynamicFontMaterial) == 0x000008, "Wrong size on TextBlock_GetDynamicFontMaterial"); \ +static_assert(offsetof(TextBlock_GetDynamicFontMaterial, ReturnValue) == 0x000000, "Member 'TextBlock_GetDynamicFontMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_GetDynamicOutlineMaterial \ +static_assert(alignof(TextBlock_GetDynamicOutlineMaterial) == 0x000008, "Wrong alignment on TextBlock_GetDynamicOutlineMaterial"); \ +static_assert(sizeof(TextBlock_GetDynamicOutlineMaterial) == 0x000008, "Wrong size on TextBlock_GetDynamicOutlineMaterial"); \ +static_assert(offsetof(TextBlock_GetDynamicOutlineMaterial, ReturnValue) == 0x000000, "Member 'TextBlock_GetDynamicOutlineMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetAutoWrapText \ +static_assert(alignof(TextBlock_SetAutoWrapText) == 0x000001, "Wrong alignment on TextBlock_SetAutoWrapText"); \ +static_assert(sizeof(TextBlock_SetAutoWrapText) == 0x000001, "Wrong size on TextBlock_SetAutoWrapText"); \ +static_assert(offsetof(TextBlock_SetAutoWrapText, InAutoTextWrap) == 0x000000, "Member 'TextBlock_SetAutoWrapText::InAutoTextWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetColorAndOpacity \ +static_assert(alignof(TextBlock_SetColorAndOpacity) == 0x000004, "Wrong alignment on TextBlock_SetColorAndOpacity"); \ +static_assert(sizeof(TextBlock_SetColorAndOpacity) == 0x000014, "Wrong size on TextBlock_SetColorAndOpacity"); \ +static_assert(offsetof(TextBlock_SetColorAndOpacity, InColorAndOpacity) == 0x000000, "Member 'TextBlock_SetColorAndOpacity::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetFont \ +static_assert(alignof(TextBlock_SetFont) == 0x000008, "Wrong alignment on TextBlock_SetFont"); \ +static_assert(sizeof(TextBlock_SetFont) == 0x000058, "Wrong size on TextBlock_SetFont"); \ +static_assert(offsetof(TextBlock_SetFont, InFontInfo) == 0x000000, "Member 'TextBlock_SetFont::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetFontMaterial \ +static_assert(alignof(TextBlock_SetFontMaterial) == 0x000008, "Wrong alignment on TextBlock_SetFontMaterial"); \ +static_assert(sizeof(TextBlock_SetFontMaterial) == 0x000008, "Wrong size on TextBlock_SetFontMaterial"); \ +static_assert(offsetof(TextBlock_SetFontMaterial, InMaterial) == 0x000000, "Member 'TextBlock_SetFontMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetFontOutlineMaterial \ +static_assert(alignof(TextBlock_SetFontOutlineMaterial) == 0x000008, "Wrong alignment on TextBlock_SetFontOutlineMaterial"); \ +static_assert(sizeof(TextBlock_SetFontOutlineMaterial) == 0x000008, "Wrong size on TextBlock_SetFontOutlineMaterial"); \ +static_assert(offsetof(TextBlock_SetFontOutlineMaterial, InMaterial) == 0x000000, "Member 'TextBlock_SetFontOutlineMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetMinDesiredWidth \ +static_assert(alignof(TextBlock_SetMinDesiredWidth) == 0x000004, "Wrong alignment on TextBlock_SetMinDesiredWidth"); \ +static_assert(sizeof(TextBlock_SetMinDesiredWidth) == 0x000004, "Wrong size on TextBlock_SetMinDesiredWidth"); \ +static_assert(offsetof(TextBlock_SetMinDesiredWidth, InMinDesiredWidth) == 0x000000, "Member 'TextBlock_SetMinDesiredWidth::InMinDesiredWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetOpacity \ +static_assert(alignof(TextBlock_SetOpacity) == 0x000004, "Wrong alignment on TextBlock_SetOpacity"); \ +static_assert(sizeof(TextBlock_SetOpacity) == 0x000004, "Wrong size on TextBlock_SetOpacity"); \ +static_assert(offsetof(TextBlock_SetOpacity, InOpacity) == 0x000000, "Member 'TextBlock_SetOpacity::InOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetShadowColorAndOpacity \ +static_assert(alignof(TextBlock_SetShadowColorAndOpacity) == 0x000004, "Wrong alignment on TextBlock_SetShadowColorAndOpacity"); \ +static_assert(sizeof(TextBlock_SetShadowColorAndOpacity) == 0x000010, "Wrong size on TextBlock_SetShadowColorAndOpacity"); \ +static_assert(offsetof(TextBlock_SetShadowColorAndOpacity, InShadowColorAndOpacity) == 0x000000, "Member 'TextBlock_SetShadowColorAndOpacity::InShadowColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetShadowOffset \ +static_assert(alignof(TextBlock_SetShadowOffset) == 0x000008, "Wrong alignment on TextBlock_SetShadowOffset"); \ +static_assert(sizeof(TextBlock_SetShadowOffset) == 0x000010, "Wrong size on TextBlock_SetShadowOffset"); \ +static_assert(offsetof(TextBlock_SetShadowOffset, InShadowOffset) == 0x000000, "Member 'TextBlock_SetShadowOffset::InShadowOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetStrikeBrush \ +static_assert(alignof(TextBlock_SetStrikeBrush) == 0x000010, "Wrong alignment on TextBlock_SetStrikeBrush"); \ +static_assert(sizeof(TextBlock_SetStrikeBrush) == 0x0000D0, "Wrong size on TextBlock_SetStrikeBrush"); \ +static_assert(offsetof(TextBlock_SetStrikeBrush, InStrikeBrush) == 0x000000, "Member 'TextBlock_SetStrikeBrush::InStrikeBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetText \ +static_assert(alignof(TextBlock_SetText) == 0x000008, "Wrong alignment on TextBlock_SetText"); \ +static_assert(sizeof(TextBlock_SetText) == 0x000018, "Wrong size on TextBlock_SetText"); \ +static_assert(offsetof(TextBlock_SetText, InText) == 0x000000, "Member 'TextBlock_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetTextOverflowPolicy \ +static_assert(alignof(TextBlock_SetTextOverflowPolicy) == 0x000001, "Wrong alignment on TextBlock_SetTextOverflowPolicy"); \ +static_assert(sizeof(TextBlock_SetTextOverflowPolicy) == 0x000001, "Wrong size on TextBlock_SetTextOverflowPolicy"); \ +static_assert(offsetof(TextBlock_SetTextOverflowPolicy, InOverflowPolicy) == 0x000000, "Member 'TextBlock_SetTextOverflowPolicy::InOverflowPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_SetTextTransformPolicy \ +static_assert(alignof(TextBlock_SetTextTransformPolicy) == 0x000001, "Wrong alignment on TextBlock_SetTextTransformPolicy"); \ +static_assert(sizeof(TextBlock_SetTextTransformPolicy) == 0x000001, "Wrong size on TextBlock_SetTextTransformPolicy"); \ +static_assert(offsetof(TextBlock_SetTextTransformPolicy, InTransformPolicy) == 0x000000, "Member 'TextBlock_SetTextTransformPolicy::InTransformPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TextBlock_GetText \ +static_assert(alignof(TextBlock_GetText) == 0x000008, "Wrong alignment on TextBlock_GetText"); \ +static_assert(sizeof(TextBlock_GetText) == 0x000018, "Wrong size on TextBlock_GetText"); \ +static_assert(offsetof(TextBlock_GetText, ReturnValue) == 0x000000, "Member 'TextBlock_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextBlock \ +static_assert(alignof(UTextBlock) == 0x000010, "Wrong alignment on UTextBlock"); \ +static_assert(sizeof(UTextBlock) == 0x000370, "Wrong size on UTextBlock"); \ +static_assert(offsetof(UTextBlock, Text) == 0x0001A0, "Member 'UTextBlock::Text' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, TextDelegate) == 0x0001B8, "Member 'UTextBlock::TextDelegate' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, ColorAndOpacity) == 0x0001C8, "Member 'UTextBlock::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, ColorAndOpacityDelegate) == 0x0001DC, "Member 'UTextBlock::ColorAndOpacityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, Font) == 0x0001F0, "Member 'UTextBlock::Font' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, StrikeBrush) == 0x000250, "Member 'UTextBlock::StrikeBrush' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, ShadowOffset) == 0x000320, "Member 'UTextBlock::ShadowOffset' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, ShadowColorAndOpacity) == 0x000330, "Member 'UTextBlock::ShadowColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, ShadowColorAndOpacityDelegate) == 0x000340, "Member 'UTextBlock::ShadowColorAndOpacityDelegate' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, MinDesiredWidth) == 0x000350, "Member 'UTextBlock::MinDesiredWidth' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, bWrapWithInvalidationPanel) == 0x000354, "Member 'UTextBlock::bWrapWithInvalidationPanel' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, TextTransformPolicy) == 0x000355, "Member 'UTextBlock::TextTransformPolicy' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, TextOverflowPolicy) == 0x000356, "Member 'UTextBlock::TextOverflowPolicy' has a wrong offset!"); \ +static_assert(offsetof(UTextBlock, bSimpleTextMode) == 0x000357, "Member 'UTextBlock::bSimpleTextMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Throbber_SetAnimateHorizontally \ +static_assert(alignof(Throbber_SetAnimateHorizontally) == 0x000001, "Wrong alignment on Throbber_SetAnimateHorizontally"); \ +static_assert(sizeof(Throbber_SetAnimateHorizontally) == 0x000001, "Wrong size on Throbber_SetAnimateHorizontally"); \ +static_assert(offsetof(Throbber_SetAnimateHorizontally, bInAnimateHorizontally) == 0x000000, "Member 'Throbber_SetAnimateHorizontally::bInAnimateHorizontally' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Throbber_SetAnimateOpacity \ +static_assert(alignof(Throbber_SetAnimateOpacity) == 0x000001, "Wrong alignment on Throbber_SetAnimateOpacity"); \ +static_assert(sizeof(Throbber_SetAnimateOpacity) == 0x000001, "Wrong size on Throbber_SetAnimateOpacity"); \ +static_assert(offsetof(Throbber_SetAnimateOpacity, bInAnimateOpacity) == 0x000000, "Member 'Throbber_SetAnimateOpacity::bInAnimateOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Throbber_SetAnimateVertically \ +static_assert(alignof(Throbber_SetAnimateVertically) == 0x000001, "Wrong alignment on Throbber_SetAnimateVertically"); \ +static_assert(sizeof(Throbber_SetAnimateVertically) == 0x000001, "Wrong size on Throbber_SetAnimateVertically"); \ +static_assert(offsetof(Throbber_SetAnimateVertically, bInAnimateVertically) == 0x000000, "Member 'Throbber_SetAnimateVertically::bInAnimateVertically' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Throbber_SetNumberOfPieces \ +static_assert(alignof(Throbber_SetNumberOfPieces) == 0x000004, "Wrong alignment on Throbber_SetNumberOfPieces"); \ +static_assert(sizeof(Throbber_SetNumberOfPieces) == 0x000004, "Wrong size on Throbber_SetNumberOfPieces"); \ +static_assert(offsetof(Throbber_SetNumberOfPieces, InNumberOfPieces) == 0x000000, "Member 'Throbber_SetNumberOfPieces::InNumberOfPieces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UThrobber \ +static_assert(alignof(UThrobber) == 0x000010, "Wrong alignment on UThrobber"); \ +static_assert(sizeof(UThrobber) == 0x000270, "Wrong size on UThrobber"); \ +static_assert(offsetof(UThrobber, NumberOfPieces) == 0x000180, "Member 'UThrobber::NumberOfPieces' has a wrong offset!"); \ +static_assert(offsetof(UThrobber, bAnimateHorizontally) == 0x000184, "Member 'UThrobber::bAnimateHorizontally' has a wrong offset!"); \ +static_assert(offsetof(UThrobber, bAnimateVertically) == 0x000185, "Member 'UThrobber::bAnimateVertically' has a wrong offset!"); \ +static_assert(offsetof(UThrobber, bAnimateOpacity) == 0x000186, "Member 'UThrobber::bAnimateOpacity' has a wrong offset!"); \ +static_assert(offsetof(UThrobber, Image) == 0x000190, "Member 'UThrobber::Image' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileView_SetEntryHeight \ +static_assert(alignof(TileView_SetEntryHeight) == 0x000004, "Wrong alignment on TileView_SetEntryHeight"); \ +static_assert(sizeof(TileView_SetEntryHeight) == 0x000004, "Wrong size on TileView_SetEntryHeight"); \ +static_assert(offsetof(TileView_SetEntryHeight, NewHeight) == 0x000000, "Member 'TileView_SetEntryHeight::NewHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileView_SetEntryWidth \ +static_assert(alignof(TileView_SetEntryWidth) == 0x000004, "Wrong alignment on TileView_SetEntryWidth"); \ +static_assert(sizeof(TileView_SetEntryWidth) == 0x000004, "Wrong size on TileView_SetEntryWidth"); \ +static_assert(offsetof(TileView_SetEntryWidth, NewWidth) == 0x000000, "Member 'TileView_SetEntryWidth::NewWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileView_GetEntryHeight \ +static_assert(alignof(TileView_GetEntryHeight) == 0x000004, "Wrong alignment on TileView_GetEntryHeight"); \ +static_assert(sizeof(TileView_GetEntryHeight) == 0x000004, "Wrong size on TileView_GetEntryHeight"); \ +static_assert(offsetof(TileView_GetEntryHeight, ReturnValue) == 0x000000, "Member 'TileView_GetEntryHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileView_GetEntryWidth \ +static_assert(alignof(TileView_GetEntryWidth) == 0x000004, "Wrong alignment on TileView_GetEntryWidth"); \ +static_assert(sizeof(TileView_GetEntryWidth) == 0x000004, "Wrong size on TileView_GetEntryWidth"); \ +static_assert(offsetof(TileView_GetEntryWidth, ReturnValue) == 0x000000, "Member 'TileView_GetEntryWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileView_IsAligned \ +static_assert(alignof(TileView_IsAligned) == 0x000001, "Wrong alignment on TileView_IsAligned"); \ +static_assert(sizeof(TileView_IsAligned) == 0x000001, "Wrong size on TileView_IsAligned"); \ +static_assert(offsetof(TileView_IsAligned, ReturnValue) == 0x000000, "Member 'TileView_IsAligned::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTileView \ +static_assert(alignof(UTileView) == 0x000010, "Wrong alignment on UTileView"); \ +static_assert(sizeof(UTileView) == 0x000CA0, "Wrong size on UTileView"); \ +static_assert(offsetof(UTileView, EntryHeight) == 0x000C70, "Member 'UTileView::EntryHeight' has a wrong offset!"); \ +static_assert(offsetof(UTileView, EntryWidth) == 0x000C74, "Member 'UTileView::EntryWidth' has a wrong offset!"); \ +static_assert(offsetof(UTileView, TileAlignment) == 0x000C78, "Member 'UTileView::TileAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTileView, bWrapHorizontalNavigation) == 0x000C79, "Member 'UTileView::bWrapHorizontalNavigation' has a wrong offset!"); \ +static_assert(offsetof(UTileView, bEntrySizeIncludesEntrySpacing) == 0x000C90, "Member 'UTileView::bEntrySizeIncludesEntrySpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TreeView_SetItemExpansion \ +static_assert(alignof(TreeView_SetItemExpansion) == 0x000008, "Wrong alignment on TreeView_SetItemExpansion"); \ +static_assert(sizeof(TreeView_SetItemExpansion) == 0x000010, "Wrong size on TreeView_SetItemExpansion"); \ +static_assert(offsetof(TreeView_SetItemExpansion, Item) == 0x000000, "Member 'TreeView_SetItemExpansion::Item' has a wrong offset!"); \ +static_assert(offsetof(TreeView_SetItemExpansion, bExpandItem) == 0x000008, "Member 'TreeView_SetItemExpansion::bExpandItem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTreeView \ +static_assert(alignof(UTreeView) == 0x000010, "Wrong alignment on UTreeView"); \ +static_assert(sizeof(UTreeView) == 0x000CD0, "Wrong size on UTreeView"); \ +static_assert(offsetof(UTreeView, BP_OnGetItemChildren) == 0x000C80, "Member 'UTreeView::BP_OnGetItemChildren' has a wrong offset!"); \ +static_assert(offsetof(UTreeView, BP_OnItemExpansionChanged) == 0x000C90, "Member 'UTreeView::BP_OnItemExpansionChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridPanel_AddChildToUniformGrid \ +static_assert(alignof(UniformGridPanel_AddChildToUniformGrid) == 0x000008, "Wrong alignment on UniformGridPanel_AddChildToUniformGrid"); \ +static_assert(sizeof(UniformGridPanel_AddChildToUniformGrid) == 0x000018, "Wrong size on UniformGridPanel_AddChildToUniformGrid"); \ +static_assert(offsetof(UniformGridPanel_AddChildToUniformGrid, Content) == 0x000000, "Member 'UniformGridPanel_AddChildToUniformGrid::Content' has a wrong offset!"); \ +static_assert(offsetof(UniformGridPanel_AddChildToUniformGrid, InRow) == 0x000008, "Member 'UniformGridPanel_AddChildToUniformGrid::InRow' has a wrong offset!"); \ +static_assert(offsetof(UniformGridPanel_AddChildToUniformGrid, InColumn) == 0x00000C, "Member 'UniformGridPanel_AddChildToUniformGrid::InColumn' has a wrong offset!"); \ +static_assert(offsetof(UniformGridPanel_AddChildToUniformGrid, ReturnValue) == 0x000010, "Member 'UniformGridPanel_AddChildToUniformGrid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridPanel_SetMinDesiredSlotHeight \ +static_assert(alignof(UniformGridPanel_SetMinDesiredSlotHeight) == 0x000004, "Wrong alignment on UniformGridPanel_SetMinDesiredSlotHeight"); \ +static_assert(sizeof(UniformGridPanel_SetMinDesiredSlotHeight) == 0x000004, "Wrong size on UniformGridPanel_SetMinDesiredSlotHeight"); \ +static_assert(offsetof(UniformGridPanel_SetMinDesiredSlotHeight, InMinDesiredSlotHeight) == 0x000000, "Member 'UniformGridPanel_SetMinDesiredSlotHeight::InMinDesiredSlotHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridPanel_SetMinDesiredSlotWidth \ +static_assert(alignof(UniformGridPanel_SetMinDesiredSlotWidth) == 0x000004, "Wrong alignment on UniformGridPanel_SetMinDesiredSlotWidth"); \ +static_assert(sizeof(UniformGridPanel_SetMinDesiredSlotWidth) == 0x000004, "Wrong size on UniformGridPanel_SetMinDesiredSlotWidth"); \ +static_assert(offsetof(UniformGridPanel_SetMinDesiredSlotWidth, InMinDesiredSlotWidth) == 0x000000, "Member 'UniformGridPanel_SetMinDesiredSlotWidth::InMinDesiredSlotWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridPanel_SetSlotPadding \ +static_assert(alignof(UniformGridPanel_SetSlotPadding) == 0x000004, "Wrong alignment on UniformGridPanel_SetSlotPadding"); \ +static_assert(sizeof(UniformGridPanel_SetSlotPadding) == 0x000010, "Wrong size on UniformGridPanel_SetSlotPadding"); \ +static_assert(offsetof(UniformGridPanel_SetSlotPadding, InSlotPadding) == 0x000000, "Member 'UniformGridPanel_SetSlotPadding::InSlotPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUniformGridPanel \ +static_assert(alignof(UUniformGridPanel) == 0x000008, "Wrong alignment on UUniformGridPanel"); \ +static_assert(sizeof(UUniformGridPanel) == 0x0001C0, "Wrong size on UUniformGridPanel"); \ +static_assert(offsetof(UUniformGridPanel, SlotPadding) == 0x000198, "Member 'UUniformGridPanel::SlotPadding' has a wrong offset!"); \ +static_assert(offsetof(UUniformGridPanel, MinDesiredSlotWidth) == 0x0001A8, "Member 'UUniformGridPanel::MinDesiredSlotWidth' has a wrong offset!"); \ +static_assert(offsetof(UUniformGridPanel, MinDesiredSlotHeight) == 0x0001AC, "Member 'UUniformGridPanel::MinDesiredSlotHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridSlot_SetColumn \ +static_assert(alignof(UniformGridSlot_SetColumn) == 0x000004, "Wrong alignment on UniformGridSlot_SetColumn"); \ +static_assert(sizeof(UniformGridSlot_SetColumn) == 0x000004, "Wrong size on UniformGridSlot_SetColumn"); \ +static_assert(offsetof(UniformGridSlot_SetColumn, InColumn) == 0x000000, "Member 'UniformGridSlot_SetColumn::InColumn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridSlot_SetHorizontalAlignment \ +static_assert(alignof(UniformGridSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on UniformGridSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(UniformGridSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on UniformGridSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(UniformGridSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'UniformGridSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridSlot_SetRow \ +static_assert(alignof(UniformGridSlot_SetRow) == 0x000004, "Wrong alignment on UniformGridSlot_SetRow"); \ +static_assert(sizeof(UniformGridSlot_SetRow) == 0x000004, "Wrong size on UniformGridSlot_SetRow"); \ +static_assert(offsetof(UniformGridSlot_SetRow, InRow) == 0x000000, "Member 'UniformGridSlot_SetRow::InRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UniformGridSlot_SetVerticalAlignment \ +static_assert(alignof(UniformGridSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on UniformGridSlot_SetVerticalAlignment"); \ +static_assert(sizeof(UniformGridSlot_SetVerticalAlignment) == 0x000001, "Wrong size on UniformGridSlot_SetVerticalAlignment"); \ +static_assert(offsetof(UniformGridSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'UniformGridSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUniformGridSlot \ +static_assert(alignof(UUniformGridSlot) == 0x000008, "Wrong alignment on UUniformGridSlot"); \ +static_assert(sizeof(UUniformGridSlot) == 0x000050, "Wrong size on UUniformGridSlot"); \ +static_assert(offsetof(UUniformGridSlot, HorizontalAlignment) == 0x000038, "Member 'UUniformGridSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UUniformGridSlot, VerticalAlignment) == 0x000039, "Member 'UUniformGridSlot::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UUniformGridSlot, Row) == 0x00003C, "Member 'UUniformGridSlot::Row' has a wrong offset!"); \ +static_assert(offsetof(UUniformGridSlot, Column) == 0x000040, "Member 'UUniformGridSlot::Column' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VerticalBox_AddChildToVerticalBox \ +static_assert(alignof(VerticalBox_AddChildToVerticalBox) == 0x000008, "Wrong alignment on VerticalBox_AddChildToVerticalBox"); \ +static_assert(sizeof(VerticalBox_AddChildToVerticalBox) == 0x000010, "Wrong size on VerticalBox_AddChildToVerticalBox"); \ +static_assert(offsetof(VerticalBox_AddChildToVerticalBox, Content) == 0x000000, "Member 'VerticalBox_AddChildToVerticalBox::Content' has a wrong offset!"); \ +static_assert(offsetof(VerticalBox_AddChildToVerticalBox, ReturnValue) == 0x000008, "Member 'VerticalBox_AddChildToVerticalBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVerticalBox \ +static_assert(alignof(UVerticalBox) == 0x000008, "Wrong alignment on UVerticalBox"); \ +static_assert(sizeof(UVerticalBox) == 0x0001A8, "Wrong size on UVerticalBox"); \ + +#define DUMPER7_ASSERTS_VerticalBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(VerticalBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on VerticalBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(VerticalBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on VerticalBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(VerticalBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'VerticalBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VerticalBoxSlot_SetPadding \ +static_assert(alignof(VerticalBoxSlot_SetPadding) == 0x000004, "Wrong alignment on VerticalBoxSlot_SetPadding"); \ +static_assert(sizeof(VerticalBoxSlot_SetPadding) == 0x000010, "Wrong size on VerticalBoxSlot_SetPadding"); \ +static_assert(offsetof(VerticalBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'VerticalBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VerticalBoxSlot_SetSize \ +static_assert(alignof(VerticalBoxSlot_SetSize) == 0x000004, "Wrong alignment on VerticalBoxSlot_SetSize"); \ +static_assert(sizeof(VerticalBoxSlot_SetSize) == 0x000008, "Wrong size on VerticalBoxSlot_SetSize"); \ +static_assert(offsetof(VerticalBoxSlot_SetSize, InSize) == 0x000000, "Member 'VerticalBoxSlot_SetSize::InSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VerticalBoxSlot_SetVerticalAlignment \ +static_assert(alignof(VerticalBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on VerticalBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(VerticalBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on VerticalBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(VerticalBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'VerticalBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVerticalBoxSlot \ +static_assert(alignof(UVerticalBoxSlot) == 0x000008, "Wrong alignment on UVerticalBoxSlot"); \ +static_assert(sizeof(UVerticalBoxSlot) == 0x000060, "Wrong size on UVerticalBoxSlot"); \ +static_assert(offsetof(UVerticalBoxSlot, Size) == 0x000038, "Member 'UVerticalBoxSlot::Size' has a wrong offset!"); \ +static_assert(offsetof(UVerticalBoxSlot, Padding) == 0x000040, "Member 'UVerticalBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UVerticalBoxSlot, HorizontalAlignment) == 0x000050, "Member 'UVerticalBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UVerticalBoxSlot, VerticalAlignment) == 0x000051, "Member 'UVerticalBoxSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_SetViewLocation \ +static_assert(alignof(Viewport_SetViewLocation) == 0x000008, "Wrong alignment on Viewport_SetViewLocation"); \ +static_assert(sizeof(Viewport_SetViewLocation) == 0x000018, "Wrong size on Viewport_SetViewLocation"); \ +static_assert(offsetof(Viewport_SetViewLocation, Location) == 0x000000, "Member 'Viewport_SetViewLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_SetViewRotation \ +static_assert(alignof(Viewport_SetViewRotation) == 0x000008, "Wrong alignment on Viewport_SetViewRotation"); \ +static_assert(sizeof(Viewport_SetViewRotation) == 0x000018, "Wrong size on Viewport_SetViewRotation"); \ +static_assert(offsetof(Viewport_SetViewRotation, Rotation) == 0x000000, "Member 'Viewport_SetViewRotation::Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_Spawn \ +static_assert(alignof(Viewport_Spawn) == 0x000008, "Wrong alignment on Viewport_Spawn"); \ +static_assert(sizeof(Viewport_Spawn) == 0x000010, "Wrong size on Viewport_Spawn"); \ +static_assert(offsetof(Viewport_Spawn, ActorClass) == 0x000000, "Member 'Viewport_Spawn::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(Viewport_Spawn, ReturnValue) == 0x000008, "Member 'Viewport_Spawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_GetViewLocation \ +static_assert(alignof(Viewport_GetViewLocation) == 0x000008, "Wrong alignment on Viewport_GetViewLocation"); \ +static_assert(sizeof(Viewport_GetViewLocation) == 0x000018, "Wrong size on Viewport_GetViewLocation"); \ +static_assert(offsetof(Viewport_GetViewLocation, ReturnValue) == 0x000000, "Member 'Viewport_GetViewLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_GetViewportWorld \ +static_assert(alignof(Viewport_GetViewportWorld) == 0x000008, "Wrong alignment on Viewport_GetViewportWorld"); \ +static_assert(sizeof(Viewport_GetViewportWorld) == 0x000008, "Wrong size on Viewport_GetViewportWorld"); \ +static_assert(offsetof(Viewport_GetViewportWorld, ReturnValue) == 0x000000, "Member 'Viewport_GetViewportWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Viewport_GetViewRotation \ +static_assert(alignof(Viewport_GetViewRotation) == 0x000008, "Wrong alignment on Viewport_GetViewRotation"); \ +static_assert(sizeof(Viewport_GetViewRotation) == 0x000018, "Wrong size on Viewport_GetViewRotation"); \ +static_assert(offsetof(Viewport_GetViewRotation, ReturnValue) == 0x000000, "Member 'Viewport_GetViewRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UViewport \ +static_assert(alignof(UViewport) == 0x000008, "Wrong alignment on UViewport"); \ +static_assert(sizeof(UViewport) == 0x0001E8, "Wrong size on UViewport"); \ +static_assert(offsetof(UViewport, BackgroundColor) == 0x000198, "Member 'UViewport::BackgroundColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetBackgroundColor \ +static_assert(alignof(WidgetComponent_SetBackgroundColor) == 0x000004, "Wrong alignment on WidgetComponent_SetBackgroundColor"); \ +static_assert(sizeof(WidgetComponent_SetBackgroundColor) == 0x000010, "Wrong size on WidgetComponent_SetBackgroundColor"); \ +static_assert(offsetof(WidgetComponent_SetBackgroundColor, NewBackgroundColor) == 0x000000, "Member 'WidgetComponent_SetBackgroundColor::NewBackgroundColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetCylinderArcAngle \ +static_assert(alignof(WidgetComponent_SetCylinderArcAngle) == 0x000004, "Wrong alignment on WidgetComponent_SetCylinderArcAngle"); \ +static_assert(sizeof(WidgetComponent_SetCylinderArcAngle) == 0x000004, "Wrong size on WidgetComponent_SetCylinderArcAngle"); \ +static_assert(offsetof(WidgetComponent_SetCylinderArcAngle, InCylinderArcAngle) == 0x000000, "Member 'WidgetComponent_SetCylinderArcAngle::InCylinderArcAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetDrawAtDesiredSize \ +static_assert(alignof(WidgetComponent_SetDrawAtDesiredSize) == 0x000001, "Wrong alignment on WidgetComponent_SetDrawAtDesiredSize"); \ +static_assert(sizeof(WidgetComponent_SetDrawAtDesiredSize) == 0x000001, "Wrong size on WidgetComponent_SetDrawAtDesiredSize"); \ +static_assert(offsetof(WidgetComponent_SetDrawAtDesiredSize, bInDrawAtDesiredSize) == 0x000000, "Member 'WidgetComponent_SetDrawAtDesiredSize::bInDrawAtDesiredSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetDrawSize \ +static_assert(alignof(WidgetComponent_SetDrawSize) == 0x000008, "Wrong alignment on WidgetComponent_SetDrawSize"); \ +static_assert(sizeof(WidgetComponent_SetDrawSize) == 0x000010, "Wrong size on WidgetComponent_SetDrawSize"); \ +static_assert(offsetof(WidgetComponent_SetDrawSize, Size) == 0x000000, "Member 'WidgetComponent_SetDrawSize::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetGeometryMode \ +static_assert(alignof(WidgetComponent_SetGeometryMode) == 0x000001, "Wrong alignment on WidgetComponent_SetGeometryMode"); \ +static_assert(sizeof(WidgetComponent_SetGeometryMode) == 0x000001, "Wrong size on WidgetComponent_SetGeometryMode"); \ +static_assert(offsetof(WidgetComponent_SetGeometryMode, InGeometryMode) == 0x000000, "Member 'WidgetComponent_SetGeometryMode::InGeometryMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetManuallyRedraw \ +static_assert(alignof(WidgetComponent_SetManuallyRedraw) == 0x000001, "Wrong alignment on WidgetComponent_SetManuallyRedraw"); \ +static_assert(sizeof(WidgetComponent_SetManuallyRedraw) == 0x000001, "Wrong size on WidgetComponent_SetManuallyRedraw"); \ +static_assert(offsetof(WidgetComponent_SetManuallyRedraw, bUseManualRedraw) == 0x000000, "Member 'WidgetComponent_SetManuallyRedraw::bUseManualRedraw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetOwnerPlayer \ +static_assert(alignof(WidgetComponent_SetOwnerPlayer) == 0x000008, "Wrong alignment on WidgetComponent_SetOwnerPlayer"); \ +static_assert(sizeof(WidgetComponent_SetOwnerPlayer) == 0x000008, "Wrong size on WidgetComponent_SetOwnerPlayer"); \ +static_assert(offsetof(WidgetComponent_SetOwnerPlayer, LocalPlayer) == 0x000000, "Member 'WidgetComponent_SetOwnerPlayer::LocalPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetPivot \ +static_assert(alignof(WidgetComponent_SetPivot) == 0x000008, "Wrong alignment on WidgetComponent_SetPivot"); \ +static_assert(sizeof(WidgetComponent_SetPivot) == 0x000010, "Wrong size on WidgetComponent_SetPivot"); \ +static_assert(offsetof(WidgetComponent_SetPivot, InPivot) == 0x000000, "Member 'WidgetComponent_SetPivot::InPivot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetRedrawTime \ +static_assert(alignof(WidgetComponent_SetRedrawTime) == 0x000004, "Wrong alignment on WidgetComponent_SetRedrawTime"); \ +static_assert(sizeof(WidgetComponent_SetRedrawTime) == 0x000004, "Wrong size on WidgetComponent_SetRedrawTime"); \ +static_assert(offsetof(WidgetComponent_SetRedrawTime, InRedrawTime) == 0x000000, "Member 'WidgetComponent_SetRedrawTime::InRedrawTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetTickMode \ +static_assert(alignof(WidgetComponent_SetTickMode) == 0x000001, "Wrong alignment on WidgetComponent_SetTickMode"); \ +static_assert(sizeof(WidgetComponent_SetTickMode) == 0x000001, "Wrong size on WidgetComponent_SetTickMode"); \ +static_assert(offsetof(WidgetComponent_SetTickMode, InTickMode) == 0x000000, "Member 'WidgetComponent_SetTickMode::InTickMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetTickWhenOffscreen \ +static_assert(alignof(WidgetComponent_SetTickWhenOffscreen) == 0x000001, "Wrong alignment on WidgetComponent_SetTickWhenOffscreen"); \ +static_assert(sizeof(WidgetComponent_SetTickWhenOffscreen) == 0x000001, "Wrong size on WidgetComponent_SetTickWhenOffscreen"); \ +static_assert(offsetof(WidgetComponent_SetTickWhenOffscreen, bWantTickWhenOffscreen) == 0x000000, "Member 'WidgetComponent_SetTickWhenOffscreen::bWantTickWhenOffscreen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetTintColorAndOpacity \ +static_assert(alignof(WidgetComponent_SetTintColorAndOpacity) == 0x000004, "Wrong alignment on WidgetComponent_SetTintColorAndOpacity"); \ +static_assert(sizeof(WidgetComponent_SetTintColorAndOpacity) == 0x000010, "Wrong size on WidgetComponent_SetTintColorAndOpacity"); \ +static_assert(offsetof(WidgetComponent_SetTintColorAndOpacity, NewTintColorAndOpacity) == 0x000000, "Member 'WidgetComponent_SetTintColorAndOpacity::NewTintColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetTwoSided \ +static_assert(alignof(WidgetComponent_SetTwoSided) == 0x000001, "Wrong alignment on WidgetComponent_SetTwoSided"); \ +static_assert(sizeof(WidgetComponent_SetTwoSided) == 0x000001, "Wrong size on WidgetComponent_SetTwoSided"); \ +static_assert(offsetof(WidgetComponent_SetTwoSided, bWantTwoSided) == 0x000000, "Member 'WidgetComponent_SetTwoSided::bWantTwoSided' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetWidget \ +static_assert(alignof(WidgetComponent_SetWidget) == 0x000008, "Wrong alignment on WidgetComponent_SetWidget"); \ +static_assert(sizeof(WidgetComponent_SetWidget) == 0x000008, "Wrong size on WidgetComponent_SetWidget"); \ +static_assert(offsetof(WidgetComponent_SetWidget, Widget_0) == 0x000000, "Member 'WidgetComponent_SetWidget::Widget_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetWidgetSpace \ +static_assert(alignof(WidgetComponent_SetWidgetSpace) == 0x000001, "Wrong alignment on WidgetComponent_SetWidgetSpace"); \ +static_assert(sizeof(WidgetComponent_SetWidgetSpace) == 0x000001, "Wrong size on WidgetComponent_SetWidgetSpace"); \ +static_assert(offsetof(WidgetComponent_SetWidgetSpace, NewSpace) == 0x000000, "Member 'WidgetComponent_SetWidgetSpace::NewSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetWindowFocusable \ +static_assert(alignof(WidgetComponent_SetWindowFocusable) == 0x000001, "Wrong alignment on WidgetComponent_SetWindowFocusable"); \ +static_assert(sizeof(WidgetComponent_SetWindowFocusable) == 0x000001, "Wrong size on WidgetComponent_SetWindowFocusable"); \ +static_assert(offsetof(WidgetComponent_SetWindowFocusable, bInWindowFocusable) == 0x000000, "Member 'WidgetComponent_SetWindowFocusable::bInWindowFocusable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_SetWindowVisibility \ +static_assert(alignof(WidgetComponent_SetWindowVisibility) == 0x000001, "Wrong alignment on WidgetComponent_SetWindowVisibility"); \ +static_assert(sizeof(WidgetComponent_SetWindowVisibility) == 0x000001, "Wrong size on WidgetComponent_SetWindowVisibility"); \ +static_assert(offsetof(WidgetComponent_SetWindowVisibility, InVisibility) == 0x000000, "Member 'WidgetComponent_SetWindowVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetCurrentDrawSize \ +static_assert(alignof(WidgetComponent_GetCurrentDrawSize) == 0x000008, "Wrong alignment on WidgetComponent_GetCurrentDrawSize"); \ +static_assert(sizeof(WidgetComponent_GetCurrentDrawSize) == 0x000010, "Wrong size on WidgetComponent_GetCurrentDrawSize"); \ +static_assert(offsetof(WidgetComponent_GetCurrentDrawSize, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetCurrentDrawSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetCylinderArcAngle \ +static_assert(alignof(WidgetComponent_GetCylinderArcAngle) == 0x000004, "Wrong alignment on WidgetComponent_GetCylinderArcAngle"); \ +static_assert(sizeof(WidgetComponent_GetCylinderArcAngle) == 0x000004, "Wrong size on WidgetComponent_GetCylinderArcAngle"); \ +static_assert(offsetof(WidgetComponent_GetCylinderArcAngle, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetCylinderArcAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetDrawAtDesiredSize \ +static_assert(alignof(WidgetComponent_GetDrawAtDesiredSize) == 0x000001, "Wrong alignment on WidgetComponent_GetDrawAtDesiredSize"); \ +static_assert(sizeof(WidgetComponent_GetDrawAtDesiredSize) == 0x000001, "Wrong size on WidgetComponent_GetDrawAtDesiredSize"); \ +static_assert(offsetof(WidgetComponent_GetDrawAtDesiredSize, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetDrawAtDesiredSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetDrawSize \ +static_assert(alignof(WidgetComponent_GetDrawSize) == 0x000008, "Wrong alignment on WidgetComponent_GetDrawSize"); \ +static_assert(sizeof(WidgetComponent_GetDrawSize) == 0x000010, "Wrong size on WidgetComponent_GetDrawSize"); \ +static_assert(offsetof(WidgetComponent_GetDrawSize, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetDrawSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetGeometryMode \ +static_assert(alignof(WidgetComponent_GetGeometryMode) == 0x000001, "Wrong alignment on WidgetComponent_GetGeometryMode"); \ +static_assert(sizeof(WidgetComponent_GetGeometryMode) == 0x000001, "Wrong size on WidgetComponent_GetGeometryMode"); \ +static_assert(offsetof(WidgetComponent_GetGeometryMode, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetGeometryMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetManuallyRedraw \ +static_assert(alignof(WidgetComponent_GetManuallyRedraw) == 0x000001, "Wrong alignment on WidgetComponent_GetManuallyRedraw"); \ +static_assert(sizeof(WidgetComponent_GetManuallyRedraw) == 0x000001, "Wrong size on WidgetComponent_GetManuallyRedraw"); \ +static_assert(offsetof(WidgetComponent_GetManuallyRedraw, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetManuallyRedraw::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetMaterialInstance \ +static_assert(alignof(WidgetComponent_GetMaterialInstance) == 0x000008, "Wrong alignment on WidgetComponent_GetMaterialInstance"); \ +static_assert(sizeof(WidgetComponent_GetMaterialInstance) == 0x000008, "Wrong size on WidgetComponent_GetMaterialInstance"); \ +static_assert(offsetof(WidgetComponent_GetMaterialInstance, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetMaterialInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetOwnerPlayer \ +static_assert(alignof(WidgetComponent_GetOwnerPlayer) == 0x000008, "Wrong alignment on WidgetComponent_GetOwnerPlayer"); \ +static_assert(sizeof(WidgetComponent_GetOwnerPlayer) == 0x000008, "Wrong size on WidgetComponent_GetOwnerPlayer"); \ +static_assert(offsetof(WidgetComponent_GetOwnerPlayer, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetOwnerPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetPivot \ +static_assert(alignof(WidgetComponent_GetPivot) == 0x000008, "Wrong alignment on WidgetComponent_GetPivot"); \ +static_assert(sizeof(WidgetComponent_GetPivot) == 0x000010, "Wrong size on WidgetComponent_GetPivot"); \ +static_assert(offsetof(WidgetComponent_GetPivot, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetPivot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetRedrawTime \ +static_assert(alignof(WidgetComponent_GetRedrawTime) == 0x000004, "Wrong alignment on WidgetComponent_GetRedrawTime"); \ +static_assert(sizeof(WidgetComponent_GetRedrawTime) == 0x000004, "Wrong size on WidgetComponent_GetRedrawTime"); \ +static_assert(offsetof(WidgetComponent_GetRedrawTime, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetRedrawTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetRenderTarget \ +static_assert(alignof(WidgetComponent_GetRenderTarget) == 0x000008, "Wrong alignment on WidgetComponent_GetRenderTarget"); \ +static_assert(sizeof(WidgetComponent_GetRenderTarget) == 0x000008, "Wrong size on WidgetComponent_GetRenderTarget"); \ +static_assert(offsetof(WidgetComponent_GetRenderTarget, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetRenderTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetTickWhenOffscreen \ +static_assert(alignof(WidgetComponent_GetTickWhenOffscreen) == 0x000001, "Wrong alignment on WidgetComponent_GetTickWhenOffscreen"); \ +static_assert(sizeof(WidgetComponent_GetTickWhenOffscreen) == 0x000001, "Wrong size on WidgetComponent_GetTickWhenOffscreen"); \ +static_assert(offsetof(WidgetComponent_GetTickWhenOffscreen, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetTickWhenOffscreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetTwoSided \ +static_assert(alignof(WidgetComponent_GetTwoSided) == 0x000001, "Wrong alignment on WidgetComponent_GetTwoSided"); \ +static_assert(sizeof(WidgetComponent_GetTwoSided) == 0x000001, "Wrong size on WidgetComponent_GetTwoSided"); \ +static_assert(offsetof(WidgetComponent_GetTwoSided, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetUserWidgetObject \ +static_assert(alignof(WidgetComponent_GetUserWidgetObject) == 0x000008, "Wrong alignment on WidgetComponent_GetUserWidgetObject"); \ +static_assert(sizeof(WidgetComponent_GetUserWidgetObject) == 0x000008, "Wrong size on WidgetComponent_GetUserWidgetObject"); \ +static_assert(offsetof(WidgetComponent_GetUserWidgetObject, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetUserWidgetObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetWidget \ +static_assert(alignof(WidgetComponent_GetWidget) == 0x000008, "Wrong alignment on WidgetComponent_GetWidget"); \ +static_assert(sizeof(WidgetComponent_GetWidget) == 0x000008, "Wrong size on WidgetComponent_GetWidget"); \ +static_assert(offsetof(WidgetComponent_GetWidget, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetWidgetSpace \ +static_assert(alignof(WidgetComponent_GetWidgetSpace) == 0x000001, "Wrong alignment on WidgetComponent_GetWidgetSpace"); \ +static_assert(sizeof(WidgetComponent_GetWidgetSpace) == 0x000001, "Wrong size on WidgetComponent_GetWidgetSpace"); \ +static_assert(offsetof(WidgetComponent_GetWidgetSpace, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetWidgetSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetWindowFocusable \ +static_assert(alignof(WidgetComponent_GetWindowFocusable) == 0x000001, "Wrong alignment on WidgetComponent_GetWindowFocusable"); \ +static_assert(sizeof(WidgetComponent_GetWindowFocusable) == 0x000001, "Wrong size on WidgetComponent_GetWindowFocusable"); \ +static_assert(offsetof(WidgetComponent_GetWindowFocusable, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetWindowFocusable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_GetWindowVisiblility \ +static_assert(alignof(WidgetComponent_GetWindowVisiblility) == 0x000001, "Wrong alignment on WidgetComponent_GetWindowVisiblility"); \ +static_assert(sizeof(WidgetComponent_GetWindowVisiblility) == 0x000001, "Wrong size on WidgetComponent_GetWindowVisiblility"); \ +static_assert(offsetof(WidgetComponent_GetWindowVisiblility, ReturnValue) == 0x000000, "Member 'WidgetComponent_GetWindowVisiblility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetComponent_IsWidgetVisible \ +static_assert(alignof(WidgetComponent_IsWidgetVisible) == 0x000001, "Wrong alignment on WidgetComponent_IsWidgetVisible"); \ +static_assert(sizeof(WidgetComponent_IsWidgetVisible) == 0x000001, "Wrong size on WidgetComponent_IsWidgetVisible"); \ +static_assert(offsetof(WidgetComponent_IsWidgetVisible, ReturnValue) == 0x000000, "Member 'WidgetComponent_IsWidgetVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetComponent \ +static_assert(alignof(UWidgetComponent) == 0x000010, "Wrong alignment on UWidgetComponent"); \ +static_assert(sizeof(UWidgetComponent) == 0x0006F0, "Wrong size on UWidgetComponent"); \ +static_assert(offsetof(UWidgetComponent, Space) == 0x0005A8, "Member 'UWidgetComponent::Space' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TimingPolicy) == 0x0005A9, "Member 'UWidgetComponent::TimingPolicy' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, WidgetClass) == 0x0005B0, "Member 'UWidgetComponent::WidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, DrawSize) == 0x0005B8, "Member 'UWidgetComponent::DrawSize' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bManuallyRedraw) == 0x0005C0, "Member 'UWidgetComponent::bManuallyRedraw' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bRedrawRequested) == 0x0005C1, "Member 'UWidgetComponent::bRedrawRequested' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, RedrawTime) == 0x0005C4, "Member 'UWidgetComponent::RedrawTime' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, CurrentDrawSize) == 0x0005D0, "Member 'UWidgetComponent::CurrentDrawSize' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bDrawAtDesiredSize) == 0x0005D8, "Member 'UWidgetComponent::bDrawAtDesiredSize' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, Pivot) == 0x0005E0, "Member 'UWidgetComponent::Pivot' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bReceiveHardwareInput) == 0x0005F0, "Member 'UWidgetComponent::bReceiveHardwareInput' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bWindowFocusable) == 0x0005F1, "Member 'UWidgetComponent::bWindowFocusable' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, WindowVisibility) == 0x0005F2, "Member 'UWidgetComponent::WindowVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bApplyGammaCorrection) == 0x0005F3, "Member 'UWidgetComponent::bApplyGammaCorrection' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, OwnerPlayer) == 0x0005F8, "Member 'UWidgetComponent::OwnerPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, BackgroundColor) == 0x000600, "Member 'UWidgetComponent::BackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TintColorAndOpacity) == 0x000610, "Member 'UWidgetComponent::TintColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, OpacityFromTexture) == 0x000620, "Member 'UWidgetComponent::OpacityFromTexture' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, BlendMode) == 0x000624, "Member 'UWidgetComponent::BlendMode' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bIsTwoSided) == 0x000625, "Member 'UWidgetComponent::bIsTwoSided' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TickWhenOffscreen) == 0x000626, "Member 'UWidgetComponent::TickWhenOffscreen' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, BodySetup) == 0x000628, "Member 'UWidgetComponent::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TranslucentMaterial) == 0x000630, "Member 'UWidgetComponent::TranslucentMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TranslucentMaterial_OneSided) == 0x000638, "Member 'UWidgetComponent::TranslucentMaterial_OneSided' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, OpaqueMaterial) == 0x000640, "Member 'UWidgetComponent::OpaqueMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, OpaqueMaterial_OneSided) == 0x000648, "Member 'UWidgetComponent::OpaqueMaterial_OneSided' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, MaskedMaterial) == 0x000650, "Member 'UWidgetComponent::MaskedMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, MaskedMaterial_OneSided) == 0x000658, "Member 'UWidgetComponent::MaskedMaterial_OneSided' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, RenderTarget) == 0x000660, "Member 'UWidgetComponent::RenderTarget' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, MaterialInstance) == 0x000668, "Member 'UWidgetComponent::MaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bAddedToScreen) == 0x000670, "Member 'UWidgetComponent::bAddedToScreen' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, bEditTimeUsable) == 0x000671, "Member 'UWidgetComponent::bEditTimeUsable' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, SharedLayerName) == 0x000674, "Member 'UWidgetComponent::SharedLayerName' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, LayerZOrder) == 0x00067C, "Member 'UWidgetComponent::LayerZOrder' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, GeometryMode) == 0x000680, "Member 'UWidgetComponent::GeometryMode' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, CylinderArcAngle) == 0x000684, "Member 'UWidgetComponent::CylinderArcAngle' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, TickMode) == 0x000688, "Member 'UWidgetComponent::TickMode' has a wrong offset!"); \ +static_assert(offsetof(UWidgetComponent, Widget) == 0x0006B8, "Member 'UWidgetComponent::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_PressAndReleaseKey \ +static_assert(alignof(WidgetInteractionComponent_PressAndReleaseKey) == 0x000008, "Wrong alignment on WidgetInteractionComponent_PressAndReleaseKey"); \ +static_assert(sizeof(WidgetInteractionComponent_PressAndReleaseKey) == 0x000020, "Wrong size on WidgetInteractionComponent_PressAndReleaseKey"); \ +static_assert(offsetof(WidgetInteractionComponent_PressAndReleaseKey, Key) == 0x000000, "Member 'WidgetInteractionComponent_PressAndReleaseKey::Key' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_PressAndReleaseKey, ReturnValue) == 0x000018, "Member 'WidgetInteractionComponent_PressAndReleaseKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_PressKey \ +static_assert(alignof(WidgetInteractionComponent_PressKey) == 0x000008, "Wrong alignment on WidgetInteractionComponent_PressKey"); \ +static_assert(sizeof(WidgetInteractionComponent_PressKey) == 0x000020, "Wrong size on WidgetInteractionComponent_PressKey"); \ +static_assert(offsetof(WidgetInteractionComponent_PressKey, Key) == 0x000000, "Member 'WidgetInteractionComponent_PressKey::Key' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_PressKey, bRepeat) == 0x000018, "Member 'WidgetInteractionComponent_PressKey::bRepeat' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_PressKey, ReturnValue) == 0x000019, "Member 'WidgetInteractionComponent_PressKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_PressPointerKey \ +static_assert(alignof(WidgetInteractionComponent_PressPointerKey) == 0x000008, "Wrong alignment on WidgetInteractionComponent_PressPointerKey"); \ +static_assert(sizeof(WidgetInteractionComponent_PressPointerKey) == 0x000018, "Wrong size on WidgetInteractionComponent_PressPointerKey"); \ +static_assert(offsetof(WidgetInteractionComponent_PressPointerKey, Key) == 0x000000, "Member 'WidgetInteractionComponent_PressPointerKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_ReleaseKey \ +static_assert(alignof(WidgetInteractionComponent_ReleaseKey) == 0x000008, "Wrong alignment on WidgetInteractionComponent_ReleaseKey"); \ +static_assert(sizeof(WidgetInteractionComponent_ReleaseKey) == 0x000020, "Wrong size on WidgetInteractionComponent_ReleaseKey"); \ +static_assert(offsetof(WidgetInteractionComponent_ReleaseKey, Key) == 0x000000, "Member 'WidgetInteractionComponent_ReleaseKey::Key' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_ReleaseKey, ReturnValue) == 0x000018, "Member 'WidgetInteractionComponent_ReleaseKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_ReleasePointerKey \ +static_assert(alignof(WidgetInteractionComponent_ReleasePointerKey) == 0x000008, "Wrong alignment on WidgetInteractionComponent_ReleasePointerKey"); \ +static_assert(sizeof(WidgetInteractionComponent_ReleasePointerKey) == 0x000018, "Wrong size on WidgetInteractionComponent_ReleasePointerKey"); \ +static_assert(offsetof(WidgetInteractionComponent_ReleasePointerKey, Key) == 0x000000, "Member 'WidgetInteractionComponent_ReleasePointerKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_ScrollWheel \ +static_assert(alignof(WidgetInteractionComponent_ScrollWheel) == 0x000004, "Wrong alignment on WidgetInteractionComponent_ScrollWheel"); \ +static_assert(sizeof(WidgetInteractionComponent_ScrollWheel) == 0x000004, "Wrong size on WidgetInteractionComponent_ScrollWheel"); \ +static_assert(offsetof(WidgetInteractionComponent_ScrollWheel, ScrollDelta) == 0x000000, "Member 'WidgetInteractionComponent_ScrollWheel::ScrollDelta' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_SendKeyChar \ +static_assert(alignof(WidgetInteractionComponent_SendKeyChar) == 0x000008, "Wrong alignment on WidgetInteractionComponent_SendKeyChar"); \ +static_assert(sizeof(WidgetInteractionComponent_SendKeyChar) == 0x000018, "Wrong size on WidgetInteractionComponent_SendKeyChar"); \ +static_assert(offsetof(WidgetInteractionComponent_SendKeyChar, Characters) == 0x000000, "Member 'WidgetInteractionComponent_SendKeyChar::Characters' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_SendKeyChar, bRepeat) == 0x000010, "Member 'WidgetInteractionComponent_SendKeyChar::bRepeat' has a wrong offset!"); \ +static_assert(offsetof(WidgetInteractionComponent_SendKeyChar, ReturnValue) == 0x000011, "Member 'WidgetInteractionComponent_SendKeyChar::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_SetCustomHitResult \ +static_assert(alignof(WidgetInteractionComponent_SetCustomHitResult) == 0x000008, "Wrong alignment on WidgetInteractionComponent_SetCustomHitResult"); \ +static_assert(sizeof(WidgetInteractionComponent_SetCustomHitResult) == 0x0000E8, "Wrong size on WidgetInteractionComponent_SetCustomHitResult"); \ +static_assert(offsetof(WidgetInteractionComponent_SetCustomHitResult, HitResult) == 0x000000, "Member 'WidgetInteractionComponent_SetCustomHitResult::HitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_SetFocus \ +static_assert(alignof(WidgetInteractionComponent_SetFocus) == 0x000008, "Wrong alignment on WidgetInteractionComponent_SetFocus"); \ +static_assert(sizeof(WidgetInteractionComponent_SetFocus) == 0x000008, "Wrong size on WidgetInteractionComponent_SetFocus"); \ +static_assert(offsetof(WidgetInteractionComponent_SetFocus, FocusWidget) == 0x000000, "Member 'WidgetInteractionComponent_SetFocus::FocusWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_Get2DHitLocation \ +static_assert(alignof(WidgetInteractionComponent_Get2DHitLocation) == 0x000008, "Wrong alignment on WidgetInteractionComponent_Get2DHitLocation"); \ +static_assert(sizeof(WidgetInteractionComponent_Get2DHitLocation) == 0x000010, "Wrong size on WidgetInteractionComponent_Get2DHitLocation"); \ +static_assert(offsetof(WidgetInteractionComponent_Get2DHitLocation, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_Get2DHitLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_GetHoveredWidgetComponent \ +static_assert(alignof(WidgetInteractionComponent_GetHoveredWidgetComponent) == 0x000008, "Wrong alignment on WidgetInteractionComponent_GetHoveredWidgetComponent"); \ +static_assert(sizeof(WidgetInteractionComponent_GetHoveredWidgetComponent) == 0x000008, "Wrong size on WidgetInteractionComponent_GetHoveredWidgetComponent"); \ +static_assert(offsetof(WidgetInteractionComponent_GetHoveredWidgetComponent, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_GetHoveredWidgetComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_GetLastHitResult \ +static_assert(alignof(WidgetInteractionComponent_GetLastHitResult) == 0x000008, "Wrong alignment on WidgetInteractionComponent_GetLastHitResult"); \ +static_assert(sizeof(WidgetInteractionComponent_GetLastHitResult) == 0x0000E8, "Wrong size on WidgetInteractionComponent_GetLastHitResult"); \ +static_assert(offsetof(WidgetInteractionComponent_GetLastHitResult, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_GetLastHitResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_IsOverFocusableWidget \ +static_assert(alignof(WidgetInteractionComponent_IsOverFocusableWidget) == 0x000001, "Wrong alignment on WidgetInteractionComponent_IsOverFocusableWidget"); \ +static_assert(sizeof(WidgetInteractionComponent_IsOverFocusableWidget) == 0x000001, "Wrong size on WidgetInteractionComponent_IsOverFocusableWidget"); \ +static_assert(offsetof(WidgetInteractionComponent_IsOverFocusableWidget, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_IsOverFocusableWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_IsOverHitTestVisibleWidget \ +static_assert(alignof(WidgetInteractionComponent_IsOverHitTestVisibleWidget) == 0x000001, "Wrong alignment on WidgetInteractionComponent_IsOverHitTestVisibleWidget"); \ +static_assert(sizeof(WidgetInteractionComponent_IsOverHitTestVisibleWidget) == 0x000001, "Wrong size on WidgetInteractionComponent_IsOverHitTestVisibleWidget"); \ +static_assert(offsetof(WidgetInteractionComponent_IsOverHitTestVisibleWidget, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_IsOverHitTestVisibleWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetInteractionComponent_IsOverInteractableWidget \ +static_assert(alignof(WidgetInteractionComponent_IsOverInteractableWidget) == 0x000001, "Wrong alignment on WidgetInteractionComponent_IsOverInteractableWidget"); \ +static_assert(sizeof(WidgetInteractionComponent_IsOverInteractableWidget) == 0x000001, "Wrong size on WidgetInteractionComponent_IsOverInteractableWidget"); \ +static_assert(offsetof(WidgetInteractionComponent_IsOverInteractableWidget, ReturnValue) == 0x000000, "Member 'WidgetInteractionComponent_IsOverInteractableWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetInteractionComponent \ +static_assert(alignof(UWidgetInteractionComponent) == 0x000010, "Wrong alignment on UWidgetInteractionComponent"); \ +static_assert(sizeof(UWidgetInteractionComponent) == 0x000570, "Wrong size on UWidgetInteractionComponent"); \ +static_assert(offsetof(UWidgetInteractionComponent, OnHoveredWidgetChanged) == 0x0002A0, "Member 'UWidgetInteractionComponent::OnHoveredWidgetChanged' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, VirtualUserIndex) == 0x0002C0, "Member 'UWidgetInteractionComponent::VirtualUserIndex' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, PointerIndex) == 0x0002C4, "Member 'UWidgetInteractionComponent::PointerIndex' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, TraceChannel) == 0x0002C8, "Member 'UWidgetInteractionComponent::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, InteractionDistance) == 0x0002CC, "Member 'UWidgetInteractionComponent::InteractionDistance' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, InteractionSource) == 0x0002D0, "Member 'UWidgetInteractionComponent::InteractionSource' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, bEnableHitTesting) == 0x0002D1, "Member 'UWidgetInteractionComponent::bEnableHitTesting' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, bShowDebug) == 0x0002D2, "Member 'UWidgetInteractionComponent::bShowDebug' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, DebugSphereLineThickness) == 0x0002D4, "Member 'UWidgetInteractionComponent::DebugSphereLineThickness' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, DebugLineThickness) == 0x0002D8, "Member 'UWidgetInteractionComponent::DebugLineThickness' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, DebugColor) == 0x0002DC, "Member 'UWidgetInteractionComponent::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, CustomHitResult) == 0x000368, "Member 'UWidgetInteractionComponent::CustomHitResult' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, LocalHitLocation) == 0x000450, "Member 'UWidgetInteractionComponent::LocalHitLocation' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, LastLocalHitLocation) == 0x000460, "Member 'UWidgetInteractionComponent::LastLocalHitLocation' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, HoveredWidgetComponent) == 0x000470, "Member 'UWidgetInteractionComponent::HoveredWidgetComponent' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, LastHitResult) == 0x000478, "Member 'UWidgetInteractionComponent::LastHitResult' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, bIsHoveredWidgetInteractable) == 0x000560, "Member 'UWidgetInteractionComponent::bIsHoveredWidgetInteractable' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, bIsHoveredWidgetFocusable) == 0x000561, "Member 'UWidgetInteractionComponent::bIsHoveredWidgetFocusable' has a wrong offset!"); \ +static_assert(offsetof(UWidgetInteractionComponent, bIsHoveredWidgetHitTestVisible) == 0x000562, "Member 'UWidgetInteractionComponent::bIsHoveredWidgetHitTestVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_SetActiveWidget \ +static_assert(alignof(WidgetSwitcher_SetActiveWidget) == 0x000008, "Wrong alignment on WidgetSwitcher_SetActiveWidget"); \ +static_assert(sizeof(WidgetSwitcher_SetActiveWidget) == 0x000008, "Wrong size on WidgetSwitcher_SetActiveWidget"); \ +static_assert(offsetof(WidgetSwitcher_SetActiveWidget, Widget) == 0x000000, "Member 'WidgetSwitcher_SetActiveWidget::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_SetActiveWidgetIndex \ +static_assert(alignof(WidgetSwitcher_SetActiveWidgetIndex) == 0x000004, "Wrong alignment on WidgetSwitcher_SetActiveWidgetIndex"); \ +static_assert(sizeof(WidgetSwitcher_SetActiveWidgetIndex) == 0x000004, "Wrong size on WidgetSwitcher_SetActiveWidgetIndex"); \ +static_assert(offsetof(WidgetSwitcher_SetActiveWidgetIndex, Index_0) == 0x000000, "Member 'WidgetSwitcher_SetActiveWidgetIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_GetActiveWidget \ +static_assert(alignof(WidgetSwitcher_GetActiveWidget) == 0x000008, "Wrong alignment on WidgetSwitcher_GetActiveWidget"); \ +static_assert(sizeof(WidgetSwitcher_GetActiveWidget) == 0x000008, "Wrong size on WidgetSwitcher_GetActiveWidget"); \ +static_assert(offsetof(WidgetSwitcher_GetActiveWidget, ReturnValue) == 0x000000, "Member 'WidgetSwitcher_GetActiveWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_GetActiveWidgetIndex \ +static_assert(alignof(WidgetSwitcher_GetActiveWidgetIndex) == 0x000004, "Wrong alignment on WidgetSwitcher_GetActiveWidgetIndex"); \ +static_assert(sizeof(WidgetSwitcher_GetActiveWidgetIndex) == 0x000004, "Wrong size on WidgetSwitcher_GetActiveWidgetIndex"); \ +static_assert(offsetof(WidgetSwitcher_GetActiveWidgetIndex, ReturnValue) == 0x000000, "Member 'WidgetSwitcher_GetActiveWidgetIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_GetNumWidgets \ +static_assert(alignof(WidgetSwitcher_GetNumWidgets) == 0x000004, "Wrong alignment on WidgetSwitcher_GetNumWidgets"); \ +static_assert(sizeof(WidgetSwitcher_GetNumWidgets) == 0x000004, "Wrong size on WidgetSwitcher_GetNumWidgets"); \ +static_assert(offsetof(WidgetSwitcher_GetNumWidgets, ReturnValue) == 0x000000, "Member 'WidgetSwitcher_GetNumWidgets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetSwitcher_GetWidgetAtIndex \ +static_assert(alignof(WidgetSwitcher_GetWidgetAtIndex) == 0x000008, "Wrong alignment on WidgetSwitcher_GetWidgetAtIndex"); \ +static_assert(sizeof(WidgetSwitcher_GetWidgetAtIndex) == 0x000010, "Wrong size on WidgetSwitcher_GetWidgetAtIndex"); \ +static_assert(offsetof(WidgetSwitcher_GetWidgetAtIndex, Index_0) == 0x000000, "Member 'WidgetSwitcher_GetWidgetAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(WidgetSwitcher_GetWidgetAtIndex, ReturnValue) == 0x000008, "Member 'WidgetSwitcher_GetWidgetAtIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetSwitcher \ +static_assert(alignof(UWidgetSwitcher) == 0x000008, "Wrong alignment on UWidgetSwitcher"); \ +static_assert(sizeof(UWidgetSwitcher) == 0x0001B0, "Wrong size on UWidgetSwitcher"); \ +static_assert(offsetof(UWidgetSwitcher, ActiveWidgetIndex) == 0x000198, "Member 'UWidgetSwitcher::ActiveWidgetIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarArea_SetHorizontalAlignment \ +static_assert(alignof(WindowTitleBarArea_SetHorizontalAlignment) == 0x000001, "Wrong alignment on WindowTitleBarArea_SetHorizontalAlignment"); \ +static_assert(sizeof(WindowTitleBarArea_SetHorizontalAlignment) == 0x000001, "Wrong size on WindowTitleBarArea_SetHorizontalAlignment"); \ +static_assert(offsetof(WindowTitleBarArea_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'WindowTitleBarArea_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarArea_SetPadding \ +static_assert(alignof(WindowTitleBarArea_SetPadding) == 0x000004, "Wrong alignment on WindowTitleBarArea_SetPadding"); \ +static_assert(sizeof(WindowTitleBarArea_SetPadding) == 0x000010, "Wrong size on WindowTitleBarArea_SetPadding"); \ +static_assert(offsetof(WindowTitleBarArea_SetPadding, InPadding) == 0x000000, "Member 'WindowTitleBarArea_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WindowTitleBarArea_SetVerticalAlignment \ +static_assert(alignof(WindowTitleBarArea_SetVerticalAlignment) == 0x000001, "Wrong alignment on WindowTitleBarArea_SetVerticalAlignment"); \ +static_assert(sizeof(WindowTitleBarArea_SetVerticalAlignment) == 0x000001, "Wrong size on WindowTitleBarArea_SetVerticalAlignment"); \ +static_assert(offsetof(WindowTitleBarArea_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'WindowTitleBarArea_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWindowTitleBarArea \ +static_assert(alignof(UWindowTitleBarArea) == 0x000008, "Wrong alignment on UWindowTitleBarArea"); \ +static_assert(sizeof(UWindowTitleBarArea) == 0x0001B8, "Wrong size on UWindowTitleBarArea"); \ +static_assert(offsetof(UWindowTitleBarArea, bWindowButtonsEnabled) == 0x000198, "Member 'UWindowTitleBarArea::bWindowButtonsEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWindowTitleBarArea, bDoubleClickTogglesFullscreen) == 0x000199, "Member 'UWindowTitleBarArea::bDoubleClickTogglesFullscreen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBox_AddChildToWrapBox \ +static_assert(alignof(WrapBox_AddChildToWrapBox) == 0x000008, "Wrong alignment on WrapBox_AddChildToWrapBox"); \ +static_assert(sizeof(WrapBox_AddChildToWrapBox) == 0x000010, "Wrong size on WrapBox_AddChildToWrapBox"); \ +static_assert(offsetof(WrapBox_AddChildToWrapBox, Content) == 0x000000, "Member 'WrapBox_AddChildToWrapBox::Content' has a wrong offset!"); \ +static_assert(offsetof(WrapBox_AddChildToWrapBox, ReturnValue) == 0x000008, "Member 'WrapBox_AddChildToWrapBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBox_SetHorizontalAlignment \ +static_assert(alignof(WrapBox_SetHorizontalAlignment) == 0x000001, "Wrong alignment on WrapBox_SetHorizontalAlignment"); \ +static_assert(sizeof(WrapBox_SetHorizontalAlignment) == 0x000001, "Wrong size on WrapBox_SetHorizontalAlignment"); \ +static_assert(offsetof(WrapBox_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'WrapBox_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBox_SetInnerSlotPadding \ +static_assert(alignof(WrapBox_SetInnerSlotPadding) == 0x000008, "Wrong alignment on WrapBox_SetInnerSlotPadding"); \ +static_assert(sizeof(WrapBox_SetInnerSlotPadding) == 0x000010, "Wrong size on WrapBox_SetInnerSlotPadding"); \ +static_assert(offsetof(WrapBox_SetInnerSlotPadding, InPadding) == 0x000000, "Member 'WrapBox_SetInnerSlotPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrapBox \ +static_assert(alignof(UWrapBox) == 0x000008, "Wrong alignment on UWrapBox"); \ +static_assert(sizeof(UWrapBox) == 0x0001C0, "Wrong size on UWrapBox"); \ +static_assert(offsetof(UWrapBox, InnerSlotPadding) == 0x000198, "Member 'UWrapBox::InnerSlotPadding' has a wrong offset!"); \ +static_assert(offsetof(UWrapBox, WrapSize) == 0x0001A8, "Member 'UWrapBox::WrapSize' has a wrong offset!"); \ +static_assert(offsetof(UWrapBox, bExplicitWrapSize) == 0x0001AC, "Member 'UWrapBox::bExplicitWrapSize' has a wrong offset!"); \ +static_assert(offsetof(UWrapBox, HorizontalAlignment) == 0x0001AD, "Member 'UWrapBox::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWrapBox, Orientation) == 0x0001AE, "Member 'UWrapBox::Orientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetFillEmptySpace \ +static_assert(alignof(WrapBoxSlot_SetFillEmptySpace) == 0x000001, "Wrong alignment on WrapBoxSlot_SetFillEmptySpace"); \ +static_assert(sizeof(WrapBoxSlot_SetFillEmptySpace) == 0x000001, "Wrong size on WrapBoxSlot_SetFillEmptySpace"); \ +static_assert(offsetof(WrapBoxSlot_SetFillEmptySpace, InbFillEmptySpace) == 0x000000, "Member 'WrapBoxSlot_SetFillEmptySpace::InbFillEmptySpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetFillSpanWhenLessThan \ +static_assert(alignof(WrapBoxSlot_SetFillSpanWhenLessThan) == 0x000004, "Wrong alignment on WrapBoxSlot_SetFillSpanWhenLessThan"); \ +static_assert(sizeof(WrapBoxSlot_SetFillSpanWhenLessThan) == 0x000004, "Wrong size on WrapBoxSlot_SetFillSpanWhenLessThan"); \ +static_assert(offsetof(WrapBoxSlot_SetFillSpanWhenLessThan, InFillSpanWhenLessThan) == 0x000000, "Member 'WrapBoxSlot_SetFillSpanWhenLessThan::InFillSpanWhenLessThan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetHorizontalAlignment \ +static_assert(alignof(WrapBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on WrapBoxSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(WrapBoxSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on WrapBoxSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(WrapBoxSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'WrapBoxSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetNewLine \ +static_assert(alignof(WrapBoxSlot_SetNewLine) == 0x000001, "Wrong alignment on WrapBoxSlot_SetNewLine"); \ +static_assert(sizeof(WrapBoxSlot_SetNewLine) == 0x000001, "Wrong size on WrapBoxSlot_SetNewLine"); \ +static_assert(offsetof(WrapBoxSlot_SetNewLine, InForceNewLine) == 0x000000, "Member 'WrapBoxSlot_SetNewLine::InForceNewLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetPadding \ +static_assert(alignof(WrapBoxSlot_SetPadding) == 0x000004, "Wrong alignment on WrapBoxSlot_SetPadding"); \ +static_assert(sizeof(WrapBoxSlot_SetPadding) == 0x000010, "Wrong size on WrapBoxSlot_SetPadding"); \ +static_assert(offsetof(WrapBoxSlot_SetPadding, InPadding) == 0x000000, "Member 'WrapBoxSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrapBoxSlot_SetVerticalAlignment \ +static_assert(alignof(WrapBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on WrapBoxSlot_SetVerticalAlignment"); \ +static_assert(sizeof(WrapBoxSlot_SetVerticalAlignment) == 0x000001, "Wrong size on WrapBoxSlot_SetVerticalAlignment"); \ +static_assert(offsetof(WrapBoxSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'WrapBoxSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrapBoxSlot \ +static_assert(alignof(UWrapBoxSlot) == 0x000008, "Wrong alignment on UWrapBoxSlot"); \ +static_assert(sizeof(UWrapBoxSlot) == 0x000058, "Wrong size on UWrapBoxSlot"); \ +static_assert(offsetof(UWrapBoxSlot, Padding) == 0x000038, "Member 'UWrapBoxSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(UWrapBoxSlot, FillSpanWhenLessThan) == 0x000048, "Member 'UWrapBoxSlot::FillSpanWhenLessThan' has a wrong offset!"); \ +static_assert(offsetof(UWrapBoxSlot, HorizontalAlignment) == 0x00004C, "Member 'UWrapBoxSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWrapBoxSlot, VerticalAlignment) == 0x00004D, "Member 'UWrapBoxSlot::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWrapBoxSlot, bFillEmptySpace) == 0x00004E, "Member 'UWrapBoxSlot::bFillEmptySpace' has a wrong offset!"); \ +static_assert(offsetof(UWrapBoxSlot, bForceNewLine) == 0x00004F, "Member 'UWrapBoxSlot::bForceNewLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DragDropOperation_DragCancelled \ +static_assert(alignof(DragDropOperation_DragCancelled) == 0x000008, "Wrong alignment on DragDropOperation_DragCancelled"); \ +static_assert(sizeof(DragDropOperation_DragCancelled) == 0x000078, "Wrong size on DragDropOperation_DragCancelled"); \ +static_assert(offsetof(DragDropOperation_DragCancelled, PointerEvent) == 0x000000, "Member 'DragDropOperation_DragCancelled::PointerEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DragDropOperation_Dragged \ +static_assert(alignof(DragDropOperation_Dragged) == 0x000008, "Wrong alignment on DragDropOperation_Dragged"); \ +static_assert(sizeof(DragDropOperation_Dragged) == 0x000078, "Wrong size on DragDropOperation_Dragged"); \ +static_assert(offsetof(DragDropOperation_Dragged, PointerEvent) == 0x000000, "Member 'DragDropOperation_Dragged::PointerEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DragDropOperation_Drop \ +static_assert(alignof(DragDropOperation_Drop) == 0x000008, "Wrong alignment on DragDropOperation_Drop"); \ +static_assert(sizeof(DragDropOperation_Drop) == 0x000078, "Wrong size on DragDropOperation_Drop"); \ +static_assert(offsetof(DragDropOperation_Drop, PointerEvent) == 0x000000, "Member 'DragDropOperation_Drop::PointerEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDragDropOperation \ +static_assert(alignof(UDragDropOperation) == 0x000008, "Wrong alignment on UDragDropOperation"); \ +static_assert(sizeof(UDragDropOperation) == 0x000090, "Wrong size on UDragDropOperation"); \ +static_assert(offsetof(UDragDropOperation, Tag) == 0x000028, "Member 'UDragDropOperation::Tag' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, Payload) == 0x000038, "Member 'UDragDropOperation::Payload' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, DefaultDragVisual) == 0x000040, "Member 'UDragDropOperation::DefaultDragVisual' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, Pivot) == 0x000048, "Member 'UDragDropOperation::Pivot' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, Offset) == 0x000050, "Member 'UDragDropOperation::Offset' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, OnDrop) == 0x000060, "Member 'UDragDropOperation::OnDrop' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, OnDragCancelled) == 0x000070, "Member 'UDragDropOperation::OnDragCancelled' has a wrong offset!"); \ +static_assert(offsetof(UDragDropOperation, OnDragged) == 0x000080, "Member 'UDragDropOperation::OnDragged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USlateVectorArtData \ +static_assert(alignof(USlateVectorArtData) == 0x000008, "Wrong alignment on USlateVectorArtData"); \ +static_assert(sizeof(USlateVectorArtData) == 0x000070, "Wrong size on USlateVectorArtData"); \ +static_assert(offsetof(USlateVectorArtData, VertexData) == 0x000028, "Member 'USlateVectorArtData::VertexData' has a wrong offset!"); \ +static_assert(offsetof(USlateVectorArtData, IndexData) == 0x000038, "Member 'USlateVectorArtData::IndexData' has a wrong offset!"); \ +static_assert(offsetof(USlateVectorArtData, Material) == 0x000048, "Member 'USlateVectorArtData::Material' has a wrong offset!"); \ +static_assert(offsetof(USlateVectorArtData, ExtentMin) == 0x000050, "Member 'USlateVectorArtData::ExtentMin' has a wrong offset!"); \ +static_assert(offsetof(USlateVectorArtData, ExtentMax) == 0x000060, "Member 'USlateVectorArtData::ExtentMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetBlueprintGeneratedClass \ +static_assert(alignof(UWidgetBlueprintGeneratedClass) == 0x000008, "Wrong alignment on UWidgetBlueprintGeneratedClass"); \ +static_assert(sizeof(UWidgetBlueprintGeneratedClass) == 0x0003D8, "Wrong size on UWidgetBlueprintGeneratedClass"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, WidgetTree) == 0x000368, "Member 'UWidgetBlueprintGeneratedClass::WidgetTree' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, Extensions) == 0x000370, "Member 'UWidgetBlueprintGeneratedClass::Extensions' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, Bindings) == 0x000388, "Member 'UWidgetBlueprintGeneratedClass::Bindings' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, Animations) == 0x000398, "Member 'UWidgetBlueprintGeneratedClass::Animations' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, NamedSlots) == 0x0003A8, "Member 'UWidgetBlueprintGeneratedClass::NamedSlots' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, AvailableNamedSlots) == 0x0003B8, "Member 'UWidgetBlueprintGeneratedClass::AvailableNamedSlots' has a wrong offset!"); \ +static_assert(offsetof(UWidgetBlueprintGeneratedClass, InstanceNamedSlots) == 0x0003C8, "Member 'UWidgetBlueprintGeneratedClass::InstanceNamedSlots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetMousePositionOnPlatform \ +static_assert(alignof(WidgetLayoutLibrary_GetMousePositionOnPlatform) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetMousePositionOnPlatform"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetMousePositionOnPlatform) == 0x000010, "Wrong size on WidgetLayoutLibrary_GetMousePositionOnPlatform"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionOnPlatform, ReturnValue) == 0x000000, "Member 'WidgetLayoutLibrary_GetMousePositionOnPlatform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetMousePositionOnViewport \ +static_assert(alignof(WidgetLayoutLibrary_GetMousePositionOnViewport) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetMousePositionOnViewport"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetMousePositionOnViewport) == 0x000018, "Wrong size on WidgetLayoutLibrary_GetMousePositionOnViewport"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionOnViewport, WorldContextObject) == 0x000000, "Member 'WidgetLayoutLibrary_GetMousePositionOnViewport::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionOnViewport, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_GetMousePositionOnViewport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetMousePositionScaledByDPI \ +static_assert(alignof(WidgetLayoutLibrary_GetMousePositionScaledByDPI) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetMousePositionScaledByDPI"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetMousePositionScaledByDPI) == 0x000018, "Wrong size on WidgetLayoutLibrary_GetMousePositionScaledByDPI"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionScaledByDPI, Player) == 0x000000, "Member 'WidgetLayoutLibrary_GetMousePositionScaledByDPI::Player' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionScaledByDPI, LocationX) == 0x000008, "Member 'WidgetLayoutLibrary_GetMousePositionScaledByDPI::LocationX' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionScaledByDPI, LocationY) == 0x00000C, "Member 'WidgetLayoutLibrary_GetMousePositionScaledByDPI::LocationY' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetMousePositionScaledByDPI, ReturnValue) == 0x000010, "Member 'WidgetLayoutLibrary_GetMousePositionScaledByDPI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry \ +static_assert(alignof(WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry) == 0x000040, "Wrong size on WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry, PlayerController) == 0x000000, "Member 'WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_GetPlayerScreenWidgetGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetViewportScale \ +static_assert(alignof(WidgetLayoutLibrary_GetViewportScale) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetViewportScale"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetViewportScale) == 0x000010, "Wrong size on WidgetLayoutLibrary_GetViewportScale"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportScale, WorldContextObject) == 0x000000, "Member 'WidgetLayoutLibrary_GetViewportScale::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportScale, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_GetViewportScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetViewportSize \ +static_assert(alignof(WidgetLayoutLibrary_GetViewportSize) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetViewportSize"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetViewportSize) == 0x000018, "Wrong size on WidgetLayoutLibrary_GetViewportSize"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportSize, WorldContextObject) == 0x000000, "Member 'WidgetLayoutLibrary_GetViewportSize::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportSize, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_GetViewportSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_GetViewportWidgetGeometry \ +static_assert(alignof(WidgetLayoutLibrary_GetViewportWidgetGeometry) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_GetViewportWidgetGeometry"); \ +static_assert(sizeof(WidgetLayoutLibrary_GetViewportWidgetGeometry) == 0x000040, "Wrong size on WidgetLayoutLibrary_GetViewportWidgetGeometry"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportWidgetGeometry, WorldContextObject) == 0x000000, "Member 'WidgetLayoutLibrary_GetViewportWidgetGeometry::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_GetViewportWidgetGeometry, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_GetViewportWidgetGeometry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition \ +static_assert(alignof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition"); \ +static_assert(sizeof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition) == 0x000038, "Wrong size on WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition"); \ +static_assert(offsetof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition, PlayerController) == 0x000000, "Member 'WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition, WorldLocation) == 0x000008, "Member 'WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition, ScreenPosition) == 0x000020, "Member 'WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition::ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition, bPlayerViewportRelative) == 0x000030, "Member 'WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition::bPlayerViewportRelative' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition, ReturnValue) == 0x000031, "Member 'WidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_RemoveAllWidgets \ +static_assert(alignof(WidgetLayoutLibrary_RemoveAllWidgets) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_RemoveAllWidgets"); \ +static_assert(sizeof(WidgetLayoutLibrary_RemoveAllWidgets) == 0x000008, "Wrong size on WidgetLayoutLibrary_RemoveAllWidgets"); \ +static_assert(offsetof(WidgetLayoutLibrary_RemoveAllWidgets, WorldContextObject) == 0x000000, "Member 'WidgetLayoutLibrary_RemoveAllWidgets::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsBorderSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsBorderSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsBorderSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsBorderSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsBorderSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsBorderSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsBorderSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsBorderSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsBorderSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsCanvasSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsCanvasSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsCanvasSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsCanvasSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsCanvasSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsCanvasSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsCanvasSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsCanvasSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsCanvasSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsGridSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsGridSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsGridSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsGridSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsGridSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsGridSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsGridSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsGridSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsGridSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsHorizontalBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsHorizontalBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsHorizontalBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsHorizontalBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsHorizontalBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsHorizontalBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsHorizontalBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsHorizontalBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsHorizontalBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsOverlaySlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsOverlaySlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsOverlaySlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsOverlaySlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsOverlaySlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsOverlaySlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsOverlaySlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsOverlaySlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsOverlaySlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsSafeBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsSafeBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsSafeBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsSafeBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsSafeBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsSafeBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsSafeBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsSafeBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsSafeBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsScaleBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsScaleBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsScaleBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsScaleBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsScaleBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsScaleBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsScaleBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsScaleBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsScaleBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsScrollBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsScrollBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsScrollBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsScrollBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsScrollBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsScrollBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsScrollBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsScrollBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsScrollBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsSizeBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsSizeBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsSizeBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsSizeBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsSizeBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsSizeBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsSizeBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsSizeBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsSizeBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsUniformGridSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsUniformGridSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsUniformGridSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsUniformGridSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsUniformGridSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsUniformGridSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsUniformGridSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsUniformGridSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsUniformGridSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsVerticalBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsVerticalBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsVerticalBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsVerticalBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsVerticalBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsVerticalBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsVerticalBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsVerticalBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsVerticalBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsWidgetSwitcherSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WidgetLayoutLibrary_SlotAsWrapBoxSlot \ +static_assert(alignof(WidgetLayoutLibrary_SlotAsWrapBoxSlot) == 0x000008, "Wrong alignment on WidgetLayoutLibrary_SlotAsWrapBoxSlot"); \ +static_assert(sizeof(WidgetLayoutLibrary_SlotAsWrapBoxSlot) == 0x000010, "Wrong size on WidgetLayoutLibrary_SlotAsWrapBoxSlot"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsWrapBoxSlot, Widget) == 0x000000, "Member 'WidgetLayoutLibrary_SlotAsWrapBoxSlot::Widget' has a wrong offset!"); \ +static_assert(offsetof(WidgetLayoutLibrary_SlotAsWrapBoxSlot, ReturnValue) == 0x000008, "Member 'WidgetLayoutLibrary_SlotAsWrapBoxSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetLayoutLibrary \ +static_assert(alignof(UWidgetLayoutLibrary) == 0x000008, "Wrong alignment on UWidgetLayoutLibrary"); \ +static_assert(sizeof(UWidgetLayoutLibrary) == 0x000028, "Wrong size on UWidgetLayoutLibrary"); \ + +#define DUMPER7_ASSERTS_UWidgetTree \ +static_assert(alignof(UWidgetTree) == 0x000008, "Wrong alignment on UWidgetTree"); \ +static_assert(sizeof(UWidgetTree) == 0x000088, "Wrong size on UWidgetTree"); \ +static_assert(offsetof(UWidgetTree, RootWidget) == 0x000030, "Member 'UWidgetTree::RootWidget' has a wrong offset!"); \ +static_assert(offsetof(UWidgetTree, NamedSlotBindings) == 0x000038, "Member 'UWidgetTree::NamedSlotBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraLookatTrackingSettings \ +static_assert(alignof(FCameraLookatTrackingSettings) == 0x000008, "Wrong alignment on FCameraLookatTrackingSettings"); \ +static_assert(sizeof(FCameraLookatTrackingSettings) == 0x000068, "Wrong size on FCameraLookatTrackingSettings"); \ +static_assert(offsetof(FCameraLookatTrackingSettings, LookAtTrackingInterpSpeed) == 0x000004, "Member 'FCameraLookatTrackingSettings::LookAtTrackingInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(FCameraLookatTrackingSettings, ActorToTrack) == 0x000020, "Member 'FCameraLookatTrackingSettings::ActorToTrack' has a wrong offset!"); \ +static_assert(offsetof(FCameraLookatTrackingSettings, RelativeOffset) == 0x000048, "Member 'FCameraLookatTrackingSettings::RelativeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraFilmbackSettings \ +static_assert(alignof(FCameraFilmbackSettings) == 0x000004, "Wrong alignment on FCameraFilmbackSettings"); \ +static_assert(sizeof(FCameraFilmbackSettings) == 0x00000C, "Wrong size on FCameraFilmbackSettings"); \ +static_assert(offsetof(FCameraFilmbackSettings, SensorWidth) == 0x000000, "Member 'FCameraFilmbackSettings::SensorWidth' has a wrong offset!"); \ +static_assert(offsetof(FCameraFilmbackSettings, SensorHeight) == 0x000004, "Member 'FCameraFilmbackSettings::SensorHeight' has a wrong offset!"); \ +static_assert(offsetof(FCameraFilmbackSettings, SensorAspectRatio) == 0x000008, "Member 'FCameraFilmbackSettings::SensorAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedFilmbackPreset \ +static_assert(alignof(FNamedFilmbackPreset) == 0x000008, "Wrong alignment on FNamedFilmbackPreset"); \ +static_assert(sizeof(FNamedFilmbackPreset) == 0x000020, "Wrong size on FNamedFilmbackPreset"); \ +static_assert(offsetof(FNamedFilmbackPreset, Name) == 0x000000, "Member 'FNamedFilmbackPreset::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedFilmbackPreset, FilmbackSettings) == 0x000010, "Member 'FNamedFilmbackPreset::FilmbackSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraLensSettings \ +static_assert(alignof(FCameraLensSettings) == 0x000004, "Wrong alignment on FCameraLensSettings"); \ +static_assert(sizeof(FCameraLensSettings) == 0x00001C, "Wrong size on FCameraLensSettings"); \ +static_assert(offsetof(FCameraLensSettings, MinFocalLength) == 0x000000, "Member 'FCameraLensSettings::MinFocalLength' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, MaxFocalLength) == 0x000004, "Member 'FCameraLensSettings::MaxFocalLength' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, MinFStop) == 0x000008, "Member 'FCameraLensSettings::MinFStop' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, MaxFStop) == 0x00000C, "Member 'FCameraLensSettings::MaxFStop' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, MinimumFocusDistance) == 0x000010, "Member 'FCameraLensSettings::MinimumFocusDistance' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, SqueezeFactor) == 0x000014, "Member 'FCameraLensSettings::SqueezeFactor' has a wrong offset!"); \ +static_assert(offsetof(FCameraLensSettings, DiaphragmBladeCount) == 0x000018, "Member 'FCameraLensSettings::DiaphragmBladeCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedLensPreset \ +static_assert(alignof(FNamedLensPreset) == 0x000008, "Wrong alignment on FNamedLensPreset"); \ +static_assert(sizeof(FNamedLensPreset) == 0x000030, "Wrong size on FNamedLensPreset"); \ +static_assert(offsetof(FNamedLensPreset, Name) == 0x000000, "Member 'FNamedLensPreset::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedLensPreset, LensSettings) == 0x000010, "Member 'FNamedLensPreset::LensSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlateCropSettings \ +static_assert(alignof(FPlateCropSettings) == 0x000004, "Wrong alignment on FPlateCropSettings"); \ +static_assert(sizeof(FPlateCropSettings) == 0x000004, "Wrong size on FPlateCropSettings"); \ +static_assert(offsetof(FPlateCropSettings, AspectRatio) == 0x000000, "Member 'FPlateCropSettings::AspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedPlateCropPreset \ +static_assert(alignof(FNamedPlateCropPreset) == 0x000008, "Wrong alignment on FNamedPlateCropPreset"); \ +static_assert(sizeof(FNamedPlateCropPreset) == 0x000018, "Wrong size on FNamedPlateCropPreset"); \ +static_assert(offsetof(FNamedPlateCropPreset, Name) == 0x000000, "Member 'FNamedPlateCropPreset::Name' has a wrong offset!"); \ +static_assert(offsetof(FNamedPlateCropPreset, CropSettings) == 0x000010, "Member 'FNamedPlateCropPreset::CropSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraTrackingFocusSettings \ +static_assert(alignof(FCameraTrackingFocusSettings) == 0x000008, "Wrong alignment on FCameraTrackingFocusSettings"); \ +static_assert(sizeof(FCameraTrackingFocusSettings) == 0x000048, "Wrong size on FCameraTrackingFocusSettings"); \ +static_assert(offsetof(FCameraTrackingFocusSettings, ActorToTrack) == 0x000000, "Member 'FCameraTrackingFocusSettings::ActorToTrack' has a wrong offset!"); \ +static_assert(offsetof(FCameraTrackingFocusSettings, RelativeOffset) == 0x000028, "Member 'FCameraTrackingFocusSettings::RelativeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraFocusSettings \ +static_assert(alignof(FCameraFocusSettings) == 0x000008, "Wrong alignment on FCameraFocusSettings"); \ +static_assert(sizeof(FCameraFocusSettings) == 0x000060, "Wrong size on FCameraFocusSettings"); \ +static_assert(offsetof(FCameraFocusSettings, FocusMethod) == 0x000000, "Member 'FCameraFocusSettings::FocusMethod' has a wrong offset!"); \ +static_assert(offsetof(FCameraFocusSettings, ManualFocusDistance) == 0x000004, "Member 'FCameraFocusSettings::ManualFocusDistance' has a wrong offset!"); \ +static_assert(offsetof(FCameraFocusSettings, TrackingFocusSettings) == 0x000008, "Member 'FCameraFocusSettings::TrackingFocusSettings' has a wrong offset!"); \ +static_assert(offsetof(FCameraFocusSettings, FocusSmoothingInterpSpeed) == 0x000054, "Member 'FCameraFocusSettings::FocusSmoothingInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(FCameraFocusSettings, FocusOffset) == 0x000058, "Member 'FCameraFocusSettings::FocusOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACameraRig_Crane \ +static_assert(alignof(ACameraRig_Crane) == 0x000008, "Wrong alignment on ACameraRig_Crane"); \ +static_assert(sizeof(ACameraRig_Crane) == 0x0002C8, "Wrong size on ACameraRig_Crane"); \ +static_assert(offsetof(ACameraRig_Crane, CranePitch) == 0x000298, "Member 'ACameraRig_Crane::CranePitch' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, CraneYaw) == 0x00029C, "Member 'ACameraRig_Crane::CraneYaw' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, CraneArmLength) == 0x0002A0, "Member 'ACameraRig_Crane::CraneArmLength' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, bLockMountPitch) == 0x0002A4, "Member 'ACameraRig_Crane::bLockMountPitch' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, bLockMountYaw) == 0x0002A5, "Member 'ACameraRig_Crane::bLockMountYaw' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, TransformComponent) == 0x0002A8, "Member 'ACameraRig_Crane::TransformComponent' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, CraneYawControl) == 0x0002B0, "Member 'ACameraRig_Crane::CraneYawControl' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, CranePitchControl) == 0x0002B8, "Member 'ACameraRig_Crane::CranePitchControl' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Crane, CraneCameraMount) == 0x0002C0, "Member 'ACameraRig_Crane::CraneCameraMount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraRig_Rail_GetRailSplineComponent \ +static_assert(alignof(CameraRig_Rail_GetRailSplineComponent) == 0x000008, "Wrong alignment on CameraRig_Rail_GetRailSplineComponent"); \ +static_assert(sizeof(CameraRig_Rail_GetRailSplineComponent) == 0x000008, "Wrong size on CameraRig_Rail_GetRailSplineComponent"); \ +static_assert(offsetof(CameraRig_Rail_GetRailSplineComponent, ReturnValue) == 0x000000, "Member 'CameraRig_Rail_GetRailSplineComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACameraRig_Rail \ +static_assert(alignof(ACameraRig_Rail) == 0x000008, "Wrong alignment on ACameraRig_Rail"); \ +static_assert(sizeof(ACameraRig_Rail) == 0x0002B8, "Wrong size on ACameraRig_Rail"); \ +static_assert(offsetof(ACameraRig_Rail, CurrentPositionOnRail) == 0x000298, "Member 'ACameraRig_Rail::CurrentPositionOnRail' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Rail, bLockOrientationToRail) == 0x00029C, "Member 'ACameraRig_Rail::bLockOrientationToRail' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Rail, TransformComponent) == 0x0002A0, "Member 'ACameraRig_Rail::TransformComponent' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Rail, RailSplineComponent) == 0x0002A8, "Member 'ACameraRig_Rail::RailSplineComponent' has a wrong offset!"); \ +static_assert(offsetof(ACameraRig_Rail, RailCameraMount) == 0x0002B0, "Member 'ACameraRig_Rail::RailCameraMount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraActor_GetCineCameraComponent \ +static_assert(alignof(CineCameraActor_GetCineCameraComponent) == 0x000008, "Wrong alignment on CineCameraActor_GetCineCameraComponent"); \ +static_assert(sizeof(CineCameraActor_GetCineCameraComponent) == 0x000008, "Wrong size on CineCameraActor_GetCineCameraComponent"); \ +static_assert(offsetof(CineCameraActor_GetCineCameraComponent, ReturnValue) == 0x000000, "Member 'CineCameraActor_GetCineCameraComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ACineCameraActor \ +static_assert(alignof(ACineCameraActor) == 0x000010, "Wrong alignment on ACineCameraActor"); \ +static_assert(sizeof(ACineCameraActor) == 0x000A30, "Wrong size on ACineCameraActor"); \ +static_assert(offsetof(ACineCameraActor, LookatTrackingSettings) == 0x0009B0, "Member 'ACineCameraActor::LookatTrackingSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetFilmbackPresetsCopy \ +static_assert(alignof(CineCameraComponent_GetFilmbackPresetsCopy) == 0x000008, "Wrong alignment on CineCameraComponent_GetFilmbackPresetsCopy"); \ +static_assert(sizeof(CineCameraComponent_GetFilmbackPresetsCopy) == 0x000010, "Wrong size on CineCameraComponent_GetFilmbackPresetsCopy"); \ +static_assert(offsetof(CineCameraComponent_GetFilmbackPresetsCopy, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetFilmbackPresetsCopy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetLensPresetsCopy \ +static_assert(alignof(CineCameraComponent_GetLensPresetsCopy) == 0x000008, "Wrong alignment on CineCameraComponent_GetLensPresetsCopy"); \ +static_assert(sizeof(CineCameraComponent_GetLensPresetsCopy) == 0x000010, "Wrong size on CineCameraComponent_GetLensPresetsCopy"); \ +static_assert(offsetof(CineCameraComponent_GetLensPresetsCopy, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetLensPresetsCopy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetCropPresetByName \ +static_assert(alignof(CineCameraComponent_SetCropPresetByName) == 0x000008, "Wrong alignment on CineCameraComponent_SetCropPresetByName"); \ +static_assert(sizeof(CineCameraComponent_SetCropPresetByName) == 0x000010, "Wrong size on CineCameraComponent_SetCropPresetByName"); \ +static_assert(offsetof(CineCameraComponent_SetCropPresetByName, InPresetName) == 0x000000, "Member 'CineCameraComponent_SetCropPresetByName::InPresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetCropSettings \ +static_assert(alignof(CineCameraComponent_SetCropSettings) == 0x000004, "Wrong alignment on CineCameraComponent_SetCropSettings"); \ +static_assert(sizeof(CineCameraComponent_SetCropSettings) == 0x000004, "Wrong size on CineCameraComponent_SetCropSettings"); \ +static_assert(offsetof(CineCameraComponent_SetCropSettings, NewCropSettings) == 0x000000, "Member 'CineCameraComponent_SetCropSettings::NewCropSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetCurrentAperture \ +static_assert(alignof(CineCameraComponent_SetCurrentAperture) == 0x000004, "Wrong alignment on CineCameraComponent_SetCurrentAperture"); \ +static_assert(sizeof(CineCameraComponent_SetCurrentAperture) == 0x000004, "Wrong size on CineCameraComponent_SetCurrentAperture"); \ +static_assert(offsetof(CineCameraComponent_SetCurrentAperture, NewCurrentAperture) == 0x000000, "Member 'CineCameraComponent_SetCurrentAperture::NewCurrentAperture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetCurrentFocalLength \ +static_assert(alignof(CineCameraComponent_SetCurrentFocalLength) == 0x000004, "Wrong alignment on CineCameraComponent_SetCurrentFocalLength"); \ +static_assert(sizeof(CineCameraComponent_SetCurrentFocalLength) == 0x000004, "Wrong size on CineCameraComponent_SetCurrentFocalLength"); \ +static_assert(offsetof(CineCameraComponent_SetCurrentFocalLength, InFocalLength) == 0x000000, "Member 'CineCameraComponent_SetCurrentFocalLength::InFocalLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetCustomNearClippingPlane \ +static_assert(alignof(CineCameraComponent_SetCustomNearClippingPlane) == 0x000004, "Wrong alignment on CineCameraComponent_SetCustomNearClippingPlane"); \ +static_assert(sizeof(CineCameraComponent_SetCustomNearClippingPlane) == 0x000004, "Wrong size on CineCameraComponent_SetCustomNearClippingPlane"); \ +static_assert(offsetof(CineCameraComponent_SetCustomNearClippingPlane, NewCustomNearClippingPlane) == 0x000000, "Member 'CineCameraComponent_SetCustomNearClippingPlane::NewCustomNearClippingPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetFilmback \ +static_assert(alignof(CineCameraComponent_SetFilmback) == 0x000004, "Wrong alignment on CineCameraComponent_SetFilmback"); \ +static_assert(sizeof(CineCameraComponent_SetFilmback) == 0x00000C, "Wrong size on CineCameraComponent_SetFilmback"); \ +static_assert(offsetof(CineCameraComponent_SetFilmback, NewFilmback) == 0x000000, "Member 'CineCameraComponent_SetFilmback::NewFilmback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetFilmbackPresetByName \ +static_assert(alignof(CineCameraComponent_SetFilmbackPresetByName) == 0x000008, "Wrong alignment on CineCameraComponent_SetFilmbackPresetByName"); \ +static_assert(sizeof(CineCameraComponent_SetFilmbackPresetByName) == 0x000010, "Wrong size on CineCameraComponent_SetFilmbackPresetByName"); \ +static_assert(offsetof(CineCameraComponent_SetFilmbackPresetByName, InPresetName) == 0x000000, "Member 'CineCameraComponent_SetFilmbackPresetByName::InPresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetFocusSettings \ +static_assert(alignof(CineCameraComponent_SetFocusSettings) == 0x000008, "Wrong alignment on CineCameraComponent_SetFocusSettings"); \ +static_assert(sizeof(CineCameraComponent_SetFocusSettings) == 0x000060, "Wrong size on CineCameraComponent_SetFocusSettings"); \ +static_assert(offsetof(CineCameraComponent_SetFocusSettings, NewFocusSettings) == 0x000000, "Member 'CineCameraComponent_SetFocusSettings::NewFocusSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetLensPresetByName \ +static_assert(alignof(CineCameraComponent_SetLensPresetByName) == 0x000008, "Wrong alignment on CineCameraComponent_SetLensPresetByName"); \ +static_assert(sizeof(CineCameraComponent_SetLensPresetByName) == 0x000010, "Wrong size on CineCameraComponent_SetLensPresetByName"); \ +static_assert(offsetof(CineCameraComponent_SetLensPresetByName, InPresetName) == 0x000000, "Member 'CineCameraComponent_SetLensPresetByName::InPresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_SetLensSettings \ +static_assert(alignof(CineCameraComponent_SetLensSettings) == 0x000004, "Wrong alignment on CineCameraComponent_SetLensSettings"); \ +static_assert(sizeof(CineCameraComponent_SetLensSettings) == 0x00001C, "Wrong size on CineCameraComponent_SetLensSettings"); \ +static_assert(offsetof(CineCameraComponent_SetLensSettings, NewLensSettings) == 0x000000, "Member 'CineCameraComponent_SetLensSettings::NewLensSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetCropPresetName \ +static_assert(alignof(CineCameraComponent_GetCropPresetName) == 0x000008, "Wrong alignment on CineCameraComponent_GetCropPresetName"); \ +static_assert(sizeof(CineCameraComponent_GetCropPresetName) == 0x000010, "Wrong size on CineCameraComponent_GetCropPresetName"); \ +static_assert(offsetof(CineCameraComponent_GetCropPresetName, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetCropPresetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetDefaultFilmbackPresetName \ +static_assert(alignof(CineCameraComponent_GetDefaultFilmbackPresetName) == 0x000008, "Wrong alignment on CineCameraComponent_GetDefaultFilmbackPresetName"); \ +static_assert(sizeof(CineCameraComponent_GetDefaultFilmbackPresetName) == 0x000010, "Wrong size on CineCameraComponent_GetDefaultFilmbackPresetName"); \ +static_assert(offsetof(CineCameraComponent_GetDefaultFilmbackPresetName, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetDefaultFilmbackPresetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetFilmbackPresetName \ +static_assert(alignof(CineCameraComponent_GetFilmbackPresetName) == 0x000008, "Wrong alignment on CineCameraComponent_GetFilmbackPresetName"); \ +static_assert(sizeof(CineCameraComponent_GetFilmbackPresetName) == 0x000010, "Wrong size on CineCameraComponent_GetFilmbackPresetName"); \ +static_assert(offsetof(CineCameraComponent_GetFilmbackPresetName, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetFilmbackPresetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetHorizontalFieldOfView \ +static_assert(alignof(CineCameraComponent_GetHorizontalFieldOfView) == 0x000004, "Wrong alignment on CineCameraComponent_GetHorizontalFieldOfView"); \ +static_assert(sizeof(CineCameraComponent_GetHorizontalFieldOfView) == 0x000004, "Wrong size on CineCameraComponent_GetHorizontalFieldOfView"); \ +static_assert(offsetof(CineCameraComponent_GetHorizontalFieldOfView, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetHorizontalFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetLensPresetName \ +static_assert(alignof(CineCameraComponent_GetLensPresetName) == 0x000008, "Wrong alignment on CineCameraComponent_GetLensPresetName"); \ +static_assert(sizeof(CineCameraComponent_GetLensPresetName) == 0x000010, "Wrong size on CineCameraComponent_GetLensPresetName"); \ +static_assert(offsetof(CineCameraComponent_GetLensPresetName, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetLensPresetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraComponent_GetVerticalFieldOfView \ +static_assert(alignof(CineCameraComponent_GetVerticalFieldOfView) == 0x000004, "Wrong alignment on CineCameraComponent_GetVerticalFieldOfView"); \ +static_assert(sizeof(CineCameraComponent_GetVerticalFieldOfView) == 0x000004, "Wrong size on CineCameraComponent_GetVerticalFieldOfView"); \ +static_assert(offsetof(CineCameraComponent_GetVerticalFieldOfView, ReturnValue) == 0x000000, "Member 'CineCameraComponent_GetVerticalFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCineCameraComponent \ +static_assert(alignof(UCineCameraComponent) == 0x000010, "Wrong alignment on UCineCameraComponent"); \ +static_assert(sizeof(UCineCameraComponent) == 0x000B50, "Wrong size on UCineCameraComponent"); \ +static_assert(offsetof(UCineCameraComponent, FilmbackSettings) == 0x000A40, "Member 'UCineCameraComponent::FilmbackSettings' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, Filmback) == 0x000A4C, "Member 'UCineCameraComponent::Filmback' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, LensSettings) == 0x000A58, "Member 'UCineCameraComponent::LensSettings' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, FocusSettings) == 0x000A78, "Member 'UCineCameraComponent::FocusSettings' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, CropSettings) == 0x000AD8, "Member 'UCineCameraComponent::CropSettings' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, CurrentFocalLength) == 0x000ADC, "Member 'UCineCameraComponent::CurrentFocalLength' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, CurrentAperture) == 0x000AE0, "Member 'UCineCameraComponent::CurrentAperture' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, CurrentFocusDistance) == 0x000AE4, "Member 'UCineCameraComponent::CurrentFocusDistance' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, CustomNearClippingPlane) == 0x000AEC, "Member 'UCineCameraComponent::CustomNearClippingPlane' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, FilmbackPresets) == 0x000AF8, "Member 'UCineCameraComponent::FilmbackPresets' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, LensPresets) == 0x000B08, "Member 'UCineCameraComponent::LensPresets' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, DefaultFilmbackPresetName) == 0x000B18, "Member 'UCineCameraComponent::DefaultFilmbackPresetName' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, DefaultFilmbackPreset) == 0x000B28, "Member 'UCineCameraComponent::DefaultFilmbackPreset' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, DefaultLensPresetName) == 0x000B38, "Member 'UCineCameraComponent::DefaultLensPresetName' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, DefaultLensFocalLength) == 0x000B48, "Member 'UCineCameraComponent::DefaultLensFocalLength' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraComponent, DefaultLensFStop) == 0x000B4C, "Member 'UCineCameraComponent::DefaultLensFStop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetCineCameraSettings \ +static_assert(alignof(CineCameraSettings_GetCineCameraSettings) == 0x000008, "Wrong alignment on CineCameraSettings_GetCineCameraSettings"); \ +static_assert(sizeof(CineCameraSettings_GetCineCameraSettings) == 0x000008, "Wrong size on CineCameraSettings_GetCineCameraSettings"); \ +static_assert(offsetof(CineCameraSettings_GetCineCameraSettings, ReturnValue) == 0x000000, "Member 'CineCameraSettings_GetCineCameraSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetCropPresetByName \ +static_assert(alignof(CineCameraSettings_GetCropPresetByName) == 0x000008, "Wrong alignment on CineCameraSettings_GetCropPresetByName"); \ +static_assert(sizeof(CineCameraSettings_GetCropPresetByName) == 0x000018, "Wrong size on CineCameraSettings_GetCropPresetByName"); \ +static_assert(offsetof(CineCameraSettings_GetCropPresetByName, PresetName) == 0x000000, "Member 'CineCameraSettings_GetCropPresetByName::PresetName' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetCropPresetByName, CropSettings) == 0x000010, "Member 'CineCameraSettings_GetCropPresetByName::CropSettings' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetCropPresetByName, ReturnValue) == 0x000014, "Member 'CineCameraSettings_GetCropPresetByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetFilmbackPresetByName \ +static_assert(alignof(CineCameraSettings_GetFilmbackPresetByName) == 0x000008, "Wrong alignment on CineCameraSettings_GetFilmbackPresetByName"); \ +static_assert(sizeof(CineCameraSettings_GetFilmbackPresetByName) == 0x000020, "Wrong size on CineCameraSettings_GetFilmbackPresetByName"); \ +static_assert(offsetof(CineCameraSettings_GetFilmbackPresetByName, PresetName) == 0x000000, "Member 'CineCameraSettings_GetFilmbackPresetByName::PresetName' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetFilmbackPresetByName, FilmbackSettings) == 0x000010, "Member 'CineCameraSettings_GetFilmbackPresetByName::FilmbackSettings' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetFilmbackPresetByName, ReturnValue) == 0x00001C, "Member 'CineCameraSettings_GetFilmbackPresetByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetLensPresetByName \ +static_assert(alignof(CineCameraSettings_GetLensPresetByName) == 0x000008, "Wrong alignment on CineCameraSettings_GetLensPresetByName"); \ +static_assert(sizeof(CineCameraSettings_GetLensPresetByName) == 0x000030, "Wrong size on CineCameraSettings_GetLensPresetByName"); \ +static_assert(offsetof(CineCameraSettings_GetLensPresetByName, PresetName) == 0x000000, "Member 'CineCameraSettings_GetLensPresetByName::PresetName' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetLensPresetByName, LensSettings) == 0x000010, "Member 'CineCameraSettings_GetLensPresetByName::LensSettings' has a wrong offset!"); \ +static_assert(offsetof(CineCameraSettings_GetLensPresetByName, ReturnValue) == 0x00002C, "Member 'CineCameraSettings_GetLensPresetByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetCropPresets \ +static_assert(alignof(CineCameraSettings_SetCropPresets) == 0x000008, "Wrong alignment on CineCameraSettings_SetCropPresets"); \ +static_assert(sizeof(CineCameraSettings_SetCropPresets) == 0x000010, "Wrong size on CineCameraSettings_SetCropPresets"); \ +static_assert(offsetof(CineCameraSettings_SetCropPresets, InCropPresets) == 0x000000, "Member 'CineCameraSettings_SetCropPresets::InCropPresets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetDefaultCropPresetName \ +static_assert(alignof(CineCameraSettings_SetDefaultCropPresetName) == 0x000008, "Wrong alignment on CineCameraSettings_SetDefaultCropPresetName"); \ +static_assert(sizeof(CineCameraSettings_SetDefaultCropPresetName) == 0x000010, "Wrong size on CineCameraSettings_SetDefaultCropPresetName"); \ +static_assert(offsetof(CineCameraSettings_SetDefaultCropPresetName, InDefaultCropPresetName) == 0x000000, "Member 'CineCameraSettings_SetDefaultCropPresetName::InDefaultCropPresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetDefaultFilmbackPreset \ +static_assert(alignof(CineCameraSettings_SetDefaultFilmbackPreset) == 0x000008, "Wrong alignment on CineCameraSettings_SetDefaultFilmbackPreset"); \ +static_assert(sizeof(CineCameraSettings_SetDefaultFilmbackPreset) == 0x000010, "Wrong size on CineCameraSettings_SetDefaultFilmbackPreset"); \ +static_assert(offsetof(CineCameraSettings_SetDefaultFilmbackPreset, InDefaultFilmbackPreset) == 0x000000, "Member 'CineCameraSettings_SetDefaultFilmbackPreset::InDefaultFilmbackPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetDefaultLensFocalLength \ +static_assert(alignof(CineCameraSettings_SetDefaultLensFocalLength) == 0x000004, "Wrong alignment on CineCameraSettings_SetDefaultLensFocalLength"); \ +static_assert(sizeof(CineCameraSettings_SetDefaultLensFocalLength) == 0x000004, "Wrong size on CineCameraSettings_SetDefaultLensFocalLength"); \ +static_assert(offsetof(CineCameraSettings_SetDefaultLensFocalLength, InDefaultLensFocalLength) == 0x000000, "Member 'CineCameraSettings_SetDefaultLensFocalLength::InDefaultLensFocalLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetDefaultLensFStop \ +static_assert(alignof(CineCameraSettings_SetDefaultLensFStop) == 0x000004, "Wrong alignment on CineCameraSettings_SetDefaultLensFStop"); \ +static_assert(sizeof(CineCameraSettings_SetDefaultLensFStop) == 0x000004, "Wrong size on CineCameraSettings_SetDefaultLensFStop"); \ +static_assert(offsetof(CineCameraSettings_SetDefaultLensFStop, InDefaultLensFStop) == 0x000000, "Member 'CineCameraSettings_SetDefaultLensFStop::InDefaultLensFStop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetDefaultLensPresetName \ +static_assert(alignof(CineCameraSettings_SetDefaultLensPresetName) == 0x000008, "Wrong alignment on CineCameraSettings_SetDefaultLensPresetName"); \ +static_assert(sizeof(CineCameraSettings_SetDefaultLensPresetName) == 0x000010, "Wrong size on CineCameraSettings_SetDefaultLensPresetName"); \ +static_assert(offsetof(CineCameraSettings_SetDefaultLensPresetName, InDefaultLensPresetName) == 0x000000, "Member 'CineCameraSettings_SetDefaultLensPresetName::InDefaultLensPresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetFilmbackPresets \ +static_assert(alignof(CineCameraSettings_SetFilmbackPresets) == 0x000008, "Wrong alignment on CineCameraSettings_SetFilmbackPresets"); \ +static_assert(sizeof(CineCameraSettings_SetFilmbackPresets) == 0x000010, "Wrong size on CineCameraSettings_SetFilmbackPresets"); \ +static_assert(offsetof(CineCameraSettings_SetFilmbackPresets, InFilmbackPresets) == 0x000000, "Member 'CineCameraSettings_SetFilmbackPresets::InFilmbackPresets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_SetLensPresets \ +static_assert(alignof(CineCameraSettings_SetLensPresets) == 0x000008, "Wrong alignment on CineCameraSettings_SetLensPresets"); \ +static_assert(sizeof(CineCameraSettings_SetLensPresets) == 0x000010, "Wrong size on CineCameraSettings_SetLensPresets"); \ +static_assert(offsetof(CineCameraSettings_SetLensPresets, InLensPresets) == 0x000000, "Member 'CineCameraSettings_SetLensPresets::InLensPresets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetCropPresetNames \ +static_assert(alignof(CineCameraSettings_GetCropPresetNames) == 0x000008, "Wrong alignment on CineCameraSettings_GetCropPresetNames"); \ +static_assert(sizeof(CineCameraSettings_GetCropPresetNames) == 0x000010, "Wrong size on CineCameraSettings_GetCropPresetNames"); \ +static_assert(offsetof(CineCameraSettings_GetCropPresetNames, ReturnValue) == 0x000000, "Member 'CineCameraSettings_GetCropPresetNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetFilmbackPresetNames \ +static_assert(alignof(CineCameraSettings_GetFilmbackPresetNames) == 0x000008, "Wrong alignment on CineCameraSettings_GetFilmbackPresetNames"); \ +static_assert(sizeof(CineCameraSettings_GetFilmbackPresetNames) == 0x000010, "Wrong size on CineCameraSettings_GetFilmbackPresetNames"); \ +static_assert(offsetof(CineCameraSettings_GetFilmbackPresetNames, ReturnValue) == 0x000000, "Member 'CineCameraSettings_GetFilmbackPresetNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CineCameraSettings_GetLensPresetNames \ +static_assert(alignof(CineCameraSettings_GetLensPresetNames) == 0x000008, "Wrong alignment on CineCameraSettings_GetLensPresetNames"); \ +static_assert(sizeof(CineCameraSettings_GetLensPresetNames) == 0x000010, "Wrong size on CineCameraSettings_GetLensPresetNames"); \ +static_assert(offsetof(CineCameraSettings_GetLensPresetNames, ReturnValue) == 0x000000, "Member 'CineCameraSettings_GetLensPresetNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCineCameraSettings \ +static_assert(alignof(UCineCameraSettings) == 0x000008, "Wrong alignment on UCineCameraSettings"); \ +static_assert(sizeof(UCineCameraSettings) == 0x0000B0, "Wrong size on UCineCameraSettings"); \ +static_assert(offsetof(UCineCameraSettings, DefaultLensPresetName) == 0x000038, "Member 'UCineCameraSettings::DefaultLensPresetName' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, DefaultLensFocalLength) == 0x000048, "Member 'UCineCameraSettings::DefaultLensFocalLength' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, DefaultLensFStop) == 0x00004C, "Member 'UCineCameraSettings::DefaultLensFStop' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, LensPresets) == 0x000050, "Member 'UCineCameraSettings::LensPresets' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, DefaultFilmbackPreset) == 0x000060, "Member 'UCineCameraSettings::DefaultFilmbackPreset' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, FilmbackPresets) == 0x000070, "Member 'UCineCameraSettings::FilmbackPresets' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, DefaultCropPresetName) == 0x000080, "Member 'UCineCameraSettings::DefaultCropPresetName' has a wrong offset!"); \ +static_assert(offsetof(UCineCameraSettings, CropPresets) == 0x000090, "Member 'UCineCameraSettings::CropPresets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent \ +static_assert(alignof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent) == 0x000008, "Wrong alignment on CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent"); \ +static_assert(sizeof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent) == 0x000078, "Wrong size on CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, EntryPoint) == 0x000000, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, K2Node_Event_InAutomata) == 0x000010, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, K2Node_Event_InState) == 0x000018, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000020, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000028, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000038, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_Array_IsEmpty_ReturnValue) == 0x000040, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x000048, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue_4) == 0x000050, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_GetWorldSubsystem_ReturnValue_5) == 0x000058, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_GetWorldSubsystem_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000060, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x000070, "Member 'CheckEnemiesPresent_C_ExecuteUbergraph_CheckEnemiesPresent::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesPresent_C_ReceiveExecute \ +static_assert(alignof(CheckEnemiesPresent_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckEnemiesPresent_C_ReceiveExecute"); \ +static_assert(sizeof(CheckEnemiesPresent_C_ReceiveExecute) == 0x000010, "Wrong size on CheckEnemiesPresent_C_ReceiveExecute"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckEnemiesPresent_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesPresent_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckEnemiesPresent_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckEnemiesPresent_C \ +static_assert(alignof(UCheckEnemiesPresent_C) == 0x000008, "Wrong alignment on UCheckEnemiesPresent_C"); \ +static_assert(sizeof(UCheckEnemiesPresent_C) == 0x0000A0, "Wrong size on UCheckEnemiesPresent_C"); \ +static_assert(offsetof(UCheckEnemiesPresent_C, UberGraphFrame) == 0x000088, "Member 'UCheckEnemiesPresent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesPresent_C, Check_For_All_Enemies_Alive) == 0x000090, "Member 'UCheckEnemiesPresent_C::Check_For_All_Enemies_Alive' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesPresent_C, Check_For_All_Enemies_Alive_With_TAg) == 0x000091, "Member 'UCheckEnemiesPresent_C::Check_For_All_Enemies_Alive_With_TAg' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesPresent_C, Enemy_Tag) == 0x000094, "Member 'UCheckEnemiesPresent_C::Enemy_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioLinkBlueprintInterface_PlayLink \ +static_assert(alignof(AudioLinkBlueprintInterface_PlayLink) == 0x000004, "Wrong alignment on AudioLinkBlueprintInterface_PlayLink"); \ +static_assert(sizeof(AudioLinkBlueprintInterface_PlayLink) == 0x000004, "Wrong size on AudioLinkBlueprintInterface_PlayLink"); \ +static_assert(offsetof(AudioLinkBlueprintInterface_PlayLink, StartTime) == 0x000000, "Member 'AudioLinkBlueprintInterface_PlayLink::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioLinkBlueprintInterface_SetLinkSound \ +static_assert(alignof(AudioLinkBlueprintInterface_SetLinkSound) == 0x000008, "Wrong alignment on AudioLinkBlueprintInterface_SetLinkSound"); \ +static_assert(sizeof(AudioLinkBlueprintInterface_SetLinkSound) == 0x000008, "Wrong size on AudioLinkBlueprintInterface_SetLinkSound"); \ +static_assert(offsetof(AudioLinkBlueprintInterface_SetLinkSound, NewSound) == 0x000000, "Member 'AudioLinkBlueprintInterface_SetLinkSound::NewSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioLinkBlueprintInterface_IsLinkPlaying \ +static_assert(alignof(AudioLinkBlueprintInterface_IsLinkPlaying) == 0x000001, "Wrong alignment on AudioLinkBlueprintInterface_IsLinkPlaying"); \ +static_assert(sizeof(AudioLinkBlueprintInterface_IsLinkPlaying) == 0x000001, "Wrong size on AudioLinkBlueprintInterface_IsLinkPlaying"); \ +static_assert(offsetof(AudioLinkBlueprintInterface_IsLinkPlaying, ReturnValue) == 0x000000, "Member 'AudioLinkBlueprintInterface_IsLinkPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAudioLinkBlueprintInterface \ +static_assert(alignof(IAudioLinkBlueprintInterface) == 0x000001, "Wrong alignment on IAudioLinkBlueprintInterface"); \ +static_assert(sizeof(IAudioLinkBlueprintInterface) == 0x000001, "Wrong size on IAudioLinkBlueprintInterface"); \ + +#define DUMPER7_ASSERTS_FAudioOutputDeviceInfo \ +static_assert(alignof(FAudioOutputDeviceInfo) == 0x000008, "Wrong alignment on FAudioOutputDeviceInfo"); \ +static_assert(sizeof(FAudioOutputDeviceInfo) == 0x000048, "Wrong size on FAudioOutputDeviceInfo"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, Name) == 0x000000, "Member 'FAudioOutputDeviceInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, DeviceID) == 0x000010, "Member 'FAudioOutputDeviceInfo::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, NumChannels) == 0x000020, "Member 'FAudioOutputDeviceInfo::NumChannels' has a wrong offset!"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, SampleRate) == 0x000024, "Member 'FAudioOutputDeviceInfo::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, Format) == 0x000028, "Member 'FAudioOutputDeviceInfo::Format' has a wrong offset!"); \ +static_assert(offsetof(FAudioOutputDeviceInfo, OutputChannelArray) == 0x000030, "Member 'FAudioOutputDeviceInfo::OutputChannelArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectEQBand \ +static_assert(alignof(FSubmixEffectEQBand) == 0x000004, "Wrong alignment on FSubmixEffectEQBand"); \ +static_assert(sizeof(FSubmixEffectEQBand) == 0x000010, "Wrong size on FSubmixEffectEQBand"); \ +static_assert(offsetof(FSubmixEffectEQBand, Frequency) == 0x000000, "Member 'FSubmixEffectEQBand::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectEQBand, Bandwidth) == 0x000004, "Member 'FSubmixEffectEQBand::Bandwidth' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectEQBand, GainDb) == 0x000008, "Member 'FSubmixEffectEQBand::GainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSwapAudioOutputResult \ +static_assert(alignof(FSwapAudioOutputResult) == 0x000008, "Wrong alignment on FSwapAudioOutputResult"); \ +static_assert(sizeof(FSwapAudioOutputResult) == 0x000028, "Wrong size on FSwapAudioOutputResult"); \ +static_assert(offsetof(FSwapAudioOutputResult, CurrentDeviceId) == 0x000000, "Member 'FSwapAudioOutputResult::CurrentDeviceId' has a wrong offset!"); \ +static_assert(offsetof(FSwapAudioOutputResult, RequestedDeviceId) == 0x000010, "Member 'FSwapAudioOutputResult::RequestedDeviceId' has a wrong offset!"); \ +static_assert(offsetof(FSwapAudioOutputResult, Result) == 0x000020, "Member 'FSwapAudioOutputResult::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectDynamicProcessorFilterSettings \ +static_assert(alignof(FSubmixEffectDynamicProcessorFilterSettings) == 0x000004, "Wrong alignment on FSubmixEffectDynamicProcessorFilterSettings"); \ +static_assert(sizeof(FSubmixEffectDynamicProcessorFilterSettings) == 0x00000C, "Wrong size on FSubmixEffectDynamicProcessorFilterSettings"); \ +static_assert(offsetof(FSubmixEffectDynamicProcessorFilterSettings, Cutoff) == 0x000004, "Member 'FSubmixEffectDynamicProcessorFilterSettings::Cutoff' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicProcessorFilterSettings, GainDb) == 0x000008, "Member 'FSubmixEffectDynamicProcessorFilterSettings::GainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectDynamicsProcessorSettings \ +static_assert(alignof(FSubmixEffectDynamicsProcessorSettings) == 0x000008, "Wrong alignment on FSubmixEffectDynamicsProcessorSettings"); \ +static_assert(sizeof(FSubmixEffectDynamicsProcessorSettings) == 0x000060, "Wrong size on FSubmixEffectDynamicsProcessorSettings"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, DynamicsProcessorType) == 0x000000, "Member 'FSubmixEffectDynamicsProcessorSettings::DynamicsProcessorType' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, PeakMode) == 0x000001, "Member 'FSubmixEffectDynamicsProcessorSettings::PeakMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, LinkMode) == 0x000002, "Member 'FSubmixEffectDynamicsProcessorSettings::LinkMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, InputGainDb) == 0x000004, "Member 'FSubmixEffectDynamicsProcessorSettings::InputGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, ThresholdDb) == 0x000008, "Member 'FSubmixEffectDynamicsProcessorSettings::ThresholdDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, Ratio) == 0x00000C, "Member 'FSubmixEffectDynamicsProcessorSettings::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, KneeBandwidthDb) == 0x000010, "Member 'FSubmixEffectDynamicsProcessorSettings::KneeBandwidthDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, LookAheadMsec) == 0x000014, "Member 'FSubmixEffectDynamicsProcessorSettings::LookAheadMsec' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, AttackTimeMsec) == 0x000018, "Member 'FSubmixEffectDynamicsProcessorSettings::AttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, ReleaseTimeMsec) == 0x00001C, "Member 'FSubmixEffectDynamicsProcessorSettings::ReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, KeySource) == 0x000020, "Member 'FSubmixEffectDynamicsProcessorSettings::KeySource' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, ExternalAudioBus) == 0x000028, "Member 'FSubmixEffectDynamicsProcessorSettings::ExternalAudioBus' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, ExternalSubmix) == 0x000030, "Member 'FSubmixEffectDynamicsProcessorSettings::ExternalSubmix' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, KeyGainDb) == 0x00003C, "Member 'FSubmixEffectDynamicsProcessorSettings::KeyGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, OutputGainDb) == 0x000040, "Member 'FSubmixEffectDynamicsProcessorSettings::OutputGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, KeyHighshelf) == 0x000044, "Member 'FSubmixEffectDynamicsProcessorSettings::KeyHighshelf' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDynamicsProcessorSettings, KeyLowshelf) == 0x000050, "Member 'FSubmixEffectDynamicsProcessorSettings::KeyLowshelf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectSubmixEQSettings \ +static_assert(alignof(FSubmixEffectSubmixEQSettings) == 0x000008, "Wrong alignment on FSubmixEffectSubmixEQSettings"); \ +static_assert(sizeof(FSubmixEffectSubmixEQSettings) == 0x000010, "Wrong size on FSubmixEffectSubmixEQSettings"); \ +static_assert(offsetof(FSubmixEffectSubmixEQSettings, EQBands) == 0x000000, "Member 'FSubmixEffectSubmixEQSettings::EQBands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectReverbSettings \ +static_assert(alignof(FSubmixEffectReverbSettings) == 0x000004, "Wrong alignment on FSubmixEffectReverbSettings"); \ +static_assert(sizeof(FSubmixEffectReverbSettings) == 0x000040, "Wrong size on FSubmixEffectReverbSettings"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, bBypassEarlyReflections) == 0x000000, "Member 'FSubmixEffectReverbSettings::bBypassEarlyReflections' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, ReflectionsDelay) == 0x000004, "Member 'FSubmixEffectReverbSettings::ReflectionsDelay' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, GainHF) == 0x000008, "Member 'FSubmixEffectReverbSettings::GainHF' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, ReflectionsGain) == 0x00000C, "Member 'FSubmixEffectReverbSettings::ReflectionsGain' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, bBypassLateReflections) == 0x000010, "Member 'FSubmixEffectReverbSettings::bBypassLateReflections' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, LateDelay) == 0x000014, "Member 'FSubmixEffectReverbSettings::LateDelay' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, DecayTime) == 0x000018, "Member 'FSubmixEffectReverbSettings::DecayTime' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, Density) == 0x00001C, "Member 'FSubmixEffectReverbSettings::Density' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, Diffusion) == 0x000020, "Member 'FSubmixEffectReverbSettings::Diffusion' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, AirAbsorptionGainHF) == 0x000024, "Member 'FSubmixEffectReverbSettings::AirAbsorptionGainHF' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, DecayHFRatio) == 0x000028, "Member 'FSubmixEffectReverbSettings::DecayHFRatio' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, LateGain) == 0x00002C, "Member 'FSubmixEffectReverbSettings::LateGain' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, Gain) == 0x000030, "Member 'FSubmixEffectReverbSettings::Gain' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, WetLevel) == 0x000034, "Member 'FSubmixEffectReverbSettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, DryLevel) == 0x000038, "Member 'FSubmixEffectReverbSettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectReverbSettings, bBypass) == 0x00003C, "Member 'FSubmixEffectReverbSettings::bBypass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioBusSubsystem \ +static_assert(alignof(UAudioBusSubsystem) == 0x000008, "Wrong alignment on UAudioBusSubsystem"); \ +static_assert(sizeof(UAudioBusSubsystem) == 0x000090, "Wrong size on UAudioBusSubsystem"); \ + +#define DUMPER7_ASSERTS_UAudioDeviceNotificationSubsystem \ +static_assert(alignof(UAudioDeviceNotificationSubsystem) == 0x000008, "Wrong alignment on UAudioDeviceNotificationSubsystem"); \ +static_assert(sizeof(UAudioDeviceNotificationSubsystem) == 0x000128, "Wrong size on UAudioDeviceNotificationSubsystem"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DefaultCaptureDeviceChanged) == 0x000038, "Member 'UAudioDeviceNotificationSubsystem::DefaultCaptureDeviceChanged' has a wrong offset!"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DefaultRenderDeviceChanged) == 0x000060, "Member 'UAudioDeviceNotificationSubsystem::DefaultRenderDeviceChanged' has a wrong offset!"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DeviceAdded) == 0x000088, "Member 'UAudioDeviceNotificationSubsystem::DeviceAdded' has a wrong offset!"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DeviceRemoved) == 0x0000B0, "Member 'UAudioDeviceNotificationSubsystem::DeviceRemoved' has a wrong offset!"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DeviceStateChanged) == 0x0000D8, "Member 'UAudioDeviceNotificationSubsystem::DeviceStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UAudioDeviceNotificationSubsystem, DeviceSwitched) == 0x000100, "Member 'UAudioDeviceNotificationSubsystem::DeviceSwitched' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDynamicsProcessorPreset_SetAudioBus \ +static_assert(alignof(SubmixEffectDynamicsProcessorPreset_SetAudioBus) == 0x000008, "Wrong alignment on SubmixEffectDynamicsProcessorPreset_SetAudioBus"); \ +static_assert(sizeof(SubmixEffectDynamicsProcessorPreset_SetAudioBus) == 0x000008, "Wrong size on SubmixEffectDynamicsProcessorPreset_SetAudioBus"); \ +static_assert(offsetof(SubmixEffectDynamicsProcessorPreset_SetAudioBus, AudioBus) == 0x000000, "Member 'SubmixEffectDynamicsProcessorPreset_SetAudioBus::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDynamicsProcessorPreset_SetExternalSubmix \ +static_assert(alignof(SubmixEffectDynamicsProcessorPreset_SetExternalSubmix) == 0x000008, "Wrong alignment on SubmixEffectDynamicsProcessorPreset_SetExternalSubmix"); \ +static_assert(sizeof(SubmixEffectDynamicsProcessorPreset_SetExternalSubmix) == 0x000008, "Wrong size on SubmixEffectDynamicsProcessorPreset_SetExternalSubmix"); \ +static_assert(offsetof(SubmixEffectDynamicsProcessorPreset_SetExternalSubmix, Submix) == 0x000000, "Member 'SubmixEffectDynamicsProcessorPreset_SetExternalSubmix::Submix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDynamicsProcessorPreset_SetSettings \ +static_assert(alignof(SubmixEffectDynamicsProcessorPreset_SetSettings) == 0x000008, "Wrong alignment on SubmixEffectDynamicsProcessorPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectDynamicsProcessorPreset_SetSettings) == 0x000060, "Wrong size on SubmixEffectDynamicsProcessorPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectDynamicsProcessorPreset_SetSettings, Settings_0) == 0x000000, "Member 'SubmixEffectDynamicsProcessorPreset_SetSettings::Settings_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectDynamicsProcessorPreset \ +static_assert(alignof(USubmixEffectDynamicsProcessorPreset) == 0x000008, "Wrong alignment on USubmixEffectDynamicsProcessorPreset"); \ +static_assert(sizeof(USubmixEffectDynamicsProcessorPreset) == 0x000150, "Wrong size on USubmixEffectDynamicsProcessorPreset"); \ +static_assert(offsetof(USubmixEffectDynamicsProcessorPreset, Settings) == 0x0000F0, "Member 'USubmixEffectDynamicsProcessorPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_AddMasterSubmixEffect \ +static_assert(alignof(AudioMixerBlueprintLibrary_AddMasterSubmixEffect) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_AddMasterSubmixEffect"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_AddMasterSubmixEffect) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_AddMasterSubmixEffect"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddMasterSubmixEffect, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_AddMasterSubmixEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddMasterSubmixEffect, SubmixEffectPreset) == 0x000008, "Member 'AudioMixerBlueprintLibrary_AddMasterSubmixEffect::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain \ +static_assert(alignof(AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain, PresetChain) == 0x000008, "Member 'AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain::PresetChain' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain, Entry) == 0x000010, "Member 'AudioMixerBlueprintLibrary_AddSourceEffectToPresetChain::Entry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_AddSubmixEffect \ +static_assert(alignof(AudioMixerBlueprintLibrary_AddSubmixEffect) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_AddSubmixEffect"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_AddSubmixEffect) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_AddSubmixEffect"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSubmixEffect, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_AddSubmixEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSubmixEffect, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_AddSubmixEffect::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSubmixEffect, SubmixEffectPreset) == 0x000010, "Member 'AudioMixerBlueprintLibrary_AddSubmixEffect::SubmixEffectPreset' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_AddSubmixEffect, ReturnValue) == 0x000018, "Member 'AudioMixerBlueprintLibrary_AddSubmixEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ClearMasterSubmixEffects \ +static_assert(alignof(AudioMixerBlueprintLibrary_ClearMasterSubmixEffects) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ClearMasterSubmixEffects"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ClearMasterSubmixEffects) == 0x000008, "Wrong size on AudioMixerBlueprintLibrary_ClearMasterSubmixEffects"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearMasterSubmixEffects, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ClearMasterSubmixEffects::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride \ +static_assert(alignof(AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride, FadeTimeSec) == 0x000010, "Member 'AudioMixerBlueprintLibrary_ClearSubmixEffectChainOverride::FadeTimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ClearSubmixEffects \ +static_assert(alignof(AudioMixerBlueprintLibrary_ClearSubmixEffects) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ClearSubmixEffects"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ClearSubmixEffects) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_ClearSubmixEffects"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearSubmixEffects, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ClearSubmixEffects::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ClearSubmixEffects, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_ClearSubmixEffects::SoundSubmix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString \ +static_assert(alignof(AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString) == 0x000058, "Wrong size on AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString, Info) == 0x000000, "Member 'AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString::Info' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString, ReturnValue) == 0x000048, "Member 'AudioMixerBlueprintLibrary_Conv_AudioOutputDeviceInfoToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices \ +static_assert(alignof(AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices, OnObtainDevicesEvent) == 0x000008, "Member 'AudioMixerBlueprintLibrary_GetAvailableAudioOutputDevices::OnObtainDevicesEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName \ +static_assert(alignof(AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName, OnObtainCurrentDeviceEvent) == 0x000008, "Member 'AudioMixerBlueprintLibrary_GetCurrentAudioOutputDeviceName::OnObtainCurrentDeviceEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies \ +static_assert(alignof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies) == 0x000030, "Wrong size on AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies, Frequencies) == 0x000008, "Member 'AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies::Frequencies' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies, Magnitudes) == 0x000018, "Member 'AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies::Magnitudes' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies, SubmixToAnalyze) == 0x000028, "Member 'AudioMixerBlueprintLibrary_GetMagnitudeForFrequencies::SubmixToAnalyze' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain \ +static_assert(alignof(AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain, PresetChain) == 0x000008, "Member 'AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain::PresetChain' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain, ReturnValue) == 0x000010, "Member 'AudioMixerBlueprintLibrary_GetNumberOfEntriesInSourceEffectChain::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_GetPhaseForFrequencies \ +static_assert(alignof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_GetPhaseForFrequencies"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies) == 0x000030, "Wrong size on AudioMixerBlueprintLibrary_GetPhaseForFrequencies"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_GetPhaseForFrequencies::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies, Frequencies) == 0x000008, "Member 'AudioMixerBlueprintLibrary_GetPhaseForFrequencies::Frequencies' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies, Phases) == 0x000018, "Member 'AudioMixerBlueprintLibrary_GetPhaseForFrequencies::Phases' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_GetPhaseForFrequencies, SubmixToAnalyze) == 0x000028, "Member 'AudioMixerBlueprintLibrary_GetPhaseForFrequencies::SubmixToAnalyze' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_IsAudioBusActive \ +static_assert(alignof(AudioMixerBlueprintLibrary_IsAudioBusActive) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_IsAudioBusActive"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_IsAudioBusActive) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_IsAudioBusActive"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_IsAudioBusActive, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_IsAudioBusActive::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_IsAudioBusActive, AudioBus) == 0x000008, "Member 'AudioMixerBlueprintLibrary_IsAudioBusActive::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_IsAudioBusActive, ReturnValue) == 0x000010, "Member 'AudioMixerBlueprintLibrary_IsAudioBusActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings \ +static_assert(alignof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings) == 0x000028, "Wrong size on AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, InNumBands) == 0x000000, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::InNumBands' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, InMinimumFrequency) == 0x000004, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::InMinimumFrequency' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, InMaximumFrequency) == 0x000008, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::InMaximumFrequency' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, InAttackTimeMsec) == 0x00000C, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::InAttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, InReleaseTimeMsec) == 0x000010, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::InReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings, ReturnValue) == 0x000018, "Member 'AudioMixerBlueprintLibrary_MakeFullSpectrumSpectralAnalysisBandSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings \ +static_assert(alignof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings) == 0x000028, "Wrong size on AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, InNumSemitones) == 0x000000, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::InNumSemitones' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, InStartingMusicalNote) == 0x000004, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::InStartingMusicalNote' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, InStartingOctave) == 0x000008, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::InStartingOctave' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, InAttackTimeMsec) == 0x00000C, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::InAttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, InReleaseTimeMsec) == 0x000010, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::InReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings, ReturnValue) == 0x000018, "Member 'AudioMixerBlueprintLibrary_MakeMusicalSpectralAnalysisBandSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings \ +static_assert(alignof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings, InBandPresetType) == 0x000000, "Member 'AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings::InBandPresetType' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings, InNumBands) == 0x000004, "Member 'AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings::InNumBands' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings, InAttackTimeMsec) == 0x000008, "Member 'AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings::InAttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings, InReleaseTimeMsec) == 0x00000C, "Member 'AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings::InReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings, ReturnValue) == 0x000010, "Member 'AudioMixerBlueprintLibrary_MakePresetSpectralAnalysisBandSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_PauseRecordingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_PauseRecordingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_PauseRecordingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_PauseRecordingOutput) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_PauseRecordingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_PauseRecordingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_PauseRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_PauseRecordingOutput, SubmixToPause) == 0x000008, "Member 'AudioMixerBlueprintLibrary_PauseRecordingOutput::SubmixToPause' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback \ +static_assert(alignof(AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback) == 0x000008, "Wrong size on AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback, SoundCue) == 0x000000, "Member 'AudioMixerBlueprintLibrary_PrimeSoundCueForPlayback::SoundCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_PrimeSoundForPlayback \ +static_assert(alignof(AudioMixerBlueprintLibrary_PrimeSoundForPlayback) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_PrimeSoundForPlayback"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_PrimeSoundForPlayback) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_PrimeSoundForPlayback"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_PrimeSoundForPlayback, SoundWave) == 0x000000, "Member 'AudioMixerBlueprintLibrary_PrimeSoundForPlayback::SoundWave' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_PrimeSoundForPlayback, OnLoadCompletion) == 0x000008, "Member 'AudioMixerBlueprintLibrary_PrimeSoundForPlayback::OnLoadCompletion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect, SubmixEffectPreset) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveMasterSubmixEffect::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain, PresetChain) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain::PresetChain' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain, EntryIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_RemoveSourceEffectFromPresetChain::EntryIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveSubmixEffect \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveSubmixEffect) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveSubmixEffect"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveSubmixEffect) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_RemoveSubmixEffect"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffect, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffect, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffect::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffect, SubmixEffectPreset) == 0x000010, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffect::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex, SubmixChainIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectAtIndex::SubmixChainIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset, SubmixEffectPreset) == 0x000010, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPreset::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex \ +static_assert(alignof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex, SubmixChainIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_RemoveSubmixEffectPresetAtIndex::SubmixChainIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix \ +static_assert(alignof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix, InSoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix::InSoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix, SubmixChainIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix::SubmixChainIndex' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix, SubmixEffectPreset) == 0x000018, "Member 'AudioMixerBlueprintLibrary_ReplaceSoundEffectSubmix::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ReplaceSubmixEffect \ +static_assert(alignof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ReplaceSubmixEffect"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_ReplaceSubmixEffect"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ReplaceSubmixEffect::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect, InSoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_ReplaceSubmixEffect::InSoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect, SubmixChainIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_ReplaceSubmixEffect::SubmixChainIndex' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ReplaceSubmixEffect, SubmixEffectPreset) == 0x000018, "Member 'AudioMixerBlueprintLibrary_ReplaceSubmixEffect::SubmixEffectPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_ResumeRecordingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_ResumeRecordingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_ResumeRecordingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_ResumeRecordingOutput) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_ResumeRecordingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ResumeRecordingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_ResumeRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_ResumeRecordingOutput, SubmixToPause) == 0x000008, "Member 'AudioMixerBlueprintLibrary_ResumeRecordingOutput::SubmixToPause' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry \ +static_assert(alignof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry, PresetChain) == 0x000008, "Member 'AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry::PresetChain' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry, EntryIndex) == 0x000010, "Member 'AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry::EntryIndex' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry, bBypassed) == 0x000014, "Member 'AudioMixerBlueprintLibrary_SetBypassSourceEffectChainEntry::bBypassed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride \ +static_assert(alignof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride) == 0x000028, "Wrong size on AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride, SoundSubmix) == 0x000008, "Member 'AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride, SubmixEffectPresetChain) == 0x000010, "Member 'AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride::SubmixEffectPresetChain' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride, FadeTimeSec) == 0x000020, "Member 'AudioMixerBlueprintLibrary_SetSubmixEffectChainOverride::FadeTimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StartAnalyzingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_StartAnalyzingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StartAnalyzingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StartAnalyzingOutput) == 0x000020, "Wrong size on AudioMixerBlueprintLibrary_StartAnalyzingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, SubmixToAnalyze) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::SubmixToAnalyze' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, FFTSize) == 0x000010, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::FFTSize' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, InterpolationMethod) == 0x000011, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::InterpolationMethod' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, WindowType) == 0x000012, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::WindowType' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, HopSize) == 0x000014, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::HopSize' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAnalyzingOutput, SpectrumType) == 0x000018, "Member 'AudioMixerBlueprintLibrary_StartAnalyzingOutput::SpectrumType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StartAudioBus \ +static_assert(alignof(AudioMixerBlueprintLibrary_StartAudioBus) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StartAudioBus"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StartAudioBus) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_StartAudioBus"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAudioBus, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StartAudioBus::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartAudioBus, AudioBus) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StartAudioBus::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StartRecordingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_StartRecordingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StartRecordingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StartRecordingOutput) == 0x000018, "Wrong size on AudioMixerBlueprintLibrary_StartRecordingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartRecordingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StartRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartRecordingOutput, ExpectedDuration) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StartRecordingOutput::ExpectedDuration' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StartRecordingOutput, SubmixToRecord) == 0x000010, "Member 'AudioMixerBlueprintLibrary_StartRecordingOutput::SubmixToRecord' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StopAnalyzingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_StopAnalyzingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StopAnalyzingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StopAnalyzingOutput) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_StopAnalyzingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopAnalyzingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StopAnalyzingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopAnalyzingOutput, SubmixToStopAnalyzing) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StopAnalyzingOutput::SubmixToStopAnalyzing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StopAudioBus \ +static_assert(alignof(AudioMixerBlueprintLibrary_StopAudioBus) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StopAudioBus"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StopAudioBus) == 0x000010, "Wrong size on AudioMixerBlueprintLibrary_StopAudioBus"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopAudioBus, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StopAudioBus::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopAudioBus, AudioBus) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StopAudioBus::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_StopRecordingOutput \ +static_assert(alignof(AudioMixerBlueprintLibrary_StopRecordingOutput) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_StopRecordingOutput"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_StopRecordingOutput) == 0x000048, "Wrong size on AudioMixerBlueprintLibrary_StopRecordingOutput"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, ExportType) == 0x000008, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::ExportType' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, Name_0) == 0x000010, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, Path) == 0x000020, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::Path' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, SubmixToRecord) == 0x000030, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::SubmixToRecord' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, ExistingSoundWaveToOverwrite) == 0x000038, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::ExistingSoundWaveToOverwrite' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_StopRecordingOutput, ReturnValue) == 0x000040, "Member 'AudioMixerBlueprintLibrary_StopRecordingOutput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_SwapAudioOutputDevice \ +static_assert(alignof(AudioMixerBlueprintLibrary_SwapAudioOutputDevice) == 0x000008, "Wrong alignment on AudioMixerBlueprintLibrary_SwapAudioOutputDevice"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_SwapAudioOutputDevice) == 0x000028, "Wrong size on AudioMixerBlueprintLibrary_SwapAudioOutputDevice"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SwapAudioOutputDevice, WorldContextObject) == 0x000000, "Member 'AudioMixerBlueprintLibrary_SwapAudioOutputDevice::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SwapAudioOutputDevice, NewDeviceId) == 0x000008, "Member 'AudioMixerBlueprintLibrary_SwapAudioOutputDevice::NewDeviceId' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_SwapAudioOutputDevice, OnCompletedDeviceSwap) == 0x000018, "Member 'AudioMixerBlueprintLibrary_SwapAudioOutputDevice::OnCompletedDeviceSwap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioMixerBlueprintLibrary_TrimAudioCache \ +static_assert(alignof(AudioMixerBlueprintLibrary_TrimAudioCache) == 0x000004, "Wrong alignment on AudioMixerBlueprintLibrary_TrimAudioCache"); \ +static_assert(sizeof(AudioMixerBlueprintLibrary_TrimAudioCache) == 0x000008, "Wrong size on AudioMixerBlueprintLibrary_TrimAudioCache"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_TrimAudioCache, InMegabytesToFree) == 0x000000, "Member 'AudioMixerBlueprintLibrary_TrimAudioCache::InMegabytesToFree' has a wrong offset!"); \ +static_assert(offsetof(AudioMixerBlueprintLibrary_TrimAudioCache, ReturnValue) == 0x000004, "Member 'AudioMixerBlueprintLibrary_TrimAudioCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioMixerBlueprintLibrary \ +static_assert(alignof(UAudioMixerBlueprintLibrary) == 0x000008, "Wrong alignment on UAudioMixerBlueprintLibrary"); \ +static_assert(sizeof(UAudioMixerBlueprintLibrary) == 0x000028, "Wrong size on UAudioMixerBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_USynthSound \ +static_assert(alignof(USynthSound) == 0x000008, "Wrong alignment on USynthSound"); \ +static_assert(sizeof(USynthSound) == 0x0004A0, "Wrong size on USynthSound"); \ +static_assert(offsetof(USynthSound, OwningSynthComponent) == 0x000480, "Member 'USynthSound::OwningSynthComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_GetModulators \ +static_assert(alignof(SynthComponent_GetModulators) == 0x000008, "Wrong alignment on SynthComponent_GetModulators"); \ +static_assert(sizeof(SynthComponent_GetModulators) == 0x000058, "Wrong size on SynthComponent_GetModulators"); \ +static_assert(offsetof(SynthComponent_GetModulators, destination) == 0x000000, "Member 'SynthComponent_GetModulators::destination' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_GetModulators, ReturnValue) == 0x000008, "Member 'SynthComponent_GetModulators::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetAudioBusSendPostEffect \ +static_assert(alignof(SynthComponent_SetAudioBusSendPostEffect) == 0x000008, "Wrong alignment on SynthComponent_SetAudioBusSendPostEffect"); \ +static_assert(sizeof(SynthComponent_SetAudioBusSendPostEffect) == 0x000010, "Wrong size on SynthComponent_SetAudioBusSendPostEffect"); \ +static_assert(offsetof(SynthComponent_SetAudioBusSendPostEffect, AudioBus) == 0x000000, "Member 'SynthComponent_SetAudioBusSendPostEffect::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetAudioBusSendPostEffect, AudioBusSendLevel) == 0x000008, "Member 'SynthComponent_SetAudioBusSendPostEffect::AudioBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetAudioBusSendPreEffect \ +static_assert(alignof(SynthComponent_SetAudioBusSendPreEffect) == 0x000008, "Wrong alignment on SynthComponent_SetAudioBusSendPreEffect"); \ +static_assert(sizeof(SynthComponent_SetAudioBusSendPreEffect) == 0x000010, "Wrong size on SynthComponent_SetAudioBusSendPreEffect"); \ +static_assert(offsetof(SynthComponent_SetAudioBusSendPreEffect, AudioBus) == 0x000000, "Member 'SynthComponent_SetAudioBusSendPreEffect::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetAudioBusSendPreEffect, AudioBusSendLevel) == 0x000008, "Member 'SynthComponent_SetAudioBusSendPreEffect::AudioBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetLowPassFilterEnabled \ +static_assert(alignof(SynthComponent_SetLowPassFilterEnabled) == 0x000001, "Wrong alignment on SynthComponent_SetLowPassFilterEnabled"); \ +static_assert(sizeof(SynthComponent_SetLowPassFilterEnabled) == 0x000001, "Wrong size on SynthComponent_SetLowPassFilterEnabled"); \ +static_assert(offsetof(SynthComponent_SetLowPassFilterEnabled, InLowPassFilterEnabled) == 0x000000, "Member 'SynthComponent_SetLowPassFilterEnabled::InLowPassFilterEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetLowPassFilterFrequency \ +static_assert(alignof(SynthComponent_SetLowPassFilterFrequency) == 0x000004, "Wrong alignment on SynthComponent_SetLowPassFilterFrequency"); \ +static_assert(sizeof(SynthComponent_SetLowPassFilterFrequency) == 0x000004, "Wrong size on SynthComponent_SetLowPassFilterFrequency"); \ +static_assert(offsetof(SynthComponent_SetLowPassFilterFrequency, InLowPassFilterFrequency) == 0x000000, "Member 'SynthComponent_SetLowPassFilterFrequency::InLowPassFilterFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetModulationRouting \ +static_assert(alignof(SynthComponent_SetModulationRouting) == 0x000008, "Wrong alignment on SynthComponent_SetModulationRouting"); \ +static_assert(sizeof(SynthComponent_SetModulationRouting) == 0x000058, "Wrong size on SynthComponent_SetModulationRouting"); \ +static_assert(offsetof(SynthComponent_SetModulationRouting, Modulators) == 0x000000, "Member 'SynthComponent_SetModulationRouting::Modulators' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetModulationRouting, destination) == 0x000050, "Member 'SynthComponent_SetModulationRouting::destination' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetModulationRouting, RoutingMethod) == 0x000051, "Member 'SynthComponent_SetModulationRouting::RoutingMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetOutputToBusOnly \ +static_assert(alignof(SynthComponent_SetOutputToBusOnly) == 0x000001, "Wrong alignment on SynthComponent_SetOutputToBusOnly"); \ +static_assert(sizeof(SynthComponent_SetOutputToBusOnly) == 0x000001, "Wrong size on SynthComponent_SetOutputToBusOnly"); \ +static_assert(offsetof(SynthComponent_SetOutputToBusOnly, bInOutputToBusOnly) == 0x000000, "Member 'SynthComponent_SetOutputToBusOnly::bInOutputToBusOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetSourceBusSendPostEffect \ +static_assert(alignof(SynthComponent_SetSourceBusSendPostEffect) == 0x000008, "Wrong alignment on SynthComponent_SetSourceBusSendPostEffect"); \ +static_assert(sizeof(SynthComponent_SetSourceBusSendPostEffect) == 0x000010, "Wrong size on SynthComponent_SetSourceBusSendPostEffect"); \ +static_assert(offsetof(SynthComponent_SetSourceBusSendPostEffect, SoundSourceBus) == 0x000000, "Member 'SynthComponent_SetSourceBusSendPostEffect::SoundSourceBus' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetSourceBusSendPostEffect, SourceBusSendLevel) == 0x000008, "Member 'SynthComponent_SetSourceBusSendPostEffect::SourceBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetSourceBusSendPreEffect \ +static_assert(alignof(SynthComponent_SetSourceBusSendPreEffect) == 0x000008, "Wrong alignment on SynthComponent_SetSourceBusSendPreEffect"); \ +static_assert(sizeof(SynthComponent_SetSourceBusSendPreEffect) == 0x000010, "Wrong size on SynthComponent_SetSourceBusSendPreEffect"); \ +static_assert(offsetof(SynthComponent_SetSourceBusSendPreEffect, SoundSourceBus) == 0x000000, "Member 'SynthComponent_SetSourceBusSendPreEffect::SoundSourceBus' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetSourceBusSendPreEffect, SourceBusSendLevel) == 0x000008, "Member 'SynthComponent_SetSourceBusSendPreEffect::SourceBusSendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetSubmixSend \ +static_assert(alignof(SynthComponent_SetSubmixSend) == 0x000008, "Wrong alignment on SynthComponent_SetSubmixSend"); \ +static_assert(sizeof(SynthComponent_SetSubmixSend) == 0x000010, "Wrong size on SynthComponent_SetSubmixSend"); \ +static_assert(offsetof(SynthComponent_SetSubmixSend, Submix) == 0x000000, "Member 'SynthComponent_SetSubmixSend::Submix' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_SetSubmixSend, SendLevel) == 0x000008, "Member 'SynthComponent_SetSubmixSend::SendLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_SetVolumeMultiplier \ +static_assert(alignof(SynthComponent_SetVolumeMultiplier) == 0x000004, "Wrong alignment on SynthComponent_SetVolumeMultiplier"); \ +static_assert(sizeof(SynthComponent_SetVolumeMultiplier) == 0x000004, "Wrong size on SynthComponent_SetVolumeMultiplier"); \ +static_assert(offsetof(SynthComponent_SetVolumeMultiplier, VolumeMultiplier) == 0x000000, "Member 'SynthComponent_SetVolumeMultiplier::VolumeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_AdjustVolume \ +static_assert(alignof(SynthComponent_AdjustVolume) == 0x000004, "Wrong alignment on SynthComponent_AdjustVolume"); \ +static_assert(sizeof(SynthComponent_AdjustVolume) == 0x00000C, "Wrong size on SynthComponent_AdjustVolume"); \ +static_assert(offsetof(SynthComponent_AdjustVolume, AdjustVolumeDuration) == 0x000000, "Member 'SynthComponent_AdjustVolume::AdjustVolumeDuration' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_AdjustVolume, AdjustVolumeLevel) == 0x000004, "Member 'SynthComponent_AdjustVolume::AdjustVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_AdjustVolume, FadeCurve) == 0x000008, "Member 'SynthComponent_AdjustVolume::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_FadeIn \ +static_assert(alignof(SynthComponent_FadeIn) == 0x000004, "Wrong alignment on SynthComponent_FadeIn"); \ +static_assert(sizeof(SynthComponent_FadeIn) == 0x000010, "Wrong size on SynthComponent_FadeIn"); \ +static_assert(offsetof(SynthComponent_FadeIn, FadeInDuration) == 0x000000, "Member 'SynthComponent_FadeIn::FadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_FadeIn, FadeVolumeLevel) == 0x000004, "Member 'SynthComponent_FadeIn::FadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_FadeIn, StartTime) == 0x000008, "Member 'SynthComponent_FadeIn::StartTime' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_FadeIn, FadeCurve) == 0x00000C, "Member 'SynthComponent_FadeIn::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_FadeOut \ +static_assert(alignof(SynthComponent_FadeOut) == 0x000004, "Wrong alignment on SynthComponent_FadeOut"); \ +static_assert(sizeof(SynthComponent_FadeOut) == 0x00000C, "Wrong size on SynthComponent_FadeOut"); \ +static_assert(offsetof(SynthComponent_FadeOut, FadeOutDuration) == 0x000000, "Member 'SynthComponent_FadeOut::FadeOutDuration' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_FadeOut, FadeVolumeLevel) == 0x000004, "Member 'SynthComponent_FadeOut::FadeVolumeLevel' has a wrong offset!"); \ +static_assert(offsetof(SynthComponent_FadeOut, FadeCurve) == 0x000008, "Member 'SynthComponent_FadeOut::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponent_IsPlaying \ +static_assert(alignof(SynthComponent_IsPlaying) == 0x000001, "Wrong alignment on SynthComponent_IsPlaying"); \ +static_assert(sizeof(SynthComponent_IsPlaying) == 0x000001, "Wrong size on SynthComponent_IsPlaying"); \ +static_assert(offsetof(SynthComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'SynthComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthComponent \ +static_assert(alignof(USynthComponent) == 0x000010, "Wrong alignment on USynthComponent"); \ +static_assert(sizeof(USynthComponent) == 0x000900, "Wrong size on USynthComponent"); \ +static_assert(offsetof(USynthComponent, AttenuationSettings) == 0x0002A8, "Member 'USynthComponent::AttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, AttenuationOverrides) == 0x0002B0, "Member 'USynthComponent::AttenuationOverrides' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, ConcurrencySettings) == 0x000680, "Member 'USynthComponent::ConcurrencySettings' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, ConcurrencySet) == 0x000688, "Member 'USynthComponent::ConcurrencySet' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, ModulationRouting) == 0x0006D8, "Member 'USynthComponent::ModulationRouting' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, SoundClass) == 0x000840, "Member 'USynthComponent::SoundClass' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, SourceEffectChain) == 0x000848, "Member 'USynthComponent::SourceEffectChain' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, SoundSubmix) == 0x000850, "Member 'USynthComponent::SoundSubmix' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, SoundSubmixSends) == 0x000858, "Member 'USynthComponent::SoundSubmixSends' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, BusSends) == 0x000868, "Member 'USynthComponent::BusSends' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, PreEffectBusSends) == 0x000878, "Member 'USynthComponent::PreEffectBusSends' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, EnvelopeFollowerAttackTime) == 0x00088C, "Member 'USynthComponent::EnvelopeFollowerAttackTime' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, EnvelopeFollowerReleaseTime) == 0x000890, "Member 'USynthComponent::EnvelopeFollowerReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, OnAudioEnvelopeValue) == 0x000898, "Member 'USynthComponent::OnAudioEnvelopeValue' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, Synth) == 0x0008C8, "Member 'USynthComponent::Synth' has a wrong offset!"); \ +static_assert(offsetof(USynthComponent, AudioComponent) == 0x0008D0, "Member 'USynthComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectSubmixEQPreset_SetSettings \ +static_assert(alignof(SubmixEffectSubmixEQPreset_SetSettings) == 0x000008, "Wrong alignment on SubmixEffectSubmixEQPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectSubmixEQPreset_SetSettings) == 0x000010, "Wrong size on SubmixEffectSubmixEQPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectSubmixEQPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectSubmixEQPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectSubmixEQPreset \ +static_assert(alignof(USubmixEffectSubmixEQPreset) == 0x000008, "Wrong alignment on USubmixEffectSubmixEQPreset"); \ +static_assert(sizeof(USubmixEffectSubmixEQPreset) == 0x0000B0, "Wrong size on USubmixEffectSubmixEQPreset"); \ +static_assert(offsetof(USubmixEffectSubmixEQPreset, Settings) == 0x0000A0, "Member 'USubmixEffectSubmixEQPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectReverbPreset_SetSettings \ +static_assert(alignof(SubmixEffectReverbPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectReverbPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectReverbPreset_SetSettings) == 0x000040, "Wrong size on SubmixEffectReverbPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectReverbPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectReverbPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectReverbPreset_SetSettingsWithReverbEffect \ +static_assert(alignof(SubmixEffectReverbPreset_SetSettingsWithReverbEffect) == 0x000008, "Wrong alignment on SubmixEffectReverbPreset_SetSettingsWithReverbEffect"); \ +static_assert(sizeof(SubmixEffectReverbPreset_SetSettingsWithReverbEffect) == 0x000010, "Wrong size on SubmixEffectReverbPreset_SetSettingsWithReverbEffect"); \ +static_assert(offsetof(SubmixEffectReverbPreset_SetSettingsWithReverbEffect, InReverbEffect) == 0x000000, "Member 'SubmixEffectReverbPreset_SetSettingsWithReverbEffect::InReverbEffect' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectReverbPreset_SetSettingsWithReverbEffect, WetLevel) == 0x000008, "Member 'SubmixEffectReverbPreset_SetSettingsWithReverbEffect::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectReverbPreset_SetSettingsWithReverbEffect, DryLevel) == 0x00000C, "Member 'SubmixEffectReverbPreset_SetSettingsWithReverbEffect::DryLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectReverbPreset \ +static_assert(alignof(USubmixEffectReverbPreset) == 0x000008, "Wrong alignment on USubmixEffectReverbPreset"); \ +static_assert(sizeof(USubmixEffectReverbPreset) == 0x000110, "Wrong size on USubmixEffectReverbPreset"); \ +static_assert(offsetof(USubmixEffectReverbPreset, Settings) == 0x0000D0, "Member 'USubmixEffectReverbPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioGenerator \ +static_assert(alignof(UAudioGenerator) == 0x000008, "Wrong alignment on UAudioGenerator"); \ +static_assert(sizeof(UAudioGenerator) == 0x0000A8, "Wrong size on UAudioGenerator"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetBeatProgressPercent \ +static_assert(alignof(QuartzClockHandle_GetBeatProgressPercent) == 0x000004, "Wrong alignment on QuartzClockHandle_GetBeatProgressPercent"); \ +static_assert(sizeof(QuartzClockHandle_GetBeatProgressPercent) == 0x000010, "Wrong size on QuartzClockHandle_GetBeatProgressPercent"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatProgressPercent, QuantizationBoundary) == 0x000000, "Member 'QuartzClockHandle_GetBeatProgressPercent::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatProgressPercent, PhaseOffset) == 0x000004, "Member 'QuartzClockHandle_GetBeatProgressPercent::PhaseOffset' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatProgressPercent, MsOffset) == 0x000008, "Member 'QuartzClockHandle_GetBeatProgressPercent::MsOffset' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatProgressPercent, ReturnValue) == 0x00000C, "Member 'QuartzClockHandle_GetBeatProgressPercent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetCurrentTimestamp \ +static_assert(alignof(QuartzClockHandle_GetCurrentTimestamp) == 0x000008, "Wrong alignment on QuartzClockHandle_GetCurrentTimestamp"); \ +static_assert(sizeof(QuartzClockHandle_GetCurrentTimestamp) == 0x000018, "Wrong size on QuartzClockHandle_GetCurrentTimestamp"); \ +static_assert(offsetof(QuartzClockHandle_GetCurrentTimestamp, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetCurrentTimestamp::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetCurrentTimestamp, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetCurrentTimestamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds \ +static_assert(alignof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds) == 0x000008, "Wrong alignment on QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds"); \ +static_assert(sizeof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds) == 0x000018, "Wrong size on QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds"); \ +static_assert(offsetof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds, QuantizationType) == 0x000008, "Member 'QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds::QuantizationType' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds, Multiplier) == 0x00000C, "Member 'QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds, ReturnValue) == 0x000010, "Member 'QuartzClockHandle_GetDurationOfQuantizationTypeInSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetEstimatedRunTime \ +static_assert(alignof(QuartzClockHandle_GetEstimatedRunTime) == 0x000008, "Wrong alignment on QuartzClockHandle_GetEstimatedRunTime"); \ +static_assert(sizeof(QuartzClockHandle_GetEstimatedRunTime) == 0x000010, "Wrong size on QuartzClockHandle_GetEstimatedRunTime"); \ +static_assert(offsetof(QuartzClockHandle_GetEstimatedRunTime, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetEstimatedRunTime::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetEstimatedRunTime, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetEstimatedRunTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_IsClockRunning \ +static_assert(alignof(QuartzClockHandle_IsClockRunning) == 0x000008, "Wrong alignment on QuartzClockHandle_IsClockRunning"); \ +static_assert(sizeof(QuartzClockHandle_IsClockRunning) == 0x000010, "Wrong size on QuartzClockHandle_IsClockRunning"); \ +static_assert(offsetof(QuartzClockHandle_IsClockRunning, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_IsClockRunning::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_IsClockRunning, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_IsClockRunning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_NotifyOnQuantizationBoundary \ +static_assert(alignof(QuartzClockHandle_NotifyOnQuantizationBoundary) == 0x000008, "Wrong alignment on QuartzClockHandle_NotifyOnQuantizationBoundary"); \ +static_assert(sizeof(QuartzClockHandle_NotifyOnQuantizationBoundary) == 0x000040, "Wrong size on QuartzClockHandle_NotifyOnQuantizationBoundary"); \ +static_assert(offsetof(QuartzClockHandle_NotifyOnQuantizationBoundary, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_NotifyOnQuantizationBoundary::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_NotifyOnQuantizationBoundary, InQuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_NotifyOnQuantizationBoundary::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_NotifyOnQuantizationBoundary, InDelegate) == 0x000028, "Member 'QuartzClockHandle_NotifyOnQuantizationBoundary::InDelegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_NotifyOnQuantizationBoundary, InMsOffset) == 0x000038, "Member 'QuartzClockHandle_NotifyOnQuantizationBoundary::InMsOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_PauseClock \ +static_assert(alignof(QuartzClockHandle_PauseClock) == 0x000008, "Wrong alignment on QuartzClockHandle_PauseClock"); \ +static_assert(sizeof(QuartzClockHandle_PauseClock) == 0x000010, "Wrong size on QuartzClockHandle_PauseClock"); \ +static_assert(offsetof(QuartzClockHandle_PauseClock, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_PauseClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_PauseClock, ClockHandle) == 0x000008, "Member 'QuartzClockHandle_PauseClock::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_ResetTransport \ +static_assert(alignof(QuartzClockHandle_ResetTransport) == 0x000008, "Wrong alignment on QuartzClockHandle_ResetTransport"); \ +static_assert(sizeof(QuartzClockHandle_ResetTransport) == 0x000018, "Wrong size on QuartzClockHandle_ResetTransport"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransport, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_ResetTransport::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransport, InDelegate) == 0x000008, "Member 'QuartzClockHandle_ResetTransport::InDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_ResetTransportQuantized \ +static_assert(alignof(QuartzClockHandle_ResetTransportQuantized) == 0x000008, "Wrong alignment on QuartzClockHandle_ResetTransportQuantized"); \ +static_assert(sizeof(QuartzClockHandle_ResetTransportQuantized) == 0x000040, "Wrong size on QuartzClockHandle_ResetTransportQuantized"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransportQuantized, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_ResetTransportQuantized::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransportQuantized, InQuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_ResetTransportQuantized::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransportQuantized, InDelegate) == 0x000028, "Member 'QuartzClockHandle_ResetTransportQuantized::InDelegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_ResetTransportQuantized, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_ResetTransportQuantized::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_ResumeClock \ +static_assert(alignof(QuartzClockHandle_ResumeClock) == 0x000008, "Wrong alignment on QuartzClockHandle_ResumeClock"); \ +static_assert(sizeof(QuartzClockHandle_ResumeClock) == 0x000010, "Wrong size on QuartzClockHandle_ResumeClock"); \ +static_assert(offsetof(QuartzClockHandle_ResumeClock, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_ResumeClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_ResumeClock, ClockHandle) == 0x000008, "Member 'QuartzClockHandle_ResumeClock::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SetBeatsPerMinute \ +static_assert(alignof(QuartzClockHandle_SetBeatsPerMinute) == 0x000008, "Wrong alignment on QuartzClockHandle_SetBeatsPerMinute"); \ +static_assert(sizeof(QuartzClockHandle_SetBeatsPerMinute) == 0x000048, "Wrong size on QuartzClockHandle_SetBeatsPerMinute"); \ +static_assert(offsetof(QuartzClockHandle_SetBeatsPerMinute, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SetBeatsPerMinute::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetBeatsPerMinute, QuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SetBeatsPerMinute::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetBeatsPerMinute, Delegate) == 0x000028, "Member 'QuartzClockHandle_SetBeatsPerMinute::Delegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetBeatsPerMinute, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_SetBeatsPerMinute::ClockHandle' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetBeatsPerMinute, BeatsPerMinute) == 0x000040, "Member 'QuartzClockHandle_SetBeatsPerMinute::BeatsPerMinute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SetMillisecondsPerTick \ +static_assert(alignof(QuartzClockHandle_SetMillisecondsPerTick) == 0x000008, "Wrong alignment on QuartzClockHandle_SetMillisecondsPerTick"); \ +static_assert(sizeof(QuartzClockHandle_SetMillisecondsPerTick) == 0x000048, "Wrong size on QuartzClockHandle_SetMillisecondsPerTick"); \ +static_assert(offsetof(QuartzClockHandle_SetMillisecondsPerTick, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SetMillisecondsPerTick::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetMillisecondsPerTick, QuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SetMillisecondsPerTick::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetMillisecondsPerTick, Delegate) == 0x000028, "Member 'QuartzClockHandle_SetMillisecondsPerTick::Delegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetMillisecondsPerTick, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_SetMillisecondsPerTick::ClockHandle' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetMillisecondsPerTick, MillisecondsPerTick) == 0x000040, "Member 'QuartzClockHandle_SetMillisecondsPerTick::MillisecondsPerTick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SetSecondsPerTick \ +static_assert(alignof(QuartzClockHandle_SetSecondsPerTick) == 0x000008, "Wrong alignment on QuartzClockHandle_SetSecondsPerTick"); \ +static_assert(sizeof(QuartzClockHandle_SetSecondsPerTick) == 0x000048, "Wrong size on QuartzClockHandle_SetSecondsPerTick"); \ +static_assert(offsetof(QuartzClockHandle_SetSecondsPerTick, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SetSecondsPerTick::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetSecondsPerTick, QuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SetSecondsPerTick::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetSecondsPerTick, Delegate) == 0x000028, "Member 'QuartzClockHandle_SetSecondsPerTick::Delegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetSecondsPerTick, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_SetSecondsPerTick::ClockHandle' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetSecondsPerTick, SecondsPerTick) == 0x000040, "Member 'QuartzClockHandle_SetSecondsPerTick::SecondsPerTick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SetThirtySecondNotesPerMinute \ +static_assert(alignof(QuartzClockHandle_SetThirtySecondNotesPerMinute) == 0x000008, "Wrong alignment on QuartzClockHandle_SetThirtySecondNotesPerMinute"); \ +static_assert(sizeof(QuartzClockHandle_SetThirtySecondNotesPerMinute) == 0x000048, "Wrong size on QuartzClockHandle_SetThirtySecondNotesPerMinute"); \ +static_assert(offsetof(QuartzClockHandle_SetThirtySecondNotesPerMinute, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SetThirtySecondNotesPerMinute::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetThirtySecondNotesPerMinute, QuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SetThirtySecondNotesPerMinute::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetThirtySecondNotesPerMinute, Delegate) == 0x000028, "Member 'QuartzClockHandle_SetThirtySecondNotesPerMinute::Delegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetThirtySecondNotesPerMinute, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_SetThirtySecondNotesPerMinute::ClockHandle' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetThirtySecondNotesPerMinute, ThirtySecondsNotesPerMinute) == 0x000040, "Member 'QuartzClockHandle_SetThirtySecondNotesPerMinute::ThirtySecondsNotesPerMinute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SetTicksPerSecond \ +static_assert(alignof(QuartzClockHandle_SetTicksPerSecond) == 0x000008, "Wrong alignment on QuartzClockHandle_SetTicksPerSecond"); \ +static_assert(sizeof(QuartzClockHandle_SetTicksPerSecond) == 0x000048, "Wrong size on QuartzClockHandle_SetTicksPerSecond"); \ +static_assert(offsetof(QuartzClockHandle_SetTicksPerSecond, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SetTicksPerSecond::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetTicksPerSecond, QuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SetTicksPerSecond::QuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetTicksPerSecond, Delegate) == 0x000028, "Member 'QuartzClockHandle_SetTicksPerSecond::Delegate' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetTicksPerSecond, ClockHandle) == 0x000038, "Member 'QuartzClockHandle_SetTicksPerSecond::ClockHandle' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SetTicksPerSecond, TicksPerSecond) == 0x000040, "Member 'QuartzClockHandle_SetTicksPerSecond::TicksPerSecond' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_StartClock \ +static_assert(alignof(QuartzClockHandle_StartClock) == 0x000008, "Wrong alignment on QuartzClockHandle_StartClock"); \ +static_assert(sizeof(QuartzClockHandle_StartClock) == 0x000010, "Wrong size on QuartzClockHandle_StartClock"); \ +static_assert(offsetof(QuartzClockHandle_StartClock, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_StartClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StartClock, ClockHandle) == 0x000008, "Member 'QuartzClockHandle_StartClock::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_StartOtherClock \ +static_assert(alignof(QuartzClockHandle_StartOtherClock) == 0x000008, "Wrong alignment on QuartzClockHandle_StartOtherClock"); \ +static_assert(sizeof(QuartzClockHandle_StartOtherClock) == 0x000040, "Wrong size on QuartzClockHandle_StartOtherClock"); \ +static_assert(offsetof(QuartzClockHandle_StartOtherClock, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_StartOtherClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StartOtherClock, OtherClockName) == 0x000008, "Member 'QuartzClockHandle_StartOtherClock::OtherClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StartOtherClock, InQuantizationBoundary) == 0x000010, "Member 'QuartzClockHandle_StartOtherClock::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StartOtherClock, InDelegate) == 0x000030, "Member 'QuartzClockHandle_StartOtherClock::InDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_StopClock \ +static_assert(alignof(QuartzClockHandle_StopClock) == 0x000008, "Wrong alignment on QuartzClockHandle_StopClock"); \ +static_assert(sizeof(QuartzClockHandle_StopClock) == 0x000018, "Wrong size on QuartzClockHandle_StopClock"); \ +static_assert(offsetof(QuartzClockHandle_StopClock, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_StopClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StopClock, CancelPendingEvents) == 0x000008, "Member 'QuartzClockHandle_StopClock::CancelPendingEvents' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_StopClock, ClockHandle) == 0x000010, "Member 'QuartzClockHandle_StopClock::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SubscribeToAllQuantizationEvents \ +static_assert(alignof(QuartzClockHandle_SubscribeToAllQuantizationEvents) == 0x000008, "Wrong alignment on QuartzClockHandle_SubscribeToAllQuantizationEvents"); \ +static_assert(sizeof(QuartzClockHandle_SubscribeToAllQuantizationEvents) == 0x000020, "Wrong size on QuartzClockHandle_SubscribeToAllQuantizationEvents"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToAllQuantizationEvents, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SubscribeToAllQuantizationEvents::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToAllQuantizationEvents, OnQuantizationEvent) == 0x000008, "Member 'QuartzClockHandle_SubscribeToAllQuantizationEvents::OnQuantizationEvent' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToAllQuantizationEvents, ClockHandle) == 0x000018, "Member 'QuartzClockHandle_SubscribeToAllQuantizationEvents::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_SubscribeToQuantizationEvent \ +static_assert(alignof(QuartzClockHandle_SubscribeToQuantizationEvent) == 0x000008, "Wrong alignment on QuartzClockHandle_SubscribeToQuantizationEvent"); \ +static_assert(sizeof(QuartzClockHandle_SubscribeToQuantizationEvent) == 0x000028, "Wrong size on QuartzClockHandle_SubscribeToQuantizationEvent"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToQuantizationEvent, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_SubscribeToQuantizationEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToQuantizationEvent, InQuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_SubscribeToQuantizationEvent::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToQuantizationEvent, OnQuantizationEvent) == 0x00000C, "Member 'QuartzClockHandle_SubscribeToQuantizationEvent::OnQuantizationEvent' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_SubscribeToQuantizationEvent, ClockHandle) == 0x000020, "Member 'QuartzClockHandle_SubscribeToQuantizationEvent::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_UnsubscribeFromAllTimeDivisions \ +static_assert(alignof(QuartzClockHandle_UnsubscribeFromAllTimeDivisions) == 0x000008, "Wrong alignment on QuartzClockHandle_UnsubscribeFromAllTimeDivisions"); \ +static_assert(sizeof(QuartzClockHandle_UnsubscribeFromAllTimeDivisions) == 0x000010, "Wrong size on QuartzClockHandle_UnsubscribeFromAllTimeDivisions"); \ +static_assert(offsetof(QuartzClockHandle_UnsubscribeFromAllTimeDivisions, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_UnsubscribeFromAllTimeDivisions::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_UnsubscribeFromAllTimeDivisions, ClockHandle) == 0x000008, "Member 'QuartzClockHandle_UnsubscribeFromAllTimeDivisions::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_UnsubscribeFromTimeDivision \ +static_assert(alignof(QuartzClockHandle_UnsubscribeFromTimeDivision) == 0x000008, "Wrong alignment on QuartzClockHandle_UnsubscribeFromTimeDivision"); \ +static_assert(sizeof(QuartzClockHandle_UnsubscribeFromTimeDivision) == 0x000018, "Wrong size on QuartzClockHandle_UnsubscribeFromTimeDivision"); \ +static_assert(offsetof(QuartzClockHandle_UnsubscribeFromTimeDivision, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_UnsubscribeFromTimeDivision::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_UnsubscribeFromTimeDivision, InQuantizationBoundary) == 0x000008, "Member 'QuartzClockHandle_UnsubscribeFromTimeDivision::InQuantizationBoundary' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_UnsubscribeFromTimeDivision, ClockHandle) == 0x000010, "Member 'QuartzClockHandle_UnsubscribeFromTimeDivision::ClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetBeatsPerMinute \ +static_assert(alignof(QuartzClockHandle_GetBeatsPerMinute) == 0x000008, "Wrong alignment on QuartzClockHandle_GetBeatsPerMinute"); \ +static_assert(sizeof(QuartzClockHandle_GetBeatsPerMinute) == 0x000010, "Wrong size on QuartzClockHandle_GetBeatsPerMinute"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatsPerMinute, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetBeatsPerMinute::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetBeatsPerMinute, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetBeatsPerMinute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetMillisecondsPerTick \ +static_assert(alignof(QuartzClockHandle_GetMillisecondsPerTick) == 0x000008, "Wrong alignment on QuartzClockHandle_GetMillisecondsPerTick"); \ +static_assert(sizeof(QuartzClockHandle_GetMillisecondsPerTick) == 0x000010, "Wrong size on QuartzClockHandle_GetMillisecondsPerTick"); \ +static_assert(offsetof(QuartzClockHandle_GetMillisecondsPerTick, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetMillisecondsPerTick::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetMillisecondsPerTick, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetMillisecondsPerTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetSecondsPerTick \ +static_assert(alignof(QuartzClockHandle_GetSecondsPerTick) == 0x000008, "Wrong alignment on QuartzClockHandle_GetSecondsPerTick"); \ +static_assert(sizeof(QuartzClockHandle_GetSecondsPerTick) == 0x000010, "Wrong size on QuartzClockHandle_GetSecondsPerTick"); \ +static_assert(offsetof(QuartzClockHandle_GetSecondsPerTick, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetSecondsPerTick::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetSecondsPerTick, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetSecondsPerTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetThirtySecondNotesPerMinute \ +static_assert(alignof(QuartzClockHandle_GetThirtySecondNotesPerMinute) == 0x000008, "Wrong alignment on QuartzClockHandle_GetThirtySecondNotesPerMinute"); \ +static_assert(sizeof(QuartzClockHandle_GetThirtySecondNotesPerMinute) == 0x000010, "Wrong size on QuartzClockHandle_GetThirtySecondNotesPerMinute"); \ +static_assert(offsetof(QuartzClockHandle_GetThirtySecondNotesPerMinute, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetThirtySecondNotesPerMinute::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetThirtySecondNotesPerMinute, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetThirtySecondNotesPerMinute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzClockHandle_GetTicksPerSecond \ +static_assert(alignof(QuartzClockHandle_GetTicksPerSecond) == 0x000008, "Wrong alignment on QuartzClockHandle_GetTicksPerSecond"); \ +static_assert(sizeof(QuartzClockHandle_GetTicksPerSecond) == 0x000010, "Wrong size on QuartzClockHandle_GetTicksPerSecond"); \ +static_assert(offsetof(QuartzClockHandle_GetTicksPerSecond, WorldContextObject) == 0x000000, "Member 'QuartzClockHandle_GetTicksPerSecond::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzClockHandle_GetTicksPerSecond, ReturnValue) == 0x000008, "Member 'QuartzClockHandle_GetTicksPerSecond::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UQuartzClockHandle \ +static_assert(alignof(UQuartzClockHandle) == 0x000008, "Wrong alignment on UQuartzClockHandle"); \ +static_assert(sizeof(UQuartzClockHandle) == 0x0001F0, "Wrong size on UQuartzClockHandle"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_CreateNewClock \ +static_assert(alignof(QuartzSubsystem_CreateNewClock) == 0x000008, "Wrong alignment on QuartzSubsystem_CreateNewClock"); \ +static_assert(sizeof(QuartzSubsystem_CreateNewClock) == 0x000040, "Wrong size on QuartzSubsystem_CreateNewClock"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_CreateNewClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, ClockName) == 0x000008, "Member 'QuartzSubsystem_CreateNewClock::ClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, InSettings) == 0x000010, "Member 'QuartzSubsystem_CreateNewClock::InSettings' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, bOverrideSettingsIfClockExists) == 0x000030, "Member 'QuartzSubsystem_CreateNewClock::bOverrideSettingsIfClockExists' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, bUseAudioEngineClockManager) == 0x000031, "Member 'QuartzSubsystem_CreateNewClock::bUseAudioEngineClockManager' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_CreateNewClock, ReturnValue) == 0x000038, "Member 'QuartzSubsystem_CreateNewClock::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_DeleteClockByHandle \ +static_assert(alignof(QuartzSubsystem_DeleteClockByHandle) == 0x000008, "Wrong alignment on QuartzSubsystem_DeleteClockByHandle"); \ +static_assert(sizeof(QuartzSubsystem_DeleteClockByHandle) == 0x000010, "Wrong size on QuartzSubsystem_DeleteClockByHandle"); \ +static_assert(offsetof(QuartzSubsystem_DeleteClockByHandle, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_DeleteClockByHandle::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_DeleteClockByHandle, InClockHandle) == 0x000008, "Member 'QuartzSubsystem_DeleteClockByHandle::InClockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_DeleteClockByName \ +static_assert(alignof(QuartzSubsystem_DeleteClockByName) == 0x000008, "Wrong alignment on QuartzSubsystem_DeleteClockByName"); \ +static_assert(sizeof(QuartzSubsystem_DeleteClockByName) == 0x000010, "Wrong size on QuartzSubsystem_DeleteClockByName"); \ +static_assert(offsetof(QuartzSubsystem_DeleteClockByName, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_DeleteClockByName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_DeleteClockByName, ClockName) == 0x000008, "Member 'QuartzSubsystem_DeleteClockByName::ClockName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_DoesClockExist \ +static_assert(alignof(QuartzSubsystem_DoesClockExist) == 0x000008, "Wrong alignment on QuartzSubsystem_DoesClockExist"); \ +static_assert(sizeof(QuartzSubsystem_DoesClockExist) == 0x000018, "Wrong size on QuartzSubsystem_DoesClockExist"); \ +static_assert(offsetof(QuartzSubsystem_DoesClockExist, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_DoesClockExist::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_DoesClockExist, ClockName) == 0x000008, "Member 'QuartzSubsystem_DoesClockExist::ClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_DoesClockExist, ReturnValue) == 0x000010, "Member 'QuartzSubsystem_DoesClockExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency \ +static_assert(alignof(QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency) == 0x000004, "Wrong alignment on QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency) == 0x000004, "Wrong size on QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency, ReturnValue) == 0x000000, "Member 'QuartzSubsystem_GetAudioRenderThreadToGameThreadAverageLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency \ +static_assert(alignof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency) == 0x000004, "Wrong alignment on QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency) == 0x000004, "Wrong size on QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency, ReturnValue) == 0x000000, "Member 'QuartzSubsystem_GetAudioRenderThreadToGameThreadMaxLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency \ +static_assert(alignof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency) == 0x000004, "Wrong alignment on QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency) == 0x000004, "Wrong size on QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency, ReturnValue) == 0x000000, "Member 'QuartzSubsystem_GetAudioRenderThreadToGameThreadMinLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetCurrentClockTimestamp \ +static_assert(alignof(QuartzSubsystem_GetCurrentClockTimestamp) == 0x000008, "Wrong alignment on QuartzSubsystem_GetCurrentClockTimestamp"); \ +static_assert(sizeof(QuartzSubsystem_GetCurrentClockTimestamp) == 0x000020, "Wrong size on QuartzSubsystem_GetCurrentClockTimestamp"); \ +static_assert(offsetof(QuartzSubsystem_GetCurrentClockTimestamp, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetCurrentClockTimestamp::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetCurrentClockTimestamp, InClockName) == 0x000008, "Member 'QuartzSubsystem_GetCurrentClockTimestamp::InClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetCurrentClockTimestamp, ReturnValue) == 0x000010, "Member 'QuartzSubsystem_GetCurrentClockTimestamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds \ +static_assert(alignof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds) == 0x000008, "Wrong alignment on QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds"); \ +static_assert(sizeof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds) == 0x000020, "Wrong size on QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds"); \ +static_assert(offsetof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds, ClockName) == 0x000008, "Member 'QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds::ClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds, QuantizationType) == 0x000010, "Member 'QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds::QuantizationType' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds, Multiplier) == 0x000014, "Member 'QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds, ReturnValue) == 0x000018, "Member 'QuartzSubsystem_GetDurationOfQuantizationTypeInSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetEstimatedClockRunTime \ +static_assert(alignof(QuartzSubsystem_GetEstimatedClockRunTime) == 0x000008, "Wrong alignment on QuartzSubsystem_GetEstimatedClockRunTime"); \ +static_assert(sizeof(QuartzSubsystem_GetEstimatedClockRunTime) == 0x000018, "Wrong size on QuartzSubsystem_GetEstimatedClockRunTime"); \ +static_assert(offsetof(QuartzSubsystem_GetEstimatedClockRunTime, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetEstimatedClockRunTime::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetEstimatedClockRunTime, InClockName) == 0x000008, "Member 'QuartzSubsystem_GetEstimatedClockRunTime::InClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetEstimatedClockRunTime, ReturnValue) == 0x000010, "Member 'QuartzSubsystem_GetEstimatedClockRunTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency \ +static_assert(alignof(QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadAverageLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency \ +static_assert(alignof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadMaxLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency \ +static_assert(alignof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetGameThreadToAudioRenderThreadMinLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetHandleForClock \ +static_assert(alignof(QuartzSubsystem_GetHandleForClock) == 0x000008, "Wrong alignment on QuartzSubsystem_GetHandleForClock"); \ +static_assert(sizeof(QuartzSubsystem_GetHandleForClock) == 0x000018, "Wrong size on QuartzSubsystem_GetHandleForClock"); \ +static_assert(offsetof(QuartzSubsystem_GetHandleForClock, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetHandleForClock::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetHandleForClock, ClockName) == 0x000008, "Member 'QuartzSubsystem_GetHandleForClock::ClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetHandleForClock, ReturnValue) == 0x000010, "Member 'QuartzSubsystem_GetHandleForClock::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetRoundTripAverageLatency \ +static_assert(alignof(QuartzSubsystem_GetRoundTripAverageLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetRoundTripAverageLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetRoundTripAverageLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetRoundTripAverageLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripAverageLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetRoundTripAverageLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripAverageLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetRoundTripAverageLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetRoundTripMaxLatency \ +static_assert(alignof(QuartzSubsystem_GetRoundTripMaxLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetRoundTripMaxLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetRoundTripMaxLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetRoundTripMaxLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripMaxLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetRoundTripMaxLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripMaxLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetRoundTripMaxLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_GetRoundTripMinLatency \ +static_assert(alignof(QuartzSubsystem_GetRoundTripMinLatency) == 0x000008, "Wrong alignment on QuartzSubsystem_GetRoundTripMinLatency"); \ +static_assert(sizeof(QuartzSubsystem_GetRoundTripMinLatency) == 0x000010, "Wrong size on QuartzSubsystem_GetRoundTripMinLatency"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripMinLatency, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_GetRoundTripMinLatency::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_GetRoundTripMinLatency, ReturnValue) == 0x000008, "Member 'QuartzSubsystem_GetRoundTripMinLatency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_IsClockRunning \ +static_assert(alignof(QuartzSubsystem_IsClockRunning) == 0x000008, "Wrong alignment on QuartzSubsystem_IsClockRunning"); \ +static_assert(sizeof(QuartzSubsystem_IsClockRunning) == 0x000018, "Wrong size on QuartzSubsystem_IsClockRunning"); \ +static_assert(offsetof(QuartzSubsystem_IsClockRunning, WorldContextObject) == 0x000000, "Member 'QuartzSubsystem_IsClockRunning::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_IsClockRunning, ClockName) == 0x000008, "Member 'QuartzSubsystem_IsClockRunning::ClockName' has a wrong offset!"); \ +static_assert(offsetof(QuartzSubsystem_IsClockRunning, ReturnValue) == 0x000010, "Member 'QuartzSubsystem_IsClockRunning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuartzSubsystem_IsQuartzEnabled \ +static_assert(alignof(QuartzSubsystem_IsQuartzEnabled) == 0x000001, "Wrong alignment on QuartzSubsystem_IsQuartzEnabled"); \ +static_assert(sizeof(QuartzSubsystem_IsQuartzEnabled) == 0x000001, "Wrong size on QuartzSubsystem_IsQuartzEnabled"); \ +static_assert(offsetof(QuartzSubsystem_IsQuartzEnabled, ReturnValue) == 0x000000, "Member 'QuartzSubsystem_IsQuartzEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UQuartzSubsystem \ +static_assert(alignof(UQuartzSubsystem) == 0x000008, "Wrong alignment on UQuartzSubsystem"); \ +static_assert(sizeof(UQuartzSubsystem) == 0x000060, "Wrong size on UQuartzSubsystem"); \ + +#define DUMPER7_ASSERTS_ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation \ +static_assert(alignof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation) == 0x000008, "Wrong alignment on ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation"); \ +static_assert(sizeof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation) == 0x000030, "Wrong size on ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, EntryPoint) == 0x000000, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, K2Node_Event_InAutomata) == 0x000008, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, K2Node_Event_InState) == 0x000010, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, K2Node_DynamicCast_AsBP_Fake_Elevator) == 0x000020, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::K2Node_DynamicCast_AsBP_Fake_Elevator' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ChangeElevatorButtonLocation_C_ExecuteUbergraph_ChangeElevatorButtonLocation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeElevatorButtonLocation_C_ReceiveExecute \ +static_assert(alignof(ChangeElevatorButtonLocation_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeElevatorButtonLocation_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeElevatorButtonLocation_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeElevatorButtonLocation_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeElevatorButtonLocation_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorButtonLocation_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeElevatorButtonLocation_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeElevatorButtonLocation_C \ +static_assert(alignof(UChangeElevatorButtonLocation_C) == 0x000008, "Wrong alignment on UChangeElevatorButtonLocation_C"); \ +static_assert(sizeof(UChangeElevatorButtonLocation_C) == 0x0000E0, "Wrong size on UChangeElevatorButtonLocation_C"); \ +static_assert(offsetof(UChangeElevatorButtonLocation_C, UberGraphFrame) == 0x000088, "Member 'UChangeElevatorButtonLocation_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorButtonLocation_C, Elevator) == 0x000090, "Member 'UChangeElevatorButtonLocation_C::Elevator' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorButtonLocation_C, New_Actor_Location) == 0x0000B8, "Member 'UChangeElevatorButtonLocation_C::New_Actor_Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTag \ +static_assert(alignof(FGameplayTag) == 0x000004, "Wrong alignment on FGameplayTag"); \ +static_assert(sizeof(FGameplayTag) == 0x000008, "Wrong size on FGameplayTag"); \ +static_assert(offsetof(FGameplayTag, TagName) == 0x000000, "Member 'FGameplayTag::TagName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagRedirect \ +static_assert(alignof(FGameplayTagRedirect) == 0x000004, "Wrong alignment on FGameplayTagRedirect"); \ +static_assert(sizeof(FGameplayTagRedirect) == 0x000010, "Wrong size on FGameplayTagRedirect"); \ +static_assert(offsetof(FGameplayTagRedirect, OldTagName) == 0x000000, "Member 'FGameplayTagRedirect::OldTagName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagRedirect, NewTagName) == 0x000008, "Member 'FGameplayTagRedirect::NewTagName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagContainer \ +static_assert(alignof(FGameplayTagContainer) == 0x000008, "Wrong alignment on FGameplayTagContainer"); \ +static_assert(sizeof(FGameplayTagContainer) == 0x000020, "Wrong size on FGameplayTagContainer"); \ +static_assert(offsetof(FGameplayTagContainer, GameplayTags) == 0x000000, "Member 'FGameplayTagContainer::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagContainer, ParentTags) == 0x000010, "Member 'FGameplayTagContainer::ParentTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagNetSerializerConfig \ +static_assert(alignof(FGameplayTagNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayTagNetSerializerConfig"); \ +static_assert(sizeof(FGameplayTagNetSerializerConfig) == 0x000010, "Wrong size on FGameplayTagNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGameplayTagQuery \ +static_assert(alignof(FGameplayTagQuery) == 0x000008, "Wrong alignment on FGameplayTagQuery"); \ +static_assert(sizeof(FGameplayTagQuery) == 0x000048, "Wrong size on FGameplayTagQuery"); \ +static_assert(offsetof(FGameplayTagQuery, TokenStreamVersion) == 0x000000, "Member 'FGameplayTagQuery::TokenStreamVersion' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagQuery, TagDictionary) == 0x000008, "Member 'FGameplayTagQuery::TagDictionary' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagQuery, QueryTokenStream) == 0x000018, "Member 'FGameplayTagQuery::QueryTokenStream' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagQuery, UserDescription) == 0x000028, "Member 'FGameplayTagQuery::UserDescription' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagQuery, AutoDescription) == 0x000038, "Member 'FGameplayTagQuery::AutoDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagContainerNetSerializerSerializationHelper \ +static_assert(alignof(FGameplayTagContainerNetSerializerSerializationHelper) == 0x000008, "Wrong alignment on FGameplayTagContainerNetSerializerSerializationHelper"); \ +static_assert(sizeof(FGameplayTagContainerNetSerializerSerializationHelper) == 0x000010, "Wrong size on FGameplayTagContainerNetSerializerSerializationHelper"); \ +static_assert(offsetof(FGameplayTagContainerNetSerializerSerializationHelper, GameplayTags) == 0x000000, "Member 'FGameplayTagContainerNetSerializerSerializationHelper::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagCreationWidgetHelper \ +static_assert(alignof(FGameplayTagCreationWidgetHelper) == 0x000001, "Wrong alignment on FGameplayTagCreationWidgetHelper"); \ +static_assert(sizeof(FGameplayTagCreationWidgetHelper) == 0x000001, "Wrong size on FGameplayTagCreationWidgetHelper"); \ + +#define DUMPER7_ASSERTS_FGameplayTagContainerNetSerializerConfig \ +static_assert(alignof(FGameplayTagContainerNetSerializerConfig) == 0x000008, "Wrong alignment on FGameplayTagContainerNetSerializerConfig"); \ +static_assert(sizeof(FGameplayTagContainerNetSerializerConfig) == 0x000010, "Wrong size on FGameplayTagContainerNetSerializerConfig"); \ + +#define DUMPER7_ASSERTS_FGameplayTagTableRow \ +static_assert(alignof(FGameplayTagTableRow) == 0x000008, "Wrong alignment on FGameplayTagTableRow"); \ +static_assert(sizeof(FGameplayTagTableRow) == 0x000020, "Wrong size on FGameplayTagTableRow"); \ +static_assert(offsetof(FGameplayTagTableRow, Tag) == 0x000008, "Member 'FGameplayTagTableRow::Tag' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagTableRow, DevComment) == 0x000010, "Member 'FGameplayTagTableRow::DevComment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRestrictedGameplayTagTableRow \ +static_assert(alignof(FRestrictedGameplayTagTableRow) == 0x000008, "Wrong alignment on FRestrictedGameplayTagTableRow"); \ +static_assert(sizeof(FRestrictedGameplayTagTableRow) == 0x000028, "Wrong size on FRestrictedGameplayTagTableRow"); \ +static_assert(offsetof(FRestrictedGameplayTagTableRow, bAllowNonRestrictedChildren) == 0x000020, "Member 'FRestrictedGameplayTagTableRow::bAllowNonRestrictedChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagSource \ +static_assert(alignof(FGameplayTagSource) == 0x000008, "Wrong alignment on FGameplayTagSource"); \ +static_assert(sizeof(FGameplayTagSource) == 0x000020, "Wrong size on FGameplayTagSource"); \ +static_assert(offsetof(FGameplayTagSource, SourceName) == 0x000000, "Member 'FGameplayTagSource::SourceName' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagSource, SourceType) == 0x000008, "Member 'FGameplayTagSource::SourceType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagSource, SourceTagList) == 0x000010, "Member 'FGameplayTagSource::SourceTagList' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagSource, SourceRestrictedTagList) == 0x000018, "Member 'FGameplayTagSource::SourceRestrictedTagList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagNode \ +static_assert(alignof(FGameplayTagNode) == 0x000008, "Wrong alignment on FGameplayTagNode"); \ +static_assert(sizeof(FGameplayTagNode) == 0x000050, "Wrong size on FGameplayTagNode"); \ + +#define DUMPER7_ASSERTS_FGameplayTagCategoryRemap \ +static_assert(alignof(FGameplayTagCategoryRemap) == 0x000008, "Wrong alignment on FGameplayTagCategoryRemap"); \ +static_assert(sizeof(FGameplayTagCategoryRemap) == 0x000020, "Wrong size on FGameplayTagCategoryRemap"); \ +static_assert(offsetof(FGameplayTagCategoryRemap, BaseCategory) == 0x000000, "Member 'FGameplayTagCategoryRemap::BaseCategory' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagCategoryRemap, RemapCategories) == 0x000010, "Member 'FGameplayTagCategoryRemap::RemapCategories' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRestrictedConfigInfo \ +static_assert(alignof(FRestrictedConfigInfo) == 0x000008, "Wrong alignment on FRestrictedConfigInfo"); \ +static_assert(sizeof(FRestrictedConfigInfo) == 0x000020, "Wrong size on FRestrictedConfigInfo"); \ +static_assert(offsetof(FRestrictedConfigInfo, RestrictedConfigName) == 0x000000, "Member 'FRestrictedConfigInfo::RestrictedConfigName' has a wrong offset!"); \ +static_assert(offsetof(FRestrictedConfigInfo, Owners) == 0x000010, "Member 'FRestrictedConfigInfo::Owners' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_AddGameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_AddGameplayTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_AddGameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_AddGameplayTag) == 0x000028, "Wrong size on BlueprintGameplayTagLibrary_AddGameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_AddGameplayTag, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_AddGameplayTag::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_AddGameplayTag, Tag) == 0x000020, "Member 'BlueprintGameplayTagLibrary_AddGameplayTag::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_AppendGameplayTagContainers \ +static_assert(alignof(BlueprintGameplayTagLibrary_AppendGameplayTagContainers) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_AppendGameplayTagContainers"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_AppendGameplayTagContainers) == 0x000040, "Wrong size on BlueprintGameplayTagLibrary_AppendGameplayTagContainers"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_AppendGameplayTagContainers, InOutTagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_AppendGameplayTagContainers::InOutTagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_AppendGameplayTagContainers, InTagContainer) == 0x000020, "Member 'BlueprintGameplayTagLibrary_AppendGameplayTagContainers::InTagContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_BreakGameplayTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_BreakGameplayTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_BreakGameplayTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_BreakGameplayTagContainer) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_BreakGameplayTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_BreakGameplayTagContainer, GameplayTagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_BreakGameplayTagContainer::GameplayTagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_BreakGameplayTagContainer, GameplayTags) == 0x000020, "Member 'BlueprintGameplayTagLibrary_BreakGameplayTagContainer::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery \ +static_assert(alignof(BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery) == 0x000070, "Wrong size on BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery, TagQuery) == 0x000020, "Member 'BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery, ReturnValue) == 0x000068, "Member 'BlueprintGameplayTagLibrary_DoesContainerMatchTagQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag) == 0x000020, "Wrong size on BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag, TagContainerInterface) == 0x000000, "Member 'BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag::TagContainerInterface' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag, Tag) == 0x000010, "Member 'BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag, ReturnValue) == 0x000018, "Member 'BlueprintGameplayTagLibrary_DoesTagAssetInterfaceHaveTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_EqualEqual_GameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTag) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_EqualEqual_GameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTag) == 0x000014, "Wrong size on BlueprintGameplayTagLibrary_EqualEqual_GameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTag, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTag::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTag, B) == 0x000008, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTag::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTag, ReturnValue) == 0x000010, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer) == 0x000048, "Wrong size on BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer, B) == 0x000020, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer, ReturnValue) == 0x000040, "Member 'BlueprintGameplayTagLibrary_EqualEqual_GameplayTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery \ +static_assert(alignof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery) == 0x000068, "Wrong size on BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery, WorldContextObject) == 0x000000, "Member 'BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery, ActorClass) == 0x000008, "Member 'BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery::ActorClass' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery, GameplayTagQuery) == 0x000010, "Member 'BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery::GameplayTagQuery' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery, OutActors) == 0x000058, "Member 'BlueprintGameplayTagLibrary_GetAllActorsOfClassMatchingTagQuery::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag) == 0x000018, "Wrong size on BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag, GameplayTag) == 0x000000, "Member 'BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag, ReturnValue) == 0x000008, "Member 'BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_GetDebugStringFromGameplayTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer) == 0x000028, "Wrong size on BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_GetNumGameplayTagsInContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_GetTagName \ +static_assert(alignof(BlueprintGameplayTagLibrary_GetTagName) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_GetTagName"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_GetTagName) == 0x000010, "Wrong size on BlueprintGameplayTagLibrary_GetTagName"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetTagName, GameplayTag) == 0x000000, "Member 'BlueprintGameplayTagLibrary_GetTagName::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_GetTagName, ReturnValue) == 0x000008, "Member 'BlueprintGameplayTagLibrary_GetTagName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags) == 0x000038, "Wrong size on BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags, TagContainerInterface) == 0x000000, "Member 'BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags::TagContainerInterface' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags, OtherContainer) == 0x000010, "Member 'BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags::OtherContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags, ReturnValue) == 0x000030, "Member 'BlueprintGameplayTagLibrary_HasAllMatchingGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_HasAllTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_HasAllTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_HasAllTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_HasAllTags) == 0x000048, "Wrong size on BlueprintGameplayTagLibrary_HasAllTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllTags, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_HasAllTags::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllTags, OtherContainer) == 0x000020, "Member 'BlueprintGameplayTagLibrary_HasAllTags::OtherContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllTags, bExactMatch) == 0x000040, "Member 'BlueprintGameplayTagLibrary_HasAllTags::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAllTags, ReturnValue) == 0x000041, "Member 'BlueprintGameplayTagLibrary_HasAllTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_HasAnyTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_HasAnyTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_HasAnyTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_HasAnyTags) == 0x000048, "Wrong size on BlueprintGameplayTagLibrary_HasAnyTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAnyTags, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_HasAnyTags::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAnyTags, OtherContainer) == 0x000020, "Member 'BlueprintGameplayTagLibrary_HasAnyTags::OtherContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAnyTags, bExactMatch) == 0x000040, "Member 'BlueprintGameplayTagLibrary_HasAnyTags::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasAnyTags, ReturnValue) == 0x000041, "Member 'BlueprintGameplayTagLibrary_HasAnyTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_HasTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_HasTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_HasTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_HasTag) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_HasTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasTag, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_HasTag::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasTag, Tag) == 0x000020, "Member 'BlueprintGameplayTagLibrary_HasTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasTag, bExactMatch) == 0x000028, "Member 'BlueprintGameplayTagLibrary_HasTag::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_HasTag, ReturnValue) == 0x000029, "Member 'BlueprintGameplayTagLibrary_HasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_IsGameplayTagValid \ +static_assert(alignof(BlueprintGameplayTagLibrary_IsGameplayTagValid) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_IsGameplayTagValid"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_IsGameplayTagValid) == 0x00000C, "Wrong size on BlueprintGameplayTagLibrary_IsGameplayTagValid"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_IsGameplayTagValid, GameplayTag) == 0x000000, "Member 'BlueprintGameplayTagLibrary_IsGameplayTagValid::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_IsGameplayTagValid, ReturnValue) == 0x000008, "Member 'BlueprintGameplayTagLibrary_IsGameplayTagValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_IsTagQueryEmpty \ +static_assert(alignof(BlueprintGameplayTagLibrary_IsTagQueryEmpty) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_IsTagQueryEmpty"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_IsTagQueryEmpty) == 0x000050, "Wrong size on BlueprintGameplayTagLibrary_IsTagQueryEmpty"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_IsTagQueryEmpty, TagQuery) == 0x000000, "Member 'BlueprintGameplayTagLibrary_IsTagQueryEmpty::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_IsTagQueryEmpty, ReturnValue) == 0x000048, "Member 'BlueprintGameplayTagLibrary_IsTagQueryEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray, GameplayTags) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray, ReturnValue) == 0x000010, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag) == 0x000028, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag, SingleTag) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag::SingleTag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag, ReturnValue) == 0x000008, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagContainerFromTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagQuery \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagQuery"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery) == 0x000090, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagQuery"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery, TagQuery) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery, ReturnValue) == 0x000048, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags) == 0x000068, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags, InTags) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags::InTags' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAllTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags) == 0x000068, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags, InTags) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags::InTags' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchAnyTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags) == 0x000068, "Wrong size on BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags, InTags) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags::InTags' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_MakeGameplayTagQuery_MatchNoTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeLiteralGameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTag) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_MakeLiteralGameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTag) == 0x000010, "Wrong size on BlueprintGameplayTagLibrary_MakeLiteralGameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTag, Value) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeLiteralGameplayTag::Value' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTag, ReturnValue) == 0x000008, "Member 'BlueprintGameplayTagLibrary_MakeLiteralGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer) == 0x000040, "Wrong size on BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer, Value) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer::Value' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer, ReturnValue) == 0x000020, "Member 'BlueprintGameplayTagLibrary_MakeLiteralGameplayTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MatchesAnyTags \ +static_assert(alignof(BlueprintGameplayTagLibrary_MatchesAnyTags) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_MatchesAnyTags"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MatchesAnyTags) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_MatchesAnyTags"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesAnyTags, TagOne) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MatchesAnyTags::TagOne' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesAnyTags, OtherContainer) == 0x000008, "Member 'BlueprintGameplayTagLibrary_MatchesAnyTags::OtherContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesAnyTags, bExactMatch) == 0x000028, "Member 'BlueprintGameplayTagLibrary_MatchesAnyTags::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesAnyTags, ReturnValue) == 0x000029, "Member 'BlueprintGameplayTagLibrary_MatchesAnyTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_MatchesTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_MatchesTag) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_MatchesTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_MatchesTag) == 0x000014, "Wrong size on BlueprintGameplayTagLibrary_MatchesTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesTag, TagOne) == 0x000000, "Member 'BlueprintGameplayTagLibrary_MatchesTag::TagOne' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesTag, TagTwo) == 0x000008, "Member 'BlueprintGameplayTagLibrary_MatchesTag::TagTwo' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesTag, bExactMatch) == 0x000010, "Member 'BlueprintGameplayTagLibrary_MatchesTag::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_MatchesTag, ReturnValue) == 0x000011, "Member 'BlueprintGameplayTagLibrary_MatchesTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_NotEqual_GameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_NotEqual_GameplayTag) == 0x000004, "Wrong alignment on BlueprintGameplayTagLibrary_NotEqual_GameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_NotEqual_GameplayTag) == 0x000014, "Wrong size on BlueprintGameplayTagLibrary_NotEqual_GameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTag, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTag::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTag, B) == 0x000008, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTag::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTag, ReturnValue) == 0x000010, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer) == 0x000048, "Wrong size on BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer, B) == 0x000020, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer, ReturnValue) == 0x000040, "Member 'BlueprintGameplayTagLibrary_NotEqual_GameplayTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer \ +static_assert(alignof(BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer) == 0x000038, "Wrong size on BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer, B) == 0x000020, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer, ReturnValue) == 0x000030, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagContainerTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_NotEqual_TagTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_NotEqual_TagTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_NotEqual_TagTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_NotEqual_TagTag) == 0x000020, "Wrong size on BlueprintGameplayTagLibrary_NotEqual_TagTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagTag, A) == 0x000000, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagTag::A' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagTag, B) == 0x000008, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagTag::B' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_NotEqual_TagTag, ReturnValue) == 0x000018, "Member 'BlueprintGameplayTagLibrary_NotEqual_TagTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlueprintGameplayTagLibrary_RemoveGameplayTag \ +static_assert(alignof(BlueprintGameplayTagLibrary_RemoveGameplayTag) == 0x000008, "Wrong alignment on BlueprintGameplayTagLibrary_RemoveGameplayTag"); \ +static_assert(sizeof(BlueprintGameplayTagLibrary_RemoveGameplayTag) == 0x000030, "Wrong size on BlueprintGameplayTagLibrary_RemoveGameplayTag"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_RemoveGameplayTag, TagContainer) == 0x000000, "Member 'BlueprintGameplayTagLibrary_RemoveGameplayTag::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_RemoveGameplayTag, Tag) == 0x000020, "Member 'BlueprintGameplayTagLibrary_RemoveGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(BlueprintGameplayTagLibrary_RemoveGameplayTag, ReturnValue) == 0x000028, "Member 'BlueprintGameplayTagLibrary_RemoveGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlueprintGameplayTagLibrary \ +static_assert(alignof(UBlueprintGameplayTagLibrary) == 0x000008, "Wrong alignment on UBlueprintGameplayTagLibrary"); \ +static_assert(sizeof(UBlueprintGameplayTagLibrary) == 0x000028, "Wrong size on UBlueprintGameplayTagLibrary"); \ + +#define DUMPER7_ASSERTS_GameplayTagAssetInterface_GetOwnedGameplayTags \ +static_assert(alignof(GameplayTagAssetInterface_GetOwnedGameplayTags) == 0x000008, "Wrong alignment on GameplayTagAssetInterface_GetOwnedGameplayTags"); \ +static_assert(sizeof(GameplayTagAssetInterface_GetOwnedGameplayTags) == 0x000020, "Wrong size on GameplayTagAssetInterface_GetOwnedGameplayTags"); \ +static_assert(offsetof(GameplayTagAssetInterface_GetOwnedGameplayTags, TagContainer) == 0x000000, "Member 'GameplayTagAssetInterface_GetOwnedGameplayTags::TagContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTagAssetInterface_HasAllMatchingGameplayTags \ +static_assert(alignof(GameplayTagAssetInterface_HasAllMatchingGameplayTags) == 0x000008, "Wrong alignment on GameplayTagAssetInterface_HasAllMatchingGameplayTags"); \ +static_assert(sizeof(GameplayTagAssetInterface_HasAllMatchingGameplayTags) == 0x000028, "Wrong size on GameplayTagAssetInterface_HasAllMatchingGameplayTags"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasAllMatchingGameplayTags, TagContainer) == 0x000000, "Member 'GameplayTagAssetInterface_HasAllMatchingGameplayTags::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasAllMatchingGameplayTags, ReturnValue) == 0x000020, "Member 'GameplayTagAssetInterface_HasAllMatchingGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTagAssetInterface_HasAnyMatchingGameplayTags \ +static_assert(alignof(GameplayTagAssetInterface_HasAnyMatchingGameplayTags) == 0x000008, "Wrong alignment on GameplayTagAssetInterface_HasAnyMatchingGameplayTags"); \ +static_assert(sizeof(GameplayTagAssetInterface_HasAnyMatchingGameplayTags) == 0x000028, "Wrong size on GameplayTagAssetInterface_HasAnyMatchingGameplayTags"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasAnyMatchingGameplayTags, TagContainer) == 0x000000, "Member 'GameplayTagAssetInterface_HasAnyMatchingGameplayTags::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasAnyMatchingGameplayTags, ReturnValue) == 0x000020, "Member 'GameplayTagAssetInterface_HasAnyMatchingGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTagAssetInterface_HasMatchingGameplayTag \ +static_assert(alignof(GameplayTagAssetInterface_HasMatchingGameplayTag) == 0x000004, "Wrong alignment on GameplayTagAssetInterface_HasMatchingGameplayTag"); \ +static_assert(sizeof(GameplayTagAssetInterface_HasMatchingGameplayTag) == 0x00000C, "Wrong size on GameplayTagAssetInterface_HasMatchingGameplayTag"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasMatchingGameplayTag, TagToCheck) == 0x000000, "Member 'GameplayTagAssetInterface_HasMatchingGameplayTag::TagToCheck' has a wrong offset!"); \ +static_assert(offsetof(GameplayTagAssetInterface_HasMatchingGameplayTag, ReturnValue) == 0x000008, "Member 'GameplayTagAssetInterface_HasMatchingGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGameplayTagAssetInterface \ +static_assert(alignof(IGameplayTagAssetInterface) == 0x000001, "Wrong alignment on IGameplayTagAssetInterface"); \ +static_assert(sizeof(IGameplayTagAssetInterface) == 0x000001, "Wrong size on IGameplayTagAssetInterface"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQuery \ +static_assert(alignof(UEditableGameplayTagQuery) == 0x000008, "Wrong alignment on UEditableGameplayTagQuery"); \ +static_assert(sizeof(UEditableGameplayTagQuery) == 0x000098, "Wrong size on UEditableGameplayTagQuery"); \ +static_assert(offsetof(UEditableGameplayTagQuery, UserDescription) == 0x000028, "Member 'UEditableGameplayTagQuery::UserDescription' has a wrong offset!"); \ +static_assert(offsetof(UEditableGameplayTagQuery, RootExpression) == 0x000048, "Member 'UEditableGameplayTagQuery::RootExpression' has a wrong offset!"); \ +static_assert(offsetof(UEditableGameplayTagQuery, TagQueryExportText_Helper) == 0x000050, "Member 'UEditableGameplayTagQuery::TagQueryExportText_Helper' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression \ +static_assert(alignof(UEditableGameplayTagQueryExpression) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression) == 0x000028, "Wrong size on UEditableGameplayTagQueryExpression"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_AnyTagsMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_AnyTagsMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_AnyTagsMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_AnyTagsMatch) == 0x000048, "Wrong size on UEditableGameplayTagQueryExpression_AnyTagsMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_AnyTagsMatch, Tags) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_AnyTagsMatch::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_AllTagsMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_AllTagsMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_AllTagsMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_AllTagsMatch) == 0x000048, "Wrong size on UEditableGameplayTagQueryExpression_AllTagsMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_AllTagsMatch, Tags) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_AllTagsMatch::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_NoTagsMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_NoTagsMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_NoTagsMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_NoTagsMatch) == 0x000048, "Wrong size on UEditableGameplayTagQueryExpression_NoTagsMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_NoTagsMatch, Tags) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_NoTagsMatch::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_AnyExprMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_AnyExprMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_AnyExprMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_AnyExprMatch) == 0x000038, "Wrong size on UEditableGameplayTagQueryExpression_AnyExprMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_AnyExprMatch, Expressions) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_AnyExprMatch::Expressions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_AllExprMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_AllExprMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_AllExprMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_AllExprMatch) == 0x000038, "Wrong size on UEditableGameplayTagQueryExpression_AllExprMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_AllExprMatch, Expressions) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_AllExprMatch::Expressions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditableGameplayTagQueryExpression_NoExprMatch \ +static_assert(alignof(UEditableGameplayTagQueryExpression_NoExprMatch) == 0x000008, "Wrong alignment on UEditableGameplayTagQueryExpression_NoExprMatch"); \ +static_assert(sizeof(UEditableGameplayTagQueryExpression_NoExprMatch) == 0x000038, "Wrong size on UEditableGameplayTagQueryExpression_NoExprMatch"); \ +static_assert(offsetof(UEditableGameplayTagQueryExpression_NoExprMatch, Expressions) == 0x000028, "Member 'UEditableGameplayTagQueryExpression_NoExprMatch::Expressions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTagsManager \ +static_assert(alignof(UGameplayTagsManager) == 0x000008, "Wrong alignment on UGameplayTagsManager"); \ +static_assert(sizeof(UGameplayTagsManager) == 0x000298, "Wrong size on UGameplayTagsManager"); \ +static_assert(offsetof(UGameplayTagsManager, TagSources) == 0x000188, "Member 'UGameplayTagsManager::TagSources' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsManager, GameplayTagTables) == 0x000288, "Member 'UGameplayTagsManager::GameplayTagTables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTagsList \ +static_assert(alignof(UGameplayTagsList) == 0x000008, "Wrong alignment on UGameplayTagsList"); \ +static_assert(sizeof(UGameplayTagsList) == 0x000048, "Wrong size on UGameplayTagsList"); \ +static_assert(offsetof(UGameplayTagsList, ConfigFileName) == 0x000028, "Member 'UGameplayTagsList::ConfigFileName' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsList, GameplayTagList) == 0x000038, "Member 'UGameplayTagsList::GameplayTagList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URestrictedGameplayTagsList \ +static_assert(alignof(URestrictedGameplayTagsList) == 0x000008, "Wrong alignment on URestrictedGameplayTagsList"); \ +static_assert(sizeof(URestrictedGameplayTagsList) == 0x000048, "Wrong size on URestrictedGameplayTagsList"); \ +static_assert(offsetof(URestrictedGameplayTagsList, ConfigFileName) == 0x000028, "Member 'URestrictedGameplayTagsList::ConfigFileName' has a wrong offset!"); \ +static_assert(offsetof(URestrictedGameplayTagsList, RestrictedGameplayTagList) == 0x000038, "Member 'URestrictedGameplayTagsList::RestrictedGameplayTagList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTagsSettings \ +static_assert(alignof(UGameplayTagsSettings) == 0x000008, "Wrong alignment on UGameplayTagsSettings"); \ +static_assert(sizeof(UGameplayTagsSettings) == 0x0000B8, "Wrong size on UGameplayTagsSettings"); \ +static_assert(offsetof(UGameplayTagsSettings, ImportTagsFromConfig) == 0x000048, "Member 'UGameplayTagsSettings::ImportTagsFromConfig' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, WarnOnInvalidTags) == 0x000049, "Member 'UGameplayTagsSettings::WarnOnInvalidTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, ClearInvalidTags) == 0x00004A, "Member 'UGameplayTagsSettings::ClearInvalidTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, AllowEditorTagUnloading) == 0x00004B, "Member 'UGameplayTagsSettings::AllowEditorTagUnloading' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, AllowGameTagUnloading) == 0x00004C, "Member 'UGameplayTagsSettings::AllowGameTagUnloading' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, FastReplication) == 0x00004D, "Member 'UGameplayTagsSettings::FastReplication' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, InvalidTagCharacters) == 0x000050, "Member 'UGameplayTagsSettings::InvalidTagCharacters' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, CategoryRemapping) == 0x000060, "Member 'UGameplayTagsSettings::CategoryRemapping' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, GameplayTagTableList) == 0x000070, "Member 'UGameplayTagsSettings::GameplayTagTableList' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, GameplayTagRedirects) == 0x000080, "Member 'UGameplayTagsSettings::GameplayTagRedirects' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, CommonlyReplicatedTags) == 0x000090, "Member 'UGameplayTagsSettings::CommonlyReplicatedTags' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, NumBitsForContainerSize) == 0x0000A0, "Member 'UGameplayTagsSettings::NumBitsForContainerSize' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, NetIndexFirstBitSegment) == 0x0000A4, "Member 'UGameplayTagsSettings::NetIndexFirstBitSegment' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsSettings, RestrictedConfigFiles) == 0x0000A8, "Member 'UGameplayTagsSettings::RestrictedConfigFiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTagsDeveloperSettings \ +static_assert(alignof(UGameplayTagsDeveloperSettings) == 0x000008, "Wrong alignment on UGameplayTagsDeveloperSettings"); \ +static_assert(sizeof(UGameplayTagsDeveloperSettings) == 0x000050, "Wrong size on UGameplayTagsDeveloperSettings"); \ +static_assert(offsetof(UGameplayTagsDeveloperSettings, DeveloperConfigName) == 0x000038, "Member 'UGameplayTagsDeveloperSettings::DeveloperConfigName' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTagsDeveloperSettings, FavoriteTagSource) == 0x000048, "Member 'UGameplayTagsDeveloperSettings::FavoriteTagSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTextureImportSettings \ +static_assert(alignof(UTextureImportSettings) == 0x000008, "Wrong alignment on UTextureImportSettings"); \ +static_assert(sizeof(UTextureImportSettings) == 0x000040, "Wrong size on UTextureImportSettings"); \ +static_assert(offsetof(UTextureImportSettings, AutoVTSize) == 0x000038, "Member 'UTextureImportSettings::AutoVTSize' has a wrong offset!"); \ +static_assert(offsetof(UTextureImportSettings, bEnableNormalizeNormals) == 0x00003C, "Member 'UTextureImportSettings::bEnableNormalizeNormals' has a wrong offset!"); \ +static_assert(offsetof(UTextureImportSettings, bEnableFastMipFilter) == 0x00003D, "Member 'UTextureImportSettings::bEnableFastMipFilter' has a wrong offset!"); \ +static_assert(offsetof(UTextureImportSettings, CompressedFormatForFloatTextures) == 0x00003E, "Member 'UTextureImportSettings::CompressedFormatForFloatTextures' has a wrong offset!"); \ +static_assert(offsetof(UTextureImportSettings, PNGInfill) == 0x00003F, "Member 'UTextureImportSettings::PNGInfill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompositionGraphCapturePasses \ +static_assert(alignof(FCompositionGraphCapturePasses) == 0x000008, "Wrong alignment on FCompositionGraphCapturePasses"); \ +static_assert(sizeof(FCompositionGraphCapturePasses) == 0x000010, "Wrong size on FCompositionGraphCapturePasses"); \ +static_assert(offsetof(FCompositionGraphCapturePasses, Value) == 0x000000, "Member 'FCompositionGraphCapturePasses::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCaptureResolution \ +static_assert(alignof(FCaptureResolution) == 0x000004, "Wrong alignment on FCaptureResolution"); \ +static_assert(sizeof(FCaptureResolution) == 0x000008, "Wrong size on FCaptureResolution"); \ +static_assert(offsetof(FCaptureResolution, ResX) == 0x000000, "Member 'FCaptureResolution::ResX' has a wrong offset!"); \ +static_assert(offsetof(FCaptureResolution, ResY) == 0x000004, "Member 'FCaptureResolution::ResY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneCaptureSettings \ +static_assert(alignof(FMovieSceneCaptureSettings) == 0x000008, "Wrong alignment on FMovieSceneCaptureSettings"); \ +static_assert(sizeof(FMovieSceneCaptureSettings) == 0x000070, "Wrong size on FMovieSceneCaptureSettings"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, OutputDirectory) == 0x000000, "Member 'FMovieSceneCaptureSettings::OutputDirectory' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, GameModeOverride) == 0x000010, "Member 'FMovieSceneCaptureSettings::GameModeOverride' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, OutputFormat) == 0x000018, "Member 'FMovieSceneCaptureSettings::OutputFormat' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bOverwriteExisting) == 0x000028, "Member 'FMovieSceneCaptureSettings::bOverwriteExisting' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bUseRelativeFrameNumbers) == 0x000029, "Member 'FMovieSceneCaptureSettings::bUseRelativeFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, HandleFrames) == 0x00002C, "Member 'FMovieSceneCaptureSettings::HandleFrames' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, MovieExtension) == 0x000030, "Member 'FMovieSceneCaptureSettings::MovieExtension' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, ZeroPadFrameNumbers) == 0x000040, "Member 'FMovieSceneCaptureSettings::ZeroPadFrameNumbers' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, FrameRate) == 0x000044, "Member 'FMovieSceneCaptureSettings::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bUseCustomFrameRate) == 0x00004C, "Member 'FMovieSceneCaptureSettings::bUseCustomFrameRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, CustomFrameRate) == 0x000050, "Member 'FMovieSceneCaptureSettings::CustomFrameRate' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, Resolution) == 0x000058, "Member 'FMovieSceneCaptureSettings::Resolution' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bEnableTextureStreaming) == 0x000060, "Member 'FMovieSceneCaptureSettings::bEnableTextureStreaming' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bCinematicEngineScalability) == 0x000061, "Member 'FMovieSceneCaptureSettings::bCinematicEngineScalability' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bCinematicMode) == 0x000062, "Member 'FMovieSceneCaptureSettings::bCinematicMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bAllowMovement) == 0x000063, "Member 'FMovieSceneCaptureSettings::bAllowMovement' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bAllowTurning) == 0x000064, "Member 'FMovieSceneCaptureSettings::bAllowTurning' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bShowPlayer) == 0x000065, "Member 'FMovieSceneCaptureSettings::bShowPlayer' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bShowHUD) == 0x000066, "Member 'FMovieSceneCaptureSettings::bShowHUD' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, bUsePathTracer) == 0x000067, "Member 'FMovieSceneCaptureSettings::bUsePathTracer' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneCaptureSettings, PathTracerSamplePerPixel) == 0x000068, "Member 'FMovieSceneCaptureSettings::PathTracerSamplePerPixel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFrameMetrics \ +static_assert(alignof(FFrameMetrics) == 0x000004, "Wrong alignment on FFrameMetrics"); \ +static_assert(sizeof(FFrameMetrics) == 0x000010, "Wrong size on FFrameMetrics"); \ +static_assert(offsetof(FFrameMetrics, TotalElapsedTime) == 0x000000, "Member 'FFrameMetrics::TotalElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(FFrameMetrics, FrameDelta) == 0x000004, "Member 'FFrameMetrics::FrameDelta' has a wrong offset!"); \ +static_assert(offsetof(FFrameMetrics, FrameNumber) == 0x000008, "Member 'FFrameMetrics::FrameNumber' has a wrong offset!"); \ +static_assert(offsetof(FFrameMetrics, NumDroppedFrames) == 0x00000C, "Member 'FFrameMetrics::NumDroppedFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCapturedPixelsID \ +static_assert(alignof(FCapturedPixelsID) == 0x000008, "Wrong alignment on FCapturedPixelsID"); \ +static_assert(sizeof(FCapturedPixelsID) == 0x000050, "Wrong size on FCapturedPixelsID"); \ +static_assert(offsetof(FCapturedPixelsID, Identifiers) == 0x000000, "Member 'FCapturedPixelsID::Identifiers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCapturedPixels \ +static_assert(alignof(FCapturedPixels) == 0x000008, "Wrong alignment on FCapturedPixels"); \ +static_assert(sizeof(FCapturedPixels) == 0x000010, "Wrong size on FCapturedPixels"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureProtocolBase_GetState \ +static_assert(alignof(MovieSceneCaptureProtocolBase_GetState) == 0x000001, "Wrong alignment on MovieSceneCaptureProtocolBase_GetState"); \ +static_assert(sizeof(MovieSceneCaptureProtocolBase_GetState) == 0x000001, "Wrong size on MovieSceneCaptureProtocolBase_GetState"); \ +static_assert(offsetof(MovieSceneCaptureProtocolBase_GetState, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureProtocolBase_GetState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureProtocolBase_IsCapturing \ +static_assert(alignof(MovieSceneCaptureProtocolBase_IsCapturing) == 0x000001, "Wrong alignment on MovieSceneCaptureProtocolBase_IsCapturing"); \ +static_assert(sizeof(MovieSceneCaptureProtocolBase_IsCapturing) == 0x000001, "Wrong size on MovieSceneCaptureProtocolBase_IsCapturing"); \ +static_assert(offsetof(MovieSceneCaptureProtocolBase_IsCapturing, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureProtocolBase_IsCapturing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCaptureProtocolBase \ +static_assert(alignof(UMovieSceneCaptureProtocolBase) == 0x000008, "Wrong alignment on UMovieSceneCaptureProtocolBase"); \ +static_assert(sizeof(UMovieSceneCaptureProtocolBase) == 0x000058, "Wrong size on UMovieSceneCaptureProtocolBase"); \ +static_assert(offsetof(UMovieSceneCaptureProtocolBase, State) == 0x000050, "Member 'UMovieSceneCaptureProtocolBase::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAudioCaptureProtocolBase \ +static_assert(alignof(UMovieSceneAudioCaptureProtocolBase) == 0x000008, "Wrong alignment on UMovieSceneAudioCaptureProtocolBase"); \ +static_assert(sizeof(UMovieSceneAudioCaptureProtocolBase) == 0x000058, "Wrong size on UMovieSceneAudioCaptureProtocolBase"); \ + +#define DUMPER7_ASSERTS_UNullAudioCaptureProtocol \ +static_assert(alignof(UNullAudioCaptureProtocol) == 0x000008, "Wrong alignment on UNullAudioCaptureProtocol"); \ +static_assert(sizeof(UNullAudioCaptureProtocol) == 0x000058, "Wrong size on UNullAudioCaptureProtocol"); \ + +#define DUMPER7_ASSERTS_UMasterAudioSubmixCaptureProtocol \ +static_assert(alignof(UMasterAudioSubmixCaptureProtocol) == 0x000008, "Wrong alignment on UMasterAudioSubmixCaptureProtocol"); \ +static_assert(sizeof(UMasterAudioSubmixCaptureProtocol) == 0x000090, "Wrong size on UMasterAudioSubmixCaptureProtocol"); \ +static_assert(offsetof(UMasterAudioSubmixCaptureProtocol, Filename) == 0x000058, "Member 'UMasterAudioSubmixCaptureProtocol::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneImageCaptureProtocolBase \ +static_assert(alignof(UMovieSceneImageCaptureProtocolBase) == 0x000008, "Wrong alignment on UMovieSceneImageCaptureProtocolBase"); \ +static_assert(sizeof(UMovieSceneImageCaptureProtocolBase) == 0x000058, "Wrong size on UMovieSceneImageCaptureProtocolBase"); \ + +#define DUMPER7_ASSERTS_UCompositionGraphCaptureProtocol \ +static_assert(alignof(UCompositionGraphCaptureProtocol) == 0x000008, "Wrong alignment on UCompositionGraphCaptureProtocol"); \ +static_assert(sizeof(UCompositionGraphCaptureProtocol) == 0x0000C8, "Wrong size on UCompositionGraphCaptureProtocol"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, IncludeRenderPasses) == 0x000058, "Member 'UCompositionGraphCaptureProtocol::IncludeRenderPasses' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, bCaptureFramesInHDR) == 0x000068, "Member 'UCompositionGraphCaptureProtocol::bCaptureFramesInHDR' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, HDRCompressionQuality) == 0x00006C, "Member 'UCompositionGraphCaptureProtocol::HDRCompressionQuality' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, CaptureGamut) == 0x000070, "Member 'UCompositionGraphCaptureProtocol::CaptureGamut' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, PostProcessingMaterial) == 0x000078, "Member 'UCompositionGraphCaptureProtocol::PostProcessingMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, bDisableScreenPercentage) == 0x000098, "Member 'UCompositionGraphCaptureProtocol::bDisableScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(UCompositionGraphCaptureProtocol, PostProcessingMaterialPtr) == 0x0000A0, "Member 'UCompositionGraphCaptureProtocol::PostProcessingMaterialPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMovieSceneCaptureInterface \ +static_assert(alignof(IMovieSceneCaptureInterface) == 0x000001, "Wrong alignment on IMovieSceneCaptureInterface"); \ +static_assert(sizeof(IMovieSceneCaptureInterface) == 0x000001, "Wrong size on IMovieSceneCaptureInterface"); \ + +#define DUMPER7_ASSERTS_UFrameGrabberProtocol \ +static_assert(alignof(UFrameGrabberProtocol) == 0x000008, "Wrong alignment on UFrameGrabberProtocol"); \ +static_assert(sizeof(UFrameGrabberProtocol) == 0x000068, "Wrong size on UFrameGrabberProtocol"); \ + +#define DUMPER7_ASSERTS_UImageSequenceProtocol \ +static_assert(alignof(UImageSequenceProtocol) == 0x000008, "Wrong alignment on UImageSequenceProtocol"); \ +static_assert(sizeof(UImageSequenceProtocol) == 0x0000D8, "Wrong size on UImageSequenceProtocol"); \ + +#define DUMPER7_ASSERTS_UCompressedImageSequenceProtocol \ +static_assert(alignof(UCompressedImageSequenceProtocol) == 0x000008, "Wrong alignment on UCompressedImageSequenceProtocol"); \ +static_assert(sizeof(UCompressedImageSequenceProtocol) == 0x0000E0, "Wrong size on UCompressedImageSequenceProtocol"); \ +static_assert(offsetof(UCompressedImageSequenceProtocol, CompressionQuality) == 0x0000D8, "Member 'UCompressedImageSequenceProtocol::CompressionQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImageSequenceProtocol_BMP \ +static_assert(alignof(UImageSequenceProtocol_BMP) == 0x000008, "Wrong alignment on UImageSequenceProtocol_BMP"); \ +static_assert(sizeof(UImageSequenceProtocol_BMP) == 0x0000D8, "Wrong size on UImageSequenceProtocol_BMP"); \ + +#define DUMPER7_ASSERTS_UImageSequenceProtocol_PNG \ +static_assert(alignof(UImageSequenceProtocol_PNG) == 0x000008, "Wrong alignment on UImageSequenceProtocol_PNG"); \ +static_assert(sizeof(UImageSequenceProtocol_PNG) == 0x0000E0, "Wrong size on UImageSequenceProtocol_PNG"); \ + +#define DUMPER7_ASSERTS_UImageSequenceProtocol_JPG \ +static_assert(alignof(UImageSequenceProtocol_JPG) == 0x000008, "Wrong alignment on UImageSequenceProtocol_JPG"); \ +static_assert(sizeof(UImageSequenceProtocol_JPG) == 0x0000E0, "Wrong size on UImageSequenceProtocol_JPG"); \ + +#define DUMPER7_ASSERTS_UImageSequenceProtocol_EXR \ +static_assert(alignof(UImageSequenceProtocol_EXR) == 0x000008, "Wrong alignment on UImageSequenceProtocol_EXR"); \ +static_assert(sizeof(UImageSequenceProtocol_EXR) == 0x0000E8, "Wrong size on UImageSequenceProtocol_EXR"); \ +static_assert(offsetof(UImageSequenceProtocol_EXR, bCompressed) == 0x0000D8, "Member 'UImageSequenceProtocol_EXR::bCompressed' has a wrong offset!"); \ +static_assert(offsetof(UImageSequenceProtocol_EXR, CaptureGamut) == 0x0000D9, "Member 'UImageSequenceProtocol_EXR::CaptureGamut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCapture_GetAudioCaptureProtocol \ +static_assert(alignof(MovieSceneCapture_GetAudioCaptureProtocol) == 0x000008, "Wrong alignment on MovieSceneCapture_GetAudioCaptureProtocol"); \ +static_assert(sizeof(MovieSceneCapture_GetAudioCaptureProtocol) == 0x000008, "Wrong size on MovieSceneCapture_GetAudioCaptureProtocol"); \ +static_assert(offsetof(MovieSceneCapture_GetAudioCaptureProtocol, ReturnValue) == 0x000000, "Member 'MovieSceneCapture_GetAudioCaptureProtocol::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCapture_GetImageCaptureProtocol \ +static_assert(alignof(MovieSceneCapture_GetImageCaptureProtocol) == 0x000008, "Wrong alignment on MovieSceneCapture_GetImageCaptureProtocol"); \ +static_assert(sizeof(MovieSceneCapture_GetImageCaptureProtocol) == 0x000008, "Wrong size on MovieSceneCapture_GetImageCaptureProtocol"); \ +static_assert(offsetof(MovieSceneCapture_GetImageCaptureProtocol, ReturnValue) == 0x000000, "Member 'MovieSceneCapture_GetImageCaptureProtocol::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCapture_SetAudioCaptureProtocolType \ +static_assert(alignof(MovieSceneCapture_SetAudioCaptureProtocolType) == 0x000008, "Wrong alignment on MovieSceneCapture_SetAudioCaptureProtocolType"); \ +static_assert(sizeof(MovieSceneCapture_SetAudioCaptureProtocolType) == 0x000008, "Wrong size on MovieSceneCapture_SetAudioCaptureProtocolType"); \ +static_assert(offsetof(MovieSceneCapture_SetAudioCaptureProtocolType, ProtocolType) == 0x000000, "Member 'MovieSceneCapture_SetAudioCaptureProtocolType::ProtocolType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCapture_SetImageCaptureProtocolType \ +static_assert(alignof(MovieSceneCapture_SetImageCaptureProtocolType) == 0x000008, "Wrong alignment on MovieSceneCapture_SetImageCaptureProtocolType"); \ +static_assert(sizeof(MovieSceneCapture_SetImageCaptureProtocolType) == 0x000008, "Wrong size on MovieSceneCapture_SetImageCaptureProtocolType"); \ +static_assert(offsetof(MovieSceneCapture_SetImageCaptureProtocolType, ProtocolType) == 0x000000, "Member 'MovieSceneCapture_SetImageCaptureProtocolType::ProtocolType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCapture \ +static_assert(alignof(UMovieSceneCapture) == 0x000008, "Wrong alignment on UMovieSceneCapture"); \ +static_assert(sizeof(UMovieSceneCapture) == 0x000238, "Wrong size on UMovieSceneCapture"); \ +static_assert(offsetof(UMovieSceneCapture, ImageCaptureProtocolType) == 0x000038, "Member 'UMovieSceneCapture::ImageCaptureProtocolType' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, AudioCaptureProtocolType) == 0x000058, "Member 'UMovieSceneCapture::AudioCaptureProtocolType' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, ImageCaptureProtocol) == 0x000078, "Member 'UMovieSceneCapture::ImageCaptureProtocol' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, AudioCaptureProtocol) == 0x000080, "Member 'UMovieSceneCapture::AudioCaptureProtocol' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, Settings) == 0x000088, "Member 'UMovieSceneCapture::Settings' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, bUseSeparateProcess) == 0x0000F8, "Member 'UMovieSceneCapture::bUseSeparateProcess' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, bCloseEditorWhenCaptureStarts) == 0x0000F9, "Member 'UMovieSceneCapture::bCloseEditorWhenCaptureStarts' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, AdditionalCommandLineArguments) == 0x000100, "Member 'UMovieSceneCapture::AdditionalCommandLineArguments' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneCapture, InheritedCommandLineArguments) == 0x000110, "Member 'UMovieSceneCapture::InheritedCommandLineArguments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelCapture \ +static_assert(alignof(ULevelCapture) == 0x000008, "Wrong alignment on ULevelCapture"); \ +static_assert(sizeof(ULevelCapture) == 0x000258, "Wrong size on ULevelCapture"); \ +static_assert(offsetof(ULevelCapture, bAutoStartCapture) == 0x000238, "Member 'ULevelCapture::bAutoStartCapture' has a wrong offset!"); \ +static_assert(offsetof(ULevelCapture, PrerequisiteActorId) == 0x000244, "Member 'ULevelCapture::PrerequisiteActorId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureEnvironment_FindAudioCaptureProtocol \ +static_assert(alignof(MovieSceneCaptureEnvironment_FindAudioCaptureProtocol) == 0x000008, "Wrong alignment on MovieSceneCaptureEnvironment_FindAudioCaptureProtocol"); \ +static_assert(sizeof(MovieSceneCaptureEnvironment_FindAudioCaptureProtocol) == 0x000008, "Wrong size on MovieSceneCaptureEnvironment_FindAudioCaptureProtocol"); \ +static_assert(offsetof(MovieSceneCaptureEnvironment_FindAudioCaptureProtocol, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureEnvironment_FindAudioCaptureProtocol::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureEnvironment_FindImageCaptureProtocol \ +static_assert(alignof(MovieSceneCaptureEnvironment_FindImageCaptureProtocol) == 0x000008, "Wrong alignment on MovieSceneCaptureEnvironment_FindImageCaptureProtocol"); \ +static_assert(sizeof(MovieSceneCaptureEnvironment_FindImageCaptureProtocol) == 0x000008, "Wrong size on MovieSceneCaptureEnvironment_FindImageCaptureProtocol"); \ +static_assert(offsetof(MovieSceneCaptureEnvironment_FindImageCaptureProtocol, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureEnvironment_FindImageCaptureProtocol::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureEnvironment_GetCaptureElapsedTime \ +static_assert(alignof(MovieSceneCaptureEnvironment_GetCaptureElapsedTime) == 0x000004, "Wrong alignment on MovieSceneCaptureEnvironment_GetCaptureElapsedTime"); \ +static_assert(sizeof(MovieSceneCaptureEnvironment_GetCaptureElapsedTime) == 0x000004, "Wrong size on MovieSceneCaptureEnvironment_GetCaptureElapsedTime"); \ +static_assert(offsetof(MovieSceneCaptureEnvironment_GetCaptureElapsedTime, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureEnvironment_GetCaptureElapsedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureEnvironment_GetCaptureFrameNumber \ +static_assert(alignof(MovieSceneCaptureEnvironment_GetCaptureFrameNumber) == 0x000004, "Wrong alignment on MovieSceneCaptureEnvironment_GetCaptureFrameNumber"); \ +static_assert(sizeof(MovieSceneCaptureEnvironment_GetCaptureFrameNumber) == 0x000004, "Wrong size on MovieSceneCaptureEnvironment_GetCaptureFrameNumber"); \ +static_assert(offsetof(MovieSceneCaptureEnvironment_GetCaptureFrameNumber, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureEnvironment_GetCaptureFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneCaptureEnvironment_IsCaptureInProgress \ +static_assert(alignof(MovieSceneCaptureEnvironment_IsCaptureInProgress) == 0x000001, "Wrong alignment on MovieSceneCaptureEnvironment_IsCaptureInProgress"); \ +static_assert(sizeof(MovieSceneCaptureEnvironment_IsCaptureInProgress) == 0x000001, "Wrong size on MovieSceneCaptureEnvironment_IsCaptureInProgress"); \ +static_assert(offsetof(MovieSceneCaptureEnvironment_IsCaptureInProgress, ReturnValue) == 0x000000, "Member 'MovieSceneCaptureEnvironment_IsCaptureInProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneCaptureEnvironment \ +static_assert(alignof(UMovieSceneCaptureEnvironment) == 0x000008, "Wrong alignment on UMovieSceneCaptureEnvironment"); \ +static_assert(sizeof(UMovieSceneCaptureEnvironment) == 0x000028, "Wrong size on UMovieSceneCaptureEnvironment"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_OnPixelsReceived \ +static_assert(alignof(UserDefinedCaptureProtocol_OnPixelsReceived) == 0x000008, "Wrong alignment on UserDefinedCaptureProtocol_OnPixelsReceived"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_OnPixelsReceived) == 0x000070, "Wrong size on UserDefinedCaptureProtocol_OnPixelsReceived"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_OnPixelsReceived, Pixels) == 0x000000, "Member 'UserDefinedCaptureProtocol_OnPixelsReceived::Pixels' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_OnPixelsReceived, ID) == 0x000010, "Member 'UserDefinedCaptureProtocol_OnPixelsReceived::ID' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_OnPixelsReceived, FrameMetrics) == 0x000060, "Member 'UserDefinedCaptureProtocol_OnPixelsReceived::FrameMetrics' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_OnSetup \ +static_assert(alignof(UserDefinedCaptureProtocol_OnSetup) == 0x000001, "Wrong alignment on UserDefinedCaptureProtocol_OnSetup"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_OnSetup) == 0x000001, "Wrong size on UserDefinedCaptureProtocol_OnSetup"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_OnSetup, ReturnValue) == 0x000000, "Member 'UserDefinedCaptureProtocol_OnSetup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_ResolveBuffer \ +static_assert(alignof(UserDefinedCaptureProtocol_ResolveBuffer) == 0x000008, "Wrong alignment on UserDefinedCaptureProtocol_ResolveBuffer"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_ResolveBuffer) == 0x000058, "Wrong size on UserDefinedCaptureProtocol_ResolveBuffer"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_ResolveBuffer, Buffer) == 0x000000, "Member 'UserDefinedCaptureProtocol_ResolveBuffer::Buffer' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_ResolveBuffer, BufferID) == 0x000008, "Member 'UserDefinedCaptureProtocol_ResolveBuffer::BufferID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_StartCapturingFinalPixels \ +static_assert(alignof(UserDefinedCaptureProtocol_StartCapturingFinalPixels) == 0x000008, "Wrong alignment on UserDefinedCaptureProtocol_StartCapturingFinalPixels"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_StartCapturingFinalPixels) == 0x000050, "Wrong size on UserDefinedCaptureProtocol_StartCapturingFinalPixels"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_StartCapturingFinalPixels, StreamID) == 0x000000, "Member 'UserDefinedCaptureProtocol_StartCapturingFinalPixels::StreamID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_GenerateFilename \ +static_assert(alignof(UserDefinedCaptureProtocol_GenerateFilename) == 0x000008, "Wrong alignment on UserDefinedCaptureProtocol_GenerateFilename"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_GenerateFilename) == 0x000020, "Wrong size on UserDefinedCaptureProtocol_GenerateFilename"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_GenerateFilename, InFrameMetrics) == 0x000000, "Member 'UserDefinedCaptureProtocol_GenerateFilename::InFrameMetrics' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_GenerateFilename, ReturnValue) == 0x000010, "Member 'UserDefinedCaptureProtocol_GenerateFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_GetCurrentFrameMetrics \ +static_assert(alignof(UserDefinedCaptureProtocol_GetCurrentFrameMetrics) == 0x000004, "Wrong alignment on UserDefinedCaptureProtocol_GetCurrentFrameMetrics"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_GetCurrentFrameMetrics) == 0x000010, "Wrong size on UserDefinedCaptureProtocol_GetCurrentFrameMetrics"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_GetCurrentFrameMetrics, ReturnValue) == 0x000000, "Member 'UserDefinedCaptureProtocol_GetCurrentFrameMetrics::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedCaptureProtocol_OnCanFinalize \ +static_assert(alignof(UserDefinedCaptureProtocol_OnCanFinalize) == 0x000001, "Wrong alignment on UserDefinedCaptureProtocol_OnCanFinalize"); \ +static_assert(sizeof(UserDefinedCaptureProtocol_OnCanFinalize) == 0x000001, "Wrong size on UserDefinedCaptureProtocol_OnCanFinalize"); \ +static_assert(offsetof(UserDefinedCaptureProtocol_OnCanFinalize, ReturnValue) == 0x000000, "Member 'UserDefinedCaptureProtocol_OnCanFinalize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserDefinedCaptureProtocol \ +static_assert(alignof(UUserDefinedCaptureProtocol) == 0x000008, "Wrong alignment on UUserDefinedCaptureProtocol"); \ +static_assert(sizeof(UUserDefinedCaptureProtocol) == 0x0000D8, "Wrong size on UUserDefinedCaptureProtocol"); \ +static_assert(offsetof(UUserDefinedCaptureProtocol, World) == 0x000058, "Member 'UUserDefinedCaptureProtocol::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer \ +static_assert(alignof(UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer) == 0x000008, "Wrong alignment on UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer"); \ +static_assert(sizeof(UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer) == 0x000068, "Wrong size on UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer, Buffer) == 0x000000, "Member 'UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer::Buffer' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer, StreamID) == 0x000008, "Member 'UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer::StreamID' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer, ReturnValue) == 0x000058, "Member 'UserDefinedImageCaptureProtocol_GenerateFilenameForBuffer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame \ +static_assert(alignof(UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame) == 0x000008, "Wrong alignment on UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame"); \ +static_assert(sizeof(UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame) == 0x000010, "Wrong size on UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame, ReturnValue) == 0x000000, "Member 'UserDefinedImageCaptureProtocol_GenerateFilenameForCurrentFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UserDefinedImageCaptureProtocol_WriteImageToDisk \ +static_assert(alignof(UserDefinedImageCaptureProtocol_WriteImageToDisk) == 0x000008, "Wrong alignment on UserDefinedImageCaptureProtocol_WriteImageToDisk"); \ +static_assert(sizeof(UserDefinedImageCaptureProtocol_WriteImageToDisk) == 0x000078, "Wrong size on UserDefinedImageCaptureProtocol_WriteImageToDisk"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_WriteImageToDisk, PixelData) == 0x000000, "Member 'UserDefinedImageCaptureProtocol_WriteImageToDisk::PixelData' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_WriteImageToDisk, StreamID) == 0x000010, "Member 'UserDefinedImageCaptureProtocol_WriteImageToDisk::StreamID' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_WriteImageToDisk, FrameMetrics) == 0x000060, "Member 'UserDefinedImageCaptureProtocol_WriteImageToDisk::FrameMetrics' has a wrong offset!"); \ +static_assert(offsetof(UserDefinedImageCaptureProtocol_WriteImageToDisk, bCopyImageData) == 0x000070, "Member 'UserDefinedImageCaptureProtocol_WriteImageToDisk::bCopyImageData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUserDefinedImageCaptureProtocol \ +static_assert(alignof(UUserDefinedImageCaptureProtocol) == 0x000008, "Wrong alignment on UUserDefinedImageCaptureProtocol"); \ +static_assert(sizeof(UUserDefinedImageCaptureProtocol) == 0x0000E0, "Wrong size on UUserDefinedImageCaptureProtocol"); \ +static_assert(offsetof(UUserDefinedImageCaptureProtocol, Format) == 0x0000D8, "Member 'UUserDefinedImageCaptureProtocol::Format' has a wrong offset!"); \ +static_assert(offsetof(UUserDefinedImageCaptureProtocol, bEnableCompression) == 0x0000D9, "Member 'UUserDefinedImageCaptureProtocol::bEnableCompression' has a wrong offset!"); \ +static_assert(offsetof(UUserDefinedImageCaptureProtocol, CompressionQuality) == 0x0000DC, "Member 'UUserDefinedImageCaptureProtocol::CompressionQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVideoCaptureProtocol \ +static_assert(alignof(UVideoCaptureProtocol) == 0x000008, "Wrong alignment on UVideoCaptureProtocol"); \ +static_assert(sizeof(UVideoCaptureProtocol) == 0x000080, "Wrong size on UVideoCaptureProtocol"); \ +static_assert(offsetof(UVideoCaptureProtocol, bUseCompression) == 0x000068, "Member 'UVideoCaptureProtocol::bUseCompression' has a wrong offset!"); \ +static_assert(offsetof(UVideoCaptureProtocol, CompressionQuality) == 0x00006C, "Member 'UVideoCaptureProtocol::CompressionQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaMetadataItemBPT \ +static_assert(alignof(FMediaMetadataItemBPT) == 0x000008, "Wrong alignment on FMediaMetadataItemBPT"); \ +static_assert(sizeof(FMediaMetadataItemBPT) == 0x000040, "Wrong size on FMediaMetadataItemBPT"); \ +static_assert(offsetof(FMediaMetadataItemBPT, LanguageCode) == 0x000000, "Member 'FMediaMetadataItemBPT::LanguageCode' has a wrong offset!"); \ +static_assert(offsetof(FMediaMetadataItemBPT, MimeType) == 0x000010, "Member 'FMediaMetadataItemBPT::MimeType' has a wrong offset!"); \ +static_assert(offsetof(FMediaMetadataItemBPT, StringData) == 0x000020, "Member 'FMediaMetadataItemBPT::StringData' has a wrong offset!"); \ +static_assert(offsetof(FMediaMetadataItemBPT, BinaryData) == 0x000030, "Member 'FMediaMetadataItemBPT::BinaryData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaMetadataItemsBPT \ +static_assert(alignof(FMediaMetadataItemsBPT) == 0x000008, "Wrong alignment on FMediaMetadataItemsBPT"); \ +static_assert(sizeof(FMediaMetadataItemsBPT) == 0x000010, "Wrong size on FMediaMetadataItemsBPT"); \ +static_assert(offsetof(FMediaMetadataItemsBPT, Items) == 0x000000, "Member 'FMediaMetadataItemsBPT::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaSoundComponentSpectralData \ +static_assert(alignof(FMediaSoundComponentSpectralData) == 0x000004, "Wrong alignment on FMediaSoundComponentSpectralData"); \ +static_assert(sizeof(FMediaSoundComponentSpectralData) == 0x000008, "Wrong size on FMediaSoundComponentSpectralData"); \ +static_assert(offsetof(FMediaSoundComponentSpectralData, FrequencyHz) == 0x000000, "Member 'FMediaSoundComponentSpectralData::FrequencyHz' has a wrong offset!"); \ +static_assert(offsetof(FMediaSoundComponentSpectralData, Magnitude) == 0x000004, "Member 'FMediaSoundComponentSpectralData::Magnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaSourceCacheSettings \ +static_assert(alignof(FMediaSourceCacheSettings) == 0x000004, "Wrong alignment on FMediaSourceCacheSettings"); \ +static_assert(sizeof(FMediaSourceCacheSettings) == 0x000008, "Wrong size on FMediaSourceCacheSettings"); \ +static_assert(offsetof(FMediaSourceCacheSettings, bOverride) == 0x000000, "Member 'FMediaSourceCacheSettings::bOverride' has a wrong offset!"); \ +static_assert(offsetof(FMediaSourceCacheSettings, TimeToLookAhead) == 0x000004, "Member 'FMediaSourceCacheSettings::TimeToLookAhead' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaCaptureDevice \ +static_assert(alignof(FMediaCaptureDevice) == 0x000008, "Wrong alignment on FMediaCaptureDevice"); \ +static_assert(sizeof(FMediaCaptureDevice) == 0x000028, "Wrong size on FMediaCaptureDevice"); \ +static_assert(offsetof(FMediaCaptureDevice, DisplayName) == 0x000000, "Member 'FMediaCaptureDevice::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FMediaCaptureDevice, URL) == 0x000018, "Member 'FMediaCaptureDevice::URL' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_CanPlaySource \ +static_assert(alignof(MediaPlayer_CanPlaySource) == 0x000008, "Wrong alignment on MediaPlayer_CanPlaySource"); \ +static_assert(sizeof(MediaPlayer_CanPlaySource) == 0x000010, "Wrong size on MediaPlayer_CanPlaySource"); \ +static_assert(offsetof(MediaPlayer_CanPlaySource, MediaSource) == 0x000000, "Member 'MediaPlayer_CanPlaySource::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_CanPlaySource, ReturnValue) == 0x000008, "Member 'MediaPlayer_CanPlaySource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_CanPlayUrl \ +static_assert(alignof(MediaPlayer_CanPlayUrl) == 0x000008, "Wrong alignment on MediaPlayer_CanPlayUrl"); \ +static_assert(sizeof(MediaPlayer_CanPlayUrl) == 0x000018, "Wrong size on MediaPlayer_CanPlayUrl"); \ +static_assert(offsetof(MediaPlayer_CanPlayUrl, URL) == 0x000000, "Member 'MediaPlayer_CanPlayUrl::URL' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_CanPlayUrl, ReturnValue) == 0x000010, "Member 'MediaPlayer_CanPlayUrl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Next \ +static_assert(alignof(MediaPlayer_Next) == 0x000001, "Wrong alignment on MediaPlayer_Next"); \ +static_assert(sizeof(MediaPlayer_Next) == 0x000001, "Wrong size on MediaPlayer_Next"); \ +static_assert(offsetof(MediaPlayer_Next, ReturnValue) == 0x000000, "Member 'MediaPlayer_Next::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenFile \ +static_assert(alignof(MediaPlayer_OpenFile) == 0x000008, "Wrong alignment on MediaPlayer_OpenFile"); \ +static_assert(sizeof(MediaPlayer_OpenFile) == 0x000018, "Wrong size on MediaPlayer_OpenFile"); \ +static_assert(offsetof(MediaPlayer_OpenFile, FilePath) == 0x000000, "Member 'MediaPlayer_OpenFile::FilePath' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenFile, ReturnValue) == 0x000010, "Member 'MediaPlayer_OpenFile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenPlaylist \ +static_assert(alignof(MediaPlayer_OpenPlaylist) == 0x000008, "Wrong alignment on MediaPlayer_OpenPlaylist"); \ +static_assert(sizeof(MediaPlayer_OpenPlaylist) == 0x000010, "Wrong size on MediaPlayer_OpenPlaylist"); \ +static_assert(offsetof(MediaPlayer_OpenPlaylist, InPlaylist) == 0x000000, "Member 'MediaPlayer_OpenPlaylist::InPlaylist' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenPlaylist, ReturnValue) == 0x000008, "Member 'MediaPlayer_OpenPlaylist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenPlaylistIndex \ +static_assert(alignof(MediaPlayer_OpenPlaylistIndex) == 0x000008, "Wrong alignment on MediaPlayer_OpenPlaylistIndex"); \ +static_assert(sizeof(MediaPlayer_OpenPlaylistIndex) == 0x000010, "Wrong size on MediaPlayer_OpenPlaylistIndex"); \ +static_assert(offsetof(MediaPlayer_OpenPlaylistIndex, InPlaylist) == 0x000000, "Member 'MediaPlayer_OpenPlaylistIndex::InPlaylist' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenPlaylistIndex, Index_0) == 0x000008, "Member 'MediaPlayer_OpenPlaylistIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenPlaylistIndex, ReturnValue) == 0x00000C, "Member 'MediaPlayer_OpenPlaylistIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenSource \ +static_assert(alignof(MediaPlayer_OpenSource) == 0x000008, "Wrong alignment on MediaPlayer_OpenSource"); \ +static_assert(sizeof(MediaPlayer_OpenSource) == 0x000010, "Wrong size on MediaPlayer_OpenSource"); \ +static_assert(offsetof(MediaPlayer_OpenSource, MediaSource) == 0x000000, "Member 'MediaPlayer_OpenSource::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSource, ReturnValue) == 0x000008, "Member 'MediaPlayer_OpenSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenSourceLatent \ +static_assert(alignof(MediaPlayer_OpenSourceLatent) == 0x000008, "Wrong alignment on MediaPlayer_OpenSourceLatent"); \ +static_assert(sizeof(MediaPlayer_OpenSourceLatent) == 0x000060, "Wrong size on MediaPlayer_OpenSourceLatent"); \ +static_assert(offsetof(MediaPlayer_OpenSourceLatent, WorldContextObject) == 0x000000, "Member 'MediaPlayer_OpenSourceLatent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceLatent, LatentInfo) == 0x000008, "Member 'MediaPlayer_OpenSourceLatent::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceLatent, MediaSource) == 0x000020, "Member 'MediaPlayer_OpenSourceLatent::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceLatent, Options) == 0x000028, "Member 'MediaPlayer_OpenSourceLatent::Options' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceLatent, bSuccess) == 0x000058, "Member 'MediaPlayer_OpenSourceLatent::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenSourceWithOptions \ +static_assert(alignof(MediaPlayer_OpenSourceWithOptions) == 0x000008, "Wrong alignment on MediaPlayer_OpenSourceWithOptions"); \ +static_assert(sizeof(MediaPlayer_OpenSourceWithOptions) == 0x000040, "Wrong size on MediaPlayer_OpenSourceWithOptions"); \ +static_assert(offsetof(MediaPlayer_OpenSourceWithOptions, MediaSource) == 0x000000, "Member 'MediaPlayer_OpenSourceWithOptions::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceWithOptions, Options) == 0x000008, "Member 'MediaPlayer_OpenSourceWithOptions::Options' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenSourceWithOptions, ReturnValue) == 0x000038, "Member 'MediaPlayer_OpenSourceWithOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_OpenUrl \ +static_assert(alignof(MediaPlayer_OpenUrl) == 0x000008, "Wrong alignment on MediaPlayer_OpenUrl"); \ +static_assert(sizeof(MediaPlayer_OpenUrl) == 0x000018, "Wrong size on MediaPlayer_OpenUrl"); \ +static_assert(offsetof(MediaPlayer_OpenUrl, URL) == 0x000000, "Member 'MediaPlayer_OpenUrl::URL' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_OpenUrl, ReturnValue) == 0x000010, "Member 'MediaPlayer_OpenUrl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Pause \ +static_assert(alignof(MediaPlayer_Pause) == 0x000001, "Wrong alignment on MediaPlayer_Pause"); \ +static_assert(sizeof(MediaPlayer_Pause) == 0x000001, "Wrong size on MediaPlayer_Pause"); \ +static_assert(offsetof(MediaPlayer_Pause, ReturnValue) == 0x000000, "Member 'MediaPlayer_Pause::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Play \ +static_assert(alignof(MediaPlayer_Play) == 0x000001, "Wrong alignment on MediaPlayer_Play"); \ +static_assert(sizeof(MediaPlayer_Play) == 0x000001, "Wrong size on MediaPlayer_Play"); \ +static_assert(offsetof(MediaPlayer_Play, ReturnValue) == 0x000000, "Member 'MediaPlayer_Play::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Previous \ +static_assert(alignof(MediaPlayer_Previous) == 0x000001, "Wrong alignment on MediaPlayer_Previous"); \ +static_assert(sizeof(MediaPlayer_Previous) == 0x000001, "Wrong size on MediaPlayer_Previous"); \ +static_assert(offsetof(MediaPlayer_Previous, ReturnValue) == 0x000000, "Member 'MediaPlayer_Previous::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Reopen \ +static_assert(alignof(MediaPlayer_Reopen) == 0x000001, "Wrong alignment on MediaPlayer_Reopen"); \ +static_assert(sizeof(MediaPlayer_Reopen) == 0x000001, "Wrong size on MediaPlayer_Reopen"); \ +static_assert(offsetof(MediaPlayer_Reopen, ReturnValue) == 0x000000, "Member 'MediaPlayer_Reopen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Rewind \ +static_assert(alignof(MediaPlayer_Rewind) == 0x000001, "Wrong alignment on MediaPlayer_Rewind"); \ +static_assert(sizeof(MediaPlayer_Rewind) == 0x000001, "Wrong size on MediaPlayer_Rewind"); \ +static_assert(offsetof(MediaPlayer_Rewind, ReturnValue) == 0x000000, "Member 'MediaPlayer_Rewind::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_Seek \ +static_assert(alignof(MediaPlayer_Seek) == 0x000008, "Wrong alignment on MediaPlayer_Seek"); \ +static_assert(sizeof(MediaPlayer_Seek) == 0x000010, "Wrong size on MediaPlayer_Seek"); \ +static_assert(offsetof(MediaPlayer_Seek, Time) == 0x000000, "Member 'MediaPlayer_Seek::Time' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_Seek, ReturnValue) == 0x000008, "Member 'MediaPlayer_Seek::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SelectTrack \ +static_assert(alignof(MediaPlayer_SelectTrack) == 0x000004, "Wrong alignment on MediaPlayer_SelectTrack"); \ +static_assert(sizeof(MediaPlayer_SelectTrack) == 0x00000C, "Wrong size on MediaPlayer_SelectTrack"); \ +static_assert(offsetof(MediaPlayer_SelectTrack, TrackType) == 0x000000, "Member 'MediaPlayer_SelectTrack::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SelectTrack, TrackIndex) == 0x000004, "Member 'MediaPlayer_SelectTrack::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SelectTrack, ReturnValue) == 0x000008, "Member 'MediaPlayer_SelectTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetBlockOnTime \ +static_assert(alignof(MediaPlayer_SetBlockOnTime) == 0x000008, "Wrong alignment on MediaPlayer_SetBlockOnTime"); \ +static_assert(sizeof(MediaPlayer_SetBlockOnTime) == 0x000008, "Wrong size on MediaPlayer_SetBlockOnTime"); \ +static_assert(offsetof(MediaPlayer_SetBlockOnTime, Time) == 0x000000, "Member 'MediaPlayer_SetBlockOnTime::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetDesiredPlayerName \ +static_assert(alignof(MediaPlayer_SetDesiredPlayerName) == 0x000004, "Wrong alignment on MediaPlayer_SetDesiredPlayerName"); \ +static_assert(sizeof(MediaPlayer_SetDesiredPlayerName) == 0x000008, "Wrong size on MediaPlayer_SetDesiredPlayerName"); \ +static_assert(offsetof(MediaPlayer_SetDesiredPlayerName, PlayerName) == 0x000000, "Member 'MediaPlayer_SetDesiredPlayerName::PlayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetLooping \ +static_assert(alignof(MediaPlayer_SetLooping) == 0x000001, "Wrong alignment on MediaPlayer_SetLooping"); \ +static_assert(sizeof(MediaPlayer_SetLooping) == 0x000002, "Wrong size on MediaPlayer_SetLooping"); \ +static_assert(offsetof(MediaPlayer_SetLooping, Looping) == 0x000000, "Member 'MediaPlayer_SetLooping::Looping' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetLooping, ReturnValue) == 0x000001, "Member 'MediaPlayer_SetLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetMediaOptions \ +static_assert(alignof(MediaPlayer_SetMediaOptions) == 0x000008, "Wrong alignment on MediaPlayer_SetMediaOptions"); \ +static_assert(sizeof(MediaPlayer_SetMediaOptions) == 0x000008, "Wrong size on MediaPlayer_SetMediaOptions"); \ +static_assert(offsetof(MediaPlayer_SetMediaOptions, Options) == 0x000000, "Member 'MediaPlayer_SetMediaOptions::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetNativeVolume \ +static_assert(alignof(MediaPlayer_SetNativeVolume) == 0x000004, "Wrong alignment on MediaPlayer_SetNativeVolume"); \ +static_assert(sizeof(MediaPlayer_SetNativeVolume) == 0x000008, "Wrong size on MediaPlayer_SetNativeVolume"); \ +static_assert(offsetof(MediaPlayer_SetNativeVolume, Volume) == 0x000000, "Member 'MediaPlayer_SetNativeVolume::Volume' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetNativeVolume, ReturnValue) == 0x000004, "Member 'MediaPlayer_SetNativeVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetRate \ +static_assert(alignof(MediaPlayer_SetRate) == 0x000004, "Wrong alignment on MediaPlayer_SetRate"); \ +static_assert(sizeof(MediaPlayer_SetRate) == 0x000008, "Wrong size on MediaPlayer_SetRate"); \ +static_assert(offsetof(MediaPlayer_SetRate, Rate) == 0x000000, "Member 'MediaPlayer_SetRate::Rate' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetRate, ReturnValue) == 0x000004, "Member 'MediaPlayer_SetRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetTimeDelay \ +static_assert(alignof(MediaPlayer_SetTimeDelay) == 0x000008, "Wrong alignment on MediaPlayer_SetTimeDelay"); \ +static_assert(sizeof(MediaPlayer_SetTimeDelay) == 0x000008, "Wrong size on MediaPlayer_SetTimeDelay"); \ +static_assert(offsetof(MediaPlayer_SetTimeDelay, TimeDelay_0) == 0x000000, "Member 'MediaPlayer_SetTimeDelay::TimeDelay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetTrackFormat \ +static_assert(alignof(MediaPlayer_SetTrackFormat) == 0x000004, "Wrong alignment on MediaPlayer_SetTrackFormat"); \ +static_assert(sizeof(MediaPlayer_SetTrackFormat) == 0x000010, "Wrong size on MediaPlayer_SetTrackFormat"); \ +static_assert(offsetof(MediaPlayer_SetTrackFormat, TrackType) == 0x000000, "Member 'MediaPlayer_SetTrackFormat::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetTrackFormat, TrackIndex) == 0x000004, "Member 'MediaPlayer_SetTrackFormat::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetTrackFormat, FormatIndex) == 0x000008, "Member 'MediaPlayer_SetTrackFormat::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetTrackFormat, ReturnValue) == 0x00000C, "Member 'MediaPlayer_SetTrackFormat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetVideoTrackFrameRate \ +static_assert(alignof(MediaPlayer_SetVideoTrackFrameRate) == 0x000004, "Wrong alignment on MediaPlayer_SetVideoTrackFrameRate"); \ +static_assert(sizeof(MediaPlayer_SetVideoTrackFrameRate) == 0x000010, "Wrong size on MediaPlayer_SetVideoTrackFrameRate"); \ +static_assert(offsetof(MediaPlayer_SetVideoTrackFrameRate, TrackIndex) == 0x000000, "Member 'MediaPlayer_SetVideoTrackFrameRate::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetVideoTrackFrameRate, FormatIndex) == 0x000004, "Member 'MediaPlayer_SetVideoTrackFrameRate::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetVideoTrackFrameRate, FrameRate) == 0x000008, "Member 'MediaPlayer_SetVideoTrackFrameRate::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetVideoTrackFrameRate, ReturnValue) == 0x00000C, "Member 'MediaPlayer_SetVideoTrackFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetViewField \ +static_assert(alignof(MediaPlayer_SetViewField) == 0x000004, "Wrong alignment on MediaPlayer_SetViewField"); \ +static_assert(sizeof(MediaPlayer_SetViewField) == 0x00000C, "Wrong size on MediaPlayer_SetViewField"); \ +static_assert(offsetof(MediaPlayer_SetViewField, Horizontal) == 0x000000, "Member 'MediaPlayer_SetViewField::Horizontal' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetViewField, Vertical) == 0x000004, "Member 'MediaPlayer_SetViewField::Vertical' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetViewField, Absolute) == 0x000008, "Member 'MediaPlayer_SetViewField::Absolute' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetViewField, ReturnValue) == 0x000009, "Member 'MediaPlayer_SetViewField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SetViewRotation \ +static_assert(alignof(MediaPlayer_SetViewRotation) == 0x000008, "Wrong alignment on MediaPlayer_SetViewRotation"); \ +static_assert(sizeof(MediaPlayer_SetViewRotation) == 0x000020, "Wrong size on MediaPlayer_SetViewRotation"); \ +static_assert(offsetof(MediaPlayer_SetViewRotation, Rotation) == 0x000000, "Member 'MediaPlayer_SetViewRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetViewRotation, Absolute) == 0x000018, "Member 'MediaPlayer_SetViewRotation::Absolute' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SetViewRotation, ReturnValue) == 0x000019, "Member 'MediaPlayer_SetViewRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_CanPause \ +static_assert(alignof(MediaPlayer_CanPause) == 0x000001, "Wrong alignment on MediaPlayer_CanPause"); \ +static_assert(sizeof(MediaPlayer_CanPause) == 0x000001, "Wrong size on MediaPlayer_CanPause"); \ +static_assert(offsetof(MediaPlayer_CanPause, ReturnValue) == 0x000000, "Member 'MediaPlayer_CanPause::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetAudioTrackChannels \ +static_assert(alignof(MediaPlayer_GetAudioTrackChannels) == 0x000004, "Wrong alignment on MediaPlayer_GetAudioTrackChannels"); \ +static_assert(sizeof(MediaPlayer_GetAudioTrackChannels) == 0x00000C, "Wrong size on MediaPlayer_GetAudioTrackChannels"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackChannels, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetAudioTrackChannels::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackChannels, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetAudioTrackChannels::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackChannels, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetAudioTrackChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetAudioTrackSampleRate \ +static_assert(alignof(MediaPlayer_GetAudioTrackSampleRate) == 0x000004, "Wrong alignment on MediaPlayer_GetAudioTrackSampleRate"); \ +static_assert(sizeof(MediaPlayer_GetAudioTrackSampleRate) == 0x00000C, "Wrong size on MediaPlayer_GetAudioTrackSampleRate"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackSampleRate, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetAudioTrackSampleRate::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackSampleRate, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetAudioTrackSampleRate::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackSampleRate, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetAudioTrackSampleRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetAudioTrackType \ +static_assert(alignof(MediaPlayer_GetAudioTrackType) == 0x000008, "Wrong alignment on MediaPlayer_GetAudioTrackType"); \ +static_assert(sizeof(MediaPlayer_GetAudioTrackType) == 0x000018, "Wrong size on MediaPlayer_GetAudioTrackType"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackType, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetAudioTrackType::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackType, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetAudioTrackType::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetAudioTrackType, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetAudioTrackType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetDesiredPlayerName \ +static_assert(alignof(MediaPlayer_GetDesiredPlayerName) == 0x000004, "Wrong alignment on MediaPlayer_GetDesiredPlayerName"); \ +static_assert(sizeof(MediaPlayer_GetDesiredPlayerName) == 0x000008, "Wrong size on MediaPlayer_GetDesiredPlayerName"); \ +static_assert(offsetof(MediaPlayer_GetDesiredPlayerName, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetDesiredPlayerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetDisplayTime \ +static_assert(alignof(MediaPlayer_GetDisplayTime) == 0x000008, "Wrong alignment on MediaPlayer_GetDisplayTime"); \ +static_assert(sizeof(MediaPlayer_GetDisplayTime) == 0x000008, "Wrong size on MediaPlayer_GetDisplayTime"); \ +static_assert(offsetof(MediaPlayer_GetDisplayTime, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetDisplayTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetDisplayTimeStamp \ +static_assert(alignof(MediaPlayer_GetDisplayTimeStamp) == 0x000008, "Wrong alignment on MediaPlayer_GetDisplayTimeStamp"); \ +static_assert(sizeof(MediaPlayer_GetDisplayTimeStamp) == 0x000008, "Wrong size on MediaPlayer_GetDisplayTimeStamp"); \ +static_assert(offsetof(MediaPlayer_GetDisplayTimeStamp, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetDisplayTimeStamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetDuration \ +static_assert(alignof(MediaPlayer_GetDuration) == 0x000008, "Wrong alignment on MediaPlayer_GetDuration"); \ +static_assert(sizeof(MediaPlayer_GetDuration) == 0x000008, "Wrong size on MediaPlayer_GetDuration"); \ +static_assert(offsetof(MediaPlayer_GetDuration, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetHorizontalFieldOfView \ +static_assert(alignof(MediaPlayer_GetHorizontalFieldOfView) == 0x000004, "Wrong alignment on MediaPlayer_GetHorizontalFieldOfView"); \ +static_assert(sizeof(MediaPlayer_GetHorizontalFieldOfView) == 0x000004, "Wrong size on MediaPlayer_GetHorizontalFieldOfView"); \ +static_assert(offsetof(MediaPlayer_GetHorizontalFieldOfView, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetHorizontalFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetMediaMetadataItems \ +static_assert(alignof(MediaPlayer_GetMediaMetadataItems) == 0x000008, "Wrong alignment on MediaPlayer_GetMediaMetadataItems"); \ +static_assert(sizeof(MediaPlayer_GetMediaMetadataItems) == 0x000050, "Wrong size on MediaPlayer_GetMediaMetadataItems"); \ +static_assert(offsetof(MediaPlayer_GetMediaMetadataItems, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetMediaMetadataItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetMediaName \ +static_assert(alignof(MediaPlayer_GetMediaName) == 0x000008, "Wrong alignment on MediaPlayer_GetMediaName"); \ +static_assert(sizeof(MediaPlayer_GetMediaName) == 0x000018, "Wrong size on MediaPlayer_GetMediaName"); \ +static_assert(offsetof(MediaPlayer_GetMediaName, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetMediaName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetNumTrackFormats \ +static_assert(alignof(MediaPlayer_GetNumTrackFormats) == 0x000004, "Wrong alignment on MediaPlayer_GetNumTrackFormats"); \ +static_assert(sizeof(MediaPlayer_GetNumTrackFormats) == 0x00000C, "Wrong size on MediaPlayer_GetNumTrackFormats"); \ +static_assert(offsetof(MediaPlayer_GetNumTrackFormats, TrackType) == 0x000000, "Member 'MediaPlayer_GetNumTrackFormats::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetNumTrackFormats, TrackIndex) == 0x000004, "Member 'MediaPlayer_GetNumTrackFormats::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetNumTrackFormats, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetNumTrackFormats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetNumTracks \ +static_assert(alignof(MediaPlayer_GetNumTracks) == 0x000004, "Wrong alignment on MediaPlayer_GetNumTracks"); \ +static_assert(sizeof(MediaPlayer_GetNumTracks) == 0x000008, "Wrong size on MediaPlayer_GetNumTracks"); \ +static_assert(offsetof(MediaPlayer_GetNumTracks, TrackType) == 0x000000, "Member 'MediaPlayer_GetNumTracks::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetNumTracks, ReturnValue) == 0x000004, "Member 'MediaPlayer_GetNumTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetPlayerName \ +static_assert(alignof(MediaPlayer_GetPlayerName) == 0x000004, "Wrong alignment on MediaPlayer_GetPlayerName"); \ +static_assert(sizeof(MediaPlayer_GetPlayerName) == 0x000008, "Wrong size on MediaPlayer_GetPlayerName"); \ +static_assert(offsetof(MediaPlayer_GetPlayerName, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetPlayerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetPlaylist \ +static_assert(alignof(MediaPlayer_GetPlaylist) == 0x000008, "Wrong alignment on MediaPlayer_GetPlaylist"); \ +static_assert(sizeof(MediaPlayer_GetPlaylist) == 0x000008, "Wrong size on MediaPlayer_GetPlaylist"); \ +static_assert(offsetof(MediaPlayer_GetPlaylist, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetPlaylist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetPlaylistIndex \ +static_assert(alignof(MediaPlayer_GetPlaylistIndex) == 0x000004, "Wrong alignment on MediaPlayer_GetPlaylistIndex"); \ +static_assert(sizeof(MediaPlayer_GetPlaylistIndex) == 0x000004, "Wrong size on MediaPlayer_GetPlaylistIndex"); \ +static_assert(offsetof(MediaPlayer_GetPlaylistIndex, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetPlaylistIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetRate \ +static_assert(alignof(MediaPlayer_GetRate) == 0x000004, "Wrong alignment on MediaPlayer_GetRate"); \ +static_assert(sizeof(MediaPlayer_GetRate) == 0x000004, "Wrong size on MediaPlayer_GetRate"); \ +static_assert(offsetof(MediaPlayer_GetRate, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetSelectedTrack \ +static_assert(alignof(MediaPlayer_GetSelectedTrack) == 0x000004, "Wrong alignment on MediaPlayer_GetSelectedTrack"); \ +static_assert(sizeof(MediaPlayer_GetSelectedTrack) == 0x000008, "Wrong size on MediaPlayer_GetSelectedTrack"); \ +static_assert(offsetof(MediaPlayer_GetSelectedTrack, TrackType) == 0x000000, "Member 'MediaPlayer_GetSelectedTrack::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetSelectedTrack, ReturnValue) == 0x000004, "Member 'MediaPlayer_GetSelectedTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetSupportedRates \ +static_assert(alignof(MediaPlayer_GetSupportedRates) == 0x000008, "Wrong alignment on MediaPlayer_GetSupportedRates"); \ +static_assert(sizeof(MediaPlayer_GetSupportedRates) == 0x000018, "Wrong size on MediaPlayer_GetSupportedRates"); \ +static_assert(offsetof(MediaPlayer_GetSupportedRates, OutRates) == 0x000000, "Member 'MediaPlayer_GetSupportedRates::OutRates' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetSupportedRates, Unthinned) == 0x000010, "Member 'MediaPlayer_GetSupportedRates::Unthinned' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTime \ +static_assert(alignof(MediaPlayer_GetTime) == 0x000008, "Wrong alignment on MediaPlayer_GetTime"); \ +static_assert(sizeof(MediaPlayer_GetTime) == 0x000008, "Wrong size on MediaPlayer_GetTime"); \ +static_assert(offsetof(MediaPlayer_GetTime, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTimeDelay \ +static_assert(alignof(MediaPlayer_GetTimeDelay) == 0x000008, "Wrong alignment on MediaPlayer_GetTimeDelay"); \ +static_assert(sizeof(MediaPlayer_GetTimeDelay) == 0x000008, "Wrong size on MediaPlayer_GetTimeDelay"); \ +static_assert(offsetof(MediaPlayer_GetTimeDelay, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetTimeDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTimeStamp \ +static_assert(alignof(MediaPlayer_GetTimeStamp) == 0x000008, "Wrong alignment on MediaPlayer_GetTimeStamp"); \ +static_assert(sizeof(MediaPlayer_GetTimeStamp) == 0x000008, "Wrong size on MediaPlayer_GetTimeStamp"); \ +static_assert(offsetof(MediaPlayer_GetTimeStamp, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetTimeStamp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTrackDisplayName \ +static_assert(alignof(MediaPlayer_GetTrackDisplayName) == 0x000008, "Wrong alignment on MediaPlayer_GetTrackDisplayName"); \ +static_assert(sizeof(MediaPlayer_GetTrackDisplayName) == 0x000020, "Wrong size on MediaPlayer_GetTrackDisplayName"); \ +static_assert(offsetof(MediaPlayer_GetTrackDisplayName, TrackType) == 0x000000, "Member 'MediaPlayer_GetTrackDisplayName::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackDisplayName, TrackIndex) == 0x000004, "Member 'MediaPlayer_GetTrackDisplayName::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackDisplayName, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetTrackDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTrackFormat \ +static_assert(alignof(MediaPlayer_GetTrackFormat) == 0x000004, "Wrong alignment on MediaPlayer_GetTrackFormat"); \ +static_assert(sizeof(MediaPlayer_GetTrackFormat) == 0x00000C, "Wrong size on MediaPlayer_GetTrackFormat"); \ +static_assert(offsetof(MediaPlayer_GetTrackFormat, TrackType) == 0x000000, "Member 'MediaPlayer_GetTrackFormat::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackFormat, TrackIndex) == 0x000004, "Member 'MediaPlayer_GetTrackFormat::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackFormat, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetTrackFormat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetTrackLanguage \ +static_assert(alignof(MediaPlayer_GetTrackLanguage) == 0x000008, "Wrong alignment on MediaPlayer_GetTrackLanguage"); \ +static_assert(sizeof(MediaPlayer_GetTrackLanguage) == 0x000018, "Wrong size on MediaPlayer_GetTrackLanguage"); \ +static_assert(offsetof(MediaPlayer_GetTrackLanguage, TrackType) == 0x000000, "Member 'MediaPlayer_GetTrackLanguage::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackLanguage, TrackIndex) == 0x000004, "Member 'MediaPlayer_GetTrackLanguage::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetTrackLanguage, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetTrackLanguage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetUrl \ +static_assert(alignof(MediaPlayer_GetUrl) == 0x000008, "Wrong alignment on MediaPlayer_GetUrl"); \ +static_assert(sizeof(MediaPlayer_GetUrl) == 0x000010, "Wrong size on MediaPlayer_GetUrl"); \ +static_assert(offsetof(MediaPlayer_GetUrl, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetUrl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVerticalFieldOfView \ +static_assert(alignof(MediaPlayer_GetVerticalFieldOfView) == 0x000004, "Wrong alignment on MediaPlayer_GetVerticalFieldOfView"); \ +static_assert(sizeof(MediaPlayer_GetVerticalFieldOfView) == 0x000004, "Wrong size on MediaPlayer_GetVerticalFieldOfView"); \ +static_assert(offsetof(MediaPlayer_GetVerticalFieldOfView, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetVerticalFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVideoTrackAspectRatio \ +static_assert(alignof(MediaPlayer_GetVideoTrackAspectRatio) == 0x000004, "Wrong alignment on MediaPlayer_GetVideoTrackAspectRatio"); \ +static_assert(sizeof(MediaPlayer_GetVideoTrackAspectRatio) == 0x00000C, "Wrong size on MediaPlayer_GetVideoTrackAspectRatio"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackAspectRatio, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetVideoTrackAspectRatio::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackAspectRatio, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetVideoTrackAspectRatio::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackAspectRatio, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetVideoTrackAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVideoTrackDimensions \ +static_assert(alignof(MediaPlayer_GetVideoTrackDimensions) == 0x000004, "Wrong alignment on MediaPlayer_GetVideoTrackDimensions"); \ +static_assert(sizeof(MediaPlayer_GetVideoTrackDimensions) == 0x000010, "Wrong size on MediaPlayer_GetVideoTrackDimensions"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackDimensions, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetVideoTrackDimensions::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackDimensions, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetVideoTrackDimensions::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackDimensions, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetVideoTrackDimensions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVideoTrackFrameRate \ +static_assert(alignof(MediaPlayer_GetVideoTrackFrameRate) == 0x000004, "Wrong alignment on MediaPlayer_GetVideoTrackFrameRate"); \ +static_assert(sizeof(MediaPlayer_GetVideoTrackFrameRate) == 0x00000C, "Wrong size on MediaPlayer_GetVideoTrackFrameRate"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRate, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetVideoTrackFrameRate::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRate, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetVideoTrackFrameRate::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRate, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetVideoTrackFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVideoTrackFrameRates \ +static_assert(alignof(MediaPlayer_GetVideoTrackFrameRates) == 0x000004, "Wrong alignment on MediaPlayer_GetVideoTrackFrameRates"); \ +static_assert(sizeof(MediaPlayer_GetVideoTrackFrameRates) == 0x000018, "Wrong size on MediaPlayer_GetVideoTrackFrameRates"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRates, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetVideoTrackFrameRates::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRates, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetVideoTrackFrameRates::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackFrameRates, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetVideoTrackFrameRates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetVideoTrackType \ +static_assert(alignof(MediaPlayer_GetVideoTrackType) == 0x000008, "Wrong alignment on MediaPlayer_GetVideoTrackType"); \ +static_assert(sizeof(MediaPlayer_GetVideoTrackType) == 0x000018, "Wrong size on MediaPlayer_GetVideoTrackType"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackType, TrackIndex) == 0x000000, "Member 'MediaPlayer_GetVideoTrackType::TrackIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackType, FormatIndex) == 0x000004, "Member 'MediaPlayer_GetVideoTrackType::FormatIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_GetVideoTrackType, ReturnValue) == 0x000008, "Member 'MediaPlayer_GetVideoTrackType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_GetViewRotation \ +static_assert(alignof(MediaPlayer_GetViewRotation) == 0x000008, "Wrong alignment on MediaPlayer_GetViewRotation"); \ +static_assert(sizeof(MediaPlayer_GetViewRotation) == 0x000018, "Wrong size on MediaPlayer_GetViewRotation"); \ +static_assert(offsetof(MediaPlayer_GetViewRotation, ReturnValue) == 0x000000, "Member 'MediaPlayer_GetViewRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_HasError \ +static_assert(alignof(MediaPlayer_HasError) == 0x000001, "Wrong alignment on MediaPlayer_HasError"); \ +static_assert(sizeof(MediaPlayer_HasError) == 0x000001, "Wrong size on MediaPlayer_HasError"); \ +static_assert(offsetof(MediaPlayer_HasError, ReturnValue) == 0x000000, "Member 'MediaPlayer_HasError::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsBuffering \ +static_assert(alignof(MediaPlayer_IsBuffering) == 0x000001, "Wrong alignment on MediaPlayer_IsBuffering"); \ +static_assert(sizeof(MediaPlayer_IsBuffering) == 0x000001, "Wrong size on MediaPlayer_IsBuffering"); \ +static_assert(offsetof(MediaPlayer_IsBuffering, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsBuffering::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsClosed \ +static_assert(alignof(MediaPlayer_IsClosed) == 0x000001, "Wrong alignment on MediaPlayer_IsClosed"); \ +static_assert(sizeof(MediaPlayer_IsClosed) == 0x000001, "Wrong size on MediaPlayer_IsClosed"); \ +static_assert(offsetof(MediaPlayer_IsClosed, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsClosed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsConnecting \ +static_assert(alignof(MediaPlayer_IsConnecting) == 0x000001, "Wrong alignment on MediaPlayer_IsConnecting"); \ +static_assert(sizeof(MediaPlayer_IsConnecting) == 0x000001, "Wrong size on MediaPlayer_IsConnecting"); \ +static_assert(offsetof(MediaPlayer_IsConnecting, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsConnecting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsLooping \ +static_assert(alignof(MediaPlayer_IsLooping) == 0x000001, "Wrong alignment on MediaPlayer_IsLooping"); \ +static_assert(sizeof(MediaPlayer_IsLooping) == 0x000001, "Wrong size on MediaPlayer_IsLooping"); \ +static_assert(offsetof(MediaPlayer_IsLooping, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsPaused \ +static_assert(alignof(MediaPlayer_IsPaused) == 0x000001, "Wrong alignment on MediaPlayer_IsPaused"); \ +static_assert(sizeof(MediaPlayer_IsPaused) == 0x000001, "Wrong size on MediaPlayer_IsPaused"); \ +static_assert(offsetof(MediaPlayer_IsPaused, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsPlaying \ +static_assert(alignof(MediaPlayer_IsPlaying) == 0x000001, "Wrong alignment on MediaPlayer_IsPlaying"); \ +static_assert(sizeof(MediaPlayer_IsPlaying) == 0x000001, "Wrong size on MediaPlayer_IsPlaying"); \ +static_assert(offsetof(MediaPlayer_IsPlaying, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsPreparing \ +static_assert(alignof(MediaPlayer_IsPreparing) == 0x000001, "Wrong alignment on MediaPlayer_IsPreparing"); \ +static_assert(sizeof(MediaPlayer_IsPreparing) == 0x000001, "Wrong size on MediaPlayer_IsPreparing"); \ +static_assert(offsetof(MediaPlayer_IsPreparing, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsPreparing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_IsReady \ +static_assert(alignof(MediaPlayer_IsReady) == 0x000001, "Wrong alignment on MediaPlayer_IsReady"); \ +static_assert(sizeof(MediaPlayer_IsReady) == 0x000001, "Wrong size on MediaPlayer_IsReady"); \ +static_assert(offsetof(MediaPlayer_IsReady, ReturnValue) == 0x000000, "Member 'MediaPlayer_IsReady::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SupportsRate \ +static_assert(alignof(MediaPlayer_SupportsRate) == 0x000004, "Wrong alignment on MediaPlayer_SupportsRate"); \ +static_assert(sizeof(MediaPlayer_SupportsRate) == 0x000008, "Wrong size on MediaPlayer_SupportsRate"); \ +static_assert(offsetof(MediaPlayer_SupportsRate, Rate) == 0x000000, "Member 'MediaPlayer_SupportsRate::Rate' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SupportsRate, Unthinned) == 0x000004, "Member 'MediaPlayer_SupportsRate::Unthinned' has a wrong offset!"); \ +static_assert(offsetof(MediaPlayer_SupportsRate, ReturnValue) == 0x000005, "Member 'MediaPlayer_SupportsRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SupportsScrubbing \ +static_assert(alignof(MediaPlayer_SupportsScrubbing) == 0x000001, "Wrong alignment on MediaPlayer_SupportsScrubbing"); \ +static_assert(sizeof(MediaPlayer_SupportsScrubbing) == 0x000001, "Wrong size on MediaPlayer_SupportsScrubbing"); \ +static_assert(offsetof(MediaPlayer_SupportsScrubbing, ReturnValue) == 0x000000, "Member 'MediaPlayer_SupportsScrubbing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlayer_SupportsSeeking \ +static_assert(alignof(MediaPlayer_SupportsSeeking) == 0x000001, "Wrong alignment on MediaPlayer_SupportsSeeking"); \ +static_assert(sizeof(MediaPlayer_SupportsSeeking) == 0x000001, "Wrong size on MediaPlayer_SupportsSeeking"); \ +static_assert(offsetof(MediaPlayer_SupportsSeeking, ReturnValue) == 0x000000, "Member 'MediaPlayer_SupportsSeeking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaPlayer \ +static_assert(alignof(UMediaPlayer) == 0x000008, "Wrong alignment on UMediaPlayer"); \ +static_assert(sizeof(UMediaPlayer) == 0x000168, "Wrong size on UMediaPlayer"); \ +static_assert(offsetof(UMediaPlayer, OnEndReached) == 0x000030, "Member 'UMediaPlayer::OnEndReached' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnMediaClosed) == 0x000040, "Member 'UMediaPlayer::OnMediaClosed' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnMediaOpened) == 0x000050, "Member 'UMediaPlayer::OnMediaOpened' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnMediaOpenFailed) == 0x000060, "Member 'UMediaPlayer::OnMediaOpenFailed' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnPlaybackResumed) == 0x000070, "Member 'UMediaPlayer::OnPlaybackResumed' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnPlaybackSuspended) == 0x000080, "Member 'UMediaPlayer::OnPlaybackSuspended' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnSeekCompleted) == 0x000090, "Member 'UMediaPlayer::OnSeekCompleted' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnTracksChanged) == 0x0000A0, "Member 'UMediaPlayer::OnTracksChanged' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, OnMetadataChanged) == 0x0000B0, "Member 'UMediaPlayer::OnMetadataChanged' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, CacheAhead) == 0x0000C0, "Member 'UMediaPlayer::CacheAhead' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, CacheBehind) == 0x0000C8, "Member 'UMediaPlayer::CacheBehind' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, CacheBehindGame) == 0x0000D0, "Member 'UMediaPlayer::CacheBehindGame' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, NativeAudioOut) == 0x0000D8, "Member 'UMediaPlayer::NativeAudioOut' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, PlayOnOpen) == 0x0000D9, "Member 'UMediaPlayer::PlayOnOpen' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, Playlist) == 0x0000E0, "Member 'UMediaPlayer::Playlist' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, PlaylistIndex) == 0x0000E8, "Member 'UMediaPlayer::PlaylistIndex' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, TimeDelay) == 0x0000F0, "Member 'UMediaPlayer::TimeDelay' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, HorizontalFieldOfView) == 0x0000F8, "Member 'UMediaPlayer::HorizontalFieldOfView' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, VerticalFieldOfView) == 0x0000FC, "Member 'UMediaPlayer::VerticalFieldOfView' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, ViewRotation) == 0x000100, "Member 'UMediaPlayer::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlayer, PlayerGuid) == 0x000140, "Member 'UMediaPlayer::PlayerGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMediaSourceRendererInterface \ +static_assert(alignof(IMediaSourceRendererInterface) == 0x000001, "Wrong alignment on IMediaSourceRendererInterface"); \ +static_assert(sizeof(IMediaSourceRendererInterface) == 0x000001, "Wrong size on IMediaSourceRendererInterface"); \ + +#define DUMPER7_ASSERTS_MediaTexture_SetMediaPlayer \ +static_assert(alignof(MediaTexture_SetMediaPlayer) == 0x000008, "Wrong alignment on MediaTexture_SetMediaPlayer"); \ +static_assert(sizeof(MediaTexture_SetMediaPlayer) == 0x000008, "Wrong size on MediaTexture_SetMediaPlayer"); \ +static_assert(offsetof(MediaTexture_SetMediaPlayer, NewMediaPlayer) == 0x000000, "Member 'MediaTexture_SetMediaPlayer::NewMediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaTexture_GetAspectRatio \ +static_assert(alignof(MediaTexture_GetAspectRatio) == 0x000004, "Wrong alignment on MediaTexture_GetAspectRatio"); \ +static_assert(sizeof(MediaTexture_GetAspectRatio) == 0x000004, "Wrong size on MediaTexture_GetAspectRatio"); \ +static_assert(offsetof(MediaTexture_GetAspectRatio, ReturnValue) == 0x000000, "Member 'MediaTexture_GetAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaTexture_GetHeight \ +static_assert(alignof(MediaTexture_GetHeight) == 0x000004, "Wrong alignment on MediaTexture_GetHeight"); \ +static_assert(sizeof(MediaTexture_GetHeight) == 0x000004, "Wrong size on MediaTexture_GetHeight"); \ +static_assert(offsetof(MediaTexture_GetHeight, ReturnValue) == 0x000000, "Member 'MediaTexture_GetHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaTexture_GetMediaPlayer \ +static_assert(alignof(MediaTexture_GetMediaPlayer) == 0x000008, "Wrong alignment on MediaTexture_GetMediaPlayer"); \ +static_assert(sizeof(MediaTexture_GetMediaPlayer) == 0x000008, "Wrong size on MediaTexture_GetMediaPlayer"); \ +static_assert(offsetof(MediaTexture_GetMediaPlayer, ReturnValue) == 0x000000, "Member 'MediaTexture_GetMediaPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaTexture_GetTextureNumMips \ +static_assert(alignof(MediaTexture_GetTextureNumMips) == 0x000004, "Wrong alignment on MediaTexture_GetTextureNumMips"); \ +static_assert(sizeof(MediaTexture_GetTextureNumMips) == 0x000004, "Wrong size on MediaTexture_GetTextureNumMips"); \ +static_assert(offsetof(MediaTexture_GetTextureNumMips, ReturnValue) == 0x000000, "Member 'MediaTexture_GetTextureNumMips::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaTexture_GetWidth \ +static_assert(alignof(MediaTexture_GetWidth) == 0x000004, "Wrong alignment on MediaTexture_GetWidth"); \ +static_assert(sizeof(MediaTexture_GetWidth) == 0x000004, "Wrong size on MediaTexture_GetWidth"); \ +static_assert(offsetof(MediaTexture_GetWidth, ReturnValue) == 0x000000, "Member 'MediaTexture_GetWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaTexture \ +static_assert(alignof(UMediaTexture) == 0x000010, "Wrong alignment on UMediaTexture"); \ +static_assert(sizeof(UMediaTexture) == 0x0002B0, "Wrong size on UMediaTexture"); \ +static_assert(offsetof(UMediaTexture, AddressX) == 0x0001C8, "Member 'UMediaTexture::AddressX' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, AddressY) == 0x0001C9, "Member 'UMediaTexture::AddressY' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, AutoClear) == 0x0001CA, "Member 'UMediaTexture::AutoClear' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, ClearColor) == 0x0001CC, "Member 'UMediaTexture::ClearColor' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, EnableGenMips) == 0x0001DC, "Member 'UMediaTexture::EnableGenMips' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, NumMips) == 0x0001DD, "Member 'UMediaTexture::NumMips' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, NewStyleOutput) == 0x0001DE, "Member 'UMediaTexture::NewStyleOutput' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, OutputFormat) == 0x0001DF, "Member 'UMediaTexture::OutputFormat' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, CurrentAspectRatio) == 0x0001E0, "Member 'UMediaTexture::CurrentAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, CurrentOrientation) == 0x0001E4, "Member 'UMediaTexture::CurrentOrientation' has a wrong offset!"); \ +static_assert(offsetof(UMediaTexture, MediaPlayer) == 0x0001E8, "Member 'UMediaTexture::MediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_SetMediaOptionBool \ +static_assert(alignof(MediaSource_SetMediaOptionBool) == 0x000004, "Wrong alignment on MediaSource_SetMediaOptionBool"); \ +static_assert(sizeof(MediaSource_SetMediaOptionBool) == 0x00000C, "Wrong size on MediaSource_SetMediaOptionBool"); \ +static_assert(offsetof(MediaSource_SetMediaOptionBool, Key) == 0x000000, "Member 'MediaSource_SetMediaOptionBool::Key' has a wrong offset!"); \ +static_assert(offsetof(MediaSource_SetMediaOptionBool, Value) == 0x000008, "Member 'MediaSource_SetMediaOptionBool::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_SetMediaOptionFloat \ +static_assert(alignof(MediaSource_SetMediaOptionFloat) == 0x000004, "Wrong alignment on MediaSource_SetMediaOptionFloat"); \ +static_assert(sizeof(MediaSource_SetMediaOptionFloat) == 0x00000C, "Wrong size on MediaSource_SetMediaOptionFloat"); \ +static_assert(offsetof(MediaSource_SetMediaOptionFloat, Key) == 0x000000, "Member 'MediaSource_SetMediaOptionFloat::Key' has a wrong offset!"); \ +static_assert(offsetof(MediaSource_SetMediaOptionFloat, Value) == 0x000008, "Member 'MediaSource_SetMediaOptionFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_SetMediaOptionInt64 \ +static_assert(alignof(MediaSource_SetMediaOptionInt64) == 0x000008, "Wrong alignment on MediaSource_SetMediaOptionInt64"); \ +static_assert(sizeof(MediaSource_SetMediaOptionInt64) == 0x000010, "Wrong size on MediaSource_SetMediaOptionInt64"); \ +static_assert(offsetof(MediaSource_SetMediaOptionInt64, Key) == 0x000000, "Member 'MediaSource_SetMediaOptionInt64::Key' has a wrong offset!"); \ +static_assert(offsetof(MediaSource_SetMediaOptionInt64, Value) == 0x000008, "Member 'MediaSource_SetMediaOptionInt64::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_SetMediaOptionString \ +static_assert(alignof(MediaSource_SetMediaOptionString) == 0x000008, "Wrong alignment on MediaSource_SetMediaOptionString"); \ +static_assert(sizeof(MediaSource_SetMediaOptionString) == 0x000018, "Wrong size on MediaSource_SetMediaOptionString"); \ +static_assert(offsetof(MediaSource_SetMediaOptionString, Key) == 0x000000, "Member 'MediaSource_SetMediaOptionString::Key' has a wrong offset!"); \ +static_assert(offsetof(MediaSource_SetMediaOptionString, Value) == 0x000008, "Member 'MediaSource_SetMediaOptionString::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_GetUrl \ +static_assert(alignof(MediaSource_GetUrl) == 0x000008, "Wrong alignment on MediaSource_GetUrl"); \ +static_assert(sizeof(MediaSource_GetUrl) == 0x000010, "Wrong size on MediaSource_GetUrl"); \ +static_assert(offsetof(MediaSource_GetUrl, ReturnValue) == 0x000000, "Member 'MediaSource_GetUrl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSource_Validate \ +static_assert(alignof(MediaSource_Validate) == 0x000001, "Wrong alignment on MediaSource_Validate"); \ +static_assert(sizeof(MediaSource_Validate) == 0x000001, "Wrong size on MediaSource_Validate"); \ +static_assert(offsetof(MediaSource_Validate, ReturnValue) == 0x000000, "Member 'MediaSource_Validate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaSource \ +static_assert(alignof(UMediaSource) == 0x000008, "Wrong alignment on UMediaSource"); \ +static_assert(sizeof(UMediaSource) == 0x000080, "Wrong size on UMediaSource"); \ + +#define DUMPER7_ASSERTS_UBaseMediaSource \ +static_assert(alignof(UBaseMediaSource) == 0x000008, "Wrong alignment on UBaseMediaSource"); \ +static_assert(sizeof(UBaseMediaSource) == 0x000088, "Wrong size on UBaseMediaSource"); \ +static_assert(offsetof(UBaseMediaSource, PlayerName) == 0x000080, "Member 'UBaseMediaSource::PlayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FileMediaSource_SetFilePath \ +static_assert(alignof(FileMediaSource_SetFilePath) == 0x000008, "Wrong alignment on FileMediaSource_SetFilePath"); \ +static_assert(sizeof(FileMediaSource_SetFilePath) == 0x000010, "Wrong size on FileMediaSource_SetFilePath"); \ +static_assert(offsetof(FileMediaSource_SetFilePath, Path) == 0x000000, "Member 'FileMediaSource_SetFilePath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFileMediaSource \ +static_assert(alignof(UFileMediaSource) == 0x000008, "Wrong alignment on UFileMediaSource"); \ +static_assert(sizeof(UFileMediaSource) == 0x0000B0, "Wrong size on UFileMediaSource"); \ +static_assert(offsetof(UFileMediaSource, FilePath) == 0x000088, "Member 'UFileMediaSource::FilePath' has a wrong offset!"); \ +static_assert(offsetof(UFileMediaSource, PrecacheFile) == 0x000098, "Member 'UFileMediaSource::PrecacheFile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaComponent_GetMediaPlayer \ +static_assert(alignof(MediaComponent_GetMediaPlayer) == 0x000008, "Wrong alignment on MediaComponent_GetMediaPlayer"); \ +static_assert(sizeof(MediaComponent_GetMediaPlayer) == 0x000008, "Wrong size on MediaComponent_GetMediaPlayer"); \ +static_assert(offsetof(MediaComponent_GetMediaPlayer, ReturnValue) == 0x000000, "Member 'MediaComponent_GetMediaPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaComponent_GetMediaTexture \ +static_assert(alignof(MediaComponent_GetMediaTexture) == 0x000008, "Wrong alignment on MediaComponent_GetMediaTexture"); \ +static_assert(sizeof(MediaComponent_GetMediaTexture) == 0x000008, "Wrong size on MediaComponent_GetMediaTexture"); \ +static_assert(offsetof(MediaComponent_GetMediaTexture, ReturnValue) == 0x000000, "Member 'MediaComponent_GetMediaTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaComponent \ +static_assert(alignof(UMediaComponent) == 0x000008, "Wrong alignment on UMediaComponent"); \ +static_assert(sizeof(UMediaComponent) == 0x0000B0, "Wrong size on UMediaComponent"); \ +static_assert(offsetof(UMediaComponent, MediaTexture) == 0x0000A0, "Member 'UMediaComponent::MediaTexture' has a wrong offset!"); \ +static_assert(offsetof(UMediaComponent, MediaPlayer) == 0x0000A8, "Member 'UMediaComponent::MediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaTimeStampInfo \ +static_assert(alignof(UMediaTimeStampInfo) == 0x000008, "Wrong alignment on UMediaTimeStampInfo"); \ +static_assert(sizeof(UMediaTimeStampInfo) == 0x000038, "Wrong size on UMediaTimeStampInfo"); \ +static_assert(offsetof(UMediaTimeStampInfo, Time) == 0x000028, "Member 'UMediaTimeStampInfo::Time' has a wrong offset!"); \ +static_assert(offsetof(UMediaTimeStampInfo, SequenceIndex) == 0x000030, "Member 'UMediaTimeStampInfo::SequenceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMediaPlayerProxyInterface \ +static_assert(alignof(IMediaPlayerProxyInterface) == 0x000001, "Wrong alignment on IMediaPlayerProxyInterface"); \ +static_assert(sizeof(IMediaPlayerProxyInterface) == 0x000001, "Wrong size on IMediaPlayerProxyInterface"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Add \ +static_assert(alignof(MediaPlaylist_Add) == 0x000008, "Wrong alignment on MediaPlaylist_Add"); \ +static_assert(sizeof(MediaPlaylist_Add) == 0x000010, "Wrong size on MediaPlaylist_Add"); \ +static_assert(offsetof(MediaPlaylist_Add, MediaSource) == 0x000000, "Member 'MediaPlaylist_Add::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Add, ReturnValue) == 0x000008, "Member 'MediaPlaylist_Add::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_AddFile \ +static_assert(alignof(MediaPlaylist_AddFile) == 0x000008, "Wrong alignment on MediaPlaylist_AddFile"); \ +static_assert(sizeof(MediaPlaylist_AddFile) == 0x000018, "Wrong size on MediaPlaylist_AddFile"); \ +static_assert(offsetof(MediaPlaylist_AddFile, FilePath) == 0x000000, "Member 'MediaPlaylist_AddFile::FilePath' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_AddFile, ReturnValue) == 0x000010, "Member 'MediaPlaylist_AddFile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_AddUrl \ +static_assert(alignof(MediaPlaylist_AddUrl) == 0x000008, "Wrong alignment on MediaPlaylist_AddUrl"); \ +static_assert(sizeof(MediaPlaylist_AddUrl) == 0x000018, "Wrong size on MediaPlaylist_AddUrl"); \ +static_assert(offsetof(MediaPlaylist_AddUrl, URL) == 0x000000, "Member 'MediaPlaylist_AddUrl::URL' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_AddUrl, ReturnValue) == 0x000010, "Member 'MediaPlaylist_AddUrl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Get \ +static_assert(alignof(MediaPlaylist_Get) == 0x000008, "Wrong alignment on MediaPlaylist_Get"); \ +static_assert(sizeof(MediaPlaylist_Get) == 0x000010, "Wrong size on MediaPlaylist_Get"); \ +static_assert(offsetof(MediaPlaylist_Get, Index_0) == 0x000000, "Member 'MediaPlaylist_Get::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Get, ReturnValue) == 0x000008, "Member 'MediaPlaylist_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_GetNext \ +static_assert(alignof(MediaPlaylist_GetNext) == 0x000008, "Wrong alignment on MediaPlaylist_GetNext"); \ +static_assert(sizeof(MediaPlaylist_GetNext) == 0x000010, "Wrong size on MediaPlaylist_GetNext"); \ +static_assert(offsetof(MediaPlaylist_GetNext, InOutIndex) == 0x000000, "Member 'MediaPlaylist_GetNext::InOutIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_GetNext, ReturnValue) == 0x000008, "Member 'MediaPlaylist_GetNext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_GetPrevious \ +static_assert(alignof(MediaPlaylist_GetPrevious) == 0x000008, "Wrong alignment on MediaPlaylist_GetPrevious"); \ +static_assert(sizeof(MediaPlaylist_GetPrevious) == 0x000010, "Wrong size on MediaPlaylist_GetPrevious"); \ +static_assert(offsetof(MediaPlaylist_GetPrevious, InOutIndex) == 0x000000, "Member 'MediaPlaylist_GetPrevious::InOutIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_GetPrevious, ReturnValue) == 0x000008, "Member 'MediaPlaylist_GetPrevious::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_GetRandom \ +static_assert(alignof(MediaPlaylist_GetRandom) == 0x000008, "Wrong alignment on MediaPlaylist_GetRandom"); \ +static_assert(sizeof(MediaPlaylist_GetRandom) == 0x000010, "Wrong size on MediaPlaylist_GetRandom"); \ +static_assert(offsetof(MediaPlaylist_GetRandom, OutIndex) == 0x000000, "Member 'MediaPlaylist_GetRandom::OutIndex' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_GetRandom, ReturnValue) == 0x000008, "Member 'MediaPlaylist_GetRandom::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Insert \ +static_assert(alignof(MediaPlaylist_Insert) == 0x000008, "Wrong alignment on MediaPlaylist_Insert"); \ +static_assert(sizeof(MediaPlaylist_Insert) == 0x000010, "Wrong size on MediaPlaylist_Insert"); \ +static_assert(offsetof(MediaPlaylist_Insert, MediaSource) == 0x000000, "Member 'MediaPlaylist_Insert::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Insert, Index_0) == 0x000008, "Member 'MediaPlaylist_Insert::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Num \ +static_assert(alignof(MediaPlaylist_Num) == 0x000004, "Wrong alignment on MediaPlaylist_Num"); \ +static_assert(sizeof(MediaPlaylist_Num) == 0x000004, "Wrong size on MediaPlaylist_Num"); \ +static_assert(offsetof(MediaPlaylist_Num, ReturnValue) == 0x000000, "Member 'MediaPlaylist_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Remove \ +static_assert(alignof(MediaPlaylist_Remove) == 0x000008, "Wrong alignment on MediaPlaylist_Remove"); \ +static_assert(sizeof(MediaPlaylist_Remove) == 0x000010, "Wrong size on MediaPlaylist_Remove"); \ +static_assert(offsetof(MediaPlaylist_Remove, MediaSource) == 0x000000, "Member 'MediaPlaylist_Remove::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Remove, ReturnValue) == 0x000008, "Member 'MediaPlaylist_Remove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_RemoveAt \ +static_assert(alignof(MediaPlaylist_RemoveAt) == 0x000004, "Wrong alignment on MediaPlaylist_RemoveAt"); \ +static_assert(sizeof(MediaPlaylist_RemoveAt) == 0x000008, "Wrong size on MediaPlaylist_RemoveAt"); \ +static_assert(offsetof(MediaPlaylist_RemoveAt, Index_0) == 0x000000, "Member 'MediaPlaylist_RemoveAt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_RemoveAt, ReturnValue) == 0x000004, "Member 'MediaPlaylist_RemoveAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlaylist_Replace \ +static_assert(alignof(MediaPlaylist_Replace) == 0x000008, "Wrong alignment on MediaPlaylist_Replace"); \ +static_assert(sizeof(MediaPlaylist_Replace) == 0x000018, "Wrong size on MediaPlaylist_Replace"); \ +static_assert(offsetof(MediaPlaylist_Replace, Index_0) == 0x000000, "Member 'MediaPlaylist_Replace::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Replace, Replacement) == 0x000008, "Member 'MediaPlaylist_Replace::Replacement' has a wrong offset!"); \ +static_assert(offsetof(MediaPlaylist_Replace, ReturnValue) == 0x000010, "Member 'MediaPlaylist_Replace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaPlaylist \ +static_assert(alignof(UMediaPlaylist) == 0x000008, "Wrong alignment on UMediaPlaylist"); \ +static_assert(sizeof(UMediaPlaylist) == 0x000038, "Wrong size on UMediaPlaylist"); \ +static_assert(offsetof(UMediaPlaylist, Items) == 0x000028, "Member 'UMediaPlaylist::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_BP_GetAttenuationSettingsToApply \ +static_assert(alignof(MediaSoundComponent_BP_GetAttenuationSettingsToApply) == 0x000008, "Wrong alignment on MediaSoundComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(sizeof(MediaSoundComponent_BP_GetAttenuationSettingsToApply) == 0x0003D8, "Wrong size on MediaSoundComponent_BP_GetAttenuationSettingsToApply"); \ +static_assert(offsetof(MediaSoundComponent_BP_GetAttenuationSettingsToApply, OutAttenuationSettings) == 0x000000, "Member 'MediaSoundComponent_BP_GetAttenuationSettingsToApply::OutAttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(MediaSoundComponent_BP_GetAttenuationSettingsToApply, ReturnValue) == 0x0003D0, "Member 'MediaSoundComponent_BP_GetAttenuationSettingsToApply::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_GetNormalizedSpectralData \ +static_assert(alignof(MediaSoundComponent_GetNormalizedSpectralData) == 0x000008, "Wrong alignment on MediaSoundComponent_GetNormalizedSpectralData"); \ +static_assert(sizeof(MediaSoundComponent_GetNormalizedSpectralData) == 0x000010, "Wrong size on MediaSoundComponent_GetNormalizedSpectralData"); \ +static_assert(offsetof(MediaSoundComponent_GetNormalizedSpectralData, ReturnValue) == 0x000000, "Member 'MediaSoundComponent_GetNormalizedSpectralData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_GetSpectralData \ +static_assert(alignof(MediaSoundComponent_GetSpectralData) == 0x000008, "Wrong alignment on MediaSoundComponent_GetSpectralData"); \ +static_assert(sizeof(MediaSoundComponent_GetSpectralData) == 0x000010, "Wrong size on MediaSoundComponent_GetSpectralData"); \ +static_assert(offsetof(MediaSoundComponent_GetSpectralData, ReturnValue) == 0x000000, "Member 'MediaSoundComponent_GetSpectralData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_SetEnableEnvelopeFollowing \ +static_assert(alignof(MediaSoundComponent_SetEnableEnvelopeFollowing) == 0x000001, "Wrong alignment on MediaSoundComponent_SetEnableEnvelopeFollowing"); \ +static_assert(sizeof(MediaSoundComponent_SetEnableEnvelopeFollowing) == 0x000001, "Wrong size on MediaSoundComponent_SetEnableEnvelopeFollowing"); \ +static_assert(offsetof(MediaSoundComponent_SetEnableEnvelopeFollowing, bInEnvelopeFollowing) == 0x000000, "Member 'MediaSoundComponent_SetEnableEnvelopeFollowing::bInEnvelopeFollowing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_SetEnableSpectralAnalysis \ +static_assert(alignof(MediaSoundComponent_SetEnableSpectralAnalysis) == 0x000001, "Wrong alignment on MediaSoundComponent_SetEnableSpectralAnalysis"); \ +static_assert(sizeof(MediaSoundComponent_SetEnableSpectralAnalysis) == 0x000001, "Wrong size on MediaSoundComponent_SetEnableSpectralAnalysis"); \ +static_assert(offsetof(MediaSoundComponent_SetEnableSpectralAnalysis, bInSpectralAnalysisEnabled) == 0x000000, "Member 'MediaSoundComponent_SetEnableSpectralAnalysis::bInSpectralAnalysisEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_SetEnvelopeFollowingsettings \ +static_assert(alignof(MediaSoundComponent_SetEnvelopeFollowingsettings) == 0x000004, "Wrong alignment on MediaSoundComponent_SetEnvelopeFollowingsettings"); \ +static_assert(sizeof(MediaSoundComponent_SetEnvelopeFollowingsettings) == 0x000008, "Wrong size on MediaSoundComponent_SetEnvelopeFollowingsettings"); \ +static_assert(offsetof(MediaSoundComponent_SetEnvelopeFollowingsettings, AttackTimeMsec) == 0x000000, "Member 'MediaSoundComponent_SetEnvelopeFollowingsettings::AttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(MediaSoundComponent_SetEnvelopeFollowingsettings, ReleaseTimeMsec) == 0x000004, "Member 'MediaSoundComponent_SetEnvelopeFollowingsettings::ReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_SetMediaPlayer \ +static_assert(alignof(MediaSoundComponent_SetMediaPlayer) == 0x000008, "Wrong alignment on MediaSoundComponent_SetMediaPlayer"); \ +static_assert(sizeof(MediaSoundComponent_SetMediaPlayer) == 0x000008, "Wrong size on MediaSoundComponent_SetMediaPlayer"); \ +static_assert(offsetof(MediaSoundComponent_SetMediaPlayer, NewMediaPlayer) == 0x000000, "Member 'MediaSoundComponent_SetMediaPlayer::NewMediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_SetSpectralAnalysisSettings \ +static_assert(alignof(MediaSoundComponent_SetSpectralAnalysisSettings) == 0x000008, "Wrong alignment on MediaSoundComponent_SetSpectralAnalysisSettings"); \ +static_assert(sizeof(MediaSoundComponent_SetSpectralAnalysisSettings) == 0x000018, "Wrong size on MediaSoundComponent_SetSpectralAnalysisSettings"); \ +static_assert(offsetof(MediaSoundComponent_SetSpectralAnalysisSettings, InFrequenciesToAnalyze) == 0x000000, "Member 'MediaSoundComponent_SetSpectralAnalysisSettings::InFrequenciesToAnalyze' has a wrong offset!"); \ +static_assert(offsetof(MediaSoundComponent_SetSpectralAnalysisSettings, InFFTSize) == 0x000010, "Member 'MediaSoundComponent_SetSpectralAnalysisSettings::InFFTSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_GetEnvelopeValue \ +static_assert(alignof(MediaSoundComponent_GetEnvelopeValue) == 0x000004, "Wrong alignment on MediaSoundComponent_GetEnvelopeValue"); \ +static_assert(sizeof(MediaSoundComponent_GetEnvelopeValue) == 0x000004, "Wrong size on MediaSoundComponent_GetEnvelopeValue"); \ +static_assert(offsetof(MediaSoundComponent_GetEnvelopeValue, ReturnValue) == 0x000000, "Member 'MediaSoundComponent_GetEnvelopeValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaSoundComponent_GetMediaPlayer \ +static_assert(alignof(MediaSoundComponent_GetMediaPlayer) == 0x000008, "Wrong alignment on MediaSoundComponent_GetMediaPlayer"); \ +static_assert(sizeof(MediaSoundComponent_GetMediaPlayer) == 0x000008, "Wrong size on MediaSoundComponent_GetMediaPlayer"); \ +static_assert(offsetof(MediaSoundComponent_GetMediaPlayer, ReturnValue) == 0x000000, "Member 'MediaSoundComponent_GetMediaPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaSoundComponent \ +static_assert(alignof(UMediaSoundComponent) == 0x000010, "Wrong alignment on UMediaSoundComponent"); \ +static_assert(sizeof(UMediaSoundComponent) == 0x0009E0, "Wrong size on UMediaSoundComponent"); \ +static_assert(offsetof(UMediaSoundComponent, Channels) == 0x000900, "Member 'UMediaSoundComponent::Channels' has a wrong offset!"); \ +static_assert(offsetof(UMediaSoundComponent, DynamicRateAdjustment) == 0x000904, "Member 'UMediaSoundComponent::DynamicRateAdjustment' has a wrong offset!"); \ +static_assert(offsetof(UMediaSoundComponent, RateAdjustmentFactor) == 0x000908, "Member 'UMediaSoundComponent::RateAdjustmentFactor' has a wrong offset!"); \ +static_assert(offsetof(UMediaSoundComponent, RateAdjustmentRange) == 0x00090C, "Member 'UMediaSoundComponent::RateAdjustmentRange' has a wrong offset!"); \ +static_assert(offsetof(UMediaSoundComponent, MediaPlayer) == 0x000920, "Member 'UMediaSoundComponent::MediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlatformMediaSource \ +static_assert(alignof(UPlatformMediaSource) == 0x000008, "Wrong alignment on UPlatformMediaSource"); \ +static_assert(sizeof(UPlatformMediaSource) == 0x000088, "Wrong size on UPlatformMediaSource"); \ +static_assert(offsetof(UPlatformMediaSource, MediaSource) == 0x000080, "Member 'UPlatformMediaSource::MediaSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamMediaSource \ +static_assert(alignof(UStreamMediaSource) == 0x000008, "Wrong alignment on UStreamMediaSource"); \ +static_assert(sizeof(UStreamMediaSource) == 0x000098, "Wrong size on UStreamMediaSource"); \ +static_assert(offsetof(UStreamMediaSource, StreamUrl) == 0x000088, "Member 'UStreamMediaSource::StreamUrl' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTimeSynchronizableMediaSource \ +static_assert(alignof(UTimeSynchronizableMediaSource) == 0x000008, "Wrong alignment on UTimeSynchronizableMediaSource"); \ +static_assert(sizeof(UTimeSynchronizableMediaSource) == 0x0000A0, "Wrong size on UTimeSynchronizableMediaSource"); \ +static_assert(offsetof(UTimeSynchronizableMediaSource, bUseTimeSynchronization) == 0x000088, "Member 'UTimeSynchronizableMediaSource::bUseTimeSynchronization' has a wrong offset!"); \ +static_assert(offsetof(UTimeSynchronizableMediaSource, FrameDelay) == 0x00008C, "Member 'UTimeSynchronizableMediaSource::FrameDelay' has a wrong offset!"); \ +static_assert(offsetof(UTimeSynchronizableMediaSource, TimeDelay) == 0x000090, "Member 'UTimeSynchronizableMediaSource::TimeDelay' has a wrong offset!"); \ +static_assert(offsetof(UTimeSynchronizableMediaSource, bAutoDetectInput) == 0x000098, "Member 'UTimeSynchronizableMediaSource::bAutoDetectInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices \ +static_assert(alignof(MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices) == 0x000008, "Wrong alignment on MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices"); \ +static_assert(sizeof(MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices) == 0x000018, "Wrong size on MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices, OutDevices) == 0x000000, "Member 'MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices::OutDevices' has a wrong offset!"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices, Filter) == 0x000010, "Member 'MediaBlueprintFunctionLibrary_EnumerateAudioCaptureDevices::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices \ +static_assert(alignof(MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices) == 0x000008, "Wrong alignment on MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices"); \ +static_assert(sizeof(MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices) == 0x000018, "Wrong size on MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices, OutDevices) == 0x000000, "Member 'MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices::OutDevices' has a wrong offset!"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices, Filter) == 0x000010, "Member 'MediaBlueprintFunctionLibrary_EnumerateVideoCaptureDevices::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices \ +static_assert(alignof(MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices) == 0x000008, "Wrong alignment on MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices"); \ +static_assert(sizeof(MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices) == 0x000018, "Wrong size on MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices, OutDevices) == 0x000000, "Member 'MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices::OutDevices' has a wrong offset!"); \ +static_assert(offsetof(MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices, Filter) == 0x000010, "Member 'MediaBlueprintFunctionLibrary_EnumerateWebcamCaptureDevices::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaBlueprintFunctionLibrary \ +static_assert(alignof(UMediaBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UMediaBlueprintFunctionLibrary"); \ +static_assert(sizeof(UMediaBlueprintFunctionLibrary) == 0x000028, "Wrong size on UMediaBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceBindingReference \ +static_assert(alignof(FLevelSequenceBindingReference) == 0x000008, "Wrong alignment on FLevelSequenceBindingReference"); \ +static_assert(sizeof(FLevelSequenceBindingReference) == 0x000040, "Wrong size on FLevelSequenceBindingReference"); \ +static_assert(offsetof(FLevelSequenceBindingReference, PackageName) == 0x000000, "Member 'FLevelSequenceBindingReference::PackageName' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceBindingReference, ExternalObjectPath) == 0x000010, "Member 'FLevelSequenceBindingReference::ExternalObjectPath' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceBindingReference, ObjectPath) == 0x000030, "Member 'FLevelSequenceBindingReference::ObjectPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceBindingReferenceArray \ +static_assert(alignof(FLevelSequenceBindingReferenceArray) == 0x000008, "Wrong alignment on FLevelSequenceBindingReferenceArray"); \ +static_assert(sizeof(FLevelSequenceBindingReferenceArray) == 0x000010, "Wrong size on FLevelSequenceBindingReferenceArray"); \ +static_assert(offsetof(FLevelSequenceBindingReferenceArray, References) == 0x000000, "Member 'FLevelSequenceBindingReferenceArray::References' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceBindingReferences \ +static_assert(alignof(FLevelSequenceBindingReferences) == 0x000008, "Wrong alignment on FLevelSequenceBindingReferences"); \ +static_assert(sizeof(FLevelSequenceBindingReferences) == 0x0000F0, "Wrong size on FLevelSequenceBindingReferences"); \ +static_assert(offsetof(FLevelSequenceBindingReferences, BindingIdToReferences) == 0x000000, "Member 'FLevelSequenceBindingReferences::BindingIdToReferences' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceBindingReferences, AnimSequenceInstances) == 0x000050, "Member 'FLevelSequenceBindingReferences::AnimSequenceInstances' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceBindingReferences, PostProcessInstances) == 0x0000A0, "Member 'FLevelSequenceBindingReferences::PostProcessInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceCameraSettings \ +static_assert(alignof(FLevelSequenceCameraSettings) == 0x000001, "Wrong alignment on FLevelSequenceCameraSettings"); \ +static_assert(sizeof(FLevelSequenceCameraSettings) == 0x000002, "Wrong size on FLevelSequenceCameraSettings"); \ +static_assert(offsetof(FLevelSequenceCameraSettings, bOverrideAspectRatioAxisConstraint) == 0x000000, "Member 'FLevelSequenceCameraSettings::bOverrideAspectRatioAxisConstraint' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceCameraSettings, AspectRatioAxisConstraint) == 0x000001, "Member 'FLevelSequenceCameraSettings::AspectRatioAxisConstraint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceLegacyObjectReference \ +static_assert(alignof(FLevelSequenceLegacyObjectReference) == 0x000008, "Wrong alignment on FLevelSequenceLegacyObjectReference"); \ +static_assert(sizeof(FLevelSequenceLegacyObjectReference) == 0x000020, "Wrong size on FLevelSequenceLegacyObjectReference"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceObjectReferenceMap \ +static_assert(alignof(FLevelSequenceObjectReferenceMap) == 0x000008, "Wrong alignment on FLevelSequenceObjectReferenceMap"); \ +static_assert(sizeof(FLevelSequenceObjectReferenceMap) == 0x000050, "Wrong size on FLevelSequenceObjectReferenceMap"); \ + +#define DUMPER7_ASSERTS_FBoundActorProxy \ +static_assert(alignof(FBoundActorProxy) == 0x000001, "Wrong alignment on FBoundActorProxy"); \ +static_assert(sizeof(FBoundActorProxy) == 0x000001, "Wrong size on FBoundActorProxy"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceAnimSequenceLinkItem \ +static_assert(alignof(FLevelSequenceAnimSequenceLinkItem) == 0x000008, "Wrong alignment on FLevelSequenceAnimSequenceLinkItem"); \ +static_assert(sizeof(FLevelSequenceAnimSequenceLinkItem) == 0x000038, "Wrong size on FLevelSequenceAnimSequenceLinkItem"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, SkelTrackGuid) == 0x000000, "Member 'FLevelSequenceAnimSequenceLinkItem::SkelTrackGuid' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, PathToAnimSequence) == 0x000010, "Member 'FLevelSequenceAnimSequenceLinkItem::PathToAnimSequence' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bExportTransforms) == 0x000030, "Member 'FLevelSequenceAnimSequenceLinkItem::bExportTransforms' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bExportMorphTargets) == 0x000031, "Member 'FLevelSequenceAnimSequenceLinkItem::bExportMorphTargets' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bExportAttributeCurves) == 0x000032, "Member 'FLevelSequenceAnimSequenceLinkItem::bExportAttributeCurves' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bExportMaterialCurves) == 0x000033, "Member 'FLevelSequenceAnimSequenceLinkItem::bExportMaterialCurves' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, Interpolation) == 0x000034, "Member 'FLevelSequenceAnimSequenceLinkItem::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, CurveInterpolation) == 0x000035, "Member 'FLevelSequenceAnimSequenceLinkItem::CurveInterpolation' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bRecordInWorldSpace) == 0x000036, "Member 'FLevelSequenceAnimSequenceLinkItem::bRecordInWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceAnimSequenceLinkItem, bEvaluateAllSkeletalMeshComponents) == 0x000037, "Member 'FLevelSequenceAnimSequenceLinkItem::bEvaluateAllSkeletalMeshComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequenceObject \ +static_assert(alignof(FLevelSequenceObject) == 0x000008, "Wrong alignment on FLevelSequenceObject"); \ +static_assert(sizeof(FLevelSequenceObject) == 0x000030, "Wrong size on FLevelSequenceObject"); \ +static_assert(offsetof(FLevelSequenceObject, ObjectOrOwner) == 0x000000, "Member 'FLevelSequenceObject::ObjectOrOwner' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceObject, ComponentName) == 0x000018, "Member 'FLevelSequenceObject::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequenceObject, CachedComponent) == 0x000028, "Member 'FLevelSequenceObject::CachedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLevelSequencePlayerSnapshot \ +static_assert(alignof(FLevelSequencePlayerSnapshot) == 0x000008, "Wrong alignment on FLevelSequencePlayerSnapshot"); \ +static_assert(sizeof(FLevelSequencePlayerSnapshot) == 0x0000C8, "Wrong size on FLevelSequencePlayerSnapshot"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, RootName) == 0x000000, "Member 'FLevelSequencePlayerSnapshot::RootName' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, RootTime) == 0x000010, "Member 'FLevelSequencePlayerSnapshot::RootTime' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, SourceTime) == 0x000020, "Member 'FLevelSequencePlayerSnapshot::SourceTime' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, CurrentShotName) == 0x000030, "Member 'FLevelSequencePlayerSnapshot::CurrentShotName' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, CurrentShotLocalTime) == 0x000040, "Member 'FLevelSequencePlayerSnapshot::CurrentShotLocalTime' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, CurrentShotSourceTime) == 0x000050, "Member 'FLevelSequencePlayerSnapshot::CurrentShotSourceTime' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, SourceTimecode) == 0x000060, "Member 'FLevelSequencePlayerSnapshot::SourceTimecode' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, CameraComponent) == 0x000070, "Member 'FLevelSequencePlayerSnapshot::CameraComponent' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, ActiveShot) == 0x000098, "Member 'FLevelSequencePlayerSnapshot::ActiveShot' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, ShotID) == 0x0000A0, "Member 'FLevelSequencePlayerSnapshot::ShotID' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, MasterName) == 0x0000A8, "Member 'FLevelSequencePlayerSnapshot::MasterName' has a wrong offset!"); \ +static_assert(offsetof(FLevelSequencePlayerSnapshot, MasterTime) == 0x0000B8, "Member 'FLevelSequencePlayerSnapshot::MasterTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDefaultLevelSequenceInstanceData \ +static_assert(alignof(UDefaultLevelSequenceInstanceData) == 0x000010, "Wrong alignment on UDefaultLevelSequenceInstanceData"); \ +static_assert(sizeof(UDefaultLevelSequenceInstanceData) == 0x0000A0, "Wrong size on UDefaultLevelSequenceInstanceData"); \ +static_assert(offsetof(UDefaultLevelSequenceInstanceData, TransformOriginActor) == 0x000030, "Member 'UDefaultLevelSequenceInstanceData::TransformOriginActor' has a wrong offset!"); \ +static_assert(offsetof(UDefaultLevelSequenceInstanceData, TransformOrigin) == 0x000040, "Member 'UDefaultLevelSequenceInstanceData::TransformOrigin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSequenceLevelSequenceLink \ +static_assert(alignof(UAnimSequenceLevelSequenceLink) == 0x000008, "Wrong alignment on UAnimSequenceLevelSequenceLink"); \ +static_assert(sizeof(UAnimSequenceLevelSequenceLink) == 0x000058, "Wrong size on UAnimSequenceLevelSequenceLink"); \ +static_assert(offsetof(UAnimSequenceLevelSequenceLink, SkelTrackGuid) == 0x000028, "Member 'UAnimSequenceLevelSequenceLink::SkelTrackGuid' has a wrong offset!"); \ +static_assert(offsetof(UAnimSequenceLevelSequenceLink, PathToLevelSequence) == 0x000038, "Member 'UAnimSequenceLevelSequenceLink::PathToLevelSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequence_CopyMetaData \ +static_assert(alignof(LevelSequence_CopyMetaData) == 0x000008, "Wrong alignment on LevelSequence_CopyMetaData"); \ +static_assert(sizeof(LevelSequence_CopyMetaData) == 0x000010, "Wrong size on LevelSequence_CopyMetaData"); \ +static_assert(offsetof(LevelSequence_CopyMetaData, InMetaData) == 0x000000, "Member 'LevelSequence_CopyMetaData::InMetaData' has a wrong offset!"); \ +static_assert(offsetof(LevelSequence_CopyMetaData, ReturnValue) == 0x000008, "Member 'LevelSequence_CopyMetaData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequence_FindOrAddMetaDataByClass \ +static_assert(alignof(LevelSequence_FindOrAddMetaDataByClass) == 0x000008, "Wrong alignment on LevelSequence_FindOrAddMetaDataByClass"); \ +static_assert(sizeof(LevelSequence_FindOrAddMetaDataByClass) == 0x000010, "Wrong size on LevelSequence_FindOrAddMetaDataByClass"); \ +static_assert(offsetof(LevelSequence_FindOrAddMetaDataByClass, InClass) == 0x000000, "Member 'LevelSequence_FindOrAddMetaDataByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(LevelSequence_FindOrAddMetaDataByClass, ReturnValue) == 0x000008, "Member 'LevelSequence_FindOrAddMetaDataByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequence_RemoveMetaDataByClass \ +static_assert(alignof(LevelSequence_RemoveMetaDataByClass) == 0x000008, "Wrong alignment on LevelSequence_RemoveMetaDataByClass"); \ +static_assert(sizeof(LevelSequence_RemoveMetaDataByClass) == 0x000008, "Wrong size on LevelSequence_RemoveMetaDataByClass"); \ +static_assert(offsetof(LevelSequence_RemoveMetaDataByClass, InClass) == 0x000000, "Member 'LevelSequence_RemoveMetaDataByClass::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequence_FindMetaDataByClass \ +static_assert(alignof(LevelSequence_FindMetaDataByClass) == 0x000008, "Wrong alignment on LevelSequence_FindMetaDataByClass"); \ +static_assert(sizeof(LevelSequence_FindMetaDataByClass) == 0x000010, "Wrong size on LevelSequence_FindMetaDataByClass"); \ +static_assert(offsetof(LevelSequence_FindMetaDataByClass, InClass) == 0x000000, "Member 'LevelSequence_FindMetaDataByClass::InClass' has a wrong offset!"); \ +static_assert(offsetof(LevelSequence_FindMetaDataByClass, ReturnValue) == 0x000008, "Member 'LevelSequence_FindMetaDataByClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequence \ +static_assert(alignof(ULevelSequence) == 0x000008, "Wrong alignment on ULevelSequence"); \ +static_assert(sizeof(ULevelSequence) == 0x000220, "Wrong size on ULevelSequence"); \ +static_assert(offsetof(ULevelSequence, MovieScene) == 0x000070, "Member 'ULevelSequence::MovieScene' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequence, ObjectReferences) == 0x000078, "Member 'ULevelSequence::ObjectReferences' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequence, BindingReferences) == 0x0000C8, "Member 'ULevelSequence::BindingReferences' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequence, PossessedObjects) == 0x0001B8, "Member 'ULevelSequence::PossessedObjects' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequence, DirectorClass) == 0x000208, "Member 'ULevelSequence::DirectorClass' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequence, AssetUserData) == 0x000210, "Member 'ULevelSequence::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceBurnInInitSettings \ +static_assert(alignof(ULevelSequenceBurnInInitSettings) == 0x000008, "Wrong alignment on ULevelSequenceBurnInInitSettings"); \ +static_assert(sizeof(ULevelSequenceBurnInInitSettings) == 0x000028, "Wrong size on ULevelSequenceBurnInInitSettings"); \ + +#define DUMPER7_ASSERTS_LevelSequenceBurnInOptions_SetBurnIn \ +static_assert(alignof(LevelSequenceBurnInOptions_SetBurnIn) == 0x000008, "Wrong alignment on LevelSequenceBurnInOptions_SetBurnIn"); \ +static_assert(sizeof(LevelSequenceBurnInOptions_SetBurnIn) == 0x000020, "Wrong size on LevelSequenceBurnInOptions_SetBurnIn"); \ +static_assert(offsetof(LevelSequenceBurnInOptions_SetBurnIn, InBurnInClass) == 0x000000, "Member 'LevelSequenceBurnInOptions_SetBurnIn::InBurnInClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceBurnInOptions \ +static_assert(alignof(ULevelSequenceBurnInOptions) == 0x000008, "Wrong alignment on ULevelSequenceBurnInOptions"); \ +static_assert(sizeof(ULevelSequenceBurnInOptions) == 0x000058, "Wrong size on ULevelSequenceBurnInOptions"); \ +static_assert(offsetof(ULevelSequenceBurnInOptions, bUseBurnIn) == 0x000028, "Member 'ULevelSequenceBurnInOptions::bUseBurnIn' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceBurnInOptions, BurnInClass) == 0x000030, "Member 'ULevelSequenceBurnInOptions::BurnInClass' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceBurnInOptions, Settings) == 0x000050, "Member 'ULevelSequenceBurnInOptions::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_AddBinding \ +static_assert(alignof(LevelSequenceActor_AddBinding) == 0x000008, "Wrong alignment on LevelSequenceActor_AddBinding"); \ +static_assert(sizeof(LevelSequenceActor_AddBinding) == 0x000028, "Wrong size on LevelSequenceActor_AddBinding"); \ +static_assert(offsetof(LevelSequenceActor_AddBinding, Binding) == 0x000000, "Member 'LevelSequenceActor_AddBinding::Binding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_AddBinding, Actor) == 0x000018, "Member 'LevelSequenceActor_AddBinding::Actor' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_AddBinding, bAllowBindingsFromAsset) == 0x000020, "Member 'LevelSequenceActor_AddBinding::bAllowBindingsFromAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_AddBindingByTag \ +static_assert(alignof(LevelSequenceActor_AddBindingByTag) == 0x000008, "Wrong alignment on LevelSequenceActor_AddBindingByTag"); \ +static_assert(sizeof(LevelSequenceActor_AddBindingByTag) == 0x000018, "Wrong size on LevelSequenceActor_AddBindingByTag"); \ +static_assert(offsetof(LevelSequenceActor_AddBindingByTag, BindingTag) == 0x000000, "Member 'LevelSequenceActor_AddBindingByTag::BindingTag' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_AddBindingByTag, Actor) == 0x000008, "Member 'LevelSequenceActor_AddBindingByTag::Actor' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_AddBindingByTag, bAllowBindingsFromAsset) == 0x000010, "Member 'LevelSequenceActor_AddBindingByTag::bAllowBindingsFromAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_RemoveBinding \ +static_assert(alignof(LevelSequenceActor_RemoveBinding) == 0x000008, "Wrong alignment on LevelSequenceActor_RemoveBinding"); \ +static_assert(sizeof(LevelSequenceActor_RemoveBinding) == 0x000020, "Wrong size on LevelSequenceActor_RemoveBinding"); \ +static_assert(offsetof(LevelSequenceActor_RemoveBinding, Binding) == 0x000000, "Member 'LevelSequenceActor_RemoveBinding::Binding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_RemoveBinding, Actor) == 0x000018, "Member 'LevelSequenceActor_RemoveBinding::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_RemoveBindingByTag \ +static_assert(alignof(LevelSequenceActor_RemoveBindingByTag) == 0x000008, "Wrong alignment on LevelSequenceActor_RemoveBindingByTag"); \ +static_assert(sizeof(LevelSequenceActor_RemoveBindingByTag) == 0x000010, "Wrong size on LevelSequenceActor_RemoveBindingByTag"); \ +static_assert(offsetof(LevelSequenceActor_RemoveBindingByTag, Tag) == 0x000000, "Member 'LevelSequenceActor_RemoveBindingByTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_RemoveBindingByTag, Actor) == 0x000008, "Member 'LevelSequenceActor_RemoveBindingByTag::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_ResetBinding \ +static_assert(alignof(LevelSequenceActor_ResetBinding) == 0x000004, "Wrong alignment on LevelSequenceActor_ResetBinding"); \ +static_assert(sizeof(LevelSequenceActor_ResetBinding) == 0x000018, "Wrong size on LevelSequenceActor_ResetBinding"); \ +static_assert(offsetof(LevelSequenceActor_ResetBinding, Binding) == 0x000000, "Member 'LevelSequenceActor_ResetBinding::Binding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_SetBinding \ +static_assert(alignof(LevelSequenceActor_SetBinding) == 0x000008, "Wrong alignment on LevelSequenceActor_SetBinding"); \ +static_assert(sizeof(LevelSequenceActor_SetBinding) == 0x000030, "Wrong size on LevelSequenceActor_SetBinding"); \ +static_assert(offsetof(LevelSequenceActor_SetBinding, Binding) == 0x000000, "Member 'LevelSequenceActor_SetBinding::Binding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_SetBinding, Actors) == 0x000018, "Member 'LevelSequenceActor_SetBinding::Actors' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_SetBinding, bAllowBindingsFromAsset) == 0x000028, "Member 'LevelSequenceActor_SetBinding::bAllowBindingsFromAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_SetBindingByTag \ +static_assert(alignof(LevelSequenceActor_SetBindingByTag) == 0x000008, "Wrong alignment on LevelSequenceActor_SetBindingByTag"); \ +static_assert(sizeof(LevelSequenceActor_SetBindingByTag) == 0x000020, "Wrong size on LevelSequenceActor_SetBindingByTag"); \ +static_assert(offsetof(LevelSequenceActor_SetBindingByTag, BindingTag) == 0x000000, "Member 'LevelSequenceActor_SetBindingByTag::BindingTag' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_SetBindingByTag, Actors) == 0x000008, "Member 'LevelSequenceActor_SetBindingByTag::Actors' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_SetBindingByTag, bAllowBindingsFromAsset) == 0x000018, "Member 'LevelSequenceActor_SetBindingByTag::bAllowBindingsFromAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_SetReplicatePlayback \ +static_assert(alignof(LevelSequenceActor_SetReplicatePlayback) == 0x000001, "Wrong alignment on LevelSequenceActor_SetReplicatePlayback"); \ +static_assert(sizeof(LevelSequenceActor_SetReplicatePlayback) == 0x000001, "Wrong size on LevelSequenceActor_SetReplicatePlayback"); \ +static_assert(offsetof(LevelSequenceActor_SetReplicatePlayback, ReplicatePlayback) == 0x000000, "Member 'LevelSequenceActor_SetReplicatePlayback::ReplicatePlayback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_SetSequence \ +static_assert(alignof(LevelSequenceActor_SetSequence) == 0x000008, "Wrong alignment on LevelSequenceActor_SetSequence"); \ +static_assert(sizeof(LevelSequenceActor_SetSequence) == 0x000008, "Wrong size on LevelSequenceActor_SetSequence"); \ +static_assert(offsetof(LevelSequenceActor_SetSequence, InSequence) == 0x000000, "Member 'LevelSequenceActor_SetSequence::InSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_FindNamedBinding \ +static_assert(alignof(LevelSequenceActor_FindNamedBinding) == 0x000004, "Wrong alignment on LevelSequenceActor_FindNamedBinding"); \ +static_assert(sizeof(LevelSequenceActor_FindNamedBinding) == 0x000020, "Wrong size on LevelSequenceActor_FindNamedBinding"); \ +static_assert(offsetof(LevelSequenceActor_FindNamedBinding, Tag) == 0x000000, "Member 'LevelSequenceActor_FindNamedBinding::Tag' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_FindNamedBinding, ReturnValue) == 0x000008, "Member 'LevelSequenceActor_FindNamedBinding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_FindNamedBindings \ +static_assert(alignof(LevelSequenceActor_FindNamedBindings) == 0x000008, "Wrong alignment on LevelSequenceActor_FindNamedBindings"); \ +static_assert(sizeof(LevelSequenceActor_FindNamedBindings) == 0x000018, "Wrong size on LevelSequenceActor_FindNamedBindings"); \ +static_assert(offsetof(LevelSequenceActor_FindNamedBindings, Tag) == 0x000000, "Member 'LevelSequenceActor_FindNamedBindings::Tag' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceActor_FindNamedBindings, ReturnValue) == 0x000008, "Member 'LevelSequenceActor_FindNamedBindings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_GetSequence \ +static_assert(alignof(LevelSequenceActor_GetSequence) == 0x000008, "Wrong alignment on LevelSequenceActor_GetSequence"); \ +static_assert(sizeof(LevelSequenceActor_GetSequence) == 0x000008, "Wrong size on LevelSequenceActor_GetSequence"); \ +static_assert(offsetof(LevelSequenceActor_GetSequence, ReturnValue) == 0x000000, "Member 'LevelSequenceActor_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceActor_GetSequencePlayer \ +static_assert(alignof(LevelSequenceActor_GetSequencePlayer) == 0x000008, "Wrong alignment on LevelSequenceActor_GetSequencePlayer"); \ +static_assert(sizeof(LevelSequenceActor_GetSequencePlayer) == 0x000008, "Wrong size on LevelSequenceActor_GetSequencePlayer"); \ +static_assert(offsetof(LevelSequenceActor_GetSequencePlayer, ReturnValue) == 0x000000, "Member 'LevelSequenceActor_GetSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelSequenceActor \ +static_assert(alignof(ALevelSequenceActor) == 0x000008, "Wrong alignment on ALevelSequenceActor"); \ +static_assert(sizeof(ALevelSequenceActor) == 0x000338, "Wrong size on ALevelSequenceActor"); \ +static_assert(offsetof(ALevelSequenceActor, PlaybackSettings) == 0x0002B0, "Member 'ALevelSequenceActor::PlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, SequencePlayer) == 0x0002D0, "Member 'ALevelSequenceActor::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, LevelSequenceAsset) == 0x0002D8, "Member 'ALevelSequenceActor::LevelSequenceAsset' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, CameraSettings) == 0x0002E0, "Member 'ALevelSequenceActor::CameraSettings' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, BurnInOptions) == 0x0002E8, "Member 'ALevelSequenceActor::BurnInOptions' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, BindingOverrides) == 0x0002F0, "Member 'ALevelSequenceActor::BindingOverrides' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, DefaultInstanceData) == 0x000300, "Member 'ALevelSequenceActor::DefaultInstanceData' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, BurnInInstance) == 0x000308, "Member 'ALevelSequenceActor::BurnInInstance' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, bShowBurnin) == 0x000310, "Member 'ALevelSequenceActor::bShowBurnin' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceActor, WorldPartitionResolveData) == 0x000318, "Member 'ALevelSequenceActor::WorldPartitionResolveData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AReplicatedLevelSequenceActor \ +static_assert(alignof(AReplicatedLevelSequenceActor) == 0x000008, "Wrong alignment on AReplicatedLevelSequenceActor"); \ +static_assert(sizeof(AReplicatedLevelSequenceActor) == 0x000338, "Wrong size on AReplicatedLevelSequenceActor"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceAnimSequenceLink \ +static_assert(alignof(ULevelSequenceAnimSequenceLink) == 0x000008, "Wrong alignment on ULevelSequenceAnimSequenceLink"); \ +static_assert(sizeof(ULevelSequenceAnimSequenceLink) == 0x000038, "Wrong size on ULevelSequenceAnimSequenceLink"); \ +static_assert(offsetof(ULevelSequenceAnimSequenceLink, AnimSequenceLinks) == 0x000028, "Member 'ULevelSequenceAnimSequenceLink::AnimSequenceLinks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceBurnIn_SetSettings \ +static_assert(alignof(LevelSequenceBurnIn_SetSettings) == 0x000008, "Wrong alignment on LevelSequenceBurnIn_SetSettings"); \ +static_assert(sizeof(LevelSequenceBurnIn_SetSettings) == 0x000008, "Wrong size on LevelSequenceBurnIn_SetSettings"); \ +static_assert(offsetof(LevelSequenceBurnIn_SetSettings, InSettings) == 0x000000, "Member 'LevelSequenceBurnIn_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceBurnIn_GetSettingsClass \ +static_assert(alignof(LevelSequenceBurnIn_GetSettingsClass) == 0x000008, "Wrong alignment on LevelSequenceBurnIn_GetSettingsClass"); \ +static_assert(sizeof(LevelSequenceBurnIn_GetSettingsClass) == 0x000008, "Wrong size on LevelSequenceBurnIn_GetSettingsClass"); \ +static_assert(offsetof(LevelSequenceBurnIn_GetSettingsClass, ReturnValue) == 0x000000, "Member 'LevelSequenceBurnIn_GetSettingsClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceBurnIn \ +static_assert(alignof(ULevelSequenceBurnIn) == 0x000008, "Wrong alignment on ULevelSequenceBurnIn"); \ +static_assert(sizeof(ULevelSequenceBurnIn) == 0x000390, "Wrong size on ULevelSequenceBurnIn"); \ +static_assert(offsetof(ULevelSequenceBurnIn, FrameInformation) == 0x0002C0, "Member 'ULevelSequenceBurnIn::FrameInformation' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceBurnIn, LevelSequenceActor) == 0x000388, "Member 'ULevelSequenceBurnIn::LevelSequenceActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetBoundActor \ +static_assert(alignof(LevelSequenceDirector_GetBoundActor) == 0x000008, "Wrong alignment on LevelSequenceDirector_GetBoundActor"); \ +static_assert(sizeof(LevelSequenceDirector_GetBoundActor) == 0x000020, "Wrong size on LevelSequenceDirector_GetBoundActor"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundActor, ObjectBinding) == 0x000000, "Member 'LevelSequenceDirector_GetBoundActor::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundActor, ReturnValue) == 0x000018, "Member 'LevelSequenceDirector_GetBoundActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetBoundActors \ +static_assert(alignof(LevelSequenceDirector_GetBoundActors) == 0x000008, "Wrong alignment on LevelSequenceDirector_GetBoundActors"); \ +static_assert(sizeof(LevelSequenceDirector_GetBoundActors) == 0x000028, "Wrong size on LevelSequenceDirector_GetBoundActors"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundActors, ObjectBinding) == 0x000000, "Member 'LevelSequenceDirector_GetBoundActors::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundActors, ReturnValue) == 0x000018, "Member 'LevelSequenceDirector_GetBoundActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetBoundObject \ +static_assert(alignof(LevelSequenceDirector_GetBoundObject) == 0x000008, "Wrong alignment on LevelSequenceDirector_GetBoundObject"); \ +static_assert(sizeof(LevelSequenceDirector_GetBoundObject) == 0x000020, "Wrong size on LevelSequenceDirector_GetBoundObject"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundObject, ObjectBinding) == 0x000000, "Member 'LevelSequenceDirector_GetBoundObject::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundObject, ReturnValue) == 0x000018, "Member 'LevelSequenceDirector_GetBoundObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetBoundObjects \ +static_assert(alignof(LevelSequenceDirector_GetBoundObjects) == 0x000008, "Wrong alignment on LevelSequenceDirector_GetBoundObjects"); \ +static_assert(sizeof(LevelSequenceDirector_GetBoundObjects) == 0x000028, "Wrong size on LevelSequenceDirector_GetBoundObjects"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundObjects, ObjectBinding) == 0x000000, "Member 'LevelSequenceDirector_GetBoundObjects::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(LevelSequenceDirector_GetBoundObjects, ReturnValue) == 0x000018, "Member 'LevelSequenceDirector_GetBoundObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetSequence \ +static_assert(alignof(LevelSequenceDirector_GetSequence) == 0x000008, "Wrong alignment on LevelSequenceDirector_GetSequence"); \ +static_assert(sizeof(LevelSequenceDirector_GetSequence) == 0x000008, "Wrong size on LevelSequenceDirector_GetSequence"); \ +static_assert(offsetof(LevelSequenceDirector_GetSequence, ReturnValue) == 0x000000, "Member 'LevelSequenceDirector_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetCurrentTime \ +static_assert(alignof(LevelSequenceDirector_GetCurrentTime) == 0x000004, "Wrong alignment on LevelSequenceDirector_GetCurrentTime"); \ +static_assert(sizeof(LevelSequenceDirector_GetCurrentTime) == 0x000010, "Wrong size on LevelSequenceDirector_GetCurrentTime"); \ +static_assert(offsetof(LevelSequenceDirector_GetCurrentTime, ReturnValue) == 0x000000, "Member 'LevelSequenceDirector_GetCurrentTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetMasterSequenceTime \ +static_assert(alignof(LevelSequenceDirector_GetMasterSequenceTime) == 0x000004, "Wrong alignment on LevelSequenceDirector_GetMasterSequenceTime"); \ +static_assert(sizeof(LevelSequenceDirector_GetMasterSequenceTime) == 0x000010, "Wrong size on LevelSequenceDirector_GetMasterSequenceTime"); \ +static_assert(offsetof(LevelSequenceDirector_GetMasterSequenceTime, ReturnValue) == 0x000000, "Member 'LevelSequenceDirector_GetMasterSequenceTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceDirector_GetRootSequenceTime \ +static_assert(alignof(LevelSequenceDirector_GetRootSequenceTime) == 0x000004, "Wrong alignment on LevelSequenceDirector_GetRootSequenceTime"); \ +static_assert(sizeof(LevelSequenceDirector_GetRootSequenceTime) == 0x000010, "Wrong size on LevelSequenceDirector_GetRootSequenceTime"); \ +static_assert(offsetof(LevelSequenceDirector_GetRootSequenceTime, ReturnValue) == 0x000000, "Member 'LevelSequenceDirector_GetRootSequenceTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceDirector \ +static_assert(alignof(ULevelSequenceDirector) == 0x000008, "Wrong alignment on ULevelSequenceDirector"); \ +static_assert(sizeof(ULevelSequenceDirector) == 0x000038, "Wrong size on ULevelSequenceDirector"); \ +static_assert(offsetof(ULevelSequenceDirector, Player) == 0x000028, "Member 'ULevelSequenceDirector::Player' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceDirector, SubSequenceID) == 0x000030, "Member 'ULevelSequenceDirector::SubSequenceID' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceDirector, MovieScenePlayerIndex) == 0x000034, "Member 'ULevelSequenceDirector::MovieScenePlayerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULegacyLevelSequenceDirectorBlueprint \ +static_assert(alignof(ULegacyLevelSequenceDirectorBlueprint) == 0x000008, "Wrong alignment on ULegacyLevelSequenceDirectorBlueprint"); \ +static_assert(sizeof(ULegacyLevelSequenceDirectorBlueprint) == 0x0000A8, "Wrong size on ULegacyLevelSequenceDirectorBlueprint"); \ + +#define DUMPER7_ASSERTS_LevelSequencePlayer_CreateLevelSequencePlayer \ +static_assert(alignof(LevelSequencePlayer_CreateLevelSequencePlayer) == 0x000008, "Wrong alignment on LevelSequencePlayer_CreateLevelSequencePlayer"); \ +static_assert(sizeof(LevelSequencePlayer_CreateLevelSequencePlayer) == 0x000040, "Wrong size on LevelSequencePlayer_CreateLevelSequencePlayer"); \ +static_assert(offsetof(LevelSequencePlayer_CreateLevelSequencePlayer, WorldContextObject) == 0x000000, "Member 'LevelSequencePlayer_CreateLevelSequencePlayer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LevelSequencePlayer_CreateLevelSequencePlayer, LevelSequence) == 0x000008, "Member 'LevelSequencePlayer_CreateLevelSequencePlayer::LevelSequence' has a wrong offset!"); \ +static_assert(offsetof(LevelSequencePlayer_CreateLevelSequencePlayer, Settings) == 0x000010, "Member 'LevelSequencePlayer_CreateLevelSequencePlayer::Settings' has a wrong offset!"); \ +static_assert(offsetof(LevelSequencePlayer_CreateLevelSequencePlayer, OutActor) == 0x000030, "Member 'LevelSequencePlayer_CreateLevelSequencePlayer::OutActor' has a wrong offset!"); \ +static_assert(offsetof(LevelSequencePlayer_CreateLevelSequencePlayer, ReturnValue) == 0x000038, "Member 'LevelSequencePlayer_CreateLevelSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequencePlayer_GetActiveCameraComponent \ +static_assert(alignof(LevelSequencePlayer_GetActiveCameraComponent) == 0x000008, "Wrong alignment on LevelSequencePlayer_GetActiveCameraComponent"); \ +static_assert(sizeof(LevelSequencePlayer_GetActiveCameraComponent) == 0x000008, "Wrong size on LevelSequencePlayer_GetActiveCameraComponent"); \ +static_assert(offsetof(LevelSequencePlayer_GetActiveCameraComponent, ReturnValue) == 0x000000, "Member 'LevelSequencePlayer_GetActiveCameraComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequencePlayer \ +static_assert(alignof(ULevelSequencePlayer) == 0x000008, "Wrong alignment on ULevelSequencePlayer"); \ +static_assert(sizeof(ULevelSequencePlayer) == 0x000608, "Wrong size on ULevelSequencePlayer"); \ +static_assert(offsetof(ULevelSequencePlayer, OnCameraCut) == 0x0004C8, "Member 'ULevelSequencePlayer::OnCameraCut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelSequenceProjectSettings \ +static_assert(alignof(ULevelSequenceProjectSettings) == 0x000008, "Wrong alignment on ULevelSequenceProjectSettings"); \ +static_assert(sizeof(ULevelSequenceProjectSettings) == 0x000068, "Wrong size on ULevelSequenceProjectSettings"); \ +static_assert(offsetof(ULevelSequenceProjectSettings, bDefaultLockEngineToDisplayRate) == 0x000038, "Member 'ULevelSequenceProjectSettings::bDefaultLockEngineToDisplayRate' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceProjectSettings, DefaultDisplayRate) == 0x000040, "Member 'ULevelSequenceProjectSettings::DefaultDisplayRate' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceProjectSettings, DefaultTickResolution) == 0x000050, "Member 'ULevelSequenceProjectSettings::DefaultTickResolution' has a wrong offset!"); \ +static_assert(offsetof(ULevelSequenceProjectSettings, DefaultClockSource) == 0x000060, "Member 'ULevelSequenceProjectSettings::DefaultClockSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceMediaController_SynchronizeToServer \ +static_assert(alignof(LevelSequenceMediaController_SynchronizeToServer) == 0x000004, "Wrong alignment on LevelSequenceMediaController_SynchronizeToServer"); \ +static_assert(sizeof(LevelSequenceMediaController_SynchronizeToServer) == 0x000004, "Wrong size on LevelSequenceMediaController_SynchronizeToServer"); \ +static_assert(offsetof(LevelSequenceMediaController_SynchronizeToServer, DesyncThresholdSeconds) == 0x000000, "Member 'LevelSequenceMediaController_SynchronizeToServer::DesyncThresholdSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceMediaController_GetMediaComponent \ +static_assert(alignof(LevelSequenceMediaController_GetMediaComponent) == 0x000008, "Wrong alignment on LevelSequenceMediaController_GetMediaComponent"); \ +static_assert(sizeof(LevelSequenceMediaController_GetMediaComponent) == 0x000008, "Wrong size on LevelSequenceMediaController_GetMediaComponent"); \ +static_assert(offsetof(LevelSequenceMediaController_GetMediaComponent, ReturnValue) == 0x000000, "Member 'LevelSequenceMediaController_GetMediaComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelSequenceMediaController_GetSequence \ +static_assert(alignof(LevelSequenceMediaController_GetSequence) == 0x000008, "Wrong alignment on LevelSequenceMediaController_GetSequence"); \ +static_assert(sizeof(LevelSequenceMediaController_GetSequence) == 0x000008, "Wrong size on LevelSequenceMediaController_GetSequence"); \ +static_assert(offsetof(LevelSequenceMediaController_GetSequence, ReturnValue) == 0x000000, "Member 'LevelSequenceMediaController_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelSequenceMediaController \ +static_assert(alignof(ALevelSequenceMediaController) == 0x000008, "Wrong alignment on ALevelSequenceMediaController"); \ +static_assert(sizeof(ALevelSequenceMediaController) == 0x0002C0, "Wrong size on ALevelSequenceMediaController"); \ +static_assert(offsetof(ALevelSequenceMediaController, Sequence) == 0x0002A0, "Member 'ALevelSequenceMediaController::Sequence' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceMediaController, MediaComponent) == 0x0002A8, "Member 'ALevelSequenceMediaController::MediaComponent' has a wrong offset!"); \ +static_assert(offsetof(ALevelSequenceMediaController, ServerStartTimeSeconds) == 0x0002B0, "Member 'ALevelSequenceMediaController::ServerStartTimeSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper \ +static_assert(alignof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper) == 0x000008, "Wrong alignment on SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper"); \ +static_assert(sizeof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper) == 0x000070, "Wrong size on SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, EntryPoint) == 0x000000, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, Temp_int_Array_Index_Variable) == 0x000004, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, K2Node_Event_InAutomata) == 0x000008, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, K2Node_Event_InState) == 0x000010, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_Array_Get_Item) == 0x000020, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, K2Node_DynamicCast_AsBP_Enemy_Detector_Helper) == 0x000058, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::K2Node_DynamicCast_AsBP_Enemy_Detector_Helper' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'SetEnemyDetectorHelper_C_ExecuteUbergraph_SetEnemyDetectorHelper::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetEnemyDetectorHelper_C_ReceiveExecute \ +static_assert(alignof(SetEnemyDetectorHelper_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetEnemyDetectorHelper_C_ReceiveExecute"); \ +static_assert(sizeof(SetEnemyDetectorHelper_C_ReceiveExecute) == 0x000010, "Wrong size on SetEnemyDetectorHelper_C_ReceiveExecute"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetEnemyDetectorHelper_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetEnemyDetectorHelper_C_ReceiveExecute, InState) == 0x000008, "Member 'SetEnemyDetectorHelper_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetEnemyDetectorHelper_C \ +static_assert(alignof(USetEnemyDetectorHelper_C) == 0x000008, "Wrong alignment on USetEnemyDetectorHelper_C"); \ +static_assert(sizeof(USetEnemyDetectorHelper_C) == 0x0000B0, "Wrong size on USetEnemyDetectorHelper_C"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, UberGraphFrame) == 0x000088, "Member 'USetEnemyDetectorHelper_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, EnemyDetector) == 0x000090, "Member 'USetEnemyDetectorHelper_C::EnemyDetector' has a wrong offset!"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, Enable) == 0x0000A0, "Member 'USetEnemyDetectorHelper_C::Enable' has a wrong offset!"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, Requires_Awareness) == 0x0000A1, "Member 'USetEnemyDetectorHelper_C::Requires_Awareness' has a wrong offset!"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, Requires_Tag) == 0x0000A2, "Member 'USetEnemyDetectorHelper_C::Requires_Tag' has a wrong offset!"); \ +static_assert(offsetof(USetEnemyDetectorHelper_C, Enemy_Tag) == 0x0000A4, "Member 'USetEnemyDetectorHelper_C::Enemy_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMRMeshConfiguration \ +static_assert(alignof(FMRMeshConfiguration) == 0x000001, "Wrong alignment on FMRMeshConfiguration"); \ +static_assert(sizeof(FMRMeshConfiguration) == 0x000001, "Wrong size on FMRMeshConfiguration"); \ + +#define DUMPER7_ASSERTS_MockDataMeshTrackerComponent_ConnectMRMesh \ +static_assert(alignof(MockDataMeshTrackerComponent_ConnectMRMesh) == 0x000008, "Wrong alignment on MockDataMeshTrackerComponent_ConnectMRMesh"); \ +static_assert(sizeof(MockDataMeshTrackerComponent_ConnectMRMesh) == 0x000008, "Wrong size on MockDataMeshTrackerComponent_ConnectMRMesh"); \ +static_assert(offsetof(MockDataMeshTrackerComponent_ConnectMRMesh, InMRMeshPtr) == 0x000000, "Member 'MockDataMeshTrackerComponent_ConnectMRMesh::InMRMeshPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MockDataMeshTrackerComponent_DisconnectMRMesh \ +static_assert(alignof(MockDataMeshTrackerComponent_DisconnectMRMesh) == 0x000008, "Wrong alignment on MockDataMeshTrackerComponent_DisconnectMRMesh"); \ +static_assert(sizeof(MockDataMeshTrackerComponent_DisconnectMRMesh) == 0x000008, "Wrong size on MockDataMeshTrackerComponent_DisconnectMRMesh"); \ +static_assert(offsetof(MockDataMeshTrackerComponent_DisconnectMRMesh, InMRMeshPtr) == 0x000000, "Member 'MockDataMeshTrackerComponent_DisconnectMRMesh::InMRMeshPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMockDataMeshTrackerComponent \ +static_assert(alignof(UMockDataMeshTrackerComponent) == 0x000010, "Wrong alignment on UMockDataMeshTrackerComponent"); \ +static_assert(sizeof(UMockDataMeshTrackerComponent) == 0x000310, "Wrong size on UMockDataMeshTrackerComponent"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, OnMeshTrackerUpdated) == 0x0002A0, "Member 'UMockDataMeshTrackerComponent::OnMeshTrackerUpdated' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, ScanWorld) == 0x0002B0, "Member 'UMockDataMeshTrackerComponent::ScanWorld' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, RequestNormals) == 0x0002B1, "Member 'UMockDataMeshTrackerComponent::RequestNormals' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, RequestVertexConfidence) == 0x0002B2, "Member 'UMockDataMeshTrackerComponent::RequestVertexConfidence' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, VertexColorMode) == 0x0002B3, "Member 'UMockDataMeshTrackerComponent::VertexColorMode' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, BlockVertexColors) == 0x0002B8, "Member 'UMockDataMeshTrackerComponent::BlockVertexColors' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, VertexColorFromConfidenceZero) == 0x0002C8, "Member 'UMockDataMeshTrackerComponent::VertexColorFromConfidenceZero' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, VertexColorFromConfidenceOne) == 0x0002D8, "Member 'UMockDataMeshTrackerComponent::VertexColorFromConfidenceOne' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, UpdateInterval) == 0x0002E8, "Member 'UMockDataMeshTrackerComponent::UpdateInterval' has a wrong offset!"); \ +static_assert(offsetof(UMockDataMeshTrackerComponent, MRMesh) == 0x0002F0, "Member 'UMockDataMeshTrackerComponent::MRMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMRMeshBodyHolder \ +static_assert(alignof(UMRMeshBodyHolder) == 0x000008, "Wrong alignment on UMRMeshBodyHolder"); \ +static_assert(sizeof(UMRMeshBodyHolder) == 0x000230, "Wrong size on UMRMeshBodyHolder"); \ +static_assert(offsetof(UMRMeshBodyHolder, BodySetup) == 0x000030, "Member 'UMRMeshBodyHolder::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshBodyHolder, BodyInstance) == 0x000038, "Member 'UMRMeshBodyHolder::BodyInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_SetEnableMeshOcclusion \ +static_assert(alignof(MRMeshComponent_SetEnableMeshOcclusion) == 0x000001, "Wrong alignment on MRMeshComponent_SetEnableMeshOcclusion"); \ +static_assert(sizeof(MRMeshComponent_SetEnableMeshOcclusion) == 0x000001, "Wrong size on MRMeshComponent_SetEnableMeshOcclusion"); \ +static_assert(offsetof(MRMeshComponent_SetEnableMeshOcclusion, bEnable) == 0x000000, "Member 'MRMeshComponent_SetEnableMeshOcclusion::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_SetUseWireframe \ +static_assert(alignof(MRMeshComponent_SetUseWireframe) == 0x000001, "Wrong alignment on MRMeshComponent_SetUseWireframe"); \ +static_assert(sizeof(MRMeshComponent_SetUseWireframe) == 0x000001, "Wrong size on MRMeshComponent_SetUseWireframe"); \ +static_assert(offsetof(MRMeshComponent_SetUseWireframe, bUseWireframe) == 0x000000, "Member 'MRMeshComponent_SetUseWireframe::bUseWireframe' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_SetWireframeColor \ +static_assert(alignof(MRMeshComponent_SetWireframeColor) == 0x000004, "Wrong alignment on MRMeshComponent_SetWireframeColor"); \ +static_assert(sizeof(MRMeshComponent_SetWireframeColor) == 0x000010, "Wrong size on MRMeshComponent_SetWireframeColor"); \ +static_assert(offsetof(MRMeshComponent_SetWireframeColor, InColor) == 0x000000, "Member 'MRMeshComponent_SetWireframeColor::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_SetWireframeMaterial \ +static_assert(alignof(MRMeshComponent_SetWireframeMaterial) == 0x000008, "Wrong alignment on MRMeshComponent_SetWireframeMaterial"); \ +static_assert(sizeof(MRMeshComponent_SetWireframeMaterial) == 0x000008, "Wrong size on MRMeshComponent_SetWireframeMaterial"); \ +static_assert(offsetof(MRMeshComponent_SetWireframeMaterial, InMaterial) == 0x000000, "Member 'MRMeshComponent_SetWireframeMaterial::InMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_GetEnableMeshOcclusion \ +static_assert(alignof(MRMeshComponent_GetEnableMeshOcclusion) == 0x000001, "Wrong alignment on MRMeshComponent_GetEnableMeshOcclusion"); \ +static_assert(sizeof(MRMeshComponent_GetEnableMeshOcclusion) == 0x000001, "Wrong size on MRMeshComponent_GetEnableMeshOcclusion"); \ +static_assert(offsetof(MRMeshComponent_GetEnableMeshOcclusion, ReturnValue) == 0x000000, "Member 'MRMeshComponent_GetEnableMeshOcclusion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_GetUseWireframe \ +static_assert(alignof(MRMeshComponent_GetUseWireframe) == 0x000001, "Wrong alignment on MRMeshComponent_GetUseWireframe"); \ +static_assert(sizeof(MRMeshComponent_GetUseWireframe) == 0x000001, "Wrong size on MRMeshComponent_GetUseWireframe"); \ +static_assert(offsetof(MRMeshComponent_GetUseWireframe, ReturnValue) == 0x000000, "Member 'MRMeshComponent_GetUseWireframe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_GetWireframeColor \ +static_assert(alignof(MRMeshComponent_GetWireframeColor) == 0x000004, "Wrong alignment on MRMeshComponent_GetWireframeColor"); \ +static_assert(sizeof(MRMeshComponent_GetWireframeColor) == 0x000010, "Wrong size on MRMeshComponent_GetWireframeColor"); \ +static_assert(offsetof(MRMeshComponent_GetWireframeColor, ReturnValue) == 0x000000, "Member 'MRMeshComponent_GetWireframeColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MRMeshComponent_IsConnected \ +static_assert(alignof(MRMeshComponent_IsConnected) == 0x000001, "Wrong alignment on MRMeshComponent_IsConnected"); \ +static_assert(sizeof(MRMeshComponent_IsConnected) == 0x000001, "Wrong size on MRMeshComponent_IsConnected"); \ +static_assert(offsetof(MRMeshComponent_IsConnected, ReturnValue) == 0x000000, "Member 'MRMeshComponent_IsConnected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMRMeshComponent \ +static_assert(alignof(UMRMeshComponent) == 0x000010, "Wrong alignment on UMRMeshComponent"); \ +static_assert(sizeof(UMRMeshComponent) == 0x0005F0, "Wrong size on UMRMeshComponent"); \ +static_assert(offsetof(UMRMeshComponent, Material) == 0x000578, "Member 'UMRMeshComponent::Material' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshComponent, WireframeMaterial) == 0x000580, "Member 'UMRMeshComponent::WireframeMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshComponent, bCreateMeshProxySections) == 0x000588, "Member 'UMRMeshComponent::bCreateMeshProxySections' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshComponent, bUpdateNavMeshOnMeshUpdate) == 0x000589, "Member 'UMRMeshComponent::bUpdateNavMeshOnMeshUpdate' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshComponent, bNeverCreateCollisionMesh) == 0x00058B, "Member 'UMRMeshComponent::bNeverCreateCollisionMesh' has a wrong offset!"); \ +static_assert(offsetof(UMRMeshComponent, BodyHolders) == 0x0005D0, "Member 'UMRMeshComponent::BodyHolders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshReconstructorBase_ConnectMRMesh \ +static_assert(alignof(MeshReconstructorBase_ConnectMRMesh) == 0x000008, "Wrong alignment on MeshReconstructorBase_ConnectMRMesh"); \ +static_assert(sizeof(MeshReconstructorBase_ConnectMRMesh) == 0x000008, "Wrong size on MeshReconstructorBase_ConnectMRMesh"); \ +static_assert(offsetof(MeshReconstructorBase_ConnectMRMesh, Mesh) == 0x000000, "Member 'MeshReconstructorBase_ConnectMRMesh::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshReconstructorBase_IsReconstructionPaused \ +static_assert(alignof(MeshReconstructorBase_IsReconstructionPaused) == 0x000001, "Wrong alignment on MeshReconstructorBase_IsReconstructionPaused"); \ +static_assert(sizeof(MeshReconstructorBase_IsReconstructionPaused) == 0x000001, "Wrong size on MeshReconstructorBase_IsReconstructionPaused"); \ +static_assert(offsetof(MeshReconstructorBase_IsReconstructionPaused, ReturnValue) == 0x000000, "Member 'MeshReconstructorBase_IsReconstructionPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshReconstructorBase_IsReconstructionStarted \ +static_assert(alignof(MeshReconstructorBase_IsReconstructionStarted) == 0x000001, "Wrong alignment on MeshReconstructorBase_IsReconstructionStarted"); \ +static_assert(sizeof(MeshReconstructorBase_IsReconstructionStarted) == 0x000001, "Wrong size on MeshReconstructorBase_IsReconstructionStarted"); \ +static_assert(offsetof(MeshReconstructorBase_IsReconstructionStarted, ReturnValue) == 0x000000, "Member 'MeshReconstructorBase_IsReconstructionStarted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshReconstructorBase \ +static_assert(alignof(UMeshReconstructorBase) == 0x000008, "Wrong alignment on UMeshReconstructorBase"); \ +static_assert(sizeof(UMeshReconstructorBase) == 0x000028, "Wrong size on UMeshReconstructorBase"); \ + +#define DUMPER7_ASSERTS_UCommonButtonSettingsBox_C \ +static_assert(alignof(UCommonButtonSettingsBox_C) == 0x000010, "Wrong alignment on UCommonButtonSettingsBox_C"); \ +static_assert(sizeof(UCommonButtonSettingsBox_C) == 0x0007B0, "Wrong size on UCommonButtonSettingsBox_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_SuggestedAction_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_SuggestedAction_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore) == 0x000070, "Wrong size on BP_WrestlerTaskScore_SuggestedAction_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_IsPlayerControlled_ReturnValue) == 0x000014, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_IsPlayerControlled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_SuggestEnemyAction_SuggestedActions) == 0x000028, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_SuggestEnemyAction_SuggestedActions' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, Temp_int_Array_Index_Variable) == 0x00003C, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Add_IntInt_ReturnValue) == 0x000044, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Divide_IntInt_ReturnValue) == 0x000048, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Divide_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, Temp_int_Loop_Counter_Variable) == 0x00004C, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000050, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Add_IntInt_ReturnValue_1) == 0x00005C, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_Array_Find_ReturnValue) == 0x000060, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, CallFunc_NotEqual_IntInt_ReturnValue) == 0x000064, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedAction_C_GetScore, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000068, "Member 'BP_WrestlerTaskScore_SuggestedAction_C_GetScore::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_SuggestedAction_C \ +static_assert(alignof(UBP_WrestlerTaskScore_SuggestedAction_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_SuggestedAction_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_SuggestedAction_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_SuggestedAction_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_SuggestedAction_C, DesiredActions) == 0x000030, "Member 'UBP_WrestlerTaskScore_SuggestedAction_C::DesiredActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePlayerSettings \ +static_assert(alignof(UMoviePlayerSettings) == 0x000008, "Wrong alignment on UMoviePlayerSettings"); \ +static_assert(sizeof(UMoviePlayerSettings) == 0x000040, "Wrong size on UMoviePlayerSettings"); \ +static_assert(offsetof(UMoviePlayerSettings, bWaitForMoviesToComplete) == 0x000028, "Member 'UMoviePlayerSettings::bWaitForMoviesToComplete' has a wrong offset!"); \ +static_assert(offsetof(UMoviePlayerSettings, bMoviesAreSkippable) == 0x000029, "Member 'UMoviePlayerSettings::bMoviesAreSkippable' has a wrong offset!"); \ +static_assert(offsetof(UMoviePlayerSettings, StartupMovies) == 0x000030, "Member 'UMoviePlayerSettings::StartupMovies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration \ +static_assert(alignof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration) == 0x000008, "Wrong alignment on WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration"); \ +static_assert(sizeof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration) == 0x0000E0, "Wrong size on WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, EntryPoint) == 0x000000, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000018, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_GetActorTimeDilation_ReturnValue) == 0x000020, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_GetActorTimeDilation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_Event_InDuration) == 0x000024, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000030, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_PlayAnimation_ReturnValue) == 0x000038, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_PlayAnimationForward_ReturnValue) == 0x000040, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000048, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_CustomEvent_PlayerClan) == 0x000050, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_CustomEvent_PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_DynamicCast_AsWrestler_Character) == 0x000058, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000061, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000068, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_GetHud_ReturnValue) == 0x000078, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_CreateDelegate_OutputDelegate_1) == 0x000080, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, K2Node_CustomEvent_bInPaused) == 0x000090, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_PauseAnimation_ReturnValue) == 0x000094, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_PauseAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000098, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_PlayAnimation_ReturnValue_1) == 0x0000A0, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000A8, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000B0, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0000B8, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_TriggerCooldownAnim_InTimer_ImplicitCast) == 0x0000C0, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_TriggerCooldownAnim_InTimer_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000C8, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_SetPlaybackSpeed_PlaybackSpeed_ImplicitCast) == 0x0000D0, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_SetPlaybackSpeed_PlaybackSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x0000D8, "Member 'WBP_PassiveDuration_C_ExecuteUbergraph_WBP_PassiveDuration::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event \ +static_assert(alignof(WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event) == 0x000008, "Wrong alignment on WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event"); \ +static_assert(sizeof(WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event) == 0x000008, "Wrong size on WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event"); \ +static_assert(offsetof(WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event, PlayerClan) == 0x000000, "Member 'WBP_PassiveDuration_C_OnClanPropertyChangeEvent_Event::PlayerClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_OnGamePausedEvent \ +static_assert(alignof(WBP_PassiveDuration_C_OnGamePausedEvent) == 0x000001, "Wrong alignment on WBP_PassiveDuration_C_OnGamePausedEvent"); \ +static_assert(sizeof(WBP_PassiveDuration_C_OnGamePausedEvent) == 0x000001, "Wrong size on WBP_PassiveDuration_C_OnGamePausedEvent"); \ +static_assert(offsetof(WBP_PassiveDuration_C_OnGamePausedEvent, bInPaused) == 0x000000, "Member 'WBP_PassiveDuration_C_OnGamePausedEvent::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_PlayCooldownAnimation \ +static_assert(alignof(WBP_PassiveDuration_C_PlayCooldownAnimation) == 0x000004, "Wrong alignment on WBP_PassiveDuration_C_PlayCooldownAnimation"); \ +static_assert(sizeof(WBP_PassiveDuration_C_PlayCooldownAnimation) == 0x000004, "Wrong size on WBP_PassiveDuration_C_PlayCooldownAnimation"); \ +static_assert(offsetof(WBP_PassiveDuration_C_PlayCooldownAnimation, InDuration) == 0x000000, "Member 'WBP_PassiveDuration_C_PlayCooldownAnimation::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_SetPassiveIcon \ +static_assert(alignof(WBP_PassiveDuration_C_SetPassiveIcon) == 0x000008, "Wrong alignment on WBP_PassiveDuration_C_SetPassiveIcon"); \ +static_assert(sizeof(WBP_PassiveDuration_C_SetPassiveIcon) == 0x000028, "Wrong size on WBP_PassiveDuration_C_SetPassiveIcon"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, SilenceTag) == 0x000000, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::SilenceTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, FortitudeTag) == 0x000008, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::FortitudeTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, BrutalityTag) == 0x000010, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::BrutalityTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, CallFunc_GetPlayerClan_ReturnValue) == 0x000018, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::CallFunc_GetPlayerClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000020, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_SetPassiveIcon, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'WBP_PassiveDuration_C_SetPassiveIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PassiveDuration_C_TriggerCooldownAnim \ +static_assert(alignof(WBP_PassiveDuration_C_TriggerCooldownAnim) == 0x000008, "Wrong alignment on WBP_PassiveDuration_C_TriggerCooldownAnim"); \ +static_assert(sizeof(WBP_PassiveDuration_C_TriggerCooldownAnim) == 0x000030, "Wrong size on WBP_PassiveDuration_C_TriggerCooldownAnim"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, InTimer) == 0x000000, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::InTimer' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, CallFunc_PlayAnimation_ReturnValue) == 0x000008, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, CallFunc_GetEndTime_ReturnValue) == 0x000010, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::CallFunc_GetEndTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000020, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PassiveDuration_C_TriggerCooldownAnim, K2Node_VariableSet_PlaybackSpeed_ImplicitCast) == 0x000028, "Member 'WBP_PassiveDuration_C_TriggerCooldownAnim::K2Node_VariableSet_PlaybackSpeed_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_PassiveDuration_C \ +static_assert(alignof(UWBP_PassiveDuration_C) == 0x000008, "Wrong alignment on UWBP_PassiveDuration_C"); \ +static_assert(sizeof(UWBP_PassiveDuration_C) == 0x0003D0, "Wrong size on UWBP_PassiveDuration_C"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, UberGraphFrame) == 0x000358, "Member 'UWBP_PassiveDuration_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, ImageFlipAnim) == 0x000360, "Member 'UWBP_PassiveDuration_C::ImageFlipAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, OnActivated) == 0x000368, "Member 'UWBP_PassiveDuration_C::OnActivated' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, CooldownAnim) == 0x000370, "Member 'UWBP_PassiveDuration_C::CooldownAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, AbilityCooldownBar) == 0x000378, "Member 'UWBP_PassiveDuration_C::AbilityCooldownBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, ActivationHalo) == 0x000380, "Member 'UWBP_PassiveDuration_C::ActivationHalo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, Outline) == 0x000388, "Member 'UWBP_PassiveDuration_C::Outline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, OutlineCooldown) == 0x000390, "Member 'UWBP_PassiveDuration_C::OutlineCooldown' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, Overlay_33) == 0x000398, "Member 'UWBP_PassiveDuration_C::Overlay_33' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, PassivEffectImage) == 0x0003A0, "Member 'UWBP_PassiveDuration_C::PassivEffectImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, PlaybackSpeed) == 0x0003A8, "Member 'UWBP_PassiveDuration_C::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, Context) == 0x0003B0, "Member 'UWBP_PassiveDuration_C::Context' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, WrestlerCharacter) == 0x0003C0, "Member 'UWBP_PassiveDuration_C::WrestlerCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PassiveDuration_C, PausedAnimTime) == 0x0003C8, "Member 'UWBP_PassiveDuration_C::PausedAnimTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOverlayItem \ +static_assert(alignof(FOverlayItem) == 0x000008, "Wrong alignment on FOverlayItem"); \ +static_assert(sizeof(FOverlayItem) == 0x000030, "Wrong size on FOverlayItem"); \ +static_assert(offsetof(FOverlayItem, StartTime) == 0x000000, "Member 'FOverlayItem::StartTime' has a wrong offset!"); \ +static_assert(offsetof(FOverlayItem, EndTime) == 0x000008, "Member 'FOverlayItem::EndTime' has a wrong offset!"); \ +static_assert(offsetof(FOverlayItem, Text) == 0x000010, "Member 'FOverlayItem::Text' has a wrong offset!"); \ +static_assert(offsetof(FOverlayItem, Position) == 0x000020, "Member 'FOverlayItem::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOverlays \ +static_assert(alignof(UOverlays) == 0x000008, "Wrong alignment on UOverlays"); \ +static_assert(sizeof(UOverlays) == 0x000028, "Wrong size on UOverlays"); \ + +#define DUMPER7_ASSERTS_UBasicOverlays \ +static_assert(alignof(UBasicOverlays) == 0x000008, "Wrong alignment on UBasicOverlays"); \ +static_assert(sizeof(UBasicOverlays) == 0x000038, "Wrong size on UBasicOverlays"); \ +static_assert(offsetof(UBasicOverlays, Overlays) == 0x000028, "Member 'UBasicOverlays::Overlays' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalizedOverlays \ +static_assert(alignof(ULocalizedOverlays) == 0x000008, "Wrong alignment on ULocalizedOverlays"); \ +static_assert(sizeof(ULocalizedOverlays) == 0x000080, "Wrong size on ULocalizedOverlays"); \ +static_assert(offsetof(ULocalizedOverlays, DefaultOverlays) == 0x000028, "Member 'ULocalizedOverlays::DefaultOverlays' has a wrong offset!"); \ +static_assert(offsetof(ULocalizedOverlays, LocaleToOverlaysMap) == 0x000030, "Member 'ULocalizedOverlays::LocaleToOverlaysMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothConstraintSetup_Legacy \ +static_assert(alignof(FClothConstraintSetup_Legacy) == 0x000004, "Wrong alignment on FClothConstraintSetup_Legacy"); \ +static_assert(sizeof(FClothConstraintSetup_Legacy) == 0x000010, "Wrong size on FClothConstraintSetup_Legacy"); \ +static_assert(offsetof(FClothConstraintSetup_Legacy, Stiffness) == 0x000000, "Member 'FClothConstraintSetup_Legacy::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetup_Legacy, StiffnessMultiplier) == 0x000004, "Member 'FClothConstraintSetup_Legacy::StiffnessMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetup_Legacy, StretchLimit) == 0x000008, "Member 'FClothConstraintSetup_Legacy::StretchLimit' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetup_Legacy, CompressionLimit) == 0x00000C, "Member 'FClothConstraintSetup_Legacy::CompressionLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothConfig_Legacy \ +static_assert(alignof(FClothConfig_Legacy) == 0x000008, "Wrong alignment on FClothConfig_Legacy"); \ +static_assert(sizeof(FClothConfig_Legacy) == 0x000130, "Wrong size on FClothConfig_Legacy"); \ +static_assert(offsetof(FClothConfig_Legacy, WindMethod) == 0x000000, "Member 'FClothConfig_Legacy::WindMethod' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, VerticalConstraintConfig) == 0x000004, "Member 'FClothConfig_Legacy::VerticalConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, HorizontalConstraintConfig) == 0x000014, "Member 'FClothConfig_Legacy::HorizontalConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, BendConstraintConfig) == 0x000024, "Member 'FClothConfig_Legacy::BendConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, ShearConstraintConfig) == 0x000034, "Member 'FClothConfig_Legacy::ShearConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, SelfCollisionRadius) == 0x000044, "Member 'FClothConfig_Legacy::SelfCollisionRadius' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, SelfCollisionStiffness) == 0x000048, "Member 'FClothConfig_Legacy::SelfCollisionStiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, SelfCollisionCullScale) == 0x00004C, "Member 'FClothConfig_Legacy::SelfCollisionCullScale' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, Damping) == 0x000050, "Member 'FClothConfig_Legacy::Damping' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, Friction) == 0x000068, "Member 'FClothConfig_Legacy::Friction' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, WindDragCoefficient) == 0x00006C, "Member 'FClothConfig_Legacy::WindDragCoefficient' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, WindLiftCoefficient) == 0x000070, "Member 'FClothConfig_Legacy::WindLiftCoefficient' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, LinearDrag) == 0x000078, "Member 'FClothConfig_Legacy::LinearDrag' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, AngularDrag) == 0x000090, "Member 'FClothConfig_Legacy::AngularDrag' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, LinearInertiaScale) == 0x0000A8, "Member 'FClothConfig_Legacy::LinearInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, AngularInertiaScale) == 0x0000C0, "Member 'FClothConfig_Legacy::AngularInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, CentrifugalInertiaScale) == 0x0000D8, "Member 'FClothConfig_Legacy::CentrifugalInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, SolverFrequency) == 0x0000F0, "Member 'FClothConfig_Legacy::SolverFrequency' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, StiffnessFrequency) == 0x0000F4, "Member 'FClothConfig_Legacy::StiffnessFrequency' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, GravityScale) == 0x0000F8, "Member 'FClothConfig_Legacy::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, GravityOverride) == 0x000100, "Member 'FClothConfig_Legacy::GravityOverride' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, bUseGravityOverride) == 0x000118, "Member 'FClothConfig_Legacy::bUseGravityOverride' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, TetherStiffness) == 0x00011C, "Member 'FClothConfig_Legacy::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, TetherLimit) == 0x000120, "Member 'FClothConfig_Legacy::TetherLimit' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, CollisionThickness) == 0x000124, "Member 'FClothConfig_Legacy::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, AnimDriveSpringStiffness) == 0x000128, "Member 'FClothConfig_Legacy::AnimDriveSpringStiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothConfig_Legacy, AnimDriveDamperStiffness) == 0x00012C, "Member 'FClothConfig_Legacy::AnimDriveDamperStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPointWeightMap \ +static_assert(alignof(FPointWeightMap) == 0x000008, "Wrong alignment on FPointWeightMap"); \ +static_assert(sizeof(FPointWeightMap) == 0x000010, "Wrong size on FPointWeightMap"); \ +static_assert(offsetof(FPointWeightMap, Values) == 0x000000, "Member 'FPointWeightMap::Values' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothTetherData \ +static_assert(alignof(FClothTetherData) == 0x000008, "Wrong alignment on FClothTetherData"); \ +static_assert(sizeof(FClothTetherData) == 0x000010, "Wrong size on FClothTetherData"); \ + +#define DUMPER7_ASSERTS_FClothPhysicalMeshData \ +static_assert(alignof(FClothPhysicalMeshData) == 0x000008, "Wrong alignment on FClothPhysicalMeshData"); \ +static_assert(sizeof(FClothPhysicalMeshData) == 0x0000D8, "Wrong size on FClothPhysicalMeshData"); \ +static_assert(offsetof(FClothPhysicalMeshData, Vertices) == 0x000000, "Member 'FClothPhysicalMeshData::Vertices' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, Normals) == 0x000010, "Member 'FClothPhysicalMeshData::Normals' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, Indices) == 0x000020, "Member 'FClothPhysicalMeshData::Indices' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, WeightMaps) == 0x000030, "Member 'FClothPhysicalMeshData::WeightMaps' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, InverseMasses) == 0x000080, "Member 'FClothPhysicalMeshData::InverseMasses' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, BoneData) == 0x000090, "Member 'FClothPhysicalMeshData::BoneData' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, SelfCollisionIndices) == 0x0000A0, "Member 'FClothPhysicalMeshData::SelfCollisionIndices' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, EuclideanTethers) == 0x0000B0, "Member 'FClothPhysicalMeshData::EuclideanTethers' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, GeodesicTethers) == 0x0000C0, "Member 'FClothPhysicalMeshData::GeodesicTethers' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, MaxBoneWeights) == 0x0000D0, "Member 'FClothPhysicalMeshData::MaxBoneWeights' has a wrong offset!"); \ +static_assert(offsetof(FClothPhysicalMeshData, NumFixedVerts) == 0x0000D4, "Member 'FClothPhysicalMeshData::NumFixedVerts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothLODDataCommon \ +static_assert(alignof(FClothLODDataCommon) == 0x000008, "Wrong alignment on FClothLODDataCommon"); \ +static_assert(sizeof(FClothLODDataCommon) == 0x000148, "Wrong size on FClothLODDataCommon"); \ +static_assert(offsetof(FClothLODDataCommon, PhysicalMeshData) == 0x000000, "Member 'FClothLODDataCommon::PhysicalMeshData' has a wrong offset!"); \ +static_assert(offsetof(FClothLODDataCommon, CollisionData) == 0x0000D8, "Member 'FClothLODDataCommon::CollisionData' has a wrong offset!"); \ +static_assert(offsetof(FClothLODDataCommon, bUseMultipleInfluences) == 0x000118, "Member 'FClothLODDataCommon::bUseMultipleInfluences' has a wrong offset!"); \ +static_assert(offsetof(FClothLODDataCommon, SkinningKernelRadius) == 0x00011C, "Member 'FClothLODDataCommon::SkinningKernelRadius' has a wrong offset!"); \ +static_assert(offsetof(FClothLODDataCommon, bSmoothTransition) == 0x000120, "Member 'FClothLODDataCommon::bSmoothTransition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothParameterMask_Legacy \ +static_assert(alignof(FClothParameterMask_Legacy) == 0x000008, "Wrong alignment on FClothParameterMask_Legacy"); \ +static_assert(sizeof(FClothParameterMask_Legacy) == 0x000030, "Wrong size on FClothParameterMask_Legacy"); \ +static_assert(offsetof(FClothParameterMask_Legacy, MaskName) == 0x000000, "Member 'FClothParameterMask_Legacy::MaskName' has a wrong offset!"); \ +static_assert(offsetof(FClothParameterMask_Legacy, CurrentTarget) == 0x000008, "Member 'FClothParameterMask_Legacy::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(FClothParameterMask_Legacy, MaxValue) == 0x00000C, "Member 'FClothParameterMask_Legacy::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FClothParameterMask_Legacy, MinValue) == 0x000010, "Member 'FClothParameterMask_Legacy::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FClothParameterMask_Legacy, Values) == 0x000018, "Member 'FClothParameterMask_Legacy::Values' has a wrong offset!"); \ +static_assert(offsetof(FClothParameterMask_Legacy, bEnabled) == 0x000028, "Member 'FClothParameterMask_Legacy::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothConfigCommon \ +static_assert(alignof(UClothConfigCommon) == 0x000008, "Wrong alignment on UClothConfigCommon"); \ +static_assert(sizeof(UClothConfigCommon) == 0x000028, "Wrong size on UClothConfigCommon"); \ + +#define DUMPER7_ASSERTS_UClothSharedConfigCommon \ +static_assert(alignof(UClothSharedConfigCommon) == 0x000008, "Wrong alignment on UClothSharedConfigCommon"); \ +static_assert(sizeof(UClothSharedConfigCommon) == 0x000028, "Wrong size on UClothSharedConfigCommon"); \ + +#define DUMPER7_ASSERTS_UClothingAssetCustomData \ +static_assert(alignof(UClothingAssetCustomData) == 0x000008, "Wrong alignment on UClothingAssetCustomData"); \ +static_assert(sizeof(UClothingAssetCustomData) == 0x000028, "Wrong size on UClothingAssetCustomData"); \ + +#define DUMPER7_ASSERTS_UClothingAssetCommon \ +static_assert(alignof(UClothingAssetCommon) == 0x000008, "Wrong alignment on UClothingAssetCommon"); \ +static_assert(sizeof(UClothingAssetCommon) == 0x0000F0, "Wrong size on UClothingAssetCommon"); \ +static_assert(offsetof(UClothingAssetCommon, PhysicsAsset) == 0x000048, "Member 'UClothingAssetCommon::PhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, ClothConfigs) == 0x000050, "Member 'UClothingAssetCommon::ClothConfigs' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, LODData) == 0x0000A0, "Member 'UClothingAssetCommon::LODData' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, LodMap) == 0x0000B0, "Member 'UClothingAssetCommon::LodMap' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, UsedBoneNames) == 0x0000C0, "Member 'UClothingAssetCommon::UsedBoneNames' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, UsedBoneIndices) == 0x0000D0, "Member 'UClothingAssetCommon::UsedBoneIndices' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, ReferenceBoneIndex) == 0x0000E0, "Member 'UClothingAssetCommon::ReferenceBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(UClothingAssetCommon, CustomData) == 0x0000E8, "Member 'UClothingAssetCommon::CustomData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothLODDataCommon_Legacy \ +static_assert(alignof(UClothLODDataCommon_Legacy) == 0x000008, "Wrong alignment on UClothLODDataCommon_Legacy"); \ +static_assert(sizeof(UClothLODDataCommon_Legacy) == 0x000168, "Wrong size on UClothLODDataCommon_Legacy"); \ +static_assert(offsetof(UClothLODDataCommon_Legacy, PhysicalMeshData) == 0x000028, "Member 'UClothLODDataCommon_Legacy::PhysicalMeshData' has a wrong offset!"); \ +static_assert(offsetof(UClothLODDataCommon_Legacy, ClothPhysicalMeshData) == 0x000030, "Member 'UClothLODDataCommon_Legacy::ClothPhysicalMeshData' has a wrong offset!"); \ +static_assert(offsetof(UClothLODDataCommon_Legacy, CollisionData) == 0x000108, "Member 'UClothLODDataCommon_Legacy::CollisionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo \ +static_assert(alignof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo) == 0x000008, "Wrong alignment on WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo"); \ +static_assert(sizeof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo) == 0x000058, "Wrong size on WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, EntryPoint) == 0x000000, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_PlayAnimation_ReturnValue) == 0x000008, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, Temp_int_Variable) == 0x000010, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_GetChildAt_ReturnValue) == 0x000018, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_RemoveChild_ReturnValue) == 0x000021, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_RemoveChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000022, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_Create_ReturnValue) == 0x000028, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_GetChildAt_ReturnValue_1) == 0x000030, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_AddChildToVerticalBox_ReturnValue) == 0x000038, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_AddChildToVerticalBox_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_IsValid_ReturnValue_1) == 0x000040, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_RemoveChild_ReturnValue_1) == 0x000041, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_RemoveChild_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_PlayAnimation_ReturnValue_1) == 0x000048, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo, CallFunc_PlayAnimation_ReturnValue_2) == 0x000050, "Member 'WBP_BR_LightningAmmo_C_ExecuteUbergraph_WBP_BR_LightningAmmo::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BR_LightningAmmo_C \ +static_assert(alignof(UWBP_BR_LightningAmmo_C) == 0x000008, "Wrong alignment on UWBP_BR_LightningAmmo_C"); \ +static_assert(sizeof(UWBP_BR_LightningAmmo_C) == 0x0002F8, "Wrong size on UWBP_BR_LightningAmmo_C"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_BR_LightningAmmo_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, Load) == 0x0002C8, "Member 'UWBP_BR_LightningAmmo_C::Load' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, LoseBullet) == 0x0002D0, "Member 'UWBP_BR_LightningAmmo_C::LoseBullet' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, FireBullet) == 0x0002D8, "Member 'UWBP_BR_LightningAmmo_C::FireBullet' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, LooseBullet) == 0x0002E0, "Member 'UWBP_BR_LightningAmmo_C::LooseBullet' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, Magazine) == 0x0002E8, "Member 'UWBP_BR_LightningAmmo_C::Magazine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_LightningAmmo_C, MagAmmo) == 0x0002F0, "Member 'UWBP_BR_LightningAmmo_C::MagAmmo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClothConstraintSetupNv \ +static_assert(alignof(FClothConstraintSetupNv) == 0x000004, "Wrong alignment on FClothConstraintSetupNv"); \ +static_assert(sizeof(FClothConstraintSetupNv) == 0x000010, "Wrong size on FClothConstraintSetupNv"); \ +static_assert(offsetof(FClothConstraintSetupNv, Stiffness) == 0x000000, "Member 'FClothConstraintSetupNv::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetupNv, StiffnessMultiplier) == 0x000004, "Member 'FClothConstraintSetupNv::StiffnessMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetupNv, StretchLimit) == 0x000008, "Member 'FClothConstraintSetupNv::StretchLimit' has a wrong offset!"); \ +static_assert(offsetof(FClothConstraintSetupNv, CompressionLimit) == 0x00000C, "Member 'FClothConstraintSetupNv::CompressionLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothConfigNv \ +static_assert(alignof(UClothConfigNv) == 0x000008, "Wrong alignment on UClothConfigNv"); \ +static_assert(sizeof(UClothConfigNv) == 0x0001A0, "Wrong size on UClothConfigNv"); \ +static_assert(offsetof(UClothConfigNv, ClothingWindMethod) == 0x000028, "Member 'UClothConfigNv::ClothingWindMethod' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, VerticalConstraint) == 0x00002C, "Member 'UClothConfigNv::VerticalConstraint' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, HorizontalConstraint) == 0x00003C, "Member 'UClothConfigNv::HorizontalConstraint' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, BendConstraint) == 0x00004C, "Member 'UClothConfigNv::BendConstraint' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, ShearConstraint) == 0x00005C, "Member 'UClothConfigNv::ShearConstraint' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, SelfCollisionRadius) == 0x00006C, "Member 'UClothConfigNv::SelfCollisionRadius' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, SelfCollisionStiffness) == 0x000070, "Member 'UClothConfigNv::SelfCollisionStiffness' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, SelfCollisionCullScale) == 0x000074, "Member 'UClothConfigNv::SelfCollisionCullScale' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, Damping) == 0x000078, "Member 'UClothConfigNv::Damping' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, Friction) == 0x000090, "Member 'UClothConfigNv::Friction' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, WindDragCoefficient) == 0x000094, "Member 'UClothConfigNv::WindDragCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, WindLiftCoefficient) == 0x000098, "Member 'UClothConfigNv::WindLiftCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, LinearDrag) == 0x0000A0, "Member 'UClothConfigNv::LinearDrag' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, AngularDrag) == 0x0000B8, "Member 'UClothConfigNv::AngularDrag' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, LinearInertiaScale) == 0x0000D0, "Member 'UClothConfigNv::LinearInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, AngularInertiaScale) == 0x0000E8, "Member 'UClothConfigNv::AngularInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, CentrifugalInertiaScale) == 0x000100, "Member 'UClothConfigNv::CentrifugalInertiaScale' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, SolverFrequency) == 0x000118, "Member 'UClothConfigNv::SolverFrequency' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, StiffnessFrequency) == 0x00011C, "Member 'UClothConfigNv::StiffnessFrequency' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, GravityScale) == 0x000120, "Member 'UClothConfigNv::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, GravityOverride) == 0x000128, "Member 'UClothConfigNv::GravityOverride' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, bUseGravityOverride) == 0x000140, "Member 'UClothConfigNv::bUseGravityOverride' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, TetherStiffness) == 0x000144, "Member 'UClothConfigNv::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, TetherLimit) == 0x000148, "Member 'UClothConfigNv::TetherLimit' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, CollisionThickness) == 0x00014C, "Member 'UClothConfigNv::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, AnimDriveSpringStiffness) == 0x000150, "Member 'UClothConfigNv::AnimDriveSpringStiffness' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, AnimDriveDamperStiffness) == 0x000154, "Member 'UClothConfigNv::AnimDriveDamperStiffness' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, WindMethod) == 0x000158, "Member 'UClothConfigNv::WindMethod' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, VerticalConstraintConfig) == 0x00015C, "Member 'UClothConfigNv::VerticalConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, HorizontalConstraintConfig) == 0x00016C, "Member 'UClothConfigNv::HorizontalConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, BendConstraintConfig) == 0x00017C, "Member 'UClothConfigNv::BendConstraintConfig' has a wrong offset!"); \ +static_assert(offsetof(UClothConfigNv, ShearConstraintConfig) == 0x00018C, "Member 'UClothConfigNv::ShearConstraintConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothingSimulationFactoryNv \ +static_assert(alignof(UClothingSimulationFactoryNv) == 0x000008, "Wrong alignment on UClothingSimulationFactoryNv"); \ +static_assert(sizeof(UClothingSimulationFactoryNv) == 0x000028, "Wrong size on UClothingSimulationFactoryNv"); \ + +#define DUMPER7_ASSERTS_ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness \ +static_assert(alignof(ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness) == 0x000004, "Wrong alignment on ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness"); \ +static_assert(sizeof(ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness) == 0x000004, "Wrong size on ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness"); \ +static_assert(offsetof(ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness, InStiffness) == 0x000000, "Member 'ClothingSimulationInteractorNv_SetAnimDriveDamperStiffness::InStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClothingSimulationInteractorNv \ +static_assert(alignof(UClothingSimulationInteractorNv) == 0x000008, "Wrong alignment on UClothingSimulationInteractorNv"); \ +static_assert(sizeof(UClothingSimulationInteractorNv) == 0x000090, "Wrong size on UClothingSimulationInteractorNv"); \ + +#define DUMPER7_ASSERTS_UClothPhysicalMeshDataNv_Legacy \ +static_assert(alignof(UClothPhysicalMeshDataNv_Legacy) == 0x000008, "Wrong alignment on UClothPhysicalMeshDataNv_Legacy"); \ +static_assert(sizeof(UClothPhysicalMeshDataNv_Legacy) == 0x000120, "Wrong size on UClothPhysicalMeshDataNv_Legacy"); \ +static_assert(offsetof(UClothPhysicalMeshDataNv_Legacy, MaxDistances) == 0x0000E0, "Member 'UClothPhysicalMeshDataNv_Legacy::MaxDistances' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataNv_Legacy, BackstopDistances) == 0x0000F0, "Member 'UClothPhysicalMeshDataNv_Legacy::BackstopDistances' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataNv_Legacy, BackstopRadiuses) == 0x000100, "Member 'UClothPhysicalMeshDataNv_Legacy::BackstopRadiuses' has a wrong offset!"); \ +static_assert(offsetof(UClothPhysicalMeshDataNv_Legacy, AnimDriveMultipliers) == 0x000110, "Member 'UClothPhysicalMeshDataNv_Legacy::AnimDriveMultipliers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDCG_MakomBouncer_C \ +static_assert(alignof(UPD_STS_MDCG_MakomBouncer_C) == 0x000008, "Wrong alignment on UPD_STS_MDCG_MakomBouncer_C"); \ +static_assert(sizeof(UPD_STS_MDCG_MakomBouncer_C) == 0x000058, "Wrong size on UPD_STS_MDCG_MakomBouncer_C"); \ + +#define DUMPER7_ASSERTS_FHeraStateTrackingListItem \ +static_assert(alignof(FHeraStateTrackingListItem) == 0x000008, "Wrong alignment on FHeraStateTrackingListItem"); \ +static_assert(sizeof(FHeraStateTrackingListItem) == 0x000020, "Wrong size on FHeraStateTrackingListItem"); \ +static_assert(offsetof(FHeraStateTrackingListItem, OriginName) == 0x000000, "Member 'FHeraStateTrackingListItem::OriginName' has a wrong offset!"); \ +static_assert(offsetof(FHeraStateTrackingListItem, ItemName) == 0x000010, "Member 'FHeraStateTrackingListItem::ItemName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraStateTrackingList \ +static_assert(alignof(FHeraStateTrackingList) == 0x000008, "Wrong alignment on FHeraStateTrackingList"); \ +static_assert(sizeof(FHeraStateTrackingList) == 0x000060, "Wrong size on FHeraStateTrackingList"); \ +static_assert(offsetof(FHeraStateTrackingList, StateTrackingMap) == 0x000000, "Member 'FHeraStateTrackingList::StateTrackingMap' has a wrong offset!"); \ +static_assert(offsetof(FHeraStateTrackingList, Origins) == 0x000050, "Member 'FHeraStateTrackingList::Origins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraMapInfo \ +static_assert(alignof(FHeraMapInfo) == 0x000008, "Wrong alignment on FHeraMapInfo"); \ +static_assert(sizeof(FHeraMapInfo) == 0x000028, "Wrong size on FHeraMapInfo"); \ +static_assert(offsetof(FHeraMapInfo, Map) == 0x000000, "Member 'FHeraMapInfo::Map' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraScaledCurve \ +static_assert(alignof(FHeraScaledCurve) == 0x000008, "Wrong alignment on FHeraScaledCurve"); \ +static_assert(sizeof(FHeraScaledCurve) == 0x0000A0, "Wrong size on FHeraScaledCurve"); \ +static_assert(offsetof(FHeraScaledCurve, bScaleX) == 0x000000, "Member 'FHeraScaledCurve::bScaleX' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, MinInput) == 0x000004, "Member 'FHeraScaledCurve::MinInput' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, MaxInput) == 0x000008, "Member 'FHeraScaledCurve::MaxInput' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, bScaleY) == 0x00000C, "Member 'FHeraScaledCurve::bScaleY' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, MinValue) == 0x000010, "Member 'FHeraScaledCurve::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, MaxValue) == 0x000014, "Member 'FHeraScaledCurve::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FHeraScaledCurve, Curve) == 0x000018, "Member 'FHeraScaledCurve::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDataAsset \ +static_assert(alignof(UHeraDataAsset) == 0x000008, "Wrong alignment on UHeraDataAsset"); \ +static_assert(sizeof(UHeraDataAsset) == 0x000030, "Wrong size on UHeraDataAsset"); \ + +#define DUMPER7_ASSERTS_UHeraConfigurationAsset \ +static_assert(alignof(UHeraConfigurationAsset) == 0x000008, "Wrong alignment on UHeraConfigurationAsset"); \ +static_assert(sizeof(UHeraConfigurationAsset) == 0x000030, "Wrong size on UHeraConfigurationAsset"); \ + +#define DUMPER7_ASSERTS_UHeraDataLayerFunctionLibrary \ +static_assert(alignof(UHeraDataLayerFunctionLibrary) == 0x000008, "Wrong alignment on UHeraDataLayerFunctionLibrary"); \ +static_assert(sizeof(UHeraDataLayerFunctionLibrary) == 0x000028, "Wrong size on UHeraDataLayerFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UHeraDefaults \ +static_assert(alignof(UHeraDefaults) == 0x000008, "Wrong alignment on UHeraDefaults"); \ +static_assert(sizeof(UHeraDefaults) == 0x000080, "Wrong size on UHeraDefaults"); \ +static_assert(offsetof(UHeraDefaults, DataSetup) == 0x000030, "Member 'UHeraDefaults::DataSetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGameInstance_LoadMap \ +static_assert(alignof(HeraGameInstance_LoadMap) == 0x000008, "Wrong alignment on HeraGameInstance_LoadMap"); \ +static_assert(sizeof(HeraGameInstance_LoadMap) == 0x000018, "Wrong size on HeraGameInstance_LoadMap"); \ +static_assert(offsetof(HeraGameInstance_LoadMap, InWorldName) == 0x000000, "Member 'HeraGameInstance_LoadMap::InWorldName' has a wrong offset!"); \ +static_assert(offsetof(HeraGameInstance_LoadMap, Options) == 0x000008, "Member 'HeraGameInstance_LoadMap::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGameInstance_LoadMapAtDebugStart \ +static_assert(alignof(HeraGameInstance_LoadMapAtDebugStart) == 0x000004, "Wrong alignment on HeraGameInstance_LoadMapAtDebugStart"); \ +static_assert(sizeof(HeraGameInstance_LoadMapAtDebugStart) == 0x000010, "Wrong size on HeraGameInstance_LoadMapAtDebugStart"); \ +static_assert(offsetof(HeraGameInstance_LoadMapAtDebugStart, InWorldName) == 0x000000, "Member 'HeraGameInstance_LoadMapAtDebugStart::InWorldName' has a wrong offset!"); \ +static_assert(offsetof(HeraGameInstance_LoadMapAtDebugStart, InDebugPointStartID) == 0x000008, "Member 'HeraGameInstance_LoadMapAtDebugStart::InDebugPointStartID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGameInstance_GetPlayerVariant \ +static_assert(alignof(HeraGameInstance_GetPlayerVariant) == 0x000001, "Wrong alignment on HeraGameInstance_GetPlayerVariant"); \ +static_assert(sizeof(HeraGameInstance_GetPlayerVariant) == 0x000001, "Wrong size on HeraGameInstance_GetPlayerVariant"); \ +static_assert(offsetof(HeraGameInstance_GetPlayerVariant, ReturnValue) == 0x000000, "Member 'HeraGameInstance_GetPlayerVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGameInstance \ +static_assert(alignof(UHeraGameInstance) == 0x000008, "Wrong alignment on UHeraGameInstance"); \ +static_assert(sizeof(UHeraGameInstance) == 0x000230, "Wrong size on UHeraGameInstance"); \ +static_assert(offsetof(UHeraGameInstance, DefaultsPtr) == 0x0001F8, "Member 'UHeraGameInstance::DefaultsPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraGameInstance, Defaults) == 0x000220, "Member 'UHeraGameInstance::Defaults' has a wrong offset!"); \ +static_assert(offsetof(UHeraGameInstance, MapSetup) == 0x000228, "Member 'UHeraGameInstance::MapSetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraGameMode \ +static_assert(alignof(AHeraGameMode) == 0x000008, "Wrong alignment on AHeraGameMode"); \ +static_assert(sizeof(AHeraGameMode) == 0x000380, "Wrong size on AHeraGameMode"); \ + +#define DUMPER7_ASSERTS_HeraGlobal_IsPIE \ +static_assert(alignof(HeraGlobal_IsPIE) == 0x000001, "Wrong alignment on HeraGlobal_IsPIE"); \ +static_assert(sizeof(HeraGlobal_IsPIE) == 0x000001, "Wrong size on HeraGlobal_IsPIE"); \ +static_assert(offsetof(HeraGlobal_IsPIE, ReturnValue) == 0x000000, "Member 'HeraGlobal_IsPIE::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGlobal \ +static_assert(alignof(UHeraGlobal) == 0x000008, "Wrong alignment on UHeraGlobal"); \ +static_assert(sizeof(UHeraGlobal) == 0x000028, "Wrong size on UHeraGlobal"); \ + +#define DUMPER7_ASSERTS_UHeraMaps \ +static_assert(alignof(UHeraMaps) == 0x000008, "Wrong alignment on UHeraMaps"); \ +static_assert(sizeof(UHeraMaps) == 0x000080, "Wrong size on UHeraMaps"); \ +static_assert(offsetof(UHeraMaps, MapInfo) == 0x000030, "Member 'UHeraMaps::MapInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlayerController_IsPlayingInVR \ +static_assert(alignof(HeraPlayerController_IsPlayingInVR) == 0x000001, "Wrong alignment on HeraPlayerController_IsPlayingInVR"); \ +static_assert(sizeof(HeraPlayerController_IsPlayingInVR) == 0x000001, "Wrong size on HeraPlayerController_IsPlayingInVR"); \ +static_assert(offsetof(HeraPlayerController_IsPlayingInVR, ReturnValue) == 0x000000, "Member 'HeraPlayerController_IsPlayingInVR::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlayerController_OnGamePaused \ +static_assert(alignof(HeraPlayerController_OnGamePaused) == 0x000001, "Wrong alignment on HeraPlayerController_OnGamePaused"); \ +static_assert(sizeof(HeraPlayerController_OnGamePaused) == 0x000001, "Wrong size on HeraPlayerController_OnGamePaused"); \ +static_assert(offsetof(HeraPlayerController_OnGamePaused, bPaused) == 0x000000, "Member 'HeraPlayerController_OnGamePaused::bPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlayerController_SetUsePawnRotation \ +static_assert(alignof(HeraPlayerController_SetUsePawnRotation) == 0x000001, "Wrong alignment on HeraPlayerController_SetUsePawnRotation"); \ +static_assert(sizeof(HeraPlayerController_SetUsePawnRotation) == 0x000001, "Wrong size on HeraPlayerController_SetUsePawnRotation"); \ +static_assert(offsetof(HeraPlayerController_SetUsePawnRotation, bUsePawnRotation) == 0x000000, "Member 'HeraPlayerController_SetUsePawnRotation::bUsePawnRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraPlayerController \ +static_assert(alignof(AHeraPlayerController) == 0x000008, "Wrong alignment on AHeraPlayerController"); \ +static_assert(sizeof(AHeraPlayerController) == 0x000860, "Wrong size on AHeraPlayerController"); \ + +#define DUMPER7_ASSERTS_UHeraSettings \ +static_assert(alignof(UHeraSettings) == 0x000008, "Wrong alignment on UHeraSettings"); \ +static_assert(sizeof(UHeraSettings) == 0x000038, "Wrong size on UHeraSettings"); \ + +#define DUMPER7_ASSERTS_UHeraPlayerVariantSettingsPerUser \ +static_assert(alignof(UHeraPlayerVariantSettingsPerUser) == 0x000008, "Wrong alignment on UHeraPlayerVariantSettingsPerUser"); \ +static_assert(sizeof(UHeraPlayerVariantSettingsPerUser) == 0x000038, "Wrong size on UHeraPlayerVariantSettingsPerUser"); \ + +#define DUMPER7_ASSERTS_UHeraStateTrackingListDefinition \ +static_assert(alignof(UHeraStateTrackingListDefinition) == 0x000008, "Wrong alignment on UHeraStateTrackingListDefinition"); \ +static_assert(sizeof(UHeraStateTrackingListDefinition) == 0x0000E0, "Wrong size on UHeraStateTrackingListDefinition"); \ +static_assert(offsetof(UHeraStateTrackingListDefinition, Name_0) == 0x000030, "Member 'UHeraStateTrackingListDefinition::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UHeraStateTrackingListDefinition, ItemNameToValues) == 0x000090, "Member 'UHeraStateTrackingListDefinition::ItemNameToValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraVersionInterface \ +static_assert(alignof(IHeraVersionInterface) == 0x000001, "Wrong alignment on IHeraVersionInterface"); \ +static_assert(sizeof(IHeraVersionInterface) == 0x000001, "Wrong size on IHeraVersionInterface"); \ + +#define DUMPER7_ASSERTS_UHeraWorldPartitionStreamingSourceComponent \ +static_assert(alignof(UHeraWorldPartitionStreamingSourceComponent) == 0x000008, "Wrong alignment on UHeraWorldPartitionStreamingSourceComponent"); \ +static_assert(sizeof(UHeraWorldPartitionStreamingSourceComponent) == 0x000110, "Wrong size on UHeraWorldPartitionStreamingSourceComponent"); \ + +#define DUMPER7_ASSERTS_ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents \ +static_assert(alignof(ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents) == 0x000008, "Wrong alignment on ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents"); \ +static_assert(sizeof(ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents) == 0x000018, "Wrong size on ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents"); \ +static_assert(offsetof(ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents, EntryPoint) == 0x000000, "Member 'ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents, K2Node_Event_InAutomata) == 0x000008, "Member 'ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents, K2Node_Event_InState) == 0x000010, "Member 'ToggleBloodResonanceEvents_C_ExecuteUbergraph_ToggleBloodResonanceEvents::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleBloodResonanceEvents_C_ReceiveExecute \ +static_assert(alignof(ToggleBloodResonanceEvents_C_ReceiveExecute) == 0x000008, "Wrong alignment on ToggleBloodResonanceEvents_C_ReceiveExecute"); \ +static_assert(sizeof(ToggleBloodResonanceEvents_C_ReceiveExecute) == 0x000010, "Wrong size on ToggleBloodResonanceEvents_C_ReceiveExecute"); \ +static_assert(offsetof(ToggleBloodResonanceEvents_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ToggleBloodResonanceEvents_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleBloodResonanceEvents_C_ReceiveExecute, InState) == 0x000008, "Member 'ToggleBloodResonanceEvents_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToggleBloodResonanceEvents_C \ +static_assert(alignof(UToggleBloodResonanceEvents_C) == 0x000008, "Wrong alignment on UToggleBloodResonanceEvents_C"); \ +static_assert(sizeof(UToggleBloodResonanceEvents_C) == 0x000098, "Wrong size on UToggleBloodResonanceEvents_C"); \ +static_assert(offsetof(UToggleBloodResonanceEvents_C, UberGraphFrame) == 0x000088, "Member 'UToggleBloodResonanceEvents_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UToggleBloodResonanceEvents_C, Enabled) == 0x000090, "Member 'UToggleBloodResonanceEvents_C::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkAdvancedInitializationSettings \ +static_assert(alignof(FAkAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkAdvancedInitializationSettings) == 0x00002C, "Wrong size on FAkAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, IO_MemorySize) == 0x000000, "Member 'FAkAdvancedInitializationSettings::IO_MemorySize' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, IO_Granularity) == 0x000004, "Member 'FAkAdvancedInitializationSettings::IO_Granularity' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, TargetAutoStreamBufferLength) == 0x000008, "Member 'FAkAdvancedInitializationSettings::TargetAutoStreamBufferLength' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, UseStreamCache) == 0x00000C, "Member 'FAkAdvancedInitializationSettings::UseStreamCache' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, MaximumPinnedBytesInCache) == 0x000010, "Member 'FAkAdvancedInitializationSettings::MaximumPinnedBytesInCache' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, EnableGameSyncPreparation) == 0x000014, "Member 'FAkAdvancedInitializationSettings::EnableGameSyncPreparation' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, ContinuousPlaybackLookAhead) == 0x000018, "Member 'FAkAdvancedInitializationSettings::ContinuousPlaybackLookAhead' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, MonitorQueuePoolSize) == 0x00001C, "Member 'FAkAdvancedInitializationSettings::MonitorQueuePoolSize' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, MaximumHardwareTimeoutMs) == 0x000020, "Member 'FAkAdvancedInitializationSettings::MaximumHardwareTimeoutMs' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, DebugOutOfRangeCheckEnabled) == 0x000024, "Member 'FAkAdvancedInitializationSettings::DebugOutOfRangeCheckEnabled' has a wrong offset!"); \ +static_assert(offsetof(FAkAdvancedInitializationSettings, DebugOutOfRangeLimit) == 0x000028, "Member 'FAkAdvancedInitializationSettings::DebugOutOfRangeLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkSurfacePoly \ +static_assert(alignof(FAkSurfacePoly) == 0x000008, "Wrong alignment on FAkSurfacePoly"); \ +static_assert(sizeof(FAkSurfacePoly) == 0x000018, "Wrong size on FAkSurfacePoly"); \ +static_assert(offsetof(FAkSurfacePoly, Texture) == 0x000000, "Member 'FAkSurfacePoly::Texture' has a wrong offset!"); \ +static_assert(offsetof(FAkSurfacePoly, Occlusion) == 0x000008, "Member 'FAkSurfacePoly::Occlusion' has a wrong offset!"); \ +static_assert(offsetof(FAkSurfacePoly, EnableSurface) == 0x00000C, "Member 'FAkSurfacePoly::EnableSurface' has a wrong offset!"); \ +static_assert(offsetof(FAkSurfacePoly, SurfaceArea) == 0x000010, "Member 'FAkSurfacePoly::SurfaceArea' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAKWaapiJsonObject \ +static_assert(alignof(FAKWaapiJsonObject) == 0x000008, "Wrong alignment on FAKWaapiJsonObject"); \ +static_assert(sizeof(FAKWaapiJsonObject) == 0x000010, "Wrong size on FAKWaapiJsonObject"); \ + +#define DUMPER7_ASSERTS_FAkAdvancedInitializationSettingsWithMultiCoreRendering \ +static_assert(alignof(FAkAdvancedInitializationSettingsWithMultiCoreRendering) == 0x000004, "Wrong alignment on FAkAdvancedInitializationSettingsWithMultiCoreRendering"); \ +static_assert(sizeof(FAkAdvancedInitializationSettingsWithMultiCoreRendering) == 0x000030, "Wrong size on FAkAdvancedInitializationSettingsWithMultiCoreRendering"); \ +static_assert(offsetof(FAkAdvancedInitializationSettingsWithMultiCoreRendering, EnableMultiCoreRendering) == 0x00002C, "Member 'FAkAdvancedInitializationSettingsWithMultiCoreRendering::EnableMultiCoreRendering' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkPS4AdvancedInitializationSettings \ +static_assert(alignof(FAkPS4AdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkPS4AdvancedInitializationSettings"); \ +static_assert(sizeof(FAkPS4AdvancedInitializationSettings) == 0x000038, "Wrong size on FAkPS4AdvancedInitializationSettings"); \ +static_assert(offsetof(FAkPS4AdvancedInitializationSettings, ACPBatchBufferSize) == 0x000030, "Member 'FAkPS4AdvancedInitializationSettings::ACPBatchBufferSize' has a wrong offset!"); \ +static_assert(offsetof(FAkPS4AdvancedInitializationSettings, UseHardwareCodecLowLatencyMode) == 0x000034, "Member 'FAkPS4AdvancedInitializationSettings::UseHardwareCodecLowLatencyMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWaapiSubscriptionId \ +static_assert(alignof(FAkWaapiSubscriptionId) == 0x000008, "Wrong alignment on FAkWaapiSubscriptionId"); \ +static_assert(sizeof(FAkWaapiSubscriptionId) == 0x000008, "Wrong size on FAkWaapiSubscriptionId"); \ + +#define DUMPER7_ASSERTS_FAkXboxOneApuHeapInitializationSettings \ +static_assert(alignof(FAkXboxOneApuHeapInitializationSettings) == 0x000004, "Wrong alignment on FAkXboxOneApuHeapInitializationSettings"); \ +static_assert(sizeof(FAkXboxOneApuHeapInitializationSettings) == 0x000008, "Wrong size on FAkXboxOneApuHeapInitializationSettings"); \ +static_assert(offsetof(FAkXboxOneApuHeapInitializationSettings, CachedSize) == 0x000000, "Member 'FAkXboxOneApuHeapInitializationSettings::CachedSize' has a wrong offset!"); \ +static_assert(offsetof(FAkXboxOneApuHeapInitializationSettings, NonCachedSize) == 0x000004, "Member 'FAkXboxOneApuHeapInitializationSettings::NonCachedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkAndroidAdvancedInitializationSettings \ +static_assert(alignof(FAkAndroidAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkAndroidAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkAndroidAdvancedInitializationSettings) == 0x000038, "Wrong size on FAkAndroidAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkAndroidAdvancedInitializationSettings, AudioAPI) == 0x000030, "Member 'FAkAndroidAdvancedInitializationSettings::AudioAPI' has a wrong offset!"); \ +static_assert(offsetof(FAkAndroidAdvancedInitializationSettings, RoundFrameSizeToHardwareSize) == 0x000034, "Member 'FAkAndroidAdvancedInitializationSettings::RoundFrameSizeToHardwareSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkAudioSession \ +static_assert(alignof(FAkAudioSession) == 0x000004, "Wrong alignment on FAkAudioSession"); \ +static_assert(sizeof(FAkAudioSession) == 0x00000C, "Wrong size on FAkAudioSession"); \ +static_assert(offsetof(FAkAudioSession, AudioSessionCategory) == 0x000000, "Member 'FAkAudioSession::AudioSessionCategory' has a wrong offset!"); \ +static_assert(offsetof(FAkAudioSession, AudioSessionCategoryOptions) == 0x000004, "Member 'FAkAudioSession::AudioSessionCategoryOptions' has a wrong offset!"); \ +static_assert(offsetof(FAkAudioSession, AudioSessionMode) == 0x000008, "Member 'FAkAudioSession::AudioSessionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkChannelMask \ +static_assert(alignof(FAkChannelMask) == 0x000004, "Wrong alignment on FAkChannelMask"); \ +static_assert(sizeof(FAkChannelMask) == 0x000004, "Wrong size on FAkChannelMask"); \ +static_assert(offsetof(FAkChannelMask, ChannelMask) == 0x000000, "Member 'FAkChannelMask::ChannelMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneAkAudioRTPCTemplate \ +static_assert(alignof(FMovieSceneAkAudioRTPCTemplate) == 0x000008, "Wrong alignment on FMovieSceneAkAudioRTPCTemplate"); \ +static_assert(sizeof(FMovieSceneAkAudioRTPCTemplate) == 0x000028, "Wrong size on FMovieSceneAkAudioRTPCTemplate"); \ +static_assert(offsetof(FMovieSceneAkAudioRTPCTemplate, Section) == 0x000020, "Member 'FMovieSceneAkAudioRTPCTemplate::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkOutputSettings \ +static_assert(alignof(FAkOutputSettings) == 0x000008, "Wrong alignment on FAkOutputSettings"); \ +static_assert(sizeof(FAkOutputSettings) == 0x000018, "Wrong size on FAkOutputSettings"); \ +static_assert(offsetof(FAkOutputSettings, AudioDeviceSharesetName) == 0x000000, "Member 'FAkOutputSettings::AudioDeviceSharesetName' has a wrong offset!"); \ +static_assert(offsetof(FAkOutputSettings, IdDevice) == 0x000010, "Member 'FAkOutputSettings::IdDevice' has a wrong offset!"); \ +static_assert(offsetof(FAkOutputSettings, PanRule) == 0x000014, "Member 'FAkOutputSettings::PanRule' has a wrong offset!"); \ +static_assert(offsetof(FAkOutputSettings, ChannelConfig) == 0x000015, "Member 'FAkOutputSettings::ChannelConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiEventBase \ +static_assert(alignof(FAkMidiEventBase) == 0x000001, "Wrong alignment on FAkMidiEventBase"); \ +static_assert(sizeof(FAkMidiEventBase) == 0x000002, "Wrong size on FAkMidiEventBase"); \ +static_assert(offsetof(FAkMidiEventBase, Type) == 0x000000, "Member 'FAkMidiEventBase::Type' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiEventBase, Chan) == 0x000001, "Member 'FAkMidiEventBase::Chan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiGeneric \ +static_assert(alignof(FAkMidiGeneric) == 0x000001, "Wrong alignment on FAkMidiGeneric"); \ +static_assert(sizeof(FAkMidiGeneric) == 0x000004, "Wrong size on FAkMidiGeneric"); \ +static_assert(offsetof(FAkMidiGeneric, Param1) == 0x000002, "Member 'FAkMidiGeneric::Param1' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiGeneric, Param2) == 0x000003, "Member 'FAkMidiGeneric::Param2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiNoteOnOff \ +static_assert(alignof(FAkMidiNoteOnOff) == 0x000001, "Wrong alignment on FAkMidiNoteOnOff"); \ +static_assert(sizeof(FAkMidiNoteOnOff) == 0x000004, "Wrong size on FAkMidiNoteOnOff"); \ +static_assert(offsetof(FAkMidiNoteOnOff, Note) == 0x000002, "Member 'FAkMidiNoteOnOff::Note' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiNoteOnOff, Velocity) == 0x000003, "Member 'FAkMidiNoteOnOff::Velocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiCc \ +static_assert(alignof(FAkMidiCc) == 0x000001, "Wrong alignment on FAkMidiCc"); \ +static_assert(sizeof(FAkMidiCc) == 0x000004, "Wrong size on FAkMidiCc"); \ +static_assert(offsetof(FAkMidiCc, Cc) == 0x000002, "Member 'FAkMidiCc::Cc' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiCc, Value) == 0x000003, "Member 'FAkMidiCc::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiPitchBend \ +static_assert(alignof(FAkMidiPitchBend) == 0x000004, "Wrong alignment on FAkMidiPitchBend"); \ +static_assert(sizeof(FAkMidiPitchBend) == 0x000008, "Wrong size on FAkMidiPitchBend"); \ +static_assert(offsetof(FAkMidiPitchBend, ValueLsb) == 0x000002, "Member 'FAkMidiPitchBend::ValueLsb' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiPitchBend, ValueMsb) == 0x000003, "Member 'FAkMidiPitchBend::ValueMsb' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiPitchBend, FullValue) == 0x000004, "Member 'FAkMidiPitchBend::FullValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiNoteAftertouch \ +static_assert(alignof(FAkMidiNoteAftertouch) == 0x000001, "Wrong alignment on FAkMidiNoteAftertouch"); \ +static_assert(sizeof(FAkMidiNoteAftertouch) == 0x000004, "Wrong size on FAkMidiNoteAftertouch"); \ +static_assert(offsetof(FAkMidiNoteAftertouch, Note) == 0x000002, "Member 'FAkMidiNoteAftertouch::Note' has a wrong offset!"); \ +static_assert(offsetof(FAkMidiNoteAftertouch, Value) == 0x000003, "Member 'FAkMidiNoteAftertouch::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiChannelAftertouch \ +static_assert(alignof(FAkMidiChannelAftertouch) == 0x000001, "Wrong alignment on FAkMidiChannelAftertouch"); \ +static_assert(sizeof(FAkMidiChannelAftertouch) == 0x000003, "Wrong size on FAkMidiChannelAftertouch"); \ +static_assert(offsetof(FAkMidiChannelAftertouch, Value) == 0x000002, "Member 'FAkMidiChannelAftertouch::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMidiProgramChange \ +static_assert(alignof(FAkMidiProgramChange) == 0x000001, "Wrong alignment on FAkMidiProgramChange"); \ +static_assert(sizeof(FAkMidiProgramChange) == 0x000003, "Wrong size on FAkMidiProgramChange"); \ +static_assert(offsetof(FAkMidiProgramChange, ProgramNum) == 0x000002, "Member 'FAkMidiProgramChange::ProgramNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkSegmentInfo \ +static_assert(alignof(FAkSegmentInfo) == 0x000004, "Wrong alignment on FAkSegmentInfo"); \ +static_assert(sizeof(FAkSegmentInfo) == 0x000024, "Wrong size on FAkSegmentInfo"); \ +static_assert(offsetof(FAkSegmentInfo, CurrentPosition) == 0x000000, "Member 'FAkSegmentInfo::CurrentPosition' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, PreEntryDuration) == 0x000004, "Member 'FAkSegmentInfo::PreEntryDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, ActiveDuration) == 0x000008, "Member 'FAkSegmentInfo::ActiveDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, PostExitDuration) == 0x00000C, "Member 'FAkSegmentInfo::PostExitDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, RemainingLookAheadTime) == 0x000010, "Member 'FAkSegmentInfo::RemainingLookAheadTime' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, BeatDuration) == 0x000014, "Member 'FAkSegmentInfo::BeatDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, BarDuration) == 0x000018, "Member 'FAkSegmentInfo::BarDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, GridDuration) == 0x00001C, "Member 'FAkSegmentInfo::GridDuration' has a wrong offset!"); \ +static_assert(offsetof(FAkSegmentInfo, GridOffset) == 0x000020, "Member 'FAkSegmentInfo::GridOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkExternalSourceInfo \ +static_assert(alignof(FAkExternalSourceInfo) == 0x000008, "Wrong alignment on FAkExternalSourceInfo"); \ +static_assert(sizeof(FAkExternalSourceInfo) == 0x000038, "Wrong size on FAkExternalSourceInfo"); \ +static_assert(offsetof(FAkExternalSourceInfo, ExternalSrcName) == 0x000000, "Member 'FAkExternalSourceInfo::ExternalSrcName' has a wrong offset!"); \ +static_assert(offsetof(FAkExternalSourceInfo, CodecID) == 0x000010, "Member 'FAkExternalSourceInfo::CodecID' has a wrong offset!"); \ +static_assert(offsetof(FAkExternalSourceInfo, Filename) == 0x000018, "Member 'FAkExternalSourceInfo::Filename' has a wrong offset!"); \ +static_assert(offsetof(FAkExternalSourceInfo, ExternalSourceAsset) == 0x000028, "Member 'FAkExternalSourceInfo::ExternalSourceAsset' has a wrong offset!"); \ +static_assert(offsetof(FAkExternalSourceInfo, IsStreamed) == 0x000030, "Member 'FAkExternalSourceInfo::IsStreamed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkGeometrySurfaceOverride \ +static_assert(alignof(FAkGeometrySurfaceOverride) == 0x000008, "Wrong alignment on FAkGeometrySurfaceOverride"); \ +static_assert(sizeof(FAkGeometrySurfaceOverride) == 0x000018, "Wrong size on FAkGeometrySurfaceOverride"); \ +static_assert(offsetof(FAkGeometrySurfaceOverride, AcousticTexture) == 0x000000, "Member 'FAkGeometrySurfaceOverride::AcousticTexture' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometrySurfaceOverride, bEnableOcclusionOverride) == 0x000008, "Member 'FAkGeometrySurfaceOverride::bEnableOcclusionOverride' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometrySurfaceOverride, OcclusionValue) == 0x00000C, "Member 'FAkGeometrySurfaceOverride::OcclusionValue' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometrySurfaceOverride, SurfaceArea) == 0x000010, "Member 'FAkGeometrySurfaceOverride::SurfaceArea' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkAcousticSurface \ +static_assert(alignof(FAkAcousticSurface) == 0x000008, "Wrong alignment on FAkAcousticSurface"); \ +static_assert(sizeof(FAkAcousticSurface) == 0x000018, "Wrong size on FAkAcousticSurface"); \ +static_assert(offsetof(FAkAcousticSurface, Texture) == 0x000000, "Member 'FAkAcousticSurface::Texture' has a wrong offset!"); \ +static_assert(offsetof(FAkAcousticSurface, Occlusion) == 0x000004, "Member 'FAkAcousticSurface::Occlusion' has a wrong offset!"); \ +static_assert(offsetof(FAkAcousticSurface, Name) == 0x000008, "Member 'FAkAcousticSurface::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkTriangle \ +static_assert(alignof(FAkTriangle) == 0x000002, "Wrong alignment on FAkTriangle"); \ +static_assert(sizeof(FAkTriangle) == 0x000008, "Wrong size on FAkTriangle"); \ +static_assert(offsetof(FAkTriangle, Point0) == 0x000000, "Member 'FAkTriangle::Point0' has a wrong offset!"); \ +static_assert(offsetof(FAkTriangle, Point1) == 0x000002, "Member 'FAkTriangle::Point1' has a wrong offset!"); \ +static_assert(offsetof(FAkTriangle, Point2) == 0x000004, "Member 'FAkTriangle::Point2' has a wrong offset!"); \ +static_assert(offsetof(FAkTriangle, Surface) == 0x000006, "Member 'FAkTriangle::Surface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkGeometryData \ +static_assert(alignof(FAkGeometryData) == 0x000008, "Wrong alignment on FAkGeometryData"); \ +static_assert(sizeof(FAkGeometryData) == 0x000050, "Wrong size on FAkGeometryData"); \ +static_assert(offsetof(FAkGeometryData, Vertices) == 0x000000, "Member 'FAkGeometryData::Vertices' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometryData, Surfaces) == 0x000010, "Member 'FAkGeometryData::Surfaces' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometryData, Triangles) == 0x000020, "Member 'FAkGeometryData::Triangles' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometryData, ToOverrideAcousticTexture) == 0x000030, "Member 'FAkGeometryData::ToOverrideAcousticTexture' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometryData, ToOverrideOcclusion) == 0x000040, "Member 'FAkGeometryData::ToOverrideOcclusion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkHololensAdvancedInitializationSettings \ +static_assert(alignof(FAkHololensAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkHololensAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkHololensAdvancedInitializationSettings) == 0x000034, "Wrong size on FAkHololensAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkHololensAdvancedInitializationSettings, UseHeadMountedDisplayAudioDevice) == 0x000030, "Member 'FAkHololensAdvancedInitializationSettings::UseHeadMountedDisplayAudioDevice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkPluginInfo \ +static_assert(alignof(FAkPluginInfo) == 0x000008, "Wrong alignment on FAkPluginInfo"); \ +static_assert(sizeof(FAkPluginInfo) == 0x000028, "Wrong size on FAkPluginInfo"); \ +static_assert(offsetof(FAkPluginInfo, Name) == 0x000000, "Member 'FAkPluginInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FAkPluginInfo, PluginID) == 0x000010, "Member 'FAkPluginInfo::PluginID' has a wrong offset!"); \ +static_assert(offsetof(FAkPluginInfo, dll) == 0x000018, "Member 'FAkPluginInfo::dll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkMainOutputSettings \ +static_assert(alignof(FAkMainOutputSettings) == 0x000008, "Wrong alignment on FAkMainOutputSettings"); \ +static_assert(sizeof(FAkMainOutputSettings) == 0x000028, "Wrong size on FAkMainOutputSettings"); \ +static_assert(offsetof(FAkMainOutputSettings, AudioDeviceShareset) == 0x000000, "Member 'FAkMainOutputSettings::AudioDeviceShareset' has a wrong offset!"); \ +static_assert(offsetof(FAkMainOutputSettings, DeviceID) == 0x000010, "Member 'FAkMainOutputSettings::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(FAkMainOutputSettings, PanningRule) == 0x000014, "Member 'FAkMainOutputSettings::PanningRule' has a wrong offset!"); \ +static_assert(offsetof(FAkMainOutputSettings, ChannelConfigType) == 0x000018, "Member 'FAkMainOutputSettings::ChannelConfigType' has a wrong offset!"); \ +static_assert(offsetof(FAkMainOutputSettings, ChannelMask) == 0x00001C, "Member 'FAkMainOutputSettings::ChannelMask' has a wrong offset!"); \ +static_assert(offsetof(FAkMainOutputSettings, NumberOfChannels) == 0x000020, "Member 'FAkMainOutputSettings::NumberOfChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkSpatialAudioSettings \ +static_assert(alignof(FAkSpatialAudioSettings) == 0x000004, "Wrong alignment on FAkSpatialAudioSettings"); \ +static_assert(sizeof(FAkSpatialAudioSettings) == 0x000020, "Wrong size on FAkSpatialAudioSettings"); \ +static_assert(offsetof(FAkSpatialAudioSettings, MaxSoundPropagationDepth) == 0x000000, "Member 'FAkSpatialAudioSettings::MaxSoundPropagationDepth' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, MovementThreshold) == 0x000004, "Member 'FAkSpatialAudioSettings::MovementThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, NumberOfPrimaryRays) == 0x000008, "Member 'FAkSpatialAudioSettings::NumberOfPrimaryRays' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, ReflectionOrder) == 0x00000C, "Member 'FAkSpatialAudioSettings::ReflectionOrder' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, MaximumPathLength) == 0x000010, "Member 'FAkSpatialAudioSettings::MaximumPathLength' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, CPULimitPercentage) == 0x000014, "Member 'FAkSpatialAudioSettings::CPULimitPercentage' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, EnableDiffractionOnReflections) == 0x000018, "Member 'FAkSpatialAudioSettings::EnableDiffractionOnReflections' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, EnableGeometricDiffractionAndTransmission) == 0x000019, "Member 'FAkSpatialAudioSettings::EnableGeometricDiffractionAndTransmission' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, CalcEmitterVirtualPosition) == 0x00001A, "Member 'FAkSpatialAudioSettings::CalcEmitterVirtualPosition' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, UseObstruction) == 0x00001B, "Member 'FAkSpatialAudioSettings::UseObstruction' has a wrong offset!"); \ +static_assert(offsetof(FAkSpatialAudioSettings, UseOcclusion) == 0x00001C, "Member 'FAkSpatialAudioSettings::UseOcclusion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkCommunicationSettings \ +static_assert(alignof(FAkCommunicationSettings) == 0x000008, "Wrong alignment on FAkCommunicationSettings"); \ +static_assert(sizeof(FAkCommunicationSettings) == 0x000020, "Wrong size on FAkCommunicationSettings"); \ +static_assert(offsetof(FAkCommunicationSettings, PoolSize) == 0x000000, "Member 'FAkCommunicationSettings::PoolSize' has a wrong offset!"); \ +static_assert(offsetof(FAkCommunicationSettings, DiscoveryBroadcastPort) == 0x000004, "Member 'FAkCommunicationSettings::DiscoveryBroadcastPort' has a wrong offset!"); \ +static_assert(offsetof(FAkCommunicationSettings, CommandPort) == 0x000006, "Member 'FAkCommunicationSettings::CommandPort' has a wrong offset!"); \ +static_assert(offsetof(FAkCommunicationSettings, NotificationPort) == 0x000008, "Member 'FAkCommunicationSettings::NotificationPort' has a wrong offset!"); \ +static_assert(offsetof(FAkCommunicationSettings, NetworkName) == 0x000010, "Member 'FAkCommunicationSettings::NetworkName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkCommunicationSettingsWithSystemInitialization \ +static_assert(alignof(FAkCommunicationSettingsWithSystemInitialization) == 0x000008, "Wrong alignment on FAkCommunicationSettingsWithSystemInitialization"); \ +static_assert(sizeof(FAkCommunicationSettingsWithSystemInitialization) == 0x000028, "Wrong size on FAkCommunicationSettingsWithSystemInitialization"); \ +static_assert(offsetof(FAkCommunicationSettingsWithSystemInitialization, InitializeSystemComms) == 0x000020, "Member 'FAkCommunicationSettingsWithSystemInitialization::InitializeSystemComms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkCommunicationSettingsWithCommSelection \ +static_assert(alignof(FAkCommunicationSettingsWithCommSelection) == 0x000008, "Wrong alignment on FAkCommunicationSettingsWithCommSelection"); \ +static_assert(sizeof(FAkCommunicationSettingsWithCommSelection) == 0x000028, "Wrong size on FAkCommunicationSettingsWithCommSelection"); \ +static_assert(offsetof(FAkCommunicationSettingsWithCommSelection, CommunicationSystem) == 0x000020, "Member 'FAkCommunicationSettingsWithCommSelection::CommunicationSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkCommonInitializationSettings \ +static_assert(alignof(FAkCommonInitializationSettings) == 0x000008, "Wrong alignment on FAkCommonInitializationSettings"); \ +static_assert(sizeof(FAkCommonInitializationSettings) == 0x000060, "Wrong size on FAkCommonInitializationSettings"); \ +static_assert(offsetof(FAkCommonInitializationSettings, MaximumNumberOfMemoryPools) == 0x000000, "Member 'FAkCommonInitializationSettings::MaximumNumberOfMemoryPools' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, MaximumNumberOfPositioningPaths) == 0x000004, "Member 'FAkCommonInitializationSettings::MaximumNumberOfPositioningPaths' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, CommandQueueSize) == 0x000008, "Member 'FAkCommonInitializationSettings::CommandQueueSize' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, SamplesPerFrame) == 0x00000C, "Member 'FAkCommonInitializationSettings::SamplesPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, MainOutputSettings) == 0x000010, "Member 'FAkCommonInitializationSettings::MainOutputSettings' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, StreamingLookAheadRatio) == 0x000038, "Member 'FAkCommonInitializationSettings::StreamingLookAheadRatio' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, NumberOfRefillsInVoice) == 0x00003C, "Member 'FAkCommonInitializationSettings::NumberOfRefillsInVoice' has a wrong offset!"); \ +static_assert(offsetof(FAkCommonInitializationSettings, SpatialAudioSettings) == 0x000040, "Member 'FAkCommonInitializationSettings::SpatialAudioSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkCommonInitializationSettingsWithSampleRate \ +static_assert(alignof(FAkCommonInitializationSettingsWithSampleRate) == 0x000008, "Wrong alignment on FAkCommonInitializationSettingsWithSampleRate"); \ +static_assert(sizeof(FAkCommonInitializationSettingsWithSampleRate) == 0x000068, "Wrong size on FAkCommonInitializationSettingsWithSampleRate"); \ +static_assert(offsetof(FAkCommonInitializationSettingsWithSampleRate, SampleRate) == 0x000060, "Member 'FAkCommonInitializationSettingsWithSampleRate::SampleRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkBoolPropertyToControl \ +static_assert(alignof(FAkBoolPropertyToControl) == 0x000008, "Wrong alignment on FAkBoolPropertyToControl"); \ +static_assert(sizeof(FAkBoolPropertyToControl) == 0x000010, "Wrong size on FAkBoolPropertyToControl"); \ +static_assert(offsetof(FAkBoolPropertyToControl, ItemProperty) == 0x000000, "Member 'FAkBoolPropertyToControl::ItemProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkPropertyToControl \ +static_assert(alignof(FAkPropertyToControl) == 0x000008, "Wrong alignment on FAkPropertyToControl"); \ +static_assert(sizeof(FAkPropertyToControl) == 0x000010, "Wrong size on FAkPropertyToControl"); \ +static_assert(offsetof(FAkPropertyToControl, ItemProperty) == 0x000000, "Member 'FAkPropertyToControl::ItemProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkXSXAdvancedInitializationSettings \ +static_assert(alignof(FAkXSXAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkXSXAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkXSXAdvancedInitializationSettings) == 0x00003C, "Wrong size on FAkXSXAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkXSXAdvancedInitializationSettings, MaximumNumberOfXMAVoices) == 0x000030, "Member 'FAkXSXAdvancedInitializationSettings::MaximumNumberOfXMAVoices' has a wrong offset!"); \ +static_assert(offsetof(FAkXSXAdvancedInitializationSettings, UseHardwareCodecLowLatencyMode) == 0x000032, "Member 'FAkXSXAdvancedInitializationSettings::UseHardwareCodecLowLatencyMode' has a wrong offset!"); \ +static_assert(offsetof(FAkXSXAdvancedInitializationSettings, MaximumNumberOfOpusVoices) == 0x000034, "Member 'FAkXSXAdvancedInitializationSettings::MaximumNumberOfOpusVoices' has a wrong offset!"); \ +static_assert(offsetof(FAkXSXAdvancedInitializationSettings, uMaxSystemAudioObjects) == 0x000038, "Member 'FAkXSXAdvancedInitializationSettings::uMaxSystemAudioObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkPS5AdvancedInitializationSettings \ +static_assert(alignof(FAkPS5AdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkPS5AdvancedInitializationSettings"); \ +static_assert(sizeof(FAkPS5AdvancedInitializationSettings) == 0x000034, "Wrong size on FAkPS5AdvancedInitializationSettings"); \ +static_assert(offsetof(FAkPS5AdvancedInitializationSettings, UseHardwareCodecLowLatencyMode) == 0x000030, "Member 'FAkPS5AdvancedInitializationSettings::UseHardwareCodecLowLatencyMode' has a wrong offset!"); \ +static_assert(offsetof(FAkPS5AdvancedInitializationSettings, bVorbisHwAcceleration) == 0x000031, "Member 'FAkPS5AdvancedInitializationSettings::bVorbisHwAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkReverbDescriptor \ +static_assert(alignof(FAkReverbDescriptor) == 0x000008, "Wrong alignment on FAkReverbDescriptor"); \ +static_assert(sizeof(FAkReverbDescriptor) == 0x000028, "Wrong size on FAkReverbDescriptor"); \ + +#define DUMPER7_ASSERTS_FAkGeometrySurfacePropertiesToMap \ +static_assert(alignof(FAkGeometrySurfacePropertiesToMap) == 0x000008, "Wrong alignment on FAkGeometrySurfacePropertiesToMap"); \ +static_assert(sizeof(FAkGeometrySurfacePropertiesToMap) == 0x000030, "Wrong size on FAkGeometrySurfacePropertiesToMap"); \ +static_assert(offsetof(FAkGeometrySurfacePropertiesToMap, AcousticTexture) == 0x000000, "Member 'FAkGeometrySurfacePropertiesToMap::AcousticTexture' has a wrong offset!"); \ +static_assert(offsetof(FAkGeometrySurfacePropertiesToMap, OcclusionValue) == 0x000028, "Member 'FAkGeometrySurfacePropertiesToMap::OcclusionValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkAcousticTextureParams \ +static_assert(alignof(FAkAcousticTextureParams) == 0x000010, "Wrong alignment on FAkAcousticTextureParams"); \ +static_assert(sizeof(FAkAcousticTextureParams) == 0x000030, "Wrong size on FAkAcousticTextureParams"); \ +static_assert(offsetof(FAkAcousticTextureParams, AbsorptionValues) == 0x000000, "Member 'FAkAcousticTextureParams::AbsorptionValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneTangentDataSerializationHelper \ +static_assert(alignof(FMovieSceneTangentDataSerializationHelper) == 0x000004, "Wrong alignment on FMovieSceneTangentDataSerializationHelper"); \ +static_assert(sizeof(FMovieSceneTangentDataSerializationHelper) == 0x000014, "Wrong size on FMovieSceneTangentDataSerializationHelper"); \ +static_assert(offsetof(FMovieSceneTangentDataSerializationHelper, ArriveTangent) == 0x000000, "Member 'FMovieSceneTangentDataSerializationHelper::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentDataSerializationHelper, LeaveTangent) == 0x000004, "Member 'FMovieSceneTangentDataSerializationHelper::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentDataSerializationHelper, TangentWeightMode) == 0x000008, "Member 'FMovieSceneTangentDataSerializationHelper::TangentWeightMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentDataSerializationHelper, ArriveTangentWeight) == 0x00000C, "Member 'FMovieSceneTangentDataSerializationHelper::ArriveTangentWeight' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneTangentDataSerializationHelper, LeaveTangentWeight) == 0x000010, "Member 'FMovieSceneTangentDataSerializationHelper::LeaveTangentWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWwiseObjectDetails \ +static_assert(alignof(FAkWwiseObjectDetails) == 0x000008, "Wrong alignment on FAkWwiseObjectDetails"); \ +static_assert(sizeof(FAkWwiseObjectDetails) == 0x000030, "Wrong size on FAkWwiseObjectDetails"); \ +static_assert(offsetof(FAkWwiseObjectDetails, ItemName) == 0x000000, "Member 'FAkWwiseObjectDetails::ItemName' has a wrong offset!"); \ +static_assert(offsetof(FAkWwiseObjectDetails, ItemPath) == 0x000010, "Member 'FAkWwiseObjectDetails::ItemPath' has a wrong offset!"); \ +static_assert(offsetof(FAkWwiseObjectDetails, ItemId) == 0x000020, "Member 'FAkWwiseObjectDetails::ItemId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWwiseItemToControl \ +static_assert(alignof(FAkWwiseItemToControl) == 0x000008, "Wrong alignment on FAkWwiseItemToControl"); \ +static_assert(sizeof(FAkWwiseItemToControl) == 0x000040, "Wrong size on FAkWwiseItemToControl"); \ +static_assert(offsetof(FAkWwiseItemToControl, ItemPicked) == 0x000000, "Member 'FAkWwiseItemToControl::ItemPicked' has a wrong offset!"); \ +static_assert(offsetof(FAkWwiseItemToControl, ItemPath) == 0x000030, "Member 'FAkWwiseItemToControl::ItemPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkSurfaceEdgeVerts \ +static_assert(alignof(FAkSurfaceEdgeVerts) == 0x000008, "Wrong alignment on FAkSurfaceEdgeVerts"); \ +static_assert(sizeof(FAkSurfaceEdgeVerts) == 0x000030, "Wrong size on FAkSurfaceEdgeVerts"); \ + +#define DUMPER7_ASSERTS_FAkSurfaceEdgeInfo \ +static_assert(alignof(FAkSurfaceEdgeInfo) == 0x000008, "Wrong alignment on FAkSurfaceEdgeInfo"); \ +static_assert(sizeof(FAkSurfaceEdgeInfo) == 0x000050, "Wrong size on FAkSurfaceEdgeInfo"); \ + +#define DUMPER7_ASSERTS_FAkWaapiFieldNames \ +static_assert(alignof(FAkWaapiFieldNames) == 0x000008, "Wrong alignment on FAkWaapiFieldNames"); \ +static_assert(sizeof(FAkWaapiFieldNames) == 0x000010, "Wrong size on FAkWaapiFieldNames"); \ +static_assert(offsetof(FAkWaapiFieldNames, FieldName) == 0x000000, "Member 'FAkWaapiFieldNames::FieldName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWaapiUri \ +static_assert(alignof(FAkWaapiUri) == 0x000008, "Wrong alignment on FAkWaapiUri"); \ +static_assert(sizeof(FAkWaapiUri) == 0x000010, "Wrong size on FAkWaapiUri"); \ +static_assert(offsetof(FAkWaapiUri, Uri) == 0x000000, "Member 'FAkWaapiUri::Uri' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatValueSerializationHelper \ +static_assert(alignof(FMovieSceneFloatValueSerializationHelper) == 0x000004, "Wrong alignment on FMovieSceneFloatValueSerializationHelper"); \ +static_assert(sizeof(FMovieSceneFloatValueSerializationHelper) == 0x00001C, "Wrong size on FMovieSceneFloatValueSerializationHelper"); \ +static_assert(offsetof(FMovieSceneFloatValueSerializationHelper, Value) == 0x000000, "Member 'FMovieSceneFloatValueSerializationHelper::Value' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValueSerializationHelper, InterpMode) == 0x000004, "Member 'FMovieSceneFloatValueSerializationHelper::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValueSerializationHelper, TangentMode) == 0x000005, "Member 'FMovieSceneFloatValueSerializationHelper::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatValueSerializationHelper, Tangent) == 0x000008, "Member 'FMovieSceneFloatValueSerializationHelper::Tangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWindowsAdvancedInitializationSettings \ +static_assert(alignof(FAkWindowsAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkWindowsAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkWindowsAdvancedInitializationSettings) == 0x000038, "Wrong size on FAkWindowsAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkWindowsAdvancedInitializationSettings, UseHeadMountedDisplayAudioDevice) == 0x000030, "Member 'FAkWindowsAdvancedInitializationSettings::UseHeadMountedDisplayAudioDevice' has a wrong offset!"); \ +static_assert(offsetof(FAkWindowsAdvancedInitializationSettings, MaxSystemAudioObjects) == 0x000034, "Member 'FAkWindowsAdvancedInitializationSettings::MaxSystemAudioObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkWinGDKAdvancedInitializationSettings \ +static_assert(alignof(FAkWinGDKAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkWinGDKAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkWinGDKAdvancedInitializationSettings) == 0x000038, "Wrong size on FAkWinGDKAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkWinGDKAdvancedInitializationSettings, UseHeadMountedDisplayAudioDevice) == 0x000030, "Member 'FAkWinGDKAdvancedInitializationSettings::UseHeadMountedDisplayAudioDevice' has a wrong offset!"); \ +static_assert(offsetof(FAkWinGDKAdvancedInitializationSettings, uMaxSystemAudioObjects) == 0x000034, "Member 'FAkWinGDKAdvancedInitializationSettings::uMaxSystemAudioObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkXboxOneGDKAdvancedInitializationSettings \ +static_assert(alignof(FAkXboxOneGDKAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkXboxOneGDKAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkXboxOneGDKAdvancedInitializationSettings) == 0x000034, "Wrong size on FAkXboxOneGDKAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkXboxOneGDKAdvancedInitializationSettings, MaximumNumberOfXMAVoices) == 0x000030, "Member 'FAkXboxOneGDKAdvancedInitializationSettings::MaximumNumberOfXMAVoices' has a wrong offset!"); \ +static_assert(offsetof(FAkXboxOneGDKAdvancedInitializationSettings, UseHardwareCodecLowLatencyMode) == 0x000032, "Member 'FAkXboxOneGDKAdvancedInitializationSettings::UseHardwareCodecLowLatencyMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkXboxOneGDKApuHeapInitializationSettings \ +static_assert(alignof(FAkXboxOneGDKApuHeapInitializationSettings) == 0x000004, "Wrong alignment on FAkXboxOneGDKApuHeapInitializationSettings"); \ +static_assert(sizeof(FAkXboxOneGDKApuHeapInitializationSettings) == 0x000008, "Wrong size on FAkXboxOneGDKApuHeapInitializationSettings"); \ +static_assert(offsetof(FAkXboxOneGDKApuHeapInitializationSettings, CachedSize) == 0x000000, "Member 'FAkXboxOneGDKApuHeapInitializationSettings::CachedSize' has a wrong offset!"); \ +static_assert(offsetof(FAkXboxOneGDKApuHeapInitializationSettings, NonCachedSize) == 0x000004, "Member 'FAkXboxOneGDKApuHeapInitializationSettings::NonCachedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkXboxOneAdvancedInitializationSettings \ +static_assert(alignof(FAkXboxOneAdvancedInitializationSettings) == 0x000004, "Wrong alignment on FAkXboxOneAdvancedInitializationSettings"); \ +static_assert(sizeof(FAkXboxOneAdvancedInitializationSettings) == 0x000034, "Wrong size on FAkXboxOneAdvancedInitializationSettings"); \ +static_assert(offsetof(FAkXboxOneAdvancedInitializationSettings, MaximumNumberOfXMAVoices) == 0x000030, "Member 'FAkXboxOneAdvancedInitializationSettings::MaximumNumberOfXMAVoices' has a wrong offset!"); \ +static_assert(offsetof(FAkXboxOneAdvancedInitializationSettings, UseHardwareCodecLowLatencyMode) == 0x000032, "Member 'FAkXboxOneAdvancedInitializationSettings::UseHardwareCodecLowLatencyMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAkXSXApuHeapInitializationSettings \ +static_assert(alignof(FAkXSXApuHeapInitializationSettings) == 0x000004, "Wrong alignment on FAkXSXApuHeapInitializationSettings"); \ +static_assert(sizeof(FAkXSXApuHeapInitializationSettings) == 0x000008, "Wrong size on FAkXSXApuHeapInitializationSettings"); \ +static_assert(offsetof(FAkXSXApuHeapInitializationSettings, CachedSize) == 0x000000, "Member 'FAkXSXApuHeapInitializationSettings::CachedSize' has a wrong offset!"); \ +static_assert(offsetof(FAkXSXApuHeapInitializationSettings, NonCachedSize) == 0x000004, "Member 'FAkXSXApuHeapInitializationSettings::NonCachedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneAkAudioEventTemplate \ +static_assert(alignof(FMovieSceneAkAudioEventTemplate) == 0x000008, "Wrong alignment on FMovieSceneAkAudioEventTemplate"); \ +static_assert(sizeof(FMovieSceneAkAudioEventTemplate) == 0x000028, "Wrong size on FMovieSceneAkAudioEventTemplate"); \ +static_assert(offsetof(FMovieSceneAkAudioEventTemplate, Section) == 0x000020, "Member 'FMovieSceneAkAudioEventTemplate::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneFloatChannelSerializationHelper \ +static_assert(alignof(FMovieSceneFloatChannelSerializationHelper) == 0x000008, "Wrong alignment on FMovieSceneFloatChannelSerializationHelper"); \ +static_assert(sizeof(FMovieSceneFloatChannelSerializationHelper) == 0x000030, "Wrong size on FMovieSceneFloatChannelSerializationHelper"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, PreInfinityExtrap) == 0x000000, "Member 'FMovieSceneFloatChannelSerializationHelper::PreInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, PostInfinityExtrap) == 0x000001, "Member 'FMovieSceneFloatChannelSerializationHelper::PostInfinityExtrap' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, Times) == 0x000008, "Member 'FMovieSceneFloatChannelSerializationHelper::Times' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, Values) == 0x000018, "Member 'FMovieSceneFloatChannelSerializationHelper::Values' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, DefaultValue) == 0x000028, "Member 'FMovieSceneFloatChannelSerializationHelper::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneFloatChannelSerializationHelper, bHasDefaultValue) == 0x00002C, "Member 'FMovieSceneFloatChannelSerializationHelper::bHasDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkPortalComponent_GetCurrentState \ +static_assert(alignof(AkPortalComponent_GetCurrentState) == 0x000001, "Wrong alignment on AkPortalComponent_GetCurrentState"); \ +static_assert(sizeof(AkPortalComponent_GetCurrentState) == 0x000001, "Wrong size on AkPortalComponent_GetCurrentState"); \ +static_assert(offsetof(AkPortalComponent_GetCurrentState, ReturnValue) == 0x000000, "Member 'AkPortalComponent_GetCurrentState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkPortalComponent_GetPrimitiveParent \ +static_assert(alignof(AkPortalComponent_GetPrimitiveParent) == 0x000008, "Wrong alignment on AkPortalComponent_GetPrimitiveParent"); \ +static_assert(sizeof(AkPortalComponent_GetPrimitiveParent) == 0x000008, "Wrong size on AkPortalComponent_GetPrimitiveParent"); \ +static_assert(offsetof(AkPortalComponent_GetPrimitiveParent, ReturnValue) == 0x000000, "Member 'AkPortalComponent_GetPrimitiveParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkPortalComponent_PortalPlacementValid \ +static_assert(alignof(AkPortalComponent_PortalPlacementValid) == 0x000001, "Wrong alignment on AkPortalComponent_PortalPlacementValid"); \ +static_assert(sizeof(AkPortalComponent_PortalPlacementValid) == 0x000001, "Wrong size on AkPortalComponent_PortalPlacementValid"); \ +static_assert(offsetof(AkPortalComponent_PortalPlacementValid, ReturnValue) == 0x000000, "Member 'AkPortalComponent_PortalPlacementValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkPortalComponent \ +static_assert(alignof(UAkPortalComponent) == 0x000010, "Wrong alignment on UAkPortalComponent"); \ +static_assert(sizeof(UAkPortalComponent) == 0x000380, "Wrong size on UAkPortalComponent"); \ +static_assert(offsetof(UAkPortalComponent, bDynamic) == 0x0002A0, "Member 'UAkPortalComponent::bDynamic' has a wrong offset!"); \ +static_assert(offsetof(UAkPortalComponent, InitialState) == 0x0002A1, "Member 'UAkPortalComponent::InitialState' has a wrong offset!"); \ +static_assert(offsetof(UAkPortalComponent, ObstructionRefreshInterval) == 0x0002A4, "Member 'UAkPortalComponent::ObstructionRefreshInterval' has a wrong offset!"); \ +static_assert(offsetof(UAkPortalComponent, ObstructionCollisionChannel) == 0x0002A8, "Member 'UAkPortalComponent::ObstructionCollisionChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAcousticPortal_GetCurrentState \ +static_assert(alignof(AkAcousticPortal_GetCurrentState) == 0x000001, "Wrong alignment on AkAcousticPortal_GetCurrentState"); \ +static_assert(sizeof(AkAcousticPortal_GetCurrentState) == 0x000001, "Wrong size on AkAcousticPortal_GetCurrentState"); \ +static_assert(offsetof(AkAcousticPortal_GetCurrentState, ReturnValue) == 0x000000, "Member 'AkAcousticPortal_GetCurrentState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAkAcousticPortal \ +static_assert(alignof(AAkAcousticPortal) == 0x000008, "Wrong alignment on AAkAcousticPortal"); \ +static_assert(sizeof(AAkAcousticPortal) == 0x0002E0, "Wrong size on AAkAcousticPortal"); \ +static_assert(offsetof(AAkAcousticPortal, Portal) == 0x0002D0, "Member 'AAkAcousticPortal::Portal' has a wrong offset!"); \ +static_assert(offsetof(AAkAcousticPortal, InitialState) == 0x0002D8, "Member 'AAkAcousticPortal::InitialState' has a wrong offset!"); \ +static_assert(offsetof(AAkAcousticPortal, bRequiresStateMigration) == 0x0002D9, "Member 'AAkAcousticPortal::bRequiresStateMigration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAudioType \ +static_assert(alignof(UAkAudioType) == 0x000008, "Wrong alignment on UAkAudioType"); \ +static_assert(sizeof(UAkAudioType) == 0x000040, "Wrong size on UAkAudioType"); \ +static_assert(offsetof(UAkAudioType, ShortID) == 0x000028, "Member 'UAkAudioType::ShortID' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioType, UserData) == 0x000030, "Member 'UAkAudioType::UserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAcousticTexture \ +static_assert(alignof(UAkAcousticTexture) == 0x000008, "Wrong alignment on UAkAcousticTexture"); \ +static_assert(sizeof(UAkAcousticTexture) == 0x000040, "Wrong size on UAkAcousticTexture"); \ + +#define DUMPER7_ASSERTS_UAkAcousticTextureSetComponent \ +static_assert(alignof(UAkAcousticTextureSetComponent) == 0x000010, "Wrong alignment on UAkAcousticTextureSetComponent"); \ +static_assert(sizeof(UAkAcousticTextureSetComponent) == 0x0002C0, "Wrong size on UAkAcousticTextureSetComponent"); \ + +#define DUMPER7_ASSERTS_AAkAmbientSound \ +static_assert(alignof(AAkAmbientSound) == 0x000008, "Wrong alignment on AAkAmbientSound"); \ +static_assert(sizeof(AAkAmbientSound) == 0x0002D8, "Wrong size on AAkAmbientSound"); \ +static_assert(offsetof(AAkAmbientSound, AkAudioEvent) == 0x000298, "Member 'AAkAmbientSound::AkAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(AAkAmbientSound, AkComponent) == 0x0002A0, "Member 'AAkAmbientSound::AkComponent' has a wrong offset!"); \ +static_assert(offsetof(AAkAmbientSound, StopWhenOwnerIsDestroyed) == 0x0002A8, "Member 'AAkAmbientSound::StopWhenOwnerIsDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AAkAmbientSound, AutoPost) == 0x0002A9, "Member 'AAkAmbientSound::AutoPost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAndroidInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkAndroidInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkAndroidInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkAndroidInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkAndroidInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkAndroidInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkAndroidInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAndroidInitializationSettings \ +static_assert(alignof(UAkAndroidInitializationSettings) == 0x000008, "Wrong alignment on UAkAndroidInitializationSettings"); \ +static_assert(sizeof(UAkAndroidInitializationSettings) == 0x0000F8, "Wrong size on UAkAndroidInitializationSettings"); \ +static_assert(offsetof(UAkAndroidInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkAndroidInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkAndroidInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkAndroidInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkAndroidInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkAndroidInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkPlatformInfo \ +static_assert(alignof(UAkPlatformInfo) == 0x000008, "Wrong alignment on UAkPlatformInfo"); \ +static_assert(sizeof(UAkPlatformInfo) == 0x000070, "Wrong size on UAkPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkAndroidPlatformInfo \ +static_assert(alignof(UAkAndroidPlatformInfo) == 0x000008, "Wrong alignment on UAkAndroidPlatformInfo"); \ +static_assert(sizeof(UAkAndroidPlatformInfo) == 0x000070, "Wrong size on UAkAndroidPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkAssetBase \ +static_assert(alignof(UAkAssetBase) == 0x000008, "Wrong alignment on UAkAssetBase"); \ +static_assert(sizeof(UAkAssetBase) == 0x000050, "Wrong size on UAkAssetBase"); \ +static_assert(offsetof(UAkAssetBase, PlatformAssetData) == 0x000040, "Member 'UAkAssetBase::PlatformAssetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAssetData \ +static_assert(alignof(UAkAssetData) == 0x000008, "Wrong alignment on UAkAssetData"); \ +static_assert(sizeof(UAkAssetData) == 0x000078, "Wrong size on UAkAssetData"); \ +static_assert(offsetof(UAkAssetData, CachedHash) == 0x000028, "Member 'UAkAssetData::CachedHash' has a wrong offset!"); \ +static_assert(offsetof(UAkAssetData, BankLanguage) == 0x000030, "Member 'UAkAssetData::BankLanguage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAssetDataWithMedia \ +static_assert(alignof(UAkAssetDataWithMedia) == 0x000008, "Wrong alignment on UAkAssetDataWithMedia"); \ +static_assert(sizeof(UAkAssetDataWithMedia) == 0x000088, "Wrong size on UAkAssetDataWithMedia"); \ +static_assert(offsetof(UAkAssetDataWithMedia, MediaList) == 0x000078, "Member 'UAkAssetDataWithMedia::MediaList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAssetPlatformData \ +static_assert(alignof(UAkAssetPlatformData) == 0x000008, "Wrong alignment on UAkAssetPlatformData"); \ +static_assert(sizeof(UAkAssetPlatformData) == 0x000030, "Wrong size on UAkAssetPlatformData"); \ +static_assert(offsetof(UAkAssetPlatformData, CurrentAssetData) == 0x000028, "Member 'UAkAssetPlatformData::CurrentAssetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAssetDataSwitchContainerData \ +static_assert(alignof(UAkAssetDataSwitchContainerData) == 0x000008, "Wrong alignment on UAkAssetDataSwitchContainerData"); \ +static_assert(sizeof(UAkAssetDataSwitchContainerData) == 0x000078, "Wrong size on UAkAssetDataSwitchContainerData"); \ +static_assert(offsetof(UAkAssetDataSwitchContainerData, GroupValue) == 0x000028, "Member 'UAkAssetDataSwitchContainerData::GroupValue' has a wrong offset!"); \ +static_assert(offsetof(UAkAssetDataSwitchContainerData, DefaultGroupValue) == 0x000050, "Member 'UAkAssetDataSwitchContainerData::DefaultGroupValue' has a wrong offset!"); \ +static_assert(offsetof(UAkAssetDataSwitchContainerData, MediaList) == 0x000058, "Member 'UAkAssetDataSwitchContainerData::MediaList' has a wrong offset!"); \ +static_assert(offsetof(UAkAssetDataSwitchContainerData, Children) == 0x000068, "Member 'UAkAssetDataSwitchContainerData::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAssetDataSwitchContainer \ +static_assert(alignof(UAkAssetDataSwitchContainer) == 0x000008, "Wrong alignment on UAkAssetDataSwitchContainer"); \ +static_assert(sizeof(UAkAssetDataSwitchContainer) == 0x0000F0, "Wrong size on UAkAssetDataSwitchContainer"); \ +static_assert(offsetof(UAkAssetDataSwitchContainer, SwitchContainers) == 0x000088, "Member 'UAkAssetDataSwitchContainer::SwitchContainers' has a wrong offset!"); \ +static_assert(offsetof(UAkAssetDataSwitchContainer, DefaultGroupValue) == 0x000098, "Member 'UAkAssetDataSwitchContainer::DefaultGroupValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAudioEventData \ +static_assert(alignof(UAkAudioEventData) == 0x000008, "Wrong alignment on UAkAudioEventData"); \ +static_assert(sizeof(UAkAudioEventData) == 0x000290, "Wrong size on UAkAudioEventData"); \ +static_assert(offsetof(UAkAudioEventData, MaxAttenuationRadius) == 0x0000F0, "Member 'UAkAudioEventData::MaxAttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, IsInfinite) == 0x0000F4, "Member 'UAkAudioEventData::IsInfinite' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, MinimumDuration) == 0x0000F8, "Member 'UAkAudioEventData::MinimumDuration' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, MaximumDuration) == 0x0000FC, "Member 'UAkAudioEventData::MaximumDuration' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, LocalizedMedia) == 0x000100, "Member 'UAkAudioEventData::LocalizedMedia' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, PostedEvents) == 0x000150, "Member 'UAkAudioEventData::PostedEvents' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, UserDefinedSends) == 0x0001A0, "Member 'UAkAudioEventData::UserDefinedSends' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, PostedTriggers) == 0x0001F0, "Member 'UAkAudioEventData::PostedTriggers' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEventData, GroupValues) == 0x000240, "Member 'UAkAudioEventData::GroupValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAudioBank \ +static_assert(alignof(UAkAudioBank) == 0x000008, "Wrong alignment on UAkAudioBank"); \ +static_assert(sizeof(UAkAudioBank) == 0x000118, "Wrong size on UAkAudioBank"); \ +static_assert(offsetof(UAkAudioBank, AutoLoad) == 0x000050, "Member 'UAkAudioBank::AutoLoad' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioBank, LocalizedPlatformAssetDataMap) == 0x000058, "Member 'UAkAudioBank::LocalizedPlatformAssetDataMap' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioBank, LinkedAkEvents) == 0x0000A8, "Member 'UAkAudioBank::LinkedAkEvents' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioBank, CurrentLocalizedPlatformAssetData) == 0x0000F8, "Member 'UAkAudioBank::CurrentLocalizedPlatformAssetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAudioEvent_GetIsInfinite \ +static_assert(alignof(AkAudioEvent_GetIsInfinite) == 0x000001, "Wrong alignment on AkAudioEvent_GetIsInfinite"); \ +static_assert(sizeof(AkAudioEvent_GetIsInfinite) == 0x000001, "Wrong size on AkAudioEvent_GetIsInfinite"); \ +static_assert(offsetof(AkAudioEvent_GetIsInfinite, ReturnValue) == 0x000000, "Member 'AkAudioEvent_GetIsInfinite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAudioEvent_GetMaxAttenuationRadius \ +static_assert(alignof(AkAudioEvent_GetMaxAttenuationRadius) == 0x000004, "Wrong alignment on AkAudioEvent_GetMaxAttenuationRadius"); \ +static_assert(sizeof(AkAudioEvent_GetMaxAttenuationRadius) == 0x000004, "Wrong size on AkAudioEvent_GetMaxAttenuationRadius"); \ +static_assert(offsetof(AkAudioEvent_GetMaxAttenuationRadius, ReturnValue) == 0x000000, "Member 'AkAudioEvent_GetMaxAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAudioEvent_GetMaximumDuration \ +static_assert(alignof(AkAudioEvent_GetMaximumDuration) == 0x000004, "Wrong alignment on AkAudioEvent_GetMaximumDuration"); \ +static_assert(sizeof(AkAudioEvent_GetMaximumDuration) == 0x000004, "Wrong size on AkAudioEvent_GetMaximumDuration"); \ +static_assert(offsetof(AkAudioEvent_GetMaximumDuration, ReturnValue) == 0x000000, "Member 'AkAudioEvent_GetMaximumDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAudioEvent_GetMinimumDuration \ +static_assert(alignof(AkAudioEvent_GetMinimumDuration) == 0x000004, "Wrong alignment on AkAudioEvent_GetMinimumDuration"); \ +static_assert(sizeof(AkAudioEvent_GetMinimumDuration) == 0x000004, "Wrong size on AkAudioEvent_GetMinimumDuration"); \ +static_assert(offsetof(AkAudioEvent_GetMinimumDuration, ReturnValue) == 0x000000, "Member 'AkAudioEvent_GetMinimumDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAudioEvent \ +static_assert(alignof(UAkAudioEvent) == 0x000008, "Wrong alignment on UAkAudioEvent"); \ +static_assert(sizeof(UAkAudioEvent) == 0x0000D0, "Wrong size on UAkAudioEvent"); \ +static_assert(offsetof(UAkAudioEvent, LocalizedPlatformAssetDataMap) == 0x000050, "Member 'UAkAudioEvent::LocalizedPlatformAssetDataMap' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, RequiredBank) == 0x0000A0, "Member 'UAkAudioEvent::RequiredBank' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, CurrentLocalizedPlatformData) == 0x0000B0, "Member 'UAkAudioEvent::CurrentLocalizedPlatformData' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, MaxAttenuationRadius) == 0x0000B8, "Member 'UAkAudioEvent::MaxAttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, IsInfinite) == 0x0000BC, "Member 'UAkAudioEvent::IsInfinite' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, MinimumDuration) == 0x0000C0, "Member 'UAkAudioEvent::MinimumDuration' has a wrong offset!"); \ +static_assert(offsetof(UAkAudioEvent, MaximumDuration) == 0x0000C4, "Member 'UAkAudioEvent::MaximumDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_PostAkEvent \ +static_assert(alignof(AkGameObject_PostAkEvent) == 0x000008, "Wrong alignment on AkGameObject_PostAkEvent"); \ +static_assert(sizeof(AkGameObject_PostAkEvent) == 0x000048, "Wrong size on AkGameObject_PostAkEvent"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, AkEvent) == 0x000000, "Member 'AkGameObject_PostAkEvent::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, CallbackMask) == 0x000008, "Member 'AkGameObject_PostAkEvent::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, PostEventCallback) == 0x00000C, "Member 'AkGameObject_PostAkEvent::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, ExternalSources) == 0x000020, "Member 'AkGameObject_PostAkEvent::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, in_EventName) == 0x000030, "Member 'AkGameObject_PostAkEvent::in_EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEvent, ReturnValue) == 0x000040, "Member 'AkGameObject_PostAkEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_PostAkEventAsync \ +static_assert(alignof(AkGameObject_PostAkEventAsync) == 0x000008, "Wrong alignment on AkGameObject_PostAkEventAsync"); \ +static_assert(sizeof(AkGameObject_PostAkEventAsync) == 0x000050, "Wrong size on AkGameObject_PostAkEventAsync"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, WorldContextObject) == 0x000000, "Member 'AkGameObject_PostAkEventAsync::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, AkEvent) == 0x000008, "Member 'AkGameObject_PostAkEventAsync::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, PlayingID) == 0x000010, "Member 'AkGameObject_PostAkEventAsync::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, CallbackMask) == 0x000014, "Member 'AkGameObject_PostAkEventAsync::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, PostEventCallback) == 0x000018, "Member 'AkGameObject_PostAkEventAsync::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, ExternalSources) == 0x000028, "Member 'AkGameObject_PostAkEventAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAkEventAsync, LatentInfo) == 0x000038, "Member 'AkGameObject_PostAkEventAsync::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_PostAssociatedAkEvent \ +static_assert(alignof(AkGameObject_PostAssociatedAkEvent) == 0x000008, "Wrong alignment on AkGameObject_PostAssociatedAkEvent"); \ +static_assert(sizeof(AkGameObject_PostAssociatedAkEvent) == 0x000030, "Wrong size on AkGameObject_PostAssociatedAkEvent"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEvent, CallbackMask) == 0x000000, "Member 'AkGameObject_PostAssociatedAkEvent::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEvent, PostEventCallback) == 0x000004, "Member 'AkGameObject_PostAssociatedAkEvent::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEvent, ExternalSources) == 0x000018, "Member 'AkGameObject_PostAssociatedAkEvent::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEvent, ReturnValue) == 0x000028, "Member 'AkGameObject_PostAssociatedAkEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_PostAssociatedAkEventAsync \ +static_assert(alignof(AkGameObject_PostAssociatedAkEventAsync) == 0x000008, "Wrong alignment on AkGameObject_PostAssociatedAkEventAsync"); \ +static_assert(sizeof(AkGameObject_PostAssociatedAkEventAsync) == 0x000050, "Wrong size on AkGameObject_PostAssociatedAkEventAsync"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, WorldContextObject) == 0x000000, "Member 'AkGameObject_PostAssociatedAkEventAsync::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, CallbackMask) == 0x000008, "Member 'AkGameObject_PostAssociatedAkEventAsync::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, PostEventCallback) == 0x00000C, "Member 'AkGameObject_PostAssociatedAkEventAsync::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, ExternalSources) == 0x000020, "Member 'AkGameObject_PostAssociatedAkEventAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, LatentInfo) == 0x000030, "Member 'AkGameObject_PostAssociatedAkEventAsync::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_PostAssociatedAkEventAsync, PlayingID) == 0x000048, "Member 'AkGameObject_PostAssociatedAkEventAsync::PlayingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_GetRTPCValue \ +static_assert(alignof(AkGameObject_GetRTPCValue) == 0x000008, "Wrong alignment on AkGameObject_GetRTPCValue"); \ +static_assert(sizeof(AkGameObject_GetRTPCValue) == 0x000030, "Wrong size on AkGameObject_GetRTPCValue"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, RTPCValue) == 0x000000, "Member 'AkGameObject_GetRTPCValue::RTPCValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, InputValueType) == 0x000008, "Member 'AkGameObject_GetRTPCValue::InputValueType' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, Value) == 0x00000C, "Member 'AkGameObject_GetRTPCValue::Value' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, OutputValueType) == 0x000010, "Member 'AkGameObject_GetRTPCValue::OutputValueType' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, RTPC) == 0x000018, "Member 'AkGameObject_GetRTPCValue::RTPC' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_GetRTPCValue, PlayingID) == 0x000028, "Member 'AkGameObject_GetRTPCValue::PlayingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameObject_SetRTPCValue \ +static_assert(alignof(AkGameObject_SetRTPCValue) == 0x000008, "Wrong alignment on AkGameObject_SetRTPCValue"); \ +static_assert(sizeof(AkGameObject_SetRTPCValue) == 0x000020, "Wrong size on AkGameObject_SetRTPCValue"); \ +static_assert(offsetof(AkGameObject_SetRTPCValue, RTPCValue) == 0x000000, "Member 'AkGameObject_SetRTPCValue::RTPCValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_SetRTPCValue, Value) == 0x000008, "Member 'AkGameObject_SetRTPCValue::Value' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_SetRTPCValue, InterpolationTimeMs) == 0x00000C, "Member 'AkGameObject_SetRTPCValue::InterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(AkGameObject_SetRTPCValue, RTPC) == 0x000010, "Member 'AkGameObject_SetRTPCValue::RTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkGameObject \ +static_assert(alignof(UAkGameObject) == 0x000010, "Wrong alignment on UAkGameObject"); \ +static_assert(sizeof(UAkGameObject) == 0x0002C0, "Wrong size on UAkGameObject"); \ +static_assert(offsetof(UAkGameObject, AkAudioEvent) == 0x0002A0, "Member 'UAkGameObject::AkAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(UAkGameObject, EventName) == 0x0002A8, "Member 'UAkGameObject::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostAkEventAndWaitForEnd \ +static_assert(alignof(AkComponent_PostAkEventAndWaitForEnd) == 0x000008, "Wrong alignment on AkComponent_PostAkEventAndWaitForEnd"); \ +static_assert(sizeof(AkComponent_PostAkEventAndWaitForEnd) == 0x000048, "Wrong size on AkComponent_PostAkEventAndWaitForEnd"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEnd, AkEvent) == 0x000000, "Member 'AkComponent_PostAkEventAndWaitForEnd::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEnd, in_EventName) == 0x000008, "Member 'AkComponent_PostAkEventAndWaitForEnd::in_EventName' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEnd, ExternalSources) == 0x000018, "Member 'AkComponent_PostAkEventAndWaitForEnd::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEnd, LatentInfo) == 0x000028, "Member 'AkComponent_PostAkEventAndWaitForEnd::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEnd, ReturnValue) == 0x000040, "Member 'AkComponent_PostAkEventAndWaitForEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostAkEventAndWaitForEndAsync \ +static_assert(alignof(AkComponent_PostAkEventAndWaitForEndAsync) == 0x000008, "Wrong alignment on AkComponent_PostAkEventAndWaitForEndAsync"); \ +static_assert(sizeof(AkComponent_PostAkEventAndWaitForEndAsync) == 0x000038, "Wrong size on AkComponent_PostAkEventAndWaitForEndAsync"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEndAsync, AkEvent) == 0x000000, "Member 'AkComponent_PostAkEventAndWaitForEndAsync::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEndAsync, PlayingID) == 0x000008, "Member 'AkComponent_PostAkEventAndWaitForEndAsync::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEndAsync, ExternalSources) == 0x000010, "Member 'AkComponent_PostAkEventAndWaitForEndAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventAndWaitForEndAsync, LatentInfo) == 0x000020, "Member 'AkComponent_PostAkEventAndWaitForEndAsync::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostAkEventByName \ +static_assert(alignof(AkComponent_PostAkEventByName) == 0x000008, "Wrong alignment on AkComponent_PostAkEventByName"); \ +static_assert(sizeof(AkComponent_PostAkEventByName) == 0x000018, "Wrong size on AkComponent_PostAkEventByName"); \ +static_assert(offsetof(AkComponent_PostAkEventByName, in_EventName) == 0x000000, "Member 'AkComponent_PostAkEventByName::in_EventName' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAkEventByName, ReturnValue) == 0x000010, "Member 'AkComponent_PostAkEventByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostAssociatedAkEventAndWaitForEnd \ +static_assert(alignof(AkComponent_PostAssociatedAkEventAndWaitForEnd) == 0x000008, "Wrong alignment on AkComponent_PostAssociatedAkEventAndWaitForEnd"); \ +static_assert(sizeof(AkComponent_PostAssociatedAkEventAndWaitForEnd) == 0x000030, "Wrong size on AkComponent_PostAssociatedAkEventAndWaitForEnd"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEnd, ExternalSources) == 0x000000, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEnd::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEnd, LatentInfo) == 0x000010, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEnd::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEnd, ReturnValue) == 0x000028, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostAssociatedAkEventAndWaitForEndAsync \ +static_assert(alignof(AkComponent_PostAssociatedAkEventAndWaitForEndAsync) == 0x000008, "Wrong alignment on AkComponent_PostAssociatedAkEventAndWaitForEndAsync"); \ +static_assert(sizeof(AkComponent_PostAssociatedAkEventAndWaitForEndAsync) == 0x000030, "Wrong size on AkComponent_PostAssociatedAkEventAndWaitForEndAsync"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEndAsync, PlayingID) == 0x000000, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEndAsync::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEndAsync, ExternalSources) == 0x000008, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEndAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostAssociatedAkEventAndWaitForEndAsync, LatentInfo) == 0x000018, "Member 'AkComponent_PostAssociatedAkEventAndWaitForEndAsync::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_PostTrigger \ +static_assert(alignof(AkComponent_PostTrigger) == 0x000008, "Wrong alignment on AkComponent_PostTrigger"); \ +static_assert(sizeof(AkComponent_PostTrigger) == 0x000018, "Wrong size on AkComponent_PostTrigger"); \ +static_assert(offsetof(AkComponent_PostTrigger, TriggerValue) == 0x000000, "Member 'AkComponent_PostTrigger::TriggerValue' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_PostTrigger, Trigger) == 0x000008, "Member 'AkComponent_PostTrigger::Trigger' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetAttenuationScalingFactor \ +static_assert(alignof(AkComponent_SetAttenuationScalingFactor) == 0x000004, "Wrong alignment on AkComponent_SetAttenuationScalingFactor"); \ +static_assert(sizeof(AkComponent_SetAttenuationScalingFactor) == 0x000004, "Wrong size on AkComponent_SetAttenuationScalingFactor"); \ +static_assert(offsetof(AkComponent_SetAttenuationScalingFactor, Value) == 0x000000, "Member 'AkComponent_SetAttenuationScalingFactor::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetEarlyReflectionsAuxBus \ +static_assert(alignof(AkComponent_SetEarlyReflectionsAuxBus) == 0x000008, "Wrong alignment on AkComponent_SetEarlyReflectionsAuxBus"); \ +static_assert(sizeof(AkComponent_SetEarlyReflectionsAuxBus) == 0x000010, "Wrong size on AkComponent_SetEarlyReflectionsAuxBus"); \ +static_assert(offsetof(AkComponent_SetEarlyReflectionsAuxBus, AuxBusName) == 0x000000, "Member 'AkComponent_SetEarlyReflectionsAuxBus::AuxBusName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetEarlyReflectionsVolume \ +static_assert(alignof(AkComponent_SetEarlyReflectionsVolume) == 0x000004, "Wrong alignment on AkComponent_SetEarlyReflectionsVolume"); \ +static_assert(sizeof(AkComponent_SetEarlyReflectionsVolume) == 0x000004, "Wrong size on AkComponent_SetEarlyReflectionsVolume"); \ +static_assert(offsetof(AkComponent_SetEarlyReflectionsVolume, SendVolume) == 0x000000, "Member 'AkComponent_SetEarlyReflectionsVolume::SendVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetGameObjectRadius \ +static_assert(alignof(AkComponent_SetGameObjectRadius) == 0x000004, "Wrong alignment on AkComponent_SetGameObjectRadius"); \ +static_assert(sizeof(AkComponent_SetGameObjectRadius) == 0x000008, "Wrong size on AkComponent_SetGameObjectRadius"); \ +static_assert(offsetof(AkComponent_SetGameObjectRadius, in_outerRadius) == 0x000000, "Member 'AkComponent_SetGameObjectRadius::in_outerRadius' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_SetGameObjectRadius, in_innerRadius) == 0x000004, "Member 'AkComponent_SetGameObjectRadius::in_innerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetListeners \ +static_assert(alignof(AkComponent_SetListeners) == 0x000008, "Wrong alignment on AkComponent_SetListeners"); \ +static_assert(sizeof(AkComponent_SetListeners) == 0x000010, "Wrong size on AkComponent_SetListeners"); \ +static_assert(offsetof(AkComponent_SetListeners, Listeners) == 0x000000, "Member 'AkComponent_SetListeners::Listeners' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetOutputBusVolume \ +static_assert(alignof(AkComponent_SetOutputBusVolume) == 0x000004, "Wrong alignment on AkComponent_SetOutputBusVolume"); \ +static_assert(sizeof(AkComponent_SetOutputBusVolume) == 0x000004, "Wrong size on AkComponent_SetOutputBusVolume"); \ +static_assert(offsetof(AkComponent_SetOutputBusVolume, BusVolume) == 0x000000, "Member 'AkComponent_SetOutputBusVolume::BusVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetStopWhenOwnerDestroyed \ +static_assert(alignof(AkComponent_SetStopWhenOwnerDestroyed) == 0x000001, "Wrong alignment on AkComponent_SetStopWhenOwnerDestroyed"); \ +static_assert(sizeof(AkComponent_SetStopWhenOwnerDestroyed) == 0x000001, "Wrong size on AkComponent_SetStopWhenOwnerDestroyed"); \ +static_assert(offsetof(AkComponent_SetStopWhenOwnerDestroyed, bStopWhenOwnerDestroyed) == 0x000000, "Member 'AkComponent_SetStopWhenOwnerDestroyed::bStopWhenOwnerDestroyed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_SetSwitch \ +static_assert(alignof(AkComponent_SetSwitch) == 0x000008, "Wrong alignment on AkComponent_SetSwitch"); \ +static_assert(sizeof(AkComponent_SetSwitch) == 0x000028, "Wrong size on AkComponent_SetSwitch"); \ +static_assert(offsetof(AkComponent_SetSwitch, SwitchValue) == 0x000000, "Member 'AkComponent_SetSwitch::SwitchValue' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_SetSwitch, SwitchGroup) == 0x000008, "Member 'AkComponent_SetSwitch::SwitchGroup' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_SetSwitch, SwitchState) == 0x000018, "Member 'AkComponent_SetSwitch::SwitchState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_UseEarlyReflections \ +static_assert(alignof(AkComponent_UseEarlyReflections) == 0x000008, "Wrong alignment on AkComponent_UseEarlyReflections"); \ +static_assert(sizeof(AkComponent_UseEarlyReflections) == 0x000028, "Wrong size on AkComponent_UseEarlyReflections"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, AuxBus) == 0x000000, "Member 'AkComponent_UseEarlyReflections::AuxBus' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, Order) == 0x000008, "Member 'AkComponent_UseEarlyReflections::Order' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, BusSendGain) == 0x00000C, "Member 'AkComponent_UseEarlyReflections::BusSendGain' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, MaxPathLength) == 0x000010, "Member 'AkComponent_UseEarlyReflections::MaxPathLength' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, SpotReflectors) == 0x000014, "Member 'AkComponent_UseEarlyReflections::SpotReflectors' has a wrong offset!"); \ +static_assert(offsetof(AkComponent_UseEarlyReflections, AuxBusName) == 0x000018, "Member 'AkComponent_UseEarlyReflections::AuxBusName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_UseReverbVolumes \ +static_assert(alignof(AkComponent_UseReverbVolumes) == 0x000001, "Wrong alignment on AkComponent_UseReverbVolumes"); \ +static_assert(sizeof(AkComponent_UseReverbVolumes) == 0x000001, "Wrong size on AkComponent_UseReverbVolumes"); \ +static_assert(offsetof(AkComponent_UseReverbVolumes, inUseReverbVolumes) == 0x000000, "Member 'AkComponent_UseReverbVolumes::inUseReverbVolumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkComponent_GetAttenuationRadius \ +static_assert(alignof(AkComponent_GetAttenuationRadius) == 0x000004, "Wrong alignment on AkComponent_GetAttenuationRadius"); \ +static_assert(sizeof(AkComponent_GetAttenuationRadius) == 0x000004, "Wrong size on AkComponent_GetAttenuationRadius"); \ +static_assert(offsetof(AkComponent_GetAttenuationRadius, ReturnValue) == 0x000000, "Member 'AkComponent_GetAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkComponent \ +static_assert(alignof(UAkComponent) == 0x000010, "Wrong alignment on UAkComponent"); \ +static_assert(sizeof(UAkComponent) == 0x000490, "Wrong size on UAkComponent"); \ +static_assert(offsetof(UAkComponent, bUseSpatialAudio) == 0x0002C0, "Member 'UAkComponent::bUseSpatialAudio' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, OcclusionCollisionChannel) == 0x0002C8, "Member 'UAkComponent::OcclusionCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EnableSpotReflectors) == 0x0002C9, "Member 'UAkComponent::EnableSpotReflectors' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, OuterRadius) == 0x0002CC, "Member 'UAkComponent::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, InnerRadius) == 0x0002D0, "Member 'UAkComponent::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EarlyReflectionAuxBus) == 0x0002D8, "Member 'UAkComponent::EarlyReflectionAuxBus' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EarlyReflectionAuxBusName) == 0x0002E0, "Member 'UAkComponent::EarlyReflectionAuxBusName' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EarlyReflectionOrder) == 0x0002F0, "Member 'UAkComponent::EarlyReflectionOrder' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EarlyReflectionBusSendGain) == 0x0002F4, "Member 'UAkComponent::EarlyReflectionBusSendGain' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, EarlyReflectionMaxPathLength) == 0x0002F8, "Member 'UAkComponent::EarlyReflectionMaxPathLength' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, roomReverbAuxBusGain) == 0x0002FC, "Member 'UAkComponent::roomReverbAuxBusGain' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, diffractionMaxEdges) == 0x000300, "Member 'UAkComponent::diffractionMaxEdges' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, diffractionMaxPaths) == 0x000304, "Member 'UAkComponent::diffractionMaxPaths' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, diffractionMaxPathLength) == 0x000308, "Member 'UAkComponent::diffractionMaxPathLength' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, DrawFirstOrderReflections) == 0x00030C, "Member 'UAkComponent::DrawFirstOrderReflections' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, DrawSecondOrderReflections) == 0x00030D, "Member 'UAkComponent::DrawSecondOrderReflections' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, DrawHigherOrderReflections) == 0x00030E, "Member 'UAkComponent::DrawHigherOrderReflections' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, DrawDiffraction) == 0x00030F, "Member 'UAkComponent::DrawDiffraction' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, StopWhenOwnerDestroyed) == 0x000310, "Member 'UAkComponent::StopWhenOwnerDestroyed' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, AttenuationScalingFactor) == 0x000314, "Member 'UAkComponent::AttenuationScalingFactor' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, OcclusionRefreshInterval) == 0x000318, "Member 'UAkComponent::OcclusionRefreshInterval' has a wrong offset!"); \ +static_assert(offsetof(UAkComponent, bUseReverbVolumes) == 0x00031C, "Member 'UAkComponent::bUseReverbVolumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkAudioInputComponent_PostAssociatedAudioInputEvent \ +static_assert(alignof(AkAudioInputComponent_PostAssociatedAudioInputEvent) == 0x000004, "Wrong alignment on AkAudioInputComponent_PostAssociatedAudioInputEvent"); \ +static_assert(sizeof(AkAudioInputComponent_PostAssociatedAudioInputEvent) == 0x000004, "Wrong size on AkAudioInputComponent_PostAssociatedAudioInputEvent"); \ +static_assert(offsetof(AkAudioInputComponent_PostAssociatedAudioInputEvent, ReturnValue) == 0x000000, "Member 'AkAudioInputComponent_PostAssociatedAudioInputEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkAudioInputComponent \ +static_assert(alignof(UAkAudioInputComponent) == 0x000010, "Wrong alignment on UAkAudioInputComponent"); \ +static_assert(sizeof(UAkAudioInputComponent) == 0x0004C0, "Wrong size on UAkAudioInputComponent"); \ + +#define DUMPER7_ASSERTS_UAkAuxBus \ +static_assert(alignof(UAkAuxBus) == 0x000008, "Wrong alignment on UAkAuxBus"); \ +static_assert(sizeof(UAkAuxBus) == 0x000058, "Wrong size on UAkAuxBus"); \ +static_assert(offsetof(UAkAuxBus, RequiredBank) == 0x000050, "Member 'UAkAuxBus::RequiredBank' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_SetAkBoolProperty \ +static_assert(alignof(AkCheckBox_SetAkBoolProperty) == 0x000008, "Wrong alignment on AkCheckBox_SetAkBoolProperty"); \ +static_assert(sizeof(AkCheckBox_SetAkBoolProperty) == 0x000010, "Wrong size on AkCheckBox_SetAkBoolProperty"); \ +static_assert(offsetof(AkCheckBox_SetAkBoolProperty, ItemProperty) == 0x000000, "Member 'AkCheckBox_SetAkBoolProperty::ItemProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_SetAkItemId \ +static_assert(alignof(AkCheckBox_SetAkItemId) == 0x000004, "Wrong alignment on AkCheckBox_SetAkItemId"); \ +static_assert(sizeof(AkCheckBox_SetAkItemId) == 0x000010, "Wrong size on AkCheckBox_SetAkItemId"); \ +static_assert(offsetof(AkCheckBox_SetAkItemId, ItemId) == 0x000000, "Member 'AkCheckBox_SetAkItemId::ItemId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_SetCheckedState \ +static_assert(alignof(AkCheckBox_SetCheckedState) == 0x000001, "Wrong alignment on AkCheckBox_SetCheckedState"); \ +static_assert(sizeof(AkCheckBox_SetCheckedState) == 0x000001, "Wrong size on AkCheckBox_SetCheckedState"); \ +static_assert(offsetof(AkCheckBox_SetCheckedState, InCheckedState) == 0x000000, "Member 'AkCheckBox_SetCheckedState::InCheckedState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_SetIsChecked \ +static_assert(alignof(AkCheckBox_SetIsChecked) == 0x000001, "Wrong alignment on AkCheckBox_SetIsChecked"); \ +static_assert(sizeof(AkCheckBox_SetIsChecked) == 0x000001, "Wrong size on AkCheckBox_SetIsChecked"); \ +static_assert(offsetof(AkCheckBox_SetIsChecked, InIsChecked) == 0x000000, "Member 'AkCheckBox_SetIsChecked::InIsChecked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_GetAkItemId \ +static_assert(alignof(AkCheckBox_GetAkItemId) == 0x000004, "Wrong alignment on AkCheckBox_GetAkItemId"); \ +static_assert(sizeof(AkCheckBox_GetAkItemId) == 0x000010, "Wrong size on AkCheckBox_GetAkItemId"); \ +static_assert(offsetof(AkCheckBox_GetAkItemId, ReturnValue) == 0x000000, "Member 'AkCheckBox_GetAkItemId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_GetAkProperty \ +static_assert(alignof(AkCheckBox_GetAkProperty) == 0x000008, "Wrong alignment on AkCheckBox_GetAkProperty"); \ +static_assert(sizeof(AkCheckBox_GetAkProperty) == 0x000010, "Wrong size on AkCheckBox_GetAkProperty"); \ +static_assert(offsetof(AkCheckBox_GetAkProperty, ReturnValue) == 0x000000, "Member 'AkCheckBox_GetAkProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_GetCheckedState \ +static_assert(alignof(AkCheckBox_GetCheckedState) == 0x000001, "Wrong alignment on AkCheckBox_GetCheckedState"); \ +static_assert(sizeof(AkCheckBox_GetCheckedState) == 0x000001, "Wrong size on AkCheckBox_GetCheckedState"); \ +static_assert(offsetof(AkCheckBox_GetCheckedState, ReturnValue) == 0x000000, "Member 'AkCheckBox_GetCheckedState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_IsChecked \ +static_assert(alignof(AkCheckBox_IsChecked) == 0x000001, "Wrong alignment on AkCheckBox_IsChecked"); \ +static_assert(sizeof(AkCheckBox_IsChecked) == 0x000001, "Wrong size on AkCheckBox_IsChecked"); \ +static_assert(offsetof(AkCheckBox_IsChecked, ReturnValue) == 0x000000, "Member 'AkCheckBox_IsChecked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkCheckBox_IsPressed \ +static_assert(alignof(AkCheckBox_IsPressed) == 0x000001, "Wrong alignment on AkCheckBox_IsPressed"); \ +static_assert(sizeof(AkCheckBox_IsPressed) == 0x000001, "Wrong size on AkCheckBox_IsPressed"); \ +static_assert(offsetof(AkCheckBox_IsPressed, ReturnValue) == 0x000000, "Member 'AkCheckBox_IsPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkCheckBox \ +static_assert(alignof(UAkCheckBox) == 0x000010, "Wrong alignment on UAkCheckBox"); \ +static_assert(sizeof(UAkCheckBox) == 0x000FF0, "Wrong size on UAkCheckBox"); \ +static_assert(offsetof(UAkCheckBox, CheckedState) == 0x000420, "Member 'UAkCheckBox::CheckedState' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, CheckedStateDelegate) == 0x000424, "Member 'UAkCheckBox::CheckedStateDelegate' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, WidgetStyle) == 0x000440, "Member 'UAkCheckBox::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, HorizontalAlignment) == 0x000F10, "Member 'UAkCheckBox::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, IsFocusable) == 0x000F11, "Member 'UAkCheckBox::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, ThePropertyToControl) == 0x000F18, "Member 'UAkCheckBox::ThePropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, ItemToControl) == 0x000F28, "Member 'UAkCheckBox::ItemToControl' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, AkOnCheckStateChanged) == 0x000F68, "Member 'UAkCheckBox::AkOnCheckStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, OnItemDropped) == 0x000F78, "Member 'UAkCheckBox::OnItemDropped' has a wrong offset!"); \ +static_assert(offsetof(UAkCheckBox, OnPropertyDropped) == 0x000F88, "Member 'UAkCheckBox::OnPropertyDropped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawPortalComponent \ +static_assert(alignof(UDrawPortalComponent) == 0x000010, "Wrong alignment on UDrawPortalComponent"); \ +static_assert(sizeof(UDrawPortalComponent) == 0x000570, "Wrong size on UDrawPortalComponent"); \ + +#define DUMPER7_ASSERTS_UDrawRoomComponent \ +static_assert(alignof(UDrawRoomComponent) == 0x000010, "Wrong alignment on UDrawRoomComponent"); \ +static_assert(sizeof(UDrawRoomComponent) == 0x000570, "Wrong size on UDrawRoomComponent"); \ + +#define DUMPER7_ASSERTS_UAkFolder \ +static_assert(alignof(UAkFolder) == 0x000008, "Wrong alignment on UAkFolder"); \ +static_assert(sizeof(UAkFolder) == 0x0000B8, "Wrong size on UAkFolder"); \ +static_assert(offsetof(UAkFolder, UnrealFolderPath) == 0x000040, "Member 'UAkFolder::UnrealFolderPath' has a wrong offset!"); \ +static_assert(offsetof(UAkFolder, WwiseFolderPath) == 0x000050, "Member 'UAkFolder::WwiseFolderPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_AddOutputCaptureMarker \ +static_assert(alignof(AkGameplayStatics_AddOutputCaptureMarker) == 0x000008, "Wrong alignment on AkGameplayStatics_AddOutputCaptureMarker"); \ +static_assert(sizeof(AkGameplayStatics_AddOutputCaptureMarker) == 0x000010, "Wrong size on AkGameplayStatics_AddOutputCaptureMarker"); \ +static_assert(offsetof(AkGameplayStatics_AddOutputCaptureMarker, MarkerText) == 0x000000, "Member 'AkGameplayStatics_AddOutputCaptureMarker::MarkerText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_CancelEventCallback \ +static_assert(alignof(AkGameplayStatics_CancelEventCallback) == 0x000004, "Wrong alignment on AkGameplayStatics_CancelEventCallback"); \ +static_assert(sizeof(AkGameplayStatics_CancelEventCallback) == 0x000010, "Wrong size on AkGameplayStatics_CancelEventCallback"); \ +static_assert(offsetof(AkGameplayStatics_CancelEventCallback, PostEventCallback) == 0x000000, "Member 'AkGameplayStatics_CancelEventCallback::PostEventCallback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_ExecuteActionOnEvent \ +static_assert(alignof(AkGameplayStatics_ExecuteActionOnEvent) == 0x000008, "Wrong alignment on AkGameplayStatics_ExecuteActionOnEvent"); \ +static_assert(sizeof(AkGameplayStatics_ExecuteActionOnEvent) == 0x000028, "Wrong size on AkGameplayStatics_ExecuteActionOnEvent"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, AkEvent) == 0x000000, "Member 'AkGameplayStatics_ExecuteActionOnEvent::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, ActionType) == 0x000008, "Member 'AkGameplayStatics_ExecuteActionOnEvent::ActionType' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, Actor) == 0x000010, "Member 'AkGameplayStatics_ExecuteActionOnEvent::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, TransitionDuration) == 0x000018, "Member 'AkGameplayStatics_ExecuteActionOnEvent::TransitionDuration' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, FadeCurve) == 0x00001C, "Member 'AkGameplayStatics_ExecuteActionOnEvent::FadeCurve' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnEvent, PlayingID) == 0x000020, "Member 'AkGameplayStatics_ExecuteActionOnEvent::PlayingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_ExecuteActionOnPlayingID \ +static_assert(alignof(AkGameplayStatics_ExecuteActionOnPlayingID) == 0x000004, "Wrong alignment on AkGameplayStatics_ExecuteActionOnPlayingID"); \ +static_assert(sizeof(AkGameplayStatics_ExecuteActionOnPlayingID) == 0x000010, "Wrong size on AkGameplayStatics_ExecuteActionOnPlayingID"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnPlayingID, ActionType) == 0x000000, "Member 'AkGameplayStatics_ExecuteActionOnPlayingID::ActionType' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnPlayingID, PlayingID) == 0x000004, "Member 'AkGameplayStatics_ExecuteActionOnPlayingID::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnPlayingID, TransitionDuration) == 0x000008, "Member 'AkGameplayStatics_ExecuteActionOnPlayingID::TransitionDuration' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ExecuteActionOnPlayingID, FadeCurve) == 0x00000C, "Member 'AkGameplayStatics_ExecuteActionOnPlayingID::FadeCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetAkAudioTypeUserData \ +static_assert(alignof(AkGameplayStatics_GetAkAudioTypeUserData) == 0x000008, "Wrong alignment on AkGameplayStatics_GetAkAudioTypeUserData"); \ +static_assert(sizeof(AkGameplayStatics_GetAkAudioTypeUserData) == 0x000018, "Wrong size on AkGameplayStatics_GetAkAudioTypeUserData"); \ +static_assert(offsetof(AkGameplayStatics_GetAkAudioTypeUserData, Instance) == 0x000000, "Member 'AkGameplayStatics_GetAkAudioTypeUserData::Instance' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkAudioTypeUserData, Type) == 0x000008, "Member 'AkGameplayStatics_GetAkAudioTypeUserData::Type' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkAudioTypeUserData, ReturnValue) == 0x000010, "Member 'AkGameplayStatics_GetAkAudioTypeUserData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetAkComponent \ +static_assert(alignof(AkGameplayStatics_GetAkComponent) == 0x000008, "Wrong alignment on AkGameplayStatics_GetAkComponent"); \ +static_assert(sizeof(AkGameplayStatics_GetAkComponent) == 0x000040, "Wrong size on AkGameplayStatics_GetAkComponent"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, AttachToComponent) == 0x000000, "Member 'AkGameplayStatics_GetAkComponent::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, ComponentCreated) == 0x000008, "Member 'AkGameplayStatics_GetAkComponent::ComponentCreated' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, AttachPointName) == 0x00000C, "Member 'AkGameplayStatics_GetAkComponent::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, Location) == 0x000018, "Member 'AkGameplayStatics_GetAkComponent::Location' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, LocationType) == 0x000030, "Member 'AkGameplayStatics_GetAkComponent::LocationType' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkComponent, ReturnValue) == 0x000038, "Member 'AkGameplayStatics_GetAkComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetAkMediaAssetUserData \ +static_assert(alignof(AkGameplayStatics_GetAkMediaAssetUserData) == 0x000008, "Wrong alignment on AkGameplayStatics_GetAkMediaAssetUserData"); \ +static_assert(sizeof(AkGameplayStatics_GetAkMediaAssetUserData) == 0x000018, "Wrong size on AkGameplayStatics_GetAkMediaAssetUserData"); \ +static_assert(offsetof(AkGameplayStatics_GetAkMediaAssetUserData, Instance) == 0x000000, "Member 'AkGameplayStatics_GetAkMediaAssetUserData::Instance' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkMediaAssetUserData, Type) == 0x000008, "Member 'AkGameplayStatics_GetAkMediaAssetUserData::Type' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetAkMediaAssetUserData, ReturnValue) == 0x000010, "Member 'AkGameplayStatics_GetAkMediaAssetUserData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetAvailableAudioCultures \ +static_assert(alignof(AkGameplayStatics_GetAvailableAudioCultures) == 0x000008, "Wrong alignment on AkGameplayStatics_GetAvailableAudioCultures"); \ +static_assert(sizeof(AkGameplayStatics_GetAvailableAudioCultures) == 0x000010, "Wrong size on AkGameplayStatics_GetAvailableAudioCultures"); \ +static_assert(offsetof(AkGameplayStatics_GetAvailableAudioCultures, ReturnValue) == 0x000000, "Member 'AkGameplayStatics_GetAvailableAudioCultures::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetCurrentAudioCulture \ +static_assert(alignof(AkGameplayStatics_GetCurrentAudioCulture) == 0x000008, "Wrong alignment on AkGameplayStatics_GetCurrentAudioCulture"); \ +static_assert(sizeof(AkGameplayStatics_GetCurrentAudioCulture) == 0x000010, "Wrong size on AkGameplayStatics_GetCurrentAudioCulture"); \ +static_assert(offsetof(AkGameplayStatics_GetCurrentAudioCulture, ReturnValue) == 0x000000, "Member 'AkGameplayStatics_GetCurrentAudioCulture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetOcclusionScalingFactor \ +static_assert(alignof(AkGameplayStatics_GetOcclusionScalingFactor) == 0x000004, "Wrong alignment on AkGameplayStatics_GetOcclusionScalingFactor"); \ +static_assert(sizeof(AkGameplayStatics_GetOcclusionScalingFactor) == 0x000004, "Wrong size on AkGameplayStatics_GetOcclusionScalingFactor"); \ +static_assert(offsetof(AkGameplayStatics_GetOcclusionScalingFactor, ReturnValue) == 0x000000, "Member 'AkGameplayStatics_GetOcclusionScalingFactor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetRTPCValue \ +static_assert(alignof(AkGameplayStatics_GetRTPCValue) == 0x000008, "Wrong alignment on AkGameplayStatics_GetRTPCValue"); \ +static_assert(sizeof(AkGameplayStatics_GetRTPCValue) == 0x000028, "Wrong size on AkGameplayStatics_GetRTPCValue"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, RTPCValue) == 0x000000, "Member 'AkGameplayStatics_GetRTPCValue::RTPCValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, PlayingID) == 0x000008, "Member 'AkGameplayStatics_GetRTPCValue::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, InputValueType) == 0x00000C, "Member 'AkGameplayStatics_GetRTPCValue::InputValueType' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, Value) == 0x000010, "Member 'AkGameplayStatics_GetRTPCValue::Value' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, OutputValueType) == 0x000014, "Member 'AkGameplayStatics_GetRTPCValue::OutputValueType' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, Actor) == 0x000018, "Member 'AkGameplayStatics_GetRTPCValue::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetRTPCValue, RTPC) == 0x000020, "Member 'AkGameplayStatics_GetRTPCValue::RTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_GetSpeakerAngles \ +static_assert(alignof(AkGameplayStatics_GetSpeakerAngles) == 0x000008, "Wrong alignment on AkGameplayStatics_GetSpeakerAngles"); \ +static_assert(sizeof(AkGameplayStatics_GetSpeakerAngles) == 0x000028, "Wrong size on AkGameplayStatics_GetSpeakerAngles"); \ +static_assert(offsetof(AkGameplayStatics_GetSpeakerAngles, SpeakerAngles) == 0x000000, "Member 'AkGameplayStatics_GetSpeakerAngles::SpeakerAngles' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetSpeakerAngles, HeightAngle) == 0x000010, "Member 'AkGameplayStatics_GetSpeakerAngles::HeightAngle' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_GetSpeakerAngles, DeviceShareset) == 0x000018, "Member 'AkGameplayStatics_GetSpeakerAngles::DeviceShareset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_IsEditor \ +static_assert(alignof(AkGameplayStatics_IsEditor) == 0x000001, "Wrong alignment on AkGameplayStatics_IsEditor"); \ +static_assert(sizeof(AkGameplayStatics_IsEditor) == 0x000001, "Wrong size on AkGameplayStatics_IsEditor"); \ +static_assert(offsetof(AkGameplayStatics_IsEditor, ReturnValue) == 0x000000, "Member 'AkGameplayStatics_IsEditor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_IsGame \ +static_assert(alignof(AkGameplayStatics_IsGame) == 0x000008, "Wrong alignment on AkGameplayStatics_IsGame"); \ +static_assert(sizeof(AkGameplayStatics_IsGame) == 0x000010, "Wrong size on AkGameplayStatics_IsGame"); \ +static_assert(offsetof(AkGameplayStatics_IsGame, WorldContextObject) == 0x000000, "Member 'AkGameplayStatics_IsGame::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_IsGame, ReturnValue) == 0x000008, "Member 'AkGameplayStatics_IsGame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_LoadBank \ +static_assert(alignof(AkGameplayStatics_LoadBank) == 0x000008, "Wrong alignment on AkGameplayStatics_LoadBank"); \ +static_assert(sizeof(AkGameplayStatics_LoadBank) == 0x000038, "Wrong size on AkGameplayStatics_LoadBank"); \ +static_assert(offsetof(AkGameplayStatics_LoadBank, Bank) == 0x000000, "Member 'AkGameplayStatics_LoadBank::Bank' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_LoadBank, BankName) == 0x000008, "Member 'AkGameplayStatics_LoadBank::BankName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_LoadBank, LatentInfo) == 0x000018, "Member 'AkGameplayStatics_LoadBank::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_LoadBank, WorldContextObject) == 0x000030, "Member 'AkGameplayStatics_LoadBank::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_LoadBankAsync \ +static_assert(alignof(AkGameplayStatics_LoadBankAsync) == 0x000008, "Wrong alignment on AkGameplayStatics_LoadBankAsync"); \ +static_assert(sizeof(AkGameplayStatics_LoadBankAsync) == 0x000018, "Wrong size on AkGameplayStatics_LoadBankAsync"); \ +static_assert(offsetof(AkGameplayStatics_LoadBankAsync, Bank) == 0x000000, "Member 'AkGameplayStatics_LoadBankAsync::Bank' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_LoadBankAsync, BankLoadedCallback) == 0x000008, "Member 'AkGameplayStatics_LoadBankAsync::BankLoadedCallback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_LoadBankByName \ +static_assert(alignof(AkGameplayStatics_LoadBankByName) == 0x000008, "Wrong alignment on AkGameplayStatics_LoadBankByName"); \ +static_assert(sizeof(AkGameplayStatics_LoadBankByName) == 0x000010, "Wrong size on AkGameplayStatics_LoadBankByName"); \ +static_assert(offsetof(AkGameplayStatics_LoadBankByName, BankName) == 0x000000, "Member 'AkGameplayStatics_LoadBankByName::BankName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_LoadBanks \ +static_assert(alignof(AkGameplayStatics_LoadBanks) == 0x000008, "Wrong alignment on AkGameplayStatics_LoadBanks"); \ +static_assert(sizeof(AkGameplayStatics_LoadBanks) == 0x000018, "Wrong size on AkGameplayStatics_LoadBanks"); \ +static_assert(offsetof(AkGameplayStatics_LoadBanks, SoundBanks) == 0x000000, "Member 'AkGameplayStatics_LoadBanks::SoundBanks' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_LoadBanks, SynchronizeSoundBanks) == 0x000010, "Member 'AkGameplayStatics_LoadBanks::SynchronizeSoundBanks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostAndWaitForEndOfEvent \ +static_assert(alignof(AkGameplayStatics_PostAndWaitForEndOfEvent) == 0x000008, "Wrong alignment on AkGameplayStatics_PostAndWaitForEndOfEvent"); \ +static_assert(sizeof(AkGameplayStatics_PostAndWaitForEndOfEvent) == 0x000058, "Wrong size on AkGameplayStatics_PostAndWaitForEndOfEvent"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, AkEvent) == 0x000000, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, Actor) == 0x000008, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, bStopWhenAttachedToDestroyed) == 0x000010, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, ExternalSources) == 0x000018, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, EventName) == 0x000028, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, LatentInfo) == 0x000038, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEvent, ReturnValue) == 0x000050, "Member 'AkGameplayStatics_PostAndWaitForEndOfEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostAndWaitForEndOfEventAsync \ +static_assert(alignof(AkGameplayStatics_PostAndWaitForEndOfEventAsync) == 0x000008, "Wrong alignment on AkGameplayStatics_PostAndWaitForEndOfEventAsync"); \ +static_assert(sizeof(AkGameplayStatics_PostAndWaitForEndOfEventAsync) == 0x000040, "Wrong size on AkGameplayStatics_PostAndWaitForEndOfEventAsync"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, AkEvent) == 0x000000, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, Actor) == 0x000008, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, PlayingID) == 0x000010, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, bStopWhenAttachedToDestroyed) == 0x000014, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, ExternalSources) == 0x000018, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostAndWaitForEndOfEventAsync, LatentInfo) == 0x000028, "Member 'AkGameplayStatics_PostAndWaitForEndOfEventAsync::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostEvent \ +static_assert(alignof(AkGameplayStatics_PostEvent) == 0x000008, "Wrong alignment on AkGameplayStatics_PostEvent"); \ +static_assert(sizeof(AkGameplayStatics_PostEvent) == 0x000058, "Wrong size on AkGameplayStatics_PostEvent"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, AkEvent) == 0x000000, "Member 'AkGameplayStatics_PostEvent::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, Actor) == 0x000008, "Member 'AkGameplayStatics_PostEvent::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, CallbackMask) == 0x000010, "Member 'AkGameplayStatics_PostEvent::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, PostEventCallback) == 0x000014, "Member 'AkGameplayStatics_PostEvent::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, ExternalSources) == 0x000028, "Member 'AkGameplayStatics_PostEvent::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, bStopWhenAttachedToDestroyed) == 0x000038, "Member 'AkGameplayStatics_PostEvent::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, EventName) == 0x000040, "Member 'AkGameplayStatics_PostEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEvent, ReturnValue) == 0x000050, "Member 'AkGameplayStatics_PostEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostEventAtLocation \ +static_assert(alignof(AkGameplayStatics_PostEventAtLocation) == 0x000008, "Wrong alignment on AkGameplayStatics_PostEventAtLocation"); \ +static_assert(sizeof(AkGameplayStatics_PostEventAtLocation) == 0x000058, "Wrong size on AkGameplayStatics_PostEventAtLocation"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, AkEvent) == 0x000000, "Member 'AkGameplayStatics_PostEventAtLocation::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, Location) == 0x000008, "Member 'AkGameplayStatics_PostEventAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, Orientation) == 0x000020, "Member 'AkGameplayStatics_PostEventAtLocation::Orientation' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, EventName) == 0x000038, "Member 'AkGameplayStatics_PostEventAtLocation::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, WorldContextObject) == 0x000048, "Member 'AkGameplayStatics_PostEventAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocation, ReturnValue) == 0x000050, "Member 'AkGameplayStatics_PostEventAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostEventAtLocationByName \ +static_assert(alignof(AkGameplayStatics_PostEventAtLocationByName) == 0x000008, "Wrong alignment on AkGameplayStatics_PostEventAtLocationByName"); \ +static_assert(sizeof(AkGameplayStatics_PostEventAtLocationByName) == 0x000048, "Wrong size on AkGameplayStatics_PostEventAtLocationByName"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocationByName, EventName) == 0x000000, "Member 'AkGameplayStatics_PostEventAtLocationByName::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocationByName, Location) == 0x000010, "Member 'AkGameplayStatics_PostEventAtLocationByName::Location' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocationByName, Orientation) == 0x000028, "Member 'AkGameplayStatics_PostEventAtLocationByName::Orientation' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAtLocationByName, WorldContextObject) == 0x000040, "Member 'AkGameplayStatics_PostEventAtLocationByName::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostEventAttached \ +static_assert(alignof(AkGameplayStatics_PostEventAttached) == 0x000008, "Wrong alignment on AkGameplayStatics_PostEventAttached"); \ +static_assert(sizeof(AkGameplayStatics_PostEventAttached) == 0x000038, "Wrong size on AkGameplayStatics_PostEventAttached"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, AkEvent) == 0x000000, "Member 'AkGameplayStatics_PostEventAttached::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, Actor) == 0x000008, "Member 'AkGameplayStatics_PostEventAttached::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, AttachPointName) == 0x000010, "Member 'AkGameplayStatics_PostEventAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, bStopWhenAttachedToDestroyed) == 0x000018, "Member 'AkGameplayStatics_PostEventAttached::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, EventName) == 0x000020, "Member 'AkGameplayStatics_PostEventAttached::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventAttached, ReturnValue) == 0x000030, "Member 'AkGameplayStatics_PostEventAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostEventByName \ +static_assert(alignof(AkGameplayStatics_PostEventByName) == 0x000008, "Wrong alignment on AkGameplayStatics_PostEventByName"); \ +static_assert(sizeof(AkGameplayStatics_PostEventByName) == 0x000020, "Wrong size on AkGameplayStatics_PostEventByName"); \ +static_assert(offsetof(AkGameplayStatics_PostEventByName, EventName) == 0x000000, "Member 'AkGameplayStatics_PostEventByName::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventByName, Actor) == 0x000010, "Member 'AkGameplayStatics_PostEventByName::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostEventByName, bStopWhenAttachedToDestroyed) == 0x000018, "Member 'AkGameplayStatics_PostEventByName::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_PostTrigger \ +static_assert(alignof(AkGameplayStatics_PostTrigger) == 0x000008, "Wrong alignment on AkGameplayStatics_PostTrigger"); \ +static_assert(sizeof(AkGameplayStatics_PostTrigger) == 0x000018, "Wrong size on AkGameplayStatics_PostTrigger"); \ +static_assert(offsetof(AkGameplayStatics_PostTrigger, TriggerValue) == 0x000000, "Member 'AkGameplayStatics_PostTrigger::TriggerValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostTrigger, Actor) == 0x000008, "Member 'AkGameplayStatics_PostTrigger::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_PostTrigger, Trigger) == 0x000010, "Member 'AkGameplayStatics_PostTrigger::Trigger' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_ReplaceMainOutput \ +static_assert(alignof(AkGameplayStatics_ReplaceMainOutput) == 0x000008, "Wrong alignment on AkGameplayStatics_ReplaceMainOutput"); \ +static_assert(sizeof(AkGameplayStatics_ReplaceMainOutput) == 0x000018, "Wrong size on AkGameplayStatics_ReplaceMainOutput"); \ +static_assert(offsetof(AkGameplayStatics_ReplaceMainOutput, MainOutputSettings) == 0x000000, "Member 'AkGameplayStatics_ReplaceMainOutput::MainOutputSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_ResetRTPCValue \ +static_assert(alignof(AkGameplayStatics_ResetRTPCValue) == 0x000008, "Wrong alignment on AkGameplayStatics_ResetRTPCValue"); \ +static_assert(sizeof(AkGameplayStatics_ResetRTPCValue) == 0x000020, "Wrong size on AkGameplayStatics_ResetRTPCValue"); \ +static_assert(offsetof(AkGameplayStatics_ResetRTPCValue, RTPCValue) == 0x000000, "Member 'AkGameplayStatics_ResetRTPCValue::RTPCValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ResetRTPCValue, InterpolationTimeMs) == 0x000008, "Member 'AkGameplayStatics_ResetRTPCValue::InterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ResetRTPCValue, Actor) == 0x000010, "Member 'AkGameplayStatics_ResetRTPCValue::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_ResetRTPCValue, RTPC) == 0x000018, "Member 'AkGameplayStatics_ResetRTPCValue::RTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetBusConfig \ +static_assert(alignof(AkGameplayStatics_SetBusConfig) == 0x000008, "Wrong alignment on AkGameplayStatics_SetBusConfig"); \ +static_assert(sizeof(AkGameplayStatics_SetBusConfig) == 0x000018, "Wrong size on AkGameplayStatics_SetBusConfig"); \ +static_assert(offsetof(AkGameplayStatics_SetBusConfig, BusName) == 0x000000, "Member 'AkGameplayStatics_SetBusConfig::BusName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetBusConfig, ChannelConfiguration) == 0x000010, "Member 'AkGameplayStatics_SetBusConfig::ChannelConfiguration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetCurrentAudioCulture \ +static_assert(alignof(AkGameplayStatics_SetCurrentAudioCulture) == 0x000008, "Wrong alignment on AkGameplayStatics_SetCurrentAudioCulture"); \ +static_assert(sizeof(AkGameplayStatics_SetCurrentAudioCulture) == 0x000030, "Wrong size on AkGameplayStatics_SetCurrentAudioCulture"); \ +static_assert(offsetof(AkGameplayStatics_SetCurrentAudioCulture, AudioCulture) == 0x000000, "Member 'AkGameplayStatics_SetCurrentAudioCulture::AudioCulture' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetCurrentAudioCulture, LatentInfo) == 0x000010, "Member 'AkGameplayStatics_SetCurrentAudioCulture::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetCurrentAudioCulture, WorldContextObject) == 0x000028, "Member 'AkGameplayStatics_SetCurrentAudioCulture::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetCurrentAudioCultureAsync \ +static_assert(alignof(AkGameplayStatics_SetCurrentAudioCultureAsync) == 0x000008, "Wrong alignment on AkGameplayStatics_SetCurrentAudioCultureAsync"); \ +static_assert(sizeof(AkGameplayStatics_SetCurrentAudioCultureAsync) == 0x000020, "Wrong size on AkGameplayStatics_SetCurrentAudioCultureAsync"); \ +static_assert(offsetof(AkGameplayStatics_SetCurrentAudioCultureAsync, AudioCulture) == 0x000000, "Member 'AkGameplayStatics_SetCurrentAudioCultureAsync::AudioCulture' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetCurrentAudioCultureAsync, Completed) == 0x000010, "Member 'AkGameplayStatics_SetCurrentAudioCultureAsync::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetGameObjectToPortalObstruction \ +static_assert(alignof(AkGameplayStatics_SetGameObjectToPortalObstruction) == 0x000008, "Wrong alignment on AkGameplayStatics_SetGameObjectToPortalObstruction"); \ +static_assert(sizeof(AkGameplayStatics_SetGameObjectToPortalObstruction) == 0x000018, "Wrong size on AkGameplayStatics_SetGameObjectToPortalObstruction"); \ +static_assert(offsetof(AkGameplayStatics_SetGameObjectToPortalObstruction, GameObjectAkComponent) == 0x000000, "Member 'AkGameplayStatics_SetGameObjectToPortalObstruction::GameObjectAkComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetGameObjectToPortalObstruction, PortalComponent) == 0x000008, "Member 'AkGameplayStatics_SetGameObjectToPortalObstruction::PortalComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetGameObjectToPortalObstruction, ObstructionValue) == 0x000010, "Member 'AkGameplayStatics_SetGameObjectToPortalObstruction::ObstructionValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetMultipleChannelEmitterPositions \ +static_assert(alignof(AkGameplayStatics_SetMultipleChannelEmitterPositions) == 0x000008, "Wrong alignment on AkGameplayStatics_SetMultipleChannelEmitterPositions"); \ +static_assert(sizeof(AkGameplayStatics_SetMultipleChannelEmitterPositions) == 0x000030, "Wrong size on AkGameplayStatics_SetMultipleChannelEmitterPositions"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelEmitterPositions, GameObjectAkComponent) == 0x000000, "Member 'AkGameplayStatics_SetMultipleChannelEmitterPositions::GameObjectAkComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelEmitterPositions, ChannelMasks) == 0x000008, "Member 'AkGameplayStatics_SetMultipleChannelEmitterPositions::ChannelMasks' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelEmitterPositions, Positions) == 0x000018, "Member 'AkGameplayStatics_SetMultipleChannelEmitterPositions::Positions' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelEmitterPositions, MultiPositionType) == 0x000028, "Member 'AkGameplayStatics_SetMultipleChannelEmitterPositions::MultiPositionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetMultipleChannelMaskEmitterPositions \ +static_assert(alignof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions) == 0x000008, "Wrong alignment on AkGameplayStatics_SetMultipleChannelMaskEmitterPositions"); \ +static_assert(sizeof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions) == 0x000030, "Wrong size on AkGameplayStatics_SetMultipleChannelMaskEmitterPositions"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions, GameObjectAkComponent) == 0x000000, "Member 'AkGameplayStatics_SetMultipleChannelMaskEmitterPositions::GameObjectAkComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions, ChannelMasks) == 0x000008, "Member 'AkGameplayStatics_SetMultipleChannelMaskEmitterPositions::ChannelMasks' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions, Positions) == 0x000018, "Member 'AkGameplayStatics_SetMultipleChannelMaskEmitterPositions::Positions' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultipleChannelMaskEmitterPositions, MultiPositionType) == 0x000028, "Member 'AkGameplayStatics_SetMultipleChannelMaskEmitterPositions::MultiPositionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetMultiplePositions \ +static_assert(alignof(AkGameplayStatics_SetMultiplePositions) == 0x000008, "Wrong alignment on AkGameplayStatics_SetMultiplePositions"); \ +static_assert(sizeof(AkGameplayStatics_SetMultiplePositions) == 0x000020, "Wrong size on AkGameplayStatics_SetMultiplePositions"); \ +static_assert(offsetof(AkGameplayStatics_SetMultiplePositions, GameObjectAkComponent) == 0x000000, "Member 'AkGameplayStatics_SetMultiplePositions::GameObjectAkComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultiplePositions, Positions) == 0x000008, "Member 'AkGameplayStatics_SetMultiplePositions::Positions' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetMultiplePositions, MultiPositionType) == 0x000018, "Member 'AkGameplayStatics_SetMultiplePositions::MultiPositionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetOcclusionRefreshInterval \ +static_assert(alignof(AkGameplayStatics_SetOcclusionRefreshInterval) == 0x000008, "Wrong alignment on AkGameplayStatics_SetOcclusionRefreshInterval"); \ +static_assert(sizeof(AkGameplayStatics_SetOcclusionRefreshInterval) == 0x000010, "Wrong size on AkGameplayStatics_SetOcclusionRefreshInterval"); \ +static_assert(offsetof(AkGameplayStatics_SetOcclusionRefreshInterval, RefreshInterval) == 0x000000, "Member 'AkGameplayStatics_SetOcclusionRefreshInterval::RefreshInterval' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetOcclusionRefreshInterval, Actor) == 0x000008, "Member 'AkGameplayStatics_SetOcclusionRefreshInterval::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetOcclusionScalingFactor \ +static_assert(alignof(AkGameplayStatics_SetOcclusionScalingFactor) == 0x000004, "Wrong alignment on AkGameplayStatics_SetOcclusionScalingFactor"); \ +static_assert(sizeof(AkGameplayStatics_SetOcclusionScalingFactor) == 0x000004, "Wrong size on AkGameplayStatics_SetOcclusionScalingFactor"); \ +static_assert(offsetof(AkGameplayStatics_SetOcclusionScalingFactor, ScalingFactor) == 0x000000, "Member 'AkGameplayStatics_SetOcclusionScalingFactor::ScalingFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetOutputBusVolume \ +static_assert(alignof(AkGameplayStatics_SetOutputBusVolume) == 0x000008, "Wrong alignment on AkGameplayStatics_SetOutputBusVolume"); \ +static_assert(sizeof(AkGameplayStatics_SetOutputBusVolume) == 0x000010, "Wrong size on AkGameplayStatics_SetOutputBusVolume"); \ +static_assert(offsetof(AkGameplayStatics_SetOutputBusVolume, BusVolume) == 0x000000, "Member 'AkGameplayStatics_SetOutputBusVolume::BusVolume' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetOutputBusVolume, Actor) == 0x000008, "Member 'AkGameplayStatics_SetOutputBusVolume::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetPanningRule \ +static_assert(alignof(AkGameplayStatics_SetPanningRule) == 0x000001, "Wrong alignment on AkGameplayStatics_SetPanningRule"); \ +static_assert(sizeof(AkGameplayStatics_SetPanningRule) == 0x000001, "Wrong size on AkGameplayStatics_SetPanningRule"); \ +static_assert(offsetof(AkGameplayStatics_SetPanningRule, PanRule) == 0x000000, "Member 'AkGameplayStatics_SetPanningRule::PanRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetPortalObstructionAndOcclusion \ +static_assert(alignof(AkGameplayStatics_SetPortalObstructionAndOcclusion) == 0x000008, "Wrong alignment on AkGameplayStatics_SetPortalObstructionAndOcclusion"); \ +static_assert(sizeof(AkGameplayStatics_SetPortalObstructionAndOcclusion) == 0x000010, "Wrong size on AkGameplayStatics_SetPortalObstructionAndOcclusion"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalObstructionAndOcclusion, PortalComponent) == 0x000000, "Member 'AkGameplayStatics_SetPortalObstructionAndOcclusion::PortalComponent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalObstructionAndOcclusion, ObstructionValue) == 0x000008, "Member 'AkGameplayStatics_SetPortalObstructionAndOcclusion::ObstructionValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalObstructionAndOcclusion, OcclusionValue) == 0x00000C, "Member 'AkGameplayStatics_SetPortalObstructionAndOcclusion::OcclusionValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetPortalToPortalObstruction \ +static_assert(alignof(AkGameplayStatics_SetPortalToPortalObstruction) == 0x000008, "Wrong alignment on AkGameplayStatics_SetPortalToPortalObstruction"); \ +static_assert(sizeof(AkGameplayStatics_SetPortalToPortalObstruction) == 0x000018, "Wrong size on AkGameplayStatics_SetPortalToPortalObstruction"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalToPortalObstruction, PortalComponent0) == 0x000000, "Member 'AkGameplayStatics_SetPortalToPortalObstruction::PortalComponent0' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalToPortalObstruction, PortalComponent1) == 0x000008, "Member 'AkGameplayStatics_SetPortalToPortalObstruction::PortalComponent1' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetPortalToPortalObstruction, ObstructionValue) == 0x000010, "Member 'AkGameplayStatics_SetPortalToPortalObstruction::ObstructionValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetReflectionsOrder \ +static_assert(alignof(AkGameplayStatics_SetReflectionsOrder) == 0x000004, "Wrong alignment on AkGameplayStatics_SetReflectionsOrder"); \ +static_assert(sizeof(AkGameplayStatics_SetReflectionsOrder) == 0x000008, "Wrong size on AkGameplayStatics_SetReflectionsOrder"); \ +static_assert(offsetof(AkGameplayStatics_SetReflectionsOrder, Order) == 0x000000, "Member 'AkGameplayStatics_SetReflectionsOrder::Order' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetReflectionsOrder, RefreshPaths) == 0x000004, "Member 'AkGameplayStatics_SetReflectionsOrder::RefreshPaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetRTPCValue \ +static_assert(alignof(AkGameplayStatics_SetRTPCValue) == 0x000008, "Wrong alignment on AkGameplayStatics_SetRTPCValue"); \ +static_assert(sizeof(AkGameplayStatics_SetRTPCValue) == 0x000020, "Wrong size on AkGameplayStatics_SetRTPCValue"); \ +static_assert(offsetof(AkGameplayStatics_SetRTPCValue, RTPCValue) == 0x000000, "Member 'AkGameplayStatics_SetRTPCValue::RTPCValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetRTPCValue, Value) == 0x000008, "Member 'AkGameplayStatics_SetRTPCValue::Value' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetRTPCValue, InterpolationTimeMs) == 0x00000C, "Member 'AkGameplayStatics_SetRTPCValue::InterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetRTPCValue, Actor) == 0x000010, "Member 'AkGameplayStatics_SetRTPCValue::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetRTPCValue, RTPC) == 0x000018, "Member 'AkGameplayStatics_SetRTPCValue::RTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetSpeakerAngles \ +static_assert(alignof(AkGameplayStatics_SetSpeakerAngles) == 0x000008, "Wrong alignment on AkGameplayStatics_SetSpeakerAngles"); \ +static_assert(sizeof(AkGameplayStatics_SetSpeakerAngles) == 0x000028, "Wrong size on AkGameplayStatics_SetSpeakerAngles"); \ +static_assert(offsetof(AkGameplayStatics_SetSpeakerAngles, SpeakerAngles) == 0x000000, "Member 'AkGameplayStatics_SetSpeakerAngles::SpeakerAngles' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetSpeakerAngles, HeightAngle) == 0x000010, "Member 'AkGameplayStatics_SetSpeakerAngles::HeightAngle' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetSpeakerAngles, DeviceShareset) == 0x000018, "Member 'AkGameplayStatics_SetSpeakerAngles::DeviceShareset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetState \ +static_assert(alignof(AkGameplayStatics_SetState) == 0x000008, "Wrong alignment on AkGameplayStatics_SetState"); \ +static_assert(sizeof(AkGameplayStatics_SetState) == 0x000018, "Wrong size on AkGameplayStatics_SetState"); \ +static_assert(offsetof(AkGameplayStatics_SetState, StateValue) == 0x000000, "Member 'AkGameplayStatics_SetState::StateValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetState, StateGroup) == 0x000008, "Member 'AkGameplayStatics_SetState::StateGroup' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetState, State) == 0x000010, "Member 'AkGameplayStatics_SetState::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SetSwitch \ +static_assert(alignof(AkGameplayStatics_SetSwitch) == 0x000008, "Wrong alignment on AkGameplayStatics_SetSwitch"); \ +static_assert(sizeof(AkGameplayStatics_SetSwitch) == 0x000020, "Wrong size on AkGameplayStatics_SetSwitch"); \ +static_assert(offsetof(AkGameplayStatics_SetSwitch, SwitchValue) == 0x000000, "Member 'AkGameplayStatics_SetSwitch::SwitchValue' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetSwitch, Actor) == 0x000008, "Member 'AkGameplayStatics_SetSwitch::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetSwitch, SwitchGroup) == 0x000010, "Member 'AkGameplayStatics_SetSwitch::SwitchGroup' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SetSwitch, SwitchState) == 0x000018, "Member 'AkGameplayStatics_SetSwitch::SwitchState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_SpawnAkComponentAtLocation \ +static_assert(alignof(AkGameplayStatics_SpawnAkComponentAtLocation) == 0x000008, "Wrong alignment on AkGameplayStatics_SpawnAkComponentAtLocation"); \ +static_assert(sizeof(AkGameplayStatics_SpawnAkComponentAtLocation) == 0x000068, "Wrong size on AkGameplayStatics_SpawnAkComponentAtLocation"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, WorldContextObject) == 0x000000, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, AkEvent) == 0x000008, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, Location) == 0x000010, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, Orientation) == 0x000028, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::Orientation' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, AutoPost) == 0x000040, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::AutoPost' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, EventName) == 0x000048, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::EventName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, AutoDestroy) == 0x000058, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::AutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_SpawnAkComponentAtLocation, ReturnValue) == 0x000060, "Member 'AkGameplayStatics_SpawnAkComponentAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_StartAllAmbientSounds \ +static_assert(alignof(AkGameplayStatics_StartAllAmbientSounds) == 0x000008, "Wrong alignment on AkGameplayStatics_StartAllAmbientSounds"); \ +static_assert(sizeof(AkGameplayStatics_StartAllAmbientSounds) == 0x000008, "Wrong size on AkGameplayStatics_StartAllAmbientSounds"); \ +static_assert(offsetof(AkGameplayStatics_StartAllAmbientSounds, WorldContextObject) == 0x000000, "Member 'AkGameplayStatics_StartAllAmbientSounds::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_StartOutputCapture \ +static_assert(alignof(AkGameplayStatics_StartOutputCapture) == 0x000008, "Wrong alignment on AkGameplayStatics_StartOutputCapture"); \ +static_assert(sizeof(AkGameplayStatics_StartOutputCapture) == 0x000010, "Wrong size on AkGameplayStatics_StartOutputCapture"); \ +static_assert(offsetof(AkGameplayStatics_StartOutputCapture, Filename) == 0x000000, "Member 'AkGameplayStatics_StartOutputCapture::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_StartProfilerCapture \ +static_assert(alignof(AkGameplayStatics_StartProfilerCapture) == 0x000008, "Wrong alignment on AkGameplayStatics_StartProfilerCapture"); \ +static_assert(sizeof(AkGameplayStatics_StartProfilerCapture) == 0x000010, "Wrong size on AkGameplayStatics_StartProfilerCapture"); \ +static_assert(offsetof(AkGameplayStatics_StartProfilerCapture, Filename) == 0x000000, "Member 'AkGameplayStatics_StartProfilerCapture::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_StopActor \ +static_assert(alignof(AkGameplayStatics_StopActor) == 0x000008, "Wrong alignment on AkGameplayStatics_StopActor"); \ +static_assert(sizeof(AkGameplayStatics_StopActor) == 0x000008, "Wrong size on AkGameplayStatics_StopActor"); \ +static_assert(offsetof(AkGameplayStatics_StopActor, Actor) == 0x000000, "Member 'AkGameplayStatics_StopActor::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_StopAllAmbientSounds \ +static_assert(alignof(AkGameplayStatics_StopAllAmbientSounds) == 0x000008, "Wrong alignment on AkGameplayStatics_StopAllAmbientSounds"); \ +static_assert(sizeof(AkGameplayStatics_StopAllAmbientSounds) == 0x000008, "Wrong size on AkGameplayStatics_StopAllAmbientSounds"); \ +static_assert(offsetof(AkGameplayStatics_StopAllAmbientSounds, WorldContextObject) == 0x000000, "Member 'AkGameplayStatics_StopAllAmbientSounds::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_UnloadBank \ +static_assert(alignof(AkGameplayStatics_UnloadBank) == 0x000008, "Wrong alignment on AkGameplayStatics_UnloadBank"); \ +static_assert(sizeof(AkGameplayStatics_UnloadBank) == 0x000038, "Wrong size on AkGameplayStatics_UnloadBank"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBank, Bank) == 0x000000, "Member 'AkGameplayStatics_UnloadBank::Bank' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBank, BankName) == 0x000008, "Member 'AkGameplayStatics_UnloadBank::BankName' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBank, LatentInfo) == 0x000018, "Member 'AkGameplayStatics_UnloadBank::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBank, WorldContextObject) == 0x000030, "Member 'AkGameplayStatics_UnloadBank::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_UnloadBankAsync \ +static_assert(alignof(AkGameplayStatics_UnloadBankAsync) == 0x000008, "Wrong alignment on AkGameplayStatics_UnloadBankAsync"); \ +static_assert(sizeof(AkGameplayStatics_UnloadBankAsync) == 0x000018, "Wrong size on AkGameplayStatics_UnloadBankAsync"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBankAsync, Bank) == 0x000000, "Member 'AkGameplayStatics_UnloadBankAsync::Bank' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBankAsync, BankUnloadedCallback) == 0x000008, "Member 'AkGameplayStatics_UnloadBankAsync::BankUnloadedCallback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_UnloadBankByName \ +static_assert(alignof(AkGameplayStatics_UnloadBankByName) == 0x000008, "Wrong alignment on AkGameplayStatics_UnloadBankByName"); \ +static_assert(sizeof(AkGameplayStatics_UnloadBankByName) == 0x000010, "Wrong size on AkGameplayStatics_UnloadBankByName"); \ +static_assert(offsetof(AkGameplayStatics_UnloadBankByName, BankName) == 0x000000, "Member 'AkGameplayStatics_UnloadBankByName::BankName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_UseEarlyReflections \ +static_assert(alignof(AkGameplayStatics_UseEarlyReflections) == 0x000008, "Wrong alignment on AkGameplayStatics_UseEarlyReflections"); \ +static_assert(sizeof(AkGameplayStatics_UseEarlyReflections) == 0x000030, "Wrong size on AkGameplayStatics_UseEarlyReflections"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, Actor) == 0x000000, "Member 'AkGameplayStatics_UseEarlyReflections::Actor' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, AuxBus) == 0x000008, "Member 'AkGameplayStatics_UseEarlyReflections::AuxBus' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, Order) == 0x000010, "Member 'AkGameplayStatics_UseEarlyReflections::Order' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, BusSendGain) == 0x000014, "Member 'AkGameplayStatics_UseEarlyReflections::BusSendGain' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, MaxPathLength) == 0x000018, "Member 'AkGameplayStatics_UseEarlyReflections::MaxPathLength' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, SpotReflectors) == 0x00001C, "Member 'AkGameplayStatics_UseEarlyReflections::SpotReflectors' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseEarlyReflections, AuxBusName) == 0x000020, "Member 'AkGameplayStatics_UseEarlyReflections::AuxBusName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkGameplayStatics_UseReverbVolumes \ +static_assert(alignof(AkGameplayStatics_UseReverbVolumes) == 0x000008, "Wrong alignment on AkGameplayStatics_UseReverbVolumes"); \ +static_assert(sizeof(AkGameplayStatics_UseReverbVolumes) == 0x000010, "Wrong size on AkGameplayStatics_UseReverbVolumes"); \ +static_assert(offsetof(AkGameplayStatics_UseReverbVolumes, inUseReverbVolumes) == 0x000000, "Member 'AkGameplayStatics_UseReverbVolumes::inUseReverbVolumes' has a wrong offset!"); \ +static_assert(offsetof(AkGameplayStatics_UseReverbVolumes, Actor) == 0x000008, "Member 'AkGameplayStatics_UseReverbVolumes::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkGameplayStatics \ +static_assert(alignof(UAkGameplayStatics) == 0x000008, "Wrong alignment on UAkGameplayStatics"); \ +static_assert(sizeof(UAkGameplayStatics) == 0x000028, "Wrong size on UAkGameplayStatics"); \ + +#define DUMPER7_ASSERTS_UAkCallbackInfo \ +static_assert(alignof(UAkCallbackInfo) == 0x000008, "Wrong alignment on UAkCallbackInfo"); \ +static_assert(sizeof(UAkCallbackInfo) == 0x000030, "Wrong size on UAkCallbackInfo"); \ +static_assert(offsetof(UAkCallbackInfo, AkComponent) == 0x000028, "Member 'UAkCallbackInfo::AkComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkEventCallbackInfo \ +static_assert(alignof(UAkEventCallbackInfo) == 0x000008, "Wrong alignment on UAkEventCallbackInfo"); \ +static_assert(sizeof(UAkEventCallbackInfo) == 0x000038, "Wrong size on UAkEventCallbackInfo"); \ +static_assert(offsetof(UAkEventCallbackInfo, PlayingID) == 0x000030, "Member 'UAkEventCallbackInfo::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(UAkEventCallbackInfo, EventID) == 0x000034, "Member 'UAkEventCallbackInfo::EventID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetCc \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetCc) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetCc"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetCc) == 0x000005, "Wrong size on AkMIDIEventCallbackInfo_GetCc"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetCc, AsCc) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetCc::AsCc' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetCc, ReturnValue) == 0x000004, "Member 'AkMIDIEventCallbackInfo_GetCc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetChannel \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetChannel) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetChannel"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetChannel) == 0x000001, "Wrong size on AkMIDIEventCallbackInfo_GetChannel"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetChannel, ReturnValue) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetChannelAftertouch \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetChannelAftertouch) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetChannelAftertouch"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetChannelAftertouch) == 0x000004, "Wrong size on AkMIDIEventCallbackInfo_GetChannelAftertouch"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetChannelAftertouch, AsChannelAftertouch) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetChannelAftertouch::AsChannelAftertouch' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetChannelAftertouch, ReturnValue) == 0x000003, "Member 'AkMIDIEventCallbackInfo_GetChannelAftertouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetGeneric \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetGeneric) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetGeneric"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetGeneric) == 0x000005, "Wrong size on AkMIDIEventCallbackInfo_GetGeneric"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetGeneric, AsGeneric) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetGeneric::AsGeneric' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetGeneric, ReturnValue) == 0x000004, "Member 'AkMIDIEventCallbackInfo_GetGeneric::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetNoteAftertouch \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetNoteAftertouch) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetNoteAftertouch"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetNoteAftertouch) == 0x000005, "Wrong size on AkMIDIEventCallbackInfo_GetNoteAftertouch"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteAftertouch, AsNoteAftertouch) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetNoteAftertouch::AsNoteAftertouch' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteAftertouch, ReturnValue) == 0x000004, "Member 'AkMIDIEventCallbackInfo_GetNoteAftertouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetNoteOff \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetNoteOff) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetNoteOff"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetNoteOff) == 0x000005, "Wrong size on AkMIDIEventCallbackInfo_GetNoteOff"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteOff, AsNoteOff) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetNoteOff::AsNoteOff' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteOff, ReturnValue) == 0x000004, "Member 'AkMIDIEventCallbackInfo_GetNoteOff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetNoteOn \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetNoteOn) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetNoteOn"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetNoteOn) == 0x000005, "Wrong size on AkMIDIEventCallbackInfo_GetNoteOn"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteOn, AsNoteOn) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetNoteOn::AsNoteOn' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetNoteOn, ReturnValue) == 0x000004, "Member 'AkMIDIEventCallbackInfo_GetNoteOn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetPitchBend \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetPitchBend) == 0x000004, "Wrong alignment on AkMIDIEventCallbackInfo_GetPitchBend"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetPitchBend) == 0x00000C, "Wrong size on AkMIDIEventCallbackInfo_GetPitchBend"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetPitchBend, AsPitchBend) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetPitchBend::AsPitchBend' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetPitchBend, ReturnValue) == 0x000008, "Member 'AkMIDIEventCallbackInfo_GetPitchBend::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetProgramChange \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetProgramChange) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetProgramChange"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetProgramChange) == 0x000004, "Wrong size on AkMIDIEventCallbackInfo_GetProgramChange"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetProgramChange, AsProgramChange) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetProgramChange::AsProgramChange' has a wrong offset!"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetProgramChange, ReturnValue) == 0x000003, "Member 'AkMIDIEventCallbackInfo_GetProgramChange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkMIDIEventCallbackInfo_GetType \ +static_assert(alignof(AkMIDIEventCallbackInfo_GetType) == 0x000001, "Wrong alignment on AkMIDIEventCallbackInfo_GetType"); \ +static_assert(sizeof(AkMIDIEventCallbackInfo_GetType) == 0x000001, "Wrong size on AkMIDIEventCallbackInfo_GetType"); \ +static_assert(offsetof(AkMIDIEventCallbackInfo_GetType, ReturnValue) == 0x000000, "Member 'AkMIDIEventCallbackInfo_GetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMIDIEventCallbackInfo \ +static_assert(alignof(UAkMIDIEventCallbackInfo) == 0x000008, "Wrong alignment on UAkMIDIEventCallbackInfo"); \ +static_assert(sizeof(UAkMIDIEventCallbackInfo) == 0x000048, "Wrong size on UAkMIDIEventCallbackInfo"); \ + +#define DUMPER7_ASSERTS_UAkMarkerCallbackInfo \ +static_assert(alignof(UAkMarkerCallbackInfo) == 0x000008, "Wrong alignment on UAkMarkerCallbackInfo"); \ +static_assert(sizeof(UAkMarkerCallbackInfo) == 0x000050, "Wrong size on UAkMarkerCallbackInfo"); \ +static_assert(offsetof(UAkMarkerCallbackInfo, Identifier) == 0x000038, "Member 'UAkMarkerCallbackInfo::Identifier' has a wrong offset!"); \ +static_assert(offsetof(UAkMarkerCallbackInfo, Position) == 0x00003C, "Member 'UAkMarkerCallbackInfo::Position' has a wrong offset!"); \ +static_assert(offsetof(UAkMarkerCallbackInfo, Label) == 0x000040, "Member 'UAkMarkerCallbackInfo::Label' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkDurationCallbackInfo \ +static_assert(alignof(UAkDurationCallbackInfo) == 0x000008, "Wrong alignment on UAkDurationCallbackInfo"); \ +static_assert(sizeof(UAkDurationCallbackInfo) == 0x000050, "Wrong size on UAkDurationCallbackInfo"); \ +static_assert(offsetof(UAkDurationCallbackInfo, Duration) == 0x000038, "Member 'UAkDurationCallbackInfo::Duration' has a wrong offset!"); \ +static_assert(offsetof(UAkDurationCallbackInfo, EstimatedDuration) == 0x00003C, "Member 'UAkDurationCallbackInfo::EstimatedDuration' has a wrong offset!"); \ +static_assert(offsetof(UAkDurationCallbackInfo, AudioNodeID) == 0x000040, "Member 'UAkDurationCallbackInfo::AudioNodeID' has a wrong offset!"); \ +static_assert(offsetof(UAkDurationCallbackInfo, MediaID) == 0x000044, "Member 'UAkDurationCallbackInfo::MediaID' has a wrong offset!"); \ +static_assert(offsetof(UAkDurationCallbackInfo, bStreaming) == 0x000048, "Member 'UAkDurationCallbackInfo::bStreaming' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMusicSyncCallbackInfo \ +static_assert(alignof(UAkMusicSyncCallbackInfo) == 0x000008, "Wrong alignment on UAkMusicSyncCallbackInfo"); \ +static_assert(sizeof(UAkMusicSyncCallbackInfo) == 0x000070, "Wrong size on UAkMusicSyncCallbackInfo"); \ +static_assert(offsetof(UAkMusicSyncCallbackInfo, PlayingID) == 0x000030, "Member 'UAkMusicSyncCallbackInfo::PlayingID' has a wrong offset!"); \ +static_assert(offsetof(UAkMusicSyncCallbackInfo, SegmentInfo) == 0x000034, "Member 'UAkMusicSyncCallbackInfo::SegmentInfo' has a wrong offset!"); \ +static_assert(offsetof(UAkMusicSyncCallbackInfo, MusicSyncType) == 0x000058, "Member 'UAkMusicSyncCallbackInfo::MusicSyncType' has a wrong offset!"); \ +static_assert(offsetof(UAkMusicSyncCallbackInfo, UserCueName) == 0x000060, "Member 'UAkMusicSyncCallbackInfo::UserCueName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkGeometryComponent \ +static_assert(alignof(UAkGeometryComponent) == 0x000010, "Wrong alignment on UAkGeometryComponent"); \ +static_assert(sizeof(UAkGeometryComponent) == 0x000440, "Wrong size on UAkGeometryComponent"); \ +static_assert(offsetof(UAkGeometryComponent, MeshType) == 0x0002B8, "Member 'UAkGeometryComponent::MeshType' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, LOD) == 0x0002BC, "Member 'UAkGeometryComponent::LOD' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, WeldingThreshold) == 0x0002C0, "Member 'UAkGeometryComponent::WeldingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, StaticMeshSurfaceOverride) == 0x0002C8, "Member 'UAkGeometryComponent::StaticMeshSurfaceOverride' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, CollisionMeshSurfaceOverride) == 0x000318, "Member 'UAkGeometryComponent::CollisionMeshSurfaceOverride' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, bEnableDiffraction) == 0x000330, "Member 'UAkGeometryComponent::bEnableDiffraction' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, bEnableDiffractionOnBoundaryEdges) == 0x000331, "Member 'UAkGeometryComponent::bEnableDiffractionOnBoundaryEdges' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, AssociatedRoom) == 0x000338, "Member 'UAkGeometryComponent::AssociatedRoom' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, GeometryData) == 0x000350, "Member 'UAkGeometryComponent::GeometryData' has a wrong offset!"); \ +static_assert(offsetof(UAkGeometryComponent, SurfaceAreas) == 0x0003A0, "Member 'UAkGeometryComponent::SurfaceAreas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkGroupValue \ +static_assert(alignof(UAkGroupValue) == 0x000008, "Wrong alignment on UAkGroupValue"); \ +static_assert(sizeof(UAkGroupValue) == 0x000068, "Wrong size on UAkGroupValue"); \ +static_assert(offsetof(UAkGroupValue, MediaDependencies) == 0x000040, "Member 'UAkGroupValue::MediaDependencies' has a wrong offset!"); \ +static_assert(offsetof(UAkGroupValue, GroupShortID) == 0x000050, "Member 'UAkGroupValue::GroupShortID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkHololensInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkHololensInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkHololensInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkHololensInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkHololensInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkHololensInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkHololensInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkHololensInitializationSettings \ +static_assert(alignof(UAkHololensInitializationSettings) == 0x000008, "Wrong alignment on UAkHololensInitializationSettings"); \ +static_assert(sizeof(UAkHololensInitializationSettings) == 0x0000F8, "Wrong size on UAkHololensInitializationSettings"); \ +static_assert(offsetof(UAkHololensInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkHololensInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkHololensInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkHololensInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkHololensInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkHololensInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkHololensPlatformInfo \ +static_assert(alignof(UAkHololensPlatformInfo) == 0x000008, "Wrong alignment on UAkHololensPlatformInfo"); \ +static_assert(sizeof(UAkHololensPlatformInfo) == 0x000070, "Wrong size on UAkHololensPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkInitBankAssetData \ +static_assert(alignof(UAkInitBankAssetData) == 0x000008, "Wrong alignment on UAkInitBankAssetData"); \ +static_assert(sizeof(UAkInitBankAssetData) == 0x000098, "Wrong size on UAkInitBankAssetData"); \ +static_assert(offsetof(UAkInitBankAssetData, PluginInfos) == 0x000088, "Member 'UAkInitBankAssetData::PluginInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkInitBank \ +static_assert(alignof(UAkInitBank) == 0x000008, "Wrong alignment on UAkInitBank"); \ +static_assert(sizeof(UAkInitBank) == 0x000070, "Wrong size on UAkInitBank"); \ +static_assert(offsetof(UAkInitBank, AvailableAudioCultures) == 0x000050, "Member 'UAkInitBank::AvailableAudioCultures' has a wrong offset!"); \ +static_assert(offsetof(UAkInitBank, DefaultLanguage) == 0x000060, "Member 'UAkInitBank::DefaultLanguage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkIOSInitializationSettings \ +static_assert(alignof(UAkIOSInitializationSettings) == 0x000008, "Wrong alignment on UAkIOSInitializationSettings"); \ +static_assert(sizeof(UAkIOSInitializationSettings) == 0x000100, "Wrong size on UAkIOSInitializationSettings"); \ +static_assert(offsetof(UAkIOSInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkIOSInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkIOSInitializationSettings, AudioSession) == 0x000098, "Member 'UAkIOSInitializationSettings::AudioSession' has a wrong offset!"); \ +static_assert(offsetof(UAkIOSInitializationSettings, CommunicationSettings) == 0x0000A8, "Member 'UAkIOSInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkIOSInitializationSettings, AdvancedSettings) == 0x0000D0, "Member 'UAkIOSInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkIOSPlatformInfo \ +static_assert(alignof(UAkIOSPlatformInfo) == 0x000008, "Wrong alignment on UAkIOSPlatformInfo"); \ +static_assert(sizeof(UAkIOSPlatformInfo) == 0x000070, "Wrong size on UAkIOSPlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString \ +static_assert(alignof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString) == 0x000008, "Wrong alignment on AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString"); \ +static_assert(sizeof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString) == 0x000020, "Wrong size on AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString"); \ +static_assert(offsetof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString, INAkBoolPropertyToControl) == 0x000000, "Member 'AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString::INAkBoolPropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString, ReturnValue) == 0x000010, "Member 'AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText \ +static_assert(alignof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText) == 0x000008, "Wrong alignment on AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText"); \ +static_assert(sizeof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText) == 0x000028, "Wrong size on AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText"); \ +static_assert(offsetof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText, INAkBoolPropertyToControl) == 0x000000, "Member 'AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText::INAkBoolPropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText, ReturnValue) == 0x000010, "Member 'AkItemBoolPropertiesConv_Conv_FAkBoolPropertyToControlToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkItemBoolPropertiesConv \ +static_assert(alignof(UAkItemBoolPropertiesConv) == 0x000008, "Wrong alignment on UAkItemBoolPropertiesConv"); \ +static_assert(sizeof(UAkItemBoolPropertiesConv) == 0x000028, "Wrong size on UAkItemBoolPropertiesConv"); \ + +#define DUMPER7_ASSERTS_AkItemBoolProperties_SetSearchText \ +static_assert(alignof(AkItemBoolProperties_SetSearchText) == 0x000008, "Wrong alignment on AkItemBoolProperties_SetSearchText"); \ +static_assert(sizeof(AkItemBoolProperties_SetSearchText) == 0x000010, "Wrong size on AkItemBoolProperties_SetSearchText"); \ +static_assert(offsetof(AkItemBoolProperties_SetSearchText, newText) == 0x000000, "Member 'AkItemBoolProperties_SetSearchText::newText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemBoolProperties_GetSearchText \ +static_assert(alignof(AkItemBoolProperties_GetSearchText) == 0x000008, "Wrong alignment on AkItemBoolProperties_GetSearchText"); \ +static_assert(sizeof(AkItemBoolProperties_GetSearchText) == 0x000010, "Wrong size on AkItemBoolProperties_GetSearchText"); \ +static_assert(offsetof(AkItemBoolProperties_GetSearchText, ReturnValue) == 0x000000, "Member 'AkItemBoolProperties_GetSearchText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemBoolProperties_GetSelectedProperty \ +static_assert(alignof(AkItemBoolProperties_GetSelectedProperty) == 0x000008, "Wrong alignment on AkItemBoolProperties_GetSelectedProperty"); \ +static_assert(sizeof(AkItemBoolProperties_GetSelectedProperty) == 0x000010, "Wrong size on AkItemBoolProperties_GetSelectedProperty"); \ +static_assert(offsetof(AkItemBoolProperties_GetSelectedProperty, ReturnValue) == 0x000000, "Member 'AkItemBoolProperties_GetSelectedProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkItemBoolProperties \ +static_assert(alignof(UAkItemBoolProperties) == 0x000008, "Wrong alignment on UAkItemBoolProperties"); \ +static_assert(sizeof(UAkItemBoolProperties) == 0x0001C0, "Wrong size on UAkItemBoolProperties"); \ +static_assert(offsetof(UAkItemBoolProperties, OnSelectionChanged) == 0x000180, "Member 'UAkItemBoolProperties::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkItemBoolProperties, OnPropertyDragged) == 0x000190, "Member 'UAkItemBoolProperties::OnPropertyDragged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemPropertiesConv_Conv_FAkPropertyToControlToString \ +static_assert(alignof(AkItemPropertiesConv_Conv_FAkPropertyToControlToString) == 0x000008, "Wrong alignment on AkItemPropertiesConv_Conv_FAkPropertyToControlToString"); \ +static_assert(sizeof(AkItemPropertiesConv_Conv_FAkPropertyToControlToString) == 0x000020, "Wrong size on AkItemPropertiesConv_Conv_FAkPropertyToControlToString"); \ +static_assert(offsetof(AkItemPropertiesConv_Conv_FAkPropertyToControlToString, INAkPropertyToControl) == 0x000000, "Member 'AkItemPropertiesConv_Conv_FAkPropertyToControlToString::INAkPropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(AkItemPropertiesConv_Conv_FAkPropertyToControlToString, ReturnValue) == 0x000010, "Member 'AkItemPropertiesConv_Conv_FAkPropertyToControlToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemPropertiesConv_Conv_FAkPropertyToControlToText \ +static_assert(alignof(AkItemPropertiesConv_Conv_FAkPropertyToControlToText) == 0x000008, "Wrong alignment on AkItemPropertiesConv_Conv_FAkPropertyToControlToText"); \ +static_assert(sizeof(AkItemPropertiesConv_Conv_FAkPropertyToControlToText) == 0x000028, "Wrong size on AkItemPropertiesConv_Conv_FAkPropertyToControlToText"); \ +static_assert(offsetof(AkItemPropertiesConv_Conv_FAkPropertyToControlToText, INAkPropertyToControl) == 0x000000, "Member 'AkItemPropertiesConv_Conv_FAkPropertyToControlToText::INAkPropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(AkItemPropertiesConv_Conv_FAkPropertyToControlToText, ReturnValue) == 0x000010, "Member 'AkItemPropertiesConv_Conv_FAkPropertyToControlToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkItemPropertiesConv \ +static_assert(alignof(UAkItemPropertiesConv) == 0x000008, "Wrong alignment on UAkItemPropertiesConv"); \ +static_assert(sizeof(UAkItemPropertiesConv) == 0x000028, "Wrong size on UAkItemPropertiesConv"); \ + +#define DUMPER7_ASSERTS_AkItemProperties_SetSearchText \ +static_assert(alignof(AkItemProperties_SetSearchText) == 0x000008, "Wrong alignment on AkItemProperties_SetSearchText"); \ +static_assert(sizeof(AkItemProperties_SetSearchText) == 0x000010, "Wrong size on AkItemProperties_SetSearchText"); \ +static_assert(offsetof(AkItemProperties_SetSearchText, newText) == 0x000000, "Member 'AkItemProperties_SetSearchText::newText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemProperties_GetSearchText \ +static_assert(alignof(AkItemProperties_GetSearchText) == 0x000008, "Wrong alignment on AkItemProperties_GetSearchText"); \ +static_assert(sizeof(AkItemProperties_GetSearchText) == 0x000010, "Wrong size on AkItemProperties_GetSearchText"); \ +static_assert(offsetof(AkItemProperties_GetSearchText, ReturnValue) == 0x000000, "Member 'AkItemProperties_GetSearchText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkItemProperties_GetSelectedProperty \ +static_assert(alignof(AkItemProperties_GetSelectedProperty) == 0x000008, "Wrong alignment on AkItemProperties_GetSelectedProperty"); \ +static_assert(sizeof(AkItemProperties_GetSelectedProperty) == 0x000010, "Wrong size on AkItemProperties_GetSelectedProperty"); \ +static_assert(offsetof(AkItemProperties_GetSelectedProperty, ReturnValue) == 0x000000, "Member 'AkItemProperties_GetSelectedProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkItemProperties \ +static_assert(alignof(UAkItemProperties) == 0x000008, "Wrong alignment on UAkItemProperties"); \ +static_assert(sizeof(UAkItemProperties) == 0x0001C0, "Wrong size on UAkItemProperties"); \ +static_assert(offsetof(UAkItemProperties, OnSelectionChanged) == 0x000180, "Member 'UAkItemProperties::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkItemProperties, OnPropertyDragged) == 0x000190, "Member 'UAkItemProperties::OnPropertyDragged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkLateReverbComponent_AssociateAkTextureSetComponent \ +static_assert(alignof(AkLateReverbComponent_AssociateAkTextureSetComponent) == 0x000008, "Wrong alignment on AkLateReverbComponent_AssociateAkTextureSetComponent"); \ +static_assert(sizeof(AkLateReverbComponent_AssociateAkTextureSetComponent) == 0x000008, "Wrong size on AkLateReverbComponent_AssociateAkTextureSetComponent"); \ +static_assert(offsetof(AkLateReverbComponent_AssociateAkTextureSetComponent, textureSetComponent) == 0x000000, "Member 'AkLateReverbComponent_AssociateAkTextureSetComponent::textureSetComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkLateReverbComponent \ +static_assert(alignof(UAkLateReverbComponent) == 0x000010, "Wrong alignment on UAkLateReverbComponent"); \ +static_assert(sizeof(UAkLateReverbComponent) == 0x000330, "Wrong size on UAkLateReverbComponent"); \ +static_assert(offsetof(UAkLateReverbComponent, bEnable) == 0x0002A0, "Member 'UAkLateReverbComponent::bEnable' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, SendLevel) == 0x0002A4, "Member 'UAkLateReverbComponent::SendLevel' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, FadeRate) == 0x0002A8, "Member 'UAkLateReverbComponent::FadeRate' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, Priority) == 0x0002AC, "Member 'UAkLateReverbComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, AutoAssignAuxBus) == 0x0002B0, "Member 'UAkLateReverbComponent::AutoAssignAuxBus' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, AuxBus) == 0x0002B8, "Member 'UAkLateReverbComponent::AuxBus' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, AuxBusName) == 0x0002C0, "Member 'UAkLateReverbComponent::AuxBusName' has a wrong offset!"); \ +static_assert(offsetof(UAkLateReverbComponent, AuxBusManual) == 0x0002D8, "Member 'UAkLateReverbComponent::AuxBusManual' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkLinuxInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkLinuxInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkLinuxInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkLinuxInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkLinuxInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkLinuxInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkLinuxInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkLinuxInitializationSettings \ +static_assert(alignof(UAkLinuxInitializationSettings) == 0x000008, "Wrong alignment on UAkLinuxInitializationSettings"); \ +static_assert(sizeof(UAkLinuxInitializationSettings) == 0x0000F0, "Wrong size on UAkLinuxInitializationSettings"); \ +static_assert(offsetof(UAkLinuxInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkLinuxInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkLinuxInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkLinuxInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkLinuxInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkLinuxInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkLinuxPlatformInfo \ +static_assert(alignof(UAkLinuxPlatformInfo) == 0x000008, "Wrong alignment on UAkLinuxPlatformInfo"); \ +static_assert(sizeof(UAkLinuxPlatformInfo) == 0x000070, "Wrong size on UAkLinuxPlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkMacInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkMacInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkMacInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkMacInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkMacInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkMacInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkMacInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMacInitializationSettings \ +static_assert(alignof(UAkMacInitializationSettings) == 0x000008, "Wrong alignment on UAkMacInitializationSettings"); \ +static_assert(sizeof(UAkMacInitializationSettings) == 0x0000F0, "Wrong size on UAkMacInitializationSettings"); \ +static_assert(offsetof(UAkMacInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkMacInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkMacInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkMacInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkMacInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkMacInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMacPlatformInfo \ +static_assert(alignof(UAkMacPlatformInfo) == 0x000008, "Wrong alignment on UAkMacPlatformInfo"); \ +static_assert(sizeof(UAkMacPlatformInfo) == 0x000070, "Wrong size on UAkMacPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkMediaAssetData \ +static_assert(alignof(UAkMediaAssetData) == 0x000008, "Wrong alignment on UAkMediaAssetData"); \ +static_assert(sizeof(UAkMediaAssetData) == 0x000078, "Wrong size on UAkMediaAssetData"); \ +static_assert(offsetof(UAkMediaAssetData, IsStreamed) == 0x000028, "Member 'UAkMediaAssetData::IsStreamed' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAssetData, UseDeviceMemory) == 0x000029, "Member 'UAkMediaAssetData::UseDeviceMemory' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAssetData, Language) == 0x000030, "Member 'UAkMediaAssetData::Language' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAssetData, AssetPlatform) == 0x000040, "Member 'UAkMediaAssetData::AssetPlatform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMediaAsset \ +static_assert(alignof(UAkMediaAsset) == 0x000008, "Wrong alignment on UAkMediaAsset"); \ +static_assert(sizeof(UAkMediaAsset) == 0x000078, "Wrong size on UAkMediaAsset"); \ +static_assert(offsetof(UAkMediaAsset, ID) == 0x000028, "Member 'UAkMediaAsset::ID' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAsset, MediaName) == 0x000030, "Member 'UAkMediaAsset::MediaName' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAsset, AutoLoad) == 0x000040, "Member 'UAkMediaAsset::AutoLoad' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAsset, UserData) == 0x000048, "Member 'UAkMediaAsset::UserData' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAsset, Language) == 0x000058, "Member 'UAkMediaAsset::Language' has a wrong offset!"); \ +static_assert(offsetof(UAkMediaAsset, CurrentMediaAssetData) == 0x000068, "Member 'UAkMediaAsset::CurrentMediaAssetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkLocalizedMediaAsset \ +static_assert(alignof(UAkLocalizedMediaAsset) == 0x000008, "Wrong alignment on UAkLocalizedMediaAsset"); \ +static_assert(sizeof(UAkLocalizedMediaAsset) == 0x000078, "Wrong size on UAkLocalizedMediaAsset"); \ + +#define DUMPER7_ASSERTS_UAkExternalMediaAsset \ +static_assert(alignof(UAkExternalMediaAsset) == 0x000008, "Wrong alignment on UAkExternalMediaAsset"); \ +static_assert(sizeof(UAkExternalMediaAsset) == 0x0000D8, "Wrong size on UAkExternalMediaAsset"); \ + +#define DUMPER7_ASSERTS_IAkPlatformInitialisationSettingsBase \ +static_assert(alignof(IAkPlatformInitialisationSettingsBase) == 0x000001, "Wrong alignment on IAkPlatformInitialisationSettingsBase"); \ +static_assert(sizeof(IAkPlatformInitialisationSettingsBase) == 0x000001, "Wrong size on IAkPlatformInitialisationSettingsBase"); \ + +#define DUMPER7_ASSERTS_AkPS4InitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkPS4InitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkPS4InitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkPS4InitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkPS4InitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkPS4InitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkPS4InitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkPS4InitializationSettings \ +static_assert(alignof(UAkPS4InitializationSettings) == 0x000008, "Wrong alignment on UAkPS4InitializationSettings"); \ +static_assert(sizeof(UAkPS4InitializationSettings) == 0x0000F0, "Wrong size on UAkPS4InitializationSettings"); \ +static_assert(offsetof(UAkPS4InitializationSettings, CommonSettings) == 0x000030, "Member 'UAkPS4InitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkPS4InitializationSettings, CommunicationSettings) == 0x000090, "Member 'UAkPS4InitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkPS4InitializationSettings, AdvancedSettings) == 0x0000B8, "Member 'UAkPS4InitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkPS4PlatformInfo \ +static_assert(alignof(UAkPS4PlatformInfo) == 0x000008, "Wrong alignment on UAkPS4PlatformInfo"); \ +static_assert(sizeof(UAkPS4PlatformInfo) == 0x000070, "Wrong size on UAkPS4PlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkPS5InitializationSettings \ +static_assert(alignof(UAkPS5InitializationSettings) == 0x000008, "Wrong alignment on UAkPS5InitializationSettings"); \ +static_assert(sizeof(UAkPS5InitializationSettings) == 0x0000F0, "Wrong size on UAkPS5InitializationSettings"); \ +static_assert(offsetof(UAkPS5InitializationSettings, CommonSettings) == 0x000030, "Member 'UAkPS5InitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkPS5InitializationSettings, CommunicationSettings) == 0x000090, "Member 'UAkPS5InitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkPS5InitializationSettings, AdvancedSettings) == 0x0000B8, "Member 'UAkPS5InitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkDPXInitializationSettings \ +static_assert(alignof(UAkDPXInitializationSettings) == 0x000008, "Wrong alignment on UAkDPXInitializationSettings"); \ +static_assert(sizeof(UAkDPXInitializationSettings) == 0x0000F0, "Wrong size on UAkDPXInitializationSettings"); \ + +#define DUMPER7_ASSERTS_UAkPS5PlatformInfo \ +static_assert(alignof(UAkPS5PlatformInfo) == 0x000008, "Wrong alignment on UAkPS5PlatformInfo"); \ +static_assert(sizeof(UAkPS5PlatformInfo) == 0x000070, "Wrong size on UAkPS5PlatformInfo"); \ + +#define DUMPER7_ASSERTS_AAkReverbVolume \ +static_assert(alignof(AAkReverbVolume) == 0x000008, "Wrong alignment on AAkReverbVolume"); \ +static_assert(sizeof(AAkReverbVolume) == 0x000308, "Wrong size on AAkReverbVolume"); \ +static_assert(offsetof(AAkReverbVolume, bEnabled) == 0x0002D0, "Member 'AAkReverbVolume::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, AuxBus) == 0x0002D8, "Member 'AAkReverbVolume::AuxBus' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, AuxBusName) == 0x0002E0, "Member 'AAkReverbVolume::AuxBusName' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, SendLevel) == 0x0002F0, "Member 'AAkReverbVolume::SendLevel' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, FadeRate) == 0x0002F4, "Member 'AAkReverbVolume::FadeRate' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, Priority) == 0x0002F8, "Member 'AAkReverbVolume::Priority' has a wrong offset!"); \ +static_assert(offsetof(AAkReverbVolume, LateReverbComponent) == 0x000300, "Member 'AAkReverbVolume::LateReverbComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkRoomComponent_SetGeometryComponent \ +static_assert(alignof(AkRoomComponent_SetGeometryComponent) == 0x000008, "Wrong alignment on AkRoomComponent_SetGeometryComponent"); \ +static_assert(sizeof(AkRoomComponent_SetGeometryComponent) == 0x000008, "Wrong size on AkRoomComponent_SetGeometryComponent"); \ +static_assert(offsetof(AkRoomComponent_SetGeometryComponent, textureSetComponent) == 0x000000, "Member 'AkRoomComponent_SetGeometryComponent::textureSetComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkRoomComponent_GetPrimitiveParent \ +static_assert(alignof(AkRoomComponent_GetPrimitiveParent) == 0x000008, "Wrong alignment on AkRoomComponent_GetPrimitiveParent"); \ +static_assert(sizeof(AkRoomComponent_GetPrimitiveParent) == 0x000008, "Wrong size on AkRoomComponent_GetPrimitiveParent"); \ +static_assert(offsetof(AkRoomComponent_GetPrimitiveParent, ReturnValue) == 0x000000, "Member 'AkRoomComponent_GetPrimitiveParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkRoomComponent \ +static_assert(alignof(UAkRoomComponent) == 0x000010, "Wrong alignment on UAkRoomComponent"); \ +static_assert(sizeof(UAkRoomComponent) == 0x0002F0, "Wrong size on UAkRoomComponent"); \ +static_assert(offsetof(UAkRoomComponent, bEnable) == 0x0002C0, "Member 'UAkRoomComponent::bEnable' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, bDynamic) == 0x0002C1, "Member 'UAkRoomComponent::bDynamic' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, Priority) == 0x0002C4, "Member 'UAkRoomComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, WallOcclusion) == 0x0002C8, "Member 'UAkRoomComponent::WallOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, AuxSendLevel) == 0x0002CC, "Member 'UAkRoomComponent::AuxSendLevel' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, AutoPost) == 0x0002D0, "Member 'UAkRoomComponent::AutoPost' has a wrong offset!"); \ +static_assert(offsetof(UAkRoomComponent, GeometryComponent) == 0x0002E0, "Member 'UAkRoomComponent::GeometryComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkRtpc \ +static_assert(alignof(UAkRtpc) == 0x000008, "Wrong alignment on UAkRtpc"); \ +static_assert(sizeof(UAkRtpc) == 0x000040, "Wrong size on UAkRtpc"); \ + +#define DUMPER7_ASSERTS_UAkSettings \ +static_assert(alignof(UAkSettings) == 0x000008, "Wrong alignment on UAkSettings"); \ +static_assert(sizeof(UAkSettings) == 0x0002E0, "Wrong size on UAkSettings"); \ +static_assert(offsetof(UAkSettings, MaxSimultaneousReverbVolumes) == 0x000028, "Member 'UAkSettings::MaxSimultaneousReverbVolumes' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, WwiseProjectPath) == 0x000030, "Member 'UAkSettings::WwiseProjectPath' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, WwiseSoundDataFolder) == 0x000040, "Member 'UAkSettings::WwiseSoundDataFolder' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, bAutoConnectToWAAPI) == 0x000050, "Member 'UAkSettings::bAutoConnectToWAAPI' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, DefaultOcclusionCollisionChannel) == 0x000051, "Member 'UAkSettings::DefaultOcclusionCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, DefaultFitToGeometryCollisionChannel) == 0x000052, "Member 'UAkSettings::DefaultFitToGeometryCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, AkGeometryMap) == 0x000058, "Member 'UAkSettings::AkGeometryMap' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, GlobalDecayAbsorption) == 0x0000A8, "Member 'UAkSettings::GlobalDecayAbsorption' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, DefaultReverbAuxBus) == 0x0000B0, "Member 'UAkSettings::DefaultReverbAuxBus' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, EnvironmentDecayAuxBusMap) == 0x0000D8, "Member 'UAkSettings::EnvironmentDecayAuxBusMap' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, HFDampingName) == 0x000128, "Member 'UAkSettings::HFDampingName' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, DecayEstimateName) == 0x000138, "Member 'UAkSettings::DecayEstimateName' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, TimeToFirstReflectionName) == 0x000148, "Member 'UAkSettings::TimeToFirstReflectionName' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, HFDampingRTPC) == 0x000158, "Member 'UAkSettings::HFDampingRTPC' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, DecayEstimateRTPC) == 0x000180, "Member 'UAkSettings::DecayEstimateRTPC' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, TimeToFirstReflectionRTPC) == 0x0001A8, "Member 'UAkSettings::TimeToFirstReflectionRTPC' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, AudioInputEvent) == 0x0001D0, "Member 'UAkSettings::AudioInputEvent' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, AcousticTextureParamsMap) == 0x0001F8, "Member 'UAkSettings::AcousticTextureParamsMap' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, SplitSwitchContainerMedia) == 0x000248, "Member 'UAkSettings::SplitSwitchContainerMedia' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, SplitMediaPerFolder) == 0x000249, "Member 'UAkSettings::SplitMediaPerFolder' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, UseEventBasedPackaging) == 0x00024A, "Member 'UAkSettings::UseEventBasedPackaging' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, EnableAutomaticAssetSynchronization) == 0x00024B, "Member 'UAkSettings::EnableAutomaticAssetSynchronization' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, CommandletCommitMessage) == 0x000250, "Member 'UAkSettings::CommandletCommitMessage' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, UnrealCultureToWwiseCulture) == 0x000260, "Member 'UAkSettings::UnrealCultureToWwiseCulture' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, AskedToUseNewAssetManagement) == 0x0002B0, "Member 'UAkSettings::AskedToUseNewAssetManagement' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, bEnableMultiCoreRendering) == 0x0002B1, "Member 'UAkSettings::bEnableMultiCoreRendering' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, MigratedEnableMultiCoreRendering) == 0x0002B2, "Member 'UAkSettings::MigratedEnableMultiCoreRendering' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, FixupRedirectorsDuringMigration) == 0x0002B3, "Member 'UAkSettings::FixupRedirectorsDuringMigration' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, WwiseWindowsInstallationPath) == 0x0002B8, "Member 'UAkSettings::WwiseWindowsInstallationPath' has a wrong offset!"); \ +static_assert(offsetof(UAkSettings, WwiseMacInstallationPath) == 0x0002C8, "Member 'UAkSettings::WwiseMacInstallationPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkSettingsPerUser \ +static_assert(alignof(UAkSettingsPerUser) == 0x000008, "Wrong alignment on UAkSettingsPerUser"); \ +static_assert(sizeof(UAkSettingsPerUser) == 0x000080, "Wrong size on UAkSettingsPerUser"); \ +static_assert(offsetof(UAkSettingsPerUser, WwiseWindowsInstallationPath) == 0x000028, "Member 'UAkSettingsPerUser::WwiseWindowsInstallationPath' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, WwiseMacInstallationPath) == 0x000038, "Member 'UAkSettingsPerUser::WwiseMacInstallationPath' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, EnableAutomaticAssetSynchronization) == 0x000048, "Member 'UAkSettingsPerUser::EnableAutomaticAssetSynchronization' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, WaapiIPAddress) == 0x000050, "Member 'UAkSettingsPerUser::WaapiIPAddress' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, WaapiPort) == 0x000060, "Member 'UAkSettingsPerUser::WaapiPort' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, bAutoConnectToWAAPI) == 0x000064, "Member 'UAkSettingsPerUser::bAutoConnectToWAAPI' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, AutoSyncSelection) == 0x000065, "Member 'UAkSettingsPerUser::AutoSyncSelection' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, SuppressWwiseProjectPathWarnings) == 0x000066, "Member 'UAkSettingsPerUser::SuppressWwiseProjectPathWarnings' has a wrong offset!"); \ +static_assert(offsetof(UAkSettingsPerUser, SoundDataGenerationSkipLanguage) == 0x000067, "Member 'UAkSettingsPerUser::SoundDataGenerationSkipLanguage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetAkSliderItemId \ +static_assert(alignof(AkSlider_SetAkSliderItemId) == 0x000004, "Wrong alignment on AkSlider_SetAkSliderItemId"); \ +static_assert(sizeof(AkSlider_SetAkSliderItemId) == 0x000010, "Wrong size on AkSlider_SetAkSliderItemId"); \ +static_assert(offsetof(AkSlider_SetAkSliderItemId, ItemId) == 0x000000, "Member 'AkSlider_SetAkSliderItemId::ItemId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetAkSliderItemProperty \ +static_assert(alignof(AkSlider_SetAkSliderItemProperty) == 0x000008, "Wrong alignment on AkSlider_SetAkSliderItemProperty"); \ +static_assert(sizeof(AkSlider_SetAkSliderItemProperty) == 0x000010, "Wrong size on AkSlider_SetAkSliderItemProperty"); \ +static_assert(offsetof(AkSlider_SetAkSliderItemProperty, ItemProperty) == 0x000000, "Member 'AkSlider_SetAkSliderItemProperty::ItemProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetIndentHandle \ +static_assert(alignof(AkSlider_SetIndentHandle) == 0x000001, "Wrong alignment on AkSlider_SetIndentHandle"); \ +static_assert(sizeof(AkSlider_SetIndentHandle) == 0x000001, "Wrong size on AkSlider_SetIndentHandle"); \ +static_assert(offsetof(AkSlider_SetIndentHandle, InValue) == 0x000000, "Member 'AkSlider_SetIndentHandle::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetLocked \ +static_assert(alignof(AkSlider_SetLocked) == 0x000001, "Wrong alignment on AkSlider_SetLocked"); \ +static_assert(sizeof(AkSlider_SetLocked) == 0x000001, "Wrong size on AkSlider_SetLocked"); \ +static_assert(offsetof(AkSlider_SetLocked, InValue) == 0x000000, "Member 'AkSlider_SetLocked::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetSliderBarColor \ +static_assert(alignof(AkSlider_SetSliderBarColor) == 0x000004, "Wrong alignment on AkSlider_SetSliderBarColor"); \ +static_assert(sizeof(AkSlider_SetSliderBarColor) == 0x000010, "Wrong size on AkSlider_SetSliderBarColor"); \ +static_assert(offsetof(AkSlider_SetSliderBarColor, InValue) == 0x000000, "Member 'AkSlider_SetSliderBarColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetSliderHandleColor \ +static_assert(alignof(AkSlider_SetSliderHandleColor) == 0x000004, "Wrong alignment on AkSlider_SetSliderHandleColor"); \ +static_assert(sizeof(AkSlider_SetSliderHandleColor) == 0x000010, "Wrong size on AkSlider_SetSliderHandleColor"); \ +static_assert(offsetof(AkSlider_SetSliderHandleColor, InValue) == 0x000000, "Member 'AkSlider_SetSliderHandleColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetStepSize \ +static_assert(alignof(AkSlider_SetStepSize) == 0x000004, "Wrong alignment on AkSlider_SetStepSize"); \ +static_assert(sizeof(AkSlider_SetStepSize) == 0x000004, "Wrong size on AkSlider_SetStepSize"); \ +static_assert(offsetof(AkSlider_SetStepSize, InValue) == 0x000000, "Member 'AkSlider_SetStepSize::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_SetValue \ +static_assert(alignof(AkSlider_SetValue) == 0x000004, "Wrong alignment on AkSlider_SetValue"); \ +static_assert(sizeof(AkSlider_SetValue) == 0x000004, "Wrong size on AkSlider_SetValue"); \ +static_assert(offsetof(AkSlider_SetValue, InValue) == 0x000000, "Member 'AkSlider_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_GetAkSliderItemId \ +static_assert(alignof(AkSlider_GetAkSliderItemId) == 0x000004, "Wrong alignment on AkSlider_GetAkSliderItemId"); \ +static_assert(sizeof(AkSlider_GetAkSliderItemId) == 0x000010, "Wrong size on AkSlider_GetAkSliderItemId"); \ +static_assert(offsetof(AkSlider_GetAkSliderItemId, ReturnValue) == 0x000000, "Member 'AkSlider_GetAkSliderItemId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_GetAkSliderItemProperty \ +static_assert(alignof(AkSlider_GetAkSliderItemProperty) == 0x000008, "Wrong alignment on AkSlider_GetAkSliderItemProperty"); \ +static_assert(sizeof(AkSlider_GetAkSliderItemProperty) == 0x000010, "Wrong size on AkSlider_GetAkSliderItemProperty"); \ +static_assert(offsetof(AkSlider_GetAkSliderItemProperty, ReturnValue) == 0x000000, "Member 'AkSlider_GetAkSliderItemProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSlider_GetValue \ +static_assert(alignof(AkSlider_GetValue) == 0x000004, "Wrong alignment on AkSlider_GetValue"); \ +static_assert(sizeof(AkSlider_GetValue) == 0x000004, "Wrong size on AkSlider_GetValue"); \ +static_assert(offsetof(AkSlider_GetValue, ReturnValue) == 0x000000, "Member 'AkSlider_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkSlider \ +static_assert(alignof(UAkSlider) == 0x000010, "Wrong alignment on UAkSlider"); \ +static_assert(sizeof(UAkSlider) == 0x000770, "Wrong size on UAkSlider"); \ +static_assert(offsetof(UAkSlider, Value) == 0x000180, "Member 'UAkSlider::Value' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, ValueDelegate) == 0x000184, "Member 'UAkSlider::ValueDelegate' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, WidgetStyle) == 0x0001A0, "Member 'UAkSlider::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, Orientation) == 0x0006A0, "Member 'UAkSlider::Orientation' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, SliderBarColor) == 0x0006A4, "Member 'UAkSlider::SliderBarColor' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, SliderHandleColor) == 0x0006B4, "Member 'UAkSlider::SliderHandleColor' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, IndentHandle) == 0x0006C4, "Member 'UAkSlider::IndentHandle' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, Locked) == 0x0006C5, "Member 'UAkSlider::Locked' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, StepSize) == 0x0006C8, "Member 'UAkSlider::StepSize' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, IsFocusable) == 0x0006CC, "Member 'UAkSlider::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, ThePropertyToControl) == 0x0006D0, "Member 'UAkSlider::ThePropertyToControl' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, ItemToControl) == 0x0006E0, "Member 'UAkSlider::ItemToControl' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, OnValueChanged) == 0x000720, "Member 'UAkSlider::OnValueChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, OnItemDropped) == 0x000730, "Member 'UAkSlider::OnItemDropped' has a wrong offset!"); \ +static_assert(offsetof(UAkSlider, OnPropertyDropped) == 0x000740, "Member 'UAkSlider::OnPropertyDropped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAkSpatialAudioVolume \ +static_assert(alignof(AAkSpatialAudioVolume) == 0x000008, "Wrong alignment on AAkSpatialAudioVolume"); \ +static_assert(sizeof(AAkSpatialAudioVolume) == 0x0002E8, "Wrong size on AAkSpatialAudioVolume"); \ +static_assert(offsetof(AAkSpatialAudioVolume, SurfaceReflectorSet) == 0x0002D0, "Member 'AAkSpatialAudioVolume::SurfaceReflectorSet' has a wrong offset!"); \ +static_assert(offsetof(AAkSpatialAudioVolume, LateReverb) == 0x0002D8, "Member 'AAkSpatialAudioVolume::LateReverb' has a wrong offset!"); \ +static_assert(offsetof(AAkSpatialAudioVolume, Room) == 0x0002E0, "Member 'AAkSpatialAudioVolume::Room' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAkSpotReflector \ +static_assert(alignof(AAkSpotReflector) == 0x000008, "Wrong alignment on AAkSpotReflector"); \ +static_assert(sizeof(AAkSpotReflector) == 0x0002C0, "Wrong size on AAkSpotReflector"); \ +static_assert(offsetof(AAkSpotReflector, EarlyReflectionAuxBus) == 0x000298, "Member 'AAkSpotReflector::EarlyReflectionAuxBus' has a wrong offset!"); \ +static_assert(offsetof(AAkSpotReflector, EarlyReflectionAuxBusName) == 0x0002A0, "Member 'AAkSpotReflector::EarlyReflectionAuxBusName' has a wrong offset!"); \ +static_assert(offsetof(AAkSpotReflector, AcousticTexture) == 0x0002B0, "Member 'AAkSpotReflector::AcousticTexture' has a wrong offset!"); \ +static_assert(offsetof(AAkSpotReflector, DistanceScalingFactor) == 0x0002B8, "Member 'AAkSpotReflector::DistanceScalingFactor' has a wrong offset!"); \ +static_assert(offsetof(AAkSpotReflector, Level) == 0x0002BC, "Member 'AAkSpotReflector::Level' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkStateValue \ +static_assert(alignof(UAkStateValue) == 0x000008, "Wrong alignment on UAkStateValue"); \ +static_assert(sizeof(UAkStateValue) == 0x000068, "Wrong size on UAkStateValue"); \ + +#define DUMPER7_ASSERTS_UAkSubmixInputComponent \ +static_assert(alignof(UAkSubmixInputComponent) == 0x000010, "Wrong alignment on UAkSubmixInputComponent"); \ +static_assert(sizeof(UAkSubmixInputComponent) == 0x000510, "Wrong size on UAkSubmixInputComponent"); \ +static_assert(offsetof(UAkSubmixInputComponent, SubmixToRecord) == 0x0004C0, "Member 'UAkSubmixInputComponent::SubmixToRecord' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkSurfaceReflectorSetComponent \ +static_assert(alignof(UAkSurfaceReflectorSetComponent) == 0x000010, "Wrong alignment on UAkSurfaceReflectorSetComponent"); \ +static_assert(sizeof(UAkSurfaceReflectorSetComponent) == 0x0002F0, "Wrong size on UAkSurfaceReflectorSetComponent"); \ +static_assert(offsetof(UAkSurfaceReflectorSetComponent, bEnableSurfaceReflectors) == 0x0002B8, "Member 'UAkSurfaceReflectorSetComponent::bEnableSurfaceReflectors' has a wrong offset!"); \ +static_assert(offsetof(UAkSurfaceReflectorSetComponent, AcousticPolys) == 0x0002C0, "Member 'UAkSurfaceReflectorSetComponent::AcousticPolys' has a wrong offset!"); \ +static_assert(offsetof(UAkSurfaceReflectorSetComponent, bEnableDiffraction) == 0x0002D0, "Member 'UAkSurfaceReflectorSetComponent::bEnableDiffraction' has a wrong offset!"); \ +static_assert(offsetof(UAkSurfaceReflectorSetComponent, bEnableDiffractionOnBoundaryEdges) == 0x0002D1, "Member 'UAkSurfaceReflectorSetComponent::bEnableDiffractionOnBoundaryEdges' has a wrong offset!"); \ +static_assert(offsetof(UAkSurfaceReflectorSetComponent, AssociatedRoom) == 0x0002D8, "Member 'UAkSurfaceReflectorSetComponent::AssociatedRoom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkSwitchInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkSwitchInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkSwitchInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkSwitchInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkSwitchInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkSwitchInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkSwitchInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkSwitchInitializationSettings \ +static_assert(alignof(UAkSwitchInitializationSettings) == 0x000008, "Wrong alignment on UAkSwitchInitializationSettings"); \ +static_assert(sizeof(UAkSwitchInitializationSettings) == 0x0000F0, "Wrong size on UAkSwitchInitializationSettings"); \ +static_assert(offsetof(UAkSwitchInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkSwitchInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkSwitchInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkSwitchInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkSwitchInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkSwitchInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkSwitchPlatformInfo \ +static_assert(alignof(UAkSwitchPlatformInfo) == 0x000008, "Wrong alignment on UAkSwitchPlatformInfo"); \ +static_assert(sizeof(UAkSwitchPlatformInfo) == 0x000070, "Wrong size on UAkSwitchPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkSwitchValue \ +static_assert(alignof(UAkSwitchValue) == 0x000008, "Wrong alignment on UAkSwitchValue"); \ +static_assert(sizeof(UAkSwitchValue) == 0x000068, "Wrong size on UAkSwitchValue"); \ + +#define DUMPER7_ASSERTS_UAkTrigger \ +static_assert(alignof(UAkTrigger) == 0x000008, "Wrong alignment on UAkTrigger"); \ +static_assert(sizeof(UAkTrigger) == 0x000040, "Wrong size on UAkTrigger"); \ + +#define DUMPER7_ASSERTS_UAkTVOSInitializationSettings \ +static_assert(alignof(UAkTVOSInitializationSettings) == 0x000008, "Wrong alignment on UAkTVOSInitializationSettings"); \ +static_assert(sizeof(UAkTVOSInitializationSettings) == 0x000100, "Wrong size on UAkTVOSInitializationSettings"); \ +static_assert(offsetof(UAkTVOSInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkTVOSInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkTVOSInitializationSettings, AudioSession) == 0x000098, "Member 'UAkTVOSInitializationSettings::AudioSession' has a wrong offset!"); \ +static_assert(offsetof(UAkTVOSInitializationSettings, CommunicationSettings) == 0x0000A8, "Member 'UAkTVOSInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkTVOSInitializationSettings, AdvancedSettings) == 0x0000D0, "Member 'UAkTVOSInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkTVOSPlatformInfo \ +static_assert(alignof(UAkTVOSPlatformInfo) == 0x000008, "Wrong alignment on UAkTVOSPlatformInfo"); \ +static_assert(sizeof(UAkTVOSPlatformInfo) == 0x000070, "Wrong size on UAkTVOSPlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_CallWaapi \ +static_assert(alignof(AkWaapiCalls_CallWaapi) == 0x000008, "Wrong alignment on AkWaapiCalls_CallWaapi"); \ +static_assert(sizeof(AkWaapiCalls_CallWaapi) == 0x000040, "Wrong size on AkWaapiCalls_CallWaapi"); \ +static_assert(offsetof(AkWaapiCalls_CallWaapi, WaapiUri) == 0x000000, "Member 'AkWaapiCalls_CallWaapi::WaapiUri' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_CallWaapi, WaapiArgs) == 0x000010, "Member 'AkWaapiCalls_CallWaapi::WaapiArgs' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_CallWaapi, WaapiOptions) == 0x000020, "Member 'AkWaapiCalls_CallWaapi::WaapiOptions' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_CallWaapi, ReturnValue) == 0x000030, "Member 'AkWaapiCalls_CallWaapi::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString \ +static_assert(alignof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString) == 0x000008, "Wrong alignment on AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString"); \ +static_assert(sizeof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString) == 0x000018, "Wrong size on AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString"); \ +static_assert(offsetof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString, INAkWaapiSubscriptionId) == 0x000000, "Member 'AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString::INAkWaapiSubscriptionId' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString, ReturnValue) == 0x000008, "Member 'AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText \ +static_assert(alignof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText) == 0x000008, "Wrong alignment on AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText"); \ +static_assert(sizeof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText) == 0x000020, "Wrong size on AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText"); \ +static_assert(offsetof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText, INAkWaapiSubscriptionId) == 0x000000, "Member 'AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText::INAkWaapiSubscriptionId' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText, ReturnValue) == 0x000008, "Member 'AkWaapiCalls_Conv_FAkWaapiSubscriptionIdToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_GetSubscriptionID \ +static_assert(alignof(AkWaapiCalls_GetSubscriptionID) == 0x000008, "Wrong alignment on AkWaapiCalls_GetSubscriptionID"); \ +static_assert(sizeof(AkWaapiCalls_GetSubscriptionID) == 0x000010, "Wrong size on AkWaapiCalls_GetSubscriptionID"); \ +static_assert(offsetof(AkWaapiCalls_GetSubscriptionID, Subscription) == 0x000000, "Member 'AkWaapiCalls_GetSubscriptionID::Subscription' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_GetSubscriptionID, ReturnValue) == 0x000008, "Member 'AkWaapiCalls_GetSubscriptionID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_RegisterWaapiConnectionLostCallback \ +static_assert(alignof(AkWaapiCalls_RegisterWaapiConnectionLostCallback) == 0x000004, "Wrong alignment on AkWaapiCalls_RegisterWaapiConnectionLostCallback"); \ +static_assert(sizeof(AkWaapiCalls_RegisterWaapiConnectionLostCallback) == 0x000014, "Wrong size on AkWaapiCalls_RegisterWaapiConnectionLostCallback"); \ +static_assert(offsetof(AkWaapiCalls_RegisterWaapiConnectionLostCallback, Callback) == 0x000000, "Member 'AkWaapiCalls_RegisterWaapiConnectionLostCallback::Callback' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_RegisterWaapiConnectionLostCallback, ReturnValue) == 0x000010, "Member 'AkWaapiCalls_RegisterWaapiConnectionLostCallback::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_RegisterWaapiProjectLoadedCallback \ +static_assert(alignof(AkWaapiCalls_RegisterWaapiProjectLoadedCallback) == 0x000004, "Wrong alignment on AkWaapiCalls_RegisterWaapiProjectLoadedCallback"); \ +static_assert(sizeof(AkWaapiCalls_RegisterWaapiProjectLoadedCallback) == 0x000014, "Wrong size on AkWaapiCalls_RegisterWaapiProjectLoadedCallback"); \ +static_assert(offsetof(AkWaapiCalls_RegisterWaapiProjectLoadedCallback, Callback) == 0x000000, "Member 'AkWaapiCalls_RegisterWaapiProjectLoadedCallback::Callback' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_RegisterWaapiProjectLoadedCallback, ReturnValue) == 0x000010, "Member 'AkWaapiCalls_RegisterWaapiProjectLoadedCallback::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_SetSubscriptionID \ +static_assert(alignof(AkWaapiCalls_SetSubscriptionID) == 0x000008, "Wrong alignment on AkWaapiCalls_SetSubscriptionID"); \ +static_assert(sizeof(AkWaapiCalls_SetSubscriptionID) == 0x000010, "Wrong size on AkWaapiCalls_SetSubscriptionID"); \ +static_assert(offsetof(AkWaapiCalls_SetSubscriptionID, Subscription) == 0x000000, "Member 'AkWaapiCalls_SetSubscriptionID::Subscription' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SetSubscriptionID, ID) == 0x000008, "Member 'AkWaapiCalls_SetSubscriptionID::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_SubscribeToWaapi \ +static_assert(alignof(AkWaapiCalls_SubscribeToWaapi) == 0x000008, "Wrong alignment on AkWaapiCalls_SubscribeToWaapi"); \ +static_assert(sizeof(AkWaapiCalls_SubscribeToWaapi) == 0x000050, "Wrong size on AkWaapiCalls_SubscribeToWaapi"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, WaapiUri) == 0x000000, "Member 'AkWaapiCalls_SubscribeToWaapi::WaapiUri' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, WaapiOptions) == 0x000010, "Member 'AkWaapiCalls_SubscribeToWaapi::WaapiOptions' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, Callback) == 0x000020, "Member 'AkWaapiCalls_SubscribeToWaapi::Callback' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, SubscriptionId) == 0x000030, "Member 'AkWaapiCalls_SubscribeToWaapi::SubscriptionId' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, SubscriptionDone) == 0x000038, "Member 'AkWaapiCalls_SubscribeToWaapi::SubscriptionDone' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_SubscribeToWaapi, ReturnValue) == 0x000040, "Member 'AkWaapiCalls_SubscribeToWaapi::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiCalls_Unsubscribe \ +static_assert(alignof(AkWaapiCalls_Unsubscribe) == 0x000008, "Wrong alignment on AkWaapiCalls_Unsubscribe"); \ +static_assert(sizeof(AkWaapiCalls_Unsubscribe) == 0x000020, "Wrong size on AkWaapiCalls_Unsubscribe"); \ +static_assert(offsetof(AkWaapiCalls_Unsubscribe, SubscriptionId) == 0x000000, "Member 'AkWaapiCalls_Unsubscribe::SubscriptionId' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_Unsubscribe, UnsubscriptionDone) == 0x000008, "Member 'AkWaapiCalls_Unsubscribe::UnsubscriptionDone' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiCalls_Unsubscribe, ReturnValue) == 0x000010, "Member 'AkWaapiCalls_Unsubscribe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWaapiCalls \ +static_assert(alignof(UAkWaapiCalls) == 0x000008, "Wrong alignment on UAkWaapiCalls"); \ +static_assert(sizeof(UAkWaapiCalls) == 0x000028, "Wrong size on UAkWaapiCalls"); \ + +#define DUMPER7_ASSERTS_SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString \ +static_assert(alignof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString) == 0x000008, "Wrong alignment on SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString"); \ +static_assert(sizeof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString) == 0x000020, "Wrong size on SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString"); \ +static_assert(offsetof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString, INAkWaapiFieldNames) == 0x000000, "Member 'SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString::INAkWaapiFieldNames' has a wrong offset!"); \ +static_assert(offsetof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString, ReturnValue) == 0x000010, "Member 'SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText \ +static_assert(alignof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText) == 0x000008, "Wrong alignment on SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText"); \ +static_assert(sizeof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText) == 0x000028, "Wrong size on SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText"); \ +static_assert(offsetof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText, INAkWaapiFieldNames) == 0x000000, "Member 'SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText::INAkWaapiFieldNames' has a wrong offset!"); \ +static_assert(offsetof(SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText, ReturnValue) == 0x000010, "Member 'SAkWaapiFieldNamesConv_Conv_FAkWaapiFieldNamesToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USAkWaapiFieldNamesConv \ +static_assert(alignof(USAkWaapiFieldNamesConv) == 0x000008, "Wrong alignment on USAkWaapiFieldNamesConv"); \ +static_assert(sizeof(USAkWaapiFieldNamesConv) == 0x000028, "Wrong size on USAkWaapiFieldNamesConv"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString \ +static_assert(alignof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString) == 0x000008, "Wrong alignment on AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString"); \ +static_assert(sizeof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString) == 0x000020, "Wrong size on AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString"); \ +static_assert(offsetof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString, INAKWaapiJsonObject) == 0x000000, "Member 'AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString::INAKWaapiJsonObject' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString, ReturnValue) == 0x000010, "Member 'AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText \ +static_assert(alignof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText) == 0x000008, "Wrong alignment on AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText"); \ +static_assert(sizeof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText) == 0x000028, "Wrong size on AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText"); \ +static_assert(offsetof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText, INAKWaapiJsonObject) == 0x000000, "Member 'AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText::INAKWaapiJsonObject' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText, ReturnValue) == 0x000010, "Member 'AkWaapiJsonManager_Conv_FAKWaapiJsonObjectToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetArrayField \ +static_assert(alignof(AkWaapiJsonManager_GetArrayField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetArrayField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetArrayField) == 0x000030, "Wrong size on AkWaapiJsonManager_GetArrayField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetArrayField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetArrayField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetArrayField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetArrayField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetArrayField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetArrayField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetBoolField \ +static_assert(alignof(AkWaapiJsonManager_GetBoolField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetBoolField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetBoolField) == 0x000028, "Wrong size on AkWaapiJsonManager_GetBoolField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetBoolField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetBoolField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetBoolField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetBoolField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetBoolField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetBoolField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetIntegerField \ +static_assert(alignof(AkWaapiJsonManager_GetIntegerField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetIntegerField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetIntegerField) == 0x000028, "Wrong size on AkWaapiJsonManager_GetIntegerField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetIntegerField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetIntegerField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetIntegerField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetIntegerField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetIntegerField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetIntegerField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetNumberField \ +static_assert(alignof(AkWaapiJsonManager_GetNumberField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetNumberField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetNumberField) == 0x000028, "Wrong size on AkWaapiJsonManager_GetNumberField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetNumberField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetNumberField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetNumberField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetNumberField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetNumberField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetNumberField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetObjectField \ +static_assert(alignof(AkWaapiJsonManager_GetObjectField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetObjectField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetObjectField) == 0x000030, "Wrong size on AkWaapiJsonManager_GetObjectField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetObjectField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetObjectField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetObjectField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetObjectField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetObjectField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetObjectField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_GetStringField \ +static_assert(alignof(AkWaapiJsonManager_GetStringField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_GetStringField"); \ +static_assert(sizeof(AkWaapiJsonManager_GetStringField) == 0x000030, "Wrong size on AkWaapiJsonManager_GetStringField"); \ +static_assert(offsetof(AkWaapiJsonManager_GetStringField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_GetStringField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetStringField, Target) == 0x000010, "Member 'AkWaapiJsonManager_GetStringField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_GetStringField, ReturnValue) == 0x000020, "Member 'AkWaapiJsonManager_GetStringField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetArrayObjectFields \ +static_assert(alignof(AkWaapiJsonManager_SetArrayObjectFields) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetArrayObjectFields"); \ +static_assert(sizeof(AkWaapiJsonManager_SetArrayObjectFields) == 0x000040, "Wrong size on AkWaapiJsonManager_SetArrayObjectFields"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayObjectFields, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetArrayObjectFields::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayObjectFields, FieldObjectValues) == 0x000010, "Member 'AkWaapiJsonManager_SetArrayObjectFields::FieldObjectValues' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayObjectFields, Target) == 0x000020, "Member 'AkWaapiJsonManager_SetArrayObjectFields::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayObjectFields, ReturnValue) == 0x000030, "Member 'AkWaapiJsonManager_SetArrayObjectFields::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetArrayStringFields \ +static_assert(alignof(AkWaapiJsonManager_SetArrayStringFields) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetArrayStringFields"); \ +static_assert(sizeof(AkWaapiJsonManager_SetArrayStringFields) == 0x000040, "Wrong size on AkWaapiJsonManager_SetArrayStringFields"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayStringFields, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetArrayStringFields::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayStringFields, FieldStringValues) == 0x000010, "Member 'AkWaapiJsonManager_SetArrayStringFields::FieldStringValues' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayStringFields, Target) == 0x000020, "Member 'AkWaapiJsonManager_SetArrayStringFields::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetArrayStringFields, ReturnValue) == 0x000030, "Member 'AkWaapiJsonManager_SetArrayStringFields::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetBoolField \ +static_assert(alignof(AkWaapiJsonManager_SetBoolField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetBoolField"); \ +static_assert(sizeof(AkWaapiJsonManager_SetBoolField) == 0x000038, "Wrong size on AkWaapiJsonManager_SetBoolField"); \ +static_assert(offsetof(AkWaapiJsonManager_SetBoolField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetBoolField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetBoolField, FieldValue) == 0x000010, "Member 'AkWaapiJsonManager_SetBoolField::FieldValue' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetBoolField, Target) == 0x000018, "Member 'AkWaapiJsonManager_SetBoolField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetBoolField, ReturnValue) == 0x000028, "Member 'AkWaapiJsonManager_SetBoolField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetNumberField \ +static_assert(alignof(AkWaapiJsonManager_SetNumberField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetNumberField"); \ +static_assert(sizeof(AkWaapiJsonManager_SetNumberField) == 0x000038, "Wrong size on AkWaapiJsonManager_SetNumberField"); \ +static_assert(offsetof(AkWaapiJsonManager_SetNumberField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetNumberField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetNumberField, FieldValue) == 0x000010, "Member 'AkWaapiJsonManager_SetNumberField::FieldValue' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetNumberField, Target) == 0x000018, "Member 'AkWaapiJsonManager_SetNumberField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetNumberField, ReturnValue) == 0x000028, "Member 'AkWaapiJsonManager_SetNumberField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetObjectField \ +static_assert(alignof(AkWaapiJsonManager_SetObjectField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetObjectField"); \ +static_assert(sizeof(AkWaapiJsonManager_SetObjectField) == 0x000040, "Wrong size on AkWaapiJsonManager_SetObjectField"); \ +static_assert(offsetof(AkWaapiJsonManager_SetObjectField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetObjectField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetObjectField, FieldValue) == 0x000010, "Member 'AkWaapiJsonManager_SetObjectField::FieldValue' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetObjectField, Target) == 0x000020, "Member 'AkWaapiJsonManager_SetObjectField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetObjectField, ReturnValue) == 0x000030, "Member 'AkWaapiJsonManager_SetObjectField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiJsonManager_SetStringField \ +static_assert(alignof(AkWaapiJsonManager_SetStringField) == 0x000008, "Wrong alignment on AkWaapiJsonManager_SetStringField"); \ +static_assert(sizeof(AkWaapiJsonManager_SetStringField) == 0x000040, "Wrong size on AkWaapiJsonManager_SetStringField"); \ +static_assert(offsetof(AkWaapiJsonManager_SetStringField, FieldName) == 0x000000, "Member 'AkWaapiJsonManager_SetStringField::FieldName' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetStringField, FieldValue) == 0x000010, "Member 'AkWaapiJsonManager_SetStringField::FieldValue' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetStringField, Target) == 0x000020, "Member 'AkWaapiJsonManager_SetStringField::Target' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiJsonManager_SetStringField, ReturnValue) == 0x000030, "Member 'AkWaapiJsonManager_SetStringField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWaapiJsonManager \ +static_assert(alignof(UAkWaapiJsonManager) == 0x000008, "Wrong alignment on UAkWaapiJsonManager"); \ +static_assert(sizeof(UAkWaapiJsonManager) == 0x000028, "Wrong size on UAkWaapiJsonManager"); \ + +#define DUMPER7_ASSERTS_AkWaapiUriConv_Conv_FAkWaapiUriToString \ +static_assert(alignof(AkWaapiUriConv_Conv_FAkWaapiUriToString) == 0x000008, "Wrong alignment on AkWaapiUriConv_Conv_FAkWaapiUriToString"); \ +static_assert(sizeof(AkWaapiUriConv_Conv_FAkWaapiUriToString) == 0x000020, "Wrong size on AkWaapiUriConv_Conv_FAkWaapiUriToString"); \ +static_assert(offsetof(AkWaapiUriConv_Conv_FAkWaapiUriToString, INAkWaapiUri) == 0x000000, "Member 'AkWaapiUriConv_Conv_FAkWaapiUriToString::INAkWaapiUri' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiUriConv_Conv_FAkWaapiUriToString, ReturnValue) == 0x000010, "Member 'AkWaapiUriConv_Conv_FAkWaapiUriToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWaapiUriConv_Conv_FAkWaapiUriToText \ +static_assert(alignof(AkWaapiUriConv_Conv_FAkWaapiUriToText) == 0x000008, "Wrong alignment on AkWaapiUriConv_Conv_FAkWaapiUriToText"); \ +static_assert(sizeof(AkWaapiUriConv_Conv_FAkWaapiUriToText) == 0x000028, "Wrong size on AkWaapiUriConv_Conv_FAkWaapiUriToText"); \ +static_assert(offsetof(AkWaapiUriConv_Conv_FAkWaapiUriToText, INAkWaapiUri) == 0x000000, "Member 'AkWaapiUriConv_Conv_FAkWaapiUriToText::INAkWaapiUri' has a wrong offset!"); \ +static_assert(offsetof(AkWaapiUriConv_Conv_FAkWaapiUriToText, ReturnValue) == 0x000010, "Member 'AkWaapiUriConv_Conv_FAkWaapiUriToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWaapiUriConv \ +static_assert(alignof(UAkWaapiUriConv) == 0x000008, "Wrong alignment on UAkWaapiUriConv"); \ +static_assert(sizeof(UAkWaapiUriConv) == 0x000028, "Wrong size on UAkWaapiUriConv"); \ + +#define DUMPER7_ASSERTS_AkWindowsInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkWindowsInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkWindowsInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkWindowsInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkWindowsInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkWindowsInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkWindowsInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWindowsInitializationSettings \ +static_assert(alignof(UAkWindowsInitializationSettings) == 0x000008, "Wrong alignment on UAkWindowsInitializationSettings"); \ +static_assert(sizeof(UAkWindowsInitializationSettings) == 0x0000F8, "Wrong size on UAkWindowsInitializationSettings"); \ +static_assert(offsetof(UAkWindowsInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkWindowsInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkWindowsInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkWindowsInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkWindowsInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkWindowsInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWin32PlatformInfo \ +static_assert(alignof(UAkWin32PlatformInfo) == 0x000008, "Wrong alignment on UAkWin32PlatformInfo"); \ +static_assert(sizeof(UAkWin32PlatformInfo) == 0x000070, "Wrong size on UAkWin32PlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkWin64PlatformInfo \ +static_assert(alignof(UAkWin64PlatformInfo) == 0x000008, "Wrong alignment on UAkWin64PlatformInfo"); \ +static_assert(sizeof(UAkWin64PlatformInfo) == 0x000070, "Wrong size on UAkWin64PlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkWindowsPlatformInfo \ +static_assert(alignof(UAkWindowsPlatformInfo) == 0x000008, "Wrong alignment on UAkWindowsPlatformInfo"); \ +static_assert(sizeof(UAkWindowsPlatformInfo) == 0x000070, "Wrong size on UAkWindowsPlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkWinGDKInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkWinGDKInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkWinGDKInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkWinGDKInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkWinGDKInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkWinGDKInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkWinGDKInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWinGDKInitializationSettings \ +static_assert(alignof(UAkWinGDKInitializationSettings) == 0x000008, "Wrong alignment on UAkWinGDKInitializationSettings"); \ +static_assert(sizeof(UAkWinGDKInitializationSettings) == 0x0000F8, "Wrong size on UAkWinGDKInitializationSettings"); \ +static_assert(offsetof(UAkWinGDKInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkWinGDKInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkWinGDKInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkWinGDKInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkWinGDKInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkWinGDKInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWinAnvilInitializationSettings \ +static_assert(alignof(UAkWinAnvilInitializationSettings) == 0x000008, "Wrong alignment on UAkWinAnvilInitializationSettings"); \ +static_assert(sizeof(UAkWinAnvilInitializationSettings) == 0x0000F8, "Wrong size on UAkWinAnvilInitializationSettings"); \ + +#define DUMPER7_ASSERTS_UAkWinGDKPlatformInfo \ +static_assert(alignof(UAkWinGDKPlatformInfo) == 0x000008, "Wrong alignment on UAkWinGDKPlatformInfo"); \ +static_assert(sizeof(UAkWinGDKPlatformInfo) == 0x000070, "Wrong size on UAkWinGDKPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkWinAnvilPlatformInfo \ +static_assert(alignof(UAkWinAnvilPlatformInfo) == 0x000008, "Wrong alignment on UAkWinAnvilPlatformInfo"); \ +static_assert(sizeof(UAkWinAnvilPlatformInfo) == 0x000070, "Wrong size on UAkWinAnvilPlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkWwiseTree_SetSearchText \ +static_assert(alignof(AkWwiseTree_SetSearchText) == 0x000008, "Wrong alignment on AkWwiseTree_SetSearchText"); \ +static_assert(sizeof(AkWwiseTree_SetSearchText) == 0x000010, "Wrong size on AkWwiseTree_SetSearchText"); \ +static_assert(offsetof(AkWwiseTree_SetSearchText, newText) == 0x000000, "Member 'AkWwiseTree_SetSearchText::newText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWwiseTree_GetSearchText \ +static_assert(alignof(AkWwiseTree_GetSearchText) == 0x000008, "Wrong alignment on AkWwiseTree_GetSearchText"); \ +static_assert(sizeof(AkWwiseTree_GetSearchText) == 0x000010, "Wrong size on AkWwiseTree_GetSearchText"); \ +static_assert(offsetof(AkWwiseTree_GetSearchText, ReturnValue) == 0x000000, "Member 'AkWwiseTree_GetSearchText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkWwiseTree_GetSelectedItem \ +static_assert(alignof(AkWwiseTree_GetSelectedItem) == 0x000008, "Wrong alignment on AkWwiseTree_GetSelectedItem"); \ +static_assert(sizeof(AkWwiseTree_GetSelectedItem) == 0x000030, "Wrong size on AkWwiseTree_GetSelectedItem"); \ +static_assert(offsetof(AkWwiseTree_GetSelectedItem, ReturnValue) == 0x000000, "Member 'AkWwiseTree_GetSelectedItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWwiseTree \ +static_assert(alignof(UAkWwiseTree) == 0x000008, "Wrong alignment on UAkWwiseTree"); \ +static_assert(sizeof(UAkWwiseTree) == 0x0001C0, "Wrong size on UAkWwiseTree"); \ +static_assert(offsetof(UAkWwiseTree, OnSelectionChanged) == 0x000180, "Member 'UAkWwiseTree::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkWwiseTree, OnItemDragged) == 0x000190, "Member 'UAkWwiseTree::OnItemDragged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkWwiseTreeSelector \ +static_assert(alignof(UAkWwiseTreeSelector) == 0x000008, "Wrong alignment on UAkWwiseTreeSelector"); \ +static_assert(sizeof(UAkWwiseTreeSelector) == 0x0001E0, "Wrong size on UAkWwiseTreeSelector"); \ +static_assert(offsetof(UAkWwiseTreeSelector, OnSelectionChanged) == 0x000180, "Member 'UAkWwiseTreeSelector::OnSelectionChanged' has a wrong offset!"); \ +static_assert(offsetof(UAkWwiseTreeSelector, OnItemDragged) == 0x000190, "Member 'UAkWwiseTreeSelector::OnItemDragged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkXboxOneGDKInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkXboxOneGDKInitializationSettings \ +static_assert(alignof(UAkXboxOneGDKInitializationSettings) == 0x000008, "Wrong alignment on UAkXboxOneGDKInitializationSettings"); \ +static_assert(sizeof(UAkXboxOneGDKInitializationSettings) == 0x0000F8, "Wrong size on UAkXboxOneGDKInitializationSettings"); \ +static_assert(offsetof(UAkXboxOneGDKInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkXboxOneGDKInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneGDKInitializationSettings, ApuHeapSettings) == 0x000090, "Member 'UAkXboxOneGDKInitializationSettings::ApuHeapSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneGDKInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkXboxOneGDKInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneGDKInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkXboxOneGDKInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkXboxOneAnvilInitializationSettings \ +static_assert(alignof(UAkXboxOneAnvilInitializationSettings) == 0x000008, "Wrong alignment on UAkXboxOneAnvilInitializationSettings"); \ +static_assert(sizeof(UAkXboxOneAnvilInitializationSettings) == 0x0000F8, "Wrong size on UAkXboxOneAnvilInitializationSettings"); \ + +#define DUMPER7_ASSERTS_UAkXB1InitializationSettings \ +static_assert(alignof(UAkXB1InitializationSettings) == 0x000008, "Wrong alignment on UAkXB1InitializationSettings"); \ +static_assert(sizeof(UAkXB1InitializationSettings) == 0x0000F8, "Wrong size on UAkXB1InitializationSettings"); \ + +#define DUMPER7_ASSERTS_UAkXboxOneGDKPlatformInfo \ +static_assert(alignof(UAkXboxOneGDKPlatformInfo) == 0x000008, "Wrong alignment on UAkXboxOneGDKPlatformInfo"); \ +static_assert(sizeof(UAkXboxOneGDKPlatformInfo) == 0x000070, "Wrong size on UAkXboxOneGDKPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkXboxOneAnvilPlatformInfo \ +static_assert(alignof(UAkXboxOneAnvilPlatformInfo) == 0x000008, "Wrong alignment on UAkXboxOneAnvilPlatformInfo"); \ +static_assert(sizeof(UAkXboxOneAnvilPlatformInfo) == 0x000070, "Wrong size on UAkXboxOneAnvilPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UAkXB1PlatformInfo \ +static_assert(alignof(UAkXB1PlatformInfo) == 0x000008, "Wrong alignment on UAkXB1PlatformInfo"); \ +static_assert(sizeof(UAkXB1PlatformInfo) == 0x000070, "Wrong size on UAkXB1PlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkXboxOneInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkXboxOneInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkXboxOneInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkXboxOneInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkXboxOneInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkXboxOneInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkXboxOneInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkXboxOneInitializationSettings \ +static_assert(alignof(UAkXboxOneInitializationSettings) == 0x000008, "Wrong alignment on UAkXboxOneInitializationSettings"); \ +static_assert(sizeof(UAkXboxOneInitializationSettings) == 0x0000F8, "Wrong size on UAkXboxOneInitializationSettings"); \ +static_assert(offsetof(UAkXboxOneInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkXboxOneInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneInitializationSettings, ApuHeapSettings) == 0x000090, "Member 'UAkXboxOneInitializationSettings::ApuHeapSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkXboxOneInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXboxOneInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkXboxOneInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkXboxOnePlatformInfo \ +static_assert(alignof(UAkXboxOnePlatformInfo) == 0x000008, "Wrong alignment on UAkXboxOnePlatformInfo"); \ +static_assert(sizeof(UAkXboxOnePlatformInfo) == 0x000070, "Wrong size on UAkXboxOnePlatformInfo"); \ + +#define DUMPER7_ASSERTS_AkXSXInitializationSettings_MigrateMultiCoreRendering \ +static_assert(alignof(AkXSXInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong alignment on AkXSXInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(sizeof(AkXSXInitializationSettings_MigrateMultiCoreRendering) == 0x000001, "Wrong size on AkXSXInitializationSettings_MigrateMultiCoreRendering"); \ +static_assert(offsetof(AkXSXInitializationSettings_MigrateMultiCoreRendering, NewValue) == 0x000000, "Member 'AkXSXInitializationSettings_MigrateMultiCoreRendering::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkXSXInitializationSettings \ +static_assert(alignof(UAkXSXInitializationSettings) == 0x000008, "Wrong alignment on UAkXSXInitializationSettings"); \ +static_assert(sizeof(UAkXSXInitializationSettings) == 0x000100, "Wrong size on UAkXSXInitializationSettings"); \ +static_assert(offsetof(UAkXSXInitializationSettings, CommonSettings) == 0x000030, "Member 'UAkXSXInitializationSettings::CommonSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXSXInitializationSettings, ApuHeapSettings) == 0x000090, "Member 'UAkXSXInitializationSettings::ApuHeapSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXSXInitializationSettings, CommunicationSettings) == 0x000098, "Member 'UAkXSXInitializationSettings::CommunicationSettings' has a wrong offset!"); \ +static_assert(offsetof(UAkXSXInitializationSettings, AdvancedSettings) == 0x0000C0, "Member 'UAkXSXInitializationSettings::AdvancedSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAkMPXInitializationSettings \ +static_assert(alignof(UAkMPXInitializationSettings) == 0x000008, "Wrong alignment on UAkMPXInitializationSettings"); \ +static_assert(sizeof(UAkMPXInitializationSettings) == 0x000100, "Wrong size on UAkMPXInitializationSettings"); \ + +#define DUMPER7_ASSERTS_UAkXSXPlatformInfo \ +static_assert(alignof(UAkXSXPlatformInfo) == 0x000008, "Wrong alignment on UAkXSXPlatformInfo"); \ +static_assert(sizeof(UAkXSXPlatformInfo) == 0x000070, "Wrong size on UAkXSXPlatformInfo"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAkAudioEventSection \ +static_assert(alignof(UMovieSceneAkAudioEventSection) == 0x000008, "Wrong alignment on UMovieSceneAkAudioEventSection"); \ +static_assert(sizeof(UMovieSceneAkAudioEventSection) == 0x0001D8, "Wrong size on UMovieSceneAkAudioEventSection"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, Event) == 0x000130, "Member 'UMovieSceneAkAudioEventSection::Event' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, RetriggerEvent) == 0x000138, "Member 'UMovieSceneAkAudioEventSection::RetriggerEvent' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, ScrubTailLengthMs) == 0x00013C, "Member 'UMovieSceneAkAudioEventSection::ScrubTailLengthMs' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, StopAtSectionEnd) == 0x000140, "Member 'UMovieSceneAkAudioEventSection::StopAtSectionEnd' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, EventName) == 0x000148, "Member 'UMovieSceneAkAudioEventSection::EventName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, MaxSourceDuration) == 0x000178, "Member 'UMovieSceneAkAudioEventSection::MaxSourceDuration' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioEventSection, MaxDurationSourceID) == 0x000180, "Member 'UMovieSceneAkAudioEventSection::MaxDurationSourceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAkTrack \ +static_assert(alignof(UMovieSceneAkTrack) == 0x000008, "Wrong alignment on UMovieSceneAkTrack"); \ +static_assert(sizeof(UMovieSceneAkTrack) == 0x0000B0, "Wrong size on UMovieSceneAkTrack"); \ +static_assert(offsetof(UMovieSceneAkTrack, Sections) == 0x000098, "Member 'UMovieSceneAkTrack::Sections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkTrack, bIsAMasterTrack) == 0x0000A8, "Member 'UMovieSceneAkTrack::bIsAMasterTrack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAkAudioEventTrack \ +static_assert(alignof(UMovieSceneAkAudioEventTrack) == 0x000008, "Wrong alignment on UMovieSceneAkAudioEventTrack"); \ +static_assert(sizeof(UMovieSceneAkAudioEventTrack) == 0x0000B8, "Wrong size on UMovieSceneAkAudioEventTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAkAudioRTPCSection \ +static_assert(alignof(UMovieSceneAkAudioRTPCSection) == 0x000008, "Wrong alignment on UMovieSceneAkAudioRTPCSection"); \ +static_assert(sizeof(UMovieSceneAkAudioRTPCSection) == 0x0002C8, "Wrong size on UMovieSceneAkAudioRTPCSection"); \ +static_assert(offsetof(UMovieSceneAkAudioRTPCSection, RTPC) == 0x0000F0, "Member 'UMovieSceneAkAudioRTPCSection::RTPC' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioRTPCSection, Name_0) == 0x0000F8, "Member 'UMovieSceneAkAudioRTPCSection::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioRTPCSection, FloatCurve) == 0x000108, "Member 'UMovieSceneAkAudioRTPCSection::FloatCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioRTPCSection, FloatChannelSerializationHelper) == 0x000188, "Member 'UMovieSceneAkAudioRTPCSection::FloatChannelSerializationHelper' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneAkAudioRTPCSection, RTPCChannel) == 0x0001B8, "Member 'UMovieSceneAkAudioRTPCSection::RTPCChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneAkAudioRTPCTrack \ +static_assert(alignof(UMovieSceneAkAudioRTPCTrack) == 0x000008, "Wrong alignment on UMovieSceneAkAudioRTPCTrack"); \ +static_assert(sizeof(UMovieSceneAkAudioRTPCTrack) == 0x0000B8, "Wrong size on UMovieSceneAkAudioRTPCTrack"); \ + +#define DUMPER7_ASSERTS_PostEventAsync_PostEventAsync \ +static_assert(alignof(PostEventAsync_PostEventAsync) == 0x000008, "Wrong alignment on PostEventAsync_PostEventAsync"); \ +static_assert(sizeof(PostEventAsync_PostEventAsync) == 0x000050, "Wrong size on PostEventAsync_PostEventAsync"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, WorldContextObject) == 0x000000, "Member 'PostEventAsync_PostEventAsync::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, AkEvent) == 0x000008, "Member 'PostEventAsync_PostEventAsync::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, Actor) == 0x000010, "Member 'PostEventAsync_PostEventAsync::Actor' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, CallbackMask) == 0x000018, "Member 'PostEventAsync_PostEventAsync::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, PostEventCallback) == 0x00001C, "Member 'PostEventAsync_PostEventAsync::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, ExternalSources) == 0x000030, "Member 'PostEventAsync_PostEventAsync::ExternalSources' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, bStopWhenAttachedToDestroyed) == 0x000040, "Member 'PostEventAsync_PostEventAsync::bStopWhenAttachedToDestroyed' has a wrong offset!"); \ +static_assert(offsetof(PostEventAsync_PostEventAsync, ReturnValue) == 0x000048, "Member 'PostEventAsync_PostEventAsync::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPostEventAsync \ +static_assert(alignof(UPostEventAsync) == 0x000008, "Wrong alignment on UPostEventAsync"); \ +static_assert(sizeof(UPostEventAsync) == 0x0000A0, "Wrong size on UPostEventAsync"); \ +static_assert(offsetof(UPostEventAsync, Completed) == 0x000030, "Member 'UPostEventAsync::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PostEventAtLocationAsync_PostEventAtLocationAsync \ +static_assert(alignof(PostEventAtLocationAsync_PostEventAtLocationAsync) == 0x000008, "Wrong alignment on PostEventAtLocationAsync_PostEventAtLocationAsync"); \ +static_assert(sizeof(PostEventAtLocationAsync_PostEventAtLocationAsync) == 0x000048, "Wrong size on PostEventAtLocationAsync_PostEventAtLocationAsync"); \ +static_assert(offsetof(PostEventAtLocationAsync_PostEventAtLocationAsync, WorldContextObject) == 0x000000, "Member 'PostEventAtLocationAsync_PostEventAtLocationAsync::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PostEventAtLocationAsync_PostEventAtLocationAsync, AkEvent) == 0x000008, "Member 'PostEventAtLocationAsync_PostEventAtLocationAsync::AkEvent' has a wrong offset!"); \ +static_assert(offsetof(PostEventAtLocationAsync_PostEventAtLocationAsync, Location) == 0x000010, "Member 'PostEventAtLocationAsync_PostEventAtLocationAsync::Location' has a wrong offset!"); \ +static_assert(offsetof(PostEventAtLocationAsync_PostEventAtLocationAsync, Orientation) == 0x000028, "Member 'PostEventAtLocationAsync_PostEventAtLocationAsync::Orientation' has a wrong offset!"); \ +static_assert(offsetof(PostEventAtLocationAsync_PostEventAtLocationAsync, ReturnValue) == 0x000040, "Member 'PostEventAtLocationAsync_PostEventAtLocationAsync::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPostEventAtLocationAsync \ +static_assert(alignof(UPostEventAtLocationAsync) == 0x000008, "Wrong alignment on UPostEventAtLocationAsync"); \ +static_assert(sizeof(UPostEventAtLocationAsync) == 0x000098, "Wrong size on UPostEventAtLocationAsync"); \ +static_assert(offsetof(UPostEventAtLocationAsync, Completed) == 0x000030, "Member 'UPostEventAtLocationAsync::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn) == 0x0003D0, "Wrong size on BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, EntryPoint) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_7) == 0x000008, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_1) == 0x000020, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key) == 0x000038, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, Temp_struct_Variable) == 0x000050, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_Event_DeltaSeconds) == 0x000068, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_GetLastInputVector_ReturnValue) == 0x000070, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_IsValid_ReturnValue) == 0x000088, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, Temp_struct_Variable_1) == 0x000090, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_DynamicCast_AsFloating_Pawn_Movement) == 0x0000A8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_DynamicCast_AsFloating_Pawn_Movement' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_DynamicCast_AsFloating_Pawn_Movement_1) == 0x0000B8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_DynamicCast_AsFloating_Pawn_Movement_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_DynamicCast_bSuccess_1) == 0x0000C0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_8) == 0x0000C8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputAxisKeyEvent_AxisValue_3) == 0x0000E0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputAxisKeyEvent_AxisValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputAxisKeyEvent_AxisValue_2) == 0x0000F0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputAxisKeyEvent_AxisValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_3) == 0x0000F8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputAxisKeyEvent_AxisValue_1) == 0x000110, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputAxisKeyEvent_AxisValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputAxisKeyEvent_AxisValue) == 0x000114, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputAxisKeyEvent_AxisValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_9) == 0x000118, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000130, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_10) == 0x000138, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputVectorAxisEvent_AxisValue_1) == 0x000150, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputVectorAxisEvent_AxisValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Normal_ReturnValue) == 0x000168, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_VSize_ReturnValue) == 0x000180, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000188, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue) == 0x000190, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_1) == 0x0001A0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MapRangeClamped_ReturnValue) == 0x0001B0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0001B8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, Temp_struct_Variable_2) == 0x0001D0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001E8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_4) == 0x000200, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_X) == 0x000218, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_Y) == 0x000220, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_Z) == 0x000228, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_5) == 0x000230, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_2) == 0x000248, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_3) == 0x000258, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector2D_X) == 0x000268, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector2D_Y) == 0x000270, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, Temp_struct_Variable_3) == 0x000278, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_4) == 0x000290, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_5) == 0x0002A0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_6) == 0x0002B0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Add_Vector2DVector2D_ReturnValue_7) == 0x0002C0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Add_Vector2DVector2D_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_6) == 0x0002D0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputVectorAxisEvent_AxisValue) == 0x0002E8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputVectorAxisEvent_AxisValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Normal_ReturnValue_1) == 0x000300, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_VSize_ReturnValue_1) == 0x000318, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, K2Node_InputKeyEvent_Key_2) == 0x000320, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::K2Node_InputKeyEvent_Key_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000338, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000340, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000348, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000360, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_GetActorOfClass_ReturnValue) == 0x000378, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_X_1) == 0x000380, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_Y_1) == 0x000388, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_BreakVector_Z_1) == 0x000390, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000398, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MoveUp_World_Val_ImplicitCast) == 0x0003A0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MoveUp_World_Val_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0003A8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_AddControllerPitchInput_Val_ImplicitCast) == 0x0003B0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_AddControllerPitchInput_Val_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_TurnAtRate_Rate_ImplicitCast) == 0x0003B4, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_TurnAtRate_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_LookUpAtRate_Rate_ImplicitCast) == 0x0003B8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_LookUpAtRate_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MoveForward_Val_ImplicitCast) == 0x0003BC, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MoveForward_Val_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MoveRight_Val_ImplicitCast) == 0x0003C0, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MoveRight_Val_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MoveRight_Val_ImplicitCast_1) == 0x0003C4, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MoveRight_Val_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn, CallFunc_MoveForward_Val_ImplicitCast_1) == 0x0003C8, "Member 'BP_WrestlerSpectatorPawn_C_ExecuteUbergraph_BP_WrestlerSpectatorPawn::CallFunc_MoveForward_Val_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_2::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_A_K2Node_InputKeyEvent_3::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_4::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_D_K2Node_InputKeyEvent_5::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_LeftControl_K2Node_InputKeyEvent_0::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_M_K2Node_InputKeyEvent_10::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_6::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_S_K2Node_InputKeyEvent_7::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_SpaceBar_K2Node_InputKeyEvent_1::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_8::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9, Key) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpActEvt_W_K2Node_InputKeyEvent_9::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Left2D_K2Node_InputVectorAxisEvent_3::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0) == 0x000004, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0) == 0x000004, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_LeftTriggerAxis_K2Node_InputAxisKeyEvent_0::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2) == 0x000008, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2) == 0x000018, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_Right2D_K2Node_InputVectorAxisEvent_2::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1) == 0x000004, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1) == 0x000004, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_Gamepad_RightTriggerAxis_K2Node_InputAxisKeyEvent_1::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6) == 0x000004, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6) == 0x000004, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseX_K2Node_InputAxisKeyEvent_6::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7 \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7) == 0x000004, "Wrong alignment on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7) == 0x000004, "Wrong size on BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7, AxisValue) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_InpAxisKeyEvt_MouseY_K2Node_InputAxisKeyEvent_7::AxisValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerSpectatorPawn_C_ReceiveTick \ +static_assert(alignof(BP_WrestlerSpectatorPawn_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_WrestlerSpectatorPawn_C_ReceiveTick"); \ +static_assert(sizeof(BP_WrestlerSpectatorPawn_C_ReceiveTick) == 0x000004, "Wrong size on BP_WrestlerSpectatorPawn_C_ReceiveTick"); \ +static_assert(offsetof(BP_WrestlerSpectatorPawn_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_WrestlerSpectatorPawn_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerSpectatorPawn_C \ +static_assert(alignof(ABP_WrestlerSpectatorPawn_C) == 0x000008, "Wrong alignment on ABP_WrestlerSpectatorPawn_C"); \ +static_assert(sizeof(ABP_WrestlerSpectatorPawn_C) == 0x000390, "Wrong size on ABP_WrestlerSpectatorPawn_C"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, UberGraphFrame) == 0x000348, "Member 'ABP_WrestlerSpectatorPawn_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, PostProcessCM) == 0x000350, "Member 'ABP_WrestlerSpectatorPawn_C::PostProcessCM' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, Input) == 0x000358, "Member 'ABP_WrestlerSpectatorPawn_C::Input' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, Character) == 0x000370, "Member 'ABP_WrestlerSpectatorPawn_C::Character' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, MoveCharacter) == 0x000378, "Member 'ABP_WrestlerSpectatorPawn_C::MoveCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerSpectatorPawn_C, KeyboardMoveInput) == 0x000380, "Member 'ABP_WrestlerSpectatorPawn_C::KeyboardMoveInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImGuiKeyInfo \ +static_assert(alignof(FImGuiKeyInfo) == 0x000008, "Wrong alignment on FImGuiKeyInfo"); \ +static_assert(sizeof(FImGuiKeyInfo) == 0x000020, "Wrong size on FImGuiKeyInfo"); \ +static_assert(offsetof(FImGuiKeyInfo, Key) == 0x000000, "Member 'FImGuiKeyInfo::Key' has a wrong offset!"); \ +static_assert(offsetof(FImGuiKeyInfo, Shift) == 0x000018, "Member 'FImGuiKeyInfo::Shift' has a wrong offset!"); \ +static_assert(offsetof(FImGuiKeyInfo, Ctrl) == 0x000019, "Member 'FImGuiKeyInfo::Ctrl' has a wrong offset!"); \ +static_assert(offsetof(FImGuiKeyInfo, Alt) == 0x00001A, "Member 'FImGuiKeyInfo::Alt' has a wrong offset!"); \ +static_assert(offsetof(FImGuiKeyInfo, Cmd) == 0x00001B, "Member 'FImGuiKeyInfo::Cmd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImGuiCanvasSizeInfo \ +static_assert(alignof(FImGuiCanvasSizeInfo) == 0x000004, "Wrong alignment on FImGuiCanvasSizeInfo"); \ +static_assert(sizeof(FImGuiCanvasSizeInfo) == 0x000010, "Wrong size on FImGuiCanvasSizeInfo"); \ +static_assert(offsetof(FImGuiCanvasSizeInfo, SizeType) == 0x000000, "Member 'FImGuiCanvasSizeInfo::SizeType' has a wrong offset!"); \ +static_assert(offsetof(FImGuiCanvasSizeInfo, Width) == 0x000004, "Member 'FImGuiCanvasSizeInfo::Width' has a wrong offset!"); \ +static_assert(offsetof(FImGuiCanvasSizeInfo, Height) == 0x000008, "Member 'FImGuiCanvasSizeInfo::Height' has a wrong offset!"); \ +static_assert(offsetof(FImGuiCanvasSizeInfo, bExtendToViewport) == 0x00000C, "Member 'FImGuiCanvasSizeInfo::bExtendToViewport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FImGuiDPIScaleInfo \ +static_assert(alignof(FImGuiDPIScaleInfo) == 0x000008, "Wrong alignment on FImGuiDPIScaleInfo"); \ +static_assert(sizeof(FImGuiDPIScaleInfo) == 0x000098, "Wrong size on FImGuiDPIScaleInfo"); \ +static_assert(offsetof(FImGuiDPIScaleInfo, ScalingMethod) == 0x000000, "Member 'FImGuiDPIScaleInfo::ScalingMethod' has a wrong offset!"); \ +static_assert(offsetof(FImGuiDPIScaleInfo, Scale) == 0x000004, "Member 'FImGuiDPIScaleInfo::Scale' has a wrong offset!"); \ +static_assert(offsetof(FImGuiDPIScaleInfo, DPICurve) == 0x000008, "Member 'FImGuiDPIScaleInfo::DPICurve' has a wrong offset!"); \ +static_assert(offsetof(FImGuiDPIScaleInfo, bScaleWithCurve) == 0x000090, "Member 'FImGuiDPIScaleInfo::bScaleWithCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImGuiInputHandler \ +static_assert(alignof(UImGuiInputHandler) == 0x000008, "Wrong alignment on UImGuiInputHandler"); \ +static_assert(sizeof(UImGuiInputHandler) == 0x000050, "Wrong size on UImGuiInputHandler"); \ + +#define DUMPER7_ASSERTS_UImGuiSettings \ +static_assert(alignof(UImGuiSettings) == 0x000008, "Wrong alignment on UImGuiSettings"); \ +static_assert(sizeof(UImGuiSettings) == 0x000118, "Wrong size on UImGuiSettings"); \ +static_assert(offsetof(UImGuiSettings, ImGuiInputHandlerClass) == 0x000028, "Member 'UImGuiSettings::ImGuiInputHandlerClass' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, bShareKeyboardInput) == 0x000048, "Member 'UImGuiSettings::bShareKeyboardInput' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, bShareGamepadInput) == 0x000049, "Member 'UImGuiSettings::bShareGamepadInput' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, bShareMouseInput) == 0x00004A, "Member 'UImGuiSettings::bShareMouseInput' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, bUseSoftwareCursor) == 0x00004B, "Member 'UImGuiSettings::bUseSoftwareCursor' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, ToggleInput) == 0x000050, "Member 'UImGuiSettings::ToggleInput' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, CanvasSize) == 0x000070, "Member 'UImGuiSettings::CanvasSize' has a wrong offset!"); \ +static_assert(offsetof(UImGuiSettings, DPIScale) == 0x000080, "Member 'UImGuiSettings::DPIScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPhysicsActorContactPair \ +static_assert(alignof(FHeraPhysicsActorContactPair) == 0x000008, "Wrong alignment on FHeraPhysicsActorContactPair"); \ +static_assert(sizeof(FHeraPhysicsActorContactPair) == 0x000040, "Wrong size on FHeraPhysicsActorContactPair"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, ActorA) == 0x000000, "Member 'FHeraPhysicsActorContactPair::ActorA' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, ActorB) == 0x000008, "Member 'FHeraPhysicsActorContactPair::ActorB' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, LastEnterCollisionTimeSeconds) == 0x000010, "Member 'FHeraPhysicsActorContactPair::LastEnterCollisionTimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, LastEnterCollisionImpulseMagnitude) == 0x000014, "Member 'FHeraPhysicsActorContactPair::LastEnterCollisionImpulseMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, LastSlidingPhysicsMaterialActorA) == 0x000018, "Member 'FHeraPhysicsActorContactPair::LastSlidingPhysicsMaterialActorA' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsActorContactPair, LastSlidingPhysicsMaterialActorB) == 0x000020, "Member 'FHeraPhysicsActorContactPair::LastSlidingPhysicsMaterialActorB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPhysicsBodyInfo \ +static_assert(alignof(FHeraPhysicsBodyInfo) == 0x000008, "Wrong alignment on FHeraPhysicsBodyInfo"); \ +static_assert(sizeof(FHeraPhysicsBodyInfo) == 0x000050, "Wrong size on FHeraPhysicsBodyInfo"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, Component) == 0x000008, "Member 'FHeraPhysicsBodyInfo::Component' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, Material) == 0x000010, "Member 'FHeraPhysicsBodyInfo::Material' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, LinearVelocityCmPerSec) == 0x000018, "Member 'FHeraPhysicsBodyInfo::LinearVelocityCmPerSec' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, AngularVelocityDegrees) == 0x000030, "Member 'FHeraPhysicsBodyInfo::AngularVelocityDegrees' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, MASS) == 0x000048, "Member 'FHeraPhysicsBodyInfo::MASS' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyInfo, bStatic) == 0x00004C, "Member 'FHeraPhysicsBodyInfo::bStatic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPhysicsBodyContactPair \ +static_assert(alignof(FHeraPhysicsBodyContactPair) == 0x000008, "Wrong alignment on FHeraPhysicsBodyContactPair"); \ +static_assert(sizeof(FHeraPhysicsBodyContactPair) == 0x0000E0, "Wrong size on FHeraPhysicsBodyContactPair"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, BodyInfoA) == 0x000000, "Member 'FHeraPhysicsBodyContactPair::BodyInfoA' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, BodyInfoB) == 0x000050, "Member 'FHeraPhysicsBodyContactPair::BodyInfoB' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, ImpulseNormal) == 0x0000A0, "Member 'FHeraPhysicsBodyContactPair::ImpulseNormal' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, WorldLocation) == 0x0000B8, "Member 'FHeraPhysicsBodyContactPair::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, CollisionState) == 0x0000D0, "Member 'FHeraPhysicsBodyContactPair::CollisionState' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, PreviousCollisionState) == 0x0000D1, "Member 'FHeraPhysicsBodyContactPair::PreviousCollisionState' has a wrong offset!"); \ +static_assert(offsetof(FHeraPhysicsBodyContactPair, Priority) == 0x0000D4, "Member 'FHeraPhysicsBodyContactPair::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPhysicsDebugTickFunction \ +static_assert(alignof(FHeraPhysicsDebugTickFunction) == 0x000008, "Wrong alignment on FHeraPhysicsDebugTickFunction"); \ +static_assert(sizeof(FHeraPhysicsDebugTickFunction) == 0x000030, "Wrong size on FHeraPhysicsDebugTickFunction"); \ + +#define DUMPER7_ASSERTS_UHeraPhysicalMaterial \ +static_assert(alignof(UHeraPhysicalMaterial) == 0x000008, "Wrong alignment on UHeraPhysicalMaterial"); \ +static_assert(sizeof(UHeraPhysicalMaterial) == 0x0000B0, "Wrong size on UHeraPhysicalMaterial"); \ +static_assert(offsetof(UHeraPhysicalMaterial, ImpactAudioEvent) == 0x000088, "Member 'UHeraPhysicalMaterial::ImpactAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicalMaterial, ResonanceEvent) == 0x000090, "Member 'UHeraPhysicalMaterial::ResonanceEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicalMaterial, RollSlideEventStart) == 0x000098, "Member 'UHeraPhysicalMaterial::RollSlideEventStart' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicalMaterial, RollSlideEventStop) == 0x0000A0, "Member 'UHeraPhysicalMaterial::RollSlideEventStop' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicalMaterial, AudioDampeningAmount) == 0x0000A8, "Member 'UHeraPhysicalMaterial::AudioDampeningAmount' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicalMaterial, bDisableAudioObstruction) == 0x0000AC, "Member 'UHeraPhysicalMaterial::bDisableAudioObstruction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_HandleCollision \ +static_assert(alignof(HeraPhysicsCollisionHandler_HandleCollision) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_HandleCollision"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_HandleCollision) == 0x000060, "Wrong size on HeraPhysicsCollisionHandler_HandleCollision"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, ActorA) == 0x000000, "Member 'HeraPhysicsCollisionHandler_HandleCollision::ActorA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, ActorB) == 0x000008, "Member 'HeraPhysicsCollisionHandler_HandleCollision::ActorB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, MaterialA) == 0x000010, "Member 'HeraPhysicsCollisionHandler_HandleCollision::MaterialA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, MaterialB) == 0x000018, "Member 'HeraPhysicsCollisionHandler_HandleCollision::MaterialB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, MassA) == 0x000020, "Member 'HeraPhysicsCollisionHandler_HandleCollision::MassA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, MassB) == 0x000024, "Member 'HeraPhysicsCollisionHandler_HandleCollision::MassB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, DeltaVelocityA) == 0x000028, "Member 'HeraPhysicsCollisionHandler_HandleCollision::DeltaVelocityA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, DeltaVelocityB) == 0x00002C, "Member 'HeraPhysicsCollisionHandler_HandleCollision::DeltaVelocityB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, WorldPosition) == 0x000030, "Member 'HeraPhysicsCollisionHandler_HandleCollision::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollision, Impulse) == 0x000048, "Member 'HeraPhysicsCollisionHandler_HandleCollision::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_HandleCollisionDebug \ +static_assert(alignof(HeraPhysicsCollisionHandler_HandleCollisionDebug) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_HandleCollisionDebug"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_HandleCollisionDebug) == 0x000060, "Wrong size on HeraPhysicsCollisionHandler_HandleCollisionDebug"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, ActorA) == 0x000000, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::ActorA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, ActorB) == 0x000008, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::ActorB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, MaterialA) == 0x000010, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::MaterialA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, MaterialB) == 0x000018, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::MaterialB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, MassA) == 0x000020, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::MassA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, MassB) == 0x000024, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::MassB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, DeltaVelocityA) == 0x000028, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::DeltaVelocityA' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, DeltaVelocityB) == 0x00002C, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::DeltaVelocityB' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, WorldPosition) == 0x000030, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_HandleCollisionDebug, Impulse) == 0x000048, "Member 'HeraPhysicsCollisionHandler_HandleCollisionDebug::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnCollisionEnter \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnCollisionEnter) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnCollisionEnter"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnCollisionEnter) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnCollisionEnter"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnCollisionEnter, ContactPair) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnCollisionEnter::ContactPair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnCollisionExit \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnCollisionExit) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnCollisionExit"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnCollisionExit) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnCollisionExit"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnCollisionExit, ContactPair) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnCollisionExit::ContactPair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnCollisionStay \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnCollisionStay) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnCollisionStay"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnCollisionStay) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnCollisionStay"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnCollisionStay, ContactPair) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnCollisionStay::ContactPair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnImpact \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnImpact) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnImpact"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnImpact) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnImpact"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnImpact, ContactPair) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnImpact::ContactPair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnRollSlideEnd \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnRollSlideEnd) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnRollSlideEnd"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnRollSlideEnd) == 0x000020, "Wrong size on HeraPhysicsCollisionHandler_OnRollSlideEnd"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideEnd, SlidingActor) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnRollSlideEnd::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideEnd, OtherActor) == 0x000008, "Member 'HeraPhysicsCollisionHandler_OnRollSlideEnd::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideEnd, SlidingMaterial) == 0x000010, "Member 'HeraPhysicsCollisionHandler_OnRollSlideEnd::SlidingMaterial' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideEnd, OtherMaterial) == 0x000018, "Member 'HeraPhysicsCollisionHandler_OnRollSlideEnd::OtherMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnRollSlideStart \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnRollSlideStart) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnRollSlideStart"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnRollSlideStart) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnRollSlideStart"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, SlidingActor) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, OtherActor) == 0x000008, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, SlidingInfo) == 0x000010, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, OtherInfo) == 0x000060, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::OtherInfo' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, WorldLocation) == 0x0000B0, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideStart, Impulse) == 0x0000C8, "Member 'HeraPhysicsCollisionHandler_OnRollSlideStart::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_OnRollSlideUpdate \ +static_assert(alignof(HeraPhysicsCollisionHandler_OnRollSlideUpdate) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_OnRollSlideUpdate"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_OnRollSlideUpdate) == 0x0000E0, "Wrong size on HeraPhysicsCollisionHandler_OnRollSlideUpdate"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, SlidingActor) == 0x000000, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, OtherActor) == 0x000008, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, SlidingInfo) == 0x000010, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, OtherInfo) == 0x000060, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::OtherInfo' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, WorldLocation) == 0x0000B0, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_OnRollSlideUpdate, Impulse) == 0x0000C8, "Member 'HeraPhysicsCollisionHandler_OnRollSlideUpdate::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame \ +static_assert(alignof(HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame) == 0x000001, "Wrong alignment on HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame) == 0x000001, "Wrong size on HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame, ReturnValue) == 0x000000, "Member 'HeraPhysicsCollisionHandler_GetMaxCollisionEnterEventsPerFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold \ +static_assert(alignof(HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold) == 0x000008, "Wrong size on HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold, ReturnValue) == 0x000000, "Member 'HeraPhysicsCollisionHandler_GetMaxDistanceToCameraThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold \ +static_assert(alignof(HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold) == 0x000008, "Wrong size on HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold, ReturnValue) == 0x000000, "Member 'HeraPhysicsCollisionHandler_GetMinImpulseMagnitudeThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPhysicsCollisionHandler_GetMinVelocityThreshold \ +static_assert(alignof(HeraPhysicsCollisionHandler_GetMinVelocityThreshold) == 0x000008, "Wrong alignment on HeraPhysicsCollisionHandler_GetMinVelocityThreshold"); \ +static_assert(sizeof(HeraPhysicsCollisionHandler_GetMinVelocityThreshold) == 0x000008, "Wrong size on HeraPhysicsCollisionHandler_GetMinVelocityThreshold"); \ +static_assert(offsetof(HeraPhysicsCollisionHandler_GetMinVelocityThreshold, ReturnValue) == 0x000000, "Member 'HeraPhysicsCollisionHandler_GetMinVelocityThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPhysicsCollisionHandler \ +static_assert(alignof(UHeraPhysicsCollisionHandler) == 0x000008, "Wrong alignment on UHeraPhysicsCollisionHandler"); \ +static_assert(sizeof(UHeraPhysicsCollisionHandler) == 0x000090, "Wrong size on UHeraPhysicsCollisionHandler"); \ + +#define DUMPER7_ASSERTS_UHeraPhysicsDebugSettings \ +static_assert(alignof(UHeraPhysicsDebugSettings) == 0x000008, "Wrong alignment on UHeraPhysicsDebugSettings"); \ +static_assert(sizeof(UHeraPhysicsDebugSettings) == 0x000040, "Wrong size on UHeraPhysicsDebugSettings"); \ +static_assert(offsetof(UHeraPhysicsDebugSettings, DebugDrawFlags) == 0x000038, "Member 'UHeraPhysicsDebugSettings::DebugDrawFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPhysicsSettings \ +static_assert(alignof(UHeraPhysicsSettings) == 0x000008, "Wrong alignment on UHeraPhysicsSettings"); \ +static_assert(sizeof(UHeraPhysicsSettings) == 0x000070, "Wrong size on UHeraPhysicsSettings"); \ +static_assert(offsetof(UHeraPhysicsSettings, MaxCollisionEnterEventsPerFrame) == 0x000038, "Member 'UHeraPhysicsSettings::MaxCollisionEnterEventsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, MaxDistanceToCameraThreshold) == 0x000040, "Member 'UHeraPhysicsSettings::MaxDistanceToCameraThreshold' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, MinImpulseMagnitudeThreshold) == 0x000048, "Member 'UHeraPhysicsSettings::MinImpulseMagnitudeThreshold' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, MinVelocityThreshold) == 0x000050, "Member 'UHeraPhysicsSettings::MinVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, ImpactDebounceSeconds) == 0x000058, "Member 'UHeraPhysicsSettings::ImpactDebounceSeconds' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, ImpactDebounceCancelThreshold) == 0x00005C, "Member 'UHeraPhysicsSettings::ImpactDebounceCancelThreshold' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, SlidingMinThresholdCmPerSec) == 0x000060, "Member 'UHeraPhysicsSettings::SlidingMinThresholdCmPerSec' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, RollingMinThresholdDegreesPerSec) == 0x000064, "Member 'UHeraPhysicsSettings::RollingMinThresholdDegreesPerSec' has a wrong offset!"); \ +static_assert(offsetof(UHeraPhysicsSettings, ExitDebounceSeconds) == 0x000068, "Member 'UHeraPhysicsSettings::ExitDebounceSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableCommonReference \ +static_assert(alignof(FNiagaraVariableCommonReference) == 0x000008, "Wrong alignment on FNiagaraVariableCommonReference"); \ +static_assert(sizeof(FNiagaraVariableCommonReference) == 0x000010, "Wrong size on FNiagaraVariableCommonReference"); \ +static_assert(offsetof(FNiagaraVariableCommonReference, Name) == 0x000000, "Member 'FNiagaraVariableCommonReference::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableCommonReference, UnderlyingType) == 0x000008, "Member 'FNiagaraVariableCommonReference::UnderlyingType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCompileHash \ +static_assert(alignof(FNiagaraCompileHash) == 0x000008, "Wrong alignment on FNiagaraCompileHash"); \ +static_assert(sizeof(FNiagaraCompileHash) == 0x000010, "Wrong size on FNiagaraCompileHash"); \ +static_assert(offsetof(FNiagaraCompileHash, DataHash) == 0x000000, "Member 'FNiagaraCompileHash::DataHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraMergeable \ +static_assert(alignof(UNiagaraMergeable) == 0x000008, "Wrong alignment on UNiagaraMergeable"); \ +static_assert(sizeof(UNiagaraMergeable) == 0x000028, "Wrong size on UNiagaraMergeable"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceBase \ +static_assert(alignof(UNiagaraDataInterfaceBase) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceBase"); \ +static_assert(sizeof(UNiagaraDataInterfaceBase) == 0x000028, "Wrong size on UNiagaraDataInterfaceBase"); \ + +#define DUMPER7_ASSERTS_ABPRefactor_lightutility_torch_05_POLICE_Attached_C \ +static_assert(alignof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C) == 0x000008, "Wrong alignment on ABPRefactor_lightutility_torch_05_POLICE_Attached_C"); \ +static_assert(sizeof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C) == 0x000310, "Wrong size on ABPRefactor_lightutility_torch_05_POLICE_Attached_C"); \ +static_assert(offsetof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C, Bounce) == 0x0002E8, "Member 'ABPRefactor_lightutility_torch_05_POLICE_Attached_C::Bounce' has a wrong offset!"); \ +static_assert(offsetof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C, SpotLight1) == 0x0002F0, "Member 'ABPRefactor_lightutility_torch_05_POLICE_Attached_C::SpotLight1' has a wrong offset!"); \ +static_assert(offsetof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C, HeraAudioMass) == 0x0002F8, "Member 'ABPRefactor_lightutility_torch_05_POLICE_Attached_C::HeraAudioMass' has a wrong offset!"); \ +static_assert(offsetof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C, Sphere) == 0x000300, "Member 'ABPRefactor_lightutility_torch_05_POLICE_Attached_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABPRefactor_lightutility_torch_05_POLICE_Attached_C, SM_Flashlight_Angle_01) == 0x000308, "Member 'ABPRefactor_lightutility_torch_05_POLICE_Attached_C::SM_Flashlight_Angle_01' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimulationStageMetaData \ +static_assert(alignof(FSimulationStageMetaData) == 0x000008, "Wrong alignment on FSimulationStageMetaData"); \ +static_assert(sizeof(FSimulationStageMetaData) == 0x0000A8, "Wrong size on FSimulationStageMetaData"); \ +static_assert(offsetof(FSimulationStageMetaData, SimulationStageName) == 0x000000, "Member 'FSimulationStageMetaData::SimulationStageName' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, EnabledBinding) == 0x000008, "Member 'FSimulationStageMetaData::EnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ElementCount) == 0x000010, "Member 'FSimulationStageMetaData::ElementCount' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ElementCountXBinding) == 0x00001C, "Member 'FSimulationStageMetaData::ElementCountXBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ElementCountYBinding) == 0x000024, "Member 'FSimulationStageMetaData::ElementCountYBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ElementCountZBinding) == 0x00002C, "Member 'FSimulationStageMetaData::ElementCountZBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, IterationSourceType) == 0x000034, "Member 'FSimulationStageMetaData::IterationSourceType' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, IterationDataInterface) == 0x000038, "Member 'FSimulationStageMetaData::IterationDataInterface' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, IterationDirectBinding) == 0x000040, "Member 'FSimulationStageMetaData::IterationDirectBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ExecuteBehavior) == 0x000048, "Member 'FSimulationStageMetaData::ExecuteBehavior' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ParticleIterationStateBinding) == 0x000050, "Member 'FSimulationStageMetaData::ParticleIterationStateBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, ParticleIterationStateRange) == 0x00005C, "Member 'FSimulationStageMetaData::ParticleIterationStateRange' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, OutputDestinations) == 0x000068, "Member 'FSimulationStageMetaData::OutputDestinations' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, InputDataInterfaces) == 0x000078, "Member 'FSimulationStageMetaData::InputDataInterfaces' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, NumIterations) == 0x000088, "Member 'FSimulationStageMetaData::NumIterations' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, NumIterationsBinding) == 0x00008C, "Member 'FSimulationStageMetaData::NumIterationsBinding' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, GpuDispatchType) == 0x000094, "Member 'FSimulationStageMetaData::GpuDispatchType' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, GpuDirectDispatchElementType) == 0x000095, "Member 'FSimulationStageMetaData::GpuDirectDispatchElementType' has a wrong offset!"); \ +static_assert(offsetof(FSimulationStageMetaData, GpuDispatchNumThreads) == 0x000098, "Member 'FSimulationStageMetaData::GpuDispatchNumThreads' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCompileEvent \ +static_assert(alignof(FNiagaraCompileEvent) == 0x000008, "Wrong alignment on FNiagaraCompileEvent"); \ +static_assert(sizeof(FNiagaraCompileEvent) == 0x000060, "Wrong size on FNiagaraCompileEvent"); \ +static_assert(offsetof(FNiagaraCompileEvent, Severity) == 0x000000, "Member 'FNiagaraCompileEvent::Severity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, Message) == 0x000008, "Member 'FNiagaraCompileEvent::Message' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, ShortDescription) == 0x000018, "Member 'FNiagaraCompileEvent::ShortDescription' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, NodeGuid) == 0x000028, "Member 'FNiagaraCompileEvent::NodeGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, PinGuid) == 0x000038, "Member 'FNiagaraCompileEvent::PinGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, StackGuids) == 0x000048, "Member 'FNiagaraCompileEvent::StackGuids' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileEvent, Source) == 0x000058, "Member 'FNiagaraCompileEvent::Source' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataInterfaceGeneratedFunction \ +static_assert(alignof(FNiagaraDataInterfaceGeneratedFunction) == 0x000008, "Wrong alignment on FNiagaraDataInterfaceGeneratedFunction"); \ +static_assert(sizeof(FNiagaraDataInterfaceGeneratedFunction) == 0x000050, "Wrong size on FNiagaraDataInterfaceGeneratedFunction"); \ +static_assert(offsetof(FNiagaraDataInterfaceGeneratedFunction, VariadicInputs) == 0x000030, "Member 'FNiagaraDataInterfaceGeneratedFunction::VariadicInputs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceGeneratedFunction, VariadicOutputs) == 0x000040, "Member 'FNiagaraDataInterfaceGeneratedFunction::VariadicOutputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataInterfaceGPUParamInfo \ +static_assert(alignof(FNiagaraDataInterfaceGPUParamInfo) == 0x000008, "Wrong alignment on FNiagaraDataInterfaceGPUParamInfo"); \ +static_assert(sizeof(FNiagaraDataInterfaceGPUParamInfo) == 0x000038, "Wrong size on FNiagaraDataInterfaceGPUParamInfo"); \ +static_assert(offsetof(FNiagaraDataInterfaceGPUParamInfo, DataInterfaceHLSLSymbol) == 0x000000, "Member 'FNiagaraDataInterfaceGPUParamInfo::DataInterfaceHLSLSymbol' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceGPUParamInfo, DIClassName) == 0x000010, "Member 'FNiagaraDataInterfaceGPUParamInfo::DIClassName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceGPUParamInfo, ShaderParametersOffset) == 0x000020, "Member 'FNiagaraDataInterfaceGPUParamInfo::ShaderParametersOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceGPUParamInfo, GeneratedFunctions) == 0x000028, "Member 'FNiagaraDataInterfaceGPUParamInfo::GeneratedFunctions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraShaderScriptExternalConstant \ +static_assert(alignof(FNiagaraShaderScriptExternalConstant) == 0x000008, "Wrong alignment on FNiagaraShaderScriptExternalConstant"); \ +static_assert(sizeof(FNiagaraShaderScriptExternalConstant) == 0x000018, "Wrong size on FNiagaraShaderScriptExternalConstant"); \ +static_assert(offsetof(FNiagaraShaderScriptExternalConstant, Type) == 0x000000, "Member 'FNiagaraShaderScriptExternalConstant::Type' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraShaderScriptExternalConstant, Name) == 0x000008, "Member 'FNiagaraShaderScriptExternalConstant::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraShaderScriptParametersMetadata \ +static_assert(alignof(FNiagaraShaderScriptParametersMetadata) == 0x000008, "Wrong alignment on FNiagaraShaderScriptParametersMetadata"); \ +static_assert(sizeof(FNiagaraShaderScriptParametersMetadata) == 0x000058, "Wrong size on FNiagaraShaderScriptParametersMetadata"); \ +static_assert(offsetof(FNiagaraShaderScriptParametersMetadata, DataInterfaceParamInfo) == 0x000000, "Member 'FNiagaraShaderScriptParametersMetadata::DataInterfaceParamInfo' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraShaderScriptParametersMetadata, LooseMetadataNames) == 0x000010, "Member 'FNiagaraShaderScriptParametersMetadata::LooseMetadataNames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraShaderScriptParametersMetadata, bExternalConstantsInterpolated) == 0x000020, "Member 'FNiagaraShaderScriptParametersMetadata::bExternalConstantsInterpolated' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraShaderScriptParametersMetadata, ExternalConstants) == 0x000028, "Member 'FNiagaraShaderScriptParametersMetadata::ExternalConstants' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraScriptBase \ +static_assert(alignof(UNiagaraScriptBase) == 0x000008, "Wrong alignment on UNiagaraScriptBase"); \ +static_assert(sizeof(UNiagaraScriptBase) == 0x000028, "Wrong size on UNiagaraScriptBase"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor \ +static_assert(alignof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor) == 0x000008, "Wrong alignment on GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor"); \ +static_assert(sizeof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor) == 0x000028, "Wrong size on GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, AttachActor) == 0x000000, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::AttachActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, Result) == 0x000008, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::Result' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, K2Node_DynamicCast_AsBP_Boost_Ledge) == 0x000018, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::K2Node_DynamicCast_AsBP_Boost_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor, CallFunc_CanLedgeGrab_Result) == 0x000021, "Member 'GA_PlayerMovement_LedgeHang_C_CanLedgeHangOnAttachActor::CallFunc_CanLedgeGrab_Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility) == 0x0002D0, "Wrong size on GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, NewAttachActor) == 0x000078, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::NewAttachActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_CanLedgeHangOnAttachActor_Result) == 0x000080, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_CanLedgeHangOnAttachActor_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000088, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000099, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000A0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x0000B8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000C0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_GetFrameInput_ReturnValue) == 0x0000C8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_GetFrameInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_CalcTargetLoc_TargetLoc) == 0x000150, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_CalcTargetLoc_TargetLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_CalcTargetLoc_AttachDirection) == 0x000168, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_CalcTargetLoc_AttachDirection' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_X) == 0x000180, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Y) == 0x000188, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Z) == 0x000190, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_X_1) == 0x000198, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_1) == 0x0001A0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_1) == 0x0001A8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001B0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001B8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0001C0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x0001C1, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x0001C2, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0001C8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_X_2) == 0x0001E0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_2) == 0x0001E8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_2) == 0x0001F0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0001F8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_X_3) == 0x000200, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_3) == 0x000208, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_3) == 0x000210, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000218, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess_1) == 0x000220, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000221, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_GetLastInputVector_ReturnValue) == 0x000228, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_VSize_ReturnValue) == 0x000240, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_GetActorForwardVector_ReturnValue) == 0x000248, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000260, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Dot_VectorVector_ReturnValue) == 0x000268, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000270, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x000271, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000278, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000280, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000288, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000289, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_GetPassiveTargetData_ReturnValue) == 0x000290, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_3) == 0x0002B8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_K2_GetSingleActorFromTargetData_OutPins) == 0x0002B9, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_K2_GetSingleActorFromTargetData_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_K2_GetSingleActorFromTargetData_ReturnValue) == 0x0002C0, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_K2_GetSingleActorFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_2) == 0x0002C8, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility, K2Node_SwitchEnum_CmpSuccess) == 0x0002C9, "Member 'GA_PlayerMovement_LedgeHang_C_K2_CanActivateAbility::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_LedgeHang_C \ +static_assert(alignof(UGA_PlayerMovement_LedgeHang_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_LedgeHang_C"); \ +static_assert(sizeof(UGA_PlayerMovement_LedgeHang_C) == 0x000780, "Wrong size on UGA_PlayerMovement_LedgeHang_C"); \ +static_assert(offsetof(UGA_PlayerMovement_LedgeHang_C, HangDistanceThreshold) == 0x000778, "Member 'UGA_PlayerMovement_LedgeHang_C::HangDistanceThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Stealth_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_Stealth_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_Stealth_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_Stealth_C_BlueprintModifyPostProcess) == 0x000E30, "Wrong size on CM_Stealth_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_GetProperty_ReturnValue) == 0x000E00, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_ReturnValue) == 0x000E04, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue) == 0x000E08, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast) == 0x000E10, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast) == 0x000E18, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Stealth_C_BlueprintModifyPostProcess, CallFunc_Lerp_B_ImplicitCast) == 0x000E20, "Member 'CM_Stealth_C_BlueprintModifyPostProcess::CallFunc_Lerp_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Stealth_C \ +static_assert(alignof(UCM_Stealth_C) == 0x000010, "Wrong alignment on UCM_Stealth_C"); \ +static_assert(sizeof(UCM_Stealth_C) == 0x000790, "Wrong size on UCM_Stealth_C"); \ +static_assert(offsetof(UCM_Stealth_C, Curve) == 0x000778, "Member 'UCM_Stealth_C::Curve' has a wrong offset!"); \ +static_assert(offsetof(UCM_Stealth_C, Simple) == 0x000780, "Member 'UCM_Stealth_C::Simple' has a wrong offset!"); \ +static_assert(offsetof(UCM_Stealth_C, Simple_Blend) == 0x000788, "Member 'UCM_Stealth_C::Simple_Blend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_EventReceived_396678CD4CCA93678ACD378177FF3C16::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge) == 0x0007C8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, EntryPoint) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventTag_3) == 0x0000C0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventData_3) == 0x0000C8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventTag_2) == 0x000188, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventData_2) == 0x000190, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventTag_1) == 0x000250, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventData_1) == 0x000258, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_2) == 0x000308, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventTag) == 0x000318, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CustomEvent_EventData) == 0x000320, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_struct_Variable) == 0x0003E0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_struct_Variable_1) == 0x000490, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_4) == 0x000498, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004A8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_bool_Variable) == 0x0004B8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_real_Variable) == 0x0004BC, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_real_Variable_1) == 0x0004C0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_bool_Variable_1) == 0x0004C4, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_object_Variable) == 0x0004C8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_object_Variable_1) == 0x0004D0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_bool_Variable_2) == 0x0004D8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_real_Variable_2) == 0x0004DC, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, Temp_real_Variable_3) == 0x0004E0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_Event_EventData) == 0x0004E8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000598, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005A0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0005B8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_IsValid_ReturnValue) == 0x0005B9, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0005C0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x0005D8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0005E0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Not_PreBool_ReturnValue) == 0x0005F8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_NegateVector_ReturnValue) == 0x000600, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000618, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_CreateDelegate_OutputDelegate_6) == 0x000630, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_BreakRotator_Roll) == 0x000640, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_BreakRotator_Pitch) == 0x000644, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_BreakRotator_Yaw) == 0x000648, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000650, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_MakeRotator_ReturnValue) == 0x000668, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000680, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000698, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Add_VectorVector_ReturnValue) == 0x0006A0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0006B8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x0006C0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_IsValid_ReturnValue_1) == 0x0006C8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0006D0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_MakeArray_Array) == 0x0006D8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_Event_bWasCancelled) == 0x0006E8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0006F0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_Select_Default) == 0x0006F8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000700, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_Select_Default_1) == 0x000728, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_CreateTimeDilation_Handle) == 0x000730, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Array_Random_OutItem) == 0x000734, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_Array_Random_OutIndex) == 0x00073C, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetPlayerPawn_ReturnValue) == 0x000740, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000748, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, K2Node_Select_Default_2) == 0x00074C, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_BooleanAND_ReturnValue) == 0x000750, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000758, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_IsValid_ReturnValue_2) == 0x000760, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000768, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000770, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000790, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0007B0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0007B8, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0007C0, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Dodge::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnBlendOut_396678CD4CCA93678ACD378177FF3C16::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnCancelled_396678CD4CCA93678ACD378177FF3C16::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnCompleted_396678CD4CCA93678ACD378177FF3C16::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_OnInterrupted_396678CD4CCA93678ACD378177FF3C16::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark) == 0x000048, "Wrong size on GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, CallFunc_GetDialogueInfo_ReturnValue) == 0x000010, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, K2Node_MakeArray_Array) == 0x000018, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, K2Node_MakeArray_Array_1) == 0x000028, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000038, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000040, "Member 'GA_Ysabella_BlurredMomentum_Dodge_C_PlayBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ysabella_BlurredMomentum_Dodge_C \ +static_assert(alignof(UGA_Ysabella_BlurredMomentum_Dodge_C) == 0x000008, "Wrong alignment on UGA_Ysabella_BlurredMomentum_Dodge_C"); \ +static_assert(sizeof(UGA_Ysabella_BlurredMomentum_Dodge_C) == 0x000690, "Wrong size on UGA_Ysabella_BlurredMomentum_Dodge_C"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Dodge_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ysabella_BlurredMomentum_Dodge_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Dodge_C, RootMotionStrength) == 0x000670, "Member 'UGA_Ysabella_BlurredMomentum_Dodge_C::RootMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Dodge_C, DilationHandle) == 0x000674, "Member 'UGA_Ysabella_BlurredMomentum_Dodge_C::DilationHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Dodge_C, WillCounter) == 0x000678, "Member 'UGA_Ysabella_BlurredMomentum_Dodge_C::WillCounter' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Dodge_C, SectionNames) == 0x000680, "Member 'UGA_Ysabella_BlurredMomentum_Dodge_C::SectionNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_StunRegen_C \ +static_assert(alignof(UGE_StunRegen_C) == 0x000008, "Wrong alignment on UGE_StunRegen_C"); \ +static_assert(sizeof(UGE_StunRegen_C) == 0x000A70, "Wrong size on UGE_StunRegen_C"); \ + +#define DUMPER7_ASSERTS_FNiagaraTypeDefinitionHandle \ +static_assert(alignof(FNiagaraTypeDefinitionHandle) == 0x000004, "Wrong alignment on FNiagaraTypeDefinitionHandle"); \ +static_assert(sizeof(FNiagaraTypeDefinitionHandle) == 0x000004, "Wrong size on FNiagaraTypeDefinitionHandle"); \ +static_assert(offsetof(FNiagaraTypeDefinitionHandle, RegisteredTypeIndex) == 0x000000, "Member 'FNiagaraTypeDefinitionHandle::RegisteredTypeIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableBase \ +static_assert(alignof(FNiagaraVariableBase) == 0x000004, "Wrong alignment on FNiagaraVariableBase"); \ +static_assert(sizeof(FNiagaraVariableBase) == 0x00000C, "Wrong size on FNiagaraVariableBase"); \ +static_assert(offsetof(FNiagaraVariableBase, Name) == 0x000000, "Member 'FNiagaraVariableBase::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableBase, TypeDefHandle) == 0x000008, "Member 'FNiagaraVariableBase::TypeDefHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMaterialAttributeBinding \ +static_assert(alignof(FNiagaraMaterialAttributeBinding) == 0x000004, "Wrong alignment on FNiagaraMaterialAttributeBinding"); \ +static_assert(sizeof(FNiagaraMaterialAttributeBinding) == 0x00002C, "Wrong size on FNiagaraMaterialAttributeBinding"); \ +static_assert(offsetof(FNiagaraMaterialAttributeBinding, MaterialParameterName) == 0x000000, "Member 'FNiagaraMaterialAttributeBinding::MaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMaterialAttributeBinding, NiagaraVariable) == 0x000008, "Member 'FNiagaraMaterialAttributeBinding::NiagaraVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMaterialAttributeBinding, ResolvedNiagaraVariable) == 0x000014, "Member 'FNiagaraMaterialAttributeBinding::ResolvedNiagaraVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMaterialAttributeBinding, NiagaraChildVariable) == 0x000020, "Member 'FNiagaraMaterialAttributeBinding::NiagaraChildVariable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheCaptureParameters \ +static_assert(alignof(FNiagaraSimCacheCaptureParameters) == 0x000004, "Wrong alignment on FNiagaraSimCacheCaptureParameters"); \ +static_assert(sizeof(FNiagaraSimCacheCaptureParameters) == 0x00001C, "Wrong size on FNiagaraSimCacheCaptureParameters"); \ +static_assert(offsetof(FNiagaraSimCacheCaptureParameters, NumFrames) == 0x000004, "Member 'FNiagaraSimCacheCaptureParameters::NumFrames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCaptureParameters, CaptureRate) == 0x000008, "Member 'FNiagaraSimCacheCaptureParameters::CaptureRate' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCaptureParameters, TimeoutFrameCount) == 0x000010, "Member 'FNiagaraSimCacheCaptureParameters::TimeoutFrameCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCaptureParameters, ImmediateCaptureDeltaTime) == 0x000018, "Member 'FNiagaraSimCacheCaptureParameters::ImmediateCaptureDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataSetID \ +static_assert(alignof(FNiagaraDataSetID) == 0x000004, "Wrong alignment on FNiagaraDataSetID"); \ +static_assert(sizeof(FNiagaraDataSetID) == 0x00000C, "Wrong size on FNiagaraDataSetID"); \ +static_assert(offsetof(FNiagaraDataSetID, Name) == 0x000000, "Member 'FNiagaraDataSetID::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetID, Type) == 0x000008, "Member 'FNiagaraDataSetID::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraStructConversionStep \ +static_assert(alignof(FNiagaraStructConversionStep) == 0x000004, "Wrong alignment on FNiagaraStructConversionStep"); \ +static_assert(sizeof(FNiagaraStructConversionStep) == 0x000014, "Wrong size on FNiagaraStructConversionStep"); \ +static_assert(offsetof(FNiagaraStructConversionStep, LWCBytes) == 0x000000, "Member 'FNiagaraStructConversionStep::LWCBytes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStructConversionStep, LWCOffset) == 0x000004, "Member 'FNiagaraStructConversionStep::LWCOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStructConversionStep, SimulationBytes) == 0x000008, "Member 'FNiagaraStructConversionStep::SimulationBytes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStructConversionStep, SimulationOffset) == 0x00000C, "Member 'FNiagaraStructConversionStep::SimulationOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStructConversionStep, ConversionType) == 0x000010, "Member 'FNiagaraStructConversionStep::ConversionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraInt32 \ +static_assert(alignof(FNiagaraInt32) == 0x000004, "Wrong alignment on FNiagaraInt32"); \ +static_assert(sizeof(FNiagaraInt32) == 0x000004, "Wrong size on FNiagaraInt32"); \ +static_assert(offsetof(FNiagaraInt32, Value) == 0x000000, "Member 'FNiagaraInt32::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheCreateParameters \ +static_assert(alignof(FNiagaraSimCacheCreateParameters) == 0x000008, "Wrong alignment on FNiagaraSimCacheCreateParameters"); \ +static_assert(sizeof(FNiagaraSimCacheCreateParameters) == 0x000058, "Wrong size on FNiagaraSimCacheCreateParameters"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, AttributeCaptureMode) == 0x000000, "Member 'FNiagaraSimCacheCreateParameters::AttributeCaptureMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, RebaseIncludeAttributes) == 0x000008, "Member 'FNiagaraSimCacheCreateParameters::RebaseIncludeAttributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, RebaseExcludeAttributes) == 0x000018, "Member 'FNiagaraSimCacheCreateParameters::RebaseExcludeAttributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, InterpolationIncludeAttributes) == 0x000028, "Member 'FNiagaraSimCacheCreateParameters::InterpolationIncludeAttributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, InterpolationExcludeAttributes) == 0x000038, "Member 'FNiagaraSimCacheCreateParameters::InterpolationExcludeAttributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheCreateParameters, ExplicitCaptureAttributes) == 0x000048, "Member 'FNiagaraSimCacheCreateParameters::ExplicitCaptureAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDIRenderTargetVolumeSimCacheFrame \ +static_assert(alignof(FNDIRenderTargetVolumeSimCacheFrame) == 0x000008, "Wrong alignment on FNDIRenderTargetVolumeSimCacheFrame"); \ +static_assert(sizeof(FNDIRenderTargetVolumeSimCacheFrame) == 0x000048, "Wrong size on FNDIRenderTargetVolumeSimCacheFrame"); \ +static_assert(offsetof(FNDIRenderTargetVolumeSimCacheFrame, Size) == 0x000000, "Member 'FNDIRenderTargetVolumeSimCacheFrame::Size' has a wrong offset!"); \ +static_assert(offsetof(FNDIRenderTargetVolumeSimCacheFrame, Format) == 0x00000C, "Member 'FNDIRenderTargetVolumeSimCacheFrame::Format' has a wrong offset!"); \ +static_assert(offsetof(FNDIRenderTargetVolumeSimCacheFrame, UncompressedSize) == 0x000010, "Member 'FNDIRenderTargetVolumeSimCacheFrame::UncompressedSize' has a wrong offset!"); \ +static_assert(offsetof(FNDIRenderTargetVolumeSimCacheFrame, CompressedSize) == 0x000014, "Member 'FNDIRenderTargetVolumeSimCacheFrame::CompressedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataSetProperties \ +static_assert(alignof(FNiagaraDataSetProperties) == 0x000008, "Wrong alignment on FNiagaraDataSetProperties"); \ +static_assert(sizeof(FNiagaraDataSetProperties) == 0x000020, "Wrong size on FNiagaraDataSetProperties"); \ +static_assert(offsetof(FNiagaraDataSetProperties, ID) == 0x000000, "Member 'FNiagaraDataSetProperties::ID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetProperties, Variables) == 0x000010, "Member 'FNiagaraDataSetProperties::Variables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptDataUsageInfo \ +static_assert(alignof(FNiagaraScriptDataUsageInfo) == 0x000001, "Wrong alignment on FNiagaraScriptDataUsageInfo"); \ +static_assert(sizeof(FNiagaraScriptDataUsageInfo) == 0x000001, "Wrong size on FNiagaraScriptDataUsageInfo"); \ +static_assert(offsetof(FNiagaraScriptDataUsageInfo, bReadsAttributeData) == 0x000000, "Member 'FNiagaraScriptDataUsageInfo::bReadsAttributeData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariable \ +static_assert(alignof(FNiagaraVariable) == 0x000008, "Wrong alignment on FNiagaraVariable"); \ +static_assert(sizeof(FNiagaraVariable) == 0x000020, "Wrong size on FNiagaraVariable"); \ +static_assert(offsetof(FNiagaraVariable, VarData) == 0x000010, "Member 'FNiagaraVariable::VarData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraFunctionSignature \ +static_assert(alignof(FNiagaraFunctionSignature) == 0x000008, "Wrong alignment on FNiagaraFunctionSignature"); \ +static_assert(sizeof(FNiagaraFunctionSignature) == 0x000098, "Wrong size on FNiagaraFunctionSignature"); \ +static_assert(offsetof(FNiagaraFunctionSignature, Name) == 0x000000, "Member 'FNiagaraFunctionSignature::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, Inputs) == 0x000008, "Member 'FNiagaraFunctionSignature::Inputs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, Outputs) == 0x000018, "Member 'FNiagaraFunctionSignature::Outputs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, OwnerName) == 0x000028, "Member 'FNiagaraFunctionSignature::OwnerName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, ModuleUsageBitmask) == 0x000034, "Member 'FNiagaraFunctionSignature::ModuleUsageBitmask' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, MiscUsageBitMask) == 0x000038, "Member 'FNiagaraFunctionSignature::MiscUsageBitMask' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, ContextStageIndex) == 0x00003C, "Member 'FNiagaraFunctionSignature::ContextStageIndex' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, RequiredInputs) == 0x000040, "Member 'FNiagaraFunctionSignature::RequiredInputs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, RequiredOutputs) == 0x000042, "Member 'FNiagaraFunctionSignature::RequiredOutputs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraFunctionSignature, FunctionSpecifiers) == 0x000048, "Member 'FNiagaraFunctionSignature::FunctionSpecifiers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptUObjectCompileInfo \ +static_assert(alignof(FNiagaraScriptUObjectCompileInfo) == 0x000008, "Wrong alignment on FNiagaraScriptUObjectCompileInfo"); \ +static_assert(sizeof(FNiagaraScriptUObjectCompileInfo) == 0x000050, "Wrong size on FNiagaraScriptUObjectCompileInfo"); \ +static_assert(offsetof(FNiagaraScriptUObjectCompileInfo, Variable) == 0x000000, "Member 'FNiagaraScriptUObjectCompileInfo::Variable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptUObjectCompileInfo, Object) == 0x000010, "Member 'FNiagaraScriptUObjectCompileInfo::Object' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptUObjectCompileInfo, ObjectPath) == 0x000018, "Member 'FNiagaraScriptUObjectCompileInfo::ObjectPath' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptUObjectCompileInfo, RegisteredParameterMapRead) == 0x000038, "Member 'FNiagaraScriptUObjectCompileInfo::RegisteredParameterMapRead' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptUObjectCompileInfo, RegisteredParameterMapWrites) == 0x000040, "Member 'FNiagaraScriptUObjectCompileInfo::RegisteredParameterMapWrites' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraResolvedUObjectInfo \ +static_assert(alignof(FNiagaraResolvedUObjectInfo) == 0x000008, "Wrong alignment on FNiagaraResolvedUObjectInfo"); \ +static_assert(sizeof(FNiagaraResolvedUObjectInfo) == 0x000020, "Wrong size on FNiagaraResolvedUObjectInfo"); \ +static_assert(offsetof(FNiagaraResolvedUObjectInfo, ReadVariableName) == 0x000000, "Member 'FNiagaraResolvedUObjectInfo::ReadVariableName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraResolvedUObjectInfo, ResolvedVariable) == 0x000008, "Member 'FNiagaraResolvedUObjectInfo::ResolvedVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraResolvedUObjectInfo, Object) == 0x000018, "Member 'FNiagaraResolvedUObjectInfo::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraExternalUObjectInfo \ +static_assert(alignof(FNiagaraExternalUObjectInfo) == 0x000004, "Wrong alignment on FNiagaraExternalUObjectInfo"); \ +static_assert(sizeof(FNiagaraExternalUObjectInfo) == 0x000014, "Wrong size on FNiagaraExternalUObjectInfo"); \ +static_assert(offsetof(FNiagaraExternalUObjectInfo, Variable) == 0x000000, "Member 'FNiagaraExternalUObjectInfo::Variable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraExternalUObjectInfo, ExternalName) == 0x00000C, "Member 'FNiagaraExternalUObjectInfo::ExternalName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraTypeDefinition \ +static_assert(alignof(FNiagaraTypeDefinition) == 0x000008, "Wrong alignment on FNiagaraTypeDefinition"); \ +static_assert(sizeof(FNiagaraTypeDefinition) == 0x000010, "Wrong size on FNiagaraTypeDefinition"); \ +static_assert(offsetof(FNiagaraTypeDefinition, ClassStructOrEnum) == 0x000000, "Member 'FNiagaraTypeDefinition::ClassStructOrEnum' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraTypeDefinition, UnderlyingType) == 0x000008, "Member 'FNiagaraTypeDefinition::UnderlyingType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraTypeDefinition, Flags) == 0x00000A, "Member 'FNiagaraTypeDefinition::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptDataInterfaceInfo \ +static_assert(alignof(FNiagaraScriptDataInterfaceInfo) == 0x000008, "Wrong alignment on FNiagaraScriptDataInterfaceInfo"); \ +static_assert(sizeof(FNiagaraScriptDataInterfaceInfo) == 0x000050, "Wrong size on FNiagaraScriptDataInterfaceInfo"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, DataInterface) == 0x000000, "Member 'FNiagaraScriptDataInterfaceInfo::DataInterface' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, Name) == 0x000008, "Member 'FNiagaraScriptDataInterfaceInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, CompileName) == 0x000010, "Member 'FNiagaraScriptDataInterfaceInfo::CompileName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, UserPtrIdx) == 0x000018, "Member 'FNiagaraScriptDataInterfaceInfo::UserPtrIdx' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, Type) == 0x000020, "Member 'FNiagaraScriptDataInterfaceInfo::Type' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, RegisteredParameterMapRead) == 0x000030, "Member 'FNiagaraScriptDataInterfaceInfo::RegisteredParameterMapRead' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, RegisteredParameterMapWrite) == 0x000038, "Member 'FNiagaraScriptDataInterfaceInfo::RegisteredParameterMapWrite' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceInfo, SourceEmitterName) == 0x000040, "Member 'FNiagaraScriptDataInterfaceInfo::SourceEmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraResolvedUserDataInterfaceBinding \ +static_assert(alignof(FNiagaraResolvedUserDataInterfaceBinding) == 0x000004, "Wrong alignment on FNiagaraResolvedUserDataInterfaceBinding"); \ +static_assert(sizeof(FNiagaraResolvedUserDataInterfaceBinding) == 0x000008, "Wrong size on FNiagaraResolvedUserDataInterfaceBinding"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptResolvedDataInterfaceInfo \ +static_assert(alignof(FNiagaraScriptResolvedDataInterfaceInfo) == 0x000008, "Wrong alignment on FNiagaraScriptResolvedDataInterfaceInfo"); \ +static_assert(sizeof(FNiagaraScriptResolvedDataInterfaceInfo) == 0x000050, "Wrong size on FNiagaraScriptResolvedDataInterfaceInfo"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, Name) == 0x000000, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, CompileName) == 0x000008, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::CompileName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, ResolvedSourceEmitterName) == 0x000010, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::ResolvedSourceEmitterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, ResolvedVariable) == 0x000020, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::ResolvedVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, ParameterStoreVariable) == 0x00002C, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::ParameterStoreVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, bIsInternal) == 0x000038, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::bIsInternal' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, ResolvedDataInterface) == 0x000040, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::ResolvedDataInterface' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptResolvedDataInterfaceInfo, UserPtrIdx) == 0x000048, "Member 'FNiagaraScriptResolvedDataInterfaceInfo::UserPtrIdx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptDataInterfaceCompileInfo \ +static_assert(alignof(FNiagaraScriptDataInterfaceCompileInfo) == 0x000008, "Wrong alignment on FNiagaraScriptDataInterfaceCompileInfo"); \ +static_assert(sizeof(FNiagaraScriptDataInterfaceCompileInfo) == 0x000048, "Wrong size on FNiagaraScriptDataInterfaceCompileInfo"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, Name) == 0x000000, "Member 'FNiagaraScriptDataInterfaceCompileInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, UserPtrIdx) == 0x000008, "Member 'FNiagaraScriptDataInterfaceCompileInfo::UserPtrIdx' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, Type) == 0x000010, "Member 'FNiagaraScriptDataInterfaceCompileInfo::Type' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, RegisteredParameterMapRead) == 0x000020, "Member 'FNiagaraScriptDataInterfaceCompileInfo::RegisteredParameterMapRead' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, RegisteredParameterMapWrite) == 0x000028, "Member 'FNiagaraScriptDataInterfaceCompileInfo::RegisteredParameterMapWrite' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, bIsPlaceholder) == 0x000030, "Member 'FNiagaraScriptDataInterfaceCompileInfo::bIsPlaceholder' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptDataInterfaceCompileInfo, SourceEmitterName) == 0x000038, "Member 'FNiagaraScriptDataInterfaceCompileInfo::SourceEmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraStatScope \ +static_assert(alignof(FNiagaraStatScope) == 0x000004, "Wrong alignment on FNiagaraStatScope"); \ +static_assert(sizeof(FNiagaraStatScope) == 0x000010, "Wrong size on FNiagaraStatScope"); \ +static_assert(offsetof(FNiagaraStatScope, FullName) == 0x000000, "Member 'FNiagaraStatScope::FullName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStatScope, FriendlyName) == 0x000008, "Member 'FNiagaraStatScope::FriendlyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVMFunctionSpecifier \ +static_assert(alignof(FVMFunctionSpecifier) == 0x000004, "Wrong alignment on FVMFunctionSpecifier"); \ +static_assert(sizeof(FVMFunctionSpecifier) == 0x000010, "Wrong size on FVMFunctionSpecifier"); \ +static_assert(offsetof(FVMFunctionSpecifier, Key) == 0x000000, "Member 'FVMFunctionSpecifier::Key' has a wrong offset!"); \ +static_assert(offsetof(FVMFunctionSpecifier, Value) == 0x000008, "Member 'FVMFunctionSpecifier::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVMExternalFunctionBindingInfo \ +static_assert(alignof(FVMExternalFunctionBindingInfo) == 0x000008, "Wrong alignment on FVMExternalFunctionBindingInfo"); \ +static_assert(sizeof(FVMExternalFunctionBindingInfo) == 0x000058, "Wrong size on FVMExternalFunctionBindingInfo"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, Name) == 0x000000, "Member 'FVMExternalFunctionBindingInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, OwnerName) == 0x000008, "Member 'FVMExternalFunctionBindingInfo::OwnerName' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, InputParamLocations) == 0x000010, "Member 'FVMExternalFunctionBindingInfo::InputParamLocations' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, NumOutputs) == 0x000020, "Member 'FVMExternalFunctionBindingInfo::NumOutputs' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, FunctionSpecifiers) == 0x000028, "Member 'FVMExternalFunctionBindingInfo::FunctionSpecifiers' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, VariadicInputs) == 0x000038, "Member 'FVMExternalFunctionBindingInfo::VariadicInputs' has a wrong offset!"); \ +static_assert(offsetof(FVMExternalFunctionBindingInfo, VariadicOutputs) == 0x000048, "Member 'FVMExternalFunctionBindingInfo::VariadicOutputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemUpdateContext \ +static_assert(alignof(FNiagaraSystemUpdateContext) == 0x000008, "Wrong alignment on FNiagaraSystemUpdateContext"); \ +static_assert(sizeof(FNiagaraSystemUpdateContext) == 0x000078, "Wrong size on FNiagaraSystemUpdateContext"); \ +static_assert(offsetof(FNiagaraSystemUpdateContext, ComponentsToReset) == 0x000000, "Member 'FNiagaraSystemUpdateContext::ComponentsToReset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemUpdateContext, ComponentsToReInit) == 0x000010, "Member 'FNiagaraSystemUpdateContext::ComponentsToReInit' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemUpdateContext, ComponentsToNotifySimDestroy) == 0x000020, "Member 'FNiagaraSystemUpdateContext::ComponentsToNotifySimDestroy' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemUpdateContext, SystemSimsToDestroy) == 0x000030, "Member 'FNiagaraSystemUpdateContext::SystemSimsToDestroy' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemUpdateContext, SystemSimsToRecache) == 0x000040, "Member 'FNiagaraSystemUpdateContext::SystemSimsToRecache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableInfo \ +static_assert(alignof(FNiagaraVariableInfo) == 0x000008, "Wrong alignment on FNiagaraVariableInfo"); \ +static_assert(sizeof(FNiagaraVariableInfo) == 0x000040, "Wrong size on FNiagaraVariableInfo"); \ +static_assert(offsetof(FNiagaraVariableInfo, Variable) == 0x000000, "Member 'FNiagaraVariableInfo::Variable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableInfo, Definition) == 0x000020, "Member 'FNiagaraVariableInfo::Definition' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableInfo, DataInterface) == 0x000038, "Member 'FNiagaraVariableInfo::DataInterface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableAttributeBinding \ +static_assert(alignof(FNiagaraVariableAttributeBinding) == 0x000008, "Wrong alignment on FNiagaraVariableAttributeBinding"); \ +static_assert(sizeof(FNiagaraVariableAttributeBinding) == 0x000038, "Wrong size on FNiagaraVariableAttributeBinding"); \ +static_assert(offsetof(FNiagaraVariableAttributeBinding, RootVariable) == 0x000000, "Member 'FNiagaraVariableAttributeBinding::RootVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableAttributeBinding, ParamMapVariable) == 0x000020, "Member 'FNiagaraVariableAttributeBinding::ParamMapVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableAttributeBinding, DataSetName) == 0x00002C, "Member 'FNiagaraVariableAttributeBinding::DataSetName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableAttributeBinding, BindingSourceMode) == 0x000034, "Member 'FNiagaraVariableAttributeBinding::BindingSourceMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableDataInterfaceBinding \ +static_assert(alignof(FNiagaraVariableDataInterfaceBinding) == 0x000008, "Wrong alignment on FNiagaraVariableDataInterfaceBinding"); \ +static_assert(sizeof(FNiagaraVariableDataInterfaceBinding) == 0x000020, "Wrong size on FNiagaraVariableDataInterfaceBinding"); \ +static_assert(offsetof(FNiagaraVariableDataInterfaceBinding, BoundVariable) == 0x000000, "Member 'FNiagaraVariableDataInterfaceBinding::BoundVariable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptVariableBinding \ +static_assert(alignof(FNiagaraScriptVariableBinding) == 0x000004, "Wrong alignment on FNiagaraScriptVariableBinding"); \ +static_assert(sizeof(FNiagaraScriptVariableBinding) == 0x000008, "Wrong size on FNiagaraScriptVariableBinding"); \ +static_assert(offsetof(FNiagaraScriptVariableBinding, Name) == 0x000000, "Member 'FNiagaraScriptVariableBinding::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraUserParameterBinding \ +static_assert(alignof(FNiagaraUserParameterBinding) == 0x000008, "Wrong alignment on FNiagaraUserParameterBinding"); \ +static_assert(sizeof(FNiagaraUserParameterBinding) == 0x000020, "Wrong size on FNiagaraUserParameterBinding"); \ +static_assert(offsetof(FNiagaraUserParameterBinding, Parameter) == 0x000000, "Member 'FNiagaraUserParameterBinding::Parameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCompileDependency \ +static_assert(alignof(FNiagaraCompileDependency) == 0x000008, "Wrong alignment on FNiagaraCompileDependency"); \ +static_assert(sizeof(FNiagaraCompileDependency) == 0x000050, "Wrong size on FNiagaraCompileDependency"); \ +static_assert(offsetof(FNiagaraCompileDependency, LinkerErrorMessage) == 0x000000, "Member 'FNiagaraCompileDependency::LinkerErrorMessage' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileDependency, NodeGuid) == 0x000010, "Member 'FNiagaraCompileDependency::NodeGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileDependency, PinGuid) == 0x000020, "Member 'FNiagaraCompileDependency::PinGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileDependency, StackGuids) == 0x000030, "Member 'FNiagaraCompileDependency::StackGuids' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileDependency, DependentVariable) == 0x000040, "Member 'FNiagaraCompileDependency::DependentVariable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileDependency, bDependentVariableFromCustomIterationNamespace) == 0x00004C, "Member 'FNiagaraCompileDependency::bDependentVariableFromCustomIterationNamespace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptAsyncCompileData \ +static_assert(alignof(FNiagaraScriptAsyncCompileData) == 0x000008, "Wrong alignment on FNiagaraScriptAsyncCompileData"); \ +static_assert(sizeof(FNiagaraScriptAsyncCompileData) == 0x0000F8, "Wrong size on FNiagaraScriptAsyncCompileData"); \ +static_assert(offsetof(FNiagaraScriptAsyncCompileData, RapidIterationParameters) == 0x000098, "Member 'FNiagaraScriptAsyncCompileData::RapidIterationParameters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptAsyncCompileData, NamedDataInterfaces) == 0x0000A8, "Member 'FNiagaraScriptAsyncCompileData::NamedDataInterfaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemAsyncCompileResults \ +static_assert(alignof(FNiagaraSystemAsyncCompileResults) == 0x000008, "Wrong alignment on FNiagaraSystemAsyncCompileResults"); \ +static_assert(sizeof(FNiagaraSystemAsyncCompileResults) == 0x000088, "Wrong size on FNiagaraSystemAsyncCompileResults"); \ +static_assert(offsetof(FNiagaraSystemAsyncCompileResults, RootObjects) == 0x000000, "Member 'FNiagaraSystemAsyncCompileResults::RootObjects' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemAsyncCompileResults, ExposedVariables) == 0x000068, "Member 'FNiagaraSystemAsyncCompileResults::ExposedVariables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCompileHashVisitorDebugInfo \ +static_assert(alignof(FNiagaraCompileHashVisitorDebugInfo) == 0x000008, "Wrong alignment on FNiagaraCompileHashVisitorDebugInfo"); \ +static_assert(sizeof(FNiagaraCompileHashVisitorDebugInfo) == 0x000030, "Wrong size on FNiagaraCompileHashVisitorDebugInfo"); \ +static_assert(offsetof(FNiagaraCompileHashVisitorDebugInfo, Object) == 0x000000, "Member 'FNiagaraCompileHashVisitorDebugInfo::Object' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileHashVisitorDebugInfo, PropertyKeys) == 0x000010, "Member 'FNiagaraCompileHashVisitorDebugInfo::PropertyKeys' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompileHashVisitorDebugInfo, PropertyValues) == 0x000020, "Member 'FNiagaraCompileHashVisitorDebugInfo::PropertyValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataChannelSearchParameters \ +static_assert(alignof(FNiagaraDataChannelSearchParameters) == 0x000008, "Wrong alignment on FNiagaraDataChannelSearchParameters"); \ +static_assert(sizeof(FNiagaraDataChannelSearchParameters) == 0x000020, "Wrong size on FNiagaraDataChannelSearchParameters"); \ +static_assert(offsetof(FNiagaraDataChannelSearchParameters, OwningComponent) == 0x000000, "Member 'FNiagaraDataChannelSearchParameters::OwningComponent' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataChannelSearchParameters, Location) == 0x000008, "Member 'FNiagaraDataChannelSearchParameters::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraLwcStructConverter \ +static_assert(alignof(FNiagaraLwcStructConverter) == 0x000008, "Wrong alignment on FNiagaraLwcStructConverter"); \ +static_assert(sizeof(FNiagaraLwcStructConverter) == 0x000018, "Wrong size on FNiagaraLwcStructConverter"); \ +static_assert(offsetof(FNiagaraLwcStructConverter, LWCSize) == 0x000000, "Member 'FNiagaraLwcStructConverter::LWCSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraLwcStructConverter, SWCSize) == 0x000004, "Member 'FNiagaraLwcStructConverter::SWCSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraLwcStructConverter, ConversionSteps) == 0x000008, "Member 'FNiagaraLwcStructConverter::ConversionSteps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataChannelGameDataLayout \ +static_assert(alignof(FNiagaraDataChannelGameDataLayout) == 0x000008, "Wrong alignment on FNiagaraDataChannelGameDataLayout"); \ +static_assert(sizeof(FNiagaraDataChannelGameDataLayout) == 0x000060, "Wrong size on FNiagaraDataChannelGameDataLayout"); \ +static_assert(offsetof(FNiagaraDataChannelGameDataLayout, VariableIndices) == 0x000000, "Member 'FNiagaraDataChannelGameDataLayout::VariableIndices' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataChannelGameDataLayout, LwcConverters) == 0x000050, "Member 'FNiagaraDataChannelGameDataLayout::LwcConverters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDCIsland \ +static_assert(alignof(FNDCIsland) == 0x000008, "Wrong alignment on FNDCIsland"); \ +static_assert(sizeof(FNDCIsland) == 0x000070, "Wrong size on FNDCIsland"); \ +static_assert(offsetof(FNDCIsland, Owner) == 0x000000, "Member 'FNDCIsland::Owner' has a wrong offset!"); \ +static_assert(offsetof(FNDCIsland, Bounds) == 0x000008, "Member 'FNDCIsland::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FNDCIsland, NiagaraSystems) == 0x000040, "Member 'FNDCIsland::NiagaraSystems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDCIslandDebugDrawSettings \ +static_assert(alignof(FNDCIslandDebugDrawSettings) == 0x000004, "Wrong alignment on FNDCIslandDebugDrawSettings"); \ +static_assert(sizeof(FNDCIslandDebugDrawSettings) == 0x000004, "Wrong size on FNDCIslandDebugDrawSettings"); \ + +#define DUMPER7_ASSERTS_FNDIDataChannelFunctionInfo \ +static_assert(alignof(FNDIDataChannelFunctionInfo) == 0x000008, "Wrong alignment on FNDIDataChannelFunctionInfo"); \ +static_assert(sizeof(FNDIDataChannelFunctionInfo) == 0x000028, "Wrong size on FNDIDataChannelFunctionInfo"); \ +static_assert(offsetof(FNDIDataChannelFunctionInfo, FunctionName) == 0x000000, "Member 'FNDIDataChannelFunctionInfo::FunctionName' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelFunctionInfo, Inputs) == 0x000008, "Member 'FNDIDataChannelFunctionInfo::Inputs' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelFunctionInfo, Outputs) == 0x000018, "Member 'FNDIDataChannelFunctionInfo::Outputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDIDataChannel_GPUScriptParameterAccessInfo \ +static_assert(alignof(FNDIDataChannel_GPUScriptParameterAccessInfo) == 0x000008, "Wrong alignment on FNDIDataChannel_GPUScriptParameterAccessInfo"); \ +static_assert(sizeof(FNDIDataChannel_GPUScriptParameterAccessInfo) == 0x000010, "Wrong size on FNDIDataChannel_GPUScriptParameterAccessInfo"); \ +static_assert(offsetof(FNDIDataChannel_GPUScriptParameterAccessInfo, SortedParameters) == 0x000000, "Member 'FNDIDataChannel_GPUScriptParameterAccessInfo::SortedParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDIDataChannelCompiledData \ +static_assert(alignof(FNDIDataChannelCompiledData) == 0x000008, "Wrong alignment on FNDIDataChannelCompiledData"); \ +static_assert(sizeof(FNDIDataChannelCompiledData) == 0x000068, "Wrong size on FNDIDataChannelCompiledData"); \ +static_assert(offsetof(FNDIDataChannelCompiledData, FunctionInfo) == 0x000000, "Member 'FNDIDataChannelCompiledData::FunctionInfo' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelCompiledData, GPUScriptParameterInfos) == 0x000010, "Member 'FNDIDataChannelCompiledData::GPUScriptParameterInfos' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelCompiledData, TotalParams) == 0x000060, "Member 'FNDIDataChannelCompiledData::TotalParams' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelCompiledData, bUsedByCPU) == 0x000064, "Member 'FNDIDataChannelCompiledData::bUsedByCPU' has a wrong offset!"); \ +static_assert(offsetof(FNDIDataChannelCompiledData, bUsedByGPU) == 0x000065, "Member 'FNDIDataChannelCompiledData::bUsedByGPU' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraTypeLayoutInfo \ +static_assert(alignof(FNiagaraTypeLayoutInfo) == 0x000008, "Wrong alignment on FNiagaraTypeLayoutInfo"); \ +static_assert(sizeof(FNiagaraTypeLayoutInfo) == 0x000018, "Wrong size on FNiagaraTypeLayoutInfo"); \ +static_assert(offsetof(FNiagaraTypeLayoutInfo, NumFloatComponents) == 0x000000, "Member 'FNiagaraTypeLayoutInfo::NumFloatComponents' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraTypeLayoutInfo, NumInt32Components) == 0x000002, "Member 'FNiagaraTypeLayoutInfo::NumInt32Components' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraTypeLayoutInfo, NumHalfComponents) == 0x000004, "Member 'FNiagaraTypeLayoutInfo::NumHalfComponents' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraTypeLayoutInfo, ComponentsOffsets) == 0x000008, "Member 'FNiagaraTypeLayoutInfo::ComponentsOffsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableLayoutInfo \ +static_assert(alignof(FNiagaraVariableLayoutInfo) == 0x000008, "Wrong alignment on FNiagaraVariableLayoutInfo"); \ +static_assert(sizeof(FNiagaraVariableLayoutInfo) == 0x000020, "Wrong size on FNiagaraVariableLayoutInfo"); \ +static_assert(offsetof(FNiagaraVariableLayoutInfo, FloatComponentStart) == 0x000000, "Member 'FNiagaraVariableLayoutInfo::FloatComponentStart' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableLayoutInfo, Int32ComponentStart) == 0x000002, "Member 'FNiagaraVariableLayoutInfo::Int32ComponentStart' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableLayoutInfo, HalfComponentStart) == 0x000004, "Member 'FNiagaraVariableLayoutInfo::HalfComponentStart' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableLayoutInfo, LayoutInfo) == 0x000008, "Member 'FNiagaraVariableLayoutInfo::LayoutInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataSetCompiledData \ +static_assert(alignof(FNiagaraDataSetCompiledData) == 0x000008, "Wrong alignment on FNiagaraDataSetCompiledData"); \ +static_assert(sizeof(FNiagaraDataSetCompiledData) == 0x000048, "Wrong size on FNiagaraDataSetCompiledData"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, Variables) == 0x000000, "Member 'FNiagaraDataSetCompiledData::Variables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, VariableLayouts) == 0x000010, "Member 'FNiagaraDataSetCompiledData::VariableLayouts' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, ID) == 0x000020, "Member 'FNiagaraDataSetCompiledData::ID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, TotalFloatComponents) == 0x00002C, "Member 'FNiagaraDataSetCompiledData::TotalFloatComponents' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, TotalInt32Components) == 0x000030, "Member 'FNiagaraDataSetCompiledData::TotalInt32Components' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, TotalHalfComponents) == 0x000034, "Member 'FNiagaraDataSetCompiledData::TotalHalfComponents' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataSetCompiledData, SimTarget) == 0x00003C, "Member 'FNiagaraDataSetCompiledData::SimTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDIDataChannelWriteCompiledData \ +static_assert(alignof(FNDIDataChannelWriteCompiledData) == 0x000008, "Wrong alignment on FNDIDataChannelWriteCompiledData"); \ +static_assert(sizeof(FNDIDataChannelWriteCompiledData) == 0x0000B0, "Wrong size on FNDIDataChannelWriteCompiledData"); \ +static_assert(offsetof(FNDIDataChannelWriteCompiledData, DataLayout) == 0x000068, "Member 'FNDIDataChannelWriteCompiledData::DataLayout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMessageStore \ +static_assert(alignof(FNiagaraMessageStore) == 0x000001, "Wrong alignment on FNiagaraMessageStore"); \ +static_assert(sizeof(FNiagaraMessageStore) == 0x000001, "Wrong size on FNiagaraMessageStore"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterBinding \ +static_assert(alignof(FNiagaraParameterBinding) == 0x000004, "Wrong alignment on FNiagaraParameterBinding"); \ +static_assert(sizeof(FNiagaraParameterBinding) == 0x00000C, "Wrong size on FNiagaraParameterBinding"); \ +static_assert(offsetof(FNiagaraParameterBinding, ResolvedParameter) == 0x000000, "Member 'FNiagaraParameterBinding::ResolvedParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterBindingWithValue \ +static_assert(alignof(FNiagaraParameterBindingWithValue) == 0x000008, "Wrong alignment on FNiagaraParameterBindingWithValue"); \ +static_assert(sizeof(FNiagaraParameterBindingWithValue) == 0x000020, "Wrong size on FNiagaraParameterBindingWithValue"); \ +static_assert(offsetof(FNiagaraParameterBindingWithValue, DefaultValue) == 0x000010, "Member 'FNiagaraParameterBindingWithValue::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScalabilityState \ +static_assert(alignof(FNiagaraScalabilityState) == 0x000004, "Wrong alignment on FNiagaraScalabilityState"); \ +static_assert(sizeof(FNiagaraScalabilityState) == 0x00000C, "Wrong size on FNiagaraScalabilityState"); \ +static_assert(offsetof(FNiagaraScalabilityState, Significance) == 0x000000, "Member 'FNiagaraScalabilityState::Significance' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScalabilityState, LastVisibleTime) == 0x000004, "Member 'FNiagaraScalabilityState::LastVisibleTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraStackSection \ +static_assert(alignof(FNiagaraStackSection) == 0x000008, "Wrong alignment on FNiagaraStackSection"); \ +static_assert(sizeof(FNiagaraStackSection) == 0x000050, "Wrong size on FNiagaraStackSection"); \ +static_assert(offsetof(FNiagaraStackSection, SectionIdentifier) == 0x000000, "Member 'FNiagaraStackSection::SectionIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStackSection, SectionDisplayName) == 0x000008, "Member 'FNiagaraStackSection::SectionDisplayName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStackSection, Categories) == 0x000020, "Member 'FNiagaraStackSection::Categories' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStackSection, Tooltip) == 0x000030, "Member 'FNiagaraStackSection::Tooltip' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraStackSection, bEnabled) == 0x000048, "Member 'FNiagaraStackSection::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDynamicMeshSection \ +static_assert(alignof(FNiagaraDynamicMeshSection) == 0x000004, "Wrong alignment on FNiagaraDynamicMeshSection"); \ +static_assert(sizeof(FNiagaraDynamicMeshSection) == 0x000008, "Wrong size on FNiagaraDynamicMeshSection"); \ +static_assert(offsetof(FNiagaraDynamicMeshSection, NumTriangles) == 0x000000, "Member 'FNiagaraDynamicMeshSection::NumTriangles' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDynamicMeshSection, MaterialIndex) == 0x000004, "Member 'FNiagaraDynamicMeshSection::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDynamicMeshMaterial \ +static_assert(alignof(FNiagaraDynamicMeshMaterial) == 0x000008, "Wrong alignment on FNiagaraDynamicMeshMaterial"); \ +static_assert(sizeof(FNiagaraDynamicMeshMaterial) == 0x000028, "Wrong size on FNiagaraDynamicMeshMaterial"); \ +static_assert(offsetof(FNiagaraDynamicMeshMaterial, Material) == 0x000000, "Member 'FNiagaraDynamicMeshMaterial::Material' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDynamicMeshMaterial, MaterialUserParamBinding) == 0x000008, "Member 'FNiagaraDynamicMeshMaterial::MaterialUserParamBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNDIStaticMeshSectionFilter \ +static_assert(alignof(FNDIStaticMeshSectionFilter) == 0x000008, "Wrong alignment on FNDIStaticMeshSectionFilter"); \ +static_assert(sizeof(FNDIStaticMeshSectionFilter) == 0x000010, "Wrong size on FNDIStaticMeshSectionFilter"); \ +static_assert(offsetof(FNDIStaticMeshSectionFilter, AllowedMaterialSlots) == 0x000000, "Member 'FNDIStaticMeshSectionFilter::AllowedMaterialSlots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraUObjectPropertyReaderRemap \ +static_assert(alignof(FNiagaraUObjectPropertyReaderRemap) == 0x000004, "Wrong alignment on FNiagaraUObjectPropertyReaderRemap"); \ +static_assert(sizeof(FNiagaraUObjectPropertyReaderRemap) == 0x000010, "Wrong size on FNiagaraUObjectPropertyReaderRemap"); \ +static_assert(offsetof(FNiagaraUObjectPropertyReaderRemap, GraphName) == 0x000000, "Member 'FNiagaraUObjectPropertyReaderRemap::GraphName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraUObjectPropertyReaderRemap, RemapName) == 0x000008, "Member 'FNiagaraUObjectPropertyReaderRemap::RemapName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraSystemTrackTemplate \ +static_assert(alignof(FMovieSceneNiagaraSystemTrackTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraSystemTrackTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraSystemTrackTemplate) == 0x000020, "Wrong size on FMovieSceneNiagaraSystemTrackTemplate"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraSystemTrackImplementation \ +static_assert(alignof(FMovieSceneNiagaraSystemTrackImplementation) == 0x000008, "Wrong alignment on FMovieSceneNiagaraSystemTrackImplementation"); \ +static_assert(sizeof(FMovieSceneNiagaraSystemTrackImplementation) == 0x000028, "Wrong size on FMovieSceneNiagaraSystemTrackImplementation"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, SpawnSectionStartFrame) == 0x000010, "Member 'FMovieSceneNiagaraSystemTrackImplementation::SpawnSectionStartFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, SpawnSectionEndFrame) == 0x000014, "Member 'FMovieSceneNiagaraSystemTrackImplementation::SpawnSectionEndFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, SpawnSectionStartBehavior) == 0x000018, "Member 'FMovieSceneNiagaraSystemTrackImplementation::SpawnSectionStartBehavior' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, SpawnSectionEvaluateBehavior) == 0x00001C, "Member 'FMovieSceneNiagaraSystemTrackImplementation::SpawnSectionEvaluateBehavior' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, SpawnSectionEndBehavior) == 0x000020, "Member 'FMovieSceneNiagaraSystemTrackImplementation::SpawnSectionEndBehavior' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, AgeUpdateMode) == 0x000024, "Member 'FMovieSceneNiagaraSystemTrackImplementation::AgeUpdateMode' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraSystemTrackImplementation, bAllowScalability) == 0x000025, "Member 'FMovieSceneNiagaraSystemTrackImplementation::bAllowScalability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraParameterSectionTemplate) == 0x000040, "Wrong size on FMovieSceneNiagaraParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraParameterSectionTemplate, Parameter) == 0x000020, "Member 'FMovieSceneNiagaraParameterSectionTemplate::Parameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraBoolParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraBoolParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraBoolParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraBoolParameterSectionTemplate) == 0x000140, "Wrong size on FMovieSceneNiagaraBoolParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraBoolParameterSectionTemplate, BoolChannel) == 0x000040, "Member 'FMovieSceneNiagaraBoolParameterSectionTemplate::BoolChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraColorParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraColorParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraColorParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraColorParameterSectionTemplate) == 0x000480, "Wrong size on FMovieSceneNiagaraColorParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraColorParameterSectionTemplate, RedChannel) == 0x000040, "Member 'FMovieSceneNiagaraColorParameterSectionTemplate::RedChannel' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraColorParameterSectionTemplate, GreenChannel) == 0x000150, "Member 'FMovieSceneNiagaraColorParameterSectionTemplate::GreenChannel' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraColorParameterSectionTemplate, BlueChannel) == 0x000260, "Member 'FMovieSceneNiagaraColorParameterSectionTemplate::BlueChannel' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraColorParameterSectionTemplate, AlphaChannel) == 0x000370, "Member 'FMovieSceneNiagaraColorParameterSectionTemplate::AlphaChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraFloatParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraFloatParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraFloatParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraFloatParameterSectionTemplate) == 0x000150, "Wrong size on FMovieSceneNiagaraFloatParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraFloatParameterSectionTemplate, FloatChannel) == 0x000040, "Member 'FMovieSceneNiagaraFloatParameterSectionTemplate::FloatChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraIntegerParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraIntegerParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraIntegerParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraIntegerParameterSectionTemplate) == 0x000140, "Wrong size on FMovieSceneNiagaraIntegerParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraIntegerParameterSectionTemplate, IntegerChannel) == 0x000040, "Member 'FMovieSceneNiagaraIntegerParameterSectionTemplate::IntegerChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneNiagaraVectorParameterSectionTemplate \ +static_assert(alignof(FMovieSceneNiagaraVectorParameterSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneNiagaraVectorParameterSectionTemplate"); \ +static_assert(sizeof(FMovieSceneNiagaraVectorParameterSectionTemplate) == 0x000488, "Wrong size on FMovieSceneNiagaraVectorParameterSectionTemplate"); \ +static_assert(offsetof(FMovieSceneNiagaraVectorParameterSectionTemplate, VectorChannels) == 0x000040, "Member 'FMovieSceneNiagaraVectorParameterSectionTemplate::VectorChannels' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneNiagaraVectorParameterSectionTemplate, ChannelsUsed) == 0x000480, "Member 'FMovieSceneNiagaraVectorParameterSectionTemplate::ChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEmitterCompiledScriptPair \ +static_assert(alignof(FEmitterCompiledScriptPair) == 0x000008, "Wrong alignment on FEmitterCompiledScriptPair"); \ +static_assert(sizeof(FEmitterCompiledScriptPair) == 0x0000A0, "Wrong size on FEmitterCompiledScriptPair"); \ + +#define DUMPER7_ASSERTS_FNiagaraBakerTextureSource \ +static_assert(alignof(FNiagaraBakerTextureSource) == 0x000008, "Wrong alignment on FNiagaraBakerTextureSource"); \ +static_assert(sizeof(FNiagaraBakerTextureSource) == 0x000018, "Wrong size on FNiagaraBakerTextureSource"); \ +static_assert(offsetof(FNiagaraBakerTextureSource, DisplayString) == 0x000000, "Member 'FNiagaraBakerTextureSource::DisplayString' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerTextureSource, SourceName) == 0x000010, "Member 'FNiagaraBakerTextureSource::SourceName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraBakerCameraSettings \ +static_assert(alignof(FNiagaraBakerCameraSettings) == 0x000008, "Wrong alignment on FNiagaraBakerCameraSettings"); \ +static_assert(sizeof(FNiagaraBakerCameraSettings) == 0x000050, "Wrong size on FNiagaraBakerCameraSettings"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, ViewMode) == 0x000000, "Member 'FNiagaraBakerCameraSettings::ViewMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, ViewportLocation) == 0x000008, "Member 'FNiagaraBakerCameraSettings::ViewportLocation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, ViewportRotation) == 0x000020, "Member 'FNiagaraBakerCameraSettings::ViewportRotation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, OrbitDistance) == 0x000038, "Member 'FNiagaraBakerCameraSettings::OrbitDistance' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, FOV) == 0x00003C, "Member 'FNiagaraBakerCameraSettings::FOV' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, OrthoWidth) == 0x000040, "Member 'FNiagaraBakerCameraSettings::OrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, bUseAspectRatio) == 0x000044, "Member 'FNiagaraBakerCameraSettings::bUseAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerCameraSettings, AspectRatio) == 0x000048, "Member 'FNiagaraBakerCameraSettings::AspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraBakerTextureSettings \ +static_assert(alignof(FNiagaraBakerTextureSettings) == 0x000008, "Wrong alignment on FNiagaraBakerTextureSettings"); \ +static_assert(sizeof(FNiagaraBakerTextureSettings) == 0x000040, "Wrong size on FNiagaraBakerTextureSettings"); \ +static_assert(offsetof(FNiagaraBakerTextureSettings, OutputName) == 0x000000, "Member 'FNiagaraBakerTextureSettings::OutputName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerTextureSettings, SourceBinding) == 0x000008, "Member 'FNiagaraBakerTextureSettings::SourceBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerTextureSettings, FrameSize) == 0x000024, "Member 'FNiagaraBakerTextureSettings::FrameSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerTextureSettings, TextureSize) == 0x00002C, "Member 'FNiagaraBakerTextureSettings::TextureSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBakerTextureSettings, GeneratedTexture) == 0x000038, "Member 'FNiagaraBakerTextureSettings::GeneratedTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNCPoolElement \ +static_assert(alignof(FNCPoolElement) == 0x000008, "Wrong alignment on FNCPoolElement"); \ +static_assert(sizeof(FNCPoolElement) == 0x000010, "Wrong size on FNCPoolElement"); \ +static_assert(offsetof(FNCPoolElement, Component) == 0x000000, "Member 'FNCPoolElement::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNCPool \ +static_assert(alignof(FNCPool) == 0x000008, "Wrong alignment on FNCPool"); \ +static_assert(sizeof(FNCPool) == 0x000010, "Wrong size on FNCPool"); \ +static_assert(offsetof(FNCPool, FreeElements) == 0x000000, "Member 'FNCPool::FreeElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraComponentPropertyBinding \ +static_assert(alignof(FNiagaraComponentPropertyBinding) == 0x000008, "Wrong alignment on FNiagaraComponentPropertyBinding"); \ +static_assert(sizeof(FNiagaraComponentPropertyBinding) == 0x0000A8, "Wrong size on FNiagaraComponentPropertyBinding"); \ +static_assert(offsetof(FNiagaraComponentPropertyBinding, AttributeBinding) == 0x000000, "Member 'FNiagaraComponentPropertyBinding::AttributeBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraComponentPropertyBinding, PropertyName) == 0x000038, "Member 'FNiagaraComponentPropertyBinding::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraComponentPropertyBinding, PropertyType) == 0x000040, "Member 'FNiagaraComponentPropertyBinding::PropertyType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraComponentPropertyBinding, MetadataSetterName) == 0x000050, "Member 'FNiagaraComponentPropertyBinding::MetadataSetterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraComponentPropertyBinding, PropertySetterParameterDefaults) == 0x000058, "Member 'FNiagaraComponentPropertyBinding::PropertySetterParameterDefaults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCulledComponentInfo \ +static_assert(alignof(FNiagaraCulledComponentInfo) == 0x000004, "Wrong alignment on FNiagaraCulledComponentInfo"); \ +static_assert(sizeof(FNiagaraCulledComponentInfo) == 0x000008, "Wrong size on FNiagaraCulledComponentInfo"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataInterfaceEmitterBinding \ +static_assert(alignof(FNiagaraDataInterfaceEmitterBinding) == 0x000004, "Wrong alignment on FNiagaraDataInterfaceEmitterBinding"); \ +static_assert(sizeof(FNiagaraDataInterfaceEmitterBinding) == 0x00000C, "Wrong size on FNiagaraDataInterfaceEmitterBinding"); \ +static_assert(offsetof(FNiagaraDataInterfaceEmitterBinding, BindingMode) == 0x000000, "Member 'FNiagaraDataInterfaceEmitterBinding::BindingMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceEmitterBinding, EmitterName) == 0x000004, "Member 'FNiagaraDataInterfaceEmitterBinding::EmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBasicParticleData \ +static_assert(alignof(FBasicParticleData) == 0x000008, "Wrong alignment on FBasicParticleData"); \ +static_assert(sizeof(FBasicParticleData) == 0x000038, "Wrong size on FBasicParticleData"); \ +static_assert(offsetof(FBasicParticleData, Position) == 0x000000, "Member 'FBasicParticleData::Position' has a wrong offset!"); \ +static_assert(offsetof(FBasicParticleData, Size) == 0x000018, "Member 'FBasicParticleData::Size' has a wrong offset!"); \ +static_assert(offsetof(FBasicParticleData, Velocity) == 0x000020, "Member 'FBasicParticleData::Velocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshTriCoordinate \ +static_assert(alignof(FMeshTriCoordinate) == 0x000004, "Wrong alignment on FMeshTriCoordinate"); \ +static_assert(sizeof(FMeshTriCoordinate) == 0x000010, "Wrong size on FMeshTriCoordinate"); \ +static_assert(offsetof(FMeshTriCoordinate, Tri) == 0x000000, "Member 'FMeshTriCoordinate::Tri' has a wrong offset!"); \ +static_assert(offsetof(FMeshTriCoordinate, BaryCoord) == 0x000004, "Member 'FMeshTriCoordinate::BaryCoord' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDataInterfaceSplineLUT \ +static_assert(alignof(FNiagaraDataInterfaceSplineLUT) == 0x000008, "Wrong alignment on FNiagaraDataInterfaceSplineLUT"); \ +static_assert(sizeof(FNiagaraDataInterfaceSplineLUT) == 0x000040, "Wrong size on FNiagaraDataInterfaceSplineLUT"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, Positions) == 0x000000, "Member 'FNiagaraDataInterfaceSplineLUT::Positions' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, Scales) == 0x000010, "Member 'FNiagaraDataInterfaceSplineLUT::Scales' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, Rotations) == 0x000020, "Member 'FNiagaraDataInterfaceSplineLUT::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, SplineLength) == 0x000030, "Member 'FNiagaraDataInterfaceSplineLUT::SplineLength' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, SplineDistanceStep) == 0x000034, "Member 'FNiagaraDataInterfaceSplineLUT::SplineDistanceStep' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, InvSplineDistanceStep) == 0x000038, "Member 'FNiagaraDataInterfaceSplineLUT::InvSplineDistanceStep' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDataInterfaceSplineLUT, MaxIndex) == 0x00003C, "Member 'FNiagaraDataInterfaceSplineLUT::MaxIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerTimingData \ +static_assert(alignof(FNiagaraOutlinerTimingData) == 0x000004, "Wrong alignment on FNiagaraOutlinerTimingData"); \ +static_assert(sizeof(FNiagaraOutlinerTimingData) == 0x000008, "Wrong size on FNiagaraOutlinerTimingData"); \ +static_assert(offsetof(FNiagaraOutlinerTimingData, GameThread) == 0x000000, "Member 'FNiagaraOutlinerTimingData::GameThread' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerTimingData, RenderThread) == 0x000004, "Member 'FNiagaraOutlinerTimingData::RenderThread' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerEmitterInstanceData \ +static_assert(alignof(FNiagaraOutlinerEmitterInstanceData) == 0x000008, "Wrong alignment on FNiagaraOutlinerEmitterInstanceData"); \ +static_assert(sizeof(FNiagaraOutlinerEmitterInstanceData) == 0x000020, "Wrong size on FNiagaraOutlinerEmitterInstanceData"); \ +static_assert(offsetof(FNiagaraOutlinerEmitterInstanceData, EmitterName) == 0x000000, "Member 'FNiagaraOutlinerEmitterInstanceData::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerEmitterInstanceData, SimTarget) == 0x000010, "Member 'FNiagaraOutlinerEmitterInstanceData::SimTarget' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerEmitterInstanceData, ExecState) == 0x000014, "Member 'FNiagaraOutlinerEmitterInstanceData::ExecState' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerEmitterInstanceData, NumParticles) == 0x000018, "Member 'FNiagaraOutlinerEmitterInstanceData::NumParticles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerSystemInstanceData \ +static_assert(alignof(FNiagaraOutlinerSystemInstanceData) == 0x000008, "Wrong alignment on FNiagaraOutlinerSystemInstanceData"); \ +static_assert(sizeof(FNiagaraOutlinerSystemInstanceData) == 0x000068, "Wrong size on FNiagaraOutlinerSystemInstanceData"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, ComponentName) == 0x000000, "Member 'FNiagaraOutlinerSystemInstanceData::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, LWCTile) == 0x000010, "Member 'FNiagaraOutlinerSystemInstanceData::LWCTile' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, Emitters) == 0x000020, "Member 'FNiagaraOutlinerSystemInstanceData::Emitters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, ActualExecutionState) == 0x000030, "Member 'FNiagaraOutlinerSystemInstanceData::ActualExecutionState' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, RequestedExecutionState) == 0x000034, "Member 'FNiagaraOutlinerSystemInstanceData::RequestedExecutionState' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, ScalabilityState) == 0x000038, "Member 'FNiagaraOutlinerSystemInstanceData::ScalabilityState' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, PoolMethod) == 0x000048, "Member 'FNiagaraOutlinerSystemInstanceData::PoolMethod' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, AverageTime) == 0x00004C, "Member 'FNiagaraOutlinerSystemInstanceData::AverageTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, MaxTime) == 0x000054, "Member 'FNiagaraOutlinerSystemInstanceData::MaxTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, TickGroup) == 0x00005C, "Member 'FNiagaraOutlinerSystemInstanceData::TickGroup' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemInstanceData, GpuTickStage) == 0x00005D, "Member 'FNiagaraOutlinerSystemInstanceData::GpuTickStage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerSystemData \ +static_assert(alignof(FNiagaraOutlinerSystemData) == 0x000008, "Wrong alignment on FNiagaraOutlinerSystemData"); \ +static_assert(sizeof(FNiagaraOutlinerSystemData) == 0x000030, "Wrong size on FNiagaraOutlinerSystemData"); \ +static_assert(offsetof(FNiagaraOutlinerSystemData, SystemInstances) == 0x000000, "Member 'FNiagaraOutlinerSystemData::SystemInstances' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemData, AveragePerFrameTime) == 0x000010, "Member 'FNiagaraOutlinerSystemData::AveragePerFrameTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemData, MaxPerFrameTime) == 0x000018, "Member 'FNiagaraOutlinerSystemData::MaxPerFrameTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemData, AveragePerInstanceTime) == 0x000020, "Member 'FNiagaraOutlinerSystemData::AveragePerInstanceTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerSystemData, MaxPerInstanceTime) == 0x000028, "Member 'FNiagaraOutlinerSystemData::MaxPerInstanceTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerWorldData \ +static_assert(alignof(FNiagaraOutlinerWorldData) == 0x000008, "Wrong alignment on FNiagaraOutlinerWorldData"); \ +static_assert(sizeof(FNiagaraOutlinerWorldData) == 0x000068, "Wrong size on FNiagaraOutlinerWorldData"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, Systems) == 0x000000, "Member 'FNiagaraOutlinerWorldData::Systems' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, bHasBegunPlay) == 0x000050, "Member 'FNiagaraOutlinerWorldData::bHasBegunPlay' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, WorldType) == 0x000051, "Member 'FNiagaraOutlinerWorldData::WorldType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, NetMode) == 0x000052, "Member 'FNiagaraOutlinerWorldData::NetMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, AveragePerFrameTime) == 0x000054, "Member 'FNiagaraOutlinerWorldData::AveragePerFrameTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerWorldData, MaxPerFrameTime) == 0x00005C, "Member 'FNiagaraOutlinerWorldData::MaxPerFrameTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerData \ +static_assert(alignof(FNiagaraOutlinerData) == 0x000008, "Wrong alignment on FNiagaraOutlinerData"); \ +static_assert(sizeof(FNiagaraOutlinerData) == 0x000050, "Wrong size on FNiagaraOutlinerData"); \ +static_assert(offsetof(FNiagaraOutlinerData, WorldData) == 0x000000, "Member 'FNiagaraOutlinerData::WorldData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebuggerRequestConnection \ +static_assert(alignof(FNiagaraDebuggerRequestConnection) == 0x000004, "Wrong alignment on FNiagaraDebuggerRequestConnection"); \ +static_assert(sizeof(FNiagaraDebuggerRequestConnection) == 0x000020, "Wrong size on FNiagaraDebuggerRequestConnection"); \ +static_assert(offsetof(FNiagaraDebuggerRequestConnection, SessionId) == 0x000000, "Member 'FNiagaraDebuggerRequestConnection::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebuggerRequestConnection, InstanceId) == 0x000010, "Member 'FNiagaraDebuggerRequestConnection::InstanceId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebuggerAcceptConnection \ +static_assert(alignof(FNiagaraDebuggerAcceptConnection) == 0x000004, "Wrong alignment on FNiagaraDebuggerAcceptConnection"); \ +static_assert(sizeof(FNiagaraDebuggerAcceptConnection) == 0x000020, "Wrong size on FNiagaraDebuggerAcceptConnection"); \ +static_assert(offsetof(FNiagaraDebuggerAcceptConnection, SessionId) == 0x000000, "Member 'FNiagaraDebuggerAcceptConnection::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebuggerAcceptConnection, InstanceId) == 0x000010, "Member 'FNiagaraDebuggerAcceptConnection::InstanceId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebuggerConnectionClosed \ +static_assert(alignof(FNiagaraDebuggerConnectionClosed) == 0x000004, "Wrong alignment on FNiagaraDebuggerConnectionClosed"); \ +static_assert(sizeof(FNiagaraDebuggerConnectionClosed) == 0x000020, "Wrong size on FNiagaraDebuggerConnectionClosed"); \ +static_assert(offsetof(FNiagaraDebuggerConnectionClosed, SessionId) == 0x000000, "Member 'FNiagaraDebuggerConnectionClosed::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebuggerConnectionClosed, InstanceId) == 0x000010, "Member 'FNiagaraDebuggerConnectionClosed::InstanceId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebuggerExecuteConsoleCommand \ +static_assert(alignof(FNiagaraDebuggerExecuteConsoleCommand) == 0x000008, "Wrong alignment on FNiagaraDebuggerExecuteConsoleCommand"); \ +static_assert(sizeof(FNiagaraDebuggerExecuteConsoleCommand) == 0x000018, "Wrong size on FNiagaraDebuggerExecuteConsoleCommand"); \ +static_assert(offsetof(FNiagaraDebuggerExecuteConsoleCommand, Command) == 0x000000, "Member 'FNiagaraDebuggerExecuteConsoleCommand::Command' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebuggerExecuteConsoleCommand, bRequiresWorld) == 0x000010, "Member 'FNiagaraDebuggerExecuteConsoleCommand::bRequiresWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebuggerOutlinerUpdate \ +static_assert(alignof(FNiagaraDebuggerOutlinerUpdate) == 0x000008, "Wrong alignment on FNiagaraDebuggerOutlinerUpdate"); \ +static_assert(sizeof(FNiagaraDebuggerOutlinerUpdate) == 0x000050, "Wrong size on FNiagaraDebuggerOutlinerUpdate"); \ +static_assert(offsetof(FNiagaraDebuggerOutlinerUpdate, OutlinerData) == 0x000000, "Member 'FNiagaraDebuggerOutlinerUpdate::OutlinerData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebugHudTextOptions \ +static_assert(alignof(FNiagaraDebugHudTextOptions) == 0x000008, "Wrong alignment on FNiagaraDebugHudTextOptions"); \ +static_assert(sizeof(FNiagaraDebugHudTextOptions) == 0x000018, "Wrong size on FNiagaraDebugHudTextOptions"); \ +static_assert(offsetof(FNiagaraDebugHudTextOptions, Font) == 0x000000, "Member 'FNiagaraDebugHudTextOptions::Font' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHudTextOptions, HorizontalAlignment) == 0x000004, "Member 'FNiagaraDebugHudTextOptions::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHudTextOptions, VerticalAlignment) == 0x000005, "Member 'FNiagaraDebugHudTextOptions::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHudTextOptions, ScreenOffset) == 0x000008, "Member 'FNiagaraDebugHudTextOptions::ScreenOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebugHUDVariable \ +static_assert(alignof(FNiagaraDebugHUDVariable) == 0x000008, "Wrong alignment on FNiagaraDebugHUDVariable"); \ +static_assert(sizeof(FNiagaraDebugHUDVariable) == 0x000018, "Wrong size on FNiagaraDebugHUDVariable"); \ +static_assert(offsetof(FNiagaraDebugHUDVariable, bEnabled) == 0x000000, "Member 'FNiagaraDebugHUDVariable::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDVariable, Name) == 0x000008, "Member 'FNiagaraDebugHUDVariable::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDebugHUDSettingsData \ +static_assert(alignof(FNiagaraDebugHUDSettingsData) == 0x000008, "Wrong alignment on FNiagaraDebugHUDSettingsData"); \ +static_assert(sizeof(FNiagaraDebugHUDSettingsData) == 0x000248, "Wrong size on FNiagaraDebugHUDSettingsData"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bHudEnabled) == 0x000000, "Member 'FNiagaraDebugHUDSettingsData::bHudEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bHudRenderingEnabled) == 0x000001, "Member 'FNiagaraDebugHUDSettingsData::bHudRenderingEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bValidateSystemSimulationDataBuffers) == 0x000002, "Member 'FNiagaraDebugHUDSettingsData::bValidateSystemSimulationDataBuffers' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bValidateParticleDataBuffers) == 0x000003, "Member 'FNiagaraDebugHUDSettingsData::bValidateParticleDataBuffers' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bValidationLogErrors) == 0x000004, "Member 'FNiagaraDebugHUDSettingsData::bValidationLogErrors' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ValidationAttributeDisplayTruncate) == 0x000008, "Member 'FNiagaraDebugHUDSettingsData::ValidationAttributeDisplayTruncate' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bOverviewEnabled) == 0x00000C, "Member 'FNiagaraDebugHUDSettingsData::bOverviewEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bIncludeCascade) == 0x00000D, "Member 'FNiagaraDebugHUDSettingsData::bIncludeCascade' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewMode) == 0x000010, "Member 'FNiagaraDebugHUDSettingsData::OverviewMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewSortMode) == 0x000014, "Member 'FNiagaraDebugHUDSettingsData::OverviewSortMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewFont) == 0x000018, "Member 'FNiagaraDebugHUDSettingsData::OverviewFont' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewLocation) == 0x000020, "Member 'FNiagaraDebugHUDSettingsData::OverviewLocation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowRegisteredComponents) == 0x000030, "Member 'FNiagaraDebugHUDSettingsData::bShowRegisteredComponents' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bOverviewShowFilteredSystemOnly) == 0x000031, "Member 'FNiagaraDebugHUDSettingsData::bOverviewShowFilteredSystemOnly' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ActorFilter) == 0x000038, "Member 'FNiagaraDebugHUDSettingsData::ActorFilter' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bComponentFilterEnabled) == 0x000048, "Member 'FNiagaraDebugHUDSettingsData::bComponentFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ComponentFilter) == 0x000050, "Member 'FNiagaraDebugHUDSettingsData::ComponentFilter' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bSystemFilterEnabled) == 0x000060, "Member 'FNiagaraDebugHUDSettingsData::bSystemFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemFilter) == 0x000068, "Member 'FNiagaraDebugHUDSettingsData::SystemFilter' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bEmitterFilterEnabled) == 0x000078, "Member 'FNiagaraDebugHUDSettingsData::bEmitterFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, EmitterFilter) == 0x000080, "Member 'FNiagaraDebugHUDSettingsData::EmitterFilter' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bActorFilterEnabled) == 0x000090, "Member 'FNiagaraDebugHUDSettingsData::bActorFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemDebugVerbosity) == 0x000094, "Member 'FNiagaraDebugHUDSettingsData::SystemDebugVerbosity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemEmitterVerbosity) == 0x000098, "Member 'FNiagaraDebugHUDSettingsData::SystemEmitterVerbosity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, DataInterfaceVerbosity) == 0x00009C, "Member 'FNiagaraDebugHUDSettingsData::DataInterfaceVerbosity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bSystemShowBounds) == 0x0000A0, "Member 'FNiagaraDebugHUDSettingsData::bSystemShowBounds' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemBoundsSolidBoxAlpha) == 0x0000A4, "Member 'FNiagaraDebugHUDSettingsData::SystemBoundsSolidBoxAlpha' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bSystemShowActiveOnlyInWorld) == 0x0000A8, "Member 'FNiagaraDebugHUDSettingsData::bSystemShowActiveOnlyInWorld' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowSystemVariables) == 0x0000A9, "Member 'FNiagaraDebugHUDSettingsData::bShowSystemVariables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemVariables) == 0x0000B0, "Member 'FNiagaraDebugHUDSettingsData::SystemVariables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemTextOptions) == 0x0000C0, "Member 'FNiagaraDebugHUDSettingsData::SystemTextOptions' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowParticleVariables) == 0x0000D8, "Member 'FNiagaraDebugHUDSettingsData::bShowParticleVariables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bEnableGpuParticleReadback) == 0x0000D9, "Member 'FNiagaraDebugHUDSettingsData::bEnableGpuParticleReadback' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowParticleIndex) == 0x0000DA, "Member 'FNiagaraDebugHUDSettingsData::bShowParticleIndex' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ParticlesVariables) == 0x0000E0, "Member 'FNiagaraDebugHUDSettingsData::ParticlesVariables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ParticleTextOptions) == 0x0000F0, "Member 'FNiagaraDebugHUDSettingsData::ParticleTextOptions' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowParticlesVariablesWithSystem) == 0x000108, "Member 'FNiagaraDebugHUDSettingsData::bShowParticlesVariablesWithSystem' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowParticleVariablesVertical) == 0x000109, "Member 'FNiagaraDebugHUDSettingsData::bShowParticleVariablesVertical' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bUseMaxParticlesToDisplay) == 0x00010A, "Member 'FNiagaraDebugHUDSettingsData::bUseMaxParticlesToDisplay' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bUseParticleDisplayClip) == 0x00010B, "Member 'FNiagaraDebugHUDSettingsData::bUseParticleDisplayClip' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ParticleDisplayClip) == 0x000110, "Member 'FNiagaraDebugHUDSettingsData::ParticleDisplayClip' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bUseParticleDisplayCenterRadius) == 0x000120, "Member 'FNiagaraDebugHUDSettingsData::bUseParticleDisplayCenterRadius' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, ParticleDisplayCenterRadius) == 0x000124, "Member 'FNiagaraDebugHUDSettingsData::ParticleDisplayCenterRadius' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, MaxParticlesToDisplay) == 0x000128, "Member 'FNiagaraDebugHUDSettingsData::MaxParticlesToDisplay' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfReportFrames) == 0x00012C, "Member 'FNiagaraDebugHUDSettingsData::PerfReportFrames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfSampleMode) == 0x000130, "Member 'FNiagaraDebugHUDSettingsData::PerfSampleMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfGraphMode) == 0x000134, "Member 'FNiagaraDebugHUDSettingsData::PerfGraphMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfHistoryFrames) == 0x000138, "Member 'FNiagaraDebugHUDSettingsData::PerfHistoryFrames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfGraphTimeRange) == 0x00013C, "Member 'FNiagaraDebugHUDSettingsData::PerfGraphTimeRange' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfGraphSize) == 0x000140, "Member 'FNiagaraDebugHUDSettingsData::PerfGraphSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PerfGraphAxisColor) == 0x000150, "Member 'FNiagaraDebugHUDSettingsData::PerfGraphAxisColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bEnableSmoothing) == 0x000160, "Member 'FNiagaraDebugHUDSettingsData::bEnableSmoothing' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SmoothingWidth) == 0x000164, "Member 'FNiagaraDebugHUDSettingsData::SmoothingWidth' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, DefaultBackgroundColor) == 0x000168, "Member 'FNiagaraDebugHUDSettingsData::DefaultBackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewHeadingColor) == 0x000178, "Member 'FNiagaraDebugHUDSettingsData::OverviewHeadingColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewDetailColor) == 0x000188, "Member 'FNiagaraDebugHUDSettingsData::OverviewDetailColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, OverviewDetailHighlightColor) == 0x000198, "Member 'FNiagaraDebugHUDSettingsData::OverviewDetailHighlightColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, InWorldErrorTextColor) == 0x0001A8, "Member 'FNiagaraDebugHUDSettingsData::InWorldErrorTextColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, InWorldTextColor) == 0x0001B8, "Member 'FNiagaraDebugHUDSettingsData::InWorldTextColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, MessageInfoTextColor) == 0x0001C8, "Member 'FNiagaraDebugHUDSettingsData::MessageInfoTextColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, MessageWarningTextColor) == 0x0001D8, "Member 'FNiagaraDebugHUDSettingsData::MessageWarningTextColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, MessageErrorTextColor) == 0x0001E8, "Member 'FNiagaraDebugHUDSettingsData::MessageErrorTextColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemColorTableOpacity) == 0x0001F8, "Member 'FNiagaraDebugHUDSettingsData::SystemColorTableOpacity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemColorSeed) == 0x0001FC, "Member 'FNiagaraDebugHUDSettingsData::SystemColorSeed' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemColorHSVMin) == 0x000200, "Member 'FNiagaraDebugHUDSettingsData::SystemColorHSVMin' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, SystemColorHSVMax) == 0x000218, "Member 'FNiagaraDebugHUDSettingsData::SystemColorHSVMax' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PlaybackMode) == 0x000230, "Member 'FNiagaraDebugHUDSettingsData::PlaybackMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bPlaybackRateEnabled) == 0x000231, "Member 'FNiagaraDebugHUDSettingsData::bPlaybackRateEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, PlaybackRate) == 0x000234, "Member 'FNiagaraDebugHUDSettingsData::PlaybackRate' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bLoopTimeEnabled) == 0x000238, "Member 'FNiagaraDebugHUDSettingsData::bLoopTimeEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, LoopTime) == 0x00023C, "Member 'FNiagaraDebugHUDSettingsData::LoopTime' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDebugHUDSettingsData, bShowGlobalBudgetInfo) == 0x000240, "Member 'FNiagaraDebugHUDSettingsData::bShowGlobalBudgetInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRequestSimpleClientInfoMessage \ +static_assert(alignof(FNiagaraRequestSimpleClientInfoMessage) == 0x000001, "Wrong alignment on FNiagaraRequestSimpleClientInfoMessage"); \ +static_assert(sizeof(FNiagaraRequestSimpleClientInfoMessage) == 0x000001, "Wrong size on FNiagaraRequestSimpleClientInfoMessage"); \ + +#define DUMPER7_ASSERTS_FNiagaraOutlinerCaptureSettings \ +static_assert(alignof(FNiagaraOutlinerCaptureSettings) == 0x000004, "Wrong alignment on FNiagaraOutlinerCaptureSettings"); \ +static_assert(sizeof(FNiagaraOutlinerCaptureSettings) == 0x000010, "Wrong size on FNiagaraOutlinerCaptureSettings"); \ +static_assert(offsetof(FNiagaraOutlinerCaptureSettings, bTriggerCapture) == 0x000000, "Member 'FNiagaraOutlinerCaptureSettings::bTriggerCapture' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerCaptureSettings, CaptureDelayFrames) == 0x000004, "Member 'FNiagaraOutlinerCaptureSettings::CaptureDelayFrames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerCaptureSettings, bGatherPerfData) == 0x000008, "Member 'FNiagaraOutlinerCaptureSettings::bGatherPerfData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraOutlinerCaptureSettings, SimCacheCaptureFrames) == 0x00000C, "Member 'FNiagaraOutlinerCaptureSettings::SimCacheCaptureFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimpleClientInfo \ +static_assert(alignof(FNiagaraSimpleClientInfo) == 0x000008, "Wrong alignment on FNiagaraSimpleClientInfo"); \ +static_assert(sizeof(FNiagaraSimpleClientInfo) == 0x000040, "Wrong size on FNiagaraSimpleClientInfo"); \ +static_assert(offsetof(FNiagaraSimpleClientInfo, Systems) == 0x000000, "Member 'FNiagaraSimpleClientInfo::Systems' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimpleClientInfo, Actors) == 0x000010, "Member 'FNiagaraSimpleClientInfo::Actors' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimpleClientInfo, Components) == 0x000020, "Member 'FNiagaraSimpleClientInfo::Components' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimpleClientInfo, Emitters) == 0x000030, "Member 'FNiagaraSimpleClientInfo::Emitters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemSimCacheCaptureRequest \ +static_assert(alignof(FNiagaraSystemSimCacheCaptureRequest) == 0x000004, "Wrong alignment on FNiagaraSystemSimCacheCaptureRequest"); \ +static_assert(sizeof(FNiagaraSystemSimCacheCaptureRequest) == 0x000010, "Wrong size on FNiagaraSystemSimCacheCaptureRequest"); \ +static_assert(offsetof(FNiagaraSystemSimCacheCaptureRequest, ComponentName) == 0x000000, "Member 'FNiagaraSystemSimCacheCaptureRequest::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemSimCacheCaptureRequest, CaptureDelayFrames) == 0x000008, "Member 'FNiagaraSystemSimCacheCaptureRequest::CaptureDelayFrames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemSimCacheCaptureRequest, CaptureFrames) == 0x00000C, "Member 'FNiagaraSystemSimCacheCaptureRequest::CaptureFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemSimCacheCaptureReply \ +static_assert(alignof(FNiagaraSystemSimCacheCaptureReply) == 0x000008, "Wrong alignment on FNiagaraSystemSimCacheCaptureReply"); \ +static_assert(sizeof(FNiagaraSystemSimCacheCaptureReply) == 0x000018, "Wrong size on FNiagaraSystemSimCacheCaptureReply"); \ +static_assert(offsetof(FNiagaraSystemSimCacheCaptureReply, ComponentName) == 0x000000, "Member 'FNiagaraSystemSimCacheCaptureReply::ComponentName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemSimCacheCaptureReply, SimCacheData) == 0x000008, "Member 'FNiagaraSystemSimCacheCaptureReply::SimCacheData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraGraphViewSettings \ +static_assert(alignof(FNiagaraGraphViewSettings) == 0x000008, "Wrong alignment on FNiagaraGraphViewSettings"); \ +static_assert(sizeof(FNiagaraGraphViewSettings) == 0x000018, "Wrong size on FNiagaraGraphViewSettings"); \ +static_assert(offsetof(FNiagaraGraphViewSettings, Location) == 0x000000, "Member 'FNiagaraGraphViewSettings::Location' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGraphViewSettings, Zoom) == 0x000010, "Member 'FNiagaraGraphViewSettings::Zoom' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGraphViewSettings, bIsValid) == 0x000014, "Member 'FNiagaraGraphViewSettings::bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraLinearRamp \ +static_assert(alignof(FNiagaraLinearRamp) == 0x000004, "Wrong alignment on FNiagaraLinearRamp"); \ +static_assert(sizeof(FNiagaraLinearRamp) == 0x000010, "Wrong size on FNiagaraLinearRamp"); \ +static_assert(offsetof(FNiagaraLinearRamp, StartX) == 0x000000, "Member 'FNiagaraLinearRamp::StartX' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraLinearRamp, StartY) == 0x000004, "Member 'FNiagaraLinearRamp::StartY' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraLinearRamp, EndX) == 0x000008, "Member 'FNiagaraLinearRamp::EndX' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraLinearRamp, EndY) == 0x00000C, "Member 'FNiagaraLinearRamp::EndY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraGlobalBudgetScaling \ +static_assert(alignof(FNiagaraGlobalBudgetScaling) == 0x000004, "Wrong alignment on FNiagaraGlobalBudgetScaling"); \ +static_assert(sizeof(FNiagaraGlobalBudgetScaling) == 0x000038, "Wrong size on FNiagaraGlobalBudgetScaling"); \ +static_assert(offsetof(FNiagaraGlobalBudgetScaling, MaxGlobalBudgetUsage) == 0x000004, "Member 'FNiagaraGlobalBudgetScaling::MaxGlobalBudgetUsage' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGlobalBudgetScaling, MaxDistanceScaleByGlobalBudgetUse) == 0x000008, "Member 'FNiagaraGlobalBudgetScaling::MaxDistanceScaleByGlobalBudgetUse' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGlobalBudgetScaling, MaxInstanceCountScaleByGlobalBudgetUse) == 0x000018, "Member 'FNiagaraGlobalBudgetScaling::MaxInstanceCountScaleByGlobalBudgetUse' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGlobalBudgetScaling, MaxSystemInstanceCountScaleByGlobalBudgetUse) == 0x000028, "Member 'FNiagaraGlobalBudgetScaling::MaxSystemInstanceCountScaleByGlobalBudgetUse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemVisibilityCullingSettings \ +static_assert(alignof(FNiagaraSystemVisibilityCullingSettings) == 0x000004, "Wrong alignment on FNiagaraSystemVisibilityCullingSettings"); \ +static_assert(sizeof(FNiagaraSystemVisibilityCullingSettings) == 0x00000C, "Wrong size on FNiagaraSystemVisibilityCullingSettings"); \ +static_assert(offsetof(FNiagaraSystemVisibilityCullingSettings, MaxTimeOutsideViewFrustum) == 0x000004, "Member 'FNiagaraSystemVisibilityCullingSettings::MaxTimeOutsideViewFrustum' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemVisibilityCullingSettings, MaxTimeWithoutRender) == 0x000008, "Member 'FNiagaraSystemVisibilityCullingSettings::MaxTimeWithoutRender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDeviceProfileStateEntry \ +static_assert(alignof(FNiagaraDeviceProfileStateEntry) == 0x000004, "Wrong alignment on FNiagaraDeviceProfileStateEntry"); \ +static_assert(sizeof(FNiagaraDeviceProfileStateEntry) == 0x000010, "Wrong size on FNiagaraDeviceProfileStateEntry"); \ +static_assert(offsetof(FNiagaraDeviceProfileStateEntry, ProfileName) == 0x000000, "Member 'FNiagaraDeviceProfileStateEntry::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDeviceProfileStateEntry, QualityLevelMask) == 0x000008, "Member 'FNiagaraDeviceProfileStateEntry::QualityLevelMask' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDeviceProfileStateEntry, SetQualityLevelMask) == 0x00000C, "Member 'FNiagaraDeviceProfileStateEntry::SetQualityLevelMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPlatformSetCVarCondition \ +static_assert(alignof(FNiagaraPlatformSetCVarCondition) == 0x000008, "Wrong alignment on FNiagaraPlatformSetCVarCondition"); \ +static_assert(sizeof(FNiagaraPlatformSetCVarCondition) == 0x000030, "Wrong size on FNiagaraPlatformSetCVarCondition"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, CVarName) == 0x000000, "Member 'FNiagaraPlatformSetCVarCondition::CVarName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, PassResponse) == 0x000008, "Member 'FNiagaraPlatformSetCVarCondition::PassResponse' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, FailResponse) == 0x000009, "Member 'FNiagaraPlatformSetCVarCondition::FailResponse' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, Value) == 0x00000A, "Member 'FNiagaraPlatformSetCVarCondition::Value' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, MinInt) == 0x00000C, "Member 'FNiagaraPlatformSetCVarCondition::MinInt' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, MaxInt) == 0x000010, "Member 'FNiagaraPlatformSetCVarCondition::MaxInt' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, MinFloat) == 0x000014, "Member 'FNiagaraPlatformSetCVarCondition::MinFloat' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetCVarCondition, MaxFloat) == 0x000018, "Member 'FNiagaraPlatformSetCVarCondition::MaxFloat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPlatformSet \ +static_assert(alignof(FNiagaraPlatformSet) == 0x000008, "Wrong alignment on FNiagaraPlatformSet"); \ +static_assert(sizeof(FNiagaraPlatformSet) == 0x000030, "Wrong size on FNiagaraPlatformSet"); \ +static_assert(offsetof(FNiagaraPlatformSet, DeviceProfileStates) == 0x000000, "Member 'FNiagaraPlatformSet::DeviceProfileStates' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSet, CVarConditions) == 0x000010, "Member 'FNiagaraPlatformSet::CVarConditions' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSet, QualityLevelMask) == 0x000020, "Member 'FNiagaraPlatformSet::QualityLevelMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemScalabilitySettings \ +static_assert(alignof(FNiagaraSystemScalabilitySettings) == 0x000008, "Wrong alignment on FNiagaraSystemScalabilitySettings"); \ +static_assert(sizeof(FNiagaraSystemScalabilitySettings) == 0x000098, "Wrong size on FNiagaraSystemScalabilitySettings"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, Platforms) == 0x000000, "Member 'FNiagaraSystemScalabilitySettings::Platforms' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, MaxDistance) == 0x000034, "Member 'FNiagaraSystemScalabilitySettings::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, MaxInstances) == 0x00003C, "Member 'FNiagaraSystemScalabilitySettings::MaxInstances' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, MaxSystemInstances) == 0x000040, "Member 'FNiagaraSystemScalabilitySettings::MaxSystemInstances' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, MaxTimeWithoutRender) == 0x000044, "Member 'FNiagaraSystemScalabilitySettings::MaxTimeWithoutRender' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, CullProxyMode) == 0x000048, "Member 'FNiagaraSystemScalabilitySettings::CullProxyMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, MaxSystemProxies) == 0x00004C, "Member 'FNiagaraSystemScalabilitySettings::MaxSystemProxies' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, VisibilityCulling) == 0x000050, "Member 'FNiagaraSystemScalabilitySettings::VisibilityCulling' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettings, BudgetScaling) == 0x00005C, "Member 'FNiagaraSystemScalabilitySettings::BudgetScaling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemScalabilitySettingsArray \ +static_assert(alignof(FNiagaraSystemScalabilitySettingsArray) == 0x000008, "Wrong alignment on FNiagaraSystemScalabilitySettingsArray"); \ +static_assert(sizeof(FNiagaraSystemScalabilitySettingsArray) == 0x000010, "Wrong size on FNiagaraSystemScalabilitySettingsArray"); \ +static_assert(offsetof(FNiagaraSystemScalabilitySettingsArray, Settings) == 0x000000, "Member 'FNiagaraSystemScalabilitySettingsArray::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemScalabilityOverride \ +static_assert(alignof(FNiagaraSystemScalabilityOverride) == 0x000008, "Wrong alignment on FNiagaraSystemScalabilityOverride"); \ +static_assert(sizeof(FNiagaraSystemScalabilityOverride) == 0x0000A0, "Wrong size on FNiagaraSystemScalabilityOverride"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterScalabilitySettings \ +static_assert(alignof(FNiagaraEmitterScalabilitySettings) == 0x000008, "Wrong alignment on FNiagaraEmitterScalabilitySettings"); \ +static_assert(sizeof(FNiagaraEmitterScalabilitySettings) == 0x000038, "Wrong size on FNiagaraEmitterScalabilitySettings"); \ +static_assert(offsetof(FNiagaraEmitterScalabilitySettings, Platforms) == 0x000000, "Member 'FNiagaraEmitterScalabilitySettings::Platforms' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterScalabilitySettings, SpawnCountScale) == 0x000034, "Member 'FNiagaraEmitterScalabilitySettings::SpawnCountScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterScalabilitySettingsArray \ +static_assert(alignof(FNiagaraEmitterScalabilitySettingsArray) == 0x000008, "Wrong alignment on FNiagaraEmitterScalabilitySettingsArray"); \ +static_assert(sizeof(FNiagaraEmitterScalabilitySettingsArray) == 0x000010, "Wrong size on FNiagaraEmitterScalabilitySettingsArray"); \ +static_assert(offsetof(FNiagaraEmitterScalabilitySettingsArray, Settings) == 0x000000, "Member 'FNiagaraEmitterScalabilitySettingsArray::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterScalabilityOverride \ +static_assert(alignof(FNiagaraEmitterScalabilityOverride) == 0x000008, "Wrong alignment on FNiagaraEmitterScalabilityOverride"); \ +static_assert(sizeof(FNiagaraEmitterScalabilityOverride) == 0x000040, "Wrong size on FNiagaraEmitterScalabilityOverride"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterScalabilityOverrides \ +static_assert(alignof(FNiagaraEmitterScalabilityOverrides) == 0x000008, "Wrong alignment on FNiagaraEmitterScalabilityOverrides"); \ +static_assert(sizeof(FNiagaraEmitterScalabilityOverrides) == 0x000010, "Wrong size on FNiagaraEmitterScalabilityOverrides"); \ +static_assert(offsetof(FNiagaraEmitterScalabilityOverrides, Overrides) == 0x000000, "Member 'FNiagaraEmitterScalabilityOverrides::Overrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEventReceiverProperties \ +static_assert(alignof(FNiagaraEventReceiverProperties) == 0x000004, "Wrong alignment on FNiagaraEventReceiverProperties"); \ +static_assert(sizeof(FNiagaraEventReceiverProperties) == 0x000018, "Wrong size on FNiagaraEventReceiverProperties"); \ +static_assert(offsetof(FNiagaraEventReceiverProperties, Name) == 0x000000, "Member 'FNiagaraEventReceiverProperties::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventReceiverProperties, SourceEventGenerator) == 0x000008, "Member 'FNiagaraEventReceiverProperties::SourceEventGenerator' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventReceiverProperties, SourceEmitter) == 0x000010, "Member 'FNiagaraEventReceiverProperties::SourceEmitter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEventGeneratorProperties \ +static_assert(alignof(FNiagaraEventGeneratorProperties) == 0x000008, "Wrong alignment on FNiagaraEventGeneratorProperties"); \ +static_assert(sizeof(FNiagaraEventGeneratorProperties) == 0x000058, "Wrong size on FNiagaraEventGeneratorProperties"); \ +static_assert(offsetof(FNiagaraEventGeneratorProperties, MaxEventsPerFrame) == 0x000000, "Member 'FNiagaraEventGeneratorProperties::MaxEventsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventGeneratorProperties, ID) == 0x000004, "Member 'FNiagaraEventGeneratorProperties::ID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventGeneratorProperties, DataSetCompiledData) == 0x000010, "Member 'FNiagaraEventGeneratorProperties::DataSetCompiledData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterScriptProperties \ +static_assert(alignof(FNiagaraEmitterScriptProperties) == 0x000008, "Wrong alignment on FNiagaraEmitterScriptProperties"); \ +static_assert(sizeof(FNiagaraEmitterScriptProperties) == 0x000028, "Wrong size on FNiagaraEmitterScriptProperties"); \ +static_assert(offsetof(FNiagaraEmitterScriptProperties, Script) == 0x000000, "Member 'FNiagaraEmitterScriptProperties::Script' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterScriptProperties, EventReceivers) == 0x000008, "Member 'FNiagaraEmitterScriptProperties::EventReceivers' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterScriptProperties, EventGenerators) == 0x000018, "Member 'FNiagaraEmitterScriptProperties::EventGenerators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEventScriptProperties \ +static_assert(alignof(FNiagaraEventScriptProperties) == 0x000008, "Wrong alignment on FNiagaraEventScriptProperties"); \ +static_assert(sizeof(FNiagaraEventScriptProperties) == 0x000058, "Wrong size on FNiagaraEventScriptProperties"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, ExecutionMode) == 0x000028, "Member 'FNiagaraEventScriptProperties::ExecutionMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, SpawnNumber) == 0x00002C, "Member 'FNiagaraEventScriptProperties::SpawnNumber' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, MaxEventsPerFrame) == 0x000030, "Member 'FNiagaraEventScriptProperties::MaxEventsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, SourceEmitterID) == 0x000034, "Member 'FNiagaraEventScriptProperties::SourceEmitterID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, SourceEventName) == 0x000044, "Member 'FNiagaraEventScriptProperties::SourceEventName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, bRandomSpawnNumber) == 0x00004C, "Member 'FNiagaraEventScriptProperties::bRandomSpawnNumber' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, MinSpawnNumber) == 0x000050, "Member 'FNiagaraEventScriptProperties::MinSpawnNumber' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEventScriptProperties, UpdateAttributeInitialValues) == 0x000054, "Member 'FNiagaraEventScriptProperties::UpdateAttributeInitialValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraDetailsLevelScaleOverrides \ +static_assert(alignof(FNiagaraDetailsLevelScaleOverrides) == 0x000004, "Wrong alignment on FNiagaraDetailsLevelScaleOverrides"); \ +static_assert(sizeof(FNiagaraDetailsLevelScaleOverrides) == 0x000014, "Wrong size on FNiagaraDetailsLevelScaleOverrides"); \ +static_assert(offsetof(FNiagaraDetailsLevelScaleOverrides, Low) == 0x000000, "Member 'FNiagaraDetailsLevelScaleOverrides::Low' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDetailsLevelScaleOverrides, Medium) == 0x000004, "Member 'FNiagaraDetailsLevelScaleOverrides::Medium' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDetailsLevelScaleOverrides, High) == 0x000008, "Member 'FNiagaraDetailsLevelScaleOverrides::High' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDetailsLevelScaleOverrides, Epic) == 0x00000C, "Member 'FNiagaraDetailsLevelScaleOverrides::Epic' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraDetailsLevelScaleOverrides, Cine) == 0x000010, "Member 'FNiagaraDetailsLevelScaleOverrides::Cine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraAssetVersion \ +static_assert(alignof(FNiagaraAssetVersion) == 0x000004, "Wrong alignment on FNiagaraAssetVersion"); \ +static_assert(sizeof(FNiagaraAssetVersion) == 0x00001C, "Wrong size on FNiagaraAssetVersion"); \ +static_assert(offsetof(FNiagaraAssetVersion, MajorVersion) == 0x000000, "Member 'FNiagaraAssetVersion::MajorVersion' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraAssetVersion, MinorVersion) == 0x000004, "Member 'FNiagaraAssetVersion::MinorVersion' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraAssetVersion, VersionGuid) == 0x000008, "Member 'FNiagaraAssetVersion::VersionGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraAssetVersion, bIsVisibleInVersionSelector) == 0x000018, "Member 'FNiagaraAssetVersion::bIsVisibleInVersionSelector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableWithOffset \ +static_assert(alignof(FNiagaraVariableWithOffset) == 0x000008, "Wrong alignment on FNiagaraVariableWithOffset"); \ +static_assert(sizeof(FNiagaraVariableWithOffset) == 0x000028, "Wrong size on FNiagaraVariableWithOffset"); \ +static_assert(offsetof(FNiagaraVariableWithOffset, Offset) == 0x00000C, "Member 'FNiagaraVariableWithOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableWithOffset, StructConverter) == 0x000010, "Member 'FNiagaraVariableWithOffset::StructConverter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPositionSource \ +static_assert(alignof(FNiagaraPositionSource) == 0x000008, "Wrong alignment on FNiagaraPositionSource"); \ +static_assert(sizeof(FNiagaraPositionSource) == 0x000020, "Wrong size on FNiagaraPositionSource"); \ +static_assert(offsetof(FNiagaraPositionSource, Name) == 0x000000, "Member 'FNiagaraPositionSource::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPositionSource, Value) == 0x000008, "Member 'FNiagaraPositionSource::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterStore \ +static_assert(alignof(FNiagaraParameterStore) == 0x000008, "Wrong alignment on FNiagaraParameterStore"); \ +static_assert(sizeof(FNiagaraParameterStore) == 0x000088, "Wrong size on FNiagaraParameterStore"); \ +static_assert(offsetof(FNiagaraParameterStore, Owner) == 0x000008, "Member 'FNiagaraParameterStore::Owner' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterStore, SortedParameterOffsets) == 0x000010, "Member 'FNiagaraParameterStore::SortedParameterOffsets' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterStore, ParameterData) == 0x000020, "Member 'FNiagaraParameterStore::ParameterData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterStore, DataInterfaces) == 0x000030, "Member 'FNiagaraParameterStore::DataInterfaces' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterStore, UObjects) == 0x000040, "Member 'FNiagaraParameterStore::UObjects' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterStore, OriginalPositionData) == 0x000050, "Member 'FNiagaraParameterStore::OriginalPositionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVersionedNiagaraEmitterData \ +static_assert(alignof(FVersionedNiagaraEmitterData) == 0x000008, "Wrong alignment on FVersionedNiagaraEmitterData"); \ +static_assert(sizeof(FVersionedNiagaraEmitterData) == 0x000340, "Wrong size on FVersionedNiagaraEmitterData"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, Version) == 0x000000, "Member 'FVersionedNiagaraEmitterData::Version' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, bDeprecated) == 0x00001C, "Member 'FVersionedNiagaraEmitterData::bDeprecated' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, DeprecationMessage) == 0x000020, "Member 'FVersionedNiagaraEmitterData::DeprecationMessage' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, bLocalSpace) == 0x000038, "Member 'FVersionedNiagaraEmitterData::bLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, bDeterminism) == 0x000039, "Member 'FVersionedNiagaraEmitterData::bDeterminism' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, RandomSeed) == 0x00003C, "Member 'FVersionedNiagaraEmitterData::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, SimTarget) == 0x000044, "Member 'FVersionedNiagaraEmitterData::SimTarget' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, CalculateBoundsMode) == 0x000045, "Member 'FVersionedNiagaraEmitterData::CalculateBoundsMode' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, FixedBounds) == 0x000048, "Member 'FVersionedNiagaraEmitterData::FixedBounds' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, EventHandlerScriptProps) == 0x000088, "Member 'FVersionedNiagaraEmitterData::EventHandlerScriptProps' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, Platforms) == 0x000098, "Member 'FVersionedNiagaraEmitterData::Platforms' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, ScalabilityOverrides) == 0x0000C8, "Member 'FVersionedNiagaraEmitterData::ScalabilityOverrides' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, MaxGPUParticlesSpawnPerFrame) == 0x0000D8, "Member 'FVersionedNiagaraEmitterData::MaxGPUParticlesSpawnPerFrame' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, AllocationMode) == 0x0000DC, "Member 'FVersionedNiagaraEmitterData::AllocationMode' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, PreAllocationCount) == 0x0000E0, "Member 'FVersionedNiagaraEmitterData::PreAllocationCount' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, UpdateScriptProps) == 0x0000E8, "Member 'FVersionedNiagaraEmitterData::UpdateScriptProps' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, SpawnScriptProps) == 0x000110, "Member 'FVersionedNiagaraEmitterData::SpawnScriptProps' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, RendererBindings) == 0x000138, "Member 'FVersionedNiagaraEmitterData::RendererBindings' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, RendererBindingsExternalObjects) == 0x0001C0, "Member 'FVersionedNiagaraEmitterData::RendererBindingsExternalObjects' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, ResolvedDIBindings) == 0x0001D0, "Member 'FVersionedNiagaraEmitterData::ResolvedDIBindings' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, RendererProperties) == 0x000220, "Member 'FVersionedNiagaraEmitterData::RendererProperties' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, SimulationStages) == 0x000230, "Member 'FVersionedNiagaraEmitterData::SimulationStages' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, GPUComputeScript) == 0x000240, "Member 'FVersionedNiagaraEmitterData::GPUComputeScript' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, SharedEventGeneratorIds) == 0x000248, "Member 'FVersionedNiagaraEmitterData::SharedEventGeneratorIds' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitterData, CurrentScalabilitySettings) == 0x000258, "Member 'FVersionedNiagaraEmitterData::CurrentScalabilitySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVersionedNiagaraEmitter \ +static_assert(alignof(FVersionedNiagaraEmitter) == 0x000008, "Wrong alignment on FVersionedNiagaraEmitter"); \ +static_assert(sizeof(FVersionedNiagaraEmitter) == 0x000018, "Wrong size on FVersionedNiagaraEmitter"); \ +static_assert(offsetof(FVersionedNiagaraEmitter, Emitter) == 0x000000, "Member 'FVersionedNiagaraEmitter::Emitter' has a wrong offset!"); \ +static_assert(offsetof(FVersionedNiagaraEmitter, Version) == 0x000008, "Member 'FVersionedNiagaraEmitter::Version' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterHandle \ +static_assert(alignof(FNiagaraEmitterHandle) == 0x000008, "Wrong alignment on FNiagaraEmitterHandle"); \ +static_assert(sizeof(FNiagaraEmitterHandle) == 0x000040, "Wrong size on FNiagaraEmitterHandle"); \ +static_assert(offsetof(FNiagaraEmitterHandle, ID) == 0x000000, "Member 'FNiagaraEmitterHandle::ID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterHandle, IdName) == 0x000010, "Member 'FNiagaraEmitterHandle::IdName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterHandle, bIsEnabled) == 0x000018, "Member 'FNiagaraEmitterHandle::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterHandle, Name) == 0x00001C, "Member 'FNiagaraEmitterHandle::Name' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterHandle, VersionedInstance) == 0x000028, "Member 'FNiagaraEmitterHandle::VersionedInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCollisionEventPayload \ +static_assert(alignof(FNiagaraCollisionEventPayload) == 0x000008, "Wrong alignment on FNiagaraCollisionEventPayload"); \ +static_assert(sizeof(FNiagaraCollisionEventPayload) == 0x000050, "Wrong size on FNiagaraCollisionEventPayload"); \ +static_assert(offsetof(FNiagaraCollisionEventPayload, CollisionPos) == 0x000000, "Member 'FNiagaraCollisionEventPayload::CollisionPos' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCollisionEventPayload, CollisionNormal) == 0x000018, "Member 'FNiagaraCollisionEventPayload::CollisionNormal' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCollisionEventPayload, CollisionVelocity) == 0x000030, "Member 'FNiagaraCollisionEventPayload::CollisionVelocity' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCollisionEventPayload, ParticleIndex) == 0x000048, "Member 'FNiagaraCollisionEventPayload::ParticleIndex' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCollisionEventPayload, PhysicalMaterialIndex) == 0x00004C, "Member 'FNiagaraCollisionEventPayload::PhysicalMaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMeshMICOverride \ +static_assert(alignof(FNiagaraMeshMICOverride) == 0x000008, "Wrong alignment on FNiagaraMeshMICOverride"); \ +static_assert(sizeof(FNiagaraMeshMICOverride) == 0x000010, "Wrong size on FNiagaraMeshMICOverride"); \ +static_assert(offsetof(FNiagaraMeshMICOverride, OriginalMaterial) == 0x000000, "Member 'FNiagaraMeshMICOverride::OriginalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshMICOverride, ReplacementMaterial) == 0x000008, "Member 'FNiagaraMeshMICOverride::ReplacementMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMeshMaterialOverride \ +static_assert(alignof(FNiagaraMeshMaterialOverride) == 0x000008, "Wrong alignment on FNiagaraMeshMaterialOverride"); \ +static_assert(sizeof(FNiagaraMeshMaterialOverride) == 0x000028, "Wrong size on FNiagaraMeshMaterialOverride"); \ +static_assert(offsetof(FNiagaraMeshMaterialOverride, ExplicitMat) == 0x000000, "Member 'FNiagaraMeshMaterialOverride::ExplicitMat' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshMaterialOverride, UserParamBinding) == 0x000008, "Member 'FNiagaraMeshMaterialOverride::UserParamBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMeshRendererMeshProperties \ +static_assert(alignof(FNiagaraMeshRendererMeshProperties) == 0x000008, "Wrong alignment on FNiagaraMeshRendererMeshProperties"); \ +static_assert(sizeof(FNiagaraMeshRendererMeshProperties) == 0x000068, "Wrong size on FNiagaraMeshRendererMeshProperties"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, Mesh) == 0x000000, "Member 'FNiagaraMeshRendererMeshProperties::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, MeshParameterBinding) == 0x000008, "Member 'FNiagaraMeshRendererMeshProperties::MeshParameterBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, Scale) == 0x000018, "Member 'FNiagaraMeshRendererMeshProperties::Scale' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, Rotation) == 0x000030, "Member 'FNiagaraMeshRendererMeshProperties::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, PivotOffset) == 0x000048, "Member 'FNiagaraMeshRendererMeshProperties::PivotOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMeshRendererMeshProperties, PivotOffsetSpace) == 0x000060, "Member 'FNiagaraMeshRendererMeshProperties::PivotOffsetSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParameterDefinitionsSubscription \ +static_assert(alignof(FParameterDefinitionsSubscription) == 0x000001, "Wrong alignment on FParameterDefinitionsSubscription"); \ +static_assert(sizeof(FParameterDefinitionsSubscription) == 0x000001, "Wrong size on FParameterDefinitionsSubscription"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameters \ +static_assert(alignof(FNiagaraParameters) == 0x000008, "Wrong alignment on FNiagaraParameters"); \ +static_assert(sizeof(FNiagaraParameters) == 0x000010, "Wrong size on FNiagaraParameters"); \ +static_assert(offsetof(FNiagaraParameters, Parameters) == 0x000000, "Member 'FNiagaraParameters::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraBoundParameter \ +static_assert(alignof(FNiagaraBoundParameter) == 0x000004, "Wrong alignment on FNiagaraBoundParameter"); \ +static_assert(sizeof(FNiagaraBoundParameter) == 0x000014, "Wrong size on FNiagaraBoundParameter"); \ +static_assert(offsetof(FNiagaraBoundParameter, Parameter) == 0x000000, "Member 'FNiagaraBoundParameter::Parameter' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoundParameter, SrcOffset) == 0x00000C, "Member 'FNiagaraBoundParameter::SrcOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoundParameter, DestOffset) == 0x000010, "Member 'FNiagaraBoundParameter::DestOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPerfBaselineStats \ +static_assert(alignof(FNiagaraPerfBaselineStats) == 0x000004, "Wrong alignment on FNiagaraPerfBaselineStats"); \ +static_assert(sizeof(FNiagaraPerfBaselineStats) == 0x000010, "Wrong size on FNiagaraPerfBaselineStats"); \ +static_assert(offsetof(FNiagaraPerfBaselineStats, PerInstanceAvg_GT) == 0x000000, "Member 'FNiagaraPerfBaselineStats::PerInstanceAvg_GT' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPerfBaselineStats, PerInstanceAvg_RT) == 0x000004, "Member 'FNiagaraPerfBaselineStats::PerInstanceAvg_RT' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPerfBaselineStats, PerInstanceMax_GT) == 0x000008, "Member 'FNiagaraPerfBaselineStats::PerInstanceMax_GT' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPerfBaselineStats, PerInstanceMax_RT) == 0x00000C, "Member 'FNiagaraPerfBaselineStats::PerInstanceMax_RT' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPlatformSetConflictEntry \ +static_assert(alignof(FNiagaraPlatformSetConflictEntry) == 0x000004, "Wrong alignment on FNiagaraPlatformSetConflictEntry"); \ +static_assert(sizeof(FNiagaraPlatformSetConflictEntry) == 0x00000C, "Wrong size on FNiagaraPlatformSetConflictEntry"); \ +static_assert(offsetof(FNiagaraPlatformSetConflictEntry, ProfileName) == 0x000000, "Member 'FNiagaraPlatformSetConflictEntry::ProfileName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetConflictEntry, QualityLevelMask) == 0x000008, "Member 'FNiagaraPlatformSetConflictEntry::QualityLevelMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPlatformSetConflictInfo \ +static_assert(alignof(FNiagaraPlatformSetConflictInfo) == 0x000008, "Wrong alignment on FNiagaraPlatformSetConflictInfo"); \ +static_assert(sizeof(FNiagaraPlatformSetConflictInfo) == 0x000018, "Wrong size on FNiagaraPlatformSetConflictInfo"); \ +static_assert(offsetof(FNiagaraPlatformSetConflictInfo, SetAIndex) == 0x000000, "Member 'FNiagaraPlatformSetConflictInfo::SetAIndex' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetConflictInfo, SetBIndex) == 0x000004, "Member 'FNiagaraPlatformSetConflictInfo::SetBIndex' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetConflictInfo, Conflicts) == 0x000008, "Member 'FNiagaraPlatformSetConflictInfo::Conflicts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPlatformSetRedirect \ +static_assert(alignof(FNiagaraPlatformSetRedirect) == 0x000008, "Wrong alignment on FNiagaraPlatformSetRedirect"); \ +static_assert(sizeof(FNiagaraPlatformSetRedirect) == 0x000080, "Wrong size on FNiagaraPlatformSetRedirect"); \ +static_assert(offsetof(FNiagaraPlatformSetRedirect, ProfileNames) == 0x000000, "Member 'FNiagaraPlatformSetRedirect::ProfileNames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetRedirect, Mode) == 0x000010, "Member 'FNiagaraPlatformSetRedirect::Mode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetRedirect, RedirectProfileName) == 0x000014, "Member 'FNiagaraPlatformSetRedirect::RedirectProfileName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetRedirect, CVarConditionEnabled) == 0x000020, "Member 'FNiagaraPlatformSetRedirect::CVarConditionEnabled' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraPlatformSetRedirect, CVarConditionDisabled) == 0x000050, "Member 'FNiagaraPlatformSetRedirect::CVarConditionDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRendererMaterialScalarParameter \ +static_assert(alignof(FNiagaraRendererMaterialScalarParameter) == 0x000004, "Wrong alignment on FNiagaraRendererMaterialScalarParameter"); \ +static_assert(sizeof(FNiagaraRendererMaterialScalarParameter) == 0x00000C, "Wrong size on FNiagaraRendererMaterialScalarParameter"); \ +static_assert(offsetof(FNiagaraRendererMaterialScalarParameter, MaterialParameterName) == 0x000000, "Member 'FNiagaraRendererMaterialScalarParameter::MaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialScalarParameter, Value) == 0x000008, "Member 'FNiagaraRendererMaterialScalarParameter::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRendererMaterialVectorParameter \ +static_assert(alignof(FNiagaraRendererMaterialVectorParameter) == 0x000004, "Wrong alignment on FNiagaraRendererMaterialVectorParameter"); \ +static_assert(sizeof(FNiagaraRendererMaterialVectorParameter) == 0x000018, "Wrong size on FNiagaraRendererMaterialVectorParameter"); \ +static_assert(offsetof(FNiagaraRendererMaterialVectorParameter, MaterialParameterName) == 0x000000, "Member 'FNiagaraRendererMaterialVectorParameter::MaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialVectorParameter, Value) == 0x000008, "Member 'FNiagaraRendererMaterialVectorParameter::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRendererMaterialTextureParameter \ +static_assert(alignof(FNiagaraRendererMaterialTextureParameter) == 0x000008, "Wrong alignment on FNiagaraRendererMaterialTextureParameter"); \ +static_assert(sizeof(FNiagaraRendererMaterialTextureParameter) == 0x000010, "Wrong size on FNiagaraRendererMaterialTextureParameter"); \ +static_assert(offsetof(FNiagaraRendererMaterialTextureParameter, MaterialParameterName) == 0x000000, "Member 'FNiagaraRendererMaterialTextureParameter::MaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialTextureParameter, Texture) == 0x000008, "Member 'FNiagaraRendererMaterialTextureParameter::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRendererMaterialStaticBoolParameter \ +static_assert(alignof(FNiagaraRendererMaterialStaticBoolParameter) == 0x000004, "Wrong alignment on FNiagaraRendererMaterialStaticBoolParameter"); \ +static_assert(sizeof(FNiagaraRendererMaterialStaticBoolParameter) == 0x000010, "Wrong size on FNiagaraRendererMaterialStaticBoolParameter"); \ +static_assert(offsetof(FNiagaraRendererMaterialStaticBoolParameter, MaterialParameterName) == 0x000000, "Member 'FNiagaraRendererMaterialStaticBoolParameter::MaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialStaticBoolParameter, StaticVariableName) == 0x000008, "Member 'FNiagaraRendererMaterialStaticBoolParameter::StaticVariableName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRendererMaterialParameters \ +static_assert(alignof(FNiagaraRendererMaterialParameters) == 0x000008, "Wrong alignment on FNiagaraRendererMaterialParameters"); \ +static_assert(sizeof(FNiagaraRendererMaterialParameters) == 0x000050, "Wrong size on FNiagaraRendererMaterialParameters"); \ +static_assert(offsetof(FNiagaraRendererMaterialParameters, AttributeBindings) == 0x000000, "Member 'FNiagaraRendererMaterialParameters::AttributeBindings' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialParameters, ScalarParameters) == 0x000010, "Member 'FNiagaraRendererMaterialParameters::ScalarParameters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialParameters, VectorParameters) == 0x000020, "Member 'FNiagaraRendererMaterialParameters::VectorParameters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialParameters, TextureParameters) == 0x000030, "Member 'FNiagaraRendererMaterialParameters::TextureParameters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRendererMaterialParameters, StaticBoolParameters) == 0x000040, "Member 'FNiagaraRendererMaterialParameters::StaticBoolParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRibbonShapeCustomVertex \ +static_assert(alignof(FNiagaraRibbonShapeCustomVertex) == 0x000004, "Wrong alignment on FNiagaraRibbonShapeCustomVertex"); \ +static_assert(sizeof(FNiagaraRibbonShapeCustomVertex) == 0x000014, "Wrong size on FNiagaraRibbonShapeCustomVertex"); \ +static_assert(offsetof(FNiagaraRibbonShapeCustomVertex, Position) == 0x000000, "Member 'FNiagaraRibbonShapeCustomVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonShapeCustomVertex, Normal) == 0x000008, "Member 'FNiagaraRibbonShapeCustomVertex::Normal' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonShapeCustomVertex, TextureV) == 0x000010, "Member 'FNiagaraRibbonShapeCustomVertex::TextureV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRibbonUVSettings \ +static_assert(alignof(FNiagaraRibbonUVSettings) == 0x000008, "Wrong alignment on FNiagaraRibbonUVSettings"); \ +static_assert(sizeof(FNiagaraRibbonUVSettings) == 0x000028, "Wrong size on FNiagaraRibbonUVSettings"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, DistributionMode) == 0x000000, "Member 'FNiagaraRibbonUVSettings::DistributionMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, LeadingEdgeMode) == 0x000001, "Member 'FNiagaraRibbonUVSettings::LeadingEdgeMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, TrailingEdgeMode) == 0x000002, "Member 'FNiagaraRibbonUVSettings::TrailingEdgeMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, TilingLength) == 0x000004, "Member 'FNiagaraRibbonUVSettings::TilingLength' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, Offset) == 0x000008, "Member 'FNiagaraRibbonUVSettings::Offset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRibbonUVSettings, Scale) == 0x000018, "Member 'FNiagaraRibbonUVSettings::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScalabilityManager \ +static_assert(alignof(FNiagaraScalabilityManager) == 0x000008, "Wrong alignment on FNiagaraScalabilityManager"); \ +static_assert(sizeof(FNiagaraScalabilityManager) == 0x0000E0, "Wrong size on FNiagaraScalabilityManager"); \ +static_assert(offsetof(FNiagaraScalabilityManager, EffectType) == 0x000000, "Member 'FNiagaraScalabilityManager::EffectType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScalabilityManager, ManagedComponents) == 0x000008, "Member 'FNiagaraScalabilityManager::ManagedComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraModuleDependency \ +static_assert(alignof(FNiagaraModuleDependency) == 0x000008, "Wrong alignment on FNiagaraModuleDependency"); \ +static_assert(sizeof(FNiagaraModuleDependency) == 0x000068, "Wrong size on FNiagaraModuleDependency"); \ +static_assert(offsetof(FNiagaraModuleDependency, ID) == 0x000000, "Member 'FNiagaraModuleDependency::ID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraModuleDependency, Type) == 0x000008, "Member 'FNiagaraModuleDependency::Type' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraModuleDependency, ScriptConstraint) == 0x000009, "Member 'FNiagaraModuleDependency::ScriptConstraint' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraModuleDependency, RequiredVersion) == 0x000010, "Member 'FNiagaraModuleDependency::RequiredVersion' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraModuleDependency, OnlyEvaluateInScriptUsage) == 0x000020, "Member 'FNiagaraModuleDependency::OnlyEvaluateInScriptUsage' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraModuleDependency, Description) == 0x000028, "Member 'FNiagaraModuleDependency::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraCompilerTag \ +static_assert(alignof(FNiagaraCompilerTag) == 0x000008, "Wrong alignment on FNiagaraCompilerTag"); \ +static_assert(sizeof(FNiagaraCompilerTag) == 0x000030, "Wrong size on FNiagaraCompilerTag"); \ +static_assert(offsetof(FNiagaraCompilerTag, Variable) == 0x000000, "Member 'FNiagaraCompilerTag::Variable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraCompilerTag, StringValue) == 0x000020, "Member 'FNiagaraCompilerTag::StringValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVMExecutableDataId \ +static_assert(alignof(FNiagaraVMExecutableDataId) == 0x000008, "Wrong alignment on FNiagaraVMExecutableDataId"); \ +static_assert(sizeof(FNiagaraVMExecutableDataId) == 0x000058, "Wrong size on FNiagaraVMExecutableDataId"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, CompilerVersionID) == 0x000000, "Member 'FNiagaraVMExecutableDataId::CompilerVersionID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, ScriptUsageType) == 0x000010, "Member 'FNiagaraVMExecutableDataId::ScriptUsageType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, ScriptUsageTypeID) == 0x000014, "Member 'FNiagaraVMExecutableDataId::ScriptUsageTypeID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, BaseScriptID) == 0x000028, "Member 'FNiagaraVMExecutableDataId::BaseScriptID' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, BaseScriptCompileHash) == 0x000038, "Member 'FNiagaraVMExecutableDataId::BaseScriptCompileHash' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableDataId, ScriptVersionID) == 0x000048, "Member 'FNiagaraVMExecutableDataId::ScriptVersionID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVMExecutableByteCode \ +static_assert(alignof(FNiagaraVMExecutableByteCode) == 0x000008, "Wrong alignment on FNiagaraVMExecutableByteCode"); \ +static_assert(sizeof(FNiagaraVMExecutableByteCode) == 0x000018, "Wrong size on FNiagaraVMExecutableByteCode"); \ +static_assert(offsetof(FNiagaraVMExecutableByteCode, Data) == 0x000000, "Member 'FNiagaraVMExecutableByteCode::Data' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableByteCode, UncompressedSize) == 0x000010, "Member 'FNiagaraVMExecutableByteCode::UncompressedSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVMExecutableData \ +static_assert(alignof(FNiagaraVMExecutableData) == 0x000008, "Wrong alignment on FNiagaraVMExecutableData"); \ +static_assert(sizeof(FNiagaraVMExecutableData) == 0x0001A0, "Wrong size on FNiagaraVMExecutableData"); \ +static_assert(offsetof(FNiagaraVMExecutableData, ByteCode) == 0x000000, "Member 'FNiagaraVMExecutableData::ByteCode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, OptimizedByteCode) == 0x000018, "Member 'FNiagaraVMExecutableData::OptimizedByteCode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, NumTempRegisters) == 0x000068, "Member 'FNiagaraVMExecutableData::NumTempRegisters' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, NumUserPtrs) == 0x00006C, "Member 'FNiagaraVMExecutableData::NumUserPtrs' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, CompileTags) == 0x000070, "Member 'FNiagaraVMExecutableData::CompileTags' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, ScriptLiterals) == 0x000080, "Member 'FNiagaraVMExecutableData::ScriptLiterals' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, Attributes) == 0x000090, "Member 'FNiagaraVMExecutableData::Attributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, DataUsage) == 0x0000A0, "Member 'FNiagaraVMExecutableData::DataUsage' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, UObjectInfos) == 0x0000A8, "Member 'FNiagaraVMExecutableData::UObjectInfos' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, DataInterfaceInfo) == 0x0000B8, "Member 'FNiagaraVMExecutableData::DataInterfaceInfo' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, CalledVMExternalFunctions) == 0x0000C8, "Member 'FNiagaraVMExecutableData::CalledVMExternalFunctions' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, ReadDataSets) == 0x0000E8, "Member 'FNiagaraVMExecutableData::ReadDataSets' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, WriteDataSets) == 0x0000F8, "Member 'FNiagaraVMExecutableData::WriteDataSets' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, StatScopes) == 0x000108, "Member 'FNiagaraVMExecutableData::StatScopes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, ShaderScriptParametersMetadata) == 0x000118, "Member 'FNiagaraVMExecutableData::ShaderScriptParametersMetadata' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, LastCompileStatus) == 0x000170, "Member 'FNiagaraVMExecutableData::LastCompileStatus' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, SimulationStageMetaData) == 0x000178, "Member 'FNiagaraVMExecutableData::SimulationStageMetaData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVMExecutableData, ExperimentalContextData) == 0x000188, "Member 'FNiagaraVMExecutableData::ExperimentalContextData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraInlineDynamicInputFormatToken \ +static_assert(alignof(FNiagaraInlineDynamicInputFormatToken) == 0x000001, "Wrong alignment on FNiagaraInlineDynamicInputFormatToken"); \ +static_assert(sizeof(FNiagaraInlineDynamicInputFormatToken) == 0x000001, "Wrong size on FNiagaraInlineDynamicInputFormatToken"); \ + +#define DUMPER7_ASSERTS_FVersionedNiagaraScriptData \ +static_assert(alignof(FVersionedNiagaraScriptData) == 0x000001, "Wrong alignment on FVersionedNiagaraScriptData"); \ +static_assert(sizeof(FVersionedNiagaraScriptData) == 0x000001, "Wrong size on FVersionedNiagaraScriptData"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptExecutionPaddingInfo \ +static_assert(alignof(FNiagaraScriptExecutionPaddingInfo) == 0x000002, "Wrong alignment on FNiagaraScriptExecutionPaddingInfo"); \ +static_assert(sizeof(FNiagaraScriptExecutionPaddingInfo) == 0x000008, "Wrong size on FNiagaraScriptExecutionPaddingInfo"); \ +static_assert(offsetof(FNiagaraScriptExecutionPaddingInfo, SrcOffset) == 0x000000, "Member 'FNiagaraScriptExecutionPaddingInfo::SrcOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptExecutionPaddingInfo, DestOffset) == 0x000002, "Member 'FNiagaraScriptExecutionPaddingInfo::DestOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptExecutionPaddingInfo, SrcSize) == 0x000004, "Member 'FNiagaraScriptExecutionPaddingInfo::SrcSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptExecutionPaddingInfo, DestSize) == 0x000006, "Member 'FNiagaraScriptExecutionPaddingInfo::DestSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptExecutionParameterStore \ +static_assert(alignof(FNiagaraScriptExecutionParameterStore) == 0x000008, "Wrong alignment on FNiagaraScriptExecutionParameterStore"); \ +static_assert(sizeof(FNiagaraScriptExecutionParameterStore) == 0x0000A8, "Wrong size on FNiagaraScriptExecutionParameterStore"); \ +static_assert(offsetof(FNiagaraScriptExecutionParameterStore, ParameterSize) == 0x000088, "Member 'FNiagaraScriptExecutionParameterStore::ParameterSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptExecutionParameterStore, PaddedParameterSize) == 0x00008C, "Member 'FNiagaraScriptExecutionParameterStore::PaddedParameterSize' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptExecutionParameterStore, PaddingInfo) == 0x000090, "Member 'FNiagaraScriptExecutionParameterStore::PaddingInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptInstanceParameterStore \ +static_assert(alignof(FNiagaraScriptInstanceParameterStore) == 0x000008, "Wrong alignment on FNiagaraScriptInstanceParameterStore"); \ +static_assert(sizeof(FNiagaraScriptInstanceParameterStore) == 0x000098, "Wrong size on FNiagaraScriptInstanceParameterStore"); \ + +#define DUMPER7_ASSERTS_FNiagaraScriptHighlight \ +static_assert(alignof(FNiagaraScriptHighlight) == 0x000008, "Wrong alignment on FNiagaraScriptHighlight"); \ +static_assert(sizeof(FNiagaraScriptHighlight) == 0x000028, "Wrong size on FNiagaraScriptHighlight"); \ +static_assert(offsetof(FNiagaraScriptHighlight, Color) == 0x000000, "Member 'FNiagaraScriptHighlight::Color' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraScriptHighlight, DisplayName) == 0x000010, "Member 'FNiagaraScriptHighlight::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheDataBuffers \ +static_assert(alignof(FNiagaraSimCacheDataBuffers) == 0x000008, "Wrong alignment on FNiagaraSimCacheDataBuffers"); \ +static_assert(sizeof(FNiagaraSimCacheDataBuffers) == 0x000060, "Wrong size on FNiagaraSimCacheDataBuffers"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, NumInstances) == 0x000000, "Member 'FNiagaraSimCacheDataBuffers::NumInstances' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, FloatData) == 0x000008, "Member 'FNiagaraSimCacheDataBuffers::FloatData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, HalfData) == 0x000018, "Member 'FNiagaraSimCacheDataBuffers::HalfData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, Int32Data) == 0x000028, "Member 'FNiagaraSimCacheDataBuffers::Int32Data' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, IDToIndexTable) == 0x000038, "Member 'FNiagaraSimCacheDataBuffers::IDToIndexTable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, IDAcquireTag) == 0x000048, "Member 'FNiagaraSimCacheDataBuffers::IDAcquireTag' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffers, InterpMapping) == 0x000050, "Member 'FNiagaraSimCacheDataBuffers::InterpMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheEmitterFrame \ +static_assert(alignof(FNiagaraSimCacheEmitterFrame) == 0x000008, "Wrong alignment on FNiagaraSimCacheEmitterFrame"); \ +static_assert(sizeof(FNiagaraSimCacheEmitterFrame) == 0x0000A0, "Wrong size on FNiagaraSimCacheEmitterFrame"); \ +static_assert(offsetof(FNiagaraSimCacheEmitterFrame, LocalBounds) == 0x000000, "Member 'FNiagaraSimCacheEmitterFrame::LocalBounds' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheEmitterFrame, TotalSpawnedParticles) == 0x000038, "Member 'FNiagaraSimCacheEmitterFrame::TotalSpawnedParticles' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheEmitterFrame, ParticleDataBuffers) == 0x000040, "Member 'FNiagaraSimCacheEmitterFrame::ParticleDataBuffers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheSystemFrame \ +static_assert(alignof(FNiagaraSimCacheSystemFrame) == 0x000008, "Wrong alignment on FNiagaraSimCacheSystemFrame"); \ +static_assert(sizeof(FNiagaraSimCacheSystemFrame) == 0x000098, "Wrong size on FNiagaraSimCacheSystemFrame"); \ +static_assert(offsetof(FNiagaraSimCacheSystemFrame, LocalBounds) == 0x000000, "Member 'FNiagaraSimCacheSystemFrame::LocalBounds' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheSystemFrame, SystemDataBuffers) == 0x000038, "Member 'FNiagaraSimCacheSystemFrame::SystemDataBuffers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheFrame \ +static_assert(alignof(FNiagaraSimCacheFrame) == 0x000010, "Wrong alignment on FNiagaraSimCacheFrame"); \ +static_assert(sizeof(FNiagaraSimCacheFrame) == 0x000120, "Wrong size on FNiagaraSimCacheFrame"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, LocalToWorld) == 0x000000, "Member 'FNiagaraSimCacheFrame::LocalToWorld' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, LWCTile) == 0x000060, "Member 'FNiagaraSimCacheFrame::LWCTile' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, SimulationAge) == 0x00006C, "Member 'FNiagaraSimCacheFrame::SimulationAge' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, SimulationTickCount) == 0x000070, "Member 'FNiagaraSimCacheFrame::SimulationTickCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, SystemData) == 0x000078, "Member 'FNiagaraSimCacheFrame::SystemData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheFrame, EmitterData) == 0x000110, "Member 'FNiagaraSimCacheFrame::EmitterData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheVariable \ +static_assert(alignof(FNiagaraSimCacheVariable) == 0x000004, "Wrong alignment on FNiagaraSimCacheVariable"); \ +static_assert(sizeof(FNiagaraSimCacheVariable) == 0x000018, "Wrong size on FNiagaraSimCacheVariable"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, Variable) == 0x000000, "Member 'FNiagaraSimCacheVariable::Variable' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, FloatOffset) == 0x00000C, "Member 'FNiagaraSimCacheVariable::FloatOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, FloatCount) == 0x00000E, "Member 'FNiagaraSimCacheVariable::FloatCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, HalfOffset) == 0x000010, "Member 'FNiagaraSimCacheVariable::HalfOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, HalfCount) == 0x000012, "Member 'FNiagaraSimCacheVariable::HalfCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, Int32Offset) == 0x000014, "Member 'FNiagaraSimCacheVariable::Int32Offset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheVariable, Int32Count) == 0x000016, "Member 'FNiagaraSimCacheVariable::Int32Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheDataBuffersLayout \ +static_assert(alignof(FNiagaraSimCacheDataBuffersLayout) == 0x000008, "Wrong alignment on FNiagaraSimCacheDataBuffersLayout"); \ +static_assert(sizeof(FNiagaraSimCacheDataBuffersLayout) == 0x0000B8, "Wrong size on FNiagaraSimCacheDataBuffersLayout"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, LayoutName) == 0x000000, "Member 'FNiagaraSimCacheDataBuffersLayout::LayoutName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, SimTarget) == 0x000008, "Member 'FNiagaraSimCacheDataBuffersLayout::SimTarget' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, Variables) == 0x000010, "Member 'FNiagaraSimCacheDataBuffersLayout::Variables' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, FloatCount) == 0x000020, "Member 'FNiagaraSimCacheDataBuffersLayout::FloatCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, HalfCount) == 0x000022, "Member 'FNiagaraSimCacheDataBuffersLayout::HalfCount' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, Int32Count) == 0x000024, "Member 'FNiagaraSimCacheDataBuffersLayout::Int32Count' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, bLocalSpace) == 0x000026, "Member 'FNiagaraSimCacheDataBuffersLayout::bLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, bAllowInterpolation) == 0x000027, "Member 'FNiagaraSimCacheDataBuffersLayout::bAllowInterpolation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, bAllowVelocityExtrapolation) == 0x000028, "Member 'FNiagaraSimCacheDataBuffersLayout::bAllowVelocityExtrapolation' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, RebaseVariableNames) == 0x000030, "Member 'FNiagaraSimCacheDataBuffersLayout::RebaseVariableNames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, InterpVariableNames) == 0x000040, "Member 'FNiagaraSimCacheDataBuffersLayout::InterpVariableNames' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheDataBuffersLayout, ComponentVelocity) == 0x000050, "Member 'FNiagaraSimCacheDataBuffersLayout::ComponentVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSimCacheLayout \ +static_assert(alignof(FNiagaraSimCacheLayout) == 0x000008, "Wrong alignment on FNiagaraSimCacheLayout"); \ +static_assert(sizeof(FNiagaraSimCacheLayout) == 0x0000C8, "Wrong size on FNiagaraSimCacheLayout"); \ +static_assert(offsetof(FNiagaraSimCacheLayout, SystemLayout) == 0x000000, "Member 'FNiagaraSimCacheLayout::SystemLayout' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSimCacheLayout, EmitterLayouts) == 0x0000B8, "Member 'FNiagaraSimCacheLayout::EmitterLayouts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEmitterCompiledData \ +static_assert(alignof(FNiagaraEmitterCompiledData) == 0x000008, "Wrong alignment on FNiagaraEmitterCompiledData"); \ +static_assert(sizeof(FNiagaraEmitterCompiledData) == 0x000138, "Wrong size on FNiagaraEmitterCompiledData"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, SpawnAttributes) == 0x000000, "Member 'FNiagaraEmitterCompiledData::SpawnAttributes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterSpawnIntervalVar) == 0x000010, "Member 'FNiagaraEmitterCompiledData::EmitterSpawnIntervalVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterInterpSpawnStartDTVar) == 0x000030, "Member 'FNiagaraEmitterCompiledData::EmitterInterpSpawnStartDTVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterSpawnGroupVar) == 0x000050, "Member 'FNiagaraEmitterCompiledData::EmitterSpawnGroupVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterAgeVar) == 0x000070, "Member 'FNiagaraEmitterCompiledData::EmitterAgeVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterRandomSeedVar) == 0x000090, "Member 'FNiagaraEmitterCompiledData::EmitterRandomSeedVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterInstanceSeedVar) == 0x0000B0, "Member 'FNiagaraEmitterCompiledData::EmitterInstanceSeedVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, EmitterTotalSpawnedParticlesVar) == 0x0000D0, "Member 'FNiagaraEmitterCompiledData::EmitterTotalSpawnedParticlesVar' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEmitterCompiledData, DataSetCompiledData) == 0x0000F0, "Member 'FNiagaraEmitterCompiledData::DataSetCompiledData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterDataSetBinding \ +static_assert(alignof(FNiagaraParameterDataSetBinding) == 0x000004, "Wrong alignment on FNiagaraParameterDataSetBinding"); \ +static_assert(sizeof(FNiagaraParameterDataSetBinding) == 0x000008, "Wrong size on FNiagaraParameterDataSetBinding"); \ +static_assert(offsetof(FNiagaraParameterDataSetBinding, ParameterOffset) == 0x000000, "Member 'FNiagaraParameterDataSetBinding::ParameterOffset' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterDataSetBinding, DataSetComponentOffset) == 0x000004, "Member 'FNiagaraParameterDataSetBinding::DataSetComponentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterDataSetBindingCollection \ +static_assert(alignof(FNiagaraParameterDataSetBindingCollection) == 0x000008, "Wrong alignment on FNiagaraParameterDataSetBindingCollection"); \ +static_assert(sizeof(FNiagaraParameterDataSetBindingCollection) == 0x000020, "Wrong size on FNiagaraParameterDataSetBindingCollection"); \ +static_assert(offsetof(FNiagaraParameterDataSetBindingCollection, FloatOffsets) == 0x000000, "Member 'FNiagaraParameterDataSetBindingCollection::FloatOffsets' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraParameterDataSetBindingCollection, Int32Offsets) == 0x000010, "Member 'FNiagaraParameterDataSetBindingCollection::Int32Offsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemCompiledData \ +static_assert(alignof(FNiagaraSystemCompiledData) == 0x000008, "Wrong alignment on FNiagaraSystemCompiledData"); \ +static_assert(sizeof(FNiagaraSystemCompiledData) == 0x000240, "Wrong size on FNiagaraSystemCompiledData"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, InstanceParamStore) == 0x000000, "Member 'FNiagaraSystemCompiledData::InstanceParamStore' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, DataSetCompiledData) == 0x000088, "Member 'FNiagaraSystemCompiledData::DataSetCompiledData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, SpawnInstanceParamsDataSetCompiledData) == 0x0000D0, "Member 'FNiagaraSystemCompiledData::SpawnInstanceParamsDataSetCompiledData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, UpdateInstanceParamsDataSetCompiledData) == 0x000118, "Member 'FNiagaraSystemCompiledData::UpdateInstanceParamsDataSetCompiledData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, SpawnInstanceGlobalBinding) == 0x000160, "Member 'FNiagaraSystemCompiledData::SpawnInstanceGlobalBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, SpawnInstanceSystemBinding) == 0x000180, "Member 'FNiagaraSystemCompiledData::SpawnInstanceSystemBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, SpawnInstanceOwnerBinding) == 0x0001A0, "Member 'FNiagaraSystemCompiledData::SpawnInstanceOwnerBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, SpawnInstanceEmitterBindings) == 0x0001C0, "Member 'FNiagaraSystemCompiledData::SpawnInstanceEmitterBindings' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, UpdateInstanceGlobalBinding) == 0x0001D0, "Member 'FNiagaraSystemCompiledData::UpdateInstanceGlobalBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, UpdateInstanceSystemBinding) == 0x0001F0, "Member 'FNiagaraSystemCompiledData::UpdateInstanceSystemBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, UpdateInstanceOwnerBinding) == 0x000210, "Member 'FNiagaraSystemCompiledData::UpdateInstanceOwnerBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSystemCompiledData, UpdateInstanceEmitterBindings) == 0x000230, "Member 'FNiagaraSystemCompiledData::UpdateInstanceEmitterBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSystemScalabilityOverrides \ +static_assert(alignof(FNiagaraSystemScalabilityOverrides) == 0x000008, "Wrong alignment on FNiagaraSystemScalabilityOverrides"); \ +static_assert(sizeof(FNiagaraSystemScalabilityOverrides) == 0x000010, "Wrong size on FNiagaraSystemScalabilityOverrides"); \ +static_assert(offsetof(FNiagaraSystemScalabilityOverrides, Overrides) == 0x000000, "Member 'FNiagaraSystemScalabilityOverrides::Overrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraWildcard \ +static_assert(alignof(FNiagaraWildcard) == 0x000001, "Wrong alignment on FNiagaraWildcard"); \ +static_assert(sizeof(FNiagaraWildcard) == 0x000001, "Wrong size on FNiagaraWildcard"); \ + +#define DUMPER7_ASSERTS_FNiagaraFloat \ +static_assert(alignof(FNiagaraFloat) == 0x000004, "Wrong alignment on FNiagaraFloat"); \ +static_assert(sizeof(FNiagaraFloat) == 0x000004, "Wrong size on FNiagaraFloat"); \ +static_assert(offsetof(FNiagaraFloat, Value) == 0x000000, "Member 'FNiagaraFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraBool \ +static_assert(alignof(FNiagaraBool) == 0x000004, "Wrong alignment on FNiagaraBool"); \ +static_assert(sizeof(FNiagaraBool) == 0x000004, "Wrong size on FNiagaraBool"); \ +static_assert(offsetof(FNiagaraBool, Value) == 0x000000, "Member 'FNiagaraBool::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraPosition \ +static_assert(alignof(FNiagaraPosition) == 0x000004, "Wrong alignment on FNiagaraPosition"); \ +static_assert(sizeof(FNiagaraPosition) == 0x00000C, "Wrong size on FNiagaraPosition"); \ + +#define DUMPER7_ASSERTS_FNiagaraHalf \ +static_assert(alignof(FNiagaraHalf) == 0x000002, "Wrong alignment on FNiagaraHalf"); \ +static_assert(sizeof(FNiagaraHalf) == 0x000002, "Wrong size on FNiagaraHalf"); \ +static_assert(offsetof(FNiagaraHalf, Value) == 0x000000, "Member 'FNiagaraHalf::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraHalfVector2 \ +static_assert(alignof(FNiagaraHalfVector2) == 0x000002, "Wrong alignment on FNiagaraHalfVector2"); \ +static_assert(sizeof(FNiagaraHalfVector2) == 0x000004, "Wrong size on FNiagaraHalfVector2"); \ +static_assert(offsetof(FNiagaraHalfVector2, X) == 0x000000, "Member 'FNiagaraHalfVector2::X' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector2, Y) == 0x000002, "Member 'FNiagaraHalfVector2::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraHalfVector3 \ +static_assert(alignof(FNiagaraHalfVector3) == 0x000002, "Wrong alignment on FNiagaraHalfVector3"); \ +static_assert(sizeof(FNiagaraHalfVector3) == 0x000006, "Wrong size on FNiagaraHalfVector3"); \ +static_assert(offsetof(FNiagaraHalfVector3, X) == 0x000000, "Member 'FNiagaraHalfVector3::X' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector3, Y) == 0x000002, "Member 'FNiagaraHalfVector3::Y' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector3, Z) == 0x000004, "Member 'FNiagaraHalfVector3::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraHalfVector4 \ +static_assert(alignof(FNiagaraHalfVector4) == 0x000002, "Wrong alignment on FNiagaraHalfVector4"); \ +static_assert(sizeof(FNiagaraHalfVector4) == 0x000008, "Wrong size on FNiagaraHalfVector4"); \ +static_assert(offsetof(FNiagaraHalfVector4, X) == 0x000000, "Member 'FNiagaraHalfVector4::X' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector4, Y) == 0x000002, "Member 'FNiagaraHalfVector4::Y' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector4, Z) == 0x000004, "Member 'FNiagaraHalfVector4::Z' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraHalfVector4, W) == 0x000006, "Member 'FNiagaraHalfVector4::W' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraNumeric \ +static_assert(alignof(FNiagaraNumeric) == 0x000001, "Wrong alignment on FNiagaraNumeric"); \ +static_assert(sizeof(FNiagaraNumeric) == 0x000001, "Wrong size on FNiagaraNumeric"); \ + +#define DUMPER7_ASSERTS_FNiagaraParameterMap \ +static_assert(alignof(FNiagaraParameterMap) == 0x000001, "Wrong alignment on FNiagaraParameterMap"); \ +static_assert(sizeof(FNiagaraParameterMap) == 0x000001, "Wrong size on FNiagaraParameterMap"); \ + +#define DUMPER7_ASSERTS_FNiagaraDouble \ +static_assert(alignof(FNiagaraDouble) == 0x000008, "Wrong alignment on FNiagaraDouble"); \ +static_assert(sizeof(FNiagaraDouble) == 0x000008, "Wrong size on FNiagaraDouble"); \ +static_assert(offsetof(FNiagaraDouble, Value) == 0x000000, "Member 'FNiagaraDouble::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraMatrix \ +static_assert(alignof(FNiagaraMatrix) == 0x000010, "Wrong alignment on FNiagaraMatrix"); \ +static_assert(sizeof(FNiagaraMatrix) == 0x000040, "Wrong size on FNiagaraMatrix"); \ +static_assert(offsetof(FNiagaraMatrix, Row0) == 0x000000, "Member 'FNiagaraMatrix::Row0' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMatrix, Row1) == 0x000010, "Member 'FNiagaraMatrix::Row1' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMatrix, Row2) == 0x000020, "Member 'FNiagaraMatrix::Row2' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraMatrix, Row3) == 0x000030, "Member 'FNiagaraMatrix::Row3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraSpawnInfo \ +static_assert(alignof(FNiagaraSpawnInfo) == 0x000004, "Wrong alignment on FNiagaraSpawnInfo"); \ +static_assert(sizeof(FNiagaraSpawnInfo) == 0x000010, "Wrong size on FNiagaraSpawnInfo"); \ +static_assert(offsetof(FNiagaraSpawnInfo, Count) == 0x000000, "Member 'FNiagaraSpawnInfo::Count' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSpawnInfo, InterpStartDt) == 0x000004, "Member 'FNiagaraSpawnInfo::InterpStartDt' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSpawnInfo, IntervalDt) == 0x000008, "Member 'FNiagaraSpawnInfo::IntervalDt' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraSpawnInfo, SpawnGroup) == 0x00000C, "Member 'FNiagaraSpawnInfo::SpawnGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraID \ +static_assert(alignof(FNiagaraID) == 0x000004, "Wrong alignment on FNiagaraID"); \ +static_assert(sizeof(FNiagaraID) == 0x000008, "Wrong size on FNiagaraID"); \ +static_assert(offsetof(FNiagaraID, Index) == 0x000000, "Member 'FNiagaraID::Index' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraID, AcquireTag) == 0x000004, "Member 'FNiagaraID::AcquireTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraRandInfo \ +static_assert(alignof(FNiagaraRandInfo) == 0x000004, "Wrong alignment on FNiagaraRandInfo"); \ +static_assert(sizeof(FNiagaraRandInfo) == 0x00000C, "Wrong size on FNiagaraRandInfo"); \ +static_assert(offsetof(FNiagaraRandInfo, Seed1) == 0x000000, "Member 'FNiagaraRandInfo::Seed1' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRandInfo, Seed2) == 0x000004, "Member 'FNiagaraRandInfo::Seed2' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraRandInfo, Seed3) == 0x000008, "Member 'FNiagaraRandInfo::Seed3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraInputConditionMetadata \ +static_assert(alignof(FNiagaraInputConditionMetadata) == 0x000008, "Wrong alignment on FNiagaraInputConditionMetadata"); \ +static_assert(sizeof(FNiagaraInputConditionMetadata) == 0x000018, "Wrong size on FNiagaraInputConditionMetadata"); \ +static_assert(offsetof(FNiagaraInputConditionMetadata, InputName) == 0x000000, "Member 'FNiagaraInputConditionMetadata::InputName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputConditionMetadata, TargetValues) == 0x000008, "Member 'FNiagaraInputConditionMetadata::TargetValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraEnumParameterMetaData \ +static_assert(alignof(FNiagaraEnumParameterMetaData) == 0x000008, "Wrong alignment on FNiagaraEnumParameterMetaData"); \ +static_assert(sizeof(FNiagaraEnumParameterMetaData) == 0x000028, "Wrong size on FNiagaraEnumParameterMetaData"); \ +static_assert(offsetof(FNiagaraEnumParameterMetaData, OverrideName) == 0x000000, "Member 'FNiagaraEnumParameterMetaData::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEnumParameterMetaData, IconOverride) == 0x000008, "Member 'FNiagaraEnumParameterMetaData::IconOverride' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEnumParameterMetaData, bUseColorOverride) == 0x000010, "Member 'FNiagaraEnumParameterMetaData::bUseColorOverride' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraEnumParameterMetaData, ColorOverride) == 0x000014, "Member 'FNiagaraEnumParameterMetaData::ColorOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetNamedInputValue \ +static_assert(alignof(FWidgetNamedInputValue) == 0x000008, "Wrong alignment on FWidgetNamedInputValue"); \ +static_assert(sizeof(FWidgetNamedInputValue) == 0x000038, "Wrong size on FWidgetNamedInputValue"); \ +static_assert(offsetof(FWidgetNamedInputValue, Value) == 0x000000, "Member 'FWidgetNamedInputValue::Value' has a wrong offset!"); \ +static_assert(offsetof(FWidgetNamedInputValue, DisplayName) == 0x000008, "Member 'FWidgetNamedInputValue::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FWidgetNamedInputValue, Tooltip) == 0x000020, "Member 'FWidgetNamedInputValue::Tooltip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraWidgetNamedIntegerInputValue \ +static_assert(alignof(FNiagaraWidgetNamedIntegerInputValue) == 0x000008, "Wrong alignment on FNiagaraWidgetNamedIntegerInputValue"); \ +static_assert(sizeof(FNiagaraWidgetNamedIntegerInputValue) == 0x000030, "Wrong size on FNiagaraWidgetNamedIntegerInputValue"); \ +static_assert(offsetof(FNiagaraWidgetNamedIntegerInputValue, DisplayName) == 0x000000, "Member 'FNiagaraWidgetNamedIntegerInputValue::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraWidgetNamedIntegerInputValue, Tooltip) == 0x000018, "Member 'FNiagaraWidgetNamedIntegerInputValue::Tooltip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraInputParameterCustomization \ +static_assert(alignof(FNiagaraInputParameterCustomization) == 0x000008, "Wrong alignment on FNiagaraInputParameterCustomization"); \ +static_assert(sizeof(FNiagaraInputParameterCustomization) == 0x000040, "Wrong size on FNiagaraInputParameterCustomization"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, WidgetType) == 0x000000, "Member 'FNiagaraInputParameterCustomization::WidgetType' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, bHasMinValue) == 0x000001, "Member 'FNiagaraInputParameterCustomization::bHasMinValue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, MinValue) == 0x000004, "Member 'FNiagaraInputParameterCustomization::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, bHasMaxValue) == 0x000008, "Member 'FNiagaraInputParameterCustomization::bHasMaxValue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, MaxValue) == 0x00000C, "Member 'FNiagaraInputParameterCustomization::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, bHasStepWidth) == 0x000010, "Member 'FNiagaraInputParameterCustomization::bHasStepWidth' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, StepWidth) == 0x000014, "Member 'FNiagaraInputParameterCustomization::StepWidth' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, InputDropdownValues) == 0x000018, "Member 'FNiagaraInputParameterCustomization::InputDropdownValues' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, EnumStyleDropdownValues) == 0x000028, "Member 'FNiagaraInputParameterCustomization::EnumStyleDropdownValues' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraInputParameterCustomization, bBroadcastValueChangesOnCommitOnly) == 0x000038, "Member 'FNiagaraInputParameterCustomization::bBroadcastValueChangesOnCommitOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraBoolParameterMetaData \ +static_assert(alignof(FNiagaraBoolParameterMetaData) == 0x000008, "Wrong alignment on FNiagaraBoolParameterMetaData"); \ +static_assert(sizeof(FNiagaraBoolParameterMetaData) == 0x000028, "Wrong size on FNiagaraBoolParameterMetaData"); \ +static_assert(offsetof(FNiagaraBoolParameterMetaData, DisplayMode) == 0x000000, "Member 'FNiagaraBoolParameterMetaData::DisplayMode' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoolParameterMetaData, OverrideNameTrue) == 0x000004, "Member 'FNiagaraBoolParameterMetaData::OverrideNameTrue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoolParameterMetaData, OverrideNameFalse) == 0x00000C, "Member 'FNiagaraBoolParameterMetaData::OverrideNameFalse' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoolParameterMetaData, IconOverrideTrue) == 0x000018, "Member 'FNiagaraBoolParameterMetaData::IconOverrideTrue' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraBoolParameterMetaData, IconOverrideFalse) == 0x000020, "Member 'FNiagaraBoolParameterMetaData::IconOverrideFalse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariableMetaData \ +static_assert(alignof(FNiagaraVariableMetaData) == 0x000008, "Wrong alignment on FNiagaraVariableMetaData"); \ +static_assert(sizeof(FNiagaraVariableMetaData) == 0x000188, "Wrong size on FNiagaraVariableMetaData"); \ +static_assert(offsetof(FNiagaraVariableMetaData, Description) == 0x000000, "Member 'FNiagaraVariableMetaData::Description' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, CategoryName) == 0x000018, "Member 'FNiagaraVariableMetaData::CategoryName' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, DisplayUnit) == 0x000030, "Member 'FNiagaraVariableMetaData::DisplayUnit' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bAdvancedDisplay) == 0x000031, "Member 'FNiagaraVariableMetaData::bAdvancedDisplay' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bDisplayInOverviewStack) == 0x000032, "Member 'FNiagaraVariableMetaData::bDisplayInOverviewStack' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, InlineParameterSortPriority) == 0x000034, "Member 'FNiagaraVariableMetaData::InlineParameterSortPriority' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bOverrideColor) == 0x000038, "Member 'FNiagaraVariableMetaData::bOverrideColor' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, InlineParameterColorOverride) == 0x00003C, "Member 'FNiagaraVariableMetaData::InlineParameterColorOverride' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, InlineParameterEnumOverrides) == 0x000050, "Member 'FNiagaraVariableMetaData::InlineParameterEnumOverrides' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bEnableBoolOverride) == 0x000060, "Member 'FNiagaraVariableMetaData::bEnableBoolOverride' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, InlineParameterBoolOverride) == 0x000068, "Member 'FNiagaraVariableMetaData::InlineParameterBoolOverride' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, EditorSortPriority) == 0x000090, "Member 'FNiagaraVariableMetaData::EditorSortPriority' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bInlineEditConditionToggle) == 0x000094, "Member 'FNiagaraVariableMetaData::bInlineEditConditionToggle' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, EditCondition) == 0x000098, "Member 'FNiagaraVariableMetaData::EditCondition' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, VisibleCondition) == 0x0000B0, "Member 'FNiagaraVariableMetaData::VisibleCondition' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, PropertyMetaData) == 0x0000C8, "Member 'FNiagaraVariableMetaData::PropertyMetaData' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, ParentAttribute) == 0x000118, "Member 'FNiagaraVariableMetaData::ParentAttribute' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, AlternateAliases) == 0x000120, "Member 'FNiagaraVariableMetaData::AlternateAliases' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, WidgetCustomization) == 0x000130, "Member 'FNiagaraVariableMetaData::WidgetCustomization' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, VariableGuid) == 0x000170, "Member 'FNiagaraVariableMetaData::VariableGuid' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, bIsStaticSwitch) == 0x000180, "Member 'FNiagaraVariableMetaData::bIsStaticSwitch' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariableMetaData, StaticSwitchDefaultValue) == 0x000184, "Member 'FNiagaraVariableMetaData::StaticSwitchDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraUserRedirectionParameterStore \ +static_assert(alignof(FNiagaraUserRedirectionParameterStore) == 0x000008, "Wrong alignment on FNiagaraUserRedirectionParameterStore"); \ +static_assert(sizeof(FNiagaraUserRedirectionParameterStore) == 0x0000D8, "Wrong size on FNiagaraUserRedirectionParameterStore"); \ +static_assert(offsetof(FNiagaraUserRedirectionParameterStore, UserParameterRedirects) == 0x000088, "Member 'FNiagaraUserRedirectionParameterStore::UserParameterRedirects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraVariant \ +static_assert(alignof(FNiagaraVariant) == 0x000008, "Wrong alignment on FNiagaraVariant"); \ +static_assert(sizeof(FNiagaraVariant) == 0x000028, "Wrong size on FNiagaraVariant"); \ +static_assert(offsetof(FNiagaraVariant, Object) == 0x000000, "Member 'FNiagaraVariant::Object' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariant, DataInterface) == 0x000008, "Member 'FNiagaraVariant::DataInterface' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariant, Bytes) == 0x000010, "Member 'FNiagaraVariant::Bytes' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraVariant, CurrentMode) == 0x000020, "Member 'FNiagaraVariant::CurrentMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraWorldManagerTickFunction \ +static_assert(alignof(FNiagaraWorldManagerTickFunction) == 0x000008, "Wrong alignment on FNiagaraWorldManagerTickFunction"); \ +static_assert(sizeof(FNiagaraWorldManagerTickFunction) == 0x000030, "Wrong size on FNiagaraWorldManagerTickFunction"); \ + +#define DUMPER7_ASSERTS_NiagaraActor_OnNiagaraSystemFinished \ +static_assert(alignof(NiagaraActor_OnNiagaraSystemFinished) == 0x000008, "Wrong alignment on NiagaraActor_OnNiagaraSystemFinished"); \ +static_assert(sizeof(NiagaraActor_OnNiagaraSystemFinished) == 0x000008, "Wrong size on NiagaraActor_OnNiagaraSystemFinished"); \ +static_assert(offsetof(NiagaraActor_OnNiagaraSystemFinished, FinishedComponent) == 0x000000, "Member 'NiagaraActor_OnNiagaraSystemFinished::FinishedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraActor_SetDestroyOnSystemFinish \ +static_assert(alignof(NiagaraActor_SetDestroyOnSystemFinish) == 0x000001, "Wrong alignment on NiagaraActor_SetDestroyOnSystemFinish"); \ +static_assert(sizeof(NiagaraActor_SetDestroyOnSystemFinish) == 0x000001, "Wrong size on NiagaraActor_SetDestroyOnSystemFinish"); \ +static_assert(offsetof(NiagaraActor_SetDestroyOnSystemFinish, bShouldDestroyOnSystemFinish) == 0x000000, "Member 'NiagaraActor_SetDestroyOnSystemFinish::bShouldDestroyOnSystemFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraActor_GetDestroyOnSystemFinish \ +static_assert(alignof(NiagaraActor_GetDestroyOnSystemFinish) == 0x000001, "Wrong alignment on NiagaraActor_GetDestroyOnSystemFinish"); \ +static_assert(sizeof(NiagaraActor_GetDestroyOnSystemFinish) == 0x000001, "Wrong size on NiagaraActor_GetDestroyOnSystemFinish"); \ +static_assert(offsetof(NiagaraActor_GetDestroyOnSystemFinish, ReturnValue) == 0x000000, "Member 'NiagaraActor_GetDestroyOnSystemFinish::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANiagaraActor \ +static_assert(alignof(ANiagaraActor) == 0x000008, "Wrong alignment on ANiagaraActor"); \ +static_assert(sizeof(ANiagaraActor) == 0x0002A8, "Wrong size on ANiagaraActor"); \ +static_assert(offsetof(ANiagaraActor, NiagaraComponent) == 0x000298, "Member 'ANiagaraActor::NiagaraComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANiagaraLensEffectBase \ +static_assert(alignof(ANiagaraLensEffectBase) == 0x000010, "Wrong alignment on ANiagaraLensEffectBase"); \ +static_assert(sizeof(ANiagaraLensEffectBase) == 0x000330, "Wrong size on ANiagaraLensEffectBase"); \ +static_assert(offsetof(ANiagaraLensEffectBase, DesiredRelativeTransform) == 0x0002B0, "Member 'ANiagaraLensEffectBase::DesiredRelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraLensEffectBase, BaseAuthoredFOV) == 0x000310, "Member 'ANiagaraLensEffectBase::BaseAuthoredFOV' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraLensEffectBase, EmittersToTreatAsSame) == 0x000318, "Member 'ANiagaraLensEffectBase::EmittersToTreatAsSame' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraLensEffectBase, OwningCameraManager) == 0x000328, "Member 'ANiagaraLensEffectBase::OwningCameraManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNDIRenderTargetVolumeSimCacheData \ +static_assert(alignof(UNDIRenderTargetVolumeSimCacheData) == 0x000008, "Wrong alignment on UNDIRenderTargetVolumeSimCacheData"); \ +static_assert(sizeof(UNDIRenderTargetVolumeSimCacheData) == 0x000040, "Wrong size on UNDIRenderTargetVolumeSimCacheData"); \ +static_assert(offsetof(UNDIRenderTargetVolumeSimCacheData, CompressionType) == 0x000028, "Member 'UNDIRenderTargetVolumeSimCacheData::CompressionType' has a wrong offset!"); \ +static_assert(offsetof(UNDIRenderTargetVolumeSimCacheData, Frames) == 0x000030, "Member 'UNDIRenderTargetVolumeSimCacheData::Frames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraConvertInPlaceUtilityBase \ +static_assert(alignof(UNiagaraConvertInPlaceUtilityBase) == 0x000008, "Wrong alignment on UNiagaraConvertInPlaceUtilityBase"); \ +static_assert(sizeof(UNiagaraConvertInPlaceUtilityBase) == 0x000028, "Wrong size on UNiagaraConvertInPlaceUtilityBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraSignificanceHandler \ +static_assert(alignof(UNiagaraSignificanceHandler) == 0x000008, "Wrong alignment on UNiagaraSignificanceHandler"); \ +static_assert(sizeof(UNiagaraSignificanceHandler) == 0x000028, "Wrong size on UNiagaraSignificanceHandler"); \ + +#define DUMPER7_ASSERTS_UNiagaraSignificanceHandlerAge \ +static_assert(alignof(UNiagaraSignificanceHandlerAge) == 0x000008, "Wrong alignment on UNiagaraSignificanceHandlerAge"); \ +static_assert(sizeof(UNiagaraSignificanceHandlerAge) == 0x000028, "Wrong size on UNiagaraSignificanceHandlerAge"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_InitAccess \ +static_assert(alignof(NiagaraDataChannelReader_InitAccess) == 0x000008, "Wrong alignment on NiagaraDataChannelReader_InitAccess"); \ +static_assert(sizeof(NiagaraDataChannelReader_InitAccess) == 0x000028, "Wrong size on NiagaraDataChannelReader_InitAccess"); \ +static_assert(offsetof(NiagaraDataChannelReader_InitAccess, SearchParams) == 0x000000, "Member 'NiagaraDataChannelReader_InitAccess::SearchParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_InitAccess, bReadPrevFrameData) == 0x000020, "Member 'NiagaraDataChannelReader_InitAccess::bReadPrevFrameData' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_InitAccess, ReturnValue) == 0x000021, "Member 'NiagaraDataChannelReader_InitAccess::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_Num \ +static_assert(alignof(NiagaraDataChannelReader_Num) == 0x000004, "Wrong alignment on NiagaraDataChannelReader_Num"); \ +static_assert(sizeof(NiagaraDataChannelReader_Num) == 0x000004, "Wrong size on NiagaraDataChannelReader_Num"); \ +static_assert(offsetof(NiagaraDataChannelReader_Num, ReturnValue) == 0x000000, "Member 'NiagaraDataChannelReader_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadBool \ +static_assert(alignof(NiagaraDataChannelReader_ReadBool) == 0x000004, "Wrong alignment on NiagaraDataChannelReader_ReadBool"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadBool) == 0x000010, "Wrong size on NiagaraDataChannelReader_ReadBool"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadBool, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadBool::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadBool, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadBool::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadBool, ReturnValue) == 0x00000C, "Member 'NiagaraDataChannelReader_ReadBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadFloat \ +static_assert(alignof(NiagaraDataChannelReader_ReadFloat) == 0x000008, "Wrong alignment on NiagaraDataChannelReader_ReadFloat"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadFloat) == 0x000018, "Wrong size on NiagaraDataChannelReader_ReadFloat"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadFloat, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadFloat::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadFloat, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadFloat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadFloat, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadInt \ +static_assert(alignof(NiagaraDataChannelReader_ReadInt) == 0x000004, "Wrong alignment on NiagaraDataChannelReader_ReadInt"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadInt) == 0x000010, "Wrong size on NiagaraDataChannelReader_ReadInt"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadInt, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadInt::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadInt, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadInt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadInt, ReturnValue) == 0x00000C, "Member 'NiagaraDataChannelReader_ReadInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadLinearColor \ +static_assert(alignof(NiagaraDataChannelReader_ReadLinearColor) == 0x000004, "Wrong alignment on NiagaraDataChannelReader_ReadLinearColor"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadLinearColor) == 0x00001C, "Wrong size on NiagaraDataChannelReader_ReadLinearColor"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadLinearColor, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadLinearColor::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadLinearColor, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadLinearColor::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadLinearColor, ReturnValue) == 0x00000C, "Member 'NiagaraDataChannelReader_ReadLinearColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadPosition \ +static_assert(alignof(NiagaraDataChannelReader_ReadPosition) == 0x000008, "Wrong alignment on NiagaraDataChannelReader_ReadPosition"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadPosition) == 0x000028, "Wrong size on NiagaraDataChannelReader_ReadPosition"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadPosition, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadPosition::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadPosition, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadPosition::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadPosition, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadQuat \ +static_assert(alignof(NiagaraDataChannelReader_ReadQuat) == 0x000010, "Wrong alignment on NiagaraDataChannelReader_ReadQuat"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadQuat) == 0x000030, "Wrong size on NiagaraDataChannelReader_ReadQuat"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadQuat, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadQuat::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadQuat, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadQuat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadQuat, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadVector \ +static_assert(alignof(NiagaraDataChannelReader_ReadVector) == 0x000008, "Wrong alignment on NiagaraDataChannelReader_ReadVector"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadVector) == 0x000028, "Wrong size on NiagaraDataChannelReader_ReadVector"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadVector::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadVector::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadVector2D \ +static_assert(alignof(NiagaraDataChannelReader_ReadVector2D) == 0x000008, "Wrong alignment on NiagaraDataChannelReader_ReadVector2D"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadVector2D) == 0x000020, "Wrong size on NiagaraDataChannelReader_ReadVector2D"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector2D, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadVector2D::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector2D, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadVector2D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector2D, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelReader_ReadVector4 \ +static_assert(alignof(NiagaraDataChannelReader_ReadVector4) == 0x000010, "Wrong alignment on NiagaraDataChannelReader_ReadVector4"); \ +static_assert(sizeof(NiagaraDataChannelReader_ReadVector4) == 0x000030, "Wrong size on NiagaraDataChannelReader_ReadVector4"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector4, VarName) == 0x000000, "Member 'NiagaraDataChannelReader_ReadVector4::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector4, Index_0) == 0x000008, "Member 'NiagaraDataChannelReader_ReadVector4::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelReader_ReadVector4, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelReader_ReadVector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelReader \ +static_assert(alignof(UNiagaraDataChannelReader) == 0x000008, "Wrong alignment on UNiagaraDataChannelReader"); \ +static_assert(sizeof(UNiagaraDataChannelReader) == 0x000048, "Wrong size on UNiagaraDataChannelReader"); \ +static_assert(offsetof(UNiagaraDataChannelReader, Owner) == 0x000040, "Member 'UNiagaraDataChannelReader::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_InitWrite \ +static_assert(alignof(NiagaraDataChannelWriter_InitWrite) == 0x000008, "Wrong alignment on NiagaraDataChannelWriter_InitWrite"); \ +static_assert(sizeof(NiagaraDataChannelWriter_InitWrite) == 0x000028, "Wrong size on NiagaraDataChannelWriter_InitWrite"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, SearchParams) == 0x000000, "Member 'NiagaraDataChannelWriter_InitWrite::SearchParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, Count) == 0x000020, "Member 'NiagaraDataChannelWriter_InitWrite::Count' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, bVisibleToGame) == 0x000024, "Member 'NiagaraDataChannelWriter_InitWrite::bVisibleToGame' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, bVisibleToCPU) == 0x000025, "Member 'NiagaraDataChannelWriter_InitWrite::bVisibleToCPU' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, bVisibleToGPU) == 0x000026, "Member 'NiagaraDataChannelWriter_InitWrite::bVisibleToGPU' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_InitWrite, ReturnValue) == 0x000027, "Member 'NiagaraDataChannelWriter_InitWrite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteBool \ +static_assert(alignof(NiagaraDataChannelWriter_WriteBool) == 0x000004, "Wrong alignment on NiagaraDataChannelWriter_WriteBool"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteBool) == 0x000010, "Wrong size on NiagaraDataChannelWriter_WriteBool"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteBool, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteBool::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteBool, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteBool::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteBool, InData) == 0x00000C, "Member 'NiagaraDataChannelWriter_WriteBool::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteFloat \ +static_assert(alignof(NiagaraDataChannelWriter_WriteFloat) == 0x000008, "Wrong alignment on NiagaraDataChannelWriter_WriteFloat"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteFloat) == 0x000018, "Wrong size on NiagaraDataChannelWriter_WriteFloat"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteFloat, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteFloat::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteFloat, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteFloat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteFloat, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WriteFloat::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteInt \ +static_assert(alignof(NiagaraDataChannelWriter_WriteInt) == 0x000004, "Wrong alignment on NiagaraDataChannelWriter_WriteInt"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteInt) == 0x000010, "Wrong size on NiagaraDataChannelWriter_WriteInt"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteInt, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteInt::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteInt, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteInt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteInt, InData) == 0x00000C, "Member 'NiagaraDataChannelWriter_WriteInt::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteLinearColor \ +static_assert(alignof(NiagaraDataChannelWriter_WriteLinearColor) == 0x000004, "Wrong alignment on NiagaraDataChannelWriter_WriteLinearColor"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteLinearColor) == 0x00001C, "Wrong size on NiagaraDataChannelWriter_WriteLinearColor"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteLinearColor, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteLinearColor::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteLinearColor, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteLinearColor::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteLinearColor, InData) == 0x00000C, "Member 'NiagaraDataChannelWriter_WriteLinearColor::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WritePosition \ +static_assert(alignof(NiagaraDataChannelWriter_WritePosition) == 0x000008, "Wrong alignment on NiagaraDataChannelWriter_WritePosition"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WritePosition) == 0x000028, "Wrong size on NiagaraDataChannelWriter_WritePosition"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WritePosition, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WritePosition::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WritePosition, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WritePosition::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WritePosition, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WritePosition::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteQuat \ +static_assert(alignof(NiagaraDataChannelWriter_WriteQuat) == 0x000010, "Wrong alignment on NiagaraDataChannelWriter_WriteQuat"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteQuat) == 0x000030, "Wrong size on NiagaraDataChannelWriter_WriteQuat"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteQuat, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteQuat::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteQuat, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteQuat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteQuat, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WriteQuat::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteSpawnInfo \ +static_assert(alignof(NiagaraDataChannelWriter_WriteSpawnInfo) == 0x000004, "Wrong alignment on NiagaraDataChannelWriter_WriteSpawnInfo"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteSpawnInfo) == 0x00001C, "Wrong size on NiagaraDataChannelWriter_WriteSpawnInfo"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteSpawnInfo, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteSpawnInfo::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteSpawnInfo, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteSpawnInfo::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteSpawnInfo, InData) == 0x00000C, "Member 'NiagaraDataChannelWriter_WriteSpawnInfo::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteVector \ +static_assert(alignof(NiagaraDataChannelWriter_WriteVector) == 0x000008, "Wrong alignment on NiagaraDataChannelWriter_WriteVector"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteVector) == 0x000028, "Wrong size on NiagaraDataChannelWriter_WriteVector"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteVector::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteVector::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WriteVector::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteVector2D \ +static_assert(alignof(NiagaraDataChannelWriter_WriteVector2D) == 0x000008, "Wrong alignment on NiagaraDataChannelWriter_WriteVector2D"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteVector2D) == 0x000020, "Wrong size on NiagaraDataChannelWriter_WriteVector2D"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector2D, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteVector2D::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector2D, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteVector2D::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector2D, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WriteVector2D::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_WriteVector4 \ +static_assert(alignof(NiagaraDataChannelWriter_WriteVector4) == 0x000010, "Wrong alignment on NiagaraDataChannelWriter_WriteVector4"); \ +static_assert(sizeof(NiagaraDataChannelWriter_WriteVector4) == 0x000030, "Wrong size on NiagaraDataChannelWriter_WriteVector4"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector4, VarName) == 0x000000, "Member 'NiagaraDataChannelWriter_WriteVector4::VarName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector4, Index_0) == 0x000008, "Member 'NiagaraDataChannelWriter_WriteVector4::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelWriter_WriteVector4, InData) == 0x000010, "Member 'NiagaraDataChannelWriter_WriteVector4::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelWriter_Num \ +static_assert(alignof(NiagaraDataChannelWriter_Num) == 0x000004, "Wrong alignment on NiagaraDataChannelWriter_Num"); \ +static_assert(sizeof(NiagaraDataChannelWriter_Num) == 0x000004, "Wrong size on NiagaraDataChannelWriter_Num"); \ +static_assert(offsetof(NiagaraDataChannelWriter_Num, ReturnValue) == 0x000000, "Member 'NiagaraDataChannelWriter_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelWriter \ +static_assert(alignof(UNiagaraDataChannelWriter) == 0x000008, "Wrong alignment on UNiagaraDataChannelWriter"); \ +static_assert(sizeof(UNiagaraDataChannelWriter) == 0x000040, "Wrong size on UNiagaraDataChannelWriter"); \ +static_assert(offsetof(UNiagaraDataChannelWriter, Owner) == 0x000038, "Member 'UNiagaraDataChannelWriter::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDebugHUDSettings \ +static_assert(alignof(UNiagaraDebugHUDSettings) == 0x000008, "Wrong alignment on UNiagaraDebugHUDSettings"); \ +static_assert(sizeof(UNiagaraDebugHUDSettings) == 0x000290, "Wrong size on UNiagaraDebugHUDSettings"); \ +static_assert(offsetof(UNiagaraDebugHUDSettings, Data) == 0x000048, "Member 'UNiagaraDebugHUDSettings::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelHandler_GetDataChannelReader \ +static_assert(alignof(NiagaraDataChannelHandler_GetDataChannelReader) == 0x000008, "Wrong alignment on NiagaraDataChannelHandler_GetDataChannelReader"); \ +static_assert(sizeof(NiagaraDataChannelHandler_GetDataChannelReader) == 0x000008, "Wrong size on NiagaraDataChannelHandler_GetDataChannelReader"); \ +static_assert(offsetof(NiagaraDataChannelHandler_GetDataChannelReader, ReturnValue) == 0x000000, "Member 'NiagaraDataChannelHandler_GetDataChannelReader::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelHandler_GetDataChannelWriter \ +static_assert(alignof(NiagaraDataChannelHandler_GetDataChannelWriter) == 0x000008, "Wrong alignment on NiagaraDataChannelHandler_GetDataChannelWriter"); \ +static_assert(sizeof(NiagaraDataChannelHandler_GetDataChannelWriter) == 0x000008, "Wrong size on NiagaraDataChannelHandler_GetDataChannelWriter"); \ +static_assert(offsetof(NiagaraDataChannelHandler_GetDataChannelWriter, ReturnValue) == 0x000000, "Member 'NiagaraDataChannelHandler_GetDataChannelWriter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelHandler \ +static_assert(alignof(UNiagaraDataChannelHandler) == 0x000008, "Wrong alignment on UNiagaraDataChannelHandler"); \ +static_assert(sizeof(UNiagaraDataChannelHandler) == 0x000040, "Wrong size on UNiagaraDataChannelHandler"); \ +static_assert(offsetof(UNiagaraDataChannelHandler, DataChannel) == 0x000028, "Member 'UNiagaraDataChannelHandler::DataChannel' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannelHandler, Writer) == 0x000030, "Member 'UNiagaraDataChannelHandler::Writer' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannelHandler, Reader) == 0x000038, "Member 'UNiagaraDataChannelHandler::Reader' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelAsset \ +static_assert(alignof(UNiagaraDataChannelAsset) == 0x000008, "Wrong alignment on UNiagaraDataChannelAsset"); \ +static_assert(sizeof(UNiagaraDataChannelAsset) == 0x000030, "Wrong size on UNiagaraDataChannelAsset"); \ +static_assert(offsetof(UNiagaraDataChannelAsset, DataChannel) == 0x000028, "Member 'UNiagaraDataChannelAsset::DataChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraEventReceiverEmitterAction \ +static_assert(alignof(UNiagaraEventReceiverEmitterAction) == 0x000008, "Wrong alignment on UNiagaraEventReceiverEmitterAction"); \ +static_assert(sizeof(UNiagaraEventReceiverEmitterAction) == 0x000028, "Wrong size on UNiagaraEventReceiverEmitterAction"); \ + +#define DUMPER7_ASSERTS_UNiagaraEventReceiverEmitterAction_SpawnParticles \ +static_assert(alignof(UNiagaraEventReceiverEmitterAction_SpawnParticles) == 0x000008, "Wrong alignment on UNiagaraEventReceiverEmitterAction_SpawnParticles"); \ +static_assert(sizeof(UNiagaraEventReceiverEmitterAction_SpawnParticles) == 0x000030, "Wrong size on UNiagaraEventReceiverEmitterAction_SpawnParticles"); \ +static_assert(offsetof(UNiagaraEventReceiverEmitterAction_SpawnParticles, NumParticles) == 0x000028, "Member 'UNiagaraEventReceiverEmitterAction_SpawnParticles::NumParticles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannel \ +static_assert(alignof(UNiagaraDataChannel) == 0x000008, "Wrong alignment on UNiagaraDataChannel"); \ +static_assert(sizeof(UNiagaraDataChannel) == 0x000130, "Wrong size on UNiagaraDataChannel"); \ +static_assert(offsetof(UNiagaraDataChannel, Variables) == 0x000028, "Member 'UNiagaraDataChannel::Variables' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel, bKeepPreviousFrameData) == 0x000038, "Member 'UNiagaraDataChannel::bKeepPreviousFrameData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel, CompiledData) == 0x000040, "Member 'UNiagaraDataChannel::CompiledData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel, CompiledDataGPU) == 0x000088, "Member 'UNiagaraDataChannel::CompiledDataGPU' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannel_Global \ +static_assert(alignof(UNiagaraDataChannel_Global) == 0x000008, "Wrong alignment on UNiagaraDataChannel_Global"); \ +static_assert(sizeof(UNiagaraDataChannel_Global) == 0x000130, "Wrong size on UNiagaraDataChannel_Global"); \ + +#define DUMPER7_ASSERTS_UNiagaraPrecompileContainer \ +static_assert(alignof(UNiagaraPrecompileContainer) == 0x000008, "Wrong alignment on UNiagaraPrecompileContainer"); \ +static_assert(sizeof(UNiagaraPrecompileContainer) == 0x000040, "Wrong size on UNiagaraPrecompileContainer"); \ +static_assert(offsetof(UNiagaraPrecompileContainer, Scripts) == 0x000028, "Member 'UNiagaraPrecompileContainer::Scripts' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPrecompileContainer, System) == 0x000038, "Member 'UNiagaraPrecompileContainer::System' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelHandler_Global \ +static_assert(alignof(UNiagaraDataChannelHandler_Global) == 0x000008, "Wrong alignment on UNiagaraDataChannelHandler_Global"); \ +static_assert(sizeof(UNiagaraDataChannelHandler_Global) == 0x000050, "Wrong size on UNiagaraDataChannelHandler_Global"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannel_Islands \ +static_assert(alignof(UNiagaraDataChannel_Islands) == 0x000008, "Wrong alignment on UNiagaraDataChannel_Islands"); \ +static_assert(sizeof(UNiagaraDataChannel_Islands) == 0x0001A8, "Wrong size on UNiagaraDataChannel_Islands"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, Mode) == 0x000130, "Member 'UNiagaraDataChannel_Islands::Mode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, InitialExtents) == 0x000138, "Member 'UNiagaraDataChannel_Islands::InitialExtents' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, MaxExtents) == 0x000150, "Member 'UNiagaraDataChannel_Islands::MaxExtents' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, PerElementExtents) == 0x000168, "Member 'UNiagaraDataChannel_Islands::PerElementExtents' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, Systems) == 0x000180, "Member 'UNiagaraDataChannel_Islands::Systems' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, IslandPoolSize) == 0x000190, "Member 'UNiagaraDataChannel_Islands::IslandPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, DebugDrawSettings) == 0x000194, "Member 'UNiagaraDataChannel_Islands::DebugDrawSettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannel_Islands, SystemsInternal) == 0x000198, "Member 'UNiagaraDataChannel_Islands::SystemsInternal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraRendererProperties \ +static_assert(alignof(UNiagaraRendererProperties) == 0x000008, "Wrong alignment on UNiagaraRendererProperties"); \ +static_assert(sizeof(UNiagaraRendererProperties) == 0x0000C0, "Wrong size on UNiagaraRendererProperties"); \ +static_assert(offsetof(UNiagaraRendererProperties, Platforms) == 0x000028, "Member 'UNiagaraRendererProperties::Platforms' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, SortOrderHint) == 0x000058, "Member 'UNiagaraRendererProperties::SortOrderHint' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, MotionVectorSetting) == 0x00005C, "Member 'UNiagaraRendererProperties::MotionVectorSetting' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, RendererEnabledBinding) == 0x000060, "Member 'UNiagaraRendererProperties::RendererEnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, bIsEnabled) == 0x000098, "Member 'UNiagaraRendererProperties::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, bAllowInCullProxies) == 0x000099, "Member 'UNiagaraRendererProperties::bAllowInCullProxies' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRendererProperties, OuterEmitterVersion) == 0x00009C, "Member 'UNiagaraRendererProperties::OuterEmitterVersion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraMeshRendererProperties \ +static_assert(alignof(UNiagaraMeshRendererProperties) == 0x000008, "Wrong alignment on UNiagaraMeshRendererProperties"); \ +static_assert(sizeof(UNiagaraMeshRendererProperties) == 0x000688, "Wrong size on UNiagaraMeshRendererProperties"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, Meshes) == 0x0000C0, "Member 'UNiagaraMeshRendererProperties::Meshes' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, SourceMode) == 0x0000D0, "Member 'UNiagaraMeshRendererProperties::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, SortMode) == 0x0000D1, "Member 'UNiagaraMeshRendererProperties::SortMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, SortPrecision) == 0x0000D2, "Member 'UNiagaraMeshRendererProperties::SortPrecision' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, GpuTranslucentLatency) == 0x0000D3, "Member 'UNiagaraMeshRendererProperties::GpuTranslucentLatency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, OverrideMaterials) == 0x0000D8, "Member 'UNiagaraMeshRendererProperties::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MICOverrideMaterials) == 0x0000E8, "Member 'UNiagaraMeshRendererProperties::MICOverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, SubImageSize) == 0x0000F8, "Member 'UNiagaraMeshRendererProperties::SubImageSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, LockedAxis) == 0x000108, "Member 'UNiagaraMeshRendererProperties::LockedAxis' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MeshBoundsScale) == 0x000120, "Member 'UNiagaraMeshRendererProperties::MeshBoundsScale' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, FacingMode) == 0x000138, "Member 'UNiagaraMeshRendererProperties::FacingMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, LockedAxisSpace) == 0x000139, "Member 'UNiagaraMeshRendererProperties::LockedAxisSpace' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MinCameraDistance) == 0x00013C, "Member 'UNiagaraMeshRendererProperties::MinCameraDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MaxCameraDistance) == 0x000140, "Member 'UNiagaraMeshRendererProperties::MaxCameraDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, RendererVisibility) == 0x000144, "Member 'UNiagaraMeshRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PositionBinding) == 0x000148, "Member 'UNiagaraMeshRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, ColorBinding) == 0x000180, "Member 'UNiagaraMeshRendererProperties::ColorBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, VelocityBinding) == 0x0001B8, "Member 'UNiagaraMeshRendererProperties::VelocityBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MeshOrientationBinding) == 0x0001F0, "Member 'UNiagaraMeshRendererProperties::MeshOrientationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, ScaleBinding) == 0x000228, "Member 'UNiagaraMeshRendererProperties::ScaleBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, SubImageIndexBinding) == 0x000260, "Member 'UNiagaraMeshRendererProperties::SubImageIndexBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, DynamicMaterialBinding) == 0x000298, "Member 'UNiagaraMeshRendererProperties::DynamicMaterialBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, DynamicMaterial1Binding) == 0x0002D0, "Member 'UNiagaraMeshRendererProperties::DynamicMaterial1Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, DynamicMaterial2Binding) == 0x000308, "Member 'UNiagaraMeshRendererProperties::DynamicMaterial2Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, DynamicMaterial3Binding) == 0x000340, "Member 'UNiagaraMeshRendererProperties::DynamicMaterial3Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MaterialRandomBinding) == 0x000378, "Member 'UNiagaraMeshRendererProperties::MaterialRandomBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, CustomSortingBinding) == 0x0003B0, "Member 'UNiagaraMeshRendererProperties::CustomSortingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, NormalizedAgeBinding) == 0x0003E8, "Member 'UNiagaraMeshRendererProperties::NormalizedAgeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, CameraOffsetBinding) == 0x000420, "Member 'UNiagaraMeshRendererProperties::CameraOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, RendererVisibilityTagBinding) == 0x000458, "Member 'UNiagaraMeshRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MeshIndexBinding) == 0x000490, "Member 'UNiagaraMeshRendererProperties::MeshIndexBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MaterialParameters) == 0x0004C8, "Member 'UNiagaraMeshRendererProperties::MaterialParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PrevPositionBinding) == 0x000518, "Member 'UNiagaraMeshRendererProperties::PrevPositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PrevScaleBinding) == 0x000550, "Member 'UNiagaraMeshRendererProperties::PrevScaleBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PrevMeshOrientationBinding) == 0x000588, "Member 'UNiagaraMeshRendererProperties::PrevMeshOrientationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PrevCameraOffsetBinding) == 0x0005C0, "Member 'UNiagaraMeshRendererProperties::PrevCameraOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, PrevVelocityBinding) == 0x0005F8, "Member 'UNiagaraMeshRendererProperties::PrevVelocityBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraMeshRendererProperties, MaterialParamValidMask) == 0x000630, "Member 'UNiagaraMeshRendererProperties::MaterialParamValidMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelHandler_Islands \ +static_assert(alignof(UNiagaraDataChannelHandler_Islands) == 0x000008, "Wrong alignment on UNiagaraDataChannelHandler_Islands"); \ +static_assert(sizeof(UNiagaraDataChannelHandler_Islands) == 0x000070, "Wrong size on UNiagaraDataChannelHandler_Islands"); \ +static_assert(offsetof(UNiagaraDataChannelHandler_Islands, ActiveIslands) == 0x000040, "Member 'UNiagaraDataChannelHandler_Islands::ActiveIslands' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannelHandler_Islands, FreeIslands) == 0x000050, "Member 'UNiagaraDataChannelHandler_Islands::FreeIslands' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataChannelHandler_Islands, IslandPool) == 0x000060, "Member 'UNiagaraDataChannelHandler_Islands::IslandPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterface \ +static_assert(alignof(UNiagaraDataInterface) == 0x000008, "Wrong alignment on UNiagaraDataInterface"); \ +static_assert(sizeof(UNiagaraDataInterface) == 0x000038, "Wrong size on UNiagaraDataInterface"); \ + +#define DUMPER7_ASSERTS_UNiagaraEmitter \ +static_assert(alignof(UNiagaraEmitter) == 0x000008, "Wrong alignment on UNiagaraEmitter"); \ +static_assert(sizeof(UNiagaraEmitter) == 0x000070, "Wrong size on UNiagaraEmitter"); \ +static_assert(offsetof(UNiagaraEmitter, ExposedVersion) == 0x000030, "Member 'UNiagaraEmitter::ExposedVersion' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEmitter, bVersioningEnabled) == 0x000040, "Member 'UNiagaraEmitter::bVersioningEnabled' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEmitter, VersionData) == 0x000048, "Member 'UNiagaraEmitter::VersionData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEmitter, UniqueEmitterName) == 0x000060, "Member 'UNiagaraEmitter::UniqueEmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRWBase \ +static_assert(alignof(UNiagaraDataInterfaceRWBase) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRWBase"); \ +static_assert(sizeof(UNiagaraDataInterfaceRWBase) == 0x000038, "Wrong size on UNiagaraDataInterfaceRWBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceDataChannelRead \ +static_assert(alignof(UNiagaraDataInterfaceDataChannelRead) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceDataChannelRead"); \ +static_assert(sizeof(UNiagaraDataInterfaceDataChannelRead) == 0x0000C0, "Wrong size on UNiagaraDataInterfaceDataChannelRead"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, Channel) == 0x000038, "Member 'UNiagaraDataInterfaceDataChannelRead::Channel' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, EmitterBinding) == 0x000040, "Member 'UNiagaraDataInterfaceDataChannelRead::EmitterBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, bReadCurrentFrame) == 0x00004C, "Member 'UNiagaraDataInterfaceDataChannelRead::bReadCurrentFrame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, bUpdateSourceDataEveryTick) == 0x00004D, "Member 'UNiagaraDataInterfaceDataChannelRead::bUpdateSourceDataEveryTick' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, bOverrideSpawnGroupToDataChannelIndex) == 0x00004E, "Member 'UNiagaraDataInterfaceDataChannelRead::bOverrideSpawnGroupToDataChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, SpawnInfoName) == 0x000050, "Member 'UNiagaraDataInterfaceDataChannelRead::SpawnInfoName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelRead, CompiledData) == 0x000058, "Member 'UNiagaraDataInterfaceDataChannelRead::CompiledData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceDataChannelWrite \ +static_assert(alignof(UNiagaraDataInterfaceDataChannelWrite) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceDataChannelWrite"); \ +static_assert(sizeof(UNiagaraDataInterfaceDataChannelWrite) == 0x000100, "Wrong size on UNiagaraDataInterfaceDataChannelWrite"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, AllocationMode) == 0x000038, "Member 'UNiagaraDataInterfaceDataChannelWrite::AllocationMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, AllocationCount) == 0x00003C, "Member 'UNiagaraDataInterfaceDataChannelWrite::AllocationCount' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, bPublishToGame) == 0x000040, "Member 'UNiagaraDataInterfaceDataChannelWrite::bPublishToGame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, bPublishToCPU) == 0x000041, "Member 'UNiagaraDataInterfaceDataChannelWrite::bPublishToCPU' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, bPublishToGPU) == 0x000042, "Member 'UNiagaraDataInterfaceDataChannelWrite::bPublishToGPU' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, bUpdateDestinationDataEveryTick) == 0x000043, "Member 'UNiagaraDataInterfaceDataChannelWrite::bUpdateDestinationDataEveryTick' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, Channel) == 0x000048, "Member 'UNiagaraDataInterfaceDataChannelWrite::Channel' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDataChannelWrite, CompiledData) == 0x000050, "Member 'UNiagaraDataInterfaceDataChannelWrite::CompiledData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraMessageDataBase \ +static_assert(alignof(UNiagaraMessageDataBase) == 0x000008, "Wrong alignment on UNiagaraMessageDataBase"); \ +static_assert(sizeof(UNiagaraMessageDataBase) == 0x000028, "Wrong size on UNiagaraMessageDataBase"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewAxis_ApplyToPreview \ +static_assert(alignof(NiagaraPreviewAxis_ApplyToPreview) == 0x000008, "Wrong alignment on NiagaraPreviewAxis_ApplyToPreview"); \ +static_assert(sizeof(NiagaraPreviewAxis_ApplyToPreview) == 0x000020, "Wrong size on NiagaraPreviewAxis_ApplyToPreview"); \ +static_assert(offsetof(NiagaraPreviewAxis_ApplyToPreview, PreviewComponent) == 0x000000, "Member 'NiagaraPreviewAxis_ApplyToPreview::PreviewComponent' has a wrong offset!"); \ +static_assert(offsetof(NiagaraPreviewAxis_ApplyToPreview, PreviewIndex) == 0x000008, "Member 'NiagaraPreviewAxis_ApplyToPreview::PreviewIndex' has a wrong offset!"); \ +static_assert(offsetof(NiagaraPreviewAxis_ApplyToPreview, bIsXAxis) == 0x00000C, "Member 'NiagaraPreviewAxis_ApplyToPreview::bIsXAxis' has a wrong offset!"); \ +static_assert(offsetof(NiagaraPreviewAxis_ApplyToPreview, OutLabelText) == 0x000010, "Member 'NiagaraPreviewAxis_ApplyToPreview::OutLabelText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewAxis_Num \ +static_assert(alignof(NiagaraPreviewAxis_Num) == 0x000004, "Wrong alignment on NiagaraPreviewAxis_Num"); \ +static_assert(sizeof(NiagaraPreviewAxis_Num) == 0x000004, "Wrong size on NiagaraPreviewAxis_Num"); \ +static_assert(offsetof(NiagaraPreviewAxis_Num, ReturnValue) == 0x000000, "Member 'NiagaraPreviewAxis_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis \ +static_assert(alignof(UNiagaraPreviewAxis) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis"); \ +static_assert(sizeof(UNiagaraPreviewAxis) == 0x000028, "Wrong size on UNiagaraPreviewAxis"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamBase \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamBase) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamBase"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamBase) == 0x000038, "Wrong size on UNiagaraPreviewAxis_InterpParamBase"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamBase, Param) == 0x000028, "Member 'UNiagaraPreviewAxis_InterpParamBase::Param' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamBase, Count) == 0x000030, "Member 'UNiagaraPreviewAxis_InterpParamBase::Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamVector4 \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamVector4) == 0x000010, "Wrong alignment on UNiagaraPreviewAxis_InterpParamVector4"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamVector4) == 0x000080, "Wrong size on UNiagaraPreviewAxis_InterpParamVector4"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector4, Min) == 0x000040, "Member 'UNiagaraPreviewAxis_InterpParamVector4::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector4, Max) == 0x000060, "Member 'UNiagaraPreviewAxis_InterpParamVector4::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraParameterDefinitionsBase \ +static_assert(alignof(UNiagaraParameterDefinitionsBase) == 0x000008, "Wrong alignment on UNiagaraParameterDefinitionsBase"); \ +static_assert(sizeof(UNiagaraParameterDefinitionsBase) == 0x000028, "Wrong size on UNiagaraParameterDefinitionsBase"); \ + +#define DUMPER7_ASSERTS_INiagaraRenderableMeshInterface \ +static_assert(alignof(INiagaraRenderableMeshInterface) == 0x000001, "Wrong alignment on INiagaraRenderableMeshInterface"); \ +static_assert(sizeof(INiagaraRenderableMeshInterface) == 0x000001, "Wrong size on INiagaraRenderableMeshInterface"); \ + +#define DUMPER7_ASSERTS_UNiagaraScriptSourceBase \ +static_assert(alignof(UNiagaraScriptSourceBase) == 0x000008, "Wrong alignment on UNiagaraScriptSourceBase"); \ +static_assert(sizeof(UNiagaraScriptSourceBase) == 0x000048, "Wrong size on UNiagaraScriptSourceBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraSettings \ +static_assert(alignof(UNiagaraSettings) == 0x000008, "Wrong alignment on UNiagaraSettings"); \ +static_assert(sizeof(UNiagaraSettings) == 0x000140, "Wrong size on UNiagaraSettings"); \ +static_assert(offsetof(UNiagaraSettings, bSystemsSupportLargeWorldCoordinates) == 0x000038, "Member 'UNiagaraSettings::bSystemsSupportLargeWorldCoordinates' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, bEnforceStrictStackTypes) == 0x000039, "Member 'UNiagaraSettings::bEnforceStrictStackTypes' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, bExperimentalVMEnabled) == 0x00003A, "Member 'UNiagaraSettings::bExperimentalVMEnabled' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, bLimitDeltaTime) == 0x00003B, "Member 'UNiagaraSettings::bLimitDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, MaxDeltaTimePerTick) == 0x00003C, "Member 'UNiagaraSettings::MaxDeltaTimePerTick' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultEffectType) == 0x000040, "Member 'UNiagaraSettings::DefaultEffectType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, RequiredEffectType) == 0x000060, "Member 'UNiagaraSettings::RequiredEffectType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, PositionPinTypeColor) == 0x000080, "Member 'UNiagaraSettings::PositionPinTypeColor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, QualityLevels) == 0x000090, "Member 'UNiagaraSettings::QualityLevels' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, ComponentRendererWarningsPerClass) == 0x0000A0, "Member 'UNiagaraSettings::ComponentRendererWarningsPerClass' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultRenderTargetFormat) == 0x0000F0, "Member 'UNiagaraSettings::DefaultRenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultGridFormat) == 0x0000F1, "Member 'UNiagaraSettings::DefaultGridFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultRendererMotionVectorSetting) == 0x0000F4, "Member 'UNiagaraSettings::DefaultRendererMotionVectorSetting' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultPixelCoverageMode) == 0x0000F8, "Member 'UNiagaraSettings::DefaultPixelCoverageMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultSortPrecision) == 0x0000F9, "Member 'UNiagaraSettings::DefaultSortPrecision' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultGpuTranslucentLatency) == 0x0000FA, "Member 'UNiagaraSettings::DefaultGpuTranslucentLatency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, DefaultLightInverseExposureBlend) == 0x0000FC, "Member 'UNiagaraSettings::DefaultLightInverseExposureBlend' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, NDISkelMesh_GpuMaxInfluences) == 0x000100, "Member 'UNiagaraSettings::NDISkelMesh_GpuMaxInfluences' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, NDISkelMesh_GpuUniformSamplingFormat) == 0x000101, "Member 'UNiagaraSettings::NDISkelMesh_GpuUniformSamplingFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, NDISkelMesh_AdjacencyTriangleIndexFormat) == 0x000102, "Member 'UNiagaraSettings::NDISkelMesh_AdjacencyTriangleIndexFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, NDIStaticMesh_AllowDistanceFields) == 0x000103, "Member 'UNiagaraSettings::NDIStaticMesh_AllowDistanceFields' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, NDICollisionQuery_AsyncGpuTraceProviderOrder) == 0x000108, "Member 'UNiagaraSettings::NDICollisionQuery_AsyncGpuTraceProviderOrder' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, SimCacheAuxiliaryFileBasePath) == 0x000118, "Member 'UNiagaraSettings::SimCacheAuxiliaryFileBasePath' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, SimCacheMaxCPUMemoryVolumetrics) == 0x000128, "Member 'UNiagaraSettings::SimCacheMaxCPUMemoryVolumetrics' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSettings, PlatformSetRedirects) == 0x000130, "Member 'UNiagaraSettings::PlatformSetRedirects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INiagaraSimCacheCustomStorageInterface \ +static_assert(alignof(INiagaraSimCacheCustomStorageInterface) == 0x000001, "Wrong alignment on INiagaraSimCacheCustomStorageInterface"); \ +static_assert(sizeof(INiagaraSimCacheCustomStorageInterface) == 0x000001, "Wrong size on INiagaraSimCacheCustomStorageInterface"); \ + +#define DUMPER7_ASSERTS_UNiagaraValidationRuleSet \ +static_assert(alignof(UNiagaraValidationRuleSet) == 0x000008, "Wrong alignment on UNiagaraValidationRuleSet"); \ +static_assert(sizeof(UNiagaraValidationRuleSet) == 0x000038, "Wrong size on UNiagaraValidationRuleSet"); \ +static_assert(offsetof(UNiagaraValidationRuleSet, ValidationRules) == 0x000028, "Member 'UNiagaraValidationRuleSet::ValidationRules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamVector2D \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamVector2D) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamVector2D"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamVector2D) == 0x000058, "Wrong size on UNiagaraPreviewAxis_InterpParamVector2D"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector2D, Min) == 0x000038, "Member 'UNiagaraPreviewAxis_InterpParamVector2D::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector2D, Max) == 0x000048, "Member 'UNiagaraPreviewAxis_InterpParamVector2D::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceActorComponent \ +static_assert(alignof(UNiagaraDataInterfaceActorComponent) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceActorComponent"); \ +static_assert(sizeof(UNiagaraDataInterfaceActorComponent) == 0x000080, "Wrong size on UNiagaraDataInterfaceActorComponent"); \ +static_assert(offsetof(UNiagaraDataInterfaceActorComponent, SourceMode) == 0x000038, "Member 'UNiagaraDataInterfaceActorComponent::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceActorComponent, LocalPlayerIndex) == 0x00003C, "Member 'UNiagaraDataInterfaceActorComponent::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceActorComponent, SourceActor) == 0x000040, "Member 'UNiagaraDataInterfaceActorComponent::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceActorComponent, ActorOrComponentParameter) == 0x000058, "Member 'UNiagaraDataInterfaceActorComponent::ActorOrComponentParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceActorComponent, bRequireCurrentFrameData) == 0x000078, "Member 'UNiagaraDataInterfaceActorComponent::bRequireCurrentFrameData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAsyncGpuTrace \ +static_assert(alignof(UNiagaraDataInterfaceAsyncGpuTrace) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAsyncGpuTrace"); \ +static_assert(sizeof(UNiagaraDataInterfaceAsyncGpuTrace) == 0x000048, "Wrong size on UNiagaraDataInterfaceAsyncGpuTrace"); \ +static_assert(offsetof(UNiagaraDataInterfaceAsyncGpuTrace, MaxTracesPerParticle) == 0x000038, "Member 'UNiagaraDataInterfaceAsyncGpuTrace::MaxTracesPerParticle' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAsyncGpuTrace, MaxRetraces) == 0x00003C, "Member 'UNiagaraDataInterfaceAsyncGpuTrace::MaxRetraces' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAsyncGpuTrace, TraceProvider) == 0x000040, "Member 'UNiagaraDataInterfaceAsyncGpuTrace::TraceProvider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate \ +static_assert(alignof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate) == 0x000008, "Wrong alignment on NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate"); \ +static_assert(sizeof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate) == 0x000080, "Wrong size on NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, SimCache) == 0x000000, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::SimCache' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, CreateParameters) == 0x000008, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::CreateParameters' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, NiagaraComponent) == 0x000060, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, OutSimCache) == 0x000068, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::OutSimCache' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, bAdvanceSimulation) == 0x000070, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::bAdvanceSimulation' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, AdvanceDeltaTime) == 0x000074, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::AdvanceDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate, ReturnValue) == 0x000078, "Member 'NiagaraSimCacheFunctionLibrary_CaptureNiagaraSimCacheImmediate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache \ +static_assert(alignof(NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache) == 0x000008, "Wrong alignment on NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache"); \ +static_assert(sizeof(NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache) == 0x000010, "Wrong size on NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache, WorldContextObject) == 0x000000, "Member 'NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache, ReturnValue) == 0x000008, "Member 'NiagaraSimCacheFunctionLibrary_CreateNiagaraSimCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraSimCacheFunctionLibrary \ +static_assert(alignof(UNiagaraSimCacheFunctionLibrary) == 0x000008, "Wrong alignment on UNiagaraSimCacheFunctionLibrary"); \ +static_assert(sizeof(UNiagaraSimCacheFunctionLibrary) == 0x000028, "Wrong size on UNiagaraSimCacheFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceDebugDraw \ +static_assert(alignof(UNiagaraDataInterfaceDebugDraw) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceDebugDraw"); \ +static_assert(sizeof(UNiagaraDataInterfaceDebugDraw) == 0x000040, "Wrong size on UNiagaraDataInterfaceDebugDraw"); \ +static_assert(offsetof(UNiagaraDataInterfaceDebugDraw, OverrideMaxLineInstances) == 0x000038, "Member 'UNiagaraDataInterfaceDebugDraw::OverrideMaxLineInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceDynamicMesh \ +static_assert(alignof(UNiagaraDataInterfaceDynamicMesh) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceDynamicMesh"); \ +static_assert(sizeof(UNiagaraDataInterfaceDynamicMesh) == 0x0000A8, "Wrong size on UNiagaraDataInterfaceDynamicMesh"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, Sections) == 0x000040, "Member 'UNiagaraDataInterfaceDynamicMesh::Sections' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, Materials) == 0x000050, "Member 'UNiagaraDataInterfaceDynamicMesh::Materials' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, NumVertices) == 0x000060, "Member 'UNiagaraDataInterfaceDynamicMesh::NumVertices' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, NumTexCoords) == 0x000064, "Member 'UNiagaraDataInterfaceDynamicMesh::NumTexCoords' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, bHasColors) == 0x000068, "Member 'UNiagaraDataInterfaceDynamicMesh::bHasColors' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, bHasTangentBasis) == 0x000069, "Member 'UNiagaraDataInterfaceDynamicMesh::bHasTangentBasis' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, bClearTrianglesPerFrame) == 0x00006A, "Member 'UNiagaraDataInterfaceDynamicMesh::bClearTrianglesPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceDynamicMesh, DefaultBounds) == 0x000070, "Member 'UNiagaraDataInterfaceDynamicMesh::DefaultBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewGrid_ActivatePreviews \ +static_assert(alignof(NiagaraPreviewGrid_ActivatePreviews) == 0x000001, "Wrong alignment on NiagaraPreviewGrid_ActivatePreviews"); \ +static_assert(sizeof(NiagaraPreviewGrid_ActivatePreviews) == 0x000001, "Wrong size on NiagaraPreviewGrid_ActivatePreviews"); \ +static_assert(offsetof(NiagaraPreviewGrid_ActivatePreviews, bReset) == 0x000000, "Member 'NiagaraPreviewGrid_ActivatePreviews::bReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewGrid_GetPreviews \ +static_assert(alignof(NiagaraPreviewGrid_GetPreviews) == 0x000008, "Wrong alignment on NiagaraPreviewGrid_GetPreviews"); \ +static_assert(sizeof(NiagaraPreviewGrid_GetPreviews) == 0x000010, "Wrong size on NiagaraPreviewGrid_GetPreviews"); \ +static_assert(offsetof(NiagaraPreviewGrid_GetPreviews, OutPreviews) == 0x000000, "Member 'NiagaraPreviewGrid_GetPreviews::OutPreviews' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewGrid_SetPaused \ +static_assert(alignof(NiagaraPreviewGrid_SetPaused) == 0x000001, "Wrong alignment on NiagaraPreviewGrid_SetPaused"); \ +static_assert(sizeof(NiagaraPreviewGrid_SetPaused) == 0x000001, "Wrong size on NiagaraPreviewGrid_SetPaused"); \ +static_assert(offsetof(NiagaraPreviewGrid_SetPaused, bPaused) == 0x000000, "Member 'NiagaraPreviewGrid_SetPaused::bPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANiagaraPreviewGrid \ +static_assert(alignof(ANiagaraPreviewGrid) == 0x000008, "Wrong alignment on ANiagaraPreviewGrid"); \ +static_assert(sizeof(ANiagaraPreviewGrid) == 0x0002E8, "Wrong size on ANiagaraPreviewGrid"); \ +static_assert(offsetof(ANiagaraPreviewGrid, System) == 0x000298, "Member 'ANiagaraPreviewGrid::System' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, ResetMode) == 0x0002A0, "Member 'ANiagaraPreviewGrid::ResetMode' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, PreviewAxisX) == 0x0002A8, "Member 'ANiagaraPreviewGrid::PreviewAxisX' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, PreviewAxisY) == 0x0002B0, "Member 'ANiagaraPreviewGrid::PreviewAxisY' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, PreviewClass) == 0x0002B8, "Member 'ANiagaraPreviewGrid::PreviewClass' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, SpacingX) == 0x0002C0, "Member 'ANiagaraPreviewGrid::SpacingX' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, SpacingY) == 0x0002C4, "Member 'ANiagaraPreviewGrid::SpacingY' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, NumX) == 0x0002C8, "Member 'ANiagaraPreviewGrid::NumX' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, NumY) == 0x0002CC, "Member 'ANiagaraPreviewGrid::NumY' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPreviewGrid, PreviewComponents) == 0x0002D0, "Member 'ANiagaraPreviewGrid::PreviewComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceEmitterProperties \ +static_assert(alignof(UNiagaraDataInterfaceEmitterProperties) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceEmitterProperties"); \ +static_assert(sizeof(UNiagaraDataInterfaceEmitterProperties) == 0x000048, "Wrong size on UNiagaraDataInterfaceEmitterProperties"); \ +static_assert(offsetof(UNiagaraDataInterfaceEmitterProperties, EmitterBinding) == 0x000038, "Member 'UNiagaraDataInterfaceEmitterProperties::EmitterBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGBuffer \ +static_assert(alignof(UNiagaraDataInterfaceGBuffer) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGBuffer"); \ +static_assert(sizeof(UNiagaraDataInterfaceGBuffer) == 0x000038, "Wrong size on UNiagaraDataInterfaceGBuffer"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamInt32 \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamInt32) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamInt32"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamInt32) == 0x000040, "Wrong size on UNiagaraPreviewAxis_InterpParamInt32"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamInt32, Min) == 0x000038, "Member 'UNiagaraPreviewAxis_InterpParamInt32::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamInt32, Max) == 0x00003C, "Member 'UNiagaraPreviewAxis_InterpParamInt32::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfacePhysicsAsset \ +static_assert(alignof(UNiagaraDataInterfacePhysicsAsset) == 0x000008, "Wrong alignment on UNiagaraDataInterfacePhysicsAsset"); \ +static_assert(sizeof(UNiagaraDataInterfacePhysicsAsset) == 0x0000A8, "Wrong size on UNiagaraDataInterfacePhysicsAsset"); \ +static_assert(offsetof(UNiagaraDataInterfacePhysicsAsset, DefaultSource) == 0x000038, "Member 'UNiagaraDataInterfacePhysicsAsset::DefaultSource' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfacePhysicsAsset, SoftSourceActor) == 0x000040, "Member 'UNiagaraDataInterfacePhysicsAsset::SoftSourceActor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfacePhysicsAsset, MeshUserParameter) == 0x000068, "Member 'UNiagaraDataInterfacePhysicsAsset::MeshUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INiagaraPhysicsAssetDICollectorInterface \ +static_assert(alignof(INiagaraPhysicsAssetDICollectorInterface) == 0x000001, "Wrong alignment on INiagaraPhysicsAssetDICollectorInterface"); \ +static_assert(sizeof(INiagaraPhysicsAssetDICollectorInterface) == 0x000001, "Wrong size on INiagaraPhysicsAssetDICollectorInterface"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetAttributeCaptureMode \ +static_assert(alignof(NiagaraSimCache_GetAttributeCaptureMode) == 0x000001, "Wrong alignment on NiagaraSimCache_GetAttributeCaptureMode"); \ +static_assert(sizeof(NiagaraSimCache_GetAttributeCaptureMode) == 0x000001, "Wrong size on NiagaraSimCache_GetAttributeCaptureMode"); \ +static_assert(offsetof(NiagaraSimCache_GetAttributeCaptureMode, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_GetAttributeCaptureMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetEmitterName \ +static_assert(alignof(NiagaraSimCache_GetEmitterName) == 0x000004, "Wrong alignment on NiagaraSimCache_GetEmitterName"); \ +static_assert(sizeof(NiagaraSimCache_GetEmitterName) == 0x00000C, "Wrong size on NiagaraSimCache_GetEmitterName"); \ +static_assert(offsetof(NiagaraSimCache_GetEmitterName, EmitterIndex) == 0x000000, "Member 'NiagaraSimCache_GetEmitterName::EmitterIndex' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_GetEmitterName, ReturnValue) == 0x000004, "Member 'NiagaraSimCache_GetEmitterName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetEmitterNames \ +static_assert(alignof(NiagaraSimCache_GetEmitterNames) == 0x000008, "Wrong alignment on NiagaraSimCache_GetEmitterNames"); \ +static_assert(sizeof(NiagaraSimCache_GetEmitterNames) == 0x000010, "Wrong size on NiagaraSimCache_GetEmitterNames"); \ +static_assert(offsetof(NiagaraSimCache_GetEmitterNames, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_GetEmitterNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetNumEmitters \ +static_assert(alignof(NiagaraSimCache_GetNumEmitters) == 0x000004, "Wrong alignment on NiagaraSimCache_GetNumEmitters"); \ +static_assert(sizeof(NiagaraSimCache_GetNumEmitters) == 0x000004, "Wrong size on NiagaraSimCache_GetNumEmitters"); \ +static_assert(offsetof(NiagaraSimCache_GetNumEmitters, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_GetNumEmitters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetNumFrames \ +static_assert(alignof(NiagaraSimCache_GetNumFrames) == 0x000004, "Wrong alignment on NiagaraSimCache_GetNumFrames"); \ +static_assert(sizeof(NiagaraSimCache_GetNumFrames) == 0x000004, "Wrong size on NiagaraSimCache_GetNumFrames"); \ +static_assert(offsetof(NiagaraSimCache_GetNumFrames, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_GetNumFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_GetStartSeconds \ +static_assert(alignof(NiagaraSimCache_GetStartSeconds) == 0x000004, "Wrong alignment on NiagaraSimCache_GetStartSeconds"); \ +static_assert(sizeof(NiagaraSimCache_GetStartSeconds) == 0x000004, "Wrong size on NiagaraSimCache_GetStartSeconds"); \ +static_assert(offsetof(NiagaraSimCache_GetStartSeconds, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_GetStartSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_IsCacheValid \ +static_assert(alignof(NiagaraSimCache_IsCacheValid) == 0x000001, "Wrong alignment on NiagaraSimCache_IsCacheValid"); \ +static_assert(sizeof(NiagaraSimCache_IsCacheValid) == 0x000001, "Wrong size on NiagaraSimCache_IsCacheValid"); \ +static_assert(offsetof(NiagaraSimCache_IsCacheValid, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_IsCacheValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_IsEmpty \ +static_assert(alignof(NiagaraSimCache_IsEmpty) == 0x000001, "Wrong alignment on NiagaraSimCache_IsEmpty"); \ +static_assert(sizeof(NiagaraSimCache_IsEmpty) == 0x000001, "Wrong size on NiagaraSimCache_IsEmpty"); \ +static_assert(offsetof(NiagaraSimCache_IsEmpty, ReturnValue) == 0x000000, "Member 'NiagaraSimCache_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadColorAttribute \ +static_assert(alignof(NiagaraSimCache_ReadColorAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadColorAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadColorAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadColorAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadColorAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadColorAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadColorAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadColorAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadColorAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadColorAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadColorAttribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadColorAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadFloatAttribute \ +static_assert(alignof(NiagaraSimCache_ReadFloatAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadFloatAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadFloatAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadFloatAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadFloatAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadFloatAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadFloatAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadFloatAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadFloatAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadFloatAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadFloatAttribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadFloatAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadIDAttribute \ +static_assert(alignof(NiagaraSimCache_ReadIDAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadIDAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadIDAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadIDAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadIDAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadIDAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIDAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadIDAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIDAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadIDAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIDAttribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadIDAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadIntAttribute \ +static_assert(alignof(NiagaraSimCache_ReadIntAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadIntAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadIntAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadIntAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadIntAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadIntAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIntAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadIntAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIntAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadIntAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadIntAttribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadIntAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadPositionAttribute \ +static_assert(alignof(NiagaraSimCache_ReadPositionAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadPositionAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadPositionAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadPositionAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadPositionAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadPositionAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadPositionAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttribute, bLocalSpaceToWorld) == 0x000020, "Member 'NiagaraSimCache_ReadPositionAttribute::bLocalSpaceToWorld' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttribute, FrameIndex) == 0x000024, "Member 'NiagaraSimCache_ReadPositionAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadPositionAttributeWithRebase \ +static_assert(alignof(NiagaraSimCache_ReadPositionAttributeWithRebase) == 0x000010, "Wrong alignment on NiagaraSimCache_ReadPositionAttributeWithRebase"); \ +static_assert(sizeof(NiagaraSimCache_ReadPositionAttributeWithRebase) == 0x000090, "Wrong size on NiagaraSimCache_ReadPositionAttributeWithRebase"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttributeWithRebase, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadPositionAttributeWithRebase::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttributeWithRebase, Transform) == 0x000010, "Member 'NiagaraSimCache_ReadPositionAttributeWithRebase::Transform' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttributeWithRebase, AttributeName) == 0x000070, "Member 'NiagaraSimCache_ReadPositionAttributeWithRebase::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttributeWithRebase, EmitterName) == 0x000078, "Member 'NiagaraSimCache_ReadPositionAttributeWithRebase::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadPositionAttributeWithRebase, FrameIndex) == 0x000080, "Member 'NiagaraSimCache_ReadPositionAttributeWithRebase::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadQuatAttribute \ +static_assert(alignof(NiagaraSimCache_ReadQuatAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadQuatAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadQuatAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadQuatAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadQuatAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadQuatAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadQuatAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttribute, bLocalSpaceToWorld) == 0x000020, "Member 'NiagaraSimCache_ReadQuatAttribute::bLocalSpaceToWorld' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttribute, FrameIndex) == 0x000024, "Member 'NiagaraSimCache_ReadQuatAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadQuatAttributeWithRebase \ +static_assert(alignof(NiagaraSimCache_ReadQuatAttributeWithRebase) == 0x000010, "Wrong alignment on NiagaraSimCache_ReadQuatAttributeWithRebase"); \ +static_assert(sizeof(NiagaraSimCache_ReadQuatAttributeWithRebase) == 0x000050, "Wrong size on NiagaraSimCache_ReadQuatAttributeWithRebase"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttributeWithRebase, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadQuatAttributeWithRebase::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttributeWithRebase, Quat) == 0x000010, "Member 'NiagaraSimCache_ReadQuatAttributeWithRebase::Quat' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttributeWithRebase, AttributeName) == 0x000030, "Member 'NiagaraSimCache_ReadQuatAttributeWithRebase::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttributeWithRebase, EmitterName) == 0x000038, "Member 'NiagaraSimCache_ReadQuatAttributeWithRebase::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadQuatAttributeWithRebase, FrameIndex) == 0x000040, "Member 'NiagaraSimCache_ReadQuatAttributeWithRebase::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadVector2Attribute \ +static_assert(alignof(NiagaraSimCache_ReadVector2Attribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadVector2Attribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadVector2Attribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadVector2Attribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector2Attribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadVector2Attribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector2Attribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadVector2Attribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector2Attribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadVector2Attribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector2Attribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadVector2Attribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadVector4Attribute \ +static_assert(alignof(NiagaraSimCache_ReadVector4Attribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadVector4Attribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadVector4Attribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadVector4Attribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector4Attribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadVector4Attribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector4Attribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadVector4Attribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector4Attribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadVector4Attribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVector4Attribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadVector4Attribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraSimCache_ReadVectorAttribute \ +static_assert(alignof(NiagaraSimCache_ReadVectorAttribute) == 0x000008, "Wrong alignment on NiagaraSimCache_ReadVectorAttribute"); \ +static_assert(sizeof(NiagaraSimCache_ReadVectorAttribute) == 0x000028, "Wrong size on NiagaraSimCache_ReadVectorAttribute"); \ +static_assert(offsetof(NiagaraSimCache_ReadVectorAttribute, OutValues) == 0x000000, "Member 'NiagaraSimCache_ReadVectorAttribute::OutValues' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVectorAttribute, AttributeName) == 0x000010, "Member 'NiagaraSimCache_ReadVectorAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVectorAttribute, EmitterName) == 0x000018, "Member 'NiagaraSimCache_ReadVectorAttribute::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraSimCache_ReadVectorAttribute, FrameIndex) == 0x000020, "Member 'NiagaraSimCache_ReadVectorAttribute::FrameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraSimCache \ +static_assert(alignof(UNiagaraSimCache) == 0x000008, "Wrong alignment on UNiagaraSimCache"); \ +static_assert(sizeof(UNiagaraSimCache) == 0x0001F8, "Wrong size on UNiagaraSimCache"); \ +static_assert(offsetof(UNiagaraSimCache, CacheGuid) == 0x000028, "Member 'UNiagaraSimCache::CacheGuid' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, SoftNiagaraSystem) == 0x000038, "Member 'UNiagaraSimCache::SoftNiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, StartSeconds) == 0x000060, "Member 'UNiagaraSimCache::StartSeconds' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, DurationSeconds) == 0x000064, "Member 'UNiagaraSimCache::DurationSeconds' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, CreateParameters) == 0x000068, "Member 'UNiagaraSimCache::CreateParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, bNeedsReadComponentMappingRecache) == 0x0000C0, "Member 'UNiagaraSimCache::bNeedsReadComponentMappingRecache' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, CacheLayout) == 0x0000C8, "Member 'UNiagaraSimCache::CacheLayout' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, CacheFrames) == 0x000190, "Member 'UNiagaraSimCache::CacheFrames' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimCache, DataInterfaceStorage) == 0x0001A0, "Member 'UNiagaraSimCache::DataInterfaceStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors \ +static_assert(alignof(NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors) == 0x000008, "Wrong alignment on NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors"); \ +static_assert(sizeof(NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors) == 0x000020, "Wrong size on NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors"); \ +static_assert(offsetof(NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors, ParameterName) == 0x000008, "Member 'NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors, ShowOnlyActors) == 0x000010, "Member 'NiagaraDataInterfaceSceneCapture2D_SetSceneCapture2DManagedShowOnlyActors::ShowOnlyActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSceneCapture2D \ +static_assert(alignof(UNiagaraDataInterfaceSceneCapture2D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSceneCapture2D"); \ +static_assert(sizeof(UNiagaraDataInterfaceSceneCapture2D) == 0x000128, "Wrong size on UNiagaraDataInterfaceSceneCapture2D"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, SourceMode) == 0x000038, "Member 'UNiagaraDataInterfaceSceneCapture2D::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, SceneCaptureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceSceneCapture2D::SceneCaptureUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, bAutoMoveWithComponent) == 0x000060, "Member 'UNiagaraDataInterfaceSceneCapture2D::bAutoMoveWithComponent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, AutoMoveOffsetLocationMode) == 0x000061, "Member 'UNiagaraDataInterfaceSceneCapture2D::AutoMoveOffsetLocationMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, AutoMoveOffsetLocation) == 0x000068, "Member 'UNiagaraDataInterfaceSceneCapture2D::AutoMoveOffsetLocation' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, AutoMoveOffsetRotationMode) == 0x000080, "Member 'UNiagaraDataInterfaceSceneCapture2D::AutoMoveOffsetRotationMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, AutoMoveOffsetRotation) == 0x000088, "Member 'UNiagaraDataInterfaceSceneCapture2D::AutoMoveOffsetRotation' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedCaptureSource) == 0x0000A0, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedCaptureSource' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedTextureSize) == 0x0000A4, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedTextureSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedTextureFormat) == 0x0000AC, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedTextureFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedProjectionType) == 0x0000AD, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedProjectionType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedFOVAngle) == 0x0000B0, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedFOVAngle' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedOrthoWidth) == 0x0000B4, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedOrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, bManagedCaptureEveryFrame) == 0x0000B8, "Member 'UNiagaraDataInterfaceSceneCapture2D::bManagedCaptureEveryFrame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, bManagedCaptureOnMovement) == 0x0000B9, "Member 'UNiagaraDataInterfaceSceneCapture2D::bManagedCaptureOnMovement' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedShowOnlyActors) == 0x0000C0, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedShowOnlyActors' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSceneCapture2D, ManagedCaptureComponents) == 0x0000D8, "Member 'UNiagaraDataInterfaceSceneCapture2D::ManagedCaptureComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSimCacheReader \ +static_assert(alignof(UNiagaraDataInterfaceSimCacheReader) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSimCacheReader"); \ +static_assert(sizeof(UNiagaraDataInterfaceSimCacheReader) == 0x000068, "Wrong size on UNiagaraDataInterfaceSimCacheReader"); \ +static_assert(offsetof(UNiagaraDataInterfaceSimCacheReader, SimCacheBinding) == 0x000038, "Member 'UNiagaraDataInterfaceSimCacheReader::SimCacheBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSimCacheReader, SimCache) == 0x000058, "Member 'UNiagaraDataInterfaceSimCacheReader::SimCache' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSimCacheReader, EmitterBinding) == 0x000060, "Member 'UNiagaraDataInterfaceSimCacheReader::EmitterBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSimpleCounter \ +static_assert(alignof(UNiagaraDataInterfaceSimpleCounter) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSimpleCounter"); \ +static_assert(sizeof(UNiagaraDataInterfaceSimpleCounter) == 0x000040, "Wrong size on UNiagaraDataInterfaceSimpleCounter"); \ +static_assert(offsetof(UNiagaraDataInterfaceSimpleCounter, GpuSyncMode) == 0x000038, "Member 'UNiagaraDataInterfaceSimpleCounter::GpuSyncMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSimpleCounter, InitialValue) == 0x00003C, "Member 'UNiagaraDataInterfaceSimpleCounter::InitialValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex \ +static_assert(alignof(NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex) == 0x000008, "Wrong alignment on NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex"); \ +static_assert(sizeof(NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex) == 0x000018, "Wrong size on NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex"); \ +static_assert(offsetof(NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex, UserParameterName) == 0x000008, "Member 'NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex::UserParameterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex, NewInstanceIndex) == 0x000010, "Member 'NiagaraDataInterfaceStaticMesh_SetNiagaraStaticMeshDIInstanceIndex::NewInstanceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceStaticMesh_OnSourceEndPlay \ +static_assert(alignof(NiagaraDataInterfaceStaticMesh_OnSourceEndPlay) == 0x000008, "Wrong alignment on NiagaraDataInterfaceStaticMesh_OnSourceEndPlay"); \ +static_assert(sizeof(NiagaraDataInterfaceStaticMesh_OnSourceEndPlay) == 0x000010, "Wrong size on NiagaraDataInterfaceStaticMesh_OnSourceEndPlay"); \ +static_assert(offsetof(NiagaraDataInterfaceStaticMesh_OnSourceEndPlay, InSource) == 0x000000, "Member 'NiagaraDataInterfaceStaticMesh_OnSourceEndPlay::InSource' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceStaticMesh_OnSourceEndPlay, Reason) == 0x000008, "Member 'NiagaraDataInterfaceStaticMesh_OnSourceEndPlay::Reason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceStaticMesh \ +static_assert(alignof(UNiagaraDataInterfaceStaticMesh) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceStaticMesh"); \ +static_assert(sizeof(UNiagaraDataInterfaceStaticMesh) == 0x0000D0, "Wrong size on UNiagaraDataInterfaceStaticMesh"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, SourceMode) == 0x000038, "Member 'UNiagaraDataInterfaceStaticMesh::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, DefaultMesh) == 0x000040, "Member 'UNiagaraDataInterfaceStaticMesh::DefaultMesh' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, SoftSourceActor) == 0x000048, "Member 'UNiagaraDataInterfaceStaticMesh::SoftSourceActor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, SourceComponent) == 0x000070, "Member 'UNiagaraDataInterfaceStaticMesh::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, SectionFilter) == 0x000078, "Member 'UNiagaraDataInterfaceStaticMesh::SectionFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, bCaptureTransformsPerFrame) == 0x000088, "Member 'UNiagaraDataInterfaceStaticMesh::bCaptureTransformsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, bUsePhysicsBodyVelocity) == 0x000089, "Member 'UNiagaraDataInterfaceStaticMesh::bUsePhysicsBodyVelocity' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, bAllowSamplingFromStreamingLODs) == 0x00008A, "Member 'UNiagaraDataInterfaceStaticMesh::bAllowSamplingFromStreamingLODs' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, LODIndex) == 0x00008C, "Member 'UNiagaraDataInterfaceStaticMesh::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, LODIndexUserParameter) == 0x000090, "Member 'UNiagaraDataInterfaceStaticMesh::LODIndexUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, InstanceIndex) == 0x0000B0, "Member 'UNiagaraDataInterfaceStaticMesh::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceStaticMesh, FilteredSockets) == 0x0000B8, "Member 'UNiagaraDataInterfaceStaticMesh::FilteredSockets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraSimulationStageBase \ +static_assert(alignof(UNiagaraSimulationStageBase) == 0x000008, "Wrong alignment on UNiagaraSimulationStageBase"); \ +static_assert(sizeof(UNiagaraSimulationStageBase) == 0x000040, "Wrong size on UNiagaraSimulationStageBase"); \ +static_assert(offsetof(UNiagaraSimulationStageBase, Script) == 0x000028, "Member 'UNiagaraSimulationStageBase::Script' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageBase, SimulationStageName) == 0x000030, "Member 'UNiagaraSimulationStageBase::SimulationStageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraSimulationStageGeneric \ +static_assert(alignof(UNiagaraSimulationStageGeneric) == 0x000008, "Wrong alignment on UNiagaraSimulationStageGeneric"); \ +static_assert(sizeof(UNiagaraSimulationStageGeneric) == 0x0001E0, "Wrong size on UNiagaraSimulationStageGeneric"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, EnabledBinding) == 0x000040, "Member 'UNiagaraSimulationStageGeneric::EnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, IterationSource) == 0x000078, "Member 'UNiagaraSimulationStageGeneric::IterationSource' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, NumIterations) == 0x000080, "Member 'UNiagaraSimulationStageGeneric::NumIterations' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ExecuteBehavior) == 0x0000A0, "Member 'UNiagaraSimulationStageGeneric::ExecuteBehavior' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, DataInterface) == 0x0000A8, "Member 'UNiagaraSimulationStageGeneric::DataInterface' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ParticleIterationStateBinding) == 0x0000D0, "Member 'UNiagaraSimulationStageGeneric::ParticleIterationStateBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ParticleIterationStateRange) == 0x000108, "Member 'UNiagaraSimulationStageGeneric::ParticleIterationStateRange' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, OverrideGpuDispatchNumThreadsX) == 0x000118, "Member 'UNiagaraSimulationStageGeneric::OverrideGpuDispatchNumThreadsX' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, OverrideGpuDispatchNumThreadsY) == 0x000138, "Member 'UNiagaraSimulationStageGeneric::OverrideGpuDispatchNumThreadsY' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, OverrideGpuDispatchNumThreadsZ) == 0x000158, "Member 'UNiagaraSimulationStageGeneric::OverrideGpuDispatchNumThreadsZ' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, DirectDispatchType) == 0x000178, "Member 'UNiagaraSimulationStageGeneric::DirectDispatchType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, DirectDispatchElementType) == 0x000179, "Member 'UNiagaraSimulationStageGeneric::DirectDispatchElementType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ElementCountX) == 0x000180, "Member 'UNiagaraSimulationStageGeneric::ElementCountX' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ElementCountY) == 0x0001A0, "Member 'UNiagaraSimulationStageGeneric::ElementCountY' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSimulationStageGeneric, ElementCountZ) == 0x0001C0, "Member 'UNiagaraSimulationStageGeneric::ElementCountZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap \ +static_assert(alignof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap) == 0x000008, "Wrong alignment on NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap"); \ +static_assert(sizeof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap) == 0x000020, "Wrong size on NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap"); \ +static_assert(offsetof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap, NiagaraComponent) == 0x000000, "Member 'NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap, UserParameterName) == 0x000008, "Member 'NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap::UserParameterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap, GraphName) == 0x000010, "Member 'NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap::GraphName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap, RemapName) == 0x000018, "Member 'NiagaraDataInterfaceUObjectPropertyReader_SetUObjectReaderPropertyRemap::RemapName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceUObjectPropertyReader \ +static_assert(alignof(UNiagaraDataInterfaceUObjectPropertyReader) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceUObjectPropertyReader"); \ +static_assert(sizeof(UNiagaraDataInterfaceUObjectPropertyReader) == 0x0000A8, "Wrong size on UNiagaraDataInterfaceUObjectPropertyReader"); \ +static_assert(offsetof(UNiagaraDataInterfaceUObjectPropertyReader, SourceMode) == 0x000038, "Member 'UNiagaraDataInterfaceUObjectPropertyReader::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceUObjectPropertyReader, UObjectParameterBinding) == 0x000040, "Member 'UNiagaraDataInterfaceUObjectPropertyReader::UObjectParameterBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceUObjectPropertyReader, PropertyRemap) == 0x000060, "Member 'UNiagaraDataInterfaceUObjectPropertyReader::PropertyRemap' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceUObjectPropertyReader, SourceActor) == 0x000070, "Member 'UNiagaraDataInterfaceUObjectPropertyReader::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceUObjectPropertyReader, SourceActorComponentClass) == 0x000098, "Member 'UNiagaraDataInterfaceUObjectPropertyReader::SourceActorComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVirtualTexture \ +static_assert(alignof(UNiagaraDataInterfaceVirtualTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVirtualTexture"); \ +static_assert(sizeof(UNiagaraDataInterfaceVirtualTexture) == 0x000060, "Wrong size on UNiagaraDataInterfaceVirtualTexture"); \ +static_assert(offsetof(UNiagaraDataInterfaceVirtualTexture, Texture) == 0x000038, "Member 'UNiagaraDataInterfaceVirtualTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVirtualTexture, TextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceVirtualTexture::TextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraScratchPadContainer \ +static_assert(alignof(UNiagaraScratchPadContainer) == 0x000008, "Wrong alignment on UNiagaraScratchPadContainer"); \ +static_assert(sizeof(UNiagaraScratchPadContainer) == 0x000028, "Wrong size on UNiagaraScratchPadContainer"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraSystemSpawnSection \ +static_assert(alignof(UMovieSceneNiagaraSystemSpawnSection) == 0x000008, "Wrong alignment on UMovieSceneNiagaraSystemSpawnSection"); \ +static_assert(sizeof(UMovieSceneNiagaraSystemSpawnSection) == 0x000100, "Wrong size on UMovieSceneNiagaraSystemSpawnSection"); \ +static_assert(offsetof(UMovieSceneNiagaraSystemSpawnSection, SectionStartBehavior) == 0x0000F0, "Member 'UMovieSceneNiagaraSystemSpawnSection::SectionStartBehavior' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneNiagaraSystemSpawnSection, SectionEvaluateBehavior) == 0x0000F4, "Member 'UMovieSceneNiagaraSystemSpawnSection::SectionEvaluateBehavior' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneNiagaraSystemSpawnSection, SectionEndBehavior) == 0x0000F8, "Member 'UMovieSceneNiagaraSystemSpawnSection::SectionEndBehavior' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneNiagaraSystemSpawnSection, AgeUpdateMode) == 0x0000FC, "Member 'UMovieSceneNiagaraSystemSpawnSection::AgeUpdateMode' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneNiagaraSystemSpawnSection, bAllowScalability) == 0x0000FD, "Member 'UMovieSceneNiagaraSystemSpawnSection::bAllowScalability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraTrack \ +static_assert(alignof(UMovieSceneNiagaraTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraTrack) == 0x0000A8, "Wrong size on UMovieSceneNiagaraTrack"); \ +static_assert(offsetof(UMovieSceneNiagaraTrack, Sections) == 0x000098, "Member 'UMovieSceneNiagaraTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraVolumeRendererProperties \ +static_assert(alignof(UNiagaraVolumeRendererProperties) == 0x000008, "Wrong alignment on UNiagaraVolumeRendererProperties"); \ +static_assert(sizeof(UNiagaraVolumeRendererProperties) == 0x0002B8, "Wrong size on UNiagaraVolumeRendererProperties"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, Material) == 0x0000C0, "Member 'UNiagaraVolumeRendererProperties::Material' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, MaterialParameterBinding) == 0x0000C8, "Member 'UNiagaraVolumeRendererProperties::MaterialParameterBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, RendererVisibility) == 0x0000D8, "Member 'UNiagaraVolumeRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, StepFactor) == 0x0000DC, "Member 'UNiagaraVolumeRendererProperties::StepFactor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, LightingDownsampleFactor) == 0x0000E0, "Member 'UNiagaraVolumeRendererProperties::LightingDownsampleFactor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, ShadowStepFactor) == 0x0000E4, "Member 'UNiagaraVolumeRendererProperties::ShadowStepFactor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, ShadowBiasFactor) == 0x0000E8, "Member 'UNiagaraVolumeRendererProperties::ShadowBiasFactor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, RendererVisibilityTagBinding) == 0x000198, "Member 'UNiagaraVolumeRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, VolumeResolutionMaxAxisBinding) == 0x0001D0, "Member 'UNiagaraVolumeRendererProperties::VolumeResolutionMaxAxisBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, VolumeWorldSpaceSizeBinding) == 0x000208, "Member 'UNiagaraVolumeRendererProperties::VolumeWorldSpaceSizeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraVolumeRendererProperties, MaterialParameters) == 0x000240, "Member 'UNiagaraVolumeRendererProperties::MaterialParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraSystemTrack \ +static_assert(alignof(UMovieSceneNiagaraSystemTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraSystemTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraSystemTrack) == 0x0000B0, "Wrong size on UMovieSceneNiagaraSystemTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraParameterTrack) == 0x0000C8, "Wrong size on UMovieSceneNiagaraParameterTrack"); \ +static_assert(offsetof(UMovieSceneNiagaraParameterTrack, Parameter) == 0x0000A8, "Member 'UMovieSceneNiagaraParameterTrack::Parameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraBoolParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraBoolParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraBoolParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraBoolParameterTrack) == 0x0000D0, "Wrong size on UMovieSceneNiagaraBoolParameterTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraColorParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraColorParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraColorParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraColorParameterTrack) == 0x0000D0, "Wrong size on UMovieSceneNiagaraColorParameterTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraFloatParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraFloatParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraFloatParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraFloatParameterTrack) == 0x0000D0, "Wrong size on UMovieSceneNiagaraFloatParameterTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraIntegerParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraIntegerParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraIntegerParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraIntegerParameterTrack) == 0x0000D0, "Wrong size on UMovieSceneNiagaraIntegerParameterTrack"); \ + +#define DUMPER7_ASSERTS_UNiagaraSystem \ +static_assert(alignof(UNiagaraSystem) == 0x000008, "Wrong alignment on UNiagaraSystem"); \ +static_assert(sizeof(UNiagaraSystem) == 0x0004F0, "Wrong size on UNiagaraSystem"); \ +static_assert(offsetof(UNiagaraSystem, CustomDepthStencilWriteMask) == 0x00004A, "Member 'UNiagaraSystem::CustomDepthStencilWriteMask' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, CustomDepthStencilValue) == 0x00004C, "Member 'UNiagaraSystem::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, TranslucencySortPriority) == 0x000050, "Member 'UNiagaraSystem::TranslucencySortPriority' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, TranslucencySortDistanceOffset) == 0x000054, "Member 'UNiagaraSystem::TranslucencySortDistanceOffset' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bDumpDebugSystemInfo) == 0x000058, "Member 'UNiagaraSystem::bDumpDebugSystemInfo' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bDumpDebugEmitterInfo) == 0x000059, "Member 'UNiagaraSystem::bDumpDebugEmitterInfo' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bRequireCurrentFrameData) == 0x00005B, "Member 'UNiagaraSystem::bRequireCurrentFrameData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, EffectType) == 0x000060, "Member 'UNiagaraSystem::EffectType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bOverrideScalabilitySettings) == 0x000068, "Member 'UNiagaraSystem::bOverrideScalabilitySettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, SystemScalabilityOverrides) == 0x000070, "Member 'UNiagaraSystem::SystemScalabilityOverrides' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, EmitterHandles) == 0x000080, "Member 'UNiagaraSystem::EmitterHandles' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, ParameterCollectionOverrides) == 0x000090, "Member 'UNiagaraSystem::ParameterCollectionOverrides' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, SystemSpawnScript) == 0x0000A0, "Member 'UNiagaraSystem::SystemSpawnScript' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, SystemUpdateScript) == 0x0000A8, "Member 'UNiagaraSystem::SystemUpdateScript' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, SystemCompiledData) == 0x0000C0, "Member 'UNiagaraSystem::SystemCompiledData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, ExposedParameters) == 0x000300, "Member 'UNiagaraSystem::ExposedParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, FixedBounds) == 0x0003D8, "Member 'UNiagaraSystem::FixedBounds' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bAutoDeactivate) == 0x000410, "Member 'UNiagaraSystem::bAutoDeactivate' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bDeterminism) == 0x000411, "Member 'UNiagaraSystem::bDeterminism' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, RandomSeed) == 0x000414, "Member 'UNiagaraSystem::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, WarmupTime) == 0x000418, "Member 'UNiagaraSystem::WarmupTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, WarmupTickCount) == 0x00041C, "Member 'UNiagaraSystem::WarmupTickCount' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, WarmupTickDelta) == 0x000420, "Member 'UNiagaraSystem::WarmupTickDelta' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bFixedTickDelta) == 0x000424, "Member 'UNiagaraSystem::bFixedTickDelta' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, FixedTickDeltaTime) == 0x000428, "Member 'UNiagaraSystem::FixedTickDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSystem, bNeedsGPUContextInitForDataInterfaces) == 0x00042C, "Member 'UNiagaraSystem::bNeedsGPUContextInitForDataInterfaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneNiagaraVectorParameterTrack \ +static_assert(alignof(UMovieSceneNiagaraVectorParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneNiagaraVectorParameterTrack"); \ +static_assert(sizeof(UMovieSceneNiagaraVectorParameterTrack) == 0x0000D8, "Wrong size on UMovieSceneNiagaraVectorParameterTrack"); \ +static_assert(offsetof(UMovieSceneNiagaraVectorParameterTrack, ChannelsUsed) == 0x0000D0, "Member 'UMovieSceneNiagaraVectorParameterTrack::ChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRenderTargetVolume \ +static_assert(alignof(UNiagaraDataInterfaceRenderTargetVolume) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRenderTargetVolume"); \ +static_assert(sizeof(UNiagaraDataInterfaceRenderTargetVolume) == 0x000070, "Wrong size on UNiagaraDataInterfaceRenderTargetVolume"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetVolume, Size) == 0x000040, "Member 'UNiagaraDataInterfaceRenderTargetVolume::Size' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetVolume, OverrideRenderTargetFormat) == 0x00004C, "Member 'UNiagaraDataInterfaceRenderTargetVolume::OverrideRenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetVolume, OverrideRenderTargetFilter) == 0x00004D, "Member 'UNiagaraDataInterfaceRenderTargetVolume::OverrideRenderTargetFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetVolume, RenderTargetUserParameter) == 0x000050, "Member 'UNiagaraDataInterfaceRenderTargetVolume::RenderTargetUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBakerOutput \ +static_assert(alignof(UNiagaraBakerOutput) == 0x000008, "Wrong alignment on UNiagaraBakerOutput"); \ +static_assert(sizeof(UNiagaraBakerOutput) == 0x000038, "Wrong size on UNiagaraBakerOutput"); \ +static_assert(offsetof(UNiagaraBakerOutput, OutputName) == 0x000028, "Member 'UNiagaraBakerOutput::OutputName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBakerOutputSimCache \ +static_assert(alignof(UNiagaraBakerOutputSimCache) == 0x000008, "Wrong alignment on UNiagaraBakerOutputSimCache"); \ +static_assert(sizeof(UNiagaraBakerOutputSimCache) == 0x0000A0, "Wrong size on UNiagaraBakerOutputSimCache"); \ +static_assert(offsetof(UNiagaraBakerOutputSimCache, SimCacheAssetPathFormat) == 0x000038, "Member 'UNiagaraBakerOutputSimCache::SimCacheAssetPathFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputSimCache, CreateParameters) == 0x000048, "Member 'UNiagaraBakerOutputSimCache::CreateParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBakerOutputTexture2D \ +static_assert(alignof(UNiagaraBakerOutputTexture2D) == 0x000008, "Wrong alignment on UNiagaraBakerOutputTexture2D"); \ +static_assert(sizeof(UNiagaraBakerOutputTexture2D) == 0x0000A0, "Wrong size on UNiagaraBakerOutputTexture2D"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, SourceBinding) == 0x000038, "Member 'UNiagaraBakerOutputTexture2D::SourceBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, FrameSize) == 0x000054, "Member 'UNiagaraBakerOutputTexture2D::FrameSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, AtlasTextureSize) == 0x00005C, "Member 'UNiagaraBakerOutputTexture2D::AtlasTextureSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, TextureAddressX) == 0x00006C, "Member 'UNiagaraBakerOutputTexture2D::TextureAddressX' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, TextureAddressY) == 0x00006D, "Member 'UNiagaraBakerOutputTexture2D::TextureAddressY' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, AtlasAssetPathFormat) == 0x000070, "Member 'UNiagaraBakerOutputTexture2D::AtlasAssetPathFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, FramesAssetPathFormat) == 0x000080, "Member 'UNiagaraBakerOutputTexture2D::FramesAssetPathFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputTexture2D, FramesExportPathFormat) == 0x000090, "Member 'UNiagaraBakerOutputTexture2D::FramesExportPathFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBakerOutputVolumeTexture \ +static_assert(alignof(UNiagaraBakerOutputVolumeTexture) == 0x000008, "Wrong alignment on UNiagaraBakerOutputVolumeTexture"); \ +static_assert(sizeof(UNiagaraBakerOutputVolumeTexture) == 0x000088, "Wrong size on UNiagaraBakerOutputVolumeTexture"); \ +static_assert(offsetof(UNiagaraBakerOutputVolumeTexture, SourceBinding) == 0x000038, "Member 'UNiagaraBakerOutputVolumeTexture::SourceBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputVolumeTexture, AtlasAssetPathFormat) == 0x000058, "Member 'UNiagaraBakerOutputVolumeTexture::AtlasAssetPathFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputVolumeTexture, FramesAssetPathFormat) == 0x000068, "Member 'UNiagaraBakerOutputVolumeTexture::FramesAssetPathFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerOutputVolumeTexture, FramesExportPathFormat) == 0x000078, "Member 'UNiagaraBakerOutputVolumeTexture::FramesExportPathFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSparseVolumeTexture \ +static_assert(alignof(UNiagaraDataInterfaceSparseVolumeTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSparseVolumeTexture"); \ +static_assert(sizeof(UNiagaraDataInterfaceSparseVolumeTexture) == 0x000060, "Wrong size on UNiagaraDataInterfaceSparseVolumeTexture"); \ +static_assert(offsetof(UNiagaraDataInterfaceSparseVolumeTexture, SparseVolumeTexture) == 0x000038, "Member 'UNiagaraDataInterfaceSparseVolumeTexture::SparseVolumeTexture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSparseVolumeTexture, SparseVolumeTextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceSparseVolumeTexture::SparseVolumeTextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBakerSettings \ +static_assert(alignof(UNiagaraBakerSettings) == 0x000008, "Wrong alignment on UNiagaraBakerSettings"); \ +static_assert(sizeof(UNiagaraBakerSettings) == 0x0001F0, "Wrong size on UNiagaraBakerSettings"); \ +static_assert(offsetof(UNiagaraBakerSettings, StartSeconds) == 0x000028, "Member 'UNiagaraBakerSettings::StartSeconds' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, DurationSeconds) == 0x00002C, "Member 'UNiagaraBakerSettings::DurationSeconds' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, FramesPerSecond) == 0x000030, "Member 'UNiagaraBakerSettings::FramesPerSecond' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, FramesPerDimension) == 0x000038, "Member 'UNiagaraBakerSettings::FramesPerDimension' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, Outputs) == 0x000040, "Member 'UNiagaraBakerSettings::Outputs' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraSettings) == 0x000050, "Member 'UNiagaraBakerSettings::CameraSettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CurrentCameraIndex) == 0x000060, "Member 'UNiagaraBakerSettings::CurrentCameraIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, BakeQualityLevel) == 0x000064, "Member 'UNiagaraBakerSettings::BakeQualityLevel' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, OutputTextures) == 0x000070, "Member 'UNiagaraBakerSettings::OutputTextures' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraViewportMode) == 0x000080, "Member 'UNiagaraBakerSettings::CameraViewportMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraViewportLocation) == 0x000088, "Member 'UNiagaraBakerSettings::CameraViewportLocation' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraViewportRotation) == 0x000130, "Member 'UNiagaraBakerSettings::CameraViewportRotation' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraOrbitDistance) == 0x0001D8, "Member 'UNiagaraBakerSettings::CameraOrbitDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraFOV) == 0x0001DC, "Member 'UNiagaraBakerSettings::CameraFOV' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraOrthoWidth) == 0x0001E0, "Member 'UNiagaraBakerSettings::CameraOrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBakerSettings, CameraAspectRatio) == 0x0001E8, "Member 'UNiagaraBakerSettings::CameraAspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_AdvanceSimulation \ +static_assert(alignof(NiagaraComponent_AdvanceSimulation) == 0x000004, "Wrong alignment on NiagaraComponent_AdvanceSimulation"); \ +static_assert(sizeof(NiagaraComponent_AdvanceSimulation) == 0x000008, "Wrong size on NiagaraComponent_AdvanceSimulation"); \ +static_assert(offsetof(NiagaraComponent_AdvanceSimulation, TickCount) == 0x000000, "Member 'NiagaraComponent_AdvanceSimulation::TickCount' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_AdvanceSimulation, TickDeltaSeconds) == 0x000004, "Member 'NiagaraComponent_AdvanceSimulation::TickDeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_AdvanceSimulationByTime \ +static_assert(alignof(NiagaraComponent_AdvanceSimulationByTime) == 0x000004, "Wrong alignment on NiagaraComponent_AdvanceSimulationByTime"); \ +static_assert(sizeof(NiagaraComponent_AdvanceSimulationByTime) == 0x000008, "Wrong size on NiagaraComponent_AdvanceSimulationByTime"); \ +static_assert(offsetof(NiagaraComponent_AdvanceSimulationByTime, SimulateTime) == 0x000000, "Member 'NiagaraComponent_AdvanceSimulationByTime::SimulateTime' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_AdvanceSimulationByTime, TickDeltaSeconds) == 0x000004, "Member 'NiagaraComponent_AdvanceSimulationByTime::TickDeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_ClearEmitterFixedBounds \ +static_assert(alignof(NiagaraComponent_ClearEmitterFixedBounds) == 0x000004, "Wrong alignment on NiagaraComponent_ClearEmitterFixedBounds"); \ +static_assert(sizeof(NiagaraComponent_ClearEmitterFixedBounds) == 0x000008, "Wrong size on NiagaraComponent_ClearEmitterFixedBounds"); \ +static_assert(offsetof(NiagaraComponent_ClearEmitterFixedBounds, EmitterName) == 0x000000, "Member 'NiagaraComponent_ClearEmitterFixedBounds::EmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_ClearSimCache \ +static_assert(alignof(NiagaraComponent_ClearSimCache) == 0x000001, "Wrong alignment on NiagaraComponent_ClearSimCache"); \ +static_assert(sizeof(NiagaraComponent_ClearSimCache) == 0x000001, "Wrong size on NiagaraComponent_ClearSimCache"); \ +static_assert(offsetof(NiagaraComponent_ClearSimCache, bResetSystem) == 0x000000, "Member 'NiagaraComponent_ClearSimCache::bResetSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetDataInterface \ +static_assert(alignof(NiagaraComponent_GetDataInterface) == 0x000008, "Wrong alignment on NiagaraComponent_GetDataInterface"); \ +static_assert(sizeof(NiagaraComponent_GetDataInterface) == 0x000018, "Wrong size on NiagaraComponent_GetDataInterface"); \ +static_assert(offsetof(NiagaraComponent_GetDataInterface, Name_0) == 0x000000, "Member 'NiagaraComponent_GetDataInterface::Name_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetDataInterface, ReturnValue) == 0x000010, "Member 'NiagaraComponent_GetDataInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetNiagaraParticlePositions_DebugOnly \ +static_assert(alignof(NiagaraComponent_GetNiagaraParticlePositions_DebugOnly) == 0x000008, "Wrong alignment on NiagaraComponent_GetNiagaraParticlePositions_DebugOnly"); \ +static_assert(sizeof(NiagaraComponent_GetNiagaraParticlePositions_DebugOnly) == 0x000020, "Wrong size on NiagaraComponent_GetNiagaraParticlePositions_DebugOnly"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticlePositions_DebugOnly, InEmitterName) == 0x000000, "Member 'NiagaraComponent_GetNiagaraParticlePositions_DebugOnly::InEmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticlePositions_DebugOnly, ReturnValue) == 0x000010, "Member 'NiagaraComponent_GetNiagaraParticlePositions_DebugOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetNiagaraParticleValues_DebugOnly \ +static_assert(alignof(NiagaraComponent_GetNiagaraParticleValues_DebugOnly) == 0x000008, "Wrong alignment on NiagaraComponent_GetNiagaraParticleValues_DebugOnly"); \ +static_assert(sizeof(NiagaraComponent_GetNiagaraParticleValues_DebugOnly) == 0x000030, "Wrong size on NiagaraComponent_GetNiagaraParticleValues_DebugOnly"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValues_DebugOnly, InEmitterName) == 0x000000, "Member 'NiagaraComponent_GetNiagaraParticleValues_DebugOnly::InEmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValues_DebugOnly, InValueName) == 0x000010, "Member 'NiagaraComponent_GetNiagaraParticleValues_DebugOnly::InValueName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValues_DebugOnly, ReturnValue) == 0x000020, "Member 'NiagaraComponent_GetNiagaraParticleValues_DebugOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly \ +static_assert(alignof(NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly) == 0x000008, "Wrong alignment on NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly"); \ +static_assert(sizeof(NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly) == 0x000030, "Wrong size on NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly, InEmitterName) == 0x000000, "Member 'NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly::InEmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly, InValueName) == 0x000010, "Member 'NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly::InValueName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly, ReturnValue) == 0x000020, "Member 'NiagaraComponent_GetNiagaraParticleValueVec3_DebugOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SeekToDesiredAge \ +static_assert(alignof(NiagaraComponent_SeekToDesiredAge) == 0x000004, "Wrong alignment on NiagaraComponent_SeekToDesiredAge"); \ +static_assert(sizeof(NiagaraComponent_SeekToDesiredAge) == 0x000004, "Wrong size on NiagaraComponent_SeekToDesiredAge"); \ +static_assert(offsetof(NiagaraComponent_SeekToDesiredAge, InDesiredAge) == 0x000000, "Member 'NiagaraComponent_SeekToDesiredAge::InDesiredAge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetAgeUpdateMode \ +static_assert(alignof(NiagaraComponent_SetAgeUpdateMode) == 0x000001, "Wrong alignment on NiagaraComponent_SetAgeUpdateMode"); \ +static_assert(sizeof(NiagaraComponent_SetAgeUpdateMode) == 0x000001, "Wrong size on NiagaraComponent_SetAgeUpdateMode"); \ +static_assert(offsetof(NiagaraComponent_SetAgeUpdateMode, InAgeUpdateMode) == 0x000000, "Member 'NiagaraComponent_SetAgeUpdateMode::InAgeUpdateMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetAllowScalability \ +static_assert(alignof(NiagaraComponent_SetAllowScalability) == 0x000001, "Wrong alignment on NiagaraComponent_SetAllowScalability"); \ +static_assert(sizeof(NiagaraComponent_SetAllowScalability) == 0x000001, "Wrong size on NiagaraComponent_SetAllowScalability"); \ +static_assert(offsetof(NiagaraComponent_SetAllowScalability, bAllow) == 0x000000, "Member 'NiagaraComponent_SetAllowScalability::bAllow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetAsset \ +static_assert(alignof(NiagaraComponent_SetAsset) == 0x000008, "Wrong alignment on NiagaraComponent_SetAsset"); \ +static_assert(sizeof(NiagaraComponent_SetAsset) == 0x000010, "Wrong size on NiagaraComponent_SetAsset"); \ +static_assert(offsetof(NiagaraComponent_SetAsset, InAsset) == 0x000000, "Member 'NiagaraComponent_SetAsset::InAsset' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetAsset, bResetExistingOverrideParameters) == 0x000008, "Member 'NiagaraComponent_SetAsset::bResetExistingOverrideParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetAutoDestroy \ +static_assert(alignof(NiagaraComponent_SetAutoDestroy) == 0x000001, "Wrong alignment on NiagaraComponent_SetAutoDestroy"); \ +static_assert(sizeof(NiagaraComponent_SetAutoDestroy) == 0x000001, "Wrong size on NiagaraComponent_SetAutoDestroy"); \ +static_assert(offsetof(NiagaraComponent_SetAutoDestroy, bInAutoDestroy) == 0x000000, "Member 'NiagaraComponent_SetAutoDestroy::bInAutoDestroy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetCanRenderWhileSeeking \ +static_assert(alignof(NiagaraComponent_SetCanRenderWhileSeeking) == 0x000001, "Wrong alignment on NiagaraComponent_SetCanRenderWhileSeeking"); \ +static_assert(sizeof(NiagaraComponent_SetCanRenderWhileSeeking) == 0x000001, "Wrong size on NiagaraComponent_SetCanRenderWhileSeeking"); \ +static_assert(offsetof(NiagaraComponent_SetCanRenderWhileSeeking, bInCanRenderWhileSeeking) == 0x000000, "Member 'NiagaraComponent_SetCanRenderWhileSeeking::bInCanRenderWhileSeeking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetCustomTimeDilation \ +static_assert(alignof(NiagaraComponent_SetCustomTimeDilation) == 0x000004, "Wrong alignment on NiagaraComponent_SetCustomTimeDilation"); \ +static_assert(sizeof(NiagaraComponent_SetCustomTimeDilation) == 0x000004, "Wrong size on NiagaraComponent_SetCustomTimeDilation"); \ +static_assert(offsetof(NiagaraComponent_SetCustomTimeDilation, Dilation) == 0x000000, "Member 'NiagaraComponent_SetCustomTimeDilation::Dilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetDesiredAge \ +static_assert(alignof(NiagaraComponent_SetDesiredAge) == 0x000004, "Wrong alignment on NiagaraComponent_SetDesiredAge"); \ +static_assert(sizeof(NiagaraComponent_SetDesiredAge) == 0x000004, "Wrong size on NiagaraComponent_SetDesiredAge"); \ +static_assert(offsetof(NiagaraComponent_SetDesiredAge, InDesiredAge) == 0x000000, "Member 'NiagaraComponent_SetDesiredAge::InDesiredAge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetEmitterFixedBounds \ +static_assert(alignof(NiagaraComponent_SetEmitterFixedBounds) == 0x000008, "Wrong alignment on NiagaraComponent_SetEmitterFixedBounds"); \ +static_assert(sizeof(NiagaraComponent_SetEmitterFixedBounds) == 0x000040, "Wrong size on NiagaraComponent_SetEmitterFixedBounds"); \ +static_assert(offsetof(NiagaraComponent_SetEmitterFixedBounds, EmitterName) == 0x000000, "Member 'NiagaraComponent_SetEmitterFixedBounds::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetEmitterFixedBounds, LocalBounds) == 0x000008, "Member 'NiagaraComponent_SetEmitterFixedBounds::LocalBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetForceLocalPlayerEffect \ +static_assert(alignof(NiagaraComponent_SetForceLocalPlayerEffect) == 0x000001, "Wrong alignment on NiagaraComponent_SetForceLocalPlayerEffect"); \ +static_assert(sizeof(NiagaraComponent_SetForceLocalPlayerEffect) == 0x000001, "Wrong size on NiagaraComponent_SetForceLocalPlayerEffect"); \ +static_assert(offsetof(NiagaraComponent_SetForceLocalPlayerEffect, bIsPlayerEffect) == 0x000000, "Member 'NiagaraComponent_SetForceLocalPlayerEffect::bIsPlayerEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetForceSolo \ +static_assert(alignof(NiagaraComponent_SetForceSolo) == 0x000001, "Wrong alignment on NiagaraComponent_SetForceSolo"); \ +static_assert(sizeof(NiagaraComponent_SetForceSolo) == 0x000001, "Wrong size on NiagaraComponent_SetForceSolo"); \ +static_assert(offsetof(NiagaraComponent_SetForceSolo, bInForceSolo) == 0x000000, "Member 'NiagaraComponent_SetForceSolo::bInForceSolo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetGpuComputeDebug \ +static_assert(alignof(NiagaraComponent_SetGpuComputeDebug) == 0x000001, "Wrong alignment on NiagaraComponent_SetGpuComputeDebug"); \ +static_assert(sizeof(NiagaraComponent_SetGpuComputeDebug) == 0x000001, "Wrong size on NiagaraComponent_SetGpuComputeDebug"); \ +static_assert(offsetof(NiagaraComponent_SetGpuComputeDebug, bEnableDebug) == 0x000000, "Member 'NiagaraComponent_SetGpuComputeDebug::bEnableDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta \ +static_assert(alignof(NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta) == 0x000001, "Wrong alignment on NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta"); \ +static_assert(sizeof(NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta) == 0x000001, "Wrong size on NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta"); \ +static_assert(offsetof(NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta, bLock) == 0x000000, "Member 'NiagaraComponent_SetLockDesiredAgeDeltaTimeToSeekDelta::bLock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetMaxSimTime \ +static_assert(alignof(NiagaraComponent_SetMaxSimTime) == 0x000004, "Wrong alignment on NiagaraComponent_SetMaxSimTime"); \ +static_assert(sizeof(NiagaraComponent_SetMaxSimTime) == 0x000004, "Wrong size on NiagaraComponent_SetMaxSimTime"); \ +static_assert(offsetof(NiagaraComponent_SetMaxSimTime, InMaxTime) == 0x000000, "Member 'NiagaraComponent_SetMaxSimTime::InMaxTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableActor \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableActor) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableActor"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableActor) == 0x000018, "Wrong size on NiagaraComponent_SetNiagaraVariableActor"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableActor, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableActor::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableActor, Actor) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableActor::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableBool \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableBool) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableBool"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableBool) == 0x000018, "Wrong size on NiagaraComponent_SetNiagaraVariableBool"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableBool, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableBool::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableBool, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableBool::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableFloat \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableFloat) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableFloat"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableFloat) == 0x000018, "Wrong size on NiagaraComponent_SetNiagaraVariableFloat"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableFloat, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableFloat::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableFloat, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableFloat::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableInt \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableInt) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableInt"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableInt) == 0x000018, "Wrong size on NiagaraComponent_SetNiagaraVariableInt"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableInt, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableInt::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableInt, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableInt::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableLinearColor \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableLinearColor) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableLinearColor"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableLinearColor) == 0x000020, "Wrong size on NiagaraComponent_SetNiagaraVariableLinearColor"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableLinearColor, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableLinearColor::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableLinearColor, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableLinearColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableMatrix \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableMatrix) == 0x000010, "Wrong alignment on NiagaraComponent_SetNiagaraVariableMatrix"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableMatrix) == 0x000090, "Wrong size on NiagaraComponent_SetNiagaraVariableMatrix"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableMatrix, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableMatrix::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableMatrix, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableMatrix::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableObject \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableObject) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableObject"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableObject) == 0x000018, "Wrong size on NiagaraComponent_SetNiagaraVariableObject"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableObject, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableObject::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableObject, Object) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariablePosition \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariablePosition) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariablePosition"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariablePosition) == 0x000028, "Wrong size on NiagaraComponent_SetNiagaraVariablePosition"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariablePosition, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariablePosition::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariablePosition, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariablePosition::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableQuat \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableQuat) == 0x000010, "Wrong alignment on NiagaraComponent_SetNiagaraVariableQuat"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableQuat) == 0x000030, "Wrong size on NiagaraComponent_SetNiagaraVariableQuat"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableQuat, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableQuat::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableQuat, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableQuat::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableVec2 \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableVec2) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableVec2"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableVec2) == 0x000020, "Wrong size on NiagaraComponent_SetNiagaraVariableVec2"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec2, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableVec2::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec2, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableVec2::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableVec3 \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableVec3) == 0x000008, "Wrong alignment on NiagaraComponent_SetNiagaraVariableVec3"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableVec3) == 0x000028, "Wrong size on NiagaraComponent_SetNiagaraVariableVec3"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec3, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableVec3::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec3, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableVec3::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetNiagaraVariableVec4 \ +static_assert(alignof(NiagaraComponent_SetNiagaraVariableVec4) == 0x000010, "Wrong alignment on NiagaraComponent_SetNiagaraVariableVec4"); \ +static_assert(sizeof(NiagaraComponent_SetNiagaraVariableVec4) == 0x000030, "Wrong size on NiagaraComponent_SetNiagaraVariableVec4"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec4, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetNiagaraVariableVec4::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetNiagaraVariableVec4, InValue) == 0x000010, "Member 'NiagaraComponent_SetNiagaraVariableVec4::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetOcclusionQueryMode \ +static_assert(alignof(NiagaraComponent_SetOcclusionQueryMode) == 0x000001, "Wrong alignment on NiagaraComponent_SetOcclusionQueryMode"); \ +static_assert(sizeof(NiagaraComponent_SetOcclusionQueryMode) == 0x000001, "Wrong size on NiagaraComponent_SetOcclusionQueryMode"); \ +static_assert(offsetof(NiagaraComponent_SetOcclusionQueryMode, Mode) == 0x000000, "Member 'NiagaraComponent_SetOcclusionQueryMode::Mode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetPaused \ +static_assert(alignof(NiagaraComponent_SetPaused) == 0x000001, "Wrong alignment on NiagaraComponent_SetPaused"); \ +static_assert(sizeof(NiagaraComponent_SetPaused) == 0x000001, "Wrong size on NiagaraComponent_SetPaused"); \ +static_assert(offsetof(NiagaraComponent_SetPaused, bInPaused) == 0x000000, "Member 'NiagaraComponent_SetPaused::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetPreviewLODDistance \ +static_assert(alignof(NiagaraComponent_SetPreviewLODDistance) == 0x000004, "Wrong alignment on NiagaraComponent_SetPreviewLODDistance"); \ +static_assert(sizeof(NiagaraComponent_SetPreviewLODDistance) == 0x00000C, "Wrong size on NiagaraComponent_SetPreviewLODDistance"); \ +static_assert(offsetof(NiagaraComponent_SetPreviewLODDistance, bEnablePreviewLODDistance) == 0x000000, "Member 'NiagaraComponent_SetPreviewLODDistance::bEnablePreviewLODDistance' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetPreviewLODDistance, PreviewLODDistance) == 0x000004, "Member 'NiagaraComponent_SetPreviewLODDistance::PreviewLODDistance' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetPreviewLODDistance, PreviewMaxDistance) == 0x000008, "Member 'NiagaraComponent_SetPreviewLODDistance::PreviewMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetRandomSeedOffset \ +static_assert(alignof(NiagaraComponent_SetRandomSeedOffset) == 0x000004, "Wrong alignment on NiagaraComponent_SetRandomSeedOffset"); \ +static_assert(sizeof(NiagaraComponent_SetRandomSeedOffset) == 0x000004, "Wrong size on NiagaraComponent_SetRandomSeedOffset"); \ +static_assert(offsetof(NiagaraComponent_SetRandomSeedOffset, NewRandomSeedOffset) == 0x000000, "Member 'NiagaraComponent_SetRandomSeedOffset::NewRandomSeedOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetRenderingEnabled \ +static_assert(alignof(NiagaraComponent_SetRenderingEnabled) == 0x000001, "Wrong alignment on NiagaraComponent_SetRenderingEnabled"); \ +static_assert(sizeof(NiagaraComponent_SetRenderingEnabled) == 0x000001, "Wrong size on NiagaraComponent_SetRenderingEnabled"); \ +static_assert(offsetof(NiagaraComponent_SetRenderingEnabled, bInRenderingEnabled) == 0x000000, "Member 'NiagaraComponent_SetRenderingEnabled::bInRenderingEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetSeekDelta \ +static_assert(alignof(NiagaraComponent_SetSeekDelta) == 0x000004, "Wrong alignment on NiagaraComponent_SetSeekDelta"); \ +static_assert(sizeof(NiagaraComponent_SetSeekDelta) == 0x000004, "Wrong size on NiagaraComponent_SetSeekDelta"); \ +static_assert(offsetof(NiagaraComponent_SetSeekDelta, InSeekDelta) == 0x000000, "Member 'NiagaraComponent_SetSeekDelta::InSeekDelta' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetSimCache \ +static_assert(alignof(NiagaraComponent_SetSimCache) == 0x000008, "Wrong alignment on NiagaraComponent_SetSimCache"); \ +static_assert(sizeof(NiagaraComponent_SetSimCache) == 0x000010, "Wrong size on NiagaraComponent_SetSimCache"); \ +static_assert(offsetof(NiagaraComponent_SetSimCache, SimCache_0) == 0x000000, "Member 'NiagaraComponent_SetSimCache::SimCache_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetSimCache, bResetSystem) == 0x000008, "Member 'NiagaraComponent_SetSimCache::bResetSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetSystemFixedBounds \ +static_assert(alignof(NiagaraComponent_SetSystemFixedBounds) == 0x000008, "Wrong alignment on NiagaraComponent_SetSystemFixedBounds"); \ +static_assert(sizeof(NiagaraComponent_SetSystemFixedBounds) == 0x000038, "Wrong size on NiagaraComponent_SetSystemFixedBounds"); \ +static_assert(offsetof(NiagaraComponent_SetSystemFixedBounds, LocalBounds) == 0x000000, "Member 'NiagaraComponent_SetSystemFixedBounds::LocalBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetTickBehavior \ +static_assert(alignof(NiagaraComponent_SetTickBehavior) == 0x000001, "Wrong alignment on NiagaraComponent_SetTickBehavior"); \ +static_assert(sizeof(NiagaraComponent_SetTickBehavior) == 0x000001, "Wrong size on NiagaraComponent_SetTickBehavior"); \ +static_assert(offsetof(NiagaraComponent_SetTickBehavior, NewTickBehavior) == 0x000000, "Member 'NiagaraComponent_SetTickBehavior::NewTickBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableActor \ +static_assert(alignof(NiagaraComponent_SetVariableActor) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableActor"); \ +static_assert(sizeof(NiagaraComponent_SetVariableActor) == 0x000010, "Wrong size on NiagaraComponent_SetVariableActor"); \ +static_assert(offsetof(NiagaraComponent_SetVariableActor, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableActor::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableActor, Actor) == 0x000008, "Member 'NiagaraComponent_SetVariableActor::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableBool \ +static_assert(alignof(NiagaraComponent_SetVariableBool) == 0x000004, "Wrong alignment on NiagaraComponent_SetVariableBool"); \ +static_assert(sizeof(NiagaraComponent_SetVariableBool) == 0x00000C, "Wrong size on NiagaraComponent_SetVariableBool"); \ +static_assert(offsetof(NiagaraComponent_SetVariableBool, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableBool::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableBool, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableBool::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableFloat \ +static_assert(alignof(NiagaraComponent_SetVariableFloat) == 0x000004, "Wrong alignment on NiagaraComponent_SetVariableFloat"); \ +static_assert(sizeof(NiagaraComponent_SetVariableFloat) == 0x00000C, "Wrong size on NiagaraComponent_SetVariableFloat"); \ +static_assert(offsetof(NiagaraComponent_SetVariableFloat, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableFloat::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableFloat, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableFloat::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableInt \ +static_assert(alignof(NiagaraComponent_SetVariableInt) == 0x000004, "Wrong alignment on NiagaraComponent_SetVariableInt"); \ +static_assert(sizeof(NiagaraComponent_SetVariableInt) == 0x00000C, "Wrong size on NiagaraComponent_SetVariableInt"); \ +static_assert(offsetof(NiagaraComponent_SetVariableInt, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableInt::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableInt, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableInt::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableLinearColor \ +static_assert(alignof(NiagaraComponent_SetVariableLinearColor) == 0x000004, "Wrong alignment on NiagaraComponent_SetVariableLinearColor"); \ +static_assert(sizeof(NiagaraComponent_SetVariableLinearColor) == 0x000018, "Wrong size on NiagaraComponent_SetVariableLinearColor"); \ +static_assert(offsetof(NiagaraComponent_SetVariableLinearColor, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableLinearColor::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableLinearColor, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableLinearColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableMaterial \ +static_assert(alignof(NiagaraComponent_SetVariableMaterial) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableMaterial"); \ +static_assert(sizeof(NiagaraComponent_SetVariableMaterial) == 0x000010, "Wrong size on NiagaraComponent_SetVariableMaterial"); \ +static_assert(offsetof(NiagaraComponent_SetVariableMaterial, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableMaterial::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableMaterial, Object) == 0x000008, "Member 'NiagaraComponent_SetVariableMaterial::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableMatrix \ +static_assert(alignof(NiagaraComponent_SetVariableMatrix) == 0x000010, "Wrong alignment on NiagaraComponent_SetVariableMatrix"); \ +static_assert(sizeof(NiagaraComponent_SetVariableMatrix) == 0x000090, "Wrong size on NiagaraComponent_SetVariableMatrix"); \ +static_assert(offsetof(NiagaraComponent_SetVariableMatrix, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableMatrix::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableMatrix, InValue) == 0x000010, "Member 'NiagaraComponent_SetVariableMatrix::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableObject \ +static_assert(alignof(NiagaraComponent_SetVariableObject) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableObject"); \ +static_assert(sizeof(NiagaraComponent_SetVariableObject) == 0x000010, "Wrong size on NiagaraComponent_SetVariableObject"); \ +static_assert(offsetof(NiagaraComponent_SetVariableObject, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableObject::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableObject, Object) == 0x000008, "Member 'NiagaraComponent_SetVariableObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariablePosition \ +static_assert(alignof(NiagaraComponent_SetVariablePosition) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariablePosition"); \ +static_assert(sizeof(NiagaraComponent_SetVariablePosition) == 0x000020, "Wrong size on NiagaraComponent_SetVariablePosition"); \ +static_assert(offsetof(NiagaraComponent_SetVariablePosition, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariablePosition::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariablePosition, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariablePosition::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableQuat \ +static_assert(alignof(NiagaraComponent_SetVariableQuat) == 0x000010, "Wrong alignment on NiagaraComponent_SetVariableQuat"); \ +static_assert(sizeof(NiagaraComponent_SetVariableQuat) == 0x000030, "Wrong size on NiagaraComponent_SetVariableQuat"); \ +static_assert(offsetof(NiagaraComponent_SetVariableQuat, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableQuat::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableQuat, InValue) == 0x000010, "Member 'NiagaraComponent_SetVariableQuat::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableStaticMesh \ +static_assert(alignof(NiagaraComponent_SetVariableStaticMesh) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableStaticMesh"); \ +static_assert(sizeof(NiagaraComponent_SetVariableStaticMesh) == 0x000010, "Wrong size on NiagaraComponent_SetVariableStaticMesh"); \ +static_assert(offsetof(NiagaraComponent_SetVariableStaticMesh, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableStaticMesh::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableStaticMesh, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableStaticMesh::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableTexture \ +static_assert(alignof(NiagaraComponent_SetVariableTexture) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableTexture"); \ +static_assert(sizeof(NiagaraComponent_SetVariableTexture) == 0x000010, "Wrong size on NiagaraComponent_SetVariableTexture"); \ +static_assert(offsetof(NiagaraComponent_SetVariableTexture, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableTexture::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableTexture, Texture) == 0x000008, "Member 'NiagaraComponent_SetVariableTexture::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableTextureRenderTarget \ +static_assert(alignof(NiagaraComponent_SetVariableTextureRenderTarget) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableTextureRenderTarget"); \ +static_assert(sizeof(NiagaraComponent_SetVariableTextureRenderTarget) == 0x000010, "Wrong size on NiagaraComponent_SetVariableTextureRenderTarget"); \ +static_assert(offsetof(NiagaraComponent_SetVariableTextureRenderTarget, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableTextureRenderTarget::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableTextureRenderTarget, TextureRenderTarget) == 0x000008, "Member 'NiagaraComponent_SetVariableTextureRenderTarget::TextureRenderTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableVec2 \ +static_assert(alignof(NiagaraComponent_SetVariableVec2) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableVec2"); \ +static_assert(sizeof(NiagaraComponent_SetVariableVec2) == 0x000018, "Wrong size on NiagaraComponent_SetVariableVec2"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec2, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableVec2::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec2, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableVec2::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableVec3 \ +static_assert(alignof(NiagaraComponent_SetVariableVec3) == 0x000008, "Wrong alignment on NiagaraComponent_SetVariableVec3"); \ +static_assert(sizeof(NiagaraComponent_SetVariableVec3) == 0x000020, "Wrong size on NiagaraComponent_SetVariableVec3"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec3, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableVec3::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec3, InValue) == 0x000008, "Member 'NiagaraComponent_SetVariableVec3::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_SetVariableVec4 \ +static_assert(alignof(NiagaraComponent_SetVariableVec4) == 0x000010, "Wrong alignment on NiagaraComponent_SetVariableVec4"); \ +static_assert(sizeof(NiagaraComponent_SetVariableVec4) == 0x000030, "Wrong size on NiagaraComponent_SetVariableVec4"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec4, InVariableName) == 0x000000, "Member 'NiagaraComponent_SetVariableVec4::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_SetVariableVec4, InValue) == 0x000010, "Member 'NiagaraComponent_SetVariableVec4::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetAgeUpdateMode \ +static_assert(alignof(NiagaraComponent_GetAgeUpdateMode) == 0x000001, "Wrong alignment on NiagaraComponent_GetAgeUpdateMode"); \ +static_assert(sizeof(NiagaraComponent_GetAgeUpdateMode) == 0x000001, "Wrong size on NiagaraComponent_GetAgeUpdateMode"); \ +static_assert(offsetof(NiagaraComponent_GetAgeUpdateMode, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetAgeUpdateMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetAllowScalability \ +static_assert(alignof(NiagaraComponent_GetAllowScalability) == 0x000001, "Wrong alignment on NiagaraComponent_GetAllowScalability"); \ +static_assert(sizeof(NiagaraComponent_GetAllowScalability) == 0x000001, "Wrong size on NiagaraComponent_GetAllowScalability"); \ +static_assert(offsetof(NiagaraComponent_GetAllowScalability, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetAllowScalability::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetAsset \ +static_assert(alignof(NiagaraComponent_GetAsset) == 0x000008, "Wrong alignment on NiagaraComponent_GetAsset"); \ +static_assert(sizeof(NiagaraComponent_GetAsset) == 0x000008, "Wrong size on NiagaraComponent_GetAsset"); \ +static_assert(offsetof(NiagaraComponent_GetAsset, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetCustomTimeDilation \ +static_assert(alignof(NiagaraComponent_GetCustomTimeDilation) == 0x000004, "Wrong alignment on NiagaraComponent_GetCustomTimeDilation"); \ +static_assert(sizeof(NiagaraComponent_GetCustomTimeDilation) == 0x000004, "Wrong size on NiagaraComponent_GetCustomTimeDilation"); \ +static_assert(offsetof(NiagaraComponent_GetCustomTimeDilation, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetCustomTimeDilation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetDesiredAge \ +static_assert(alignof(NiagaraComponent_GetDesiredAge) == 0x000004, "Wrong alignment on NiagaraComponent_GetDesiredAge"); \ +static_assert(sizeof(NiagaraComponent_GetDesiredAge) == 0x000004, "Wrong size on NiagaraComponent_GetDesiredAge"); \ +static_assert(offsetof(NiagaraComponent_GetDesiredAge, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetDesiredAge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetEmitterFixedBounds \ +static_assert(alignof(NiagaraComponent_GetEmitterFixedBounds) == 0x000008, "Wrong alignment on NiagaraComponent_GetEmitterFixedBounds"); \ +static_assert(sizeof(NiagaraComponent_GetEmitterFixedBounds) == 0x000040, "Wrong size on NiagaraComponent_GetEmitterFixedBounds"); \ +static_assert(offsetof(NiagaraComponent_GetEmitterFixedBounds, EmitterName) == 0x000000, "Member 'NiagaraComponent_GetEmitterFixedBounds::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraComponent_GetEmitterFixedBounds, ReturnValue) == 0x000008, "Member 'NiagaraComponent_GetEmitterFixedBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetForceLocalPlayerEffect \ +static_assert(alignof(NiagaraComponent_GetForceLocalPlayerEffect) == 0x000001, "Wrong alignment on NiagaraComponent_GetForceLocalPlayerEffect"); \ +static_assert(sizeof(NiagaraComponent_GetForceLocalPlayerEffect) == 0x000001, "Wrong size on NiagaraComponent_GetForceLocalPlayerEffect"); \ +static_assert(offsetof(NiagaraComponent_GetForceLocalPlayerEffect, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetForceLocalPlayerEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetForceSolo \ +static_assert(alignof(NiagaraComponent_GetForceSolo) == 0x000001, "Wrong alignment on NiagaraComponent_GetForceSolo"); \ +static_assert(sizeof(NiagaraComponent_GetForceSolo) == 0x000001, "Wrong size on NiagaraComponent_GetForceSolo"); \ +static_assert(offsetof(NiagaraComponent_GetForceSolo, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetForceSolo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta \ +static_assert(alignof(NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta) == 0x000001, "Wrong alignment on NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta"); \ +static_assert(sizeof(NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta) == 0x000001, "Wrong size on NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta"); \ +static_assert(offsetof(NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetLockDesiredAgeDeltaTimeToSeekDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetMaxSimTime \ +static_assert(alignof(NiagaraComponent_GetMaxSimTime) == 0x000004, "Wrong alignment on NiagaraComponent_GetMaxSimTime"); \ +static_assert(sizeof(NiagaraComponent_GetMaxSimTime) == 0x000004, "Wrong size on NiagaraComponent_GetMaxSimTime"); \ +static_assert(offsetof(NiagaraComponent_GetMaxSimTime, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetMaxSimTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetOcclusionQueryMode \ +static_assert(alignof(NiagaraComponent_GetOcclusionQueryMode) == 0x000001, "Wrong alignment on NiagaraComponent_GetOcclusionQueryMode"); \ +static_assert(sizeof(NiagaraComponent_GetOcclusionQueryMode) == 0x000001, "Wrong size on NiagaraComponent_GetOcclusionQueryMode"); \ +static_assert(offsetof(NiagaraComponent_GetOcclusionQueryMode, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetOcclusionQueryMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetPreviewLODDistance \ +static_assert(alignof(NiagaraComponent_GetPreviewLODDistance) == 0x000004, "Wrong alignment on NiagaraComponent_GetPreviewLODDistance"); \ +static_assert(sizeof(NiagaraComponent_GetPreviewLODDistance) == 0x000004, "Wrong size on NiagaraComponent_GetPreviewLODDistance"); \ +static_assert(offsetof(NiagaraComponent_GetPreviewLODDistance, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetPreviewLODDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetPreviewLODDistanceEnabled \ +static_assert(alignof(NiagaraComponent_GetPreviewLODDistanceEnabled) == 0x000001, "Wrong alignment on NiagaraComponent_GetPreviewLODDistanceEnabled"); \ +static_assert(sizeof(NiagaraComponent_GetPreviewLODDistanceEnabled) == 0x000001, "Wrong size on NiagaraComponent_GetPreviewLODDistanceEnabled"); \ +static_assert(offsetof(NiagaraComponent_GetPreviewLODDistanceEnabled, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetPreviewLODDistanceEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetRandomSeedOffset \ +static_assert(alignof(NiagaraComponent_GetRandomSeedOffset) == 0x000004, "Wrong alignment on NiagaraComponent_GetRandomSeedOffset"); \ +static_assert(sizeof(NiagaraComponent_GetRandomSeedOffset) == 0x000004, "Wrong size on NiagaraComponent_GetRandomSeedOffset"); \ +static_assert(offsetof(NiagaraComponent_GetRandomSeedOffset, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetRandomSeedOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetSeekDelta \ +static_assert(alignof(NiagaraComponent_GetSeekDelta) == 0x000004, "Wrong alignment on NiagaraComponent_GetSeekDelta"); \ +static_assert(sizeof(NiagaraComponent_GetSeekDelta) == 0x000004, "Wrong size on NiagaraComponent_GetSeekDelta"); \ +static_assert(offsetof(NiagaraComponent_GetSeekDelta, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetSeekDelta::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetSimCache \ +static_assert(alignof(NiagaraComponent_GetSimCache) == 0x000008, "Wrong alignment on NiagaraComponent_GetSimCache"); \ +static_assert(sizeof(NiagaraComponent_GetSimCache) == 0x000008, "Wrong size on NiagaraComponent_GetSimCache"); \ +static_assert(offsetof(NiagaraComponent_GetSimCache, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetSimCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetSystemFixedBounds \ +static_assert(alignof(NiagaraComponent_GetSystemFixedBounds) == 0x000008, "Wrong alignment on NiagaraComponent_GetSystemFixedBounds"); \ +static_assert(sizeof(NiagaraComponent_GetSystemFixedBounds) == 0x000038, "Wrong size on NiagaraComponent_GetSystemFixedBounds"); \ +static_assert(offsetof(NiagaraComponent_GetSystemFixedBounds, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetSystemFixedBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_GetTickBehavior \ +static_assert(alignof(NiagaraComponent_GetTickBehavior) == 0x000001, "Wrong alignment on NiagaraComponent_GetTickBehavior"); \ +static_assert(sizeof(NiagaraComponent_GetTickBehavior) == 0x000001, "Wrong size on NiagaraComponent_GetTickBehavior"); \ +static_assert(offsetof(NiagaraComponent_GetTickBehavior, ReturnValue) == 0x000000, "Member 'NiagaraComponent_GetTickBehavior::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraComponent_IsPaused \ +static_assert(alignof(NiagaraComponent_IsPaused) == 0x000001, "Wrong alignment on NiagaraComponent_IsPaused"); \ +static_assert(sizeof(NiagaraComponent_IsPaused) == 0x000001, "Wrong size on NiagaraComponent_IsPaused"); \ +static_assert(offsetof(NiagaraComponent_IsPaused, ReturnValue) == 0x000000, "Member 'NiagaraComponent_IsPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraComponent \ +static_assert(alignof(UNiagaraComponent) == 0x000010, "Wrong alignment on UNiagaraComponent"); \ +static_assert(sizeof(UNiagaraComponent) == 0x000810, "Wrong size on UNiagaraComponent"); \ +static_assert(offsetof(UNiagaraComponent, Asset) == 0x000570, "Member 'UNiagaraComponent::Asset' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, TickBehavior) == 0x000578, "Member 'UNiagaraComponent::TickBehavior' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, RandomSeedOffset) == 0x00057C, "Member 'UNiagaraComponent::RandomSeedOffset' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, OverrideParameters) == 0x000580, "Member 'UNiagaraComponent::OverrideParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, WarmupTickCount) == 0x00065C, "Member 'UNiagaraComponent::WarmupTickCount' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, WarmupTickDelta) == 0x000660, "Member 'UNiagaraComponent::WarmupTickDelta' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, MaxTimeBeforeForceUpdateTransform) == 0x00069C, "Member 'UNiagaraComponent::MaxTimeBeforeForceUpdateTransform' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, OcclusionQueryMode) == 0x0006A1, "Member 'UNiagaraComponent::OcclusionQueryMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, OnSystemFinished) == 0x0006A8, "Member 'UNiagaraComponent::OnSystemFinished' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, AutoAttachParent) == 0x0006B8, "Member 'UNiagaraComponent::AutoAttachParent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, AutoAttachSocketName) == 0x0006C0, "Member 'UNiagaraComponent::AutoAttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, AutoAttachLocationRule) == 0x0006C8, "Member 'UNiagaraComponent::AutoAttachLocationRule' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, AutoAttachRotationRule) == 0x0006C9, "Member 'UNiagaraComponent::AutoAttachRotationRule' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, AutoAttachScaleRule) == 0x0006CA, "Member 'UNiagaraComponent::AutoAttachScaleRule' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, SimCache) == 0x000800, "Member 'UNiagaraComponent::SimCache' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponent, CullProxy) == 0x000808, "Member 'UNiagaraComponent::CullProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRenderTarget2DArray \ +static_assert(alignof(UNiagaraDataInterfaceRenderTarget2DArray) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRenderTarget2DArray"); \ +static_assert(sizeof(UNiagaraDataInterfaceRenderTarget2DArray) == 0x000068, "Wrong size on UNiagaraDataInterfaceRenderTarget2DArray"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2DArray, Size) == 0x000038, "Member 'UNiagaraDataInterfaceRenderTarget2DArray::Size' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2DArray, OverrideRenderTargetFormat) == 0x000044, "Member 'UNiagaraDataInterfaceRenderTarget2DArray::OverrideRenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2DArray, OverrideRenderTargetFilter) == 0x000045, "Member 'UNiagaraDataInterfaceRenderTarget2DArray::OverrideRenderTargetFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2DArray, RenderTargetUserParameter) == 0x000048, "Member 'UNiagaraDataInterfaceRenderTarget2DArray::RenderTargetUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraComponentPool \ +static_assert(alignof(UNiagaraComponentPool) == 0x000008, "Wrong alignment on UNiagaraComponentPool"); \ +static_assert(sizeof(UNiagaraComponentPool) == 0x000080, "Wrong size on UNiagaraComponentPool"); \ +static_assert(offsetof(UNiagaraComponentPool, WorldParticleSystemPools) == 0x000028, "Member 'UNiagaraComponentPool::WorldParticleSystemPools' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraComponentRendererProperties \ +static_assert(alignof(UNiagaraComponentRendererProperties) == 0x000008, "Wrong alignment on UNiagaraComponentRendererProperties"); \ +static_assert(sizeof(UNiagaraComponentRendererProperties) == 0x0001D0, "Wrong size on UNiagaraComponentRendererProperties"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, ComponentType) == 0x0000C0, "Member 'UNiagaraComponentRendererProperties::ComponentType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, ComponentCountLimit) == 0x0000C8, "Member 'UNiagaraComponentRendererProperties::ComponentCountLimit' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, EnabledBinding) == 0x0000D0, "Member 'UNiagaraComponentRendererProperties::EnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, RendererVisibilityTagBinding) == 0x000108, "Member 'UNiagaraComponentRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, bAssignComponentsOnParticleID) == 0x000140, "Member 'UNiagaraComponentRendererProperties::bAssignComponentsOnParticleID' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, bCreateComponentFirstParticleFrame) == 0x000141, "Member 'UNiagaraComponentRendererProperties::bCreateComponentFirstParticleFrame' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, bOnlyActivateNewlyAquiredComponents) == 0x000142, "Member 'UNiagaraComponentRendererProperties::bOnlyActivateNewlyAquiredComponents' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, RendererVisibility) == 0x000144, "Member 'UNiagaraComponentRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, TemplateComponent) == 0x000148, "Member 'UNiagaraComponentRendererProperties::TemplateComponent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraComponentRendererProperties, PropertyBindings) == 0x000150, "Member 'UNiagaraComponentRendererProperties::PropertyBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraCullProxyComponent \ +static_assert(alignof(UNiagaraCullProxyComponent) == 0x000010, "Wrong alignment on UNiagaraCullProxyComponent"); \ +static_assert(sizeof(UNiagaraCullProxyComponent) == 0x000820, "Wrong size on UNiagaraCullProxyComponent"); \ +static_assert(offsetof(UNiagaraCullProxyComponent, Instances) == 0x000810, "Member 'UNiagaraCullProxyComponent::Instances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelLibrary_GetNiagaraDataChannel \ +static_assert(alignof(NiagaraDataChannelLibrary_GetNiagaraDataChannel) == 0x000008, "Wrong alignment on NiagaraDataChannelLibrary_GetNiagaraDataChannel"); \ +static_assert(sizeof(NiagaraDataChannelLibrary_GetNiagaraDataChannel) == 0x000018, "Wrong size on NiagaraDataChannelLibrary_GetNiagaraDataChannel"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_GetNiagaraDataChannel, WorldContextObject) == 0x000000, "Member 'NiagaraDataChannelLibrary_GetNiagaraDataChannel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_GetNiagaraDataChannel, Channel) == 0x000008, "Member 'NiagaraDataChannelLibrary_GetNiagaraDataChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_GetNiagaraDataChannel, ReturnValue) == 0x000010, "Member 'NiagaraDataChannelLibrary_GetNiagaraDataChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel \ +static_assert(alignof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel) == 0x000008, "Wrong alignment on NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel"); \ +static_assert(sizeof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel) == 0x000040, "Wrong size on NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel, WorldContextObject) == 0x000000, "Member 'NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel, Channel) == 0x000008, "Member 'NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel, SearchParams) == 0x000010, "Member 'NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel::SearchParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel, bReadPreviousFrame) == 0x000030, "Member 'NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel::bReadPreviousFrame' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel, ReturnValue) == 0x000038, "Member 'NiagaraDataChannelLibrary_ReadFromNiagaraDataChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataChannelLibrary_WriteToNiagaraDataChannel \ +static_assert(alignof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel) == 0x000008, "Wrong alignment on NiagaraDataChannelLibrary_WriteToNiagaraDataChannel"); \ +static_assert(sizeof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel) == 0x000040, "Wrong size on NiagaraDataChannelLibrary_WriteToNiagaraDataChannel"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, WorldContextObject) == 0x000000, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, Channel) == 0x000008, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::Channel' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, SearchParams) == 0x000010, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::SearchParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, Count) == 0x000030, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::Count' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, bVisibleToGame) == 0x000034, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::bVisibleToGame' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, bVisibleToCPU) == 0x000035, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::bVisibleToCPU' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, bVisibleToGPU) == 0x000036, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::bVisibleToGPU' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataChannelLibrary_WriteToNiagaraDataChannel, ReturnValue) == 0x000038, "Member 'NiagaraDataChannelLibrary_WriteToNiagaraDataChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataChannelLibrary \ +static_assert(alignof(UNiagaraDataChannelLibrary) == 0x000008, "Wrong alignment on UNiagaraDataChannelLibrary"); \ +static_assert(sizeof(UNiagaraDataChannelLibrary) == 0x000028, "Wrong size on UNiagaraDataChannelLibrary"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterface2DArrayTexture \ +static_assert(alignof(UNiagaraDataInterface2DArrayTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterface2DArrayTexture"); \ +static_assert(sizeof(UNiagaraDataInterface2DArrayTexture) == 0x000060, "Wrong size on UNiagaraDataInterface2DArrayTexture"); \ +static_assert(offsetof(UNiagaraDataInterface2DArrayTexture, Texture) == 0x000038, "Member 'UNiagaraDataInterface2DArrayTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterface2DArrayTexture, TextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterface2DArrayTexture::TextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArray \ +static_assert(alignof(UNiagaraDataInterfaceArray) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArray"); \ +static_assert(sizeof(UNiagaraDataInterfaceArray) == 0x000048, "Wrong size on UNiagaraDataInterfaceArray"); \ +static_assert(offsetof(UNiagaraDataInterfaceArray, GpuSyncMode) == 0x000040, "Member 'UNiagaraDataInterfaceArray::GpuSyncMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceArray, MaxElements) == 0x000044, "Member 'UNiagaraDataInterfaceArray::MaxElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayFloat \ +static_assert(alignof(UNiagaraDataInterfaceArrayFloat) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayFloat"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayFloat) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayFloat"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayFloat, FloatData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayFloat::FloatData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayFloat2 \ +static_assert(alignof(UNiagaraDataInterfaceArrayFloat2) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayFloat2"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayFloat2) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayFloat2"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayFloat2, InternalFloatData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayFloat2::InternalFloatData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayFloat3 \ +static_assert(alignof(UNiagaraDataInterfaceArrayFloat3) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayFloat3"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayFloat3) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayFloat3"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayFloat3, InternalFloatData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayFloat3::InternalFloatData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayPosition \ +static_assert(alignof(UNiagaraDataInterfaceArrayPosition) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayPosition"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayPosition) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayPosition"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayPosition, PositionData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayPosition::PositionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayFloat4 \ +static_assert(alignof(UNiagaraDataInterfaceArrayFloat4) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayFloat4"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayFloat4) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayFloat4"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayFloat4, InternalFloatData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayFloat4::InternalFloatData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayColor \ +static_assert(alignof(UNiagaraDataInterfaceArrayColor) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayColor"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayColor) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayColor"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayColor, ColorData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayColor::ColorData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayQuat \ +static_assert(alignof(UNiagaraDataInterfaceArrayQuat) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayQuat"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayQuat) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayQuat"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayQuat, InternalQuatData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayQuat::InternalQuatData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayMatrix \ +static_assert(alignof(UNiagaraDataInterfaceArrayMatrix) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayMatrix"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayMatrix) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayMatrix"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayMatrix, InternalMatrixData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayMatrix::InternalMatrixData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue) == 0x000018, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayBoolValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue) == 0x000028, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayColorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue) == 0x000018, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayFloatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value) == 0x000018, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayInt32Value::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix) == 0x000028, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix, bApplyLWCRebase) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix::bApplyLWCRebase' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix, ReturnValue) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue) == 0x0000A0, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue, bApplyLWCRebase) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue::bApplyLWCRebase' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue, ReturnValue) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayMatrixValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue) == 0x000030, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue, ReturnValue) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayPositionValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue) == 0x000040, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue, ReturnValue) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayQuatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value) == 0x000018, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayUInt8Value::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue) == 0x000028, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue, ReturnValue) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector2DValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4, ReturnValue) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value) == 0x000040, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value, ReturnValue) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVector4Value::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue) == 0x000030, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue, ReturnValue) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_GetNiagaraArrayVectorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBool::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue) == 0x000018, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue, Value) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue, bSizeToFit) == 0x000015, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayBoolValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColor::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue) == 0x000028, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue, Value) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue, bSizeToFit) == 0x000024, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayColorValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloat::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue, Value) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue, bSizeToFit) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayFloatValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value, Value) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value, bSizeToFit) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayInt32Value::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix) == 0x000028, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix::ArrayData' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix, bApplyLWCRebase) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrix::bApplyLWCRebase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue) == 0x0000B0, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, Value) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, bSizeToFit) == 0x0000A0, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::bSizeToFit' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue, bApplyLWCRebase) == 0x0000A1, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayMatrixValue::bApplyLWCRebase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPosition::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue) == 0x000038, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue, Value) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue, bSizeToFit) == 0x000030, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayPositionValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuat::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue) == 0x000050, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue, Value) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue, bSizeToFit) == 0x000040, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayQuatValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value, Value) == 0x000014, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value, bSizeToFit) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayUInt8Value::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2D::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue) == 0x000030, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue, Value) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue, bSizeToFit) == 0x000028, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector2DValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4 \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4) == 0x000020, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4, ArrayData) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4::ArrayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value) == 0x000010, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value) == 0x000050, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value, Value) == 0x000020, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value, bSizeToFit) == 0x000040, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVector4Value::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue \ +static_assert(alignof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue) == 0x000008, "Wrong alignment on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue"); \ +static_assert(sizeof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue) == 0x000038, "Wrong size on NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue, NiagaraSystem) == 0x000000, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue, OverrideName) == 0x000008, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue, Index_0) == 0x000010, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue::Index_0' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue, Value) == 0x000018, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue::Value' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue, bSizeToFit) == 0x000030, "Member 'NiagaraDataInterfaceArrayFunctionLibrary_SetNiagaraArrayVectorValue::bSizeToFit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayFunctionLibrary \ +static_assert(alignof(UNiagaraDataInterfaceArrayFunctionLibrary) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayFunctionLibrary"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayFunctionLibrary) == 0x000028, "Wrong size on UNiagaraDataInterfaceArrayFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayInt32 \ +static_assert(alignof(UNiagaraDataInterfaceArrayInt32) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayInt32"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayInt32) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayInt32"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayInt32, IntData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayInt32::IntData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayUInt8 \ +static_assert(alignof(UNiagaraDataInterfaceArrayUInt8) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayUInt8"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayUInt8) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayUInt8"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayUInt8, InternalIntData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayUInt8::InternalIntData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayBool \ +static_assert(alignof(UNiagaraDataInterfaceArrayBool) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayBool"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayBool) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayBool"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayBool, BoolData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayBool::BoolData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceArrayNiagaraID \ +static_assert(alignof(UNiagaraDataInterfaceArrayNiagaraID) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceArrayNiagaraID"); \ +static_assert(sizeof(UNiagaraDataInterfaceArrayNiagaraID) == 0x000058, "Wrong size on UNiagaraDataInterfaceArrayNiagaraID"); \ +static_assert(offsetof(UNiagaraDataInterfaceArrayNiagaraID, IntData) == 0x000048, "Member 'UNiagaraDataInterfaceArrayNiagaraID::IntData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAudioSubmix \ +static_assert(alignof(UNiagaraDataInterfaceAudioSubmix) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAudioSubmix"); \ +static_assert(sizeof(UNiagaraDataInterfaceAudioSubmix) == 0x000040, "Wrong size on UNiagaraDataInterfaceAudioSubmix"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioSubmix, Submix) == 0x000038, "Member 'UNiagaraDataInterfaceAudioSubmix::Submix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAudioOscilloscope \ +static_assert(alignof(UNiagaraDataInterfaceAudioOscilloscope) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAudioOscilloscope"); \ +static_assert(sizeof(UNiagaraDataInterfaceAudioOscilloscope) == 0x000048, "Wrong size on UNiagaraDataInterfaceAudioOscilloscope"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioOscilloscope, Submix) == 0x000038, "Member 'UNiagaraDataInterfaceAudioOscilloscope::Submix' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioOscilloscope, Resolution) == 0x000040, "Member 'UNiagaraDataInterfaceAudioOscilloscope::Resolution' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioOscilloscope, ScopeInMilliseconds) == 0x000044, "Member 'UNiagaraDataInterfaceAudioOscilloscope::ScopeInMilliseconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAudioPlayerSettings \ +static_assert(alignof(UNiagaraDataInterfaceAudioPlayerSettings) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAudioPlayerSettings"); \ +static_assert(sizeof(UNiagaraDataInterfaceAudioPlayerSettings) == 0x000410, "Wrong size on UNiagaraDataInterfaceAudioPlayerSettings"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayerSettings, bOverrideConcurrency) == 0x000028, "Member 'UNiagaraDataInterfaceAudioPlayerSettings::bOverrideConcurrency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayerSettings, Concurrency) == 0x000030, "Member 'UNiagaraDataInterfaceAudioPlayerSettings::Concurrency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayerSettings, bOverrideAttenuationSettings) == 0x000038, "Member 'UNiagaraDataInterfaceAudioPlayerSettings::bOverrideAttenuationSettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayerSettings, AttenuationSettings) == 0x000040, "Member 'UNiagaraDataInterfaceAudioPlayerSettings::AttenuationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAudioPlayer \ +static_assert(alignof(UNiagaraDataInterfaceAudioPlayer) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAudioPlayer"); \ +static_assert(sizeof(UNiagaraDataInterfaceAudioPlayer) == 0x000090, "Wrong size on UNiagaraDataInterfaceAudioPlayer"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, SoundToPlay) == 0x000038, "Member 'UNiagaraDataInterfaceAudioPlayer::SoundToPlay' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, Attenuation) == 0x000040, "Member 'UNiagaraDataInterfaceAudioPlayer::Attenuation' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, Concurrency) == 0x000048, "Member 'UNiagaraDataInterfaceAudioPlayer::Concurrency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, ParameterNames) == 0x000050, "Member 'UNiagaraDataInterfaceAudioPlayer::ParameterNames' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, ConfigurationUserParameter) == 0x000060, "Member 'UNiagaraDataInterfaceAudioPlayer::ConfigurationUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, bLimitPlaysPerTick) == 0x000080, "Member 'UNiagaraDataInterfaceAudioPlayer::bLimitPlaysPerTick' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, MaxPlaysPerTick) == 0x000084, "Member 'UNiagaraDataInterfaceAudioPlayer::MaxPlaysPerTick' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, bStopWhenComponentIsDestroyed) == 0x000088, "Member 'UNiagaraDataInterfaceAudioPlayer::bStopWhenComponentIsDestroyed' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioPlayer, bAllowLoopingOneShotSounds) == 0x000089, "Member 'UNiagaraDataInterfaceAudioPlayer::bAllowLoopingOneShotSounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceAudioSpectrum \ +static_assert(alignof(UNiagaraDataInterfaceAudioSpectrum) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceAudioSpectrum"); \ +static_assert(sizeof(UNiagaraDataInterfaceAudioSpectrum) == 0x000050, "Wrong size on UNiagaraDataInterfaceAudioSpectrum"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioSpectrum, Resolution) == 0x000040, "Member 'UNiagaraDataInterfaceAudioSpectrum::Resolution' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioSpectrum, MinimumFrequency) == 0x000044, "Member 'UNiagaraDataInterfaceAudioSpectrum::MinimumFrequency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioSpectrum, MaximumFrequency) == 0x000048, "Member 'UNiagaraDataInterfaceAudioSpectrum::MaximumFrequency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceAudioSpectrum, NoiseFloorDb) == 0x00004C, "Member 'UNiagaraDataInterfaceAudioSpectrum::NoiseFloorDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCamera \ +static_assert(alignof(UNiagaraDataInterfaceCamera) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCamera"); \ +static_assert(sizeof(UNiagaraDataInterfaceCamera) == 0x000040, "Wrong size on UNiagaraDataInterfaceCamera"); \ +static_assert(offsetof(UNiagaraDataInterfaceCamera, PlayerControllerIndex) == 0x000038, "Member 'UNiagaraDataInterfaceCamera::PlayerControllerIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCamera, bRequireCurrentFrameData) == 0x00003C, "Member 'UNiagaraDataInterfaceCamera::bRequireCurrentFrameData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCollisionQuery \ +static_assert(alignof(UNiagaraDataInterfaceCollisionQuery) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCollisionQuery"); \ +static_assert(sizeof(UNiagaraDataInterfaceCollisionQuery) == 0x000040, "Wrong size on UNiagaraDataInterfaceCollisionQuery"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCurveBase \ +static_assert(alignof(UNiagaraDataInterfaceCurveBase) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCurveBase"); \ +static_assert(sizeof(UNiagaraDataInterfaceCurveBase) == 0x000070, "Wrong size on UNiagaraDataInterfaceCurveBase"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, ShaderLUT) == 0x000038, "Member 'UNiagaraDataInterfaceCurveBase::ShaderLUT' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, LUTMinTime) == 0x000048, "Member 'UNiagaraDataInterfaceCurveBase::LUTMinTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, LUTMaxTime) == 0x00004C, "Member 'UNiagaraDataInterfaceCurveBase::LUTMaxTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, LUTInvTimeRange) == 0x000050, "Member 'UNiagaraDataInterfaceCurveBase::LUTInvTimeRange' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, LUTNumSamplesMinusOne) == 0x000054, "Member 'UNiagaraDataInterfaceCurveBase::LUTNumSamplesMinusOne' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, ExposedName) == 0x000060, "Member 'UNiagaraDataInterfaceCurveBase::ExposedName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurveBase, ExposedTexture) == 0x000068, "Member 'UNiagaraDataInterfaceCurveBase::ExposedTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceColorCurve \ +static_assert(alignof(UNiagaraDataInterfaceColorCurve) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceColorCurve"); \ +static_assert(sizeof(UNiagaraDataInterfaceColorCurve) == 0x000270, "Wrong size on UNiagaraDataInterfaceColorCurve"); \ +static_assert(offsetof(UNiagaraDataInterfaceColorCurve, RedCurve) == 0x000070, "Member 'UNiagaraDataInterfaceColorCurve::RedCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceColorCurve, GreenCurve) == 0x0000F0, "Member 'UNiagaraDataInterfaceColorCurve::GreenCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceColorCurve, BlueCurve) == 0x000170, "Member 'UNiagaraDataInterfaceColorCurve::BlueCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceColorCurve, AlphaCurve) == 0x0001F0, "Member 'UNiagaraDataInterfaceColorCurve::AlphaCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCubeTexture \ +static_assert(alignof(UNiagaraDataInterfaceCubeTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCubeTexture"); \ +static_assert(sizeof(UNiagaraDataInterfaceCubeTexture) == 0x000060, "Wrong size on UNiagaraDataInterfaceCubeTexture"); \ +static_assert(offsetof(UNiagaraDataInterfaceCubeTexture, Texture) == 0x000038, "Member 'UNiagaraDataInterfaceCubeTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceCubeTexture, TextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceCubeTexture::TextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCurlNoise \ +static_assert(alignof(UNiagaraDataInterfaceCurlNoise) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCurlNoise"); \ +static_assert(sizeof(UNiagaraDataInterfaceCurlNoise) == 0x000048, "Wrong size on UNiagaraDataInterfaceCurlNoise"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurlNoise, Seed) == 0x000038, "Member 'UNiagaraDataInterfaceCurlNoise::Seed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceCurve \ +static_assert(alignof(UNiagaraDataInterfaceCurve) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceCurve"); \ +static_assert(sizeof(UNiagaraDataInterfaceCurve) == 0x0000F0, "Wrong size on UNiagaraDataInterfaceCurve"); \ +static_assert(offsetof(UNiagaraDataInterfaceCurve, Curve) == 0x000070, "Member 'UNiagaraDataInterfaceCurve::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParticleCallbackHandler_ReceiveParticleData \ +static_assert(alignof(NiagaraParticleCallbackHandler_ReceiveParticleData) == 0x000008, "Wrong alignment on NiagaraParticleCallbackHandler_ReceiveParticleData"); \ +static_assert(sizeof(NiagaraParticleCallbackHandler_ReceiveParticleData) == 0x000030, "Wrong size on NiagaraParticleCallbackHandler_ReceiveParticleData"); \ +static_assert(offsetof(NiagaraParticleCallbackHandler_ReceiveParticleData, Data) == 0x000000, "Member 'NiagaraParticleCallbackHandler_ReceiveParticleData::Data' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParticleCallbackHandler_ReceiveParticleData, NiagaraSystem) == 0x000010, "Member 'NiagaraParticleCallbackHandler_ReceiveParticleData::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParticleCallbackHandler_ReceiveParticleData, SimulationPositionOffset) == 0x000018, "Member 'NiagaraParticleCallbackHandler_ReceiveParticleData::SimulationPositionOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INiagaraParticleCallbackHandler \ +static_assert(alignof(INiagaraParticleCallbackHandler) == 0x000001, "Wrong alignment on INiagaraParticleCallbackHandler"); \ +static_assert(sizeof(INiagaraParticleCallbackHandler) == 0x000001, "Wrong size on INiagaraParticleCallbackHandler"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceExport \ +static_assert(alignof(UNiagaraDataInterfaceExport) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceExport"); \ +static_assert(sizeof(UNiagaraDataInterfaceExport) == 0x000068, "Wrong size on UNiagaraDataInterfaceExport"); \ +static_assert(offsetof(UNiagaraDataInterfaceExport, CallbackHandlerParameter) == 0x000038, "Member 'UNiagaraDataInterfaceExport::CallbackHandlerParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceExport, GPUAllocationMode) == 0x000058, "Member 'UNiagaraDataInterfaceExport::GPUAllocationMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceExport, GPUAllocationFixedSize) == 0x00005C, "Member 'UNiagaraDataInterfaceExport::GPUAllocationFixedSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceExport, GPUAllocationPerParticleSize) == 0x000060, "Member 'UNiagaraDataInterfaceExport::GPUAllocationPerParticleSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid2D \ +static_assert(alignof(UNiagaraDataInterfaceGrid2D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid2D"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid2D) == 0x000060, "Wrong size on UNiagaraDataInterfaceGrid2D"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, ClearBeforeNonIterationStage) == 0x000038, "Member 'UNiagaraDataInterfaceGrid2D::ClearBeforeNonIterationStage' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, NumCellsX) == 0x00003C, "Member 'UNiagaraDataInterfaceGrid2D::NumCellsX' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, NumCellsY) == 0x000040, "Member 'UNiagaraDataInterfaceGrid2D::NumCellsY' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, NumCellsMaxAxis) == 0x000044, "Member 'UNiagaraDataInterfaceGrid2D::NumCellsMaxAxis' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, NumAttributes) == 0x000048, "Member 'UNiagaraDataInterfaceGrid2D::NumAttributes' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, SetGridFromMaxAxis) == 0x00004C, "Member 'UNiagaraDataInterfaceGrid2D::SetGridFromMaxAxis' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2D, WorldBBoxSize) == 0x000050, "Member 'UNiagaraDataInterfaceGrid2D::WorldBBoxSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D \ +static_assert(alignof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D) == 0x000020, "Wrong size on NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D, Dest) == 0x000008, "Member 'NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D::Dest' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D, TilesX) == 0x000010, "Member 'NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D::TilesX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D, TilesY) == 0x000014, "Member 'NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D::TilesY' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D, ReturnValue) == 0x000018, "Member 'NiagaraDataInterfaceGrid2DCollection_FillRawTexture2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid2DCollection_FillTexture2D \ +static_assert(alignof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid2DCollection_FillTexture2D"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D) == 0x000018, "Wrong size on NiagaraDataInterfaceGrid2DCollection_FillTexture2D"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid2DCollection_FillTexture2D::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D, Dest) == 0x000008, "Member 'NiagaraDataInterfaceGrid2DCollection_FillTexture2D::Dest' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D, AttributeIndex) == 0x000010, "Member 'NiagaraDataInterfaceGrid2DCollection_FillTexture2D::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_FillTexture2D, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceGrid2DCollection_FillTexture2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize \ +static_assert(alignof(NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize) == 0x000010, "Wrong size on NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize, SizeX) == 0x000008, "Member 'NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize::SizeX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize, SizeY) == 0x00000C, "Member 'NiagaraDataInterfaceGrid2DCollection_GetRawTextureSize::SizeY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid2DCollection_GetTextureSize \ +static_assert(alignof(NiagaraDataInterfaceGrid2DCollection_GetTextureSize) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid2DCollection_GetTextureSize"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid2DCollection_GetTextureSize) == 0x000010, "Wrong size on NiagaraDataInterfaceGrid2DCollection_GetTextureSize"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetTextureSize, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid2DCollection_GetTextureSize::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetTextureSize, SizeX) == 0x000008, "Member 'NiagaraDataInterfaceGrid2DCollection_GetTextureSize::SizeX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid2DCollection_GetTextureSize, SizeY) == 0x00000C, "Member 'NiagaraDataInterfaceGrid2DCollection_GetTextureSize::SizeY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid2DCollection \ +static_assert(alignof(UNiagaraDataInterfaceGrid2DCollection) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid2DCollection"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid2DCollection) == 0x000128, "Wrong size on UNiagaraDataInterfaceGrid2DCollection"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2DCollection, RenderTargetUserParameter) == 0x000060, "Member 'UNiagaraDataInterfaceGrid2DCollection::RenderTargetUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2DCollection, OverrideBufferFormat) == 0x000080, "Member 'UNiagaraDataInterfaceGrid2DCollection::OverrideBufferFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2DCollection, ManagedRenderTargets) == 0x0000D8, "Member 'UNiagaraDataInterfaceGrid2DCollection::ManagedRenderTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid2DCollectionReader \ +static_assert(alignof(UNiagaraDataInterfaceGrid2DCollectionReader) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid2DCollectionReader"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid2DCollectionReader) == 0x000148, "Wrong size on UNiagaraDataInterfaceGrid2DCollectionReader"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2DCollectionReader, EmitterName) == 0x000128, "Member 'UNiagaraDataInterfaceGrid2DCollectionReader::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid2DCollectionReader, DIName) == 0x000138, "Member 'UNiagaraDataInterfaceGrid2DCollectionReader::DIName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid3D \ +static_assert(alignof(UNiagaraDataInterfaceGrid3D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid3D"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid3D) == 0x000070, "Wrong size on UNiagaraDataInterfaceGrid3D"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, ClearBeforeNonIterationStage) == 0x000038, "Member 'UNiagaraDataInterfaceGrid3D::ClearBeforeNonIterationStage' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, NumCells) == 0x00003C, "Member 'UNiagaraDataInterfaceGrid3D::NumCells' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, CellSize) == 0x000048, "Member 'UNiagaraDataInterfaceGrid3D::CellSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, NumCellsMaxAxis) == 0x00004C, "Member 'UNiagaraDataInterfaceGrid3D::NumCellsMaxAxis' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, SetResolutionMethod) == 0x000050, "Member 'UNiagaraDataInterfaceGrid3D::SetResolutionMethod' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3D, WorldBBoxSize) == 0x000058, "Member 'UNiagaraDataInterfaceGrid3D::WorldBBoxSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture \ +static_assert(alignof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture) == 0x000020, "Wrong size on NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, Dest) == 0x000008, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::Dest' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, TilesX) == 0x000010, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::TilesX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, TilesY) == 0x000014, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::TilesY' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, TileZ) == 0x000018, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::TileZ' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture, ReturnValue) == 0x00001C, "Member 'NiagaraDataInterfaceGrid3DCollection_FillRawVolumeTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture \ +static_assert(alignof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture) == 0x000018, "Wrong size on NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture, Dest) == 0x000008, "Member 'NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture::Dest' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture, AttributeIndex) == 0x000010, "Member 'NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture, ReturnValue) == 0x000014, "Member 'NiagaraDataInterfaceGrid3DCollection_FillVolumeTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize \ +static_assert(alignof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize) == 0x000018, "Wrong size on NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize, SizeX) == 0x000008, "Member 'NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize::SizeX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize, SizeY) == 0x00000C, "Member 'NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize::SizeY' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize, SizeZ) == 0x000010, "Member 'NiagaraDataInterfaceGrid3DCollection_GetRawTextureSize::SizeZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceGrid3DCollection_GetTextureSize \ +static_assert(alignof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize) == 0x000008, "Wrong alignment on NiagaraDataInterfaceGrid3DCollection_GetTextureSize"); \ +static_assert(sizeof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize) == 0x000018, "Wrong size on NiagaraDataInterfaceGrid3DCollection_GetTextureSize"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize, Component) == 0x000000, "Member 'NiagaraDataInterfaceGrid3DCollection_GetTextureSize::Component' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize, SizeX) == 0x000008, "Member 'NiagaraDataInterfaceGrid3DCollection_GetTextureSize::SizeX' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize, SizeY) == 0x00000C, "Member 'NiagaraDataInterfaceGrid3DCollection_GetTextureSize::SizeY' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceGrid3DCollection_GetTextureSize, SizeZ) == 0x000010, "Member 'NiagaraDataInterfaceGrid3DCollection_GetTextureSize::SizeZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid3DCollection \ +static_assert(alignof(UNiagaraDataInterfaceGrid3DCollection) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid3DCollection"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid3DCollection) == 0x0000F0, "Wrong size on UNiagaraDataInterfaceGrid3DCollection"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3DCollection, NumAttributes) == 0x000070, "Member 'UNiagaraDataInterfaceGrid3DCollection::NumAttributes' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3DCollection, RenderTargetUserParameter) == 0x000078, "Member 'UNiagaraDataInterfaceGrid3DCollection::RenderTargetUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3DCollection, OverrideBufferFormat) == 0x000098, "Member 'UNiagaraDataInterfaceGrid3DCollection::OverrideBufferFormat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGrid3DCollectionReader \ +static_assert(alignof(UNiagaraDataInterfaceGrid3DCollectionReader) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGrid3DCollectionReader"); \ +static_assert(sizeof(UNiagaraDataInterfaceGrid3DCollectionReader) == 0x000110, "Wrong size on UNiagaraDataInterfaceGrid3DCollectionReader"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3DCollectionReader, EmitterName) == 0x0000F0, "Member 'UNiagaraDataInterfaceGrid3DCollectionReader::EmitterName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceGrid3DCollectionReader, DIName) == 0x000100, "Member 'UNiagaraDataInterfaceGrid3DCollectionReader::DIName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceIntRenderTarget2D \ +static_assert(alignof(UNiagaraDataInterfaceIntRenderTarget2D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceIntRenderTarget2D"); \ +static_assert(sizeof(UNiagaraDataInterfaceIntRenderTarget2D) == 0x000060, "Wrong size on UNiagaraDataInterfaceIntRenderTarget2D"); \ +static_assert(offsetof(UNiagaraDataInterfaceIntRenderTarget2D, Size) == 0x000038, "Member 'UNiagaraDataInterfaceIntRenderTarget2D::Size' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceIntRenderTarget2D, RenderTargetUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceIntRenderTarget2D::RenderTargetUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceLandscape \ +static_assert(alignof(UNiagaraDataInterfaceLandscape) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceLandscape"); \ +static_assert(sizeof(UNiagaraDataInterfaceLandscape) == 0x000058, "Wrong size on UNiagaraDataInterfaceLandscape"); \ +static_assert(offsetof(UNiagaraDataInterfaceLandscape, SourceLandscape) == 0x000038, "Member 'UNiagaraDataInterfaceLandscape::SourceLandscape' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceLandscape, SourceMode) == 0x000040, "Member 'UNiagaraDataInterfaceLandscape::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceLandscape, PhysicalMaterials) == 0x000048, "Member 'UNiagaraDataInterfaceLandscape::PhysicalMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceMeshRendererInfo \ +static_assert(alignof(UNiagaraDataInterfaceMeshRendererInfo) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceMeshRendererInfo"); \ +static_assert(sizeof(UNiagaraDataInterfaceMeshRendererInfo) == 0x000050, "Wrong size on UNiagaraDataInterfaceMeshRendererInfo"); \ +static_assert(offsetof(UNiagaraDataInterfaceMeshRendererInfo, MeshRenderer) == 0x000038, "Member 'UNiagaraDataInterfaceMeshRendererInfo::MeshRenderer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceNeighborGrid3D \ +static_assert(alignof(UNiagaraDataInterfaceNeighborGrid3D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceNeighborGrid3D"); \ +static_assert(sizeof(UNiagaraDataInterfaceNeighborGrid3D) == 0x000078, "Wrong size on UNiagaraDataInterfaceNeighborGrid3D"); \ +static_assert(offsetof(UNiagaraDataInterfaceNeighborGrid3D, MaxNeighborsPerCell) == 0x000070, "Member 'UNiagaraDataInterfaceNeighborGrid3D::MaxNeighborsPerCell' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceOcclusion \ +static_assert(alignof(UNiagaraDataInterfaceOcclusion) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceOcclusion"); \ +static_assert(sizeof(UNiagaraDataInterfaceOcclusion) == 0x000038, "Wrong size on UNiagaraDataInterfaceOcclusion"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceParticleRead \ +static_assert(alignof(UNiagaraDataInterfaceParticleRead) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceParticleRead"); \ +static_assert(sizeof(UNiagaraDataInterfaceParticleRead) == 0x000048, "Wrong size on UNiagaraDataInterfaceParticleRead"); \ +static_assert(offsetof(UNiagaraDataInterfaceParticleRead, EmitterName) == 0x000038, "Member 'UNiagaraDataInterfaceParticleRead::EmitterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfacePlatformSet \ +static_assert(alignof(UNiagaraDataInterfacePlatformSet) == 0x000008, "Wrong alignment on UNiagaraDataInterfacePlatformSet"); \ +static_assert(sizeof(UNiagaraDataInterfacePlatformSet) == 0x000068, "Wrong size on UNiagaraDataInterfacePlatformSet"); \ +static_assert(offsetof(UNiagaraDataInterfacePlatformSet, Platforms) == 0x000038, "Member 'UNiagaraDataInterfacePlatformSet::Platforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRasterizationGrid3D \ +static_assert(alignof(UNiagaraDataInterfaceRasterizationGrid3D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRasterizationGrid3D"); \ +static_assert(sizeof(UNiagaraDataInterfaceRasterizationGrid3D) == 0x000080, "Wrong size on UNiagaraDataInterfaceRasterizationGrid3D"); \ +static_assert(offsetof(UNiagaraDataInterfaceRasterizationGrid3D, NumAttributes) == 0x000070, "Member 'UNiagaraDataInterfaceRasterizationGrid3D::NumAttributes' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRasterizationGrid3D, Precision) == 0x000074, "Member 'UNiagaraDataInterfaceRasterizationGrid3D::Precision' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRasterizationGrid3D, ResetValue) == 0x000078, "Member 'UNiagaraDataInterfaceRasterizationGrid3D::ResetValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRenderTarget2D \ +static_assert(alignof(UNiagaraDataInterfaceRenderTarget2D) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRenderTarget2D"); \ +static_assert(sizeof(UNiagaraDataInterfaceRenderTarget2D) == 0x0000B8, "Wrong size on UNiagaraDataInterfaceRenderTarget2D"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, Size) == 0x000038, "Member 'UNiagaraDataInterfaceRenderTarget2D::Size' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, MipMapGeneration) == 0x000040, "Member 'UNiagaraDataInterfaceRenderTarget2D::MipMapGeneration' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, MipMapGenerationType) == 0x000041, "Member 'UNiagaraDataInterfaceRenderTarget2D::MipMapGenerationType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, OverrideRenderTargetFormat) == 0x000042, "Member 'UNiagaraDataInterfaceRenderTarget2D::OverrideRenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, OverrideRenderTargetFilter) == 0x000043, "Member 'UNiagaraDataInterfaceRenderTarget2D::OverrideRenderTargetFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTarget2D, RenderTargetUserParameter) == 0x000048, "Member 'UNiagaraDataInterfaceRenderTarget2D::RenderTargetUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRenderTargetCube \ +static_assert(alignof(UNiagaraDataInterfaceRenderTargetCube) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRenderTargetCube"); \ +static_assert(sizeof(UNiagaraDataInterfaceRenderTargetCube) == 0x000060, "Wrong size on UNiagaraDataInterfaceRenderTargetCube"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetCube, Size) == 0x000038, "Member 'UNiagaraDataInterfaceRenderTargetCube::Size' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetCube, OverrideRenderTargetFormat) == 0x00003C, "Member 'UNiagaraDataInterfaceRenderTargetCube::OverrideRenderTargetFormat' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetCube, OverrideRenderTargetFilter) == 0x00003D, "Member 'UNiagaraDataInterfaceRenderTargetCube::OverrideRenderTargetFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRenderTargetCube, RenderTargetUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceRenderTargetCube::RenderTargetUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceRigidMeshCollisionQuery \ +static_assert(alignof(UNiagaraDataInterfaceRigidMeshCollisionQuery) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceRigidMeshCollisionQuery"); \ +static_assert(sizeof(UNiagaraDataInterfaceRigidMeshCollisionQuery) == 0x000078, "Wrong size on UNiagaraDataInterfaceRigidMeshCollisionQuery"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, ActorTags) == 0x000038, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::ActorTags' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, ComponentTags) == 0x000048, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::ComponentTags' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, SourceActors) == 0x000058, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::SourceActors' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, OnlyUseMoveable) == 0x000068, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::OnlyUseMoveable' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, UseComplexCollisions) == 0x000069, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::UseComplexCollisions' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, GlobalSearchAllowed) == 0x00006A, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::GlobalSearchAllowed' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, GlobalSearchForced) == 0x00006B, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::GlobalSearchForced' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, GlobalSearchFallback_Unscripted) == 0x00006C, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::GlobalSearchFallback_Unscripted' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceRigidMeshCollisionQuery, MaxNumPrimitives) == 0x000070, "Member 'UNiagaraDataInterfaceRigidMeshCollisionQuery::MaxNumPrimitives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors \ +static_assert(alignof(NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors) == 0x000008, "Wrong alignment on NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors"); \ +static_assert(sizeof(NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors) == 0x000020, "Wrong size on NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors"); \ +static_assert(offsetof(NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors, NiagaraSystem) == 0x000000, "Member 'NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors, OverrideName) == 0x000008, "Member 'NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors, SourceActors) == 0x000010, "Member 'NiagaraDIRigidMeshCollisionFunctionLibrary_SetSourceActors::SourceActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDIRigidMeshCollisionFunctionLibrary \ +static_assert(alignof(UNiagaraDIRigidMeshCollisionFunctionLibrary) == 0x000008, "Wrong alignment on UNiagaraDIRigidMeshCollisionFunctionLibrary"); \ +static_assert(sizeof(UNiagaraDIRigidMeshCollisionFunctionLibrary) == 0x000028, "Wrong size on UNiagaraDIRigidMeshCollisionFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay \ +static_assert(alignof(NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay) == 0x000008, "Wrong alignment on NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay"); \ +static_assert(sizeof(NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay) == 0x000010, "Wrong size on NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay"); \ +static_assert(offsetof(NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay, InSource) == 0x000000, "Member 'NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay::InSource' has a wrong offset!"); \ +static_assert(offsetof(NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay, Reason) == 0x000008, "Member 'NiagaraDataInterfaceSkeletalMesh_OnSourceEndPlay::Reason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSkeletalMesh \ +static_assert(alignof(UNiagaraDataInterfaceSkeletalMesh) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSkeletalMesh"); \ +static_assert(sizeof(UNiagaraDataInterfaceSkeletalMesh) == 0x0000F8, "Wrong size on UNiagaraDataInterfaceSkeletalMesh"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, SourceMode) == 0x000038, "Member 'UNiagaraDataInterfaceSkeletalMesh::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, SoftSourceActor) == 0x000040, "Member 'UNiagaraDataInterfaceSkeletalMesh::SoftSourceActor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, ComponentTags) == 0x000068, "Member 'UNiagaraDataInterfaceSkeletalMesh::ComponentTags' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, SourceComponent) == 0x000078, "Member 'UNiagaraDataInterfaceSkeletalMesh::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, MeshUserParameter) == 0x000080, "Member 'UNiagaraDataInterfaceSkeletalMesh::MeshUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, SkinningMode) == 0x0000A0, "Member 'UNiagaraDataInterfaceSkeletalMesh::SkinningMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, SamplingRegions) == 0x0000A8, "Member 'UNiagaraDataInterfaceSkeletalMesh::SamplingRegions' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, WholeMeshLOD) == 0x0000B8, "Member 'UNiagaraDataInterfaceSkeletalMesh::WholeMeshLOD' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, FilteredBones) == 0x0000C0, "Member 'UNiagaraDataInterfaceSkeletalMesh::FilteredBones' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, FilteredSockets) == 0x0000D0, "Member 'UNiagaraDataInterfaceSkeletalMesh::FilteredSockets' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, ExcludeBoneName) == 0x0000E0, "Member 'UNiagaraDataInterfaceSkeletalMesh::ExcludeBoneName' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, UvSetIndex) == 0x0000EC, "Member 'UNiagaraDataInterfaceSkeletalMesh::UvSetIndex' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSkeletalMesh, bRequireCurrentFrameData) == 0x0000F0, "Member 'UNiagaraDataInterfaceSkeletalMesh::bRequireCurrentFrameData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSpline \ +static_assert(alignof(UNiagaraDataInterfaceSpline) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSpline"); \ +static_assert(sizeof(UNiagaraDataInterfaceSpline) == 0x0000B8, "Wrong size on UNiagaraDataInterfaceSpline"); \ +static_assert(offsetof(UNiagaraDataInterfaceSpline, Source) == 0x000038, "Member 'UNiagaraDataInterfaceSpline::Source' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSpline, SplineUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceSpline::SplineUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSpline, bUseLUT) == 0x000060, "Member 'UNiagaraDataInterfaceSpline::bUseLUT' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceSpline, NumLUTSteps) == 0x000064, "Member 'UNiagaraDataInterfaceSpline::NumLUTSteps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceSpriteRendererInfo \ +static_assert(alignof(UNiagaraDataInterfaceSpriteRendererInfo) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceSpriteRendererInfo"); \ +static_assert(sizeof(UNiagaraDataInterfaceSpriteRendererInfo) == 0x000040, "Wrong size on UNiagaraDataInterfaceSpriteRendererInfo"); \ +static_assert(offsetof(UNiagaraDataInterfaceSpriteRendererInfo, SpriteRenderer) == 0x000038, "Member 'UNiagaraDataInterfaceSpriteRendererInfo::SpriteRenderer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceTexture \ +static_assert(alignof(UNiagaraDataInterfaceTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceTexture"); \ +static_assert(sizeof(UNiagaraDataInterfaceTexture) == 0x000060, "Wrong size on UNiagaraDataInterfaceTexture"); \ +static_assert(offsetof(UNiagaraDataInterfaceTexture, Texture) == 0x000038, "Member 'UNiagaraDataInterfaceTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceTexture, TextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceTexture::TextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVector2DCurve \ +static_assert(alignof(UNiagaraDataInterfaceVector2DCurve) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVector2DCurve"); \ +static_assert(sizeof(UNiagaraDataInterfaceVector2DCurve) == 0x000170, "Wrong size on UNiagaraDataInterfaceVector2DCurve"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector2DCurve, XCurve) == 0x000070, "Member 'UNiagaraDataInterfaceVector2DCurve::XCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector2DCurve, YCurve) == 0x0000F0, "Member 'UNiagaraDataInterfaceVector2DCurve::YCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVector4Curve \ +static_assert(alignof(UNiagaraDataInterfaceVector4Curve) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVector4Curve"); \ +static_assert(sizeof(UNiagaraDataInterfaceVector4Curve) == 0x000270, "Wrong size on UNiagaraDataInterfaceVector4Curve"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector4Curve, XCurve) == 0x000070, "Member 'UNiagaraDataInterfaceVector4Curve::XCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector4Curve, YCurve) == 0x0000F0, "Member 'UNiagaraDataInterfaceVector4Curve::YCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector4Curve, ZCurve) == 0x000170, "Member 'UNiagaraDataInterfaceVector4Curve::ZCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVector4Curve, WCurve) == 0x0001F0, "Member 'UNiagaraDataInterfaceVector4Curve::WCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVectorCurve \ +static_assert(alignof(UNiagaraDataInterfaceVectorCurve) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVectorCurve"); \ +static_assert(sizeof(UNiagaraDataInterfaceVectorCurve) == 0x0001F0, "Wrong size on UNiagaraDataInterfaceVectorCurve"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorCurve, XCurve) == 0x000070, "Member 'UNiagaraDataInterfaceVectorCurve::XCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorCurve, YCurve) == 0x0000F0, "Member 'UNiagaraDataInterfaceVectorCurve::YCurve' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorCurve, ZCurve) == 0x000170, "Member 'UNiagaraDataInterfaceVectorCurve::ZCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVectorField \ +static_assert(alignof(UNiagaraDataInterfaceVectorField) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVectorField"); \ +static_assert(sizeof(UNiagaraDataInterfaceVectorField) == 0x000048, "Wrong size on UNiagaraDataInterfaceVectorField"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorField, Field) == 0x000038, "Member 'UNiagaraDataInterfaceVectorField::Field' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorField, bTileX) == 0x000040, "Member 'UNiagaraDataInterfaceVectorField::bTileX' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorField, bTileY) == 0x000041, "Member 'UNiagaraDataInterfaceVectorField::bTileY' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVectorField, bTileZ) == 0x000042, "Member 'UNiagaraDataInterfaceVectorField::bTileZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVolumeCache \ +static_assert(alignof(UNiagaraDataInterfaceVolumeCache) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVolumeCache"); \ +static_assert(sizeof(UNiagaraDataInterfaceVolumeCache) == 0x000090, "Wrong size on UNiagaraDataInterfaceVolumeCache"); \ +static_assert(offsetof(UNiagaraDataInterfaceVolumeCache, VolumeCache) == 0x000038, "Member 'UNiagaraDataInterfaceVolumeCache::VolumeCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceVolumeTexture \ +static_assert(alignof(UNiagaraDataInterfaceVolumeTexture) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceVolumeTexture"); \ +static_assert(sizeof(UNiagaraDataInterfaceVolumeTexture) == 0x000060, "Wrong size on UNiagaraDataInterfaceVolumeTexture"); \ +static_assert(offsetof(UNiagaraDataInterfaceVolumeTexture, Texture) == 0x000038, "Member 'UNiagaraDataInterfaceVolumeTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceVolumeTexture, TextureUserParameter) == 0x000040, "Member 'UNiagaraDataInterfaceVolumeTexture::TextureUserParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDecalRendererProperties \ +static_assert(alignof(UNiagaraDecalRendererProperties) == 0x000008, "Wrong alignment on UNiagaraDecalRendererProperties"); \ +static_assert(sizeof(UNiagaraDecalRendererProperties) == 0x000328, "Wrong size on UNiagaraDecalRendererProperties"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, Material) == 0x0000C0, "Member 'UNiagaraDecalRendererProperties::Material' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, MaterialParameterBinding) == 0x0000C8, "Member 'UNiagaraDecalRendererProperties::MaterialParameterBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, SourceMode) == 0x0000D4, "Member 'UNiagaraDecalRendererProperties::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, RendererVisibility) == 0x0000D8, "Member 'UNiagaraDecalRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalScreenSizeFade) == 0x0000DC, "Member 'UNiagaraDecalRendererProperties::DecalScreenSizeFade' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, PositionBinding) == 0x0000E0, "Member 'UNiagaraDecalRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalOrientationBinding) == 0x000118, "Member 'UNiagaraDecalRendererProperties::DecalOrientationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalSizeBinding) == 0x000150, "Member 'UNiagaraDecalRendererProperties::DecalSizeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalFadeBinding) == 0x000188, "Member 'UNiagaraDecalRendererProperties::DecalFadeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalSortOrderBinding) == 0x0001C0, "Member 'UNiagaraDecalRendererProperties::DecalSortOrderBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalColorBinding) == 0x0001F8, "Member 'UNiagaraDecalRendererProperties::DecalColorBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, DecalVisibleBinding) == 0x000230, "Member 'UNiagaraDecalRendererProperties::DecalVisibleBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, RendererVisibilityTagBinding) == 0x000268, "Member 'UNiagaraDecalRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDecalRendererProperties, MaterialParameters) == 0x0002A0, "Member 'UNiagaraDecalRendererProperties::MaterialParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraEditorDataBase \ +static_assert(alignof(UNiagaraEditorDataBase) == 0x000008, "Wrong alignment on UNiagaraEditorDataBase"); \ +static_assert(sizeof(UNiagaraEditorDataBase) == 0x000028, "Wrong size on UNiagaraEditorDataBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraEditorParametersAdapterBase \ +static_assert(alignof(UNiagaraEditorParametersAdapterBase) == 0x000008, "Wrong alignment on UNiagaraEditorParametersAdapterBase"); \ +static_assert(sizeof(UNiagaraEditorParametersAdapterBase) == 0x000028, "Wrong size on UNiagaraEditorParametersAdapterBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraSignificanceHandlerDistance \ +static_assert(alignof(UNiagaraSignificanceHandlerDistance) == 0x000008, "Wrong alignment on UNiagaraSignificanceHandlerDistance"); \ +static_assert(sizeof(UNiagaraSignificanceHandlerDistance) == 0x000028, "Wrong size on UNiagaraSignificanceHandlerDistance"); \ + +#define DUMPER7_ASSERTS_UNiagaraEffectType \ +static_assert(alignof(UNiagaraEffectType) == 0x000008, "Wrong alignment on UNiagaraEffectType"); \ +static_assert(sizeof(UNiagaraEffectType) == 0x0000A0, "Wrong size on UNiagaraEffectType"); \ +static_assert(offsetof(UNiagaraEffectType, bAllowCullingForLocalPlayers) == 0x000028, "Member 'UNiagaraEffectType::bAllowCullingForLocalPlayers' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, UpdateFrequency) == 0x00002C, "Member 'UNiagaraEffectType::UpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, CullReaction) == 0x000030, "Member 'UNiagaraEffectType::CullReaction' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, SignificanceHandler) == 0x000038, "Member 'UNiagaraEffectType::SignificanceHandler' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, DetailLevelScalabilitySettings) == 0x000040, "Member 'UNiagaraEffectType::DetailLevelScalabilitySettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, SystemScalabilitySettings) == 0x000050, "Member 'UNiagaraEffectType::SystemScalabilitySettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, EmitterScalabilitySettings) == 0x000060, "Member 'UNiagaraEffectType::EmitterScalabilitySettings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, PerformanceBaselineController) == 0x000078, "Member 'UNiagaraEffectType::PerformanceBaselineController' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, PerfBaselineStats) == 0x000080, "Member 'UNiagaraEffectType::PerfBaselineStats' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraEffectType, PerfBaselineVersion) == 0x000090, "Member 'UNiagaraEffectType::PerfBaselineVersion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup \ +static_assert(alignof(NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup"); \ +static_assert(sizeof(NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup) == 0x000010, "Wrong size on NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup"); \ +static_assert(offsetof(NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup, ReturnValue) == 0x000008, "Member 'NiagaraFunctionLibrary_AcquireNiagaraGPURayTracedCollisionGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_GetNiagaraParameterCollection \ +static_assert(alignof(NiagaraFunctionLibrary_GetNiagaraParameterCollection) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_GetNiagaraParameterCollection"); \ +static_assert(sizeof(NiagaraFunctionLibrary_GetNiagaraParameterCollection) == 0x000018, "Wrong size on NiagaraFunctionLibrary_GetNiagaraParameterCollection"); \ +static_assert(offsetof(NiagaraFunctionLibrary_GetNiagaraParameterCollection, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_GetNiagaraParameterCollection::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_GetNiagaraParameterCollection, Collection) == 0x000008, "Member 'NiagaraFunctionLibrary_GetNiagaraParameterCollection::Collection' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_GetNiagaraParameterCollection, ReturnValue) == 0x000010, "Member 'NiagaraFunctionLibrary_GetNiagaraParameterCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent \ +static_assert(alignof(NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent"); \ +static_assert(sizeof(NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent) == 0x000020, "Wrong size on NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent, SkeletalMeshComponent) == 0x000018, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableSkeletalMeshComponent::SkeletalMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh \ +static_assert(alignof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh"); \ +static_assert(sizeof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh) == 0x000020, "Wrong size on NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh, StaticMesh) == 0x000018, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMesh::StaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent \ +static_assert(alignof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent"); \ +static_assert(sizeof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent) == 0x000020, "Wrong size on NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent, StaticMeshComponent) == 0x000018, "Member 'NiagaraFunctionLibrary_OverrideSystemUserVariableStaticMeshComponent::StaticMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup \ +static_assert(alignof(NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup"); \ +static_assert(sizeof(NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup) == 0x000010, "Wrong size on NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup"); \ +static_assert(offsetof(NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup, CollisionGroup) == 0x000008, "Member 'NiagaraFunctionLibrary_ReleaseNiagaraGPURayTracedCollisionGroup::CollisionGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup \ +static_assert(alignof(NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup) == 0x000018, "Wrong size on NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup, Actor) == 0x000008, "Member 'NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup::Actor' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup, CollisionGroup) == 0x000010, "Member 'NiagaraFunctionLibrary_SetActorNiagaraGPURayTracedCollisionGroup::CollisionGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup \ +static_assert(alignof(NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup) == 0x000018, "Wrong size on NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup, Primitive) == 0x000008, "Member 'NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup::Primitive' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup, CollisionGroup) == 0x000010, "Member 'NiagaraFunctionLibrary_SetComponentNiagaraGPURayTracedCollisionGroup::CollisionGroup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones \ +static_assert(alignof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones) == 0x000028, "Wrong size on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones, FilteredBones) == 0x000018, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredBones::FilteredBones' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets \ +static_assert(alignof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets) == 0x000028, "Wrong size on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets, FilteredSockets) == 0x000018, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceFilteredSockets::FilteredSockets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions \ +static_assert(alignof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions) == 0x000028, "Wrong size on NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions, SamplingRegions) == 0x000018, "Member 'NiagaraFunctionLibrary_SetSkeletalMeshDataInterfaceSamplingRegions::SamplingRegions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetTexture2DArrayObject \ +static_assert(alignof(NiagaraFunctionLibrary_SetTexture2DArrayObject) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetTexture2DArrayObject"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetTexture2DArrayObject) == 0x000020, "Wrong size on NiagaraFunctionLibrary_SetTexture2DArrayObject"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTexture2DArrayObject, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetTexture2DArrayObject::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTexture2DArrayObject, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetTexture2DArrayObject::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTexture2DArrayObject, Texture) == 0x000018, "Member 'NiagaraFunctionLibrary_SetTexture2DArrayObject::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetTextureObject \ +static_assert(alignof(NiagaraFunctionLibrary_SetTextureObject) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetTextureObject"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetTextureObject) == 0x000020, "Wrong size on NiagaraFunctionLibrary_SetTextureObject"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTextureObject, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetTextureObject::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTextureObject, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetTextureObject::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetTextureObject, Texture) == 0x000018, "Member 'NiagaraFunctionLibrary_SetTextureObject::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SetVolumeTextureObject \ +static_assert(alignof(NiagaraFunctionLibrary_SetVolumeTextureObject) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SetVolumeTextureObject"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SetVolumeTextureObject) == 0x000020, "Wrong size on NiagaraFunctionLibrary_SetVolumeTextureObject"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetVolumeTextureObject, NiagaraSystem) == 0x000000, "Member 'NiagaraFunctionLibrary_SetVolumeTextureObject::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetVolumeTextureObject, OverrideName) == 0x000008, "Member 'NiagaraFunctionLibrary_SetVolumeTextureObject::OverrideName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SetVolumeTextureObject, Texture) == 0x000018, "Member 'NiagaraFunctionLibrary_SetVolumeTextureObject::Texture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SpawnSystemAtLocation \ +static_assert(alignof(NiagaraFunctionLibrary_SpawnSystemAtLocation) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SpawnSystemAtLocation"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SpawnSystemAtLocation) == 0x000068, "Wrong size on NiagaraFunctionLibrary_SpawnSystemAtLocation"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, WorldContextObject) == 0x000000, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, SystemTemplate) == 0x000008, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::SystemTemplate' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, Location) == 0x000010, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, Rotation) == 0x000028, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, Scale) == 0x000040, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::Scale' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, bAutoDestroy) == 0x000058, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, bAutoActivate) == 0x000059, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::bAutoActivate' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, PoolingMethod) == 0x00005A, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::PoolingMethod' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, bPreCullCheck) == 0x00005B, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::bPreCullCheck' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocation, ReturnValue) == 0x000060, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams \ +static_assert(alignof(NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams) == 0x000078, "Wrong size on NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams, SpawnParams) == 0x000000, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams::SpawnParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams, ReturnValue) == 0x000070, "Member 'NiagaraFunctionLibrary_SpawnSystemAtLocationWithParams::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SpawnSystemAttached \ +static_assert(alignof(NiagaraFunctionLibrary_SpawnSystemAttached) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SpawnSystemAttached"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SpawnSystemAttached) == 0x000058, "Wrong size on NiagaraFunctionLibrary_SpawnSystemAttached"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, SystemTemplate) == 0x000000, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::SystemTemplate' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, AttachToComponent) == 0x000008, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::AttachToComponent' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, AttachPointName) == 0x000010, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::AttachPointName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, Location) == 0x000018, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::Location' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, Rotation) == 0x000030, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::Rotation' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, LocationType) == 0x000048, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::LocationType' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, bAutoDestroy) == 0x000049, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::bAutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, bAutoActivate) == 0x00004A, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::bAutoActivate' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, PoolingMethod) == 0x00004B, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::PoolingMethod' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, bPreCullCheck) == 0x00004C, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::bPreCullCheck' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttached, ReturnValue) == 0x000050, "Member 'NiagaraFunctionLibrary_SpawnSystemAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraFunctionLibrary_SpawnSystemAttachedWithParams \ +static_assert(alignof(NiagaraFunctionLibrary_SpawnSystemAttachedWithParams) == 0x000008, "Wrong alignment on NiagaraFunctionLibrary_SpawnSystemAttachedWithParams"); \ +static_assert(sizeof(NiagaraFunctionLibrary_SpawnSystemAttachedWithParams) == 0x000078, "Wrong size on NiagaraFunctionLibrary_SpawnSystemAttachedWithParams"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttachedWithParams, SpawnParams) == 0x000000, "Member 'NiagaraFunctionLibrary_SpawnSystemAttachedWithParams::SpawnParams' has a wrong offset!"); \ +static_assert(offsetof(NiagaraFunctionLibrary_SpawnSystemAttachedWithParams, ReturnValue) == 0x000070, "Member 'NiagaraFunctionLibrary_SpawnSystemAttachedWithParams::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraFunctionLibrary \ +static_assert(alignof(UNiagaraFunctionLibrary) == 0x000008, "Wrong alignment on UNiagaraFunctionLibrary"); \ +static_assert(sizeof(UNiagaraFunctionLibrary) == 0x000028, "Wrong size on UNiagaraFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UNiagaraLightRendererProperties \ +static_assert(alignof(UNiagaraLightRendererProperties) == 0x000008, "Wrong alignment on UNiagaraLightRendererProperties"); \ +static_assert(sizeof(UNiagaraLightRendererProperties) == 0x0002A0, "Wrong size on UNiagaraLightRendererProperties"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, SourceMode) == 0x0000C0, "Member 'UNiagaraLightRendererProperties::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, RadiusScale) == 0x0000C8, "Member 'UNiagaraLightRendererProperties::RadiusScale' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, DefaultExponent) == 0x0000CC, "Member 'UNiagaraLightRendererProperties::DefaultExponent' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, ColorAdd) == 0x0000D0, "Member 'UNiagaraLightRendererProperties::ColorAdd' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, InverseExposureBlend) == 0x0000DC, "Member 'UNiagaraLightRendererProperties::InverseExposureBlend' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, RendererVisibility) == 0x0000E0, "Member 'UNiagaraLightRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, LightRenderingEnabledBinding) == 0x0000E8, "Member 'UNiagaraLightRendererProperties::LightRenderingEnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, LightExponentBinding) == 0x000120, "Member 'UNiagaraLightRendererProperties::LightExponentBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, PositionBinding) == 0x000158, "Member 'UNiagaraLightRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, ColorBinding) == 0x000190, "Member 'UNiagaraLightRendererProperties::ColorBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, RadiusBinding) == 0x0001C8, "Member 'UNiagaraLightRendererProperties::RadiusBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, VolumetricScatteringBinding) == 0x000200, "Member 'UNiagaraLightRendererProperties::VolumetricScatteringBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraLightRendererProperties, RendererVisibilityTagBinding) == 0x000238, "Member 'UNiagaraLightRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetBoolParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetBoolParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetBoolParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetBoolParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_GetBoolParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetBoolParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetBoolParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetBoolParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetBoolParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetColorParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetColorParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetColorParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetColorParameter) == 0x000020, "Wrong size on NiagaraParameterCollectionInstance_GetColorParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetColorParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetColorParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetColorParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetColorParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetFloatParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetFloatParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetFloatParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetFloatParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_GetFloatParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetFloatParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetFloatParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetFloatParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetFloatParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetIntParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetIntParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetIntParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetIntParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_GetIntParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetIntParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetIntParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetIntParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetIntParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetQuatParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetQuatParameter) == 0x000010, "Wrong alignment on NiagaraParameterCollectionInstance_GetQuatParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetQuatParameter) == 0x000030, "Wrong size on NiagaraParameterCollectionInstance_GetQuatParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetQuatParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetQuatParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetQuatParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetQuatParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetVector2DParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetVector2DParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetVector2DParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetVector2DParameter) == 0x000020, "Wrong size on NiagaraParameterCollectionInstance_GetVector2DParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVector2DParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetVector2DParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVector2DParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetVector2DParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetVector4Parameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetVector4Parameter) == 0x000010, "Wrong alignment on NiagaraParameterCollectionInstance_GetVector4Parameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetVector4Parameter) == 0x000030, "Wrong size on NiagaraParameterCollectionInstance_GetVector4Parameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVector4Parameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetVector4Parameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVector4Parameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetVector4Parameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_GetVectorParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_GetVectorParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_GetVectorParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_GetVectorParameter) == 0x000028, "Wrong size on NiagaraParameterCollectionInstance_GetVectorParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVectorParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_GetVectorParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_GetVectorParameter, ReturnValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_GetVectorParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetBoolParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetBoolParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetBoolParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetBoolParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_SetBoolParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetBoolParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetBoolParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetBoolParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetBoolParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetColorParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetColorParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetColorParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetColorParameter) == 0x000020, "Wrong size on NiagaraParameterCollectionInstance_SetColorParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetColorParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetColorParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetColorParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetColorParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetFloatParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetFloatParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetFloatParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetFloatParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_SetFloatParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetFloatParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetFloatParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetFloatParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetFloatParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetIntParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetIntParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetIntParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetIntParameter) == 0x000018, "Wrong size on NiagaraParameterCollectionInstance_SetIntParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetIntParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetIntParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetIntParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetIntParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetQuatParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetQuatParameter) == 0x000010, "Wrong alignment on NiagaraParameterCollectionInstance_SetQuatParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetQuatParameter) == 0x000030, "Wrong size on NiagaraParameterCollectionInstance_SetQuatParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetQuatParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetQuatParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetQuatParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetQuatParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetVector2DParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetVector2DParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetVector2DParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetVector2DParameter) == 0x000020, "Wrong size on NiagaraParameterCollectionInstance_SetVector2DParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVector2DParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetVector2DParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVector2DParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetVector2DParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetVector4Parameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetVector4Parameter) == 0x000010, "Wrong alignment on NiagaraParameterCollectionInstance_SetVector4Parameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetVector4Parameter) == 0x000030, "Wrong size on NiagaraParameterCollectionInstance_SetVector4Parameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVector4Parameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetVector4Parameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVector4Parameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetVector4Parameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraParameterCollectionInstance_SetVectorParameter \ +static_assert(alignof(NiagaraParameterCollectionInstance_SetVectorParameter) == 0x000008, "Wrong alignment on NiagaraParameterCollectionInstance_SetVectorParameter"); \ +static_assert(sizeof(NiagaraParameterCollectionInstance_SetVectorParameter) == 0x000028, "Wrong size on NiagaraParameterCollectionInstance_SetVectorParameter"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVectorParameter, InVariableName) == 0x000000, "Member 'NiagaraParameterCollectionInstance_SetVectorParameter::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(NiagaraParameterCollectionInstance_SetVectorParameter, InValue) == 0x000010, "Member 'NiagaraParameterCollectionInstance_SetVectorParameter::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraParameterCollectionInstance \ +static_assert(alignof(UNiagaraParameterCollectionInstance) == 0x000008, "Wrong alignment on UNiagaraParameterCollectionInstance"); \ +static_assert(sizeof(UNiagaraParameterCollectionInstance) == 0x0000F0, "Wrong size on UNiagaraParameterCollectionInstance"); \ +static_assert(offsetof(UNiagaraParameterCollectionInstance, Collection) == 0x000028, "Member 'UNiagaraParameterCollectionInstance::Collection' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollectionInstance, OverridenParameters) == 0x000030, "Member 'UNiagaraParameterCollectionInstance::OverridenParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollectionInstance, ParameterStorage) == 0x000040, "Member 'UNiagaraParameterCollectionInstance::ParameterStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraParameterCollection \ +static_assert(alignof(UNiagaraParameterCollection) == 0x000008, "Wrong alignment on UNiagaraParameterCollection"); \ +static_assert(sizeof(UNiagaraParameterCollection) == 0x000060, "Wrong size on UNiagaraParameterCollection"); \ +static_assert(offsetof(UNiagaraParameterCollection, Namespace) == 0x000028, "Member 'UNiagaraParameterCollection::Namespace' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollection, Parameters) == 0x000030, "Member 'UNiagaraParameterCollection::Parameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollection, SourceMaterialCollection) == 0x000040, "Member 'UNiagaraParameterCollection::SourceMaterialCollection' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollection, DefaultInstance) == 0x000048, "Member 'UNiagaraParameterCollection::DefaultInstance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraParameterCollection, CompileId) == 0x000050, "Member 'UNiagaraParameterCollection::CompileId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraBaselineController_GetSystem \ +static_assert(alignof(NiagaraBaselineController_GetSystem) == 0x000008, "Wrong alignment on NiagaraBaselineController_GetSystem"); \ +static_assert(sizeof(NiagaraBaselineController_GetSystem) == 0x000008, "Wrong size on NiagaraBaselineController_GetSystem"); \ +static_assert(offsetof(NiagaraBaselineController_GetSystem, ReturnValue) == 0x000000, "Member 'NiagaraBaselineController_GetSystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraBaselineController_OnEndTest \ +static_assert(alignof(NiagaraBaselineController_OnEndTest) == 0x000004, "Wrong alignment on NiagaraBaselineController_OnEndTest"); \ +static_assert(sizeof(NiagaraBaselineController_OnEndTest) == 0x000010, "Wrong size on NiagaraBaselineController_OnEndTest"); \ +static_assert(offsetof(NiagaraBaselineController_OnEndTest, Stats) == 0x000000, "Member 'NiagaraBaselineController_OnEndTest::Stats' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraBaselineController_OnOwnerTick \ +static_assert(alignof(NiagaraBaselineController_OnOwnerTick) == 0x000004, "Wrong alignment on NiagaraBaselineController_OnOwnerTick"); \ +static_assert(sizeof(NiagaraBaselineController_OnOwnerTick) == 0x000004, "Wrong size on NiagaraBaselineController_OnOwnerTick"); \ +static_assert(offsetof(NiagaraBaselineController_OnOwnerTick, DeltaTime) == 0x000000, "Member 'NiagaraBaselineController_OnOwnerTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraBaselineController_OnTickTest \ +static_assert(alignof(NiagaraBaselineController_OnTickTest) == 0x000001, "Wrong alignment on NiagaraBaselineController_OnTickTest"); \ +static_assert(sizeof(NiagaraBaselineController_OnTickTest) == 0x000001, "Wrong size on NiagaraBaselineController_OnTickTest"); \ +static_assert(offsetof(NiagaraBaselineController_OnTickTest, ReturnValue) == 0x000000, "Member 'NiagaraBaselineController_OnTickTest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBaselineController \ +static_assert(alignof(UNiagaraBaselineController) == 0x000008, "Wrong alignment on UNiagaraBaselineController"); \ +static_assert(sizeof(UNiagaraBaselineController) == 0x000068, "Wrong size on UNiagaraBaselineController"); \ +static_assert(offsetof(UNiagaraBaselineController, TestDuration) == 0x000028, "Member 'UNiagaraBaselineController::TestDuration' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBaselineController, EffectType) == 0x000030, "Member 'UNiagaraBaselineController::EffectType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBaselineController, Owner) == 0x000038, "Member 'UNiagaraBaselineController::Owner' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBaselineController, System) == 0x000040, "Member 'UNiagaraBaselineController::System' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraBaselineController_Basic \ +static_assert(alignof(UNiagaraBaselineController_Basic) == 0x000008, "Wrong alignment on UNiagaraBaselineController_Basic"); \ +static_assert(sizeof(UNiagaraBaselineController_Basic) == 0x000080, "Wrong size on UNiagaraBaselineController_Basic"); \ +static_assert(offsetof(UNiagaraBaselineController_Basic, NumInstances) == 0x000068, "Member 'UNiagaraBaselineController_Basic::NumInstances' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraBaselineController_Basic, SpawnedComponents) == 0x000070, "Member 'UNiagaraBaselineController_Basic::SpawnedComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANiagaraPerfBaselineActor \ +static_assert(alignof(ANiagaraPerfBaselineActor) == 0x000008, "Wrong alignment on ANiagaraPerfBaselineActor"); \ +static_assert(sizeof(ANiagaraPerfBaselineActor) == 0x0002A8, "Wrong size on ANiagaraPerfBaselineActor"); \ +static_assert(offsetof(ANiagaraPerfBaselineActor, Controller) == 0x000298, "Member 'ANiagaraPerfBaselineActor::Controller' has a wrong offset!"); \ +static_assert(offsetof(ANiagaraPerfBaselineActor, Label) == 0x0002A0, "Member 'ANiagaraPerfBaselineActor::Label' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewBase_SetLabelText \ +static_assert(alignof(NiagaraPreviewBase_SetLabelText) == 0x000008, "Wrong alignment on NiagaraPreviewBase_SetLabelText"); \ +static_assert(sizeof(NiagaraPreviewBase_SetLabelText) == 0x000030, "Wrong size on NiagaraPreviewBase_SetLabelText"); \ +static_assert(offsetof(NiagaraPreviewBase_SetLabelText, InXAxisText) == 0x000000, "Member 'NiagaraPreviewBase_SetLabelText::InXAxisText' has a wrong offset!"); \ +static_assert(offsetof(NiagaraPreviewBase_SetLabelText, InYAxisText) == 0x000018, "Member 'NiagaraPreviewBase_SetLabelText::InYAxisText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NiagaraPreviewBase_SetSystem \ +static_assert(alignof(NiagaraPreviewBase_SetSystem) == 0x000008, "Wrong alignment on NiagaraPreviewBase_SetSystem"); \ +static_assert(sizeof(NiagaraPreviewBase_SetSystem) == 0x000008, "Wrong size on NiagaraPreviewBase_SetSystem"); \ +static_assert(offsetof(NiagaraPreviewBase_SetSystem, InSystem) == 0x000000, "Member 'NiagaraPreviewBase_SetSystem::InSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANiagaraPreviewBase \ +static_assert(alignof(ANiagaraPreviewBase) == 0x000008, "Wrong alignment on ANiagaraPreviewBase"); \ +static_assert(sizeof(ANiagaraPreviewBase) == 0x000298, "Wrong size on ANiagaraPreviewBase"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamFloat \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamFloat) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamFloat"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamFloat) == 0x000040, "Wrong size on UNiagaraPreviewAxis_InterpParamFloat"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamFloat, Min) == 0x000038, "Member 'UNiagaraPreviewAxis_InterpParamFloat::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamFloat, Max) == 0x00003C, "Member 'UNiagaraPreviewAxis_InterpParamFloat::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamVector \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamVector) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamVector"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamVector) == 0x000068, "Wrong size on UNiagaraPreviewAxis_InterpParamVector"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector, Min) == 0x000038, "Member 'UNiagaraPreviewAxis_InterpParamVector::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamVector, Max) == 0x000050, "Member 'UNiagaraPreviewAxis_InterpParamVector::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraPreviewAxis_InterpParamLinearColor \ +static_assert(alignof(UNiagaraPreviewAxis_InterpParamLinearColor) == 0x000008, "Wrong alignment on UNiagaraPreviewAxis_InterpParamLinearColor"); \ +static_assert(sizeof(UNiagaraPreviewAxis_InterpParamLinearColor) == 0x000058, "Wrong size on UNiagaraPreviewAxis_InterpParamLinearColor"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamLinearColor, Min) == 0x000038, "Member 'UNiagaraPreviewAxis_InterpParamLinearColor::Min' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraPreviewAxis_InterpParamLinearColor, Max) == 0x000048, "Member 'UNiagaraPreviewAxis_InterpParamLinearColor::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraRibbonRendererProperties \ +static_assert(alignof(UNiagaraRibbonRendererProperties) == 0x000008, "Wrong alignment on UNiagaraRibbonRendererProperties"); \ +static_assert(sizeof(UNiagaraRibbonRendererProperties) == 0x000768, "Wrong size on UNiagaraRibbonRendererProperties"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, Material) == 0x0000C0, "Member 'UNiagaraRibbonRendererProperties::Material' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MaterialUserParamBinding) == 0x0000C8, "Member 'UNiagaraRibbonRendererProperties::MaterialUserParamBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, UV0Settings) == 0x0000E8, "Member 'UNiagaraRibbonRendererProperties::UV0Settings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, UV1Settings) == 0x000110, "Member 'UNiagaraRibbonRendererProperties::UV1Settings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, FacingMode) == 0x000138, "Member 'UNiagaraRibbonRendererProperties::FacingMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MaxNumRibbons) == 0x00013C, "Member 'UNiagaraRibbonRendererProperties::MaxNumRibbons' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, DrawDirection) == 0x000140, "Member 'UNiagaraRibbonRendererProperties::DrawDirection' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, Shape) == 0x000141, "Member 'UNiagaraRibbonRendererProperties::Shape' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, WidthSegmentationCount) == 0x000144, "Member 'UNiagaraRibbonRendererProperties::WidthSegmentationCount' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MultiPlaneCount) == 0x000148, "Member 'UNiagaraRibbonRendererProperties::MultiPlaneCount' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, TubeSubdivisions) == 0x00014C, "Member 'UNiagaraRibbonRendererProperties::TubeSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, CustomVertices) == 0x000150, "Member 'UNiagaraRibbonRendererProperties::CustomVertices' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, TessellationMode) == 0x000160, "Member 'UNiagaraRibbonRendererProperties::TessellationMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, CurveTension) == 0x000164, "Member 'UNiagaraRibbonRendererProperties::CurveTension' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, TessellationFactor) == 0x000168, "Member 'UNiagaraRibbonRendererProperties::TessellationFactor' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, TessellationAngle) == 0x00016C, "Member 'UNiagaraRibbonRendererProperties::TessellationAngle' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, PositionBinding) == 0x000170, "Member 'UNiagaraRibbonRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, ColorBinding) == 0x0001A8, "Member 'UNiagaraRibbonRendererProperties::ColorBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, VelocityBinding) == 0x0001E0, "Member 'UNiagaraRibbonRendererProperties::VelocityBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, NormalizedAgeBinding) == 0x000218, "Member 'UNiagaraRibbonRendererProperties::NormalizedAgeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonTwistBinding) == 0x000250, "Member 'UNiagaraRibbonRendererProperties::RibbonTwistBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonWidthBinding) == 0x000288, "Member 'UNiagaraRibbonRendererProperties::RibbonWidthBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonFacingBinding) == 0x0002C0, "Member 'UNiagaraRibbonRendererProperties::RibbonFacingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonIdBinding) == 0x0002F8, "Member 'UNiagaraRibbonRendererProperties::RibbonIdBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonLinkOrderBinding) == 0x000330, "Member 'UNiagaraRibbonRendererProperties::RibbonLinkOrderBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MaterialRandomBinding) == 0x000368, "Member 'UNiagaraRibbonRendererProperties::MaterialRandomBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, DynamicMaterialBinding) == 0x0003A0, "Member 'UNiagaraRibbonRendererProperties::DynamicMaterialBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, DynamicMaterial1Binding) == 0x0003D8, "Member 'UNiagaraRibbonRendererProperties::DynamicMaterial1Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, DynamicMaterial2Binding) == 0x000410, "Member 'UNiagaraRibbonRendererProperties::DynamicMaterial2Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, DynamicMaterial3Binding) == 0x000448, "Member 'UNiagaraRibbonRendererProperties::DynamicMaterial3Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, RibbonUVDistance) == 0x000480, "Member 'UNiagaraRibbonRendererProperties::RibbonUVDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, U0OverrideBinding) == 0x0004B8, "Member 'UNiagaraRibbonRendererProperties::U0OverrideBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, V0RangeOverrideBinding) == 0x0004F0, "Member 'UNiagaraRibbonRendererProperties::V0RangeOverrideBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, U1OverrideBinding) == 0x000528, "Member 'UNiagaraRibbonRendererProperties::U1OverrideBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, V1RangeOverrideBinding) == 0x000560, "Member 'UNiagaraRibbonRendererProperties::V1RangeOverrideBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MaterialParameters) == 0x000598, "Member 'UNiagaraRibbonRendererProperties::MaterialParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, PrevPositionBinding) == 0x0005E8, "Member 'UNiagaraRibbonRendererProperties::PrevPositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, PrevRibbonWidthBinding) == 0x000620, "Member 'UNiagaraRibbonRendererProperties::PrevRibbonWidthBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, PrevRibbonFacingBinding) == 0x000658, "Member 'UNiagaraRibbonRendererProperties::PrevRibbonFacingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, PrevRibbonTwistBinding) == 0x000690, "Member 'UNiagaraRibbonRendererProperties::PrevRibbonTwistBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraRibbonRendererProperties, MaterialParamValidMask) == 0x0006C8, "Member 'UNiagaraRibbonRendererProperties::MaterialParamValidMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraScript \ +static_assert(alignof(UNiagaraScript) == 0x000008, "Wrong alignment on UNiagaraScript"); \ +static_assert(sizeof(UNiagaraScript) == 0x0003E0, "Wrong size on UNiagaraScript"); \ +static_assert(offsetof(UNiagaraScript, Usage) == 0x000030, "Member 'UNiagaraScript::Usage' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, UsageId) == 0x000034, "Member 'UNiagaraScript::UsageId' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, RapidIterationParameters) == 0x000048, "Member 'UNiagaraScript::RapidIterationParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, ScriptExecutionParamStore) == 0x0000D0, "Member 'UNiagaraScript::ScriptExecutionParamStore' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, ScriptExecutionBoundParameters) == 0x000178, "Member 'UNiagaraScript::ScriptExecutionBoundParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, CachedScriptVMId) == 0x000188, "Member 'UNiagaraScript::CachedScriptVMId' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, CachedScriptVM) == 0x0001F8, "Member 'UNiagaraScript::CachedScriptVM' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, CachedParameterCollectionReferences) == 0x000398, "Member 'UNiagaraScript::CachedParameterCollectionReferences' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, ResolvedDataInterfaces) == 0x0003A8, "Member 'UNiagaraScript::ResolvedDataInterfaces' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, ResolvedUserDataInterfaceBindings) == 0x0003B8, "Member 'UNiagaraScript::ResolvedUserDataInterfaceBindings' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraScript, ResolvedUObjectInfos) == 0x0003C8, "Member 'UNiagaraScript::ResolvedUObjectInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache \ +static_assert(alignof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache) == 0x000008, "Wrong alignment on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache"); \ +static_assert(sizeof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache) == 0x000098, "Wrong size on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, SimCache) == 0x000000, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::SimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, CreateParameters) == 0x000008, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::CreateParameters' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, NiagaraComponent) == 0x000060, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, CaptureParameters) == 0x000068, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::CaptureParameters' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, OutSimCache) == 0x000088, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::OutSimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache, ReturnValue) == 0x000090, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame \ +static_assert(alignof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame) == 0x000008, "Wrong alignment on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame"); \ +static_assert(sizeof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame) == 0x000088, "Wrong size on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, SimCache) == 0x000000, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::SimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, CreateParameters) == 0x000008, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::CreateParameters' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, NiagaraComponent) == 0x000060, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, OutSimCache) == 0x000068, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::OutSimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, NumFrames) == 0x000070, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::NumFrames' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, CaptureRate) == 0x000074, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::CaptureRate' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, bAdvanceSimulation) == 0x000078, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::bAdvanceSimulation' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, AdvanceDeltaTime) == 0x00007C, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::AdvanceDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame, ReturnValue) == 0x000080, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheMultiFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete \ +static_assert(alignof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete) == 0x000008, "Wrong alignment on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete"); \ +static_assert(sizeof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete) == 0x000088, "Wrong size on AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, SimCache) == 0x000000, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::SimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, CreateParameters) == 0x000008, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::CreateParameters' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, NiagaraComponent) == 0x000060, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, OutSimCache) == 0x000068, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::OutSimCache' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, CaptureRate) == 0x000070, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::CaptureRate' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, bAdvanceSimulation) == 0x000074, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::bAdvanceSimulation' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, AdvanceDeltaTime) == 0x000078, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::AdvanceDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete, ReturnValue) == 0x000080, "Member 'AsyncNiagaraCaptureSimCache_CaptureNiagaraSimCacheUntilComplete::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncNiagaraCaptureSimCache \ +static_assert(alignof(UAsyncNiagaraCaptureSimCache) == 0x000008, "Wrong alignment on UAsyncNiagaraCaptureSimCache"); \ +static_assert(sizeof(UAsyncNiagaraCaptureSimCache) == 0x000130, "Wrong size on UAsyncNiagaraCaptureSimCache"); \ +static_assert(offsetof(UAsyncNiagaraCaptureSimCache, CaptureSimCache) == 0x000030, "Member 'UAsyncNiagaraCaptureSimCache::CaptureSimCache' has a wrong offset!"); \ +static_assert(offsetof(UAsyncNiagaraCaptureSimCache, CaptureComponent) == 0x000038, "Member 'UAsyncNiagaraCaptureSimCache::CaptureComponent' has a wrong offset!"); \ +static_assert(offsetof(UAsyncNiagaraCaptureSimCache, CaptureComplete) == 0x000040, "Member 'UAsyncNiagaraCaptureSimCache::CaptureComplete' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraSpriteRendererProperties \ +static_assert(alignof(UNiagaraSpriteRendererProperties) == 0x000008, "Wrong alignment on UNiagaraSpriteRendererProperties"); \ +static_assert(sizeof(UNiagaraSpriteRendererProperties) == 0x0007D0, "Wrong size on UNiagaraSpriteRendererProperties"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, Material) == 0x0000C0, "Member 'UNiagaraSpriteRendererProperties::Material' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaterialUserParamBinding) == 0x0000C8, "Member 'UNiagaraSpriteRendererProperties::MaterialUserParamBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SourceMode) == 0x0000E8, "Member 'UNiagaraSpriteRendererProperties::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, Alignment) == 0x0000E9, "Member 'UNiagaraSpriteRendererProperties::Alignment' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, FacingMode) == 0x0000EA, "Member 'UNiagaraSpriteRendererProperties::FacingMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SortMode) == 0x0000EB, "Member 'UNiagaraSpriteRendererProperties::SortMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MacroUVRadius) == 0x0000EC, "Member 'UNiagaraSpriteRendererProperties::MacroUVRadius' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PivotInUVSpace) == 0x0000F0, "Member 'UNiagaraSpriteRendererProperties::PivotInUVSpace' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SubImageSize) == 0x000100, "Member 'UNiagaraSpriteRendererProperties::SubImageSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SortPrecision) == 0x000111, "Member 'UNiagaraSpriteRendererProperties::SortPrecision' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, GpuTranslucentLatency) == 0x000112, "Member 'UNiagaraSpriteRendererProperties::GpuTranslucentLatency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PixelCoverageMode) == 0x000113, "Member 'UNiagaraSpriteRendererProperties::PixelCoverageMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PixelCoverageBlend) == 0x000114, "Member 'UNiagaraSpriteRendererProperties::PixelCoverageBlend' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MinFacingCameraBlendDistance) == 0x000118, "Member 'UNiagaraSpriteRendererProperties::MinFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaxFacingCameraBlendDistance) == 0x00011C, "Member 'UNiagaraSpriteRendererProperties::MaxFacingCameraBlendDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MinCameraDistance) == 0x000120, "Member 'UNiagaraSpriteRendererProperties::MinCameraDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaxCameraDistance) == 0x000124, "Member 'UNiagaraSpriteRendererProperties::MaxCameraDistance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, RendererVisibility) == 0x000128, "Member 'UNiagaraSpriteRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PositionBinding) == 0x000130, "Member 'UNiagaraSpriteRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, ColorBinding) == 0x000168, "Member 'UNiagaraSpriteRendererProperties::ColorBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, VelocityBinding) == 0x0001A0, "Member 'UNiagaraSpriteRendererProperties::VelocityBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SpriteRotationBinding) == 0x0001D8, "Member 'UNiagaraSpriteRendererProperties::SpriteRotationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SpriteSizeBinding) == 0x000210, "Member 'UNiagaraSpriteRendererProperties::SpriteSizeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SpriteFacingBinding) == 0x000248, "Member 'UNiagaraSpriteRendererProperties::SpriteFacingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SpriteAlignmentBinding) == 0x000280, "Member 'UNiagaraSpriteRendererProperties::SpriteAlignmentBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, SubImageIndexBinding) == 0x0002B8, "Member 'UNiagaraSpriteRendererProperties::SubImageIndexBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, DynamicMaterialBinding) == 0x0002F0, "Member 'UNiagaraSpriteRendererProperties::DynamicMaterialBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, DynamicMaterial1Binding) == 0x000328, "Member 'UNiagaraSpriteRendererProperties::DynamicMaterial1Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, DynamicMaterial2Binding) == 0x000360, "Member 'UNiagaraSpriteRendererProperties::DynamicMaterial2Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, DynamicMaterial3Binding) == 0x000398, "Member 'UNiagaraSpriteRendererProperties::DynamicMaterial3Binding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, CameraOffsetBinding) == 0x0003D0, "Member 'UNiagaraSpriteRendererProperties::CameraOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, UVScaleBinding) == 0x000408, "Member 'UNiagaraSpriteRendererProperties::UVScaleBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PivotOffsetBinding) == 0x000440, "Member 'UNiagaraSpriteRendererProperties::PivotOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaterialRandomBinding) == 0x000478, "Member 'UNiagaraSpriteRendererProperties::MaterialRandomBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, CustomSortingBinding) == 0x0004B0, "Member 'UNiagaraSpriteRendererProperties::CustomSortingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, NormalizedAgeBinding) == 0x0004E8, "Member 'UNiagaraSpriteRendererProperties::NormalizedAgeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, RendererVisibilityTagBinding) == 0x000520, "Member 'UNiagaraSpriteRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaterialParameters) == 0x000558, "Member 'UNiagaraSpriteRendererProperties::MaterialParameters' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevPositionBinding) == 0x0005A8, "Member 'UNiagaraSpriteRendererProperties::PrevPositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevVelocityBinding) == 0x0005E0, "Member 'UNiagaraSpriteRendererProperties::PrevVelocityBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevSpriteRotationBinding) == 0x000618, "Member 'UNiagaraSpriteRendererProperties::PrevSpriteRotationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevSpriteSizeBinding) == 0x000650, "Member 'UNiagaraSpriteRendererProperties::PrevSpriteSizeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevSpriteFacingBinding) == 0x000688, "Member 'UNiagaraSpriteRendererProperties::PrevSpriteFacingBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevSpriteAlignmentBinding) == 0x0006C0, "Member 'UNiagaraSpriteRendererProperties::PrevSpriteAlignmentBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevCameraOffsetBinding) == 0x0006F8, "Member 'UNiagaraSpriteRendererProperties::PrevCameraOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, PrevPivotOffsetBinding) == 0x000730, "Member 'UNiagaraSpriteRendererProperties::PrevPivotOffsetBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraSpriteRendererProperties, MaterialParamValidMask) == 0x000768, "Member 'UNiagaraSpriteRendererProperties::MaterialParamValidMask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraValidationRule \ +static_assert(alignof(UNiagaraValidationRule) == 0x000008, "Wrong alignment on UNiagaraValidationRule"); \ +static_assert(sizeof(UNiagaraValidationRule) == 0x000028, "Wrong size on UNiagaraValidationRule"); \ + +#define DUMPER7_ASSERTS_UVolumeCache \ +static_assert(alignof(UVolumeCache) == 0x000008, "Wrong alignment on UVolumeCache"); \ +static_assert(sizeof(UVolumeCache) == 0x000060, "Wrong size on UVolumeCache"); \ +static_assert(offsetof(UVolumeCache, FilePath) == 0x000028, "Member 'UVolumeCache::FilePath' has a wrong offset!"); \ +static_assert(offsetof(UVolumeCache, CacheType) == 0x000038, "Member 'UVolumeCache::CacheType' has a wrong offset!"); \ +static_assert(offsetof(UVolumeCache, Resolution) == 0x00003C, "Member 'UVolumeCache::Resolution' has a wrong offset!"); \ +static_assert(offsetof(UVolumeCache, FrameRangeStart) == 0x000048, "Member 'UVolumeCache::FrameRangeStart' has a wrong offset!"); \ +static_assert(offsetof(UVolumeCache, FrameRangeEnd) == 0x00004C, "Member 'UVolumeCache::FrameRangeEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerMappableKeySlot \ +static_assert(alignof(FPlayerMappableKeySlot) == 0x000004, "Wrong alignment on FPlayerMappableKeySlot"); \ +static_assert(sizeof(FPlayerMappableKeySlot) == 0x000004, "Wrong size on FPlayerMappableKeySlot"); \ +static_assert(offsetof(FPlayerMappableKeySlot, SlotNumber) == 0x000000, "Member 'FPlayerMappableKeySlot::SlotNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputActionInstance \ +static_assert(alignof(FInputActionInstance) == 0x000008, "Wrong alignment on FInputActionInstance"); \ +static_assert(sizeof(FInputActionInstance) == 0x000060, "Wrong size on FInputActionInstance"); \ +static_assert(offsetof(FInputActionInstance, SourceAction) == 0x000000, "Member 'FInputActionInstance::SourceAction' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, TriggerEvent) == 0x000013, "Member 'FInputActionInstance::TriggerEvent' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, LastTriggeredWorldTime) == 0x000014, "Member 'FInputActionInstance::LastTriggeredWorldTime' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, Triggers) == 0x000018, "Member 'FInputActionInstance::Triggers' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, Modifiers) == 0x000028, "Member 'FInputActionInstance::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, ElapsedProcessedTime) == 0x000058, "Member 'FInputActionInstance::ElapsedProcessedTime' has a wrong offset!"); \ +static_assert(offsetof(FInputActionInstance, ElapsedTriggeredTime) == 0x00005C, "Member 'FInputActionInstance::ElapsedTriggeredTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputActionValue \ +static_assert(alignof(FInputActionValue) == 0x000008, "Wrong alignment on FInputActionValue"); \ +static_assert(sizeof(FInputActionValue) == 0x000020, "Wrong size on FInputActionValue"); \ + +#define DUMPER7_ASSERTS_FPlayerMappableKeyQueryOptions \ +static_assert(alignof(FPlayerMappableKeyQueryOptions) == 0x000008, "Wrong alignment on FPlayerMappableKeyQueryOptions"); \ +static_assert(sizeof(FPlayerMappableKeyQueryOptions) == 0x000028, "Wrong size on FPlayerMappableKeyQueryOptions"); \ +static_assert(offsetof(FPlayerMappableKeyQueryOptions, MappingName) == 0x000000, "Member 'FPlayerMappableKeyQueryOptions::MappingName' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyQueryOptions, KeyToMatch) == 0x000008, "Member 'FPlayerMappableKeyQueryOptions::KeyToMatch' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyQueryOptions, SlotToMatch) == 0x000020, "Member 'FPlayerMappableKeyQueryOptions::SlotToMatch' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyQueryOptions, RequiredDeviceType) == 0x000022, "Member 'FPlayerMappableKeyQueryOptions::RequiredDeviceType' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyQueryOptions, RequiredDeviceFlags) == 0x000024, "Member 'FPlayerMappableKeyQueryOptions::RequiredDeviceFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMapPlayerKeyArgs \ +static_assert(alignof(FMapPlayerKeyArgs) == 0x000008, "Wrong alignment on FMapPlayerKeyArgs"); \ +static_assert(sizeof(FMapPlayerKeyArgs) == 0x000040, "Wrong size on FMapPlayerKeyArgs"); \ +static_assert(offsetof(FMapPlayerKeyArgs, MappingName) == 0x000000, "Member 'FMapPlayerKeyArgs::MappingName' has a wrong offset!"); \ +static_assert(offsetof(FMapPlayerKeyArgs, Slot) == 0x000008, "Member 'FMapPlayerKeyArgs::Slot' has a wrong offset!"); \ +static_assert(offsetof(FMapPlayerKeyArgs, NewKey) == 0x000010, "Member 'FMapPlayerKeyArgs::NewKey' has a wrong offset!"); \ +static_assert(offsetof(FMapPlayerKeyArgs, HardwareDeviceId) == 0x000028, "Member 'FMapPlayerKeyArgs::HardwareDeviceId' has a wrong offset!"); \ +static_assert(offsetof(FMapPlayerKeyArgs, ProfileId) == 0x000030, "Member 'FMapPlayerKeyArgs::ProfileId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerMappableKeyProfileCreationArgs \ +static_assert(alignof(FPlayerMappableKeyProfileCreationArgs) == 0x000008, "Wrong alignment on FPlayerMappableKeyProfileCreationArgs"); \ +static_assert(sizeof(FPlayerMappableKeyProfileCreationArgs) == 0x000038, "Wrong size on FPlayerMappableKeyProfileCreationArgs"); \ +static_assert(offsetof(FPlayerMappableKeyProfileCreationArgs, ProfileType) == 0x000000, "Member 'FPlayerMappableKeyProfileCreationArgs::ProfileType' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyProfileCreationArgs, ProfileIdentifier) == 0x000008, "Member 'FPlayerMappableKeyProfileCreationArgs::ProfileIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyProfileCreationArgs, UserId) == 0x000010, "Member 'FPlayerMappableKeyProfileCreationArgs::UserId' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyProfileCreationArgs, DisplayName) == 0x000018, "Member 'FPlayerMappableKeyProfileCreationArgs::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerKeyMapping \ +static_assert(alignof(FPlayerKeyMapping) == 0x000008, "Wrong alignment on FPlayerKeyMapping"); \ +static_assert(sizeof(FPlayerKeyMapping) == 0x000090, "Wrong size on FPlayerKeyMapping"); \ +static_assert(offsetof(FPlayerKeyMapping, MappingName) == 0x000000, "Member 'FPlayerKeyMapping::MappingName' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, DisplayName) == 0x000008, "Member 'FPlayerKeyMapping::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, DisplayCategory) == 0x000020, "Member 'FPlayerKeyMapping::DisplayCategory' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, Slot) == 0x000038, "Member 'FPlayerKeyMapping::Slot' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, DefaultKey) == 0x000040, "Member 'FPlayerKeyMapping::DefaultKey' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, CurrentKey) == 0x000058, "Member 'FPlayerKeyMapping::CurrentKey' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, HardwareDeviceId) == 0x000070, "Member 'FPlayerKeyMapping::HardwareDeviceId' has a wrong offset!"); \ +static_assert(offsetof(FPlayerKeyMapping, AssociatedInputAction) == 0x000088, "Member 'FPlayerKeyMapping::AssociatedInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FKeyMappingRow \ +static_assert(alignof(FKeyMappingRow) == 0x000008, "Wrong alignment on FKeyMappingRow"); \ +static_assert(sizeof(FKeyMappingRow) == 0x000050, "Wrong size on FKeyMappingRow"); \ +static_assert(offsetof(FKeyMappingRow, Mappings) == 0x000000, "Member 'FKeyMappingRow::Mappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMappingQueryIssue \ +static_assert(alignof(FMappingQueryIssue) == 0x000008, "Wrong alignment on FMappingQueryIssue"); \ +static_assert(sizeof(FMappingQueryIssue) == 0x000018, "Wrong size on FMappingQueryIssue"); \ +static_assert(offsetof(FMappingQueryIssue, Issue) == 0x000000, "Member 'FMappingQueryIssue::Issue' has a wrong offset!"); \ +static_assert(offsetof(FMappingQueryIssue, BlockingContext) == 0x000008, "Member 'FMappingQueryIssue::BlockingContext' has a wrong offset!"); \ +static_assert(offsetof(FMappingQueryIssue, BlockingAction) == 0x000010, "Member 'FMappingQueryIssue::BlockingAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerMappableKeyOptions \ +static_assert(alignof(FPlayerMappableKeyOptions) == 0x000008, "Wrong alignment on FPlayerMappableKeyOptions"); \ +static_assert(sizeof(FPlayerMappableKeyOptions) == 0x000040, "Wrong size on FPlayerMappableKeyOptions"); \ +static_assert(offsetof(FPlayerMappableKeyOptions, MetaData) == 0x000000, "Member 'FPlayerMappableKeyOptions::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyOptions, Name) == 0x000008, "Member 'FPlayerMappableKeyOptions::Name' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyOptions, DisplayName) == 0x000010, "Member 'FPlayerMappableKeyOptions::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FPlayerMappableKeyOptions, DisplayCategory) == 0x000028, "Member 'FPlayerMappableKeyOptions::DisplayCategory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnhancedActionKeyMapping \ +static_assert(alignof(FEnhancedActionKeyMapping) == 0x000008, "Wrong alignment on FEnhancedActionKeyMapping"); \ +static_assert(sizeof(FEnhancedActionKeyMapping) == 0x000050, "Wrong size on FEnhancedActionKeyMapping"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, Triggers) == 0x000000, "Member 'FEnhancedActionKeyMapping::Triggers' has a wrong offset!"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, Modifiers) == 0x000010, "Member 'FEnhancedActionKeyMapping::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, Action) == 0x000020, "Member 'FEnhancedActionKeyMapping::Action' has a wrong offset!"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, Key) == 0x000028, "Member 'FEnhancedActionKeyMapping::Key' has a wrong offset!"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, SettingBehavior) == 0x000041, "Member 'FEnhancedActionKeyMapping::SettingBehavior' has a wrong offset!"); \ +static_assert(offsetof(FEnhancedActionKeyMapping, PlayerMappableKeySettings) == 0x000048, "Member 'FEnhancedActionKeyMapping::PlayerMappableKeySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintEnhancedInputActionBinding \ +static_assert(alignof(FBlueprintEnhancedInputActionBinding) == 0x000008, "Wrong alignment on FBlueprintEnhancedInputActionBinding"); \ +static_assert(sizeof(FBlueprintEnhancedInputActionBinding) == 0x000018, "Wrong size on FBlueprintEnhancedInputActionBinding"); \ +static_assert(offsetof(FBlueprintEnhancedInputActionBinding, InputAction) == 0x000000, "Member 'FBlueprintEnhancedInputActionBinding::InputAction' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintEnhancedInputActionBinding, TriggerEvent) == 0x000008, "Member 'FBlueprintEnhancedInputActionBinding::TriggerEvent' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintEnhancedInputActionBinding, FunctionNameToBind) == 0x00000C, "Member 'FBlueprintEnhancedInputActionBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDefaultContextSetting \ +static_assert(alignof(FDefaultContextSetting) == 0x000008, "Wrong alignment on FDefaultContextSetting"); \ +static_assert(sizeof(FDefaultContextSetting) == 0x000030, "Wrong size on FDefaultContextSetting"); \ +static_assert(offsetof(FDefaultContextSetting, InputMappingContext) == 0x000000, "Member 'FDefaultContextSetting::InputMappingContext' has a wrong offset!"); \ +static_assert(offsetof(FDefaultContextSetting, Priority) == 0x000028, "Member 'FDefaultContextSetting::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModifyContextOptions \ +static_assert(alignof(FModifyContextOptions) == 0x000001, "Wrong alignment on FModifyContextOptions"); \ +static_assert(sizeof(FModifyContextOptions) == 0x000001, "Wrong size on FModifyContextOptions"); \ + +#define DUMPER7_ASSERTS_FKeyConsumptionOptions \ +static_assert(alignof(FKeyConsumptionOptions) == 0x000008, "Wrong alignment on FKeyConsumptionOptions"); \ +static_assert(sizeof(FKeyConsumptionOptions) == 0x000018, "Wrong size on FKeyConsumptionOptions"); \ + +#define DUMPER7_ASSERTS_FInjectedInputArray \ +static_assert(alignof(FInjectedInputArray) == 0x000008, "Wrong alignment on FInjectedInputArray"); \ +static_assert(sizeof(FInjectedInputArray) == 0x000010, "Wrong size on FInjectedInputArray"); \ + +#define DUMPER7_ASSERTS_FBlueprintInputDebugKeyDelegateBinding \ +static_assert(alignof(FBlueprintInputDebugKeyDelegateBinding) == 0x000008, "Wrong alignment on FBlueprintInputDebugKeyDelegateBinding"); \ +static_assert(sizeof(FBlueprintInputDebugKeyDelegateBinding) == 0x000030, "Wrong size on FBlueprintInputDebugKeyDelegateBinding"); \ +static_assert(offsetof(FBlueprintInputDebugKeyDelegateBinding, InputChord) == 0x000000, "Member 'FBlueprintInputDebugKeyDelegateBinding::InputChord' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputDebugKeyDelegateBinding, InputKeyEvent) == 0x000020, "Member 'FBlueprintInputDebugKeyDelegateBinding::InputKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputDebugKeyDelegateBinding, FunctionNameToBind) == 0x000024, "Member 'FBlueprintInputDebugKeyDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ +static_assert(offsetof(FBlueprintInputDebugKeyDelegateBinding, bExecuteWhenPaused) == 0x00002C, "Member 'FBlueprintInputDebugKeyDelegateBinding::bExecuteWhenPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputComboStepData \ +static_assert(alignof(FInputComboStepData) == 0x000008, "Wrong alignment on FInputComboStepData"); \ +static_assert(sizeof(FInputComboStepData) == 0x000010, "Wrong size on FInputComboStepData"); \ +static_assert(offsetof(FInputComboStepData, ComboStepAction) == 0x000000, "Member 'FInputComboStepData::ComboStepAction' has a wrong offset!"); \ +static_assert(offsetof(FInputComboStepData, ComboStepCompletionStates) == 0x000008, "Member 'FInputComboStepData::ComboStepCompletionStates' has a wrong offset!"); \ +static_assert(offsetof(FInputComboStepData, TimeToPressKey) == 0x00000C, "Member 'FInputComboStepData::TimeToPressKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputCancelAction \ +static_assert(alignof(FInputCancelAction) == 0x000008, "Wrong alignment on FInputCancelAction"); \ +static_assert(sizeof(FInputCancelAction) == 0x000010, "Wrong size on FInputCancelAction"); \ +static_assert(offsetof(FInputCancelAction, CancelAction) == 0x000000, "Member 'FInputCancelAction::CancelAction' has a wrong offset!"); \ +static_assert(offsetof(FInputCancelAction, CancellationStates) == 0x000008, "Member 'FInputCancelAction::CancellationStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_ResetMappingToDefault \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_ResetMappingToDefault) == 0x000004, "Wrong alignment on EnhancedPlayerMappableKeyProfile_ResetMappingToDefault"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_ResetMappingToDefault) == 0x000008, "Wrong size on EnhancedPlayerMappableKeyProfile_ResetMappingToDefault"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_ResetMappingToDefault, InMappingName) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_ResetMappingToDefault::InMappingName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_SetDisplayName \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_SetDisplayName) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_SetDisplayName"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_SetDisplayName) == 0x000018, "Wrong size on EnhancedPlayerMappableKeyProfile_SetDisplayName"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_SetDisplayName, NewDisplayName) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_SetDisplayName::NewDisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions) == 0x0000C0, "Wrong size on EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions, PlayerMapping) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions::PlayerMapping' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions, Options) == 0x000090, "Member 'EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions, ReturnValue) == 0x0000B8, "Member 'EnhancedPlayerMappableKeyProfile_DoesMappingPassQueryOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow) == 0x000020, "Wrong size on EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow, MappingName) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow, OutKeys) == 0x000008, "Member 'EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow::OutKeys' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow, ReturnValue) == 0x000018, "Member 'EnhancedPlayerMappableKeyProfile_GetMappedKeysInRow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey) == 0x000030, "Wrong size on EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey, InKey) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey, OutMappingNames) == 0x000018, "Member 'EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey::OutMappingNames' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey, ReturnValue) == 0x000028, "Member 'EnhancedPlayerMappableKeyProfile_GetMappingNamesForKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows) == 0x000050, "Wrong size on EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows, ReturnValue) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_GetPlayerMappingRows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_GetProfileDisplayName \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_GetProfileDisplayName) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_GetProfileDisplayName"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_GetProfileDisplayName) == 0x000018, "Wrong size on EnhancedPlayerMappableKeyProfile_GetProfileDisplayName"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetProfileDisplayName, ReturnValue) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_GetProfileDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_GetProfileIdentifer \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_GetProfileIdentifer) == 0x000004, "Wrong alignment on EnhancedPlayerMappableKeyProfile_GetProfileIdentifer"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_GetProfileIdentifer) == 0x000008, "Wrong size on EnhancedPlayerMappableKeyProfile_GetProfileIdentifer"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_GetProfileIdentifer, ReturnValue) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_GetProfileIdentifer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping) == 0x0000D0, "Wrong size on EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping, OutKeyMapping) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping::OutKeyMapping' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping, InArgs) == 0x000090, "Member 'EnhancedPlayerMappableKeyProfile_K2_FindKeyMapping::InArgs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys) == 0x000040, "Wrong size on EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys, Options) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys, OutKeys) == 0x000028, "Member 'EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys::OutKeys' has a wrong offset!"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys, ReturnValue) == 0x000038, "Member 'EnhancedPlayerMappableKeyProfile_QueryPlayerMappedKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedPlayerMappableKeyProfile_ToString \ +static_assert(alignof(EnhancedPlayerMappableKeyProfile_ToString) == 0x000008, "Wrong alignment on EnhancedPlayerMappableKeyProfile_ToString"); \ +static_assert(sizeof(EnhancedPlayerMappableKeyProfile_ToString) == 0x000010, "Wrong size on EnhancedPlayerMappableKeyProfile_ToString"); \ +static_assert(offsetof(EnhancedPlayerMappableKeyProfile_ToString, ReturnValue) == 0x000000, "Member 'EnhancedPlayerMappableKeyProfile_ToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedPlayerMappableKeyProfile \ +static_assert(alignof(UEnhancedPlayerMappableKeyProfile) == 0x000008, "Wrong alignment on UEnhancedPlayerMappableKeyProfile"); \ +static_assert(sizeof(UEnhancedPlayerMappableKeyProfile) == 0x0000A0, "Wrong size on UEnhancedPlayerMappableKeyProfile"); \ +static_assert(offsetof(UEnhancedPlayerMappableKeyProfile, ProfileIdentifier) == 0x000028, "Member 'UEnhancedPlayerMappableKeyProfile::ProfileIdentifier' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerMappableKeyProfile, OwningUserId) == 0x000030, "Member 'UEnhancedPlayerMappableKeyProfile::OwningUserId' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerMappableKeyProfile, DisplayName) == 0x000038, "Member 'UEnhancedPlayerMappableKeyProfile::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerMappableKeyProfile, PlayerMappedKeys) == 0x000050, "Member 'UEnhancedPlayerMappableKeyProfile::PlayerMappedKeys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_CreateNewKeyProfile \ +static_assert(alignof(EnhancedInputUserSettings_CreateNewKeyProfile) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_CreateNewKeyProfile"); \ +static_assert(sizeof(EnhancedInputUserSettings_CreateNewKeyProfile) == 0x000040, "Wrong size on EnhancedInputUserSettings_CreateNewKeyProfile"); \ +static_assert(offsetof(EnhancedInputUserSettings_CreateNewKeyProfile, InArgs) == 0x000000, "Member 'EnhancedInputUserSettings_CreateNewKeyProfile::InArgs' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_CreateNewKeyProfile, ReturnValue) == 0x000038, "Member 'EnhancedInputUserSettings_CreateNewKeyProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_MapPlayerKey \ +static_assert(alignof(EnhancedInputUserSettings_MapPlayerKey) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_MapPlayerKey"); \ +static_assert(sizeof(EnhancedInputUserSettings_MapPlayerKey) == 0x000060, "Wrong size on EnhancedInputUserSettings_MapPlayerKey"); \ +static_assert(offsetof(EnhancedInputUserSettings_MapPlayerKey, InArgs) == 0x000000, "Member 'EnhancedInputUserSettings_MapPlayerKey::InArgs' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_MapPlayerKey, FailureReason) == 0x000040, "Member 'EnhancedInputUserSettings_MapPlayerKey::FailureReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_RegisterInputMappingContext \ +static_assert(alignof(EnhancedInputUserSettings_RegisterInputMappingContext) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_RegisterInputMappingContext"); \ +static_assert(sizeof(EnhancedInputUserSettings_RegisterInputMappingContext) == 0x000010, "Wrong size on EnhancedInputUserSettings_RegisterInputMappingContext"); \ +static_assert(offsetof(EnhancedInputUserSettings_RegisterInputMappingContext, IMC) == 0x000000, "Member 'EnhancedInputUserSettings_RegisterInputMappingContext::IMC' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_RegisterInputMappingContext, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_RegisterInputMappingContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_RegisterInputMappingContexts \ +static_assert(alignof(EnhancedInputUserSettings_RegisterInputMappingContexts) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_RegisterInputMappingContexts"); \ +static_assert(sizeof(EnhancedInputUserSettings_RegisterInputMappingContexts) == 0x000058, "Wrong size on EnhancedInputUserSettings_RegisterInputMappingContexts"); \ +static_assert(offsetof(EnhancedInputUserSettings_RegisterInputMappingContexts, MappingContexts) == 0x000000, "Member 'EnhancedInputUserSettings_RegisterInputMappingContexts::MappingContexts' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_RegisterInputMappingContexts, ReturnValue) == 0x000050, "Member 'EnhancedInputUserSettings_RegisterInputMappingContexts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_ResetAllPlayerKeysInRow \ +static_assert(alignof(EnhancedInputUserSettings_ResetAllPlayerKeysInRow) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_ResetAllPlayerKeysInRow"); \ +static_assert(sizeof(EnhancedInputUserSettings_ResetAllPlayerKeysInRow) == 0x000060, "Wrong size on EnhancedInputUserSettings_ResetAllPlayerKeysInRow"); \ +static_assert(offsetof(EnhancedInputUserSettings_ResetAllPlayerKeysInRow, InArgs) == 0x000000, "Member 'EnhancedInputUserSettings_ResetAllPlayerKeysInRow::InArgs' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_ResetAllPlayerKeysInRow, FailureReason) == 0x000040, "Member 'EnhancedInputUserSettings_ResetAllPlayerKeysInRow::FailureReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_ResetKeyProfileToDefault \ +static_assert(alignof(EnhancedInputUserSettings_ResetKeyProfileToDefault) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_ResetKeyProfileToDefault"); \ +static_assert(sizeof(EnhancedInputUserSettings_ResetKeyProfileToDefault) == 0x000028, "Wrong size on EnhancedInputUserSettings_ResetKeyProfileToDefault"); \ +static_assert(offsetof(EnhancedInputUserSettings_ResetKeyProfileToDefault, ProfileId) == 0x000000, "Member 'EnhancedInputUserSettings_ResetKeyProfileToDefault::ProfileId' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_ResetKeyProfileToDefault, FailureReason) == 0x000008, "Member 'EnhancedInputUserSettings_ResetKeyProfileToDefault::FailureReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_SetKeyProfile \ +static_assert(alignof(EnhancedInputUserSettings_SetKeyProfile) == 0x000004, "Wrong alignment on EnhancedInputUserSettings_SetKeyProfile"); \ +static_assert(sizeof(EnhancedInputUserSettings_SetKeyProfile) == 0x00000C, "Wrong size on EnhancedInputUserSettings_SetKeyProfile"); \ +static_assert(offsetof(EnhancedInputUserSettings_SetKeyProfile, InProfileId) == 0x000000, "Member 'EnhancedInputUserSettings_SetKeyProfile::InProfileId' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_SetKeyProfile, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_SetKeyProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_UnMapPlayerKey \ +static_assert(alignof(EnhancedInputUserSettings_UnMapPlayerKey) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_UnMapPlayerKey"); \ +static_assert(sizeof(EnhancedInputUserSettings_UnMapPlayerKey) == 0x000060, "Wrong size on EnhancedInputUserSettings_UnMapPlayerKey"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnMapPlayerKey, InArgs) == 0x000000, "Member 'EnhancedInputUserSettings_UnMapPlayerKey::InArgs' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnMapPlayerKey, FailureReason) == 0x000040, "Member 'EnhancedInputUserSettings_UnMapPlayerKey::FailureReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_UnregisterInputMappingContext \ +static_assert(alignof(EnhancedInputUserSettings_UnregisterInputMappingContext) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_UnregisterInputMappingContext"); \ +static_assert(sizeof(EnhancedInputUserSettings_UnregisterInputMappingContext) == 0x000010, "Wrong size on EnhancedInputUserSettings_UnregisterInputMappingContext"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnregisterInputMappingContext, IMC) == 0x000000, "Member 'EnhancedInputUserSettings_UnregisterInputMappingContext::IMC' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnregisterInputMappingContext, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_UnregisterInputMappingContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_UnregisterInputMappingContexts \ +static_assert(alignof(EnhancedInputUserSettings_UnregisterInputMappingContexts) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_UnregisterInputMappingContexts"); \ +static_assert(sizeof(EnhancedInputUserSettings_UnregisterInputMappingContexts) == 0x000058, "Wrong size on EnhancedInputUserSettings_UnregisterInputMappingContexts"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnregisterInputMappingContexts, MappingContexts) == 0x000000, "Member 'EnhancedInputUserSettings_UnregisterInputMappingContexts::MappingContexts' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_UnregisterInputMappingContexts, ReturnValue) == 0x000050, "Member 'EnhancedInputUserSettings_UnregisterInputMappingContexts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_FindMappingsInRow \ +static_assert(alignof(EnhancedInputUserSettings_FindMappingsInRow) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_FindMappingsInRow"); \ +static_assert(sizeof(EnhancedInputUserSettings_FindMappingsInRow) == 0x000058, "Wrong size on EnhancedInputUserSettings_FindMappingsInRow"); \ +static_assert(offsetof(EnhancedInputUserSettings_FindMappingsInRow, MappingName) == 0x000000, "Member 'EnhancedInputUserSettings_FindMappingsInRow::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_FindMappingsInRow, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_FindMappingsInRow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_GetCurrentKeyProfile \ +static_assert(alignof(EnhancedInputUserSettings_GetCurrentKeyProfile) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_GetCurrentKeyProfile"); \ +static_assert(sizeof(EnhancedInputUserSettings_GetCurrentKeyProfile) == 0x000008, "Wrong size on EnhancedInputUserSettings_GetCurrentKeyProfile"); \ +static_assert(offsetof(EnhancedInputUserSettings_GetCurrentKeyProfile, ReturnValue) == 0x000000, "Member 'EnhancedInputUserSettings_GetCurrentKeyProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier \ +static_assert(alignof(EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier) == 0x000004, "Wrong alignment on EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier"); \ +static_assert(sizeof(EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier) == 0x000008, "Wrong size on EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier"); \ +static_assert(offsetof(EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier, ReturnValue) == 0x000000, "Member 'EnhancedInputUserSettings_GetCurrentKeyProfileIdentifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_GetKeyProfileWithIdentifier \ +static_assert(alignof(EnhancedInputUserSettings_GetKeyProfileWithIdentifier) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_GetKeyProfileWithIdentifier"); \ +static_assert(sizeof(EnhancedInputUserSettings_GetKeyProfileWithIdentifier) == 0x000010, "Wrong size on EnhancedInputUserSettings_GetKeyProfileWithIdentifier"); \ +static_assert(offsetof(EnhancedInputUserSettings_GetKeyProfileWithIdentifier, ProfileId) == 0x000000, "Member 'EnhancedInputUserSettings_GetKeyProfileWithIdentifier::ProfileId' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_GetKeyProfileWithIdentifier, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_GetKeyProfileWithIdentifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputUserSettings_IsMappingContextRegistered \ +static_assert(alignof(EnhancedInputUserSettings_IsMappingContextRegistered) == 0x000008, "Wrong alignment on EnhancedInputUserSettings_IsMappingContextRegistered"); \ +static_assert(sizeof(EnhancedInputUserSettings_IsMappingContextRegistered) == 0x000010, "Wrong size on EnhancedInputUserSettings_IsMappingContextRegistered"); \ +static_assert(offsetof(EnhancedInputUserSettings_IsMappingContextRegistered, IMC) == 0x000000, "Member 'EnhancedInputUserSettings_IsMappingContextRegistered::IMC' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputUserSettings_IsMappingContextRegistered, ReturnValue) == 0x000008, "Member 'EnhancedInputUserSettings_IsMappingContextRegistered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputUserSettings \ +static_assert(alignof(UEnhancedInputUserSettings) == 0x000008, "Wrong alignment on UEnhancedInputUserSettings"); \ +static_assert(sizeof(UEnhancedInputUserSettings) == 0x000120, "Wrong size on UEnhancedInputUserSettings"); \ +static_assert(offsetof(UEnhancedInputUserSettings, OnSettingsChanged) == 0x000030, "Member 'UEnhancedInputUserSettings::OnSettingsChanged' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputUserSettings, OnSettingsApplied) == 0x000040, "Member 'UEnhancedInputUserSettings::OnSettingsApplied' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputUserSettings, CurrentProfileIdentifier) == 0x000070, "Member 'UEnhancedInputUserSettings::CurrentProfileIdentifier' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputUserSettings, SavedKeyProfiles) == 0x000078, "Member 'UEnhancedInputUserSettings::SavedKeyProfiles' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputUserSettings, OwningLocalPlayer) == 0x0000C8, "Member 'UEnhancedInputUserSettings::OwningLocalPlayer' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputUserSettings, RegisteredMappingContexts) == 0x0000D0, "Member 'UEnhancedInputUserSettings::RegisteredMappingContexts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputActionDelegateBinding \ +static_assert(alignof(UEnhancedInputActionDelegateBinding) == 0x000008, "Wrong alignment on UEnhancedInputActionDelegateBinding"); \ +static_assert(sizeof(UEnhancedInputActionDelegateBinding) == 0x000038, "Wrong size on UEnhancedInputActionDelegateBinding"); \ +static_assert(offsetof(UEnhancedInputActionDelegateBinding, InputActionDelegateBindings) == 0x000028, "Member 'UEnhancedInputActionDelegateBinding::InputActionDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputActionValueBinding \ +static_assert(alignof(UEnhancedInputActionValueBinding) == 0x000008, "Wrong alignment on UEnhancedInputActionValueBinding"); \ +static_assert(sizeof(UEnhancedInputActionValueBinding) == 0x000038, "Wrong size on UEnhancedInputActionValueBinding"); \ +static_assert(offsetof(UEnhancedInputActionValueBinding, InputActionValueBindings) == 0x000028, "Member 'UEnhancedInputActionValueBinding::InputActionValueBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputComponent_GetBoundActionValue \ +static_assert(alignof(EnhancedInputComponent_GetBoundActionValue) == 0x000008, "Wrong alignment on EnhancedInputComponent_GetBoundActionValue"); \ +static_assert(sizeof(EnhancedInputComponent_GetBoundActionValue) == 0x000028, "Wrong size on EnhancedInputComponent_GetBoundActionValue"); \ +static_assert(offsetof(EnhancedInputComponent_GetBoundActionValue, Action) == 0x000000, "Member 'EnhancedInputComponent_GetBoundActionValue::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputComponent_GetBoundActionValue, ReturnValue) == 0x000008, "Member 'EnhancedInputComponent_GetBoundActionValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputComponent \ +static_assert(alignof(UEnhancedInputComponent) == 0x000008, "Wrong alignment on UEnhancedInputComponent"); \ +static_assert(sizeof(UEnhancedInputComponent) == 0x000160, "Wrong size on UEnhancedInputComponent"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputDeveloperSettings \ +static_assert(alignof(UEnhancedInputDeveloperSettings) == 0x000008, "Wrong alignment on UEnhancedInputDeveloperSettings"); \ +static_assert(sizeof(UEnhancedInputDeveloperSettings) == 0x0000E8, "Wrong size on UEnhancedInputDeveloperSettings"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, DefaultMappingContexts) == 0x000038, "Member 'UEnhancedInputDeveloperSettings::DefaultMappingContexts' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, DefaultWorldSubsystemMappingContexts) == 0x000048, "Member 'UEnhancedInputDeveloperSettings::DefaultWorldSubsystemMappingContexts' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, PlatformSettings) == 0x000058, "Member 'UEnhancedInputDeveloperSettings::PlatformSettings' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, UserSettingsClass) == 0x000068, "Member 'UEnhancedInputDeveloperSettings::UserSettingsClass' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, DefaultPlayerMappableKeyProfileClass) == 0x000090, "Member 'UEnhancedInputDeveloperSettings::DefaultPlayerMappableKeyProfileClass' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputDeveloperSettings, DefaultWorldInputClass) == 0x0000B8, "Member 'UEnhancedInputDeveloperSettings::DefaultWorldInputClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_BreakInputActionValue \ +static_assert(alignof(EnhancedInputLibrary_BreakInputActionValue) == 0x000008, "Wrong alignment on EnhancedInputLibrary_BreakInputActionValue"); \ +static_assert(sizeof(EnhancedInputLibrary_BreakInputActionValue) == 0x000040, "Wrong size on EnhancedInputLibrary_BreakInputActionValue"); \ +static_assert(offsetof(EnhancedInputLibrary_BreakInputActionValue, InActionValue) == 0x000000, "Member 'EnhancedInputLibrary_BreakInputActionValue::InActionValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_BreakInputActionValue, X) == 0x000020, "Member 'EnhancedInputLibrary_BreakInputActionValue::X' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_BreakInputActionValue, Y) == 0x000028, "Member 'EnhancedInputLibrary_BreakInputActionValue::Y' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_BreakInputActionValue, Z) == 0x000030, "Member 'EnhancedInputLibrary_BreakInputActionValue::Z' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_BreakInputActionValue, Type) == 0x000038, "Member 'EnhancedInputLibrary_BreakInputActionValue::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_Conv_InputActionValueToAxis1D \ +static_assert(alignof(EnhancedInputLibrary_Conv_InputActionValueToAxis1D) == 0x000008, "Wrong alignment on EnhancedInputLibrary_Conv_InputActionValueToAxis1D"); \ +static_assert(sizeof(EnhancedInputLibrary_Conv_InputActionValueToAxis1D) == 0x000028, "Wrong size on EnhancedInputLibrary_Conv_InputActionValueToAxis1D"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis1D, InValue) == 0x000000, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis1D::InValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis1D, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis1D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_Conv_InputActionValueToAxis2D \ +static_assert(alignof(EnhancedInputLibrary_Conv_InputActionValueToAxis2D) == 0x000008, "Wrong alignment on EnhancedInputLibrary_Conv_InputActionValueToAxis2D"); \ +static_assert(sizeof(EnhancedInputLibrary_Conv_InputActionValueToAxis2D) == 0x000030, "Wrong size on EnhancedInputLibrary_Conv_InputActionValueToAxis2D"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis2D, InValue) == 0x000000, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis2D::InValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis2D, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_Conv_InputActionValueToAxis3D \ +static_assert(alignof(EnhancedInputLibrary_Conv_InputActionValueToAxis3D) == 0x000008, "Wrong alignment on EnhancedInputLibrary_Conv_InputActionValueToAxis3D"); \ +static_assert(sizeof(EnhancedInputLibrary_Conv_InputActionValueToAxis3D) == 0x000038, "Wrong size on EnhancedInputLibrary_Conv_InputActionValueToAxis3D"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis3D, ActionValue) == 0x000000, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis3D::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToAxis3D, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_Conv_InputActionValueToAxis3D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_Conv_InputActionValueToBool \ +static_assert(alignof(EnhancedInputLibrary_Conv_InputActionValueToBool) == 0x000008, "Wrong alignment on EnhancedInputLibrary_Conv_InputActionValueToBool"); \ +static_assert(sizeof(EnhancedInputLibrary_Conv_InputActionValueToBool) == 0x000028, "Wrong size on EnhancedInputLibrary_Conv_InputActionValueToBool"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToBool, InValue) == 0x000000, "Member 'EnhancedInputLibrary_Conv_InputActionValueToBool::InValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToBool, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_Conv_InputActionValueToBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_Conv_InputActionValueToString \ +static_assert(alignof(EnhancedInputLibrary_Conv_InputActionValueToString) == 0x000008, "Wrong alignment on EnhancedInputLibrary_Conv_InputActionValueToString"); \ +static_assert(sizeof(EnhancedInputLibrary_Conv_InputActionValueToString) == 0x000030, "Wrong size on EnhancedInputLibrary_Conv_InputActionValueToString"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToString, ActionValue) == 0x000000, "Member 'EnhancedInputLibrary_Conv_InputActionValueToString::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_Conv_InputActionValueToString, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_Conv_InputActionValueToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetBoundActionValue \ +static_assert(alignof(EnhancedInputLibrary_GetBoundActionValue) == 0x000008, "Wrong alignment on EnhancedInputLibrary_GetBoundActionValue"); \ +static_assert(sizeof(EnhancedInputLibrary_GetBoundActionValue) == 0x000030, "Wrong size on EnhancedInputLibrary_GetBoundActionValue"); \ +static_assert(offsetof(EnhancedInputLibrary_GetBoundActionValue, Actor) == 0x000000, "Member 'EnhancedInputLibrary_GetBoundActionValue::Actor' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_GetBoundActionValue, Action) == 0x000008, "Member 'EnhancedInputLibrary_GetBoundActionValue::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_GetBoundActionValue, ReturnValue) == 0x000010, "Member 'EnhancedInputLibrary_GetBoundActionValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetFirstPlayerMappableKeySlot \ +static_assert(alignof(EnhancedInputLibrary_GetFirstPlayerMappableKeySlot) == 0x000004, "Wrong alignment on EnhancedInputLibrary_GetFirstPlayerMappableKeySlot"); \ +static_assert(sizeof(EnhancedInputLibrary_GetFirstPlayerMappableKeySlot) == 0x000004, "Wrong size on EnhancedInputLibrary_GetFirstPlayerMappableKeySlot"); \ +static_assert(offsetof(EnhancedInputLibrary_GetFirstPlayerMappableKeySlot, ReturnValue) == 0x000000, "Member 'EnhancedInputLibrary_GetFirstPlayerMappableKeySlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetFourthPlayerMappableKeySlot \ +static_assert(alignof(EnhancedInputLibrary_GetFourthPlayerMappableKeySlot) == 0x000004, "Wrong alignment on EnhancedInputLibrary_GetFourthPlayerMappableKeySlot"); \ +static_assert(sizeof(EnhancedInputLibrary_GetFourthPlayerMappableKeySlot) == 0x000004, "Wrong size on EnhancedInputLibrary_GetFourthPlayerMappableKeySlot"); \ +static_assert(offsetof(EnhancedInputLibrary_GetFourthPlayerMappableKeySlot, ReturnValue) == 0x000000, "Member 'EnhancedInputLibrary_GetFourthPlayerMappableKeySlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetMappingName \ +static_assert(alignof(EnhancedInputLibrary_GetMappingName) == 0x000008, "Wrong alignment on EnhancedInputLibrary_GetMappingName"); \ +static_assert(sizeof(EnhancedInputLibrary_GetMappingName) == 0x000058, "Wrong size on EnhancedInputLibrary_GetMappingName"); \ +static_assert(offsetof(EnhancedInputLibrary_GetMappingName, ActionKeyMapping) == 0x000000, "Member 'EnhancedInputLibrary_GetMappingName::ActionKeyMapping' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_GetMappingName, ReturnValue) == 0x000050, "Member 'EnhancedInputLibrary_GetMappingName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetPlayerMappableKeySettings \ +static_assert(alignof(EnhancedInputLibrary_GetPlayerMappableKeySettings) == 0x000008, "Wrong alignment on EnhancedInputLibrary_GetPlayerMappableKeySettings"); \ +static_assert(sizeof(EnhancedInputLibrary_GetPlayerMappableKeySettings) == 0x000058, "Wrong size on EnhancedInputLibrary_GetPlayerMappableKeySettings"); \ +static_assert(offsetof(EnhancedInputLibrary_GetPlayerMappableKeySettings, ActionKeyMapping) == 0x000000, "Member 'EnhancedInputLibrary_GetPlayerMappableKeySettings::ActionKeyMapping' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_GetPlayerMappableKeySettings, ReturnValue) == 0x000050, "Member 'EnhancedInputLibrary_GetPlayerMappableKeySettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetSecondPlayerMappableKeySlot \ +static_assert(alignof(EnhancedInputLibrary_GetSecondPlayerMappableKeySlot) == 0x000004, "Wrong alignment on EnhancedInputLibrary_GetSecondPlayerMappableKeySlot"); \ +static_assert(sizeof(EnhancedInputLibrary_GetSecondPlayerMappableKeySlot) == 0x000004, "Wrong size on EnhancedInputLibrary_GetSecondPlayerMappableKeySlot"); \ +static_assert(offsetof(EnhancedInputLibrary_GetSecondPlayerMappableKeySlot, ReturnValue) == 0x000000, "Member 'EnhancedInputLibrary_GetSecondPlayerMappableKeySlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_GetThirdPlayerMappableKeySlot \ +static_assert(alignof(EnhancedInputLibrary_GetThirdPlayerMappableKeySlot) == 0x000004, "Wrong alignment on EnhancedInputLibrary_GetThirdPlayerMappableKeySlot"); \ +static_assert(sizeof(EnhancedInputLibrary_GetThirdPlayerMappableKeySlot) == 0x000004, "Wrong size on EnhancedInputLibrary_GetThirdPlayerMappableKeySlot"); \ +static_assert(offsetof(EnhancedInputLibrary_GetThirdPlayerMappableKeySlot, ReturnValue) == 0x000000, "Member 'EnhancedInputLibrary_GetThirdPlayerMappableKeySlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_IsActionKeyMappingPlayerMappable \ +static_assert(alignof(EnhancedInputLibrary_IsActionKeyMappingPlayerMappable) == 0x000008, "Wrong alignment on EnhancedInputLibrary_IsActionKeyMappingPlayerMappable"); \ +static_assert(sizeof(EnhancedInputLibrary_IsActionKeyMappingPlayerMappable) == 0x000058, "Wrong size on EnhancedInputLibrary_IsActionKeyMappingPlayerMappable"); \ +static_assert(offsetof(EnhancedInputLibrary_IsActionKeyMappingPlayerMappable, ActionKeyMapping) == 0x000000, "Member 'EnhancedInputLibrary_IsActionKeyMappingPlayerMappable::ActionKeyMapping' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_IsActionKeyMappingPlayerMappable, ReturnValue) == 0x000050, "Member 'EnhancedInputLibrary_IsActionKeyMappingPlayerMappable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_MakeInputActionValue \ +static_assert(alignof(EnhancedInputLibrary_MakeInputActionValue) == 0x000008, "Wrong alignment on EnhancedInputLibrary_MakeInputActionValue"); \ +static_assert(sizeof(EnhancedInputLibrary_MakeInputActionValue) == 0x000058, "Wrong size on EnhancedInputLibrary_MakeInputActionValue"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValue, X) == 0x000000, "Member 'EnhancedInputLibrary_MakeInputActionValue::X' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValue, Y) == 0x000008, "Member 'EnhancedInputLibrary_MakeInputActionValue::Y' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValue, Z) == 0x000010, "Member 'EnhancedInputLibrary_MakeInputActionValue::Z' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValue, MatchValueType) == 0x000018, "Member 'EnhancedInputLibrary_MakeInputActionValue::MatchValueType' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValue, ReturnValue) == 0x000038, "Member 'EnhancedInputLibrary_MakeInputActionValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_MakeInputActionValueOfType \ +static_assert(alignof(EnhancedInputLibrary_MakeInputActionValueOfType) == 0x000008, "Wrong alignment on EnhancedInputLibrary_MakeInputActionValueOfType"); \ +static_assert(sizeof(EnhancedInputLibrary_MakeInputActionValueOfType) == 0x000040, "Wrong size on EnhancedInputLibrary_MakeInputActionValueOfType"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValueOfType, X) == 0x000000, "Member 'EnhancedInputLibrary_MakeInputActionValueOfType::X' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValueOfType, Y) == 0x000008, "Member 'EnhancedInputLibrary_MakeInputActionValueOfType::Y' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValueOfType, Z) == 0x000010, "Member 'EnhancedInputLibrary_MakeInputActionValueOfType::Z' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValueOfType, ValueType) == 0x000018, "Member 'EnhancedInputLibrary_MakeInputActionValueOfType::ValueType' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_MakeInputActionValueOfType, ReturnValue) == 0x000020, "Member 'EnhancedInputLibrary_MakeInputActionValueOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext \ +static_assert(alignof(EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext) == 0x000008, "Wrong alignment on EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext"); \ +static_assert(sizeof(EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext) == 0x000010, "Wrong size on EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext"); \ +static_assert(offsetof(EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext, Context) == 0x000000, "Member 'EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext::Context' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext, bForceImmediately) == 0x000008, "Member 'EnhancedInputLibrary_RequestRebuildControlMappingsUsingContext::bForceImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputLibrary \ +static_assert(alignof(UEnhancedInputLibrary) == 0x000008, "Wrong alignment on UEnhancedInputLibrary"); \ +static_assert(sizeof(UEnhancedInputLibrary) == 0x000028, "Wrong size on UEnhancedInputLibrary"); \ + +#define DUMPER7_ASSERTS_EnhancedInputPlatformData_GetContextRedirect \ +static_assert(alignof(EnhancedInputPlatformData_GetContextRedirect) == 0x000008, "Wrong alignment on EnhancedInputPlatformData_GetContextRedirect"); \ +static_assert(sizeof(EnhancedInputPlatformData_GetContextRedirect) == 0x000010, "Wrong size on EnhancedInputPlatformData_GetContextRedirect"); \ +static_assert(offsetof(EnhancedInputPlatformData_GetContextRedirect, InContext) == 0x000000, "Member 'EnhancedInputPlatformData_GetContextRedirect::InContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputPlatformData_GetContextRedirect, ReturnValue) == 0x000008, "Member 'EnhancedInputPlatformData_GetContextRedirect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputPlatformData \ +static_assert(alignof(UEnhancedInputPlatformData) == 0x000008, "Wrong alignment on UEnhancedInputPlatformData"); \ +static_assert(sizeof(UEnhancedInputPlatformData) == 0x000078, "Wrong size on UEnhancedInputPlatformData"); \ +static_assert(offsetof(UEnhancedInputPlatformData, MappingContextRedirects) == 0x000028, "Member 'UEnhancedInputPlatformData::MappingContextRedirects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputPlatformSettings \ +static_assert(alignof(UEnhancedInputPlatformSettings) == 0x000008, "Wrong alignment on UEnhancedInputPlatformSettings"); \ +static_assert(sizeof(UEnhancedInputPlatformSettings) == 0x000068, "Wrong size on UEnhancedInputPlatformSettings"); \ +static_assert(offsetof(UEnhancedInputPlatformSettings, InputData) == 0x000040, "Member 'UEnhancedInputPlatformSettings::InputData' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputPlatformSettings, InputDataClasses) == 0x000050, "Member 'UEnhancedInputPlatformSettings::InputDataClasses' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputPlatformSettings, bShouldLogMappingContextRedirects) == 0x000060, "Member 'UEnhancedInputPlatformSettings::bShouldLogMappingContextRedirects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_AddMappingContext \ +static_assert(alignof(EnhancedInputSubsystemInterface_AddMappingContext) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_AddMappingContext"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_AddMappingContext) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_AddMappingContext"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_AddMappingContext, MappingContext) == 0x000000, "Member 'EnhancedInputSubsystemInterface_AddMappingContext::MappingContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_AddMappingContext, Priority) == 0x000008, "Member 'EnhancedInputSubsystemInterface_AddMappingContext::Priority' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_AddMappingContext, Options) == 0x00000C, "Member 'EnhancedInputSubsystemInterface_AddMappingContext::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_AddPlayerMappableConfig \ +static_assert(alignof(EnhancedInputSubsystemInterface_AddPlayerMappableConfig) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_AddPlayerMappableConfig"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_AddPlayerMappableConfig) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_AddPlayerMappableConfig"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_AddPlayerMappableConfig, Config) == 0x000000, "Member 'EnhancedInputSubsystemInterface_AddPlayerMappableConfig::Config' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_AddPlayerMappableConfig, Options) == 0x000008, "Member 'EnhancedInputSubsystemInterface_AddPlayerMappableConfig::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_InjectInputForAction \ +static_assert(alignof(EnhancedInputSubsystemInterface_InjectInputForAction) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_InjectInputForAction"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_InjectInputForAction) == 0x000048, "Wrong size on EnhancedInputSubsystemInterface_InjectInputForAction"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForAction, Action) == 0x000000, "Member 'EnhancedInputSubsystemInterface_InjectInputForAction::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForAction, RawValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_InjectInputForAction::RawValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForAction, Modifiers) == 0x000028, "Member 'EnhancedInputSubsystemInterface_InjectInputForAction::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForAction, Triggers) == 0x000038, "Member 'EnhancedInputSubsystemInterface_InjectInputForAction::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_InjectInputForPlayerMapping \ +static_assert(alignof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_InjectInputForPlayerMapping"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping) == 0x000048, "Wrong size on EnhancedInputSubsystemInterface_InjectInputForPlayerMapping"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_InjectInputForPlayerMapping::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping, RawValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_InjectInputForPlayerMapping::RawValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping, Modifiers) == 0x000028, "Member 'EnhancedInputSubsystemInterface_InjectInputForPlayerMapping::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputForPlayerMapping, Triggers) == 0x000038, "Member 'EnhancedInputSubsystemInterface_InjectInputForPlayerMapping::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_InjectInputVectorForAction \ +static_assert(alignof(EnhancedInputSubsystemInterface_InjectInputVectorForAction) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_InjectInputVectorForAction"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_InjectInputVectorForAction) == 0x000040, "Wrong size on EnhancedInputSubsystemInterface_InjectInputVectorForAction"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForAction, Action) == 0x000000, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForAction::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForAction, Value) == 0x000008, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForAction::Value' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForAction, Modifiers) == 0x000020, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForAction::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForAction, Triggers) == 0x000030, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForAction::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping \ +static_assert(alignof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping) == 0x000040, "Wrong size on EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping, Value) == 0x000008, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping::Value' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping, Modifiers) == 0x000020, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping, Triggers) == 0x000030, "Member 'EnhancedInputSubsystemInterface_InjectInputVectorForPlayerMapping::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot \ +static_assert(alignof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot) == 0x000030, "Wrong size on EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot, NewKey) == 0x000008, "Member 'EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot::NewKey' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot, KeySlot) == 0x000020, "Member 'EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot::KeySlot' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot, Options) == 0x000024, "Member 'EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot, ReturnValue) == 0x000028, "Member 'EnhancedInputSubsystemInterface_K2_AddPlayerMappedKeyInSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot \ +static_assert(alignof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot) == 0x000004, "Wrong alignment on EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot) == 0x000014, "Wrong size on EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot, KeySlot) == 0x000008, "Member 'EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot::KeySlot' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot, Options) == 0x00000C, "Member 'EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot, ReturnValue) == 0x000010, "Member 'EnhancedInputSubsystemInterface_K2_RemovePlayerMappedKeyInSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_OnUserKeyProfileChanged \ +static_assert(alignof(EnhancedInputSubsystemInterface_OnUserKeyProfileChanged) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_OnUserKeyProfileChanged"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_OnUserKeyProfileChanged) == 0x000008, "Wrong size on EnhancedInputSubsystemInterface_OnUserKeyProfileChanged"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_OnUserKeyProfileChanged, InNewProfile) == 0x000000, "Member 'EnhancedInputSubsystemInterface_OnUserKeyProfileChanged::InNewProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_OnUserSettingsChanged \ +static_assert(alignof(EnhancedInputSubsystemInterface_OnUserSettingsChanged) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_OnUserSettingsChanged"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_OnUserSettingsChanged) == 0x000008, "Wrong size on EnhancedInputSubsystemInterface_OnUserSettingsChanged"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_OnUserSettingsChanged, Settings) == 0x000000, "Member 'EnhancedInputSubsystemInterface_OnUserSettingsChanged::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet \ +static_assert(alignof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet) == 0x000040, "Wrong size on EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, InputContext) == 0x000000, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::InputContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, Action) == 0x000008, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, Key) == 0x000010, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::Key' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, OutIssues) == 0x000028, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::OutIssues' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, BlockingIssues) == 0x000038, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::BlockingIssues' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet, ReturnValue) == 0x000039, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInActiveContextSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_QueryMapKeyInContextSet \ +static_assert(alignof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_QueryMapKeyInContextSet"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet) == 0x000050, "Wrong size on EnhancedInputSubsystemInterface_QueryMapKeyInContextSet"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, PrioritizedActiveContexts) == 0x000000, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::PrioritizedActiveContexts' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, InputContext) == 0x000010, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::InputContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, Action) == 0x000018, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, Key) == 0x000020, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::Key' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, OutIssues) == 0x000038, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::OutIssues' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, BlockingIssues) == 0x000048, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::BlockingIssues' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryMapKeyInContextSet, ReturnValue) == 0x000049, "Member 'EnhancedInputSubsystemInterface_QueryMapKeyInContextSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys \ +static_assert(alignof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys) == 0x000001, "Wrong alignment on EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys) == 0x000001, "Wrong size on EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys, Options) == 0x000000, "Member 'EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeys::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping \ +static_assert(alignof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping) == 0x000004, "Wrong alignment on EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping, Options) == 0x000008, "Member 'EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping, ReturnValue) == 0x00000C, "Member 'EnhancedInputSubsystemInterface_RemoveAllPlayerMappedKeysForMapping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_RemoveMappingContext \ +static_assert(alignof(EnhancedInputSubsystemInterface_RemoveMappingContext) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_RemoveMappingContext"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_RemoveMappingContext) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_RemoveMappingContext"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveMappingContext, MappingContext) == 0x000000, "Member 'EnhancedInputSubsystemInterface_RemoveMappingContext::MappingContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemoveMappingContext, Options) == 0x000008, "Member 'EnhancedInputSubsystemInterface_RemoveMappingContext::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_RemovePlayerMappableConfig \ +static_assert(alignof(EnhancedInputSubsystemInterface_RemovePlayerMappableConfig) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_RemovePlayerMappableConfig"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_RemovePlayerMappableConfig) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_RemovePlayerMappableConfig"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemovePlayerMappableConfig, Config) == 0x000000, "Member 'EnhancedInputSubsystemInterface_RemovePlayerMappableConfig::Config' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RemovePlayerMappableConfig, Options) == 0x000008, "Member 'EnhancedInputSubsystemInterface_RemovePlayerMappableConfig::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_RequestRebuildControlMappings \ +static_assert(alignof(EnhancedInputSubsystemInterface_RequestRebuildControlMappings) == 0x000001, "Wrong alignment on EnhancedInputSubsystemInterface_RequestRebuildControlMappings"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_RequestRebuildControlMappings) == 0x000002, "Wrong size on EnhancedInputSubsystemInterface_RequestRebuildControlMappings"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RequestRebuildControlMappings, Options) == 0x000000, "Member 'EnhancedInputSubsystemInterface_RequestRebuildControlMappings::Options' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_RequestRebuildControlMappings, RebuildType) == 0x000001, "Member 'EnhancedInputSubsystemInterface_RequestRebuildControlMappings::RebuildType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction \ +static_assert(alignof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction) == 0x000048, "Wrong size on EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction, Action) == 0x000000, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction, RawValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction::RawValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction, Modifiers) == 0x000028, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction, Triggers) == 0x000038, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForAction::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping \ +static_assert(alignof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping) == 0x000048, "Wrong size on EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping, RawValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping::RawValue' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping, Modifiers) == 0x000028, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping, Triggers) == 0x000038, "Member 'EnhancedInputSubsystemInterface_StartContinuousInputInjectionForPlayerMapping::Triggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction \ +static_assert(alignof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction) == 0x000008, "Wrong size on EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction, Action) == 0x000000, "Member 'EnhancedInputSubsystemInterface_StopContinuousInputInjectionForAction::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping \ +static_assert(alignof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping) == 0x000004, "Wrong alignment on EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping) == 0x000008, "Wrong size on EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_StopContinuousInputInjectionForPlayerMapping::MappingName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings \ +static_assert(alignof(EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings, ReturnValue) == 0x000000, "Member 'EnhancedInputSubsystemInterface_GetAllPlayerMappableActionKeyMappings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys \ +static_assert(alignof(EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys) == 0x000018, "Wrong size on EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys, ReturnValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_GetAllPlayerMappedKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_GetUserSettings \ +static_assert(alignof(EnhancedInputSubsystemInterface_GetUserSettings) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_GetUserSettings"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_GetUserSettings) == 0x000008, "Wrong size on EnhancedInputSubsystemInterface_GetUserSettings"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_GetUserSettings, ReturnValue) == 0x000000, "Member 'EnhancedInputSubsystemInterface_GetUserSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_HasMappingContext \ +static_assert(alignof(EnhancedInputSubsystemInterface_HasMappingContext) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_HasMappingContext"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_HasMappingContext) == 0x000010, "Wrong size on EnhancedInputSubsystemInterface_HasMappingContext"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_HasMappingContext, MappingContext) == 0x000000, "Member 'EnhancedInputSubsystemInterface_HasMappingContext::MappingContext' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_HasMappingContext, OutFoundPriority) == 0x000008, "Member 'EnhancedInputSubsystemInterface_HasMappingContext::OutFoundPriority' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_HasMappingContext, ReturnValue) == 0x00000C, "Member 'EnhancedInputSubsystemInterface_HasMappingContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot \ +static_assert(alignof(EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot) == 0x000028, "Wrong size on EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot, MappingName) == 0x000000, "Member 'EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot::MappingName' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot, KeySlot) == 0x000008, "Member 'EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot::KeySlot' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot, ReturnValue) == 0x000010, "Member 'EnhancedInputSubsystemInterface_K2_GetPlayerMappedKeyInSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputSubsystemInterface_QueryKeysMappedToAction \ +static_assert(alignof(EnhancedInputSubsystemInterface_QueryKeysMappedToAction) == 0x000008, "Wrong alignment on EnhancedInputSubsystemInterface_QueryKeysMappedToAction"); \ +static_assert(sizeof(EnhancedInputSubsystemInterface_QueryKeysMappedToAction) == 0x000018, "Wrong size on EnhancedInputSubsystemInterface_QueryKeysMappedToAction"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryKeysMappedToAction, Action) == 0x000000, "Member 'EnhancedInputSubsystemInterface_QueryKeysMappedToAction::Action' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputSubsystemInterface_QueryKeysMappedToAction, ReturnValue) == 0x000008, "Member 'EnhancedInputSubsystemInterface_QueryKeysMappedToAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IEnhancedInputSubsystemInterface \ +static_assert(alignof(IEnhancedInputSubsystemInterface) == 0x000001, "Wrong alignment on IEnhancedInputSubsystemInterface"); \ +static_assert(sizeof(IEnhancedInputSubsystemInterface) == 0x000001, "Wrong size on IEnhancedInputSubsystemInterface"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputLocalPlayerSubsystem \ +static_assert(alignof(UEnhancedInputLocalPlayerSubsystem) == 0x000008, "Wrong alignment on UEnhancedInputLocalPlayerSubsystem"); \ +static_assert(sizeof(UEnhancedInputLocalPlayerSubsystem) == 0x0001E8, "Wrong size on UEnhancedInputLocalPlayerSubsystem"); \ +static_assert(offsetof(UEnhancedInputLocalPlayerSubsystem, ControlMappingsRebuiltDelegate) == 0x0001D0, "Member 'UEnhancedInputLocalPlayerSubsystem::ControlMappingsRebuiltDelegate' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputLocalPlayerSubsystem, UserSettings) == 0x0001E0, "Member 'UEnhancedInputLocalPlayerSubsystem::UserSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputWorldSubsystem_AddActorInputComponent \ +static_assert(alignof(EnhancedInputWorldSubsystem_AddActorInputComponent) == 0x000008, "Wrong alignment on EnhancedInputWorldSubsystem_AddActorInputComponent"); \ +static_assert(sizeof(EnhancedInputWorldSubsystem_AddActorInputComponent) == 0x000008, "Wrong size on EnhancedInputWorldSubsystem_AddActorInputComponent"); \ +static_assert(offsetof(EnhancedInputWorldSubsystem_AddActorInputComponent, Actor) == 0x000000, "Member 'EnhancedInputWorldSubsystem_AddActorInputComponent::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnhancedInputWorldSubsystem_RemoveActorInputComponent \ +static_assert(alignof(EnhancedInputWorldSubsystem_RemoveActorInputComponent) == 0x000008, "Wrong alignment on EnhancedInputWorldSubsystem_RemoveActorInputComponent"); \ +static_assert(sizeof(EnhancedInputWorldSubsystem_RemoveActorInputComponent) == 0x000010, "Wrong size on EnhancedInputWorldSubsystem_RemoveActorInputComponent"); \ +static_assert(offsetof(EnhancedInputWorldSubsystem_RemoveActorInputComponent, Actor) == 0x000000, "Member 'EnhancedInputWorldSubsystem_RemoveActorInputComponent::Actor' has a wrong offset!"); \ +static_assert(offsetof(EnhancedInputWorldSubsystem_RemoveActorInputComponent, ReturnValue) == 0x000008, "Member 'EnhancedInputWorldSubsystem_RemoveActorInputComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedInputWorldSubsystem \ +static_assert(alignof(UEnhancedInputWorldSubsystem) == 0x000008, "Wrong alignment on UEnhancedInputWorldSubsystem"); \ +static_assert(sizeof(UEnhancedInputWorldSubsystem) == 0x0001F8, "Wrong size on UEnhancedInputWorldSubsystem"); \ +static_assert(offsetof(UEnhancedInputWorldSubsystem, PlayerInput) == 0x0001D0, "Member 'UEnhancedInputWorldSubsystem::PlayerInput' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedInputWorldSubsystem, CurrentInputStack) == 0x0001E8, "Member 'UEnhancedInputWorldSubsystem::CurrentInputStack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnhancedPlayerInput \ +static_assert(alignof(UEnhancedPlayerInput) == 0x000008, "Wrong alignment on UEnhancedPlayerInput"); \ +static_assert(sizeof(UEnhancedPlayerInput) == 0x0007F0, "Wrong size on UEnhancedPlayerInput"); \ +static_assert(offsetof(UEnhancedPlayerInput, KeyConsumptionData) == 0x000498, "Member 'UEnhancedPlayerInput::KeyConsumptionData' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, AppliedInputContexts) == 0x0004E8, "Member 'UEnhancedPlayerInput::AppliedInputContexts' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, EnhancedActionMappings) == 0x000538, "Member 'UEnhancedPlayerInput::EnhancedActionMappings' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, ActionInstanceData) == 0x000598, "Member 'UEnhancedPlayerInput::ActionInstanceData' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, KeysPressedThisTick) == 0x000688, "Member 'UEnhancedPlayerInput::KeysPressedThisTick' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, InputsInjectedThisTick) == 0x0006D8, "Member 'UEnhancedPlayerInput::InputsInjectedThisTick' has a wrong offset!"); \ +static_assert(offsetof(UEnhancedPlayerInput, LastInjectedActions) == 0x000728, "Member 'UEnhancedPlayerInput::LastInjectedActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputAction \ +static_assert(alignof(UInputAction) == 0x000008, "Wrong alignment on UInputAction"); \ +static_assert(sizeof(UInputAction) == 0x000080, "Wrong size on UInputAction"); \ +static_assert(offsetof(UInputAction, ActionDescription) == 0x000030, "Member 'UInputAction::ActionDescription' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, bTriggerWhenPaused) == 0x000048, "Member 'UInputAction::bTriggerWhenPaused' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, bConsumeInput) == 0x000049, "Member 'UInputAction::bConsumeInput' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, bConsumesActionAndAxisMappings) == 0x00004A, "Member 'UInputAction::bConsumesActionAndAxisMappings' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, bReserveAllMappings) == 0x00004B, "Member 'UInputAction::bReserveAllMappings' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, TriggerEventsThatConsumeLegacyKeys) == 0x00004C, "Member 'UInputAction::TriggerEventsThatConsumeLegacyKeys' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, ValueType) == 0x000050, "Member 'UInputAction::ValueType' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, AccumulationBehavior) == 0x000051, "Member 'UInputAction::AccumulationBehavior' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, Triggers) == 0x000058, "Member 'UInputAction::Triggers' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, Modifiers) == 0x000068, "Member 'UInputAction::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(UInputAction, PlayerMappableKeySettings) == 0x000078, "Member 'UInputAction::PlayerMappableKeySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputDebugKeyDelegateBinding \ +static_assert(alignof(UInputDebugKeyDelegateBinding) == 0x000008, "Wrong alignment on UInputDebugKeyDelegateBinding"); \ +static_assert(sizeof(UInputDebugKeyDelegateBinding) == 0x000038, "Wrong size on UInputDebugKeyDelegateBinding"); \ +static_assert(offsetof(UInputDebugKeyDelegateBinding, InputDebugKeyDelegateBindings) == 0x000028, "Member 'UInputDebugKeyDelegateBinding::InputDebugKeyDelegateBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputMappingContext_MapKey \ +static_assert(alignof(InputMappingContext_MapKey) == 0x000008, "Wrong alignment on InputMappingContext_MapKey"); \ +static_assert(sizeof(InputMappingContext_MapKey) == 0x000070, "Wrong size on InputMappingContext_MapKey"); \ +static_assert(offsetof(InputMappingContext_MapKey, Action) == 0x000000, "Member 'InputMappingContext_MapKey::Action' has a wrong offset!"); \ +static_assert(offsetof(InputMappingContext_MapKey, ToKey) == 0x000008, "Member 'InputMappingContext_MapKey::ToKey' has a wrong offset!"); \ +static_assert(offsetof(InputMappingContext_MapKey, ReturnValue) == 0x000020, "Member 'InputMappingContext_MapKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputMappingContext_UnmapAction \ +static_assert(alignof(InputMappingContext_UnmapAction) == 0x000008, "Wrong alignment on InputMappingContext_UnmapAction"); \ +static_assert(sizeof(InputMappingContext_UnmapAction) == 0x000008, "Wrong size on InputMappingContext_UnmapAction"); \ +static_assert(offsetof(InputMappingContext_UnmapAction, Action) == 0x000000, "Member 'InputMappingContext_UnmapAction::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputMappingContext_UnmapAllKeysFromAction \ +static_assert(alignof(InputMappingContext_UnmapAllKeysFromAction) == 0x000008, "Wrong alignment on InputMappingContext_UnmapAllKeysFromAction"); \ +static_assert(sizeof(InputMappingContext_UnmapAllKeysFromAction) == 0x000008, "Wrong size on InputMappingContext_UnmapAllKeysFromAction"); \ +static_assert(offsetof(InputMappingContext_UnmapAllKeysFromAction, Action) == 0x000000, "Member 'InputMappingContext_UnmapAllKeysFromAction::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputMappingContext_UnmapKey \ +static_assert(alignof(InputMappingContext_UnmapKey) == 0x000008, "Wrong alignment on InputMappingContext_UnmapKey"); \ +static_assert(sizeof(InputMappingContext_UnmapKey) == 0x000020, "Wrong size on InputMappingContext_UnmapKey"); \ +static_assert(offsetof(InputMappingContext_UnmapKey, Action) == 0x000000, "Member 'InputMappingContext_UnmapKey::Action' has a wrong offset!"); \ +static_assert(offsetof(InputMappingContext_UnmapKey, Key) == 0x000008, "Member 'InputMappingContext_UnmapKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputMappingContext \ +static_assert(alignof(UInputMappingContext) == 0x000008, "Wrong alignment on UInputMappingContext"); \ +static_assert(sizeof(UInputMappingContext) == 0x000058, "Wrong size on UInputMappingContext"); \ +static_assert(offsetof(UInputMappingContext, Mappings) == 0x000030, "Member 'UInputMappingContext::Mappings' has a wrong offset!"); \ +static_assert(offsetof(UInputMappingContext, ContextDescription) == 0x000040, "Member 'UInputMappingContext::ContextDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputModifier_GetVisualizationColor \ +static_assert(alignof(InputModifier_GetVisualizationColor) == 0x000008, "Wrong alignment on InputModifier_GetVisualizationColor"); \ +static_assert(sizeof(InputModifier_GetVisualizationColor) == 0x000050, "Wrong size on InputModifier_GetVisualizationColor"); \ +static_assert(offsetof(InputModifier_GetVisualizationColor, SampleValue) == 0x000000, "Member 'InputModifier_GetVisualizationColor::SampleValue' has a wrong offset!"); \ +static_assert(offsetof(InputModifier_GetVisualizationColor, FinalValue) == 0x000020, "Member 'InputModifier_GetVisualizationColor::FinalValue' has a wrong offset!"); \ +static_assert(offsetof(InputModifier_GetVisualizationColor, ReturnValue) == 0x000040, "Member 'InputModifier_GetVisualizationColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputModifier_ModifyRaw \ +static_assert(alignof(InputModifier_ModifyRaw) == 0x000008, "Wrong alignment on InputModifier_ModifyRaw"); \ +static_assert(sizeof(InputModifier_ModifyRaw) == 0x000050, "Wrong size on InputModifier_ModifyRaw"); \ +static_assert(offsetof(InputModifier_ModifyRaw, PlayerInput) == 0x000000, "Member 'InputModifier_ModifyRaw::PlayerInput' has a wrong offset!"); \ +static_assert(offsetof(InputModifier_ModifyRaw, CurrentValue) == 0x000008, "Member 'InputModifier_ModifyRaw::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(InputModifier_ModifyRaw, DeltaTime) == 0x000028, "Member 'InputModifier_ModifyRaw::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(InputModifier_ModifyRaw, ReturnValue) == 0x000030, "Member 'InputModifier_ModifyRaw::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifier \ +static_assert(alignof(UInputModifier) == 0x000008, "Wrong alignment on UInputModifier"); \ +static_assert(sizeof(UInputModifier) == 0x000028, "Wrong size on UInputModifier"); \ + +#define DUMPER7_ASSERTS_UInputModifierDeadZone \ +static_assert(alignof(UInputModifierDeadZone) == 0x000008, "Wrong alignment on UInputModifierDeadZone"); \ +static_assert(sizeof(UInputModifierDeadZone) == 0x000038, "Wrong size on UInputModifierDeadZone"); \ +static_assert(offsetof(UInputModifierDeadZone, LowerThreshold) == 0x000028, "Member 'UInputModifierDeadZone::LowerThreshold' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierDeadZone, UpperThreshold) == 0x00002C, "Member 'UInputModifierDeadZone::UpperThreshold' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierDeadZone, Type) == 0x000030, "Member 'UInputModifierDeadZone::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierScalar \ +static_assert(alignof(UInputModifierScalar) == 0x000008, "Wrong alignment on UInputModifierScalar"); \ +static_assert(sizeof(UInputModifierScalar) == 0x000040, "Wrong size on UInputModifierScalar"); \ +static_assert(offsetof(UInputModifierScalar, Scalar) == 0x000028, "Member 'UInputModifierScalar::Scalar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierScaleByDeltaTime \ +static_assert(alignof(UInputModifierScaleByDeltaTime) == 0x000008, "Wrong alignment on UInputModifierScaleByDeltaTime"); \ +static_assert(sizeof(UInputModifierScaleByDeltaTime) == 0x000028, "Wrong size on UInputModifierScaleByDeltaTime"); \ + +#define DUMPER7_ASSERTS_UInputModifierNegate \ +static_assert(alignof(UInputModifierNegate) == 0x000008, "Wrong alignment on UInputModifierNegate"); \ +static_assert(sizeof(UInputModifierNegate) == 0x000030, "Wrong size on UInputModifierNegate"); \ +static_assert(offsetof(UInputModifierNegate, bX) == 0x000028, "Member 'UInputModifierNegate::bX' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierNegate, bY) == 0x000029, "Member 'UInputModifierNegate::bY' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierNegate, bZ) == 0x00002A, "Member 'UInputModifierNegate::bZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierSmooth \ +static_assert(alignof(UInputModifierSmooth) == 0x000008, "Wrong alignment on UInputModifierSmooth"); \ +static_assert(sizeof(UInputModifierSmooth) == 0x000058, "Wrong size on UInputModifierSmooth"); \ + +#define DUMPER7_ASSERTS_UInputModifierResponseCurveExponential \ +static_assert(alignof(UInputModifierResponseCurveExponential) == 0x000008, "Wrong alignment on UInputModifierResponseCurveExponential"); \ +static_assert(sizeof(UInputModifierResponseCurveExponential) == 0x000040, "Wrong size on UInputModifierResponseCurveExponential"); \ +static_assert(offsetof(UInputModifierResponseCurveExponential, CurveExponent) == 0x000028, "Member 'UInputModifierResponseCurveExponential::CurveExponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierResponseCurveUser \ +static_assert(alignof(UInputModifierResponseCurveUser) == 0x000008, "Wrong alignment on UInputModifierResponseCurveUser"); \ +static_assert(sizeof(UInputModifierResponseCurveUser) == 0x000040, "Wrong size on UInputModifierResponseCurveUser"); \ +static_assert(offsetof(UInputModifierResponseCurveUser, ResponseX) == 0x000028, "Member 'UInputModifierResponseCurveUser::ResponseX' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierResponseCurveUser, ResponseY) == 0x000030, "Member 'UInputModifierResponseCurveUser::ResponseY' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierResponseCurveUser, ResponseZ) == 0x000038, "Member 'UInputModifierResponseCurveUser::ResponseZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierFOVScaling \ +static_assert(alignof(UInputModifierFOVScaling) == 0x000008, "Wrong alignment on UInputModifierFOVScaling"); \ +static_assert(sizeof(UInputModifierFOVScaling) == 0x000030, "Wrong size on UInputModifierFOVScaling"); \ +static_assert(offsetof(UInputModifierFOVScaling, FOVScale) == 0x000028, "Member 'UInputModifierFOVScaling::FOVScale' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierFOVScaling, FOVScalingType) == 0x00002C, "Member 'UInputModifierFOVScaling::FOVScalingType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierToWorldSpace \ +static_assert(alignof(UInputModifierToWorldSpace) == 0x000008, "Wrong alignment on UInputModifierToWorldSpace"); \ +static_assert(sizeof(UInputModifierToWorldSpace) == 0x000028, "Wrong size on UInputModifierToWorldSpace"); \ + +#define DUMPER7_ASSERTS_UInputModifierSwizzleAxis \ +static_assert(alignof(UInputModifierSwizzleAxis) == 0x000008, "Wrong alignment on UInputModifierSwizzleAxis"); \ +static_assert(sizeof(UInputModifierSwizzleAxis) == 0x000030, "Wrong size on UInputModifierSwizzleAxis"); \ +static_assert(offsetof(UInputModifierSwizzleAxis, Order) == 0x000028, "Member 'UInputModifierSwizzleAxis::Order' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputTrigger_UpdateState \ +static_assert(alignof(InputTrigger_UpdateState) == 0x000008, "Wrong alignment on InputTrigger_UpdateState"); \ +static_assert(sizeof(InputTrigger_UpdateState) == 0x000030, "Wrong size on InputTrigger_UpdateState"); \ +static_assert(offsetof(InputTrigger_UpdateState, PlayerInput) == 0x000000, "Member 'InputTrigger_UpdateState::PlayerInput' has a wrong offset!"); \ +static_assert(offsetof(InputTrigger_UpdateState, ModifiedValue) == 0x000008, "Member 'InputTrigger_UpdateState::ModifiedValue' has a wrong offset!"); \ +static_assert(offsetof(InputTrigger_UpdateState, DeltaTime) == 0x000028, "Member 'InputTrigger_UpdateState::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(InputTrigger_UpdateState, ReturnValue) == 0x00002C, "Member 'InputTrigger_UpdateState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputTrigger_GetTriggerType \ +static_assert(alignof(InputTrigger_GetTriggerType) == 0x000001, "Wrong alignment on InputTrigger_GetTriggerType"); \ +static_assert(sizeof(InputTrigger_GetTriggerType) == 0x000001, "Wrong size on InputTrigger_GetTriggerType"); \ +static_assert(offsetof(InputTrigger_GetTriggerType, ReturnValue) == 0x000000, "Member 'InputTrigger_GetTriggerType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InputTrigger_IsActuated \ +static_assert(alignof(InputTrigger_IsActuated) == 0x000008, "Wrong alignment on InputTrigger_IsActuated"); \ +static_assert(sizeof(InputTrigger_IsActuated) == 0x000028, "Wrong size on InputTrigger_IsActuated"); \ +static_assert(offsetof(InputTrigger_IsActuated, ForValue) == 0x000000, "Member 'InputTrigger_IsActuated::ForValue' has a wrong offset!"); \ +static_assert(offsetof(InputTrigger_IsActuated, ReturnValue) == 0x000020, "Member 'InputTrigger_IsActuated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTrigger \ +static_assert(alignof(UInputTrigger) == 0x000008, "Wrong alignment on UInputTrigger"); \ +static_assert(sizeof(UInputTrigger) == 0x000050, "Wrong size on UInputTrigger"); \ +static_assert(offsetof(UInputTrigger, ActuationThreshold) == 0x000028, "Member 'UInputTrigger::ActuationThreshold' has a wrong offset!"); \ +static_assert(offsetof(UInputTrigger, bShouldAlwaysTick) == 0x00002C, "Member 'UInputTrigger::bShouldAlwaysTick' has a wrong offset!"); \ +static_assert(offsetof(UInputTrigger, LastValue) == 0x000030, "Member 'UInputTrigger::LastValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerTimedBase \ +static_assert(alignof(UInputTriggerTimedBase) == 0x000008, "Wrong alignment on UInputTriggerTimedBase"); \ +static_assert(sizeof(UInputTriggerTimedBase) == 0x000058, "Wrong size on UInputTriggerTimedBase"); \ +static_assert(offsetof(UInputTriggerTimedBase, HeldDuration) == 0x000050, "Member 'UInputTriggerTimedBase::HeldDuration' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerTimedBase, bAffectedByTimeDilation) == 0x000054, "Member 'UInputTriggerTimedBase::bAffectedByTimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerDown \ +static_assert(alignof(UInputTriggerDown) == 0x000008, "Wrong alignment on UInputTriggerDown"); \ +static_assert(sizeof(UInputTriggerDown) == 0x000050, "Wrong size on UInputTriggerDown"); \ + +#define DUMPER7_ASSERTS_UInputTriggerPressed \ +static_assert(alignof(UInputTriggerPressed) == 0x000008, "Wrong alignment on UInputTriggerPressed"); \ +static_assert(sizeof(UInputTriggerPressed) == 0x000050, "Wrong size on UInputTriggerPressed"); \ + +#define DUMPER7_ASSERTS_UInputTriggerReleased \ +static_assert(alignof(UInputTriggerReleased) == 0x000008, "Wrong alignment on UInputTriggerReleased"); \ +static_assert(sizeof(UInputTriggerReleased) == 0x000050, "Wrong size on UInputTriggerReleased"); \ + +#define DUMPER7_ASSERTS_UInputTriggerHold \ +static_assert(alignof(UInputTriggerHold) == 0x000008, "Wrong alignment on UInputTriggerHold"); \ +static_assert(sizeof(UInputTriggerHold) == 0x000068, "Wrong size on UInputTriggerHold"); \ +static_assert(offsetof(UInputTriggerHold, HoldTimeThreshold) == 0x00005C, "Member 'UInputTriggerHold::HoldTimeThreshold' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerHold, bIsOneShot) == 0x000060, "Member 'UInputTriggerHold::bIsOneShot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerHoldAndRelease \ +static_assert(alignof(UInputTriggerHoldAndRelease) == 0x000008, "Wrong alignment on UInputTriggerHoldAndRelease"); \ +static_assert(sizeof(UInputTriggerHoldAndRelease) == 0x000060, "Wrong size on UInputTriggerHoldAndRelease"); \ +static_assert(offsetof(UInputTriggerHoldAndRelease, HoldTimeThreshold) == 0x000058, "Member 'UInputTriggerHoldAndRelease::HoldTimeThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerTap \ +static_assert(alignof(UInputTriggerTap) == 0x000008, "Wrong alignment on UInputTriggerTap"); \ +static_assert(sizeof(UInputTriggerTap) == 0x000060, "Wrong size on UInputTriggerTap"); \ +static_assert(offsetof(UInputTriggerTap, TapReleaseTimeThreshold) == 0x000058, "Member 'UInputTriggerTap::TapReleaseTimeThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerPulse \ +static_assert(alignof(UInputTriggerPulse) == 0x000008, "Wrong alignment on UInputTriggerPulse"); \ +static_assert(sizeof(UInputTriggerPulse) == 0x000068, "Wrong size on UInputTriggerPulse"); \ +static_assert(offsetof(UInputTriggerPulse, bTriggerOnStart) == 0x00005C, "Member 'UInputTriggerPulse::bTriggerOnStart' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerPulse, Interval) == 0x000060, "Member 'UInputTriggerPulse::Interval' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerPulse, TriggerLimit) == 0x000064, "Member 'UInputTriggerPulse::TriggerLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerChordAction \ +static_assert(alignof(UInputTriggerChordAction) == 0x000008, "Wrong alignment on UInputTriggerChordAction"); \ +static_assert(sizeof(UInputTriggerChordAction) == 0x000058, "Wrong size on UInputTriggerChordAction"); \ +static_assert(offsetof(UInputTriggerChordAction, ChordAction) == 0x000050, "Member 'UInputTriggerChordAction::ChordAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputTriggerChordBlocker \ +static_assert(alignof(UInputTriggerChordBlocker) == 0x000008, "Wrong alignment on UInputTriggerChordBlocker"); \ +static_assert(sizeof(UInputTriggerChordBlocker) == 0x000058, "Wrong size on UInputTriggerChordBlocker"); \ + +#define DUMPER7_ASSERTS_UInputTriggerCombo \ +static_assert(alignof(UInputTriggerCombo) == 0x000008, "Wrong alignment on UInputTriggerCombo"); \ +static_assert(sizeof(UInputTriggerCombo) == 0x000078, "Wrong size on UInputTriggerCombo"); \ +static_assert(offsetof(UInputTriggerCombo, CurrentComboStepIndex) == 0x000050, "Member 'UInputTriggerCombo::CurrentComboStepIndex' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerCombo, CurrentTimeBetweenComboSteps) == 0x000054, "Member 'UInputTriggerCombo::CurrentTimeBetweenComboSteps' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerCombo, ComboActions) == 0x000058, "Member 'UInputTriggerCombo::ComboActions' has a wrong offset!"); \ +static_assert(offsetof(UInputTriggerCombo, InputCancelActions) == 0x000068, "Member 'UInputTriggerCombo::InputCancelActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetConfigName \ +static_assert(alignof(PlayerMappableInputConfig_GetConfigName) == 0x000004, "Wrong alignment on PlayerMappableInputConfig_GetConfigName"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetConfigName) == 0x000008, "Wrong size on PlayerMappableInputConfig_GetConfigName"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetConfigName, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_GetConfigName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetDisplayName \ +static_assert(alignof(PlayerMappableInputConfig_GetDisplayName) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetDisplayName"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetDisplayName) == 0x000018, "Wrong size on PlayerMappableInputConfig_GetDisplayName"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetDisplayName, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetKeysBoundToAction \ +static_assert(alignof(PlayerMappableInputConfig_GetKeysBoundToAction) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetKeysBoundToAction"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetKeysBoundToAction) == 0x000018, "Wrong size on PlayerMappableInputConfig_GetKeysBoundToAction"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetKeysBoundToAction, InAction) == 0x000000, "Member 'PlayerMappableInputConfig_GetKeysBoundToAction::InAction' has a wrong offset!"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetKeysBoundToAction, ReturnValue) == 0x000008, "Member 'PlayerMappableInputConfig_GetKeysBoundToAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetMappingByName \ +static_assert(alignof(PlayerMappableInputConfig_GetMappingByName) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetMappingByName"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetMappingByName) == 0x000058, "Wrong size on PlayerMappableInputConfig_GetMappingByName"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetMappingByName, MappingName) == 0x000000, "Member 'PlayerMappableInputConfig_GetMappingByName::MappingName' has a wrong offset!"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetMappingByName, ReturnValue) == 0x000008, "Member 'PlayerMappableInputConfig_GetMappingByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetMappingContexts \ +static_assert(alignof(PlayerMappableInputConfig_GetMappingContexts) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetMappingContexts"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetMappingContexts) == 0x000050, "Wrong size on PlayerMappableInputConfig_GetMappingContexts"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetMappingContexts, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_GetMappingContexts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetMetadata \ +static_assert(alignof(PlayerMappableInputConfig_GetMetadata) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetMetadata"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetMetadata) == 0x000008, "Wrong size on PlayerMappableInputConfig_GetMetadata"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetMetadata, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_GetMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_GetPlayerMappableKeys \ +static_assert(alignof(PlayerMappableInputConfig_GetPlayerMappableKeys) == 0x000008, "Wrong alignment on PlayerMappableInputConfig_GetPlayerMappableKeys"); \ +static_assert(sizeof(PlayerMappableInputConfig_GetPlayerMappableKeys) == 0x000010, "Wrong size on PlayerMappableInputConfig_GetPlayerMappableKeys"); \ +static_assert(offsetof(PlayerMappableInputConfig_GetPlayerMappableKeys, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_GetPlayerMappableKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerMappableInputConfig_IsDeprecated \ +static_assert(alignof(PlayerMappableInputConfig_IsDeprecated) == 0x000001, "Wrong alignment on PlayerMappableInputConfig_IsDeprecated"); \ +static_assert(sizeof(PlayerMappableInputConfig_IsDeprecated) == 0x000001, "Wrong size on PlayerMappableInputConfig_IsDeprecated"); \ +static_assert(offsetof(PlayerMappableInputConfig_IsDeprecated, ReturnValue) == 0x000000, "Member 'PlayerMappableInputConfig_IsDeprecated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayerMappableInputConfig \ +static_assert(alignof(UPlayerMappableInputConfig) == 0x000008, "Wrong alignment on UPlayerMappableInputConfig"); \ +static_assert(sizeof(UPlayerMappableInputConfig) == 0x0000B0, "Wrong size on UPlayerMappableInputConfig"); \ +static_assert(offsetof(UPlayerMappableInputConfig, ConfigName) == 0x000030, "Member 'UPlayerMappableInputConfig::ConfigName' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableInputConfig, ConfigDisplayName) == 0x000038, "Member 'UPlayerMappableInputConfig::ConfigDisplayName' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableInputConfig, bIsDeprecated) == 0x000050, "Member 'UPlayerMappableInputConfig::bIsDeprecated' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableInputConfig, MetaData) == 0x000058, "Member 'UPlayerMappableInputConfig::MetaData' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableInputConfig, Contexts) == 0x000060, "Member 'UPlayerMappableInputConfig::Contexts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayerMappableKeySettings \ +static_assert(alignof(UPlayerMappableKeySettings) == 0x000008, "Wrong alignment on UPlayerMappableKeySettings"); \ +static_assert(sizeof(UPlayerMappableKeySettings) == 0x000088, "Wrong size on UPlayerMappableKeySettings"); \ +static_assert(offsetof(UPlayerMappableKeySettings, MetaData) == 0x000028, "Member 'UPlayerMappableKeySettings::MetaData' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableKeySettings, Name_0) == 0x000030, "Member 'UPlayerMappableKeySettings::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableKeySettings, DisplayName) == 0x000038, "Member 'UPlayerMappableKeySettings::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableKeySettings, DisplayCategory) == 0x000050, "Member 'UPlayerMappableKeySettings::DisplayCategory' has a wrong offset!"); \ +static_assert(offsetof(UPlayerMappableKeySettings, SupportedKeyProfiles) == 0x000068, "Member 'UPlayerMappableKeySettings::SupportedKeyProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputKeyBrushConfiguration \ +static_assert(alignof(FCommonInputKeyBrushConfiguration) == 0x000010, "Wrong alignment on FCommonInputKeyBrushConfiguration"); \ +static_assert(sizeof(FCommonInputKeyBrushConfiguration) == 0x0000F0, "Wrong size on FCommonInputKeyBrushConfiguration"); \ +static_assert(offsetof(FCommonInputKeyBrushConfiguration, Key) == 0x000000, "Member 'FCommonInputKeyBrushConfiguration::Key' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputKeyBrushConfiguration, KeyBrush) == 0x000020, "Member 'FCommonInputKeyBrushConfiguration::KeyBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputKeySetBrushConfiguration \ +static_assert(alignof(FCommonInputKeySetBrushConfiguration) == 0x000010, "Wrong alignment on FCommonInputKeySetBrushConfiguration"); \ +static_assert(sizeof(FCommonInputKeySetBrushConfiguration) == 0x0000E0, "Wrong size on FCommonInputKeySetBrushConfiguration"); \ +static_assert(offsetof(FCommonInputKeySetBrushConfiguration, Keys) == 0x000000, "Member 'FCommonInputKeySetBrushConfiguration::Keys' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputKeySetBrushConfiguration, KeyBrush) == 0x000010, "Member 'FCommonInputKeySetBrushConfiguration::KeyBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputDeviceIdentifierPair \ +static_assert(alignof(FInputDeviceIdentifierPair) == 0x000008, "Wrong alignment on FInputDeviceIdentifierPair"); \ +static_assert(sizeof(FInputDeviceIdentifierPair) == 0x000018, "Wrong size on FInputDeviceIdentifierPair"); \ +static_assert(offsetof(FInputDeviceIdentifierPair, InputDeviceName) == 0x000000, "Member 'FInputDeviceIdentifierPair::InputDeviceName' has a wrong offset!"); \ +static_assert(offsetof(FInputDeviceIdentifierPair, HardwareDeviceIdentifier) == 0x000008, "Member 'FInputDeviceIdentifierPair::HardwareDeviceIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputHoldData \ +static_assert(alignof(FInputHoldData) == 0x000004, "Wrong alignment on FInputHoldData"); \ +static_assert(sizeof(FInputHoldData) == 0x000008, "Wrong size on FInputHoldData"); \ +static_assert(offsetof(FInputHoldData, HoldTime) == 0x000000, "Member 'FInputHoldData::HoldTime' has a wrong offset!"); \ +static_assert(offsetof(FInputHoldData, HoldRollbackTime) == 0x000004, "Member 'FInputHoldData::HoldRollbackTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputPlatformBaseData \ +static_assert(alignof(FCommonInputPlatformBaseData) == 0x000008, "Wrong alignment on FCommonInputPlatformBaseData"); \ +static_assert(sizeof(FCommonInputPlatformBaseData) == 0x000038, "Wrong size on FCommonInputPlatformBaseData"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, DefaultInputType) == 0x000008, "Member 'FCommonInputPlatformBaseData::DefaultInputType' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, bSupportsMouseAndKeyboard) == 0x000009, "Member 'FCommonInputPlatformBaseData::bSupportsMouseAndKeyboard' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, bSupportsGamepad) == 0x00000A, "Member 'FCommonInputPlatformBaseData::bSupportsGamepad' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, DefaultGamepadName) == 0x00000C, "Member 'FCommonInputPlatformBaseData::DefaultGamepadName' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, bCanChangeGamepadType) == 0x000014, "Member 'FCommonInputPlatformBaseData::bCanChangeGamepadType' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, bSupportsTouch) == 0x000015, "Member 'FCommonInputPlatformBaseData::bSupportsTouch' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, ControllerData) == 0x000018, "Member 'FCommonInputPlatformBaseData::ControllerData' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputPlatformBaseData, ControllerDataClasses) == 0x000028, "Member 'FCommonInputPlatformBaseData::ControllerDataClasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputActionDomain \ +static_assert(alignof(UCommonInputActionDomain) == 0x000008, "Wrong alignment on UCommonInputActionDomain"); \ +static_assert(sizeof(UCommonInputActionDomain) == 0x000040, "Wrong size on UCommonInputActionDomain"); \ +static_assert(offsetof(UCommonInputActionDomain, Behavior) == 0x000030, "Member 'UCommonInputActionDomain::Behavior' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomain, InnerBehavior) == 0x000034, "Member 'UCommonInputActionDomain::InnerBehavior' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomain, bUseActionDomainDesiredInputConfig) == 0x000038, "Member 'UCommonInputActionDomain::bUseActionDomainDesiredInputConfig' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomain, InputMode) == 0x000039, "Member 'UCommonInputActionDomain::InputMode' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomain, MouseCaptureMode) == 0x00003A, "Member 'UCommonInputActionDomain::MouseCaptureMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputActionDomainTable \ +static_assert(alignof(UCommonInputActionDomainTable) == 0x000008, "Wrong alignment on UCommonInputActionDomainTable"); \ +static_assert(sizeof(UCommonInputActionDomainTable) == 0x000048, "Wrong size on UCommonInputActionDomainTable"); \ +static_assert(offsetof(UCommonInputActionDomainTable, ActionDomains) == 0x000030, "Member 'UCommonInputActionDomainTable::ActionDomains' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomainTable, InputMode) == 0x000040, "Member 'UCommonInputActionDomainTable::InputMode' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputActionDomainTable, MouseCaptureMode) == 0x000041, "Member 'UCommonInputActionDomainTable::MouseCaptureMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUIInputData \ +static_assert(alignof(UCommonUIInputData) == 0x000008, "Wrong alignment on UCommonUIInputData"); \ +static_assert(sizeof(UCommonUIInputData) == 0x000080, "Wrong size on UCommonUIInputData"); \ +static_assert(offsetof(UCommonUIInputData, DefaultClickAction) == 0x000028, "Member 'UCommonUIInputData::DefaultClickAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputData, DefaultBackAction) == 0x000038, "Member 'UCommonUIInputData::DefaultBackAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputData, DefaultHoldData) == 0x000048, "Member 'UCommonUIInputData::DefaultHoldData' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputData, EnhancedInputClickAction) == 0x000070, "Member 'UCommonUIInputData::EnhancedInputClickAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputData, EnhancedInputBackAction) == 0x000078, "Member 'UCommonUIInputData::EnhancedInputBackAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUIHoldData \ +static_assert(alignof(UCommonUIHoldData) == 0x000008, "Wrong alignment on UCommonUIHoldData"); \ +static_assert(sizeof(UCommonUIHoldData) == 0x000040, "Wrong size on UCommonUIHoldData"); \ +static_assert(offsetof(UCommonUIHoldData, KeyboardAndMouse) == 0x000028, "Member 'UCommonUIHoldData::KeyboardAndMouse' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIHoldData, Gamepad) == 0x000030, "Member 'UCommonUIHoldData::Gamepad' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIHoldData, Touch) == 0x000038, "Member 'UCommonUIHoldData::Touch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputBaseControllerData_GetRegisteredGamepads \ +static_assert(alignof(CommonInputBaseControllerData_GetRegisteredGamepads) == 0x000008, "Wrong alignment on CommonInputBaseControllerData_GetRegisteredGamepads"); \ +static_assert(sizeof(CommonInputBaseControllerData_GetRegisteredGamepads) == 0x000010, "Wrong size on CommonInputBaseControllerData_GetRegisteredGamepads"); \ +static_assert(offsetof(CommonInputBaseControllerData_GetRegisteredGamepads, ReturnValue) == 0x000000, "Member 'CommonInputBaseControllerData_GetRegisteredGamepads::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputBaseControllerData \ +static_assert(alignof(UCommonInputBaseControllerData) == 0x000008, "Wrong alignment on UCommonInputBaseControllerData"); \ +static_assert(sizeof(UCommonInputBaseControllerData) == 0x000100, "Wrong size on UCommonInputBaseControllerData"); \ +static_assert(offsetof(UCommonInputBaseControllerData, InputType) == 0x000028, "Member 'UCommonInputBaseControllerData::InputType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, GamepadName) == 0x00002C, "Member 'UCommonInputBaseControllerData::GamepadName' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, GamepadDisplayName) == 0x000038, "Member 'UCommonInputBaseControllerData::GamepadDisplayName' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, GamepadCategory) == 0x000050, "Member 'UCommonInputBaseControllerData::GamepadCategory' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, GamepadPlatformName) == 0x000068, "Member 'UCommonInputBaseControllerData::GamepadPlatformName' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, GamepadHardwareIdMapping) == 0x000080, "Member 'UCommonInputBaseControllerData::GamepadHardwareIdMapping' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, ControllerTexture) == 0x000090, "Member 'UCommonInputBaseControllerData::ControllerTexture' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, ControllerButtonMaskTexture) == 0x0000B8, "Member 'UCommonInputBaseControllerData::ControllerButtonMaskTexture' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, InputBrushDataMap) == 0x0000E0, "Member 'UCommonInputBaseControllerData::InputBrushDataMap' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputBaseControllerData, InputBrushKeySets) == 0x0000F0, "Member 'UCommonInputBaseControllerData::InputBrushKeySets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputPlatformSettings \ +static_assert(alignof(UCommonInputPlatformSettings) == 0x000008, "Wrong alignment on UCommonInputPlatformSettings"); \ +static_assert(sizeof(UCommonInputPlatformSettings) == 0x000070, "Wrong size on UCommonInputPlatformSettings"); \ +static_assert(offsetof(UCommonInputPlatformSettings, DefaultInputType) == 0x000040, "Member 'UCommonInputPlatformSettings::DefaultInputType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, bSupportsMouseAndKeyboard) == 0x000041, "Member 'UCommonInputPlatformSettings::bSupportsMouseAndKeyboard' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, bSupportsTouch) == 0x000042, "Member 'UCommonInputPlatformSettings::bSupportsTouch' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, bSupportsGamepad) == 0x000043, "Member 'UCommonInputPlatformSettings::bSupportsGamepad' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, DefaultGamepadName) == 0x000044, "Member 'UCommonInputPlatformSettings::DefaultGamepadName' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, bCanChangeGamepadType) == 0x00004C, "Member 'UCommonInputPlatformSettings::bCanChangeGamepadType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, ControllerData) == 0x000050, "Member 'UCommonInputPlatformSettings::ControllerData' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputPlatformSettings, ControllerDataClasses) == 0x000060, "Member 'UCommonInputPlatformSettings::ControllerDataClasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSettings_IsEnhancedInputSupportEnabled \ +static_assert(alignof(CommonInputSettings_IsEnhancedInputSupportEnabled) == 0x000001, "Wrong alignment on CommonInputSettings_IsEnhancedInputSupportEnabled"); \ +static_assert(sizeof(CommonInputSettings_IsEnhancedInputSupportEnabled) == 0x000001, "Wrong size on CommonInputSettings_IsEnhancedInputSupportEnabled"); \ +static_assert(offsetof(CommonInputSettings_IsEnhancedInputSupportEnabled, ReturnValue) == 0x000000, "Member 'CommonInputSettings_IsEnhancedInputSupportEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputSettings \ +static_assert(alignof(UCommonInputSettings) == 0x000008, "Wrong alignment on UCommonInputSettings"); \ +static_assert(sizeof(UCommonInputSettings) == 0x000120, "Wrong size on UCommonInputSettings"); \ +static_assert(offsetof(UCommonInputSettings, InputData) == 0x000038, "Member 'UCommonInputSettings::InputData' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, PlatformInput) == 0x000060, "Member 'UCommonInputSettings::PlatformInput' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, CommonInputPlatformData) == 0x000070, "Member 'UCommonInputSettings::CommonInputPlatformData' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, bEnableInputMethodThrashingProtection) == 0x0000C0, "Member 'UCommonInputSettings::bEnableInputMethodThrashingProtection' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, InputMethodThrashingLimit) == 0x0000C4, "Member 'UCommonInputSettings::InputMethodThrashingLimit' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, InputMethodThrashingWindowInSeconds) == 0x0000C8, "Member 'UCommonInputSettings::InputMethodThrashingWindowInSeconds' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, InputMethodThrashingCooldownInSeconds) == 0x0000D0, "Member 'UCommonInputSettings::InputMethodThrashingCooldownInSeconds' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, bAllowOutOfFocusDeviceInput) == 0x0000D8, "Member 'UCommonInputSettings::bAllowOutOfFocusDeviceInput' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, bEnableDefaultInputConfig) == 0x0000D9, "Member 'UCommonInputSettings::bEnableDefaultInputConfig' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, bEnableEnhancedInputSupport) == 0x0000DA, "Member 'UCommonInputSettings::bEnableEnhancedInputSupport' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, ActionDomainTable) == 0x0000E0, "Member 'UCommonInputSettings::ActionDomainTable' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, InputDataClass) == 0x000110, "Member 'UCommonInputSettings::InputDataClass' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSettings, ActionDomainTablePtr) == 0x000118, "Member 'UCommonInputSettings::ActionDomainTablePtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_SetCurrentInputType \ +static_assert(alignof(CommonInputSubsystem_SetCurrentInputType) == 0x000001, "Wrong alignment on CommonInputSubsystem_SetCurrentInputType"); \ +static_assert(sizeof(CommonInputSubsystem_SetCurrentInputType) == 0x000001, "Wrong size on CommonInputSubsystem_SetCurrentInputType"); \ +static_assert(offsetof(CommonInputSubsystem_SetCurrentInputType, NewInputType) == 0x000000, "Member 'CommonInputSubsystem_SetCurrentInputType::NewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_SetGamepadInputType \ +static_assert(alignof(CommonInputSubsystem_SetGamepadInputType) == 0x000004, "Wrong alignment on CommonInputSubsystem_SetGamepadInputType"); \ +static_assert(sizeof(CommonInputSubsystem_SetGamepadInputType) == 0x000008, "Wrong size on CommonInputSubsystem_SetGamepadInputType"); \ +static_assert(offsetof(CommonInputSubsystem_SetGamepadInputType, InGamepadInputType) == 0x000000, "Member 'CommonInputSubsystem_SetGamepadInputType::InGamepadInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_GetCurrentGamepadName \ +static_assert(alignof(CommonInputSubsystem_GetCurrentGamepadName) == 0x000004, "Wrong alignment on CommonInputSubsystem_GetCurrentGamepadName"); \ +static_assert(sizeof(CommonInputSubsystem_GetCurrentGamepadName) == 0x000008, "Wrong size on CommonInputSubsystem_GetCurrentGamepadName"); \ +static_assert(offsetof(CommonInputSubsystem_GetCurrentGamepadName, ReturnValue) == 0x000000, "Member 'CommonInputSubsystem_GetCurrentGamepadName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_GetCurrentInputType \ +static_assert(alignof(CommonInputSubsystem_GetCurrentInputType) == 0x000001, "Wrong alignment on CommonInputSubsystem_GetCurrentInputType"); \ +static_assert(sizeof(CommonInputSubsystem_GetCurrentInputType) == 0x000001, "Wrong size on CommonInputSubsystem_GetCurrentInputType"); \ +static_assert(offsetof(CommonInputSubsystem_GetCurrentInputType, ReturnValue) == 0x000000, "Member 'CommonInputSubsystem_GetCurrentInputType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_GetDefaultInputType \ +static_assert(alignof(CommonInputSubsystem_GetDefaultInputType) == 0x000001, "Wrong alignment on CommonInputSubsystem_GetDefaultInputType"); \ +static_assert(sizeof(CommonInputSubsystem_GetDefaultInputType) == 0x000001, "Wrong size on CommonInputSubsystem_GetDefaultInputType"); \ +static_assert(offsetof(CommonInputSubsystem_GetDefaultInputType, ReturnValue) == 0x000000, "Member 'CommonInputSubsystem_GetDefaultInputType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_IsInputMethodActive \ +static_assert(alignof(CommonInputSubsystem_IsInputMethodActive) == 0x000001, "Wrong alignment on CommonInputSubsystem_IsInputMethodActive"); \ +static_assert(sizeof(CommonInputSubsystem_IsInputMethodActive) == 0x000002, "Wrong size on CommonInputSubsystem_IsInputMethodActive"); \ +static_assert(offsetof(CommonInputSubsystem_IsInputMethodActive, InputMethod) == 0x000000, "Member 'CommonInputSubsystem_IsInputMethodActive::InputMethod' has a wrong offset!"); \ +static_assert(offsetof(CommonInputSubsystem_IsInputMethodActive, ReturnValue) == 0x000001, "Member 'CommonInputSubsystem_IsInputMethodActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_IsUsingPointerInput \ +static_assert(alignof(CommonInputSubsystem_IsUsingPointerInput) == 0x000001, "Wrong alignment on CommonInputSubsystem_IsUsingPointerInput"); \ +static_assert(sizeof(CommonInputSubsystem_IsUsingPointerInput) == 0x000001, "Wrong size on CommonInputSubsystem_IsUsingPointerInput"); \ +static_assert(offsetof(CommonInputSubsystem_IsUsingPointerInput, ReturnValue) == 0x000000, "Member 'CommonInputSubsystem_IsUsingPointerInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonInputSubsystem_ShouldShowInputKeys \ +static_assert(alignof(CommonInputSubsystem_ShouldShowInputKeys) == 0x000001, "Wrong alignment on CommonInputSubsystem_ShouldShowInputKeys"); \ +static_assert(sizeof(CommonInputSubsystem_ShouldShowInputKeys) == 0x000001, "Wrong size on CommonInputSubsystem_ShouldShowInputKeys"); \ +static_assert(offsetof(CommonInputSubsystem_ShouldShowInputKeys, ReturnValue) == 0x000000, "Member 'CommonInputSubsystem_ShouldShowInputKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInputSubsystem \ +static_assert(alignof(UCommonInputSubsystem) == 0x000008, "Wrong alignment on UCommonInputSubsystem"); \ +static_assert(sizeof(UCommonInputSubsystem) == 0x000118, "Wrong size on UCommonInputSubsystem"); \ +static_assert(offsetof(UCommonInputSubsystem, OnInputMethodChanged) == 0x000068, "Member 'UCommonInputSubsystem::OnInputMethodChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, NumberOfInputMethodChangesRecently) == 0x000078, "Member 'UCommonInputSubsystem::NumberOfInputMethodChangesRecently' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, LastInputMethodChangeTime) == 0x000080, "Member 'UCommonInputSubsystem::LastInputMethodChangeTime' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, LastTimeInputMethodThrashingBegan) == 0x000088, "Member 'UCommonInputSubsystem::LastTimeInputMethodThrashingBegan' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, LastInputType) == 0x000090, "Member 'UCommonInputSubsystem::LastInputType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, CurrentInputType) == 0x000091, "Member 'UCommonInputSubsystem::CurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, GamepadInputType) == 0x000094, "Member 'UCommonInputSubsystem::GamepadInputType' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, CurrentInputLocks) == 0x0000A0, "Member 'UCommonInputSubsystem::CurrentInputLocks' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, ActionDomainTable) == 0x0000F8, "Member 'UCommonInputSubsystem::ActionDomainTable' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputSubsystem, bIsGamepadSimulatedClick) == 0x000100, "Member 'UCommonInputSubsystem::bIsGamepadSimulatedClick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonButtonStyleOptionalSlateSound \ +static_assert(alignof(FCommonButtonStyleOptionalSlateSound) == 0x000008, "Wrong alignment on FCommonButtonStyleOptionalSlateSound"); \ +static_assert(sizeof(FCommonButtonStyleOptionalSlateSound) == 0x000020, "Wrong size on FCommonButtonStyleOptionalSlateSound"); \ +static_assert(offsetof(FCommonButtonStyleOptionalSlateSound, bHasSound) == 0x000000, "Member 'FCommonButtonStyleOptionalSlateSound::bHasSound' has a wrong offset!"); \ +static_assert(offsetof(FCommonButtonStyleOptionalSlateSound, Sound) == 0x000008, "Member 'FCommonButtonStyleOptionalSlateSound::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonNumberFormattingOptions \ +static_assert(alignof(FCommonNumberFormattingOptions) == 0x000004, "Wrong alignment on FCommonNumberFormattingOptions"); \ +static_assert(sizeof(FCommonNumberFormattingOptions) == 0x000014, "Wrong size on FCommonNumberFormattingOptions"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, RoundingMode) == 0x000000, "Member 'FCommonNumberFormattingOptions::RoundingMode' has a wrong offset!"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, UseGrouping) == 0x000001, "Member 'FCommonNumberFormattingOptions::UseGrouping' has a wrong offset!"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, MinimumIntegralDigits) == 0x000004, "Member 'FCommonNumberFormattingOptions::MinimumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, MaximumIntegralDigits) == 0x000008, "Member 'FCommonNumberFormattingOptions::MaximumIntegralDigits' has a wrong offset!"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, MinimumFractionalDigits) == 0x00000C, "Member 'FCommonNumberFormattingOptions::MinimumFractionalDigits' has a wrong offset!"); \ +static_assert(offsetof(FCommonNumberFormattingOptions, MaximumFractionalDigits) == 0x000010, "Member 'FCommonNumberFormattingOptions::MaximumFractionalDigits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUITag \ +static_assert(alignof(FUITag) == 0x000004, "Wrong alignment on FUITag"); \ +static_assert(sizeof(FUITag) == 0x000008, "Wrong size on FUITag"); \ + +#define DUMPER7_ASSERTS_FUIActionTag \ +static_assert(alignof(FUIActionTag) == 0x000004, "Wrong alignment on FUIActionTag"); \ +static_assert(sizeof(FUIActionTag) == 0x000008, "Wrong size on FUIActionTag"); \ + +#define DUMPER7_ASSERTS_FCommonRegisteredTabInfo \ +static_assert(alignof(FCommonRegisteredTabInfo) == 0x000008, "Wrong alignment on FCommonRegisteredTabInfo"); \ +static_assert(sizeof(FCommonRegisteredTabInfo) == 0x000018, "Wrong size on FCommonRegisteredTabInfo"); \ +static_assert(offsetof(FCommonRegisteredTabInfo, TabIndex) == 0x000000, "Member 'FCommonRegisteredTabInfo::TabIndex' has a wrong offset!"); \ +static_assert(offsetof(FCommonRegisteredTabInfo, TabButton) == 0x000008, "Member 'FCommonRegisteredTabInfo::TabButton' has a wrong offset!"); \ +static_assert(offsetof(FCommonRegisteredTabInfo, ContentInstance) == 0x000010, "Member 'FCommonRegisteredTabInfo::ContentInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUIInputConfig \ +static_assert(alignof(FUIInputConfig) == 0x000001, "Wrong alignment on FUIInputConfig"); \ +static_assert(sizeof(FUIInputConfig) == 0x000005, "Wrong size on FUIInputConfig"); \ +static_assert(offsetof(FUIInputConfig, bIgnoreMoveInput) == 0x000000, "Member 'FUIInputConfig::bIgnoreMoveInput' has a wrong offset!"); \ +static_assert(offsetof(FUIInputConfig, bIgnoreLookInput) == 0x000001, "Member 'FUIInputConfig::bIgnoreLookInput' has a wrong offset!"); \ +static_assert(offsetof(FUIInputConfig, InputMode) == 0x000002, "Member 'FUIInputConfig::InputMode' has a wrong offset!"); \ +static_assert(offsetof(FUIInputConfig, MouseCaptureMode) == 0x000003, "Member 'FUIInputConfig::MouseCaptureMode' has a wrong offset!"); \ +static_assert(offsetof(FUIInputConfig, bHideCursorDuringViewportCapture) == 0x000004, "Member 'FUIInputConfig::bHideCursorDuringViewportCapture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputActionHandlerData \ +static_assert(alignof(FCommonInputActionHandlerData) == 0x000008, "Wrong alignment on FCommonInputActionHandlerData"); \ +static_assert(sizeof(FCommonInputActionHandlerData) == 0x000020, "Wrong size on FCommonInputActionHandlerData"); \ +static_assert(offsetof(FCommonInputActionHandlerData, InputActionRow) == 0x000000, "Member 'FCommonInputActionHandlerData::InputActionRow' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionHandlerData, State) == 0x000010, "Member 'FCommonInputActionHandlerData::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichTextIconData \ +static_assert(alignof(FRichTextIconData) == 0x000008, "Wrong alignment on FRichTextIconData"); \ +static_assert(sizeof(FRichTextIconData) == 0x000058, "Wrong size on FRichTextIconData"); \ +static_assert(offsetof(FRichTextIconData, DisplayName) == 0x000008, "Member 'FRichTextIconData::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FRichTextIconData, ResourceObject) == 0x000020, "Member 'FRichTextIconData::ResourceObject' has a wrong offset!"); \ +static_assert(offsetof(FRichTextIconData, ImageSize) == 0x000048, "Member 'FRichTextIconData::ImageSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputTypeInfo \ +static_assert(alignof(FCommonInputTypeInfo) == 0x000010, "Wrong alignment on FCommonInputTypeInfo"); \ +static_assert(sizeof(FCommonInputTypeInfo) == 0x000100, "Wrong size on FCommonInputTypeInfo"); \ +static_assert(offsetof(FCommonInputTypeInfo, Key) == 0x000000, "Member 'FCommonInputTypeInfo::Key' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputTypeInfo, OverrrideState) == 0x000018, "Member 'FCommonInputTypeInfo::OverrrideState' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputTypeInfo, bActionRequiresHold) == 0x000019, "Member 'FCommonInputTypeInfo::bActionRequiresHold' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputTypeInfo, HoldTime) == 0x00001C, "Member 'FCommonInputTypeInfo::HoldTime' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputTypeInfo, HoldRollbackTime) == 0x000020, "Member 'FCommonInputTypeInfo::HoldRollbackTime' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputTypeInfo, OverrideBrush) == 0x000030, "Member 'FCommonInputTypeInfo::OverrideBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonInputActionDataBase \ +static_assert(alignof(FCommonInputActionDataBase) == 0x000010, "Wrong alignment on FCommonInputActionDataBase"); \ +static_assert(sizeof(FCommonInputActionDataBase) == 0x000390, "Wrong size on FCommonInputActionDataBase"); \ +static_assert(offsetof(FCommonInputActionDataBase, DisplayName) == 0x000008, "Member 'FCommonInputActionDataBase::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, HoldDisplayName) == 0x000020, "Member 'FCommonInputActionDataBase::HoldDisplayName' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, NavBarPriority) == 0x000038, "Member 'FCommonInputActionDataBase::NavBarPriority' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, KeyboardInputTypeInfo) == 0x000040, "Member 'FCommonInputActionDataBase::KeyboardInputTypeInfo' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, DefaultGamepadInputTypeInfo) == 0x000140, "Member 'FCommonInputActionDataBase::DefaultGamepadInputTypeInfo' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, GamepadInputOverrides) == 0x000240, "Member 'FCommonInputActionDataBase::GamepadInputOverrides' has a wrong offset!"); \ +static_assert(offsetof(FCommonInputActionDataBase, TouchInputTypeInfo) == 0x000290, "Member 'FCommonInputActionDataBase::TouchInputTypeInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUIActionKeyMapping \ +static_assert(alignof(FUIActionKeyMapping) == 0x000008, "Wrong alignment on FUIActionKeyMapping"); \ +static_assert(sizeof(FUIActionKeyMapping) == 0x000020, "Wrong size on FUIActionKeyMapping"); \ +static_assert(offsetof(FUIActionKeyMapping, Key) == 0x000000, "Member 'FUIActionKeyMapping::Key' has a wrong offset!"); \ +static_assert(offsetof(FUIActionKeyMapping, HoldTime) == 0x000018, "Member 'FUIActionKeyMapping::HoldTime' has a wrong offset!"); \ +static_assert(offsetof(FUIActionKeyMapping, HoldRollbackTime) == 0x00001C, "Member 'FUIActionKeyMapping::HoldRollbackTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUIInputAction \ +static_assert(alignof(FUIInputAction) == 0x000008, "Wrong alignment on FUIInputAction"); \ +static_assert(sizeof(FUIInputAction) == 0x000030, "Wrong size on FUIInputAction"); \ +static_assert(offsetof(FUIInputAction, ActionTag) == 0x000000, "Member 'FUIInputAction::ActionTag' has a wrong offset!"); \ +static_assert(offsetof(FUIInputAction, DefaultDisplayName) == 0x000008, "Member 'FUIInputAction::DefaultDisplayName' has a wrong offset!"); \ +static_assert(offsetof(FUIInputAction, KeyMappings) == 0x000020, "Member 'FUIInputAction::KeyMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonAnalogCursorSettings \ +static_assert(alignof(FCommonAnalogCursorSettings) == 0x000004, "Wrong alignment on FCommonAnalogCursorSettings"); \ +static_assert(sizeof(FCommonAnalogCursorSettings) == 0x000024, "Wrong size on FCommonAnalogCursorSettings"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, PreprocessorPriority) == 0x000000, "Member 'FCommonAnalogCursorSettings::PreprocessorPriority' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, bEnableCursorAcceleration) == 0x000004, "Member 'FCommonAnalogCursorSettings::bEnableCursorAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, CursorAcceleration) == 0x000008, "Member 'FCommonAnalogCursorSettings::CursorAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, CursorMaxSpeed) == 0x00000C, "Member 'FCommonAnalogCursorSettings::CursorMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, CursorDeadZone) == 0x000010, "Member 'FCommonAnalogCursorSettings::CursorDeadZone' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, HoverSlowdownFactor) == 0x000014, "Member 'FCommonAnalogCursorSettings::HoverSlowdownFactor' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, ScrollDeadZone) == 0x000018, "Member 'FCommonAnalogCursorSettings::ScrollDeadZone' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, ScrollUpdatePeriod) == 0x00001C, "Member 'FCommonAnalogCursorSettings::ScrollUpdatePeriod' has a wrong offset!"); \ +static_assert(offsetof(FCommonAnalogCursorSettings, ScrollMultiplier) == 0x000020, "Member 'FCommonAnalogCursorSettings::ScrollMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICommonBoundActionButtonInterface \ +static_assert(alignof(ICommonBoundActionButtonInterface) == 0x000001, "Wrong alignment on ICommonBoundActionButtonInterface"); \ +static_assert(sizeof(ICommonBoundActionButtonInterface) == 0x000001, "Wrong size on ICommonBoundActionButtonInterface"); \ + +#define DUMPER7_ASSERTS_UAnalogSlider \ +static_assert(alignof(UAnalogSlider) == 0x000010, "Wrong alignment on UAnalogSlider"); \ +static_assert(sizeof(UAnalogSlider) == 0x000750, "Wrong size on UAnalogSlider"); \ +static_assert(offsetof(UAnalogSlider, OnAnalogCapture) == 0x000730, "Member 'UAnalogSlider::OnAnalogCapture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICommonActionHandlerInterface \ +static_assert(alignof(ICommonActionHandlerInterface) == 0x000001, "Wrong alignment on ICommonActionHandlerInterface"); \ +static_assert(sizeof(ICommonActionHandlerInterface) == 0x000001, "Wrong size on ICommonActionHandlerInterface"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_SetEnhancedInputAction \ +static_assert(alignof(CommonActionWidget_SetEnhancedInputAction) == 0x000008, "Wrong alignment on CommonActionWidget_SetEnhancedInputAction"); \ +static_assert(sizeof(CommonActionWidget_SetEnhancedInputAction) == 0x000008, "Wrong size on CommonActionWidget_SetEnhancedInputAction"); \ +static_assert(offsetof(CommonActionWidget_SetEnhancedInputAction, InInputAction) == 0x000000, "Member 'CommonActionWidget_SetEnhancedInputAction::InInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_SetIconRimBrush \ +static_assert(alignof(CommonActionWidget_SetIconRimBrush) == 0x000010, "Wrong alignment on CommonActionWidget_SetIconRimBrush"); \ +static_assert(sizeof(CommonActionWidget_SetIconRimBrush) == 0x0000D0, "Wrong size on CommonActionWidget_SetIconRimBrush"); \ +static_assert(offsetof(CommonActionWidget_SetIconRimBrush, InIconRimBrush) == 0x000000, "Member 'CommonActionWidget_SetIconRimBrush::InIconRimBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_SetInputAction \ +static_assert(alignof(CommonActionWidget_SetInputAction) == 0x000008, "Wrong alignment on CommonActionWidget_SetInputAction"); \ +static_assert(sizeof(CommonActionWidget_SetInputAction) == 0x000010, "Wrong size on CommonActionWidget_SetInputAction"); \ +static_assert(offsetof(CommonActionWidget_SetInputAction, InputActionRow) == 0x000000, "Member 'CommonActionWidget_SetInputAction::InputActionRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_SetInputActions \ +static_assert(alignof(CommonActionWidget_SetInputActions) == 0x000008, "Wrong alignment on CommonActionWidget_SetInputActions"); \ +static_assert(sizeof(CommonActionWidget_SetInputActions) == 0x000010, "Wrong size on CommonActionWidget_SetInputActions"); \ +static_assert(offsetof(CommonActionWidget_SetInputActions, NewInputActions) == 0x000000, "Member 'CommonActionWidget_SetInputActions::NewInputActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_GetDisplayText \ +static_assert(alignof(CommonActionWidget_GetDisplayText) == 0x000008, "Wrong alignment on CommonActionWidget_GetDisplayText"); \ +static_assert(sizeof(CommonActionWidget_GetDisplayText) == 0x000018, "Wrong size on CommonActionWidget_GetDisplayText"); \ +static_assert(offsetof(CommonActionWidget_GetDisplayText, ReturnValue) == 0x000000, "Member 'CommonActionWidget_GetDisplayText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_GetIcon \ +static_assert(alignof(CommonActionWidget_GetIcon) == 0x000010, "Wrong alignment on CommonActionWidget_GetIcon"); \ +static_assert(sizeof(CommonActionWidget_GetIcon) == 0x0000D0, "Wrong size on CommonActionWidget_GetIcon"); \ +static_assert(offsetof(CommonActionWidget_GetIcon, ReturnValue) == 0x000000, "Member 'CommonActionWidget_GetIcon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActionWidget_IsHeldAction \ +static_assert(alignof(CommonActionWidget_IsHeldAction) == 0x000001, "Wrong alignment on CommonActionWidget_IsHeldAction"); \ +static_assert(sizeof(CommonActionWidget_IsHeldAction) == 0x000001, "Wrong size on CommonActionWidget_IsHeldAction"); \ +static_assert(offsetof(CommonActionWidget_IsHeldAction, ReturnValue) == 0x000000, "Member 'CommonActionWidget_IsHeldAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActionWidget \ +static_assert(alignof(UCommonActionWidget) == 0x000010, "Wrong alignment on UCommonActionWidget"); \ +static_assert(sizeof(UCommonActionWidget) == 0x000490, "Wrong size on UCommonActionWidget"); \ +static_assert(offsetof(UCommonActionWidget, OnInputMethodChanged) == 0x000180, "Member 'UCommonActionWidget::OnInputMethodChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, ProgressMaterialBrush) == 0x000190, "Member 'UCommonActionWidget::ProgressMaterialBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, ProgressMaterialParam) == 0x000260, "Member 'UCommonActionWidget::ProgressMaterialParam' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, IconRimBrush) == 0x000270, "Member 'UCommonActionWidget::IconRimBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, InputActions) == 0x000340, "Member 'UCommonActionWidget::InputActions' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, EnhancedInputAction) == 0x000350, "Member 'UCommonActionWidget::EnhancedInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonActionWidget, ProgressDynamicMaterial) == 0x000360, "Member 'UCommonActionWidget::ProgressDynamicMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserWidget_SetConsumePointerInput \ +static_assert(alignof(CommonUserWidget_SetConsumePointerInput) == 0x000001, "Wrong alignment on CommonUserWidget_SetConsumePointerInput"); \ +static_assert(sizeof(CommonUserWidget_SetConsumePointerInput) == 0x000001, "Wrong size on CommonUserWidget_SetConsumePointerInput"); \ +static_assert(offsetof(CommonUserWidget_SetConsumePointerInput, bInConsumePointerInput) == 0x000000, "Member 'CommonUserWidget_SetConsumePointerInput::bInConsumePointerInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUserWidget \ +static_assert(alignof(UCommonUserWidget) == 0x000008, "Wrong alignment on UCommonUserWidget"); \ +static_assert(sizeof(UCommonUserWidget) == 0x0002E8, "Wrong size on UCommonUserWidget"); \ +static_assert(offsetof(UCommonUserWidget, bDisplayInActionBar) == 0x0002C0, "Member 'UCommonUserWidget::bDisplayInActionBar' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserWidget, bConsumePointerInput) == 0x0002C1, "Member 'UCommonUserWidget::bConsumePointerInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_BindVisibilityToActivation \ +static_assert(alignof(CommonActivatableWidget_BindVisibilityToActivation) == 0x000008, "Wrong alignment on CommonActivatableWidget_BindVisibilityToActivation"); \ +static_assert(sizeof(CommonActivatableWidget_BindVisibilityToActivation) == 0x000008, "Wrong size on CommonActivatableWidget_BindVisibilityToActivation"); \ +static_assert(offsetof(CommonActivatableWidget_BindVisibilityToActivation, ActivatableWidget) == 0x000000, "Member 'CommonActivatableWidget_BindVisibilityToActivation::ActivatableWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_BP_OnHandleBackAction \ +static_assert(alignof(CommonActivatableWidget_BP_OnHandleBackAction) == 0x000001, "Wrong alignment on CommonActivatableWidget_BP_OnHandleBackAction"); \ +static_assert(sizeof(CommonActivatableWidget_BP_OnHandleBackAction) == 0x000001, "Wrong size on CommonActivatableWidget_BP_OnHandleBackAction"); \ +static_assert(offsetof(CommonActivatableWidget_BP_OnHandleBackAction, ReturnValue) == 0x000000, "Member 'CommonActivatableWidget_BP_OnHandleBackAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_SetBindVisibilities \ +static_assert(alignof(CommonActivatableWidget_SetBindVisibilities) == 0x000001, "Wrong alignment on CommonActivatableWidget_SetBindVisibilities"); \ +static_assert(sizeof(CommonActivatableWidget_SetBindVisibilities) == 0x000003, "Wrong size on CommonActivatableWidget_SetBindVisibilities"); \ +static_assert(offsetof(CommonActivatableWidget_SetBindVisibilities, OnActivatedVisibility) == 0x000000, "Member 'CommonActivatableWidget_SetBindVisibilities::OnActivatedVisibility' has a wrong offset!"); \ +static_assert(offsetof(CommonActivatableWidget_SetBindVisibilities, OnDeactivatedVisibility) == 0x000001, "Member 'CommonActivatableWidget_SetBindVisibilities::OnDeactivatedVisibility' has a wrong offset!"); \ +static_assert(offsetof(CommonActivatableWidget_SetBindVisibilities, bInAllActive) == 0x000002, "Member 'CommonActivatableWidget_SetBindVisibilities::bInAllActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_BP_GetDesiredFocusTarget \ +static_assert(alignof(CommonActivatableWidget_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on CommonActivatableWidget_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(CommonActivatableWidget_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on CommonActivatableWidget_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(CommonActivatableWidget_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'CommonActivatableWidget_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_BP_GetDesiredInputConfig \ +static_assert(alignof(CommonActivatableWidget_BP_GetDesiredInputConfig) == 0x000001, "Wrong alignment on CommonActivatableWidget_BP_GetDesiredInputConfig"); \ +static_assert(sizeof(CommonActivatableWidget_BP_GetDesiredInputConfig) == 0x000005, "Wrong size on CommonActivatableWidget_BP_GetDesiredInputConfig"); \ +static_assert(offsetof(CommonActivatableWidget_BP_GetDesiredInputConfig, ReturnValue) == 0x000000, "Member 'CommonActivatableWidget_BP_GetDesiredInputConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_GetDesiredFocusTarget \ +static_assert(alignof(CommonActivatableWidget_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on CommonActivatableWidget_GetDesiredFocusTarget"); \ +static_assert(sizeof(CommonActivatableWidget_GetDesiredFocusTarget) == 0x000008, "Wrong size on CommonActivatableWidget_GetDesiredFocusTarget"); \ +static_assert(offsetof(CommonActivatableWidget_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'CommonActivatableWidget_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidget_IsActivated \ +static_assert(alignof(CommonActivatableWidget_IsActivated) == 0x000001, "Wrong alignment on CommonActivatableWidget_IsActivated"); \ +static_assert(sizeof(CommonActivatableWidget_IsActivated) == 0x000001, "Wrong size on CommonActivatableWidget_IsActivated"); \ +static_assert(offsetof(CommonActivatableWidget_IsActivated, ReturnValue) == 0x000000, "Member 'CommonActivatableWidget_IsActivated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActivatableWidget \ +static_assert(alignof(UCommonActivatableWidget) == 0x000008, "Wrong alignment on UCommonActivatableWidget"); \ +static_assert(sizeof(UCommonActivatableWidget) == 0x000410, "Wrong size on UCommonActivatableWidget"); \ +static_assert(offsetof(UCommonActivatableWidget, bIsBackHandler) == 0x0002E8, "Member 'UCommonActivatableWidget::bIsBackHandler' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bIsBackActionDisplayedInActionBar) == 0x0002E9, "Member 'UCommonActivatableWidget::bIsBackActionDisplayedInActionBar' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bAutoActivate) == 0x0002EA, "Member 'UCommonActivatableWidget::bAutoActivate' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bSupportsActivationFocus) == 0x0002EB, "Member 'UCommonActivatableWidget::bSupportsActivationFocus' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bIsModal) == 0x0002EC, "Member 'UCommonActivatableWidget::bIsModal' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bAutoRestoreFocus) == 0x0002ED, "Member 'UCommonActivatableWidget::bAutoRestoreFocus' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bOverrideActionDomain) == 0x0002EE, "Member 'UCommonActivatableWidget::bOverrideActionDomain' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, InputMapping) == 0x0002F0, "Member 'UCommonActivatableWidget::InputMapping' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, InputMappingPriority) == 0x0002F8, "Member 'UCommonActivatableWidget::InputMappingPriority' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, ActionDomainOverride) == 0x000300, "Member 'UCommonActivatableWidget::ActionDomainOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, BP_OnWidgetActivated) == 0x000328, "Member 'UCommonActivatableWidget::BP_OnWidgetActivated' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, BP_OnWidgetDeactivated) == 0x000338, "Member 'UCommonActivatableWidget::BP_OnWidgetDeactivated' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bIsActive) == 0x000348, "Member 'UCommonActivatableWidget::bIsActive' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, VisibilityBoundWidgets) == 0x000350, "Member 'UCommonActivatableWidget::VisibilityBoundWidgets' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bSetVisibilityOnActivated) == 0x000408, "Member 'UCommonActivatableWidget::bSetVisibilityOnActivated' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, ActivatedVisibility) == 0x000409, "Member 'UCommonActivatableWidget::ActivatedVisibility' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, bSetVisibilityOnDeactivated) == 0x00040A, "Member 'UCommonActivatableWidget::bSetVisibilityOnDeactivated' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidget, DeactivatedVisibility) == 0x00040B, "Member 'UCommonActivatableWidget::DeactivatedVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_ActivateNextWidget \ +static_assert(alignof(CommonAnimatedSwitcher_ActivateNextWidget) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_ActivateNextWidget"); \ +static_assert(sizeof(CommonAnimatedSwitcher_ActivateNextWidget) == 0x000001, "Wrong size on CommonAnimatedSwitcher_ActivateNextWidget"); \ +static_assert(offsetof(CommonAnimatedSwitcher_ActivateNextWidget, bCanWrap) == 0x000000, "Member 'CommonAnimatedSwitcher_ActivateNextWidget::bCanWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_ActivatePreviousWidget \ +static_assert(alignof(CommonAnimatedSwitcher_ActivatePreviousWidget) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_ActivatePreviousWidget"); \ +static_assert(sizeof(CommonAnimatedSwitcher_ActivatePreviousWidget) == 0x000001, "Wrong size on CommonAnimatedSwitcher_ActivatePreviousWidget"); \ +static_assert(offsetof(CommonAnimatedSwitcher_ActivatePreviousWidget, bCanWrap) == 0x000000, "Member 'CommonAnimatedSwitcher_ActivatePreviousWidget::bCanWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_SetDisableTransitionAnimation \ +static_assert(alignof(CommonAnimatedSwitcher_SetDisableTransitionAnimation) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_SetDisableTransitionAnimation"); \ +static_assert(sizeof(CommonAnimatedSwitcher_SetDisableTransitionAnimation) == 0x000001, "Wrong size on CommonAnimatedSwitcher_SetDisableTransitionAnimation"); \ +static_assert(offsetof(CommonAnimatedSwitcher_SetDisableTransitionAnimation, bDisableAnimation) == 0x000000, "Member 'CommonAnimatedSwitcher_SetDisableTransitionAnimation::bDisableAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_HasWidgets \ +static_assert(alignof(CommonAnimatedSwitcher_HasWidgets) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_HasWidgets"); \ +static_assert(sizeof(CommonAnimatedSwitcher_HasWidgets) == 0x000001, "Wrong size on CommonAnimatedSwitcher_HasWidgets"); \ +static_assert(offsetof(CommonAnimatedSwitcher_HasWidgets, ReturnValue) == 0x000000, "Member 'CommonAnimatedSwitcher_HasWidgets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_IsCurrentlySwitching \ +static_assert(alignof(CommonAnimatedSwitcher_IsCurrentlySwitching) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_IsCurrentlySwitching"); \ +static_assert(sizeof(CommonAnimatedSwitcher_IsCurrentlySwitching) == 0x000001, "Wrong size on CommonAnimatedSwitcher_IsCurrentlySwitching"); \ +static_assert(offsetof(CommonAnimatedSwitcher_IsCurrentlySwitching, ReturnValue) == 0x000000, "Member 'CommonAnimatedSwitcher_IsCurrentlySwitching::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonAnimatedSwitcher_IsTransitionPlaying \ +static_assert(alignof(CommonAnimatedSwitcher_IsTransitionPlaying) == 0x000001, "Wrong alignment on CommonAnimatedSwitcher_IsTransitionPlaying"); \ +static_assert(sizeof(CommonAnimatedSwitcher_IsTransitionPlaying) == 0x000001, "Wrong size on CommonAnimatedSwitcher_IsTransitionPlaying"); \ +static_assert(offsetof(CommonAnimatedSwitcher_IsTransitionPlaying, ReturnValue) == 0x000000, "Member 'CommonAnimatedSwitcher_IsTransitionPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonAnimatedSwitcher \ +static_assert(alignof(UCommonAnimatedSwitcher) == 0x000008, "Wrong alignment on UCommonAnimatedSwitcher"); \ +static_assert(sizeof(UCommonAnimatedSwitcher) == 0x000220, "Wrong size on UCommonAnimatedSwitcher"); \ +static_assert(offsetof(UCommonAnimatedSwitcher, TransitionType) == 0x0001E0, "Member 'UCommonAnimatedSwitcher::TransitionType' has a wrong offset!"); \ +static_assert(offsetof(UCommonAnimatedSwitcher, TransitionCurveType) == 0x0001E1, "Member 'UCommonAnimatedSwitcher::TransitionCurveType' has a wrong offset!"); \ +static_assert(offsetof(UCommonAnimatedSwitcher, TransitionDuration) == 0x0001E4, "Member 'UCommonAnimatedSwitcher::TransitionDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActivatableWidgetSwitcher \ +static_assert(alignof(UCommonActivatableWidgetSwitcher) == 0x000008, "Wrong alignment on UCommonActivatableWidgetSwitcher"); \ +static_assert(sizeof(UCommonActivatableWidgetSwitcher) == 0x000230, "Wrong size on UCommonActivatableWidgetSwitcher"); \ + +#define DUMPER7_ASSERTS_CommonBorderStyle_GetBackgroundBrush \ +static_assert(alignof(CommonBorderStyle_GetBackgroundBrush) == 0x000010, "Wrong alignment on CommonBorderStyle_GetBackgroundBrush"); \ +static_assert(sizeof(CommonBorderStyle_GetBackgroundBrush) == 0x0000D0, "Wrong size on CommonBorderStyle_GetBackgroundBrush"); \ +static_assert(offsetof(CommonBorderStyle_GetBackgroundBrush, Brush) == 0x000000, "Member 'CommonBorderStyle_GetBackgroundBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonBorderStyle \ +static_assert(alignof(UCommonBorderStyle) == 0x000010, "Wrong alignment on UCommonBorderStyle"); \ +static_assert(sizeof(UCommonBorderStyle) == 0x000100, "Wrong size on UCommonBorderStyle"); \ +static_assert(offsetof(UCommonBorderStyle, Background) == 0x000030, "Member 'UCommonBorderStyle::Background' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonBorder_SetStyle \ +static_assert(alignof(CommonBorder_SetStyle) == 0x000008, "Wrong alignment on CommonBorder_SetStyle"); \ +static_assert(sizeof(CommonBorder_SetStyle) == 0x000008, "Wrong size on CommonBorder_SetStyle"); \ +static_assert(offsetof(CommonBorder_SetStyle, InStyle) == 0x000000, "Member 'CommonBorder_SetStyle::InStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonBorder \ +static_assert(alignof(UCommonBorder) == 0x000010, "Wrong alignment on UCommonBorder"); \ +static_assert(sizeof(UCommonBorder) == 0x000360, "Wrong size on UCommonBorder"); \ +static_assert(offsetof(UCommonBorder, Style) == 0x000338, "Member 'UCommonBorder::Style' has a wrong offset!"); \ +static_assert(offsetof(UCommonBorder, bReducePaddingBySafezone) == 0x000340, "Member 'UCommonBorder::bReducePaddingBySafezone' has a wrong offset!"); \ +static_assert(offsetof(UCommonBorder, MinimumPadding) == 0x000344, "Member 'UCommonBorder::MinimumPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetButtonPadding \ +static_assert(alignof(CommonButtonStyle_GetButtonPadding) == 0x000004, "Wrong alignment on CommonButtonStyle_GetButtonPadding"); \ +static_assert(sizeof(CommonButtonStyle_GetButtonPadding) == 0x000010, "Wrong size on CommonButtonStyle_GetButtonPadding"); \ +static_assert(offsetof(CommonButtonStyle_GetButtonPadding, OutButtonPadding) == 0x000000, "Member 'CommonButtonStyle_GetButtonPadding::OutButtonPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetCustomPadding \ +static_assert(alignof(CommonButtonStyle_GetCustomPadding) == 0x000004, "Wrong alignment on CommonButtonStyle_GetCustomPadding"); \ +static_assert(sizeof(CommonButtonStyle_GetCustomPadding) == 0x000010, "Wrong size on CommonButtonStyle_GetCustomPadding"); \ +static_assert(offsetof(CommonButtonStyle_GetCustomPadding, OutCustomPadding) == 0x000000, "Member 'CommonButtonStyle_GetCustomPadding::OutCustomPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetDisabledBrush \ +static_assert(alignof(CommonButtonStyle_GetDisabledBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetDisabledBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetDisabledBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetDisabledBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetDisabledBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetDisabledBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetDisabledTextStyle \ +static_assert(alignof(CommonButtonStyle_GetDisabledTextStyle) == 0x000008, "Wrong alignment on CommonButtonStyle_GetDisabledTextStyle"); \ +static_assert(sizeof(CommonButtonStyle_GetDisabledTextStyle) == 0x000008, "Wrong size on CommonButtonStyle_GetDisabledTextStyle"); \ +static_assert(offsetof(CommonButtonStyle_GetDisabledTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonStyle_GetDisabledTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetMaterialBrush \ +static_assert(alignof(CommonButtonStyle_GetMaterialBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetMaterialBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetMaterialBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetMaterialBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetMaterialBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetMaterialBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetNormalBaseBrush \ +static_assert(alignof(CommonButtonStyle_GetNormalBaseBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetNormalBaseBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetNormalBaseBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetNormalBaseBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetNormalBaseBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetNormalBaseBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetNormalHoveredBrush \ +static_assert(alignof(CommonButtonStyle_GetNormalHoveredBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetNormalHoveredBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetNormalHoveredBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetNormalHoveredBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetNormalHoveredBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetNormalHoveredBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetNormalHoveredTextStyle \ +static_assert(alignof(CommonButtonStyle_GetNormalHoveredTextStyle) == 0x000008, "Wrong alignment on CommonButtonStyle_GetNormalHoveredTextStyle"); \ +static_assert(sizeof(CommonButtonStyle_GetNormalHoveredTextStyle) == 0x000008, "Wrong size on CommonButtonStyle_GetNormalHoveredTextStyle"); \ +static_assert(offsetof(CommonButtonStyle_GetNormalHoveredTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonStyle_GetNormalHoveredTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetNormalPressedBrush \ +static_assert(alignof(CommonButtonStyle_GetNormalPressedBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetNormalPressedBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetNormalPressedBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetNormalPressedBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetNormalPressedBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetNormalPressedBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetNormalTextStyle \ +static_assert(alignof(CommonButtonStyle_GetNormalTextStyle) == 0x000008, "Wrong alignment on CommonButtonStyle_GetNormalTextStyle"); \ +static_assert(sizeof(CommonButtonStyle_GetNormalTextStyle) == 0x000008, "Wrong size on CommonButtonStyle_GetNormalTextStyle"); \ +static_assert(offsetof(CommonButtonStyle_GetNormalTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonStyle_GetNormalTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetSelectedBaseBrush \ +static_assert(alignof(CommonButtonStyle_GetSelectedBaseBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetSelectedBaseBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetSelectedBaseBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetSelectedBaseBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetSelectedBaseBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetSelectedBaseBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetSelectedHoveredBrush \ +static_assert(alignof(CommonButtonStyle_GetSelectedHoveredBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetSelectedHoveredBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetSelectedHoveredBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetSelectedHoveredBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetSelectedHoveredBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetSelectedHoveredBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetSelectedHoveredTextStyle \ +static_assert(alignof(CommonButtonStyle_GetSelectedHoveredTextStyle) == 0x000008, "Wrong alignment on CommonButtonStyle_GetSelectedHoveredTextStyle"); \ +static_assert(sizeof(CommonButtonStyle_GetSelectedHoveredTextStyle) == 0x000008, "Wrong size on CommonButtonStyle_GetSelectedHoveredTextStyle"); \ +static_assert(offsetof(CommonButtonStyle_GetSelectedHoveredTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonStyle_GetSelectedHoveredTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetSelectedPressedBrush \ +static_assert(alignof(CommonButtonStyle_GetSelectedPressedBrush) == 0x000010, "Wrong alignment on CommonButtonStyle_GetSelectedPressedBrush"); \ +static_assert(sizeof(CommonButtonStyle_GetSelectedPressedBrush) == 0x0000D0, "Wrong size on CommonButtonStyle_GetSelectedPressedBrush"); \ +static_assert(offsetof(CommonButtonStyle_GetSelectedPressedBrush, Brush) == 0x000000, "Member 'CommonButtonStyle_GetSelectedPressedBrush::Brush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonStyle_GetSelectedTextStyle \ +static_assert(alignof(CommonButtonStyle_GetSelectedTextStyle) == 0x000008, "Wrong alignment on CommonButtonStyle_GetSelectedTextStyle"); \ +static_assert(sizeof(CommonButtonStyle_GetSelectedTextStyle) == 0x000008, "Wrong size on CommonButtonStyle_GetSelectedTextStyle"); \ +static_assert(offsetof(CommonButtonStyle_GetSelectedTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonStyle_GetSelectedTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButtonStyle \ +static_assert(alignof(UCommonButtonStyle) == 0x000010, "Wrong alignment on UCommonButtonStyle"); \ +static_assert(sizeof(UCommonButtonStyle) == 0x0007B0, "Wrong size on UCommonButtonStyle"); \ +static_assert(offsetof(UCommonButtonStyle, bSingleMaterial) == 0x000028, "Member 'UCommonButtonStyle::bSingleMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SingleMaterialBrush) == 0x000030, "Member 'UCommonButtonStyle::SingleMaterialBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, NormalBase) == 0x000100, "Member 'UCommonButtonStyle::NormalBase' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, NormalHovered) == 0x0001D0, "Member 'UCommonButtonStyle::NormalHovered' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, NormalPressed) == 0x0002A0, "Member 'UCommonButtonStyle::NormalPressed' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedBase) == 0x000370, "Member 'UCommonButtonStyle::SelectedBase' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedHovered) == 0x000440, "Member 'UCommonButtonStyle::SelectedHovered' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedPressed) == 0x000510, "Member 'UCommonButtonStyle::SelectedPressed' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, Disabled) == 0x0005E0, "Member 'UCommonButtonStyle::Disabled' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, ButtonPadding) == 0x0006B0, "Member 'UCommonButtonStyle::ButtonPadding' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, CustomPadding) == 0x0006C0, "Member 'UCommonButtonStyle::CustomPadding' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, MinWidth) == 0x0006D0, "Member 'UCommonButtonStyle::MinWidth' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, MinHeight) == 0x0006D4, "Member 'UCommonButtonStyle::MinHeight' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, NormalTextStyle) == 0x0006D8, "Member 'UCommonButtonStyle::NormalTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, NormalHoveredTextStyle) == 0x0006E0, "Member 'UCommonButtonStyle::NormalHoveredTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedTextStyle) == 0x0006E8, "Member 'UCommonButtonStyle::SelectedTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedHoveredTextStyle) == 0x0006F0, "Member 'UCommonButtonStyle::SelectedHoveredTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, DisabledTextStyle) == 0x0006F8, "Member 'UCommonButtonStyle::DisabledTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, PressedSlateSound) == 0x000700, "Member 'UCommonButtonStyle::PressedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedPressedSlateSound) == 0x000718, "Member 'UCommonButtonStyle::SelectedPressedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, LockedPressedSlateSound) == 0x000738, "Member 'UCommonButtonStyle::LockedPressedSlateSound' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, HoveredSlateSound) == 0x000758, "Member 'UCommonButtonStyle::HoveredSlateSound' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, SelectedHoveredSlateSound) == 0x000770, "Member 'UCommonButtonStyle::SelectedHoveredSlateSound' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonStyle, LockedHoveredSlateSound) == 0x000790, "Member 'UCommonButtonStyle::LockedHoveredSlateSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButtonInternalBase \ +static_assert(alignof(UCommonButtonInternalBase) == 0x000010, "Wrong alignment on UCommonButtonInternalBase"); \ +static_assert(sizeof(UCommonButtonInternalBase) == 0x000690, "Wrong size on UCommonButtonInternalBase"); \ +static_assert(offsetof(UCommonButtonInternalBase, OnDoubleClicked) == 0x000628, "Member 'UCommonButtonInternalBase::OnDoubleClicked' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonInternalBase, MinWidth) == 0x000658, "Member 'UCommonButtonInternalBase::MinWidth' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonInternalBase, MinHeight) == 0x00065C, "Member 'UCommonButtonInternalBase::MinHeight' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonInternalBase, bButtonEnabled) == 0x000660, "Member 'UCommonButtonInternalBase::bButtonEnabled' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonInternalBase, bInteractionEnabled) == 0x000661, "Member 'UCommonButtonInternalBase::bInteractionEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_BP_OnInputMethodChanged \ +static_assert(alignof(CommonButtonBase_BP_OnInputMethodChanged) == 0x000001, "Wrong alignment on CommonButtonBase_BP_OnInputMethodChanged"); \ +static_assert(sizeof(CommonButtonBase_BP_OnInputMethodChanged) == 0x000001, "Wrong size on CommonButtonBase_BP_OnInputMethodChanged"); \ +static_assert(offsetof(CommonButtonBase_BP_OnInputMethodChanged, CurrentInputType) == 0x000000, "Member 'CommonButtonBase_BP_OnInputMethodChanged::CurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_BP_OnLockedChanged \ +static_assert(alignof(CommonButtonBase_BP_OnLockedChanged) == 0x000001, "Wrong alignment on CommonButtonBase_BP_OnLockedChanged"); \ +static_assert(sizeof(CommonButtonBase_BP_OnLockedChanged) == 0x000001, "Wrong size on CommonButtonBase_BP_OnLockedChanged"); \ +static_assert(offsetof(CommonButtonBase_BP_OnLockedChanged, bIsLocked) == 0x000000, "Member 'CommonButtonBase_BP_OnLockedChanged::bIsLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_DisableButtonWithReason \ +static_assert(alignof(CommonButtonBase_DisableButtonWithReason) == 0x000008, "Wrong alignment on CommonButtonBase_DisableButtonWithReason"); \ +static_assert(sizeof(CommonButtonBase_DisableButtonWithReason) == 0x000018, "Wrong size on CommonButtonBase_DisableButtonWithReason"); \ +static_assert(offsetof(CommonButtonBase_DisableButtonWithReason, DisabledReason) == 0x000000, "Member 'CommonButtonBase_DisableButtonWithReason::DisabledReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetConvertInputActionToHold \ +static_assert(alignof(CommonButtonBase_GetConvertInputActionToHold) == 0x000001, "Wrong alignment on CommonButtonBase_GetConvertInputActionToHold"); \ +static_assert(sizeof(CommonButtonBase_GetConvertInputActionToHold) == 0x000001, "Wrong size on CommonButtonBase_GetConvertInputActionToHold"); \ +static_assert(offsetof(CommonButtonBase_GetConvertInputActionToHold, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetConvertInputActionToHold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_HandleTriggeringActionCommited \ +static_assert(alignof(CommonButtonBase_HandleTriggeringActionCommited) == 0x000001, "Wrong alignment on CommonButtonBase_HandleTriggeringActionCommited"); \ +static_assert(sizeof(CommonButtonBase_HandleTriggeringActionCommited) == 0x000001, "Wrong size on CommonButtonBase_HandleTriggeringActionCommited"); \ +static_assert(offsetof(CommonButtonBase_HandleTriggeringActionCommited, bPassThrough) == 0x000000, "Member 'CommonButtonBase_HandleTriggeringActionCommited::bPassThrough' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_NativeOnActionProgress \ +static_assert(alignof(CommonButtonBase_NativeOnActionProgress) == 0x000004, "Wrong alignment on CommonButtonBase_NativeOnActionProgress"); \ +static_assert(sizeof(CommonButtonBase_NativeOnActionProgress) == 0x000004, "Wrong size on CommonButtonBase_NativeOnActionProgress"); \ +static_assert(offsetof(CommonButtonBase_NativeOnActionProgress, HeldPercent) == 0x000000, "Member 'CommonButtonBase_NativeOnActionProgress::HeldPercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_NativeOnHoldProgress \ +static_assert(alignof(CommonButtonBase_NativeOnHoldProgress) == 0x000004, "Wrong alignment on CommonButtonBase_NativeOnHoldProgress"); \ +static_assert(sizeof(CommonButtonBase_NativeOnHoldProgress) == 0x000008, "Wrong size on CommonButtonBase_NativeOnHoldProgress"); \ +static_assert(offsetof(CommonButtonBase_NativeOnHoldProgress, DeltaTime) == 0x000000, "Member 'CommonButtonBase_NativeOnHoldProgress::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_NativeOnHoldProgress, ReturnValue) == 0x000004, "Member 'CommonButtonBase_NativeOnHoldProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_NativeOnHoldProgressRollback \ +static_assert(alignof(CommonButtonBase_NativeOnHoldProgressRollback) == 0x000004, "Wrong alignment on CommonButtonBase_NativeOnHoldProgressRollback"); \ +static_assert(sizeof(CommonButtonBase_NativeOnHoldProgressRollback) == 0x000008, "Wrong size on CommonButtonBase_NativeOnHoldProgressRollback"); \ +static_assert(offsetof(CommonButtonBase_NativeOnHoldProgressRollback, DeltaTime) == 0x000000, "Member 'CommonButtonBase_NativeOnHoldProgressRollback::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_NativeOnHoldProgressRollback, ReturnValue) == 0x000004, "Member 'CommonButtonBase_NativeOnHoldProgressRollback::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_OnActionProgress \ +static_assert(alignof(CommonButtonBase_OnActionProgress) == 0x000004, "Wrong alignment on CommonButtonBase_OnActionProgress"); \ +static_assert(sizeof(CommonButtonBase_OnActionProgress) == 0x000004, "Wrong size on CommonButtonBase_OnActionProgress"); \ +static_assert(offsetof(CommonButtonBase_OnActionProgress, HeldPercent) == 0x000000, "Member 'CommonButtonBase_OnActionProgress::HeldPercent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_OnInputMethodChanged \ +static_assert(alignof(CommonButtonBase_OnInputMethodChanged) == 0x000001, "Wrong alignment on CommonButtonBase_OnInputMethodChanged"); \ +static_assert(sizeof(CommonButtonBase_OnInputMethodChanged) == 0x000001, "Wrong size on CommonButtonBase_OnInputMethodChanged"); \ +static_assert(offsetof(CommonButtonBase_OnInputMethodChanged, CurrentInputType) == 0x000000, "Member 'CommonButtonBase_OnInputMethodChanged::CurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_OnTriggeredInputActionChanged \ +static_assert(alignof(CommonButtonBase_OnTriggeredInputActionChanged) == 0x000008, "Wrong alignment on CommonButtonBase_OnTriggeredInputActionChanged"); \ +static_assert(sizeof(CommonButtonBase_OnTriggeredInputActionChanged) == 0x000010, "Wrong size on CommonButtonBase_OnTriggeredInputActionChanged"); \ +static_assert(offsetof(CommonButtonBase_OnTriggeredInputActionChanged, NewTriggeredAction) == 0x000000, "Member 'CommonButtonBase_OnTriggeredInputActionChanged::NewTriggeredAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_OnTriggeringEnhancedInputActionChanged \ +static_assert(alignof(CommonButtonBase_OnTriggeringEnhancedInputActionChanged) == 0x000008, "Wrong alignment on CommonButtonBase_OnTriggeringEnhancedInputActionChanged"); \ +static_assert(sizeof(CommonButtonBase_OnTriggeringEnhancedInputActionChanged) == 0x000008, "Wrong size on CommonButtonBase_OnTriggeringEnhancedInputActionChanged"); \ +static_assert(offsetof(CommonButtonBase_OnTriggeringEnhancedInputActionChanged, InInputAction) == 0x000000, "Member 'CommonButtonBase_OnTriggeringEnhancedInputActionChanged::InInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_OnTriggeringInputActionChanged \ +static_assert(alignof(CommonButtonBase_OnTriggeringInputActionChanged) == 0x000008, "Wrong alignment on CommonButtonBase_OnTriggeringInputActionChanged"); \ +static_assert(sizeof(CommonButtonBase_OnTriggeringInputActionChanged) == 0x000010, "Wrong size on CommonButtonBase_OnTriggeringInputActionChanged"); \ +static_assert(offsetof(CommonButtonBase_OnTriggeringInputActionChanged, NewTriggeredAction) == 0x000000, "Member 'CommonButtonBase_OnTriggeringInputActionChanged::NewTriggeredAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetClickMethod \ +static_assert(alignof(CommonButtonBase_SetClickMethod) == 0x000001, "Wrong alignment on CommonButtonBase_SetClickMethod"); \ +static_assert(sizeof(CommonButtonBase_SetClickMethod) == 0x000001, "Wrong size on CommonButtonBase_SetClickMethod"); \ +static_assert(offsetof(CommonButtonBase_SetClickMethod, InClickMethod) == 0x000000, "Member 'CommonButtonBase_SetClickMethod::InClickMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetHideInputAction \ +static_assert(alignof(CommonButtonBase_SetHideInputAction) == 0x000001, "Wrong alignment on CommonButtonBase_SetHideInputAction"); \ +static_assert(sizeof(CommonButtonBase_SetHideInputAction) == 0x000001, "Wrong size on CommonButtonBase_SetHideInputAction"); \ +static_assert(offsetof(CommonButtonBase_SetHideInputAction, bInHideInputAction) == 0x000000, "Member 'CommonButtonBase_SetHideInputAction::bInHideInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetHoveredSoundOverride \ +static_assert(alignof(CommonButtonBase_SetHoveredSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetHoveredSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetHoveredSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetHoveredSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetHoveredSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetHoveredSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetInputActionProgressMaterial \ +static_assert(alignof(CommonButtonBase_SetInputActionProgressMaterial) == 0x000010, "Wrong alignment on CommonButtonBase_SetInputActionProgressMaterial"); \ +static_assert(sizeof(CommonButtonBase_SetInputActionProgressMaterial) == 0x0000E0, "Wrong size on CommonButtonBase_SetInputActionProgressMaterial"); \ +static_assert(offsetof(CommonButtonBase_SetInputActionProgressMaterial, InProgressMaterialBrush) == 0x000000, "Member 'CommonButtonBase_SetInputActionProgressMaterial::InProgressMaterialBrush' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_SetInputActionProgressMaterial, InProgressMaterialParam) == 0x0000D0, "Member 'CommonButtonBase_SetInputActionProgressMaterial::InProgressMaterialParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsFocusable \ +static_assert(alignof(CommonButtonBase_SetIsFocusable) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsFocusable"); \ +static_assert(sizeof(CommonButtonBase_SetIsFocusable) == 0x000001, "Wrong size on CommonButtonBase_SetIsFocusable"); \ +static_assert(offsetof(CommonButtonBase_SetIsFocusable, bInIsFocusable) == 0x000000, "Member 'CommonButtonBase_SetIsFocusable::bInIsFocusable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsInteractableWhenSelected \ +static_assert(alignof(CommonButtonBase_SetIsInteractableWhenSelected) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsInteractableWhenSelected"); \ +static_assert(sizeof(CommonButtonBase_SetIsInteractableWhenSelected) == 0x000001, "Wrong size on CommonButtonBase_SetIsInteractableWhenSelected"); \ +static_assert(offsetof(CommonButtonBase_SetIsInteractableWhenSelected, bInInteractableWhenSelected) == 0x000000, "Member 'CommonButtonBase_SetIsInteractableWhenSelected::bInInteractableWhenSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsInteractionEnabled \ +static_assert(alignof(CommonButtonBase_SetIsInteractionEnabled) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsInteractionEnabled"); \ +static_assert(sizeof(CommonButtonBase_SetIsInteractionEnabled) == 0x000001, "Wrong size on CommonButtonBase_SetIsInteractionEnabled"); \ +static_assert(offsetof(CommonButtonBase_SetIsInteractionEnabled, bInIsInteractionEnabled) == 0x000000, "Member 'CommonButtonBase_SetIsInteractionEnabled::bInIsInteractionEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsLocked \ +static_assert(alignof(CommonButtonBase_SetIsLocked) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsLocked"); \ +static_assert(sizeof(CommonButtonBase_SetIsLocked) == 0x000001, "Wrong size on CommonButtonBase_SetIsLocked"); \ +static_assert(offsetof(CommonButtonBase_SetIsLocked, bInIsLocked) == 0x000000, "Member 'CommonButtonBase_SetIsLocked::bInIsLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsSelectable \ +static_assert(alignof(CommonButtonBase_SetIsSelectable) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsSelectable"); \ +static_assert(sizeof(CommonButtonBase_SetIsSelectable) == 0x000001, "Wrong size on CommonButtonBase_SetIsSelectable"); \ +static_assert(offsetof(CommonButtonBase_SetIsSelectable, bInIsSelectable) == 0x000000, "Member 'CommonButtonBase_SetIsSelectable::bInIsSelectable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsSelected \ +static_assert(alignof(CommonButtonBase_SetIsSelected) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsSelected"); \ +static_assert(sizeof(CommonButtonBase_SetIsSelected) == 0x000002, "Wrong size on CommonButtonBase_SetIsSelected"); \ +static_assert(offsetof(CommonButtonBase_SetIsSelected, InSelected) == 0x000000, "Member 'CommonButtonBase_SetIsSelected::InSelected' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_SetIsSelected, bGiveClickFeedback) == 0x000001, "Member 'CommonButtonBase_SetIsSelected::bGiveClickFeedback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetIsToggleable \ +static_assert(alignof(CommonButtonBase_SetIsToggleable) == 0x000001, "Wrong alignment on CommonButtonBase_SetIsToggleable"); \ +static_assert(sizeof(CommonButtonBase_SetIsToggleable) == 0x000001, "Wrong size on CommonButtonBase_SetIsToggleable"); \ +static_assert(offsetof(CommonButtonBase_SetIsToggleable, bInIsToggleable) == 0x000000, "Member 'CommonButtonBase_SetIsToggleable::bInIsToggleable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetLockedHoveredSoundOverride \ +static_assert(alignof(CommonButtonBase_SetLockedHoveredSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetLockedHoveredSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetLockedHoveredSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetLockedHoveredSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetLockedHoveredSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetLockedHoveredSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetLockedPressedSoundOverride \ +static_assert(alignof(CommonButtonBase_SetLockedPressedSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetLockedPressedSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetLockedPressedSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetLockedPressedSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetLockedPressedSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetLockedPressedSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetMinDimensions \ +static_assert(alignof(CommonButtonBase_SetMinDimensions) == 0x000004, "Wrong alignment on CommonButtonBase_SetMinDimensions"); \ +static_assert(sizeof(CommonButtonBase_SetMinDimensions) == 0x000008, "Wrong size on CommonButtonBase_SetMinDimensions"); \ +static_assert(offsetof(CommonButtonBase_SetMinDimensions, InMinWidth) == 0x000000, "Member 'CommonButtonBase_SetMinDimensions::InMinWidth' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_SetMinDimensions, InMinHeight) == 0x000004, "Member 'CommonButtonBase_SetMinDimensions::InMinHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetPressedSoundOverride \ +static_assert(alignof(CommonButtonBase_SetPressedSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetPressedSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetPressedSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetPressedSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetPressedSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetPressedSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetPressMethod \ +static_assert(alignof(CommonButtonBase_SetPressMethod) == 0x000001, "Wrong alignment on CommonButtonBase_SetPressMethod"); \ +static_assert(sizeof(CommonButtonBase_SetPressMethod) == 0x000001, "Wrong size on CommonButtonBase_SetPressMethod"); \ +static_assert(offsetof(CommonButtonBase_SetPressMethod, InPressMethod) == 0x000000, "Member 'CommonButtonBase_SetPressMethod::InPressMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetSelectedHoveredSoundOverride \ +static_assert(alignof(CommonButtonBase_SetSelectedHoveredSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetSelectedHoveredSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetSelectedHoveredSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetSelectedHoveredSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetSelectedHoveredSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetSelectedHoveredSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetSelectedInternal \ +static_assert(alignof(CommonButtonBase_SetSelectedInternal) == 0x000001, "Wrong alignment on CommonButtonBase_SetSelectedInternal"); \ +static_assert(sizeof(CommonButtonBase_SetSelectedInternal) == 0x000003, "Wrong size on CommonButtonBase_SetSelectedInternal"); \ +static_assert(offsetof(CommonButtonBase_SetSelectedInternal, bInSelected) == 0x000000, "Member 'CommonButtonBase_SetSelectedInternal::bInSelected' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_SetSelectedInternal, bAllowSound) == 0x000001, "Member 'CommonButtonBase_SetSelectedInternal::bAllowSound' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_SetSelectedInternal, bBroadcast) == 0x000002, "Member 'CommonButtonBase_SetSelectedInternal::bBroadcast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetSelectedPressedSoundOverride \ +static_assert(alignof(CommonButtonBase_SetSelectedPressedSoundOverride) == 0x000008, "Wrong alignment on CommonButtonBase_SetSelectedPressedSoundOverride"); \ +static_assert(sizeof(CommonButtonBase_SetSelectedPressedSoundOverride) == 0x000008, "Wrong size on CommonButtonBase_SetSelectedPressedSoundOverride"); \ +static_assert(offsetof(CommonButtonBase_SetSelectedPressedSoundOverride, Sound) == 0x000000, "Member 'CommonButtonBase_SetSelectedPressedSoundOverride::Sound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetShouldSelectUponReceivingFocus \ +static_assert(alignof(CommonButtonBase_SetShouldSelectUponReceivingFocus) == 0x000001, "Wrong alignment on CommonButtonBase_SetShouldSelectUponReceivingFocus"); \ +static_assert(sizeof(CommonButtonBase_SetShouldSelectUponReceivingFocus) == 0x000001, "Wrong size on CommonButtonBase_SetShouldSelectUponReceivingFocus"); \ +static_assert(offsetof(CommonButtonBase_SetShouldSelectUponReceivingFocus, bInShouldSelectUponReceivingFocus) == 0x000000, "Member 'CommonButtonBase_SetShouldSelectUponReceivingFocus::bInShouldSelectUponReceivingFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetShouldUseFallbackDefaultInputAction \ +static_assert(alignof(CommonButtonBase_SetShouldUseFallbackDefaultInputAction) == 0x000001, "Wrong alignment on CommonButtonBase_SetShouldUseFallbackDefaultInputAction"); \ +static_assert(sizeof(CommonButtonBase_SetShouldUseFallbackDefaultInputAction) == 0x000001, "Wrong size on CommonButtonBase_SetShouldUseFallbackDefaultInputAction"); \ +static_assert(offsetof(CommonButtonBase_SetShouldUseFallbackDefaultInputAction, bInShouldUseFallbackDefaultInputAction) == 0x000000, "Member 'CommonButtonBase_SetShouldUseFallbackDefaultInputAction::bInShouldUseFallbackDefaultInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetStyle \ +static_assert(alignof(CommonButtonBase_SetStyle) == 0x000008, "Wrong alignment on CommonButtonBase_SetStyle"); \ +static_assert(sizeof(CommonButtonBase_SetStyle) == 0x000008, "Wrong size on CommonButtonBase_SetStyle"); \ +static_assert(offsetof(CommonButtonBase_SetStyle, InStyle) == 0x000000, "Member 'CommonButtonBase_SetStyle::InStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetTouchMethod \ +static_assert(alignof(CommonButtonBase_SetTouchMethod) == 0x000001, "Wrong alignment on CommonButtonBase_SetTouchMethod"); \ +static_assert(sizeof(CommonButtonBase_SetTouchMethod) == 0x000001, "Wrong size on CommonButtonBase_SetTouchMethod"); \ +static_assert(offsetof(CommonButtonBase_SetTouchMethod, InTouchMethod) == 0x000000, "Member 'CommonButtonBase_SetTouchMethod::InTouchMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetTriggeredInputAction \ +static_assert(alignof(CommonButtonBase_SetTriggeredInputAction) == 0x000008, "Wrong alignment on CommonButtonBase_SetTriggeredInputAction"); \ +static_assert(sizeof(CommonButtonBase_SetTriggeredInputAction) == 0x000010, "Wrong size on CommonButtonBase_SetTriggeredInputAction"); \ +static_assert(offsetof(CommonButtonBase_SetTriggeredInputAction, InputActionRow) == 0x000000, "Member 'CommonButtonBase_SetTriggeredInputAction::InputActionRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetTriggeringEnhancedInputAction \ +static_assert(alignof(CommonButtonBase_SetTriggeringEnhancedInputAction) == 0x000008, "Wrong alignment on CommonButtonBase_SetTriggeringEnhancedInputAction"); \ +static_assert(sizeof(CommonButtonBase_SetTriggeringEnhancedInputAction) == 0x000008, "Wrong size on CommonButtonBase_SetTriggeringEnhancedInputAction"); \ +static_assert(offsetof(CommonButtonBase_SetTriggeringEnhancedInputAction, InInputAction) == 0x000000, "Member 'CommonButtonBase_SetTriggeringEnhancedInputAction::InInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_SetTriggeringInputAction \ +static_assert(alignof(CommonButtonBase_SetTriggeringInputAction) == 0x000008, "Wrong alignment on CommonButtonBase_SetTriggeringInputAction"); \ +static_assert(sizeof(CommonButtonBase_SetTriggeringInputAction) == 0x000010, "Wrong size on CommonButtonBase_SetTriggeringInputAction"); \ +static_assert(offsetof(CommonButtonBase_SetTriggeringInputAction, InputActionRow) == 0x000000, "Member 'CommonButtonBase_SetTriggeringInputAction::InputActionRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_UpdateHoldData \ +static_assert(alignof(CommonButtonBase_UpdateHoldData) == 0x000001, "Wrong alignment on CommonButtonBase_UpdateHoldData"); \ +static_assert(sizeof(CommonButtonBase_UpdateHoldData) == 0x000001, "Wrong size on CommonButtonBase_UpdateHoldData"); \ +static_assert(offsetof(CommonButtonBase_UpdateHoldData, CurrentInputType) == 0x000000, "Member 'CommonButtonBase_UpdateHoldData::CurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetCurrentButtonPadding \ +static_assert(alignof(CommonButtonBase_GetCurrentButtonPadding) == 0x000004, "Wrong alignment on CommonButtonBase_GetCurrentButtonPadding"); \ +static_assert(sizeof(CommonButtonBase_GetCurrentButtonPadding) == 0x000010, "Wrong size on CommonButtonBase_GetCurrentButtonPadding"); \ +static_assert(offsetof(CommonButtonBase_GetCurrentButtonPadding, OutButtonPadding) == 0x000000, "Member 'CommonButtonBase_GetCurrentButtonPadding::OutButtonPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetCurrentCustomPadding \ +static_assert(alignof(CommonButtonBase_GetCurrentCustomPadding) == 0x000004, "Wrong alignment on CommonButtonBase_GetCurrentCustomPadding"); \ +static_assert(sizeof(CommonButtonBase_GetCurrentCustomPadding) == 0x000010, "Wrong size on CommonButtonBase_GetCurrentCustomPadding"); \ +static_assert(offsetof(CommonButtonBase_GetCurrentCustomPadding, OutCustomPadding) == 0x000000, "Member 'CommonButtonBase_GetCurrentCustomPadding::OutCustomPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetCurrentTextStyle \ +static_assert(alignof(CommonButtonBase_GetCurrentTextStyle) == 0x000008, "Wrong alignment on CommonButtonBase_GetCurrentTextStyle"); \ +static_assert(sizeof(CommonButtonBase_GetCurrentTextStyle) == 0x000008, "Wrong size on CommonButtonBase_GetCurrentTextStyle"); \ +static_assert(offsetof(CommonButtonBase_GetCurrentTextStyle, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetCurrentTextStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetCurrentTextStyleClass \ +static_assert(alignof(CommonButtonBase_GetCurrentTextStyleClass) == 0x000008, "Wrong alignment on CommonButtonBase_GetCurrentTextStyleClass"); \ +static_assert(sizeof(CommonButtonBase_GetCurrentTextStyleClass) == 0x000008, "Wrong size on CommonButtonBase_GetCurrentTextStyleClass"); \ +static_assert(offsetof(CommonButtonBase_GetCurrentTextStyleClass, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetCurrentTextStyleClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetEnhancedInputAction \ +static_assert(alignof(CommonButtonBase_GetEnhancedInputAction) == 0x000008, "Wrong alignment on CommonButtonBase_GetEnhancedInputAction"); \ +static_assert(sizeof(CommonButtonBase_GetEnhancedInputAction) == 0x000008, "Wrong size on CommonButtonBase_GetEnhancedInputAction"); \ +static_assert(offsetof(CommonButtonBase_GetEnhancedInputAction, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetEnhancedInputAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetInputAction \ +static_assert(alignof(CommonButtonBase_GetInputAction) == 0x000008, "Wrong alignment on CommonButtonBase_GetInputAction"); \ +static_assert(sizeof(CommonButtonBase_GetInputAction) == 0x000018, "Wrong size on CommonButtonBase_GetInputAction"); \ +static_assert(offsetof(CommonButtonBase_GetInputAction, InputActionRow) == 0x000000, "Member 'CommonButtonBase_GetInputAction::InputActionRow' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonBase_GetInputAction, ReturnValue) == 0x000010, "Member 'CommonButtonBase_GetInputAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetIsFocusable \ +static_assert(alignof(CommonButtonBase_GetIsFocusable) == 0x000001, "Wrong alignment on CommonButtonBase_GetIsFocusable"); \ +static_assert(sizeof(CommonButtonBase_GetIsFocusable) == 0x000001, "Wrong size on CommonButtonBase_GetIsFocusable"); \ +static_assert(offsetof(CommonButtonBase_GetIsFocusable, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetIsFocusable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetLocked \ +static_assert(alignof(CommonButtonBase_GetLocked) == 0x000001, "Wrong alignment on CommonButtonBase_GetLocked"); \ +static_assert(sizeof(CommonButtonBase_GetLocked) == 0x000001, "Wrong size on CommonButtonBase_GetLocked"); \ +static_assert(offsetof(CommonButtonBase_GetLocked, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetLocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetSelected \ +static_assert(alignof(CommonButtonBase_GetSelected) == 0x000001, "Wrong alignment on CommonButtonBase_GetSelected"); \ +static_assert(sizeof(CommonButtonBase_GetSelected) == 0x000001, "Wrong size on CommonButtonBase_GetSelected"); \ +static_assert(offsetof(CommonButtonBase_GetSelected, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetShouldSelectUponReceivingFocus \ +static_assert(alignof(CommonButtonBase_GetShouldSelectUponReceivingFocus) == 0x000001, "Wrong alignment on CommonButtonBase_GetShouldSelectUponReceivingFocus"); \ +static_assert(sizeof(CommonButtonBase_GetShouldSelectUponReceivingFocus) == 0x000001, "Wrong size on CommonButtonBase_GetShouldSelectUponReceivingFocus"); \ +static_assert(offsetof(CommonButtonBase_GetShouldSelectUponReceivingFocus, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetShouldSelectUponReceivingFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetSingleMaterialStyleMID \ +static_assert(alignof(CommonButtonBase_GetSingleMaterialStyleMID) == 0x000008, "Wrong alignment on CommonButtonBase_GetSingleMaterialStyleMID"); \ +static_assert(sizeof(CommonButtonBase_GetSingleMaterialStyleMID) == 0x000008, "Wrong size on CommonButtonBase_GetSingleMaterialStyleMID"); \ +static_assert(offsetof(CommonButtonBase_GetSingleMaterialStyleMID, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetSingleMaterialStyleMID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_GetStyle \ +static_assert(alignof(CommonButtonBase_GetStyle) == 0x000008, "Wrong alignment on CommonButtonBase_GetStyle"); \ +static_assert(sizeof(CommonButtonBase_GetStyle) == 0x000008, "Wrong size on CommonButtonBase_GetStyle"); \ +static_assert(offsetof(CommonButtonBase_GetStyle, ReturnValue) == 0x000000, "Member 'CommonButtonBase_GetStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_IsInteractionEnabled \ +static_assert(alignof(CommonButtonBase_IsInteractionEnabled) == 0x000001, "Wrong alignment on CommonButtonBase_IsInteractionEnabled"); \ +static_assert(sizeof(CommonButtonBase_IsInteractionEnabled) == 0x000001, "Wrong size on CommonButtonBase_IsInteractionEnabled"); \ +static_assert(offsetof(CommonButtonBase_IsInteractionEnabled, ReturnValue) == 0x000000, "Member 'CommonButtonBase_IsInteractionEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonBase_IsPressed \ +static_assert(alignof(CommonButtonBase_IsPressed) == 0x000001, "Wrong alignment on CommonButtonBase_IsPressed"); \ +static_assert(sizeof(CommonButtonBase_IsPressed) == 0x000001, "Wrong size on CommonButtonBase_IsPressed"); \ +static_assert(offsetof(CommonButtonBase_IsPressed, ReturnValue) == 0x000000, "Member 'CommonButtonBase_IsPressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButtonBase \ +static_assert(alignof(UCommonButtonBase) == 0x000010, "Wrong alignment on UCommonButtonBase"); \ +static_assert(sizeof(UCommonButtonBase) == 0x001580, "Wrong size on UCommonButtonBase"); \ +static_assert(offsetof(UCommonButtonBase, ClickEvent) == 0x0002E8, "Member 'UCommonButtonBase::ClickEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, MinWidth) == 0x0002EC, "Member 'UCommonButtonBase::MinWidth' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, MinHeight) == 0x0002F0, "Member 'UCommonButtonBase::MinHeight' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, Style) == 0x0002F8, "Member 'UCommonButtonBase::Style' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, bHideInputAction) == 0x000300, "Member 'UCommonButtonBase::bHideInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, PressedSlateSoundOverride) == 0x000308, "Member 'UCommonButtonBase::PressedSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, HoveredSlateSoundOverride) == 0x000320, "Member 'UCommonButtonBase::HoveredSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, SelectedPressedSlateSoundOverride) == 0x000338, "Member 'UCommonButtonBase::SelectedPressedSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, SelectedHoveredSlateSoundOverride) == 0x000350, "Member 'UCommonButtonBase::SelectedHoveredSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, LockedPressedSlateSoundOverride) == 0x000368, "Member 'UCommonButtonBase::LockedPressedSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, LockedHoveredSlateSoundOverride) == 0x000380, "Member 'UCommonButtonBase::LockedHoveredSlateSoundOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, HoldData) == 0x0003A0, "Member 'UCommonButtonBase::HoldData' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, bSimulateHoverOnTouchInput) == 0x0003A8, "Member 'UCommonButtonBase::bSimulateHoverOnTouchInput' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, ClickMethod) == 0x0003AA, "Member 'UCommonButtonBase::ClickMethod' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, TouchMethod) == 0x0003AB, "Member 'UCommonButtonBase::TouchMethod' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, PressMethod) == 0x0003AC, "Member 'UCommonButtonBase::PressMethod' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, InputPriority) == 0x0003B0, "Member 'UCommonButtonBase::InputPriority' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, TriggeringInputAction) == 0x0003B8, "Member 'UCommonButtonBase::TriggeringInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, TriggeringEnhancedInputAction) == 0x0003C8, "Member 'UCommonButtonBase::TriggeringEnhancedInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, OnSelectedChangedBase) == 0x0003E0, "Member 'UCommonButtonBase::OnSelectedChangedBase' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, OnButtonBaseClicked) == 0x0003F0, "Member 'UCommonButtonBase::OnButtonBaseClicked' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, OnButtonBaseDoubleClicked) == 0x000400, "Member 'UCommonButtonBase::OnButtonBaseDoubleClicked' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, OnButtonBaseHovered) == 0x000410, "Member 'UCommonButtonBase::OnButtonBaseHovered' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, OnButtonBaseUnhovered) == 0x000420, "Member 'UCommonButtonBase::OnButtonBaseUnhovered' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, bIsPersistentBinding) == 0x000460, "Member 'UCommonButtonBase::bIsPersistentBinding' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, InputModeOverride) == 0x000461, "Member 'UCommonButtonBase::InputModeOverride' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, SingleMaterialStyleMID) == 0x000498, "Member 'UCommonButtonBase::SingleMaterialStyleMID' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, NormalStyle) == 0x0004A0, "Member 'UCommonButtonBase::NormalStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, SelectedStyle) == 0x000890, "Member 'UCommonButtonBase::SelectedStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, DisabledStyle) == 0x000C80, "Member 'UCommonButtonBase::DisabledStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, LockedStyle) == 0x001070, "Member 'UCommonButtonBase::LockedStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonBase, InputActionWidget) == 0x001578, "Member 'UCommonButtonBase::InputActionWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWidgetLockedStateRegistration \ +static_assert(alignof(UWidgetLockedStateRegistration) == 0x000008, "Wrong alignment on UWidgetLockedStateRegistration"); \ +static_assert(sizeof(UWidgetLockedStateRegistration) == 0x000028, "Wrong size on UWidgetLockedStateRegistration"); \ + +#define DUMPER7_ASSERTS_UCommonCustomNavigation \ +static_assert(alignof(UCommonCustomNavigation) == 0x000010, "Wrong alignment on UCommonCustomNavigation"); \ +static_assert(sizeof(UCommonCustomNavigation) == 0x000350, "Wrong size on UCommonCustomNavigation"); \ +static_assert(offsetof(UCommonCustomNavigation, OnNavigationEvent) == 0x000338, "Member 'UCommonCustomNavigation::OnNavigationEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_GetMargin \ +static_assert(alignof(CommonTextBlock_GetMargin) == 0x000004, "Wrong alignment on CommonTextBlock_GetMargin"); \ +static_assert(sizeof(CommonTextBlock_GetMargin) == 0x000010, "Wrong size on CommonTextBlock_GetMargin"); \ +static_assert(offsetof(CommonTextBlock_GetMargin, ReturnValue) == 0x000000, "Member 'CommonTextBlock_GetMargin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetLineHeightPercentage \ +static_assert(alignof(CommonTextBlock_SetLineHeightPercentage) == 0x000004, "Wrong alignment on CommonTextBlock_SetLineHeightPercentage"); \ +static_assert(sizeof(CommonTextBlock_SetLineHeightPercentage) == 0x000004, "Wrong size on CommonTextBlock_SetLineHeightPercentage"); \ +static_assert(offsetof(CommonTextBlock_SetLineHeightPercentage, InLineHeightPercentage) == 0x000000, "Member 'CommonTextBlock_SetLineHeightPercentage::InLineHeightPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetMargin \ +static_assert(alignof(CommonTextBlock_SetMargin) == 0x000004, "Wrong alignment on CommonTextBlock_SetMargin"); \ +static_assert(sizeof(CommonTextBlock_SetMargin) == 0x000010, "Wrong size on CommonTextBlock_SetMargin"); \ +static_assert(offsetof(CommonTextBlock_SetMargin, InMargin) == 0x000000, "Member 'CommonTextBlock_SetMargin::InMargin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetMobileFontSizeMultiplier \ +static_assert(alignof(CommonTextBlock_SetMobileFontSizeMultiplier) == 0x000004, "Wrong alignment on CommonTextBlock_SetMobileFontSizeMultiplier"); \ +static_assert(sizeof(CommonTextBlock_SetMobileFontSizeMultiplier) == 0x000004, "Wrong size on CommonTextBlock_SetMobileFontSizeMultiplier"); \ +static_assert(offsetof(CommonTextBlock_SetMobileFontSizeMultiplier, InMobileFontSizeMultiplier) == 0x000000, "Member 'CommonTextBlock_SetMobileFontSizeMultiplier::InMobileFontSizeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetScrollingEnabled \ +static_assert(alignof(CommonTextBlock_SetScrollingEnabled) == 0x000001, "Wrong alignment on CommonTextBlock_SetScrollingEnabled"); \ +static_assert(sizeof(CommonTextBlock_SetScrollingEnabled) == 0x000001, "Wrong size on CommonTextBlock_SetScrollingEnabled"); \ +static_assert(offsetof(CommonTextBlock_SetScrollingEnabled, bInIsScrollingEnabled) == 0x000000, "Member 'CommonTextBlock_SetScrollingEnabled::bInIsScrollingEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetStyle \ +static_assert(alignof(CommonTextBlock_SetStyle) == 0x000008, "Wrong alignment on CommonTextBlock_SetStyle"); \ +static_assert(sizeof(CommonTextBlock_SetStyle) == 0x000008, "Wrong size on CommonTextBlock_SetStyle"); \ +static_assert(offsetof(CommonTextBlock_SetStyle, InStyle) == 0x000000, "Member 'CommonTextBlock_SetStyle::InStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetTextCase \ +static_assert(alignof(CommonTextBlock_SetTextCase) == 0x000001, "Wrong alignment on CommonTextBlock_SetTextCase"); \ +static_assert(sizeof(CommonTextBlock_SetTextCase) == 0x000001, "Wrong size on CommonTextBlock_SetTextCase"); \ +static_assert(offsetof(CommonTextBlock_SetTextCase, bUseAllCaps) == 0x000000, "Member 'CommonTextBlock_SetTextCase::bUseAllCaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_SetWrapTextWidth \ +static_assert(alignof(CommonTextBlock_SetWrapTextWidth) == 0x000004, "Wrong alignment on CommonTextBlock_SetWrapTextWidth"); \ +static_assert(sizeof(CommonTextBlock_SetWrapTextWidth) == 0x000004, "Wrong size on CommonTextBlock_SetWrapTextWidth"); \ +static_assert(offsetof(CommonTextBlock_SetWrapTextWidth, InWrapTextAt) == 0x000000, "Member 'CommonTextBlock_SetWrapTextWidth::InWrapTextAt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextBlock_GetMobileFontSizeMultiplier \ +static_assert(alignof(CommonTextBlock_GetMobileFontSizeMultiplier) == 0x000004, "Wrong alignment on CommonTextBlock_GetMobileFontSizeMultiplier"); \ +static_assert(sizeof(CommonTextBlock_GetMobileFontSizeMultiplier) == 0x000004, "Wrong size on CommonTextBlock_GetMobileFontSizeMultiplier"); \ +static_assert(offsetof(CommonTextBlock_GetMobileFontSizeMultiplier, ReturnValue) == 0x000000, "Member 'CommonTextBlock_GetMobileFontSizeMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextBlock \ +static_assert(alignof(UCommonTextBlock) == 0x000010, "Wrong alignment on UCommonTextBlock"); \ +static_assert(sizeof(UCommonTextBlock) == 0x0003A0, "Wrong size on UCommonTextBlock"); \ +static_assert(offsetof(UCommonTextBlock, MobileFontSizeMultiplier) == 0x000368, "Member 'UCommonTextBlock::MobileFontSizeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextBlock, Style) == 0x000370, "Member 'UCommonTextBlock::Style' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextBlock, ScrollStyle) == 0x000378, "Member 'UCommonTextBlock::ScrollStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextBlock, bIsScrollingEnabled) == 0x000380, "Member 'UCommonTextBlock::bIsScrollingEnabled' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextBlock, bDisplayAllCaps) == 0x000381, "Member 'UCommonTextBlock::bDisplayAllCaps' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextBlock, bAutoCollapseWithEmptyText) == 0x000382, "Member 'UCommonTextBlock::bAutoCollapseWithEmptyText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonDateTimeTextBlock_SetCountDownCompletionText \ +static_assert(alignof(CommonDateTimeTextBlock_SetCountDownCompletionText) == 0x000008, "Wrong alignment on CommonDateTimeTextBlock_SetCountDownCompletionText"); \ +static_assert(sizeof(CommonDateTimeTextBlock_SetCountDownCompletionText) == 0x000018, "Wrong size on CommonDateTimeTextBlock_SetCountDownCompletionText"); \ +static_assert(offsetof(CommonDateTimeTextBlock_SetCountDownCompletionText, InCompletionText) == 0x000000, "Member 'CommonDateTimeTextBlock_SetCountDownCompletionText::InCompletionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonDateTimeTextBlock_SetDateTimeValue \ +static_assert(alignof(CommonDateTimeTextBlock_SetDateTimeValue) == 0x000008, "Wrong alignment on CommonDateTimeTextBlock_SetDateTimeValue"); \ +static_assert(sizeof(CommonDateTimeTextBlock_SetDateTimeValue) == 0x000010, "Wrong size on CommonDateTimeTextBlock_SetDateTimeValue"); \ +static_assert(offsetof(CommonDateTimeTextBlock_SetDateTimeValue, InDateTime) == 0x000000, "Member 'CommonDateTimeTextBlock_SetDateTimeValue::InDateTime' has a wrong offset!"); \ +static_assert(offsetof(CommonDateTimeTextBlock_SetDateTimeValue, bShowAsCountdown) == 0x000008, "Member 'CommonDateTimeTextBlock_SetDateTimeValue::bShowAsCountdown' has a wrong offset!"); \ +static_assert(offsetof(CommonDateTimeTextBlock_SetDateTimeValue, InRefreshDelay) == 0x00000C, "Member 'CommonDateTimeTextBlock_SetDateTimeValue::InRefreshDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonDateTimeTextBlock_SetTimespanValue \ +static_assert(alignof(CommonDateTimeTextBlock_SetTimespanValue) == 0x000008, "Wrong alignment on CommonDateTimeTextBlock_SetTimespanValue"); \ +static_assert(sizeof(CommonDateTimeTextBlock_SetTimespanValue) == 0x000008, "Wrong size on CommonDateTimeTextBlock_SetTimespanValue"); \ +static_assert(offsetof(CommonDateTimeTextBlock_SetTimespanValue, InTimespan) == 0x000000, "Member 'CommonDateTimeTextBlock_SetTimespanValue::InTimespan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonDateTimeTextBlock_GetDateTime \ +static_assert(alignof(CommonDateTimeTextBlock_GetDateTime) == 0x000008, "Wrong alignment on CommonDateTimeTextBlock_GetDateTime"); \ +static_assert(sizeof(CommonDateTimeTextBlock_GetDateTime) == 0x000008, "Wrong size on CommonDateTimeTextBlock_GetDateTime"); \ +static_assert(offsetof(CommonDateTimeTextBlock_GetDateTime, ReturnValue) == 0x000000, "Member 'CommonDateTimeTextBlock_GetDateTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonDateTimeTextBlock \ +static_assert(alignof(UCommonDateTimeTextBlock) == 0x000010, "Wrong alignment on UCommonDateTimeTextBlock"); \ +static_assert(sizeof(UCommonDateTimeTextBlock) == 0x0003F0, "Wrong size on UCommonDateTimeTextBlock"); \ + +#define DUMPER7_ASSERTS_UCommonGameViewportClient \ +static_assert(alignof(UCommonGameViewportClient) == 0x000008, "Wrong alignment on UCommonGameViewportClient"); \ +static_assert(sizeof(UCommonGameViewportClient) == 0x0003F0, "Wrong size on UCommonGameViewportClient"); \ + +#define DUMPER7_ASSERTS_UCommonHardwareVisibilityBorder \ +static_assert(alignof(UCommonHardwareVisibilityBorder) == 0x000010, "Wrong alignment on UCommonHardwareVisibilityBorder"); \ +static_assert(sizeof(UCommonHardwareVisibilityBorder) == 0x0003B0, "Wrong size on UCommonHardwareVisibilityBorder"); \ +static_assert(offsetof(UCommonHardwareVisibilityBorder, VisibilityQuery) == 0x000358, "Member 'UCommonHardwareVisibilityBorder::VisibilityQuery' has a wrong offset!"); \ +static_assert(offsetof(UCommonHardwareVisibilityBorder, VisibleType) == 0x0003A0, "Member 'UCommonHardwareVisibilityBorder::VisibleType' has a wrong offset!"); \ +static_assert(offsetof(UCommonHardwareVisibilityBorder, HiddenType) == 0x0003A1, "Member 'UCommonHardwareVisibilityBorder::HiddenType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonHierarchicalScrollBox \ +static_assert(alignof(UCommonHierarchicalScrollBox) == 0x000010, "Wrong alignment on UCommonHierarchicalScrollBox"); \ +static_assert(sizeof(UCommonHierarchicalScrollBox) == 0x000CF0, "Wrong size on UCommonHierarchicalScrollBox"); \ + +#define DUMPER7_ASSERTS_CommonLazyImage_SetBrushFromLazyDisplayAsset \ +static_assert(alignof(CommonLazyImage_SetBrushFromLazyDisplayAsset) == 0x000008, "Wrong alignment on CommonLazyImage_SetBrushFromLazyDisplayAsset"); \ +static_assert(sizeof(CommonLazyImage_SetBrushFromLazyDisplayAsset) == 0x000030, "Wrong size on CommonLazyImage_SetBrushFromLazyDisplayAsset"); \ +static_assert(offsetof(CommonLazyImage_SetBrushFromLazyDisplayAsset, LazyObject) == 0x000000, "Member 'CommonLazyImage_SetBrushFromLazyDisplayAsset::LazyObject' has a wrong offset!"); \ +static_assert(offsetof(CommonLazyImage_SetBrushFromLazyDisplayAsset, bMatchTextureSize) == 0x000028, "Member 'CommonLazyImage_SetBrushFromLazyDisplayAsset::bMatchTextureSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyImage_SetBrushFromLazyMaterial \ +static_assert(alignof(CommonLazyImage_SetBrushFromLazyMaterial) == 0x000008, "Wrong alignment on CommonLazyImage_SetBrushFromLazyMaterial"); \ +static_assert(sizeof(CommonLazyImage_SetBrushFromLazyMaterial) == 0x000028, "Wrong size on CommonLazyImage_SetBrushFromLazyMaterial"); \ +static_assert(offsetof(CommonLazyImage_SetBrushFromLazyMaterial, LazyMaterial) == 0x000000, "Member 'CommonLazyImage_SetBrushFromLazyMaterial::LazyMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyImage_SetBrushFromLazyTexture \ +static_assert(alignof(CommonLazyImage_SetBrushFromLazyTexture) == 0x000008, "Wrong alignment on CommonLazyImage_SetBrushFromLazyTexture"); \ +static_assert(sizeof(CommonLazyImage_SetBrushFromLazyTexture) == 0x000030, "Wrong size on CommonLazyImage_SetBrushFromLazyTexture"); \ +static_assert(offsetof(CommonLazyImage_SetBrushFromLazyTexture, LazyTexture) == 0x000000, "Member 'CommonLazyImage_SetBrushFromLazyTexture::LazyTexture' has a wrong offset!"); \ +static_assert(offsetof(CommonLazyImage_SetBrushFromLazyTexture, bMatchSize) == 0x000028, "Member 'CommonLazyImage_SetBrushFromLazyTexture::bMatchSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyImage_SetMaterialTextureParamName \ +static_assert(alignof(CommonLazyImage_SetMaterialTextureParamName) == 0x000004, "Wrong alignment on CommonLazyImage_SetMaterialTextureParamName"); \ +static_assert(sizeof(CommonLazyImage_SetMaterialTextureParamName) == 0x000008, "Wrong size on CommonLazyImage_SetMaterialTextureParamName"); \ +static_assert(offsetof(CommonLazyImage_SetMaterialTextureParamName, TextureParamName) == 0x000000, "Member 'CommonLazyImage_SetMaterialTextureParamName::TextureParamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyImage_IsLoading \ +static_assert(alignof(CommonLazyImage_IsLoading) == 0x000001, "Wrong alignment on CommonLazyImage_IsLoading"); \ +static_assert(sizeof(CommonLazyImage_IsLoading) == 0x000001, "Wrong size on CommonLazyImage_IsLoading"); \ +static_assert(offsetof(CommonLazyImage_IsLoading, ReturnValue) == 0x000000, "Member 'CommonLazyImage_IsLoading::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonLazyImage \ +static_assert(alignof(UCommonLazyImage) == 0x000010, "Wrong alignment on UCommonLazyImage"); \ +static_assert(sizeof(UCommonLazyImage) == 0x0003F0, "Wrong size on UCommonLazyImage"); \ +static_assert(offsetof(UCommonLazyImage, LoadingBackgroundBrush) == 0x0002E0, "Member 'UCommonLazyImage::LoadingBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonLazyImage, MaterialTextureParamName) == 0x0003B0, "Member 'UCommonLazyImage::MaterialTextureParamName' has a wrong offset!"); \ +static_assert(offsetof(UCommonLazyImage, BP_OnLoadingStateChanged) == 0x0003B8, "Member 'UCommonLazyImage::BP_OnLoadingStateChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyWidget_SetLazyContent \ +static_assert(alignof(CommonLazyWidget_SetLazyContent) == 0x000008, "Wrong alignment on CommonLazyWidget_SetLazyContent"); \ +static_assert(sizeof(CommonLazyWidget_SetLazyContent) == 0x000028, "Wrong size on CommonLazyWidget_SetLazyContent"); \ +static_assert(offsetof(CommonLazyWidget_SetLazyContent, SoftWidget) == 0x000000, "Member 'CommonLazyWidget_SetLazyContent::SoftWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyWidget_GetContent \ +static_assert(alignof(CommonLazyWidget_GetContent) == 0x000008, "Wrong alignment on CommonLazyWidget_GetContent"); \ +static_assert(sizeof(CommonLazyWidget_GetContent) == 0x000008, "Wrong size on CommonLazyWidget_GetContent"); \ +static_assert(offsetof(CommonLazyWidget_GetContent, ReturnValue) == 0x000000, "Member 'CommonLazyWidget_GetContent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLazyWidget_IsLoading \ +static_assert(alignof(CommonLazyWidget_IsLoading) == 0x000001, "Wrong alignment on CommonLazyWidget_IsLoading"); \ +static_assert(sizeof(CommonLazyWidget_IsLoading) == 0x000001, "Wrong size on CommonLazyWidget_IsLoading"); \ +static_assert(offsetof(CommonLazyWidget_IsLoading, ReturnValue) == 0x000000, "Member 'CommonLazyWidget_IsLoading::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonLazyWidget \ +static_assert(alignof(UCommonLazyWidget) == 0x000010, "Wrong alignment on UCommonLazyWidget"); \ +static_assert(sizeof(UCommonLazyWidget) == 0x0002E0, "Wrong size on UCommonLazyWidget"); \ +static_assert(offsetof(UCommonLazyWidget, LoadingBackgroundBrush) == 0x000180, "Member 'UCommonLazyWidget::LoadingBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonLazyWidget, Content) == 0x000250, "Member 'UCommonLazyWidget::Content' has a wrong offset!"); \ +static_assert(offsetof(UCommonLazyWidget, BP_OnLoadingStateChanged) == 0x000288, "Member 'UCommonLazyWidget::BP_OnLoadingStateChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonListView_SetEntrySpacing \ +static_assert(alignof(CommonListView_SetEntrySpacing) == 0x000004, "Wrong alignment on CommonListView_SetEntrySpacing"); \ +static_assert(sizeof(CommonListView_SetEntrySpacing) == 0x000004, "Wrong size on CommonListView_SetEntrySpacing"); \ +static_assert(offsetof(CommonListView_SetEntrySpacing, InEntrySpacing) == 0x000000, "Member 'CommonListView_SetEntrySpacing::InEntrySpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonListView \ +static_assert(alignof(UCommonListView) == 0x000010, "Wrong alignment on UCommonListView"); \ +static_assert(sizeof(UCommonListView) == 0x000C70, "Wrong size on UCommonListView"); \ + +#define DUMPER7_ASSERTS_LoadGuardSlot_SetHorizontalAlignment \ +static_assert(alignof(LoadGuardSlot_SetHorizontalAlignment) == 0x000001, "Wrong alignment on LoadGuardSlot_SetHorizontalAlignment"); \ +static_assert(sizeof(LoadGuardSlot_SetHorizontalAlignment) == 0x000001, "Wrong size on LoadGuardSlot_SetHorizontalAlignment"); \ +static_assert(offsetof(LoadGuardSlot_SetHorizontalAlignment, InHorizontalAlignment) == 0x000000, "Member 'LoadGuardSlot_SetHorizontalAlignment::InHorizontalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadGuardSlot_SetPadding \ +static_assert(alignof(LoadGuardSlot_SetPadding) == 0x000004, "Wrong alignment on LoadGuardSlot_SetPadding"); \ +static_assert(sizeof(LoadGuardSlot_SetPadding) == 0x000010, "Wrong size on LoadGuardSlot_SetPadding"); \ +static_assert(offsetof(LoadGuardSlot_SetPadding, InPadding) == 0x000000, "Member 'LoadGuardSlot_SetPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadGuardSlot_SetVerticalAlignment \ +static_assert(alignof(LoadGuardSlot_SetVerticalAlignment) == 0x000001, "Wrong alignment on LoadGuardSlot_SetVerticalAlignment"); \ +static_assert(sizeof(LoadGuardSlot_SetVerticalAlignment) == 0x000001, "Wrong size on LoadGuardSlot_SetVerticalAlignment"); \ +static_assert(offsetof(LoadGuardSlot_SetVerticalAlignment, InVerticalAlignment) == 0x000000, "Member 'LoadGuardSlot_SetVerticalAlignment::InVerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoadGuardSlot \ +static_assert(alignof(ULoadGuardSlot) == 0x000008, "Wrong alignment on ULoadGuardSlot"); \ +static_assert(sizeof(ULoadGuardSlot) == 0x000060, "Wrong size on ULoadGuardSlot"); \ +static_assert(offsetof(ULoadGuardSlot, Padding) == 0x000038, "Member 'ULoadGuardSlot::Padding' has a wrong offset!"); \ +static_assert(offsetof(ULoadGuardSlot, HorizontalAlignment) == 0x000048, "Member 'ULoadGuardSlot::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(ULoadGuardSlot, VerticalAlignment) == 0x000049, "Member 'ULoadGuardSlot::VerticalAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadGuard_BP_GuardAndLoadAsset \ +static_assert(alignof(CommonLoadGuard_BP_GuardAndLoadAsset) == 0x000008, "Wrong alignment on CommonLoadGuard_BP_GuardAndLoadAsset"); \ +static_assert(sizeof(CommonLoadGuard_BP_GuardAndLoadAsset) == 0x000038, "Wrong size on CommonLoadGuard_BP_GuardAndLoadAsset"); \ +static_assert(offsetof(CommonLoadGuard_BP_GuardAndLoadAsset, InLazyAsset) == 0x000000, "Member 'CommonLoadGuard_BP_GuardAndLoadAsset::InLazyAsset' has a wrong offset!"); \ +static_assert(offsetof(CommonLoadGuard_BP_GuardAndLoadAsset, OnAssetLoaded) == 0x000028, "Member 'CommonLoadGuard_BP_GuardAndLoadAsset::OnAssetLoaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadGuard_SetIsLoading \ +static_assert(alignof(CommonLoadGuard_SetIsLoading) == 0x000001, "Wrong alignment on CommonLoadGuard_SetIsLoading"); \ +static_assert(sizeof(CommonLoadGuard_SetIsLoading) == 0x000001, "Wrong size on CommonLoadGuard_SetIsLoading"); \ +static_assert(offsetof(CommonLoadGuard_SetIsLoading, bInIsLoading) == 0x000000, "Member 'CommonLoadGuard_SetIsLoading::bInIsLoading' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadGuard_SetLoadingText \ +static_assert(alignof(CommonLoadGuard_SetLoadingText) == 0x000008, "Wrong alignment on CommonLoadGuard_SetLoadingText"); \ +static_assert(sizeof(CommonLoadGuard_SetLoadingText) == 0x000018, "Wrong size on CommonLoadGuard_SetLoadingText"); \ +static_assert(offsetof(CommonLoadGuard_SetLoadingText, InLoadingText) == 0x000000, "Member 'CommonLoadGuard_SetLoadingText::InLoadingText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadGuard_IsLoading \ +static_assert(alignof(CommonLoadGuard_IsLoading) == 0x000001, "Wrong alignment on CommonLoadGuard_IsLoading"); \ +static_assert(sizeof(CommonLoadGuard_IsLoading) == 0x000001, "Wrong size on CommonLoadGuard_IsLoading"); \ +static_assert(offsetof(CommonLoadGuard_IsLoading, ReturnValue) == 0x000000, "Member 'CommonLoadGuard_IsLoading::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonLoadGuard \ +static_assert(alignof(UCommonLoadGuard) == 0x000010, "Wrong alignment on UCommonLoadGuard"); \ +static_assert(sizeof(UCommonLoadGuard) == 0x000300, "Wrong size on UCommonLoadGuard"); \ +static_assert(offsetof(UCommonLoadGuard, LoadingBackgroundBrush) == 0x0001A0, "Member 'UCommonLoadGuard::LoadingBackgroundBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, ThrobberAlignment) == 0x000270, "Member 'UCommonLoadGuard::ThrobberAlignment' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, ThrobberPadding) == 0x000274, "Member 'UCommonLoadGuard::ThrobberPadding' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, LoadingText) == 0x000288, "Member 'UCommonLoadGuard::LoadingText' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, TextStyle) == 0x0002A0, "Member 'UCommonLoadGuard::TextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, BP_OnLoadingStateChanged) == 0x0002A8, "Member 'UCommonLoadGuard::BP_OnLoadingStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadGuard, SpinnerMaterialPath) == 0x0002B8, "Member 'UCommonLoadGuard::SpinnerMaterialPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonNumericTextBlock_InterpolateToValue \ +static_assert(alignof(CommonNumericTextBlock_InterpolateToValue) == 0x000004, "Wrong alignment on CommonNumericTextBlock_InterpolateToValue"); \ +static_assert(sizeof(CommonNumericTextBlock_InterpolateToValue) == 0x000010, "Wrong size on CommonNumericTextBlock_InterpolateToValue"); \ +static_assert(offsetof(CommonNumericTextBlock_InterpolateToValue, TargetValue) == 0x000000, "Member 'CommonNumericTextBlock_InterpolateToValue::TargetValue' has a wrong offset!"); \ +static_assert(offsetof(CommonNumericTextBlock_InterpolateToValue, MaximumInterpolationDuration) == 0x000004, "Member 'CommonNumericTextBlock_InterpolateToValue::MaximumInterpolationDuration' has a wrong offset!"); \ +static_assert(offsetof(CommonNumericTextBlock_InterpolateToValue, MinimumChangeRate) == 0x000008, "Member 'CommonNumericTextBlock_InterpolateToValue::MinimumChangeRate' has a wrong offset!"); \ +static_assert(offsetof(CommonNumericTextBlock_InterpolateToValue, OutroOffset) == 0x00000C, "Member 'CommonNumericTextBlock_InterpolateToValue::OutroOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonNumericTextBlock_SetCurrentValue \ +static_assert(alignof(CommonNumericTextBlock_SetCurrentValue) == 0x000004, "Wrong alignment on CommonNumericTextBlock_SetCurrentValue"); \ +static_assert(sizeof(CommonNumericTextBlock_SetCurrentValue) == 0x000004, "Wrong size on CommonNumericTextBlock_SetCurrentValue"); \ +static_assert(offsetof(CommonNumericTextBlock_SetCurrentValue, NewValue) == 0x000000, "Member 'CommonNumericTextBlock_SetCurrentValue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonNumericTextBlock_SetNumericType \ +static_assert(alignof(CommonNumericTextBlock_SetNumericType) == 0x000001, "Wrong alignment on CommonNumericTextBlock_SetNumericType"); \ +static_assert(sizeof(CommonNumericTextBlock_SetNumericType) == 0x000001, "Wrong size on CommonNumericTextBlock_SetNumericType"); \ +static_assert(offsetof(CommonNumericTextBlock_SetNumericType, InNumericType) == 0x000000, "Member 'CommonNumericTextBlock_SetNumericType::InNumericType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonNumericTextBlock_GetTargetValue \ +static_assert(alignof(CommonNumericTextBlock_GetTargetValue) == 0x000004, "Wrong alignment on CommonNumericTextBlock_GetTargetValue"); \ +static_assert(sizeof(CommonNumericTextBlock_GetTargetValue) == 0x000004, "Wrong size on CommonNumericTextBlock_GetTargetValue"); \ +static_assert(offsetof(CommonNumericTextBlock_GetTargetValue, ReturnValue) == 0x000000, "Member 'CommonNumericTextBlock_GetTargetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonNumericTextBlock_IsInterpolatingNumericValue \ +static_assert(alignof(CommonNumericTextBlock_IsInterpolatingNumericValue) == 0x000001, "Wrong alignment on CommonNumericTextBlock_IsInterpolatingNumericValue"); \ +static_assert(sizeof(CommonNumericTextBlock_IsInterpolatingNumericValue) == 0x000001, "Wrong size on CommonNumericTextBlock_IsInterpolatingNumericValue"); \ +static_assert(offsetof(CommonNumericTextBlock_IsInterpolatingNumericValue, ReturnValue) == 0x000000, "Member 'CommonNumericTextBlock_IsInterpolatingNumericValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonNumericTextBlock \ +static_assert(alignof(UCommonNumericTextBlock) == 0x000010, "Wrong alignment on UCommonNumericTextBlock"); \ +static_assert(sizeof(UCommonNumericTextBlock) == 0x000440, "Wrong size on UCommonNumericTextBlock"); \ +static_assert(offsetof(UCommonNumericTextBlock, OnInterpolationStartedEvent) == 0x000398, "Member 'UCommonNumericTextBlock::OnInterpolationStartedEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, OnInterpolationUpdatedEvent) == 0x0003A8, "Member 'UCommonNumericTextBlock::OnInterpolationUpdatedEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, OnOutroEvent) == 0x0003B8, "Member 'UCommonNumericTextBlock::OnOutroEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, OnInterpolationEndedEvent) == 0x0003C8, "Member 'UCommonNumericTextBlock::OnInterpolationEndedEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, CurrentNumericValue) == 0x0003D8, "Member 'UCommonNumericTextBlock::CurrentNumericValue' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, NumericType) == 0x0003DC, "Member 'UCommonNumericTextBlock::NumericType' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, FormattingSpecification) == 0x0003E0, "Member 'UCommonNumericTextBlock::FormattingSpecification' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, EaseOutInterpolationExponent) == 0x0003F4, "Member 'UCommonNumericTextBlock::EaseOutInterpolationExponent' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, InterpolationUpdateInterval) == 0x0003F8, "Member 'UCommonNumericTextBlock::InterpolationUpdateInterval' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, PostInterpolationShrinkDuration) == 0x0003FC, "Member 'UCommonNumericTextBlock::PostInterpolationShrinkDuration' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, PerformSizeInterpolation) == 0x000400, "Member 'UCommonNumericTextBlock::PerformSizeInterpolation' has a wrong offset!"); \ +static_assert(offsetof(UCommonNumericTextBlock, IsPercentage) == 0x000401, "Member 'UCommonNumericTextBlock::IsPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICommonPoolableWidgetInterface \ +static_assert(alignof(ICommonPoolableWidgetInterface) == 0x000001, "Wrong alignment on ICommonPoolableWidgetInterface"); \ +static_assert(sizeof(ICommonPoolableWidgetInterface) == 0x000001, "Wrong size on ICommonPoolableWidgetInterface"); \ + +#define DUMPER7_ASSERTS_CommonRichTextBlock_SetScrollingEnabled \ +static_assert(alignof(CommonRichTextBlock_SetScrollingEnabled) == 0x000001, "Wrong alignment on CommonRichTextBlock_SetScrollingEnabled"); \ +static_assert(sizeof(CommonRichTextBlock_SetScrollingEnabled) == 0x000001, "Wrong size on CommonRichTextBlock_SetScrollingEnabled"); \ +static_assert(offsetof(CommonRichTextBlock_SetScrollingEnabled, bInIsScrollingEnabled) == 0x000000, "Member 'CommonRichTextBlock_SetScrollingEnabled::bInIsScrollingEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonRichTextBlock \ +static_assert(alignof(UCommonRichTextBlock) == 0x000010, "Wrong alignment on UCommonRichTextBlock"); \ +static_assert(sizeof(UCommonRichTextBlock) == 0x0008E0, "Wrong size on UCommonRichTextBlock"); \ +static_assert(offsetof(UCommonRichTextBlock, InlineIconDisplayMode) == 0x0008A0, "Member 'UCommonRichTextBlock::InlineIconDisplayMode' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, bTintInlineIcon) == 0x0008A1, "Member 'UCommonRichTextBlock::bTintInlineIcon' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, DefaultTextStyleOverrideClass) == 0x0008A8, "Member 'UCommonRichTextBlock::DefaultTextStyleOverrideClass' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, MobileTextBlockScale) == 0x0008B0, "Member 'UCommonRichTextBlock::MobileTextBlockScale' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, ScrollStyle) == 0x0008B8, "Member 'UCommonRichTextBlock::ScrollStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, bIsScrollingEnabled) == 0x0008C0, "Member 'UCommonRichTextBlock::bIsScrollingEnabled' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, bDisplayAllCaps) == 0x0008C1, "Member 'UCommonRichTextBlock::bDisplayAllCaps' has a wrong offset!"); \ +static_assert(offsetof(UCommonRichTextBlock, bAutoCollapseWithEmptyText) == 0x0008C2, "Member 'UCommonRichTextBlock::bAutoCollapseWithEmptyText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_BP_OnOptionSelected \ +static_assert(alignof(CommonRotator_BP_OnOptionSelected) == 0x000004, "Wrong alignment on CommonRotator_BP_OnOptionSelected"); \ +static_assert(sizeof(CommonRotator_BP_OnOptionSelected) == 0x000004, "Wrong size on CommonRotator_BP_OnOptionSelected"); \ +static_assert(offsetof(CommonRotator_BP_OnOptionSelected, Index_0) == 0x000000, "Member 'CommonRotator_BP_OnOptionSelected::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_BP_OnOptionsPopulated \ +static_assert(alignof(CommonRotator_BP_OnOptionsPopulated) == 0x000004, "Wrong alignment on CommonRotator_BP_OnOptionsPopulated"); \ +static_assert(sizeof(CommonRotator_BP_OnOptionsPopulated) == 0x000004, "Wrong size on CommonRotator_BP_OnOptionsPopulated"); \ +static_assert(offsetof(CommonRotator_BP_OnOptionsPopulated, Count) == 0x000000, "Member 'CommonRotator_BP_OnOptionsPopulated::Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_PopulateTextLabels \ +static_assert(alignof(CommonRotator_PopulateTextLabels) == 0x000008, "Wrong alignment on CommonRotator_PopulateTextLabels"); \ +static_assert(sizeof(CommonRotator_PopulateTextLabels) == 0x000010, "Wrong size on CommonRotator_PopulateTextLabels"); \ +static_assert(offsetof(CommonRotator_PopulateTextLabels, Labels) == 0x000000, "Member 'CommonRotator_PopulateTextLabels::Labels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_SetSelectedItem \ +static_assert(alignof(CommonRotator_SetSelectedItem) == 0x000004, "Wrong alignment on CommonRotator_SetSelectedItem"); \ +static_assert(sizeof(CommonRotator_SetSelectedItem) == 0x000004, "Wrong size on CommonRotator_SetSelectedItem"); \ +static_assert(offsetof(CommonRotator_SetSelectedItem, InValue) == 0x000000, "Member 'CommonRotator_SetSelectedItem::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_GetSelectedIndex \ +static_assert(alignof(CommonRotator_GetSelectedIndex) == 0x000004, "Wrong alignment on CommonRotator_GetSelectedIndex"); \ +static_assert(sizeof(CommonRotator_GetSelectedIndex) == 0x000004, "Wrong size on CommonRotator_GetSelectedIndex"); \ +static_assert(offsetof(CommonRotator_GetSelectedIndex, ReturnValue) == 0x000000, "Member 'CommonRotator_GetSelectedIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonRotator_GetSelectedText \ +static_assert(alignof(CommonRotator_GetSelectedText) == 0x000008, "Wrong alignment on CommonRotator_GetSelectedText"); \ +static_assert(sizeof(CommonRotator_GetSelectedText) == 0x000018, "Wrong size on CommonRotator_GetSelectedText"); \ +static_assert(offsetof(CommonRotator_GetSelectedText, ReturnValue) == 0x000000, "Member 'CommonRotator_GetSelectedText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonRotator \ +static_assert(alignof(UCommonRotator) == 0x000010, "Wrong alignment on UCommonRotator"); \ +static_assert(sizeof(UCommonRotator) == 0x0015E0, "Wrong size on UCommonRotator"); \ +static_assert(offsetof(UCommonRotator, OnRotated) == 0x001590, "Member 'UCommonRotator::OnRotated' has a wrong offset!"); \ +static_assert(offsetof(UCommonRotator, MyText) == 0x0015B8, "Member 'UCommonRotator::MyText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_DisableTabWithReason \ +static_assert(alignof(CommonTabListWidgetBase_DisableTabWithReason) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_DisableTabWithReason"); \ +static_assert(sizeof(CommonTabListWidgetBase_DisableTabWithReason) == 0x000020, "Wrong size on CommonTabListWidgetBase_DisableTabWithReason"); \ +static_assert(offsetof(CommonTabListWidgetBase_DisableTabWithReason, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_DisableTabWithReason::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_DisableTabWithReason, Reason) == 0x000008, "Member 'CommonTabListWidgetBase_DisableTabWithReason::Reason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_HandleNextTabInputAction \ +static_assert(alignof(CommonTabListWidgetBase_HandleNextTabInputAction) == 0x000001, "Wrong alignment on CommonTabListWidgetBase_HandleNextTabInputAction"); \ +static_assert(sizeof(CommonTabListWidgetBase_HandleNextTabInputAction) == 0x000001, "Wrong size on CommonTabListWidgetBase_HandleNextTabInputAction"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleNextTabInputAction, bPassThrough) == 0x000000, "Member 'CommonTabListWidgetBase_HandleNextTabInputAction::bPassThrough' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_HandlePreviousTabInputAction \ +static_assert(alignof(CommonTabListWidgetBase_HandlePreviousTabInputAction) == 0x000001, "Wrong alignment on CommonTabListWidgetBase_HandlePreviousTabInputAction"); \ +static_assert(sizeof(CommonTabListWidgetBase_HandlePreviousTabInputAction) == 0x000001, "Wrong size on CommonTabListWidgetBase_HandlePreviousTabInputAction"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandlePreviousTabInputAction, bPassThrough) == 0x000000, "Member 'CommonTabListWidgetBase_HandlePreviousTabInputAction::bPassThrough' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_HandleTabButtonSelected \ +static_assert(alignof(CommonTabListWidgetBase_HandleTabButtonSelected) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_HandleTabButtonSelected"); \ +static_assert(sizeof(CommonTabListWidgetBase_HandleTabButtonSelected) == 0x000010, "Wrong size on CommonTabListWidgetBase_HandleTabButtonSelected"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabButtonSelected, SelectedTabButton) == 0x000000, "Member 'CommonTabListWidgetBase_HandleTabButtonSelected::SelectedTabButton' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabButtonSelected, ButtonIndex) == 0x000008, "Member 'CommonTabListWidgetBase_HandleTabButtonSelected::ButtonIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_HandleTabCreation \ +static_assert(alignof(CommonTabListWidgetBase_HandleTabCreation) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_HandleTabCreation"); \ +static_assert(sizeof(CommonTabListWidgetBase_HandleTabCreation) == 0x000010, "Wrong size on CommonTabListWidgetBase_HandleTabCreation"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabCreation, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_HandleTabCreation::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabCreation, TabButton) == 0x000008, "Member 'CommonTabListWidgetBase_HandleTabCreation::TabButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_HandleTabRemoval \ +static_assert(alignof(CommonTabListWidgetBase_HandleTabRemoval) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_HandleTabRemoval"); \ +static_assert(sizeof(CommonTabListWidgetBase_HandleTabRemoval) == 0x000010, "Wrong size on CommonTabListWidgetBase_HandleTabRemoval"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabRemoval, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_HandleTabRemoval::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_HandleTabRemoval, TabButton) == 0x000008, "Member 'CommonTabListWidgetBase_HandleTabRemoval::TabButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_RegisterTab \ +static_assert(alignof(CommonTabListWidgetBase_RegisterTab) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_RegisterTab"); \ +static_assert(sizeof(CommonTabListWidgetBase_RegisterTab) == 0x000020, "Wrong size on CommonTabListWidgetBase_RegisterTab"); \ +static_assert(offsetof(CommonTabListWidgetBase_RegisterTab, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_RegisterTab::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_RegisterTab, ButtonWidgetType) == 0x000008, "Member 'CommonTabListWidgetBase_RegisterTab::ButtonWidgetType' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_RegisterTab, ContentWidget) == 0x000010, "Member 'CommonTabListWidgetBase_RegisterTab::ContentWidget' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_RegisterTab, TabIndex) == 0x000018, "Member 'CommonTabListWidgetBase_RegisterTab::TabIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_RegisterTab, ReturnValue) == 0x00001C, "Member 'CommonTabListWidgetBase_RegisterTab::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_RemoveTab \ +static_assert(alignof(CommonTabListWidgetBase_RemoveTab) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_RemoveTab"); \ +static_assert(sizeof(CommonTabListWidgetBase_RemoveTab) == 0x00000C, "Wrong size on CommonTabListWidgetBase_RemoveTab"); \ +static_assert(offsetof(CommonTabListWidgetBase_RemoveTab, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_RemoveTab::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_RemoveTab, ReturnValue) == 0x000008, "Member 'CommonTabListWidgetBase_RemoveTab::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SelectTabByID \ +static_assert(alignof(CommonTabListWidgetBase_SelectTabByID) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_SelectTabByID"); \ +static_assert(sizeof(CommonTabListWidgetBase_SelectTabByID) == 0x00000C, "Wrong size on CommonTabListWidgetBase_SelectTabByID"); \ +static_assert(offsetof(CommonTabListWidgetBase_SelectTabByID, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_SelectTabByID::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_SelectTabByID, bSuppressClickFeedback) == 0x000008, "Member 'CommonTabListWidgetBase_SelectTabByID::bSuppressClickFeedback' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_SelectTabByID, ReturnValue) == 0x000009, "Member 'CommonTabListWidgetBase_SelectTabByID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SetLinkedSwitcher \ +static_assert(alignof(CommonTabListWidgetBase_SetLinkedSwitcher) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_SetLinkedSwitcher"); \ +static_assert(sizeof(CommonTabListWidgetBase_SetLinkedSwitcher) == 0x000008, "Wrong size on CommonTabListWidgetBase_SetLinkedSwitcher"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetLinkedSwitcher, CommonSwitcher) == 0x000000, "Member 'CommonTabListWidgetBase_SetLinkedSwitcher::CommonSwitcher' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SetListeningForInput \ +static_assert(alignof(CommonTabListWidgetBase_SetListeningForInput) == 0x000001, "Wrong alignment on CommonTabListWidgetBase_SetListeningForInput"); \ +static_assert(sizeof(CommonTabListWidgetBase_SetListeningForInput) == 0x000001, "Wrong size on CommonTabListWidgetBase_SetListeningForInput"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetListeningForInput, bShouldListen) == 0x000000, "Member 'CommonTabListWidgetBase_SetListeningForInput::bShouldListen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SetTabEnabled \ +static_assert(alignof(CommonTabListWidgetBase_SetTabEnabled) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_SetTabEnabled"); \ +static_assert(sizeof(CommonTabListWidgetBase_SetTabEnabled) == 0x00000C, "Wrong size on CommonTabListWidgetBase_SetTabEnabled"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabEnabled, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_SetTabEnabled::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabEnabled, bEnable) == 0x000008, "Member 'CommonTabListWidgetBase_SetTabEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SetTabInteractionEnabled \ +static_assert(alignof(CommonTabListWidgetBase_SetTabInteractionEnabled) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_SetTabInteractionEnabled"); \ +static_assert(sizeof(CommonTabListWidgetBase_SetTabInteractionEnabled) == 0x00000C, "Wrong size on CommonTabListWidgetBase_SetTabInteractionEnabled"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabInteractionEnabled, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_SetTabInteractionEnabled::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabInteractionEnabled, bEnable) == 0x000008, "Member 'CommonTabListWidgetBase_SetTabInteractionEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_SetTabVisibility \ +static_assert(alignof(CommonTabListWidgetBase_SetTabVisibility) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_SetTabVisibility"); \ +static_assert(sizeof(CommonTabListWidgetBase_SetTabVisibility) == 0x00000C, "Wrong size on CommonTabListWidgetBase_SetTabVisibility"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabVisibility, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_SetTabVisibility::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_SetTabVisibility, NewVisibility) == 0x000008, "Member 'CommonTabListWidgetBase_SetTabVisibility::NewVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetActiveTab \ +static_assert(alignof(CommonTabListWidgetBase_GetActiveTab) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_GetActiveTab"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetActiveTab) == 0x000008, "Wrong size on CommonTabListWidgetBase_GetActiveTab"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetActiveTab, ReturnValue) == 0x000000, "Member 'CommonTabListWidgetBase_GetActiveTab::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetLinkedSwitcher \ +static_assert(alignof(CommonTabListWidgetBase_GetLinkedSwitcher) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_GetLinkedSwitcher"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetLinkedSwitcher) == 0x000008, "Wrong size on CommonTabListWidgetBase_GetLinkedSwitcher"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetLinkedSwitcher, ReturnValue) == 0x000000, "Member 'CommonTabListWidgetBase_GetLinkedSwitcher::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetSelectedTabId \ +static_assert(alignof(CommonTabListWidgetBase_GetSelectedTabId) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_GetSelectedTabId"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetSelectedTabId) == 0x000008, "Wrong size on CommonTabListWidgetBase_GetSelectedTabId"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetSelectedTabId, ReturnValue) == 0x000000, "Member 'CommonTabListWidgetBase_GetSelectedTabId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetTabButtonBaseByID \ +static_assert(alignof(CommonTabListWidgetBase_GetTabButtonBaseByID) == 0x000008, "Wrong alignment on CommonTabListWidgetBase_GetTabButtonBaseByID"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetTabButtonBaseByID) == 0x000010, "Wrong size on CommonTabListWidgetBase_GetTabButtonBaseByID"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetTabButtonBaseByID, TabNameID) == 0x000000, "Member 'CommonTabListWidgetBase_GetTabButtonBaseByID::TabNameID' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetTabButtonBaseByID, ReturnValue) == 0x000008, "Member 'CommonTabListWidgetBase_GetTabButtonBaseByID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetTabCount \ +static_assert(alignof(CommonTabListWidgetBase_GetTabCount) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_GetTabCount"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetTabCount) == 0x000004, "Wrong size on CommonTabListWidgetBase_GetTabCount"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetTabCount, ReturnValue) == 0x000000, "Member 'CommonTabListWidgetBase_GetTabCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTabListWidgetBase_GetTabIdAtIndex \ +static_assert(alignof(CommonTabListWidgetBase_GetTabIdAtIndex) == 0x000004, "Wrong alignment on CommonTabListWidgetBase_GetTabIdAtIndex"); \ +static_assert(sizeof(CommonTabListWidgetBase_GetTabIdAtIndex) == 0x00000C, "Wrong size on CommonTabListWidgetBase_GetTabIdAtIndex"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetTabIdAtIndex, Index_0) == 0x000000, "Member 'CommonTabListWidgetBase_GetTabIdAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(CommonTabListWidgetBase_GetTabIdAtIndex, ReturnValue) == 0x000004, "Member 'CommonTabListWidgetBase_GetTabIdAtIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTabListWidgetBase \ +static_assert(alignof(UCommonTabListWidgetBase) == 0x000008, "Wrong alignment on UCommonTabListWidgetBase"); \ +static_assert(sizeof(UCommonTabListWidgetBase) == 0x0003E0, "Wrong size on UCommonTabListWidgetBase"); \ +static_assert(offsetof(UCommonTabListWidgetBase, OnTabSelected) == 0x0002E8, "Member 'UCommonTabListWidgetBase::OnTabSelected' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, OnTabButtonCreation) == 0x0002F8, "Member 'UCommonTabListWidgetBase::OnTabButtonCreation' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, OnTabButtonRemoval) == 0x000308, "Member 'UCommonTabListWidgetBase::OnTabButtonRemoval' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, OnTabListRebuilt) == 0x000318, "Member 'UCommonTabListWidgetBase::OnTabListRebuilt' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, NextTabInputActionData) == 0x000328, "Member 'UCommonTabListWidgetBase::NextTabInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, PreviousTabInputActionData) == 0x000338, "Member 'UCommonTabListWidgetBase::PreviousTabInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, NextTabEnhancedInputAction) == 0x000348, "Member 'UCommonTabListWidgetBase::NextTabEnhancedInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, PreviousTabEnhancedInputAction) == 0x000350, "Member 'UCommonTabListWidgetBase::PreviousTabEnhancedInputAction' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, bAutoListenForInput) == 0x000358, "Member 'UCommonTabListWidgetBase::bAutoListenForInput' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, bDeferRebuildingTabList) == 0x000359, "Member 'UCommonTabListWidgetBase::bDeferRebuildingTabList' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, LinkedSwitcher) == 0x00035C, "Member 'UCommonTabListWidgetBase::LinkedSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, TabButtonGroup) == 0x000368, "Member 'UCommonTabListWidgetBase::TabButtonGroup' has a wrong offset!"); \ +static_assert(offsetof(UCommonTabListWidgetBase, RegisteredTabsByID) == 0x000378, "Member 'UCommonTabListWidgetBase::RegisteredTabsByID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetColor \ +static_assert(alignof(CommonTextStyle_GetColor) == 0x000004, "Wrong alignment on CommonTextStyle_GetColor"); \ +static_assert(sizeof(CommonTextStyle_GetColor) == 0x000010, "Wrong size on CommonTextStyle_GetColor"); \ +static_assert(offsetof(CommonTextStyle_GetColor, OutColor) == 0x000000, "Member 'CommonTextStyle_GetColor::OutColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetFont \ +static_assert(alignof(CommonTextStyle_GetFont) == 0x000008, "Wrong alignment on CommonTextStyle_GetFont"); \ +static_assert(sizeof(CommonTextStyle_GetFont) == 0x000058, "Wrong size on CommonTextStyle_GetFont"); \ +static_assert(offsetof(CommonTextStyle_GetFont, OutFont) == 0x000000, "Member 'CommonTextStyle_GetFont::OutFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetLineHeightPercentage \ +static_assert(alignof(CommonTextStyle_GetLineHeightPercentage) == 0x000004, "Wrong alignment on CommonTextStyle_GetLineHeightPercentage"); \ +static_assert(sizeof(CommonTextStyle_GetLineHeightPercentage) == 0x000004, "Wrong size on CommonTextStyle_GetLineHeightPercentage"); \ +static_assert(offsetof(CommonTextStyle_GetLineHeightPercentage, ReturnValue) == 0x000000, "Member 'CommonTextStyle_GetLineHeightPercentage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetMargin \ +static_assert(alignof(CommonTextStyle_GetMargin) == 0x000004, "Wrong alignment on CommonTextStyle_GetMargin"); \ +static_assert(sizeof(CommonTextStyle_GetMargin) == 0x000010, "Wrong size on CommonTextStyle_GetMargin"); \ +static_assert(offsetof(CommonTextStyle_GetMargin, OutMargin) == 0x000000, "Member 'CommonTextStyle_GetMargin::OutMargin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetShadowColor \ +static_assert(alignof(CommonTextStyle_GetShadowColor) == 0x000004, "Wrong alignment on CommonTextStyle_GetShadowColor"); \ +static_assert(sizeof(CommonTextStyle_GetShadowColor) == 0x000010, "Wrong size on CommonTextStyle_GetShadowColor"); \ +static_assert(offsetof(CommonTextStyle_GetShadowColor, OutColor) == 0x000000, "Member 'CommonTextStyle_GetShadowColor::OutColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetShadowOffset \ +static_assert(alignof(CommonTextStyle_GetShadowOffset) == 0x000008, "Wrong alignment on CommonTextStyle_GetShadowOffset"); \ +static_assert(sizeof(CommonTextStyle_GetShadowOffset) == 0x000010, "Wrong size on CommonTextStyle_GetShadowOffset"); \ +static_assert(offsetof(CommonTextStyle_GetShadowOffset, OutShadowOffset) == 0x000000, "Member 'CommonTextStyle_GetShadowOffset::OutShadowOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonTextStyle_GetStrikeBrush \ +static_assert(alignof(CommonTextStyle_GetStrikeBrush) == 0x000010, "Wrong alignment on CommonTextStyle_GetStrikeBrush"); \ +static_assert(sizeof(CommonTextStyle_GetStrikeBrush) == 0x0000D0, "Wrong size on CommonTextStyle_GetStrikeBrush"); \ +static_assert(offsetof(CommonTextStyle_GetStrikeBrush, OutStrikeBrush) == 0x000000, "Member 'CommonTextStyle_GetStrikeBrush::OutStrikeBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyle \ +static_assert(alignof(UCommonTextStyle) == 0x000010, "Wrong alignment on UCommonTextStyle"); \ +static_assert(sizeof(UCommonTextStyle) == 0x0001B0, "Wrong size on UCommonTextStyle"); \ +static_assert(offsetof(UCommonTextStyle, Font) == 0x000028, "Member 'UCommonTextStyle::Font' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, Color) == 0x000080, "Member 'UCommonTextStyle::Color' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, bUsesDropShadow) == 0x000090, "Member 'UCommonTextStyle::bUsesDropShadow' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, ShadowOffset) == 0x000098, "Member 'UCommonTextStyle::ShadowOffset' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, ShadowColor) == 0x0000A8, "Member 'UCommonTextStyle::ShadowColor' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, Margin) == 0x0000B8, "Member 'UCommonTextStyle::Margin' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, StrikeBrush) == 0x0000D0, "Member 'UCommonTextStyle::StrikeBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextStyle, LineHeightPercentage) == 0x0001A0, "Member 'UCommonTextStyle::LineHeightPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextScrollStyle \ +static_assert(alignof(UCommonTextScrollStyle) == 0x000008, "Wrong alignment on UCommonTextScrollStyle"); \ +static_assert(sizeof(UCommonTextScrollStyle) == 0x000040, "Wrong size on UCommonTextScrollStyle"); \ +static_assert(offsetof(UCommonTextScrollStyle, Speed) == 0x000028, "Member 'UCommonTextScrollStyle::Speed' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextScrollStyle, StartDelay) == 0x00002C, "Member 'UCommonTextScrollStyle::StartDelay' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextScrollStyle, EndDelay) == 0x000030, "Member 'UCommonTextScrollStyle::EndDelay' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextScrollStyle, FadeInDelay) == 0x000034, "Member 'UCommonTextScrollStyle::FadeInDelay' has a wrong offset!"); \ +static_assert(offsetof(UCommonTextScrollStyle, FadeOutDelay) == 0x000038, "Member 'UCommonTextScrollStyle::FadeOutDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTileView \ +static_assert(alignof(UCommonTileView) == 0x000010, "Wrong alignment on UCommonTileView"); \ +static_assert(sizeof(UCommonTileView) == 0x000CA0, "Wrong size on UCommonTileView"); \ + +#define DUMPER7_ASSERTS_UCommonTreeView \ +static_assert(alignof(UCommonTreeView) == 0x000010, "Wrong alignment on UCommonTreeView"); \ +static_assert(sizeof(UCommonTreeView) == 0x000CD0, "Wrong size on UCommonTreeView"); \ + +#define DUMPER7_ASSERTS_UCommonUIEditorSettings \ +static_assert(alignof(UCommonUIEditorSettings) == 0x000008, "Wrong alignment on UCommonUIEditorSettings"); \ +static_assert(sizeof(UCommonUIEditorSettings) == 0x0000A8, "Wrong size on UCommonUIEditorSettings"); \ +static_assert(offsetof(UCommonUIEditorSettings, TemplateTextStyle) == 0x000028, "Member 'UCommonUIEditorSettings::TemplateTextStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIEditorSettings, TemplateButtonStyle) == 0x000050, "Member 'UCommonUIEditorSettings::TemplateButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIEditorSettings, TemplateBorderStyle) == 0x000078, "Member 'UCommonUIEditorSettings::TemplateBorderStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUILibrary_FindParentWidgetOfType \ +static_assert(alignof(CommonUILibrary_FindParentWidgetOfType) == 0x000008, "Wrong alignment on CommonUILibrary_FindParentWidgetOfType"); \ +static_assert(sizeof(CommonUILibrary_FindParentWidgetOfType) == 0x000018, "Wrong size on CommonUILibrary_FindParentWidgetOfType"); \ +static_assert(offsetof(CommonUILibrary_FindParentWidgetOfType, StartingWidget) == 0x000000, "Member 'CommonUILibrary_FindParentWidgetOfType::StartingWidget' has a wrong offset!"); \ +static_assert(offsetof(CommonUILibrary_FindParentWidgetOfType, Type) == 0x000008, "Member 'CommonUILibrary_FindParentWidgetOfType::Type' has a wrong offset!"); \ +static_assert(offsetof(CommonUILibrary_FindParentWidgetOfType, ReturnValue) == 0x000010, "Member 'CommonUILibrary_FindParentWidgetOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUILibrary \ +static_assert(alignof(UCommonUILibrary) == 0x000008, "Wrong alignment on UCommonUILibrary"); \ +static_assert(sizeof(UCommonUILibrary) == 0x000028, "Wrong size on UCommonUILibrary"); \ + +#define DUMPER7_ASSERTS_UCommonUIRichTextData \ +static_assert(alignof(UCommonUIRichTextData) == 0x000008, "Wrong alignment on UCommonUIRichTextData"); \ +static_assert(sizeof(UCommonUIRichTextData) == 0x000030, "Wrong size on UCommonUIRichTextData"); \ +static_assert(offsetof(UCommonUIRichTextData, InlineIconSet) == 0x000028, "Member 'UCommonUIRichTextData::InlineIconSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUISettings \ +static_assert(alignof(UCommonUISettings) == 0x000010, "Wrong alignment on UCommonUISettings"); \ +static_assert(sizeof(UCommonUISettings) == 0x0001D0, "Wrong size on UCommonUISettings"); \ +static_assert(offsetof(UCommonUISettings, bAutoLoadData) == 0x000028, "Member 'UCommonUISettings::bAutoLoadData' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultImageResourceObject) == 0x000030, "Member 'UCommonUISettings::DefaultImageResourceObject' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultThrobberMaterial) == 0x000058, "Member 'UCommonUISettings::DefaultThrobberMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultRichTextDataClass) == 0x000080, "Member 'UCommonUISettings::DefaultRichTextDataClass' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, PlatformTraits) == 0x0000A8, "Member 'UCommonUISettings::PlatformTraits' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultImageResourceObjectInstance) == 0x0000E0, "Member 'UCommonUISettings::DefaultImageResourceObjectInstance' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultThrobberMaterialInstance) == 0x0000E8, "Member 'UCommonUISettings::DefaultThrobberMaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, DefaultThrobberBrush) == 0x0000F0, "Member 'UCommonUISettings::DefaultThrobberBrush' has a wrong offset!"); \ +static_assert(offsetof(UCommonUISettings, RichTextDataInstance) == 0x0001C0, "Member 'UCommonUISettings::RichTextDataInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUISubsystemBase_GetEnhancedInputActionButtonIcon \ +static_assert(alignof(CommonUISubsystemBase_GetEnhancedInputActionButtonIcon) == 0x000010, "Wrong alignment on CommonUISubsystemBase_GetEnhancedInputActionButtonIcon"); \ +static_assert(sizeof(CommonUISubsystemBase_GetEnhancedInputActionButtonIcon) == 0x0000E0, "Wrong size on CommonUISubsystemBase_GetEnhancedInputActionButtonIcon"); \ +static_assert(offsetof(CommonUISubsystemBase_GetEnhancedInputActionButtonIcon, InputAction) == 0x000000, "Member 'CommonUISubsystemBase_GetEnhancedInputActionButtonIcon::InputAction' has a wrong offset!"); \ +static_assert(offsetof(CommonUISubsystemBase_GetEnhancedInputActionButtonIcon, LocalPlayer) == 0x000008, "Member 'CommonUISubsystemBase_GetEnhancedInputActionButtonIcon::LocalPlayer' has a wrong offset!"); \ +static_assert(offsetof(CommonUISubsystemBase_GetEnhancedInputActionButtonIcon, ReturnValue) == 0x000010, "Member 'CommonUISubsystemBase_GetEnhancedInputActionButtonIcon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUISubsystemBase_GetInputActionButtonIcon \ +static_assert(alignof(CommonUISubsystemBase_GetInputActionButtonIcon) == 0x000010, "Wrong alignment on CommonUISubsystemBase_GetInputActionButtonIcon"); \ +static_assert(sizeof(CommonUISubsystemBase_GetInputActionButtonIcon) == 0x0000F0, "Wrong size on CommonUISubsystemBase_GetInputActionButtonIcon"); \ +static_assert(offsetof(CommonUISubsystemBase_GetInputActionButtonIcon, InputActionRowHandle) == 0x000000, "Member 'CommonUISubsystemBase_GetInputActionButtonIcon::InputActionRowHandle' has a wrong offset!"); \ +static_assert(offsetof(CommonUISubsystemBase_GetInputActionButtonIcon, InputType) == 0x000010, "Member 'CommonUISubsystemBase_GetInputActionButtonIcon::InputType' has a wrong offset!"); \ +static_assert(offsetof(CommonUISubsystemBase_GetInputActionButtonIcon, GamepadName) == 0x000014, "Member 'CommonUISubsystemBase_GetInputActionButtonIcon::GamepadName' has a wrong offset!"); \ +static_assert(offsetof(CommonUISubsystemBase_GetInputActionButtonIcon, ReturnValue) == 0x000020, "Member 'CommonUISubsystemBase_GetInputActionButtonIcon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUISubsystemBase \ +static_assert(alignof(UCommonUISubsystemBase) == 0x000008, "Wrong alignment on UCommonUISubsystemBase"); \ +static_assert(sizeof(UCommonUISubsystemBase) == 0x000040, "Wrong size on UCommonUISubsystemBase"); \ + +#define DUMPER7_ASSERTS_UCommonInputMetadata \ +static_assert(alignof(UCommonInputMetadata) == 0x000008, "Wrong alignment on UCommonInputMetadata"); \ +static_assert(sizeof(UCommonInputMetadata) == 0x000030, "Wrong size on UCommonInputMetadata"); \ +static_assert(offsetof(UCommonInputMetadata, NavBarPriority) == 0x000028, "Member 'UCommonInputMetadata::NavBarPriority' has a wrong offset!"); \ +static_assert(offsetof(UCommonInputMetadata, bIsGenericInputAction) == 0x00002C, "Member 'UCommonInputMetadata::bIsGenericInputAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICommonMappingContextMetadataInterface \ +static_assert(alignof(ICommonMappingContextMetadataInterface) == 0x000001, "Wrong alignment on ICommonMappingContextMetadataInterface"); \ +static_assert(sizeof(ICommonMappingContextMetadataInterface) == 0x000001, "Wrong size on ICommonMappingContextMetadataInterface"); \ + +#define DUMPER7_ASSERTS_UCommonMappingContextMetadata \ +static_assert(alignof(UCommonMappingContextMetadata) == 0x000008, "Wrong alignment on UCommonMappingContextMetadata"); \ +static_assert(sizeof(UCommonMappingContextMetadata) == 0x000090, "Wrong size on UCommonMappingContextMetadata"); \ +static_assert(offsetof(UCommonMappingContextMetadata, EnhancedInputMetadata) == 0x000038, "Member 'UCommonMappingContextMetadata::EnhancedInputMetadata' has a wrong offset!"); \ +static_assert(offsetof(UCommonMappingContextMetadata, PerActionEnhancedInputMetadata) == 0x000040, "Member 'UCommonMappingContextMetadata::PerActionEnhancedInputMetadata' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUIVisibilitySubsystem \ +static_assert(alignof(UCommonUIVisibilitySubsystem) == 0x000008, "Wrong alignment on UCommonUIVisibilitySubsystem"); \ +static_assert(sizeof(UCommonUIVisibilitySubsystem) == 0x000088, "Wrong size on UCommonUIVisibilitySubsystem"); \ + +#define DUMPER7_ASSERTS_UCommonVideoPlayer \ +static_assert(alignof(UCommonVideoPlayer) == 0x000010, "Wrong alignment on UCommonVideoPlayer"); \ +static_assert(sizeof(UCommonVideoPlayer) == 0x0002E0, "Wrong size on UCommonVideoPlayer"); \ +static_assert(offsetof(UCommonVideoPlayer, Video) == 0x000180, "Member 'UCommonVideoPlayer::Video' has a wrong offset!"); \ +static_assert(offsetof(UCommonVideoPlayer, MediaPlayer) == 0x000188, "Member 'UCommonVideoPlayer::MediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(UCommonVideoPlayer, MediaTexture) == 0x000190, "Member 'UCommonVideoPlayer::MediaTexture' has a wrong offset!"); \ +static_assert(offsetof(UCommonVideoPlayer, VideoMaterial) == 0x000198, "Member 'UCommonVideoPlayer::VideoMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCommonVideoPlayer, SoundComponent) == 0x0001A0, "Member 'UCommonVideoPlayer::SoundComponent' has a wrong offset!"); \ +static_assert(offsetof(UCommonVideoPlayer, VideoBrush) == 0x0001B0, "Member 'UCommonVideoPlayer::VideoBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_DecrementActiveWidgetIndex \ +static_assert(alignof(CommonVisibilitySwitcher_DecrementActiveWidgetIndex) == 0x000001, "Wrong alignment on CommonVisibilitySwitcher_DecrementActiveWidgetIndex"); \ +static_assert(sizeof(CommonVisibilitySwitcher_DecrementActiveWidgetIndex) == 0x000001, "Wrong size on CommonVisibilitySwitcher_DecrementActiveWidgetIndex"); \ +static_assert(offsetof(CommonVisibilitySwitcher_DecrementActiveWidgetIndex, bAllowWrapping) == 0x000000, "Member 'CommonVisibilitySwitcher_DecrementActiveWidgetIndex::bAllowWrapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_IncrementActiveWidgetIndex \ +static_assert(alignof(CommonVisibilitySwitcher_IncrementActiveWidgetIndex) == 0x000001, "Wrong alignment on CommonVisibilitySwitcher_IncrementActiveWidgetIndex"); \ +static_assert(sizeof(CommonVisibilitySwitcher_IncrementActiveWidgetIndex) == 0x000001, "Wrong size on CommonVisibilitySwitcher_IncrementActiveWidgetIndex"); \ +static_assert(offsetof(CommonVisibilitySwitcher_IncrementActiveWidgetIndex, bAllowWrapping) == 0x000000, "Member 'CommonVisibilitySwitcher_IncrementActiveWidgetIndex::bAllowWrapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_SetActiveWidget \ +static_assert(alignof(CommonVisibilitySwitcher_SetActiveWidget) == 0x000008, "Wrong alignment on CommonVisibilitySwitcher_SetActiveWidget"); \ +static_assert(sizeof(CommonVisibilitySwitcher_SetActiveWidget) == 0x000008, "Wrong size on CommonVisibilitySwitcher_SetActiveWidget"); \ +static_assert(offsetof(CommonVisibilitySwitcher_SetActiveWidget, Widget) == 0x000000, "Member 'CommonVisibilitySwitcher_SetActiveWidget::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_SetActiveWidgetIndex \ +static_assert(alignof(CommonVisibilitySwitcher_SetActiveWidgetIndex) == 0x000004, "Wrong alignment on CommonVisibilitySwitcher_SetActiveWidgetIndex"); \ +static_assert(sizeof(CommonVisibilitySwitcher_SetActiveWidgetIndex) == 0x000004, "Wrong size on CommonVisibilitySwitcher_SetActiveWidgetIndex"); \ +static_assert(offsetof(CommonVisibilitySwitcher_SetActiveWidgetIndex, Index_0) == 0x000000, "Member 'CommonVisibilitySwitcher_SetActiveWidgetIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_GetActiveWidget \ +static_assert(alignof(CommonVisibilitySwitcher_GetActiveWidget) == 0x000008, "Wrong alignment on CommonVisibilitySwitcher_GetActiveWidget"); \ +static_assert(sizeof(CommonVisibilitySwitcher_GetActiveWidget) == 0x000008, "Wrong size on CommonVisibilitySwitcher_GetActiveWidget"); \ +static_assert(offsetof(CommonVisibilitySwitcher_GetActiveWidget, ReturnValue) == 0x000000, "Member 'CommonVisibilitySwitcher_GetActiveWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonVisibilitySwitcher_GetActiveWidgetIndex \ +static_assert(alignof(CommonVisibilitySwitcher_GetActiveWidgetIndex) == 0x000004, "Wrong alignment on CommonVisibilitySwitcher_GetActiveWidgetIndex"); \ +static_assert(sizeof(CommonVisibilitySwitcher_GetActiveWidgetIndex) == 0x000004, "Wrong size on CommonVisibilitySwitcher_GetActiveWidgetIndex"); \ +static_assert(offsetof(CommonVisibilitySwitcher_GetActiveWidgetIndex, ReturnValue) == 0x000000, "Member 'CommonVisibilitySwitcher_GetActiveWidgetIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonVisibilitySwitcher \ +static_assert(alignof(UCommonVisibilitySwitcher) == 0x000008, "Wrong alignment on UCommonVisibilitySwitcher"); \ +static_assert(sizeof(UCommonVisibilitySwitcher) == 0x0001D0, "Wrong size on UCommonVisibilitySwitcher"); \ +static_assert(offsetof(UCommonVisibilitySwitcher, ShownVisibility) == 0x0001A8, "Member 'UCommonVisibilitySwitcher::ShownVisibility' has a wrong offset!"); \ +static_assert(offsetof(UCommonVisibilitySwitcher, ActiveWidgetIndex) == 0x0001AC, "Member 'UCommonVisibilitySwitcher::ActiveWidgetIndex' has a wrong offset!"); \ +static_assert(offsetof(UCommonVisibilitySwitcher, bAutoActivateSlot) == 0x0001B0, "Member 'UCommonVisibilitySwitcher::bAutoActivateSlot' has a wrong offset!"); \ +static_assert(offsetof(UCommonVisibilitySwitcher, bActivateFirstSlotOnAdding) == 0x0001B1, "Member 'UCommonVisibilitySwitcher::bActivateFirstSlotOnAdding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonVisibilitySwitcherSlot \ +static_assert(alignof(UCommonVisibilitySwitcherSlot) == 0x000008, "Wrong alignment on UCommonVisibilitySwitcherSlot"); \ +static_assert(sizeof(UCommonVisibilitySwitcherSlot) == 0x000068, "Wrong size on UCommonVisibilitySwitcherSlot"); \ + +#define DUMPER7_ASSERTS_UCommonVisibilityWidgetBase_GetRegisteredPlatforms \ +static_assert(alignof(UCommonVisibilityWidgetBase_GetRegisteredPlatforms) == 0x000008, "Wrong alignment on UCommonVisibilityWidgetBase_GetRegisteredPlatforms"); \ +static_assert(sizeof(UCommonVisibilityWidgetBase_GetRegisteredPlatforms) == 0x000010, "Wrong size on UCommonVisibilityWidgetBase_GetRegisteredPlatforms"); \ +static_assert(offsetof(UCommonVisibilityWidgetBase_GetRegisteredPlatforms, ReturnValue) == 0x000000, "Member 'UCommonVisibilityWidgetBase_GetRegisteredPlatforms::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUCommonVisibilityWidgetBase \ +static_assert(alignof(UUCommonVisibilityWidgetBase) == 0x000010, "Wrong alignment on UUCommonVisibilityWidgetBase"); \ +static_assert(sizeof(UUCommonVisibilityWidgetBase) == 0x0003B0, "Wrong size on UUCommonVisibilityWidgetBase"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, VisibilityControls) == 0x000358, "Member 'UUCommonVisibilityWidgetBase::VisibilityControls' has a wrong offset!"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, bShowForGamepad) == 0x0003A8, "Member 'UUCommonVisibilityWidgetBase::bShowForGamepad' has a wrong offset!"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, bShowForMouseAndKeyboard) == 0x0003A9, "Member 'UUCommonVisibilityWidgetBase::bShowForMouseAndKeyboard' has a wrong offset!"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, bShowForTouch) == 0x0003AA, "Member 'UUCommonVisibilityWidgetBase::bShowForTouch' has a wrong offset!"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, VisibleType) == 0x0003AB, "Member 'UUCommonVisibilityWidgetBase::VisibleType' has a wrong offset!"); \ +static_assert(offsetof(UUCommonVisibilityWidgetBase, HiddenType) == 0x0003AC, "Member 'UUCommonVisibilityWidgetBase::HiddenType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonVisualAttachment \ +static_assert(alignof(UCommonVisualAttachment) == 0x000008, "Wrong alignment on UCommonVisualAttachment"); \ +static_assert(sizeof(UCommonVisualAttachment) == 0x0001F0, "Wrong size on UCommonVisualAttachment"); \ +static_assert(offsetof(UCommonVisualAttachment, ContentAnchor) == 0x0001D0, "Member 'UCommonVisualAttachment::ContentAnchor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarousel_BeginAutoScrolling \ +static_assert(alignof(CommonWidgetCarousel_BeginAutoScrolling) == 0x000004, "Wrong alignment on CommonWidgetCarousel_BeginAutoScrolling"); \ +static_assert(sizeof(CommonWidgetCarousel_BeginAutoScrolling) == 0x000004, "Wrong size on CommonWidgetCarousel_BeginAutoScrolling"); \ +static_assert(offsetof(CommonWidgetCarousel_BeginAutoScrolling, ScrollInterval) == 0x000000, "Member 'CommonWidgetCarousel_BeginAutoScrolling::ScrollInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarousel_SetActiveWidget \ +static_assert(alignof(CommonWidgetCarousel_SetActiveWidget) == 0x000008, "Wrong alignment on CommonWidgetCarousel_SetActiveWidget"); \ +static_assert(sizeof(CommonWidgetCarousel_SetActiveWidget) == 0x000008, "Wrong size on CommonWidgetCarousel_SetActiveWidget"); \ +static_assert(offsetof(CommonWidgetCarousel_SetActiveWidget, Widget) == 0x000000, "Member 'CommonWidgetCarousel_SetActiveWidget::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarousel_SetActiveWidgetIndex \ +static_assert(alignof(CommonWidgetCarousel_SetActiveWidgetIndex) == 0x000004, "Wrong alignment on CommonWidgetCarousel_SetActiveWidgetIndex"); \ +static_assert(sizeof(CommonWidgetCarousel_SetActiveWidgetIndex) == 0x000004, "Wrong size on CommonWidgetCarousel_SetActiveWidgetIndex"); \ +static_assert(offsetof(CommonWidgetCarousel_SetActiveWidgetIndex, Index_0) == 0x000000, "Member 'CommonWidgetCarousel_SetActiveWidgetIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarousel_GetActiveWidgetIndex \ +static_assert(alignof(CommonWidgetCarousel_GetActiveWidgetIndex) == 0x000004, "Wrong alignment on CommonWidgetCarousel_GetActiveWidgetIndex"); \ +static_assert(sizeof(CommonWidgetCarousel_GetActiveWidgetIndex) == 0x000004, "Wrong size on CommonWidgetCarousel_GetActiveWidgetIndex"); \ +static_assert(offsetof(CommonWidgetCarousel_GetActiveWidgetIndex, ReturnValue) == 0x000000, "Member 'CommonWidgetCarousel_GetActiveWidgetIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarousel_GetWidgetAtIndex \ +static_assert(alignof(CommonWidgetCarousel_GetWidgetAtIndex) == 0x000008, "Wrong alignment on CommonWidgetCarousel_GetWidgetAtIndex"); \ +static_assert(sizeof(CommonWidgetCarousel_GetWidgetAtIndex) == 0x000010, "Wrong size on CommonWidgetCarousel_GetWidgetAtIndex"); \ +static_assert(offsetof(CommonWidgetCarousel_GetWidgetAtIndex, Index_0) == 0x000000, "Member 'CommonWidgetCarousel_GetWidgetAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(CommonWidgetCarousel_GetWidgetAtIndex, ReturnValue) == 0x000008, "Member 'CommonWidgetCarousel_GetWidgetAtIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonWidgetCarousel \ +static_assert(alignof(UCommonWidgetCarousel) == 0x000008, "Wrong alignment on UCommonWidgetCarousel"); \ +static_assert(sizeof(UCommonWidgetCarousel) == 0x0001E0, "Wrong size on UCommonWidgetCarousel"); \ +static_assert(offsetof(UCommonWidgetCarousel, ActiveWidgetIndex) == 0x000198, "Member 'UCommonWidgetCarousel::ActiveWidgetIndex' has a wrong offset!"); \ +static_assert(offsetof(UCommonWidgetCarousel, OnCurrentPageIndexChanged) == 0x0001A0, "Member 'UCommonWidgetCarousel::OnCurrentPageIndexChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarouselNavBar_HandleButtonClicked \ +static_assert(alignof(CommonWidgetCarouselNavBar_HandleButtonClicked) == 0x000008, "Wrong alignment on CommonWidgetCarouselNavBar_HandleButtonClicked"); \ +static_assert(sizeof(CommonWidgetCarouselNavBar_HandleButtonClicked) == 0x000010, "Wrong size on CommonWidgetCarouselNavBar_HandleButtonClicked"); \ +static_assert(offsetof(CommonWidgetCarouselNavBar_HandleButtonClicked, AssociatedButton) == 0x000000, "Member 'CommonWidgetCarouselNavBar_HandleButtonClicked::AssociatedButton' has a wrong offset!"); \ +static_assert(offsetof(CommonWidgetCarouselNavBar_HandleButtonClicked, ButtonIndex) == 0x000008, "Member 'CommonWidgetCarouselNavBar_HandleButtonClicked::ButtonIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarouselNavBar_HandlePageChanged \ +static_assert(alignof(CommonWidgetCarouselNavBar_HandlePageChanged) == 0x000008, "Wrong alignment on CommonWidgetCarouselNavBar_HandlePageChanged"); \ +static_assert(sizeof(CommonWidgetCarouselNavBar_HandlePageChanged) == 0x000010, "Wrong size on CommonWidgetCarouselNavBar_HandlePageChanged"); \ +static_assert(offsetof(CommonWidgetCarouselNavBar_HandlePageChanged, CommonCarousel) == 0x000000, "Member 'CommonWidgetCarouselNavBar_HandlePageChanged::CommonCarousel' has a wrong offset!"); \ +static_assert(offsetof(CommonWidgetCarouselNavBar_HandlePageChanged, PageIndex) == 0x000008, "Member 'CommonWidgetCarouselNavBar_HandlePageChanged::PageIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetCarouselNavBar_SetLinkedCarousel \ +static_assert(alignof(CommonWidgetCarouselNavBar_SetLinkedCarousel) == 0x000008, "Wrong alignment on CommonWidgetCarouselNavBar_SetLinkedCarousel"); \ +static_assert(sizeof(CommonWidgetCarouselNavBar_SetLinkedCarousel) == 0x000008, "Wrong size on CommonWidgetCarouselNavBar_SetLinkedCarousel"); \ +static_assert(offsetof(CommonWidgetCarouselNavBar_SetLinkedCarousel, CommonCarousel) == 0x000000, "Member 'CommonWidgetCarouselNavBar_SetLinkedCarousel::CommonCarousel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonWidgetCarouselNavBar \ +static_assert(alignof(UCommonWidgetCarouselNavBar) == 0x000008, "Wrong alignment on UCommonWidgetCarouselNavBar"); \ +static_assert(sizeof(UCommonWidgetCarouselNavBar) == 0x0001C8, "Wrong size on UCommonWidgetCarouselNavBar"); \ +static_assert(offsetof(UCommonWidgetCarouselNavBar, ButtonWidgetType) == 0x000180, "Member 'UCommonWidgetCarouselNavBar::ButtonWidgetType' has a wrong offset!"); \ +static_assert(offsetof(UCommonWidgetCarouselNavBar, ButtonPadding) == 0x000188, "Member 'UCommonWidgetCarouselNavBar::ButtonPadding' has a wrong offset!"); \ +static_assert(offsetof(UCommonWidgetCarouselNavBar, LinkedCarousel) == 0x0001A8, "Member 'UCommonWidgetCarouselNavBar::LinkedCarousel' has a wrong offset!"); \ +static_assert(offsetof(UCommonWidgetCarouselNavBar, ButtonGroup) == 0x0001B0, "Member 'UCommonWidgetCarouselNavBar::ButtonGroup' has a wrong offset!"); \ +static_assert(offsetof(UCommonWidgetCarouselNavBar, Buttons) == 0x0001B8, "Member 'UCommonWidgetCarouselNavBar::Buttons' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetGroupBase_AddWidget \ +static_assert(alignof(CommonWidgetGroupBase_AddWidget) == 0x000008, "Wrong alignment on CommonWidgetGroupBase_AddWidget"); \ +static_assert(sizeof(CommonWidgetGroupBase_AddWidget) == 0x000008, "Wrong size on CommonWidgetGroupBase_AddWidget"); \ +static_assert(offsetof(CommonWidgetGroupBase_AddWidget, InWidget) == 0x000000, "Member 'CommonWidgetGroupBase_AddWidget::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonWidgetGroupBase_RemoveWidget \ +static_assert(alignof(CommonWidgetGroupBase_RemoveWidget) == 0x000008, "Wrong alignment on CommonWidgetGroupBase_RemoveWidget"); \ +static_assert(sizeof(CommonWidgetGroupBase_RemoveWidget) == 0x000008, "Wrong size on CommonWidgetGroupBase_RemoveWidget"); \ +static_assert(offsetof(CommonWidgetGroupBase_RemoveWidget, InWidget) == 0x000000, "Member 'CommonWidgetGroupBase_RemoveWidget::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonWidgetGroupBase \ +static_assert(alignof(UCommonWidgetGroupBase) == 0x000008, "Wrong alignment on UCommonWidgetGroupBase"); \ +static_assert(sizeof(UCommonWidgetGroupBase) == 0x000028, "Wrong size on UCommonWidgetGroupBase"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_OnButtonBaseHovered \ +static_assert(alignof(CommonButtonGroupBase_OnButtonBaseHovered) == 0x000008, "Wrong alignment on CommonButtonGroupBase_OnButtonBaseHovered"); \ +static_assert(sizeof(CommonButtonGroupBase_OnButtonBaseHovered) == 0x000008, "Wrong size on CommonButtonGroupBase_OnButtonBaseHovered"); \ +static_assert(offsetof(CommonButtonGroupBase_OnButtonBaseHovered, BaseButton) == 0x000000, "Member 'CommonButtonGroupBase_OnButtonBaseHovered::BaseButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_OnButtonBaseUnhovered \ +static_assert(alignof(CommonButtonGroupBase_OnButtonBaseUnhovered) == 0x000008, "Wrong alignment on CommonButtonGroupBase_OnButtonBaseUnhovered"); \ +static_assert(sizeof(CommonButtonGroupBase_OnButtonBaseUnhovered) == 0x000008, "Wrong size on CommonButtonGroupBase_OnButtonBaseUnhovered"); \ +static_assert(offsetof(CommonButtonGroupBase_OnButtonBaseUnhovered, BaseButton) == 0x000000, "Member 'CommonButtonGroupBase_OnButtonBaseUnhovered::BaseButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_OnHandleButtonBaseClicked \ +static_assert(alignof(CommonButtonGroupBase_OnHandleButtonBaseClicked) == 0x000008, "Wrong alignment on CommonButtonGroupBase_OnHandleButtonBaseClicked"); \ +static_assert(sizeof(CommonButtonGroupBase_OnHandleButtonBaseClicked) == 0x000008, "Wrong size on CommonButtonGroupBase_OnHandleButtonBaseClicked"); \ +static_assert(offsetof(CommonButtonGroupBase_OnHandleButtonBaseClicked, BaseButton) == 0x000000, "Member 'CommonButtonGroupBase_OnHandleButtonBaseClicked::BaseButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked \ +static_assert(alignof(CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked) == 0x000008, "Wrong alignment on CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked"); \ +static_assert(sizeof(CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked) == 0x000008, "Wrong size on CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked"); \ +static_assert(offsetof(CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked, BaseButton) == 0x000000, "Member 'CommonButtonGroupBase_OnHandleButtonBaseDoubleClicked::BaseButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_OnSelectionStateChangedBase \ +static_assert(alignof(CommonButtonGroupBase_OnSelectionStateChangedBase) == 0x000008, "Wrong alignment on CommonButtonGroupBase_OnSelectionStateChangedBase"); \ +static_assert(sizeof(CommonButtonGroupBase_OnSelectionStateChangedBase) == 0x000010, "Wrong size on CommonButtonGroupBase_OnSelectionStateChangedBase"); \ +static_assert(offsetof(CommonButtonGroupBase_OnSelectionStateChangedBase, BaseButton) == 0x000000, "Member 'CommonButtonGroupBase_OnSelectionStateChangedBase::BaseButton' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonGroupBase_OnSelectionStateChangedBase, bIsSelected) == 0x000008, "Member 'CommonButtonGroupBase_OnSelectionStateChangedBase::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_SelectButtonAtIndex \ +static_assert(alignof(CommonButtonGroupBase_SelectButtonAtIndex) == 0x000004, "Wrong alignment on CommonButtonGroupBase_SelectButtonAtIndex"); \ +static_assert(sizeof(CommonButtonGroupBase_SelectButtonAtIndex) == 0x000008, "Wrong size on CommonButtonGroupBase_SelectButtonAtIndex"); \ +static_assert(offsetof(CommonButtonGroupBase_SelectButtonAtIndex, ButtonIndex) == 0x000000, "Member 'CommonButtonGroupBase_SelectButtonAtIndex::ButtonIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonGroupBase_SelectButtonAtIndex, bAllowSound) == 0x000004, "Member 'CommonButtonGroupBase_SelectButtonAtIndex::bAllowSound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_SelectNextButton \ +static_assert(alignof(CommonButtonGroupBase_SelectNextButton) == 0x000001, "Wrong alignment on CommonButtonGroupBase_SelectNextButton"); \ +static_assert(sizeof(CommonButtonGroupBase_SelectNextButton) == 0x000001, "Wrong size on CommonButtonGroupBase_SelectNextButton"); \ +static_assert(offsetof(CommonButtonGroupBase_SelectNextButton, bAllowWrap) == 0x000000, "Member 'CommonButtonGroupBase_SelectNextButton::bAllowWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_SelectPreviousButton \ +static_assert(alignof(CommonButtonGroupBase_SelectPreviousButton) == 0x000001, "Wrong alignment on CommonButtonGroupBase_SelectPreviousButton"); \ +static_assert(sizeof(CommonButtonGroupBase_SelectPreviousButton) == 0x000001, "Wrong size on CommonButtonGroupBase_SelectPreviousButton"); \ +static_assert(offsetof(CommonButtonGroupBase_SelectPreviousButton, bAllowWrap) == 0x000000, "Member 'CommonButtonGroupBase_SelectPreviousButton::bAllowWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_SetSelectionRequired \ +static_assert(alignof(CommonButtonGroupBase_SetSelectionRequired) == 0x000001, "Wrong alignment on CommonButtonGroupBase_SetSelectionRequired"); \ +static_assert(sizeof(CommonButtonGroupBase_SetSelectionRequired) == 0x000001, "Wrong size on CommonButtonGroupBase_SetSelectionRequired"); \ +static_assert(offsetof(CommonButtonGroupBase_SetSelectionRequired, bRequireSelection) == 0x000000, "Member 'CommonButtonGroupBase_SetSelectionRequired::bRequireSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_FindButtonIndex \ +static_assert(alignof(CommonButtonGroupBase_FindButtonIndex) == 0x000008, "Wrong alignment on CommonButtonGroupBase_FindButtonIndex"); \ +static_assert(sizeof(CommonButtonGroupBase_FindButtonIndex) == 0x000010, "Wrong size on CommonButtonGroupBase_FindButtonIndex"); \ +static_assert(offsetof(CommonButtonGroupBase_FindButtonIndex, ButtonToFind) == 0x000000, "Member 'CommonButtonGroupBase_FindButtonIndex::ButtonToFind' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonGroupBase_FindButtonIndex, ReturnValue) == 0x000008, "Member 'CommonButtonGroupBase_FindButtonIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_GetButtonBaseAtIndex \ +static_assert(alignof(CommonButtonGroupBase_GetButtonBaseAtIndex) == 0x000008, "Wrong alignment on CommonButtonGroupBase_GetButtonBaseAtIndex"); \ +static_assert(sizeof(CommonButtonGroupBase_GetButtonBaseAtIndex) == 0x000010, "Wrong size on CommonButtonGroupBase_GetButtonBaseAtIndex"); \ +static_assert(offsetof(CommonButtonGroupBase_GetButtonBaseAtIndex, Index_0) == 0x000000, "Member 'CommonButtonGroupBase_GetButtonBaseAtIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(CommonButtonGroupBase_GetButtonBaseAtIndex, ReturnValue) == 0x000008, "Member 'CommonButtonGroupBase_GetButtonBaseAtIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_GetButtonCount \ +static_assert(alignof(CommonButtonGroupBase_GetButtonCount) == 0x000004, "Wrong alignment on CommonButtonGroupBase_GetButtonCount"); \ +static_assert(sizeof(CommonButtonGroupBase_GetButtonCount) == 0x000004, "Wrong size on CommonButtonGroupBase_GetButtonCount"); \ +static_assert(offsetof(CommonButtonGroupBase_GetButtonCount, ReturnValue) == 0x000000, "Member 'CommonButtonGroupBase_GetButtonCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_GetHoveredButtonIndex \ +static_assert(alignof(CommonButtonGroupBase_GetHoveredButtonIndex) == 0x000004, "Wrong alignment on CommonButtonGroupBase_GetHoveredButtonIndex"); \ +static_assert(sizeof(CommonButtonGroupBase_GetHoveredButtonIndex) == 0x000004, "Wrong size on CommonButtonGroupBase_GetHoveredButtonIndex"); \ +static_assert(offsetof(CommonButtonGroupBase_GetHoveredButtonIndex, ReturnValue) == 0x000000, "Member 'CommonButtonGroupBase_GetHoveredButtonIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_GetSelectedButtonBase \ +static_assert(alignof(CommonButtonGroupBase_GetSelectedButtonBase) == 0x000008, "Wrong alignment on CommonButtonGroupBase_GetSelectedButtonBase"); \ +static_assert(sizeof(CommonButtonGroupBase_GetSelectedButtonBase) == 0x000008, "Wrong size on CommonButtonGroupBase_GetSelectedButtonBase"); \ +static_assert(offsetof(CommonButtonGroupBase_GetSelectedButtonBase, ReturnValue) == 0x000000, "Member 'CommonButtonGroupBase_GetSelectedButtonBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_GetSelectedButtonIndex \ +static_assert(alignof(CommonButtonGroupBase_GetSelectedButtonIndex) == 0x000004, "Wrong alignment on CommonButtonGroupBase_GetSelectedButtonIndex"); \ +static_assert(sizeof(CommonButtonGroupBase_GetSelectedButtonIndex) == 0x000004, "Wrong size on CommonButtonGroupBase_GetSelectedButtonIndex"); \ +static_assert(offsetof(CommonButtonGroupBase_GetSelectedButtonIndex, ReturnValue) == 0x000000, "Member 'CommonButtonGroupBase_GetSelectedButtonIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonButtonGroupBase_HasAnyButtons \ +static_assert(alignof(CommonButtonGroupBase_HasAnyButtons) == 0x000001, "Wrong alignment on CommonButtonGroupBase_HasAnyButtons"); \ +static_assert(sizeof(CommonButtonGroupBase_HasAnyButtons) == 0x000001, "Wrong size on CommonButtonGroupBase_HasAnyButtons"); \ +static_assert(offsetof(CommonButtonGroupBase_HasAnyButtons, ReturnValue) == 0x000000, "Member 'CommonButtonGroupBase_HasAnyButtons::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButtonGroupBase \ +static_assert(alignof(UCommonButtonGroupBase) == 0x000008, "Wrong alignment on UCommonButtonGroupBase"); \ +static_assert(sizeof(UCommonButtonGroupBase) == 0x000110, "Wrong size on UCommonButtonGroupBase"); \ +static_assert(offsetof(UCommonButtonGroupBase, OnSelectedButtonBaseChanged) == 0x000028, "Member 'UCommonButtonGroupBase::OnSelectedButtonBaseChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonGroupBase, OnHoveredButtonBaseChanged) == 0x000050, "Member 'UCommonButtonGroupBase::OnHoveredButtonBaseChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonGroupBase, OnButtonBaseClicked) == 0x000078, "Member 'UCommonButtonGroupBase::OnButtonBaseClicked' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonGroupBase, OnButtonBaseDoubleClicked) == 0x0000A0, "Member 'UCommonButtonGroupBase::OnButtonBaseDoubleClicked' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonGroupBase, OnSelectionCleared) == 0x0000C8, "Member 'UCommonButtonGroupBase::OnSelectionCleared' has a wrong offset!"); \ +static_assert(offsetof(UCommonButtonGroupBase, bSelectionRequired) == 0x0000F0, "Member 'UCommonButtonGroupBase::bSelectionRequired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly \ +static_assert(alignof(CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly) == 0x000001, "Wrong alignment on CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly"); \ +static_assert(sizeof(CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly) == 0x000001, "Wrong size on CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly"); \ +static_assert(offsetof(CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly, bShouldOnlyDisplayOwningPlayerActions) == 0x000000, "Member 'CommonBoundActionBar_SetDisplayOwningPlayerActionsOnly::bShouldOnlyDisplayOwningPlayerActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonBoundActionBar \ +static_assert(alignof(UCommonBoundActionBar) == 0x000008, "Wrong alignment on UCommonBoundActionBar"); \ +static_assert(sizeof(UCommonBoundActionBar) == 0x000278, "Wrong size on UCommonBoundActionBar"); \ +static_assert(offsetof(UCommonBoundActionBar, ActionButtonClass) == 0x000268, "Member 'UCommonBoundActionBar::ActionButtonClass' has a wrong offset!"); \ +static_assert(offsetof(UCommonBoundActionBar, bDisplayOwningPlayerActionsOnly) == 0x000270, "Member 'UCommonBoundActionBar::bDisplayOwningPlayerActionsOnly' has a wrong offset!"); \ +static_assert(offsetof(UCommonBoundActionBar, bIgnoreDuplicateActions) == 0x000271, "Member 'UCommonBoundActionBar::bIgnoreDuplicateActions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonBoundActionButton \ +static_assert(alignof(UCommonBoundActionButton) == 0x000010, "Wrong alignment on UCommonBoundActionButton"); \ +static_assert(sizeof(UCommonBoundActionButton) == 0x0015A0, "Wrong size on UCommonBoundActionButton"); \ +static_assert(offsetof(UCommonBoundActionButton, Text_ActionName) == 0x001588, "Member 'UCommonBoundActionButton::Text_ActionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonGenericInputActionDataTable \ +static_assert(alignof(UCommonGenericInputActionDataTable) == 0x000008, "Wrong alignment on UCommonGenericInputActionDataTable"); \ +static_assert(sizeof(UCommonGenericInputActionDataTable) == 0x0000B0, "Wrong size on UCommonGenericInputActionDataTable"); \ + +#define DUMPER7_ASSERTS_UCommonInputActionDataProcessor \ +static_assert(alignof(UCommonInputActionDataProcessor) == 0x000008, "Wrong alignment on UCommonInputActionDataProcessor"); \ +static_assert(sizeof(UCommonInputActionDataProcessor) == 0x000028, "Wrong size on UCommonInputActionDataProcessor"); \ + +#define DUMPER7_ASSERTS_UCommonUIActionRouterBase \ +static_assert(alignof(UCommonUIActionRouterBase) == 0x000008, "Wrong alignment on UCommonUIActionRouterBase"); \ +static_assert(sizeof(UCommonUIActionRouterBase) == 0x000170, "Wrong size on UCommonUIActionRouterBase"); \ + +#define DUMPER7_ASSERTS_UCommonUIInputSettings \ +static_assert(alignof(UCommonUIInputSettings) == 0x000008, "Wrong alignment on UCommonUIInputSettings"); \ +static_assert(sizeof(UCommonUIInputSettings) == 0x000078, "Wrong size on UCommonUIInputSettings"); \ +static_assert(offsetof(UCommonUIInputSettings, bLinkCursorToGamepadFocus) == 0x000028, "Member 'UCommonUIInputSettings::bLinkCursorToGamepadFocus' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputSettings, UIActionProcessingPriority) == 0x00002C, "Member 'UCommonUIInputSettings::UIActionProcessingPriority' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputSettings, InputActions) == 0x000030, "Member 'UCommonUIInputSettings::InputActions' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputSettings, ActionOverrides) == 0x000040, "Member 'UCommonUIInputSettings::ActionOverrides' has a wrong offset!"); \ +static_assert(offsetof(UCommonUIInputSettings, AnalogCursorSettings) == 0x000050, "Member 'UCommonUIInputSettings::AnalogCursorSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidgetContainerBase_BP_AddWidget \ +static_assert(alignof(CommonActivatableWidgetContainerBase_BP_AddWidget) == 0x000008, "Wrong alignment on CommonActivatableWidgetContainerBase_BP_AddWidget"); \ +static_assert(sizeof(CommonActivatableWidgetContainerBase_BP_AddWidget) == 0x000010, "Wrong size on CommonActivatableWidgetContainerBase_BP_AddWidget"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_BP_AddWidget, ActivatableWidgetClass) == 0x000000, "Member 'CommonActivatableWidgetContainerBase_BP_AddWidget::ActivatableWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_BP_AddWidget, ReturnValue) == 0x000008, "Member 'CommonActivatableWidgetContainerBase_BP_AddWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidgetContainerBase_RemoveWidget \ +static_assert(alignof(CommonActivatableWidgetContainerBase_RemoveWidget) == 0x000008, "Wrong alignment on CommonActivatableWidgetContainerBase_RemoveWidget"); \ +static_assert(sizeof(CommonActivatableWidgetContainerBase_RemoveWidget) == 0x000008, "Wrong size on CommonActivatableWidgetContainerBase_RemoveWidget"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_RemoveWidget, WidgetToRemove) == 0x000000, "Member 'CommonActivatableWidgetContainerBase_RemoveWidget::WidgetToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidgetContainerBase_SetTransitionDuration \ +static_assert(alignof(CommonActivatableWidgetContainerBase_SetTransitionDuration) == 0x000004, "Wrong alignment on CommonActivatableWidgetContainerBase_SetTransitionDuration"); \ +static_assert(sizeof(CommonActivatableWidgetContainerBase_SetTransitionDuration) == 0x000004, "Wrong size on CommonActivatableWidgetContainerBase_SetTransitionDuration"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_SetTransitionDuration, Duration) == 0x000000, "Member 'CommonActivatableWidgetContainerBase_SetTransitionDuration::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidgetContainerBase_GetActiveWidget \ +static_assert(alignof(CommonActivatableWidgetContainerBase_GetActiveWidget) == 0x000008, "Wrong alignment on CommonActivatableWidgetContainerBase_GetActiveWidget"); \ +static_assert(sizeof(CommonActivatableWidgetContainerBase_GetActiveWidget) == 0x000008, "Wrong size on CommonActivatableWidgetContainerBase_GetActiveWidget"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_GetActiveWidget, ReturnValue) == 0x000000, "Member 'CommonActivatableWidgetContainerBase_GetActiveWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonActivatableWidgetContainerBase_GetTransitionDuration \ +static_assert(alignof(CommonActivatableWidgetContainerBase_GetTransitionDuration) == 0x000004, "Wrong alignment on CommonActivatableWidgetContainerBase_GetTransitionDuration"); \ +static_assert(sizeof(CommonActivatableWidgetContainerBase_GetTransitionDuration) == 0x000004, "Wrong size on CommonActivatableWidgetContainerBase_GetTransitionDuration"); \ +static_assert(offsetof(CommonActivatableWidgetContainerBase_GetTransitionDuration, ReturnValue) == 0x000000, "Member 'CommonActivatableWidgetContainerBase_GetTransitionDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActivatableWidgetContainerBase \ +static_assert(alignof(UCommonActivatableWidgetContainerBase) == 0x000008, "Wrong alignment on UCommonActivatableWidgetContainerBase"); \ +static_assert(sizeof(UCommonActivatableWidgetContainerBase) == 0x0002A0, "Wrong size on UCommonActivatableWidgetContainerBase"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, TransitionType) == 0x000198, "Member 'UCommonActivatableWidgetContainerBase::TransitionType' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, TransitionCurveType) == 0x000199, "Member 'UCommonActivatableWidgetContainerBase::TransitionCurveType' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, TransitionDuration) == 0x00019C, "Member 'UCommonActivatableWidgetContainerBase::TransitionDuration' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, WidgetList) == 0x0001A0, "Member 'UCommonActivatableWidgetContainerBase::WidgetList' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, DisplayedWidget) == 0x0001B0, "Member 'UCommonActivatableWidgetContainerBase::DisplayedWidget' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetContainerBase, GeneratedWidgetsPool) == 0x0001B8, "Member 'UCommonActivatableWidgetContainerBase::GeneratedWidgetsPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActivatableWidgetStack \ +static_assert(alignof(UCommonActivatableWidgetStack) == 0x000008, "Wrong alignment on UCommonActivatableWidgetStack"); \ +static_assert(sizeof(UCommonActivatableWidgetStack) == 0x0002B0, "Wrong size on UCommonActivatableWidgetStack"); \ +static_assert(offsetof(UCommonActivatableWidgetStack, RootContentWidgetClass) == 0x0002A0, "Member 'UCommonActivatableWidgetStack::RootContentWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UCommonActivatableWidgetStack, RootContentWidget) == 0x0002A8, "Member 'UCommonActivatableWidgetStack::RootContentWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonActivatableWidgetQueue \ +static_assert(alignof(UCommonActivatableWidgetQueue) == 0x000008, "Wrong alignment on UCommonActivatableWidgetQueue"); \ +static_assert(sizeof(UCommonActivatableWidgetQueue) == 0x0002A0, "Wrong size on UCommonActivatableWidgetQueue"); \ + +#define DUMPER7_ASSERTS_FInstancedStruct \ +static_assert(alignof(FInstancedStruct) == 0x000008, "Wrong alignment on FInstancedStruct"); \ +static_assert(sizeof(FInstancedStruct) == 0x000010, "Wrong size on FInstancedStruct"); \ + +#define DUMPER7_ASSERTS_FInstancedStructContainer \ +static_assert(alignof(FInstancedStructContainer) == 0x000008, "Wrong alignment on FInstancedStructContainer"); \ +static_assert(sizeof(FInstancedStructContainer) == 0x000010, "Wrong size on FInstancedStructContainer"); \ + +#define DUMPER7_ASSERTS_FPropertyBagContainerTypes \ +static_assert(alignof(FPropertyBagContainerTypes) == 0x000001, "Wrong alignment on FPropertyBagContainerTypes"); \ +static_assert(sizeof(FPropertyBagContainerTypes) == 0x000003, "Wrong size on FPropertyBagContainerTypes"); \ + +#define DUMPER7_ASSERTS_FPropertyBagPropertyDescMetaData \ +static_assert(alignof(FPropertyBagPropertyDescMetaData) == 0x000008, "Wrong alignment on FPropertyBagPropertyDescMetaData"); \ +static_assert(sizeof(FPropertyBagPropertyDescMetaData) == 0x000018, "Wrong size on FPropertyBagPropertyDescMetaData"); \ +static_assert(offsetof(FPropertyBagPropertyDescMetaData, Key) == 0x000000, "Member 'FPropertyBagPropertyDescMetaData::Key' has a wrong offset!"); \ +static_assert(offsetof(FPropertyBagPropertyDescMetaData, Value) == 0x000008, "Member 'FPropertyBagPropertyDescMetaData::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyBagPropertyDesc \ +static_assert(alignof(FPropertyBagPropertyDesc) == 0x000008, "Wrong alignment on FPropertyBagPropertyDesc"); \ +static_assert(sizeof(FPropertyBagPropertyDesc) == 0x000030, "Wrong size on FPropertyBagPropertyDesc"); \ +static_assert(offsetof(FPropertyBagPropertyDesc, ValueTypeObject) == 0x000000, "Member 'FPropertyBagPropertyDesc::ValueTypeObject' has a wrong offset!"); \ +static_assert(offsetof(FPropertyBagPropertyDesc, ID) == 0x000008, "Member 'FPropertyBagPropertyDesc::ID' has a wrong offset!"); \ +static_assert(offsetof(FPropertyBagPropertyDesc, Name) == 0x000018, "Member 'FPropertyBagPropertyDesc::Name' has a wrong offset!"); \ +static_assert(offsetof(FPropertyBagPropertyDesc, ValueType) == 0x000020, "Member 'FPropertyBagPropertyDesc::ValueType' has a wrong offset!"); \ +static_assert(offsetof(FPropertyBagPropertyDesc, ContainerTypes) == 0x000021, "Member 'FPropertyBagPropertyDesc::ContainerTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInstancedPropertyBag \ +static_assert(alignof(FInstancedPropertyBag) == 0x000008, "Wrong alignment on FInstancedPropertyBag"); \ +static_assert(sizeof(FInstancedPropertyBag) == 0x000010, "Wrong size on FInstancedPropertyBag"); \ +static_assert(offsetof(FInstancedPropertyBag, Value) == 0x000000, "Member 'FInstancedPropertyBag::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyBagMissingStruct \ +static_assert(alignof(FPropertyBagMissingStruct) == 0x000001, "Wrong alignment on FPropertyBagMissingStruct"); \ +static_assert(sizeof(FPropertyBagMissingStruct) == 0x000001, "Wrong size on FPropertyBagMissingStruct"); \ + +#define DUMPER7_ASSERTS_FSharedStruct \ +static_assert(alignof(FSharedStruct) == 0x000008, "Wrong alignment on FSharedStruct"); \ +static_assert(sizeof(FSharedStruct) == 0x000010, "Wrong size on FSharedStruct"); \ + +#define DUMPER7_ASSERTS_FConstSharedStruct \ +static_assert(alignof(FConstSharedStruct) == 0x000008, "Wrong alignment on FConstSharedStruct"); \ +static_assert(sizeof(FConstSharedStruct) == 0x000010, "Wrong size on FConstSharedStruct"); \ + +#define DUMPER7_ASSERTS_UPropertyBagMissingObject \ +static_assert(alignof(UPropertyBagMissingObject) == 0x000008, "Wrong alignment on UPropertyBagMissingObject"); \ +static_assert(sizeof(UPropertyBagMissingObject) == 0x000028, "Wrong size on UPropertyBagMissingObject"); \ + +#define DUMPER7_ASSERTS_UPropertyBag \ +static_assert(alignof(UPropertyBag) == 0x000008, "Wrong alignment on UPropertyBag"); \ +static_assert(sizeof(UPropertyBag) == 0x0000D8, "Wrong size on UPropertyBag"); \ +static_assert(offsetof(UPropertyBag, PropertyDescs) == 0x0000C0, "Member 'UPropertyBag::PropertyDescs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle \ +static_assert(alignof(GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle) == 0x000004, "Wrong alignment on GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle"); \ +static_assert(sizeof(GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle) == 0x000004, "Wrong size on GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle"); \ +static_assert(offsetof(GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Aim_Rifle_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Rifle::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Aim_Rifle_C \ +static_assert(alignof(UGA_Patrol_Action_Aim_Rifle_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Aim_Rifle_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Aim_Rifle_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Aim_Rifle_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Aim_Rifle_C, UberGraphFrame_GA_Patrol_Action_Aim_Rifle_C) == 0x000690, "Member 'UGA_Patrol_Action_Aim_Rifle_C::UberGraphFrame_GA_Patrol_Action_Aim_Rifle_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassFragment \ +static_assert(alignof(FMassFragment) == 0x000001, "Wrong alignment on FMassFragment"); \ +static_assert(sizeof(FMassFragment) == 0x000001, "Wrong size on FMassFragment"); \ + +#define DUMPER7_ASSERTS_FMassEntityHandle \ +static_assert(alignof(FMassEntityHandle) == 0x000008, "Wrong alignment on FMassEntityHandle"); \ +static_assert(sizeof(FMassEntityHandle) == 0x000008, "Wrong size on FMassEntityHandle"); \ +static_assert(offsetof(FMassEntityHandle, Index) == 0x000000, "Member 'FMassEntityHandle::Index' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityHandle, SerialNumber) == 0x000004, "Member 'FMassEntityHandle::SerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassRuntimePipeline \ +static_assert(alignof(FMassRuntimePipeline) == 0x000008, "Wrong alignment on FMassRuntimePipeline"); \ +static_assert(sizeof(FMassRuntimePipeline) == 0x000010, "Wrong size on FMassRuntimePipeline"); \ +static_assert(offsetof(FMassRuntimePipeline, Processors) == 0x000000, "Member 'FMassRuntimePipeline::Processors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassObserversMap \ +static_assert(alignof(FMassObserversMap) == 0x000008, "Wrong alignment on FMassObserversMap"); \ +static_assert(sizeof(FMassObserversMap) == 0x000050, "Wrong size on FMassObserversMap"); \ +static_assert(offsetof(FMassObserversMap, Container) == 0x000000, "Member 'FMassObserversMap::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassFragmentRequirements \ +static_assert(alignof(FMassFragmentRequirements) == 0x000008, "Wrong alignment on FMassFragmentRequirements"); \ +static_assert(sizeof(FMassFragmentRequirements) == 0x0001E8, "Wrong size on FMassFragmentRequirements"); \ + +#define DUMPER7_ASSERTS_FMassEntityQuery \ +static_assert(alignof(FMassEntityQuery) == 0x000010, "Wrong alignment on FMassEntityQuery"); \ +static_assert(sizeof(FMassEntityQuery) == 0x0002A0, "Wrong size on FMassEntityQuery"); \ + +#define DUMPER7_ASSERTS_FMassTag \ +static_assert(alignof(FMassTag) == 0x000001, "Wrong alignment on FMassTag"); \ +static_assert(sizeof(FMassTag) == 0x000001, "Wrong size on FMassTag"); \ + +#define DUMPER7_ASSERTS_FMassProcessorClassCollection \ +static_assert(alignof(FMassProcessorClassCollection) == 0x000008, "Wrong alignment on FMassProcessorClassCollection"); \ +static_assert(sizeof(FMassProcessorClassCollection) == 0x000010, "Wrong size on FMassProcessorClassCollection"); \ +static_assert(offsetof(FMassProcessorClassCollection, ClassCollection) == 0x000000, "Member 'FMassProcessorClassCollection::ClassCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntityObserverClassesMap \ +static_assert(alignof(FMassEntityObserverClassesMap) == 0x000008, "Wrong alignment on FMassEntityObserverClassesMap"); \ +static_assert(sizeof(FMassEntityObserverClassesMap) == 0x000050, "Wrong size on FMassEntityObserverClassesMap"); \ +static_assert(offsetof(FMassEntityObserverClassesMap, Container) == 0x000000, "Member 'FMassEntityObserverClassesMap::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassChunkFragment \ +static_assert(alignof(FMassChunkFragment) == 0x000001, "Wrong alignment on FMassChunkFragment"); \ +static_assert(sizeof(FMassChunkFragment) == 0x000001, "Wrong size on FMassChunkFragment"); \ + +#define DUMPER7_ASSERTS_FMassEntityView \ +static_assert(alignof(FMassEntityView) == 0x000008, "Wrong alignment on FMassEntityView"); \ +static_assert(sizeof(FMassEntityView) == 0x000020, "Wrong size on FMassEntityView"); \ + +#define DUMPER7_ASSERTS_FMassSharedFragment \ +static_assert(alignof(FMassSharedFragment) == 0x000001, "Wrong alignment on FMassSharedFragment"); \ +static_assert(sizeof(FMassSharedFragment) == 0x000001, "Wrong size on FMassSharedFragment"); \ + +#define DUMPER7_ASSERTS_FMassObserverManager \ +static_assert(alignof(FMassObserverManager) == 0x000008, "Wrong alignment on FMassObserverManager"); \ +static_assert(sizeof(FMassObserverManager) == 0x0001C8, "Wrong size on FMassObserverManager"); \ +static_assert(offsetof(FMassObserverManager, FragmentObservers) == 0x000080, "Member 'FMassObserverManager::FragmentObservers' has a wrong offset!"); \ +static_assert(offsetof(FMassObserverManager, TagObservers) == 0x000120, "Member 'FMassObserverManager::TagObservers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassProcessingPhaseConfig \ +static_assert(alignof(FMassProcessingPhaseConfig) == 0x000008, "Wrong alignment on FMassProcessingPhaseConfig"); \ +static_assert(sizeof(FMassProcessingPhaseConfig) == 0x000020, "Wrong size on FMassProcessingPhaseConfig"); \ +static_assert(offsetof(FMassProcessingPhaseConfig, PhaseName) == 0x000000, "Member 'FMassProcessingPhaseConfig::PhaseName' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessingPhaseConfig, PhaseGroupClass) == 0x000008, "Member 'FMassProcessingPhaseConfig::PhaseGroupClass' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessingPhaseConfig, ProcessorCDOs) == 0x000010, "Member 'FMassProcessingPhaseConfig::ProcessorCDOs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProcessorAuxDataBase \ +static_assert(alignof(FProcessorAuxDataBase) == 0x000001, "Wrong alignment on FProcessorAuxDataBase"); \ +static_assert(sizeof(FProcessorAuxDataBase) == 0x000001, "Wrong size on FProcessorAuxDataBase"); \ + +#define DUMPER7_ASSERTS_FMassProcessingContext \ +static_assert(alignof(FMassProcessingContext) == 0x000008, "Wrong alignment on FMassProcessingContext"); \ +static_assert(sizeof(FMassProcessingContext) == 0x000040, "Wrong size on FMassProcessingContext"); \ +static_assert(offsetof(FMassProcessingContext, DeltaSeconds) == 0x000010, "Member 'FMassProcessingContext::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessingContext, AuxData) == 0x000018, "Member 'FMassProcessingContext::AuxData' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessingContext, bFlushCommandBuffer) == 0x000028, "Member 'FMassProcessingContext::bFlushCommandBuffer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassProcessorExecutionOrder \ +static_assert(alignof(FMassProcessorExecutionOrder) == 0x000008, "Wrong alignment on FMassProcessorExecutionOrder"); \ +static_assert(sizeof(FMassProcessorExecutionOrder) == 0x000028, "Wrong size on FMassProcessorExecutionOrder"); \ +static_assert(offsetof(FMassProcessorExecutionOrder, ExecuteInGroup) == 0x000000, "Member 'FMassProcessorExecutionOrder::ExecuteInGroup' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessorExecutionOrder, ExecuteBefore) == 0x000008, "Member 'FMassProcessorExecutionOrder::ExecuteBefore' has a wrong offset!"); \ +static_assert(offsetof(FMassProcessorExecutionOrder, ExecuteAfter) == 0x000018, "Member 'FMassProcessorExecutionOrder::ExecuteAfter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSubsystemRequirements \ +static_assert(alignof(FMassSubsystemRequirements) == 0x000008, "Wrong alignment on FMassSubsystemRequirements"); \ +static_assert(sizeof(FMassSubsystemRequirements) == 0x000048, "Wrong size on FMassSubsystemRequirements"); \ + +#define DUMPER7_ASSERTS_UMassModuleSettings \ +static_assert(alignof(UMassModuleSettings) == 0x000008, "Wrong alignment on UMassModuleSettings"); \ +static_assert(sizeof(UMassModuleSettings) == 0x000028, "Wrong size on UMassModuleSettings"); \ + +#define DUMPER7_ASSERTS_UMassEntitySettings \ +static_assert(alignof(UMassEntitySettings) == 0x000008, "Wrong alignment on UMassEntitySettings"); \ +static_assert(sizeof(UMassEntitySettings) == 0x000110, "Wrong size on UMassEntitySettings"); \ +static_assert(offsetof(UMassEntitySettings, DumpDependencyGraphFileName) == 0x000028, "Member 'UMassEntitySettings::DumpDependencyGraphFileName' has a wrong offset!"); \ +static_assert(offsetof(UMassEntitySettings, ProcessingPhasesConfig) == 0x000038, "Member 'UMassEntitySettings::ProcessingPhasesConfig' has a wrong offset!"); \ +static_assert(offsetof(UMassEntitySettings, ProcessorCDOs) == 0x0000F8, "Member 'UMassEntitySettings::ProcessorCDOs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntitySubsystem \ +static_assert(alignof(UMassEntitySubsystem) == 0x000008, "Wrong alignment on UMassEntitySubsystem"); \ +static_assert(sizeof(UMassEntitySubsystem) == 0x000040, "Wrong size on UMassEntitySubsystem"); \ + +#define DUMPER7_ASSERTS_UMassProcessor \ +static_assert(alignof(UMassProcessor) == 0x000008, "Wrong alignment on UMassProcessor"); \ +static_assert(sizeof(UMassProcessor) == 0x0000B8, "Wrong size on UMassProcessor"); \ +static_assert(offsetof(UMassProcessor, ExecutionFlags) == 0x000028, "Member 'UMassProcessor::ExecutionFlags' has a wrong offset!"); \ +static_assert(offsetof(UMassProcessor, ProcessingPhase) == 0x00002C, "Member 'UMassProcessor::ProcessingPhase' has a wrong offset!"); \ +static_assert(offsetof(UMassProcessor, ExecutionOrder) == 0x000030, "Member 'UMassProcessor::ExecutionOrder' has a wrong offset!"); \ +static_assert(offsetof(UMassProcessor, bAutoRegisterWithProcessingPhases) == 0x000058, "Member 'UMassProcessor::bAutoRegisterWithProcessingPhases' has a wrong offset!"); \ +static_assert(offsetof(UMassProcessor, bRequiresGameThreadExecution) == 0x00005B, "Member 'UMassProcessor::bRequiresGameThreadExecution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassObserverProcessor \ +static_assert(alignof(UMassObserverProcessor) == 0x000008, "Wrong alignment on UMassObserverProcessor"); \ +static_assert(sizeof(UMassObserverProcessor) == 0x0000D0, "Wrong size on UMassObserverProcessor"); \ +static_assert(offsetof(UMassObserverProcessor, bAutoRegisterWithObserverRegistry) == 0x0000B8, "Member 'UMassObserverProcessor::bAutoRegisterWithObserverRegistry' has a wrong offset!"); \ +static_assert(offsetof(UMassObserverProcessor, ObservedType) == 0x0000C0, "Member 'UMassObserverProcessor::ObservedType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassObserverRegistry \ +static_assert(alignof(UMassObserverRegistry) == 0x000008, "Wrong alignment on UMassObserverRegistry"); \ +static_assert(sizeof(UMassObserverRegistry) == 0x000168, "Wrong size on UMassObserverRegistry"); \ +static_assert(offsetof(UMassObserverRegistry, FragmentObservers) == 0x000028, "Member 'UMassObserverRegistry::FragmentObservers' has a wrong offset!"); \ +static_assert(offsetof(UMassObserverRegistry, TagObservers) == 0x0000C8, "Member 'UMassObserverRegistry::TagObservers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCompositeProcessor \ +static_assert(alignof(UMassCompositeProcessor) == 0x000008, "Wrong alignment on UMassCompositeProcessor"); \ +static_assert(sizeof(UMassCompositeProcessor) == 0x0000F0, "Wrong size on UMassCompositeProcessor"); \ +static_assert(offsetof(UMassCompositeProcessor, ChildPipeline) == 0x0000B8, "Member 'UMassCompositeProcessor::ChildPipeline' has a wrong offset!"); \ +static_assert(offsetof(UMassCompositeProcessor, GroupName) == 0x0000C8, "Member 'UMassCompositeProcessor::GroupName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSettings \ +static_assert(alignof(UMassSettings) == 0x000008, "Wrong alignment on UMassSettings"); \ +static_assert(sizeof(UMassSettings) == 0x000088, "Wrong size on UMassSettings"); \ +static_assert(offsetof(UMassSettings, ModuleSettings) == 0x000038, "Member 'UMassSettings::ModuleSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight \ +static_assert(alignof(BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight) == 0x000004, "Wrong alignment on BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight"); \ +static_assert(sizeof(BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight) == 0x000008, "Wrong size on BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight"); \ +static_assert(offsetof(BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight, EntryPoint) == 0x000000, "Member 'BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight, CallFunc_SetStaticMesh_ReturnValue) == 0x000005, "Member 'BP_ThrowableSearchlight_C_ExecuteUbergraph_BP_ThrowableSearchlight::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableSearchlight_C_GetDataAsset \ +static_assert(alignof(BP_ThrowableSearchlight_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_ThrowableSearchlight_C_GetDataAsset"); \ +static_assert(sizeof(BP_ThrowableSearchlight_C_GetDataAsset) == 0x000008, "Wrong size on BP_ThrowableSearchlight_C_GetDataAsset"); \ +static_assert(offsetof(BP_ThrowableSearchlight_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_ThrowableSearchlight_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableSearchlight_C \ +static_assert(alignof(ABP_ThrowableSearchlight_C) == 0x000008, "Wrong alignment on ABP_ThrowableSearchlight_C"); \ +static_assert(sizeof(ABP_ThrowableSearchlight_C) == 0x000338, "Wrong size on ABP_ThrowableSearchlight_C"); \ +static_assert(offsetof(ABP_ThrowableSearchlight_C, UberGraphFrame_BP_ThrowableSearchlight_C) == 0x000318, "Member 'ABP_ThrowableSearchlight_C::UberGraphFrame_BP_ThrowableSearchlight_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableSearchlight_C, WrestlerFearEmitter) == 0x000320, "Member 'ABP_ThrowableSearchlight_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableSearchlight_C, MaxNoise_Range) == 0x000328, "Member 'ABP_ThrowableSearchlight_C::MaxNoise_Range' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableSearchlight_C, MeshOverride) == 0x000330, "Member 'ABP_ThrowableSearchlight_C::MeshOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayResourceSet \ +static_assert(alignof(FGameplayResourceSet) == 0x000002, "Wrong alignment on FGameplayResourceSet"); \ +static_assert(sizeof(FGameplayResourceSet) == 0x000002, "Wrong size on FGameplayResourceSet"); \ + +#define DUMPER7_ASSERTS_UGameplayTask \ +static_assert(alignof(UGameplayTask) == 0x000008, "Wrong alignment on UGameplayTask"); \ +static_assert(sizeof(UGameplayTask) == 0x000068, "Wrong size on UGameplayTask"); \ +static_assert(offsetof(UGameplayTask, InstanceName) == 0x000030, "Member 'UGameplayTask::InstanceName' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTask, ResourceOverlapPolicy) == 0x00003A, "Member 'UGameplayTask::ResourceOverlapPolicy' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTask, ChildTask) == 0x000060, "Member 'UGameplayTask::ChildTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGameplayTaskOwnerInterface \ +static_assert(alignof(IGameplayTaskOwnerInterface) == 0x000001, "Wrong alignment on IGameplayTaskOwnerInterface"); \ +static_assert(sizeof(IGameplayTaskOwnerInterface) == 0x000001, "Wrong size on IGameplayTaskOwnerInterface"); \ + +#define DUMPER7_ASSERTS_UGameplayTaskResource \ +static_assert(alignof(UGameplayTaskResource) == 0x000008, "Wrong alignment on UGameplayTaskResource"); \ +static_assert(sizeof(UGameplayTaskResource) == 0x000038, "Wrong size on UGameplayTaskResource"); \ +static_assert(offsetof(UGameplayTaskResource, ManualResourceID) == 0x000028, "Member 'UGameplayTaskResource::ManualResourceID' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTaskResource, AutoResourceID) == 0x00002C, "Member 'UGameplayTaskResource::AutoResourceID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTasksComponent_K2_RunGameplayTask \ +static_assert(alignof(GameplayTasksComponent_K2_RunGameplayTask) == 0x000008, "Wrong alignment on GameplayTasksComponent_K2_RunGameplayTask"); \ +static_assert(sizeof(GameplayTasksComponent_K2_RunGameplayTask) == 0x000048, "Wrong size on GameplayTasksComponent_K2_RunGameplayTask"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, TaskOwner) == 0x000000, "Member 'GameplayTasksComponent_K2_RunGameplayTask::TaskOwner' has a wrong offset!"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, Task) == 0x000010, "Member 'GameplayTasksComponent_K2_RunGameplayTask::Task' has a wrong offset!"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, Priority) == 0x000018, "Member 'GameplayTasksComponent_K2_RunGameplayTask::Priority' has a wrong offset!"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, AdditionalRequiredResources) == 0x000020, "Member 'GameplayTasksComponent_K2_RunGameplayTask::AdditionalRequiredResources' has a wrong offset!"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, AdditionalClaimedResources) == 0x000030, "Member 'GameplayTasksComponent_K2_RunGameplayTask::AdditionalClaimedResources' has a wrong offset!"); \ +static_assert(offsetof(GameplayTasksComponent_K2_RunGameplayTask, ReturnValue) == 0x000040, "Member 'GameplayTasksComponent_K2_RunGameplayTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTasksComponent_OnRep_SimulatedTasks \ +static_assert(alignof(GameplayTasksComponent_OnRep_SimulatedTasks) == 0x000008, "Wrong alignment on GameplayTasksComponent_OnRep_SimulatedTasks"); \ +static_assert(sizeof(GameplayTasksComponent_OnRep_SimulatedTasks) == 0x000010, "Wrong size on GameplayTasksComponent_OnRep_SimulatedTasks"); \ +static_assert(offsetof(GameplayTasksComponent_OnRep_SimulatedTasks, PreviousSimulatedTasks) == 0x000000, "Member 'GameplayTasksComponent_OnRep_SimulatedTasks::PreviousSimulatedTasks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTasksComponent \ +static_assert(alignof(UGameplayTasksComponent) == 0x000008, "Wrong alignment on UGameplayTasksComponent"); \ +static_assert(sizeof(UGameplayTasksComponent) == 0x000118, "Wrong size on UGameplayTasksComponent"); \ +static_assert(offsetof(UGameplayTasksComponent, TaskPriorityQueue) == 0x0000B8, "Member 'UGameplayTasksComponent::TaskPriorityQueue' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTasksComponent, TickingTasks) == 0x0000D8, "Member 'UGameplayTasksComponent::TickingTasks' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTasksComponent, KnownTasks) == 0x0000E8, "Member 'UGameplayTasksComponent::KnownTasks' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTasksComponent, OnClaimedResourcesChange) == 0x0000F8, "Member 'UGameplayTasksComponent::OnClaimedResourcesChange' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTasksComponent, SimulatedTasks) == 0x000108, "Member 'UGameplayTasksComponent::SimulatedTasks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTask_ClaimResource_ClaimResource \ +static_assert(alignof(GameplayTask_ClaimResource_ClaimResource) == 0x000008, "Wrong alignment on GameplayTask_ClaimResource_ClaimResource"); \ +static_assert(sizeof(GameplayTask_ClaimResource_ClaimResource) == 0x000030, "Wrong size on GameplayTask_ClaimResource_ClaimResource"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResource, InTaskOwner) == 0x000000, "Member 'GameplayTask_ClaimResource_ClaimResource::InTaskOwner' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResource, ResourceClass) == 0x000010, "Member 'GameplayTask_ClaimResource_ClaimResource::ResourceClass' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResource, Priority) == 0x000018, "Member 'GameplayTask_ClaimResource_ClaimResource::Priority' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResource, TaskInstanceName) == 0x00001C, "Member 'GameplayTask_ClaimResource_ClaimResource::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResource, ReturnValue) == 0x000028, "Member 'GameplayTask_ClaimResource_ClaimResource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTask_ClaimResource_ClaimResources \ +static_assert(alignof(GameplayTask_ClaimResource_ClaimResources) == 0x000008, "Wrong alignment on GameplayTask_ClaimResource_ClaimResources"); \ +static_assert(sizeof(GameplayTask_ClaimResource_ClaimResources) == 0x000038, "Wrong size on GameplayTask_ClaimResource_ClaimResources"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResources, InTaskOwner) == 0x000000, "Member 'GameplayTask_ClaimResource_ClaimResources::InTaskOwner' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResources, ResourceClasses) == 0x000010, "Member 'GameplayTask_ClaimResource_ClaimResources::ResourceClasses' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResources, Priority) == 0x000020, "Member 'GameplayTask_ClaimResource_ClaimResources::Priority' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResources, TaskInstanceName) == 0x000024, "Member 'GameplayTask_ClaimResource_ClaimResources::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_ClaimResource_ClaimResources, ReturnValue) == 0x000030, "Member 'GameplayTask_ClaimResource_ClaimResources::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTask_ClaimResource \ +static_assert(alignof(UGameplayTask_ClaimResource) == 0x000008, "Wrong alignment on UGameplayTask_ClaimResource"); \ +static_assert(sizeof(UGameplayTask_ClaimResource) == 0x000068, "Wrong size on UGameplayTask_ClaimResource"); \ + +#define DUMPER7_ASSERTS_GameplayTask_SpawnActor_SpawnActor \ +static_assert(alignof(GameplayTask_SpawnActor_SpawnActor) == 0x000008, "Wrong alignment on GameplayTask_SpawnActor_SpawnActor"); \ +static_assert(sizeof(GameplayTask_SpawnActor_SpawnActor) == 0x000058, "Wrong size on GameplayTask_SpawnActor_SpawnActor"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, TaskOwner) == 0x000000, "Member 'GameplayTask_SpawnActor_SpawnActor::TaskOwner' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, SpawnLocation) == 0x000010, "Member 'GameplayTask_SpawnActor_SpawnActor::SpawnLocation' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, SpawnRotation) == 0x000028, "Member 'GameplayTask_SpawnActor_SpawnActor::SpawnRotation' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, Class_0) == 0x000040, "Member 'GameplayTask_SpawnActor_SpawnActor::Class_0' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, bSpawnOnlyOnAuthority) == 0x000048, "Member 'GameplayTask_SpawnActor_SpawnActor::bSpawnOnlyOnAuthority' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_SpawnActor, ReturnValue) == 0x000050, "Member 'GameplayTask_SpawnActor_SpawnActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTask_SpawnActor_BeginSpawningActor \ +static_assert(alignof(GameplayTask_SpawnActor_BeginSpawningActor) == 0x000008, "Wrong alignment on GameplayTask_SpawnActor_BeginSpawningActor"); \ +static_assert(sizeof(GameplayTask_SpawnActor_BeginSpawningActor) == 0x000018, "Wrong size on GameplayTask_SpawnActor_BeginSpawningActor"); \ +static_assert(offsetof(GameplayTask_SpawnActor_BeginSpawningActor, WorldContextObject) == 0x000000, "Member 'GameplayTask_SpawnActor_BeginSpawningActor::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_BeginSpawningActor, SpawnedActor) == 0x000008, "Member 'GameplayTask_SpawnActor_BeginSpawningActor::SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_BeginSpawningActor, ReturnValue) == 0x000010, "Member 'GameplayTask_SpawnActor_BeginSpawningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTask_SpawnActor_FinishSpawningActor \ +static_assert(alignof(GameplayTask_SpawnActor_FinishSpawningActor) == 0x000008, "Wrong alignment on GameplayTask_SpawnActor_FinishSpawningActor"); \ +static_assert(sizeof(GameplayTask_SpawnActor_FinishSpawningActor) == 0x000010, "Wrong size on GameplayTask_SpawnActor_FinishSpawningActor"); \ +static_assert(offsetof(GameplayTask_SpawnActor_FinishSpawningActor, WorldContextObject) == 0x000000, "Member 'GameplayTask_SpawnActor_FinishSpawningActor::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_SpawnActor_FinishSpawningActor, SpawnedActor) == 0x000008, "Member 'GameplayTask_SpawnActor_FinishSpawningActor::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTask_SpawnActor \ +static_assert(alignof(UGameplayTask_SpawnActor) == 0x000008, "Wrong alignment on UGameplayTask_SpawnActor"); \ +static_assert(sizeof(UGameplayTask_SpawnActor) == 0x0000C0, "Wrong size on UGameplayTask_SpawnActor"); \ +static_assert(offsetof(UGameplayTask_SpawnActor, Success) == 0x000068, "Member 'UGameplayTask_SpawnActor::Success' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTask_SpawnActor, DidNotSpawn) == 0x000078, "Member 'UGameplayTask_SpawnActor::DidNotSpawn' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTask_SpawnActor, ClassToSpawn) == 0x0000B8, "Member 'UGameplayTask_SpawnActor::ClassToSpawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTask_TimeLimitedExecution \ +static_assert(alignof(UGameplayTask_TimeLimitedExecution) == 0x000008, "Wrong alignment on UGameplayTask_TimeLimitedExecution"); \ +static_assert(sizeof(UGameplayTask_TimeLimitedExecution) == 0x0000A0, "Wrong size on UGameplayTask_TimeLimitedExecution"); \ +static_assert(offsetof(UGameplayTask_TimeLimitedExecution, OnFinished) == 0x000068, "Member 'UGameplayTask_TimeLimitedExecution::OnFinished' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTask_TimeLimitedExecution, OnTimeExpired) == 0x000078, "Member 'UGameplayTask_TimeLimitedExecution::OnTimeExpired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTask_WaitDelay_TaskWaitDelay \ +static_assert(alignof(GameplayTask_WaitDelay_TaskWaitDelay) == 0x000008, "Wrong alignment on GameplayTask_WaitDelay_TaskWaitDelay"); \ +static_assert(sizeof(GameplayTask_WaitDelay_TaskWaitDelay) == 0x000020, "Wrong size on GameplayTask_WaitDelay_TaskWaitDelay"); \ +static_assert(offsetof(GameplayTask_WaitDelay_TaskWaitDelay, TaskOwner) == 0x000000, "Member 'GameplayTask_WaitDelay_TaskWaitDelay::TaskOwner' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_WaitDelay_TaskWaitDelay, Time) == 0x000010, "Member 'GameplayTask_WaitDelay_TaskWaitDelay::Time' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_WaitDelay_TaskWaitDelay, Priority) == 0x000014, "Member 'GameplayTask_WaitDelay_TaskWaitDelay::Priority' has a wrong offset!"); \ +static_assert(offsetof(GameplayTask_WaitDelay_TaskWaitDelay, ReturnValue) == 0x000018, "Member 'GameplayTask_WaitDelay_TaskWaitDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTask_WaitDelay \ +static_assert(alignof(UGameplayTask_WaitDelay) == 0x000008, "Wrong alignment on UGameplayTask_WaitDelay"); \ +static_assert(sizeof(UGameplayTask_WaitDelay) == 0x000088, "Wrong size on UGameplayTask_WaitDelay"); \ +static_assert(offsetof(UGameplayTask_WaitDelay, OnFinish) == 0x000068, "Member 'UGameplayTask_WaitDelay::OnFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung \ +static_assert(alignof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung) == 0x000008, "Wrong alignment on BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung"); \ +static_assert(sizeof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung) == 0x000038, "Wrong size on BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung"); \ +static_assert(offsetof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung, EntryPoint) == 0x000000, "Member 'BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung, CallFunc_GetParentActor_ReturnValue) == 0x000008, "Member 'BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung::CallFunc_GetParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung, K2Node_CustomEvent_InBoxExtent) == 0x000010, "Member 'BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung::K2Node_CustomEvent_InBoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung, K2Node_DynamicCast_AsBP_Fire_Escape) == 0x000028, "Member 'BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung::K2Node_DynamicCast_AsBP_Fire_Escape' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_FireEscapeRung_C_ExecuteUbergraph_BP_FireEscapeRung::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_FindAttachDirectionFromLedge \ +static_assert(alignof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge) == 0x000010, "Wrong alignment on BP_FireEscapeRung_C_FindAttachDirectionFromLedge"); \ +static_assert(sizeof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge) == 0x0003D0, "Wrong size on BP_FireEscapeRung_C_FindAttachDirectionFromLedge"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, Character) == 0x000000, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, Direction) == 0x000008, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, PawnRelativeLocation) == 0x000020, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::PawnRelativeLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, TargetDirection) == 0x000038, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::TargetDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_X) == 0x000058, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Y) == 0x000060, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Z) == 0x000068, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorForwardVector_ReturnValue) == 0x000070, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000088, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0000A0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B8, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_NegateVector_ReturnValue) == 0x0000D0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_X_1) == 0x0000E8, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Y_1) == 0x0000F0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Z_1) == 0x0000F8, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_Dot_VectorVector_ReturnValue) == 0x000100, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, Temp_bool_Variable) == 0x000108, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000109, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000110, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000128, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_X_2) == 0x000140, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Y_2) == 0x000148, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Z_2) == 0x000150, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_MakeVector_ReturnValue) == 0x000158, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000170, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x0001D0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakTransform_Location) == 0x0001E8, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakTransform_Rotation) == 0x000200, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakTransform_Scale) == 0x000218, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000230, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_MakeTransform_ReturnValue) == 0x000250, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetTransform_ReturnValue) == 0x0002B0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_IsPointInBoxWithTransform_ReturnValue) == 0x000310, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_IsPointInBoxWithTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_InverseTransformLocation_ReturnValue) == 0x000318, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BooleanOR_ReturnValue) == 0x000330, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_X_3) == 0x000338, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Y_3) == 0x000340, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_BreakVector_Z_3) == 0x000348, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000350, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000351, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorRightVector_ReturnValue) == 0x000358, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorRightVector_ReturnValue_1) == 0x000370, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_NegateVector_ReturnValue_1) == 0x000388, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0003A0, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindAttachDirectionFromLedge, K2Node_Select_Default) == 0x0003B8, "Member 'BP_FireEscapeRung_C_FindAttachDirectionFromLedge::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_FindGrapLocation \ +static_assert(alignof(BP_FireEscapeRung_C_FindGrapLocation) == 0x000010, "Wrong alignment on BP_FireEscapeRung_C_FindGrapLocation"); \ +static_assert(sizeof(BP_FireEscapeRung_C_FindGrapLocation) == 0x000360, "Wrong size on BP_FireEscapeRung_C_FindGrapLocation"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, Character) == 0x000000, "Member 'BP_FireEscapeRung_C_FindGrapLocation::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, GrabDirectionFromLedge) == 0x000008, "Member 'BP_FireEscapeRung_C_FindGrapLocation::GrabDirectionFromLedge' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, ReturnValue) == 0x000020, "Member 'BP_FireEscapeRung_C_FindGrapLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, LocalCharacterLocation) == 0x000038, "Member 'BP_FireEscapeRung_C_FindGrapLocation::LocalCharacterLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, LocalGrabDirection) == 0x000050, "Member 'BP_FireEscapeRung_C_FindGrapLocation::LocalGrabDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, Temp_bool_Variable) == 0x000068, "Member 'BP_FireEscapeRung_C_FindGrapLocation::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetTransform_ReturnValue) == 0x000070, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000D0, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000E8, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_X) == 0x000100, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Y) == 0x000108, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Z) == 0x000110, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000118, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetTransform_ReturnValue_1) == 0x000130, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000190, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetTransform_ReturnValue_2) == 0x0001B0, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_InverseTransformLocation_ReturnValue) == 0x000210, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_InverseTransformDirection_ReturnValue) == 0x000228, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetScaledCapsuleSize_OutRadius) == 0x000240, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetScaledCapsuleSize_OutRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetScaledCapsuleSize_OutHalfHeight) == 0x000244, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetScaledCapsuleSize_OutHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000248, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_GetActorForwardVector_ReturnValue) == 0x000250, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_X_1) == 0x000268, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Y_1) == 0x000270, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Z_1) == 0x000278, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_EqualEqual_VectorVector_ReturnValue) == 0x000280, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_EqualEqual_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000288, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_FClamp_ReturnValue) == 0x000290, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000298, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_FClamp_ReturnValue_1) == 0x0002A0, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_MakeVector_ReturnValue) == 0x0002A8, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x0002C0, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, K2Node_Select_Default) == 0x0002D8, "Member 'BP_FireEscapeRung_C_FindGrapLocation::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0002F0, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_X_2) == 0x000308, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Y_2) == 0x000310, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_BreakVector_Z_2) == 0x000318, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_MakeVector_ReturnValue_1) == 0x000320, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_TransformLocation_ReturnValue) == 0x000338, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_TransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_FindGrapLocation, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000350, "Member 'BP_FireEscapeRung_C_FindGrapLocation::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_GetAudioSwitch \ +static_assert(alignof(BP_FireEscapeRung_C_GetAudioSwitch) == 0x000008, "Wrong alignment on BP_FireEscapeRung_C_GetAudioSwitch"); \ +static_assert(sizeof(BP_FireEscapeRung_C_GetAudioSwitch) == 0x000008, "Wrong size on BP_FireEscapeRung_C_GetAudioSwitch"); \ +static_assert(offsetof(BP_FireEscapeRung_C_GetAudioSwitch, AudioSwitch_0) == 0x000000, "Member 'BP_FireEscapeRung_C_GetAudioSwitch::AudioSwitch_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_SetSize \ +static_assert(alignof(BP_FireEscapeRung_C_SetSize) == 0x000008, "Wrong alignment on BP_FireEscapeRung_C_SetSize"); \ +static_assert(sizeof(BP_FireEscapeRung_C_SetSize) == 0x000018, "Wrong size on BP_FireEscapeRung_C_SetSize"); \ +static_assert(offsetof(BP_FireEscapeRung_C_SetSize, InBoxExtent) == 0x000000, "Member 'BP_FireEscapeRung_C_SetSize::InBoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection \ +static_assert(alignof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection) == 0x000008, "Wrong alignment on BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection"); \ +static_assert(sizeof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection) == 0x0000A8, "Wrong size on BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, Character) == 0x000000, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, Result) == 0x000008, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::Result' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, Location) == 0x000010, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::Location' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, Direction) == 0x000028, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, AttachDirectionFromLedge) == 0x000040, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::AttachDirectionFromLedge' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, CallFunc_FindAttachDirectionFromLedge_Direction) == 0x000060, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::CallFunc_FindAttachDirectionFromLedge_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, CallFunc_FindGrapLocation_ReturnValue) == 0x000078, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::CallFunc_FindGrapLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection, CallFunc_NegateVector_ReturnValue) == 0x000090, "Member 'BP_FireEscapeRung_C_TryGetCustomLedgeGrabLocationAndDirection::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscapeRung_C_CanLedgeGrab \ +static_assert(alignof(BP_FireEscapeRung_C_CanLedgeGrab) == 0x000010, "Wrong alignment on BP_FireEscapeRung_C_CanLedgeGrab"); \ +static_assert(sizeof(BP_FireEscapeRung_C_CanLedgeGrab) == 0x000160, "Wrong size on BP_FireEscapeRung_C_CanLedgeGrab"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, Character) == 0x000000, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, Result) == 0x000008, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::Result' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_IsValid_ReturnValue_1) == 0x000028, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000030, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_BreakTransform_Location) == 0x000090, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_BreakTransform_Rotation) == 0x0000A8, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_BreakTransform_Scale) == 0x0000C0, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x0000D8, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_MakeTransform_ReturnValue) == 0x0000F0, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_IsPointInBoxWithTransform_ReturnValue) == 0x000150, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_IsPointInBoxWithTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscapeRung_C_CanLedgeGrab, CallFunc_Not_PreBool_ReturnValue) == 0x000151, "Member 'BP_FireEscapeRung_C_CanLedgeGrab::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_FireEscapeRung_C \ +static_assert(alignof(ABP_FireEscapeRung_C) == 0x000010, "Wrong alignment on ABP_FireEscapeRung_C"); \ +static_assert(sizeof(ABP_FireEscapeRung_C) == 0x0003F0, "Wrong size on ABP_FireEscapeRung_C"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, UberGraphFrame_BP_FireEscapeRung_C) == 0x0003A0, "Member 'ABP_FireEscapeRung_C::UberGraphFrame_BP_FireEscapeRung_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, Cube2) == 0x0003A8, "Member 'ABP_FireEscapeRung_C::Cube2' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, Cube1) == 0x0003B0, "Member 'ABP_FireEscapeRung_C::Cube1' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, Cube3) == 0x0003B8, "Member 'ABP_FireEscapeRung_C::Cube3' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, AudioSwitch) == 0x0003C0, "Member 'ABP_FireEscapeRung_C::AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, UnderneathBoxExtentMultiplier) == 0x0003C8, "Member 'ABP_FireEscapeRung_C::UnderneathBoxExtentMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscapeRung_C, FireEscapeActor) == 0x0003E0, "Member 'ABP_FireEscapeRung_C::FireEscapeActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavCollisionCylinder \ +static_assert(alignof(FNavCollisionCylinder) == 0x000008, "Wrong alignment on FNavCollisionCylinder"); \ +static_assert(sizeof(FNavCollisionCylinder) == 0x000020, "Wrong size on FNavCollisionCylinder"); \ +static_assert(offsetof(FNavCollisionCylinder, Offset) == 0x000000, "Member 'FNavCollisionCylinder::Offset' has a wrong offset!"); \ +static_assert(offsetof(FNavCollisionCylinder, Radius) == 0x000018, "Member 'FNavCollisionCylinder::Radius' has a wrong offset!"); \ +static_assert(offsetof(FNavCollisionCylinder, Height) == 0x00001C, "Member 'FNavCollisionCylinder::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavCollisionBox \ +static_assert(alignof(FNavCollisionBox) == 0x000008, "Wrong alignment on FNavCollisionBox"); \ +static_assert(sizeof(FNavCollisionBox) == 0x000030, "Wrong size on FNavCollisionBox"); \ +static_assert(offsetof(FNavCollisionBox, Offset) == 0x000000, "Member 'FNavCollisionBox::Offset' has a wrong offset!"); \ +static_assert(offsetof(FNavCollisionBox, Extent) == 0x000018, "Member 'FNavCollisionBox::Extent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavigationFilterArea \ +static_assert(alignof(FNavigationFilterArea) == 0x000008, "Wrong alignment on FNavigationFilterArea"); \ +static_assert(sizeof(FNavigationFilterArea) == 0x000018, "Wrong size on FNavigationFilterArea"); \ +static_assert(offsetof(FNavigationFilterArea, AreaClass) == 0x000000, "Member 'FNavigationFilterArea::AreaClass' has a wrong offset!"); \ +static_assert(offsetof(FNavigationFilterArea, TravelCostOverride) == 0x000008, "Member 'FNavigationFilterArea::TravelCostOverride' has a wrong offset!"); \ +static_assert(offsetof(FNavigationFilterArea, EnteringCostOverride) == 0x00000C, "Member 'FNavigationFilterArea::EnteringCostOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavigationFilterFlags \ +static_assert(alignof(FNavigationFilterFlags) == 0x000004, "Wrong alignment on FNavigationFilterFlags"); \ +static_assert(sizeof(FNavigationFilterFlags) == 0x000004, "Wrong size on FNavigationFilterFlags"); \ + +#define DUMPER7_ASSERTS_FNavGraphEdge \ +static_assert(alignof(FNavGraphEdge) == 0x000008, "Wrong alignment on FNavGraphEdge"); \ +static_assert(sizeof(FNavGraphEdge) == 0x000018, "Wrong size on FNavGraphEdge"); \ + +#define DUMPER7_ASSERTS_FNavGraphNode \ +static_assert(alignof(FNavGraphNode) == 0x000008, "Wrong alignment on FNavGraphNode"); \ +static_assert(sizeof(FNavGraphNode) == 0x000018, "Wrong size on FNavGraphNode"); \ +static_assert(offsetof(FNavGraphNode, Owner) == 0x000000, "Member 'FNavGraphNode::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSupportedAreaData \ +static_assert(alignof(FSupportedAreaData) == 0x000008, "Wrong alignment on FSupportedAreaData"); \ +static_assert(sizeof(FSupportedAreaData) == 0x000020, "Wrong size on FSupportedAreaData"); \ +static_assert(offsetof(FSupportedAreaData, AreaClassName) == 0x000000, "Member 'FSupportedAreaData::AreaClassName' has a wrong offset!"); \ +static_assert(offsetof(FSupportedAreaData, AreaID) == 0x000010, "Member 'FSupportedAreaData::AreaID' has a wrong offset!"); \ +static_assert(offsetof(FSupportedAreaData, AreaClass) == 0x000018, "Member 'FSupportedAreaData::AreaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavLinkCustomInstanceData \ +static_assert(alignof(FNavLinkCustomInstanceData) == 0x000008, "Wrong alignment on FNavLinkCustomInstanceData"); \ +static_assert(sizeof(FNavLinkCustomInstanceData) == 0x000078, "Wrong size on FNavLinkCustomInstanceData"); \ +static_assert(offsetof(FNavLinkCustomInstanceData, CustomLinkId) == 0x000068, "Member 'FNavLinkCustomInstanceData::CustomLinkId' has a wrong offset!"); \ +static_assert(offsetof(FNavLinkCustomInstanceData, AuxiliaryCustomLinkId) == 0x000070, "Member 'FNavLinkCustomInstanceData::AuxiliaryCustomLinkId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRecastNavMeshGenerationProperties \ +static_assert(alignof(FRecastNavMeshGenerationProperties) == 0x000004, "Wrong alignment on FRecastNavMeshGenerationProperties"); \ +static_assert(sizeof(FRecastNavMeshGenerationProperties) == 0x000040, "Wrong size on FRecastNavMeshGenerationProperties"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, TilePoolSize) == 0x000000, "Member 'FRecastNavMeshGenerationProperties::TilePoolSize' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, TileSizeUU) == 0x000004, "Member 'FRecastNavMeshGenerationProperties::TileSizeUU' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, CellSize) == 0x000008, "Member 'FRecastNavMeshGenerationProperties::CellSize' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, CellHeight) == 0x00000C, "Member 'FRecastNavMeshGenerationProperties::CellHeight' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, AgentRadius) == 0x000010, "Member 'FRecastNavMeshGenerationProperties::AgentRadius' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, AgentHeight) == 0x000014, "Member 'FRecastNavMeshGenerationProperties::AgentHeight' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, AgentMaxSlope) == 0x000018, "Member 'FRecastNavMeshGenerationProperties::AgentMaxSlope' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, AgentMaxStepHeight) == 0x00001C, "Member 'FRecastNavMeshGenerationProperties::AgentMaxStepHeight' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, MinRegionArea) == 0x000020, "Member 'FRecastNavMeshGenerationProperties::MinRegionArea' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, MergeRegionSize) == 0x000024, "Member 'FRecastNavMeshGenerationProperties::MergeRegionSize' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, MaxSimplificationError) == 0x000028, "Member 'FRecastNavMeshGenerationProperties::MaxSimplificationError' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, TileNumberHardLimit) == 0x00002C, "Member 'FRecastNavMeshGenerationProperties::TileNumberHardLimit' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, RegionPartitioning) == 0x000030, "Member 'FRecastNavMeshGenerationProperties::RegionPartitioning' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, LayerPartitioning) == 0x000031, "Member 'FRecastNavMeshGenerationProperties::LayerPartitioning' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, RegionChunkSplits) == 0x000034, "Member 'FRecastNavMeshGenerationProperties::RegionChunkSplits' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshGenerationProperties, LayerChunkSplits) == 0x000038, "Member 'FRecastNavMeshGenerationProperties::LayerChunkSplits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRecastNavMeshTileGenerationDebug \ +static_assert(alignof(FRecastNavMeshTileGenerationDebug) == 0x000004, "Wrong alignment on FRecastNavMeshTileGenerationDebug"); \ +static_assert(sizeof(FRecastNavMeshTileGenerationDebug) == 0x00001C, "Wrong size on FRecastNavMeshTileGenerationDebug"); \ +static_assert(offsetof(FRecastNavMeshTileGenerationDebug, TileCoordinate) == 0x000004, "Member 'FRecastNavMeshTileGenerationDebug::TileCoordinate' has a wrong offset!"); \ +static_assert(offsetof(FRecastNavMeshTileGenerationDebug, HeightFieldRenderMode) == 0x000014, "Member 'FRecastNavMeshTileGenerationDebug::HeightFieldRenderMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNavMeshResolutionParam \ +static_assert(alignof(FNavMeshResolutionParam) == 0x000004, "Wrong alignment on FNavMeshResolutionParam"); \ +static_assert(sizeof(FNavMeshResolutionParam) == 0x00000C, "Wrong size on FNavMeshResolutionParam"); \ +static_assert(offsetof(FNavMeshResolutionParam, CellSize) == 0x000000, "Member 'FNavMeshResolutionParam::CellSize' has a wrong offset!"); \ +static_assert(offsetof(FNavMeshResolutionParam, CellHeight) == 0x000004, "Member 'FNavMeshResolutionParam::CellHeight' has a wrong offset!"); \ +static_assert(offsetof(FNavMeshResolutionParam, AgentMaxStepHeight) == 0x000008, "Member 'FNavMeshResolutionParam::AgentMaxStepHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCrowdManagerBase \ +static_assert(alignof(UCrowdManagerBase) == 0x000008, "Wrong alignment on UCrowdManagerBase"); \ +static_assert(sizeof(UCrowdManagerBase) == 0x000028, "Wrong size on UCrowdManagerBase"); \ + +#define DUMPER7_ASSERTS_ANavigationGraphNode \ +static_assert(alignof(ANavigationGraphNode) == 0x000008, "Wrong alignment on ANavigationGraphNode"); \ +static_assert(sizeof(ANavigationGraphNode) == 0x000298, "Wrong size on ANavigationGraphNode"); \ + +#define DUMPER7_ASSERTS_UNavigationGraphNodeComponent \ +static_assert(alignof(UNavigationGraphNodeComponent) == 0x000010, "Wrong alignment on UNavigationGraphNodeComponent"); \ +static_assert(sizeof(UNavigationGraphNodeComponent) == 0x0002D0, "Wrong size on UNavigationGraphNodeComponent"); \ +static_assert(offsetof(UNavigationGraphNodeComponent, Node) == 0x0002A0, "Member 'UNavigationGraphNodeComponent::Node' has a wrong offset!"); \ +static_assert(offsetof(UNavigationGraphNodeComponent, NextNodeComponent) == 0x0002B8, "Member 'UNavigationGraphNodeComponent::NextNodeComponent' has a wrong offset!"); \ +static_assert(offsetof(UNavigationGraphNodeComponent, PrevNodeComponent) == 0x0002C0, "Member 'UNavigationGraphNodeComponent::PrevNodeComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_INavigationPathGenerator \ +static_assert(alignof(INavigationPathGenerator) == 0x000001, "Wrong alignment on INavigationPathGenerator"); \ +static_assert(sizeof(INavigationPathGenerator) == 0x000001, "Wrong size on INavigationPathGenerator"); \ + +#define DUMPER7_ASSERTS_INavLinkCustomInterface \ +static_assert(alignof(INavLinkCustomInterface) == 0x000001, "Wrong alignment on INavLinkCustomInterface"); \ +static_assert(sizeof(INavLinkCustomInterface) == 0x000001, "Wrong size on INavLinkCustomInterface"); \ + +#define DUMPER7_ASSERTS_INavLinkHostInterface \ +static_assert(alignof(INavLinkHostInterface) == 0x000001, "Wrong alignment on INavLinkHostInterface"); \ +static_assert(sizeof(INavLinkHostInterface) == 0x000001, "Wrong size on INavLinkHostInterface"); \ + +#define DUMPER7_ASSERTS_UNavLinkTrivial \ +static_assert(alignof(UNavLinkTrivial) == 0x000008, "Wrong alignment on UNavLinkTrivial"); \ +static_assert(sizeof(UNavLinkTrivial) == 0x000050, "Wrong size on UNavLinkTrivial"); \ + +#define DUMPER7_ASSERTS_INavNodeInterface \ +static_assert(alignof(INavNodeInterface) == 0x000001, "Wrong alignment on INavNodeInterface"); \ +static_assert(sizeof(INavNodeInterface) == 0x000001, "Wrong size on INavNodeInterface"); \ + +#define DUMPER7_ASSERTS_ANavigationData \ +static_assert(alignof(ANavigationData) == 0x000008, "Wrong alignment on ANavigationData"); \ +static_assert(sizeof(ANavigationData) == 0x0004B0, "Wrong size on ANavigationData"); \ +static_assert(offsetof(ANavigationData, RenderingComp) == 0x0002A0, "Member 'ANavigationData::RenderingComp' has a wrong offset!"); \ +static_assert(offsetof(ANavigationData, NavDataConfig) == 0x0002A8, "Member 'ANavigationData::NavDataConfig' has a wrong offset!"); \ +static_assert(offsetof(ANavigationData, RuntimeGeneration) == 0x000334, "Member 'ANavigationData::RuntimeGeneration' has a wrong offset!"); \ +static_assert(offsetof(ANavigationData, ObservedPathsTickInterval) == 0x000338, "Member 'ANavigationData::ObservedPathsTickInterval' has a wrong offset!"); \ +static_assert(offsetof(ANavigationData, DataVersion) == 0x00033C, "Member 'ANavigationData::DataVersion' has a wrong offset!"); \ +static_assert(offsetof(ANavigationData, SupportedAreas) == 0x000448, "Member 'ANavigationData::SupportedAreas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAbstractNavData \ +static_assert(alignof(AAbstractNavData) == 0x000008, "Wrong alignment on AAbstractNavData"); \ +static_assert(sizeof(AAbstractNavData) == 0x0004B0, "Wrong size on AAbstractNavData"); \ + +#define DUMPER7_ASSERTS_UNavArea \ +static_assert(alignof(UNavArea) == 0x000008, "Wrong alignment on UNavArea"); \ +static_assert(sizeof(UNavArea) == 0x000048, "Wrong size on UNavArea"); \ +static_assert(offsetof(UNavArea, DefaultCost) == 0x000030, "Member 'UNavArea::DefaultCost' has a wrong offset!"); \ +static_assert(offsetof(UNavArea, FixedAreaEnteringCost) == 0x000034, "Member 'UNavArea::FixedAreaEnteringCost' has a wrong offset!"); \ +static_assert(offsetof(UNavArea, DrawColor) == 0x000038, "Member 'UNavArea::DrawColor' has a wrong offset!"); \ +static_assert(offsetof(UNavArea, SupportedAgents) == 0x00003C, "Member 'UNavArea::SupportedAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavAreaMeta \ +static_assert(alignof(UNavAreaMeta) == 0x000008, "Wrong alignment on UNavAreaMeta"); \ +static_assert(sizeof(UNavAreaMeta) == 0x000048, "Wrong size on UNavAreaMeta"); \ + +#define DUMPER7_ASSERTS_UNavAreaMeta_SwitchByAgent \ +static_assert(alignof(UNavAreaMeta_SwitchByAgent) == 0x000008, "Wrong alignment on UNavAreaMeta_SwitchByAgent"); \ +static_assert(sizeof(UNavAreaMeta_SwitchByAgent) == 0x0000C8, "Wrong size on UNavAreaMeta_SwitchByAgent"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent0Area) == 0x000048, "Member 'UNavAreaMeta_SwitchByAgent::Agent0Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent1Area) == 0x000050, "Member 'UNavAreaMeta_SwitchByAgent::Agent1Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent2Area) == 0x000058, "Member 'UNavAreaMeta_SwitchByAgent::Agent2Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent3Area) == 0x000060, "Member 'UNavAreaMeta_SwitchByAgent::Agent3Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent4Area) == 0x000068, "Member 'UNavAreaMeta_SwitchByAgent::Agent4Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent5Area) == 0x000070, "Member 'UNavAreaMeta_SwitchByAgent::Agent5Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent6Area) == 0x000078, "Member 'UNavAreaMeta_SwitchByAgent::Agent6Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent7Area) == 0x000080, "Member 'UNavAreaMeta_SwitchByAgent::Agent7Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent8Area) == 0x000088, "Member 'UNavAreaMeta_SwitchByAgent::Agent8Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent9Area) == 0x000090, "Member 'UNavAreaMeta_SwitchByAgent::Agent9Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent10Area) == 0x000098, "Member 'UNavAreaMeta_SwitchByAgent::Agent10Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent11Area) == 0x0000A0, "Member 'UNavAreaMeta_SwitchByAgent::Agent11Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent12Area) == 0x0000A8, "Member 'UNavAreaMeta_SwitchByAgent::Agent12Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent13Area) == 0x0000B0, "Member 'UNavAreaMeta_SwitchByAgent::Agent13Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent14Area) == 0x0000B8, "Member 'UNavAreaMeta_SwitchByAgent::Agent14Area' has a wrong offset!"); \ +static_assert(offsetof(UNavAreaMeta_SwitchByAgent, Agent15Area) == 0x0000C0, "Member 'UNavAreaMeta_SwitchByAgent::Agent15Area' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavArea_Default \ +static_assert(alignof(UNavArea_Default) == 0x000008, "Wrong alignment on UNavArea_Default"); \ +static_assert(sizeof(UNavArea_Default) == 0x000048, "Wrong size on UNavArea_Default"); \ + +#define DUMPER7_ASSERTS_UNavArea_LowHeight \ +static_assert(alignof(UNavArea_LowHeight) == 0x000008, "Wrong alignment on UNavArea_LowHeight"); \ +static_assert(sizeof(UNavArea_LowHeight) == 0x000048, "Wrong size on UNavArea_LowHeight"); \ + +#define DUMPER7_ASSERTS_UNavArea_Null \ +static_assert(alignof(UNavArea_Null) == 0x000008, "Wrong alignment on UNavArea_Null"); \ +static_assert(sizeof(UNavArea_Null) == 0x000048, "Wrong size on UNavArea_Null"); \ + +#define DUMPER7_ASSERTS_UNavArea_Obstacle \ +static_assert(alignof(UNavArea_Obstacle) == 0x000008, "Wrong alignment on UNavArea_Obstacle"); \ +static_assert(sizeof(UNavArea_Obstacle) == 0x000048, "Wrong size on UNavArea_Obstacle"); \ + +#define DUMPER7_ASSERTS_UNavCollision \ +static_assert(alignof(UNavCollision) == 0x000008, "Wrong alignment on UNavCollision"); \ +static_assert(sizeof(UNavCollision) == 0x0000D0, "Wrong size on UNavCollision"); \ +static_assert(offsetof(UNavCollision, CylinderCollision) == 0x000080, "Member 'UNavCollision::CylinderCollision' has a wrong offset!"); \ +static_assert(offsetof(UNavCollision, BoxCollision) == 0x000090, "Member 'UNavCollision::BoxCollision' has a wrong offset!"); \ +static_assert(offsetof(UNavCollision, AreaClass) == 0x0000A0, "Member 'UNavCollision::AreaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavigationQueryFilter \ +static_assert(alignof(UNavigationQueryFilter) == 0x000008, "Wrong alignment on UNavigationQueryFilter"); \ +static_assert(sizeof(UNavigationQueryFilter) == 0x000048, "Wrong size on UNavigationQueryFilter"); \ +static_assert(offsetof(UNavigationQueryFilter, Areas) == 0x000028, "Member 'UNavigationQueryFilter::Areas' has a wrong offset!"); \ +static_assert(offsetof(UNavigationQueryFilter, IncludeFlags) == 0x000038, "Member 'UNavigationQueryFilter::IncludeFlags' has a wrong offset!"); \ +static_assert(offsetof(UNavigationQueryFilter, ExcludeFlags) == 0x00003C, "Member 'UNavigationQueryFilter::ExcludeFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URecastFilter_UseDefaultArea \ +static_assert(alignof(URecastFilter_UseDefaultArea) == 0x000008, "Wrong alignment on URecastFilter_UseDefaultArea"); \ +static_assert(sizeof(URecastFilter_UseDefaultArea) == 0x000048, "Wrong size on URecastFilter_UseDefaultArea"); \ + +#define DUMPER7_ASSERTS_ANavigationGraph \ +static_assert(alignof(ANavigationGraph) == 0x000008, "Wrong alignment on ANavigationGraph"); \ +static_assert(sizeof(ANavigationGraph) == 0x0004B0, "Wrong size on ANavigationGraph"); \ + +#define DUMPER7_ASSERTS_UNavigationInvokerComponent \ +static_assert(alignof(UNavigationInvokerComponent) == 0x000008, "Wrong alignment on UNavigationInvokerComponent"); \ +static_assert(sizeof(UNavigationInvokerComponent) == 0x0000B0, "Wrong size on UNavigationInvokerComponent"); \ +static_assert(offsetof(UNavigationInvokerComponent, TileGenerationRadius) == 0x0000A0, "Member 'UNavigationInvokerComponent::TileGenerationRadius' has a wrong offset!"); \ +static_assert(offsetof(UNavigationInvokerComponent, TileRemovalRadius) == 0x0000A4, "Member 'UNavigationInvokerComponent::TileRemovalRadius' has a wrong offset!"); \ +static_assert(offsetof(UNavigationInvokerComponent, SupportedAgents) == 0x0000A8, "Member 'UNavigationInvokerComponent::SupportedAgents' has a wrong offset!"); \ +static_assert(offsetof(UNavigationInvokerComponent, Priority) == 0x0000AC, "Member 'UNavigationInvokerComponent::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_EnableDebugDrawing \ +static_assert(alignof(NavigationPath_EnableDebugDrawing) == 0x000004, "Wrong alignment on NavigationPath_EnableDebugDrawing"); \ +static_assert(sizeof(NavigationPath_EnableDebugDrawing) == 0x000014, "Wrong size on NavigationPath_EnableDebugDrawing"); \ +static_assert(offsetof(NavigationPath_EnableDebugDrawing, bShouldDrawDebugData) == 0x000000, "Member 'NavigationPath_EnableDebugDrawing::bShouldDrawDebugData' has a wrong offset!"); \ +static_assert(offsetof(NavigationPath_EnableDebugDrawing, PathColor) == 0x000004, "Member 'NavigationPath_EnableDebugDrawing::PathColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_EnableRecalculationOnInvalidation \ +static_assert(alignof(NavigationPath_EnableRecalculationOnInvalidation) == 0x000001, "Wrong alignment on NavigationPath_EnableRecalculationOnInvalidation"); \ +static_assert(sizeof(NavigationPath_EnableRecalculationOnInvalidation) == 0x000001, "Wrong size on NavigationPath_EnableRecalculationOnInvalidation"); \ +static_assert(offsetof(NavigationPath_EnableRecalculationOnInvalidation, DoRecalculation) == 0x000000, "Member 'NavigationPath_EnableRecalculationOnInvalidation::DoRecalculation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_GetDebugString \ +static_assert(alignof(NavigationPath_GetDebugString) == 0x000008, "Wrong alignment on NavigationPath_GetDebugString"); \ +static_assert(sizeof(NavigationPath_GetDebugString) == 0x000010, "Wrong size on NavigationPath_GetDebugString"); \ +static_assert(offsetof(NavigationPath_GetDebugString, ReturnValue) == 0x000000, "Member 'NavigationPath_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_GetPathCost \ +static_assert(alignof(NavigationPath_GetPathCost) == 0x000008, "Wrong alignment on NavigationPath_GetPathCost"); \ +static_assert(sizeof(NavigationPath_GetPathCost) == 0x000008, "Wrong size on NavigationPath_GetPathCost"); \ +static_assert(offsetof(NavigationPath_GetPathCost, ReturnValue) == 0x000000, "Member 'NavigationPath_GetPathCost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_GetPathLength \ +static_assert(alignof(NavigationPath_GetPathLength) == 0x000008, "Wrong alignment on NavigationPath_GetPathLength"); \ +static_assert(sizeof(NavigationPath_GetPathLength) == 0x000008, "Wrong size on NavigationPath_GetPathLength"); \ +static_assert(offsetof(NavigationPath_GetPathLength, ReturnValue) == 0x000000, "Member 'NavigationPath_GetPathLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_IsPartial \ +static_assert(alignof(NavigationPath_IsPartial) == 0x000001, "Wrong alignment on NavigationPath_IsPartial"); \ +static_assert(sizeof(NavigationPath_IsPartial) == 0x000001, "Wrong size on NavigationPath_IsPartial"); \ +static_assert(offsetof(NavigationPath_IsPartial, ReturnValue) == 0x000000, "Member 'NavigationPath_IsPartial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_IsStringPulled \ +static_assert(alignof(NavigationPath_IsStringPulled) == 0x000001, "Wrong alignment on NavigationPath_IsStringPulled"); \ +static_assert(sizeof(NavigationPath_IsStringPulled) == 0x000001, "Wrong size on NavigationPath_IsStringPulled"); \ +static_assert(offsetof(NavigationPath_IsStringPulled, ReturnValue) == 0x000000, "Member 'NavigationPath_IsStringPulled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationPath_IsValid \ +static_assert(alignof(NavigationPath_IsValid) == 0x000001, "Wrong alignment on NavigationPath_IsValid"); \ +static_assert(sizeof(NavigationPath_IsValid) == 0x000001, "Wrong size on NavigationPath_IsValid"); \ +static_assert(offsetof(NavigationPath_IsValid, ReturnValue) == 0x000000, "Member 'NavigationPath_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavigationPath \ +static_assert(alignof(UNavigationPath) == 0x000008, "Wrong alignment on UNavigationPath"); \ +static_assert(sizeof(UNavigationPath) == 0x000088, "Wrong size on UNavigationPath"); \ +static_assert(offsetof(UNavigationPath, PathUpdatedNotifier) == 0x000028, "Member 'UNavigationPath::PathUpdatedNotifier' has a wrong offset!"); \ +static_assert(offsetof(UNavigationPath, PathPoints) == 0x000038, "Member 'UNavigationPath::PathPoints' has a wrong offset!"); \ +static_assert(offsetof(UNavigationPath, RecalculateOnInvalidation) == 0x000048, "Member 'UNavigationPath::RecalculateOnInvalidation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_FindPathToActorSynchronously \ +static_assert(alignof(NavigationSystemV1_FindPathToActorSynchronously) == 0x000008, "Wrong alignment on NavigationSystemV1_FindPathToActorSynchronously"); \ +static_assert(sizeof(NavigationSystemV1_FindPathToActorSynchronously) == 0x000048, "Wrong size on NavigationSystemV1_FindPathToActorSynchronously"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_FindPathToActorSynchronously::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, PathStart) == 0x000008, "Member 'NavigationSystemV1_FindPathToActorSynchronously::PathStart' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, GoalActor) == 0x000020, "Member 'NavigationSystemV1_FindPathToActorSynchronously::GoalActor' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, TetherDistance) == 0x000028, "Member 'NavigationSystemV1_FindPathToActorSynchronously::TetherDistance' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, PathfindingContext) == 0x000030, "Member 'NavigationSystemV1_FindPathToActorSynchronously::PathfindingContext' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, FilterClass) == 0x000038, "Member 'NavigationSystemV1_FindPathToActorSynchronously::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToActorSynchronously, ReturnValue) == 0x000040, "Member 'NavigationSystemV1_FindPathToActorSynchronously::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_FindPathToLocationSynchronously \ +static_assert(alignof(NavigationSystemV1_FindPathToLocationSynchronously) == 0x000008, "Wrong alignment on NavigationSystemV1_FindPathToLocationSynchronously"); \ +static_assert(sizeof(NavigationSystemV1_FindPathToLocationSynchronously) == 0x000050, "Wrong size on NavigationSystemV1_FindPathToLocationSynchronously"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, PathStart) == 0x000008, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::PathStart' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, PathEnd) == 0x000020, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::PathEnd' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, PathfindingContext) == 0x000038, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::PathfindingContext' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, FilterClass) == 0x000040, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_FindPathToLocationSynchronously, ReturnValue) == 0x000048, "Member 'NavigationSystemV1_FindPathToLocationSynchronously::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_GetNavigationSystem \ +static_assert(alignof(NavigationSystemV1_GetNavigationSystem) == 0x000008, "Wrong alignment on NavigationSystemV1_GetNavigationSystem"); \ +static_assert(sizeof(NavigationSystemV1_GetNavigationSystem) == 0x000010, "Wrong size on NavigationSystemV1_GetNavigationSystem"); \ +static_assert(offsetof(NavigationSystemV1_GetNavigationSystem, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_GetNavigationSystem::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetNavigationSystem, ReturnValue) == 0x000008, "Member 'NavigationSystemV1_GetNavigationSystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_GetPathCost \ +static_assert(alignof(NavigationSystemV1_GetPathCost) == 0x000008, "Wrong alignment on NavigationSystemV1_GetPathCost"); \ +static_assert(sizeof(NavigationSystemV1_GetPathCost) == 0x000058, "Wrong size on NavigationSystemV1_GetPathCost"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_GetPathCost::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, PathStart) == 0x000008, "Member 'NavigationSystemV1_GetPathCost::PathStart' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, PathEnd) == 0x000020, "Member 'NavigationSystemV1_GetPathCost::PathEnd' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, PathCost) == 0x000038, "Member 'NavigationSystemV1_GetPathCost::PathCost' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, NavData) == 0x000040, "Member 'NavigationSystemV1_GetPathCost::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, FilterClass) == 0x000048, "Member 'NavigationSystemV1_GetPathCost::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathCost, ReturnValue) == 0x000050, "Member 'NavigationSystemV1_GetPathCost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_GetPathLength \ +static_assert(alignof(NavigationSystemV1_GetPathLength) == 0x000008, "Wrong alignment on NavigationSystemV1_GetPathLength"); \ +static_assert(sizeof(NavigationSystemV1_GetPathLength) == 0x000058, "Wrong size on NavigationSystemV1_GetPathLength"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_GetPathLength::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, PathStart) == 0x000008, "Member 'NavigationSystemV1_GetPathLength::PathStart' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, PathEnd) == 0x000020, "Member 'NavigationSystemV1_GetPathLength::PathEnd' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, PathLength) == 0x000038, "Member 'NavigationSystemV1_GetPathLength::PathLength' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, NavData) == 0x000040, "Member 'NavigationSystemV1_GetPathLength::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, FilterClass) == 0x000048, "Member 'NavigationSystemV1_GetPathLength::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_GetPathLength, ReturnValue) == 0x000050, "Member 'NavigationSystemV1_GetPathLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_IsNavigationBeingBuilt \ +static_assert(alignof(NavigationSystemV1_IsNavigationBeingBuilt) == 0x000008, "Wrong alignment on NavigationSystemV1_IsNavigationBeingBuilt"); \ +static_assert(sizeof(NavigationSystemV1_IsNavigationBeingBuilt) == 0x000010, "Wrong size on NavigationSystemV1_IsNavigationBeingBuilt"); \ +static_assert(offsetof(NavigationSystemV1_IsNavigationBeingBuilt, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_IsNavigationBeingBuilt::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_IsNavigationBeingBuilt, ReturnValue) == 0x000008, "Member 'NavigationSystemV1_IsNavigationBeingBuilt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_IsNavigationBeingBuiltOrLocked \ +static_assert(alignof(NavigationSystemV1_IsNavigationBeingBuiltOrLocked) == 0x000008, "Wrong alignment on NavigationSystemV1_IsNavigationBeingBuiltOrLocked"); \ +static_assert(sizeof(NavigationSystemV1_IsNavigationBeingBuiltOrLocked) == 0x000010, "Wrong size on NavigationSystemV1_IsNavigationBeingBuiltOrLocked"); \ +static_assert(offsetof(NavigationSystemV1_IsNavigationBeingBuiltOrLocked, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_IsNavigationBeingBuiltOrLocked::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_IsNavigationBeingBuiltOrLocked, ReturnValue) == 0x000008, "Member 'NavigationSystemV1_IsNavigationBeingBuiltOrLocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_K2_GetRandomLocationInNavigableRadius \ +static_assert(alignof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius) == 0x000008, "Wrong alignment on NavigationSystemV1_K2_GetRandomLocationInNavigableRadius"); \ +static_assert(sizeof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius) == 0x000058, "Wrong size on NavigationSystemV1_K2_GetRandomLocationInNavigableRadius"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, Origin) == 0x000008, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::Origin' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, RandomLocation) == 0x000020, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::RandomLocation' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, Radius) == 0x000038, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::Radius' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, NavData) == 0x000040, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, FilterClass) == 0x000048, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomLocationInNavigableRadius, ReturnValue) == 0x000050, "Member 'NavigationSystemV1_K2_GetRandomLocationInNavigableRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_K2_GetRandomPointInNavigableRadius \ +static_assert(alignof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius) == 0x000008, "Wrong alignment on NavigationSystemV1_K2_GetRandomPointInNavigableRadius"); \ +static_assert(sizeof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius) == 0x000058, "Wrong size on NavigationSystemV1_K2_GetRandomPointInNavigableRadius"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, Origin) == 0x000008, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::Origin' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, RandomLocation) == 0x000020, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::RandomLocation' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, Radius) == 0x000038, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::Radius' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, NavData) == 0x000040, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, FilterClass) == 0x000048, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomPointInNavigableRadius, ReturnValue) == 0x000050, "Member 'NavigationSystemV1_K2_GetRandomPointInNavigableRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_K2_GetRandomReachablePointInRadius \ +static_assert(alignof(NavigationSystemV1_K2_GetRandomReachablePointInRadius) == 0x000008, "Wrong alignment on NavigationSystemV1_K2_GetRandomReachablePointInRadius"); \ +static_assert(sizeof(NavigationSystemV1_K2_GetRandomReachablePointInRadius) == 0x000058, "Wrong size on NavigationSystemV1_K2_GetRandomReachablePointInRadius"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, Origin) == 0x000008, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::Origin' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, RandomLocation) == 0x000020, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::RandomLocation' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, Radius) == 0x000038, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::Radius' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, NavData) == 0x000040, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, FilterClass) == 0x000048, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_GetRandomReachablePointInRadius, ReturnValue) == 0x000050, "Member 'NavigationSystemV1_K2_GetRandomReachablePointInRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_K2_ProjectPointToNavigation \ +static_assert(alignof(NavigationSystemV1_K2_ProjectPointToNavigation) == 0x000008, "Wrong alignment on NavigationSystemV1_K2_ProjectPointToNavigation"); \ +static_assert(sizeof(NavigationSystemV1_K2_ProjectPointToNavigation) == 0x000068, "Wrong size on NavigationSystemV1_K2_ProjectPointToNavigation"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, Point) == 0x000008, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::Point' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, ProjectedLocation) == 0x000020, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, NavData) == 0x000038, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::NavData' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, FilterClass) == 0x000040, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, QueryExtent) == 0x000048, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::QueryExtent' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ProjectPointToNavigation, ReturnValue) == 0x000060, "Member 'NavigationSystemV1_K2_ProjectPointToNavigation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_NavigationRaycast \ +static_assert(alignof(NavigationSystemV1_NavigationRaycast) == 0x000008, "Wrong alignment on NavigationSystemV1_NavigationRaycast"); \ +static_assert(sizeof(NavigationSystemV1_NavigationRaycast) == 0x000068, "Wrong size on NavigationSystemV1_NavigationRaycast"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, WorldContextObject) == 0x000000, "Member 'NavigationSystemV1_NavigationRaycast::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, RayStart) == 0x000008, "Member 'NavigationSystemV1_NavigationRaycast::RayStart' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, RayEnd) == 0x000020, "Member 'NavigationSystemV1_NavigationRaycast::RayEnd' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, HitLocation) == 0x000038, "Member 'NavigationSystemV1_NavigationRaycast::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, FilterClass) == 0x000050, "Member 'NavigationSystemV1_NavigationRaycast::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, Querier) == 0x000058, "Member 'NavigationSystemV1_NavigationRaycast::Querier' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_NavigationRaycast, ReturnValue) == 0x000060, "Member 'NavigationSystemV1_NavigationRaycast::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_K2_ReplaceAreaInOctreeData \ +static_assert(alignof(NavigationSystemV1_K2_ReplaceAreaInOctreeData) == 0x000008, "Wrong alignment on NavigationSystemV1_K2_ReplaceAreaInOctreeData"); \ +static_assert(sizeof(NavigationSystemV1_K2_ReplaceAreaInOctreeData) == 0x000020, "Wrong size on NavigationSystemV1_K2_ReplaceAreaInOctreeData"); \ +static_assert(offsetof(NavigationSystemV1_K2_ReplaceAreaInOctreeData, Object) == 0x000000, "Member 'NavigationSystemV1_K2_ReplaceAreaInOctreeData::Object' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ReplaceAreaInOctreeData, OldArea) == 0x000008, "Member 'NavigationSystemV1_K2_ReplaceAreaInOctreeData::OldArea' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ReplaceAreaInOctreeData, NewArea) == 0x000010, "Member 'NavigationSystemV1_K2_ReplaceAreaInOctreeData::NewArea' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_K2_ReplaceAreaInOctreeData, ReturnValue) == 0x000018, "Member 'NavigationSystemV1_K2_ReplaceAreaInOctreeData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_OnNavigationBoundsUpdated \ +static_assert(alignof(NavigationSystemV1_OnNavigationBoundsUpdated) == 0x000008, "Wrong alignment on NavigationSystemV1_OnNavigationBoundsUpdated"); \ +static_assert(sizeof(NavigationSystemV1_OnNavigationBoundsUpdated) == 0x000008, "Wrong size on NavigationSystemV1_OnNavigationBoundsUpdated"); \ +static_assert(offsetof(NavigationSystemV1_OnNavigationBoundsUpdated, NavVolume) == 0x000000, "Member 'NavigationSystemV1_OnNavigationBoundsUpdated::NavVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_RegisterNavigationInvoker \ +static_assert(alignof(NavigationSystemV1_RegisterNavigationInvoker) == 0x000008, "Wrong alignment on NavigationSystemV1_RegisterNavigationInvoker"); \ +static_assert(sizeof(NavigationSystemV1_RegisterNavigationInvoker) == 0x000010, "Wrong size on NavigationSystemV1_RegisterNavigationInvoker"); \ +static_assert(offsetof(NavigationSystemV1_RegisterNavigationInvoker, Invoker) == 0x000000, "Member 'NavigationSystemV1_RegisterNavigationInvoker::Invoker' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_RegisterNavigationInvoker, TileGenerationRadius) == 0x000008, "Member 'NavigationSystemV1_RegisterNavigationInvoker::TileGenerationRadius' has a wrong offset!"); \ +static_assert(offsetof(NavigationSystemV1_RegisterNavigationInvoker, TileRemovalRadius) == 0x00000C, "Member 'NavigationSystemV1_RegisterNavigationInvoker::TileRemovalRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_SetGeometryGatheringMode \ +static_assert(alignof(NavigationSystemV1_SetGeometryGatheringMode) == 0x000001, "Wrong alignment on NavigationSystemV1_SetGeometryGatheringMode"); \ +static_assert(sizeof(NavigationSystemV1_SetGeometryGatheringMode) == 0x000001, "Wrong size on NavigationSystemV1_SetGeometryGatheringMode"); \ +static_assert(offsetof(NavigationSystemV1_SetGeometryGatheringMode, NewMode) == 0x000000, "Member 'NavigationSystemV1_SetGeometryGatheringMode::NewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount \ +static_assert(alignof(NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount) == 0x000004, "Wrong alignment on NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount"); \ +static_assert(sizeof(NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount) == 0x000004, "Wrong size on NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount"); \ +static_assert(offsetof(NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount, MaxNumberOfJobs) == 0x000000, "Member 'NavigationSystemV1_SetMaxSimultaneousTileGenerationJobsCount::MaxNumberOfJobs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavigationSystemV1_UnregisterNavigationInvoker \ +static_assert(alignof(NavigationSystemV1_UnregisterNavigationInvoker) == 0x000008, "Wrong alignment on NavigationSystemV1_UnregisterNavigationInvoker"); \ +static_assert(sizeof(NavigationSystemV1_UnregisterNavigationInvoker) == 0x000008, "Wrong size on NavigationSystemV1_UnregisterNavigationInvoker"); \ +static_assert(offsetof(NavigationSystemV1_UnregisterNavigationInvoker, Invoker) == 0x000000, "Member 'NavigationSystemV1_UnregisterNavigationInvoker::Invoker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavigationSystemV1 \ +static_assert(alignof(UNavigationSystemV1) == 0x000008, "Wrong alignment on UNavigationSystemV1"); \ +static_assert(sizeof(UNavigationSystemV1) == 0x001590, "Wrong size on UNavigationSystemV1"); \ +static_assert(offsetof(UNavigationSystemV1, MainNavData) == 0x000028, "Member 'UNavigationSystemV1::MainNavData' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, AbstractNavData) == 0x000030, "Member 'UNavigationSystemV1::AbstractNavData' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, DefaultAgentName) == 0x000038, "Member 'UNavigationSystemV1::DefaultAgentName' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, CrowdManagerClass) == 0x000040, "Member 'UNavigationSystemV1::CrowdManagerClass' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, GeometryExportTriangleCountWarningThreshold) == 0x00006C, "Member 'UNavigationSystemV1::GeometryExportTriangleCountWarningThreshold' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, ActiveTilesUpdateInterval) == 0x000074, "Member 'UNavigationSystemV1::ActiveTilesUpdateInterval' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, DataGatheringMode) == 0x000078, "Member 'UNavigationSystemV1::DataGatheringMode' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, DirtyAreaWarningSizeThreshold) == 0x00007C, "Member 'UNavigationSystemV1::DirtyAreaWarningSizeThreshold' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, GatheringNavModifiersWarningLimitTime) == 0x000080, "Member 'UNavigationSystemV1::GatheringNavModifiersWarningLimitTime' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, SupportedAgents) == 0x000088, "Member 'UNavigationSystemV1::SupportedAgents' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, SupportedAgentsMask) == 0x000098, "Member 'UNavigationSystemV1::SupportedAgentsMask' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, BuildBounds) == 0x0000A0, "Member 'UNavigationSystemV1::BuildBounds' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, NavDataSet) == 0x0000D8, "Member 'UNavigationSystemV1::NavDataSet' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, NavDataRegistrationQueue) == 0x0000E8, "Member 'UNavigationSystemV1::NavDataRegistrationQueue' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, OnNavDataRegisteredEvent) == 0x000108, "Member 'UNavigationSystemV1::OnNavDataRegisteredEvent' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, OnNavigationGenerationFinishedDelegate) == 0x000118, "Member 'UNavigationSystemV1::OnNavigationGenerationFinishedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UNavigationSystemV1, OperationMode) == 0x000208, "Member 'UNavigationSystemV1::OperationMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavigationSystemModuleConfig \ +static_assert(alignof(UNavigationSystemModuleConfig) == 0x000008, "Wrong alignment on UNavigationSystemModuleConfig"); \ +static_assert(sizeof(UNavigationSystemModuleConfig) == 0x000060, "Wrong size on UNavigationSystemModuleConfig"); \ + +#define DUMPER7_ASSERTS_ANavigationTestingActor \ +static_assert(alignof(ANavigationTestingActor) == 0x000008, "Wrong alignment on ANavigationTestingActor"); \ +static_assert(sizeof(ANavigationTestingActor) == 0x0003C0, "Wrong size on ANavigationTestingActor"); \ +static_assert(offsetof(ANavigationTestingActor, CapsuleComponent) == 0x0002A8, "Member 'ANavigationTestingActor::CapsuleComponent' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, InvokerComponent) == 0x0002B0, "Member 'ANavigationTestingActor::InvokerComponent' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, NavAgentProps) == 0x0002C0, "Member 'ANavigationTestingActor::NavAgentProps' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, QueryingExtent) == 0x0002F8, "Member 'ANavigationTestingActor::QueryingExtent' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, MyNavData) == 0x000310, "Member 'ANavigationTestingActor::MyNavData' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, ProjectedLocation) == 0x000318, "Member 'ANavigationTestingActor::ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, CostLimitFactor) == 0x000334, "Member 'ANavigationTestingActor::CostLimitFactor' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, MinimumCostLimit) == 0x000338, "Member 'ANavigationTestingActor::MinimumCostLimit' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, CostDisplayMode) == 0x000340, "Member 'ANavigationTestingActor::CostDisplayMode' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, TextCanvasOffset) == 0x000348, "Member 'ANavigationTestingActor::TextCanvasOffset' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, PathfindingTime) == 0x00035C, "Member 'ANavigationTestingActor::PathfindingTime' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, PathCost) == 0x000360, "Member 'ANavigationTestingActor::PathCost' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, PathfindingSteps) == 0x000368, "Member 'ANavigationTestingActor::PathfindingSteps' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, OtherActor) == 0x000370, "Member 'ANavigationTestingActor::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, FilterClass) == 0x000378, "Member 'ANavigationTestingActor::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, ShowStepIndex) == 0x000380, "Member 'ANavigationTestingActor::ShowStepIndex' has a wrong offset!"); \ +static_assert(offsetof(ANavigationTestingActor, OffsetFromCornersDistance) == 0x000384, "Member 'ANavigationTestingActor::OffsetFromCornersDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavLinkComponent \ +static_assert(alignof(UNavLinkComponent) == 0x000010, "Wrong alignment on UNavLinkComponent"); \ +static_assert(sizeof(UNavLinkComponent) == 0x000590, "Wrong size on UNavLinkComponent"); \ +static_assert(offsetof(UNavLinkComponent, Links) == 0x000578, "Member 'UNavLinkComponent::Links' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavRelevantComponent_SetNavigationRelevancy \ +static_assert(alignof(NavRelevantComponent_SetNavigationRelevancy) == 0x000001, "Wrong alignment on NavRelevantComponent_SetNavigationRelevancy"); \ +static_assert(sizeof(NavRelevantComponent_SetNavigationRelevancy) == 0x000001, "Wrong size on NavRelevantComponent_SetNavigationRelevancy"); \ +static_assert(offsetof(NavRelevantComponent_SetNavigationRelevancy, bRelevant) == 0x000000, "Member 'NavRelevantComponent_SetNavigationRelevancy::bRelevant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavRelevantComponent \ +static_assert(alignof(UNavRelevantComponent) == 0x000008, "Wrong alignment on UNavRelevantComponent"); \ +static_assert(sizeof(UNavRelevantComponent) == 0x0000F0, "Wrong size on UNavRelevantComponent"); \ +static_assert(offsetof(UNavRelevantComponent, CachedNavParent) == 0x0000E8, "Member 'UNavRelevantComponent::CachedNavParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavLinkCustomComponent \ +static_assert(alignof(UNavLinkCustomComponent) == 0x000008, "Wrong alignment on UNavLinkCustomComponent"); \ +static_assert(sizeof(UNavLinkCustomComponent) == 0x0001E0, "Wrong size on UNavLinkCustomComponent"); \ +static_assert(offsetof(UNavLinkCustomComponent, NavLinkUserId) == 0x0000F8, "Member 'UNavLinkCustomComponent::NavLinkUserId' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, CustomLinkId) == 0x000100, "Member 'UNavLinkCustomComponent::CustomLinkId' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, AuxiliaryCustomLinkId) == 0x000108, "Member 'UNavLinkCustomComponent::AuxiliaryCustomLinkId' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, EnabledAreaClass) == 0x000110, "Member 'UNavLinkCustomComponent::EnabledAreaClass' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, DisabledAreaClass) == 0x000118, "Member 'UNavLinkCustomComponent::DisabledAreaClass' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, SupportedAgents) == 0x000120, "Member 'UNavLinkCustomComponent::SupportedAgents' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, LinkRelativeStart) == 0x000128, "Member 'UNavLinkCustomComponent::LinkRelativeStart' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, LinkRelativeEnd) == 0x000140, "Member 'UNavLinkCustomComponent::LinkRelativeEnd' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, LinkDirection) == 0x000158, "Member 'UNavLinkCustomComponent::LinkDirection' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, ObstacleOffset) == 0x000160, "Member 'UNavLinkCustomComponent::ObstacleOffset' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, ObstacleExtent) == 0x000178, "Member 'UNavLinkCustomComponent::ObstacleExtent' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, ObstacleAreaClass) == 0x000190, "Member 'UNavLinkCustomComponent::ObstacleAreaClass' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, BroadcastRadius) == 0x000198, "Member 'UNavLinkCustomComponent::BroadcastRadius' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, BroadcastInterval) == 0x00019C, "Member 'UNavLinkCustomComponent::BroadcastInterval' has a wrong offset!"); \ +static_assert(offsetof(UNavLinkCustomComponent, BroadcastChannel) == 0x0001A0, "Member 'UNavLinkCustomComponent::BroadcastChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavLinkRenderingComponent \ +static_assert(alignof(UNavLinkRenderingComponent) == 0x000010, "Wrong alignment on UNavLinkRenderingComponent"); \ +static_assert(sizeof(UNavLinkRenderingComponent) == 0x000570, "Wrong size on UNavLinkRenderingComponent"); \ + +#define DUMPER7_ASSERTS_ANavMeshBoundsVolume \ +static_assert(alignof(ANavMeshBoundsVolume) == 0x000008, "Wrong alignment on ANavMeshBoundsVolume"); \ +static_assert(sizeof(ANavMeshBoundsVolume) == 0x0002D8, "Wrong size on ANavMeshBoundsVolume"); \ +static_assert(offsetof(ANavMeshBoundsVolume, SupportedAgents) == 0x0002D0, "Member 'ANavMeshBoundsVolume::SupportedAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavMeshRenderingComponent \ +static_assert(alignof(UNavMeshRenderingComponent) == 0x000010, "Wrong alignment on UNavMeshRenderingComponent"); \ +static_assert(sizeof(UNavMeshRenderingComponent) == 0x0005D0, "Wrong size on UNavMeshRenderingComponent"); \ + +#define DUMPER7_ASSERTS_UNavTestRenderingComponent \ +static_assert(alignof(UNavTestRenderingComponent) == 0x000010, "Wrong alignment on UNavTestRenderingComponent"); \ +static_assert(sizeof(UNavTestRenderingComponent) == 0x0005C0, "Wrong size on UNavTestRenderingComponent"); \ + +#define DUMPER7_ASSERTS_RecastNavMesh_K2_ReplaceAreaInTileBounds \ +static_assert(alignof(RecastNavMesh_K2_ReplaceAreaInTileBounds) == 0x000008, "Wrong alignment on RecastNavMesh_K2_ReplaceAreaInTileBounds"); \ +static_assert(sizeof(RecastNavMesh_K2_ReplaceAreaInTileBounds) == 0x000050, "Wrong size on RecastNavMesh_K2_ReplaceAreaInTileBounds"); \ +static_assert(offsetof(RecastNavMesh_K2_ReplaceAreaInTileBounds, Bounds) == 0x000000, "Member 'RecastNavMesh_K2_ReplaceAreaInTileBounds::Bounds' has a wrong offset!"); \ +static_assert(offsetof(RecastNavMesh_K2_ReplaceAreaInTileBounds, OldArea) == 0x000038, "Member 'RecastNavMesh_K2_ReplaceAreaInTileBounds::OldArea' has a wrong offset!"); \ +static_assert(offsetof(RecastNavMesh_K2_ReplaceAreaInTileBounds, NewArea) == 0x000040, "Member 'RecastNavMesh_K2_ReplaceAreaInTileBounds::NewArea' has a wrong offset!"); \ +static_assert(offsetof(RecastNavMesh_K2_ReplaceAreaInTileBounds, ReplaceLinks) == 0x000048, "Member 'RecastNavMesh_K2_ReplaceAreaInTileBounds::ReplaceLinks' has a wrong offset!"); \ +static_assert(offsetof(RecastNavMesh_K2_ReplaceAreaInTileBounds, ReturnValue) == 0x000049, "Member 'RecastNavMesh_K2_ReplaceAreaInTileBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ARecastNavMesh \ +static_assert(alignof(ARecastNavMesh) == 0x000008, "Wrong alignment on ARecastNavMesh"); \ +static_assert(sizeof(ARecastNavMesh) == 0x0005C8, "Wrong size on ARecastNavMesh"); \ +static_assert(offsetof(ARecastNavMesh, DrawOffset) == 0x0004B4, "Member 'ARecastNavMesh::DrawOffset' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TileGenerationDebug) == 0x0004B8, "Member 'ARecastNavMesh::TileGenerationDebug' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TilePoolSize) == 0x0004D8, "Member 'ARecastNavMesh::TilePoolSize' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TileSizeUU) == 0x0004DC, "Member 'ARecastNavMesh::TileSizeUU' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, CellSize) == 0x0004E0, "Member 'ARecastNavMesh::CellSize' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, CellHeight) == 0x0004E4, "Member 'ARecastNavMesh::CellHeight' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, NavMeshResolutionParams) == 0x0004E8, "Member 'ARecastNavMesh::NavMeshResolutionParams' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, AgentRadius) == 0x00050C, "Member 'ARecastNavMesh::AgentRadius' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, AgentHeight) == 0x000510, "Member 'ARecastNavMesh::AgentHeight' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, AgentMaxSlope) == 0x000514, "Member 'ARecastNavMesh::AgentMaxSlope' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, AgentMaxStepHeight) == 0x000518, "Member 'ARecastNavMesh::AgentMaxStepHeight' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, MinRegionArea) == 0x00051C, "Member 'ARecastNavMesh::MinRegionArea' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, MergeRegionSize) == 0x000520, "Member 'ARecastNavMesh::MergeRegionSize' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, MaxSimplificationError) == 0x000524, "Member 'ARecastNavMesh::MaxSimplificationError' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, MaxSimultaneousTileGenerationJobsCount) == 0x000528, "Member 'ARecastNavMesh::MaxSimultaneousTileGenerationJobsCount' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TileNumberHardLimit) == 0x00052C, "Member 'ARecastNavMesh::TileNumberHardLimit' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, PolyRefTileBits) == 0x000530, "Member 'ARecastNavMesh::PolyRefTileBits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, PolyRefNavPolyBits) == 0x000534, "Member 'ARecastNavMesh::PolyRefNavPolyBits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, PolyRefSaltBits) == 0x000538, "Member 'ARecastNavMesh::PolyRefSaltBits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, NavMeshOriginOffset) == 0x000540, "Member 'ARecastNavMesh::NavMeshOriginOffset' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, DefaultDrawDistance) == 0x000558, "Member 'ARecastNavMesh::DefaultDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, DefaultMaxSearchNodes) == 0x00055C, "Member 'ARecastNavMesh::DefaultMaxSearchNodes' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, DefaultMaxHierarchicalSearchNodes) == 0x000560, "Member 'ARecastNavMesh::DefaultMaxHierarchicalSearchNodes' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, RegionPartitioning) == 0x000564, "Member 'ARecastNavMesh::RegionPartitioning' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, LayerPartitioning) == 0x000565, "Member 'ARecastNavMesh::LayerPartitioning' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, RegionChunkSplits) == 0x000568, "Member 'ARecastNavMesh::RegionChunkSplits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, LayerChunkSplits) == 0x00056C, "Member 'ARecastNavMesh::LayerChunkSplits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TimeSliceFilterLedgeSpansMaxYProcess) == 0x000574, "Member 'ARecastNavMesh::TimeSliceFilterLedgeSpansMaxYProcess' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TimeSliceLongDurationDebug) == 0x000578, "Member 'ARecastNavMesh::TimeSliceLongDurationDebug' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, InvokerTilePriorityBumpDistanceThresholdInTileUnits) == 0x000580, "Member 'ARecastNavMesh::InvokerTilePriorityBumpDistanceThresholdInTileUnits' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, InvokerTilePriorityBumpIncrease) == 0x000584, "Member 'ARecastNavMesh::InvokerTilePriorityBumpIncrease' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, TileSetUpdateInterval) == 0x00058C, "Member 'ARecastNavMesh::TileSetUpdateInterval' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, HeuristicScale) == 0x000590, "Member 'ARecastNavMesh::HeuristicScale' has a wrong offset!"); \ +static_assert(offsetof(ARecastNavMesh, VerticalDeviationFromGroundCompensation) == 0x000594, "Member 'ARecastNavMesh::VerticalDeviationFromGroundCompensation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URecastNavMeshDataChunk \ +static_assert(alignof(URecastNavMeshDataChunk) == 0x000008, "Wrong alignment on URecastNavMeshDataChunk"); \ +static_assert(sizeof(URecastNavMeshDataChunk) == 0x000040, "Wrong size on URecastNavMeshDataChunk"); \ + +#define DUMPER7_ASSERTS_NavModifierComponent_SetAreaClass \ +static_assert(alignof(NavModifierComponent_SetAreaClass) == 0x000008, "Wrong alignment on NavModifierComponent_SetAreaClass"); \ +static_assert(sizeof(NavModifierComponent_SetAreaClass) == 0x000008, "Wrong size on NavModifierComponent_SetAreaClass"); \ +static_assert(offsetof(NavModifierComponent_SetAreaClass, NewAreaClass) == 0x000000, "Member 'NavModifierComponent_SetAreaClass::NewAreaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavModifierComponent \ +static_assert(alignof(UNavModifierComponent) == 0x000010, "Wrong alignment on UNavModifierComponent"); \ +static_assert(sizeof(UNavModifierComponent) == 0x000190, "Wrong size on UNavModifierComponent"); \ +static_assert(offsetof(UNavModifierComponent, AreaClass) == 0x0000F0, "Member 'UNavModifierComponent::AreaClass' has a wrong offset!"); \ +static_assert(offsetof(UNavModifierComponent, FailsafeExtent) == 0x0000F8, "Member 'UNavModifierComponent::FailsafeExtent' has a wrong offset!"); \ +static_assert(offsetof(UNavModifierComponent, NavMeshResolution) == 0x000110, "Member 'UNavModifierComponent::NavMeshResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavModifierVolume_SetAreaClass \ +static_assert(alignof(NavModifierVolume_SetAreaClass) == 0x000008, "Wrong alignment on NavModifierVolume_SetAreaClass"); \ +static_assert(sizeof(NavModifierVolume_SetAreaClass) == 0x000008, "Wrong size on NavModifierVolume_SetAreaClass"); \ +static_assert(offsetof(NavModifierVolume_SetAreaClass, NewAreaClass) == 0x000000, "Member 'NavModifierVolume_SetAreaClass::NewAreaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANavModifierVolume \ +static_assert(alignof(ANavModifierVolume) == 0x000008, "Wrong alignment on ANavModifierVolume"); \ +static_assert(sizeof(ANavModifierVolume) == 0x0002E8, "Wrong size on ANavModifierVolume"); \ +static_assert(offsetof(ANavModifierVolume, AreaClass) == 0x0002D8, "Member 'ANavModifierVolume::AreaClass' has a wrong offset!"); \ +static_assert(offsetof(ANavModifierVolume, bMaskFillCollisionUnderneathForNavmesh) == 0x0002E0, "Member 'ANavModifierVolume::bMaskFillCollisionUnderneathForNavmesh' has a wrong offset!"); \ +static_assert(offsetof(ANavModifierVolume, NavMeshResolution) == 0x0002E1, "Member 'ANavModifierVolume::NavMeshResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANavSystemConfigOverride \ +static_assert(alignof(ANavSystemConfigOverride) == 0x000008, "Wrong alignment on ANavSystemConfigOverride"); \ +static_assert(sizeof(ANavSystemConfigOverride) == 0x0002A8, "Wrong size on ANavSystemConfigOverride"); \ +static_assert(offsetof(ANavSystemConfigOverride, NavigationSystemConfig) == 0x000298, "Member 'ANavSystemConfigOverride::NavigationSystemConfig' has a wrong offset!"); \ +static_assert(offsetof(ANavSystemConfigOverride, OverridePolicy) == 0x0002A0, "Member 'ANavSystemConfigOverride::OverridePolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvOverlapData \ +static_assert(alignof(FEnvOverlapData) == 0x000008, "Wrong alignment on FEnvOverlapData"); \ +static_assert(sizeof(FEnvOverlapData) == 0x000030, "Wrong size on FEnvOverlapData"); \ +static_assert(offsetof(FEnvOverlapData, ExtentX) == 0x000000, "Member 'FEnvOverlapData::ExtentX' has a wrong offset!"); \ +static_assert(offsetof(FEnvOverlapData, ExtentY) == 0x000004, "Member 'FEnvOverlapData::ExtentY' has a wrong offset!"); \ +static_assert(offsetof(FEnvOverlapData, ExtentZ) == 0x000008, "Member 'FEnvOverlapData::ExtentZ' has a wrong offset!"); \ +static_assert(offsetof(FEnvOverlapData, ShapeOffset) == 0x000010, "Member 'FEnvOverlapData::ShapeOffset' has a wrong offset!"); \ +static_assert(offsetof(FEnvOverlapData, OverlapChannel) == 0x000028, "Member 'FEnvOverlapData::OverlapChannel' has a wrong offset!"); \ +static_assert(offsetof(FEnvOverlapData, OverlapShape) == 0x000029, "Member 'FEnvOverlapData::OverlapShape' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIStimulus \ +static_assert(alignof(FAIStimulus) == 0x000008, "Wrong alignment on FAIStimulus"); \ +static_assert(sizeof(FAIStimulus) == 0x000058, "Wrong size on FAIStimulus"); \ +static_assert(offsetof(FAIStimulus, Age) == 0x000000, "Member 'FAIStimulus::Age' has a wrong offset!"); \ +static_assert(offsetof(FAIStimulus, ExpirationAge) == 0x000004, "Member 'FAIStimulus::ExpirationAge' has a wrong offset!"); \ +static_assert(offsetof(FAIStimulus, Strength) == 0x000008, "Member 'FAIStimulus::Strength' has a wrong offset!"); \ +static_assert(offsetof(FAIStimulus, StimulusLocation) == 0x000010, "Member 'FAIStimulus::StimulusLocation' has a wrong offset!"); \ +static_assert(offsetof(FAIStimulus, ReceiverLocation) == 0x000028, "Member 'FAIStimulus::ReceiverLocation' has a wrong offset!"); \ +static_assert(offsetof(FAIStimulus, Tag) == 0x000040, "Member 'FAIStimulus::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorPerceptionUpdateInfo \ +static_assert(alignof(FActorPerceptionUpdateInfo) == 0x000008, "Wrong alignment on FActorPerceptionUpdateInfo"); \ +static_assert(sizeof(FActorPerceptionUpdateInfo) == 0x000068, "Wrong size on FActorPerceptionUpdateInfo"); \ +static_assert(offsetof(FActorPerceptionUpdateInfo, TargetId) == 0x000000, "Member 'FActorPerceptionUpdateInfo::TargetId' has a wrong offset!"); \ +static_assert(offsetof(FActorPerceptionUpdateInfo, Target) == 0x000004, "Member 'FActorPerceptionUpdateInfo::Target' has a wrong offset!"); \ +static_assert(offsetof(FActorPerceptionUpdateInfo, Stimulus) == 0x000010, "Member 'FActorPerceptionUpdateInfo::Stimulus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvTraceData \ +static_assert(alignof(FEnvTraceData) == 0x000008, "Wrong alignment on FEnvTraceData"); \ +static_assert(sizeof(FEnvTraceData) == 0x000040, "Wrong size on FEnvTraceData"); \ +static_assert(offsetof(FEnvTraceData, VersionNum) == 0x000000, "Member 'FEnvTraceData::VersionNum' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, NavigationFilter) == 0x000008, "Member 'FEnvTraceData::NavigationFilter' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, ProjectDown) == 0x000010, "Member 'FEnvTraceData::ProjectDown' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, ProjectUp) == 0x000014, "Member 'FEnvTraceData::ProjectUp' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, ExtentX) == 0x000018, "Member 'FEnvTraceData::ExtentX' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, ExtentY) == 0x00001C, "Member 'FEnvTraceData::ExtentY' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, ExtentZ) == 0x000020, "Member 'FEnvTraceData::ExtentZ' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, PostProjectionVerticalOffset) == 0x000024, "Member 'FEnvTraceData::PostProjectionVerticalOffset' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, TraceChannel) == 0x000028, "Member 'FEnvTraceData::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, SerializedChannel) == 0x000029, "Member 'FEnvTraceData::SerializedChannel' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, TraceProfileName) == 0x00002C, "Member 'FEnvTraceData::TraceProfileName' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, TraceShape) == 0x000034, "Member 'FEnvTraceData::TraceShape' has a wrong offset!"); \ +static_assert(offsetof(FEnvTraceData, TraceMode) == 0x000035, "Member 'FEnvTraceData::TraceMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAINoiseEvent \ +static_assert(alignof(FAINoiseEvent) == 0x000008, "Wrong alignment on FAINoiseEvent"); \ +static_assert(sizeof(FAINoiseEvent) == 0x000040, "Wrong size on FAINoiseEvent"); \ +static_assert(offsetof(FAINoiseEvent, NoiseLocation) == 0x000008, "Member 'FAINoiseEvent::NoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(FAINoiseEvent, Loudness) == 0x000020, "Member 'FAINoiseEvent::Loudness' has a wrong offset!"); \ +static_assert(offsetof(FAINoiseEvent, MaxRange) == 0x000024, "Member 'FAINoiseEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FAINoiseEvent, Instigator) == 0x000028, "Member 'FAINoiseEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FAINoiseEvent, Tag) == 0x000030, "Member 'FAINoiseEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIMoveRequest \ +static_assert(alignof(FAIMoveRequest) == 0x000008, "Wrong alignment on FAIMoveRequest"); \ +static_assert(sizeof(FAIMoveRequest) == 0x000050, "Wrong size on FAIMoveRequest"); \ +static_assert(offsetof(FAIMoveRequest, GoalActor) == 0x000000, "Member 'FAIMoveRequest::GoalActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPawnActionStack \ +static_assert(alignof(FPawnActionStack) == 0x000008, "Wrong alignment on FPawnActionStack"); \ +static_assert(sizeof(FPawnActionStack) == 0x000008, "Wrong size on FPawnActionStack"); \ +static_assert(offsetof(FPawnActionStack, TopAction) == 0x000000, "Member 'FPawnActionStack::TopAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIRequestID \ +static_assert(alignof(FAIRequestID) == 0x000004, "Wrong alignment on FAIRequestID"); \ +static_assert(sizeof(FAIRequestID) == 0x000004, "Wrong size on FAIRequestID"); \ +static_assert(offsetof(FAIRequestID, RequestID) == 0x000000, "Member 'FAIRequestID::RequestID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntervalCountdown \ +static_assert(alignof(FIntervalCountdown) == 0x000004, "Wrong alignment on FIntervalCountdown"); \ +static_assert(sizeof(FIntervalCountdown) == 0x000008, "Wrong size on FIntervalCountdown"); \ +static_assert(offsetof(FIntervalCountdown, Interval) == 0x000000, "Member 'FIntervalCountdown::Interval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvNamedValue \ +static_assert(alignof(FEnvNamedValue) == 0x000004, "Wrong alignment on FEnvNamedValue"); \ +static_assert(sizeof(FEnvNamedValue) == 0x000010, "Wrong size on FEnvNamedValue"); \ +static_assert(offsetof(FEnvNamedValue, ParamName) == 0x000000, "Member 'FEnvNamedValue::ParamName' has a wrong offset!"); \ +static_assert(offsetof(FEnvNamedValue, ParamType) == 0x000008, "Member 'FEnvNamedValue::ParamType' has a wrong offset!"); \ +static_assert(offsetof(FEnvNamedValue, Value) == 0x00000C, "Member 'FEnvNamedValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvDirection \ +static_assert(alignof(FEnvDirection) == 0x000008, "Wrong alignment on FEnvDirection"); \ +static_assert(sizeof(FEnvDirection) == 0x000020, "Wrong size on FEnvDirection"); \ +static_assert(offsetof(FEnvDirection, LineFrom) == 0x000000, "Member 'FEnvDirection::LineFrom' has a wrong offset!"); \ +static_assert(offsetof(FEnvDirection, LineTo) == 0x000008, "Member 'FEnvDirection::LineTo' has a wrong offset!"); \ +static_assert(offsetof(FEnvDirection, Rotation) == 0x000010, "Member 'FEnvDirection::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FEnvDirection, DirMode) == 0x000018, "Member 'FEnvDirection::DirMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvQueryResult \ +static_assert(alignof(FEnvQueryResult) == 0x000008, "Wrong alignment on FEnvQueryResult"); \ +static_assert(sizeof(FEnvQueryResult) == 0x000040, "Wrong size on FEnvQueryResult"); \ +static_assert(offsetof(FEnvQueryResult, ItemType) == 0x000010, "Member 'FEnvQueryResult::ItemType' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryResult, OptionIndex) == 0x00002C, "Member 'FEnvQueryResult::OptionIndex' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryResult, QueryID) == 0x000030, "Member 'FEnvQueryResult::QueryID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlackboardKeySelector \ +static_assert(alignof(FBlackboardKeySelector) == 0x000008, "Wrong alignment on FBlackboardKeySelector"); \ +static_assert(sizeof(FBlackboardKeySelector) == 0x000028, "Wrong size on FBlackboardKeySelector"); \ +static_assert(offsetof(FBlackboardKeySelector, AllowedTypes) == 0x000000, "Member 'FBlackboardKeySelector::AllowedTypes' has a wrong offset!"); \ +static_assert(offsetof(FBlackboardKeySelector, SelectedKeyName) == 0x000010, "Member 'FBlackboardKeySelector::SelectedKeyName' has a wrong offset!"); \ +static_assert(offsetof(FBlackboardKeySelector, SelectedKeyType) == 0x000018, "Member 'FBlackboardKeySelector::SelectedKeyType' has a wrong offset!"); \ +static_assert(offsetof(FBlackboardKeySelector, SelectedKeyID) == 0x000020, "Member 'FBlackboardKeySelector::SelectedKeyID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDynamicParam \ +static_assert(alignof(FAIDynamicParam) == 0x000008, "Wrong alignment on FAIDynamicParam"); \ +static_assert(sizeof(FAIDynamicParam) == 0x000038, "Wrong size on FAIDynamicParam"); \ +static_assert(offsetof(FAIDynamicParam, ParamName) == 0x000000, "Member 'FAIDynamicParam::ParamName' has a wrong offset!"); \ +static_assert(offsetof(FAIDynamicParam, ParamType) == 0x000008, "Member 'FAIDynamicParam::ParamType' has a wrong offset!"); \ +static_assert(offsetof(FAIDynamicParam, Value) == 0x00000C, "Member 'FAIDynamicParam::Value' has a wrong offset!"); \ +static_assert(offsetof(FAIDynamicParam, BBKey) == 0x000010, "Member 'FAIDynamicParam::BBKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEQSParametrizedQueryExecutionRequest \ +static_assert(alignof(FEQSParametrizedQueryExecutionRequest) == 0x000008, "Wrong alignment on FEQSParametrizedQueryExecutionRequest"); \ +static_assert(sizeof(FEQSParametrizedQueryExecutionRequest) == 0x000048, "Wrong size on FEQSParametrizedQueryExecutionRequest"); \ +static_assert(offsetof(FEQSParametrizedQueryExecutionRequest, QueryTemplate) == 0x000000, "Member 'FEQSParametrizedQueryExecutionRequest::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(FEQSParametrizedQueryExecutionRequest, QueryConfig) == 0x000008, "Member 'FEQSParametrizedQueryExecutionRequest::QueryConfig' has a wrong offset!"); \ +static_assert(offsetof(FEQSParametrizedQueryExecutionRequest, EQSQueryBlackboardKey) == 0x000018, "Member 'FEQSParametrizedQueryExecutionRequest::EQSQueryBlackboardKey' has a wrong offset!"); \ +static_assert(offsetof(FEQSParametrizedQueryExecutionRequest, RunMode) == 0x000040, "Member 'FEQSParametrizedQueryExecutionRequest::RunMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGenericTeamId \ +static_assert(alignof(FGenericTeamId) == 0x000001, "Wrong alignment on FGenericTeamId"); \ +static_assert(sizeof(FGenericTeamId) == 0x000001, "Wrong size on FGenericTeamId"); \ +static_assert(offsetof(FGenericTeamId, TeamID) == 0x000000, "Member 'FGenericTeamId::TeamID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimpleIndexedHandleBase \ +static_assert(alignof(FSimpleIndexedHandleBase) == 0x000004, "Wrong alignment on FSimpleIndexedHandleBase"); \ +static_assert(sizeof(FSimpleIndexedHandleBase) == 0x000004, "Wrong size on FSimpleIndexedHandleBase"); \ + +#define DUMPER7_ASSERTS_FIndexedHandleBase \ +static_assert(alignof(FIndexedHandleBase) == 0x000004, "Wrong alignment on FIndexedHandleBase"); \ +static_assert(sizeof(FIndexedHandleBase) == 0x000008, "Wrong size on FIndexedHandleBase"); \ + +#define DUMPER7_ASSERTS_FCompactIndexedHandleBase \ +static_assert(alignof(FCompactIndexedHandleBase) == 0x000002, "Wrong alignment on FCompactIndexedHandleBase"); \ +static_assert(sizeof(FCompactIndexedHandleBase) == 0x000004, "Wrong size on FCompactIndexedHandleBase"); \ + +#define DUMPER7_ASSERTS_FSequentialIDBase \ +static_assert(alignof(FSequentialIDBase) == 0x000004, "Wrong alignment on FSequentialIDBase"); \ +static_assert(sizeof(FSequentialIDBase) == 0x000004, "Wrong size on FSequentialIDBase"); \ +static_assert(offsetof(FSequentialIDBase, Value) == 0x000000, "Member 'FSequentialIDBase::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPawnActionEvent \ +static_assert(alignof(FPawnActionEvent) == 0x000008, "Wrong alignment on FPawnActionEvent"); \ +static_assert(sizeof(FPawnActionEvent) == 0x000018, "Wrong size on FPawnActionEvent"); \ +static_assert(offsetof(FPawnActionEvent, Action) == 0x000000, "Member 'FPawnActionEvent::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBehaviorTreeTemplateInfo \ +static_assert(alignof(FBehaviorTreeTemplateInfo) == 0x000008, "Wrong alignment on FBehaviorTreeTemplateInfo"); \ +static_assert(sizeof(FBehaviorTreeTemplateInfo) == 0x000018, "Wrong size on FBehaviorTreeTemplateInfo"); \ +static_assert(offsetof(FBehaviorTreeTemplateInfo, Asset) == 0x000000, "Member 'FBehaviorTreeTemplateInfo::Asset' has a wrong offset!"); \ +static_assert(offsetof(FBehaviorTreeTemplateInfo, Template) == 0x000008, "Member 'FBehaviorTreeTemplateInfo::Template' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlackboardEntry \ +static_assert(alignof(FBlackboardEntry) == 0x000008, "Wrong alignment on FBlackboardEntry"); \ +static_assert(sizeof(FBlackboardEntry) == 0x000018, "Wrong size on FBlackboardEntry"); \ +static_assert(offsetof(FBlackboardEntry, EntryName) == 0x000000, "Member 'FBlackboardEntry::EntryName' has a wrong offset!"); \ +static_assert(offsetof(FBlackboardEntry, KeyType) == 0x000008, "Member 'FBlackboardEntry::KeyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBTDecoratorLogic \ +static_assert(alignof(FBTDecoratorLogic) == 0x000002, "Wrong alignment on FBTDecoratorLogic"); \ +static_assert(sizeof(FBTDecoratorLogic) == 0x000004, "Wrong size on FBTDecoratorLogic"); \ +static_assert(offsetof(FBTDecoratorLogic, Operation) == 0x000000, "Member 'FBTDecoratorLogic::Operation' has a wrong offset!"); \ +static_assert(offsetof(FBTDecoratorLogic, Number) == 0x000002, "Member 'FBTDecoratorLogic::Number' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBTCompositeChild \ +static_assert(alignof(FBTCompositeChild) == 0x000008, "Wrong alignment on FBTCompositeChild"); \ +static_assert(sizeof(FBTCompositeChild) == 0x000030, "Wrong size on FBTCompositeChild"); \ +static_assert(offsetof(FBTCompositeChild, ChildComposite) == 0x000000, "Member 'FBTCompositeChild::ChildComposite' has a wrong offset!"); \ +static_assert(offsetof(FBTCompositeChild, ChildTask) == 0x000008, "Member 'FBTCompositeChild::ChildTask' has a wrong offset!"); \ +static_assert(offsetof(FBTCompositeChild, Decorators) == 0x000010, "Member 'FBTCompositeChild::Decorators' has a wrong offset!"); \ +static_assert(offsetof(FBTCompositeChild, DecoratorOps) == 0x000020, "Member 'FBTCompositeChild::DecoratorOps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderValue \ +static_assert(alignof(FAIDataProviderValue) == 0x000008, "Wrong alignment on FAIDataProviderValue"); \ +static_assert(sizeof(FAIDataProviderValue) == 0x000020, "Wrong size on FAIDataProviderValue"); \ +static_assert(offsetof(FAIDataProviderValue, DataBinding) == 0x000010, "Member 'FAIDataProviderValue::DataBinding' has a wrong offset!"); \ +static_assert(offsetof(FAIDataProviderValue, DataField) == 0x000018, "Member 'FAIDataProviderValue::DataField' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderTypedValue \ +static_assert(alignof(FAIDataProviderTypedValue) == 0x000008, "Wrong alignment on FAIDataProviderTypedValue"); \ +static_assert(sizeof(FAIDataProviderTypedValue) == 0x000030, "Wrong size on FAIDataProviderTypedValue"); \ +static_assert(offsetof(FAIDataProviderTypedValue, PropertyType) == 0x000020, "Member 'FAIDataProviderTypedValue::PropertyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderStructValue \ +static_assert(alignof(FAIDataProviderStructValue) == 0x000008, "Wrong alignment on FAIDataProviderStructValue"); \ +static_assert(sizeof(FAIDataProviderStructValue) == 0x000030, "Wrong size on FAIDataProviderStructValue"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderIntValue \ +static_assert(alignof(FAIDataProviderIntValue) == 0x000008, "Wrong alignment on FAIDataProviderIntValue"); \ +static_assert(sizeof(FAIDataProviderIntValue) == 0x000038, "Wrong size on FAIDataProviderIntValue"); \ +static_assert(offsetof(FAIDataProviderIntValue, DefaultValue) == 0x000030, "Member 'FAIDataProviderIntValue::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderFloatValue \ +static_assert(alignof(FAIDataProviderFloatValue) == 0x000008, "Wrong alignment on FAIDataProviderFloatValue"); \ +static_assert(sizeof(FAIDataProviderFloatValue) == 0x000038, "Wrong size on FAIDataProviderFloatValue"); \ +static_assert(offsetof(FAIDataProviderFloatValue, DefaultValue) == 0x000030, "Member 'FAIDataProviderFloatValue::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIDataProviderBoolValue \ +static_assert(alignof(FAIDataProviderBoolValue) == 0x000008, "Wrong alignment on FAIDataProviderBoolValue"); \ +static_assert(sizeof(FAIDataProviderBoolValue) == 0x000038, "Wrong size on FAIDataProviderBoolValue"); \ +static_assert(offsetof(FAIDataProviderBoolValue, DefaultValue) == 0x000030, "Member 'FAIDataProviderBoolValue::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvQueryManagerConfig \ +static_assert(alignof(FEnvQueryManagerConfig) == 0x000008, "Wrong alignment on FEnvQueryManagerConfig"); \ +static_assert(sizeof(FEnvQueryManagerConfig) == 0x000030, "Wrong size on FEnvQueryManagerConfig"); \ +static_assert(offsetof(FEnvQueryManagerConfig, MaxAllowedTestingTime) == 0x000000, "Member 'FEnvQueryManagerConfig::MaxAllowedTestingTime' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, bTestQueriesUsingBreadth) == 0x000004, "Member 'FEnvQueryManagerConfig::bTestQueriesUsingBreadth' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, QueryCountWarningThreshold) == 0x000008, "Member 'FEnvQueryManagerConfig::QueryCountWarningThreshold' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, QueryCountWarningInterval) == 0x000010, "Member 'FEnvQueryManagerConfig::QueryCountWarningInterval' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, ExecutionTimeWarningSeconds) == 0x000018, "Member 'FEnvQueryManagerConfig::ExecutionTimeWarningSeconds' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, HandlingResultTimeWarningSeconds) == 0x000020, "Member 'FEnvQueryManagerConfig::HandlingResultTimeWarningSeconds' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryManagerConfig, GenerationTimeWarningSeconds) == 0x000028, "Member 'FEnvQueryManagerConfig::GenerationTimeWarningSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvQueryRequest \ +static_assert(alignof(FEnvQueryRequest) == 0x000008, "Wrong alignment on FEnvQueryRequest"); \ +static_assert(sizeof(FEnvQueryRequest) == 0x000068, "Wrong size on FEnvQueryRequest"); \ +static_assert(offsetof(FEnvQueryRequest, QueryTemplate) == 0x000000, "Member 'FEnvQueryRequest::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryRequest, Owner) == 0x000008, "Member 'FEnvQueryRequest::Owner' has a wrong offset!"); \ +static_assert(offsetof(FEnvQueryRequest, World) == 0x000010, "Member 'FEnvQueryRequest::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnvQueryInstanceCache \ +static_assert(alignof(FEnvQueryInstanceCache) == 0x000008, "Wrong alignment on FEnvQueryInstanceCache"); \ +static_assert(sizeof(FEnvQueryInstanceCache) == 0x000180, "Wrong size on FEnvQueryInstanceCache"); \ +static_assert(offsetof(FEnvQueryInstanceCache, Template) == 0x000000, "Member 'FEnvQueryInstanceCache::Template' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCrowdAvoidanceConfig \ +static_assert(alignof(FCrowdAvoidanceConfig) == 0x000004, "Wrong alignment on FCrowdAvoidanceConfig"); \ +static_assert(sizeof(FCrowdAvoidanceConfig) == 0x00001C, "Wrong size on FCrowdAvoidanceConfig"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, VelocityBias) == 0x000000, "Member 'FCrowdAvoidanceConfig::VelocityBias' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, DesiredVelocityWeight) == 0x000004, "Member 'FCrowdAvoidanceConfig::DesiredVelocityWeight' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, CurrentVelocityWeight) == 0x000008, "Member 'FCrowdAvoidanceConfig::CurrentVelocityWeight' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, SideBiasWeight) == 0x00000C, "Member 'FCrowdAvoidanceConfig::SideBiasWeight' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, ImpactTimeWeight) == 0x000010, "Member 'FCrowdAvoidanceConfig::ImpactTimeWeight' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, ImpactTimeRange) == 0x000014, "Member 'FCrowdAvoidanceConfig::ImpactTimeRange' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, CustomPatternIdx) == 0x000018, "Member 'FCrowdAvoidanceConfig::CustomPatternIdx' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, AdaptiveDivisions) == 0x000019, "Member 'FCrowdAvoidanceConfig::AdaptiveDivisions' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, AdaptiveRings) == 0x00001A, "Member 'FCrowdAvoidanceConfig::AdaptiveRings' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceConfig, AdaptiveDepth) == 0x00001B, "Member 'FCrowdAvoidanceConfig::AdaptiveDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCrowdAvoidanceSamplingPattern \ +static_assert(alignof(FCrowdAvoidanceSamplingPattern) == 0x000008, "Wrong alignment on FCrowdAvoidanceSamplingPattern"); \ +static_assert(sizeof(FCrowdAvoidanceSamplingPattern) == 0x000020, "Wrong size on FCrowdAvoidanceSamplingPattern"); \ +static_assert(offsetof(FCrowdAvoidanceSamplingPattern, Angles) == 0x000000, "Member 'FCrowdAvoidanceSamplingPattern::Angles' has a wrong offset!"); \ +static_assert(offsetof(FCrowdAvoidanceSamplingPattern, Radii) == 0x000010, "Member 'FCrowdAvoidanceSamplingPattern::Radii' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRecastGraphWrapper \ +static_assert(alignof(FRecastGraphWrapper) == 0x000008, "Wrong alignment on FRecastGraphWrapper"); \ +static_assert(sizeof(FRecastGraphWrapper) == 0x0000B8, "Wrong size on FRecastGraphWrapper"); \ +static_assert(offsetof(FRecastGraphWrapper, RecastNavMeshActor) == 0x000000, "Member 'FRecastGraphWrapper::RecastNavMeshActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorPerceptionBlueprintInfo \ +static_assert(alignof(FActorPerceptionBlueprintInfo) == 0x000008, "Wrong alignment on FActorPerceptionBlueprintInfo"); \ +static_assert(sizeof(FActorPerceptionBlueprintInfo) == 0x000020, "Wrong size on FActorPerceptionBlueprintInfo"); \ +static_assert(offsetof(FActorPerceptionBlueprintInfo, Target) == 0x000000, "Member 'FActorPerceptionBlueprintInfo::Target' has a wrong offset!"); \ +static_assert(offsetof(FActorPerceptionBlueprintInfo, LastSensedStimuli) == 0x000008, "Member 'FActorPerceptionBlueprintInfo::LastSensedStimuli' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAISenseAffiliationFilter \ +static_assert(alignof(FAISenseAffiliationFilter) == 0x000004, "Wrong alignment on FAISenseAffiliationFilter"); \ +static_assert(sizeof(FAISenseAffiliationFilter) == 0x000004, "Wrong size on FAISenseAffiliationFilter"); \ + +#define DUMPER7_ASSERTS_FAIDamageEvent \ +static_assert(alignof(FAIDamageEvent) == 0x000008, "Wrong alignment on FAIDamageEvent"); \ +static_assert(sizeof(FAIDamageEvent) == 0x000050, "Wrong size on FAIDamageEvent"); \ +static_assert(offsetof(FAIDamageEvent, Amount) == 0x000000, "Member 'FAIDamageEvent::Amount' has a wrong offset!"); \ +static_assert(offsetof(FAIDamageEvent, Location) == 0x000008, "Member 'FAIDamageEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FAIDamageEvent, HitLocation) == 0x000020, "Member 'FAIDamageEvent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(FAIDamageEvent, DamagedActor) == 0x000038, "Member 'FAIDamageEvent::DamagedActor' has a wrong offset!"); \ +static_assert(offsetof(FAIDamageEvent, Instigator) == 0x000040, "Member 'FAIDamageEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FAIDamageEvent, Tag) == 0x000048, "Member 'FAIDamageEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAIPredictionEvent \ +static_assert(alignof(FAIPredictionEvent) == 0x000008, "Wrong alignment on FAIPredictionEvent"); \ +static_assert(sizeof(FAIPredictionEvent) == 0x000018, "Wrong size on FAIPredictionEvent"); \ +static_assert(offsetof(FAIPredictionEvent, Requestor) == 0x000000, "Member 'FAIPredictionEvent::Requestor' has a wrong offset!"); \ +static_assert(offsetof(FAIPredictionEvent, PredictedActor) == 0x000008, "Member 'FAIPredictionEvent::PredictedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAISightEvent \ +static_assert(alignof(FAISightEvent) == 0x000008, "Wrong alignment on FAISightEvent"); \ +static_assert(sizeof(FAISightEvent) == 0x000018, "Wrong size on FAISightEvent"); \ +static_assert(offsetof(FAISightEvent, SeenActor) == 0x000008, "Member 'FAISightEvent::SeenActor' has a wrong offset!"); \ +static_assert(offsetof(FAISightEvent, Observer) == 0x000010, "Member 'FAISightEvent::Observer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAITeamStimulusEvent \ +static_assert(alignof(FAITeamStimulusEvent) == 0x000008, "Wrong alignment on FAITeamStimulusEvent"); \ +static_assert(sizeof(FAITeamStimulusEvent) == 0x000050, "Wrong size on FAITeamStimulusEvent"); \ +static_assert(offsetof(FAITeamStimulusEvent, Broadcaster) == 0x000040, "Member 'FAITeamStimulusEvent::Broadcaster' has a wrong offset!"); \ +static_assert(offsetof(FAITeamStimulusEvent, Enemy) == 0x000048, "Member 'FAITeamStimulusEvent::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAITouchEvent \ +static_assert(alignof(FAITouchEvent) == 0x000008, "Wrong alignment on FAITouchEvent"); \ +static_assert(sizeof(FAITouchEvent) == 0x000028, "Wrong size on FAITouchEvent"); \ +static_assert(offsetof(FAITouchEvent, TouchReceiver) == 0x000018, "Member 'FAITouchEvent::TouchReceiver' has a wrong offset!"); \ +static_assert(offsetof(FAITouchEvent, OtherActor) == 0x000020, "Member 'FAITouchEvent::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIAsyncTaskBlueprintProxy_OnMoveCompleted \ +static_assert(alignof(AIAsyncTaskBlueprintProxy_OnMoveCompleted) == 0x000004, "Wrong alignment on AIAsyncTaskBlueprintProxy_OnMoveCompleted"); \ +static_assert(sizeof(AIAsyncTaskBlueprintProxy_OnMoveCompleted) == 0x000008, "Wrong size on AIAsyncTaskBlueprintProxy_OnMoveCompleted"); \ +static_assert(offsetof(AIAsyncTaskBlueprintProxy_OnMoveCompleted, RequestID) == 0x000000, "Member 'AIAsyncTaskBlueprintProxy_OnMoveCompleted::RequestID' has a wrong offset!"); \ +static_assert(offsetof(AIAsyncTaskBlueprintProxy_OnMoveCompleted, MovementResult) == 0x000004, "Member 'AIAsyncTaskBlueprintProxy_OnMoveCompleted::MovementResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIAsyncTaskBlueprintProxy \ +static_assert(alignof(UAIAsyncTaskBlueprintProxy) == 0x000008, "Wrong alignment on UAIAsyncTaskBlueprintProxy"); \ +static_assert(sizeof(UAIAsyncTaskBlueprintProxy) == 0x000068, "Wrong size on UAIAsyncTaskBlueprintProxy"); \ +static_assert(offsetof(UAIAsyncTaskBlueprintProxy, OnSuccess) == 0x000028, "Member 'UAIAsyncTaskBlueprintProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UAIAsyncTaskBlueprintProxy, OnFail) == 0x000038, "Member 'UAIAsyncTaskBlueprintProxy::OnFail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAIResourceInterface \ +static_assert(alignof(IAIResourceInterface) == 0x000001, "Wrong alignment on IAIResourceInterface"); \ +static_assert(sizeof(IAIResourceInterface) == 0x000001, "Wrong size on IAIResourceInterface"); \ + +#define DUMPER7_ASSERTS_UAISenseBlueprintListener \ +static_assert(alignof(UAISenseBlueprintListener) == 0x000008, "Wrong alignment on UAISenseBlueprintListener"); \ +static_assert(sizeof(UAISenseBlueprintListener) == 0x000108, "Wrong size on UAISenseBlueprintListener"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig \ +static_assert(alignof(UAISenseConfig) == 0x000008, "Wrong alignment on UAISenseConfig"); \ +static_assert(sizeof(UAISenseConfig) == 0x000048, "Wrong size on UAISenseConfig"); \ +static_assert(offsetof(UAISenseConfig, DebugColor) == 0x000028, "Member 'UAISenseConfig::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig, MaxAge) == 0x00002C, "Member 'UAISenseConfig::MaxAge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Blueprint \ +static_assert(alignof(UAISenseConfig_Blueprint) == 0x000008, "Wrong alignment on UAISenseConfig_Blueprint"); \ +static_assert(sizeof(UAISenseConfig_Blueprint) == 0x000050, "Wrong size on UAISenseConfig_Blueprint"); \ +static_assert(offsetof(UAISenseConfig_Blueprint, Implementation) == 0x000048, "Member 'UAISenseConfig_Blueprint::Implementation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Hearing \ +static_assert(alignof(UAISenseConfig_Hearing) == 0x000008, "Wrong alignment on UAISenseConfig_Hearing"); \ +static_assert(sizeof(UAISenseConfig_Hearing) == 0x000060, "Wrong size on UAISenseConfig_Hearing"); \ +static_assert(offsetof(UAISenseConfig_Hearing, Implementation) == 0x000048, "Member 'UAISenseConfig_Hearing::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Hearing, HearingRange) == 0x000050, "Member 'UAISenseConfig_Hearing::HearingRange' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Hearing, LoSHearingRange) == 0x000054, "Member 'UAISenseConfig_Hearing::LoSHearingRange' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Hearing, DetectionByAffiliation) == 0x00005C, "Member 'UAISenseConfig_Hearing::DetectionByAffiliation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Prediction \ +static_assert(alignof(UAISenseConfig_Prediction) == 0x000008, "Wrong alignment on UAISenseConfig_Prediction"); \ +static_assert(sizeof(UAISenseConfig_Prediction) == 0x000048, "Wrong size on UAISenseConfig_Prediction"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Sight \ +static_assert(alignof(UAISenseConfig_Sight) == 0x000008, "Wrong alignment on UAISenseConfig_Sight"); \ +static_assert(sizeof(UAISenseConfig_Sight) == 0x000070, "Wrong size on UAISenseConfig_Sight"); \ +static_assert(offsetof(UAISenseConfig_Sight, Implementation) == 0x000048, "Member 'UAISenseConfig_Sight::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, SightRadius) == 0x000050, "Member 'UAISenseConfig_Sight::SightRadius' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, LoseSightRadius) == 0x000054, "Member 'UAISenseConfig_Sight::LoseSightRadius' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, PeripheralVisionAngleDegrees) == 0x000058, "Member 'UAISenseConfig_Sight::PeripheralVisionAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, DetectionByAffiliation) == 0x00005C, "Member 'UAISenseConfig_Sight::DetectionByAffiliation' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, AutoSuccessRangeFromLastSeenLocation) == 0x000060, "Member 'UAISenseConfig_Sight::AutoSuccessRangeFromLastSeenLocation' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, PointOfViewBackwardOffset) == 0x000064, "Member 'UAISenseConfig_Sight::PointOfViewBackwardOffset' has a wrong offset!"); \ +static_assert(offsetof(UAISenseConfig_Sight, NearClippingRadius) == 0x000068, "Member 'UAISenseConfig_Sight::NearClippingRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Team \ +static_assert(alignof(UAISenseConfig_Team) == 0x000008, "Wrong alignment on UAISenseConfig_Team"); \ +static_assert(sizeof(UAISenseConfig_Team) == 0x000048, "Wrong size on UAISenseConfig_Team"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Touch \ +static_assert(alignof(UAISenseConfig_Touch) == 0x000008, "Wrong alignment on UAISenseConfig_Touch"); \ +static_assert(sizeof(UAISenseConfig_Touch) == 0x000048, "Wrong size on UAISenseConfig_Touch"); \ + +#define DUMPER7_ASSERTS_UAISenseEvent \ +static_assert(alignof(UAISenseEvent) == 0x000008, "Wrong alignment on UAISenseEvent"); \ +static_assert(sizeof(UAISenseEvent) == 0x000028, "Wrong size on UAISenseEvent"); \ + +#define DUMPER7_ASSERTS_UAISenseEvent_Damage \ +static_assert(alignof(UAISenseEvent_Damage) == 0x000008, "Wrong alignment on UAISenseEvent_Damage"); \ +static_assert(sizeof(UAISenseEvent_Damage) == 0x000078, "Wrong size on UAISenseEvent_Damage"); \ +static_assert(offsetof(UAISenseEvent_Damage, Event) == 0x000028, "Member 'UAISenseEvent_Damage::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseEvent_Hearing \ +static_assert(alignof(UAISenseEvent_Hearing) == 0x000008, "Wrong alignment on UAISenseEvent_Hearing"); \ +static_assert(sizeof(UAISenseEvent_Hearing) == 0x000068, "Wrong size on UAISenseEvent_Hearing"); \ +static_assert(offsetof(UAISenseEvent_Hearing, Event) == 0x000028, "Member 'UAISenseEvent_Hearing::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ICrowdAgentInterface \ +static_assert(alignof(ICrowdAgentInterface) == 0x000001, "Wrong alignment on ICrowdAgentInterface"); \ +static_assert(sizeof(ICrowdAgentInterface) == 0x000001, "Wrong size on ICrowdAgentInterface"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTypes \ +static_assert(alignof(UEnvQueryTypes) == 0x000008, "Wrong alignment on UEnvQueryTypes"); \ +static_assert(sizeof(UEnvQueryTypes) == 0x000028, "Wrong size on UEnvQueryTypes"); \ + +#define DUMPER7_ASSERTS_IEQSQueryResultSourceInterface \ +static_assert(alignof(IEQSQueryResultSourceInterface) == 0x000001, "Wrong alignment on IEQSQueryResultSourceInterface"); \ +static_assert(sizeof(IEQSQueryResultSourceInterface) == 0x000001, "Wrong size on IEQSQueryResultSourceInterface"); \ + +#define DUMPER7_ASSERTS_IGenericTeamAgentInterface \ +static_assert(alignof(IGenericTeamAgentInterface) == 0x000001, "Wrong alignment on IGenericTeamAgentInterface"); \ +static_assert(sizeof(IGenericTeamAgentInterface) == 0x000001, "Wrong size on IGenericTeamAgentInterface"); \ + +#define DUMPER7_ASSERTS_PawnAction_CreateActionInstance \ +static_assert(alignof(PawnAction_CreateActionInstance) == 0x000008, "Wrong alignment on PawnAction_CreateActionInstance"); \ +static_assert(sizeof(PawnAction_CreateActionInstance) == 0x000018, "Wrong size on PawnAction_CreateActionInstance"); \ +static_assert(offsetof(PawnAction_CreateActionInstance, WorldContextObject) == 0x000000, "Member 'PawnAction_CreateActionInstance::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(PawnAction_CreateActionInstance, ActionClass) == 0x000008, "Member 'PawnAction_CreateActionInstance::ActionClass' has a wrong offset!"); \ +static_assert(offsetof(PawnAction_CreateActionInstance, ReturnValue) == 0x000010, "Member 'PawnAction_CreateActionInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_Finish \ +static_assert(alignof(PawnAction_Finish) == 0x000001, "Wrong alignment on PawnAction_Finish"); \ +static_assert(sizeof(PawnAction_Finish) == 0x000001, "Wrong size on PawnAction_Finish"); \ +static_assert(offsetof(PawnAction_Finish, WithResult) == 0x000000, "Member 'PawnAction_Finish::WithResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_GetActionPriority \ +static_assert(alignof(PawnAction_GetActionPriority) == 0x000001, "Wrong alignment on PawnAction_GetActionPriority"); \ +static_assert(sizeof(PawnAction_GetActionPriority) == 0x000001, "Wrong size on PawnAction_GetActionPriority"); \ +static_assert(offsetof(PawnAction_GetActionPriority, ReturnValue) == 0x000000, "Member 'PawnAction_GetActionPriority::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnAction \ +static_assert(alignof(UPawnAction) == 0x000008, "Wrong alignment on UPawnAction"); \ +static_assert(sizeof(UPawnAction) == 0x000090, "Wrong size on UPawnAction"); \ +static_assert(offsetof(UPawnAction, ChildAction) == 0x000028, "Member 'UPawnAction::ChildAction' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction, ParentAction) == 0x000030, "Member 'UPawnAction::ParentAction' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction, OwnerComponent) == 0x000038, "Member 'UPawnAction::OwnerComponent' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction, Instigator) == 0x000040, "Member 'UPawnAction::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction, BrainComp) == 0x000048, "Member 'UPawnAction::BrainComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnActionsComponent_K2_PerformAction \ +static_assert(alignof(PawnActionsComponent_K2_PerformAction) == 0x000008, "Wrong alignment on PawnActionsComponent_K2_PerformAction"); \ +static_assert(sizeof(PawnActionsComponent_K2_PerformAction) == 0x000018, "Wrong size on PawnActionsComponent_K2_PerformAction"); \ +static_assert(offsetof(PawnActionsComponent_K2_PerformAction, Pawn) == 0x000000, "Member 'PawnActionsComponent_K2_PerformAction::Pawn' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PerformAction, Action) == 0x000008, "Member 'PawnActionsComponent_K2_PerformAction::Action' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PerformAction, Priority) == 0x000010, "Member 'PawnActionsComponent_K2_PerformAction::Priority' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PerformAction, ReturnValue) == 0x000011, "Member 'PawnActionsComponent_K2_PerformAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnActionsComponent_K2_AbortAction \ +static_assert(alignof(PawnActionsComponent_K2_AbortAction) == 0x000008, "Wrong alignment on PawnActionsComponent_K2_AbortAction"); \ +static_assert(sizeof(PawnActionsComponent_K2_AbortAction) == 0x000010, "Wrong size on PawnActionsComponent_K2_AbortAction"); \ +static_assert(offsetof(PawnActionsComponent_K2_AbortAction, ActionToAbort) == 0x000000, "Member 'PawnActionsComponent_K2_AbortAction::ActionToAbort' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_AbortAction, ReturnValue) == 0x000008, "Member 'PawnActionsComponent_K2_AbortAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnActionsComponent_K2_ForceAbortAction \ +static_assert(alignof(PawnActionsComponent_K2_ForceAbortAction) == 0x000008, "Wrong alignment on PawnActionsComponent_K2_ForceAbortAction"); \ +static_assert(sizeof(PawnActionsComponent_K2_ForceAbortAction) == 0x000010, "Wrong size on PawnActionsComponent_K2_ForceAbortAction"); \ +static_assert(offsetof(PawnActionsComponent_K2_ForceAbortAction, ActionToAbort) == 0x000000, "Member 'PawnActionsComponent_K2_ForceAbortAction::ActionToAbort' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_ForceAbortAction, ReturnValue) == 0x000008, "Member 'PawnActionsComponent_K2_ForceAbortAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnActionsComponent_K2_PushAction \ +static_assert(alignof(PawnActionsComponent_K2_PushAction) == 0x000008, "Wrong alignment on PawnActionsComponent_K2_PushAction"); \ +static_assert(sizeof(PawnActionsComponent_K2_PushAction) == 0x000020, "Wrong size on PawnActionsComponent_K2_PushAction"); \ +static_assert(offsetof(PawnActionsComponent_K2_PushAction, NewAction) == 0x000000, "Member 'PawnActionsComponent_K2_PushAction::NewAction' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PushAction, Priority) == 0x000008, "Member 'PawnActionsComponent_K2_PushAction::Priority' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PushAction, Instigator) == 0x000010, "Member 'PawnActionsComponent_K2_PushAction::Instigator' has a wrong offset!"); \ +static_assert(offsetof(PawnActionsComponent_K2_PushAction, ReturnValue) == 0x000018, "Member 'PawnActionsComponent_K2_PushAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnActionsComponent \ +static_assert(alignof(UPawnActionsComponent) == 0x000008, "Wrong alignment on UPawnActionsComponent"); \ +static_assert(sizeof(UPawnActionsComponent) == 0x0000D8, "Wrong size on UPawnActionsComponent"); \ +static_assert(offsetof(UPawnActionsComponent, ControlledPawn) == 0x0000A0, "Member 'UPawnActionsComponent::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(UPawnActionsComponent, ActionStacks) == 0x0000A8, "Member 'UPawnActionsComponent::ActionStacks' has a wrong offset!"); \ +static_assert(offsetof(UPawnActionsComponent, ActionEvents) == 0x0000B8, "Member 'UPawnActionsComponent::ActionEvents' has a wrong offset!"); \ +static_assert(offsetof(UPawnActionsComponent, CurrentAction) == 0x0000C8, "Member 'UPawnActionsComponent::CurrentAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_BlueprintBase_ActionFinished \ +static_assert(alignof(PawnAction_BlueprintBase_ActionFinished) == 0x000008, "Wrong alignment on PawnAction_BlueprintBase_ActionFinished"); \ +static_assert(sizeof(PawnAction_BlueprintBase_ActionFinished) == 0x000010, "Wrong size on PawnAction_BlueprintBase_ActionFinished"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionFinished, ControlledPawn) == 0x000000, "Member 'PawnAction_BlueprintBase_ActionFinished::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionFinished, WithResult) == 0x000008, "Member 'PawnAction_BlueprintBase_ActionFinished::WithResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_BlueprintBase_ActionPause \ +static_assert(alignof(PawnAction_BlueprintBase_ActionPause) == 0x000008, "Wrong alignment on PawnAction_BlueprintBase_ActionPause"); \ +static_assert(sizeof(PawnAction_BlueprintBase_ActionPause) == 0x000008, "Wrong size on PawnAction_BlueprintBase_ActionPause"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionPause, ControlledPawn) == 0x000000, "Member 'PawnAction_BlueprintBase_ActionPause::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_BlueprintBase_ActionResume \ +static_assert(alignof(PawnAction_BlueprintBase_ActionResume) == 0x000008, "Wrong alignment on PawnAction_BlueprintBase_ActionResume"); \ +static_assert(sizeof(PawnAction_BlueprintBase_ActionResume) == 0x000008, "Wrong size on PawnAction_BlueprintBase_ActionResume"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionResume, ControlledPawn) == 0x000000, "Member 'PawnAction_BlueprintBase_ActionResume::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_BlueprintBase_ActionStart \ +static_assert(alignof(PawnAction_BlueprintBase_ActionStart) == 0x000008, "Wrong alignment on PawnAction_BlueprintBase_ActionStart"); \ +static_assert(sizeof(PawnAction_BlueprintBase_ActionStart) == 0x000008, "Wrong size on PawnAction_BlueprintBase_ActionStart"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionStart, ControlledPawn) == 0x000000, "Member 'PawnAction_BlueprintBase_ActionStart::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnAction_BlueprintBase_ActionTick \ +static_assert(alignof(PawnAction_BlueprintBase_ActionTick) == 0x000008, "Wrong alignment on PawnAction_BlueprintBase_ActionTick"); \ +static_assert(sizeof(PawnAction_BlueprintBase_ActionTick) == 0x000010, "Wrong size on PawnAction_BlueprintBase_ActionTick"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionTick, ControlledPawn) == 0x000000, "Member 'PawnAction_BlueprintBase_ActionTick::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(PawnAction_BlueprintBase_ActionTick, DeltaSeconds) == 0x000008, "Member 'PawnAction_BlueprintBase_ActionTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnAction_BlueprintBase \ +static_assert(alignof(UPawnAction_BlueprintBase) == 0x000008, "Wrong alignment on UPawnAction_BlueprintBase"); \ +static_assert(sizeof(UPawnAction_BlueprintBase) == 0x000090, "Wrong size on UPawnAction_BlueprintBase"); \ + +#define DUMPER7_ASSERTS_UPawnAction_Move \ +static_assert(alignof(UPawnAction_Move) == 0x000008, "Wrong alignment on UPawnAction_Move"); \ +static_assert(sizeof(UPawnAction_Move) == 0x0000F0, "Wrong size on UPawnAction_Move"); \ +static_assert(offsetof(UPawnAction_Move, GoalActor) == 0x000090, "Member 'UPawnAction_Move::GoalActor' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Move, GoalLocation) == 0x000098, "Member 'UPawnAction_Move::GoalLocation' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Move, AcceptableRadius) == 0x0000B0, "Member 'UPawnAction_Move::AcceptableRadius' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Move, FilterClass) == 0x0000B8, "Member 'UPawnAction_Move::FilterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnAction_Repeat \ +static_assert(alignof(UPawnAction_Repeat) == 0x000008, "Wrong alignment on UPawnAction_Repeat"); \ +static_assert(sizeof(UPawnAction_Repeat) == 0x0000B0, "Wrong size on UPawnAction_Repeat"); \ +static_assert(offsetof(UPawnAction_Repeat, ActionToRepeat) == 0x000090, "Member 'UPawnAction_Repeat::ActionToRepeat' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Repeat, RecentActionCopy) == 0x000098, "Member 'UPawnAction_Repeat::RecentActionCopy' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Repeat, ChildFailureHandlingMode) == 0x0000A0, "Member 'UPawnAction_Repeat::ChildFailureHandlingMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnAction_Sequence \ +static_assert(alignof(UPawnAction_Sequence) == 0x000008, "Wrong alignment on UPawnAction_Sequence"); \ +static_assert(sizeof(UPawnAction_Sequence) == 0x0000B8, "Wrong size on UPawnAction_Sequence"); \ +static_assert(offsetof(UPawnAction_Sequence, ActionSequence) == 0x000090, "Member 'UPawnAction_Sequence::ActionSequence' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Sequence, ChildFailureHandlingMode) == 0x0000A0, "Member 'UPawnAction_Sequence::ChildFailureHandlingMode' has a wrong offset!"); \ +static_assert(offsetof(UPawnAction_Sequence, RecentActionCopy) == 0x0000A8, "Member 'UPawnAction_Sequence::RecentActionCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnAction_Wait \ +static_assert(alignof(UPawnAction_Wait) == 0x000008, "Wrong alignment on UPawnAction_Wait"); \ +static_assert(sizeof(UPawnAction_Wait) == 0x0000A0, "Wrong size on UPawnAction_Wait"); \ +static_assert(offsetof(UPawnAction_Wait, TimeToWait) == 0x000090, "Member 'UPawnAction_Wait::TimeToWait' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_ClaimTaskResource \ +static_assert(alignof(AIController_ClaimTaskResource) == 0x000008, "Wrong alignment on AIController_ClaimTaskResource"); \ +static_assert(sizeof(AIController_ClaimTaskResource) == 0x000008, "Wrong size on AIController_ClaimTaskResource"); \ +static_assert(offsetof(AIController_ClaimTaskResource, ResourceClass) == 0x000000, "Member 'AIController_ClaimTaskResource::ResourceClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetAIPerceptionComponent \ +static_assert(alignof(AIController_GetAIPerceptionComponent) == 0x000008, "Wrong alignment on AIController_GetAIPerceptionComponent"); \ +static_assert(sizeof(AIController_GetAIPerceptionComponent) == 0x000008, "Wrong size on AIController_GetAIPerceptionComponent"); \ +static_assert(offsetof(AIController_GetAIPerceptionComponent, ReturnValue) == 0x000000, "Member 'AIController_GetAIPerceptionComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_K2_SetFocalPoint \ +static_assert(alignof(AIController_K2_SetFocalPoint) == 0x000008, "Wrong alignment on AIController_K2_SetFocalPoint"); \ +static_assert(sizeof(AIController_K2_SetFocalPoint) == 0x000018, "Wrong size on AIController_K2_SetFocalPoint"); \ +static_assert(offsetof(AIController_K2_SetFocalPoint, FP) == 0x000000, "Member 'AIController_K2_SetFocalPoint::FP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_K2_SetFocus \ +static_assert(alignof(AIController_K2_SetFocus) == 0x000008, "Wrong alignment on AIController_K2_SetFocus"); \ +static_assert(sizeof(AIController_K2_SetFocus) == 0x000008, "Wrong size on AIController_K2_SetFocus"); \ +static_assert(offsetof(AIController_K2_SetFocus, NewFocus) == 0x000000, "Member 'AIController_K2_SetFocus::NewFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_MoveToActor \ +static_assert(alignof(AIController_MoveToActor) == 0x000008, "Wrong alignment on AIController_MoveToActor"); \ +static_assert(sizeof(AIController_MoveToActor) == 0x000020, "Wrong size on AIController_MoveToActor"); \ +static_assert(offsetof(AIController_MoveToActor, Goal) == 0x000000, "Member 'AIController_MoveToActor::Goal' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, AcceptanceRadius) == 0x000008, "Member 'AIController_MoveToActor::AcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, bStopOnOverlap) == 0x00000C, "Member 'AIController_MoveToActor::bStopOnOverlap' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, bUsePathfinding) == 0x00000D, "Member 'AIController_MoveToActor::bUsePathfinding' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, bCanStrafe) == 0x00000E, "Member 'AIController_MoveToActor::bCanStrafe' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, FilterClass) == 0x000010, "Member 'AIController_MoveToActor::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, bAllowPartialPath) == 0x000018, "Member 'AIController_MoveToActor::bAllowPartialPath' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToActor, ReturnValue) == 0x000019, "Member 'AIController_MoveToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_MoveToLocation \ +static_assert(alignof(AIController_MoveToLocation) == 0x000008, "Wrong alignment on AIController_MoveToLocation"); \ +static_assert(sizeof(AIController_MoveToLocation) == 0x000030, "Wrong size on AIController_MoveToLocation"); \ +static_assert(offsetof(AIController_MoveToLocation, Dest) == 0x000000, "Member 'AIController_MoveToLocation::Dest' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, AcceptanceRadius) == 0x000018, "Member 'AIController_MoveToLocation::AcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, bStopOnOverlap) == 0x00001C, "Member 'AIController_MoveToLocation::bStopOnOverlap' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, bUsePathfinding) == 0x00001D, "Member 'AIController_MoveToLocation::bUsePathfinding' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, bProjectDestinationToNavigation) == 0x00001E, "Member 'AIController_MoveToLocation::bProjectDestinationToNavigation' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, bCanStrafe) == 0x00001F, "Member 'AIController_MoveToLocation::bCanStrafe' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, FilterClass) == 0x000020, "Member 'AIController_MoveToLocation::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, bAllowPartialPath) == 0x000028, "Member 'AIController_MoveToLocation::bAllowPartialPath' has a wrong offset!"); \ +static_assert(offsetof(AIController_MoveToLocation, ReturnValue) == 0x000029, "Member 'AIController_MoveToLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_OnGameplayTaskResourcesClaimed \ +static_assert(alignof(AIController_OnGameplayTaskResourcesClaimed) == 0x000002, "Wrong alignment on AIController_OnGameplayTaskResourcesClaimed"); \ +static_assert(sizeof(AIController_OnGameplayTaskResourcesClaimed) == 0x000004, "Wrong size on AIController_OnGameplayTaskResourcesClaimed"); \ +static_assert(offsetof(AIController_OnGameplayTaskResourcesClaimed, NewlyClaimed) == 0x000000, "Member 'AIController_OnGameplayTaskResourcesClaimed::NewlyClaimed' has a wrong offset!"); \ +static_assert(offsetof(AIController_OnGameplayTaskResourcesClaimed, FreshlyReleased) == 0x000002, "Member 'AIController_OnGameplayTaskResourcesClaimed::FreshlyReleased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_OnUsingBlackBoard \ +static_assert(alignof(AIController_OnUsingBlackBoard) == 0x000008, "Wrong alignment on AIController_OnUsingBlackBoard"); \ +static_assert(sizeof(AIController_OnUsingBlackBoard) == 0x000010, "Wrong size on AIController_OnUsingBlackBoard"); \ +static_assert(offsetof(AIController_OnUsingBlackBoard, BlackboardComp) == 0x000000, "Member 'AIController_OnUsingBlackBoard::BlackboardComp' has a wrong offset!"); \ +static_assert(offsetof(AIController_OnUsingBlackBoard, BlackboardAsset) == 0x000008, "Member 'AIController_OnUsingBlackBoard::BlackboardAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_RunBehaviorTree \ +static_assert(alignof(AIController_RunBehaviorTree) == 0x000008, "Wrong alignment on AIController_RunBehaviorTree"); \ +static_assert(sizeof(AIController_RunBehaviorTree) == 0x000010, "Wrong size on AIController_RunBehaviorTree"); \ +static_assert(offsetof(AIController_RunBehaviorTree, BTAsset) == 0x000000, "Member 'AIController_RunBehaviorTree::BTAsset' has a wrong offset!"); \ +static_assert(offsetof(AIController_RunBehaviorTree, ReturnValue) == 0x000008, "Member 'AIController_RunBehaviorTree::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_SetMoveBlockDetection \ +static_assert(alignof(AIController_SetMoveBlockDetection) == 0x000001, "Wrong alignment on AIController_SetMoveBlockDetection"); \ +static_assert(sizeof(AIController_SetMoveBlockDetection) == 0x000001, "Wrong size on AIController_SetMoveBlockDetection"); \ +static_assert(offsetof(AIController_SetMoveBlockDetection, bEnable) == 0x000000, "Member 'AIController_SetMoveBlockDetection::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_SetPathFollowingComponent \ +static_assert(alignof(AIController_SetPathFollowingComponent) == 0x000008, "Wrong alignment on AIController_SetPathFollowingComponent"); \ +static_assert(sizeof(AIController_SetPathFollowingComponent) == 0x000008, "Wrong size on AIController_SetPathFollowingComponent"); \ +static_assert(offsetof(AIController_SetPathFollowingComponent, NewPFComponent) == 0x000000, "Member 'AIController_SetPathFollowingComponent::NewPFComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_UnclaimTaskResource \ +static_assert(alignof(AIController_UnclaimTaskResource) == 0x000008, "Wrong alignment on AIController_UnclaimTaskResource"); \ +static_assert(sizeof(AIController_UnclaimTaskResource) == 0x000008, "Wrong size on AIController_UnclaimTaskResource"); \ +static_assert(offsetof(AIController_UnclaimTaskResource, ResourceClass) == 0x000000, "Member 'AIController_UnclaimTaskResource::ResourceClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_UseBlackboard \ +static_assert(alignof(AIController_UseBlackboard) == 0x000008, "Wrong alignment on AIController_UseBlackboard"); \ +static_assert(sizeof(AIController_UseBlackboard) == 0x000018, "Wrong size on AIController_UseBlackboard"); \ +static_assert(offsetof(AIController_UseBlackboard, BlackboardAsset) == 0x000000, "Member 'AIController_UseBlackboard::BlackboardAsset' has a wrong offset!"); \ +static_assert(offsetof(AIController_UseBlackboard, BlackboardComponent) == 0x000008, "Member 'AIController_UseBlackboard::BlackboardComponent' has a wrong offset!"); \ +static_assert(offsetof(AIController_UseBlackboard, ReturnValue) == 0x000010, "Member 'AIController_UseBlackboard::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetDeprecatedActionsComponent \ +static_assert(alignof(AIController_GetDeprecatedActionsComponent) == 0x000008, "Wrong alignment on AIController_GetDeprecatedActionsComponent"); \ +static_assert(sizeof(AIController_GetDeprecatedActionsComponent) == 0x000008, "Wrong size on AIController_GetDeprecatedActionsComponent"); \ +static_assert(offsetof(AIController_GetDeprecatedActionsComponent, ReturnValue) == 0x000000, "Member 'AIController_GetDeprecatedActionsComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetFocalPoint \ +static_assert(alignof(AIController_GetFocalPoint) == 0x000008, "Wrong alignment on AIController_GetFocalPoint"); \ +static_assert(sizeof(AIController_GetFocalPoint) == 0x000018, "Wrong size on AIController_GetFocalPoint"); \ +static_assert(offsetof(AIController_GetFocalPoint, ReturnValue) == 0x000000, "Member 'AIController_GetFocalPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetFocalPointOnActor \ +static_assert(alignof(AIController_GetFocalPointOnActor) == 0x000008, "Wrong alignment on AIController_GetFocalPointOnActor"); \ +static_assert(sizeof(AIController_GetFocalPointOnActor) == 0x000020, "Wrong size on AIController_GetFocalPointOnActor"); \ +static_assert(offsetof(AIController_GetFocalPointOnActor, Actor) == 0x000000, "Member 'AIController_GetFocalPointOnActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(AIController_GetFocalPointOnActor, ReturnValue) == 0x000008, "Member 'AIController_GetFocalPointOnActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetFocusActor \ +static_assert(alignof(AIController_GetFocusActor) == 0x000008, "Wrong alignment on AIController_GetFocusActor"); \ +static_assert(sizeof(AIController_GetFocusActor) == 0x000008, "Wrong size on AIController_GetFocusActor"); \ +static_assert(offsetof(AIController_GetFocusActor, ReturnValue) == 0x000000, "Member 'AIController_GetFocusActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetImmediateMoveDestination \ +static_assert(alignof(AIController_GetImmediateMoveDestination) == 0x000008, "Wrong alignment on AIController_GetImmediateMoveDestination"); \ +static_assert(sizeof(AIController_GetImmediateMoveDestination) == 0x000018, "Wrong size on AIController_GetImmediateMoveDestination"); \ +static_assert(offsetof(AIController_GetImmediateMoveDestination, ReturnValue) == 0x000000, "Member 'AIController_GetImmediateMoveDestination::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetMoveStatus \ +static_assert(alignof(AIController_GetMoveStatus) == 0x000001, "Wrong alignment on AIController_GetMoveStatus"); \ +static_assert(sizeof(AIController_GetMoveStatus) == 0x000001, "Wrong size on AIController_GetMoveStatus"); \ +static_assert(offsetof(AIController_GetMoveStatus, ReturnValue) == 0x000000, "Member 'AIController_GetMoveStatus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_GetPathFollowingComponent \ +static_assert(alignof(AIController_GetPathFollowingComponent) == 0x000008, "Wrong alignment on AIController_GetPathFollowingComponent"); \ +static_assert(sizeof(AIController_GetPathFollowingComponent) == 0x000008, "Wrong size on AIController_GetPathFollowingComponent"); \ +static_assert(offsetof(AIController_GetPathFollowingComponent, ReturnValue) == 0x000000, "Member 'AIController_GetPathFollowingComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIController_HasPartialPath \ +static_assert(alignof(AIController_HasPartialPath) == 0x000001, "Wrong alignment on AIController_HasPartialPath"); \ +static_assert(sizeof(AIController_HasPartialPath) == 0x000001, "Wrong size on AIController_HasPartialPath"); \ +static_assert(offsetof(AIController_HasPartialPath, ReturnValue) == 0x000000, "Member 'AIController_HasPartialPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAIController \ +static_assert(alignof(AAIController) == 0x000008, "Wrong alignment on AAIController"); \ +static_assert(sizeof(AAIController) == 0x0003C0, "Wrong size on AAIController"); \ +static_assert(offsetof(AAIController, PathFollowingComponent) == 0x000370, "Member 'AAIController::PathFollowingComponent' has a wrong offset!"); \ +static_assert(offsetof(AAIController, BrainComponent) == 0x000378, "Member 'AAIController::BrainComponent' has a wrong offset!"); \ +static_assert(offsetof(AAIController, PerceptionComponent) == 0x000380, "Member 'AAIController::PerceptionComponent' has a wrong offset!"); \ +static_assert(offsetof(AAIController, ActionsComp) == 0x000388, "Member 'AAIController::ActionsComp' has a wrong offset!"); \ +static_assert(offsetof(AAIController, Blackboard) == 0x000390, "Member 'AAIController::Blackboard' has a wrong offset!"); \ +static_assert(offsetof(AAIController, CachedGameplayTasksComponent) == 0x000398, "Member 'AAIController::CachedGameplayTasksComponent' has a wrong offset!"); \ +static_assert(offsetof(AAIController, DefaultNavigationFilterClass) == 0x0003A0, "Member 'AAIController::DefaultNavigationFilterClass' has a wrong offset!"); \ +static_assert(offsetof(AAIController, ReceiveMoveCompleted) == 0x0003A8, "Member 'AAIController::ReceiveMoveCompleted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIResource_Movement \ +static_assert(alignof(UAIResource_Movement) == 0x000008, "Wrong alignment on UAIResource_Movement"); \ +static_assert(sizeof(UAIResource_Movement) == 0x000038, "Wrong size on UAIResource_Movement"); \ + +#define DUMPER7_ASSERTS_UAIResource_Logic \ +static_assert(alignof(UAIResource_Logic) == 0x000008, "Wrong alignment on UAIResource_Logic"); \ +static_assert(sizeof(UAIResource_Logic) == 0x000038, "Wrong size on UAIResource_Logic"); \ + +#define DUMPER7_ASSERTS_UAISubsystem \ +static_assert(alignof(UAISubsystem) == 0x000008, "Wrong alignment on UAISubsystem"); \ +static_assert(sizeof(UAISubsystem) == 0x000038, "Wrong size on UAISubsystem"); \ +static_assert(offsetof(UAISubsystem, AISystem) == 0x000030, "Member 'UAISubsystem::AISystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISystem \ +static_assert(alignof(UAISystem) == 0x000008, "Wrong alignment on UAISystem"); \ +static_assert(sizeof(UAISystem) == 0x0001A0, "Wrong size on UAISystem"); \ +static_assert(offsetof(UAISystem, PerceptionSystemClassName) == 0x000060, "Member 'UAISystem::PerceptionSystemClassName' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, HotSpotManagerClassName) == 0x000080, "Member 'UAISystem::HotSpotManagerClassName' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, EnvQueryManagerClassName) == 0x0000A0, "Member 'UAISystem::EnvQueryManagerClassName' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, AcceptanceRadius) == 0x0000C0, "Member 'UAISystem::AcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, PathfollowingRegularPathPointAcceptanceRadius) == 0x0000C4, "Member 'UAISystem::PathfollowingRegularPathPointAcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, PathfollowingNavLinkAcceptanceRadius) == 0x0000C8, "Member 'UAISystem::PathfollowingNavLinkAcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bFinishMoveOnGoalOverlap) == 0x0000CC, "Member 'UAISystem::bFinishMoveOnGoalOverlap' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bAcceptPartialPaths) == 0x0000CD, "Member 'UAISystem::bAcceptPartialPaths' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bAllowStrafing) == 0x0000CE, "Member 'UAISystem::bAllowStrafing' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bAllowControllersAsEQSQuerier) == 0x0000CF, "Member 'UAISystem::bAllowControllersAsEQSQuerier' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bEnableDebuggerPlugin) == 0x0000D0, "Member 'UAISystem::bEnableDebuggerPlugin' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bForgetStaleActors) == 0x0000D1, "Member 'UAISystem::bForgetStaleActors' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bAddBlackboardSelfKey) == 0x0000D2, "Member 'UAISystem::bAddBlackboardSelfKey' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bClearBBEntryOnBTEQSFail) == 0x0000D3, "Member 'UAISystem::bClearBBEntryOnBTEQSFail' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, bBlackboardKeyDecoratorAllowsNoneAsValue) == 0x0000D4, "Member 'UAISystem::bBlackboardKeyDecoratorAllowsNoneAsValue' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, DefaultBlackboard) == 0x0000D8, "Member 'UAISystem::DefaultBlackboard' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, DefaultSightCollisionChannel) == 0x000100, "Member 'UAISystem::DefaultSightCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, BehaviorTreeManager) == 0x000108, "Member 'UAISystem::BehaviorTreeManager' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, EnvironmentQueryManager) == 0x000110, "Member 'UAISystem::EnvironmentQueryManager' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, PerceptionSystem) == 0x000118, "Member 'UAISystem::PerceptionSystem' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, AllProxyObjects) == 0x000120, "Member 'UAISystem::AllProxyObjects' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, HotSpotManager) == 0x000130, "Member 'UAISystem::HotSpotManager' has a wrong offset!"); \ +static_assert(offsetof(UAISystem, NavLocalGrids) == 0x000138, "Member 'UAISystem::NavLocalGrids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBehaviorTree \ +static_assert(alignof(UBehaviorTree) == 0x000008, "Wrong alignment on UBehaviorTree"); \ +static_assert(sizeof(UBehaviorTree) == 0x000068, "Wrong size on UBehaviorTree"); \ +static_assert(offsetof(UBehaviorTree, RootNode) == 0x000030, "Member 'UBehaviorTree::RootNode' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTree, BlackboardAsset) == 0x000038, "Member 'UBehaviorTree::BlackboardAsset' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTree, RootDecorators) == 0x000040, "Member 'UBehaviorTree::RootDecorators' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTree, RootDecoratorOps) == 0x000050, "Member 'UBehaviorTree::RootDecoratorOps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BrainComponent_StopLogic \ +static_assert(alignof(BrainComponent_StopLogic) == 0x000008, "Wrong alignment on BrainComponent_StopLogic"); \ +static_assert(sizeof(BrainComponent_StopLogic) == 0x000010, "Wrong size on BrainComponent_StopLogic"); \ +static_assert(offsetof(BrainComponent_StopLogic, Reason) == 0x000000, "Member 'BrainComponent_StopLogic::Reason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BrainComponent_IsPaused \ +static_assert(alignof(BrainComponent_IsPaused) == 0x000001, "Wrong alignment on BrainComponent_IsPaused"); \ +static_assert(sizeof(BrainComponent_IsPaused) == 0x000001, "Wrong size on BrainComponent_IsPaused"); \ +static_assert(offsetof(BrainComponent_IsPaused, ReturnValue) == 0x000000, "Member 'BrainComponent_IsPaused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BrainComponent_IsRunning \ +static_assert(alignof(BrainComponent_IsRunning) == 0x000001, "Wrong alignment on BrainComponent_IsRunning"); \ +static_assert(sizeof(BrainComponent_IsRunning) == 0x000001, "Wrong size on BrainComponent_IsRunning"); \ +static_assert(offsetof(BrainComponent_IsRunning, ReturnValue) == 0x000000, "Member 'BrainComponent_IsRunning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrainComponent \ +static_assert(alignof(UBrainComponent) == 0x000008, "Wrong alignment on UBrainComponent"); \ +static_assert(sizeof(UBrainComponent) == 0x0000F8, "Wrong size on UBrainComponent"); \ +static_assert(offsetof(UBrainComponent, BlackboardComp) == 0x0000A8, "Member 'UBrainComponent::BlackboardComp' has a wrong offset!"); \ +static_assert(offsetof(UBrainComponent, AIOwner) == 0x0000B0, "Member 'UBrainComponent::AIOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BehaviorTreeComponent_AddCooldownTagDuration \ +static_assert(alignof(BehaviorTreeComponent_AddCooldownTagDuration) == 0x000004, "Wrong alignment on BehaviorTreeComponent_AddCooldownTagDuration"); \ +static_assert(sizeof(BehaviorTreeComponent_AddCooldownTagDuration) == 0x000010, "Wrong size on BehaviorTreeComponent_AddCooldownTagDuration"); \ +static_assert(offsetof(BehaviorTreeComponent_AddCooldownTagDuration, CooldownTag) == 0x000000, "Member 'BehaviorTreeComponent_AddCooldownTagDuration::CooldownTag' has a wrong offset!"); \ +static_assert(offsetof(BehaviorTreeComponent_AddCooldownTagDuration, CooldownDuration) == 0x000008, "Member 'BehaviorTreeComponent_AddCooldownTagDuration::CooldownDuration' has a wrong offset!"); \ +static_assert(offsetof(BehaviorTreeComponent_AddCooldownTagDuration, bAddToExistingDuration) == 0x00000C, "Member 'BehaviorTreeComponent_AddCooldownTagDuration::bAddToExistingDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BehaviorTreeComponent_SetDynamicSubtree \ +static_assert(alignof(BehaviorTreeComponent_SetDynamicSubtree) == 0x000008, "Wrong alignment on BehaviorTreeComponent_SetDynamicSubtree"); \ +static_assert(sizeof(BehaviorTreeComponent_SetDynamicSubtree) == 0x000010, "Wrong size on BehaviorTreeComponent_SetDynamicSubtree"); \ +static_assert(offsetof(BehaviorTreeComponent_SetDynamicSubtree, InjectTag) == 0x000000, "Member 'BehaviorTreeComponent_SetDynamicSubtree::InjectTag' has a wrong offset!"); \ +static_assert(offsetof(BehaviorTreeComponent_SetDynamicSubtree, BehaviorAsset) == 0x000008, "Member 'BehaviorTreeComponent_SetDynamicSubtree::BehaviorAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BehaviorTreeComponent_GetTagCooldownEndTime \ +static_assert(alignof(BehaviorTreeComponent_GetTagCooldownEndTime) == 0x000008, "Wrong alignment on BehaviorTreeComponent_GetTagCooldownEndTime"); \ +static_assert(sizeof(BehaviorTreeComponent_GetTagCooldownEndTime) == 0x000010, "Wrong size on BehaviorTreeComponent_GetTagCooldownEndTime"); \ +static_assert(offsetof(BehaviorTreeComponent_GetTagCooldownEndTime, CooldownTag) == 0x000000, "Member 'BehaviorTreeComponent_GetTagCooldownEndTime::CooldownTag' has a wrong offset!"); \ +static_assert(offsetof(BehaviorTreeComponent_GetTagCooldownEndTime, ReturnValue) == 0x000008, "Member 'BehaviorTreeComponent_GetTagCooldownEndTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBehaviorTreeComponent \ +static_assert(alignof(UBehaviorTreeComponent) == 0x000008, "Wrong alignment on UBehaviorTreeComponent"); \ +static_assert(sizeof(UBehaviorTreeComponent) == 0x000290, "Wrong size on UBehaviorTreeComponent"); \ +static_assert(offsetof(UBehaviorTreeComponent, NodeInstances) == 0x000118, "Member 'UBehaviorTreeComponent::NodeInstances' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTreeComponent, DefaultBehaviorTreeAsset) == 0x000270, "Member 'UBehaviorTreeComponent::DefaultBehaviorTreeAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBehaviorTreeManager \ +static_assert(alignof(UBehaviorTreeManager) == 0x000008, "Wrong alignment on UBehaviorTreeManager"); \ +static_assert(sizeof(UBehaviorTreeManager) == 0x000050, "Wrong size on UBehaviorTreeManager"); \ +static_assert(offsetof(UBehaviorTreeManager, MaxDebuggerSteps) == 0x000028, "Member 'UBehaviorTreeManager::MaxDebuggerSteps' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTreeManager, LoadedTemplates) == 0x000030, "Member 'UBehaviorTreeManager::LoadedTemplates' has a wrong offset!"); \ +static_assert(offsetof(UBehaviorTreeManager, ActiveComponents) == 0x000040, "Member 'UBehaviorTreeManager::ActiveComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBehaviorTreeTypes \ +static_assert(alignof(UBehaviorTreeTypes) == 0x000008, "Wrong alignment on UBehaviorTreeTypes"); \ +static_assert(sizeof(UBehaviorTreeTypes) == 0x000028, "Wrong size on UBehaviorTreeTypes"); \ + +#define DUMPER7_ASSERTS_BlackboardAssetProvider_GetBlackboardAsset \ +static_assert(alignof(BlackboardAssetProvider_GetBlackboardAsset) == 0x000008, "Wrong alignment on BlackboardAssetProvider_GetBlackboardAsset"); \ +static_assert(sizeof(BlackboardAssetProvider_GetBlackboardAsset) == 0x000008, "Wrong size on BlackboardAssetProvider_GetBlackboardAsset"); \ +static_assert(offsetof(BlackboardAssetProvider_GetBlackboardAsset, ReturnValue) == 0x000000, "Member 'BlackboardAssetProvider_GetBlackboardAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBlackboardAssetProvider \ +static_assert(alignof(IBlackboardAssetProvider) == 0x000001, "Wrong alignment on IBlackboardAssetProvider"); \ +static_assert(sizeof(IBlackboardAssetProvider) == 0x000001, "Wrong size on IBlackboardAssetProvider"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_ClearValue \ +static_assert(alignof(BlackboardComponent_ClearValue) == 0x000004, "Wrong alignment on BlackboardComponent_ClearValue"); \ +static_assert(sizeof(BlackboardComponent_ClearValue) == 0x000008, "Wrong size on BlackboardComponent_ClearValue"); \ +static_assert(offsetof(BlackboardComponent_ClearValue, KeyName) == 0x000000, "Member 'BlackboardComponent_ClearValue::KeyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsBool \ +static_assert(alignof(BlackboardComponent_SetValueAsBool) == 0x000004, "Wrong alignment on BlackboardComponent_SetValueAsBool"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsBool) == 0x00000C, "Wrong size on BlackboardComponent_SetValueAsBool"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsBool, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsBool::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsBool, BoolValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsBool::BoolValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsClass \ +static_assert(alignof(BlackboardComponent_SetValueAsClass) == 0x000008, "Wrong alignment on BlackboardComponent_SetValueAsClass"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsClass) == 0x000010, "Wrong size on BlackboardComponent_SetValueAsClass"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsClass, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsClass::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsClass, ClassValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsClass::ClassValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsEnum \ +static_assert(alignof(BlackboardComponent_SetValueAsEnum) == 0x000004, "Wrong alignment on BlackboardComponent_SetValueAsEnum"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsEnum) == 0x00000C, "Wrong size on BlackboardComponent_SetValueAsEnum"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsEnum, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsEnum::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsEnum, EnumValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsEnum::EnumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsFloat \ +static_assert(alignof(BlackboardComponent_SetValueAsFloat) == 0x000004, "Wrong alignment on BlackboardComponent_SetValueAsFloat"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsFloat) == 0x00000C, "Wrong size on BlackboardComponent_SetValueAsFloat"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsFloat, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsFloat::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsFloat, FloatValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsFloat::FloatValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsInt \ +static_assert(alignof(BlackboardComponent_SetValueAsInt) == 0x000004, "Wrong alignment on BlackboardComponent_SetValueAsInt"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsInt) == 0x00000C, "Wrong size on BlackboardComponent_SetValueAsInt"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsInt, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsInt::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsInt, IntValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsInt::IntValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsName \ +static_assert(alignof(BlackboardComponent_SetValueAsName) == 0x000004, "Wrong alignment on BlackboardComponent_SetValueAsName"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsName) == 0x000010, "Wrong size on BlackboardComponent_SetValueAsName"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsName, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsName::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsName, NameValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsName::NameValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsObject \ +static_assert(alignof(BlackboardComponent_SetValueAsObject) == 0x000008, "Wrong alignment on BlackboardComponent_SetValueAsObject"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsObject) == 0x000010, "Wrong size on BlackboardComponent_SetValueAsObject"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsObject, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsObject::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsObject, ObjectValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsObject::ObjectValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsRotator \ +static_assert(alignof(BlackboardComponent_SetValueAsRotator) == 0x000008, "Wrong alignment on BlackboardComponent_SetValueAsRotator"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsRotator) == 0x000020, "Wrong size on BlackboardComponent_SetValueAsRotator"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsRotator, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsRotator::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsRotator, VectorValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsRotator::VectorValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsString \ +static_assert(alignof(BlackboardComponent_SetValueAsString) == 0x000008, "Wrong alignment on BlackboardComponent_SetValueAsString"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsString) == 0x000018, "Wrong size on BlackboardComponent_SetValueAsString"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsString, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsString::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsString, StringValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsString::StringValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_SetValueAsVector \ +static_assert(alignof(BlackboardComponent_SetValueAsVector) == 0x000008, "Wrong alignment on BlackboardComponent_SetValueAsVector"); \ +static_assert(sizeof(BlackboardComponent_SetValueAsVector) == 0x000020, "Wrong size on BlackboardComponent_SetValueAsVector"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsVector, KeyName) == 0x000000, "Member 'BlackboardComponent_SetValueAsVector::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_SetValueAsVector, VectorValue) == 0x000008, "Member 'BlackboardComponent_SetValueAsVector::VectorValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetLocationFromEntry \ +static_assert(alignof(BlackboardComponent_GetLocationFromEntry) == 0x000008, "Wrong alignment on BlackboardComponent_GetLocationFromEntry"); \ +static_assert(sizeof(BlackboardComponent_GetLocationFromEntry) == 0x000028, "Wrong size on BlackboardComponent_GetLocationFromEntry"); \ +static_assert(offsetof(BlackboardComponent_GetLocationFromEntry, KeyName) == 0x000000, "Member 'BlackboardComponent_GetLocationFromEntry::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetLocationFromEntry, ResultLocation) == 0x000008, "Member 'BlackboardComponent_GetLocationFromEntry::ResultLocation' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetLocationFromEntry, ReturnValue) == 0x000020, "Member 'BlackboardComponent_GetLocationFromEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetRotationFromEntry \ +static_assert(alignof(BlackboardComponent_GetRotationFromEntry) == 0x000008, "Wrong alignment on BlackboardComponent_GetRotationFromEntry"); \ +static_assert(sizeof(BlackboardComponent_GetRotationFromEntry) == 0x000028, "Wrong size on BlackboardComponent_GetRotationFromEntry"); \ +static_assert(offsetof(BlackboardComponent_GetRotationFromEntry, KeyName) == 0x000000, "Member 'BlackboardComponent_GetRotationFromEntry::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetRotationFromEntry, ResultRotation) == 0x000008, "Member 'BlackboardComponent_GetRotationFromEntry::ResultRotation' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetRotationFromEntry, ReturnValue) == 0x000020, "Member 'BlackboardComponent_GetRotationFromEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsBool \ +static_assert(alignof(BlackboardComponent_GetValueAsBool) == 0x000004, "Wrong alignment on BlackboardComponent_GetValueAsBool"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsBool) == 0x00000C, "Wrong size on BlackboardComponent_GetValueAsBool"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsBool, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsBool::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsBool, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsClass \ +static_assert(alignof(BlackboardComponent_GetValueAsClass) == 0x000008, "Wrong alignment on BlackboardComponent_GetValueAsClass"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsClass) == 0x000010, "Wrong size on BlackboardComponent_GetValueAsClass"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsClass, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsClass::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsClass, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsEnum \ +static_assert(alignof(BlackboardComponent_GetValueAsEnum) == 0x000004, "Wrong alignment on BlackboardComponent_GetValueAsEnum"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsEnum) == 0x00000C, "Wrong size on BlackboardComponent_GetValueAsEnum"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsEnum, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsEnum::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsEnum, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsFloat \ +static_assert(alignof(BlackboardComponent_GetValueAsFloat) == 0x000004, "Wrong alignment on BlackboardComponent_GetValueAsFloat"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsFloat) == 0x00000C, "Wrong size on BlackboardComponent_GetValueAsFloat"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsFloat, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsFloat::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsFloat, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsInt \ +static_assert(alignof(BlackboardComponent_GetValueAsInt) == 0x000004, "Wrong alignment on BlackboardComponent_GetValueAsInt"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsInt) == 0x00000C, "Wrong size on BlackboardComponent_GetValueAsInt"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsInt, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsInt::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsInt, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsName \ +static_assert(alignof(BlackboardComponent_GetValueAsName) == 0x000004, "Wrong alignment on BlackboardComponent_GetValueAsName"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsName) == 0x000010, "Wrong size on BlackboardComponent_GetValueAsName"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsName, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsName::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsName, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsObject \ +static_assert(alignof(BlackboardComponent_GetValueAsObject) == 0x000008, "Wrong alignment on BlackboardComponent_GetValueAsObject"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsObject) == 0x000010, "Wrong size on BlackboardComponent_GetValueAsObject"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsObject, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsObject::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsObject, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsRotator \ +static_assert(alignof(BlackboardComponent_GetValueAsRotator) == 0x000008, "Wrong alignment on BlackboardComponent_GetValueAsRotator"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsRotator) == 0x000020, "Wrong size on BlackboardComponent_GetValueAsRotator"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsRotator, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsRotator::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsRotator, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsString \ +static_assert(alignof(BlackboardComponent_GetValueAsString) == 0x000008, "Wrong alignment on BlackboardComponent_GetValueAsString"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsString) == 0x000018, "Wrong size on BlackboardComponent_GetValueAsString"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsString, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsString::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsString, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_GetValueAsVector \ +static_assert(alignof(BlackboardComponent_GetValueAsVector) == 0x000008, "Wrong alignment on BlackboardComponent_GetValueAsVector"); \ +static_assert(sizeof(BlackboardComponent_GetValueAsVector) == 0x000020, "Wrong size on BlackboardComponent_GetValueAsVector"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsVector, KeyName) == 0x000000, "Member 'BlackboardComponent_GetValueAsVector::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_GetValueAsVector, ReturnValue) == 0x000008, "Member 'BlackboardComponent_GetValueAsVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlackboardComponent_IsVectorValueSet \ +static_assert(alignof(BlackboardComponent_IsVectorValueSet) == 0x000004, "Wrong alignment on BlackboardComponent_IsVectorValueSet"); \ +static_assert(sizeof(BlackboardComponent_IsVectorValueSet) == 0x00000C, "Wrong size on BlackboardComponent_IsVectorValueSet"); \ +static_assert(offsetof(BlackboardComponent_IsVectorValueSet, KeyName) == 0x000000, "Member 'BlackboardComponent_IsVectorValueSet::KeyName' has a wrong offset!"); \ +static_assert(offsetof(BlackboardComponent_IsVectorValueSet, ReturnValue) == 0x000008, "Member 'BlackboardComponent_IsVectorValueSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardComponent \ +static_assert(alignof(UBlackboardComponent) == 0x000008, "Wrong alignment on UBlackboardComponent"); \ +static_assert(sizeof(UBlackboardComponent) == 0x0001A8, "Wrong size on UBlackboardComponent"); \ +static_assert(offsetof(UBlackboardComponent, BrainComp) == 0x0000A0, "Member 'UBlackboardComponent::BrainComp' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardComponent, DefaultBlackboardAsset) == 0x0000A8, "Member 'UBlackboardComponent::DefaultBlackboardAsset' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardComponent, BlackboardAsset) == 0x0000B0, "Member 'UBlackboardComponent::BlackboardAsset' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardComponent, KeyInstances) == 0x0000D8, "Member 'UBlackboardComponent::KeyInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardData \ +static_assert(alignof(UBlackboardData) == 0x000008, "Wrong alignment on UBlackboardData"); \ +static_assert(sizeof(UBlackboardData) == 0x000050, "Wrong size on UBlackboardData"); \ +static_assert(offsetof(UBlackboardData, Parent) == 0x000030, "Member 'UBlackboardData::Parent' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardData, Keys) == 0x000038, "Member 'UBlackboardData::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType \ +static_assert(alignof(UBlackboardKeyType) == 0x000008, "Wrong alignment on UBlackboardKeyType"); \ +static_assert(sizeof(UBlackboardKeyType) == 0x000030, "Wrong size on UBlackboardKeyType"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Bool \ +static_assert(alignof(UBlackboardKeyType_Bool) == 0x000008, "Wrong alignment on UBlackboardKeyType_Bool"); \ +static_assert(sizeof(UBlackboardKeyType_Bool) == 0x000030, "Wrong size on UBlackboardKeyType_Bool"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Class \ +static_assert(alignof(UBlackboardKeyType_Class) == 0x000008, "Wrong alignment on UBlackboardKeyType_Class"); \ +static_assert(sizeof(UBlackboardKeyType_Class) == 0x000038, "Wrong size on UBlackboardKeyType_Class"); \ +static_assert(offsetof(UBlackboardKeyType_Class, BaseClass) == 0x000030, "Member 'UBlackboardKeyType_Class::BaseClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Enum \ +static_assert(alignof(UBlackboardKeyType_Enum) == 0x000008, "Wrong alignment on UBlackboardKeyType_Enum"); \ +static_assert(sizeof(UBlackboardKeyType_Enum) == 0x000050, "Wrong size on UBlackboardKeyType_Enum"); \ +static_assert(offsetof(UBlackboardKeyType_Enum, EnumType) == 0x000030, "Member 'UBlackboardKeyType_Enum::EnumType' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardKeyType_Enum, EnumName) == 0x000038, "Member 'UBlackboardKeyType_Enum::EnumName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Float \ +static_assert(alignof(UBlackboardKeyType_Float) == 0x000008, "Wrong alignment on UBlackboardKeyType_Float"); \ +static_assert(sizeof(UBlackboardKeyType_Float) == 0x000030, "Wrong size on UBlackboardKeyType_Float"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Int \ +static_assert(alignof(UBlackboardKeyType_Int) == 0x000008, "Wrong alignment on UBlackboardKeyType_Int"); \ +static_assert(sizeof(UBlackboardKeyType_Int) == 0x000030, "Wrong size on UBlackboardKeyType_Int"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Name \ +static_assert(alignof(UBlackboardKeyType_Name) == 0x000008, "Wrong alignment on UBlackboardKeyType_Name"); \ +static_assert(sizeof(UBlackboardKeyType_Name) == 0x000030, "Wrong size on UBlackboardKeyType_Name"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_NativeEnum \ +static_assert(alignof(UBlackboardKeyType_NativeEnum) == 0x000008, "Wrong alignment on UBlackboardKeyType_NativeEnum"); \ +static_assert(sizeof(UBlackboardKeyType_NativeEnum) == 0x000048, "Wrong size on UBlackboardKeyType_NativeEnum"); \ +static_assert(offsetof(UBlackboardKeyType_NativeEnum, EnumName) == 0x000030, "Member 'UBlackboardKeyType_NativeEnum::EnumName' has a wrong offset!"); \ +static_assert(offsetof(UBlackboardKeyType_NativeEnum, EnumType) == 0x000040, "Member 'UBlackboardKeyType_NativeEnum::EnumType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Object \ +static_assert(alignof(UBlackboardKeyType_Object) == 0x000008, "Wrong alignment on UBlackboardKeyType_Object"); \ +static_assert(sizeof(UBlackboardKeyType_Object) == 0x000038, "Wrong size on UBlackboardKeyType_Object"); \ +static_assert(offsetof(UBlackboardKeyType_Object, BaseClass) == 0x000030, "Member 'UBlackboardKeyType_Object::BaseClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Rotator \ +static_assert(alignof(UBlackboardKeyType_Rotator) == 0x000008, "Wrong alignment on UBlackboardKeyType_Rotator"); \ +static_assert(sizeof(UBlackboardKeyType_Rotator) == 0x000030, "Wrong size on UBlackboardKeyType_Rotator"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_String \ +static_assert(alignof(UBlackboardKeyType_String) == 0x000008, "Wrong alignment on UBlackboardKeyType_String"); \ +static_assert(sizeof(UBlackboardKeyType_String) == 0x000040, "Wrong size on UBlackboardKeyType_String"); \ +static_assert(offsetof(UBlackboardKeyType_String, StringValue) == 0x000030, "Member 'UBlackboardKeyType_String::StringValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_Vector \ +static_assert(alignof(UBlackboardKeyType_Vector) == 0x000008, "Wrong alignment on UBlackboardKeyType_Vector"); \ +static_assert(sizeof(UBlackboardKeyType_Vector) == 0x000030, "Wrong size on UBlackboardKeyType_Vector"); \ + +#define DUMPER7_ASSERTS_UBTNode \ +static_assert(alignof(UBTNode) == 0x000008, "Wrong alignment on UBTNode"); \ +static_assert(sizeof(UBTNode) == 0x000058, "Wrong size on UBTNode"); \ +static_assert(offsetof(UBTNode, NodeName) == 0x000030, "Member 'UBTNode::NodeName' has a wrong offset!"); \ +static_assert(offsetof(UBTNode, TreeAsset) == 0x000040, "Member 'UBTNode::TreeAsset' has a wrong offset!"); \ +static_assert(offsetof(UBTNode, ParentNode) == 0x000048, "Member 'UBTNode::ParentNode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTAuxiliaryNode \ +static_assert(alignof(UBTAuxiliaryNode) == 0x000008, "Wrong alignment on UBTAuxiliaryNode"); \ +static_assert(sizeof(UBTAuxiliaryNode) == 0x000060, "Wrong size on UBTAuxiliaryNode"); \ + +#define DUMPER7_ASSERTS_UBTCompositeNode \ +static_assert(alignof(UBTCompositeNode) == 0x000008, "Wrong alignment on UBTCompositeNode"); \ +static_assert(sizeof(UBTCompositeNode) == 0x000080, "Wrong size on UBTCompositeNode"); \ +static_assert(offsetof(UBTCompositeNode, Children) == 0x000058, "Member 'UBTCompositeNode::Children' has a wrong offset!"); \ +static_assert(offsetof(UBTCompositeNode, Services) == 0x000068, "Member 'UBTCompositeNode::Services' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator \ +static_assert(alignof(UBTDecorator) == 0x000008, "Wrong alignment on UBTDecorator"); \ +static_assert(sizeof(UBTDecorator) == 0x000068, "Wrong size on UBTDecorator"); \ +static_assert(offsetof(UBTDecorator, FlowAbortMode) == 0x000064, "Member 'UBTDecorator::FlowAbortMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_ClearBlackboardValue \ +static_assert(alignof(BTFunctionLibrary_ClearBlackboardValue) == 0x000008, "Wrong alignment on BTFunctionLibrary_ClearBlackboardValue"); \ +static_assert(sizeof(BTFunctionLibrary_ClearBlackboardValue) == 0x000030, "Wrong size on BTFunctionLibrary_ClearBlackboardValue"); \ +static_assert(offsetof(BTFunctionLibrary_ClearBlackboardValue, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_ClearBlackboardValue::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_ClearBlackboardValue, Key) == 0x000008, "Member 'BTFunctionLibrary_ClearBlackboardValue::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_ClearBlackboardValueAsVector \ +static_assert(alignof(BTFunctionLibrary_ClearBlackboardValueAsVector) == 0x000008, "Wrong alignment on BTFunctionLibrary_ClearBlackboardValueAsVector"); \ +static_assert(sizeof(BTFunctionLibrary_ClearBlackboardValueAsVector) == 0x000030, "Wrong size on BTFunctionLibrary_ClearBlackboardValueAsVector"); \ +static_assert(offsetof(BTFunctionLibrary_ClearBlackboardValueAsVector, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_ClearBlackboardValueAsVector::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_ClearBlackboardValueAsVector, Key) == 0x000008, "Member 'BTFunctionLibrary_ClearBlackboardValueAsVector::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsActor \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsActor) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsActor"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsActor) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsActor"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsActor, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsActor::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsActor, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsActor::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsActor, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsBool \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsBool) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsBool"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsBool) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsBool"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsBool, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsBool::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsBool, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsBool::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsBool, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsClass \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsClass) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsClass"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsClass) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsClass"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsClass, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsClass::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsClass, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsClass::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsClass, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsEnum \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsEnum) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsEnum"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsEnum) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsEnum"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsEnum, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsEnum::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsEnum, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsEnum::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsEnum, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsFloat \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsFloat) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsFloat"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsFloat) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsFloat"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsFloat, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsFloat::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsFloat, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsFloat::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsFloat, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsInt \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsInt) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsInt"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsInt) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsInt"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsInt, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsInt::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsInt, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsInt::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsInt, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsName \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsName) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsName"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsName) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsName"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsName, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsName::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsName, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsName::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsName, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsObject \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsObject) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsObject"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsObject) == 0x000038, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsObject"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsObject, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsObject::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsObject, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsObject::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsObject, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsRotator \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsRotator) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsRotator"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsRotator) == 0x000048, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsRotator"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsRotator, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsRotator::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsRotator, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsRotator::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsRotator, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsString \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsString) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsString"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsString) == 0x000040, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsString"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsString, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsString::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsString, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsString::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsString, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetBlackboardValueAsVector \ +static_assert(alignof(BTFunctionLibrary_GetBlackboardValueAsVector) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetBlackboardValueAsVector"); \ +static_assert(sizeof(BTFunctionLibrary_GetBlackboardValueAsVector) == 0x000048, "Wrong size on BTFunctionLibrary_GetBlackboardValueAsVector"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsVector, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetBlackboardValueAsVector::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsVector, Key) == 0x000008, "Member 'BTFunctionLibrary_GetBlackboardValueAsVector::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetBlackboardValueAsVector, ReturnValue) == 0x000030, "Member 'BTFunctionLibrary_GetBlackboardValueAsVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetOwnerComponent \ +static_assert(alignof(BTFunctionLibrary_GetOwnerComponent) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetOwnerComponent"); \ +static_assert(sizeof(BTFunctionLibrary_GetOwnerComponent) == 0x000010, "Wrong size on BTFunctionLibrary_GetOwnerComponent"); \ +static_assert(offsetof(BTFunctionLibrary_GetOwnerComponent, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetOwnerComponent::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetOwnerComponent, ReturnValue) == 0x000008, "Member 'BTFunctionLibrary_GetOwnerComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_GetOwnersBlackboard \ +static_assert(alignof(BTFunctionLibrary_GetOwnersBlackboard) == 0x000008, "Wrong alignment on BTFunctionLibrary_GetOwnersBlackboard"); \ +static_assert(sizeof(BTFunctionLibrary_GetOwnersBlackboard) == 0x000010, "Wrong size on BTFunctionLibrary_GetOwnersBlackboard"); \ +static_assert(offsetof(BTFunctionLibrary_GetOwnersBlackboard, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_GetOwnersBlackboard::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_GetOwnersBlackboard, ReturnValue) == 0x000008, "Member 'BTFunctionLibrary_GetOwnersBlackboard::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsBool \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsBool) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsBool"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsBool) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsBool"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsBool, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsBool::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsBool, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsBool::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsBool, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsBool::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsClass \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsClass) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsClass"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsClass) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsClass"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsClass, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsClass::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsClass, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsClass::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsClass, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsClass::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsEnum \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsEnum) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsEnum"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsEnum) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsEnum"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsEnum, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsEnum::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsEnum, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsEnum::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsEnum, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsEnum::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsFloat \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsFloat) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsFloat"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsFloat) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsFloat"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsFloat, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsFloat::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsFloat, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsFloat::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsFloat, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsInt \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsInt) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsInt"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsInt) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsInt"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsInt, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsInt::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsInt, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsInt::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsInt, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsInt::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsName \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsName) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsName"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsName) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsName"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsName, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsName::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsName, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsName::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsName, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsObject \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsObject) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsObject"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsObject) == 0x000038, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsObject"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsObject, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsObject::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsObject, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsObject::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsObject, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsObject::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsRotator \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsRotator) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsRotator"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsRotator) == 0x000048, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsRotator"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsRotator, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsRotator::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsRotator, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsRotator::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsRotator, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsRotator::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsString \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsString) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsString"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsString) == 0x000040, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsString"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsString, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsString::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsString, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsString::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsString, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsString::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_SetBlackboardValueAsVector \ +static_assert(alignof(BTFunctionLibrary_SetBlackboardValueAsVector) == 0x000008, "Wrong alignment on BTFunctionLibrary_SetBlackboardValueAsVector"); \ +static_assert(sizeof(BTFunctionLibrary_SetBlackboardValueAsVector) == 0x000048, "Wrong size on BTFunctionLibrary_SetBlackboardValueAsVector"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsVector, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_SetBlackboardValueAsVector::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsVector, Key) == 0x000008, "Member 'BTFunctionLibrary_SetBlackboardValueAsVector::Key' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_SetBlackboardValueAsVector, Value) == 0x000030, "Member 'BTFunctionLibrary_SetBlackboardValueAsVector::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_StartUsingExternalEvent \ +static_assert(alignof(BTFunctionLibrary_StartUsingExternalEvent) == 0x000008, "Wrong alignment on BTFunctionLibrary_StartUsingExternalEvent"); \ +static_assert(sizeof(BTFunctionLibrary_StartUsingExternalEvent) == 0x000010, "Wrong size on BTFunctionLibrary_StartUsingExternalEvent"); \ +static_assert(offsetof(BTFunctionLibrary_StartUsingExternalEvent, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_StartUsingExternalEvent::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(BTFunctionLibrary_StartUsingExternalEvent, OwningActor) == 0x000008, "Member 'BTFunctionLibrary_StartUsingExternalEvent::OwningActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTFunctionLibrary_StopUsingExternalEvent \ +static_assert(alignof(BTFunctionLibrary_StopUsingExternalEvent) == 0x000008, "Wrong alignment on BTFunctionLibrary_StopUsingExternalEvent"); \ +static_assert(sizeof(BTFunctionLibrary_StopUsingExternalEvent) == 0x000008, "Wrong size on BTFunctionLibrary_StopUsingExternalEvent"); \ +static_assert(offsetof(BTFunctionLibrary_StopUsingExternalEvent, NodeOwner) == 0x000000, "Member 'BTFunctionLibrary_StopUsingExternalEvent::NodeOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTFunctionLibrary \ +static_assert(alignof(UBTFunctionLibrary) == 0x000008, "Wrong alignment on UBTFunctionLibrary"); \ +static_assert(sizeof(UBTFunctionLibrary) == 0x000028, "Wrong size on UBTFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UBTService \ +static_assert(alignof(UBTService) == 0x000008, "Wrong alignment on UBTService"); \ +static_assert(sizeof(UBTService) == 0x000070, "Wrong size on UBTService"); \ +static_assert(offsetof(UBTService, Interval) == 0x000060, "Member 'UBTService::Interval' has a wrong offset!"); \ +static_assert(offsetof(UBTService, RandomDeviation) == 0x000064, "Member 'UBTService::RandomDeviation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTaskNode \ +static_assert(alignof(UBTTaskNode) == 0x000008, "Wrong alignment on UBTTaskNode"); \ +static_assert(sizeof(UBTTaskNode) == 0x000070, "Wrong size on UBTTaskNode"); \ +static_assert(offsetof(UBTTaskNode, Services) == 0x000058, "Member 'UBTTaskNode::Services' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTComposite_Selector \ +static_assert(alignof(UBTComposite_Selector) == 0x000008, "Wrong alignment on UBTComposite_Selector"); \ +static_assert(sizeof(UBTComposite_Selector) == 0x000080, "Wrong size on UBTComposite_Selector"); \ + +#define DUMPER7_ASSERTS_UBTComposite_Sequence \ +static_assert(alignof(UBTComposite_Sequence) == 0x000008, "Wrong alignment on UBTComposite_Sequence"); \ +static_assert(sizeof(UBTComposite_Sequence) == 0x000080, "Wrong size on UBTComposite_Sequence"); \ + +#define DUMPER7_ASSERTS_UBTComposite_SimpleParallel \ +static_assert(alignof(UBTComposite_SimpleParallel) == 0x000008, "Wrong alignment on UBTComposite_SimpleParallel"); \ +static_assert(sizeof(UBTComposite_SimpleParallel) == 0x000088, "Wrong size on UBTComposite_SimpleParallel"); \ +static_assert(offsetof(UBTComposite_SimpleParallel, FinishMode) == 0x000080, "Member 'UBTComposite_SimpleParallel::FinishMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_BlackboardBase \ +static_assert(alignof(UBTDecorator_BlackboardBase) == 0x000008, "Wrong alignment on UBTDecorator_BlackboardBase"); \ +static_assert(sizeof(UBTDecorator_BlackboardBase) == 0x000090, "Wrong size on UBTDecorator_BlackboardBase"); \ +static_assert(offsetof(UBTDecorator_BlackboardBase, BlackboardKey) == 0x000068, "Member 'UBTDecorator_BlackboardBase::BlackboardKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_Blackboard \ +static_assert(alignof(UBTDecorator_Blackboard) == 0x000008, "Wrong alignment on UBTDecorator_Blackboard"); \ +static_assert(sizeof(UBTDecorator_Blackboard) == 0x0000C0, "Wrong size on UBTDecorator_Blackboard"); \ +static_assert(offsetof(UBTDecorator_Blackboard, IntValue) == 0x000090, "Member 'UBTDecorator_Blackboard::IntValue' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Blackboard, FloatValue) == 0x000094, "Member 'UBTDecorator_Blackboard::FloatValue' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Blackboard, StringValue) == 0x000098, "Member 'UBTDecorator_Blackboard::StringValue' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Blackboard, CachedDescription) == 0x0000A8, "Member 'UBTDecorator_Blackboard::CachedDescription' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Blackboard, OperationType) == 0x0000B8, "Member 'UBTDecorator_Blackboard::OperationType' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Blackboard, NotifyObserver) == 0x0000B9, "Member 'UBTDecorator_Blackboard::NotifyObserver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_PerformConditionCheck \ +static_assert(alignof(BTDecorator_BlueprintBase_PerformConditionCheck) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_PerformConditionCheck"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_PerformConditionCheck) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_PerformConditionCheck"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_PerformConditionCheck, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_PerformConditionCheck::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_PerformConditionCheck, ReturnValue) == 0x000008, "Member 'BTDecorator_BlueprintBase_PerformConditionCheck::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_PerformConditionCheckAI \ +static_assert(alignof(BTDecorator_BlueprintBase_PerformConditionCheckAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_PerformConditionCheckAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_PerformConditionCheckAI) == 0x000018, "Wrong size on BTDecorator_BlueprintBase_PerformConditionCheckAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_PerformConditionCheckAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_PerformConditionCheckAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_PerformConditionCheckAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_PerformConditionCheckAI::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_PerformConditionCheckAI, ReturnValue) == 0x000010, "Member 'BTDecorator_BlueprintBase_PerformConditionCheckAI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveExecutionFinish \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveExecutionFinish) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveExecutionFinish"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveExecutionFinish) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_ReceiveExecutionFinish"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionFinish, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionFinish::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionFinish, NodeResult) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionFinish::NodeResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveExecutionFinishAI \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveExecutionFinishAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveExecutionFinishAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveExecutionFinishAI) == 0x000018, "Wrong size on BTDecorator_BlueprintBase_ReceiveExecutionFinishAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionFinishAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionFinishAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionFinishAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionFinishAI::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionFinishAI, NodeResult) == 0x000010, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionFinishAI::NodeResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveExecutionStart \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveExecutionStart) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveExecutionStart"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveExecutionStart) == 0x000008, "Wrong size on BTDecorator_BlueprintBase_ReceiveExecutionStart"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionStart, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionStart::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveExecutionStartAI \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveExecutionStartAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveExecutionStartAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveExecutionStartAI) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_ReceiveExecutionStartAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionStartAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionStartAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveExecutionStartAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveExecutionStartAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveObserverActivated \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveObserverActivated) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveObserverActivated"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveObserverActivated) == 0x000008, "Wrong size on BTDecorator_BlueprintBase_ReceiveObserverActivated"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverActivated, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveObserverActivated::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveObserverActivatedAI \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveObserverActivatedAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveObserverActivatedAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveObserverActivatedAI) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_ReceiveObserverActivatedAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverActivatedAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveObserverActivatedAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverActivatedAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveObserverActivatedAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveObserverDeactivated \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveObserverDeactivated) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveObserverDeactivated"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveObserverDeactivated) == 0x000008, "Wrong size on BTDecorator_BlueprintBase_ReceiveObserverDeactivated"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverDeactivated, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveObserverDeactivated::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveObserverDeactivatedAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveTick \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveTick) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveTick"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveTick) == 0x000010, "Wrong size on BTDecorator_BlueprintBase_ReceiveTick"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveTick, OwnerActor) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveTick::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveTick, DeltaSeconds) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_ReceiveTickAI \ +static_assert(alignof(BTDecorator_BlueprintBase_ReceiveTickAI) == 0x000008, "Wrong alignment on BTDecorator_BlueprintBase_ReceiveTickAI"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_ReceiveTickAI) == 0x000018, "Wrong size on BTDecorator_BlueprintBase_ReceiveTickAI"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveTickAI, OwnerController) == 0x000000, "Member 'BTDecorator_BlueprintBase_ReceiveTickAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveTickAI, ControlledPawn) == 0x000008, "Member 'BTDecorator_BlueprintBase_ReceiveTickAI::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_ReceiveTickAI, DeltaSeconds) == 0x000010, "Member 'BTDecorator_BlueprintBase_ReceiveTickAI::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_IsDecoratorExecutionActive \ +static_assert(alignof(BTDecorator_BlueprintBase_IsDecoratorExecutionActive) == 0x000001, "Wrong alignment on BTDecorator_BlueprintBase_IsDecoratorExecutionActive"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_IsDecoratorExecutionActive) == 0x000001, "Wrong size on BTDecorator_BlueprintBase_IsDecoratorExecutionActive"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_IsDecoratorExecutionActive, ReturnValue) == 0x000000, "Member 'BTDecorator_BlueprintBase_IsDecoratorExecutionActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTDecorator_BlueprintBase_IsDecoratorObserverActive \ +static_assert(alignof(BTDecorator_BlueprintBase_IsDecoratorObserverActive) == 0x000001, "Wrong alignment on BTDecorator_BlueprintBase_IsDecoratorObserverActive"); \ +static_assert(sizeof(BTDecorator_BlueprintBase_IsDecoratorObserverActive) == 0x000001, "Wrong size on BTDecorator_BlueprintBase_IsDecoratorObserverActive"); \ +static_assert(offsetof(BTDecorator_BlueprintBase_IsDecoratorObserverActive, ReturnValue) == 0x000000, "Member 'BTDecorator_BlueprintBase_IsDecoratorObserverActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_BlueprintBase \ +static_assert(alignof(UBTDecorator_BlueprintBase) == 0x000008, "Wrong alignment on UBTDecorator_BlueprintBase"); \ +static_assert(sizeof(UBTDecorator_BlueprintBase) == 0x0000A0, "Wrong size on UBTDecorator_BlueprintBase"); \ +static_assert(offsetof(UBTDecorator_BlueprintBase, AIOwner) == 0x000068, "Member 'UBTDecorator_BlueprintBase::AIOwner' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_BlueprintBase, ActorOwner) == 0x000070, "Member 'UBTDecorator_BlueprintBase::ActorOwner' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_BlueprintBase, ObservedKeyNames) == 0x000078, "Member 'UBTDecorator_BlueprintBase::ObservedKeyNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_CheckGameplayTagsOnActor \ +static_assert(alignof(UBTDecorator_CheckGameplayTagsOnActor) == 0x000008, "Wrong alignment on UBTDecorator_CheckGameplayTagsOnActor"); \ +static_assert(sizeof(UBTDecorator_CheckGameplayTagsOnActor) == 0x0000C8, "Wrong size on UBTDecorator_CheckGameplayTagsOnActor"); \ +static_assert(offsetof(UBTDecorator_CheckGameplayTagsOnActor, ActorToCheck) == 0x000068, "Member 'UBTDecorator_CheckGameplayTagsOnActor::ActorToCheck' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_CheckGameplayTagsOnActor, TagsToMatch) == 0x000090, "Member 'UBTDecorator_CheckGameplayTagsOnActor::TagsToMatch' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_CheckGameplayTagsOnActor, GameplayTags) == 0x000098, "Member 'UBTDecorator_CheckGameplayTagsOnActor::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_CheckGameplayTagsOnActor, CachedDescription) == 0x0000B8, "Member 'UBTDecorator_CheckGameplayTagsOnActor::CachedDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_CompareBBEntries \ +static_assert(alignof(UBTDecorator_CompareBBEntries) == 0x000008, "Wrong alignment on UBTDecorator_CompareBBEntries"); \ +static_assert(sizeof(UBTDecorator_CompareBBEntries) == 0x0000C0, "Wrong size on UBTDecorator_CompareBBEntries"); \ +static_assert(offsetof(UBTDecorator_CompareBBEntries, Operator) == 0x000068, "Member 'UBTDecorator_CompareBBEntries::Operator' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_CompareBBEntries, BlackboardKeyA) == 0x000070, "Member 'UBTDecorator_CompareBBEntries::BlackboardKeyA' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_CompareBBEntries, BlackboardKeyB) == 0x000098, "Member 'UBTDecorator_CompareBBEntries::BlackboardKeyB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_ConditionalLoop \ +static_assert(alignof(UBTDecorator_ConditionalLoop) == 0x000008, "Wrong alignment on UBTDecorator_ConditionalLoop"); \ +static_assert(sizeof(UBTDecorator_ConditionalLoop) == 0x0000C0, "Wrong size on UBTDecorator_ConditionalLoop"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_ConeCheck \ +static_assert(alignof(UBTDecorator_ConeCheck) == 0x000008, "Wrong alignment on UBTDecorator_ConeCheck"); \ +static_assert(sizeof(UBTDecorator_ConeCheck) == 0x0000F0, "Wrong size on UBTDecorator_ConeCheck"); \ +static_assert(offsetof(UBTDecorator_ConeCheck, ConeHalfAngle) == 0x000068, "Member 'UBTDecorator_ConeCheck::ConeHalfAngle' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_ConeCheck, ConeOrigin) == 0x000070, "Member 'UBTDecorator_ConeCheck::ConeOrigin' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_ConeCheck, ConeDirection) == 0x000098, "Member 'UBTDecorator_ConeCheck::ConeDirection' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_ConeCheck, Observed) == 0x0000C0, "Member 'UBTDecorator_ConeCheck::Observed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_Cooldown \ +static_assert(alignof(UBTDecorator_Cooldown) == 0x000008, "Wrong alignment on UBTDecorator_Cooldown"); \ +static_assert(sizeof(UBTDecorator_Cooldown) == 0x000070, "Wrong size on UBTDecorator_Cooldown"); \ +static_assert(offsetof(UBTDecorator_Cooldown, CoolDownTime) == 0x000068, "Member 'UBTDecorator_Cooldown::CoolDownTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_DoesPathExist \ +static_assert(alignof(UBTDecorator_DoesPathExist) == 0x000008, "Wrong alignment on UBTDecorator_DoesPathExist"); \ +static_assert(sizeof(UBTDecorator_DoesPathExist) == 0x0000C8, "Wrong size on UBTDecorator_DoesPathExist"); \ +static_assert(offsetof(UBTDecorator_DoesPathExist, BlackboardKeyA) == 0x000068, "Member 'UBTDecorator_DoesPathExist::BlackboardKeyA' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_DoesPathExist, BlackboardKeyB) == 0x000090, "Member 'UBTDecorator_DoesPathExist::BlackboardKeyB' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_DoesPathExist, PathQueryType) == 0x0000BC, "Member 'UBTDecorator_DoesPathExist::PathQueryType' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_DoesPathExist, FilterClass) == 0x0000C0, "Member 'UBTDecorator_DoesPathExist::FilterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_ForceSuccess \ +static_assert(alignof(UBTDecorator_ForceSuccess) == 0x000008, "Wrong alignment on UBTDecorator_ForceSuccess"); \ +static_assert(sizeof(UBTDecorator_ForceSuccess) == 0x000068, "Wrong size on UBTDecorator_ForceSuccess"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_IsAtLocation \ +static_assert(alignof(UBTDecorator_IsAtLocation) == 0x000008, "Wrong alignment on UBTDecorator_IsAtLocation"); \ +static_assert(sizeof(UBTDecorator_IsAtLocation) == 0x0000D8, "Wrong size on UBTDecorator_IsAtLocation"); \ +static_assert(offsetof(UBTDecorator_IsAtLocation, AcceptableRadius) == 0x000090, "Member 'UBTDecorator_IsAtLocation::AcceptableRadius' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_IsAtLocation, ParametrizedAcceptableRadius) == 0x000098, "Member 'UBTDecorator_IsAtLocation::ParametrizedAcceptableRadius' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_IsAtLocation, GeometricDistanceType) == 0x0000D0, "Member 'UBTDecorator_IsAtLocation::GeometricDistanceType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_IsBBEntryOfClass \ +static_assert(alignof(UBTDecorator_IsBBEntryOfClass) == 0x000008, "Wrong alignment on UBTDecorator_IsBBEntryOfClass"); \ +static_assert(sizeof(UBTDecorator_IsBBEntryOfClass) == 0x000098, "Wrong size on UBTDecorator_IsBBEntryOfClass"); \ +static_assert(offsetof(UBTDecorator_IsBBEntryOfClass, TestClass) == 0x000090, "Member 'UBTDecorator_IsBBEntryOfClass::TestClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_KeepInCone \ +static_assert(alignof(UBTDecorator_KeepInCone) == 0x000008, "Wrong alignment on UBTDecorator_KeepInCone"); \ +static_assert(sizeof(UBTDecorator_KeepInCone) == 0x0000C8, "Wrong size on UBTDecorator_KeepInCone"); \ +static_assert(offsetof(UBTDecorator_KeepInCone, ConeHalfAngle) == 0x000068, "Member 'UBTDecorator_KeepInCone::ConeHalfAngle' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_KeepInCone, ConeOrigin) == 0x000070, "Member 'UBTDecorator_KeepInCone::ConeOrigin' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_KeepInCone, Observed) == 0x000098, "Member 'UBTDecorator_KeepInCone::Observed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_Loop \ +static_assert(alignof(UBTDecorator_Loop) == 0x000008, "Wrong alignment on UBTDecorator_Loop"); \ +static_assert(sizeof(UBTDecorator_Loop) == 0x000078, "Wrong size on UBTDecorator_Loop"); \ +static_assert(offsetof(UBTDecorator_Loop, NumLoops) == 0x000068, "Member 'UBTDecorator_Loop::NumLoops' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Loop, bInfiniteLoop) == 0x00006C, "Member 'UBTDecorator_Loop::bInfiniteLoop' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_Loop, InfiniteLoopTimeoutTime) == 0x000070, "Member 'UBTDecorator_Loop::InfiniteLoopTimeoutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_ReachedMoveGoal \ +static_assert(alignof(UBTDecorator_ReachedMoveGoal) == 0x000008, "Wrong alignment on UBTDecorator_ReachedMoveGoal"); \ +static_assert(sizeof(UBTDecorator_ReachedMoveGoal) == 0x000068, "Wrong size on UBTDecorator_ReachedMoveGoal"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_SetTagCooldown \ +static_assert(alignof(UBTDecorator_SetTagCooldown) == 0x000008, "Wrong alignment on UBTDecorator_SetTagCooldown"); \ +static_assert(sizeof(UBTDecorator_SetTagCooldown) == 0x000078, "Wrong size on UBTDecorator_SetTagCooldown"); \ +static_assert(offsetof(UBTDecorator_SetTagCooldown, CooldownTag) == 0x000068, "Member 'UBTDecorator_SetTagCooldown::CooldownTag' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_SetTagCooldown, CooldownDuration) == 0x000070, "Member 'UBTDecorator_SetTagCooldown::CooldownDuration' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_SetTagCooldown, bAddToExistingDuration) == 0x000074, "Member 'UBTDecorator_SetTagCooldown::bAddToExistingDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_TagCooldown \ +static_assert(alignof(UBTDecorator_TagCooldown) == 0x000008, "Wrong alignment on UBTDecorator_TagCooldown"); \ +static_assert(sizeof(UBTDecorator_TagCooldown) == 0x000078, "Wrong size on UBTDecorator_TagCooldown"); \ +static_assert(offsetof(UBTDecorator_TagCooldown, CooldownTag) == 0x000068, "Member 'UBTDecorator_TagCooldown::CooldownTag' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_TagCooldown, CooldownDuration) == 0x000070, "Member 'UBTDecorator_TagCooldown::CooldownDuration' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_TagCooldown, bAddToExistingDuration) == 0x000074, "Member 'UBTDecorator_TagCooldown::bAddToExistingDuration' has a wrong offset!"); \ +static_assert(offsetof(UBTDecorator_TagCooldown, bActivatesCooldown) == 0x000075, "Member 'UBTDecorator_TagCooldown::bActivatesCooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTDecorator_TimeLimit \ +static_assert(alignof(UBTDecorator_TimeLimit) == 0x000008, "Wrong alignment on UBTDecorator_TimeLimit"); \ +static_assert(sizeof(UBTDecorator_TimeLimit) == 0x000070, "Wrong size on UBTDecorator_TimeLimit"); \ +static_assert(offsetof(UBTDecorator_TimeLimit, TimeLimit) == 0x000068, "Member 'UBTDecorator_TimeLimit::TimeLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTService_BlackboardBase \ +static_assert(alignof(UBTService_BlackboardBase) == 0x000008, "Wrong alignment on UBTService_BlackboardBase"); \ +static_assert(sizeof(UBTService_BlackboardBase) == 0x000098, "Wrong size on UBTService_BlackboardBase"); \ +static_assert(offsetof(UBTService_BlackboardBase, BlackboardKey) == 0x000070, "Member 'UBTService_BlackboardBase::BlackboardKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveActivation \ +static_assert(alignof(BTService_BlueprintBase_ReceiveActivation) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveActivation"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveActivation) == 0x000008, "Wrong size on BTService_BlueprintBase_ReceiveActivation"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveActivation, OwnerActor) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveActivation::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveActivationAI \ +static_assert(alignof(BTService_BlueprintBase_ReceiveActivationAI) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveActivationAI"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveActivationAI) == 0x000010, "Wrong size on BTService_BlueprintBase_ReceiveActivationAI"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveActivationAI, OwnerController) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveActivationAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveActivationAI, ControlledPawn) == 0x000008, "Member 'BTService_BlueprintBase_ReceiveActivationAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveDeactivation \ +static_assert(alignof(BTService_BlueprintBase_ReceiveDeactivation) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveDeactivation"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveDeactivation) == 0x000008, "Wrong size on BTService_BlueprintBase_ReceiveDeactivation"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveDeactivation, OwnerActor) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveDeactivation::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveDeactivationAI \ +static_assert(alignof(BTService_BlueprintBase_ReceiveDeactivationAI) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveDeactivationAI"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveDeactivationAI) == 0x000010, "Wrong size on BTService_BlueprintBase_ReceiveDeactivationAI"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveDeactivationAI, OwnerController) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveDeactivationAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveDeactivationAI, ControlledPawn) == 0x000008, "Member 'BTService_BlueprintBase_ReceiveDeactivationAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveSearchStart \ +static_assert(alignof(BTService_BlueprintBase_ReceiveSearchStart) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveSearchStart"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveSearchStart) == 0x000008, "Wrong size on BTService_BlueprintBase_ReceiveSearchStart"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveSearchStart, OwnerActor) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveSearchStart::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveSearchStartAI \ +static_assert(alignof(BTService_BlueprintBase_ReceiveSearchStartAI) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveSearchStartAI"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveSearchStartAI) == 0x000010, "Wrong size on BTService_BlueprintBase_ReceiveSearchStartAI"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveSearchStartAI, OwnerController) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveSearchStartAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveSearchStartAI, ControlledPawn) == 0x000008, "Member 'BTService_BlueprintBase_ReceiveSearchStartAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveTick \ +static_assert(alignof(BTService_BlueprintBase_ReceiveTick) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveTick"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveTick) == 0x000010, "Wrong size on BTService_BlueprintBase_ReceiveTick"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveTick, OwnerActor) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveTick::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveTick, DeltaSeconds) == 0x000008, "Member 'BTService_BlueprintBase_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_ReceiveTickAI \ +static_assert(alignof(BTService_BlueprintBase_ReceiveTickAI) == 0x000008, "Wrong alignment on BTService_BlueprintBase_ReceiveTickAI"); \ +static_assert(sizeof(BTService_BlueprintBase_ReceiveTickAI) == 0x000018, "Wrong size on BTService_BlueprintBase_ReceiveTickAI"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveTickAI, OwnerController) == 0x000000, "Member 'BTService_BlueprintBase_ReceiveTickAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveTickAI, ControlledPawn) == 0x000008, "Member 'BTService_BlueprintBase_ReceiveTickAI::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(BTService_BlueprintBase_ReceiveTickAI, DeltaSeconds) == 0x000010, "Member 'BTService_BlueprintBase_ReceiveTickAI::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTService_BlueprintBase_IsServiceActive \ +static_assert(alignof(BTService_BlueprintBase_IsServiceActive) == 0x000001, "Wrong alignment on BTService_BlueprintBase_IsServiceActive"); \ +static_assert(sizeof(BTService_BlueprintBase_IsServiceActive) == 0x000001, "Wrong size on BTService_BlueprintBase_IsServiceActive"); \ +static_assert(offsetof(BTService_BlueprintBase_IsServiceActive, ReturnValue) == 0x000000, "Member 'BTService_BlueprintBase_IsServiceActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTService_BlueprintBase \ +static_assert(alignof(UBTService_BlueprintBase) == 0x000008, "Wrong alignment on UBTService_BlueprintBase"); \ +static_assert(sizeof(UBTService_BlueprintBase) == 0x000098, "Wrong size on UBTService_BlueprintBase"); \ +static_assert(offsetof(UBTService_BlueprintBase, AIOwner) == 0x000070, "Member 'UBTService_BlueprintBase::AIOwner' has a wrong offset!"); \ +static_assert(offsetof(UBTService_BlueprintBase, ActorOwner) == 0x000078, "Member 'UBTService_BlueprintBase::ActorOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTService_DefaultFocus \ +static_assert(alignof(UBTService_DefaultFocus) == 0x000008, "Wrong alignment on UBTService_DefaultFocus"); \ +static_assert(sizeof(UBTService_DefaultFocus) == 0x0000A0, "Wrong size on UBTService_DefaultFocus"); \ +static_assert(offsetof(UBTService_DefaultFocus, FocusPriority) == 0x000098, "Member 'UBTService_DefaultFocus::FocusPriority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTService_RunEQS \ +static_assert(alignof(UBTService_RunEQS) == 0x000008, "Wrong alignment on UBTService_RunEQS"); \ +static_assert(sizeof(UBTService_RunEQS) == 0x0000F8, "Wrong size on UBTService_RunEQS"); \ +static_assert(offsetof(UBTService_RunEQS, EQSRequest) == 0x000098, "Member 'UBTService_RunEQS::EQSRequest' has a wrong offset!"); \ +static_assert(offsetof(UBTService_RunEQS, bUpdateBBOnFail) == 0x0000E0, "Member 'UBTService_RunEQS::bUpdateBBOnFail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_BlackboardBase \ +static_assert(alignof(UBTTask_BlackboardBase) == 0x000008, "Wrong alignment on UBTTask_BlackboardBase"); \ +static_assert(sizeof(UBTTask_BlackboardBase) == 0x000098, "Wrong size on UBTTask_BlackboardBase"); \ +static_assert(offsetof(UBTTask_BlackboardBase, BlackboardKey) == 0x000070, "Member 'UBTTask_BlackboardBase::BlackboardKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_FinishExecute \ +static_assert(alignof(BTTask_BlueprintBase_FinishExecute) == 0x000001, "Wrong alignment on BTTask_BlueprintBase_FinishExecute"); \ +static_assert(sizeof(BTTask_BlueprintBase_FinishExecute) == 0x000001, "Wrong size on BTTask_BlueprintBase_FinishExecute"); \ +static_assert(offsetof(BTTask_BlueprintBase_FinishExecute, bSuccess) == 0x000000, "Member 'BTTask_BlueprintBase_FinishExecute::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveAbort \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveAbort) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveAbort"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveAbort) == 0x000008, "Wrong size on BTTask_BlueprintBase_ReceiveAbort"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveAbort, OwnerActor) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveAbort::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveAbortAI \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveAbortAI) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveAbortAI"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveAbortAI) == 0x000010, "Wrong size on BTTask_BlueprintBase_ReceiveAbortAI"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveAbortAI, OwnerController) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveAbortAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveAbortAI, ControlledPawn) == 0x000008, "Member 'BTTask_BlueprintBase_ReceiveAbortAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveExecute \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveExecute) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveExecute"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveExecute) == 0x000008, "Wrong size on BTTask_BlueprintBase_ReceiveExecute"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveExecute, OwnerActor) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveExecute::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveExecuteAI \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveExecuteAI) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveExecuteAI"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveExecuteAI) == 0x000010, "Wrong size on BTTask_BlueprintBase_ReceiveExecuteAI"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveExecuteAI, OwnerController) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveExecuteAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveExecuteAI, ControlledPawn) == 0x000008, "Member 'BTTask_BlueprintBase_ReceiveExecuteAI::ControlledPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveTick \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveTick) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveTick"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveTick) == 0x000010, "Wrong size on BTTask_BlueprintBase_ReceiveTick"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveTick, OwnerActor) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveTick::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveTick, DeltaSeconds) == 0x000008, "Member 'BTTask_BlueprintBase_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_ReceiveTickAI \ +static_assert(alignof(BTTask_BlueprintBase_ReceiveTickAI) == 0x000008, "Wrong alignment on BTTask_BlueprintBase_ReceiveTickAI"); \ +static_assert(sizeof(BTTask_BlueprintBase_ReceiveTickAI) == 0x000018, "Wrong size on BTTask_BlueprintBase_ReceiveTickAI"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveTickAI, OwnerController) == 0x000000, "Member 'BTTask_BlueprintBase_ReceiveTickAI::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveTickAI, ControlledPawn) == 0x000008, "Member 'BTTask_BlueprintBase_ReceiveTickAI::ControlledPawn' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_ReceiveTickAI, DeltaSeconds) == 0x000010, "Member 'BTTask_BlueprintBase_ReceiveTickAI::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_SetFinishOnMessage \ +static_assert(alignof(BTTask_BlueprintBase_SetFinishOnMessage) == 0x000004, "Wrong alignment on BTTask_BlueprintBase_SetFinishOnMessage"); \ +static_assert(sizeof(BTTask_BlueprintBase_SetFinishOnMessage) == 0x000008, "Wrong size on BTTask_BlueprintBase_SetFinishOnMessage"); \ +static_assert(offsetof(BTTask_BlueprintBase_SetFinishOnMessage, MessageName) == 0x000000, "Member 'BTTask_BlueprintBase_SetFinishOnMessage::MessageName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_SetFinishOnMessageWithId \ +static_assert(alignof(BTTask_BlueprintBase_SetFinishOnMessageWithId) == 0x000004, "Wrong alignment on BTTask_BlueprintBase_SetFinishOnMessageWithId"); \ +static_assert(sizeof(BTTask_BlueprintBase_SetFinishOnMessageWithId) == 0x00000C, "Wrong size on BTTask_BlueprintBase_SetFinishOnMessageWithId"); \ +static_assert(offsetof(BTTask_BlueprintBase_SetFinishOnMessageWithId, MessageName) == 0x000000, "Member 'BTTask_BlueprintBase_SetFinishOnMessageWithId::MessageName' has a wrong offset!"); \ +static_assert(offsetof(BTTask_BlueprintBase_SetFinishOnMessageWithId, RequestID) == 0x000008, "Member 'BTTask_BlueprintBase_SetFinishOnMessageWithId::RequestID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_IsTaskAborting \ +static_assert(alignof(BTTask_BlueprintBase_IsTaskAborting) == 0x000001, "Wrong alignment on BTTask_BlueprintBase_IsTaskAborting"); \ +static_assert(sizeof(BTTask_BlueprintBase_IsTaskAborting) == 0x000001, "Wrong size on BTTask_BlueprintBase_IsTaskAborting"); \ +static_assert(offsetof(BTTask_BlueprintBase_IsTaskAborting, ReturnValue) == 0x000000, "Member 'BTTask_BlueprintBase_IsTaskAborting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BTTask_BlueprintBase_IsTaskExecuting \ +static_assert(alignof(BTTask_BlueprintBase_IsTaskExecuting) == 0x000001, "Wrong alignment on BTTask_BlueprintBase_IsTaskExecuting"); \ +static_assert(sizeof(BTTask_BlueprintBase_IsTaskExecuting) == 0x000001, "Wrong size on BTTask_BlueprintBase_IsTaskExecuting"); \ +static_assert(offsetof(BTTask_BlueprintBase_IsTaskExecuting, ReturnValue) == 0x000000, "Member 'BTTask_BlueprintBase_IsTaskExecuting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_BlueprintBase \ +static_assert(alignof(UBTTask_BlueprintBase) == 0x000008, "Wrong alignment on UBTTask_BlueprintBase"); \ +static_assert(sizeof(UBTTask_BlueprintBase) == 0x0000A8, "Wrong size on UBTTask_BlueprintBase"); \ +static_assert(offsetof(UBTTask_BlueprintBase, AIOwner) == 0x000070, "Member 'UBTTask_BlueprintBase::AIOwner' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_BlueprintBase, ActorOwner) == 0x000078, "Member 'UBTTask_BlueprintBase::ActorOwner' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_BlueprintBase, TickInterval) == 0x000080, "Member 'UBTTask_BlueprintBase::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_FinishWithResult \ +static_assert(alignof(UBTTask_FinishWithResult) == 0x000008, "Wrong alignment on UBTTask_FinishWithResult"); \ +static_assert(sizeof(UBTTask_FinishWithResult) == 0x000078, "Wrong size on UBTTask_FinishWithResult"); \ +static_assert(offsetof(UBTTask_FinishWithResult, Result) == 0x000070, "Member 'UBTTask_FinishWithResult::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_GameplayTaskBase \ +static_assert(alignof(UBTTask_GameplayTaskBase) == 0x000008, "Wrong alignment on UBTTask_GameplayTaskBase"); \ +static_assert(sizeof(UBTTask_GameplayTaskBase) == 0x000078, "Wrong size on UBTTask_GameplayTaskBase"); \ + +#define DUMPER7_ASSERTS_UBTTask_MakeNoise \ +static_assert(alignof(UBTTask_MakeNoise) == 0x000008, "Wrong alignment on UBTTask_MakeNoise"); \ +static_assert(sizeof(UBTTask_MakeNoise) == 0x000078, "Wrong size on UBTTask_MakeNoise"); \ +static_assert(offsetof(UBTTask_MakeNoise, Loudnes) == 0x000070, "Member 'UBTTask_MakeNoise::Loudnes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_MoveTo \ +static_assert(alignof(UBTTask_MoveTo) == 0x000008, "Wrong alignment on UBTTask_MoveTo"); \ +static_assert(sizeof(UBTTask_MoveTo) == 0x0000B0, "Wrong size on UBTTask_MoveTo"); \ +static_assert(offsetof(UBTTask_MoveTo, AcceptableRadius) == 0x000098, "Member 'UBTTask_MoveTo::AcceptableRadius' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_MoveTo, FilterClass) == 0x0000A0, "Member 'UBTTask_MoveTo::FilterClass' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_MoveTo, ObservedBlackboardValueTolerance) == 0x0000A8, "Member 'UBTTask_MoveTo::ObservedBlackboardValueTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_MoveDirectlyToward \ +static_assert(alignof(UBTTask_MoveDirectlyToward) == 0x000008, "Wrong alignment on UBTTask_MoveDirectlyToward"); \ +static_assert(sizeof(UBTTask_MoveDirectlyToward) == 0x0000B8, "Wrong size on UBTTask_MoveDirectlyToward"); \ + +#define DUMPER7_ASSERTS_UBTTask_PawnActionBase \ +static_assert(alignof(UBTTask_PawnActionBase) == 0x000008, "Wrong alignment on UBTTask_PawnActionBase"); \ +static_assert(sizeof(UBTTask_PawnActionBase) == 0x000070, "Wrong size on UBTTask_PawnActionBase"); \ + +#define DUMPER7_ASSERTS_UBTTask_PlayAnimation \ +static_assert(alignof(UBTTask_PlayAnimation) == 0x000008, "Wrong alignment on UBTTask_PlayAnimation"); \ +static_assert(sizeof(UBTTask_PlayAnimation) == 0x0000B0, "Wrong size on UBTTask_PlayAnimation"); \ +static_assert(offsetof(UBTTask_PlayAnimation, AnimationToPlay) == 0x000070, "Member 'UBTTask_PlayAnimation::AnimationToPlay' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_PlayAnimation, MyOwnerComp) == 0x000080, "Member 'UBTTask_PlayAnimation::MyOwnerComp' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_PlayAnimation, CachedSkelMesh) == 0x000088, "Member 'UBTTask_PlayAnimation::CachedSkelMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_PlaySound \ +static_assert(alignof(UBTTask_PlaySound) == 0x000008, "Wrong alignment on UBTTask_PlaySound"); \ +static_assert(sizeof(UBTTask_PlaySound) == 0x000078, "Wrong size on UBTTask_PlaySound"); \ +static_assert(offsetof(UBTTask_PlaySound, SoundToPlay) == 0x000070, "Member 'UBTTask_PlaySound::SoundToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_PushPawnAction \ +static_assert(alignof(UBTTask_PushPawnAction) == 0x000008, "Wrong alignment on UBTTask_PushPawnAction"); \ +static_assert(sizeof(UBTTask_PushPawnAction) == 0x000078, "Wrong size on UBTTask_PushPawnAction"); \ +static_assert(offsetof(UBTTask_PushPawnAction, Action) == 0x000070, "Member 'UBTTask_PushPawnAction::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_RotateToFaceBBEntry \ +static_assert(alignof(UBTTask_RotateToFaceBBEntry) == 0x000008, "Wrong alignment on UBTTask_RotateToFaceBBEntry"); \ +static_assert(sizeof(UBTTask_RotateToFaceBBEntry) == 0x0000A0, "Wrong size on UBTTask_RotateToFaceBBEntry"); \ +static_assert(offsetof(UBTTask_RotateToFaceBBEntry, Precision) == 0x000098, "Member 'UBTTask_RotateToFaceBBEntry::Precision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_RunBehavior \ +static_assert(alignof(UBTTask_RunBehavior) == 0x000008, "Wrong alignment on UBTTask_RunBehavior"); \ +static_assert(sizeof(UBTTask_RunBehavior) == 0x000078, "Wrong size on UBTTask_RunBehavior"); \ +static_assert(offsetof(UBTTask_RunBehavior, BehaviorAsset) == 0x000070, "Member 'UBTTask_RunBehavior::BehaviorAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_RunBehaviorDynamic \ +static_assert(alignof(UBTTask_RunBehaviorDynamic) == 0x000008, "Wrong alignment on UBTTask_RunBehaviorDynamic"); \ +static_assert(sizeof(UBTTask_RunBehaviorDynamic) == 0x000088, "Wrong size on UBTTask_RunBehaviorDynamic"); \ +static_assert(offsetof(UBTTask_RunBehaviorDynamic, InjectionTag) == 0x000070, "Member 'UBTTask_RunBehaviorDynamic::InjectionTag' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunBehaviorDynamic, DefaultBehaviorAsset) == 0x000078, "Member 'UBTTask_RunBehaviorDynamic::DefaultBehaviorAsset' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunBehaviorDynamic, BehaviorAsset) == 0x000080, "Member 'UBTTask_RunBehaviorDynamic::BehaviorAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_RunEQSQuery \ +static_assert(alignof(UBTTask_RunEQSQuery) == 0x000008, "Wrong alignment on UBTTask_RunEQSQuery"); \ +static_assert(sizeof(UBTTask_RunEQSQuery) == 0x000158, "Wrong size on UBTTask_RunEQSQuery"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, QueryTemplate) == 0x000098, "Member 'UBTTask_RunEQSQuery::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, QueryParams) == 0x0000A0, "Member 'UBTTask_RunEQSQuery::QueryParams' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, QueryConfig) == 0x0000B0, "Member 'UBTTask_RunEQSQuery::QueryConfig' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, RunMode) == 0x0000C0, "Member 'UBTTask_RunEQSQuery::RunMode' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, EQSQueryBlackboardKey) == 0x0000C8, "Member 'UBTTask_RunEQSQuery::EQSQueryBlackboardKey' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, bUseBBKey) == 0x0000F0, "Member 'UBTTask_RunEQSQuery::bUseBBKey' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, EQSRequest) == 0x0000F8, "Member 'UBTTask_RunEQSQuery::EQSRequest' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_RunEQSQuery, bUpdateBBOnFail) == 0x000140, "Member 'UBTTask_RunEQSQuery::bUpdateBBOnFail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_SetTagCooldown \ +static_assert(alignof(UBTTask_SetTagCooldown) == 0x000008, "Wrong alignment on UBTTask_SetTagCooldown"); \ +static_assert(sizeof(UBTTask_SetTagCooldown) == 0x000080, "Wrong size on UBTTask_SetTagCooldown"); \ +static_assert(offsetof(UBTTask_SetTagCooldown, CooldownTag) == 0x000070, "Member 'UBTTask_SetTagCooldown::CooldownTag' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_SetTagCooldown, bAddToExistingDuration) == 0x000078, "Member 'UBTTask_SetTagCooldown::bAddToExistingDuration' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_SetTagCooldown, CooldownDuration) == 0x00007C, "Member 'UBTTask_SetTagCooldown::CooldownDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_Wait \ +static_assert(alignof(UBTTask_Wait) == 0x000008, "Wrong alignment on UBTTask_Wait"); \ +static_assert(sizeof(UBTTask_Wait) == 0x000078, "Wrong size on UBTTask_Wait"); \ +static_assert(offsetof(UBTTask_Wait, WaitTime) == 0x000070, "Member 'UBTTask_Wait::WaitTime' has a wrong offset!"); \ +static_assert(offsetof(UBTTask_Wait, RandomDeviation) == 0x000074, "Member 'UBTTask_Wait::RandomDeviation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBTTask_WaitBlackboardTime \ +static_assert(alignof(UBTTask_WaitBlackboardTime) == 0x000008, "Wrong alignment on UBTTask_WaitBlackboardTime"); \ +static_assert(sizeof(UBTTask_WaitBlackboardTime) == 0x0000A0, "Wrong size on UBTTask_WaitBlackboardTime"); \ +static_assert(offsetof(UBTTask_WaitBlackboardTime, BlackboardKey) == 0x000078, "Member 'UBTTask_WaitBlackboardTime::BlackboardKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_CreateMoveToProxyObject \ +static_assert(alignof(AIBlueprintHelperLibrary_CreateMoveToProxyObject) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_CreateMoveToProxyObject"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_CreateMoveToProxyObject) == 0x000040, "Wrong size on AIBlueprintHelperLibrary_CreateMoveToProxyObject"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, WorldContextObject) == 0x000000, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, Pawn) == 0x000008, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::Pawn' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, destination) == 0x000010, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::destination' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, TargetActor) == 0x000028, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, AcceptanceRadius) == 0x000030, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::AcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, bStopOnOverlap) == 0x000034, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::bStopOnOverlap' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_CreateMoveToProxyObject, ReturnValue) == 0x000038, "Member 'AIBlueprintHelperLibrary_CreateMoveToProxyObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetAIController \ +static_assert(alignof(AIBlueprintHelperLibrary_GetAIController) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetAIController"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetAIController) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_GetAIController"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetAIController, ControlledActor) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetAIController::ControlledActor' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetAIController, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetAIController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetBlackboard \ +static_assert(alignof(AIBlueprintHelperLibrary_GetBlackboard) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetBlackboard"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetBlackboard) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_GetBlackboard"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetBlackboard, Target) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetBlackboard::Target' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetBlackboard, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetBlackboard::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetCurrentPath \ +static_assert(alignof(AIBlueprintHelperLibrary_GetCurrentPath) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetCurrentPath"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetCurrentPath) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_GetCurrentPath"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPath, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetCurrentPath::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPath, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetCurrentPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetCurrentPathIndex \ +static_assert(alignof(AIBlueprintHelperLibrary_GetCurrentPathIndex) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetCurrentPathIndex"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetCurrentPathIndex) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_GetCurrentPathIndex"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPathIndex, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetCurrentPathIndex::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPathIndex, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetCurrentPathIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetCurrentPathPoints \ +static_assert(alignof(AIBlueprintHelperLibrary_GetCurrentPathPoints) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetCurrentPathPoints"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetCurrentPathPoints) == 0x000018, "Wrong size on AIBlueprintHelperLibrary_GetCurrentPathPoints"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPathPoints, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetCurrentPathPoints::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetCurrentPathPoints, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetCurrentPathPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_GetNextNavLinkIndex \ +static_assert(alignof(AIBlueprintHelperLibrary_GetNextNavLinkIndex) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_GetNextNavLinkIndex"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_GetNextNavLinkIndex) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_GetNextNavLinkIndex"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetNextNavLinkIndex, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_GetNextNavLinkIndex::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_GetNextNavLinkIndex, ReturnValue) == 0x000008, "Member 'AIBlueprintHelperLibrary_GetNextNavLinkIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_IsValidAIDirection \ +static_assert(alignof(AIBlueprintHelperLibrary_IsValidAIDirection) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_IsValidAIDirection"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_IsValidAIDirection) == 0x000020, "Wrong size on AIBlueprintHelperLibrary_IsValidAIDirection"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAIDirection, DirectionVector) == 0x000000, "Member 'AIBlueprintHelperLibrary_IsValidAIDirection::DirectionVector' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAIDirection, ReturnValue) == 0x000018, "Member 'AIBlueprintHelperLibrary_IsValidAIDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_IsValidAILocation \ +static_assert(alignof(AIBlueprintHelperLibrary_IsValidAILocation) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_IsValidAILocation"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_IsValidAILocation) == 0x000020, "Wrong size on AIBlueprintHelperLibrary_IsValidAILocation"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAILocation, Location) == 0x000000, "Member 'AIBlueprintHelperLibrary_IsValidAILocation::Location' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAILocation, ReturnValue) == 0x000018, "Member 'AIBlueprintHelperLibrary_IsValidAILocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_IsValidAIRotation \ +static_assert(alignof(AIBlueprintHelperLibrary_IsValidAIRotation) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_IsValidAIRotation"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_IsValidAIRotation) == 0x000020, "Wrong size on AIBlueprintHelperLibrary_IsValidAIRotation"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAIRotation, Rotation) == 0x000000, "Member 'AIBlueprintHelperLibrary_IsValidAIRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_IsValidAIRotation, ReturnValue) == 0x000018, "Member 'AIBlueprintHelperLibrary_IsValidAIRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_LockAIResourcesWithAnimation \ +static_assert(alignof(AIBlueprintHelperLibrary_LockAIResourcesWithAnimation) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_LockAIResourcesWithAnimation"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_LockAIResourcesWithAnimation) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_LockAIResourcesWithAnimation"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_LockAIResourcesWithAnimation, AnimInstance) == 0x000000, "Member 'AIBlueprintHelperLibrary_LockAIResourcesWithAnimation::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_LockAIResourcesWithAnimation, bLockMovement) == 0x000008, "Member 'AIBlueprintHelperLibrary_LockAIResourcesWithAnimation::bLockMovement' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_LockAIResourcesWithAnimation, LockAILogic) == 0x000009, "Member 'AIBlueprintHelperLibrary_LockAIResourcesWithAnimation::LockAILogic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_SendAIMessage \ +static_assert(alignof(AIBlueprintHelperLibrary_SendAIMessage) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_SendAIMessage"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_SendAIMessage) == 0x000020, "Wrong size on AIBlueprintHelperLibrary_SendAIMessage"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SendAIMessage, Target) == 0x000000, "Member 'AIBlueprintHelperLibrary_SendAIMessage::Target' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SendAIMessage, Message) == 0x000008, "Member 'AIBlueprintHelperLibrary_SendAIMessage::Message' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SendAIMessage, MessageSource) == 0x000010, "Member 'AIBlueprintHelperLibrary_SendAIMessage::MessageSource' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SendAIMessage, bSuccess) == 0x000018, "Member 'AIBlueprintHelperLibrary_SendAIMessage::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_SimpleMoveToActor \ +static_assert(alignof(AIBlueprintHelperLibrary_SimpleMoveToActor) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_SimpleMoveToActor"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_SimpleMoveToActor) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_SimpleMoveToActor"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SimpleMoveToActor, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_SimpleMoveToActor::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SimpleMoveToActor, Goal) == 0x000008, "Member 'AIBlueprintHelperLibrary_SimpleMoveToActor::Goal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_SimpleMoveToLocation \ +static_assert(alignof(AIBlueprintHelperLibrary_SimpleMoveToLocation) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_SimpleMoveToLocation"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_SimpleMoveToLocation) == 0x000020, "Wrong size on AIBlueprintHelperLibrary_SimpleMoveToLocation"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SimpleMoveToLocation, Controller) == 0x000000, "Member 'AIBlueprintHelperLibrary_SimpleMoveToLocation::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SimpleMoveToLocation, Goal) == 0x000008, "Member 'AIBlueprintHelperLibrary_SimpleMoveToLocation::Goal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_SpawnAIFromClass \ +static_assert(alignof(AIBlueprintHelperLibrary_SpawnAIFromClass) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_SpawnAIFromClass"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_SpawnAIFromClass) == 0x000060, "Wrong size on AIBlueprintHelperLibrary_SpawnAIFromClass"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, WorldContextObject) == 0x000000, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, PawnClass) == 0x000008, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::PawnClass' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, BehaviorTree) == 0x000010, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::BehaviorTree' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, Location) == 0x000018, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::Location' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, Rotation) == 0x000030, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::Rotation' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, bNoCollisionFail) == 0x000048, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::bNoCollisionFail' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, Owner) == 0x000050, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::Owner' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_SpawnAIFromClass, ReturnValue) == 0x000058, "Member 'AIBlueprintHelperLibrary_SpawnAIFromClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation \ +static_assert(alignof(AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation) == 0x000008, "Wrong alignment on AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation"); \ +static_assert(sizeof(AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation) == 0x000010, "Wrong size on AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation, AnimInstance) == 0x000000, "Member 'AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation::AnimInstance' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation, bUnlockMovement) == 0x000008, "Member 'AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation::bUnlockMovement' has a wrong offset!"); \ +static_assert(offsetof(AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation, UnlockAILogic) == 0x000009, "Member 'AIBlueprintHelperLibrary_UnlockAIResourcesWithAnimation::UnlockAILogic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIBlueprintHelperLibrary \ +static_assert(alignof(UAIBlueprintHelperLibrary) == 0x000008, "Wrong alignment on UAIBlueprintHelperLibrary"); \ +static_assert(sizeof(UAIBlueprintHelperLibrary) == 0x000028, "Wrong size on UAIBlueprintHelperLibrary"); \ + +#define DUMPER7_ASSERTS_UAIDataProvider \ +static_assert(alignof(UAIDataProvider) == 0x000008, "Wrong alignment on UAIDataProvider"); \ +static_assert(sizeof(UAIDataProvider) == 0x000028, "Wrong size on UAIDataProvider"); \ + +#define DUMPER7_ASSERTS_UAIDataProvider_QueryParams \ +static_assert(alignof(UAIDataProvider_QueryParams) == 0x000008, "Wrong alignment on UAIDataProvider_QueryParams"); \ +static_assert(sizeof(UAIDataProvider_QueryParams) == 0x000040, "Wrong size on UAIDataProvider_QueryParams"); \ +static_assert(offsetof(UAIDataProvider_QueryParams, ParamName) == 0x000028, "Member 'UAIDataProvider_QueryParams::ParamName' has a wrong offset!"); \ +static_assert(offsetof(UAIDataProvider_QueryParams, FloatValue) == 0x000030, "Member 'UAIDataProvider_QueryParams::FloatValue' has a wrong offset!"); \ +static_assert(offsetof(UAIDataProvider_QueryParams, IntValue) == 0x000034, "Member 'UAIDataProvider_QueryParams::IntValue' has a wrong offset!"); \ +static_assert(offsetof(UAIDataProvider_QueryParams, BoolValue) == 0x000038, "Member 'UAIDataProvider_QueryParams::BoolValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIDataProvider_Random \ +static_assert(alignof(UAIDataProvider_Random) == 0x000008, "Wrong alignment on UAIDataProvider_Random"); \ +static_assert(sizeof(UAIDataProvider_Random) == 0x000050, "Wrong size on UAIDataProvider_Random"); \ +static_assert(offsetof(UAIDataProvider_Random, Min) == 0x000040, "Member 'UAIDataProvider_Random::Min' has a wrong offset!"); \ +static_assert(offsetof(UAIDataProvider_Random, Max) == 0x000044, "Member 'UAIDataProvider_Random::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADetourCrowdAIController \ +static_assert(alignof(ADetourCrowdAIController) == 0x000008, "Wrong alignment on ADetourCrowdAIController"); \ +static_assert(sizeof(ADetourCrowdAIController) == 0x0003C0, "Wrong size on ADetourCrowdAIController"); \ + +#define DUMPER7_ASSERTS_UEnvQueryContext \ +static_assert(alignof(UEnvQueryContext) == 0x000008, "Wrong alignment on UEnvQueryContext"); \ +static_assert(sizeof(UEnvQueryContext) == 0x000028, "Wrong size on UEnvQueryContext"); \ + +#define DUMPER7_ASSERTS_EnvQueryContext_BlueprintBase_ProvideActorsSet \ +static_assert(alignof(EnvQueryContext_BlueprintBase_ProvideActorsSet) == 0x000008, "Wrong alignment on EnvQueryContext_BlueprintBase_ProvideActorsSet"); \ +static_assert(sizeof(EnvQueryContext_BlueprintBase_ProvideActorsSet) == 0x000020, "Wrong size on EnvQueryContext_BlueprintBase_ProvideActorsSet"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideActorsSet, QuerierObject) == 0x000000, "Member 'EnvQueryContext_BlueprintBase_ProvideActorsSet::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideActorsSet, QuerierActor) == 0x000008, "Member 'EnvQueryContext_BlueprintBase_ProvideActorsSet::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideActorsSet, ResultingActorsSet) == 0x000010, "Member 'EnvQueryContext_BlueprintBase_ProvideActorsSet::ResultingActorsSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryContext_BlueprintBase_ProvideLocationsSet \ +static_assert(alignof(EnvQueryContext_BlueprintBase_ProvideLocationsSet) == 0x000008, "Wrong alignment on EnvQueryContext_BlueprintBase_ProvideLocationsSet"); \ +static_assert(sizeof(EnvQueryContext_BlueprintBase_ProvideLocationsSet) == 0x000020, "Wrong size on EnvQueryContext_BlueprintBase_ProvideLocationsSet"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideLocationsSet, QuerierObject) == 0x000000, "Member 'EnvQueryContext_BlueprintBase_ProvideLocationsSet::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideLocationsSet, QuerierActor) == 0x000008, "Member 'EnvQueryContext_BlueprintBase_ProvideLocationsSet::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideLocationsSet, ResultingLocationSet) == 0x000010, "Member 'EnvQueryContext_BlueprintBase_ProvideLocationsSet::ResultingLocationSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryContext_BlueprintBase_ProvideSingleActor \ +static_assert(alignof(EnvQueryContext_BlueprintBase_ProvideSingleActor) == 0x000008, "Wrong alignment on EnvQueryContext_BlueprintBase_ProvideSingleActor"); \ +static_assert(sizeof(EnvQueryContext_BlueprintBase_ProvideSingleActor) == 0x000018, "Wrong size on EnvQueryContext_BlueprintBase_ProvideSingleActor"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleActor, QuerierObject) == 0x000000, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleActor::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleActor, QuerierActor) == 0x000008, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleActor::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleActor, ResultingActor) == 0x000010, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleActor::ResultingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryContext_BlueprintBase_ProvideSingleLocation \ +static_assert(alignof(EnvQueryContext_BlueprintBase_ProvideSingleLocation) == 0x000008, "Wrong alignment on EnvQueryContext_BlueprintBase_ProvideSingleLocation"); \ +static_assert(sizeof(EnvQueryContext_BlueprintBase_ProvideSingleLocation) == 0x000028, "Wrong size on EnvQueryContext_BlueprintBase_ProvideSingleLocation"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleLocation, QuerierObject) == 0x000000, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleLocation::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleLocation, QuerierActor) == 0x000008, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleLocation::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryContext_BlueprintBase_ProvideSingleLocation, ResultingLocation) == 0x000010, "Member 'EnvQueryContext_BlueprintBase_ProvideSingleLocation::ResultingLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryContext_BlueprintBase \ +static_assert(alignof(UEnvQueryContext_BlueprintBase) == 0x000008, "Wrong alignment on UEnvQueryContext_BlueprintBase"); \ +static_assert(sizeof(UEnvQueryContext_BlueprintBase) == 0x000030, "Wrong size on UEnvQueryContext_BlueprintBase"); \ + +#define DUMPER7_ASSERTS_UEnvQueryContext_Item \ +static_assert(alignof(UEnvQueryContext_Item) == 0x000008, "Wrong alignment on UEnvQueryContext_Item"); \ +static_assert(sizeof(UEnvQueryContext_Item) == 0x000028, "Wrong size on UEnvQueryContext_Item"); \ + +#define DUMPER7_ASSERTS_UEnvQueryContext_Querier \ +static_assert(alignof(UEnvQueryContext_Querier) == 0x000008, "Wrong alignment on UEnvQueryContext_Querier"); \ +static_assert(sizeof(UEnvQueryContext_Querier) == 0x000028, "Wrong size on UEnvQueryContext_Querier"); \ + +#define DUMPER7_ASSERTS_UEnvQuery \ +static_assert(alignof(UEnvQuery) == 0x000008, "Wrong alignment on UEnvQuery"); \ +static_assert(sizeof(UEnvQuery) == 0x000048, "Wrong size on UEnvQuery"); \ +static_assert(offsetof(UEnvQuery, QueryName) == 0x000030, "Member 'UEnvQuery::QueryName' has a wrong offset!"); \ +static_assert(offsetof(UEnvQuery, Options) == 0x000038, "Member 'UEnvQuery::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryDebugHelpers \ +static_assert(alignof(UEnvQueryDebugHelpers) == 0x000008, "Wrong alignment on UEnvQueryDebugHelpers"); \ +static_assert(sizeof(UEnvQueryDebugHelpers) == 0x000028, "Wrong size on UEnvQueryDebugHelpers"); \ + +#define DUMPER7_ASSERTS_UEnvQueryNode \ +static_assert(alignof(UEnvQueryNode) == 0x000008, "Wrong alignment on UEnvQueryNode"); \ +static_assert(sizeof(UEnvQueryNode) == 0x000030, "Wrong size on UEnvQueryNode"); \ +static_assert(offsetof(UEnvQueryNode, VerNum) == 0x000028, "Member 'UEnvQueryNode::VerNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator \ +static_assert(alignof(UEnvQueryGenerator) == 0x000008, "Wrong alignment on UEnvQueryGenerator"); \ +static_assert(sizeof(UEnvQueryGenerator) == 0x000050, "Wrong size on UEnvQueryGenerator"); \ +static_assert(offsetof(UEnvQueryGenerator, OptionName) == 0x000030, "Member 'UEnvQueryGenerator::OptionName' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator, ItemType) == 0x000040, "Member 'UEnvQueryGenerator::ItemType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_SetNamedParam \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_SetNamedParam) == 0x000004, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_SetNamedParam"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_SetNamedParam) == 0x00000C, "Wrong size on EnvQueryInstanceBlueprintWrapper_SetNamedParam"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_SetNamedParam, ParamName) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_SetNamedParam::ParamName' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_SetNamedParam, Value) == 0x000008, "Member 'EnvQueryInstanceBlueprintWrapper_SetNamedParam::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_GetItemScore \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_GetItemScore) == 0x000004, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_GetItemScore"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_GetItemScore) == 0x000008, "Wrong size on EnvQueryInstanceBlueprintWrapper_GetItemScore"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetItemScore, ItemIndex) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_GetItemScore::ItemIndex' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetItemScore, ReturnValue) == 0x000004, "Member 'EnvQueryInstanceBlueprintWrapper_GetItemScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors) == 0x000008, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors) == 0x000018, "Wrong size on EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors, ResultActors) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors::ResultActors' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors, ReturnValue) == 0x000010, "Member 'EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations) == 0x000008, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations) == 0x000018, "Wrong size on EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations, ResultLocations) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations::ResultLocations' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations, ReturnValue) == 0x000010, "Member 'EnvQueryInstanceBlueprintWrapper_GetQueryResultsAsLocations::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_GetResultsAsActors \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_GetResultsAsActors) == 0x000008, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_GetResultsAsActors"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_GetResultsAsActors) == 0x000010, "Wrong size on EnvQueryInstanceBlueprintWrapper_GetResultsAsActors"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetResultsAsActors, ReturnValue) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_GetResultsAsActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations \ +static_assert(alignof(EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations) == 0x000008, "Wrong alignment on EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations"); \ +static_assert(sizeof(EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations) == 0x000010, "Wrong size on EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations"); \ +static_assert(offsetof(EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations, ReturnValue) == 0x000000, "Member 'EnvQueryInstanceBlueprintWrapper_GetResultsAsLocations::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryInstanceBlueprintWrapper \ +static_assert(alignof(UEnvQueryInstanceBlueprintWrapper) == 0x000008, "Wrong alignment on UEnvQueryInstanceBlueprintWrapper"); \ +static_assert(sizeof(UEnvQueryInstanceBlueprintWrapper) == 0x000078, "Wrong size on UEnvQueryInstanceBlueprintWrapper"); \ +static_assert(offsetof(UEnvQueryInstanceBlueprintWrapper, QueryID) == 0x000030, "Member 'UEnvQueryInstanceBlueprintWrapper::QueryID' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryInstanceBlueprintWrapper, ItemType) == 0x000058, "Member 'UEnvQueryInstanceBlueprintWrapper::ItemType' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryInstanceBlueprintWrapper, OptionIndex) == 0x000060, "Member 'UEnvQueryInstanceBlueprintWrapper::OptionIndex' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryInstanceBlueprintWrapper, OnQueryFinishedEvent) == 0x000068, "Member 'UEnvQueryInstanceBlueprintWrapper::OnQueryFinishedEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryManager_RunEQSQuery \ +static_assert(alignof(EnvQueryManager_RunEQSQuery) == 0x000008, "Wrong alignment on EnvQueryManager_RunEQSQuery"); \ +static_assert(sizeof(EnvQueryManager_RunEQSQuery) == 0x000030, "Wrong size on EnvQueryManager_RunEQSQuery"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, WorldContextObject) == 0x000000, "Member 'EnvQueryManager_RunEQSQuery::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, QueryTemplate) == 0x000008, "Member 'EnvQueryManager_RunEQSQuery::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, Querier) == 0x000010, "Member 'EnvQueryManager_RunEQSQuery::Querier' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, RunMode) == 0x000018, "Member 'EnvQueryManager_RunEQSQuery::RunMode' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, WrapperClass) == 0x000020, "Member 'EnvQueryManager_RunEQSQuery::WrapperClass' has a wrong offset!"); \ +static_assert(offsetof(EnvQueryManager_RunEQSQuery, ReturnValue) == 0x000028, "Member 'EnvQueryManager_RunEQSQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryManager \ +static_assert(alignof(UEnvQueryManager) == 0x000008, "Wrong alignment on UEnvQueryManager"); \ +static_assert(sizeof(UEnvQueryManager) == 0x000158, "Wrong size on UEnvQueryManager"); \ +static_assert(offsetof(UEnvQueryManager, InstanceCache) == 0x0000A8, "Member 'UEnvQueryManager::InstanceCache' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, LocalContexts) == 0x0000B8, "Member 'UEnvQueryManager::LocalContexts' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, GCShieldedWrappers) == 0x0000C8, "Member 'UEnvQueryManager::GCShieldedWrappers' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, MaxAllowedTestingTime) == 0x00012C, "Member 'UEnvQueryManager::MaxAllowedTestingTime' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, bTestQueriesUsingBreadth) == 0x000130, "Member 'UEnvQueryManager::bTestQueriesUsingBreadth' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, QueryCountWarningThreshold) == 0x000134, "Member 'UEnvQueryManager::QueryCountWarningThreshold' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, QueryCountWarningInterval) == 0x000138, "Member 'UEnvQueryManager::QueryCountWarningInterval' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, ExecutionTimeWarningSeconds) == 0x000140, "Member 'UEnvQueryManager::ExecutionTimeWarningSeconds' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, HandlingResultTimeWarningSeconds) == 0x000148, "Member 'UEnvQueryManager::HandlingResultTimeWarningSeconds' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryManager, GenerationTimeWarningSeconds) == 0x000150, "Member 'UEnvQueryManager::GenerationTimeWarningSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryOption \ +static_assert(alignof(UEnvQueryOption) == 0x000008, "Wrong alignment on UEnvQueryOption"); \ +static_assert(sizeof(UEnvQueryOption) == 0x000040, "Wrong size on UEnvQueryOption"); \ +static_assert(offsetof(UEnvQueryOption, Generator) == 0x000028, "Member 'UEnvQueryOption::Generator' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryOption, Tests) == 0x000030, "Member 'UEnvQueryOption::Tests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest \ +static_assert(alignof(UEnvQueryTest) == 0x000008, "Wrong alignment on UEnvQueryTest"); \ +static_assert(sizeof(UEnvQueryTest) == 0x0001F8, "Wrong size on UEnvQueryTest"); \ +static_assert(offsetof(UEnvQueryTest, TestOrder) == 0x000030, "Member 'UEnvQueryTest::TestOrder' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, TestPurpose) == 0x000034, "Member 'UEnvQueryTest::TestPurpose' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, TestComment) == 0x000038, "Member 'UEnvQueryTest::TestComment' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, MultipleContextFilterOp) == 0x000048, "Member 'UEnvQueryTest::MultipleContextFilterOp' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, MultipleContextScoreOp) == 0x000049, "Member 'UEnvQueryTest::MultipleContextScoreOp' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, FilterType) == 0x00004A, "Member 'UEnvQueryTest::FilterType' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, BoolValue) == 0x000050, "Member 'UEnvQueryTest::BoolValue' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, FloatValueMin) == 0x000088, "Member 'UEnvQueryTest::FloatValueMin' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, FloatValueMax) == 0x0000C0, "Member 'UEnvQueryTest::FloatValueMax' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ScoringEquation) == 0x0000F9, "Member 'UEnvQueryTest::ScoringEquation' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ClampMinType) == 0x0000FA, "Member 'UEnvQueryTest::ClampMinType' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ClampMaxType) == 0x0000FB, "Member 'UEnvQueryTest::ClampMaxType' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, NormalizationType) == 0x0000FC, "Member 'UEnvQueryTest::NormalizationType' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ScoreClampMin) == 0x000100, "Member 'UEnvQueryTest::ScoreClampMin' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ScoreClampMax) == 0x000138, "Member 'UEnvQueryTest::ScoreClampMax' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ScoringFactor) == 0x000170, "Member 'UEnvQueryTest::ScoringFactor' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, ReferenceValue) == 0x0001A8, "Member 'UEnvQueryTest::ReferenceValue' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest, bDefineReferenceValue) == 0x0001E0, "Member 'UEnvQueryTest::bDefineReferenceValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEQSRenderingComponent \ +static_assert(alignof(UEQSRenderingComponent) == 0x000010, "Wrong alignment on UEQSRenderingComponent"); \ +static_assert(sizeof(UEQSRenderingComponent) == 0x000600, "Wrong size on UEQSRenderingComponent"); \ + +#define DUMPER7_ASSERTS_AEQSTestingPawn \ +static_assert(alignof(AEQSTestingPawn) == 0x000010, "Wrong alignment on AEQSTestingPawn"); \ +static_assert(sizeof(AEQSTestingPawn) == 0x000720, "Wrong size on AEQSTestingPawn"); \ +static_assert(offsetof(AEQSTestingPawn, QueryTemplate) == 0x000680, "Member 'AEQSTestingPawn::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, QueryParams) == 0x000688, "Member 'AEQSTestingPawn::QueryParams' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, QueryConfig) == 0x000698, "Member 'AEQSTestingPawn::QueryConfig' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, TimeLimitPerStep) == 0x0006A8, "Member 'AEQSTestingPawn::TimeLimitPerStep' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, StepToDebugDraw) == 0x0006AC, "Member 'AEQSTestingPawn::StepToDebugDraw' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, HighlightMode) == 0x0006B0, "Member 'AEQSTestingPawn::HighlightMode' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, QueryingMode) == 0x0006B8, "Member 'AEQSTestingPawn::QueryingMode' has a wrong offset!"); \ +static_assert(offsetof(AEQSTestingPawn, NavAgentProperties) == 0x0006C0, "Member 'AEQSTestingPawn::NavAgentProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_ActorsOfClass \ +static_assert(alignof(UEnvQueryGenerator_ActorsOfClass) == 0x000008, "Wrong alignment on UEnvQueryGenerator_ActorsOfClass"); \ +static_assert(sizeof(UEnvQueryGenerator_ActorsOfClass) == 0x0000D0, "Wrong size on UEnvQueryGenerator_ActorsOfClass"); \ +static_assert(offsetof(UEnvQueryGenerator_ActorsOfClass, SearchedActorClass) == 0x000050, "Member 'UEnvQueryGenerator_ActorsOfClass::SearchedActorClass' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_ActorsOfClass, GenerateOnlyActorsInRadius) == 0x000058, "Member 'UEnvQueryGenerator_ActorsOfClass::GenerateOnlyActorsInRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_ActorsOfClass, SearchRadius) == 0x000090, "Member 'UEnvQueryGenerator_ActorsOfClass::SearchRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_ActorsOfClass, SearchCenter) == 0x0000C8, "Member 'UEnvQueryGenerator_ActorsOfClass::SearchCenter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryGenerator_BlueprintBase_AddGeneratedActor \ +static_assert(alignof(EnvQueryGenerator_BlueprintBase_AddGeneratedActor) == 0x000008, "Wrong alignment on EnvQueryGenerator_BlueprintBase_AddGeneratedActor"); \ +static_assert(sizeof(EnvQueryGenerator_BlueprintBase_AddGeneratedActor) == 0x000008, "Wrong size on EnvQueryGenerator_BlueprintBase_AddGeneratedActor"); \ +static_assert(offsetof(EnvQueryGenerator_BlueprintBase_AddGeneratedActor, GeneratedActor) == 0x000000, "Member 'EnvQueryGenerator_BlueprintBase_AddGeneratedActor::GeneratedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryGenerator_BlueprintBase_AddGeneratedVector \ +static_assert(alignof(EnvQueryGenerator_BlueprintBase_AddGeneratedVector) == 0x000008, "Wrong alignment on EnvQueryGenerator_BlueprintBase_AddGeneratedVector"); \ +static_assert(sizeof(EnvQueryGenerator_BlueprintBase_AddGeneratedVector) == 0x000018, "Wrong size on EnvQueryGenerator_BlueprintBase_AddGeneratedVector"); \ +static_assert(offsetof(EnvQueryGenerator_BlueprintBase_AddGeneratedVector, GeneratedVector) == 0x000000, "Member 'EnvQueryGenerator_BlueprintBase_AddGeneratedVector::GeneratedVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryGenerator_BlueprintBase_DoItemGeneration \ +static_assert(alignof(EnvQueryGenerator_BlueprintBase_DoItemGeneration) == 0x000008, "Wrong alignment on EnvQueryGenerator_BlueprintBase_DoItemGeneration"); \ +static_assert(sizeof(EnvQueryGenerator_BlueprintBase_DoItemGeneration) == 0x000010, "Wrong size on EnvQueryGenerator_BlueprintBase_DoItemGeneration"); \ +static_assert(offsetof(EnvQueryGenerator_BlueprintBase_DoItemGeneration, ContextLocations) == 0x000000, "Member 'EnvQueryGenerator_BlueprintBase_DoItemGeneration::ContextLocations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors \ +static_assert(alignof(EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors) == 0x000008, "Wrong alignment on EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors"); \ +static_assert(sizeof(EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors) == 0x000010, "Wrong size on EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors"); \ +static_assert(offsetof(EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors, ContextActors) == 0x000000, "Member 'EnvQueryGenerator_BlueprintBase_DoItemGenerationFromActors::ContextActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnvQueryGenerator_BlueprintBase_GetQuerier \ +static_assert(alignof(EnvQueryGenerator_BlueprintBase_GetQuerier) == 0x000008, "Wrong alignment on EnvQueryGenerator_BlueprintBase_GetQuerier"); \ +static_assert(sizeof(EnvQueryGenerator_BlueprintBase_GetQuerier) == 0x000008, "Wrong size on EnvQueryGenerator_BlueprintBase_GetQuerier"); \ +static_assert(offsetof(EnvQueryGenerator_BlueprintBase_GetQuerier, ReturnValue) == 0x000000, "Member 'EnvQueryGenerator_BlueprintBase_GetQuerier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_BlueprintBase \ +static_assert(alignof(UEnvQueryGenerator_BlueprintBase) == 0x000008, "Wrong alignment on UEnvQueryGenerator_BlueprintBase"); \ +static_assert(sizeof(UEnvQueryGenerator_BlueprintBase) == 0x000088, "Wrong size on UEnvQueryGenerator_BlueprintBase"); \ +static_assert(offsetof(UEnvQueryGenerator_BlueprintBase, GeneratorsActionDescription) == 0x000050, "Member 'UEnvQueryGenerator_BlueprintBase::GeneratorsActionDescription' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_BlueprintBase, Context) == 0x000068, "Member 'UEnvQueryGenerator_BlueprintBase::Context' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_BlueprintBase, GeneratedItemType) == 0x000070, "Member 'UEnvQueryGenerator_BlueprintBase::GeneratedItemType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_Composite \ +static_assert(alignof(UEnvQueryGenerator_Composite) == 0x000008, "Wrong alignment on UEnvQueryGenerator_Composite"); \ +static_assert(sizeof(UEnvQueryGenerator_Composite) == 0x000070, "Wrong size on UEnvQueryGenerator_Composite"); \ +static_assert(offsetof(UEnvQueryGenerator_Composite, Generators) == 0x000050, "Member 'UEnvQueryGenerator_Composite::Generators' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Composite, ForcedItemType) == 0x000068, "Member 'UEnvQueryGenerator_Composite::ForcedItemType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_ProjectedPoints \ +static_assert(alignof(UEnvQueryGenerator_ProjectedPoints) == 0x000008, "Wrong alignment on UEnvQueryGenerator_ProjectedPoints"); \ +static_assert(sizeof(UEnvQueryGenerator_ProjectedPoints) == 0x000090, "Wrong size on UEnvQueryGenerator_ProjectedPoints"); \ +static_assert(offsetof(UEnvQueryGenerator_ProjectedPoints, ProjectionData) == 0x000050, "Member 'UEnvQueryGenerator_ProjectedPoints::ProjectionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_Cone \ +static_assert(alignof(UEnvQueryGenerator_Cone) == 0x000008, "Wrong alignment on UEnvQueryGenerator_Cone"); \ +static_assert(sizeof(UEnvQueryGenerator_Cone) == 0x000180, "Wrong size on UEnvQueryGenerator_Cone"); \ +static_assert(offsetof(UEnvQueryGenerator_Cone, AlignedPointsDistance) == 0x000090, "Member 'UEnvQueryGenerator_Cone::AlignedPointsDistance' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Cone, ConeDegrees) == 0x0000C8, "Member 'UEnvQueryGenerator_Cone::ConeDegrees' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Cone, AngleStep) == 0x000100, "Member 'UEnvQueryGenerator_Cone::AngleStep' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Cone, Range) == 0x000138, "Member 'UEnvQueryGenerator_Cone::Range' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Cone, CenterActor) == 0x000170, "Member 'UEnvQueryGenerator_Cone::CenterActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_CurrentLocation \ +static_assert(alignof(UEnvQueryGenerator_CurrentLocation) == 0x000008, "Wrong alignment on UEnvQueryGenerator_CurrentLocation"); \ +static_assert(sizeof(UEnvQueryGenerator_CurrentLocation) == 0x000058, "Wrong size on UEnvQueryGenerator_CurrentLocation"); \ +static_assert(offsetof(UEnvQueryGenerator_CurrentLocation, QueryContext) == 0x000050, "Member 'UEnvQueryGenerator_CurrentLocation::QueryContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_Donut \ +static_assert(alignof(UEnvQueryGenerator_Donut) == 0x000008, "Wrong alignment on UEnvQueryGenerator_Donut"); \ +static_assert(sizeof(UEnvQueryGenerator_Donut) == 0x0001E0, "Wrong size on UEnvQueryGenerator_Donut"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, InnerRadius) == 0x000090, "Member 'UEnvQueryGenerator_Donut::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, OuterRadius) == 0x0000C8, "Member 'UEnvQueryGenerator_Donut::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, NumberOfRings) == 0x000100, "Member 'UEnvQueryGenerator_Donut::NumberOfRings' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, PointsPerRing) == 0x000138, "Member 'UEnvQueryGenerator_Donut::PointsPerRing' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, ArcDirection) == 0x000170, "Member 'UEnvQueryGenerator_Donut::ArcDirection' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, ArcAngle) == 0x000190, "Member 'UEnvQueryGenerator_Donut::ArcAngle' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, bUseSpiralPattern) == 0x0001C8, "Member 'UEnvQueryGenerator_Donut::bUseSpiralPattern' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_Donut, Center) == 0x0001D0, "Member 'UEnvQueryGenerator_Donut::Center' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_OnCircle \ +static_assert(alignof(UEnvQueryGenerator_OnCircle) == 0x000008, "Wrong alignment on UEnvQueryGenerator_OnCircle"); \ +static_assert(sizeof(UEnvQueryGenerator_OnCircle) == 0x000230, "Wrong size on UEnvQueryGenerator_OnCircle"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, CircleRadius) == 0x000090, "Member 'UEnvQueryGenerator_OnCircle::CircleRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, SpaceBetween) == 0x0000C8, "Member 'UEnvQueryGenerator_OnCircle::SpaceBetween' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, NumberOfPoints) == 0x000100, "Member 'UEnvQueryGenerator_OnCircle::NumberOfPoints' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, PointOnCircleSpacingMethod) == 0x000138, "Member 'UEnvQueryGenerator_OnCircle::PointOnCircleSpacingMethod' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, ArcDirection) == 0x000140, "Member 'UEnvQueryGenerator_OnCircle::ArcDirection' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, ArcAngle) == 0x000160, "Member 'UEnvQueryGenerator_OnCircle::ArcAngle' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, AngleRadians) == 0x000198, "Member 'UEnvQueryGenerator_OnCircle::AngleRadians' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, CircleCenter) == 0x0001A0, "Member 'UEnvQueryGenerator_OnCircle::CircleCenter' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, bIgnoreAnyContextActorsWhenGeneratingCircle) == 0x0001A8, "Member 'UEnvQueryGenerator_OnCircle::bIgnoreAnyContextActorsWhenGeneratingCircle' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, CircleCenterZOffset) == 0x0001B0, "Member 'UEnvQueryGenerator_OnCircle::CircleCenterZOffset' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_OnCircle, TraceData) == 0x0001E8, "Member 'UEnvQueryGenerator_OnCircle::TraceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_SimpleGrid \ +static_assert(alignof(UEnvQueryGenerator_SimpleGrid) == 0x000008, "Wrong alignment on UEnvQueryGenerator_SimpleGrid"); \ +static_assert(sizeof(UEnvQueryGenerator_SimpleGrid) == 0x000108, "Wrong size on UEnvQueryGenerator_SimpleGrid"); \ +static_assert(offsetof(UEnvQueryGenerator_SimpleGrid, GridSize) == 0x000090, "Member 'UEnvQueryGenerator_SimpleGrid::GridSize' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_SimpleGrid, SpaceBetween) == 0x0000C8, "Member 'UEnvQueryGenerator_SimpleGrid::SpaceBetween' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_SimpleGrid, GenerateAround) == 0x000100, "Member 'UEnvQueryGenerator_SimpleGrid::GenerateAround' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_PathingGrid \ +static_assert(alignof(UEnvQueryGenerator_PathingGrid) == 0x000008, "Wrong alignment on UEnvQueryGenerator_PathingGrid"); \ +static_assert(sizeof(UEnvQueryGenerator_PathingGrid) == 0x000180, "Wrong size on UEnvQueryGenerator_PathingGrid"); \ +static_assert(offsetof(UEnvQueryGenerator_PathingGrid, PathToItem) == 0x000108, "Member 'UEnvQueryGenerator_PathingGrid::PathToItem' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PathingGrid, NavigationFilter) == 0x000140, "Member 'UEnvQueryGenerator_PathingGrid::NavigationFilter' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PathingGrid, ScanRangeMultiplier) == 0x000148, "Member 'UEnvQueryGenerator_PathingGrid::ScanRangeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_PerceivedActors \ +static_assert(alignof(UEnvQueryGenerator_PerceivedActors) == 0x000008, "Wrong alignment on UEnvQueryGenerator_PerceivedActors"); \ +static_assert(sizeof(UEnvQueryGenerator_PerceivedActors) == 0x0000A8, "Wrong size on UEnvQueryGenerator_PerceivedActors"); \ +static_assert(offsetof(UEnvQueryGenerator_PerceivedActors, AllowedActorClass) == 0x000050, "Member 'UEnvQueryGenerator_PerceivedActors::AllowedActorClass' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PerceivedActors, SearchRadius) == 0x000058, "Member 'UEnvQueryGenerator_PerceivedActors::SearchRadius' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PerceivedActors, ListenerContext) == 0x000090, "Member 'UEnvQueryGenerator_PerceivedActors::ListenerContext' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PerceivedActors, SenseToUse) == 0x000098, "Member 'UEnvQueryGenerator_PerceivedActors::SenseToUse' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_PerceivedActors, bIncludeKnownActors) == 0x0000A0, "Member 'UEnvQueryGenerator_PerceivedActors::bIncludeKnownActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType \ +static_assert(alignof(UEnvQueryItemType) == 0x000008, "Wrong alignment on UEnvQueryItemType"); \ +static_assert(sizeof(UEnvQueryItemType) == 0x000030, "Wrong size on UEnvQueryItemType"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_VectorBase \ +static_assert(alignof(UEnvQueryItemType_VectorBase) == 0x000008, "Wrong alignment on UEnvQueryItemType_VectorBase"); \ +static_assert(sizeof(UEnvQueryItemType_VectorBase) == 0x000030, "Wrong size on UEnvQueryItemType_VectorBase"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_ActorBase \ +static_assert(alignof(UEnvQueryItemType_ActorBase) == 0x000008, "Wrong alignment on UEnvQueryItemType_ActorBase"); \ +static_assert(sizeof(UEnvQueryItemType_ActorBase) == 0x000030, "Wrong size on UEnvQueryItemType_ActorBase"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_Actor \ +static_assert(alignof(UEnvQueryItemType_Actor) == 0x000008, "Wrong alignment on UEnvQueryItemType_Actor"); \ +static_assert(sizeof(UEnvQueryItemType_Actor) == 0x000030, "Wrong size on UEnvQueryItemType_Actor"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_Direction \ +static_assert(alignof(UEnvQueryItemType_Direction) == 0x000008, "Wrong alignment on UEnvQueryItemType_Direction"); \ +static_assert(sizeof(UEnvQueryItemType_Direction) == 0x000030, "Wrong size on UEnvQueryItemType_Direction"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_Point \ +static_assert(alignof(UEnvQueryItemType_Point) == 0x000008, "Wrong alignment on UEnvQueryItemType_Point"); \ +static_assert(sizeof(UEnvQueryItemType_Point) == 0x000030, "Wrong size on UEnvQueryItemType_Point"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Distance \ +static_assert(alignof(UEnvQueryTest_Distance) == 0x000008, "Wrong alignment on UEnvQueryTest_Distance"); \ +static_assert(sizeof(UEnvQueryTest_Distance) == 0x000208, "Wrong size on UEnvQueryTest_Distance"); \ +static_assert(offsetof(UEnvQueryTest_Distance, TestMode) == 0x0001F8, "Member 'UEnvQueryTest_Distance::TestMode' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Distance, DistanceTo) == 0x000200, "Member 'UEnvQueryTest_Distance::DistanceTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Dot \ +static_assert(alignof(UEnvQueryTest_Dot) == 0x000008, "Wrong alignment on UEnvQueryTest_Dot"); \ +static_assert(sizeof(UEnvQueryTest_Dot) == 0x000240, "Wrong size on UEnvQueryTest_Dot"); \ +static_assert(offsetof(UEnvQueryTest_Dot, LineA) == 0x0001F8, "Member 'UEnvQueryTest_Dot::LineA' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Dot, LineB) == 0x000218, "Member 'UEnvQueryTest_Dot::LineB' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Dot, TestMode) == 0x000238, "Member 'UEnvQueryTest_Dot::TestMode' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Dot, bAbsoluteValue) == 0x000239, "Member 'UEnvQueryTest_Dot::bAbsoluteValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_GameplayTags \ +static_assert(alignof(UEnvQueryTest_GameplayTags) == 0x000008, "Wrong alignment on UEnvQueryTest_GameplayTags"); \ +static_assert(sizeof(UEnvQueryTest_GameplayTags) == 0x000268, "Wrong size on UEnvQueryTest_GameplayTags"); \ +static_assert(offsetof(UEnvQueryTest_GameplayTags, TagQueryToMatch) == 0x0001F8, "Member 'UEnvQueryTest_GameplayTags::TagQueryToMatch' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_GameplayTags, bRejectIncompatibleItems) == 0x000240, "Member 'UEnvQueryTest_GameplayTags::bRejectIncompatibleItems' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_GameplayTags, bUpdatedToUseQuery) == 0x000241, "Member 'UEnvQueryTest_GameplayTags::bUpdatedToUseQuery' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_GameplayTags, TagsToMatch) == 0x000242, "Member 'UEnvQueryTest_GameplayTags::TagsToMatch' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_GameplayTags, GameplayTags) == 0x000248, "Member 'UEnvQueryTest_GameplayTags::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Overlap \ +static_assert(alignof(UEnvQueryTest_Overlap) == 0x000008, "Wrong alignment on UEnvQueryTest_Overlap"); \ +static_assert(sizeof(UEnvQueryTest_Overlap) == 0x000228, "Wrong size on UEnvQueryTest_Overlap"); \ +static_assert(offsetof(UEnvQueryTest_Overlap, OverlapData) == 0x0001F8, "Member 'UEnvQueryTest_Overlap::OverlapData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Pathfinding \ +static_assert(alignof(UEnvQueryTest_Pathfinding) == 0x000008, "Wrong alignment on UEnvQueryTest_Pathfinding"); \ +static_assert(sizeof(UEnvQueryTest_Pathfinding) == 0x000280, "Wrong size on UEnvQueryTest_Pathfinding"); \ +static_assert(offsetof(UEnvQueryTest_Pathfinding, TestMode) == 0x0001F8, "Member 'UEnvQueryTest_Pathfinding::TestMode' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Pathfinding, Context) == 0x000200, "Member 'UEnvQueryTest_Pathfinding::Context' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Pathfinding, PathFromContext) == 0x000208, "Member 'UEnvQueryTest_Pathfinding::PathFromContext' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Pathfinding, SkipUnreachable) == 0x000240, "Member 'UEnvQueryTest_Pathfinding::SkipUnreachable' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Pathfinding, FilterClass) == 0x000278, "Member 'UEnvQueryTest_Pathfinding::FilterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_PathfindingBatch \ +static_assert(alignof(UEnvQueryTest_PathfindingBatch) == 0x000008, "Wrong alignment on UEnvQueryTest_PathfindingBatch"); \ +static_assert(sizeof(UEnvQueryTest_PathfindingBatch) == 0x0002B8, "Wrong size on UEnvQueryTest_PathfindingBatch"); \ +static_assert(offsetof(UEnvQueryTest_PathfindingBatch, ScanRangeMultiplier) == 0x000280, "Member 'UEnvQueryTest_PathfindingBatch::ScanRangeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Project \ +static_assert(alignof(UEnvQueryTest_Project) == 0x000008, "Wrong alignment on UEnvQueryTest_Project"); \ +static_assert(sizeof(UEnvQueryTest_Project) == 0x000238, "Wrong size on UEnvQueryTest_Project"); \ +static_assert(offsetof(UEnvQueryTest_Project, ProjectionData) == 0x0001F8, "Member 'UEnvQueryTest_Project::ProjectionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Random \ +static_assert(alignof(UEnvQueryTest_Random) == 0x000008, "Wrong alignment on UEnvQueryTest_Random"); \ +static_assert(sizeof(UEnvQueryTest_Random) == 0x0001F8, "Wrong size on UEnvQueryTest_Random"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Trace \ +static_assert(alignof(UEnvQueryTest_Trace) == 0x000008, "Wrong alignment on UEnvQueryTest_Trace"); \ +static_assert(sizeof(UEnvQueryTest_Trace) == 0x0002E8, "Wrong size on UEnvQueryTest_Trace"); \ +static_assert(offsetof(UEnvQueryTest_Trace, TraceData) == 0x0001F8, "Member 'UEnvQueryTest_Trace::TraceData' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Trace, TraceFromContext) == 0x000238, "Member 'UEnvQueryTest_Trace::TraceFromContext' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Trace, ItemHeightOffset) == 0x000270, "Member 'UEnvQueryTest_Trace::ItemHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Trace, ContextHeightOffset) == 0x0002A8, "Member 'UEnvQueryTest_Trace::ContextHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Trace, Context) == 0x0002E0, "Member 'UEnvQueryTest_Trace::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryTest_Volume \ +static_assert(alignof(UEnvQueryTest_Volume) == 0x000008, "Wrong alignment on UEnvQueryTest_Volume"); \ +static_assert(sizeof(UEnvQueryTest_Volume) == 0x000210, "Wrong size on UEnvQueryTest_Volume"); \ +static_assert(offsetof(UEnvQueryTest_Volume, VolumeContext) == 0x0001F8, "Member 'UEnvQueryTest_Volume::VolumeContext' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryTest_Volume, VolumeClass) == 0x000200, "Member 'UEnvQueryTest_Volume::VolumeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGridPathAIController \ +static_assert(alignof(AGridPathAIController) == 0x000008, "Wrong alignment on AGridPathAIController"); \ +static_assert(sizeof(AGridPathAIController) == 0x0003C0, "Wrong size on AGridPathAIController"); \ + +#define DUMPER7_ASSERTS_UAIHotSpotManager \ +static_assert(alignof(UAIHotSpotManager) == 0x000008, "Wrong alignment on UAIHotSpotManager"); \ +static_assert(sizeof(UAIHotSpotManager) == 0x000028, "Wrong size on UAIHotSpotManager"); \ + +#define DUMPER7_ASSERTS_PathFollowingComponent_OnActorBump \ +static_assert(alignof(PathFollowingComponent_OnActorBump) == 0x000008, "Wrong alignment on PathFollowingComponent_OnActorBump"); \ +static_assert(sizeof(PathFollowingComponent_OnActorBump) == 0x000110, "Wrong size on PathFollowingComponent_OnActorBump"); \ +static_assert(offsetof(PathFollowingComponent_OnActorBump, SelfActor) == 0x000000, "Member 'PathFollowingComponent_OnActorBump::SelfActor' has a wrong offset!"); \ +static_assert(offsetof(PathFollowingComponent_OnActorBump, OtherActor) == 0x000008, "Member 'PathFollowingComponent_OnActorBump::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(PathFollowingComponent_OnActorBump, NormalImpulse) == 0x000010, "Member 'PathFollowingComponent_OnActorBump::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(PathFollowingComponent_OnActorBump, Hit) == 0x000028, "Member 'PathFollowingComponent_OnActorBump::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PathFollowingComponent_OnNavDataRegistered \ +static_assert(alignof(PathFollowingComponent_OnNavDataRegistered) == 0x000008, "Wrong alignment on PathFollowingComponent_OnNavDataRegistered"); \ +static_assert(sizeof(PathFollowingComponent_OnNavDataRegistered) == 0x000008, "Wrong size on PathFollowingComponent_OnNavDataRegistered"); \ +static_assert(offsetof(PathFollowingComponent_OnNavDataRegistered, NavData) == 0x000000, "Member 'PathFollowingComponent_OnNavDataRegistered::NavData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PathFollowingComponent_GetPathActionType \ +static_assert(alignof(PathFollowingComponent_GetPathActionType) == 0x000001, "Wrong alignment on PathFollowingComponent_GetPathActionType"); \ +static_assert(sizeof(PathFollowingComponent_GetPathActionType) == 0x000001, "Wrong size on PathFollowingComponent_GetPathActionType"); \ +static_assert(offsetof(PathFollowingComponent_GetPathActionType, ReturnValue) == 0x000000, "Member 'PathFollowingComponent_GetPathActionType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PathFollowingComponent_GetPathDestination \ +static_assert(alignof(PathFollowingComponent_GetPathDestination) == 0x000008, "Wrong alignment on PathFollowingComponent_GetPathDestination"); \ +static_assert(sizeof(PathFollowingComponent_GetPathDestination) == 0x000018, "Wrong size on PathFollowingComponent_GetPathDestination"); \ +static_assert(offsetof(PathFollowingComponent_GetPathDestination, ReturnValue) == 0x000000, "Member 'PathFollowingComponent_GetPathDestination::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPathFollowingComponent \ +static_assert(alignof(UPathFollowingComponent) == 0x000008, "Wrong alignment on UPathFollowingComponent"); \ +static_assert(sizeof(UPathFollowingComponent) == 0x0002C8, "Wrong size on UPathFollowingComponent"); \ +static_assert(offsetof(UPathFollowingComponent, MovementComp) == 0x0000D8, "Member 'UPathFollowingComponent::MovementComp' has a wrong offset!"); \ +static_assert(offsetof(UPathFollowingComponent, MyNavData) == 0x0000E8, "Member 'UPathFollowingComponent::MyNavData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CrowdFollowingComponent_SuspendCrowdSteering \ +static_assert(alignof(CrowdFollowingComponent_SuspendCrowdSteering) == 0x000001, "Wrong alignment on CrowdFollowingComponent_SuspendCrowdSteering"); \ +static_assert(sizeof(CrowdFollowingComponent_SuspendCrowdSteering) == 0x000001, "Wrong size on CrowdFollowingComponent_SuspendCrowdSteering"); \ +static_assert(offsetof(CrowdFollowingComponent_SuspendCrowdSteering, bSuspend) == 0x000000, "Member 'CrowdFollowingComponent_SuspendCrowdSteering::bSuspend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCrowdFollowingComponent \ +static_assert(alignof(UCrowdFollowingComponent) == 0x000008, "Wrong alignment on UCrowdFollowingComponent"); \ +static_assert(sizeof(UCrowdFollowingComponent) == 0x000318, "Wrong size on UCrowdFollowingComponent"); \ +static_assert(offsetof(UCrowdFollowingComponent, CrowdAgentMoveDirection) == 0x0002E0, "Member 'UCrowdFollowingComponent::CrowdAgentMoveDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCrowdManager \ +static_assert(alignof(UCrowdManager) == 0x000008, "Wrong alignment on UCrowdManager"); \ +static_assert(sizeof(UCrowdManager) == 0x0000F0, "Wrong size on UCrowdManager"); \ +static_assert(offsetof(UCrowdManager, MyNavData) == 0x000028, "Member 'UCrowdManager::MyNavData' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, AvoidanceConfig) == 0x000030, "Member 'UCrowdManager::AvoidanceConfig' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, SamplingPatterns) == 0x000040, "Member 'UCrowdManager::SamplingPatterns' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, MaxAgents) == 0x000050, "Member 'UCrowdManager::MaxAgents' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, MaxAgentRadius) == 0x000054, "Member 'UCrowdManager::MaxAgentRadius' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, MaxAvoidedAgents) == 0x000058, "Member 'UCrowdManager::MaxAvoidedAgents' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, MaxAvoidedWalls) == 0x00005C, "Member 'UCrowdManager::MaxAvoidedWalls' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, NavmeshCheckInterval) == 0x000060, "Member 'UCrowdManager::NavmeshCheckInterval' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, PathOptimizationInterval) == 0x000064, "Member 'UCrowdManager::PathOptimizationInterval' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, SeparationDirClamp) == 0x000068, "Member 'UCrowdManager::SeparationDirClamp' has a wrong offset!"); \ +static_assert(offsetof(UCrowdManager, PathOffsetRadiusMultiplier) == 0x00006C, "Member 'UCrowdManager::PathOffsetRadiusMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGridPathFollowingComponent \ +static_assert(alignof(UGridPathFollowingComponent) == 0x000008, "Wrong alignment on UGridPathFollowingComponent"); \ +static_assert(sizeof(UGridPathFollowingComponent) == 0x0002F8, "Wrong size on UGridPathFollowingComponent"); \ +static_assert(offsetof(UGridPathFollowingComponent, GridManager) == 0x0002C8, "Member 'UGridPathFollowingComponent::GridManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavFilter_AIControllerDefault \ +static_assert(alignof(UNavFilter_AIControllerDefault) == 0x000008, "Wrong alignment on UNavFilter_AIControllerDefault"); \ +static_assert(sizeof(UNavFilter_AIControllerDefault) == 0x000048, "Wrong size on UNavFilter_AIControllerDefault"); \ + +#define DUMPER7_ASSERTS_NavLinkProxy_ReceiveSmartLinkReached \ +static_assert(alignof(NavLinkProxy_ReceiveSmartLinkReached) == 0x000008, "Wrong alignment on NavLinkProxy_ReceiveSmartLinkReached"); \ +static_assert(sizeof(NavLinkProxy_ReceiveSmartLinkReached) == 0x000020, "Wrong size on NavLinkProxy_ReceiveSmartLinkReached"); \ +static_assert(offsetof(NavLinkProxy_ReceiveSmartLinkReached, Agent) == 0x000000, "Member 'NavLinkProxy_ReceiveSmartLinkReached::Agent' has a wrong offset!"); \ +static_assert(offsetof(NavLinkProxy_ReceiveSmartLinkReached, destination) == 0x000008, "Member 'NavLinkProxy_ReceiveSmartLinkReached::destination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLinkProxy_ResumePathFollowing \ +static_assert(alignof(NavLinkProxy_ResumePathFollowing) == 0x000008, "Wrong alignment on NavLinkProxy_ResumePathFollowing"); \ +static_assert(sizeof(NavLinkProxy_ResumePathFollowing) == 0x000008, "Wrong size on NavLinkProxy_ResumePathFollowing"); \ +static_assert(offsetof(NavLinkProxy_ResumePathFollowing, Agent) == 0x000000, "Member 'NavLinkProxy_ResumePathFollowing::Agent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLinkProxy_SetSmartLinkEnabled \ +static_assert(alignof(NavLinkProxy_SetSmartLinkEnabled) == 0x000001, "Wrong alignment on NavLinkProxy_SetSmartLinkEnabled"); \ +static_assert(sizeof(NavLinkProxy_SetSmartLinkEnabled) == 0x000001, "Wrong size on NavLinkProxy_SetSmartLinkEnabled"); \ +static_assert(offsetof(NavLinkProxy_SetSmartLinkEnabled, bEnabled) == 0x000000, "Member 'NavLinkProxy_SetSmartLinkEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLinkProxy_HasMovingAgents \ +static_assert(alignof(NavLinkProxy_HasMovingAgents) == 0x000001, "Wrong alignment on NavLinkProxy_HasMovingAgents"); \ +static_assert(sizeof(NavLinkProxy_HasMovingAgents) == 0x000001, "Wrong size on NavLinkProxy_HasMovingAgents"); \ +static_assert(offsetof(NavLinkProxy_HasMovingAgents, ReturnValue) == 0x000000, "Member 'NavLinkProxy_HasMovingAgents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLinkProxy_IsSmartLinkEnabled \ +static_assert(alignof(NavLinkProxy_IsSmartLinkEnabled) == 0x000001, "Wrong alignment on NavLinkProxy_IsSmartLinkEnabled"); \ +static_assert(sizeof(NavLinkProxy_IsSmartLinkEnabled) == 0x000001, "Wrong size on NavLinkProxy_IsSmartLinkEnabled"); \ +static_assert(offsetof(NavLinkProxy_IsSmartLinkEnabled, ReturnValue) == 0x000000, "Member 'NavLinkProxy_IsSmartLinkEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANavLinkProxy \ +static_assert(alignof(ANavLinkProxy) == 0x000008, "Wrong alignment on ANavLinkProxy"); \ +static_assert(sizeof(ANavLinkProxy) == 0x0002E8, "Wrong size on ANavLinkProxy"); \ +static_assert(offsetof(ANavLinkProxy, PointLinks) == 0x0002A8, "Member 'ANavLinkProxy::PointLinks' has a wrong offset!"); \ +static_assert(offsetof(ANavLinkProxy, SegmentLinks) == 0x0002B8, "Member 'ANavLinkProxy::SegmentLinks' has a wrong offset!"); \ +static_assert(offsetof(ANavLinkProxy, SmartLinkComp) == 0x0002C8, "Member 'ANavLinkProxy::SmartLinkComp' has a wrong offset!"); \ +static_assert(offsetof(ANavLinkProxy, bSmartLinkIsRelevant) == 0x0002D0, "Member 'ANavLinkProxy::bSmartLinkIsRelevant' has a wrong offset!"); \ +static_assert(offsetof(ANavLinkProxy, OnSmartLinkReached) == 0x0002D8, "Member 'ANavLinkProxy::OnSmartLinkReached' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_AddLocalNavigationGridForBox \ +static_assert(alignof(NavLocalGridManager_AddLocalNavigationGridForBox) == 0x000008, "Wrong alignment on NavLocalGridManager_AddLocalNavigationGridForBox"); \ +static_assert(sizeof(NavLocalGridManager_AddLocalNavigationGridForBox) == 0x000060, "Wrong size on NavLocalGridManager_AddLocalNavigationGridForBox"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, Location) == 0x000008, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::Location' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, Extent) == 0x000020, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::Extent' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, Rotation) == 0x000038, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::Rotation' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, Radius2D) == 0x000050, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::Radius2D' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, Height) == 0x000054, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::Height' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, bRebuildGrids) == 0x000058, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::bRebuildGrids' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForBox, ReturnValue) == 0x00005C, "Member 'NavLocalGridManager_AddLocalNavigationGridForBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_AddLocalNavigationGridForCapsule \ +static_assert(alignof(NavLocalGridManager_AddLocalNavigationGridForCapsule) == 0x000008, "Wrong alignment on NavLocalGridManager_AddLocalNavigationGridForCapsule"); \ +static_assert(sizeof(NavLocalGridManager_AddLocalNavigationGridForCapsule) == 0x000038, "Wrong size on NavLocalGridManager_AddLocalNavigationGridForCapsule"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, Location) == 0x000008, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::Location' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, CapsuleRadius) == 0x000020, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::CapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, CapsuleHalfHeight) == 0x000024, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::CapsuleHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, Radius2D) == 0x000028, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::Radius2D' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, Height) == 0x00002C, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::Height' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, bRebuildGrids) == 0x000030, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::bRebuildGrids' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForCapsule, ReturnValue) == 0x000034, "Member 'NavLocalGridManager_AddLocalNavigationGridForCapsule::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_AddLocalNavigationGridForPoint \ +static_assert(alignof(NavLocalGridManager_AddLocalNavigationGridForPoint) == 0x000008, "Wrong alignment on NavLocalGridManager_AddLocalNavigationGridForPoint"); \ +static_assert(sizeof(NavLocalGridManager_AddLocalNavigationGridForPoint) == 0x000030, "Wrong size on NavLocalGridManager_AddLocalNavigationGridForPoint"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, Location) == 0x000008, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::Location' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, Radius2D) == 0x000020, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::Radius2D' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, Height) == 0x000024, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::Height' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, bRebuildGrids) == 0x000028, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::bRebuildGrids' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoint, ReturnValue) == 0x00002C, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_AddLocalNavigationGridForPoints \ +static_assert(alignof(NavLocalGridManager_AddLocalNavigationGridForPoints) == 0x000008, "Wrong alignment on NavLocalGridManager_AddLocalNavigationGridForPoints"); \ +static_assert(sizeof(NavLocalGridManager_AddLocalNavigationGridForPoints) == 0x000028, "Wrong size on NavLocalGridManager_AddLocalNavigationGridForPoints"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, Locations) == 0x000008, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::Locations' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, Radius2D) == 0x000018, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::Radius2D' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, Height) == 0x00001C, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::Height' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, bRebuildGrids) == 0x000020, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::bRebuildGrids' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_AddLocalNavigationGridForPoints, ReturnValue) == 0x000024, "Member 'NavLocalGridManager_AddLocalNavigationGridForPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_FindLocalNavigationGridPath \ +static_assert(alignof(NavLocalGridManager_FindLocalNavigationGridPath) == 0x000008, "Wrong alignment on NavLocalGridManager_FindLocalNavigationGridPath"); \ +static_assert(sizeof(NavLocalGridManager_FindLocalNavigationGridPath) == 0x000050, "Wrong size on NavLocalGridManager_FindLocalNavigationGridPath"); \ +static_assert(offsetof(NavLocalGridManager_FindLocalNavigationGridPath, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_FindLocalNavigationGridPath::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_FindLocalNavigationGridPath, Start) == 0x000008, "Member 'NavLocalGridManager_FindLocalNavigationGridPath::Start' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_FindLocalNavigationGridPath, End) == 0x000020, "Member 'NavLocalGridManager_FindLocalNavigationGridPath::End' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_FindLocalNavigationGridPath, PathPoints) == 0x000038, "Member 'NavLocalGridManager_FindLocalNavigationGridPath::PathPoints' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_FindLocalNavigationGridPath, ReturnValue) == 0x000048, "Member 'NavLocalGridManager_FindLocalNavigationGridPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_RemoveLocalNavigationGrid \ +static_assert(alignof(NavLocalGridManager_RemoveLocalNavigationGrid) == 0x000008, "Wrong alignment on NavLocalGridManager_RemoveLocalNavigationGrid"); \ +static_assert(sizeof(NavLocalGridManager_RemoveLocalNavigationGrid) == 0x000010, "Wrong size on NavLocalGridManager_RemoveLocalNavigationGrid"); \ +static_assert(offsetof(NavLocalGridManager_RemoveLocalNavigationGrid, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_RemoveLocalNavigationGrid::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_RemoveLocalNavigationGrid, GridId) == 0x000008, "Member 'NavLocalGridManager_RemoveLocalNavigationGrid::GridId' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_RemoveLocalNavigationGrid, bRebuildGrids) == 0x00000C, "Member 'NavLocalGridManager_RemoveLocalNavigationGrid::bRebuildGrids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NavLocalGridManager_SetLocalNavigationGridDensity \ +static_assert(alignof(NavLocalGridManager_SetLocalNavigationGridDensity) == 0x000008, "Wrong alignment on NavLocalGridManager_SetLocalNavigationGridDensity"); \ +static_assert(sizeof(NavLocalGridManager_SetLocalNavigationGridDensity) == 0x000010, "Wrong size on NavLocalGridManager_SetLocalNavigationGridDensity"); \ +static_assert(offsetof(NavLocalGridManager_SetLocalNavigationGridDensity, WorldContextObject) == 0x000000, "Member 'NavLocalGridManager_SetLocalNavigationGridDensity::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_SetLocalNavigationGridDensity, CellSize) == 0x000008, "Member 'NavLocalGridManager_SetLocalNavigationGridDensity::CellSize' has a wrong offset!"); \ +static_assert(offsetof(NavLocalGridManager_SetLocalNavigationGridDensity, ReturnValue) == 0x00000C, "Member 'NavLocalGridManager_SetLocalNavigationGridDensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavLocalGridManager \ +static_assert(alignof(UNavLocalGridManager) == 0x000008, "Wrong alignment on UNavLocalGridManager"); \ +static_assert(sizeof(UNavLocalGridManager) == 0x000058, "Wrong size on UNavLocalGridManager"); \ + +#define DUMPER7_ASSERTS_UPathFollowingManager \ +static_assert(alignof(UPathFollowingManager) == 0x000008, "Wrong alignment on UPathFollowingManager"); \ +static_assert(sizeof(UPathFollowingManager) == 0x000028, "Wrong size on UPathFollowingManager"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_GetActorsPerception \ +static_assert(alignof(AIPerceptionComponent_GetActorsPerception) == 0x000008, "Wrong alignment on AIPerceptionComponent_GetActorsPerception"); \ +static_assert(sizeof(AIPerceptionComponent_GetActorsPerception) == 0x000030, "Wrong size on AIPerceptionComponent_GetActorsPerception"); \ +static_assert(offsetof(AIPerceptionComponent_GetActorsPerception, Actor) == 0x000000, "Member 'AIPerceptionComponent_GetActorsPerception::Actor' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_GetActorsPerception, Info) == 0x000008, "Member 'AIPerceptionComponent_GetActorsPerception::Info' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_GetActorsPerception, ReturnValue) == 0x000028, "Member 'AIPerceptionComponent_GetActorsPerception::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_OnOwnerEndPlay \ +static_assert(alignof(AIPerceptionComponent_OnOwnerEndPlay) == 0x000008, "Wrong alignment on AIPerceptionComponent_OnOwnerEndPlay"); \ +static_assert(sizeof(AIPerceptionComponent_OnOwnerEndPlay) == 0x000010, "Wrong size on AIPerceptionComponent_OnOwnerEndPlay"); \ +static_assert(offsetof(AIPerceptionComponent_OnOwnerEndPlay, Actor) == 0x000000, "Member 'AIPerceptionComponent_OnOwnerEndPlay::Actor' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_OnOwnerEndPlay, EndPlayReason) == 0x000008, "Member 'AIPerceptionComponent_OnOwnerEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_SetSenseEnabled \ +static_assert(alignof(AIPerceptionComponent_SetSenseEnabled) == 0x000008, "Wrong alignment on AIPerceptionComponent_SetSenseEnabled"); \ +static_assert(sizeof(AIPerceptionComponent_SetSenseEnabled) == 0x000010, "Wrong size on AIPerceptionComponent_SetSenseEnabled"); \ +static_assert(offsetof(AIPerceptionComponent_SetSenseEnabled, SenseClass) == 0x000000, "Member 'AIPerceptionComponent_SetSenseEnabled::SenseClass' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_SetSenseEnabled, bEnable) == 0x000008, "Member 'AIPerceptionComponent_SetSenseEnabled::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_GetCurrentlyPerceivedActors \ +static_assert(alignof(AIPerceptionComponent_GetCurrentlyPerceivedActors) == 0x000008, "Wrong alignment on AIPerceptionComponent_GetCurrentlyPerceivedActors"); \ +static_assert(sizeof(AIPerceptionComponent_GetCurrentlyPerceivedActors) == 0x000018, "Wrong size on AIPerceptionComponent_GetCurrentlyPerceivedActors"); \ +static_assert(offsetof(AIPerceptionComponent_GetCurrentlyPerceivedActors, SenseToUse) == 0x000000, "Member 'AIPerceptionComponent_GetCurrentlyPerceivedActors::SenseToUse' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_GetCurrentlyPerceivedActors, OutActors) == 0x000008, "Member 'AIPerceptionComponent_GetCurrentlyPerceivedActors::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_GetKnownPerceivedActors \ +static_assert(alignof(AIPerceptionComponent_GetKnownPerceivedActors) == 0x000008, "Wrong alignment on AIPerceptionComponent_GetKnownPerceivedActors"); \ +static_assert(sizeof(AIPerceptionComponent_GetKnownPerceivedActors) == 0x000018, "Wrong size on AIPerceptionComponent_GetKnownPerceivedActors"); \ +static_assert(offsetof(AIPerceptionComponent_GetKnownPerceivedActors, SenseToUse) == 0x000000, "Member 'AIPerceptionComponent_GetKnownPerceivedActors::SenseToUse' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_GetKnownPerceivedActors, OutActors) == 0x000008, "Member 'AIPerceptionComponent_GetKnownPerceivedActors::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_GetPerceivedHostileActors \ +static_assert(alignof(AIPerceptionComponent_GetPerceivedHostileActors) == 0x000008, "Wrong alignment on AIPerceptionComponent_GetPerceivedHostileActors"); \ +static_assert(sizeof(AIPerceptionComponent_GetPerceivedHostileActors) == 0x000010, "Wrong size on AIPerceptionComponent_GetPerceivedHostileActors"); \ +static_assert(offsetof(AIPerceptionComponent_GetPerceivedHostileActors, OutActors) == 0x000000, "Member 'AIPerceptionComponent_GetPerceivedHostileActors::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionComponent_GetPerceivedHostileActorsBySense \ +static_assert(alignof(AIPerceptionComponent_GetPerceivedHostileActorsBySense) == 0x000008, "Wrong alignment on AIPerceptionComponent_GetPerceivedHostileActorsBySense"); \ +static_assert(sizeof(AIPerceptionComponent_GetPerceivedHostileActorsBySense) == 0x000018, "Wrong size on AIPerceptionComponent_GetPerceivedHostileActorsBySense"); \ +static_assert(offsetof(AIPerceptionComponent_GetPerceivedHostileActorsBySense, SenseToUse) == 0x000000, "Member 'AIPerceptionComponent_GetPerceivedHostileActorsBySense::SenseToUse' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionComponent_GetPerceivedHostileActorsBySense, OutActors) == 0x000008, "Member 'AIPerceptionComponent_GetPerceivedHostileActorsBySense::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIPerceptionComponent \ +static_assert(alignof(UAIPerceptionComponent) == 0x000008, "Wrong alignment on UAIPerceptionComponent"); \ +static_assert(sizeof(UAIPerceptionComponent) == 0x000190, "Wrong size on UAIPerceptionComponent"); \ +static_assert(offsetof(UAIPerceptionComponent, SensesConfig) == 0x0000A0, "Member 'UAIPerceptionComponent::SensesConfig' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, DominantSense) == 0x0000B0, "Member 'UAIPerceptionComponent::DominantSense' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, AIOwner) == 0x0000C8, "Member 'UAIPerceptionComponent::AIOwner' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, OnPerceptionUpdated) == 0x000150, "Member 'UAIPerceptionComponent::OnPerceptionUpdated' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, OnTargetPerceptionForgotten) == 0x000160, "Member 'UAIPerceptionComponent::OnTargetPerceptionForgotten' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, OnTargetPerceptionUpdated) == 0x000170, "Member 'UAIPerceptionComponent::OnTargetPerceptionUpdated' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionComponent, OnTargetPerceptionInfoUpdated) == 0x000180, "Member 'UAIPerceptionComponent::OnTargetPerceptionInfoUpdated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAIPerceptionListenerInterface \ +static_assert(alignof(IAIPerceptionListenerInterface) == 0x000001, "Wrong alignment on IAIPerceptionListenerInterface"); \ +static_assert(sizeof(IAIPerceptionListenerInterface) == 0x000001, "Wrong size on IAIPerceptionListenerInterface"); \ + +#define DUMPER7_ASSERTS_AIPerceptionStimuliSourceComponent_RegisterForSense \ +static_assert(alignof(AIPerceptionStimuliSourceComponent_RegisterForSense) == 0x000008, "Wrong alignment on AIPerceptionStimuliSourceComponent_RegisterForSense"); \ +static_assert(sizeof(AIPerceptionStimuliSourceComponent_RegisterForSense) == 0x000008, "Wrong size on AIPerceptionStimuliSourceComponent_RegisterForSense"); \ +static_assert(offsetof(AIPerceptionStimuliSourceComponent_RegisterForSense, SenseClass) == 0x000000, "Member 'AIPerceptionStimuliSourceComponent_RegisterForSense::SenseClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionStimuliSourceComponent_UnregisterFromSense \ +static_assert(alignof(AIPerceptionStimuliSourceComponent_UnregisterFromSense) == 0x000008, "Wrong alignment on AIPerceptionStimuliSourceComponent_UnregisterFromSense"); \ +static_assert(sizeof(AIPerceptionStimuliSourceComponent_UnregisterFromSense) == 0x000008, "Wrong size on AIPerceptionStimuliSourceComponent_UnregisterFromSense"); \ +static_assert(offsetof(AIPerceptionStimuliSourceComponent_UnregisterFromSense, SenseClass) == 0x000000, "Member 'AIPerceptionStimuliSourceComponent_UnregisterFromSense::SenseClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIPerceptionStimuliSourceComponent \ +static_assert(alignof(UAIPerceptionStimuliSourceComponent) == 0x000008, "Wrong alignment on UAIPerceptionStimuliSourceComponent"); \ +static_assert(sizeof(UAIPerceptionStimuliSourceComponent) == 0x0000B8, "Wrong size on UAIPerceptionStimuliSourceComponent"); \ +static_assert(offsetof(UAIPerceptionStimuliSourceComponent, RegisterAsSourceForSenses) == 0x0000A8, "Member 'UAIPerceptionStimuliSourceComponent::RegisterAsSourceForSenses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionSystem_GetSenseClassForStimulus \ +static_assert(alignof(AIPerceptionSystem_GetSenseClassForStimulus) == 0x000008, "Wrong alignment on AIPerceptionSystem_GetSenseClassForStimulus"); \ +static_assert(sizeof(AIPerceptionSystem_GetSenseClassForStimulus) == 0x000068, "Wrong size on AIPerceptionSystem_GetSenseClassForStimulus"); \ +static_assert(offsetof(AIPerceptionSystem_GetSenseClassForStimulus, WorldContextObject) == 0x000000, "Member 'AIPerceptionSystem_GetSenseClassForStimulus::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_GetSenseClassForStimulus, Stimulus) == 0x000008, "Member 'AIPerceptionSystem_GetSenseClassForStimulus::Stimulus' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_GetSenseClassForStimulus, ReturnValue) == 0x000060, "Member 'AIPerceptionSystem_GetSenseClassForStimulus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionSystem_RegisterPerceptionStimuliSource \ +static_assert(alignof(AIPerceptionSystem_RegisterPerceptionStimuliSource) == 0x000008, "Wrong alignment on AIPerceptionSystem_RegisterPerceptionStimuliSource"); \ +static_assert(sizeof(AIPerceptionSystem_RegisterPerceptionStimuliSource) == 0x000020, "Wrong size on AIPerceptionSystem_RegisterPerceptionStimuliSource"); \ +static_assert(offsetof(AIPerceptionSystem_RegisterPerceptionStimuliSource, WorldContextObject) == 0x000000, "Member 'AIPerceptionSystem_RegisterPerceptionStimuliSource::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_RegisterPerceptionStimuliSource, Sense) == 0x000008, "Member 'AIPerceptionSystem_RegisterPerceptionStimuliSource::Sense' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_RegisterPerceptionStimuliSource, Target) == 0x000010, "Member 'AIPerceptionSystem_RegisterPerceptionStimuliSource::Target' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_RegisterPerceptionStimuliSource, ReturnValue) == 0x000018, "Member 'AIPerceptionSystem_RegisterPerceptionStimuliSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionSystem_ReportPerceptionEvent \ +static_assert(alignof(AIPerceptionSystem_ReportPerceptionEvent) == 0x000008, "Wrong alignment on AIPerceptionSystem_ReportPerceptionEvent"); \ +static_assert(sizeof(AIPerceptionSystem_ReportPerceptionEvent) == 0x000010, "Wrong size on AIPerceptionSystem_ReportPerceptionEvent"); \ +static_assert(offsetof(AIPerceptionSystem_ReportPerceptionEvent, WorldContextObject) == 0x000000, "Member 'AIPerceptionSystem_ReportPerceptionEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_ReportPerceptionEvent, PerceptionEvent) == 0x000008, "Member 'AIPerceptionSystem_ReportPerceptionEvent::PerceptionEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay \ +static_assert(alignof(AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay) == 0x000008, "Wrong alignment on AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay"); \ +static_assert(sizeof(AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay) == 0x000010, "Wrong size on AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay"); \ +static_assert(offsetof(AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay, Actor) == 0x000000, "Member 'AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay::Actor' has a wrong offset!"); \ +static_assert(offsetof(AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay, EndPlayReason) == 0x000008, "Member 'AIPerceptionSystem_OnPerceptionStimuliSourceEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIPerceptionSystem_ReportEvent \ +static_assert(alignof(AIPerceptionSystem_ReportEvent) == 0x000008, "Wrong alignment on AIPerceptionSystem_ReportEvent"); \ +static_assert(sizeof(AIPerceptionSystem_ReportEvent) == 0x000008, "Wrong size on AIPerceptionSystem_ReportEvent"); \ +static_assert(offsetof(AIPerceptionSystem_ReportEvent, PerceptionEvent) == 0x000000, "Member 'AIPerceptionSystem_ReportEvent::PerceptionEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIPerceptionSystem \ +static_assert(alignof(UAIPerceptionSystem) == 0x000008, "Wrong alignment on UAIPerceptionSystem"); \ +static_assert(sizeof(UAIPerceptionSystem) == 0x000138, "Wrong size on UAIPerceptionSystem"); \ +static_assert(offsetof(UAIPerceptionSystem, Senses) == 0x000088, "Member 'UAIPerceptionSystem::Senses' has a wrong offset!"); \ +static_assert(offsetof(UAIPerceptionSystem, PerceptionAgingRate) == 0x000098, "Member 'UAIPerceptionSystem::PerceptionAgingRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense \ +static_assert(alignof(UAISense) == 0x000008, "Wrong alignment on UAISense"); \ +static_assert(sizeof(UAISense) == 0x000078, "Wrong size on UAISense"); \ +static_assert(offsetof(UAISense, NotifyType) == 0x000028, "Member 'UAISense::NotifyType' has a wrong offset!"); \ +static_assert(offsetof(UAISense, PerceptionSystemInstance) == 0x000030, "Member 'UAISense::PerceptionSystemInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISenseConfig_Damage \ +static_assert(alignof(UAISenseConfig_Damage) == 0x000008, "Wrong alignment on UAISenseConfig_Damage"); \ +static_assert(sizeof(UAISenseConfig_Damage) == 0x000050, "Wrong size on UAISenseConfig_Damage"); \ +static_assert(offsetof(UAISenseConfig_Damage, Implementation) == 0x000048, "Member 'UAISenseConfig_Damage::Implementation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_K2_OnNewPawn \ +static_assert(alignof(AISense_Blueprint_K2_OnNewPawn) == 0x000008, "Wrong alignment on AISense_Blueprint_K2_OnNewPawn"); \ +static_assert(sizeof(AISense_Blueprint_K2_OnNewPawn) == 0x000008, "Wrong size on AISense_Blueprint_K2_OnNewPawn"); \ +static_assert(offsetof(AISense_Blueprint_K2_OnNewPawn, NewPawn) == 0x000000, "Member 'AISense_Blueprint_K2_OnNewPawn::NewPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_OnListenerRegistered \ +static_assert(alignof(AISense_Blueprint_OnListenerRegistered) == 0x000008, "Wrong alignment on AISense_Blueprint_OnListenerRegistered"); \ +static_assert(sizeof(AISense_Blueprint_OnListenerRegistered) == 0x000010, "Wrong size on AISense_Blueprint_OnListenerRegistered"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerRegistered, ActorListener) == 0x000000, "Member 'AISense_Blueprint_OnListenerRegistered::ActorListener' has a wrong offset!"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerRegistered, PerceptionComponent) == 0x000008, "Member 'AISense_Blueprint_OnListenerRegistered::PerceptionComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_OnListenerUnregistered \ +static_assert(alignof(AISense_Blueprint_OnListenerUnregistered) == 0x000008, "Wrong alignment on AISense_Blueprint_OnListenerUnregistered"); \ +static_assert(sizeof(AISense_Blueprint_OnListenerUnregistered) == 0x000010, "Wrong size on AISense_Blueprint_OnListenerUnregistered"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerUnregistered, ActorListener) == 0x000000, "Member 'AISense_Blueprint_OnListenerUnregistered::ActorListener' has a wrong offset!"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerUnregistered, PerceptionComponent) == 0x000008, "Member 'AISense_Blueprint_OnListenerUnregistered::PerceptionComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_OnListenerUpdated \ +static_assert(alignof(AISense_Blueprint_OnListenerUpdated) == 0x000008, "Wrong alignment on AISense_Blueprint_OnListenerUpdated"); \ +static_assert(sizeof(AISense_Blueprint_OnListenerUpdated) == 0x000010, "Wrong size on AISense_Blueprint_OnListenerUpdated"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerUpdated, ActorListener) == 0x000000, "Member 'AISense_Blueprint_OnListenerUpdated::ActorListener' has a wrong offset!"); \ +static_assert(offsetof(AISense_Blueprint_OnListenerUpdated, PerceptionComponent) == 0x000008, "Member 'AISense_Blueprint_OnListenerUpdated::PerceptionComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_OnUpdate \ +static_assert(alignof(AISense_Blueprint_OnUpdate) == 0x000008, "Wrong alignment on AISense_Blueprint_OnUpdate"); \ +static_assert(sizeof(AISense_Blueprint_OnUpdate) == 0x000018, "Wrong size on AISense_Blueprint_OnUpdate"); \ +static_assert(offsetof(AISense_Blueprint_OnUpdate, EventsToProcess) == 0x000000, "Member 'AISense_Blueprint_OnUpdate::EventsToProcess' has a wrong offset!"); \ +static_assert(offsetof(AISense_Blueprint_OnUpdate, ReturnValue) == 0x000010, "Member 'AISense_Blueprint_OnUpdate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_GetAllListenerActors \ +static_assert(alignof(AISense_Blueprint_GetAllListenerActors) == 0x000008, "Wrong alignment on AISense_Blueprint_GetAllListenerActors"); \ +static_assert(sizeof(AISense_Blueprint_GetAllListenerActors) == 0x000010, "Wrong size on AISense_Blueprint_GetAllListenerActors"); \ +static_assert(offsetof(AISense_Blueprint_GetAllListenerActors, ListenerActors) == 0x000000, "Member 'AISense_Blueprint_GetAllListenerActors::ListenerActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Blueprint_GetAllListenerComponents \ +static_assert(alignof(AISense_Blueprint_GetAllListenerComponents) == 0x000008, "Wrong alignment on AISense_Blueprint_GetAllListenerComponents"); \ +static_assert(sizeof(AISense_Blueprint_GetAllListenerComponents) == 0x000010, "Wrong size on AISense_Blueprint_GetAllListenerComponents"); \ +static_assert(offsetof(AISense_Blueprint_GetAllListenerComponents, ListenerComponents) == 0x000000, "Member 'AISense_Blueprint_GetAllListenerComponents::ListenerComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Blueprint \ +static_assert(alignof(UAISense_Blueprint) == 0x000008, "Wrong alignment on UAISense_Blueprint"); \ +static_assert(sizeof(UAISense_Blueprint) == 0x0000A0, "Wrong size on UAISense_Blueprint"); \ +static_assert(offsetof(UAISense_Blueprint, ListenerDataType) == 0x000078, "Member 'UAISense_Blueprint::ListenerDataType' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Blueprint, ListenerContainer) == 0x000080, "Member 'UAISense_Blueprint::ListenerContainer' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Blueprint, UnprocessedEvents) == 0x000090, "Member 'UAISense_Blueprint::UnprocessedEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Damage_ReportDamageEvent \ +static_assert(alignof(AISense_Damage_ReportDamageEvent) == 0x000008, "Wrong alignment on AISense_Damage_ReportDamageEvent"); \ +static_assert(sizeof(AISense_Damage_ReportDamageEvent) == 0x000058, "Wrong size on AISense_Damage_ReportDamageEvent"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, WorldContextObject) == 0x000000, "Member 'AISense_Damage_ReportDamageEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, DamagedActor) == 0x000008, "Member 'AISense_Damage_ReportDamageEvent::DamagedActor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, Instigator) == 0x000010, "Member 'AISense_Damage_ReportDamageEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, DamageAmount) == 0x000018, "Member 'AISense_Damage_ReportDamageEvent::DamageAmount' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, EventLocation) == 0x000020, "Member 'AISense_Damage_ReportDamageEvent::EventLocation' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, HitLocation) == 0x000038, "Member 'AISense_Damage_ReportDamageEvent::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(AISense_Damage_ReportDamageEvent, Tag) == 0x000050, "Member 'AISense_Damage_ReportDamageEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Damage \ +static_assert(alignof(UAISense_Damage) == 0x000008, "Wrong alignment on UAISense_Damage"); \ +static_assert(sizeof(UAISense_Damage) == 0x000088, "Wrong size on UAISense_Damage"); \ +static_assert(offsetof(UAISense_Damage, RegisteredEvents) == 0x000078, "Member 'UAISense_Damage::RegisteredEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Hearing_ReportNoiseEvent \ +static_assert(alignof(AISense_Hearing_ReportNoiseEvent) == 0x000008, "Wrong alignment on AISense_Hearing_ReportNoiseEvent"); \ +static_assert(sizeof(AISense_Hearing_ReportNoiseEvent) == 0x000040, "Wrong size on AISense_Hearing_ReportNoiseEvent"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, WorldContextObject) == 0x000000, "Member 'AISense_Hearing_ReportNoiseEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, NoiseLocation) == 0x000008, "Member 'AISense_Hearing_ReportNoiseEvent::NoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, Loudness) == 0x000020, "Member 'AISense_Hearing_ReportNoiseEvent::Loudness' has a wrong offset!"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, Instigator) == 0x000028, "Member 'AISense_Hearing_ReportNoiseEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, MaxRange) == 0x000030, "Member 'AISense_Hearing_ReportNoiseEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(AISense_Hearing_ReportNoiseEvent, Tag) == 0x000034, "Member 'AISense_Hearing_ReportNoiseEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Hearing \ +static_assert(alignof(UAISense_Hearing) == 0x000008, "Wrong alignment on UAISense_Hearing"); \ +static_assert(sizeof(UAISense_Hearing) == 0x0000E0, "Wrong size on UAISense_Hearing"); \ +static_assert(offsetof(UAISense_Hearing, NoiseEvents) == 0x000078, "Member 'UAISense_Hearing::NoiseEvents' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Hearing, SpeedOfSoundSq) == 0x000088, "Member 'UAISense_Hearing::SpeedOfSoundSq' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Prediction_RequestControllerPredictionEvent \ +static_assert(alignof(AISense_Prediction_RequestControllerPredictionEvent) == 0x000008, "Wrong alignment on AISense_Prediction_RequestControllerPredictionEvent"); \ +static_assert(sizeof(AISense_Prediction_RequestControllerPredictionEvent) == 0x000018, "Wrong size on AISense_Prediction_RequestControllerPredictionEvent"); \ +static_assert(offsetof(AISense_Prediction_RequestControllerPredictionEvent, Requestor) == 0x000000, "Member 'AISense_Prediction_RequestControllerPredictionEvent::Requestor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Prediction_RequestControllerPredictionEvent, PredictedActor) == 0x000008, "Member 'AISense_Prediction_RequestControllerPredictionEvent::PredictedActor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Prediction_RequestControllerPredictionEvent, PredictionTime) == 0x000010, "Member 'AISense_Prediction_RequestControllerPredictionEvent::PredictionTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Prediction_RequestPawnPredictionEvent \ +static_assert(alignof(AISense_Prediction_RequestPawnPredictionEvent) == 0x000008, "Wrong alignment on AISense_Prediction_RequestPawnPredictionEvent"); \ +static_assert(sizeof(AISense_Prediction_RequestPawnPredictionEvent) == 0x000018, "Wrong size on AISense_Prediction_RequestPawnPredictionEvent"); \ +static_assert(offsetof(AISense_Prediction_RequestPawnPredictionEvent, Requestor) == 0x000000, "Member 'AISense_Prediction_RequestPawnPredictionEvent::Requestor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Prediction_RequestPawnPredictionEvent, PredictedActor) == 0x000008, "Member 'AISense_Prediction_RequestPawnPredictionEvent::PredictedActor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Prediction_RequestPawnPredictionEvent, PredictionTime) == 0x000010, "Member 'AISense_Prediction_RequestPawnPredictionEvent::PredictionTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Prediction \ +static_assert(alignof(UAISense_Prediction) == 0x000008, "Wrong alignment on UAISense_Prediction"); \ +static_assert(sizeof(UAISense_Prediction) == 0x000088, "Wrong size on UAISense_Prediction"); \ +static_assert(offsetof(UAISense_Prediction, RegisteredEvents) == 0x000078, "Member 'UAISense_Prediction::RegisteredEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Sight \ +static_assert(alignof(UAISense_Sight) == 0x000008, "Wrong alignment on UAISense_Sight"); \ +static_assert(sizeof(UAISense_Sight) == 0x0001A8, "Wrong size on UAISense_Sight"); \ +static_assert(offsetof(UAISense_Sight, MaxTracesPerTick) == 0x000150, "Member 'UAISense_Sight::MaxTracesPerTick' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, MaxAsyncTracesPerTick) == 0x000154, "Member 'UAISense_Sight::MaxAsyncTracesPerTick' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, MinQueriesPerTimeSliceCheck) == 0x000158, "Member 'UAISense_Sight::MinQueriesPerTimeSliceCheck' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, MaxTimeSlicePerTick) == 0x000160, "Member 'UAISense_Sight::MaxTimeSlicePerTick' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, HighImportanceQueryDistanceThreshold) == 0x000168, "Member 'UAISense_Sight::HighImportanceQueryDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, MaxQueryImportance) == 0x000170, "Member 'UAISense_Sight::MaxQueryImportance' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, SightLimitQueryImportance) == 0x000174, "Member 'UAISense_Sight::SightLimitQueryImportance' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, PendingQueriesBudgetReductionRatio) == 0x000178, "Member 'UAISense_Sight::PendingQueriesBudgetReductionRatio' has a wrong offset!"); \ +static_assert(offsetof(UAISense_Sight, bUseAsynchronousTraceForDefaultSightQueries) == 0x00017C, "Member 'UAISense_Sight::bUseAsynchronousTraceForDefaultSightQueries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Team \ +static_assert(alignof(UAISense_Team) == 0x000008, "Wrong alignment on UAISense_Team"); \ +static_assert(sizeof(UAISense_Team) == 0x000088, "Wrong size on UAISense_Team"); \ +static_assert(offsetof(UAISense_Team, RegisteredEvents) == 0x000078, "Member 'UAISense_Team::RegisteredEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AISense_Touch_ReportTouchEvent \ +static_assert(alignof(AISense_Touch_ReportTouchEvent) == 0x000008, "Wrong alignment on AISense_Touch_ReportTouchEvent"); \ +static_assert(sizeof(AISense_Touch_ReportTouchEvent) == 0x000030, "Wrong size on AISense_Touch_ReportTouchEvent"); \ +static_assert(offsetof(AISense_Touch_ReportTouchEvent, WorldContextObject) == 0x000000, "Member 'AISense_Touch_ReportTouchEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AISense_Touch_ReportTouchEvent, TouchReceiver) == 0x000008, "Member 'AISense_Touch_ReportTouchEvent::TouchReceiver' has a wrong offset!"); \ +static_assert(offsetof(AISense_Touch_ReportTouchEvent, OtherActor) == 0x000010, "Member 'AISense_Touch_ReportTouchEvent::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(AISense_Touch_ReportTouchEvent, Location) == 0x000018, "Member 'AISense_Touch_ReportTouchEvent::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAISense_Touch \ +static_assert(alignof(UAISense_Touch) == 0x000008, "Wrong alignment on UAISense_Touch"); \ +static_assert(sizeof(UAISense_Touch) == 0x000088, "Wrong size on UAISense_Touch"); \ +static_assert(offsetof(UAISense_Touch, RegisteredEvents) == 0x000078, "Member 'UAISense_Touch::RegisteredEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAISightTargetInterface \ +static_assert(alignof(IAISightTargetInterface) == 0x000001, "Wrong alignment on IAISightTargetInterface"); \ +static_assert(sizeof(IAISightTargetInterface) == 0x000001, "Wrong size on IAISightTargetInterface"); \ + +#define DUMPER7_ASSERTS_PawnSensingComponent_SetPeripheralVisionAngle \ +static_assert(alignof(PawnSensingComponent_SetPeripheralVisionAngle) == 0x000004, "Wrong alignment on PawnSensingComponent_SetPeripheralVisionAngle"); \ +static_assert(sizeof(PawnSensingComponent_SetPeripheralVisionAngle) == 0x000004, "Wrong size on PawnSensingComponent_SetPeripheralVisionAngle"); \ +static_assert(offsetof(PawnSensingComponent_SetPeripheralVisionAngle, NewPeripheralVisionAngle) == 0x000000, "Member 'PawnSensingComponent_SetPeripheralVisionAngle::NewPeripheralVisionAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnSensingComponent_SetSensingInterval \ +static_assert(alignof(PawnSensingComponent_SetSensingInterval) == 0x000004, "Wrong alignment on PawnSensingComponent_SetSensingInterval"); \ +static_assert(sizeof(PawnSensingComponent_SetSensingInterval) == 0x000004, "Wrong size on PawnSensingComponent_SetSensingInterval"); \ +static_assert(offsetof(PawnSensingComponent_SetSensingInterval, NewSensingInterval) == 0x000000, "Member 'PawnSensingComponent_SetSensingInterval::NewSensingInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnSensingComponent_SetSensingUpdatesEnabled \ +static_assert(alignof(PawnSensingComponent_SetSensingUpdatesEnabled) == 0x000001, "Wrong alignment on PawnSensingComponent_SetSensingUpdatesEnabled"); \ +static_assert(sizeof(PawnSensingComponent_SetSensingUpdatesEnabled) == 0x000001, "Wrong size on PawnSensingComponent_SetSensingUpdatesEnabled"); \ +static_assert(offsetof(PawnSensingComponent_SetSensingUpdatesEnabled, bEnabled) == 0x000000, "Member 'PawnSensingComponent_SetSensingUpdatesEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnSensingComponent_GetPeripheralVisionAngle \ +static_assert(alignof(PawnSensingComponent_GetPeripheralVisionAngle) == 0x000004, "Wrong alignment on PawnSensingComponent_GetPeripheralVisionAngle"); \ +static_assert(sizeof(PawnSensingComponent_GetPeripheralVisionAngle) == 0x000004, "Wrong size on PawnSensingComponent_GetPeripheralVisionAngle"); \ +static_assert(offsetof(PawnSensingComponent_GetPeripheralVisionAngle, ReturnValue) == 0x000000, "Member 'PawnSensingComponent_GetPeripheralVisionAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PawnSensingComponent_GetPeripheralVisionCosine \ +static_assert(alignof(PawnSensingComponent_GetPeripheralVisionCosine) == 0x000004, "Wrong alignment on PawnSensingComponent_GetPeripheralVisionCosine"); \ +static_assert(sizeof(PawnSensingComponent_GetPeripheralVisionCosine) == 0x000004, "Wrong size on PawnSensingComponent_GetPeripheralVisionCosine"); \ +static_assert(offsetof(PawnSensingComponent_GetPeripheralVisionCosine, ReturnValue) == 0x000000, "Member 'PawnSensingComponent_GetPeripheralVisionCosine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPawnSensingComponent \ +static_assert(alignof(UPawnSensingComponent) == 0x000008, "Wrong alignment on UPawnSensingComponent"); \ +static_assert(sizeof(UPawnSensingComponent) == 0x0000E8, "Wrong size on UPawnSensingComponent"); \ +static_assert(offsetof(UPawnSensingComponent, HearingThreshold) == 0x0000A0, "Member 'UPawnSensingComponent::HearingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, LOSHearingThreshold) == 0x0000A4, "Member 'UPawnSensingComponent::LOSHearingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, SightRadius) == 0x0000A8, "Member 'UPawnSensingComponent::SightRadius' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, SensingInterval) == 0x0000AC, "Member 'UPawnSensingComponent::SensingInterval' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, HearingMaxSoundAge) == 0x0000B0, "Member 'UPawnSensingComponent::HearingMaxSoundAge' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, OnSeePawn) == 0x0000C0, "Member 'UPawnSensingComponent::OnSeePawn' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, OnHearNoise) == 0x0000D0, "Member 'UPawnSensingComponent::OnHearNoise' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, PeripheralVisionAngle) == 0x0000E0, "Member 'UPawnSensingComponent::PeripheralVisionAngle' has a wrong offset!"); \ +static_assert(offsetof(UPawnSensingComponent, PeripheralVisionCosine) == 0x0000E4, "Member 'UPawnSensingComponent::PeripheralVisionCosine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAITask \ +static_assert(alignof(UAITask) == 0x000008, "Wrong alignment on UAITask"); \ +static_assert(sizeof(UAITask) == 0x000070, "Wrong size on UAITask"); \ +static_assert(offsetof(UAITask, OwnerController) == 0x000068, "Member 'UAITask::OwnerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAITask_LockLogic \ +static_assert(alignof(UAITask_LockLogic) == 0x000008, "Wrong alignment on UAITask_LockLogic"); \ +static_assert(sizeof(UAITask_LockLogic) == 0x000070, "Wrong size on UAITask_LockLogic"); \ + +#define DUMPER7_ASSERTS_AITask_MoveTo_AIMoveTo \ +static_assert(alignof(AITask_MoveTo_AIMoveTo) == 0x000008, "Wrong alignment on AITask_MoveTo_AIMoveTo"); \ +static_assert(sizeof(AITask_MoveTo_AIMoveTo) == 0x000040, "Wrong size on AITask_MoveTo_AIMoveTo"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, Controller) == 0x000000, "Member 'AITask_MoveTo_AIMoveTo::Controller' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, GoalLocation) == 0x000008, "Member 'AITask_MoveTo_AIMoveTo::GoalLocation' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, GoalActor) == 0x000020, "Member 'AITask_MoveTo_AIMoveTo::GoalActor' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, AcceptanceRadius) == 0x000028, "Member 'AITask_MoveTo_AIMoveTo::AcceptanceRadius' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, StopOnOverlap) == 0x00002C, "Member 'AITask_MoveTo_AIMoveTo::StopOnOverlap' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, AcceptPartialPath) == 0x00002D, "Member 'AITask_MoveTo_AIMoveTo::AcceptPartialPath' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, bUsePathfinding) == 0x00002E, "Member 'AITask_MoveTo_AIMoveTo::bUsePathfinding' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, bLockAILogic) == 0x00002F, "Member 'AITask_MoveTo_AIMoveTo::bLockAILogic' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, bUseContinuousGoalTracking) == 0x000030, "Member 'AITask_MoveTo_AIMoveTo::bUseContinuousGoalTracking' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, ProjectGoalOnNavigation) == 0x000031, "Member 'AITask_MoveTo_AIMoveTo::ProjectGoalOnNavigation' has a wrong offset!"); \ +static_assert(offsetof(AITask_MoveTo_AIMoveTo, ReturnValue) == 0x000038, "Member 'AITask_MoveTo_AIMoveTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAITask_MoveTo \ +static_assert(alignof(UAITask_MoveTo) == 0x000008, "Wrong alignment on UAITask_MoveTo"); \ +static_assert(sizeof(UAITask_MoveTo) == 0x000120, "Wrong size on UAITask_MoveTo"); \ +static_assert(offsetof(UAITask_MoveTo, OnRequestFailed) == 0x000070, "Member 'UAITask_MoveTo::OnRequestFailed' has a wrong offset!"); \ +static_assert(offsetof(UAITask_MoveTo, OnMoveFinished) == 0x000080, "Member 'UAITask_MoveTo::OnMoveFinished' has a wrong offset!"); \ +static_assert(offsetof(UAITask_MoveTo, MoveRequest) == 0x000090, "Member 'UAITask_MoveTo::MoveRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AITask_RunEQS_RunEQS \ +static_assert(alignof(AITask_RunEQS_RunEQS) == 0x000008, "Wrong alignment on AITask_RunEQS_RunEQS"); \ +static_assert(sizeof(AITask_RunEQS_RunEQS) == 0x000018, "Wrong size on AITask_RunEQS_RunEQS"); \ +static_assert(offsetof(AITask_RunEQS_RunEQS, Controller) == 0x000000, "Member 'AITask_RunEQS_RunEQS::Controller' has a wrong offset!"); \ +static_assert(offsetof(AITask_RunEQS_RunEQS, QueryTemplate) == 0x000008, "Member 'AITask_RunEQS_RunEQS::QueryTemplate' has a wrong offset!"); \ +static_assert(offsetof(AITask_RunEQS_RunEQS, ReturnValue) == 0x000010, "Member 'AITask_RunEQS_RunEQS::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAITask_RunEQS \ +static_assert(alignof(UAITask_RunEQS) == 0x000008, "Wrong alignment on UAITask_RunEQS"); \ +static_assert(sizeof(UAITask_RunEQS) == 0x0000E8, "Wrong size on UAITask_RunEQS"); \ + +#define DUMPER7_ASSERTS_UVisualLoggerExtension \ +static_assert(alignof(UVisualLoggerExtension) == 0x000008, "Wrong alignment on UVisualLoggerExtension"); \ +static_assert(sizeof(UVisualLoggerExtension) == 0x000028, "Wrong size on UVisualLoggerExtension"); \ + +#define DUMPER7_ASSERTS_FTransformFragment \ +static_assert(alignof(FTransformFragment) == 0x000010, "Wrong alignment on FTransformFragment"); \ +static_assert(sizeof(FTransformFragment) == 0x000060, "Wrong size on FTransformFragment"); \ +static_assert(offsetof(FTransformFragment, Transform) == 0x000000, "Member 'FTransformFragment::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAgentRadiusFragment \ +static_assert(alignof(FAgentRadiusFragment) == 0x000004, "Wrong alignment on FAgentRadiusFragment"); \ +static_assert(sizeof(FAgentRadiusFragment) == 0x000004, "Wrong size on FAgentRadiusFragment"); \ +static_assert(offsetof(FAgentRadiusFragment, Radius) == 0x000000, "Member 'FAgentRadiusFragment::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObjectWrapperFragment \ +static_assert(alignof(FObjectWrapperFragment) == 0x000001, "Wrong alignment on FObjectWrapperFragment"); \ +static_assert(sizeof(FObjectWrapperFragment) == 0x000001, "Wrong size on FObjectWrapperFragment"); \ + +#define DUMPER7_ASSERTS_FMassNetworkID \ +static_assert(alignof(FMassNetworkID) == 0x000004, "Wrong alignment on FMassNetworkID"); \ +static_assert(sizeof(FMassNetworkID) == 0x000004, "Wrong size on FMassNetworkID"); \ + +#define DUMPER7_ASSERTS_FMassInt16Real \ +static_assert(alignof(FMassInt16Real) == 0x000002, "Wrong alignment on FMassInt16Real"); \ +static_assert(sizeof(FMassInt16Real) == 0x000002, "Wrong size on FMassInt16Real"); \ +static_assert(offsetof(FMassInt16Real, Value) == 0x000000, "Member 'FMassInt16Real::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassInt16Real10 \ +static_assert(alignof(FMassInt16Real10) == 0x000002, "Wrong alignment on FMassInt16Real10"); \ +static_assert(sizeof(FMassInt16Real10) == 0x000002, "Wrong size on FMassInt16Real10"); \ +static_assert(offsetof(FMassInt16Real10, Value) == 0x000000, "Member 'FMassInt16Real10::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSnorm8Vector \ +static_assert(alignof(FMassSnorm8Vector) == 0x000001, "Wrong alignment on FMassSnorm8Vector"); \ +static_assert(sizeof(FMassSnorm8Vector) == 0x000003, "Wrong size on FMassSnorm8Vector"); \ +static_assert(offsetof(FMassSnorm8Vector, X) == 0x000000, "Member 'FMassSnorm8Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FMassSnorm8Vector, Y) == 0x000001, "Member 'FMassSnorm8Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FMassSnorm8Vector, Z) == 0x000002, "Member 'FMassSnorm8Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSnorm8Vector2D \ +static_assert(alignof(FMassSnorm8Vector2D) == 0x000001, "Wrong alignment on FMassSnorm8Vector2D"); \ +static_assert(sizeof(FMassSnorm8Vector2D) == 0x000002, "Wrong size on FMassSnorm8Vector2D"); \ +static_assert(offsetof(FMassSnorm8Vector2D, X) == 0x000000, "Member 'FMassSnorm8Vector2D::X' has a wrong offset!"); \ +static_assert(offsetof(FMassSnorm8Vector2D, Y) == 0x000001, "Member 'FMassSnorm8Vector2D::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassUnorm8Real \ +static_assert(alignof(FMassUnorm8Real) == 0x000001, "Wrong alignment on FMassUnorm8Real"); \ +static_assert(sizeof(FMassUnorm8Real) == 0x000001, "Wrong size on FMassUnorm8Real"); \ +static_assert(offsetof(FMassUnorm8Real, Value) == 0x000000, "Member 'FMassUnorm8Real::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassInt16Vector \ +static_assert(alignof(FMassInt16Vector) == 0x000002, "Wrong alignment on FMassInt16Vector"); \ +static_assert(sizeof(FMassInt16Vector) == 0x000006, "Wrong size on FMassInt16Vector"); \ +static_assert(offsetof(FMassInt16Vector, X) == 0x000000, "Member 'FMassInt16Vector::X' has a wrong offset!"); \ +static_assert(offsetof(FMassInt16Vector, Y) == 0x000002, "Member 'FMassInt16Vector::Y' has a wrong offset!"); \ +static_assert(offsetof(FMassInt16Vector, Z) == 0x000004, "Member 'FMassInt16Vector::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassInt16Vector2D \ +static_assert(alignof(FMassInt16Vector2D) == 0x000002, "Wrong alignment on FMassInt16Vector2D"); \ +static_assert(sizeof(FMassInt16Vector2D) == 0x000004, "Wrong size on FMassInt16Vector2D"); \ +static_assert(offsetof(FMassInt16Vector2D, X) == 0x000000, "Member 'FMassInt16Vector2D::X' has a wrong offset!"); \ +static_assert(offsetof(FMassInt16Vector2D, Y) == 0x000002, "Member 'FMassInt16Vector2D::Y' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassGameplaySettings \ +static_assert(alignof(UMassGameplaySettings) == 0x000008, "Wrong alignment on UMassGameplaySettings"); \ +static_assert(sizeof(UMassGameplaySettings) == 0x000030, "Wrong size on UMassGameplaySettings"); \ +static_assert(offsetof(UMassGameplaySettings, bLogSpawnLocations) == 0x000028, "Member 'UMassGameplaySettings::bLogSpawnLocations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSignalProcessorBase \ +static_assert(alignof(UMassSignalProcessorBase) == 0x000008, "Wrong alignment on UMassSignalProcessorBase"); \ +static_assert(sizeof(UMassSignalProcessorBase) == 0x000420, "Wrong size on UMassSignalProcessorBase"); \ + +#define DUMPER7_ASSERTS_UMassSignalSubsystem \ +static_assert(alignof(UMassSignalSubsystem) == 0x000008, "Wrong alignment on UMassSignalSubsystem"); \ +static_assert(sizeof(UMassSignalSubsystem) == 0x0000A8, "Wrong size on UMassSignalSubsystem"); \ +static_assert(offsetof(UMassSignalSubsystem, CachedWorld) == 0x0000A0, "Member 'UMassSignalSubsystem::CachedWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Function_Weapons_C_Calculate_Whiz_By \ +static_assert(alignof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By) == 0x000008, "Wrong alignment on BP_Audio_Function_Weapons_C_Calculate_Whiz_By"); \ +static_assert(sizeof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By) == 0x000260, "Wrong size on BP_Audio_Function_Weapons_C_Calculate_Whiz_By"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, ListenerOrigin) == 0x000000, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::ListenerOrigin' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FireOrigin) == 0x000018, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FireOrigin' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, MinStereoSpread) == 0x000030, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::MinStereoSpread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, ImpactPosition) == 0x000038, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::ImpactPosition' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, __WorldContext) == 0x000050, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, Location) == 0x000058, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, StereoSpread) == 0x000070, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::StereoSpread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FromTheRight) == 0x000078, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FromTheRight' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FiringDistance) == 0x000080, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FiringDistance' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, BulletAngle) == 0x000088, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::BulletAngle' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FiringRightVector) == 0x0000A0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FiringRightVector' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FiringVector) == 0x0000B8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FiringVector' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, bRightToLeft) == 0x0000D0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::bRightToLeft' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, ClosestPoint) == 0x0000D8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::ClosestPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, FireDistance) == 0x0000F0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::FireDistance' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, Spread) == 0x0000F4, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, DistanceToPerpendicular) == 0x0000F8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::DistanceToPerpendicular' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, Perpendicular) == 0x000100, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::Perpendicular' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000118, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000130, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000148, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_GetRightVector_ReturnValue) == 0x000160, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000178, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Normal_ReturnValue) == 0x000190, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0001A8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Subtract_VectorVector_ReturnValue_2) == 0x0001B0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Subtract_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_VSize_ReturnValue) == 0x0001C8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Dot_VectorVector_ReturnValue) == 0x0001D0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0001D8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Subtract_VectorVector_ReturnValue_3) == 0x0001E0, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Subtract_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_VSize_ReturnValue_1) == 0x0001F8, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Normal_ReturnValue_1) == 0x000200, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_FindClosestPointOnSegment_ReturnValue) == 0x000218, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_FindClosestPointOnSegment_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, K2Node_FunctionResult_StereoSpread_ImplicitCast) == 0x000230, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::K2Node_FunctionResult_StereoSpread_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, K2Node_FunctionResult_FiringDistance_ImplicitCast) == 0x000238, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::K2Node_FunctionResult_FiringDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000240, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000248, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, K2Node_VariableSet_Spread_ImplicitCast) == 0x000250, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::K2Node_VariableSet_Spread_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, K2Node_VariableSet_FireDistance_ImplicitCast) == 0x000254, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::K2Node_VariableSet_FireDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Calculate_Whiz_By, K2Node_VariableSet_DistanceToPerpendicular_ImplicitCast) == 0x000258, "Member 'BP_Audio_Function_Weapons_C_Calculate_Whiz_By::K2Node_VariableSet_DistanceToPerpendicular_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Function_Weapons_C_Explosion \ +static_assert(alignof(BP_Audio_Function_Weapons_C_Explosion) == 0x000008, "Wrong alignment on BP_Audio_Function_Weapons_C_Explosion"); \ +static_assert(sizeof(BP_Audio_Function_Weapons_C_Explosion) == 0x000078, "Wrong size on BP_Audio_Function_Weapons_C_Explosion"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, Hera_Audio_Comp) == 0x000000, "Member 'BP_Audio_Function_Weapons_C_Explosion::Hera_Audio_Comp' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, Audio_Event) == 0x000008, "Member 'BP_Audio_Function_Weapons_C_Explosion::Audio_Event' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, ActorLocation) == 0x000010, "Member 'BP_Audio_Function_Weapons_C_Explosion::ActorLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, Physical_Mat) == 0x000028, "Member 'BP_Audio_Function_Weapons_C_Explosion::Physical_Mat' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, __WorldContext) == 0x000030, "Member 'BP_Audio_Function_Weapons_C_Explosion::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, PlayerInside) == 0x000038, "Member 'BP_Audio_Function_Weapons_C_Explosion::PlayerInside' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, Temp_delegate_Variable) == 0x000040, "Member 'BP_Audio_Function_Weapons_C_Explosion::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, CallFunc_GetExplosionDebris_DebrisType) == 0x000050, "Member 'BP_Audio_Function_Weapons_C_Explosion::CallFunc_GetExplosionDebris_DebrisType' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, CallFunc_GetExplosionDebris_DebrisType_1) == 0x000058, "Member 'BP_Audio_Function_Weapons_C_Explosion::CallFunc_GetExplosionDebris_DebrisType_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, Temp_delegate_Variable_1) == 0x000060, "Member 'BP_Audio_Function_Weapons_C_Explosion::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_Explosion, CallFunc_GetProperty_ReturnValue) == 0x000070, "Member 'BP_Audio_Function_Weapons_C_Explosion::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Function_Weapons_C_GetExplosionDebris \ +static_assert(alignof(BP_Audio_Function_Weapons_C_GetExplosionDebris) == 0x000008, "Wrong alignment on BP_Audio_Function_Weapons_C_GetExplosionDebris"); \ +static_assert(sizeof(BP_Audio_Function_Weapons_C_GetExplosionDebris) == 0x000030, "Wrong size on BP_Audio_Function_Weapons_C_GetExplosionDebris"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, Physical_Mat) == 0x000000, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::Physical_Mat' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, __WorldContext) == 0x000008, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, DebrisType) == 0x000010, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::DebrisType' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x000019, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x000020, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_GetExplosionDebris, K2Node_SwitchEnum_CmpSuccess) == 0x000028, "Member 'BP_Audio_Function_Weapons_C_GetExplosionDebris::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Function_Weapons_C_WhizBy \ +static_assert(alignof(BP_Audio_Function_Weapons_C_WhizBy) == 0x000008, "Wrong alignment on BP_Audio_Function_Weapons_C_WhizBy"); \ +static_assert(sizeof(BP_Audio_Function_Weapons_C_WhizBy) == 0x000390, "Wrong size on BP_Audio_Function_Weapons_C_WhizBy"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Actor) == 0x000000, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Parameters) == 0x000008, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Parameters' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, __WorldContext) == 0x0000E0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Shot_Origin) == 0x0000E8, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Shot_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, ImpactLocation) == 0x000100, "Member 'BP_Audio_Function_Weapons_C_WhizBy::ImpactLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, ClosestLocation) == 0x000118, "Member 'BP_Audio_Function_Weapons_C_WhizBy::ClosestLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Bullet_Angle) == 0x000130, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Bullet_Angle' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_GetPlayerPawn_ReturnValue) == 0x000148, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000150, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000154, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000158, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000170, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000178, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000180, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x0001A0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Location) == 0x0001C0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Normal) == 0x0001D8, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0001F0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0001F8, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x000200, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x000208, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x000210, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x000214, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x000218, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x000220, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000228, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_IsValid_ReturnValue) == 0x000230, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_GetCameraLocation_ReturnValue) == 0x000238, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude_1) == 0x000250, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_RawMagnitude_1) == 0x000254, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_RawMagnitude_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_EffectContext_1) == 0x000258, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_EffectContext_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_MatchedTagName_1) == 0x000270, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_MatchedTagName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_OriginalTag_1) == 0x000278, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_OriginalTag_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags_1) == 0x000280, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags_1) == 0x0002A0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Location_1) == 0x0002C0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Normal_1) == 0x0002D8, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_Instigator_1) == 0x0002F0, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_Instigator_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_EffectCauser_1) == 0x0002F8, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_EffectCauser_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_SourceObject_1) == 0x000300, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_SourceObject_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_PhysicalMaterial_1) == 0x000308, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_PhysicalMaterial_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel_1) == 0x000310, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_AbilityLevel_1) == 0x000314, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_AbilityLevel_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_TargetAttachComponent_1) == 0x000318, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_TargetAttachComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy_1) == 0x000320, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_IsValid_ReturnValue_1) == 0x000321, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x000322, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000328, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_Calculate_Whiz_By_Location) == 0x000340, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_Calculate_Whiz_By_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_Calculate_Whiz_By_StereoSpread) == 0x000358, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_Calculate_Whiz_By_StereoSpread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_Calculate_Whiz_By_FromTheRight) == 0x000360, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_Calculate_Whiz_By_FromTheRight' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_Calculate_Whiz_By_FiringDistance) == 0x000368, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_Calculate_Whiz_By_FiringDistance' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_Calculate_Whiz_By_BulletAngle) == 0x000370, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_Calculate_Whiz_By_BulletAngle' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Temp_byte_Variable) == 0x000388, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, Temp_bool_Variable) == 0x000389, "Member 'BP_Audio_Function_Weapons_C_WhizBy::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_IsValid_ReturnValue_2) == 0x00038A, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BooleanAND_ReturnValue) == 0x00038B, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, K2Node_Select_Default) == 0x00038C, "Member 'BP_Audio_Function_Weapons_C_WhizBy::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x00038D, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Weapons_C_WhizBy, CallFunc_BooleanAND_ReturnValue_1) == 0x00038E, "Member 'BP_Audio_Function_Weapons_C_WhizBy::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_Audio_Function_Weapons_C \ +static_assert(alignof(UBP_Audio_Function_Weapons_C) == 0x000008, "Wrong alignment on UBP_Audio_Function_Weapons_C"); \ +static_assert(sizeof(UBP_Audio_Function_Weapons_C) == 0x000028, "Wrong size on UBP_Audio_Function_Weapons_C"); \ + +#define DUMPER7_ASSERTS_UMassSimulationSettings \ +static_assert(alignof(UMassSimulationSettings) == 0x000008, "Wrong alignment on UMassSimulationSettings"); \ +static_assert(sizeof(UMassSimulationSettings) == 0x000048, "Wrong size on UMassSimulationSettings"); \ +static_assert(offsetof(UMassSimulationSettings, DesiredActorSpawningTimeSlicePerTick) == 0x000028, "Member 'UMassSimulationSettings::DesiredActorSpawningTimeSlicePerTick' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationSettings, DesiredActorDestructionTimeSlicePerTick) == 0x000030, "Member 'UMassSimulationSettings::DesiredActorDestructionTimeSlicePerTick' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationSettings, DesiredEntityCompactionTimeSlicePerTick) == 0x000038, "Member 'UMassSimulationSettings::DesiredEntityCompactionTimeSlicePerTick' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationSettings, DesiredActorFailedSpawningRetryTimeInterval) == 0x000040, "Member 'UMassSimulationSettings::DesiredActorFailedSpawningRetryTimeInterval' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationSettings, DesiredActorFailedSpawningRetryMoveDistance) == 0x000044, "Member 'UMassSimulationSettings::DesiredActorFailedSpawningRetryMoveDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSimulationSubsystem \ +static_assert(alignof(UMassSimulationSubsystem) == 0x000008, "Wrong alignment on UMassSimulationSubsystem"); \ +static_assert(sizeof(UMassSimulationSubsystem) == 0x0004A8, "Wrong size on UMassSimulationSubsystem"); \ +static_assert(offsetof(UMassSimulationSubsystem, RuntimePipeline) == 0x000490, "Member 'UMassSimulationSubsystem::RuntimePipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBuilderRegisteredComponent \ +static_assert(alignof(FZoneGraphBuilderRegisteredComponent) == 0x000008, "Wrong alignment on FZoneGraphBuilderRegisteredComponent"); \ +static_assert(sizeof(FZoneGraphBuilderRegisteredComponent) == 0x000018, "Wrong size on FZoneGraphBuilderRegisteredComponent"); \ +static_assert(offsetof(FZoneGraphBuilderRegisteredComponent, Component) == 0x000000, "Member 'FZoneGraphBuilderRegisteredComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuilderRegisteredComponent, ShapeHash) == 0x000008, "Member 'FZoneGraphBuilderRegisteredComponent::ShapeHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphDataHandle \ +static_assert(alignof(FZoneGraphDataHandle) == 0x000002, "Wrong alignment on FZoneGraphDataHandle"); \ +static_assert(sizeof(FZoneGraphDataHandle) == 0x000004, "Wrong size on FZoneGraphDataHandle"); \ +static_assert(offsetof(FZoneGraphDataHandle, Index) == 0x000000, "Member 'FZoneGraphDataHandle::Index' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphDataHandle, Generation) == 0x000002, "Member 'FZoneGraphDataHandle::Generation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphLaneHandle \ +static_assert(alignof(FZoneGraphLaneHandle) == 0x000004, "Wrong alignment on FZoneGraphLaneHandle"); \ +static_assert(sizeof(FZoneGraphLaneHandle) == 0x000008, "Wrong size on FZoneGraphLaneHandle"); \ +static_assert(offsetof(FZoneGraphLaneHandle, Index) == 0x000000, "Member 'FZoneGraphLaneHandle::Index' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneHandle, DataHandle) == 0x000004, "Member 'FZoneGraphLaneHandle::DataHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneShapeComponentBuildData \ +static_assert(alignof(FZoneShapeComponentBuildData) == 0x000008, "Wrong alignment on FZoneShapeComponentBuildData"); \ +static_assert(sizeof(FZoneShapeComponentBuildData) == 0x000018, "Wrong size on FZoneShapeComponentBuildData"); \ +static_assert(offsetof(FZoneShapeComponentBuildData, ZoneIndex) == 0x000000, "Member 'FZoneShapeComponentBuildData::ZoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeComponentBuildData, Lanes) == 0x000008, "Member 'FZoneShapeComponentBuildData::Lanes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBuildData \ +static_assert(alignof(FZoneGraphBuildData) == 0x000008, "Wrong alignment on FZoneGraphBuildData"); \ +static_assert(sizeof(FZoneGraphBuildData) == 0x000050, "Wrong size on FZoneGraphBuildData"); \ +static_assert(offsetof(FZoneGraphBuildData, ZoneShapeComponentBuildData) == 0x000000, "Member 'FZoneGraphBuildData::ZoneShapeComponentBuildData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBuilder \ +static_assert(alignof(FZoneGraphBuilder) == 0x000008, "Wrong alignment on FZoneGraphBuilder"); \ +static_assert(sizeof(FZoneGraphBuilder) == 0x000198, "Wrong size on FZoneGraphBuilder"); \ +static_assert(offsetof(FZoneGraphBuilder, ShapeComponents) == 0x000000, "Member 'FZoneGraphBuilder::ShapeComponents' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuilder, ShapeComponentsFreeList) == 0x000010, "Member 'FZoneGraphBuilder::ShapeComponentsFreeList' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuilder, ShapeComponentToIndex) == 0x000020, "Member 'FZoneGraphBuilder::ShapeComponentToIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuilder, BuildData) == 0x000070, "Member 'FZoneGraphBuilder::BuildData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBVNode \ +static_assert(alignof(FZoneGraphBVNode) == 0x000004, "Wrong alignment on FZoneGraphBVNode"); \ +static_assert(sizeof(FZoneGraphBVNode) == 0x000010, "Wrong size on FZoneGraphBVNode"); \ +static_assert(offsetof(FZoneGraphBVNode, MinX) == 0x000000, "Member 'FZoneGraphBVNode::MinX' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, MinY) == 0x000002, "Member 'FZoneGraphBVNode::MinY' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, MinZ) == 0x000004, "Member 'FZoneGraphBVNode::MinZ' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, MaxX) == 0x000006, "Member 'FZoneGraphBVNode::MaxX' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, MaxY) == 0x000008, "Member 'FZoneGraphBVNode::MaxY' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, MaxZ) == 0x00000A, "Member 'FZoneGraphBVNode::MaxZ' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVNode, Index) == 0x00000C, "Member 'FZoneGraphBVNode::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBVTree \ +static_assert(alignof(FZoneGraphBVTree) == 0x000008, "Wrong alignment on FZoneGraphBVTree"); \ +static_assert(sizeof(FZoneGraphBVTree) == 0x000030, "Wrong size on FZoneGraphBVTree"); \ +static_assert(offsetof(FZoneGraphBVTree, Origin) == 0x000000, "Member 'FZoneGraphBVTree::Origin' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVTree, QuantizationScale) == 0x000018, "Member 'FZoneGraphBVTree::QuantizationScale' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBVTree, Nodes) == 0x000020, "Member 'FZoneGraphBVTree::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRegisteredZoneGraphData \ +static_assert(alignof(FRegisteredZoneGraphData) == 0x000008, "Wrong alignment on FRegisteredZoneGraphData"); \ +static_assert(sizeof(FRegisteredZoneGraphData) == 0x000010, "Wrong size on FRegisteredZoneGraphData"); \ +static_assert(offsetof(FRegisteredZoneGraphData, ZoneGraphData) == 0x000000, "Member 'FRegisteredZoneGraphData::ZoneGraphData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneHandle \ +static_assert(alignof(FZoneHandle) == 0x000004, "Wrong alignment on FZoneHandle"); \ +static_assert(sizeof(FZoneHandle) == 0x000004, "Wrong size on FZoneHandle"); \ +static_assert(offsetof(FZoneHandle, Index) == 0x000000, "Member 'FZoneHandle::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTag \ +static_assert(alignof(FZoneGraphTag) == 0x000001, "Wrong alignment on FZoneGraphTag"); \ +static_assert(sizeof(FZoneGraphTag) == 0x000001, "Wrong size on FZoneGraphTag"); \ +static_assert(offsetof(FZoneGraphTag, Bit) == 0x000000, "Member 'FZoneGraphTag::Bit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagMask \ +static_assert(alignof(FZoneGraphTagMask) == 0x000004, "Wrong alignment on FZoneGraphTagMask"); \ +static_assert(sizeof(FZoneGraphTagMask) == 0x000004, "Wrong size on FZoneGraphTagMask"); \ +static_assert(offsetof(FZoneGraphTagMask, Mask) == 0x000000, "Member 'FZoneGraphTagMask::Mask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagFilter \ +static_assert(alignof(FZoneGraphTagFilter) == 0x000004, "Wrong alignment on FZoneGraphTagFilter"); \ +static_assert(sizeof(FZoneGraphTagFilter) == 0x00000C, "Wrong size on FZoneGraphTagFilter"); \ +static_assert(offsetof(FZoneGraphTagFilter, AnyTags) == 0x000000, "Member 'FZoneGraphTagFilter::AnyTags' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagFilter, AllTags) == 0x000004, "Member 'FZoneGraphTagFilter::AllTags' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagFilter, NotTags) == 0x000008, "Member 'FZoneGraphTagFilter::NotTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagInfo \ +static_assert(alignof(FZoneGraphTagInfo) == 0x000004, "Wrong alignment on FZoneGraphTagInfo"); \ +static_assert(sizeof(FZoneGraphTagInfo) == 0x000010, "Wrong size on FZoneGraphTagInfo"); \ +static_assert(offsetof(FZoneGraphTagInfo, Name) == 0x000000, "Member 'FZoneGraphTagInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagInfo, Color) == 0x000008, "Member 'FZoneGraphTagInfo::Color' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagInfo, Tag) == 0x00000C, "Member 'FZoneGraphTagInfo::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneLaneDesc \ +static_assert(alignof(FZoneLaneDesc) == 0x000004, "Wrong alignment on FZoneLaneDesc"); \ +static_assert(sizeof(FZoneLaneDesc) == 0x00000C, "Wrong size on FZoneLaneDesc"); \ +static_assert(offsetof(FZoneLaneDesc, Width) == 0x000000, "Member 'FZoneLaneDesc::Width' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneDesc, Direction) == 0x000004, "Member 'FZoneLaneDesc::Direction' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneDesc, Tags) == 0x000008, "Member 'FZoneLaneDesc::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneLaneProfile \ +static_assert(alignof(FZoneLaneProfile) == 0x000008, "Wrong alignment on FZoneLaneProfile"); \ +static_assert(sizeof(FZoneLaneProfile) == 0x000028, "Wrong size on FZoneLaneProfile"); \ +static_assert(offsetof(FZoneLaneProfile, Name) == 0x000000, "Member 'FZoneLaneProfile::Name' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneProfile, ID) == 0x000008, "Member 'FZoneLaneProfile::ID' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneProfile, Lanes) == 0x000018, "Member 'FZoneLaneProfile::Lanes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneLaneProfileRef \ +static_assert(alignof(FZoneLaneProfileRef) == 0x000004, "Wrong alignment on FZoneLaneProfileRef"); \ +static_assert(sizeof(FZoneLaneProfileRef) == 0x000018, "Wrong size on FZoneLaneProfileRef"); \ +static_assert(offsetof(FZoneLaneProfileRef, Name) == 0x000000, "Member 'FZoneLaneProfileRef::Name' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneProfileRef, ID) == 0x000008, "Member 'FZoneLaneProfileRef::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneLaneLinkData \ +static_assert(alignof(FZoneLaneLinkData) == 0x000004, "Wrong alignment on FZoneLaneLinkData"); \ +static_assert(sizeof(FZoneLaneLinkData) == 0x000008, "Wrong size on FZoneLaneLinkData"); \ +static_assert(offsetof(FZoneLaneLinkData, DestLaneIndex) == 0x000000, "Member 'FZoneLaneLinkData::DestLaneIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneLinkData, Type) == 0x000004, "Member 'FZoneLaneLinkData::Type' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneLinkData, Flags) == 0x000005, "Member 'FZoneLaneLinkData::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneLaneData \ +static_assert(alignof(FZoneLaneData) == 0x000004, "Wrong alignment on FZoneLaneData"); \ +static_assert(sizeof(FZoneLaneData) == 0x000020, "Wrong size on FZoneLaneData"); \ +static_assert(offsetof(FZoneLaneData, Width) == 0x000000, "Member 'FZoneLaneData::Width' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, Tags) == 0x000004, "Member 'FZoneLaneData::Tags' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, PointsBegin) == 0x000008, "Member 'FZoneLaneData::PointsBegin' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, PointsEnd) == 0x00000C, "Member 'FZoneLaneData::PointsEnd' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, LinksBegin) == 0x000010, "Member 'FZoneLaneData::LinksBegin' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, LinksEnd) == 0x000014, "Member 'FZoneLaneData::LinksEnd' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, ZoneIndex) == 0x000018, "Member 'FZoneLaneData::ZoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, StartEntryId) == 0x00001C, "Member 'FZoneLaneData::StartEntryId' has a wrong offset!"); \ +static_assert(offsetof(FZoneLaneData, EndEntryId) == 0x00001E, "Member 'FZoneLaneData::EndEntryId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneData \ +static_assert(alignof(FZoneData) == 0x000008, "Wrong alignment on FZoneData"); \ +static_assert(sizeof(FZoneData) == 0x000050, "Wrong size on FZoneData"); \ +static_assert(offsetof(FZoneData, BoundaryPointsBegin) == 0x000000, "Member 'FZoneData::BoundaryPointsBegin' has a wrong offset!"); \ +static_assert(offsetof(FZoneData, BoundaryPointsEnd) == 0x000004, "Member 'FZoneData::BoundaryPointsEnd' has a wrong offset!"); \ +static_assert(offsetof(FZoneData, LanesBegin) == 0x000008, "Member 'FZoneData::LanesBegin' has a wrong offset!"); \ +static_assert(offsetof(FZoneData, LanesEnd) == 0x00000C, "Member 'FZoneData::LanesEnd' has a wrong offset!"); \ +static_assert(offsetof(FZoneData, Bounds) == 0x000010, "Member 'FZoneData::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FZoneData, Tags) == 0x000048, "Member 'FZoneData::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphLaneLocation \ +static_assert(alignof(FZoneGraphLaneLocation) == 0x000008, "Wrong alignment on FZoneGraphLaneLocation"); \ +static_assert(sizeof(FZoneGraphLaneLocation) == 0x000070, "Wrong size on FZoneGraphLaneLocation"); \ +static_assert(offsetof(FZoneGraphLaneLocation, Position) == 0x000000, "Member 'FZoneGraphLaneLocation::Position' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, Direction) == 0x000018, "Member 'FZoneGraphLaneLocation::Direction' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, Tangent) == 0x000030, "Member 'FZoneGraphLaneLocation::Tangent' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, Up) == 0x000048, "Member 'FZoneGraphLaneLocation::Up' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, LaneHandle) == 0x000060, "Member 'FZoneGraphLaneLocation::LaneHandle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, LaneSegment) == 0x000068, "Member 'FZoneGraphLaneLocation::LaneSegment' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneLocation, DistanceAlongLane) == 0x00006C, "Member 'FZoneGraphLaneLocation::DistanceAlongLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphCompactLaneLocation \ +static_assert(alignof(FZoneGraphCompactLaneLocation) == 0x000004, "Wrong alignment on FZoneGraphCompactLaneLocation"); \ +static_assert(sizeof(FZoneGraphCompactLaneLocation) == 0x00000C, "Wrong size on FZoneGraphCompactLaneLocation"); \ +static_assert(offsetof(FZoneGraphCompactLaneLocation, LaneHandle) == 0x000000, "Member 'FZoneGraphCompactLaneLocation::LaneHandle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphCompactLaneLocation, DistanceAlongLane) == 0x000008, "Member 'FZoneGraphCompactLaneLocation::DistanceAlongLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphLaneSection \ +static_assert(alignof(FZoneGraphLaneSection) == 0x000004, "Wrong alignment on FZoneGraphLaneSection"); \ +static_assert(sizeof(FZoneGraphLaneSection) == 0x000010, "Wrong size on FZoneGraphLaneSection"); \ +static_assert(offsetof(FZoneGraphLaneSection, LaneHandle) == 0x000000, "Member 'FZoneGraphLaneSection::LaneHandle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneSection, StartDistanceAlongLane) == 0x000008, "Member 'FZoneGraphLaneSection::StartDistanceAlongLane' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneSection, EndDistanceAlongLane) == 0x00000C, "Member 'FZoneGraphLaneSection::EndDistanceAlongLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphLinkedLane \ +static_assert(alignof(FZoneGraphLinkedLane) == 0x000004, "Wrong alignment on FZoneGraphLinkedLane"); \ +static_assert(sizeof(FZoneGraphLinkedLane) == 0x00000C, "Wrong size on FZoneGraphLinkedLane"); \ +static_assert(offsetof(FZoneGraphLinkedLane, DestLane) == 0x000000, "Member 'FZoneGraphLinkedLane::DestLane' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLinkedLane, Type) == 0x000008, "Member 'FZoneGraphLinkedLane::Type' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLinkedLane, Flags) == 0x000009, "Member 'FZoneGraphLinkedLane::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphStorage \ +static_assert(alignof(FZoneGraphStorage) == 0x000008, "Wrong alignment on FZoneGraphStorage"); \ +static_assert(sizeof(FZoneGraphStorage) == 0x0000F0, "Wrong size on FZoneGraphStorage"); \ +static_assert(offsetof(FZoneGraphStorage, Zones) == 0x000000, "Member 'FZoneGraphStorage::Zones' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, Lanes) == 0x000010, "Member 'FZoneGraphStorage::Lanes' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, BoundaryPoints) == 0x000020, "Member 'FZoneGraphStorage::BoundaryPoints' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, LanePoints) == 0x000030, "Member 'FZoneGraphStorage::LanePoints' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, LaneUpVectors) == 0x000040, "Member 'FZoneGraphStorage::LaneUpVectors' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, LaneTangentVectors) == 0x000050, "Member 'FZoneGraphStorage::LaneTangentVectors' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, LanePointProgressions) == 0x000060, "Member 'FZoneGraphStorage::LanePointProgressions' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, LaneLinks) == 0x000070, "Member 'FZoneGraphStorage::LaneLinks' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, Bounds) == 0x000080, "Member 'FZoneGraphStorage::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphStorage, ZoneBVTree) == 0x0000B8, "Member 'FZoneGraphStorage::ZoneBVTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneShapePoint \ +static_assert(alignof(FZoneShapePoint) == 0x000008, "Wrong alignment on FZoneShapePoint"); \ +static_assert(sizeof(FZoneShapePoint) == 0x000070, "Wrong size on FZoneShapePoint"); \ +static_assert(offsetof(FZoneShapePoint, Position) == 0x000000, "Member 'FZoneShapePoint::Position' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, InControlPoint) == 0x000018, "Member 'FZoneShapePoint::InControlPoint' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, OutControlPoint) == 0x000030, "Member 'FZoneShapePoint::OutControlPoint' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, TangentLength) == 0x000048, "Member 'FZoneShapePoint::TangentLength' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, InnerTurnRadius) == 0x00004C, "Member 'FZoneShapePoint::InnerTurnRadius' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, Rotation) == 0x000050, "Member 'FZoneShapePoint::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, Type) == 0x000068, "Member 'FZoneShapePoint::Type' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, LaneProfile) == 0x000069, "Member 'FZoneShapePoint::LaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, bReverseLaneProfile) == 0x00006A, "Member 'FZoneShapePoint::bReverseLaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapePoint, LaneConnectionRestrictions) == 0x00006C, "Member 'FZoneShapePoint::LaneConnectionRestrictions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneShapeConnector \ +static_assert(alignof(FZoneShapeConnector) == 0x000008, "Wrong alignment on FZoneShapeConnector"); \ +static_assert(sizeof(FZoneShapeConnector) == 0x000068, "Wrong size on FZoneShapeConnector"); \ +static_assert(offsetof(FZoneShapeConnector, Position) == 0x000000, "Member 'FZoneShapeConnector::Position' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, Normal) == 0x000018, "Member 'FZoneShapeConnector::Normal' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, Up) == 0x000030, "Member 'FZoneShapeConnector::Up' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, PointIndex) == 0x000048, "Member 'FZoneShapeConnector::PointIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, LaneProfile) == 0x00004C, "Member 'FZoneShapeConnector::LaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, bReverseLaneProfile) == 0x000064, "Member 'FZoneShapeConnector::bReverseLaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnector, ShapeType) == 0x000065, "Member 'FZoneShapeConnector::ShapeType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneShapeConnection \ +static_assert(alignof(FZoneShapeConnection) == 0x000004, "Wrong alignment on FZoneShapeConnection"); \ +static_assert(sizeof(FZoneShapeConnection) == 0x00000C, "Wrong size on FZoneShapeConnection"); \ +static_assert(offsetof(FZoneShapeConnection, ShapeComponent) == 0x000000, "Member 'FZoneShapeConnection::ShapeComponent' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeConnection, ConnectorIndex) == 0x000008, "Member 'FZoneShapeConnection::ConnectorIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTessellationSettings \ +static_assert(alignof(FZoneGraphTessellationSettings) == 0x000004, "Wrong alignment on FZoneGraphTessellationSettings"); \ +static_assert(sizeof(FZoneGraphTessellationSettings) == 0x000010, "Wrong size on FZoneGraphTessellationSettings"); \ +static_assert(offsetof(FZoneGraphTessellationSettings, LaneFilter) == 0x000000, "Member 'FZoneGraphTessellationSettings::LaneFilter' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTessellationSettings, TessellationTolerance) == 0x00000C, "Member 'FZoneGraphTessellationSettings::TessellationTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphLaneRoutingRule \ +static_assert(alignof(FZoneGraphLaneRoutingRule) == 0x000008, "Wrong alignment on FZoneGraphLaneRoutingRule"); \ +static_assert(sizeof(FZoneGraphLaneRoutingRule) == 0x000060, "Wrong size on FZoneGraphLaneRoutingRule"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, bEnabled) == 0x000000, "Member 'FZoneGraphLaneRoutingRule::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, Comment) == 0x000008, "Member 'FZoneGraphLaneRoutingRule::Comment' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, ZoneTagFilter) == 0x000018, "Member 'FZoneGraphLaneRoutingRule::ZoneTagFilter' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, SourceLaneProfile) == 0x000024, "Member 'FZoneGraphLaneRoutingRule::SourceLaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, DestinationLaneProfile) == 0x00003C, "Member 'FZoneGraphLaneRoutingRule::DestinationLaneProfile' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, SourceOutgoingConnections) == 0x000054, "Member 'FZoneGraphLaneRoutingRule::SourceOutgoingConnections' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, DestinationIncomingConnections) == 0x000055, "Member 'FZoneGraphLaneRoutingRule::DestinationIncomingConnections' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphLaneRoutingRule, ConnectionRestrictions) == 0x000058, "Member 'FZoneGraphLaneRoutingRule::ConnectionRestrictions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphBuildSettings \ +static_assert(alignof(FZoneGraphBuildSettings) == 0x000008, "Wrong alignment on FZoneGraphBuildSettings"); \ +static_assert(sizeof(FZoneGraphBuildSettings) == 0x000040, "Wrong size on FZoneGraphBuildSettings"); \ +static_assert(offsetof(FZoneGraphBuildSettings, CommonTessellationTolerance) == 0x000000, "Member 'FZoneGraphBuildSettings::CommonTessellationTolerance' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, SpecificTessellationTolerances) == 0x000008, "Member 'FZoneGraphBuildSettings::SpecificTessellationTolerances' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, LaneConnectionAngle) == 0x000018, "Member 'FZoneGraphBuildSettings::LaneConnectionAngle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, LaneConnectionMask) == 0x00001C, "Member 'FZoneGraphBuildSettings::LaneConnectionMask' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, TurnThresholdAngle) == 0x000020, "Member 'FZoneGraphBuildSettings::TurnThresholdAngle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, PolygonRoutingRules) == 0x000028, "Member 'FZoneGraphBuildSettings::PolygonRoutingRules' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, ConnectionSnapDistance) == 0x000038, "Member 'FZoneGraphBuildSettings::ConnectionSnapDistance' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphBuildSettings, ConnectionSnapAngle) == 0x00003C, "Member 'FZoneGraphBuildSettings::ConnectionSnapAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneShapeLaneInternalLink \ +static_assert(alignof(FZoneShapeLaneInternalLink) == 0x000004, "Wrong alignment on FZoneShapeLaneInternalLink"); \ +static_assert(sizeof(FZoneShapeLaneInternalLink) == 0x00000C, "Wrong size on FZoneShapeLaneInternalLink"); \ +static_assert(offsetof(FZoneShapeLaneInternalLink, LaneIndex) == 0x000000, "Member 'FZoneShapeLaneInternalLink::LaneIndex' has a wrong offset!"); \ +static_assert(offsetof(FZoneShapeLaneInternalLink, LinkData) == 0x000004, "Member 'FZoneShapeLaneInternalLink::LinkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AZoneGraphData \ +static_assert(alignof(AZoneGraphData) == 0x000008, "Wrong alignment on AZoneGraphData"); \ +static_assert(sizeof(AZoneGraphData) == 0x0003C8, "Wrong size on AZoneGraphData"); \ +static_assert(offsetof(AZoneGraphData, bEnableDrawing) == 0x000299, "Member 'AZoneGraphData::bEnableDrawing' has a wrong offset!"); \ +static_assert(offsetof(AZoneGraphData, RenderingComp) == 0x0002A0, "Member 'AZoneGraphData::RenderingComp' has a wrong offset!"); \ +static_assert(offsetof(AZoneGraphData, ZoneStorage) == 0x0002A8, "Member 'AZoneGraphData::ZoneStorage' has a wrong offset!"); \ +static_assert(offsetof(AZoneGraphData, CombinedShapeHash) == 0x0003C0, "Member 'AZoneGraphData::CombinedShapeHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphRenderingComponent \ +static_assert(alignof(UZoneGraphRenderingComponent) == 0x000010, "Wrong alignment on UZoneGraphRenderingComponent"); \ +static_assert(sizeof(UZoneGraphRenderingComponent) == 0x000580, "Wrong size on UZoneGraphRenderingComponent"); \ + +#define DUMPER7_ASSERTS_UZoneGraphSettings \ +static_assert(alignof(UZoneGraphSettings) == 0x000008, "Wrong alignment on UZoneGraphSettings"); \ +static_assert(sizeof(UZoneGraphSettings) == 0x000298, "Wrong size on UZoneGraphSettings"); \ +static_assert(offsetof(UZoneGraphSettings, LaneProfiles) == 0x000038, "Member 'UZoneGraphSettings::LaneProfiles' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphSettings, Tags) == 0x000048, "Member 'UZoneGraphSettings::Tags' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphSettings, VisualizedTags) == 0x000248, "Member 'UZoneGraphSettings::VisualizedTags' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphSettings, ShapeMaxDrawDistance) == 0x00024C, "Member 'UZoneGraphSettings::ShapeMaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphSettings, BuildSettings) == 0x000250, "Member 'UZoneGraphSettings::BuildSettings' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphSettings, bBuildZoneGraphWhileEditing) == 0x000290, "Member 'UZoneGraphSettings::bBuildZoneGraphWhileEditing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphSubsystem \ +static_assert(alignof(UZoneGraphSubsystem) == 0x000008, "Wrong alignment on UZoneGraphSubsystem"); \ +static_assert(sizeof(UZoneGraphSubsystem) == 0x000090, "Wrong size on UZoneGraphSubsystem"); \ +static_assert(offsetof(UZoneGraphSubsystem, RegisteredZoneGraphData) == 0x000068, "Member 'UZoneGraphSubsystem::RegisteredZoneGraphData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AZoneShape \ +static_assert(alignof(AZoneShape) == 0x000008, "Wrong alignment on AZoneShape"); \ +static_assert(sizeof(AZoneShape) == 0x0002A0, "Wrong size on AZoneShape"); \ +static_assert(offsetof(AZoneShape, ShapeComponent) == 0x000298, "Member 'AZoneShape::ShapeComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_SetPolygonRoutingType \ +static_assert(alignof(ZoneShapeComponent_SetPolygonRoutingType) == 0x000001, "Wrong alignment on ZoneShapeComponent_SetPolygonRoutingType"); \ +static_assert(sizeof(ZoneShapeComponent_SetPolygonRoutingType) == 0x000001, "Wrong size on ZoneShapeComponent_SetPolygonRoutingType"); \ +static_assert(offsetof(ZoneShapeComponent_SetPolygonRoutingType, NewType) == 0x000000, "Member 'ZoneShapeComponent_SetPolygonRoutingType::NewType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_SetReverseLaneProfile \ +static_assert(alignof(ZoneShapeComponent_SetReverseLaneProfile) == 0x000001, "Wrong alignment on ZoneShapeComponent_SetReverseLaneProfile"); \ +static_assert(sizeof(ZoneShapeComponent_SetReverseLaneProfile) == 0x000002, "Wrong size on ZoneShapeComponent_SetReverseLaneProfile"); \ +static_assert(offsetof(ZoneShapeComponent_SetReverseLaneProfile, bReverse) == 0x000000, "Member 'ZoneShapeComponent_SetReverseLaneProfile::bReverse' has a wrong offset!"); \ +static_assert(offsetof(ZoneShapeComponent_SetReverseLaneProfile, ReturnValue) == 0x000001, "Member 'ZoneShapeComponent_SetReverseLaneProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_SetShapeType \ +static_assert(alignof(ZoneShapeComponent_SetShapeType) == 0x000001, "Wrong alignment on ZoneShapeComponent_SetShapeType"); \ +static_assert(sizeof(ZoneShapeComponent_SetShapeType) == 0x000001, "Wrong size on ZoneShapeComponent_SetShapeType"); \ +static_assert(offsetof(ZoneShapeComponent_SetShapeType, Type) == 0x000000, "Member 'ZoneShapeComponent_SetShapeType::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_SetTags \ +static_assert(alignof(ZoneShapeComponent_SetTags) == 0x000004, "Wrong alignment on ZoneShapeComponent_SetTags"); \ +static_assert(sizeof(ZoneShapeComponent_SetTags) == 0x000004, "Wrong size on ZoneShapeComponent_SetTags"); \ +static_assert(offsetof(ZoneShapeComponent_SetTags, NewTags) == 0x000000, "Member 'ZoneShapeComponent_SetTags::NewTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_GetShapeType \ +static_assert(alignof(ZoneShapeComponent_GetShapeType) == 0x000001, "Wrong alignment on ZoneShapeComponent_GetShapeType"); \ +static_assert(sizeof(ZoneShapeComponent_GetShapeType) == 0x000001, "Wrong size on ZoneShapeComponent_GetShapeType"); \ +static_assert(offsetof(ZoneShapeComponent_GetShapeType, ReturnValue) == 0x000000, "Member 'ZoneShapeComponent_GetShapeType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_GetTags \ +static_assert(alignof(ZoneShapeComponent_GetTags) == 0x000004, "Wrong alignment on ZoneShapeComponent_GetTags"); \ +static_assert(sizeof(ZoneShapeComponent_GetTags) == 0x000004, "Wrong size on ZoneShapeComponent_GetTags"); \ +static_assert(offsetof(ZoneShapeComponent_GetTags, ReturnValue) == 0x000000, "Member 'ZoneShapeComponent_GetTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneShapeComponent_IsLaneProfileReversed \ +static_assert(alignof(ZoneShapeComponent_IsLaneProfileReversed) == 0x000001, "Wrong alignment on ZoneShapeComponent_IsLaneProfileReversed"); \ +static_assert(sizeof(ZoneShapeComponent_IsLaneProfileReversed) == 0x000001, "Wrong size on ZoneShapeComponent_IsLaneProfileReversed"); \ +static_assert(offsetof(ZoneShapeComponent_IsLaneProfileReversed, ReturnValue) == 0x000000, "Member 'ZoneShapeComponent_IsLaneProfileReversed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneShapeComponent \ +static_assert(alignof(UZoneShapeComponent) == 0x000010, "Wrong alignment on UZoneShapeComponent"); \ +static_assert(sizeof(UZoneShapeComponent) == 0x0005E0, "Wrong size on UZoneShapeComponent"); \ +static_assert(offsetof(UZoneShapeComponent, LaneProfile) == 0x000570, "Member 'UZoneShapeComponent::LaneProfile' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, bReverseLaneProfile) == 0x000588, "Member 'UZoneShapeComponent::bReverseLaneProfile' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, PerPointLaneProfiles) == 0x000590, "Member 'UZoneShapeComponent::PerPointLaneProfiles' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, Points) == 0x0005A0, "Member 'UZoneShapeComponent::Points' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, ShapeType) == 0x0005B0, "Member 'UZoneShapeComponent::ShapeType' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, PolygonRoutingType) == 0x0005B1, "Member 'UZoneShapeComponent::PolygonRoutingType' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, Tags) == 0x0005B4, "Member 'UZoneShapeComponent::Tags' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, ShapeConnectors) == 0x0005B8, "Member 'UZoneShapeComponent::ShapeConnectors' has a wrong offset!"); \ +static_assert(offsetof(UZoneShapeComponent, ConnectedShapes) == 0x0005C8, "Member 'UZoneShapeComponent::ConnectedShapes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntityConfig \ +static_assert(alignof(FMassEntityConfig) == 0x000008, "Wrong alignment on FMassEntityConfig"); \ +static_assert(sizeof(FMassEntityConfig) == 0x000030, "Wrong size on FMassEntityConfig"); \ +static_assert(offsetof(FMassEntityConfig, Parent) == 0x000000, "Member 'FMassEntityConfig::Parent' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityConfig, Traits) == 0x000008, "Member 'FMassEntityConfig::Traits' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityConfig, ConfigOwner) == 0x000018, "Member 'FMassEntityConfig::ConfigOwner' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityConfig, ConfigGuid) == 0x000020, "Member 'FMassEntityConfig::ConfigGuid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntitySpawnDataGeneratorResult \ +static_assert(alignof(FMassEntitySpawnDataGeneratorResult) == 0x000008, "Wrong alignment on FMassEntitySpawnDataGeneratorResult"); \ +static_assert(sizeof(FMassEntitySpawnDataGeneratorResult) == 0x000030, "Wrong size on FMassEntitySpawnDataGeneratorResult"); \ +static_assert(offsetof(FMassEntitySpawnDataGeneratorResult, SpawnData) == 0x000000, "Member 'FMassEntitySpawnDataGeneratorResult::SpawnData' has a wrong offset!"); \ +static_assert(offsetof(FMassEntitySpawnDataGeneratorResult, SpawnDataProcessor) == 0x000010, "Member 'FMassEntitySpawnDataGeneratorResult::SpawnDataProcessor' has a wrong offset!"); \ +static_assert(offsetof(FMassEntitySpawnDataGeneratorResult, PostSpawnProcessors) == 0x000018, "Member 'FMassEntitySpawnDataGeneratorResult::PostSpawnProcessors' has a wrong offset!"); \ +static_assert(offsetof(FMassEntitySpawnDataGeneratorResult, EntityConfigIndex) == 0x000028, "Member 'FMassEntitySpawnDataGeneratorResult::EntityConfigIndex' has a wrong offset!"); \ +static_assert(offsetof(FMassEntitySpawnDataGeneratorResult, NumEntities) == 0x00002C, "Member 'FMassEntitySpawnDataGeneratorResult::NumEntities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntityTemplateID \ +static_assert(alignof(FMassEntityTemplateID) == 0x000008, "Wrong alignment on FMassEntityTemplateID"); \ +static_assert(sizeof(FMassEntityTemplateID) == 0x000020, "Wrong size on FMassEntityTemplateID"); \ +static_assert(offsetof(FMassEntityTemplateID, ConfigGuid) == 0x000000, "Member 'FMassEntityTemplateID::ConfigGuid' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityTemplateID, FlavorHash) == 0x000010, "Member 'FMassEntityTemplateID::FlavorHash' has a wrong offset!"); \ +static_assert(offsetof(FMassEntityTemplateID, TotalHash) == 0x000018, "Member 'FMassEntityTemplateID::TotalHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntityTemplateData \ +static_assert(alignof(FMassEntityTemplateData) == 0x000008, "Wrong alignment on FMassEntityTemplateData"); \ +static_assert(sizeof(FMassEntityTemplateData) == 0x0000F8, "Wrong size on FMassEntityTemplateData"); \ + +#define DUMPER7_ASSERTS_FMassTransformsSpawnData \ +static_assert(alignof(FMassTransformsSpawnData) == 0x000008, "Wrong alignment on FMassTransformsSpawnData"); \ +static_assert(sizeof(FMassTransformsSpawnData) == 0x000018, "Wrong size on FMassTransformsSpawnData"); \ + +#define DUMPER7_ASSERTS_FMassSpawnedEntityType \ +static_assert(alignof(FMassSpawnedEntityType) == 0x000008, "Wrong alignment on FMassSpawnedEntityType"); \ +static_assert(sizeof(FMassSpawnedEntityType) == 0x000038, "Wrong size on FMassSpawnedEntityType"); \ +static_assert(offsetof(FMassSpawnedEntityType, EntityConfig) == 0x000000, "Member 'FMassSpawnedEntityType::EntityConfig' has a wrong offset!"); \ +static_assert(offsetof(FMassSpawnedEntityType, Proportion) == 0x000028, "Member 'FMassSpawnedEntityType::Proportion' has a wrong offset!"); \ +static_assert(offsetof(FMassSpawnedEntityType, EntityConfigPtr) == 0x000030, "Member 'FMassSpawnedEntityType::EntityConfigPtr' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSpawnDataGenerator \ +static_assert(alignof(FMassSpawnDataGenerator) == 0x000008, "Wrong alignment on FMassSpawnDataGenerator"); \ +static_assert(sizeof(FMassSpawnDataGenerator) == 0x000018, "Wrong size on FMassSpawnDataGenerator"); \ +static_assert(offsetof(FMassSpawnDataGenerator, GeneratorClass) == 0x000000, "Member 'FMassSpawnDataGenerator::GeneratorClass' has a wrong offset!"); \ +static_assert(offsetof(FMassSpawnDataGenerator, GeneratorInstance) == 0x000008, "Member 'FMassSpawnDataGenerator::GeneratorInstance' has a wrong offset!"); \ +static_assert(offsetof(FMassSpawnDataGenerator, Proportion) == 0x000010, "Member 'FMassSpawnDataGenerator::Proportion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicationTemplateIDFragment \ +static_assert(alignof(FReplicationTemplateIDFragment) == 0x000008, "Wrong alignment on FReplicationTemplateIDFragment"); \ +static_assert(sizeof(FReplicationTemplateIDFragment) == 0x000020, "Wrong size on FReplicationTemplateIDFragment"); \ +static_assert(offsetof(FReplicationTemplateIDFragment, ID) == 0x000000, "Member 'FReplicationTemplateIDFragment::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntityTraitBase \ +static_assert(alignof(UMassEntityTraitBase) == 0x000008, "Wrong alignment on UMassEntityTraitBase"); \ +static_assert(sizeof(UMassEntityTraitBase) == 0x000028, "Wrong size on UMassEntityTraitBase"); \ + +#define DUMPER7_ASSERTS_UMassAssortedFragmentsTrait \ +static_assert(alignof(UMassAssortedFragmentsTrait) == 0x000008, "Wrong alignment on UMassAssortedFragmentsTrait"); \ +static_assert(sizeof(UMassAssortedFragmentsTrait) == 0x000048, "Wrong size on UMassAssortedFragmentsTrait"); \ +static_assert(offsetof(UMassAssortedFragmentsTrait, Fragments) == 0x000028, "Member 'UMassAssortedFragmentsTrait::Fragments' has a wrong offset!"); \ +static_assert(offsetof(UMassAssortedFragmentsTrait, Tags) == 0x000038, "Member 'UMassAssortedFragmentsTrait::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntityConfigAsset \ +static_assert(alignof(UMassEntityConfigAsset) == 0x000008, "Wrong alignment on UMassEntityConfigAsset"); \ +static_assert(sizeof(UMassEntityConfigAsset) == 0x000060, "Wrong size on UMassEntityConfigAsset"); \ +static_assert(offsetof(UMassEntityConfigAsset, Config) == 0x000030, "Member 'UMassEntityConfigAsset::Config' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntitySpawnDataGeneratorBase \ +static_assert(alignof(UMassEntitySpawnDataGeneratorBase) == 0x000008, "Wrong alignment on UMassEntitySpawnDataGeneratorBase"); \ +static_assert(sizeof(UMassEntitySpawnDataGeneratorBase) == 0x000030, "Wrong size on UMassEntitySpawnDataGeneratorBase"); \ +static_assert(offsetof(UMassEntitySpawnDataGeneratorBase, RandomSelectionSeed) == 0x000028, "Member 'UMassEntitySpawnDataGeneratorBase::RandomSelectionSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntityEQSSpawnPointsGenerator \ +static_assert(alignof(UMassEntityEQSSpawnPointsGenerator) == 0x000008, "Wrong alignment on UMassEntityEQSSpawnPointsGenerator"); \ +static_assert(sizeof(UMassEntityEQSSpawnPointsGenerator) == 0x000078, "Wrong size on UMassEntityEQSSpawnPointsGenerator"); \ +static_assert(offsetof(UMassEntityEQSSpawnPointsGenerator, EQSRequest) == 0x000030, "Member 'UMassEntityEQSSpawnPointsGenerator::EQSRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassEntityTemplateRegistry \ +static_assert(alignof(UMassEntityTemplateRegistry) == 0x000008, "Wrong alignment on UMassEntityTemplateRegistry"); \ +static_assert(sizeof(UMassEntityTemplateRegistry) == 0x000028, "Wrong size on UMassEntityTemplateRegistry"); \ + +#define DUMPER7_ASSERTS_UMassEntityZoneGraphSpawnPointsGenerator \ +static_assert(alignof(UMassEntityZoneGraphSpawnPointsGenerator) == 0x000008, "Wrong alignment on UMassEntityZoneGraphSpawnPointsGenerator"); \ +static_assert(sizeof(UMassEntityZoneGraphSpawnPointsGenerator) == 0x000048, "Wrong size on UMassEntityZoneGraphSpawnPointsGenerator"); \ +static_assert(offsetof(UMassEntityZoneGraphSpawnPointsGenerator, TagFilter) == 0x000030, "Member 'UMassEntityZoneGraphSpawnPointsGenerator::TagFilter' has a wrong offset!"); \ +static_assert(offsetof(UMassEntityZoneGraphSpawnPointsGenerator, MinGap) == 0x00003C, "Member 'UMassEntityZoneGraphSpawnPointsGenerator::MinGap' has a wrong offset!"); \ +static_assert(offsetof(UMassEntityZoneGraphSpawnPointsGenerator, MaxGap) == 0x000040, "Member 'UMassEntityZoneGraphSpawnPointsGenerator::MaxGap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MassSpawner_ScaleSpawningCount \ +static_assert(alignof(MassSpawner_ScaleSpawningCount) == 0x000004, "Wrong alignment on MassSpawner_ScaleSpawningCount"); \ +static_assert(sizeof(MassSpawner_ScaleSpawningCount) == 0x000004, "Wrong size on MassSpawner_ScaleSpawningCount"); \ +static_assert(offsetof(MassSpawner_ScaleSpawningCount, Scale) == 0x000000, "Member 'MassSpawner_ScaleSpawningCount::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MassSpawner_GetCount \ +static_assert(alignof(MassSpawner_GetCount) == 0x000004, "Wrong alignment on MassSpawner_GetCount"); \ +static_assert(sizeof(MassSpawner_GetCount) == 0x000004, "Wrong size on MassSpawner_GetCount"); \ +static_assert(offsetof(MassSpawner_GetCount, ReturnValue) == 0x000000, "Member 'MassSpawner_GetCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MassSpawner_GetSpawningCountScale \ +static_assert(alignof(MassSpawner_GetSpawningCountScale) == 0x000004, "Wrong alignment on MassSpawner_GetSpawningCountScale"); \ +static_assert(sizeof(MassSpawner_GetSpawningCountScale) == 0x000004, "Wrong size on MassSpawner_GetSpawningCountScale"); \ +static_assert(offsetof(MassSpawner_GetSpawningCountScale, ReturnValue) == 0x000000, "Member 'MassSpawner_GetSpawningCountScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMassSpawner \ +static_assert(alignof(AMassSpawner) == 0x000008, "Wrong alignment on AMassSpawner"); \ +static_assert(sizeof(AMassSpawner) == 0x000340, "Wrong size on AMassSpawner"); \ +static_assert(offsetof(AMassSpawner, OnSpawningFinishedEvent) == 0x000298, "Member 'AMassSpawner::OnSpawningFinishedEvent' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, OnDespawningFinishedEvent) == 0x0002A8, "Member 'AMassSpawner::OnDespawningFinishedEvent' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, Count) == 0x0002B8, "Member 'AMassSpawner::Count' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, EntityTypes) == 0x0002C0, "Member 'AMassSpawner::EntityTypes' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, SpawnDataGenerators) == 0x0002D0, "Member 'AMassSpawner::SpawnDataGenerators' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, PostSpawnProcessors) == 0x0002E8, "Member 'AMassSpawner::PostSpawnProcessors' has a wrong offset!"); \ +static_assert(offsetof(AMassSpawner, SpawningCountScale) == 0x0002F8, "Member 'AMassSpawner::SpawningCountScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSpawnerSubsystem \ +static_assert(alignof(UMassSpawnerSubsystem) == 0x000008, "Wrong alignment on UMassSpawnerSubsystem"); \ +static_assert(sizeof(UMassSpawnerSubsystem) == 0x0000B8, "Wrong size on UMassSpawnerSubsystem"); \ +static_assert(offsetof(UMassSpawnerSubsystem, SpawnDataInitializers) == 0x000030, "Member 'UMassSpawnerSubsystem::SpawnDataInitializers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSpawnLocationProcessor \ +static_assert(alignof(UMassSpawnLocationProcessor) == 0x000008, "Wrong alignment on UMassSpawnLocationProcessor"); \ +static_assert(sizeof(UMassSpawnLocationProcessor) == 0x000360, "Wrong size on UMassSpawnLocationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassTranslator \ +static_assert(alignof(UMassTranslator) == 0x000008, "Wrong alignment on UMassTranslator"); \ +static_assert(sizeof(UMassTranslator) == 0x0000D8, "Wrong size on UMassTranslator"); \ + +#define DUMPER7_ASSERTS_BPI_Physics_Audio_C_GetAudioComponent \ +static_assert(alignof(BPI_Physics_Audio_C_GetAudioComponent) == 0x000008, "Wrong alignment on BPI_Physics_Audio_C_GetAudioComponent"); \ +static_assert(sizeof(BPI_Physics_Audio_C_GetAudioComponent) == 0x000008, "Wrong size on BPI_Physics_Audio_C_GetAudioComponent"); \ +static_assert(offsetof(BPI_Physics_Audio_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BPI_Physics_Audio_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_Physics_Audio_C \ +static_assert(alignof(IBPI_Physics_Audio_C) == 0x000001, "Wrong alignment on IBPI_Physics_Audio_C"); \ +static_assert(sizeof(IBPI_Physics_Audio_C) == 0x000001, "Wrong size on IBPI_Physics_Audio_C"); \ + +#define DUMPER7_ASSERTS_FMassHighLODTag \ +static_assert(alignof(FMassHighLODTag) == 0x000001, "Wrong alignment on FMassHighLODTag"); \ +static_assert(sizeof(FMassHighLODTag) == 0x000001, "Wrong size on FMassHighLODTag"); \ + +#define DUMPER7_ASSERTS_FMassMediumLODTag \ +static_assert(alignof(FMassMediumLODTag) == 0x000001, "Wrong alignment on FMassMediumLODTag"); \ +static_assert(sizeof(FMassMediumLODTag) == 0x000001, "Wrong size on FMassMediumLODTag"); \ + +#define DUMPER7_ASSERTS_FMassLowLODTag \ +static_assert(alignof(FMassLowLODTag) == 0x000001, "Wrong alignment on FMassLowLODTag"); \ +static_assert(sizeof(FMassLowLODTag) == 0x000001, "Wrong size on FMassLowLODTag"); \ + +#define DUMPER7_ASSERTS_FMassOffLODTag \ +static_assert(alignof(FMassOffLODTag) == 0x000001, "Wrong alignment on FMassOffLODTag"); \ +static_assert(sizeof(FMassOffLODTag) == 0x000001, "Wrong size on FMassOffLODTag"); \ + +#define DUMPER7_ASSERTS_FMassViewerInfoFragment \ +static_assert(alignof(FMassViewerInfoFragment) == 0x000004, "Wrong alignment on FMassViewerInfoFragment"); \ +static_assert(sizeof(FMassViewerInfoFragment) == 0x000008, "Wrong size on FMassViewerInfoFragment"); \ + +#define DUMPER7_ASSERTS_FMassVariableTickChunkFragment \ +static_assert(alignof(FMassVariableTickChunkFragment) == 0x000004, "Wrong alignment on FMassVariableTickChunkFragment"); \ +static_assert(sizeof(FMassVariableTickChunkFragment) == 0x000010, "Wrong size on FMassVariableTickChunkFragment"); \ + +#define DUMPER7_ASSERTS_FMassCollectLODViewerInfoTag \ +static_assert(alignof(FMassCollectLODViewerInfoTag) == 0x000001, "Wrong alignment on FMassCollectLODViewerInfoTag"); \ +static_assert(sizeof(FMassCollectLODViewerInfoTag) == 0x000001, "Wrong size on FMassCollectLODViewerInfoTag"); \ + +#define DUMPER7_ASSERTS_FMassVisibilityCanBeSeenTag \ +static_assert(alignof(FMassVisibilityCanBeSeenTag) == 0x000001, "Wrong alignment on FMassVisibilityCanBeSeenTag"); \ +static_assert(sizeof(FMassVisibilityCanBeSeenTag) == 0x000001, "Wrong size on FMassVisibilityCanBeSeenTag"); \ + +#define DUMPER7_ASSERTS_FMassVisibilityCulledByFrustumTag \ +static_assert(alignof(FMassVisibilityCulledByFrustumTag) == 0x000001, "Wrong alignment on FMassVisibilityCulledByFrustumTag"); \ +static_assert(sizeof(FMassVisibilityCulledByFrustumTag) == 0x000001, "Wrong size on FMassVisibilityCulledByFrustumTag"); \ + +#define DUMPER7_ASSERTS_FMassVisibilityCulledByDistanceTag \ +static_assert(alignof(FMassVisibilityCulledByDistanceTag) == 0x000001, "Wrong alignment on FMassVisibilityCulledByDistanceTag"); \ +static_assert(sizeof(FMassVisibilityCulledByDistanceTag) == 0x000001, "Wrong size on FMassVisibilityCulledByDistanceTag"); \ + +#define DUMPER7_ASSERTS_FMassVisualizationChunkFragment \ +static_assert(alignof(FMassVisualizationChunkFragment) == 0x000004, "Wrong alignment on FMassVisualizationChunkFragment"); \ +static_assert(sizeof(FMassVisualizationChunkFragment) == 0x000008, "Wrong size on FMassVisualizationChunkFragment"); \ + +#define DUMPER7_ASSERTS_FMassViewerHandle \ +static_assert(alignof(FMassViewerHandle) == 0x000004, "Wrong alignment on FMassViewerHandle"); \ +static_assert(sizeof(FMassViewerHandle) == 0x000008, "Wrong size on FMassViewerHandle"); \ + +#define DUMPER7_ASSERTS_FViewerInfo \ +static_assert(alignof(FViewerInfo) == 0x000008, "Wrong alignment on FViewerInfo"); \ +static_assert(sizeof(FViewerInfo) == 0x000060, "Wrong size on FViewerInfo"); \ +static_assert(offsetof(FViewerInfo, PlayerController) == 0x000000, "Member 'FViewerInfo::PlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSimulationLODFragment \ +static_assert(alignof(FMassSimulationLODFragment) == 0x000004, "Wrong alignment on FMassSimulationLODFragment"); \ +static_assert(sizeof(FMassSimulationLODFragment) == 0x000008, "Wrong size on FMassSimulationLODFragment"); \ + +#define DUMPER7_ASSERTS_FMassSimulationVariableTickFragment \ +static_assert(alignof(FMassSimulationVariableTickFragment) == 0x000008, "Wrong alignment on FMassSimulationVariableTickFragment"); \ +static_assert(sizeof(FMassSimulationVariableTickFragment) == 0x000010, "Wrong size on FMassSimulationVariableTickFragment"); \ + +#define DUMPER7_ASSERTS_FMassSimulationVariableTickChunkFragment \ +static_assert(alignof(FMassSimulationVariableTickChunkFragment) == 0x000004, "Wrong alignment on FMassSimulationVariableTickChunkFragment"); \ +static_assert(sizeof(FMassSimulationVariableTickChunkFragment) == 0x000010, "Wrong size on FMassSimulationVariableTickChunkFragment"); \ + +#define DUMPER7_ASSERTS_FMassSimulationLODParameters \ +static_assert(alignof(FMassSimulationLODParameters) == 0x000004, "Wrong alignment on FMassSimulationLODParameters"); \ +static_assert(sizeof(FMassSimulationLODParameters) == 0x000028, "Wrong size on FMassSimulationLODParameters"); \ +static_assert(offsetof(FMassSimulationLODParameters, LODDistance) == 0x000000, "Member 'FMassSimulationLODParameters::LODDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassSimulationLODParameters, BufferHysteresisOnDistancePercentage) == 0x000010, "Member 'FMassSimulationLODParameters::BufferHysteresisOnDistancePercentage' has a wrong offset!"); \ +static_assert(offsetof(FMassSimulationLODParameters, LODMaxCount) == 0x000014, "Member 'FMassSimulationLODParameters::LODMaxCount' has a wrong offset!"); \ +static_assert(offsetof(FMassSimulationLODParameters, bSetLODTags) == 0x000024, "Member 'FMassSimulationLODParameters::bSetLODTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSimulationVariableTickParameters \ +static_assert(alignof(FMassSimulationVariableTickParameters) == 0x000004, "Wrong alignment on FMassSimulationVariableTickParameters"); \ +static_assert(sizeof(FMassSimulationVariableTickParameters) == 0x000014, "Wrong size on FMassSimulationVariableTickParameters"); \ +static_assert(offsetof(FMassSimulationVariableTickParameters, TickRates) == 0x000000, "Member 'FMassSimulationVariableTickParameters::TickRates' has a wrong offset!"); \ +static_assert(offsetof(FMassSimulationVariableTickParameters, bSpreadFirstSimulationUpdate) == 0x000010, "Member 'FMassSimulationVariableTickParameters::bSpreadFirstSimulationUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSimulationLODSharedFragment \ +static_assert(alignof(FMassSimulationLODSharedFragment) == 0x000008, "Wrong alignment on FMassSimulationLODSharedFragment"); \ +static_assert(sizeof(FMassSimulationLODSharedFragment) == 0x002018, "Wrong size on FMassSimulationLODSharedFragment"); \ + +#define DUMPER7_ASSERTS_FMassSimulationVariableTickSharedFragment \ +static_assert(alignof(FMassSimulationVariableTickSharedFragment) == 0x000008, "Wrong alignment on FMassSimulationVariableTickSharedFragment"); \ +static_assert(sizeof(FMassSimulationVariableTickSharedFragment) == 0x000028, "Wrong size on FMassSimulationVariableTickSharedFragment"); \ + +#define DUMPER7_ASSERTS_UMassLODCollectorProcessor \ +static_assert(alignof(UMassLODCollectorProcessor) == 0x000008, "Wrong alignment on UMassLODCollectorProcessor"); \ +static_assert(sizeof(UMassLODCollectorProcessor) == 0x000B50, "Wrong size on UMassLODCollectorProcessor"); \ + +#define DUMPER7_ASSERTS_MassLODSubsystem_OnPlayerControllerEndPlay \ +static_assert(alignof(MassLODSubsystem_OnPlayerControllerEndPlay) == 0x000008, "Wrong alignment on MassLODSubsystem_OnPlayerControllerEndPlay"); \ +static_assert(sizeof(MassLODSubsystem_OnPlayerControllerEndPlay) == 0x000010, "Wrong size on MassLODSubsystem_OnPlayerControllerEndPlay"); \ +static_assert(offsetof(MassLODSubsystem_OnPlayerControllerEndPlay, Actor) == 0x000000, "Member 'MassLODSubsystem_OnPlayerControllerEndPlay::Actor' has a wrong offset!"); \ +static_assert(offsetof(MassLODSubsystem_OnPlayerControllerEndPlay, EndPlayReason) == 0x000008, "Member 'MassLODSubsystem_OnPlayerControllerEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLODSubsystem \ +static_assert(alignof(UMassLODSubsystem) == 0x000008, "Wrong alignment on UMassLODSubsystem"); \ +static_assert(sizeof(UMassLODSubsystem) == 0x0000F0, "Wrong size on UMassLODSubsystem"); \ +static_assert(offsetof(UMassLODSubsystem, Viewers) == 0x000040, "Member 'UMassLODSubsystem::Viewers' has a wrong offset!"); \ +static_assert(offsetof(UMassLODSubsystem, ViewerMap) == 0x000050, "Member 'UMassLODSubsystem::ViewerMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLODCollectorTrait \ +static_assert(alignof(UMassLODCollectorTrait) == 0x000008, "Wrong alignment on UMassLODCollectorTrait"); \ +static_assert(sizeof(UMassLODCollectorTrait) == 0x000028, "Wrong size on UMassLODCollectorTrait"); \ + +#define DUMPER7_ASSERTS_UMassSimulationLODTrait \ +static_assert(alignof(UMassSimulationLODTrait) == 0x000008, "Wrong alignment on UMassSimulationLODTrait"); \ +static_assert(sizeof(UMassSimulationLODTrait) == 0x000068, "Wrong size on UMassSimulationLODTrait"); \ +static_assert(offsetof(UMassSimulationLODTrait, Params_0) == 0x000028, "Member 'UMassSimulationLODTrait::Params_0' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationLODTrait, bEnableVariableTicking) == 0x000050, "Member 'UMassSimulationLODTrait::bEnableVariableTicking' has a wrong offset!"); \ +static_assert(offsetof(UMassSimulationLODTrait, VariableTickParams) == 0x000054, "Member 'UMassSimulationLODTrait::VariableTickParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSimulationLODProcessor \ +static_assert(alignof(UMassSimulationLODProcessor) == 0x000008, "Wrong alignment on UMassSimulationLODProcessor"); \ +static_assert(sizeof(UMassSimulationLODProcessor) == 0x000DE0, "Wrong size on UMassSimulationLODProcessor"); \ + +#define DUMPER7_ASSERTS_FFractureMaterial \ +static_assert(alignof(FFractureMaterial) == 0x000008, "Wrong alignment on FFractureMaterial"); \ +static_assert(sizeof(FFractureMaterial) == 0x000040, "Wrong size on FFractureMaterial"); \ +static_assert(offsetof(FFractureMaterial, UVScale) == 0x000000, "Member 'FFractureMaterial::UVScale' has a wrong offset!"); \ +static_assert(offsetof(FFractureMaterial, UVOffset) == 0x000010, "Member 'FFractureMaterial::UVOffset' has a wrong offset!"); \ +static_assert(offsetof(FFractureMaterial, Tangent) == 0x000020, "Member 'FFractureMaterial::Tangent' has a wrong offset!"); \ +static_assert(offsetof(FFractureMaterial, UAngle) == 0x000038, "Member 'FFractureMaterial::UAngle' has a wrong offset!"); \ +static_assert(offsetof(FFractureMaterial, InteriorElementIndex) == 0x00003C, "Member 'FFractureMaterial::InteriorElementIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleChunkParameters \ +static_assert(alignof(FDestructibleChunkParameters) == 0x000001, "Wrong alignment on FDestructibleChunkParameters"); \ +static_assert(sizeof(FDestructibleChunkParameters) == 0x000004, "Wrong size on FDestructibleChunkParameters"); \ +static_assert(offsetof(FDestructibleChunkParameters, bIsSupportChunk) == 0x000000, "Member 'FDestructibleChunkParameters::bIsSupportChunk' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleChunkParameters, bDoNotFracture) == 0x000001, "Member 'FDestructibleChunkParameters::bDoNotFracture' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleChunkParameters, bDoNotDamage) == 0x000002, "Member 'FDestructibleChunkParameters::bDoNotDamage' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleChunkParameters, bDoNotCrumble) == 0x000003, "Member 'FDestructibleChunkParameters::bDoNotCrumble' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleDepthParameters \ +static_assert(alignof(FDestructibleDepthParameters) == 0x000001, "Wrong alignment on FDestructibleDepthParameters"); \ +static_assert(sizeof(FDestructibleDepthParameters) == 0x000001, "Wrong size on FDestructibleDepthParameters"); \ +static_assert(offsetof(FDestructibleDepthParameters, ImpactDamageOverride) == 0x000000, "Member 'FDestructibleDepthParameters::ImpactDamageOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleParametersFlag \ +static_assert(alignof(FDestructibleParametersFlag) == 0x000004, "Wrong alignment on FDestructibleParametersFlag"); \ +static_assert(sizeof(FDestructibleParametersFlag) == 0x000004, "Wrong size on FDestructibleParametersFlag"); \ + +#define DUMPER7_ASSERTS_FDestructibleDamageParameters \ +static_assert(alignof(FDestructibleDamageParameters) == 0x000004, "Wrong alignment on FDestructibleDamageParameters"); \ +static_assert(sizeof(FDestructibleDamageParameters) == 0x00001C, "Wrong size on FDestructibleDamageParameters"); \ +static_assert(offsetof(FDestructibleDamageParameters, DamageThreshold) == 0x000000, "Member 'FDestructibleDamageParameters::DamageThreshold' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, DamageSpread) == 0x000004, "Member 'FDestructibleDamageParameters::DamageSpread' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, bEnableImpactDamage) == 0x000008, "Member 'FDestructibleDamageParameters::bEnableImpactDamage' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, ImpactDamage) == 0x00000C, "Member 'FDestructibleDamageParameters::ImpactDamage' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, DefaultImpactDamageDepth) == 0x000010, "Member 'FDestructibleDamageParameters::DefaultImpactDamageDepth' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, bCustomImpactResistance) == 0x000014, "Member 'FDestructibleDamageParameters::bCustomImpactResistance' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDamageParameters, ImpactResistance) == 0x000018, "Member 'FDestructibleDamageParameters::ImpactResistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleDebrisParameters \ +static_assert(alignof(FDestructibleDebrisParameters) == 0x000008, "Wrong alignment on FDestructibleDebrisParameters"); \ +static_assert(sizeof(FDestructibleDebrisParameters) == 0x000048, "Wrong size on FDestructibleDebrisParameters"); \ +static_assert(offsetof(FDestructibleDebrisParameters, DebrisLifetimeMin) == 0x000000, "Member 'FDestructibleDebrisParameters::DebrisLifetimeMin' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDebrisParameters, DebrisLifetimeMax) == 0x000004, "Member 'FDestructibleDebrisParameters::DebrisLifetimeMax' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDebrisParameters, DebrisMaxSeparationMin) == 0x000008, "Member 'FDestructibleDebrisParameters::DebrisMaxSeparationMin' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDebrisParameters, DebrisMaxSeparationMax) == 0x00000C, "Member 'FDestructibleDebrisParameters::DebrisMaxSeparationMax' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleDebrisParameters, ValidBounds) == 0x000010, "Member 'FDestructibleDebrisParameters::ValidBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleAdvancedParameters \ +static_assert(alignof(FDestructibleAdvancedParameters) == 0x000004, "Wrong alignment on FDestructibleAdvancedParameters"); \ +static_assert(sizeof(FDestructibleAdvancedParameters) == 0x000010, "Wrong size on FDestructibleAdvancedParameters"); \ +static_assert(offsetof(FDestructibleAdvancedParameters, DamageCap) == 0x000000, "Member 'FDestructibleAdvancedParameters::DamageCap' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleAdvancedParameters, ImpactVelocityThreshold) == 0x000004, "Member 'FDestructibleAdvancedParameters::ImpactVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleAdvancedParameters, MaxChunkSpeed) == 0x000008, "Member 'FDestructibleAdvancedParameters::MaxChunkSpeed' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleAdvancedParameters, FractureImpulseScale) == 0x00000C, "Member 'FDestructibleAdvancedParameters::FractureImpulseScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleSpecialHierarchyDepths \ +static_assert(alignof(FDestructibleSpecialHierarchyDepths) == 0x000004, "Wrong alignment on FDestructibleSpecialHierarchyDepths"); \ +static_assert(sizeof(FDestructibleSpecialHierarchyDepths) == 0x000014, "Wrong size on FDestructibleSpecialHierarchyDepths"); \ +static_assert(offsetof(FDestructibleSpecialHierarchyDepths, SupportDepth) == 0x000000, "Member 'FDestructibleSpecialHierarchyDepths::SupportDepth' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleSpecialHierarchyDepths, MinimumFractureDepth) == 0x000004, "Member 'FDestructibleSpecialHierarchyDepths::MinimumFractureDepth' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleSpecialHierarchyDepths, bEnableDebris) == 0x000008, "Member 'FDestructibleSpecialHierarchyDepths::bEnableDebris' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleSpecialHierarchyDepths, DebrisDepth) == 0x00000C, "Member 'FDestructibleSpecialHierarchyDepths::DebrisDepth' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleSpecialHierarchyDepths, EssentialDepth) == 0x000010, "Member 'FDestructibleSpecialHierarchyDepths::EssentialDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDestructibleParameters \ +static_assert(alignof(FDestructibleParameters) == 0x000008, "Wrong alignment on FDestructibleParameters"); \ +static_assert(sizeof(FDestructibleParameters) == 0x0000A8, "Wrong size on FDestructibleParameters"); \ +static_assert(offsetof(FDestructibleParameters, DamageParameters) == 0x000000, "Member 'FDestructibleParameters::DamageParameters' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleParameters, DebrisParameters) == 0x000020, "Member 'FDestructibleParameters::DebrisParameters' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleParameters, AdvancedParameters) == 0x000068, "Member 'FDestructibleParameters::AdvancedParameters' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleParameters, SpecialHierarchyDepths) == 0x000078, "Member 'FDestructibleParameters::SpecialHierarchyDepths' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleParameters, DepthParameters) == 0x000090, "Member 'FDestructibleParameters::DepthParameters' has a wrong offset!"); \ +static_assert(offsetof(FDestructibleParameters, Flags) == 0x0000A0, "Member 'FDestructibleParameters::Flags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADestructibleActor \ +static_assert(alignof(ADestructibleActor) == 0x000008, "Wrong alignment on ADestructibleActor"); \ +static_assert(sizeof(ADestructibleActor) == 0x0002B0, "Wrong size on ADestructibleActor"); \ +static_assert(offsetof(ADestructibleActor, DestructibleComponent) == 0x000298, "Member 'ADestructibleActor::DestructibleComponent' has a wrong offset!"); \ +static_assert(offsetof(ADestructibleActor, OnActorFracture) == 0x0002A0, "Member 'ADestructibleActor::OnActorFracture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestructibleComponent_ApplyDamage \ +static_assert(alignof(DestructibleComponent_ApplyDamage) == 0x000008, "Wrong alignment on DestructibleComponent_ApplyDamage"); \ +static_assert(sizeof(DestructibleComponent_ApplyDamage) == 0x000040, "Wrong size on DestructibleComponent_ApplyDamage"); \ +static_assert(offsetof(DestructibleComponent_ApplyDamage, DamageAmount) == 0x000000, "Member 'DestructibleComponent_ApplyDamage::DamageAmount' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyDamage, HitLocation) == 0x000008, "Member 'DestructibleComponent_ApplyDamage::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyDamage, ImpulseDir) == 0x000020, "Member 'DestructibleComponent_ApplyDamage::ImpulseDir' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyDamage, ImpulseStrength) == 0x000038, "Member 'DestructibleComponent_ApplyDamage::ImpulseStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestructibleComponent_ApplyRadiusDamage \ +static_assert(alignof(DestructibleComponent_ApplyRadiusDamage) == 0x000008, "Wrong alignment on DestructibleComponent_ApplyRadiusDamage"); \ +static_assert(sizeof(DestructibleComponent_ApplyRadiusDamage) == 0x000030, "Wrong size on DestructibleComponent_ApplyRadiusDamage"); \ +static_assert(offsetof(DestructibleComponent_ApplyRadiusDamage, BaseDamage) == 0x000000, "Member 'DestructibleComponent_ApplyRadiusDamage::BaseDamage' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyRadiusDamage, HurtOrigin) == 0x000008, "Member 'DestructibleComponent_ApplyRadiusDamage::HurtOrigin' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyRadiusDamage, DamageRadius) == 0x000020, "Member 'DestructibleComponent_ApplyRadiusDamage::DamageRadius' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyRadiusDamage, ImpulseStrength) == 0x000024, "Member 'DestructibleComponent_ApplyRadiusDamage::ImpulseStrength' has a wrong offset!"); \ +static_assert(offsetof(DestructibleComponent_ApplyRadiusDamage, bFullDamage) == 0x000028, "Member 'DestructibleComponent_ApplyRadiusDamage::bFullDamage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestructibleComponent_GetDestructibleMesh \ +static_assert(alignof(DestructibleComponent_GetDestructibleMesh) == 0x000008, "Wrong alignment on DestructibleComponent_GetDestructibleMesh"); \ +static_assert(sizeof(DestructibleComponent_GetDestructibleMesh) == 0x000008, "Wrong size on DestructibleComponent_GetDestructibleMesh"); \ +static_assert(offsetof(DestructibleComponent_GetDestructibleMesh, ReturnValue) == 0x000000, "Member 'DestructibleComponent_GetDestructibleMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestructibleComponent_SetDestructibleMesh \ +static_assert(alignof(DestructibleComponent_SetDestructibleMesh) == 0x000008, "Wrong alignment on DestructibleComponent_SetDestructibleMesh"); \ +static_assert(sizeof(DestructibleComponent_SetDestructibleMesh) == 0x000008, "Wrong size on DestructibleComponent_SetDestructibleMesh"); \ +static_assert(offsetof(DestructibleComponent_SetDestructibleMesh, NewMesh) == 0x000000, "Member 'DestructibleComponent_SetDestructibleMesh::NewMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDestructibleComponent \ +static_assert(alignof(UDestructibleComponent) == 0x000010, "Wrong alignment on UDestructibleComponent"); \ +static_assert(sizeof(UDestructibleComponent) == 0x000990, "Wrong size on UDestructibleComponent"); \ +static_assert(offsetof(UDestructibleComponent, FractureEffects) == 0x0008F8, "Member 'UDestructibleComponent::FractureEffects' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleComponent, bEnableHardSleeping) == 0x000908, "Member 'UDestructibleComponent::bEnableHardSleeping' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleComponent, LargeChunkThreshold) == 0x00090C, "Member 'UDestructibleComponent::LargeChunkThreshold' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleComponent, OnComponentFracture) == 0x000910, "Member 'UDestructibleComponent::OnComponentFracture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDestructibleFractureSettings \ +static_assert(alignof(UDestructibleFractureSettings) == 0x000008, "Wrong alignment on UDestructibleFractureSettings"); \ +static_assert(sizeof(UDestructibleFractureSettings) == 0x0000B0, "Wrong size on UDestructibleFractureSettings"); \ +static_assert(offsetof(UDestructibleFractureSettings, CellSiteCount) == 0x000028, "Member 'UDestructibleFractureSettings::CellSiteCount' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, FractureMaterialDesc) == 0x000030, "Member 'UDestructibleFractureSettings::FractureMaterialDesc' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, RandomSeed) == 0x000070, "Member 'UDestructibleFractureSettings::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, VoronoiSites) == 0x000078, "Member 'UDestructibleFractureSettings::VoronoiSites' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, OriginalSubmeshCount) == 0x000088, "Member 'UDestructibleFractureSettings::OriginalSubmeshCount' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, Materials) == 0x000090, "Member 'UDestructibleFractureSettings::Materials' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleFractureSettings, ChunkParameters) == 0x0000A0, "Member 'UDestructibleFractureSettings::ChunkParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDestructibleMesh \ +static_assert(alignof(UDestructibleMesh) == 0x000008, "Wrong alignment on UDestructibleMesh"); \ +static_assert(sizeof(UDestructibleMesh) == 0x000598, "Wrong size on UDestructibleMesh"); \ +static_assert(offsetof(UDestructibleMesh, DefaultDestructibleParameters) == 0x0004E0, "Member 'UDestructibleMesh::DefaultDestructibleParameters' has a wrong offset!"); \ +static_assert(offsetof(UDestructibleMesh, FractureEffects) == 0x000588, "Member 'UDestructibleMesh::FractureEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneLaneTest \ +static_assert(alignof(UZoneLaneTest) == 0x000008, "Wrong alignment on UZoneLaneTest"); \ +static_assert(sizeof(UZoneLaneTest) == 0x000030, "Wrong size on UZoneLaneTest"); \ +static_assert(offsetof(UZoneLaneTest, OwnerComponent) == 0x000028, "Member 'UZoneLaneTest::OwnerComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphTestingComponent \ +static_assert(alignof(UZoneGraphTestingComponent) == 0x000010, "Wrong alignment on UZoneGraphTestingComponent"); \ +static_assert(sizeof(UZoneGraphTestingComponent) == 0x000850, "Wrong size on UZoneGraphTestingComponent"); \ +static_assert(offsetof(UZoneGraphTestingComponent, ZoneGraph) == 0x000580, "Member 'UZoneGraphTestingComponent::ZoneGraph' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, LaneLocation) == 0x000588, "Member 'UZoneGraphTestingComponent::LaneLocation' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, NextLaneLocation) == 0x0005F8, "Member 'UZoneGraphTestingComponent::NextLaneLocation' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, NearestLaneLocation) == 0x000668, "Member 'UZoneGraphTestingComponent::NearestLaneLocation' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, SearchExtent) == 0x0006D8, "Member 'UZoneGraphTestingComponent::SearchExtent' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, AdvanceDistance) == 0x0006F0, "Member 'UZoneGraphTestingComponent::AdvanceDistance' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, NearestTestOffset) == 0x0006F8, "Member 'UZoneGraphTestingComponent::NearestTestOffset' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, QueryFilter) == 0x000710, "Member 'UZoneGraphTestingComponent::QueryFilter' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, bDrawLinkedLanes) == 0x00071C, "Member 'UZoneGraphTestingComponent::bDrawLinkedLanes' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, bDrawLaneTangentVectors) == 0x00071D, "Member 'UZoneGraphTestingComponent::bDrawLaneTangentVectors' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, bDrawLaneSmoothing) == 0x00071E, "Member 'UZoneGraphTestingComponent::bDrawLaneSmoothing' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, bDrawBVTreeQuery) == 0x00071F, "Member 'UZoneGraphTestingComponent::bDrawBVTreeQuery' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, bDrawLanePath) == 0x000720, "Member 'UZoneGraphTestingComponent::bDrawLanePath' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, OtherActor) == 0x000728, "Member 'UZoneGraphTestingComponent::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphTestingComponent, CustomTests) == 0x000830, "Member 'UZoneGraphTestingComponent::CustomTests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AZoneGraphTestingActor \ +static_assert(alignof(AZoneGraphTestingActor) == 0x000008, "Wrong alignment on AZoneGraphTestingActor"); \ +static_assert(sizeof(AZoneGraphTestingActor) == 0x0002A0, "Wrong size on AZoneGraphTestingActor"); \ +static_assert(offsetof(AZoneGraphTestingActor, DebugComp) == 0x000298, "Member 'AZoneGraphTestingActor::DebugComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_CloseInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_OpenInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_BndEvt__BP_IQA_UnlockDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_3_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor \ +static_assert(alignof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor) == 0x000210, "Wrong size on BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, EntryPoint) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, Temp_object_Variable) == 0x000008, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, Temp_delegate_Variable) == 0x000018, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, Temp_delegate_Variable_1) == 0x000028, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_ComponentBoundEvent_InInteractingActor_3) == 0x000038, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_ComponentBoundEvent_InInteractingActor_3' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_ComponentBoundEvent_InInteractingActor_2) == 0x000040, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_ComponentBoundEvent_InInteractingActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_GetSwingDirection_OpenFront) == 0x000048, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_GetSwingDirection_OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_CustomEvent_Condition_1) == 0x000049, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_CustomEvent_Condition_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Not_PreBool_ReturnValue) == 0x00004A, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_CustomEvent_Condition) == 0x00004B, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_CustomEvent_Condition' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_SelectFloat_ReturnValue) == 0x000050, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_CustomEvent_Angle) == 0x000058, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_CustomEvent_Angle' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_MakeRotator_ReturnValue) == 0x000060, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_K2_SetRelativeRotation_SweepHitResult) == 0x000078, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_K2_SetRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000160, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000168, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000170, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000178, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_CustomEvent_DoorOpenAngle) == 0x000180, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_CustomEvent_DoorOpenAngle' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Abs_ReturnValue) == 0x000188, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_GetFloatValue_ReturnValue) == 0x000190, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_MapRangeClamped_ReturnValue) == 0x000198, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_MakeArray_Array) == 0x0001A0, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x0001B0, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_ComponentBoundEvent_InInteractingActor) == 0x0001B8, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_Event_InItemState) == 0x0001C0, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x0001C8, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_DynamicCast_bSuccess) == 0x0001D8, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_GetItemState_ReturnValue) == 0x0001D9, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_GetItemState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0001DA, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, K2Node_ComponentBoundEvent_InItemState) == 0x0001DB, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x0001DC, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001E0, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0001E8, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0001EC, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0001F0, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0001F8, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000200, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor, CallFunc_SetOpenAmount_InAmount_ImplicitCast) == 0x000208, "Member 'BP_IQA_UnlockDoor_C_ExecuteUbergraph_BP_IQA_UnlockDoor::CallFunc_SetOpenAmount_InAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_GetSwingDirection \ +static_assert(alignof(BP_IQA_UnlockDoor_C_GetSwingDirection) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_GetSwingDirection"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_GetSwingDirection) == 0x000080, "Wrong size on BP_IQA_UnlockDoor_C_GetSwingDirection"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, InteractingActor) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::InteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, OpenFront) == 0x000008, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_GetActorRightVector_ReturnValue) == 0x000010, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000040, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_Dot_VectorVector_ReturnValue) == 0x000070, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_GetSwingDirection, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_IQA_UnlockDoor_C_GetSwingDirection::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_OpenDoor \ +static_assert(alignof(BP_IQA_UnlockDoor_C_OpenDoor) == 0x000001, "Wrong alignment on BP_IQA_UnlockDoor_C_OpenDoor"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_OpenDoor) == 0x000001, "Wrong size on BP_IQA_UnlockDoor_C_OpenDoor"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_OpenDoor, Condition) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_OpenDoor::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_SetAudioPortalOpenness \ +static_assert(alignof(BP_IQA_UnlockDoor_C_SetAudioPortalOpenness) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_SetAudioPortalOpenness"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_SetAudioPortalOpenness) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_SetAudioPortalOpenness"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_SetAudioPortalOpenness, DoorOpenAngle) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_SetAudioPortalOpenness::DoorOpenAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_SetItemState \ +static_assert(alignof(BP_IQA_UnlockDoor_C_SetItemState) == 0x000001, "Wrong alignment on BP_IQA_UnlockDoor_C_SetItemState"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_SetItemState) == 0x000001, "Wrong size on BP_IQA_UnlockDoor_C_SetItemState"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_SetItemState, InItemState) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_SwingOpen \ +static_assert(alignof(BP_IQA_UnlockDoor_C_SwingOpen) == 0x000001, "Wrong alignment on BP_IQA_UnlockDoor_C_SwingOpen"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_SwingOpen) == 0x000001, "Wrong size on BP_IQA_UnlockDoor_C_SwingOpen"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_SwingOpen, Condition) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_SwingOpen::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_UnlockDoor_C_UpdateRotation \ +static_assert(alignof(BP_IQA_UnlockDoor_C_UpdateRotation) == 0x000008, "Wrong alignment on BP_IQA_UnlockDoor_C_UpdateRotation"); \ +static_assert(sizeof(BP_IQA_UnlockDoor_C_UpdateRotation) == 0x000008, "Wrong size on BP_IQA_UnlockDoor_C_UpdateRotation"); \ +static_assert(offsetof(BP_IQA_UnlockDoor_C_UpdateRotation, Angle) == 0x000000, "Member 'BP_IQA_UnlockDoor_C_UpdateRotation::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_IQA_UnlockDoor_C \ +static_assert(alignof(ABP_IQA_UnlockDoor_C) == 0x000008, "Wrong alignment on ABP_IQA_UnlockDoor_C"); \ +static_assert(sizeof(ABP_IQA_UnlockDoor_C) == 0x0003C8, "Wrong size on ABP_IQA_UnlockDoor_C"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, UberGraphFrame_BP_IQA_UnlockDoor_C) == 0x000328, "Member 'ABP_IQA_UnlockDoor_C::UberGraphFrame_BP_IQA_UnlockDoor_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, WrestlerPersistenceComponentItemState) == 0x000330, "Member 'ABP_IQA_UnlockDoor_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, InteractionPromptMover) == 0x000338, "Member 'ABP_IQA_UnlockDoor_C::InteractionPromptMover' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, HeraAudioPortal) == 0x000340, "Member 'ABP_IQA_UnlockDoor_C::HeraAudioPortal' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, WrestlerInteractionPoint1) == 0x000348, "Member 'ABP_IQA_UnlockDoor_C::WrestlerInteractionPoint1' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, CloseInteraction) == 0x000350, "Member 'ABP_IQA_UnlockDoor_C::CloseInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, OpenInteraction) == 0x000358, "Member 'ABP_IQA_UnlockDoor_C::OpenInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Box) == 0x000360, "Member 'ABP_IQA_UnlockDoor_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, StaticMesh) == 0x000368, "Member 'ABP_IQA_UnlockDoor_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline_0_DoorAnim_CEB2D30142D76046624449A981F299C2) == 0x000370, "Member 'ABP_IQA_UnlockDoor_C::Timeline_0_DoorAnim_CEB2D30142D76046624449A981F299C2' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline_0__Direction_CEB2D30142D76046624449A981F299C2) == 0x000374, "Member 'ABP_IQA_UnlockDoor_C::Timeline_0__Direction_CEB2D30142D76046624449A981F299C2' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline_0) == 0x000378, "Member 'ABP_IQA_UnlockDoor_C::Timeline_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline_DoorAnim_F76244284A963C798DC05CAA27754CFC) == 0x000380, "Member 'ABP_IQA_UnlockDoor_C::Timeline_DoorAnim_F76244284A963C798DC05CAA27754CFC' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline__Direction_F76244284A963C798DC05CAA27754CFC) == 0x000384, "Member 'ABP_IQA_UnlockDoor_C::Timeline__Direction_F76244284A963C798DC05CAA27754CFC' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Timeline) == 0x000388, "Member 'ABP_IQA_UnlockDoor_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, Speed) == 0x000390, "Member 'ABP_IQA_UnlockDoor_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, AngleDirectionModifier) == 0x000398, "Member 'ABP_IQA_UnlockDoor_C::AngleDirectionModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, AngleLimit) == 0x0003A0, "Member 'ABP_IQA_UnlockDoor_C::AngleLimit' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, IsOpen) == 0x0003A8, "Member 'ABP_IQA_UnlockDoor_C::IsOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, AudioPortalCurve) == 0x0003B0, "Member 'ABP_IQA_UnlockDoor_C::AudioPortalCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, AudioPortalOpennessWhenDoorClosed) == 0x0003B8, "Member 'ABP_IQA_UnlockDoor_C::AudioPortalOpennessWhenDoorClosed' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_UnlockDoor_C, MUS_PB_Modifier) == 0x0003C0, "Member 'ABP_IQA_UnlockDoor_C::MUS_PB_Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueTop_Controller_C \ +static_assert(alignof(UDialogueTop_Controller_C) == 0x000010, "Wrong alignment on UDialogueTop_Controller_C"); \ +static_assert(sizeof(UDialogueTop_Controller_C) == 0x0007B0, "Wrong size on UDialogueTop_Controller_C"); \ + +#define DUMPER7_ASSERTS_FRegisteredZoneGraphAnnotation \ +static_assert(alignof(FRegisteredZoneGraphAnnotation) == 0x000008, "Wrong alignment on FRegisteredZoneGraphAnnotation"); \ +static_assert(sizeof(FRegisteredZoneGraphAnnotation) == 0x000010, "Wrong size on FRegisteredZoneGraphAnnotation"); \ +static_assert(offsetof(FRegisteredZoneGraphAnnotation, AnnotationComponent) == 0x000000, "Member 'FRegisteredZoneGraphAnnotation::AnnotationComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphAnnotationEventBase \ +static_assert(alignof(FZoneGraphAnnotationEventBase) == 0x000001, "Wrong alignment on FZoneGraphAnnotationEventBase"); \ +static_assert(sizeof(FZoneGraphAnnotationEventBase) == 0x000001, "Wrong size on FZoneGraphAnnotationEventBase"); \ + +#define DUMPER7_ASSERTS_FZoneGraphDisturbanceArea \ +static_assert(alignof(FZoneGraphDisturbanceArea) == 0x000008, "Wrong alignment on FZoneGraphDisturbanceArea"); \ +static_assert(sizeof(FZoneGraphDisturbanceArea) == 0x000028, "Wrong size on FZoneGraphDisturbanceArea"); \ +static_assert(offsetof(FZoneGraphDisturbanceArea, Position) == 0x000000, "Member 'FZoneGraphDisturbanceArea::Position' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphDisturbanceArea, Radius) == 0x000018, "Member 'FZoneGraphDisturbanceArea::Radius' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphDisturbanceArea, Duration) == 0x00001C, "Member 'FZoneGraphDisturbanceArea::Duration' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphDisturbanceArea, InstigatorID) == 0x000020, "Member 'FZoneGraphDisturbanceArea::InstigatorID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphObstacleDisturbanceArea \ +static_assert(alignof(FZoneGraphObstacleDisturbanceArea) == 0x000008, "Wrong alignment on FZoneGraphObstacleDisturbanceArea"); \ +static_assert(sizeof(FZoneGraphObstacleDisturbanceArea) == 0x000030, "Wrong size on FZoneGraphObstacleDisturbanceArea"); \ +static_assert(offsetof(FZoneGraphObstacleDisturbanceArea, Position) == 0x000000, "Member 'FZoneGraphObstacleDisturbanceArea::Position' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphObstacleDisturbanceArea, Radius) == 0x000018, "Member 'FZoneGraphObstacleDisturbanceArea::Radius' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphObstacleDisturbanceArea, ObstacleRadius) == 0x00001C, "Member 'FZoneGraphObstacleDisturbanceArea::ObstacleRadius' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphObstacleDisturbanceArea, Action) == 0x000028, "Member 'FZoneGraphObstacleDisturbanceArea::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphAnnotationComponent \ +static_assert(alignof(UZoneGraphAnnotationComponent) == 0x000010, "Wrong alignment on UZoneGraphAnnotationComponent"); \ +static_assert(sizeof(UZoneGraphAnnotationComponent) == 0x0005E0, "Wrong size on UZoneGraphAnnotationComponent"); \ +static_assert(offsetof(UZoneGraphAnnotationComponent, bEnableDebugDrawing) == 0x0005D8, "Member 'UZoneGraphAnnotationComponent::bEnableDebugDrawing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphAnnotationSubsystem \ +static_assert(alignof(UZoneGraphAnnotationSubsystem) == 0x000008, "Wrong alignment on UZoneGraphAnnotationSubsystem"); \ +static_assert(sizeof(UZoneGraphAnnotationSubsystem) == 0x0000B0, "Wrong size on UZoneGraphAnnotationSubsystem"); \ +static_assert(offsetof(UZoneGraphAnnotationSubsystem, RegisteredComponents) == 0x000040, "Member 'UZoneGraphAnnotationSubsystem::RegisteredComponents' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphAnnotationSubsystem, Events) == 0x000050, "Member 'UZoneGraphAnnotationSubsystem::Events' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphAnnotationSubsystem, TagToAnnotationLookup) == 0x000078, "Member 'UZoneGraphAnnotationSubsystem::TagToAnnotationLookup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphAnnotationTest \ +static_assert(alignof(UZoneGraphAnnotationTest) == 0x000008, "Wrong alignment on UZoneGraphAnnotationTest"); \ +static_assert(sizeof(UZoneGraphAnnotationTest) == 0x000030, "Wrong size on UZoneGraphAnnotationTest"); \ +static_assert(offsetof(UZoneGraphAnnotationTest, OwnerComponent) == 0x000028, "Member 'UZoneGraphAnnotationTest::OwnerComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphAnnotationTestingComponent \ +static_assert(alignof(UZoneGraphAnnotationTestingComponent) == 0x000010, "Wrong alignment on UZoneGraphAnnotationTestingComponent"); \ +static_assert(sizeof(UZoneGraphAnnotationTestingComponent) == 0x0005D0, "Wrong size on UZoneGraphAnnotationTestingComponent"); \ +static_assert(offsetof(UZoneGraphAnnotationTestingComponent, Tests) == 0x0005C0, "Member 'UZoneGraphAnnotationTestingComponent::Tests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AZoneGraphAnnotationTestingActor \ +static_assert(alignof(AZoneGraphAnnotationTestingActor) == 0x000008, "Wrong alignment on AZoneGraphAnnotationTestingActor"); \ +static_assert(sizeof(AZoneGraphAnnotationTestingActor) == 0x0002A0, "Wrong size on AZoneGraphAnnotationTestingActor"); \ +static_assert(offsetof(AZoneGraphAnnotationTestingActor, TestingComp) == 0x000298, "Member 'AZoneGraphAnnotationTestingActor::TestingComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphDisturbanceAnnotation \ +static_assert(alignof(UZoneGraphDisturbanceAnnotation) == 0x000010, "Wrong alignment on UZoneGraphDisturbanceAnnotation"); \ +static_assert(sizeof(UZoneGraphDisturbanceAnnotation) == 0x000650, "Wrong size on UZoneGraphDisturbanceAnnotation"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, DangerAnnotationTag) == 0x0005E0, "Member 'UZoneGraphDisturbanceAnnotation::DangerAnnotationTag' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, ObstacleAnnotationTag) == 0x0005E1, "Member 'UZoneGraphDisturbanceAnnotation::ObstacleAnnotationTag' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, AffectedLaneTags) == 0x0005E4, "Member 'UZoneGraphDisturbanceAnnotation::AffectedLaneTags' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, EscapeLaneTags) == 0x0005F0, "Member 'UZoneGraphDisturbanceAnnotation::EscapeLaneTags' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, IdealSpanLength) == 0x0005FC, "Member 'UZoneGraphDisturbanceAnnotation::IdealSpanLength' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotation, ZoneGraphSubsystem) == 0x000640, "Member 'UZoneGraphDisturbanceAnnotation::ZoneGraphSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphDisturbanceAnnotationTest \ +static_assert(alignof(UZoneGraphDisturbanceAnnotationTest) == 0x000008, "Wrong alignment on UZoneGraphDisturbanceAnnotationTest"); \ +static_assert(sizeof(UZoneGraphDisturbanceAnnotationTest) == 0x000050, "Wrong size on UZoneGraphDisturbanceAnnotationTest"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotationTest, Offset) == 0x000030, "Member 'UZoneGraphDisturbanceAnnotationTest::Offset' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotationTest, Duration) == 0x000048, "Member 'UZoneGraphDisturbanceAnnotationTest::Duration' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphDisturbanceAnnotationTest, DangerRadius) == 0x00004C, "Member 'UZoneGraphDisturbanceAnnotationTest::DangerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger \ +static_assert(alignof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger) == 0x000008, "Wrong alignment on ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger"); \ +static_assert(sizeof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger) == 0x000030, "Wrong size on ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger"); \ +static_assert(offsetof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger, WorldContextObject) == 0x000000, "Member 'ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger, Instigator) == 0x000008, "Member 'ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger::Instigator' has a wrong offset!"); \ +static_assert(offsetof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger, Position) == 0x000010, "Member 'ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger::Position' has a wrong offset!"); \ +static_assert(offsetof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger, Radius) == 0x000028, "Member 'ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger::Radius' has a wrong offset!"); \ +static_assert(offsetof(ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger, Duration) == 0x00002C, "Member 'ZoneGraphDisturbanceAnnotationBPLibrary_TriggerDanger::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphDisturbanceAnnotationBPLibrary \ +static_assert(alignof(UZoneGraphDisturbanceAnnotationBPLibrary) == 0x000008, "Wrong alignment on UZoneGraphDisturbanceAnnotationBPLibrary"); \ +static_assert(sizeof(UZoneGraphDisturbanceAnnotationBPLibrary) == 0x000028, "Wrong size on UZoneGraphDisturbanceAnnotationBPLibrary"); \ + +#define DUMPER7_ASSERTS_BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate \ +static_assert(alignof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate) == 0x000008, "Wrong alignment on BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate"); \ +static_assert(sizeof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate) == 0x000118, "Wrong size on BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, EntryPoint) == 0x000000, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Array_Index_Variable_1) == 0x000018, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000020, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000030, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000050, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Get_Item_1) == 0x000068, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Length_ReturnValue_1) == 0x000070, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Array_Index_Variable_2) == 0x000074, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000080, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Length_ReturnValue_2) == 0x000090, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, K2Node_DynamicCast_AsBP_Enemy_Character_Base_1) == 0x000098, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::K2Node_DynamicCast_AsBP_Enemy_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, K2Node_DynamicCast_bSuccess_1) == 0x0000A0, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000A1, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_GetSkeletalMeshComponents_ReturnValue_1) == 0x0000A8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_GetSkeletalMeshComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Get_Item_2) == 0x0000B8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Length_ReturnValue_3) == 0x0000C0, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0000C8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_GetGameTimeSinceCreation_ReturnValue) == 0x0000D0, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_GetGameTimeSinceCreation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, K2Node_Event_DeltaSeconds) == 0x0000D4, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Loop_Counter_Variable_2) == 0x0000E0, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Loop_Counter_Variable_3) == 0x0000E4, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000E8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000EC, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Less_IntInt_ReturnValue_3) == 0x0000F0, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Add_IntInt_ReturnValue_3) == 0x0000F4, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, Temp_int_Array_Index_Variable_3) == 0x0000F8, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Array_Get_Item_3) == 0x000100, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000108, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast) == 0x000110, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate, CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast_1) == 0x000114, "Member 'BP_CauldronOfBlood_activate_C_ExecuteUbergraph_BP_CauldronOfBlood_activate::CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CauldronOfBlood_activate_C_ReceiveTick \ +static_assert(alignof(BP_CauldronOfBlood_activate_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_CauldronOfBlood_activate_C_ReceiveTick"); \ +static_assert(sizeof(BP_CauldronOfBlood_activate_C_ReceiveTick) == 0x000004, "Wrong size on BP_CauldronOfBlood_activate_C_ReceiveTick"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_CauldronOfBlood_activate_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CauldronOfBlood_activate_C_SpawnBloodDecal \ +static_assert(alignof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal) == 0x000008, "Wrong alignment on BP_CauldronOfBlood_activate_C_SpawnBloodDecal"); \ +static_assert(sizeof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal) == 0x0002F0, "Wrong size on BP_CauldronOfBlood_activate_C_SpawnBloodDecal"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, Parameters) == 0x000000, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::Parameters' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, TargetActor) == 0x0000D8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000E0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_Direction) == 0x0000F8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_ReturnValue) == 0x000110, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000114, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000118, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000120, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000138, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000140, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000148, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000168, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Location) == 0x000188, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Normal) == 0x0001A0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0001B8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0001C0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x0001C8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0001D0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0001D8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0001DC, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0001E0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001E8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0001F0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Yaw) == 0x000208, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Pitch) == 0x00020C, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue) == 0x000210, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000228, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue_1) == 0x000230, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_MakeRotator_ReturnValue) == 0x000248, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Map_Keys_Keys) == 0x000260, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000270, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Array_Random_OutItem) == 0x000288, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Array_Random_OutIndex) == 0x000290, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000298, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x0002B0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_1) == 0x0002B8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x0002C0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x0002C8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_2) == 0x0002D0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_2) == 0x0002D8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0002E0, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CauldronOfBlood_activate_C_SpawnBloodDecal, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0002E8, "Member 'BP_CauldronOfBlood_activate_C_SpawnBloodDecal::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CauldronOfBlood_activate_C \ +static_assert(alignof(ABP_CauldronOfBlood_activate_C) == 0x000008, "Wrong alignment on ABP_CauldronOfBlood_activate_C"); \ +static_assert(sizeof(ABP_CauldronOfBlood_activate_C) == 0x000390, "Wrong size on ABP_CauldronOfBlood_activate_C"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, UberGraphFrame) == 0x000298, "Member 'ABP_CauldronOfBlood_activate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_CauldronOfBlood_activate_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Timeline_1_COBAmount_Slow_EEDFD821454D1701A2F9FEA40DE7AE87) == 0x0002A8, "Member 'ABP_CauldronOfBlood_activate_C::Timeline_1_COBAmount_Slow_EEDFD821454D1701A2F9FEA40DE7AE87' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Timeline_1_YOffset_EEDFD821454D1701A2F9FEA40DE7AE87) == 0x0002AC, "Member 'ABP_CauldronOfBlood_activate_C::Timeline_1_YOffset_EEDFD821454D1701A2F9FEA40DE7AE87' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Timeline_1_COBAmount_EEDFD821454D1701A2F9FEA40DE7AE87) == 0x0002B0, "Member 'ABP_CauldronOfBlood_activate_C::Timeline_1_COBAmount_EEDFD821454D1701A2F9FEA40DE7AE87' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Timeline_1__Direction_EEDFD821454D1701A2F9FEA40DE7AE87) == 0x0002B4, "Member 'ABP_CauldronOfBlood_activate_C::Timeline_1__Direction_EEDFD821454D1701A2F9FEA40DE7AE87' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Timeline_1) == 0x0002B8, "Member 'ABP_CauldronOfBlood_activate_C::Timeline_1' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, BubblesBlood) == 0x0002C0, "Member 'ABP_CauldronOfBlood_activate_C::BubblesBlood' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, NiagaraComponent) == 0x0002C8, "Member 'ABP_CauldronOfBlood_activate_C::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, COB_system) == 0x0002D0, "Member 'ABP_CauldronOfBlood_activate_C::COB_system' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, DirectionalDecalSelection) == 0x0002D8, "Member 'ABP_CauldronOfBlood_activate_C::DirectionalDecalSelection' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Decal_Size) == 0x000328, "Member 'ABP_CauldronOfBlood_activate_C::Decal_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Duration) == 0x000340, "Member 'ABP_CauldronOfBlood_activate_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Dynmat) == 0x000348, "Member 'ABP_CauldronOfBlood_activate_C::Dynmat' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Character) == 0x000350, "Member 'ABP_CauldronOfBlood_activate_C::Character' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, ParameterName) == 0x000358, "Member 'ABP_CauldronOfBlood_activate_C::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, NewVar) == 0x000360, "Member 'ABP_CauldronOfBlood_activate_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Use_Anim_) == 0x000368, "Member 'ABP_CauldronOfBlood_activate_C::Use_Anim_' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, COBAmount) == 0x00036C, "Member 'ABP_CauldronOfBlood_activate_C::COBAmount' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, YOffset) == 0x000370, "Member 'ABP_CauldronOfBlood_activate_C::YOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, Target) == 0x000378, "Member 'ABP_CauldronOfBlood_activate_C::Target' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, BurstAsset) == 0x000380, "Member 'ABP_CauldronOfBlood_activate_C::BurstAsset' has a wrong offset!"); \ +static_assert(offsetof(ABP_CauldronOfBlood_activate_C, AttachComponent) == 0x000388, "Member 'ABP_CauldronOfBlood_activate_C::AttachComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassVelocityFragment \ +static_assert(alignof(FMassVelocityFragment) == 0x000008, "Wrong alignment on FMassVelocityFragment"); \ +static_assert(sizeof(FMassVelocityFragment) == 0x000018, "Wrong size on FMassVelocityFragment"); \ + +#define DUMPER7_ASSERTS_FMassForceFragment \ +static_assert(alignof(FMassForceFragment) == 0x000008, "Wrong alignment on FMassForceFragment"); \ +static_assert(sizeof(FMassForceFragment) == 0x000018, "Wrong size on FMassForceFragment"); \ + +#define DUMPER7_ASSERTS_FMassMovementStyleRef \ +static_assert(alignof(FMassMovementStyleRef) == 0x000004, "Wrong alignment on FMassMovementStyleRef"); \ +static_assert(sizeof(FMassMovementStyleRef) == 0x000018, "Wrong size on FMassMovementStyleRef"); \ +static_assert(offsetof(FMassMovementStyleRef, Name) == 0x000000, "Member 'FMassMovementStyleRef::Name' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementStyleRef, ID) == 0x000008, "Member 'FMassMovementStyleRef::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassMovementStyleSpeedParameters \ +static_assert(alignof(FMassMovementStyleSpeedParameters) == 0x000004, "Wrong alignment on FMassMovementStyleSpeedParameters"); \ +static_assert(sizeof(FMassMovementStyleSpeedParameters) == 0x000010, "Wrong size on FMassMovementStyleSpeedParameters"); \ +static_assert(offsetof(FMassMovementStyleSpeedParameters, Speed) == 0x000000, "Member 'FMassMovementStyleSpeedParameters::Speed' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementStyleSpeedParameters, Variance) == 0x000004, "Member 'FMassMovementStyleSpeedParameters::Variance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementStyleSpeedParameters, Probability) == 0x000008, "Member 'FMassMovementStyleSpeedParameters::Probability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassMovementStyleParameters \ +static_assert(alignof(FMassMovementStyleParameters) == 0x000008, "Wrong alignment on FMassMovementStyleParameters"); \ +static_assert(sizeof(FMassMovementStyleParameters) == 0x000028, "Wrong size on FMassMovementStyleParameters"); \ +static_assert(offsetof(FMassMovementStyleParameters, Style) == 0x000000, "Member 'FMassMovementStyleParameters::Style' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementStyleParameters, DesiredSpeeds) == 0x000018, "Member 'FMassMovementStyleParameters::DesiredSpeeds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassMovementParameters \ +static_assert(alignof(FMassMovementParameters) == 0x000008, "Wrong alignment on FMassMovementParameters"); \ +static_assert(sizeof(FMassMovementParameters) == 0x000028, "Wrong size on FMassMovementParameters"); \ +static_assert(offsetof(FMassMovementParameters, MaxSpeed) == 0x000000, "Member 'FMassMovementParameters::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementParameters, MaxAcceleration) == 0x000004, "Member 'FMassMovementParameters::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementParameters, DefaultDesiredSpeed) == 0x000008, "Member 'FMassMovementParameters::DefaultDesiredSpeed' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementParameters, DefaultDesiredSpeedVariance) == 0x00000C, "Member 'FMassMovementParameters::DefaultDesiredSpeedVariance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementParameters, HeightSmoothingTime) == 0x000010, "Member 'FMassMovementParameters::HeightSmoothingTime' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementParameters, MovementStyles) == 0x000018, "Member 'FMassMovementParameters::MovementStyles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassMovementStyle \ +static_assert(alignof(FMassMovementStyle) == 0x000004, "Wrong alignment on FMassMovementStyle"); \ +static_assert(sizeof(FMassMovementStyle) == 0x000018, "Wrong size on FMassMovementStyle"); \ +static_assert(offsetof(FMassMovementStyle, Name) == 0x000000, "Member 'FMassMovementStyle::Name' has a wrong offset!"); \ +static_assert(offsetof(FMassMovementStyle, ID) == 0x000008, "Member 'FMassMovementStyle::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSimpleMovementTag \ +static_assert(alignof(FMassSimpleMovementTag) == 0x000001, "Wrong alignment on FMassSimpleMovementTag"); \ +static_assert(sizeof(FMassSimpleMovementTag) == 0x000001, "Wrong size on FMassSimpleMovementTag"); \ + +#define DUMPER7_ASSERTS_UMassApplyMovementProcessor \ +static_assert(alignof(UMassApplyMovementProcessor) == 0x000008, "Wrong alignment on UMassApplyMovementProcessor"); \ +static_assert(sizeof(UMassApplyMovementProcessor) == 0x000360, "Wrong size on UMassApplyMovementProcessor"); \ + +#define DUMPER7_ASSERTS_UMassMovementSettings \ +static_assert(alignof(UMassMovementSettings) == 0x000008, "Wrong alignment on UMassMovementSettings"); \ +static_assert(sizeof(UMassMovementSettings) == 0x000038, "Wrong size on UMassMovementSettings"); \ +static_assert(offsetof(UMassMovementSettings, MovementStyles) == 0x000028, "Member 'UMassMovementSettings::MovementStyles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassMovementTrait \ +static_assert(alignof(UMassMovementTrait) == 0x000008, "Wrong alignment on UMassMovementTrait"); \ +static_assert(sizeof(UMassMovementTrait) == 0x000050, "Wrong size on UMassMovementTrait"); \ +static_assert(offsetof(UMassMovementTrait, Movement) == 0x000028, "Member 'UMassMovementTrait::Movement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSimpleMovementTrait \ +static_assert(alignof(UMassSimpleMovementTrait) == 0x000008, "Wrong alignment on UMassSimpleMovementTrait"); \ +static_assert(sizeof(UMassSimpleMovementTrait) == 0x000028, "Wrong size on UMassSimpleMovementTrait"); \ + +#define DUMPER7_ASSERTS_UMassSimpleMovementProcessor \ +static_assert(alignof(UMassSimpleMovementProcessor) == 0x000008, "Wrong alignment on UMassSimpleMovementProcessor"); \ +static_assert(sizeof(UMassSimpleMovementProcessor) == 0x000360, "Wrong size on UMassSimpleMovementProcessor"); \ + +#define DUMPER7_ASSERTS_UMassVelocityRandomizerTrait \ +static_assert(alignof(UMassVelocityRandomizerTrait) == 0x000008, "Wrong alignment on UMassVelocityRandomizerTrait"); \ +static_assert(sizeof(UMassVelocityRandomizerTrait) == 0x000038, "Wrong size on UMassVelocityRandomizerTrait"); \ +static_assert(offsetof(UMassVelocityRandomizerTrait, MinSpeed) == 0x000028, "Member 'UMassVelocityRandomizerTrait::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(UMassVelocityRandomizerTrait, MaxSpeed) == 0x00002C, "Member 'UMassVelocityRandomizerTrait::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UMassVelocityRandomizerTrait, bSetZComponent) == 0x000030, "Member 'UMassVelocityRandomizerTrait::bSetZComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassRandomVelocityInitializer \ +static_assert(alignof(UMassRandomVelocityInitializer) == 0x000008, "Wrong alignment on UMassRandomVelocityInitializer"); \ +static_assert(sizeof(UMassRandomVelocityInitializer) == 0x000380, "Wrong size on UMassRandomVelocityInitializer"); \ +static_assert(offsetof(UMassRandomVelocityInitializer, MinSpeed) == 0x000370, "Member 'UMassRandomVelocityInitializer::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(UMassRandomVelocityInitializer, MaxSpeed) == 0x000374, "Member 'UMassRandomVelocityInitializer::MaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UMassRandomVelocityInitializer, bSetZComponent) == 0x000378, "Member 'UMassRandomVelocityInitializer::bSetZComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassReplicatedAgentHandle \ +static_assert(alignof(FMassReplicatedAgentHandle) == 0x000002, "Wrong alignment on FMassReplicatedAgentHandle"); \ +static_assert(sizeof(FMassReplicatedAgentHandle) == 0x000004, "Wrong size on FMassReplicatedAgentHandle"); \ + +#define DUMPER7_ASSERTS_FMassFastArrayItemBase \ +static_assert(alignof(FMassFastArrayItemBase) == 0x000004, "Wrong alignment on FMassFastArrayItemBase"); \ +static_assert(sizeof(FMassFastArrayItemBase) == 0x000010, "Wrong size on FMassFastArrayItemBase"); \ +static_assert(offsetof(FMassFastArrayItemBase, Handle) == 0x00000C, "Member 'FMassFastArrayItemBase::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassClientBubbleSerializerBase \ +static_assert(alignof(FMassClientBubbleSerializerBase) == 0x000008, "Wrong alignment on FMassClientBubbleSerializerBase"); \ +static_assert(sizeof(FMassClientBubbleSerializerBase) == 0x000138, "Wrong size on FMassClientBubbleSerializerBase"); \ +static_assert(offsetof(FMassClientBubbleSerializerBase, World) == 0x000108, "Member 'FMassClientBubbleSerializerBase::World' has a wrong offset!"); \ +static_assert(offsetof(FMassClientBubbleSerializerBase, SpawnerSubsystem) == 0x000110, "Member 'FMassClientBubbleSerializerBase::SpawnerSubsystem' has a wrong offset!"); \ +static_assert(offsetof(FMassClientBubbleSerializerBase, ReplicationSubsystem) == 0x000128, "Member 'FMassClientBubbleSerializerBase::ReplicationSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassNetworkIDFragment \ +static_assert(alignof(FMassNetworkIDFragment) == 0x000004, "Wrong alignment on FMassNetworkIDFragment"); \ +static_assert(sizeof(FMassNetworkIDFragment) == 0x000004, "Wrong size on FMassNetworkIDFragment"); \ + +#define DUMPER7_ASSERTS_FMassReplicatedAgentFragment \ +static_assert(alignof(FMassReplicatedAgentFragment) == 0x000008, "Wrong alignment on FMassReplicatedAgentFragment"); \ +static_assert(sizeof(FMassReplicatedAgentFragment) == 0x000018, "Wrong size on FMassReplicatedAgentFragment"); \ + +#define DUMPER7_ASSERTS_FMassReplicationViewerInfoFragment \ +static_assert(alignof(FMassReplicationViewerInfoFragment) == 0x000008, "Wrong alignment on FMassReplicationViewerInfoFragment"); \ +static_assert(sizeof(FMassReplicationViewerInfoFragment) == 0x000018, "Wrong size on FMassReplicationViewerInfoFragment"); \ + +#define DUMPER7_ASSERTS_FMassReplicationLODFragment \ +static_assert(alignof(FMassReplicationLODFragment) == 0x000001, "Wrong alignment on FMassReplicationLODFragment"); \ +static_assert(sizeof(FMassReplicationLODFragment) == 0x000002, "Wrong size on FMassReplicationLODFragment"); \ + +#define DUMPER7_ASSERTS_FMassReplicationParameters \ +static_assert(alignof(FMassReplicationParameters) == 0x000008, "Wrong alignment on FMassReplicationParameters"); \ +static_assert(sizeof(FMassReplicationParameters) == 0x000058, "Wrong size on FMassReplicationParameters"); \ +static_assert(offsetof(FMassReplicationParameters, LODDistance) == 0x000000, "Member 'FMassReplicationParameters::LODDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, BufferHysteresisOnDistancePercentage) == 0x000010, "Member 'FMassReplicationParameters::BufferHysteresisOnDistancePercentage' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, LODMaxCount) == 0x000014, "Member 'FMassReplicationParameters::LODMaxCount' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, LODMaxCountPerViewer) == 0x000024, "Member 'FMassReplicationParameters::LODMaxCountPerViewer' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, UpdateInterval) == 0x000034, "Member 'FMassReplicationParameters::UpdateInterval' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, BubbleInfoClass) == 0x000048, "Member 'FMassReplicationParameters::BubbleInfoClass' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationParameters, ReplicatorClass) == 0x000050, "Member 'FMassReplicationParameters::ReplicatorClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassReplicationSharedFragment \ +static_assert(alignof(FMassReplicationSharedFragment) == 0x000010, "Wrong alignment on FMassReplicationSharedFragment"); \ +static_assert(sizeof(FMassReplicationSharedFragment) == 0x002310, "Wrong size on FMassReplicationSharedFragment"); \ +static_assert(offsetof(FMassReplicationSharedFragment, BubbleInfos) == 0x000020, "Member 'FMassReplicationSharedFragment::BubbleInfos' has a wrong offset!"); \ +static_assert(offsetof(FMassReplicationSharedFragment, CachedReplicator) == 0x002300, "Member 'FMassReplicationSharedFragment::CachedReplicator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassReplicationGridCellLocationFragment \ +static_assert(alignof(FMassReplicationGridCellLocationFragment) == 0x000004, "Wrong alignment on FMassReplicationGridCellLocationFragment"); \ +static_assert(sizeof(FMassReplicationGridCellLocationFragment) == 0x00000C, "Wrong size on FMassReplicationGridCellLocationFragment"); \ + +#define DUMPER7_ASSERTS_FMassInReplicationGridTag \ +static_assert(alignof(FMassInReplicationGridTag) == 0x000001, "Wrong alignment on FMassInReplicationGridTag"); \ +static_assert(sizeof(FMassInReplicationGridTag) == 0x000001, "Wrong size on FMassInReplicationGridTag"); \ + +#define DUMPER7_ASSERTS_FMassClientBubbleInfoData \ +static_assert(alignof(FMassClientBubbleInfoData) == 0x000008, "Wrong alignment on FMassClientBubbleInfoData"); \ +static_assert(sizeof(FMassClientBubbleInfoData) == 0x000018, "Wrong size on FMassClientBubbleInfoData"); \ +static_assert(offsetof(FMassClientBubbleInfoData, Bubbles) == 0x000000, "Member 'FMassClientBubbleInfoData::Bubbles' has a wrong offset!"); \ +static_assert(offsetof(FMassClientBubbleInfoData, BubbleClass) == 0x000010, "Member 'FMassClientBubbleInfoData::BubbleClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedAgentPositionYawData \ +static_assert(alignof(FReplicatedAgentPositionYawData) == 0x000008, "Wrong alignment on FReplicatedAgentPositionYawData"); \ +static_assert(sizeof(FReplicatedAgentPositionYawData) == 0x000020, "Wrong size on FReplicatedAgentPositionYawData"); \ +static_assert(offsetof(FReplicatedAgentPositionYawData, Position) == 0x000000, "Member 'FReplicatedAgentPositionYawData::Position' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPositionYawData, Yaw) == 0x000018, "Member 'FReplicatedAgentPositionYawData::Yaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassClientHandle \ +static_assert(alignof(FMassClientHandle) == 0x000004, "Wrong alignment on FMassClientHandle"); \ +static_assert(sizeof(FMassClientHandle) == 0x000008, "Wrong size on FMassClientHandle"); \ + +#define DUMPER7_ASSERTS_FMassBubbleInfoClassHandle \ +static_assert(alignof(FMassBubbleInfoClassHandle) == 0x000004, "Wrong alignment on FMassBubbleInfoClassHandle"); \ +static_assert(sizeof(FMassBubbleInfoClassHandle) == 0x000004, "Wrong size on FMassBubbleInfoClassHandle"); \ + +#define DUMPER7_ASSERTS_FReplicatedAgentBase \ +static_assert(alignof(FReplicatedAgentBase) == 0x000008, "Wrong alignment on FReplicatedAgentBase"); \ +static_assert(sizeof(FReplicatedAgentBase) == 0x000028, "Wrong size on FReplicatedAgentBase"); \ +static_assert(offsetof(FReplicatedAgentBase, NetID) == 0x000000, "Member 'FReplicatedAgentBase::NetID' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentBase, TemplateID) == 0x000008, "Member 'FReplicatedAgentBase::TemplateID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMassClientBubbleInfoBase \ +static_assert(alignof(AMassClientBubbleInfoBase) == 0x000008, "Wrong alignment on AMassClientBubbleInfoBase"); \ +static_assert(sizeof(AMassClientBubbleInfoBase) == 0x0002B0, "Wrong size on AMassClientBubbleInfoBase"); \ + +#define DUMPER7_ASSERTS_UMassNetworkIDFragmentInitializer \ +static_assert(alignof(UMassNetworkIDFragmentInitializer) == 0x000008, "Wrong alignment on UMassNetworkIDFragmentInitializer"); \ +static_assert(sizeof(UMassNetworkIDFragmentInitializer) == 0x000370, "Wrong size on UMassNetworkIDFragmentInitializer"); \ + +#define DUMPER7_ASSERTS_UMassReplicationGridProcessor \ +static_assert(alignof(UMassReplicationGridProcessor) == 0x000008, "Wrong alignment on UMassReplicationGridProcessor"); \ +static_assert(sizeof(UMassReplicationGridProcessor) == 0x0008A0, "Wrong size on UMassReplicationGridProcessor"); \ + +#define DUMPER7_ASSERTS_UMassReplicationGridRemoverProcessor \ +static_assert(alignof(UMassReplicationGridRemoverProcessor) == 0x000008, "Wrong alignment on UMassReplicationGridRemoverProcessor"); \ +static_assert(sizeof(UMassReplicationGridRemoverProcessor) == 0x000370, "Wrong size on UMassReplicationGridRemoverProcessor"); \ + +#define DUMPER7_ASSERTS_UMassReplicationProcessor \ +static_assert(alignof(UMassReplicationProcessor) == 0x000010, "Wrong alignment on UMassReplicationProcessor"); \ +static_assert(sizeof(UMassReplicationProcessor) == 0x000DE0, "Wrong size on UMassReplicationProcessor"); \ +static_assert(offsetof(UMassReplicationProcessor, ReplicationSubsystem) == 0x0000B8, "Member 'UMassReplicationProcessor::ReplicationSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassReplicatorBase \ +static_assert(alignof(UMassReplicatorBase) == 0x000008, "Wrong alignment on UMassReplicatorBase"); \ +static_assert(sizeof(UMassReplicatorBase) == 0x000028, "Wrong size on UMassReplicatorBase"); \ + +#define DUMPER7_ASSERTS_UMassReplicationSettings \ +static_assert(alignof(UMassReplicationSettings) == 0x000008, "Wrong alignment on UMassReplicationSettings"); \ +static_assert(sizeof(UMassReplicationSettings) == 0x000030, "Wrong size on UMassReplicationSettings"); \ +static_assert(offsetof(UMassReplicationSettings, ReplicationGridCellSize) == 0x000028, "Member 'UMassReplicationSettings::ReplicationGridCellSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassReplicationSubsystem \ +static_assert(alignof(UMassReplicationSubsystem) == 0x000008, "Wrong alignment on UMassReplicationSubsystem"); \ +static_assert(sizeof(UMassReplicationSubsystem) == 0x0001E0, "Wrong size on UMassReplicationSubsystem"); \ +static_assert(offsetof(UMassReplicationSubsystem, BubbleInfoArray) == 0x000060, "Member 'UMassReplicationSubsystem::BubbleInfoArray' has a wrong offset!"); \ +static_assert(offsetof(UMassReplicationSubsystem, World) == 0x0000A0, "Member 'UMassReplicationSubsystem::World' has a wrong offset!"); \ +static_assert(offsetof(UMassReplicationSubsystem, MassLODSubsystem) == 0x0000A8, "Member 'UMassReplicationSubsystem::MassLODSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassReplicationTrait \ +static_assert(alignof(UMassReplicationTrait) == 0x000008, "Wrong alignment on UMassReplicationTrait"); \ +static_assert(sizeof(UMassReplicationTrait) == 0x000080, "Wrong size on UMassReplicationTrait"); \ +static_assert(offsetof(UMassReplicationTrait, Params_0) == 0x000028, "Member 'UMassReplicationTrait::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_CheckPath_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_CheckPath_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_CheckPath_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_CheckPath_C_GetScore) == 0x000048, "Wrong size on BP_WrestlerTaskScore_CheckPath_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_GetBlackboard_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_MakeLiteralName_ReturnValue) == 0x000024, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_GetValueAsFloat_ReturnValue) == 0x00002C, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_GetValueAsFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_MakeLiteralName_ReturnValue_1) == 0x000034, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_MakeLiteralName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_GetValueAsBool_ReturnValue) == 0x00003C, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_GetValueAsBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_CheckPath_C_GetScore, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'BP_WrestlerTaskScore_CheckPath_C_GetScore::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_CheckPath_C \ +static_assert(alignof(UBP_WrestlerTaskScore_CheckPath_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_CheckPath_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_CheckPath_C) == 0x000038, "Wrong size on UBP_WrestlerTaskScore_CheckPath_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_CheckPath_C, MinDuration) == 0x000030, "Member 'UBP_WrestlerTaskScore_CheckPath_C::MinDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassActorSpawnRequestHandle \ +static_assert(alignof(FMassActorSpawnRequestHandle) == 0x000004, "Wrong alignment on FMassActorSpawnRequestHandle"); \ +static_assert(sizeof(FMassActorSpawnRequestHandle) == 0x000008, "Wrong size on FMassActorSpawnRequestHandle"); \ + +#define DUMPER7_ASSERTS_FMassActorSpawnRequest \ +static_assert(alignof(FMassActorSpawnRequest) == 0x000010, "Wrong alignment on FMassActorSpawnRequest"); \ +static_assert(sizeof(FMassActorSpawnRequest) == 0x0000C0, "Wrong size on FMassActorSpawnRequest"); \ +static_assert(offsetof(FMassActorSpawnRequest, Template) == 0x000008, "Member 'FMassActorSpawnRequest::Template' has a wrong offset!"); \ +static_assert(offsetof(FMassActorSpawnRequest, SpawnedActor) == 0x0000A0, "Member 'FMassActorSpawnRequest::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassActorFragment \ +static_assert(alignof(FMassActorFragment) == 0x000004, "Wrong alignment on FMassActorFragment"); \ +static_assert(sizeof(FMassActorFragment) == 0x00000C, "Wrong size on FMassActorFragment"); \ +static_assert(offsetof(FMassActorFragment, Actor) == 0x000000, "Member 'FMassActorFragment::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassAgentInitializationQueue \ +static_assert(alignof(FMassAgentInitializationQueue) == 0x000008, "Wrong alignment on FMassAgentInitializationQueue"); \ +static_assert(sizeof(FMassAgentInitializationQueue) == 0x000010, "Wrong size on FMassAgentInitializationQueue"); \ +static_assert(offsetof(FMassAgentInitializationQueue, AgentComponents) == 0x000000, "Member 'FMassAgentInitializationQueue::AgentComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCapsuleComponentWrapperFragment \ +static_assert(alignof(FCapsuleComponentWrapperFragment) == 0x000004, "Wrong alignment on FCapsuleComponentWrapperFragment"); \ +static_assert(sizeof(FCapsuleComponentWrapperFragment) == 0x000008, "Wrong size on FCapsuleComponentWrapperFragment"); \ + +#define DUMPER7_ASSERTS_FMassCapsuleTransformCopyToMassTag \ +static_assert(alignof(FMassCapsuleTransformCopyToMassTag) == 0x000001, "Wrong alignment on FMassCapsuleTransformCopyToMassTag"); \ +static_assert(sizeof(FMassCapsuleTransformCopyToMassTag) == 0x000001, "Wrong size on FMassCapsuleTransformCopyToMassTag"); \ + +#define DUMPER7_ASSERTS_FMassCapsuleTransformCopyToActorTag \ +static_assert(alignof(FMassCapsuleTransformCopyToActorTag) == 0x000001, "Wrong alignment on FMassCapsuleTransformCopyToActorTag"); \ +static_assert(sizeof(FMassCapsuleTransformCopyToActorTag) == 0x000001, "Wrong size on FMassCapsuleTransformCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FCharacterMovementComponentWrapperFragment \ +static_assert(alignof(FCharacterMovementComponentWrapperFragment) == 0x000004, "Wrong alignment on FCharacterMovementComponentWrapperFragment"); \ +static_assert(sizeof(FCharacterMovementComponentWrapperFragment) == 0x000008, "Wrong size on FCharacterMovementComponentWrapperFragment"); \ + +#define DUMPER7_ASSERTS_FMassCharacterMovementCopyToMassTag \ +static_assert(alignof(FMassCharacterMovementCopyToMassTag) == 0x000001, "Wrong alignment on FMassCharacterMovementCopyToMassTag"); \ +static_assert(sizeof(FMassCharacterMovementCopyToMassTag) == 0x000001, "Wrong size on FMassCharacterMovementCopyToMassTag"); \ + +#define DUMPER7_ASSERTS_FMassCharacterMovementCopyToActorTag \ +static_assert(alignof(FMassCharacterMovementCopyToActorTag) == 0x000001, "Wrong alignment on FMassCharacterMovementCopyToActorTag"); \ +static_assert(sizeof(FMassCharacterMovementCopyToActorTag) == 0x000001, "Wrong size on FMassCharacterMovementCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FMassCharacterOrientationCopyToMassTag \ +static_assert(alignof(FMassCharacterOrientationCopyToMassTag) == 0x000001, "Wrong alignment on FMassCharacterOrientationCopyToMassTag"); \ +static_assert(sizeof(FMassCharacterOrientationCopyToMassTag) == 0x000001, "Wrong size on FMassCharacterOrientationCopyToMassTag"); \ + +#define DUMPER7_ASSERTS_FMassCharacterOrientationCopyToActorTag \ +static_assert(alignof(FMassCharacterOrientationCopyToActorTag) == 0x000001, "Wrong alignment on FMassCharacterOrientationCopyToActorTag"); \ +static_assert(sizeof(FMassCharacterOrientationCopyToActorTag) == 0x000001, "Wrong size on FMassCharacterOrientationCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FMassSceneComponentWrapperFragment \ +static_assert(alignof(FMassSceneComponentWrapperFragment) == 0x000004, "Wrong alignment on FMassSceneComponentWrapperFragment"); \ +static_assert(sizeof(FMassSceneComponentWrapperFragment) == 0x000008, "Wrong size on FMassSceneComponentWrapperFragment"); \ + +#define DUMPER7_ASSERTS_FMassSceneComponentLocationCopyToMassTag \ +static_assert(alignof(FMassSceneComponentLocationCopyToMassTag) == 0x000001, "Wrong alignment on FMassSceneComponentLocationCopyToMassTag"); \ +static_assert(sizeof(FMassSceneComponentLocationCopyToMassTag) == 0x000001, "Wrong size on FMassSceneComponentLocationCopyToMassTag"); \ + +#define DUMPER7_ASSERTS_FMassSceneComponentLocationCopyToActorTag \ +static_assert(alignof(FMassSceneComponentLocationCopyToActorTag) == 0x000001, "Wrong alignment on FMassSceneComponentLocationCopyToActorTag"); \ +static_assert(sizeof(FMassSceneComponentLocationCopyToActorTag) == 0x000001, "Wrong size on FMassSceneComponentLocationCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FDataFragment_BehaviorTreeComponentWrapper \ +static_assert(alignof(FDataFragment_BehaviorTreeComponentWrapper) == 0x000004, "Wrong alignment on FDataFragment_BehaviorTreeComponentWrapper"); \ +static_assert(sizeof(FDataFragment_BehaviorTreeComponentWrapper) == 0x000008, "Wrong size on FDataFragment_BehaviorTreeComponentWrapper"); \ + +#define DUMPER7_ASSERTS_MassActorPoolableInterface_CanBePooled \ +static_assert(alignof(MassActorPoolableInterface_CanBePooled) == 0x000001, "Wrong alignment on MassActorPoolableInterface_CanBePooled"); \ +static_assert(sizeof(MassActorPoolableInterface_CanBePooled) == 0x000001, "Wrong size on MassActorPoolableInterface_CanBePooled"); \ +static_assert(offsetof(MassActorPoolableInterface_CanBePooled, ReturnValue) == 0x000000, "Member 'MassActorPoolableInterface_CanBePooled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMassActorPoolableInterface \ +static_assert(alignof(IMassActorPoolableInterface) == 0x000001, "Wrong alignment on IMassActorPoolableInterface"); \ +static_assert(sizeof(IMassActorPoolableInterface) == 0x000001, "Wrong size on IMassActorPoolableInterface"); \ + +#define DUMPER7_ASSERTS_UMassActorSpawnerSubsystem \ +static_assert(alignof(UMassActorSpawnerSubsystem) == 0x000008, "Wrong alignment on UMassActorSpawnerSubsystem"); \ +static_assert(sizeof(UMassActorSpawnerSubsystem) == 0x0000E8, "Wrong size on UMassActorSpawnerSubsystem"); \ +static_assert(offsetof(UMassActorSpawnerSubsystem, SpawnRequests) == 0x000030, "Member 'UMassActorSpawnerSubsystem::SpawnRequests' has a wrong offset!"); \ +static_assert(offsetof(UMassActorSpawnerSubsystem, ActorsToDestroy) == 0x000040, "Member 'UMassActorSpawnerSubsystem::ActorsToDestroy' has a wrong offset!"); \ +static_assert(offsetof(UMassActorSpawnerSubsystem, DeactivatedActorsToDestroy) == 0x000050, "Member 'UMassActorSpawnerSubsystem::DeactivatedActorsToDestroy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassActorSubsystem \ +static_assert(alignof(UMassActorSubsystem) == 0x000008, "Wrong alignment on UMassActorSubsystem"); \ +static_assert(sizeof(UMassActorSubsystem) == 0x000040, "Wrong size on UMassActorSubsystem"); \ + +#define DUMPER7_ASSERTS_MassAgentComponent_KillEntity \ +static_assert(alignof(MassAgentComponent_KillEntity) == 0x000001, "Wrong alignment on MassAgentComponent_KillEntity"); \ +static_assert(sizeof(MassAgentComponent_KillEntity) == 0x000001, "Wrong size on MassAgentComponent_KillEntity"); \ +static_assert(offsetof(MassAgentComponent_KillEntity, bDestroyActor) == 0x000000, "Member 'MassAgentComponent_KillEntity::bDestroyActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassAgentComponent \ +static_assert(alignof(UMassAgentComponent) == 0x000008, "Wrong alignment on UMassAgentComponent"); \ +static_assert(sizeof(UMassAgentComponent) == 0x000180, "Wrong size on UMassAgentComponent"); \ +static_assert(offsetof(UMassAgentComponent, EntityConfig) == 0x000120, "Member 'UMassAgentComponent::EntityConfig' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentComponent, NetID) == 0x00017C, "Member 'UMassAgentComponent::NetID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassAgentSubsystem \ +static_assert(alignof(UMassAgentSubsystem) == 0x000008, "Wrong alignment on UMassAgentSubsystem"); \ +static_assert(sizeof(UMassAgentSubsystem) == 0x000178, "Wrong size on UMassAgentSubsystem"); \ +static_assert(offsetof(UMassAgentSubsystem, SpawnerSystem) == 0x000040, "Member 'UMassAgentSubsystem::SpawnerSystem' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentSubsystem, SimulationSystem) == 0x000048, "Member 'UMassAgentSubsystem::SimulationSystem' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentSubsystem, PendingAgentEntities) == 0x000050, "Member 'UMassAgentSubsystem::PendingAgentEntities' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentSubsystem, PendingPuppets) == 0x0000A0, "Member 'UMassAgentSubsystem::PendingPuppets' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentSubsystem, ReplicationSubsystem) == 0x0000F0, "Member 'UMassAgentSubsystem::ReplicationSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassAgentSubsystem, ReplicatedAgentComponents) == 0x0000F8, "Member 'UMassAgentSubsystem::ReplicatedAgentComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassAgentSyncTrait \ +static_assert(alignof(UMassAgentSyncTrait) == 0x000008, "Wrong alignment on UMassAgentSyncTrait"); \ +static_assert(sizeof(UMassAgentSyncTrait) == 0x000030, "Wrong size on UMassAgentSyncTrait"); \ +static_assert(offsetof(UMassAgentSyncTrait, SyncDirection) == 0x000028, "Member 'UMassAgentSyncTrait::SyncDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassAgentCapsuleCollisionSyncTrait \ +static_assert(alignof(UMassAgentCapsuleCollisionSyncTrait) == 0x000008, "Wrong alignment on UMassAgentCapsuleCollisionSyncTrait"); \ +static_assert(sizeof(UMassAgentCapsuleCollisionSyncTrait) == 0x000038, "Wrong size on UMassAgentCapsuleCollisionSyncTrait"); \ +static_assert(offsetof(UMassAgentCapsuleCollisionSyncTrait, bSyncTransform) == 0x000030, "Member 'UMassAgentCapsuleCollisionSyncTrait::bSyncTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassAgentMovementSyncTrait \ +static_assert(alignof(UMassAgentMovementSyncTrait) == 0x000008, "Wrong alignment on UMassAgentMovementSyncTrait"); \ +static_assert(sizeof(UMassAgentMovementSyncTrait) == 0x000030, "Wrong size on UMassAgentMovementSyncTrait"); \ + +#define DUMPER7_ASSERTS_UMassCharacterOrientationToActorTranslator \ +static_assert(alignof(UMassCharacterOrientationToActorTranslator) == 0x000008, "Wrong alignment on UMassCharacterOrientationToActorTranslator"); \ +static_assert(sizeof(UMassCharacterOrientationToActorTranslator) == 0x000380, "Wrong size on UMassCharacterOrientationToActorTranslator"); \ + +#define DUMPER7_ASSERTS_UMassAgentOrientationSyncTrait \ +static_assert(alignof(UMassAgentOrientationSyncTrait) == 0x000008, "Wrong alignment on UMassAgentOrientationSyncTrait"); \ +static_assert(sizeof(UMassAgentOrientationSyncTrait) == 0x000030, "Wrong size on UMassAgentOrientationSyncTrait"); \ + +#define DUMPER7_ASSERTS_UMassAgentFeetLocationSyncTrait \ +static_assert(alignof(UMassAgentFeetLocationSyncTrait) == 0x000008, "Wrong alignment on UMassAgentFeetLocationSyncTrait"); \ +static_assert(sizeof(UMassAgentFeetLocationSyncTrait) == 0x000030, "Wrong size on UMassAgentFeetLocationSyncTrait"); \ + +#define DUMPER7_ASSERTS_UMassCapsuleTransformToMassTranslator \ +static_assert(alignof(UMassCapsuleTransformToMassTranslator) == 0x000008, "Wrong alignment on UMassCapsuleTransformToMassTranslator"); \ +static_assert(sizeof(UMassCapsuleTransformToMassTranslator) == 0x000380, "Wrong size on UMassCapsuleTransformToMassTranslator"); \ + +#define DUMPER7_ASSERTS_UMassTransformToActorCapsuleTranslator \ +static_assert(alignof(UMassTransformToActorCapsuleTranslator) == 0x000008, "Wrong alignment on UMassTransformToActorCapsuleTranslator"); \ +static_assert(sizeof(UMassTransformToActorCapsuleTranslator) == 0x000380, "Wrong size on UMassTransformToActorCapsuleTranslator"); \ + +#define DUMPER7_ASSERTS_UMassCharacterMovementToMassTranslator \ +static_assert(alignof(UMassCharacterMovementToMassTranslator) == 0x000008, "Wrong alignment on UMassCharacterMovementToMassTranslator"); \ +static_assert(sizeof(UMassCharacterMovementToMassTranslator) == 0x000380, "Wrong size on UMassCharacterMovementToMassTranslator"); \ + +#define DUMPER7_ASSERTS_UMassCharacterMovementToActorTranslator \ +static_assert(alignof(UMassCharacterMovementToActorTranslator) == 0x000008, "Wrong alignment on UMassCharacterMovementToActorTranslator"); \ +static_assert(sizeof(UMassCharacterMovementToActorTranslator) == 0x000380, "Wrong size on UMassCharacterMovementToActorTranslator"); \ + +#define DUMPER7_ASSERTS_UMassCharacterOrientationToMassTranslator \ +static_assert(alignof(UMassCharacterOrientationToMassTranslator) == 0x000008, "Wrong alignment on UMassCharacterOrientationToMassTranslator"); \ +static_assert(sizeof(UMassCharacterOrientationToMassTranslator) == 0x000380, "Wrong size on UMassCharacterOrientationToMassTranslator"); \ + +#define DUMPER7_ASSERTS_UMassSceneComponentLocationToMassTranslator \ +static_assert(alignof(UMassSceneComponentLocationToMassTranslator) == 0x000008, "Wrong alignment on UMassSceneComponentLocationToMassTranslator"); \ +static_assert(sizeof(UMassSceneComponentLocationToMassTranslator) == 0x000380, "Wrong size on UMassSceneComponentLocationToMassTranslator"); \ + +#define DUMPER7_ASSERTS_UMassSceneComponentLocationToActorTranslator \ +static_assert(alignof(UMassSceneComponentLocationToActorTranslator) == 0x000008, "Wrong alignment on UMassSceneComponentLocationToActorTranslator"); \ +static_assert(sizeof(UMassSceneComponentLocationToActorTranslator) == 0x000380, "Wrong size on UMassSceneComponentLocationToActorTranslator"); \ + +#define DUMPER7_ASSERTS_UMassTranslator_BehaviorTree \ +static_assert(alignof(UMassTranslator_BehaviorTree) == 0x000008, "Wrong alignment on UMassTranslator_BehaviorTree"); \ +static_assert(sizeof(UMassTranslator_BehaviorTree) == 0x000380, "Wrong size on UMassTranslator_BehaviorTree"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_CanInteract \ +static_assert(alignof(BP_SearchLight_C_CanInteract) == 0x000001, "Wrong alignment on BP_SearchLight_C_CanInteract"); \ +static_assert(sizeof(BP_SearchLight_C_CanInteract) == 0x000001, "Wrong size on BP_SearchLight_C_CanInteract"); \ +static_assert(offsetof(BP_SearchLight_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_CanPull \ +static_assert(alignof(BP_SearchLight_C_CanPull) == 0x000001, "Wrong alignment on BP_SearchLight_C_CanPull"); \ +static_assert(sizeof(BP_SearchLight_C_CanPull) == 0x000001, "Wrong size on BP_SearchLight_C_CanPull"); \ +static_assert(offsetof(BP_SearchLight_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_Check_Target_Visibility \ +static_assert(alignof(BP_SearchLight_C_Check_Target_Visibility) == 0x000008, "Wrong alignment on BP_SearchLight_C_Check_Target_Visibility"); \ +static_assert(sizeof(BP_SearchLight_C_Check_Target_Visibility) == 0x000050, "Wrong size on BP_SearchLight_C_Check_Target_Visibility"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, Visible) == 0x000000, "Member 'BP_SearchLight_C_Check_Target_Visibility::Visible' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, Temp_bool_Variable) == 0x000001, "Member 'BP_SearchLight_C_Check_Target_Visibility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_SearchLight_C_Check_Target_Visibility::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'BP_SearchLight_C_Check_Target_Visibility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_SearchLight_C_Check_Target_Visibility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000028, "Member 'BP_SearchLight_C_Check_Target_Visibility::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Check_Target_Visibility, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000048, "Member 'BP_SearchLight_C_Check_Target_Visibility::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_Determine_Actor_Validity \ +static_assert(alignof(BP_SearchLight_C_Determine_Actor_Validity) == 0x000008, "Wrong alignment on BP_SearchLight_C_Determine_Actor_Validity"); \ +static_assert(sizeof(BP_SearchLight_C_Determine_Actor_Validity) == 0x000058, "Wrong size on BP_SearchLight_C_Determine_Actor_Validity"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, Actor) == 0x000000, "Member 'BP_SearchLight_C_Determine_Actor_Validity::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, Return) == 0x000008, "Member 'BP_SearchLight_C_Determine_Actor_Validity::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, Temp_byte_Variable) == 0x000009, "Member 'BP_SearchLight_C_Determine_Actor_Validity::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'BP_SearchLight_C_Determine_Actor_Validity::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_SearchLight_C_Determine_Actor_Validity::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000021, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000028, "Member 'BP_SearchLight_C_Determine_Actor_Validity::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, K2Node_DynamicCast_bSuccess_1) == 0x000038, "Member 'BP_SearchLight_C_Determine_Actor_Validity::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_GetGameTeamId_ReturnValue) == 0x000039, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_Array_Find_ReturnValue) == 0x00003C, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_NotEqual_IntInt_ReturnValue) == 0x000044, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_Greater_IntInt_ReturnValue) == 0x000045, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_BooleanAND_ReturnValue) == 0x000046, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_GetPlayerPawn_ReturnValue) == 0x000048, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000050, "Member 'BP_SearchLight_C_Determine_Actor_Validity::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Determine_Actor_Validity, Temp_bool_Variable) == 0x000051, "Member 'BP_SearchLight_C_Determine_Actor_Validity::Temp_bool_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight \ +static_assert(alignof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight) == 0x000010, "Wrong alignment on BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight"); \ +static_assert(sizeof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight) == 0x0006E0, "Wrong size on BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, EntryPoint) == 0x000000, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, Temp_int_Variable) == 0x000004, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_CustomEvent_Target) == 0x000008, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_CustomEvent_Target' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_CustomEvent_TargetIsPlayer) == 0x000010, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_CustomEvent_TargetIsPlayer' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000048, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VSize_ReturnValue) == 0x000078, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000088, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_CreateDelegate_OutputDelegate) == 0x0000A0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000B0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Check_Target_Visibility_Visible) == 0x0000B8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Check_Target_Visibility_Visible' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsValid_ReturnValue_1) == 0x0000C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetLocationAtTime_ReturnValue) == 0x0000D8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetLocationAtTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000F0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000108, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000120, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000138, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsClosedLoop_ReturnValue) == 0x000150, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsClosedLoop_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, Temp_delegate_Variable) == 0x000154, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, Temp_delegate_Variable_1) == 0x000164, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsValid_ReturnValue_2) == 0x000174, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000178, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsValid_ReturnValue_3) == 0x000180, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_SwitchEnum_CmpSuccess) == 0x000181, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_Event_DeltaSeconds) == 0x000184, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_ReturnValue) == 0x000188, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x0001A0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x0001B8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_Event_Damage) == 0x0001C0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_Event_DamageType) == 0x0001C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_Event_InstigatedBy) == 0x0001D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_Event_DamageCauser) == 0x0001D8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x0001E0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000240, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000248, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_FinishSpawningActor_ReturnValue) == 0x000260, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetPlayerPawn_ReturnValue) == 0x000268, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000270, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000288, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0002A0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0002A8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetLocationAtTime_ReturnValue_1) == 0x0002C0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetLocationAtTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_ReturnValue_1) == 0x0002D8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_RandomUnitVector_ReturnValue) == 0x0002F0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000308, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000320, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000330, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_DynamicCast_bSuccess) == 0x000340, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x000348, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_DynamicCast_bSuccess_1) == 0x000358, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_IsValid_ReturnValue_4) == 0x000359, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_CustomEvent_Enemy) == 0x000360, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_CreateDelegate_OutputDelegate_1) == 0x000368, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentLocation_ReturnValue_2) == 0x000378, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000390, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetCameraLocation_ReturnValue) == 0x000398, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_ReturnValue_2) == 0x0003B0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0003C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_MakeArray_Array) == 0x0003D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_LineTraceSingle_OutHit) == 0x0003E0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_LineTraceSingle_ReturnValue) == 0x0004C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_K2_GetComponentToWorld_ReturnValue_1) == 0x0004D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_K2_GetComponentToWorld_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_bBlockingHit) == 0x000530, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_bInitialOverlap) == 0x000531, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_Time) == 0x000534, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_Distance) == 0x000538, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_Location) == 0x000540, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_ImpactPoint) == 0x000558, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_Normal) == 0x000570, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_ImpactNormal) == 0x000588, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_PhysMat) == 0x0005A0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_HitActor) == 0x0005A8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_HitComponent) == 0x0005B0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_HitBoneName) == 0x0005B8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_BoneName) == 0x0005C0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_HitItem) == 0x0005C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_ElementIndex) == 0x0005CC, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_FaceIndex) == 0x0005D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_TraceStart) == 0x0005D8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BreakHitResult_TraceEnd) == 0x0005F0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000608, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_MultiGate_FirstRun) == 0x000610, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_MultiGate_FirstRun' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_MultiGate_ScratchBool) == 0x000611, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_MultiGate_ScratchBool' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_MultiGate_ScratchIndex) == 0x000614, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_MultiGate_ScratchIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetCameraLocation_ReturnValue_1) == 0x000618, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetRotationDelta_Delta) == 0x000630, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetRotationDelta_Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000638, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000639, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Check_Target_Visibility_Visible_1) == 0x00063A, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Check_Target_Visibility_Visible_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000640, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetDistanceTo_ReturnValue) == 0x000648, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000650, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_MapRangeClamped_ReturnValue) == 0x000658, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000660, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BooleanAND_ReturnValue) == 0x000661, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BooleanAND_ReturnValue_1) == 0x000662, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_BooleanAND_ReturnValue_2) == 0x000663, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_DeltaTime_ImplicitCast) == 0x000664, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_DeltaTime_ImplicitCast_1) == 0x000668, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000670, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000678, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Delay_Duration_ImplicitCast) == 0x00067C, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_VInterpTo_DeltaTime_ImplicitCast_2) == 0x000680, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_VInterpTo_DeltaTime_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000688, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Delay_Duration_ImplicitCast_1) == 0x000690, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000698, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, K2Node_VariableSet_Delta_ImplicitCast) == 0x0006A0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::K2Node_VariableSet_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0006A8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_GetLocationAtTime_Time_ImplicitCast) == 0x0006B0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_GetLocationAtTime_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x0006B8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_SetIntensity_NewIntensity_ImplicitCast) == 0x0006C0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_SetIntensity_NewIntensity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0006C8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x0006D0, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight, CallFunc_SetActorTickInterval_TickInterval_ImplicitCast) == 0x0006D8, "Member 'BP_SearchLight_C_ExecuteUbergraph_BP_SearchLight::CallFunc_SetActorTickInterval_TickInterval_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_FaceTarget \ +static_assert(alignof(BP_SearchLight_C_FaceTarget) == 0x000008, "Wrong alignment on BP_SearchLight_C_FaceTarget"); \ +static_assert(sizeof(BP_SearchLight_C_FaceTarget) == 0x000118, "Wrong size on BP_SearchLight_C_FaceTarget"); \ +static_assert(offsetof(BP_SearchLight_C_FaceTarget, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_FaceTarget::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_FaceTarget, CallFunc_FindLookAtRotation_ReturnValue) == 0x000018, "Member 'BP_SearchLight_C_FaceTarget::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_FaceTarget, CallFunc_K2_SetWorldRotation_SweepHitResult) == 0x000030, "Member 'BP_SearchLight_C_FaceTarget::CallFunc_K2_SetWorldRotation_SweepHitResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_ForcedTargetSpawned \ +static_assert(alignof(BP_SearchLight_C_ForcedTargetSpawned) == 0x000008, "Wrong alignment on BP_SearchLight_C_ForcedTargetSpawned"); \ +static_assert(sizeof(BP_SearchLight_C_ForcedTargetSpawned) == 0x000008, "Wrong size on BP_SearchLight_C_ForcedTargetSpawned"); \ +static_assert(offsetof(BP_SearchLight_C_ForcedTargetSpawned, Enemy) == 0x000000, "Member 'BP_SearchLight_C_ForcedTargetSpawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetCurrentAmmo \ +static_assert(alignof(BP_SearchLight_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_SearchLight_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_SearchLight_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_SearchLight_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_SearchLight_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetDataAsset \ +static_assert(alignof(BP_SearchLight_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetDataAsset"); \ +static_assert(sizeof(BP_SearchLight_C_GetDataAsset) == 0x000008, "Wrong size on BP_SearchLight_C_GetDataAsset"); \ +static_assert(offsetof(BP_SearchLight_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetHandleLocation \ +static_assert(alignof(BP_SearchLight_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetHandleLocation"); \ +static_assert(sizeof(BP_SearchLight_C_GetHandleLocation) == 0x000018, "Wrong size on BP_SearchLight_C_GetHandleLocation"); \ +static_assert(offsetof(BP_SearchLight_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetInteractAnimation \ +static_assert(alignof(BP_SearchLight_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_SearchLight_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_SearchLight_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_SearchLight_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetInteractObjective \ +static_assert(alignof(BP_SearchLight_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetInteractObjective"); \ +static_assert(sizeof(BP_SearchLight_C_GetInteractObjective) == 0x000008, "Wrong size on BP_SearchLight_C_GetInteractObjective"); \ +static_assert(offsetof(BP_SearchLight_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetPointAxis \ +static_assert(alignof(BP_SearchLight_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetPointAxis"); \ +static_assert(sizeof(BP_SearchLight_C_GetPointAxis) == 0x000030, "Wrong size on BP_SearchLight_C_GetPointAxis"); \ +static_assert(offsetof(BP_SearchLight_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetRotationDelta \ +static_assert(alignof(BP_SearchLight_C_GetRotationDelta) == 0x000010, "Wrong alignment on BP_SearchLight_C_GetRotationDelta"); \ +static_assert(sizeof(BP_SearchLight_C_GetRotationDelta) == 0x000130, "Wrong size on BP_SearchLight_C_GetRotationDelta"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, Origin) == 0x000000, "Member 'BP_SearchLight_C_GetRotationDelta::Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, ForwardAxis) == 0x000060, "Member 'BP_SearchLight_C_GetRotationDelta::ForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, Target_0) == 0x000068, "Member 'BP_SearchLight_C_GetRotationDelta::Target_0' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, Delta_0) == 0x000080, "Member 'BP_SearchLight_C_GetRotationDelta::Delta_0' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_BreakTransform_Location) == 0x000088, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_BreakTransform_Rotation) == 0x0000A0, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_BreakTransform_Scale) == 0x0000B8, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_GetTransformAxisVector_ReturnValue) == 0x0000D0, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_GetTransformAxisVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000E8, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_Normal_ReturnValue) == 0x000100, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_Dot_VectorVector_ReturnValue) == 0x000118, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_DegAcos_ReturnValue) == 0x000120, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetRotationDelta, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_SearchLight_C_GetRotationDelta::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetScoreBias \ +static_assert(alignof(BP_SearchLight_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_SearchLight_C_GetScoreBias"); \ +static_assert(sizeof(BP_SearchLight_C_GetScoreBias) == 0x000004, "Wrong size on BP_SearchLight_C_GetScoreBias"); \ +static_assert(offsetof(BP_SearchLight_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetThrowableComponent \ +static_assert(alignof(BP_SearchLight_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_SearchLight_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_SearchLight_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_SearchLight_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetThrowableOrientation \ +static_assert(alignof(BP_SearchLight_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_SearchLight_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_SearchLight_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_SearchLight_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_SearchLight_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_SearchLight_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_SearchLight_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetThrowableType \ +static_assert(alignof(BP_SearchLight_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_SearchLight_C_GetThrowableType"); \ +static_assert(sizeof(BP_SearchLight_C_GetThrowableType) == 0x000001, "Wrong size on BP_SearchLight_C_GetThrowableType"); \ +static_assert(offsetof(BP_SearchLight_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_IsExplosive \ +static_assert(alignof(BP_SearchLight_C_IsExplosive) == 0x000001, "Wrong alignment on BP_SearchLight_C_IsExplosive"); \ +static_assert(sizeof(BP_SearchLight_C_IsExplosive) == 0x000001, "Wrong size on BP_SearchLight_C_IsExplosive"); \ +static_assert(offsetof(BP_SearchLight_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_IsPointed \ +static_assert(alignof(BP_SearchLight_C_IsPointed) == 0x000001, "Wrong alignment on BP_SearchLight_C_IsPointed"); \ +static_assert(sizeof(BP_SearchLight_C_IsPointed) == 0x000001, "Wrong size on BP_SearchLight_C_IsPointed"); \ +static_assert(offsetof(BP_SearchLight_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_IsThrowable \ +static_assert(alignof(BP_SearchLight_C_IsThrowable) == 0x000001, "Wrong alignment on BP_SearchLight_C_IsThrowable"); \ +static_assert(sizeof(BP_SearchLight_C_IsThrowable) == 0x000001, "Wrong size on BP_SearchLight_C_IsThrowable"); \ +static_assert(offsetof(BP_SearchLight_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_MakeSearchLightTargetWorld \ +static_assert(alignof(BP_SearchLight_C_MakeSearchLightTargetWorld) == 0x000008, "Wrong alignment on BP_SearchLight_C_MakeSearchLightTargetWorld"); \ +static_assert(sizeof(BP_SearchLight_C_MakeSearchLightTargetWorld) == 0x000030, "Wrong size on BP_SearchLight_C_MakeSearchLightTargetWorld"); \ +static_assert(offsetof(BP_SearchLight_C_MakeSearchLightTargetWorld, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_MakeSearchLightTargetWorld::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_MakeSearchLightTargetWorld, CallFunc_Add_VectorVector_ReturnValue) == 0x000018, "Member 'BP_SearchLight_C_MakeSearchLightTargetWorld::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_ReceiveAnyDamage \ +static_assert(alignof(BP_SearchLight_C_ReceiveAnyDamage) == 0x000008, "Wrong alignment on BP_SearchLight_C_ReceiveAnyDamage"); \ +static_assert(sizeof(BP_SearchLight_C_ReceiveAnyDamage) == 0x000020, "Wrong size on BP_SearchLight_C_ReceiveAnyDamage"); \ +static_assert(offsetof(BP_SearchLight_C_ReceiveAnyDamage, Damage) == 0x000000, "Member 'BP_SearchLight_C_ReceiveAnyDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ReceiveAnyDamage, DamageType) == 0x000008, "Member 'BP_SearchLight_C_ReceiveAnyDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ReceiveAnyDamage, InstigatedBy) == 0x000010, "Member 'BP_SearchLight_C_ReceiveAnyDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_ReceiveAnyDamage, DamageCauser) == 0x000018, "Member 'BP_SearchLight_C_ReceiveAnyDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_ReceiveTick \ +static_assert(alignof(BP_SearchLight_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_SearchLight_C_ReceiveTick"); \ +static_assert(sizeof(BP_SearchLight_C_ReceiveTick) == 0x000004, "Wrong size on BP_SearchLight_C_ReceiveTick"); \ +static_assert(offsetof(BP_SearchLight_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_SearchLight_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_Set_up_heightened_senses_highlight \ +static_assert(alignof(BP_SearchLight_C_Set_up_heightened_senses_highlight) == 0x000008, "Wrong alignment on BP_SearchLight_C_Set_up_heightened_senses_highlight"); \ +static_assert(sizeof(BP_SearchLight_C_Set_up_heightened_senses_highlight) == 0x000018, "Wrong size on BP_SearchLight_C_Set_up_heightened_senses_highlight"); \ +static_assert(offsetof(BP_SearchLight_C_Set_up_heightened_senses_highlight, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_Set_up_heightened_senses_highlight::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_Set_up_heightened_senses_highlight, K2Node_MakeArray_Array) == 0x000008, "Member 'BP_SearchLight_C_Set_up_heightened_senses_highlight::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_SetTargetVectorToForcedTarget \ +static_assert(alignof(BP_SearchLight_C_SetTargetVectorToForcedTarget) == 0x000008, "Wrong alignment on BP_SearchLight_C_SetTargetVectorToForcedTarget"); \ +static_assert(sizeof(BP_SearchLight_C_SetTargetVectorToForcedTarget) == 0x000020, "Wrong size on BP_SearchLight_C_SetTargetVectorToForcedTarget"); \ +static_assert(offsetof(BP_SearchLight_C_SetTargetVectorToForcedTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_SetTargetVectorToForcedTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_SetTargetVectorToForcedTarget, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_SearchLight_C_SetTargetVectorToForcedTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_TrackingTarget \ +static_assert(alignof(BP_SearchLight_C_TrackingTarget) == 0x000008, "Wrong alignment on BP_SearchLight_C_TrackingTarget"); \ +static_assert(sizeof(BP_SearchLight_C_TrackingTarget) == 0x000010, "Wrong size on BP_SearchLight_C_TrackingTarget"); \ +static_assert(offsetof(BP_SearchLight_C_TrackingTarget, Target_0) == 0x000000, "Member 'BP_SearchLight_C_TrackingTarget::Target_0' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_TrackingTarget, TargetIsPlayer) == 0x000008, "Member 'BP_SearchLight_C_TrackingTarget::TargetIsPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_UpdateLightColour \ +static_assert(alignof(BP_SearchLight_C_UpdateLightColour) == 0x000004, "Wrong alignment on BP_SearchLight_C_UpdateLightColour"); \ +static_assert(sizeof(BP_SearchLight_C_UpdateLightColour) == 0x000010, "Wrong size on BP_SearchLight_C_UpdateLightColour"); \ +static_assert(offsetof(BP_SearchLight_C_UpdateLightColour, Colour) == 0x000000, "Member 'BP_SearchLight_C_UpdateLightColour::Colour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_UserConstructionScript \ +static_assert(alignof(BP_SearchLight_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_SearchLight_C_UserConstructionScript"); \ +static_assert(sizeof(BP_SearchLight_C_UserConstructionScript) == 0x000018, "Wrong size on BP_SearchLight_C_UserConstructionScript"); \ +static_assert(offsetof(BP_SearchLight_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000008, "Member 'BP_SearchLight_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SearchLight_C_UserConstructionScript, CallFunc_SetInnerConeAngle_NewInnerConeAngle_ImplicitCast) == 0x000010, "Member 'BP_SearchLight_C_UserConstructionScript::CallFunc_SetInnerConeAngle_NewInnerConeAngle_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SearchLight_C_GetTargetType \ +static_assert(alignof(BP_SearchLight_C_GetTargetType) == 0x000001, "Wrong alignment on BP_SearchLight_C_GetTargetType"); \ +static_assert(sizeof(BP_SearchLight_C_GetTargetType) == 0x000001, "Wrong size on BP_SearchLight_C_GetTargetType"); \ +static_assert(offsetof(BP_SearchLight_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_SearchLight_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_SearchLight_C \ +static_assert(alignof(ABP_SearchLight_C) == 0x000008, "Wrong alignment on ABP_SearchLight_C"); \ +static_assert(sizeof(ABP_SearchLight_C) == 0x000438, "Wrong size on ABP_SearchLight_C"); \ +static_assert(offsetof(ABP_SearchLight_C, UberGraphFrame) == 0x000298, "Member 'ABP_SearchLight_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Arrow) == 0x0002A0, "Member 'ABP_SearchLight_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, WrestlerHeightenedSensesClue) == 0x0002A8, "Member 'ABP_SearchLight_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, ThrownImpactCollider) == 0x0002B0, "Member 'ABP_SearchLight_C::ThrownImpactCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, HeraAudio) == 0x0002B8, "Member 'ABP_SearchLight_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Track) == 0x0002C0, "Member 'ABP_SearchLight_C::Track' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, SM_Production_Light_03) == 0x0002C8, "Member 'ABP_SearchLight_C::SM_Production_Light_03' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Scene) == 0x0002D0, "Member 'ABP_SearchLight_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, SpotLight) == 0x0002D8, "Member 'ABP_SearchLight_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, DisableLightTimeline_IntensityFalloff_2325ACCE43781791AE74C4996FF78531) == 0x0002E0, "Member 'ABP_SearchLight_C::DisableLightTimeline_IntensityFalloff_2325ACCE43781791AE74C4996FF78531' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, DisableLightTimeline_Drop_2325ACCE43781791AE74C4996FF78531) == 0x0002E4, "Member 'ABP_SearchLight_C::DisableLightTimeline_Drop_2325ACCE43781791AE74C4996FF78531' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, DisableLightTimeline__Direction_2325ACCE43781791AE74C4996FF78531) == 0x0002E8, "Member 'ABP_SearchLight_C::DisableLightTimeline__Direction_2325ACCE43781791AE74C4996FF78531' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, DisableLightTimeline) == 0x0002F0, "Member 'ABP_SearchLight_C::DisableLightTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, MoveAlongTrack_Time_30EC7C3C42370DF3E56A65ABA01B3722) == 0x0002F8, "Member 'ABP_SearchLight_C::MoveAlongTrack_Time_30EC7C3C42370DF3E56A65ABA01B3722' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, MoveAlongTrack__Direction_30EC7C3C42370DF3E56A65ABA01B3722) == 0x0002FC, "Member 'ABP_SearchLight_C::MoveAlongTrack__Direction_30EC7C3C42370DF3E56A65ABA01B3722' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, MoveAlongTrack) == 0x000300, "Member 'ABP_SearchLight_C::MoveAlongTrack' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Enabled) == 0x000308, "Member 'ABP_SearchLight_C::Enabled' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, OnlyTrackPlayer) == 0x000309, "Member 'ABP_SearchLight_C::OnlyTrackPlayer' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TrackSpecifiedTeams) == 0x00030A, "Member 'ABP_SearchLight_C::TrackSpecifiedTeams' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TeamsToTrack) == 0x000310, "Member 'ABP_SearchLight_C::TeamsToTrack' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, MaxTrackingDistance) == 0x000320, "Member 'ABP_SearchLight_C::MaxTrackingDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, SearchLightTargetVector) == 0x000328, "Member 'ABP_SearchLight_C::SearchLightTargetVector' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, PauseTimeAtSplineEnds) == 0x000340, "Member 'ABP_SearchLight_C::PauseTimeAtSplineEnds' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Target) == 0x000348, "Member 'ABP_SearchLight_C::Target' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Delta) == 0x000350, "Member 'ABP_SearchLight_C::Delta' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TargetReportTimer) == 0x000358, "Member 'ABP_SearchLight_C::TargetReportTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, PostTargetLossDelay) == 0x000360, "Member 'ABP_SearchLight_C::PostTargetLossDelay' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, LightMovementNormalisedCurve) == 0x000368, "Member 'ABP_SearchLight_C::LightMovementNormalisedCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Alarmed) == 0x000370, "Member 'ABP_SearchLight_C::Alarmed' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, LightIntensityMultiplier) == 0x000378, "Member 'ABP_SearchLight_C::LightIntensityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, CollissionGraceDistance) == 0x000380, "Member 'ABP_SearchLight_C::CollissionGraceDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, LightConeAngle) == 0x000388, "Member 'ABP_SearchLight_C::LightConeAngle' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, CachedIntensity) == 0x00038C, "Member 'ABP_SearchLight_C::CachedIntensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, SearchLightFoundTarget) == 0x000390, "Member 'ABP_SearchLight_C::SearchLightFoundTarget' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, HERAObjective) == 0x0003A0, "Member 'ABP_SearchLight_C::HERAObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TargetInterpolationRate) == 0x0003A8, "Member 'ABP_SearchLight_C::TargetInterpolationRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, NoTrackingLightColour) == 0x0003AC, "Member 'ABP_SearchLight_C::NoTrackingLightColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TargetTrackingLightColour) == 0x0003BC, "Member 'ABP_SearchLight_C::TargetTrackingLightColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, OverlappedActor) == 0x0003D0, "Member 'ABP_SearchLight_C::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TrackingStartGraceTime) == 0x0003D8, "Member 'ABP_SearchLight_C::TrackingStartGraceTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, PostLossAlarmRunTime) == 0x0003DC, "Member 'ABP_SearchLight_C::PostLossAlarmRunTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, CanBeTKPulled) == 0x0003E0, "Member 'ABP_SearchLight_C::CanBeTKPulled' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Overlay_material) == 0x0003E8, "Member 'ABP_SearchLight_C::Overlay_material' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, In_Mesh_Components_to_Highlight_in_Heightened_Senses) == 0x0003F0, "Member 'ABP_SearchLight_C::In_Mesh_Components_to_Highlight_in_Heightened_Senses' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, Interacted) == 0x000400, "Member 'ABP_SearchLight_C::Interacted' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, On_Tk_ed_Objective) == 0x000408, "Member 'ABP_SearchLight_C::On_Tk_ed_Objective' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, ForceTarget) == 0x000410, "Member 'ABP_SearchLight_C::ForceTarget' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, ForcedTargetSpawner) == 0x000418, "Member 'ABP_SearchLight_C::ForcedTargetSpawner' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, ForcedTarget) == 0x000420, "Member 'ABP_SearchLight_C::ForcedTarget' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, PlayerHasRecentlyBeenSeen) == 0x000428, "Member 'ABP_SearchLight_C::PlayerHasRecentlyBeenSeen' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, TimeBetweenPlayerScans) == 0x00042C, "Member 'ABP_SearchLight_C::TimeBetweenPlayerScans' has a wrong offset!"); \ +static_assert(offsetof(ABP_SearchLight_C, PlayerPawn) == 0x000430, "Member 'ABP_SearchLight_C::PlayerPawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter \ +static_assert(alignof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter) == 0x000008, "Wrong alignment on BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter"); \ +static_assert(sizeof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter) == 0x000028, "Wrong size on BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter, EntryPoint) == 0x000000, "Member 'BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000008, "Member 'BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter, CallFunc_Greater_IntInt_ReturnValue) == 0x000024, "Member 'BP_BaseDialogueCharacter_C_ExecuteUbergraph_BP_BaseDialogueCharacter::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BaseDialogueCharacter_C_UserConstructionScript \ +static_assert(alignof(BP_BaseDialogueCharacter_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_BaseDialogueCharacter_C_UserConstructionScript"); \ +static_assert(sizeof(BP_BaseDialogueCharacter_C_UserConstructionScript) == 0x000038, "Wrong size on BP_BaseDialogueCharacter_C_UserConstructionScript"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_UserConstructionScript, CallFunc_GetDisplayName_ReturnValue) == 0x000000, "Member 'BP_BaseDialogueCharacter_C_UserConstructionScript::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_UserConstructionScript, CallFunc_RightChop_ReturnValue) == 0x000010, "Member 'BP_BaseDialogueCharacter_C_UserConstructionScript::CallFunc_RightChop_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_UserConstructionScript, CallFunc_Conv_StringToText_ReturnValue) == 0x000020, "Member 'BP_BaseDialogueCharacter_C_UserConstructionScript::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_BaseDialogueCharacter_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BaseDialogueCharacter_C \ +static_assert(alignof(ABP_BaseDialogueCharacter_C) == 0x000008, "Wrong alignment on ABP_BaseDialogueCharacter_C"); \ +static_assert(sizeof(ABP_BaseDialogueCharacter_C) == 0x000388, "Wrong size on ABP_BaseDialogueCharacter_C"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, UberGraphFrame) == 0x000340, "Member 'ABP_BaseDialogueCharacter_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, WrestlerHeightenedSensesClue) == 0x000348, "Member 'ABP_BaseDialogueCharacter_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, Capsule) == 0x000350, "Member 'ABP_BaseDialogueCharacter_C::Capsule' has a wrong offset!"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, Name_Text) == 0x000358, "Member 'ABP_BaseDialogueCharacter_C::Name_Text' has a wrong offset!"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, HeraMissionActor) == 0x000360, "Member 'ABP_BaseDialogueCharacter_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_BaseDialogueCharacter_C, HeightenedSenseSpeciesTag) == 0x000368, "Member 'ABP_BaseDialogueCharacter_C::HeightenedSenseSpeciesTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTCR_PropertyValueItem \ +static_assert(alignof(FTCR_PropertyValueItem) == 0x000008, "Wrong alignment on FTCR_PropertyValueItem"); \ +static_assert(sizeof(FTCR_PropertyValueItem) == 0x000018, "Wrong size on FTCR_PropertyValueItem"); \ + +#define DUMPER7_ASSERTS_TCR_PropertiesViewWidget_FilterEntries \ +static_assert(alignof(TCR_PropertiesViewWidget_FilterEntries) == 0x000008, "Wrong alignment on TCR_PropertiesViewWidget_FilterEntries"); \ +static_assert(sizeof(TCR_PropertiesViewWidget_FilterEntries) == 0x000038, "Wrong size on TCR_PropertiesViewWidget_FilterEntries"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, Source) == 0x000000, "Member 'TCR_PropertiesViewWidget_FilterEntries::Source' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, Filter) == 0x000010, "Member 'TCR_PropertiesViewWidget_FilterEntries::Filter' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, Type) == 0x000020, "Member 'TCR_PropertiesViewWidget_FilterEntries::Type' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, Scope) == 0x000021, "Member 'TCR_PropertiesViewWidget_FilterEntries::Scope' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, bPinned) == 0x000022, "Member 'TCR_PropertiesViewWidget_FilterEntries::bPinned' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertiesViewWidget_FilterEntries, ReturnValue) == 0x000028, "Member 'TCR_PropertiesViewWidget_FilterEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertiesViewWidget \ +static_assert(alignof(UTCR_PropertiesViewWidget) == 0x000008, "Wrong alignment on UTCR_PropertiesViewWidget"); \ +static_assert(sizeof(UTCR_PropertiesViewWidget) == 0x0002E8, "Wrong size on UTCR_PropertiesViewWidget"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryItemView_SetSelected \ +static_assert(alignof(TCR_PropertyEntryItemView_SetSelected) == 0x000001, "Wrong alignment on TCR_PropertyEntryItemView_SetSelected"); \ +static_assert(sizeof(TCR_PropertyEntryItemView_SetSelected) == 0x000001, "Wrong size on TCR_PropertyEntryItemView_SetSelected"); \ +static_assert(offsetof(TCR_PropertyEntryItemView_SetSelected, bIsSelected) == 0x000000, "Member 'TCR_PropertyEntryItemView_SetSelected::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryItemView_GetText \ +static_assert(alignof(TCR_PropertyEntryItemView_GetText) == 0x000008, "Wrong alignment on TCR_PropertyEntryItemView_GetText"); \ +static_assert(sizeof(TCR_PropertyEntryItemView_GetText) == 0x000018, "Wrong size on TCR_PropertyEntryItemView_GetText"); \ +static_assert(offsetof(TCR_PropertyEntryItemView_GetText, ReturnValue) == 0x000000, "Member 'TCR_PropertyEntryItemView_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryItemView_IsSelected \ +static_assert(alignof(TCR_PropertyEntryItemView_IsSelected) == 0x000001, "Wrong alignment on TCR_PropertyEntryItemView_IsSelected"); \ +static_assert(sizeof(TCR_PropertyEntryItemView_IsSelected) == 0x000001, "Wrong size on TCR_PropertyEntryItemView_IsSelected"); \ +static_assert(offsetof(TCR_PropertyEntryItemView_IsSelected, ReturnValue) == 0x000000, "Member 'TCR_PropertyEntryItemView_IsSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertyEntryItemView \ +static_assert(alignof(UTCR_PropertyEntryItemView) == 0x000008, "Wrong alignment on UTCR_PropertyEntryItemView"); \ +static_assert(sizeof(UTCR_PropertyEntryItemView) == 0x000040, "Wrong size on UTCR_PropertyEntryItemView"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertyEntryItemWidget \ +static_assert(alignof(UTCR_PropertyEntryItemWidget) == 0x000008, "Wrong alignment on UTCR_PropertyEntryItemWidget"); \ +static_assert(sizeof(UTCR_PropertyEntryItemWidget) == 0x0002F8, "Wrong size on UTCR_PropertyEntryItemWidget"); \ +static_assert(offsetof(UTCR_PropertyEntryItemWidget, ItemView) == 0x0002F0, "Member 'UTCR_PropertyEntryItemWidget::ItemView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertyEntryOptionWidget \ +static_assert(alignof(UTCR_PropertyEntryOptionWidget) == 0x000008, "Wrong alignment on UTCR_PropertyEntryOptionWidget"); \ +static_assert(sizeof(UTCR_PropertyEntryOptionWidget) == 0x0002F0, "Wrong size on UTCR_PropertyEntryOptionWidget"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryView_GetListItems \ +static_assert(alignof(TCR_PropertyEntryView_GetListItems) == 0x000008, "Wrong alignment on TCR_PropertyEntryView_GetListItems"); \ +static_assert(sizeof(TCR_PropertyEntryView_GetListItems) == 0x000018, "Wrong size on TCR_PropertyEntryView_GetListItems"); \ +static_assert(offsetof(TCR_PropertyEntryView_GetListItems, ReturnValue) == 0x000000, "Member 'TCR_PropertyEntryView_GetListItems::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyEntryView_GetListItems, bSuccess) == 0x000010, "Member 'TCR_PropertyEntryView_GetListItems::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryView_SetItemsOpen \ +static_assert(alignof(TCR_PropertyEntryView_SetItemsOpen) == 0x000001, "Wrong alignment on TCR_PropertyEntryView_SetItemsOpen"); \ +static_assert(sizeof(TCR_PropertyEntryView_SetItemsOpen) == 0x000001, "Wrong size on TCR_PropertyEntryView_SetItemsOpen"); \ +static_assert(offsetof(TCR_PropertyEntryView_SetItemsOpen, bIsOptionsOpen) == 0x000000, "Member 'TCR_PropertyEntryView_SetItemsOpen::bIsOptionsOpen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryView_IsItemsOpen \ +static_assert(alignof(TCR_PropertyEntryView_IsItemsOpen) == 0x000001, "Wrong alignment on TCR_PropertyEntryView_IsItemsOpen"); \ +static_assert(sizeof(TCR_PropertyEntryView_IsItemsOpen) == 0x000001, "Wrong size on TCR_PropertyEntryView_IsItemsOpen"); \ +static_assert(offsetof(TCR_PropertyEntryView_IsItemsOpen, ReturnValue) == 0x000000, "Member 'TCR_PropertyEntryView_IsItemsOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertyEntryView \ +static_assert(alignof(UTCR_PropertyEntryView) == 0x000008, "Wrong alignment on UTCR_PropertyEntryView"); \ +static_assert(sizeof(UTCR_PropertyEntryView) == 0x000058, "Wrong size on UTCR_PropertyEntryView"); \ +static_assert(offsetof(UTCR_PropertyEntryView, Name_0) == 0x000028, "Member 'UTCR_PropertyEntryView::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, Path) == 0x000038, "Member 'UTCR_PropertyEntryView::Path' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, Value) == 0x000040, "Member 'UTCR_PropertyEntryView::Value' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, Type) == 0x000050, "Member 'UTCR_PropertyEntryView::Type' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, Scope) == 0x000051, "Member 'UTCR_PropertyEntryView::Scope' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, bPinned) == 0x000052, "Member 'UTCR_PropertyEntryView::bPinned' has a wrong offset!"); \ +static_assert(offsetof(UTCR_PropertyEntryView, bItemsOpen) == 0x000053, "Member 'UTCR_PropertyEntryView::bItemsOpen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryWidget_SetPinned \ +static_assert(alignof(TCR_PropertyEntryWidget_SetPinned) == 0x000001, "Wrong alignment on TCR_PropertyEntryWidget_SetPinned"); \ +static_assert(sizeof(TCR_PropertyEntryWidget_SetPinned) == 0x000001, "Wrong size on TCR_PropertyEntryWidget_SetPinned"); \ +static_assert(offsetof(TCR_PropertyEntryWidget_SetPinned, bPinned) == 0x000000, "Member 'TCR_PropertyEntryWidget_SetPinned::bPinned' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyEntryWidget_SetValueFromText \ +static_assert(alignof(TCR_PropertyEntryWidget_SetValueFromText) == 0x000008, "Wrong alignment on TCR_PropertyEntryWidget_SetValueFromText"); \ +static_assert(sizeof(TCR_PropertyEntryWidget_SetValueFromText) == 0x000018, "Wrong size on TCR_PropertyEntryWidget_SetValueFromText"); \ +static_assert(offsetof(TCR_PropertyEntryWidget_SetValueFromText, Text) == 0x000000, "Member 'TCR_PropertyEntryWidget_SetValueFromText::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_PropertyEntryWidget \ +static_assert(alignof(UTCR_PropertyEntryWidget) == 0x000008, "Wrong alignment on UTCR_PropertyEntryWidget"); \ +static_assert(sizeof(UTCR_PropertyEntryWidget) == 0x0002F8, "Wrong size on UTCR_PropertyEntryWidget"); \ +static_assert(offsetof(UTCR_PropertyEntryWidget, PropertyView) == 0x0002F0, "Member 'UTCR_PropertyEntryWidget::PropertyView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyView_GetValueItems \ +static_assert(alignof(TCR_PropertyView_GetValueItems) == 0x000008, "Wrong alignment on TCR_PropertyView_GetValueItems"); \ +static_assert(sizeof(TCR_PropertyView_GetValueItems) == 0x000020, "Wrong size on TCR_PropertyView_GetValueItems"); \ +static_assert(offsetof(TCR_PropertyView_GetValueItems, Path) == 0x000000, "Member 'TCR_PropertyView_GetValueItems::Path' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_GetValueItems, Values) == 0x000008, "Member 'TCR_PropertyView_GetValueItems::Values' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_GetValueItems, ReturnValue) == 0x000018, "Member 'TCR_PropertyView_GetValueItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyView_SetValueFromString \ +static_assert(alignof(TCR_PropertyView_SetValueFromString) == 0x000008, "Wrong alignment on TCR_PropertyView_SetValueFromString"); \ +static_assert(sizeof(TCR_PropertyView_SetValueFromString) == 0x000020, "Wrong size on TCR_PropertyView_SetValueFromString"); \ +static_assert(offsetof(TCR_PropertyView_SetValueFromString, Path) == 0x000000, "Member 'TCR_PropertyView_SetValueFromString::Path' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_SetValueFromString, Value) == 0x000008, "Member 'TCR_PropertyView_SetValueFromString::Value' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_SetValueFromString, ReturnValue) == 0x000018, "Member 'TCR_PropertyView_SetValueFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyView_SetValueItem \ +static_assert(alignof(TCR_PropertyView_SetValueItem) == 0x000008, "Wrong alignment on TCR_PropertyView_SetValueItem"); \ +static_assert(sizeof(TCR_PropertyView_SetValueItem) == 0x000028, "Wrong size on TCR_PropertyView_SetValueItem"); \ +static_assert(offsetof(TCR_PropertyView_SetValueItem, Path) == 0x000000, "Member 'TCR_PropertyView_SetValueItem::Path' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_SetValueItem, ValueItem) == 0x000008, "Member 'TCR_PropertyView_SetValueItem::ValueItem' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_SetValueItem, ReturnValue) == 0x000020, "Member 'TCR_PropertyView_SetValueItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_PropertyView_GetValueAsString \ +static_assert(alignof(TCR_PropertyView_GetValueAsString) == 0x000008, "Wrong alignment on TCR_PropertyView_GetValueAsString"); \ +static_assert(sizeof(TCR_PropertyView_GetValueAsString) == 0x000018, "Wrong size on TCR_PropertyView_GetValueAsString"); \ +static_assert(offsetof(TCR_PropertyView_GetValueAsString, Path) == 0x000000, "Member 'TCR_PropertyView_GetValueAsString::Path' has a wrong offset!"); \ +static_assert(offsetof(TCR_PropertyView_GetValueAsString, ReturnValue) == 0x000008, "Member 'TCR_PropertyView_GetValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITCR_PropertyView \ +static_assert(alignof(ITCR_PropertyView) == 0x000001, "Wrong alignment on ITCR_PropertyView"); \ +static_assert(sizeof(ITCR_PropertyView) == 0x000001, "Wrong size on ITCR_PropertyView"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleMediumSubtitle_C \ +static_assert(alignof(UCommonTextStyleMediumSubtitle_C) == 0x000010, "Wrong alignment on UCommonTextStyleMediumSubtitle_C"); \ +static_assert(sizeof(UCommonTextStyleMediumSubtitle_C) == 0x0001B0, "Wrong size on UCommonTextStyleMediumSubtitle_C"); \ + +#define DUMPER7_ASSERTS_FPropertyScopePaths \ +static_assert(alignof(FPropertyScopePaths) == 0x000008, "Wrong alignment on FPropertyScopePaths"); \ +static_assert(sizeof(FPropertyScopePaths) == 0x000010, "Wrong size on FPropertyScopePaths"); \ +static_assert(offsetof(FPropertyScopePaths, Paths) == 0x000000, "Member 'FPropertyScopePaths::Paths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyScope \ +static_assert(alignof(FPropertyScope) == 0x000008, "Wrong alignment on FPropertyScope"); \ +static_assert(sizeof(FPropertyScope) == 0x000030, "Wrong size on FPropertyScope"); \ +static_assert(offsetof(FPropertyScope, Category) == 0x000000, "Member 'FPropertyScope::Category' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPropertyStorageData \ +static_assert(alignof(FHeraPropertyStorageData) == 0x000008, "Wrong alignment on FHeraPropertyStorageData"); \ +static_assert(sizeof(FHeraPropertyStorageData) == 0x0001E0, "Wrong size on FHeraPropertyStorageData"); \ +static_assert(offsetof(FHeraPropertyStorageData, Booleans) == 0x000000, "Member 'FHeraPropertyStorageData::Booleans' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageData, Integers) == 0x000050, "Member 'FHeraPropertyStorageData::Integers' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageData, Floats) == 0x0000A0, "Member 'FHeraPropertyStorageData::Floats' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageData, Strings) == 0x0000F0, "Member 'FHeraPropertyStorageData::Strings' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageData, GameplayTags) == 0x000140, "Member 'FHeraPropertyStorageData::GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageData, StateLists) == 0x000190, "Member 'FHeraPropertyStorageData::StateLists' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPropertyStorageState \ +static_assert(alignof(FHeraPropertyStorageState) == 0x000008, "Wrong alignment on FHeraPropertyStorageState"); \ +static_assert(sizeof(FHeraPropertyStorageState) == 0x000240, "Wrong size on FHeraPropertyStorageState"); \ +static_assert(offsetof(FHeraPropertyStorageState, LiveData) == 0x000000, "Member 'FHeraPropertyStorageState::LiveData' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyBools) == 0x0001E0, "Member 'FHeraPropertyStorageState::DirtyBools' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyInts) == 0x0001F0, "Member 'FHeraPropertyStorageState::DirtyInts' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyFloats) == 0x000200, "Member 'FHeraPropertyStorageState::DirtyFloats' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyStrings) == 0x000210, "Member 'FHeraPropertyStorageState::DirtyStrings' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyGameplayTags) == 0x000220, "Member 'FHeraPropertyStorageState::DirtyGameplayTags' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyStorageState, DirtyLists) == 0x000230, "Member 'FHeraPropertyStorageState::DirtyLists' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentBase \ +static_assert(alignof(UHeraPersistenceComponentBase) == 0x000008, "Wrong alignment on UHeraPersistenceComponentBase"); \ +static_assert(sizeof(UHeraPersistenceComponentBase) == 0x0000A0, "Wrong size on UHeraPersistenceComponentBase"); \ + +#define DUMPER7_ASSERTS_HeraPersistenceComponentBool_SetProperty \ +static_assert(alignof(HeraPersistenceComponentBool_SetProperty) == 0x000001, "Wrong alignment on HeraPersistenceComponentBool_SetProperty"); \ +static_assert(sizeof(HeraPersistenceComponentBool_SetProperty) == 0x000001, "Wrong size on HeraPersistenceComponentBool_SetProperty"); \ +static_assert(offsetof(HeraPersistenceComponentBool_SetProperty, Value) == 0x000000, "Member 'HeraPersistenceComponentBool_SetProperty::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentBool \ +static_assert(alignof(UHeraPersistenceComponentBool) == 0x000008, "Wrong alignment on UHeraPersistenceComponentBool"); \ +static_assert(sizeof(UHeraPersistenceComponentBool) == 0x0000A0, "Wrong size on UHeraPersistenceComponentBool"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentHidden \ +static_assert(alignof(UHeraPersistenceComponentHidden) == 0x000008, "Wrong alignment on UHeraPersistenceComponentHidden"); \ +static_assert(sizeof(UHeraPersistenceComponentHidden) == 0x0000B8, "Wrong size on UHeraPersistenceComponentHidden"); \ +static_assert(offsetof(UHeraPersistenceComponentHidden, SetHiddenInGame) == 0x0000A0, "Member 'UHeraPersistenceComponentHidden::SetHiddenInGame' has a wrong offset!"); \ +static_assert(offsetof(UHeraPersistenceComponentHidden, DisableCollision) == 0x0000A1, "Member 'UHeraPersistenceComponentHidden::DisableCollision' has a wrong offset!"); \ +static_assert(offsetof(UHeraPersistenceComponentHidden, OnHiddenChanged) == 0x0000A8, "Member 'UHeraPersistenceComponentHidden::OnHiddenChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPersistenceComponentInt_SetProperty \ +static_assert(alignof(HeraPersistenceComponentInt_SetProperty) == 0x000004, "Wrong alignment on HeraPersistenceComponentInt_SetProperty"); \ +static_assert(sizeof(HeraPersistenceComponentInt_SetProperty) == 0x000004, "Wrong size on HeraPersistenceComponentInt_SetProperty"); \ +static_assert(offsetof(HeraPersistenceComponentInt_SetProperty, Value) == 0x000000, "Member 'HeraPersistenceComponentInt_SetProperty::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentInt \ +static_assert(alignof(UHeraPersistenceComponentInt) == 0x000008, "Wrong alignment on UHeraPersistenceComponentInt"); \ +static_assert(sizeof(UHeraPersistenceComponentInt) == 0x0000A0, "Wrong size on UHeraPersistenceComponentInt"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentInt32 \ +static_assert(alignof(UHeraPersistenceComponentInt32) == 0x000008, "Wrong alignment on UHeraPersistenceComponentInt32"); \ +static_assert(sizeof(UHeraPersistenceComponentInt32) == 0x0000A0, "Wrong size on UHeraPersistenceComponentInt32"); \ + +#define DUMPER7_ASSERTS_UHeraPersistenceComponentSequence \ +static_assert(alignof(UHeraPersistenceComponentSequence) == 0x000008, "Wrong alignment on UHeraPersistenceComponentSequence"); \ +static_assert(sizeof(UHeraPersistenceComponentSequence) == 0x0000A0, "Wrong size on UHeraPersistenceComponentSequence"); \ + +#define DUMPER7_ASSERTS_HeraPropertyBase_GetValueAsString \ +static_assert(alignof(HeraPropertyBase_GetValueAsString) == 0x000008, "Wrong alignment on HeraPropertyBase_GetValueAsString"); \ +static_assert(sizeof(HeraPropertyBase_GetValueAsString) == 0x000010, "Wrong size on HeraPropertyBase_GetValueAsString"); \ +static_assert(offsetof(HeraPropertyBase_GetValueAsString, ReturnValue) == 0x000000, "Member 'HeraPropertyBase_GetValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyBase_GetPropertyName \ +static_assert(alignof(HeraPropertyBase_GetPropertyName) == 0x000004, "Wrong alignment on HeraPropertyBase_GetPropertyName"); \ +static_assert(sizeof(HeraPropertyBase_GetPropertyName) == 0x000008, "Wrong size on HeraPropertyBase_GetPropertyName"); \ +static_assert(offsetof(HeraPropertyBase_GetPropertyName, ReturnValue) == 0x000000, "Member 'HeraPropertyBase_GetPropertyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyBase \ +static_assert(alignof(UHeraPropertyBase) == 0x000008, "Wrong alignment on UHeraPropertyBase"); \ +static_assert(sizeof(UHeraPropertyBase) == 0x000048, "Wrong size on UHeraPropertyBase"); \ +static_assert(offsetof(UHeraPropertyBase, bPartOfGameProgressionSave) == 0x000040, "Member 'UHeraPropertyBase::bPartOfGameProgressionSave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyBool_GetProperty \ +static_assert(alignof(HeraPropertyBool_GetProperty) == 0x000001, "Wrong alignment on HeraPropertyBool_GetProperty"); \ +static_assert(sizeof(HeraPropertyBool_GetProperty) == 0x000001, "Wrong size on HeraPropertyBool_GetProperty"); \ +static_assert(offsetof(HeraPropertyBool_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyBool_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyBool_GetPropertyDefault \ +static_assert(alignof(HeraPropertyBool_GetPropertyDefault) == 0x000001, "Wrong alignment on HeraPropertyBool_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyBool_GetPropertyDefault) == 0x000001, "Wrong size on HeraPropertyBool_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyBool_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyBool_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyBool_SetProperty \ +static_assert(alignof(HeraPropertyBool_SetProperty) == 0x000001, "Wrong alignment on HeraPropertyBool_SetProperty"); \ +static_assert(sizeof(HeraPropertyBool_SetProperty) == 0x000001, "Wrong size on HeraPropertyBool_SetProperty"); \ +static_assert(offsetof(HeraPropertyBool_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyBool_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyBool \ +static_assert(alignof(UHeraPropertyBool) == 0x000008, "Wrong alignment on UHeraPropertyBool"); \ +static_assert(sizeof(UHeraPropertyBool) == 0x000050, "Wrong size on UHeraPropertyBool"); \ +static_assert(offsetof(UHeraPropertyBool, Property) == 0x000048, "Member 'UHeraPropertyBool::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyBool, PropertyDefault) == 0x000049, "Member 'UHeraPropertyBool::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponent \ +static_assert(alignof(UHeraPropertyComponent) == 0x000008, "Wrong alignment on UHeraPropertyComponent"); \ +static_assert(sizeof(UHeraPropertyComponent) == 0x0000B0, "Wrong size on UHeraPropertyComponent"); \ +static_assert(offsetof(UHeraPropertyComponent, PropertyName) == 0x0000A0, "Member 'UHeraPropertyComponent::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged \ +static_assert(alignof(HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged) == 0x000004, "Wrong alignment on HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged"); \ +static_assert(sizeof(HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged) == 0x00000C, "Wrong size on HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged"); \ +static_assert(offsetof(HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentBool_OnHeraPropertyStoreBoolChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentBool \ +static_assert(alignof(UHeraPropertyComponentBool) == 0x000008, "Wrong alignment on UHeraPropertyComponentBool"); \ +static_assert(sizeof(UHeraPropertyComponentBool) == 0x0000E8, "Wrong size on UHeraPropertyComponentBool"); \ +static_assert(offsetof(UHeraPropertyComponentBool, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentBool::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentBool, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentBool::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged \ +static_assert(alignof(HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged) == 0x000004, "Wrong alignment on HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged"); \ +static_assert(sizeof(HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged) == 0x00000C, "Wrong size on HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged"); \ +static_assert(offsetof(HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentFloat_OnHeraPropertyStoreFloatChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentFloat \ +static_assert(alignof(UHeraPropertyComponentFloat) == 0x000008, "Wrong alignment on UHeraPropertyComponentFloat"); \ +static_assert(sizeof(UHeraPropertyComponentFloat) == 0x0000E8, "Wrong size on UHeraPropertyComponentFloat"); \ +static_assert(offsetof(UHeraPropertyComponentFloat, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentFloat::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentFloat, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentFloat::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged \ +static_assert(alignof(HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged) == 0x000004, "Wrong alignment on HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged"); \ +static_assert(sizeof(HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged) == 0x000010, "Wrong size on HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged"); \ +static_assert(offsetof(HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentGameplayTag_OnHeraPropertyStoreGameplayTagChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentGameplayTag_GetPropertyValue \ +static_assert(alignof(HeraPropertyComponentGameplayTag_GetPropertyValue) == 0x000004, "Wrong alignment on HeraPropertyComponentGameplayTag_GetPropertyValue"); \ +static_assert(sizeof(HeraPropertyComponentGameplayTag_GetPropertyValue) == 0x000008, "Wrong size on HeraPropertyComponentGameplayTag_GetPropertyValue"); \ +static_assert(offsetof(HeraPropertyComponentGameplayTag_GetPropertyValue, ReturnValue) == 0x000000, "Member 'HeraPropertyComponentGameplayTag_GetPropertyValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentGameplayTag \ +static_assert(alignof(UHeraPropertyComponentGameplayTag) == 0x000008, "Wrong alignment on UHeraPropertyComponentGameplayTag"); \ +static_assert(sizeof(UHeraPropertyComponentGameplayTag) == 0x0000E8, "Wrong size on UHeraPropertyComponentGameplayTag"); \ +static_assert(offsetof(UHeraPropertyComponentGameplayTag, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentGameplayTag::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentGameplayTag, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentGameplayTag::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged \ +static_assert(alignof(HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged) == 0x000004, "Wrong alignment on HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged"); \ +static_assert(sizeof(HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged) == 0x00000C, "Wrong size on HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged"); \ +static_assert(offsetof(HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentInt_OnHeraPropertyStoreIntChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentInt \ +static_assert(alignof(UHeraPropertyComponentInt) == 0x000008, "Wrong alignment on UHeraPropertyComponentInt"); \ +static_assert(sizeof(UHeraPropertyComponentInt) == 0x0000E8, "Wrong size on UHeraPropertyComponentInt"); \ +static_assert(offsetof(UHeraPropertyComponentInt, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentInt::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentInt, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentInt::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentList_OnHeraPropertyStoreListChanged \ +static_assert(alignof(HeraPropertyComponentList_OnHeraPropertyStoreListChanged) == 0x000008, "Wrong alignment on HeraPropertyComponentList_OnHeraPropertyStoreListChanged"); \ +static_assert(sizeof(HeraPropertyComponentList_OnHeraPropertyStoreListChanged) == 0x000068, "Wrong size on HeraPropertyComponentList_OnHeraPropertyStoreListChanged"); \ +static_assert(offsetof(HeraPropertyComponentList_OnHeraPropertyStoreListChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentList_OnHeraPropertyStoreListChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentList_OnHeraPropertyStoreListChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentList_OnHeraPropertyStoreListChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentList \ +static_assert(alignof(UHeraPropertyComponentList) == 0x000008, "Wrong alignment on UHeraPropertyComponentList"); \ +static_assert(sizeof(UHeraPropertyComponentList) == 0x0000E8, "Wrong size on UHeraPropertyComponentList"); \ +static_assert(offsetof(UHeraPropertyComponentList, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentList::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentList, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentList::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged \ +static_assert(alignof(HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged) == 0x000004, "Wrong alignment on HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged"); \ +static_assert(sizeof(HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged) == 0x00000C, "Wrong size on HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged"); \ +static_assert(offsetof(HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentRule_OnHeraPropertyStoreBoolChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentRule \ +static_assert(alignof(UHeraPropertyComponentRule) == 0x000008, "Wrong alignment on UHeraPropertyComponentRule"); \ +static_assert(sizeof(UHeraPropertyComponentRule) == 0x0000E8, "Wrong size on UHeraPropertyComponentRule"); \ +static_assert(offsetof(UHeraPropertyComponentRule, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentRule::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentRule, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentRule::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyComponentString_OnHeraPropertyStoreStringChanged \ +static_assert(alignof(HeraPropertyComponentString_OnHeraPropertyStoreStringChanged) == 0x000008, "Wrong alignment on HeraPropertyComponentString_OnHeraPropertyStoreStringChanged"); \ +static_assert(sizeof(HeraPropertyComponentString_OnHeraPropertyStoreStringChanged) == 0x000018, "Wrong size on HeraPropertyComponentString_OnHeraPropertyStoreStringChanged"); \ +static_assert(offsetof(HeraPropertyComponentString_OnHeraPropertyStoreStringChanged, InPropertyName) == 0x000000, "Member 'HeraPropertyComponentString_OnHeraPropertyStoreStringChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyComponentString_OnHeraPropertyStoreStringChanged, InNewValue) == 0x000008, "Member 'HeraPropertyComponentString_OnHeraPropertyStoreStringChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyComponentString \ +static_assert(alignof(UHeraPropertyComponentString) == 0x000008, "Wrong alignment on UHeraPropertyComponentString"); \ +static_assert(sizeof(UHeraPropertyComponentString) == 0x0000E8, "Wrong size on UHeraPropertyComponentString"); \ +static_assert(offsetof(UHeraPropertyComponentString, HeraPropertyChanged) == 0x0000B0, "Member 'UHeraPropertyComponentString::HeraPropertyChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyComponentString, PropertyAssetReference) == 0x0000C0, "Member 'UHeraPropertyComponentString::PropertyAssetReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyCriteria \ +static_assert(alignof(UHeraPropertyCriteria) == 0x000008, "Wrong alignment on UHeraPropertyCriteria"); \ +static_assert(sizeof(UHeraPropertyCriteria) == 0x000030, "Wrong size on UHeraPropertyCriteria"); \ +static_assert(offsetof(UHeraPropertyCriteria, bInvertCriteria) == 0x000028, "Member 'UHeraPropertyCriteria::bInvertCriteria' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaBool \ +static_assert(alignof(UHeraRuleCriteriaBool) == 0x000008, "Wrong alignment on UHeraRuleCriteriaBool"); \ +static_assert(sizeof(UHeraRuleCriteriaBool) == 0x000040, "Wrong size on UHeraRuleCriteriaBool"); \ +static_assert(offsetof(UHeraRuleCriteriaBool, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaBool::RuleProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaFloat \ +static_assert(alignof(UHeraRuleCriteriaFloat) == 0x000008, "Wrong alignment on UHeraRuleCriteriaFloat"); \ +static_assert(sizeof(UHeraRuleCriteriaFloat) == 0x000070, "Wrong size on UHeraRuleCriteriaFloat"); \ +static_assert(offsetof(UHeraRuleCriteriaFloat, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaFloat::RuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaFloat, RulePropertyPtr) == 0x000058, "Member 'UHeraRuleCriteriaFloat::RulePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaFloat, Comparison) == 0x000060, "Member 'UHeraRuleCriteriaFloat::Comparison' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaFloat, Value) == 0x000064, "Member 'UHeraRuleCriteriaFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaGameplayTag \ +static_assert(alignof(UHeraRuleCriteriaGameplayTag) == 0x000008, "Wrong alignment on UHeraRuleCriteriaGameplayTag"); \ +static_assert(sizeof(UHeraRuleCriteriaGameplayTag) == 0x000070, "Wrong size on UHeraRuleCriteriaGameplayTag"); \ +static_assert(offsetof(UHeraRuleCriteriaGameplayTag, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaGameplayTag::RuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaGameplayTag, RulePropertyPtr) == 0x000058, "Member 'UHeraRuleCriteriaGameplayTag::RulePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaGameplayTag, Comparison) == 0x000060, "Member 'UHeraRuleCriteriaGameplayTag::Comparison' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaGameplayTag, Value) == 0x000064, "Member 'UHeraRuleCriteriaGameplayTag::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaInt \ +static_assert(alignof(UHeraRuleCriteriaInt) == 0x000008, "Wrong alignment on UHeraRuleCriteriaInt"); \ +static_assert(sizeof(UHeraRuleCriteriaInt) == 0x000070, "Wrong size on UHeraRuleCriteriaInt"); \ +static_assert(offsetof(UHeraRuleCriteriaInt, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaInt::RuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaInt, RulePropertyPtr) == 0x000058, "Member 'UHeraRuleCriteriaInt::RulePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaInt, Comparison) == 0x000060, "Member 'UHeraRuleCriteriaInt::Comparison' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaInt, Value) == 0x000064, "Member 'UHeraRuleCriteriaInt::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaStateTrackingList \ +static_assert(alignof(UHeraRuleCriteriaStateTrackingList) == 0x000008, "Wrong alignment on UHeraRuleCriteriaStateTrackingList"); \ +static_assert(sizeof(UHeraRuleCriteriaStateTrackingList) == 0x000080, "Wrong size on UHeraRuleCriteriaStateTrackingList"); \ +static_assert(offsetof(UHeraRuleCriteriaStateTrackingList, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaStateTrackingList::RuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaStateTrackingList, RulePropertyPtr) == 0x000058, "Member 'UHeraRuleCriteriaStateTrackingList::RulePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaStateTrackingList, Comparison) == 0x000060, "Member 'UHeraRuleCriteriaStateTrackingList::Comparison' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaStateTrackingList, Value) == 0x000068, "Member 'UHeraRuleCriteriaStateTrackingList::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraRuleCriteriaString \ +static_assert(alignof(UHeraRuleCriteriaString) == 0x000008, "Wrong alignment on UHeraRuleCriteriaString"); \ +static_assert(sizeof(UHeraRuleCriteriaString) == 0x000080, "Wrong size on UHeraRuleCriteriaString"); \ +static_assert(offsetof(UHeraRuleCriteriaString, RuleProperty) == 0x000030, "Member 'UHeraRuleCriteriaString::RuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaString, RulePropertyPtr) == 0x000058, "Member 'UHeraRuleCriteriaString::RulePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaString, Comparison) == 0x000060, "Member 'UHeraRuleCriteriaString::Comparison' has a wrong offset!"); \ +static_assert(offsetof(UHeraRuleCriteriaString, Value) == 0x000068, "Member 'UHeraRuleCriteriaString::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyFloat_GetProperty \ +static_assert(alignof(HeraPropertyFloat_GetProperty) == 0x000004, "Wrong alignment on HeraPropertyFloat_GetProperty"); \ +static_assert(sizeof(HeraPropertyFloat_GetProperty) == 0x000004, "Wrong size on HeraPropertyFloat_GetProperty"); \ +static_assert(offsetof(HeraPropertyFloat_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyFloat_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyFloat_GetPropertyDefault \ +static_assert(alignof(HeraPropertyFloat_GetPropertyDefault) == 0x000004, "Wrong alignment on HeraPropertyFloat_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyFloat_GetPropertyDefault) == 0x000004, "Wrong size on HeraPropertyFloat_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyFloat_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyFloat_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyFloat_SetProperty \ +static_assert(alignof(HeraPropertyFloat_SetProperty) == 0x000004, "Wrong alignment on HeraPropertyFloat_SetProperty"); \ +static_assert(sizeof(HeraPropertyFloat_SetProperty) == 0x000004, "Wrong size on HeraPropertyFloat_SetProperty"); \ +static_assert(offsetof(HeraPropertyFloat_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyFloat_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyFloat \ +static_assert(alignof(UHeraPropertyFloat) == 0x000008, "Wrong alignment on UHeraPropertyFloat"); \ +static_assert(sizeof(UHeraPropertyFloat) == 0x000050, "Wrong size on UHeraPropertyFloat"); \ +static_assert(offsetof(UHeraPropertyFloat, Property) == 0x000048, "Member 'UHeraPropertyFloat::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyFloat, PropertyDefault) == 0x00004C, "Member 'UHeraPropertyFloat::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyGameplayTag_GetProperty \ +static_assert(alignof(HeraPropertyGameplayTag_GetProperty) == 0x000004, "Wrong alignment on HeraPropertyGameplayTag_GetProperty"); \ +static_assert(sizeof(HeraPropertyGameplayTag_GetProperty) == 0x000008, "Wrong size on HeraPropertyGameplayTag_GetProperty"); \ +static_assert(offsetof(HeraPropertyGameplayTag_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyGameplayTag_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyGameplayTag_GetPropertyDefault \ +static_assert(alignof(HeraPropertyGameplayTag_GetPropertyDefault) == 0x000004, "Wrong alignment on HeraPropertyGameplayTag_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyGameplayTag_GetPropertyDefault) == 0x000008, "Wrong size on HeraPropertyGameplayTag_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyGameplayTag_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyGameplayTag_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyGameplayTag_SetProperty \ +static_assert(alignof(HeraPropertyGameplayTag_SetProperty) == 0x000004, "Wrong alignment on HeraPropertyGameplayTag_SetProperty"); \ +static_assert(sizeof(HeraPropertyGameplayTag_SetProperty) == 0x000008, "Wrong size on HeraPropertyGameplayTag_SetProperty"); \ +static_assert(offsetof(HeraPropertyGameplayTag_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyGameplayTag_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyGameplayTag \ +static_assert(alignof(UHeraPropertyGameplayTag) == 0x000008, "Wrong alignment on UHeraPropertyGameplayTag"); \ +static_assert(sizeof(UHeraPropertyGameplayTag) == 0x000058, "Wrong size on UHeraPropertyGameplayTag"); \ +static_assert(offsetof(UHeraPropertyGameplayTag, Property) == 0x000048, "Member 'UHeraPropertyGameplayTag::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyGameplayTag, PropertyDefault) == 0x000050, "Member 'UHeraPropertyGameplayTag::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyInt_GetProperty \ +static_assert(alignof(HeraPropertyInt_GetProperty) == 0x000004, "Wrong alignment on HeraPropertyInt_GetProperty"); \ +static_assert(sizeof(HeraPropertyInt_GetProperty) == 0x000004, "Wrong size on HeraPropertyInt_GetProperty"); \ +static_assert(offsetof(HeraPropertyInt_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyInt_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyInt_GetPropertyDefault \ +static_assert(alignof(HeraPropertyInt_GetPropertyDefault) == 0x000004, "Wrong alignment on HeraPropertyInt_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyInt_GetPropertyDefault) == 0x000004, "Wrong size on HeraPropertyInt_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyInt_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyInt_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyInt_SetProperty \ +static_assert(alignof(HeraPropertyInt_SetProperty) == 0x000004, "Wrong alignment on HeraPropertyInt_SetProperty"); \ +static_assert(sizeof(HeraPropertyInt_SetProperty) == 0x000004, "Wrong size on HeraPropertyInt_SetProperty"); \ +static_assert(offsetof(HeraPropertyInt_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyInt_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyInt \ +static_assert(alignof(UHeraPropertyInt) == 0x000008, "Wrong alignment on UHeraPropertyInt"); \ +static_assert(sizeof(UHeraPropertyInt) == 0x000050, "Wrong size on UHeraPropertyInt"); \ +static_assert(offsetof(UHeraPropertyInt, Property) == 0x000048, "Member 'UHeraPropertyInt::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyInt, PropertyDefault) == 0x00004C, "Member 'UHeraPropertyInt::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyRule_Evaluate \ +static_assert(alignof(HeraPropertyRule_Evaluate) == 0x000001, "Wrong alignment on HeraPropertyRule_Evaluate"); \ +static_assert(sizeof(HeraPropertyRule_Evaluate) == 0x000001, "Wrong size on HeraPropertyRule_Evaluate"); \ +static_assert(offsetof(HeraPropertyRule_Evaluate, ReturnValue) == 0x000000, "Member 'HeraPropertyRule_Evaluate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyRule_GetPassCount \ +static_assert(alignof(HeraPropertyRule_GetPassCount) == 0x000004, "Wrong alignment on HeraPropertyRule_GetPassCount"); \ +static_assert(sizeof(HeraPropertyRule_GetPassCount) == 0x000004, "Wrong size on HeraPropertyRule_GetPassCount"); \ +static_assert(offsetof(HeraPropertyRule_GetPassCount, ReturnValue) == 0x000000, "Member 'HeraPropertyRule_GetPassCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyRule_CriteriaCount \ +static_assert(alignof(HeraPropertyRule_CriteriaCount) == 0x000004, "Wrong alignment on HeraPropertyRule_CriteriaCount"); \ +static_assert(sizeof(HeraPropertyRule_CriteriaCount) == 0x000004, "Wrong size on HeraPropertyRule_CriteriaCount"); \ +static_assert(offsetof(HeraPropertyRule_CriteriaCount, ReturnValue) == 0x000000, "Member 'HeraPropertyRule_CriteriaCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyRule_GetProperty \ +static_assert(alignof(HeraPropertyRule_GetProperty) == 0x000001, "Wrong alignment on HeraPropertyRule_GetProperty"); \ +static_assert(sizeof(HeraPropertyRule_GetProperty) == 0x000001, "Wrong size on HeraPropertyRule_GetProperty"); \ +static_assert(offsetof(HeraPropertyRule_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyRule_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyRule \ +static_assert(alignof(UHeraPropertyRule) == 0x000008, "Wrong alignment on UHeraPropertyRule"); \ +static_assert(sizeof(UHeraPropertyRule) == 0x000060, "Wrong size on UHeraPropertyRule"); \ +static_assert(offsetof(UHeraPropertyRule, Property) == 0x000048, "Member 'UHeraPropertyRule::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyRule, Criteria) == 0x000050, "Member 'UHeraPropertyRule::Criteria' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertySettings \ +static_assert(alignof(UHeraPropertySettings) == 0x000008, "Wrong alignment on UHeraPropertySettings"); \ +static_assert(sizeof(UHeraPropertySettings) == 0x000068, "Wrong size on UHeraPropertySettings"); \ +static_assert(offsetof(UHeraPropertySettings, PropertyScope) == 0x000038, "Member 'UHeraPropertySettings::PropertyScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_AddItem \ +static_assert(alignof(HeraPropertyStateTrackingList_AddItem) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_AddItem"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_AddItem) == 0x000010, "Wrong size on HeraPropertyStateTrackingList_AddItem"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_AddItem, InItemName) == 0x000000, "Member 'HeraPropertyStateTrackingList_AddItem::InItemName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_AddTag \ +static_assert(alignof(HeraPropertyStateTrackingList_AddTag) == 0x000004, "Wrong alignment on HeraPropertyStateTrackingList_AddTag"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_AddTag) == 0x000008, "Wrong size on HeraPropertyStateTrackingList_AddTag"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_AddTag, InItemName) == 0x000000, "Member 'HeraPropertyStateTrackingList_AddTag::InItemName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_RemoveItem \ +static_assert(alignof(HeraPropertyStateTrackingList_RemoveItem) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_RemoveItem"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_RemoveItem) == 0x000010, "Wrong size on HeraPropertyStateTrackingList_RemoveItem"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_RemoveItem, InItemName) == 0x000000, "Member 'HeraPropertyStateTrackingList_RemoveItem::InItemName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_ContainsItemNamed \ +static_assert(alignof(HeraPropertyStateTrackingList_ContainsItemNamed) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_ContainsItemNamed"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_ContainsItemNamed) == 0x000018, "Wrong size on HeraPropertyStateTrackingList_ContainsItemNamed"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_ContainsItemNamed, InItemName) == 0x000000, "Member 'HeraPropertyStateTrackingList_ContainsItemNamed::InItemName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_ContainsItemNamed, ReturnValue) == 0x000010, "Member 'HeraPropertyStateTrackingList_ContainsItemNamed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_ContainsItemTagged \ +static_assert(alignof(HeraPropertyStateTrackingList_ContainsItemTagged) == 0x000004, "Wrong alignment on HeraPropertyStateTrackingList_ContainsItemTagged"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_ContainsItemTagged) == 0x00000C, "Wrong size on HeraPropertyStateTrackingList_ContainsItemTagged"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_ContainsItemTagged, InItemName) == 0x000000, "Member 'HeraPropertyStateTrackingList_ContainsItemTagged::InItemName' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_ContainsItemTagged, ReturnValue) == 0x000008, "Member 'HeraPropertyStateTrackingList_ContainsItemTagged::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_GetProperty \ +static_assert(alignof(HeraPropertyStateTrackingList_GetProperty) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_GetProperty"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_GetProperty) == 0x000060, "Wrong size on HeraPropertyStateTrackingList_GetProperty"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyStateTrackingList_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_GetPropertyDefault \ +static_assert(alignof(HeraPropertyStateTrackingList_GetPropertyDefault) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_GetPropertyDefault) == 0x000060, "Wrong size on HeraPropertyStateTrackingList_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyStateTrackingList_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStateTrackingList_SetProperty \ +static_assert(alignof(HeraPropertyStateTrackingList_SetProperty) == 0x000008, "Wrong alignment on HeraPropertyStateTrackingList_SetProperty"); \ +static_assert(sizeof(HeraPropertyStateTrackingList_SetProperty) == 0x000060, "Wrong size on HeraPropertyStateTrackingList_SetProperty"); \ +static_assert(offsetof(HeraPropertyStateTrackingList_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyStateTrackingList_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyStateTrackingList \ +static_assert(alignof(UHeraPropertyStateTrackingList) == 0x000008, "Wrong alignment on UHeraPropertyStateTrackingList"); \ +static_assert(sizeof(UHeraPropertyStateTrackingList) == 0x000108, "Wrong size on UHeraPropertyStateTrackingList"); \ +static_assert(offsetof(UHeraPropertyStateTrackingList, Property) == 0x000048, "Member 'UHeraPropertyStateTrackingList::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyStateTrackingList, PropertyDefault) == 0x0000A8, "Member 'UHeraPropertyStateTrackingList::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetAllProperties \ +static_assert(alignof(HeraPropertyStorage_GetAllProperties) == 0x000008, "Wrong alignment on HeraPropertyStorage_GetAllProperties"); \ +static_assert(sizeof(HeraPropertyStorage_GetAllProperties) == 0x000010, "Wrong size on HeraPropertyStorage_GetAllProperties"); \ +static_assert(offsetof(HeraPropertyStorage_GetAllProperties, PropertyDisplay) == 0x000000, "Member 'HeraPropertyStorage_GetAllProperties::PropertyDisplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_SetBool \ +static_assert(alignof(HeraPropertyStorage_SetBool) == 0x000004, "Wrong alignment on HeraPropertyStorage_SetBool"); \ +static_assert(sizeof(HeraPropertyStorage_SetBool) == 0x00000C, "Wrong size on HeraPropertyStorage_SetBool"); \ +static_assert(offsetof(HeraPropertyStorage_SetBool, InProperty) == 0x000000, "Member 'HeraPropertyStorage_SetBool::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_SetBool, InValue) == 0x000008, "Member 'HeraPropertyStorage_SetBool::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_SetFloat \ +static_assert(alignof(HeraPropertyStorage_SetFloat) == 0x000004, "Wrong alignment on HeraPropertyStorage_SetFloat"); \ +static_assert(sizeof(HeraPropertyStorage_SetFloat) == 0x00000C, "Wrong size on HeraPropertyStorage_SetFloat"); \ +static_assert(offsetof(HeraPropertyStorage_SetFloat, InProperty) == 0x000000, "Member 'HeraPropertyStorage_SetFloat::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_SetFloat, Value) == 0x000008, "Member 'HeraPropertyStorage_SetFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_SetGameplayTag \ +static_assert(alignof(HeraPropertyStorage_SetGameplayTag) == 0x000004, "Wrong alignment on HeraPropertyStorage_SetGameplayTag"); \ +static_assert(sizeof(HeraPropertyStorage_SetGameplayTag) == 0x000010, "Wrong size on HeraPropertyStorage_SetGameplayTag"); \ +static_assert(offsetof(HeraPropertyStorage_SetGameplayTag, InProperty) == 0x000000, "Member 'HeraPropertyStorage_SetGameplayTag::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_SetGameplayTag, Value) == 0x000008, "Member 'HeraPropertyStorage_SetGameplayTag::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_SetInt \ +static_assert(alignof(HeraPropertyStorage_SetInt) == 0x000004, "Wrong alignment on HeraPropertyStorage_SetInt"); \ +static_assert(sizeof(HeraPropertyStorage_SetInt) == 0x00000C, "Wrong size on HeraPropertyStorage_SetInt"); \ +static_assert(offsetof(HeraPropertyStorage_SetInt, InProperty) == 0x000000, "Member 'HeraPropertyStorage_SetInt::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_SetInt, Value) == 0x000008, "Member 'HeraPropertyStorage_SetInt::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_SetString \ +static_assert(alignof(HeraPropertyStorage_SetString) == 0x000008, "Wrong alignment on HeraPropertyStorage_SetString"); \ +static_assert(sizeof(HeraPropertyStorage_SetString) == 0x000018, "Wrong size on HeraPropertyStorage_SetString"); \ +static_assert(offsetof(HeraPropertyStorage_SetString, InProperty) == 0x000000, "Member 'HeraPropertyStorage_SetString::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_SetString, Value) == 0x000008, "Member 'HeraPropertyStorage_SetString::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetBool \ +static_assert(alignof(HeraPropertyStorage_GetBool) == 0x000004, "Wrong alignment on HeraPropertyStorage_GetBool"); \ +static_assert(sizeof(HeraPropertyStorage_GetBool) == 0x00000C, "Wrong size on HeraPropertyStorage_GetBool"); \ +static_assert(offsetof(HeraPropertyStorage_GetBool, InProperty) == 0x000000, "Member 'HeraPropertyStorage_GetBool::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_GetBool, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_GetBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetFloat \ +static_assert(alignof(HeraPropertyStorage_GetFloat) == 0x000004, "Wrong alignment on HeraPropertyStorage_GetFloat"); \ +static_assert(sizeof(HeraPropertyStorage_GetFloat) == 0x00000C, "Wrong size on HeraPropertyStorage_GetFloat"); \ +static_assert(offsetof(HeraPropertyStorage_GetFloat, InProperty) == 0x000000, "Member 'HeraPropertyStorage_GetFloat::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_GetFloat, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_GetFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetGameplayTag \ +static_assert(alignof(HeraPropertyStorage_GetGameplayTag) == 0x000004, "Wrong alignment on HeraPropertyStorage_GetGameplayTag"); \ +static_assert(sizeof(HeraPropertyStorage_GetGameplayTag) == 0x000010, "Wrong size on HeraPropertyStorage_GetGameplayTag"); \ +static_assert(offsetof(HeraPropertyStorage_GetGameplayTag, InProperty) == 0x000000, "Member 'HeraPropertyStorage_GetGameplayTag::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_GetGameplayTag, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_GetGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetInt \ +static_assert(alignof(HeraPropertyStorage_GetInt) == 0x000004, "Wrong alignment on HeraPropertyStorage_GetInt"); \ +static_assert(sizeof(HeraPropertyStorage_GetInt) == 0x00000C, "Wrong size on HeraPropertyStorage_GetInt"); \ +static_assert(offsetof(HeraPropertyStorage_GetInt, InProperty) == 0x000000, "Member 'HeraPropertyStorage_GetInt::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_GetInt, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_GetInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_GetString \ +static_assert(alignof(HeraPropertyStorage_GetString) == 0x000008, "Wrong alignment on HeraPropertyStorage_GetString"); \ +static_assert(sizeof(HeraPropertyStorage_GetString) == 0x000018, "Wrong size on HeraPropertyStorage_GetString"); \ +static_assert(offsetof(HeraPropertyStorage_GetString, InProperty) == 0x000000, "Member 'HeraPropertyStorage_GetString::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_GetString, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_GetString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_HasBool \ +static_assert(alignof(HeraPropertyStorage_HasBool) == 0x000004, "Wrong alignment on HeraPropertyStorage_HasBool"); \ +static_assert(sizeof(HeraPropertyStorage_HasBool) == 0x00000C, "Wrong size on HeraPropertyStorage_HasBool"); \ +static_assert(offsetof(HeraPropertyStorage_HasBool, InProperty) == 0x000000, "Member 'HeraPropertyStorage_HasBool::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_HasBool, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_HasBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_HasFloat \ +static_assert(alignof(HeraPropertyStorage_HasFloat) == 0x000004, "Wrong alignment on HeraPropertyStorage_HasFloat"); \ +static_assert(sizeof(HeraPropertyStorage_HasFloat) == 0x00000C, "Wrong size on HeraPropertyStorage_HasFloat"); \ +static_assert(offsetof(HeraPropertyStorage_HasFloat, InProperty) == 0x000000, "Member 'HeraPropertyStorage_HasFloat::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_HasFloat, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_HasFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_HasGameplayTag \ +static_assert(alignof(HeraPropertyStorage_HasGameplayTag) == 0x000004, "Wrong alignment on HeraPropertyStorage_HasGameplayTag"); \ +static_assert(sizeof(HeraPropertyStorage_HasGameplayTag) == 0x00000C, "Wrong size on HeraPropertyStorage_HasGameplayTag"); \ +static_assert(offsetof(HeraPropertyStorage_HasGameplayTag, InProperty) == 0x000000, "Member 'HeraPropertyStorage_HasGameplayTag::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_HasGameplayTag, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_HasGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_HasInt \ +static_assert(alignof(HeraPropertyStorage_HasInt) == 0x000004, "Wrong alignment on HeraPropertyStorage_HasInt"); \ +static_assert(sizeof(HeraPropertyStorage_HasInt) == 0x00000C, "Wrong size on HeraPropertyStorage_HasInt"); \ +static_assert(offsetof(HeraPropertyStorage_HasInt, InProperty) == 0x000000, "Member 'HeraPropertyStorage_HasInt::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_HasInt, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_HasInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyStorage_HasString \ +static_assert(alignof(HeraPropertyStorage_HasString) == 0x000004, "Wrong alignment on HeraPropertyStorage_HasString"); \ +static_assert(sizeof(HeraPropertyStorage_HasString) == 0x00000C, "Wrong size on HeraPropertyStorage_HasString"); \ +static_assert(offsetof(HeraPropertyStorage_HasString, InProperty) == 0x000000, "Member 'HeraPropertyStorage_HasString::InProperty' has a wrong offset!"); \ +static_assert(offsetof(HeraPropertyStorage_HasString, ReturnValue) == 0x000008, "Member 'HeraPropertyStorage_HasString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyStorage \ +static_assert(alignof(UHeraPropertyStorage) == 0x000008, "Wrong alignment on UHeraPropertyStorage"); \ +static_assert(sizeof(UHeraPropertyStorage) == 0x0003D0, "Wrong size on UHeraPropertyStorage"); \ +static_assert(offsetof(UHeraPropertyStorage, Properties) == 0x000038, "Member 'UHeraPropertyStorage::Properties' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyStorage, PropertyRules) == 0x000278, "Member 'UHeraPropertyStorage::PropertyRules' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyStorage, GameProgressionSavePropertyNames) == 0x0002C8, "Member 'UHeraPropertyStorage::GameProgressionSavePropertyNames' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyStorage, OnAnyValueChanged) == 0x0003C0, "Member 'UHeraPropertyStorage::OnAnyValueChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyString_GetProperty \ +static_assert(alignof(HeraPropertyString_GetProperty) == 0x000008, "Wrong alignment on HeraPropertyString_GetProperty"); \ +static_assert(sizeof(HeraPropertyString_GetProperty) == 0x000010, "Wrong size on HeraPropertyString_GetProperty"); \ +static_assert(offsetof(HeraPropertyString_GetProperty, ReturnValue) == 0x000000, "Member 'HeraPropertyString_GetProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyString_GetPropertyDefault \ +static_assert(alignof(HeraPropertyString_GetPropertyDefault) == 0x000008, "Wrong alignment on HeraPropertyString_GetPropertyDefault"); \ +static_assert(sizeof(HeraPropertyString_GetPropertyDefault) == 0x000010, "Wrong size on HeraPropertyString_GetPropertyDefault"); \ +static_assert(offsetof(HeraPropertyString_GetPropertyDefault, ReturnValue) == 0x000000, "Member 'HeraPropertyString_GetPropertyDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPropertyString_SetProperty \ +static_assert(alignof(HeraPropertyString_SetProperty) == 0x000008, "Wrong alignment on HeraPropertyString_SetProperty"); \ +static_assert(sizeof(HeraPropertyString_SetProperty) == 0x000010, "Wrong size on HeraPropertyString_SetProperty"); \ +static_assert(offsetof(HeraPropertyString_SetProperty, InValue) == 0x000000, "Member 'HeraPropertyString_SetProperty::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyString \ +static_assert(alignof(UHeraPropertyString) == 0x000008, "Wrong alignment on UHeraPropertyString"); \ +static_assert(sizeof(UHeraPropertyString) == 0x000068, "Wrong size on UHeraPropertyString"); \ +static_assert(offsetof(UHeraPropertyString, Property) == 0x000048, "Member 'UHeraPropertyString::Property' has a wrong offset!"); \ +static_assert(offsetof(UHeraPropertyString, PropertyDefault) == 0x000058, "Member 'UHeraPropertyString::PropertyDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioAnimLoopInfo \ +static_assert(alignof(FHeraAudioAnimLoopInfo) == 0x000008, "Wrong alignment on FHeraAudioAnimLoopInfo"); \ +static_assert(sizeof(FHeraAudioAnimLoopInfo) == 0x000010, "Wrong size on FHeraAudioAnimLoopInfo"); \ +static_assert(offsetof(FHeraAudioAnimLoopInfo, PlayEvent) == 0x000000, "Member 'FHeraAudioAnimLoopInfo::PlayEvent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAnimLoopInfo, StopEvent) == 0x000008, "Member 'FHeraAudioAnimLoopInfo::StopEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioCharacterEventSectionTemplate \ +static_assert(alignof(FHeraAudioCharacterEventSectionTemplate) == 0x000008, "Wrong alignment on FHeraAudioCharacterEventSectionTemplate"); \ +static_assert(sizeof(FHeraAudioCharacterEventSectionTemplate) == 0x000028, "Wrong size on FHeraAudioCharacterEventSectionTemplate"); \ +static_assert(offsetof(FHeraAudioCharacterEventSectionTemplate, Section) == 0x000020, "Member 'FHeraAudioCharacterEventSectionTemplate::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioCharacterMovieSceneTrackImplementation \ +static_assert(alignof(FHeraAudioCharacterMovieSceneTrackImplementation) == 0x000008, "Wrong alignment on FHeraAudioCharacterMovieSceneTrackImplementation"); \ +static_assert(sizeof(FHeraAudioCharacterMovieSceneTrackImplementation) == 0x000010, "Wrong size on FHeraAudioCharacterMovieSceneTrackImplementation"); \ + +#define DUMPER7_ASSERTS_FHeraAudioAutoFoleyParameters \ +static_assert(alignof(FHeraAudioAutoFoleyParameters) == 0x000008, "Wrong alignment on FHeraAudioAutoFoleyParameters"); \ +static_assert(sizeof(FHeraAudioAutoFoleyParameters) == 0x000030, "Wrong size on FHeraAudioAutoFoleyParameters"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, StartEvent) == 0x000000, "Member 'FHeraAudioAutoFoleyParameters::StartEvent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, StopEvent) == 0x000008, "Member 'FHeraAudioAutoFoleyParameters::StopEvent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, ReferenceBoneName) == 0x000010, "Member 'FHeraAudioAutoFoleyParameters::ReferenceBoneName' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, SpeedRtpc) == 0x000018, "Member 'FHeraAudioAutoFoleyParameters::SpeedRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, AccelerationRtpc) == 0x000020, "Member 'FHeraAudioAutoFoleyParameters::AccelerationRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioAutoFoleyParameters, AngularSpeedRtpc) == 0x000028, "Member 'FHeraAudioAutoFoleyParameters::AngularSpeedRtpc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioAutoFoleyRuntimeInfo \ +static_assert(alignof(FHeraAudioAutoFoleyRuntimeInfo) == 0x000008, "Wrong alignment on FHeraAudioAutoFoleyRuntimeInfo"); \ +static_assert(sizeof(FHeraAudioAutoFoleyRuntimeInfo) == 0x000038, "Wrong size on FHeraAudioAutoFoleyRuntimeInfo"); \ + +#define DUMPER7_ASSERTS_FHeraAudioSocketName \ +static_assert(alignof(FHeraAudioSocketName) == 0x000004, "Wrong alignment on FHeraAudioSocketName"); \ +static_assert(sizeof(FHeraAudioSocketName) == 0x000008, "Wrong size on FHeraAudioSocketName"); \ +static_assert(offsetof(FHeraAudioSocketName, Value) == 0x000000, "Member 'FHeraAudioSocketName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioCharacterSocketDefaults \ +static_assert(alignof(FHeraAudioCharacterSocketDefaults) == 0x000008, "Wrong alignment on FHeraAudioCharacterSocketDefaults"); \ +static_assert(sizeof(FHeraAudioCharacterSocketDefaults) == 0x000040, "Wrong size on FHeraAudioCharacterSocketDefaults"); \ +static_assert(offsetof(FHeraAudioCharacterSocketDefaults, SocketName) == 0x000000, "Member 'FHeraAudioCharacterSocketDefaults::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioCharacterSocketDefaults, bStopWhenOwnerDestroyed) == 0x000008, "Member 'FHeraAudioCharacterSocketDefaults::bStopWhenOwnerDestroyed' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioCharacterSocketDefaults, bEnableAutoFoley) == 0x000009, "Member 'FHeraAudioCharacterSocketDefaults::bEnableAutoFoley' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioCharacterSocketDefaults, AutoFoleyParameters) == 0x000010, "Member 'FHeraAudioCharacterSocketDefaults::AutoFoleyParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioTickFunction \ +static_assert(alignof(FHeraAudioTickFunction) == 0x000008, "Wrong alignment on FHeraAudioTickFunction"); \ +static_assert(sizeof(FHeraAudioTickFunction) == 0x000030, "Wrong size on FHeraAudioTickFunction"); \ + +#define DUMPER7_ASSERTS_FHeraAudioComponentPool \ +static_assert(alignof(FHeraAudioComponentPool) == 0x000008, "Wrong alignment on FHeraAudioComponentPool"); \ +static_assert(sizeof(FHeraAudioComponentPool) == 0x000030, "Wrong size on FHeraAudioComponentPool"); \ +static_assert(offsetof(FHeraAudioComponentPool, FreeComponents) == 0x000000, "Member 'FHeraAudioComponentPool::FreeComponents' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioComponentPool, UsedComponents) == 0x000010, "Member 'FHeraAudioComponentPool::UsedComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioEventSectionTemplate \ +static_assert(alignof(FHeraAudioEventSectionTemplate) == 0x000008, "Wrong alignment on FHeraAudioEventSectionTemplate"); \ +static_assert(sizeof(FHeraAudioEventSectionTemplate) == 0x000028, "Wrong size on FHeraAudioEventSectionTemplate"); \ +static_assert(offsetof(FHeraAudioEventSectionTemplate, Section) == 0x000020, "Member 'FHeraAudioEventSectionTemplate::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioBox \ +static_assert(alignof(FHeraAudioBox) == 0x000008, "Wrong alignment on FHeraAudioBox"); \ +static_assert(sizeof(FHeraAudioBox) == 0x000030, "Wrong size on FHeraAudioBox"); \ +static_assert(offsetof(FHeraAudioBox, Center) == 0x000000, "Member 'FHeraAudioBox::Center' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioBox, Extent) == 0x000018, "Member 'FHeraAudioBox::Extent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioInfiniteEvent \ +static_assert(alignof(FHeraAudioInfiniteEvent) == 0x000008, "Wrong alignment on FHeraAudioInfiniteEvent"); \ +static_assert(sizeof(FHeraAudioInfiniteEvent) == 0x000030, "Wrong size on FHeraAudioInfiniteEvent"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, Event) == 0x000000, "Member 'FHeraAudioInfiniteEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, EventStop) == 0x000008, "Member 'FHeraAudioInfiniteEvent::EventStop' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, CallbackMask) == 0x000010, "Member 'FHeraAudioInfiniteEvent::CallbackMask' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, SeekPercentage) == 0x000014, "Member 'FHeraAudioInfiniteEvent::SeekPercentage' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, PostEventCallback) == 0x000018, "Member 'FHeraAudioInfiniteEvent::PostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioInfiniteEvent, bIsActive) == 0x000028, "Member 'FHeraAudioInfiniteEvent::bIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassAmbientGroupFragment \ +static_assert(alignof(FHeraAudioMassAmbientGroupFragment) == 0x000008, "Wrong alignment on FHeraAudioMassAmbientGroupFragment"); \ +static_assert(sizeof(FHeraAudioMassAmbientGroupFragment) == 0x000008, "Wrong size on FHeraAudioMassAmbientGroupFragment"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassGroupData \ +static_assert(alignof(FHeraAudioMassGroupData) == 0x000004, "Wrong alignment on FHeraAudioMassGroupData"); \ +static_assert(sizeof(FHeraAudioMassGroupData) == 0x000004, "Wrong size on FHeraAudioMassGroupData"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassAmbientGroupSharedFragment \ +static_assert(alignof(FHeraAudioMassAmbientGroupSharedFragment) == 0x000008, "Wrong alignment on FHeraAudioMassAmbientGroupSharedFragment"); \ +static_assert(sizeof(FHeraAudioMassAmbientGroupSharedFragment) == 0x000050, "Wrong size on FHeraAudioMassAmbientGroupSharedFragment"); \ +static_assert(offsetof(FHeraAudioMassAmbientGroupSharedFragment, GroupData) == 0x000000, "Member 'FHeraAudioMassAmbientGroupSharedFragment::GroupData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassAmbientRTPCSharedFragment \ +static_assert(alignof(FHeraAudioMassAmbientRTPCSharedFragment) == 0x000008, "Wrong alignment on FHeraAudioMassAmbientRTPCSharedFragment"); \ +static_assert(sizeof(FHeraAudioMassAmbientRTPCSharedFragment) == 0x000020, "Wrong size on FHeraAudioMassAmbientRTPCSharedFragment"); \ +static_assert(offsetof(FHeraAudioMassAmbientRTPCSharedFragment, GroupIdRtpc) == 0x000000, "Member 'FHeraAudioMassAmbientRTPCSharedFragment::GroupIdRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioMassAmbientRTPCSharedFragment, NumEmittersRtpc) == 0x000008, "Member 'FHeraAudioMassAmbientRTPCSharedFragment::NumEmittersRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioMassAmbientRTPCSharedFragment, BoundsVolumeRtpc) == 0x000010, "Member 'FHeraAudioMassAmbientRTPCSharedFragment::BoundsVolumeRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioMassAmbientRTPCSharedFragment, DensityRtpc) == 0x000018, "Member 'FHeraAudioMassAmbientRTPCSharedFragment::DensityRtpc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassAmbientSharedFragment \ +static_assert(alignof(FHeraAudioMassAmbientSharedFragment) == 0x000008, "Wrong alignment on FHeraAudioMassAmbientSharedFragment"); \ +static_assert(sizeof(FHeraAudioMassAmbientSharedFragment) == 0x000038, "Wrong size on FHeraAudioMassAmbientSharedFragment"); \ +static_assert(offsetof(FHeraAudioMassAmbientSharedFragment, AudioEvent) == 0x000000, "Member 'FHeraAudioMassAmbientSharedFragment::AudioEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassComponentFragment \ +static_assert(alignof(FHeraAudioMassComponentFragment) == 0x000004, "Wrong alignment on FHeraAudioMassComponentFragment"); \ +static_assert(sizeof(FHeraAudioMassComponentFragment) == 0x000008, "Wrong size on FHeraAudioMassComponentFragment"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassComponentEnabledFragment \ +static_assert(alignof(FHeraAudioMassComponentEnabledFragment) == 0x000001, "Wrong alignment on FHeraAudioMassComponentEnabledFragment"); \ +static_assert(sizeof(FHeraAudioMassComponentEnabledFragment) == 0x000001, "Wrong size on FHeraAudioMassComponentEnabledFragment"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassComponentInitialisationQueue \ +static_assert(alignof(FHeraAudioMassComponentInitialisationQueue) == 0x000008, "Wrong alignment on FHeraAudioMassComponentInitialisationQueue"); \ +static_assert(sizeof(FHeraAudioMassComponentInitialisationQueue) == 0x000010, "Wrong size on FHeraAudioMassComponentInitialisationQueue"); \ +static_assert(offsetof(FHeraAudioMassComponentInitialisationQueue, AudioComponents) == 0x000000, "Member 'FHeraAudioMassComponentInitialisationQueue::AudioComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassDisabledTag \ +static_assert(alignof(FHeraAudioMassDisabledTag) == 0x000001, "Wrong alignment on FHeraAudioMassDisabledTag"); \ +static_assert(sizeof(FHeraAudioMassDisabledTag) == 0x000001, "Wrong size on FHeraAudioMassDisabledTag"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassNoAssignedEventTag \ +static_assert(alignof(FHeraAudioMassNoAssignedEventTag) == 0x000001, "Wrong alignment on FHeraAudioMassNoAssignedEventTag"); \ +static_assert(sizeof(FHeraAudioMassNoAssignedEventTag) == 0x000001, "Wrong size on FHeraAudioMassNoAssignedEventTag"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassActiveEventTag \ +static_assert(alignof(FHeraAudioMassActiveEventTag) == 0x000001, "Wrong alignment on FHeraAudioMassActiveEventTag"); \ +static_assert(sizeof(FHeraAudioMassActiveEventTag) == 0x000001, "Wrong size on FHeraAudioMassActiveEventTag"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMassMultiPositionTag \ +static_assert(alignof(FHeraAudioMassMultiPositionTag) == 0x000001, "Wrong alignment on FHeraAudioMassMultiPositionTag"); \ +static_assert(sizeof(FHeraAudioMassMultiPositionTag) == 0x000001, "Wrong size on FHeraAudioMassMultiPositionTag"); \ + +#define DUMPER7_ASSERTS_FHeraAudioMovieSceneTrackImplementation \ +static_assert(alignof(FHeraAudioMovieSceneTrackImplementation) == 0x000008, "Wrong alignment on FHeraAudioMovieSceneTrackImplementation"); \ +static_assert(sizeof(FHeraAudioMovieSceneTrackImplementation) == 0x000010, "Wrong size on FHeraAudioMovieSceneTrackImplementation"); \ + +#define DUMPER7_ASSERTS_FHeraAudioPoolName \ +static_assert(alignof(FHeraAudioPoolName) == 0x000004, "Wrong alignment on FHeraAudioPoolName"); \ +static_assert(sizeof(FHeraAudioPoolName) == 0x000008, "Wrong size on FHeraAudioPoolName"); \ +static_assert(offsetof(FHeraAudioPoolName, Value) == 0x000000, "Member 'FHeraAudioPoolName::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioResonanceObject \ +static_assert(alignof(FHeraAudioResonanceObject) == 0x000008, "Wrong alignment on FHeraAudioResonanceObject"); \ +static_assert(sizeof(FHeraAudioResonanceObject) == 0x000040, "Wrong size on FHeraAudioResonanceObject"); \ +static_assert(offsetof(FHeraAudioResonanceObject, OwnerActor) == 0x000000, "Member 'FHeraAudioResonanceObject::OwnerActor' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioResonanceObject, PrimitiveComponent) == 0x000008, "Member 'FHeraAudioResonanceObject::PrimitiveComponent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioResonanceObject, AudioComponent) == 0x000010, "Member 'FHeraAudioResonanceObject::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioResonanceObject, AudioEvent) == 0x000018, "Member 'FHeraAudioResonanceObject::AudioEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioRtpcQueryData \ +static_assert(alignof(FHeraAudioRtpcQueryData) == 0x000008, "Wrong alignment on FHeraAudioRtpcQueryData"); \ +static_assert(sizeof(FHeraAudioRtpcQueryData) == 0x000058, "Wrong size on FHeraAudioRtpcQueryData"); \ +static_assert(offsetof(FHeraAudioRtpcQueryData, Property) == 0x000000, "Member 'FHeraAudioRtpcQueryData::Property' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioRtpcQueryData, InputRange) == 0x000028, "Member 'FHeraAudioRtpcQueryData::InputRange' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioRtpcQueryData, OutputRange) == 0x000030, "Member 'FHeraAudioRtpcQueryData::OutputRange' has a wrong offset!"); \ +static_assert(offsetof(FHeraAudioRtpcQueryData, bDecibelInput) == 0x000038, "Member 'FHeraAudioRtpcQueryData::bDecibelInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioComponentPoolDefaults \ +static_assert(alignof(FHeraAudioComponentPoolDefaults) == 0x000004, "Wrong alignment on FHeraAudioComponentPoolDefaults"); \ +static_assert(sizeof(FHeraAudioComponentPoolDefaults) == 0x000004, "Wrong size on FHeraAudioComponentPoolDefaults"); \ +static_assert(offsetof(FHeraAudioComponentPoolDefaults, MaxNumComponents) == 0x000000, "Member 'FHeraAudioComponentPoolDefaults::MaxNumComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAudioWwiseProfilingData \ +static_assert(alignof(FHeraAudioWwiseProfilingData) == 0x000004, "Wrong alignment on FHeraAudioWwiseProfilingData"); \ +static_assert(sizeof(FHeraAudioWwiseProfilingData) == 0x000018, "Wrong size on FHeraAudioWwiseProfilingData"); \ + +#define DUMPER7_ASSERTS_FHeraAudioProfilingData \ +static_assert(alignof(FHeraAudioProfilingData) == 0x000004, "Wrong alignment on FHeraAudioProfilingData"); \ +static_assert(sizeof(FHeraAudioProfilingData) == 0x000028, "Wrong size on FHeraAudioProfilingData"); \ + +#define DUMPER7_ASSERTS_FHeraPropertyChangeDelegate \ +static_assert(alignof(FHeraPropertyChangeDelegate) == 0x000008, "Wrong alignment on FHeraPropertyChangeDelegate"); \ +static_assert(sizeof(FHeraPropertyChangeDelegate) == 0x000068, "Wrong size on FHeraPropertyChangeDelegate"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, Property) == 0x000000, "Member 'FHeraPropertyChangeDelegate::Property' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedBool) == 0x000008, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedBool' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedInt) == 0x000018, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedInt' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedFloat) == 0x000028, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedFloat' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedString) == 0x000038, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedString' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedGameplayTag) == 0x000048, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyChangeDelegate, OnPropertyChangedList) == 0x000058, "Member 'FHeraPropertyChangeDelegate::OnPropertyChangedList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPropertyBlueprintDelegateBinding \ +static_assert(alignof(FHeraPropertyBlueprintDelegateBinding) == 0x000008, "Wrong alignment on FHeraPropertyBlueprintDelegateBinding"); \ +static_assert(sizeof(FHeraPropertyBlueprintDelegateBinding) == 0x000010, "Wrong size on FHeraPropertyBlueprintDelegateBinding"); \ +static_assert(offsetof(FHeraPropertyBlueprintDelegateBinding, Property) == 0x000000, "Member 'FHeraPropertyBlueprintDelegateBinding::Property' has a wrong offset!"); \ +static_assert(offsetof(FHeraPropertyBlueprintDelegateBinding, FunctionNameToBind) == 0x000008, "Member 'FHeraPropertyBlueprintDelegateBinding::FunctionNameToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioAmbient \ +static_assert(alignof(AHeraAudioAmbient) == 0x000008, "Wrong alignment on AHeraAudioAmbient"); \ +static_assert(sizeof(AHeraAudioAmbient) == 0x0002B0, "Wrong size on AHeraAudioAmbient"); \ +static_assert(offsetof(AHeraAudioAmbient, AudioEvent) == 0x000298, "Member 'AHeraAudioAmbient::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbient, bAutoPost) == 0x0002A0, "Member 'AHeraAudioAmbient::bAutoPost' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbient, AudioComponent) == 0x0002A8, "Member 'AHeraAudioAmbient::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioAmbientSpline_GetDefaultLocation \ +static_assert(alignof(HeraAudioAmbientSpline_GetDefaultLocation) == 0x000008, "Wrong alignment on HeraAudioAmbientSpline_GetDefaultLocation"); \ +static_assert(sizeof(HeraAudioAmbientSpline_GetDefaultLocation) == 0x000018, "Wrong size on HeraAudioAmbientSpline_GetDefaultLocation"); \ +static_assert(offsetof(HeraAudioAmbientSpline_GetDefaultLocation, ReturnValue) == 0x000000, "Member 'HeraAudioAmbientSpline_GetDefaultLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw \ +static_assert(alignof(HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw) == 0x000008, "Wrong alignment on HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw"); \ +static_assert(sizeof(HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw) == 0x000010, "Wrong size on HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw, InDeltaTime) == 0x000000, "Member 'HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw, InDebugSettings) == 0x000008, "Member 'HeraAudioAmbientSpline_OnAudioComponentTickDebugDraw::InDebugSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioAmbientSpline_OnAudioComponentTickUpdate \ +static_assert(alignof(HeraAudioAmbientSpline_OnAudioComponentTickUpdate) == 0x000004, "Wrong alignment on HeraAudioAmbientSpline_OnAudioComponentTickUpdate"); \ +static_assert(sizeof(HeraAudioAmbientSpline_OnAudioComponentTickUpdate) == 0x000004, "Wrong size on HeraAudioAmbientSpline_OnAudioComponentTickUpdate"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnAudioComponentTickUpdate, InDeltaTime) == 0x000000, "Member 'HeraAudioAmbientSpline_OnAudioComponentTickUpdate::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioAmbientSpline_OnTickGetLocation \ +static_assert(alignof(HeraAudioAmbientSpline_OnTickGetLocation) == 0x000010, "Wrong alignment on HeraAudioAmbientSpline_OnTickGetLocation"); \ +static_assert(sizeof(HeraAudioAmbientSpline_OnTickGetLocation) == 0x000090, "Wrong size on HeraAudioAmbientSpline_OnTickGetLocation"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnTickGetLocation, InDeltaSeconds) == 0x000000, "Member 'HeraAudioAmbientSpline_OnTickGetLocation::InDeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnTickGetLocation, InListenerTransform) == 0x000010, "Member 'HeraAudioAmbientSpline_OnTickGetLocation::InListenerTransform' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioAmbientSpline_OnTickGetLocation, ReturnValue) == 0x000070, "Member 'HeraAudioAmbientSpline_OnTickGetLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly \ +static_assert(alignof(HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong alignment on HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly"); \ +static_assert(sizeof(HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong size on HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly"); \ +static_assert(offsetof(HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly, InDeltaSeconds) == 0x000000, "Member 'HeraAudioAmbientSpline_TickDebugDraw_DevelopmentOnly::InDeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioAmbientSpline \ +static_assert(alignof(AHeraAudioAmbientSpline) == 0x000008, "Wrong alignment on AHeraAudioAmbientSpline"); \ +static_assert(sizeof(AHeraAudioAmbientSpline) == 0x0002E8, "Wrong size on AHeraAudioAmbientSpline"); \ +static_assert(offsetof(AHeraAudioAmbientSpline, AudioEvent) == 0x000298, "Member 'AHeraAudioAmbientSpline::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbientSpline, SplineComponent) == 0x0002A0, "Member 'AHeraAudioAmbientSpline::SplineComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbientSpline, AudioComponent) == 0x0002A8, "Member 'AHeraAudioAmbientSpline::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbientSpline, bAutoPost) == 0x0002B0, "Member 'AHeraAudioAmbientSpline::bAutoPost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioAmbientVolume \ +static_assert(alignof(AHeraAudioAmbientVolume) == 0x000008, "Wrong alignment on AHeraAudioAmbientVolume"); \ +static_assert(sizeof(AHeraAudioAmbientVolume) == 0x0002B0, "Wrong size on AHeraAudioAmbientVolume"); \ +static_assert(offsetof(AHeraAudioAmbientVolume, VolumeComponent) == 0x000298, "Member 'AHeraAudioAmbientVolume::VolumeComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbientVolume, AudioEvent) == 0x0002A0, "Member 'AHeraAudioAmbientVolume::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioAmbientVolume, bAutoPost) == 0x0002A8, "Member 'AHeraAudioAmbientVolume::bAutoPost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioAnimNotifyBase \ +static_assert(alignof(UHeraAudioAnimNotifyBase) == 0x000008, "Wrong alignment on UHeraAudioAnimNotifyBase"); \ +static_assert(sizeof(UHeraAudioAnimNotifyBase) == 0x000038, "Wrong size on UHeraAudioAnimNotifyBase"); \ + +#define DUMPER7_ASSERTS_UHeraAudioAnimNotifyLoopBase \ +static_assert(alignof(UHeraAudioAnimNotifyLoopBase) == 0x000008, "Wrong alignment on UHeraAudioAnimNotifyLoopBase"); \ +static_assert(sizeof(UHeraAudioAnimNotifyLoopBase) == 0x000030, "Wrong size on UHeraAudioAnimNotifyLoopBase"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings) == 0x000008, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings, ReturnValue) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetAudioDebugSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom, InRoomComponent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom::InRoomComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom, OutExecBranches) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom, ReturnValue) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_GetLateReverbForRoom::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetMainListener \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetMainListener) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetMainListener"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetMainListener) == 0x000008, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetMainListener"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetMainListener, ReturnValue) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetMainListener::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform) == 0x000010, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform) == 0x000070, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform, InWorldContextObject) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform, ReturnValue) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_GetMainListenerTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent, InAkComponent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent::InAkComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent, OutExecBranches) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent, ReturnValue) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAkComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent, InAudioComponent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent::InAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent, OutExecBranches) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent, ReturnValue) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_GetRoomContainingAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType, InSurface) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType::InSurface' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType, OutExecBranches) == 0x000001, "Member 'HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType, InWorldContextObject) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType, bUseSecondarySwitches) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType::bUseSecondarySwitches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType, ReturnValue) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_GetSwitchForSurfaceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard) == 0x000028, "Wrong size on HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard, InAkComponent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard::InAkComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard, InWorldPosition) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard::InWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard, OutExecBranches) == 0x000020, "Member 'HeraAudioBlueprintFunctionLibrary_IsAkComponentsEventHeard::OutExecBranches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_IsEventHeard \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_IsEventHeard) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_IsEventHeard"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_IsEventHeard) == 0x000038, "Wrong size on HeraAudioBlueprintFunctionLibrary_IsEventHeard"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsEventHeard, InAkEvent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_IsEventHeard::InAkEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsEventHeard, InWorldPosition) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_IsEventHeard::InWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsEventHeard, OutExecBranches) == 0x000020, "Member 'HeraAudioBlueprintFunctionLibrary_IsEventHeard::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsEventHeard, InAkComponent) == 0x000028, "Member 'HeraAudioBlueprintFunctionLibrary_IsEventHeard::InAkComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_IsEventHeard, ReturnValue) == 0x000030, "Member 'HeraAudioBlueprintFunctionLibrary_IsEventHeard::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_PostEventGlobal \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_PostEventGlobal"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal) == 0x000028, "Wrong size on HeraAudioBlueprintFunctionLibrary_PostEventGlobal"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal, InAkEvent) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventGlobal::InAkEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal, InWorldContextObject) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventGlobal::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal, InCallbackMask) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventGlobal::InCallbackMask' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventGlobal, InPostEventCallback) == 0x000014, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventGlobal::InPostEventCallback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag, InTag) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag, InAudioEvent) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag::InAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag, InStopEvent) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_PostEventOnAllComponentsWithTag::InStopEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig) == 0x000018, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig, InBusName) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig::InBusName' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig, InChannelConfig) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_SetAudioBusChannelConfig::InChannelConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule) == 0x000001, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule) == 0x000001, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule, InPanningRule) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPanningRule::InPanningRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset) == 0x000018, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset, InEffectSlotIndex) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset::InEffectSlotIndex' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset, InSharesetName) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_SetAudioMainOutputPreset::InSharesetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal) == 0x000018, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal, InRtpc) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal::InRtpc' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal, InValue) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal::InInterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCGlobal::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag) == 0x000020, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag, InTag) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag, InRtpc) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag::InRtpc' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag, InValue) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag, InInterpolationTimeMs) == 0x000014, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag::InInterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag, InWorldContextObject) == 0x000018, "Member 'HeraAudioBlueprintFunctionLibrary_SetRTPCOnAllComponentsWithTag::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetState \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetState) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetState"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetState) == 0x000008, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetState"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetState, InStateValue) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetState::InStateValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag \ +static_assert(alignof(HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag) == 0x000008, "Wrong alignment on HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag"); \ +static_assert(sizeof(HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag) == 0x000018, "Wrong size on HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag, InTag) == 0x000000, "Member 'HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag, InSwitchValue) == 0x000008, "Member 'HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag::InSwitchValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag, InWorldContextObject) == 0x000010, "Member 'HeraAudioBlueprintFunctionLibrary_SetSwitchOnAllComponentsWithTag::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioBlueprintFunctionLibrary \ +static_assert(alignof(UHeraAudioBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UHeraAudioBlueprintFunctionLibrary"); \ +static_assert(sizeof(UHeraAudioBlueprintFunctionLibrary) == 0x000028, "Wrong size on UHeraAudioBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterAnimNotify_OnCharacterAudioNotify \ +static_assert(alignof(HeraAudioCharacterAnimNotify_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on HeraAudioCharacterAnimNotify_OnCharacterAudioNotify"); \ +static_assert(sizeof(HeraAudioCharacterAnimNotify_OnCharacterAudioNotify) == 0x000018, "Wrong size on HeraAudioCharacterAnimNotify_OnCharacterAudioNotify"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotify_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'HeraAudioCharacterAnimNotify_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotify_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'HeraAudioCharacterAnimNotify_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotify_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'HeraAudioCharacterAnimNotify_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioCharacterAnimNotify \ +static_assert(alignof(UHeraAudioCharacterAnimNotify) == 0x000008, "Wrong alignment on UHeraAudioCharacterAnimNotify"); \ +static_assert(sizeof(UHeraAudioCharacterAnimNotify) == 0x000050, "Wrong size on UHeraAudioCharacterAnimNotify"); \ +static_assert(offsetof(UHeraAudioCharacterAnimNotify, AudioEvent) == 0x000038, "Member 'UHeraAudioCharacterAnimNotify::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterAnimNotify, SocketName) == 0x000040, "Member 'UHeraAudioCharacterAnimNotify::SocketName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterAnimNotify, AudioContext) == 0x000048, "Member 'UHeraAudioCharacterAnimNotify::AudioContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin \ +static_assert(alignof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin) == 0x000008, "Wrong alignment on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin"); \ +static_assert(sizeof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin) == 0x000020, "Wrong size on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin, CharacterAudioComponent) == 0x000000, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin, MeshComponent) == 0x000008, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin, Animation) == 0x000010, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin, TotalDuration) == 0x000018, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopBegin::TotalDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd \ +static_assert(alignof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd) == 0x000008, "Wrong alignment on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd"); \ +static_assert(sizeof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd) == 0x000018, "Wrong size on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd, CharacterAudioComponent) == 0x000000, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd, MeshComponent) == 0x000008, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd, Animation) == 0x000010, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopEnd::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick \ +static_assert(alignof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick) == 0x000008, "Wrong alignment on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick"); \ +static_assert(sizeof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick) == 0x000020, "Wrong size on HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick, CharacterAudioComponent) == 0x000000, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick, MeshComponent) == 0x000008, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick, Animation) == 0x000010, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick::Animation' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick, FrameDeltaTime) == 0x000018, "Member 'HeraAudioCharacterAnimNotifyLoop_OnCharacterAudioLoopTick::FrameDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioCharacterAnimNotifyLoop \ +static_assert(alignof(UHeraAudioCharacterAnimNotifyLoop) == 0x000008, "Wrong alignment on UHeraAudioCharacterAnimNotifyLoop"); \ +static_assert(sizeof(UHeraAudioCharacterAnimNotifyLoop) == 0x000080, "Wrong size on UHeraAudioCharacterAnimNotifyLoop"); \ +static_assert(offsetof(UHeraAudioCharacterAnimNotifyLoop, SocketLoopEvents) == 0x000030, "Member 'UHeraAudioCharacterAnimNotifyLoop::SocketLoopEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_GetAkComponent \ +static_assert(alignof(HeraAudioCharacterComponent_GetAkComponent) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_GetAkComponent"); \ +static_assert(sizeof(HeraAudioCharacterComponent_GetAkComponent) == 0x000018, "Wrong size on HeraAudioCharacterComponent_GetAkComponent"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAkComponent, InSocketName) == 0x000000, "Member 'HeraAudioCharacterComponent_GetAkComponent::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAkComponent, OutExecBranches) == 0x000008, "Member 'HeraAudioCharacterComponent_GetAkComponent::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAkComponent, ReturnValue) == 0x000010, "Member 'HeraAudioCharacterComponent_GetAkComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_GetAkComponentDefault \ +static_assert(alignof(HeraAudioCharacterComponent_GetAkComponentDefault) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_GetAkComponentDefault"); \ +static_assert(sizeof(HeraAudioCharacterComponent_GetAkComponentDefault) == 0x000010, "Wrong size on HeraAudioCharacterComponent_GetAkComponentDefault"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAkComponentDefault, OutExecBranches) == 0x000000, "Member 'HeraAudioCharacterComponent_GetAkComponentDefault::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAkComponentDefault, ReturnValue) == 0x000008, "Member 'HeraAudioCharacterComponent_GetAkComponentDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_GetAudioComponent \ +static_assert(alignof(HeraAudioCharacterComponent_GetAudioComponent) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_GetAudioComponent"); \ +static_assert(sizeof(HeraAudioCharacterComponent_GetAudioComponent) == 0x000018, "Wrong size on HeraAudioCharacterComponent_GetAudioComponent"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAudioComponent, InSocketName) == 0x000000, "Member 'HeraAudioCharacterComponent_GetAudioComponent::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAudioComponent, OutExecBranches) == 0x000008, "Member 'HeraAudioCharacterComponent_GetAudioComponent::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAudioComponent, ReturnValue) == 0x000010, "Member 'HeraAudioCharacterComponent_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_GetAudioComponentDefault \ +static_assert(alignof(HeraAudioCharacterComponent_GetAudioComponentDefault) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_GetAudioComponentDefault"); \ +static_assert(sizeof(HeraAudioCharacterComponent_GetAudioComponentDefault) == 0x000010, "Wrong size on HeraAudioCharacterComponent_GetAudioComponentDefault"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAudioComponentDefault, OutExecBranches) == 0x000000, "Member 'HeraAudioCharacterComponent_GetAudioComponentDefault::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_GetAudioComponentDefault, ReturnValue) == 0x000008, "Member 'HeraAudioCharacterComponent_GetAudioComponentDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_PostAkEvent \ +static_assert(alignof(HeraAudioCharacterComponent_PostAkEvent) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_PostAkEvent"); \ +static_assert(sizeof(HeraAudioCharacterComponent_PostAkEvent) == 0x000018, "Wrong size on HeraAudioCharacterComponent_PostAkEvent"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostAkEvent, InEvent) == 0x000000, "Member 'HeraAudioCharacterComponent_PostAkEvent::InEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostAkEvent, InSocketName) == 0x000008, "Member 'HeraAudioCharacterComponent_PostAkEvent::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostAkEvent, ReturnValue) == 0x000010, "Member 'HeraAudioCharacterComponent_PostAkEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_PostAkEventOnAllComponents \ +static_assert(alignof(HeraAudioCharacterComponent_PostAkEventOnAllComponents) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_PostAkEventOnAllComponents"); \ +static_assert(sizeof(HeraAudioCharacterComponent_PostAkEventOnAllComponents) == 0x000008, "Wrong size on HeraAudioCharacterComponent_PostAkEventOnAllComponents"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostAkEventOnAllComponents, InEvent) == 0x000000, "Member 'HeraAudioCharacterComponent_PostAkEventOnAllComponents::InEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_PostEvent \ +static_assert(alignof(HeraAudioCharacterComponent_PostEvent) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_PostEvent"); \ +static_assert(sizeof(HeraAudioCharacterComponent_PostEvent) == 0x000038, "Wrong size on HeraAudioCharacterComponent_PostEvent"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, InEvent) == 0x000000, "Member 'HeraAudioCharacterComponent_PostEvent::InEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, InSocketName) == 0x000008, "Member 'HeraAudioCharacterComponent_PostEvent::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, InPostEventCallback) == 0x000010, "Member 'HeraAudioCharacterComponent_PostEvent::InPostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, InCallbackMask) == 0x000020, "Member 'HeraAudioCharacterComponent_PostEvent::InCallbackMask' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, InEventStop) == 0x000028, "Member 'HeraAudioCharacterComponent_PostEvent::InEventStop' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEvent, bInForce) == 0x000030, "Member 'HeraAudioCharacterComponent_PostEvent::bInForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_PostEventOnAllComponents \ +static_assert(alignof(HeraAudioCharacterComponent_PostEventOnAllComponents) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_PostEventOnAllComponents"); \ +static_assert(sizeof(HeraAudioCharacterComponent_PostEventOnAllComponents) == 0x000008, "Wrong size on HeraAudioCharacterComponent_PostEventOnAllComponents"); \ +static_assert(offsetof(HeraAudioCharacterComponent_PostEventOnAllComponents, InEvent) == 0x000000, "Member 'HeraAudioCharacterComponent_PostEventOnAllComponents::InEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_SetRTPC \ +static_assert(alignof(HeraAudioCharacterComponent_SetRTPC) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_SetRTPC"); \ +static_assert(sizeof(HeraAudioCharacterComponent_SetRTPC) == 0x000018, "Wrong size on HeraAudioCharacterComponent_SetRTPC"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPC, InRtpcValue) == 0x000000, "Member 'HeraAudioCharacterComponent_SetRTPC::InRtpcValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPC, InValue) == 0x000008, "Member 'HeraAudioCharacterComponent_SetRTPC::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPC, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioCharacterComponent_SetRTPC::InInterpolationTimeMs' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPC, InSocketName) == 0x000010, "Member 'HeraAudioCharacterComponent_SetRTPC::InSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_SetRTPCOnAllComponents \ +static_assert(alignof(HeraAudioCharacterComponent_SetRTPCOnAllComponents) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_SetRTPCOnAllComponents"); \ +static_assert(sizeof(HeraAudioCharacterComponent_SetRTPCOnAllComponents) == 0x000010, "Wrong size on HeraAudioCharacterComponent_SetRTPCOnAllComponents"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPCOnAllComponents, InRtpcValue) == 0x000000, "Member 'HeraAudioCharacterComponent_SetRTPCOnAllComponents::InRtpcValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPCOnAllComponents, InValue) == 0x000008, "Member 'HeraAudioCharacterComponent_SetRTPCOnAllComponents::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetRTPCOnAllComponents, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioCharacterComponent_SetRTPCOnAllComponents::InInterpolationTimeMs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_SetSwitch \ +static_assert(alignof(HeraAudioCharacterComponent_SetSwitch) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_SetSwitch"); \ +static_assert(sizeof(HeraAudioCharacterComponent_SetSwitch) == 0x000010, "Wrong size on HeraAudioCharacterComponent_SetSwitch"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetSwitch, InSwitchValue) == 0x000000, "Member 'HeraAudioCharacterComponent_SetSwitch::InSwitchValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetSwitch, InSocketName) == 0x000008, "Member 'HeraAudioCharacterComponent_SetSwitch::InSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterComponent_SetSwitchOnAllComponents \ +static_assert(alignof(HeraAudioCharacterComponent_SetSwitchOnAllComponents) == 0x000008, "Wrong alignment on HeraAudioCharacterComponent_SetSwitchOnAllComponents"); \ +static_assert(sizeof(HeraAudioCharacterComponent_SetSwitchOnAllComponents) == 0x000008, "Wrong size on HeraAudioCharacterComponent_SetSwitchOnAllComponents"); \ +static_assert(offsetof(HeraAudioCharacterComponent_SetSwitchOnAllComponents, InSwitchValue) == 0x000000, "Member 'HeraAudioCharacterComponent_SetSwitchOnAllComponents::InSwitchValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioCharacterComponent \ +static_assert(alignof(UHeraAudioCharacterComponent) == 0x000010, "Wrong alignment on UHeraAudioCharacterComponent"); \ +static_assert(sizeof(UHeraAudioCharacterComponent) == 0x0003A0, "Wrong size on UHeraAudioCharacterComponent"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, DefaultSocket) == 0x0002A0, "Member 'UHeraAudioCharacterComponent::DefaultSocket' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, AttachmentSocketDefaults) == 0x0002A8, "Member 'UHeraAudioCharacterComponent::AttachmentSocketDefaults' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, CharacterSpeedRtpc) == 0x0002B8, "Member 'UHeraAudioCharacterComponent::CharacterSpeedRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, CharacterLocomotionDirectionRtpc) == 0x0002C0, "Member 'UHeraAudioCharacterComponent::CharacterLocomotionDirectionRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, AudioComponents) == 0x0002C8, "Member 'UHeraAudioCharacterComponent::AudioComponents' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, AutoFoleyInfo) == 0x000318, "Member 'UHeraAudioCharacterComponent::AutoFoleyInfo' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, MeshComponent) == 0x000368, "Member 'UHeraAudioCharacterComponent::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioCharacterComponent, AttachmentSockets) == 0x000370, "Member 'UHeraAudioCharacterComponent::AttachmentSockets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioCharacterInterface_GetAudioCharacterComponent \ +static_assert(alignof(HeraAudioCharacterInterface_GetAudioCharacterComponent) == 0x000008, "Wrong alignment on HeraAudioCharacterInterface_GetAudioCharacterComponent"); \ +static_assert(sizeof(HeraAudioCharacterInterface_GetAudioCharacterComponent) == 0x000008, "Wrong size on HeraAudioCharacterInterface_GetAudioCharacterComponent"); \ +static_assert(offsetof(HeraAudioCharacterInterface_GetAudioCharacterComponent, ReturnValue) == 0x000000, "Member 'HeraAudioCharacterInterface_GetAudioCharacterComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraAudioCharacterInterface \ +static_assert(alignof(IHeraAudioCharacterInterface) == 0x000001, "Wrong alignment on IHeraAudioCharacterInterface"); \ +static_assert(sizeof(IHeraAudioCharacterInterface) == 0x000001, "Wrong size on IHeraAudioCharacterInterface"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMovieSceneSection \ +static_assert(alignof(UHeraAudioMovieSceneSection) == 0x000008, "Wrong alignment on UHeraAudioMovieSceneSection"); \ +static_assert(sizeof(UHeraAudioMovieSceneSection) == 0x000108, "Wrong size on UHeraAudioMovieSceneSection"); \ +static_assert(offsetof(UHeraAudioMovieSceneSection, StartEvent) == 0x0000F0, "Member 'UHeraAudioMovieSceneSection::StartEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMovieSceneSection, StopEvent) == 0x0000F8, "Member 'UHeraAudioMovieSceneSection::StopEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMovieSceneSection, bForcePost) == 0x000100, "Member 'UHeraAudioMovieSceneSection::bForcePost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioCharacterMovieSceneSection \ +static_assert(alignof(UHeraAudioCharacterMovieSceneSection) == 0x000008, "Wrong alignment on UHeraAudioCharacterMovieSceneSection"); \ +static_assert(sizeof(UHeraAudioCharacterMovieSceneSection) == 0x000110, "Wrong size on UHeraAudioCharacterMovieSceneSection"); \ +static_assert(offsetof(UHeraAudioCharacterMovieSceneSection, SocketName) == 0x000108, "Member 'UHeraAudioCharacterMovieSceneSection::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioCharacterMovieSceneTrack \ +static_assert(alignof(UHeraAudioCharacterMovieSceneTrack) == 0x000008, "Wrong alignment on UHeraAudioCharacterMovieSceneTrack"); \ +static_assert(sizeof(UHeraAudioCharacterMovieSceneTrack) == 0x0000B0, "Wrong size on UHeraAudioCharacterMovieSceneTrack"); \ +static_assert(offsetof(UHeraAudioCharacterMovieSceneTrack, Sections) == 0x0000A0, "Member 'UHeraAudioCharacterMovieSceneTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_PostAkEvent \ +static_assert(alignof(HeraAudioComponent_PostAkEvent) == 0x000008, "Wrong alignment on HeraAudioComponent_PostAkEvent"); \ +static_assert(sizeof(HeraAudioComponent_PostAkEvent) == 0x000010, "Wrong size on HeraAudioComponent_PostAkEvent"); \ +static_assert(offsetof(HeraAudioComponent_PostAkEvent, InEvent) == 0x000000, "Member 'HeraAudioComponent_PostAkEvent::InEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostAkEvent, bInForce) == 0x000008, "Member 'HeraAudioComponent_PostAkEvent::bInForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_PostEvent \ +static_assert(alignof(HeraAudioComponent_PostEvent) == 0x000008, "Wrong alignment on HeraAudioComponent_PostEvent"); \ +static_assert(sizeof(HeraAudioComponent_PostEvent) == 0x000030, "Wrong size on HeraAudioComponent_PostEvent"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, InEvent) == 0x000000, "Member 'HeraAudioComponent_PostEvent::InEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, InPostEventCallback) == 0x000008, "Member 'HeraAudioComponent_PostEvent::InPostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, InCallbackMask) == 0x000018, "Member 'HeraAudioComponent_PostEvent::InCallbackMask' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, InEventStop) == 0x000020, "Member 'HeraAudioComponent_PostEvent::InEventStop' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, bInForce) == 0x000028, "Member 'HeraAudioComponent_PostEvent::bInForce' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_PostEvent, InSeekPercentage) == 0x00002C, "Member 'HeraAudioComponent_PostEvent::InSeekPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_SetRTPC \ +static_assert(alignof(HeraAudioComponent_SetRTPC) == 0x000008, "Wrong alignment on HeraAudioComponent_SetRTPC"); \ +static_assert(sizeof(HeraAudioComponent_SetRTPC) == 0x000010, "Wrong size on HeraAudioComponent_SetRTPC"); \ +static_assert(offsetof(HeraAudioComponent_SetRTPC, InRtpcValue) == 0x000000, "Member 'HeraAudioComponent_SetRTPC::InRtpcValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_SetRTPC, InValue) == 0x000008, "Member 'HeraAudioComponent_SetRTPC::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioComponent_SetRTPC, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioComponent_SetRTPC::InInterpolationTimeMs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_SetStopWhenOwnerDestroyed \ +static_assert(alignof(HeraAudioComponent_SetStopWhenOwnerDestroyed) == 0x000001, "Wrong alignment on HeraAudioComponent_SetStopWhenOwnerDestroyed"); \ +static_assert(sizeof(HeraAudioComponent_SetStopWhenOwnerDestroyed) == 0x000001, "Wrong size on HeraAudioComponent_SetStopWhenOwnerDestroyed"); \ +static_assert(offsetof(HeraAudioComponent_SetStopWhenOwnerDestroyed, bInStopWhenOwnerDestroyed) == 0x000000, "Member 'HeraAudioComponent_SetStopWhenOwnerDestroyed::bInStopWhenOwnerDestroyed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_SetSwitch \ +static_assert(alignof(HeraAudioComponent_SetSwitch) == 0x000008, "Wrong alignment on HeraAudioComponent_SetSwitch"); \ +static_assert(sizeof(HeraAudioComponent_SetSwitch) == 0x000008, "Wrong size on HeraAudioComponent_SetSwitch"); \ +static_assert(offsetof(HeraAudioComponent_SetSwitch, InSwitchValue) == 0x000000, "Member 'HeraAudioComponent_SetSwitch::InSwitchValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_GetAttenuationRadius \ +static_assert(alignof(HeraAudioComponent_GetAttenuationRadius) == 0x000004, "Wrong alignment on HeraAudioComponent_GetAttenuationRadius"); \ +static_assert(sizeof(HeraAudioComponent_GetAttenuationRadius) == 0x000004, "Wrong size on HeraAudioComponent_GetAttenuationRadius"); \ +static_assert(offsetof(HeraAudioComponent_GetAttenuationRadius, ReturnValue) == 0x000000, "Member 'HeraAudioComponent_GetAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioComponent_IsAudioActive \ +static_assert(alignof(HeraAudioComponent_IsAudioActive) == 0x000001, "Wrong alignment on HeraAudioComponent_IsAudioActive"); \ +static_assert(sizeof(HeraAudioComponent_IsAudioActive) == 0x000001, "Wrong size on HeraAudioComponent_IsAudioActive"); \ +static_assert(offsetof(HeraAudioComponent_IsAudioActive, ReturnValue) == 0x000000, "Member 'HeraAudioComponent_IsAudioActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioComponent \ +static_assert(alignof(UHeraAudioComponent) == 0x000010, "Wrong alignment on UHeraAudioComponent"); \ +static_assert(sizeof(UHeraAudioComponent) == 0x000340, "Wrong size on UHeraAudioComponent"); \ +static_assert(offsetof(UHeraAudioComponent, OnAudioActiveChanged) == 0x0002A0, "Member 'UHeraAudioComponent::OnAudioActiveChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, bStopWhenOwnerDestroyed) == 0x0002C0, "Member 'UHeraAudioComponent::bStopWhenOwnerDestroyed' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, AttenuationScalingFactor) == 0x0002C4, "Member 'UHeraAudioComponent::AttenuationScalingFactor' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, OuterRadius) == 0x0002C8, "Member 'UHeraAudioComponent::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, InnerRadius) == 0x0002CC, "Member 'UHeraAudioComponent::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, CategoryTag) == 0x0002D0, "Member 'UHeraAudioComponent::CategoryTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, AkComponent) == 0x0002D8, "Member 'UHeraAudioComponent::AkComponent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, LoudestInfiniteEvent) == 0x0002E0, "Member 'UHeraAudioComponent::LoudestInfiniteEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, InfiniteEvents) == 0x0002E8, "Member 'UHeraAudioComponent::InfiniteEvents' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, bInfiniteEventsDirty) == 0x000338, "Member 'UHeraAudioComponent::bInfiniteEventsDirty' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, bInfiniteEventsActive) == 0x000339, "Member 'UHeraAudioComponent::bInfiniteEventsActive' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponent, bAudioActive) == 0x00033A, "Member 'UHeraAudioComponent::bAudioActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioComponentManager \ +static_assert(alignof(UHeraAudioComponentManager) == 0x000008, "Wrong alignment on UHeraAudioComponentManager"); \ +static_assert(sizeof(UHeraAudioComponentManager) == 0x000140, "Wrong size on UHeraAudioComponentManager"); \ +static_assert(offsetof(UHeraAudioComponentManager, AudioComponents) == 0x000030, "Member 'UHeraAudioComponentManager::AudioComponents' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponentManager, CharacterAudioComponents) == 0x000040, "Member 'UHeraAudioComponentManager::CharacterAudioComponents' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponentManager, GeometryComponents) == 0x000050, "Member 'UHeraAudioComponentManager::GeometryComponents' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponentManager, EnvironmentSensor) == 0x000060, "Member 'UHeraAudioComponentManager::EnvironmentSensor' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioComponentManager, ResonanceSystem) == 0x000068, "Member 'UHeraAudioComponentManager::ResonanceSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowActorLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowAttenuation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowComponentName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowEventName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowOnlyActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowPlayerEmitters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowRTPCs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters \ +static_assert(alignof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters) == 0x000001, "Wrong alignment on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters"); \ +static_assert(sizeof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters) == 0x000001, "Wrong size on HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters"); \ +static_assert(offsetof(HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters, ReturnValue) == 0x000000, "Member 'HeraAudioDebugSettings_DebugAudioComponentFlagIsSet_ShowVolumeEmitters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioDebugSettings \ +static_assert(alignof(UHeraAudioDebugSettings) == 0x000008, "Wrong alignment on UHeraAudioDebugSettings"); \ +static_assert(sizeof(UHeraAudioDebugSettings) == 0x0001C8, "Wrong size on UHeraAudioDebugSettings"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bUseDebugSurfaceSwitch) == 0x000058, "Member 'UHeraAudioDebugSettings::bUseDebugSurfaceSwitch' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, DebugSurfaceSwitch) == 0x000060, "Member 'UHeraAudioDebugSettings::DebugSurfaceSwitch' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientDebugDrawFlags) == 0x000088, "Member 'UHeraAudioDebugSettings::AmbientDebugDrawFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientTransformScale) == 0x00008C, "Member 'UHeraAudioDebugSettings::AmbientTransformScale' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientTextScale) == 0x000090, "Member 'UHeraAudioDebugSettings::AmbientTextScale' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientDistanceFilter) == 0x000094, "Member 'UHeraAudioDebugSettings::AmbientDistanceFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientActorFilter) == 0x000098, "Member 'UHeraAudioDebugSettings::AmbientActorFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientActiveColour) == 0x0000A8, "Member 'UHeraAudioDebugSettings::AmbientActiveColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientInactiveColour) == 0x0000B8, "Member 'UHeraAudioDebugSettings::AmbientInactiveColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, AmbientVolumeColour) == 0x0000C8, "Member 'UHeraAudioDebugSettings::AmbientVolumeColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterDebugDrawFlags) == 0x0000D8, "Member 'UHeraAudioDebugSettings::CharacterDebugDrawFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterSphereRadiusScale) == 0x0000DC, "Member 'UHeraAudioDebugSettings::CharacterSphereRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterDistanceFilter) == 0x0000E0, "Member 'UHeraAudioDebugSettings::CharacterDistanceFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterActorFilter) == 0x0000E8, "Member 'UHeraAudioDebugSettings::CharacterActorFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterSocketVelocityColour) == 0x0000F8, "Member 'UHeraAudioDebugSettings::CharacterSocketVelocityColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterSocketAccelerationColour) == 0x000108, "Member 'UHeraAudioDebugSettings::CharacterSocketAccelerationColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, CharacterSocketAngularVelocityColour) == 0x000118, "Member 'UHeraAudioDebugSettings::CharacterSocketAngularVelocityColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bRtpcDebugDrawScreenSpace) == 0x000128, "Member 'UHeraAudioDebugSettings::bRtpcDebugDrawScreenSpace' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bOutputRtpcDebugDrawScreenSpace) == 0x000129, "Member 'UHeraAudioDebugSettings::bOutputRtpcDebugDrawScreenSpace' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, RtpcFilter) == 0x000130, "Member 'UHeraAudioDebugSettings::RtpcFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentDebugDrawFlags) == 0x000140, "Member 'UHeraAudioDebugSettings::EnvironmentDebugDrawFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentSamplingLineTraceThickness) == 0x000144, "Member 'UHeraAudioDebugSettings::EnvironmentSamplingLineTraceThickness' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentSamplingLineTraceEndSize) == 0x000148, "Member 'UHeraAudioDebugSettings::EnvironmentSamplingLineTraceEndSize' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentGeometryWireframeThickness) == 0x00014C, "Member 'UHeraAudioDebugSettings::EnvironmentGeometryWireframeThickness' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentLineTraceHitColour) == 0x000150, "Member 'UHeraAudioDebugSettings::EnvironmentLineTraceHitColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentLineTraceMissColour) == 0x000160, "Member 'UHeraAudioDebugSettings::EnvironmentLineTraceMissColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentLineTraceEndColour) == 0x000170, "Member 'UHeraAudioDebugSettings::EnvironmentLineTraceEndColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentReverbVolumeColour) == 0x000180, "Member 'UHeraAudioDebugSettings::EnvironmentReverbVolumeColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, EnvironmentGeometryColour) == 0x000190, "Member 'UHeraAudioDebugSettings::EnvironmentGeometryColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, PortalDebugDrawFlags) == 0x0001A0, "Member 'UHeraAudioDebugSettings::PortalDebugDrawFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bPropertyHandlerEnableDebug) == 0x0001A4, "Member 'UHeraAudioDebugSettings::bPropertyHandlerEnableDebug' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, PropertyHandlerFilter) == 0x0001A8, "Member 'UHeraAudioDebugSettings::PropertyHandlerFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, VolumeWireframeThickness) == 0x0001B8, "Member 'UHeraAudioDebugSettings::VolumeWireframeThickness' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bMotionEnabled) == 0x0001BC, "Member 'UHeraAudioDebugSettings::bMotionEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, StatsDisplayFlags) == 0x0001C0, "Member 'UHeraAudioDebugSettings::StatsDisplayFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bStatsDisplayMaxValue) == 0x0001C4, "Member 'UHeraAudioDebugSettings::bStatsDisplayMaxValue' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioDebugSettings, bStatsDisplayBudgetValue) == 0x0001C5, "Member 'UHeraAudioDebugSettings::bStatsDisplayBudgetValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioEnvironmentSensor \ +static_assert(alignof(UHeraAudioEnvironmentSensor) == 0x000008, "Wrong alignment on UHeraAudioEnvironmentSensor"); \ +static_assert(sizeof(UHeraAudioEnvironmentSensor) == 0x0000E8, "Wrong size on UHeraAudioEnvironmentSensor"); \ +static_assert(offsetof(UHeraAudioEnvironmentSensor, ReverbSizeRTPC) == 0x000028, "Member 'UHeraAudioEnvironmentSensor::ReverbSizeRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioEnvironmentSensor, ReverbOpennessRTPC) == 0x000030, "Member 'UHeraAudioEnvironmentSensor::ReverbOpennessRTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioGeometry \ +static_assert(alignof(AHeraAudioGeometry) == 0x000008, "Wrong alignment on AHeraAudioGeometry"); \ +static_assert(sizeof(AHeraAudioGeometry) == 0x0002A0, "Wrong size on AHeraAudioGeometry"); \ +static_assert(offsetof(AHeraAudioGeometry, GeometryComponent) == 0x000298, "Member 'AHeraAudioGeometry::GeometryComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioGeometryComponent_GetBoxPrimitives \ +static_assert(alignof(HeraAudioGeometryComponent_GetBoxPrimitives) == 0x000008, "Wrong alignment on HeraAudioGeometryComponent_GetBoxPrimitives"); \ +static_assert(sizeof(HeraAudioGeometryComponent_GetBoxPrimitives) == 0x000010, "Wrong size on HeraAudioGeometryComponent_GetBoxPrimitives"); \ +static_assert(offsetof(HeraAudioGeometryComponent_GetBoxPrimitives, ReturnValue) == 0x000000, "Member 'HeraAudioGeometryComponent_GetBoxPrimitives::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioGeometryComponent \ +static_assert(alignof(UHeraAudioGeometryComponent) == 0x000010, "Wrong alignment on UHeraAudioGeometryComponent"); \ +static_assert(sizeof(UHeraAudioGeometryComponent) == 0x000590, "Wrong size on UHeraAudioGeometryComponent"); \ +static_assert(offsetof(UHeraAudioGeometryComponent, BoxPrimitives) == 0x000578, "Member 'UHeraAudioGeometryComponent::BoxPrimitives' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioGeometryComponent, BodySetup) == 0x000588, "Member 'UHeraAudioGeometryComponent::BodySetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioGlobalGameObject \ +static_assert(alignof(UHeraAudioGlobalGameObject) == 0x000010, "Wrong alignment on UHeraAudioGlobalGameObject"); \ +static_assert(sizeof(UHeraAudioGlobalGameObject) == 0x0002C0, "Wrong size on UHeraAudioGlobalGameObject"); \ + +#define DUMPER7_ASSERTS_UHeraAudioManagedComponent \ +static_assert(alignof(UHeraAudioManagedComponent) == 0x000010, "Wrong alignment on UHeraAudioManagedComponent"); \ +static_assert(sizeof(UHeraAudioManagedComponent) == 0x0002C0, "Wrong size on UHeraAudioManagedComponent"); \ +static_assert(offsetof(UHeraAudioManagedComponent, bAutoPost) == 0x0002A0, "Member 'UHeraAudioManagedComponent::bAutoPost' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioManagedComponent, AkComponent) == 0x0002A8, "Member 'UHeraAudioManagedComponent::AkComponent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioManagedComponent, OnPlaybackStateChanged) == 0x0002B0, "Member 'UHeraAudioManagedComponent::OnPlaybackStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioManagedComponent, bManuallyStarted) == 0x0002B1, "Member 'UHeraAudioManagedComponent::bManuallyStarted' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioManagedComponent, bIsPlaying) == 0x0002B2, "Member 'UHeraAudioManagedComponent::bIsPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioMassAmbient \ +static_assert(alignof(AHeraAudioMassAmbient) == 0x000008, "Wrong alignment on AHeraAudioMassAmbient"); \ +static_assert(sizeof(AHeraAudioMassAmbient) == 0x0002A0, "Wrong size on AHeraAudioMassAmbient"); \ +static_assert(offsetof(AHeraAudioMassAmbient, AudioComponent) == 0x000298, "Member 'AHeraAudioMassAmbient::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientActiveProcessor \ +static_assert(alignof(UHeraAudioMassAmbientActiveProcessor) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientActiveProcessor"); \ +static_assert(sizeof(UHeraAudioMassAmbientActiveProcessor) == 0x000360, "Wrong size on UHeraAudioMassAmbientActiveProcessor"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientInactiveProcessor \ +static_assert(alignof(UHeraAudioMassAmbientInactiveProcessor) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientInactiveProcessor"); \ +static_assert(sizeof(UHeraAudioMassAmbientInactiveProcessor) == 0x000360, "Wrong size on UHeraAudioMassAmbientInactiveProcessor"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientMultiPositionActiveProcessor \ +static_assert(alignof(UHeraAudioMassAmbientMultiPositionActiveProcessor) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientMultiPositionActiveProcessor"); \ +static_assert(sizeof(UHeraAudioMassAmbientMultiPositionActiveProcessor) == 0x000360, "Wrong size on UHeraAudioMassAmbientMultiPositionActiveProcessor"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientMultiPositionInactiveProcessor \ +static_assert(alignof(UHeraAudioMassAmbientMultiPositionInactiveProcessor) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientMultiPositionInactiveProcessor"); \ +static_assert(sizeof(UHeraAudioMassAmbientMultiPositionInactiveProcessor) == 0x000360, "Wrong size on UHeraAudioMassAmbientMultiPositionInactiveProcessor"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientRTPCTrait \ +static_assert(alignof(UHeraAudioMassAmbientRTPCTrait) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientRTPCTrait"); \ +static_assert(sizeof(UHeraAudioMassAmbientRTPCTrait) == 0x000048, "Wrong size on UHeraAudioMassAmbientRTPCTrait"); \ +static_assert(offsetof(UHeraAudioMassAmbientRTPCTrait, GroupIdRtpc) == 0x000028, "Member 'UHeraAudioMassAmbientRTPCTrait::GroupIdRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassAmbientRTPCTrait, NumEmittersRtpc) == 0x000030, "Member 'UHeraAudioMassAmbientRTPCTrait::NumEmittersRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassAmbientRTPCTrait, BoundsVolumeRtpc) == 0x000038, "Member 'UHeraAudioMassAmbientRTPCTrait::BoundsVolumeRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassAmbientRTPCTrait, DensityRtpc) == 0x000040, "Member 'UHeraAudioMassAmbientRTPCTrait::DensityRtpc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAmbientTrait \ +static_assert(alignof(UHeraAudioMassAmbientTrait) == 0x000008, "Wrong alignment on UHeraAudioMassAmbientTrait"); \ +static_assert(sizeof(UHeraAudioMassAmbientTrait) == 0x000038, "Wrong size on UHeraAudioMassAmbientTrait"); \ +static_assert(offsetof(UHeraAudioMassAmbientTrait, AudioEvent) == 0x000028, "Member 'UHeraAudioMassAmbientTrait::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassAmbientTrait, bUseMultiPosition) == 0x000030, "Member 'UHeraAudioMassAmbientTrait::bUseMultiPosition' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassAmbientTrait, MultiPositionGroupingDistance) == 0x000034, "Member 'UHeraAudioMassAmbientTrait::MultiPositionGroupingDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioMassComponent_SetEnabled \ +static_assert(alignof(HeraAudioMassComponent_SetEnabled) == 0x000001, "Wrong alignment on HeraAudioMassComponent_SetEnabled"); \ +static_assert(sizeof(HeraAudioMassComponent_SetEnabled) == 0x000001, "Wrong size on HeraAudioMassComponent_SetEnabled"); \ +static_assert(offsetof(HeraAudioMassComponent_SetEnabled, bInEnabled) == 0x000000, "Member 'HeraAudioMassComponent_SetEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioMassComponent_SetRTPC \ +static_assert(alignof(HeraAudioMassComponent_SetRTPC) == 0x000008, "Wrong alignment on HeraAudioMassComponent_SetRTPC"); \ +static_assert(sizeof(HeraAudioMassComponent_SetRTPC) == 0x000010, "Wrong size on HeraAudioMassComponent_SetRTPC"); \ +static_assert(offsetof(HeraAudioMassComponent_SetRTPC, InRtpcValue) == 0x000000, "Member 'HeraAudioMassComponent_SetRTPC::InRtpcValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioMassComponent_SetRTPC, InValue) == 0x000008, "Member 'HeraAudioMassComponent_SetRTPC::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioMassComponent_SetRTPC, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioMassComponent_SetRTPC::InInterpolationTimeMs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioMassComponent_IsAudioActive \ +static_assert(alignof(HeraAudioMassComponent_IsAudioActive) == 0x000001, "Wrong alignment on HeraAudioMassComponent_IsAudioActive"); \ +static_assert(sizeof(HeraAudioMassComponent_IsAudioActive) == 0x000001, "Wrong size on HeraAudioMassComponent_IsAudioActive"); \ +static_assert(offsetof(HeraAudioMassComponent_IsAudioActive, ReturnValue) == 0x000000, "Member 'HeraAudioMassComponent_IsAudioActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioMassComponent_IsEnabled \ +static_assert(alignof(HeraAudioMassComponent_IsEnabled) == 0x000001, "Wrong alignment on HeraAudioMassComponent_IsEnabled"); \ +static_assert(sizeof(HeraAudioMassComponent_IsEnabled) == 0x000001, "Wrong size on HeraAudioMassComponent_IsEnabled"); \ +static_assert(offsetof(HeraAudioMassComponent_IsEnabled, ReturnValue) == 0x000000, "Member 'HeraAudioMassComponent_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioMassComponent_IsMultiPosition \ +static_assert(alignof(HeraAudioMassComponent_IsMultiPosition) == 0x000001, "Wrong alignment on HeraAudioMassComponent_IsMultiPosition"); \ +static_assert(sizeof(HeraAudioMassComponent_IsMultiPosition) == 0x000001, "Wrong size on HeraAudioMassComponent_IsMultiPosition"); \ +static_assert(offsetof(HeraAudioMassComponent_IsMultiPosition, ReturnValue) == 0x000000, "Member 'HeraAudioMassComponent_IsMultiPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassComponent \ +static_assert(alignof(UHeraAudioMassComponent) == 0x000010, "Wrong alignment on UHeraAudioMassComponent"); \ +static_assert(sizeof(UHeraAudioMassComponent) == 0x000300, "Wrong size on UHeraAudioMassComponent"); \ +static_assert(offsetof(UHeraAudioMassComponent, EntityConfig) == 0x0002A0, "Member 'UHeraAudioMassComponent::EntityConfig' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassComponent, bEnabled) == 0x0002D0, "Member 'UHeraAudioMassComponent::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassComponentTranslatorToMass \ +static_assert(alignof(UHeraAudioMassComponentTranslatorToMass) == 0x000008, "Wrong alignment on UHeraAudioMassComponentTranslatorToMass"); \ +static_assert(sizeof(UHeraAudioMassComponentTranslatorToMass) == 0x000380, "Wrong size on UHeraAudioMassComponentTranslatorToMass"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAudioActiveAddedObserver \ +static_assert(alignof(UHeraAudioMassAudioActiveAddedObserver) == 0x000008, "Wrong alignment on UHeraAudioMassAudioActiveAddedObserver"); \ +static_assert(sizeof(UHeraAudioMassAudioActiveAddedObserver) == 0x000370, "Wrong size on UHeraAudioMassAudioActiveAddedObserver"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAudioActiveRemovedObserver \ +static_assert(alignof(UHeraAudioMassAudioActiveRemovedObserver) == 0x000008, "Wrong alignment on UHeraAudioMassAudioActiveRemovedObserver"); \ +static_assert(sizeof(UHeraAudioMassAudioActiveRemovedObserver) == 0x000370, "Wrong size on UHeraAudioMassAudioActiveRemovedObserver"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAudioMultiPositionAddedObserver \ +static_assert(alignof(UHeraAudioMassAudioMultiPositionAddedObserver) == 0x000008, "Wrong alignment on UHeraAudioMassAudioMultiPositionAddedObserver"); \ +static_assert(sizeof(UHeraAudioMassAudioMultiPositionAddedObserver) == 0x000370, "Wrong size on UHeraAudioMassAudioMultiPositionAddedObserver"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassAudioMultiPositionRemovedObserver \ +static_assert(alignof(UHeraAudioMassAudioMultiPositionRemovedObserver) == 0x000008, "Wrong alignment on UHeraAudioMassAudioMultiPositionRemovedObserver"); \ +static_assert(sizeof(UHeraAudioMassAudioMultiPositionRemovedObserver) == 0x000370, "Wrong size on UHeraAudioMassAudioMultiPositionRemovedObserver"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassComponentSyncTrait \ +static_assert(alignof(UHeraAudioMassComponentSyncTrait) == 0x000008, "Wrong alignment on UHeraAudioMassComponentSyncTrait"); \ +static_assert(sizeof(UHeraAudioMassComponentSyncTrait) == 0x000028, "Wrong size on UHeraAudioMassComponentSyncTrait"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMassSubsystem \ +static_assert(alignof(UHeraAudioMassSubsystem) == 0x000008, "Wrong alignment on UHeraAudioMassSubsystem"); \ +static_assert(sizeof(UHeraAudioMassSubsystem) == 0x0001A0, "Wrong size on UHeraAudioMassSubsystem"); \ +static_assert(offsetof(UHeraAudioMassSubsystem, SpawnerSystem) == 0x000030, "Member 'UHeraAudioMassSubsystem::SpawnerSystem' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassSubsystem, SimulationSystem) == 0x000038, "Member 'UHeraAudioMassSubsystem::SimulationSystem' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioMassSubsystem, AudioSubsystem) == 0x000040, "Member 'UHeraAudioMassSubsystem::AudioSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioMovieSceneTrack \ +static_assert(alignof(UHeraAudioMovieSceneTrack) == 0x000008, "Wrong alignment on UHeraAudioMovieSceneTrack"); \ +static_assert(sizeof(UHeraAudioMovieSceneTrack) == 0x0000B0, "Wrong size on UHeraAudioMovieSceneTrack"); \ +static_assert(offsetof(UHeraAudioMovieSceneTrack, Sections) == 0x0000A0, "Member 'UHeraAudioMovieSceneTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioNiagaraDataInterface \ +static_assert(alignof(UHeraAudioNiagaraDataInterface) == 0x000008, "Wrong alignment on UHeraAudioNiagaraDataInterface"); \ +static_assert(sizeof(UHeraAudioNiagaraDataInterface) == 0x000040, "Wrong size on UHeraAudioNiagaraDataInterface"); \ +static_assert(offsetof(UHeraAudioNiagaraDataInterface, AudioEvent) == 0x000038, "Member 'UHeraAudioNiagaraDataInterface::AudioEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPooledComponent_OnAudioActiveChanged \ +static_assert(alignof(HeraAudioPooledComponent_OnAudioActiveChanged) == 0x000001, "Wrong alignment on HeraAudioPooledComponent_OnAudioActiveChanged"); \ +static_assert(sizeof(HeraAudioPooledComponent_OnAudioActiveChanged) == 0x000001, "Wrong size on HeraAudioPooledComponent_OnAudioActiveChanged"); \ +static_assert(offsetof(HeraAudioPooledComponent_OnAudioActiveChanged, bIsPlaying) == 0x000000, "Member 'HeraAudioPooledComponent_OnAudioActiveChanged::bIsPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPooledComponent_PostEvent \ +static_assert(alignof(HeraAudioPooledComponent_PostEvent) == 0x000008, "Wrong alignment on HeraAudioPooledComponent_PostEvent"); \ +static_assert(sizeof(HeraAudioPooledComponent_PostEvent) == 0x000030, "Wrong size on HeraAudioPooledComponent_PostEvent"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, InEvent) == 0x000000, "Member 'HeraAudioPooledComponent_PostEvent::InEvent' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, InPostEventCallback) == 0x000008, "Member 'HeraAudioPooledComponent_PostEvent::InPostEventCallback' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, InCallbackMask) == 0x000018, "Member 'HeraAudioPooledComponent_PostEvent::InCallbackMask' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, InEventStop) == 0x000020, "Member 'HeraAudioPooledComponent_PostEvent::InEventStop' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, bInForce) == 0x000028, "Member 'HeraAudioPooledComponent_PostEvent::bInForce' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_PostEvent, InSeekPercentage) == 0x00002C, "Member 'HeraAudioPooledComponent_PostEvent::InSeekPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPooledComponent_SetRTPC \ +static_assert(alignof(HeraAudioPooledComponent_SetRTPC) == 0x000008, "Wrong alignment on HeraAudioPooledComponent_SetRTPC"); \ +static_assert(sizeof(HeraAudioPooledComponent_SetRTPC) == 0x000010, "Wrong size on HeraAudioPooledComponent_SetRTPC"); \ +static_assert(offsetof(HeraAudioPooledComponent_SetRTPC, InRtpcValue) == 0x000000, "Member 'HeraAudioPooledComponent_SetRTPC::InRtpcValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_SetRTPC, InValue) == 0x000008, "Member 'HeraAudioPooledComponent_SetRTPC::InValue' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioPooledComponent_SetRTPC, InInterpolationTimeMs) == 0x00000C, "Member 'HeraAudioPooledComponent_SetRTPC::InInterpolationTimeMs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPooledComponent_SetSwitch \ +static_assert(alignof(HeraAudioPooledComponent_SetSwitch) == 0x000008, "Wrong alignment on HeraAudioPooledComponent_SetSwitch"); \ +static_assert(sizeof(HeraAudioPooledComponent_SetSwitch) == 0x000008, "Wrong size on HeraAudioPooledComponent_SetSwitch"); \ +static_assert(offsetof(HeraAudioPooledComponent_SetSwitch, InSwitchValue) == 0x000000, "Member 'HeraAudioPooledComponent_SetSwitch::InSwitchValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioPooledComponent \ +static_assert(alignof(UHeraAudioPooledComponent) == 0x000010, "Wrong alignment on UHeraAudioPooledComponent"); \ +static_assert(sizeof(UHeraAudioPooledComponent) == 0x0002C0, "Wrong size on UHeraAudioPooledComponent"); \ +static_assert(offsetof(UHeraAudioPooledComponent, PoolName) == 0x0002B0, "Member 'UHeraAudioPooledComponent::PoolName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPortalComponent_GetOpenAmount \ +static_assert(alignof(HeraAudioPortalComponent_GetOpenAmount) == 0x000004, "Wrong alignment on HeraAudioPortalComponent_GetOpenAmount"); \ +static_assert(sizeof(HeraAudioPortalComponent_GetOpenAmount) == 0x000004, "Wrong size on HeraAudioPortalComponent_GetOpenAmount"); \ +static_assert(offsetof(HeraAudioPortalComponent_GetOpenAmount, ReturnValue) == 0x000000, "Member 'HeraAudioPortalComponent_GetOpenAmount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPortalComponent_IsPortalOpen \ +static_assert(alignof(HeraAudioPortalComponent_IsPortalOpen) == 0x000001, "Wrong alignment on HeraAudioPortalComponent_IsPortalOpen"); \ +static_assert(sizeof(HeraAudioPortalComponent_IsPortalOpen) == 0x000001, "Wrong size on HeraAudioPortalComponent_IsPortalOpen"); \ +static_assert(offsetof(HeraAudioPortalComponent_IsPortalOpen, ReturnValue) == 0x000000, "Member 'HeraAudioPortalComponent_IsPortalOpen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPortalComponent_SetIsDynamic \ +static_assert(alignof(HeraAudioPortalComponent_SetIsDynamic) == 0x000001, "Wrong alignment on HeraAudioPortalComponent_SetIsDynamic"); \ +static_assert(sizeof(HeraAudioPortalComponent_SetIsDynamic) == 0x000001, "Wrong size on HeraAudioPortalComponent_SetIsDynamic"); \ +static_assert(offsetof(HeraAudioPortalComponent_SetIsDynamic, bInDynamic) == 0x000000, "Member 'HeraAudioPortalComponent_SetIsDynamic::bInDynamic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPortalComponent_SetOpenAmount \ +static_assert(alignof(HeraAudioPortalComponent_SetOpenAmount) == 0x000004, "Wrong alignment on HeraAudioPortalComponent_SetOpenAmount"); \ +static_assert(sizeof(HeraAudioPortalComponent_SetOpenAmount) == 0x000004, "Wrong size on HeraAudioPortalComponent_SetOpenAmount"); \ +static_assert(offsetof(HeraAudioPortalComponent_SetOpenAmount, InAmount) == 0x000000, "Member 'HeraAudioPortalComponent_SetOpenAmount::InAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioPortalComponent \ +static_assert(alignof(UHeraAudioPortalComponent) == 0x000010, "Wrong alignment on UHeraAudioPortalComponent"); \ +static_assert(sizeof(UHeraAudioPortalComponent) == 0x0005C0, "Wrong size on UHeraAudioPortalComponent"); \ +static_assert(offsetof(UHeraAudioPortalComponent, PortalComponent) == 0x0005B0, "Member 'UHeraAudioPortalComponent::PortalComponent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPortalComponent, OpenAmount) == 0x0005B8, "Member 'UHeraAudioPortalComponent::OpenAmount' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPortalComponent, bUpdatePortalOnMove) == 0x0005BC, "Member 'UHeraAudioPortalComponent::bUpdatePortalOnMove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioPositionalRtpcComponent \ +static_assert(alignof(UHeraAudioPositionalRtpcComponent) == 0x000010, "Wrong alignment on UHeraAudioPositionalRtpcComponent"); \ +static_assert(sizeof(UHeraAudioPositionalRtpcComponent) == 0x000330, "Wrong size on UHeraAudioPositionalRtpcComponent"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, DistanceRTPC) == 0x0002A0, "Member 'UHeraAudioPositionalRtpcComponent::DistanceRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanLeftRightRTPC) == 0x0002A8, "Member 'UHeraAudioPositionalRtpcComponent::PanLeftRightRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanUpDownRTPC) == 0x0002B0, "Member 'UHeraAudioPositionalRtpcComponent::PanUpDownRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanFrontRearRTPC) == 0x0002B8, "Member 'UHeraAudioPositionalRtpcComponent::PanFrontRearRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, EmitterToListenerDeviationRTPC) == 0x0002C0, "Member 'UHeraAudioPositionalRtpcComponent::EmitterToListenerDeviationRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, SpreadMinRadius) == 0x0002C8, "Member 'UHeraAudioPositionalRtpcComponent::SpreadMinRadius' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, SpreadMaxRadius) == 0x0002CC, "Member 'UHeraAudioPositionalRtpcComponent::SpreadMaxRadius' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bEnable) == 0x0002D0, "Member 'UHeraAudioPositionalRtpcComponent::bEnable' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bEnableSpread) == 0x0002D1, "Member 'UHeraAudioPositionalRtpcComponent::bEnableSpread' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bDebug) == 0x0002D2, "Member 'UHeraAudioPositionalRtpcComponent::bDebug' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, DistanceToListener) == 0x0002D4, "Member 'UHeraAudioPositionalRtpcComponent::DistanceToListener' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanLeftRight) == 0x0002D8, "Member 'UHeraAudioPositionalRtpcComponent::PanLeftRight' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanUpDown) == 0x0002DC, "Member 'UHeraAudioPositionalRtpcComponent::PanUpDown' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, PanFrontRear) == 0x0002E0, "Member 'UHeraAudioPositionalRtpcComponent::PanFrontRear' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, EmitterListenerDeviation) == 0x0002E4, "Member 'UHeraAudioPositionalRtpcComponent::EmitterListenerDeviation' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, InverseSpread) == 0x0002E8, "Member 'UHeraAudioPositionalRtpcComponent::InverseSpread' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bOverridePanning) == 0x0002EC, "Member 'UHeraAudioPositionalRtpcComponent::bOverridePanning' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bOverrideSpread) == 0x0002ED, "Member 'UHeraAudioPositionalRtpcComponent::bOverrideSpread' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, bOverrideDistance) == 0x0002EE, "Member 'UHeraAudioPositionalRtpcComponent::bOverrideDistance' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, LocationOverride) == 0x0002F0, "Member 'UHeraAudioPositionalRtpcComponent::LocationOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, SpreadOverride) == 0x000308, "Member 'UHeraAudioPositionalRtpcComponent::SpreadOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, DistanceLocationOverride) == 0x000310, "Member 'UHeraAudioPositionalRtpcComponent::DistanceLocationOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioPositionalRtpcComponent, DistanceOverrideModifier) == 0x000328, "Member 'UHeraAudioPositionalRtpcComponent::DistanceOverrideModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioPropertyHandlerBase_OnInitialise \ +static_assert(alignof(HeraAudioPropertyHandlerBase_OnInitialise) == 0x000008, "Wrong alignment on HeraAudioPropertyHandlerBase_OnInitialise"); \ +static_assert(sizeof(HeraAudioPropertyHandlerBase_OnInitialise) == 0x000008, "Wrong size on HeraAudioPropertyHandlerBase_OnInitialise"); \ +static_assert(offsetof(HeraAudioPropertyHandlerBase_OnInitialise, PropertyStorage) == 0x000000, "Member 'HeraAudioPropertyHandlerBase_OnInitialise::PropertyStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioPropertyHandlerBase \ +static_assert(alignof(UHeraAudioPropertyHandlerBase) == 0x000008, "Wrong alignment on UHeraAudioPropertyHandlerBase"); \ +static_assert(sizeof(UHeraAudioPropertyHandlerBase) == 0x000038, "Wrong size on UHeraAudioPropertyHandlerBase"); \ +static_assert(offsetof(UHeraAudioPropertyHandlerBase, PropertyChangeDelegates) == 0x000028, "Member 'UHeraAudioPropertyHandlerBase::PropertyChangeDelegates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioResonanceSystem \ +static_assert(alignof(UHeraAudioResonanceSystem) == 0x000008, "Wrong alignment on UHeraAudioResonanceSystem"); \ +static_assert(sizeof(UHeraAudioResonanceSystem) == 0x000048, "Wrong size on UHeraAudioResonanceSystem"); \ + +#define DUMPER7_ASSERTS_HeraAudioRTPCSpline_OnTickGetProgressValue \ +static_assert(alignof(HeraAudioRTPCSpline_OnTickGetProgressValue) == 0x000010, "Wrong alignment on HeraAudioRTPCSpline_OnTickGetProgressValue"); \ +static_assert(sizeof(HeraAudioRTPCSpline_OnTickGetProgressValue) == 0x000080, "Wrong size on HeraAudioRTPCSpline_OnTickGetProgressValue"); \ +static_assert(offsetof(HeraAudioRTPCSpline_OnTickGetProgressValue, InDeltaSeconds) == 0x000000, "Member 'HeraAudioRTPCSpline_OnTickGetProgressValue::InDeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioRTPCSpline_OnTickGetProgressValue, InListenerTransform) == 0x000010, "Member 'HeraAudioRTPCSpline_OnTickGetProgressValue::InListenerTransform' has a wrong offset!"); \ +static_assert(offsetof(HeraAudioRTPCSpline_OnTickGetProgressValue, ReturnValue) == 0x000070, "Member 'HeraAudioRTPCSpline_OnTickGetProgressValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly \ +static_assert(alignof(HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong alignment on HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly"); \ +static_assert(sizeof(HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong size on HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly"); \ +static_assert(offsetof(HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly, InDeltaSeconds) == 0x000000, "Member 'HeraAudioRTPCSpline_TickDebugDraw_DevelopmentOnly::InDeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraAudioRTPCSpline \ +static_assert(alignof(AHeraAudioRTPCSpline) == 0x000008, "Wrong alignment on AHeraAudioRTPCSpline"); \ +static_assert(sizeof(AHeraAudioRTPCSpline) == 0x0002B0, "Wrong size on AHeraAudioRTPCSpline"); \ +static_assert(offsetof(AHeraAudioRTPCSpline, ProgressRtpc) == 0x000298, "Member 'AHeraAudioRTPCSpline::ProgressRtpc' has a wrong offset!"); \ +static_assert(offsetof(AHeraAudioRTPCSpline, SplineComponent) == 0x0002A0, "Member 'AHeraAudioRTPCSpline::SplineComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioSettings \ +static_assert(alignof(UHeraAudioSettings) == 0x000008, "Wrong alignment on UHeraAudioSettings"); \ +static_assert(sizeof(UHeraAudioSettings) == 0x000330, "Wrong size on UHeraAudioSettings"); \ +static_assert(offsetof(UHeraAudioSettings, AttenuationExtension) == 0x000038, "Member 'UHeraAudioSettings::AttenuationExtension' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, DefaultPropertyHandlers) == 0x000040, "Member 'UHeraAudioSettings::DefaultPropertyHandlers' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, RtpcQueryData) == 0x000050, "Member 'UHeraAudioSettings::RtpcQueryData' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, OutputDeviceConfigRtpc) == 0x0000A0, "Member 'UHeraAudioSettings::OutputDeviceConfigRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, SurfaceSwitches) == 0x0000C8, "Member 'UHeraAudioSettings::SurfaceSwitches' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, SecondarySurfaceSwitches) == 0x000118, "Member 'UHeraAudioSettings::SecondarySurfaceSwitches' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ComponentPoolDefaults) == 0x000168, "Member 'UHeraAudioSettings::ComponentPoolDefaults' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, VolumeCollisionProfileName) == 0x0001B8, "Member 'UHeraAudioSettings::VolumeCollisionProfileName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, GeometryCollisionProfileName) == 0x0001C0, "Member 'UHeraAudioSettings::GeometryCollisionProfileName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, CharacterMaxSpeed) == 0x0001C8, "Member 'UHeraAudioSettings::CharacterMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, CharacterVelocityInterpolationHz) == 0x0001CC, "Member 'UHeraAudioSettings::CharacterVelocityInterpolationHz' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, bEnvironmentEnable) == 0x0001D0, "Member 'UHeraAudioSettings::bEnvironmentEnable' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, EnvironmentMaxTraceDistance) == 0x0001D4, "Member 'UHeraAudioSettings::EnvironmentMaxTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, EnvironmentReverbBoxInterpolationSecs) == 0x0001D8, "Member 'UHeraAudioSettings::EnvironmentReverbBoxInterpolationSecs' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, DefaultSurfaceTexture) == 0x0001E0, "Member 'UHeraAudioSettings::DefaultSurfaceTexture' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ReverbOpennessRTPC) == 0x000208, "Member 'UHeraAudioSettings::ReverbOpennessRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ReverbSizeRTPC) == 0x000230, "Member 'UHeraAudioSettings::ReverbSizeRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ReverbSizeCurve) == 0x000258, "Member 'UHeraAudioSettings::ReverbSizeCurve' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, bResonanceEnable) == 0x0002F8, "Member 'UHeraAudioSettings::bResonanceEnable' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ResonanceQueryIntervalSecs) == 0x0002FC, "Member 'UHeraAudioSettings::ResonanceQueryIntervalSecs' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ResonanceQueryRadius) == 0x000300, "Member 'UHeraAudioSettings::ResonanceQueryRadius' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, ResonancePoolName) == 0x000304, "Member 'UHeraAudioSettings::ResonancePoolName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, MotionSharesetName) == 0x000310, "Member 'UHeraAudioSettings::MotionSharesetName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, CpuUsageBudget) == 0x000320, "Member 'UHeraAudioSettings::CpuUsageBudget' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, NumVoicesBudget) == 0x000324, "Member 'UHeraAudioSettings::NumVoicesBudget' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, NumActiveEventsBudget) == 0x000328, "Member 'UHeraAudioSettings::NumActiveEventsBudget' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSettings, MaxLoudnessBudget) == 0x00032C, "Member 'UHeraAudioSettings::MaxLoudnessBudget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioSubsystem_GetMainListener \ +static_assert(alignof(HeraAudioSubsystem_GetMainListener) == 0x000008, "Wrong alignment on HeraAudioSubsystem_GetMainListener"); \ +static_assert(sizeof(HeraAudioSubsystem_GetMainListener) == 0x000008, "Wrong size on HeraAudioSubsystem_GetMainListener"); \ +static_assert(offsetof(HeraAudioSubsystem_GetMainListener, ReturnValue) == 0x000000, "Member 'HeraAudioSubsystem_GetMainListener::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioSubsystem_GetDefaultSurfaceTexture \ +static_assert(alignof(HeraAudioSubsystem_GetDefaultSurfaceTexture) == 0x000008, "Wrong alignment on HeraAudioSubsystem_GetDefaultSurfaceTexture"); \ +static_assert(sizeof(HeraAudioSubsystem_GetDefaultSurfaceTexture) == 0x000008, "Wrong size on HeraAudioSubsystem_GetDefaultSurfaceTexture"); \ +static_assert(offsetof(HeraAudioSubsystem_GetDefaultSurfaceTexture, ReturnValue) == 0x000000, "Member 'HeraAudioSubsystem_GetDefaultSurfaceTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioSubsystem_GetGlobalGameObject \ +static_assert(alignof(HeraAudioSubsystem_GetGlobalGameObject) == 0x000008, "Wrong alignment on HeraAudioSubsystem_GetGlobalGameObject"); \ +static_assert(sizeof(HeraAudioSubsystem_GetGlobalGameObject) == 0x000008, "Wrong size on HeraAudioSubsystem_GetGlobalGameObject"); \ +static_assert(offsetof(HeraAudioSubsystem_GetGlobalGameObject, ReturnValue) == 0x000000, "Member 'HeraAudioSubsystem_GetGlobalGameObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioSubsystem \ +static_assert(alignof(UHeraAudioSubsystem) == 0x000008, "Wrong alignment on UHeraAudioSubsystem"); \ +static_assert(sizeof(UHeraAudioSubsystem) == 0x000220, "Wrong size on UHeraAudioSubsystem"); \ +static_assert(offsetof(UHeraAudioSubsystem, DefaultSurfaceTexture) == 0x000030, "Member 'UHeraAudioSubsystem::DefaultSurfaceTexture' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, GlobalGameObject) == 0x000038, "Member 'UHeraAudioSubsystem::GlobalGameObject' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, ComponentManager) == 0x000040, "Member 'UHeraAudioSubsystem::ComponentManager' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, PropertyHandlers) == 0x000048, "Member 'UHeraAudioSubsystem::PropertyHandlers' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, MainListener) == 0x000058, "Member 'UHeraAudioSubsystem::MainListener' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, LoadedRtpcQueryData) == 0x000060, "Member 'UHeraAudioSubsystem::LoadedRtpcQueryData' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, LoadedOutputDeviceConfigRtpc) == 0x0000B0, "Member 'UHeraAudioSubsystem::LoadedOutputDeviceConfigRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, LoadedSurfaceSwitches) == 0x0000B8, "Member 'UHeraAudioSubsystem::LoadedSurfaceSwitches' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, LoadedSecondarySurfaceSwitches) == 0x000108, "Member 'UHeraAudioSubsystem::LoadedSecondarySurfaceSwitches' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioSubsystem, ComponentPools) == 0x000158, "Member 'UHeraAudioSubsystem::ComponentPools' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAudioVolumeComponent_OnAudioActiveChanged \ +static_assert(alignof(HeraAudioVolumeComponent_OnAudioActiveChanged) == 0x000001, "Wrong alignment on HeraAudioVolumeComponent_OnAudioActiveChanged"); \ +static_assert(sizeof(HeraAudioVolumeComponent_OnAudioActiveChanged) == 0x000001, "Wrong size on HeraAudioVolumeComponent_OnAudioActiveChanged"); \ +static_assert(offsetof(HeraAudioVolumeComponent_OnAudioActiveChanged, bIsPlaying) == 0x000000, "Member 'HeraAudioVolumeComponent_OnAudioActiveChanged::bIsPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioVolumeComponent \ +static_assert(alignof(UHeraAudioVolumeComponent) == 0x000010, "Wrong alignment on UHeraAudioVolumeComponent"); \ +static_assert(sizeof(UHeraAudioVolumeComponent) == 0x000300, "Wrong size on UHeraAudioVolumeComponent"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, AudioComp) == 0x0002A0, "Member 'UHeraAudioVolumeComponent::AudioComp' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, OnPlayerInsideChanged) == 0x0002A8, "Member 'UHeraAudioVolumeComponent::OnPlayerInsideChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, InactiveTickInterval) == 0x0002B8, "Member 'UHeraAudioVolumeComponent::InactiveTickInterval' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, EmitterPreviousLocation) == 0x0002D0, "Member 'UHeraAudioVolumeComponent::EmitterPreviousLocation' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, Volumes) == 0x0002E8, "Member 'UHeraAudioVolumeComponent::Volumes' has a wrong offset!"); \ +static_assert(offsetof(UHeraAudioVolumeComponent, bPlayerInsideVolume) == 0x0002F8, "Member 'UHeraAudioVolumeComponent::bPlayerInsideVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAudioVolumeComponent_Deprecated \ +static_assert(alignof(UHeraAudioVolumeComponent_Deprecated) == 0x000010, "Wrong alignment on UHeraAudioVolumeComponent_Deprecated"); \ +static_assert(sizeof(UHeraAudioVolumeComponent_Deprecated) == 0x000310, "Wrong size on UHeraAudioVolumeComponent_Deprecated"); \ +static_assert(offsetof(UHeraAudioVolumeComponent_Deprecated, DefaultVolume) == 0x000300, "Member 'UHeraAudioVolumeComponent_Deprecated::DefaultVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPropertyChangeDelegateBinding \ +static_assert(alignof(UHeraPropertyChangeDelegateBinding) == 0x000008, "Wrong alignment on UHeraPropertyChangeDelegateBinding"); \ +static_assert(sizeof(UHeraPropertyChangeDelegateBinding) == 0x000028, "Wrong size on UHeraPropertyChangeDelegateBinding"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_SniperTargeting_Endless_C \ +static_assert(alignof(UGA_Additive_SniperTargeting_Endless_C) == 0x000008, "Wrong alignment on UGA_Additive_SniperTargeting_Endless_C"); \ +static_assert(sizeof(UGA_Additive_SniperTargeting_Endless_C) == 0x0006B8, "Wrong size on UGA_Additive_SniperTargeting_Endless_C"); \ + +#define DUMPER7_ASSERTS_FMassStaticRepresentationTag \ +static_assert(alignof(FMassStaticRepresentationTag) == 0x000001, "Wrong alignment on FMassStaticRepresentationTag"); \ +static_assert(sizeof(FMassStaticRepresentationTag) == 0x000001, "Wrong size on FMassStaticRepresentationTag"); \ + +#define DUMPER7_ASSERTS_FMassRepresentationLODFragment \ +static_assert(alignof(FMassRepresentationLODFragment) == 0x000004, "Wrong alignment on FMassRepresentationLODFragment"); \ +static_assert(sizeof(FMassRepresentationLODFragment) == 0x000008, "Wrong size on FMassRepresentationLODFragment"); \ + +#define DUMPER7_ASSERTS_FMassRepresentationFragment \ +static_assert(alignof(FMassRepresentationFragment) == 0x000010, "Wrong alignment on FMassRepresentationFragment"); \ +static_assert(sizeof(FMassRepresentationFragment) == 0x000080, "Wrong size on FMassRepresentationFragment"); \ + +#define DUMPER7_ASSERTS_FMassRepresentationSubsystemSharedFragment \ +static_assert(alignof(FMassRepresentationSubsystemSharedFragment) == 0x000008, "Wrong alignment on FMassRepresentationSubsystemSharedFragment"); \ +static_assert(sizeof(FMassRepresentationSubsystemSharedFragment) == 0x000008, "Wrong size on FMassRepresentationSubsystemSharedFragment"); \ +static_assert(offsetof(FMassRepresentationSubsystemSharedFragment, RepresentationSubsystem) == 0x000000, "Member 'FMassRepresentationSubsystemSharedFragment::RepresentationSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassRepresentationParameters \ +static_assert(alignof(FMassRepresentationParameters) == 0x000008, "Wrong alignment on FMassRepresentationParameters"); \ +static_assert(sizeof(FMassRepresentationParameters) == 0x000028, "Wrong size on FMassRepresentationParameters"); \ +static_assert(offsetof(FMassRepresentationParameters, RepresentationActorManagementClass) == 0x000000, "Member 'FMassRepresentationParameters::RepresentationActorManagementClass' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, LODRepresentation) == 0x000008, "Member 'FMassRepresentationParameters::LODRepresentation' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, bKeepLowResActors) == 0x00000C, "Member 'FMassRepresentationParameters::bKeepLowResActors' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, bKeepActorExtraFrame) == 0x00000D, "Member 'FMassRepresentationParameters::bKeepActorExtraFrame' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, bSpreadFirstVisualizationUpdate) == 0x00000E, "Member 'FMassRepresentationParameters::bSpreadFirstVisualizationUpdate' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, WorldPartitionGridNameContainingCollision) == 0x000010, "Member 'FMassRepresentationParameters::WorldPartitionGridNameContainingCollision' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, NotVisibleUpdateRate) == 0x000018, "Member 'FMassRepresentationParameters::NotVisibleUpdateRate' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, CachedDefaultRepresentationType) == 0x00001C, "Member 'FMassRepresentationParameters::CachedDefaultRepresentationType' has a wrong offset!"); \ +static_assert(offsetof(FMassRepresentationParameters, CachedRepresentationActorManagement) == 0x000020, "Member 'FMassRepresentationParameters::CachedRepresentationActorManagement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassVisualizationLODParameters \ +static_assert(alignof(FMassVisualizationLODParameters) == 0x000008, "Wrong alignment on FMassVisualizationLODParameters"); \ +static_assert(sizeof(FMassVisualizationLODParameters) == 0x000048, "Wrong size on FMassVisualizationLODParameters"); \ +static_assert(offsetof(FMassVisualizationLODParameters, BaseLODDistance) == 0x000000, "Member 'FMassVisualizationLODParameters::BaseLODDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, VisibleLODDistance) == 0x000010, "Member 'FMassVisualizationLODParameters::VisibleLODDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, BufferHysteresisOnDistancePercentage) == 0x000020, "Member 'FMassVisualizationLODParameters::BufferHysteresisOnDistancePercentage' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, LODMaxCount) == 0x000024, "Member 'FMassVisualizationLODParameters::LODMaxCount' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, DistanceToFrustum) == 0x000034, "Member 'FMassVisualizationLODParameters::DistanceToFrustum' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, DistanceToFrustumHysteresis) == 0x000038, "Member 'FMassVisualizationLODParameters::DistanceToFrustumHysteresis' has a wrong offset!"); \ +static_assert(offsetof(FMassVisualizationLODParameters, FilterTag) == 0x000040, "Member 'FMassVisualizationLODParameters::FilterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassVisualizationLODSharedFragment \ +static_assert(alignof(FMassVisualizationLODSharedFragment) == 0x000008, "Wrong alignment on FMassVisualizationLODSharedFragment"); \ +static_assert(sizeof(FMassVisualizationLODSharedFragment) == 0x002020, "Wrong size on FMassVisualizationLODSharedFragment"); \ +static_assert(offsetof(FMassVisualizationLODSharedFragment, FilterTag) == 0x002018, "Member 'FMassVisualizationLODSharedFragment::FilterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStaticMeshInstanceVisualizationMeshDesc \ +static_assert(alignof(FMassStaticMeshInstanceVisualizationMeshDesc) == 0x000008, "Wrong alignment on FMassStaticMeshInstanceVisualizationMeshDesc"); \ +static_assert(sizeof(FMassStaticMeshInstanceVisualizationMeshDesc) == 0x000030, "Wrong size on FMassStaticMeshInstanceVisualizationMeshDesc"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, Mesh) == 0x000000, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, MaterialOverrides) == 0x000008, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::MaterialOverrides' has a wrong offset!"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, MinLODSignificance) == 0x000018, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::MinLODSignificance' has a wrong offset!"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, MaxLODSignificance) == 0x00001C, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::MaxLODSignificance' has a wrong offset!"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, bCastShadows) == 0x000020, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::bCastShadows' has a wrong offset!"); \ +static_assert(offsetof(FMassStaticMeshInstanceVisualizationMeshDesc, ISMComponentClass) == 0x000028, "Member 'FMassStaticMeshInstanceVisualizationMeshDesc::ISMComponentClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshInstanceVisualizationDesc \ +static_assert(alignof(FStaticMeshInstanceVisualizationDesc) == 0x000010, "Wrong alignment on FStaticMeshInstanceVisualizationDesc"); \ +static_assert(sizeof(FStaticMeshInstanceVisualizationDesc) == 0x000080, "Wrong size on FStaticMeshInstanceVisualizationDesc"); \ +static_assert(offsetof(FStaticMeshInstanceVisualizationDesc, Meshes) == 0x000008, "Member 'FStaticMeshInstanceVisualizationDesc::Meshes' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshInstanceVisualizationDesc, bUseTransformOffset) == 0x000018, "Member 'FStaticMeshInstanceVisualizationDesc::bUseTransformOffset' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshInstanceVisualizationDesc, TransformOffset) == 0x000020, "Member 'FStaticMeshInstanceVisualizationDesc::TransformOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassLODSignificanceRange \ +static_assert(alignof(FMassLODSignificanceRange) == 0x000008, "Wrong alignment on FMassLODSignificanceRange"); \ +static_assert(sizeof(FMassLODSignificanceRange) == 0x000020, "Wrong size on FMassLODSignificanceRange"); \ +static_assert(offsetof(FMassLODSignificanceRange, StaticMeshRefs) == 0x000008, "Member 'FMassLODSignificanceRange::StaticMeshRefs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassInstancedStaticMeshInfo \ +static_assert(alignof(FMassInstancedStaticMeshInfo) == 0x000010, "Wrong alignment on FMassInstancedStaticMeshInfo"); \ +static_assert(sizeof(FMassInstancedStaticMeshInfo) == 0x0000A0, "Wrong size on FMassInstancedStaticMeshInfo"); \ +static_assert(offsetof(FMassInstancedStaticMeshInfo, Desc) == 0x000000, "Member 'FMassInstancedStaticMeshInfo::Desc' has a wrong offset!"); \ +static_assert(offsetof(FMassInstancedStaticMeshInfo, InstancedStaticMeshComponents) == 0x000080, "Member 'FMassInstancedStaticMeshInfo::InstancedStaticMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(FMassInstancedStaticMeshInfo, LODSignificanceRanges) == 0x000090, "Member 'FMassInstancedStaticMeshInfo::LODSignificanceRanges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassInstancedStaticMeshComponent \ +static_assert(alignof(UMassInstancedStaticMeshComponent) == 0x000010, "Wrong alignment on UMassInstancedStaticMeshComponent"); \ +static_assert(sizeof(UMassInstancedStaticMeshComponent) == 0x000770, "Wrong size on UMassInstancedStaticMeshComponent"); \ + +#define DUMPER7_ASSERTS_UMassVisualizationTrait \ +static_assert(alignof(UMassVisualizationTrait) == 0x000010, "Wrong alignment on UMassVisualizationTrait"); \ +static_assert(sizeof(UMassVisualizationTrait) == 0x000140, "Wrong size on UMassVisualizationTrait"); \ +static_assert(offsetof(UMassVisualizationTrait, StaticMeshInstanceDesc) == 0x000030, "Member 'UMassVisualizationTrait::StaticMeshInstanceDesc' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, HighResTemplateActor) == 0x0000B0, "Member 'UMassVisualizationTrait::HighResTemplateActor' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, LowResTemplateActor) == 0x0000B8, "Member 'UMassVisualizationTrait::LowResTemplateActor' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, RepresentationSubsystemClass) == 0x0000C0, "Member 'UMassVisualizationTrait::RepresentationSubsystemClass' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, Params_0) == 0x0000C8, "Member 'UMassVisualizationTrait::Params_0' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, LODParams) == 0x0000F0, "Member 'UMassVisualizationTrait::LODParams' has a wrong offset!"); \ +static_assert(offsetof(UMassVisualizationTrait, bAllowServerSideVisualization) == 0x000138, "Member 'UMassVisualizationTrait::bAllowServerSideVisualization' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassMovableVisualizationTrait \ +static_assert(alignof(UMassMovableVisualizationTrait) == 0x000010, "Wrong alignment on UMassMovableVisualizationTrait"); \ +static_assert(sizeof(UMassMovableVisualizationTrait) == 0x000140, "Wrong size on UMassMovableVisualizationTrait"); \ + +#define DUMPER7_ASSERTS_UMassRepresentationActorManagement \ +static_assert(alignof(UMassRepresentationActorManagement) == 0x000008, "Wrong alignment on UMassRepresentationActorManagement"); \ +static_assert(sizeof(UMassRepresentationActorManagement) == 0x000028, "Wrong size on UMassRepresentationActorManagement"); \ + +#define DUMPER7_ASSERTS_UMassRepresentationProcessor \ +static_assert(alignof(UMassRepresentationProcessor) == 0x000008, "Wrong alignment on UMassRepresentationProcessor"); \ +static_assert(sizeof(UMassRepresentationProcessor) == 0x000360, "Wrong size on UMassRepresentationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassVisualizationProcessor \ +static_assert(alignof(UMassVisualizationProcessor) == 0x000008, "Wrong alignment on UMassVisualizationProcessor"); \ +static_assert(sizeof(UMassVisualizationProcessor) == 0x000360, "Wrong size on UMassVisualizationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassRepresentationFragmentDestructor \ +static_assert(alignof(UMassRepresentationFragmentDestructor) == 0x000008, "Wrong alignment on UMassRepresentationFragmentDestructor"); \ +static_assert(sizeof(UMassRepresentationFragmentDestructor) == 0x000370, "Wrong size on UMassRepresentationFragmentDestructor"); \ + +#define DUMPER7_ASSERTS_UMassRepresentationSubsystem \ +static_assert(alignof(UMassRepresentationSubsystem) == 0x000008, "Wrong alignment on UMassRepresentationSubsystem"); \ +static_assert(sizeof(UMassRepresentationSubsystem) == 0x0000C8, "Wrong size on UMassRepresentationSubsystem"); \ +static_assert(offsetof(UMassRepresentationSubsystem, TemplateActors) == 0x000030, "Member 'UMassRepresentationSubsystem::TemplateActors' has a wrong offset!"); \ +static_assert(offsetof(UMassRepresentationSubsystem, VisualizationComponent) == 0x000040, "Member 'UMassRepresentationSubsystem::VisualizationComponent' has a wrong offset!"); \ +static_assert(offsetof(UMassRepresentationSubsystem, Visualizer) == 0x000048, "Member 'UMassRepresentationSubsystem::Visualizer' has a wrong offset!"); \ +static_assert(offsetof(UMassRepresentationSubsystem, ActorSpawnerSubsystem) == 0x000050, "Member 'UMassRepresentationSubsystem::ActorSpawnerSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassRepresentationSubsystem, WorldPartitionSubsystem) == 0x000068, "Member 'UMassRepresentationSubsystem::WorldPartitionSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassStationaryISMRepresentationFragmentDestructor \ +static_assert(alignof(UMassStationaryISMRepresentationFragmentDestructor) == 0x000008, "Wrong alignment on UMassStationaryISMRepresentationFragmentDestructor"); \ +static_assert(sizeof(UMassStationaryISMRepresentationFragmentDestructor) == 0x000370, "Wrong size on UMassStationaryISMRepresentationFragmentDestructor"); \ + +#define DUMPER7_ASSERTS_UMassStationaryISMSwitcherProcessor \ +static_assert(alignof(UMassStationaryISMSwitcherProcessor) == 0x000008, "Wrong alignment on UMassStationaryISMSwitcherProcessor"); \ +static_assert(sizeof(UMassStationaryISMSwitcherProcessor) == 0x000360, "Wrong size on UMassStationaryISMSwitcherProcessor"); \ + +#define DUMPER7_ASSERTS_UMassStationaryVisualizationTrait \ +static_assert(alignof(UMassStationaryVisualizationTrait) == 0x000010, "Wrong alignment on UMassStationaryVisualizationTrait"); \ +static_assert(sizeof(UMassStationaryVisualizationTrait) == 0x000140, "Wrong size on UMassStationaryVisualizationTrait"); \ + +#define DUMPER7_ASSERTS_UMassUpdateISMProcessor \ +static_assert(alignof(UMassUpdateISMProcessor) == 0x000008, "Wrong alignment on UMassUpdateISMProcessor"); \ +static_assert(sizeof(UMassUpdateISMProcessor) == 0x000360, "Wrong size on UMassUpdateISMProcessor"); \ + +#define DUMPER7_ASSERTS_UMassVisualizationComponent \ +static_assert(alignof(UMassVisualizationComponent) == 0x000008, "Wrong alignment on UMassVisualizationComponent"); \ +static_assert(sizeof(UMassVisualizationComponent) == 0x000108, "Wrong size on UMassVisualizationComponent"); \ +static_assert(offsetof(UMassVisualizationComponent, InstancedStaticMeshInfos) == 0x0000A0, "Member 'UMassVisualizationComponent::InstancedStaticMeshInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassVisualizationLODProcessor \ +static_assert(alignof(UMassVisualizationLODProcessor) == 0x000010, "Wrong alignment on UMassVisualizationLODProcessor"); \ +static_assert(sizeof(UMassVisualizationLODProcessor) == 0x000B50, "Wrong size on UMassVisualizationLODProcessor"); \ +static_assert(offsetof(UMassVisualizationLODProcessor, FilterTag) == 0x000B48, "Member 'UMassVisualizationLODProcessor::FilterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMassVisualizer \ +static_assert(alignof(AMassVisualizer) == 0x000008, "Wrong alignment on AMassVisualizer"); \ +static_assert(sizeof(AMassVisualizer) == 0x0002A0, "Wrong size on AMassVisualizer"); \ +static_assert(offsetof(AMassVisualizer, VisComponent) == 0x000298, "Member 'AMassVisualizer::VisComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AssembledCharacter_ProEscapePolice_C \ +static_assert(alignof(ABP_AssembledCharacter_ProEscapePolice_C) == 0x000010, "Wrong alignment on ABP_AssembledCharacter_ProEscapePolice_C"); \ +static_assert(sizeof(ABP_AssembledCharacter_ProEscapePolice_C) == 0x000B30, "Wrong size on ABP_AssembledCharacter_ProEscapePolice_C"); \ +static_assert(offsetof(ABP_AssembledCharacter_ProEscapePolice_C, SpotLight) == 0x000B18, "Member 'ABP_AssembledCharacter_ProEscapePolice_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_ProEscapePolice_C, Sphere) == 0x000B20, "Member 'ABP_AssembledCharacter_ProEscapePolice_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_ProEscapePolice_C, SM_Flashlight_Angle_01) == 0x000B28, "Member 'ABP_AssembledCharacter_ProEscapePolice_C::SM_Flashlight_Angle_01' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination \ +static_assert(alignof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination) == 0x000008, "Wrong alignment on ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination"); \ +static_assert(sizeof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination) == 0x000030, "Wrong size on ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, EntryPoint) == 0x000000, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, K2Node_Event_InAutomata) == 0x000008, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, K2Node_Event_InState) == 0x000010, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, K2Node_DynamicCast_AsBP_Fake_Elevator) == 0x000020, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::K2Node_DynamicCast_AsBP_Fake_Elevator' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ChangeElevatorDestination_C_ExecuteUbergraph_ChangeElevatorDestination::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeElevatorDestination_C_ReceiveExecute \ +static_assert(alignof(ChangeElevatorDestination_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeElevatorDestination_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeElevatorDestination_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeElevatorDestination_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeElevatorDestination_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeElevatorDestination_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeElevatorDestination_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeElevatorDestination_C \ +static_assert(alignof(UChangeElevatorDestination_C) == 0x000008, "Wrong alignment on UChangeElevatorDestination_C"); \ +static_assert(sizeof(UChangeElevatorDestination_C) == 0x0000D8, "Wrong size on UChangeElevatorDestination_C"); \ +static_assert(offsetof(UChangeElevatorDestination_C, UberGraphFrame) == 0x000088, "Member 'UChangeElevatorDestination_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorDestination_C, Elevator) == 0x000090, "Member 'UChangeElevatorDestination_C::Elevator' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorDestination_C, New_Location) == 0x0000B8, "Member 'UChangeElevatorDestination_C::New_Location' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorDestination_C, Data_Layers_to_Activate) == 0x0000C0, "Member 'UChangeElevatorDestination_C::Data_Layers_to_Activate' has a wrong offset!"); \ +static_assert(offsetof(UChangeElevatorDestination_C, Use_New_Location_) == 0x0000D0, "Member 'UChangeElevatorDestination_C::Use_New_Location_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraHUDSetup \ +static_assert(alignof(FHeraHUDSetup) == 0x000008, "Wrong alignment on FHeraHUDSetup"); \ +static_assert(sizeof(FHeraHUDSetup) == 0x000090, "Wrong size on FHeraHUDSetup"); \ +static_assert(offsetof(FHeraHUDSetup, HUD) == 0x000000, "Member 'FHeraHUDSetup::HUD' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, DefaultMenuName) == 0x000028, "Member 'FHeraHUDSetup::DefaultMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, SkipDefaultMenuName) == 0x000030, "Member 'FHeraHUDSetup::SkipDefaultMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, PauseMenuName) == 0x000038, "Member 'FHeraHUDSetup::PauseMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, CutScenePauseMenuName) == 0x000040, "Member 'FHeraHUDSetup::CutScenePauseMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, RPGMenuName) == 0x000048, "Member 'FHeraHUDSetup::RPGMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, GameOverMenuName) == 0x000050, "Member 'FHeraHUDSetup::GameOverMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, ControllerDisconnectName) == 0x000058, "Member 'FHeraHUDSetup::ControllerDisconnectName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, SystemNotificationMenuName) == 0x000060, "Member 'FHeraHUDSetup::SystemNotificationMenuName' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, bPushDefaultOnBeginPlay) == 0x000068, "Member 'FHeraHUDSetup::bPushDefaultOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, bShowDebugInfo) == 0x000069, "Member 'FHeraHUDSetup::bShowDebugInfo' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, PlayerHUDSlots) == 0x000070, "Member 'FHeraHUDSetup::PlayerHUDSlots' has a wrong offset!"); \ +static_assert(offsetof(FHeraHUDSetup, PlayerHUDSlotsInNarrativeMode) == 0x000080, "Member 'FHeraHUDSetup::PlayerHUDSlotsInNarrativeMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraSlotWidget \ +static_assert(alignof(FHeraSlotWidget) == 0x000008, "Wrong alignment on FHeraSlotWidget"); \ +static_assert(sizeof(FHeraSlotWidget) == 0x000010, "Wrong size on FHeraSlotWidget"); \ +static_assert(offsetof(FHeraSlotWidget, SlotNameID) == 0x000000, "Member 'FHeraSlotWidget::SlotNameID' has a wrong offset!"); \ +static_assert(offsetof(FHeraSlotWidget, Widget) == 0x000008, "Member 'FHeraSlotWidget::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_BP_OnHandleBackActionOverride \ +static_assert(alignof(HeraActivatableWidget_BP_OnHandleBackActionOverride) == 0x000001, "Wrong alignment on HeraActivatableWidget_BP_OnHandleBackActionOverride"); \ +static_assert(sizeof(HeraActivatableWidget_BP_OnHandleBackActionOverride) == 0x000001, "Wrong size on HeraActivatableWidget_BP_OnHandleBackActionOverride"); \ +static_assert(offsetof(HeraActivatableWidget_BP_OnHandleBackActionOverride, ReturnValue) == 0x000000, "Member 'HeraActivatableWidget_BP_OnHandleBackActionOverride::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_BP_OnHandleConfirmAction \ +static_assert(alignof(HeraActivatableWidget_BP_OnHandleConfirmAction) == 0x000001, "Wrong alignment on HeraActivatableWidget_BP_OnHandleConfirmAction"); \ +static_assert(sizeof(HeraActivatableWidget_BP_OnHandleConfirmAction) == 0x000001, "Wrong size on HeraActivatableWidget_BP_OnHandleConfirmAction"); \ +static_assert(offsetof(HeraActivatableWidget_BP_OnHandleConfirmAction, ReturnValue) == 0x000000, "Member 'HeraActivatableWidget_BP_OnHandleConfirmAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_GetVersionDate \ +static_assert(alignof(HeraActivatableWidget_GetVersionDate) == 0x000008, "Wrong alignment on HeraActivatableWidget_GetVersionDate"); \ +static_assert(sizeof(HeraActivatableWidget_GetVersionDate) == 0x000010, "Wrong size on HeraActivatableWidget_GetVersionDate"); \ +static_assert(offsetof(HeraActivatableWidget_GetVersionDate, ReturnValue) == 0x000000, "Member 'HeraActivatableWidget_GetVersionDate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_GetVersionInfo \ +static_assert(alignof(HeraActivatableWidget_GetVersionInfo) == 0x000008, "Wrong alignment on HeraActivatableWidget_GetVersionInfo"); \ +static_assert(sizeof(HeraActivatableWidget_GetVersionInfo) == 0x000010, "Wrong size on HeraActivatableWidget_GetVersionInfo"); \ +static_assert(offsetof(HeraActivatableWidget_GetVersionInfo, ReturnValue) == 0x000000, "Member 'HeraActivatableWidget_GetVersionInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_RegisterScrollRecipient \ +static_assert(alignof(HeraActivatableWidget_RegisterScrollRecipient) == 0x000008, "Wrong alignment on HeraActivatableWidget_RegisterScrollRecipient"); \ +static_assert(sizeof(HeraActivatableWidget_RegisterScrollRecipient) == 0x000008, "Wrong size on HeraActivatableWidget_RegisterScrollRecipient"); \ +static_assert(offsetof(HeraActivatableWidget_RegisterScrollRecipient, AnalogScrollRecipient) == 0x000000, "Member 'HeraActivatableWidget_RegisterScrollRecipient::AnalogScrollRecipient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_SetDesiredFocusWidgetHera \ +static_assert(alignof(HeraActivatableWidget_SetDesiredFocusWidgetHera) == 0x000008, "Wrong alignment on HeraActivatableWidget_SetDesiredFocusWidgetHera"); \ +static_assert(sizeof(HeraActivatableWidget_SetDesiredFocusWidgetHera) == 0x000008, "Wrong size on HeraActivatableWidget_SetDesiredFocusWidgetHera"); \ +static_assert(offsetof(HeraActivatableWidget_SetDesiredFocusWidgetHera, InWidget) == 0x000000, "Member 'HeraActivatableWidget_SetDesiredFocusWidgetHera::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraActivatableWidget_UnregisterScrollRecipient \ +static_assert(alignof(HeraActivatableWidget_UnregisterScrollRecipient) == 0x000008, "Wrong alignment on HeraActivatableWidget_UnregisterScrollRecipient"); \ +static_assert(sizeof(HeraActivatableWidget_UnregisterScrollRecipient) == 0x000008, "Wrong size on HeraActivatableWidget_UnregisterScrollRecipient"); \ +static_assert(offsetof(HeraActivatableWidget_UnregisterScrollRecipient, AnalogScrollRecipient) == 0x000000, "Member 'HeraActivatableWidget_UnregisterScrollRecipient::AnalogScrollRecipient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraActivatableWidget \ +static_assert(alignof(UHeraActivatableWidget) == 0x000008, "Wrong alignment on UHeraActivatableWidget"); \ +static_assert(sizeof(UHeraActivatableWidget) == 0x000450, "Wrong size on UHeraActivatableWidget"); \ +static_assert(offsetof(UHeraActivatableWidget, bHandleConfirm) == 0x000410, "Member 'UHeraActivatableWidget::bHandleConfirm' has a wrong offset!"); \ +static_assert(offsetof(UHeraActivatableWidget, bUseBPBackHandlerOverride) == 0x000411, "Member 'UHeraActivatableWidget::bUseBPBackHandlerOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraActivatableWidget, HeraDesiredFocusWidget) == 0x000418, "Member 'UHeraActivatableWidget::HeraDesiredFocusWidget' has a wrong offset!"); \ +static_assert(offsetof(UHeraActivatableWidget, BackInputActionData) == 0x000420, "Member 'UHeraActivatableWidget::BackInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UHeraActivatableWidget, ConfirmInputActionData) == 0x000438, "Member 'UHeraActivatableWidget::ConfirmInputActionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBaseWidget_GetVersionDate \ +static_assert(alignof(HeraBaseWidget_GetVersionDate) == 0x000008, "Wrong alignment on HeraBaseWidget_GetVersionDate"); \ +static_assert(sizeof(HeraBaseWidget_GetVersionDate) == 0x000010, "Wrong size on HeraBaseWidget_GetVersionDate"); \ +static_assert(offsetof(HeraBaseWidget_GetVersionDate, ReturnValue) == 0x000000, "Member 'HeraBaseWidget_GetVersionDate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBaseWidget_GetVersionInfo \ +static_assert(alignof(HeraBaseWidget_GetVersionInfo) == 0x000008, "Wrong alignment on HeraBaseWidget_GetVersionInfo"); \ +static_assert(sizeof(HeraBaseWidget_GetVersionInfo) == 0x000010, "Wrong size on HeraBaseWidget_GetVersionInfo"); \ +static_assert(offsetof(HeraBaseWidget_GetVersionInfo, ReturnValue) == 0x000000, "Member 'HeraBaseWidget_GetVersionInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBaseWidget_ShowDebugInfo \ +static_assert(alignof(HeraBaseWidget_ShowDebugInfo) == 0x000008, "Wrong alignment on HeraBaseWidget_ShowDebugInfo"); \ +static_assert(sizeof(HeraBaseWidget_ShowDebugInfo) == 0x000008, "Wrong size on HeraBaseWidget_ShowDebugInfo"); \ +static_assert(offsetof(HeraBaseWidget_ShowDebugInfo, InActor) == 0x000000, "Member 'HeraBaseWidget_ShowDebugInfo::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBaseWidget_GetWidgetFName \ +static_assert(alignof(HeraBaseWidget_GetWidgetFName) == 0x000004, "Wrong alignment on HeraBaseWidget_GetWidgetFName"); \ +static_assert(sizeof(HeraBaseWidget_GetWidgetFName) == 0x000008, "Wrong size on HeraBaseWidget_GetWidgetFName"); \ +static_assert(offsetof(HeraBaseWidget_GetWidgetFName, ReturnValue) == 0x000000, "Member 'HeraBaseWidget_GetWidgetFName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraBaseWidget \ +static_assert(alignof(UHeraBaseWidget) == 0x000008, "Wrong alignment on UHeraBaseWidget"); \ +static_assert(sizeof(UHeraBaseWidget) == 0x0002C8, "Wrong size on UHeraBaseWidget"); \ +static_assert(offsetof(UHeraBaseWidget, PreventFocusChange) == 0x0002C0, "Member 'UHeraBaseWidget::PreventFocusChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_ChangeSelectedState \ +static_assert(alignof(HeraCommonUIBaseWidget_ChangeSelectedState) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_ChangeSelectedState"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_ChangeSelectedState) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_ChangeSelectedState"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_ChangeSelectedState, bInSelected) == 0x000000, "Member 'HeraCommonUIBaseWidget_ChangeSelectedState::bInSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_IsFocused \ +static_assert(alignof(HeraCommonUIBaseWidget_IsFocused) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_IsFocused"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_IsFocused) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_IsFocused"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_IsFocused, ReturnValue) == 0x000000, "Member 'HeraCommonUIBaseWidget_IsFocused::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_IsPlayerUsingController \ +static_assert(alignof(HeraCommonUIBaseWidget_IsPlayerUsingController) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_IsPlayerUsingController"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_IsPlayerUsingController) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_IsPlayerUsingController"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_IsPlayerUsingController, ReturnValue) == 0x000000, "Member 'HeraCommonUIBaseWidget_IsPlayerUsingController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_IsSelected \ +static_assert(alignof(HeraCommonUIBaseWidget_IsSelected) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_IsSelected"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_IsSelected) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_IsSelected"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_IsSelected, ReturnValue) == 0x000000, "Member 'HeraCommonUIBaseWidget_IsSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_OnInputChanged \ +static_assert(alignof(HeraCommonUIBaseWidget_OnInputChanged) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_OnInputChanged"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_OnInputChanged) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_OnInputChanged"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'HeraCommonUIBaseWidget_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_SetIsFocused \ +static_assert(alignof(HeraCommonUIBaseWidget_SetIsFocused) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_SetIsFocused"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_SetIsFocused) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_SetIsFocused"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_SetIsFocused, bInIsFocused) == 0x000000, "Member 'HeraCommonUIBaseWidget_SetIsFocused::bInIsFocused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCommonUIBaseWidget_ToggleVisibility \ +static_assert(alignof(HeraCommonUIBaseWidget_ToggleVisibility) == 0x000001, "Wrong alignment on HeraCommonUIBaseWidget_ToggleVisibility"); \ +static_assert(sizeof(HeraCommonUIBaseWidget_ToggleVisibility) == 0x000001, "Wrong size on HeraCommonUIBaseWidget_ToggleVisibility"); \ +static_assert(offsetof(HeraCommonUIBaseWidget_ToggleVisibility, bInStatus) == 0x000000, "Member 'HeraCommonUIBaseWidget_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCommonUIBaseWidget \ +static_assert(alignof(UHeraCommonUIBaseWidget) == 0x000008, "Wrong alignment on UHeraCommonUIBaseWidget"); \ +static_assert(sizeof(UHeraCommonUIBaseWidget) == 0x000330, "Wrong size on UHeraCommonUIBaseWidget"); \ +static_assert(offsetof(UHeraCommonUIBaseWidget, OnWidgetReceivedFocusCallback) == 0x0002E8, "Member 'UHeraCommonUIBaseWidget::OnWidgetReceivedFocusCallback' has a wrong offset!"); \ +static_assert(offsetof(UHeraCommonUIBaseWidget, OnWidgetLostFocusCallback) == 0x0002F8, "Member 'UHeraCommonUIBaseWidget::OnWidgetLostFocusCallback' has a wrong offset!"); \ +static_assert(offsetof(UHeraCommonUIBaseWidget, OnWidgetHoverOnCallback) == 0x000308, "Member 'UHeraCommonUIBaseWidget::OnWidgetHoverOnCallback' has a wrong offset!"); \ +static_assert(offsetof(UHeraCommonUIBaseWidget, OnWidgetHoverOffCallback) == 0x000318, "Member 'UHeraCommonUIBaseWidget::OnWidgetHoverOffCallback' has a wrong offset!"); \ +static_assert(offsetof(UHeraCommonUIBaseWidget, CurrentInputType) == 0x00032A, "Member 'UHeraCommonUIBaseWidget::CurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraButtonBase_GetButton \ +static_assert(alignof(HeraButtonBase_GetButton) == 0x000008, "Wrong alignment on HeraButtonBase_GetButton"); \ +static_assert(sizeof(HeraButtonBase_GetButton) == 0x000008, "Wrong size on HeraButtonBase_GetButton"); \ +static_assert(offsetof(HeraButtonBase_GetButton, ReturnValue) == 0x000000, "Member 'HeraButtonBase_GetButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraButtonBase_SetButtonText \ +static_assert(alignof(HeraButtonBase_SetButtonText) == 0x000008, "Wrong alignment on HeraButtonBase_SetButtonText"); \ +static_assert(sizeof(HeraButtonBase_SetButtonText) == 0x000018, "Wrong size on HeraButtonBase_SetButtonText"); \ +static_assert(offsetof(HeraButtonBase_SetButtonText, InText) == 0x000000, "Member 'HeraButtonBase_SetButtonText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraButtonBase \ +static_assert(alignof(UHeraButtonBase) == 0x000010, "Wrong alignment on UHeraButtonBase"); \ +static_assert(sizeof(UHeraButtonBase) == 0x0013E0, "Wrong size on UHeraButtonBase"); \ +static_assert(offsetof(UHeraButtonBase, ButtonLabel) == 0x000330, "Member 'UHeraButtonBase::ButtonLabel' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, bShowActionIcon) == 0x000348, "Member 'UHeraButtonBase::bShowActionIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, bShowSecondaryBackground) == 0x000349, "Member 'UHeraButtonBase::bShowSecondaryBackground' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, Style) == 0x000350, "Member 'UHeraButtonBase::Style' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, Justification) == 0x000358, "Member 'UHeraButtonBase::Justification' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, PCIconBrush) == 0x000360, "Member 'UHeraButtonBase::PCIconBrush' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, ControllerTypeAndBrush) == 0x000430, "Member 'UHeraButtonBase::ControllerTypeAndBrush' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, OnButtonClickedCallback) == 0x000480, "Member 'UHeraButtonBase::OnButtonClickedCallback' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, Button) == 0x000490, "Member 'UHeraButtonBase::Button' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, ButtonText) == 0x000498, "Member 'UHeraButtonBase::ButtonText' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, SecondaryBackground) == 0x0004A0, "Member 'UHeraButtonBase::SecondaryBackground' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, PCIcon) == 0x0004A8, "Member 'UHeraButtonBase::PCIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, ConsoleIcon) == 0x0004B0, "Member 'UHeraButtonBase::ConsoleIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, PSConsoleIcon) == 0x0004B8, "Member 'UHeraButtonBase::PSConsoleIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, ActionIconOverlay) == 0x0004C0, "Member 'UHeraButtonBase::ActionIconOverlay' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, SingleMaterialStyleMID) == 0x0004C8, "Member 'UHeraButtonBase::SingleMaterialStyleMID' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, NormalStyle) == 0x0004D0, "Member 'UHeraButtonBase::NormalStyle' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, SelectedStyle) == 0x0008C0, "Member 'UHeraButtonBase::SelectedStyle' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, DisabledStyle) == 0x000CB0, "Member 'UHeraButtonBase::DisabledStyle' has a wrong offset!"); \ +static_assert(offsetof(UHeraButtonBase, NormalTextStyle) == 0x0010A0, "Member 'UHeraButtonBase::NormalTextStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFadeWidget_ApplyFade \ +static_assert(alignof(HeraFadeWidget_ApplyFade) == 0x000004, "Wrong alignment on HeraFadeWidget_ApplyFade"); \ +static_assert(sizeof(HeraFadeWidget_ApplyFade) == 0x000008, "Wrong size on HeraFadeWidget_ApplyFade"); \ +static_assert(offsetof(HeraFadeWidget_ApplyFade, InFadeDirection) == 0x000000, "Member 'HeraFadeWidget_ApplyFade::InFadeDirection' has a wrong offset!"); \ +static_assert(offsetof(HeraFadeWidget_ApplyFade, InFadeDuration) == 0x000004, "Member 'HeraFadeWidget_ApplyFade::InFadeDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFadeWidget_OnFadeOpacityChanged \ +static_assert(alignof(HeraFadeWidget_OnFadeOpacityChanged) == 0x000004, "Wrong alignment on HeraFadeWidget_OnFadeOpacityChanged"); \ +static_assert(sizeof(HeraFadeWidget_OnFadeOpacityChanged) == 0x000008, "Wrong size on HeraFadeWidget_OnFadeOpacityChanged"); \ +static_assert(offsetof(HeraFadeWidget_OnFadeOpacityChanged, InFadeDirection) == 0x000000, "Member 'HeraFadeWidget_OnFadeOpacityChanged::InFadeDirection' has a wrong offset!"); \ +static_assert(offsetof(HeraFadeWidget_OnFadeOpacityChanged, InNewOpacity) == 0x000004, "Member 'HeraFadeWidget_OnFadeOpacityChanged::InNewOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFadeWidget_SetFadeColour \ +static_assert(alignof(HeraFadeWidget_SetFadeColour) == 0x000004, "Wrong alignment on HeraFadeWidget_SetFadeColour"); \ +static_assert(sizeof(HeraFadeWidget_SetFadeColour) == 0x000014, "Wrong size on HeraFadeWidget_SetFadeColour"); \ +static_assert(offsetof(HeraFadeWidget_SetFadeColour, InColor) == 0x000000, "Member 'HeraFadeWidget_SetFadeColour::InColor' has a wrong offset!"); \ +static_assert(offsetof(HeraFadeWidget_SetFadeColour, bUpdateOpacity) == 0x000010, "Member 'HeraFadeWidget_SetFadeColour::bUpdateOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFadeWidget_IsDefaultFadeState \ +static_assert(alignof(HeraFadeWidget_IsDefaultFadeState) == 0x000001, "Wrong alignment on HeraFadeWidget_IsDefaultFadeState"); \ +static_assert(sizeof(HeraFadeWidget_IsDefaultFadeState) == 0x000001, "Wrong size on HeraFadeWidget_IsDefaultFadeState"); \ +static_assert(offsetof(HeraFadeWidget_IsDefaultFadeState, ReturnValue) == 0x000000, "Member 'HeraFadeWidget_IsDefaultFadeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFadeWidget_IsFadeOpaque \ +static_assert(alignof(HeraFadeWidget_IsFadeOpaque) == 0x000001, "Wrong alignment on HeraFadeWidget_IsFadeOpaque"); \ +static_assert(sizeof(HeraFadeWidget_IsFadeOpaque) == 0x000001, "Wrong size on HeraFadeWidget_IsFadeOpaque"); \ +static_assert(offsetof(HeraFadeWidget_IsFadeOpaque, ReturnValue) == 0x000000, "Member 'HeraFadeWidget_IsFadeOpaque::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraFadeWidget \ +static_assert(alignof(UHeraFadeWidget) == 0x000008, "Wrong alignment on UHeraFadeWidget"); \ +static_assert(sizeof(UHeraFadeWidget) == 0x0002F0, "Wrong size on UHeraFadeWidget"); \ +static_assert(offsetof(UHeraFadeWidget, OnFadeFinished) == 0x0002C8, "Member 'UHeraFadeWidget::OnFadeFinished' has a wrong offset!"); \ +static_assert(offsetof(UHeraFadeWidget, FadeImage) == 0x0002D8, "Member 'UHeraFadeWidget::FadeImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraFNames \ +static_assert(alignof(UHeraFNames) == 0x000008, "Wrong alignment on UHeraFNames"); \ +static_assert(sizeof(UHeraFNames) == 0x000028, "Wrong size on UHeraFNames"); \ + +#define DUMPER7_ASSERTS_HeraHUD_GetHUDWidget \ +static_assert(alignof(HeraHUD_GetHUDWidget) == 0x000008, "Wrong alignment on HeraHUD_GetHUDWidget"); \ +static_assert(sizeof(HeraHUD_GetHUDWidget) == 0x000008, "Wrong size on HeraHUD_GetHUDWidget"); \ +static_assert(offsetof(HeraHUD_GetHUDWidget, ReturnValue) == 0x000000, "Member 'HeraHUD_GetHUDWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_GetOtherSlotWidget \ +static_assert(alignof(HeraHUD_GetOtherSlotWidget) == 0x000008, "Wrong alignment on HeraHUD_GetOtherSlotWidget"); \ +static_assert(sizeof(HeraHUD_GetOtherSlotWidget) == 0x000010, "Wrong size on HeraHUD_GetOtherSlotWidget"); \ +static_assert(offsetof(HeraHUD_GetOtherSlotWidget, InSlotNameID) == 0x000000, "Member 'HeraHUD_GetOtherSlotWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_GetOtherSlotWidget, ReturnValue) == 0x000008, "Member 'HeraHUD_GetOtherSlotWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_GetSlotCommonWidget \ +static_assert(alignof(HeraHUD_GetSlotCommonWidget) == 0x000008, "Wrong alignment on HeraHUD_GetSlotCommonWidget"); \ +static_assert(sizeof(HeraHUD_GetSlotCommonWidget) == 0x000010, "Wrong size on HeraHUD_GetSlotCommonWidget"); \ +static_assert(offsetof(HeraHUD_GetSlotCommonWidget, InSlotNameID) == 0x000000, "Member 'HeraHUD_GetSlotCommonWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_GetSlotCommonWidget, ReturnValue) == 0x000008, "Member 'HeraHUD_GetSlotCommonWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_GetSlotWidget \ +static_assert(alignof(HeraHUD_GetSlotWidget) == 0x000008, "Wrong alignment on HeraHUD_GetSlotWidget"); \ +static_assert(sizeof(HeraHUD_GetSlotWidget) == 0x000010, "Wrong size on HeraHUD_GetSlotWidget"); \ +static_assert(offsetof(HeraHUD_GetSlotWidget, InSlotNameID) == 0x000000, "Member 'HeraHUD_GetSlotWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_GetSlotWidget, ReturnValue) == 0x000008, "Member 'HeraHUD_GetSlotWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_OnUIEvent \ +static_assert(alignof(HeraHUD_OnUIEvent) == 0x000004, "Wrong alignment on HeraHUD_OnUIEvent"); \ +static_assert(sizeof(HeraHUD_OnUIEvent) == 0x000008, "Wrong size on HeraHUD_OnUIEvent"); \ +static_assert(offsetof(HeraHUD_OnUIEvent, InName) == 0x000000, "Member 'HeraHUD_OnUIEvent::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_Pop \ +static_assert(alignof(HeraHUD_Pop) == 0x000008, "Wrong alignment on HeraHUD_Pop"); \ +static_assert(sizeof(HeraHUD_Pop) == 0x000008, "Wrong size on HeraHUD_Pop"); \ +static_assert(offsetof(HeraHUD_Pop, ReturnValue) == 0x000000, "Member 'HeraHUD_Pop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_Push \ +static_assert(alignof(HeraHUD_Push) == 0x000008, "Wrong alignment on HeraHUD_Push"); \ +static_assert(sizeof(HeraHUD_Push) == 0x000010, "Wrong size on HeraHUD_Push"); \ +static_assert(offsetof(HeraHUD_Push, InName) == 0x000000, "Member 'HeraHUD_Push::InName' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_Push, ReturnValue) == 0x000008, "Member 'HeraHUD_Push::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_ReceiveOnUIEvent \ +static_assert(alignof(HeraHUD_ReceiveOnUIEvent) == 0x000004, "Wrong alignment on HeraHUD_ReceiveOnUIEvent"); \ +static_assert(sizeof(HeraHUD_ReceiveOnUIEvent) == 0x000008, "Wrong size on HeraHUD_ReceiveOnUIEvent"); \ +static_assert(offsetof(HeraHUD_ReceiveOnUIEvent, InName) == 0x000000, "Member 'HeraHUD_ReceiveOnUIEvent::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_ShowHUDDebugInfo \ +static_assert(alignof(HeraHUD_ShowHUDDebugInfo) == 0x000008, "Wrong alignment on HeraHUD_ShowHUDDebugInfo"); \ +static_assert(sizeof(HeraHUD_ShowHUDDebugInfo) == 0x000008, "Wrong size on HeraHUD_ShowHUDDebugInfo"); \ +static_assert(offsetof(HeraHUD_ShowHUDDebugInfo, InActor) == 0x000000, "Member 'HeraHUD_ShowHUDDebugInfo::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUD_UpdateSlotWidget \ +static_assert(alignof(HeraHUD_UpdateSlotWidget) == 0x000008, "Wrong alignment on HeraHUD_UpdateSlotWidget"); \ +static_assert(sizeof(HeraHUD_UpdateSlotWidget) == 0x000018, "Wrong size on HeraHUD_UpdateSlotWidget"); \ +static_assert(offsetof(HeraHUD_UpdateSlotWidget, InSlotNameID) == 0x000000, "Member 'HeraHUD_UpdateSlotWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_UpdateSlotWidget, InWidget) == 0x000008, "Member 'HeraHUD_UpdateSlotWidget::InWidget' has a wrong offset!"); \ +static_assert(offsetof(HeraHUD_UpdateSlotWidget, InSetSlot) == 0x000010, "Member 'HeraHUD_UpdateSlotWidget::InSetSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraHUD \ +static_assert(alignof(AHeraHUD) == 0x000008, "Wrong alignment on AHeraHUD"); \ +static_assert(sizeof(AHeraHUD) == 0x000460, "Wrong size on AHeraHUD"); \ +static_assert(offsetof(AHeraHUD, OnGamePausedChanged) == 0x000388, "Member 'AHeraHUD::OnGamePausedChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraHUD, PlayerHudVisibilityChanged) == 0x000398, "Member 'AHeraHUD::PlayerHudVisibilityChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraHUD, PlayerHudVisibilityChangedForGameOver) == 0x0003A8, "Member 'AHeraHUD::PlayerHudVisibilityChangedForGameOver' has a wrong offset!"); \ +static_assert(offsetof(AHeraHUD, PlayerInNarrativeMode) == 0x0003B8, "Member 'AHeraHUD::PlayerInNarrativeMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetHUD \ +static_assert(alignof(HeraHUDWidget_GetHUD) == 0x000008, "Wrong alignment on HeraHUDWidget_GetHUD"); \ +static_assert(sizeof(HeraHUDWidget_GetHUD) == 0x000008, "Wrong size on HeraHUDWidget_GetHUD"); \ +static_assert(offsetof(HeraHUDWidget_GetHUD, ReturnValue) == 0x000000, "Member 'HeraHUDWidget_GetHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetPawn \ +static_assert(alignof(HeraHUDWidget_GetPawn) == 0x000008, "Wrong alignment on HeraHUDWidget_GetPawn"); \ +static_assert(sizeof(HeraHUDWidget_GetPawn) == 0x000008, "Wrong size on HeraHUDWidget_GetPawn"); \ +static_assert(offsetof(HeraHUDWidget_GetPawn, ReturnValue) == 0x000000, "Member 'HeraHUDWidget_GetPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetPlayerController \ +static_assert(alignof(HeraHUDWidget_GetPlayerController) == 0x000008, "Wrong alignment on HeraHUDWidget_GetPlayerController"); \ +static_assert(sizeof(HeraHUDWidget_GetPlayerController) == 0x000008, "Wrong size on HeraHUDWidget_GetPlayerController"); \ +static_assert(offsetof(HeraHUDWidget_GetPlayerController, ReturnValue) == 0x000000, "Member 'HeraHUDWidget_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetPlayerState \ +static_assert(alignof(HeraHUDWidget_GetPlayerState) == 0x000008, "Wrong alignment on HeraHUDWidget_GetPlayerState"); \ +static_assert(sizeof(HeraHUDWidget_GetPlayerState) == 0x000008, "Wrong size on HeraHUDWidget_GetPlayerState"); \ +static_assert(offsetof(HeraHUDWidget_GetPlayerState, ReturnValue) == 0x000000, "Member 'HeraHUDWidget_GetPlayerState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetSlotCommonWidget \ +static_assert(alignof(HeraHUDWidget_GetSlotCommonWidget) == 0x000008, "Wrong alignment on HeraHUDWidget_GetSlotCommonWidget"); \ +static_assert(sizeof(HeraHUDWidget_GetSlotCommonWidget) == 0x000010, "Wrong size on HeraHUDWidget_GetSlotCommonWidget"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotCommonWidget, InSlotNameID) == 0x000000, "Member 'HeraHUDWidget_GetSlotCommonWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotCommonWidget, ReturnValue) == 0x000008, "Member 'HeraHUDWidget_GetSlotCommonWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetSlotOtherWidget \ +static_assert(alignof(HeraHUDWidget_GetSlotOtherWidget) == 0x000008, "Wrong alignment on HeraHUDWidget_GetSlotOtherWidget"); \ +static_assert(sizeof(HeraHUDWidget_GetSlotOtherWidget) == 0x000010, "Wrong size on HeraHUDWidget_GetSlotOtherWidget"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotOtherWidget, InSlotNameID) == 0x000000, "Member 'HeraHUDWidget_GetSlotOtherWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotOtherWidget, ReturnValue) == 0x000008, "Member 'HeraHUDWidget_GetSlotOtherWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_GetSlotWidget \ +static_assert(alignof(HeraHUDWidget_GetSlotWidget) == 0x000008, "Wrong alignment on HeraHUDWidget_GetSlotWidget"); \ +static_assert(sizeof(HeraHUDWidget_GetSlotWidget) == 0x000010, "Wrong size on HeraHUDWidget_GetSlotWidget"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotWidget, InSlotNameID) == 0x000000, "Member 'HeraHUDWidget_GetSlotWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUDWidget_GetSlotWidget, ReturnValue) == 0x000008, "Member 'HeraHUDWidget_GetSlotWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraHUDWidget_UpdateSlotWidget \ +static_assert(alignof(HeraHUDWidget_UpdateSlotWidget) == 0x000008, "Wrong alignment on HeraHUDWidget_UpdateSlotWidget"); \ +static_assert(sizeof(HeraHUDWidget_UpdateSlotWidget) == 0x000018, "Wrong size on HeraHUDWidget_UpdateSlotWidget"); \ +static_assert(offsetof(HeraHUDWidget_UpdateSlotWidget, InSlotNameID) == 0x000000, "Member 'HeraHUDWidget_UpdateSlotWidget::InSlotNameID' has a wrong offset!"); \ +static_assert(offsetof(HeraHUDWidget_UpdateSlotWidget, InWidget) == 0x000008, "Member 'HeraHUDWidget_UpdateSlotWidget::InWidget' has a wrong offset!"); \ +static_assert(offsetof(HeraHUDWidget_UpdateSlotWidget, InSetSlot) == 0x000010, "Member 'HeraHUDWidget_UpdateSlotWidget::InSetSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraHUDWidget \ +static_assert(alignof(UHeraHUDWidget) == 0x000008, "Wrong alignment on UHeraHUDWidget"); \ +static_assert(sizeof(UHeraHUDWidget) == 0x0002C8, "Wrong size on UHeraHUDWidget"); \ + +#define DUMPER7_ASSERTS_UHeraLoadingWidget \ +static_assert(alignof(UHeraLoadingWidget) == 0x000008, "Wrong alignment on UHeraLoadingWidget"); \ +static_assert(sizeof(UHeraLoadingWidget) == 0x0002C8, "Wrong size on UHeraLoadingWidget"); \ + +#define DUMPER7_ASSERTS_HeraMenu_GetMenuInputMode \ +static_assert(alignof(HeraMenu_GetMenuInputMode) == 0x000001, "Wrong alignment on HeraMenu_GetMenuInputMode"); \ +static_assert(sizeof(HeraMenu_GetMenuInputMode) == 0x000001, "Wrong size on HeraMenu_GetMenuInputMode"); \ +static_assert(offsetof(HeraMenu_GetMenuInputMode, ReturnValue) == 0x000000, "Member 'HeraMenu_GetMenuInputMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_LoadMap \ +static_assert(alignof(HeraMenu_LoadMap) == 0x000008, "Wrong alignment on HeraMenu_LoadMap"); \ +static_assert(sizeof(HeraMenu_LoadMap) == 0x000018, "Wrong size on HeraMenu_LoadMap"); \ +static_assert(offsetof(HeraMenu_LoadMap, InMap) == 0x000000, "Member 'HeraMenu_LoadMap::InMap' has a wrong offset!"); \ +static_assert(offsetof(HeraMenu_LoadMap, InOptions) == 0x000008, "Member 'HeraMenu_LoadMap::InOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_LoadMapByName \ +static_assert(alignof(HeraMenu_LoadMapByName) == 0x000008, "Wrong alignment on HeraMenu_LoadMapByName"); \ +static_assert(sizeof(HeraMenu_LoadMapByName) == 0x000018, "Wrong size on HeraMenu_LoadMapByName"); \ +static_assert(offsetof(HeraMenu_LoadMapByName, InMapTag) == 0x000000, "Member 'HeraMenu_LoadMapByName::InMapTag' has a wrong offset!"); \ +static_assert(offsetof(HeraMenu_LoadMapByName, InOptions) == 0x000008, "Member 'HeraMenu_LoadMapByName::InOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_LoadMapFromDebugStartPoint \ +static_assert(alignof(HeraMenu_LoadMapFromDebugStartPoint) == 0x000004, "Wrong alignment on HeraMenu_LoadMapFromDebugStartPoint"); \ +static_assert(sizeof(HeraMenu_LoadMapFromDebugStartPoint) == 0x000010, "Wrong size on HeraMenu_LoadMapFromDebugStartPoint"); \ +static_assert(offsetof(HeraMenu_LoadMapFromDebugStartPoint, InWorldName) == 0x000000, "Member 'HeraMenu_LoadMapFromDebugStartPoint::InWorldName' has a wrong offset!"); \ +static_assert(offsetof(HeraMenu_LoadMapFromDebugStartPoint, InDebugPointStartID) == 0x000008, "Member 'HeraMenu_LoadMapFromDebugStartPoint::InDebugPointStartID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_OverrideUI \ +static_assert(alignof(HeraMenu_OverrideUI) == 0x000008, "Wrong alignment on HeraMenu_OverrideUI"); \ +static_assert(sizeof(HeraMenu_OverrideUI) == 0x000008, "Wrong size on HeraMenu_OverrideUI"); \ +static_assert(offsetof(HeraMenu_OverrideUI, InNewHeraUI) == 0x000000, "Member 'HeraMenu_OverrideUI::InNewHeraUI' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_Push \ +static_assert(alignof(HeraMenu_Push) == 0x000008, "Wrong alignment on HeraMenu_Push"); \ +static_assert(sizeof(HeraMenu_Push) == 0x000010, "Wrong size on HeraMenu_Push"); \ +static_assert(offsetof(HeraMenu_Push, InScreen) == 0x000000, "Member 'HeraMenu_Push::InScreen' has a wrong offset!"); \ +static_assert(offsetof(HeraMenu_Push, ReturnValue) == 0x000008, "Member 'HeraMenu_Push::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_RaiseEvent \ +static_assert(alignof(HeraMenu_RaiseEvent) == 0x000004, "Wrong alignment on HeraMenu_RaiseEvent"); \ +static_assert(sizeof(HeraMenu_RaiseEvent) == 0x000008, "Wrong size on HeraMenu_RaiseEvent"); \ +static_assert(offsetof(HeraMenu_RaiseEvent, InEvent) == 0x000000, "Member 'HeraMenu_RaiseEvent::InEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_ReceiveOnKeyPressed \ +static_assert(alignof(HeraMenu_ReceiveOnKeyPressed) == 0x000004, "Wrong alignment on HeraMenu_ReceiveOnKeyPressed"); \ +static_assert(sizeof(HeraMenu_ReceiveOnKeyPressed) == 0x000008, "Wrong size on HeraMenu_ReceiveOnKeyPressed"); \ +static_assert(offsetof(HeraMenu_ReceiveOnKeyPressed, InKeyName) == 0x000000, "Member 'HeraMenu_ReceiveOnKeyPressed::InKeyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMenu_ReceiveOnUIEvent \ +static_assert(alignof(HeraMenu_ReceiveOnUIEvent) == 0x000004, "Wrong alignment on HeraMenu_ReceiveOnUIEvent"); \ +static_assert(sizeof(HeraMenu_ReceiveOnUIEvent) == 0x000008, "Wrong size on HeraMenu_ReceiveOnUIEvent"); \ +static_assert(offsetof(HeraMenu_ReceiveOnUIEvent, InEventName) == 0x000000, "Member 'HeraMenu_ReceiveOnUIEvent::InEventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMenu \ +static_assert(alignof(UHeraMenu) == 0x000008, "Wrong alignment on UHeraMenu"); \ +static_assert(sizeof(UHeraMenu) == 0x0002F8, "Wrong size on UHeraMenu"); \ +static_assert(offsetof(UHeraMenu, OnSkipCutsceneDelegate) == 0x0002C8, "Member 'UHeraMenu::OnSkipCutsceneDelegate' has a wrong offset!"); \ +static_assert(offsetof(UHeraMenu, bCanSkipCutscene) == 0x0002D8, "Member 'UHeraMenu::bCanSkipCutscene' has a wrong offset!"); \ +static_assert(offsetof(UHeraMenu, OverridenUI) == 0x0002E0, "Member 'UHeraMenu::OverridenUI' has a wrong offset!"); \ +static_assert(offsetof(UHeraMenu, MenuInputMode) == 0x0002E8, "Member 'UHeraMenu::MenuInputMode' has a wrong offset!"); \ +static_assert(offsetof(UHeraMenu, ActivatableLayout) == 0x0002F0, "Member 'UHeraMenu::ActivatableLayout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMenuStack \ +static_assert(alignof(UHeraMenuStack) == 0x000008, "Wrong alignment on UHeraMenuStack"); \ +static_assert(sizeof(UHeraMenuStack) == 0x000038, "Wrong size on UHeraMenuStack"); \ +static_assert(offsetof(UHeraMenuStack, Contents) == 0x000028, "Member 'UHeraMenuStack::Contents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetFrameBrush \ +static_assert(alignof(HeraSignWidget_GetFrameBrush) == 0x000010, "Wrong alignment on HeraSignWidget_GetFrameBrush"); \ +static_assert(sizeof(HeraSignWidget_GetFrameBrush) == 0x0000D0, "Wrong size on HeraSignWidget_GetFrameBrush"); \ +static_assert(offsetof(HeraSignWidget_GetFrameBrush, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetFrameBrush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetFrameColorAndOpacity \ +static_assert(alignof(HeraSignWidget_GetFrameColorAndOpacity) == 0x000004, "Wrong alignment on HeraSignWidget_GetFrameColorAndOpacity"); \ +static_assert(sizeof(HeraSignWidget_GetFrameColorAndOpacity) == 0x000010, "Wrong size on HeraSignWidget_GetFrameColorAndOpacity"); \ +static_assert(offsetof(HeraSignWidget_GetFrameColorAndOpacity, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetFrameColorAndOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetFramePadding \ +static_assert(alignof(HeraSignWidget_GetFramePadding) == 0x000004, "Wrong alignment on HeraSignWidget_GetFramePadding"); \ +static_assert(sizeof(HeraSignWidget_GetFramePadding) == 0x000010, "Wrong size on HeraSignWidget_GetFramePadding"); \ +static_assert(offsetof(HeraSignWidget_GetFramePadding, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetFramePadding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetImgAngle \ +static_assert(alignof(HeraSignWidget_GetImgAngle) == 0x000004, "Wrong alignment on HeraSignWidget_GetImgAngle"); \ +static_assert(sizeof(HeraSignWidget_GetImgAngle) == 0x000004, "Wrong size on HeraSignWidget_GetImgAngle"); \ +static_assert(offsetof(HeraSignWidget_GetImgAngle, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetImgAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetImgBrush \ +static_assert(alignof(HeraSignWidget_GetImgBrush) == 0x000010, "Wrong alignment on HeraSignWidget_GetImgBrush"); \ +static_assert(sizeof(HeraSignWidget_GetImgBrush) == 0x0000D0, "Wrong size on HeraSignWidget_GetImgBrush"); \ +static_assert(offsetof(HeraSignWidget_GetImgBrush, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetImgBrush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetImgLocation \ +static_assert(alignof(HeraSignWidget_GetImgLocation) == 0x000001, "Wrong alignment on HeraSignWidget_GetImgLocation"); \ +static_assert(sizeof(HeraSignWidget_GetImgLocation) == 0x000001, "Wrong size on HeraSignWidget_GetImgLocation"); \ +static_assert(offsetof(HeraSignWidget_GetImgLocation, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetImgLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetSignBrush \ +static_assert(alignof(HeraSignWidget_GetSignBrush) == 0x000010, "Wrong alignment on HeraSignWidget_GetSignBrush"); \ +static_assert(sizeof(HeraSignWidget_GetSignBrush) == 0x0000D0, "Wrong size on HeraSignWidget_GetSignBrush"); \ +static_assert(offsetof(HeraSignWidget_GetSignBrush, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetSignBrush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetSignColorAndOpacity \ +static_assert(alignof(HeraSignWidget_GetSignColorAndOpacity) == 0x000004, "Wrong alignment on HeraSignWidget_GetSignColorAndOpacity"); \ +static_assert(sizeof(HeraSignWidget_GetSignColorAndOpacity) == 0x000010, "Wrong size on HeraSignWidget_GetSignColorAndOpacity"); \ +static_assert(offsetof(HeraSignWidget_GetSignColorAndOpacity, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetSignColorAndOpacity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetSignPadding \ +static_assert(alignof(HeraSignWidget_GetSignPadding) == 0x000004, "Wrong alignment on HeraSignWidget_GetSignPadding"); \ +static_assert(sizeof(HeraSignWidget_GetSignPadding) == 0x000010, "Wrong size on HeraSignWidget_GetSignPadding"); \ +static_assert(offsetof(HeraSignWidget_GetSignPadding, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetSignPadding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetSymbolOffset \ +static_assert(alignof(HeraSignWidget_GetSymbolOffset) == 0x000008, "Wrong alignment on HeraSignWidget_GetSymbolOffset"); \ +static_assert(sizeof(HeraSignWidget_GetSymbolOffset) == 0x000010, "Wrong size on HeraSignWidget_GetSymbolOffset"); \ +static_assert(offsetof(HeraSignWidget_GetSymbolOffset, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetSymbolOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetTextOffset \ +static_assert(alignof(HeraSignWidget_GetTextOffset) == 0x000008, "Wrong alignment on HeraSignWidget_GetTextOffset"); \ +static_assert(sizeof(HeraSignWidget_GetTextOffset) == 0x000010, "Wrong size on HeraSignWidget_GetTextOffset"); \ +static_assert(offsetof(HeraSignWidget_GetTextOffset, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetTextOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetColor \ +static_assert(alignof(HeraSignWidget_SetColor) == 0x000004, "Wrong alignment on HeraSignWidget_SetColor"); \ +static_assert(sizeof(HeraSignWidget_SetColor) == 0x000014, "Wrong size on HeraSignWidget_SetColor"); \ +static_assert(offsetof(HeraSignWidget_SetColor, InColorAndOpacity) == 0x000000, "Member 'HeraSignWidget_SetColor::InColorAndOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetFont \ +static_assert(alignof(HeraSignWidget_SetFont) == 0x000008, "Wrong alignment on HeraSignWidget_SetFont"); \ +static_assert(sizeof(HeraSignWidget_SetFont) == 0x000058, "Wrong size on HeraSignWidget_SetFont"); \ +static_assert(offsetof(HeraSignWidget_SetFont, InFontInfo) == 0x000000, "Member 'HeraSignWidget_SetFont::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetFrameBrush \ +static_assert(alignof(HeraSignWidget_SetFrameBrush) == 0x000010, "Wrong alignment on HeraSignWidget_SetFrameBrush"); \ +static_assert(sizeof(HeraSignWidget_SetFrameBrush) == 0x0000D0, "Wrong size on HeraSignWidget_SetFrameBrush"); \ +static_assert(offsetof(HeraSignWidget_SetFrameBrush, InBrush) == 0x000000, "Member 'HeraSignWidget_SetFrameBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetFrameColorAndOpacity \ +static_assert(alignof(HeraSignWidget_SetFrameColorAndOpacity) == 0x000004, "Wrong alignment on HeraSignWidget_SetFrameColorAndOpacity"); \ +static_assert(sizeof(HeraSignWidget_SetFrameColorAndOpacity) == 0x000010, "Wrong size on HeraSignWidget_SetFrameColorAndOpacity"); \ +static_assert(offsetof(HeraSignWidget_SetFrameColorAndOpacity, InColor) == 0x000000, "Member 'HeraSignWidget_SetFrameColorAndOpacity::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetFramePadding \ +static_assert(alignof(HeraSignWidget_SetFramePadding) == 0x000004, "Wrong alignment on HeraSignWidget_SetFramePadding"); \ +static_assert(sizeof(HeraSignWidget_SetFramePadding) == 0x000010, "Wrong size on HeraSignWidget_SetFramePadding"); \ +static_assert(offsetof(HeraSignWidget_SetFramePadding, InPadding) == 0x000000, "Member 'HeraSignWidget_SetFramePadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetImgAngle \ +static_assert(alignof(HeraSignWidget_SetImgAngle) == 0x000004, "Wrong alignment on HeraSignWidget_SetImgAngle"); \ +static_assert(sizeof(HeraSignWidget_SetImgAngle) == 0x000004, "Wrong size on HeraSignWidget_SetImgAngle"); \ +static_assert(offsetof(HeraSignWidget_SetImgAngle, InAngle) == 0x000000, "Member 'HeraSignWidget_SetImgAngle::InAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetImgBrush \ +static_assert(alignof(HeraSignWidget_SetImgBrush) == 0x000010, "Wrong alignment on HeraSignWidget_SetImgBrush"); \ +static_assert(sizeof(HeraSignWidget_SetImgBrush) == 0x0000D0, "Wrong size on HeraSignWidget_SetImgBrush"); \ +static_assert(offsetof(HeraSignWidget_SetImgBrush, InBrush) == 0x000000, "Member 'HeraSignWidget_SetImgBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetImgLocation \ +static_assert(alignof(HeraSignWidget_SetImgLocation) == 0x000001, "Wrong alignment on HeraSignWidget_SetImgLocation"); \ +static_assert(sizeof(HeraSignWidget_SetImgLocation) == 0x000001, "Wrong size on HeraSignWidget_SetImgLocation"); \ +static_assert(offsetof(HeraSignWidget_SetImgLocation, InLocation) == 0x000000, "Member 'HeraSignWidget_SetImgLocation::InLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetJustification \ +static_assert(alignof(HeraSignWidget_SetJustification) == 0x000001, "Wrong alignment on HeraSignWidget_SetJustification"); \ +static_assert(sizeof(HeraSignWidget_SetJustification) == 0x000001, "Wrong size on HeraSignWidget_SetJustification"); \ +static_assert(offsetof(HeraSignWidget_SetJustification, InJustification) == 0x000000, "Member 'HeraSignWidget_SetJustification::InJustification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetShadowColorAndOffset \ +static_assert(alignof(HeraSignWidget_SetShadowColorAndOffset) == 0x000008, "Wrong alignment on HeraSignWidget_SetShadowColorAndOffset"); \ +static_assert(sizeof(HeraSignWidget_SetShadowColorAndOffset) == 0x000020, "Wrong size on HeraSignWidget_SetShadowColorAndOffset"); \ +static_assert(offsetof(HeraSignWidget_SetShadowColorAndOffset, InColor) == 0x000000, "Member 'HeraSignWidget_SetShadowColorAndOffset::InColor' has a wrong offset!"); \ +static_assert(offsetof(HeraSignWidget_SetShadowColorAndOffset, InOffset) == 0x000010, "Member 'HeraSignWidget_SetShadowColorAndOffset::InOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetSignBrush \ +static_assert(alignof(HeraSignWidget_SetSignBrush) == 0x000010, "Wrong alignment on HeraSignWidget_SetSignBrush"); \ +static_assert(sizeof(HeraSignWidget_SetSignBrush) == 0x0000D0, "Wrong size on HeraSignWidget_SetSignBrush"); \ +static_assert(offsetof(HeraSignWidget_SetSignBrush, InBrush) == 0x000000, "Member 'HeraSignWidget_SetSignBrush::InBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetSignColorAndOpacity \ +static_assert(alignof(HeraSignWidget_SetSignColorAndOpacity) == 0x000004, "Wrong alignment on HeraSignWidget_SetSignColorAndOpacity"); \ +static_assert(sizeof(HeraSignWidget_SetSignColorAndOpacity) == 0x000010, "Wrong size on HeraSignWidget_SetSignColorAndOpacity"); \ +static_assert(offsetof(HeraSignWidget_SetSignColorAndOpacity, InColor) == 0x000000, "Member 'HeraSignWidget_SetSignColorAndOpacity::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetSignPadding \ +static_assert(alignof(HeraSignWidget_SetSignPadding) == 0x000004, "Wrong alignment on HeraSignWidget_SetSignPadding"); \ +static_assert(sizeof(HeraSignWidget_SetSignPadding) == 0x000010, "Wrong size on HeraSignWidget_SetSignPadding"); \ +static_assert(offsetof(HeraSignWidget_SetSignPadding, InPadding) == 0x000000, "Member 'HeraSignWidget_SetSignPadding::InPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetSymbolOffset \ +static_assert(alignof(HeraSignWidget_SetSymbolOffset) == 0x000008, "Wrong alignment on HeraSignWidget_SetSymbolOffset"); \ +static_assert(sizeof(HeraSignWidget_SetSymbolOffset) == 0x000010, "Wrong size on HeraSignWidget_SetSymbolOffset"); \ +static_assert(offsetof(HeraSignWidget_SetSymbolOffset, InOffset) == 0x000000, "Member 'HeraSignWidget_SetSymbolOffset::InOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetText \ +static_assert(alignof(HeraSignWidget_SetText) == 0x000008, "Wrong alignment on HeraSignWidget_SetText"); \ +static_assert(sizeof(HeraSignWidget_SetText) == 0x000018, "Wrong size on HeraSignWidget_SetText"); \ +static_assert(offsetof(HeraSignWidget_SetText, InText) == 0x000000, "Member 'HeraSignWidget_SetText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_SetTextOffset \ +static_assert(alignof(HeraSignWidget_SetTextOffset) == 0x000008, "Wrong alignment on HeraSignWidget_SetTextOffset"); \ +static_assert(sizeof(HeraSignWidget_SetTextOffset) == 0x000010, "Wrong size on HeraSignWidget_SetTextOffset"); \ +static_assert(offsetof(HeraSignWidget_SetTextOffset, InOffset) == 0x000000, "Member 'HeraSignWidget_SetTextOffset::InOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetColor \ +static_assert(alignof(HeraSignWidget_GetColor) == 0x000004, "Wrong alignment on HeraSignWidget_GetColor"); \ +static_assert(sizeof(HeraSignWidget_GetColor) == 0x000014, "Wrong size on HeraSignWidget_GetColor"); \ +static_assert(offsetof(HeraSignWidget_GetColor, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetFont \ +static_assert(alignof(HeraSignWidget_GetFont) == 0x000008, "Wrong alignment on HeraSignWidget_GetFont"); \ +static_assert(sizeof(HeraSignWidget_GetFont) == 0x000058, "Wrong size on HeraSignWidget_GetFont"); \ +static_assert(offsetof(HeraSignWidget_GetFont, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetFont::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetJustification \ +static_assert(alignof(HeraSignWidget_GetJustification) == 0x000001, "Wrong alignment on HeraSignWidget_GetJustification"); \ +static_assert(sizeof(HeraSignWidget_GetJustification) == 0x000001, "Wrong size on HeraSignWidget_GetJustification"); \ +static_assert(offsetof(HeraSignWidget_GetJustification, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetJustification::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetShadowColorAndOffset \ +static_assert(alignof(HeraSignWidget_GetShadowColorAndOffset) == 0x000008, "Wrong alignment on HeraSignWidget_GetShadowColorAndOffset"); \ +static_assert(sizeof(HeraSignWidget_GetShadowColorAndOffset) == 0x000020, "Wrong size on HeraSignWidget_GetShadowColorAndOffset"); \ +static_assert(offsetof(HeraSignWidget_GetShadowColorAndOffset, OutColor) == 0x000000, "Member 'HeraSignWidget_GetShadowColorAndOffset::OutColor' has a wrong offset!"); \ +static_assert(offsetof(HeraSignWidget_GetShadowColorAndOffset, OutOffset) == 0x000010, "Member 'HeraSignWidget_GetShadowColorAndOffset::OutOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraSignWidget_GetText \ +static_assert(alignof(HeraSignWidget_GetText) == 0x000008, "Wrong alignment on HeraSignWidget_GetText"); \ +static_assert(sizeof(HeraSignWidget_GetText) == 0x000018, "Wrong size on HeraSignWidget_GetText"); \ +static_assert(offsetof(HeraSignWidget_GetText, ReturnValue) == 0x000000, "Member 'HeraSignWidget_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraSignWidget \ +static_assert(alignof(UHeraSignWidget) == 0x000008, "Wrong alignment on UHeraSignWidget"); \ +static_assert(sizeof(UHeraSignWidget) == 0x0002F8, "Wrong size on UHeraSignWidget"); \ +static_assert(offsetof(UHeraSignWidget, bIsNew) == 0x0002C8, "Member 'UHeraSignWidget::bIsNew' has a wrong offset!"); \ +static_assert(offsetof(UHeraSignWidget, TB_Text) == 0x0002D0, "Member 'UHeraSignWidget::TB_Text' has a wrong offset!"); \ +static_assert(offsetof(UHeraSignWidget, IMG_Symbol) == 0x0002D8, "Member 'UHeraSignWidget::IMG_Symbol' has a wrong offset!"); \ +static_assert(offsetof(UHeraSignWidget, BD_Frame) == 0x0002E0, "Member 'UHeraSignWidget::BD_Frame' has a wrong offset!"); \ +static_assert(offsetof(UHeraSignWidget, BD_Sign) == 0x0002E8, "Member 'UHeraSignWidget::BD_Sign' has a wrong offset!"); \ +static_assert(offsetof(UHeraSignWidget, Justification) == 0x0002F0, "Member 'UHeraSignWidget::Justification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraTestWidget \ +static_assert(alignof(UHeraTestWidget) == 0x000008, "Wrong alignment on UHeraTestWidget"); \ +static_assert(sizeof(UHeraTestWidget) == 0x0002E8, "Wrong size on UHeraTestWidget"); \ +static_assert(offsetof(UHeraTestWidget, Next) == 0x0002C8, "Member 'UHeraTestWidget::Next' has a wrong offset!"); \ +static_assert(offsetof(UHeraTestWidget, Prev) == 0x0002D0, "Member 'UHeraTestWidget::Prev' has a wrong offset!"); \ +static_assert(offsetof(UHeraTestWidget, AllLinks) == 0x0002D8, "Member 'UHeraTestWidget::AllLinks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraUI \ +static_assert(alignof(UHeraUI) == 0x000008, "Wrong alignment on UHeraUI"); \ +static_assert(sizeof(UHeraUI) == 0x0000D0, "Wrong size on UHeraUI"); \ +static_assert(offsetof(UHeraUI, PropertyMenuID) == 0x000050, "Member 'UHeraUI::PropertyMenuID' has a wrong offset!"); \ +static_assert(offsetof(UHeraUI, Stack) == 0x000058, "Member 'UHeraUI::Stack' has a wrong offset!"); \ +static_assert(offsetof(UHeraUI, Setup) == 0x000060, "Member 'UHeraUI::Setup' has a wrong offset!"); \ +static_assert(offsetof(UHeraUI, Cache) == 0x000068, "Member 'UHeraUI::Cache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraUIHelper \ +static_assert(alignof(UHeraUIHelper) == 0x000008, "Wrong alignment on UHeraUIHelper"); \ +static_assert(sizeof(UHeraUIHelper) == 0x000028, "Wrong size on UHeraUIHelper"); \ + +#define DUMPER7_ASSERTS_UHeraUISettings \ +static_assert(alignof(UHeraUISettings) == 0x000008, "Wrong alignment on UHeraUISettings"); \ +static_assert(sizeof(UHeraUISettings) == 0x000070, "Wrong size on UHeraUISettings"); \ +static_assert(offsetof(UHeraUISettings, PropertyMenuID) == 0x000038, "Member 'UHeraUISettings::PropertyMenuID' has a wrong offset!"); \ +static_assert(offsetof(UHeraUISettings, DefaultInteractionSlot) == 0x000060, "Member 'UHeraUISettings::DefaultInteractionSlot' has a wrong offset!"); \ +static_assert(offsetof(UHeraUISettings, DefaultFadeOverlaySlot) == 0x000068, "Member 'UHeraUISettings::DefaultFadeOverlaySlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraUISetup \ +static_assert(alignof(UHeraUISetup) == 0x000008, "Wrong alignment on UHeraUISetup"); \ +static_assert(sizeof(UHeraUISetup) == 0x0000D0, "Wrong size on UHeraUISetup"); \ +static_assert(offsetof(UHeraUISetup, Menus) == 0x000030, "Member 'UHeraUISetup::Menus' has a wrong offset!"); \ +static_assert(offsetof(UHeraUISetup, HUDMapping) == 0x000080, "Member 'UHeraUISetup::HUDMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueParticipant \ +static_assert(alignof(FHeraDialogueParticipant) == 0x000008, "Wrong alignment on FHeraDialogueParticipant"); \ +static_assert(sizeof(FHeraDialogueParticipant) == 0x000030, "Wrong size on FHeraDialogueParticipant"); \ +static_assert(offsetof(FHeraDialogueParticipant, Actor) == 0x000008, "Member 'FHeraDialogueParticipant::Actor' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueParticipant, AudioObject) == 0x000010, "Member 'FHeraDialogueParticipant::AudioObject' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueParticipant, EmitterTransforms) == 0x000018, "Member 'FHeraDialogueParticipant::EmitterTransforms' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueParticipant, bSpeaking) == 0x000028, "Member 'FHeraDialogueParticipant::bSpeaking' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueParticipant, bShouldProgressStory) == 0x000029, "Member 'FHeraDialogueParticipant::bShouldProgressStory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueRuntimeInfo \ +static_assert(alignof(FHeraDialogueRuntimeInfo) == 0x000008, "Wrong alignment on FHeraDialogueRuntimeInfo"); \ +static_assert(sizeof(FHeraDialogueRuntimeInfo) == 0x0000A0, "Wrong size on FHeraDialogueRuntimeInfo"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, DialogueInfo) == 0x000000, "Member 'FHeraDialogueRuntimeInfo::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, DialogueRig) == 0x000008, "Member 'FHeraDialogueRuntimeInfo::DialogueRig' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, ParticipantList) == 0x000010, "Member 'FHeraDialogueRuntimeInfo::ParticipantList' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, MediaPlayer) == 0x000060, "Member 'FHeraDialogueRuntimeInfo::MediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bStoryHasChoices) == 0x000068, "Member 'FHeraDialogueRuntimeInfo::bStoryHasChoices' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bIsIntroInProgress) == 0x000069, "Member 'FHeraDialogueRuntimeInfo::bIsIntroInProgress' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bHidePlayerHUD) == 0x00006A, "Member 'FHeraDialogueRuntimeInfo::bHidePlayerHUD' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bDisablePlayerInput) == 0x00006B, "Member 'FHeraDialogueRuntimeInfo::bDisablePlayerInput' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bUsingFakePlayerOnRig) == 0x00006C, "Member 'FHeraDialogueRuntimeInfo::bUsingFakePlayerOnRig' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bShouldEvaluateLine) == 0x00006D, "Member 'FHeraDialogueRuntimeInfo::bShouldEvaluateLine' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bShouldResetTimeElapsed) == 0x00006E, "Member 'FHeraDialogueRuntimeInfo::bShouldResetTimeElapsed' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bShouldSkipLine) == 0x00006F, "Member 'FHeraDialogueRuntimeInfo::bShouldSkipLine' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bHasBroadcastPresentChoices) == 0x000070, "Member 'FHeraDialogueRuntimeInfo::bHasBroadcastPresentChoices' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bCurrentLineAudible) == 0x000071, "Member 'FHeraDialogueRuntimeInfo::bCurrentLineAudible' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, CurrentLineDuration) == 0x000074, "Member 'FHeraDialogueRuntimeInfo::CurrentLineDuration' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, CurrentLineTimeElapsed) == 0x000078, "Member 'FHeraDialogueRuntimeInfo::CurrentLineTimeElapsed' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, LastTimeElapsed) == 0x00007C, "Member 'FHeraDialogueRuntimeInfo::LastTimeElapsed' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, AudioEmitterDistanceSqr) == 0x000080, "Member 'FHeraDialogueRuntimeInfo::AudioEmitterDistanceSqr' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, DialogueType) == 0x000084, "Member 'FHeraDialogueRuntimeInfo::DialogueType' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bShouldTearDownStoryImmediatelyOnFinished) == 0x000085, "Member 'FHeraDialogueRuntimeInfo::bShouldTearDownStoryImmediatelyOnFinished' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bIsContinueStoryPending) == 0x000086, "Member 'FHeraDialogueRuntimeInfo::bIsContinueStoryPending' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, bIsContinueStorySequencerPending) == 0x000087, "Member 'FHeraDialogueRuntimeInfo::bIsContinueStorySequencerPending' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueRuntimeInfo, ChosenChoiceIndex) == 0x000088, "Member 'FHeraDialogueRuntimeInfo::ChosenChoiceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBantsParticipant \ +static_assert(alignof(FHeraBantsParticipant) == 0x000008, "Wrong alignment on FHeraBantsParticipant"); \ +static_assert(sizeof(FHeraBantsParticipant) == 0x000038, "Wrong size on FHeraBantsParticipant"); \ +static_assert(offsetof(FHeraBantsParticipant, Member) == 0x000000, "Member 'FHeraBantsParticipant::Member' has a wrong offset!"); \ +static_assert(offsetof(FHeraBantsParticipant, DialogueInfo) == 0x000030, "Member 'FHeraBantsParticipant::DialogueInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBantsData \ +static_assert(alignof(FHeraBantsData) == 0x000008, "Wrong alignment on FHeraBantsData"); \ +static_assert(sizeof(FHeraBantsData) == 0x000058, "Wrong size on FHeraBantsData"); \ +static_assert(offsetof(FHeraBantsData, Participants) == 0x000000, "Member 'FHeraBantsData::Participants' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueAudioRequest \ +static_assert(alignof(FHeraDialogueAudioRequest) == 0x000008, "Wrong alignment on FHeraDialogueAudioRequest"); \ +static_assert(sizeof(FHeraDialogueAudioRequest) == 0x000070, "Wrong size on FHeraDialogueAudioRequest"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, StoryHandle) == 0x000000, "Member 'FHeraDialogueAudioRequest::StoryHandle' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, DialogueAudioEvent) == 0x000008, "Member 'FHeraDialogueAudioRequest::DialogueAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, DialogueVolumeOffsetdB) == 0x000010, "Member 'FHeraDialogueAudioRequest::DialogueVolumeOffsetdB' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, DialogueVolumeRtpc) == 0x000018, "Member 'FHeraDialogueAudioRequest::DialogueVolumeRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, DialoguePriorityRtpc) == 0x000020, "Member 'FHeraDialogueAudioRequest::DialoguePriorityRtpc' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, DialoguePriorityValue) == 0x000028, "Member 'FHeraDialogueAudioRequest::DialoguePriorityValue' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, ExternalSourceAssetPath) == 0x000030, "Member 'FHeraDialogueAudioRequest::ExternalSourceAssetPath' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, AudioObject) == 0x000050, "Member 'FHeraDialogueAudioRequest::AudioObject' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, bUseGlobalGameObject) == 0x000058, "Member 'FHeraDialogueAudioRequest::bUseGlobalGameObject' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, bCallbackOnFinished) == 0x000059, "Member 'FHeraDialogueAudioRequest::bCallbackOnFinished' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, bUseMultiplePositions) == 0x00005A, "Member 'FHeraDialogueAudioRequest::bUseMultiplePositions' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioRequest, EmitterTransforms) == 0x000060, "Member 'FHeraDialogueAudioRequest::EmitterTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBantsArray \ +static_assert(alignof(FHeraBantsArray) == 0x000008, "Wrong alignment on FHeraBantsArray"); \ +static_assert(sizeof(FHeraBantsArray) == 0x000010, "Wrong size on FHeraBantsArray"); \ +static_assert(offsetof(FHeraBantsArray, BantsArray) == 0x000000, "Member 'FHeraBantsArray::BantsArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBantsCooldownElement \ +static_assert(alignof(FHeraBantsCooldownElement) == 0x000008, "Wrong alignment on FHeraBantsCooldownElement"); \ +static_assert(sizeof(FHeraBantsCooldownElement) == 0x000018, "Wrong size on FHeraBantsCooldownElement"); \ +static_assert(offsetof(FHeraBantsCooldownElement, NarrativePrompt) == 0x000000, "Member 'FHeraBantsCooldownElement::NarrativePrompt' has a wrong offset!"); \ +static_assert(offsetof(FHeraBantsCooldownElement, Cooldown) == 0x000008, "Member 'FHeraBantsCooldownElement::Cooldown' has a wrong offset!"); \ +static_assert(offsetof(FHeraBantsCooldownElement, TimeTriggered) == 0x000010, "Member 'FHeraBantsCooldownElement::TimeTriggered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBantsPromptData \ +static_assert(alignof(FHeraBantsPromptData) == 0x000004, "Wrong alignment on FHeraBantsPromptData"); \ +static_assert(sizeof(FHeraBantsPromptData) == 0x000010, "Wrong size on FHeraBantsPromptData"); \ +static_assert(offsetof(FHeraBantsPromptData, PromptTag) == 0x000000, "Member 'FHeraBantsPromptData::PromptTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraBantsPromptData, MaxSimultaneous) == 0x000008, "Member 'FHeraBantsPromptData::MaxSimultaneous' has a wrong offset!"); \ +static_assert(offsetof(FHeraBantsPromptData, PromptLimitExceededBehaviour) == 0x00000C, "Member 'FHeraBantsPromptData::PromptLimitExceededBehaviour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueAnimBlendingOverrideParams \ +static_assert(alignof(FHeraDialogueAnimBlendingOverrideParams) == 0x000008, "Wrong alignment on FHeraDialogueAnimBlendingOverrideParams"); \ +static_assert(sizeof(FHeraDialogueAnimBlendingOverrideParams) == 0x000010, "Wrong size on FHeraDialogueAnimBlendingOverrideParams"); \ +static_assert(offsetof(FHeraDialogueAnimBlendingOverrideParams, BlendSpeed) == 0x000000, "Member 'FHeraDialogueAnimBlendingOverrideParams::BlendSpeed' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAnimBlendingOverrideParams, BlendCurve) == 0x000008, "Member 'FHeraDialogueAnimBlendingOverrideParams::BlendCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueAudioPlaybackItem \ +static_assert(alignof(FHeraDialogueAudioPlaybackItem) == 0x000008, "Wrong alignment on FHeraDialogueAudioPlaybackItem"); \ +static_assert(sizeof(FHeraDialogueAudioPlaybackItem) == 0x000010, "Wrong size on FHeraDialogueAudioPlaybackItem"); \ +static_assert(offsetof(FHeraDialogueAudioPlaybackItem, MediaAsset) == 0x000000, "Member 'FHeraDialogueAudioPlaybackItem::MediaAsset' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioPlaybackItem, bCallbackOnFinished) == 0x000008, "Member 'FHeraDialogueAudioPlaybackItem::bCallbackOnFinished' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAudioPlaybackItem, PlayingID) == 0x00000C, "Member 'FHeraDialogueAudioPlaybackItem::PlayingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueAutoBindingProperty \ +static_assert(alignof(FHeraDialogueAutoBindingProperty) == 0x000008, "Wrong alignment on FHeraDialogueAutoBindingProperty"); \ +static_assert(sizeof(FHeraDialogueAutoBindingProperty) == 0x000038, "Wrong size on FHeraDialogueAutoBindingProperty"); \ +static_assert(offsetof(FHeraDialogueAutoBindingProperty, DialogueVariableName) == 0x000000, "Member 'FHeraDialogueAutoBindingProperty::DialogueVariableName' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueAutoBindingProperty, HeraProperty) == 0x000010, "Member 'FHeraDialogueAutoBindingProperty::HeraProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueViewTargetTransitionParams \ +static_assert(alignof(FHeraDialogueViewTargetTransitionParams) == 0x000004, "Wrong alignment on FHeraDialogueViewTargetTransitionParams"); \ +static_assert(sizeof(FHeraDialogueViewTargetTransitionParams) == 0x000028, "Wrong size on FHeraDialogueViewTargetTransitionParams"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, CameraCutType) == 0x000000, "Member 'FHeraDialogueViewTargetTransitionParams::CameraCutType' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, bHidePlayerForTransition) == 0x000004, "Member 'FHeraDialogueViewTargetTransitionParams::bHidePlayerForTransition' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, ViewTargetTransitionParams) == 0x000008, "Member 'FHeraDialogueViewTargetTransitionParams::ViewTargetTransitionParams' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, FadeTime) == 0x000018, "Member 'FHeraDialogueViewTargetTransitionParams::FadeTime' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, CameraTag) == 0x00001C, "Member 'FHeraDialogueViewTargetTransitionParams::CameraTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueViewTargetTransitionParams, bNotifyTransitionDone) == 0x000024, "Member 'FHeraDialogueViewTargetTransitionParams::bNotifyTransitionDone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueCameraAvailabilityInfo \ +static_assert(alignof(FHeraDialogueCameraAvailabilityInfo) == 0x000008, "Wrong alignment on FHeraDialogueCameraAvailabilityInfo"); \ +static_assert(sizeof(FHeraDialogueCameraAvailabilityInfo) == 0x000050, "Wrong size on FHeraDialogueCameraAvailabilityInfo"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueCharacterTagAssociation \ +static_assert(alignof(FHeraDialogueCharacterTagAssociation) == 0x000008, "Wrong alignment on FHeraDialogueCharacterTagAssociation"); \ +static_assert(sizeof(FHeraDialogueCharacterTagAssociation) == 0x000098, "Wrong size on FHeraDialogueCharacterTagAssociation"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, CharacterTag) == 0x000000, "Member 'FHeraDialogueCharacterTagAssociation::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, GoogleTtsName) == 0x000008, "Member 'FHeraDialogueCharacterTagAssociation::GoogleTtsName' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, UserFacingCharacterName) == 0x000018, "Member 'FHeraDialogueCharacterTagAssociation::UserFacingCharacterName' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, ConversationCharacterClass) == 0x000030, "Member 'FHeraDialogueCharacterTagAssociation::ConversationCharacterClass' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, CharacterBio) == 0x000058, "Member 'FHeraDialogueCharacterTagAssociation::CharacterBio' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterTagAssociation, AudioSettings) == 0x000070, "Member 'FHeraDialogueCharacterTagAssociation::AudioSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueChoice \ +static_assert(alignof(FHeraDialogueChoice) == 0x000008, "Wrong alignment on FHeraDialogueChoice"); \ +static_assert(sizeof(FHeraDialogueChoice) == 0x000020, "Wrong size on FHeraDialogueChoice"); \ +static_assert(offsetof(FHeraDialogueChoice, ChoiceText) == 0x000000, "Member 'FHeraDialogueChoice::ChoiceText' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueChoice, Tags) == 0x000010, "Member 'FHeraDialogueChoice::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueDopeSheetRow \ +static_assert(alignof(FHeraDialogueDopeSheetRow) == 0x000008, "Wrong alignment on FHeraDialogueDopeSheetRow"); \ +static_assert(sizeof(FHeraDialogueDopeSheetRow) == 0x0001C0, "Wrong size on FHeraDialogueDopeSheetRow"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, Text) == 0x000008, "Member 'FHeraDialogueDopeSheetRow::Text' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, Comment) == 0x000020, "Member 'FHeraDialogueDopeSheetRow::Comment' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, CharacterTag) == 0x000030, "Member 'FHeraDialogueDopeSheetRow::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, FacialAnimation) == 0x000038, "Member 'FHeraDialogueDopeSheetRow::FacialAnimation' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, BodyAnimation) == 0x000060, "Member 'FHeraDialogueDopeSheetRow::BodyAnimation' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, bLoopBodyAnimation) == 0x000088, "Member 'FHeraDialogueDopeSheetRow::bLoopBodyAnimation' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioAssetPath) == 0x000090, "Member 'FHeraDialogueDopeSheetRow::AudioAssetPath' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioSettings) == 0x0000B0, "Member 'FHeraDialogueDopeSheetRow::AudioSettings' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, DialogueVolumeOffsetdB) == 0x0000D8, "Member 'FHeraDialogueDopeSheetRow::DialogueVolumeOffsetdB' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, CameraTransitionParams) == 0x0000DC, "Member 'FHeraDialogueDopeSheetRow::CameraTransitionParams' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, DialogueTimelineEvents) == 0x000108, "Member 'FHeraDialogueDopeSheetRow::DialogueTimelineEvents' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, InkCharacterTag) == 0x000118, "Member 'FHeraDialogueDopeSheetRow::InkCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, TtsGenerationHash) == 0x000120, "Member 'FHeraDialogueDopeSheetRow::TtsGenerationHash' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioAssetDuration) == 0x000128, "Member 'FHeraDialogueDopeSheetRow::AudioAssetDuration' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, LineDuration) == 0x00012C, "Member 'FHeraDialogueDopeSheetRow::LineDuration' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioPaddingAfter) == 0x000130, "Member 'FHeraDialogueDopeSheetRow::AudioPaddingAfter' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, TextVersionNumber) == 0x000134, "Member 'FHeraDialogueDopeSheetRow::TextVersionNumber' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioVersionNumber) == 0x000138, "Member 'FHeraDialogueDopeSheetRow::AudioVersionNumber' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, ChosenTake) == 0x000140, "Member 'FHeraDialogueDopeSheetRow::ChosenTake' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, FinalAudioStatus) == 0x000150, "Member 'FHeraDialogueDopeSheetRow::FinalAudioStatus' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, RequiresPickup) == 0x000151, "Member 'FHeraDialogueDopeSheetRow::RequiresPickup' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, FacialAnimation_M) == 0x000158, "Member 'FHeraDialogueDopeSheetRow::FacialAnimation_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, BodyAnimation_M) == 0x000180, "Member 'FHeraDialogueDopeSheetRow::BodyAnimation_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioAssetPath_M) == 0x0001A8, "Member 'FHeraDialogueDopeSheetRow::AudioAssetPath_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, DialogueVolumeOffsetdB_M) == 0x0001B0, "Member 'FHeraDialogueDopeSheetRow::DialogueVolumeOffsetdB_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, AudioAssetDuration_M) == 0x0001B4, "Member 'FHeraDialogueDopeSheetRow::AudioAssetDuration_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, FinalAudioStatus_M) == 0x0001B8, "Member 'FHeraDialogueDopeSheetRow::FinalAudioStatus_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, RequiresPickup_M) == 0x0001B9, "Member 'FHeraDialogueDopeSheetRow::RequiresPickup_M' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueDopeSheetRow, CanSkipLine) == 0x0001BA, "Member 'FHeraDialogueDopeSheetRow::CanSkipLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialoguePlayStatus \ +static_assert(alignof(FHeraDialoguePlayStatus) == 0x000008, "Wrong alignment on FHeraDialoguePlayStatus"); \ +static_assert(sizeof(FHeraDialoguePlayStatus) == 0x000040, "Wrong size on FHeraDialoguePlayStatus"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, InCurrentDuration) == 0x000000, "Member 'FHeraDialoguePlayStatus::InCurrentDuration' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, InStoryHandle) == 0x000004, "Member 'FHeraDialoguePlayStatus::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, InDialogueSubsystem) == 0x000008, "Member 'FHeraDialoguePlayStatus::InDialogueSubsystem' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, AudioController) == 0x000010, "Member 'FHeraDialoguePlayStatus::AudioController' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, AnimationController) == 0x000018, "Member 'FHeraDialoguePlayStatus::AnimationController' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, CameraController) == 0x000020, "Member 'FHeraDialoguePlayStatus::CameraController' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, DialogueRig) == 0x000028, "Member 'FHeraDialoguePlayStatus::DialogueRig' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, LastKeyFrame) == 0x000030, "Member 'FHeraDialoguePlayStatus::LastKeyFrame' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePlayStatus, NextKeyFrame) == 0x000038, "Member 'FHeraDialoguePlayStatus::NextKeyFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueBodyIdlePair \ +static_assert(alignof(FHeraDialogueBodyIdlePair) == 0x000008, "Wrong alignment on FHeraDialogueBodyIdlePair"); \ +static_assert(sizeof(FHeraDialogueBodyIdlePair) == 0x000048, "Wrong size on FHeraDialogueBodyIdlePair"); \ +static_assert(offsetof(FHeraDialogueBodyIdlePair, CharacterTag) == 0x000000, "Member 'FHeraDialogueBodyIdlePair::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueBodyIdlePair, BodyIdleAnimation) == 0x000008, "Member 'FHeraDialogueBodyIdlePair::BodyIdleAnimation' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueBodyIdlePair, bResetStateAtEventEnd) == 0x000030, "Member 'FHeraDialogueBodyIdlePair::bResetStateAtEventEnd' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueBodyIdlePair, bOverrideBlendingParams) == 0x000031, "Member 'FHeraDialogueBodyIdlePair::bOverrideBlendingParams' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueBodyIdlePair, OverrideBlendingParams) == 0x000038, "Member 'FHeraDialogueBodyIdlePair::OverrideBlendingParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueCharacterLocationStruct \ +static_assert(alignof(FHeraDialogueCharacterLocationStruct) == 0x000008, "Wrong alignment on FHeraDialogueCharacterLocationStruct"); \ +static_assert(sizeof(FHeraDialogueCharacterLocationStruct) == 0x000070, "Wrong size on FHeraDialogueCharacterLocationStruct"); \ +static_assert(offsetof(FHeraDialogueCharacterLocationStruct, CharacterTag) == 0x000000, "Member 'FHeraDialogueCharacterLocationStruct::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterLocationStruct, Location) == 0x000008, "Member 'FHeraDialogueCharacterLocationStruct::Location' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterLocationStruct, Rotation) == 0x000020, "Member 'FHeraDialogueCharacterLocationStruct::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueCharacterLocationStruct, bKeepPositionAfterRowEnds) == 0x000068, "Member 'FHeraDialogueCharacterLocationStruct::bKeepPositionAfterRowEnds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueHardcutIntroAnimation \ +static_assert(alignof(FHeraDialogueHardcutIntroAnimation) == 0x000008, "Wrong alignment on FHeraDialogueHardcutIntroAnimation"); \ +static_assert(sizeof(FHeraDialogueHardcutIntroAnimation) == 0x000030, "Wrong size on FHeraDialogueHardcutIntroAnimation"); \ +static_assert(offsetof(FHeraDialogueHardcutIntroAnimation, CharacterTag) == 0x000000, "Member 'FHeraDialogueHardcutIntroAnimation::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueHardcutIntroAnimation, Animation) == 0x000008, "Member 'FHeraDialogueHardcutIntroAnimation::Animation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueMovieSceneSectionParams \ +static_assert(alignof(FHeraDialogueMovieSceneSectionParams) == 0x000008, "Wrong alignment on FHeraDialogueMovieSceneSectionParams"); \ +static_assert(sizeof(FHeraDialogueMovieSceneSectionParams) == 0x000030, "Wrong size on FHeraDialogueMovieSceneSectionParams"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionParams, InkID) == 0x000000, "Member 'FHeraDialogueMovieSceneSectionParams::InkID' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionParams, TextLine) == 0x000010, "Member 'FHeraDialogueMovieSceneSectionParams::TextLine' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionParams, Duration) == 0x000028, "Member 'FHeraDialogueMovieSceneSectionParams::Duration' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionParams, bProcessInEditor) == 0x00002C, "Member 'FHeraDialogueMovieSceneSectionParams::bProcessInEditor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueMovieSceneSectionTemplateParameters \ +static_assert(alignof(FHeraDialogueMovieSceneSectionTemplateParameters) == 0x000008, "Wrong alignment on FHeraDialogueMovieSceneSectionTemplateParameters"); \ +static_assert(sizeof(FHeraDialogueMovieSceneSectionTemplateParameters) == 0x000038, "Wrong size on FHeraDialogueMovieSceneSectionTemplateParameters"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionTemplateParameters, SectionStartTime) == 0x000030, "Member 'FHeraDialogueMovieSceneSectionTemplateParameters::SectionStartTime' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueMovieSceneSectionTemplateParameters, SectionEndTime) == 0x000034, "Member 'FHeraDialogueMovieSceneSectionTemplateParameters::SectionEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueSectionEvalTemplate \ +static_assert(alignof(FHeraDialogueSectionEvalTemplate) == 0x000008, "Wrong alignment on FHeraDialogueSectionEvalTemplate"); \ +static_assert(sizeof(FHeraDialogueSectionEvalTemplate) == 0x000058, "Wrong size on FHeraDialogueSectionEvalTemplate"); \ +static_assert(offsetof(FHeraDialogueSectionEvalTemplate, Params) == 0x000020, "Member 'FHeraDialogueSectionEvalTemplate::Params' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueMovieSceneTrackImplementation \ +static_assert(alignof(FHeraDialogueMovieSceneTrackImplementation) == 0x000008, "Wrong alignment on FHeraDialogueMovieSceneTrackImplementation"); \ +static_assert(sizeof(FHeraDialogueMovieSceneTrackImplementation) == 0x000020, "Wrong size on FHeraDialogueMovieSceneTrackImplementation"); \ +static_assert(offsetof(FHeraDialogueMovieSceneTrackImplementation, DialoguePtr) == 0x000010, "Member 'FHeraDialogueMovieSceneTrackImplementation::DialoguePtr' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueMovieSceneTrackImplementation, bShouldResolveStory) == 0x000018, "Member 'FHeraDialogueMovieSceneTrackImplementation::bShouldResolveStory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueSerialisedDialogue \ +static_assert(alignof(FHeraDialogueSerialisedDialogue) == 0x000008, "Wrong alignment on FHeraDialogueSerialisedDialogue"); \ +static_assert(sizeof(FHeraDialogueSerialisedDialogue) == 0x000018, "Wrong size on FHeraDialogueSerialisedDialogue"); \ +static_assert(offsetof(FHeraDialogueSerialisedDialogue, StoryVersion) == 0x000000, "Member 'FHeraDialogueSerialisedDialogue::StoryVersion' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueSerialisedDialogue, StoryJson) == 0x000008, "Member 'FHeraDialogueSerialisedDialogue::StoryJson' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialoguePostProcessVideo \ +static_assert(alignof(FHeraDialoguePostProcessVideo) == 0x000008, "Wrong alignment on FHeraDialoguePostProcessVideo"); \ +static_assert(sizeof(FHeraDialoguePostProcessVideo) == 0x000050, "Wrong size on FHeraDialoguePostProcessVideo"); \ +static_assert(offsetof(FHeraDialoguePostProcessVideo, MediaPlayer) == 0x000000, "Member 'FHeraDialoguePostProcessVideo::MediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialoguePostProcessVideo, MediaSource) == 0x000028, "Member 'FHeraDialoguePostProcessVideo::MediaSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDialogueLargestIdInStoryScope \ +static_assert(alignof(FHeraDialogueLargestIdInStoryScope) == 0x000004, "Wrong alignment on FHeraDialogueLargestIdInStoryScope"); \ +static_assert(sizeof(FHeraDialogueLargestIdInStoryScope) == 0x00000C, "Wrong size on FHeraDialogueLargestIdInStoryScope"); \ +static_assert(offsetof(FHeraDialogueLargestIdInStoryScope, InkStoryScope) == 0x000000, "Member 'FHeraDialogueLargestIdInStoryScope::InkStoryScope' has a wrong offset!"); \ +static_assert(offsetof(FHeraDialogueLargestIdInStoryScope, LargestInkID) == 0x000008, "Member 'FHeraDialogueLargestIdInStoryScope::LargestInkID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraBantsCooldowns \ +static_assert(alignof(UHeraBantsCooldowns) == 0x000008, "Wrong alignment on UHeraBantsCooldowns"); \ +static_assert(sizeof(UHeraBantsCooldowns) == 0x000038, "Wrong size on UHeraBantsCooldowns"); \ +static_assert(offsetof(UHeraBantsCooldowns, PromptCooldowns) == 0x000028, "Member 'UHeraBantsCooldowns::PromptCooldowns' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraBantsSettings \ +static_assert(alignof(UHeraBantsSettings) == 0x000008, "Wrong alignment on UHeraBantsSettings"); \ +static_assert(sizeof(UHeraBantsSettings) == 0x000150, "Wrong size on UHeraBantsSettings"); \ +static_assert(offsetof(UHeraBantsSettings, Priorities) == 0x000038, "Member 'UHeraBantsSettings::Priorities' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, PromptCooldowns) == 0x000048, "Member 'UHeraBantsSettings::PromptCooldowns' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, DialogueTypePromptMap) == 0x000098, "Member 'UHeraBantsSettings::DialogueTypePromptMap' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, NarrativePromptRoot) == 0x0000E8, "Member 'UHeraBantsSettings::NarrativePromptRoot' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, IdlePromptRoot) == 0x0000F0, "Member 'UHeraBantsSettings::IdlePromptRoot' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, PlayerLockedInDialoguePromptRoot) == 0x0000F8, "Member 'UHeraBantsSettings::PlayerLockedInDialoguePromptRoot' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, PlayerLockedIntoDialogue) == 0x000100, "Member 'UHeraBantsSettings::PlayerLockedIntoDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, BanterLogicFile) == 0x000128, "Member 'UHeraBantsSettings::BanterLogicFile' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSettings, MassAudioPoolName) == 0x000148, "Member 'UHeraBantsSettings::MassAudioPoolName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_IsPlayerLockedIntoDialogue \ +static_assert(alignof(HeraBantsSubsystem_IsPlayerLockedIntoDialogue) == 0x000001, "Wrong alignment on HeraBantsSubsystem_IsPlayerLockedIntoDialogue"); \ +static_assert(sizeof(HeraBantsSubsystem_IsPlayerLockedIntoDialogue) == 0x000001, "Wrong size on HeraBantsSubsystem_IsPlayerLockedIntoDialogue"); \ +static_assert(offsetof(HeraBantsSubsystem_IsPlayerLockedIntoDialogue, ReturnValue) == 0x000000, "Member 'HeraBantsSubsystem_IsPlayerLockedIntoDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_OnActorEndPlay \ +static_assert(alignof(HeraBantsSubsystem_OnActorEndPlay) == 0x000008, "Wrong alignment on HeraBantsSubsystem_OnActorEndPlay"); \ +static_assert(sizeof(HeraBantsSubsystem_OnActorEndPlay) == 0x000010, "Wrong size on HeraBantsSubsystem_OnActorEndPlay"); \ +static_assert(offsetof(HeraBantsSubsystem_OnActorEndPlay, InActor) == 0x000000, "Member 'HeraBantsSubsystem_OnActorEndPlay::InActor' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnActorEndPlay, InEndPlayReason) == 0x000008, "Member 'HeraBantsSubsystem_OnActorEndPlay::InEndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_OnStoryAudibilityChanged \ +static_assert(alignof(HeraBantsSubsystem_OnStoryAudibilityChanged) == 0x000004, "Wrong alignment on HeraBantsSubsystem_OnStoryAudibilityChanged"); \ +static_assert(sizeof(HeraBantsSubsystem_OnStoryAudibilityChanged) == 0x00000C, "Wrong size on HeraBantsSubsystem_OnStoryAudibilityChanged"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryAudibilityChanged, InStoryHandle) == 0x000000, "Member 'HeraBantsSubsystem_OnStoryAudibilityChanged::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryAudibilityChanged, bIsAudible) == 0x000004, "Member 'HeraBantsSubsystem_OnStoryAudibilityChanged::bIsAudible' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryAudibilityChanged, InDistanceSqrToSpeaker) == 0x000008, "Member 'HeraBantsSubsystem_OnStoryAudibilityChanged::InDistanceSqrToSpeaker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_OnStoryEvent \ +static_assert(alignof(HeraBantsSubsystem_OnStoryEvent) == 0x000008, "Wrong alignment on HeraBantsSubsystem_OnStoryEvent"); \ +static_assert(sizeof(HeraBantsSubsystem_OnStoryEvent) == 0x0000A8, "Wrong size on HeraBantsSubsystem_OnStoryEvent"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryEvent, InStoryHandle) == 0x000000, "Member 'HeraBantsSubsystem_OnStoryEvent::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryEvent, InStoryProgress) == 0x000004, "Member 'HeraBantsSubsystem_OnStoryEvent::InStoryProgress' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryEvent, InInfo) == 0x000008, "Member 'HeraBantsSubsystem_OnStoryEvent::InInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_OnStoryLoaded \ +static_assert(alignof(HeraBantsSubsystem_OnStoryLoaded) == 0x000008, "Wrong alignment on HeraBantsSubsystem_OnStoryLoaded"); \ +static_assert(sizeof(HeraBantsSubsystem_OnStoryLoaded) == 0x0000A8, "Wrong size on HeraBantsSubsystem_OnStoryLoaded"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryLoaded, InStoryHandle) == 0x000000, "Member 'HeraBantsSubsystem_OnStoryLoaded::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryLoaded, InInfo) == 0x000008, "Member 'HeraBantsSubsystem_OnStoryLoaded::InInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_OnStoryTerminated \ +static_assert(alignof(HeraBantsSubsystem_OnStoryTerminated) == 0x000004, "Wrong alignment on HeraBantsSubsystem_OnStoryTerminated"); \ +static_assert(sizeof(HeraBantsSubsystem_OnStoryTerminated) == 0x000004, "Wrong size on HeraBantsSubsystem_OnStoryTerminated"); \ +static_assert(offsetof(HeraBantsSubsystem_OnStoryTerminated, InStoryHandle) == 0x000000, "Member 'HeraBantsSubsystem_OnStoryTerminated::InStoryHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_RequestDialogueForEnemies \ +static_assert(alignof(HeraBantsSubsystem_RequestDialogueForEnemies) == 0x000008, "Wrong alignment on HeraBantsSubsystem_RequestDialogueForEnemies"); \ +static_assert(sizeof(HeraBantsSubsystem_RequestDialogueForEnemies) == 0x000028, "Wrong size on HeraBantsSubsystem_RequestDialogueForEnemies"); \ +static_assert(offsetof(HeraBantsSubsystem_RequestDialogueForEnemies, InActors) == 0x000000, "Member 'HeraBantsSubsystem_RequestDialogueForEnemies::InActors' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_RequestDialogueForEnemies, InPrompt) == 0x000010, "Member 'HeraBantsSubsystem_RequestDialogueForEnemies::InPrompt' has a wrong offset!"); \ +static_assert(offsetof(HeraBantsSubsystem_RequestDialogueForEnemies, InDialogueInfos) == 0x000018, "Member 'HeraBantsSubsystem_RequestDialogueForEnemies::InDialogueInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_SetIsAcceptingIdleRequests \ +static_assert(alignof(HeraBantsSubsystem_SetIsAcceptingIdleRequests) == 0x000001, "Wrong alignment on HeraBantsSubsystem_SetIsAcceptingIdleRequests"); \ +static_assert(sizeof(HeraBantsSubsystem_SetIsAcceptingIdleRequests) == 0x000001, "Wrong size on HeraBantsSubsystem_SetIsAcceptingIdleRequests"); \ +static_assert(offsetof(HeraBantsSubsystem_SetIsAcceptingIdleRequests, InIsAccepting) == 0x000000, "Member 'HeraBantsSubsystem_SetIsAcceptingIdleRequests::InIsAccepting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_StopAllBanterByPrompt \ +static_assert(alignof(HeraBantsSubsystem_StopAllBanterByPrompt) == 0x000004, "Wrong alignment on HeraBantsSubsystem_StopAllBanterByPrompt"); \ +static_assert(sizeof(HeraBantsSubsystem_StopAllBanterByPrompt) == 0x000008, "Wrong size on HeraBantsSubsystem_StopAllBanterByPrompt"); \ +static_assert(offsetof(HeraBantsSubsystem_StopAllBanterByPrompt, InPrompt) == 0x000000, "Member 'HeraBantsSubsystem_StopAllBanterByPrompt::InPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraBantsSubsystem_StopBanterOnActor \ +static_assert(alignof(HeraBantsSubsystem_StopBanterOnActor) == 0x000008, "Wrong alignment on HeraBantsSubsystem_StopBanterOnActor"); \ +static_assert(sizeof(HeraBantsSubsystem_StopBanterOnActor) == 0x000008, "Wrong size on HeraBantsSubsystem_StopBanterOnActor"); \ +static_assert(offsetof(HeraBantsSubsystem_StopBanterOnActor, InActor) == 0x000000, "Member 'HeraBantsSubsystem_StopBanterOnActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraBantsSubsystem \ +static_assert(alignof(UHeraBantsSubsystem) == 0x000008, "Wrong alignment on UHeraBantsSubsystem"); \ +static_assert(sizeof(UHeraBantsSubsystem) == 0x0001F0, "Wrong size on UHeraBantsSubsystem"); \ +static_assert(offsetof(UHeraBantsSubsystem, OnPlayerLockedIntoDialogue) == 0x000058, "Member 'UHeraBantsSubsystem::OnPlayerLockedIntoDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, OnPlayerUnlockedFromDialogue) == 0x000068, "Member 'UHeraBantsSubsystem::OnPlayerUnlockedFromDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, ActiveMassEntities) == 0x000078, "Member 'UHeraBantsSubsystem::ActiveMassEntities' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, ActorVoiceMemory) == 0x000090, "Member 'UHeraBantsSubsystem::ActorVoiceMemory' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, MassEntityVoiceMemory) == 0x0000E0, "Member 'UHeraBantsSubsystem::MassEntityVoiceMemory' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, EntityAudioComponents) == 0x000130, "Member 'UHeraBantsSubsystem::EntityAudioComponents' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, StoryController) == 0x000140, "Member 'UHeraBantsSubsystem::StoryController' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, StoryControllerObject) == 0x000150, "Member 'UHeraBantsSubsystem::StoryControllerObject' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, Cooldowns) == 0x000158, "Member 'UHeraBantsSubsystem::Cooldowns' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, LockedInDialoguePropertyPtr) == 0x000160, "Member 'UHeraBantsSubsystem::LockedInDialoguePropertyPtr' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, LiveBants) == 0x000168, "Member 'UHeraBantsSubsystem::LiveBants' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, Requests) == 0x0001B8, "Member 'UHeraBantsSubsystem::Requests' has a wrong offset!"); \ +static_assert(offsetof(UHeraBantsSubsystem, IdleRequests) == 0x0001C8, "Member 'UHeraBantsSubsystem::IdleRequests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogue \ +static_assert(alignof(UHeraDialogue) == 0x000008, "Wrong alignment on UHeraDialogue"); \ +static_assert(sizeof(UHeraDialogue) == 0x000028, "Wrong size on UHeraDialogue"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimationController_DialogueAnimationEnded \ +static_assert(alignof(HeraDialogueAnimationController_DialogueAnimationEnded) == 0x000008, "Wrong alignment on HeraDialogueAnimationController_DialogueAnimationEnded"); \ +static_assert(sizeof(HeraDialogueAnimationController_DialogueAnimationEnded) == 0x000010, "Wrong size on HeraDialogueAnimationController_DialogueAnimationEnded"); \ +static_assert(offsetof(HeraDialogueAnimationController_DialogueAnimationEnded, InAnimInstance) == 0x000000, "Member 'HeraDialogueAnimationController_DialogueAnimationEnded::InAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueAnimationController_DialogueAnimationEnded, InNotify) == 0x000008, "Member 'HeraDialogueAnimationController_DialogueAnimationEnded::InNotify' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimationController_DialogueAnimationStarted \ +static_assert(alignof(HeraDialogueAnimationController_DialogueAnimationStarted) == 0x000008, "Wrong alignment on HeraDialogueAnimationController_DialogueAnimationStarted"); \ +static_assert(sizeof(HeraDialogueAnimationController_DialogueAnimationStarted) == 0x000018, "Wrong size on HeraDialogueAnimationController_DialogueAnimationStarted"); \ +static_assert(offsetof(HeraDialogueAnimationController_DialogueAnimationStarted, InAnimInstance) == 0x000000, "Member 'HeraDialogueAnimationController_DialogueAnimationStarted::InAnimInstance' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueAnimationController_DialogueAnimationStarted, InNotify) == 0x000008, "Member 'HeraDialogueAnimationController_DialogueAnimationStarted::InNotify' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueAnimationController_DialogueAnimationStarted, bLoopBodyAnimation) == 0x000010, "Member 'HeraDialogueAnimationController_DialogueAnimationStarted::bLoopBodyAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueAnimationController \ +static_assert(alignof(UHeraDialogueAnimationController) == 0x000008, "Wrong alignment on UHeraDialogueAnimationController"); \ +static_assert(sizeof(UHeraDialogueAnimationController) == 0x000048, "Wrong size on UHeraDialogueAnimationController"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetBlendingPoses \ +static_assert(alignof(HeraDialogueAnimInstance_SetBlendingPoses) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_SetBlendingPoses"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetBlendingPoses) == 0x000001, "Wrong size on HeraDialogueAnimInstance_SetBlendingPoses"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetBlendingPoses, InBlendingPoses) == 0x000000, "Member 'HeraDialogueAnimInstance_SetBlendingPoses::InBlendingPoses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetBodyAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_SetBodyAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_SetBodyAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetBodyAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_SetBodyAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetBodyAnimation, InAnimation) == 0x000000, "Member 'HeraDialogueAnimInstance_SetBodyAnimation::InAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetBodyIdleAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_SetBodyIdleAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_SetBodyIdleAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetBodyIdleAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_SetBodyIdleAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetBodyIdleAnimation, InAnimation) == 0x000000, "Member 'HeraDialogueAnimInstance_SetBodyIdleAnimation::InAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetFacialAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_SetFacialAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_SetFacialAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetFacialAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_SetFacialAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetFacialAnimation, InAnimation) == 0x000000, "Member 'HeraDialogueAnimInstance_SetFacialAnimation::InAnimation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation) == 0x000001, "Wrong size on HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation, bHardCut) == 0x000000, "Member 'HeraDialogueAnimInstance_SetHardCutToBodyIdleAnimation::bHardCut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetIsLoopingBodyAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_SetIsLoopingBodyAnimation) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_SetIsLoopingBodyAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetIsLoopingBodyAnimation) == 0x000001, "Wrong size on HeraDialogueAnimInstance_SetIsLoopingBodyAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetIsLoopingBodyAnimation, InLooping) == 0x000000, "Member 'HeraDialogueAnimInstance_SetIsLoopingBodyAnimation::InLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_SetPlayRate \ +static_assert(alignof(HeraDialogueAnimInstance_SetPlayRate) == 0x000004, "Wrong alignment on HeraDialogueAnimInstance_SetPlayRate"); \ +static_assert(sizeof(HeraDialogueAnimInstance_SetPlayRate) == 0x000004, "Wrong size on HeraDialogueAnimInstance_SetPlayRate"); \ +static_assert(offsetof(HeraDialogueAnimInstance_SetPlayRate, InPlayRate) == 0x000000, "Member 'HeraDialogueAnimInstance_SetPlayRate::InPlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetBlendingAlpha \ +static_assert(alignof(HeraDialogueAnimInstance_GetBlendingAlpha) == 0x000004, "Wrong alignment on HeraDialogueAnimInstance_GetBlendingAlpha"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetBlendingAlpha) == 0x000004, "Wrong size on HeraDialogueAnimInstance_GetBlendingAlpha"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetBlendingAlpha, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetBlendingAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetBlendingInterpSpeed \ +static_assert(alignof(HeraDialogueAnimInstance_GetBlendingInterpSpeed) == 0x000004, "Wrong alignment on HeraDialogueAnimInstance_GetBlendingInterpSpeed"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetBlendingInterpSpeed) == 0x000004, "Wrong size on HeraDialogueAnimInstance_GetBlendingInterpSpeed"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetBlendingInterpSpeed, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetBlendingInterpSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetBodyAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_GetBodyAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_GetBodyAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetBodyAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_GetBodyAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetBodyAnimation, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetBodyAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetBodyIdleAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_GetBodyIdleAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_GetBodyIdleAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetBodyIdleAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_GetBodyIdleAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetBodyIdleAnimation, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetBodyIdleAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetFacialAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_GetFacialAnimation) == 0x000008, "Wrong alignment on HeraDialogueAnimInstance_GetFacialAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetFacialAnimation) == 0x000008, "Wrong size on HeraDialogueAnimInstance_GetFacialAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetFacialAnimation, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetFacialAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetIsInDialogue \ +static_assert(alignof(HeraDialogueAnimInstance_GetIsInDialogue) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_GetIsInDialogue"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetIsInDialogue) == 0x000001, "Wrong size on HeraDialogueAnimInstance_GetIsInDialogue"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName \ +static_assert(alignof(HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName) == 0x000004, "Wrong alignment on HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName) == 0x000008, "Wrong size on HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetOldBodyIdleSnapshotName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_GetPlayRate \ +static_assert(alignof(HeraDialogueAnimInstance_GetPlayRate) == 0x000004, "Wrong alignment on HeraDialogueAnimInstance_GetPlayRate"); \ +static_assert(sizeof(HeraDialogueAnimInstance_GetPlayRate) == 0x000004, "Wrong size on HeraDialogueAnimInstance_GetPlayRate"); \ +static_assert(offsetof(HeraDialogueAnimInstance_GetPlayRate, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_IsBlendingPoses \ +static_assert(alignof(HeraDialogueAnimInstance_IsBlendingPoses) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_IsBlendingPoses"); \ +static_assert(sizeof(HeraDialogueAnimInstance_IsBlendingPoses) == 0x000001, "Wrong size on HeraDialogueAnimInstance_IsBlendingPoses"); \ +static_assert(offsetof(HeraDialogueAnimInstance_IsBlendingPoses, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_IsBlendingPoses::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAnimInstance_IsLoopingBodyAnimation \ +static_assert(alignof(HeraDialogueAnimInstance_IsLoopingBodyAnimation) == 0x000001, "Wrong alignment on HeraDialogueAnimInstance_IsLoopingBodyAnimation"); \ +static_assert(sizeof(HeraDialogueAnimInstance_IsLoopingBodyAnimation) == 0x000001, "Wrong size on HeraDialogueAnimInstance_IsLoopingBodyAnimation"); \ +static_assert(offsetof(HeraDialogueAnimInstance_IsLoopingBodyAnimation, ReturnValue) == 0x000000, "Member 'HeraDialogueAnimInstance_IsLoopingBodyAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueAnimInstance \ +static_assert(alignof(UHeraDialogueAnimInstance) == 0x000010, "Wrong alignment on UHeraDialogueAnimInstance"); \ +static_assert(sizeof(UHeraDialogueAnimInstance) == 0x0003A0, "Wrong size on UHeraDialogueAnimInstance"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, FacialAnimation) == 0x000350, "Member 'UHeraDialogueAnimInstance::FacialAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, BodyAnimation) == 0x000358, "Member 'UHeraDialogueAnimInstance::BodyAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, BodyIdleAnimation) == 0x000360, "Member 'UHeraDialogueAnimInstance::BodyIdleAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, bIsLoopingBodyAnimation) == 0x000368, "Member 'UHeraDialogueAnimInstance::bIsLoopingBodyAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, bBlendingPoses) == 0x000369, "Member 'UHeraDialogueAnimInstance::bBlendingPoses' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, BlendingAlpha) == 0x00036C, "Member 'UHeraDialogueAnimInstance::BlendingAlpha' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, BlendSpeed) == 0x000370, "Member 'UHeraDialogueAnimInstance::BlendSpeed' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAnimInstance, BlendCurve) == 0x000378, "Member 'UHeraDialogueAnimInstance::BlendCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueAnimNotify \ +static_assert(alignof(UHeraDialogueAnimNotify) == 0x000008, "Wrong alignment on UHeraDialogueAnimNotify"); \ +static_assert(sizeof(UHeraDialogueAnimNotify) == 0x000050, "Wrong size on UHeraDialogueAnimNotify"); \ +static_assert(offsetof(UHeraDialogueAnimNotify, NotifyType) == 0x000038, "Member 'UHeraDialogueAnimNotify::NotifyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueAudioController_InternalOnDialogueAudioFinished \ +static_assert(alignof(HeraDialogueAudioController_InternalOnDialogueAudioFinished) == 0x000008, "Wrong alignment on HeraDialogueAudioController_InternalOnDialogueAudioFinished"); \ +static_assert(sizeof(HeraDialogueAudioController_InternalOnDialogueAudioFinished) == 0x000010, "Wrong size on HeraDialogueAudioController_InternalOnDialogueAudioFinished"); \ +static_assert(offsetof(HeraDialogueAudioController_InternalOnDialogueAudioFinished, InCallbackType) == 0x000000, "Member 'HeraDialogueAudioController_InternalOnDialogueAudioFinished::InCallbackType' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueAudioController_InternalOnDialogueAudioFinished, InCallbackInfo) == 0x000008, "Member 'HeraDialogueAudioController_InternalOnDialogueAudioFinished::InCallbackInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueAudioController \ +static_assert(alignof(UHeraDialogueAudioController) == 0x000008, "Wrong alignment on UHeraDialogueAudioController"); \ +static_assert(sizeof(UHeraDialogueAudioController) == 0x0000B8, "Wrong size on UHeraDialogueAudioController"); \ +static_assert(offsetof(UHeraDialogueAudioController, PlaybackItems) == 0x000058, "Member 'UHeraDialogueAudioController::PlaybackItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueAudioSettings \ +static_assert(alignof(UHeraDialogueAudioSettings) == 0x000008, "Wrong alignment on UHeraDialogueAudioSettings"); \ +static_assert(sizeof(UHeraDialogueAudioSettings) == 0x000048, "Wrong size on UHeraDialogueAudioSettings"); \ +static_assert(offsetof(UHeraDialogueAudioSettings, DialogueAudioPlayEventOverride) == 0x000030, "Member 'UHeraDialogueAudioSettings::DialogueAudioPlayEventOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAudioSettings, DialogueAudioStopEventOverride) == 0x000038, "Member 'UHeraDialogueAudioSettings::DialogueAudioStopEventOverride' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueAudioSettings, DialogueConversionSettingsOverride) == 0x000040, "Member 'UHeraDialogueAudioSettings::DialogueConversionSettingsOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraDialogueBantsActorInterface \ +static_assert(alignof(IHeraDialogueBantsActorInterface) == 0x000001, "Wrong alignment on IHeraDialogueBantsActorInterface"); \ +static_assert(sizeof(IHeraDialogueBantsActorInterface) == 0x000001, "Wrong size on IHeraDialogueBantsActorInterface"); \ + +#define DUMPER7_ASSERTS_HeraDialogueBlueprintHelpers_GetCameraFromTag \ +static_assert(alignof(HeraDialogueBlueprintHelpers_GetCameraFromTag) == 0x000008, "Wrong alignment on HeraDialogueBlueprintHelpers_GetCameraFromTag"); \ +static_assert(sizeof(HeraDialogueBlueprintHelpers_GetCameraFromTag) == 0x000020, "Wrong size on HeraDialogueBlueprintHelpers_GetCameraFromTag"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraFromTag, WorldContext) == 0x000000, "Member 'HeraDialogueBlueprintHelpers_GetCameraFromTag::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraFromTag, Tag) == 0x000008, "Member 'HeraDialogueBlueprintHelpers_GetCameraFromTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraFromTag, OptionalDialogueSet) == 0x000010, "Member 'HeraDialogueBlueprintHelpers_GetCameraFromTag::OptionalDialogueSet' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraFromTag, ReturnValue) == 0x000018, "Member 'HeraDialogueBlueprintHelpers_GetCameraFromTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor \ +static_assert(alignof(HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor) == 0x000008, "Wrong alignment on HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor"); \ +static_assert(sizeof(HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor) == 0x000010, "Wrong size on HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor, InCameraActor) == 0x000000, "Member 'HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor::InCameraActor' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor, ReturnValue) == 0x000008, "Member 'HeraDialogueBlueprintHelpers_GetCameraTagFromCameraActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag \ +static_assert(alignof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag) == 0x000008, "Wrong alignment on HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag"); \ +static_assert(sizeof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag) == 0x000020, "Wrong size on HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag, WorldContext) == 0x000000, "Member 'HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag, Tag) == 0x000008, "Member 'HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag, OptionalDialogueSet) == 0x000010, "Member 'HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag::OptionalDialogueSet' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag, ReturnValue) == 0x000018, "Member 'HeraDialogueBlueprintHelpers_GetDialogueParticipantFromTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueBlueprintHelpers \ +static_assert(alignof(UHeraDialogueBlueprintHelpers) == 0x000008, "Wrong alignment on UHeraDialogueBlueprintHelpers"); \ +static_assert(sizeof(UHeraDialogueBlueprintHelpers) == 0x000028, "Wrong size on UHeraDialogueBlueprintHelpers"); \ + +#define DUMPER7_ASSERTS_HeraDialogueButton_GetChoiceIndex \ +static_assert(alignof(HeraDialogueButton_GetChoiceIndex) == 0x000004, "Wrong alignment on HeraDialogueButton_GetChoiceIndex"); \ +static_assert(sizeof(HeraDialogueButton_GetChoiceIndex) == 0x000004, "Wrong size on HeraDialogueButton_GetChoiceIndex"); \ +static_assert(offsetof(HeraDialogueButton_GetChoiceIndex, ReturnValue) == 0x000000, "Member 'HeraDialogueButton_GetChoiceIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueButton \ +static_assert(alignof(UHeraDialogueButton) == 0x000010, "Wrong alignment on UHeraDialogueButton"); \ +static_assert(sizeof(UHeraDialogueButton) == 0x001460, "Wrong size on UHeraDialogueButton"); \ +static_assert(offsetof(UHeraDialogueButton, DialogueButtonText) == 0x0013E0, "Member 'UHeraDialogueButton::DialogueButtonText' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueButton, DialogueButtonIcon) == 0x0013E8, "Member 'UHeraDialogueButton::DialogueButtonIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueButton, PressedBKG) == 0x0013F0, "Member 'UHeraDialogueButton::PressedBKG' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueButton, IconMap) == 0x001410, "Member 'UHeraDialogueButton::IconMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraDialogueCameraActor \ +static_assert(alignof(AHeraDialogueCameraActor) == 0x000010, "Wrong alignment on AHeraDialogueCameraActor"); \ +static_assert(sizeof(AHeraDialogueCameraActor) == 0x0009D0, "Wrong size on AHeraDialogueCameraActor"); \ +static_assert(offsetof(AHeraDialogueCameraActor, DialogueCameraTag) == 0x0009B8, "Member 'AHeraDialogueCameraActor::DialogueCameraTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCameraController_OnTransitionDone \ +static_assert(alignof(HeraDialogueCameraController_OnTransitionDone) == 0x000008, "Wrong alignment on HeraDialogueCameraController_OnTransitionDone"); \ +static_assert(sizeof(HeraDialogueCameraController_OnTransitionDone) == 0x000048, "Wrong size on HeraDialogueCameraController_OnTransitionDone"); \ +static_assert(offsetof(HeraDialogueCameraController_OnTransitionDone, InStoryHandle) == 0x000000, "Member 'HeraDialogueCameraController_OnTransitionDone::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnTransitionDone, InController) == 0x000008, "Member 'HeraDialogueCameraController_OnTransitionDone::InController' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnTransitionDone, InPlayerCharacter) == 0x000010, "Member 'HeraDialogueCameraController_OnTransitionDone::InPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnTransitionDone, InOldViewTarget) == 0x000018, "Member 'HeraDialogueCameraController_OnTransitionDone::InOldViewTarget' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnTransitionDone, InParams) == 0x000020, "Member 'HeraDialogueCameraController_OnTransitionDone::InParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCameraController_FadeOut \ +static_assert(alignof(HeraDialogueCameraController_FadeOut) == 0x000008, "Wrong alignment on HeraDialogueCameraController_FadeOut"); \ +static_assert(sizeof(HeraDialogueCameraController_FadeOut) == 0x000048, "Wrong size on HeraDialogueCameraController_FadeOut"); \ +static_assert(offsetof(HeraDialogueCameraController_FadeOut, InStoryHandle) == 0x000000, "Member 'HeraDialogueCameraController_FadeOut::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_FadeOut, InController) == 0x000008, "Member 'HeraDialogueCameraController_FadeOut::InController' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_FadeOut, InParams) == 0x000010, "Member 'HeraDialogueCameraController_FadeOut::InParams' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_FadeOut, InCameraActor) == 0x000038, "Member 'HeraDialogueCameraController_FadeOut::InCameraActor' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_FadeOut, InDialogueRig) == 0x000040, "Member 'HeraDialogueCameraController_FadeOut::InDialogueRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback \ +static_assert(alignof(HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback) == 0x000008, "Wrong alignment on HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback"); \ +static_assert(sizeof(HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback) == 0x000038, "Wrong size on HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback"); \ +static_assert(offsetof(HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback, InStoryHandle) == 0x000000, "Member 'HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback, InPlayerCharacter) == 0x000008, "Member 'HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback::InPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback, InParams) == 0x000010, "Member 'HeraDialogueCameraController_OnSetupOrTeardownDialogueCallback::InParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueCameraController \ +static_assert(alignof(UHeraDialogueCameraController) == 0x000008, "Wrong alignment on UHeraDialogueCameraController"); \ +static_assert(sizeof(UHeraDialogueCameraController) == 0x0000E0, "Wrong size on UHeraDialogueCameraController"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_SetIsInCutscene \ +static_assert(alignof(HeraDialogueCharacterInterface_SetIsInCutscene) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_SetIsInCutscene"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_SetIsInCutscene) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_SetIsInCutscene"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_SetIsInCutscene, bInCutscene) == 0x000000, "Member 'HeraDialogueCharacterInterface_SetIsInCutscene::bInCutscene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_SetIsInDialogue \ +static_assert(alignof(HeraDialogueCharacterInterface_SetIsInDialogue) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_SetIsInDialogue"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_SetIsInDialogue) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_SetIsInDialogue"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_SetIsInDialogue, bInDialogue) == 0x000000, "Member 'HeraDialogueCharacterInterface_SetIsInDialogue::bInDialogue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_SetIsSpeaking \ +static_assert(alignof(HeraDialogueCharacterInterface_SetIsSpeaking) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_SetIsSpeaking"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_SetIsSpeaking) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_SetIsSpeaking"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_SetIsSpeaking, bIsSpeaking) == 0x000000, "Member 'HeraDialogueCharacterInterface_SetIsSpeaking::bIsSpeaking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetActorName \ +static_assert(alignof(HeraDialogueCharacterInterface_GetActorName) == 0x000008, "Wrong alignment on HeraDialogueCharacterInterface_GetActorName"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetActorName) == 0x000010, "Wrong size on HeraDialogueCharacterInterface_GetActorName"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetActorName, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetAudioComponent \ +static_assert(alignof(HeraDialogueCharacterInterface_GetAudioComponent) == 0x000008, "Wrong alignment on HeraDialogueCharacterInterface_GetAudioComponent"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetAudioComponent) == 0x000008, "Wrong size on HeraDialogueCharacterInterface_GetAudioComponent"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetAudioComponent, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetDialogueCharacterTag \ +static_assert(alignof(HeraDialogueCharacterInterface_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on HeraDialogueCharacterInterface_GetDialogueCharacterTag"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetDialogueCharacterTag) == 0x000008, "Wrong size on HeraDialogueCharacterInterface_GetDialogueCharacterTag"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetIsInCutscene \ +static_assert(alignof(HeraDialogueCharacterInterface_GetIsInCutscene) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_GetIsInCutscene"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetIsInCutscene) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_GetIsInCutscene"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetIsInDialogue \ +static_assert(alignof(HeraDialogueCharacterInterface_GetIsInDialogue) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_GetIsInDialogue"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetIsInDialogue) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_GetIsInDialogue"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetIsSpeaking \ +static_assert(alignof(HeraDialogueCharacterInterface_GetIsSpeaking) == 0x000001, "Wrong alignment on HeraDialogueCharacterInterface_GetIsSpeaking"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetIsSpeaking) == 0x000001, "Wrong size on HeraDialogueCharacterInterface_GetIsSpeaking"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_GetSkeletalMeshComp \ +static_assert(alignof(HeraDialogueCharacterInterface_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on HeraDialogueCharacterInterface_GetSkeletalMeshComp"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_GetSkeletalMeshComp) == 0x000008, "Wrong size on HeraDialogueCharacterInterface_GetSkeletalMeshComp"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'HeraDialogueCharacterInterface_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueCharacterInterface_MatchesCharacterTag \ +static_assert(alignof(HeraDialogueCharacterInterface_MatchesCharacterTag) == 0x000004, "Wrong alignment on HeraDialogueCharacterInterface_MatchesCharacterTag"); \ +static_assert(sizeof(HeraDialogueCharacterInterface_MatchesCharacterTag) == 0x00000C, "Wrong size on HeraDialogueCharacterInterface_MatchesCharacterTag"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'HeraDialogueCharacterInterface_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueCharacterInterface_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'HeraDialogueCharacterInterface_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraDialogueCharacterInterface \ +static_assert(alignof(IHeraDialogueCharacterInterface) == 0x000001, "Wrong alignment on IHeraDialogueCharacterInterface"); \ +static_assert(sizeof(IHeraDialogueCharacterInterface) == 0x000001, "Wrong size on IHeraDialogueCharacterInterface"); \ + +#define DUMPER7_ASSERTS_AHeraDialogueCineCameraActor \ +static_assert(alignof(AHeraDialogueCineCameraActor) == 0x000010, "Wrong alignment on AHeraDialogueCineCameraActor"); \ +static_assert(sizeof(AHeraDialogueCineCameraActor) == 0x000A40, "Wrong size on AHeraDialogueCineCameraActor"); \ +static_assert(offsetof(AHeraDialogueCineCameraActor, DialogueCameraTag) == 0x000A30, "Member 'AHeraDialogueCineCameraActor::DialogueCameraTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_OnCharacterReaction \ +static_assert(alignof(HeraDialogueDisplayWidget_OnCharacterReaction) == 0x000008, "Wrong alignment on HeraDialogueDisplayWidget_OnCharacterReaction"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_OnCharacterReaction) == 0x000038, "Wrong size on HeraDialogueDisplayWidget_OnCharacterReaction"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnCharacterReaction, InStoryHandle) == 0x000000, "Member 'HeraDialogueDisplayWidget_OnCharacterReaction::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnCharacterReaction, InWho) == 0x000008, "Member 'HeraDialogueDisplayWidget_OnCharacterReaction::InWho' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnCharacterReaction, InReactionText) == 0x000018, "Member 'HeraDialogueDisplayWidget_OnCharacterReaction::InReactionText' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnCharacterReaction, InReactionClass) == 0x000030, "Member 'HeraDialogueDisplayWidget_OnCharacterReaction::InReactionClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_OnChoiceClicked \ +static_assert(alignof(HeraDialogueDisplayWidget_OnChoiceClicked) == 0x000004, "Wrong alignment on HeraDialogueDisplayWidget_OnChoiceClicked"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_OnChoiceClicked) == 0x000004, "Wrong size on HeraDialogueDisplayWidget_OnChoiceClicked"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnChoiceClicked, InChoiceIndex) == 0x000000, "Member 'HeraDialogueDisplayWidget_OnChoiceClicked::InChoiceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_OnChoiceClickedAnimation \ +static_assert(alignof(HeraDialogueDisplayWidget_OnChoiceClickedAnimation) == 0x000004, "Wrong alignment on HeraDialogueDisplayWidget_OnChoiceClickedAnimation"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_OnChoiceClickedAnimation) == 0x000004, "Wrong size on HeraDialogueDisplayWidget_OnChoiceClickedAnimation"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnChoiceClickedAnimation, InChoiceIndex) == 0x000000, "Member 'HeraDialogueDisplayWidget_OnChoiceClickedAnimation::InChoiceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_OnDialogueAudioFinished \ +static_assert(alignof(HeraDialogueDisplayWidget_OnDialogueAudioFinished) == 0x000004, "Wrong alignment on HeraDialogueDisplayWidget_OnDialogueAudioFinished"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_OnDialogueAudioFinished) == 0x000004, "Wrong size on HeraDialogueDisplayWidget_OnDialogueAudioFinished"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnDialogueAudioFinished, InStoryHandle) == 0x000000, "Member 'HeraDialogueDisplayWidget_OnDialogueAudioFinished::InStoryHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_OnDialogueAudioStarted \ +static_assert(alignof(HeraDialogueDisplayWidget_OnDialogueAudioStarted) == 0x000004, "Wrong alignment on HeraDialogueDisplayWidget_OnDialogueAudioStarted"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_OnDialogueAudioStarted) == 0x000004, "Wrong size on HeraDialogueDisplayWidget_OnDialogueAudioStarted"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_OnDialogueAudioStarted, InStoryHandle) == 0x000000, "Member 'HeraDialogueDisplayWidget_OnDialogueAudioStarted::InStoryHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_ReceiveOnSetStoryText \ +static_assert(alignof(HeraDialogueDisplayWidget_ReceiveOnSetStoryText) == 0x000008, "Wrong alignment on HeraDialogueDisplayWidget_ReceiveOnSetStoryText"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_ReceiveOnSetStoryText) == 0x000018, "Wrong size on HeraDialogueDisplayWidget_ReceiveOnSetStoryText"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_ReceiveOnSetStoryText, Text) == 0x000000, "Member 'HeraDialogueDisplayWidget_ReceiveOnSetStoryText::Text' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_ReceiveOnSetStoryText, WavLengthSeconds) == 0x000010, "Member 'HeraDialogueDisplayWidget_ReceiveOnSetStoryText::WavLengthSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDisplayWidget_DoesStoryNeedFocus \ +static_assert(alignof(HeraDialogueDisplayWidget_DoesStoryNeedFocus) == 0x000001, "Wrong alignment on HeraDialogueDisplayWidget_DoesStoryNeedFocus"); \ +static_assert(sizeof(HeraDialogueDisplayWidget_DoesStoryNeedFocus) == 0x000001, "Wrong size on HeraDialogueDisplayWidget_DoesStoryNeedFocus"); \ +static_assert(offsetof(HeraDialogueDisplayWidget_DoesStoryNeedFocus, ReturnValue) == 0x000000, "Member 'HeraDialogueDisplayWidget_DoesStoryNeedFocus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueDisplayWidget \ +static_assert(alignof(UHeraDialogueDisplayWidget) == 0x000008, "Wrong alignment on UHeraDialogueDisplayWidget"); \ +static_assert(sizeof(UHeraDialogueDisplayWidget) == 0x000370, "Wrong size on UHeraDialogueDisplayWidget"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, DialogueButtonClass) == 0x0002F8, "Member 'UHeraDialogueDisplayWidget::DialogueButtonClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, ControlTypeWidgetSwitcher) == 0x000300, "Member 'UHeraDialogueDisplayWidget::ControlTypeWidgetSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, DialogueStoryText) == 0x000308, "Member 'UHeraDialogueDisplayWidget::DialogueStoryText' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, DialogueNameText) == 0x000310, "Member 'UHeraDialogueDisplayWidget::DialogueNameText' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, DialogueButtonsContainer) == 0x000318, "Member 'UHeraDialogueDisplayWidget::DialogueButtonsContainer' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, DialogueButtonsContainer_Controller) == 0x000320, "Member 'UHeraDialogueDisplayWidget::DialogueButtonsContainer_Controller' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, PB_SubtitleOn) == 0x000330, "Member 'UHeraDialogueDisplayWidget::PB_SubtitleOn' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, OnChoicesActivatedEvent) == 0x000338, "Member 'UHeraDialogueDisplayWidget::OnChoicesActivatedEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, OnChoicesDeactivatedEvent) == 0x000348, "Member 'UHeraDialogueDisplayWidget::OnChoicesDeactivatedEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, OnFocusRestoreNeededEvent) == 0x000358, "Member 'UHeraDialogueDisplayWidget::OnFocusRestoreNeededEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, bOptionsShowing) == 0x000368, "Member 'UHeraDialogueDisplayWidget::bOptionsShowing' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueDisplayWidget, bOptionsSelected) == 0x000369, "Member 'UHeraDialogueDisplayWidget::bOptionsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetAudioAssetDurationFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID) == 0x000038, "Wrong size on HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID, InVariantOverride) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID::InVariantOverride' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID, ReturnValue) == 0x000018, "Member 'HeraDialogueDopeSheetDataTable_GetAudioAssetPathFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetAudioSettingsFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetBodyAnimationAssetFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetCameraTagFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetCameraTagFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetCameraTagFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetCameraTagFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetCameraTagFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCameraTagFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetCameraTagFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCameraTagFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetCameraTagFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetCharacterNameFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetCharacterNameFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetCharacterNameFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetCharacterNameFromID) == 0x000028, "Wrong size on HeraDialogueDopeSheetDataTable_GetCharacterNameFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCharacterNameFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetCharacterNameFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCharacterNameFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetCharacterNameFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetCharacterTagFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetCharacterTagFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetCharacterTagFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetCharacterTagFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetCharacterTagFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCharacterTagFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetCharacterTagFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetCharacterTagFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetCharacterTagFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetDialogueVolumeOffsetdBFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetFacialAnimationAssetFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetLineDurationFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetLineDurationFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetLineDurationFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetLineDurationFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetLineDurationFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetLineDurationFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetLineDurationFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetLineDurationFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetLineDurationFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID) == 0x000018, "Wrong size on HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetShouldLoopBodyAnimationFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetTextFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetTextFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetTextFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetTextFromID) == 0x000028, "Wrong size on HeraDialogueDopeSheetDataTable_GetTextFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetTextFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetTextFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetTextFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetTextFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID \ +static_assert(alignof(HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID) == 0x000008, "Wrong alignment on HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID"); \ +static_assert(sizeof(HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID) == 0x000038, "Wrong size on HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID, InID) == 0x000000, "Member 'HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID, ReturnValue) == 0x000010, "Member 'HeraDialogueDopeSheetDataTable_GetViewTargetTransitionParamsFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueDopeSheetDataTable \ +static_assert(alignof(UHeraDialogueDopeSheetDataTable) == 0x000008, "Wrong alignment on UHeraDialogueDopeSheetDataTable"); \ +static_assert(sizeof(UHeraDialogueDopeSheetDataTable) == 0x0000B0, "Wrong size on UHeraDialogueDopeSheetDataTable"); \ + +#define DUMPER7_ASSERTS_HeraDialogueEvent_OnBegin_Blueprint \ +static_assert(alignof(HeraDialogueEvent_OnBegin_Blueprint) == 0x000008, "Wrong alignment on HeraDialogueEvent_OnBegin_Blueprint"); \ +static_assert(sizeof(HeraDialogueEvent_OnBegin_Blueprint) == 0x000040, "Wrong size on HeraDialogueEvent_OnBegin_Blueprint"); \ +static_assert(offsetof(HeraDialogueEvent_OnBegin_Blueprint, InPlayStatus) == 0x000000, "Member 'HeraDialogueEvent_OnBegin_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueEvent_OnEnd_Blueprint \ +static_assert(alignof(HeraDialogueEvent_OnEnd_Blueprint) == 0x000008, "Wrong alignment on HeraDialogueEvent_OnEnd_Blueprint"); \ +static_assert(sizeof(HeraDialogueEvent_OnEnd_Blueprint) == 0x000040, "Wrong size on HeraDialogueEvent_OnEnd_Blueprint"); \ +static_assert(offsetof(HeraDialogueEvent_OnEnd_Blueprint, InPlayStatus) == 0x000000, "Member 'HeraDialogueEvent_OnEnd_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueEvent_ResetState_Blueprint \ +static_assert(alignof(HeraDialogueEvent_ResetState_Blueprint) == 0x000008, "Wrong alignment on HeraDialogueEvent_ResetState_Blueprint"); \ +static_assert(sizeof(HeraDialogueEvent_ResetState_Blueprint) == 0x000040, "Wrong size on HeraDialogueEvent_ResetState_Blueprint"); \ +static_assert(offsetof(HeraDialogueEvent_ResetState_Blueprint, InPlayStatus) == 0x000000, "Member 'HeraDialogueEvent_ResetState_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueEvent_Update_Blueprint \ +static_assert(alignof(HeraDialogueEvent_Update_Blueprint) == 0x000008, "Wrong alignment on HeraDialogueEvent_Update_Blueprint"); \ +static_assert(sizeof(HeraDialogueEvent_Update_Blueprint) == 0x000040, "Wrong size on HeraDialogueEvent_Update_Blueprint"); \ +static_assert(offsetof(HeraDialogueEvent_Update_Blueprint, InPlayStatus) == 0x000000, "Member 'HeraDialogueEvent_Update_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent \ +static_assert(alignof(UHeraDialogueEvent) == 0x000008, "Wrong alignment on UHeraDialogueEvent"); \ +static_assert(sizeof(UHeraDialogueEvent) == 0x000068, "Wrong size on UHeraDialogueEvent"); \ +static_assert(offsetof(UHeraDialogueEvent, TriggerTime) == 0x000028, "Member 'UHeraDialogueEvent::TriggerTime' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, Duration) == 0x00002C, "Member 'UHeraDialogueEvent::Duration' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, KeyFrames) == 0x000030, "Member 'UHeraDialogueEvent::KeyFrames' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, DefaultKeyFrame) == 0x000040, "Member 'UHeraDialogueEvent::DefaultKeyFrame' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, KeyFrameClass) == 0x000048, "Member 'UHeraDialogueEvent::KeyFrameClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, EventName) == 0x000050, "Member 'UHeraDialogueEvent::EventName' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent, bOneShotEvent) == 0x000060, "Member 'UHeraDialogueEvent::bOneShotEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueEventKeyFrame_IsDefault \ +static_assert(alignof(HeraDialogueEventKeyFrame_IsDefault) == 0x000001, "Wrong alignment on HeraDialogueEventKeyFrame_IsDefault"); \ +static_assert(sizeof(HeraDialogueEventKeyFrame_IsDefault) == 0x000001, "Wrong size on HeraDialogueEventKeyFrame_IsDefault"); \ +static_assert(offsetof(HeraDialogueEventKeyFrame_IsDefault, ReturnValue) == 0x000000, "Member 'HeraDialogueEventKeyFrame_IsDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEventKeyFrame \ +static_assert(alignof(UHeraDialogueEventKeyFrame) == 0x000008, "Wrong alignment on UHeraDialogueEventKeyFrame"); \ +static_assert(sizeof(UHeraDialogueEventKeyFrame) == 0x000030, "Wrong size on UHeraDialogueEventKeyFrame"); \ +static_assert(offsetof(UHeraDialogueEventKeyFrame, Position) == 0x000028, "Member 'UHeraDialogueEventKeyFrame::Position' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEventKeyFrame, bIsDefault) == 0x00002C, "Member 'UHeraDialogueEventKeyFrame::bIsDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_CameraCut \ +static_assert(alignof(UHeraDialogueEvent_CameraCut) == 0x000008, "Wrong alignment on UHeraDialogueEvent_CameraCut"); \ +static_assert(sizeof(UHeraDialogueEvent_CameraCut) == 0x000120, "Wrong size on UHeraDialogueEvent_CameraCut"); \ +static_assert(offsetof(UHeraDialogueEvent_CameraCut, bUseRelativeTransform) == 0x000068, "Member 'UHeraDialogueEvent_CameraCut::bUseRelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_CameraCut, bShouldReset) == 0x000069, "Member 'UHeraDialogueEvent_CameraCut::bShouldReset' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_CameraCut, CameraTag) == 0x00006C, "Member 'UHeraDialogueEvent_CameraCut::CameraTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_Pacing \ +static_assert(alignof(UHeraDialogueEvent_Pacing) == 0x000008, "Wrong alignment on UHeraDialogueEvent_Pacing"); \ +static_assert(sizeof(UHeraDialogueEvent_Pacing) == 0x000068, "Wrong size on UHeraDialogueEvent_Pacing"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_PlayAnimation \ +static_assert(alignof(UHeraDialogueEvent_PlayAnimation) == 0x000008, "Wrong alignment on UHeraDialogueEvent_PlayAnimation"); \ +static_assert(sizeof(UHeraDialogueEvent_PlayAnimation) == 0x000088, "Wrong size on UHeraDialogueEvent_PlayAnimation"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayAnimation, CharacterTag) == 0x000068, "Member 'UHeraDialogueEvent_PlayAnimation::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayAnimation, AnimSequence) == 0x000070, "Member 'UHeraDialogueEvent_PlayAnimation::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayAnimation, SkelMeshComponent) == 0x000078, "Member 'UHeraDialogueEvent_PlayAnimation::SkelMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_PlayTransition \ +static_assert(alignof(UHeraDialogueEvent_PlayTransition) == 0x000008, "Wrong alignment on UHeraDialogueEvent_PlayTransition"); \ +static_assert(sizeof(UHeraDialogueEvent_PlayTransition) == 0x000090, "Wrong size on UHeraDialogueEvent_PlayTransition"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayTransition, CharacterTag) == 0x000068, "Member 'UHeraDialogueEvent_PlayTransition::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayTransition, MovingFacialAnimation) == 0x000070, "Member 'UHeraDialogueEvent_PlayTransition::MovingFacialAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayTransition, MovingBodyAnimation) == 0x000078, "Member 'UHeraDialogueEvent_PlayTransition::MovingBodyAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayTransition, IdleAnimation) == 0x000080, "Member 'UHeraDialogueEvent_PlayTransition::IdleAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_PlayTransition, SkelMeshComponent) == 0x000088, "Member 'UHeraDialogueEvent_PlayTransition::SkelMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_SetBodyIdles \ +static_assert(alignof(UHeraDialogueEvent_SetBodyIdles) == 0x000008, "Wrong alignment on UHeraDialogueEvent_SetBodyIdles"); \ +static_assert(sizeof(UHeraDialogueEvent_SetBodyIdles) == 0x000088, "Wrong size on UHeraDialogueEvent_SetBodyIdles"); \ +static_assert(offsetof(UHeraDialogueEvent_SetBodyIdles, BodyIdles) == 0x000068, "Member 'UHeraDialogueEvent_SetBodyIdles::BodyIdles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_SetCharacterLocation \ +static_assert(alignof(UHeraDialogueEvent_SetCharacterLocation) == 0x000008, "Wrong alignment on UHeraDialogueEvent_SetCharacterLocation"); \ +static_assert(sizeof(UHeraDialogueEvent_SetCharacterLocation) == 0x0000E0, "Wrong size on UHeraDialogueEvent_SetCharacterLocation"); \ +static_assert(offsetof(UHeraDialogueEvent_SetCharacterLocation, CharacterLocation) == 0x000068, "Member 'UHeraDialogueEvent_SetCharacterLocation::CharacterLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueEvent_TriggerEyeGlows \ +static_assert(alignof(UHeraDialogueEvent_TriggerEyeGlows) == 0x000008, "Wrong alignment on UHeraDialogueEvent_TriggerEyeGlows"); \ +static_assert(sizeof(UHeraDialogueEvent_TriggerEyeGlows) == 0x000168, "Wrong size on UHeraDialogueEvent_TriggerEyeGlows"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, Curve) == 0x000068, "Member 'UHeraDialogueEvent_TriggerEyeGlows::Curve' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, CharacterTag) == 0x0000F0, "Member 'UHeraDialogueEvent_TriggerEyeGlows::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, EyeGlowParameterName) == 0x0000F8, "Member 'UHeraDialogueEvent_TriggerEyeGlows::EyeGlowParameterName' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, MaterialKeyword) == 0x000100, "Member 'UHeraDialogueEvent_TriggerEyeGlows::MaterialKeyword' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, DynamicMaterialInstances) == 0x000110, "Member 'UHeraDialogueEvent_TriggerEyeGlows::DynamicMaterialInstances' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueEvent_TriggerEyeGlows, SkelMeshComponent) == 0x000160, "Member 'UHeraDialogueEvent_TriggerEyeGlows::SkelMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueInfo \ +static_assert(alignof(UHeraDialogueInfo) == 0x000008, "Wrong alignment on UHeraDialogueInfo"); \ +static_assert(sizeof(UHeraDialogueInfo) == 0x000188, "Wrong size on UHeraDialogueInfo"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueType) == 0x000030, "Member 'UHeraDialogueInfo::DialogueType' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, StoryStatus) == 0x000038, "Member 'UHeraDialogueInfo::StoryStatus' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueWidgetClass) == 0x000048, "Member 'UHeraDialogueInfo::DialogueWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueWidgetSlotName) == 0x000050, "Member 'UHeraDialogueInfo::DialogueWidgetSlotName' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, bPlayVideoDialogue) == 0x000058, "Member 'UHeraDialogueInfo::bPlayVideoDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, CharacterPostProcessVideo) == 0x00005C, "Member 'UHeraDialogueInfo::CharacterPostProcessVideo' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, bUseMultipleAudioPositions) == 0x000064, "Member 'UHeraDialogueInfo::bUseMultipleAudioPositions' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueVariableNameToPropertyMap) == 0x000068, "Member 'UHeraDialogueInfo::DialogueVariableNameToPropertyMap' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueOutcomes) == 0x0000B8, "Member 'UHeraDialogueInfo::DialogueOutcomes' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, HardCutIntroCharacterAnimation) == 0x0000C8, "Member 'UHeraDialogueInfo::HardCutIntroCharacterAnimation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DopeSheet) == 0x0000F8, "Member 'UHeraDialogueInfo::DopeSheet' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, bStoryShouldRemainInMemory) == 0x000100, "Member 'UHeraDialogueInfo::bStoryShouldRemainInMemory' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, bDisableCulling) == 0x000101, "Member 'UHeraDialogueInfo::bDisableCulling' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, JumpToKnot) == 0x000108, "Member 'UHeraDialogueInfo::JumpToKnot' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, StoryVersion) == 0x000118, "Member 'UHeraDialogueInfo::StoryVersion' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, Story) == 0x000120, "Member 'UHeraDialogueInfo::Story' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, bShowHUD) == 0x000128, "Member 'UHeraDialogueInfo::bShowHUD' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueOutcomeVariable) == 0x000130, "Member 'UHeraDialogueInfo::DialogueOutcomeVariable' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueInfo, DialogueVariableNameToPropertyMapAutomatic) == 0x000138, "Member 'UHeraDialogueInfo::DialogueVariableNameToPropertyMapAutomatic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraDialogueInterface \ +static_assert(alignof(IHeraDialogueInterface) == 0x000001, "Wrong alignment on IHeraDialogueInterface"); \ +static_assert(sizeof(IHeraDialogueInterface) == 0x000001, "Wrong size on IHeraDialogueInterface"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueKeyFrame_CameraCut \ +static_assert(alignof(UHeraDialogueKeyFrame_CameraCut) == 0x000008, "Wrong alignment on UHeraDialogueKeyFrame_CameraCut"); \ +static_assert(sizeof(UHeraDialogueKeyFrame_CameraCut) == 0x000068, "Wrong size on UHeraDialogueKeyFrame_CameraCut"); \ +static_assert(offsetof(UHeraDialogueKeyFrame_CameraCut, Location) == 0x000030, "Member 'UHeraDialogueKeyFrame_CameraCut::Location' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueKeyFrame_CameraCut, Rotation) == 0x000048, "Member 'UHeraDialogueKeyFrame_CameraCut::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueKeyFrame_CameraCut, ManualFocusDistance) == 0x000060, "Member 'UHeraDialogueKeyFrame_CameraCut::ManualFocusDistance' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueKeyFrame_CameraCut, FocusOffset) == 0x000064, "Member 'UHeraDialogueKeyFrame_CameraCut::FocusOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueMovieSceneSection \ +static_assert(alignof(UHeraDialogueMovieSceneSection) == 0x000008, "Wrong alignment on UHeraDialogueMovieSceneSection"); \ +static_assert(sizeof(UHeraDialogueMovieSceneSection) == 0x000120, "Wrong size on UHeraDialogueMovieSceneSection"); \ +static_assert(offsetof(UHeraDialogueMovieSceneSection, Params_0) == 0x0000F0, "Member 'UHeraDialogueMovieSceneSection::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueMovieSceneTrack \ +static_assert(alignof(UHeraDialogueMovieSceneTrack) == 0x000008, "Wrong alignment on UHeraDialogueMovieSceneTrack"); \ +static_assert(sizeof(UHeraDialogueMovieSceneTrack) == 0x000118, "Wrong size on UHeraDialogueMovieSceneTrack"); \ +static_assert(offsetof(UHeraDialogueMovieSceneTrack, AnimationSections) == 0x0000A0, "Member 'UHeraDialogueMovieSceneTrack::AnimationSections' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueMovieSceneTrack, DialogueInfo) == 0x0000B0, "Member 'UHeraDialogueMovieSceneTrack::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueMovieSceneTrack, ChildTracks) == 0x0000B8, "Member 'UHeraDialogueMovieSceneTrack::ChildTracks' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueMovieSceneTrack, MasterTrack) == 0x000108, "Member 'UHeraDialogueMovieSceneTrack::MasterTrack' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueMovieSceneTrack, bResolveStory) == 0x000110, "Member 'UHeraDialogueMovieSceneTrack::bResolveStory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraLightRigActor \ +static_assert(alignof(AHeraLightRigActor) == 0x000008, "Wrong alignment on AHeraLightRigActor"); \ +static_assert(sizeof(AHeraLightRigActor) == 0x0002C0, "Wrong size on AHeraLightRigActor"); \ +static_assert(offsetof(AHeraLightRigActor, Cameras) == 0x000298, "Member 'AHeraLightRigActor::Cameras' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightRigActor, bLightsVisibleOutsideConversation) == 0x0002A8, "Member 'AHeraLightRigActor::bLightsVisibleOutsideConversation' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightRigActor, Lights) == 0x0002B0, "Member 'AHeraLightRigActor::Lights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueRig_GetCamera \ +static_assert(alignof(HeraDialogueRig_GetCamera) == 0x000008, "Wrong alignment on HeraDialogueRig_GetCamera"); \ +static_assert(sizeof(HeraDialogueRig_GetCamera) == 0x000010, "Wrong size on HeraDialogueRig_GetCamera"); \ +static_assert(offsetof(HeraDialogueRig_GetCamera, InTag) == 0x000000, "Member 'HeraDialogueRig_GetCamera::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueRig_GetCamera, ReturnValue) == 0x000008, "Member 'HeraDialogueRig_GetCamera::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueRig_GetParticipant \ +static_assert(alignof(HeraDialogueRig_GetParticipant) == 0x000008, "Wrong alignment on HeraDialogueRig_GetParticipant"); \ +static_assert(sizeof(HeraDialogueRig_GetParticipant) == 0x000010, "Wrong size on HeraDialogueRig_GetParticipant"); \ +static_assert(offsetof(HeraDialogueRig_GetParticipant, InTag) == 0x000000, "Member 'HeraDialogueRig_GetParticipant::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueRig_GetParticipant, ReturnValue) == 0x000008, "Member 'HeraDialogueRig_GetParticipant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueRig_IsInUse \ +static_assert(alignof(HeraDialogueRig_IsInUse) == 0x000001, "Wrong alignment on HeraDialogueRig_IsInUse"); \ +static_assert(sizeof(HeraDialogueRig_IsInUse) == 0x000001, "Wrong size on HeraDialogueRig_IsInUse"); \ +static_assert(offsetof(HeraDialogueRig_IsInUse, ReturnValue) == 0x000000, "Member 'HeraDialogueRig_IsInUse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraDialogueRig \ +static_assert(alignof(AHeraDialogueRig) == 0x000008, "Wrong alignment on AHeraDialogueRig"); \ +static_assert(sizeof(AHeraDialogueRig) == 0x0003E8, "Wrong size on AHeraDialogueRig"); \ +static_assert(offsetof(AHeraDialogueRig, bIntroCameraCut) == 0x000298, "Member 'AHeraDialogueRig::bIntroCameraCut' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, bOutroCameraCut) == 0x000299, "Member 'AHeraDialogueRig::bOutroCameraCut' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, IntroParams) == 0x00029C, "Member 'AHeraDialogueRig::IntroParams' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, OutroParams) == 0x0002C4, "Member 'AHeraDialogueRig::OutroParams' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, Props) == 0x0002F0, "Member 'AHeraDialogueRig::Props' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, PlayerPosition) == 0x000300, "Member 'AHeraDialogueRig::PlayerPosition' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, Participants) == 0x000328, "Member 'AHeraDialogueRig::Participants' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, Cameras) == 0x000378, "Member 'AHeraDialogueRig::Cameras' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, LightRigs) == 0x0003C8, "Member 'AHeraDialogueRig::LightRigs' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, DialogueWidgetClassOverride) == 0x0003D8, "Member 'AHeraDialogueRig::DialogueWidgetClassOverride' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueRig, bIsInUse) == 0x0003E0, "Member 'AHeraDialogueRig::bIsInUse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueSettings \ +static_assert(alignof(UHeraDialogueSettings) == 0x000008, "Wrong alignment on UHeraDialogueSettings"); \ +static_assert(sizeof(UHeraDialogueSettings) == 0x000478, "Wrong size on UHeraDialogueSettings"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAudioPlayEvent) == 0x000038, "Member 'UHeraDialogueSettings::DialogueAudioPlayEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAudioStopEvent) == 0x000060, "Member 'UHeraDialogueSettings::DialogueAudioStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAudioStateProperty) == 0x000088, "Member 'UHeraDialogueSettings::DialogueAudioStateProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueVolumeRtpc) == 0x0000B0, "Member 'UHeraDialogueSettings::DialogueVolumeRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialoguePriorityRtpc) == 0x0000D8, "Member 'UHeraDialogueSettings::DialoguePriorityRtpc' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, MuteTextToSpeechDialogue) == 0x000100, "Member 'UHeraDialogueSettings::MuteTextToSpeechDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultConversionSettings) == 0x000104, "Member 'UHeraDialogueSettings::DefaultConversionSettings' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAudioCodec) == 0x00010C, "Member 'UHeraDialogueSettings::DialogueAudioCodec' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, PlatformDialogueAudioCodecs) == 0x000110, "Member 'UHeraDialogueSettings::PlatformDialogueAudioCodecs' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAudioPriorityBuckets) == 0x000160, "Member 'UHeraDialogueSettings::DialogueAudioPriorityBuckets' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueAssetFolder) == 0x0001B0, "Member 'UHeraDialogueSettings::DialogueAssetFolder' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, CharacterSelfGameplayTag) == 0x0001B8, "Member 'UHeraDialogueSettings::CharacterSelfGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, CharacterSelfInkTagPrefix) == 0x0001C0, "Member 'UHeraDialogueSettings::CharacterSelfInkTagPrefix' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, PreviewPlayerCharacterClass) == 0x0001C8, "Member 'UHeraDialogueSettings::PreviewPlayerCharacterClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, PlayerVariantSequenceTags) == 0x0001E8, "Member 'UHeraDialogueSettings::PlayerVariantSequenceTags' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultDialogueWidgetClass) == 0x000238, "Member 'UHeraDialogueSettings::DefaultDialogueWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultDialogueSlot) == 0x000260, "Member 'UHeraDialogueSettings::DefaultDialogueSlot' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultVideoDialogueWidgetClass) == 0x000268, "Member 'UHeraDialogueSettings::DefaultVideoDialogueWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultVideoDialogueSlot) == 0x000290, "Member 'UHeraDialogueSettings::DefaultVideoDialogueSlot' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, PlayerCameraGameplayTag) == 0x000298, "Member 'UHeraDialogueSettings::PlayerCameraGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultRigCameraTags) == 0x0002A0, "Member 'UHeraDialogueSettings::DefaultRigCameraTags' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, CharacterPostProcessVideos) == 0x0002B0, "Member 'UHeraDialogueSettings::CharacterPostProcessVideos' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultCharacterVoiceName) == 0x000300, "Member 'UHeraDialogueSettings::DefaultCharacterVoiceName' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueCharacterTagAssociations) == 0x000310, "Member 'UHeraDialogueSettings::DialogueCharacterTagAssociations' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueOutputBinding) == 0x000360, "Member 'UHeraDialogueSettings::DialogueOutputBinding' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueBarkTagBinding) == 0x000398, "Member 'UHeraDialogueSettings::DialogueBarkTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueErrorBinding) == 0x0003D0, "Member 'UHeraDialogueSettings::DialogueErrorBinding' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DefaultNarrativePathForAutoBindingVariables) == 0x000408, "Member 'UHeraDialogueSettings::DefaultNarrativePathForAutoBindingVariables' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, AutoBindingDialogueVariables) == 0x000418, "Member 'UHeraDialogueSettings::AutoBindingDialogueVariables' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, bIgnoreTimeDilation) == 0x000428, "Member 'UHeraDialogueSettings::bIgnoreTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, CharacterReactions) == 0x000430, "Member 'UHeraDialogueSettings::CharacterReactions' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, ChoicePresentationLeadTime) == 0x000450, "Member 'UHeraDialogueSettings::ChoicePresentationLeadTime' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSettings, DialogueStoryControllerClass) == 0x000458, "Member 'UHeraDialogueSettings::DialogueStoryControllerClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialoguePersistentData \ +static_assert(alignof(UHeraDialoguePersistentData) == 0x000008, "Wrong alignment on UHeraDialoguePersistentData"); \ +static_assert(sizeof(UHeraDialoguePersistentData) == 0x000038, "Wrong size on UHeraDialoguePersistentData"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueUserSettings \ +static_assert(alignof(UHeraDialogueUserSettings) == 0x000008, "Wrong alignment on UHeraDialogueUserSettings"); \ +static_assert(sizeof(UHeraDialogueUserSettings) == 0x000038, "Wrong size on UHeraDialogueUserSettings"); \ + +#define DUMPER7_ASSERTS_HeraDialogueShortcutController_GetCurrentInputType \ +static_assert(alignof(HeraDialogueShortcutController_GetCurrentInputType) == 0x000001, "Wrong alignment on HeraDialogueShortcutController_GetCurrentInputType"); \ +static_assert(sizeof(HeraDialogueShortcutController_GetCurrentInputType) == 0x000001, "Wrong size on HeraDialogueShortcutController_GetCurrentInputType"); \ +static_assert(offsetof(HeraDialogueShortcutController_GetCurrentInputType, ReturnValue) == 0x000000, "Member 'HeraDialogueShortcutController_GetCurrentInputType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueShortcutController \ +static_assert(alignof(UHeraDialogueShortcutController) == 0x000008, "Wrong alignment on UHeraDialogueShortcutController"); \ +static_assert(sizeof(UHeraDialogueShortcutController) == 0x0004C0, "Wrong size on UHeraDialogueShortcutController"); \ +static_assert(offsetof(UHeraDialogueShortcutController, OnInputChanged) == 0x000450, "Member 'UHeraDialogueShortcutController::OnInputChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueShortcutController, ChoiceInputActionData) == 0x000470, "Member 'UHeraDialogueShortcutController::ChoiceInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueShortcutController, SkipInputActionData) == 0x0004A8, "Member 'UHeraDialogueShortcutController::SkipInputActionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_SetIsInCutscene \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_SetIsInCutscene) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_SetIsInCutscene"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_SetIsInCutscene) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_SetIsInCutscene"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_SetIsInCutscene, bInDialogue_0) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_SetIsInCutscene::bInDialogue_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_SetIsInDialogue \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_SetIsInDialogue) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_SetIsInDialogue"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_SetIsInDialogue) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_SetIsInDialogue"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_SetIsInDialogue, bInDialogue_0) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_SetIsInDialogue::bInDialogue_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_SetIsSpeaking \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_SetIsSpeaking) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_SetIsSpeaking"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_SetIsSpeaking) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_SetIsSpeaking"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_SetIsSpeaking, bIsSpeaking_0) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_SetIsSpeaking::bIsSpeaking_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetActorName \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetActorName) == 0x000008, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetActorName"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetActorName) == 0x000010, "Wrong size on HeraDialogueSkeletalMeshActor_GetActorName"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetActorName, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetAudioComponent \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetAudioComponent) == 0x000008, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetAudioComponent"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetAudioComponent) == 0x000008, "Wrong size on HeraDialogueSkeletalMeshActor_GetAudioComponent"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetAudioComponent, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag) == 0x000008, "Wrong size on HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetIsInCutscene \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetIsInCutscene) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetIsInCutscene"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetIsInCutscene) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_GetIsInCutscene"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetIsInDialogue \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetIsInDialogue) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetIsInDialogue"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetIsInDialogue) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_GetIsInDialogue"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetIsSpeaking \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetIsSpeaking) == 0x000001, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetIsSpeaking"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetIsSpeaking) == 0x000001, "Wrong size on HeraDialogueSkeletalMeshActor_GetIsSpeaking"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp) == 0x000008, "Wrong size on HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSkeletalMeshActor_MatchesCharacterTag \ +static_assert(alignof(HeraDialogueSkeletalMeshActor_MatchesCharacterTag) == 0x000004, "Wrong alignment on HeraDialogueSkeletalMeshActor_MatchesCharacterTag"); \ +static_assert(sizeof(HeraDialogueSkeletalMeshActor_MatchesCharacterTag) == 0x00000C, "Wrong size on HeraDialogueSkeletalMeshActor_MatchesCharacterTag"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'HeraDialogueSkeletalMeshActor_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSkeletalMeshActor_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'HeraDialogueSkeletalMeshActor_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraDialogueSkeletalMeshActor \ +static_assert(alignof(AHeraDialogueSkeletalMeshActor) == 0x000008, "Wrong alignment on AHeraDialogueSkeletalMeshActor"); \ +static_assert(sizeof(AHeraDialogueSkeletalMeshActor) == 0x000340, "Wrong size on AHeraDialogueSkeletalMeshActor"); \ +static_assert(offsetof(AHeraDialogueSkeletalMeshActor, DialogueCharacterTag) == 0x000328, "Member 'AHeraDialogueSkeletalMeshActor::DialogueCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueSkeletalMeshActor, AudioCharacterComponent) == 0x000330, "Member 'AHeraDialogueSkeletalMeshActor::AudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueSkeletalMeshActor, bInDialogue) == 0x000338, "Member 'AHeraDialogueSkeletalMeshActor::bInDialogue' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueSkeletalMeshActor, bInCutscene) == 0x000339, "Member 'AHeraDialogueSkeletalMeshActor::bInCutscene' has a wrong offset!"); \ +static_assert(offsetof(AHeraDialogueSkeletalMeshActor, bIsSpeaking) == 0x00033A, "Member 'AHeraDialogueSkeletalMeshActor::bIsSpeaking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_AbortStoriesWithParticipant \ +static_assert(alignof(HeraDialogueSubsystem_AbortStoriesWithParticipant) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_AbortStoriesWithParticipant"); \ +static_assert(sizeof(HeraDialogueSubsystem_AbortStoriesWithParticipant) == 0x000010, "Wrong size on HeraDialogueSubsystem_AbortStoriesWithParticipant"); \ +static_assert(offsetof(HeraDialogueSubsystem_AbortStoriesWithParticipant, InParticipantActor) == 0x000000, "Member 'HeraDialogueSubsystem_AbortStoriesWithParticipant::InParticipantActor' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_AbortStoriesWithParticipant, InEndPlayReason) == 0x000008, "Member 'HeraDialogueSubsystem_AbortStoriesWithParticipant::InEndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_AbortStoriesWithParticipantActor \ +static_assert(alignof(HeraDialogueSubsystem_AbortStoriesWithParticipantActor) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_AbortStoriesWithParticipantActor"); \ +static_assert(sizeof(HeraDialogueSubsystem_AbortStoriesWithParticipantActor) == 0x000008, "Wrong size on HeraDialogueSubsystem_AbortStoriesWithParticipantActor"); \ +static_assert(offsetof(HeraDialogueSubsystem_AbortStoriesWithParticipantActor, InParticipantActor) == 0x000000, "Member 'HeraDialogueSubsystem_AbortStoriesWithParticipantActor::InParticipantActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_AbortStoriesWithParticipantTag \ +static_assert(alignof(HeraDialogueSubsystem_AbortStoriesWithParticipantTag) == 0x000004, "Wrong alignment on HeraDialogueSubsystem_AbortStoriesWithParticipantTag"); \ +static_assert(sizeof(HeraDialogueSubsystem_AbortStoriesWithParticipantTag) == 0x000008, "Wrong size on HeraDialogueSubsystem_AbortStoriesWithParticipantTag"); \ +static_assert(offsetof(HeraDialogueSubsystem_AbortStoriesWithParticipantTag, InCharacterTag) == 0x000000, "Member 'HeraDialogueSubsystem_AbortStoriesWithParticipantTag::InCharacterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_BindExternalFunction \ +static_assert(alignof(HeraDialogueSubsystem_BindExternalFunction) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_BindExternalFunction"); \ +static_assert(sizeof(HeraDialogueSubsystem_BindExternalFunction) == 0x000028, "Wrong size on HeraDialogueSubsystem_BindExternalFunction"); \ +static_assert(offsetof(HeraDialogueSubsystem_BindExternalFunction, InStoryHandle) == 0x000000, "Member 'HeraDialogueSubsystem_BindExternalFunction::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_BindExternalFunction, InFunctionName) == 0x000008, "Member 'HeraDialogueSubsystem_BindExternalFunction::InFunctionName' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_BindExternalFunction, InFunction) == 0x000018, "Member 'HeraDialogueSubsystem_BindExternalFunction::InFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_FinishDialogue \ +static_assert(alignof(HeraDialogueSubsystem_FinishDialogue) == 0x000004, "Wrong alignment on HeraDialogueSubsystem_FinishDialogue"); \ +static_assert(sizeof(HeraDialogueSubsystem_FinishDialogue) == 0x000004, "Wrong size on HeraDialogueSubsystem_FinishDialogue"); \ +static_assert(offsetof(HeraDialogueSubsystem_FinishDialogue, InStoryHandle) == 0x000000, "Member 'HeraDialogueSubsystem_FinishDialogue::InStoryHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_FinishDialogueSequencer \ +static_assert(alignof(HeraDialogueSubsystem_FinishDialogueSequencer) == 0x000004, "Wrong alignment on HeraDialogueSubsystem_FinishDialogueSequencer"); \ +static_assert(sizeof(HeraDialogueSubsystem_FinishDialogueSequencer) == 0x000004, "Wrong size on HeraDialogueSubsystem_FinishDialogueSequencer"); \ +static_assert(offsetof(HeraDialogueSubsystem_FinishDialogueSequencer, InStoryHandle) == 0x000000, "Member 'HeraDialogueSubsystem_FinishDialogueSequencer::InStoryHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_ForgetSavedDialogueState \ +static_assert(alignof(HeraDialogueSubsystem_ForgetSavedDialogueState) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_ForgetSavedDialogueState"); \ +static_assert(sizeof(HeraDialogueSubsystem_ForgetSavedDialogueState) == 0x000008, "Wrong size on HeraDialogueSubsystem_ForgetSavedDialogueState"); \ +static_assert(offsetof(HeraDialogueSubsystem_ForgetSavedDialogueState, InDialogueInfo) == 0x000000, "Member 'HeraDialogueSubsystem_ForgetSavedDialogueState::InDialogueInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_GetCurrentStoryHandle \ +static_assert(alignof(HeraDialogueSubsystem_GetCurrentStoryHandle) == 0x000004, "Wrong alignment on HeraDialogueSubsystem_GetCurrentStoryHandle"); \ +static_assert(sizeof(HeraDialogueSubsystem_GetCurrentStoryHandle) == 0x000004, "Wrong size on HeraDialogueSubsystem_GetCurrentStoryHandle"); \ +static_assert(offsetof(HeraDialogueSubsystem_GetCurrentStoryHandle, ReturnValue) == 0x000000, "Member 'HeraDialogueSubsystem_GetCurrentStoryHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_Ink_CharacterReaction \ +static_assert(alignof(HeraDialogueSubsystem_Ink_CharacterReaction) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_Ink_CharacterReaction"); \ +static_assert(sizeof(HeraDialogueSubsystem_Ink_CharacterReaction) == 0x000038, "Wrong size on HeraDialogueSubsystem_Ink_CharacterReaction"); \ +static_assert(offsetof(HeraDialogueSubsystem_Ink_CharacterReaction, InStoryHandle) == 0x000000, "Member 'HeraDialogueSubsystem_Ink_CharacterReaction::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_Ink_CharacterReaction, InWho) == 0x000008, "Member 'HeraDialogueSubsystem_Ink_CharacterReaction::InWho' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_Ink_CharacterReaction, InReaction) == 0x000018, "Member 'HeraDialogueSubsystem_Ink_CharacterReaction::InReaction' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_Ink_CharacterReaction, InReactionClass) == 0x000030, "Member 'HeraDialogueSubsystem_Ink_CharacterReaction::InReactionClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory \ +static_assert(alignof(HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory"); \ +static_assert(sizeof(HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory) == 0x000010, "Wrong size on HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory"); \ +static_assert(offsetof(HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory, InCharacterTag) == 0x000000, "Member 'HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory, InParticipantActor) == 0x000008, "Member 'HeraDialogueSubsystem_RemoveParticipantFromMultiPositionStory::InParticipantActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_SetInteractedWithDialogueRig \ +static_assert(alignof(HeraDialogueSubsystem_SetInteractedWithDialogueRig) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_SetInteractedWithDialogueRig"); \ +static_assert(sizeof(HeraDialogueSubsystem_SetInteractedWithDialogueRig) == 0x000008, "Wrong size on HeraDialogueSubsystem_SetInteractedWithDialogueRig"); \ +static_assert(offsetof(HeraDialogueSubsystem_SetInteractedWithDialogueRig, InRig) == 0x000000, "Member 'HeraDialogueSubsystem_SetInteractedWithDialogueRig::InRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDialogueSubsystem_UnbindExternalFunction \ +static_assert(alignof(HeraDialogueSubsystem_UnbindExternalFunction) == 0x000008, "Wrong alignment on HeraDialogueSubsystem_UnbindExternalFunction"); \ +static_assert(sizeof(HeraDialogueSubsystem_UnbindExternalFunction) == 0x000018, "Wrong size on HeraDialogueSubsystem_UnbindExternalFunction"); \ +static_assert(offsetof(HeraDialogueSubsystem_UnbindExternalFunction, InStoryHandle) == 0x000000, "Member 'HeraDialogueSubsystem_UnbindExternalFunction::InStoryHandle' has a wrong offset!"); \ +static_assert(offsetof(HeraDialogueSubsystem_UnbindExternalFunction, InFunctionName) == 0x000008, "Member 'HeraDialogueSubsystem_UnbindExternalFunction::InFunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDialogueSubsystem \ +static_assert(alignof(UHeraDialogueSubsystem) == 0x000008, "Wrong alignment on UHeraDialogueSubsystem"); \ +static_assert(sizeof(UHeraDialogueSubsystem) == 0x0002A0, "Wrong size on UHeraDialogueSubsystem"); \ +static_assert(offsetof(UHeraDialogueSubsystem, StoryController) == 0x000160, "Member 'UHeraDialogueSubsystem::StoryController' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, StoryControllerObject) == 0x000170, "Member 'UHeraDialogueSubsystem::StoryControllerObject' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, AudioController) == 0x000178, "Member 'UHeraDialogueSubsystem::AudioController' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, AnimationController) == 0x000180, "Member 'UHeraDialogueSubsystem::AnimationController' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, CameraController) == 0x000188, "Member 'UHeraDialogueSubsystem::CameraController' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, ActiveStories) == 0x000190, "Member 'UHeraDialogueSubsystem::ActiveStories' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, SavedDialogue) == 0x0001E0, "Member 'UHeraDialogueSubsystem::SavedDialogue' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LoadedDialogueAudioPlayEvent) == 0x000230, "Member 'UHeraDialogueSubsystem::LoadedDialogueAudioPlayEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LoadedDialogueAudioStopEvent) == 0x000238, "Member 'UHeraDialogueSubsystem::LoadedDialogueAudioStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LoadedDialogueVolumeRTPC) == 0x000240, "Member 'UHeraDialogueSubsystem::LoadedDialogueVolumeRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LoadedDialoguePriorityRTPC) == 0x000248, "Member 'UHeraDialogueSubsystem::LoadedDialoguePriorityRTPC' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LastInteractedDialogueRig) == 0x000250, "Member 'UHeraDialogueSubsystem::LastInteractedDialogueRig' has a wrong offset!"); \ +static_assert(offsetof(UHeraDialogueSubsystem, LoadedDialogueAudioStateProperty) == 0x000258, "Member 'UHeraDialogueSubsystem::LoadedDialogueAudioStateProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPlayerVariantSettings \ +static_assert(alignof(UHeraPlayerVariantSettings) == 0x000008, "Wrong alignment on UHeraPlayerVariantSettings"); \ +static_assert(sizeof(UHeraPlayerVariantSettings) == 0x000060, "Wrong size on UHeraPlayerVariantSettings"); \ +static_assert(offsetof(UHeraPlayerVariantSettings, ShouldUseAlternativePlayerCharacterProperty) == 0x000038, "Member 'UHeraPlayerVariantSettings::ShouldUseAlternativePlayerCharacterProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator \ +static_assert(alignof(WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator) == 0x000004, "Wrong alignment on WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator"); \ +static_assert(sizeof(WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator) == 0x000008, "Wrong size on WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator"); \ +static_assert(offsetof(WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator, EntryPoint) == 0x000000, "Member 'WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator, K2Node_Event_InVisibility) == 0x000004, "Member 'WBP_BloodResonanceEventWaypointIndicator_C_ExecuteUbergraph_WBP_BloodResonanceEventWaypointIndicator::K2Node_Event_InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility \ +static_assert(alignof(WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong alignment on WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(sizeof(WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong size on WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(offsetof(WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility, InVisibility) == 0x000000, "Member 'WBP_BloodResonanceEventWaypointIndicator_C_SetDistanceVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BloodResonanceEventWaypointIndicator_C \ +static_assert(alignof(UWBP_BloodResonanceEventWaypointIndicator_C) == 0x000008, "Wrong alignment on UWBP_BloodResonanceEventWaypointIndicator_C"); \ +static_assert(sizeof(UWBP_BloodResonanceEventWaypointIndicator_C) == 0x000368, "Wrong size on UWBP_BloodResonanceEventWaypointIndicator_C"); \ +static_assert(offsetof(UWBP_BloodResonanceEventWaypointIndicator_C, UberGraphFrame) == 0x000358, "Member 'UWBP_BloodResonanceEventWaypointIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BloodResonanceEventWaypointIndicator_C, WaypointDistance) == 0x000360, "Member 'UWBP_BloodResonanceEventWaypointIndicator_C::WaypointDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedInterface \ +static_assert(alignof(FNamedInterface) == 0x000008, "Wrong alignment on FNamedInterface"); \ +static_assert(sizeof(FNamedInterface) == 0x000010, "Wrong size on FNamedInterface"); \ +static_assert(offsetof(FNamedInterface, InterfaceName) == 0x000000, "Member 'FNamedInterface::InterfaceName' has a wrong offset!"); \ +static_assert(offsetof(FNamedInterface, InterfaceObject) == 0x000008, "Member 'FNamedInterface::InterfaceObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNamedInterfaceDef \ +static_assert(alignof(FNamedInterfaceDef) == 0x000008, "Wrong alignment on FNamedInterfaceDef"); \ +static_assert(sizeof(FNamedInterfaceDef) == 0x000018, "Wrong size on FNamedInterfaceDef"); \ +static_assert(offsetof(FNamedInterfaceDef, InterfaceName) == 0x000000, "Member 'FNamedInterfaceDef::InterfaceName' has a wrong offset!"); \ +static_assert(offsetof(FNamedInterfaceDef, InterfaceClassName) == 0x000008, "Member 'FNamedInterfaceDef::InterfaceClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNamedInterfaces \ +static_assert(alignof(UNamedInterfaces) == 0x000008, "Wrong alignment on UNamedInterfaces"); \ +static_assert(sizeof(UNamedInterfaces) == 0x000060, "Wrong size on UNamedInterfaces"); \ +static_assert(offsetof(UNamedInterfaces, NamedInterfaces) == 0x000028, "Member 'UNamedInterfaces::NamedInterfaces' has a wrong offset!"); \ +static_assert(offsetof(UNamedInterfaces, NamedInterfaceDefs) == 0x000038, "Member 'UNamedInterfaces::NamedInterfaceDefs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TurnBasedMatchInterface_OnMatchEnded \ +static_assert(alignof(TurnBasedMatchInterface_OnMatchEnded) == 0x000008, "Wrong alignment on TurnBasedMatchInterface_OnMatchEnded"); \ +static_assert(sizeof(TurnBasedMatchInterface_OnMatchEnded) == 0x000010, "Wrong size on TurnBasedMatchInterface_OnMatchEnded"); \ +static_assert(offsetof(TurnBasedMatchInterface_OnMatchEnded, Match) == 0x000000, "Member 'TurnBasedMatchInterface_OnMatchEnded::Match' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TurnBasedMatchInterface_OnMatchReceivedTurn \ +static_assert(alignof(TurnBasedMatchInterface_OnMatchReceivedTurn) == 0x000008, "Wrong alignment on TurnBasedMatchInterface_OnMatchReceivedTurn"); \ +static_assert(sizeof(TurnBasedMatchInterface_OnMatchReceivedTurn) == 0x000018, "Wrong size on TurnBasedMatchInterface_OnMatchReceivedTurn"); \ +static_assert(offsetof(TurnBasedMatchInterface_OnMatchReceivedTurn, Match) == 0x000000, "Member 'TurnBasedMatchInterface_OnMatchReceivedTurn::Match' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedMatchInterface_OnMatchReceivedTurn, bDidBecomeActive) == 0x000010, "Member 'TurnBasedMatchInterface_OnMatchReceivedTurn::bDidBecomeActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ITurnBasedMatchInterface \ +static_assert(alignof(ITurnBasedMatchInterface) == 0x000001, "Wrong alignment on ITurnBasedMatchInterface"); \ +static_assert(sizeof(ITurnBasedMatchInterface) == 0x000001, "Wrong size on ITurnBasedMatchInterface"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_AdjustPCSelection \ +static_assert(alignof(WBP_DialogueMinimal_C_AdjustPCSelection) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_AdjustPCSelection"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_AdjustPCSelection) == 0x000058, "Wrong size on WBP_DialogueMinimal_C_AdjustPCSelection"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, InActiveChoices) == 0x000000, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::InActiveChoices' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_Subtract_IntInt_ReturnValue) == 0x000004, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000010, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000018, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_GetAllChildren_ReturnValue) == 0x000020, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, K2Node_DynamicCast_AsWBP_Dialogue_Button) == 0x000048, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::K2Node_DynamicCast_AsWBP_Dialogue_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AdjustPCSelection, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'WBP_DialogueMinimal_C_AdjustPCSelection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_AudioNavigation \ +static_assert(alignof(WBP_DialogueMinimal_C_AudioNavigation) == 0x000004, "Wrong alignment on WBP_DialogueMinimal_C_AudioNavigation"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_AudioNavigation) == 0x000018, "Wrong size on WBP_DialogueMinimal_C_AudioNavigation"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AudioNavigation, Focus_Int) == 0x000000, "Member 'WBP_DialogueMinimal_C_AudioNavigation::Focus_Int' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AudioNavigation, Current_Focus) == 0x000004, "Member 'WBP_DialogueMinimal_C_AudioNavigation::Current_Focus' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_AudioNavigation, Temp_delegate_Variable) == 0x000008, "Member 'WBP_DialogueMinimal_C_AudioNavigation::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature \ +static_assert(alignof(WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong size on WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature, InVisibility) == 0x000000, "Member 'WBP_DialogueMinimal_C_BndEvt__WBP_DialogueMinimal_Option1_K2Node_ComponentBoundEvent_0_OnVisibilityChangedEvent__DelegateSignature::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_CustomEvent \ +static_assert(alignof(WBP_DialogueMinimal_C_CustomEvent) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_CustomEvent"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_CustomEvent) == 0x000008, "Wrong size on WBP_DialogueMinimal_C_CustomEvent"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_CustomEvent, Button) == 0x000000, "Member 'WBP_DialogueMinimal_C_CustomEvent::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal \ +static_assert(alignof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal) == 0x000230, "Wrong size on WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, EntryPoint) == 0x000000, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_AsWBP_Dialogue_Button) == 0x000028, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_AsWBP_Dialogue_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_2) == 0x000034, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000048, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_3) == 0x000050, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_4) == 0x000060, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue) == 0x000070, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_5) == 0x000078, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_SwitchEnum_CmpSuccess) == 0x000088, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue_1) == 0x000090, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_6) == 0x000098, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, Temp_int_Array_Index_Variable) == 0x0000A8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000AC, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetProperty_ReturnValue) == 0x0000BC, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x0000C0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_ComponentBoundEvent_InVisibility) == 0x0000C8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_ComponentBoundEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_bNewInputType) == 0x0000C9, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetProperty_ReturnValue_1) == 0x0000CA, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000CC, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_ActiveChoices) == 0x0000DC, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_ActiveChoices' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetAllChildren_ReturnValue) == 0x0000E0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_Button_2) == 0x0000F0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_Array_Get_Item) == 0x0000F8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_AsWBP_Dialogue_Button_1) == 0x000100, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_AsWBP_Dialogue_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_bSuccess_1) == 0x000108, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_Array_Length_ReturnValue) == 0x00010C, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_Button_1) == 0x000110, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_AsWBP_Dialogue_Button_2) == 0x000118, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_AsWBP_Dialogue_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_bSuccess_2) == 0x000120, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_Event_InChoiceIndex) == 0x000124, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_Event_InChoiceIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_SwitchInteger_CmpSuccess) == 0x000128, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_InVisibility) == 0x000129, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetHud_ReturnValue) == 0x000130, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_AsWrestler_HUD) == 0x000138, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_AsWrestler_HUD' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_DynamicCast_bSuccess_3) == 0x000140, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_bInPaused) == 0x000141, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_9) == 0x000144, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetProperty_ReturnValue_2) == 0x000154, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_10) == 0x000158, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_Event_MyGeometry) == 0x000168, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_Event_InDeltaTime) == 0x0001A0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_HasFocusedDescendants_ReturnValue) == 0x0001A4, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_HasFocusedDescendants_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetPlayerController_ReturnValue) == 0x0001A8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_IsGamePaused_ReturnValue) == 0x0001B0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_IsGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetDesiredSize_ReturnValue) == 0x0001B8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetDesiredSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_Event_Text) == 0x0001C8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_Event_Text' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_Event_WavLengthSeconds) == 0x0001D8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_Event_WavLengthSeconds' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, Temp_int_Loop_Counter_Variable) == 0x0001DC, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_Less_IntInt_ReturnValue) == 0x0001E0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_Add_IntInt_ReturnValue) == 0x0001E4, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CustomEvent_Button) == 0x0001E8, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CustomEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetProperty_ReturnValue_3) == 0x0001F0, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, K2Node_CreateDelegate_OutputDelegate_11) == 0x0001F4, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_IsEditor_ReturnValue) == 0x000204, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_IsEditor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_GetDesiredSize_ReturnValue_1) == 0x000208, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_GetDesiredSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000218, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_SetDialogueTextStyle_Alpha_ImplicitCast) == 0x000220, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_SetDialogueTextStyle_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal, CallFunc_SetStoryText_TotalTime_ImplicitCast) == 0x000228, "Member 'WBP_DialogueMinimal_C_ExecuteUbergraph_WBP_DialogueMinimal::CallFunc_SetStoryText_TotalTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_GamePauseStateChanged \ +static_assert(alignof(WBP_DialogueMinimal_C_GamePauseStateChanged) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_GamePauseStateChanged"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_GamePauseStateChanged) == 0x000001, "Wrong size on WBP_DialogueMinimal_C_GamePauseStateChanged"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_GamePauseStateChanged, bInPaused) == 0x000000, "Member 'WBP_DialogueMinimal_C_GamePauseStateChanged::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_HandleOnInputChange \ +static_assert(alignof(WBP_DialogueMinimal_C_HandleOnInputChange) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_HandleOnInputChange"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_HandleOnInputChange) == 0x000002, "Wrong size on WBP_DialogueMinimal_C_HandleOnInputChange"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_HandleOnInputChange, Selection) == 0x000000, "Member 'WBP_DialogueMinimal_C_HandleOnInputChange::Selection' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_HandleOnInputChange, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_DialogueMinimal_C_HandleOnInputChange::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_InitiDialogueWidget \ +static_assert(alignof(WBP_DialogueMinimal_C_InitiDialogueWidget) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_InitiDialogueWidget"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_InitiDialogueWidget) == 0x000020, "Wrong size on WBP_DialogueMinimal_C_InitiDialogueWidget"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_InitiDialogueWidget, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000000, "Member 'WBP_DialogueMinimal_C_InitiDialogueWidget::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_InitiDialogueWidget, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'WBP_DialogueMinimal_C_InitiDialogueWidget::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_InitiDialogueWidget, CallFunc_GetCurrentInputType_ReturnValue) == 0x00000C, "Member 'WBP_DialogueMinimal_C_InitiDialogueWidget::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_InitiDialogueWidget, CallFunc_GetProperty_ReturnValue_1) == 0x000010, "Member 'WBP_DialogueMinimal_C_InitiDialogueWidget::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_InitiDialogueWidget, CallFunc_SetDialogueTextStyle_Alpha_ImplicitCast) == 0x000018, "Member 'WBP_DialogueMinimal_C_InitiDialogueWidget::CallFunc_SetDialogueTextStyle_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnButtonFocused \ +static_assert(alignof(WBP_DialogueMinimal_C_OnButtonFocused) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_OnButtonFocused"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnButtonFocused) == 0x000008, "Wrong size on WBP_DialogueMinimal_C_OnButtonFocused"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnButtonFocused, Button) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnButtonFocused::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnButtonUnfocused \ +static_assert(alignof(WBP_DialogueMinimal_C_OnButtonUnfocused) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_OnButtonUnfocused"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnButtonUnfocused) == 0x000008, "Wrong size on WBP_DialogueMinimal_C_OnButtonUnfocused"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnButtonUnfocused, Button) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnButtonUnfocused::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnChoiceClickedAnimation \ +static_assert(alignof(WBP_DialogueMinimal_C_OnChoiceClickedAnimation) == 0x000004, "Wrong alignment on WBP_DialogueMinimal_C_OnChoiceClickedAnimation"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnChoiceClickedAnimation) == 0x000004, "Wrong size on WBP_DialogueMinimal_C_OnChoiceClickedAnimation"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnChoiceClickedAnimation, InChoiceIndex) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnChoiceClickedAnimation::InChoiceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnChoicesActivated \ +static_assert(alignof(WBP_DialogueMinimal_C_OnChoicesActivated) == 0x000004, "Wrong alignment on WBP_DialogueMinimal_C_OnChoicesActivated"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnChoicesActivated) == 0x000004, "Wrong size on WBP_DialogueMinimal_C_OnChoicesActivated"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnChoicesActivated, ActiveChoices) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnChoicesActivated::ActiveChoices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnInputChanged_Event \ +static_assert(alignof(WBP_DialogueMinimal_C_OnInputChanged_Event) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_OnInputChanged_Event"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnInputChanged_Event) == 0x000001, "Wrong size on WBP_DialogueMinimal_C_OnInputChanged_Event"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnInputChanged_Event, bNewInputType) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnInputChanged_Event::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnKeyDown \ +static_assert(alignof(WBP_DialogueMinimal_C_OnKeyDown) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_OnKeyDown"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnKeyDown) == 0x0003A8, "Wrong size on WBP_DialogueMinimal_C_OnKeyDown"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, MyGeometry) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, InKeyEvent) == 0x000038, "Member 'WBP_DialogueMinimal_C_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, ReturnValue) == 0x000078, "Member 'WBP_DialogueMinimal_C_OnKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_GetKey_ReturnValue) == 0x000130, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000148, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_GetChildIndex_ReturnValue) == 0x00014C, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_GetChildIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_Add_IntInt_ReturnValue) == 0x000150, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_Subtract_IntInt_ReturnValue) == 0x000154, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000158, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_2) == 0x000159, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_3) == 0x00015A, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_4) == 0x00015B, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_5) == 0x00015C, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_6) == 0x00015D, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_Unhandled_ReturnValue) == 0x000160, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_Unhandled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_Unhandled_ReturnValue_1) == 0x000218, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_Unhandled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, K2Node_DynamicCast_AsWBP_Dialogue_Button) == 0x0002D0, "Member 'WBP_DialogueMinimal_C_OnKeyDown::K2Node_DynamicCast_AsWBP_Dialogue_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, K2Node_DynamicCast_bSuccess) == 0x0002D8, "Member 'WBP_DialogueMinimal_C_OnKeyDown::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_IsVisible_ReturnValue) == 0x0002D9, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_IsVisible_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_IsVisible_ReturnValue_1) == 0x0002DA, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_IsVisible_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_IsVisible_ReturnValue_2) == 0x0002DB, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_IsVisible_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_IsVisible_ReturnValue_3) == 0x0002DC, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_IsVisible_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, CallFunc_Handled_ReturnValue) == 0x0002E0, "Member 'WBP_DialogueMinimal_C_OnKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnKeyDown, Temp_delegate_Variable) == 0x000398, "Member 'WBP_DialogueMinimal_C_OnKeyDown::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_OnVisibilityChanged_Event \ +static_assert(alignof(WBP_DialogueMinimal_C_OnVisibilityChanged_Event) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_OnVisibilityChanged_Event"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_OnVisibilityChanged_Event) == 0x000001, "Wrong size on WBP_DialogueMinimal_C_OnVisibilityChanged_Event"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_OnVisibilityChanged_Event, InVisibility) == 0x000000, "Member 'WBP_DialogueMinimal_C_OnVisibilityChanged_Event::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_ReceiveOnSetStoryText \ +static_assert(alignof(WBP_DialogueMinimal_C_ReceiveOnSetStoryText) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_ReceiveOnSetStoryText"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_ReceiveOnSetStoryText) == 0x000018, "Wrong size on WBP_DialogueMinimal_C_ReceiveOnSetStoryText"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ReceiveOnSetStoryText, Text) == 0x000000, "Member 'WBP_DialogueMinimal_C_ReceiveOnSetStoryText::Text' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ReceiveOnSetStoryText, WavLengthSeconds) == 0x000010, "Member 'WBP_DialogueMinimal_C_ReceiveOnSetStoryText::WavLengthSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_RecoverFocusLost \ +static_assert(alignof(WBP_DialogueMinimal_C_RecoverFocusLost) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_RecoverFocusLost"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_RecoverFocusLost) == 0x000020, "Wrong size on WBP_DialogueMinimal_C_RecoverFocusLost"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_RecoverFocusLost, NewLocalVar) == 0x000000, "Member 'WBP_DialogueMinimal_C_RecoverFocusLost::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_RecoverFocusLost, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000010, "Member 'WBP_DialogueMinimal_C_RecoverFocusLost::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_RecoverFocusLost, CallFunc_GetCurrentInputType_ReturnValue) == 0x000018, "Member 'WBP_DialogueMinimal_C_RecoverFocusLost::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_RecoverFocusLost, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'WBP_DialogueMinimal_C_RecoverFocusLost::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_RecoverFocusLost, K2Node_SwitchEnum_CmpSuccess) == 0x00001A, "Member 'WBP_DialogueMinimal_C_RecoverFocusLost::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_ReleaseFocus \ +static_assert(alignof(WBP_DialogueMinimal_C_ReleaseFocus) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_ReleaseFocus"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_ReleaseFocus) == 0x000008, "Wrong size on WBP_DialogueMinimal_C_ReleaseFocus"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ReleaseFocus, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'WBP_DialogueMinimal_C_ReleaseFocus::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_SelectDialogueOptionByIndex \ +static_assert(alignof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_SelectDialogueOptionByIndex"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex) == 0x000050, "Wrong size on WBP_DialogueMinimal_C_SelectDialogueOptionByIndex"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, Index_0) == 0x000000, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_GetAllChildren_ReturnValue) == 0x000018, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_Array_Get_Item) == 0x000030, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, K2Node_DynamicCast_AsHera_Dialogue_Button) == 0x000040, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::K2Node_DynamicCast_AsHera_Dialogue_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByIndex, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByIndex::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_SelectDialogueOptionByName \ +static_assert(alignof(WBP_DialogueMinimal_C_SelectDialogueOptionByName) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_SelectDialogueOptionByName"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_SelectDialogueOptionByName) == 0x000070, "Wrong size on WBP_DialogueMinimal_C_SelectDialogueOptionByName"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, OptionName) == 0x000000, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::OptionName' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_GetAllChildren_ReturnValue) == 0x000020, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, K2Node_DynamicCast_AsWBP_Dialogue_Button) == 0x000048, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::K2Node_DynamicCast_AsWBP_Dialogue_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_GetObjectName_ReturnValue) == 0x000058, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_GetObjectName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SelectDialogueOptionByName, CallFunc_EqualEqual_StriStri_ReturnValue) == 0x000068, "Member 'WBP_DialogueMinimal_C_SelectDialogueOptionByName::CallFunc_EqualEqual_StriStri_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_SetNameSize \ +static_assert(alignof(WBP_DialogueMinimal_C_SetNameSize) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_SetNameSize"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_SetNameSize) == 0x000018, "Wrong size on WBP_DialogueMinimal_C_SetNameSize"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetNameSize, Size) == 0x000000, "Member 'WBP_DialogueMinimal_C_SetNameSize::Size' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetNameSize, K2Node_SwitchInteger_CmpSuccess) == 0x000004, "Member 'WBP_DialogueMinimal_C_SetNameSize::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetNameSize, K2Node_DynamicCast_AsCommon_Text) == 0x000008, "Member 'WBP_DialogueMinimal_C_SetNameSize::K2Node_DynamicCast_AsCommon_Text' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetNameSize, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_DialogueMinimal_C_SetNameSize::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_SetWidgetOptionFocus \ +static_assert(alignof(WBP_DialogueMinimal_C_SetWidgetOptionFocus) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_SetWidgetOptionFocus"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_SetWidgetOptionFocus) == 0x000030, "Wrong size on WBP_DialogueMinimal_C_SetWidgetOptionFocus"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000000, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_GetCurrentInputType_ReturnValue) == 0x000010, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, K2Node_SwitchEnum_CmpSuccess) == 0x000011, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_GetPlayerController_ReturnValue_1) == 0x000018, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_DoesStoryNeedFocus_ReturnValue) == 0x000020, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_DoesStoryNeedFocus_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SetWidgetOptionFocus, CallFunc_GetLocalPlayerSubsystem_ReturnValue_1) == 0x000028, "Member 'WBP_DialogueMinimal_C_SetWidgetOptionFocus::CallFunc_GetLocalPlayerSubsystem_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_SwitchDPadIcon \ +static_assert(alignof(WBP_DialogueMinimal_C_SwitchDPadIcon) == 0x000004, "Wrong alignment on WBP_DialogueMinimal_C_SwitchDPadIcon"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_SwitchDPadIcon) == 0x000008, "Wrong size on WBP_DialogueMinimal_C_SwitchDPadIcon"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SwitchDPadIcon, InIndex) == 0x000000, "Member 'WBP_DialogueMinimal_C_SwitchDPadIcon::InIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SwitchDPadIcon, bShortcutController) == 0x000004, "Member 'WBP_DialogueMinimal_C_SwitchDPadIcon::bShortcutController' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SwitchDPadIcon, K2Node_SwitchInteger_CmpSuccess) == 0x000005, "Member 'WBP_DialogueMinimal_C_SwitchDPadIcon::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_SwitchDPadIcon, K2Node_SwitchInteger_CmpSuccess_1) == 0x000006, "Member 'WBP_DialogueMinimal_C_SwitchDPadIcon::K2Node_SwitchInteger_CmpSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_Tick \ +static_assert(alignof(WBP_DialogueMinimal_C_Tick) == 0x000004, "Wrong alignment on WBP_DialogueMinimal_C_Tick"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_Tick) == 0x00003C, "Wrong size on WBP_DialogueMinimal_C_Tick"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_DialogueMinimal_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_DialogueMinimal_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_Toggle_Visibility \ +static_assert(alignof(WBP_DialogueMinimal_C_Toggle_Visibility) == 0x000008, "Wrong alignment on WBP_DialogueMinimal_C_Toggle_Visibility"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_Toggle_Visibility) == 0x000058, "Wrong size on WBP_DialogueMinimal_C_Toggle_Visibility"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, InStatus) == 0x000000, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::InStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_GetAllChildren_ReturnValue) == 0x000020, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Array_Get_Item_1) == 0x000048, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Array_Length_ReturnValue_1) == 0x000050, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_Toggle_Visibility, CallFunc_Less_IntInt_ReturnValue_1) == 0x000054, "Member 'WBP_DialogueMinimal_C_Toggle_Visibility::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueMinimal_C_ToggleSubtitles \ +static_assert(alignof(WBP_DialogueMinimal_C_ToggleSubtitles) == 0x000001, "Wrong alignment on WBP_DialogueMinimal_C_ToggleSubtitles"); \ +static_assert(sizeof(WBP_DialogueMinimal_C_ToggleSubtitles) == 0x000002, "Wrong size on WBP_DialogueMinimal_C_ToggleSubtitles"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ToggleSubtitles, InProperty) == 0x000000, "Member 'WBP_DialogueMinimal_C_ToggleSubtitles::InProperty' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueMinimal_C_ToggleSubtitles, CallFunc_GetVisibility_ReturnValue) == 0x000001, "Member 'WBP_DialogueMinimal_C_ToggleSubtitles::CallFunc_GetVisibility_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DialogueMinimal_C \ +static_assert(alignof(UWBP_DialogueMinimal_C) == 0x000008, "Wrong alignment on UWBP_DialogueMinimal_C"); \ +static_assert(sizeof(UWBP_DialogueMinimal_C) == 0x000440, "Wrong size on UWBP_DialogueMinimal_C"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, UberGraphFrame) == 0x000370, "Member 'UWBP_DialogueMinimal_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ArrowDown) == 0x000378, "Member 'UWBP_DialogueMinimal_C::ArrowDown' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ArrowLeft) == 0x000380, "Member 'UWBP_DialogueMinimal_C::ArrowLeft' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ArrowOverlay) == 0x000388, "Member 'UWBP_DialogueMinimal_C::ArrowOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ArrowRight) == 0x000390, "Member 'UWBP_DialogueMinimal_C::ArrowRight' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ArrowUp) == 0x000398, "Member 'UWBP_DialogueMinimal_C::ArrowUp' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ButtonsContainer) == 0x0003A0, "Member 'UWBP_DialogueMinimal_C::ButtonsContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ButtonsContainer_Controller) == 0x0003A8, "Member 'UWBP_DialogueMinimal_C::ButtonsContainer_Controller' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, DialogueText) == 0x0003B0, "Member 'UWBP_DialogueMinimal_C::DialogueText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, DialogueTextContainer) == 0x0003B8, "Member 'UWBP_DialogueMinimal_C::DialogueTextContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, DividerLine) == 0x0003C0, "Member 'UWBP_DialogueMinimal_C::DividerLine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, DpadIcon) == 0x0003C8, "Member 'UWBP_DialogueMinimal_C::DpadIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option1) == 0x0003D0, "Member 'UWBP_DialogueMinimal_C::Option1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option1_C) == 0x0003D8, "Member 'UWBP_DialogueMinimal_C::Option1_C' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option2) == 0x0003E0, "Member 'UWBP_DialogueMinimal_C::Option2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option2_C) == 0x0003E8, "Member 'UWBP_DialogueMinimal_C::Option2_C' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option3) == 0x0003F0, "Member 'UWBP_DialogueMinimal_C::Option3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option3_C) == 0x0003F8, "Member 'UWBP_DialogueMinimal_C::Option3_C' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option4) == 0x000400, "Member 'UWBP_DialogueMinimal_C::Option4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, Option4_C) == 0x000408, "Member 'UWBP_DialogueMinimal_C::Option4_C' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, SubtitlesOverlay) == 0x000410, "Member 'UWBP_DialogueMinimal_C::SubtitlesOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, TextBg) == 0x000418, "Member 'UWBP_DialogueMinimal_C::TextBg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, TextSizeProperty) == 0x000420, "Member 'UWBP_DialogueMinimal_C::TextSizeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, LastFocusedWidget) == 0x000428, "Member 'UWBP_DialogueMinimal_C::LastFocusedWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, BackgroundAlphaProperty) == 0x000430, "Member 'UWBP_DialogueMinimal_C::BackgroundAlphaProperty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ShouldRestoreMouseCursorOnUnpause) == 0x000438, "Member 'UWBP_DialogueMinimal_C::ShouldRestoreMouseCursorOnUnpause' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ControlerAnimPlaying) == 0x000439, "Member 'UWBP_DialogueMinimal_C::ControlerAnimPlaying' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, PreviousVisibility) == 0x00043A, "Member 'UWBP_DialogueMinimal_C::PreviousVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueMinimal_C, ChoicesAlreadyActive) == 0x00043B, "Member 'UWBP_DialogueMinimal_C::ChoicesAlreadyActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAchievementEntry \ +static_assert(alignof(FHeraAchievementEntry) == 0x000008, "Wrong alignment on FHeraAchievementEntry"); \ +static_assert(sizeof(FHeraAchievementEntry) == 0x000060, "Wrong size on FHeraAchievementEntry"); \ +static_assert(offsetof(FHeraAchievementEntry, SteamAchievementID) == 0x000000, "Member 'FHeraAchievementEntry::SteamAchievementID' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, PSAchievementID) == 0x000008, "Member 'FHeraAchievementEntry::PSAchievementID' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, XSXAchievementID) == 0x000010, "Member 'FHeraAchievementEntry::XSXAchievementID' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, EpicAchievementID) == 0x000018, "Member 'FHeraAchievementEntry::EpicAchievementID' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, AchievementType) == 0x000020, "Member 'FHeraAchievementEntry::AchievementType' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, bAchievementCanBeLocked) == 0x000024, "Member 'FHeraAchievementEntry::bAchievementCanBeLocked' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, ProgressiveGoal) == 0x000028, "Member 'FHeraAchievementEntry::ProgressiveGoal' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, Rule) == 0x000030, "Member 'FHeraAchievementEntry::Rule' has a wrong offset!"); \ +static_assert(offsetof(FHeraAchievementEntry, TriggerOnRulePassCount) == 0x000058, "Member 'FHeraAchievementEntry::TriggerOnRulePassCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAchievementsReconciler \ +static_assert(alignof(UHeraAchievementsReconciler) == 0x000008, "Wrong alignment on UHeraAchievementsReconciler"); \ +static_assert(sizeof(UHeraAchievementsReconciler) == 0x000118, "Wrong size on UHeraAchievementsReconciler"); \ +static_assert(offsetof(UHeraAchievementsReconciler, GeneriIDToPlatformIDLookUpMap) == 0x000028, "Member 'UHeraAchievementsReconciler::GeneriIDToPlatformIDLookUpMap' has a wrong offset!"); \ +static_assert(offsetof(UHeraAchievementsReconciler, PlatformIDToGenericIDLookUpMap) == 0x000078, "Member 'UHeraAchievementsReconciler::PlatformIDToGenericIDLookUpMap' has a wrong offset!"); \ +static_assert(offsetof(UHeraAchievementsReconciler, ProgressiveGoal) == 0x0000C8, "Member 'UHeraAchievementsReconciler::ProgressiveGoal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAchievementsSettings \ +static_assert(alignof(UHeraAchievementsSettings) == 0x000008, "Wrong alignment on UHeraAchievementsSettings"); \ +static_assert(sizeof(UHeraAchievementsSettings) == 0x0000B0, "Wrong size on UHeraAchievementsSettings"); \ +static_assert(offsetof(UHeraAchievementsSettings, Achievements) == 0x000038, "Member 'UHeraAchievementsSettings::Achievements' has a wrong offset!"); \ +static_assert(offsetof(UHeraAchievementsSettings, bLockAchievements) == 0x000088, "Member 'UHeraAchievementsSettings::bLockAchievements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAchievementsSubsystem_GetAchievementsNameList \ +static_assert(alignof(HeraAchievementsSubsystem_GetAchievementsNameList) == 0x000008, "Wrong alignment on HeraAchievementsSubsystem_GetAchievementsNameList"); \ +static_assert(sizeof(HeraAchievementsSubsystem_GetAchievementsNameList) == 0x000010, "Wrong size on HeraAchievementsSubsystem_GetAchievementsNameList"); \ +static_assert(offsetof(HeraAchievementsSubsystem_GetAchievementsNameList, OutNameList) == 0x000000, "Member 'HeraAchievementsSubsystem_GetAchievementsNameList::OutNameList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAchievementsSubsystem_UpdateAchievement \ +static_assert(alignof(HeraAchievementsSubsystem_UpdateAchievement) == 0x000008, "Wrong alignment on HeraAchievementsSubsystem_UpdateAchievement"); \ +static_assert(sizeof(HeraAchievementsSubsystem_UpdateAchievement) == 0x000020, "Wrong size on HeraAchievementsSubsystem_UpdateAchievement"); \ +static_assert(offsetof(HeraAchievementsSubsystem_UpdateAchievement, InAchievementName) == 0x000000, "Member 'HeraAchievementsSubsystem_UpdateAchievement::InAchievementName' has a wrong offset!"); \ +static_assert(offsetof(HeraAchievementsSubsystem_UpdateAchievement, InProgressAmount) == 0x000008, "Member 'HeraAchievementsSubsystem_UpdateAchievement::InProgressAmount' has a wrong offset!"); \ +static_assert(offsetof(HeraAchievementsSubsystem_UpdateAchievement, InPlayerController) == 0x000010, "Member 'HeraAchievementsSubsystem_UpdateAchievement::InPlayerController' has a wrong offset!"); \ +static_assert(offsetof(HeraAchievementsSubsystem_UpdateAchievement, InSetProgress) == 0x000018, "Member 'HeraAchievementsSubsystem_UpdateAchievement::InSetProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAchievementsSubsystem_GetAchievementProgress \ +static_assert(alignof(HeraAchievementsSubsystem_GetAchievementProgress) == 0x000004, "Wrong alignment on HeraAchievementsSubsystem_GetAchievementProgress"); \ +static_assert(sizeof(HeraAchievementsSubsystem_GetAchievementProgress) == 0x000010, "Wrong size on HeraAchievementsSubsystem_GetAchievementProgress"); \ +static_assert(offsetof(HeraAchievementsSubsystem_GetAchievementProgress, InAchievementName) == 0x000000, "Member 'HeraAchievementsSubsystem_GetAchievementProgress::InAchievementName' has a wrong offset!"); \ +static_assert(offsetof(HeraAchievementsSubsystem_GetAchievementProgress, Progress) == 0x000008, "Member 'HeraAchievementsSubsystem_GetAchievementProgress::Progress' has a wrong offset!"); \ +static_assert(offsetof(HeraAchievementsSubsystem_GetAchievementProgress, IsUnlocked) == 0x00000C, "Member 'HeraAchievementsSubsystem_GetAchievementProgress::IsUnlocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAchievementsSubsystem \ +static_assert(alignof(UHeraAchievementsSubsystem) == 0x000008, "Wrong alignment on UHeraAchievementsSubsystem"); \ +static_assert(sizeof(UHeraAchievementsSubsystem) == 0x000148, "Wrong size on UHeraAchievementsSubsystem"); \ +static_assert(offsetof(UHeraAchievementsSubsystem, ProgressionReconciler) == 0x000140, "Member 'UHeraAchievementsSubsystem::ProgressionReconciler' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonLoadingScreenFadeSettings \ +static_assert(alignof(FCommonLoadingScreenFadeSettings) == 0x000004, "Wrong alignment on FCommonLoadingScreenFadeSettings"); \ +static_assert(sizeof(FCommonLoadingScreenFadeSettings) == 0x000008, "Wrong size on FCommonLoadingScreenFadeSettings"); \ +static_assert(offsetof(FCommonLoadingScreenFadeSettings, bEnabled) == 0x000000, "Member 'FCommonLoadingScreenFadeSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenFadeSettings, Duration) == 0x000004, "Member 'FCommonLoadingScreenFadeSettings::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonLoadingScreenPresetAttributes \ +static_assert(alignof(FCommonLoadingScreenPresetAttributes) == 0x000008, "Wrong alignment on FCommonLoadingScreenPresetAttributes"); \ +static_assert(sizeof(FCommonLoadingScreenPresetAttributes) == 0x000050, "Wrong size on FCommonLoadingScreenPresetAttributes"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, BackgroundColour) == 0x000000, "Member 'FCommonLoadingScreenPresetAttributes::BackgroundColour' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, BackgroundImage) == 0x000010, "Member 'FCommonLoadingScreenPresetAttributes::BackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, bShowTooltips) == 0x000038, "Member 'FCommonLoadingScreenPresetAttributes::bShowTooltips' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, PostBeginPlayLoadingScreenDuration) == 0x00003C, "Member 'FCommonLoadingScreenPresetAttributes::PostBeginPlayLoadingScreenDuration' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, PreLoadFade) == 0x000040, "Member 'FCommonLoadingScreenPresetAttributes::PreLoadFade' has a wrong offset!"); \ +static_assert(offsetof(FCommonLoadingScreenPresetAttributes, PostLoadFade) == 0x000048, "Member 'FCommonLoadingScreenPresetAttributes::PostLoadFade' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonLoadingScreenPreset \ +static_assert(alignof(UCommonLoadingScreenPreset) == 0x000008, "Wrong alignment on UCommonLoadingScreenPreset"); \ +static_assert(sizeof(UCommonLoadingScreenPreset) == 0x000080, "Wrong size on UCommonLoadingScreenPreset"); \ +static_assert(offsetof(UCommonLoadingScreenPreset, Attributes) == 0x000030, "Member 'UCommonLoadingScreenPreset::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadingScreenWidget_SetInfoTag \ +static_assert(alignof(CommonLoadingScreenWidget_SetInfoTag) == 0x000004, "Wrong alignment on CommonLoadingScreenWidget_SetInfoTag"); \ +static_assert(sizeof(CommonLoadingScreenWidget_SetInfoTag) == 0x00000C, "Wrong size on CommonLoadingScreenWidget_SetInfoTag"); \ +static_assert(offsetof(CommonLoadingScreenWidget_SetInfoTag, InfoTag) == 0x000000, "Member 'CommonLoadingScreenWidget_SetInfoTag::InfoTag' has a wrong offset!"); \ +static_assert(offsetof(CommonLoadingScreenWidget_SetInfoTag, InShownCount) == 0x000008, "Member 'CommonLoadingScreenWidget_SetInfoTag::InShownCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonLoadingScreenWidget_SetInfoTagVisibility \ +static_assert(alignof(CommonLoadingScreenWidget_SetInfoTagVisibility) == 0x000001, "Wrong alignment on CommonLoadingScreenWidget_SetInfoTagVisibility"); \ +static_assert(sizeof(CommonLoadingScreenWidget_SetInfoTagVisibility) == 0x000001, "Wrong size on CommonLoadingScreenWidget_SetInfoTagVisibility"); \ +static_assert(offsetof(CommonLoadingScreenWidget_SetInfoTagVisibility, bVisible) == 0x000000, "Member 'CommonLoadingScreenWidget_SetInfoTagVisibility::bVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonLoadingScreenWidget \ +static_assert(alignof(UCommonLoadingScreenWidget) == 0x000008, "Wrong alignment on UCommonLoadingScreenWidget"); \ +static_assert(sizeof(UCommonLoadingScreenWidget) == 0x0002C8, "Wrong size on UCommonLoadingScreenWidget"); \ +static_assert(offsetof(UCommonLoadingScreenWidget, BackgroundImage) == 0x0002C0, "Member 'UCommonLoadingScreenWidget::BackgroundImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ILoadingProcessInterface \ +static_assert(alignof(ILoadingProcessInterface) == 0x000001, "Wrong alignment on ILoadingProcessInterface"); \ +static_assert(sizeof(ILoadingProcessInterface) == 0x000001, "Wrong size on ILoadingProcessInterface"); \ + +#define DUMPER7_ASSERTS_UCommonLoadingScreenSettings \ +static_assert(alignof(UCommonLoadingScreenSettings) == 0x000008, "Wrong alignment on UCommonLoadingScreenSettings"); \ +static_assert(sizeof(UCommonLoadingScreenSettings) == 0x000070, "Wrong size on UCommonLoadingScreenSettings"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, LoadingScreenWidget) == 0x000038, "Member 'UCommonLoadingScreenSettings::LoadingScreenWidget' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, LoadingScreenZOrder) == 0x000058, "Member 'UCommonLoadingScreenSettings::LoadingScreenZOrder' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, MinimumLoadingScreenDuration) == 0x00005C, "Member 'UCommonLoadingScreenSettings::MinimumLoadingScreenDuration' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, HoldLoadingScreenAdditionalSecs) == 0x000060, "Member 'UCommonLoadingScreenSettings::HoldLoadingScreenAdditionalSecs' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, LoadingScreenHeartbeatHangDuration) == 0x000064, "Member 'UCommonLoadingScreenSettings::LoadingScreenHeartbeatHangDuration' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, LogLoadingScreenHeartbeatInterval) == 0x000068, "Member 'UCommonLoadingScreenSettings::LogLoadingScreenHeartbeatInterval' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, LogLoadingScreenReasonEveryFrame) == 0x00006C, "Member 'UCommonLoadingScreenSettings::LogLoadingScreenReasonEveryFrame' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, ForceLoadingScreenVisible) == 0x00006D, "Member 'UCommonLoadingScreenSettings::ForceLoadingScreenVisible' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, HoldLoadingScreenAdditionalSecsEvenInEditor) == 0x00006E, "Member 'UCommonLoadingScreenSettings::HoldLoadingScreenAdditionalSecsEvenInEditor' has a wrong offset!"); \ +static_assert(offsetof(UCommonLoadingScreenSettings, ForceTickLoadingScreenEvenInEditor) == 0x00006F, "Member 'UCommonLoadingScreenSettings::ForceTickLoadingScreenEvenInEditor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingScreenManager_SetLoadingPreset \ +static_assert(alignof(LoadingScreenManager_SetLoadingPreset) == 0x000008, "Wrong alignment on LoadingScreenManager_SetLoadingPreset"); \ +static_assert(sizeof(LoadingScreenManager_SetLoadingPreset) == 0x000008, "Wrong size on LoadingScreenManager_SetLoadingPreset"); \ +static_assert(offsetof(LoadingScreenManager_SetLoadingPreset, InLoadingScreenPreset) == 0x000000, "Member 'LoadingScreenManager_SetLoadingPreset::InLoadingScreenPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen \ +static_assert(alignof(LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen) == 0x000008, "Wrong alignment on LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen"); \ +static_assert(sizeof(LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen) == 0x000010, "Wrong size on LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen"); \ +static_assert(offsetof(LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen, ReturnValue) == 0x000000, "Member 'LoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingScreenManager_GetInfoTag \ +static_assert(alignof(LoadingScreenManager_GetInfoTag) == 0x000004, "Wrong alignment on LoadingScreenManager_GetInfoTag"); \ +static_assert(sizeof(LoadingScreenManager_GetInfoTag) == 0x000008, "Wrong size on LoadingScreenManager_GetInfoTag"); \ +static_assert(offsetof(LoadingScreenManager_GetInfoTag, ReturnValue) == 0x000000, "Member 'LoadingScreenManager_GetInfoTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingScreenManager_GetLoadingScreenDisplayStatus \ +static_assert(alignof(LoadingScreenManager_GetLoadingScreenDisplayStatus) == 0x000001, "Wrong alignment on LoadingScreenManager_GetLoadingScreenDisplayStatus"); \ +static_assert(sizeof(LoadingScreenManager_GetLoadingScreenDisplayStatus) == 0x000001, "Wrong size on LoadingScreenManager_GetLoadingScreenDisplayStatus"); \ +static_assert(offsetof(LoadingScreenManager_GetLoadingScreenDisplayStatus, ReturnValue) == 0x000000, "Member 'LoadingScreenManager_GetLoadingScreenDisplayStatus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoadingScreenManager \ +static_assert(alignof(ULoadingScreenManager) == 0x000008, "Wrong alignment on ULoadingScreenManager"); \ +static_assert(sizeof(ULoadingScreenManager) == 0x000178, "Wrong size on ULoadingScreenManager"); \ +static_assert(offsetof(ULoadingScreenManager, bIsNewGameLoading) == 0x000038, "Member 'ULoadingScreenManager::bIsNewGameLoading' has a wrong offset!"); \ +static_assert(offsetof(ULoadingScreenManager, LoadingScreenVisibilityChanged) == 0x000040, "Member 'ULoadingScreenManager::LoadingScreenVisibilityChanged' has a wrong offset!"); \ +static_assert(offsetof(ULoadingScreenManager, InfoTag) == 0x000120, "Member 'ULoadingScreenManager::InfoTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingProcessTask_CreateLoadingScreenProcessTask \ +static_assert(alignof(LoadingProcessTask_CreateLoadingScreenProcessTask) == 0x000008, "Wrong alignment on LoadingProcessTask_CreateLoadingScreenProcessTask"); \ +static_assert(sizeof(LoadingProcessTask_CreateLoadingScreenProcessTask) == 0x000020, "Wrong size on LoadingProcessTask_CreateLoadingScreenProcessTask"); \ +static_assert(offsetof(LoadingProcessTask_CreateLoadingScreenProcessTask, WorldContextObject) == 0x000000, "Member 'LoadingProcessTask_CreateLoadingScreenProcessTask::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LoadingProcessTask_CreateLoadingScreenProcessTask, ShowLoadingScreenReason) == 0x000008, "Member 'LoadingProcessTask_CreateLoadingScreenProcessTask::ShowLoadingScreenReason' has a wrong offset!"); \ +static_assert(offsetof(LoadingProcessTask_CreateLoadingScreenProcessTask, ReturnValue) == 0x000018, "Member 'LoadingProcessTask_CreateLoadingScreenProcessTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoadingProcessTask_SetShowLoadingScreenReason \ +static_assert(alignof(LoadingProcessTask_SetShowLoadingScreenReason) == 0x000008, "Wrong alignment on LoadingProcessTask_SetShowLoadingScreenReason"); \ +static_assert(sizeof(LoadingProcessTask_SetShowLoadingScreenReason) == 0x000010, "Wrong size on LoadingProcessTask_SetShowLoadingScreenReason"); \ +static_assert(offsetof(LoadingProcessTask_SetShowLoadingScreenReason, InReason) == 0x000000, "Member 'LoadingProcessTask_SetShowLoadingScreenReason::InReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoadingProcessTask \ +static_assert(alignof(ULoadingProcessTask) == 0x000008, "Wrong alignment on ULoadingProcessTask"); \ +static_assert(sizeof(ULoadingProcessTask) == 0x000040, "Wrong size on ULoadingProcessTask"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataBackReference \ +static_assert(alignof(FHeraAutomataBackReference) == 0x000008, "Wrong alignment on FHeraAutomataBackReference"); \ +static_assert(sizeof(FHeraAutomataBackReference) == 0x000028, "Wrong size on FHeraAutomataBackReference"); \ +static_assert(offsetof(FHeraAutomataBackReference, PreviousState) == 0x000000, "Member 'FHeraAutomataBackReference::PreviousState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAutomataRunningTask \ +static_assert(alignof(FAutomataRunningTask) == 0x000008, "Wrong alignment on FAutomataRunningTask"); \ +static_assert(sizeof(FAutomataRunningTask) == 0x000020, "Wrong size on FAutomataRunningTask"); \ +static_assert(offsetof(FAutomataRunningTask, IsBlockingTask) == 0x000000, "Member 'FAutomataRunningTask::IsBlockingTask' has a wrong offset!"); \ +static_assert(offsetof(FAutomataRunningTask, Task) == 0x000008, "Member 'FAutomataRunningTask::Task' has a wrong offset!"); \ +static_assert(offsetof(FAutomataRunningTask, InstanceUID) == 0x000010, "Member 'FAutomataRunningTask::InstanceUID' has a wrong offset!"); \ +static_assert(offsetof(FAutomataRunningTask, BlockingTaskFinishedObjective) == 0x000018, "Member 'FAutomataRunningTask::BlockingTaskFinishedObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraPendingAutomata \ +static_assert(alignof(FHeraPendingAutomata) == 0x000008, "Wrong alignment on FHeraPendingAutomata"); \ +static_assert(sizeof(FHeraPendingAutomata) == 0x000028, "Wrong size on FHeraPendingAutomata"); \ +static_assert(offsetof(FHeraPendingAutomata, Automata) == 0x000000, "Member 'FHeraPendingAutomata::Automata' has a wrong offset!"); \ +static_assert(offsetof(FHeraPendingAutomata, IsSubAutomata) == 0x000008, "Member 'FHeraPendingAutomata::IsSubAutomata' has a wrong offset!"); \ +static_assert(offsetof(FHeraPendingAutomata, Tag) == 0x00000C, "Member 'FHeraPendingAutomata::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataStatus \ +static_assert(alignof(FHeraAutomataStatus) == 0x000008, "Wrong alignment on FHeraAutomataStatus"); \ +static_assert(sizeof(FHeraAutomataStatus) == 0x000020, "Wrong size on FHeraAutomataStatus"); \ +static_assert(offsetof(FHeraAutomataStatus, Result) == 0x000000, "Member 'FHeraAutomataStatus::Result' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataStatus, ActiveState) == 0x000008, "Member 'FHeraAutomataStatus::ActiveState' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataStatus, DataIndex) == 0x000010, "Member 'FHeraAutomataStatus::DataIndex' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataStatus, BranchHash) == 0x000014, "Member 'FHeraAutomataStatus::BranchHash' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataStatus, HasLooped) == 0x000018, "Member 'FHeraAutomataStatus::HasLooped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataInProgress \ +static_assert(alignof(FHeraAutomataInProgress) == 0x000008, "Wrong alignment on FHeraAutomataInProgress"); \ +static_assert(sizeof(FHeraAutomataInProgress) == 0x0000F0, "Wrong size on FHeraAutomataInProgress"); \ +static_assert(offsetof(FHeraAutomataInProgress, Automata) == 0x000000, "Member 'FHeraAutomataInProgress::Automata' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, bIsSubAutomata) == 0x000008, "Member 'FHeraAutomataInProgress::bIsSubAutomata' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, Progress) == 0x000009, "Member 'FHeraAutomataInProgress::Progress' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, AutomataStatus) == 0x000010, "Member 'FHeraAutomataInProgress::AutomataStatus' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, bChanged) == 0x000030, "Member 'FHeraAutomataInProgress::bChanged' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, uid) == 0x000034, "Member 'FHeraAutomataInProgress::uid' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, LastStateExecutionCounter) == 0x000038, "Member 'FHeraAutomataInProgress::LastStateExecutionCounter' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, SubAutomataList) == 0x000040, "Member 'FHeraAutomataInProgress::SubAutomataList' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, ownerInstanceUID) == 0x000090, "Member 'FHeraAutomataInProgress::ownerInstanceUID' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, ownerSubAutomataState) == 0x000098, "Member 'FHeraAutomataInProgress::ownerSubAutomataState' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, ChildMissionInstanceUIDs) == 0x0000A0, "Member 'FHeraAutomataInProgress::ChildMissionInstanceUIDs' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, Tag) == 0x0000B0, "Member 'FHeraAutomataInProgress::Tag' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, LastDataIndex) == 0x0000B8, "Member 'FHeraAutomataInProgress::LastDataIndex' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, StartDataIndex) == 0x0000BC, "Member 'FHeraAutomataInProgress::StartDataIndex' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, lastCheckPointHit) == 0x0000C0, "Member 'FHeraAutomataInProgress::lastCheckPointHit' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, LastActiveState) == 0x0000C8, "Member 'FHeraAutomataInProgress::LastActiveState' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, LastSavedState) == 0x0000D0, "Member 'FHeraAutomataInProgress::LastSavedState' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, Objectives) == 0x0000D8, "Member 'FHeraAutomataInProgress::Objectives' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataInProgress, LoadFromState) == 0x0000E8, "Member 'FHeraAutomataInProgress::LoadFromState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataPath \ +static_assert(alignof(FHeraAutomataPath) == 0x000008, "Wrong alignment on FHeraAutomataPath"); \ +static_assert(sizeof(FHeraAutomataPath) == 0x000020, "Wrong size on FHeraAutomataPath"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataSave \ +static_assert(alignof(FHeraAutomataSave) == 0x000008, "Wrong alignment on FHeraAutomataSave"); \ +static_assert(sizeof(FHeraAutomataSave) == 0x000020, "Wrong size on FHeraAutomataSave"); \ +static_assert(offsetof(FHeraAutomataSave, AutomataList) == 0x000000, "Member 'FHeraAutomataSave::AutomataList' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataSave, Objectives) == 0x000010, "Member 'FHeraAutomataSave::Objectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraCheckpointFindMissionProperty \ +static_assert(alignof(FHeraCheckpointFindMissionProperty) == 0x000001, "Wrong alignment on FHeraCheckpointFindMissionProperty"); \ +static_assert(sizeof(FHeraCheckpointFindMissionProperty) == 0x000001, "Wrong size on FHeraCheckpointFindMissionProperty"); \ + +#define DUMPER7_ASSERTS_FHeraCheckpointNameListAttribute \ +static_assert(alignof(FHeraCheckpointNameListAttribute) == 0x000004, "Wrong alignment on FHeraCheckpointNameListAttribute"); \ +static_assert(sizeof(FHeraCheckpointNameListAttribute) == 0x000008, "Wrong size on FHeraCheckpointNameListAttribute"); \ +static_assert(offsetof(FHeraCheckpointNameListAttribute, CheckpointName) == 0x000000, "Member 'FHeraCheckpointNameListAttribute::CheckpointName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraCheckpointStartEntry \ +static_assert(alignof(FHeraCheckpointStartEntry) == 0x000008, "Wrong alignment on FHeraCheckpointStartEntry"); \ +static_assert(sizeof(FHeraCheckpointStartEntry) == 0x0000D8, "Wrong size on FHeraCheckpointStartEntry"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, CheckpointName) == 0x000000, "Member 'FHeraCheckpointStartEntry::CheckpointName' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, ActorName) == 0x000008, "Member 'FHeraCheckpointStartEntry::ActorName' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, MissionName) == 0x000010, "Member 'FHeraCheckpointStartEntry::MissionName' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, NextCheckpoint) == 0x000018, "Member 'FHeraCheckpointStartEntry::NextCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, PreviousCheckpoint) == 0x000020, "Member 'FHeraCheckpointStartEntry::PreviousCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, WorldTag) == 0x000028, "Member 'FHeraCheckpointStartEntry::WorldTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, LocationTag) == 0x000030, "Member 'FHeraCheckpointStartEntry::LocationTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, bIsInWorldPartitionedWorld) == 0x000038, "Member 'FHeraCheckpointStartEntry::bIsInWorldPartitionedWorld' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, Position) == 0x000040, "Member 'FHeraCheckpointStartEntry::Position' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, Rotation) == 0x000058, "Member 'FHeraCheckpointStartEntry::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, bRecursiveDataLayerActivation) == 0x000070, "Member 'FHeraCheckpointStartEntry::bRecursiveDataLayerActivation' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, Actor) == 0x000078, "Member 'FHeraCheckpointStartEntry::Actor' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, MissionCheckpointState) == 0x0000A0, "Member 'FHeraCheckpointStartEntry::MissionCheckpointState' has a wrong offset!"); \ +static_assert(offsetof(FHeraCheckpointStartEntry, DataLayers) == 0x0000C8, "Member 'FHeraCheckpointStartEntry::DataLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraCheckpointStartReplayInfo \ +static_assert(alignof(FHeraCheckpointStartReplayInfo) == 0x000001, "Wrong alignment on FHeraCheckpointStartReplayInfo"); \ +static_assert(sizeof(FHeraCheckpointStartReplayInfo) == 0x000001, "Wrong size on FHeraCheckpointStartReplayInfo"); \ +static_assert(offsetof(FHeraCheckpointStartReplayInfo, ReplayPolicy) == 0x000000, "Member 'FHeraCheckpointStartReplayInfo::ReplayPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRuleMappingInfo \ +static_assert(alignof(FRuleMappingInfo) == 0x000008, "Wrong alignment on FRuleMappingInfo"); \ +static_assert(sizeof(FRuleMappingInfo) == 0x000010, "Wrong size on FRuleMappingInfo"); \ +static_assert(offsetof(FRuleMappingInfo, mappedObjectives) == 0x000000, "Member 'FRuleMappingInfo::mappedObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraSequenceBinding \ +static_assert(alignof(FHeraSequenceBinding) == 0x000008, "Wrong alignment on FHeraSequenceBinding"); \ +static_assert(sizeof(FHeraSequenceBinding) == 0x000018, "Wrong size on FHeraSequenceBinding"); \ +static_assert(offsetof(FHeraSequenceBinding, BindingTag) == 0x000000, "Member 'FHeraSequenceBinding::BindingTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceBinding, ActorPaths) == 0x000008, "Member 'FHeraSequenceBinding::ActorPaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraSequenceSettings \ +static_assert(alignof(FHeraSequenceSettings) == 0x000008, "Wrong alignment on FHeraSequenceSettings"); \ +static_assert(sizeof(FHeraSequenceSettings) == 0x000050, "Wrong size on FHeraSequenceSettings"); \ +static_assert(offsetof(FHeraSequenceSettings, LoopCount) == 0x000000, "Member 'FHeraSequenceSettings::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, PlayRate) == 0x000004, "Member 'FHeraSequenceSettings::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, StartTime) == 0x000008, "Member 'FHeraSequenceSettings::StartTime' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, PauseCutsceneMenuTag) == 0x000010, "Member 'FHeraSequenceSettings::PauseCutsceneMenuTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, DelayTimeInSeconds) == 0x00001C, "Member 'FHeraSequenceSettings::DelayTimeInSeconds' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, PlayerTag) == 0x000020, "Member 'FHeraSequenceSettings::PlayerTag' has a wrong offset!"); \ +static_assert(offsetof(FHeraSequenceSettings, TransformOriginActor) == 0x000028, "Member 'FHeraSequenceSettings::TransformOriginActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomata \ +static_assert(alignof(UHeraAutomata) == 0x000008, "Wrong alignment on UHeraAutomata"); \ +static_assert(sizeof(UHeraAutomata) == 0x0000A0, "Wrong size on UHeraAutomata"); \ +static_assert(offsetof(UHeraAutomata, AutomataEnableRule) == 0x000030, "Member 'UHeraAutomata::AutomataEnableRule' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, bShowAdvancedDebug) == 0x000038, "Member 'UHeraAutomata::bShowAdvancedDebug' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, bIsBlackList) == 0x000039, "Member 'UHeraAutomata::bIsBlackList' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, ObjectivesToFilter) == 0x000040, "Member 'UHeraAutomata::ObjectivesToFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, InitialState) == 0x000050, "Member 'UHeraAutomata::InitialState' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, States) == 0x000058, "Member 'UHeraAutomata::States' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, TerminalStateSucceeded) == 0x000068, "Member 'UHeraAutomata::TerminalStateSucceeded' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, TerminalStateFailed) == 0x000070, "Member 'UHeraAutomata::TerminalStateFailed' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomata, OuterSubAutomataState) == 0x000078, "Member 'UHeraAutomata::OuterSubAutomataState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataStateBase \ +static_assert(alignof(UHeraAutomataStateBase) == 0x000008, "Wrong alignment on UHeraAutomataStateBase"); \ +static_assert(sizeof(UHeraAutomataStateBase) == 0x000078, "Wrong size on UHeraAutomataStateBase"); \ +static_assert(offsetof(UHeraAutomataStateBase, bShowAdvancedDebug) == 0x000030, "Member 'UHeraAutomataStateBase::bShowAdvancedDebug' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, StateName) == 0x000038, "Member 'UHeraAutomataStateBase::StateName' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, bShouldExecuteOnEnterOnLoad) == 0x00004C, "Member 'UHeraAutomataStateBase::bShouldExecuteOnEnterOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, bShouldExecuteOnExitOnLoad) == 0x00004D, "Member 'UHeraAutomataStateBase::bShouldExecuteOnExitOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, Branches) == 0x000050, "Member 'UHeraAutomataStateBase::Branches' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, ActiveMissionCount) == 0x000060, "Member 'UHeraAutomataStateBase::ActiveMissionCount' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateBase, PreviousStates) == 0x000068, "Member 'UHeraAutomataStateBase::PreviousStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataAutocompleteState \ +static_assert(alignof(UHeraAutomataAutocompleteState) == 0x000008, "Wrong alignment on UHeraAutomataAutocompleteState"); \ +static_assert(sizeof(UHeraAutomataAutocompleteState) == 0x000078, "Wrong size on UHeraAutomataAutocompleteState"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataAnchor \ +static_assert(alignof(UHeraAutomataAnchor) == 0x000008, "Wrong alignment on UHeraAutomataAnchor"); \ +static_assert(sizeof(UHeraAutomataAnchor) == 0x000080, "Wrong size on UHeraAutomataAnchor"); \ +static_assert(offsetof(UHeraAutomataAnchor, GameplayTag) == 0x000078, "Member 'UHeraAutomataAnchor::GameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataBranch \ +static_assert(alignof(UHeraAutomataBranch) == 0x000008, "Wrong alignment on UHeraAutomataBranch"); \ +static_assert(sizeof(UHeraAutomataBranch) == 0x000060, "Wrong size on UHeraAutomataBranch"); \ +static_assert(offsetof(UHeraAutomataBranch, DestinationState) == 0x000030, "Member 'UHeraAutomataBranch::DestinationState' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, ObjectiveCount) == 0x00003C, "Member 'UHeraAutomataBranch::ObjectiveCount' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, ObjectiveMask) == 0x000040, "Member 'UHeraAutomataBranch::ObjectiveMask' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, timesObjectiveHasBeenHit) == 0x000044, "Member 'UHeraAutomataBranch::timesObjectiveHasBeenHit' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, Objectives) == 0x000048, "Member 'UHeraAutomataBranch::Objectives' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, ObjectiveHitRequiredCount) == 0x000058, "Member 'UHeraAutomataBranch::ObjectiveHitRequiredCount' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataBranch, bIsEditable) == 0x00005C, "Member 'UHeraAutomataBranch::bIsEditable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_GetAutomataObjectives \ +static_assert(alignof(HeraAutomataControlComponent_GetAutomataObjectives) == 0x000008, "Wrong alignment on HeraAutomataControlComponent_GetAutomataObjectives"); \ +static_assert(sizeof(HeraAutomataControlComponent_GetAutomataObjectives) == 0x000010, "Wrong size on HeraAutomataControlComponent_GetAutomataObjectives"); \ +static_assert(offsetof(HeraAutomataControlComponent_GetAutomataObjectives, ReturnValue) == 0x000000, "Member 'HeraAutomataControlComponent_GetAutomataObjectives::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_StartAutomata \ +static_assert(alignof(HeraAutomataControlComponent_StartAutomata) == 0x000008, "Wrong alignment on HeraAutomataControlComponent_StartAutomata"); \ +static_assert(sizeof(HeraAutomataControlComponent_StartAutomata) == 0x000008, "Wrong size on HeraAutomataControlComponent_StartAutomata"); \ +static_assert(offsetof(HeraAutomataControlComponent_StartAutomata, InAutomata) == 0x000000, "Member 'HeraAutomataControlComponent_StartAutomata::InAutomata' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_StartAutomataWithTag \ +static_assert(alignof(HeraAutomataControlComponent_StartAutomataWithTag) == 0x000008, "Wrong alignment on HeraAutomataControlComponent_StartAutomataWithTag"); \ +static_assert(sizeof(HeraAutomataControlComponent_StartAutomataWithTag) == 0x000010, "Wrong size on HeraAutomataControlComponent_StartAutomataWithTag"); \ +static_assert(offsetof(HeraAutomataControlComponent_StartAutomataWithTag, InAutomata) == 0x000000, "Member 'HeraAutomataControlComponent_StartAutomataWithTag::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataControlComponent_StartAutomataWithTag, InTag) == 0x000008, "Member 'HeraAutomataControlComponent_StartAutomataWithTag::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_StopAutomataByUID \ +static_assert(alignof(HeraAutomataControlComponent_StopAutomataByUID) == 0x000004, "Wrong alignment on HeraAutomataControlComponent_StopAutomataByUID"); \ +static_assert(sizeof(HeraAutomataControlComponent_StopAutomataByUID) == 0x000004, "Wrong size on HeraAutomataControlComponent_StopAutomataByUID"); \ +static_assert(offsetof(HeraAutomataControlComponent_StopAutomataByUID, InAutomataUID) == 0x000000, "Member 'HeraAutomataControlComponent_StopAutomataByUID::InAutomataUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_StopAutomataWithoutTag \ +static_assert(alignof(HeraAutomataControlComponent_StopAutomataWithoutTag) == 0x000004, "Wrong alignment on HeraAutomataControlComponent_StopAutomataWithoutTag"); \ +static_assert(sizeof(HeraAutomataControlComponent_StopAutomataWithoutTag) == 0x00000C, "Wrong size on HeraAutomataControlComponent_StopAutomataWithoutTag"); \ +static_assert(offsetof(HeraAutomataControlComponent_StopAutomataWithoutTag, InTag) == 0x000000, "Member 'HeraAutomataControlComponent_StopAutomataWithoutTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataControlComponent_StopAutomataWithoutTag, InRemoveEmptyTag) == 0x000008, "Member 'HeraAutomataControlComponent_StopAutomataWithoutTag::InRemoveEmptyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_UpdateAutomatas \ +static_assert(alignof(HeraAutomataControlComponent_UpdateAutomatas) == 0x000008, "Wrong alignment on HeraAutomataControlComponent_UpdateAutomatas"); \ +static_assert(sizeof(HeraAutomataControlComponent_UpdateAutomatas) == 0x000008, "Wrong size on HeraAutomataControlComponent_UpdateAutomatas"); \ +static_assert(offsetof(HeraAutomataControlComponent_UpdateAutomatas, InAutomataObjective) == 0x000000, "Member 'HeraAutomataControlComponent_UpdateAutomatas::InAutomataObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_GetAutomataList \ +static_assert(alignof(HeraAutomataControlComponent_GetAutomataList) == 0x000008, "Wrong alignment on HeraAutomataControlComponent_GetAutomataList"); \ +static_assert(sizeof(HeraAutomataControlComponent_GetAutomataList) == 0x000010, "Wrong size on HeraAutomataControlComponent_GetAutomataList"); \ +static_assert(offsetof(HeraAutomataControlComponent_GetAutomataList, ReturnValue) == 0x000000, "Member 'HeraAutomataControlComponent_GetAutomataList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataControlComponent_IsLoading \ +static_assert(alignof(HeraAutomataControlComponent_IsLoading) == 0x000001, "Wrong alignment on HeraAutomataControlComponent_IsLoading"); \ +static_assert(sizeof(HeraAutomataControlComponent_IsLoading) == 0x000001, "Wrong size on HeraAutomataControlComponent_IsLoading"); \ +static_assert(offsetof(HeraAutomataControlComponent_IsLoading, ReturnValue) == 0x000000, "Member 'HeraAutomataControlComponent_IsLoading::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataControlComponent \ +static_assert(alignof(UHeraAutomataControlComponent) == 0x000008, "Wrong alignment on UHeraAutomataControlComponent"); \ +static_assert(sizeof(UHeraAutomataControlComponent) == 0x0001E8, "Wrong size on UHeraAutomataControlComponent"); \ +static_assert(offsetof(UHeraAutomataControlComponent, bShowAdvancedDebug) == 0x0000A1, "Member 'UHeraAutomataControlComponent::bShowAdvancedDebug' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, DebugObjectiveIndex) == 0x0000A4, "Member 'UHeraAutomataControlComponent::DebugObjectiveIndex' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, DebugObjectiveList) == 0x0000A8, "Member 'UHeraAutomataControlComponent::DebugObjectiveList' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, Tasklist) == 0x0000B0, "Member 'UHeraAutomataControlComponent::Tasklist' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, AutomataInProgressList) == 0x0000B8, "Member 'UHeraAutomataControlComponent::AutomataInProgressList' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, AutomataObjectives) == 0x0000C8, "Member 'UHeraAutomataControlComponent::AutomataObjectives' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, PendingNewAutomatas) == 0x0000D8, "Member 'UHeraAutomataControlComponent::PendingNewAutomatas' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, PendingRemoveAutomatas) == 0x0000E8, "Member 'UHeraAutomataControlComponent::PendingRemoveAutomatas' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, CurrentTaskList) == 0x0000F8, "Member 'UHeraAutomataControlComponent::CurrentTaskList' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, PendingRemoveTasks) == 0x000108, "Member 'UHeraAutomataControlComponent::PendingRemoveTasks' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, PendingAutomataObjectives) == 0x000118, "Member 'UHeraAutomataControlComponent::PendingAutomataObjectives' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, AutomataUID) == 0x000128, "Member 'UHeraAutomataControlComponent::AutomataUID' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, OnSaveObjectives) == 0x000130, "Member 'UHeraAutomataControlComponent::OnSaveObjectives' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataControlComponent, OnManualSaveObjectives) == 0x000140, "Member 'UHeraAutomataControlComponent::OnManualSaveObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataEvent_RaiseAutomataEvent \ +static_assert(alignof(HeraAutomataEvent_RaiseAutomataEvent) == 0x000004, "Wrong alignment on HeraAutomataEvent_RaiseAutomataEvent"); \ +static_assert(sizeof(HeraAutomataEvent_RaiseAutomataEvent) == 0x000008, "Wrong size on HeraAutomataEvent_RaiseAutomataEvent"); \ +static_assert(offsetof(HeraAutomataEvent_RaiseAutomataEvent, InEventName) == 0x000000, "Member 'HeraAutomataEvent_RaiseAutomataEvent::InEventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHeraAutomataEvent \ +static_assert(alignof(IHeraAutomataEvent) == 0x000001, "Wrong alignment on IHeraAutomataEvent"); \ +static_assert(sizeof(IHeraAutomataEvent) == 0x000001, "Wrong size on IHeraAutomataEvent"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataLink \ +static_assert(alignof(UHeraAutomataLink) == 0x000008, "Wrong alignment on UHeraAutomataLink"); \ +static_assert(sizeof(UHeraAutomataLink) == 0x000080, "Wrong size on UHeraAutomataLink"); \ +static_assert(offsetof(UHeraAutomataLink, GameplayTag) == 0x000078, "Member 'UHeraAutomataLink::GameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataObjective \ +static_assert(alignof(UHeraAutomataObjective) == 0x000008, "Wrong alignment on UHeraAutomataObjective"); \ +static_assert(sizeof(UHeraAutomataObjective) == 0x000040, "Wrong size on UHeraAutomataObjective"); \ +static_assert(offsetof(UHeraAutomataObjective, Description) == 0x000030, "Member 'UHeraAutomataObjective::Description' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataObjective, bIsPermanent) == 0x000038, "Member 'UHeraAutomataObjective::bIsPermanent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataObjective, bIsStateInternal) == 0x000039, "Member 'UHeraAutomataObjective::bIsStateInternal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataObjectiveList \ +static_assert(alignof(UHeraAutomataObjectiveList) == 0x000008, "Wrong alignment on UHeraAutomataObjectiveList"); \ +static_assert(sizeof(UHeraAutomataObjectiveList) == 0x000040, "Wrong size on UHeraAutomataObjectiveList"); \ +static_assert(offsetof(UHeraAutomataObjectiveList, Objectives) == 0x000030, "Member 'UHeraAutomataObjectiveList::Objectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataReroute \ +static_assert(alignof(UHeraAutomataReroute) == 0x000008, "Wrong alignment on UHeraAutomataReroute"); \ +static_assert(sizeof(UHeraAutomataReroute) == 0x000078, "Wrong size on UHeraAutomataReroute"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataSettings \ +static_assert(alignof(UHeraAutomataSettings) == 0x000008, "Wrong alignment on UHeraAutomataSettings"); \ +static_assert(sizeof(UHeraAutomataSettings) == 0x000050, "Wrong size on UHeraAutomataSettings"); \ +static_assert(offsetof(UHeraAutomataSettings, GlobalMissions) == 0x000038, "Member 'UHeraAutomataSettings::GlobalMissions' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataSettings, AutomataLoadType) == 0x000048, "Member 'UHeraAutomataSettings::AutomataLoadType' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataSettings, SupportSaveOnSubautomatas) == 0x000049, "Member 'UHeraAutomataSettings::SupportSaveOnSubautomatas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataSettingsPerUser \ +static_assert(alignof(UHeraAutomataSettingsPerUser) == 0x000008, "Wrong alignment on UHeraAutomataSettingsPerUser"); \ +static_assert(sizeof(UHeraAutomataSettingsPerUser) == 0x000040, "Wrong size on UHeraAutomataSettingsPerUser"); \ +static_assert(offsetof(UHeraAutomataSettingsPerUser, bDisableMissionScripting) == 0x000038, "Member 'UHeraAutomataSettingsPerUser::bDisableMissionScripting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataState \ +static_assert(alignof(UHeraAutomataState) == 0x000008, "Wrong alignment on UHeraAutomataState"); \ +static_assert(sizeof(UHeraAutomataState) == 0x0000B8, "Wrong size on UHeraAutomataState"); \ +static_assert(offsetof(UHeraAutomataState, ChainOnStateEnter) == 0x000080, "Member 'UHeraAutomataState::ChainOnStateEnter' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataState, ChainOnStateExit) == 0x000088, "Member 'UHeraAutomataState::ChainOnStateExit' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataState, BlockingTasksFinishedObjective) == 0x000090, "Member 'UHeraAutomataState::BlockingTasksFinishedObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataState, AutocompleteObjective) == 0x000098, "Member 'UHeraAutomataState::AutocompleteObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataState, BlockingTasksFinishedObjectiveBranch) == 0x0000A0, "Member 'UHeraAutomataState::BlockingTasksFinishedObjectiveBranch' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataState, AutocompleteObjectiveBranch) == 0x0000A8, "Member 'UHeraAutomataState::AutocompleteObjectiveBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataStateExpiring \ +static_assert(alignof(UHeraAutomataStateExpiring) == 0x000008, "Wrong alignment on UHeraAutomataStateExpiring"); \ +static_assert(sizeof(UHeraAutomataStateExpiring) == 0x0000B0, "Wrong size on UHeraAutomataStateExpiring"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, Time) == 0x000078, "Member 'UHeraAutomataStateExpiring::Time' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, IgnoreTimeDilation) == 0x00007C, "Member 'UHeraAutomataStateExpiring::IgnoreTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, OverrideTimeTag) == 0x000080, "Member 'UHeraAutomataStateExpiring::OverrideTimeTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, RandomDeviation) == 0x000088, "Member 'UHeraAutomataStateExpiring::RandomDeviation' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, TimeRemainingProperty) == 0x000090, "Member 'UHeraAutomataStateExpiring::TimeRemainingProperty' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, ExpiryObjective) == 0x0000A0, "Member 'UHeraAutomataStateExpiring::ExpiryObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataStateExpiring, ExpiryObjectiveBranch) == 0x0000A8, "Member 'UHeraAutomataStateExpiring::ExpiryObjectiveBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataStateReset \ +static_assert(alignof(UHeraAutomataStateReset) == 0x000008, "Wrong alignment on UHeraAutomataStateReset"); \ +static_assert(sizeof(UHeraAutomataStateReset) == 0x000078, "Wrong size on UHeraAutomataStateReset"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataStopState \ +static_assert(alignof(UHeraAutomataStopState) == 0x000008, "Wrong alignment on UHeraAutomataStopState"); \ +static_assert(sizeof(UHeraAutomataStopState) == 0x000078, "Wrong size on UHeraAutomataStopState"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataSubAutomataState \ +static_assert(alignof(UHeraAutomataSubAutomataState) == 0x000008, "Wrong alignment on UHeraAutomataSubAutomataState"); \ +static_assert(sizeof(UHeraAutomataSubAutomataState) == 0x0000D8, "Wrong size on UHeraAutomataSubAutomataState"); \ +static_assert(offsetof(UHeraAutomataSubAutomataState, bWantResults) == 0x000078, "Member 'UHeraAutomataSubAutomataState::bWantResults' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataSubAutomataState, SubAutomata) == 0x000080, "Member 'UHeraAutomataSubAutomataState::SubAutomata' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataSubAutomataState, FloatParameters) == 0x000088, "Member 'UHeraAutomataSubAutomataState::FloatParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_LoadSynchronousSoftActorPointer \ +static_assert(alignof(HeraAutomataTask_LoadSynchronousSoftActorPointer) == 0x000008, "Wrong alignment on HeraAutomataTask_LoadSynchronousSoftActorPointer"); \ +static_assert(sizeof(HeraAutomataTask_LoadSynchronousSoftActorPointer) == 0x000038, "Wrong size on HeraAutomataTask_LoadSynchronousSoftActorPointer"); \ +static_assert(offsetof(HeraAutomataTask_LoadSynchronousSoftActorPointer, InWorldContextObject) == 0x000000, "Member 'HeraAutomataTask_LoadSynchronousSoftActorPointer::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_LoadSynchronousSoftActorPointer, InSoftPtr) == 0x000008, "Member 'HeraAutomataTask_LoadSynchronousSoftActorPointer::InSoftPtr' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_LoadSynchronousSoftActorPointer, ReturnValue) == 0x000030, "Member 'HeraAutomataTask_LoadSynchronousSoftActorPointer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_ResolveSoftActorPointer \ +static_assert(alignof(HeraAutomataTask_ResolveSoftActorPointer) == 0x000008, "Wrong alignment on HeraAutomataTask_ResolveSoftActorPointer"); \ +static_assert(sizeof(HeraAutomataTask_ResolveSoftActorPointer) == 0x000038, "Wrong size on HeraAutomataTask_ResolveSoftActorPointer"); \ +static_assert(offsetof(HeraAutomataTask_ResolveSoftActorPointer, InWorldContextObject) == 0x000000, "Member 'HeraAutomataTask_ResolveSoftActorPointer::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_ResolveSoftActorPointer, InSoftPtr) == 0x000008, "Member 'HeraAutomataTask_ResolveSoftActorPointer::InSoftPtr' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_ResolveSoftActorPointer, ReturnValue) == 0x000030, "Member 'HeraAutomataTask_ResolveSoftActorPointer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_CanBlockExecution \ +static_assert(alignof(HeraAutomataTask_CanBlockExecution) == 0x000001, "Wrong alignment on HeraAutomataTask_CanBlockExecution"); \ +static_assert(sizeof(HeraAutomataTask_CanBlockExecution) == 0x000001, "Wrong size on HeraAutomataTask_CanBlockExecution"); \ +static_assert(offsetof(HeraAutomataTask_CanBlockExecution, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_CanBlockExecution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetAutomataControlComponent \ +static_assert(alignof(HeraAutomataTask_GetAutomataControlComponent) == 0x000008, "Wrong alignment on HeraAutomataTask_GetAutomataControlComponent"); \ +static_assert(sizeof(HeraAutomataTask_GetAutomataControlComponent) == 0x000008, "Wrong size on HeraAutomataTask_GetAutomataControlComponent"); \ +static_assert(offsetof(HeraAutomataTask_GetAutomataControlComponent, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetAutomataControlComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_IsBlockingExecution \ +static_assert(alignof(HeraAutomataTask_IsBlockingExecution) == 0x000001, "Wrong alignment on HeraAutomataTask_IsBlockingExecution"); \ +static_assert(sizeof(HeraAutomataTask_IsBlockingExecution) == 0x000001, "Wrong size on HeraAutomataTask_IsBlockingExecution"); \ +static_assert(offsetof(HeraAutomataTask_IsBlockingExecution, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_IsBlockingExecution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_IsLoadingAndShouldSkip \ +static_assert(alignof(HeraAutomataTask_IsLoadingAndShouldSkip) == 0x000001, "Wrong alignment on HeraAutomataTask_IsLoadingAndShouldSkip"); \ +static_assert(sizeof(HeraAutomataTask_IsLoadingAndShouldSkip) == 0x000001, "Wrong size on HeraAutomataTask_IsLoadingAndShouldSkip"); \ +static_assert(offsetof(HeraAutomataTask_IsLoadingAndShouldSkip, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_IsLoadingAndShouldSkip::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_IsTaskValidAndRunning \ +static_assert(alignof(HeraAutomataTask_IsTaskValidAndRunning) == 0x000001, "Wrong alignment on HeraAutomataTask_IsTaskValidAndRunning"); \ +static_assert(sizeof(HeraAutomataTask_IsTaskValidAndRunning) == 0x000001, "Wrong size on HeraAutomataTask_IsTaskValidAndRunning"); \ +static_assert(offsetof(HeraAutomataTask_IsTaskValidAndRunning, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_IsTaskValidAndRunning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_RaiseEvent \ +static_assert(alignof(HeraAutomataTask_RaiseEvent) == 0x000004, "Wrong alignment on HeraAutomataTask_RaiseEvent"); \ +static_assert(sizeof(HeraAutomataTask_RaiseEvent) == 0x000008, "Wrong size on HeraAutomataTask_RaiseEvent"); \ +static_assert(offsetof(HeraAutomataTask_RaiseEvent, InEvent) == 0x000000, "Member 'HeraAutomataTask_RaiseEvent::InEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_ReceiveExecute \ +static_assert(alignof(HeraAutomataTask_ReceiveExecute) == 0x000008, "Wrong alignment on HeraAutomataTask_ReceiveExecute"); \ +static_assert(sizeof(HeraAutomataTask_ReceiveExecute) == 0x000010, "Wrong size on HeraAutomataTask_ReceiveExecute"); \ +static_assert(offsetof(HeraAutomataTask_ReceiveExecute, InAutomata) == 0x000000, "Member 'HeraAutomataTask_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_ReceiveExecute, InState) == 0x000008, "Member 'HeraAutomataTask_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_ResolveToLevelActor \ +static_assert(alignof(HeraAutomataTask_ResolveToLevelActor) == 0x000008, "Wrong alignment on HeraAutomataTask_ResolveToLevelActor"); \ +static_assert(sizeof(HeraAutomataTask_ResolveToLevelActor) == 0x000028, "Wrong size on HeraAutomataTask_ResolveToLevelActor"); \ +static_assert(offsetof(HeraAutomataTask_ResolveToLevelActor, InSoftObjectPath) == 0x000000, "Member 'HeraAutomataTask_ResolveToLevelActor::InSoftObjectPath' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_ResolveToLevelActor, ReturnValue) == 0x000020, "Member 'HeraAutomataTask_ResolveToLevelActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_StartAutomata \ +static_assert(alignof(HeraAutomataTask_StartAutomata) == 0x000008, "Wrong alignment on HeraAutomataTask_StartAutomata"); \ +static_assert(sizeof(HeraAutomataTask_StartAutomata) == 0x000008, "Wrong size on HeraAutomataTask_StartAutomata"); \ +static_assert(offsetof(HeraAutomataTask_StartAutomata, InAutomata) == 0x000000, "Member 'HeraAutomataTask_StartAutomata::InAutomata' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_StartAutomataWithTag \ +static_assert(alignof(HeraAutomataTask_StartAutomataWithTag) == 0x000008, "Wrong alignment on HeraAutomataTask_StartAutomataWithTag"); \ +static_assert(sizeof(HeraAutomataTask_StartAutomataWithTag) == 0x000010, "Wrong size on HeraAutomataTask_StartAutomataWithTag"); \ +static_assert(offsetof(HeraAutomataTask_StartAutomataWithTag, InAutomata) == 0x000000, "Member 'HeraAutomataTask_StartAutomataWithTag::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HeraAutomataTask_StartAutomataWithTag, InTag) == 0x000008, "Member 'HeraAutomataTask_StartAutomataWithTag::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_UpdateAutomatas \ +static_assert(alignof(HeraAutomataTask_UpdateAutomatas) == 0x000008, "Wrong alignment on HeraAutomataTask_UpdateAutomatas"); \ +static_assert(sizeof(HeraAutomataTask_UpdateAutomatas) == 0x000008, "Wrong size on HeraAutomataTask_UpdateAutomatas"); \ +static_assert(offsetof(HeraAutomataTask_UpdateAutomatas, InObjective) == 0x000000, "Member 'HeraAutomataTask_UpdateAutomatas::InObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetHUD \ +static_assert(alignof(HeraAutomataTask_GetHUD) == 0x000008, "Wrong alignment on HeraAutomataTask_GetHUD"); \ +static_assert(sizeof(HeraAutomataTask_GetHUD) == 0x000008, "Wrong size on HeraAutomataTask_GetHUD"); \ +static_assert(offsetof(HeraAutomataTask_GetHUD, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetPlayer \ +static_assert(alignof(HeraAutomataTask_GetPlayer) == 0x000008, "Wrong alignment on HeraAutomataTask_GetPlayer"); \ +static_assert(sizeof(HeraAutomataTask_GetPlayer) == 0x000008, "Wrong size on HeraAutomataTask_GetPlayer"); \ +static_assert(offsetof(HeraAutomataTask_GetPlayer, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetPlayerCharacter \ +static_assert(alignof(HeraAutomataTask_GetPlayerCharacter) == 0x000008, "Wrong alignment on HeraAutomataTask_GetPlayerCharacter"); \ +static_assert(sizeof(HeraAutomataTask_GetPlayerCharacter) == 0x000008, "Wrong size on HeraAutomataTask_GetPlayerCharacter"); \ +static_assert(offsetof(HeraAutomataTask_GetPlayerCharacter, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetPlayerCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetPlayerController \ +static_assert(alignof(HeraAutomataTask_GetPlayerController) == 0x000008, "Wrong alignment on HeraAutomataTask_GetPlayerController"); \ +static_assert(sizeof(HeraAutomataTask_GetPlayerController) == 0x000008, "Wrong size on HeraAutomataTask_GetPlayerController"); \ +static_assert(offsetof(HeraAutomataTask_GetPlayerController, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_GetPlayerState \ +static_assert(alignof(HeraAutomataTask_GetPlayerState) == 0x000008, "Wrong alignment on HeraAutomataTask_GetPlayerState"); \ +static_assert(sizeof(HeraAutomataTask_GetPlayerState) == 0x000008, "Wrong size on HeraAutomataTask_GetPlayerState"); \ +static_assert(offsetof(HeraAutomataTask_GetPlayerState, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_GetPlayerState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_IsLoading \ +static_assert(alignof(HeraAutomataTask_IsLoading) == 0x000001, "Wrong alignment on HeraAutomataTask_IsLoading"); \ +static_assert(sizeof(HeraAutomataTask_IsLoading) == 0x000001, "Wrong size on HeraAutomataTask_IsLoading"); \ +static_assert(offsetof(HeraAutomataTask_IsLoading, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_IsLoading::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAutomataTask_VerifyNodeState \ +static_assert(alignof(HeraAutomataTask_VerifyNodeState) == 0x000008, "Wrong alignment on HeraAutomataTask_VerifyNodeState"); \ +static_assert(sizeof(HeraAutomataTask_VerifyNodeState) == 0x000010, "Wrong size on HeraAutomataTask_VerifyNodeState"); \ +static_assert(offsetof(HeraAutomataTask_VerifyNodeState, ReturnValue) == 0x000000, "Member 'HeraAutomataTask_VerifyNodeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTask \ +static_assert(alignof(UHeraAutomataTask) == 0x000008, "Wrong alignment on UHeraAutomataTask"); \ +static_assert(sizeof(UHeraAutomataTask) == 0x000088, "Wrong size on UHeraAutomataTask"); \ +static_assert(offsetof(UHeraAutomataTask, Automata) == 0x000068, "Member 'UHeraAutomataTask::Automata' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTask, State) == 0x000070, "Member 'UHeraAutomataTask::State' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTask, AutomataControlComponent) == 0x000078, "Member 'UHeraAutomataTask::AutomataControlComponent' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTask, InstanceUID) == 0x000080, "Member 'UHeraAutomataTask::InstanceUID' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTask, CheckpointStartReplay) == 0x000084, "Member 'UHeraAutomataTask::CheckpointStartReplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTaskBlueprint \ +static_assert(alignof(UHeraAutomataTaskBlueprint) == 0x000008, "Wrong alignment on UHeraAutomataTaskBlueprint"); \ +static_assert(sizeof(UHeraAutomataTaskBlueprint) == 0x0000A8, "Wrong size on UHeraAutomataTaskBlueprint"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTaskChain \ +static_assert(alignof(UHeraAutomataTaskChain) == 0x000008, "Wrong alignment on UHeraAutomataTaskChain"); \ +static_assert(sizeof(UHeraAutomataTaskChain) == 0x000038, "Wrong size on UHeraAutomataTaskChain"); \ +static_assert(offsetof(UHeraAutomataTaskChain, Tasks) == 0x000028, "Member 'UHeraAutomataTaskChain::Tasks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTaskInfo \ +static_assert(alignof(UHeraAutomataTaskInfo) == 0x000008, "Wrong alignment on UHeraAutomataTaskInfo"); \ +static_assert(sizeof(UHeraAutomataTaskInfo) == 0x000038, "Wrong size on UHeraAutomataTaskInfo"); \ +static_assert(offsetof(UHeraAutomataTaskInfo, Class_0) == 0x000028, "Member 'UHeraAutomataTaskInfo::Class_0' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTaskInfo, Defaults) == 0x000030, "Member 'UHeraAutomataTaskInfo::Defaults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTerminalState \ +static_assert(alignof(UHeraAutomataTerminalState) == 0x000008, "Wrong alignment on UHeraAutomataTerminalState"); \ +static_assert(sizeof(UHeraAutomataTerminalState) == 0x000088, "Wrong size on UHeraAutomataTerminalState"); \ +static_assert(offsetof(UHeraAutomataTerminalState, AutomataResult) == 0x000078, "Member 'UHeraAutomataTerminalState::AutomataResult' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTerminalState, ObjectiveResult) == 0x000080, "Member 'UHeraAutomataTerminalState::ObjectiveResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartActor_GetDataLayersToActivate \ +static_assert(alignof(HeraCheckpointStartActor_GetDataLayersToActivate) == 0x000008, "Wrong alignment on HeraCheckpointStartActor_GetDataLayersToActivate"); \ +static_assert(sizeof(HeraCheckpointStartActor_GetDataLayersToActivate) == 0x000010, "Wrong size on HeraCheckpointStartActor_GetDataLayersToActivate"); \ +static_assert(offsetof(HeraCheckpointStartActor_GetDataLayersToActivate, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartActor_GetDataLayersToActivate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartActor_GetLocationGameplayTag \ +static_assert(alignof(HeraCheckpointStartActor_GetLocationGameplayTag) == 0x000004, "Wrong alignment on HeraCheckpointStartActor_GetLocationGameplayTag"); \ +static_assert(sizeof(HeraCheckpointStartActor_GetLocationGameplayTag) == 0x000008, "Wrong size on HeraCheckpointStartActor_GetLocationGameplayTag"); \ +static_assert(offsetof(HeraCheckpointStartActor_GetLocationGameplayTag, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartActor_GetLocationGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraCheckpointStartActor \ +static_assert(alignof(AHeraCheckpointStartActor) == 0x000008, "Wrong alignment on AHeraCheckpointStartActor"); \ +static_assert(sizeof(AHeraCheckpointStartActor) == 0x0002F8, "Wrong size on AHeraCheckpointStartActor"); \ +static_assert(offsetof(AHeraCheckpointStartActor, bRecursiveDataLayerActivation) == 0x0002D0, "Member 'AHeraCheckpointStartActor::bRecursiveDataLayerActivation' has a wrong offset!"); \ +static_assert(offsetof(AHeraCheckpointStartActor, LocationGameplayTag) == 0x0002D4, "Member 'AHeraCheckpointStartActor::LocationGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AHeraCheckpointStartActor, MissionActorComponent) == 0x0002E0, "Member 'AHeraCheckpointStartActor::MissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraCheckpointStartActor, DataLayersToActivate) == 0x0002E8, "Member 'AHeraCheckpointStartActor::DataLayersToActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartFunctionLibrary_GetCheckpointEntries \ +static_assert(alignof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntries) == 0x000008, "Wrong alignment on HeraCheckpointStartFunctionLibrary_GetCheckpointEntries"); \ +static_assert(sizeof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntries) == 0x000010, "Wrong size on HeraCheckpointStartFunctionLibrary_GetCheckpointEntries"); \ +static_assert(offsetof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntries, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartFunctionLibrary_GetCheckpointEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted \ +static_assert(alignof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted) == 0x000008, "Wrong alignment on HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted"); \ +static_assert(sizeof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted) == 0x000010, "Wrong size on HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted"); \ +static_assert(offsetof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartFunctionLibrary_GetCheckpointEntriesSorted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames \ +static_assert(alignof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames) == 0x000008, "Wrong alignment on HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames"); \ +static_assert(sizeof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames) == 0x000010, "Wrong size on HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames"); \ +static_assert(offsetof(HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartFunctionLibrary_GetCheckpointEntryActorNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartFunctionLibrary_LoadCheckpointStart \ +static_assert(alignof(HeraCheckpointStartFunctionLibrary_LoadCheckpointStart) == 0x000008, "Wrong alignment on HeraCheckpointStartFunctionLibrary_LoadCheckpointStart"); \ +static_assert(sizeof(HeraCheckpointStartFunctionLibrary_LoadCheckpointStart) == 0x000010, "Wrong size on HeraCheckpointStartFunctionLibrary_LoadCheckpointStart"); \ +static_assert(offsetof(HeraCheckpointStartFunctionLibrary_LoadCheckpointStart, InWorldContext) == 0x000000, "Member 'HeraCheckpointStartFunctionLibrary_LoadCheckpointStart::InWorldContext' has a wrong offset!"); \ +static_assert(offsetof(HeraCheckpointStartFunctionLibrary_LoadCheckpointStart, InCheckpointName) == 0x000008, "Member 'HeraCheckpointStartFunctionLibrary_LoadCheckpointStart::InCheckpointName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCheckpointStartFunctionLibrary \ +static_assert(alignof(UHeraCheckpointStartFunctionLibrary) == 0x000008, "Wrong alignment on UHeraCheckpointStartFunctionLibrary"); \ +static_assert(sizeof(UHeraCheckpointStartFunctionLibrary) == 0x000028, "Wrong size on UHeraCheckpointStartFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartSettings_GetCheckpointEntries \ +static_assert(alignof(HeraCheckpointStartSettings_GetCheckpointEntries) == 0x000008, "Wrong alignment on HeraCheckpointStartSettings_GetCheckpointEntries"); \ +static_assert(sizeof(HeraCheckpointStartSettings_GetCheckpointEntries) == 0x000010, "Wrong size on HeraCheckpointStartSettings_GetCheckpointEntries"); \ +static_assert(offsetof(HeraCheckpointStartSettings_GetCheckpointEntries, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartSettings_GetCheckpointEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartSettings_GetDefaultDataLayerAsset \ +static_assert(alignof(HeraCheckpointStartSettings_GetDefaultDataLayerAsset) == 0x000008, "Wrong alignment on HeraCheckpointStartSettings_GetDefaultDataLayerAsset"); \ +static_assert(sizeof(HeraCheckpointStartSettings_GetDefaultDataLayerAsset) == 0x000028, "Wrong size on HeraCheckpointStartSettings_GetDefaultDataLayerAsset"); \ +static_assert(offsetof(HeraCheckpointStartSettings_GetDefaultDataLayerAsset, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartSettings_GetDefaultDataLayerAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraCheckpointStartSettings_HasDefaultDataLayerAsset \ +static_assert(alignof(HeraCheckpointStartSettings_HasDefaultDataLayerAsset) == 0x000001, "Wrong alignment on HeraCheckpointStartSettings_HasDefaultDataLayerAsset"); \ +static_assert(sizeof(HeraCheckpointStartSettings_HasDefaultDataLayerAsset) == 0x000001, "Wrong size on HeraCheckpointStartSettings_HasDefaultDataLayerAsset"); \ +static_assert(offsetof(HeraCheckpointStartSettings_HasDefaultDataLayerAsset, ReturnValue) == 0x000000, "Member 'HeraCheckpointStartSettings_HasDefaultDataLayerAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCheckpointStartSettings \ +static_assert(alignof(UHeraCheckpointStartSettings) == 0x000008, "Wrong alignment on UHeraCheckpointStartSettings"); \ +static_assert(sizeof(UHeraCheckpointStartSettings) == 0x000070, "Wrong size on UHeraCheckpointStartSettings"); \ +static_assert(offsetof(UHeraCheckpointStartSettings, DefaultDataLayerAsset) == 0x000038, "Member 'UHeraCheckpointStartSettings::DefaultDataLayerAsset' has a wrong offset!"); \ +static_assert(offsetof(UHeraCheckpointStartSettings, CheckpointEntries) == 0x000060, "Member 'UHeraCheckpointStartSettings::CheckpointEntries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCheckpointStartSettingsPerUser \ +static_assert(alignof(UHeraCheckpointStartSettingsPerUser) == 0x000008, "Wrong alignment on UHeraCheckpointStartSettingsPerUser"); \ +static_assert(sizeof(UHeraCheckpointStartSettingsPerUser) == 0x000038, "Wrong size on UHeraCheckpointStartSettingsPerUser"); \ + +#define DUMPER7_ASSERTS_HeraFadeOverlayTask_OnFadeFinished \ +static_assert(alignof(HeraFadeOverlayTask_OnFadeFinished) == 0x000008, "Wrong alignment on HeraFadeOverlayTask_OnFadeFinished"); \ +static_assert(sizeof(HeraFadeOverlayTask_OnFadeFinished) == 0x000010, "Wrong size on HeraFadeOverlayTask_OnFadeFinished"); \ +static_assert(offsetof(HeraFadeOverlayTask_OnFadeFinished, InWidget) == 0x000000, "Member 'HeraFadeOverlayTask_OnFadeFinished::InWidget' has a wrong offset!"); \ +static_assert(offsetof(HeraFadeOverlayTask_OnFadeFinished, InDirection) == 0x000008, "Member 'HeraFadeOverlayTask_OnFadeFinished::InDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraFadeOverlayTask \ +static_assert(alignof(UHeraFadeOverlayTask) == 0x000008, "Wrong alignment on UHeraFadeOverlayTask"); \ +static_assert(sizeof(UHeraFadeOverlayTask) == 0x0000B0, "Wrong size on UHeraFadeOverlayTask"); \ +static_assert(offsetof(UHeraFadeOverlayTask, bShouldLoadLevel) == 0x000088, "Member 'UHeraFadeOverlayTask::bShouldLoadLevel' has a wrong offset!"); \ +static_assert(offsetof(UHeraFadeOverlayTask, Duration) == 0x00008C, "Member 'UHeraFadeOverlayTask::Duration' has a wrong offset!"); \ +static_assert(offsetof(UHeraFadeOverlayTask, Colour) == 0x000090, "Member 'UHeraFadeOverlayTask::Colour' has a wrong offset!"); \ +static_assert(offsetof(UHeraFadeOverlayTask, FadeDirection) == 0x0000A0, "Member 'UHeraFadeOverlayTask::FadeDirection' has a wrong offset!"); \ +static_assert(offsetof(UHeraFadeOverlayTask, FadeFinishedObjective) == 0x0000A8, "Member 'UHeraFadeOverlayTask::FadeFinishedObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMission \ +static_assert(alignof(UHeraMission) == 0x000008, "Wrong alignment on UHeraMission"); \ +static_assert(sizeof(UHeraMission) == 0x000140, "Wrong size on UHeraMission"); \ +static_assert(offsetof(UHeraMission, RuleMappings) == 0x0000A0, "Member 'UHeraMission::RuleMappings' has a wrong offset!"); \ +static_assert(offsetof(UHeraMission, InternalRules) == 0x0000F0, "Member 'UHeraMission::InternalRules' has a wrong offset!"); \ +static_assert(offsetof(UHeraMission, ParrallelMissions) == 0x000100, "Member 'UHeraMission::ParrallelMissions' has a wrong offset!"); \ +static_assert(offsetof(UHeraMission, JunctionMissions) == 0x000110, "Member 'UHeraMission::JunctionMissions' has a wrong offset!"); \ +static_assert(offsetof(UHeraMission, DefaultPlayerStart) == 0x000120, "Member 'UHeraMission::DefaultPlayerStart' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionActorComponent_OnMissionCompleteInternal \ +static_assert(alignof(HeraMissionActorComponent_OnMissionCompleteInternal) == 0x000008, "Wrong alignment on HeraMissionActorComponent_OnMissionCompleteInternal"); \ +static_assert(sizeof(HeraMissionActorComponent_OnMissionCompleteInternal) == 0x000010, "Wrong size on HeraMissionActorComponent_OnMissionCompleteInternal"); \ +static_assert(offsetof(HeraMissionActorComponent_OnMissionCompleteInternal, InMission) == 0x000000, "Member 'HeraMissionActorComponent_OnMissionCompleteInternal::InMission' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionActorComponent_OnMissionCompleteInternal, bInSuccess) == 0x000008, "Member 'HeraMissionActorComponent_OnMissionCompleteInternal::bInSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionActorComponent_OnMissionEventInternal \ +static_assert(alignof(HeraMissionActorComponent_OnMissionEventInternal) == 0x000004, "Wrong alignment on HeraMissionActorComponent_OnMissionEventInternal"); \ +static_assert(sizeof(HeraMissionActorComponent_OnMissionEventInternal) == 0x000008, "Wrong size on HeraMissionActorComponent_OnMissionEventInternal"); \ +static_assert(offsetof(HeraMissionActorComponent_OnMissionEventInternal, InEvent) == 0x000000, "Member 'HeraMissionActorComponent_OnMissionEventInternal::InEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionActorComponent_StartMission \ +static_assert(alignof(HeraMissionActorComponent_StartMission) == 0x000008, "Wrong alignment on HeraMissionActorComponent_StartMission"); \ +static_assert(sizeof(HeraMissionActorComponent_StartMission) == 0x000008, "Wrong size on HeraMissionActorComponent_StartMission"); \ +static_assert(offsetof(HeraMissionActorComponent_StartMission, InMission) == 0x000000, "Member 'HeraMissionActorComponent_StartMission::InMission' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionActorComponent_UpdateMissions \ +static_assert(alignof(HeraMissionActorComponent_UpdateMissions) == 0x000008, "Wrong alignment on HeraMissionActorComponent_UpdateMissions"); \ +static_assert(sizeof(HeraMissionActorComponent_UpdateMissions) == 0x000008, "Wrong size on HeraMissionActorComponent_UpdateMissions"); \ +static_assert(offsetof(HeraMissionActorComponent_UpdateMissions, InObjective) == 0x000000, "Member 'HeraMissionActorComponent_UpdateMissions::InObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionActorComponent \ +static_assert(alignof(UHeraMissionActorComponent) == 0x000008, "Wrong alignment on UHeraMissionActorComponent"); \ +static_assert(sizeof(UHeraMissionActorComponent) == 0x0000D8, "Wrong size on UHeraMissionActorComponent"); \ +static_assert(offsetof(UHeraMissionActorComponent, OnMissionComplete) == 0x0000A0, "Member 'UHeraMissionActorComponent::OnMissionComplete' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionActorComponent, OnMissionEvent) == 0x0000B0, "Member 'UHeraMissionActorComponent::OnMissionEvent' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionActorComponent, TempObjectiveList) == 0x0000C8, "Member 'UHeraMissionActorComponent::TempObjectiveList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionCheckpoint \ +static_assert(alignof(UHeraMissionCheckpoint) == 0x000008, "Wrong alignment on UHeraMissionCheckpoint"); \ +static_assert(sizeof(UHeraMissionCheckpoint) == 0x000118, "Wrong size on UHeraMissionCheckpoint"); \ +static_assert(offsetof(UHeraMissionCheckpoint, PlayerStart) == 0x0000C0, "Member 'UHeraMissionCheckpoint::PlayerStart' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, LoadingPreset) == 0x0000E0, "Member 'UHeraMissionCheckpoint::LoadingPreset' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, bOverrideLoadingPresetFades) == 0x0000E8, "Member 'UHeraMissionCheckpoint::bOverrideLoadingPresetFades' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, bPostLoadFadeEnabled) == 0x0000E9, "Member 'UHeraMissionCheckpoint::bPostLoadFadeEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, PostLoadFadeOverrides) == 0x0000EC, "Member 'UHeraMissionCheckpoint::PostLoadFadeOverrides' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, OnSaveObjective) == 0x0000F8, "Member 'UHeraMissionCheckpoint::OnSaveObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, OnLoadFinishedObjective) == 0x000100, "Member 'UHeraMissionCheckpoint::OnLoadFinishedObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionCheckpoint, PostLoadFadeTask) == 0x000108, "Member 'UHeraMissionCheckpoint::PostLoadFadeTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraMissionControlActor \ +static_assert(alignof(AHeraMissionControlActor) == 0x000008, "Wrong alignment on AHeraMissionControlActor"); \ +static_assert(sizeof(AHeraMissionControlActor) == 0x0002A8, "Wrong size on AHeraMissionControlActor"); \ +static_assert(offsetof(AHeraMissionControlActor, StartupMissionsOverride) == 0x000298, "Member 'AHeraMissionControlActor::StartupMissionsOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged \ +static_assert(alignof(HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged) == 0x000004, "Wrong alignment on HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged"); \ +static_assert(sizeof(HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged) == 0x00000C, "Wrong size on HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged"); \ +static_assert(offsetof(HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged, InPropertyName) == 0x000000, "Member 'HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged, OutNewValue) == 0x000008, "Member 'HeraMissionControlComponent_OnHeraPropertyStoreBoolChanged::OutNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionControlComponent \ +static_assert(alignof(UHeraMissionControlComponent) == 0x000008, "Wrong alignment on UHeraMissionControlComponent"); \ +static_assert(sizeof(UHeraMissionControlComponent) == 0x000258, "Wrong size on UHeraMissionControlComponent"); \ +static_assert(offsetof(UHeraMissionControlComponent, OnMissionComplete) == 0x0001E8, "Member 'UHeraMissionControlComponent::OnMissionComplete' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionControlComponent, RuntimeRuleMappings) == 0x000208, "Member 'UHeraMissionControlComponent::RuntimeRuleMappings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionLevelLoadPoint \ +static_assert(alignof(UHeraMissionLevelLoadPoint) == 0x000008, "Wrong alignment on UHeraMissionLevelLoadPoint"); \ +static_assert(sizeof(UHeraMissionLevelLoadPoint) == 0x000138, "Wrong size on UHeraMissionLevelLoadPoint"); \ +static_assert(offsetof(UHeraMissionLevelLoadPoint, LevelToLoad) == 0x000118, "Member 'UHeraMissionLevelLoadPoint::LevelToLoad' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionLevelLoadPoint, PlayerStartTag) == 0x000120, "Member 'UHeraMissionLevelLoadPoint::PlayerStartTag' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionLevelLoadPoint, PreLoadFadeOverrides) == 0x000128, "Member 'UHeraMissionLevelLoadPoint::PreLoadFadeOverrides' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionLevelLoadPoint, PreLoadFadeTask) == 0x000130, "Member 'UHeraMissionLevelLoadPoint::PreLoadFadeTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionObjective \ +static_assert(alignof(UHeraMissionObjective) == 0x000008, "Wrong alignment on UHeraMissionObjective"); \ +static_assert(sizeof(UHeraMissionObjective) == 0x000040, "Wrong size on UHeraMissionObjective"); \ + +#define DUMPER7_ASSERTS_IHeraMissionSaveInterface \ +static_assert(alignof(IHeraMissionSaveInterface) == 0x000001, "Wrong alignment on IHeraMissionSaveInterface"); \ +static_assert(sizeof(IHeraMissionSaveInterface) == 0x000001, "Wrong size on IHeraMissionSaveInterface"); \ + +#define DUMPER7_ASSERTS_UHeraMissionSettings \ +static_assert(alignof(UHeraMissionSettings) == 0x000008, "Wrong alignment on UHeraMissionSettings"); \ +static_assert(sizeof(UHeraMissionSettings) == 0x000038, "Wrong size on UHeraMissionSettings"); \ + +#define DUMPER7_ASSERTS_UHeraMissionStateDebugStart \ +static_assert(alignof(UHeraMissionStateDebugStart) == 0x000008, "Wrong alignment on UHeraMissionStateDebugStart"); \ +static_assert(sizeof(UHeraMissionStateDebugStart) == 0x000090, "Wrong size on UHeraMissionStateDebugStart"); \ +static_assert(offsetof(UHeraMissionStateDebugStart, StartID) == 0x000078, "Member 'UHeraMissionStateDebugStart::StartID' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDebugStart, DebugStartObjective) == 0x000080, "Member 'UHeraMissionStateDebugStart::DebugStartObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDebugStart, DebugStartObjectiveBranch) == 0x000088, "Member 'UHeraMissionStateDebugStart::DebugStartObjectiveBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionStateDialog \ +static_assert(alignof(UHeraMissionStateDialog) == 0x000008, "Wrong alignment on UHeraMissionStateDialog"); \ +static_assert(sizeof(UHeraMissionStateDialog) == 0x000178, "Wrong size on UHeraMissionStateDialog"); \ +static_assert(offsetof(UHeraMissionStateDialog, DialogueInfo) == 0x000078, "Member 'UHeraMissionStateDialog::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, bShouldTearDownStoryImmediatelyOnFinished) == 0x000080, "Member 'UHeraMissionStateDialog::bShouldTearDownStoryImmediatelyOnFinished' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, DialogueParticipants) == 0x000088, "Member 'UHeraMissionStateDialog::DialogueParticipants' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, JumpToKnot) == 0x0000E0, "Member 'UHeraMissionStateDialog::JumpToKnot' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, OutcomeMappings) == 0x0000F8, "Member 'UHeraMissionStateDialog::OutcomeMappings' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, StoryExitObjective) == 0x000148, "Member 'UHeraMissionStateDialog::StoryExitObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, StoryExitObjectiveBranch) == 0x000150, "Member 'UHeraMissionStateDialog::StoryExitObjectiveBranch' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateDialog, StoryContinueBranch) == 0x000158, "Member 'UHeraMissionStateDialog::StoryContinueBranch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionStateJunction \ +static_assert(alignof(UHeraMissionStateJunction) == 0x000008, "Wrong alignment on UHeraMissionStateJunction"); \ +static_assert(sizeof(UHeraMissionStateJunction) == 0x0000E8, "Wrong size on UHeraMissionStateJunction"); \ +static_assert(offsetof(UHeraMissionStateJunction, InputStatesHit) == 0x000078, "Member 'UHeraMissionStateJunction::InputStatesHit' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateJunction, TotalInputStates) == 0x00007C, "Member 'UHeraMissionStateJunction::TotalInputStates' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateJunction, OutputMissions) == 0x000080, "Member 'UHeraMissionStateJunction::OutputMissions' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateJunction, PotentialMissions) == 0x0000D0, "Member 'UHeraMissionStateJunction::PotentialMissions' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionStateJunction, JunctionInputRequirement) == 0x0000E0, "Member 'UHeraMissionStateJunction::JunctionInputRequirement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionSubSystem_K2_ResolveTrackedActor \ +static_assert(alignof(HeraMissionSubSystem_K2_ResolveTrackedActor) == 0x000008, "Wrong alignment on HeraMissionSubSystem_K2_ResolveTrackedActor"); \ +static_assert(sizeof(HeraMissionSubSystem_K2_ResolveTrackedActor) == 0x000038, "Wrong size on HeraMissionSubSystem_K2_ResolveTrackedActor"); \ +static_assert(offsetof(HeraMissionSubSystem_K2_ResolveTrackedActor, InWorldContextObject) == 0x000000, "Member 'HeraMissionSubSystem_K2_ResolveTrackedActor::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionSubSystem_K2_ResolveTrackedActor, InActor) == 0x000008, "Member 'HeraMissionSubSystem_K2_ResolveTrackedActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionSubSystem_K2_ResolveTrackedActor, ReturnValue) == 0x000030, "Member 'HeraMissionSubSystem_K2_ResolveTrackedActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionSubSystem_ResolveTrackedActor \ +static_assert(alignof(HeraMissionSubSystem_ResolveTrackedActor) == 0x000008, "Wrong alignment on HeraMissionSubSystem_ResolveTrackedActor"); \ +static_assert(sizeof(HeraMissionSubSystem_ResolveTrackedActor) == 0x000030, "Wrong size on HeraMissionSubSystem_ResolveTrackedActor"); \ +static_assert(offsetof(HeraMissionSubSystem_ResolveTrackedActor, InActor) == 0x000000, "Member 'HeraMissionSubSystem_ResolveTrackedActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionSubSystem_ResolveTrackedActor, ReturnValue) == 0x000028, "Member 'HeraMissionSubSystem_ResolveTrackedActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionSubSystem_StartMission \ +static_assert(alignof(HeraMissionSubSystem_StartMission) == 0x000008, "Wrong alignment on HeraMissionSubSystem_StartMission"); \ +static_assert(sizeof(HeraMissionSubSystem_StartMission) == 0x000008, "Wrong size on HeraMissionSubSystem_StartMission"); \ +static_assert(offsetof(HeraMissionSubSystem_StartMission, InMission) == 0x000000, "Member 'HeraMissionSubSystem_StartMission::InMission' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionSubSystem_StartMissionWithTag \ +static_assert(alignof(HeraMissionSubSystem_StartMissionWithTag) == 0x000008, "Wrong alignment on HeraMissionSubSystem_StartMissionWithTag"); \ +static_assert(sizeof(HeraMissionSubSystem_StartMissionWithTag) == 0x000010, "Wrong size on HeraMissionSubSystem_StartMissionWithTag"); \ +static_assert(offsetof(HeraMissionSubSystem_StartMissionWithTag, InMission) == 0x000000, "Member 'HeraMissionSubSystem_StartMissionWithTag::InMission' has a wrong offset!"); \ +static_assert(offsetof(HeraMissionSubSystem_StartMissionWithTag, InTag) == 0x000008, "Member 'HeraMissionSubSystem_StartMissionWithTag::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraMissionSubSystem_UpdateMissions \ +static_assert(alignof(HeraMissionSubSystem_UpdateMissions) == 0x000008, "Wrong alignment on HeraMissionSubSystem_UpdateMissions"); \ +static_assert(sizeof(HeraMissionSubSystem_UpdateMissions) == 0x000008, "Wrong size on HeraMissionSubSystem_UpdateMissions"); \ +static_assert(offsetof(HeraMissionSubSystem_UpdateMissions, InObjective) == 0x000000, "Member 'HeraMissionSubSystem_UpdateMissions::InObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMissionSubSystem \ +static_assert(alignof(UHeraMissionSubSystem) == 0x000008, "Wrong alignment on UHeraMissionSubSystem"); \ +static_assert(sizeof(UHeraMissionSubSystem) == 0x000088, "Wrong size on UHeraMissionSubSystem"); \ +static_assert(offsetof(UHeraMissionSubSystem, ControlProxy) == 0x000030, "Member 'UHeraMissionSubSystem::ControlProxy' has a wrong offset!"); \ +static_assert(offsetof(UHeraMissionSubSystem, TrackedActorMapping) == 0x000038, "Member 'UHeraMissionSubSystem::TrackedActorMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraMissionSubSystemProxy \ +static_assert(alignof(AHeraMissionSubSystemProxy) == 0x000008, "Wrong alignment on AHeraMissionSubSystemProxy"); \ +static_assert(sizeof(AHeraMissionSubSystemProxy) == 0x0002B8, "Wrong size on AHeraMissionSubSystemProxy"); \ +static_assert(offsetof(AHeraMissionSubSystemProxy, MissionControl) == 0x000298, "Member 'AHeraMissionSubSystemProxy::MissionControl' has a wrong offset!"); \ +static_assert(offsetof(AHeraMissionSubSystemProxy, MissionControlActors) == 0x0002A0, "Member 'AHeraMissionSubSystemProxy::MissionControlActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraModifyDataLayerTask \ +static_assert(alignof(UHeraModifyDataLayerTask) == 0x000008, "Wrong alignment on UHeraModifyDataLayerTask"); \ +static_assert(sizeof(UHeraModifyDataLayerTask) == 0x0000A8, "Wrong size on UHeraModifyDataLayerTask"); \ +static_assert(offsetof(UHeraModifyDataLayerTask, DataLayerAssets) == 0x000088, "Member 'UHeraModifyDataLayerTask::DataLayerAssets' has a wrong offset!"); \ +static_assert(offsetof(UHeraModifyDataLayerTask, TargetState) == 0x000098, "Member 'UHeraModifyDataLayerTask::TargetState' has a wrong offset!"); \ +static_assert(offsetof(UHeraModifyDataLayerTask, bRecursive) == 0x000099, "Member 'UHeraModifyDataLayerTask::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(UHeraModifyDataLayerTask, bBlocking) == 0x00009A, "Member 'UHeraModifyDataLayerTask::bBlocking' has a wrong offset!"); \ +static_assert(offsetof(UHeraModifyDataLayerTask, TaskCompleteObjective) == 0x0000A0, "Member 'UHeraModifyDataLayerTask::TaskCompleteObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlaySequenceAutomataTask_SetHUDVisibility \ +static_assert(alignof(HeraPlaySequenceAutomataTask_SetHUDVisibility) == 0x000001, "Wrong alignment on HeraPlaySequenceAutomataTask_SetHUDVisibility"); \ +static_assert(sizeof(HeraPlaySequenceAutomataTask_SetHUDVisibility) == 0x000001, "Wrong size on HeraPlaySequenceAutomataTask_SetHUDVisibility"); \ +static_assert(offsetof(HeraPlaySequenceAutomataTask_SetHUDVisibility, bVisible) == 0x000000, "Member 'HeraPlaySequenceAutomataTask_SetHUDVisibility::bVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlaySequenceAutomataTask_GetLevelSequenceActor \ +static_assert(alignof(HeraPlaySequenceAutomataTask_GetLevelSequenceActor) == 0x000008, "Wrong alignment on HeraPlaySequenceAutomataTask_GetLevelSequenceActor"); \ +static_assert(sizeof(HeraPlaySequenceAutomataTask_GetLevelSequenceActor) == 0x000008, "Wrong size on HeraPlaySequenceAutomataTask_GetLevelSequenceActor"); \ +static_assert(offsetof(HeraPlaySequenceAutomataTask_GetLevelSequenceActor, ReturnValue) == 0x000000, "Member 'HeraPlaySequenceAutomataTask_GetLevelSequenceActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPlaySequenceAutomataTask_GetLevelSequencePlayer \ +static_assert(alignof(HeraPlaySequenceAutomataTask_GetLevelSequencePlayer) == 0x000008, "Wrong alignment on HeraPlaySequenceAutomataTask_GetLevelSequencePlayer"); \ +static_assert(sizeof(HeraPlaySequenceAutomataTask_GetLevelSequencePlayer) == 0x000008, "Wrong size on HeraPlaySequenceAutomataTask_GetLevelSequencePlayer"); \ +static_assert(offsetof(HeraPlaySequenceAutomataTask_GetLevelSequencePlayer, ReturnValue) == 0x000000, "Member 'HeraPlaySequenceAutomataTask_GetLevelSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraPlaySequenceAutomataTask \ +static_assert(alignof(UHeraPlaySequenceAutomataTask) == 0x000008, "Wrong alignment on UHeraPlaySequenceAutomataTask"); \ +static_assert(sizeof(UHeraPlaySequenceAutomataTask) == 0x000130, "Wrong size on UHeraPlaySequenceAutomataTask"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, CutsceneSequence) == 0x000088, "Member 'UHeraPlaySequenceAutomataTask::CutsceneSequence' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, CutsceneSequenceRef) == 0x0000B0, "Member 'UHeraPlaySequenceAutomataTask::CutsceneSequenceRef' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, Bindings) == 0x0000B8, "Member 'UHeraPlaySequenceAutomataTask::Bindings' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, SequenceSettings) == 0x0000C8, "Member 'UHeraPlaySequenceAutomataTask::SequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, SequenceFinishedObjective) == 0x000118, "Member 'UHeraPlaySequenceAutomataTask::SequenceFinishedObjective' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, LevelSequenceActor) == 0x000120, "Member 'UHeraPlaySequenceAutomataTask::LevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UHeraPlaySequenceAutomataTask, LevelSequencePlayer) == 0x000128, "Member 'UHeraPlaySequenceAutomataTask::LevelSequencePlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraStreamLevelTask \ +static_assert(alignof(UHeraStreamLevelTask) == 0x000008, "Wrong alignment on UHeraStreamLevelTask"); \ +static_assert(sizeof(UHeraStreamLevelTask) == 0x0000C8, "Wrong size on UHeraStreamLevelTask"); \ +static_assert(offsetof(UHeraStreamLevelTask, Level) == 0x000088, "Member 'UHeraStreamLevelTask::Level' has a wrong offset!"); \ +static_assert(offsetof(UHeraStreamLevelTask, Type) == 0x0000B0, "Member 'UHeraStreamLevelTask::Type' has a wrong offset!"); \ +static_assert(offsetof(UHeraStreamLevelTask, bVisibleOnLoad) == 0x0000B4, "Member 'UHeraStreamLevelTask::bVisibleOnLoad' has a wrong offset!"); \ +static_assert(offsetof(UHeraStreamLevelTask, TaskCompleteObjective) == 0x0000B8, "Member 'UHeraStreamLevelTask::TaskCompleteObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraStreamMultiLevelTask \ +static_assert(alignof(UHeraStreamMultiLevelTask) == 0x000010, "Wrong alignment on UHeraStreamMultiLevelTask"); \ +static_assert(sizeof(UHeraStreamMultiLevelTask) == 0x0000C0, "Wrong size on UHeraStreamMultiLevelTask"); \ +static_assert(offsetof(UHeraStreamMultiLevelTask, Levels) == 0x000088, "Member 'UHeraStreamMultiLevelTask::Levels' has a wrong offset!"); \ +static_assert(offsetof(UHeraStreamMultiLevelTask, TargetState) == 0x000098, "Member 'UHeraStreamMultiLevelTask::TargetState' has a wrong offset!"); \ +static_assert(offsetof(UHeraStreamMultiLevelTask, TaskCompleteObjective) == 0x0000A0, "Member 'UHeraStreamMultiLevelTask::TaskCompleteObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Hera_BoxTriggerBase_C_UserConstructionScript \ +static_assert(alignof(BP_Hera_BoxTriggerBase_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Hera_BoxTriggerBase_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Hera_BoxTriggerBase_C_UserConstructionScript) == 0x0002C0, "Wrong size on BP_Hera_BoxTriggerBase_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, DebugBool) == 0x000000, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::DebugBool' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_BooleanNOR_ReturnValue) == 0x000009, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_BooleanNOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_GetComponentBounds_Origin) == 0x000010, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_GetComponentBounds_BoxExtent) == 0x000028, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_GetComponentBounds_SphereRadius) == 0x000040, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_BreakVector_X) == 0x000048, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_BreakVector_Y) == 0x000050, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_BreakVector_Z) == 0x000058, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue) == 0x000060, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Log_ReturnValue) == 0x000078, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Log_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_GetDisplayName_ReturnValue) == 0x000088, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Conv_StringToText_ReturnValue) == 0x0000A0, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue_1) == 0x0000B8, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000D0, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x0000D8, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0001C0, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_UserConstructionScript, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x0001D8, "Member 'BP_Hera_BoxTriggerBase_C_UserConstructionScript::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase \ +static_assert(alignof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase) == 0x000008, "Wrong alignment on BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase"); \ +static_assert(sizeof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase) == 0x000190, "Wrong size on BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, EntryPoint) == 0x000000, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, Temp_bool_True_if_break_was_hit_Variable) == 0x00000C, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_Not_PreBool_ReturnValue) == 0x000014, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OverlappedComponent_1) == 0x000018, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000020, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000028, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherBodyIndex_1) == 0x000030, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_bFromSweep) == 0x000034, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_SweepResult) == 0x000038, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000120, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherActor) == 0x000128, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherComp) == 0x000130, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000138, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter) == 0x000140, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPins) == 0x000148, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_1) == 0x000150, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPins_1) == 0x000158, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_SwitchEnum_CmpSuccess) == 0x000159, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_SwitchEnum_CmpSuccess_1) == 0x00015A, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_GetOverlappingActors_OverlappingActors) == 0x000160, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_Array_Get_Item) == 0x000170, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_Array_Length_ReturnValue) == 0x000178, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_2) == 0x000180, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_K2_GetPlayerCharacterFromActor_OutPins_2) == 0x000188, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_K2_GetPlayerCharacterFromActor_OutPins_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_Less_IntInt_ReturnValue) == 0x000189, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, K2Node_SwitchEnum_CmpSuccess_2) == 0x00018A, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase, CallFunc_BooleanAND_ReturnValue) == 0x00018B, "Member 'BP_Hera_BoxTriggerBase_C_ExecuteUbergraph_BP_Hera_BoxTriggerBase::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__ExampleObjectiveTrigger_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_Hera_BoxTriggerBase_C_BndEvt__BooleanTrigger_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Hera_BoxTriggerBase_C \ +static_assert(alignof(ABP_Hera_BoxTriggerBase_C) == 0x000008, "Wrong alignment on ABP_Hera_BoxTriggerBase_C"); \ +static_assert(sizeof(ABP_Hera_BoxTriggerBase_C) == 0x0002E8, "Wrong size on ABP_Hera_BoxTriggerBase_C"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_Hera_BoxTriggerBase_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, BoxCollision) == 0x0002A8, "Member 'ABP_Hera_BoxTriggerBase_C::BoxCollision' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, Text_Property) == 0x0002B0, "Member 'ABP_Hera_BoxTriggerBase_C::Text_Property' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, Text_Name) == 0x0002B8, "Member 'ABP_Hera_BoxTriggerBase_C::Text_Name' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, HeraMissionActor) == 0x0002C0, "Member 'ABP_Hera_BoxTriggerBase_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, VisibleInGame) == 0x0002C8, "Member 'ABP_Hera_BoxTriggerBase_C::VisibleInGame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Hera_BoxTriggerBase_C, Size) == 0x0002D0, "Member 'ABP_Hera_BoxTriggerBase_C::Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraCaption \ +static_assert(alignof(FHeraCaption) == 0x000008, "Wrong alignment on FHeraCaption"); \ +static_assert(sizeof(FHeraCaption) == 0x000020, "Wrong size on FHeraCaption"); \ +static_assert(offsetof(FHeraCaption, DisplayText) == 0x000000, "Member 'FHeraCaption::DisplayText' has a wrong offset!"); \ +static_assert(offsetof(FHeraCaption, Type) == 0x000018, "Member 'FHeraCaption::Type' has a wrong offset!"); \ +static_assert(offsetof(FHeraCaption, Priority) == 0x000019, "Member 'FHeraCaption::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCaptionsDataAsset \ +static_assert(alignof(UHeraCaptionsDataAsset) == 0x000008, "Wrong alignment on UHeraCaptionsDataAsset"); \ +static_assert(sizeof(UHeraCaptionsDataAsset) == 0x000080, "Wrong size on UHeraCaptionsDataAsset"); \ +static_assert(offsetof(UHeraCaptionsDataAsset, AudioEventToCaptions) == 0x000030, "Member 'UHeraCaptionsDataAsset::AudioEventToCaptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCaptionsSettings \ +static_assert(alignof(UHeraCaptionsSettings) == 0x000008, "Wrong alignment on UHeraCaptionsSettings"); \ +static_assert(sizeof(UHeraCaptionsSettings) == 0x000060, "Wrong size on UHeraCaptionsSettings"); \ +static_assert(offsetof(UHeraCaptionsSettings, CaptionsAsset) == 0x000038, "Member 'UHeraCaptionsSettings::CaptionsAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCaptionsSubsystem \ +static_assert(alignof(UHeraCaptionsSubsystem) == 0x000008, "Wrong alignment on UHeraCaptionsSubsystem"); \ +static_assert(sizeof(UHeraCaptionsSubsystem) == 0x0000A0, "Wrong size on UHeraCaptionsSubsystem"); \ +static_assert(offsetof(UHeraCaptionsSubsystem, AudioEventToCaptions) == 0x000048, "Member 'UHeraCaptionsSubsystem::AudioEventToCaptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCaptionsWidgetController \ +static_assert(alignof(UHeraCaptionsWidgetController) == 0x000008, "Wrong alignment on UHeraCaptionsWidgetController"); \ +static_assert(sizeof(UHeraCaptionsWidgetController) == 0x0002E8, "Wrong size on UHeraCaptionsWidgetController"); \ +static_assert(offsetof(UHeraCaptionsWidgetController, CloseCaptionWidgetArray) == 0x0002C8, "Member 'UHeraCaptionsWidgetController::CloseCaptionWidgetArray' has a wrong offset!"); \ +static_assert(offsetof(UHeraCaptionsWidgetController, CaptionOn) == 0x0002D8, "Member 'UHeraCaptionsWidgetController::CaptionOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraCaptionWidget \ +static_assert(alignof(UHeraCaptionWidget) == 0x000008, "Wrong alignment on UHeraCaptionWidget"); \ +static_assert(sizeof(UHeraCaptionWidget) == 0x0002F0, "Wrong size on UHeraCaptionWidget"); \ +static_assert(offsetof(UHeraCaptionWidget, CloseCaptionText) == 0x0002C8, "Member 'UHeraCaptionWidget::CloseCaptionText' has a wrong offset!"); \ +static_assert(offsetof(UHeraCaptionWidget, CloseCaptionIconSwitcher) == 0x0002D0, "Member 'UHeraCaptionWidget::CloseCaptionIconSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UHeraCaptionWidget, DirectionIcon) == 0x0002D8, "Member 'UHeraCaptionWidget::DirectionIcon' has a wrong offset!"); \ +static_assert(offsetof(UHeraCaptionWidget, ShowTime) == 0x0002E0, "Member 'UHeraCaptionWidget::ShowTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot \ +static_assert(alignof(GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot) == 0x000004, "Wrong alignment on GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot"); \ +static_assert(sizeof(GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot) == 0x000004, "Wrong size on GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot"); \ +static_assert(offsetof(GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot, EntryPoint) == 0x000000, "Member 'GA_Weapon_Fire_InstantShot_C_ExecuteUbergraph_GA_Weapon_Fire_InstantShot::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Weapon_Fire_InstantShot_C \ +static_assert(alignof(UGA_Weapon_Fire_InstantShot_C) == 0x000008, "Wrong alignment on UGA_Weapon_Fire_InstantShot_C"); \ +static_assert(sizeof(UGA_Weapon_Fire_InstantShot_C) == 0x000768, "Wrong size on UGA_Weapon_Fire_InstantShot_C"); \ +static_assert(offsetof(UGA_Weapon_Fire_InstantShot_C, UberGraphFrame_GA_Weapon_Fire_InstantShot_C) == 0x000760, "Member 'UGA_Weapon_Fire_InstantShot_C::UberGraphFrame_GA_Weapon_Fire_InstantShot_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFXActor_EditorTick \ +static_assert(alignof(HeraFXActor_EditorTick) == 0x000004, "Wrong alignment on HeraFXActor_EditorTick"); \ +static_assert(sizeof(HeraFXActor_EditorTick) == 0x000004, "Wrong size on HeraFXActor_EditorTick"); \ +static_assert(offsetof(HeraFXActor_EditorTick, DeltaTime) == 0x000000, "Member 'HeraFXActor_EditorTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFXActor_GetAudioComponent \ +static_assert(alignof(HeraFXActor_GetAudioComponent) == 0x000008, "Wrong alignment on HeraFXActor_GetAudioComponent"); \ +static_assert(sizeof(HeraFXActor_GetAudioComponent) == 0x000008, "Wrong size on HeraFXActor_GetAudioComponent"); \ +static_assert(offsetof(HeraFXActor_GetAudioComponent, ReturnValue) == 0x000000, "Member 'HeraFXActor_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFXActor_GetNiagaraComponent \ +static_assert(alignof(HeraFXActor_GetNiagaraComponent) == 0x000008, "Wrong alignment on HeraFXActor_GetNiagaraComponent"); \ +static_assert(sizeof(HeraFXActor_GetNiagaraComponent) == 0x000008, "Wrong size on HeraFXActor_GetNiagaraComponent"); \ +static_assert(offsetof(HeraFXActor_GetNiagaraComponent, ReturnValue) == 0x000000, "Member 'HeraFXActor_GetNiagaraComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraFXActor \ +static_assert(alignof(AHeraFXActor) == 0x000008, "Wrong alignment on AHeraFXActor"); \ +static_assert(sizeof(AHeraFXActor) == 0x0002A8, "Wrong size on AHeraFXActor"); \ +static_assert(offsetof(AHeraFXActor, NiagaraComponent) == 0x000298, "Member 'AHeraFXActor::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraFXActor, AudioComponent) == 0x0002A0, "Member 'AHeraFXActor::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraFXBlueprintFunctionLibrary \ +static_assert(alignof(UHeraFXBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UHeraFXBlueprintFunctionLibrary"); \ +static_assert(sizeof(UHeraFXBlueprintFunctionLibrary) == 0x000028, "Wrong size on UHeraFXBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_HeraFXMassActor_EditorTick \ +static_assert(alignof(HeraFXMassActor_EditorTick) == 0x000004, "Wrong alignment on HeraFXMassActor_EditorTick"); \ +static_assert(sizeof(HeraFXMassActor_EditorTick) == 0x000004, "Wrong size on HeraFXMassActor_EditorTick"); \ +static_assert(offsetof(HeraFXMassActor_EditorTick, DeltaTime) == 0x000000, "Member 'HeraFXMassActor_EditorTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFXMassActor_GetAudioComponent \ +static_assert(alignof(HeraFXMassActor_GetAudioComponent) == 0x000008, "Wrong alignment on HeraFXMassActor_GetAudioComponent"); \ +static_assert(sizeof(HeraFXMassActor_GetAudioComponent) == 0x000008, "Wrong size on HeraFXMassActor_GetAudioComponent"); \ +static_assert(offsetof(HeraFXMassActor_GetAudioComponent, ReturnValue) == 0x000000, "Member 'HeraFXMassActor_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraFXMassActor_GetNiagaraComponent \ +static_assert(alignof(HeraFXMassActor_GetNiagaraComponent) == 0x000008, "Wrong alignment on HeraFXMassActor_GetNiagaraComponent"); \ +static_assert(sizeof(HeraFXMassActor_GetNiagaraComponent) == 0x000008, "Wrong size on HeraFXMassActor_GetNiagaraComponent"); \ +static_assert(offsetof(HeraFXMassActor_GetNiagaraComponent, ReturnValue) == 0x000000, "Member 'HeraFXMassActor_GetNiagaraComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraFXMassActor \ +static_assert(alignof(AHeraFXMassActor) == 0x000008, "Wrong alignment on AHeraFXMassActor"); \ +static_assert(sizeof(AHeraFXMassActor) == 0x0002A8, "Wrong size on AHeraFXMassActor"); \ +static_assert(offsetof(AHeraFXMassActor, NiagaraComponent) == 0x000298, "Member 'AHeraFXMassActor::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraFXMassActor, AudioComponent) == 0x0002A0, "Member 'AHeraFXMassActor::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraReactionComponent_OnReactEvent \ +static_assert(alignof(HeraReactionComponent_OnReactEvent) == 0x000004, "Wrong alignment on HeraReactionComponent_OnReactEvent"); \ +static_assert(sizeof(HeraReactionComponent_OnReactEvent) == 0x00000C, "Wrong size on HeraReactionComponent_OnReactEvent"); \ +static_assert(offsetof(HeraReactionComponent_OnReactEvent, InIntensity) == 0x000000, "Member 'HeraReactionComponent_OnReactEvent::InIntensity' has a wrong offset!"); \ +static_assert(offsetof(HeraReactionComponent_OnReactEvent, InReactionTag) == 0x000004, "Member 'HeraReactionComponent_OnReactEvent::InReactionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraReactionComponent \ +static_assert(alignof(UHeraReactionComponent) == 0x000010, "Wrong alignment on UHeraReactionComponent"); \ +static_assert(sizeof(UHeraReactionComponent) == 0x0002B0, "Wrong size on UHeraReactionComponent"); \ +static_assert(offsetof(UHeraReactionComponent, OnReactEventDelegate) == 0x0002A0, "Member 'UHeraReactionComponent::OnReactEventDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraReactionDebugSettings \ +static_assert(alignof(UHeraReactionDebugSettings) == 0x000008, "Wrong alignment on UHeraReactionDebugSettings"); \ +static_assert(sizeof(UHeraReactionDebugSettings) == 0x0000B8, "Wrong size on UHeraReactionDebugSettings"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionDebugDrawFlags) == 0x000044, "Member 'UHeraReactionDebugSettings::ReactionDebugDrawFlags' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionTagTextScale) == 0x000048, "Member 'UHeraReactionDebugSettings::ReactionTagTextScale' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, EventDebugDuration) == 0x00004C, "Member 'UHeraReactionDebugSettings::EventDebugDuration' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionDistanceFilter) == 0x000050, "Member 'UHeraReactionDebugSettings::ReactionDistanceFilter' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionEventLocationColour) == 0x000054, "Member 'UHeraReactionDebugSettings::ReactionEventLocationColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionEventRadiusColour) == 0x000064, "Member 'UHeraReactionDebugSettings::ReactionEventRadiusColour' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ComponentLocationColourInactive) == 0x000074, "Member 'UHeraReactionDebugSettings::ComponentLocationColourInactive' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ComponentLocationColourActive) == 0x000084, "Member 'UHeraReactionDebugSettings::ComponentLocationColourActive' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ComponentActiveDuration) == 0x000094, "Member 'UHeraReactionDebugSettings::ComponentActiveDuration' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionDebugSettings, ReactionTagFilter) == 0x000098, "Member 'UHeraReactionDebugSettings::ReactionTagFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraReactionSubsystem_AddDisabledTags \ +static_assert(alignof(HeraReactionSubsystem_AddDisabledTags) == 0x000008, "Wrong alignment on HeraReactionSubsystem_AddDisabledTags"); \ +static_assert(sizeof(HeraReactionSubsystem_AddDisabledTags) == 0x000020, "Wrong size on HeraReactionSubsystem_AddDisabledTags"); \ +static_assert(offsetof(HeraReactionSubsystem_AddDisabledTags, InTags) == 0x000000, "Member 'HeraReactionSubsystem_AddDisabledTags::InTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraReactionSubsystem_GenerateReactionEvent \ +static_assert(alignof(HeraReactionSubsystem_GenerateReactionEvent) == 0x000008, "Wrong alignment on HeraReactionSubsystem_GenerateReactionEvent"); \ +static_assert(sizeof(HeraReactionSubsystem_GenerateReactionEvent) == 0x000028, "Wrong size on HeraReactionSubsystem_GenerateReactionEvent"); \ +static_assert(offsetof(HeraReactionSubsystem_GenerateReactionEvent, InLocation) == 0x000000, "Member 'HeraReactionSubsystem_GenerateReactionEvent::InLocation' has a wrong offset!"); \ +static_assert(offsetof(HeraReactionSubsystem_GenerateReactionEvent, InMaxDistance) == 0x000018, "Member 'HeraReactionSubsystem_GenerateReactionEvent::InMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(HeraReactionSubsystem_GenerateReactionEvent, InReactionTag) == 0x00001C, "Member 'HeraReactionSubsystem_GenerateReactionEvent::InReactionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraReactionSubsystem_RemoveDisabledTags \ +static_assert(alignof(HeraReactionSubsystem_RemoveDisabledTags) == 0x000008, "Wrong alignment on HeraReactionSubsystem_RemoveDisabledTags"); \ +static_assert(sizeof(HeraReactionSubsystem_RemoveDisabledTags) == 0x000020, "Wrong size on HeraReactionSubsystem_RemoveDisabledTags"); \ +static_assert(offsetof(HeraReactionSubsystem_RemoveDisabledTags, InTags) == 0x000000, "Member 'HeraReactionSubsystem_RemoveDisabledTags::InTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraReactionSubsystem \ +static_assert(alignof(UHeraReactionSubsystem) == 0x000008, "Wrong alignment on UHeraReactionSubsystem"); \ +static_assert(sizeof(UHeraReactionSubsystem) == 0x000060, "Wrong size on UHeraReactionSubsystem"); \ +static_assert(offsetof(UHeraReactionSubsystem, DisabledTags) == 0x000030, "Member 'UHeraReactionSubsystem::DisabledTags' has a wrong offset!"); \ +static_assert(offsetof(UHeraReactionSubsystem, Components) == 0x000050, "Member 'UHeraReactionSubsystem::Components' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraGraphicsRVTQuadTreeNode \ +static_assert(alignof(FHeraGraphicsRVTQuadTreeNode) == 0x000008, "Wrong alignment on FHeraGraphicsRVTQuadTreeNode"); \ +static_assert(sizeof(FHeraGraphicsRVTQuadTreeNode) == 0x000050, "Wrong size on FHeraGraphicsRVTQuadTreeNode"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTreeNode, Depth) == 0x000000, "Member 'FHeraGraphicsRVTQuadTreeNode::Depth' has a wrong offset!"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTreeNode, Bounds) == 0x000008, "Member 'FHeraGraphicsRVTQuadTreeNode::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTreeNode, Colour) == 0x000030, "Member 'FHeraGraphicsRVTQuadTreeNode::Colour' has a wrong offset!"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTreeNode, Children) == 0x000040, "Member 'FHeraGraphicsRVTQuadTreeNode::Children' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraGraphicsRVTQuadTree \ +static_assert(alignof(FHeraGraphicsRVTQuadTree) == 0x000008, "Wrong alignment on FHeraGraphicsRVTQuadTree"); \ +static_assert(sizeof(FHeraGraphicsRVTQuadTree) == 0x000030, "Wrong size on FHeraGraphicsRVTQuadTree"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTree, TextureSize) == 0x000000, "Member 'FHeraGraphicsRVTQuadTree::TextureSize' has a wrong offset!"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTree, QuadTreeSize) == 0x000010, "Member 'FHeraGraphicsRVTQuadTree::QuadTreeSize' has a wrong offset!"); \ +static_assert(offsetof(FHeraGraphicsRVTQuadTree, CompressedTreeNodes) == 0x000020, "Member 'FHeraGraphicsRVTQuadTree::CompressedTreeNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraBufferToCapture \ +static_assert(alignof(FHeraBufferToCapture) == 0x000008, "Wrong alignment on FHeraBufferToCapture"); \ +static_assert(sizeof(FHeraBufferToCapture) == 0x000010, "Wrong size on FHeraBufferToCapture"); \ +static_assert(offsetof(FHeraBufferToCapture, Buffer) == 0x000000, "Member 'FHeraBufferToCapture::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FHeraBufferToCapture, TextureTarget) == 0x000008, "Member 'FHeraBufferToCapture::TextureTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial \ +static_assert(alignof(HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial) == 0x000008, "Wrong alignment on HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial"); \ +static_assert(sizeof(HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial) == 0x000008, "Wrong size on HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial"); \ +static_assert(offsetof(HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial, SortPriorityMaterialDynamic) == 0x000000, "Member 'HeraGraphicsRuntimeVirtualTextureBrush_OnEditorOnlySetupDynamicMaterial::SortPriorityMaterialDynamic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial \ +static_assert(alignof(HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial) == 0x000008, "Wrong alignment on HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial"); \ +static_assert(sizeof(HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial) == 0x000008, "Wrong size on HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial"); \ +static_assert(offsetof(HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial, InMID) == 0x000000, "Member 'HeraGraphicsRuntimeVirtualTextureBrush_OnSetupDynamicMaterial::InMID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraGraphicsRuntimeVirtualTextureBrush \ +static_assert(alignof(AHeraGraphicsRuntimeVirtualTextureBrush) == 0x000008, "Wrong alignment on AHeraGraphicsRuntimeVirtualTextureBrush"); \ +static_assert(sizeof(AHeraGraphicsRuntimeVirtualTextureBrush) == 0x0002B8, "Wrong size on AHeraGraphicsRuntimeVirtualTextureBrush"); \ +static_assert(offsetof(AHeraGraphicsRuntimeVirtualTextureBrush, SceneComponent) == 0x000298, "Member 'AHeraGraphicsRuntimeVirtualTextureBrush::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraGraphicsRuntimeVirtualTextureBrush, PlaneMeshComp) == 0x0002A0, "Member 'AHeraGraphicsRuntimeVirtualTextureBrush::PlaneMeshComp' has a wrong offset!"); \ +static_assert(offsetof(AHeraGraphicsRuntimeVirtualTextureBrush, RuntimeVirtualTexture) == 0x0002A8, "Member 'AHeraGraphicsRuntimeVirtualTextureBrush::RuntimeVirtualTexture' has a wrong offset!"); \ +static_assert(offsetof(AHeraGraphicsRuntimeVirtualTextureBrush, RvtMaterialInstanceDynamic) == 0x0002B0, "Member 'AHeraGraphicsRuntimeVirtualTextureBrush::RvtMaterialInstanceDynamic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGraphicsRuntimeVirtualTextureComponent \ +static_assert(alignof(UHeraGraphicsRuntimeVirtualTextureComponent) == 0x000010, "Wrong alignment on UHeraGraphicsRuntimeVirtualTextureComponent"); \ +static_assert(sizeof(UHeraGraphicsRuntimeVirtualTextureComponent) == 0x000360, "Wrong size on UHeraGraphicsRuntimeVirtualTextureComponent"); \ +static_assert(offsetof(UHeraGraphicsRuntimeVirtualTextureComponent, TextureQuadTree) == 0x000328, "Member 'UHeraGraphicsRuntimeVirtualTextureComponent::TextureQuadTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraGraphicsRuntimeVirtualTextureVolume_Query \ +static_assert(alignof(HeraGraphicsRuntimeVirtualTextureVolume_Query) == 0x000008, "Wrong alignment on HeraGraphicsRuntimeVirtualTextureVolume_Query"); \ +static_assert(sizeof(HeraGraphicsRuntimeVirtualTextureVolume_Query) == 0x000030, "Wrong size on HeraGraphicsRuntimeVirtualTextureVolume_Query"); \ +static_assert(offsetof(HeraGraphicsRuntimeVirtualTextureVolume_Query, InWorldLocation) == 0x000000, "Member 'HeraGraphicsRuntimeVirtualTextureVolume_Query::InWorldLocation' has a wrong offset!"); \ +static_assert(offsetof(HeraGraphicsRuntimeVirtualTextureVolume_Query, OutParams) == 0x000018, "Member 'HeraGraphicsRuntimeVirtualTextureVolume_Query::OutParams' has a wrong offset!"); \ +static_assert(offsetof(HeraGraphicsRuntimeVirtualTextureVolume_Query, ReturnValue) == 0x000028, "Member 'HeraGraphicsRuntimeVirtualTextureVolume_Query::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraGraphicsRuntimeVirtualTextureVolume \ +static_assert(alignof(AHeraGraphicsRuntimeVirtualTextureVolume) == 0x000008, "Wrong alignment on AHeraGraphicsRuntimeVirtualTextureVolume"); \ +static_assert(sizeof(AHeraGraphicsRuntimeVirtualTextureVolume) == 0x0002A0, "Wrong size on AHeraGraphicsRuntimeVirtualTextureVolume"); \ +static_assert(offsetof(AHeraGraphicsRuntimeVirtualTextureVolume, VirtualTextureComponent) == 0x000298, "Member 'AHeraGraphicsRuntimeVirtualTextureVolume::VirtualTextureComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGraphicsRuntimeVirtualTextureVolumeManager \ +static_assert(alignof(UHeraGraphicsRuntimeVirtualTextureVolumeManager) == 0x000008, "Wrong alignment on UHeraGraphicsRuntimeVirtualTextureVolumeManager"); \ +static_assert(sizeof(UHeraGraphicsRuntimeVirtualTextureVolumeManager) == 0x000038, "Wrong size on UHeraGraphicsRuntimeVirtualTextureVolumeManager"); \ +static_assert(offsetof(UHeraGraphicsRuntimeVirtualTextureVolumeManager, Volumes) == 0x000028, "Member 'UHeraGraphicsRuntimeVirtualTextureVolumeManager::Volumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGraphicsSettings \ +static_assert(alignof(UHeraGraphicsSettings) == 0x000008, "Wrong alignment on UHeraGraphicsSettings"); \ +static_assert(sizeof(UHeraGraphicsSettings) == 0x000088, "Wrong size on UHeraGraphicsSettings"); \ +static_assert(offsetof(UHeraGraphicsSettings, SnowBuildUpPropertyName) == 0x000038, "Member 'UHeraGraphicsSettings::SnowBuildUpPropertyName' has a wrong offset!"); \ +static_assert(offsetof(UHeraGraphicsSettings, SnowMaterialRVTPropertyName) == 0x000040, "Member 'UHeraGraphicsSettings::SnowMaterialRVTPropertyName' has a wrong offset!"); \ +static_assert(offsetof(UHeraGraphicsSettings, bLowResolutionBufferEnabled) == 0x000048, "Member 'UHeraGraphicsSettings::bLowResolutionBufferEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHeraGraphicsSettings, BuffersToCapture) == 0x000050, "Member 'UHeraGraphicsSettings::BuffersToCapture' has a wrong offset!"); \ +static_assert(offsetof(UHeraGraphicsSettings, RvtQuadTreeDebugMaterial) == 0x000060, "Member 'UHeraGraphicsSettings::RvtQuadTreeDebugMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraGraphicsSubsystem \ +static_assert(alignof(UHeraGraphicsSubsystem) == 0x000008, "Wrong alignment on UHeraGraphicsSubsystem"); \ +static_assert(sizeof(UHeraGraphicsSubsystem) == 0x000048, "Wrong size on UHeraGraphicsSubsystem"); \ +static_assert(offsetof(UHeraGraphicsSubsystem, RuntimeVirtualTextureVolumeManager) == 0x000040, "Member 'UHeraGraphicsSubsystem::RuntimeVirtualTextureVolumeManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLoudnessResults \ +static_assert(alignof(FLoudnessResults) == 0x000004, "Wrong alignment on FLoudnessResults"); \ +static_assert(sizeof(FLoudnessResults) == 0x000010, "Wrong size on FLoudnessResults"); \ +static_assert(offsetof(FLoudnessResults, Loudness) == 0x000000, "Member 'FLoudnessResults::Loudness' has a wrong offset!"); \ +static_assert(offsetof(FLoudnessResults, NormalizedLoudness) == 0x000004, "Member 'FLoudnessResults::NormalizedLoudness' has a wrong offset!"); \ +static_assert(offsetof(FLoudnessResults, PerceptualEnergy) == 0x000008, "Member 'FLoudnessResults::PerceptualEnergy' has a wrong offset!"); \ +static_assert(offsetof(FLoudnessResults, TimeSeconds) == 0x00000C, "Member 'FLoudnessResults::TimeSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeterResults \ +static_assert(alignof(FMeterResults) == 0x000004, "Wrong alignment on FMeterResults"); \ +static_assert(sizeof(FMeterResults) == 0x000014, "Wrong size on FMeterResults"); \ +static_assert(offsetof(FMeterResults, TimeSeconds) == 0x000000, "Member 'FMeterResults::TimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(FMeterResults, MeterValue) == 0x000004, "Member 'FMeterResults::MeterValue' has a wrong offset!"); \ +static_assert(offsetof(FMeterResults, PeakValue) == 0x000008, "Member 'FMeterResults::PeakValue' has a wrong offset!"); \ +static_assert(offsetof(FMeterResults, NumSamplesClipping) == 0x00000C, "Member 'FMeterResults::NumSamplesClipping' has a wrong offset!"); \ +static_assert(offsetof(FMeterResults, ClippingValue) == 0x000010, "Member 'FMeterResults::ClippingValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSynesthesiaSpectrumResults \ +static_assert(alignof(FSynesthesiaSpectrumResults) == 0x000008, "Wrong alignment on FSynesthesiaSpectrumResults"); \ +static_assert(sizeof(FSynesthesiaSpectrumResults) == 0x000018, "Wrong size on FSynesthesiaSpectrumResults"); \ +static_assert(offsetof(FSynesthesiaSpectrumResults, TimeSeconds) == 0x000000, "Member 'FSynesthesiaSpectrumResults::TimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(FSynesthesiaSpectrumResults, SpectrumValues) == 0x000008, "Member 'FSynesthesiaSpectrumResults::SpectrumValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioSynesthesiaSettings \ +static_assert(alignof(UAudioSynesthesiaSettings) == 0x000008, "Wrong alignment on UAudioSynesthesiaSettings"); \ +static_assert(sizeof(UAudioSynesthesiaSettings) == 0x000028, "Wrong size on UAudioSynesthesiaSettings"); \ + +#define DUMPER7_ASSERTS_UAudioSynesthesiaNRTSettings \ +static_assert(alignof(UAudioSynesthesiaNRTSettings) == 0x000008, "Wrong alignment on UAudioSynesthesiaNRTSettings"); \ +static_assert(sizeof(UAudioSynesthesiaNRTSettings) == 0x000028, "Wrong size on UAudioSynesthesiaNRTSettings"); \ + +#define DUMPER7_ASSERTS_UAudioSynesthesiaNRT \ +static_assert(alignof(UAudioSynesthesiaNRT) == 0x000008, "Wrong alignment on UAudioSynesthesiaNRT"); \ +static_assert(sizeof(UAudioSynesthesiaNRT) == 0x000078, "Wrong size on UAudioSynesthesiaNRT"); \ + +#define DUMPER7_ASSERTS_UConstantQNRTSettings \ +static_assert(alignof(UConstantQNRTSettings) == 0x000008, "Wrong alignment on UConstantQNRTSettings"); \ +static_assert(sizeof(UConstantQNRTSettings) == 0x000048, "Wrong size on UConstantQNRTSettings"); \ +static_assert(offsetof(UConstantQNRTSettings, StartingFrequency) == 0x000028, "Member 'UConstantQNRTSettings::StartingFrequency' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, NumBands) == 0x00002C, "Member 'UConstantQNRTSettings::NumBands' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, NumBandsPerOctave) == 0x000030, "Member 'UConstantQNRTSettings::NumBandsPerOctave' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, AnalysisPeriod) == 0x000034, "Member 'UConstantQNRTSettings::AnalysisPeriod' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, bDownmixToMono) == 0x000038, "Member 'UConstantQNRTSettings::bDownmixToMono' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, FFTSize) == 0x000039, "Member 'UConstantQNRTSettings::FFTSize' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, WindowType) == 0x00003A, "Member 'UConstantQNRTSettings::WindowType' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, SpectrumType) == 0x00003B, "Member 'UConstantQNRTSettings::SpectrumType' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, BandWidthStretch) == 0x00003C, "Member 'UConstantQNRTSettings::BandWidthStretch' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, CQTNormalization) == 0x000040, "Member 'UConstantQNRTSettings::CQTNormalization' has a wrong offset!"); \ +static_assert(offsetof(UConstantQNRTSettings, NoiseFloorDb) == 0x000044, "Member 'UConstantQNRTSettings::NoiseFloorDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstantQNRT_GetChannelConstantQAtTime \ +static_assert(alignof(ConstantQNRT_GetChannelConstantQAtTime) == 0x000008, "Wrong alignment on ConstantQNRT_GetChannelConstantQAtTime"); \ +static_assert(sizeof(ConstantQNRT_GetChannelConstantQAtTime) == 0x000018, "Wrong size on ConstantQNRT_GetChannelConstantQAtTime"); \ +static_assert(offsetof(ConstantQNRT_GetChannelConstantQAtTime, InSeconds) == 0x000000, "Member 'ConstantQNRT_GetChannelConstantQAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(ConstantQNRT_GetChannelConstantQAtTime, InChannel) == 0x000004, "Member 'ConstantQNRT_GetChannelConstantQAtTime::InChannel' has a wrong offset!"); \ +static_assert(offsetof(ConstantQNRT_GetChannelConstantQAtTime, OutConstantQ) == 0x000008, "Member 'ConstantQNRT_GetChannelConstantQAtTime::OutConstantQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConstantQNRT_GetNormalizedChannelConstantQAtTime \ +static_assert(alignof(ConstantQNRT_GetNormalizedChannelConstantQAtTime) == 0x000008, "Wrong alignment on ConstantQNRT_GetNormalizedChannelConstantQAtTime"); \ +static_assert(sizeof(ConstantQNRT_GetNormalizedChannelConstantQAtTime) == 0x000018, "Wrong size on ConstantQNRT_GetNormalizedChannelConstantQAtTime"); \ +static_assert(offsetof(ConstantQNRT_GetNormalizedChannelConstantQAtTime, InSeconds) == 0x000000, "Member 'ConstantQNRT_GetNormalizedChannelConstantQAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(ConstantQNRT_GetNormalizedChannelConstantQAtTime, InChannel) == 0x000004, "Member 'ConstantQNRT_GetNormalizedChannelConstantQAtTime::InChannel' has a wrong offset!"); \ +static_assert(offsetof(ConstantQNRT_GetNormalizedChannelConstantQAtTime, OutConstantQ) == 0x000008, "Member 'ConstantQNRT_GetNormalizedChannelConstantQAtTime::OutConstantQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConstantQNRT \ +static_assert(alignof(UConstantQNRT) == 0x000008, "Wrong alignment on UConstantQNRT"); \ +static_assert(sizeof(UConstantQNRT) == 0x000080, "Wrong size on UConstantQNRT"); \ +static_assert(offsetof(UConstantQNRT, Settings) == 0x000078, "Member 'UConstantQNRT::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoudnessSettings \ +static_assert(alignof(ULoudnessSettings) == 0x000008, "Wrong alignment on ULoudnessSettings"); \ +static_assert(sizeof(ULoudnessSettings) == 0x000040, "Wrong size on ULoudnessSettings"); \ +static_assert(offsetof(ULoudnessSettings, AnalysisPeriod) == 0x000028, "Member 'ULoudnessSettings::AnalysisPeriod' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessSettings, MinimumFrequency) == 0x00002C, "Member 'ULoudnessSettings::MinimumFrequency' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessSettings, MaximumFrequency) == 0x000030, "Member 'ULoudnessSettings::MaximumFrequency' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessSettings, CurveType) == 0x000034, "Member 'ULoudnessSettings::CurveType' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessSettings, NoiseFloorDb) == 0x000038, "Member 'ULoudnessSettings::NoiseFloorDb' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessSettings, ExpectedMaxLoudness) == 0x00003C, "Member 'ULoudnessSettings::ExpectedMaxLoudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoudnessAnalyzer \ +static_assert(alignof(ULoudnessAnalyzer) == 0x000008, "Wrong alignment on ULoudnessAnalyzer"); \ +static_assert(sizeof(ULoudnessAnalyzer) == 0x0000D8, "Wrong size on ULoudnessAnalyzer"); \ +static_assert(offsetof(ULoudnessAnalyzer, Settings) == 0x000090, "Member 'ULoudnessAnalyzer::Settings' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessAnalyzer, OnOverallLoudnessResults) == 0x000098, "Member 'ULoudnessAnalyzer::OnOverallLoudnessResults' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessAnalyzer, OnPerChannelLoudnessResults) == 0x0000A8, "Member 'ULoudnessAnalyzer::OnPerChannelLoudnessResults' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessAnalyzer, OnLatestOverallLoudnessResults) == 0x0000B8, "Member 'ULoudnessAnalyzer::OnLatestOverallLoudnessResults' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessAnalyzer, OnLatestPerChannelLoudnessResults) == 0x0000C8, "Member 'ULoudnessAnalyzer::OnLatestPerChannelLoudnessResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoudnessNRTSettings \ +static_assert(alignof(ULoudnessNRTSettings) == 0x000008, "Wrong alignment on ULoudnessNRTSettings"); \ +static_assert(sizeof(ULoudnessNRTSettings) == 0x000040, "Wrong size on ULoudnessNRTSettings"); \ +static_assert(offsetof(ULoudnessNRTSettings, AnalysisPeriod) == 0x000028, "Member 'ULoudnessNRTSettings::AnalysisPeriod' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessNRTSettings, MinimumFrequency) == 0x00002C, "Member 'ULoudnessNRTSettings::MinimumFrequency' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessNRTSettings, MaximumFrequency) == 0x000030, "Member 'ULoudnessNRTSettings::MaximumFrequency' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessNRTSettings, CurveType) == 0x000034, "Member 'ULoudnessNRTSettings::CurveType' has a wrong offset!"); \ +static_assert(offsetof(ULoudnessNRTSettings, NoiseFloorDb) == 0x000038, "Member 'ULoudnessNRTSettings::NoiseFloorDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoudnessNRT_GetChannelLoudnessAtTime \ +static_assert(alignof(LoudnessNRT_GetChannelLoudnessAtTime) == 0x000004, "Wrong alignment on LoudnessNRT_GetChannelLoudnessAtTime"); \ +static_assert(sizeof(LoudnessNRT_GetChannelLoudnessAtTime) == 0x00000C, "Wrong size on LoudnessNRT_GetChannelLoudnessAtTime"); \ +static_assert(offsetof(LoudnessNRT_GetChannelLoudnessAtTime, InSeconds) == 0x000000, "Member 'LoudnessNRT_GetChannelLoudnessAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetChannelLoudnessAtTime, InChannel) == 0x000004, "Member 'LoudnessNRT_GetChannelLoudnessAtTime::InChannel' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetChannelLoudnessAtTime, OutLoudness) == 0x000008, "Member 'LoudnessNRT_GetChannelLoudnessAtTime::OutLoudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoudnessNRT_GetLoudnessAtTime \ +static_assert(alignof(LoudnessNRT_GetLoudnessAtTime) == 0x000004, "Wrong alignment on LoudnessNRT_GetLoudnessAtTime"); \ +static_assert(sizeof(LoudnessNRT_GetLoudnessAtTime) == 0x000008, "Wrong size on LoudnessNRT_GetLoudnessAtTime"); \ +static_assert(offsetof(LoudnessNRT_GetLoudnessAtTime, InSeconds) == 0x000000, "Member 'LoudnessNRT_GetLoudnessAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetLoudnessAtTime, OutLoudness) == 0x000004, "Member 'LoudnessNRT_GetLoudnessAtTime::OutLoudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoudnessNRT_GetNormalizedChannelLoudnessAtTime \ +static_assert(alignof(LoudnessNRT_GetNormalizedChannelLoudnessAtTime) == 0x000004, "Wrong alignment on LoudnessNRT_GetNormalizedChannelLoudnessAtTime"); \ +static_assert(sizeof(LoudnessNRT_GetNormalizedChannelLoudnessAtTime) == 0x00000C, "Wrong size on LoudnessNRT_GetNormalizedChannelLoudnessAtTime"); \ +static_assert(offsetof(LoudnessNRT_GetNormalizedChannelLoudnessAtTime, InSeconds) == 0x000000, "Member 'LoudnessNRT_GetNormalizedChannelLoudnessAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetNormalizedChannelLoudnessAtTime, InChannel) == 0x000004, "Member 'LoudnessNRT_GetNormalizedChannelLoudnessAtTime::InChannel' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetNormalizedChannelLoudnessAtTime, OutLoudness) == 0x000008, "Member 'LoudnessNRT_GetNormalizedChannelLoudnessAtTime::OutLoudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LoudnessNRT_GetNormalizedLoudnessAtTime \ +static_assert(alignof(LoudnessNRT_GetNormalizedLoudnessAtTime) == 0x000004, "Wrong alignment on LoudnessNRT_GetNormalizedLoudnessAtTime"); \ +static_assert(sizeof(LoudnessNRT_GetNormalizedLoudnessAtTime) == 0x000008, "Wrong size on LoudnessNRT_GetNormalizedLoudnessAtTime"); \ +static_assert(offsetof(LoudnessNRT_GetNormalizedLoudnessAtTime, InSeconds) == 0x000000, "Member 'LoudnessNRT_GetNormalizedLoudnessAtTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(LoudnessNRT_GetNormalizedLoudnessAtTime, OutLoudness) == 0x000004, "Member 'LoudnessNRT_GetNormalizedLoudnessAtTime::OutLoudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoudnessNRT \ +static_assert(alignof(ULoudnessNRT) == 0x000008, "Wrong alignment on ULoudnessNRT"); \ +static_assert(sizeof(ULoudnessNRT) == 0x000080, "Wrong size on ULoudnessNRT"); \ +static_assert(offsetof(ULoudnessNRT, Settings) == 0x000078, "Member 'ULoudnessNRT::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeterSettings \ +static_assert(alignof(UMeterSettings) == 0x000008, "Wrong alignment on UMeterSettings"); \ +static_assert(sizeof(UMeterSettings) == 0x000040, "Wrong size on UMeterSettings"); \ +static_assert(offsetof(UMeterSettings, AnalysisPeriod) == 0x000028, "Member 'UMeterSettings::AnalysisPeriod' has a wrong offset!"); \ +static_assert(offsetof(UMeterSettings, PeakMode) == 0x00002C, "Member 'UMeterSettings::PeakMode' has a wrong offset!"); \ +static_assert(offsetof(UMeterSettings, MeterAttackTime) == 0x000030, "Member 'UMeterSettings::MeterAttackTime' has a wrong offset!"); \ +static_assert(offsetof(UMeterSettings, MeterReleaseTime) == 0x000034, "Member 'UMeterSettings::MeterReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(UMeterSettings, PeakHoldTime) == 0x000038, "Member 'UMeterSettings::PeakHoldTime' has a wrong offset!"); \ +static_assert(offsetof(UMeterSettings, ClippingThreshold) == 0x00003C, "Member 'UMeterSettings::ClippingThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeterAnalyzer \ +static_assert(alignof(UMeterAnalyzer) == 0x000008, "Wrong alignment on UMeterAnalyzer"); \ +static_assert(sizeof(UMeterAnalyzer) == 0x000138, "Wrong size on UMeterAnalyzer"); \ +static_assert(offsetof(UMeterAnalyzer, Settings) == 0x000090, "Member 'UMeterAnalyzer::Settings' has a wrong offset!"); \ +static_assert(offsetof(UMeterAnalyzer, OnOverallMeterResults) == 0x000098, "Member 'UMeterAnalyzer::OnOverallMeterResults' has a wrong offset!"); \ +static_assert(offsetof(UMeterAnalyzer, OnPerChannelMeterResults) == 0x0000C0, "Member 'UMeterAnalyzer::OnPerChannelMeterResults' has a wrong offset!"); \ +static_assert(offsetof(UMeterAnalyzer, OnLatestOverallMeterResults) == 0x0000E8, "Member 'UMeterAnalyzer::OnLatestOverallMeterResults' has a wrong offset!"); \ +static_assert(offsetof(UMeterAnalyzer, OnLatestPerChannelMeterResults) == 0x000110, "Member 'UMeterAnalyzer::OnLatestPerChannelMeterResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnsetNRTSettings \ +static_assert(alignof(UOnsetNRTSettings) == 0x000008, "Wrong alignment on UOnsetNRTSettings"); \ +static_assert(sizeof(UOnsetNRTSettings) == 0x000040, "Wrong size on UOnsetNRTSettings"); \ +static_assert(offsetof(UOnsetNRTSettings, bDownmixToMono) == 0x000028, "Member 'UOnsetNRTSettings::bDownmixToMono' has a wrong offset!"); \ +static_assert(offsetof(UOnsetNRTSettings, GranularityInSeconds) == 0x00002C, "Member 'UOnsetNRTSettings::GranularityInSeconds' has a wrong offset!"); \ +static_assert(offsetof(UOnsetNRTSettings, Sensitivity) == 0x000030, "Member 'UOnsetNRTSettings::Sensitivity' has a wrong offset!"); \ +static_assert(offsetof(UOnsetNRTSettings, MinimumFrequency) == 0x000034, "Member 'UOnsetNRTSettings::MinimumFrequency' has a wrong offset!"); \ +static_assert(offsetof(UOnsetNRTSettings, MaximumFrequency) == 0x000038, "Member 'UOnsetNRTSettings::MaximumFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OnsetNRT_GetChannelOnsetsBetweenTimes \ +static_assert(alignof(OnsetNRT_GetChannelOnsetsBetweenTimes) == 0x000008, "Wrong alignment on OnsetNRT_GetChannelOnsetsBetweenTimes"); \ +static_assert(sizeof(OnsetNRT_GetChannelOnsetsBetweenTimes) == 0x000030, "Wrong size on OnsetNRT_GetChannelOnsetsBetweenTimes"); \ +static_assert(offsetof(OnsetNRT_GetChannelOnsetsBetweenTimes, InStartSeconds) == 0x000000, "Member 'OnsetNRT_GetChannelOnsetsBetweenTimes::InStartSeconds' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetChannelOnsetsBetweenTimes, InEndSeconds) == 0x000004, "Member 'OnsetNRT_GetChannelOnsetsBetweenTimes::InEndSeconds' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetChannelOnsetsBetweenTimes, InChannel) == 0x000008, "Member 'OnsetNRT_GetChannelOnsetsBetweenTimes::InChannel' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetChannelOnsetsBetweenTimes, OutOnsetTimestamps) == 0x000010, "Member 'OnsetNRT_GetChannelOnsetsBetweenTimes::OutOnsetTimestamps' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetChannelOnsetsBetweenTimes, OutOnsetStrengths) == 0x000020, "Member 'OnsetNRT_GetChannelOnsetsBetweenTimes::OutOnsetStrengths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes \ +static_assert(alignof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes) == 0x000008, "Wrong alignment on OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes"); \ +static_assert(sizeof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes) == 0x000030, "Wrong size on OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes"); \ +static_assert(offsetof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes, InStartSeconds) == 0x000000, "Member 'OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes::InStartSeconds' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes, InEndSeconds) == 0x000004, "Member 'OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes::InEndSeconds' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes, InChannel) == 0x000008, "Member 'OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes::InChannel' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes, OutOnsetTimestamps) == 0x000010, "Member 'OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes::OutOnsetTimestamps' has a wrong offset!"); \ +static_assert(offsetof(OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes, OutOnsetStrengths) == 0x000020, "Member 'OnsetNRT_GetNormalizedChannelOnsetsBetweenTimes::OutOnsetStrengths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnsetNRT \ +static_assert(alignof(UOnsetNRT) == 0x000008, "Wrong alignment on UOnsetNRT"); \ +static_assert(sizeof(UOnsetNRT) == 0x000080, "Wrong size on UOnsetNRT"); \ +static_assert(offsetof(UOnsetNRT, Settings) == 0x000078, "Member 'UOnsetNRT::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynesthesiaSpectrumAnalysisSettings \ +static_assert(alignof(USynesthesiaSpectrumAnalysisSettings) == 0x000008, "Wrong alignment on USynesthesiaSpectrumAnalysisSettings"); \ +static_assert(sizeof(USynesthesiaSpectrumAnalysisSettings) == 0x000030, "Wrong size on USynesthesiaSpectrumAnalysisSettings"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalysisSettings, AnalysisPeriod) == 0x000028, "Member 'USynesthesiaSpectrumAnalysisSettings::AnalysisPeriod' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalysisSettings, FFTSize) == 0x00002C, "Member 'USynesthesiaSpectrumAnalysisSettings::FFTSize' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalysisSettings, SpectrumType) == 0x00002D, "Member 'USynesthesiaSpectrumAnalysisSettings::SpectrumType' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalysisSettings, WindowType) == 0x00002E, "Member 'USynesthesiaSpectrumAnalysisSettings::WindowType' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalysisSettings, bDownmixToMono) == 0x00002F, "Member 'USynesthesiaSpectrumAnalysisSettings::bDownmixToMono' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynesthesiaSpectrumAnalyzer_GetCenterFrequencies \ +static_assert(alignof(SynesthesiaSpectrumAnalyzer_GetCenterFrequencies) == 0x000008, "Wrong alignment on SynesthesiaSpectrumAnalyzer_GetCenterFrequencies"); \ +static_assert(sizeof(SynesthesiaSpectrumAnalyzer_GetCenterFrequencies) == 0x000018, "Wrong size on SynesthesiaSpectrumAnalyzer_GetCenterFrequencies"); \ +static_assert(offsetof(SynesthesiaSpectrumAnalyzer_GetCenterFrequencies, InSampleRate) == 0x000000, "Member 'SynesthesiaSpectrumAnalyzer_GetCenterFrequencies::InSampleRate' has a wrong offset!"); \ +static_assert(offsetof(SynesthesiaSpectrumAnalyzer_GetCenterFrequencies, OutCenterFrequencies) == 0x000008, "Member 'SynesthesiaSpectrumAnalyzer_GetCenterFrequencies::OutCenterFrequencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies \ +static_assert(alignof(SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies) == 0x000004, "Wrong alignment on SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies"); \ +static_assert(sizeof(SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies) == 0x000004, "Wrong size on SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies"); \ +static_assert(offsetof(SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies, ReturnValue) == 0x000000, "Member 'SynesthesiaSpectrumAnalyzer_GetNumCenterFrequencies::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynesthesiaSpectrumAnalyzer \ +static_assert(alignof(USynesthesiaSpectrumAnalyzer) == 0x000008, "Wrong alignment on USynesthesiaSpectrumAnalyzer"); \ +static_assert(sizeof(USynesthesiaSpectrumAnalyzer) == 0x0000E8, "Wrong size on USynesthesiaSpectrumAnalyzer"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalyzer, Settings) == 0x000090, "Member 'USynesthesiaSpectrumAnalyzer::Settings' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalyzer, OnSpectrumResults) == 0x000098, "Member 'USynesthesiaSpectrumAnalyzer::OnSpectrumResults' has a wrong offset!"); \ +static_assert(offsetof(USynesthesiaSpectrumAnalyzer, OnLatestSpectrumResults) == 0x0000C0, "Member 'USynesthesiaSpectrumAnalyzer::OnLatestSpectrumResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_EditorTick \ +static_assert(alignof(HeraLightingActorBase_EditorTick) == 0x000004, "Wrong alignment on HeraLightingActorBase_EditorTick"); \ +static_assert(sizeof(HeraLightingActorBase_EditorTick) == 0x000004, "Wrong size on HeraLightingActorBase_EditorTick"); \ +static_assert(offsetof(HeraLightingActorBase_EditorTick, DeltaTime) == 0x000000, "Member 'HeraLightingActorBase_EditorTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetAudioState \ +static_assert(alignof(HeraLightingActorBase_GetAudioState) == 0x000001, "Wrong alignment on HeraLightingActorBase_GetAudioState"); \ +static_assert(sizeof(HeraLightingActorBase_GetAudioState) == 0x000001, "Wrong size on HeraLightingActorBase_GetAudioState"); \ +static_assert(offsetof(HeraLightingActorBase_GetAudioState, ReturnValue) == 0x000000, "Member 'HeraLightingActorBase_GetAudioState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetFlickerState \ +static_assert(alignof(HeraLightingActorBase_GetFlickerState) == 0x000001, "Wrong alignment on HeraLightingActorBase_GetFlickerState"); \ +static_assert(sizeof(HeraLightingActorBase_GetFlickerState) == 0x000001, "Wrong size on HeraLightingActorBase_GetFlickerState"); \ +static_assert(offsetof(HeraLightingActorBase_GetFlickerState, ReturnValue) == 0x000000, "Member 'HeraLightingActorBase_GetFlickerState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetLightState \ +static_assert(alignof(HeraLightingActorBase_GetLightState) == 0x000001, "Wrong alignment on HeraLightingActorBase_GetLightState"); \ +static_assert(sizeof(HeraLightingActorBase_GetLightState) == 0x000001, "Wrong size on HeraLightingActorBase_GetLightState"); \ +static_assert(offsetof(HeraLightingActorBase_GetLightState, ReturnValue) == 0x000000, "Member 'HeraLightingActorBase_GetLightState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetMaxDrawDistance \ +static_assert(alignof(HeraLightingActorBase_GetMaxDrawDistance) == 0x000008, "Wrong alignment on HeraLightingActorBase_GetMaxDrawDistance"); \ +static_assert(sizeof(HeraLightingActorBase_GetMaxDrawDistance) == 0x000010, "Wrong size on HeraLightingActorBase_GetMaxDrawDistance"); \ +static_assert(offsetof(HeraLightingActorBase_GetMaxDrawDistance, InLightComponent) == 0x000000, "Member 'HeraLightingActorBase_GetMaxDrawDistance::InLightComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraLightingActorBase_GetMaxDrawDistance, ReturnValue) == 0x000008, "Member 'HeraLightingActorBase_GetMaxDrawDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetMaxFadeDistance \ +static_assert(alignof(HeraLightingActorBase_GetMaxFadeDistance) == 0x000008, "Wrong alignment on HeraLightingActorBase_GetMaxFadeDistance"); \ +static_assert(sizeof(HeraLightingActorBase_GetMaxFadeDistance) == 0x000010, "Wrong size on HeraLightingActorBase_GetMaxFadeDistance"); \ +static_assert(offsetof(HeraLightingActorBase_GetMaxFadeDistance, InLightComponent) == 0x000000, "Member 'HeraLightingActorBase_GetMaxFadeDistance::InLightComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraLightingActorBase_GetMaxFadeDistance, ReturnValue) == 0x000008, "Member 'HeraLightingActorBase_GetMaxFadeDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_GetVFXState \ +static_assert(alignof(HeraLightingActorBase_GetVFXState) == 0x000001, "Wrong alignment on HeraLightingActorBase_GetVFXState"); \ +static_assert(sizeof(HeraLightingActorBase_GetVFXState) == 0x000001, "Wrong size on HeraLightingActorBase_GetVFXState"); \ +static_assert(offsetof(HeraLightingActorBase_GetVFXState, ReturnValue) == 0x000000, "Member 'HeraLightingActorBase_GetVFXState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetAudioState \ +static_assert(alignof(HeraLightingActorBase_SetAudioState) == 0x000001, "Wrong alignment on HeraLightingActorBase_SetAudioState"); \ +static_assert(sizeof(HeraLightingActorBase_SetAudioState) == 0x000001, "Wrong size on HeraLightingActorBase_SetAudioState"); \ +static_assert(offsetof(HeraLightingActorBase_SetAudioState, bNewState) == 0x000000, "Member 'HeraLightingActorBase_SetAudioState::bNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetFlickerState \ +static_assert(alignof(HeraLightingActorBase_SetFlickerState) == 0x000001, "Wrong alignment on HeraLightingActorBase_SetFlickerState"); \ +static_assert(sizeof(HeraLightingActorBase_SetFlickerState) == 0x000001, "Wrong size on HeraLightingActorBase_SetFlickerState"); \ +static_assert(offsetof(HeraLightingActorBase_SetFlickerState, bNewState) == 0x000000, "Member 'HeraLightingActorBase_SetFlickerState::bNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetLightState \ +static_assert(alignof(HeraLightingActorBase_SetLightState) == 0x000001, "Wrong alignment on HeraLightingActorBase_SetLightState"); \ +static_assert(sizeof(HeraLightingActorBase_SetLightState) == 0x000001, "Wrong size on HeraLightingActorBase_SetLightState"); \ +static_assert(offsetof(HeraLightingActorBase_SetLightState, bNewState) == 0x000000, "Member 'HeraLightingActorBase_SetLightState::bNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetMaxDrawDistance \ +static_assert(alignof(HeraLightingActorBase_SetMaxDrawDistance) == 0x000008, "Wrong alignment on HeraLightingActorBase_SetMaxDrawDistance"); \ +static_assert(sizeof(HeraLightingActorBase_SetMaxDrawDistance) == 0x000010, "Wrong size on HeraLightingActorBase_SetMaxDrawDistance"); \ +static_assert(offsetof(HeraLightingActorBase_SetMaxDrawDistance, InLightComponent) == 0x000000, "Member 'HeraLightingActorBase_SetMaxDrawDistance::InLightComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraLightingActorBase_SetMaxDrawDistance, InMaxDrawDistance) == 0x000008, "Member 'HeraLightingActorBase_SetMaxDrawDistance::InMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetMaxFadeDistance \ +static_assert(alignof(HeraLightingActorBase_SetMaxFadeDistance) == 0x000008, "Wrong alignment on HeraLightingActorBase_SetMaxFadeDistance"); \ +static_assert(sizeof(HeraLightingActorBase_SetMaxFadeDistance) == 0x000010, "Wrong size on HeraLightingActorBase_SetMaxFadeDistance"); \ +static_assert(offsetof(HeraLightingActorBase_SetMaxFadeDistance, InLightComponent) == 0x000000, "Member 'HeraLightingActorBase_SetMaxFadeDistance::InLightComponent' has a wrong offset!"); \ +static_assert(offsetof(HeraLightingActorBase_SetMaxFadeDistance, InMaxFadeDistance) == 0x000008, "Member 'HeraLightingActorBase_SetMaxFadeDistance::InMaxFadeDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraLightingActorBase_SetVFXState \ +static_assert(alignof(HeraLightingActorBase_SetVFXState) == 0x000001, "Wrong alignment on HeraLightingActorBase_SetVFXState"); \ +static_assert(sizeof(HeraLightingActorBase_SetVFXState) == 0x000001, "Wrong size on HeraLightingActorBase_SetVFXState"); \ +static_assert(offsetof(HeraLightingActorBase_SetVFXState, bNewState) == 0x000000, "Member 'HeraLightingActorBase_SetVFXState::bNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraLightingActorBase \ +static_assert(alignof(AHeraLightingActorBase) == 0x000008, "Wrong alignment on AHeraLightingActorBase"); \ +static_assert(sizeof(AHeraLightingActorBase) == 0x0002E0, "Wrong size on AHeraLightingActorBase"); \ +static_assert(offsetof(AHeraLightingActorBase, OnLightStateChanged) == 0x000298, "Member 'AHeraLightingActorBase::OnLightStateChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, OnFlickerStateChanged) == 0x0002A8, "Member 'AHeraLightingActorBase::OnFlickerStateChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, OnVFXStateChanged) == 0x0002B8, "Member 'AHeraLightingActorBase::OnVFXStateChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, OnAudioStateChanged) == 0x0002C8, "Member 'AHeraLightingActorBase::OnAudioStateChanged' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bStartsEnabled) == 0x0002D8, "Member 'AHeraLightingActorBase::bStartsEnabled' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bIsLightOn) == 0x0002D9, "Member 'AHeraLightingActorBase::bIsLightOn' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bIsFlickerOn) == 0x0002DA, "Member 'AHeraLightingActorBase::bIsFlickerOn' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bIsVFXOn) == 0x0002DB, "Member 'AHeraLightingActorBase::bIsVFXOn' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bIsAudioOn) == 0x0002DC, "Member 'AHeraLightingActorBase::bIsAudioOn' has a wrong offset!"); \ +static_assert(offsetof(AHeraLightingActorBase, bUseEditorTick) == 0x0002DD, "Member 'AHeraLightingActorBase::bUseEditorTick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMStruct \ +static_assert(alignof(FRigVMStruct) == 0x000008, "Wrong alignment on FRigVMStruct"); \ +static_assert(sizeof(FRigVMStruct) == 0x000008, "Wrong size on FRigVMStruct"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBase \ +static_assert(alignof(FRigVMFunction_MathBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathBase"); \ +static_assert(sizeof(FRigVMFunction_MathBase) == 0x000008, "Wrong size on FRigVMFunction_MathBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorBase \ +static_assert(alignof(FRigVMFunction_MathVectorBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorBase"); \ +static_assert(sizeof(FRigVMFunction_MathVectorBase) == 0x000008, "Wrong size on FRigVMFunction_MathVectorBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMirrorTransform \ +static_assert(alignof(FRigVMFunction_MathVectorMirrorTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathVectorMirrorTransform"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMirrorTransform) == 0x0000B0, "Wrong size on FRigVMFunction_MathVectorMirrorTransform"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirrorTransform, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorMirrorTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirrorTransform, MirrorAxis) == 0x000020, "Member 'FRigVMFunction_MathVectorMirrorTransform::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirrorTransform, AxisToFlip) == 0x000021, "Member 'FRigVMFunction_MathVectorMirrorTransform::AxisToFlip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirrorTransform, CentralTransform) == 0x000030, "Member 'FRigVMFunction_MathVectorMirrorTransform::CentralTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirrorTransform, Result) == 0x000090, "Member 'FRigVMFunction_MathVectorMirrorTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatchFactory \ +static_assert(alignof(FRigVMDispatchFactory) == 0x000008, "Wrong alignment on FRigVMDispatchFactory"); \ +static_assert(sizeof(FRigVMDispatchFactory) == 0x000070, "Wrong size on FRigVMDispatchFactory"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_CoreBase \ +static_assert(alignof(FRigVMDispatch_CoreBase) == 0x000008, "Wrong alignment on FRigVMDispatch_CoreBase"); \ +static_assert(sizeof(FRigVMDispatch_CoreBase) == 0x000070, "Wrong size on FRigVMDispatch_CoreBase"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayBase \ +static_assert(alignof(FRigVMDispatch_ArrayBase) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayBase"); \ +static_assert(sizeof(FRigVMDispatch_ArrayBase) == 0x000070, "Wrong size on FRigVMDispatch_ArrayBase"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayFind \ +static_assert(alignof(FRigVMDispatch_ArrayFind) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayFind"); \ +static_assert(sizeof(FRigVMDispatch_ArrayFind) == 0x000070, "Wrong size on FRigVMDispatch_ArrayFind"); \ + +#define DUMPER7_ASSERTS_FRigVMBranchInfo \ +static_assert(alignof(FRigVMBranchInfo) == 0x000004, "Wrong alignment on FRigVMBranchInfo"); \ +static_assert(sizeof(FRigVMBranchInfo) == 0x000018, "Wrong size on FRigVMBranchInfo"); \ +static_assert(offsetof(FRigVMBranchInfo, Index) == 0x000000, "Member 'FRigVMBranchInfo::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigVMBranchInfo, Label) == 0x000004, "Member 'FRigVMBranchInfo::Label' has a wrong offset!"); \ +static_assert(offsetof(FRigVMBranchInfo, InstructionIndex) == 0x00000C, "Member 'FRigVMBranchInfo::InstructionIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMBranchInfo, ArgumentIndex) == 0x000010, "Member 'FRigVMBranchInfo::ArgumentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMBranchInfo, FirstInstruction) == 0x000014, "Member 'FRigVMBranchInfo::FirstInstruction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMBranchInfo, LastInstruction) == 0x000016, "Member 'FRigVMBranchInfo::LastInstruction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionBase \ +static_assert(alignof(FRigVMFunction_MathQuaternionBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathQuaternionBase"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionBase) == 0x000008, "Wrong size on FRigVMFunction_MathQuaternionBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionGetAxis \ +static_assert(alignof(FRigVMFunction_MathQuaternionGetAxis) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionGetAxis"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionGetAxis) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionGetAxis"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionGetAxis, Quaternion) == 0x000010, "Member 'FRigVMFunction_MathQuaternionGetAxis::Quaternion' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionGetAxis, Axis) == 0x000030, "Member 'FRigVMFunction_MathQuaternionGetAxis::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionGetAxis, Result) == 0x000038, "Member 'FRigVMFunction_MathQuaternionGetAxis::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDrawInstruction \ +static_assert(alignof(FRigVMDrawInstruction) == 0x000010, "Wrong alignment on FRigVMDrawInstruction"); \ +static_assert(sizeof(FRigVMDrawInstruction) == 0x0000D0, "Wrong size on FRigVMDrawInstruction"); \ +static_assert(offsetof(FRigVMDrawInstruction, Name) == 0x000000, "Member 'FRigVMDrawInstruction::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMDrawInstruction, PrimitiveType) == 0x000008, "Member 'FRigVMDrawInstruction::PrimitiveType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMDrawInstruction, Positions) == 0x000010, "Member 'FRigVMDrawInstruction::Positions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMDrawInstruction, Color) == 0x000020, "Member 'FRigVMDrawInstruction::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMDrawInstruction, Thickness) == 0x000030, "Member 'FRigVMDrawInstruction::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMDrawInstruction, Transform) == 0x000040, "Member 'FRigVMDrawInstruction::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_ControlFlowBase \ +static_assert(alignof(FRigVMFunction_ControlFlowBase) == 0x000008, "Wrong alignment on FRigVMFunction_ControlFlowBase"); \ +static_assert(sizeof(FRigVMFunction_ControlFlowBase) == 0x000008, "Wrong size on FRigVMFunction_ControlFlowBase"); \ + +#define DUMPER7_ASSERTS_FRigVMBaseOp \ +static_assert(alignof(FRigVMBaseOp) == 0x000001, "Wrong alignment on FRigVMBaseOp"); \ +static_assert(sizeof(FRigVMBaseOp) == 0x000001, "Wrong size on FRigVMBaseOp"); \ + +#define DUMPER7_ASSERTS_FRigVMSenaryOp \ +static_assert(alignof(FRigVMSenaryOp) == 0x000002, "Wrong alignment on FRigVMSenaryOp"); \ +static_assert(sizeof(FRigVMSenaryOp) == 0x000026, "Wrong size on FRigVMSenaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMExtendedExecuteContext \ +static_assert(alignof(FRigVMExtendedExecuteContext) == 0x000008, "Wrong alignment on FRigVMExtendedExecuteContext"); \ +static_assert(sizeof(FRigVMExtendedExecuteContext) == 0x0001B8, "Wrong size on FRigVMExtendedExecuteContext"); \ +static_assert(offsetof(FRigVMExtendedExecuteContext, VMHash) == 0x000008, "Member 'FRigVMExtendedExecuteContext::VMHash' has a wrong offset!"); \ +static_assert(offsetof(FRigVMExtendedExecuteContext, NumExecutions) == 0x000110, "Member 'FRigVMExtendedExecuteContext::NumExecutions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMExtendedExecuteContext, DeferredVMToCopy) == 0x000170, "Member 'FRigVMExtendedExecuteContext::DeferredVMToCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMUnaryOp \ +static_assert(alignof(FRigVMUnaryOp) == 0x000002, "Wrong alignment on FRigVMUnaryOp"); \ +static_assert(sizeof(FRigVMUnaryOp) == 0x000008, "Wrong size on FRigVMUnaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMJumpToBranchOp \ +static_assert(alignof(FRigVMJumpToBranchOp) == 0x000004, "Wrong alignment on FRigVMJumpToBranchOp"); \ +static_assert(sizeof(FRigVMJumpToBranchOp) == 0x00000C, "Wrong size on FRigVMJumpToBranchOp"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateVectorColor_Target \ +static_assert(alignof(FMathRBFInterpolateVectorColor_Target) == 0x000008, "Wrong alignment on FMathRBFInterpolateVectorColor_Target"); \ +static_assert(sizeof(FMathRBFInterpolateVectorColor_Target) == 0x000028, "Wrong size on FMathRBFInterpolateVectorColor_Target"); \ +static_assert(offsetof(FMathRBFInterpolateVectorColor_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateVectorColor_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateVectorColor_Target, Value) == 0x000018, "Member 'FMathRBFInterpolateVectorColor_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatBase \ +static_assert(alignof(FRigVMFunction_MathFloatBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatBase"); \ +static_assert(sizeof(FRigVMFunction_MathFloatBase) == 0x000008, "Wrong size on FRigVMFunction_MathFloatBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathFloatBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathFloatBinaryAggregateOp) == 0x000018, "Wrong size on FRigVMFunction_MathFloatBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathFloatBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryAggregateOp, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryAggregateOp, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatAdd \ +static_assert(alignof(FRigVMFunction_MathFloatAdd) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatAdd"); \ +static_assert(sizeof(FRigVMFunction_MathFloatAdd) == 0x000018, "Wrong size on FRigVMFunction_MathFloatAdd"); \ + +#define DUMPER7_ASSERTS_FRigVMDrawContainer \ +static_assert(alignof(FRigVMDrawContainer) == 0x000008, "Wrong alignment on FRigVMDrawContainer"); \ +static_assert(sizeof(FRigVMDrawContainer) == 0x000018, "Wrong size on FRigVMDrawContainer"); \ +static_assert(offsetof(FRigVMDrawContainer, Instructions) == 0x000008, "Member 'FRigVMDrawContainer::Instructions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugBase \ +static_assert(alignof(FRigVMFunction_DebugBase) == 0x000008, "Wrong alignment on FRigVMFunction_DebugBase"); \ +static_assert(sizeof(FRigVMFunction_DebugBase) == 0x000008, "Wrong size on FRigVMFunction_DebugBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformBase \ +static_assert(alignof(FRigVMFunction_MathTransformBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathTransformBase"); \ +static_assert(sizeof(FRigVMFunction_MathTransformBase) == 0x000008, "Wrong size on FRigVMFunction_MathTransformBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformToEulerTransform \ +static_assert(alignof(FRigVMFunction_MathTransformToEulerTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformToEulerTransform"); \ +static_assert(sizeof(FRigVMFunction_MathTransformToEulerTransform) == 0x0000C0, "Wrong size on FRigVMFunction_MathTransformToEulerTransform"); \ +static_assert(offsetof(FRigVMFunction_MathTransformToEulerTransform, Value) == 0x000010, "Member 'FRigVMFunction_MathTransformToEulerTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformToEulerTransform, Result) == 0x000070, "Member 'FRigVMFunction_MathTransformToEulerTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatLess \ +static_assert(alignof(FRigVMFunction_MathFloatLess) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatLess"); \ +static_assert(sizeof(FRigVMFunction_MathFloatLess) == 0x000018, "Wrong size on FRigVMFunction_MathFloatLess"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLess, A) == 0x000008, "Member 'FRigVMFunction_MathFloatLess::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLess, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatLess::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLess, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatLess::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMRuntimeSettings \ +static_assert(alignof(FRigVMRuntimeSettings) == 0x000008, "Wrong alignment on FRigVMRuntimeSettings"); \ +static_assert(sizeof(FRigVMRuntimeSettings) == 0x000018, "Wrong size on FRigVMRuntimeSettings"); \ +static_assert(offsetof(FRigVMRuntimeSettings, MaximumArraySize) == 0x000000, "Member 'FRigVMRuntimeSettings::MaximumArraySize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDecorator \ +static_assert(alignof(FRigVMDecorator) == 0x000008, "Wrong alignment on FRigVMDecorator"); \ +static_assert(sizeof(FRigVMDecorator) == 0x000018, "Wrong size on FRigVMDecorator"); \ + +#define DUMPER7_ASSERTS_FRigVMSimPoint \ +static_assert(alignof(FRigVMSimPoint) == 0x000008, "Wrong alignment on FRigVMSimPoint"); \ +static_assert(sizeof(FRigVMSimPoint) == 0x000040, "Wrong size on FRigVMSimPoint"); \ +static_assert(offsetof(FRigVMSimPoint, MASS) == 0x000000, "Member 'FRigVMSimPoint::MASS' has a wrong offset!"); \ +static_assert(offsetof(FRigVMSimPoint, Size) == 0x000004, "Member 'FRigVMSimPoint::Size' has a wrong offset!"); \ +static_assert(offsetof(FRigVMSimPoint, LinearDamping) == 0x000008, "Member 'FRigVMSimPoint::LinearDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigVMSimPoint, InheritMotion) == 0x00000C, "Member 'FRigVMSimPoint::InheritMotion' has a wrong offset!"); \ +static_assert(offsetof(FRigVMSimPoint, Position) == 0x000010, "Member 'FRigVMSimPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(FRigVMSimPoint, LinearVelocity) == 0x000028, "Member 'FRigVMSimPoint::LinearVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMExternalVariableDef \ +static_assert(alignof(FRigVMExternalVariableDef) == 0x000008, "Wrong alignment on FRigVMExternalVariableDef"); \ +static_assert(sizeof(FRigVMExternalVariableDef) == 0x000028, "Wrong size on FRigVMExternalVariableDef"); \ + +#define DUMPER7_ASSERTS_FRigVMExternalVariable \ +static_assert(alignof(FRigVMExternalVariable) == 0x000008, "Wrong alignment on FRigVMExternalVariable"); \ +static_assert(sizeof(FRigVMExternalVariable) == 0x000030, "Wrong size on FRigVMExternalVariable"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_SimBase \ +static_assert(alignof(FRigVMFunction_SimBase) == 0x000008, "Wrong alignment on FRigVMFunction_SimBase"); \ +static_assert(sizeof(FRigVMFunction_SimBase) == 0x000008, "Wrong size on FRigVMFunction_SimBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AlphaInterpVector \ +static_assert(alignof(FRigVMFunction_AlphaInterpVector) == 0x000008, "Wrong alignment on FRigVMFunction_AlphaInterpVector"); \ +static_assert(sizeof(FRigVMFunction_AlphaInterpVector) == 0x0000A0, "Wrong size on FRigVMFunction_AlphaInterpVector"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, Value) == 0x000008, "Member 'FRigVMFunction_AlphaInterpVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, Scale) == 0x000020, "Member 'FRigVMFunction_AlphaInterpVector::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, Bias) == 0x000024, "Member 'FRigVMFunction_AlphaInterpVector::Bias' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, bMapRange) == 0x000028, "Member 'FRigVMFunction_AlphaInterpVector::bMapRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, InRange) == 0x00002C, "Member 'FRigVMFunction_AlphaInterpVector::InRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, OutRange) == 0x000034, "Member 'FRigVMFunction_AlphaInterpVector::OutRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, bClampResult) == 0x00003C, "Member 'FRigVMFunction_AlphaInterpVector::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, ClampMin) == 0x000040, "Member 'FRigVMFunction_AlphaInterpVector::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, ClampMax) == 0x000044, "Member 'FRigVMFunction_AlphaInterpVector::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, bInterpResult) == 0x000048, "Member 'FRigVMFunction_AlphaInterpVector::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, InterpSpeedIncreasing) == 0x00004C, "Member 'FRigVMFunction_AlphaInterpVector::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, InterpSpeedDecreasing) == 0x000050, "Member 'FRigVMFunction_AlphaInterpVector::InterpSpeedDecreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, Result) == 0x000058, "Member 'FRigVMFunction_AlphaInterpVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpVector, ScaleBiasClamp) == 0x000070, "Member 'FRigVMFunction_AlphaInterpVector::ScaleBiasClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AnimBase \ +static_assert(alignof(FRigVMFunction_AnimBase) == 0x000008, "Wrong alignment on FRigVMFunction_AnimBase"); \ +static_assert(sizeof(FRigVMFunction_AnimBase) == 0x000008, "Wrong size on FRigVMFunction_AnimBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateBase \ +static_assert(alignof(FRigVMFunction_AccumulateBase) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateBase"); \ +static_assert(sizeof(FRigVMFunction_AccumulateBase) == 0x000008, "Wrong size on FRigVMFunction_AccumulateBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateVectorLerp \ +static_assert(alignof(FRigVMFunction_AccumulateVectorLerp) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateVectorLerp"); \ +static_assert(sizeof(FRigVMFunction_AccumulateVectorLerp) == 0x000078, "Wrong size on FRigVMFunction_AccumulateVectorLerp"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, TargetValue) == 0x000008, "Member 'FRigVMFunction_AccumulateVectorLerp::TargetValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, InitialValue) == 0x000020, "Member 'FRigVMFunction_AccumulateVectorLerp::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, Blend) == 0x000038, "Member 'FRigVMFunction_AccumulateVectorLerp::Blend' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, bIntegrateDeltaTime) == 0x00003C, "Member 'FRigVMFunction_AccumulateVectorLerp::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, Result) == 0x000040, "Member 'FRigVMFunction_AccumulateVectorLerp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, AccumulatedValue) == 0x000058, "Member 'FRigVMFunction_AccumulateVectorLerp::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorLerp, bIsInitialized) == 0x000070, "Member 'FRigVMFunction_AccumulateVectorLerp::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMExecuteContext \ +static_assert(alignof(FRigVMExecuteContext) == 0x000010, "Wrong alignment on FRigVMExecuteContext"); \ +static_assert(sizeof(FRigVMExecuteContext) == 0x0000F0, "Wrong size on FRigVMExecuteContext"); \ + +#define DUMPER7_ASSERTS_FRigVMStructMutable \ +static_assert(alignof(FRigVMStructMutable) == 0x000010, "Wrong alignment on FRigVMStructMutable"); \ +static_assert(sizeof(FRigVMStructMutable) == 0x000100, "Wrong size on FRigVMStructMutable"); \ +static_assert(offsetof(FRigVMStructMutable, ExecuteContext) == 0x000010, "Member 'FRigVMStructMutable::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_RandomVector \ +static_assert(alignof(FRigVMFunction_RandomVector) == 0x000008, "Wrong alignment on FRigVMFunction_RandomVector"); \ +static_assert(sizeof(FRigVMFunction_RandomVector) == 0x000058, "Wrong size on FRigVMFunction_RandomVector"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, Seed) == 0x000008, "Member 'FRigVMFunction_RandomVector::Seed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, Minimum) == 0x00000C, "Member 'FRigVMFunction_RandomVector::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, Maximum) == 0x000010, "Member 'FRigVMFunction_RandomVector::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, Duration) == 0x000014, "Member 'FRigVMFunction_RandomVector::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, Result) == 0x000018, "Member 'FRigVMFunction_RandomVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, LastResult) == 0x000030, "Member 'FRigVMFunction_RandomVector::LastResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, LastSeed) == 0x000048, "Member 'FRigVMFunction_RandomVector::LastSeed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, BaseSeed) == 0x00004C, "Member 'FRigVMFunction_RandomVector::BaseSeed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomVector, TimeLeft) == 0x000050, "Member 'FRigVMFunction_RandomVector::TimeLeft' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugBaseMutable \ +static_assert(alignof(FRigVMFunction_DebugBaseMutable) == 0x000010, "Wrong alignment on FRigVMFunction_DebugBaseMutable"); \ +static_assert(sizeof(FRigVMFunction_DebugBaseMutable) == 0x000100, "Wrong size on FRigVMFunction_DebugBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateVectorRange \ +static_assert(alignof(FRigVMFunction_AccumulateVectorRange) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateVectorRange"); \ +static_assert(sizeof(FRigVMFunction_AccumulateVectorRange) == 0x000088, "Wrong size on FRigVMFunction_AccumulateVectorRange"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, Value) == 0x000008, "Member 'FRigVMFunction_AccumulateVectorRange::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, Minimum) == 0x000020, "Member 'FRigVMFunction_AccumulateVectorRange::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, Maximum) == 0x000038, "Member 'FRigVMFunction_AccumulateVectorRange::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, AccumulatedMinimum) == 0x000050, "Member 'FRigVMFunction_AccumulateVectorRange::AccumulatedMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, AccumulatedMaximum) == 0x000068, "Member 'FRigVMFunction_AccumulateVectorRange::AccumulatedMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorRange, bIsInitialized) == 0x000080, "Member 'FRigVMFunction_AccumulateVectorRange::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMutableBase \ +static_assert(alignof(FRigVMFunction_MathMutableBase) == 0x000010, "Wrong alignment on FRigVMFunction_MathMutableBase"); \ +static_assert(sizeof(FRigVMFunction_MathMutableBase) == 0x000100, "Wrong size on FRigVMFunction_MathMutableBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_Sequence \ +static_assert(alignof(FRigVMFunction_Sequence) == 0x000010, "Wrong alignment on FRigVMFunction_Sequence"); \ +static_assert(sizeof(FRigVMFunction_Sequence) == 0x0002E0, "Wrong size on FRigVMFunction_Sequence"); \ +static_assert(offsetof(FRigVMFunction_Sequence, ExecuteContext) == 0x000010, "Member 'FRigVMFunction_Sequence::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Sequence, A) == 0x000100, "Member 'FRigVMFunction_Sequence::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Sequence, B) == 0x0001F0, "Member 'FRigVMFunction_Sequence::B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayDifference \ +static_assert(alignof(FRigVMDispatch_ArrayDifference) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayDifference"); \ +static_assert(sizeof(FRigVMDispatch_ArrayDifference) == 0x000070, "Wrong size on FRigVMDispatch_ArrayDifference"); \ + +#define DUMPER7_ASSERTS_FRigVMUnknownType \ +static_assert(alignof(FRigVMUnknownType) == 0x000004, "Wrong alignment on FRigVMUnknownType"); \ +static_assert(sizeof(FRigVMUnknownType) == 0x000004, "Wrong size on FRigVMUnknownType"); \ +static_assert(offsetof(FRigVMUnknownType, Hash) == 0x000000, "Member 'FRigVMUnknownType::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayBaseMutable \ +static_assert(alignof(FRigVMDispatch_ArrayBaseMutable) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayBaseMutable"); \ +static_assert(sizeof(FRigVMDispatch_ArrayBaseMutable) == 0x000070, "Wrong size on FRigVMDispatch_ArrayBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayRemove \ +static_assert(alignof(FRigVMDispatch_ArrayRemove) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayRemove"); \ +static_assert(sizeof(FRigVMDispatch_ArrayRemove) == 0x000070, "Wrong size on FRigVMDispatch_ArrayRemove"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_SimBaseMutable \ +static_assert(alignof(FRigVMFunction_SimBaseMutable) == 0x000010, "Wrong alignment on FRigVMFunction_SimBaseMutable"); \ +static_assert(sizeof(FRigVMFunction_SimBaseMutable) == 0x000100, "Wrong size on FRigVMFunction_SimBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayGetNum \ +static_assert(alignof(FRigVMDispatch_ArrayGetNum) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayGetNum"); \ +static_assert(sizeof(FRigVMDispatch_ArrayGetNum) == 0x000070, "Wrong size on FRigVMDispatch_ArrayGetNum"); \ + +#define DUMPER7_ASSERTS_FRigVMGraphFunctionIdentifier \ +static_assert(alignof(FRigVMGraphFunctionIdentifier) == 0x000008, "Wrong alignment on FRigVMGraphFunctionIdentifier"); \ +static_assert(sizeof(FRigVMGraphFunctionIdentifier) == 0x000040, "Wrong size on FRigVMGraphFunctionIdentifier"); \ +static_assert(offsetof(FRigVMGraphFunctionIdentifier, LibraryNode) == 0x000000, "Member 'FRigVMGraphFunctionIdentifier::LibraryNode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionIdentifier, HostObject) == 0x000020, "Member 'FRigVMGraphFunctionIdentifier::HostObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMGraphFunctionArgument \ +static_assert(alignof(FRigVMGraphFunctionArgument) == 0x000008, "Wrong alignment on FRigVMGraphFunctionArgument"); \ +static_assert(sizeof(FRigVMGraphFunctionArgument) == 0x0000B0, "Wrong size on FRigVMGraphFunctionArgument"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, Name) == 0x000000, "Member 'FRigVMGraphFunctionArgument::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, DisplayName) == 0x000008, "Member 'FRigVMGraphFunctionArgument::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, CPPType) == 0x000010, "Member 'FRigVMGraphFunctionArgument::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, CPPTypeObject) == 0x000018, "Member 'FRigVMGraphFunctionArgument::CPPTypeObject' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, bIsArray) == 0x000040, "Member 'FRigVMGraphFunctionArgument::bIsArray' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, Direction) == 0x000041, "Member 'FRigVMGraphFunctionArgument::Direction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, DefaultValue) == 0x000048, "Member 'FRigVMGraphFunctionArgument::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, bIsConst) == 0x000058, "Member 'FRigVMGraphFunctionArgument::bIsConst' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionArgument, PathToTooltip) == 0x000060, "Member 'FRigVMGraphFunctionArgument::PathToTooltip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMGraphFunctionHeader \ +static_assert(alignof(FRigVMGraphFunctionHeader) == 0x000008, "Wrong alignment on FRigVMGraphFunctionHeader"); \ +static_assert(sizeof(FRigVMGraphFunctionHeader) == 0x000110, "Wrong size on FRigVMGraphFunctionHeader"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, LibraryPointer) == 0x000000, "Member 'FRigVMGraphFunctionHeader::LibraryPointer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Name) == 0x000040, "Member 'FRigVMGraphFunctionHeader::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, NodeTitle) == 0x000048, "Member 'FRigVMGraphFunctionHeader::NodeTitle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, NodeColor) == 0x000058, "Member 'FRigVMGraphFunctionHeader::NodeColor' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Tooltip) == 0x000068, "Member 'FRigVMGraphFunctionHeader::Tooltip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Category) == 0x000080, "Member 'FRigVMGraphFunctionHeader::Category' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Keywords) == 0x000090, "Member 'FRigVMGraphFunctionHeader::Keywords' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Arguments) == 0x0000A0, "Member 'FRigVMGraphFunctionHeader::Arguments' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, Dependencies) == 0x0000B0, "Member 'FRigVMGraphFunctionHeader::Dependencies' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionHeader, ExternalVariables) == 0x000100, "Member 'FRigVMGraphFunctionHeader::ExternalVariables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMByteCodeEntry \ +static_assert(alignof(FRigVMByteCodeEntry) == 0x000004, "Wrong alignment on FRigVMByteCodeEntry"); \ +static_assert(sizeof(FRigVMByteCodeEntry) == 0x00000C, "Wrong size on FRigVMByteCodeEntry"); \ +static_assert(offsetof(FRigVMByteCodeEntry, Name) == 0x000000, "Member 'FRigVMByteCodeEntry::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCodeEntry, InstructionIndex) == 0x000008, "Member 'FRigVMByteCodeEntry::InstructionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMPredicateBranch \ +static_assert(alignof(FRigVMPredicateBranch) == 0x000008, "Wrong alignment on FRigVMPredicateBranch"); \ +static_assert(sizeof(FRigVMPredicateBranch) == 0x000030, "Wrong size on FRigVMPredicateBranch"); \ + +#define DUMPER7_ASSERTS_FRigVMByteCode \ +static_assert(alignof(FRigVMByteCode) == 0x000008, "Wrong alignment on FRigVMByteCode"); \ +static_assert(sizeof(FRigVMByteCode) == 0x0000A0, "Wrong size on FRigVMByteCode"); \ +static_assert(offsetof(FRigVMByteCode, ByteCode) == 0x000000, "Member 'FRigVMByteCode::ByteCode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCode, NumInstructions) == 0x000010, "Member 'FRigVMByteCode::NumInstructions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCode, Entries) == 0x000018, "Member 'FRigVMByteCode::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCode, BranchInfos) == 0x000028, "Member 'FRigVMByteCode::BranchInfos' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCode, PredicateBranches) == 0x000038, "Member 'FRigVMByteCode::PredicateBranches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunctionCompilationPropertyDescription \ +static_assert(alignof(FRigVMFunctionCompilationPropertyDescription) == 0x000008, "Wrong alignment on FRigVMFunctionCompilationPropertyDescription"); \ +static_assert(sizeof(FRigVMFunctionCompilationPropertyDescription) == 0x000050, "Wrong size on FRigVMFunctionCompilationPropertyDescription"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyDescription, Name) == 0x000000, "Member 'FRigVMFunctionCompilationPropertyDescription::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyDescription, CPPType) == 0x000008, "Member 'FRigVMFunctionCompilationPropertyDescription::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyDescription, CPPTypeObject) == 0x000018, "Member 'FRigVMFunctionCompilationPropertyDescription::CPPTypeObject' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyDescription, DefaultValue) == 0x000040, "Member 'FRigVMFunctionCompilationPropertyDescription::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunctionCompilationPropertyPath \ +static_assert(alignof(FRigVMFunctionCompilationPropertyPath) == 0x000008, "Wrong alignment on FRigVMFunctionCompilationPropertyPath"); \ +static_assert(sizeof(FRigVMFunctionCompilationPropertyPath) == 0x000028, "Wrong size on FRigVMFunctionCompilationPropertyPath"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyPath, PropertyIndex) == 0x000000, "Member 'FRigVMFunctionCompilationPropertyPath::PropertyIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyPath, HeadCPPType) == 0x000008, "Member 'FRigVMFunctionCompilationPropertyPath::HeadCPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationPropertyPath, SegmentPath) == 0x000018, "Member 'FRigVMFunctionCompilationPropertyPath::SegmentPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMOperand \ +static_assert(alignof(FRigVMOperand) == 0x000002, "Wrong alignment on FRigVMOperand"); \ +static_assert(sizeof(FRigVMOperand) == 0x000006, "Wrong size on FRigVMOperand"); \ +static_assert(offsetof(FRigVMOperand, MemoryType) == 0x000000, "Member 'FRigVMOperand::MemoryType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMOperand, RegisterIndex) == 0x000002, "Member 'FRigVMOperand::RegisterIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMOperand, RegisterOffset) == 0x000004, "Member 'FRigVMOperand::RegisterOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunctionCompilationData \ +static_assert(alignof(FRigVMFunctionCompilationData) == 0x000008, "Wrong alignment on FRigVMFunctionCompilationData"); \ +static_assert(sizeof(FRigVMFunctionCompilationData) == 0x000228, "Wrong size on FRigVMFunctionCompilationData"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, ByteCode) == 0x000000, "Member 'FRigVMFunctionCompilationData::ByteCode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, FunctionNames) == 0x0000A0, "Member 'FRigVMFunctionCompilationData::FunctionNames' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, WorkPropertyDescriptions) == 0x0000B0, "Member 'FRigVMFunctionCompilationData::WorkPropertyDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, WorkPropertyPathDescriptions) == 0x0000C0, "Member 'FRigVMFunctionCompilationData::WorkPropertyPathDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, LiteralPropertyDescriptions) == 0x0000D0, "Member 'FRigVMFunctionCompilationData::LiteralPropertyDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, LiteralPropertyPathDescriptions) == 0x0000E0, "Member 'FRigVMFunctionCompilationData::LiteralPropertyPathDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, DebugPropertyDescriptions) == 0x0000F0, "Member 'FRigVMFunctionCompilationData::DebugPropertyDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, DebugPropertyPathDescriptions) == 0x000100, "Member 'FRigVMFunctionCompilationData::DebugPropertyPathDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, ExternalPropertyDescriptions) == 0x000110, "Member 'FRigVMFunctionCompilationData::ExternalPropertyDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, ExternalPropertyPathDescriptions) == 0x000120, "Member 'FRigVMFunctionCompilationData::ExternalPropertyPathDescriptions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, ExternalRegisterIndexToVariable) == 0x000130, "Member 'FRigVMFunctionCompilationData::ExternalRegisterIndexToVariable' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, Operands) == 0x000180, "Member 'FRigVMFunctionCompilationData::Operands' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunctionCompilationData, Hash) == 0x0001D0, "Member 'FRigVMFunctionCompilationData::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMGraphFunctionData \ +static_assert(alignof(FRigVMGraphFunctionData) == 0x000008, "Wrong alignment on FRigVMGraphFunctionData"); \ +static_assert(sizeof(FRigVMGraphFunctionData) == 0x000348, "Wrong size on FRigVMGraphFunctionData"); \ +static_assert(offsetof(FRigVMGraphFunctionData, Header) == 0x000000, "Member 'FRigVMGraphFunctionData::Header' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionData, CompilationData) == 0x000110, "Member 'FRigVMGraphFunctionData::CompilationData' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionData, SerializedCollapsedNode) == 0x000338, "Member 'FRigVMGraphFunctionData::SerializedCollapsedNode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMGraphFunctionStore \ +static_assert(alignof(FRigVMGraphFunctionStore) == 0x000008, "Wrong alignment on FRigVMGraphFunctionStore"); \ +static_assert(sizeof(FRigVMGraphFunctionStore) == 0x000020, "Wrong size on FRigVMGraphFunctionStore"); \ +static_assert(offsetof(FRigVMGraphFunctionStore, PublicFunctions) == 0x000000, "Member 'FRigVMGraphFunctionStore::PublicFunctions' has a wrong offset!"); \ +static_assert(offsetof(FRigVMGraphFunctionStore, PrivateFunctions) == 0x000010, "Member 'FRigVMGraphFunctionStore::PrivateFunctions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayClone \ +static_assert(alignof(FRigVMDispatch_ArrayClone) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayClone"); \ +static_assert(sizeof(FRigVMDispatch_ArrayClone) == 0x000070, "Wrong size on FRigVMDispatch_ArrayClone"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_MakeStruct \ +static_assert(alignof(FRigVMDispatch_MakeStruct) == 0x000008, "Wrong alignment on FRigVMDispatch_MakeStruct"); \ +static_assert(sizeof(FRigVMDispatch_MakeStruct) == 0x000070, "Wrong size on FRigVMDispatch_MakeStruct"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_BreakStruct \ +static_assert(alignof(FRigVMDispatch_BreakStruct) == 0x000008, "Wrong alignment on FRigVMDispatch_BreakStruct"); \ +static_assert(sizeof(FRigVMDispatch_BreakStruct) == 0x000070, "Wrong size on FRigVMDispatch_BreakStruct"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayIterator \ +static_assert(alignof(FRigVMDispatch_ArrayIterator) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayIterator"); \ +static_assert(sizeof(FRigVMDispatch_ArrayIterator) == 0x000070, "Wrong size on FRigVMDispatch_ArrayIterator"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_If \ +static_assert(alignof(FRigVMDispatch_If) == 0x000008, "Wrong alignment on FRigVMDispatch_If"); \ +static_assert(sizeof(FRigVMDispatch_If) == 0x000070, "Wrong size on FRigVMDispatch_If"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NameBase \ +static_assert(alignof(FRigVMFunction_NameBase) == 0x000008, "Wrong alignment on FRigVMFunction_NameBase"); \ +static_assert(sizeof(FRigVMFunction_NameBase) == 0x000008, "Wrong size on FRigVMFunction_NameBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NameTruncate \ +static_assert(alignof(FRigVMFunction_NameTruncate) == 0x000008, "Wrong alignment on FRigVMFunction_NameTruncate"); \ +static_assert(sizeof(FRigVMFunction_NameTruncate) == 0x000028, "Wrong size on FRigVMFunction_NameTruncate"); \ +static_assert(offsetof(FRigVMFunction_NameTruncate, Name) == 0x000008, "Member 'FRigVMFunction_NameTruncate::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameTruncate, Count) == 0x000010, "Member 'FRigVMFunction_NameTruncate::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameTruncate, FromEnd) == 0x000014, "Member 'FRigVMFunction_NameTruncate::FromEnd' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameTruncate, Remainder) == 0x000018, "Member 'FRigVMFunction_NameTruncate::Remainder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameTruncate, Chopped) == 0x000020, "Member 'FRigVMFunction_NameTruncate::Chopped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMMemoryStatistics \ +static_assert(alignof(FRigVMMemoryStatistics) == 0x000004, "Wrong alignment on FRigVMMemoryStatistics"); \ +static_assert(sizeof(FRigVMMemoryStatistics) == 0x00000C, "Wrong size on FRigVMMemoryStatistics"); \ +static_assert(offsetof(FRigVMMemoryStatistics, RegisterCount) == 0x000000, "Member 'FRigVMMemoryStatistics::RegisterCount' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryStatistics, DataBytes) == 0x000004, "Member 'FRigVMMemoryStatistics::DataBytes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryStatistics, TotalBytes) == 0x000008, "Member 'FRigVMMemoryStatistics::TotalBytes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_SelectInt32 \ +static_assert(alignof(FRigVMDispatch_SelectInt32) == 0x000008, "Wrong alignment on FRigVMDispatch_SelectInt32"); \ +static_assert(sizeof(FRigVMDispatch_SelectInt32) == 0x000070, "Wrong size on FRigVMDispatch_SelectInt32"); \ + +#define DUMPER7_ASSERTS_FRigVMByteCodeStatistics \ +static_assert(alignof(FRigVMByteCodeStatistics) == 0x000004, "Wrong alignment on FRigVMByteCodeStatistics"); \ +static_assert(sizeof(FRigVMByteCodeStatistics) == 0x000008, "Wrong size on FRigVMByteCodeStatistics"); \ +static_assert(offsetof(FRigVMByteCodeStatistics, InstructionCount) == 0x000000, "Member 'FRigVMByteCodeStatistics::InstructionCount' has a wrong offset!"); \ +static_assert(offsetof(FRigVMByteCodeStatistics, DataBytes) == 0x000004, "Member 'FRigVMByteCodeStatistics::DataBytes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMStatistics \ +static_assert(alignof(FRigVMStatistics) == 0x000004, "Wrong alignment on FRigVMStatistics"); \ +static_assert(sizeof(FRigVMStatistics) == 0x000038, "Wrong size on FRigVMStatistics"); \ +static_assert(offsetof(FRigVMStatistics, BytesForCDO) == 0x000000, "Member 'FRigVMStatistics::BytesForCDO' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, BytesPerInstance) == 0x000004, "Member 'FRigVMStatistics::BytesPerInstance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, LiteralMemory) == 0x000008, "Member 'FRigVMStatistics::LiteralMemory' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, WorkMemory) == 0x000014, "Member 'FRigVMStatistics::WorkMemory' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, DebugMemory) == 0x000020, "Member 'FRigVMStatistics::DebugMemory' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, BytesForCaching) == 0x00002C, "Member 'FRigVMStatistics::BytesForCaching' has a wrong offset!"); \ +static_assert(offsetof(FRigVMStatistics, ByteCode) == 0x000030, "Member 'FRigVMStatistics::ByteCode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_CoreEquals \ +static_assert(alignof(FRigVMDispatch_CoreEquals) == 0x000008, "Wrong alignment on FRigVMDispatch_CoreEquals"); \ +static_assert(sizeof(FRigVMDispatch_CoreEquals) == 0x000070, "Wrong size on FRigVMDispatch_CoreEquals"); \ + +#define DUMPER7_ASSERTS_FRigVMParameter \ +static_assert(alignof(FRigVMParameter) == 0x000008, "Wrong alignment on FRigVMParameter"); \ +static_assert(sizeof(FRigVMParameter) == 0x000030, "Wrong size on FRigVMParameter"); \ +static_assert(offsetof(FRigVMParameter, Type) == 0x000000, "Member 'FRigVMParameter::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMParameter, Name) == 0x000004, "Member 'FRigVMParameter::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMParameter, RegisterIndex) == 0x00000C, "Member 'FRigVMParameter::RegisterIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMParameter, CPPType) == 0x000010, "Member 'FRigVMParameter::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMParameter, ScriptStruct) == 0x000020, "Member 'FRigVMParameter::ScriptStruct' has a wrong offset!"); \ +static_assert(offsetof(FRigVMParameter, ScriptStructPath) == 0x000028, "Member 'FRigVMParameter::ScriptStructPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMExecuteOp \ +static_assert(alignof(FRigVMExecuteOp) == 0x000002, "Wrong alignment on FRigVMExecuteOp"); \ +static_assert(sizeof(FRigVMExecuteOp) == 0x00000A, "Wrong size on FRigVMExecuteOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMirror \ +static_assert(alignof(FRigVMFunction_MathVectorMirror) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMirror"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMirror) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMirror"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirror, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorMirror::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirror, Normal) == 0x000020, "Member 'FRigVMFunction_MathVectorMirror::Normal' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMirror, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorMirror::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMBinaryOp \ +static_assert(alignof(FRigVMBinaryOp) == 0x000002, "Wrong alignment on FRigVMBinaryOp"); \ +static_assert(sizeof(FRigVMBinaryOp) == 0x00000E, "Wrong size on FRigVMBinaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMTernaryOp \ +static_assert(alignof(FRigVMTernaryOp) == 0x000002, "Wrong alignment on FRigVMTernaryOp"); \ +static_assert(sizeof(FRigVMTernaryOp) == 0x000014, "Wrong size on FRigVMTernaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorDistance \ +static_assert(alignof(FRigVMFunction_MathVectorDistance) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorDistance"); \ +static_assert(sizeof(FRigVMFunction_MathVectorDistance) == 0x000040, "Wrong size on FRigVMFunction_MathVectorDistance"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDistance, A) == 0x000008, "Member 'FRigVMFunction_MathVectorDistance::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDistance, B) == 0x000020, "Member 'FRigVMFunction_MathVectorDistance::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDistance, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorDistance::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMQuaternaryOp \ +static_assert(alignof(FRigVMQuaternaryOp) == 0x000002, "Wrong alignment on FRigVMQuaternaryOp"); \ +static_assert(sizeof(FRigVMQuaternaryOp) == 0x00001A, "Wrong size on FRigVMQuaternaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMQuinaryOp \ +static_assert(alignof(FRigVMQuinaryOp) == 0x000002, "Wrong alignment on FRigVMQuinaryOp"); \ +static_assert(sizeof(FRigVMQuinaryOp) == 0x000020, "Wrong size on FRigVMQuinaryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMCopyOp \ +static_assert(alignof(FRigVMCopyOp) == 0x000002, "Wrong alignment on FRigVMCopyOp"); \ +static_assert(sizeof(FRigVMCopyOp) == 0x000012, "Wrong size on FRigVMCopyOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorSetLength \ +static_assert(alignof(FRigVMFunction_MathVectorSetLength) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorSetLength"); \ +static_assert(sizeof(FRigVMFunction_MathVectorSetLength) == 0x000040, "Wrong size on FRigVMFunction_MathVectorSetLength"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSetLength, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorSetLength::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSetLength, Length) == 0x000020, "Member 'FRigVMFunction_MathVectorSetLength::Length' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSetLength, Result) == 0x000028, "Member 'FRigVMFunction_MathVectorSetLength::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMComparisonOp \ +static_assert(alignof(FRigVMComparisonOp) == 0x000002, "Wrong alignment on FRigVMComparisonOp"); \ +static_assert(sizeof(FRigVMComparisonOp) == 0x000014, "Wrong size on FRigVMComparisonOp"); \ + +#define DUMPER7_ASSERTS_FRigVMJumpOp \ +static_assert(alignof(FRigVMJumpOp) == 0x000004, "Wrong alignment on FRigVMJumpOp"); \ +static_assert(sizeof(FRigVMJumpOp) == 0x000008, "Wrong size on FRigVMJumpOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringBase \ +static_assert(alignof(FRigVMFunction_StringBase) == 0x000008, "Wrong alignment on FRigVMFunction_StringBase"); \ +static_assert(sizeof(FRigVMFunction_StringBase) == 0x000008, "Wrong size on FRigVMFunction_StringBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringReverse \ +static_assert(alignof(FRigVMFunction_StringReverse) == 0x000008, "Wrong alignment on FRigVMFunction_StringReverse"); \ +static_assert(sizeof(FRigVMFunction_StringReverse) == 0x000028, "Wrong size on FRigVMFunction_StringReverse"); \ +static_assert(offsetof(FRigVMFunction_StringReverse, Value) == 0x000008, "Member 'FRigVMFunction_StringReverse::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringReverse, Reverse) == 0x000018, "Member 'FRigVMFunction_StringReverse::Reverse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMJumpIfOp \ +static_assert(alignof(FRigVMJumpIfOp) == 0x000004, "Wrong alignment on FRigVMJumpIfOp"); \ +static_assert(sizeof(FRigVMJumpIfOp) == 0x000010, "Wrong size on FRigVMJumpIfOp"); \ + +#define DUMPER7_ASSERTS_FRigVMChangeTypeOp \ +static_assert(alignof(FRigVMChangeTypeOp) == 0x000002, "Wrong alignment on FRigVMChangeTypeOp"); \ +static_assert(sizeof(FRigVMChangeTypeOp) == 0x000008, "Wrong size on FRigVMChangeTypeOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringStartsWith \ +static_assert(alignof(FRigVMFunction_StringStartsWith) == 0x000008, "Wrong alignment on FRigVMFunction_StringStartsWith"); \ +static_assert(sizeof(FRigVMFunction_StringStartsWith) == 0x000030, "Wrong size on FRigVMFunction_StringStartsWith"); \ +static_assert(offsetof(FRigVMFunction_StringStartsWith, Name) == 0x000008, "Member 'FRigVMFunction_StringStartsWith::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringStartsWith, Start) == 0x000018, "Member 'FRigVMFunction_StringStartsWith::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringStartsWith, Result) == 0x000028, "Member 'FRigVMFunction_StringStartsWith::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMInvokeEntryOp \ +static_assert(alignof(FRigVMInvokeEntryOp) == 0x000004, "Wrong alignment on FRigVMInvokeEntryOp"); \ +static_assert(sizeof(FRigVMInvokeEntryOp) == 0x00000C, "Wrong size on FRigVMInvokeEntryOp"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_Contains \ +static_assert(alignof(FRigVMFunction_Contains) == 0x000008, "Wrong alignment on FRigVMFunction_Contains"); \ +static_assert(sizeof(FRigVMFunction_Contains) == 0x000020, "Wrong size on FRigVMFunction_Contains"); \ +static_assert(offsetof(FRigVMFunction_Contains, Name) == 0x000008, "Member 'FRigVMFunction_Contains::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Contains, Search) == 0x000010, "Member 'FRigVMFunction_Contains::Search' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Contains, Result) == 0x000018, "Member 'FRigVMFunction_Contains::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMInstruction \ +static_assert(alignof(FRigVMInstruction) == 0x000008, "Wrong alignment on FRigVMInstruction"); \ +static_assert(sizeof(FRigVMInstruction) == 0x000010, "Wrong size on FRigVMInstruction"); \ +static_assert(offsetof(FRigVMInstruction, ByteCodeIndex) == 0x000000, "Member 'FRigVMInstruction::ByteCodeIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMInstruction, OpCode) == 0x000008, "Member 'FRigVMInstruction::OpCode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMInstruction, OperandAlignment) == 0x000009, "Member 'FRigVMInstruction::OperandAlignment' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMInstructionArray \ +static_assert(alignof(FRigVMInstructionArray) == 0x000008, "Wrong alignment on FRigVMInstructionArray"); \ +static_assert(sizeof(FRigVMInstructionArray) == 0x000010, "Wrong size on FRigVMInstructionArray"); \ +static_assert(offsetof(FRigVMInstructionArray, Instructions) == 0x000000, "Member 'FRigVMInstructionArray::Instructions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringToUppercase \ +static_assert(alignof(FRigVMFunction_StringToUppercase) == 0x000008, "Wrong alignment on FRigVMFunction_StringToUppercase"); \ +static_assert(sizeof(FRigVMFunction_StringToUppercase) == 0x000028, "Wrong size on FRigVMFunction_StringToUppercase"); \ +static_assert(offsetof(FRigVMFunction_StringToUppercase, Value) == 0x000008, "Member 'FRigVMFunction_StringToUppercase::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringToUppercase, Result) == 0x000018, "Member 'FRigVMFunction_StringToUppercase::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMBreakpoint \ +static_assert(alignof(FRigVMBreakpoint) == 0x000008, "Wrong alignment on FRigVMBreakpoint"); \ +static_assert(sizeof(FRigVMBreakpoint) == 0x000028, "Wrong size on FRigVMBreakpoint"); \ + +#define DUMPER7_ASSERTS_FRigVMDebugInfo \ +static_assert(alignof(FRigVMDebugInfo) == 0x000008, "Wrong alignment on FRigVMDebugInfo"); \ +static_assert(sizeof(FRigVMDebugInfo) == 0x0000F8, "Wrong size on FRigVMDebugInfo"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_ToString \ +static_assert(alignof(FRigDispatch_ToString) == 0x000008, "Wrong alignment on FRigDispatch_ToString"); \ +static_assert(sizeof(FRigDispatch_ToString) == 0x000070, "Wrong size on FRigDispatch_ToString"); \ + +#define DUMPER7_ASSERTS_FRigVMDrawInterface \ +static_assert(alignof(FRigVMDrawInterface) == 0x000008, "Wrong alignment on FRigVMDrawInterface"); \ +static_assert(sizeof(FRigVMDrawInterface) == 0x000018, "Wrong size on FRigVMDrawInterface"); \ + +#define DUMPER7_ASSERTS_FRigVMSlice \ +static_assert(alignof(FRigVMSlice) == 0x000004, "Wrong alignment on FRigVMSlice"); \ +static_assert(sizeof(FRigVMSlice) == 0x000014, "Wrong size on FRigVMSlice"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringRight \ +static_assert(alignof(FRigVMFunction_StringRight) == 0x000008, "Wrong alignment on FRigVMFunction_StringRight"); \ +static_assert(sizeof(FRigVMFunction_StringRight) == 0x000030, "Wrong size on FRigVMFunction_StringRight"); \ +static_assert(offsetof(FRigVMFunction_StringRight, Value) == 0x000008, "Member 'FRigVMFunction_StringRight::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringRight, Count) == 0x000018, "Member 'FRigVMFunction_StringRight::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringRight, Result) == 0x000020, "Member 'FRigVMFunction_StringRight::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMRegister \ +static_assert(alignof(FRigVMRegister) == 0x000004, "Wrong alignment on FRigVMRegister"); \ +static_assert(sizeof(FRigVMRegister) == 0x000024, "Wrong size on FRigVMRegister"); \ +static_assert(offsetof(FRigVMRegister, Type) == 0x000000, "Member 'FRigVMRegister::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, ByteIndex) == 0x000004, "Member 'FRigVMRegister::ByteIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, ElementSize) == 0x000008, "Member 'FRigVMRegister::ElementSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, ElementCount) == 0x00000A, "Member 'FRigVMRegister::ElementCount' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, SliceCount) == 0x00000C, "Member 'FRigVMRegister::SliceCount' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, AlignmentBytes) == 0x00000E, "Member 'FRigVMRegister::AlignmentBytes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, TrailingBytes) == 0x000010, "Member 'FRigVMRegister::TrailingBytes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, Name) == 0x000014, "Member 'FRigVMRegister::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, ScriptStructIndex) == 0x00001C, "Member 'FRigVMRegister::ScriptStructIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, bIsArray) == 0x000020, "Member 'FRigVMRegister::bIsArray' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegister, bIsDynamic) == 0x000021, "Member 'FRigVMRegister::bIsDynamic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMRegisterOffset \ +static_assert(alignof(FRigVMRegisterOffset) == 0x000008, "Wrong alignment on FRigVMRegisterOffset"); \ +static_assert(sizeof(FRigVMRegisterOffset) == 0x000048, "Wrong size on FRigVMRegisterOffset"); \ +static_assert(offsetof(FRigVMRegisterOffset, Segments) == 0x000000, "Member 'FRigVMRegisterOffset::Segments' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, Type) == 0x000010, "Member 'FRigVMRegisterOffset::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, CPPType) == 0x000014, "Member 'FRigVMRegisterOffset::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, ScriptStruct) == 0x000020, "Member 'FRigVMRegisterOffset::ScriptStruct' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, ParentScriptStruct) == 0x000028, "Member 'FRigVMRegisterOffset::ParentScriptStruct' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, ArrayIndex) == 0x000030, "Member 'FRigVMRegisterOffset::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, ElementSize) == 0x000034, "Member 'FRigVMRegisterOffset::ElementSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMRegisterOffset, CachedSegmentPath) == 0x000038, "Member 'FRigVMRegisterOffset::CachedSegmentPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringLength \ +static_assert(alignof(FRigVMFunction_StringLength) == 0x000008, "Wrong alignment on FRigVMFunction_StringLength"); \ +static_assert(sizeof(FRigVMFunction_StringLength) == 0x000020, "Wrong size on FRigVMFunction_StringLength"); \ +static_assert(offsetof(FRigVMFunction_StringLength, Value) == 0x000008, "Member 'FRigVMFunction_StringLength::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringLength, Length) == 0x000018, "Member 'FRigVMFunction_StringLength::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMMemoryContainer \ +static_assert(alignof(FRigVMMemoryContainer) == 0x000008, "Wrong alignment on FRigVMMemoryContainer"); \ +static_assert(sizeof(FRigVMMemoryContainer) == 0x0000A0, "Wrong size on FRigVMMemoryContainer"); \ +static_assert(offsetof(FRigVMMemoryContainer, bUseNameMap) == 0x000000, "Member 'FRigVMMemoryContainer::bUseNameMap' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, MemoryType) == 0x000001, "Member 'FRigVMMemoryContainer::MemoryType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, Registers) == 0x000008, "Member 'FRigVMMemoryContainer::Registers' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, RegisterOffsets) == 0x000018, "Member 'FRigVMMemoryContainer::RegisterOffsets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, Data) == 0x000028, "Member 'FRigVMMemoryContainer::Data' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, ScriptStructs) == 0x000038, "Member 'FRigVMMemoryContainer::ScriptStructs' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, NameMap) == 0x000048, "Member 'FRigVMMemoryContainer::NameMap' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMemoryContainer, bEncounteredErrorDuringLoad) == 0x000098, "Member 'FRigVMMemoryContainer::bEncounteredErrorDuringLoad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMTemplateArgumentType \ +static_assert(alignof(FRigVMTemplateArgumentType) == 0x000008, "Wrong alignment on FRigVMTemplateArgumentType"); \ +static_assert(sizeof(FRigVMTemplateArgumentType) == 0x000010, "Wrong size on FRigVMTemplateArgumentType"); \ +static_assert(offsetof(FRigVMTemplateArgumentType, CPPType) == 0x000000, "Member 'FRigVMTemplateArgumentType::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FRigVMTemplateArgumentType, CPPTypeObject) == 0x000008, "Member 'FRigVMTemplateArgumentType::CPPTypeObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringJoin \ +static_assert(alignof(FRigVMFunction_StringJoin) == 0x000008, "Wrong alignment on FRigVMFunction_StringJoin"); \ +static_assert(sizeof(FRigVMFunction_StringJoin) == 0x000038, "Wrong size on FRigVMFunction_StringJoin"); \ +static_assert(offsetof(FRigVMFunction_StringJoin, Values) == 0x000008, "Member 'FRigVMFunction_StringJoin::Values' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringJoin, Separator) == 0x000018, "Member 'FRigVMFunction_StringJoin::Separator' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringJoin, Result) == 0x000028, "Member 'FRigVMFunction_StringJoin::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMUserWorkflow \ +static_assert(alignof(FRigVMUserWorkflow) == 0x000008, "Wrong alignment on FRigVMUserWorkflow"); \ +static_assert(sizeof(FRigVMUserWorkflow) == 0x000058, "Wrong size on FRigVMUserWorkflow"); \ +static_assert(offsetof(FRigVMUserWorkflow, Title) == 0x000008, "Member 'FRigVMUserWorkflow::Title' has a wrong offset!"); \ +static_assert(offsetof(FRigVMUserWorkflow, Tooltip) == 0x000018, "Member 'FRigVMUserWorkflow::Tooltip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMUserWorkflow, Type) == 0x000028, "Member 'FRigVMUserWorkflow::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMUserWorkflow, PerformDynamicDelegate) == 0x000040, "Member 'FRigVMUserWorkflow::PerformDynamicDelegate' has a wrong offset!"); \ +static_assert(offsetof(FRigVMUserWorkflow, OptionsClass) == 0x000050, "Member 'FRigVMUserWorkflow::OptionsClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AnimEasingType \ +static_assert(alignof(FRigVMFunction_AnimEasingType) == 0x000008, "Wrong alignment on FRigVMFunction_AnimEasingType"); \ +static_assert(sizeof(FRigVMFunction_AnimEasingType) == 0x000010, "Wrong size on FRigVMFunction_AnimEasingType"); \ +static_assert(offsetof(FRigVMFunction_AnimEasingType, Type) == 0x000008, "Member 'FRigVMFunction_AnimEasingType::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateTransformMul \ +static_assert(alignof(FRigVMFunction_AccumulateTransformMul) == 0x000010, "Wrong alignment on FRigVMFunction_AccumulateTransformMul"); \ +static_assert(sizeof(FRigVMFunction_AccumulateTransformMul) == 0x0001B0, "Wrong size on FRigVMFunction_AccumulateTransformMul"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, Multiplier) == 0x000010, "Member 'FRigVMFunction_AccumulateTransformMul::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, InitialValue) == 0x000070, "Member 'FRigVMFunction_AccumulateTransformMul::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, bFlipOrder) == 0x0000D0, "Member 'FRigVMFunction_AccumulateTransformMul::bFlipOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, bIntegrateDeltaTime) == 0x0000D1, "Member 'FRigVMFunction_AccumulateTransformMul::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, Result) == 0x0000E0, "Member 'FRigVMFunction_AccumulateTransformMul::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, AccumulatedValue) == 0x000140, "Member 'FRigVMFunction_AccumulateTransformMul::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformMul, bIsInitialized) == 0x0001A0, "Member 'FRigVMFunction_AccumulateTransformMul::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AnimEasing \ +static_assert(alignof(FRigVMFunction_AnimEasing) == 0x000008, "Wrong alignment on FRigVMFunction_AnimEasing"); \ +static_assert(sizeof(FRigVMFunction_AnimEasing) == 0x000028, "Wrong size on FRigVMFunction_AnimEasing"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, Value) == 0x000008, "Member 'FRigVMFunction_AnimEasing::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, Type) == 0x00000C, "Member 'FRigVMFunction_AnimEasing::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, SourceMinimum) == 0x000010, "Member 'FRigVMFunction_AnimEasing::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, SourceMaximum) == 0x000014, "Member 'FRigVMFunction_AnimEasing::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, TargetMinimum) == 0x000018, "Member 'FRigVMFunction_AnimEasing::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, TargetMaximum) == 0x00001C, "Member 'FRigVMFunction_AnimEasing::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEasing, Result) == 0x000020, "Member 'FRigVMFunction_AnimEasing::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AnimEvalRichCurve \ +static_assert(alignof(FRigVMFunction_AnimEvalRichCurve) == 0x000008, "Wrong alignment on FRigVMFunction_AnimEvalRichCurve"); \ +static_assert(sizeof(FRigVMFunction_AnimEvalRichCurve) == 0x0000B0, "Wrong size on FRigVMFunction_AnimEvalRichCurve"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, Value) == 0x000008, "Member 'FRigVMFunction_AnimEvalRichCurve::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, Curve) == 0x000010, "Member 'FRigVMFunction_AnimEvalRichCurve::Curve' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, SourceMinimum) == 0x000098, "Member 'FRigVMFunction_AnimEvalRichCurve::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, SourceMaximum) == 0x00009C, "Member 'FRigVMFunction_AnimEvalRichCurve::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, TargetMinimum) == 0x0000A0, "Member 'FRigVMFunction_AnimEvalRichCurve::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, TargetMaximum) == 0x0000A4, "Member 'FRigVMFunction_AnimEvalRichCurve::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AnimEvalRichCurve, Result) == 0x0000A8, "Member 'FRigVMFunction_AnimEvalRichCurve::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AnimRichCurve \ +static_assert(alignof(FRigVMFunction_AnimRichCurve) == 0x000008, "Wrong alignment on FRigVMFunction_AnimRichCurve"); \ +static_assert(sizeof(FRigVMFunction_AnimRichCurve) == 0x000090, "Wrong size on FRigVMFunction_AnimRichCurve"); \ +static_assert(offsetof(FRigVMFunction_AnimRichCurve, Curve) == 0x000008, "Member 'FRigVMFunction_AnimRichCurve::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_GetDeltaTime \ +static_assert(alignof(FRigVMFunction_GetDeltaTime) == 0x000008, "Wrong alignment on FRigVMFunction_GetDeltaTime"); \ +static_assert(sizeof(FRigVMFunction_GetDeltaTime) == 0x000010, "Wrong size on FRigVMFunction_GetDeltaTime"); \ +static_assert(offsetof(FRigVMFunction_GetDeltaTime, Result) == 0x000008, "Member 'FRigVMFunction_GetDeltaTime::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringFind \ +static_assert(alignof(FRigVMFunction_StringFind) == 0x000008, "Wrong alignment on FRigVMFunction_StringFind"); \ +static_assert(sizeof(FRigVMFunction_StringFind) == 0x000030, "Wrong size on FRigVMFunction_StringFind"); \ +static_assert(offsetof(FRigVMFunction_StringFind, Value) == 0x000008, "Member 'FRigVMFunction_StringFind::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringFind, Search) == 0x000018, "Member 'FRigVMFunction_StringFind::Search' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringFind, Found) == 0x000028, "Member 'FRigVMFunction_StringFind::Found' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringFind, Index) == 0x00002C, "Member 'FRigVMFunction_StringFind::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_GetWorldTime \ +static_assert(alignof(FRigVMFunction_GetWorldTime) == 0x000008, "Wrong alignment on FRigVMFunction_GetWorldTime"); \ +static_assert(sizeof(FRigVMFunction_GetWorldTime) == 0x000028, "Wrong size on FRigVMFunction_GetWorldTime"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Year) == 0x000008, "Member 'FRigVMFunction_GetWorldTime::Year' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Month) == 0x00000C, "Member 'FRigVMFunction_GetWorldTime::Month' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Day) == 0x000010, "Member 'FRigVMFunction_GetWorldTime::Day' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, WeekDay) == 0x000014, "Member 'FRigVMFunction_GetWorldTime::WeekDay' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Hours) == 0x000018, "Member 'FRigVMFunction_GetWorldTime::Hours' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Minutes) == 0x00001C, "Member 'FRigVMFunction_GetWorldTime::Minutes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, Seconds) == 0x000020, "Member 'FRigVMFunction_GetWorldTime::Seconds' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_GetWorldTime, OverallSeconds) == 0x000024, "Member 'FRigVMFunction_GetWorldTime::OverallSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_FramesToSeconds \ +static_assert(alignof(FRigVMFunction_FramesToSeconds) == 0x000008, "Wrong alignment on FRigVMFunction_FramesToSeconds"); \ +static_assert(sizeof(FRigVMFunction_FramesToSeconds) == 0x000010, "Wrong size on FRigVMFunction_FramesToSeconds"); \ +static_assert(offsetof(FRigVMFunction_FramesToSeconds, Frames) == 0x000008, "Member 'FRigVMFunction_FramesToSeconds::Frames' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_FramesToSeconds, Seconds) == 0x00000C, "Member 'FRigVMFunction_FramesToSeconds::Seconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateVectorMul \ +static_assert(alignof(FRigVMFunction_AccumulateVectorMul) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateVectorMul"); \ +static_assert(sizeof(FRigVMFunction_AccumulateVectorMul) == 0x000078, "Wrong size on FRigVMFunction_AccumulateVectorMul"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, Multiplier) == 0x000008, "Member 'FRigVMFunction_AccumulateVectorMul::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, InitialValue) == 0x000020, "Member 'FRigVMFunction_AccumulateVectorMul::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, bIntegrateDeltaTime) == 0x000038, "Member 'FRigVMFunction_AccumulateVectorMul::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, Result) == 0x000040, "Member 'FRigVMFunction_AccumulateVectorMul::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, AccumulatedValue) == 0x000058, "Member 'FRigVMFunction_AccumulateVectorMul::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorMul, bIsInitialized) == 0x000070, "Member 'FRigVMFunction_AccumulateVectorMul::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_SecondsToFrames \ +static_assert(alignof(FRigVMFunction_SecondsToFrames) == 0x000008, "Wrong alignment on FRigVMFunction_SecondsToFrames"); \ +static_assert(sizeof(FRigVMFunction_SecondsToFrames) == 0x000010, "Wrong size on FRigVMFunction_SecondsToFrames"); \ +static_assert(offsetof(FRigVMFunction_SecondsToFrames, Seconds) == 0x000008, "Member 'FRigVMFunction_SecondsToFrames::Seconds' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_SecondsToFrames, Frames) == 0x00000C, "Member 'FRigVMFunction_SecondsToFrames::Frames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugLineNoSpace \ +static_assert(alignof(FRigVMFunction_DebugLineNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugLineNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugLineNoSpace) == 0x0001C0, "Wrong size on FRigVMFunction_DebugLineNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, A) == 0x000100, "Member 'FRigVMFunction_DebugLineNoSpace::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, B) == 0x000118, "Member 'FRigVMFunction_DebugLineNoSpace::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, Color) == 0x000130, "Member 'FRigVMFunction_DebugLineNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, Thickness) == 0x000140, "Member 'FRigVMFunction_DebugLineNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, WorldOffset) == 0x000150, "Member 'FRigVMFunction_DebugLineNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineNoSpace, bEnabled) == 0x0001B0, "Member 'FRigVMFunction_DebugLineNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugLineStripNoSpace \ +static_assert(alignof(FRigVMFunction_DebugLineStripNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugLineStripNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugLineStripNoSpace) == 0x0001A0, "Wrong size on FRigVMFunction_DebugLineStripNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugLineStripNoSpace, Points) == 0x000100, "Member 'FRigVMFunction_DebugLineStripNoSpace::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineStripNoSpace, Color) == 0x000110, "Member 'FRigVMFunction_DebugLineStripNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineStripNoSpace, Thickness) == 0x000120, "Member 'FRigVMFunction_DebugLineStripNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineStripNoSpace, WorldOffset) == 0x000130, "Member 'FRigVMFunction_DebugLineStripNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugLineStripNoSpace, bEnabled) == 0x000190, "Member 'FRigVMFunction_DebugLineStripNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugPoint \ +static_assert(alignof(FRigVMFunction_DebugPoint) == 0x000010, "Wrong alignment on FRigVMFunction_DebugPoint"); \ +static_assert(sizeof(FRigVMFunction_DebugPoint) == 0x0000C0, "Wrong size on FRigVMFunction_DebugPoint"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Vector) == 0x000008, "Member 'FRigVMFunction_DebugPoint::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Mode) == 0x000020, "Member 'FRigVMFunction_DebugPoint::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Color) == 0x000024, "Member 'FRigVMFunction_DebugPoint::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Scale) == 0x000034, "Member 'FRigVMFunction_DebugPoint::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Thickness) == 0x000038, "Member 'FRigVMFunction_DebugPoint::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, Space) == 0x00003C, "Member 'FRigVMFunction_DebugPoint::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, WorldOffset) == 0x000050, "Member 'FRigVMFunction_DebugPoint::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPoint, bEnabled) == 0x0000B0, "Member 'FRigVMFunction_DebugPoint::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugPointMutable \ +static_assert(alignof(FRigVMFunction_DebugPointMutable) == 0x000010, "Wrong alignment on FRigVMFunction_DebugPointMutable"); \ +static_assert(sizeof(FRigVMFunction_DebugPointMutable) == 0x0001B0, "Wrong size on FRigVMFunction_DebugPointMutable"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Vector) == 0x000100, "Member 'FRigVMFunction_DebugPointMutable::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Mode) == 0x000118, "Member 'FRigVMFunction_DebugPointMutable::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Color) == 0x00011C, "Member 'FRigVMFunction_DebugPointMutable::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Scale) == 0x00012C, "Member 'FRigVMFunction_DebugPointMutable::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Thickness) == 0x000130, "Member 'FRigVMFunction_DebugPointMutable::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, Space) == 0x000134, "Member 'FRigVMFunction_DebugPointMutable::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, WorldOffset) == 0x000140, "Member 'FRigVMFunction_DebugPointMutable::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugPointMutable, bEnabled) == 0x0001A0, "Member 'FRigVMFunction_DebugPointMutable::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugRectangle \ +static_assert(alignof(FRigVMFunction_DebugRectangle) == 0x000010, "Wrong alignment on FRigVMFunction_DebugRectangle"); \ +static_assert(sizeof(FRigVMFunction_DebugRectangle) == 0x0001F0, "Wrong size on FRigVMFunction_DebugRectangle"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, Transform) == 0x000100, "Member 'FRigVMFunction_DebugRectangle::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, Color) == 0x000160, "Member 'FRigVMFunction_DebugRectangle::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, Scale) == 0x000170, "Member 'FRigVMFunction_DebugRectangle::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, Thickness) == 0x000174, "Member 'FRigVMFunction_DebugRectangle::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, Space) == 0x000178, "Member 'FRigVMFunction_DebugRectangle::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, WorldOffset) == 0x000180, "Member 'FRigVMFunction_DebugRectangle::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangle, bEnabled) == 0x0001E0, "Member 'FRigVMFunction_DebugRectangle::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateVectorAdd \ +static_assert(alignof(FRigVMFunction_AccumulateVectorAdd) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateVectorAdd"); \ +static_assert(sizeof(FRigVMFunction_AccumulateVectorAdd) == 0x000078, "Wrong size on FRigVMFunction_AccumulateVectorAdd"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, Increment) == 0x000008, "Member 'FRigVMFunction_AccumulateVectorAdd::Increment' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, InitialValue) == 0x000020, "Member 'FRigVMFunction_AccumulateVectorAdd::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, bIntegrateDeltaTime) == 0x000038, "Member 'FRigVMFunction_AccumulateVectorAdd::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, Result) == 0x000040, "Member 'FRigVMFunction_AccumulateVectorAdd::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, AccumulatedValue) == 0x000058, "Member 'FRigVMFunction_AccumulateVectorAdd::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateVectorAdd, bIsInitialized) == 0x000070, "Member 'FRigVMFunction_AccumulateVectorAdd::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugRectangleNoSpace \ +static_assert(alignof(FRigVMFunction_DebugRectangleNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugRectangleNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugRectangleNoSpace) == 0x0001F0, "Wrong size on FRigVMFunction_DebugRectangleNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, Transform) == 0x000100, "Member 'FRigVMFunction_DebugRectangleNoSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, Color) == 0x000160, "Member 'FRigVMFunction_DebugRectangleNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, Scale) == 0x000170, "Member 'FRigVMFunction_DebugRectangleNoSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, Thickness) == 0x000174, "Member 'FRigVMFunction_DebugRectangleNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, WorldOffset) == 0x000180, "Member 'FRigVMFunction_DebugRectangleNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugRectangleNoSpace, bEnabled) == 0x0001E0, "Member 'FRigVMFunction_DebugRectangleNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugArc \ +static_assert(alignof(FRigVMFunction_DebugArc) == 0x000010, "Wrong alignment on FRigVMFunction_DebugArc"); \ +static_assert(sizeof(FRigVMFunction_DebugArc) == 0x000200, "Wrong size on FRigVMFunction_DebugArc"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Transform) == 0x000100, "Member 'FRigVMFunction_DebugArc::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Color) == 0x000160, "Member 'FRigVMFunction_DebugArc::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Radius) == 0x000170, "Member 'FRigVMFunction_DebugArc::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, MinimumDegrees) == 0x000174, "Member 'FRigVMFunction_DebugArc::MinimumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, MaximumDegrees) == 0x000178, "Member 'FRigVMFunction_DebugArc::MaximumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Thickness) == 0x00017C, "Member 'FRigVMFunction_DebugArc::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Detail) == 0x000180, "Member 'FRigVMFunction_DebugArc::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, Space) == 0x000184, "Member 'FRigVMFunction_DebugArc::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, WorldOffset) == 0x000190, "Member 'FRigVMFunction_DebugArc::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArc, bEnabled) == 0x0001F0, "Member 'FRigVMFunction_DebugArc::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugArcNoSpace \ +static_assert(alignof(FRigVMFunction_DebugArcNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugArcNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugArcNoSpace) == 0x000200, "Wrong size on FRigVMFunction_DebugArcNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, Transform) == 0x000100, "Member 'FRigVMFunction_DebugArcNoSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, Color) == 0x000160, "Member 'FRigVMFunction_DebugArcNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, Radius) == 0x000170, "Member 'FRigVMFunction_DebugArcNoSpace::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, MinimumDegrees) == 0x000174, "Member 'FRigVMFunction_DebugArcNoSpace::MinimumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, MaximumDegrees) == 0x000178, "Member 'FRigVMFunction_DebugArcNoSpace::MaximumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, Thickness) == 0x00017C, "Member 'FRigVMFunction_DebugArcNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, Detail) == 0x000180, "Member 'FRigVMFunction_DebugArcNoSpace::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, WorldOffset) == 0x000190, "Member 'FRigVMFunction_DebugArcNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugArcNoSpace, bEnabled) == 0x0001F0, "Member 'FRigVMFunction_DebugArcNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugTransformMutableNoSpace \ +static_assert(alignof(FRigVMFunction_DebugTransformMutableNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugTransformMutableNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugTransformMutableNoSpace) == 0x0001F0, "Wrong size on FRigVMFunction_DebugTransformMutableNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, Transform) == 0x000100, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, Mode) == 0x000160, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, Color) == 0x000164, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, Thickness) == 0x000174, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, Scale) == 0x000178, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, WorldOffset) == 0x000180, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformMutableNoSpace, bEnabled) == 0x0001E0, "Member 'FRigVMFunction_DebugTransformMutableNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_KalmanTransform \ +static_assert(alignof(FRigVMFunction_KalmanTransform) == 0x000010, "Wrong alignment on FRigVMFunction_KalmanTransform"); \ +static_assert(sizeof(FRigVMFunction_KalmanTransform) == 0x000100, "Wrong size on FRigVMFunction_KalmanTransform"); \ +static_assert(offsetof(FRigVMFunction_KalmanTransform, Value) == 0x000010, "Member 'FRigVMFunction_KalmanTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanTransform, BufferSize) == 0x000070, "Member 'FRigVMFunction_KalmanTransform::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanTransform, Result) == 0x000080, "Member 'FRigVMFunction_KalmanTransform::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanTransform, Buffer) == 0x0000E0, "Member 'FRigVMFunction_KalmanTransform::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanTransform, LastInsertIndex) == 0x0000F0, "Member 'FRigVMFunction_KalmanTransform::LastInsertIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugTransformArrayMutable_WorkData \ +static_assert(alignof(FRigVMFunction_DebugTransformArrayMutable_WorkData) == 0x000008, "Wrong alignment on FRigVMFunction_DebugTransformArrayMutable_WorkData"); \ +static_assert(sizeof(FRigVMFunction_DebugTransformArrayMutable_WorkData) == 0x000010, "Wrong size on FRigVMFunction_DebugTransformArrayMutable_WorkData"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutable_WorkData, DrawTransforms) == 0x000000, "Member 'FRigVMFunction_DebugTransformArrayMutable_WorkData::DrawTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DebugTransformArrayMutableNoSpace \ +static_assert(alignof(FRigVMFunction_DebugTransformArrayMutableNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_DebugTransformArrayMutableNoSpace"); \ +static_assert(sizeof(FRigVMFunction_DebugTransformArrayMutableNoSpace) == 0x0001B0, "Wrong size on FRigVMFunction_DebugTransformArrayMutableNoSpace"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, Transforms) == 0x000100, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, ParentIndices) == 0x000110, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::ParentIndices' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, Mode) == 0x000120, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, Color) == 0x000124, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, Thickness) == 0x000134, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, Scale) == 0x000138, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, WorldOffset) == 0x000140, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DebugTransformArrayMutableNoSpace, bEnabled) == 0x0001A0, "Member 'FRigVMFunction_DebugTransformArrayMutableNoSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DeltaFromPreviousFloat \ +static_assert(alignof(FRigVMFunction_DeltaFromPreviousFloat) == 0x000008, "Wrong alignment on FRigVMFunction_DeltaFromPreviousFloat"); \ +static_assert(sizeof(FRigVMFunction_DeltaFromPreviousFloat) == 0x000020, "Wrong size on FRigVMFunction_DeltaFromPreviousFloat"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousFloat, Value) == 0x000008, "Member 'FRigVMFunction_DeltaFromPreviousFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousFloat, Delta) == 0x00000C, "Member 'FRigVMFunction_DeltaFromPreviousFloat::Delta' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousFloat, PreviousValue) == 0x000010, "Member 'FRigVMFunction_DeltaFromPreviousFloat::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousFloat, Cache) == 0x000014, "Member 'FRigVMFunction_DeltaFromPreviousFloat::Cache' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousFloat, bIsInitialized) == 0x000018, "Member 'FRigVMFunction_DeltaFromPreviousFloat::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugVector \ +static_assert(alignof(FRigVMFunction_VisualDebugVector) == 0x000008, "Wrong alignment on FRigVMFunction_VisualDebugVector"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugVector) == 0x000048, "Wrong size on FRigVMFunction_VisualDebugVector"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, Value) == 0x000008, "Member 'FRigVMFunction_VisualDebugVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, bEnabled) == 0x000020, "Member 'FRigVMFunction_VisualDebugVector::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, Mode) == 0x000021, "Member 'FRigVMFunction_VisualDebugVector::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, Color) == 0x000024, "Member 'FRigVMFunction_VisualDebugVector::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, Thickness) == 0x000034, "Member 'FRigVMFunction_VisualDebugVector::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, Scale) == 0x000038, "Member 'FRigVMFunction_VisualDebugVector::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVector, BoneSpace) == 0x00003C, "Member 'FRigVMFunction_VisualDebugVector::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugVectorNoSpace \ +static_assert(alignof(FRigVMFunction_VisualDebugVectorNoSpace) == 0x000008, "Wrong alignment on FRigVMFunction_VisualDebugVectorNoSpace"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugVectorNoSpace) == 0x000040, "Wrong size on FRigVMFunction_VisualDebugVectorNoSpace"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, Value) == 0x000008, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, bEnabled) == 0x000020, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, Mode) == 0x000021, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, Color) == 0x000024, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, Thickness) == 0x000034, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugVectorNoSpace, Scale) == 0x000038, "Member 'FRigVMFunction_VisualDebugVectorNoSpace::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateTransformLerp \ +static_assert(alignof(FRigVMFunction_AccumulateTransformLerp) == 0x000010, "Wrong alignment on FRigVMFunction_AccumulateTransformLerp"); \ +static_assert(sizeof(FRigVMFunction_AccumulateTransformLerp) == 0x0001B0, "Wrong size on FRigVMFunction_AccumulateTransformLerp"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, TargetValue) == 0x000010, "Member 'FRigVMFunction_AccumulateTransformLerp::TargetValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, InitialValue) == 0x000070, "Member 'FRigVMFunction_AccumulateTransformLerp::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, Blend) == 0x0000D0, "Member 'FRigVMFunction_AccumulateTransformLerp::Blend' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, bIntegrateDeltaTime) == 0x0000D4, "Member 'FRigVMFunction_AccumulateTransformLerp::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, Result) == 0x0000E0, "Member 'FRigVMFunction_AccumulateTransformLerp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, AccumulatedValue) == 0x000140, "Member 'FRigVMFunction_AccumulateTransformLerp::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateTransformLerp, bIsInitialized) == 0x0001A0, "Member 'FRigVMFunction_AccumulateTransformLerp::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugQuat \ +static_assert(alignof(FRigVMFunction_VisualDebugQuat) == 0x000010, "Wrong alignment on FRigVMFunction_VisualDebugQuat"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugQuat) == 0x000050, "Wrong size on FRigVMFunction_VisualDebugQuat"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuat, Value) == 0x000010, "Member 'FRigVMFunction_VisualDebugQuat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuat, bEnabled) == 0x000030, "Member 'FRigVMFunction_VisualDebugQuat::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuat, Thickness) == 0x000034, "Member 'FRigVMFunction_VisualDebugQuat::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuat, Scale) == 0x000038, "Member 'FRigVMFunction_VisualDebugQuat::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuat, BoneSpace) == 0x00003C, "Member 'FRigVMFunction_VisualDebugQuat::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugQuatNoSpace \ +static_assert(alignof(FRigVMFunction_VisualDebugQuatNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_VisualDebugQuatNoSpace"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugQuatNoSpace) == 0x000040, "Wrong size on FRigVMFunction_VisualDebugQuatNoSpace"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuatNoSpace, Value) == 0x000010, "Member 'FRigVMFunction_VisualDebugQuatNoSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuatNoSpace, bEnabled) == 0x000030, "Member 'FRigVMFunction_VisualDebugQuatNoSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuatNoSpace, Thickness) == 0x000034, "Member 'FRigVMFunction_VisualDebugQuatNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugQuatNoSpace, Scale) == 0x000038, "Member 'FRigVMFunction_VisualDebugQuatNoSpace::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_KalmanFloat \ +static_assert(alignof(FRigVMFunction_KalmanFloat) == 0x000008, "Wrong alignment on FRigVMFunction_KalmanFloat"); \ +static_assert(sizeof(FRigVMFunction_KalmanFloat) == 0x000030, "Wrong size on FRigVMFunction_KalmanFloat"); \ +static_assert(offsetof(FRigVMFunction_KalmanFloat, Value) == 0x000008, "Member 'FRigVMFunction_KalmanFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanFloat, BufferSize) == 0x00000C, "Member 'FRigVMFunction_KalmanFloat::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanFloat, Result) == 0x000010, "Member 'FRigVMFunction_KalmanFloat::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanFloat, Buffer) == 0x000018, "Member 'FRigVMFunction_KalmanFloat::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanFloat, LastInsertIndex) == 0x000028, "Member 'FRigVMFunction_KalmanFloat::LastInsertIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugTransform \ +static_assert(alignof(FRigVMFunction_VisualDebugTransform) == 0x000010, "Wrong alignment on FRigVMFunction_VisualDebugTransform"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugTransform) == 0x000090, "Wrong size on FRigVMFunction_VisualDebugTransform"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransform, Value) == 0x000010, "Member 'FRigVMFunction_VisualDebugTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransform, bEnabled) == 0x000070, "Member 'FRigVMFunction_VisualDebugTransform::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransform, Thickness) == 0x000074, "Member 'FRigVMFunction_VisualDebugTransform::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransform, Scale) == 0x000078, "Member 'FRigVMFunction_VisualDebugTransform::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransform, BoneSpace) == 0x00007C, "Member 'FRigVMFunction_VisualDebugTransform::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VisualDebugTransformNoSpace \ +static_assert(alignof(FRigVMFunction_VisualDebugTransformNoSpace) == 0x000010, "Wrong alignment on FRigVMFunction_VisualDebugTransformNoSpace"); \ +static_assert(sizeof(FRigVMFunction_VisualDebugTransformNoSpace) == 0x000080, "Wrong size on FRigVMFunction_VisualDebugTransformNoSpace"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransformNoSpace, Value) == 0x000010, "Member 'FRigVMFunction_VisualDebugTransformNoSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransformNoSpace, bEnabled) == 0x000070, "Member 'FRigVMFunction_VisualDebugTransformNoSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransformNoSpace, Thickness) == 0x000074, "Member 'FRigVMFunction_VisualDebugTransformNoSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VisualDebugTransformNoSpace, Scale) == 0x000078, "Member 'FRigVMFunction_VisualDebugTransformNoSpace::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_ForLoopCount \ +static_assert(alignof(FRigVMFunction_ForLoopCount) == 0x000010, "Wrong alignment on FRigVMFunction_ForLoopCount"); \ +static_assert(sizeof(FRigVMFunction_ForLoopCount) == 0x000210, "Wrong size on FRigVMFunction_ForLoopCount"); \ +static_assert(offsetof(FRigVMFunction_ForLoopCount, BlockToRun) == 0x000100, "Member 'FRigVMFunction_ForLoopCount::BlockToRun' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ForLoopCount, Count) == 0x000108, "Member 'FRigVMFunction_ForLoopCount::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ForLoopCount, Index) == 0x00010C, "Member 'FRigVMFunction_ForLoopCount::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ForLoopCount, Ratio) == 0x000110, "Member 'FRigVMFunction_ForLoopCount::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ForLoopCount, Completed) == 0x000120, "Member 'FRigVMFunction_ForLoopCount::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_UserDefinedEvent \ +static_assert(alignof(FRigVMFunction_UserDefinedEvent) == 0x000010, "Wrong alignment on FRigVMFunction_UserDefinedEvent"); \ +static_assert(sizeof(FRigVMFunction_UserDefinedEvent) == 0x000110, "Wrong size on FRigVMFunction_UserDefinedEvent"); \ +static_assert(offsetof(FRigVMFunction_UserDefinedEvent, ExecuteContext) == 0x000010, "Member 'FRigVMFunction_UserDefinedEvent::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_UserDefinedEvent, EventName) == 0x000100, "Member 'FRigVMFunction_UserDefinedEvent::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_TimeLoop \ +static_assert(alignof(FRigVMFunction_TimeLoop) == 0x000008, "Wrong alignment on FRigVMFunction_TimeLoop"); \ +static_assert(sizeof(FRigVMFunction_TimeLoop) == 0x000038, "Wrong size on FRigVMFunction_TimeLoop"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Speed) == 0x000008, "Member 'FRigVMFunction_TimeLoop::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Duration) == 0x00000C, "Member 'FRigVMFunction_TimeLoop::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Normalize) == 0x000010, "Member 'FRigVMFunction_TimeLoop::Normalize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Absolute) == 0x000014, "Member 'FRigVMFunction_TimeLoop::Absolute' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Relative) == 0x000018, "Member 'FRigVMFunction_TimeLoop::Relative' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, FlipFlop) == 0x00001C, "Member 'FRigVMFunction_TimeLoop::FlipFlop' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, Even) == 0x000020, "Member 'FRigVMFunction_TimeLoop::Even' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, AccumulatedAbsolute) == 0x000024, "Member 'FRigVMFunction_TimeLoop::AccumulatedAbsolute' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, AccumulatedRelative) == 0x000028, "Member 'FRigVMFunction_TimeLoop::AccumulatedRelative' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, NumIterations) == 0x00002C, "Member 'FRigVMFunction_TimeLoop::NumIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeLoop, bIsInitialized) == 0x000030, "Member 'FRigVMFunction_TimeLoop::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolBase \ +static_assert(alignof(FRigVMFunction_MathBoolBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolBase"); \ +static_assert(sizeof(FRigVMFunction_MathBoolBase) == 0x000008, "Wrong size on FRigVMFunction_MathBoolBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolConstant \ +static_assert(alignof(FRigVMFunction_MathBoolConstant) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolConstant"); \ +static_assert(sizeof(FRigVMFunction_MathBoolConstant) == 0x000010, "Wrong size on FRigVMFunction_MathBoolConstant"); \ +static_assert(offsetof(FRigVMFunction_MathBoolConstant, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolConstant::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DeltaFromPreviousQuat \ +static_assert(alignof(FRigVMFunction_DeltaFromPreviousQuat) == 0x000010, "Wrong alignment on FRigVMFunction_DeltaFromPreviousQuat"); \ +static_assert(sizeof(FRigVMFunction_DeltaFromPreviousQuat) == 0x0000A0, "Wrong size on FRigVMFunction_DeltaFromPreviousQuat"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousQuat, Value) == 0x000010, "Member 'FRigVMFunction_DeltaFromPreviousQuat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousQuat, Delta) == 0x000030, "Member 'FRigVMFunction_DeltaFromPreviousQuat::Delta' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousQuat, PreviousValue) == 0x000050, "Member 'FRigVMFunction_DeltaFromPreviousQuat::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousQuat, Cache) == 0x000070, "Member 'FRigVMFunction_DeltaFromPreviousQuat::Cache' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousQuat, bIsInitialized) == 0x000090, "Member 'FRigVMFunction_DeltaFromPreviousQuat::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolUnaryOp \ +static_assert(alignof(FRigVMFunction_MathBoolUnaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathBoolUnaryOp) == 0x000010, "Wrong size on FRigVMFunction_MathBoolUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathBoolUnaryOp, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolUnaryOp, Result) == 0x000009, "Member 'FRigVMFunction_MathBoolUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolBinaryOp \ +static_assert(alignof(FRigVMFunction_MathBoolBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathBoolBinaryOp) == 0x000010, "Wrong size on FRigVMFunction_MathBoolBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathBoolBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryOp, B) == 0x000009, "Member 'FRigVMFunction_MathBoolBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryOp, Result) == 0x00000A, "Member 'FRigVMFunction_MathBoolBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_VerletIntegrateVector \ +static_assert(alignof(FRigVMFunction_VerletIntegrateVector) == 0x000008, "Wrong alignment on FRigVMFunction_VerletIntegrateVector"); \ +static_assert(sizeof(FRigVMFunction_VerletIntegrateVector) == 0x0000D8, "Wrong size on FRigVMFunction_VerletIntegrateVector"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Target) == 0x000008, "Member 'FRigVMFunction_VerletIntegrateVector::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Strength) == 0x000020, "Member 'FRigVMFunction_VerletIntegrateVector::Strength' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Damp) == 0x000024, "Member 'FRigVMFunction_VerletIntegrateVector::Damp' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Blend) == 0x000028, "Member 'FRigVMFunction_VerletIntegrateVector::Blend' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Force) == 0x000030, "Member 'FRigVMFunction_VerletIntegrateVector::Force' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Position) == 0x000048, "Member 'FRigVMFunction_VerletIntegrateVector::Position' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Velocity) == 0x000060, "Member 'FRigVMFunction_VerletIntegrateVector::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Acceleration) == 0x000078, "Member 'FRigVMFunction_VerletIntegrateVector::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, Point) == 0x000090, "Member 'FRigVMFunction_VerletIntegrateVector::Point' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_VerletIntegrateVector, bInitialized) == 0x0000D0, "Member 'FRigVMFunction_VerletIntegrateVector::bInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathBoolBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathBoolBinaryAggregateOp) == 0x000010, "Wrong size on FRigVMFunction_MathBoolBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathBoolBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryAggregateOp, B) == 0x000009, "Member 'FRigVMFunction_MathBoolBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolBinaryAggregateOp, Result) == 0x00000A, "Member 'FRigVMFunction_MathBoolBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolMake \ +static_assert(alignof(FRigVMFunction_MathBoolMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolMake"); \ +static_assert(sizeof(FRigVMFunction_MathBoolMake) == 0x000010, "Wrong size on FRigVMFunction_MathBoolMake"); \ +static_assert(offsetof(FRigVMFunction_MathBoolMake, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolMake::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolConstTrue \ +static_assert(alignof(FRigVMFunction_MathBoolConstTrue) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolConstTrue"); \ +static_assert(sizeof(FRigVMFunction_MathBoolConstTrue) == 0x000010, "Wrong size on FRigVMFunction_MathBoolConstTrue"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolConstFalse \ +static_assert(alignof(FRigVMFunction_MathBoolConstFalse) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolConstFalse"); \ +static_assert(sizeof(FRigVMFunction_MathBoolConstFalse) == 0x000010, "Wrong size on FRigVMFunction_MathBoolConstFalse"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolNot \ +static_assert(alignof(FRigVMFunction_MathBoolNot) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolNot"); \ +static_assert(sizeof(FRigVMFunction_MathBoolNot) == 0x000010, "Wrong size on FRigVMFunction_MathBoolNot"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolAnd \ +static_assert(alignof(FRigVMFunction_MathBoolAnd) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolAnd"); \ +static_assert(sizeof(FRigVMFunction_MathBoolAnd) == 0x000010, "Wrong size on FRigVMFunction_MathBoolAnd"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_TimeOffsetVector \ +static_assert(alignof(FRigVMFunction_TimeOffsetVector) == 0x000008, "Wrong alignment on FRigVMFunction_TimeOffsetVector"); \ +static_assert(sizeof(FRigVMFunction_TimeOffsetVector) == 0x000070, "Wrong size on FRigVMFunction_TimeOffsetVector"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, Value) == 0x000008, "Member 'FRigVMFunction_TimeOffsetVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, SecondsAgo) == 0x000020, "Member 'FRigVMFunction_TimeOffsetVector::SecondsAgo' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, BufferSize) == 0x000024, "Member 'FRigVMFunction_TimeOffsetVector::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, TimeRange) == 0x000028, "Member 'FRigVMFunction_TimeOffsetVector::TimeRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, Result) == 0x000030, "Member 'FRigVMFunction_TimeOffsetVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, Buffer) == 0x000048, "Member 'FRigVMFunction_TimeOffsetVector::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, DeltaTimes) == 0x000058, "Member 'FRigVMFunction_TimeOffsetVector::DeltaTimes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, LastInsertIndex) == 0x000068, "Member 'FRigVMFunction_TimeOffsetVector::LastInsertIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetVector, UpperBound) == 0x00006C, "Member 'FRigVMFunction_TimeOffsetVector::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolNand \ +static_assert(alignof(FRigVMFunction_MathBoolNand) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolNand"); \ +static_assert(sizeof(FRigVMFunction_MathBoolNand) == 0x000010, "Wrong size on FRigVMFunction_MathBoolNand"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolNand2 \ +static_assert(alignof(FRigVMFunction_MathBoolNand2) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolNand2"); \ +static_assert(sizeof(FRigVMFunction_MathBoolNand2) == 0x000010, "Wrong size on FRigVMFunction_MathBoolNand2"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolOr \ +static_assert(alignof(FRigVMFunction_MathBoolOr) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolOr"); \ +static_assert(sizeof(FRigVMFunction_MathBoolOr) == 0x000010, "Wrong size on FRigVMFunction_MathBoolOr"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolEquals \ +static_assert(alignof(FRigVMFunction_MathBoolEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolEquals"); \ +static_assert(sizeof(FRigVMFunction_MathBoolEquals) == 0x000010, "Wrong size on FRigVMFunction_MathBoolEquals"); \ +static_assert(offsetof(FRigVMFunction_MathBoolEquals, A) == 0x000008, "Member 'FRigVMFunction_MathBoolEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolEquals, B) == 0x000009, "Member 'FRigVMFunction_MathBoolEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolEquals, Result) == 0x00000A, "Member 'FRigVMFunction_MathBoolEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringReplace \ +static_assert(alignof(FRigVMFunction_StringReplace) == 0x000008, "Wrong alignment on FRigVMFunction_StringReplace"); \ +static_assert(sizeof(FRigVMFunction_StringReplace) == 0x000048, "Wrong size on FRigVMFunction_StringReplace"); \ +static_assert(offsetof(FRigVMFunction_StringReplace, Name) == 0x000008, "Member 'FRigVMFunction_StringReplace::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringReplace, Old) == 0x000018, "Member 'FRigVMFunction_StringReplace::Old' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringReplace, New) == 0x000028, "Member 'FRigVMFunction_StringReplace::New' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringReplace, Result) == 0x000038, "Member 'FRigVMFunction_StringReplace::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolNotEquals \ +static_assert(alignof(FRigVMFunction_MathBoolNotEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathBoolNotEquals) == 0x000010, "Wrong size on FRigVMFunction_MathBoolNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathBoolNotEquals, A) == 0x000008, "Member 'FRigVMFunction_MathBoolNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolNotEquals, B) == 0x000009, "Member 'FRigVMFunction_MathBoolNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolNotEquals, Result) == 0x00000A, "Member 'FRigVMFunction_MathBoolNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolToggled \ +static_assert(alignof(FRigVMFunction_MathBoolToggled) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolToggled"); \ +static_assert(sizeof(FRigVMFunction_MathBoolToggled) == 0x000010, "Wrong size on FRigVMFunction_MathBoolToggled"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToggled, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolToggled::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToggled, Toggled) == 0x000009, "Member 'FRigVMFunction_MathBoolToggled::Toggled' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToggled, Initialized) == 0x00000A, "Member 'FRigVMFunction_MathBoolToggled::Initialized' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToggled, LastValue) == 0x00000B, "Member 'FRigVMFunction_MathBoolToggled::LastValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_EndsWith \ +static_assert(alignof(FRigVMFunction_EndsWith) == 0x000008, "Wrong alignment on FRigVMFunction_EndsWith"); \ +static_assert(sizeof(FRigVMFunction_EndsWith) == 0x000020, "Wrong size on FRigVMFunction_EndsWith"); \ +static_assert(offsetof(FRigVMFunction_EndsWith, Name) == 0x000008, "Member 'FRigVMFunction_EndsWith::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_EndsWith, Ending) == 0x000010, "Member 'FRigVMFunction_EndsWith::Ending' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_EndsWith, Result) == 0x000018, "Member 'FRigVMFunction_EndsWith::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolFlipFlop \ +static_assert(alignof(FRigVMFunction_MathBoolFlipFlop) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolFlipFlop"); \ +static_assert(sizeof(FRigVMFunction_MathBoolFlipFlop) == 0x000018, "Wrong size on FRigVMFunction_MathBoolFlipFlop"); \ +static_assert(offsetof(FRigVMFunction_MathBoolFlipFlop, StartValue) == 0x000008, "Member 'FRigVMFunction_MathBoolFlipFlop::StartValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolFlipFlop, Duration) == 0x00000C, "Member 'FRigVMFunction_MathBoolFlipFlop::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolFlipFlop, Result) == 0x000010, "Member 'FRigVMFunction_MathBoolFlipFlop::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolFlipFlop, LastValue) == 0x000011, "Member 'FRigVMFunction_MathBoolFlipFlop::LastValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolFlipFlop, TimeLeft) == 0x000014, "Member 'FRigVMFunction_MathBoolFlipFlop::TimeLeft' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolOnce \ +static_assert(alignof(FRigVMFunction_MathBoolOnce) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolOnce"); \ +static_assert(sizeof(FRigVMFunction_MathBoolOnce) == 0x000018, "Wrong size on FRigVMFunction_MathBoolOnce"); \ +static_assert(offsetof(FRigVMFunction_MathBoolOnce, Duration) == 0x000008, "Member 'FRigVMFunction_MathBoolOnce::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolOnce, Result) == 0x00000C, "Member 'FRigVMFunction_MathBoolOnce::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolOnce, LastValue) == 0x00000D, "Member 'FRigVMFunction_MathBoolOnce::LastValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolOnce, TimeLeft) == 0x000010, "Member 'FRigVMFunction_MathBoolOnce::TimeLeft' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolToFloat \ +static_assert(alignof(FRigVMFunction_MathBoolToFloat) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolToFloat"); \ +static_assert(sizeof(FRigVMFunction_MathBoolToFloat) == 0x000010, "Wrong size on FRigVMFunction_MathBoolToFloat"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToFloat, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolToFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToFloat, Result) == 0x00000C, "Member 'FRigVMFunction_MathBoolToFloat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathBoolToInteger \ +static_assert(alignof(FRigVMFunction_MathBoolToInteger) == 0x000008, "Wrong alignment on FRigVMFunction_MathBoolToInteger"); \ +static_assert(sizeof(FRigVMFunction_MathBoolToInteger) == 0x000010, "Wrong size on FRigVMFunction_MathBoolToInteger"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToInteger, Value) == 0x000008, "Member 'FRigVMFunction_MathBoolToInteger::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathBoolToInteger, Result) == 0x00000C, "Member 'FRigVMFunction_MathBoolToInteger::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringConcat \ +static_assert(alignof(FRigVMFunction_StringConcat) == 0x000008, "Wrong alignment on FRigVMFunction_StringConcat"); \ +static_assert(sizeof(FRigVMFunction_StringConcat) == 0x000038, "Wrong size on FRigVMFunction_StringConcat"); \ +static_assert(offsetof(FRigVMFunction_StringConcat, A) == 0x000008, "Member 'FRigVMFunction_StringConcat::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringConcat, B) == 0x000018, "Member 'FRigVMFunction_StringConcat::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringConcat, Result) == 0x000028, "Member 'FRigVMFunction_StringConcat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorBase \ +static_assert(alignof(FRigVMFunction_MathColorBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorBase"); \ +static_assert(sizeof(FRigVMFunction_MathColorBase) == 0x000008, "Wrong size on FRigVMFunction_MathColorBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorBinaryOp \ +static_assert(alignof(FRigVMFunction_MathColorBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathColorBinaryOp) == 0x000038, "Wrong size on FRigVMFunction_MathColorBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathColorBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryOp, B) == 0x000018, "Member 'FRigVMFunction_MathColorBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryOp, Result) == 0x000028, "Member 'FRigVMFunction_MathColorBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathColorBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathColorBinaryAggregateOp) == 0x000038, "Wrong size on FRigVMFunction_MathColorBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathColorBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryAggregateOp, B) == 0x000018, "Member 'FRigVMFunction_MathColorBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorBinaryAggregateOp, Result) == 0x000028, "Member 'FRigVMFunction_MathColorBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateQuatColor_Target \ +static_assert(alignof(FMathRBFInterpolateQuatColor_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateQuatColor_Target"); \ +static_assert(sizeof(FMathRBFInterpolateQuatColor_Target) == 0x000030, "Wrong size on FMathRBFInterpolateQuatColor_Target"); \ +static_assert(offsetof(FMathRBFInterpolateQuatColor_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateQuatColor_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateQuatColor_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateQuatColor_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorMake \ +static_assert(alignof(FRigVMFunction_MathColorMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorMake"); \ +static_assert(sizeof(FRigVMFunction_MathColorMake) == 0x000028, "Wrong size on FRigVMFunction_MathColorMake"); \ +static_assert(offsetof(FRigVMFunction_MathColorMake, R) == 0x000008, "Member 'FRigVMFunction_MathColorMake::R' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorMake, G) == 0x00000C, "Member 'FRigVMFunction_MathColorMake::G' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorMake, B) == 0x000010, "Member 'FRigVMFunction_MathColorMake::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorMake, A) == 0x000014, "Member 'FRigVMFunction_MathColorMake::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorMake, Result) == 0x000018, "Member 'FRigVMFunction_MathColorMake::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorFromFloat \ +static_assert(alignof(FRigVMFunction_MathColorFromFloat) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorFromFloat"); \ +static_assert(sizeof(FRigVMFunction_MathColorFromFloat) == 0x000020, "Wrong size on FRigVMFunction_MathColorFromFloat"); \ +static_assert(offsetof(FRigVMFunction_MathColorFromFloat, Value) == 0x000008, "Member 'FRigVMFunction_MathColorFromFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorFromFloat, Result) == 0x00000C, "Member 'FRigVMFunction_MathColorFromFloat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntBase \ +static_assert(alignof(FRigVMFunction_MathIntBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntBase"); \ +static_assert(sizeof(FRigVMFunction_MathIntBase) == 0x000008, "Wrong size on FRigVMFunction_MathIntBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntArraySum \ +static_assert(alignof(FRigVMFunction_MathIntArraySum) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntArraySum"); \ +static_assert(sizeof(FRigVMFunction_MathIntArraySum) == 0x000020, "Wrong size on FRigVMFunction_MathIntArraySum"); \ +static_assert(offsetof(FRigVMFunction_MathIntArraySum, Array) == 0x000008, "Member 'FRigVMFunction_MathIntArraySum::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntArraySum, Sum) == 0x000018, "Member 'FRigVMFunction_MathIntArraySum::Sum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorFromDouble \ +static_assert(alignof(FRigVMFunction_MathColorFromDouble) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorFromDouble"); \ +static_assert(sizeof(FRigVMFunction_MathColorFromDouble) == 0x000020, "Wrong size on FRigVMFunction_MathColorFromDouble"); \ +static_assert(offsetof(FRigVMFunction_MathColorFromDouble, Value) == 0x000008, "Member 'FRigVMFunction_MathColorFromDouble::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorFromDouble, Result) == 0x000010, "Member 'FRigVMFunction_MathColorFromDouble::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorAdd \ +static_assert(alignof(FRigVMFunction_MathColorAdd) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorAdd"); \ +static_assert(sizeof(FRigVMFunction_MathColorAdd) == 0x000038, "Wrong size on FRigVMFunction_MathColorAdd"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateQuatXform_Target \ +static_assert(alignof(FMathRBFInterpolateQuatXform_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateQuatXform_Target"); \ +static_assert(sizeof(FMathRBFInterpolateQuatXform_Target) == 0x000080, "Wrong size on FMathRBFInterpolateQuatXform_Target"); \ +static_assert(offsetof(FMathRBFInterpolateQuatXform_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateQuatXform_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateQuatXform_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateQuatXform_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorSub \ +static_assert(alignof(FRigVMFunction_MathColorSub) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorSub"); \ +static_assert(sizeof(FRigVMFunction_MathColorSub) == 0x000038, "Wrong size on FRigVMFunction_MathColorSub"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorMul \ +static_assert(alignof(FRigVMFunction_MathColorMul) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorMul"); \ +static_assert(sizeof(FRigVMFunction_MathColorMul) == 0x000038, "Wrong size on FRigVMFunction_MathColorMul"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateQuatVector_Target \ +static_assert(alignof(FMathRBFInterpolateQuatVector_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateQuatVector_Target"); \ +static_assert(sizeof(FMathRBFInterpolateQuatVector_Target) == 0x000040, "Wrong size on FMathRBFInterpolateQuatVector_Target"); \ +static_assert(offsetof(FMathRBFInterpolateQuatVector_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateQuatVector_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateQuatVector_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateQuatVector_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathColorLerp \ +static_assert(alignof(FRigVMFunction_MathColorLerp) == 0x000008, "Wrong alignment on FRigVMFunction_MathColorLerp"); \ +static_assert(sizeof(FRigVMFunction_MathColorLerp) == 0x000040, "Wrong size on FRigVMFunction_MathColorLerp"); \ +static_assert(offsetof(FRigVMFunction_MathColorLerp, A) == 0x000008, "Member 'FRigVMFunction_MathColorLerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorLerp, B) == 0x000018, "Member 'FRigVMFunction_MathColorLerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorLerp, T) == 0x000028, "Member 'FRigVMFunction_MathColorLerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathColorLerp, Result) == 0x00002C, "Member 'FRigVMFunction_MathColorLerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleBase \ +static_assert(alignof(FRigVMFunction_MathDoubleBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleBase"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleBase) == 0x000008, "Wrong size on FRigVMFunction_MathDoubleBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntGreaterEqual \ +static_assert(alignof(FRigVMFunction_MathIntGreaterEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntGreaterEqual"); \ +static_assert(sizeof(FRigVMFunction_MathIntGreaterEqual) == 0x000018, "Wrong size on FRigVMFunction_MathIntGreaterEqual"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreaterEqual, A) == 0x000008, "Member 'FRigVMFunction_MathIntGreaterEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreaterEqual, B) == 0x00000C, "Member 'FRigVMFunction_MathIntGreaterEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreaterEqual, Result) == 0x000010, "Member 'FRigVMFunction_MathIntGreaterEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleConstant \ +static_assert(alignof(FRigVMFunction_MathDoubleConstant) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleConstant"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleConstant) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleConstant"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleConstant, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleConstant::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleUnaryOp \ +static_assert(alignof(FRigVMFunction_MathDoubleUnaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleUnaryOp) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleUnaryOp, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleUnaryOp, Result) == 0x000010, "Member 'FRigVMFunction_MathDoubleUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixBase \ +static_assert(alignof(FRigVMFunction_MathMatrixBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathMatrixBase"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixBase) == 0x000008, "Wrong size on FRigVMFunction_MathMatrixBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixToTransform \ +static_assert(alignof(FRigVMFunction_MathMatrixToTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixToTransform"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixToTransform) == 0x0000F0, "Wrong size on FRigVMFunction_MathMatrixToTransform"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToTransform, Value) == 0x000010, "Member 'FRigVMFunction_MathMatrixToTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToTransform, Result) == 0x000090, "Member 'FRigVMFunction_MathMatrixToTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleBinaryOp \ +static_assert(alignof(FRigVMFunction_MathDoubleBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleBinaryOp) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryOp, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryOp, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathDoubleBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleBinaryAggregateOp) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryAggregateOp, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleBinaryAggregateOp, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntToString \ +static_assert(alignof(FRigVMFunction_MathIntToString) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntToString"); \ +static_assert(sizeof(FRigVMFunction_MathIntToString) == 0x000020, "Wrong size on FRigVMFunction_MathIntToString"); \ +static_assert(offsetof(FRigVMFunction_MathIntToString, Number) == 0x000008, "Member 'FRigVMFunction_MathIntToString::Number' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToString, PaddedSize) == 0x00000C, "Member 'FRigVMFunction_MathIntToString::PaddedSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToString, Result) == 0x000010, "Member 'FRigVMFunction_MathIntToString::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleMake \ +static_assert(alignof(FRigVMFunction_MathDoubleMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleMake"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleMake) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleMake"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleMake, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleMake::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleConstPi \ +static_assert(alignof(FRigVMFunction_MathDoubleConstPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleConstPi"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleConstPi) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleConstPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntGreater \ +static_assert(alignof(FRigVMFunction_MathIntGreater) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntGreater"); \ +static_assert(sizeof(FRigVMFunction_MathIntGreater) == 0x000018, "Wrong size on FRigVMFunction_MathIntGreater"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreater, A) == 0x000008, "Member 'FRigVMFunction_MathIntGreater::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreater, B) == 0x00000C, "Member 'FRigVMFunction_MathIntGreater::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntGreater, Result) == 0x000010, "Member 'FRigVMFunction_MathIntGreater::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleConstHalfPi \ +static_assert(alignof(FRigVMFunction_MathDoubleConstHalfPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleConstHalfPi"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleConstHalfPi) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleConstHalfPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleConstTwoPi \ +static_assert(alignof(FRigVMFunction_MathDoubleConstTwoPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleConstTwoPi"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleConstTwoPi) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleConstTwoPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixBinaryOp \ +static_assert(alignof(FRigVMFunction_MathMatrixBinaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixBinaryOp) == 0x000190, "Wrong size on FRigVMFunction_MathMatrixBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryOp, A) == 0x000010, "Member 'FRigVMFunction_MathMatrixBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryOp, B) == 0x000090, "Member 'FRigVMFunction_MathMatrixBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryOp, Result) == 0x000110, "Member 'FRigVMFunction_MathMatrixBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleConstE \ +static_assert(alignof(FRigVMFunction_MathDoubleConstE) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleConstE"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleConstE) == 0x000010, "Wrong size on FRigVMFunction_MathDoubleConstE"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleAdd \ +static_assert(alignof(FRigVMFunction_MathDoubleAdd) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleAdd"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleAdd) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleAdd"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionUnaryOp \ +static_assert(alignof(FRigVMFunction_MathQuaternionUnaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionUnaryOp) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionUnaryOp, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionUnaryOp, Result) == 0x000030, "Member 'FRigVMFunction_MathQuaternionUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleSub \ +static_assert(alignof(FRigVMFunction_MathDoubleSub) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleSub"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleSub) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleSub"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleMul \ +static_assert(alignof(FRigVMFunction_MathDoubleMul) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleMul"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleMul) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixFromTransformV2 \ +static_assert(alignof(FRigVMFunction_MathMatrixFromTransformV2) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixFromTransformV2"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixFromTransformV2) == 0x0000F0, "Wrong size on FRigVMFunction_MathMatrixFromTransformV2"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromTransformV2, Value) == 0x000010, "Member 'FRigVMFunction_MathMatrixFromTransformV2::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromTransformV2, Result) == 0x000070, "Member 'FRigVMFunction_MathMatrixFromTransformV2::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleDiv \ +static_assert(alignof(FRigVMFunction_MathDoubleDiv) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleDiv"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleDiv) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleDiv"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleMod \ +static_assert(alignof(FRigVMFunction_MathDoubleMod) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleMod"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleMod) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleMod"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleMin \ +static_assert(alignof(FRigVMFunction_MathDoubleMin) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleMin"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleMin) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleMin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleMax \ +static_assert(alignof(FRigVMFunction_MathDoubleMax) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleMax"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleMax) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleMax"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixUnaryOp \ +static_assert(alignof(FRigVMFunction_MathMatrixUnaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixUnaryOp) == 0x000110, "Wrong size on FRigVMFunction_MathMatrixUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixUnaryOp, Value) == 0x000010, "Member 'FRigVMFunction_MathMatrixUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixUnaryOp, Result) == 0x000090, "Member 'FRigVMFunction_MathMatrixUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixInverse \ +static_assert(alignof(FRigVMFunction_MathMatrixInverse) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixInverse"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixInverse) == 0x000110, "Wrong size on FRigVMFunction_MathMatrixInverse"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoublePow \ +static_assert(alignof(FRigVMFunction_MathDoublePow) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoublePow"); \ +static_assert(sizeof(FRigVMFunction_MathDoublePow) == 0x000020, "Wrong size on FRigVMFunction_MathDoublePow"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleSqrt \ +static_assert(alignof(FRigVMFunction_MathDoubleSqrt) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleSqrt"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleSqrt) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleSqrt"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionFromTwoVectors \ +static_assert(alignof(FRigVMFunction_MathQuaternionFromTwoVectors) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionFromTwoVectors"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionFromTwoVectors) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionFromTwoVectors"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromTwoVectors, A) == 0x000008, "Member 'FRigVMFunction_MathQuaternionFromTwoVectors::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromTwoVectors, B) == 0x000020, "Member 'FRigVMFunction_MathQuaternionFromTwoVectors::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromTwoVectors, Result) == 0x000040, "Member 'FRigVMFunction_MathQuaternionFromTwoVectors::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleNegate \ +static_assert(alignof(FRigVMFunction_MathDoubleNegate) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleNegate"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleNegate) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleNegate"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleAbs \ +static_assert(alignof(FRigVMFunction_MathDoubleAbs) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleAbs"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleAbs) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleAbs"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathQuaternionBinaryAggregateOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionBinaryAggregateOp) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryAggregateOp, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryAggregateOp, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryAggregateOp, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleFloor \ +static_assert(alignof(FRigVMFunction_MathDoubleFloor) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleFloor"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleFloor) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleFloor"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleFloor, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleFloor::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleFloor, Result) == 0x000010, "Member 'FRigVMFunction_MathDoubleFloor::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleFloor, Int) == 0x000018, "Member 'FRigVMFunction_MathDoubleFloor::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleCeil \ +static_assert(alignof(FRigVMFunction_MathDoubleCeil) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleCeil"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleCeil) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleCeil"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleCeil, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleCeil::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleCeil, Result) == 0x000010, "Member 'FRigVMFunction_MathDoubleCeil::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleCeil, Int) == 0x000018, "Member 'FRigVMFunction_MathDoubleCeil::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixFromVectors \ +static_assert(alignof(FRigVMFunction_MathMatrixFromVectors) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixFromVectors"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixFromVectors) == 0x0000F0, "Wrong size on FRigVMFunction_MathMatrixFromVectors"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromVectors, Origin) == 0x000008, "Member 'FRigVMFunction_MathMatrixFromVectors::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromVectors, X) == 0x000020, "Member 'FRigVMFunction_MathMatrixFromVectors::X' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromVectors, Y) == 0x000038, "Member 'FRigVMFunction_MathMatrixFromVectors::Y' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromVectors, Z) == 0x000050, "Member 'FRigVMFunction_MathMatrixFromVectors::Z' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromVectors, Result) == 0x000070, "Member 'FRigVMFunction_MathMatrixFromVectors::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleRound \ +static_assert(alignof(FRigVMFunction_MathDoubleRound) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleRound"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleRound) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleRound"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRound, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleRound::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRound, Result) == 0x000010, "Member 'FRigVMFunction_MathDoubleRound::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRound, Int) == 0x000018, "Member 'FRigVMFunction_MathDoubleRound::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleToInt \ +static_assert(alignof(FRigVMFunction_MathDoubleToInt) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleToInt"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleToInt) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleToInt"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleToInt, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleToInt::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleToInt, Result) == 0x000010, "Member 'FRigVMFunction_MathDoubleToInt::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleSign \ +static_assert(alignof(FRigVMFunction_MathDoubleSign) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleSign"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleSign) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleSign"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleClamp \ +static_assert(alignof(FRigVMFunction_MathDoubleClamp) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleClamp"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleClamp) == 0x000028, "Wrong size on FRigVMFunction_MathDoubleClamp"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleClamp, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleClamp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleClamp, Minimum) == 0x000010, "Member 'FRigVMFunction_MathDoubleClamp::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleClamp, Maximum) == 0x000018, "Member 'FRigVMFunction_MathDoubleClamp::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleClamp, Result) == 0x000020, "Member 'FRigVMFunction_MathDoubleClamp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionSlerp \ +static_assert(alignof(FRigVMFunction_MathQuaternionSlerp) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionSlerp"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionSlerp) == 0x000080, "Wrong size on FRigVMFunction_MathQuaternionSlerp"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSlerp, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionSlerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSlerp, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionSlerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSlerp, T) == 0x000050, "Member 'FRigVMFunction_MathQuaternionSlerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSlerp, Result) == 0x000060, "Member 'FRigVMFunction_MathQuaternionSlerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleLerp \ +static_assert(alignof(FRigVMFunction_MathDoubleLerp) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleLerp"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleLerp) == 0x000028, "Wrong size on FRigVMFunction_MathDoubleLerp"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLerp, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleLerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLerp, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleLerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLerp, T) == 0x000018, "Member 'FRigVMFunction_MathDoubleLerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLerp, Result) == 0x000020, "Member 'FRigVMFunction_MathDoubleLerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleRemap \ +static_assert(alignof(FRigVMFunction_MathDoubleRemap) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleRemap"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleRemap) == 0x000040, "Wrong size on FRigVMFunction_MathDoubleRemap"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleRemap::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, SourceMinimum) == 0x000010, "Member 'FRigVMFunction_MathDoubleRemap::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, SourceMaximum) == 0x000018, "Member 'FRigVMFunction_MathDoubleRemap::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, TargetMinimum) == 0x000020, "Member 'FRigVMFunction_MathDoubleRemap::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, TargetMaximum) == 0x000028, "Member 'FRigVMFunction_MathDoubleRemap::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, bClamp) == 0x000030, "Member 'FRigVMFunction_MathDoubleRemap::bClamp' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleRemap, Result) == 0x000038, "Member 'FRigVMFunction_MathDoubleRemap::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleEquals \ +static_assert(alignof(FRigVMFunction_MathDoubleEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleEquals"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleEquals) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleEquals"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleEquals, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleEquals, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleEquals, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleNotEquals \ +static_assert(alignof(FRigVMFunction_MathDoubleNotEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleNotEquals) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleNotEquals, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleNotEquals, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleNotEquals, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleGreater \ +static_assert(alignof(FRigVMFunction_MathDoubleGreater) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleGreater"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleGreater) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleGreater"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreater, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleGreater::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreater, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleGreater::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreater, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleGreater::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleLess \ +static_assert(alignof(FRigVMFunction_MathDoubleLess) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleLess"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleLess) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleLess"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLess, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleLess::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLess, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleLess::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLess, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleLess::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionMul \ +static_assert(alignof(FRigVMFunction_MathQuaternionMul) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionMul"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionMul) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleGreaterEqual \ +static_assert(alignof(FRigVMFunction_MathDoubleGreaterEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleGreaterEqual"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleGreaterEqual) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleGreaterEqual"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreaterEqual, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleGreaterEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreaterEqual, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleGreaterEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleGreaterEqual, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleGreaterEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleLessEqual \ +static_assert(alignof(FRigVMFunction_MathDoubleLessEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleLessEqual"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleLessEqual) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleLessEqual"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLessEqual, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleLessEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLessEqual, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleLessEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLessEqual, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleLessEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionSwingTwist \ +static_assert(alignof(FRigVMFunction_MathQuaternionSwingTwist) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionSwingTwist"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionSwingTwist) == 0x000090, "Wrong size on FRigVMFunction_MathQuaternionSwingTwist"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSwingTwist, Input) == 0x000010, "Member 'FRigVMFunction_MathQuaternionSwingTwist::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSwingTwist, TwistAxis) == 0x000030, "Member 'FRigVMFunction_MathQuaternionSwingTwist::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSwingTwist, Swing) == 0x000050, "Member 'FRigVMFunction_MathQuaternionSwingTwist::Swing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSwingTwist, Twist) == 0x000070, "Member 'FRigVMFunction_MathQuaternionSwingTwist::Twist' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleIsNearlyZero \ +static_assert(alignof(FRigVMFunction_MathDoubleIsNearlyZero) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleIsNearlyZero"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleIsNearlyZero) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleIsNearlyZero"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyZero, Value) == 0x000008, "Member 'FRigVMFunction_MathDoubleIsNearlyZero::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyZero, Tolerance) == 0x000010, "Member 'FRigVMFunction_MathDoubleIsNearlyZero::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyZero, Result) == 0x000018, "Member 'FRigVMFunction_MathDoubleIsNearlyZero::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleIsNearlyEqual \ +static_assert(alignof(FRigVMFunction_MathDoubleIsNearlyEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleIsNearlyEqual"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleIsNearlyEqual) == 0x000028, "Wrong size on FRigVMFunction_MathDoubleIsNearlyEqual"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyEqual, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleIsNearlyEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyEqual, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleIsNearlyEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyEqual, Tolerance) == 0x000018, "Member 'FRigVMFunction_MathDoubleIsNearlyEqual::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleIsNearlyEqual, Result) == 0x000020, "Member 'FRigVMFunction_MathDoubleIsNearlyEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionNotEquals \ +static_assert(alignof(FRigVMFunction_MathQuaternionNotEquals) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionNotEquals) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionNotEquals, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionNotEquals, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionNotEquals, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleDeg \ +static_assert(alignof(FRigVMFunction_MathDoubleDeg) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleDeg"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleDeg) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleDeg"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleRad \ +static_assert(alignof(FRigVMFunction_MathDoubleRad) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleRad"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleRad) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleRad"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionToEuler \ +static_assert(alignof(FRigVMFunction_MathQuaternionToEuler) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionToEuler"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionToEuler) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionToEuler"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToEuler, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionToEuler::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToEuler, RotationOrder) == 0x000030, "Member 'FRigVMFunction_MathQuaternionToEuler::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToEuler, Result) == 0x000038, "Member 'FRigVMFunction_MathQuaternionToEuler::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleSin \ +static_assert(alignof(FRigVMFunction_MathDoubleSin) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleSin"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleSin) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleSin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleCos \ +static_assert(alignof(FRigVMFunction_MathDoubleCos) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleCos"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleCos) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleCos"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionRotateVector \ +static_assert(alignof(FRigVMFunction_MathQuaternionRotateVector) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionRotateVector"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionRotateVector) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionRotateVector"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionRotateVector, Transform) == 0x000010, "Member 'FRigVMFunction_MathQuaternionRotateVector::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionRotateVector, Vector) == 0x000030, "Member 'FRigVMFunction_MathQuaternionRotateVector::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionRotateVector, Result) == 0x000048, "Member 'FRigVMFunction_MathQuaternionRotateVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleTan \ +static_assert(alignof(FRigVMFunction_MathDoubleTan) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleTan"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleTan) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleTan"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleAsin \ +static_assert(alignof(FRigVMFunction_MathDoubleAsin) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleAsin"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleAsin) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleAsin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatWorkData \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatWorkData) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatWorkData"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatWorkData) == 0x000090, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatWorkData"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateBase \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateBase) == 0x000008, "Wrong alignment on FRigVMFunction_MathRBFInterpolateBase"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateBase) == 0x000008, "Wrong size on FRigVMFunction_MathRBFInterpolateBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatBase \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatBase) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatBase"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatBase) == 0x0000F0, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatBase"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, Input) == 0x000010, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, DistanceFunction) == 0x000030, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::DistanceFunction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, SmoothingFunction) == 0x000031, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::SmoothingFunction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, SmoothingAngle) == 0x000034, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::SmoothingAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, bNormalizeOutput) == 0x000038, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::bNormalizeOutput' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, TwistAxis) == 0x000040, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatBase, WorkData) == 0x000060, "Member 'FRigVMFunction_MathRBFInterpolateQuatBase::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleAcos \ +static_assert(alignof(FRigVMFunction_MathDoubleAcos) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleAcos"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleAcos) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleAcos"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleAtan \ +static_assert(alignof(FRigVMFunction_MathDoubleAtan) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleAtan"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleAtan) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleAtan"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionMakeRelative \ +static_assert(alignof(FRigVMFunction_MathQuaternionMakeRelative) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionMakeRelative"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionMakeRelative) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionMakeRelative"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeRelative, Global) == 0x000010, "Member 'FRigVMFunction_MathQuaternionMakeRelative::Global' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeRelative, Parent) == 0x000030, "Member 'FRigVMFunction_MathQuaternionMakeRelative::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeRelative, Local) == 0x000050, "Member 'FRigVMFunction_MathQuaternionMakeRelative::Local' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleLawOfCosine \ +static_assert(alignof(FRigVMFunction_MathDoubleLawOfCosine) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleLawOfCosine"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleLawOfCosine) == 0x000040, "Wrong size on FRigVMFunction_MathDoubleLawOfCosine"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, A) == 0x000008, "Member 'FRigVMFunction_MathDoubleLawOfCosine::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, B) == 0x000010, "Member 'FRigVMFunction_MathDoubleLawOfCosine::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, C) == 0x000018, "Member 'FRigVMFunction_MathDoubleLawOfCosine::C' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, AlphaAngle) == 0x000020, "Member 'FRigVMFunction_MathDoubleLawOfCosine::AlphaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, BetaAngle) == 0x000028, "Member 'FRigVMFunction_MathDoubleLawOfCosine::BetaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, GammaAngle) == 0x000030, "Member 'FRigVMFunction_MathDoubleLawOfCosine::GammaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleLawOfCosine, bValid) == 0x000038, "Member 'FRigVMFunction_MathDoubleLawOfCosine::bValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleExponential \ +static_assert(alignof(FRigVMFunction_MathDoubleExponential) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleExponential"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleExponential) == 0x000018, "Wrong size on FRigVMFunction_MathDoubleExponential"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionDot \ +static_assert(alignof(FRigVMFunction_MathQuaternionDot) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionDot"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionDot) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionDot"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionDot, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionDot::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionDot, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionDot::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionDot, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionDot::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleArraySum \ +static_assert(alignof(FRigVMFunction_MathDoubleArraySum) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleArraySum"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleArraySum) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleArraySum"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleArraySum, Array) == 0x000008, "Member 'FRigVMFunction_MathDoubleArraySum::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleArraySum, Sum) == 0x000018, "Member 'FRigVMFunction_MathDoubleArraySum::Sum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDoubleArrayAverage \ +static_assert(alignof(FRigVMFunction_MathDoubleArrayAverage) == 0x000008, "Wrong alignment on FRigVMFunction_MathDoubleArrayAverage"); \ +static_assert(sizeof(FRigVMFunction_MathDoubleArrayAverage) == 0x000020, "Wrong size on FRigVMFunction_MathDoubleArrayAverage"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleArrayAverage, Array) == 0x000008, "Member 'FRigVMFunction_MathDoubleArrayAverage::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDoubleArrayAverage, Average) == 0x000018, "Member 'FRigVMFunction_MathDoubleArrayAverage::Average' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorWorkData \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorWorkData) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorWorkData"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorWorkData) == 0x000090, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorWorkData"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatConstant \ +static_assert(alignof(FRigVMFunction_MathFloatConstant) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatConstant"); \ +static_assert(sizeof(FRigVMFunction_MathFloatConstant) == 0x000010, "Wrong size on FRigVMFunction_MathFloatConstant"); \ +static_assert(offsetof(FRigVMFunction_MathFloatConstant, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatConstant::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateQuatQuat_Target \ +static_assert(alignof(FMathRBFInterpolateQuatQuat_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateQuatQuat_Target"); \ +static_assert(sizeof(FMathRBFInterpolateQuatQuat_Target) == 0x000040, "Wrong size on FMathRBFInterpolateQuatQuat_Target"); \ +static_assert(offsetof(FMathRBFInterpolateQuatQuat_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateQuatQuat_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateQuatQuat_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateQuatQuat_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatUnaryOp \ +static_assert(alignof(FRigVMFunction_MathFloatUnaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathFloatUnaryOp) == 0x000010, "Wrong size on FRigVMFunction_MathFloatUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathFloatUnaryOp, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatUnaryOp, Result) == 0x00000C, "Member 'FRigVMFunction_MathFloatUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatBinaryOp \ +static_assert(alignof(FRigVMFunction_MathFloatBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathFloatBinaryOp) == 0x000018, "Wrong size on FRigVMFunction_MathFloatBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathFloatBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryOp, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatBinaryOp, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateQuatFloat_Target \ +static_assert(alignof(FMathRBFInterpolateQuatFloat_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateQuatFloat_Target"); \ +static_assert(sizeof(FMathRBFInterpolateQuatFloat_Target) == 0x000030, "Wrong size on FMathRBFInterpolateQuatFloat_Target"); \ +static_assert(offsetof(FMathRBFInterpolateQuatFloat_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateQuatFloat_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateQuatFloat_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateQuatFloat_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatMake \ +static_assert(alignof(FRigVMFunction_MathFloatMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatMake"); \ +static_assert(sizeof(FRigVMFunction_MathFloatMake) == 0x000010, "Wrong size on FRigVMFunction_MathFloatMake"); \ +static_assert(offsetof(FRigVMFunction_MathFloatMake, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatMake::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionMirrorTransform \ +static_assert(alignof(FRigVMFunction_MathQuaternionMirrorTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionMirrorTransform"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionMirrorTransform) == 0x0000C0, "Wrong size on FRigVMFunction_MathQuaternionMirrorTransform"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMirrorTransform, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionMirrorTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMirrorTransform, MirrorAxis) == 0x000030, "Member 'FRigVMFunction_MathQuaternionMirrorTransform::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMirrorTransform, AxisToFlip) == 0x000031, "Member 'FRigVMFunction_MathQuaternionMirrorTransform::AxisToFlip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMirrorTransform, CentralTransform) == 0x000040, "Member 'FRigVMFunction_MathQuaternionMirrorTransform::CentralTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMirrorTransform, Result) == 0x0000A0, "Member 'FRigVMFunction_MathQuaternionMirrorTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatConstPi \ +static_assert(alignof(FRigVMFunction_MathFloatConstPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatConstPi"); \ +static_assert(sizeof(FRigVMFunction_MathFloatConstPi) == 0x000010, "Wrong size on FRigVMFunction_MathFloatConstPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatConstHalfPi \ +static_assert(alignof(FRigVMFunction_MathFloatConstHalfPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatConstHalfPi"); \ +static_assert(sizeof(FRigVMFunction_MathFloatConstHalfPi) == 0x000010, "Wrong size on FRigVMFunction_MathFloatConstHalfPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorIsNearlyZero \ +static_assert(alignof(FRigVMFunction_MathVectorIsNearlyZero) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorIsNearlyZero"); \ +static_assert(sizeof(FRigVMFunction_MathVectorIsNearlyZero) == 0x000028, "Wrong size on FRigVMFunction_MathVectorIsNearlyZero"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyZero, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorIsNearlyZero::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyZero, Tolerance) == 0x000020, "Member 'FRigVMFunction_MathVectorIsNearlyZero::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyZero, Result) == 0x000024, "Member 'FRigVMFunction_MathVectorIsNearlyZero::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatConstTwoPi \ +static_assert(alignof(FRigVMFunction_MathFloatConstTwoPi) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatConstTwoPi"); \ +static_assert(sizeof(FRigVMFunction_MathFloatConstTwoPi) == 0x000010, "Wrong size on FRigVMFunction_MathFloatConstTwoPi"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatConstE \ +static_assert(alignof(FRigVMFunction_MathFloatConstE) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatConstE"); \ +static_assert(sizeof(FRigVMFunction_MathFloatConstE) == 0x000010, "Wrong size on FRigVMFunction_MathFloatConstE"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatSub \ +static_assert(alignof(FRigVMFunction_MathFloatSub) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatSub"); \ +static_assert(sizeof(FRigVMFunction_MathFloatSub) == 0x000018, "Wrong size on FRigVMFunction_MathFloatSub"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorUnaryOp \ +static_assert(alignof(FRigVMFunction_MathVectorUnaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathVectorUnaryOp) == 0x000038, "Wrong size on FRigVMFunction_MathVectorUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathVectorUnaryOp, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorUnaryOp, Result) == 0x000020, "Member 'FRigVMFunction_MathVectorUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorRad \ +static_assert(alignof(FRigVMFunction_MathVectorRad) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorRad"); \ +static_assert(sizeof(FRigVMFunction_MathVectorRad) == 0x000038, "Wrong size on FRigVMFunction_MathVectorRad"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatMul \ +static_assert(alignof(FRigVMFunction_MathFloatMul) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatMul"); \ +static_assert(sizeof(FRigVMFunction_MathFloatMul) == 0x000018, "Wrong size on FRigVMFunction_MathFloatMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatDiv \ +static_assert(alignof(FRigVMFunction_MathFloatDiv) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatDiv"); \ +static_assert(sizeof(FRigVMFunction_MathFloatDiv) == 0x000018, "Wrong size on FRigVMFunction_MathFloatDiv"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorEquals \ +static_assert(alignof(FRigVMFunction_MathVectorEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorEquals"); \ +static_assert(sizeof(FRigVMFunction_MathVectorEquals) == 0x000040, "Wrong size on FRigVMFunction_MathVectorEquals"); \ +static_assert(offsetof(FRigVMFunction_MathVectorEquals, A) == 0x000008, "Member 'FRigVMFunction_MathVectorEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorEquals, B) == 0x000020, "Member 'FRigVMFunction_MathVectorEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorEquals, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatMod \ +static_assert(alignof(FRigVMFunction_MathFloatMod) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatMod"); \ +static_assert(sizeof(FRigVMFunction_MathFloatMod) == 0x000018, "Wrong size on FRigVMFunction_MathFloatMod"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatMin \ +static_assert(alignof(FRigVMFunction_MathFloatMin) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatMin"); \ +static_assert(sizeof(FRigVMFunction_MathFloatMin) == 0x000018, "Wrong size on FRigVMFunction_MathFloatMin"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateVectorVector_Target \ +static_assert(alignof(FMathRBFInterpolateVectorVector_Target) == 0x000008, "Wrong alignment on FMathRBFInterpolateVectorVector_Target"); \ +static_assert(sizeof(FMathRBFInterpolateVectorVector_Target) == 0x000030, "Wrong size on FMathRBFInterpolateVectorVector_Target"); \ +static_assert(offsetof(FMathRBFInterpolateVectorVector_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateVectorVector_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateVectorVector_Target, Value) == 0x000018, "Member 'FMathRBFInterpolateVectorVector_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatMax \ +static_assert(alignof(FRigVMFunction_MathFloatMax) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatMax"); \ +static_assert(sizeof(FRigVMFunction_MathFloatMax) == 0x000018, "Wrong size on FRigVMFunction_MathFloatMax"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatPow \ +static_assert(alignof(FRigVMFunction_MathFloatPow) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatPow"); \ +static_assert(sizeof(FRigVMFunction_MathFloatPow) == 0x000018, "Wrong size on FRigVMFunction_MathFloatPow"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformUnaryOp \ +static_assert(alignof(FRigVMFunction_MathTransformUnaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathTransformUnaryOp) == 0x0000D0, "Wrong size on FRigVMFunction_MathTransformUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathTransformUnaryOp, Value) == 0x000010, "Member 'FRigVMFunction_MathTransformUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformUnaryOp, Result) == 0x000070, "Member 'FRigVMFunction_MathTransformUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatSqrt \ +static_assert(alignof(FRigVMFunction_MathFloatSqrt) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatSqrt"); \ +static_assert(sizeof(FRigVMFunction_MathFloatSqrt) == 0x000010, "Wrong size on FRigVMFunction_MathFloatSqrt"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatNegate \ +static_assert(alignof(FRigVMFunction_MathFloatNegate) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatNegate"); \ +static_assert(sizeof(FRigVMFunction_MathFloatNegate) == 0x000010, "Wrong size on FRigVMFunction_MathFloatNegate"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateVectorQuat_Target \ +static_assert(alignof(FMathRBFInterpolateVectorQuat_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateVectorQuat_Target"); \ +static_assert(sizeof(FMathRBFInterpolateVectorQuat_Target) == 0x000040, "Wrong size on FMathRBFInterpolateVectorQuat_Target"); \ +static_assert(offsetof(FMathRBFInterpolateVectorQuat_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateVectorQuat_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateVectorQuat_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateVectorQuat_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatAbs \ +static_assert(alignof(FRigVMFunction_MathFloatAbs) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatAbs"); \ +static_assert(sizeof(FRigVMFunction_MathFloatAbs) == 0x000010, "Wrong size on FRigVMFunction_MathFloatAbs"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatFloor \ +static_assert(alignof(FRigVMFunction_MathFloatFloor) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatFloor"); \ +static_assert(sizeof(FRigVMFunction_MathFloatFloor) == 0x000018, "Wrong size on FRigVMFunction_MathFloatFloor"); \ +static_assert(offsetof(FRigVMFunction_MathFloatFloor, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatFloor::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatFloor, Result) == 0x00000C, "Member 'FRigVMFunction_MathFloatFloor::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatFloor, Int) == 0x000010, "Member 'FRigVMFunction_MathFloatFloor::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateVectorFloat_Target \ +static_assert(alignof(FMathRBFInterpolateVectorFloat_Target) == 0x000008, "Wrong alignment on FMathRBFInterpolateVectorFloat_Target"); \ +static_assert(sizeof(FMathRBFInterpolateVectorFloat_Target) == 0x000020, "Wrong size on FMathRBFInterpolateVectorFloat_Target"); \ +static_assert(offsetof(FMathRBFInterpolateVectorFloat_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateVectorFloat_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateVectorFloat_Target, Value) == 0x000018, "Member 'FMathRBFInterpolateVectorFloat_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatCeil \ +static_assert(alignof(FRigVMFunction_MathFloatCeil) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatCeil"); \ +static_assert(sizeof(FRigVMFunction_MathFloatCeil) == 0x000018, "Wrong size on FRigVMFunction_MathFloatCeil"); \ +static_assert(offsetof(FRigVMFunction_MathFloatCeil, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatCeil::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatCeil, Result) == 0x00000C, "Member 'FRigVMFunction_MathFloatCeil::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatCeil, Int) == 0x000010, "Member 'FRigVMFunction_MathFloatCeil::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatRound \ +static_assert(alignof(FRigVMFunction_MathFloatRound) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatRound"); \ +static_assert(sizeof(FRigVMFunction_MathFloatRound) == 0x000018, "Wrong size on FRigVMFunction_MathFloatRound"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRound, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatRound::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRound, Result) == 0x00000C, "Member 'FRigVMFunction_MathFloatRound::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRound, Int) == 0x000010, "Member 'FRigVMFunction_MathFloatRound::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatToInt \ +static_assert(alignof(FRigVMFunction_MathFloatToInt) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatToInt"); \ +static_assert(sizeof(FRigVMFunction_MathFloatToInt) == 0x000010, "Wrong size on FRigVMFunction_MathFloatToInt"); \ +static_assert(offsetof(FRigVMFunction_MathFloatToInt, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatToInt::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatToInt, Result) == 0x00000C, "Member 'FRigVMFunction_MathFloatToInt::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatSign \ +static_assert(alignof(FRigVMFunction_MathFloatSign) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatSign"); \ +static_assert(sizeof(FRigVMFunction_MathFloatSign) == 0x000010, "Wrong size on FRigVMFunction_MathFloatSign"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMakeRelative \ +static_assert(alignof(FRigVMFunction_MathTransformMakeRelative) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMakeRelative"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMakeRelative) == 0x000130, "Wrong size on FRigVMFunction_MathTransformMakeRelative"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeRelative, Global) == 0x000010, "Member 'FRigVMFunction_MathTransformMakeRelative::Global' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeRelative, Parent) == 0x000070, "Member 'FRigVMFunction_MathTransformMakeRelative::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeRelative, Local) == 0x0000D0, "Member 'FRigVMFunction_MathTransformMakeRelative::Local' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatClamp \ +static_assert(alignof(FRigVMFunction_MathFloatClamp) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatClamp"); \ +static_assert(sizeof(FRigVMFunction_MathFloatClamp) == 0x000018, "Wrong size on FRigVMFunction_MathFloatClamp"); \ +static_assert(offsetof(FRigVMFunction_MathFloatClamp, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatClamp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatClamp, Minimum) == 0x00000C, "Member 'FRigVMFunction_MathFloatClamp::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatClamp, Maximum) == 0x000010, "Member 'FRigVMFunction_MathFloatClamp::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatClamp, Result) == 0x000014, "Member 'FRigVMFunction_MathFloatClamp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatLerp \ +static_assert(alignof(FRigVMFunction_MathFloatLerp) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatLerp"); \ +static_assert(sizeof(FRigVMFunction_MathFloatLerp) == 0x000018, "Wrong size on FRigVMFunction_MathFloatLerp"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLerp, A) == 0x000008, "Member 'FRigVMFunction_MathFloatLerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLerp, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatLerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLerp, T) == 0x000010, "Member 'FRigVMFunction_MathFloatLerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLerp, Result) == 0x000014, "Member 'FRigVMFunction_MathFloatLerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathTransformBinaryAggregateOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathTransformBinaryAggregateOp) == 0x000130, "Wrong size on FRigVMFunction_MathTransformBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryAggregateOp, A) == 0x000010, "Member 'FRigVMFunction_MathTransformBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryAggregateOp, B) == 0x000070, "Member 'FRigVMFunction_MathTransformBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryAggregateOp, Result) == 0x0000D0, "Member 'FRigVMFunction_MathTransformBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatRemap \ +static_assert(alignof(FRigVMFunction_MathFloatRemap) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatRemap"); \ +static_assert(sizeof(FRigVMFunction_MathFloatRemap) == 0x000028, "Wrong size on FRigVMFunction_MathFloatRemap"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatRemap::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, SourceMinimum) == 0x00000C, "Member 'FRigVMFunction_MathFloatRemap::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, SourceMaximum) == 0x000010, "Member 'FRigVMFunction_MathFloatRemap::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, TargetMinimum) == 0x000014, "Member 'FRigVMFunction_MathFloatRemap::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, TargetMaximum) == 0x000018, "Member 'FRigVMFunction_MathFloatRemap::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, bClamp) == 0x00001C, "Member 'FRigVMFunction_MathFloatRemap::bClamp' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatRemap, Result) == 0x000020, "Member 'FRigVMFunction_MathFloatRemap::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatEquals \ +static_assert(alignof(FRigVMFunction_MathFloatEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatEquals"); \ +static_assert(sizeof(FRigVMFunction_MathFloatEquals) == 0x000018, "Wrong size on FRigVMFunction_MathFloatEquals"); \ +static_assert(offsetof(FRigVMFunction_MathFloatEquals, A) == 0x000008, "Member 'FRigVMFunction_MathFloatEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatEquals, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatEquals, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathRBFInterpolateVectorXform_Target \ +static_assert(alignof(FMathRBFInterpolateVectorXform_Target) == 0x000010, "Wrong alignment on FMathRBFInterpolateVectorXform_Target"); \ +static_assert(sizeof(FMathRBFInterpolateVectorXform_Target) == 0x000080, "Wrong size on FMathRBFInterpolateVectorXform_Target"); \ +static_assert(offsetof(FMathRBFInterpolateVectorXform_Target, Target) == 0x000000, "Member 'FMathRBFInterpolateVectorXform_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FMathRBFInterpolateVectorXform_Target, Value) == 0x000020, "Member 'FMathRBFInterpolateVectorXform_Target::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatNotEquals \ +static_assert(alignof(FRigVMFunction_MathFloatNotEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathFloatNotEquals) == 0x000018, "Wrong size on FRigVMFunction_MathFloatNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathFloatNotEquals, A) == 0x000008, "Member 'FRigVMFunction_MathFloatNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatNotEquals, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatNotEquals, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatGreater \ +static_assert(alignof(FRigVMFunction_MathFloatGreater) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatGreater"); \ +static_assert(sizeof(FRigVMFunction_MathFloatGreater) == 0x000018, "Wrong size on FRigVMFunction_MathFloatGreater"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreater, A) == 0x000008, "Member 'FRigVMFunction_MathFloatGreater::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreater, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatGreater::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreater, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatGreater::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatGreaterEqual \ +static_assert(alignof(FRigVMFunction_MathFloatGreaterEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatGreaterEqual"); \ +static_assert(sizeof(FRigVMFunction_MathFloatGreaterEqual) == 0x000018, "Wrong size on FRigVMFunction_MathFloatGreaterEqual"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreaterEqual, A) == 0x000008, "Member 'FRigVMFunction_MathFloatGreaterEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreaterEqual, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatGreaterEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatGreaterEqual, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatGreaterEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformFromSRT \ +static_assert(alignof(FRigVMFunction_MathTransformFromSRT) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformFromSRT"); \ +static_assert(sizeof(FRigVMFunction_MathTransformFromSRT) == 0x000110, "Wrong size on FRigVMFunction_MathTransformFromSRT"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, Location) == 0x000008, "Member 'FRigVMFunction_MathTransformFromSRT::Location' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, Rotation) == 0x000020, "Member 'FRigVMFunction_MathTransformFromSRT::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, RotationOrder) == 0x000038, "Member 'FRigVMFunction_MathTransformFromSRT::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, Scale) == 0x000040, "Member 'FRigVMFunction_MathTransformFromSRT::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, Transform) == 0x000060, "Member 'FRigVMFunction_MathTransformFromSRT::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromSRT, EulerTransform) == 0x0000C0, "Member 'FRigVMFunction_MathTransformFromSRT::EulerTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatLessEqual \ +static_assert(alignof(FRigVMFunction_MathFloatLessEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatLessEqual"); \ +static_assert(sizeof(FRigVMFunction_MathFloatLessEqual) == 0x000018, "Wrong size on FRigVMFunction_MathFloatLessEqual"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLessEqual, A) == 0x000008, "Member 'FRigVMFunction_MathFloatLessEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLessEqual, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatLessEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLessEqual, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatLessEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatIsNearlyZero \ +static_assert(alignof(FRigVMFunction_MathFloatIsNearlyZero) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatIsNearlyZero"); \ +static_assert(sizeof(FRigVMFunction_MathFloatIsNearlyZero) == 0x000018, "Wrong size on FRigVMFunction_MathFloatIsNearlyZero"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyZero, Value) == 0x000008, "Member 'FRigVMFunction_MathFloatIsNearlyZero::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyZero, Tolerance) == 0x00000C, "Member 'FRigVMFunction_MathFloatIsNearlyZero::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyZero, Result) == 0x000010, "Member 'FRigVMFunction_MathFloatIsNearlyZero::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMutableBase \ +static_assert(alignof(FRigVMFunction_MathTransformMutableBase) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMutableBase"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMutableBase) == 0x000100, "Wrong size on FRigVMFunction_MathTransformMutableBase"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformAccumulateArray \ +static_assert(alignof(FRigVMFunction_MathTransformAccumulateArray) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformAccumulateArray"); \ +static_assert(sizeof(FRigVMFunction_MathTransformAccumulateArray) == 0x000190, "Wrong size on FRigVMFunction_MathTransformAccumulateArray"); \ +static_assert(offsetof(FRigVMFunction_MathTransformAccumulateArray, Transforms) == 0x000100, "Member 'FRigVMFunction_MathTransformAccumulateArray::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformAccumulateArray, TargetSpace) == 0x000110, "Member 'FRigVMFunction_MathTransformAccumulateArray::TargetSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformAccumulateArray, Root) == 0x000120, "Member 'FRigVMFunction_MathTransformAccumulateArray::Root' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformAccumulateArray, ParentIndices) == 0x000180, "Member 'FRigVMFunction_MathTransformAccumulateArray::ParentIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatIsNearlyEqual \ +static_assert(alignof(FRigVMFunction_MathFloatIsNearlyEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatIsNearlyEqual"); \ +static_assert(sizeof(FRigVMFunction_MathFloatIsNearlyEqual) == 0x000018, "Wrong size on FRigVMFunction_MathFloatIsNearlyEqual"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyEqual, A) == 0x000008, "Member 'FRigVMFunction_MathFloatIsNearlyEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyEqual, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatIsNearlyEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyEqual, Tolerance) == 0x000010, "Member 'FRigVMFunction_MathFloatIsNearlyEqual::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatIsNearlyEqual, Result) == 0x000014, "Member 'FRigVMFunction_MathFloatIsNearlyEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatSelectBool \ +static_assert(alignof(FRigVMFunction_MathFloatSelectBool) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatSelectBool"); \ +static_assert(sizeof(FRigVMFunction_MathFloatSelectBool) == 0x000018, "Wrong size on FRigVMFunction_MathFloatSelectBool"); \ +static_assert(offsetof(FRigVMFunction_MathFloatSelectBool, Condition) == 0x000008, "Member 'FRigVMFunction_MathFloatSelectBool::Condition' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatSelectBool, IfTrue) == 0x00000C, "Member 'FRigVMFunction_MathFloatSelectBool::IfTrue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatSelectBool, IfFalse) == 0x000010, "Member 'FRigVMFunction_MathFloatSelectBool::IfFalse' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatSelectBool, Result) == 0x000014, "Member 'FRigVMFunction_MathFloatSelectBool::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformFromEulerTransform \ +static_assert(alignof(FRigVMFunction_MathTransformFromEulerTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformFromEulerTransform"); \ +static_assert(sizeof(FRigVMFunction_MathTransformFromEulerTransform) == 0x0000B0, "Wrong size on FRigVMFunction_MathTransformFromEulerTransform"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromEulerTransform, EulerTransform) == 0x000008, "Member 'FRigVMFunction_MathTransformFromEulerTransform::EulerTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromEulerTransform, Result) == 0x000050, "Member 'FRigVMFunction_MathTransformFromEulerTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatDeg \ +static_assert(alignof(FRigVMFunction_MathFloatDeg) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatDeg"); \ +static_assert(sizeof(FRigVMFunction_MathFloatDeg) == 0x000010, "Wrong size on FRigVMFunction_MathFloatDeg"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatRad \ +static_assert(alignof(FRigVMFunction_MathFloatRad) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatRad"); \ +static_assert(sizeof(FRigVMFunction_MathFloatRad) == 0x000010, "Wrong size on FRigVMFunction_MathFloatRad"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionFromRotator \ +static_assert(alignof(FRigVMFunction_MathQuaternionFromRotator) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionFromRotator"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionFromRotator) == 0x000040, "Wrong size on FRigVMFunction_MathQuaternionFromRotator"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromRotator, Rotator) == 0x000008, "Member 'FRigVMFunction_MathQuaternionFromRotator::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromRotator, Result) == 0x000020, "Member 'FRigVMFunction_MathQuaternionFromRotator::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatSin \ +static_assert(alignof(FRigVMFunction_MathFloatSin) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatSin"); \ +static_assert(sizeof(FRigVMFunction_MathFloatSin) == 0x000010, "Wrong size on FRigVMFunction_MathFloatSin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatCos \ +static_assert(alignof(FRigVMFunction_MathFloatCos) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatCos"); \ +static_assert(sizeof(FRigVMFunction_MathFloatCos) == 0x000010, "Wrong size on FRigVMFunction_MathFloatCos"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMake \ +static_assert(alignof(FRigVMFunction_MathVectorMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMake"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMake) == 0x000030, "Wrong size on FRigVMFunction_MathVectorMake"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMake, X) == 0x000008, "Member 'FRigVMFunction_MathVectorMake::X' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMake, Y) == 0x00000C, "Member 'FRigVMFunction_MathVectorMake::Y' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMake, Z) == 0x000010, "Member 'FRigVMFunction_MathVectorMake::Z' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMake, Result) == 0x000018, "Member 'FRigVMFunction_MathVectorMake::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatTan \ +static_assert(alignof(FRigVMFunction_MathFloatTan) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatTan"); \ +static_assert(sizeof(FRigVMFunction_MathFloatTan) == 0x000010, "Wrong size on FRigVMFunction_MathFloatTan"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatAsin \ +static_assert(alignof(FRigVMFunction_MathFloatAsin) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatAsin"); \ +static_assert(sizeof(FRigVMFunction_MathFloatAsin) == 0x000010, "Wrong size on FRigVMFunction_MathFloatAsin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionScale \ +static_assert(alignof(FRigVMFunction_MathQuaternionScale) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionScale"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionScale) == 0x000040, "Wrong size on FRigVMFunction_MathQuaternionScale"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionScale, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionScale::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionScale, Scale) == 0x000030, "Member 'FRigVMFunction_MathQuaternionScale::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatAcos \ +static_assert(alignof(FRigVMFunction_MathFloatAcos) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatAcos"); \ +static_assert(sizeof(FRigVMFunction_MathFloatAcos) == 0x000010, "Wrong size on FRigVMFunction_MathFloatAcos"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatAtan \ +static_assert(alignof(FRigVMFunction_MathFloatAtan) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatAtan"); \ +static_assert(sizeof(FRigVMFunction_MathFloatAtan) == 0x000010, "Wrong size on FRigVMFunction_MathFloatAtan"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionFromAxisAndAngle \ +static_assert(alignof(FRigVMFunction_MathQuaternionFromAxisAndAngle) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionFromAxisAndAngle"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionFromAxisAndAngle) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionFromAxisAndAngle"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromAxisAndAngle, Axis) == 0x000008, "Member 'FRigVMFunction_MathQuaternionFromAxisAndAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromAxisAndAngle, Angle) == 0x000020, "Member 'FRigVMFunction_MathQuaternionFromAxisAndAngle::Angle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromAxisAndAngle, Result) == 0x000030, "Member 'FRigVMFunction_MathQuaternionFromAxisAndAngle::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatLawOfCosine \ +static_assert(alignof(FRigVMFunction_MathFloatLawOfCosine) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatLawOfCosine"); \ +static_assert(sizeof(FRigVMFunction_MathFloatLawOfCosine) == 0x000028, "Wrong size on FRigVMFunction_MathFloatLawOfCosine"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, A) == 0x000008, "Member 'FRigVMFunction_MathFloatLawOfCosine::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, B) == 0x00000C, "Member 'FRigVMFunction_MathFloatLawOfCosine::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, C) == 0x000010, "Member 'FRigVMFunction_MathFloatLawOfCosine::C' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, AlphaAngle) == 0x000014, "Member 'FRigVMFunction_MathFloatLawOfCosine::AlphaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, BetaAngle) == 0x000018, "Member 'FRigVMFunction_MathFloatLawOfCosine::BetaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, GammaAngle) == 0x00001C, "Member 'FRigVMFunction_MathFloatLawOfCosine::GammaAngle' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatLawOfCosine, bValid) == 0x000020, "Member 'FRigVMFunction_MathFloatLawOfCosine::bValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatExponential \ +static_assert(alignof(FRigVMFunction_MathFloatExponential) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatExponential"); \ +static_assert(sizeof(FRigVMFunction_MathFloatExponential) == 0x000010, "Wrong size on FRigVMFunction_MathFloatExponential"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorBinaryOp \ +static_assert(alignof(FRigVMFunction_MathVectorBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathVectorBinaryOp) == 0x000050, "Wrong size on FRigVMFunction_MathVectorBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathVectorBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryOp, B) == 0x000020, "Member 'FRigVMFunction_MathVectorBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryOp, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatArraySum \ +static_assert(alignof(FRigVMFunction_MathFloatArraySum) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatArraySum"); \ +static_assert(sizeof(FRigVMFunction_MathFloatArraySum) == 0x000020, "Wrong size on FRigVMFunction_MathFloatArraySum"); \ +static_assert(offsetof(FRigVMFunction_MathFloatArraySum, Array) == 0x000008, "Member 'FRigVMFunction_MathFloatArraySum::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatArraySum, Sum) == 0x000018, "Member 'FRigVMFunction_MathFloatArraySum::Sum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathFloatArrayAverage \ +static_assert(alignof(FRigVMFunction_MathFloatArrayAverage) == 0x000008, "Wrong alignment on FRigVMFunction_MathFloatArrayAverage"); \ +static_assert(sizeof(FRigVMFunction_MathFloatArrayAverage) == 0x000020, "Wrong size on FRigVMFunction_MathFloatArrayAverage"); \ +static_assert(offsetof(FRigVMFunction_MathFloatArrayAverage, Array) == 0x000008, "Member 'FRigVMFunction_MathFloatArrayAverage::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathFloatArrayAverage, Average) == 0x000018, "Member 'FRigVMFunction_MathFloatArrayAverage::Average' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMod \ +static_assert(alignof(FRigVMFunction_MathVectorMod) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMod"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMod) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMod"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntUnaryOp \ +static_assert(alignof(FRigVMFunction_MathIntUnaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntUnaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathIntUnaryOp) == 0x000010, "Wrong size on FRigVMFunction_MathIntUnaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathIntUnaryOp, Value) == 0x000008, "Member 'FRigVMFunction_MathIntUnaryOp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntUnaryOp, Result) == 0x00000C, "Member 'FRigVMFunction_MathIntUnaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorFromDouble \ +static_assert(alignof(FRigVMFunction_MathVectorFromDouble) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorFromDouble"); \ +static_assert(sizeof(FRigVMFunction_MathVectorFromDouble) == 0x000028, "Wrong size on FRigVMFunction_MathVectorFromDouble"); \ +static_assert(offsetof(FRigVMFunction_MathVectorFromDouble, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorFromDouble::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorFromDouble, Result) == 0x000010, "Member 'FRigVMFunction_MathVectorFromDouble::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntBinaryOp \ +static_assert(alignof(FRigVMFunction_MathIntBinaryOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathIntBinaryOp) == 0x000018, "Wrong size on FRigVMFunction_MathIntBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryOp, A) == 0x000008, "Member 'FRigVMFunction_MathIntBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryOp, B) == 0x00000C, "Member 'FRigVMFunction_MathIntBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryOp, Result) == 0x000010, "Member 'FRigVMFunction_MathIntBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathIntBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathIntBinaryAggregateOp) == 0x000018, "Wrong size on FRigVMFunction_MathIntBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathIntBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryAggregateOp, B) == 0x00000C, "Member 'FRigVMFunction_MathIntBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntBinaryAggregateOp, Result) == 0x000010, "Member 'FRigVMFunction_MathIntBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntMake \ +static_assert(alignof(FRigVMFunction_MathIntMake) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntMake"); \ +static_assert(sizeof(FRigVMFunction_MathIntMake) == 0x000010, "Wrong size on FRigVMFunction_MathIntMake"); \ +static_assert(offsetof(FRigVMFunction_MathIntMake, Value) == 0x000008, "Member 'FRigVMFunction_MathIntMake::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntAdd \ +static_assert(alignof(FRigVMFunction_MathIntAdd) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntAdd"); \ +static_assert(sizeof(FRigVMFunction_MathIntAdd) == 0x000018, "Wrong size on FRigVMFunction_MathIntAdd"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorScale \ +static_assert(alignof(FRigVMFunction_MathVectorScale) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorScale"); \ +static_assert(sizeof(FRigVMFunction_MathVectorScale) == 0x000040, "Wrong size on FRigVMFunction_MathVectorScale"); \ +static_assert(offsetof(FRigVMFunction_MathVectorScale, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorScale::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorScale, Factor) == 0x000020, "Member 'FRigVMFunction_MathVectorScale::Factor' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorScale, Result) == 0x000028, "Member 'FRigVMFunction_MathVectorScale::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntSub \ +static_assert(alignof(FRigVMFunction_MathIntSub) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntSub"); \ +static_assert(sizeof(FRigVMFunction_MathIntSub) == 0x000018, "Wrong size on FRigVMFunction_MathIntSub"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntMul \ +static_assert(alignof(FRigVMFunction_MathIntMul) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntMul"); \ +static_assert(sizeof(FRigVMFunction_MathIntMul) == 0x000018, "Wrong size on FRigVMFunction_MathIntMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorSign \ +static_assert(alignof(FRigVMFunction_MathVectorSign) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorSign"); \ +static_assert(sizeof(FRigVMFunction_MathVectorSign) == 0x000038, "Wrong size on FRigVMFunction_MathVectorSign"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntDiv \ +static_assert(alignof(FRigVMFunction_MathIntDiv) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntDiv"); \ +static_assert(sizeof(FRigVMFunction_MathIntDiv) == 0x000018, "Wrong size on FRigVMFunction_MathIntDiv"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntMod \ +static_assert(alignof(FRigVMFunction_MathIntMod) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntMod"); \ +static_assert(sizeof(FRigVMFunction_MathIntMod) == 0x000018, "Wrong size on FRigVMFunction_MathIntMod"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathVectorBinaryAggregateOp) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathVectorBinaryAggregateOp) == 0x000050, "Wrong size on FRigVMFunction_MathVectorBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryAggregateOp, A) == 0x000008, "Member 'FRigVMFunction_MathVectorBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryAggregateOp, B) == 0x000020, "Member 'FRigVMFunction_MathVectorBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBinaryAggregateOp, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMax \ +static_assert(alignof(FRigVMFunction_MathVectorMax) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMax"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMax) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMax"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntMin \ +static_assert(alignof(FRigVMFunction_MathIntMin) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntMin"); \ +static_assert(sizeof(FRigVMFunction_MathIntMin) == 0x000018, "Wrong size on FRigVMFunction_MathIntMin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntMax \ +static_assert(alignof(FRigVMFunction_MathIntMax) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntMax"); \ +static_assert(sizeof(FRigVMFunction_MathIntMax) == 0x000018, "Wrong size on FRigVMFunction_MathIntMax"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorSub \ +static_assert(alignof(FRigVMFunction_MathVectorSub) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorSub"); \ +static_assert(sizeof(FRigVMFunction_MathVectorSub) == 0x000050, "Wrong size on FRigVMFunction_MathVectorSub"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntPow \ +static_assert(alignof(FRigVMFunction_MathIntPow) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntPow"); \ +static_assert(sizeof(FRigVMFunction_MathIntPow) == 0x000018, "Wrong size on FRigVMFunction_MathIntPow"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntNegate \ +static_assert(alignof(FRigVMFunction_MathIntNegate) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntNegate"); \ +static_assert(sizeof(FRigVMFunction_MathIntNegate) == 0x000010, "Wrong size on FRigVMFunction_MathIntNegate"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorCeil \ +static_assert(alignof(FRigVMFunction_MathVectorCeil) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorCeil"); \ +static_assert(sizeof(FRigVMFunction_MathVectorCeil) == 0x000038, "Wrong size on FRigVMFunction_MathVectorCeil"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntAbs \ +static_assert(alignof(FRigVMFunction_MathIntAbs) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntAbs"); \ +static_assert(sizeof(FRigVMFunction_MathIntAbs) == 0x000010, "Wrong size on FRigVMFunction_MathIntAbs"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntToFloat \ +static_assert(alignof(FRigVMFunction_MathIntToFloat) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntToFloat"); \ +static_assert(sizeof(FRigVMFunction_MathIntToFloat) == 0x000010, "Wrong size on FRigVMFunction_MathIntToFloat"); \ +static_assert(offsetof(FRigVMFunction_MathIntToFloat, Value) == 0x000008, "Member 'FRigVMFunction_MathIntToFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToFloat, Result) == 0x00000C, "Member 'FRigVMFunction_MathIntToFloat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorSelectBool \ +static_assert(alignof(FRigVMFunction_MathVectorSelectBool) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorSelectBool"); \ +static_assert(sizeof(FRigVMFunction_MathVectorSelectBool) == 0x000058, "Wrong size on FRigVMFunction_MathVectorSelectBool"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSelectBool, Condition) == 0x000008, "Member 'FRigVMFunction_MathVectorSelectBool::Condition' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSelectBool, IfTrue) == 0x000010, "Member 'FRigVMFunction_MathVectorSelectBool::IfTrue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSelectBool, IfFalse) == 0x000028, "Member 'FRigVMFunction_MathVectorSelectBool::IfFalse' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorSelectBool, Result) == 0x000040, "Member 'FRigVMFunction_MathVectorSelectBool::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntToDouble \ +static_assert(alignof(FRigVMFunction_MathIntToDouble) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntToDouble"); \ +static_assert(sizeof(FRigVMFunction_MathIntToDouble) == 0x000018, "Wrong size on FRigVMFunction_MathIntToDouble"); \ +static_assert(offsetof(FRigVMFunction_MathIntToDouble, Value) == 0x000008, "Member 'FRigVMFunction_MathIntToDouble::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToDouble, Result) == 0x000010, "Member 'FRigVMFunction_MathIntToDouble::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntSign \ +static_assert(alignof(FRigVMFunction_MathIntSign) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntSign"); \ +static_assert(sizeof(FRigVMFunction_MathIntSign) == 0x000010, "Wrong size on FRigVMFunction_MathIntSign"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorLerp \ +static_assert(alignof(FRigVMFunction_MathVectorLerp) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorLerp"); \ +static_assert(sizeof(FRigVMFunction_MathVectorLerp) == 0x000058, "Wrong size on FRigVMFunction_MathVectorLerp"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLerp, A) == 0x000008, "Member 'FRigVMFunction_MathVectorLerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLerp, B) == 0x000020, "Member 'FRigVMFunction_MathVectorLerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLerp, T) == 0x000038, "Member 'FRigVMFunction_MathVectorLerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLerp, Result) == 0x000040, "Member 'FRigVMFunction_MathVectorLerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntClamp \ +static_assert(alignof(FRigVMFunction_MathIntClamp) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntClamp"); \ +static_assert(sizeof(FRigVMFunction_MathIntClamp) == 0x000018, "Wrong size on FRigVMFunction_MathIntClamp"); \ +static_assert(offsetof(FRigVMFunction_MathIntClamp, Value) == 0x000008, "Member 'FRigVMFunction_MathIntClamp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntClamp, Minimum) == 0x00000C, "Member 'FRigVMFunction_MathIntClamp::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntClamp, Maximum) == 0x000010, "Member 'FRigVMFunction_MathIntClamp::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntClamp, Result) == 0x000014, "Member 'FRigVMFunction_MathIntClamp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntEquals \ +static_assert(alignof(FRigVMFunction_MathIntEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntEquals"); \ +static_assert(sizeof(FRigVMFunction_MathIntEquals) == 0x000018, "Wrong size on FRigVMFunction_MathIntEquals"); \ +static_assert(offsetof(FRigVMFunction_MathIntEquals, A) == 0x000008, "Member 'FRigVMFunction_MathIntEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntEquals, B) == 0x00000C, "Member 'FRigVMFunction_MathIntEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntEquals, Result) == 0x000010, "Member 'FRigVMFunction_MathIntEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorAbs \ +static_assert(alignof(FRigVMFunction_MathVectorAbs) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorAbs"); \ +static_assert(sizeof(FRigVMFunction_MathVectorAbs) == 0x000038, "Wrong size on FRigVMFunction_MathVectorAbs"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntNotEquals \ +static_assert(alignof(FRigVMFunction_MathIntNotEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathIntNotEquals) == 0x000018, "Wrong size on FRigVMFunction_MathIntNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathIntNotEquals, A) == 0x000008, "Member 'FRigVMFunction_MathIntNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntNotEquals, B) == 0x00000C, "Member 'FRigVMFunction_MathIntNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntNotEquals, Result) == 0x000010, "Member 'FRigVMFunction_MathIntNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntLess \ +static_assert(alignof(FRigVMFunction_MathIntLess) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntLess"); \ +static_assert(sizeof(FRigVMFunction_MathIntLess) == 0x000018, "Wrong size on FRigVMFunction_MathIntLess"); \ +static_assert(offsetof(FRigVMFunction_MathIntLess, A) == 0x000008, "Member 'FRigVMFunction_MathIntLess::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntLess, B) == 0x00000C, "Member 'FRigVMFunction_MathIntLess::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntLess, Result) == 0x000010, "Member 'FRigVMFunction_MathIntLess::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntLessEqual \ +static_assert(alignof(FRigVMFunction_MathIntLessEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntLessEqual"); \ +static_assert(sizeof(FRigVMFunction_MathIntLessEqual) == 0x000018, "Wrong size on FRigVMFunction_MathIntLessEqual"); \ +static_assert(offsetof(FRigVMFunction_MathIntLessEqual, A) == 0x000008, "Member 'FRigVMFunction_MathIntLessEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntLessEqual, B) == 0x00000C, "Member 'FRigVMFunction_MathIntLessEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntLessEqual, Result) == 0x000010, "Member 'FRigVMFunction_MathIntLessEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntArrayAverage \ +static_assert(alignof(FRigVMFunction_MathIntArrayAverage) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntArrayAverage"); \ +static_assert(sizeof(FRigVMFunction_MathIntArrayAverage) == 0x000020, "Wrong size on FRigVMFunction_MathIntArrayAverage"); \ +static_assert(offsetof(FRigVMFunction_MathIntArrayAverage, Array) == 0x000008, "Member 'FRigVMFunction_MathIntArrayAverage::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntArrayAverage, Average) == 0x000018, "Member 'FRigVMFunction_MathIntArrayAverage::Average' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntToName \ +static_assert(alignof(FRigVMFunction_MathIntToName) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntToName"); \ +static_assert(sizeof(FRigVMFunction_MathIntToName) == 0x000018, "Wrong size on FRigVMFunction_MathIntToName"); \ +static_assert(offsetof(FRigVMFunction_MathIntToName, Number) == 0x000008, "Member 'FRigVMFunction_MathIntToName::Number' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToName, PaddedSize) == 0x00000C, "Member 'FRigVMFunction_MathIntToName::PaddedSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntToName, Result) == 0x000010, "Member 'FRigVMFunction_MathIntToName::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixBinaryAggregateOp \ +static_assert(alignof(FRigVMFunction_MathMatrixBinaryAggregateOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixBinaryAggregateOp"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixBinaryAggregateOp) == 0x000190, "Wrong size on FRigVMFunction_MathMatrixBinaryAggregateOp"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryAggregateOp, A) == 0x000010, "Member 'FRigVMFunction_MathMatrixBinaryAggregateOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryAggregateOp, B) == 0x000090, "Member 'FRigVMFunction_MathMatrixBinaryAggregateOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixBinaryAggregateOp, Result) == 0x000110, "Member 'FRigVMFunction_MathMatrixBinaryAggregateOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixFromTransform \ +static_assert(alignof(FRigVMFunction_MathMatrixFromTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixFromTransform"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixFromTransform) == 0x0000F0, "Wrong size on FRigVMFunction_MathMatrixFromTransform"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromTransform, Transform) == 0x000010, "Member 'FRigVMFunction_MathMatrixFromTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixFromTransform, Result) == 0x000070, "Member 'FRigVMFunction_MathMatrixFromTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixToVectors \ +static_assert(alignof(FRigVMFunction_MathMatrixToVectors) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixToVectors"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixToVectors) == 0x0000F0, "Wrong size on FRigVMFunction_MathMatrixToVectors"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToVectors, Value) == 0x000010, "Member 'FRigVMFunction_MathMatrixToVectors::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToVectors, Origin) == 0x000090, "Member 'FRigVMFunction_MathMatrixToVectors::Origin' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToVectors, X) == 0x0000A8, "Member 'FRigVMFunction_MathMatrixToVectors::X' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToVectors, Y) == 0x0000C0, "Member 'FRigVMFunction_MathMatrixToVectors::Y' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathMatrixToVectors, Z) == 0x0000D8, "Member 'FRigVMFunction_MathMatrixToVectors::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathMatrixMul \ +static_assert(alignof(FRigVMFunction_MathMatrixMul) == 0x000010, "Wrong alignment on FRigVMFunction_MathMatrixMul"); \ +static_assert(sizeof(FRigVMFunction_MathMatrixMul) == 0x000190, "Wrong size on FRigVMFunction_MathMatrixMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionBinaryOp \ +static_assert(alignof(FRigVMFunction_MathQuaternionBinaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionBinaryOp) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryOp, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryOp, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionBinaryOp, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionMake \ +static_assert(alignof(FRigVMFunction_MathQuaternionMake) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionMake"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionMake) == 0x000040, "Wrong size on FRigVMFunction_MathQuaternionMake"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMake, X) == 0x000008, "Member 'FRigVMFunction_MathQuaternionMake::X' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMake, Y) == 0x00000C, "Member 'FRigVMFunction_MathQuaternionMake::Y' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMake, Z) == 0x000010, "Member 'FRigVMFunction_MathQuaternionMake::Z' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMake, W) == 0x000014, "Member 'FRigVMFunction_MathQuaternionMake::W' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMake, Result) == 0x000020, "Member 'FRigVMFunction_MathQuaternionMake::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionFromEuler \ +static_assert(alignof(FRigVMFunction_MathQuaternionFromEuler) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionFromEuler"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionFromEuler) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionFromEuler"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromEuler, Euler) == 0x000008, "Member 'FRigVMFunction_MathQuaternionFromEuler::Euler' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromEuler, RotationOrder) == 0x000020, "Member 'FRigVMFunction_MathQuaternionFromEuler::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromEuler, Result) == 0x000030, "Member 'FRigVMFunction_MathQuaternionFromEuler::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionFromRotatorV2 \ +static_assert(alignof(FRigVMFunction_MathQuaternionFromRotatorV2) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionFromRotatorV2"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionFromRotatorV2) == 0x000040, "Wrong size on FRigVMFunction_MathQuaternionFromRotatorV2"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromRotatorV2, Value) == 0x000008, "Member 'FRigVMFunction_MathQuaternionFromRotatorV2::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionFromRotatorV2, Result) == 0x000020, "Member 'FRigVMFunction_MathQuaternionFromRotatorV2::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionToAxisAndAngle \ +static_assert(alignof(FRigVMFunction_MathQuaternionToAxisAndAngle) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionToAxisAndAngle"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionToAxisAndAngle) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionToAxisAndAngle"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToAxisAndAngle, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionToAxisAndAngle::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToAxisAndAngle, Axis) == 0x000030, "Member 'FRigVMFunction_MathQuaternionToAxisAndAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToAxisAndAngle, Angle) == 0x000048, "Member 'FRigVMFunction_MathQuaternionToAxisAndAngle::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionScaleV2 \ +static_assert(alignof(FRigVMFunction_MathQuaternionScaleV2) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionScaleV2"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionScaleV2) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionScaleV2"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionScaleV2, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionScaleV2::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionScaleV2, Factor) == 0x000030, "Member 'FRigVMFunction_MathQuaternionScaleV2::Factor' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionScaleV2, Result) == 0x000040, "Member 'FRigVMFunction_MathQuaternionScaleV2::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionToRotator \ +static_assert(alignof(FRigVMFunction_MathQuaternionToRotator) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionToRotator"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionToRotator) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionToRotator"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToRotator, Value) == 0x000010, "Member 'FRigVMFunction_MathQuaternionToRotator::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionToRotator, Result) == 0x000030, "Member 'FRigVMFunction_MathQuaternionToRotator::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionInverse \ +static_assert(alignof(FRigVMFunction_MathQuaternionInverse) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionInverse"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionInverse) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionInverse"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionEquals \ +static_assert(alignof(FRigVMFunction_MathQuaternionEquals) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionEquals"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionEquals) == 0x000060, "Wrong size on FRigVMFunction_MathQuaternionEquals"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionEquals, A) == 0x000010, "Member 'FRigVMFunction_MathQuaternionEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionEquals, B) == 0x000030, "Member 'FRigVMFunction_MathQuaternionEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionEquals, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionSelectBool \ +static_assert(alignof(FRigVMFunction_MathQuaternionSelectBool) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionSelectBool"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionSelectBool) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionSelectBool"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSelectBool, Condition) == 0x000008, "Member 'FRigVMFunction_MathQuaternionSelectBool::Condition' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSelectBool, IfTrue) == 0x000010, "Member 'FRigVMFunction_MathQuaternionSelectBool::IfTrue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSelectBool, IfFalse) == 0x000030, "Member 'FRigVMFunction_MathQuaternionSelectBool::IfFalse' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionSelectBool, Result) == 0x000050, "Member 'FRigVMFunction_MathQuaternionSelectBool::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionUnit \ +static_assert(alignof(FRigVMFunction_MathQuaternionUnit) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionUnit"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionUnit) == 0x000050, "Wrong size on FRigVMFunction_MathQuaternionUnit"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionRotationOrder \ +static_assert(alignof(FRigVMFunction_MathQuaternionRotationOrder) == 0x000008, "Wrong alignment on FRigVMFunction_MathQuaternionRotationOrder"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionRotationOrder) == 0x000010, "Wrong size on FRigVMFunction_MathQuaternionRotationOrder"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionRotationOrder, RotationOrder) == 0x000008, "Member 'FRigVMFunction_MathQuaternionRotationOrder::RotationOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathQuaternionMakeAbsolute \ +static_assert(alignof(FRigVMFunction_MathQuaternionMakeAbsolute) == 0x000010, "Wrong alignment on FRigVMFunction_MathQuaternionMakeAbsolute"); \ +static_assert(sizeof(FRigVMFunction_MathQuaternionMakeAbsolute) == 0x000070, "Wrong size on FRigVMFunction_MathQuaternionMakeAbsolute"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeAbsolute, Local) == 0x000010, "Member 'FRigVMFunction_MathQuaternionMakeAbsolute::Local' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeAbsolute, Parent) == 0x000030, "Member 'FRigVMFunction_MathQuaternionMakeAbsolute::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathQuaternionMakeAbsolute, Global) == 0x000050, "Member 'FRigVMFunction_MathQuaternionMakeAbsolute::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorBase \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorBase) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorBase"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorBase) == 0x0000C0, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorBase"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, Input) == 0x000008, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, DistanceFunction) == 0x000020, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::DistanceFunction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, SmoothingFunction) == 0x000021, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::SmoothingFunction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, SmoothingRadius) == 0x000024, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::SmoothingRadius' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, bNormalizeOutput) == 0x000028, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::bNormalizeOutput' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorBase, WorkData) == 0x000030, "Member 'FRigVMFunction_MathRBFInterpolateVectorBase::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatFloat \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatFloat) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatFloat"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatFloat) == 0x000110, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatFloat"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatFloat, Targets) == 0x0000F0, "Member 'FRigVMFunction_MathRBFInterpolateQuatFloat::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatFloat, Output) == 0x000100, "Member 'FRigVMFunction_MathRBFInterpolateQuatFloat::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatVector \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatVector) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatVector"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatVector) == 0x000120, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatVector"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatVector, Targets) == 0x0000F0, "Member 'FRigVMFunction_MathRBFInterpolateQuatVector::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatVector, Output) == 0x000100, "Member 'FRigVMFunction_MathRBFInterpolateQuatVector::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatColor \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatColor) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatColor"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatColor) == 0x000110, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatColor"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatColor, Targets) == 0x0000F0, "Member 'FRigVMFunction_MathRBFInterpolateQuatColor::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatColor, Output) == 0x000100, "Member 'FRigVMFunction_MathRBFInterpolateQuatColor::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatQuat \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatQuat) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatQuat"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatQuat) == 0x000120, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatQuat"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatQuat, Targets) == 0x0000F0, "Member 'FRigVMFunction_MathRBFInterpolateQuatQuat::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatQuat, Output) == 0x000100, "Member 'FRigVMFunction_MathRBFInterpolateQuatQuat::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateQuatXform \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateQuatXform) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateQuatXform"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateQuatXform) == 0x000160, "Wrong size on FRigVMFunction_MathRBFInterpolateQuatXform"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatXform, Targets) == 0x0000F0, "Member 'FRigVMFunction_MathRBFInterpolateQuatXform::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateQuatXform, Output) == 0x000100, "Member 'FRigVMFunction_MathRBFInterpolateQuatXform::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorFloat \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorFloat) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorFloat"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorFloat) == 0x0000E0, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorFloat"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorFloat, Targets) == 0x0000C0, "Member 'FRigVMFunction_MathRBFInterpolateVectorFloat::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorFloat, Output) == 0x0000D0, "Member 'FRigVMFunction_MathRBFInterpolateVectorFloat::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorVector \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorVector) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorVector"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorVector) == 0x0000F0, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorVector"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorVector, Targets) == 0x0000C0, "Member 'FRigVMFunction_MathRBFInterpolateVectorVector::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorVector, Output) == 0x0000D0, "Member 'FRigVMFunction_MathRBFInterpolateVectorVector::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorColor \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorColor) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorColor"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorColor) == 0x0000E0, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorColor"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorColor, Targets) == 0x0000C0, "Member 'FRigVMFunction_MathRBFInterpolateVectorColor::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorColor, Output) == 0x0000D0, "Member 'FRigVMFunction_MathRBFInterpolateVectorColor::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorQuat \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorQuat) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorQuat"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorQuat) == 0x0000F0, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorQuat"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorQuat, Targets) == 0x0000C0, "Member 'FRigVMFunction_MathRBFInterpolateVectorQuat::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorQuat, Output) == 0x0000D0, "Member 'FRigVMFunction_MathRBFInterpolateVectorQuat::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathRBFInterpolateVectorXform \ +static_assert(alignof(FRigVMFunction_MathRBFInterpolateVectorXform) == 0x000010, "Wrong alignment on FRigVMFunction_MathRBFInterpolateVectorXform"); \ +static_assert(sizeof(FRigVMFunction_MathRBFInterpolateVectorXform) == 0x000130, "Wrong size on FRigVMFunction_MathRBFInterpolateVectorXform"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorXform, Targets) == 0x0000C0, "Member 'FRigVMFunction_MathRBFInterpolateVectorXform::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathRBFInterpolateVectorXform, Output) == 0x0000D0, "Member 'FRigVMFunction_MathRBFInterpolateVectorXform::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformBinaryOp \ +static_assert(alignof(FRigVMFunction_MathTransformBinaryOp) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformBinaryOp"); \ +static_assert(sizeof(FRigVMFunction_MathTransformBinaryOp) == 0x000130, "Wrong size on FRigVMFunction_MathTransformBinaryOp"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryOp, A) == 0x000010, "Member 'FRigVMFunction_MathTransformBinaryOp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryOp, B) == 0x000070, "Member 'FRigVMFunction_MathTransformBinaryOp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformBinaryOp, Result) == 0x0000D0, "Member 'FRigVMFunction_MathTransformBinaryOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMake \ +static_assert(alignof(FRigVMFunction_MathTransformMake) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMake"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMake) == 0x0000C0, "Wrong size on FRigVMFunction_MathTransformMake"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMake, Translation) == 0x000008, "Member 'FRigVMFunction_MathTransformMake::Translation' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMake, Rotation) == 0x000020, "Member 'FRigVMFunction_MathTransformMake::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMake, Scale) == 0x000040, "Member 'FRigVMFunction_MathTransformMake::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMake, Result) == 0x000060, "Member 'FRigVMFunction_MathTransformMake::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformFromEulerTransformV2 \ +static_assert(alignof(FRigVMFunction_MathTransformFromEulerTransformV2) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformFromEulerTransformV2"); \ +static_assert(sizeof(FRigVMFunction_MathTransformFromEulerTransformV2) == 0x0000B0, "Wrong size on FRigVMFunction_MathTransformFromEulerTransformV2"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromEulerTransformV2, Value) == 0x000008, "Member 'FRigVMFunction_MathTransformFromEulerTransformV2::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformFromEulerTransformV2, Result) == 0x000050, "Member 'FRigVMFunction_MathTransformFromEulerTransformV2::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMul \ +static_assert(alignof(FRigVMFunction_MathTransformMul) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMul"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMul) == 0x000130, "Wrong size on FRigVMFunction_MathTransformMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMakeAbsolute \ +static_assert(alignof(FRigVMFunction_MathTransformMakeAbsolute) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMakeAbsolute"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMakeAbsolute) == 0x000130, "Wrong size on FRigVMFunction_MathTransformMakeAbsolute"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeAbsolute, Local) == 0x000010, "Member 'FRigVMFunction_MathTransformMakeAbsolute::Local' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeAbsolute, Parent) == 0x000070, "Member 'FRigVMFunction_MathTransformMakeAbsolute::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMakeAbsolute, Global) == 0x0000D0, "Member 'FRigVMFunction_MathTransformMakeAbsolute::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformInverse \ +static_assert(alignof(FRigVMFunction_MathTransformInverse) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformInverse"); \ +static_assert(sizeof(FRigVMFunction_MathTransformInverse) == 0x0000D0, "Wrong size on FRigVMFunction_MathTransformInverse"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformLerp \ +static_assert(alignof(FRigVMFunction_MathTransformLerp) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformLerp"); \ +static_assert(sizeof(FRigVMFunction_MathTransformLerp) == 0x000140, "Wrong size on FRigVMFunction_MathTransformLerp"); \ +static_assert(offsetof(FRigVMFunction_MathTransformLerp, A) == 0x000010, "Member 'FRigVMFunction_MathTransformLerp::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformLerp, B) == 0x000070, "Member 'FRigVMFunction_MathTransformLerp::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformLerp, T) == 0x0000D0, "Member 'FRigVMFunction_MathTransformLerp::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformLerp, Result) == 0x0000E0, "Member 'FRigVMFunction_MathTransformLerp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformSelectBool \ +static_assert(alignof(FRigVMFunction_MathTransformSelectBool) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformSelectBool"); \ +static_assert(sizeof(FRigVMFunction_MathTransformSelectBool) == 0x000130, "Wrong size on FRigVMFunction_MathTransformSelectBool"); \ +static_assert(offsetof(FRigVMFunction_MathTransformSelectBool, Condition) == 0x000008, "Member 'FRigVMFunction_MathTransformSelectBool::Condition' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformSelectBool, IfTrue) == 0x000010, "Member 'FRigVMFunction_MathTransformSelectBool::IfTrue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformSelectBool, IfFalse) == 0x000070, "Member 'FRigVMFunction_MathTransformSelectBool::IfFalse' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformSelectBool, Result) == 0x0000D0, "Member 'FRigVMFunction_MathTransformSelectBool::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformRotateVector \ +static_assert(alignof(FRigVMFunction_MathTransformRotateVector) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformRotateVector"); \ +static_assert(sizeof(FRigVMFunction_MathTransformRotateVector) == 0x0000A0, "Wrong size on FRigVMFunction_MathTransformRotateVector"); \ +static_assert(offsetof(FRigVMFunction_MathTransformRotateVector, Transform) == 0x000010, "Member 'FRigVMFunction_MathTransformRotateVector::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformRotateVector, Vector) == 0x000070, "Member 'FRigVMFunction_MathTransformRotateVector::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformRotateVector, Result) == 0x000088, "Member 'FRigVMFunction_MathTransformRotateVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformTransformVector \ +static_assert(alignof(FRigVMFunction_MathTransformTransformVector) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformTransformVector"); \ +static_assert(sizeof(FRigVMFunction_MathTransformTransformVector) == 0x0000A0, "Wrong size on FRigVMFunction_MathTransformTransformVector"); \ +static_assert(offsetof(FRigVMFunction_MathTransformTransformVector, Transform) == 0x000010, "Member 'FRigVMFunction_MathTransformTransformVector::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformTransformVector, Location) == 0x000070, "Member 'FRigVMFunction_MathTransformTransformVector::Location' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformTransformVector, Result) == 0x000088, "Member 'FRigVMFunction_MathTransformTransformVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformArrayToSRT \ +static_assert(alignof(FRigVMFunction_MathTransformArrayToSRT) == 0x000008, "Wrong alignment on FRigVMFunction_MathTransformArrayToSRT"); \ +static_assert(sizeof(FRigVMFunction_MathTransformArrayToSRT) == 0x000048, "Wrong size on FRigVMFunction_MathTransformArrayToSRT"); \ +static_assert(offsetof(FRigVMFunction_MathTransformArrayToSRT, Transforms) == 0x000008, "Member 'FRigVMFunction_MathTransformArrayToSRT::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformArrayToSRT, Translations) == 0x000018, "Member 'FRigVMFunction_MathTransformArrayToSRT::Translations' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformArrayToSRT, Rotations) == 0x000028, "Member 'FRigVMFunction_MathTransformArrayToSRT::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformArrayToSRT, Scales) == 0x000038, "Member 'FRigVMFunction_MathTransformArrayToSRT::Scales' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformClampSpatially \ +static_assert(alignof(FRigVMFunction_MathTransformClampSpatially) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformClampSpatially"); \ +static_assert(sizeof(FRigVMFunction_MathTransformClampSpatially) == 0x000160, "Wrong size on FRigVMFunction_MathTransformClampSpatially"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Value) == 0x000010, "Member 'FRigVMFunction_MathTransformClampSpatially::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Axis) == 0x000070, "Member 'FRigVMFunction_MathTransformClampSpatially::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Type) == 0x000071, "Member 'FRigVMFunction_MathTransformClampSpatially::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Minimum) == 0x000074, "Member 'FRigVMFunction_MathTransformClampSpatially::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Maximum) == 0x000078, "Member 'FRigVMFunction_MathTransformClampSpatially::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Space) == 0x000080, "Member 'FRigVMFunction_MathTransformClampSpatially::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, bDrawDebug) == 0x0000E0, "Member 'FRigVMFunction_MathTransformClampSpatially::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, DebugColor) == 0x0000E4, "Member 'FRigVMFunction_MathTransformClampSpatially::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, DebugThickness) == 0x0000F4, "Member 'FRigVMFunction_MathTransformClampSpatially::DebugThickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformClampSpatially, Result) == 0x000100, "Member 'FRigVMFunction_MathTransformClampSpatially::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathTransformMirrorTransform \ +static_assert(alignof(FRigVMFunction_MathTransformMirrorTransform) == 0x000010, "Wrong alignment on FRigVMFunction_MathTransformMirrorTransform"); \ +static_assert(sizeof(FRigVMFunction_MathTransformMirrorTransform) == 0x000140, "Wrong size on FRigVMFunction_MathTransformMirrorTransform"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMirrorTransform, Value) == 0x000010, "Member 'FRigVMFunction_MathTransformMirrorTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMirrorTransform, MirrorAxis) == 0x000070, "Member 'FRigVMFunction_MathTransformMirrorTransform::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMirrorTransform, AxisToFlip) == 0x000071, "Member 'FRigVMFunction_MathTransformMirrorTransform::AxisToFlip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMirrorTransform, CentralTransform) == 0x000080, "Member 'FRigVMFunction_MathTransformMirrorTransform::CentralTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathTransformMirrorTransform, Result) == 0x0000E0, "Member 'FRigVMFunction_MathTransformMirrorTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorFromFloat \ +static_assert(alignof(FRigVMFunction_MathVectorFromFloat) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorFromFloat"); \ +static_assert(sizeof(FRigVMFunction_MathVectorFromFloat) == 0x000028, "Wrong size on FRigVMFunction_MathVectorFromFloat"); \ +static_assert(offsetof(FRigVMFunction_MathVectorFromFloat, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorFromFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorFromFloat, Result) == 0x000010, "Member 'FRigVMFunction_MathVectorFromFloat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorAdd \ +static_assert(alignof(FRigVMFunction_MathVectorAdd) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorAdd"); \ +static_assert(sizeof(FRigVMFunction_MathVectorAdd) == 0x000050, "Wrong size on FRigVMFunction_MathVectorAdd"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMul \ +static_assert(alignof(FRigVMFunction_MathVectorMul) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMul"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMul) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMul"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorDiv \ +static_assert(alignof(FRigVMFunction_MathVectorDiv) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorDiv"); \ +static_assert(sizeof(FRigVMFunction_MathVectorDiv) == 0x000050, "Wrong size on FRigVMFunction_MathVectorDiv"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMin \ +static_assert(alignof(FRigVMFunction_MathVectorMin) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMin"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMin) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMin"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorNegate \ +static_assert(alignof(FRigVMFunction_MathVectorNegate) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorNegate"); \ +static_assert(sizeof(FRigVMFunction_MathVectorNegate) == 0x000038, "Wrong size on FRigVMFunction_MathVectorNegate"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorFloor \ +static_assert(alignof(FRigVMFunction_MathVectorFloor) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorFloor"); \ +static_assert(sizeof(FRigVMFunction_MathVectorFloor) == 0x000038, "Wrong size on FRigVMFunction_MathVectorFloor"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorRound \ +static_assert(alignof(FRigVMFunction_MathVectorRound) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorRound"); \ +static_assert(sizeof(FRigVMFunction_MathVectorRound) == 0x000038, "Wrong size on FRigVMFunction_MathVectorRound"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorClamp \ +static_assert(alignof(FRigVMFunction_MathVectorClamp) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorClamp"); \ +static_assert(sizeof(FRigVMFunction_MathVectorClamp) == 0x000068, "Wrong size on FRigVMFunction_MathVectorClamp"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClamp, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorClamp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClamp, Minimum) == 0x000020, "Member 'FRigVMFunction_MathVectorClamp::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClamp, Maximum) == 0x000038, "Member 'FRigVMFunction_MathVectorClamp::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClamp, Result) == 0x000050, "Member 'FRigVMFunction_MathVectorClamp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorRemap \ +static_assert(alignof(FRigVMFunction_MathVectorRemap) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorRemap"); \ +static_assert(sizeof(FRigVMFunction_MathVectorRemap) == 0x0000A0, "Wrong size on FRigVMFunction_MathVectorRemap"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorRemap::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, SourceMinimum) == 0x000020, "Member 'FRigVMFunction_MathVectorRemap::SourceMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, SourceMaximum) == 0x000038, "Member 'FRigVMFunction_MathVectorRemap::SourceMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, TargetMinimum) == 0x000050, "Member 'FRigVMFunction_MathVectorRemap::TargetMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, TargetMaximum) == 0x000068, "Member 'FRigVMFunction_MathVectorRemap::TargetMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, bClamp) == 0x000080, "Member 'FRigVMFunction_MathVectorRemap::bClamp' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorRemap, Result) == 0x000088, "Member 'FRigVMFunction_MathVectorRemap::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorNotEquals \ +static_assert(alignof(FRigVMFunction_MathVectorNotEquals) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorNotEquals"); \ +static_assert(sizeof(FRigVMFunction_MathVectorNotEquals) == 0x000040, "Wrong size on FRigVMFunction_MathVectorNotEquals"); \ +static_assert(offsetof(FRigVMFunction_MathVectorNotEquals, A) == 0x000008, "Member 'FRigVMFunction_MathVectorNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorNotEquals, B) == 0x000020, "Member 'FRigVMFunction_MathVectorNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorNotEquals, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorIsNearlyEqual \ +static_assert(alignof(FRigVMFunction_MathVectorIsNearlyEqual) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorIsNearlyEqual"); \ +static_assert(sizeof(FRigVMFunction_MathVectorIsNearlyEqual) == 0x000040, "Wrong size on FRigVMFunction_MathVectorIsNearlyEqual"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyEqual, A) == 0x000008, "Member 'FRigVMFunction_MathVectorIsNearlyEqual::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyEqual, B) == 0x000020, "Member 'FRigVMFunction_MathVectorIsNearlyEqual::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyEqual, Tolerance) == 0x000038, "Member 'FRigVMFunction_MathVectorIsNearlyEqual::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorIsNearlyEqual, Result) == 0x00003C, "Member 'FRigVMFunction_MathVectorIsNearlyEqual::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorDeg \ +static_assert(alignof(FRigVMFunction_MathVectorDeg) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorDeg"); \ +static_assert(sizeof(FRigVMFunction_MathVectorDeg) == 0x000038, "Wrong size on FRigVMFunction_MathVectorDeg"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorLengthSquared \ +static_assert(alignof(FRigVMFunction_MathVectorLengthSquared) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorLengthSquared"); \ +static_assert(sizeof(FRigVMFunction_MathVectorLengthSquared) == 0x000028, "Wrong size on FRigVMFunction_MathVectorLengthSquared"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLengthSquared, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorLengthSquared::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLengthSquared, Result) == 0x000020, "Member 'FRigVMFunction_MathVectorLengthSquared::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorLength \ +static_assert(alignof(FRigVMFunction_MathVectorLength) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorLength"); \ +static_assert(sizeof(FRigVMFunction_MathVectorLength) == 0x000028, "Wrong size on FRigVMFunction_MathVectorLength"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLength, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorLength::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorLength, Result) == 0x000020, "Member 'FRigVMFunction_MathVectorLength::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorCross \ +static_assert(alignof(FRigVMFunction_MathVectorCross) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorCross"); \ +static_assert(sizeof(FRigVMFunction_MathVectorCross) == 0x000050, "Wrong size on FRigVMFunction_MathVectorCross"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorDot \ +static_assert(alignof(FRigVMFunction_MathVectorDot) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorDot"); \ +static_assert(sizeof(FRigVMFunction_MathVectorDot) == 0x000040, "Wrong size on FRigVMFunction_MathVectorDot"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDot, A) == 0x000008, "Member 'FRigVMFunction_MathVectorDot::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDot, B) == 0x000020, "Member 'FRigVMFunction_MathVectorDot::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorDot, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorDot::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorUnit \ +static_assert(alignof(FRigVMFunction_MathVectorUnit) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorUnit"); \ +static_assert(sizeof(FRigVMFunction_MathVectorUnit) == 0x000038, "Wrong size on FRigVMFunction_MathVectorUnit"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorClampLength \ +static_assert(alignof(FRigVMFunction_MathVectorClampLength) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorClampLength"); \ +static_assert(sizeof(FRigVMFunction_MathVectorClampLength) == 0x000040, "Wrong size on FRigVMFunction_MathVectorClampLength"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampLength, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorClampLength::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampLength, MinimumLength) == 0x000020, "Member 'FRigVMFunction_MathVectorClampLength::MinimumLength' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampLength, MaximumLength) == 0x000024, "Member 'FRigVMFunction_MathVectorClampLength::MaximumLength' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampLength, Result) == 0x000028, "Member 'FRigVMFunction_MathVectorClampLength::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorAngle \ +static_assert(alignof(FRigVMFunction_MathVectorAngle) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorAngle"); \ +static_assert(sizeof(FRigVMFunction_MathVectorAngle) == 0x000040, "Wrong size on FRigVMFunction_MathVectorAngle"); \ +static_assert(offsetof(FRigVMFunction_MathVectorAngle, A) == 0x000008, "Member 'FRigVMFunction_MathVectorAngle::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorAngle, B) == 0x000020, "Member 'FRigVMFunction_MathVectorAngle::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorAngle, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorAngle::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorParallel \ +static_assert(alignof(FRigVMFunction_MathVectorParallel) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorParallel"); \ +static_assert(sizeof(FRigVMFunction_MathVectorParallel) == 0x000040, "Wrong size on FRigVMFunction_MathVectorParallel"); \ +static_assert(offsetof(FRigVMFunction_MathVectorParallel, A) == 0x000008, "Member 'FRigVMFunction_MathVectorParallel::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorParallel, B) == 0x000020, "Member 'FRigVMFunction_MathVectorParallel::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorParallel, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorParallel::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorOrthogonal \ +static_assert(alignof(FRigVMFunction_MathVectorOrthogonal) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorOrthogonal"); \ +static_assert(sizeof(FRigVMFunction_MathVectorOrthogonal) == 0x000040, "Wrong size on FRigVMFunction_MathVectorOrthogonal"); \ +static_assert(offsetof(FRigVMFunction_MathVectorOrthogonal, A) == 0x000008, "Member 'FRigVMFunction_MathVectorOrthogonal::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorOrthogonal, B) == 0x000020, "Member 'FRigVMFunction_MathVectorOrthogonal::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorOrthogonal, Result) == 0x000038, "Member 'FRigVMFunction_MathVectorOrthogonal::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFourPointBezier \ +static_assert(alignof(FRigVMFourPointBezier) == 0x000008, "Wrong alignment on FRigVMFourPointBezier"); \ +static_assert(sizeof(FRigVMFourPointBezier) == 0x000060, "Wrong size on FRigVMFourPointBezier"); \ +static_assert(offsetof(FRigVMFourPointBezier, A) == 0x000000, "Member 'FRigVMFourPointBezier::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFourPointBezier, B) == 0x000018, "Member 'FRigVMFourPointBezier::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFourPointBezier, C) == 0x000030, "Member 'FRigVMFourPointBezier::C' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFourPointBezier, D) == 0x000048, "Member 'FRigVMFourPointBezier::D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorBezierFourPoint \ +static_assert(alignof(FRigVMFunction_MathVectorBezierFourPoint) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorBezierFourPoint"); \ +static_assert(sizeof(FRigVMFunction_MathVectorBezierFourPoint) == 0x0000A0, "Wrong size on FRigVMFunction_MathVectorBezierFourPoint"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBezierFourPoint, Bezier) == 0x000008, "Member 'FRigVMFunction_MathVectorBezierFourPoint::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBezierFourPoint, T) == 0x000068, "Member 'FRigVMFunction_MathVectorBezierFourPoint::T' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBezierFourPoint, Result) == 0x000070, "Member 'FRigVMFunction_MathVectorBezierFourPoint::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorBezierFourPoint, Tangent) == 0x000088, "Member 'FRigVMFunction_MathVectorBezierFourPoint::Tangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMakeBezierFourPoint \ +static_assert(alignof(FRigVMFunction_MathVectorMakeBezierFourPoint) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMakeBezierFourPoint"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMakeBezierFourPoint) == 0x000068, "Wrong size on FRigVMFunction_MathVectorMakeBezierFourPoint"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeBezierFourPoint, Bezier) == 0x000008, "Member 'FRigVMFunction_MathVectorMakeBezierFourPoint::Bezier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorClampSpatially \ +static_assert(alignof(FRigVMFunction_MathVectorClampSpatially) == 0x000010, "Wrong alignment on FRigVMFunction_MathVectorClampSpatially"); \ +static_assert(sizeof(FRigVMFunction_MathVectorClampSpatially) == 0x0000C0, "Wrong size on FRigVMFunction_MathVectorClampSpatially"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Value) == 0x000008, "Member 'FRigVMFunction_MathVectorClampSpatially::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Axis) == 0x000020, "Member 'FRigVMFunction_MathVectorClampSpatially::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Type) == 0x000021, "Member 'FRigVMFunction_MathVectorClampSpatially::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Minimum) == 0x000024, "Member 'FRigVMFunction_MathVectorClampSpatially::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Maximum) == 0x000028, "Member 'FRigVMFunction_MathVectorClampSpatially::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Space) == 0x000030, "Member 'FRigVMFunction_MathVectorClampSpatially::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, bDrawDebug) == 0x000090, "Member 'FRigVMFunction_MathVectorClampSpatially::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, DebugColor) == 0x000094, "Member 'FRigVMFunction_MathVectorClampSpatially::DebugColor' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, DebugThickness) == 0x0000A4, "Member 'FRigVMFunction_MathVectorClampSpatially::DebugThickness' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorClampSpatially, Result) == 0x0000A8, "Member 'FRigVMFunction_MathVectorClampSpatially::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathIntersectPlane \ +static_assert(alignof(FRigVMFunction_MathIntersectPlane) == 0x000008, "Wrong alignment on FRigVMFunction_MathIntersectPlane"); \ +static_assert(sizeof(FRigVMFunction_MathIntersectPlane) == 0x000088, "Wrong size on FRigVMFunction_MathIntersectPlane"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, Start) == 0x000008, "Member 'FRigVMFunction_MathIntersectPlane::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, Direction) == 0x000020, "Member 'FRigVMFunction_MathIntersectPlane::Direction' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, PlanePoint) == 0x000038, "Member 'FRigVMFunction_MathIntersectPlane::PlanePoint' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, PlaneNormal) == 0x000050, "Member 'FRigVMFunction_MathIntersectPlane::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, Result) == 0x000068, "Member 'FRigVMFunction_MathIntersectPlane::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathIntersectPlane, Distance) == 0x000080, "Member 'FRigVMFunction_MathIntersectPlane::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathDistanceToPlane \ +static_assert(alignof(FRigVMFunction_MathDistanceToPlane) == 0x000008, "Wrong alignment on FRigVMFunction_MathDistanceToPlane"); \ +static_assert(sizeof(FRigVMFunction_MathDistanceToPlane) == 0x000070, "Wrong size on FRigVMFunction_MathDistanceToPlane"); \ +static_assert(offsetof(FRigVMFunction_MathDistanceToPlane, Point) == 0x000008, "Member 'FRigVMFunction_MathDistanceToPlane::Point' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDistanceToPlane, PlanePoint) == 0x000020, "Member 'FRigVMFunction_MathDistanceToPlane::PlanePoint' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDistanceToPlane, PlaneNormal) == 0x000038, "Member 'FRigVMFunction_MathDistanceToPlane::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDistanceToPlane, ClosestPointOnPlane) == 0x000050, "Member 'FRigVMFunction_MathDistanceToPlane::ClosestPointOnPlane' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathDistanceToPlane, SignedDistance) == 0x000068, "Member 'FRigVMFunction_MathDistanceToPlane::SignedDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMakeRelative \ +static_assert(alignof(FRigVMFunction_MathVectorMakeRelative) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMakeRelative"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMakeRelative) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMakeRelative"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeRelative, Global) == 0x000008, "Member 'FRigVMFunction_MathVectorMakeRelative::Global' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeRelative, Parent) == 0x000020, "Member 'FRigVMFunction_MathVectorMakeRelative::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeRelative, Local) == 0x000038, "Member 'FRigVMFunction_MathVectorMakeRelative::Local' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorMakeAbsolute \ +static_assert(alignof(FRigVMFunction_MathVectorMakeAbsolute) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorMakeAbsolute"); \ +static_assert(sizeof(FRigVMFunction_MathVectorMakeAbsolute) == 0x000050, "Wrong size on FRigVMFunction_MathVectorMakeAbsolute"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeAbsolute, Local) == 0x000008, "Member 'FRigVMFunction_MathVectorMakeAbsolute::Local' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeAbsolute, Parent) == 0x000020, "Member 'FRigVMFunction_MathVectorMakeAbsolute::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorMakeAbsolute, Global) == 0x000038, "Member 'FRigVMFunction_MathVectorMakeAbsolute::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorArraySum \ +static_assert(alignof(FRigVMFunction_MathVectorArraySum) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorArraySum"); \ +static_assert(sizeof(FRigVMFunction_MathVectorArraySum) == 0x000030, "Wrong size on FRigVMFunction_MathVectorArraySum"); \ +static_assert(offsetof(FRigVMFunction_MathVectorArraySum, Array) == 0x000008, "Member 'FRigVMFunction_MathVectorArraySum::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorArraySum, Sum) == 0x000018, "Member 'FRigVMFunction_MathVectorArraySum::Sum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_MathVectorArrayAverage \ +static_assert(alignof(FRigVMFunction_MathVectorArrayAverage) == 0x000008, "Wrong alignment on FRigVMFunction_MathVectorArrayAverage"); \ +static_assert(sizeof(FRigVMFunction_MathVectorArrayAverage) == 0x000030, "Wrong size on FRigVMFunction_MathVectorArrayAverage"); \ +static_assert(offsetof(FRigVMFunction_MathVectorArrayAverage, Array) == 0x000008, "Member 'FRigVMFunction_MathVectorArrayAverage::Array' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_MathVectorArrayAverage, Average) == 0x000018, "Member 'FRigVMFunction_MathVectorArrayAverage::Average' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NoiseFloat \ +static_assert(alignof(FRigVMFunction_NoiseFloat) == 0x000008, "Wrong alignment on FRigVMFunction_NoiseFloat"); \ +static_assert(sizeof(FRigVMFunction_NoiseFloat) == 0x000028, "Wrong size on FRigVMFunction_NoiseFloat"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Value) == 0x000008, "Member 'FRigVMFunction_NoiseFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Speed) == 0x00000C, "Member 'FRigVMFunction_NoiseFloat::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Frequency) == 0x000010, "Member 'FRigVMFunction_NoiseFloat::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Minimum) == 0x000014, "Member 'FRigVMFunction_NoiseFloat::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Maximum) == 0x000018, "Member 'FRigVMFunction_NoiseFloat::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Result) == 0x00001C, "Member 'FRigVMFunction_NoiseFloat::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseFloat, Time) == 0x000020, "Member 'FRigVMFunction_NoiseFloat::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NoiseDouble \ +static_assert(alignof(FRigVMFunction_NoiseDouble) == 0x000008, "Wrong alignment on FRigVMFunction_NoiseDouble"); \ +static_assert(sizeof(FRigVMFunction_NoiseDouble) == 0x000040, "Wrong size on FRigVMFunction_NoiseDouble"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Value) == 0x000008, "Member 'FRigVMFunction_NoiseDouble::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Speed) == 0x000010, "Member 'FRigVMFunction_NoiseDouble::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Frequency) == 0x000018, "Member 'FRigVMFunction_NoiseDouble::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Minimum) == 0x000020, "Member 'FRigVMFunction_NoiseDouble::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Maximum) == 0x000028, "Member 'FRigVMFunction_NoiseDouble::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Result) == 0x000030, "Member 'FRigVMFunction_NoiseDouble::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseDouble, Time) == 0x000038, "Member 'FRigVMFunction_NoiseDouble::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NoiseVector \ +static_assert(alignof(FRigVMFunction_NoiseVector) == 0x000008, "Wrong alignment on FRigVMFunction_NoiseVector"); \ +static_assert(sizeof(FRigVMFunction_NoiseVector) == 0x000088, "Wrong size on FRigVMFunction_NoiseVector"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Position) == 0x000008, "Member 'FRigVMFunction_NoiseVector::Position' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Speed) == 0x000020, "Member 'FRigVMFunction_NoiseVector::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Frequency) == 0x000038, "Member 'FRigVMFunction_NoiseVector::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Minimum) == 0x000050, "Member 'FRigVMFunction_NoiseVector::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Maximum) == 0x000054, "Member 'FRigVMFunction_NoiseVector::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Result) == 0x000058, "Member 'FRigVMFunction_NoiseVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector, Time) == 0x000070, "Member 'FRigVMFunction_NoiseVector::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NoiseVector2 \ +static_assert(alignof(FRigVMFunction_NoiseVector2) == 0x000008, "Wrong alignment on FRigVMFunction_NoiseVector2"); \ +static_assert(sizeof(FRigVMFunction_NoiseVector2) == 0x000090, "Wrong size on FRigVMFunction_NoiseVector2"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Value) == 0x000008, "Member 'FRigVMFunction_NoiseVector2::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Speed) == 0x000020, "Member 'FRigVMFunction_NoiseVector2::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Frequency) == 0x000038, "Member 'FRigVMFunction_NoiseVector2::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Minimum) == 0x000050, "Member 'FRigVMFunction_NoiseVector2::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Maximum) == 0x000058, "Member 'FRigVMFunction_NoiseVector2::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Result) == 0x000060, "Member 'FRigVMFunction_NoiseVector2::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NoiseVector2, Time) == 0x000078, "Member 'FRigVMFunction_NoiseVector2::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_RandomFloat \ +static_assert(alignof(FRigVMFunction_RandomFloat) == 0x000008, "Wrong alignment on FRigVMFunction_RandomFloat"); \ +static_assert(sizeof(FRigVMFunction_RandomFloat) == 0x000030, "Wrong size on FRigVMFunction_RandomFloat"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, Seed) == 0x000008, "Member 'FRigVMFunction_RandomFloat::Seed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, Minimum) == 0x00000C, "Member 'FRigVMFunction_RandomFloat::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, Maximum) == 0x000010, "Member 'FRigVMFunction_RandomFloat::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, Duration) == 0x000014, "Member 'FRigVMFunction_RandomFloat::Duration' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, Result) == 0x000018, "Member 'FRigVMFunction_RandomFloat::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, LastResult) == 0x00001C, "Member 'FRigVMFunction_RandomFloat::LastResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, LastSeed) == 0x000020, "Member 'FRigVMFunction_RandomFloat::LastSeed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, BaseSeed) == 0x000024, "Member 'FRigVMFunction_RandomFloat::BaseSeed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_RandomFloat, TimeLeft) == 0x000028, "Member 'FRigVMFunction_RandomFloat::TimeLeft' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMMirrorSettings \ +static_assert(alignof(FRigVMMirrorSettings) == 0x000008, "Wrong alignment on FRigVMMirrorSettings"); \ +static_assert(sizeof(FRigVMMirrorSettings) == 0x000028, "Wrong size on FRigVMMirrorSettings"); \ +static_assert(offsetof(FRigVMMirrorSettings, MirrorAxis) == 0x000000, "Member 'FRigVMMirrorSettings::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMirrorSettings, AxisToFlip) == 0x000001, "Member 'FRigVMMirrorSettings::AxisToFlip' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMirrorSettings, SearchString) == 0x000008, "Member 'FRigVMMirrorSettings::SearchString' has a wrong offset!"); \ +static_assert(offsetof(FRigVMMirrorSettings, ReplaceString) == 0x000018, "Member 'FRigVMMirrorSettings::ReplaceString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayMake \ +static_assert(alignof(FRigVMDispatch_ArrayMake) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayMake"); \ +static_assert(sizeof(FRigVMDispatch_ArrayMake) == 0x000070, "Wrong size on FRigVMDispatch_ArrayMake"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayReset \ +static_assert(alignof(FRigVMDispatch_ArrayReset) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayReset"); \ +static_assert(sizeof(FRigVMDispatch_ArrayReset) == 0x000070, "Wrong size on FRigVMDispatch_ArrayReset"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArraySetNum \ +static_assert(alignof(FRigVMDispatch_ArraySetNum) == 0x000008, "Wrong alignment on FRigVMDispatch_ArraySetNum"); \ +static_assert(sizeof(FRigVMDispatch_ArraySetNum) == 0x000070, "Wrong size on FRigVMDispatch_ArraySetNum"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayGetAtIndex \ +static_assert(alignof(FRigVMDispatch_ArrayGetAtIndex) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayGetAtIndex"); \ +static_assert(sizeof(FRigVMDispatch_ArrayGetAtIndex) == 0x000070, "Wrong size on FRigVMDispatch_ArrayGetAtIndex"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArraySetAtIndex \ +static_assert(alignof(FRigVMDispatch_ArraySetAtIndex) == 0x000008, "Wrong alignment on FRigVMDispatch_ArraySetAtIndex"); \ +static_assert(sizeof(FRigVMDispatch_ArraySetAtIndex) == 0x000070, "Wrong size on FRigVMDispatch_ArraySetAtIndex"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayAdd \ +static_assert(alignof(FRigVMDispatch_ArrayAdd) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayAdd"); \ +static_assert(sizeof(FRigVMDispatch_ArrayAdd) == 0x000070, "Wrong size on FRigVMDispatch_ArrayAdd"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayInsert \ +static_assert(alignof(FRigVMDispatch_ArrayInsert) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayInsert"); \ +static_assert(sizeof(FRigVMDispatch_ArrayInsert) == 0x000070, "Wrong size on FRigVMDispatch_ArrayInsert"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayReverse \ +static_assert(alignof(FRigVMDispatch_ArrayReverse) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayReverse"); \ +static_assert(sizeof(FRigVMDispatch_ArrayReverse) == 0x000070, "Wrong size on FRigVMDispatch_ArrayReverse"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayAppend \ +static_assert(alignof(FRigVMDispatch_ArrayAppend) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayAppend"); \ +static_assert(sizeof(FRigVMDispatch_ArrayAppend) == 0x000070, "Wrong size on FRigVMDispatch_ArrayAppend"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayUnion \ +static_assert(alignof(FRigVMDispatch_ArrayUnion) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayUnion"); \ +static_assert(sizeof(FRigVMDispatch_ArrayUnion) == 0x000070, "Wrong size on FRigVMDispatch_ArrayUnion"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_ArrayIntersection \ +static_assert(alignof(FRigVMDispatch_ArrayIntersection) == 0x000008, "Wrong alignment on FRigVMDispatch_ArrayIntersection"); \ +static_assert(sizeof(FRigVMDispatch_ArrayIntersection) == 0x000070, "Wrong size on FRigVMDispatch_ArrayIntersection"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_Constant \ +static_assert(alignof(FRigVMDispatch_Constant) == 0x000008, "Wrong alignment on FRigVMDispatch_Constant"); \ +static_assert(sizeof(FRigVMDispatch_Constant) == 0x000070, "Wrong size on FRigVMDispatch_Constant"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_CoreNotEquals \ +static_assert(alignof(FRigVMDispatch_CoreNotEquals) == 0x000008, "Wrong alignment on FRigVMDispatch_CoreNotEquals"); \ +static_assert(sizeof(FRigVMDispatch_CoreNotEquals) == 0x000070, "Wrong size on FRigVMDispatch_CoreNotEquals"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_Print \ +static_assert(alignof(FRigVMDispatch_Print) == 0x000008, "Wrong alignment on FRigVMDispatch_Print"); \ +static_assert(sizeof(FRigVMDispatch_Print) == 0x000070, "Wrong size on FRigVMDispatch_Print"); \ + +#define DUMPER7_ASSERTS_FRigVMDispatch_SwitchInt32 \ +static_assert(alignof(FRigVMDispatch_SwitchInt32) == 0x000008, "Wrong alignment on FRigVMDispatch_SwitchInt32"); \ +static_assert(sizeof(FRigVMDispatch_SwitchInt32) == 0x000070, "Wrong size on FRigVMDispatch_SwitchInt32"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_ControlFlowBranch \ +static_assert(alignof(FRigVMFunction_ControlFlowBranch) == 0x000010, "Wrong alignment on FRigVMFunction_ControlFlowBranch"); \ +static_assert(sizeof(FRigVMFunction_ControlFlowBranch) == 0x0003F0, "Wrong size on FRigVMFunction_ControlFlowBranch"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, ExecuteContext) == 0x000010, "Member 'FRigVMFunction_ControlFlowBranch::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, Condition) == 0x000100, "Member 'FRigVMFunction_ControlFlowBranch::Condition' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, TRUE_0) == 0x000110, "Member 'FRigVMFunction_ControlFlowBranch::TRUE_0' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, FALSE_0) == 0x000200, "Member 'FRigVMFunction_ControlFlowBranch::FALSE_0' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, Completed) == 0x0002F0, "Member 'FRigVMFunction_ControlFlowBranch::Completed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_ControlFlowBranch, BlockToRun) == 0x0003E0, "Member 'FRigVMFunction_ControlFlowBranch::BlockToRun' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NameConcat \ +static_assert(alignof(FRigVMFunction_NameConcat) == 0x000008, "Wrong alignment on FRigVMFunction_NameConcat"); \ +static_assert(sizeof(FRigVMFunction_NameConcat) == 0x000020, "Wrong size on FRigVMFunction_NameConcat"); \ +static_assert(offsetof(FRigVMFunction_NameConcat, A) == 0x000008, "Member 'FRigVMFunction_NameConcat::A' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameConcat, B) == 0x000010, "Member 'FRigVMFunction_NameConcat::B' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameConcat, Result) == 0x000018, "Member 'FRigVMFunction_NameConcat::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_NameReplace \ +static_assert(alignof(FRigVMFunction_NameReplace) == 0x000008, "Wrong alignment on FRigVMFunction_NameReplace"); \ +static_assert(sizeof(FRigVMFunction_NameReplace) == 0x000028, "Wrong size on FRigVMFunction_NameReplace"); \ +static_assert(offsetof(FRigVMFunction_NameReplace, Name) == 0x000008, "Member 'FRigVMFunction_NameReplace::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameReplace, Old) == 0x000010, "Member 'FRigVMFunction_NameReplace::Old' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameReplace, New) == 0x000018, "Member 'FRigVMFunction_NameReplace::New' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_NameReplace, Result) == 0x000020, "Member 'FRigVMFunction_NameReplace::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StartsWith \ +static_assert(alignof(FRigVMFunction_StartsWith) == 0x000008, "Wrong alignment on FRigVMFunction_StartsWith"); \ +static_assert(sizeof(FRigVMFunction_StartsWith) == 0x000020, "Wrong size on FRigVMFunction_StartsWith"); \ +static_assert(offsetof(FRigVMFunction_StartsWith, Name) == 0x000008, "Member 'FRigVMFunction_StartsWith::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StartsWith, Start) == 0x000010, "Member 'FRigVMFunction_StartsWith::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StartsWith, Result) == 0x000018, "Member 'FRigVMFunction_StartsWith::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringTruncate \ +static_assert(alignof(FRigVMFunction_StringTruncate) == 0x000008, "Wrong alignment on FRigVMFunction_StringTruncate"); \ +static_assert(sizeof(FRigVMFunction_StringTruncate) == 0x000040, "Wrong size on FRigVMFunction_StringTruncate"); \ +static_assert(offsetof(FRigVMFunction_StringTruncate, Name) == 0x000008, "Member 'FRigVMFunction_StringTruncate::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringTruncate, Count) == 0x000018, "Member 'FRigVMFunction_StringTruncate::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringTruncate, FromEnd) == 0x00001C, "Member 'FRigVMFunction_StringTruncate::FromEnd' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringTruncate, Remainder) == 0x000020, "Member 'FRigVMFunction_StringTruncate::Remainder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringTruncate, Chopped) == 0x000030, "Member 'FRigVMFunction_StringTruncate::Chopped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringEndsWith \ +static_assert(alignof(FRigVMFunction_StringEndsWith) == 0x000008, "Wrong alignment on FRigVMFunction_StringEndsWith"); \ +static_assert(sizeof(FRigVMFunction_StringEndsWith) == 0x000030, "Wrong size on FRigVMFunction_StringEndsWith"); \ +static_assert(offsetof(FRigVMFunction_StringEndsWith, Name) == 0x000008, "Member 'FRigVMFunction_StringEndsWith::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringEndsWith, Ending) == 0x000018, "Member 'FRigVMFunction_StringEndsWith::Ending' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringEndsWith, Result) == 0x000028, "Member 'FRigVMFunction_StringEndsWith::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringContains \ +static_assert(alignof(FRigVMFunction_StringContains) == 0x000008, "Wrong alignment on FRigVMFunction_StringContains"); \ +static_assert(sizeof(FRigVMFunction_StringContains) == 0x000030, "Wrong size on FRigVMFunction_StringContains"); \ +static_assert(offsetof(FRigVMFunction_StringContains, Name) == 0x000008, "Member 'FRigVMFunction_StringContains::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringContains, Search) == 0x000018, "Member 'FRigVMFunction_StringContains::Search' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringContains, Result) == 0x000028, "Member 'FRigVMFunction_StringContains::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringTrimWhitespace \ +static_assert(alignof(FRigVMFunction_StringTrimWhitespace) == 0x000008, "Wrong alignment on FRigVMFunction_StringTrimWhitespace"); \ +static_assert(sizeof(FRigVMFunction_StringTrimWhitespace) == 0x000028, "Wrong size on FRigVMFunction_StringTrimWhitespace"); \ +static_assert(offsetof(FRigVMFunction_StringTrimWhitespace, Value) == 0x000008, "Member 'FRigVMFunction_StringTrimWhitespace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringTrimWhitespace, Result) == 0x000018, "Member 'FRigVMFunction_StringTrimWhitespace::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringToLowercase \ +static_assert(alignof(FRigVMFunction_StringToLowercase) == 0x000008, "Wrong alignment on FRigVMFunction_StringToLowercase"); \ +static_assert(sizeof(FRigVMFunction_StringToLowercase) == 0x000028, "Wrong size on FRigVMFunction_StringToLowercase"); \ +static_assert(offsetof(FRigVMFunction_StringToLowercase, Value) == 0x000008, "Member 'FRigVMFunction_StringToLowercase::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringToLowercase, Result) == 0x000018, "Member 'FRigVMFunction_StringToLowercase::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringLeft \ +static_assert(alignof(FRigVMFunction_StringLeft) == 0x000008, "Wrong alignment on FRigVMFunction_StringLeft"); \ +static_assert(sizeof(FRigVMFunction_StringLeft) == 0x000030, "Wrong size on FRigVMFunction_StringLeft"); \ +static_assert(offsetof(FRigVMFunction_StringLeft, Value) == 0x000008, "Member 'FRigVMFunction_StringLeft::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringLeft, Count) == 0x000018, "Member 'FRigVMFunction_StringLeft::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringLeft, Result) == 0x000020, "Member 'FRigVMFunction_StringLeft::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringMiddle \ +static_assert(alignof(FRigVMFunction_StringMiddle) == 0x000008, "Wrong alignment on FRigVMFunction_StringMiddle"); \ +static_assert(sizeof(FRigVMFunction_StringMiddle) == 0x000030, "Wrong size on FRigVMFunction_StringMiddle"); \ +static_assert(offsetof(FRigVMFunction_StringMiddle, Value) == 0x000008, "Member 'FRigVMFunction_StringMiddle::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringMiddle, Start) == 0x000018, "Member 'FRigVMFunction_StringMiddle::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringMiddle, Count) == 0x00001C, "Member 'FRigVMFunction_StringMiddle::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringMiddle, Result) == 0x000020, "Member 'FRigVMFunction_StringMiddle::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringSplit \ +static_assert(alignof(FRigVMFunction_StringSplit) == 0x000008, "Wrong alignment on FRigVMFunction_StringSplit"); \ +static_assert(sizeof(FRigVMFunction_StringSplit) == 0x000038, "Wrong size on FRigVMFunction_StringSplit"); \ +static_assert(offsetof(FRigVMFunction_StringSplit, Value) == 0x000008, "Member 'FRigVMFunction_StringSplit::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringSplit, Separator) == 0x000018, "Member 'FRigVMFunction_StringSplit::Separator' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringSplit, Result) == 0x000028, "Member 'FRigVMFunction_StringSplit::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_StringPadInteger \ +static_assert(alignof(FRigVMFunction_StringPadInteger) == 0x000008, "Wrong alignment on FRigVMFunction_StringPadInteger"); \ +static_assert(sizeof(FRigVMFunction_StringPadInteger) == 0x000020, "Wrong size on FRigVMFunction_StringPadInteger"); \ +static_assert(offsetof(FRigVMFunction_StringPadInteger, Value) == 0x000008, "Member 'FRigVMFunction_StringPadInteger::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringPadInteger, Digits) == 0x00000C, "Member 'FRigVMFunction_StringPadInteger::Digits' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_StringPadInteger, Result) == 0x000010, "Member 'FRigVMFunction_StringPadInteger::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_FromString \ +static_assert(alignof(FRigDispatch_FromString) == 0x000008, "Wrong alignment on FRigDispatch_FromString"); \ +static_assert(sizeof(FRigDispatch_FromString) == 0x000070, "Wrong size on FRigDispatch_FromString"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateFloatAdd \ +static_assert(alignof(FRigVMFunction_AccumulateFloatAdd) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateFloatAdd"); \ +static_assert(sizeof(FRigVMFunction_AccumulateFloatAdd) == 0x000020, "Wrong size on FRigVMFunction_AccumulateFloatAdd"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, Increment) == 0x000008, "Member 'FRigVMFunction_AccumulateFloatAdd::Increment' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, InitialValue) == 0x00000C, "Member 'FRigVMFunction_AccumulateFloatAdd::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, bIntegrateDeltaTime) == 0x000010, "Member 'FRigVMFunction_AccumulateFloatAdd::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, Result) == 0x000014, "Member 'FRigVMFunction_AccumulateFloatAdd::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, AccumulatedValue) == 0x000018, "Member 'FRigVMFunction_AccumulateFloatAdd::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatAdd, bIsInitialized) == 0x00001C, "Member 'FRigVMFunction_AccumulateFloatAdd::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateFloatMul \ +static_assert(alignof(FRigVMFunction_AccumulateFloatMul) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateFloatMul"); \ +static_assert(sizeof(FRigVMFunction_AccumulateFloatMul) == 0x000020, "Wrong size on FRigVMFunction_AccumulateFloatMul"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, Multiplier) == 0x000008, "Member 'FRigVMFunction_AccumulateFloatMul::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, InitialValue) == 0x00000C, "Member 'FRigVMFunction_AccumulateFloatMul::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, bIntegrateDeltaTime) == 0x000010, "Member 'FRigVMFunction_AccumulateFloatMul::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, Result) == 0x000014, "Member 'FRigVMFunction_AccumulateFloatMul::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, AccumulatedValue) == 0x000018, "Member 'FRigVMFunction_AccumulateFloatMul::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatMul, bIsInitialized) == 0x00001C, "Member 'FRigVMFunction_AccumulateFloatMul::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateQuatMul \ +static_assert(alignof(FRigVMFunction_AccumulateQuatMul) == 0x000010, "Wrong alignment on FRigVMFunction_AccumulateQuatMul"); \ +static_assert(sizeof(FRigVMFunction_AccumulateQuatMul) == 0x0000B0, "Wrong size on FRigVMFunction_AccumulateQuatMul"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, Multiplier) == 0x000010, "Member 'FRigVMFunction_AccumulateQuatMul::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, InitialValue) == 0x000030, "Member 'FRigVMFunction_AccumulateQuatMul::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, bFlipOrder) == 0x000050, "Member 'FRigVMFunction_AccumulateQuatMul::bFlipOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, bIntegrateDeltaTime) == 0x000051, "Member 'FRigVMFunction_AccumulateQuatMul::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, Result) == 0x000060, "Member 'FRigVMFunction_AccumulateQuatMul::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, AccumulatedValue) == 0x000080, "Member 'FRigVMFunction_AccumulateQuatMul::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatMul, bIsInitialized) == 0x0000A0, "Member 'FRigVMFunction_AccumulateQuatMul::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateFloatLerp \ +static_assert(alignof(FRigVMFunction_AccumulateFloatLerp) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateFloatLerp"); \ +static_assert(sizeof(FRigVMFunction_AccumulateFloatLerp) == 0x000028, "Wrong size on FRigVMFunction_AccumulateFloatLerp"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, TargetValue) == 0x000008, "Member 'FRigVMFunction_AccumulateFloatLerp::TargetValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, InitialValue) == 0x00000C, "Member 'FRigVMFunction_AccumulateFloatLerp::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, Blend) == 0x000010, "Member 'FRigVMFunction_AccumulateFloatLerp::Blend' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, bIntegrateDeltaTime) == 0x000014, "Member 'FRigVMFunction_AccumulateFloatLerp::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, Result) == 0x000018, "Member 'FRigVMFunction_AccumulateFloatLerp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, AccumulatedValue) == 0x00001C, "Member 'FRigVMFunction_AccumulateFloatLerp::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatLerp, bIsInitialized) == 0x000020, "Member 'FRigVMFunction_AccumulateFloatLerp::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateQuatLerp \ +static_assert(alignof(FRigVMFunction_AccumulateQuatLerp) == 0x000010, "Wrong alignment on FRigVMFunction_AccumulateQuatLerp"); \ +static_assert(sizeof(FRigVMFunction_AccumulateQuatLerp) == 0x0000B0, "Wrong size on FRigVMFunction_AccumulateQuatLerp"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, TargetValue) == 0x000010, "Member 'FRigVMFunction_AccumulateQuatLerp::TargetValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, InitialValue) == 0x000030, "Member 'FRigVMFunction_AccumulateQuatLerp::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, Blend) == 0x000050, "Member 'FRigVMFunction_AccumulateQuatLerp::Blend' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, bIntegrateDeltaTime) == 0x000054, "Member 'FRigVMFunction_AccumulateQuatLerp::bIntegrateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, Result) == 0x000060, "Member 'FRigVMFunction_AccumulateQuatLerp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, AccumulatedValue) == 0x000080, "Member 'FRigVMFunction_AccumulateQuatLerp::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateQuatLerp, bIsInitialized) == 0x0000A0, "Member 'FRigVMFunction_AccumulateQuatLerp::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AccumulateFloatRange \ +static_assert(alignof(FRigVMFunction_AccumulateFloatRange) == 0x000008, "Wrong alignment on FRigVMFunction_AccumulateFloatRange"); \ +static_assert(sizeof(FRigVMFunction_AccumulateFloatRange) == 0x000020, "Wrong size on FRigVMFunction_AccumulateFloatRange"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, Value) == 0x000008, "Member 'FRigVMFunction_AccumulateFloatRange::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, Minimum) == 0x00000C, "Member 'FRigVMFunction_AccumulateFloatRange::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, Maximum) == 0x000010, "Member 'FRigVMFunction_AccumulateFloatRange::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, AccumulatedMinimum) == 0x000014, "Member 'FRigVMFunction_AccumulateFloatRange::AccumulatedMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, AccumulatedMaximum) == 0x000018, "Member 'FRigVMFunction_AccumulateFloatRange::AccumulatedMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AccumulateFloatRange, bIsInitialized) == 0x00001C, "Member 'FRigVMFunction_AccumulateFloatRange::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AlphaInterp \ +static_assert(alignof(FRigVMFunction_AlphaInterp) == 0x000008, "Wrong alignment on FRigVMFunction_AlphaInterp"); \ +static_assert(sizeof(FRigVMFunction_AlphaInterp) == 0x000078, "Wrong size on FRigVMFunction_AlphaInterp"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, Value) == 0x000008, "Member 'FRigVMFunction_AlphaInterp::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, Scale) == 0x00000C, "Member 'FRigVMFunction_AlphaInterp::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, Bias) == 0x000010, "Member 'FRigVMFunction_AlphaInterp::Bias' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, bMapRange) == 0x000014, "Member 'FRigVMFunction_AlphaInterp::bMapRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, InRange) == 0x000018, "Member 'FRigVMFunction_AlphaInterp::InRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, OutRange) == 0x000020, "Member 'FRigVMFunction_AlphaInterp::OutRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, bClampResult) == 0x000028, "Member 'FRigVMFunction_AlphaInterp::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, ClampMin) == 0x00002C, "Member 'FRigVMFunction_AlphaInterp::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, ClampMax) == 0x000030, "Member 'FRigVMFunction_AlphaInterp::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, bInterpResult) == 0x000034, "Member 'FRigVMFunction_AlphaInterp::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, InterpSpeedIncreasing) == 0x000038, "Member 'FRigVMFunction_AlphaInterp::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, InterpSpeedDecreasing) == 0x00003C, "Member 'FRigVMFunction_AlphaInterp::InterpSpeedDecreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, Result) == 0x000040, "Member 'FRigVMFunction_AlphaInterp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterp, ScaleBiasClamp) == 0x000044, "Member 'FRigVMFunction_AlphaInterp::ScaleBiasClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_AlphaInterpQuat \ +static_assert(alignof(FRigVMFunction_AlphaInterpQuat) == 0x000010, "Wrong alignment on FRigVMFunction_AlphaInterpQuat"); \ +static_assert(sizeof(FRigVMFunction_AlphaInterpQuat) == 0x0000C0, "Wrong size on FRigVMFunction_AlphaInterpQuat"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, Value) == 0x000010, "Member 'FRigVMFunction_AlphaInterpQuat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, Scale) == 0x000030, "Member 'FRigVMFunction_AlphaInterpQuat::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, Bias) == 0x000034, "Member 'FRigVMFunction_AlphaInterpQuat::Bias' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, bMapRange) == 0x000038, "Member 'FRigVMFunction_AlphaInterpQuat::bMapRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, InRange) == 0x00003C, "Member 'FRigVMFunction_AlphaInterpQuat::InRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, OutRange) == 0x000044, "Member 'FRigVMFunction_AlphaInterpQuat::OutRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, bClampResult) == 0x00004C, "Member 'FRigVMFunction_AlphaInterpQuat::bClampResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, ClampMin) == 0x000050, "Member 'FRigVMFunction_AlphaInterpQuat::ClampMin' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, ClampMax) == 0x000054, "Member 'FRigVMFunction_AlphaInterpQuat::ClampMax' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, bInterpResult) == 0x000058, "Member 'FRigVMFunction_AlphaInterpQuat::bInterpResult' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, InterpSpeedIncreasing) == 0x00005C, "Member 'FRigVMFunction_AlphaInterpQuat::InterpSpeedIncreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, InterpSpeedDecreasing) == 0x000060, "Member 'FRigVMFunction_AlphaInterpQuat::InterpSpeedDecreasing' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, Result) == 0x000070, "Member 'FRigVMFunction_AlphaInterpQuat::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_AlphaInterpQuat, ScaleBiasClamp) == 0x000090, "Member 'FRigVMFunction_AlphaInterpQuat::ScaleBiasClamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DeltaFromPreviousVector \ +static_assert(alignof(FRigVMFunction_DeltaFromPreviousVector) == 0x000008, "Wrong alignment on FRigVMFunction_DeltaFromPreviousVector"); \ +static_assert(sizeof(FRigVMFunction_DeltaFromPreviousVector) == 0x000070, "Wrong size on FRigVMFunction_DeltaFromPreviousVector"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousVector, Value) == 0x000008, "Member 'FRigVMFunction_DeltaFromPreviousVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousVector, Delta) == 0x000020, "Member 'FRigVMFunction_DeltaFromPreviousVector::Delta' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousVector, PreviousValue) == 0x000038, "Member 'FRigVMFunction_DeltaFromPreviousVector::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousVector, Cache) == 0x000050, "Member 'FRigVMFunction_DeltaFromPreviousVector::Cache' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousVector, bIsInitialized) == 0x000068, "Member 'FRigVMFunction_DeltaFromPreviousVector::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_DeltaFromPreviousTransform \ +static_assert(alignof(FRigVMFunction_DeltaFromPreviousTransform) == 0x000010, "Wrong alignment on FRigVMFunction_DeltaFromPreviousTransform"); \ +static_assert(sizeof(FRigVMFunction_DeltaFromPreviousTransform) == 0x0001A0, "Wrong size on FRigVMFunction_DeltaFromPreviousTransform"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousTransform, Value) == 0x000010, "Member 'FRigVMFunction_DeltaFromPreviousTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousTransform, Delta) == 0x000070, "Member 'FRigVMFunction_DeltaFromPreviousTransform::Delta' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousTransform, PreviousValue) == 0x0000D0, "Member 'FRigVMFunction_DeltaFromPreviousTransform::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousTransform, Cache) == 0x000130, "Member 'FRigVMFunction_DeltaFromPreviousTransform::Cache' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_DeltaFromPreviousTransform, bIsInitialized) == 0x000190, "Member 'FRigVMFunction_DeltaFromPreviousTransform::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_KalmanVector \ +static_assert(alignof(FRigVMFunction_KalmanVector) == 0x000008, "Wrong alignment on FRigVMFunction_KalmanVector"); \ +static_assert(sizeof(FRigVMFunction_KalmanVector) == 0x000058, "Wrong size on FRigVMFunction_KalmanVector"); \ +static_assert(offsetof(FRigVMFunction_KalmanVector, Value) == 0x000008, "Member 'FRigVMFunction_KalmanVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanVector, BufferSize) == 0x000020, "Member 'FRigVMFunction_KalmanVector::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanVector, Result) == 0x000028, "Member 'FRigVMFunction_KalmanVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanVector, Buffer) == 0x000040, "Member 'FRigVMFunction_KalmanVector::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_KalmanVector, LastInsertIndex) == 0x000050, "Member 'FRigVMFunction_KalmanVector::LastInsertIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_Timeline \ +static_assert(alignof(FRigVMFunction_Timeline) == 0x000008, "Wrong alignment on FRigVMFunction_Timeline"); \ +static_assert(sizeof(FRigVMFunction_Timeline) == 0x000018, "Wrong size on FRigVMFunction_Timeline"); \ +static_assert(offsetof(FRigVMFunction_Timeline, Speed) == 0x000008, "Member 'FRigVMFunction_Timeline::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Timeline, Time) == 0x00000C, "Member 'FRigVMFunction_Timeline::Time' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Timeline, AccumulatedValue) == 0x000010, "Member 'FRigVMFunction_Timeline::AccumulatedValue' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_Timeline, bIsInitialized) == 0x000014, "Member 'FRigVMFunction_Timeline::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_TimeOffsetFloat \ +static_assert(alignof(FRigVMFunction_TimeOffsetFloat) == 0x000008, "Wrong alignment on FRigVMFunction_TimeOffsetFloat"); \ +static_assert(sizeof(FRigVMFunction_TimeOffsetFloat) == 0x000048, "Wrong size on FRigVMFunction_TimeOffsetFloat"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, Value) == 0x000008, "Member 'FRigVMFunction_TimeOffsetFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, SecondsAgo) == 0x00000C, "Member 'FRigVMFunction_TimeOffsetFloat::SecondsAgo' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, BufferSize) == 0x000010, "Member 'FRigVMFunction_TimeOffsetFloat::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, TimeRange) == 0x000014, "Member 'FRigVMFunction_TimeOffsetFloat::TimeRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, Result) == 0x000018, "Member 'FRigVMFunction_TimeOffsetFloat::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, Buffer) == 0x000020, "Member 'FRigVMFunction_TimeOffsetFloat::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, DeltaTimes) == 0x000030, "Member 'FRigVMFunction_TimeOffsetFloat::DeltaTimes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, LastInsertIndex) == 0x000040, "Member 'FRigVMFunction_TimeOffsetFloat::LastInsertIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetFloat, UpperBound) == 0x000044, "Member 'FRigVMFunction_TimeOffsetFloat::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVMFunction_TimeOffsetTransform \ +static_assert(alignof(FRigVMFunction_TimeOffsetTransform) == 0x000010, "Wrong alignment on FRigVMFunction_TimeOffsetTransform"); \ +static_assert(sizeof(FRigVMFunction_TimeOffsetTransform) == 0x000110, "Wrong size on FRigVMFunction_TimeOffsetTransform"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, Value) == 0x000010, "Member 'FRigVMFunction_TimeOffsetTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, SecondsAgo) == 0x000070, "Member 'FRigVMFunction_TimeOffsetTransform::SecondsAgo' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, BufferSize) == 0x000074, "Member 'FRigVMFunction_TimeOffsetTransform::BufferSize' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, TimeRange) == 0x000078, "Member 'FRigVMFunction_TimeOffsetTransform::TimeRange' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, Result) == 0x000080, "Member 'FRigVMFunction_TimeOffsetTransform::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, Buffer) == 0x0000E0, "Member 'FRigVMFunction_TimeOffsetTransform::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, DeltaTimes) == 0x0000F0, "Member 'FRigVMFunction_TimeOffsetTransform::DeltaTimes' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, LastInsertIndex) == 0x000100, "Member 'FRigVMFunction_TimeOffsetTransform::LastInsertIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigVMFunction_TimeOffsetTransform, UpperBound) == 0x000104, "Member 'FRigVMFunction_TimeOffsetTransform::UpperBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IRigVMGraphFunctionHost \ +static_assert(alignof(IRigVMGraphFunctionHost) == 0x000001, "Wrong alignment on IRigVMGraphFunctionHost"); \ +static_assert(sizeof(IRigVMGraphFunctionHost) == 0x000001, "Wrong size on IRigVMGraphFunctionHost"); \ + +#define DUMPER7_ASSERTS_URigVMBlueprintGeneratedClass \ +static_assert(alignof(URigVMBlueprintGeneratedClass) == 0x000008, "Wrong alignment on URigVMBlueprintGeneratedClass"); \ +static_assert(sizeof(URigVMBlueprintGeneratedClass) == 0x000390, "Wrong size on URigVMBlueprintGeneratedClass"); \ +static_assert(offsetof(URigVMBlueprintGeneratedClass, GraphFunctionStore) == 0x000370, "Member 'URigVMBlueprintGeneratedClass::GraphFunctionStore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_AddRigVMFunction \ +static_assert(alignof(RigVM_AddRigVMFunction) == 0x000008, "Wrong alignment on RigVM_AddRigVMFunction"); \ +static_assert(sizeof(RigVM_AddRigVMFunction) == 0x000018, "Wrong size on RigVM_AddRigVMFunction"); \ +static_assert(offsetof(RigVM_AddRigVMFunction, InRigVMStruct) == 0x000000, "Member 'RigVM_AddRigVMFunction::InRigVMStruct' has a wrong offset!"); \ +static_assert(offsetof(RigVM_AddRigVMFunction, InMethodName) == 0x000008, "Member 'RigVM_AddRigVMFunction::InMethodName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_AddRigVMFunction, ReturnValue) == 0x000010, "Member 'RigVM_AddRigVMFunction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_Execute \ +static_assert(alignof(RigVM_Execute) == 0x000008, "Wrong alignment on RigVM_Execute"); \ +static_assert(sizeof(RigVM_Execute) == 0x0001C8, "Wrong size on RigVM_Execute"); \ +static_assert(offsetof(RigVM_Execute, Context) == 0x000000, "Member 'RigVM_Execute::Context' has a wrong offset!"); \ +static_assert(offsetof(RigVM_Execute, InEntryName) == 0x0001B8, "Member 'RigVM_Execute::InEntryName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_Execute, ReturnValue) == 0x0001C0, "Member 'RigVM_Execute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueBool \ +static_assert(alignof(RigVM_GetParameterValueBool) == 0x000004, "Wrong alignment on RigVM_GetParameterValueBool"); \ +static_assert(sizeof(RigVM_GetParameterValueBool) == 0x000010, "Wrong size on RigVM_GetParameterValueBool"); \ +static_assert(offsetof(RigVM_GetParameterValueBool, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueBool::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueBool, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueBool::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueBool, ReturnValue) == 0x00000C, "Member 'RigVM_GetParameterValueBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueDouble \ +static_assert(alignof(RigVM_GetParameterValueDouble) == 0x000008, "Wrong alignment on RigVM_GetParameterValueDouble"); \ +static_assert(sizeof(RigVM_GetParameterValueDouble) == 0x000018, "Wrong size on RigVM_GetParameterValueDouble"); \ +static_assert(offsetof(RigVM_GetParameterValueDouble, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueDouble::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueDouble, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueDouble::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueDouble, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueDouble::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueFloat \ +static_assert(alignof(RigVM_GetParameterValueFloat) == 0x000004, "Wrong alignment on RigVM_GetParameterValueFloat"); \ +static_assert(sizeof(RigVM_GetParameterValueFloat) == 0x000010, "Wrong size on RigVM_GetParameterValueFloat"); \ +static_assert(offsetof(RigVM_GetParameterValueFloat, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueFloat::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueFloat, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueFloat::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueFloat, ReturnValue) == 0x00000C, "Member 'RigVM_GetParameterValueFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueInt \ +static_assert(alignof(RigVM_GetParameterValueInt) == 0x000004, "Wrong alignment on RigVM_GetParameterValueInt"); \ +static_assert(sizeof(RigVM_GetParameterValueInt) == 0x000010, "Wrong size on RigVM_GetParameterValueInt"); \ +static_assert(offsetof(RigVM_GetParameterValueInt, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueInt::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueInt, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueInt::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueInt, ReturnValue) == 0x00000C, "Member 'RigVM_GetParameterValueInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueName \ +static_assert(alignof(RigVM_GetParameterValueName) == 0x000004, "Wrong alignment on RigVM_GetParameterValueName"); \ +static_assert(sizeof(RigVM_GetParameterValueName) == 0x000014, "Wrong size on RigVM_GetParameterValueName"); \ +static_assert(offsetof(RigVM_GetParameterValueName, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueName::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueName, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueName::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueName, ReturnValue) == 0x00000C, "Member 'RigVM_GetParameterValueName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueQuat \ +static_assert(alignof(RigVM_GetParameterValueQuat) == 0x000010, "Wrong alignment on RigVM_GetParameterValueQuat"); \ +static_assert(sizeof(RigVM_GetParameterValueQuat) == 0x000030, "Wrong size on RigVM_GetParameterValueQuat"); \ +static_assert(offsetof(RigVM_GetParameterValueQuat, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueQuat::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueQuat, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueQuat::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueQuat, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueQuat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueString \ +static_assert(alignof(RigVM_GetParameterValueString) == 0x000008, "Wrong alignment on RigVM_GetParameterValueString"); \ +static_assert(sizeof(RigVM_GetParameterValueString) == 0x000020, "Wrong size on RigVM_GetParameterValueString"); \ +static_assert(offsetof(RigVM_GetParameterValueString, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueString::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueString, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueString::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueString, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueTransform \ +static_assert(alignof(RigVM_GetParameterValueTransform) == 0x000010, "Wrong alignment on RigVM_GetParameterValueTransform"); \ +static_assert(sizeof(RigVM_GetParameterValueTransform) == 0x000070, "Wrong size on RigVM_GetParameterValueTransform"); \ +static_assert(offsetof(RigVM_GetParameterValueTransform, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueTransform::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueTransform, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueTransform::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueTransform, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueVector \ +static_assert(alignof(RigVM_GetParameterValueVector) == 0x000008, "Wrong alignment on RigVM_GetParameterValueVector"); \ +static_assert(sizeof(RigVM_GetParameterValueVector) == 0x000028, "Wrong size on RigVM_GetParameterValueVector"); \ +static_assert(offsetof(RigVM_GetParameterValueVector, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueVector::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueVector, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueVector::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueVector, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetParameterValueVector2D \ +static_assert(alignof(RigVM_GetParameterValueVector2D) == 0x000008, "Wrong alignment on RigVM_GetParameterValueVector2D"); \ +static_assert(sizeof(RigVM_GetParameterValueVector2D) == 0x000020, "Wrong size on RigVM_GetParameterValueVector2D"); \ +static_assert(offsetof(RigVM_GetParameterValueVector2D, InParameterName) == 0x000000, "Member 'RigVM_GetParameterValueVector2D::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueVector2D, InArrayIndex) == 0x000008, "Member 'RigVM_GetParameterValueVector2D::InArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetParameterValueVector2D, ReturnValue) == 0x000010, "Member 'RigVM_GetParameterValueVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueBool \ +static_assert(alignof(RigVM_SetParameterValueBool) == 0x000004, "Wrong alignment on RigVM_SetParameterValueBool"); \ +static_assert(sizeof(RigVM_SetParameterValueBool) == 0x000010, "Wrong size on RigVM_SetParameterValueBool"); \ +static_assert(offsetof(RigVM_SetParameterValueBool, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueBool::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueBool, InValue) == 0x000008, "Member 'RigVM_SetParameterValueBool::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueBool, InArrayIndex) == 0x00000C, "Member 'RigVM_SetParameterValueBool::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueDouble \ +static_assert(alignof(RigVM_SetParameterValueDouble) == 0x000008, "Wrong alignment on RigVM_SetParameterValueDouble"); \ +static_assert(sizeof(RigVM_SetParameterValueDouble) == 0x000018, "Wrong size on RigVM_SetParameterValueDouble"); \ +static_assert(offsetof(RigVM_SetParameterValueDouble, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueDouble::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueDouble, InValue) == 0x000008, "Member 'RigVM_SetParameterValueDouble::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueDouble, InArrayIndex) == 0x000010, "Member 'RigVM_SetParameterValueDouble::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueFloat \ +static_assert(alignof(RigVM_SetParameterValueFloat) == 0x000004, "Wrong alignment on RigVM_SetParameterValueFloat"); \ +static_assert(sizeof(RigVM_SetParameterValueFloat) == 0x000010, "Wrong size on RigVM_SetParameterValueFloat"); \ +static_assert(offsetof(RigVM_SetParameterValueFloat, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueFloat::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueFloat, InValue) == 0x000008, "Member 'RigVM_SetParameterValueFloat::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueFloat, InArrayIndex) == 0x00000C, "Member 'RigVM_SetParameterValueFloat::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueInt \ +static_assert(alignof(RigVM_SetParameterValueInt) == 0x000004, "Wrong alignment on RigVM_SetParameterValueInt"); \ +static_assert(sizeof(RigVM_SetParameterValueInt) == 0x000010, "Wrong size on RigVM_SetParameterValueInt"); \ +static_assert(offsetof(RigVM_SetParameterValueInt, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueInt::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueInt, InValue) == 0x000008, "Member 'RigVM_SetParameterValueInt::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueInt, InArrayIndex) == 0x00000C, "Member 'RigVM_SetParameterValueInt::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueName \ +static_assert(alignof(RigVM_SetParameterValueName) == 0x000004, "Wrong alignment on RigVM_SetParameterValueName"); \ +static_assert(sizeof(RigVM_SetParameterValueName) == 0x000014, "Wrong size on RigVM_SetParameterValueName"); \ +static_assert(offsetof(RigVM_SetParameterValueName, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueName::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueName, InValue) == 0x000008, "Member 'RigVM_SetParameterValueName::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueName, InArrayIndex) == 0x000010, "Member 'RigVM_SetParameterValueName::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueQuat \ +static_assert(alignof(RigVM_SetParameterValueQuat) == 0x000010, "Wrong alignment on RigVM_SetParameterValueQuat"); \ +static_assert(sizeof(RigVM_SetParameterValueQuat) == 0x000040, "Wrong size on RigVM_SetParameterValueQuat"); \ +static_assert(offsetof(RigVM_SetParameterValueQuat, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueQuat::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueQuat, InValue) == 0x000010, "Member 'RigVM_SetParameterValueQuat::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueQuat, InArrayIndex) == 0x000030, "Member 'RigVM_SetParameterValueQuat::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueString \ +static_assert(alignof(RigVM_SetParameterValueString) == 0x000008, "Wrong alignment on RigVM_SetParameterValueString"); \ +static_assert(sizeof(RigVM_SetParameterValueString) == 0x000020, "Wrong size on RigVM_SetParameterValueString"); \ +static_assert(offsetof(RigVM_SetParameterValueString, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueString::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueString, InValue) == 0x000008, "Member 'RigVM_SetParameterValueString::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueString, InArrayIndex) == 0x000018, "Member 'RigVM_SetParameterValueString::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueTransform \ +static_assert(alignof(RigVM_SetParameterValueTransform) == 0x000010, "Wrong alignment on RigVM_SetParameterValueTransform"); \ +static_assert(sizeof(RigVM_SetParameterValueTransform) == 0x000080, "Wrong size on RigVM_SetParameterValueTransform"); \ +static_assert(offsetof(RigVM_SetParameterValueTransform, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueTransform::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueTransform, InValue) == 0x000010, "Member 'RigVM_SetParameterValueTransform::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueTransform, InArrayIndex) == 0x000070, "Member 'RigVM_SetParameterValueTransform::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueVector \ +static_assert(alignof(RigVM_SetParameterValueVector) == 0x000008, "Wrong alignment on RigVM_SetParameterValueVector"); \ +static_assert(sizeof(RigVM_SetParameterValueVector) == 0x000028, "Wrong size on RigVM_SetParameterValueVector"); \ +static_assert(offsetof(RigVM_SetParameterValueVector, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueVector::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueVector, InValue) == 0x000008, "Member 'RigVM_SetParameterValueVector::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueVector, InArrayIndex) == 0x000020, "Member 'RigVM_SetParameterValueVector::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_SetParameterValueVector2D \ +static_assert(alignof(RigVM_SetParameterValueVector2D) == 0x000008, "Wrong alignment on RigVM_SetParameterValueVector2D"); \ +static_assert(sizeof(RigVM_SetParameterValueVector2D) == 0x000020, "Wrong size on RigVM_SetParameterValueVector2D"); \ +static_assert(offsetof(RigVM_SetParameterValueVector2D, InParameterName) == 0x000000, "Member 'RigVM_SetParameterValueVector2D::InParameterName' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueVector2D, InValue) == 0x000008, "Member 'RigVM_SetParameterValueVector2D::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVM_SetParameterValueVector2D, InArrayIndex) == 0x000018, "Member 'RigVM_SetParameterValueVector2D::InArrayIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetRigVMFunctionName \ +static_assert(alignof(RigVM_GetRigVMFunctionName) == 0x000008, "Wrong alignment on RigVM_GetRigVMFunctionName"); \ +static_assert(sizeof(RigVM_GetRigVMFunctionName) == 0x000018, "Wrong size on RigVM_GetRigVMFunctionName"); \ +static_assert(offsetof(RigVM_GetRigVMFunctionName, InFunctionIndex) == 0x000000, "Member 'RigVM_GetRigVMFunctionName::InFunctionIndex' has a wrong offset!"); \ +static_assert(offsetof(RigVM_GetRigVMFunctionName, ReturnValue) == 0x000008, "Member 'RigVM_GetRigVMFunctionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVM_GetStatistics \ +static_assert(alignof(RigVM_GetStatistics) == 0x000004, "Wrong alignment on RigVM_GetStatistics"); \ +static_assert(sizeof(RigVM_GetStatistics) == 0x000038, "Wrong size on RigVM_GetStatistics"); \ +static_assert(offsetof(RigVM_GetStatistics, ReturnValue) == 0x000000, "Member 'RigVM_GetStatistics::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigVM \ +static_assert(alignof(URigVM) == 0x000008, "Wrong alignment on URigVM"); \ +static_assert(sizeof(URigVM) == 0x0002A8, "Wrong size on URigVM"); \ +static_assert(offsetof(URigVM, WorkMemoryStorageObject) == 0x000028, "Member 'URigVM::WorkMemoryStorageObject' has a wrong offset!"); \ +static_assert(offsetof(URigVM, LiteralMemoryStorageObject) == 0x000030, "Member 'URigVM::LiteralMemoryStorageObject' has a wrong offset!"); \ +static_assert(offsetof(URigVM, DebugMemoryStorageObject) == 0x000038, "Member 'URigVM::DebugMemoryStorageObject' has a wrong offset!"); \ +static_assert(offsetof(URigVM, ByteCodeStorage) == 0x000060, "Member 'URigVM::ByteCodeStorage' has a wrong offset!"); \ +static_assert(offsetof(URigVM, Instructions) == 0x000108, "Member 'URigVM::Instructions' has a wrong offset!"); \ +static_assert(offsetof(URigVM, FunctionNamesStorage) == 0x000120, "Member 'URigVM::FunctionNamesStorage' has a wrong offset!"); \ +static_assert(offsetof(URigVM, Parameters) == 0x000168, "Member 'URigVM::Parameters' has a wrong offset!"); \ +static_assert(offsetof(URigVM, ParametersNameMap) == 0x000178, "Member 'URigVM::ParametersNameMap' has a wrong offset!"); \ +static_assert(offsetof(URigVM, DeferredVMToCopy) == 0x000260, "Member 'URigVM::DeferredVMToCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNameSpacedUserData \ +static_assert(alignof(UNameSpacedUserData) == 0x000008, "Wrong alignment on UNameSpacedUserData"); \ +static_assert(sizeof(UNameSpacedUserData) == 0x000100, "Wrong size on UNameSpacedUserData"); \ +static_assert(offsetof(UNameSpacedUserData, Namespace) == 0x000028, "Member 'UNameSpacedUserData::Namespace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataAssetLink_SetDataAsset \ +static_assert(alignof(DataAssetLink_SetDataAsset) == 0x000008, "Wrong alignment on DataAssetLink_SetDataAsset"); \ +static_assert(sizeof(DataAssetLink_SetDataAsset) == 0x000008, "Wrong size on DataAssetLink_SetDataAsset"); \ +static_assert(offsetof(DataAssetLink_SetDataAsset, InDataAsset) == 0x000000, "Member 'DataAssetLink_SetDataAsset::InDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataAssetLink_GetDataAsset \ +static_assert(alignof(DataAssetLink_GetDataAsset) == 0x000008, "Wrong alignment on DataAssetLink_GetDataAsset"); \ +static_assert(sizeof(DataAssetLink_GetDataAsset) == 0x000008, "Wrong size on DataAssetLink_GetDataAsset"); \ +static_assert(offsetof(DataAssetLink_GetDataAsset, ReturnValue) == 0x000000, "Member 'DataAssetLink_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataAssetLink \ +static_assert(alignof(UDataAssetLink) == 0x000008, "Wrong alignment on UDataAssetLink"); \ +static_assert(sizeof(UDataAssetLink) == 0x000108, "Wrong size on UDataAssetLink"); \ +static_assert(offsetof(UDataAssetLink, DataAsset) == 0x000100, "Member 'UDataAssetLink::DataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigVMMemoryStorageGeneratorClass \ +static_assert(alignof(URigVMMemoryStorageGeneratorClass) == 0x000008, "Wrong alignment on URigVMMemoryStorageGeneratorClass"); \ +static_assert(sizeof(URigVMMemoryStorageGeneratorClass) == 0x000240, "Wrong size on URigVMMemoryStorageGeneratorClass"); \ + +#define DUMPER7_ASSERTS_URigVMMemoryStorage \ +static_assert(alignof(URigVMMemoryStorage) == 0x000008, "Wrong alignment on URigVMMemoryStorage"); \ +static_assert(sizeof(URigVMMemoryStorage) == 0x000028, "Wrong size on URigVMMemoryStorage"); \ + +#define DUMPER7_ASSERTS_URigVMNativized \ +static_assert(alignof(URigVMNativized) == 0x000008, "Wrong alignment on URigVMNativized"); \ +static_assert(sizeof(URigVMNativized) == 0x0002D0, "Wrong size on URigVMNativized"); \ + +#define DUMPER7_ASSERTS_RigVMUserWorkflowOptions_ReportError \ +static_assert(alignof(RigVMUserWorkflowOptions_ReportError) == 0x000008, "Wrong alignment on RigVMUserWorkflowOptions_ReportError"); \ +static_assert(sizeof(RigVMUserWorkflowOptions_ReportError) == 0x000010, "Wrong size on RigVMUserWorkflowOptions_ReportError"); \ +static_assert(offsetof(RigVMUserWorkflowOptions_ReportError, InMessage) == 0x000000, "Member 'RigVMUserWorkflowOptions_ReportError::InMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMUserWorkflowOptions_ReportInfo \ +static_assert(alignof(RigVMUserWorkflowOptions_ReportInfo) == 0x000008, "Wrong alignment on RigVMUserWorkflowOptions_ReportInfo"); \ +static_assert(sizeof(RigVMUserWorkflowOptions_ReportInfo) == 0x000010, "Wrong size on RigVMUserWorkflowOptions_ReportInfo"); \ +static_assert(offsetof(RigVMUserWorkflowOptions_ReportInfo, InMessage) == 0x000000, "Member 'RigVMUserWorkflowOptions_ReportInfo::InMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMUserWorkflowOptions_ReportWarning \ +static_assert(alignof(RigVMUserWorkflowOptions_ReportWarning) == 0x000008, "Wrong alignment on RigVMUserWorkflowOptions_ReportWarning"); \ +static_assert(sizeof(RigVMUserWorkflowOptions_ReportWarning) == 0x000010, "Wrong size on RigVMUserWorkflowOptions_ReportWarning"); \ +static_assert(offsetof(RigVMUserWorkflowOptions_ReportWarning, InMessage) == 0x000000, "Member 'RigVMUserWorkflowOptions_ReportWarning::InMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMUserWorkflowOptions_IsValid \ +static_assert(alignof(RigVMUserWorkflowOptions_IsValid) == 0x000001, "Wrong alignment on RigVMUserWorkflowOptions_IsValid"); \ +static_assert(sizeof(RigVMUserWorkflowOptions_IsValid) == 0x000001, "Wrong size on RigVMUserWorkflowOptions_IsValid"); \ +static_assert(offsetof(RigVMUserWorkflowOptions_IsValid, ReturnValue) == 0x000000, "Member 'RigVMUserWorkflowOptions_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMUserWorkflowOptions_RequiresDialog \ +static_assert(alignof(RigVMUserWorkflowOptions_RequiresDialog) == 0x000001, "Wrong alignment on RigVMUserWorkflowOptions_RequiresDialog"); \ +static_assert(sizeof(RigVMUserWorkflowOptions_RequiresDialog) == 0x000001, "Wrong size on RigVMUserWorkflowOptions_RequiresDialog"); \ +static_assert(offsetof(RigVMUserWorkflowOptions_RequiresDialog, ReturnValue) == 0x000000, "Member 'RigVMUserWorkflowOptions_RequiresDialog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigVMUserWorkflowOptions \ +static_assert(alignof(URigVMUserWorkflowOptions) == 0x000008, "Wrong alignment on URigVMUserWorkflowOptions"); \ +static_assert(sizeof(URigVMUserWorkflowOptions) == 0x000098, "Wrong size on URigVMUserWorkflowOptions"); \ +static_assert(offsetof(URigVMUserWorkflowOptions, Subject) == 0x000028, "Member 'URigVMUserWorkflowOptions::Subject' has a wrong offset!"); \ +static_assert(offsetof(URigVMUserWorkflowOptions, Workflow) == 0x000030, "Member 'URigVMUserWorkflowOptions::Workflow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_FindRigVMHosts \ +static_assert(alignof(RigVMHost_FindRigVMHosts) == 0x000008, "Wrong alignment on RigVMHost_FindRigVMHosts"); \ +static_assert(sizeof(RigVMHost_FindRigVMHosts) == 0x000020, "Wrong size on RigVMHost_FindRigVMHosts"); \ +static_assert(offsetof(RigVMHost_FindRigVMHosts, Outer_0) == 0x000000, "Member 'RigVMHost_FindRigVMHosts::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_FindRigVMHosts, OptionalClass) == 0x000008, "Member 'RigVMHost_FindRigVMHosts::OptionalClass' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_FindRigVMHosts, ReturnValue) == 0x000010, "Member 'RigVMHost_FindRigVMHosts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_Execute \ +static_assert(alignof(RigVMHost_Execute) == 0x000004, "Wrong alignment on RigVMHost_Execute"); \ +static_assert(sizeof(RigVMHost_Execute) == 0x00000C, "Wrong size on RigVMHost_Execute"); \ +static_assert(offsetof(RigVMHost_Execute, InEventName) == 0x000000, "Member 'RigVMHost_Execute::InEventName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_Execute, ReturnValue) == 0x000008, "Member 'RigVMHost_Execute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_ExecuteEvent \ +static_assert(alignof(RigVMHost_ExecuteEvent) == 0x000004, "Wrong alignment on RigVMHost_ExecuteEvent"); \ +static_assert(sizeof(RigVMHost_ExecuteEvent) == 0x00000C, "Wrong size on RigVMHost_ExecuteEvent"); \ +static_assert(offsetof(RigVMHost_ExecuteEvent, InEventName) == 0x000000, "Member 'RigVMHost_ExecuteEvent::InEventName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_ExecuteEvent, ReturnValue) == 0x000008, "Member 'RigVMHost_ExecuteEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetExtendedExecuteContext \ +static_assert(alignof(RigVMHost_GetExtendedExecuteContext) == 0x000008, "Wrong alignment on RigVMHost_GetExtendedExecuteContext"); \ +static_assert(sizeof(RigVMHost_GetExtendedExecuteContext) == 0x0001B8, "Wrong size on RigVMHost_GetExtendedExecuteContext"); \ +static_assert(offsetof(RigVMHost_GetExtendedExecuteContext, ReturnValue) == 0x000000, "Member 'RigVMHost_GetExtendedExecuteContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetVM \ +static_assert(alignof(RigVMHost_GetVM) == 0x000008, "Wrong alignment on RigVMHost_GetVM"); \ +static_assert(sizeof(RigVMHost_GetVM) == 0x000008, "Wrong size on RigVMHost_GetVM"); \ +static_assert(offsetof(RigVMHost_GetVM, ReturnValue) == 0x000000, "Member 'RigVMHost_GetVM::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_RemoveRunOnceEvent \ +static_assert(alignof(RigVMHost_RemoveRunOnceEvent) == 0x000004, "Wrong alignment on RigVMHost_RemoveRunOnceEvent"); \ +static_assert(sizeof(RigVMHost_RemoveRunOnceEvent) == 0x00000C, "Wrong size on RigVMHost_RemoveRunOnceEvent"); \ +static_assert(offsetof(RigVMHost_RemoveRunOnceEvent, InEventName) == 0x000000, "Member 'RigVMHost_RemoveRunOnceEvent::InEventName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_RemoveRunOnceEvent, ReturnValue) == 0x000008, "Member 'RigVMHost_RemoveRunOnceEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_RequestRunOnceEvent \ +static_assert(alignof(RigVMHost_RequestRunOnceEvent) == 0x000004, "Wrong alignment on RigVMHost_RequestRunOnceEvent"); \ +static_assert(sizeof(RigVMHost_RequestRunOnceEvent) == 0x00000C, "Wrong size on RigVMHost_RequestRunOnceEvent"); \ +static_assert(offsetof(RigVMHost_RequestRunOnceEvent, InEventName) == 0x000000, "Member 'RigVMHost_RequestRunOnceEvent::InEventName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_RequestRunOnceEvent, InEventIndex) == 0x000008, "Member 'RigVMHost_RequestRunOnceEvent::InEventIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SetAbsoluteAndDeltaTime \ +static_assert(alignof(RigVMHost_SetAbsoluteAndDeltaTime) == 0x000004, "Wrong alignment on RigVMHost_SetAbsoluteAndDeltaTime"); \ +static_assert(sizeof(RigVMHost_SetAbsoluteAndDeltaTime) == 0x000008, "Wrong size on RigVMHost_SetAbsoluteAndDeltaTime"); \ +static_assert(offsetof(RigVMHost_SetAbsoluteAndDeltaTime, InAbsoluteTime) == 0x000000, "Member 'RigVMHost_SetAbsoluteAndDeltaTime::InAbsoluteTime' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_SetAbsoluteAndDeltaTime, InDeltaTime) == 0x000004, "Member 'RigVMHost_SetAbsoluteAndDeltaTime::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SetAbsoluteTime \ +static_assert(alignof(RigVMHost_SetAbsoluteTime) == 0x000004, "Wrong alignment on RigVMHost_SetAbsoluteTime"); \ +static_assert(sizeof(RigVMHost_SetAbsoluteTime) == 0x000008, "Wrong size on RigVMHost_SetAbsoluteTime"); \ +static_assert(offsetof(RigVMHost_SetAbsoluteTime, InAbsoluteTime) == 0x000000, "Member 'RigVMHost_SetAbsoluteTime::InAbsoluteTime' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_SetAbsoluteTime, InSetDeltaTimeZero) == 0x000004, "Member 'RigVMHost_SetAbsoluteTime::InSetDeltaTimeZero' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SetDeltaTime \ +static_assert(alignof(RigVMHost_SetDeltaTime) == 0x000004, "Wrong alignment on RigVMHost_SetDeltaTime"); \ +static_assert(sizeof(RigVMHost_SetDeltaTime) == 0x000004, "Wrong size on RigVMHost_SetDeltaTime"); \ +static_assert(offsetof(RigVMHost_SetDeltaTime, InDeltaTime) == 0x000000, "Member 'RigVMHost_SetDeltaTime::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SetFramesPerSecond \ +static_assert(alignof(RigVMHost_SetFramesPerSecond) == 0x000004, "Wrong alignment on RigVMHost_SetFramesPerSecond"); \ +static_assert(sizeof(RigVMHost_SetFramesPerSecond) == 0x000004, "Wrong size on RigVMHost_SetFramesPerSecond"); \ +static_assert(offsetof(RigVMHost_SetFramesPerSecond, InFramesPerSecond) == 0x000000, "Member 'RigVMHost_SetFramesPerSecond::InFramesPerSecond' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SetVariableFromString \ +static_assert(alignof(RigVMHost_SetVariableFromString) == 0x000008, "Wrong alignment on RigVMHost_SetVariableFromString"); \ +static_assert(sizeof(RigVMHost_SetVariableFromString) == 0x000020, "Wrong size on RigVMHost_SetVariableFromString"); \ +static_assert(offsetof(RigVMHost_SetVariableFromString, InVariableName) == 0x000000, "Member 'RigVMHost_SetVariableFromString::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_SetVariableFromString, InValue) == 0x000008, "Member 'RigVMHost_SetVariableFromString::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_SetVariableFromString, ReturnValue) == 0x000018, "Member 'RigVMHost_SetVariableFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_CanExecute \ +static_assert(alignof(RigVMHost_CanExecute) == 0x000001, "Wrong alignment on RigVMHost_CanExecute"); \ +static_assert(sizeof(RigVMHost_CanExecute) == 0x000001, "Wrong size on RigVMHost_CanExecute"); \ +static_assert(offsetof(RigVMHost_CanExecute, ReturnValue) == 0x000000, "Member 'RigVMHost_CanExecute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetAbsoluteTime \ +static_assert(alignof(RigVMHost_GetAbsoluteTime) == 0x000004, "Wrong alignment on RigVMHost_GetAbsoluteTime"); \ +static_assert(sizeof(RigVMHost_GetAbsoluteTime) == 0x000004, "Wrong size on RigVMHost_GetAbsoluteTime"); \ +static_assert(offsetof(RigVMHost_GetAbsoluteTime, ReturnValue) == 0x000000, "Member 'RigVMHost_GetAbsoluteTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetCurrentFramesPerSecond \ +static_assert(alignof(RigVMHost_GetCurrentFramesPerSecond) == 0x000004, "Wrong alignment on RigVMHost_GetCurrentFramesPerSecond"); \ +static_assert(sizeof(RigVMHost_GetCurrentFramesPerSecond) == 0x000004, "Wrong size on RigVMHost_GetCurrentFramesPerSecond"); \ +static_assert(offsetof(RigVMHost_GetCurrentFramesPerSecond, ReturnValue) == 0x000000, "Member 'RigVMHost_GetCurrentFramesPerSecond::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetDeltaTime \ +static_assert(alignof(RigVMHost_GetDeltaTime) == 0x000004, "Wrong alignment on RigVMHost_GetDeltaTime"); \ +static_assert(sizeof(RigVMHost_GetDeltaTime) == 0x000004, "Wrong size on RigVMHost_GetDeltaTime"); \ +static_assert(offsetof(RigVMHost_GetDeltaTime, ReturnValue) == 0x000000, "Member 'RigVMHost_GetDeltaTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetScriptAccessibleVariables \ +static_assert(alignof(RigVMHost_GetScriptAccessibleVariables) == 0x000008, "Wrong alignment on RigVMHost_GetScriptAccessibleVariables"); \ +static_assert(sizeof(RigVMHost_GetScriptAccessibleVariables) == 0x000010, "Wrong size on RigVMHost_GetScriptAccessibleVariables"); \ +static_assert(offsetof(RigVMHost_GetScriptAccessibleVariables, ReturnValue) == 0x000000, "Member 'RigVMHost_GetScriptAccessibleVariables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetSupportedEvents \ +static_assert(alignof(RigVMHost_GetSupportedEvents) == 0x000008, "Wrong alignment on RigVMHost_GetSupportedEvents"); \ +static_assert(sizeof(RigVMHost_GetSupportedEvents) == 0x000010, "Wrong size on RigVMHost_GetSupportedEvents"); \ +static_assert(offsetof(RigVMHost_GetSupportedEvents, ReturnValue) == 0x000000, "Member 'RigVMHost_GetSupportedEvents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetVariableAsString \ +static_assert(alignof(RigVMHost_GetVariableAsString) == 0x000008, "Wrong alignment on RigVMHost_GetVariableAsString"); \ +static_assert(sizeof(RigVMHost_GetVariableAsString) == 0x000018, "Wrong size on RigVMHost_GetVariableAsString"); \ +static_assert(offsetof(RigVMHost_GetVariableAsString, InVariableName) == 0x000000, "Member 'RigVMHost_GetVariableAsString::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_GetVariableAsString, ReturnValue) == 0x000008, "Member 'RigVMHost_GetVariableAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_GetVariableType \ +static_assert(alignof(RigVMHost_GetVariableType) == 0x000004, "Wrong alignment on RigVMHost_GetVariableType"); \ +static_assert(sizeof(RigVMHost_GetVariableType) == 0x000010, "Wrong size on RigVMHost_GetVariableType"); \ +static_assert(offsetof(RigVMHost_GetVariableType, InVariableName) == 0x000000, "Member 'RigVMHost_GetVariableType::InVariableName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_GetVariableType, ReturnValue) == 0x000008, "Member 'RigVMHost_GetVariableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigVMHost_SupportsEvent \ +static_assert(alignof(RigVMHost_SupportsEvent) == 0x000004, "Wrong alignment on RigVMHost_SupportsEvent"); \ +static_assert(sizeof(RigVMHost_SupportsEvent) == 0x00000C, "Wrong size on RigVMHost_SupportsEvent"); \ +static_assert(offsetof(RigVMHost_SupportsEvent, InEventName) == 0x000000, "Member 'RigVMHost_SupportsEvent::InEventName' has a wrong offset!"); \ +static_assert(offsetof(RigVMHost_SupportsEvent, ReturnValue) == 0x000008, "Member 'RigVMHost_SupportsEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigVMHost \ +static_assert(alignof(URigVMHost) == 0x000008, "Wrong alignment on URigVMHost"); \ +static_assert(sizeof(URigVMHost) == 0x000338, "Wrong size on URigVMHost"); \ +static_assert(offsetof(URigVMHost, VMRuntimeSettings) == 0x000030, "Member 'URigVMHost::VMRuntimeSettings' has a wrong offset!"); \ +static_assert(offsetof(URigVMHost, VM) == 0x000058, "Member 'URigVMHost::VM' has a wrong offset!"); \ +static_assert(offsetof(URigVMHost, ExtendedExecuteContext) == 0x000060, "Member 'URigVMHost::ExtendedExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(URigVMHost, DrawContainer) == 0x000218, "Member 'URigVMHost::DrawContainer' has a wrong offset!"); \ +static_assert(offsetof(URigVMHost, EventQueue) == 0x000248, "Member 'URigVMHost::EventQueue' has a wrong offset!"); \ +static_assert(offsetof(URigVMHost, AssetUserData) == 0x0002E8, "Member 'URigVMHost::AssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigVMEditorSettings \ +static_assert(alignof(URigVMEditorSettings) == 0x000008, "Wrong alignment on URigVMEditorSettings"); \ +static_assert(sizeof(URigVMEditorSettings) == 0x000038, "Wrong size on URigVMEditorSettings"); \ + +#define DUMPER7_ASSERTS_FRigComputedTransform \ +static_assert(alignof(FRigComputedTransform) == 0x000010, "Wrong alignment on FRigComputedTransform"); \ +static_assert(sizeof(FRigComputedTransform) == 0x000060, "Wrong size on FRigComputedTransform"); \ +static_assert(offsetof(FRigComputedTransform, Transform) == 0x000000, "Member 'FRigComputedTransform::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigLocalAndGlobalTransform \ +static_assert(alignof(FRigLocalAndGlobalTransform) == 0x000010, "Wrong alignment on FRigLocalAndGlobalTransform"); \ +static_assert(sizeof(FRigLocalAndGlobalTransform) == 0x0000D0, "Wrong size on FRigLocalAndGlobalTransform"); \ +static_assert(offsetof(FRigLocalAndGlobalTransform, Local) == 0x000000, "Member 'FRigLocalAndGlobalTransform::Local' has a wrong offset!"); \ +static_assert(offsetof(FRigLocalAndGlobalTransform, Global) == 0x000060, "Member 'FRigLocalAndGlobalTransform::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigCurrentAndInitialTransform \ +static_assert(alignof(FRigCurrentAndInitialTransform) == 0x000010, "Wrong alignment on FRigCurrentAndInitialTransform"); \ +static_assert(sizeof(FRigCurrentAndInitialTransform) == 0x0001A0, "Wrong size on FRigCurrentAndInitialTransform"); \ +static_assert(offsetof(FRigCurrentAndInitialTransform, Current) == 0x000000, "Member 'FRigCurrentAndInitialTransform::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigCurrentAndInitialTransform, Initial) == 0x0000D0, "Member 'FRigCurrentAndInitialTransform::Initial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElementKey \ +static_assert(alignof(FRigElementKey) == 0x000004, "Wrong alignment on FRigElementKey"); \ +static_assert(sizeof(FRigElementKey) == 0x00000C, "Wrong size on FRigElementKey"); \ +static_assert(offsetof(FRigElementKey, Type) == 0x000000, "Member 'FRigElementKey::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigElementKey, Name) == 0x000004, "Member 'FRigElementKey::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBaseElement \ +static_assert(alignof(FRigBaseElement) == 0x000008, "Wrong alignment on FRigBaseElement"); \ +static_assert(sizeof(FRigBaseElement) == 0x0000E8, "Wrong size on FRigBaseElement"); \ +static_assert(offsetof(FRigBaseElement, Key) == 0x000008, "Member 'FRigBaseElement::Key' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseElement, NameString) == 0x000018, "Member 'FRigBaseElement::NameString' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseElement, Index) == 0x000028, "Member 'FRigBaseElement::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseElement, SubIndex) == 0x00002C, "Member 'FRigBaseElement::SubIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseElement, CreatedAtInstructionIndex) == 0x0000D8, "Member 'FRigBaseElement::CreatedAtInstructionIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseElement, bSelected) == 0x0000E4, "Member 'FRigBaseElement::bSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigTransformElement \ +static_assert(alignof(FRigTransformElement) == 0x000010, "Wrong alignment on FRigTransformElement"); \ +static_assert(sizeof(FRigTransformElement) == 0x0002D0, "Wrong size on FRigTransformElement"); \ +static_assert(offsetof(FRigTransformElement, Pose) == 0x0000F0, "Member 'FRigTransformElement::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintNodeData \ +static_assert(alignof(FConstraintNodeData) == 0x000010, "Wrong alignment on FConstraintNodeData"); \ +static_assert(sizeof(FConstraintNodeData) == 0x000140, "Wrong size on FConstraintNodeData"); \ +static_assert(offsetof(FConstraintNodeData, RelativeParent) == 0x000000, "Member 'FConstraintNodeData::RelativeParent' has a wrong offset!"); \ +static_assert(offsetof(FConstraintNodeData, ConstraintOffset) == 0x000060, "Member 'FConstraintNodeData::ConstraintOffset' has a wrong offset!"); \ +static_assert(offsetof(FConstraintNodeData, LinkedNode) == 0x000120, "Member 'FConstraintNodeData::LinkedNode' has a wrong offset!"); \ +static_assert(offsetof(FConstraintNodeData, Constraints) == 0x000128, "Member 'FConstraintNodeData::Constraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit \ +static_assert(alignof(FRigUnit) == 0x000008, "Wrong alignment on FRigUnit"); \ +static_assert(sizeof(FRigUnit) == 0x000008, "Wrong size on FRigUnit"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugBase \ +static_assert(alignof(FRigUnit_DebugBase) == 0x000008, "Wrong alignment on FRigUnit_DebugBase"); \ +static_assert(sizeof(FRigUnit_DebugBase) == 0x000008, "Wrong size on FRigUnit_DebugBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugQuat \ +static_assert(alignof(FRigUnit_VisualDebugQuat) == 0x000010, "Wrong alignment on FRigUnit_VisualDebugQuat"); \ +static_assert(sizeof(FRigUnit_VisualDebugQuat) == 0x000050, "Wrong size on FRigUnit_VisualDebugQuat"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuat, Value) == 0x000010, "Member 'FRigUnit_VisualDebugQuat::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuat, bEnabled) == 0x000030, "Member 'FRigUnit_VisualDebugQuat::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuat, Thickness) == 0x000034, "Member 'FRigUnit_VisualDebugQuat::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuat, Scale) == 0x000038, "Member 'FRigUnit_VisualDebugQuat::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuat, BoneSpace) == 0x00003C, "Member 'FRigUnit_VisualDebugQuat::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigHierarchySettings \ +static_assert(alignof(FRigHierarchySettings) == 0x000004, "Wrong alignment on FRigHierarchySettings"); \ +static_assert(sizeof(FRigHierarchySettings) == 0x000004, "Wrong size on FRigHierarchySettings"); \ +static_assert(offsetof(FRigHierarchySettings, ProceduralElementLimit) == 0x000000, "Member 'FRigHierarchySettings::ProceduralElementLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBaseMetadata \ +static_assert(alignof(FRigBaseMetadata) == 0x000008, "Wrong alignment on FRigBaseMetadata"); \ +static_assert(sizeof(FRigBaseMetadata) == 0x000028, "Wrong size on FRigBaseMetadata"); \ +static_assert(offsetof(FRigBaseMetadata, Name) == 0x000010, "Member 'FRigBaseMetadata::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigBaseMetadata, Type) == 0x000018, "Member 'FRigBaseMetadata::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigNameArrayMetadata \ +static_assert(alignof(FRigNameArrayMetadata) == 0x000008, "Wrong alignment on FRigNameArrayMetadata"); \ +static_assert(sizeof(FRigNameArrayMetadata) == 0x000038, "Wrong size on FRigNameArrayMetadata"); \ +static_assert(offsetof(FRigNameArrayMetadata, Value) == 0x000028, "Member 'FRigNameArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonics_Reach \ +static_assert(alignof(FRigUnit_ChainHarmonics_Reach) == 0x000008, "Wrong alignment on FRigUnit_ChainHarmonics_Reach"); \ +static_assert(sizeof(FRigUnit_ChainHarmonics_Reach) == 0x000048, "Wrong size on FRigUnit_ChainHarmonics_Reach"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, bEnabled) == 0x000000, "Member 'FRigUnit_ChainHarmonics_Reach::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, ReachTarget) == 0x000008, "Member 'FRigUnit_ChainHarmonics_Reach::ReachTarget' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, ReachAxis) == 0x000020, "Member 'FRigUnit_ChainHarmonics_Reach::ReachAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, ReachMinimum) == 0x000038, "Member 'FRigUnit_ChainHarmonics_Reach::ReachMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, ReachMaximum) == 0x00003C, "Member 'FRigUnit_ChainHarmonics_Reach::ReachMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Reach, ReachEase) == 0x000040, "Member 'FRigUnit_ChainHarmonics_Reach::ReachEase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonics_Wave \ +static_assert(alignof(FRigUnit_ChainHarmonics_Wave) == 0x000008, "Wrong alignment on FRigUnit_ChainHarmonics_Wave"); \ +static_assert(sizeof(FRigUnit_ChainHarmonics_Wave) == 0x000078, "Wrong size on FRigUnit_ChainHarmonics_Wave"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, bEnabled) == 0x000000, "Member 'FRigUnit_ChainHarmonics_Wave::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveFrequency) == 0x000008, "Member 'FRigUnit_ChainHarmonics_Wave::WaveFrequency' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveAmplitude) == 0x000020, "Member 'FRigUnit_ChainHarmonics_Wave::WaveAmplitude' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveOffset) == 0x000038, "Member 'FRigUnit_ChainHarmonics_Wave::WaveOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveNoise) == 0x000050, "Member 'FRigUnit_ChainHarmonics_Wave::WaveNoise' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveMinimum) == 0x000068, "Member 'FRigUnit_ChainHarmonics_Wave::WaveMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveMaximum) == 0x00006C, "Member 'FRigUnit_ChainHarmonics_Wave::WaveMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Wave, WaveEase) == 0x000070, "Member 'FRigUnit_ChainHarmonics_Wave::WaveEase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonics_Pendulum \ +static_assert(alignof(FRigUnit_ChainHarmonics_Pendulum) == 0x000008, "Wrong alignment on FRigUnit_ChainHarmonics_Pendulum"); \ +static_assert(sizeof(FRigUnit_ChainHarmonics_Pendulum) == 0x000058, "Wrong size on FRigUnit_ChainHarmonics_Pendulum"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, bEnabled) == 0x000000, "Member 'FRigUnit_ChainHarmonics_Pendulum::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumStiffness) == 0x000004, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumStiffness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumGravity) == 0x000008, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumGravity' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumBlend) == 0x000020, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumBlend' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumDrag) == 0x000024, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumDrag' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumMinimum) == 0x000028, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumMaximum) == 0x00002C, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, PendulumEase) == 0x000030, "Member 'FRigUnit_ChainHarmonics_Pendulum::PendulumEase' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, UnwindAxis) == 0x000038, "Member 'FRigUnit_ChainHarmonics_Pendulum::UnwindAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, UnwindMinimum) == 0x000050, "Member 'FRigUnit_ChainHarmonics_Pendulum::UnwindMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_Pendulum, UnwindMaximum) == 0x000054, "Member 'FRigUnit_ChainHarmonics_Pendulum::UnwindMaximum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedRigElement \ +static_assert(alignof(FCachedRigElement) == 0x000008, "Wrong alignment on FCachedRigElement"); \ +static_assert(sizeof(FCachedRigElement) == 0x000020, "Wrong size on FCachedRigElement"); \ +static_assert(offsetof(FCachedRigElement, Key) == 0x000000, "Member 'FCachedRigElement::Key' has a wrong offset!"); \ +static_assert(offsetof(FCachedRigElement, Index) == 0x00000C, "Member 'FCachedRigElement::Index' has a wrong offset!"); \ +static_assert(offsetof(FCachedRigElement, ContainerVersion) == 0x000010, "Member 'FCachedRigElement::ContainerVersion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonics_WorkData \ +static_assert(alignof(FRigUnit_ChainHarmonics_WorkData) == 0x000008, "Wrong alignment on FRigUnit_ChainHarmonics_WorkData"); \ +static_assert(sizeof(FRigUnit_ChainHarmonics_WorkData) == 0x000098, "Wrong size on FRigUnit_ChainHarmonics_WorkData"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, Time) == 0x000000, "Member 'FRigUnit_ChainHarmonics_WorkData::Time' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, Items) == 0x000018, "Member 'FRigUnit_ChainHarmonics_WorkData::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, Ratio) == 0x000028, "Member 'FRigUnit_ChainHarmonics_WorkData::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, LocalTip) == 0x000038, "Member 'FRigUnit_ChainHarmonics_WorkData::LocalTip' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, PendulumTip) == 0x000048, "Member 'FRigUnit_ChainHarmonics_WorkData::PendulumTip' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, PendulumPosition) == 0x000058, "Member 'FRigUnit_ChainHarmonics_WorkData::PendulumPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, PendulumVelocity) == 0x000068, "Member 'FRigUnit_ChainHarmonics_WorkData::PendulumVelocity' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, HierarchyLine) == 0x000078, "Member 'FRigUnit_ChainHarmonics_WorkData::HierarchyLine' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics_WorkData, VelocityLines) == 0x000088, "Member 'FRigUnit_ChainHarmonics_WorkData::VelocityLines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigExecuteContext \ +static_assert(alignof(FControlRigExecuteContext) == 0x000010, "Wrong alignment on FControlRigExecuteContext"); \ +static_assert(sizeof(FControlRigExecuteContext) == 0x000150, "Wrong size on FControlRigExecuteContext"); \ + +#define DUMPER7_ASSERTS_FRigUnitMutable \ +static_assert(alignof(FRigUnitMutable) == 0x000010, "Wrong alignment on FRigUnitMutable"); \ +static_assert(sizeof(FRigUnitMutable) == 0x000160, "Wrong size on FRigUnitMutable"); \ +static_assert(offsetof(FRigUnitMutable, ExecuteContext) == 0x000010, "Member 'FRigUnitMutable::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HighlevelBaseMutable \ +static_assert(alignof(FRigUnit_HighlevelBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_HighlevelBaseMutable"); \ +static_assert(sizeof(FRigUnit_HighlevelBaseMutable) == 0x000160, "Wrong size on FRigUnit_HighlevelBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonics \ +static_assert(alignof(FRigUnit_ChainHarmonics) == 0x000010, "Wrong alignment on FRigUnit_ChainHarmonics"); \ +static_assert(sizeof(FRigUnit_ChainHarmonics) == 0x000430, "Wrong size on FRigUnit_ChainHarmonics"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, ChainRoot) == 0x000160, "Member 'FRigUnit_ChainHarmonics::ChainRoot' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, Speed) == 0x000168, "Member 'FRigUnit_ChainHarmonics::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, Reach) == 0x000180, "Member 'FRigUnit_ChainHarmonics::Reach' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, Wave) == 0x0001C8, "Member 'FRigUnit_ChainHarmonics::Wave' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, WaveCurve) == 0x000240, "Member 'FRigUnit_ChainHarmonics::WaveCurve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, Pendulum) == 0x0002C8, "Member 'FRigUnit_ChainHarmonics::Pendulum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, bDrawDebug) == 0x000320, "Member 'FRigUnit_ChainHarmonics::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, DrawWorldOffset) == 0x000330, "Member 'FRigUnit_ChainHarmonics::DrawWorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonics, WorkData) == 0x000390, "Member 'FRigUnit_ChainHarmonics::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElementWeight \ +static_assert(alignof(FRigElementWeight) == 0x000004, "Wrong alignment on FRigElementWeight"); \ +static_assert(sizeof(FRigElementWeight) == 0x00000C, "Wrong size on FRigElementWeight"); \ +static_assert(offsetof(FRigElementWeight, Location) == 0x000000, "Member 'FRigElementWeight::Location' has a wrong offset!"); \ +static_assert(offsetof(FRigElementWeight, Rotation) == 0x000004, "Member 'FRigElementWeight::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigElementWeight, Scale) == 0x000008, "Member 'FRigElementWeight::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigHierarchyCopyPasteContentPerElement \ +static_assert(alignof(FRigHierarchyCopyPasteContentPerElement) == 0x000010, "Wrong alignment on FRigHierarchyCopyPasteContentPerElement"); \ +static_assert(sizeof(FRigHierarchyCopyPasteContentPerElement) == 0x0001E0, "Wrong size on FRigHierarchyCopyPasteContentPerElement"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContentPerElement, Key) == 0x000000, "Member 'FRigHierarchyCopyPasteContentPerElement::Key' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContentPerElement, Content) == 0x000010, "Member 'FRigHierarchyCopyPasteContentPerElement::Content' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContentPerElement, Parents) == 0x000020, "Member 'FRigHierarchyCopyPasteContentPerElement::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContentPerElement, ParentWeights) == 0x000030, "Member 'FRigHierarchyCopyPasteContentPerElement::ParentWeights' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContentPerElement, Pose) == 0x000040, "Member 'FRigHierarchyCopyPasteContentPerElement::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigHierarchyCopyPasteContent \ +static_assert(alignof(FRigHierarchyCopyPasteContent) == 0x000008, "Wrong alignment on FRigHierarchyCopyPasteContent"); \ +static_assert(sizeof(FRigHierarchyCopyPasteContent) == 0x000050, "Wrong size on FRigHierarchyCopyPasteContent"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContent, Elements) == 0x000000, "Member 'FRigHierarchyCopyPasteContent::Elements' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContent, Types) == 0x000010, "Member 'FRigHierarchyCopyPasteContent::Types' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContent, Contents) == 0x000020, "Member 'FRigHierarchyCopyPasteContent::Contents' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContent, LocalTransforms) == 0x000030, "Member 'FRigHierarchyCopyPasteContent::LocalTransforms' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyCopyPasteContent, GlobalTransforms) == 0x000040, "Member 'FRigHierarchyCopyPasteContent::GlobalTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertRotation \ +static_assert(alignof(FRigUnit_ConvertRotation) == 0x000010, "Wrong alignment on FRigUnit_ConvertRotation"); \ +static_assert(sizeof(FRigUnit_ConvertRotation) == 0x000040, "Wrong size on FRigUnit_ConvertRotation"); \ +static_assert(offsetof(FRigUnit_ConvertRotation, Input) == 0x000008, "Member 'FRigUnit_ConvertRotation::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertRotation, Result) == 0x000020, "Member 'FRigUnit_ConvertRotation::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertVectorRotation \ +static_assert(alignof(FRigUnit_ConvertVectorRotation) == 0x000010, "Wrong alignment on FRigUnit_ConvertVectorRotation"); \ +static_assert(sizeof(FRigUnit_ConvertVectorRotation) == 0x000040, "Wrong size on FRigUnit_ConvertVectorRotation"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FABRIK_WorkData \ +static_assert(alignof(FRigUnit_FABRIK_WorkData) == 0x000008, "Wrong alignment on FRigUnit_FABRIK_WorkData"); \ +static_assert(sizeof(FRigUnit_FABRIK_WorkData) == 0x000040, "Wrong size on FRigUnit_FABRIK_WorkData"); \ +static_assert(offsetof(FRigUnit_FABRIK_WorkData, Chain) == 0x000000, "Member 'FRigUnit_FABRIK_WorkData::Chain' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK_WorkData, CachedItems) == 0x000010, "Member 'FRigUnit_FABRIK_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK_WorkData, CachedEffector) == 0x000020, "Member 'FRigUnit_FABRIK_WorkData::CachedEffector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FABRIKItemArray \ +static_assert(alignof(FRigUnit_FABRIKItemArray) == 0x000010, "Wrong alignment on FRigUnit_FABRIKItemArray"); \ +static_assert(sizeof(FRigUnit_FABRIKItemArray) == 0x000230, "Wrong size on FRigUnit_FABRIKItemArray"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, Items) == 0x000160, "Member 'FRigUnit_FABRIKItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, EffectorTransform) == 0x000170, "Member 'FRigUnit_FABRIKItemArray::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, Precision) == 0x0001D0, "Member 'FRigUnit_FABRIKItemArray::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, Weight) == 0x0001D4, "Member 'FRigUnit_FABRIKItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, bPropagateToChildren) == 0x0001D8, "Member 'FRigUnit_FABRIKItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, MaxIterations) == 0x0001DC, "Member 'FRigUnit_FABRIKItemArray::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, WorkData) == 0x0001E0, "Member 'FRigUnit_FABRIKItemArray::WorkData' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKItemArray, bSetEffectorTransform) == 0x000220, "Member 'FRigUnit_FABRIKItemArray::bSetEffectorTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationHierarchy \ +static_assert(alignof(FAnimationHierarchy) == 0x000008, "Wrong alignment on FAnimationHierarchy"); \ +static_assert(sizeof(FAnimationHierarchy) == 0x000088, "Wrong size on FAnimationHierarchy"); \ +static_assert(offsetof(FAnimationHierarchy, UserData) == 0x000078, "Member 'FAnimationHierarchy::UserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FindItemsWithMetadata \ +static_assert(alignof(FRigUnit_FindItemsWithMetadata) == 0x000008, "Wrong alignment on FRigUnit_FindItemsWithMetadata"); \ +static_assert(sizeof(FRigUnit_FindItemsWithMetadata) == 0x000028, "Wrong size on FRigUnit_FindItemsWithMetadata"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadata, Name) == 0x000008, "Member 'FRigUnit_FindItemsWithMetadata::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadata, Type) == 0x000010, "Member 'FRigUnit_FindItemsWithMetadata::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadata, Items) == 0x000018, "Member 'FRigUnit_FindItemsWithMetadata::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertVectorToQuaternion \ +static_assert(alignof(FRigUnit_ConvertVectorToQuaternion) == 0x000010, "Wrong alignment on FRigUnit_ConvertVectorToQuaternion"); \ +static_assert(sizeof(FRigUnit_ConvertVectorToQuaternion) == 0x000040, "Wrong size on FRigUnit_ConvertVectorToQuaternion"); \ +static_assert(offsetof(FRigUnit_ConvertVectorToQuaternion, Input) == 0x000008, "Member 'FRigUnit_ConvertVectorToQuaternion::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertVectorToQuaternion, Result) == 0x000020, "Member 'FRigUnit_ConvertVectorToQuaternion::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyBoneTransforms_PerBone \ +static_assert(alignof(FRigUnit_ModifyBoneTransforms_PerBone) == 0x000010, "Wrong alignment on FRigUnit_ModifyBoneTransforms_PerBone"); \ +static_assert(sizeof(FRigUnit_ModifyBoneTransforms_PerBone) == 0x000070, "Wrong size on FRigUnit_ModifyBoneTransforms_PerBone"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms_PerBone, bone) == 0x000000, "Member 'FRigUnit_ModifyBoneTransforms_PerBone::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms_PerBone, Transform) == 0x000010, "Member 'FRigUnit_ModifyBoneTransforms_PerBone::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyTransforms_WorkData \ +static_assert(alignof(FRigUnit_ModifyTransforms_WorkData) == 0x000008, "Wrong alignment on FRigUnit_ModifyTransforms_WorkData"); \ +static_assert(sizeof(FRigUnit_ModifyTransforms_WorkData) == 0x000010, "Wrong size on FRigUnit_ModifyTransforms_WorkData"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms_WorkData, CachedItems) == 0x000000, "Member 'FRigUnit_ModifyTransforms_WorkData::CachedItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyBoneTransforms_WorkData \ +static_assert(alignof(FRigUnit_ModifyBoneTransforms_WorkData) == 0x000008, "Wrong alignment on FRigUnit_ModifyBoneTransforms_WorkData"); \ +static_assert(sizeof(FRigUnit_ModifyBoneTransforms_WorkData) == 0x000010, "Wrong size on FRigUnit_ModifyBoneTransforms_WorkData"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyBoneTransforms \ +static_assert(alignof(FRigUnit_ModifyBoneTransforms) == 0x000010, "Wrong alignment on FRigUnit_ModifyBoneTransforms"); \ +static_assert(sizeof(FRigUnit_ModifyBoneTransforms) == 0x000190, "Wrong size on FRigUnit_ModifyBoneTransforms"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, BoneToModify) == 0x000160, "Member 'FRigUnit_ModifyBoneTransforms::BoneToModify' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, Weight) == 0x000170, "Member 'FRigUnit_ModifyBoneTransforms::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, WeightMinimum) == 0x000174, "Member 'FRigUnit_ModifyBoneTransforms::WeightMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, WeightMaximum) == 0x000178, "Member 'FRigUnit_ModifyBoneTransforms::WeightMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, Mode) == 0x00017C, "Member 'FRigUnit_ModifyBoneTransforms::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyBoneTransforms, WorkData) == 0x000180, "Member 'FRigUnit_ModifyBoneTransforms::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElement \ +static_assert(alignof(FRigElement) == 0x000008, "Wrong alignment on FRigElement"); \ +static_assert(sizeof(FRigElement) == 0x000018, "Wrong size on FRigElement"); \ +static_assert(offsetof(FRigElement, Name) == 0x000008, "Member 'FRigElement::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigElement, Index) == 0x000010, "Member 'FRigElement::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBone \ +static_assert(alignof(FRigBone) == 0x000010, "Wrong alignment on FRigBone"); \ +static_assert(sizeof(FRigBone) == 0x000170, "Wrong size on FRigBone"); \ +static_assert(offsetof(FRigBone, ParentName) == 0x000018, "Member 'FRigBone::ParentName' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, ParentIndex) == 0x000020, "Member 'FRigBone::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, InitialTransform) == 0x000030, "Member 'FRigBone::InitialTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, GlobalTransform) == 0x000090, "Member 'FRigBone::GlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, LocalTransform) == 0x0000F0, "Member 'FRigBone::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, Dependents) == 0x000150, "Member 'FRigBone::Dependents' has a wrong offset!"); \ +static_assert(offsetof(FRigBone, Type) == 0x000160, "Member 'FRigBone::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugBaseMutable \ +static_assert(alignof(FRigUnit_DebugBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_DebugBaseMutable"); \ +static_assert(sizeof(FRigUnit_DebugBaseMutable) == 0x000160, "Wrong size on FRigUnit_DebugBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigDispatchFactory \ +static_assert(alignof(FRigDispatchFactory) == 0x000008, "Wrong alignment on FRigDispatchFactory"); \ +static_assert(sizeof(FRigDispatchFactory) == 0x000070, "Wrong size on FRigDispatchFactory"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_MetadataBase \ +static_assert(alignof(FRigDispatch_MetadataBase) == 0x000008, "Wrong alignment on FRigDispatch_MetadataBase"); \ +static_assert(sizeof(FRigDispatch_MetadataBase) == 0x0000A0, "Wrong size on FRigDispatch_MetadataBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertQuaternionToVector \ +static_assert(alignof(FRigUnit_ConvertQuaternionToVector) == 0x000010, "Wrong alignment on FRigUnit_ConvertQuaternionToVector"); \ +static_assert(sizeof(FRigUnit_ConvertQuaternionToVector) == 0x000050, "Wrong size on FRigUnit_ConvertQuaternionToVector"); \ +static_assert(offsetof(FRigUnit_ConvertQuaternionToVector, Input) == 0x000010, "Member 'FRigUnit_ConvertQuaternionToVector::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertQuaternionToVector, Result) == 0x000030, "Member 'FRigUnit_ConvertQuaternionToVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigMultiParentElement \ +static_assert(alignof(FRigMultiParentElement) == 0x000010, "Wrong alignment on FRigMultiParentElement"); \ +static_assert(sizeof(FRigMultiParentElement) == 0x0003D0, "Wrong size on FRigMultiParentElement"); \ + +#define DUMPER7_ASSERTS_FRegionScaleFactors \ +static_assert(alignof(FRegionScaleFactors) == 0x000004, "Wrong alignment on FRegionScaleFactors"); \ +static_assert(sizeof(FRegionScaleFactors) == 0x000010, "Wrong size on FRegionScaleFactors"); \ +static_assert(offsetof(FRegionScaleFactors, PositiveWidth) == 0x000000, "Member 'FRegionScaleFactors::PositiveWidth' has a wrong offset!"); \ +static_assert(offsetof(FRegionScaleFactors, NegativeWidth) == 0x000004, "Member 'FRegionScaleFactors::NegativeWidth' has a wrong offset!"); \ +static_assert(offsetof(FRegionScaleFactors, PositiveHeight) == 0x000008, "Member 'FRegionScaleFactors::PositiveHeight' has a wrong offset!"); \ +static_assert(offsetof(FRegionScaleFactors, NegativeHeight) == 0x00000C, "Member 'FRegionScaleFactors::NegativeHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlValueStorage \ +static_assert(alignof(FRigControlValueStorage) == 0x000004, "Wrong alignment on FRigControlValueStorage"); \ +static_assert(sizeof(FRigControlValueStorage) == 0x000084, "Wrong size on FRigControlValueStorage"); \ +static_assert(offsetof(FRigControlValueStorage, Float00) == 0x000000, "Member 'FRigControlValueStorage::Float00' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float01) == 0x000004, "Member 'FRigControlValueStorage::Float01' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float02) == 0x000008, "Member 'FRigControlValueStorage::Float02' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float03) == 0x00000C, "Member 'FRigControlValueStorage::Float03' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float10) == 0x000010, "Member 'FRigControlValueStorage::Float10' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float11) == 0x000014, "Member 'FRigControlValueStorage::Float11' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float12) == 0x000018, "Member 'FRigControlValueStorage::Float12' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float13) == 0x00001C, "Member 'FRigControlValueStorage::Float13' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float20) == 0x000020, "Member 'FRigControlValueStorage::Float20' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float21) == 0x000024, "Member 'FRigControlValueStorage::Float21' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float22) == 0x000028, "Member 'FRigControlValueStorage::Float22' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float23) == 0x00002C, "Member 'FRigControlValueStorage::Float23' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float30) == 0x000030, "Member 'FRigControlValueStorage::Float30' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float31) == 0x000034, "Member 'FRigControlValueStorage::Float31' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float32) == 0x000038, "Member 'FRigControlValueStorage::Float32' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float33) == 0x00003C, "Member 'FRigControlValueStorage::Float33' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float00_2) == 0x000040, "Member 'FRigControlValueStorage::Float00_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float01_2) == 0x000044, "Member 'FRigControlValueStorage::Float01_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float02_2) == 0x000048, "Member 'FRigControlValueStorage::Float02_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float03_2) == 0x00004C, "Member 'FRigControlValueStorage::Float03_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float10_2) == 0x000050, "Member 'FRigControlValueStorage::Float10_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float11_2) == 0x000054, "Member 'FRigControlValueStorage::Float11_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float12_2) == 0x000058, "Member 'FRigControlValueStorage::Float12_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float13_2) == 0x00005C, "Member 'FRigControlValueStorage::Float13_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float20_2) == 0x000060, "Member 'FRigControlValueStorage::Float20_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float21_2) == 0x000064, "Member 'FRigControlValueStorage::Float21_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float22_2) == 0x000068, "Member 'FRigControlValueStorage::Float22_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float23_2) == 0x00006C, "Member 'FRigControlValueStorage::Float23_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float30_2) == 0x000070, "Member 'FRigControlValueStorage::Float30_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float31_2) == 0x000074, "Member 'FRigControlValueStorage::Float31_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float32_2) == 0x000078, "Member 'FRigControlValueStorage::Float32_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, Float33_2) == 0x00007C, "Member 'FRigControlValueStorage::Float33_2' has a wrong offset!"); \ +static_assert(offsetof(FRigControlValueStorage, bValid) == 0x000080, "Member 'FRigControlValueStorage::bValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlValue \ +static_assert(alignof(FRigControlValue) == 0x000004, "Wrong alignment on FRigControlValue"); \ +static_assert(sizeof(FRigControlValue) == 0x000084, "Wrong size on FRigControlValue"); \ +static_assert(offsetof(FRigControlValue, FloatStorage) == 0x000000, "Member 'FRigControlValue::FloatStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControl \ +static_assert(alignof(FRigControl) == 0x000010, "Wrong alignment on FRigControl"); \ +static_assert(sizeof(FRigControl) == 0x000360, "Wrong size on FRigControl"); \ +static_assert(offsetof(FRigControl, ControlType) == 0x000018, "Member 'FRigControl::ControlType' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, DisplayName) == 0x00001C, "Member 'FRigControl::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, ParentName) == 0x000024, "Member 'FRigControl::ParentName' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, ParentIndex) == 0x00002C, "Member 'FRigControl::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, SpaceName) == 0x000030, "Member 'FRigControl::SpaceName' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, SpaceIndex) == 0x000038, "Member 'FRigControl::SpaceIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, OffsetTransform) == 0x000040, "Member 'FRigControl::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, InitialValue) == 0x0000A0, "Member 'FRigControl::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, Value) == 0x000124, "Member 'FRigControl::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, PrimaryAxis) == 0x0001A8, "Member 'FRigControl::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bIsCurve) == 0x0001A9, "Member 'FRigControl::bIsCurve' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bAnimatable) == 0x0001AA, "Member 'FRigControl::bAnimatable' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bLimitTranslation) == 0x0001AB, "Member 'FRigControl::bLimitTranslation' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bLimitRotation) == 0x0001AC, "Member 'FRigControl::bLimitRotation' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bLimitScale) == 0x0001AD, "Member 'FRigControl::bLimitScale' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bDrawLimits) == 0x0001AE, "Member 'FRigControl::bDrawLimits' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, MinimumValue) == 0x0001B0, "Member 'FRigControl::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, MaximumValue) == 0x000234, "Member 'FRigControl::MaximumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bGizmoEnabled) == 0x0002B8, "Member 'FRigControl::bGizmoEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bGizmoVisible) == 0x0002B9, "Member 'FRigControl::bGizmoVisible' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, GizmoName) == 0x0002BC, "Member 'FRigControl::GizmoName' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, GizmoTransform) == 0x0002D0, "Member 'FRigControl::GizmoTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, GizmoColor) == 0x000330, "Member 'FRigControl::GizmoColor' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, Dependents) == 0x000340, "Member 'FRigControl::Dependents' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, bIsTransientControl) == 0x000350, "Member 'FRigControl::bIsTransientControl' has a wrong offset!"); \ +static_assert(offsetof(FRigControl, ControlEnum) == 0x000358, "Member 'FRigControl::ControlEnum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlLimitEnabled \ +static_assert(alignof(FRigControlLimitEnabled) == 0x000001, "Wrong alignment on FRigControlLimitEnabled"); \ +static_assert(sizeof(FRigControlLimitEnabled) == 0x000002, "Wrong size on FRigControlLimitEnabled"); \ +static_assert(offsetof(FRigControlLimitEnabled, bMinimum) == 0x000000, "Member 'FRigControlLimitEnabled::bMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigControlLimitEnabled, bMaximum) == 0x000001, "Member 'FRigControlLimitEnabled::bMaximum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlElementCustomization \ +static_assert(alignof(FRigControlElementCustomization) == 0x000008, "Wrong alignment on FRigControlElementCustomization"); \ +static_assert(sizeof(FRigControlElementCustomization) == 0x000020, "Wrong size on FRigControlElementCustomization"); \ +static_assert(offsetof(FRigControlElementCustomization, AvailableSpaces) == 0x000000, "Member 'FRigControlElementCustomization::AvailableSpaces' has a wrong offset!"); \ +static_assert(offsetof(FRigControlElementCustomization, RemovedSpaces) == 0x000010, "Member 'FRigControlElementCustomization::RemovedSpaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlSettings \ +static_assert(alignof(FRigControlSettings) == 0x000008, "Wrong alignment on FRigControlSettings"); \ +static_assert(sizeof(FRigControlSettings) == 0x0001B8, "Wrong size on FRigControlSettings"); \ +static_assert(offsetof(FRigControlSettings, AnimationType) == 0x000000, "Member 'FRigControlSettings::AnimationType' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, ControlType) == 0x000001, "Member 'FRigControlSettings::ControlType' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, DisplayName) == 0x000004, "Member 'FRigControlSettings::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, PrimaryAxis) == 0x00000C, "Member 'FRigControlSettings::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bIsCurve) == 0x00000D, "Member 'FRigControlSettings::bIsCurve' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, LimitEnabled) == 0x000010, "Member 'FRigControlSettings::LimitEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bDrawLimits) == 0x000020, "Member 'FRigControlSettings::bDrawLimits' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, MinimumValue) == 0x000024, "Member 'FRigControlSettings::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, MaximumValue) == 0x0000A8, "Member 'FRigControlSettings::MaximumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bShapeVisible) == 0x00012C, "Member 'FRigControlSettings::bShapeVisible' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, ShapeVisibility) == 0x00012D, "Member 'FRigControlSettings::ShapeVisibility' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, ShapeName) == 0x000130, "Member 'FRigControlSettings::ShapeName' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, ShapeColor) == 0x000138, "Member 'FRigControlSettings::ShapeColor' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bIsTransientControl) == 0x000148, "Member 'FRigControlSettings::bIsTransientControl' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, ControlEnum) == 0x000150, "Member 'FRigControlSettings::ControlEnum' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, Customization) == 0x000158, "Member 'FRigControlSettings::Customization' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, DrivenControls) == 0x000178, "Member 'FRigControlSettings::DrivenControls' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bGroupWithParentControl) == 0x000198, "Member 'FRigControlSettings::bGroupWithParentControl' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bRestrictSpaceSwitching) == 0x000199, "Member 'FRigControlSettings::bRestrictSpaceSwitching' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, FilteredChannels) == 0x0001A0, "Member 'FRigControlSettings::FilteredChannels' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, PreferredRotationOrder) == 0x0001B0, "Member 'FRigControlSettings::PreferredRotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigControlSettings, bUsePreferredRotationOrder) == 0x0001B1, "Member 'FRigControlSettings::bUsePreferredRotationOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigPreferredEulerAngles \ +static_assert(alignof(FRigPreferredEulerAngles) == 0x000008, "Wrong alignment on FRigPreferredEulerAngles"); \ +static_assert(sizeof(FRigPreferredEulerAngles) == 0x000038, "Wrong size on FRigPreferredEulerAngles"); \ +static_assert(offsetof(FRigPreferredEulerAngles, RotationOrder) == 0x000000, "Member 'FRigPreferredEulerAngles::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigPreferredEulerAngles, Current) == 0x000008, "Member 'FRigPreferredEulerAngles::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigPreferredEulerAngles, Initial) == 0x000020, "Member 'FRigPreferredEulerAngles::Initial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlElement \ +static_assert(alignof(FRigControlElement) == 0x000010, "Wrong alignment on FRigControlElement"); \ +static_assert(sizeof(FRigControlElement) == 0x000910, "Wrong size on FRigControlElement"); \ +static_assert(offsetof(FRigControlElement, Settings) == 0x0003D0, "Member 'FRigControlElement::Settings' has a wrong offset!"); \ +static_assert(offsetof(FRigControlElement, Offset) == 0x000590, "Member 'FRigControlElement::Offset' has a wrong offset!"); \ +static_assert(offsetof(FRigControlElement, Shape) == 0x000730, "Member 'FRigControlElement::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigControlElement, PreferredEulerAngles) == 0x0008D0, "Member 'FRigControlElement::PreferredEulerAngles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ControlRigInputPose \ +static_assert(alignof(FAnimNode_ControlRigInputPose) == 0x000008, "Wrong alignment on FAnimNode_ControlRigInputPose"); \ +static_assert(sizeof(FAnimNode_ControlRigInputPose) == 0x000030, "Wrong size on FAnimNode_ControlRigInputPose"); \ +static_assert(offsetof(FAnimNode_ControlRigInputPose, InputPose) == 0x000010, "Member 'FAnimNode_ControlRigInputPose::InputPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigSingleParentElement \ +static_assert(alignof(FRigSingleParentElement) == 0x000010, "Wrong alignment on FRigSingleParentElement"); \ +static_assert(sizeof(FRigSingleParentElement) == 0x0002E0, "Wrong size on FRigSingleParentElement"); \ + +#define DUMPER7_ASSERTS_FRigPoseElement \ +static_assert(alignof(FRigPoseElement) == 0x000010, "Wrong alignment on FRigPoseElement"); \ +static_assert(sizeof(FRigPoseElement) == 0x0000F0, "Wrong size on FRigPoseElement"); \ +static_assert(offsetof(FRigPoseElement, Index) == 0x000000, "Member 'FRigPoseElement::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigPoseElement, GlobalTransform) == 0x000020, "Member 'FRigPoseElement::GlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigPoseElement, LocalTransform) == 0x000080, "Member 'FRigPoseElement::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigPoseElement, CurveValue) == 0x0000E0, "Member 'FRigPoseElement::CurveValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigPose \ +static_assert(alignof(FRigPose) == 0x000008, "Wrong alignment on FRigPose"); \ +static_assert(sizeof(FRigPose) == 0x000070, "Wrong size on FRigPose"); \ +static_assert(offsetof(FRigPose, Elements) == 0x000000, "Member 'FRigPose::Elements' has a wrong offset!"); \ +static_assert(offsetof(FRigPose, HierarchyTopologyVersion) == 0x000010, "Member 'FRigPose::HierarchyTopologyVersion' has a wrong offset!"); \ +static_assert(offsetof(FRigPose, PoseHash) == 0x000014, "Member 'FRigPose::PoseHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyBaseMutable \ +static_assert(alignof(FRigUnit_HierarchyBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_HierarchyBaseMutable"); \ +static_assert(sizeof(FRigUnit_HierarchyBaseMutable) == 0x000160, "Wrong size on FRigUnit_HierarchyBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseLoop \ +static_assert(alignof(FRigUnit_PoseLoop) == 0x000010, "Wrong alignment on FRigUnit_PoseLoop"); \ +static_assert(sizeof(FRigUnit_PoseLoop) == 0x000410, "Wrong size on FRigUnit_PoseLoop"); \ +static_assert(offsetof(FRigUnit_PoseLoop, BlockToRun) == 0x000160, "Member 'FRigUnit_PoseLoop::BlockToRun' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Pose) == 0x000168, "Member 'FRigUnit_PoseLoop::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Item) == 0x0001D8, "Member 'FRigUnit_PoseLoop::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, GlobalTransform) == 0x0001F0, "Member 'FRigUnit_PoseLoop::GlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, LocalTransform) == 0x000250, "Member 'FRigUnit_PoseLoop::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, CurveValue) == 0x0002B0, "Member 'FRigUnit_PoseLoop::CurveValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Index) == 0x0002B4, "Member 'FRigUnit_PoseLoop::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Count) == 0x0002B8, "Member 'FRigUnit_PoseLoop::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Ratio) == 0x0002BC, "Member 'FRigUnit_PoseLoop::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseLoop, Completed) == 0x0002C0, "Member 'FRigUnit_PoseLoop::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BinaryFloatOp \ +static_assert(alignof(FRigUnit_BinaryFloatOp) == 0x000008, "Wrong alignment on FRigUnit_BinaryFloatOp"); \ +static_assert(sizeof(FRigUnit_BinaryFloatOp) == 0x000018, "Wrong size on FRigUnit_BinaryFloatOp"); \ +static_assert(offsetof(FRigUnit_BinaryFloatOp, Argument0) == 0x000008, "Member 'FRigUnit_BinaryFloatOp::Argument0' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryFloatOp, Argument1) == 0x00000C, "Member 'FRigUnit_BinaryFloatOp::Argument1' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryFloatOp, Result) == 0x000010, "Member 'FRigUnit_BinaryFloatOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MultiFABRIK_EndEffector \ +static_assert(alignof(FRigUnit_MultiFABRIK_EndEffector) == 0x000008, "Wrong alignment on FRigUnit_MultiFABRIK_EndEffector"); \ +static_assert(sizeof(FRigUnit_MultiFABRIK_EndEffector) == 0x000020, "Wrong size on FRigUnit_MultiFABRIK_EndEffector"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK_EndEffector, bone) == 0x000000, "Member 'FRigUnit_MultiFABRIK_EndEffector::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK_EndEffector, Location) == 0x000008, "Member 'FRigUnit_MultiFABRIK_EndEffector::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigCurve \ +static_assert(alignof(FRigCurve) == 0x000008, "Wrong alignment on FRigCurve"); \ +static_assert(sizeof(FRigCurve) == 0x000020, "Wrong size on FRigCurve"); \ +static_assert(offsetof(FRigCurve, Value) == 0x000018, "Member 'FRigCurve::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimBone_Target \ +static_assert(alignof(FRigUnit_AimBone_Target) == 0x000008, "Wrong alignment on FRigUnit_AimBone_Target"); \ +static_assert(sizeof(FRigUnit_AimBone_Target) == 0x000048, "Wrong size on FRigUnit_AimBone_Target"); \ +static_assert(offsetof(FRigUnit_AimBone_Target, Weight) == 0x000000, "Member 'FRigUnit_AimBone_Target::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_Target, Axis) == 0x000008, "Member 'FRigUnit_AimBone_Target::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_Target, Target) == 0x000020, "Member 'FRigUnit_AimBone_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_Target, Kind) == 0x000038, "Member 'FRigUnit_AimBone_Target::Kind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_Target, Space) == 0x00003C, "Member 'FRigUnit_AimBone_Target::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigAnimNodeEventName \ +static_assert(alignof(FControlRigAnimNodeEventName) == 0x000004, "Wrong alignment on FControlRigAnimNodeEventName"); \ +static_assert(sizeof(FControlRigAnimNodeEventName) == 0x000008, "Wrong size on FControlRigAnimNodeEventName"); \ +static_assert(offsetof(FControlRigAnimNodeEventName, EventName) == 0x000000, "Member 'FControlRigAnimNodeEventName::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Subtract_FloatFloat \ +static_assert(alignof(FRigUnit_Subtract_FloatFloat) == 0x000008, "Wrong alignment on FRigUnit_Subtract_FloatFloat"); \ +static_assert(sizeof(FRigUnit_Subtract_FloatFloat) == 0x000018, "Wrong size on FRigUnit_Subtract_FloatFloat"); \ + +#define DUMPER7_ASSERTS_FRigElementKeyCollection \ +static_assert(alignof(FRigElementKeyCollection) == 0x000008, "Wrong alignment on FRigElementKeyCollection"); \ +static_assert(sizeof(FRigElementKeyCollection) == 0x000010, "Wrong size on FRigElementKeyCollection"); \ +static_assert(offsetof(FRigElementKeyCollection, Keys) == 0x000000, "Member 'FRigElementKeyCollection::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SlideChain_WorkData \ +static_assert(alignof(FRigUnit_SlideChain_WorkData) == 0x000008, "Wrong alignment on FRigUnit_SlideChain_WorkData"); \ +static_assert(sizeof(FRigUnit_SlideChain_WorkData) == 0x000048, "Wrong size on FRigUnit_SlideChain_WorkData"); \ +static_assert(offsetof(FRigUnit_SlideChain_WorkData, ChainLength) == 0x000000, "Member 'FRigUnit_SlideChain_WorkData::ChainLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain_WorkData, ItemSegments) == 0x000008, "Member 'FRigUnit_SlideChain_WorkData::ItemSegments' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain_WorkData, CachedItems) == 0x000018, "Member 'FRigUnit_SlideChain_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain_WorkData, Transforms) == 0x000028, "Member 'FRigUnit_SlideChain_WorkData::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain_WorkData, BlendedTransforms) == 0x000038, "Member 'FRigUnit_SlideChain_WorkData::BlendedTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SlideChainPerItem \ +static_assert(alignof(FRigUnit_SlideChainPerItem) == 0x000010, "Wrong alignment on FRigUnit_SlideChainPerItem"); \ +static_assert(sizeof(FRigUnit_SlideChainPerItem) == 0x0001C0, "Wrong size on FRigUnit_SlideChainPerItem"); \ +static_assert(offsetof(FRigUnit_SlideChainPerItem, Items) == 0x000160, "Member 'FRigUnit_SlideChainPerItem::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainPerItem, SlideAmount) == 0x000170, "Member 'FRigUnit_SlideChainPerItem::SlideAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainPerItem, bPropagateToChildren) == 0x000174, "Member 'FRigUnit_SlideChainPerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainPerItem, WorkData) == 0x000178, "Member 'FRigUnit_SlideChainPerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigSpace \ +static_assert(alignof(FRigSpace) == 0x000010, "Wrong alignment on FRigSpace"); \ +static_assert(sizeof(FRigSpace) == 0x0000F0, "Wrong size on FRigSpace"); \ +static_assert(offsetof(FRigSpace, SpaceType) == 0x000018, "Member 'FRigSpace::SpaceType' has a wrong offset!"); \ +static_assert(offsetof(FRigSpace, ParentName) == 0x00001C, "Member 'FRigSpace::ParentName' has a wrong offset!"); \ +static_assert(offsetof(FRigSpace, ParentIndex) == 0x000024, "Member 'FRigSpace::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigSpace, InitialTransform) == 0x000030, "Member 'FRigSpace::InitialTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigSpace, LocalTransform) == 0x000090, "Member 'FRigSpace::LocalTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigHierarchyRef \ +static_assert(alignof(FRigHierarchyRef) == 0x000001, "Wrong alignment on FRigHierarchyRef"); \ +static_assert(sizeof(FRigHierarchyRef) == 0x000001, "Wrong size on FRigHierarchyRef"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DistributeRotation_WorkData \ +static_assert(alignof(FRigUnit_DistributeRotation_WorkData) == 0x000008, "Wrong alignment on FRigUnit_DistributeRotation_WorkData"); \ +static_assert(sizeof(FRigUnit_DistributeRotation_WorkData) == 0x000050, "Wrong size on FRigUnit_DistributeRotation_WorkData"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_WorkData, CachedItems) == 0x000000, "Member 'FRigUnit_DistributeRotation_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_WorkData, ItemRotationA) == 0x000010, "Member 'FRigUnit_DistributeRotation_WorkData::ItemRotationA' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_WorkData, ItemRotationB) == 0x000020, "Member 'FRigUnit_DistributeRotation_WorkData::ItemRotationB' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_WorkData, ItemRotationT) == 0x000030, "Member 'FRigUnit_DistributeRotation_WorkData::ItemRotationT' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_WorkData, ItemLocalTransforms) == 0x000040, "Member 'FRigUnit_DistributeRotation_WorkData::ItemLocalTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DistributeRotation_Rotation \ +static_assert(alignof(FRigUnit_DistributeRotation_Rotation) == 0x000010, "Wrong alignment on FRigUnit_DistributeRotation_Rotation"); \ +static_assert(sizeof(FRigUnit_DistributeRotation_Rotation) == 0x000030, "Wrong size on FRigUnit_DistributeRotation_Rotation"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_Rotation, Rotation) == 0x000000, "Member 'FRigUnit_DistributeRotation_Rotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation_Rotation, Ratio) == 0x000020, "Member 'FRigUnit_DistributeRotation_Rotation::Ratio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DistributeRotationForItemArray \ +static_assert(alignof(FRigUnit_DistributeRotationForItemArray) == 0x000010, "Wrong alignment on FRigUnit_DistributeRotationForItemArray"); \ +static_assert(sizeof(FRigUnit_DistributeRotationForItemArray) == 0x0001E0, "Wrong size on FRigUnit_DistributeRotationForItemArray"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForItemArray, Items) == 0x000160, "Member 'FRigUnit_DistributeRotationForItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForItemArray, Rotations) == 0x000170, "Member 'FRigUnit_DistributeRotationForItemArray::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForItemArray, RotationEaseType) == 0x000180, "Member 'FRigUnit_DistributeRotationForItemArray::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForItemArray, Weight) == 0x000184, "Member 'FRigUnit_DistributeRotationForItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForItemArray, WorkData) == 0x000188, "Member 'FRigUnit_DistributeRotationForItemArray::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigAnimInstanceProxy \ +static_assert(alignof(FControlRigAnimInstanceProxy) == 0x000010, "Wrong alignment on FControlRigAnimInstanceProxy"); \ +static_assert(sizeof(FControlRigAnimInstanceProxy) == 0x0007A0, "Wrong size on FControlRigAnimInstanceProxy"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DynamicHierarchyBaseMutable \ +static_assert(alignof(FRigUnit_DynamicHierarchyBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_DynamicHierarchyBaseMutable"); \ +static_assert(sizeof(FRigUnit_DynamicHierarchyBaseMutable) == 0x000160, "Wrong size on FRigUnit_DynamicHierarchyBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddElement \ +static_assert(alignof(FRigUnit_HierarchyAddElement) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddElement"); \ +static_assert(sizeof(FRigUnit_HierarchyAddElement) == 0x000180, "Wrong size on FRigUnit_HierarchyAddElement"); \ +static_assert(offsetof(FRigUnit_HierarchyAddElement, Parent) == 0x000160, "Member 'FRigUnit_HierarchyAddElement::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddElement, Name) == 0x00016C, "Member 'FRigUnit_HierarchyAddElement::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddElement, Item) == 0x000174, "Member 'FRigUnit_HierarchyAddElement::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddBone \ +static_assert(alignof(FRigUnit_HierarchyAddBone) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddBone"); \ +static_assert(sizeof(FRigUnit_HierarchyAddBone) == 0x0001F0, "Wrong size on FRigUnit_HierarchyAddBone"); \ +static_assert(offsetof(FRigUnit_HierarchyAddBone, Transform) == 0x000180, "Member 'FRigUnit_HierarchyAddBone::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddBone, Space) == 0x0001E0, "Member 'FRigUnit_HierarchyAddBone::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigTestDataVariable \ +static_assert(alignof(FControlRigTestDataVariable) == 0x000008, "Wrong alignment on FControlRigTestDataVariable"); \ +static_assert(sizeof(FControlRigTestDataVariable) == 0x000020, "Wrong size on FControlRigTestDataVariable"); \ +static_assert(offsetof(FControlRigTestDataVariable, Name) == 0x000000, "Member 'FControlRigTestDataVariable::Name' has a wrong offset!"); \ +static_assert(offsetof(FControlRigTestDataVariable, CPPType) == 0x000008, "Member 'FControlRigTestDataVariable::CPPType' has a wrong offset!"); \ +static_assert(offsetof(FControlRigTestDataVariable, Value) == 0x000010, "Member 'FControlRigTestDataVariable::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigTestDataFrame \ +static_assert(alignof(FControlRigTestDataFrame) == 0x000008, "Wrong alignment on FControlRigTestDataFrame"); \ +static_assert(sizeof(FControlRigTestDataFrame) == 0x000090, "Wrong size on FControlRigTestDataFrame"); \ +static_assert(offsetof(FControlRigTestDataFrame, AbsoluteTime) == 0x000000, "Member 'FControlRigTestDataFrame::AbsoluteTime' has a wrong offset!"); \ +static_assert(offsetof(FControlRigTestDataFrame, DeltaTime) == 0x000008, "Member 'FControlRigTestDataFrame::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(FControlRigTestDataFrame, Variables) == 0x000010, "Member 'FControlRigTestDataFrame::Variables' has a wrong offset!"); \ +static_assert(offsetof(FControlRigTestDataFrame, Pose) == 0x000020, "Member 'FControlRigTestDataFrame::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlFloat_LimitSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControlFloat_LimitSettings) == 0x000004, "Wrong alignment on FRigUnit_HierarchyAddControlFloat_LimitSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlFloat_LimitSettings) == 0x000010, "Wrong size on FRigUnit_HierarchyAddControlFloat_LimitSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_LimitSettings, Limit) == 0x000000, "Member 'FRigUnit_HierarchyAddControlFloat_LimitSettings::Limit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_LimitSettings, MinValue) == 0x000004, "Member 'FRigUnit_HierarchyAddControlFloat_LimitSettings::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_LimitSettings, MaxValue) == 0x000008, "Member 'FRigUnit_HierarchyAddControlFloat_LimitSettings::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_LimitSettings, bDrawLimits) == 0x00000C, "Member 'FRigUnit_HierarchyAddControlFloat_LimitSettings::bDrawLimits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControl_ShapeSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControl_ShapeSettings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControl_ShapeSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControl_ShapeSettings) == 0x000080, "Wrong size on FRigUnit_HierarchyAddControl_ShapeSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ShapeSettings, bVisible) == 0x000000, "Member 'FRigUnit_HierarchyAddControl_ShapeSettings::bVisible' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ShapeSettings, Name) == 0x000004, "Member 'FRigUnit_HierarchyAddControl_ShapeSettings::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ShapeSettings, Color) == 0x00000C, "Member 'FRigUnit_HierarchyAddControl_ShapeSettings::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ShapeSettings, Transform) == 0x000020, "Member 'FRigUnit_HierarchyAddControl_ShapeSettings::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControl_ProxySettings \ +static_assert(alignof(FRigUnit_HierarchyAddControl_ProxySettings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyAddControl_ProxySettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControl_ProxySettings) == 0x000020, "Wrong size on FRigUnit_HierarchyAddControl_ProxySettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ProxySettings, bIsProxy) == 0x000000, "Member 'FRigUnit_HierarchyAddControl_ProxySettings::bIsProxy' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ProxySettings, DrivenControls) == 0x000008, "Member 'FRigUnit_HierarchyAddControl_ProxySettings::DrivenControls' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_ProxySettings, ShapeVisibility) == 0x000018, "Member 'FRigUnit_HierarchyAddControl_ProxySettings::ShapeVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControl_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControl_Settings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyAddControl_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControl_Settings) == 0x000010, "Wrong size on FRigUnit_HierarchyAddControl_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControl_Settings, DisplayName) == 0x000008, "Member 'FRigUnit_HierarchyAddControl_Settings::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlFloat_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlFloat_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlFloat_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlFloat_Settings) == 0x0000D0, "Wrong size on FRigUnit_HierarchyAddControlFloat_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_Settings, PrimaryAxis) == 0x000010, "Member 'FRigUnit_HierarchyAddControlFloat_Settings::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_Settings, Limits) == 0x000014, "Member 'FRigUnit_HierarchyAddControlFloat_Settings::Limits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_Settings, Shape) == 0x000030, "Member 'FRigUnit_HierarchyAddControlFloat_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat_Settings, Proxy) == 0x0000B0, "Member 'FRigUnit_HierarchyAddControlFloat_Settings::Proxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlElement \ +static_assert(alignof(FRigUnit_HierarchyAddControlElement) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlElement"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlElement) == 0x0001F0, "Wrong size on FRigUnit_HierarchyAddControlElement"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlElement, OffsetTransform) == 0x000180, "Member 'FRigUnit_HierarchyAddControlElement::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlElement, OffsetSpace) == 0x0001E0, "Member 'FRigUnit_HierarchyAddControlElement::OffsetSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlFloat \ +static_assert(alignof(FRigUnit_HierarchyAddControlFloat) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlFloat"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlFloat) == 0x0002C0, "Wrong size on FRigUnit_HierarchyAddControlFloat"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat, InitialValue) == 0x0001E8, "Member 'FRigUnit_HierarchyAddControlFloat::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlFloat, Settings) == 0x0001F0, "Member 'FRigUnit_HierarchyAddControlFloat::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInfluenceEntry \ +static_assert(alignof(FRigInfluenceEntry) == 0x000008, "Wrong alignment on FRigInfluenceEntry"); \ +static_assert(sizeof(FRigInfluenceEntry) == 0x000020, "Wrong size on FRigInfluenceEntry"); \ +static_assert(offsetof(FRigInfluenceEntry, Source) == 0x000000, "Member 'FRigInfluenceEntry::Source' has a wrong offset!"); \ +static_assert(offsetof(FRigInfluenceEntry, AffectedList) == 0x000010, "Member 'FRigInfluenceEntry::AffectedList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInfluenceMap \ +static_assert(alignof(FRigInfluenceMap) == 0x000008, "Wrong alignment on FRigInfluenceMap"); \ +static_assert(sizeof(FRigInfluenceMap) == 0x000068, "Wrong size on FRigInfluenceMap"); \ +static_assert(offsetof(FRigInfluenceMap, EventName) == 0x000000, "Member 'FRigInfluenceMap::EventName' has a wrong offset!"); \ +static_assert(offsetof(FRigInfluenceMap, Entries) == 0x000008, "Member 'FRigInfluenceMap::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigInfluenceMap, KeyToIndex) == 0x000018, "Member 'FRigInfluenceMap::KeyToIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInfluenceMapPerEvent \ +static_assert(alignof(FRigInfluenceMapPerEvent) == 0x000008, "Wrong alignment on FRigInfluenceMapPerEvent"); \ +static_assert(sizeof(FRigInfluenceMapPerEvent) == 0x000060, "Wrong size on FRigInfluenceMapPerEvent"); \ +static_assert(offsetof(FRigInfluenceMapPerEvent, Maps) == 0x000000, "Member 'FRigInfluenceMapPerEvent::Maps' has a wrong offset!"); \ +static_assert(offsetof(FRigInfluenceMapPerEvent, EventToIndex) == 0x000010, "Member 'FRigInfluenceMapPerEvent::EventToIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugVector \ +static_assert(alignof(FRigUnit_VisualDebugVector) == 0x000008, "Wrong alignment on FRigUnit_VisualDebugVector"); \ +static_assert(sizeof(FRigUnit_VisualDebugVector) == 0x000048, "Wrong size on FRigUnit_VisualDebugVector"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, Value) == 0x000008, "Member 'FRigUnit_VisualDebugVector::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, bEnabled) == 0x000020, "Member 'FRigUnit_VisualDebugVector::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, Mode) == 0x000021, "Member 'FRigUnit_VisualDebugVector::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, Color) == 0x000024, "Member 'FRigUnit_VisualDebugVector::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, Thickness) == 0x000034, "Member 'FRigUnit_VisualDebugVector::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, Scale) == 0x000038, "Member 'FRigUnit_VisualDebugVector::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVector, BoneSpace) == 0x00003C, "Member 'FRigUnit_VisualDebugVector::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlInteger_LimitSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControlInteger_LimitSettings) == 0x000004, "Wrong alignment on FRigUnit_HierarchyAddControlInteger_LimitSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlInteger_LimitSettings) == 0x000010, "Wrong size on FRigUnit_HierarchyAddControlInteger_LimitSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_LimitSettings, Limit) == 0x000000, "Member 'FRigUnit_HierarchyAddControlInteger_LimitSettings::Limit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_LimitSettings, MinValue) == 0x000004, "Member 'FRigUnit_HierarchyAddControlInteger_LimitSettings::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_LimitSettings, MaxValue) == 0x000008, "Member 'FRigUnit_HierarchyAddControlInteger_LimitSettings::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_LimitSettings, bDrawLimits) == 0x00000C, "Member 'FRigUnit_HierarchyAddControlInteger_LimitSettings::bDrawLimits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlInteger_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlInteger_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlInteger_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlInteger_Settings) == 0x0000D0, "Wrong size on FRigUnit_HierarchyAddControlInteger_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_Settings, PrimaryAxis) == 0x000010, "Member 'FRigUnit_HierarchyAddControlInteger_Settings::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_Settings, Limits) == 0x000014, "Member 'FRigUnit_HierarchyAddControlInteger_Settings::Limits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_Settings, Shape) == 0x000030, "Member 'FRigUnit_HierarchyAddControlInteger_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger_Settings, Proxy) == 0x0000B0, "Member 'FRigUnit_HierarchyAddControlInteger_Settings::Proxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugLineStrip \ +static_assert(alignof(FRigUnit_DebugLineStrip) == 0x000010, "Wrong alignment on FRigUnit_DebugLineStrip"); \ +static_assert(sizeof(FRigUnit_DebugLineStrip) == 0x000200, "Wrong size on FRigUnit_DebugLineStrip"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, Points) == 0x000160, "Member 'FRigUnit_DebugLineStrip::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, Color) == 0x000170, "Member 'FRigUnit_DebugLineStrip::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, Thickness) == 0x000180, "Member 'FRigUnit_DebugLineStrip::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, Space) == 0x000184, "Member 'FRigUnit_DebugLineStrip::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, WorldOffset) == 0x000190, "Member 'FRigUnit_DebugLineStrip::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStrip, bEnabled) == 0x0001F0, "Member 'FRigUnit_DebugLineStrip::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneControlRigInstanceData \ +static_assert(alignof(FMovieSceneControlRigInstanceData) == 0x000008, "Wrong alignment on FMovieSceneControlRigInstanceData"); \ +static_assert(sizeof(FMovieSceneControlRigInstanceData) == 0x000148, "Wrong size on FMovieSceneControlRigInstanceData"); \ +static_assert(offsetof(FMovieSceneControlRigInstanceData, bAdditive) == 0x000008, "Member 'FMovieSceneControlRigInstanceData::bAdditive' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigInstanceData, bApplyBoneFilter) == 0x000009, "Member 'FMovieSceneControlRigInstanceData::bApplyBoneFilter' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigInstanceData, BoneFilter) == 0x000010, "Member 'FMovieSceneControlRigInstanceData::BoneFilter' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigInstanceData, Weight) == 0x000020, "Member 'FMovieSceneControlRigInstanceData::Weight' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigInstanceData, Operand) == 0x000130, "Member 'FMovieSceneControlRigInstanceData::Operand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigTransformStackEntry \ +static_assert(alignof(FRigTransformStackEntry) == 0x000010, "Wrong alignment on FRigTransformStackEntry"); \ +static_assert(sizeof(FRigTransformStackEntry) == 0x0000F0, "Wrong size on FRigTransformStackEntry"); \ +static_assert(offsetof(FRigTransformStackEntry, Key) == 0x000000, "Member 'FRigTransformStackEntry::Key' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, EntryType) == 0x00000C, "Member 'FRigTransformStackEntry::EntryType' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, TransformType) == 0x00000D, "Member 'FRigTransformStackEntry::TransformType' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, OldTransform) == 0x000010, "Member 'FRigTransformStackEntry::OldTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, NewTransform) == 0x000070, "Member 'FRigTransformStackEntry::NewTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, bAffectChildren) == 0x0000D0, "Member 'FRigTransformStackEntry::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigTransformStackEntry, Callstack) == 0x0000D8, "Member 'FRigTransformStackEntry::Callstack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertTransform \ +static_assert(alignof(FRigUnit_ConvertTransform) == 0x000010, "Wrong alignment on FRigUnit_ConvertTransform"); \ +static_assert(sizeof(FRigUnit_ConvertTransform) == 0x0000C0, "Wrong size on FRigUnit_ConvertTransform"); \ +static_assert(offsetof(FRigUnit_ConvertTransform, Input) == 0x000010, "Member 'FRigUnit_ConvertTransform::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertTransform, Result) == 0x000070, "Member 'FRigUnit_ConvertTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElementParentConstraint \ +static_assert(alignof(FRigElementParentConstraint) == 0x000010, "Wrong alignment on FRigElementParentConstraint"); \ +static_assert(sizeof(FRigElementParentConstraint) == 0x000090, "Wrong size on FRigElementParentConstraint"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimBone_DebugSettings \ +static_assert(alignof(FRigUnit_AimBone_DebugSettings) == 0x000010, "Wrong alignment on FRigUnit_AimBone_DebugSettings"); \ +static_assert(sizeof(FRigUnit_AimBone_DebugSettings) == 0x000070, "Wrong size on FRigUnit_AimBone_DebugSettings"); \ +static_assert(offsetof(FRigUnit_AimBone_DebugSettings, bEnabled) == 0x000000, "Member 'FRigUnit_AimBone_DebugSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_DebugSettings, Scale) == 0x000004, "Member 'FRigUnit_AimBone_DebugSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone_DebugSettings, WorldOffset) == 0x000010, "Member 'FRigUnit_AimBone_DebugSettings::WorldOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBoneElement \ +static_assert(alignof(FRigBoneElement) == 0x000010, "Wrong alignment on FRigBoneElement"); \ +static_assert(sizeof(FRigBoneElement) == 0x0002E0, "Wrong size on FRigBoneElement"); \ +static_assert(offsetof(FRigBoneElement, BoneType) == 0x0002D8, "Member 'FRigBoneElement::BoneType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigIOSettings \ +static_assert(alignof(FControlRigIOSettings) == 0x000001, "Wrong alignment on FControlRigIOSettings"); \ +static_assert(sizeof(FControlRigIOSettings) == 0x000002, "Wrong size on FControlRigIOSettings"); \ +static_assert(offsetof(FControlRigIOSettings, bUpdatePose) == 0x000000, "Member 'FControlRigIOSettings::bUpdatePose' has a wrong offset!"); \ +static_assert(offsetof(FControlRigIOSettings, bUpdateCurves) == 0x000001, "Member 'FControlRigIOSettings::bUpdateCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigSequenceObjectReference \ +static_assert(alignof(FControlRigSequenceObjectReference) == 0x000008, "Wrong alignment on FControlRigSequenceObjectReference"); \ +static_assert(sizeof(FControlRigSequenceObjectReference) == 0x000008, "Wrong size on FControlRigSequenceObjectReference"); \ +static_assert(offsetof(FControlRigSequenceObjectReference, ControlRigClass) == 0x000000, "Member 'FControlRigSequenceObjectReference::ControlRigClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigSequenceObjectReferences \ +static_assert(alignof(FControlRigSequenceObjectReferences) == 0x000008, "Wrong alignment on FControlRigSequenceObjectReferences"); \ +static_assert(sizeof(FControlRigSequenceObjectReferences) == 0x000010, "Wrong size on FControlRigSequenceObjectReferences"); \ +static_assert(offsetof(FControlRigSequenceObjectReferences, Array) == 0x000000, "Member 'FControlRigSequenceObjectReferences::Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigSequenceObjectReferenceMap \ +static_assert(alignof(FControlRigSequenceObjectReferenceMap) == 0x000008, "Wrong alignment on FControlRigSequenceObjectReferenceMap"); \ +static_assert(sizeof(FControlRigSequenceObjectReferenceMap) == 0x000020, "Wrong size on FControlRigSequenceObjectReferenceMap"); \ +static_assert(offsetof(FControlRigSequenceObjectReferenceMap, BindingIds) == 0x000000, "Member 'FControlRigSequenceObjectReferenceMap::BindingIds' has a wrong offset!"); \ +static_assert(offsetof(FControlRigSequenceObjectReferenceMap, References) == 0x000010, "Member 'FControlRigSequenceObjectReferenceMap::References' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigNullElement \ +static_assert(alignof(FRigNullElement) == 0x000010, "Wrong alignment on FRigNullElement"); \ +static_assert(sizeof(FRigNullElement) == 0x0003D0, "Wrong size on FRigNullElement"); \ + +#define DUMPER7_ASSERTS_FRigCurveElement \ +static_assert(alignof(FRigCurveElement) == 0x000008, "Wrong alignment on FRigCurveElement"); \ +static_assert(sizeof(FRigCurveElement) == 0x0000F0, "Wrong size on FRigCurveElement"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransformMutableItemSpace \ +static_assert(alignof(FRigUnit_DebugTransformMutableItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugTransformMutableItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugTransformMutableItemSpace) == 0x000260, "Wrong size on FRigUnit_DebugTransformMutableItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Transform) == 0x000160, "Member 'FRigUnit_DebugTransformMutableItemSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Mode) == 0x0001C0, "Member 'FRigUnit_DebugTransformMutableItemSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Color) == 0x0001C4, "Member 'FRigUnit_DebugTransformMutableItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Thickness) == 0x0001D4, "Member 'FRigUnit_DebugTransformMutableItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Scale) == 0x0001D8, "Member 'FRigUnit_DebugTransformMutableItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, Space) == 0x0001DC, "Member 'FRigUnit_DebugTransformMutableItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugTransformMutableItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutableItemSpace, bEnabled) == 0x000250, "Member 'FRigUnit_DebugTransformMutableItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigRigidBodySettings \ +static_assert(alignof(FRigRigidBodySettings) == 0x000004, "Wrong alignment on FRigRigidBodySettings"); \ +static_assert(sizeof(FRigRigidBodySettings) == 0x000004, "Wrong size on FRigRigidBodySettings"); \ +static_assert(offsetof(FRigRigidBodySettings, MASS) == 0x000000, "Member 'FRigRigidBodySettings::MASS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigRigidBodyElement \ +static_assert(alignof(FRigRigidBodyElement) == 0x000010, "Wrong alignment on FRigRigidBodyElement"); \ +static_assert(sizeof(FRigRigidBodyElement) == 0x0002E0, "Wrong size on FRigRigidBodyElement"); \ +static_assert(offsetof(FRigRigidBodyElement, Settings) == 0x0002D8, "Member 'FRigRigidBodyElement::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimBone \ +static_assert(alignof(FRigUnit_AimBone) == 0x000010, "Wrong alignment on FRigUnit_AimBone"); \ +static_assert(sizeof(FRigUnit_AimBone) == 0x0002E0, "Wrong size on FRigUnit_AimBone"); \ +static_assert(offsetof(FRigUnit_AimBone, bone) == 0x000160, "Member 'FRigUnit_AimBone::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, Primary) == 0x000168, "Member 'FRigUnit_AimBone::Primary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, Secondary) == 0x0001B0, "Member 'FRigUnit_AimBone::Secondary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, Weight) == 0x0001F8, "Member 'FRigUnit_AimBone::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, bPropagateToChildren) == 0x0001FC, "Member 'FRigUnit_AimBone::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, DebugSettings) == 0x000200, "Member 'FRigUnit_AimBone::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, CachedBoneIndex) == 0x000270, "Member 'FRigUnit_AimBone::CachedBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, PrimaryCachedSpace) == 0x000290, "Member 'FRigUnit_AimBone::PrimaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, SecondaryCachedSpace) == 0x0002B0, "Member 'FRigUnit_AimBone::SecondaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBone, bIsInitialized) == 0x0002D0, "Member 'FRigUnit_AimBone::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigReferenceElement \ +static_assert(alignof(FRigReferenceElement) == 0x000010, "Wrong alignment on FRigReferenceElement"); \ +static_assert(sizeof(FRigReferenceElement) == 0x0002F0, "Wrong size on FRigReferenceElement"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BoneHarmonics_BoneTarget \ +static_assert(alignof(FRigUnit_BoneHarmonics_BoneTarget) == 0x000004, "Wrong alignment on FRigUnit_BoneHarmonics_BoneTarget"); \ +static_assert(sizeof(FRigUnit_BoneHarmonics_BoneTarget) == 0x00000C, "Wrong size on FRigUnit_BoneHarmonics_BoneTarget"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics_BoneTarget, bone) == 0x000000, "Member 'FRigUnit_BoneHarmonics_BoneTarget::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics_BoneTarget, Ratio) == 0x000008, "Member 'FRigUnit_BoneHarmonics_BoneTarget::Ratio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BoneHarmonics_WorkData \ +static_assert(alignof(FRigUnit_BoneHarmonics_WorkData) == 0x000008, "Wrong alignment on FRigUnit_BoneHarmonics_WorkData"); \ +static_assert(sizeof(FRigUnit_BoneHarmonics_WorkData) == 0x000028, "Wrong size on FRigUnit_BoneHarmonics_WorkData"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics_WorkData, CachedItems) == 0x000000, "Member 'FRigUnit_BoneHarmonics_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics_WorkData, WaveTime) == 0x000010, "Member 'FRigUnit_BoneHarmonics_WorkData::WaveTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BoneHarmonics \ +static_assert(alignof(FRigUnit_BoneHarmonics) == 0x000010, "Wrong alignment on FRigUnit_BoneHarmonics"); \ +static_assert(sizeof(FRigUnit_BoneHarmonics) == 0x000220, "Wrong size on FRigUnit_BoneHarmonics"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, Bones) == 0x000160, "Member 'FRigUnit_BoneHarmonics::Bones' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveSpeed) == 0x000170, "Member 'FRigUnit_BoneHarmonics::WaveSpeed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveFrequency) == 0x000188, "Member 'FRigUnit_BoneHarmonics::WaveFrequency' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveAmplitude) == 0x0001A0, "Member 'FRigUnit_BoneHarmonics::WaveAmplitude' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveOffset) == 0x0001B8, "Member 'FRigUnit_BoneHarmonics::WaveOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveNoise) == 0x0001D0, "Member 'FRigUnit_BoneHarmonics::WaveNoise' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveEase) == 0x0001E8, "Member 'FRigUnit_BoneHarmonics::WaveEase' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveMinimum) == 0x0001EC, "Member 'FRigUnit_BoneHarmonics::WaveMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WaveMaximum) == 0x0001F0, "Member 'FRigUnit_BoneHarmonics::WaveMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, RotationOrder) == 0x0001F4, "Member 'FRigUnit_BoneHarmonics::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, bPropagateToChildren) == 0x0001F5, "Member 'FRigUnit_BoneHarmonics::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BoneHarmonics, WorkData) == 0x0001F8, "Member 'FRigUnit_BoneHarmonics::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIK_WorkData \ +static_assert(alignof(FRigUnit_CCDIK_WorkData) == 0x000008, "Wrong alignment on FRigUnit_CCDIK_WorkData"); \ +static_assert(sizeof(FRigUnit_CCDIK_WorkData) == 0x000060, "Wrong size on FRigUnit_CCDIK_WorkData"); \ +static_assert(offsetof(FRigUnit_CCDIK_WorkData, Chain) == 0x000000, "Member 'FRigUnit_CCDIK_WorkData::Chain' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_WorkData, CachedItems) == 0x000010, "Member 'FRigUnit_CCDIK_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_WorkData, RotationLimitIndex) == 0x000020, "Member 'FRigUnit_CCDIK_WorkData::RotationLimitIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_WorkData, RotationLimitsPerItem) == 0x000030, "Member 'FRigUnit_CCDIK_WorkData::RotationLimitsPerItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_WorkData, CachedEffector) == 0x000040, "Member 'FRigUnit_CCDIK_WorkData::CachedEffector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HighlevelBase \ +static_assert(alignof(FRigUnit_HighlevelBase) == 0x000008, "Wrong alignment on FRigUnit_HighlevelBase"); \ +static_assert(sizeof(FRigUnit_HighlevelBase) == 0x000008, "Wrong size on FRigUnit_HighlevelBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimConstraint_WorldUp \ +static_assert(alignof(FRigUnit_AimConstraint_WorldUp) == 0x000008, "Wrong alignment on FRigUnit_AimConstraint_WorldUp"); \ +static_assert(sizeof(FRigUnit_AimConstraint_WorldUp) == 0x000028, "Wrong size on FRigUnit_AimConstraint_WorldUp"); \ +static_assert(offsetof(FRigUnit_AimConstraint_WorldUp, Target) == 0x000000, "Member 'FRigUnit_AimConstraint_WorldUp::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint_WorldUp, Kind) == 0x000018, "Member 'FRigUnit_AimConstraint_WorldUp::Kind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint_WorldUp, Space) == 0x00001C, "Member 'FRigUnit_AimConstraint_WorldUp::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructReference \ +static_assert(alignof(FStructReference) == 0x000008, "Wrong alignment on FStructReference"); \ +static_assert(sizeof(FStructReference) == 0x000008, "Wrong size on FStructReference"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ControlRigBase \ +static_assert(alignof(FAnimNode_ControlRigBase) == 0x000008, "Wrong alignment on FAnimNode_ControlRigBase"); \ +static_assert(sizeof(FAnimNode_ControlRigBase) == 0x000230, "Wrong size on FAnimNode_ControlRigBase"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, Source) == 0x000058, "Member 'FAnimNode_ControlRigBase::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, bResetInputPoseToInitial) == 0x000068, "Member 'FAnimNode_ControlRigBase::bResetInputPoseToInitial' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, bTransferInputPose) == 0x000069, "Member 'FAnimNode_ControlRigBase::bTransferInputPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, bTransferInputCurves) == 0x00006A, "Member 'FAnimNode_ControlRigBase::bTransferInputCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, bTransferPoseInGlobalSpace) == 0x00006B, "Member 'FAnimNode_ControlRigBase::bTransferPoseInGlobalSpace' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, InputBonesToTransfer) == 0x000070, "Member 'FAnimNode_ControlRigBase::InputBonesToTransfer' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, OutputBonesToTransfer) == 0x000080, "Member 'FAnimNode_ControlRigBase::OutputBonesToTransfer' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, NodeMappingContainer) == 0x000200, "Member 'FAnimNode_ControlRigBase::NodeMappingContainer' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, InputSettings) == 0x000208, "Member 'FAnimNode_ControlRigBase::InputSettings' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, OutputSettings) == 0x00020A, "Member 'FAnimNode_ControlRigBase::OutputSettings' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, bExecute) == 0x00020C, "Member 'FAnimNode_ControlRigBase::bExecute' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRigBase, EventQueue) == 0x000218, "Member 'FAnimNode_ControlRigBase::EventQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIK_RotationLimit \ +static_assert(alignof(FRigUnit_CCDIK_RotationLimit) == 0x000004, "Wrong alignment on FRigUnit_CCDIK_RotationLimit"); \ +static_assert(sizeof(FRigUnit_CCDIK_RotationLimit) == 0x00000C, "Wrong size on FRigUnit_CCDIK_RotationLimit"); \ +static_assert(offsetof(FRigUnit_CCDIK_RotationLimit, bone) == 0x000000, "Member 'FRigUnit_CCDIK_RotationLimit::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_RotationLimit, Limit) == 0x000008, "Member 'FRigUnit_CCDIK_RotationLimit::Limit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ControlRig \ +static_assert(alignof(FAnimNode_ControlRig) == 0x000008, "Wrong alignment on FAnimNode_ControlRig"); \ +static_assert(sizeof(FAnimNode_ControlRig) == 0x000460, "Wrong size on FAnimNode_ControlRig"); \ +static_assert(offsetof(FAnimNode_ControlRig, ControlRigClass) == 0x000230, "Member 'FAnimNode_ControlRig::ControlRigClass' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, ControlRig) == 0x000238, "Member 'FAnimNode_ControlRig::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, alpha) == 0x000240, "Member 'FAnimNode_ControlRig::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, AlphaInputType) == 0x000244, "Member 'FAnimNode_ControlRig::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, AlphaScaleBias) == 0x000248, "Member 'FAnimNode_ControlRig::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, AlphaBoolBlend) == 0x000250, "Member 'FAnimNode_ControlRig::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, AlphaCurveName) == 0x000298, "Member 'FAnimNode_ControlRig::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, AlphaScaleBiasClamp) == 0x0002A0, "Member 'FAnimNode_ControlRig::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, InputMapping) == 0x0002D0, "Member 'FAnimNode_ControlRig::InputMapping' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, OutputMapping) == 0x000320, "Member 'FAnimNode_ControlRig::OutputMapping' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_ControlRig, LODThreshold) == 0x000420, "Member 'FAnimNode_ControlRig::LODThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_ControlRig_ExternalSource \ +static_assert(alignof(FAnimNode_ControlRig_ExternalSource) == 0x000008, "Wrong alignment on FAnimNode_ControlRig_ExternalSource"); \ +static_assert(sizeof(FAnimNode_ControlRig_ExternalSource) == 0x000238, "Wrong size on FAnimNode_ControlRig_ExternalSource"); \ +static_assert(offsetof(FAnimNode_ControlRig_ExternalSource, ControlRig) == 0x000230, "Member 'FAnimNode_ControlRig_ExternalSource::ControlRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigComponentMappedElement \ +static_assert(alignof(FControlRigComponentMappedElement) == 0x000010, "Wrong alignment on FControlRigComponentMappedElement"); \ +static_assert(sizeof(FControlRigComponentMappedElement) == 0x0000F0, "Wrong size on FControlRigComponentMappedElement"); \ +static_assert(offsetof(FControlRigComponentMappedElement, ComponentReference) == 0x000000, "Member 'FControlRigComponentMappedElement::ComponentReference' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, TransformIndex) == 0x000048, "Member 'FControlRigComponentMappedElement::TransformIndex' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, TransformName) == 0x00004C, "Member 'FControlRigComponentMappedElement::TransformName' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, ElementType) == 0x000054, "Member 'FControlRigComponentMappedElement::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, ElementName) == 0x000058, "Member 'FControlRigComponentMappedElement::ElementName' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, Direction) == 0x000060, "Member 'FControlRigComponentMappedElement::Direction' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, Offset) == 0x000070, "Member 'FControlRigComponentMappedElement::Offset' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, Weight) == 0x0000D0, "Member 'FControlRigComponentMappedElement::Weight' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, Space) == 0x0000D4, "Member 'FControlRigComponentMappedElement::Space' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, SceneComponent) == 0x0000D8, "Member 'FControlRigComponentMappedElement::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, ElementIndex) == 0x0000E0, "Member 'FControlRigComponentMappedElement::ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedElement, SubIndex) == 0x0000E4, "Member 'FControlRigComponentMappedElement::SubIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIK_RotationLimitPerItem \ +static_assert(alignof(FRigUnit_CCDIK_RotationLimitPerItem) == 0x000004, "Wrong alignment on FRigUnit_CCDIK_RotationLimitPerItem"); \ +static_assert(sizeof(FRigUnit_CCDIK_RotationLimitPerItem) == 0x000010, "Wrong size on FRigUnit_CCDIK_RotationLimitPerItem"); \ +static_assert(offsetof(FRigUnit_CCDIK_RotationLimitPerItem, Item) == 0x000000, "Member 'FRigUnit_CCDIK_RotationLimitPerItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK_RotationLimitPerItem, Limit) == 0x00000C, "Member 'FRigUnit_CCDIK_RotationLimitPerItem::Limit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIKPerItem \ +static_assert(alignof(FRigUnit_CCDIKPerItem) == 0x000010, "Wrong alignment on FRigUnit_CCDIKPerItem"); \ +static_assert(sizeof(FRigUnit_CCDIKPerItem) == 0x000260, "Wrong size on FRigUnit_CCDIKPerItem"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, Items) == 0x000160, "Member 'FRigUnit_CCDIKPerItem::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, EffectorTransform) == 0x000170, "Member 'FRigUnit_CCDIKPerItem::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, Precision) == 0x0001D0, "Member 'FRigUnit_CCDIKPerItem::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, Weight) == 0x0001D4, "Member 'FRigUnit_CCDIKPerItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, MaxIterations) == 0x0001D8, "Member 'FRigUnit_CCDIKPerItem::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, bStartFromTail) == 0x0001DC, "Member 'FRigUnit_CCDIKPerItem::bStartFromTail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, BaseRotationLimit) == 0x0001E0, "Member 'FRigUnit_CCDIKPerItem::BaseRotationLimit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, RotationLimits) == 0x0001E8, "Member 'FRigUnit_CCDIKPerItem::RotationLimits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, bPropagateToChildren) == 0x0001F8, "Member 'FRigUnit_CCDIKPerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKPerItem, WorkData) == 0x000200, "Member 'FRigUnit_CCDIKPerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigComponentMappedComponent \ +static_assert(alignof(FControlRigComponentMappedComponent) == 0x000008, "Wrong alignment on FControlRigComponentMappedComponent"); \ +static_assert(sizeof(FControlRigComponentMappedComponent) == 0x000018, "Wrong size on FControlRigComponentMappedComponent"); \ +static_assert(offsetof(FControlRigComponentMappedComponent, Component) == 0x000000, "Member 'FControlRigComponentMappedComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedComponent, ElementName) == 0x000008, "Member 'FControlRigComponentMappedComponent::ElementName' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedComponent, ElementType) == 0x000010, "Member 'FControlRigComponentMappedComponent::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedComponent, Direction) == 0x000011, "Member 'FControlRigComponentMappedComponent::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigComponentMappedBone \ +static_assert(alignof(FControlRigComponentMappedBone) == 0x000004, "Wrong alignment on FControlRigComponentMappedBone"); \ +static_assert(sizeof(FControlRigComponentMappedBone) == 0x000010, "Wrong size on FControlRigComponentMappedBone"); \ +static_assert(offsetof(FControlRigComponentMappedBone, Source) == 0x000000, "Member 'FControlRigComponentMappedBone::Source' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedBone, Target) == 0x000008, "Member 'FControlRigComponentMappedBone::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintParent \ +static_assert(alignof(FConstraintParent) == 0x000004, "Wrong alignment on FConstraintParent"); \ +static_assert(sizeof(FConstraintParent) == 0x000010, "Wrong size on FConstraintParent"); \ +static_assert(offsetof(FConstraintParent, Item) == 0x000000, "Member 'FConstraintParent::Item' has a wrong offset!"); \ +static_assert(offsetof(FConstraintParent, Weight) == 0x00000C, "Member 'FConstraintParent::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimConstraint_AdvancedSettings \ +static_assert(alignof(FRigUnit_AimConstraint_AdvancedSettings) == 0x000010, "Wrong alignment on FRigUnit_AimConstraint_AdvancedSettings"); \ +static_assert(sizeof(FRigUnit_AimConstraint_AdvancedSettings) == 0x000080, "Wrong size on FRigUnit_AimConstraint_AdvancedSettings"); \ +static_assert(offsetof(FRigUnit_AimConstraint_AdvancedSettings, DebugSettings) == 0x000000, "Member 'FRigUnit_AimConstraint_AdvancedSettings::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint_AdvancedSettings, RotationOrderForFilter) == 0x000070, "Member 'FRigUnit_AimConstraint_AdvancedSettings::RotationOrderForFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimConstraintLocalSpaceOffset \ +static_assert(alignof(FRigUnit_AimConstraintLocalSpaceOffset) == 0x000010, "Wrong alignment on FRigUnit_AimConstraintLocalSpaceOffset"); \ +static_assert(sizeof(FRigUnit_AimConstraintLocalSpaceOffset) == 0x0002C0, "Wrong size on FRigUnit_AimConstraintLocalSpaceOffset"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, Child) == 0x000160, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, Filter) == 0x00016D, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, AimAxis) == 0x000170, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::AimAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, UpAxis) == 0x000188, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::UpAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, WorldUp) == 0x0001A0, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::WorldUp' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, Parents) == 0x0001C8, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, AdvancedSettings) == 0x0001E0, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::AdvancedSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, Weight) == 0x000260, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, WorldUpSpaceCache) == 0x000268, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::WorldUpSpaceCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, ChildCache) == 0x000288, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::ChildCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, ParentCaches) == 0x0002A8, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::ParentCaches' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraintLocalSpaceOffset, bIsInitialized) == 0x0002B8, "Member 'FRigUnit_AimConstraintLocalSpaceOffset::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigComponentMappedCurve \ +static_assert(alignof(FControlRigComponentMappedCurve) == 0x000004, "Wrong alignment on FControlRigComponentMappedCurve"); \ +static_assert(sizeof(FControlRigComponentMappedCurve) == 0x000010, "Wrong size on FControlRigComponentMappedCurve"); \ +static_assert(offsetof(FControlRigComponentMappedCurve, Source) == 0x000000, "Member 'FControlRigComponentMappedCurve::Source' has a wrong offset!"); \ +static_assert(offsetof(FControlRigComponentMappedCurve, Target) == 0x000008, "Member 'FControlRigComponentMappedCurve::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlShapeActorCreationParam \ +static_assert(alignof(FControlShapeActorCreationParam) == 0x000010, "Wrong alignment on FControlShapeActorCreationParam"); \ +static_assert(sizeof(FControlShapeActorCreationParam) == 0x0001C0, "Wrong size on FControlShapeActorCreationParam"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DistributeRotation \ +static_assert(alignof(FRigUnit_DistributeRotation) == 0x000010, "Wrong alignment on FRigUnit_DistributeRotation"); \ +static_assert(sizeof(FRigUnit_DistributeRotation) == 0x0001E0, "Wrong size on FRigUnit_DistributeRotation"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, StartBone) == 0x000160, "Member 'FRigUnit_DistributeRotation::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, EndBone) == 0x000168, "Member 'FRigUnit_DistributeRotation::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, Rotations) == 0x000170, "Member 'FRigUnit_DistributeRotation::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, RotationEaseType) == 0x000180, "Member 'FRigUnit_DistributeRotation::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, Weight) == 0x000184, "Member 'FRigUnit_DistributeRotation::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, bPropagateToChildren) == 0x000188, "Member 'FRigUnit_DistributeRotation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotation, WorkData) == 0x000190, "Member 'FRigUnit_DistributeRotation::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigShapeDefinition \ +static_assert(alignof(FControlRigShapeDefinition) == 0x000010, "Wrong alignment on FControlRigShapeDefinition"); \ +static_assert(sizeof(FControlRigShapeDefinition) == 0x0000A0, "Wrong size on FControlRigShapeDefinition"); \ +static_assert(offsetof(FControlRigShapeDefinition, ShapeName) == 0x000000, "Member 'FControlRigShapeDefinition::ShapeName' has a wrong offset!"); \ +static_assert(offsetof(FControlRigShapeDefinition, StaticMesh) == 0x000008, "Member 'FControlRigShapeDefinition::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FControlRigShapeDefinition, Transform) == 0x000030, "Member 'FControlRigShapeDefinition::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigValidationContext \ +static_assert(alignof(FControlRigValidationContext) == 0x000008, "Wrong alignment on FControlRigValidationContext"); \ +static_assert(sizeof(FControlRigValidationContext) == 0x000028, "Wrong size on FControlRigValidationContext"); \ + +#define DUMPER7_ASSERTS_FCRSimContainer \ +static_assert(alignof(FCRSimContainer) == 0x000008, "Wrong alignment on FCRSimContainer"); \ +static_assert(sizeof(FCRSimContainer) == 0x000018, "Wrong size on FCRSimContainer"); \ +static_assert(offsetof(FCRSimContainer, TimeStep) == 0x000008, "Member 'FCRSimContainer::TimeStep' has a wrong offset!"); \ +static_assert(offsetof(FCRSimContainer, AccumulatedTime) == 0x00000C, "Member 'FCRSimContainer::AccumulatedTime' has a wrong offset!"); \ +static_assert(offsetof(FCRSimContainer, TimeLeftForStep) == 0x000010, "Member 'FCRSimContainer::TimeLeftForStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCRSimLinearSpring \ +static_assert(alignof(FCRSimLinearSpring) == 0x000004, "Wrong alignment on FCRSimLinearSpring"); \ +static_assert(sizeof(FCRSimLinearSpring) == 0x000010, "Wrong size on FCRSimLinearSpring"); \ +static_assert(offsetof(FCRSimLinearSpring, SubjectA) == 0x000000, "Member 'FCRSimLinearSpring::SubjectA' has a wrong offset!"); \ +static_assert(offsetof(FCRSimLinearSpring, SubjectB) == 0x000004, "Member 'FCRSimLinearSpring::SubjectB' has a wrong offset!"); \ +static_assert(offsetof(FCRSimLinearSpring, Coefficient) == 0x000008, "Member 'FCRSimLinearSpring::Coefficient' has a wrong offset!"); \ +static_assert(offsetof(FCRSimLinearSpring, Equilibrium) == 0x00000C, "Member 'FCRSimLinearSpring::Equilibrium' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCRSimPointConstraint \ +static_assert(alignof(FCRSimPointConstraint) == 0x000008, "Wrong alignment on FCRSimPointConstraint"); \ +static_assert(sizeof(FCRSimPointConstraint) == 0x000040, "Wrong size on FCRSimPointConstraint"); \ +static_assert(offsetof(FCRSimPointConstraint, Type) == 0x000000, "Member 'FCRSimPointConstraint::Type' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointConstraint, SubjectA) == 0x000004, "Member 'FCRSimPointConstraint::SubjectA' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointConstraint, SubjectB) == 0x000008, "Member 'FCRSimPointConstraint::SubjectB' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointConstraint, DataA) == 0x000010, "Member 'FCRSimPointConstraint::DataA' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointConstraint, DataB) == 0x000028, "Member 'FCRSimPointConstraint::DataB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyTransforms_PerItem \ +static_assert(alignof(FRigUnit_ModifyTransforms_PerItem) == 0x000010, "Wrong alignment on FRigUnit_ModifyTransforms_PerItem"); \ +static_assert(sizeof(FRigUnit_ModifyTransforms_PerItem) == 0x000070, "Wrong size on FRigUnit_ModifyTransforms_PerItem"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms_PerItem, Item) == 0x000000, "Member 'FRigUnit_ModifyTransforms_PerItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms_PerItem, Transform) == 0x000010, "Member 'FRigUnit_ModifyTransforms_PerItem::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ModifyTransforms \ +static_assert(alignof(FRigUnit_ModifyTransforms) == 0x000010, "Wrong alignment on FRigUnit_ModifyTransforms"); \ +static_assert(sizeof(FRigUnit_ModifyTransforms) == 0x000190, "Wrong size on FRigUnit_ModifyTransforms"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, ItemToModify) == 0x000160, "Member 'FRigUnit_ModifyTransforms::ItemToModify' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, Weight) == 0x000170, "Member 'FRigUnit_ModifyTransforms::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, WeightMinimum) == 0x000174, "Member 'FRigUnit_ModifyTransforms::WeightMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, WeightMaximum) == 0x000178, "Member 'FRigUnit_ModifyTransforms::WeightMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, Mode) == 0x00017C, "Member 'FRigUnit_ModifyTransforms::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ModifyTransforms, WorkData) == 0x000180, "Member 'FRigUnit_ModifyTransforms::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCRSimPointForce \ +static_assert(alignof(FCRSimPointForce) == 0x000008, "Wrong alignment on FCRSimPointForce"); \ +static_assert(sizeof(FCRSimPointForce) == 0x000028, "Wrong size on FCRSimPointForce"); \ +static_assert(offsetof(FCRSimPointForce, ForceType) == 0x000000, "Member 'FCRSimPointForce::ForceType' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointForce, Vector) == 0x000008, "Member 'FCRSimPointForce::Vector' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointForce, Coefficient) == 0x000020, "Member 'FCRSimPointForce::Coefficient' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointForce, bNormalize) == 0x000024, "Member 'FCRSimPointForce::bNormalize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCRSimSoftCollision \ +static_assert(alignof(FCRSimSoftCollision) == 0x000010, "Wrong alignment on FCRSimSoftCollision"); \ +static_assert(sizeof(FCRSimSoftCollision) == 0x000080, "Wrong size on FCRSimSoftCollision"); \ +static_assert(offsetof(FCRSimSoftCollision, Transform) == 0x000000, "Member 'FCRSimSoftCollision::Transform' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, ShapeType) == 0x000060, "Member 'FCRSimSoftCollision::ShapeType' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, MinimumDistance) == 0x000064, "Member 'FCRSimSoftCollision::MinimumDistance' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, MaximumDistance) == 0x000068, "Member 'FCRSimSoftCollision::MaximumDistance' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, FalloffType) == 0x00006C, "Member 'FCRSimSoftCollision::FalloffType' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, Coefficient) == 0x000070, "Member 'FCRSimSoftCollision::Coefficient' has a wrong offset!"); \ +static_assert(offsetof(FCRSimSoftCollision, bInverted) == 0x000074, "Member 'FCRSimSoftCollision::bInverted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCRSimPointContainer \ +static_assert(alignof(FCRSimPointContainer) == 0x000008, "Wrong alignment on FCRSimPointContainer"); \ +static_assert(sizeof(FCRSimPointContainer) == 0x000078, "Wrong size on FCRSimPointContainer"); \ +static_assert(offsetof(FCRSimPointContainer, Points) == 0x000018, "Member 'FCRSimPointContainer::Points' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointContainer, Springs) == 0x000028, "Member 'FCRSimPointContainer::Springs' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointContainer, Forces) == 0x000038, "Member 'FCRSimPointContainer::Forces' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointContainer, CollisionVolumes) == 0x000048, "Member 'FCRSimPointContainer::CollisionVolumes' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointContainer, Constraints) == 0x000058, "Member 'FCRSimPointContainer::Constraints' has a wrong offset!"); \ +static_assert(offsetof(FCRSimPointContainer, PreviousStep) == 0x000068, "Member 'FCRSimPointContainer::PreviousStep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurve_Rotation \ +static_assert(alignof(FRigUnit_FitChainToCurve_Rotation) == 0x000010, "Wrong alignment on FRigUnit_FitChainToCurve_Rotation"); \ +static_assert(sizeof(FRigUnit_FitChainToCurve_Rotation) == 0x000030, "Wrong size on FRigUnit_FitChainToCurve_Rotation"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_Rotation, Rotation) == 0x000000, "Member 'FRigUnit_FitChainToCurve_Rotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_Rotation, Ratio) == 0x000020, "Member 'FRigUnit_FitChainToCurve_Rotation::Ratio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurve_WorkData \ +static_assert(alignof(FRigUnit_FitChainToCurve_WorkData) == 0x000008, "Wrong alignment on FRigUnit_FitChainToCurve_WorkData"); \ +static_assert(sizeof(FRigUnit_FitChainToCurve_WorkData) == 0x000098, "Wrong size on FRigUnit_FitChainToCurve_WorkData"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ChainLength) == 0x000000, "Member 'FRigUnit_FitChainToCurve_WorkData::ChainLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemPositions) == 0x000008, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemPositions' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemSegments) == 0x000018, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemSegments' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, CurvePositions) == 0x000028, "Member 'FRigUnit_FitChainToCurve_WorkData::CurvePositions' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, CurveSegments) == 0x000038, "Member 'FRigUnit_FitChainToCurve_WorkData::CurveSegments' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, CachedItems) == 0x000048, "Member 'FRigUnit_FitChainToCurve_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemRotationA) == 0x000058, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemRotationA' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemRotationB) == 0x000068, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemRotationB' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemRotationT) == 0x000078, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemRotationT' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_WorkData, ItemLocalTransforms) == 0x000088, "Member 'FRigUnit_FitChainToCurve_WorkData::ItemLocalTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurve_DebugSettings \ +static_assert(alignof(FRigUnit_FitChainToCurve_DebugSettings) == 0x000010, "Wrong alignment on FRigUnit_FitChainToCurve_DebugSettings"); \ +static_assert(sizeof(FRigUnit_FitChainToCurve_DebugSettings) == 0x000090, "Wrong size on FRigUnit_FitChainToCurve_DebugSettings"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_DebugSettings, bEnabled) == 0x000000, "Member 'FRigUnit_FitChainToCurve_DebugSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_DebugSettings, Scale) == 0x000004, "Member 'FRigUnit_FitChainToCurve_DebugSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_DebugSettings, CurveColor) == 0x000008, "Member 'FRigUnit_FitChainToCurve_DebugSettings::CurveColor' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_DebugSettings, SegmentsColor) == 0x000018, "Member 'FRigUnit_FitChainToCurve_DebugSettings::SegmentsColor' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve_DebugSettings, WorldOffset) == 0x000030, "Member 'FRigUnit_FitChainToCurve_DebugSettings::WorldOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurveItemArray \ +static_assert(alignof(FRigUnit_FitChainToCurveItemArray) == 0x000010, "Wrong alignment on FRigUnit_FitChainToCurveItemArray"); \ +static_assert(sizeof(FRigUnit_FitChainToCurveItemArray) == 0x000380, "Wrong size on FRigUnit_FitChainToCurveItemArray"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Items) == 0x000160, "Member 'FRigUnit_FitChainToCurveItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Bezier) == 0x000170, "Member 'FRigUnit_FitChainToCurveItemArray::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Alignment) == 0x0001D0, "Member 'FRigUnit_FitChainToCurveItemArray::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Minimum) == 0x0001D4, "Member 'FRigUnit_FitChainToCurveItemArray::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Maximum) == 0x0001D8, "Member 'FRigUnit_FitChainToCurveItemArray::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, SamplingPrecision) == 0x0001DC, "Member 'FRigUnit_FitChainToCurveItemArray::SamplingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, PrimaryAxis) == 0x0001E0, "Member 'FRigUnit_FitChainToCurveItemArray::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, SecondaryAxis) == 0x0001F8, "Member 'FRigUnit_FitChainToCurveItemArray::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, PoleVectorPosition) == 0x000210, "Member 'FRigUnit_FitChainToCurveItemArray::PoleVectorPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Rotations) == 0x000228, "Member 'FRigUnit_FitChainToCurveItemArray::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, RotationEaseType) == 0x000238, "Member 'FRigUnit_FitChainToCurveItemArray::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, Weight) == 0x00023C, "Member 'FRigUnit_FitChainToCurveItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, bPropagateToChildren) == 0x000240, "Member 'FRigUnit_FitChainToCurveItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, DebugSettings) == 0x000250, "Member 'FRigUnit_FitChainToCurveItemArray::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurveItemArray, WorkData) == 0x0002E0, "Member 'FRigUnit_FitChainToCurveItemArray::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBoneHierarchy \ +static_assert(alignof(FRigBoneHierarchy) == 0x000008, "Wrong alignment on FRigBoneHierarchy"); \ +static_assert(sizeof(FRigBoneHierarchy) == 0x000010, "Wrong size on FRigBoneHierarchy"); \ +static_assert(offsetof(FRigBoneHierarchy, Bones) == 0x000000, "Member 'FRigBoneHierarchy::Bones' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlHierarchy \ +static_assert(alignof(FRigControlHierarchy) == 0x000008, "Wrong alignment on FRigControlHierarchy"); \ +static_assert(sizeof(FRigControlHierarchy) == 0x000010, "Wrong size on FRigControlHierarchy"); \ +static_assert(offsetof(FRigControlHierarchy, Controls) == 0x000000, "Member 'FRigControlHierarchy::Controls' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigCurveContainer \ +static_assert(alignof(FRigCurveContainer) == 0x000008, "Wrong alignment on FRigCurveContainer"); \ +static_assert(sizeof(FRigCurveContainer) == 0x000010, "Wrong size on FRigCurveContainer"); \ +static_assert(offsetof(FRigCurveContainer, Curves) == 0x000000, "Member 'FRigCurveContainer::Curves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigSpaceHierarchy \ +static_assert(alignof(FRigSpaceHierarchy) == 0x000008, "Wrong alignment on FRigSpaceHierarchy"); \ +static_assert(sizeof(FRigSpaceHierarchy) == 0x000010, "Wrong size on FRigSpaceHierarchy"); \ +static_assert(offsetof(FRigSpaceHierarchy, Spaces) == 0x000000, "Member 'FRigSpaceHierarchy::Spaces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigHierarchyContainer \ +static_assert(alignof(FRigHierarchyContainer) == 0x000008, "Wrong alignment on FRigHierarchyContainer"); \ +static_assert(sizeof(FRigHierarchyContainer) == 0x000040, "Wrong size on FRigHierarchyContainer"); \ +static_assert(offsetof(FRigHierarchyContainer, BoneHierarchy) == 0x000000, "Member 'FRigHierarchyContainer::BoneHierarchy' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyContainer, SpaceHierarchy) == 0x000010, "Member 'FRigHierarchyContainer::SpaceHierarchy' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyContainer, ControlHierarchy) == 0x000020, "Member 'FRigHierarchyContainer::ControlHierarchy' has a wrong offset!"); \ +static_assert(offsetof(FRigHierarchyContainer, CurveContainer) == 0x000030, "Member 'FRigHierarchyContainer::CurveContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TransformConstraint_WorkData \ +static_assert(alignof(FRigUnit_TransformConstraint_WorkData) == 0x000008, "Wrong alignment on FRigUnit_TransformConstraint_WorkData"); \ +static_assert(sizeof(FRigUnit_TransformConstraint_WorkData) == 0x000060, "Wrong size on FRigUnit_TransformConstraint_WorkData"); \ +static_assert(offsetof(FRigUnit_TransformConstraint_WorkData, ConstraintData) == 0x000000, "Member 'FRigUnit_TransformConstraint_WorkData::ConstraintData' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint_WorkData, ConstraintDataToTargets) == 0x000010, "Member 'FRigUnit_TransformConstraint_WorkData::ConstraintDataToTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlModifiedContext \ +static_assert(alignof(FRigControlModifiedContext) == 0x000004, "Wrong alignment on FRigControlModifiedContext"); \ +static_assert(sizeof(FRigControlModifiedContext) == 0x000018, "Wrong size on FRigControlModifiedContext"); \ + +#define DUMPER7_ASSERTS_FSphericalPoseReaderDebugSettings \ +static_assert(alignof(FSphericalPoseReaderDebugSettings) == 0x000004, "Wrong alignment on FSphericalPoseReaderDebugSettings"); \ +static_assert(sizeof(FSphericalPoseReaderDebugSettings) == 0x000010, "Wrong size on FSphericalPoseReaderDebugSettings"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, bDrawDebug) == 0x000000, "Member 'FSphericalPoseReaderDebugSettings::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, bDraw2D) == 0x000001, "Member 'FSphericalPoseReaderDebugSettings::bDraw2D' has a wrong offset!"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, bDrawLocalAxes) == 0x000002, "Member 'FSphericalPoseReaderDebugSettings::bDrawLocalAxes' has a wrong offset!"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, DebugScale) == 0x000004, "Member 'FSphericalPoseReaderDebugSettings::DebugScale' has a wrong offset!"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, DebugSegments) == 0x000008, "Member 'FSphericalPoseReaderDebugSettings::DebugSegments' has a wrong offset!"); \ +static_assert(offsetof(FSphericalPoseReaderDebugSettings, DebugThickness) == 0x00000C, "Member 'FSphericalPoseReaderDebugSettings::DebugThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigEventContext \ +static_assert(alignof(FRigEventContext) == 0x000008, "Wrong alignment on FRigEventContext"); \ +static_assert(sizeof(FRigEventContext) == 0x000028, "Wrong size on FRigEventContext"); \ + +#define DUMPER7_ASSERTS_FRigBoolMetadata \ +static_assert(alignof(FRigBoolMetadata) == 0x000008, "Wrong alignment on FRigBoolMetadata"); \ +static_assert(sizeof(FRigBoolMetadata) == 0x000030, "Wrong size on FRigBoolMetadata"); \ +static_assert(offsetof(FRigBoolMetadata, Value) == 0x000028, "Member 'FRigBoolMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigBoolArrayMetadata \ +static_assert(alignof(FRigBoolArrayMetadata) == 0x000008, "Wrong alignment on FRigBoolArrayMetadata"); \ +static_assert(sizeof(FRigBoolArrayMetadata) == 0x000038, "Wrong size on FRigBoolArrayMetadata"); \ +static_assert(offsetof(FRigBoolArrayMetadata, Value) == 0x000028, "Member 'FRigBoolArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringIK_DebugSettings \ +static_assert(alignof(FRigUnit_SpringIK_DebugSettings) == 0x000010, "Wrong alignment on FRigUnit_SpringIK_DebugSettings"); \ +static_assert(sizeof(FRigUnit_SpringIK_DebugSettings) == 0x000080, "Wrong size on FRigUnit_SpringIK_DebugSettings"); \ +static_assert(offsetof(FRigUnit_SpringIK_DebugSettings, bEnabled) == 0x000000, "Member 'FRigUnit_SpringIK_DebugSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_DebugSettings, Scale) == 0x000004, "Member 'FRigUnit_SpringIK_DebugSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_DebugSettings, Color) == 0x000008, "Member 'FRigUnit_SpringIK_DebugSettings::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_DebugSettings, WorldOffset) == 0x000020, "Member 'FRigUnit_SpringIK_DebugSettings::WorldOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringIK_WorkData \ +static_assert(alignof(FRigUnit_SpringIK_WorkData) == 0x000008, "Wrong alignment on FRigUnit_SpringIK_WorkData"); \ +static_assert(sizeof(FRigUnit_SpringIK_WorkData) == 0x0000B8, "Wrong size on FRigUnit_SpringIK_WorkData"); \ +static_assert(offsetof(FRigUnit_SpringIK_WorkData, CachedBones) == 0x000000, "Member 'FRigUnit_SpringIK_WorkData::CachedBones' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_WorkData, CachedPoleVector) == 0x000010, "Member 'FRigUnit_SpringIK_WorkData::CachedPoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_WorkData, Transforms) == 0x000030, "Member 'FRigUnit_SpringIK_WorkData::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK_WorkData, Simulation) == 0x000040, "Member 'FRigUnit_SpringIK_WorkData::Simulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringIK \ +static_assert(alignof(FRigUnit_SpringIK) == 0x000010, "Wrong alignment on FRigUnit_SpringIK"); \ +static_assert(sizeof(FRigUnit_SpringIK) == 0x000330, "Wrong size on FRigUnit_SpringIK"); \ +static_assert(offsetof(FRigUnit_SpringIK, StartBone) == 0x000160, "Member 'FRigUnit_SpringIK::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, EndBone) == 0x000168, "Member 'FRigUnit_SpringIK::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, HierarchyStrength) == 0x000170, "Member 'FRigUnit_SpringIK::HierarchyStrength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, EffectorStrength) == 0x000174, "Member 'FRigUnit_SpringIK::EffectorStrength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, EffectorRatio) == 0x000178, "Member 'FRigUnit_SpringIK::EffectorRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, RootStrength) == 0x00017C, "Member 'FRigUnit_SpringIK::RootStrength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, RootRatio) == 0x000180, "Member 'FRigUnit_SpringIK::RootRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, Damping) == 0x000184, "Member 'FRigUnit_SpringIK::Damping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, PoleVector) == 0x000188, "Member 'FRigUnit_SpringIK::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, bFlipPolePlane) == 0x0001A0, "Member 'FRigUnit_SpringIK::bFlipPolePlane' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, PoleVectorKind) == 0x0001A1, "Member 'FRigUnit_SpringIK::PoleVectorKind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, PoleVectorSpace) == 0x0001A4, "Member 'FRigUnit_SpringIK::PoleVectorSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, PrimaryAxis) == 0x0001B0, "Member 'FRigUnit_SpringIK::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, SecondaryAxis) == 0x0001C8, "Member 'FRigUnit_SpringIK::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, bLiveSimulation) == 0x0001E0, "Member 'FRigUnit_SpringIK::bLiveSimulation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, Iterations) == 0x0001E4, "Member 'FRigUnit_SpringIK::Iterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, bLimitLocalPosition) == 0x0001E8, "Member 'FRigUnit_SpringIK::bLimitLocalPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, bPropagateToChildren) == 0x0001E9, "Member 'FRigUnit_SpringIK::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, DebugSettings) == 0x0001F0, "Member 'FRigUnit_SpringIK::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringIK, WorkData) == 0x000270, "Member 'FRigUnit_SpringIK::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigFloatMetadata \ +static_assert(alignof(FRigFloatMetadata) == 0x000008, "Wrong alignment on FRigFloatMetadata"); \ +static_assert(sizeof(FRigFloatMetadata) == 0x000030, "Wrong size on FRigFloatMetadata"); \ +static_assert(offsetof(FRigFloatMetadata, Value) == 0x000028, "Member 'FRigFloatMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigFloatArrayMetadata \ +static_assert(alignof(FRigFloatArrayMetadata) == 0x000008, "Wrong alignment on FRigFloatArrayMetadata"); \ +static_assert(sizeof(FRigFloatArrayMetadata) == 0x000038, "Wrong size on FRigFloatArrayMetadata"); \ +static_assert(offsetof(FRigFloatArrayMetadata, Value) == 0x000028, "Member 'FRigFloatArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInt32Metadata \ +static_assert(alignof(FRigInt32Metadata) == 0x000008, "Wrong alignment on FRigInt32Metadata"); \ +static_assert(sizeof(FRigInt32Metadata) == 0x000030, "Wrong size on FRigInt32Metadata"); \ +static_assert(offsetof(FRigInt32Metadata, Value) == 0x000028, "Member 'FRigInt32Metadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInt32ArrayMetadata \ +static_assert(alignof(FRigInt32ArrayMetadata) == 0x000008, "Wrong alignment on FRigInt32ArrayMetadata"); \ +static_assert(sizeof(FRigInt32ArrayMetadata) == 0x000038, "Wrong size on FRigInt32ArrayMetadata"); \ +static_assert(offsetof(FRigInt32ArrayMetadata, Value) == 0x000028, "Member 'FRigInt32ArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Harmonics_TargetItem \ +static_assert(alignof(FRigUnit_Harmonics_TargetItem) == 0x000004, "Wrong alignment on FRigUnit_Harmonics_TargetItem"); \ +static_assert(sizeof(FRigUnit_Harmonics_TargetItem) == 0x000010, "Wrong size on FRigUnit_Harmonics_TargetItem"); \ +static_assert(offsetof(FRigUnit_Harmonics_TargetItem, Item) == 0x000000, "Member 'FRigUnit_Harmonics_TargetItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Harmonics_TargetItem, Ratio) == 0x00000C, "Member 'FRigUnit_Harmonics_TargetItem::Ratio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigNameMetadata \ +static_assert(alignof(FRigNameMetadata) == 0x000008, "Wrong alignment on FRigNameMetadata"); \ +static_assert(sizeof(FRigNameMetadata) == 0x000030, "Wrong size on FRigNameMetadata"); \ +static_assert(offsetof(FRigNameMetadata, Value) == 0x000028, "Member 'FRigNameMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVectorMetadata \ +static_assert(alignof(FRigVectorMetadata) == 0x000008, "Wrong alignment on FRigVectorMetadata"); \ +static_assert(sizeof(FRigVectorMetadata) == 0x000040, "Wrong size on FRigVectorMetadata"); \ +static_assert(offsetof(FRigVectorMetadata, Value) == 0x000028, "Member 'FRigVectorMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigVectorArrayMetadata \ +static_assert(alignof(FRigVectorArrayMetadata) == 0x000008, "Wrong alignment on FRigVectorArrayMetadata"); \ +static_assert(sizeof(FRigVectorArrayMetadata) == 0x000038, "Wrong size on FRigVectorArrayMetadata"); \ +static_assert(offsetof(FRigVectorArrayMetadata, Value) == 0x000028, "Member 'FRigVectorArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigRotatorMetadata \ +static_assert(alignof(FRigRotatorMetadata) == 0x000008, "Wrong alignment on FRigRotatorMetadata"); \ +static_assert(sizeof(FRigRotatorMetadata) == 0x000040, "Wrong size on FRigRotatorMetadata"); \ +static_assert(offsetof(FRigRotatorMetadata, Value) == 0x000028, "Member 'FRigRotatorMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigRotatorArrayMetadata \ +static_assert(alignof(FRigRotatorArrayMetadata) == 0x000008, "Wrong alignment on FRigRotatorArrayMetadata"); \ +static_assert(sizeof(FRigRotatorArrayMetadata) == 0x000038, "Wrong size on FRigRotatorArrayMetadata"); \ +static_assert(offsetof(FRigRotatorArrayMetadata, Value) == 0x000028, "Member 'FRigRotatorArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKSimple_DebugSettings \ +static_assert(alignof(FRigUnit_TwoBoneIKSimple_DebugSettings) == 0x000010, "Wrong alignment on FRigUnit_TwoBoneIKSimple_DebugSettings"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKSimple_DebugSettings) == 0x000070, "Wrong size on FRigUnit_TwoBoneIKSimple_DebugSettings"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple_DebugSettings, bEnabled) == 0x000000, "Member 'FRigUnit_TwoBoneIKSimple_DebugSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple_DebugSettings, Scale) == 0x000004, "Member 'FRigUnit_TwoBoneIKSimple_DebugSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple_DebugSettings, WorldOffset) == 0x000010, "Member 'FRigUnit_TwoBoneIKSimple_DebugSettings::WorldOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKSimple \ +static_assert(alignof(FRigUnit_TwoBoneIKSimple) == 0x000010, "Wrong alignment on FRigUnit_TwoBoneIKSimple"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKSimple) == 0x000350, "Wrong size on FRigUnit_TwoBoneIKSimple"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, BoneA) == 0x000160, "Member 'FRigUnit_TwoBoneIKSimple::BoneA' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, BoneB) == 0x000168, "Member 'FRigUnit_TwoBoneIKSimple::BoneB' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, EffectorBone) == 0x000170, "Member 'FRigUnit_TwoBoneIKSimple::EffectorBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, Effector) == 0x000180, "Member 'FRigUnit_TwoBoneIKSimple::Effector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, PrimaryAxis) == 0x0001E0, "Member 'FRigUnit_TwoBoneIKSimple::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, SecondaryAxis) == 0x0001F8, "Member 'FRigUnit_TwoBoneIKSimple::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, SecondaryAxisWeight) == 0x000210, "Member 'FRigUnit_TwoBoneIKSimple::SecondaryAxisWeight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, PoleVector) == 0x000218, "Member 'FRigUnit_TwoBoneIKSimple::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, PoleVectorKind) == 0x000230, "Member 'FRigUnit_TwoBoneIKSimple::PoleVectorKind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, PoleVectorSpace) == 0x000234, "Member 'FRigUnit_TwoBoneIKSimple::PoleVectorSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, bEnableStretch) == 0x00023C, "Member 'FRigUnit_TwoBoneIKSimple::bEnableStretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, StretchStartRatio) == 0x000240, "Member 'FRigUnit_TwoBoneIKSimple::StretchStartRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, StretchMaximumRatio) == 0x000244, "Member 'FRigUnit_TwoBoneIKSimple::StretchMaximumRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, Weight) == 0x000248, "Member 'FRigUnit_TwoBoneIKSimple::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, BoneALength) == 0x00024C, "Member 'FRigUnit_TwoBoneIKSimple::BoneALength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, BoneBLength) == 0x000250, "Member 'FRigUnit_TwoBoneIKSimple::BoneBLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, bPropagateToChildren) == 0x000254, "Member 'FRigUnit_TwoBoneIKSimple::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, DebugSettings) == 0x000260, "Member 'FRigUnit_TwoBoneIKSimple::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, CachedBoneAIndex) == 0x0002D0, "Member 'FRigUnit_TwoBoneIKSimple::CachedBoneAIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, CachedBoneBIndex) == 0x0002F0, "Member 'FRigUnit_TwoBoneIKSimple::CachedBoneBIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, CachedEffectorBoneIndex) == 0x000310, "Member 'FRigUnit_TwoBoneIKSimple::CachedEffectorBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimple, CachedPoleVectorSpaceIndex) == 0x000330, "Member 'FRigUnit_TwoBoneIKSimple::CachedPoleVectorSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigQuatMetadata \ +static_assert(alignof(FRigQuatMetadata) == 0x000010, "Wrong alignment on FRigQuatMetadata"); \ +static_assert(sizeof(FRigQuatMetadata) == 0x000050, "Wrong size on FRigQuatMetadata"); \ +static_assert(offsetof(FRigQuatMetadata, Value) == 0x000030, "Member 'FRigQuatMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigQuatArrayMetadata \ +static_assert(alignof(FRigQuatArrayMetadata) == 0x000008, "Wrong alignment on FRigQuatArrayMetadata"); \ +static_assert(sizeof(FRigQuatArrayMetadata) == 0x000038, "Wrong size on FRigQuatArrayMetadata"); \ +static_assert(offsetof(FRigQuatArrayMetadata, Value) == 0x000028, "Member 'FRigQuatArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ScaleConstraint \ +static_assert(alignof(FRigUnit_ScaleConstraint) == 0x000010, "Wrong alignment on FRigUnit_ScaleConstraint"); \ +static_assert(sizeof(FRigUnit_ScaleConstraint) == 0x000190, "Wrong size on FRigUnit_ScaleConstraint"); \ +static_assert(offsetof(FRigUnit_ScaleConstraint, Child) == 0x000160, "Member 'FRigUnit_ScaleConstraint::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraint, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_ScaleConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraint, Filter) == 0x00016D, "Member 'FRigUnit_ScaleConstraint::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraint, Parents) == 0x000170, "Member 'FRigUnit_ScaleConstraint::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraint, Weight) == 0x000180, "Member 'FRigUnit_ScaleConstraint::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigTransformMetadata \ +static_assert(alignof(FRigTransformMetadata) == 0x000010, "Wrong alignment on FRigTransformMetadata"); \ +static_assert(sizeof(FRigTransformMetadata) == 0x000090, "Wrong size on FRigTransformMetadata"); \ +static_assert(offsetof(FRigTransformMetadata, Value) == 0x000030, "Member 'FRigTransformMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigTransformArrayMetadata \ +static_assert(alignof(FRigTransformArrayMetadata) == 0x000008, "Wrong alignment on FRigTransformArrayMetadata"); \ +static_assert(sizeof(FRigTransformArrayMetadata) == 0x000038, "Wrong size on FRigTransformArrayMetadata"); \ +static_assert(offsetof(FRigTransformArrayMetadata, Value) == 0x000028, "Member 'FRigTransformArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ParentConstraint_AdvancedSettings \ +static_assert(alignof(FRigUnit_ParentConstraint_AdvancedSettings) == 0x000001, "Wrong alignment on FRigUnit_ParentConstraint_AdvancedSettings"); \ +static_assert(sizeof(FRigUnit_ParentConstraint_AdvancedSettings) == 0x000002, "Wrong size on FRigUnit_ParentConstraint_AdvancedSettings"); \ +static_assert(offsetof(FRigUnit_ParentConstraint_AdvancedSettings, InterpolationType) == 0x000000, "Member 'FRigUnit_ParentConstraint_AdvancedSettings::InterpolationType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint_AdvancedSettings, RotationOrderForFilter) == 0x000001, "Member 'FRigUnit_ParentConstraint_AdvancedSettings::RotationOrderForFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ParentConstraint \ +static_assert(alignof(FRigUnit_ParentConstraint) == 0x000010, "Wrong alignment on FRigUnit_ParentConstraint"); \ +static_assert(sizeof(FRigUnit_ParentConstraint) == 0x0001C0, "Wrong size on FRigUnit_ParentConstraint"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, Child) == 0x000160, "Member 'FRigUnit_ParentConstraint::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_ParentConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, Filter) == 0x00016D, "Member 'FRigUnit_ParentConstraint::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, Parents) == 0x000178, "Member 'FRigUnit_ParentConstraint::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, AdvancedSettings) == 0x000188, "Member 'FRigUnit_ParentConstraint::AdvancedSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, Weight) == 0x00018C, "Member 'FRigUnit_ParentConstraint::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, ChildCache) == 0x000190, "Member 'FRigUnit_ParentConstraint::ChildCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentConstraint, ParentCaches) == 0x0001B0, "Member 'FRigUnit_ParentConstraint::ParentCaches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigLinearColorMetadata \ +static_assert(alignof(FRigLinearColorMetadata) == 0x000008, "Wrong alignment on FRigLinearColorMetadata"); \ +static_assert(sizeof(FRigLinearColorMetadata) == 0x000038, "Wrong size on FRigLinearColorMetadata"); \ +static_assert(offsetof(FRigLinearColorMetadata, Value) == 0x000028, "Member 'FRigLinearColorMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigLinearColorArrayMetadata \ +static_assert(alignof(FRigLinearColorArrayMetadata) == 0x000008, "Wrong alignment on FRigLinearColorArrayMetadata"); \ +static_assert(sizeof(FRigLinearColorArrayMetadata) == 0x000038, "Wrong size on FRigLinearColorArrayMetadata"); \ +static_assert(offsetof(FRigLinearColorArrayMetadata, Value) == 0x000028, "Member 'FRigLinearColorArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwistBones_WorkData \ +static_assert(alignof(FRigUnit_TwistBones_WorkData) == 0x000008, "Wrong alignment on FRigUnit_TwistBones_WorkData"); \ +static_assert(sizeof(FRigUnit_TwistBones_WorkData) == 0x000030, "Wrong size on FRigUnit_TwistBones_WorkData"); \ +static_assert(offsetof(FRigUnit_TwistBones_WorkData, CachedItems) == 0x000000, "Member 'FRigUnit_TwistBones_WorkData::CachedItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones_WorkData, ItemRatios) == 0x000010, "Member 'FRigUnit_TwistBones_WorkData::ItemRatios' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones_WorkData, ItemTransforms) == 0x000020, "Member 'FRigUnit_TwistBones_WorkData::ItemTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwistBonesPerItem \ +static_assert(alignof(FRigUnit_TwistBonesPerItem) == 0x000010, "Wrong alignment on FRigUnit_TwistBonesPerItem"); \ +static_assert(sizeof(FRigUnit_TwistBonesPerItem) == 0x0001E0, "Wrong size on FRigUnit_TwistBonesPerItem"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, Items) == 0x000160, "Member 'FRigUnit_TwistBonesPerItem::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, TwistAxis) == 0x000170, "Member 'FRigUnit_TwistBonesPerItem::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, PoleAxis) == 0x000188, "Member 'FRigUnit_TwistBonesPerItem::PoleAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, TwistEaseType) == 0x0001A0, "Member 'FRigUnit_TwistBonesPerItem::TwistEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, Weight) == 0x0001A4, "Member 'FRigUnit_TwistBonesPerItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, bPropagateToChildren) == 0x0001A8, "Member 'FRigUnit_TwistBonesPerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBonesPerItem, WorkData) == 0x0001B0, "Member 'FRigUnit_TwistBonesPerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElementKeyMetadata \ +static_assert(alignof(FRigElementKeyMetadata) == 0x000008, "Wrong alignment on FRigElementKeyMetadata"); \ +static_assert(sizeof(FRigElementKeyMetadata) == 0x000038, "Wrong size on FRigElementKeyMetadata"); \ +static_assert(offsetof(FRigElementKeyMetadata, Value) == 0x000028, "Member 'FRigElementKeyMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigElementKeyArrayMetadata \ +static_assert(alignof(FRigElementKeyArrayMetadata) == 0x000008, "Wrong alignment on FRigElementKeyArrayMetadata"); \ +static_assert(sizeof(FRigElementKeyArrayMetadata) == 0x000038, "Wrong size on FRigElementKeyArrayMetadata"); \ +static_assert(offsetof(FRigElementKeyArrayMetadata, Value) == 0x000028, "Member 'FRigElementKeyArrayMetadata::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringInterp \ +static_assert(alignof(FRigUnit_SpringInterp) == 0x000008, "Wrong alignment on FRigUnit_SpringInterp"); \ +static_assert(sizeof(FRigUnit_SpringInterp) == 0x000030, "Wrong size on FRigUnit_SpringInterp"); \ +static_assert(offsetof(FRigUnit_SpringInterp, Current) == 0x000008, "Member 'FRigUnit_SpringInterp::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, Target) == 0x00000C, "Member 'FRigUnit_SpringInterp::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, Stiffness) == 0x000010, "Member 'FRigUnit_SpringInterp::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, CriticalDamping) == 0x000014, "Member 'FRigUnit_SpringInterp::CriticalDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, MASS) == 0x000018, "Member 'FRigUnit_SpringInterp::MASS' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, Result) == 0x00001C, "Member 'FRigUnit_SpringInterp::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterp, SpringState) == 0x000020, "Member 'FRigUnit_SpringInterp::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigInfluenceEntryModifier \ +static_assert(alignof(FRigInfluenceEntryModifier) == 0x000008, "Wrong alignment on FRigInfluenceEntryModifier"); \ +static_assert(sizeof(FRigInfluenceEntryModifier) == 0x000010, "Wrong size on FRigInfluenceEntryModifier"); \ +static_assert(offsetof(FRigInfluenceEntryModifier, AffectedList) == 0x000000, "Member 'FRigInfluenceEntryModifier::AffectedList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKSimpleVectors \ +static_assert(alignof(FRigUnit_TwoBoneIKSimpleVectors) == 0x000008, "Wrong alignment on FRigUnit_TwoBoneIKSimpleVectors"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKSimpleVectors) == 0x000080, "Wrong size on FRigUnit_TwoBoneIKSimpleVectors"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, Root) == 0x000008, "Member 'FRigUnit_TwoBoneIKSimpleVectors::Root' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, PoleVector) == 0x000020, "Member 'FRigUnit_TwoBoneIKSimpleVectors::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, Effector) == 0x000038, "Member 'FRigUnit_TwoBoneIKSimpleVectors::Effector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, bEnableStretch) == 0x000050, "Member 'FRigUnit_TwoBoneIKSimpleVectors::bEnableStretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, StretchStartRatio) == 0x000054, "Member 'FRigUnit_TwoBoneIKSimpleVectors::StretchStartRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, StretchMaximumRatio) == 0x000058, "Member 'FRigUnit_TwoBoneIKSimpleVectors::StretchMaximumRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, BoneALength) == 0x00005C, "Member 'FRigUnit_TwoBoneIKSimpleVectors::BoneALength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, BoneBLength) == 0x000060, "Member 'FRigUnit_TwoBoneIKSimpleVectors::BoneBLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleVectors, Elbow) == 0x000068, "Member 'FRigUnit_TwoBoneIKSimpleVectors::Elbow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigLayerInstanceProxy \ +static_assert(alignof(FControlRigLayerInstanceProxy) == 0x000010, "Wrong alignment on FControlRigLayerInstanceProxy"); \ +static_assert(sizeof(FControlRigLayerInstanceProxy) == 0x0007A0, "Wrong size on FControlRigLayerInstanceProxy"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PointSimulation_WorkData \ +static_assert(alignof(FRigUnit_PointSimulation_WorkData) == 0x000008, "Wrong alignment on FRigUnit_PointSimulation_WorkData"); \ +static_assert(sizeof(FRigUnit_PointSimulation_WorkData) == 0x000088, "Wrong size on FRigUnit_PointSimulation_WorkData"); \ +static_assert(offsetof(FRigUnit_PointSimulation_WorkData, Simulation) == 0x000000, "Member 'FRigUnit_PointSimulation_WorkData::Simulation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_WorkData, BoneIndices) == 0x000078, "Member 'FRigUnit_PointSimulation_WorkData::BoneIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnumParameterNameAndCurve \ +static_assert(alignof(FEnumParameterNameAndCurve) == 0x000008, "Wrong alignment on FEnumParameterNameAndCurve"); \ +static_assert(sizeof(FEnumParameterNameAndCurve) == 0x000110, "Wrong size on FEnumParameterNameAndCurve"); \ +static_assert(offsetof(FEnumParameterNameAndCurve, ParameterName) == 0x000000, "Member 'FEnumParameterNameAndCurve::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FEnumParameterNameAndCurve, ParameterCurve) == 0x000008, "Member 'FEnumParameterNameAndCurve::ParameterCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntegerParameterNameAndCurve \ +static_assert(alignof(FIntegerParameterNameAndCurve) == 0x000008, "Wrong alignment on FIntegerParameterNameAndCurve"); \ +static_assert(sizeof(FIntegerParameterNameAndCurve) == 0x000108, "Wrong size on FIntegerParameterNameAndCurve"); \ +static_assert(offsetof(FIntegerParameterNameAndCurve, ParameterName) == 0x000000, "Member 'FIntegerParameterNameAndCurve::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FIntegerParameterNameAndCurve, ParameterCurve) == 0x000008, "Member 'FIntegerParameterNameAndCurve::ParameterCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneControlRigSpaceBaseKey \ +static_assert(alignof(FMovieSceneControlRigSpaceBaseKey) == 0x000004, "Wrong alignment on FMovieSceneControlRigSpaceBaseKey"); \ +static_assert(sizeof(FMovieSceneControlRigSpaceBaseKey) == 0x000010, "Wrong size on FMovieSceneControlRigSpaceBaseKey"); \ +static_assert(offsetof(FMovieSceneControlRigSpaceBaseKey, SpaceType) == 0x000000, "Member 'FMovieSceneControlRigSpaceBaseKey::SpaceType' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigSpaceBaseKey, ControlRigElement) == 0x000004, "Member 'FMovieSceneControlRigSpaceBaseKey::ControlRigElement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneControlRigSpaceChannel \ +static_assert(alignof(FMovieSceneControlRigSpaceChannel) == 0x000008, "Wrong alignment on FMovieSceneControlRigSpaceChannel"); \ +static_assert(sizeof(FMovieSceneControlRigSpaceChannel) == 0x000110, "Wrong size on FMovieSceneControlRigSpaceChannel"); \ +static_assert(offsetof(FMovieSceneControlRigSpaceChannel, KeyTimes) == 0x000050, "Member 'FMovieSceneControlRigSpaceChannel::KeyTimes' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigSpaceChannel, KeyValues) == 0x000060, "Member 'FMovieSceneControlRigSpaceChannel::KeyValues' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigSpaceChannel, KeyHandles) == 0x000070, "Member 'FMovieSceneControlRigSpaceChannel::KeyHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpaceControlNameAndChannel \ +static_assert(alignof(FSpaceControlNameAndChannel) == 0x000008, "Wrong alignment on FSpaceControlNameAndChannel"); \ +static_assert(sizeof(FSpaceControlNameAndChannel) == 0x000118, "Wrong size on FSpaceControlNameAndChannel"); \ +static_assert(offsetof(FSpaceControlNameAndChannel, ControlName) == 0x000000, "Member 'FSpaceControlNameAndChannel::ControlName' has a wrong offset!"); \ +static_assert(offsetof(FSpaceControlNameAndChannel, SpaceCurve) == 0x000008, "Member 'FSpaceControlNameAndChannel::SpaceCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringInterpV2 \ +static_assert(alignof(FRigUnit_SpringInterpV2) == 0x000008, "Wrong alignment on FRigUnit_SpringInterpV2"); \ +static_assert(sizeof(FRigUnit_SpringInterpV2) == 0x000040, "Wrong size on FRigUnit_SpringInterpV2"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Target) == 0x000008, "Member 'FRigUnit_SpringInterpV2::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Strength) == 0x00000C, "Member 'FRigUnit_SpringInterpV2::Strength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, CriticalDamping) == 0x000010, "Member 'FRigUnit_SpringInterpV2::CriticalDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Force) == 0x000014, "Member 'FRigUnit_SpringInterpV2::Force' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, bUseCurrentInput) == 0x000018, "Member 'FRigUnit_SpringInterpV2::bUseCurrentInput' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Current) == 0x00001C, "Member 'FRigUnit_SpringInterpV2::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, TargetVelocityAmount) == 0x000020, "Member 'FRigUnit_SpringInterpV2::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, bInitializeFromTarget) == 0x000024, "Member 'FRigUnit_SpringInterpV2::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Result) == 0x000028, "Member 'FRigUnit_SpringInterpV2::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, Velocity) == 0x00002C, "Member 'FRigUnit_SpringInterpV2::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, SimulatedResult) == 0x000030, "Member 'FRigUnit_SpringInterpV2::SimulatedResult' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpV2, SpringState) == 0x000034, "Member 'FRigUnit_SpringInterpV2::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChannelMapInfo \ +static_assert(alignof(FChannelMapInfo) == 0x000008, "Wrong alignment on FChannelMapInfo"); \ +static_assert(sizeof(FChannelMapInfo) == 0x000040, "Wrong size on FChannelMapInfo"); \ +static_assert(offsetof(FChannelMapInfo, ControlIndex) == 0x000000, "Member 'FChannelMapInfo::ControlIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, TotalChannelIndex) == 0x000004, "Member 'FChannelMapInfo::TotalChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, ChannelIndex) == 0x000008, "Member 'FChannelMapInfo::ChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, ParentControlIndex) == 0x00000C, "Member 'FChannelMapInfo::ParentControlIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, ChannelTypeName) == 0x000010, "Member 'FChannelMapInfo::ChannelTypeName' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, bDoesHaveSpace) == 0x000018, "Member 'FChannelMapInfo::bDoesHaveSpace' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, SpaceChannelIndex) == 0x00001C, "Member 'FChannelMapInfo::SpaceChannelIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, MaskIndex) == 0x000020, "Member 'FChannelMapInfo::MaskIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, CategoryIndex) == 0x000024, "Member 'FChannelMapInfo::CategoryIndex' has a wrong offset!"); \ +static_assert(offsetof(FChannelMapInfo, ConstraintsIndex) == 0x000030, "Member 'FChannelMapInfo::ConstraintsIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PointSimulation_DebugSettings \ +static_assert(alignof(FRigUnit_PointSimulation_DebugSettings) == 0x000010, "Wrong alignment on FRigUnit_PointSimulation_DebugSettings"); \ +static_assert(sizeof(FRigUnit_PointSimulation_DebugSettings) == 0x000080, "Wrong size on FRigUnit_PointSimulation_DebugSettings"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, bEnabled) == 0x000000, "Member 'FRigUnit_PointSimulation_DebugSettings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, Scale) == 0x000004, "Member 'FRigUnit_PointSimulation_DebugSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, CollisionScale) == 0x000008, "Member 'FRigUnit_PointSimulation_DebugSettings::CollisionScale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, bDrawPointsAsSpheres) == 0x00000C, "Member 'FRigUnit_PointSimulation_DebugSettings::bDrawPointsAsSpheres' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, Color) == 0x000010, "Member 'FRigUnit_PointSimulation_DebugSettings::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_DebugSettings, WorldOffset) == 0x000020, "Member 'FRigUnit_PointSimulation_DebugSettings::WorldOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneControlRigParameterTemplate \ +static_assert(alignof(FMovieSceneControlRigParameterTemplate) == 0x000008, "Wrong alignment on FMovieSceneControlRigParameterTemplate"); \ +static_assert(sizeof(FMovieSceneControlRigParameterTemplate) == 0x0000C0, "Wrong size on FMovieSceneControlRigParameterTemplate"); \ +static_assert(offsetof(FMovieSceneControlRigParameterTemplate, Enums) == 0x000080, "Member 'FMovieSceneControlRigParameterTemplate::Enums' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigParameterTemplate, Integers) == 0x000090, "Member 'FMovieSceneControlRigParameterTemplate::Integers' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigParameterTemplate, Spaces) == 0x0000A0, "Member 'FMovieSceneControlRigParameterTemplate::Spaces' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneControlRigParameterTemplate, Constraints) == 0x0000B0, "Member 'FMovieSceneControlRigParameterTemplate::Constraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRotationOrder \ +static_assert(alignof(FControlRotationOrder) == 0x000001, "Wrong alignment on FControlRotationOrder"); \ +static_assert(sizeof(FControlRotationOrder) == 0x000002, "Wrong size on FControlRotationOrder"); \ +static_assert(offsetof(FControlRotationOrder, RotationOrder) == 0x000000, "Member 'FControlRotationOrder::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FControlRotationOrder, bOverrideSetting) == 0x000001, "Member 'FControlRotationOrder::bOverrideSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigSettingsPerPinBool \ +static_assert(alignof(FControlRigSettingsPerPinBool) == 0x000008, "Wrong alignment on FControlRigSettingsPerPinBool"); \ +static_assert(sizeof(FControlRigSettingsPerPinBool) == 0x000050, "Wrong size on FControlRigSettingsPerPinBool"); \ +static_assert(offsetof(FControlRigSettingsPerPinBool, Values) == 0x000000, "Member 'FControlRigSettingsPerPinBool::Values' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigControlCopy \ +static_assert(alignof(FRigControlCopy) == 0x000010, "Wrong alignment on FRigControlCopy"); \ +static_assert(sizeof(FRigControlCopy) == 0x000230, "Wrong size on FRigControlCopy"); \ +static_assert(offsetof(FRigControlCopy, Name) == 0x000010, "Member 'FRigControlCopy::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, ControlType) == 0x000018, "Member 'FRigControlCopy::ControlType' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, Value) == 0x00001C, "Member 'FRigControlCopy::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, ParentKey) == 0x0000A0, "Member 'FRigControlCopy::ParentKey' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, OffsetTransform) == 0x0000B0, "Member 'FRigControlCopy::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, ParentTransform) == 0x000110, "Member 'FRigControlCopy::ParentTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, LocalTransform) == 0x000170, "Member 'FRigControlCopy::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigControlCopy, GlobalTransform) == 0x0001D0, "Member 'FRigControlCopy::GlobalTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FControlRigControlPose \ +static_assert(alignof(FControlRigControlPose) == 0x000008, "Wrong alignment on FControlRigControlPose"); \ +static_assert(sizeof(FControlRigControlPose) == 0x000060, "Wrong size on FControlRigControlPose"); \ +static_assert(offsetof(FControlRigControlPose, CopyOfControls) == 0x000000, "Member 'FControlRigControlPose::CopyOfControls' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_AnimAttributeBase \ +static_assert(alignof(FRigDispatch_AnimAttributeBase) == 0x000008, "Wrong alignment on FRigDispatch_AnimAttributeBase"); \ +static_assert(sizeof(FRigDispatch_AnimAttributeBase) == 0x0000A0, "Wrong size on FRigDispatch_AnimAttributeBase"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_GetAnimAttribute \ +static_assert(alignof(FRigDispatch_GetAnimAttribute) == 0x000008, "Wrong alignment on FRigDispatch_GetAnimAttribute"); \ +static_assert(sizeof(FRigDispatch_GetAnimAttribute) == 0x0000A0, "Wrong size on FRigDispatch_GetAnimAttribute"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringInterpQuaternionV2 \ +static_assert(alignof(FRigUnit_SpringInterpQuaternionV2) == 0x000010, "Wrong alignment on FRigUnit_SpringInterpQuaternionV2"); \ +static_assert(sizeof(FRigUnit_SpringInterpQuaternionV2) == 0x000130, "Wrong size on FRigUnit_SpringInterpQuaternionV2"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, Target) == 0x000010, "Member 'FRigUnit_SpringInterpQuaternionV2::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, Strength) == 0x000030, "Member 'FRigUnit_SpringInterpQuaternionV2::Strength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, CriticalDamping) == 0x000034, "Member 'FRigUnit_SpringInterpQuaternionV2::CriticalDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, Torque) == 0x000038, "Member 'FRigUnit_SpringInterpQuaternionV2::Torque' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, bUseCurrentInput) == 0x000050, "Member 'FRigUnit_SpringInterpQuaternionV2::bUseCurrentInput' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, Current) == 0x000060, "Member 'FRigUnit_SpringInterpQuaternionV2::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, TargetVelocityAmount) == 0x000080, "Member 'FRigUnit_SpringInterpQuaternionV2::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, bInitializeFromTarget) == 0x000084, "Member 'FRigUnit_SpringInterpQuaternionV2::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, Result) == 0x000090, "Member 'FRigUnit_SpringInterpQuaternionV2::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, AngularVelocity) == 0x0000B0, "Member 'FRigUnit_SpringInterpQuaternionV2::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, SimulatedResult) == 0x0000D0, "Member 'FRigUnit_SpringInterpQuaternionV2::SimulatedResult' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpQuaternionV2, SpringState) == 0x0000F0, "Member 'FRigUnit_SpringInterpQuaternionV2::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_SetAnimAttribute \ +static_assert(alignof(FRigDispatch_SetAnimAttribute) == 0x000008, "Wrong alignment on FRigDispatch_SetAnimAttribute"); \ +static_assert(sizeof(FRigDispatch_SetAnimAttribute) == 0x0000A0, "Wrong size on FRigDispatch_SetAnimAttribute"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SphereTraceWorld \ +static_assert(alignof(FRigUnit_SphereTraceWorld) == 0x000008, "Wrong alignment on FRigUnit_SphereTraceWorld"); \ +static_assert(sizeof(FRigUnit_SphereTraceWorld) == 0x000078, "Wrong size on FRigUnit_SphereTraceWorld"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, Start) == 0x000008, "Member 'FRigUnit_SphereTraceWorld::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, End) == 0x000020, "Member 'FRigUnit_SphereTraceWorld::End' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, Channel) == 0x000038, "Member 'FRigUnit_SphereTraceWorld::Channel' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, Radius) == 0x00003C, "Member 'FRigUnit_SphereTraceWorld::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, bHit) == 0x000040, "Member 'FRigUnit_SphereTraceWorld::bHit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, HitLocation) == 0x000048, "Member 'FRigUnit_SphereTraceWorld::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceWorld, HitNormal) == 0x000060, "Member 'FRigUnit_SphereTraceWorld::HitNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SphereTraceByTraceChannel \ +static_assert(alignof(FRigUnit_SphereTraceByTraceChannel) == 0x000008, "Wrong alignment on FRigUnit_SphereTraceByTraceChannel"); \ +static_assert(sizeof(FRigUnit_SphereTraceByTraceChannel) == 0x000078, "Wrong size on FRigUnit_SphereTraceByTraceChannel"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, Start) == 0x000008, "Member 'FRigUnit_SphereTraceByTraceChannel::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, End) == 0x000020, "Member 'FRigUnit_SphereTraceByTraceChannel::End' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, TraceChannel) == 0x000038, "Member 'FRigUnit_SphereTraceByTraceChannel::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, Radius) == 0x00003C, "Member 'FRigUnit_SphereTraceByTraceChannel::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, bHit) == 0x000040, "Member 'FRigUnit_SphereTraceByTraceChannel::bHit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, HitLocation) == 0x000048, "Member 'FRigUnit_SphereTraceByTraceChannel::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByTraceChannel, HitNormal) == 0x000060, "Member 'FRigUnit_SphereTraceByTraceChannel::HitNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SphereTraceByObjectTypes \ +static_assert(alignof(FRigUnit_SphereTraceByObjectTypes) == 0x000008, "Wrong alignment on FRigUnit_SphereTraceByObjectTypes"); \ +static_assert(sizeof(FRigUnit_SphereTraceByObjectTypes) == 0x000080, "Wrong size on FRigUnit_SphereTraceByObjectTypes"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, Start) == 0x000008, "Member 'FRigUnit_SphereTraceByObjectTypes::Start' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, End) == 0x000020, "Member 'FRigUnit_SphereTraceByObjectTypes::End' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, ObjectTypes) == 0x000038, "Member 'FRigUnit_SphereTraceByObjectTypes::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, Radius) == 0x000048, "Member 'FRigUnit_SphereTraceByObjectTypes::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, bHit) == 0x00004C, "Member 'FRigUnit_SphereTraceByObjectTypes::bHit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, HitLocation) == 0x000050, "Member 'FRigUnit_SphereTraceByObjectTypes::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphereTraceByObjectTypes, HitNormal) == 0x000068, "Member 'FRigUnit_SphereTraceByObjectTypes::HitNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Control \ +static_assert(alignof(FRigUnit_Control) == 0x000010, "Wrong alignment on FRigUnit_Control"); \ +static_assert(sizeof(FRigUnit_Control) == 0x000180, "Wrong size on FRigUnit_Control"); \ +static_assert(offsetof(FRigUnit_Control, Transform) == 0x000008, "Member 'FRigUnit_Control::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Control, base) == 0x000050, "Member 'FRigUnit_Control::base' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Control, InitTransform) == 0x0000B0, "Member 'FRigUnit_Control::InitTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Control, Result) == 0x000110, "Member 'FRigUnit_Control::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Control, Filter) == 0x000170, "Member 'FRigUnit_Control::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Control, bIsInitialized) == 0x000179, "Member 'FRigUnit_Control::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Control_StaticMesh \ +static_assert(alignof(FRigUnit_Control_StaticMesh) == 0x000010, "Wrong alignment on FRigUnit_Control_StaticMesh"); \ +static_assert(sizeof(FRigUnit_Control_StaticMesh) == 0x0001E0, "Wrong size on FRigUnit_Control_StaticMesh"); \ +static_assert(offsetof(FRigUnit_Control_StaticMesh, MeshTransform) == 0x000180, "Member 'FRigUnit_Control_StaticMesh::MeshTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_GetUserData \ +static_assert(alignof(FRigDispatch_GetUserData) == 0x000008, "Wrong alignment on FRigDispatch_GetUserData"); \ +static_assert(sizeof(FRigDispatch_GetUserData) == 0x000070, "Wrong size on FRigDispatch_GetUserData"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetupShapeLibraryFromUserData \ +static_assert(alignof(FRigUnit_SetupShapeLibraryFromUserData) == 0x000010, "Wrong alignment on FRigUnit_SetupShapeLibraryFromUserData"); \ +static_assert(sizeof(FRigUnit_SetupShapeLibraryFromUserData) == 0x0001A0, "Wrong size on FRigUnit_SetupShapeLibraryFromUserData"); \ +static_assert(offsetof(FRigUnit_SetupShapeLibraryFromUserData, Namespace) == 0x000160, "Member 'FRigUnit_SetupShapeLibraryFromUserData::Namespace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetupShapeLibraryFromUserData, Path) == 0x000170, "Member 'FRigUnit_SetupShapeLibraryFromUserData::Path' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetupShapeLibraryFromUserData, LibraryName) == 0x000180, "Member 'FRigUnit_SetupShapeLibraryFromUserData::LibraryName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetupShapeLibraryFromUserData, ReplaceExisting) == 0x000190, "Member 'FRigUnit_SetupShapeLibraryFromUserData::ReplaceExisting' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetupShapeLibraryFromUserData, LogShapeLibraries) == 0x000191, "Member 'FRigUnit_SetupShapeLibraryFromUserData::LogShapeLibraries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ShapeExists \ +static_assert(alignof(FRigUnit_ShapeExists) == 0x000008, "Wrong alignment on FRigUnit_ShapeExists"); \ +static_assert(sizeof(FRigUnit_ShapeExists) == 0x000018, "Wrong size on FRigUnit_ShapeExists"); \ +static_assert(offsetof(FRigUnit_ShapeExists, ShapeName) == 0x000008, "Member 'FRigUnit_ShapeExists::ShapeName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ShapeExists, Result) == 0x000010, "Member 'FRigUnit_ShapeExists::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugBezier \ +static_assert(alignof(FRigUnit_DebugBezier) == 0x000010, "Wrong alignment on FRigUnit_DebugBezier"); \ +static_assert(sizeof(FRigUnit_DebugBezier) == 0x000200, "Wrong size on FRigUnit_DebugBezier"); \ +static_assert(offsetof(FRigUnit_DebugBezier, Bezier) == 0x000100, "Member 'FRigUnit_DebugBezier::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, MinimumU) == 0x000160, "Member 'FRigUnit_DebugBezier::MinimumU' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, MaximumU) == 0x000164, "Member 'FRigUnit_DebugBezier::MaximumU' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, Color) == 0x000168, "Member 'FRigUnit_DebugBezier::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, Thickness) == 0x000178, "Member 'FRigUnit_DebugBezier::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, Detail) == 0x00017C, "Member 'FRigUnit_DebugBezier::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, Space) == 0x000180, "Member 'FRigUnit_DebugBezier::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, WorldOffset) == 0x000190, "Member 'FRigUnit_DebugBezier::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezier, bEnabled) == 0x0001F0, "Member 'FRigUnit_DebugBezier::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugBezierItemSpace \ +static_assert(alignof(FRigUnit_DebugBezierItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugBezierItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugBezierItemSpace) == 0x000200, "Wrong size on FRigUnit_DebugBezierItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, Bezier) == 0x000100, "Member 'FRigUnit_DebugBezierItemSpace::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, MinimumU) == 0x000160, "Member 'FRigUnit_DebugBezierItemSpace::MinimumU' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, MaximumU) == 0x000164, "Member 'FRigUnit_DebugBezierItemSpace::MaximumU' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, Color) == 0x000168, "Member 'FRigUnit_DebugBezierItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, Thickness) == 0x000178, "Member 'FRigUnit_DebugBezierItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, Detail) == 0x00017C, "Member 'FRigUnit_DebugBezierItemSpace::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, Space) == 0x000180, "Member 'FRigUnit_DebugBezierItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, WorldOffset) == 0x000190, "Member 'FRigUnit_DebugBezierItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugBezierItemSpace, bEnabled) == 0x0001F0, "Member 'FRigUnit_DebugBezierItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugHierarchy \ +static_assert(alignof(FRigUnit_DebugHierarchy) == 0x000010, "Wrong alignment on FRigUnit_DebugHierarchy"); \ +static_assert(sizeof(FRigUnit_DebugHierarchy) == 0x0001F0, "Wrong size on FRigUnit_DebugHierarchy"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, ExecuteContext) == 0x000010, "Member 'FRigUnit_DebugHierarchy::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, Scale) == 0x000160, "Member 'FRigUnit_DebugHierarchy::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, Color) == 0x000164, "Member 'FRigUnit_DebugHierarchy::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, Thickness) == 0x000174, "Member 'FRigUnit_DebugHierarchy::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, WorldOffset) == 0x000180, "Member 'FRigUnit_DebugHierarchy::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugHierarchy, bEnabled) == 0x0001E0, "Member 'FRigUnit_DebugHierarchy::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugPose \ +static_assert(alignof(FRigUnit_DebugPose) == 0x000010, "Wrong alignment on FRigUnit_DebugPose"); \ +static_assert(sizeof(FRigUnit_DebugPose) == 0x000260, "Wrong size on FRigUnit_DebugPose"); \ +static_assert(offsetof(FRigUnit_DebugPose, ExecuteContext) == 0x000010, "Member 'FRigUnit_DebugPose::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, Pose) == 0x000160, "Member 'FRigUnit_DebugPose::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, Scale) == 0x0001D0, "Member 'FRigUnit_DebugPose::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, Color) == 0x0001D4, "Member 'FRigUnit_DebugPose::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, Thickness) == 0x0001E4, "Member 'FRigUnit_DebugPose::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugPose::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugPose, bEnabled) == 0x000250, "Member 'FRigUnit_DebugPose::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugLine \ +static_assert(alignof(FRigUnit_DebugLine) == 0x000010, "Wrong alignment on FRigUnit_DebugLine"); \ +static_assert(sizeof(FRigUnit_DebugLine) == 0x000220, "Wrong size on FRigUnit_DebugLine"); \ +static_assert(offsetof(FRigUnit_DebugLine, A) == 0x000160, "Member 'FRigUnit_DebugLine::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, B) == 0x000178, "Member 'FRigUnit_DebugLine::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, Color) == 0x000190, "Member 'FRigUnit_DebugLine::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, Thickness) == 0x0001A0, "Member 'FRigUnit_DebugLine::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, Space) == 0x0001A4, "Member 'FRigUnit_DebugLine::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, WorldOffset) == 0x0001B0, "Member 'FRigUnit_DebugLine::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLine, bEnabled) == 0x000210, "Member 'FRigUnit_DebugLine::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugLineItemSpace \ +static_assert(alignof(FRigUnit_DebugLineItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugLineItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugLineItemSpace) == 0x000220, "Wrong size on FRigUnit_DebugLineItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, A) == 0x000160, "Member 'FRigUnit_DebugLineItemSpace::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, B) == 0x000178, "Member 'FRigUnit_DebugLineItemSpace::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, Color) == 0x000190, "Member 'FRigUnit_DebugLineItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, Thickness) == 0x0001A0, "Member 'FRigUnit_DebugLineItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, Space) == 0x0001A4, "Member 'FRigUnit_DebugLineItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, WorldOffset) == 0x0001B0, "Member 'FRigUnit_DebugLineItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineItemSpace, bEnabled) == 0x000210, "Member 'FRigUnit_DebugLineItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugLineStripItemSpace \ +static_assert(alignof(FRigUnit_DebugLineStripItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugLineStripItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugLineStripItemSpace) == 0x000200, "Wrong size on FRigUnit_DebugLineStripItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, Points) == 0x000160, "Member 'FRigUnit_DebugLineStripItemSpace::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, Color) == 0x000170, "Member 'FRigUnit_DebugLineStripItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, Thickness) == 0x000180, "Member 'FRigUnit_DebugLineStripItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, Space) == 0x000184, "Member 'FRigUnit_DebugLineStripItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, WorldOffset) == 0x000190, "Member 'FRigUnit_DebugLineStripItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugLineStripItemSpace, bEnabled) == 0x0001F0, "Member 'FRigUnit_DebugLineStripItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugRectangle \ +static_assert(alignof(FRigUnit_DebugRectangle) == 0x000010, "Wrong alignment on FRigUnit_DebugRectangle"); \ +static_assert(sizeof(FRigUnit_DebugRectangle) == 0x000250, "Wrong size on FRigUnit_DebugRectangle"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, Transform) == 0x000160, "Member 'FRigUnit_DebugRectangle::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, Color) == 0x0001C0, "Member 'FRigUnit_DebugRectangle::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, Scale) == 0x0001D0, "Member 'FRigUnit_DebugRectangle::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, Thickness) == 0x0001D4, "Member 'FRigUnit_DebugRectangle::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, Space) == 0x0001D8, "Member 'FRigUnit_DebugRectangle::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, WorldOffset) == 0x0001E0, "Member 'FRigUnit_DebugRectangle::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangle, bEnabled) == 0x000240, "Member 'FRigUnit_DebugRectangle::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugRectangleItemSpace \ +static_assert(alignof(FRigUnit_DebugRectangleItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugRectangleItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugRectangleItemSpace) == 0x000260, "Wrong size on FRigUnit_DebugRectangleItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, Transform) == 0x000160, "Member 'FRigUnit_DebugRectangleItemSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, Color) == 0x0001C0, "Member 'FRigUnit_DebugRectangleItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, Scale) == 0x0001D0, "Member 'FRigUnit_DebugRectangleItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, Thickness) == 0x0001D4, "Member 'FRigUnit_DebugRectangleItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, Space) == 0x0001D8, "Member 'FRigUnit_DebugRectangleItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugRectangleItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugRectangleItemSpace, bEnabled) == 0x000250, "Member 'FRigUnit_DebugRectangleItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugArc \ +static_assert(alignof(FRigUnit_DebugArc) == 0x000010, "Wrong alignment on FRigUnit_DebugArc"); \ +static_assert(sizeof(FRigUnit_DebugArc) == 0x000260, "Wrong size on FRigUnit_DebugArc"); \ +static_assert(offsetof(FRigUnit_DebugArc, Transform) == 0x000160, "Member 'FRigUnit_DebugArc::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, Color) == 0x0001C0, "Member 'FRigUnit_DebugArc::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, Radius) == 0x0001D0, "Member 'FRigUnit_DebugArc::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, MinimumDegrees) == 0x0001D4, "Member 'FRigUnit_DebugArc::MinimumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, MaximumDegrees) == 0x0001D8, "Member 'FRigUnit_DebugArc::MaximumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, Thickness) == 0x0001DC, "Member 'FRigUnit_DebugArc::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, Detail) == 0x0001E0, "Member 'FRigUnit_DebugArc::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, Space) == 0x0001E4, "Member 'FRigUnit_DebugArc::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugArc::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArc, bEnabled) == 0x000250, "Member 'FRigUnit_DebugArc::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugArcItemSpace \ +static_assert(alignof(FRigUnit_DebugArcItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugArcItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugArcItemSpace) == 0x000260, "Wrong size on FRigUnit_DebugArcItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Transform) == 0x000160, "Member 'FRigUnit_DebugArcItemSpace::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Color) == 0x0001C0, "Member 'FRigUnit_DebugArcItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Radius) == 0x0001D0, "Member 'FRigUnit_DebugArcItemSpace::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, MinimumDegrees) == 0x0001D4, "Member 'FRigUnit_DebugArcItemSpace::MinimumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, MaximumDegrees) == 0x0001D8, "Member 'FRigUnit_DebugArcItemSpace::MaximumDegrees' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Thickness) == 0x0001DC, "Member 'FRigUnit_DebugArcItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Detail) == 0x0001E0, "Member 'FRigUnit_DebugArcItemSpace::Detail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, Space) == 0x0001E4, "Member 'FRigUnit_DebugArcItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugArcItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugArcItemSpace, bEnabled) == 0x000250, "Member 'FRigUnit_DebugArcItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransform \ +static_assert(alignof(FRigUnit_DebugTransform) == 0x000010, "Wrong alignment on FRigUnit_DebugTransform"); \ +static_assert(sizeof(FRigUnit_DebugTransform) == 0x000110, "Wrong size on FRigUnit_DebugTransform"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Transform) == 0x000010, "Member 'FRigUnit_DebugTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Mode) == 0x000070, "Member 'FRigUnit_DebugTransform::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Color) == 0x000074, "Member 'FRigUnit_DebugTransform::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Thickness) == 0x000084, "Member 'FRigUnit_DebugTransform::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Scale) == 0x000088, "Member 'FRigUnit_DebugTransform::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, Space) == 0x00008C, "Member 'FRigUnit_DebugTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, WorldOffset) == 0x0000A0, "Member 'FRigUnit_DebugTransform::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransform, bEnabled) == 0x000100, "Member 'FRigUnit_DebugTransform::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransformMutable \ +static_assert(alignof(FRigUnit_DebugTransformMutable) == 0x000010, "Wrong alignment on FRigUnit_DebugTransformMutable"); \ +static_assert(sizeof(FRigUnit_DebugTransformMutable) == 0x000260, "Wrong size on FRigUnit_DebugTransformMutable"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Transform) == 0x000160, "Member 'FRigUnit_DebugTransformMutable::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Mode) == 0x0001C0, "Member 'FRigUnit_DebugTransformMutable::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Color) == 0x0001C4, "Member 'FRigUnit_DebugTransformMutable::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Thickness) == 0x0001D4, "Member 'FRigUnit_DebugTransformMutable::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Scale) == 0x0001D8, "Member 'FRigUnit_DebugTransformMutable::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, Space) == 0x0001DC, "Member 'FRigUnit_DebugTransformMutable::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, WorldOffset) == 0x0001F0, "Member 'FRigUnit_DebugTransformMutable::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformMutable, bEnabled) == 0x000250, "Member 'FRigUnit_DebugTransformMutable::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransformArrayMutable_WorkData \ +static_assert(alignof(FRigUnit_DebugTransformArrayMutable_WorkData) == 0x000008, "Wrong alignment on FRigUnit_DebugTransformArrayMutable_WorkData"); \ +static_assert(sizeof(FRigUnit_DebugTransformArrayMutable_WorkData) == 0x000010, "Wrong size on FRigUnit_DebugTransformArrayMutable_WorkData"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable_WorkData, DrawTransforms) == 0x000000, "Member 'FRigUnit_DebugTransformArrayMutable_WorkData::DrawTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransformArrayMutable \ +static_assert(alignof(FRigUnit_DebugTransformArrayMutable) == 0x000010, "Wrong alignment on FRigUnit_DebugTransformArrayMutable"); \ +static_assert(sizeof(FRigUnit_DebugTransformArrayMutable) == 0x000220, "Wrong size on FRigUnit_DebugTransformArrayMutable"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Transforms) == 0x000160, "Member 'FRigUnit_DebugTransformArrayMutable::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Mode) == 0x000170, "Member 'FRigUnit_DebugTransformArrayMutable::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Color) == 0x000174, "Member 'FRigUnit_DebugTransformArrayMutable::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Thickness) == 0x000184, "Member 'FRigUnit_DebugTransformArrayMutable::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Scale) == 0x000188, "Member 'FRigUnit_DebugTransformArrayMutable::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, Space) == 0x00018C, "Member 'FRigUnit_DebugTransformArrayMutable::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, WorldOffset) == 0x0001A0, "Member 'FRigUnit_DebugTransformArrayMutable::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, bEnabled) == 0x000200, "Member 'FRigUnit_DebugTransformArrayMutable::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutable, WorkData) == 0x000208, "Member 'FRigUnit_DebugTransformArrayMutable::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DebugTransformArrayMutableItemSpace \ +static_assert(alignof(FRigUnit_DebugTransformArrayMutableItemSpace) == 0x000010, "Wrong alignment on FRigUnit_DebugTransformArrayMutableItemSpace"); \ +static_assert(sizeof(FRigUnit_DebugTransformArrayMutableItemSpace) == 0x000220, "Wrong size on FRigUnit_DebugTransformArrayMutableItemSpace"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Transforms) == 0x000160, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, ParentIndices) == 0x000170, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::ParentIndices' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Mode) == 0x000180, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Color) == 0x000184, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Thickness) == 0x000194, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Scale) == 0x000198, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, Space) == 0x00019C, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, WorldOffset) == 0x0001B0, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::WorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DebugTransformArrayMutableItemSpace, bEnabled) == 0x000210, "Member 'FRigUnit_DebugTransformArrayMutableItemSpace::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_StartProfilingTimer \ +static_assert(alignof(FRigUnit_StartProfilingTimer) == 0x000010, "Wrong alignment on FRigUnit_StartProfilingTimer"); \ +static_assert(sizeof(FRigUnit_StartProfilingTimer) == 0x000100, "Wrong size on FRigUnit_StartProfilingTimer"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RotationConstraint_AdvancedSettings \ +static_assert(alignof(FRigUnit_RotationConstraint_AdvancedSettings) == 0x000001, "Wrong alignment on FRigUnit_RotationConstraint_AdvancedSettings"); \ +static_assert(sizeof(FRigUnit_RotationConstraint_AdvancedSettings) == 0x000002, "Wrong size on FRigUnit_RotationConstraint_AdvancedSettings"); \ +static_assert(offsetof(FRigUnit_RotationConstraint_AdvancedSettings, InterpolationType) == 0x000000, "Member 'FRigUnit_RotationConstraint_AdvancedSettings::InterpolationType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint_AdvancedSettings, RotationOrderForFilter) == 0x000001, "Member 'FRigUnit_RotationConstraint_AdvancedSettings::RotationOrderForFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RotationConstraint \ +static_assert(alignof(FRigUnit_RotationConstraint) == 0x000010, "Wrong alignment on FRigUnit_RotationConstraint"); \ +static_assert(sizeof(FRigUnit_RotationConstraint) == 0x000190, "Wrong size on FRigUnit_RotationConstraint"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, Child) == 0x000160, "Member 'FRigUnit_RotationConstraint::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_RotationConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, Filter) == 0x00016D, "Member 'FRigUnit_RotationConstraint::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, Parents) == 0x000170, "Member 'FRigUnit_RotationConstraint::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, AdvancedSettings) == 0x000180, "Member 'FRigUnit_RotationConstraint::AdvancedSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraint, Weight) == 0x000184, "Member 'FRigUnit_RotationConstraint::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_EndProfilingTimer \ +static_assert(alignof(FRigUnit_EndProfilingTimer) == 0x000010, "Wrong alignment on FRigUnit_EndProfilingTimer"); \ +static_assert(sizeof(FRigUnit_EndProfilingTimer) == 0x000130, "Wrong size on FRigUnit_EndProfilingTimer"); \ +static_assert(offsetof(FRigUnit_EndProfilingTimer, NumberOfMeasurements) == 0x000100, "Member 'FRigUnit_EndProfilingTimer::NumberOfMeasurements' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_EndProfilingTimer, Prefix) == 0x000108, "Member 'FRigUnit_EndProfilingTimer::Prefix' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_EndProfilingTimer, AccumulatedTime) == 0x000118, "Member 'FRigUnit_EndProfilingTimer::AccumulatedTime' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_EndProfilingTimer, MeasurementsLeft) == 0x00011C, "Member 'FRigUnit_EndProfilingTimer::MeasurementsLeft' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_EndProfilingTimer, bIsInitialized) == 0x000120, "Member 'FRigUnit_EndProfilingTimer::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConstraintTarget \ +static_assert(alignof(FConstraintTarget) == 0x000010, "Wrong alignment on FConstraintTarget"); \ +static_assert(sizeof(FConstraintTarget) == 0x000070, "Wrong size on FConstraintTarget"); \ +static_assert(offsetof(FConstraintTarget, Transform) == 0x000000, "Member 'FConstraintTarget::Transform' has a wrong offset!"); \ +static_assert(offsetof(FConstraintTarget, Weight) == 0x000060, "Member 'FConstraintTarget::Weight' has a wrong offset!"); \ +static_assert(offsetof(FConstraintTarget, bMaintainOffset) == 0x000064, "Member 'FConstraintTarget::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FConstraintTarget, Filter) == 0x000065, "Member 'FConstraintTarget::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TransformConstraintPerItem \ +static_assert(alignof(FRigUnit_TransformConstraintPerItem) == 0x000010, "Wrong alignment on FRigUnit_TransformConstraintPerItem"); \ +static_assert(sizeof(FRigUnit_TransformConstraintPerItem) == 0x000260, "Wrong size on FRigUnit_TransformConstraintPerItem"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, Item) == 0x000160, "Member 'FRigUnit_TransformConstraintPerItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, BaseTransformSpace) == 0x00016C, "Member 'FRigUnit_TransformConstraintPerItem::BaseTransformSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, BaseTransform) == 0x000170, "Member 'FRigUnit_TransformConstraintPerItem::BaseTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, BaseItem) == 0x0001D0, "Member 'FRigUnit_TransformConstraintPerItem::BaseItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, Targets) == 0x0001E0, "Member 'FRigUnit_TransformConstraintPerItem::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, bUseInitialTransforms) == 0x0001F0, "Member 'FRigUnit_TransformConstraintPerItem::bUseInitialTransforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraintPerItem, WorkData) == 0x0001F8, "Member 'FRigUnit_TransformConstraintPerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugVectorItemSpace \ +static_assert(alignof(FRigUnit_VisualDebugVectorItemSpace) == 0x000008, "Wrong alignment on FRigUnit_VisualDebugVectorItemSpace"); \ +static_assert(sizeof(FRigUnit_VisualDebugVectorItemSpace) == 0x000048, "Wrong size on FRigUnit_VisualDebugVectorItemSpace"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Value) == 0x000008, "Member 'FRigUnit_VisualDebugVectorItemSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, bEnabled) == 0x000020, "Member 'FRigUnit_VisualDebugVectorItemSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Mode) == 0x000021, "Member 'FRigUnit_VisualDebugVectorItemSpace::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Color) == 0x000024, "Member 'FRigUnit_VisualDebugVectorItemSpace::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Thickness) == 0x000034, "Member 'FRigUnit_VisualDebugVectorItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Scale) == 0x000038, "Member 'FRigUnit_VisualDebugVectorItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugVectorItemSpace, Space) == 0x00003C, "Member 'FRigUnit_VisualDebugVectorItemSpace::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugQuatItemSpace \ +static_assert(alignof(FRigUnit_VisualDebugQuatItemSpace) == 0x000010, "Wrong alignment on FRigUnit_VisualDebugQuatItemSpace"); \ +static_assert(sizeof(FRigUnit_VisualDebugQuatItemSpace) == 0x000050, "Wrong size on FRigUnit_VisualDebugQuatItemSpace"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuatItemSpace, Value) == 0x000010, "Member 'FRigUnit_VisualDebugQuatItemSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuatItemSpace, bEnabled) == 0x000030, "Member 'FRigUnit_VisualDebugQuatItemSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuatItemSpace, Thickness) == 0x000034, "Member 'FRigUnit_VisualDebugQuatItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuatItemSpace, Scale) == 0x000038, "Member 'FRigUnit_VisualDebugQuatItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugQuatItemSpace, Space) == 0x00003C, "Member 'FRigUnit_VisualDebugQuatItemSpace::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugTransform \ +static_assert(alignof(FRigUnit_VisualDebugTransform) == 0x000010, "Wrong alignment on FRigUnit_VisualDebugTransform"); \ +static_assert(sizeof(FRigUnit_VisualDebugTransform) == 0x000090, "Wrong size on FRigUnit_VisualDebugTransform"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransform, Value) == 0x000010, "Member 'FRigUnit_VisualDebugTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransform, bEnabled) == 0x000070, "Member 'FRigUnit_VisualDebugTransform::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransform, Thickness) == 0x000074, "Member 'FRigUnit_VisualDebugTransform::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransform, Scale) == 0x000078, "Member 'FRigUnit_VisualDebugTransform::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransform, BoneSpace) == 0x00007C, "Member 'FRigUnit_VisualDebugTransform::BoneSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PositionConstraintLocalSpaceOffset \ +static_assert(alignof(FRigUnit_PositionConstraintLocalSpaceOffset) == 0x000010, "Wrong alignment on FRigUnit_PositionConstraintLocalSpaceOffset"); \ +static_assert(sizeof(FRigUnit_PositionConstraintLocalSpaceOffset) == 0x0001C0, "Wrong size on FRigUnit_PositionConstraintLocalSpaceOffset"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, Child) == 0x000160, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, Filter) == 0x00016D, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, Parents) == 0x000170, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, Weight) == 0x000180, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, ChildCache) == 0x000188, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::ChildCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraintLocalSpaceOffset, ParentCaches) == 0x0001A8, "Member 'FRigUnit_PositionConstraintLocalSpaceOffset::ParentCaches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_VisualDebugTransformItemSpace \ +static_assert(alignof(FRigUnit_VisualDebugTransformItemSpace) == 0x000010, "Wrong alignment on FRigUnit_VisualDebugTransformItemSpace"); \ +static_assert(sizeof(FRigUnit_VisualDebugTransformItemSpace) == 0x000090, "Wrong size on FRigUnit_VisualDebugTransformItemSpace"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransformItemSpace, Value) == 0x000010, "Member 'FRigUnit_VisualDebugTransformItemSpace::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransformItemSpace, bEnabled) == 0x000070, "Member 'FRigUnit_VisualDebugTransformItemSpace::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransformItemSpace, Thickness) == 0x000074, "Member 'FRigUnit_VisualDebugTransformItemSpace::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransformItemSpace, Scale) == 0x000078, "Member 'FRigUnit_VisualDebugTransformItemSpace::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_VisualDebugTransformItemSpace, Space) == 0x00007C, "Member 'FRigUnit_VisualDebugTransformItemSpace::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertEulerTransform \ +static_assert(alignof(FRigUnit_ConvertEulerTransform) == 0x000010, "Wrong alignment on FRigUnit_ConvertEulerTransform"); \ +static_assert(sizeof(FRigUnit_ConvertEulerTransform) == 0x0000B0, "Wrong size on FRigUnit_ConvertEulerTransform"); \ +static_assert(offsetof(FRigUnit_ConvertEulerTransform, Input) == 0x000008, "Member 'FRigUnit_ConvertEulerTransform::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertEulerTransform, Result) == 0x000050, "Member 'FRigUnit_ConvertEulerTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_SetMetadata \ +static_assert(alignof(FRigDispatch_SetMetadata) == 0x000008, "Wrong alignment on FRigDispatch_SetMetadata"); \ +static_assert(sizeof(FRigDispatch_SetMetadata) == 0x0000A0, "Wrong size on FRigDispatch_SetMetadata"); \ + +#define DUMPER7_ASSERTS_FRigUnit_InverseExecution \ +static_assert(alignof(FRigUnit_InverseExecution) == 0x000010, "Wrong alignment on FRigUnit_InverseExecution"); \ +static_assert(sizeof(FRigUnit_InverseExecution) == 0x000160, "Wrong size on FRigUnit_InverseExecution"); \ +static_assert(offsetof(FRigUnit_InverseExecution, ExecuteContext) == 0x000010, "Member 'FRigUnit_InverseExecution::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertQuaternion \ +static_assert(alignof(FRigUnit_ConvertQuaternion) == 0x000010, "Wrong alignment on FRigUnit_ConvertQuaternion"); \ +static_assert(sizeof(FRigUnit_ConvertQuaternion) == 0x000050, "Wrong size on FRigUnit_ConvertQuaternion"); \ +static_assert(offsetof(FRigUnit_ConvertQuaternion, Input) == 0x000010, "Member 'FRigUnit_ConvertQuaternion::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertQuaternion, Result) == 0x000030, "Member 'FRigUnit_ConvertQuaternion::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertVectorToRotation \ +static_assert(alignof(FRigUnit_ConvertVectorToRotation) == 0x000008, "Wrong alignment on FRigUnit_ConvertVectorToRotation"); \ +static_assert(sizeof(FRigUnit_ConvertVectorToRotation) == 0x000038, "Wrong size on FRigUnit_ConvertVectorToRotation"); \ +static_assert(offsetof(FRigUnit_ConvertVectorToRotation, Input) == 0x000008, "Member 'FRigUnit_ConvertVectorToRotation::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertVectorToRotation, Result) == 0x000020, "Member 'FRigUnit_ConvertVectorToRotation::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ConvertRotationToVector \ +static_assert(alignof(FRigUnit_ConvertRotationToVector) == 0x000008, "Wrong alignment on FRigUnit_ConvertRotationToVector"); \ +static_assert(sizeof(FRigUnit_ConvertRotationToVector) == 0x000038, "Wrong size on FRigUnit_ConvertRotationToVector"); \ +static_assert(offsetof(FRigUnit_ConvertRotationToVector, Input) == 0x000008, "Member 'FRigUnit_ConvertRotationToVector::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ConvertRotationToVector, Result) == 0x000020, "Member 'FRigUnit_ConvertRotationToVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToSwingAndTwist \ +static_assert(alignof(FRigUnit_ToSwingAndTwist) == 0x000010, "Wrong alignment on FRigUnit_ToSwingAndTwist"); \ +static_assert(sizeof(FRigUnit_ToSwingAndTwist) == 0x000090, "Wrong size on FRigUnit_ToSwingAndTwist"); \ +static_assert(offsetof(FRigUnit_ToSwingAndTwist, Input) == 0x000010, "Member 'FRigUnit_ToSwingAndTwist::Input' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToSwingAndTwist, TwistAxis) == 0x000030, "Member 'FRigUnit_ToSwingAndTwist::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToSwingAndTwist, Swing) == 0x000050, "Member 'FRigUnit_ToSwingAndTwist::Swing' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToSwingAndTwist, Twist) == 0x000070, "Member 'FRigUnit_ToSwingAndTwist::Twist' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Multiply_FloatFloat \ +static_assert(alignof(FRigUnit_Multiply_FloatFloat) == 0x000008, "Wrong alignment on FRigUnit_Multiply_FloatFloat"); \ +static_assert(sizeof(FRigUnit_Multiply_FloatFloat) == 0x000018, "Wrong size on FRigUnit_Multiply_FloatFloat"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemBase \ +static_assert(alignof(FRigUnit_ItemBase) == 0x000008, "Wrong alignment on FRigUnit_ItemBase"); \ +static_assert(sizeof(FRigUnit_ItemBase) == 0x000008, "Wrong size on FRigUnit_ItemBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemTypeEquals \ +static_assert(alignof(FRigUnit_ItemTypeEquals) == 0x000008, "Wrong alignment on FRigUnit_ItemTypeEquals"); \ +static_assert(sizeof(FRigUnit_ItemTypeEquals) == 0x000028, "Wrong size on FRigUnit_ItemTypeEquals"); \ +static_assert(offsetof(FRigUnit_ItemTypeEquals, A) == 0x000008, "Member 'FRigUnit_ItemTypeEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemTypeEquals, B) == 0x000014, "Member 'FRigUnit_ItemTypeEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemTypeEquals, Result) == 0x000020, "Member 'FRigUnit_ItemTypeEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Add_FloatFloat \ +static_assert(alignof(FRigUnit_Add_FloatFloat) == 0x000008, "Wrong alignment on FRigUnit_Add_FloatFloat"); \ +static_assert(sizeof(FRigUnit_Add_FloatFloat) == 0x000018, "Wrong size on FRigUnit_Add_FloatFloat"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Divide_FloatFloat \ +static_assert(alignof(FRigUnit_Divide_FloatFloat) == 0x000008, "Wrong alignment on FRigUnit_Divide_FloatFloat"); \ +static_assert(sizeof(FRigUnit_Divide_FloatFloat) == 0x000018, "Wrong size on FRigUnit_Divide_FloatFloat"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Clamp_Float \ +static_assert(alignof(FRigUnit_Clamp_Float) == 0x000008, "Wrong alignment on FRigUnit_Clamp_Float"); \ +static_assert(sizeof(FRigUnit_Clamp_Float) == 0x000018, "Wrong size on FRigUnit_Clamp_Float"); \ +static_assert(offsetof(FRigUnit_Clamp_Float, Value) == 0x000008, "Member 'FRigUnit_Clamp_Float::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Clamp_Float, Min) == 0x00000C, "Member 'FRigUnit_Clamp_Float::Min' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Clamp_Float, Max) == 0x000010, "Member 'FRigUnit_Clamp_Float::Max' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Clamp_Float, Result) == 0x000014, "Member 'FRigUnit_Clamp_Float::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyBase \ +static_assert(alignof(FRigUnit_HierarchyBase) == 0x000008, "Wrong alignment on FRigUnit_HierarchyBase"); \ +static_assert(sizeof(FRigUnit_HierarchyBase) == 0x000008, "Wrong size on FRigUnit_HierarchyBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetTransformArray \ +static_assert(alignof(FRigUnit_PoseGetTransformArray) == 0x000008, "Wrong alignment on FRigUnit_PoseGetTransformArray"); \ +static_assert(sizeof(FRigUnit_PoseGetTransformArray) == 0x000090, "Wrong size on FRigUnit_PoseGetTransformArray"); \ +static_assert(offsetof(FRigUnit_PoseGetTransformArray, Pose) == 0x000008, "Member 'FRigUnit_PoseGetTransformArray::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransformArray, Space) == 0x000078, "Member 'FRigUnit_PoseGetTransformArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransformArray, Valid) == 0x000079, "Member 'FRigUnit_PoseGetTransformArray::Valid' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransformArray, Transforms) == 0x000080, "Member 'FRigUnit_PoseGetTransformArray::Transforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MapRange_Float \ +static_assert(alignof(FRigUnit_MapRange_Float) == 0x000008, "Wrong alignment on FRigUnit_MapRange_Float"); \ +static_assert(sizeof(FRigUnit_MapRange_Float) == 0x000020, "Wrong size on FRigUnit_MapRange_Float"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, Value) == 0x000008, "Member 'FRigUnit_MapRange_Float::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, MinIn) == 0x00000C, "Member 'FRigUnit_MapRange_Float::MinIn' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, MaxIn) == 0x000010, "Member 'FRigUnit_MapRange_Float::MaxIn' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, MinOut) == 0x000014, "Member 'FRigUnit_MapRange_Float::MinOut' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, MaxOut) == 0x000018, "Member 'FRigUnit_MapRange_Float::MaxOut' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MapRange_Float, Result) == 0x00001C, "Member 'FRigUnit_MapRange_Float::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BinaryQuaternionOp \ +static_assert(alignof(FRigUnit_BinaryQuaternionOp) == 0x000010, "Wrong alignment on FRigUnit_BinaryQuaternionOp"); \ +static_assert(sizeof(FRigUnit_BinaryQuaternionOp) == 0x000070, "Wrong size on FRigUnit_BinaryQuaternionOp"); \ +static_assert(offsetof(FRigUnit_BinaryQuaternionOp, Argument0) == 0x000010, "Member 'FRigUnit_BinaryQuaternionOp::Argument0' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryQuaternionOp, Argument1) == 0x000030, "Member 'FRigUnit_BinaryQuaternionOp::Argument1' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryQuaternionOp, Result) == 0x000050, "Member 'FRigUnit_BinaryQuaternionOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemEquals \ +static_assert(alignof(FRigUnit_ItemEquals) == 0x000008, "Wrong alignment on FRigUnit_ItemEquals"); \ +static_assert(sizeof(FRigUnit_ItemEquals) == 0x000028, "Wrong size on FRigUnit_ItemEquals"); \ +static_assert(offsetof(FRigUnit_ItemEquals, A) == 0x000008, "Member 'FRigUnit_ItemEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemEquals, B) == 0x000014, "Member 'FRigUnit_ItemEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemEquals, Result) == 0x000020, "Member 'FRigUnit_ItemEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MultiplyQuaternion \ +static_assert(alignof(FRigUnit_MultiplyQuaternion) == 0x000010, "Wrong alignment on FRigUnit_MultiplyQuaternion"); \ +static_assert(sizeof(FRigUnit_MultiplyQuaternion) == 0x000070, "Wrong size on FRigUnit_MultiplyQuaternion"); \ + +#define DUMPER7_ASSERTS_FRigUnit_UnaryQuaternionOp \ +static_assert(alignof(FRigUnit_UnaryQuaternionOp) == 0x000010, "Wrong alignment on FRigUnit_UnaryQuaternionOp"); \ +static_assert(sizeof(FRigUnit_UnaryQuaternionOp) == 0x000050, "Wrong size on FRigUnit_UnaryQuaternionOp"); \ +static_assert(offsetof(FRigUnit_UnaryQuaternionOp, Argument) == 0x000010, "Member 'FRigUnit_UnaryQuaternionOp::Argument' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_UnaryQuaternionOp, Result) == 0x000030, "Member 'FRigUnit_UnaryQuaternionOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BoneName \ +static_assert(alignof(FRigUnit_BoneName) == 0x000008, "Wrong alignment on FRigUnit_BoneName"); \ +static_assert(sizeof(FRigUnit_BoneName) == 0x000010, "Wrong size on FRigUnit_BoneName"); \ +static_assert(offsetof(FRigUnit_BoneName, bone) == 0x000008, "Member 'FRigUnit_BoneName::bone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_InverseQuaterion \ +static_assert(alignof(FRigUnit_InverseQuaterion) == 0x000010, "Wrong alignment on FRigUnit_InverseQuaterion"); \ +static_assert(sizeof(FRigUnit_InverseQuaterion) == 0x000050, "Wrong size on FRigUnit_InverseQuaterion"); \ + +#define DUMPER7_ASSERTS_FRigUnit_QuaternionToAxisAndAngle \ +static_assert(alignof(FRigUnit_QuaternionToAxisAndAngle) == 0x000010, "Wrong alignment on FRigUnit_QuaternionToAxisAndAngle"); \ +static_assert(sizeof(FRigUnit_QuaternionToAxisAndAngle) == 0x000050, "Wrong size on FRigUnit_QuaternionToAxisAndAngle"); \ +static_assert(offsetof(FRigUnit_QuaternionToAxisAndAngle, Argument) == 0x000010, "Member 'FRigUnit_QuaternionToAxisAndAngle::Argument' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionToAxisAndAngle, Axis) == 0x000030, "Member 'FRigUnit_QuaternionToAxisAndAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionToAxisAndAngle, Angle) == 0x000048, "Member 'FRigUnit_QuaternionToAxisAndAngle::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemToName \ +static_assert(alignof(FRigUnit_ItemToName) == 0x000008, "Wrong alignment on FRigUnit_ItemToName"); \ +static_assert(sizeof(FRigUnit_ItemToName) == 0x000020, "Wrong size on FRigUnit_ItemToName"); \ +static_assert(offsetof(FRigUnit_ItemToName, Value) == 0x000008, "Member 'FRigUnit_ItemToName::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemToName, Result) == 0x000014, "Member 'FRigUnit_ItemToName::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_QuaternionFromAxisAndAngle \ +static_assert(alignof(FRigUnit_QuaternionFromAxisAndAngle) == 0x000010, "Wrong alignment on FRigUnit_QuaternionFromAxisAndAngle"); \ +static_assert(sizeof(FRigUnit_QuaternionFromAxisAndAngle) == 0x000050, "Wrong size on FRigUnit_QuaternionFromAxisAndAngle"); \ +static_assert(offsetof(FRigUnit_QuaternionFromAxisAndAngle, Axis) == 0x000008, "Member 'FRigUnit_QuaternionFromAxisAndAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionFromAxisAndAngle, Angle) == 0x000020, "Member 'FRigUnit_QuaternionFromAxisAndAngle::Angle' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionFromAxisAndAngle, Result) == 0x000030, "Member 'FRigUnit_QuaternionFromAxisAndAngle::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_QuaternionToAngle \ +static_assert(alignof(FRigUnit_QuaternionToAngle) == 0x000010, "Wrong alignment on FRigUnit_QuaternionToAngle"); \ +static_assert(sizeof(FRigUnit_QuaternionToAngle) == 0x000050, "Wrong size on FRigUnit_QuaternionToAngle"); \ +static_assert(offsetof(FRigUnit_QuaternionToAngle, Axis) == 0x000008, "Member 'FRigUnit_QuaternionToAngle::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionToAngle, Argument) == 0x000020, "Member 'FRigUnit_QuaternionToAngle::Argument' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_QuaternionToAngle, Angle) == 0x000040, "Member 'FRigUnit_QuaternionToAngle::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemExists \ +static_assert(alignof(FRigUnit_ItemExists) == 0x000008, "Wrong alignment on FRigUnit_ItemExists"); \ +static_assert(sizeof(FRigUnit_ItemExists) == 0x000038, "Wrong size on FRigUnit_ItemExists"); \ +static_assert(offsetof(FRigUnit_ItemExists, Item) == 0x000008, "Member 'FRigUnit_ItemExists::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemExists, Exists) == 0x000014, "Member 'FRigUnit_ItemExists::Exists' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemExists, CachedIndex) == 0x000018, "Member 'FRigUnit_ItemExists::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BinaryTransformOp \ +static_assert(alignof(FRigUnit_BinaryTransformOp) == 0x000010, "Wrong alignment on FRigUnit_BinaryTransformOp"); \ +static_assert(sizeof(FRigUnit_BinaryTransformOp) == 0x000130, "Wrong size on FRigUnit_BinaryTransformOp"); \ +static_assert(offsetof(FRigUnit_BinaryTransformOp, Argument0) == 0x000010, "Member 'FRigUnit_BinaryTransformOp::Argument0' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryTransformOp, Argument1) == 0x000070, "Member 'FRigUnit_BinaryTransformOp::Argument1' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryTransformOp, Result) == 0x0000D0, "Member 'FRigUnit_BinaryTransformOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MultiplyTransform \ +static_assert(alignof(FRigUnit_MultiplyTransform) == 0x000010, "Wrong alignment on FRigUnit_MultiplyTransform"); \ +static_assert(sizeof(FRigUnit_MultiplyTransform) == 0x000130, "Wrong size on FRigUnit_MultiplyTransform"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Item \ +static_assert(alignof(FRigUnit_Item) == 0x000008, "Wrong alignment on FRigUnit_Item"); \ +static_assert(sizeof(FRigUnit_Item) == 0x000018, "Wrong size on FRigUnit_Item"); \ +static_assert(offsetof(FRigUnit_Item, Item) == 0x000008, "Member 'FRigUnit_Item::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetRelativeTransform \ +static_assert(alignof(FRigUnit_GetRelativeTransform) == 0x000010, "Wrong alignment on FRigUnit_GetRelativeTransform"); \ +static_assert(sizeof(FRigUnit_GetRelativeTransform) == 0x000130, "Wrong size on FRigUnit_GetRelativeTransform"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BinaryVectorOp \ +static_assert(alignof(FRigUnit_BinaryVectorOp) == 0x000008, "Wrong alignment on FRigUnit_BinaryVectorOp"); \ +static_assert(sizeof(FRigUnit_BinaryVectorOp) == 0x000050, "Wrong size on FRigUnit_BinaryVectorOp"); \ +static_assert(offsetof(FRigUnit_BinaryVectorOp, Argument0) == 0x000008, "Member 'FRigUnit_BinaryVectorOp::Argument0' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryVectorOp, Argument1) == 0x000020, "Member 'FRigUnit_BinaryVectorOp::Argument1' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BinaryVectorOp, Result) == 0x000038, "Member 'FRigUnit_BinaryVectorOp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetAnimationChannelBase \ +static_assert(alignof(FRigUnit_GetAnimationChannelBase) == 0x000008, "Wrong alignment on FRigUnit_GetAnimationChannelBase"); \ +static_assert(sizeof(FRigUnit_GetAnimationChannelBase) == 0x000030, "Wrong size on FRigUnit_GetAnimationChannelBase"); \ +static_assert(offsetof(FRigUnit_GetAnimationChannelBase, Control) == 0x000008, "Member 'FRigUnit_GetAnimationChannelBase::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetAnimationChannelBase, Channel) == 0x000010, "Member 'FRigUnit_GetAnimationChannelBase::Channel' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetAnimationChannelBase, bInitial) == 0x000018, "Member 'FRigUnit_GetAnimationChannelBase::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetAnimationChannelBase, CachedChannelKey) == 0x00001C, "Member 'FRigUnit_GetAnimationChannelBase::CachedChannelKey' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetAnimationChannelBase, CachedChannelHash) == 0x000028, "Member 'FRigUnit_GetAnimationChannelBase::CachedChannelHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetVectorAnimationChannel \ +static_assert(alignof(FRigUnit_GetVectorAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetVectorAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetVectorAnimationChannel) == 0x000048, "Wrong size on FRigUnit_GetVectorAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetVectorAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetVectorAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Multiply_VectorVector \ +static_assert(alignof(FRigUnit_Multiply_VectorVector) == 0x000008, "Wrong alignment on FRigUnit_Multiply_VectorVector"); \ +static_assert(sizeof(FRigUnit_Multiply_VectorVector) == 0x000050, "Wrong size on FRigUnit_Multiply_VectorVector"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Add_VectorVector \ +static_assert(alignof(FRigUnit_Add_VectorVector) == 0x000008, "Wrong alignment on FRigUnit_Add_VectorVector"); \ +static_assert(sizeof(FRigUnit_Add_VectorVector) == 0x000050, "Wrong size on FRigUnit_Add_VectorVector"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ControlName \ +static_assert(alignof(FRigUnit_ControlName) == 0x000008, "Wrong alignment on FRigUnit_ControlName"); \ +static_assert(sizeof(FRigUnit_ControlName) == 0x000010, "Wrong size on FRigUnit_ControlName"); \ +static_assert(offsetof(FRigUnit_ControlName, Control) == 0x000008, "Member 'FRigUnit_ControlName::Control' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Subtract_VectorVector \ +static_assert(alignof(FRigUnit_Subtract_VectorVector) == 0x000008, "Wrong alignment on FRigUnit_Subtract_VectorVector"); \ +static_assert(sizeof(FRigUnit_Subtract_VectorVector) == 0x000050, "Wrong size on FRigUnit_Subtract_VectorVector"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Divide_VectorVector \ +static_assert(alignof(FRigUnit_Divide_VectorVector) == 0x000008, "Wrong alignment on FRigUnit_Divide_VectorVector"); \ +static_assert(sizeof(FRigUnit_Divide_VectorVector) == 0x000050, "Wrong size on FRigUnit_Divide_VectorVector"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SequenceExecution \ +static_assert(alignof(FRigUnit_SequenceExecution) == 0x000010, "Wrong alignment on FRigUnit_SequenceExecution"); \ +static_assert(sizeof(FRigUnit_SequenceExecution) == 0x0006A0, "Wrong size on FRigUnit_SequenceExecution"); \ +static_assert(offsetof(FRigUnit_SequenceExecution, ExecuteContext) == 0x000010, "Member 'FRigUnit_SequenceExecution::ExecuteContext' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SequenceExecution, A) == 0x000160, "Member 'FRigUnit_SequenceExecution::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SequenceExecution, B) == 0x0002B0, "Member 'FRigUnit_SequenceExecution::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SequenceExecution, C) == 0x000400, "Member 'FRigUnit_SequenceExecution::C' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SequenceExecution, D) == 0x000550, "Member 'FRigUnit_SequenceExecution::D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_Distance_VectorVector \ +static_assert(alignof(FRigUnit_Distance_VectorVector) == 0x000008, "Wrong alignment on FRigUnit_Distance_VectorVector"); \ +static_assert(sizeof(FRigUnit_Distance_VectorVector) == 0x000040, "Wrong size on FRigUnit_Distance_VectorVector"); \ +static_assert(offsetof(FRigUnit_Distance_VectorVector, Argument0) == 0x000008, "Member 'FRigUnit_Distance_VectorVector::Argument0' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Distance_VectorVector, Argument1) == 0x000020, "Member 'FRigUnit_Distance_VectorVector::Argument1' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_Distance_VectorVector, Result) == 0x000038, "Member 'FRigUnit_Distance_VectorVector::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAimTarget \ +static_assert(alignof(FAimTarget) == 0x000010, "Wrong alignment on FAimTarget"); \ +static_assert(sizeof(FAimTarget) == 0x000090, "Wrong size on FAimTarget"); \ +static_assert(offsetof(FAimTarget, Weight) == 0x000000, "Member 'FAimTarget::Weight' has a wrong offset!"); \ +static_assert(offsetof(FAimTarget, Transform) == 0x000010, "Member 'FAimTarget::Transform' has a wrong offset!"); \ +static_assert(offsetof(FAimTarget, AlignVector) == 0x000070, "Member 'FAimTarget::AlignVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimConstraint_WorkData \ +static_assert(alignof(FRigUnit_AimConstraint_WorkData) == 0x000008, "Wrong alignment on FRigUnit_AimConstraint_WorkData"); \ +static_assert(sizeof(FRigUnit_AimConstraint_WorkData) == 0x000010, "Wrong size on FRigUnit_AimConstraint_WorkData"); \ +static_assert(offsetof(FRigUnit_AimConstraint_WorkData, ConstraintData) == 0x000000, "Member 'FRigUnit_AimConstraint_WorkData::ConstraintData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimConstraint \ +static_assert(alignof(FRigUnit_AimConstraint) == 0x000010, "Wrong alignment on FRigUnit_AimConstraint"); \ +static_assert(sizeof(FRigUnit_AimConstraint) == 0x0001D0, "Wrong size on FRigUnit_AimConstraint"); \ +static_assert(offsetof(FRigUnit_AimConstraint, Joint) == 0x000160, "Member 'FRigUnit_AimConstraint::Joint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, AimMode) == 0x000168, "Member 'FRigUnit_AimConstraint::AimMode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, UpMode) == 0x000169, "Member 'FRigUnit_AimConstraint::UpMode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, AimVector) == 0x000170, "Member 'FRigUnit_AimConstraint::AimVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, UpVector) == 0x000188, "Member 'FRigUnit_AimConstraint::UpVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, AimTargets) == 0x0001A0, "Member 'FRigUnit_AimConstraint::AimTargets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, UpTargets) == 0x0001B0, "Member 'FRigUnit_AimConstraint::UpTargets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimConstraint, WorkData) == 0x0001C0, "Member 'FRigUnit_AimConstraint::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetAnimationChannelBase \ +static_assert(alignof(FRigUnit_SetAnimationChannelBase) == 0x000010, "Wrong alignment on FRigUnit_SetAnimationChannelBase"); \ +static_assert(sizeof(FRigUnit_SetAnimationChannelBase) == 0x000180, "Wrong size on FRigUnit_SetAnimationChannelBase"); \ +static_assert(offsetof(FRigUnit_SetAnimationChannelBase, ExecuteContext) == 0x000030, "Member 'FRigUnit_SetAnimationChannelBase::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetVectorAnimationChannel \ +static_assert(alignof(FRigUnit_SetVectorAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetVectorAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetVectorAnimationChannel) == 0x0001A0, "Wrong size on FRigUnit_SetVectorAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetVectorAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetVectorAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ApplyFK \ +static_assert(alignof(FRigUnit_ApplyFK) == 0x000010, "Wrong alignment on FRigUnit_ApplyFK"); \ +static_assert(sizeof(FRigUnit_ApplyFK) == 0x000250, "Wrong size on FRigUnit_ApplyFK"); \ +static_assert(offsetof(FRigUnit_ApplyFK, Joint) == 0x000160, "Member 'FRigUnit_ApplyFK::Joint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, Transform) == 0x000170, "Member 'FRigUnit_ApplyFK::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, Filter) == 0x0001D0, "Member 'FRigUnit_ApplyFK::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, ApplyTransformMode) == 0x0001D9, "Member 'FRigUnit_ApplyFK::ApplyTransformMode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, ApplyTransformSpace) == 0x0001DA, "Member 'FRigUnit_ApplyFK::ApplyTransformSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, BaseTransform) == 0x0001E0, "Member 'FRigUnit_ApplyFK::BaseTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ApplyFK, BaseJoint) == 0x000240, "Member 'FRigUnit_ApplyFK::BaseJoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlendTarget \ +static_assert(alignof(FBlendTarget) == 0x000010, "Wrong alignment on FBlendTarget"); \ +static_assert(sizeof(FBlendTarget) == 0x000070, "Wrong size on FBlendTarget"); \ +static_assert(offsetof(FBlendTarget, Transform) == 0x000000, "Member 'FBlendTarget::Transform' has a wrong offset!"); \ +static_assert(offsetof(FBlendTarget, Weight) == 0x000060, "Member 'FBlendTarget::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BlendTransform \ +static_assert(alignof(FRigUnit_BlendTransform) == 0x000010, "Wrong alignment on FRigUnit_BlendTransform"); \ +static_assert(sizeof(FRigUnit_BlendTransform) == 0x0000E0, "Wrong size on FRigUnit_BlendTransform"); \ +static_assert(offsetof(FRigUnit_BlendTransform, Source) == 0x000010, "Member 'FRigUnit_BlendTransform::Source' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BlendTransform, Targets) == 0x000070, "Member 'FRigUnit_BlendTransform::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_BlendTransform, Result) == 0x000080, "Member 'FRigUnit_BlendTransform::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetJointTransform \ +static_assert(alignof(FRigUnit_GetJointTransform) == 0x000010, "Wrong alignment on FRigUnit_GetJointTransform"); \ +static_assert(sizeof(FRigUnit_GetJointTransform) == 0x000240, "Wrong size on FRigUnit_GetJointTransform"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, Joint) == 0x000160, "Member 'FRigUnit_GetJointTransform::Joint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, Type) == 0x000168, "Member 'FRigUnit_GetJointTransform::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, TransformSpace) == 0x000169, "Member 'FRigUnit_GetJointTransform::TransformSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, BaseTransform) == 0x000170, "Member 'FRigUnit_GetJointTransform::BaseTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, BaseJoint) == 0x0001D0, "Member 'FRigUnit_GetJointTransform::BaseJoint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetJointTransform, Output) == 0x0001E0, "Member 'FRigUnit_GetJointTransform::Output' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKFK \ +static_assert(alignof(FRigUnit_TwoBoneIKFK) == 0x000010, "Wrong alignment on FRigUnit_TwoBoneIKFK"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKFK) == 0x000470, "Wrong size on FRigUnit_TwoBoneIKFK"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, StartJoint) == 0x000160, "Member 'FRigUnit_TwoBoneIKFK::StartJoint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, EndJoint) == 0x000168, "Member 'FRigUnit_TwoBoneIKFK::EndJoint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, PoleTarget) == 0x000170, "Member 'FRigUnit_TwoBoneIKFK::PoleTarget' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, Spin) == 0x000188, "Member 'FRigUnit_TwoBoneIKFK::Spin' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, EndEffector) == 0x000190, "Member 'FRigUnit_TwoBoneIKFK::EndEffector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, IKBlend) == 0x0001F0, "Member 'FRigUnit_TwoBoneIKFK::IKBlend' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, StartJointFKTransform) == 0x000200, "Member 'FRigUnit_TwoBoneIKFK::StartJointFKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, MidJointFKTransform) == 0x000260, "Member 'FRigUnit_TwoBoneIKFK::MidJointFKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, EndJointFKTransform) == 0x0002C0, "Member 'FRigUnit_TwoBoneIKFK::EndJointFKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, PreviousFKIKBlend) == 0x000320, "Member 'FRigUnit_TwoBoneIKFK::PreviousFKIKBlend' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, StartJointIKTransform) == 0x000330, "Member 'FRigUnit_TwoBoneIKFK::StartJointIKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, MidJointIKTransform) == 0x000390, "Member 'FRigUnit_TwoBoneIKFK::MidJointIKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, EndJointIKTransform) == 0x0003F0, "Member 'FRigUnit_TwoBoneIKFK::EndJointIKTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, StartJointIndex) == 0x000450, "Member 'FRigUnit_TwoBoneIKFK::StartJointIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, MidJointIndex) == 0x000454, "Member 'FRigUnit_TwoBoneIKFK::MidJointIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, EndJointIndex) == 0x000458, "Member 'FRigUnit_TwoBoneIKFK::EndJointIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, UpperLimbLength) == 0x00045C, "Member 'FRigUnit_TwoBoneIKFK::UpperLimbLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, LowerLimbLength) == 0x000460, "Member 'FRigUnit_TwoBoneIKFK::LowerLimbLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKFK, bIsInitialized) == 0x000464, "Member 'FRigUnit_TwoBoneIKFK::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DrawContainerGetInstruction \ +static_assert(alignof(FRigUnit_DrawContainerGetInstruction) == 0x000010, "Wrong alignment on FRigUnit_DrawContainerGetInstruction"); \ +static_assert(sizeof(FRigUnit_DrawContainerGetInstruction) == 0x000080, "Wrong size on FRigUnit_DrawContainerGetInstruction"); \ +static_assert(offsetof(FRigUnit_DrawContainerGetInstruction, InstructionName) == 0x000008, "Member 'FRigUnit_DrawContainerGetInstruction::InstructionName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawContainerGetInstruction, Color) == 0x000010, "Member 'FRigUnit_DrawContainerGetInstruction::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawContainerGetInstruction, Transform) == 0x000020, "Member 'FRigUnit_DrawContainerGetInstruction::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetIntAnimationChannel \ +static_assert(alignof(FRigUnit_SetIntAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetIntAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetIntAnimationChannel) == 0x000190, "Wrong size on FRigUnit_SetIntAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetIntAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetIntAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DrawContainerSetColor \ +static_assert(alignof(FRigUnit_DrawContainerSetColor) == 0x000010, "Wrong alignment on FRigUnit_DrawContainerSetColor"); \ +static_assert(sizeof(FRigUnit_DrawContainerSetColor) == 0x000180, "Wrong size on FRigUnit_DrawContainerSetColor"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetColor, InstructionName) == 0x000160, "Member 'FRigUnit_DrawContainerSetColor::InstructionName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetColor, Color) == 0x000168, "Member 'FRigUnit_DrawContainerSetColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DrawContainerSetThickness \ +static_assert(alignof(FRigUnit_DrawContainerSetThickness) == 0x000010, "Wrong alignment on FRigUnit_DrawContainerSetThickness"); \ +static_assert(sizeof(FRigUnit_DrawContainerSetThickness) == 0x000170, "Wrong size on FRigUnit_DrawContainerSetThickness"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetThickness, InstructionName) == 0x000160, "Member 'FRigUnit_DrawContainerSetThickness::InstructionName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetThickness, Thickness) == 0x000168, "Member 'FRigUnit_DrawContainerSetThickness::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlVector2D \ +static_assert(alignof(FRigUnit_GetControlVector2D) == 0x000008, "Wrong alignment on FRigUnit_GetControlVector2D"); \ +static_assert(sizeof(FRigUnit_GetControlVector2D) == 0x000060, "Wrong size on FRigUnit_GetControlVector2D"); \ +static_assert(offsetof(FRigUnit_GetControlVector2D, Control) == 0x000008, "Member 'FRigUnit_GetControlVector2D::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector2D, Vector) == 0x000010, "Member 'FRigUnit_GetControlVector2D::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector2D, Minimum) == 0x000020, "Member 'FRigUnit_GetControlVector2D::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector2D, Maximum) == 0x000030, "Member 'FRigUnit_GetControlVector2D::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector2D, CachedControlIndex) == 0x000040, "Member 'FRigUnit_GetControlVector2D::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DrawContainerSetTransform \ +static_assert(alignof(FRigUnit_DrawContainerSetTransform) == 0x000010, "Wrong alignment on FRigUnit_DrawContainerSetTransform"); \ +static_assert(sizeof(FRigUnit_DrawContainerSetTransform) == 0x0001D0, "Wrong size on FRigUnit_DrawContainerSetTransform"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetTransform, InstructionName) == 0x000160, "Member 'FRigUnit_DrawContainerSetTransform::InstructionName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawContainerSetTransform, Transform) == 0x000170, "Member 'FRigUnit_DrawContainerSetTransform::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_BeginExecution \ +static_assert(alignof(FRigUnit_BeginExecution) == 0x000010, "Wrong alignment on FRigUnit_BeginExecution"); \ +static_assert(sizeof(FRigUnit_BeginExecution) == 0x000160, "Wrong size on FRigUnit_BeginExecution"); \ +static_assert(offsetof(FRigUnit_BeginExecution, ExecuteContext) == 0x000010, "Member 'FRigUnit_BeginExecution::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetTransformAnimationChannel \ +static_assert(alignof(FRigUnit_SetTransformAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetTransformAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetTransformAnimationChannel) == 0x0001E0, "Wrong size on FRigUnit_SetTransformAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetTransformAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetTransformAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionBase \ +static_assert(alignof(FRigUnit_CollectionBase) == 0x000008, "Wrong alignment on FRigUnit_CollectionBase"); \ +static_assert(sizeof(FRigUnit_CollectionBase) == 0x000008, "Wrong size on FRigUnit_CollectionBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionBaseMutable \ +static_assert(alignof(FRigUnit_CollectionBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_CollectionBaseMutable"); \ +static_assert(sizeof(FRigUnit_CollectionBaseMutable) == 0x000160, "Wrong size on FRigUnit_CollectionBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetBoolAnimationChannel \ +static_assert(alignof(FRigUnit_SetBoolAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetBoolAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetBoolAnimationChannel) == 0x000190, "Wrong size on FRigUnit_SetBoolAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetBoolAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetBoolAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionChain \ +static_assert(alignof(FRigUnit_CollectionChain) == 0x000008, "Wrong alignment on FRigUnit_CollectionChain"); \ +static_assert(sizeof(FRigUnit_CollectionChain) == 0x000038, "Wrong size on FRigUnit_CollectionChain"); \ +static_assert(offsetof(FRigUnit_CollectionChain, FirstItem) == 0x000008, "Member 'FRigUnit_CollectionChain::FirstItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChain, LastItem) == 0x000014, "Member 'FRigUnit_CollectionChain::LastItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChain, Reverse) == 0x000020, "Member 'FRigUnit_CollectionChain::Reverse' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChain, Collection) == 0x000028, "Member 'FRigUnit_CollectionChain::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionChainArray \ +static_assert(alignof(FRigUnit_CollectionChainArray) == 0x000008, "Wrong alignment on FRigUnit_CollectionChainArray"); \ +static_assert(sizeof(FRigUnit_CollectionChainArray) == 0x000038, "Wrong size on FRigUnit_CollectionChainArray"); \ +static_assert(offsetof(FRigUnit_CollectionChainArray, FirstItem) == 0x000008, "Member 'FRigUnit_CollectionChainArray::FirstItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChainArray, LastItem) == 0x000014, "Member 'FRigUnit_CollectionChainArray::LastItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChainArray, Reverse) == 0x000020, "Member 'FRigUnit_CollectionChainArray::Reverse' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChainArray, Items) == 0x000028, "Member 'FRigUnit_CollectionChainArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlFloat \ +static_assert(alignof(FRigUnit_GetControlFloat) == 0x000008, "Wrong alignment on FRigUnit_GetControlFloat"); \ +static_assert(sizeof(FRigUnit_GetControlFloat) == 0x000040, "Wrong size on FRigUnit_GetControlFloat"); \ +static_assert(offsetof(FRigUnit_GetControlFloat, Control) == 0x000008, "Member 'FRigUnit_GetControlFloat::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlFloat, FloatValue) == 0x000010, "Member 'FRigUnit_GetControlFloat::FloatValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlFloat, Minimum) == 0x000014, "Member 'FRigUnit_GetControlFloat::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlFloat, Maximum) == 0x000018, "Member 'FRigUnit_GetControlFloat::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlFloat, CachedControlIndex) == 0x000020, "Member 'FRigUnit_GetControlFloat::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionNameSearch \ +static_assert(alignof(FRigUnit_CollectionNameSearch) == 0x000008, "Wrong alignment on FRigUnit_CollectionNameSearch"); \ +static_assert(sizeof(FRigUnit_CollectionNameSearch) == 0x000028, "Wrong size on FRigUnit_CollectionNameSearch"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearch, PartialName) == 0x000008, "Member 'FRigUnit_CollectionNameSearch::PartialName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearch, TypeToSearch) == 0x000010, "Member 'FRigUnit_CollectionNameSearch::TypeToSearch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearch, Collection) == 0x000018, "Member 'FRigUnit_CollectionNameSearch::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionNameSearchArray \ +static_assert(alignof(FRigUnit_CollectionNameSearchArray) == 0x000008, "Wrong alignment on FRigUnit_CollectionNameSearchArray"); \ +static_assert(sizeof(FRigUnit_CollectionNameSearchArray) == 0x000028, "Wrong size on FRigUnit_CollectionNameSearchArray"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearchArray, PartialName) == 0x000008, "Member 'FRigUnit_CollectionNameSearchArray::PartialName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearchArray, TypeToSearch) == 0x000010, "Member 'FRigUnit_CollectionNameSearchArray::TypeToSearch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionNameSearchArray, Items) == 0x000018, "Member 'FRigUnit_CollectionNameSearchArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetSpaceTransform \ +static_assert(alignof(FRigUnit_GetSpaceTransform) == 0x000010, "Wrong alignment on FRigUnit_GetSpaceTransform"); \ +static_assert(sizeof(FRigUnit_GetSpaceTransform) == 0x0000A0, "Wrong size on FRigUnit_GetSpaceTransform"); \ +static_assert(offsetof(FRigUnit_GetSpaceTransform, Space) == 0x000008, "Member 'FRigUnit_GetSpaceTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetSpaceTransform, SpaceType) == 0x000010, "Member 'FRigUnit_GetSpaceTransform::SpaceType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetSpaceTransform, Transform) == 0x000020, "Member 'FRigUnit_GetSpaceTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetSpaceTransform, CachedSpaceIndex) == 0x000080, "Member 'FRigUnit_GetSpaceTransform::CachedSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionChildren \ +static_assert(alignof(FRigUnit_CollectionChildren) == 0x000008, "Wrong alignment on FRigUnit_CollectionChildren"); \ +static_assert(sizeof(FRigUnit_CollectionChildren) == 0x000028, "Wrong size on FRigUnit_CollectionChildren"); \ +static_assert(offsetof(FRigUnit_CollectionChildren, Parent) == 0x000008, "Member 'FRigUnit_CollectionChildren::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildren, bIncludeParent) == 0x000014, "Member 'FRigUnit_CollectionChildren::bIncludeParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildren, bRecursive) == 0x000015, "Member 'FRigUnit_CollectionChildren::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildren, TypeToSearch) == 0x000016, "Member 'FRigUnit_CollectionChildren::TypeToSearch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildren, Collection) == 0x000018, "Member 'FRigUnit_CollectionChildren::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionChildrenArray \ +static_assert(alignof(FRigUnit_CollectionChildrenArray) == 0x000008, "Wrong alignment on FRigUnit_CollectionChildrenArray"); \ +static_assert(sizeof(FRigUnit_CollectionChildrenArray) == 0x000028, "Wrong size on FRigUnit_CollectionChildrenArray"); \ +static_assert(offsetof(FRigUnit_CollectionChildrenArray, Parent) == 0x000008, "Member 'FRigUnit_CollectionChildrenArray::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildrenArray, bIncludeParent) == 0x000014, "Member 'FRigUnit_CollectionChildrenArray::bIncludeParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildrenArray, bRecursive) == 0x000015, "Member 'FRigUnit_CollectionChildrenArray::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildrenArray, TypeToSearch) == 0x000016, "Member 'FRigUnit_CollectionChildrenArray::TypeToSearch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionChildrenArray, Items) == 0x000018, "Member 'FRigUnit_CollectionChildrenArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlRotator \ +static_assert(alignof(FRigUnit_GetControlRotator) == 0x000008, "Wrong alignment on FRigUnit_GetControlRotator"); \ +static_assert(sizeof(FRigUnit_GetControlRotator) == 0x000080, "Wrong size on FRigUnit_GetControlRotator"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, Control) == 0x000008, "Member 'FRigUnit_GetControlRotator::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, Space) == 0x000010, "Member 'FRigUnit_GetControlRotator::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, Rotator) == 0x000018, "Member 'FRigUnit_GetControlRotator::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, Minimum) == 0x000030, "Member 'FRigUnit_GetControlRotator::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, Maximum) == 0x000048, "Member 'FRigUnit_GetControlRotator::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlRotator, CachedControlIndex) == 0x000060, "Member 'FRigUnit_GetControlRotator::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionGetAll \ +static_assert(alignof(FRigUnit_CollectionGetAll) == 0x000008, "Wrong alignment on FRigUnit_CollectionGetAll"); \ +static_assert(sizeof(FRigUnit_CollectionGetAll) == 0x000020, "Wrong size on FRigUnit_CollectionGetAll"); \ +static_assert(offsetof(FRigUnit_CollectionGetAll, TypeToSearch) == 0x000008, "Member 'FRigUnit_CollectionGetAll::TypeToSearch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionGetAll, Items) == 0x000010, "Member 'FRigUnit_CollectionGetAll::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionReplaceItems \ +static_assert(alignof(FRigUnit_CollectionReplaceItems) == 0x000008, "Wrong alignment on FRigUnit_CollectionReplaceItems"); \ +static_assert(sizeof(FRigUnit_CollectionReplaceItems) == 0x000040, "Wrong size on FRigUnit_CollectionReplaceItems"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, Items) == 0x000008, "Member 'FRigUnit_CollectionReplaceItems::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, Old) == 0x000018, "Member 'FRigUnit_CollectionReplaceItems::Old' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, New) == 0x000020, "Member 'FRigUnit_CollectionReplaceItems::New' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, RemoveInvalidItems) == 0x000028, "Member 'FRigUnit_CollectionReplaceItems::RemoveInvalidItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, bAllowDuplicates) == 0x000029, "Member 'FRigUnit_CollectionReplaceItems::bAllowDuplicates' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItems, Collection) == 0x000030, "Member 'FRigUnit_CollectionReplaceItems::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlInitialTransform \ +static_assert(alignof(FRigUnit_GetControlInitialTransform) == 0x000010, "Wrong alignment on FRigUnit_GetControlInitialTransform"); \ +static_assert(sizeof(FRigUnit_GetControlInitialTransform) == 0x0000A0, "Wrong size on FRigUnit_GetControlInitialTransform"); \ +static_assert(offsetof(FRigUnit_GetControlInitialTransform, Control) == 0x000008, "Member 'FRigUnit_GetControlInitialTransform::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInitialTransform, Space) == 0x000010, "Member 'FRigUnit_GetControlInitialTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInitialTransform, Transform) == 0x000020, "Member 'FRigUnit_GetControlInitialTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInitialTransform, CachedControlIndex) == 0x000080, "Member 'FRigUnit_GetControlInitialTransform::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionReplaceItemsArray \ +static_assert(alignof(FRigUnit_CollectionReplaceItemsArray) == 0x000008, "Wrong alignment on FRigUnit_CollectionReplaceItemsArray"); \ +static_assert(sizeof(FRigUnit_CollectionReplaceItemsArray) == 0x000040, "Wrong size on FRigUnit_CollectionReplaceItemsArray"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, Items) == 0x000008, "Member 'FRigUnit_CollectionReplaceItemsArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, Old) == 0x000018, "Member 'FRigUnit_CollectionReplaceItemsArray::Old' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, New) == 0x000020, "Member 'FRigUnit_CollectionReplaceItemsArray::New' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, RemoveInvalidItems) == 0x000028, "Member 'FRigUnit_CollectionReplaceItemsArray::RemoveInvalidItems' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, bAllowDuplicates) == 0x000029, "Member 'FRigUnit_CollectionReplaceItemsArray::bAllowDuplicates' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReplaceItemsArray, Result) == 0x000030, "Member 'FRigUnit_CollectionReplaceItemsArray::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionItems \ +static_assert(alignof(FRigUnit_CollectionItems) == 0x000008, "Wrong alignment on FRigUnit_CollectionItems"); \ +static_assert(sizeof(FRigUnit_CollectionItems) == 0x000030, "Wrong size on FRigUnit_CollectionItems"); \ +static_assert(offsetof(FRigUnit_CollectionItems, Items) == 0x000008, "Member 'FRigUnit_CollectionItems::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionItems, bAllowDuplicates) == 0x000018, "Member 'FRigUnit_CollectionItems::bAllowDuplicates' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionItems, Collection) == 0x000020, "Member 'FRigUnit_CollectionItems::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetRelativeBoneTransform \ +static_assert(alignof(FRigUnit_GetRelativeBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_GetRelativeBoneTransform"); \ +static_assert(sizeof(FRigUnit_GetRelativeBoneTransform) == 0x0000C0, "Wrong size on FRigUnit_GetRelativeBoneTransform"); \ +static_assert(offsetof(FRigUnit_GetRelativeBoneTransform, bone) == 0x000008, "Member 'FRigUnit_GetRelativeBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeBoneTransform, Space) == 0x000010, "Member 'FRigUnit_GetRelativeBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeBoneTransform, Transform) == 0x000020, "Member 'FRigUnit_GetRelativeBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeBoneTransform, CachedBone) == 0x000080, "Member 'FRigUnit_GetRelativeBoneTransform::CachedBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeBoneTransform, CachedSpace) == 0x0000A0, "Member 'FRigUnit_GetRelativeBoneTransform::CachedSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionGetItems \ +static_assert(alignof(FRigUnit_CollectionGetItems) == 0x000008, "Wrong alignment on FRigUnit_CollectionGetItems"); \ +static_assert(sizeof(FRigUnit_CollectionGetItems) == 0x000028, "Wrong size on FRigUnit_CollectionGetItems"); \ +static_assert(offsetof(FRigUnit_CollectionGetItems, Collection) == 0x000008, "Member 'FRigUnit_CollectionGetItems::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionGetItems, Items) == 0x000018, "Member 'FRigUnit_CollectionGetItems::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionGetParentIndices \ +static_assert(alignof(FRigUnit_CollectionGetParentIndices) == 0x000008, "Wrong alignment on FRigUnit_CollectionGetParentIndices"); \ +static_assert(sizeof(FRigUnit_CollectionGetParentIndices) == 0x000028, "Wrong size on FRigUnit_CollectionGetParentIndices"); \ +static_assert(offsetof(FRigUnit_CollectionGetParentIndices, Collection) == 0x000008, "Member 'FRigUnit_CollectionGetParentIndices::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionGetParentIndices, ParentIndices) == 0x000018, "Member 'FRigUnit_CollectionGetParentIndices::ParentIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RemoveAllMetadata \ +static_assert(alignof(FRigUnit_RemoveAllMetadata) == 0x000010, "Wrong alignment on FRigUnit_RemoveAllMetadata"); \ +static_assert(sizeof(FRigUnit_RemoveAllMetadata) == 0x000190, "Wrong size on FRigUnit_RemoveAllMetadata"); \ +static_assert(offsetof(FRigUnit_RemoveAllMetadata, Item) == 0x000160, "Member 'FRigUnit_RemoveAllMetadata::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveAllMetadata, Removed) == 0x00016C, "Member 'FRigUnit_RemoveAllMetadata::Removed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveAllMetadata, CachedIndex) == 0x000170, "Member 'FRigUnit_RemoveAllMetadata::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionGetParentIndicesItemArray \ +static_assert(alignof(FRigUnit_CollectionGetParentIndicesItemArray) == 0x000008, "Wrong alignment on FRigUnit_CollectionGetParentIndicesItemArray"); \ +static_assert(sizeof(FRigUnit_CollectionGetParentIndicesItemArray) == 0x000028, "Wrong size on FRigUnit_CollectionGetParentIndicesItemArray"); \ +static_assert(offsetof(FRigUnit_CollectionGetParentIndicesItemArray, Items) == 0x000008, "Member 'FRigUnit_CollectionGetParentIndicesItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionGetParentIndicesItemArray, ParentIndices) == 0x000018, "Member 'FRigUnit_CollectionGetParentIndicesItemArray::ParentIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionUnion \ +static_assert(alignof(FRigUnit_CollectionUnion) == 0x000008, "Wrong alignment on FRigUnit_CollectionUnion"); \ +static_assert(sizeof(FRigUnit_CollectionUnion) == 0x000040, "Wrong size on FRigUnit_CollectionUnion"); \ +static_assert(offsetof(FRigUnit_CollectionUnion, A) == 0x000008, "Member 'FRigUnit_CollectionUnion::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionUnion, B) == 0x000018, "Member 'FRigUnit_CollectionUnion::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionUnion, bAllowDuplicates) == 0x000028, "Member 'FRigUnit_CollectionUnion::bAllowDuplicates' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionUnion, Collection) == 0x000030, "Member 'FRigUnit_CollectionUnion::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetTransformArray \ +static_assert(alignof(FRigUnit_GetTransformArray) == 0x000008, "Wrong alignment on FRigUnit_GetTransformArray"); \ +static_assert(sizeof(FRigUnit_GetTransformArray) == 0x000040, "Wrong size on FRigUnit_GetTransformArray"); \ +static_assert(offsetof(FRigUnit_GetTransformArray, Items) == 0x000008, "Member 'FRigUnit_GetTransformArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformArray, Space) == 0x000018, "Member 'FRigUnit_GetTransformArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformArray, bInitial) == 0x000019, "Member 'FRigUnit_GetTransformArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformArray, Transforms) == 0x000020, "Member 'FRigUnit_GetTransformArray::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformArray, CachedIndex) == 0x000030, "Member 'FRigUnit_GetTransformArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionIntersection \ +static_assert(alignof(FRigUnit_CollectionIntersection) == 0x000008, "Wrong alignment on FRigUnit_CollectionIntersection"); \ +static_assert(sizeof(FRigUnit_CollectionIntersection) == 0x000038, "Wrong size on FRigUnit_CollectionIntersection"); \ +static_assert(offsetof(FRigUnit_CollectionIntersection, A) == 0x000008, "Member 'FRigUnit_CollectionIntersection::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionIntersection, B) == 0x000018, "Member 'FRigUnit_CollectionIntersection::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionIntersection, Collection) == 0x000028, "Member 'FRigUnit_CollectionIntersection::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionDifference \ +static_assert(alignof(FRigUnit_CollectionDifference) == 0x000008, "Wrong alignment on FRigUnit_CollectionDifference"); \ +static_assert(sizeof(FRigUnit_CollectionDifference) == 0x000038, "Wrong size on FRigUnit_CollectionDifference"); \ +static_assert(offsetof(FRigUnit_CollectionDifference, A) == 0x000008, "Member 'FRigUnit_CollectionDifference::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionDifference, B) == 0x000018, "Member 'FRigUnit_CollectionDifference::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionDifference, Collection) == 0x000028, "Member 'FRigUnit_CollectionDifference::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetCurveValue \ +static_assert(alignof(FRigUnit_GetCurveValue) == 0x000008, "Wrong alignment on FRigUnit_GetCurveValue"); \ +static_assert(sizeof(FRigUnit_GetCurveValue) == 0x000038, "Wrong size on FRigUnit_GetCurveValue"); \ +static_assert(offsetof(FRigUnit_GetCurveValue, Curve) == 0x000008, "Member 'FRigUnit_GetCurveValue::Curve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetCurveValue, Valid) == 0x000010, "Member 'FRigUnit_GetCurveValue::Valid' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetCurveValue, Value) == 0x000014, "Member 'FRigUnit_GetCurveValue::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetCurveValue, CachedCurveIndex) == 0x000018, "Member 'FRigUnit_GetCurveValue::CachedCurveIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionReverse \ +static_assert(alignof(FRigUnit_CollectionReverse) == 0x000008, "Wrong alignment on FRigUnit_CollectionReverse"); \ +static_assert(sizeof(FRigUnit_CollectionReverse) == 0x000028, "Wrong size on FRigUnit_CollectionReverse"); \ +static_assert(offsetof(FRigUnit_CollectionReverse, Collection) == 0x000008, "Member 'FRigUnit_CollectionReverse::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionReverse, Reversed) == 0x000018, "Member 'FRigUnit_CollectionReverse::Reversed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionCount \ +static_assert(alignof(FRigUnit_CollectionCount) == 0x000008, "Wrong alignment on FRigUnit_CollectionCount"); \ +static_assert(sizeof(FRigUnit_CollectionCount) == 0x000020, "Wrong size on FRigUnit_CollectionCount"); \ +static_assert(offsetof(FRigUnit_CollectionCount, Collection) == 0x000008, "Member 'FRigUnit_CollectionCount::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionCount, Count) == 0x000018, "Member 'FRigUnit_CollectionCount::Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToWorldSpace_Transform \ +static_assert(alignof(FRigUnit_ToWorldSpace_Transform) == 0x000010, "Wrong alignment on FRigUnit_ToWorldSpace_Transform"); \ +static_assert(sizeof(FRigUnit_ToWorldSpace_Transform) == 0x0000D0, "Wrong size on FRigUnit_ToWorldSpace_Transform"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Transform, Value) == 0x000010, "Member 'FRigUnit_ToWorldSpace_Transform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Transform, World) == 0x000070, "Member 'FRigUnit_ToWorldSpace_Transform::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionItemAtIndex \ +static_assert(alignof(FRigUnit_CollectionItemAtIndex) == 0x000008, "Wrong alignment on FRigUnit_CollectionItemAtIndex"); \ +static_assert(sizeof(FRigUnit_CollectionItemAtIndex) == 0x000028, "Wrong size on FRigUnit_CollectionItemAtIndex"); \ +static_assert(offsetof(FRigUnit_CollectionItemAtIndex, Collection) == 0x000008, "Member 'FRigUnit_CollectionItemAtIndex::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionItemAtIndex, Index) == 0x000018, "Member 'FRigUnit_CollectionItemAtIndex::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionItemAtIndex, Item) == 0x00001C, "Member 'FRigUnit_CollectionItemAtIndex::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionLoop \ +static_assert(alignof(FRigUnit_CollectionLoop) == 0x000010, "Wrong alignment on FRigUnit_CollectionLoop"); \ +static_assert(sizeof(FRigUnit_CollectionLoop) == 0x0002E0, "Wrong size on FRigUnit_CollectionLoop"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, BlockToRun) == 0x000160, "Member 'FRigUnit_CollectionLoop::BlockToRun' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Collection) == 0x000168, "Member 'FRigUnit_CollectionLoop::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Item) == 0x000178, "Member 'FRigUnit_CollectionLoop::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Index) == 0x000184, "Member 'FRigUnit_CollectionLoop::Index' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Count) == 0x000188, "Member 'FRigUnit_CollectionLoop::Count' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Ratio) == 0x00018C, "Member 'FRigUnit_CollectionLoop::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionLoop, Completed) == 0x000190, "Member 'FRigUnit_CollectionLoop::Completed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HasMetadataTagArray \ +static_assert(alignof(FRigUnit_HasMetadataTagArray) == 0x000008, "Wrong alignment on FRigUnit_HasMetadataTagArray"); \ +static_assert(sizeof(FRigUnit_HasMetadataTagArray) == 0x000050, "Wrong size on FRigUnit_HasMetadataTagArray"); \ +static_assert(offsetof(FRigUnit_HasMetadataTagArray, Item) == 0x000008, "Member 'FRigUnit_HasMetadataTagArray::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTagArray, Tags) == 0x000018, "Member 'FRigUnit_HasMetadataTagArray::Tags' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTagArray, Found) == 0x000028, "Member 'FRigUnit_HasMetadataTagArray::Found' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTagArray, CachedIndex) == 0x000030, "Member 'FRigUnit_HasMetadataTagArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CollectionAddItem \ +static_assert(alignof(FRigUnit_CollectionAddItem) == 0x000008, "Wrong alignment on FRigUnit_CollectionAddItem"); \ +static_assert(sizeof(FRigUnit_CollectionAddItem) == 0x000038, "Wrong size on FRigUnit_CollectionAddItem"); \ +static_assert(offsetof(FRigUnit_CollectionAddItem, Collection) == 0x000008, "Member 'FRigUnit_CollectionAddItem::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionAddItem, Item) == 0x000018, "Member 'FRigUnit_CollectionAddItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CollectionAddItem, Result) == 0x000028, "Member 'FRigUnit_CollectionAddItem::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DynamicHierarchyBase \ +static_assert(alignof(FRigUnit_DynamicHierarchyBase) == 0x000008, "Wrong alignment on FRigUnit_DynamicHierarchyBase"); \ +static_assert(sizeof(FRigUnit_DynamicHierarchyBase) == 0x000008, "Wrong size on FRigUnit_DynamicHierarchyBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToWorldSpace_Rotation \ +static_assert(alignof(FRigUnit_ToWorldSpace_Rotation) == 0x000010, "Wrong alignment on FRigUnit_ToWorldSpace_Rotation"); \ +static_assert(sizeof(FRigUnit_ToWorldSpace_Rotation) == 0x000050, "Wrong size on FRigUnit_ToWorldSpace_Rotation"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Rotation, Value) == 0x000010, "Member 'FRigUnit_ToWorldSpace_Rotation::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Rotation, World) == 0x000030, "Member 'FRigUnit_ToWorldSpace_Rotation::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AddParent \ +static_assert(alignof(FRigUnit_AddParent) == 0x000010, "Wrong alignment on FRigUnit_AddParent"); \ +static_assert(sizeof(FRigUnit_AddParent) == 0x000180, "Wrong size on FRigUnit_AddParent"); \ +static_assert(offsetof(FRigUnit_AddParent, Child) == 0x000160, "Member 'FRigUnit_AddParent::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddParent, Parent) == 0x00016C, "Member 'FRigUnit_AddParent::Parent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetTransformItemArray \ +static_assert(alignof(FRigUnit_SetTransformItemArray) == 0x000010, "Wrong alignment on FRigUnit_SetTransformItemArray"); \ +static_assert(sizeof(FRigUnit_SetTransformItemArray) == 0x0001A0, "Wrong size on FRigUnit_SetTransformItemArray"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, Items) == 0x000160, "Member 'FRigUnit_SetTransformItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, Space) == 0x000170, "Member 'FRigUnit_SetTransformItemArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, bInitial) == 0x000171, "Member 'FRigUnit_SetTransformItemArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, Transforms) == 0x000178, "Member 'FRigUnit_SetTransformItemArray::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, Weight) == 0x000188, "Member 'FRigUnit_SetTransformItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, bPropagateToChildren) == 0x00018C, "Member 'FRigUnit_SetTransformItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformItemArray, CachedIndex) == 0x000190, "Member 'FRigUnit_SetTransformItemArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetDefaultParent \ +static_assert(alignof(FRigUnit_SetDefaultParent) == 0x000010, "Wrong alignment on FRigUnit_SetDefaultParent"); \ +static_assert(sizeof(FRigUnit_SetDefaultParent) == 0x000180, "Wrong size on FRigUnit_SetDefaultParent"); \ +static_assert(offsetof(FRigUnit_SetDefaultParent, Child) == 0x000160, "Member 'FRigUnit_SetDefaultParent::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetDefaultParent, Parent) == 0x00016C, "Member 'FRigUnit_SetDefaultParent::Parent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SwitchParent \ +static_assert(alignof(FRigUnit_SwitchParent) == 0x000010, "Wrong alignment on FRigUnit_SwitchParent"); \ +static_assert(sizeof(FRigUnit_SwitchParent) == 0x000180, "Wrong size on FRigUnit_SwitchParent"); \ +static_assert(offsetof(FRigUnit_SwitchParent, Mode) == 0x000160, "Member 'FRigUnit_SwitchParent::Mode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SwitchParent, Child) == 0x000164, "Member 'FRigUnit_SwitchParent::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SwitchParent, Parent) == 0x000170, "Member 'FRigUnit_SwitchParent::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SwitchParent, bMaintainGlobal) == 0x00017C, "Member 'FRigUnit_SwitchParent::bMaintainGlobal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RemoveMetadataTag \ +static_assert(alignof(FRigUnit_RemoveMetadataTag) == 0x000010, "Wrong alignment on FRigUnit_RemoveMetadataTag"); \ +static_assert(sizeof(FRigUnit_RemoveMetadataTag) == 0x0001A0, "Wrong size on FRigUnit_RemoveMetadataTag"); \ +static_assert(offsetof(FRigUnit_RemoveMetadataTag, Item) == 0x000160, "Member 'FRigUnit_RemoveMetadataTag::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadataTag, Tag) == 0x00016C, "Member 'FRigUnit_RemoveMetadataTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadataTag, Removed) == 0x000174, "Member 'FRigUnit_RemoveMetadataTag::Removed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadataTag, CachedIndex) == 0x000178, "Member 'FRigUnit_RemoveMetadataTag::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetParentWeights \ +static_assert(alignof(FRigUnit_HierarchyGetParentWeights) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetParentWeights"); \ +static_assert(sizeof(FRigUnit_HierarchyGetParentWeights) == 0x000038, "Wrong size on FRigUnit_HierarchyGetParentWeights"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeights, Child) == 0x000008, "Member 'FRigUnit_HierarchyGetParentWeights::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeights, Weights) == 0x000018, "Member 'FRigUnit_HierarchyGetParentWeights::Weights' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeights, Parents) == 0x000028, "Member 'FRigUnit_HierarchyGetParentWeights::Parents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetParentWeightsArray \ +static_assert(alignof(FRigUnit_HierarchyGetParentWeightsArray) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetParentWeightsArray"); \ +static_assert(sizeof(FRigUnit_HierarchyGetParentWeightsArray) == 0x000038, "Wrong size on FRigUnit_HierarchyGetParentWeightsArray"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeightsArray, Child) == 0x000008, "Member 'FRigUnit_HierarchyGetParentWeightsArray::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeightsArray, Weights) == 0x000018, "Member 'FRigUnit_HierarchyGetParentWeightsArray::Weights' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentWeightsArray, Parents) == 0x000028, "Member 'FRigUnit_HierarchyGetParentWeightsArray::Parents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PropagateTransform \ +static_assert(alignof(FRigUnit_PropagateTransform) == 0x000010, "Wrong alignment on FRigUnit_PropagateTransform"); \ +static_assert(sizeof(FRigUnit_PropagateTransform) == 0x000190, "Wrong size on FRigUnit_PropagateTransform"); \ +static_assert(offsetof(FRigUnit_PropagateTransform, Item) == 0x000160, "Member 'FRigUnit_PropagateTransform::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PropagateTransform, bRecomputeGlobal) == 0x00016C, "Member 'FRigUnit_PropagateTransform::bRecomputeGlobal' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PropagateTransform, bApplyToChildren) == 0x00016D, "Member 'FRigUnit_PropagateTransform::bApplyToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PropagateTransform, bRecursive) == 0x00016E, "Member 'FRigUnit_PropagateTransform::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PropagateTransform, CachedIndex) == 0x000170, "Member 'FRigUnit_PropagateTransform::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchySetParentWeights \ +static_assert(alignof(FRigUnit_HierarchySetParentWeights) == 0x000010, "Wrong alignment on FRigUnit_HierarchySetParentWeights"); \ +static_assert(sizeof(FRigUnit_HierarchySetParentWeights) == 0x000180, "Wrong size on FRigUnit_HierarchySetParentWeights"); \ +static_assert(offsetof(FRigUnit_HierarchySetParentWeights, Child) == 0x000160, "Member 'FRigUnit_HierarchySetParentWeights::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetParentWeights, Weights) == 0x000170, "Member 'FRigUnit_HierarchySetParentWeights::Weights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyReset \ +static_assert(alignof(FRigUnit_HierarchyReset) == 0x000010, "Wrong alignment on FRigUnit_HierarchyReset"); \ +static_assert(sizeof(FRigUnit_HierarchyReset) == 0x000160, "Wrong size on FRigUnit_HierarchyReset"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FindItemsWithMetadataTagArray \ +static_assert(alignof(FRigUnit_FindItemsWithMetadataTagArray) == 0x000008, "Wrong alignment on FRigUnit_FindItemsWithMetadataTagArray"); \ +static_assert(sizeof(FRigUnit_FindItemsWithMetadataTagArray) == 0x000028, "Wrong size on FRigUnit_FindItemsWithMetadataTagArray"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadataTagArray, Tags) == 0x000008, "Member 'FRigUnit_FindItemsWithMetadataTagArray::Tags' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadataTagArray, Items) == 0x000018, "Member 'FRigUnit_FindItemsWithMetadataTagArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyImportFromSkeleton \ +static_assert(alignof(FRigUnit_HierarchyImportFromSkeleton) == 0x000010, "Wrong alignment on FRigUnit_HierarchyImportFromSkeleton"); \ +static_assert(sizeof(FRigUnit_HierarchyImportFromSkeleton) == 0x000180, "Wrong size on FRigUnit_HierarchyImportFromSkeleton"); \ +static_assert(offsetof(FRigUnit_HierarchyImportFromSkeleton, Namespace) == 0x000160, "Member 'FRigUnit_HierarchyImportFromSkeleton::Namespace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyImportFromSkeleton, bIncludeCurves) == 0x000168, "Member 'FRigUnit_HierarchyImportFromSkeleton::bIncludeCurves' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyImportFromSkeleton, Items) == 0x000170, "Member 'FRigUnit_HierarchyImportFromSkeleton::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyRemoveElement \ +static_assert(alignof(FRigUnit_HierarchyRemoveElement) == 0x000010, "Wrong alignment on FRigUnit_HierarchyRemoveElement"); \ +static_assert(sizeof(FRigUnit_HierarchyRemoveElement) == 0x000170, "Wrong size on FRigUnit_HierarchyRemoveElement"); \ +static_assert(offsetof(FRigUnit_HierarchyRemoveElement, Item) == 0x000160, "Member 'FRigUnit_HierarchyRemoveElement::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyRemoveElement, bSuccess) == 0x00016C, "Member 'FRigUnit_HierarchyRemoveElement::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMetadataTag \ +static_assert(alignof(FRigUnit_SetMetadataTag) == 0x000010, "Wrong alignment on FRigUnit_SetMetadataTag"); \ +static_assert(sizeof(FRigUnit_SetMetadataTag) == 0x0001A0, "Wrong size on FRigUnit_SetMetadataTag"); \ +static_assert(offsetof(FRigUnit_SetMetadataTag, Item) == 0x000160, "Member 'FRigUnit_SetMetadataTag::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMetadataTag, Tag) == 0x00016C, "Member 'FRigUnit_SetMetadataTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMetadataTag, CachedIndex) == 0x000178, "Member 'FRigUnit_SetMetadataTag::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ParentSwitchConstraintArray \ +static_assert(alignof(FRigUnit_ParentSwitchConstraintArray) == 0x000010, "Wrong alignment on FRigUnit_ParentSwitchConstraintArray"); \ +static_assert(sizeof(FRigUnit_ParentSwitchConstraintArray) == 0x000300, "Wrong size on FRigUnit_ParentSwitchConstraintArray"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, Subject) == 0x000160, "Member 'FRigUnit_ParentSwitchConstraintArray::Subject' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, ParentIndex) == 0x00016C, "Member 'FRigUnit_ParentSwitchConstraintArray::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, Parents) == 0x000170, "Member 'FRigUnit_ParentSwitchConstraintArray::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, InitialGlobalTransform) == 0x000180, "Member 'FRigUnit_ParentSwitchConstraintArray::InitialGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, Weight) == 0x0001E0, "Member 'FRigUnit_ParentSwitchConstraintArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, Transform) == 0x0001F0, "Member 'FRigUnit_ParentSwitchConstraintArray::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, Switched) == 0x000250, "Member 'FRigUnit_ParentSwitchConstraintArray::Switched' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, CachedSubject) == 0x000258, "Member 'FRigUnit_ParentSwitchConstraintArray::CachedSubject' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, CachedParent) == 0x000278, "Member 'FRigUnit_ParentSwitchConstraintArray::CachedParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraintArray, RelativeOffset) == 0x0002A0, "Member 'FRigUnit_ParentSwitchConstraintArray::RelativeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddNull \ +static_assert(alignof(FRigUnit_HierarchyAddNull) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddNull"); \ +static_assert(sizeof(FRigUnit_HierarchyAddNull) == 0x0001F0, "Wrong size on FRigUnit_HierarchyAddNull"); \ +static_assert(offsetof(FRigUnit_HierarchyAddNull, Transform) == 0x000180, "Member 'FRigUnit_HierarchyAddNull::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddNull, Space) == 0x0001E0, "Member 'FRigUnit_HierarchyAddNull::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlDrivenList \ +static_assert(alignof(FRigUnit_GetControlDrivenList) == 0x000008, "Wrong alignment on FRigUnit_GetControlDrivenList"); \ +static_assert(sizeof(FRigUnit_GetControlDrivenList) == 0x000040, "Wrong size on FRigUnit_GetControlDrivenList"); \ +static_assert(offsetof(FRigUnit_GetControlDrivenList, Control) == 0x000008, "Member 'FRigUnit_GetControlDrivenList::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlDrivenList, Driven) == 0x000010, "Member 'FRigUnit_GetControlDrivenList::Driven' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlDrivenList, CachedControlIndex) == 0x000020, "Member 'FRigUnit_GetControlDrivenList::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetBoneInitialTransform \ +static_assert(alignof(FRigUnit_SetBoneInitialTransform) == 0x000010, "Wrong alignment on FRigUnit_SetBoneInitialTransform"); \ +static_assert(sizeof(FRigUnit_SetBoneInitialTransform) == 0x000260, "Wrong size on FRigUnit_SetBoneInitialTransform"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, bone) == 0x000160, "Member 'FRigUnit_SetBoneInitialTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, Transform) == 0x000170, "Member 'FRigUnit_SetBoneInitialTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, Result) == 0x0001D0, "Member 'FRigUnit_SetBoneInitialTransform::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, Space) == 0x000230, "Member 'FRigUnit_SetBoneInitialTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, bPropagateToChildren) == 0x000231, "Member 'FRigUnit_SetBoneInitialTransform::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneInitialTransform, CachedBone) == 0x000238, "Member 'FRigUnit_SetBoneInitialTransform::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_OffsetTransformForItem \ +static_assert(alignof(FRigUnit_OffsetTransformForItem) == 0x000010, "Wrong alignment on FRigUnit_OffsetTransformForItem"); \ +static_assert(sizeof(FRigUnit_OffsetTransformForItem) == 0x000200, "Wrong size on FRigUnit_OffsetTransformForItem"); \ +static_assert(offsetof(FRigUnit_OffsetTransformForItem, Item) == 0x000160, "Member 'FRigUnit_OffsetTransformForItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_OffsetTransformForItem, OffsetTransform) == 0x000170, "Member 'FRigUnit_OffsetTransformForItem::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_OffsetTransformForItem, Weight) == 0x0001D0, "Member 'FRigUnit_OffsetTransformForItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_OffsetTransformForItem, bPropagateToChildren) == 0x0001D4, "Member 'FRigUnit_OffsetTransformForItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_OffsetTransformForItem, CachedIndex) == 0x0001D8, "Member 'FRigUnit_OffsetTransformForItem::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlColor \ +static_assert(alignof(FRigUnit_GetControlColor) == 0x000008, "Wrong alignment on FRigUnit_GetControlColor"); \ +static_assert(sizeof(FRigUnit_GetControlColor) == 0x000040, "Wrong size on FRigUnit_GetControlColor"); \ +static_assert(offsetof(FRigUnit_GetControlColor, Control) == 0x000008, "Member 'FRigUnit_GetControlColor::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlColor, Color) == 0x000010, "Member 'FRigUnit_GetControlColor::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlColor, CachedControlIndex) == 0x000020, "Member 'FRigUnit_GetControlColor::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlFloat \ +static_assert(alignof(FRigUnit_SetControlFloat) == 0x000010, "Wrong alignment on FRigUnit_SetControlFloat"); \ +static_assert(sizeof(FRigUnit_SetControlFloat) == 0x000190, "Wrong size on FRigUnit_SetControlFloat"); \ +static_assert(offsetof(FRigUnit_SetControlFloat, Control) == 0x000160, "Member 'FRigUnit_SetControlFloat::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlFloat, Weight) == 0x000168, "Member 'FRigUnit_SetControlFloat::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlFloat, FloatValue) == 0x00016C, "Member 'FRigUnit_SetControlFloat::FloatValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlFloat, CachedControlIndex) == 0x000170, "Member 'FRigUnit_SetControlFloat::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlInteger \ +static_assert(alignof(FRigUnit_HierarchyAddControlInteger) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlInteger"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlInteger) == 0x0002C0, "Wrong size on FRigUnit_HierarchyAddControlInteger"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger, InitialValue) == 0x0001E8, "Member 'FRigUnit_HierarchyAddControlInteger::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlInteger, Settings) == 0x0001F0, "Member 'FRigUnit_HierarchyAddControlInteger::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector2D_LimitSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector2D_LimitSettings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyAddControlVector2D_LimitSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector2D_LimitSettings) == 0x000030, "Wrong size on FRigUnit_HierarchyAddControlVector2D_LimitSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_LimitSettings, LimitX) == 0x000000, "Member 'FRigUnit_HierarchyAddControlVector2D_LimitSettings::LimitX' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_LimitSettings, LimitY) == 0x000002, "Member 'FRigUnit_HierarchyAddControlVector2D_LimitSettings::LimitY' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_LimitSettings, MinValue) == 0x000008, "Member 'FRigUnit_HierarchyAddControlVector2D_LimitSettings::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_LimitSettings, MaxValue) == 0x000018, "Member 'FRigUnit_HierarchyAddControlVector2D_LimitSettings::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_LimitSettings, bDrawLimits) == 0x000028, "Member 'FRigUnit_HierarchyAddControlVector2D_LimitSettings::bDrawLimits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlOffset \ +static_assert(alignof(FRigUnit_SetControlOffset) == 0x000010, "Wrong alignment on FRigUnit_SetControlOffset"); \ +static_assert(sizeof(FRigUnit_SetControlOffset) == 0x000200, "Wrong size on FRigUnit_SetControlOffset"); \ +static_assert(offsetof(FRigUnit_SetControlOffset, Control) == 0x000160, "Member 'FRigUnit_SetControlOffset::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlOffset, Offset) == 0x000170, "Member 'FRigUnit_SetControlOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlOffset, Space) == 0x0001D0, "Member 'FRigUnit_SetControlOffset::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlOffset, CachedControlIndex) == 0x0001D8, "Member 'FRigUnit_SetControlOffset::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector2D_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector2D_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlVector2D_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector2D_Settings) == 0x000100, "Wrong size on FRigUnit_HierarchyAddControlVector2D_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_Settings, PrimaryAxis) == 0x000010, "Member 'FRigUnit_HierarchyAddControlVector2D_Settings::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_Settings, Limits) == 0x000018, "Member 'FRigUnit_HierarchyAddControlVector2D_Settings::Limits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_Settings, Shape) == 0x000050, "Member 'FRigUnit_HierarchyAddControlVector2D_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_Settings, Proxy) == 0x0000D0, "Member 'FRigUnit_HierarchyAddControlVector2D_Settings::Proxy' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D_Settings, FilteredChannels) == 0x0000F0, "Member 'FRigUnit_HierarchyAddControlVector2D_Settings::FilteredChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector2D \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector2D) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlVector2D"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector2D) == 0x000300, "Wrong size on FRigUnit_HierarchyAddControlVector2D"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D, InitialValue) == 0x0001E8, "Member 'FRigUnit_HierarchyAddControlVector2D::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector2D, Settings) == 0x000200, "Member 'FRigUnit_HierarchyAddControlVector2D::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetBoneTransform \ +static_assert(alignof(FRigUnit_SetBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_SetBoneTransform"); \ +static_assert(sizeof(FRigUnit_SetBoneTransform) == 0x000260, "Wrong size on FRigUnit_SetBoneTransform"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, bone) == 0x000160, "Member 'FRigUnit_SetBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, Transform) == 0x000170, "Member 'FRigUnit_SetBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, Result) == 0x0001D0, "Member 'FRigUnit_SetBoneTransform::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, Space) == 0x000230, "Member 'FRigUnit_SetBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, Weight) == 0x000234, "Member 'FRigUnit_SetBoneTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, bPropagateToChildren) == 0x000238, "Member 'FRigUnit_SetBoneTransform::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTransform, CachedBone) == 0x000240, "Member 'FRigUnit_SetBoneTransform::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector_LimitSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector_LimitSettings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyAddControlVector_LimitSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector_LimitSettings) == 0x000040, "Wrong size on FRigUnit_HierarchyAddControlVector_LimitSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, LimitX) == 0x000000, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::LimitX' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, LimitY) == 0x000002, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::LimitY' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, LimitZ) == 0x000004, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::LimitZ' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, MinValue) == 0x000008, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, MaxValue) == 0x000020, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_LimitSettings, bDrawLimits) == 0x000038, "Member 'FRigUnit_HierarchyAddControlVector_LimitSettings::bDrawLimits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlVector_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector_Settings) == 0x000110, "Wrong size on FRigUnit_HierarchyAddControlVector_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, InitialSpace) == 0x000010, "Member 'FRigUnit_HierarchyAddControlVector_Settings::InitialSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, bIsPosition) == 0x000011, "Member 'FRigUnit_HierarchyAddControlVector_Settings::bIsPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, Limits) == 0x000018, "Member 'FRigUnit_HierarchyAddControlVector_Settings::Limits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, Shape) == 0x000060, "Member 'FRigUnit_HierarchyAddControlVector_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, Proxy) == 0x0000E0, "Member 'FRigUnit_HierarchyAddControlVector_Settings::Proxy' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector_Settings, FilteredChannels) == 0x000100, "Member 'FRigUnit_HierarchyAddControlVector_Settings::FilteredChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetIntAnimationChannel \ +static_assert(alignof(FRigUnit_GetIntAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetIntAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetIntAnimationChannel) == 0x000038, "Wrong size on FRigUnit_GetIntAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetIntAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetIntAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlVector \ +static_assert(alignof(FRigUnit_HierarchyAddControlVector) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlVector"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlVector) == 0x000310, "Wrong size on FRigUnit_HierarchyAddControlVector"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector, InitialValue) == 0x0001E8, "Member 'FRigUnit_HierarchyAddControlVector::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlVector, Settings) == 0x000200, "Member 'FRigUnit_HierarchyAddControlVector::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlRotator_LimitSettings \ +static_assert(alignof(FRigUnit_HierarchyAddControlRotator_LimitSettings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyAddControlRotator_LimitSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlRotator_LimitSettings) == 0x000040, "Wrong size on FRigUnit_HierarchyAddControlRotator_LimitSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, LimitPitch) == 0x000000, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::LimitPitch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, LimitYaw) == 0x000002, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::LimitYaw' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, LimitRoll) == 0x000004, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::LimitRoll' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, MinValue) == 0x000008, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::MinValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, MaxValue) == 0x000020, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_LimitSettings, bDrawLimits) == 0x000038, "Member 'FRigUnit_HierarchyAddControlRotator_LimitSettings::bDrawLimits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlVector2D_Entry \ +static_assert(alignof(FRigUnit_SetMultiControlVector2D_Entry) == 0x000008, "Wrong alignment on FRigUnit_SetMultiControlVector2D_Entry"); \ +static_assert(sizeof(FRigUnit_SetMultiControlVector2D_Entry) == 0x000018, "Wrong size on FRigUnit_SetMultiControlVector2D_Entry"); \ +static_assert(offsetof(FRigUnit_SetMultiControlVector2D_Entry, Control) == 0x000000, "Member 'FRigUnit_SetMultiControlVector2D_Entry::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlVector2D_Entry, Vector) == 0x000008, "Member 'FRigUnit_SetMultiControlVector2D_Entry::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlVector2D \ +static_assert(alignof(FRigUnit_SetMultiControlVector2D) == 0x000010, "Wrong alignment on FRigUnit_SetMultiControlVector2D"); \ +static_assert(sizeof(FRigUnit_SetMultiControlVector2D) == 0x000190, "Wrong size on FRigUnit_SetMultiControlVector2D"); \ +static_assert(offsetof(FRigUnit_SetMultiControlVector2D, Entries) == 0x000160, "Member 'FRigUnit_SetMultiControlVector2D::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlVector2D, Weight) == 0x000170, "Member 'FRigUnit_SetMultiControlVector2D::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlVector2D, CachedControlIndices) == 0x000178, "Member 'FRigUnit_SetMultiControlVector2D::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlRotator_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlRotator_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlRotator_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlRotator_Settings) == 0x000110, "Wrong size on FRigUnit_HierarchyAddControlRotator_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_Settings, InitialSpace) == 0x000010, "Member 'FRigUnit_HierarchyAddControlRotator_Settings::InitialSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_Settings, Limits) == 0x000018, "Member 'FRigUnit_HierarchyAddControlRotator_Settings::Limits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_Settings, Shape) == 0x000060, "Member 'FRigUnit_HierarchyAddControlRotator_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_Settings, Proxy) == 0x0000E0, "Member 'FRigUnit_HierarchyAddControlRotator_Settings::Proxy' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator_Settings, FilteredChannels) == 0x000100, "Member 'FRigUnit_HierarchyAddControlRotator_Settings::FilteredChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlRotator \ +static_assert(alignof(FRigUnit_HierarchyAddControlRotator) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlRotator"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlRotator) == 0x000310, "Wrong size on FRigUnit_HierarchyAddControlRotator"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator, InitialValue) == 0x0001E8, "Member 'FRigUnit_HierarchyAddControlRotator::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlRotator, Settings) == 0x000200, "Member 'FRigUnit_HierarchyAddControlRotator::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetTransformAnimationChannel \ +static_assert(alignof(FRigUnit_GetTransformAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_GetTransformAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetTransformAnimationChannel) == 0x000090, "Wrong size on FRigUnit_GetTransformAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetTransformAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetTransformAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlTransform_Settings \ +static_assert(alignof(FRigUnit_HierarchyAddControlTransform_Settings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlTransform_Settings"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlTransform_Settings) == 0x0000D0, "Wrong size on FRigUnit_HierarchyAddControlTransform_Settings"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform_Settings, InitialSpace) == 0x000010, "Member 'FRigUnit_HierarchyAddControlTransform_Settings::InitialSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform_Settings, Shape) == 0x000020, "Member 'FRigUnit_HierarchyAddControlTransform_Settings::Shape' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform_Settings, Proxy) == 0x0000A0, "Member 'FRigUnit_HierarchyAddControlTransform_Settings::Proxy' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform_Settings, FilteredChannels) == 0x0000C0, "Member 'FRigUnit_HierarchyAddControlTransform_Settings::FilteredChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddControlTransform \ +static_assert(alignof(FRigUnit_HierarchyAddControlTransform) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddControlTransform"); \ +static_assert(sizeof(FRigUnit_HierarchyAddControlTransform) == 0x000320, "Wrong size on FRigUnit_HierarchyAddControlTransform"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform, InitialValue) == 0x0001F0, "Member 'FRigUnit_HierarchyAddControlTransform::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddControlTransform, Settings) == 0x000250, "Member 'FRigUnit_HierarchyAddControlTransform::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetBoolAnimationChannel \ +static_assert(alignof(FRigUnit_GetBoolAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetBoolAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetBoolAnimationChannel) == 0x000038, "Wrong size on FRigUnit_GetBoolAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetBoolAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetBoolAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelBool \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelBool) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelBool"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelBool) == 0x000190, "Wrong size on FRigUnit_HierarchyAddAnimationChannelBool"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelBool, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelBool::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelBool, MinimumValue) == 0x000181, "Member 'FRigUnit_HierarchyAddAnimationChannelBool::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelBool, MaximumValue) == 0x000182, "Member 'FRigUnit_HierarchyAddAnimationChannelBool::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelFloat \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelFloat) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelFloat"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelFloat) == 0x000190, "Wrong size on FRigUnit_HierarchyAddAnimationChannelFloat"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelFloat, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelFloat::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelFloat, MinimumValue) == 0x000184, "Member 'FRigUnit_HierarchyAddAnimationChannelFloat::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelFloat, MaximumValue) == 0x000188, "Member 'FRigUnit_HierarchyAddAnimationChannelFloat::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlVector2D \ +static_assert(alignof(FRigUnit_SetControlVector2D) == 0x000010, "Wrong alignment on FRigUnit_SetControlVector2D"); \ +static_assert(sizeof(FRigUnit_SetControlVector2D) == 0x0001A0, "Wrong size on FRigUnit_SetControlVector2D"); \ +static_assert(offsetof(FRigUnit_SetControlVector2D, Control) == 0x000160, "Member 'FRigUnit_SetControlVector2D::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector2D, Weight) == 0x000168, "Member 'FRigUnit_SetControlVector2D::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector2D, Vector) == 0x000170, "Member 'FRigUnit_SetControlVector2D::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector2D, CachedControlIndex) == 0x000180, "Member 'FRigUnit_SetControlVector2D::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelInteger \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelInteger) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelInteger"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelInteger) == 0x000190, "Wrong size on FRigUnit_HierarchyAddAnimationChannelInteger"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelInteger, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelInteger::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelInteger, MinimumValue) == 0x000184, "Member 'FRigUnit_HierarchyAddAnimationChannelInteger::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelInteger, MaximumValue) == 0x000188, "Member 'FRigUnit_HierarchyAddAnimationChannelInteger::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelVector2D \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelVector2D) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelVector2D"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelVector2D) == 0x0001B0, "Wrong size on FRigUnit_HierarchyAddAnimationChannelVector2D"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector2D, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelVector2D::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector2D, MinimumValue) == 0x000190, "Member 'FRigUnit_HierarchyAddAnimationChannelVector2D::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector2D, MaximumValue) == 0x0001A0, "Member 'FRigUnit_HierarchyAddAnimationChannelVector2D::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetCurveValue \ +static_assert(alignof(FRigUnit_SetCurveValue) == 0x000010, "Wrong alignment on FRigUnit_SetCurveValue"); \ +static_assert(sizeof(FRigUnit_SetCurveValue) == 0x000190, "Wrong size on FRigUnit_SetCurveValue"); \ +static_assert(offsetof(FRigUnit_SetCurveValue, Curve) == 0x000160, "Member 'FRigUnit_SetCurveValue::Curve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetCurveValue, Value) == 0x000168, "Member 'FRigUnit_SetCurveValue::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetCurveValue, CachedCurveIndex) == 0x000170, "Member 'FRigUnit_SetCurveValue::CachedCurveIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelVector \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelVector) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelVector"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelVector) == 0x0001D0, "Wrong size on FRigUnit_HierarchyAddAnimationChannelVector"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelVector::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector, MinimumValue) == 0x000198, "Member 'FRigUnit_HierarchyAddAnimationChannelVector::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelVector, MaximumValue) == 0x0001B0, "Member 'FRigUnit_HierarchyAddAnimationChannelVector::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyAddAnimationChannelRotator \ +static_assert(alignof(FRigUnit_HierarchyAddAnimationChannelRotator) == 0x000010, "Wrong alignment on FRigUnit_HierarchyAddAnimationChannelRotator"); \ +static_assert(sizeof(FRigUnit_HierarchyAddAnimationChannelRotator) == 0x0001D0, "Wrong size on FRigUnit_HierarchyAddAnimationChannelRotator"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelRotator, InitialValue) == 0x000180, "Member 'FRigUnit_HierarchyAddAnimationChannelRotator::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelRotator, MinimumValue) == 0x000198, "Member 'FRigUnit_HierarchyAddAnimationChannelRotator::MinimumValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyAddAnimationChannelRotator, MaximumValue) == 0x0001B0, "Member 'FRigUnit_HierarchyAddAnimationChannelRotator::MaximumValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlRotator \ +static_assert(alignof(FRigUnit_SetControlRotator) == 0x000010, "Wrong alignment on FRigUnit_SetControlRotator"); \ +static_assert(sizeof(FRigUnit_SetControlRotator) == 0x0001B0, "Wrong size on FRigUnit_SetControlRotator"); \ +static_assert(offsetof(FRigUnit_SetControlRotator, Control) == 0x000160, "Member 'FRigUnit_SetControlRotator::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlRotator, Weight) == 0x000168, "Member 'FRigUnit_SetControlRotator::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlRotator, Rotator) == 0x000170, "Member 'FRigUnit_SetControlRotator::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlRotator, Space) == 0x000188, "Member 'FRigUnit_SetControlRotator::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlRotator, CachedControlIndex) == 0x000190, "Member 'FRigUnit_SetControlRotator::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetShapeSettings \ +static_assert(alignof(FRigUnit_HierarchyGetShapeSettings) == 0x000010, "Wrong alignment on FRigUnit_HierarchyGetShapeSettings"); \ +static_assert(sizeof(FRigUnit_HierarchyGetShapeSettings) == 0x0000A0, "Wrong size on FRigUnit_HierarchyGetShapeSettings"); \ +static_assert(offsetof(FRigUnit_HierarchyGetShapeSettings, Item) == 0x000008, "Member 'FRigUnit_HierarchyGetShapeSettings::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetShapeSettings, Settings) == 0x000020, "Member 'FRigUnit_HierarchyGetShapeSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchySetShapeSettings \ +static_assert(alignof(FRigUnit_HierarchySetShapeSettings) == 0x000010, "Wrong alignment on FRigUnit_HierarchySetShapeSettings"); \ +static_assert(sizeof(FRigUnit_HierarchySetShapeSettings) == 0x0001F0, "Wrong size on FRigUnit_HierarchySetShapeSettings"); \ +static_assert(offsetof(FRigUnit_HierarchySetShapeSettings, Item) == 0x000160, "Member 'FRigUnit_HierarchySetShapeSettings::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetShapeSettings, Settings) == 0x000170, "Member 'FRigUnit_HierarchySetShapeSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlInteger_Entry \ +static_assert(alignof(FRigUnit_SetMultiControlInteger_Entry) == 0x000004, "Wrong alignment on FRigUnit_SetMultiControlInteger_Entry"); \ +static_assert(sizeof(FRigUnit_SetMultiControlInteger_Entry) == 0x00000C, "Wrong size on FRigUnit_SetMultiControlInteger_Entry"); \ +static_assert(offsetof(FRigUnit_SetMultiControlInteger_Entry, Control) == 0x000000, "Member 'FRigUnit_SetMultiControlInteger_Entry::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlInteger_Entry, IntegerValue) == 0x000008, "Member 'FRigUnit_SetMultiControlInteger_Entry::IntegerValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlVisibility \ +static_assert(alignof(FRigUnit_GetControlVisibility) == 0x000008, "Wrong alignment on FRigUnit_GetControlVisibility"); \ +static_assert(sizeof(FRigUnit_GetControlVisibility) == 0x000038, "Wrong size on FRigUnit_GetControlVisibility"); \ +static_assert(offsetof(FRigUnit_GetControlVisibility, Item) == 0x000008, "Member 'FRigUnit_GetControlVisibility::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVisibility, bVisible) == 0x000014, "Member 'FRigUnit_GetControlVisibility::bVisible' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVisibility, CachedControlIndex) == 0x000018, "Member 'FRigUnit_GetControlVisibility::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetParent \ +static_assert(alignof(FRigUnit_HierarchyGetParent) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetParent"); \ +static_assert(sizeof(FRigUnit_HierarchyGetParent) == 0x000060, "Wrong size on FRigUnit_HierarchyGetParent"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParent, Child) == 0x000008, "Member 'FRigUnit_HierarchyGetParent::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParent, Parent) == 0x000014, "Member 'FRigUnit_HierarchyGetParent::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParent, CachedChild) == 0x000020, "Member 'FRigUnit_HierarchyGetParent::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParent, CachedParent) == 0x000040, "Member 'FRigUnit_HierarchyGetParent::CachedParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetParents \ +static_assert(alignof(FRigUnit_HierarchyGetParents) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetParents"); \ +static_assert(sizeof(FRigUnit_HierarchyGetParents) == 0x000058, "Wrong size on FRigUnit_HierarchyGetParents"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, Child) == 0x000008, "Member 'FRigUnit_HierarchyGetParents::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, bIncludeChild) == 0x000014, "Member 'FRigUnit_HierarchyGetParents::bIncludeChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, bReverse) == 0x000015, "Member 'FRigUnit_HierarchyGetParents::bReverse' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, Parents) == 0x000018, "Member 'FRigUnit_HierarchyGetParents::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, CachedChild) == 0x000028, "Member 'FRigUnit_HierarchyGetParents::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParents, CachedParents) == 0x000048, "Member 'FRigUnit_HierarchyGetParents::CachedParents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetTranslation \ +static_assert(alignof(FRigUnit_SetTranslation) == 0x000010, "Wrong alignment on FRigUnit_SetTranslation"); \ +static_assert(sizeof(FRigUnit_SetTranslation) == 0x0001B0, "Wrong size on FRigUnit_SetTranslation"); \ +static_assert(offsetof(FRigUnit_SetTranslation, Item) == 0x000160, "Member 'FRigUnit_SetTranslation::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, Space) == 0x00016C, "Member 'FRigUnit_SetTranslation::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, bInitial) == 0x00016D, "Member 'FRigUnit_SetTranslation::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, Value) == 0x000170, "Member 'FRigUnit_SetTranslation::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, Weight) == 0x000188, "Member 'FRigUnit_SetTranslation::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, bPropagateToChildren) == 0x00018C, "Member 'FRigUnit_SetTranslation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTranslation, CachedIndex) == 0x000190, "Member 'FRigUnit_SetTranslation::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetParentsItemArray \ +static_assert(alignof(FRigUnit_HierarchyGetParentsItemArray) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetParentsItemArray"); \ +static_assert(sizeof(FRigUnit_HierarchyGetParentsItemArray) == 0x000058, "Wrong size on FRigUnit_HierarchyGetParentsItemArray"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, Child) == 0x000008, "Member 'FRigUnit_HierarchyGetParentsItemArray::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, bIncludeChild) == 0x000014, "Member 'FRigUnit_HierarchyGetParentsItemArray::bIncludeChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, bReverse) == 0x000015, "Member 'FRigUnit_HierarchyGetParentsItemArray::bReverse' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, Parents) == 0x000018, "Member 'FRigUnit_HierarchyGetParentsItemArray::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, CachedChild) == 0x000028, "Member 'FRigUnit_HierarchyGetParentsItemArray::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetParentsItemArray, CachedParents) == 0x000048, "Member 'FRigUnit_HierarchyGetParentsItemArray::CachedParents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetChildren \ +static_assert(alignof(FRigUnit_HierarchyGetChildren) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetChildren"); \ +static_assert(sizeof(FRigUnit_HierarchyGetChildren) == 0x000058, "Wrong size on FRigUnit_HierarchyGetChildren"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, Parent) == 0x000008, "Member 'FRigUnit_HierarchyGetChildren::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, bIncludeParent) == 0x000014, "Member 'FRigUnit_HierarchyGetChildren::bIncludeParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, bRecursive) == 0x000015, "Member 'FRigUnit_HierarchyGetChildren::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, Children) == 0x000018, "Member 'FRigUnit_HierarchyGetChildren::Children' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, CachedParent) == 0x000028, "Member 'FRigUnit_HierarchyGetChildren::CachedParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetChildren, CachedChildren) == 0x000048, "Member 'FRigUnit_HierarchyGetChildren::CachedChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRelativeTransformForItem \ +static_assert(alignof(FRigUnit_SetRelativeTransformForItem) == 0x000010, "Wrong alignment on FRigUnit_SetRelativeTransformForItem"); \ +static_assert(sizeof(FRigUnit_SetRelativeTransformForItem) == 0x000230, "Wrong size on FRigUnit_SetRelativeTransformForItem"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, Child) == 0x000160, "Member 'FRigUnit_SetRelativeTransformForItem::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, Parent) == 0x00016C, "Member 'FRigUnit_SetRelativeTransformForItem::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, bParentInitial) == 0x000178, "Member 'FRigUnit_SetRelativeTransformForItem::bParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, Value) == 0x000180, "Member 'FRigUnit_SetRelativeTransformForItem::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, Weight) == 0x0001E0, "Member 'FRigUnit_SetRelativeTransformForItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, bPropagateToChildren) == 0x0001E4, "Member 'FRigUnit_SetRelativeTransformForItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, CachedChild) == 0x0001E8, "Member 'FRigUnit_SetRelativeTransformForItem::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTransformForItem, CachedParent) == 0x000208, "Member 'FRigUnit_SetRelativeTransformForItem::CachedParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetSiblings \ +static_assert(alignof(FRigUnit_HierarchyGetSiblings) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetSiblings"); \ +static_assert(sizeof(FRigUnit_HierarchyGetSiblings) == 0x000058, "Wrong size on FRigUnit_HierarchyGetSiblings"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblings, Item) == 0x000008, "Member 'FRigUnit_HierarchyGetSiblings::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblings, bIncludeItem) == 0x000014, "Member 'FRigUnit_HierarchyGetSiblings::bIncludeItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblings, Siblings) == 0x000018, "Member 'FRigUnit_HierarchyGetSiblings::Siblings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblings, CachedItem) == 0x000028, "Member 'FRigUnit_HierarchyGetSiblings::CachedItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblings, CachedSiblings) == 0x000048, "Member 'FRigUnit_HierarchyGetSiblings::CachedSiblings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetSiblingsItemArray \ +static_assert(alignof(FRigUnit_HierarchyGetSiblingsItemArray) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetSiblingsItemArray"); \ +static_assert(sizeof(FRigUnit_HierarchyGetSiblingsItemArray) == 0x000058, "Wrong size on FRigUnit_HierarchyGetSiblingsItemArray"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblingsItemArray, Item) == 0x000008, "Member 'FRigUnit_HierarchyGetSiblingsItemArray::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblingsItemArray, bIncludeItem) == 0x000014, "Member 'FRigUnit_HierarchyGetSiblingsItemArray::bIncludeItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblingsItemArray, Siblings) == 0x000018, "Member 'FRigUnit_HierarchyGetSiblingsItemArray::Siblings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblingsItemArray, CachedItem) == 0x000028, "Member 'FRigUnit_HierarchyGetSiblingsItemArray::CachedItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetSiblingsItemArray, CachedSiblings) == 0x000048, "Member 'FRigUnit_HierarchyGetSiblingsItemArray::CachedSiblings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlRotator_Entry \ +static_assert(alignof(FRigUnit_SetMultiControlRotator_Entry) == 0x000008, "Wrong alignment on FRigUnit_SetMultiControlRotator_Entry"); \ +static_assert(sizeof(FRigUnit_SetMultiControlRotator_Entry) == 0x000028, "Wrong size on FRigUnit_SetMultiControlRotator_Entry"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator_Entry, Control) == 0x000000, "Member 'FRigUnit_SetMultiControlRotator_Entry::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator_Entry, Rotator) == 0x000008, "Member 'FRigUnit_SetMultiControlRotator_Entry::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator_Entry, Space) == 0x000020, "Member 'FRigUnit_SetMultiControlRotator_Entry::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlRotator \ +static_assert(alignof(FRigUnit_SetMultiControlRotator) == 0x000010, "Wrong alignment on FRigUnit_SetMultiControlRotator"); \ +static_assert(sizeof(FRigUnit_SetMultiControlRotator) == 0x000190, "Wrong size on FRigUnit_SetMultiControlRotator"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator, Entries) == 0x000160, "Member 'FRigUnit_SetMultiControlRotator::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator, Weight) == 0x000170, "Member 'FRigUnit_SetMultiControlRotator::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlRotator, CachedControlIndices) == 0x000178, "Member 'FRigUnit_SetMultiControlRotator::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetPose \ +static_assert(alignof(FRigUnit_HierarchyGetPose) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetPose"); \ +static_assert(sizeof(FRigUnit_HierarchyGetPose) == 0x000090, "Wrong size on FRigUnit_HierarchyGetPose"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPose, Initial) == 0x000008, "Member 'FRigUnit_HierarchyGetPose::Initial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPose, ElementType) == 0x000009, "Member 'FRigUnit_HierarchyGetPose::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPose, ItemsToGet) == 0x000010, "Member 'FRigUnit_HierarchyGetPose::ItemsToGet' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPose, Pose) == 0x000020, "Member 'FRigUnit_HierarchyGetPose::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchyGetPoseItemArray \ +static_assert(alignof(FRigUnit_HierarchyGetPoseItemArray) == 0x000008, "Wrong alignment on FRigUnit_HierarchyGetPoseItemArray"); \ +static_assert(sizeof(FRigUnit_HierarchyGetPoseItemArray) == 0x000090, "Wrong size on FRigUnit_HierarchyGetPoseItemArray"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPoseItemArray, Initial) == 0x000008, "Member 'FRigUnit_HierarchyGetPoseItemArray::Initial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPoseItemArray, ElementType) == 0x000009, "Member 'FRigUnit_HierarchyGetPoseItemArray::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPoseItemArray, ItemsToGet) == 0x000010, "Member 'FRigUnit_HierarchyGetPoseItemArray::ItemsToGet' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchyGetPoseItemArray, Pose) == 0x000020, "Member 'FRigUnit_HierarchyGetPoseItemArray::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetSpaceTransform \ +static_assert(alignof(FRigUnit_SetSpaceTransform) == 0x000010, "Wrong alignment on FRigUnit_SetSpaceTransform"); \ +static_assert(sizeof(FRigUnit_SetSpaceTransform) == 0x000200, "Wrong size on FRigUnit_SetSpaceTransform"); \ +static_assert(offsetof(FRigUnit_SetSpaceTransform, Space) == 0x000160, "Member 'FRigUnit_SetSpaceTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceTransform, Weight) == 0x000168, "Member 'FRigUnit_SetSpaceTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceTransform, Transform) == 0x000170, "Member 'FRigUnit_SetSpaceTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceTransform, SpaceType) == 0x0001D0, "Member 'FRigUnit_SetSpaceTransform::SpaceType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceTransform, CachedSpaceIndex) == 0x0001D8, "Member 'FRigUnit_SetSpaceTransform::CachedSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchySetPose \ +static_assert(alignof(FRigUnit_HierarchySetPose) == 0x000010, "Wrong alignment on FRigUnit_HierarchySetPose"); \ +static_assert(sizeof(FRigUnit_HierarchySetPose) == 0x0001F0, "Wrong size on FRigUnit_HierarchySetPose"); \ +static_assert(offsetof(FRigUnit_HierarchySetPose, Pose) == 0x000160, "Member 'FRigUnit_HierarchySetPose::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPose, ElementType) == 0x0001D0, "Member 'FRigUnit_HierarchySetPose::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPose, Space) == 0x0001D1, "Member 'FRigUnit_HierarchySetPose::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPose, ItemsToSet) == 0x0001D8, "Member 'FRigUnit_HierarchySetPose::ItemsToSet' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPose, Weight) == 0x0001E8, "Member 'FRigUnit_HierarchySetPose::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HierarchySetPoseItemArray \ +static_assert(alignof(FRigUnit_HierarchySetPoseItemArray) == 0x000010, "Wrong alignment on FRigUnit_HierarchySetPoseItemArray"); \ +static_assert(sizeof(FRigUnit_HierarchySetPoseItemArray) == 0x0001F0, "Wrong size on FRigUnit_HierarchySetPoseItemArray"); \ +static_assert(offsetof(FRigUnit_HierarchySetPoseItemArray, Pose) == 0x000160, "Member 'FRigUnit_HierarchySetPoseItemArray::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPoseItemArray, ElementType) == 0x0001D0, "Member 'FRigUnit_HierarchySetPoseItemArray::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPoseItemArray, Space) == 0x0001D1, "Member 'FRigUnit_HierarchySetPoseItemArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPoseItemArray, ItemsToSet) == 0x0001D8, "Member 'FRigUnit_HierarchySetPoseItemArray::ItemsToSet' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HierarchySetPoseItemArray, Weight) == 0x0001E8, "Member 'FRigUnit_HierarchySetPoseItemArray::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToWorldSpace_Location \ +static_assert(alignof(FRigUnit_ToWorldSpace_Location) == 0x000008, "Wrong alignment on FRigUnit_ToWorldSpace_Location"); \ +static_assert(sizeof(FRigUnit_ToWorldSpace_Location) == 0x000038, "Wrong size on FRigUnit_ToWorldSpace_Location"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Location, Value) == 0x000008, "Member 'FRigUnit_ToWorldSpace_Location::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToWorldSpace_Location, World) == 0x000020, "Member 'FRigUnit_ToWorldSpace_Location::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseIsEmpty \ +static_assert(alignof(FRigUnit_PoseIsEmpty) == 0x000008, "Wrong alignment on FRigUnit_PoseIsEmpty"); \ +static_assert(sizeof(FRigUnit_PoseIsEmpty) == 0x000080, "Wrong size on FRigUnit_PoseIsEmpty"); \ +static_assert(offsetof(FRigUnit_PoseIsEmpty, Pose) == 0x000008, "Member 'FRigUnit_PoseIsEmpty::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseIsEmpty, IsEmpty) == 0x000078, "Member 'FRigUnit_PoseIsEmpty::IsEmpty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetItems \ +static_assert(alignof(FRigUnit_PoseGetItems) == 0x000008, "Wrong alignment on FRigUnit_PoseGetItems"); \ +static_assert(sizeof(FRigUnit_PoseGetItems) == 0x000090, "Wrong size on FRigUnit_PoseGetItems"); \ +static_assert(offsetof(FRigUnit_PoseGetItems, Pose) == 0x000008, "Member 'FRigUnit_PoseGetItems::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetItems, ElementType) == 0x000078, "Member 'FRigUnit_PoseGetItems::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetItems, Items) == 0x000080, "Member 'FRigUnit_PoseGetItems::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetScale \ +static_assert(alignof(FRigUnit_SetScale) == 0x000010, "Wrong alignment on FRigUnit_SetScale"); \ +static_assert(sizeof(FRigUnit_SetScale) == 0x0001B0, "Wrong size on FRigUnit_SetScale"); \ +static_assert(offsetof(FRigUnit_SetScale, Item) == 0x000160, "Member 'FRigUnit_SetScale::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, Space) == 0x00016C, "Member 'FRigUnit_SetScale::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, bInitial) == 0x00016D, "Member 'FRigUnit_SetScale::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, Scale) == 0x000170, "Member 'FRigUnit_SetScale::Scale' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, Weight) == 0x000188, "Member 'FRigUnit_SetScale::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, bPropagateToChildren) == 0x00018C, "Member 'FRigUnit_SetScale::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetScale, CachedIndex) == 0x000190, "Member 'FRigUnit_SetScale::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetItemsItemArray \ +static_assert(alignof(FRigUnit_PoseGetItemsItemArray) == 0x000008, "Wrong alignment on FRigUnit_PoseGetItemsItemArray"); \ +static_assert(sizeof(FRigUnit_PoseGetItemsItemArray) == 0x000090, "Wrong size on FRigUnit_PoseGetItemsItemArray"); \ +static_assert(offsetof(FRigUnit_PoseGetItemsItemArray, Pose) == 0x000008, "Member 'FRigUnit_PoseGetItemsItemArray::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetItemsItemArray, ElementType) == 0x000078, "Member 'FRigUnit_PoseGetItemsItemArray::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetItemsItemArray, Items) == 0x000080, "Member 'FRigUnit_PoseGetItemsItemArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetDelta \ +static_assert(alignof(FRigUnit_PoseGetDelta) == 0x000008, "Wrong alignment on FRigUnit_PoseGetDelta"); \ +static_assert(sizeof(FRigUnit_PoseGetDelta) == 0x000128, "Wrong size on FRigUnit_PoseGetDelta"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, PoseA) == 0x000008, "Member 'FRigUnit_PoseGetDelta::PoseA' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, PoseB) == 0x000078, "Member 'FRigUnit_PoseGetDelta::PoseB' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, PositionThreshold) == 0x0000E8, "Member 'FRigUnit_PoseGetDelta::PositionThreshold' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, RotationThreshold) == 0x0000EC, "Member 'FRigUnit_PoseGetDelta::RotationThreshold' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, ScaleThreshold) == 0x0000F0, "Member 'FRigUnit_PoseGetDelta::ScaleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, CurveThreshold) == 0x0000F4, "Member 'FRigUnit_PoseGetDelta::CurveThreshold' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, ElementType) == 0x0000F8, "Member 'FRigUnit_PoseGetDelta::ElementType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, Space) == 0x0000F9, "Member 'FRigUnit_PoseGetDelta::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, ItemsToCompare) == 0x000100, "Member 'FRigUnit_PoseGetDelta::ItemsToCompare' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, PosesAreEqual) == 0x000110, "Member 'FRigUnit_PoseGetDelta::PosesAreEqual' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetDelta, ItemsWithDelta) == 0x000118, "Member 'FRigUnit_PoseGetDelta::ItemsWithDelta' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRelativeRotationForItem \ +static_assert(alignof(FRigUnit_SetRelativeRotationForItem) == 0x000010, "Wrong alignment on FRigUnit_SetRelativeRotationForItem"); \ +static_assert(sizeof(FRigUnit_SetRelativeRotationForItem) == 0x0001F0, "Wrong size on FRigUnit_SetRelativeRotationForItem"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, Child) == 0x000160, "Member 'FRigUnit_SetRelativeRotationForItem::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, Parent) == 0x00016C, "Member 'FRigUnit_SetRelativeRotationForItem::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, bParentInitial) == 0x000178, "Member 'FRigUnit_SetRelativeRotationForItem::bParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, Value) == 0x000180, "Member 'FRigUnit_SetRelativeRotationForItem::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, Weight) == 0x0001A0, "Member 'FRigUnit_SetRelativeRotationForItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, bPropagateToChildren) == 0x0001A4, "Member 'FRigUnit_SetRelativeRotationForItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, CachedChild) == 0x0001A8, "Member 'FRigUnit_SetRelativeRotationForItem::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeRotationForItem, CachedParent) == 0x0001C8, "Member 'FRigUnit_SetRelativeRotationForItem::CachedParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetTransform \ +static_assert(alignof(FRigUnit_PoseGetTransform) == 0x000010, "Wrong alignment on FRigUnit_PoseGetTransform"); \ +static_assert(sizeof(FRigUnit_PoseGetTransform) == 0x000100, "Wrong size on FRigUnit_PoseGetTransform"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, Pose) == 0x000008, "Member 'FRigUnit_PoseGetTransform::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, Item) == 0x000078, "Member 'FRigUnit_PoseGetTransform::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, Space) == 0x000084, "Member 'FRigUnit_PoseGetTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, Valid) == 0x000085, "Member 'FRigUnit_PoseGetTransform::Valid' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, Transform) == 0x000090, "Member 'FRigUnit_PoseGetTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, CurveValue) == 0x0000F0, "Member 'FRigUnit_PoseGetTransform::CurveValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, CachedPoseElementIndex) == 0x0000F4, "Member 'FRigUnit_PoseGetTransform::CachedPoseElementIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetTransform, CachedPoseHash) == 0x0000F8, "Member 'FRigUnit_PoseGetTransform::CachedPoseHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PoseGetCurve \ +static_assert(alignof(FRigUnit_PoseGetCurve) == 0x000008, "Wrong alignment on FRigUnit_PoseGetCurve"); \ +static_assert(sizeof(FRigUnit_PoseGetCurve) == 0x000090, "Wrong size on FRigUnit_PoseGetCurve"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, Pose) == 0x000008, "Member 'FRigUnit_PoseGetCurve::Pose' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, Curve) == 0x000078, "Member 'FRigUnit_PoseGetCurve::Curve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, Valid) == 0x000080, "Member 'FRigUnit_PoseGetCurve::Valid' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, CurveValue) == 0x000084, "Member 'FRigUnit_PoseGetCurve::CurveValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, CachedPoseElementIndex) == 0x000088, "Member 'FRigUnit_PoseGetCurve::CachedPoseElementIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PoseGetCurve, CachedPoseHash) == 0x00008C, "Member 'FRigUnit_PoseGetCurve::CachedPoseHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_InteractionExecution \ +static_assert(alignof(FRigUnit_InteractionExecution) == 0x000010, "Wrong alignment on FRigUnit_InteractionExecution"); \ +static_assert(sizeof(FRigUnit_InteractionExecution) == 0x000160, "Wrong size on FRigUnit_InteractionExecution"); \ +static_assert(offsetof(FRigUnit_InteractionExecution, ExecuteContext) == 0x000010, "Member 'FRigUnit_InteractionExecution::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_IsInteracting \ +static_assert(alignof(FRigUnit_IsInteracting) == 0x000008, "Wrong alignment on FRigUnit_IsInteracting"); \ +static_assert(sizeof(FRigUnit_IsInteracting) == 0x000020, "Wrong size on FRigUnit_IsInteracting"); \ +static_assert(offsetof(FRigUnit_IsInteracting, bIsInteracting) == 0x000008, "Member 'FRigUnit_IsInteracting::bIsInteracting' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_IsInteracting, bIsTranslating) == 0x000009, "Member 'FRigUnit_IsInteracting::bIsTranslating' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_IsInteracting, bIsRotating) == 0x00000A, "Member 'FRigUnit_IsInteracting::bIsRotating' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_IsInteracting, bIsScaling) == 0x00000B, "Member 'FRigUnit_IsInteracting::bIsScaling' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_IsInteracting, Items) == 0x000010, "Member 'FRigUnit_IsInteracting::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemBaseMutable \ +static_assert(alignof(FRigUnit_ItemBaseMutable) == 0x000010, "Wrong alignment on FRigUnit_ItemBaseMutable"); \ +static_assert(sizeof(FRigUnit_ItemBaseMutable) == 0x000160, "Wrong size on FRigUnit_ItemBaseMutable"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemReplace \ +static_assert(alignof(FRigUnit_ItemReplace) == 0x000008, "Wrong alignment on FRigUnit_ItemReplace"); \ +static_assert(sizeof(FRigUnit_ItemReplace) == 0x000030, "Wrong size on FRigUnit_ItemReplace"); \ +static_assert(offsetof(FRigUnit_ItemReplace, Item) == 0x000008, "Member 'FRigUnit_ItemReplace::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemReplace, Old) == 0x000014, "Member 'FRigUnit_ItemReplace::Old' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemReplace, New) == 0x00001C, "Member 'FRigUnit_ItemReplace::New' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemReplace, Result) == 0x000024, "Member 'FRigUnit_ItemReplace::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemNotEquals \ +static_assert(alignof(FRigUnit_ItemNotEquals) == 0x000008, "Wrong alignment on FRigUnit_ItemNotEquals"); \ +static_assert(sizeof(FRigUnit_ItemNotEquals) == 0x000028, "Wrong size on FRigUnit_ItemNotEquals"); \ +static_assert(offsetof(FRigUnit_ItemNotEquals, A) == 0x000008, "Member 'FRigUnit_ItemNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemNotEquals, B) == 0x000014, "Member 'FRigUnit_ItemNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemNotEquals, Result) == 0x000020, "Member 'FRigUnit_ItemNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemTypeNotEquals \ +static_assert(alignof(FRigUnit_ItemTypeNotEquals) == 0x000008, "Wrong alignment on FRigUnit_ItemTypeNotEquals"); \ +static_assert(sizeof(FRigUnit_ItemTypeNotEquals) == 0x000028, "Wrong size on FRigUnit_ItemTypeNotEquals"); \ +static_assert(offsetof(FRigUnit_ItemTypeNotEquals, A) == 0x000008, "Member 'FRigUnit_ItemTypeNotEquals::A' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemTypeNotEquals, B) == 0x000014, "Member 'FRigUnit_ItemTypeNotEquals::B' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemTypeNotEquals, Result) == 0x000020, "Member 'FRigUnit_ItemTypeNotEquals::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PrepareForExecution \ +static_assert(alignof(FRigUnit_PrepareForExecution) == 0x000010, "Wrong alignment on FRigUnit_PrepareForExecution"); \ +static_assert(sizeof(FRigUnit_PrepareForExecution) == 0x000160, "Wrong size on FRigUnit_PrepareForExecution"); \ +static_assert(offsetof(FRigUnit_PrepareForExecution, ExecuteContext) == 0x000010, "Member 'FRigUnit_PrepareForExecution::ExecuteContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AddBoneTransform \ +static_assert(alignof(FRigUnit_AddBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_AddBoneTransform"); \ +static_assert(sizeof(FRigUnit_AddBoneTransform) == 0x000200, "Wrong size on FRigUnit_AddBoneTransform"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, bone) == 0x000160, "Member 'FRigUnit_AddBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, Transform) == 0x000170, "Member 'FRigUnit_AddBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, Weight) == 0x0001D0, "Member 'FRigUnit_AddBoneTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, bPostMultiply) == 0x0001D4, "Member 'FRigUnit_AddBoneTransform::bPostMultiply' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, bPropagateToChildren) == 0x0001D5, "Member 'FRigUnit_AddBoneTransform::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AddBoneTransform, CachedBone) == 0x0001D8, "Member 'FRigUnit_AddBoneTransform::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemArray \ +static_assert(alignof(FRigUnit_ItemArray) == 0x000008, "Wrong alignment on FRigUnit_ItemArray"); \ +static_assert(sizeof(FRigUnit_ItemArray) == 0x000018, "Wrong size on FRigUnit_ItemArray"); \ +static_assert(offsetof(FRigUnit_ItemArray, Items) == 0x000008, "Member 'FRigUnit_ItemArray::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpaceName \ +static_assert(alignof(FRigUnit_SpaceName) == 0x000008, "Wrong alignment on FRigUnit_SpaceName"); \ +static_assert(sizeof(FRigUnit_SpaceName) == 0x000010, "Wrong size on FRigUnit_SpaceName"); \ +static_assert(offsetof(FRigUnit_SpaceName, Space) == 0x000008, "Member 'FRigUnit_SpaceName::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetFloatAnimationChannel \ +static_assert(alignof(FRigUnit_GetFloatAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetFloatAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetFloatAnimationChannel) == 0x000038, "Wrong size on FRigUnit_GetFloatAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetFloatAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetFloatAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetVector2DAnimationChannel \ +static_assert(alignof(FRigUnit_GetVector2DAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetVector2DAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetVector2DAnimationChannel) == 0x000040, "Wrong size on FRigUnit_GetVector2DAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetVector2DAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetVector2DAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetRotatorAnimationChannel \ +static_assert(alignof(FRigUnit_GetRotatorAnimationChannel) == 0x000008, "Wrong alignment on FRigUnit_GetRotatorAnimationChannel"); \ +static_assert(sizeof(FRigUnit_GetRotatorAnimationChannel) == 0x000048, "Wrong size on FRigUnit_GetRotatorAnimationChannel"); \ +static_assert(offsetof(FRigUnit_GetRotatorAnimationChannel, Value) == 0x000030, "Member 'FRigUnit_GetRotatorAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetFloatAnimationChannel \ +static_assert(alignof(FRigUnit_SetFloatAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetFloatAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetFloatAnimationChannel) == 0x000190, "Wrong size on FRigUnit_SetFloatAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetFloatAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetFloatAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetVector2DAnimationChannel \ +static_assert(alignof(FRigUnit_SetVector2DAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetVector2DAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetVector2DAnimationChannel) == 0x000190, "Wrong size on FRigUnit_SetVector2DAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetVector2DAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetVector2DAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRotatorAnimationChannel \ +static_assert(alignof(FRigUnit_SetRotatorAnimationChannel) == 0x000010, "Wrong alignment on FRigUnit_SetRotatorAnimationChannel"); \ +static_assert(sizeof(FRigUnit_SetRotatorAnimationChannel) == 0x0001A0, "Wrong size on FRigUnit_SetRotatorAnimationChannel"); \ +static_assert(offsetof(FRigUnit_SetRotatorAnimationChannel, Value) == 0x000180, "Member 'FRigUnit_SetRotatorAnimationChannel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetBoneTransform \ +static_assert(alignof(FRigUnit_GetBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_GetBoneTransform"); \ +static_assert(sizeof(FRigUnit_GetBoneTransform) == 0x0000B0, "Wrong size on FRigUnit_GetBoneTransform"); \ +static_assert(offsetof(FRigUnit_GetBoneTransform, bone) == 0x000008, "Member 'FRigUnit_GetBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetBoneTransform, Space) == 0x000010, "Member 'FRigUnit_GetBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetBoneTransform, Transform) == 0x000020, "Member 'FRigUnit_GetBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetBoneTransform, CachedBone) == 0x000080, "Member 'FRigUnit_GetBoneTransform::CachedBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetBoneTransform, bFirstUpdate) == 0x0000A0, "Member 'FRigUnit_GetBoneTransform::bFirstUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlBool \ +static_assert(alignof(FRigUnit_GetControlBool) == 0x000008, "Wrong alignment on FRigUnit_GetControlBool"); \ +static_assert(sizeof(FRigUnit_GetControlBool) == 0x000038, "Wrong size on FRigUnit_GetControlBool"); \ +static_assert(offsetof(FRigUnit_GetControlBool, Control) == 0x000008, "Member 'FRigUnit_GetControlBool::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlBool, BoolValue) == 0x000010, "Member 'FRigUnit_GetControlBool::BoolValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlBool, CachedControlIndex) == 0x000018, "Member 'FRigUnit_GetControlBool::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlInteger \ +static_assert(alignof(FRigUnit_GetControlInteger) == 0x000008, "Wrong alignment on FRigUnit_GetControlInteger"); \ +static_assert(sizeof(FRigUnit_GetControlInteger) == 0x000040, "Wrong size on FRigUnit_GetControlInteger"); \ +static_assert(offsetof(FRigUnit_GetControlInteger, Control) == 0x000008, "Member 'FRigUnit_GetControlInteger::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInteger, IntegerValue) == 0x000010, "Member 'FRigUnit_GetControlInteger::IntegerValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInteger, Minimum) == 0x000014, "Member 'FRigUnit_GetControlInteger::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInteger, Maximum) == 0x000018, "Member 'FRigUnit_GetControlInteger::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlInteger, CachedControlIndex) == 0x000020, "Member 'FRigUnit_GetControlInteger::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlVector \ +static_assert(alignof(FRigUnit_GetControlVector) == 0x000008, "Wrong alignment on FRigUnit_GetControlVector"); \ +static_assert(sizeof(FRigUnit_GetControlVector) == 0x000080, "Wrong size on FRigUnit_GetControlVector"); \ +static_assert(offsetof(FRigUnit_GetControlVector, Control) == 0x000008, "Member 'FRigUnit_GetControlVector::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector, Space) == 0x000010, "Member 'FRigUnit_GetControlVector::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector, Vector) == 0x000018, "Member 'FRigUnit_GetControlVector::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector, Minimum) == 0x000030, "Member 'FRigUnit_GetControlVector::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector, Maximum) == 0x000048, "Member 'FRigUnit_GetControlVector::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlVector, CachedControlIndex) == 0x000060, "Member 'FRigUnit_GetControlVector::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetControlTransform \ +static_assert(alignof(FRigUnit_GetControlTransform) == 0x000010, "Wrong alignment on FRigUnit_GetControlTransform"); \ +static_assert(sizeof(FRigUnit_GetControlTransform) == 0x000160, "Wrong size on FRigUnit_GetControlTransform"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, Control) == 0x000008, "Member 'FRigUnit_GetControlTransform::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, Space) == 0x000010, "Member 'FRigUnit_GetControlTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, Transform) == 0x000020, "Member 'FRigUnit_GetControlTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, Minimum) == 0x000080, "Member 'FRigUnit_GetControlTransform::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, Maximum) == 0x0000E0, "Member 'FRigUnit_GetControlTransform::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetControlTransform, CachedControlIndex) == 0x000140, "Member 'FRigUnit_GetControlTransform::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetInitialBoneTransform \ +static_assert(alignof(FRigUnit_GetInitialBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_GetInitialBoneTransform"); \ +static_assert(sizeof(FRigUnit_GetInitialBoneTransform) == 0x0000A0, "Wrong size on FRigUnit_GetInitialBoneTransform"); \ +static_assert(offsetof(FRigUnit_GetInitialBoneTransform, bone) == 0x000008, "Member 'FRigUnit_GetInitialBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetInitialBoneTransform, Space) == 0x000010, "Member 'FRigUnit_GetInitialBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetInitialBoneTransform, Transform) == 0x000020, "Member 'FRigUnit_GetInitialBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetInitialBoneTransform, CachedBone) == 0x000080, "Member 'FRigUnit_GetInitialBoneTransform::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetRelativeTransformForItem \ +static_assert(alignof(FRigUnit_GetRelativeTransformForItem) == 0x000010, "Wrong alignment on FRigUnit_GetRelativeTransformForItem"); \ +static_assert(sizeof(FRigUnit_GetRelativeTransformForItem) == 0x0000D0, "Wrong size on FRigUnit_GetRelativeTransformForItem"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, Child) == 0x000008, "Member 'FRigUnit_GetRelativeTransformForItem::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, bChildInitial) == 0x000014, "Member 'FRigUnit_GetRelativeTransformForItem::bChildInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, Parent) == 0x000018, "Member 'FRigUnit_GetRelativeTransformForItem::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, bParentInitial) == 0x000024, "Member 'FRigUnit_GetRelativeTransformForItem::bParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, RelativeTransform) == 0x000030, "Member 'FRigUnit_GetRelativeTransformForItem::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, CachedChild) == 0x000090, "Member 'FRigUnit_GetRelativeTransformForItem::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetRelativeTransformForItem, CachedParent) == 0x0000B0, "Member 'FRigUnit_GetRelativeTransformForItem::CachedParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetTransform \ +static_assert(alignof(FRigUnit_GetTransform) == 0x000010, "Wrong alignment on FRigUnit_GetTransform"); \ +static_assert(sizeof(FRigUnit_GetTransform) == 0x0000A0, "Wrong size on FRigUnit_GetTransform"); \ +static_assert(offsetof(FRigUnit_GetTransform, Item) == 0x000008, "Member 'FRigUnit_GetTransform::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransform, Space) == 0x000014, "Member 'FRigUnit_GetTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransform, bInitial) == 0x000015, "Member 'FRigUnit_GetTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransform, Transform) == 0x000020, "Member 'FRigUnit_GetTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransform, CachedIndex) == 0x000080, "Member 'FRigUnit_GetTransform::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetTransformItemArray \ +static_assert(alignof(FRigUnit_GetTransformItemArray) == 0x000008, "Wrong alignment on FRigUnit_GetTransformItemArray"); \ +static_assert(sizeof(FRigUnit_GetTransformItemArray) == 0x000040, "Wrong size on FRigUnit_GetTransformItemArray"); \ +static_assert(offsetof(FRigUnit_GetTransformItemArray, Items) == 0x000008, "Member 'FRigUnit_GetTransformItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformItemArray, Space) == 0x000018, "Member 'FRigUnit_GetTransformItemArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformItemArray, bInitial) == 0x000019, "Member 'FRigUnit_GetTransformItemArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformItemArray, Transforms) == 0x000020, "Member 'FRigUnit_GetTransformItemArray::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetTransformItemArray, CachedIndex) == 0x000030, "Member 'FRigUnit_GetTransformItemArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigDispatch_GetMetadata \ +static_assert(alignof(FRigDispatch_GetMetadata) == 0x000008, "Wrong alignment on FRigDispatch_GetMetadata"); \ +static_assert(sizeof(FRigDispatch_GetMetadata) == 0x0000A0, "Wrong size on FRigDispatch_GetMetadata"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RemoveMetadata \ +static_assert(alignof(FRigUnit_RemoveMetadata) == 0x000010, "Wrong alignment on FRigUnit_RemoveMetadata"); \ +static_assert(sizeof(FRigUnit_RemoveMetadata) == 0x0001A0, "Wrong size on FRigUnit_RemoveMetadata"); \ +static_assert(offsetof(FRigUnit_RemoveMetadata, Item) == 0x000160, "Member 'FRigUnit_RemoveMetadata::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadata, Name) == 0x00016C, "Member 'FRigUnit_RemoveMetadata::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadata, Removed) == 0x000174, "Member 'FRigUnit_RemoveMetadata::Removed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RemoveMetadata, CachedIndex) == 0x000178, "Member 'FRigUnit_RemoveMetadata::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HasMetadata \ +static_assert(alignof(FRigUnit_HasMetadata) == 0x000008, "Wrong alignment on FRigUnit_HasMetadata"); \ +static_assert(sizeof(FRigUnit_HasMetadata) == 0x000040, "Wrong size on FRigUnit_HasMetadata"); \ +static_assert(offsetof(FRigUnit_HasMetadata, Item) == 0x000008, "Member 'FRigUnit_HasMetadata::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadata, Name) == 0x000014, "Member 'FRigUnit_HasMetadata::Name' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadata, Type) == 0x00001C, "Member 'FRigUnit_HasMetadata::Type' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadata, Found) == 0x00001D, "Member 'FRigUnit_HasMetadata::Found' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadata, CachedIndex) == 0x000020, "Member 'FRigUnit_HasMetadata::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetMetadataTags \ +static_assert(alignof(FRigUnit_GetMetadataTags) == 0x000008, "Wrong alignment on FRigUnit_GetMetadataTags"); \ +static_assert(sizeof(FRigUnit_GetMetadataTags) == 0x000048, "Wrong size on FRigUnit_GetMetadataTags"); \ +static_assert(offsetof(FRigUnit_GetMetadataTags, Item) == 0x000008, "Member 'FRigUnit_GetMetadataTags::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetMetadataTags, Tags) == 0x000018, "Member 'FRigUnit_GetMetadataTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetMetadataTags, CachedIndex) == 0x000028, "Member 'FRigUnit_GetMetadataTags::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMetadataTagArray \ +static_assert(alignof(FRigUnit_SetMetadataTagArray) == 0x000010, "Wrong alignment on FRigUnit_SetMetadataTagArray"); \ +static_assert(sizeof(FRigUnit_SetMetadataTagArray) == 0x0001A0, "Wrong size on FRigUnit_SetMetadataTagArray"); \ +static_assert(offsetof(FRigUnit_SetMetadataTagArray, Item) == 0x000160, "Member 'FRigUnit_SetMetadataTagArray::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMetadataTagArray, Tags) == 0x000170, "Member 'FRigUnit_SetMetadataTagArray::Tags' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMetadataTagArray, CachedIndex) == 0x000180, "Member 'FRigUnit_SetMetadataTagArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_HasMetadataTag \ +static_assert(alignof(FRigUnit_HasMetadataTag) == 0x000008, "Wrong alignment on FRigUnit_HasMetadataTag"); \ +static_assert(sizeof(FRigUnit_HasMetadataTag) == 0x000040, "Wrong size on FRigUnit_HasMetadataTag"); \ +static_assert(offsetof(FRigUnit_HasMetadataTag, Item) == 0x000008, "Member 'FRigUnit_HasMetadataTag::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTag, Tag) == 0x000014, "Member 'FRigUnit_HasMetadataTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTag, Found) == 0x00001C, "Member 'FRigUnit_HasMetadataTag::Found' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_HasMetadataTag, CachedIndex) == 0x000020, "Member 'FRigUnit_HasMetadataTag::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FindItemsWithMetadataTag \ +static_assert(alignof(FRigUnit_FindItemsWithMetadataTag) == 0x000008, "Wrong alignment on FRigUnit_FindItemsWithMetadataTag"); \ +static_assert(sizeof(FRigUnit_FindItemsWithMetadataTag) == 0x000020, "Wrong size on FRigUnit_FindItemsWithMetadataTag"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadataTag, Tag) == 0x000008, "Member 'FRigUnit_FindItemsWithMetadataTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FindItemsWithMetadataTag, Items) == 0x000010, "Member 'FRigUnit_FindItemsWithMetadataTag::Items' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FilterItemsByMetadataTags \ +static_assert(alignof(FRigUnit_FilterItemsByMetadataTags) == 0x000008, "Wrong alignment on FRigUnit_FilterItemsByMetadataTags"); \ +static_assert(sizeof(FRigUnit_FilterItemsByMetadataTags) == 0x000050, "Wrong size on FRigUnit_FilterItemsByMetadataTags"); \ +static_assert(offsetof(FRigUnit_FilterItemsByMetadataTags, Items) == 0x000008, "Member 'FRigUnit_FilterItemsByMetadataTags::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FilterItemsByMetadataTags, Tags) == 0x000018, "Member 'FRigUnit_FilterItemsByMetadataTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FilterItemsByMetadataTags, Inclusive) == 0x000028, "Member 'FRigUnit_FilterItemsByMetadataTags::Inclusive' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FilterItemsByMetadataTags, Result) == 0x000030, "Member 'FRigUnit_FilterItemsByMetadataTags::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FilterItemsByMetadataTags, CachedIndices) == 0x000040, "Member 'FRigUnit_FilterItemsByMetadataTags::CachedIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ParentSwitchConstraint \ +static_assert(alignof(FRigUnit_ParentSwitchConstraint) == 0x000010, "Wrong alignment on FRigUnit_ParentSwitchConstraint"); \ +static_assert(sizeof(FRigUnit_ParentSwitchConstraint) == 0x000300, "Wrong size on FRigUnit_ParentSwitchConstraint"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, Subject) == 0x000160, "Member 'FRigUnit_ParentSwitchConstraint::Subject' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, ParentIndex) == 0x00016C, "Member 'FRigUnit_ParentSwitchConstraint::ParentIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, Parents) == 0x000170, "Member 'FRigUnit_ParentSwitchConstraint::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, InitialGlobalTransform) == 0x000180, "Member 'FRigUnit_ParentSwitchConstraint::InitialGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, Weight) == 0x0001E0, "Member 'FRigUnit_ParentSwitchConstraint::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, Transform) == 0x0001F0, "Member 'FRigUnit_ParentSwitchConstraint::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, Switched) == 0x000250, "Member 'FRigUnit_ParentSwitchConstraint::Switched' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, CachedSubject) == 0x000258, "Member 'FRigUnit_ParentSwitchConstraint::CachedSubject' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, CachedParent) == 0x000278, "Member 'FRigUnit_ParentSwitchConstraint::CachedParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParentSwitchConstraint, RelativeOffset) == 0x0002A0, "Member 'FRigUnit_ParentSwitchConstraint::RelativeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ProjectTransformToNewParent \ +static_assert(alignof(FRigUnit_ProjectTransformToNewParent) == 0x000010, "Wrong alignment on FRigUnit_ProjectTransformToNewParent"); \ +static_assert(sizeof(FRigUnit_ProjectTransformToNewParent) == 0x000100, "Wrong size on FRigUnit_ProjectTransformToNewParent"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, Child) == 0x000008, "Member 'FRigUnit_ProjectTransformToNewParent::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, bChildInitial) == 0x000014, "Member 'FRigUnit_ProjectTransformToNewParent::bChildInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, OldParent) == 0x000018, "Member 'FRigUnit_ProjectTransformToNewParent::OldParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, bOldParentInitial) == 0x000024, "Member 'FRigUnit_ProjectTransformToNewParent::bOldParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, NewParent) == 0x000028, "Member 'FRigUnit_ProjectTransformToNewParent::NewParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, bNewParentInitial) == 0x000034, "Member 'FRigUnit_ProjectTransformToNewParent::bNewParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, Transform) == 0x000040, "Member 'FRigUnit_ProjectTransformToNewParent::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, CachedChild) == 0x0000A0, "Member 'FRigUnit_ProjectTransformToNewParent::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, CachedOldParent) == 0x0000C0, "Member 'FRigUnit_ProjectTransformToNewParent::CachedOldParent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ProjectTransformToNewParent, CachedNewParent) == 0x0000E0, "Member 'FRigUnit_ProjectTransformToNewParent::CachedNewParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SendEvent \ +static_assert(alignof(FRigUnit_SendEvent) == 0x000010, "Wrong alignment on FRigUnit_SendEvent"); \ +static_assert(sizeof(FRigUnit_SendEvent) == 0x000180, "Wrong size on FRigUnit_SendEvent"); \ +static_assert(offsetof(FRigUnit_SendEvent, Event) == 0x000160, "Member 'FRigUnit_SendEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SendEvent, Item) == 0x000164, "Member 'FRigUnit_SendEvent::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SendEvent, OffsetInSeconds) == 0x000170, "Member 'FRigUnit_SendEvent::OffsetInSeconds' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SendEvent, bEnable) == 0x000174, "Member 'FRigUnit_SendEvent::bEnable' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SendEvent, bOnlyDuringInteraction) == 0x000175, "Member 'FRigUnit_SendEvent::bOnlyDuringInteraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetBoneRotation \ +static_assert(alignof(FRigUnit_SetBoneRotation) == 0x000010, "Wrong alignment on FRigUnit_SetBoneRotation"); \ +static_assert(sizeof(FRigUnit_SetBoneRotation) == 0x0001C0, "Wrong size on FRigUnit_SetBoneRotation"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, bone) == 0x000160, "Member 'FRigUnit_SetBoneRotation::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, Rotation) == 0x000170, "Member 'FRigUnit_SetBoneRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, Space) == 0x000190, "Member 'FRigUnit_SetBoneRotation::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, Weight) == 0x000194, "Member 'FRigUnit_SetBoneRotation::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, bPropagateToChildren) == 0x000198, "Member 'FRigUnit_SetBoneRotation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneRotation, CachedBone) == 0x0001A0, "Member 'FRigUnit_SetBoneRotation::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetBoneTranslation \ +static_assert(alignof(FRigUnit_SetBoneTranslation) == 0x000010, "Wrong alignment on FRigUnit_SetBoneTranslation"); \ +static_assert(sizeof(FRigUnit_SetBoneTranslation) == 0x0001B0, "Wrong size on FRigUnit_SetBoneTranslation"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, bone) == 0x000160, "Member 'FRigUnit_SetBoneTranslation::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, Translation) == 0x000168, "Member 'FRigUnit_SetBoneTranslation::Translation' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, Space) == 0x000180, "Member 'FRigUnit_SetBoneTranslation::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, Weight) == 0x000184, "Member 'FRigUnit_SetBoneTranslation::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, bPropagateToChildren) == 0x000188, "Member 'FRigUnit_SetBoneTranslation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetBoneTranslation, CachedBone) == 0x000190, "Member 'FRigUnit_SetBoneTranslation::CachedBone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlColor \ +static_assert(alignof(FRigUnit_SetControlColor) == 0x000010, "Wrong alignment on FRigUnit_SetControlColor"); \ +static_assert(sizeof(FRigUnit_SetControlColor) == 0x0001A0, "Wrong size on FRigUnit_SetControlColor"); \ +static_assert(offsetof(FRigUnit_SetControlColor, Control) == 0x000160, "Member 'FRigUnit_SetControlColor::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlColor, Color) == 0x000168, "Member 'FRigUnit_SetControlColor::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlColor, CachedControlIndex) == 0x000178, "Member 'FRigUnit_SetControlColor::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlDrivenList \ +static_assert(alignof(FRigUnit_SetControlDrivenList) == 0x000010, "Wrong alignment on FRigUnit_SetControlDrivenList"); \ +static_assert(sizeof(FRigUnit_SetControlDrivenList) == 0x0001A0, "Wrong size on FRigUnit_SetControlDrivenList"); \ +static_assert(offsetof(FRigUnit_SetControlDrivenList, Control) == 0x000160, "Member 'FRigUnit_SetControlDrivenList::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlDrivenList, Driven) == 0x000168, "Member 'FRigUnit_SetControlDrivenList::Driven' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlDrivenList, CachedControlIndex) == 0x000178, "Member 'FRigUnit_SetControlDrivenList::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetShapeTransform \ +static_assert(alignof(FRigUnit_GetShapeTransform) == 0x000010, "Wrong alignment on FRigUnit_GetShapeTransform"); \ +static_assert(sizeof(FRigUnit_GetShapeTransform) == 0x000090, "Wrong size on FRigUnit_GetShapeTransform"); \ +static_assert(offsetof(FRigUnit_GetShapeTransform, Control) == 0x000008, "Member 'FRigUnit_GetShapeTransform::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetShapeTransform, Transform) == 0x000010, "Member 'FRigUnit_GetShapeTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetShapeTransform, CachedControlIndex) == 0x000070, "Member 'FRigUnit_GetShapeTransform::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetShapeTransform \ +static_assert(alignof(FRigUnit_SetShapeTransform) == 0x000010, "Wrong alignment on FRigUnit_SetShapeTransform"); \ +static_assert(sizeof(FRigUnit_SetShapeTransform) == 0x0001F0, "Wrong size on FRigUnit_SetShapeTransform"); \ +static_assert(offsetof(FRigUnit_SetShapeTransform, Control) == 0x000160, "Member 'FRigUnit_SetShapeTransform::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetShapeTransform, Transform) == 0x000170, "Member 'FRigUnit_SetShapeTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetShapeTransform, CachedControlIndex) == 0x0001D0, "Member 'FRigUnit_SetShapeTransform::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlBool \ +static_assert(alignof(FRigUnit_SetControlBool) == 0x000010, "Wrong alignment on FRigUnit_SetControlBool"); \ +static_assert(sizeof(FRigUnit_SetControlBool) == 0x000190, "Wrong size on FRigUnit_SetControlBool"); \ +static_assert(offsetof(FRigUnit_SetControlBool, Control) == 0x000160, "Member 'FRigUnit_SetControlBool::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlBool, BoolValue) == 0x000168, "Member 'FRigUnit_SetControlBool::BoolValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlBool, CachedControlIndex) == 0x000170, "Member 'FRigUnit_SetControlBool::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlBool_Entry \ +static_assert(alignof(FRigUnit_SetMultiControlBool_Entry) == 0x000004, "Wrong alignment on FRigUnit_SetMultiControlBool_Entry"); \ +static_assert(sizeof(FRigUnit_SetMultiControlBool_Entry) == 0x00000C, "Wrong size on FRigUnit_SetMultiControlBool_Entry"); \ +static_assert(offsetof(FRigUnit_SetMultiControlBool_Entry, Control) == 0x000000, "Member 'FRigUnit_SetMultiControlBool_Entry::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlBool_Entry, BoolValue) == 0x000008, "Member 'FRigUnit_SetMultiControlBool_Entry::BoolValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlBool \ +static_assert(alignof(FRigUnit_SetMultiControlBool) == 0x000010, "Wrong alignment on FRigUnit_SetMultiControlBool"); \ +static_assert(sizeof(FRigUnit_SetMultiControlBool) == 0x000180, "Wrong size on FRigUnit_SetMultiControlBool"); \ +static_assert(offsetof(FRigUnit_SetMultiControlBool, Entries) == 0x000160, "Member 'FRigUnit_SetMultiControlBool::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlBool, CachedControlIndices) == 0x000170, "Member 'FRigUnit_SetMultiControlBool::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlFloat_Entry \ +static_assert(alignof(FRigUnit_SetMultiControlFloat_Entry) == 0x000004, "Wrong alignment on FRigUnit_SetMultiControlFloat_Entry"); \ +static_assert(sizeof(FRigUnit_SetMultiControlFloat_Entry) == 0x00000C, "Wrong size on FRigUnit_SetMultiControlFloat_Entry"); \ +static_assert(offsetof(FRigUnit_SetMultiControlFloat_Entry, Control) == 0x000000, "Member 'FRigUnit_SetMultiControlFloat_Entry::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlFloat_Entry, FloatValue) == 0x000008, "Member 'FRigUnit_SetMultiControlFloat_Entry::FloatValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlFloat \ +static_assert(alignof(FRigUnit_SetMultiControlFloat) == 0x000010, "Wrong alignment on FRigUnit_SetMultiControlFloat"); \ +static_assert(sizeof(FRigUnit_SetMultiControlFloat) == 0x000190, "Wrong size on FRigUnit_SetMultiControlFloat"); \ +static_assert(offsetof(FRigUnit_SetMultiControlFloat, Entries) == 0x000160, "Member 'FRigUnit_SetMultiControlFloat::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlFloat, Weight) == 0x000170, "Member 'FRigUnit_SetMultiControlFloat::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlFloat, CachedControlIndices) == 0x000178, "Member 'FRigUnit_SetMultiControlFloat::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlInteger \ +static_assert(alignof(FRigUnit_SetControlInteger) == 0x000010, "Wrong alignment on FRigUnit_SetControlInteger"); \ +static_assert(sizeof(FRigUnit_SetControlInteger) == 0x000190, "Wrong size on FRigUnit_SetControlInteger"); \ +static_assert(offsetof(FRigUnit_SetControlInteger, Control) == 0x000160, "Member 'FRigUnit_SetControlInteger::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlInteger, Weight) == 0x000168, "Member 'FRigUnit_SetControlInteger::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlInteger, IntegerValue) == 0x00016C, "Member 'FRigUnit_SetControlInteger::IntegerValue' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlInteger, CachedControlIndex) == 0x000170, "Member 'FRigUnit_SetControlInteger::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetMultiControlInteger \ +static_assert(alignof(FRigUnit_SetMultiControlInteger) == 0x000010, "Wrong alignment on FRigUnit_SetMultiControlInteger"); \ +static_assert(sizeof(FRigUnit_SetMultiControlInteger) == 0x000190, "Wrong size on FRigUnit_SetMultiControlInteger"); \ +static_assert(offsetof(FRigUnit_SetMultiControlInteger, Entries) == 0x000160, "Member 'FRigUnit_SetMultiControlInteger::Entries' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlInteger, Weight) == 0x000170, "Member 'FRigUnit_SetMultiControlInteger::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetMultiControlInteger, CachedControlIndices) == 0x000178, "Member 'FRigUnit_SetMultiControlInteger::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlVector \ +static_assert(alignof(FRigUnit_SetControlVector) == 0x000010, "Wrong alignment on FRigUnit_SetControlVector"); \ +static_assert(sizeof(FRigUnit_SetControlVector) == 0x0001B0, "Wrong size on FRigUnit_SetControlVector"); \ +static_assert(offsetof(FRigUnit_SetControlVector, Control) == 0x000160, "Member 'FRigUnit_SetControlVector::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector, Weight) == 0x000168, "Member 'FRigUnit_SetControlVector::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector, Vector) == 0x000170, "Member 'FRigUnit_SetControlVector::Vector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector, Space) == 0x000188, "Member 'FRigUnit_SetControlVector::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVector, CachedControlIndex) == 0x000190, "Member 'FRigUnit_SetControlVector::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlTransform \ +static_assert(alignof(FRigUnit_SetControlTransform) == 0x000010, "Wrong alignment on FRigUnit_SetControlTransform"); \ +static_assert(sizeof(FRigUnit_SetControlTransform) == 0x000200, "Wrong size on FRigUnit_SetControlTransform"); \ +static_assert(offsetof(FRigUnit_SetControlTransform, Control) == 0x000160, "Member 'FRigUnit_SetControlTransform::Control' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlTransform, Weight) == 0x000168, "Member 'FRigUnit_SetControlTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlTransform, Transform) == 0x000170, "Member 'FRigUnit_SetControlTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlTransform, Space) == 0x0001D0, "Member 'FRigUnit_SetControlTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlTransform, CachedControlIndex) == 0x0001D8, "Member 'FRigUnit_SetControlTransform::CachedControlIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetControlVisibility \ +static_assert(alignof(FRigUnit_SetControlVisibility) == 0x000010, "Wrong alignment on FRigUnit_SetControlVisibility"); \ +static_assert(sizeof(FRigUnit_SetControlVisibility) == 0x0001A0, "Wrong size on FRigUnit_SetControlVisibility"); \ +static_assert(offsetof(FRigUnit_SetControlVisibility, Item) == 0x000160, "Member 'FRigUnit_SetControlVisibility::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVisibility, Pattern) == 0x000170, "Member 'FRigUnit_SetControlVisibility::Pattern' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVisibility, bVisible) == 0x000180, "Member 'FRigUnit_SetControlVisibility::bVisible' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetControlVisibility, CachedControlIndices) == 0x000188, "Member 'FRigUnit_SetControlVisibility::CachedControlIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRelativeBoneTransform \ +static_assert(alignof(FRigUnit_SetRelativeBoneTransform) == 0x000010, "Wrong alignment on FRigUnit_SetRelativeBoneTransform"); \ +static_assert(sizeof(FRigUnit_SetRelativeBoneTransform) == 0x000220, "Wrong size on FRigUnit_SetRelativeBoneTransform"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, bone) == 0x000160, "Member 'FRigUnit_SetRelativeBoneTransform::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, Space) == 0x000168, "Member 'FRigUnit_SetRelativeBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, Transform) == 0x000170, "Member 'FRigUnit_SetRelativeBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, Weight) == 0x0001D0, "Member 'FRigUnit_SetRelativeBoneTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, bPropagateToChildren) == 0x0001D4, "Member 'FRigUnit_SetRelativeBoneTransform::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, CachedBone) == 0x0001D8, "Member 'FRigUnit_SetRelativeBoneTransform::CachedBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeBoneTransform, CachedSpaceIndex) == 0x0001F8, "Member 'FRigUnit_SetRelativeBoneTransform::CachedSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRelativeTranslationForItem \ +static_assert(alignof(FRigUnit_SetRelativeTranslationForItem) == 0x000010, "Wrong alignment on FRigUnit_SetRelativeTranslationForItem"); \ +static_assert(sizeof(FRigUnit_SetRelativeTranslationForItem) == 0x0001E0, "Wrong size on FRigUnit_SetRelativeTranslationForItem"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, Child) == 0x000160, "Member 'FRigUnit_SetRelativeTranslationForItem::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, Parent) == 0x00016C, "Member 'FRigUnit_SetRelativeTranslationForItem::Parent' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, bParentInitial) == 0x000178, "Member 'FRigUnit_SetRelativeTranslationForItem::bParentInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, Value) == 0x000180, "Member 'FRigUnit_SetRelativeTranslationForItem::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, Weight) == 0x000198, "Member 'FRigUnit_SetRelativeTranslationForItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, bPropagateToChildren) == 0x00019C, "Member 'FRigUnit_SetRelativeTranslationForItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, CachedChild) == 0x0001A0, "Member 'FRigUnit_SetRelativeTranslationForItem::CachedChild' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRelativeTranslationForItem, CachedParent) == 0x0001C0, "Member 'FRigUnit_SetRelativeTranslationForItem::CachedParent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetSpaceInitialTransform \ +static_assert(alignof(FRigUnit_SetSpaceInitialTransform) == 0x000010, "Wrong alignment on FRigUnit_SetSpaceInitialTransform"); \ +static_assert(sizeof(FRigUnit_SetSpaceInitialTransform) == 0x000260, "Wrong size on FRigUnit_SetSpaceInitialTransform"); \ +static_assert(offsetof(FRigUnit_SetSpaceInitialTransform, SpaceName) == 0x000160, "Member 'FRigUnit_SetSpaceInitialTransform::SpaceName' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceInitialTransform, Transform) == 0x000170, "Member 'FRigUnit_SetSpaceInitialTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceInitialTransform, Result) == 0x0001D0, "Member 'FRigUnit_SetSpaceInitialTransform::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceInitialTransform, Space) == 0x000230, "Member 'FRigUnit_SetSpaceInitialTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSpaceInitialTransform, CachedSpaceIndex) == 0x000238, "Member 'FRigUnit_SetSpaceInitialTransform::CachedSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetTransform \ +static_assert(alignof(FRigUnit_SetTransform) == 0x000010, "Wrong alignment on FRigUnit_SetTransform"); \ +static_assert(sizeof(FRigUnit_SetTransform) == 0x000200, "Wrong size on FRigUnit_SetTransform"); \ +static_assert(offsetof(FRigUnit_SetTransform, Item) == 0x000160, "Member 'FRigUnit_SetTransform::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, Space) == 0x00016C, "Member 'FRigUnit_SetTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, bInitial) == 0x00016D, "Member 'FRigUnit_SetTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, Value) == 0x000170, "Member 'FRigUnit_SetTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, Weight) == 0x0001D0, "Member 'FRigUnit_SetTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, bPropagateToChildren) == 0x0001D4, "Member 'FRigUnit_SetTransform::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransform, CachedIndex) == 0x0001D8, "Member 'FRigUnit_SetTransform::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetRotation \ +static_assert(alignof(FRigUnit_SetRotation) == 0x000010, "Wrong alignment on FRigUnit_SetRotation"); \ +static_assert(sizeof(FRigUnit_SetRotation) == 0x0001C0, "Wrong size on FRigUnit_SetRotation"); \ +static_assert(offsetof(FRigUnit_SetRotation, Item) == 0x000160, "Member 'FRigUnit_SetRotation::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, Space) == 0x00016C, "Member 'FRigUnit_SetRotation::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, bInitial) == 0x00016D, "Member 'FRigUnit_SetRotation::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, Value) == 0x000170, "Member 'FRigUnit_SetRotation::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, Weight) == 0x000190, "Member 'FRigUnit_SetRotation::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, bPropagateToChildren) == 0x000194, "Member 'FRigUnit_SetRotation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetRotation, CachedIndex) == 0x000198, "Member 'FRigUnit_SetRotation::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetTransformArray \ +static_assert(alignof(FRigUnit_SetTransformArray) == 0x000010, "Wrong alignment on FRigUnit_SetTransformArray"); \ +static_assert(sizeof(FRigUnit_SetTransformArray) == 0x0001A0, "Wrong size on FRigUnit_SetTransformArray"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, Items) == 0x000160, "Member 'FRigUnit_SetTransformArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, Space) == 0x000170, "Member 'FRigUnit_SetTransformArray::Space' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, bInitial) == 0x000171, "Member 'FRigUnit_SetTransformArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, Transforms) == 0x000178, "Member 'FRigUnit_SetTransformArray::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, Weight) == 0x000188, "Member 'FRigUnit_SetTransformArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, bPropagateToChildren) == 0x00018C, "Member 'FRigUnit_SetTransformArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetTransformArray, CachedIndex) == 0x000190, "Member 'FRigUnit_SetTransformArray::CachedIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_UnsetCurveValue \ +static_assert(alignof(FRigUnit_UnsetCurveValue) == 0x000010, "Wrong alignment on FRigUnit_UnsetCurveValue"); \ +static_assert(sizeof(FRigUnit_UnsetCurveValue) == 0x000190, "Wrong size on FRigUnit_UnsetCurveValue"); \ +static_assert(offsetof(FRigUnit_UnsetCurveValue, Curve) == 0x000160, "Member 'FRigUnit_UnsetCurveValue::Curve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_UnsetCurveValue, CachedCurveIndex) == 0x000168, "Member 'FRigUnit_UnsetCurveValue::CachedCurveIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToRigSpace_Transform \ +static_assert(alignof(FRigUnit_ToRigSpace_Transform) == 0x000010, "Wrong alignment on FRigUnit_ToRigSpace_Transform"); \ +static_assert(sizeof(FRigUnit_ToRigSpace_Transform) == 0x0000D0, "Wrong size on FRigUnit_ToRigSpace_Transform"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Transform, Value) == 0x000010, "Member 'FRigUnit_ToRigSpace_Transform::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Transform, Global) == 0x000070, "Member 'FRigUnit_ToRigSpace_Transform::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToRigSpace_Location \ +static_assert(alignof(FRigUnit_ToRigSpace_Location) == 0x000008, "Wrong alignment on FRigUnit_ToRigSpace_Location"); \ +static_assert(sizeof(FRigUnit_ToRigSpace_Location) == 0x000038, "Wrong size on FRigUnit_ToRigSpace_Location"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Location, Value) == 0x000008, "Member 'FRigUnit_ToRigSpace_Location::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Location, Global) == 0x000020, "Member 'FRigUnit_ToRigSpace_Location::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ToRigSpace_Rotation \ +static_assert(alignof(FRigUnit_ToRigSpace_Rotation) == 0x000010, "Wrong alignment on FRigUnit_ToRigSpace_Rotation"); \ +static_assert(sizeof(FRigUnit_ToRigSpace_Rotation) == 0x000050, "Wrong size on FRigUnit_ToRigSpace_Rotation"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Rotation, Value) == 0x000010, "Member 'FRigUnit_ToRigSpace_Rotation::Value' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ToRigSpace_Rotation, Global) == 0x000030, "Member 'FRigUnit_ToRigSpace_Rotation::Global' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ItemHarmonics \ +static_assert(alignof(FRigUnit_ItemHarmonics) == 0x000010, "Wrong alignment on FRigUnit_ItemHarmonics"); \ +static_assert(sizeof(FRigUnit_ItemHarmonics) == 0x000220, "Wrong size on FRigUnit_ItemHarmonics"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, Targets) == 0x000160, "Member 'FRigUnit_ItemHarmonics::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveSpeed) == 0x000170, "Member 'FRigUnit_ItemHarmonics::WaveSpeed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveFrequency) == 0x000188, "Member 'FRigUnit_ItemHarmonics::WaveFrequency' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveAmplitude) == 0x0001A0, "Member 'FRigUnit_ItemHarmonics::WaveAmplitude' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveOffset) == 0x0001B8, "Member 'FRigUnit_ItemHarmonics::WaveOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveNoise) == 0x0001D0, "Member 'FRigUnit_ItemHarmonics::WaveNoise' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveEase) == 0x0001E8, "Member 'FRigUnit_ItemHarmonics::WaveEase' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveMinimum) == 0x0001EC, "Member 'FRigUnit_ItemHarmonics::WaveMinimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WaveMaximum) == 0x0001F0, "Member 'FRigUnit_ItemHarmonics::WaveMaximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, RotationOrder) == 0x0001F4, "Member 'FRigUnit_ItemHarmonics::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ItemHarmonics, WorkData) == 0x0001F8, "Member 'FRigUnit_ItemHarmonics::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ChainHarmonicsPerItem \ +static_assert(alignof(FRigUnit_ChainHarmonicsPerItem) == 0x000010, "Wrong alignment on FRigUnit_ChainHarmonicsPerItem"); \ +static_assert(sizeof(FRigUnit_ChainHarmonicsPerItem) == 0x000430, "Wrong size on FRigUnit_ChainHarmonicsPerItem"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, ChainRoot) == 0x000160, "Member 'FRigUnit_ChainHarmonicsPerItem::ChainRoot' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, Speed) == 0x000170, "Member 'FRigUnit_ChainHarmonicsPerItem::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, Reach) == 0x000188, "Member 'FRigUnit_ChainHarmonicsPerItem::Reach' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, Wave) == 0x0001D0, "Member 'FRigUnit_ChainHarmonicsPerItem::Wave' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, WaveCurve) == 0x000248, "Member 'FRigUnit_ChainHarmonicsPerItem::WaveCurve' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, Pendulum) == 0x0002D0, "Member 'FRigUnit_ChainHarmonicsPerItem::Pendulum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, bDrawDebug) == 0x000328, "Member 'FRigUnit_ChainHarmonicsPerItem::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, DrawWorldOffset) == 0x000330, "Member 'FRigUnit_ChainHarmonicsPerItem::DrawWorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ChainHarmonicsPerItem, WorkData) == 0x000390, "Member 'FRigUnit_ChainHarmonicsPerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimItem_Target \ +static_assert(alignof(FRigUnit_AimItem_Target) == 0x000008, "Wrong alignment on FRigUnit_AimItem_Target"); \ +static_assert(sizeof(FRigUnit_AimItem_Target) == 0x000048, "Wrong size on FRigUnit_AimItem_Target"); \ +static_assert(offsetof(FRigUnit_AimItem_Target, Weight) == 0x000000, "Member 'FRigUnit_AimItem_Target::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem_Target, Axis) == 0x000008, "Member 'FRigUnit_AimItem_Target::Axis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem_Target, Target) == 0x000020, "Member 'FRigUnit_AimItem_Target::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem_Target, Kind) == 0x000038, "Member 'FRigUnit_AimItem_Target::Kind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem_Target, Space) == 0x00003C, "Member 'FRigUnit_AimItem_Target::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimBoneMath \ +static_assert(alignof(FRigUnit_AimBoneMath) == 0x000010, "Wrong alignment on FRigUnit_AimBoneMath"); \ +static_assert(sizeof(FRigUnit_AimBoneMath) == 0x000230, "Wrong size on FRigUnit_AimBoneMath"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, InputTransform) == 0x000010, "Member 'FRigUnit_AimBoneMath::InputTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, Primary) == 0x000070, "Member 'FRigUnit_AimBoneMath::Primary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, Secondary) == 0x0000B8, "Member 'FRigUnit_AimBoneMath::Secondary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, Weight) == 0x000100, "Member 'FRigUnit_AimBoneMath::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, Result) == 0x000110, "Member 'FRigUnit_AimBoneMath::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, DebugSettings) == 0x000170, "Member 'FRigUnit_AimBoneMath::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, PrimaryCachedSpace) == 0x0001E0, "Member 'FRigUnit_AimBoneMath::PrimaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, SecondaryCachedSpace) == 0x000200, "Member 'FRigUnit_AimBoneMath::SecondaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimBoneMath, bIsInitialized) == 0x000220, "Member 'FRigUnit_AimBoneMath::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_AimItem \ +static_assert(alignof(FRigUnit_AimItem) == 0x000010, "Wrong alignment on FRigUnit_AimItem"); \ +static_assert(sizeof(FRigUnit_AimItem) == 0x0002F0, "Wrong size on FRigUnit_AimItem"); \ +static_assert(offsetof(FRigUnit_AimItem, Item) == 0x000160, "Member 'FRigUnit_AimItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, Primary) == 0x000170, "Member 'FRigUnit_AimItem::Primary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, Secondary) == 0x0001B8, "Member 'FRigUnit_AimItem::Secondary' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, Weight) == 0x000200, "Member 'FRigUnit_AimItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, DebugSettings) == 0x000210, "Member 'FRigUnit_AimItem::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, CachedItem) == 0x000280, "Member 'FRigUnit_AimItem::CachedItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, PrimaryCachedSpace) == 0x0002A0, "Member 'FRigUnit_AimItem::PrimaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, SecondaryCachedSpace) == 0x0002C0, "Member 'FRigUnit_AimItem::SecondaryCachedSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_AimItem, bIsInitialized) == 0x0002E0, "Member 'FRigUnit_AimItem::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIK \ +static_assert(alignof(FRigUnit_CCDIK) == 0x000010, "Wrong alignment on FRigUnit_CCDIK"); \ +static_assert(sizeof(FRigUnit_CCDIK) == 0x000260, "Wrong size on FRigUnit_CCDIK"); \ +static_assert(offsetof(FRigUnit_CCDIK, StartBone) == 0x000160, "Member 'FRigUnit_CCDIK::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, EffectorBone) == 0x000168, "Member 'FRigUnit_CCDIK::EffectorBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, EffectorTransform) == 0x000170, "Member 'FRigUnit_CCDIK::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, Precision) == 0x0001D0, "Member 'FRigUnit_CCDIK::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, Weight) == 0x0001D4, "Member 'FRigUnit_CCDIK::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, MaxIterations) == 0x0001D8, "Member 'FRigUnit_CCDIK::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, bStartFromTail) == 0x0001DC, "Member 'FRigUnit_CCDIK::bStartFromTail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, BaseRotationLimit) == 0x0001E0, "Member 'FRigUnit_CCDIK::BaseRotationLimit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, RotationLimits) == 0x0001E8, "Member 'FRigUnit_CCDIK::RotationLimits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, bPropagateToChildren) == 0x0001F8, "Member 'FRigUnit_CCDIK::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIK, WorkData) == 0x000200, "Member 'FRigUnit_CCDIK::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_CCDIKItemArray \ +static_assert(alignof(FRigUnit_CCDIKItemArray) == 0x000010, "Wrong alignment on FRigUnit_CCDIKItemArray"); \ +static_assert(sizeof(FRigUnit_CCDIKItemArray) == 0x000260, "Wrong size on FRigUnit_CCDIKItemArray"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, Items) == 0x000160, "Member 'FRigUnit_CCDIKItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, EffectorTransform) == 0x000170, "Member 'FRigUnit_CCDIKItemArray::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, Precision) == 0x0001D0, "Member 'FRigUnit_CCDIKItemArray::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, Weight) == 0x0001D4, "Member 'FRigUnit_CCDIKItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, MaxIterations) == 0x0001D8, "Member 'FRigUnit_CCDIKItemArray::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, bStartFromTail) == 0x0001DC, "Member 'FRigUnit_CCDIKItemArray::bStartFromTail' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, BaseRotationLimit) == 0x0001E0, "Member 'FRigUnit_CCDIKItemArray::BaseRotationLimit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, RotationLimits) == 0x0001E8, "Member 'FRigUnit_CCDIKItemArray::RotationLimits' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, bPropagateToChildren) == 0x0001F8, "Member 'FRigUnit_CCDIKItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_CCDIKItemArray, WorkData) == 0x000200, "Member 'FRigUnit_CCDIKItemArray::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DistributeRotationForCollection \ +static_assert(alignof(FRigUnit_DistributeRotationForCollection) == 0x000010, "Wrong alignment on FRigUnit_DistributeRotationForCollection"); \ +static_assert(sizeof(FRigUnit_DistributeRotationForCollection) == 0x0001E0, "Wrong size on FRigUnit_DistributeRotationForCollection"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForCollection, Items) == 0x000160, "Member 'FRigUnit_DistributeRotationForCollection::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForCollection, Rotations) == 0x000170, "Member 'FRigUnit_DistributeRotationForCollection::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForCollection, RotationEaseType) == 0x000180, "Member 'FRigUnit_DistributeRotationForCollection::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForCollection, Weight) == 0x000184, "Member 'FRigUnit_DistributeRotationForCollection::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DistributeRotationForCollection, WorkData) == 0x000188, "Member 'FRigUnit_DistributeRotationForCollection::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FABRIK \ +static_assert(alignof(FRigUnit_FABRIK) == 0x000010, "Wrong alignment on FRigUnit_FABRIK"); \ +static_assert(sizeof(FRigUnit_FABRIK) == 0x000230, "Wrong size on FRigUnit_FABRIK"); \ +static_assert(offsetof(FRigUnit_FABRIK, StartBone) == 0x000160, "Member 'FRigUnit_FABRIK::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, EffectorBone) == 0x000168, "Member 'FRigUnit_FABRIK::EffectorBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, EffectorTransform) == 0x000170, "Member 'FRigUnit_FABRIK::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, Precision) == 0x0001D0, "Member 'FRigUnit_FABRIK::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, Weight) == 0x0001D4, "Member 'FRigUnit_FABRIK::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, bPropagateToChildren) == 0x0001D8, "Member 'FRigUnit_FABRIK::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, MaxIterations) == 0x0001DC, "Member 'FRigUnit_FABRIK::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, WorkData) == 0x0001E0, "Member 'FRigUnit_FABRIK::WorkData' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIK, bSetEffectorTransform) == 0x000220, "Member 'FRigUnit_FABRIK::bSetEffectorTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FABRIKPerItem \ +static_assert(alignof(FRigUnit_FABRIKPerItem) == 0x000010, "Wrong alignment on FRigUnit_FABRIKPerItem"); \ +static_assert(sizeof(FRigUnit_FABRIKPerItem) == 0x000230, "Wrong size on FRigUnit_FABRIKPerItem"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, Items) == 0x000160, "Member 'FRigUnit_FABRIKPerItem::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, EffectorTransform) == 0x000170, "Member 'FRigUnit_FABRIKPerItem::EffectorTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, Precision) == 0x0001D0, "Member 'FRigUnit_FABRIKPerItem::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, Weight) == 0x0001D4, "Member 'FRigUnit_FABRIKPerItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, bPropagateToChildren) == 0x0001D8, "Member 'FRigUnit_FABRIKPerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, MaxIterations) == 0x0001DC, "Member 'FRigUnit_FABRIKPerItem::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, WorkData) == 0x0001E0, "Member 'FRigUnit_FABRIKPerItem::WorkData' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FABRIKPerItem, bSetEffectorTransform) == 0x000220, "Member 'FRigUnit_FABRIKPerItem::bSetEffectorTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurve \ +static_assert(alignof(FRigUnit_FitChainToCurve) == 0x000010, "Wrong alignment on FRigUnit_FitChainToCurve"); \ +static_assert(sizeof(FRigUnit_FitChainToCurve) == 0x000380, "Wrong size on FRigUnit_FitChainToCurve"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, StartBone) == 0x000160, "Member 'FRigUnit_FitChainToCurve::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, EndBone) == 0x000168, "Member 'FRigUnit_FitChainToCurve::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Bezier) == 0x000170, "Member 'FRigUnit_FitChainToCurve::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Alignment) == 0x0001D0, "Member 'FRigUnit_FitChainToCurve::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Minimum) == 0x0001D4, "Member 'FRigUnit_FitChainToCurve::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Maximum) == 0x0001D8, "Member 'FRigUnit_FitChainToCurve::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, SamplingPrecision) == 0x0001DC, "Member 'FRigUnit_FitChainToCurve::SamplingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, PrimaryAxis) == 0x0001E0, "Member 'FRigUnit_FitChainToCurve::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, SecondaryAxis) == 0x0001F8, "Member 'FRigUnit_FitChainToCurve::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, PoleVectorPosition) == 0x000210, "Member 'FRigUnit_FitChainToCurve::PoleVectorPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Rotations) == 0x000228, "Member 'FRigUnit_FitChainToCurve::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, RotationEaseType) == 0x000238, "Member 'FRigUnit_FitChainToCurve::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, Weight) == 0x00023C, "Member 'FRigUnit_FitChainToCurve::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, bPropagateToChildren) == 0x000240, "Member 'FRigUnit_FitChainToCurve::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, DebugSettings) == 0x000250, "Member 'FRigUnit_FitChainToCurve::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurve, WorkData) == 0x0002E0, "Member 'FRigUnit_FitChainToCurve::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToCurvePerItem \ +static_assert(alignof(FRigUnit_FitChainToCurvePerItem) == 0x000010, "Wrong alignment on FRigUnit_FitChainToCurvePerItem"); \ +static_assert(sizeof(FRigUnit_FitChainToCurvePerItem) == 0x000380, "Wrong size on FRigUnit_FitChainToCurvePerItem"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Items) == 0x000160, "Member 'FRigUnit_FitChainToCurvePerItem::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Bezier) == 0x000170, "Member 'FRigUnit_FitChainToCurvePerItem::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Alignment) == 0x0001D0, "Member 'FRigUnit_FitChainToCurvePerItem::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Minimum) == 0x0001D4, "Member 'FRigUnit_FitChainToCurvePerItem::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Maximum) == 0x0001D8, "Member 'FRigUnit_FitChainToCurvePerItem::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, SamplingPrecision) == 0x0001DC, "Member 'FRigUnit_FitChainToCurvePerItem::SamplingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, PrimaryAxis) == 0x0001E0, "Member 'FRigUnit_FitChainToCurvePerItem::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, SecondaryAxis) == 0x0001F8, "Member 'FRigUnit_FitChainToCurvePerItem::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, PoleVectorPosition) == 0x000210, "Member 'FRigUnit_FitChainToCurvePerItem::PoleVectorPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Rotations) == 0x000228, "Member 'FRigUnit_FitChainToCurvePerItem::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, RotationEaseType) == 0x000238, "Member 'FRigUnit_FitChainToCurvePerItem::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, Weight) == 0x00023C, "Member 'FRigUnit_FitChainToCurvePerItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, bPropagateToChildren) == 0x000240, "Member 'FRigUnit_FitChainToCurvePerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, DebugSettings) == 0x000250, "Member 'FRigUnit_FitChainToCurvePerItem::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToCurvePerItem, WorkData) == 0x0002E0, "Member 'FRigUnit_FitChainToCurvePerItem::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MultiFABRIK_WorkData \ +static_assert(alignof(FRigUnit_MultiFABRIK_WorkData) == 0x000008, "Wrong alignment on FRigUnit_MultiFABRIK_WorkData"); \ +static_assert(sizeof(FRigUnit_MultiFABRIK_WorkData) == 0x000068, "Wrong size on FRigUnit_MultiFABRIK_WorkData"); \ + +#define DUMPER7_ASSERTS_FRigUnit_MultiFABRIK \ +static_assert(alignof(FRigUnit_MultiFABRIK) == 0x000010, "Wrong alignment on FRigUnit_MultiFABRIK"); \ +static_assert(sizeof(FRigUnit_MultiFABRIK) == 0x000200, "Wrong size on FRigUnit_MultiFABRIK"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, RootBone) == 0x000160, "Member 'FRigUnit_MultiFABRIK::RootBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, Effectors) == 0x000168, "Member 'FRigUnit_MultiFABRIK::Effectors' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, Precision) == 0x000178, "Member 'FRigUnit_MultiFABRIK::Precision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, bPropagateToChildren) == 0x00017C, "Member 'FRigUnit_MultiFABRIK::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, MaxIterations) == 0x000180, "Member 'FRigUnit_MultiFABRIK::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, WorkData) == 0x000188, "Member 'FRigUnit_MultiFABRIK::WorkData' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_MultiFABRIK, bIsInitialized) == 0x0001F0, "Member 'FRigUnit_MultiFABRIK::bIsInitialized' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SlideChain \ +static_assert(alignof(FRigUnit_SlideChain) == 0x000010, "Wrong alignment on FRigUnit_SlideChain"); \ +static_assert(sizeof(FRigUnit_SlideChain) == 0x0001C0, "Wrong size on FRigUnit_SlideChain"); \ +static_assert(offsetof(FRigUnit_SlideChain, StartBone) == 0x000160, "Member 'FRigUnit_SlideChain::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain, EndBone) == 0x000168, "Member 'FRigUnit_SlideChain::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain, SlideAmount) == 0x000170, "Member 'FRigUnit_SlideChain::SlideAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain, bPropagateToChildren) == 0x000174, "Member 'FRigUnit_SlideChain::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChain, WorkData) == 0x000178, "Member 'FRigUnit_SlideChain::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SlideChainItemArray \ +static_assert(alignof(FRigUnit_SlideChainItemArray) == 0x000010, "Wrong alignment on FRigUnit_SlideChainItemArray"); \ +static_assert(sizeof(FRigUnit_SlideChainItemArray) == 0x0001C0, "Wrong size on FRigUnit_SlideChainItemArray"); \ +static_assert(offsetof(FRigUnit_SlideChainItemArray, Items) == 0x000160, "Member 'FRigUnit_SlideChainItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainItemArray, SlideAmount) == 0x000170, "Member 'FRigUnit_SlideChainItemArray::SlideAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainItemArray, bPropagateToChildren) == 0x000174, "Member 'FRigUnit_SlideChainItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SlideChainItemArray, WorkData) == 0x000178, "Member 'FRigUnit_SlideChainItemArray::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSphericalRegion \ +static_assert(alignof(FSphericalRegion) == 0x000004, "Wrong alignment on FSphericalRegion"); \ +static_assert(sizeof(FSphericalRegion) == 0x000014, "Wrong size on FSphericalRegion"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SphericalPoseReader \ +static_assert(alignof(FRigUnit_SphericalPoseReader) == 0x000010, "Wrong alignment on FRigUnit_SphericalPoseReader"); \ +static_assert(sizeof(FRigUnit_SphericalPoseReader) == 0x000300, "Wrong size on FRigUnit_SphericalPoseReader"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, OutputParam) == 0x000160, "Member 'FRigUnit_SphericalPoseReader::OutputParam' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, DriverItem) == 0x000164, "Member 'FRigUnit_SphericalPoseReader::DriverItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, DriverAxis) == 0x000170, "Member 'FRigUnit_SphericalPoseReader::DriverAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, RotationOffset) == 0x000188, "Member 'FRigUnit_SphericalPoseReader::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, ActiveRegionSize) == 0x0001A0, "Member 'FRigUnit_SphericalPoseReader::ActiveRegionSize' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, ActiveRegionScaleFactors) == 0x0001A4, "Member 'FRigUnit_SphericalPoseReader::ActiveRegionScaleFactors' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, FalloffSize) == 0x0001B4, "Member 'FRigUnit_SphericalPoseReader::FalloffSize' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, FalloffRegionScaleFactors) == 0x0001B8, "Member 'FRigUnit_SphericalPoseReader::FalloffRegionScaleFactors' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, FlipWidthScaling) == 0x0001C8, "Member 'FRigUnit_SphericalPoseReader::FlipWidthScaling' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, FlipHeightScaling) == 0x0001C9, "Member 'FRigUnit_SphericalPoseReader::FlipHeightScaling' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, OptionalParentItem) == 0x0001CC, "Member 'FRigUnit_SphericalPoseReader::OptionalParentItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, Debug) == 0x0001D8, "Member 'FRigUnit_SphericalPoseReader::Debug' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, InnerRegion) == 0x0001E8, "Member 'FRigUnit_SphericalPoseReader::InnerRegion' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, OuterRegion) == 0x0001FC, "Member 'FRigUnit_SphericalPoseReader::OuterRegion' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, DriverNormal) == 0x000210, "Member 'FRigUnit_SphericalPoseReader::DriverNormal' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, Driver2D) == 0x000228, "Member 'FRigUnit_SphericalPoseReader::Driver2D' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, DriverCache) == 0x000240, "Member 'FRigUnit_SphericalPoseReader::DriverCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, OptionalParentCache) == 0x000260, "Member 'FRigUnit_SphericalPoseReader::OptionalParentCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, LocalDriverTransformInit) == 0x000280, "Member 'FRigUnit_SphericalPoseReader::LocalDriverTransformInit' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, CachedRotationOffset) == 0x0002E0, "Member 'FRigUnit_SphericalPoseReader::CachedRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SphericalPoseReader, bCachedInitTransforms) == 0x0002F8, "Member 'FRigUnit_SphericalPoseReader::bCachedInitTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TransformConstraint \ +static_assert(alignof(FRigUnit_TransformConstraint) == 0x000010, "Wrong alignment on FRigUnit_TransformConstraint"); \ +static_assert(sizeof(FRigUnit_TransformConstraint) == 0x000250, "Wrong size on FRigUnit_TransformConstraint"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, bone) == 0x000160, "Member 'FRigUnit_TransformConstraint::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, BaseTransformSpace) == 0x000168, "Member 'FRigUnit_TransformConstraint::BaseTransformSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, BaseTransform) == 0x000170, "Member 'FRigUnit_TransformConstraint::BaseTransform' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, BaseBone) == 0x0001D0, "Member 'FRigUnit_TransformConstraint::BaseBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, Targets) == 0x0001D8, "Member 'FRigUnit_TransformConstraint::Targets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, bUseInitialTransforms) == 0x0001E8, "Member 'FRigUnit_TransformConstraint::bUseInitialTransforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformConstraint, WorkData) == 0x0001F0, "Member 'FRigUnit_TransformConstraint::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PositionConstraint \ +static_assert(alignof(FRigUnit_PositionConstraint) == 0x000010, "Wrong alignment on FRigUnit_PositionConstraint"); \ +static_assert(sizeof(FRigUnit_PositionConstraint) == 0x000190, "Wrong size on FRigUnit_PositionConstraint"); \ +static_assert(offsetof(FRigUnit_PositionConstraint, Child) == 0x000160, "Member 'FRigUnit_PositionConstraint::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraint, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_PositionConstraint::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraint, Filter) == 0x00016D, "Member 'FRigUnit_PositionConstraint::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraint, Parents) == 0x000170, "Member 'FRigUnit_PositionConstraint::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionConstraint, Weight) == 0x000180, "Member 'FRigUnit_PositionConstraint::Weight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_RotationConstraintLocalSpaceOffset \ +static_assert(alignof(FRigUnit_RotationConstraintLocalSpaceOffset) == 0x000010, "Wrong alignment on FRigUnit_RotationConstraintLocalSpaceOffset"); \ +static_assert(sizeof(FRigUnit_RotationConstraintLocalSpaceOffset) == 0x0001C0, "Wrong size on FRigUnit_RotationConstraintLocalSpaceOffset"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, Child) == 0x000160, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, Filter) == 0x00016D, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, Parents) == 0x000170, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, AdvancedSettings) == 0x000180, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::AdvancedSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, Weight) == 0x000184, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, ChildCache) == 0x000188, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::ChildCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_RotationConstraintLocalSpaceOffset, ParentCaches) == 0x0001A8, "Member 'FRigUnit_RotationConstraintLocalSpaceOffset::ParentCaches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ScaleConstraintLocalSpaceOffset \ +static_assert(alignof(FRigUnit_ScaleConstraintLocalSpaceOffset) == 0x000010, "Wrong alignment on FRigUnit_ScaleConstraintLocalSpaceOffset"); \ +static_assert(sizeof(FRigUnit_ScaleConstraintLocalSpaceOffset) == 0x0001C0, "Wrong size on FRigUnit_ScaleConstraintLocalSpaceOffset"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, Child) == 0x000160, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::Child' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, bMaintainOffset) == 0x00016C, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::bMaintainOffset' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, Filter) == 0x00016D, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::Filter' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, Parents) == 0x000170, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::Parents' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, Weight) == 0x000180, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, ChildCache) == 0x000188, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::ChildCache' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ScaleConstraintLocalSpaceOffset, ParentCaches) == 0x0001A8, "Member 'FRigUnit_ScaleConstraintLocalSpaceOffset::ParentCaches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwistBones \ +static_assert(alignof(FRigUnit_TwistBones) == 0x000010, "Wrong alignment on FRigUnit_TwistBones"); \ +static_assert(sizeof(FRigUnit_TwistBones) == 0x0001E0, "Wrong size on FRigUnit_TwistBones"); \ +static_assert(offsetof(FRigUnit_TwistBones, StartBone) == 0x000160, "Member 'FRigUnit_TwistBones::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, EndBone) == 0x000168, "Member 'FRigUnit_TwistBones::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, TwistAxis) == 0x000170, "Member 'FRigUnit_TwistBones::TwistAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, PoleAxis) == 0x000188, "Member 'FRigUnit_TwistBones::PoleAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, TwistEaseType) == 0x0001A0, "Member 'FRigUnit_TwistBones::TwistEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, Weight) == 0x0001A4, "Member 'FRigUnit_TwistBones::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, bPropagateToChildren) == 0x0001A8, "Member 'FRigUnit_TwistBones::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwistBones, WorkData) == 0x0001B0, "Member 'FRigUnit_TwistBones::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKSimplePerItem \ +static_assert(alignof(FRigUnit_TwoBoneIKSimplePerItem) == 0x000010, "Wrong alignment on FRigUnit_TwoBoneIKSimplePerItem"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKSimplePerItem) == 0x000360, "Wrong size on FRigUnit_TwoBoneIKSimplePerItem"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, ItemA) == 0x000160, "Member 'FRigUnit_TwoBoneIKSimplePerItem::ItemA' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, ItemB) == 0x00016C, "Member 'FRigUnit_TwoBoneIKSimplePerItem::ItemB' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, EffectorItem) == 0x000178, "Member 'FRigUnit_TwoBoneIKSimplePerItem::EffectorItem' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, Effector) == 0x000190, "Member 'FRigUnit_TwoBoneIKSimplePerItem::Effector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, PrimaryAxis) == 0x0001F0, "Member 'FRigUnit_TwoBoneIKSimplePerItem::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, SecondaryAxis) == 0x000208, "Member 'FRigUnit_TwoBoneIKSimplePerItem::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, SecondaryAxisWeight) == 0x000220, "Member 'FRigUnit_TwoBoneIKSimplePerItem::SecondaryAxisWeight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, PoleVector) == 0x000228, "Member 'FRigUnit_TwoBoneIKSimplePerItem::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, PoleVectorKind) == 0x000240, "Member 'FRigUnit_TwoBoneIKSimplePerItem::PoleVectorKind' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, PoleVectorSpace) == 0x000244, "Member 'FRigUnit_TwoBoneIKSimplePerItem::PoleVectorSpace' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, bEnableStretch) == 0x000250, "Member 'FRigUnit_TwoBoneIKSimplePerItem::bEnableStretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, StretchStartRatio) == 0x000254, "Member 'FRigUnit_TwoBoneIKSimplePerItem::StretchStartRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, StretchMaximumRatio) == 0x000258, "Member 'FRigUnit_TwoBoneIKSimplePerItem::StretchMaximumRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, Weight) == 0x00025C, "Member 'FRigUnit_TwoBoneIKSimplePerItem::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, ItemALength) == 0x000260, "Member 'FRigUnit_TwoBoneIKSimplePerItem::ItemALength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, ItemBLength) == 0x000264, "Member 'FRigUnit_TwoBoneIKSimplePerItem::ItemBLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, bPropagateToChildren) == 0x000268, "Member 'FRigUnit_TwoBoneIKSimplePerItem::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, DebugSettings) == 0x000270, "Member 'FRigUnit_TwoBoneIKSimplePerItem::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, CachedItemAIndex) == 0x0002E0, "Member 'FRigUnit_TwoBoneIKSimplePerItem::CachedItemAIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, CachedItemBIndex) == 0x000300, "Member 'FRigUnit_TwoBoneIKSimplePerItem::CachedItemBIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, CachedEffectorItemIndex) == 0x000320, "Member 'FRigUnit_TwoBoneIKSimplePerItem::CachedEffectorItemIndex' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimplePerItem, CachedPoleVectorSpaceIndex) == 0x000340, "Member 'FRigUnit_TwoBoneIKSimplePerItem::CachedPoleVectorSpaceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TwoBoneIKSimpleTransforms \ +static_assert(alignof(FRigUnit_TwoBoneIKSimpleTransforms) == 0x000010, "Wrong alignment on FRigUnit_TwoBoneIKSimpleTransforms"); \ +static_assert(sizeof(FRigUnit_TwoBoneIKSimpleTransforms) == 0x0001A0, "Wrong size on FRigUnit_TwoBoneIKSimpleTransforms"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, Root) == 0x000010, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::Root' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, PoleVector) == 0x000070, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, Effector) == 0x000090, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::Effector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, PrimaryAxis) == 0x0000F0, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, SecondaryAxis) == 0x000108, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, SecondaryAxisWeight) == 0x000120, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::SecondaryAxisWeight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, bEnableStretch) == 0x000124, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::bEnableStretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, StretchStartRatio) == 0x000128, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::StretchStartRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, StretchMaximumRatio) == 0x00012C, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::StretchMaximumRatio' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, BoneALength) == 0x000130, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::BoneALength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, BoneBLength) == 0x000134, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::BoneBLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TwoBoneIKSimpleTransforms, Elbow) == 0x000140, "Member 'FRigUnit_TwoBoneIKSimpleTransforms::Elbow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PointSimulation_BoneTarget \ +static_assert(alignof(FRigUnit_PointSimulation_BoneTarget) == 0x000004, "Wrong alignment on FRigUnit_PointSimulation_BoneTarget"); \ +static_assert(sizeof(FRigUnit_PointSimulation_BoneTarget) == 0x000014, "Wrong size on FRigUnit_PointSimulation_BoneTarget"); \ +static_assert(offsetof(FRigUnit_PointSimulation_BoneTarget, bone) == 0x000000, "Member 'FRigUnit_PointSimulation_BoneTarget::bone' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_BoneTarget, TranslationPoint) == 0x000008, "Member 'FRigUnit_PointSimulation_BoneTarget::TranslationPoint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_BoneTarget, PrimaryAimPoint) == 0x00000C, "Member 'FRigUnit_PointSimulation_BoneTarget::PrimaryAimPoint' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation_BoneTarget, SecondaryAimPoint) == 0x000010, "Member 'FRigUnit_PointSimulation_BoneTarget::SecondaryAimPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PointSimulation \ +static_assert(alignof(FRigUnit_PointSimulation) == 0x000010, "Wrong alignment on FRigUnit_PointSimulation"); \ +static_assert(sizeof(FRigUnit_PointSimulation) == 0x000310, "Wrong size on FRigUnit_PointSimulation"); \ +static_assert(offsetof(FRigUnit_PointSimulation, Points) == 0x000100, "Member 'FRigUnit_PointSimulation::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, Links) == 0x000110, "Member 'FRigUnit_PointSimulation::Links' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, Forces) == 0x000120, "Member 'FRigUnit_PointSimulation::Forces' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, CollisionVolumes) == 0x000130, "Member 'FRigUnit_PointSimulation::CollisionVolumes' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, SimulatedStepsPerSecond) == 0x000140, "Member 'FRigUnit_PointSimulation::SimulatedStepsPerSecond' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, IntegratorType) == 0x000144, "Member 'FRigUnit_PointSimulation::IntegratorType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, VerletBlend) == 0x000148, "Member 'FRigUnit_PointSimulation::VerletBlend' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, BoneTargets) == 0x000150, "Member 'FRigUnit_PointSimulation::BoneTargets' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, bLimitLocalPosition) == 0x000160, "Member 'FRigUnit_PointSimulation::bLimitLocalPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, bPropagateToChildren) == 0x000161, "Member 'FRigUnit_PointSimulation::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, PrimaryAimAxis) == 0x000168, "Member 'FRigUnit_PointSimulation::PrimaryAimAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, SecondaryAimAxis) == 0x000180, "Member 'FRigUnit_PointSimulation::SecondaryAimAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, DebugSettings) == 0x0001A0, "Member 'FRigUnit_PointSimulation::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, Bezier) == 0x000220, "Member 'FRigUnit_PointSimulation::Bezier' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PointSimulation, WorkData) == 0x000280, "Member 'FRigUnit_PointSimulation::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringInterpVector \ +static_assert(alignof(FRigUnit_SpringInterpVector) == 0x000008, "Wrong alignment on FRigUnit_SpringInterpVector"); \ +static_assert(sizeof(FRigUnit_SpringInterpVector) == 0x000098, "Wrong size on FRigUnit_SpringInterpVector"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, Current) == 0x000008, "Member 'FRigUnit_SpringInterpVector::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, Target) == 0x000020, "Member 'FRigUnit_SpringInterpVector::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, Stiffness) == 0x000038, "Member 'FRigUnit_SpringInterpVector::Stiffness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, CriticalDamping) == 0x00003C, "Member 'FRigUnit_SpringInterpVector::CriticalDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, MASS) == 0x000040, "Member 'FRigUnit_SpringInterpVector::MASS' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, Result) == 0x000048, "Member 'FRigUnit_SpringInterpVector::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVector, SpringState) == 0x000060, "Member 'FRigUnit_SpringInterpVector::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SpringInterpVectorV2 \ +static_assert(alignof(FRigUnit_SpringInterpVectorV2) == 0x000008, "Wrong alignment on FRigUnit_SpringInterpVectorV2"); \ +static_assert(sizeof(FRigUnit_SpringInterpVectorV2) == 0x0000E8, "Wrong size on FRigUnit_SpringInterpVectorV2"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Target) == 0x000008, "Member 'FRigUnit_SpringInterpVectorV2::Target' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Strength) == 0x000020, "Member 'FRigUnit_SpringInterpVectorV2::Strength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, CriticalDamping) == 0x000024, "Member 'FRigUnit_SpringInterpVectorV2::CriticalDamping' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Force) == 0x000028, "Member 'FRigUnit_SpringInterpVectorV2::Force' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, bUseCurrentInput) == 0x000040, "Member 'FRigUnit_SpringInterpVectorV2::bUseCurrentInput' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Current) == 0x000048, "Member 'FRigUnit_SpringInterpVectorV2::Current' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, TargetVelocityAmount) == 0x000060, "Member 'FRigUnit_SpringInterpVectorV2::TargetVelocityAmount' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, bInitializeFromTarget) == 0x000064, "Member 'FRigUnit_SpringInterpVectorV2::bInitializeFromTarget' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Result) == 0x000068, "Member 'FRigUnit_SpringInterpVectorV2::Result' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, Velocity) == 0x000080, "Member 'FRigUnit_SpringInterpVectorV2::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, SimulatedResult) == 0x000098, "Member 'FRigUnit_SpringInterpVectorV2::SimulatedResult' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SpringInterpVectorV2, SpringState) == 0x0000B0, "Member 'FRigUnit_SpringInterpVectorV2::SpringState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeLibraryLink_SetShapeLibrary \ +static_assert(alignof(ControlRigShapeLibraryLink_SetShapeLibrary) == 0x000008, "Wrong alignment on ControlRigShapeLibraryLink_SetShapeLibrary"); \ +static_assert(sizeof(ControlRigShapeLibraryLink_SetShapeLibrary) == 0x000008, "Wrong size on ControlRigShapeLibraryLink_SetShapeLibrary"); \ +static_assert(offsetof(ControlRigShapeLibraryLink_SetShapeLibrary, InShapeLibrary) == 0x000000, "Member 'ControlRigShapeLibraryLink_SetShapeLibrary::InShapeLibrary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeLibraryLink_GetShapeLibrary \ +static_assert(alignof(ControlRigShapeLibraryLink_GetShapeLibrary) == 0x000008, "Wrong alignment on ControlRigShapeLibraryLink_GetShapeLibrary"); \ +static_assert(sizeof(ControlRigShapeLibraryLink_GetShapeLibrary) == 0x000008, "Wrong size on ControlRigShapeLibraryLink_GetShapeLibrary"); \ +static_assert(offsetof(ControlRigShapeLibraryLink_GetShapeLibrary, ReturnValue) == 0x000000, "Member 'ControlRigShapeLibraryLink_GetShapeLibrary::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigShapeLibraryLink \ +static_assert(alignof(UControlRigShapeLibraryLink) == 0x000008, "Wrong alignment on UControlRigShapeLibraryLink"); \ +static_assert(sizeof(UControlRigShapeLibraryLink) == 0x000118, "Wrong size on UControlRigShapeLibraryLink"); \ +static_assert(offsetof(UControlRigShapeLibraryLink, ShapeLibrary) == 0x000100, "Member 'UControlRigShapeLibraryLink::ShapeLibrary' has a wrong offset!"); \ +static_assert(offsetof(UControlRigShapeLibraryLink, ShapeNames) == 0x000108, "Member 'UControlRigShapeLibraryLink::ShapeNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetEulerTransformFromControlValue \ +static_assert(alignof(RigHierarchy_GetEulerTransformFromControlValue) == 0x000008, "Wrong alignment on RigHierarchy_GetEulerTransformFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetEulerTransformFromControlValue) == 0x0000D0, "Wrong size on RigHierarchy_GetEulerTransformFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetEulerTransformFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetEulerTransformFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetEulerTransformFromControlValue, ReturnValue) == 0x000088, "Member 'RigHierarchy_GetEulerTransformFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetFloatFromControlValue \ +static_assert(alignof(RigHierarchy_GetFloatFromControlValue) == 0x000004, "Wrong alignment on RigHierarchy_GetFloatFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetFloatFromControlValue) == 0x000088, "Wrong size on RigHierarchy_GetFloatFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetFloatFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetFloatFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatFromControlValue, ReturnValue) == 0x000084, "Member 'RigHierarchy_GetFloatFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetIntFromControlValue \ +static_assert(alignof(RigHierarchy_GetIntFromControlValue) == 0x000004, "Wrong alignment on RigHierarchy_GetIntFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetIntFromControlValue) == 0x000088, "Wrong size on RigHierarchy_GetIntFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetIntFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetIntFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetIntFromControlValue, ReturnValue) == 0x000084, "Member 'RigHierarchy_GetIntFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRotatorFromControlValue \ +static_assert(alignof(RigHierarchy_GetRotatorFromControlValue) == 0x000008, "Wrong alignment on RigHierarchy_GetRotatorFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetRotatorFromControlValue) == 0x0000A0, "Wrong size on RigHierarchy_GetRotatorFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetRotatorFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetRotatorFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorFromControlValue, ReturnValue) == 0x000088, "Member 'RigHierarchy_GetRotatorFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetTransformFromControlValue \ +static_assert(alignof(RigHierarchy_GetTransformFromControlValue) == 0x000010, "Wrong alignment on RigHierarchy_GetTransformFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetTransformFromControlValue) == 0x0000F0, "Wrong size on RigHierarchy_GetTransformFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetTransformFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetTransformFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformFromControlValue, ReturnValue) == 0x000090, "Member 'RigHierarchy_GetTransformFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetTransformNoScaleFromControlValue \ +static_assert(alignof(RigHierarchy_GetTransformNoScaleFromControlValue) == 0x000010, "Wrong alignment on RigHierarchy_GetTransformNoScaleFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetTransformNoScaleFromControlValue) == 0x0000D0, "Wrong size on RigHierarchy_GetTransformNoScaleFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetTransformNoScaleFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetTransformNoScaleFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformNoScaleFromControlValue, ReturnValue) == 0x000090, "Member 'RigHierarchy_GetTransformNoScaleFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetVector2DFromControlValue \ +static_assert(alignof(RigHierarchy_GetVector2DFromControlValue) == 0x000008, "Wrong alignment on RigHierarchy_GetVector2DFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetVector2DFromControlValue) == 0x000098, "Wrong size on RigHierarchy_GetVector2DFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetVector2DFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetVector2DFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVector2DFromControlValue, ReturnValue) == 0x000088, "Member 'RigHierarchy_GetVector2DFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetVectorFromControlValue \ +static_assert(alignof(RigHierarchy_GetVectorFromControlValue) == 0x000008, "Wrong alignment on RigHierarchy_GetVectorFromControlValue"); \ +static_assert(sizeof(RigHierarchy_GetVectorFromControlValue) == 0x0000A0, "Wrong size on RigHierarchy_GetVectorFromControlValue"); \ +static_assert(offsetof(RigHierarchy_GetVectorFromControlValue, InValue) == 0x000000, "Member 'RigHierarchy_GetVectorFromControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorFromControlValue, ReturnValue) == 0x000088, "Member 'RigHierarchy_GetVectorFromControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromBool \ +static_assert(alignof(RigHierarchy_MakeControlValueFromBool) == 0x000004, "Wrong alignment on RigHierarchy_MakeControlValueFromBool"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromBool) == 0x000088, "Wrong size on RigHierarchy_MakeControlValueFromBool"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromBool, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromBool::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromBool, ReturnValue) == 0x000004, "Member 'RigHierarchy_MakeControlValueFromBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromEulerTransform \ +static_assert(alignof(RigHierarchy_MakeControlValueFromEulerTransform) == 0x000008, "Wrong alignment on RigHierarchy_MakeControlValueFromEulerTransform"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromEulerTransform) == 0x0000D0, "Wrong size on RigHierarchy_MakeControlValueFromEulerTransform"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromEulerTransform, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromEulerTransform::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromEulerTransform, ReturnValue) == 0x000048, "Member 'RigHierarchy_MakeControlValueFromEulerTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromFloat \ +static_assert(alignof(RigHierarchy_MakeControlValueFromFloat) == 0x000004, "Wrong alignment on RigHierarchy_MakeControlValueFromFloat"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromFloat) == 0x000088, "Wrong size on RigHierarchy_MakeControlValueFromFloat"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromFloat, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromFloat::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromFloat, ReturnValue) == 0x000004, "Member 'RigHierarchy_MakeControlValueFromFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromInt \ +static_assert(alignof(RigHierarchy_MakeControlValueFromInt) == 0x000004, "Wrong alignment on RigHierarchy_MakeControlValueFromInt"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromInt) == 0x000088, "Wrong size on RigHierarchy_MakeControlValueFromInt"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromInt, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromInt::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromInt, ReturnValue) == 0x000004, "Member 'RigHierarchy_MakeControlValueFromInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromRotator \ +static_assert(alignof(RigHierarchy_MakeControlValueFromRotator) == 0x000008, "Wrong alignment on RigHierarchy_MakeControlValueFromRotator"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromRotator) == 0x0000A0, "Wrong size on RigHierarchy_MakeControlValueFromRotator"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromRotator, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromRotator::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromRotator, ReturnValue) == 0x000018, "Member 'RigHierarchy_MakeControlValueFromRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromTransform \ +static_assert(alignof(RigHierarchy_MakeControlValueFromTransform) == 0x000010, "Wrong alignment on RigHierarchy_MakeControlValueFromTransform"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromTransform) == 0x0000F0, "Wrong size on RigHierarchy_MakeControlValueFromTransform"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromTransform, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromTransform::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromTransform, ReturnValue) == 0x000060, "Member 'RigHierarchy_MakeControlValueFromTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromTransformNoScale \ +static_assert(alignof(RigHierarchy_MakeControlValueFromTransformNoScale) == 0x000010, "Wrong alignment on RigHierarchy_MakeControlValueFromTransformNoScale"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromTransformNoScale) == 0x0000D0, "Wrong size on RigHierarchy_MakeControlValueFromTransformNoScale"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromTransformNoScale, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromTransformNoScale::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromTransformNoScale, ReturnValue) == 0x000040, "Member 'RigHierarchy_MakeControlValueFromTransformNoScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromVector \ +static_assert(alignof(RigHierarchy_MakeControlValueFromVector) == 0x000008, "Wrong alignment on RigHierarchy_MakeControlValueFromVector"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromVector) == 0x0000A0, "Wrong size on RigHierarchy_MakeControlValueFromVector"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromVector, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromVector::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromVector, ReturnValue) == 0x000018, "Member 'RigHierarchy_MakeControlValueFromVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_MakeControlValueFromVector2D \ +static_assert(alignof(RigHierarchy_MakeControlValueFromVector2D) == 0x000008, "Wrong alignment on RigHierarchy_MakeControlValueFromVector2D"); \ +static_assert(sizeof(RigHierarchy_MakeControlValueFromVector2D) == 0x000098, "Wrong size on RigHierarchy_MakeControlValueFromVector2D"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromVector2D, InValue) == 0x000000, "Member 'RigHierarchy_MakeControlValueFromVector2D::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_MakeControlValueFromVector2D, ReturnValue) == 0x000010, "Member 'RigHierarchy_MakeControlValueFromVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_CopyHierarchy \ +static_assert(alignof(RigHierarchy_CopyHierarchy) == 0x000008, "Wrong alignment on RigHierarchy_CopyHierarchy"); \ +static_assert(sizeof(RigHierarchy_CopyHierarchy) == 0x000008, "Wrong size on RigHierarchy_CopyHierarchy"); \ +static_assert(offsetof(RigHierarchy_CopyHierarchy, InHierarchy) == 0x000000, "Member 'RigHierarchy_CopyHierarchy::InHierarchy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_CopyPose \ +static_assert(alignof(RigHierarchy_CopyPose) == 0x000008, "Wrong alignment on RigHierarchy_CopyPose"); \ +static_assert(sizeof(RigHierarchy_CopyPose) == 0x000010, "Wrong size on RigHierarchy_CopyPose"); \ +static_assert(offsetof(RigHierarchy_CopyPose, InHierarchy) == 0x000000, "Member 'RigHierarchy_CopyPose::InHierarchy' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_CopyPose, bCurrent) == 0x000008, "Member 'RigHierarchy_CopyPose::bCurrent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_CopyPose, bInitial) == 0x000009, "Member 'RigHierarchy_CopyPose::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_CopyPose, bWeights) == 0x00000A, "Member 'RigHierarchy_CopyPose::bWeights' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_CopyPose, bMatchPoseInGlobalIfNeeded) == 0x00000B, "Member 'RigHierarchy_CopyPose::bMatchPoseInGlobalIfNeeded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetController \ +static_assert(alignof(RigHierarchy_GetController) == 0x000008, "Wrong alignment on RigHierarchy_GetController"); \ +static_assert(sizeof(RigHierarchy_GetController) == 0x000010, "Wrong size on RigHierarchy_GetController"); \ +static_assert(offsetof(RigHierarchy_GetController, bCreateIfNeeded) == 0x000000, "Member 'RigHierarchy_GetController::bCreateIfNeeded' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetController, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetMetadataNames \ +static_assert(alignof(RigHierarchy_GetMetadataNames) == 0x000008, "Wrong alignment on RigHierarchy_GetMetadataNames"); \ +static_assert(sizeof(RigHierarchy_GetMetadataNames) == 0x000020, "Wrong size on RigHierarchy_GetMetadataNames"); \ +static_assert(offsetof(RigHierarchy_GetMetadataNames, InItem) == 0x000000, "Member 'RigHierarchy_GetMetadataNames::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetMetadataNames, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetMetadataNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetMetadataType \ +static_assert(alignof(RigHierarchy_GetMetadataType) == 0x000004, "Wrong alignment on RigHierarchy_GetMetadataType"); \ +static_assert(sizeof(RigHierarchy_GetMetadataType) == 0x000018, "Wrong size on RigHierarchy_GetMetadataType"); \ +static_assert(offsetof(RigHierarchy_GetMetadataType, InItem) == 0x000000, "Member 'RigHierarchy_GetMetadataType::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetMetadataType, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetMetadataType::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetMetadataType, ReturnValue) == 0x000014, "Member 'RigHierarchy_GetMetadataType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_RemoveAllMetadata \ +static_assert(alignof(RigHierarchy_RemoveAllMetadata) == 0x000004, "Wrong alignment on RigHierarchy_RemoveAllMetadata"); \ +static_assert(sizeof(RigHierarchy_RemoveAllMetadata) == 0x000010, "Wrong size on RigHierarchy_RemoveAllMetadata"); \ +static_assert(offsetof(RigHierarchy_RemoveAllMetadata, InItem) == 0x000000, "Member 'RigHierarchy_RemoveAllMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_RemoveAllMetadata, ReturnValue) == 0x00000C, "Member 'RigHierarchy_RemoveAllMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_RemoveMetadata \ +static_assert(alignof(RigHierarchy_RemoveMetadata) == 0x000004, "Wrong alignment on RigHierarchy_RemoveMetadata"); \ +static_assert(sizeof(RigHierarchy_RemoveMetadata) == 0x000018, "Wrong size on RigHierarchy_RemoveMetadata"); \ +static_assert(offsetof(RigHierarchy_RemoveMetadata, InItem) == 0x000000, "Member 'RigHierarchy_RemoveMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_RemoveMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_RemoveMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_RemoveMetadata, ReturnValue) == 0x000014, "Member 'RigHierarchy_RemoveMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_ResetPoseToInitial \ +static_assert(alignof(RigHierarchy_ResetPoseToInitial) == 0x000001, "Wrong alignment on RigHierarchy_ResetPoseToInitial"); \ +static_assert(sizeof(RigHierarchy_ResetPoseToInitial) == 0x000001, "Wrong size on RigHierarchy_ResetPoseToInitial"); \ +static_assert(offsetof(RigHierarchy_ResetPoseToInitial, InTypeFilter) == 0x000000, "Member 'RigHierarchy_ResetPoseToInitial::InTypeFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SendAutoKeyEvent \ +static_assert(alignof(RigHierarchy_SendAutoKeyEvent) == 0x000004, "Wrong alignment on RigHierarchy_SendAutoKeyEvent"); \ +static_assert(sizeof(RigHierarchy_SendAutoKeyEvent) == 0x000014, "Wrong size on RigHierarchy_SendAutoKeyEvent"); \ +static_assert(offsetof(RigHierarchy_SendAutoKeyEvent, InElement) == 0x000000, "Member 'RigHierarchy_SendAutoKeyEvent::InElement' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SendAutoKeyEvent, InOffsetInSeconds) == 0x00000C, "Member 'RigHierarchy_SendAutoKeyEvent::InOffsetInSeconds' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SendAutoKeyEvent, bAsynchronous) == 0x000010, "Member 'RigHierarchy_SendAutoKeyEvent::bAsynchronous' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetBoolArrayMetadata \ +static_assert(alignof(RigHierarchy_SetBoolArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetBoolArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetBoolArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetBoolArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetBoolArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetBoolArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetBoolArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetBoolArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetBoolArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetBoolMetadata \ +static_assert(alignof(RigHierarchy_SetBoolMetadata) == 0x000004, "Wrong alignment on RigHierarchy_SetBoolMetadata"); \ +static_assert(sizeof(RigHierarchy_SetBoolMetadata) == 0x000018, "Wrong size on RigHierarchy_SetBoolMetadata"); \ +static_assert(offsetof(RigHierarchy_SetBoolMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetBoolMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetBoolMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolMetadata, InValue) == 0x000014, "Member 'RigHierarchy_SetBoolMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetBoolMetadata, ReturnValue) == 0x000015, "Member 'RigHierarchy_SetBoolMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlOffsetTransform \ +static_assert(alignof(RigHierarchy_SetControlOffsetTransform) == 0x000010, "Wrong alignment on RigHierarchy_SetControlOffsetTransform"); \ +static_assert(sizeof(RigHierarchy_SetControlOffsetTransform) == 0x000080, "Wrong size on RigHierarchy_SetControlOffsetTransform"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, InKey) == 0x000000, "Member 'RigHierarchy_SetControlOffsetTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, InTransform) == 0x000010, "Member 'RigHierarchy_SetControlOffsetTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, bInitial) == 0x000070, "Member 'RigHierarchy_SetControlOffsetTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetControlOffsetTransform::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetControlOffsetTransform::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransform, bPrintPythonCommands) == 0x000073, "Member 'RigHierarchy_SetControlOffsetTransform::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlOffsetTransformByIndex \ +static_assert(alignof(RigHierarchy_SetControlOffsetTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_SetControlOffsetTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlOffsetTransformByIndex) == 0x000080, "Wrong size on RigHierarchy_SetControlOffsetTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, InTransform) == 0x000010, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, bInitial) == 0x000070, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlOffsetTransformByIndex, bPrintPythonCommands) == 0x000073, "Member 'RigHierarchy_SetControlOffsetTransformByIndex::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredEulerAngles \ +static_assert(alignof(RigHierarchy_SetControlPreferredEulerAngles) == 0x000008, "Wrong alignment on RigHierarchy_SetControlPreferredEulerAngles"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredEulerAngles) == 0x000030, "Wrong size on RigHierarchy_SetControlPreferredEulerAngles"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAngles, InKey) == 0x000000, "Member 'RigHierarchy_SetControlPreferredEulerAngles::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAngles, InEulerAngles) == 0x000010, "Member 'RigHierarchy_SetControlPreferredEulerAngles::InEulerAngles' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAngles, InRotationOrder) == 0x000028, "Member 'RigHierarchy_SetControlPreferredEulerAngles::InRotationOrder' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAngles, bInitial) == 0x000029, "Member 'RigHierarchy_SetControlPreferredEulerAngles::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAngles, bFixEulerFlips) == 0x00002A, "Member 'RigHierarchy_SetControlPreferredEulerAngles::bFixEulerFlips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredEulerAnglesByIndex \ +static_assert(alignof(RigHierarchy_SetControlPreferredEulerAnglesByIndex) == 0x000008, "Wrong alignment on RigHierarchy_SetControlPreferredEulerAnglesByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredEulerAnglesByIndex) == 0x000028, "Wrong size on RigHierarchy_SetControlPreferredEulerAnglesByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAnglesByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlPreferredEulerAnglesByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAnglesByIndex, InEulerAngles) == 0x000008, "Member 'RigHierarchy_SetControlPreferredEulerAnglesByIndex::InEulerAngles' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAnglesByIndex, InRotationOrder) == 0x000020, "Member 'RigHierarchy_SetControlPreferredEulerAnglesByIndex::InRotationOrder' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAnglesByIndex, bInitial) == 0x000021, "Member 'RigHierarchy_SetControlPreferredEulerAnglesByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredEulerAnglesByIndex, bFixEulerFlips) == 0x000022, "Member 'RigHierarchy_SetControlPreferredEulerAnglesByIndex::bFixEulerFlips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredRotationOrder \ +static_assert(alignof(RigHierarchy_SetControlPreferredRotationOrder) == 0x000004, "Wrong alignment on RigHierarchy_SetControlPreferredRotationOrder"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredRotationOrder) == 0x000010, "Wrong size on RigHierarchy_SetControlPreferredRotationOrder"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotationOrder, InKey) == 0x000000, "Member 'RigHierarchy_SetControlPreferredRotationOrder::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotationOrder, InRotationOrder) == 0x00000C, "Member 'RigHierarchy_SetControlPreferredRotationOrder::InRotationOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredRotationOrderByIndex \ +static_assert(alignof(RigHierarchy_SetControlPreferredRotationOrderByIndex) == 0x000004, "Wrong alignment on RigHierarchy_SetControlPreferredRotationOrderByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredRotationOrderByIndex) == 0x000008, "Wrong size on RigHierarchy_SetControlPreferredRotationOrderByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotationOrderByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlPreferredRotationOrderByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotationOrderByIndex, InRotationOrder) == 0x000004, "Member 'RigHierarchy_SetControlPreferredRotationOrderByIndex::InRotationOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredRotator \ +static_assert(alignof(RigHierarchy_SetControlPreferredRotator) == 0x000008, "Wrong alignment on RigHierarchy_SetControlPreferredRotator"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredRotator) == 0x000030, "Wrong size on RigHierarchy_SetControlPreferredRotator"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotator, InKey) == 0x000000, "Member 'RigHierarchy_SetControlPreferredRotator::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotator, InRotator) == 0x000010, "Member 'RigHierarchy_SetControlPreferredRotator::InRotator' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotator, bInitial) == 0x000028, "Member 'RigHierarchy_SetControlPreferredRotator::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotator, bFixEulerFlips) == 0x000029, "Member 'RigHierarchy_SetControlPreferredRotator::bFixEulerFlips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlPreferredRotatorByIndex \ +static_assert(alignof(RigHierarchy_SetControlPreferredRotatorByIndex) == 0x000008, "Wrong alignment on RigHierarchy_SetControlPreferredRotatorByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlPreferredRotatorByIndex) == 0x000028, "Wrong size on RigHierarchy_SetControlPreferredRotatorByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotatorByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlPreferredRotatorByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotatorByIndex, InRotator) == 0x000008, "Member 'RigHierarchy_SetControlPreferredRotatorByIndex::InRotator' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotatorByIndex, bInitial) == 0x000020, "Member 'RigHierarchy_SetControlPreferredRotatorByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlPreferredRotatorByIndex, bFixEulerFlips) == 0x000021, "Member 'RigHierarchy_SetControlPreferredRotatorByIndex::bFixEulerFlips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlSettings \ +static_assert(alignof(RigHierarchy_SetControlSettings) == 0x000008, "Wrong alignment on RigHierarchy_SetControlSettings"); \ +static_assert(sizeof(RigHierarchy_SetControlSettings) == 0x0001D0, "Wrong size on RigHierarchy_SetControlSettings"); \ +static_assert(offsetof(RigHierarchy_SetControlSettings, InKey) == 0x000000, "Member 'RigHierarchy_SetControlSettings::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettings, InSettings) == 0x000010, "Member 'RigHierarchy_SetControlSettings::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettings, bSetupUndo) == 0x0001C8, "Member 'RigHierarchy_SetControlSettings::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettings, bForce) == 0x0001C9, "Member 'RigHierarchy_SetControlSettings::bForce' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettings, bPrintPythonCommands) == 0x0001CA, "Member 'RigHierarchy_SetControlSettings::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlSettingsByIndex \ +static_assert(alignof(RigHierarchy_SetControlSettingsByIndex) == 0x000008, "Wrong alignment on RigHierarchy_SetControlSettingsByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlSettingsByIndex) == 0x0001C8, "Wrong size on RigHierarchy_SetControlSettingsByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlSettingsByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlSettingsByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettingsByIndex, InSettings) == 0x000008, "Member 'RigHierarchy_SetControlSettingsByIndex::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettingsByIndex, bSetupUndo) == 0x0001C0, "Member 'RigHierarchy_SetControlSettingsByIndex::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettingsByIndex, bForce) == 0x0001C1, "Member 'RigHierarchy_SetControlSettingsByIndex::bForce' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlSettingsByIndex, bPrintPythonCommands) == 0x0001C2, "Member 'RigHierarchy_SetControlSettingsByIndex::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlShapeTransform \ +static_assert(alignof(RigHierarchy_SetControlShapeTransform) == 0x000010, "Wrong alignment on RigHierarchy_SetControlShapeTransform"); \ +static_assert(sizeof(RigHierarchy_SetControlShapeTransform) == 0x000080, "Wrong size on RigHierarchy_SetControlShapeTransform"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransform, InKey) == 0x000000, "Member 'RigHierarchy_SetControlShapeTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransform, InTransform) == 0x000010, "Member 'RigHierarchy_SetControlShapeTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransform, bInitial) == 0x000070, "Member 'RigHierarchy_SetControlShapeTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransform, bSetupUndo) == 0x000071, "Member 'RigHierarchy_SetControlShapeTransform::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlShapeTransformByIndex \ +static_assert(alignof(RigHierarchy_SetControlShapeTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_SetControlShapeTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlShapeTransformByIndex) == 0x000080, "Wrong size on RigHierarchy_SetControlShapeTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlShapeTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransformByIndex, InTransform) == 0x000010, "Member 'RigHierarchy_SetControlShapeTransformByIndex::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransformByIndex, bInitial) == 0x000070, "Member 'RigHierarchy_SetControlShapeTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlShapeTransformByIndex, bSetupUndo) == 0x000071, "Member 'RigHierarchy_SetControlShapeTransformByIndex::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlValue \ +static_assert(alignof(RigHierarchy_SetControlValue) == 0x000004, "Wrong alignment on RigHierarchy_SetControlValue"); \ +static_assert(sizeof(RigHierarchy_SetControlValue) == 0x000094, "Wrong size on RigHierarchy_SetControlValue"); \ +static_assert(offsetof(RigHierarchy_SetControlValue, InKey) == 0x000000, "Member 'RigHierarchy_SetControlValue::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValue, InValue) == 0x00000C, "Member 'RigHierarchy_SetControlValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValue, InValueType) == 0x000090, "Member 'RigHierarchy_SetControlValue::InValueType' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValue, bSetupUndo) == 0x000091, "Member 'RigHierarchy_SetControlValue::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValue, bPrintPythonCommands) == 0x000092, "Member 'RigHierarchy_SetControlValue::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlValueByIndex \ +static_assert(alignof(RigHierarchy_SetControlValueByIndex) == 0x000004, "Wrong alignment on RigHierarchy_SetControlValueByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlValueByIndex) == 0x00008C, "Wrong size on RigHierarchy_SetControlValueByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlValueByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlValueByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValueByIndex, InValue) == 0x000004, "Member 'RigHierarchy_SetControlValueByIndex::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValueByIndex, InValueType) == 0x000088, "Member 'RigHierarchy_SetControlValueByIndex::InValueType' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValueByIndex, bSetupUndo) == 0x000089, "Member 'RigHierarchy_SetControlValueByIndex::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlValueByIndex, bPrintPythonCommands) == 0x00008A, "Member 'RigHierarchy_SetControlValueByIndex::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlVisibility \ +static_assert(alignof(RigHierarchy_SetControlVisibility) == 0x000004, "Wrong alignment on RigHierarchy_SetControlVisibility"); \ +static_assert(sizeof(RigHierarchy_SetControlVisibility) == 0x000010, "Wrong size on RigHierarchy_SetControlVisibility"); \ +static_assert(offsetof(RigHierarchy_SetControlVisibility, InKey) == 0x000000, "Member 'RigHierarchy_SetControlVisibility::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlVisibility, bVisibility) == 0x00000C, "Member 'RigHierarchy_SetControlVisibility::bVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetControlVisibilityByIndex \ +static_assert(alignof(RigHierarchy_SetControlVisibilityByIndex) == 0x000004, "Wrong alignment on RigHierarchy_SetControlVisibilityByIndex"); \ +static_assert(sizeof(RigHierarchy_SetControlVisibilityByIndex) == 0x000008, "Wrong size on RigHierarchy_SetControlVisibilityByIndex"); \ +static_assert(offsetof(RigHierarchy_SetControlVisibilityByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetControlVisibilityByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetControlVisibilityByIndex, bVisibility) == 0x000004, "Member 'RigHierarchy_SetControlVisibilityByIndex::bVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetCurveValue \ +static_assert(alignof(RigHierarchy_SetCurveValue) == 0x000004, "Wrong alignment on RigHierarchy_SetCurveValue"); \ +static_assert(sizeof(RigHierarchy_SetCurveValue) == 0x000014, "Wrong size on RigHierarchy_SetCurveValue"); \ +static_assert(offsetof(RigHierarchy_SetCurveValue, InKey) == 0x000000, "Member 'RigHierarchy_SetCurveValue::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetCurveValue, InValue) == 0x00000C, "Member 'RigHierarchy_SetCurveValue::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetCurveValue, bSetupUndo) == 0x000010, "Member 'RigHierarchy_SetCurveValue::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetCurveValueByIndex \ +static_assert(alignof(RigHierarchy_SetCurveValueByIndex) == 0x000004, "Wrong alignment on RigHierarchy_SetCurveValueByIndex"); \ +static_assert(sizeof(RigHierarchy_SetCurveValueByIndex) == 0x00000C, "Wrong size on RigHierarchy_SetCurveValueByIndex"); \ +static_assert(offsetof(RigHierarchy_SetCurveValueByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetCurveValueByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetCurveValueByIndex, InValue) == 0x000004, "Member 'RigHierarchy_SetCurveValueByIndex::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetCurveValueByIndex, bSetupUndo) == 0x000008, "Member 'RigHierarchy_SetCurveValueByIndex::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetFloatArrayMetadata \ +static_assert(alignof(RigHierarchy_SetFloatArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetFloatArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetFloatArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetFloatArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetFloatArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetFloatArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetFloatArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetFloatArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetFloatArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetFloatMetadata \ +static_assert(alignof(RigHierarchy_SetFloatMetadata) == 0x000004, "Wrong alignment on RigHierarchy_SetFloatMetadata"); \ +static_assert(sizeof(RigHierarchy_SetFloatMetadata) == 0x00001C, "Wrong size on RigHierarchy_SetFloatMetadata"); \ +static_assert(offsetof(RigHierarchy_SetFloatMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetFloatMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetFloatMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatMetadata, InValue) == 0x000014, "Member 'RigHierarchy_SetFloatMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetFloatMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_SetFloatMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetGlobalTransform \ +static_assert(alignof(RigHierarchy_SetGlobalTransform) == 0x000010, "Wrong alignment on RigHierarchy_SetGlobalTransform"); \ +static_assert(sizeof(RigHierarchy_SetGlobalTransform) == 0x000080, "Wrong size on RigHierarchy_SetGlobalTransform"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, InKey) == 0x000000, "Member 'RigHierarchy_SetGlobalTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, InTransform) == 0x000010, "Member 'RigHierarchy_SetGlobalTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, bInitial) == 0x000070, "Member 'RigHierarchy_SetGlobalTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetGlobalTransform::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetGlobalTransform::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransform, bPrintPythonCommand) == 0x000073, "Member 'RigHierarchy_SetGlobalTransform::bPrintPythonCommand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetGlobalTransformByIndex \ +static_assert(alignof(RigHierarchy_SetGlobalTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_SetGlobalTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_SetGlobalTransformByIndex) == 0x000080, "Wrong size on RigHierarchy_SetGlobalTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetGlobalTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, InTransform) == 0x000010, "Member 'RigHierarchy_SetGlobalTransformByIndex::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, bInitial) == 0x000070, "Member 'RigHierarchy_SetGlobalTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetGlobalTransformByIndex::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetGlobalTransformByIndex::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetGlobalTransformByIndex, bPrintPythonCommand) == 0x000073, "Member 'RigHierarchy_SetGlobalTransformByIndex::bPrintPythonCommand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetInt32ArrayMetadata \ +static_assert(alignof(RigHierarchy_SetInt32ArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetInt32ArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetInt32ArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetInt32ArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetInt32ArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetInt32ArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32ArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetInt32ArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32ArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetInt32ArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32ArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetInt32ArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetInt32Metadata \ +static_assert(alignof(RigHierarchy_SetInt32Metadata) == 0x000004, "Wrong alignment on RigHierarchy_SetInt32Metadata"); \ +static_assert(sizeof(RigHierarchy_SetInt32Metadata) == 0x00001C, "Wrong size on RigHierarchy_SetInt32Metadata"); \ +static_assert(offsetof(RigHierarchy_SetInt32Metadata, InItem) == 0x000000, "Member 'RigHierarchy_SetInt32Metadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32Metadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetInt32Metadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32Metadata, InValue) == 0x000014, "Member 'RigHierarchy_SetInt32Metadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetInt32Metadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_SetInt32Metadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetLinearColorArrayMetadata \ +static_assert(alignof(RigHierarchy_SetLinearColorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetLinearColorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetLinearColorArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetLinearColorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetLinearColorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetLinearColorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetLinearColorArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetLinearColorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetLinearColorMetadata \ +static_assert(alignof(RigHierarchy_SetLinearColorMetadata) == 0x000004, "Wrong alignment on RigHierarchy_SetLinearColorMetadata"); \ +static_assert(sizeof(RigHierarchy_SetLinearColorMetadata) == 0x000028, "Wrong size on RigHierarchy_SetLinearColorMetadata"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetLinearColorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetLinearColorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorMetadata, InValue) == 0x000014, "Member 'RigHierarchy_SetLinearColorMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLinearColorMetadata, ReturnValue) == 0x000024, "Member 'RigHierarchy_SetLinearColorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetLocalTransform \ +static_assert(alignof(RigHierarchy_SetLocalTransform) == 0x000010, "Wrong alignment on RigHierarchy_SetLocalTransform"); \ +static_assert(sizeof(RigHierarchy_SetLocalTransform) == 0x000080, "Wrong size on RigHierarchy_SetLocalTransform"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, InKey) == 0x000000, "Member 'RigHierarchy_SetLocalTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, InTransform) == 0x000010, "Member 'RigHierarchy_SetLocalTransform::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, bInitial) == 0x000070, "Member 'RigHierarchy_SetLocalTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetLocalTransform::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetLocalTransform::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransform, bPrintPythonCommands) == 0x000073, "Member 'RigHierarchy_SetLocalTransform::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetLocalTransformByIndex \ +static_assert(alignof(RigHierarchy_SetLocalTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_SetLocalTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_SetLocalTransformByIndex) == 0x000080, "Wrong size on RigHierarchy_SetLocalTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_SetLocalTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, InTransform) == 0x000010, "Member 'RigHierarchy_SetLocalTransformByIndex::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, bInitial) == 0x000070, "Member 'RigHierarchy_SetLocalTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, bAffectChildren) == 0x000071, "Member 'RigHierarchy_SetLocalTransformByIndex::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, bSetupUndo) == 0x000072, "Member 'RigHierarchy_SetLocalTransformByIndex::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetLocalTransformByIndex, bPrintPythonCommands) == 0x000073, "Member 'RigHierarchy_SetLocalTransformByIndex::bPrintPythonCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetNameArrayMetadata \ +static_assert(alignof(RigHierarchy_SetNameArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetNameArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetNameArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetNameArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetNameArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetNameArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetNameArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetNameArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetNameArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetNameMetadata \ +static_assert(alignof(RigHierarchy_SetNameMetadata) == 0x000004, "Wrong alignment on RigHierarchy_SetNameMetadata"); \ +static_assert(sizeof(RigHierarchy_SetNameMetadata) == 0x000020, "Wrong size on RigHierarchy_SetNameMetadata"); \ +static_assert(offsetof(RigHierarchy_SetNameMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetNameMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetNameMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameMetadata, InValue) == 0x000014, "Member 'RigHierarchy_SetNameMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetNameMetadata, ReturnValue) == 0x00001C, "Member 'RigHierarchy_SetNameMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetParentWeight \ +static_assert(alignof(RigHierarchy_SetParentWeight) == 0x000004, "Wrong alignment on RigHierarchy_SetParentWeight"); \ +static_assert(sizeof(RigHierarchy_SetParentWeight) == 0x000028, "Wrong size on RigHierarchy_SetParentWeight"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, InChild) == 0x000000, "Member 'RigHierarchy_SetParentWeight::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, InParent) == 0x00000C, "Member 'RigHierarchy_SetParentWeight::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, InWeight) == 0x000018, "Member 'RigHierarchy_SetParentWeight::InWeight' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, bInitial) == 0x000024, "Member 'RigHierarchy_SetParentWeight::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, bAffectChildren) == 0x000025, "Member 'RigHierarchy_SetParentWeight::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeight, ReturnValue) == 0x000026, "Member 'RigHierarchy_SetParentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetParentWeightArray \ +static_assert(alignof(RigHierarchy_SetParentWeightArray) == 0x000008, "Wrong alignment on RigHierarchy_SetParentWeightArray"); \ +static_assert(sizeof(RigHierarchy_SetParentWeightArray) == 0x000028, "Wrong size on RigHierarchy_SetParentWeightArray"); \ +static_assert(offsetof(RigHierarchy_SetParentWeightArray, InChild) == 0x000000, "Member 'RigHierarchy_SetParentWeightArray::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeightArray, InWeights) == 0x000010, "Member 'RigHierarchy_SetParentWeightArray::InWeights' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeightArray, bInitial) == 0x000020, "Member 'RigHierarchy_SetParentWeightArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeightArray, bAffectChildren) == 0x000021, "Member 'RigHierarchy_SetParentWeightArray::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetParentWeightArray, ReturnValue) == 0x000022, "Member 'RigHierarchy_SetParentWeightArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetPose_ForBlueprint \ +static_assert(alignof(RigHierarchy_SetPose_ForBlueprint) == 0x000008, "Wrong alignment on RigHierarchy_SetPose_ForBlueprint"); \ +static_assert(sizeof(RigHierarchy_SetPose_ForBlueprint) == 0x000070, "Wrong size on RigHierarchy_SetPose_ForBlueprint"); \ +static_assert(offsetof(RigHierarchy_SetPose_ForBlueprint, InPose) == 0x000000, "Member 'RigHierarchy_SetPose_ForBlueprint::InPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetQuatArrayMetadata \ +static_assert(alignof(RigHierarchy_SetQuatArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetQuatArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetQuatArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetQuatArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetQuatArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetQuatArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetQuatArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetQuatArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetQuatArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetQuatMetadata \ +static_assert(alignof(RigHierarchy_SetQuatMetadata) == 0x000010, "Wrong alignment on RigHierarchy_SetQuatMetadata"); \ +static_assert(sizeof(RigHierarchy_SetQuatMetadata) == 0x000050, "Wrong size on RigHierarchy_SetQuatMetadata"); \ +static_assert(offsetof(RigHierarchy_SetQuatMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetQuatMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetQuatMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatMetadata, InValue) == 0x000020, "Member 'RigHierarchy_SetQuatMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetQuatMetadata, ReturnValue) == 0x000040, "Member 'RigHierarchy_SetQuatMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetRigElementKeyArrayMetadata \ +static_assert(alignof(RigHierarchy_SetRigElementKeyArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetRigElementKeyArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetRigElementKeyArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetRigElementKeyArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetRigElementKeyArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetRigElementKeyArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetRigElementKeyArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetRigElementKeyArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetRigElementKeyMetadata \ +static_assert(alignof(RigHierarchy_SetRigElementKeyMetadata) == 0x000004, "Wrong alignment on RigHierarchy_SetRigElementKeyMetadata"); \ +static_assert(sizeof(RigHierarchy_SetRigElementKeyMetadata) == 0x000024, "Wrong size on RigHierarchy_SetRigElementKeyMetadata"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetRigElementKeyMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetRigElementKeyMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyMetadata, InValue) == 0x000014, "Member 'RigHierarchy_SetRigElementKeyMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRigElementKeyMetadata, ReturnValue) == 0x000020, "Member 'RigHierarchy_SetRigElementKeyMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetRotatorArrayMetadata \ +static_assert(alignof(RigHierarchy_SetRotatorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetRotatorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetRotatorArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetRotatorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetRotatorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetRotatorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetRotatorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetRotatorArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetRotatorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetRotatorMetadata \ +static_assert(alignof(RigHierarchy_SetRotatorMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetRotatorMetadata"); \ +static_assert(sizeof(RigHierarchy_SetRotatorMetadata) == 0x000038, "Wrong size on RigHierarchy_SetRotatorMetadata"); \ +static_assert(offsetof(RigHierarchy_SetRotatorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetRotatorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetRotatorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetRotatorMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetRotatorMetadata, ReturnValue) == 0x000030, "Member 'RigHierarchy_SetRotatorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetTag \ +static_assert(alignof(RigHierarchy_SetTag) == 0x000004, "Wrong alignment on RigHierarchy_SetTag"); \ +static_assert(sizeof(RigHierarchy_SetTag) == 0x000018, "Wrong size on RigHierarchy_SetTag"); \ +static_assert(offsetof(RigHierarchy_SetTag, InItem) == 0x000000, "Member 'RigHierarchy_SetTag::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTag, InTag) == 0x00000C, "Member 'RigHierarchy_SetTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTag, ReturnValue) == 0x000014, "Member 'RigHierarchy_SetTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetTransformArrayMetadata \ +static_assert(alignof(RigHierarchy_SetTransformArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetTransformArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetTransformArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetTransformArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetTransformArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetTransformArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetTransformArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetTransformArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetTransformArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetTransformMetadata \ +static_assert(alignof(RigHierarchy_SetTransformMetadata) == 0x000010, "Wrong alignment on RigHierarchy_SetTransformMetadata"); \ +static_assert(sizeof(RigHierarchy_SetTransformMetadata) == 0x000090, "Wrong size on RigHierarchy_SetTransformMetadata"); \ +static_assert(offsetof(RigHierarchy_SetTransformMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetTransformMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetTransformMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformMetadata, InValue) == 0x000020, "Member 'RigHierarchy_SetTransformMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetTransformMetadata, ReturnValue) == 0x000080, "Member 'RigHierarchy_SetTransformMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetVectorArrayMetadata \ +static_assert(alignof(RigHierarchy_SetVectorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetVectorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_SetVectorArrayMetadata) == 0x000030, "Wrong size on RigHierarchy_SetVectorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_SetVectorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetVectorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetVectorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorArrayMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetVectorArrayMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorArrayMetadata, ReturnValue) == 0x000028, "Member 'RigHierarchy_SetVectorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SetVectorMetadata \ +static_assert(alignof(RigHierarchy_SetVectorMetadata) == 0x000008, "Wrong alignment on RigHierarchy_SetVectorMetadata"); \ +static_assert(sizeof(RigHierarchy_SetVectorMetadata) == 0x000038, "Wrong size on RigHierarchy_SetVectorMetadata"); \ +static_assert(offsetof(RigHierarchy_SetVectorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_SetVectorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_SetVectorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorMetadata, InValue) == 0x000018, "Member 'RigHierarchy_SetVectorMetadata::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SetVectorMetadata, ReturnValue) == 0x000030, "Member 'RigHierarchy_SetVectorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SwitchToDefaultParent \ +static_assert(alignof(RigHierarchy_SwitchToDefaultParent) == 0x000004, "Wrong alignment on RigHierarchy_SwitchToDefaultParent"); \ +static_assert(sizeof(RigHierarchy_SwitchToDefaultParent) == 0x000010, "Wrong size on RigHierarchy_SwitchToDefaultParent"); \ +static_assert(offsetof(RigHierarchy_SwitchToDefaultParent, InChild) == 0x000000, "Member 'RigHierarchy_SwitchToDefaultParent::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToDefaultParent, bInitial) == 0x00000C, "Member 'RigHierarchy_SwitchToDefaultParent::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToDefaultParent, bAffectChildren) == 0x00000D, "Member 'RigHierarchy_SwitchToDefaultParent::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToDefaultParent, ReturnValue) == 0x00000E, "Member 'RigHierarchy_SwitchToDefaultParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SwitchToParent \ +static_assert(alignof(RigHierarchy_SwitchToParent) == 0x000004, "Wrong alignment on RigHierarchy_SwitchToParent"); \ +static_assert(sizeof(RigHierarchy_SwitchToParent) == 0x00001C, "Wrong size on RigHierarchy_SwitchToParent"); \ +static_assert(offsetof(RigHierarchy_SwitchToParent, InChild) == 0x000000, "Member 'RigHierarchy_SwitchToParent::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToParent, InParent) == 0x00000C, "Member 'RigHierarchy_SwitchToParent::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToParent, bInitial) == 0x000018, "Member 'RigHierarchy_SwitchToParent::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToParent, bAffectChildren) == 0x000019, "Member 'RigHierarchy_SwitchToParent::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToParent, ReturnValue) == 0x00001A, "Member 'RigHierarchy_SwitchToParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SwitchToWorldSpace \ +static_assert(alignof(RigHierarchy_SwitchToWorldSpace) == 0x000004, "Wrong alignment on RigHierarchy_SwitchToWorldSpace"); \ +static_assert(sizeof(RigHierarchy_SwitchToWorldSpace) == 0x000010, "Wrong size on RigHierarchy_SwitchToWorldSpace"); \ +static_assert(offsetof(RigHierarchy_SwitchToWorldSpace, InChild) == 0x000000, "Member 'RigHierarchy_SwitchToWorldSpace::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToWorldSpace, bInitial) == 0x00000C, "Member 'RigHierarchy_SwitchToWorldSpace::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToWorldSpace, bAffectChildren) == 0x00000D, "Member 'RigHierarchy_SwitchToWorldSpace::bAffectChildren' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SwitchToWorldSpace, ReturnValue) == 0x00000E, "Member 'RigHierarchy_SwitchToWorldSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_UnsetCurveValue \ +static_assert(alignof(RigHierarchy_UnsetCurveValue) == 0x000004, "Wrong alignment on RigHierarchy_UnsetCurveValue"); \ +static_assert(sizeof(RigHierarchy_UnsetCurveValue) == 0x000010, "Wrong size on RigHierarchy_UnsetCurveValue"); \ +static_assert(offsetof(RigHierarchy_UnsetCurveValue, InKey) == 0x000000, "Member 'RigHierarchy_UnsetCurveValue::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_UnsetCurveValue, bSetupUndo) == 0x00000C, "Member 'RigHierarchy_UnsetCurveValue::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_UnsetCurveValueByIndex \ +static_assert(alignof(RigHierarchy_UnsetCurveValueByIndex) == 0x000004, "Wrong alignment on RigHierarchy_UnsetCurveValueByIndex"); \ +static_assert(sizeof(RigHierarchy_UnsetCurveValueByIndex) == 0x000008, "Wrong size on RigHierarchy_UnsetCurveValueByIndex"); \ +static_assert(offsetof(RigHierarchy_UnsetCurveValueByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_UnsetCurveValueByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_UnsetCurveValueByIndex, bSetupUndo) == 0x000004, "Member 'RigHierarchy_UnsetCurveValueByIndex::bSetupUndo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_Contains_ForBlueprint \ +static_assert(alignof(RigHierarchy_Contains_ForBlueprint) == 0x000004, "Wrong alignment on RigHierarchy_Contains_ForBlueprint"); \ +static_assert(sizeof(RigHierarchy_Contains_ForBlueprint) == 0x000010, "Wrong size on RigHierarchy_Contains_ForBlueprint"); \ +static_assert(offsetof(RigHierarchy_Contains_ForBlueprint, InKey) == 0x000000, "Member 'RigHierarchy_Contains_ForBlueprint::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_Contains_ForBlueprint, ReturnValue) == 0x00000C, "Member 'RigHierarchy_Contains_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_FindBone_ForBlueprintOnly \ +static_assert(alignof(RigHierarchy_FindBone_ForBlueprintOnly) == 0x000010, "Wrong alignment on RigHierarchy_FindBone_ForBlueprintOnly"); \ +static_assert(sizeof(RigHierarchy_FindBone_ForBlueprintOnly) == 0x0002F0, "Wrong size on RigHierarchy_FindBone_ForBlueprintOnly"); \ +static_assert(offsetof(RigHierarchy_FindBone_ForBlueprintOnly, InKey) == 0x000000, "Member 'RigHierarchy_FindBone_ForBlueprintOnly::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_FindBone_ForBlueprintOnly, ReturnValue) == 0x000010, "Member 'RigHierarchy_FindBone_ForBlueprintOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_FindControl_ForBlueprintOnly \ +static_assert(alignof(RigHierarchy_FindControl_ForBlueprintOnly) == 0x000010, "Wrong alignment on RigHierarchy_FindControl_ForBlueprintOnly"); \ +static_assert(sizeof(RigHierarchy_FindControl_ForBlueprintOnly) == 0x000920, "Wrong size on RigHierarchy_FindControl_ForBlueprintOnly"); \ +static_assert(offsetof(RigHierarchy_FindControl_ForBlueprintOnly, InKey) == 0x000000, "Member 'RigHierarchy_FindControl_ForBlueprintOnly::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_FindControl_ForBlueprintOnly, ReturnValue) == 0x000010, "Member 'RigHierarchy_FindControl_ForBlueprintOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_FindNull_ForBlueprintOnly \ +static_assert(alignof(RigHierarchy_FindNull_ForBlueprintOnly) == 0x000010, "Wrong alignment on RigHierarchy_FindNull_ForBlueprintOnly"); \ +static_assert(sizeof(RigHierarchy_FindNull_ForBlueprintOnly) == 0x0003E0, "Wrong size on RigHierarchy_FindNull_ForBlueprintOnly"); \ +static_assert(offsetof(RigHierarchy_FindNull_ForBlueprintOnly, InKey) == 0x000000, "Member 'RigHierarchy_FindNull_ForBlueprintOnly::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_FindNull_ForBlueprintOnly, ReturnValue) == 0x000010, "Member 'RigHierarchy_FindNull_ForBlueprintOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetAllKeys_ForBlueprint \ +static_assert(alignof(RigHierarchy_GetAllKeys_ForBlueprint) == 0x000008, "Wrong alignment on RigHierarchy_GetAllKeys_ForBlueprint"); \ +static_assert(sizeof(RigHierarchy_GetAllKeys_ForBlueprint) == 0x000018, "Wrong size on RigHierarchy_GetAllKeys_ForBlueprint"); \ +static_assert(offsetof(RigHierarchy_GetAllKeys_ForBlueprint, bTraverse) == 0x000000, "Member 'RigHierarchy_GetAllKeys_ForBlueprint::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetAllKeys_ForBlueprint, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetAllKeys_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetBoneKeys \ +static_assert(alignof(RigHierarchy_GetBoneKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetBoneKeys"); \ +static_assert(sizeof(RigHierarchy_GetBoneKeys) == 0x000018, "Wrong size on RigHierarchy_GetBoneKeys"); \ +static_assert(offsetof(RigHierarchy_GetBoneKeys, bTraverse) == 0x000000, "Member 'RigHierarchy_GetBoneKeys::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoneKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetBoneKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetBoolArrayMetadata \ +static_assert(alignof(RigHierarchy_GetBoolArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetBoolArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetBoolArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetBoolArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetBoolArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetBoolArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoolArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetBoolArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoolArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetBoolArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetBoolMetadata \ +static_assert(alignof(RigHierarchy_GetBoolMetadata) == 0x000004, "Wrong alignment on RigHierarchy_GetBoolMetadata"); \ +static_assert(sizeof(RigHierarchy_GetBoolMetadata) == 0x000018, "Wrong size on RigHierarchy_GetBoolMetadata"); \ +static_assert(offsetof(RigHierarchy_GetBoolMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetBoolMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoolMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetBoolMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoolMetadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetBoolMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetBoolMetadata, ReturnValue) == 0x000015, "Member 'RigHierarchy_GetBoolMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetChildren \ +static_assert(alignof(RigHierarchy_GetChildren) == 0x000008, "Wrong alignment on RigHierarchy_GetChildren"); \ +static_assert(sizeof(RigHierarchy_GetChildren) == 0x000020, "Wrong size on RigHierarchy_GetChildren"); \ +static_assert(offsetof(RigHierarchy_GetChildren, InKey) == 0x000000, "Member 'RigHierarchy_GetChildren::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetChildren, bRecursive) == 0x00000C, "Member 'RigHierarchy_GetChildren::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetChildren, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlKeys \ +static_assert(alignof(RigHierarchy_GetControlKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetControlKeys"); \ +static_assert(sizeof(RigHierarchy_GetControlKeys) == 0x000018, "Wrong size on RigHierarchy_GetControlKeys"); \ +static_assert(offsetof(RigHierarchy_GetControlKeys, bTraverse) == 0x000000, "Member 'RigHierarchy_GetControlKeys::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetControlKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredEulerAngles \ +static_assert(alignof(RigHierarchy_GetControlPreferredEulerAngles) == 0x000008, "Wrong alignment on RigHierarchy_GetControlPreferredEulerAngles"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredEulerAngles) == 0x000028, "Wrong size on RigHierarchy_GetControlPreferredEulerAngles"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAngles, InKey) == 0x000000, "Member 'RigHierarchy_GetControlPreferredEulerAngles::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAngles, InRotationOrder) == 0x00000C, "Member 'RigHierarchy_GetControlPreferredEulerAngles::InRotationOrder' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAngles, bInitial) == 0x00000D, "Member 'RigHierarchy_GetControlPreferredEulerAngles::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAngles, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetControlPreferredEulerAngles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredEulerAnglesByIndex \ +static_assert(alignof(RigHierarchy_GetControlPreferredEulerAnglesByIndex) == 0x000008, "Wrong alignment on RigHierarchy_GetControlPreferredEulerAnglesByIndex"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredEulerAnglesByIndex) == 0x000020, "Wrong size on RigHierarchy_GetControlPreferredEulerAnglesByIndex"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAnglesByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetControlPreferredEulerAnglesByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAnglesByIndex, InRotationOrder) == 0x000004, "Member 'RigHierarchy_GetControlPreferredEulerAnglesByIndex::InRotationOrder' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAnglesByIndex, bInitial) == 0x000005, "Member 'RigHierarchy_GetControlPreferredEulerAnglesByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerAnglesByIndex, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetControlPreferredEulerAnglesByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredEulerRotationOrder \ +static_assert(alignof(RigHierarchy_GetControlPreferredEulerRotationOrder) == 0x000004, "Wrong alignment on RigHierarchy_GetControlPreferredEulerRotationOrder"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredEulerRotationOrder) == 0x000010, "Wrong size on RigHierarchy_GetControlPreferredEulerRotationOrder"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrder, InKey) == 0x000000, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrder::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrder, bFromSettings) == 0x00000C, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrder::bFromSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrder, ReturnValue) == 0x00000D, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredEulerRotationOrderByIndex \ +static_assert(alignof(RigHierarchy_GetControlPreferredEulerRotationOrderByIndex) == 0x000004, "Wrong alignment on RigHierarchy_GetControlPreferredEulerRotationOrderByIndex"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredEulerRotationOrderByIndex) == 0x000008, "Wrong size on RigHierarchy_GetControlPreferredEulerRotationOrderByIndex"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrderByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrderByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrderByIndex, bFromSettings) == 0x000004, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrderByIndex::bFromSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredEulerRotationOrderByIndex, ReturnValue) == 0x000005, "Member 'RigHierarchy_GetControlPreferredEulerRotationOrderByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredRotator \ +static_assert(alignof(RigHierarchy_GetControlPreferredRotator) == 0x000008, "Wrong alignment on RigHierarchy_GetControlPreferredRotator"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredRotator) == 0x000028, "Wrong size on RigHierarchy_GetControlPreferredRotator"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotator, InKey) == 0x000000, "Member 'RigHierarchy_GetControlPreferredRotator::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotator, bInitial) == 0x00000C, "Member 'RigHierarchy_GetControlPreferredRotator::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotator, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetControlPreferredRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlPreferredRotatorByIndex \ +static_assert(alignof(RigHierarchy_GetControlPreferredRotatorByIndex) == 0x000008, "Wrong alignment on RigHierarchy_GetControlPreferredRotatorByIndex"); \ +static_assert(sizeof(RigHierarchy_GetControlPreferredRotatorByIndex) == 0x000020, "Wrong size on RigHierarchy_GetControlPreferredRotatorByIndex"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotatorByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetControlPreferredRotatorByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotatorByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetControlPreferredRotatorByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlPreferredRotatorByIndex, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetControlPreferredRotatorByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlValue \ +static_assert(alignof(RigHierarchy_GetControlValue) == 0x000004, "Wrong alignment on RigHierarchy_GetControlValue"); \ +static_assert(sizeof(RigHierarchy_GetControlValue) == 0x000094, "Wrong size on RigHierarchy_GetControlValue"); \ +static_assert(offsetof(RigHierarchy_GetControlValue, InKey) == 0x000000, "Member 'RigHierarchy_GetControlValue::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlValue, InValueType) == 0x00000C, "Member 'RigHierarchy_GetControlValue::InValueType' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlValue, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetControlValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetControlValueByIndex \ +static_assert(alignof(RigHierarchy_GetControlValueByIndex) == 0x000004, "Wrong alignment on RigHierarchy_GetControlValueByIndex"); \ +static_assert(sizeof(RigHierarchy_GetControlValueByIndex) == 0x00008C, "Wrong size on RigHierarchy_GetControlValueByIndex"); \ +static_assert(offsetof(RigHierarchy_GetControlValueByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetControlValueByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlValueByIndex, InValueType) == 0x000004, "Member 'RigHierarchy_GetControlValueByIndex::InValueType' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetControlValueByIndex, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetControlValueByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetCurveKeys \ +static_assert(alignof(RigHierarchy_GetCurveKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetCurveKeys"); \ +static_assert(sizeof(RigHierarchy_GetCurveKeys) == 0x000010, "Wrong size on RigHierarchy_GetCurveKeys"); \ +static_assert(offsetof(RigHierarchy_GetCurveKeys, ReturnValue) == 0x000000, "Member 'RigHierarchy_GetCurveKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetCurveValue \ +static_assert(alignof(RigHierarchy_GetCurveValue) == 0x000004, "Wrong alignment on RigHierarchy_GetCurveValue"); \ +static_assert(sizeof(RigHierarchy_GetCurveValue) == 0x000010, "Wrong size on RigHierarchy_GetCurveValue"); \ +static_assert(offsetof(RigHierarchy_GetCurveValue, InKey) == 0x000000, "Member 'RigHierarchy_GetCurveValue::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetCurveValue, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetCurveValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetCurveValueByIndex \ +static_assert(alignof(RigHierarchy_GetCurveValueByIndex) == 0x000004, "Wrong alignment on RigHierarchy_GetCurveValueByIndex"); \ +static_assert(sizeof(RigHierarchy_GetCurveValueByIndex) == 0x000008, "Wrong size on RigHierarchy_GetCurveValueByIndex"); \ +static_assert(offsetof(RigHierarchy_GetCurveValueByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetCurveValueByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetCurveValueByIndex, ReturnValue) == 0x000004, "Member 'RigHierarchy_GetCurveValueByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetDefaultParent \ +static_assert(alignof(RigHierarchy_GetDefaultParent) == 0x000004, "Wrong alignment on RigHierarchy_GetDefaultParent"); \ +static_assert(sizeof(RigHierarchy_GetDefaultParent) == 0x000018, "Wrong size on RigHierarchy_GetDefaultParent"); \ +static_assert(offsetof(RigHierarchy_GetDefaultParent, InKey) == 0x000000, "Member 'RigHierarchy_GetDefaultParent::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetDefaultParent, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetDefaultParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetFirstParent \ +static_assert(alignof(RigHierarchy_GetFirstParent) == 0x000004, "Wrong alignment on RigHierarchy_GetFirstParent"); \ +static_assert(sizeof(RigHierarchy_GetFirstParent) == 0x000018, "Wrong size on RigHierarchy_GetFirstParent"); \ +static_assert(offsetof(RigHierarchy_GetFirstParent, InKey) == 0x000000, "Member 'RigHierarchy_GetFirstParent::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFirstParent, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetFirstParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetFloatArrayMetadata \ +static_assert(alignof(RigHierarchy_GetFloatArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetFloatArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetFloatArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetFloatArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetFloatArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetFloatArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetFloatArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetFloatArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetFloatMetadata \ +static_assert(alignof(RigHierarchy_GetFloatMetadata) == 0x000004, "Wrong alignment on RigHierarchy_GetFloatMetadata"); \ +static_assert(sizeof(RigHierarchy_GetFloatMetadata) == 0x00001C, "Wrong size on RigHierarchy_GetFloatMetadata"); \ +static_assert(offsetof(RigHierarchy_GetFloatMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetFloatMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetFloatMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatMetadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetFloatMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetFloatMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetFloatMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalControlOffsetTransform \ +static_assert(alignof(RigHierarchy_GetGlobalControlOffsetTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalControlOffsetTransform"); \ +static_assert(sizeof(RigHierarchy_GetGlobalControlOffsetTransform) == 0x000070, "Wrong size on RigHierarchy_GetGlobalControlOffsetTransform"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetGlobalControlOffsetTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetGlobalControlOffsetTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalControlOffsetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalControlOffsetTransformByIndex \ +static_assert(alignof(RigHierarchy_GetGlobalControlOffsetTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalControlOffsetTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetGlobalControlOffsetTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetGlobalControlOffsetTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetGlobalControlOffsetTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetGlobalControlOffsetTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlOffsetTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalControlOffsetTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalControlShapeTransform \ +static_assert(alignof(RigHierarchy_GetGlobalControlShapeTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalControlShapeTransform"); \ +static_assert(sizeof(RigHierarchy_GetGlobalControlShapeTransform) == 0x000070, "Wrong size on RigHierarchy_GetGlobalControlShapeTransform"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetGlobalControlShapeTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetGlobalControlShapeTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalControlShapeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalControlShapeTransformByIndex \ +static_assert(alignof(RigHierarchy_GetGlobalControlShapeTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalControlShapeTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetGlobalControlShapeTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetGlobalControlShapeTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetGlobalControlShapeTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetGlobalControlShapeTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalControlShapeTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalControlShapeTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalTransform \ +static_assert(alignof(RigHierarchy_GetGlobalTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalTransform"); \ +static_assert(sizeof(RigHierarchy_GetGlobalTransform) == 0x000070, "Wrong size on RigHierarchy_GetGlobalTransform"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetGlobalTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetGlobalTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetGlobalTransformByIndex \ +static_assert(alignof(RigHierarchy_GetGlobalTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetGlobalTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetGlobalTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetGlobalTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetGlobalTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetGlobalTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetGlobalTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetGlobalTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetIndex_ForBlueprint \ +static_assert(alignof(RigHierarchy_GetIndex_ForBlueprint) == 0x000004, "Wrong alignment on RigHierarchy_GetIndex_ForBlueprint"); \ +static_assert(sizeof(RigHierarchy_GetIndex_ForBlueprint) == 0x000010, "Wrong size on RigHierarchy_GetIndex_ForBlueprint"); \ +static_assert(offsetof(RigHierarchy_GetIndex_ForBlueprint, InKey) == 0x000000, "Member 'RigHierarchy_GetIndex_ForBlueprint::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetIndex_ForBlueprint, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetIndex_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetInt32ArrayMetadata \ +static_assert(alignof(RigHierarchy_GetInt32ArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetInt32ArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetInt32ArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetInt32ArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetInt32ArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetInt32ArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetInt32ArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetInt32ArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetInt32ArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetInt32ArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetInt32Metadata \ +static_assert(alignof(RigHierarchy_GetInt32Metadata) == 0x000004, "Wrong alignment on RigHierarchy_GetInt32Metadata"); \ +static_assert(sizeof(RigHierarchy_GetInt32Metadata) == 0x00001C, "Wrong size on RigHierarchy_GetInt32Metadata"); \ +static_assert(offsetof(RigHierarchy_GetInt32Metadata, InItem) == 0x000000, "Member 'RigHierarchy_GetInt32Metadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetInt32Metadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetInt32Metadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetInt32Metadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetInt32Metadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetInt32Metadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetInt32Metadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetKey \ +static_assert(alignof(RigHierarchy_GetKey) == 0x000004, "Wrong alignment on RigHierarchy_GetKey"); \ +static_assert(sizeof(RigHierarchy_GetKey) == 0x000010, "Wrong size on RigHierarchy_GetKey"); \ +static_assert(offsetof(RigHierarchy_GetKey, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetKey::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetKey, ReturnValue) == 0x000004, "Member 'RigHierarchy_GetKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetKeys \ +static_assert(alignof(RigHierarchy_GetKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetKeys"); \ +static_assert(sizeof(RigHierarchy_GetKeys) == 0x000020, "Wrong size on RigHierarchy_GetKeys"); \ +static_assert(offsetof(RigHierarchy_GetKeys, InElementIndices) == 0x000000, "Member 'RigHierarchy_GetKeys::InElementIndices' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetKeys, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLinearColorArrayMetadata \ +static_assert(alignof(RigHierarchy_GetLinearColorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetLinearColorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetLinearColorArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetLinearColorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetLinearColorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetLinearColorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetLinearColorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLinearColorMetadata \ +static_assert(alignof(RigHierarchy_GetLinearColorMetadata) == 0x000004, "Wrong alignment on RigHierarchy_GetLinearColorMetadata"); \ +static_assert(sizeof(RigHierarchy_GetLinearColorMetadata) == 0x000034, "Wrong size on RigHierarchy_GetLinearColorMetadata"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetLinearColorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetLinearColorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorMetadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetLinearColorMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLinearColorMetadata, ReturnValue) == 0x000024, "Member 'RigHierarchy_GetLinearColorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLocalControlShapeTransform \ +static_assert(alignof(RigHierarchy_GetLocalControlShapeTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetLocalControlShapeTransform"); \ +static_assert(sizeof(RigHierarchy_GetLocalControlShapeTransform) == 0x000070, "Wrong size on RigHierarchy_GetLocalControlShapeTransform"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetLocalControlShapeTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetLocalControlShapeTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetLocalControlShapeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLocalControlShapeTransformByIndex \ +static_assert(alignof(RigHierarchy_GetLocalControlShapeTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetLocalControlShapeTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetLocalControlShapeTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetLocalControlShapeTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetLocalControlShapeTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetLocalControlShapeTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalControlShapeTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetLocalControlShapeTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLocalIndex_ForBlueprint \ +static_assert(alignof(RigHierarchy_GetLocalIndex_ForBlueprint) == 0x000004, "Wrong alignment on RigHierarchy_GetLocalIndex_ForBlueprint"); \ +static_assert(sizeof(RigHierarchy_GetLocalIndex_ForBlueprint) == 0x000010, "Wrong size on RigHierarchy_GetLocalIndex_ForBlueprint"); \ +static_assert(offsetof(RigHierarchy_GetLocalIndex_ForBlueprint, InKey) == 0x000000, "Member 'RigHierarchy_GetLocalIndex_ForBlueprint::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalIndex_ForBlueprint, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetLocalIndex_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLocalTransform \ +static_assert(alignof(RigHierarchy_GetLocalTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetLocalTransform"); \ +static_assert(sizeof(RigHierarchy_GetLocalTransform) == 0x000070, "Wrong size on RigHierarchy_GetLocalTransform"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetLocalTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetLocalTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetLocalTransformByIndex \ +static_assert(alignof(RigHierarchy_GetLocalTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetLocalTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetLocalTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetLocalTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetLocalTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetLocalTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetLocalTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetLocalTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetNameArrayMetadata \ +static_assert(alignof(RigHierarchy_GetNameArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetNameArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetNameArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetNameArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetNameArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetNameArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNameArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetNameArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNameArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetNameArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetNameMetadata \ +static_assert(alignof(RigHierarchy_GetNameMetadata) == 0x000004, "Wrong alignment on RigHierarchy_GetNameMetadata"); \ +static_assert(sizeof(RigHierarchy_GetNameMetadata) == 0x000024, "Wrong size on RigHierarchy_GetNameMetadata"); \ +static_assert(offsetof(RigHierarchy_GetNameMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetNameMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNameMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetNameMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNameMetadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetNameMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNameMetadata, ReturnValue) == 0x00001C, "Member 'RigHierarchy_GetNameMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetNullKeys \ +static_assert(alignof(RigHierarchy_GetNullKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetNullKeys"); \ +static_assert(sizeof(RigHierarchy_GetNullKeys) == 0x000018, "Wrong size on RigHierarchy_GetNullKeys"); \ +static_assert(offsetof(RigHierarchy_GetNullKeys, bTraverse) == 0x000000, "Member 'RigHierarchy_GetNullKeys::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNullKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetNullKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetNumberOfParents \ +static_assert(alignof(RigHierarchy_GetNumberOfParents) == 0x000004, "Wrong alignment on RigHierarchy_GetNumberOfParents"); \ +static_assert(sizeof(RigHierarchy_GetNumberOfParents) == 0x000010, "Wrong size on RigHierarchy_GetNumberOfParents"); \ +static_assert(offsetof(RigHierarchy_GetNumberOfParents, InKey) == 0x000000, "Member 'RigHierarchy_GetNumberOfParents::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetNumberOfParents, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetNumberOfParents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetParents \ +static_assert(alignof(RigHierarchy_GetParents) == 0x000008, "Wrong alignment on RigHierarchy_GetParents"); \ +static_assert(sizeof(RigHierarchy_GetParents) == 0x000020, "Wrong size on RigHierarchy_GetParents"); \ +static_assert(offsetof(RigHierarchy_GetParents, InKey) == 0x000000, "Member 'RigHierarchy_GetParents::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParents, bRecursive) == 0x00000C, "Member 'RigHierarchy_GetParents::bRecursive' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParents, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetParents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetParentTransform \ +static_assert(alignof(RigHierarchy_GetParentTransform) == 0x000010, "Wrong alignment on RigHierarchy_GetParentTransform"); \ +static_assert(sizeof(RigHierarchy_GetParentTransform) == 0x000070, "Wrong size on RigHierarchy_GetParentTransform"); \ +static_assert(offsetof(RigHierarchy_GetParentTransform, InKey) == 0x000000, "Member 'RigHierarchy_GetParentTransform::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentTransform, bInitial) == 0x00000C, "Member 'RigHierarchy_GetParentTransform::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentTransform, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetParentTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetParentTransformByIndex \ +static_assert(alignof(RigHierarchy_GetParentTransformByIndex) == 0x000010, "Wrong alignment on RigHierarchy_GetParentTransformByIndex"); \ +static_assert(sizeof(RigHierarchy_GetParentTransformByIndex) == 0x000070, "Wrong size on RigHierarchy_GetParentTransformByIndex"); \ +static_assert(offsetof(RigHierarchy_GetParentTransformByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_GetParentTransformByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentTransformByIndex, bInitial) == 0x000004, "Member 'RigHierarchy_GetParentTransformByIndex::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentTransformByIndex, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetParentTransformByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetParentWeight \ +static_assert(alignof(RigHierarchy_GetParentWeight) == 0x000004, "Wrong alignment on RigHierarchy_GetParentWeight"); \ +static_assert(sizeof(RigHierarchy_GetParentWeight) == 0x000028, "Wrong size on RigHierarchy_GetParentWeight"); \ +static_assert(offsetof(RigHierarchy_GetParentWeight, InChild) == 0x000000, "Member 'RigHierarchy_GetParentWeight::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentWeight, InParent) == 0x00000C, "Member 'RigHierarchy_GetParentWeight::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentWeight, bInitial) == 0x000018, "Member 'RigHierarchy_GetParentWeight::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentWeight, ReturnValue) == 0x00001C, "Member 'RigHierarchy_GetParentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetParentWeightArray \ +static_assert(alignof(RigHierarchy_GetParentWeightArray) == 0x000008, "Wrong alignment on RigHierarchy_GetParentWeightArray"); \ +static_assert(sizeof(RigHierarchy_GetParentWeightArray) == 0x000020, "Wrong size on RigHierarchy_GetParentWeightArray"); \ +static_assert(offsetof(RigHierarchy_GetParentWeightArray, InChild) == 0x000000, "Member 'RigHierarchy_GetParentWeightArray::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentWeightArray, bInitial) == 0x00000C, "Member 'RigHierarchy_GetParentWeightArray::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetParentWeightArray, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetParentWeightArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetPose \ +static_assert(alignof(RigHierarchy_GetPose) == 0x000008, "Wrong alignment on RigHierarchy_GetPose"); \ +static_assert(sizeof(RigHierarchy_GetPose) == 0x000078, "Wrong size on RigHierarchy_GetPose"); \ +static_assert(offsetof(RigHierarchy_GetPose, bInitial) == 0x000000, "Member 'RigHierarchy_GetPose::bInitial' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetPose, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetPreviousName \ +static_assert(alignof(RigHierarchy_GetPreviousName) == 0x000004, "Wrong alignment on RigHierarchy_GetPreviousName"); \ +static_assert(sizeof(RigHierarchy_GetPreviousName) == 0x000014, "Wrong size on RigHierarchy_GetPreviousName"); \ +static_assert(offsetof(RigHierarchy_GetPreviousName, InKey) == 0x000000, "Member 'RigHierarchy_GetPreviousName::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetPreviousName, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetPreviousName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetPreviousParent \ +static_assert(alignof(RigHierarchy_GetPreviousParent) == 0x000004, "Wrong alignment on RigHierarchy_GetPreviousParent"); \ +static_assert(sizeof(RigHierarchy_GetPreviousParent) == 0x000018, "Wrong size on RigHierarchy_GetPreviousParent"); \ +static_assert(offsetof(RigHierarchy_GetPreviousParent, InKey) == 0x000000, "Member 'RigHierarchy_GetPreviousParent::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetPreviousParent, ReturnValue) == 0x00000C, "Member 'RigHierarchy_GetPreviousParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetQuatArrayMetadata \ +static_assert(alignof(RigHierarchy_GetQuatArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetQuatArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetQuatArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetQuatArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetQuatArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetQuatArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetQuatArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetQuatArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetQuatArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetQuatArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetQuatMetadata \ +static_assert(alignof(RigHierarchy_GetQuatMetadata) == 0x000010, "Wrong alignment on RigHierarchy_GetQuatMetadata"); \ +static_assert(sizeof(RigHierarchy_GetQuatMetadata) == 0x000060, "Wrong size on RigHierarchy_GetQuatMetadata"); \ +static_assert(offsetof(RigHierarchy_GetQuatMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetQuatMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetQuatMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetQuatMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetQuatMetadata, DefaultValue) == 0x000020, "Member 'RigHierarchy_GetQuatMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetQuatMetadata, ReturnValue) == 0x000040, "Member 'RigHierarchy_GetQuatMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetReferenceKeys \ +static_assert(alignof(RigHierarchy_GetReferenceKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetReferenceKeys"); \ +static_assert(sizeof(RigHierarchy_GetReferenceKeys) == 0x000018, "Wrong size on RigHierarchy_GetReferenceKeys"); \ +static_assert(offsetof(RigHierarchy_GetReferenceKeys, bTraverse) == 0x000000, "Member 'RigHierarchy_GetReferenceKeys::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetReferenceKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetReferenceKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRigElementKeyArrayMetadata \ +static_assert(alignof(RigHierarchy_GetRigElementKeyArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetRigElementKeyArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetRigElementKeyArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetRigElementKeyArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetRigElementKeyArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetRigElementKeyArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetRigElementKeyArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRigElementKeyMetadata \ +static_assert(alignof(RigHierarchy_GetRigElementKeyMetadata) == 0x000004, "Wrong alignment on RigHierarchy_GetRigElementKeyMetadata"); \ +static_assert(sizeof(RigHierarchy_GetRigElementKeyMetadata) == 0x00002C, "Wrong size on RigHierarchy_GetRigElementKeyMetadata"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetRigElementKeyMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetRigElementKeyMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyMetadata, DefaultValue) == 0x000014, "Member 'RigHierarchy_GetRigElementKeyMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigElementKeyMetadata, ReturnValue) == 0x000020, "Member 'RigHierarchy_GetRigElementKeyMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRigidBodyKeys \ +static_assert(alignof(RigHierarchy_GetRigidBodyKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetRigidBodyKeys"); \ +static_assert(sizeof(RigHierarchy_GetRigidBodyKeys) == 0x000018, "Wrong size on RigHierarchy_GetRigidBodyKeys"); \ +static_assert(offsetof(RigHierarchy_GetRigidBodyKeys, bTraverse) == 0x000000, "Member 'RigHierarchy_GetRigidBodyKeys::bTraverse' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRigidBodyKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetRigidBodyKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRootElementKeys \ +static_assert(alignof(RigHierarchy_GetRootElementKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetRootElementKeys"); \ +static_assert(sizeof(RigHierarchy_GetRootElementKeys) == 0x000010, "Wrong size on RigHierarchy_GetRootElementKeys"); \ +static_assert(offsetof(RigHierarchy_GetRootElementKeys, ReturnValue) == 0x000000, "Member 'RigHierarchy_GetRootElementKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRotatorArrayMetadata \ +static_assert(alignof(RigHierarchy_GetRotatorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetRotatorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetRotatorArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetRotatorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetRotatorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetRotatorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetRotatorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetRotatorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetRotatorMetadata \ +static_assert(alignof(RigHierarchy_GetRotatorMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetRotatorMetadata"); \ +static_assert(sizeof(RigHierarchy_GetRotatorMetadata) == 0x000048, "Wrong size on RigHierarchy_GetRotatorMetadata"); \ +static_assert(offsetof(RigHierarchy_GetRotatorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetRotatorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetRotatorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorMetadata, DefaultValue) == 0x000018, "Member 'RigHierarchy_GetRotatorMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetRotatorMetadata, ReturnValue) == 0x000030, "Member 'RigHierarchy_GetRotatorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetSelectedKeys \ +static_assert(alignof(RigHierarchy_GetSelectedKeys) == 0x000008, "Wrong alignment on RigHierarchy_GetSelectedKeys"); \ +static_assert(sizeof(RigHierarchy_GetSelectedKeys) == 0x000018, "Wrong size on RigHierarchy_GetSelectedKeys"); \ +static_assert(offsetof(RigHierarchy_GetSelectedKeys, InTypeFilter) == 0x000000, "Member 'RigHierarchy_GetSelectedKeys::InTypeFilter' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetSelectedKeys, ReturnValue) == 0x000008, "Member 'RigHierarchy_GetSelectedKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetTags \ +static_assert(alignof(RigHierarchy_GetTags) == 0x000008, "Wrong alignment on RigHierarchy_GetTags"); \ +static_assert(sizeof(RigHierarchy_GetTags) == 0x000020, "Wrong size on RigHierarchy_GetTags"); \ +static_assert(offsetof(RigHierarchy_GetTags, InItem) == 0x000000, "Member 'RigHierarchy_GetTags::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTags, ReturnValue) == 0x000010, "Member 'RigHierarchy_GetTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetTransformArrayMetadata \ +static_assert(alignof(RigHierarchy_GetTransformArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetTransformArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetTransformArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetTransformArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetTransformArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetTransformArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetTransformArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetTransformArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetTransformMetadata \ +static_assert(alignof(RigHierarchy_GetTransformMetadata) == 0x000010, "Wrong alignment on RigHierarchy_GetTransformMetadata"); \ +static_assert(sizeof(RigHierarchy_GetTransformMetadata) == 0x0000E0, "Wrong size on RigHierarchy_GetTransformMetadata"); \ +static_assert(offsetof(RigHierarchy_GetTransformMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetTransformMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetTransformMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformMetadata, DefaultValue) == 0x000020, "Member 'RigHierarchy_GetTransformMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetTransformMetadata, ReturnValue) == 0x000080, "Member 'RigHierarchy_GetTransformMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetVectorArrayMetadata \ +static_assert(alignof(RigHierarchy_GetVectorArrayMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetVectorArrayMetadata"); \ +static_assert(sizeof(RigHierarchy_GetVectorArrayMetadata) == 0x000028, "Wrong size on RigHierarchy_GetVectorArrayMetadata"); \ +static_assert(offsetof(RigHierarchy_GetVectorArrayMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetVectorArrayMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorArrayMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetVectorArrayMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorArrayMetadata, ReturnValue) == 0x000018, "Member 'RigHierarchy_GetVectorArrayMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_GetVectorMetadata \ +static_assert(alignof(RigHierarchy_GetVectorMetadata) == 0x000008, "Wrong alignment on RigHierarchy_GetVectorMetadata"); \ +static_assert(sizeof(RigHierarchy_GetVectorMetadata) == 0x000048, "Wrong size on RigHierarchy_GetVectorMetadata"); \ +static_assert(offsetof(RigHierarchy_GetVectorMetadata, InItem) == 0x000000, "Member 'RigHierarchy_GetVectorMetadata::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorMetadata, InMetadataName) == 0x00000C, "Member 'RigHierarchy_GetVectorMetadata::InMetadataName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorMetadata, DefaultValue) == 0x000018, "Member 'RigHierarchy_GetVectorMetadata::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_GetVectorMetadata, ReturnValue) == 0x000030, "Member 'RigHierarchy_GetVectorMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_HasTag \ +static_assert(alignof(RigHierarchy_HasTag) == 0x000004, "Wrong alignment on RigHierarchy_HasTag"); \ +static_assert(sizeof(RigHierarchy_HasTag) == 0x000018, "Wrong size on RigHierarchy_HasTag"); \ +static_assert(offsetof(RigHierarchy_HasTag, InItem) == 0x000000, "Member 'RigHierarchy_HasTag::InItem' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_HasTag, InTag) == 0x00000C, "Member 'RigHierarchy_HasTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_HasTag, ReturnValue) == 0x000014, "Member 'RigHierarchy_HasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsControllerAvailable \ +static_assert(alignof(RigHierarchy_IsControllerAvailable) == 0x000001, "Wrong alignment on RigHierarchy_IsControllerAvailable"); \ +static_assert(sizeof(RigHierarchy_IsControllerAvailable) == 0x000001, "Wrong size on RigHierarchy_IsControllerAvailable"); \ +static_assert(offsetof(RigHierarchy_IsControllerAvailable, ReturnValue) == 0x000000, "Member 'RigHierarchy_IsControllerAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsCurveValueSet \ +static_assert(alignof(RigHierarchy_IsCurveValueSet) == 0x000004, "Wrong alignment on RigHierarchy_IsCurveValueSet"); \ +static_assert(sizeof(RigHierarchy_IsCurveValueSet) == 0x000010, "Wrong size on RigHierarchy_IsCurveValueSet"); \ +static_assert(offsetof(RigHierarchy_IsCurveValueSet, InKey) == 0x000000, "Member 'RigHierarchy_IsCurveValueSet::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsCurveValueSet, ReturnValue) == 0x00000C, "Member 'RigHierarchy_IsCurveValueSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsCurveValueSetByIndex \ +static_assert(alignof(RigHierarchy_IsCurveValueSetByIndex) == 0x000004, "Wrong alignment on RigHierarchy_IsCurveValueSetByIndex"); \ +static_assert(sizeof(RigHierarchy_IsCurveValueSetByIndex) == 0x000008, "Wrong size on RigHierarchy_IsCurveValueSetByIndex"); \ +static_assert(offsetof(RigHierarchy_IsCurveValueSetByIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_IsCurveValueSetByIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsCurveValueSetByIndex, ReturnValue) == 0x000004, "Member 'RigHierarchy_IsCurveValueSetByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsParentedTo \ +static_assert(alignof(RigHierarchy_IsParentedTo) == 0x000004, "Wrong alignment on RigHierarchy_IsParentedTo"); \ +static_assert(sizeof(RigHierarchy_IsParentedTo) == 0x00001C, "Wrong size on RigHierarchy_IsParentedTo"); \ +static_assert(offsetof(RigHierarchy_IsParentedTo, InChild) == 0x000000, "Member 'RigHierarchy_IsParentedTo::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsParentedTo, InParent) == 0x00000C, "Member 'RigHierarchy_IsParentedTo::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsParentedTo, ReturnValue) == 0x000018, "Member 'RigHierarchy_IsParentedTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsProcedural \ +static_assert(alignof(RigHierarchy_IsProcedural) == 0x000004, "Wrong alignment on RigHierarchy_IsProcedural"); \ +static_assert(sizeof(RigHierarchy_IsProcedural) == 0x000010, "Wrong size on RigHierarchy_IsProcedural"); \ +static_assert(offsetof(RigHierarchy_IsProcedural, InKey) == 0x000000, "Member 'RigHierarchy_IsProcedural::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsProcedural, ReturnValue) == 0x00000C, "Member 'RigHierarchy_IsProcedural::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsSelected \ +static_assert(alignof(RigHierarchy_IsSelected) == 0x000004, "Wrong alignment on RigHierarchy_IsSelected"); \ +static_assert(sizeof(RigHierarchy_IsSelected) == 0x000010, "Wrong size on RigHierarchy_IsSelected"); \ +static_assert(offsetof(RigHierarchy_IsSelected, InKey) == 0x000000, "Member 'RigHierarchy_IsSelected::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsSelected, ReturnValue) == 0x00000C, "Member 'RigHierarchy_IsSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsSelectedByIndex \ +static_assert(alignof(RigHierarchy_IsSelectedByIndex) == 0x000004, "Wrong alignment on RigHierarchy_IsSelectedByIndex"); \ +static_assert(sizeof(RigHierarchy_IsSelectedByIndex) == 0x000008, "Wrong size on RigHierarchy_IsSelectedByIndex"); \ +static_assert(offsetof(RigHierarchy_IsSelectedByIndex, InIndex) == 0x000000, "Member 'RigHierarchy_IsSelectedByIndex::InIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsSelectedByIndex, ReturnValue) == 0x000004, "Member 'RigHierarchy_IsSelectedByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_IsValidIndex \ +static_assert(alignof(RigHierarchy_IsValidIndex) == 0x000004, "Wrong alignment on RigHierarchy_IsValidIndex"); \ +static_assert(sizeof(RigHierarchy_IsValidIndex) == 0x000008, "Wrong size on RigHierarchy_IsValidIndex"); \ +static_assert(offsetof(RigHierarchy_IsValidIndex, InElementIndex) == 0x000000, "Member 'RigHierarchy_IsValidIndex::InElementIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_IsValidIndex, ReturnValue) == 0x000004, "Member 'RigHierarchy_IsValidIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_Num \ +static_assert(alignof(RigHierarchy_Num) == 0x000004, "Wrong alignment on RigHierarchy_Num"); \ +static_assert(sizeof(RigHierarchy_Num) == 0x000004, "Wrong size on RigHierarchy_Num"); \ +static_assert(offsetof(RigHierarchy_Num, ReturnValue) == 0x000000, "Member 'RigHierarchy_Num::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchy_SortKeys \ +static_assert(alignof(RigHierarchy_SortKeys) == 0x000008, "Wrong alignment on RigHierarchy_SortKeys"); \ +static_assert(sizeof(RigHierarchy_SortKeys) == 0x000020, "Wrong size on RigHierarchy_SortKeys"); \ +static_assert(offsetof(RigHierarchy_SortKeys, InKeys) == 0x000000, "Member 'RigHierarchy_SortKeys::InKeys' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchy_SortKeys, ReturnValue) == 0x000010, "Member 'RigHierarchy_SortKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigHierarchy \ +static_assert(alignof(URigHierarchy) == 0x000010, "Wrong alignment on URigHierarchy"); \ +static_assert(sizeof(URigHierarchy) == 0x000380, "Wrong size on URigHierarchy"); \ +static_assert(offsetof(URigHierarchy, ModifiedEventDynamic) == 0x000040, "Member 'URigHierarchy::ModifiedEventDynamic' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, TopologyVersion) == 0x000098, "Member 'URigHierarchy::TopologyVersion' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, MetadataVersion) == 0x00009A, "Member 'URigHierarchy::MetadataVersion' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, MetadataTagVersion) == 0x00009C, "Member 'URigHierarchy::MetadataTagVersion' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, bEnableDirtyPropagation) == 0x00009E, "Member 'URigHierarchy::bEnableDirtyPropagation' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, TransformStackIndex) == 0x000138, "Member 'URigHierarchy::TransformStackIndex' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, HierarchyController) == 0x0001B0, "Member 'URigHierarchy::HierarchyController' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, PreviousNameMap) == 0x000210, "Member 'URigHierarchy::PreviousNameMap' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchy, HierarchyForCacheValidation) == 0x0002E0, "Member 'URigHierarchy::HierarchyForCacheValidation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTransformableControlHandle \ +static_assert(alignof(UTransformableControlHandle) == 0x000008, "Wrong alignment on UTransformableControlHandle"); \ +static_assert(sizeof(UTransformableControlHandle) == 0x000088, "Wrong size on UTransformableControlHandle"); \ +static_assert(offsetof(UTransformableControlHandle, ControlRig) == 0x000058, "Member 'UTransformableControlHandle::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(UTransformableControlHandle, ControlName) == 0x000080, "Member 'UTransformableControlHandle::ControlName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_FindControlRigs \ +static_assert(alignof(ControlRig_FindControlRigs) == 0x000008, "Wrong alignment on ControlRig_FindControlRigs"); \ +static_assert(sizeof(ControlRig_FindControlRigs) == 0x000020, "Wrong size on ControlRig_FindControlRigs"); \ +static_assert(offsetof(ControlRig_FindControlRigs, Outer_0) == 0x000000, "Member 'ControlRig_FindControlRigs::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_FindControlRigs, OptionalClass) == 0x000008, "Member 'ControlRig_FindControlRigs::OptionalClass' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_FindControlRigs, ReturnValue) == 0x000010, "Member 'ControlRig_FindControlRigs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_ClearControlSelection \ +static_assert(alignof(ControlRig_ClearControlSelection) == 0x000001, "Wrong alignment on ControlRig_ClearControlSelection"); \ +static_assert(sizeof(ControlRig_ClearControlSelection) == 0x000001, "Wrong size on ControlRig_ClearControlSelection"); \ +static_assert(offsetof(ControlRig_ClearControlSelection, ReturnValue) == 0x000000, "Member 'ControlRig_ClearControlSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_GetHierarchy \ +static_assert(alignof(ControlRig_GetHierarchy) == 0x000008, "Wrong alignment on ControlRig_GetHierarchy"); \ +static_assert(sizeof(ControlRig_GetHierarchy) == 0x000008, "Wrong size on ControlRig_GetHierarchy"); \ +static_assert(offsetof(ControlRig_GetHierarchy, ReturnValue) == 0x000000, "Member 'ControlRig_GetHierarchy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_SelectControl \ +static_assert(alignof(ControlRig_SelectControl) == 0x000004, "Wrong alignment on ControlRig_SelectControl"); \ +static_assert(sizeof(ControlRig_SelectControl) == 0x00000C, "Wrong size on ControlRig_SelectControl"); \ +static_assert(offsetof(ControlRig_SelectControl, InControlName) == 0x000000, "Member 'ControlRig_SelectControl::InControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_SelectControl, bSelect) == 0x000008, "Member 'ControlRig_SelectControl::bSelect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_SetInteractionRig \ +static_assert(alignof(ControlRig_SetInteractionRig) == 0x000008, "Wrong alignment on ControlRig_SetInteractionRig"); \ +static_assert(sizeof(ControlRig_SetInteractionRig) == 0x000008, "Wrong size on ControlRig_SetInteractionRig"); \ +static_assert(offsetof(ControlRig_SetInteractionRig, InInteractionRig) == 0x000000, "Member 'ControlRig_SetInteractionRig::InInteractionRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_SetInteractionRigClass \ +static_assert(alignof(ControlRig_SetInteractionRigClass) == 0x000008, "Wrong alignment on ControlRig_SetInteractionRigClass"); \ +static_assert(sizeof(ControlRig_SetInteractionRigClass) == 0x000008, "Wrong size on ControlRig_SetInteractionRigClass"); \ +static_assert(offsetof(ControlRig_SetInteractionRigClass, InInteractionRigClass) == 0x000000, "Member 'ControlRig_SetInteractionRigClass::InInteractionRigClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_CreateTransformableControlHandle \ +static_assert(alignof(ControlRig_CreateTransformableControlHandle) == 0x000008, "Wrong alignment on ControlRig_CreateTransformableControlHandle"); \ +static_assert(sizeof(ControlRig_CreateTransformableControlHandle) == 0x000018, "Wrong size on ControlRig_CreateTransformableControlHandle"); \ +static_assert(offsetof(ControlRig_CreateTransformableControlHandle, Outer_0) == 0x000000, "Member 'ControlRig_CreateTransformableControlHandle::Outer_0' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_CreateTransformableControlHandle, ControlName) == 0x000008, "Member 'ControlRig_CreateTransformableControlHandle::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_CreateTransformableControlHandle, ReturnValue) == 0x000010, "Member 'ControlRig_CreateTransformableControlHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_CurrentControlSelection \ +static_assert(alignof(ControlRig_CurrentControlSelection) == 0x000008, "Wrong alignment on ControlRig_CurrentControlSelection"); \ +static_assert(sizeof(ControlRig_CurrentControlSelection) == 0x000010, "Wrong size on ControlRig_CurrentControlSelection"); \ +static_assert(offsetof(ControlRig_CurrentControlSelection, ReturnValue) == 0x000000, "Member 'ControlRig_CurrentControlSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_GetHostingActor \ +static_assert(alignof(ControlRig_GetHostingActor) == 0x000008, "Wrong alignment on ControlRig_GetHostingActor"); \ +static_assert(sizeof(ControlRig_GetHostingActor) == 0x000008, "Wrong size on ControlRig_GetHostingActor"); \ +static_assert(offsetof(ControlRig_GetHostingActor, ReturnValue) == 0x000000, "Member 'ControlRig_GetHostingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_GetInteractionRig \ +static_assert(alignof(ControlRig_GetInteractionRig) == 0x000008, "Wrong alignment on ControlRig_GetInteractionRig"); \ +static_assert(sizeof(ControlRig_GetInteractionRig) == 0x000008, "Wrong size on ControlRig_GetInteractionRig"); \ +static_assert(offsetof(ControlRig_GetInteractionRig, ReturnValue) == 0x000000, "Member 'ControlRig_GetInteractionRig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_GetInteractionRigClass \ +static_assert(alignof(ControlRig_GetInteractionRigClass) == 0x000008, "Wrong alignment on ControlRig_GetInteractionRigClass"); \ +static_assert(sizeof(ControlRig_GetInteractionRigClass) == 0x000008, "Wrong size on ControlRig_GetInteractionRigClass"); \ +static_assert(offsetof(ControlRig_GetInteractionRigClass, ReturnValue) == 0x000000, "Member 'ControlRig_GetInteractionRigClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRig_IsControlSelected \ +static_assert(alignof(ControlRig_IsControlSelected) == 0x000004, "Wrong alignment on ControlRig_IsControlSelected"); \ +static_assert(sizeof(ControlRig_IsControlSelected) == 0x00000C, "Wrong size on ControlRig_IsControlSelected"); \ +static_assert(offsetof(ControlRig_IsControlSelected, InControlName) == 0x000000, "Member 'ControlRig_IsControlSelected::InControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRig_IsControlSelected, ReturnValue) == 0x000008, "Member 'ControlRig_IsControlSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRig \ +static_assert(alignof(UControlRig) == 0x000008, "Wrong alignment on UControlRig"); \ +static_assert(sizeof(UControlRig) == 0x000610, "Wrong size on UControlRig"); \ +static_assert(offsetof(UControlRig, ExecutionType) == 0x000340, "Member 'UControlRig::ExecutionType' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, HierarchySettings) == 0x000344, "Member 'UControlRig::HierarchySettings' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, ControlCustomizations) == 0x000348, "Member 'UControlRig::ControlCustomizations' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, DynamicHierarchy) == 0x000398, "Member 'UControlRig::DynamicHierarchy' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, ShapeLibraries) == 0x0003A0, "Member 'UControlRig::ShapeLibraries' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, ShapeLibraryNameMap) == 0x0003B0, "Member 'UControlRig::ShapeLibraryNameMap' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, DataSourceRegistry) == 0x000418, "Member 'UControlRig::DataSourceRegistry' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, Influences) == 0x0004B0, "Member 'UControlRig::Influences' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, InteractionRig) == 0x000510, "Member 'UControlRig::InteractionRig' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, InteractionRigClass) == 0x000518, "Member 'UControlRig::InteractionRigClass' has a wrong offset!"); \ +static_assert(offsetof(UControlRig, OnControlSelected_BP) == 0x0005F0, "Member 'UControlRig::OnControlSelected_BP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigAnimInstance \ +static_assert(alignof(UControlRigAnimInstance) == 0x000010, "Wrong alignment on UControlRigAnimInstance"); \ +static_assert(sizeof(UControlRigAnimInstance) == 0x000350, "Wrong size on UControlRigAnimInstance"); \ + +#define DUMPER7_ASSERTS_UControlRigBlueprintGeneratedClass \ +static_assert(alignof(UControlRigBlueprintGeneratedClass) == 0x000008, "Wrong alignment on UControlRigBlueprintGeneratedClass"); \ +static_assert(sizeof(UControlRigBlueprintGeneratedClass) == 0x000390, "Wrong size on UControlRigBlueprintGeneratedClass"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_AddMappedCompleteSkeletalMesh \ +static_assert(alignof(ControlRigComponent_AddMappedCompleteSkeletalMesh) == 0x000008, "Wrong alignment on ControlRigComponent_AddMappedCompleteSkeletalMesh"); \ +static_assert(sizeof(ControlRigComponent_AddMappedCompleteSkeletalMesh) == 0x000008, "Wrong size on ControlRigComponent_AddMappedCompleteSkeletalMesh"); \ +static_assert(offsetof(ControlRigComponent_AddMappedCompleteSkeletalMesh, SkeletalMeshComponent) == 0x000000, "Member 'ControlRigComponent_AddMappedCompleteSkeletalMesh::SkeletalMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_AddMappedComponents \ +static_assert(alignof(ControlRigComponent_AddMappedComponents) == 0x000008, "Wrong alignment on ControlRigComponent_AddMappedComponents"); \ +static_assert(sizeof(ControlRigComponent_AddMappedComponents) == 0x000010, "Wrong size on ControlRigComponent_AddMappedComponents"); \ +static_assert(offsetof(ControlRigComponent_AddMappedComponents, Components) == 0x000000, "Member 'ControlRigComponent_AddMappedComponents::Components' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_AddMappedElements \ +static_assert(alignof(ControlRigComponent_AddMappedElements) == 0x000008, "Wrong alignment on ControlRigComponent_AddMappedElements"); \ +static_assert(sizeof(ControlRigComponent_AddMappedElements) == 0x000010, "Wrong size on ControlRigComponent_AddMappedElements"); \ +static_assert(offsetof(ControlRigComponent_AddMappedElements, NewMappedElements) == 0x000000, "Member 'ControlRigComponent_AddMappedElements::NewMappedElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_AddMappedSkeletalMesh \ +static_assert(alignof(ControlRigComponent_AddMappedSkeletalMesh) == 0x000008, "Wrong alignment on ControlRigComponent_AddMappedSkeletalMesh"); \ +static_assert(sizeof(ControlRigComponent_AddMappedSkeletalMesh) == 0x000028, "Wrong size on ControlRigComponent_AddMappedSkeletalMesh"); \ +static_assert(offsetof(ControlRigComponent_AddMappedSkeletalMesh, SkeletalMeshComponent) == 0x000000, "Member 'ControlRigComponent_AddMappedSkeletalMesh::SkeletalMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_AddMappedSkeletalMesh, Bones) == 0x000008, "Member 'ControlRigComponent_AddMappedSkeletalMesh::Bones' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_AddMappedSkeletalMesh, Curves) == 0x000018, "Member 'ControlRigComponent_AddMappedSkeletalMesh::Curves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_CanExecute \ +static_assert(alignof(ControlRigComponent_CanExecute) == 0x000001, "Wrong alignment on ControlRigComponent_CanExecute"); \ +static_assert(sizeof(ControlRigComponent_CanExecute) == 0x000001, "Wrong size on ControlRigComponent_CanExecute"); \ +static_assert(offsetof(ControlRigComponent_CanExecute, ReturnValue) == 0x000000, "Member 'ControlRigComponent_CanExecute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_DoesElementExist \ +static_assert(alignof(ControlRigComponent_DoesElementExist) == 0x000004, "Wrong alignment on ControlRigComponent_DoesElementExist"); \ +static_assert(sizeof(ControlRigComponent_DoesElementExist) == 0x00000C, "Wrong size on ControlRigComponent_DoesElementExist"); \ +static_assert(offsetof(ControlRigComponent_DoesElementExist, Name_0) == 0x000000, "Member 'ControlRigComponent_DoesElementExist::Name_0' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_DoesElementExist, ElementType) == 0x000008, "Member 'ControlRigComponent_DoesElementExist::ElementType' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_DoesElementExist, ReturnValue) == 0x000009, "Member 'ControlRigComponent_DoesElementExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetBoneTransform \ +static_assert(alignof(ControlRigComponent_GetBoneTransform) == 0x000010, "Wrong alignment on ControlRigComponent_GetBoneTransform"); \ +static_assert(sizeof(ControlRigComponent_GetBoneTransform) == 0x000070, "Wrong size on ControlRigComponent_GetBoneTransform"); \ +static_assert(offsetof(ControlRigComponent_GetBoneTransform, BoneName) == 0x000000, "Member 'ControlRigComponent_GetBoneTransform::BoneName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetBoneTransform, Space) == 0x000008, "Member 'ControlRigComponent_GetBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetBoneTransform, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetBoneTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlBool \ +static_assert(alignof(ControlRigComponent_GetControlBool) == 0x000004, "Wrong alignment on ControlRigComponent_GetControlBool"); \ +static_assert(sizeof(ControlRigComponent_GetControlBool) == 0x00000C, "Wrong size on ControlRigComponent_GetControlBool"); \ +static_assert(offsetof(ControlRigComponent_GetControlBool, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlBool::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlBool, ReturnValue) == 0x000008, "Member 'ControlRigComponent_GetControlBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlFloat \ +static_assert(alignof(ControlRigComponent_GetControlFloat) == 0x000004, "Wrong alignment on ControlRigComponent_GetControlFloat"); \ +static_assert(sizeof(ControlRigComponent_GetControlFloat) == 0x00000C, "Wrong size on ControlRigComponent_GetControlFloat"); \ +static_assert(offsetof(ControlRigComponent_GetControlFloat, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlFloat::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlFloat, ReturnValue) == 0x000008, "Member 'ControlRigComponent_GetControlFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlInt \ +static_assert(alignof(ControlRigComponent_GetControlInt) == 0x000004, "Wrong alignment on ControlRigComponent_GetControlInt"); \ +static_assert(sizeof(ControlRigComponent_GetControlInt) == 0x00000C, "Wrong size on ControlRigComponent_GetControlInt"); \ +static_assert(offsetof(ControlRigComponent_GetControlInt, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlInt::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlInt, ReturnValue) == 0x000008, "Member 'ControlRigComponent_GetControlInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlOffset \ +static_assert(alignof(ControlRigComponent_GetControlOffset) == 0x000010, "Wrong alignment on ControlRigComponent_GetControlOffset"); \ +static_assert(sizeof(ControlRigComponent_GetControlOffset) == 0x000070, "Wrong size on ControlRigComponent_GetControlOffset"); \ +static_assert(offsetof(ControlRigComponent_GetControlOffset, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlOffset::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlOffset, Space) == 0x000008, "Member 'ControlRigComponent_GetControlOffset::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlOffset, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetControlOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlPosition \ +static_assert(alignof(ControlRigComponent_GetControlPosition) == 0x000008, "Wrong alignment on ControlRigComponent_GetControlPosition"); \ +static_assert(sizeof(ControlRigComponent_GetControlPosition) == 0x000028, "Wrong size on ControlRigComponent_GetControlPosition"); \ +static_assert(offsetof(ControlRigComponent_GetControlPosition, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlPosition::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlPosition, Space) == 0x000008, "Member 'ControlRigComponent_GetControlPosition::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlPosition, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetControlPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlRig \ +static_assert(alignof(ControlRigComponent_GetControlRig) == 0x000008, "Wrong alignment on ControlRigComponent_GetControlRig"); \ +static_assert(sizeof(ControlRigComponent_GetControlRig) == 0x000008, "Wrong size on ControlRigComponent_GetControlRig"); \ +static_assert(offsetof(ControlRigComponent_GetControlRig, ReturnValue) == 0x000000, "Member 'ControlRigComponent_GetControlRig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlRotator \ +static_assert(alignof(ControlRigComponent_GetControlRotator) == 0x000008, "Wrong alignment on ControlRigComponent_GetControlRotator"); \ +static_assert(sizeof(ControlRigComponent_GetControlRotator) == 0x000028, "Wrong size on ControlRigComponent_GetControlRotator"); \ +static_assert(offsetof(ControlRigComponent_GetControlRotator, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlRotator::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlRotator, Space) == 0x000008, "Member 'ControlRigComponent_GetControlRotator::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlRotator, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetControlRotator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlScale \ +static_assert(alignof(ControlRigComponent_GetControlScale) == 0x000008, "Wrong alignment on ControlRigComponent_GetControlScale"); \ +static_assert(sizeof(ControlRigComponent_GetControlScale) == 0x000028, "Wrong size on ControlRigComponent_GetControlScale"); \ +static_assert(offsetof(ControlRigComponent_GetControlScale, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlScale::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlScale, Space) == 0x000008, "Member 'ControlRigComponent_GetControlScale::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlScale, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetControlScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlTransform \ +static_assert(alignof(ControlRigComponent_GetControlTransform) == 0x000010, "Wrong alignment on ControlRigComponent_GetControlTransform"); \ +static_assert(sizeof(ControlRigComponent_GetControlTransform) == 0x000070, "Wrong size on ControlRigComponent_GetControlTransform"); \ +static_assert(offsetof(ControlRigComponent_GetControlTransform, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlTransform::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlTransform, Space) == 0x000008, "Member 'ControlRigComponent_GetControlTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlTransform, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetControlTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetControlVector2D \ +static_assert(alignof(ControlRigComponent_GetControlVector2D) == 0x000008, "Wrong alignment on ControlRigComponent_GetControlVector2D"); \ +static_assert(sizeof(ControlRigComponent_GetControlVector2D) == 0x000018, "Wrong size on ControlRigComponent_GetControlVector2D"); \ +static_assert(offsetof(ControlRigComponent_GetControlVector2D, ControlName) == 0x000000, "Member 'ControlRigComponent_GetControlVector2D::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetControlVector2D, ReturnValue) == 0x000008, "Member 'ControlRigComponent_GetControlVector2D::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetElementNames \ +static_assert(alignof(ControlRigComponent_GetElementNames) == 0x000008, "Wrong alignment on ControlRigComponent_GetElementNames"); \ +static_assert(sizeof(ControlRigComponent_GetElementNames) == 0x000018, "Wrong size on ControlRigComponent_GetElementNames"); \ +static_assert(offsetof(ControlRigComponent_GetElementNames, ElementType) == 0x000000, "Member 'ControlRigComponent_GetElementNames::ElementType' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetElementNames, ReturnValue) == 0x000008, "Member 'ControlRigComponent_GetElementNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetInitialBoneTransform \ +static_assert(alignof(ControlRigComponent_GetInitialBoneTransform) == 0x000010, "Wrong alignment on ControlRigComponent_GetInitialBoneTransform"); \ +static_assert(sizeof(ControlRigComponent_GetInitialBoneTransform) == 0x000070, "Wrong size on ControlRigComponent_GetInitialBoneTransform"); \ +static_assert(offsetof(ControlRigComponent_GetInitialBoneTransform, BoneName) == 0x000000, "Member 'ControlRigComponent_GetInitialBoneTransform::BoneName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetInitialBoneTransform, Space) == 0x000008, "Member 'ControlRigComponent_GetInitialBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetInitialBoneTransform, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetInitialBoneTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetInitialSpaceTransform \ +static_assert(alignof(ControlRigComponent_GetInitialSpaceTransform) == 0x000010, "Wrong alignment on ControlRigComponent_GetInitialSpaceTransform"); \ +static_assert(sizeof(ControlRigComponent_GetInitialSpaceTransform) == 0x000070, "Wrong size on ControlRigComponent_GetInitialSpaceTransform"); \ +static_assert(offsetof(ControlRigComponent_GetInitialSpaceTransform, SpaceName) == 0x000000, "Member 'ControlRigComponent_GetInitialSpaceTransform::SpaceName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetInitialSpaceTransform, Space) == 0x000008, "Member 'ControlRigComponent_GetInitialSpaceTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetInitialSpaceTransform, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetInitialSpaceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetSpaceTransform \ +static_assert(alignof(ControlRigComponent_GetSpaceTransform) == 0x000010, "Wrong alignment on ControlRigComponent_GetSpaceTransform"); \ +static_assert(sizeof(ControlRigComponent_GetSpaceTransform) == 0x000070, "Wrong size on ControlRigComponent_GetSpaceTransform"); \ +static_assert(offsetof(ControlRigComponent_GetSpaceTransform, SpaceName) == 0x000000, "Member 'ControlRigComponent_GetSpaceTransform::SpaceName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetSpaceTransform, Space) == 0x000008, "Member 'ControlRigComponent_GetSpaceTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_GetSpaceTransform, ReturnValue) == 0x000010, "Member 'ControlRigComponent_GetSpaceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPostConstruction \ +static_assert(alignof(ControlRigComponent_OnPostConstruction) == 0x000008, "Wrong alignment on ControlRigComponent_OnPostConstruction"); \ +static_assert(sizeof(ControlRigComponent_OnPostConstruction) == 0x000008, "Wrong size on ControlRigComponent_OnPostConstruction"); \ +static_assert(offsetof(ControlRigComponent_OnPostConstruction, Component) == 0x000000, "Member 'ControlRigComponent_OnPostConstruction::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPostForwardsSolve \ +static_assert(alignof(ControlRigComponent_OnPostForwardsSolve) == 0x000008, "Wrong alignment on ControlRigComponent_OnPostForwardsSolve"); \ +static_assert(sizeof(ControlRigComponent_OnPostForwardsSolve) == 0x000008, "Wrong size on ControlRigComponent_OnPostForwardsSolve"); \ +static_assert(offsetof(ControlRigComponent_OnPostForwardsSolve, Component) == 0x000000, "Member 'ControlRigComponent_OnPostForwardsSolve::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPostInitialize \ +static_assert(alignof(ControlRigComponent_OnPostInitialize) == 0x000008, "Wrong alignment on ControlRigComponent_OnPostInitialize"); \ +static_assert(sizeof(ControlRigComponent_OnPostInitialize) == 0x000008, "Wrong size on ControlRigComponent_OnPostInitialize"); \ +static_assert(offsetof(ControlRigComponent_OnPostInitialize, Component) == 0x000000, "Member 'ControlRigComponent_OnPostInitialize::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPreConstruction \ +static_assert(alignof(ControlRigComponent_OnPreConstruction) == 0x000008, "Wrong alignment on ControlRigComponent_OnPreConstruction"); \ +static_assert(sizeof(ControlRigComponent_OnPreConstruction) == 0x000008, "Wrong size on ControlRigComponent_OnPreConstruction"); \ +static_assert(offsetof(ControlRigComponent_OnPreConstruction, Component) == 0x000000, "Member 'ControlRigComponent_OnPreConstruction::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPreForwardsSolve \ +static_assert(alignof(ControlRigComponent_OnPreForwardsSolve) == 0x000008, "Wrong alignment on ControlRigComponent_OnPreForwardsSolve"); \ +static_assert(sizeof(ControlRigComponent_OnPreForwardsSolve) == 0x000008, "Wrong size on ControlRigComponent_OnPreForwardsSolve"); \ +static_assert(offsetof(ControlRigComponent_OnPreForwardsSolve, Component) == 0x000000, "Member 'ControlRigComponent_OnPreForwardsSolve::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_OnPreInitialize \ +static_assert(alignof(ControlRigComponent_OnPreInitialize) == 0x000008, "Wrong alignment on ControlRigComponent_OnPreInitialize"); \ +static_assert(sizeof(ControlRigComponent_OnPreInitialize) == 0x000008, "Wrong size on ControlRigComponent_OnPreInitialize"); \ +static_assert(offsetof(ControlRigComponent_OnPreInitialize, Component) == 0x000000, "Member 'ControlRigComponent_OnPreInitialize::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh \ +static_assert(alignof(ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh) == 0x000008, "Wrong alignment on ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh"); \ +static_assert(sizeof(ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh) == 0x000008, "Wrong size on ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh"); \ +static_assert(offsetof(ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh, InSkeletalMesh) == 0x000000, "Member 'ControlRigComponent_SetBoneInitialTransformsFromSkeletalMesh::InSkeletalMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetBoneTransform \ +static_assert(alignof(ControlRigComponent_SetBoneTransform) == 0x000010, "Wrong alignment on ControlRigComponent_SetBoneTransform"); \ +static_assert(sizeof(ControlRigComponent_SetBoneTransform) == 0x000080, "Wrong size on ControlRigComponent_SetBoneTransform"); \ +static_assert(offsetof(ControlRigComponent_SetBoneTransform, BoneName) == 0x000000, "Member 'ControlRigComponent_SetBoneTransform::BoneName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetBoneTransform, Transform) == 0x000010, "Member 'ControlRigComponent_SetBoneTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetBoneTransform, Space) == 0x000070, "Member 'ControlRigComponent_SetBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetBoneTransform, Weight) == 0x000074, "Member 'ControlRigComponent_SetBoneTransform::Weight' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetBoneTransform, bPropagateToChildren) == 0x000078, "Member 'ControlRigComponent_SetBoneTransform::bPropagateToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlBool \ +static_assert(alignof(ControlRigComponent_SetControlBool) == 0x000004, "Wrong alignment on ControlRigComponent_SetControlBool"); \ +static_assert(sizeof(ControlRigComponent_SetControlBool) == 0x00000C, "Wrong size on ControlRigComponent_SetControlBool"); \ +static_assert(offsetof(ControlRigComponent_SetControlBool, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlBool::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlBool, Value) == 0x000008, "Member 'ControlRigComponent_SetControlBool::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlFloat \ +static_assert(alignof(ControlRigComponent_SetControlFloat) == 0x000004, "Wrong alignment on ControlRigComponent_SetControlFloat"); \ +static_assert(sizeof(ControlRigComponent_SetControlFloat) == 0x00000C, "Wrong size on ControlRigComponent_SetControlFloat"); \ +static_assert(offsetof(ControlRigComponent_SetControlFloat, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlFloat::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlFloat, Value) == 0x000008, "Member 'ControlRigComponent_SetControlFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlInt \ +static_assert(alignof(ControlRigComponent_SetControlInt) == 0x000004, "Wrong alignment on ControlRigComponent_SetControlInt"); \ +static_assert(sizeof(ControlRigComponent_SetControlInt) == 0x00000C, "Wrong size on ControlRigComponent_SetControlInt"); \ +static_assert(offsetof(ControlRigComponent_SetControlInt, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlInt::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlInt, Value) == 0x000008, "Member 'ControlRigComponent_SetControlInt::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlOffset \ +static_assert(alignof(ControlRigComponent_SetControlOffset) == 0x000010, "Wrong alignment on ControlRigComponent_SetControlOffset"); \ +static_assert(sizeof(ControlRigComponent_SetControlOffset) == 0x000080, "Wrong size on ControlRigComponent_SetControlOffset"); \ +static_assert(offsetof(ControlRigComponent_SetControlOffset, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlOffset::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlOffset, OffsetTransform) == 0x000010, "Member 'ControlRigComponent_SetControlOffset::OffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlOffset, Space) == 0x000070, "Member 'ControlRigComponent_SetControlOffset::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlPosition \ +static_assert(alignof(ControlRigComponent_SetControlPosition) == 0x000008, "Wrong alignment on ControlRigComponent_SetControlPosition"); \ +static_assert(sizeof(ControlRigComponent_SetControlPosition) == 0x000028, "Wrong size on ControlRigComponent_SetControlPosition"); \ +static_assert(offsetof(ControlRigComponent_SetControlPosition, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlPosition::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlPosition, Value) == 0x000008, "Member 'ControlRigComponent_SetControlPosition::Value' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlPosition, Space) == 0x000020, "Member 'ControlRigComponent_SetControlPosition::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlRigClass \ +static_assert(alignof(ControlRigComponent_SetControlRigClass) == 0x000008, "Wrong alignment on ControlRigComponent_SetControlRigClass"); \ +static_assert(sizeof(ControlRigComponent_SetControlRigClass) == 0x000008, "Wrong size on ControlRigComponent_SetControlRigClass"); \ +static_assert(offsetof(ControlRigComponent_SetControlRigClass, InControlRigClass) == 0x000000, "Member 'ControlRigComponent_SetControlRigClass::InControlRigClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlRotator \ +static_assert(alignof(ControlRigComponent_SetControlRotator) == 0x000008, "Wrong alignment on ControlRigComponent_SetControlRotator"); \ +static_assert(sizeof(ControlRigComponent_SetControlRotator) == 0x000028, "Wrong size on ControlRigComponent_SetControlRotator"); \ +static_assert(offsetof(ControlRigComponent_SetControlRotator, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlRotator::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlRotator, Value) == 0x000008, "Member 'ControlRigComponent_SetControlRotator::Value' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlRotator, Space) == 0x000020, "Member 'ControlRigComponent_SetControlRotator::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlScale \ +static_assert(alignof(ControlRigComponent_SetControlScale) == 0x000008, "Wrong alignment on ControlRigComponent_SetControlScale"); \ +static_assert(sizeof(ControlRigComponent_SetControlScale) == 0x000028, "Wrong size on ControlRigComponent_SetControlScale"); \ +static_assert(offsetof(ControlRigComponent_SetControlScale, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlScale::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlScale, Value) == 0x000008, "Member 'ControlRigComponent_SetControlScale::Value' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlScale, Space) == 0x000020, "Member 'ControlRigComponent_SetControlScale::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlTransform \ +static_assert(alignof(ControlRigComponent_SetControlTransform) == 0x000010, "Wrong alignment on ControlRigComponent_SetControlTransform"); \ +static_assert(sizeof(ControlRigComponent_SetControlTransform) == 0x000080, "Wrong size on ControlRigComponent_SetControlTransform"); \ +static_assert(offsetof(ControlRigComponent_SetControlTransform, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlTransform::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlTransform, Value) == 0x000010, "Member 'ControlRigComponent_SetControlTransform::Value' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlTransform, Space) == 0x000070, "Member 'ControlRigComponent_SetControlTransform::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetControlVector2D \ +static_assert(alignof(ControlRigComponent_SetControlVector2D) == 0x000008, "Wrong alignment on ControlRigComponent_SetControlVector2D"); \ +static_assert(sizeof(ControlRigComponent_SetControlVector2D) == 0x000018, "Wrong size on ControlRigComponent_SetControlVector2D"); \ +static_assert(offsetof(ControlRigComponent_SetControlVector2D, ControlName) == 0x000000, "Member 'ControlRigComponent_SetControlVector2D::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetControlVector2D, Value) == 0x000008, "Member 'ControlRigComponent_SetControlVector2D::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetInitialBoneTransform \ +static_assert(alignof(ControlRigComponent_SetInitialBoneTransform) == 0x000010, "Wrong alignment on ControlRigComponent_SetInitialBoneTransform"); \ +static_assert(sizeof(ControlRigComponent_SetInitialBoneTransform) == 0x000080, "Wrong size on ControlRigComponent_SetInitialBoneTransform"); \ +static_assert(offsetof(ControlRigComponent_SetInitialBoneTransform, BoneName) == 0x000000, "Member 'ControlRigComponent_SetInitialBoneTransform::BoneName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetInitialBoneTransform, InitialTransform) == 0x000010, "Member 'ControlRigComponent_SetInitialBoneTransform::InitialTransform' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetInitialBoneTransform, Space) == 0x000070, "Member 'ControlRigComponent_SetInitialBoneTransform::Space' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetInitialBoneTransform, bPropagateToChildren) == 0x000071, "Member 'ControlRigComponent_SetInitialBoneTransform::bPropagateToChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetInitialSpaceTransform \ +static_assert(alignof(ControlRigComponent_SetInitialSpaceTransform) == 0x000010, "Wrong alignment on ControlRigComponent_SetInitialSpaceTransform"); \ +static_assert(sizeof(ControlRigComponent_SetInitialSpaceTransform) == 0x000080, "Wrong size on ControlRigComponent_SetInitialSpaceTransform"); \ +static_assert(offsetof(ControlRigComponent_SetInitialSpaceTransform, SpaceName) == 0x000000, "Member 'ControlRigComponent_SetInitialSpaceTransform::SpaceName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetInitialSpaceTransform, InitialTransform) == 0x000010, "Member 'ControlRigComponent_SetInitialSpaceTransform::InitialTransform' has a wrong offset!"); \ +static_assert(offsetof(ControlRigComponent_SetInitialSpaceTransform, Space) == 0x000070, "Member 'ControlRigComponent_SetInitialSpaceTransform::Space' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetMappedElements \ +static_assert(alignof(ControlRigComponent_SetMappedElements) == 0x000008, "Wrong alignment on ControlRigComponent_SetMappedElements"); \ +static_assert(sizeof(ControlRigComponent_SetMappedElements) == 0x000010, "Wrong size on ControlRigComponent_SetMappedElements"); \ +static_assert(offsetof(ControlRigComponent_SetMappedElements, NewMappedElements) == 0x000000, "Member 'ControlRigComponent_SetMappedElements::NewMappedElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_SetObjectBinding \ +static_assert(alignof(ControlRigComponent_SetObjectBinding) == 0x000008, "Wrong alignment on ControlRigComponent_SetObjectBinding"); \ +static_assert(sizeof(ControlRigComponent_SetObjectBinding) == 0x000008, "Wrong size on ControlRigComponent_SetObjectBinding"); \ +static_assert(offsetof(ControlRigComponent_SetObjectBinding, InObjectToBind) == 0x000000, "Member 'ControlRigComponent_SetObjectBinding::InObjectToBind' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_Update \ +static_assert(alignof(ControlRigComponent_Update) == 0x000004, "Wrong alignment on ControlRigComponent_Update"); \ +static_assert(sizeof(ControlRigComponent_Update) == 0x000004, "Wrong size on ControlRigComponent_Update"); \ +static_assert(offsetof(ControlRigComponent_Update, DeltaTime) == 0x000000, "Member 'ControlRigComponent_Update::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigComponent_GetAbsoluteTime \ +static_assert(alignof(ControlRigComponent_GetAbsoluteTime) == 0x000004, "Wrong alignment on ControlRigComponent_GetAbsoluteTime"); \ +static_assert(sizeof(ControlRigComponent_GetAbsoluteTime) == 0x000004, "Wrong size on ControlRigComponent_GetAbsoluteTime"); \ +static_assert(offsetof(ControlRigComponent_GetAbsoluteTime, ReturnValue) == 0x000000, "Member 'ControlRigComponent_GetAbsoluteTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigComponent \ +static_assert(alignof(UControlRigComponent) == 0x000010, "Wrong alignment on UControlRigComponent"); \ +static_assert(sizeof(UControlRigComponent) == 0x0006D0, "Wrong size on UControlRigComponent"); \ +static_assert(offsetof(UControlRigComponent, ControlRigClass) == 0x000570, "Member 'UControlRigComponent::ControlRigClass' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPreInitializeDelegate) == 0x000578, "Member 'UControlRigComponent::OnPreInitializeDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPostInitializeDelegate) == 0x000588, "Member 'UControlRigComponent::OnPostInitializeDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPreConstructionDelegate) == 0x000598, "Member 'UControlRigComponent::OnPreConstructionDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPostConstructionDelegate) == 0x0005A8, "Member 'UControlRigComponent::OnPostConstructionDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPreForwardsSolveDelegate) == 0x0005B8, "Member 'UControlRigComponent::OnPreForwardsSolveDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, OnPostForwardsSolveDelegate) == 0x0005C8, "Member 'UControlRigComponent::OnPostForwardsSolveDelegate' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, UserDefinedElements) == 0x0005D8, "Member 'UControlRigComponent::UserDefinedElements' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, MappedElements) == 0x0005E8, "Member 'UControlRigComponent::MappedElements' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bEnableLazyEvaluation) == 0x0005F8, "Member 'UControlRigComponent::bEnableLazyEvaluation' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, LazyEvaluationPositionThreshold) == 0x0005FC, "Member 'UControlRigComponent::LazyEvaluationPositionThreshold' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, LazyEvaluationRotationThreshold) == 0x000600, "Member 'UControlRigComponent::LazyEvaluationRotationThreshold' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, LazyEvaluationScaleThreshold) == 0x000604, "Member 'UControlRigComponent::LazyEvaluationScaleThreshold' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bResetTransformBeforeTick) == 0x000608, "Member 'UControlRigComponent::bResetTransformBeforeTick' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bResetInitialsBeforeConstruction) == 0x000609, "Member 'UControlRigComponent::bResetInitialsBeforeConstruction' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bUpdateRigOnTick) == 0x00060A, "Member 'UControlRigComponent::bUpdateRigOnTick' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bUpdateInEditor) == 0x00060B, "Member 'UControlRigComponent::bUpdateInEditor' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bDrawBones) == 0x00060C, "Member 'UControlRigComponent::bDrawBones' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, bShowDebugDrawing) == 0x00060D, "Member 'UControlRigComponent::bShowDebugDrawing' has a wrong offset!"); \ +static_assert(offsetof(UControlRigComponent, ControlRig) == 0x000610, "Member 'UControlRigComponent::ControlRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AControlRigControlActor \ +static_assert(alignof(AControlRigControlActor) == 0x000008, "Wrong alignment on AControlRigControlActor"); \ +static_assert(sizeof(AControlRigControlActor) == 0x000348, "Wrong size on AControlRigControlActor"); \ +static_assert(offsetof(AControlRigControlActor, ActorToTrack) == 0x000298, "Member 'AControlRigControlActor::ActorToTrack' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ControlRigClass) == 0x0002A0, "Member 'AControlRigControlActor::ControlRigClass' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, bRefreshOnTick) == 0x0002A8, "Member 'AControlRigControlActor::bRefreshOnTick' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, bIsSelectable) == 0x0002A9, "Member 'AControlRigControlActor::bIsSelectable' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, MaterialOverride) == 0x0002B0, "Member 'AControlRigControlActor::MaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ColorParameter) == 0x0002B8, "Member 'AControlRigControlActor::ColorParameter' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, bCastShadows) == 0x0002C8, "Member 'AControlRigControlActor::bCastShadows' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ActorRootComponent) == 0x0002D0, "Member 'AControlRigControlActor::ActorRootComponent' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ControlRig) == 0x0002D8, "Member 'AControlRigControlActor::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ControlNames) == 0x000300, "Member 'AControlRigControlActor::ControlNames' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ShapeTransforms) == 0x000310, "Member 'AControlRigControlActor::ShapeTransforms' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, Components) == 0x000320, "Member 'AControlRigControlActor::Components' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, Materials) == 0x000330, "Member 'AControlRigControlActor::Materials' has a wrong offset!"); \ +static_assert(offsetof(AControlRigControlActor, ColorParameterName) == 0x000340, "Member 'AControlRigControlActor::ColorParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_OnEnabledChanged \ +static_assert(alignof(ControlRigShapeActor_OnEnabledChanged) == 0x000001, "Wrong alignment on ControlRigShapeActor_OnEnabledChanged"); \ +static_assert(sizeof(ControlRigShapeActor_OnEnabledChanged) == 0x000001, "Wrong size on ControlRigShapeActor_OnEnabledChanged"); \ +static_assert(offsetof(ControlRigShapeActor_OnEnabledChanged, bIsEnabled) == 0x000000, "Member 'ControlRigShapeActor_OnEnabledChanged::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_OnHoveredChanged \ +static_assert(alignof(ControlRigShapeActor_OnHoveredChanged) == 0x000001, "Wrong alignment on ControlRigShapeActor_OnHoveredChanged"); \ +static_assert(sizeof(ControlRigShapeActor_OnHoveredChanged) == 0x000001, "Wrong size on ControlRigShapeActor_OnHoveredChanged"); \ +static_assert(offsetof(ControlRigShapeActor_OnHoveredChanged, bIsSelected) == 0x000000, "Member 'ControlRigShapeActor_OnHoveredChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_OnManipulatingChanged \ +static_assert(alignof(ControlRigShapeActor_OnManipulatingChanged) == 0x000001, "Wrong alignment on ControlRigShapeActor_OnManipulatingChanged"); \ +static_assert(sizeof(ControlRigShapeActor_OnManipulatingChanged) == 0x000001, "Wrong size on ControlRigShapeActor_OnManipulatingChanged"); \ +static_assert(offsetof(ControlRigShapeActor_OnManipulatingChanged, bIsManipulating) == 0x000000, "Member 'ControlRigShapeActor_OnManipulatingChanged::bIsManipulating' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_OnSelectionChanged \ +static_assert(alignof(ControlRigShapeActor_OnSelectionChanged) == 0x000001, "Wrong alignment on ControlRigShapeActor_OnSelectionChanged"); \ +static_assert(sizeof(ControlRigShapeActor_OnSelectionChanged) == 0x000001, "Wrong size on ControlRigShapeActor_OnSelectionChanged"); \ +static_assert(offsetof(ControlRigShapeActor_OnSelectionChanged, bIsSelected) == 0x000000, "Member 'ControlRigShapeActor_OnSelectionChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_OnTransformChanged \ +static_assert(alignof(ControlRigShapeActor_OnTransformChanged) == 0x000010, "Wrong alignment on ControlRigShapeActor_OnTransformChanged"); \ +static_assert(sizeof(ControlRigShapeActor_OnTransformChanged) == 0x000060, "Wrong size on ControlRigShapeActor_OnTransformChanged"); \ +static_assert(offsetof(ControlRigShapeActor_OnTransformChanged, NewTransform) == 0x000000, "Member 'ControlRigShapeActor_OnTransformChanged::NewTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_SetEnabled \ +static_assert(alignof(ControlRigShapeActor_SetEnabled) == 0x000001, "Wrong alignment on ControlRigShapeActor_SetEnabled"); \ +static_assert(sizeof(ControlRigShapeActor_SetEnabled) == 0x000001, "Wrong size on ControlRigShapeActor_SetEnabled"); \ +static_assert(offsetof(ControlRigShapeActor_SetEnabled, bInEnabled) == 0x000000, "Member 'ControlRigShapeActor_SetEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_SetGlobalTransform \ +static_assert(alignof(ControlRigShapeActor_SetGlobalTransform) == 0x000010, "Wrong alignment on ControlRigShapeActor_SetGlobalTransform"); \ +static_assert(sizeof(ControlRigShapeActor_SetGlobalTransform) == 0x000060, "Wrong size on ControlRigShapeActor_SetGlobalTransform"); \ +static_assert(offsetof(ControlRigShapeActor_SetGlobalTransform, InTransform) == 0x000000, "Member 'ControlRigShapeActor_SetGlobalTransform::InTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_SetHovered \ +static_assert(alignof(ControlRigShapeActor_SetHovered) == 0x000001, "Wrong alignment on ControlRigShapeActor_SetHovered"); \ +static_assert(sizeof(ControlRigShapeActor_SetHovered) == 0x000001, "Wrong size on ControlRigShapeActor_SetHovered"); \ +static_assert(offsetof(ControlRigShapeActor_SetHovered, bInHovered) == 0x000000, "Member 'ControlRigShapeActor_SetHovered::bInHovered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_SetSelectable \ +static_assert(alignof(ControlRigShapeActor_SetSelectable) == 0x000001, "Wrong alignment on ControlRigShapeActor_SetSelectable"); \ +static_assert(sizeof(ControlRigShapeActor_SetSelectable) == 0x000001, "Wrong size on ControlRigShapeActor_SetSelectable"); \ +static_assert(offsetof(ControlRigShapeActor_SetSelectable, bInSelectable) == 0x000000, "Member 'ControlRigShapeActor_SetSelectable::bInSelectable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_SetSelected \ +static_assert(alignof(ControlRigShapeActor_SetSelected) == 0x000001, "Wrong alignment on ControlRigShapeActor_SetSelected"); \ +static_assert(sizeof(ControlRigShapeActor_SetSelected) == 0x000001, "Wrong size on ControlRigShapeActor_SetSelected"); \ +static_assert(offsetof(ControlRigShapeActor_SetSelected, bInSelected) == 0x000000, "Member 'ControlRigShapeActor_SetSelected::bInSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_GetGlobalTransform \ +static_assert(alignof(ControlRigShapeActor_GetGlobalTransform) == 0x000010, "Wrong alignment on ControlRigShapeActor_GetGlobalTransform"); \ +static_assert(sizeof(ControlRigShapeActor_GetGlobalTransform) == 0x000060, "Wrong size on ControlRigShapeActor_GetGlobalTransform"); \ +static_assert(offsetof(ControlRigShapeActor_GetGlobalTransform, ReturnValue) == 0x000000, "Member 'ControlRigShapeActor_GetGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_IsEnabled \ +static_assert(alignof(ControlRigShapeActor_IsEnabled) == 0x000001, "Wrong alignment on ControlRigShapeActor_IsEnabled"); \ +static_assert(sizeof(ControlRigShapeActor_IsEnabled) == 0x000001, "Wrong size on ControlRigShapeActor_IsEnabled"); \ +static_assert(offsetof(ControlRigShapeActor_IsEnabled, ReturnValue) == 0x000000, "Member 'ControlRigShapeActor_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_IsHovered \ +static_assert(alignof(ControlRigShapeActor_IsHovered) == 0x000001, "Wrong alignment on ControlRigShapeActor_IsHovered"); \ +static_assert(sizeof(ControlRigShapeActor_IsHovered) == 0x000001, "Wrong size on ControlRigShapeActor_IsHovered"); \ +static_assert(offsetof(ControlRigShapeActor_IsHovered, ReturnValue) == 0x000000, "Member 'ControlRigShapeActor_IsHovered::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigShapeActor_IsSelectedInEditor \ +static_assert(alignof(ControlRigShapeActor_IsSelectedInEditor) == 0x000001, "Wrong alignment on ControlRigShapeActor_IsSelectedInEditor"); \ +static_assert(sizeof(ControlRigShapeActor_IsSelectedInEditor) == 0x000001, "Wrong size on ControlRigShapeActor_IsSelectedInEditor"); \ +static_assert(offsetof(ControlRigShapeActor_IsSelectedInEditor, ReturnValue) == 0x000000, "Member 'ControlRigShapeActor_IsSelectedInEditor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AControlRigShapeActor \ +static_assert(alignof(AControlRigShapeActor) == 0x000008, "Wrong alignment on AControlRigShapeActor"); \ +static_assert(sizeof(AControlRigShapeActor) == 0x0002E0, "Wrong size on AControlRigShapeActor"); \ +static_assert(offsetof(AControlRigShapeActor, ActorRootComponent) == 0x000298, "Member 'AControlRigShapeActor::ActorRootComponent' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, StaticMeshComponent) == 0x0002A0, "Member 'AControlRigShapeActor::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, ControlRigIndex) == 0x0002A8, "Member 'AControlRigShapeActor::ControlRigIndex' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, ControlRig) == 0x0002AC, "Member 'AControlRigShapeActor::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, ControlName) == 0x0002B4, "Member 'AControlRigShapeActor::ControlName' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, ShapeName) == 0x0002BC, "Member 'AControlRigShapeActor::ShapeName' has a wrong offset!"); \ +static_assert(offsetof(AControlRigShapeActor, ColorParameterName) == 0x0002C4, "Member 'AControlRigShapeActor::ColorParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigShapeLibrary \ +static_assert(alignof(UControlRigShapeLibrary) == 0x000010, "Wrong alignment on UControlRigShapeLibrary"); \ +static_assert(sizeof(UControlRigShapeLibrary) == 0x000150, "Wrong size on UControlRigShapeLibrary"); \ +static_assert(offsetof(UControlRigShapeLibrary, DefaultShape) == 0x000030, "Member 'UControlRigShapeLibrary::DefaultShape' has a wrong offset!"); \ +static_assert(offsetof(UControlRigShapeLibrary, DefaultMaterial) == 0x0000D0, "Member 'UControlRigShapeLibrary::DefaultMaterial' has a wrong offset!"); \ +static_assert(offsetof(UControlRigShapeLibrary, XRayMaterial) == 0x0000F8, "Member 'UControlRigShapeLibrary::XRayMaterial' has a wrong offset!"); \ +static_assert(offsetof(UControlRigShapeLibrary, MaterialColorParameter) == 0x000120, "Member 'UControlRigShapeLibrary::MaterialColorParameter' has a wrong offset!"); \ +static_assert(offsetof(UControlRigShapeLibrary, Shapes) == 0x000128, "Member 'UControlRigShapeLibrary::Shapes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_CreateNewAsset \ +static_assert(alignof(ControlRigTestData_CreateNewAsset) == 0x000008, "Wrong alignment on ControlRigTestData_CreateNewAsset"); \ +static_assert(sizeof(ControlRigTestData_CreateNewAsset) == 0x000028, "Wrong size on ControlRigTestData_CreateNewAsset"); \ +static_assert(offsetof(ControlRigTestData_CreateNewAsset, InDesiredPackagePath) == 0x000000, "Member 'ControlRigTestData_CreateNewAsset::InDesiredPackagePath' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_CreateNewAsset, InBlueprintPathName) == 0x000010, "Member 'ControlRigTestData_CreateNewAsset::InBlueprintPathName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_CreateNewAsset, ReturnValue) == 0x000020, "Member 'ControlRigTestData_CreateNewAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_Record \ +static_assert(alignof(ControlRigTestData_Record) == 0x000008, "Wrong alignment on ControlRigTestData_Record"); \ +static_assert(sizeof(ControlRigTestData_Record) == 0x000018, "Wrong size on ControlRigTestData_Record"); \ +static_assert(offsetof(ControlRigTestData_Record, InControlRig) == 0x000000, "Member 'ControlRigTestData_Record::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_Record, InRecordingDuration) == 0x000008, "Member 'ControlRigTestData_Record::InRecordingDuration' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_Record, ReturnValue) == 0x000010, "Member 'ControlRigTestData_Record::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_SetupReplay \ +static_assert(alignof(ControlRigTestData_SetupReplay) == 0x000008, "Wrong alignment on ControlRigTestData_SetupReplay"); \ +static_assert(sizeof(ControlRigTestData_SetupReplay) == 0x000010, "Wrong size on ControlRigTestData_SetupReplay"); \ +static_assert(offsetof(ControlRigTestData_SetupReplay, InControlRig) == 0x000000, "Member 'ControlRigTestData_SetupReplay::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_SetupReplay, bGroundTruth) == 0x000008, "Member 'ControlRigTestData_SetupReplay::bGroundTruth' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_SetupReplay, ReturnValue) == 0x000009, "Member 'ControlRigTestData_SetupReplay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_GetFrameIndexForTime \ +static_assert(alignof(ControlRigTestData_GetFrameIndexForTime) == 0x000008, "Wrong alignment on ControlRigTestData_GetFrameIndexForTime"); \ +static_assert(sizeof(ControlRigTestData_GetFrameIndexForTime) == 0x000010, "Wrong size on ControlRigTestData_GetFrameIndexForTime"); \ +static_assert(offsetof(ControlRigTestData_GetFrameIndexForTime, InSeconds) == 0x000000, "Member 'ControlRigTestData_GetFrameIndexForTime::InSeconds' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_GetFrameIndexForTime, bInput) == 0x000008, "Member 'ControlRigTestData_GetFrameIndexForTime::bInput' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_GetFrameIndexForTime, ReturnValue) == 0x00000C, "Member 'ControlRigTestData_GetFrameIndexForTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_GetPlaybackMode \ +static_assert(alignof(ControlRigTestData_GetPlaybackMode) == 0x000001, "Wrong alignment on ControlRigTestData_GetPlaybackMode"); \ +static_assert(sizeof(ControlRigTestData_GetPlaybackMode) == 0x000001, "Wrong size on ControlRigTestData_GetPlaybackMode"); \ +static_assert(offsetof(ControlRigTestData_GetPlaybackMode, ReturnValue) == 0x000000, "Member 'ControlRigTestData_GetPlaybackMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_GetTimeRange \ +static_assert(alignof(ControlRigTestData_GetTimeRange) == 0x000008, "Wrong alignment on ControlRigTestData_GetTimeRange"); \ +static_assert(sizeof(ControlRigTestData_GetTimeRange) == 0x000018, "Wrong size on ControlRigTestData_GetTimeRange"); \ +static_assert(offsetof(ControlRigTestData_GetTimeRange, bInput) == 0x000000, "Member 'ControlRigTestData_GetTimeRange::bInput' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTestData_GetTimeRange, ReturnValue) == 0x000008, "Member 'ControlRigTestData_GetTimeRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_IsRecording \ +static_assert(alignof(ControlRigTestData_IsRecording) == 0x000001, "Wrong alignment on ControlRigTestData_IsRecording"); \ +static_assert(sizeof(ControlRigTestData_IsRecording) == 0x000001, "Wrong size on ControlRigTestData_IsRecording"); \ +static_assert(offsetof(ControlRigTestData_IsRecording, ReturnValue) == 0x000000, "Member 'ControlRigTestData_IsRecording::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTestData_IsReplaying \ +static_assert(alignof(ControlRigTestData_IsReplaying) == 0x000001, "Wrong alignment on ControlRigTestData_IsReplaying"); \ +static_assert(sizeof(ControlRigTestData_IsReplaying) == 0x000001, "Wrong size on ControlRigTestData_IsReplaying"); \ +static_assert(offsetof(ControlRigTestData_IsReplaying, ReturnValue) == 0x000000, "Member 'ControlRigTestData_IsReplaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigTestData \ +static_assert(alignof(UControlRigTestData) == 0x000008, "Wrong alignment on UControlRigTestData"); \ +static_assert(sizeof(UControlRigTestData) == 0x000150, "Wrong size on UControlRigTestData"); \ +static_assert(offsetof(UControlRigTestData, ControlRigObjectPath) == 0x000028, "Member 'UControlRigTestData::ControlRigObjectPath' has a wrong offset!"); \ +static_assert(offsetof(UControlRigTestData, Initial) == 0x000048, "Member 'UControlRigTestData::Initial' has a wrong offset!"); \ +static_assert(offsetof(UControlRigTestData, InputFrames) == 0x0000D8, "Member 'UControlRigTestData::InputFrames' has a wrong offset!"); \ +static_assert(offsetof(UControlRigTestData, OutputFrames) == 0x0000E8, "Member 'UControlRigTestData::OutputFrames' has a wrong offset!"); \ +static_assert(offsetof(UControlRigTestData, FramesToSkip) == 0x0000F8, "Member 'UControlRigTestData::FramesToSkip' has a wrong offset!"); \ +static_assert(offsetof(UControlRigTestData, Tolerance) == 0x000108, "Member 'UControlRigTestData::Tolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigValidator \ +static_assert(alignof(UControlRigValidator) == 0x000008, "Wrong alignment on UControlRigValidator"); \ +static_assert(sizeof(UControlRigValidator) == 0x000068, "Wrong size on UControlRigValidator"); \ +static_assert(offsetof(UControlRigValidator, Passes) == 0x000028, "Member 'UControlRigValidator::Passes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigValidationPass \ +static_assert(alignof(UControlRigValidationPass) == 0x000008, "Wrong alignment on UControlRigValidationPass"); \ +static_assert(sizeof(UControlRigValidationPass) == 0x000028, "Wrong size on UControlRigValidationPass"); \ + +#define DUMPER7_ASSERTS_UAdditiveControlRig \ +static_assert(alignof(UAdditiveControlRig) == 0x000008, "Wrong alignment on UAdditiveControlRig"); \ +static_assert(sizeof(UAdditiveControlRig) == 0x000620, "Wrong size on UAdditiveControlRig"); \ + +#define DUMPER7_ASSERTS_UFKControlRig \ +static_assert(alignof(UFKControlRig) == 0x000008, "Wrong alignment on UFKControlRig"); \ +static_assert(sizeof(UFKControlRig) == 0x000650, "Wrong size on UFKControlRig"); \ +static_assert(offsetof(UFKControlRig, IsControlActive) == 0x000610, "Member 'UFKControlRig::IsControlActive' has a wrong offset!"); \ +static_assert(offsetof(UFKControlRig, ApplyMode) == 0x000620, "Member 'UFKControlRig::ApplyMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddAnimationChannel_ForBlueprint \ +static_assert(alignof(RigHierarchyController_AddAnimationChannel_ForBlueprint) == 0x000008, "Wrong alignment on RigHierarchyController_AddAnimationChannel_ForBlueprint"); \ +static_assert(sizeof(RigHierarchyController_AddAnimationChannel_ForBlueprint) == 0x0001E0, "Wrong size on RigHierarchyController_AddAnimationChannel_ForBlueprint"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, InName) == 0x000000, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, InParentControl) == 0x000008, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::InParentControl' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, InSettings) == 0x000018, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, bSetupUndo) == 0x0001D0, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, bPrintPythonCommand) == 0x0001D1, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddAnimationChannel_ForBlueprint, ReturnValue) == 0x0001D4, "Member 'RigHierarchyController_AddAnimationChannel_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddBone \ +static_assert(alignof(RigHierarchyController_AddBone) == 0x000010, "Wrong alignment on RigHierarchyController_AddBone"); \ +static_assert(sizeof(RigHierarchyController_AddBone) == 0x000090, "Wrong size on RigHierarchyController_AddBone"); \ +static_assert(offsetof(RigHierarchyController_AddBone, InName) == 0x000000, "Member 'RigHierarchyController_AddBone::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, InParent) == 0x000008, "Member 'RigHierarchyController_AddBone::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, InTransform) == 0x000020, "Member 'RigHierarchyController_AddBone::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, bTransformInGlobal) == 0x000080, "Member 'RigHierarchyController_AddBone::bTransformInGlobal' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, InBoneType) == 0x000081, "Member 'RigHierarchyController_AddBone::InBoneType' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, bSetupUndo) == 0x000082, "Member 'RigHierarchyController_AddBone::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, bPrintPythonCommand) == 0x000083, "Member 'RigHierarchyController_AddBone::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddBone, ReturnValue) == 0x000084, "Member 'RigHierarchyController_AddBone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddControl_ForBlueprint \ +static_assert(alignof(RigHierarchyController_AddControl_ForBlueprint) == 0x000008, "Wrong alignment on RigHierarchyController_AddControl_ForBlueprint"); \ +static_assert(sizeof(RigHierarchyController_AddControl_ForBlueprint) == 0x000268, "Wrong size on RigHierarchyController_AddControl_ForBlueprint"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, InName) == 0x000000, "Member 'RigHierarchyController_AddControl_ForBlueprint::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, InParent) == 0x000008, "Member 'RigHierarchyController_AddControl_ForBlueprint::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, InSettings) == 0x000018, "Member 'RigHierarchyController_AddControl_ForBlueprint::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, InValue) == 0x0001D0, "Member 'RigHierarchyController_AddControl_ForBlueprint::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, bSetupUndo) == 0x000254, "Member 'RigHierarchyController_AddControl_ForBlueprint::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, bPrintPythonCommand) == 0x000255, "Member 'RigHierarchyController_AddControl_ForBlueprint::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddControl_ForBlueprint, ReturnValue) == 0x000258, "Member 'RigHierarchyController_AddControl_ForBlueprint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddCurve \ +static_assert(alignof(RigHierarchyController_AddCurve) == 0x000004, "Wrong alignment on RigHierarchyController_AddCurve"); \ +static_assert(sizeof(RigHierarchyController_AddCurve) == 0x00001C, "Wrong size on RigHierarchyController_AddCurve"); \ +static_assert(offsetof(RigHierarchyController_AddCurve, InName) == 0x000000, "Member 'RigHierarchyController_AddCurve::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddCurve, InValue) == 0x000008, "Member 'RigHierarchyController_AddCurve::InValue' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddCurve, bSetupUndo) == 0x00000C, "Member 'RigHierarchyController_AddCurve::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddCurve, bPrintPythonCommand) == 0x00000D, "Member 'RigHierarchyController_AddCurve::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddCurve, ReturnValue) == 0x000010, "Member 'RigHierarchyController_AddCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddNull \ +static_assert(alignof(RigHierarchyController_AddNull) == 0x000010, "Wrong alignment on RigHierarchyController_AddNull"); \ +static_assert(sizeof(RigHierarchyController_AddNull) == 0x000090, "Wrong size on RigHierarchyController_AddNull"); \ +static_assert(offsetof(RigHierarchyController_AddNull, InName) == 0x000000, "Member 'RigHierarchyController_AddNull::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, InParent) == 0x000008, "Member 'RigHierarchyController_AddNull::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, InTransform) == 0x000020, "Member 'RigHierarchyController_AddNull::InTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, bTransformInGlobal) == 0x000080, "Member 'RigHierarchyController_AddNull::bTransformInGlobal' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, bSetupUndo) == 0x000081, "Member 'RigHierarchyController_AddNull::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, bPrintPythonCommand) == 0x000082, "Member 'RigHierarchyController_AddNull::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddNull, ReturnValue) == 0x000084, "Member 'RigHierarchyController_AddNull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddParent \ +static_assert(alignof(RigHierarchyController_AddParent) == 0x000004, "Wrong alignment on RigHierarchyController_AddParent"); \ +static_assert(sizeof(RigHierarchyController_AddParent) == 0x000020, "Wrong size on RigHierarchyController_AddParent"); \ +static_assert(offsetof(RigHierarchyController_AddParent, InChild) == 0x000000, "Member 'RigHierarchyController_AddParent::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddParent, InParent) == 0x00000C, "Member 'RigHierarchyController_AddParent::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddParent, InWeight) == 0x000018, "Member 'RigHierarchyController_AddParent::InWeight' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddParent, bMaintainGlobalTransform) == 0x00001C, "Member 'RigHierarchyController_AddParent::bMaintainGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddParent, bSetupUndo) == 0x00001D, "Member 'RigHierarchyController_AddParent::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddParent, ReturnValue) == 0x00001E, "Member 'RigHierarchyController_AddParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_AddRigidBody \ +static_assert(alignof(RigHierarchyController_AddRigidBody) == 0x000010, "Wrong alignment on RigHierarchyController_AddRigidBody"); \ +static_assert(sizeof(RigHierarchyController_AddRigidBody) == 0x000090, "Wrong size on RigHierarchyController_AddRigidBody"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, InName) == 0x000000, "Member 'RigHierarchyController_AddRigidBody::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, InParent) == 0x000008, "Member 'RigHierarchyController_AddRigidBody::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, InSettings) == 0x000014, "Member 'RigHierarchyController_AddRigidBody::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, InLocalTransform) == 0x000020, "Member 'RigHierarchyController_AddRigidBody::InLocalTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, bSetupUndo) == 0x000080, "Member 'RigHierarchyController_AddRigidBody::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, bPrintPythonCommand) == 0x000081, "Member 'RigHierarchyController_AddRigidBody::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_AddRigidBody, ReturnValue) == 0x000084, "Member 'RigHierarchyController_AddRigidBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ClearSelection \ +static_assert(alignof(RigHierarchyController_ClearSelection) == 0x000001, "Wrong alignment on RigHierarchyController_ClearSelection"); \ +static_assert(sizeof(RigHierarchyController_ClearSelection) == 0x000001, "Wrong size on RigHierarchyController_ClearSelection"); \ +static_assert(offsetof(RigHierarchyController_ClearSelection, ReturnValue) == 0x000000, "Member 'RigHierarchyController_ClearSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_DeselectElement \ +static_assert(alignof(RigHierarchyController_DeselectElement) == 0x000004, "Wrong alignment on RigHierarchyController_DeselectElement"); \ +static_assert(sizeof(RigHierarchyController_DeselectElement) == 0x000010, "Wrong size on RigHierarchyController_DeselectElement"); \ +static_assert(offsetof(RigHierarchyController_DeselectElement, InKey) == 0x000000, "Member 'RigHierarchyController_DeselectElement::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_DeselectElement, ReturnValue) == 0x00000C, "Member 'RigHierarchyController_DeselectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_DuplicateElements \ +static_assert(alignof(RigHierarchyController_DuplicateElements) == 0x000008, "Wrong alignment on RigHierarchyController_DuplicateElements"); \ +static_assert(sizeof(RigHierarchyController_DuplicateElements) == 0x000028, "Wrong size on RigHierarchyController_DuplicateElements"); \ +static_assert(offsetof(RigHierarchyController_DuplicateElements, InKeys) == 0x000000, "Member 'RigHierarchyController_DuplicateElements::InKeys' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_DuplicateElements, bSelectNewElements) == 0x000010, "Member 'RigHierarchyController_DuplicateElements::bSelectNewElements' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_DuplicateElements, bSetupUndo) == 0x000011, "Member 'RigHierarchyController_DuplicateElements::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_DuplicateElements, bPrintPythonCommands) == 0x000012, "Member 'RigHierarchyController_DuplicateElements::bPrintPythonCommands' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_DuplicateElements, ReturnValue) == 0x000018, "Member 'RigHierarchyController_DuplicateElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ImportBones \ +static_assert(alignof(RigHierarchyController_ImportBones) == 0x000008, "Wrong alignment on RigHierarchyController_ImportBones"); \ +static_assert(sizeof(RigHierarchyController_ImportBones) == 0x000028, "Wrong size on RigHierarchyController_ImportBones"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, InSkeleton) == 0x000000, "Member 'RigHierarchyController_ImportBones::InSkeleton' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, InNameSpace) == 0x000008, "Member 'RigHierarchyController_ImportBones::InNameSpace' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, bReplaceExistingBones) == 0x000010, "Member 'RigHierarchyController_ImportBones::bReplaceExistingBones' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, bRemoveObsoleteBones) == 0x000011, "Member 'RigHierarchyController_ImportBones::bRemoveObsoleteBones' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, bSelectBones) == 0x000012, "Member 'RigHierarchyController_ImportBones::bSelectBones' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, bSetupUndo) == 0x000013, "Member 'RigHierarchyController_ImportBones::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, bPrintPythonCommand) == 0x000014, "Member 'RigHierarchyController_ImportBones::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportBones, ReturnValue) == 0x000018, "Member 'RigHierarchyController_ImportBones::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ImportCurves \ +static_assert(alignof(RigHierarchyController_ImportCurves) == 0x000008, "Wrong alignment on RigHierarchyController_ImportCurves"); \ +static_assert(sizeof(RigHierarchyController_ImportCurves) == 0x000028, "Wrong size on RigHierarchyController_ImportCurves"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, InSkeleton) == 0x000000, "Member 'RigHierarchyController_ImportCurves::InSkeleton' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, InNameSpace) == 0x000008, "Member 'RigHierarchyController_ImportCurves::InNameSpace' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, bSelectCurves) == 0x000010, "Member 'RigHierarchyController_ImportCurves::bSelectCurves' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, bSetupUndo) == 0x000011, "Member 'RigHierarchyController_ImportCurves::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, bPrintPythonCommand) == 0x000012, "Member 'RigHierarchyController_ImportCurves::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportCurves, ReturnValue) == 0x000018, "Member 'RigHierarchyController_ImportCurves::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ImportFromText \ +static_assert(alignof(RigHierarchyController_ImportFromText) == 0x000008, "Wrong alignment on RigHierarchyController_ImportFromText"); \ +static_assert(sizeof(RigHierarchyController_ImportFromText) == 0x000028, "Wrong size on RigHierarchyController_ImportFromText"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, InContent) == 0x000000, "Member 'RigHierarchyController_ImportFromText::InContent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, bReplaceExistingElements) == 0x000010, "Member 'RigHierarchyController_ImportFromText::bReplaceExistingElements' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, bSelectNewElements) == 0x000011, "Member 'RigHierarchyController_ImportFromText::bSelectNewElements' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, bSetupUndo) == 0x000012, "Member 'RigHierarchyController_ImportFromText::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, bPrintPythonCommands) == 0x000013, "Member 'RigHierarchyController_ImportFromText::bPrintPythonCommands' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ImportFromText, ReturnValue) == 0x000018, "Member 'RigHierarchyController_ImportFromText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_MirrorElements \ +static_assert(alignof(RigHierarchyController_MirrorElements) == 0x000008, "Wrong alignment on RigHierarchyController_MirrorElements"); \ +static_assert(sizeof(RigHierarchyController_MirrorElements) == 0x000050, "Wrong size on RigHierarchyController_MirrorElements"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, InKeys) == 0x000000, "Member 'RigHierarchyController_MirrorElements::InKeys' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, InSettings) == 0x000010, "Member 'RigHierarchyController_MirrorElements::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, bSelectNewElements) == 0x000038, "Member 'RigHierarchyController_MirrorElements::bSelectNewElements' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, bSetupUndo) == 0x000039, "Member 'RigHierarchyController_MirrorElements::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, bPrintPythonCommands) == 0x00003A, "Member 'RigHierarchyController_MirrorElements::bPrintPythonCommands' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_MirrorElements, ReturnValue) == 0x000040, "Member 'RigHierarchyController_MirrorElements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_RemoveAllParents \ +static_assert(alignof(RigHierarchyController_RemoveAllParents) == 0x000004, "Wrong alignment on RigHierarchyController_RemoveAllParents"); \ +static_assert(sizeof(RigHierarchyController_RemoveAllParents) == 0x000010, "Wrong size on RigHierarchyController_RemoveAllParents"); \ +static_assert(offsetof(RigHierarchyController_RemoveAllParents, InChild) == 0x000000, "Member 'RigHierarchyController_RemoveAllParents::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveAllParents, bMaintainGlobalTransform) == 0x00000C, "Member 'RigHierarchyController_RemoveAllParents::bMaintainGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveAllParents, bSetupUndo) == 0x00000D, "Member 'RigHierarchyController_RemoveAllParents::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveAllParents, bPrintPythonCommand) == 0x00000E, "Member 'RigHierarchyController_RemoveAllParents::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveAllParents, ReturnValue) == 0x00000F, "Member 'RigHierarchyController_RemoveAllParents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_RemoveElement \ +static_assert(alignof(RigHierarchyController_RemoveElement) == 0x000004, "Wrong alignment on RigHierarchyController_RemoveElement"); \ +static_assert(sizeof(RigHierarchyController_RemoveElement) == 0x000010, "Wrong size on RigHierarchyController_RemoveElement"); \ +static_assert(offsetof(RigHierarchyController_RemoveElement, InElement) == 0x000000, "Member 'RigHierarchyController_RemoveElement::InElement' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveElement, bSetupUndo) == 0x00000C, "Member 'RigHierarchyController_RemoveElement::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveElement, bPrintPythonCommand) == 0x00000D, "Member 'RigHierarchyController_RemoveElement::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveElement, ReturnValue) == 0x00000E, "Member 'RigHierarchyController_RemoveElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_RemoveParent \ +static_assert(alignof(RigHierarchyController_RemoveParent) == 0x000004, "Wrong alignment on RigHierarchyController_RemoveParent"); \ +static_assert(sizeof(RigHierarchyController_RemoveParent) == 0x00001C, "Wrong size on RigHierarchyController_RemoveParent"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, InChild) == 0x000000, "Member 'RigHierarchyController_RemoveParent::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, InParent) == 0x00000C, "Member 'RigHierarchyController_RemoveParent::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, bMaintainGlobalTransform) == 0x000018, "Member 'RigHierarchyController_RemoveParent::bMaintainGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, bSetupUndo) == 0x000019, "Member 'RigHierarchyController_RemoveParent::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, bPrintPythonCommand) == 0x00001A, "Member 'RigHierarchyController_RemoveParent::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RemoveParent, ReturnValue) == 0x00001B, "Member 'RigHierarchyController_RemoveParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_RenameElement \ +static_assert(alignof(RigHierarchyController_RenameElement) == 0x000004, "Wrong alignment on RigHierarchyController_RenameElement"); \ +static_assert(sizeof(RigHierarchyController_RenameElement) == 0x000024, "Wrong size on RigHierarchyController_RenameElement"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, InElement) == 0x000000, "Member 'RigHierarchyController_RenameElement::InElement' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, InName) == 0x00000C, "Member 'RigHierarchyController_RenameElement::InName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, bSetupUndo) == 0x000014, "Member 'RigHierarchyController_RenameElement::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, bPrintPythonCommand) == 0x000015, "Member 'RigHierarchyController_RenameElement::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, bClearSelection) == 0x000016, "Member 'RigHierarchyController_RenameElement::bClearSelection' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_RenameElement, ReturnValue) == 0x000018, "Member 'RigHierarchyController_RenameElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ReorderElement \ +static_assert(alignof(RigHierarchyController_ReorderElement) == 0x000004, "Wrong alignment on RigHierarchyController_ReorderElement"); \ +static_assert(sizeof(RigHierarchyController_ReorderElement) == 0x000014, "Wrong size on RigHierarchyController_ReorderElement"); \ +static_assert(offsetof(RigHierarchyController_ReorderElement, InElement) == 0x000000, "Member 'RigHierarchyController_ReorderElement::InElement' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ReorderElement, InIndex) == 0x00000C, "Member 'RigHierarchyController_ReorderElement::InIndex' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ReorderElement, bSetupUndo) == 0x000010, "Member 'RigHierarchyController_ReorderElement::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ReorderElement, bPrintPythonCommand) == 0x000011, "Member 'RigHierarchyController_ReorderElement::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ReorderElement, ReturnValue) == 0x000012, "Member 'RigHierarchyController_ReorderElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SelectElement \ +static_assert(alignof(RigHierarchyController_SelectElement) == 0x000004, "Wrong alignment on RigHierarchyController_SelectElement"); \ +static_assert(sizeof(RigHierarchyController_SelectElement) == 0x000010, "Wrong size on RigHierarchyController_SelectElement"); \ +static_assert(offsetof(RigHierarchyController_SelectElement, InKey) == 0x000000, "Member 'RigHierarchyController_SelectElement::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SelectElement, bSelect) == 0x00000C, "Member 'RigHierarchyController_SelectElement::bSelect' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SelectElement, bClearSelection) == 0x00000D, "Member 'RigHierarchyController_SelectElement::bClearSelection' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SelectElement, ReturnValue) == 0x00000E, "Member 'RigHierarchyController_SelectElement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SetDisplayName \ +static_assert(alignof(RigHierarchyController_SetDisplayName) == 0x000004, "Wrong alignment on RigHierarchyController_SetDisplayName"); \ +static_assert(sizeof(RigHierarchyController_SetDisplayName) == 0x000020, "Wrong size on RigHierarchyController_SetDisplayName"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, InControl) == 0x000000, "Member 'RigHierarchyController_SetDisplayName::InControl' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, InDisplayName) == 0x00000C, "Member 'RigHierarchyController_SetDisplayName::InDisplayName' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, bRenameElement) == 0x000014, "Member 'RigHierarchyController_SetDisplayName::bRenameElement' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, bSetupUndo) == 0x000015, "Member 'RigHierarchyController_SetDisplayName::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, bPrintPythonCommand) == 0x000016, "Member 'RigHierarchyController_SetDisplayName::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetDisplayName, ReturnValue) == 0x000018, "Member 'RigHierarchyController_SetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SetHierarchy \ +static_assert(alignof(RigHierarchyController_SetHierarchy) == 0x000008, "Wrong alignment on RigHierarchyController_SetHierarchy"); \ +static_assert(sizeof(RigHierarchyController_SetHierarchy) == 0x000008, "Wrong size on RigHierarchyController_SetHierarchy"); \ +static_assert(offsetof(RigHierarchyController_SetHierarchy, InHierarchy) == 0x000000, "Member 'RigHierarchyController_SetHierarchy::InHierarchy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SetParent \ +static_assert(alignof(RigHierarchyController_SetParent) == 0x000004, "Wrong alignment on RigHierarchyController_SetParent"); \ +static_assert(sizeof(RigHierarchyController_SetParent) == 0x00001C, "Wrong size on RigHierarchyController_SetParent"); \ +static_assert(offsetof(RigHierarchyController_SetParent, InChild) == 0x000000, "Member 'RigHierarchyController_SetParent::InChild' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetParent, InParent) == 0x00000C, "Member 'RigHierarchyController_SetParent::InParent' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetParent, bMaintainGlobalTransform) == 0x000018, "Member 'RigHierarchyController_SetParent::bMaintainGlobalTransform' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetParent, bSetupUndo) == 0x000019, "Member 'RigHierarchyController_SetParent::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetParent, bPrintPythonCommand) == 0x00001A, "Member 'RigHierarchyController_SetParent::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetParent, ReturnValue) == 0x00001B, "Member 'RigHierarchyController_SetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SetSelection \ +static_assert(alignof(RigHierarchyController_SetSelection) == 0x000008, "Wrong alignment on RigHierarchyController_SetSelection"); \ +static_assert(sizeof(RigHierarchyController_SetSelection) == 0x000018, "Wrong size on RigHierarchyController_SetSelection"); \ +static_assert(offsetof(RigHierarchyController_SetSelection, InKeys) == 0x000000, "Member 'RigHierarchyController_SetSelection::InKeys' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetSelection, bPrintPythonCommand) == 0x000010, "Member 'RigHierarchyController_SetSelection::bPrintPythonCommand' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetSelection, ReturnValue) == 0x000011, "Member 'RigHierarchyController_SetSelection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ExportSelectionToText \ +static_assert(alignof(RigHierarchyController_ExportSelectionToText) == 0x000008, "Wrong alignment on RigHierarchyController_ExportSelectionToText"); \ +static_assert(sizeof(RigHierarchyController_ExportSelectionToText) == 0x000010, "Wrong size on RigHierarchyController_ExportSelectionToText"); \ +static_assert(offsetof(RigHierarchyController_ExportSelectionToText, ReturnValue) == 0x000000, "Member 'RigHierarchyController_ExportSelectionToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_ExportToText \ +static_assert(alignof(RigHierarchyController_ExportToText) == 0x000008, "Wrong alignment on RigHierarchyController_ExportToText"); \ +static_assert(sizeof(RigHierarchyController_ExportToText) == 0x000020, "Wrong size on RigHierarchyController_ExportToText"); \ +static_assert(offsetof(RigHierarchyController_ExportToText, InKeys) == 0x000000, "Member 'RigHierarchyController_ExportToText::InKeys' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_ExportToText, ReturnValue) == 0x000010, "Member 'RigHierarchyController_ExportToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_GetControlSettings \ +static_assert(alignof(RigHierarchyController_GetControlSettings) == 0x000008, "Wrong alignment on RigHierarchyController_GetControlSettings"); \ +static_assert(sizeof(RigHierarchyController_GetControlSettings) == 0x0001C8, "Wrong size on RigHierarchyController_GetControlSettings"); \ +static_assert(offsetof(RigHierarchyController_GetControlSettings, InKey) == 0x000000, "Member 'RigHierarchyController_GetControlSettings::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_GetControlSettings, ReturnValue) == 0x000010, "Member 'RigHierarchyController_GetControlSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_GetHierarchy \ +static_assert(alignof(RigHierarchyController_GetHierarchy) == 0x000008, "Wrong alignment on RigHierarchyController_GetHierarchy"); \ +static_assert(sizeof(RigHierarchyController_GetHierarchy) == 0x000008, "Wrong size on RigHierarchyController_GetHierarchy"); \ +static_assert(offsetof(RigHierarchyController_GetHierarchy, ReturnValue) == 0x000000, "Member 'RigHierarchyController_GetHierarchy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RigHierarchyController_SetControlSettings \ +static_assert(alignof(RigHierarchyController_SetControlSettings) == 0x000008, "Wrong alignment on RigHierarchyController_SetControlSettings"); \ +static_assert(sizeof(RigHierarchyController_SetControlSettings) == 0x0001D0, "Wrong size on RigHierarchyController_SetControlSettings"); \ +static_assert(offsetof(RigHierarchyController_SetControlSettings, InKey) == 0x000000, "Member 'RigHierarchyController_SetControlSettings::InKey' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetControlSettings, InSettings) == 0x000010, "Member 'RigHierarchyController_SetControlSettings::InSettings' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetControlSettings, bSetupUndo) == 0x0001C8, "Member 'RigHierarchyController_SetControlSettings::bSetupUndo' has a wrong offset!"); \ +static_assert(offsetof(RigHierarchyController_SetControlSettings, ReturnValue) == 0x0001C9, "Member 'RigHierarchyController_SetControlSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URigHierarchyController \ +static_assert(alignof(URigHierarchyController) == 0x000008, "Wrong alignment on URigHierarchyController"); \ +static_assert(sizeof(URigHierarchyController) == 0x0000A0, "Wrong size on URigHierarchyController"); \ +static_assert(offsetof(URigHierarchyController, bReportWarningsAndErrors) == 0x000028, "Member 'URigHierarchyController::bReportWarningsAndErrors' has a wrong offset!"); \ +static_assert(offsetof(URigHierarchyController, Hierarchy) == 0x00002C, "Member 'URigHierarchyController::Hierarchy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigLayerInstance \ +static_assert(alignof(UControlRigLayerInstance) == 0x000010, "Wrong alignment on UControlRigLayerInstance"); \ +static_assert(sizeof(UControlRigLayerInstance) == 0x000350, "Wrong size on UControlRigLayerInstance"); \ + +#define DUMPER7_ASSERTS_UControlRigObjectHolder \ +static_assert(alignof(UControlRigObjectHolder) == 0x000008, "Wrong alignment on UControlRigObjectHolder"); \ +static_assert(sizeof(UControlRigObjectHolder) == 0x000038, "Wrong size on UControlRigObjectHolder"); \ +static_assert(offsetof(UControlRigObjectHolder, Objects) == 0x000028, "Member 'UControlRigObjectHolder::Objects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneControlRigParameterSection \ +static_assert(alignof(UMovieSceneControlRigParameterSection) == 0x000008, "Wrong alignment on UMovieSceneControlRigParameterSection"); \ +static_assert(sizeof(UMovieSceneControlRigParameterSection) == 0x0003D0, "Wrong size on UMovieSceneControlRigParameterSection"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, ControlRig) == 0x0001A0, "Member 'UMovieSceneControlRigParameterSection::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, ControlRigClass) == 0x0001A8, "Member 'UMovieSceneControlRigParameterSection::ControlRigClass' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, ControlsMask) == 0x0001B0, "Member 'UMovieSceneControlRigParameterSection::ControlsMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, TransformMask) == 0x0001C0, "Member 'UMovieSceneControlRigParameterSection::TransformMask' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, Weight) == 0x0001C8, "Member 'UMovieSceneControlRigParameterSection::Weight' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, ControlChannelMap) == 0x0002D8, "Member 'UMovieSceneControlRigParameterSection::ControlChannelMap' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, EnumParameterNamesAndCurves) == 0x000328, "Member 'UMovieSceneControlRigParameterSection::EnumParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, IntegerParameterNamesAndCurves) == 0x000338, "Member 'UMovieSceneControlRigParameterSection::IntegerParameterNamesAndCurves' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, SpaceChannels) == 0x000348, "Member 'UMovieSceneControlRigParameterSection::SpaceChannels' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterSection, ConstraintsChannels) == 0x000358, "Member 'UMovieSceneControlRigParameterSection::ConstraintsChannels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneControlRigParameterTrack \ +static_assert(alignof(UMovieSceneControlRigParameterTrack) == 0x000008, "Wrong alignment on UMovieSceneControlRigParameterTrack"); \ +static_assert(sizeof(UMovieSceneControlRigParameterTrack) == 0x000150, "Wrong size on UMovieSceneControlRigParameterTrack"); \ +static_assert(offsetof(UMovieSceneControlRigParameterTrack, ControlRig) == 0x0000D8, "Member 'UMovieSceneControlRigParameterTrack::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterTrack, SectionToKey) == 0x0000E0, "Member 'UMovieSceneControlRigParameterTrack::SectionToKey' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterTrack, Sections) == 0x0000E8, "Member 'UMovieSceneControlRigParameterTrack::Sections' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterTrack, TrackName) == 0x0000F8, "Member 'UMovieSceneControlRigParameterTrack::TrackName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneControlRigParameterTrack, ControlsRotationOrder) == 0x000100, "Member 'UMovieSceneControlRigParameterTrack::ControlsRotationOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigSettings \ +static_assert(alignof(UControlRigSettings) == 0x000008, "Wrong alignment on UControlRigSettings"); \ +static_assert(sizeof(UControlRigSettings) == 0x000038, "Wrong size on UControlRigSettings"); \ + +#define DUMPER7_ASSERTS_UControlRigEditorSettings \ +static_assert(alignof(UControlRigEditorSettings) == 0x000008, "Wrong alignment on UControlRigEditorSettings"); \ +static_assert(sizeof(UControlRigEditorSettings) == 0x000038, "Wrong size on UControlRigEditorSettings"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_GetCurrentPose \ +static_assert(alignof(ControlRigPoseAsset_GetCurrentPose) == 0x000008, "Wrong alignment on ControlRigPoseAsset_GetCurrentPose"); \ +static_assert(sizeof(ControlRigPoseAsset_GetCurrentPose) == 0x000068, "Wrong size on ControlRigPoseAsset_GetCurrentPose"); \ +static_assert(offsetof(ControlRigPoseAsset_GetCurrentPose, InControlRig) == 0x000000, "Member 'ControlRigPoseAsset_GetCurrentPose::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_GetCurrentPose, OutPose) == 0x000008, "Member 'ControlRigPoseAsset_GetCurrentPose::OutPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_PastePose \ +static_assert(alignof(ControlRigPoseAsset_PastePose) == 0x000008, "Wrong alignment on ControlRigPoseAsset_PastePose"); \ +static_assert(sizeof(ControlRigPoseAsset_PastePose) == 0x000010, "Wrong size on ControlRigPoseAsset_PastePose"); \ +static_assert(offsetof(ControlRigPoseAsset_PastePose, InControlRig) == 0x000000, "Member 'ControlRigPoseAsset_PastePose::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_PastePose, bDoKey) == 0x000008, "Member 'ControlRigPoseAsset_PastePose::bDoKey' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_PastePose, bDoMirror) == 0x000009, "Member 'ControlRigPoseAsset_PastePose::bDoMirror' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_ReplaceControlName \ +static_assert(alignof(ControlRigPoseAsset_ReplaceControlName) == 0x000004, "Wrong alignment on ControlRigPoseAsset_ReplaceControlName"); \ +static_assert(sizeof(ControlRigPoseAsset_ReplaceControlName) == 0x000010, "Wrong size on ControlRigPoseAsset_ReplaceControlName"); \ +static_assert(offsetof(ControlRigPoseAsset_ReplaceControlName, CurrentName) == 0x000000, "Member 'ControlRigPoseAsset_ReplaceControlName::CurrentName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_ReplaceControlName, NewName) == 0x000008, "Member 'ControlRigPoseAsset_ReplaceControlName::NewName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_SavePose \ +static_assert(alignof(ControlRigPoseAsset_SavePose) == 0x000008, "Wrong alignment on ControlRigPoseAsset_SavePose"); \ +static_assert(sizeof(ControlRigPoseAsset_SavePose) == 0x000010, "Wrong size on ControlRigPoseAsset_SavePose"); \ +static_assert(offsetof(ControlRigPoseAsset_SavePose, InControlRig) == 0x000000, "Member 'ControlRigPoseAsset_SavePose::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_SavePose, bUseAll) == 0x000008, "Member 'ControlRigPoseAsset_SavePose::bUseAll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_SelectControls \ +static_assert(alignof(ControlRigPoseAsset_SelectControls) == 0x000008, "Wrong alignment on ControlRigPoseAsset_SelectControls"); \ +static_assert(sizeof(ControlRigPoseAsset_SelectControls) == 0x000010, "Wrong size on ControlRigPoseAsset_SelectControls"); \ +static_assert(offsetof(ControlRigPoseAsset_SelectControls, InControlRig) == 0x000000, "Member 'ControlRigPoseAsset_SelectControls::InControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_SelectControls, bDoMirror) == 0x000008, "Member 'ControlRigPoseAsset_SelectControls::bDoMirror' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_DoesMirrorMatch \ +static_assert(alignof(ControlRigPoseAsset_DoesMirrorMatch) == 0x000008, "Wrong alignment on ControlRigPoseAsset_DoesMirrorMatch"); \ +static_assert(sizeof(ControlRigPoseAsset_DoesMirrorMatch) == 0x000018, "Wrong size on ControlRigPoseAsset_DoesMirrorMatch"); \ +static_assert(offsetof(ControlRigPoseAsset_DoesMirrorMatch, ControlRig) == 0x000000, "Member 'ControlRigPoseAsset_DoesMirrorMatch::ControlRig' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_DoesMirrorMatch, ControlName) == 0x000008, "Member 'ControlRigPoseAsset_DoesMirrorMatch::ControlName' has a wrong offset!"); \ +static_assert(offsetof(ControlRigPoseAsset_DoesMirrorMatch, ReturnValue) == 0x000010, "Member 'ControlRigPoseAsset_DoesMirrorMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigPoseAsset_GetControlNames \ +static_assert(alignof(ControlRigPoseAsset_GetControlNames) == 0x000008, "Wrong alignment on ControlRigPoseAsset_GetControlNames"); \ +static_assert(sizeof(ControlRigPoseAsset_GetControlNames) == 0x000010, "Wrong size on ControlRigPoseAsset_GetControlNames"); \ +static_assert(offsetof(ControlRigPoseAsset_GetControlNames, ReturnValue) == 0x000000, "Member 'ControlRigPoseAsset_GetControlNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigPoseAsset \ +static_assert(alignof(UControlRigPoseAsset) == 0x000008, "Wrong alignment on UControlRigPoseAsset"); \ +static_assert(sizeof(UControlRigPoseAsset) == 0x000088, "Wrong size on UControlRigPoseAsset"); \ +static_assert(offsetof(UControlRigPoseAsset, Pose) == 0x000028, "Member 'UControlRigPoseAsset::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigPoseMirrorSettings \ +static_assert(alignof(UControlRigPoseMirrorSettings) == 0x000008, "Wrong alignment on UControlRigPoseMirrorSettings"); \ +static_assert(sizeof(UControlRigPoseMirrorSettings) == 0x000050, "Wrong size on UControlRigPoseMirrorSettings"); \ +static_assert(offsetof(UControlRigPoseMirrorSettings, RightSide) == 0x000028, "Member 'UControlRigPoseMirrorSettings::RightSide' has a wrong offset!"); \ +static_assert(offsetof(UControlRigPoseMirrorSettings, LeftSide) == 0x000038, "Member 'UControlRigPoseMirrorSettings::LeftSide' has a wrong offset!"); \ +static_assert(offsetof(UControlRigPoseMirrorSettings, MirrorAxis) == 0x000048, "Member 'UControlRigPoseMirrorSettings::MirrorAxis' has a wrong offset!"); \ +static_assert(offsetof(UControlRigPoseMirrorSettings, AxisToFlip) == 0x000049, "Member 'UControlRigPoseMirrorSettings::AxisToFlip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigPoseProjectSettings \ +static_assert(alignof(UControlRigPoseProjectSettings) == 0x000008, "Wrong alignment on UControlRigPoseProjectSettings"); \ +static_assert(sizeof(UControlRigPoseProjectSettings) == 0x000038, "Wrong size on UControlRigPoseProjectSettings"); \ +static_assert(offsetof(UControlRigPoseProjectSettings, RootSaveDirs) == 0x000028, "Member 'UControlRigPoseProjectSettings::RootSaveDirs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected \ +static_assert(alignof(ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected) == 0x000001, "Wrong alignment on ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected"); \ +static_assert(sizeof(ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected) == 0x000001, "Wrong size on ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected"); \ +static_assert(offsetof(ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected, ReturnValue) == 0x000000, "Member 'ControlRigWorkflowOptions_EnsureAtLeastOneRigElementSelected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigWorkflowOptions \ +static_assert(alignof(UControlRigWorkflowOptions) == 0x000008, "Wrong alignment on UControlRigWorkflowOptions"); \ +static_assert(sizeof(UControlRigWorkflowOptions) == 0x0000B0, "Wrong size on UControlRigWorkflowOptions"); \ +static_assert(offsetof(UControlRigWorkflowOptions, Hierarchy) == 0x000098, "Member 'UControlRigWorkflowOptions::Hierarchy' has a wrong offset!"); \ +static_assert(offsetof(UControlRigWorkflowOptions, Selection) == 0x0000A0, "Member 'UControlRigWorkflowOptions::Selection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ControlRigTransformWorkflowOptions_ProvideWorkflows \ +static_assert(alignof(ControlRigTransformWorkflowOptions_ProvideWorkflows) == 0x000008, "Wrong alignment on ControlRigTransformWorkflowOptions_ProvideWorkflows"); \ +static_assert(sizeof(ControlRigTransformWorkflowOptions_ProvideWorkflows) == 0x000018, "Wrong size on ControlRigTransformWorkflowOptions_ProvideWorkflows"); \ +static_assert(offsetof(ControlRigTransformWorkflowOptions_ProvideWorkflows, InSubject) == 0x000000, "Member 'ControlRigTransformWorkflowOptions_ProvideWorkflows::InSubject' has a wrong offset!"); \ +static_assert(offsetof(ControlRigTransformWorkflowOptions_ProvideWorkflows, ReturnValue) == 0x000008, "Member 'ControlRigTransformWorkflowOptions_ProvideWorkflows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigTransformWorkflowOptions \ +static_assert(alignof(UControlRigTransformWorkflowOptions) == 0x000008, "Wrong alignment on UControlRigTransformWorkflowOptions"); \ +static_assert(sizeof(UControlRigTransformWorkflowOptions) == 0x0000B8, "Wrong size on UControlRigTransformWorkflowOptions"); \ +static_assert(offsetof(UControlRigTransformWorkflowOptions, TransformType) == 0x0000B0, "Member 'UControlRigTransformWorkflowOptions::TransformType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UControlRigNumericalValidationPass \ +static_assert(alignof(UControlRigNumericalValidationPass) == 0x000008, "Wrong alignment on UControlRigNumericalValidationPass"); \ +static_assert(sizeof(UControlRigNumericalValidationPass) == 0x0000C0, "Wrong size on UControlRigNumericalValidationPass"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, bCheckControls) == 0x000028, "Member 'UControlRigNumericalValidationPass::bCheckControls' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, bCheckBones) == 0x000029, "Member 'UControlRigNumericalValidationPass::bCheckBones' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, bCheckCurves) == 0x00002A, "Member 'UControlRigNumericalValidationPass::bCheckCurves' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, TranslationPrecision) == 0x00002C, "Member 'UControlRigNumericalValidationPass::TranslationPrecision' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, RotationPrecision) == 0x000030, "Member 'UControlRigNumericalValidationPass::RotationPrecision' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, ScalePrecision) == 0x000034, "Member 'UControlRigNumericalValidationPass::ScalePrecision' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, CurvePrecision) == 0x000038, "Member 'UControlRigNumericalValidationPass::CurvePrecision' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, EventNameA) == 0x00003C, "Member 'UControlRigNumericalValidationPass::EventNameA' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, EventNameB) == 0x000044, "Member 'UControlRigNumericalValidationPass::EventNameB' has a wrong offset!"); \ +static_assert(offsetof(UControlRigNumericalValidationPass, Pose) == 0x000050, "Member 'UControlRigNumericalValidationPass::Pose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistryLookup \ +static_assert(alignof(FDataRegistryLookup) == 0x000008, "Wrong alignment on FDataRegistryLookup"); \ +static_assert(sizeof(FDataRegistryLookup) == 0x000020, "Wrong size on FDataRegistryLookup"); \ + +#define DUMPER7_ASSERTS_FDataRegistrySource_DataTableRules \ +static_assert(alignof(FDataRegistrySource_DataTableRules) == 0x000004, "Wrong alignment on FDataRegistrySource_DataTableRules"); \ +static_assert(sizeof(FDataRegistrySource_DataTableRules) == 0x000008, "Wrong size on FDataRegistrySource_DataTableRules"); \ +static_assert(offsetof(FDataRegistrySource_DataTableRules, bPrecacheTable) == 0x000000, "Member 'FDataRegistrySource_DataTableRules::bPrecacheTable' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistrySource_DataTableRules, CachedTableKeepSeconds) == 0x000004, "Member 'FDataRegistrySource_DataTableRules::CachedTableKeepSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistryType \ +static_assert(alignof(FDataRegistryType) == 0x000004, "Wrong alignment on FDataRegistryType"); \ +static_assert(sizeof(FDataRegistryType) == 0x000008, "Wrong size on FDataRegistryType"); \ +static_assert(offsetof(FDataRegistryType, Name) == 0x000000, "Member 'FDataRegistryType::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistryId \ +static_assert(alignof(FDataRegistryId) == 0x000004, "Wrong alignment on FDataRegistryId"); \ +static_assert(sizeof(FDataRegistryId) == 0x000010, "Wrong size on FDataRegistryId"); \ +static_assert(offsetof(FDataRegistryId, RegistryType) == 0x000000, "Member 'FDataRegistryId::RegistryType' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryId, ItemName) == 0x000008, "Member 'FDataRegistryId::ItemName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistryIdFormat \ +static_assert(alignof(FDataRegistryIdFormat) == 0x000004, "Wrong alignment on FDataRegistryIdFormat"); \ +static_assert(sizeof(FDataRegistryIdFormat) == 0x000008, "Wrong size on FDataRegistryIdFormat"); \ +static_assert(offsetof(FDataRegistryIdFormat, BaseGameplayTag) == 0x000000, "Member 'FDataRegistryIdFormat::BaseGameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistryCachePolicy \ +static_assert(alignof(FDataRegistryCachePolicy) == 0x000004, "Wrong alignment on FDataRegistryCachePolicy"); \ +static_assert(sizeof(FDataRegistryCachePolicy) == 0x000014, "Wrong size on FDataRegistryCachePolicy"); \ +static_assert(offsetof(FDataRegistryCachePolicy, bCacheIsAlwaysVolatile) == 0x000000, "Member 'FDataRegistryCachePolicy::bCacheIsAlwaysVolatile' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryCachePolicy, bUseCurveTableCacheVersion) == 0x000001, "Member 'FDataRegistryCachePolicy::bUseCurveTableCacheVersion' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryCachePolicy, MinNumberKept) == 0x000004, "Member 'FDataRegistryCachePolicy::MinNumberKept' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryCachePolicy, MaxNumberKept) == 0x000008, "Member 'FDataRegistryCachePolicy::MaxNumberKept' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryCachePolicy, ForceKeepSeconds) == 0x00000C, "Member 'FDataRegistryCachePolicy::ForceKeepSeconds' has a wrong offset!"); \ +static_assert(offsetof(FDataRegistryCachePolicy, ForceReleaseSeconds) == 0x000010, "Member 'FDataRegistryCachePolicy::ForceReleaseSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataRegistrySourceItemId \ +static_assert(alignof(FDataRegistrySourceItemId) == 0x000008, "Wrong alignment on FDataRegistrySourceItemId"); \ +static_assert(sizeof(FDataRegistrySourceItemId) == 0x000040, "Wrong size on FDataRegistrySourceItemId"); \ + +#define DUMPER7_ASSERTS_UDataRegistrySettings \ +static_assert(alignof(UDataRegistrySettings) == 0x000008, "Wrong alignment on UDataRegistrySettings"); \ +static_assert(sizeof(UDataRegistrySettings) == 0x000050, "Wrong size on UDataRegistrySettings"); \ +static_assert(offsetof(UDataRegistrySettings, DirectoriesToScan) == 0x000038, "Member 'UDataRegistrySettings::DirectoriesToScan' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySettings, bInitializeAllLoadedRegistries) == 0x000048, "Member 'UDataRegistrySettings::bInitializeAllLoadedRegistries' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySettings, bIgnoreMissingCookedAssetRegistryData) == 0x000049, "Member 'UDataRegistrySettings::bIgnoreMissingCookedAssetRegistryData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataRegistry \ +static_assert(alignof(UDataRegistry) == 0x000008, "Wrong alignment on UDataRegistry"); \ +static_assert(sizeof(UDataRegistry) == 0x0000C0, "Wrong size on UDataRegistry"); \ +static_assert(offsetof(UDataRegistry, RegistryType) == 0x000028, "Member 'UDataRegistry::RegistryType' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, IdFormat) == 0x000030, "Member 'UDataRegistry::IdFormat' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, ItemStruct) == 0x000038, "Member 'UDataRegistry::ItemStruct' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, DataSources) == 0x000040, "Member 'UDataRegistry::DataSources' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, RuntimeSources) == 0x000050, "Member 'UDataRegistry::RuntimeSources' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, TimerUpdateFrequency) == 0x000060, "Member 'UDataRegistry::TimerUpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistry, DefaultCachePolicy) == 0x000064, "Member 'UDataRegistry::DefaultCachePolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataRegistrySource \ +static_assert(alignof(UDataRegistrySource) == 0x000008, "Wrong alignment on UDataRegistrySource"); \ +static_assert(sizeof(UDataRegistrySource) == 0x000038, "Wrong size on UDataRegistrySource"); \ +static_assert(offsetof(UDataRegistrySource, ParentSource) == 0x000030, "Member 'UDataRegistrySource::ParentSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMetaDataRegistrySource \ +static_assert(alignof(UMetaDataRegistrySource) == 0x000008, "Wrong alignment on UMetaDataRegistrySource"); \ +static_assert(sizeof(UMetaDataRegistrySource) == 0x000108, "Wrong size on UMetaDataRegistrySource"); \ +static_assert(offsetof(UMetaDataRegistrySource, AssetUsage) == 0x000038, "Member 'UMetaDataRegistrySource::AssetUsage' has a wrong offset!"); \ +static_assert(offsetof(UMetaDataRegistrySource, SearchRules) == 0x000040, "Member 'UMetaDataRegistrySource::SearchRules' has a wrong offset!"); \ +static_assert(offsetof(UMetaDataRegistrySource, RuntimeChildren) == 0x000090, "Member 'UMetaDataRegistrySource::RuntimeChildren' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataRegistrySource_CurveTable \ +static_assert(alignof(UDataRegistrySource_CurveTable) == 0x000008, "Wrong alignment on UDataRegistrySource_CurveTable"); \ +static_assert(sizeof(UDataRegistrySource_CurveTable) == 0x0000A0, "Wrong size on UDataRegistrySource_CurveTable"); \ +static_assert(offsetof(UDataRegistrySource_CurveTable, SourceTable) == 0x000038, "Member 'UDataRegistrySource_CurveTable::SourceTable' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_CurveTable, TableRules) == 0x000060, "Member 'UDataRegistrySource_CurveTable::TableRules' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_CurveTable, CachedTable) == 0x000068, "Member 'UDataRegistrySource_CurveTable::CachedTable' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_CurveTable, PreloadTable) == 0x000070, "Member 'UDataRegistrySource_CurveTable::PreloadTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMetaDataRegistrySource_CurveTable \ +static_assert(alignof(UMetaDataRegistrySource_CurveTable) == 0x000008, "Wrong alignment on UMetaDataRegistrySource_CurveTable"); \ +static_assert(sizeof(UMetaDataRegistrySource_CurveTable) == 0x000118, "Wrong size on UMetaDataRegistrySource_CurveTable"); \ +static_assert(offsetof(UMetaDataRegistrySource_CurveTable, CreatedSource) == 0x000108, "Member 'UMetaDataRegistrySource_CurveTable::CreatedSource' has a wrong offset!"); \ +static_assert(offsetof(UMetaDataRegistrySource_CurveTable, TableRules) == 0x000110, "Member 'UMetaDataRegistrySource_CurveTable::TableRules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataRegistrySource_DataTable \ +static_assert(alignof(UDataRegistrySource_DataTable) == 0x000008, "Wrong alignment on UDataRegistrySource_DataTable"); \ +static_assert(sizeof(UDataRegistrySource_DataTable) == 0x0000A0, "Wrong size on UDataRegistrySource_DataTable"); \ +static_assert(offsetof(UDataRegistrySource_DataTable, SourceTable) == 0x000038, "Member 'UDataRegistrySource_DataTable::SourceTable' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_DataTable, TableRules) == 0x000060, "Member 'UDataRegistrySource_DataTable::TableRules' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_DataTable, CachedTable) == 0x000068, "Member 'UDataRegistrySource_DataTable::CachedTable' has a wrong offset!"); \ +static_assert(offsetof(UDataRegistrySource_DataTable, PreloadTable) == 0x000070, "Member 'UDataRegistrySource_DataTable::PreloadTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMetaDataRegistrySource_DataTable \ +static_assert(alignof(UMetaDataRegistrySource_DataTable) == 0x000008, "Wrong alignment on UMetaDataRegistrySource_DataTable"); \ +static_assert(sizeof(UMetaDataRegistrySource_DataTable) == 0x000118, "Wrong size on UMetaDataRegistrySource_DataTable"); \ +static_assert(offsetof(UMetaDataRegistrySource_DataTable, CreatedSource) == 0x000108, "Member 'UMetaDataRegistrySource_DataTable::CreatedSource' has a wrong offset!"); \ +static_assert(offsetof(UMetaDataRegistrySource_DataTable, TableRules) == 0x000110, "Member 'UMetaDataRegistrySource_DataTable::TableRules' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_AcquireItemBP \ +static_assert(alignof(DataRegistrySubsystem_AcquireItemBP) == 0x000004, "Wrong alignment on DataRegistrySubsystem_AcquireItemBP"); \ +static_assert(sizeof(DataRegistrySubsystem_AcquireItemBP) == 0x000024, "Wrong size on DataRegistrySubsystem_AcquireItemBP"); \ +static_assert(offsetof(DataRegistrySubsystem_AcquireItemBP, ItemId) == 0x000000, "Member 'DataRegistrySubsystem_AcquireItemBP::ItemId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_AcquireItemBP, AcquireCallback) == 0x000010, "Member 'DataRegistrySubsystem_AcquireItemBP::AcquireCallback' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_AcquireItemBP, ReturnValue) == 0x000020, "Member 'DataRegistrySubsystem_AcquireItemBP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_Conv_DataRegistryIdToString \ +static_assert(alignof(DataRegistrySubsystem_Conv_DataRegistryIdToString) == 0x000008, "Wrong alignment on DataRegistrySubsystem_Conv_DataRegistryIdToString"); \ +static_assert(sizeof(DataRegistrySubsystem_Conv_DataRegistryIdToString) == 0x000020, "Wrong size on DataRegistrySubsystem_Conv_DataRegistryIdToString"); \ +static_assert(offsetof(DataRegistrySubsystem_Conv_DataRegistryIdToString, DataRegistryId) == 0x000000, "Member 'DataRegistrySubsystem_Conv_DataRegistryIdToString::DataRegistryId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_Conv_DataRegistryIdToString, ReturnValue) == 0x000010, "Member 'DataRegistrySubsystem_Conv_DataRegistryIdToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_Conv_DataRegistryTypeToString \ +static_assert(alignof(DataRegistrySubsystem_Conv_DataRegistryTypeToString) == 0x000008, "Wrong alignment on DataRegistrySubsystem_Conv_DataRegistryTypeToString"); \ +static_assert(sizeof(DataRegistrySubsystem_Conv_DataRegistryTypeToString) == 0x000018, "Wrong size on DataRegistrySubsystem_Conv_DataRegistryTypeToString"); \ +static_assert(offsetof(DataRegistrySubsystem_Conv_DataRegistryTypeToString, DataRegistryType) == 0x000000, "Member 'DataRegistrySubsystem_Conv_DataRegistryTypeToString::DataRegistryType' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_Conv_DataRegistryTypeToString, ReturnValue) == 0x000008, "Member 'DataRegistrySubsystem_Conv_DataRegistryTypeToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_EqualEqual_DataRegistryId \ +static_assert(alignof(DataRegistrySubsystem_EqualEqual_DataRegistryId) == 0x000004, "Wrong alignment on DataRegistrySubsystem_EqualEqual_DataRegistryId"); \ +static_assert(sizeof(DataRegistrySubsystem_EqualEqual_DataRegistryId) == 0x000024, "Wrong size on DataRegistrySubsystem_EqualEqual_DataRegistryId"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryId, A) == 0x000000, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryId::A' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryId, B) == 0x000010, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryId::B' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryId, ReturnValue) == 0x000020, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_EqualEqual_DataRegistryType \ +static_assert(alignof(DataRegistrySubsystem_EqualEqual_DataRegistryType) == 0x000004, "Wrong alignment on DataRegistrySubsystem_EqualEqual_DataRegistryType"); \ +static_assert(sizeof(DataRegistrySubsystem_EqualEqual_DataRegistryType) == 0x000014, "Wrong size on DataRegistrySubsystem_EqualEqual_DataRegistryType"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryType, A) == 0x000000, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryType::A' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryType, B) == 0x000008, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryType::B' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EqualEqual_DataRegistryType, ReturnValue) == 0x000010, "Member 'DataRegistrySubsystem_EqualEqual_DataRegistryType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_EvaluateDataRegistryCurve \ +static_assert(alignof(DataRegistrySubsystem_EvaluateDataRegistryCurve) == 0x000004, "Wrong alignment on DataRegistrySubsystem_EvaluateDataRegistryCurve"); \ +static_assert(sizeof(DataRegistrySubsystem_EvaluateDataRegistryCurve) == 0x000020, "Wrong size on DataRegistrySubsystem_EvaluateDataRegistryCurve"); \ +static_assert(offsetof(DataRegistrySubsystem_EvaluateDataRegistryCurve, ItemId) == 0x000000, "Member 'DataRegistrySubsystem_EvaluateDataRegistryCurve::ItemId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EvaluateDataRegistryCurve, InputValue) == 0x000010, "Member 'DataRegistrySubsystem_EvaluateDataRegistryCurve::InputValue' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EvaluateDataRegistryCurve, DefaultValue) == 0x000014, "Member 'DataRegistrySubsystem_EvaluateDataRegistryCurve::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EvaluateDataRegistryCurve, OutResult) == 0x000018, "Member 'DataRegistrySubsystem_EvaluateDataRegistryCurve::OutResult' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_EvaluateDataRegistryCurve, OutValue) == 0x00001C, "Member 'DataRegistrySubsystem_EvaluateDataRegistryCurve::OutValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_FindCachedItemBP \ +static_assert(alignof(DataRegistrySubsystem_FindCachedItemBP) == 0x000008, "Wrong alignment on DataRegistrySubsystem_FindCachedItemBP"); \ +static_assert(sizeof(DataRegistrySubsystem_FindCachedItemBP) == 0x000020, "Wrong size on DataRegistrySubsystem_FindCachedItemBP"); \ +static_assert(offsetof(DataRegistrySubsystem_FindCachedItemBP, ItemId) == 0x000000, "Member 'DataRegistrySubsystem_FindCachedItemBP::ItemId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_FindCachedItemBP, OutResult) == 0x000010, "Member 'DataRegistrySubsystem_FindCachedItemBP::OutResult' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_FindCachedItemBP, OutItem) == 0x000018, "Member 'DataRegistrySubsystem_FindCachedItemBP::OutItem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_GetCachedItemBP \ +static_assert(alignof(DataRegistrySubsystem_GetCachedItemBP) == 0x000008, "Wrong alignment on DataRegistrySubsystem_GetCachedItemBP"); \ +static_assert(sizeof(DataRegistrySubsystem_GetCachedItemBP) == 0x000020, "Wrong size on DataRegistrySubsystem_GetCachedItemBP"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemBP, ItemId) == 0x000000, "Member 'DataRegistrySubsystem_GetCachedItemBP::ItemId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemBP, OutItem) == 0x000010, "Member 'DataRegistrySubsystem_GetCachedItemBP::OutItem' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemBP, ReturnValue) == 0x000018, "Member 'DataRegistrySubsystem_GetCachedItemBP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_GetCachedItemFromLookupBP \ +static_assert(alignof(DataRegistrySubsystem_GetCachedItemFromLookupBP) == 0x000008, "Wrong alignment on DataRegistrySubsystem_GetCachedItemFromLookupBP"); \ +static_assert(sizeof(DataRegistrySubsystem_GetCachedItemFromLookupBP) == 0x000040, "Wrong size on DataRegistrySubsystem_GetCachedItemFromLookupBP"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemFromLookupBP, ItemId) == 0x000000, "Member 'DataRegistrySubsystem_GetCachedItemFromLookupBP::ItemId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemFromLookupBP, ResolvedLookup) == 0x000010, "Member 'DataRegistrySubsystem_GetCachedItemFromLookupBP::ResolvedLookup' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemFromLookupBP, OutItem) == 0x000030, "Member 'DataRegistrySubsystem_GetCachedItemFromLookupBP::OutItem' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_GetCachedItemFromLookupBP, ReturnValue) == 0x000038, "Member 'DataRegistrySubsystem_GetCachedItemFromLookupBP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_IsValidDataRegistryId \ +static_assert(alignof(DataRegistrySubsystem_IsValidDataRegistryId) == 0x000004, "Wrong alignment on DataRegistrySubsystem_IsValidDataRegistryId"); \ +static_assert(sizeof(DataRegistrySubsystem_IsValidDataRegistryId) == 0x000014, "Wrong size on DataRegistrySubsystem_IsValidDataRegistryId"); \ +static_assert(offsetof(DataRegistrySubsystem_IsValidDataRegistryId, DataRegistryId) == 0x000000, "Member 'DataRegistrySubsystem_IsValidDataRegistryId::DataRegistryId' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_IsValidDataRegistryId, ReturnValue) == 0x000010, "Member 'DataRegistrySubsystem_IsValidDataRegistryId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_IsValidDataRegistryType \ +static_assert(alignof(DataRegistrySubsystem_IsValidDataRegistryType) == 0x000004, "Wrong alignment on DataRegistrySubsystem_IsValidDataRegistryType"); \ +static_assert(sizeof(DataRegistrySubsystem_IsValidDataRegistryType) == 0x00000C, "Wrong size on DataRegistrySubsystem_IsValidDataRegistryType"); \ +static_assert(offsetof(DataRegistrySubsystem_IsValidDataRegistryType, DataRegistryType) == 0x000000, "Member 'DataRegistrySubsystem_IsValidDataRegistryType::DataRegistryType' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_IsValidDataRegistryType, ReturnValue) == 0x000008, "Member 'DataRegistrySubsystem_IsValidDataRegistryType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_NotEqual_DataRegistryId \ +static_assert(alignof(DataRegistrySubsystem_NotEqual_DataRegistryId) == 0x000004, "Wrong alignment on DataRegistrySubsystem_NotEqual_DataRegistryId"); \ +static_assert(sizeof(DataRegistrySubsystem_NotEqual_DataRegistryId) == 0x000024, "Wrong size on DataRegistrySubsystem_NotEqual_DataRegistryId"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryId, A) == 0x000000, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryId::A' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryId, B) == 0x000010, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryId::B' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryId, ReturnValue) == 0x000020, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DataRegistrySubsystem_NotEqual_DataRegistryType \ +static_assert(alignof(DataRegistrySubsystem_NotEqual_DataRegistryType) == 0x000004, "Wrong alignment on DataRegistrySubsystem_NotEqual_DataRegistryType"); \ +static_assert(sizeof(DataRegistrySubsystem_NotEqual_DataRegistryType) == 0x000014, "Wrong size on DataRegistrySubsystem_NotEqual_DataRegistryType"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryType, A) == 0x000000, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryType::A' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryType, B) == 0x000008, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryType::B' has a wrong offset!"); \ +static_assert(offsetof(DataRegistrySubsystem_NotEqual_DataRegistryType, ReturnValue) == 0x000010, "Member 'DataRegistrySubsystem_NotEqual_DataRegistryType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataRegistrySubsystem \ +static_assert(alignof(UDataRegistrySubsystem) == 0x000008, "Wrong alignment on UDataRegistrySubsystem"); \ +static_assert(sizeof(UDataRegistrySubsystem) == 0x0000C8, "Wrong size on UDataRegistrySubsystem"); \ + +#define DUMPER7_ASSERTS_FCurveParameterPair \ +static_assert(alignof(FCurveParameterPair) == 0x000004, "Wrong alignment on FCurveParameterPair"); \ +static_assert(sizeof(FCurveParameterPair) == 0x000010, "Wrong size on FCurveParameterPair"); \ +static_assert(offsetof(FCurveParameterPair, AnimCurveName) == 0x000000, "Member 'FCurveParameterPair::AnimCurveName' has a wrong offset!"); \ +static_assert(offsetof(FCurveParameterPair, UserVariableName) == 0x000008, "Member 'FCurveParameterPair::UserVariableName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect \ +static_assert(alignof(AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect) == 0x000008, "Wrong alignment on AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect"); \ +static_assert(sizeof(AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect) == 0x000010, "Wrong size on AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect"); \ +static_assert(offsetof(AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect, MeshComp) == 0x000000, "Member 'AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect, ReturnValue) == 0x000008, "Member 'AnimNotifyState_TimedNiagaraEffect_GetSpawnedEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_TimedNiagaraEffect \ +static_assert(alignof(UAnimNotifyState_TimedNiagaraEffect) == 0x000008, "Wrong alignment on UAnimNotifyState_TimedNiagaraEffect"); \ +static_assert(sizeof(UAnimNotifyState_TimedNiagaraEffect) == 0x000078, "Wrong size on UAnimNotifyState_TimedNiagaraEffect"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffect, Template) == 0x000030, "Member 'UAnimNotifyState_TimedNiagaraEffect::Template' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffect, SocketName) == 0x000038, "Member 'UAnimNotifyState_TimedNiagaraEffect::SocketName' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffect, LocationOffset) == 0x000040, "Member 'UAnimNotifyState_TimedNiagaraEffect::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffect, RotationOffset) == 0x000058, "Member 'UAnimNotifyState_TimedNiagaraEffect::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffect, bDestroyAtEnd) == 0x000070, "Member 'UAnimNotifyState_TimedNiagaraEffect::bDestroyAtEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress \ +static_assert(alignof(AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress) == 0x000008, "Wrong alignment on AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress"); \ +static_assert(sizeof(AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress) == 0x000010, "Wrong size on AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress"); \ +static_assert(offsetof(AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress, MeshComp) == 0x000000, "Member 'AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress, ReturnValue) == 0x000008, "Member 'AnimNotifyState_TimedNiagaraEffectAdvanced_GetNotifyProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_TimedNiagaraEffectAdvanced \ +static_assert(alignof(UAnimNotifyState_TimedNiagaraEffectAdvanced) == 0x000008, "Wrong alignment on UAnimNotifyState_TimedNiagaraEffectAdvanced"); \ +static_assert(sizeof(UAnimNotifyState_TimedNiagaraEffectAdvanced) == 0x0000E8, "Wrong size on UAnimNotifyState_TimedNiagaraEffectAdvanced"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffectAdvanced, bEnableNormalizedNotifyProgress) == 0x000078, "Member 'UAnimNotifyState_TimedNiagaraEffectAdvanced::bEnableNormalizedNotifyProgress' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffectAdvanced, NotifyProgressUserParameter) == 0x00007C, "Member 'UAnimNotifyState_TimedNiagaraEffectAdvanced::NotifyProgressUserParameter' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotifyState_TimedNiagaraEffectAdvanced, AnimCurves) == 0x000088, "Member 'UAnimNotifyState_TimedNiagaraEffectAdvanced::AnimCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotify_PlayNiagaraEffect_GetSpawnedEffect \ +static_assert(alignof(AnimNotify_PlayNiagaraEffect_GetSpawnedEffect) == 0x000008, "Wrong alignment on AnimNotify_PlayNiagaraEffect_GetSpawnedEffect"); \ +static_assert(sizeof(AnimNotify_PlayNiagaraEffect_GetSpawnedEffect) == 0x000008, "Wrong size on AnimNotify_PlayNiagaraEffect_GetSpawnedEffect"); \ +static_assert(offsetof(AnimNotify_PlayNiagaraEffect_GetSpawnedEffect, ReturnValue) == 0x000000, "Member 'AnimNotify_PlayNiagaraEffect_GetSpawnedEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotify_PlayNiagaraEffect \ +static_assert(alignof(UAnimNotify_PlayNiagaraEffect) == 0x000010, "Wrong alignment on UAnimNotify_PlayNiagaraEffect"); \ +static_assert(sizeof(UAnimNotify_PlayNiagaraEffect) == 0x0000D0, "Wrong size on UAnimNotify_PlayNiagaraEffect"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, Template) == 0x000038, "Member 'UAnimNotify_PlayNiagaraEffect::Template' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, LocationOffset) == 0x000040, "Member 'UAnimNotify_PlayNiagaraEffect::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, RotationOffset) == 0x000058, "Member 'UAnimNotify_PlayNiagaraEffect::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, Scale) == 0x000070, "Member 'UAnimNotify_PlayNiagaraEffect::Scale' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, bAbsoluteScale) == 0x000088, "Member 'UAnimNotify_PlayNiagaraEffect::bAbsoluteScale' has a wrong offset!"); \ +static_assert(offsetof(UAnimNotify_PlayNiagaraEffect, SocketName) == 0x0000C4, "Member 'UAnimNotify_PlayNiagaraEffect::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlayerReservation \ +static_assert(alignof(FPlayerReservation) == 0x000008, "Wrong alignment on FPlayerReservation"); \ +static_assert(sizeof(FPlayerReservation) == 0x000058, "Wrong size on FPlayerReservation"); \ +static_assert(offsetof(FPlayerReservation, UniqueID) == 0x000000, "Member 'FPlayerReservation::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(FPlayerReservation, ValidationStr) == 0x000030, "Member 'FPlayerReservation::ValidationStr' has a wrong offset!"); \ +static_assert(offsetof(FPlayerReservation, Platform) == 0x000040, "Member 'FPlayerReservation::Platform' has a wrong offset!"); \ +static_assert(offsetof(FPlayerReservation, bAllowCrossplay) == 0x000050, "Member 'FPlayerReservation::bAllowCrossplay' has a wrong offset!"); \ +static_assert(offsetof(FPlayerReservation, ElapsedTime) == 0x000054, "Member 'FPlayerReservation::ElapsedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpectatorReservation \ +static_assert(alignof(FSpectatorReservation) == 0x000008, "Wrong alignment on FSpectatorReservation"); \ +static_assert(sizeof(FSpectatorReservation) == 0x000088, "Wrong size on FSpectatorReservation"); \ +static_assert(offsetof(FSpectatorReservation, SpectatorId) == 0x000000, "Member 'FSpectatorReservation::SpectatorId' has a wrong offset!"); \ +static_assert(offsetof(FSpectatorReservation, Spectator) == 0x000030, "Member 'FSpectatorReservation::Spectator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInAppPurchaseReceiptInfo2 \ +static_assert(alignof(FInAppPurchaseReceiptInfo2) == 0x000008, "Wrong alignment on FInAppPurchaseReceiptInfo2"); \ +static_assert(sizeof(FInAppPurchaseReceiptInfo2) == 0x000040, "Wrong size on FInAppPurchaseReceiptInfo2"); \ +static_assert(offsetof(FInAppPurchaseReceiptInfo2, ItemName) == 0x000000, "Member 'FInAppPurchaseReceiptInfo2::ItemName' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseReceiptInfo2, ItemId) == 0x000010, "Member 'FInAppPurchaseReceiptInfo2::ItemId' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseReceiptInfo2, ValidationInfo) == 0x000020, "Member 'FInAppPurchaseReceiptInfo2::ValidationInfo' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseReceiptInfo2, TransactionIdentifier) == 0x000030, "Member 'FInAppPurchaseReceiptInfo2::TransactionIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBlueprintSessionResult \ +static_assert(alignof(FBlueprintSessionResult) == 0x000008, "Wrong alignment on FBlueprintSessionResult"); \ +static_assert(sizeof(FBlueprintSessionResult) == 0x000120, "Wrong size on FBlueprintSessionResult"); \ + +#define DUMPER7_ASSERTS_FPartyReservation \ +static_assert(alignof(FPartyReservation) == 0x000008, "Wrong alignment on FPartyReservation"); \ +static_assert(sizeof(FPartyReservation) == 0x000058, "Wrong size on FPartyReservation"); \ +static_assert(offsetof(FPartyReservation, TeamNum) == 0x000000, "Member 'FPartyReservation::TeamNum' has a wrong offset!"); \ +static_assert(offsetof(FPartyReservation, PartyLeader) == 0x000008, "Member 'FPartyReservation::PartyLeader' has a wrong offset!"); \ +static_assert(offsetof(FPartyReservation, PartyMembers) == 0x000038, "Member 'FPartyReservation::PartyMembers' has a wrong offset!"); \ +static_assert(offsetof(FPartyReservation, RemovedPartyMembers) == 0x000048, "Member 'FPartyReservation::RemovedPartyMembers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOnlineProxyStoreOffer \ +static_assert(alignof(FOnlineProxyStoreOffer) == 0x000008, "Wrong alignment on FOnlineProxyStoreOffer"); \ +static_assert(sizeof(FOnlineProxyStoreOffer) == 0x000110, "Wrong size on FOnlineProxyStoreOffer"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, OfferId) == 0x000000, "Member 'FOnlineProxyStoreOffer::OfferId' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, Title) == 0x000010, "Member 'FOnlineProxyStoreOffer::Title' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, Description) == 0x000028, "Member 'FOnlineProxyStoreOffer::Description' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, LongDescription) == 0x000040, "Member 'FOnlineProxyStoreOffer::LongDescription' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, RegularPriceText) == 0x000058, "Member 'FOnlineProxyStoreOffer::RegularPriceText' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, RegularPrice) == 0x000070, "Member 'FOnlineProxyStoreOffer::RegularPrice' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, PriceText) == 0x000078, "Member 'FOnlineProxyStoreOffer::PriceText' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, NumericPrice) == 0x000090, "Member 'FOnlineProxyStoreOffer::NumericPrice' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, CurrencyCode) == 0x000098, "Member 'FOnlineProxyStoreOffer::CurrencyCode' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, ReleaseDate) == 0x0000A8, "Member 'FOnlineProxyStoreOffer::ReleaseDate' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, ExpirationDate) == 0x0000B0, "Member 'FOnlineProxyStoreOffer::ExpirationDate' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, DiscountType) == 0x0000B8, "Member 'FOnlineProxyStoreOffer::DiscountType' has a wrong offset!"); \ +static_assert(offsetof(FOnlineProxyStoreOffer, DynamicFields) == 0x0000C0, "Member 'FOnlineProxyStoreOffer::DynamicFields' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInAppPurchaseRestoreInfo2 \ +static_assert(alignof(FInAppPurchaseRestoreInfo2) == 0x000008, "Wrong alignment on FInAppPurchaseRestoreInfo2"); \ +static_assert(sizeof(FInAppPurchaseRestoreInfo2) == 0x000030, "Wrong size on FInAppPurchaseRestoreInfo2"); \ +static_assert(offsetof(FInAppPurchaseRestoreInfo2, ItemName) == 0x000000, "Member 'FInAppPurchaseRestoreInfo2::ItemName' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseRestoreInfo2, ItemId) == 0x000010, "Member 'FInAppPurchaseRestoreInfo2::ItemId' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseRestoreInfo2, ValidationInfo) == 0x000020, "Member 'FInAppPurchaseRestoreInfo2::ValidationInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInAppPurchaseProductRequest2 \ +static_assert(alignof(FInAppPurchaseProductRequest2) == 0x000008, "Wrong alignment on FInAppPurchaseProductRequest2"); \ +static_assert(sizeof(FInAppPurchaseProductRequest2) == 0x000018, "Wrong size on FInAppPurchaseProductRequest2"); \ +static_assert(offsetof(FInAppPurchaseProductRequest2, ProductIdentifier) == 0x000000, "Member 'FInAppPurchaseProductRequest2::ProductIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductRequest2, bIsConsumable) == 0x000010, "Member 'FInAppPurchaseProductRequest2::bIsConsumable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInAppPurchaseProductInfo2 \ +static_assert(alignof(FInAppPurchaseProductInfo2) == 0x000008, "Wrong alignment on FInAppPurchaseProductInfo2"); \ +static_assert(sizeof(FInAppPurchaseProductInfo2) == 0x0000F8, "Wrong size on FInAppPurchaseProductInfo2"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, Identifier) == 0x000000, "Member 'FInAppPurchaseProductInfo2::Identifier' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, TransactionIdentifier) == 0x000010, "Member 'FInAppPurchaseProductInfo2::TransactionIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, DisplayName) == 0x000020, "Member 'FInAppPurchaseProductInfo2::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, DisplayDescription) == 0x000030, "Member 'FInAppPurchaseProductInfo2::DisplayDescription' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, DisplayPrice) == 0x000040, "Member 'FInAppPurchaseProductInfo2::DisplayPrice' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, RawPrice) == 0x000050, "Member 'FInAppPurchaseProductInfo2::RawPrice' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, CurrencyCode) == 0x000058, "Member 'FInAppPurchaseProductInfo2::CurrencyCode' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, CurrencySymbol) == 0x000068, "Member 'FInAppPurchaseProductInfo2::CurrencySymbol' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, DecimalSeparator) == 0x000078, "Member 'FInAppPurchaseProductInfo2::DecimalSeparator' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, GroupingSeparator) == 0x000088, "Member 'FInAppPurchaseProductInfo2::GroupingSeparator' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, ReceiptData) == 0x000098, "Member 'FInAppPurchaseProductInfo2::ReceiptData' has a wrong offset!"); \ +static_assert(offsetof(FInAppPurchaseProductInfo2, DynamicFields) == 0x0000A8, "Member 'FInAppPurchaseProductInfo2::DynamicFields' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPIELoginSettingsInternal \ +static_assert(alignof(FPIELoginSettingsInternal) == 0x000008, "Wrong alignment on FPIELoginSettingsInternal"); \ +static_assert(sizeof(FPIELoginSettingsInternal) == 0x000040, "Wrong size on FPIELoginSettingsInternal"); \ +static_assert(offsetof(FPIELoginSettingsInternal, ID) == 0x000000, "Member 'FPIELoginSettingsInternal::ID' has a wrong offset!"); \ +static_assert(offsetof(FPIELoginSettingsInternal, Token) == 0x000010, "Member 'FPIELoginSettingsInternal::Token' has a wrong offset!"); \ +static_assert(offsetof(FPIELoginSettingsInternal, Type) == 0x000020, "Member 'FPIELoginSettingsInternal::Type' has a wrong offset!"); \ +static_assert(offsetof(FPIELoginSettingsInternal, TokenBytes) == 0x000030, "Member 'FPIELoginSettingsInternal::TokenBytes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPartyBeaconCrossplayPlatformMapping \ +static_assert(alignof(FPartyBeaconCrossplayPlatformMapping) == 0x000008, "Wrong alignment on FPartyBeaconCrossplayPlatformMapping"); \ +static_assert(sizeof(FPartyBeaconCrossplayPlatformMapping) == 0x000020, "Wrong size on FPartyBeaconCrossplayPlatformMapping"); \ +static_assert(offsetof(FPartyBeaconCrossplayPlatformMapping, PlatformName) == 0x000000, "Member 'FPartyBeaconCrossplayPlatformMapping::PlatformName' has a wrong offset!"); \ +static_assert(offsetof(FPartyBeaconCrossplayPlatformMapping, PlatformType) == 0x000010, "Member 'FPartyBeaconCrossplayPlatformMapping::PlatformType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AchievementBlueprintLibrary_GetCachedAchievementDescription \ +static_assert(alignof(AchievementBlueprintLibrary_GetCachedAchievementDescription) == 0x000008, "Wrong alignment on AchievementBlueprintLibrary_GetCachedAchievementDescription"); \ +static_assert(sizeof(AchievementBlueprintLibrary_GetCachedAchievementDescription) == 0x000070, "Wrong size on AchievementBlueprintLibrary_GetCachedAchievementDescription"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, WorldContextObject) == 0x000000, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, PlayerController) == 0x000008, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, AchievementID) == 0x000010, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::AchievementID' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, bFoundID) == 0x000018, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::bFoundID' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, Title) == 0x000020, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::Title' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, LockedDescription) == 0x000038, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::LockedDescription' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, UnlockedDescription) == 0x000050, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::UnlockedDescription' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementDescription, bHidden) == 0x000068, "Member 'AchievementBlueprintLibrary_GetCachedAchievementDescription::bHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AchievementBlueprintLibrary_GetCachedAchievementProgress \ +static_assert(alignof(AchievementBlueprintLibrary_GetCachedAchievementProgress) == 0x000008, "Wrong alignment on AchievementBlueprintLibrary_GetCachedAchievementProgress"); \ +static_assert(sizeof(AchievementBlueprintLibrary_GetCachedAchievementProgress) == 0x000020, "Wrong size on AchievementBlueprintLibrary_GetCachedAchievementProgress"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementProgress, WorldContextObject) == 0x000000, "Member 'AchievementBlueprintLibrary_GetCachedAchievementProgress::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementProgress, PlayerController) == 0x000008, "Member 'AchievementBlueprintLibrary_GetCachedAchievementProgress::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementProgress, AchievementID) == 0x000010, "Member 'AchievementBlueprintLibrary_GetCachedAchievementProgress::AchievementID' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementProgress, bFoundID) == 0x000018, "Member 'AchievementBlueprintLibrary_GetCachedAchievementProgress::bFoundID' has a wrong offset!"); \ +static_assert(offsetof(AchievementBlueprintLibrary_GetCachedAchievementProgress, Progress) == 0x00001C, "Member 'AchievementBlueprintLibrary_GetCachedAchievementProgress::Progress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAchievementBlueprintLibrary \ +static_assert(alignof(UAchievementBlueprintLibrary) == 0x000008, "Wrong alignment on UAchievementBlueprintLibrary"); \ +static_assert(sizeof(UAchievementBlueprintLibrary) == 0x000028, "Wrong size on UAchievementBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_AchievementQueryCallbackProxy_CacheAchievementDescriptions \ +static_assert(alignof(AchievementQueryCallbackProxy_CacheAchievementDescriptions) == 0x000008, "Wrong alignment on AchievementQueryCallbackProxy_CacheAchievementDescriptions"); \ +static_assert(sizeof(AchievementQueryCallbackProxy_CacheAchievementDescriptions) == 0x000018, "Wrong size on AchievementQueryCallbackProxy_CacheAchievementDescriptions"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievementDescriptions, WorldContextObject) == 0x000000, "Member 'AchievementQueryCallbackProxy_CacheAchievementDescriptions::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievementDescriptions, PlayerController) == 0x000008, "Member 'AchievementQueryCallbackProxy_CacheAchievementDescriptions::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievementDescriptions, ReturnValue) == 0x000010, "Member 'AchievementQueryCallbackProxy_CacheAchievementDescriptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AchievementQueryCallbackProxy_CacheAchievements \ +static_assert(alignof(AchievementQueryCallbackProxy_CacheAchievements) == 0x000008, "Wrong alignment on AchievementQueryCallbackProxy_CacheAchievements"); \ +static_assert(sizeof(AchievementQueryCallbackProxy_CacheAchievements) == 0x000018, "Wrong size on AchievementQueryCallbackProxy_CacheAchievements"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievements, WorldContextObject) == 0x000000, "Member 'AchievementQueryCallbackProxy_CacheAchievements::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievements, PlayerController) == 0x000008, "Member 'AchievementQueryCallbackProxy_CacheAchievements::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(AchievementQueryCallbackProxy_CacheAchievements, ReturnValue) == 0x000010, "Member 'AchievementQueryCallbackProxy_CacheAchievements::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAchievementQueryCallbackProxy \ +static_assert(alignof(UAchievementQueryCallbackProxy) == 0x000008, "Wrong alignment on UAchievementQueryCallbackProxy"); \ +static_assert(sizeof(UAchievementQueryCallbackProxy) == 0x000068, "Wrong size on UAchievementQueryCallbackProxy"); \ +static_assert(offsetof(UAchievementQueryCallbackProxy, OnSuccess) == 0x000030, "Member 'UAchievementQueryCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UAchievementQueryCallbackProxy, OnFailure) == 0x000040, "Member 'UAchievementQueryCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AchievementWriteCallbackProxy_WriteAchievementProgress \ +static_assert(alignof(AchievementWriteCallbackProxy_WriteAchievementProgress) == 0x000008, "Wrong alignment on AchievementWriteCallbackProxy_WriteAchievementProgress"); \ +static_assert(sizeof(AchievementWriteCallbackProxy_WriteAchievementProgress) == 0x000028, "Wrong size on AchievementWriteCallbackProxy_WriteAchievementProgress"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, WorldContextObject) == 0x000000, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, PlayerController) == 0x000008, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, AchievementName) == 0x000010, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::AchievementName' has a wrong offset!"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, Progress) == 0x000018, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::Progress' has a wrong offset!"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, UserTag) == 0x00001C, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::UserTag' has a wrong offset!"); \ +static_assert(offsetof(AchievementWriteCallbackProxy_WriteAchievementProgress, ReturnValue) == 0x000020, "Member 'AchievementWriteCallbackProxy_WriteAchievementProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAchievementWriteCallbackProxy \ +static_assert(alignof(UAchievementWriteCallbackProxy) == 0x000008, "Wrong alignment on UAchievementWriteCallbackProxy"); \ +static_assert(sizeof(UAchievementWriteCallbackProxy) == 0x000080, "Wrong size on UAchievementWriteCallbackProxy"); \ +static_assert(offsetof(UAchievementWriteCallbackProxy, OnSuccess) == 0x000030, "Member 'UAchievementWriteCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UAchievementWriteCallbackProxy, OnFailure) == 0x000040, "Member 'UAchievementWriteCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConnectionCallbackProxy_ConnectToService \ +static_assert(alignof(ConnectionCallbackProxy_ConnectToService) == 0x000008, "Wrong alignment on ConnectionCallbackProxy_ConnectToService"); \ +static_assert(sizeof(ConnectionCallbackProxy_ConnectToService) == 0x000018, "Wrong size on ConnectionCallbackProxy_ConnectToService"); \ +static_assert(offsetof(ConnectionCallbackProxy_ConnectToService, WorldContextObject) == 0x000000, "Member 'ConnectionCallbackProxy_ConnectToService::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(ConnectionCallbackProxy_ConnectToService, PlayerController) == 0x000008, "Member 'ConnectionCallbackProxy_ConnectToService::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(ConnectionCallbackProxy_ConnectToService, ReturnValue) == 0x000010, "Member 'ConnectionCallbackProxy_ConnectToService::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConnectionCallbackProxy \ +static_assert(alignof(UConnectionCallbackProxy) == 0x000008, "Wrong alignment on UConnectionCallbackProxy"); \ +static_assert(sizeof(UConnectionCallbackProxy) == 0x000078, "Wrong size on UConnectionCallbackProxy"); \ +static_assert(offsetof(UConnectionCallbackProxy, OnSuccess) == 0x000030, "Member 'UConnectionCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UConnectionCallbackProxy, OnFailure) == 0x000040, "Member 'UConnectionCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CreateSessionCallbackProxy_CreateSession \ +static_assert(alignof(CreateSessionCallbackProxy_CreateSession) == 0x000008, "Wrong alignment on CreateSessionCallbackProxy_CreateSession"); \ +static_assert(sizeof(CreateSessionCallbackProxy_CreateSession) == 0x000020, "Wrong size on CreateSessionCallbackProxy_CreateSession"); \ +static_assert(offsetof(CreateSessionCallbackProxy_CreateSession, WorldContextObject) == 0x000000, "Member 'CreateSessionCallbackProxy_CreateSession::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(CreateSessionCallbackProxy_CreateSession, PlayerController) == 0x000008, "Member 'CreateSessionCallbackProxy_CreateSession::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(CreateSessionCallbackProxy_CreateSession, PublicConnections) == 0x000010, "Member 'CreateSessionCallbackProxy_CreateSession::PublicConnections' has a wrong offset!"); \ +static_assert(offsetof(CreateSessionCallbackProxy_CreateSession, bUseLAN) == 0x000014, "Member 'CreateSessionCallbackProxy_CreateSession::bUseLAN' has a wrong offset!"); \ +static_assert(offsetof(CreateSessionCallbackProxy_CreateSession, ReturnValue) == 0x000018, "Member 'CreateSessionCallbackProxy_CreateSession::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCreateSessionCallbackProxy \ +static_assert(alignof(UCreateSessionCallbackProxy) == 0x000008, "Wrong alignment on UCreateSessionCallbackProxy"); \ +static_assert(sizeof(UCreateSessionCallbackProxy) == 0x000098, "Wrong size on UCreateSessionCallbackProxy"); \ +static_assert(offsetof(UCreateSessionCallbackProxy, OnSuccess) == 0x000030, "Member 'UCreateSessionCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UCreateSessionCallbackProxy, OnFailure) == 0x000040, "Member 'UCreateSessionCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestroySessionCallbackProxy_DestroySession \ +static_assert(alignof(DestroySessionCallbackProxy_DestroySession) == 0x000008, "Wrong alignment on DestroySessionCallbackProxy_DestroySession"); \ +static_assert(sizeof(DestroySessionCallbackProxy_DestroySession) == 0x000018, "Wrong size on DestroySessionCallbackProxy_DestroySession"); \ +static_assert(offsetof(DestroySessionCallbackProxy_DestroySession, WorldContextObject) == 0x000000, "Member 'DestroySessionCallbackProxy_DestroySession::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(DestroySessionCallbackProxy_DestroySession, PlayerController) == 0x000008, "Member 'DestroySessionCallbackProxy_DestroySession::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(DestroySessionCallbackProxy_DestroySession, ReturnValue) == 0x000010, "Member 'DestroySessionCallbackProxy_DestroySession::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDestroySessionCallbackProxy \ +static_assert(alignof(UDestroySessionCallbackProxy) == 0x000008, "Wrong alignment on UDestroySessionCallbackProxy"); \ +static_assert(sizeof(UDestroySessionCallbackProxy) == 0x000078, "Wrong size on UDestroySessionCallbackProxy"); \ +static_assert(offsetof(UDestroySessionCallbackProxy, OnSuccess) == 0x000030, "Member 'UDestroySessionCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UDestroySessionCallbackProxy, OnFailure) == 0x000040, "Member 'UDestroySessionCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EndMatchCallbackProxy_EndMatch \ +static_assert(alignof(EndMatchCallbackProxy_EndMatch) == 0x000008, "Wrong alignment on EndMatchCallbackProxy_EndMatch"); \ +static_assert(sizeof(EndMatchCallbackProxy_EndMatch) == 0x000040, "Wrong size on EndMatchCallbackProxy_EndMatch"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, WorldContextObject) == 0x000000, "Member 'EndMatchCallbackProxy_EndMatch::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, PlayerController) == 0x000008, "Member 'EndMatchCallbackProxy_EndMatch::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, MatchActor) == 0x000010, "Member 'EndMatchCallbackProxy_EndMatch::MatchActor' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, MatchID) == 0x000020, "Member 'EndMatchCallbackProxy_EndMatch::MatchID' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, LocalPlayerOutcome) == 0x000030, "Member 'EndMatchCallbackProxy_EndMatch::LocalPlayerOutcome' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, OtherPlayersOutcome) == 0x000031, "Member 'EndMatchCallbackProxy_EndMatch::OtherPlayersOutcome' has a wrong offset!"); \ +static_assert(offsetof(EndMatchCallbackProxy_EndMatch, ReturnValue) == 0x000038, "Member 'EndMatchCallbackProxy_EndMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEndMatchCallbackProxy \ +static_assert(alignof(UEndMatchCallbackProxy) == 0x000008, "Wrong alignment on UEndMatchCallbackProxy"); \ +static_assert(sizeof(UEndMatchCallbackProxy) == 0x000080, "Wrong size on UEndMatchCallbackProxy"); \ +static_assert(offsetof(UEndMatchCallbackProxy, OnSuccess) == 0x000030, "Member 'UEndMatchCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UEndMatchCallbackProxy, OnFailure) == 0x000040, "Member 'UEndMatchCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EndTurnCallbackProxy_EndTurn \ +static_assert(alignof(EndTurnCallbackProxy_EndTurn) == 0x000008, "Wrong alignment on EndTurnCallbackProxy_EndTurn"); \ +static_assert(sizeof(EndTurnCallbackProxy_EndTurn) == 0x000038, "Wrong size on EndTurnCallbackProxy_EndTurn"); \ +static_assert(offsetof(EndTurnCallbackProxy_EndTurn, WorldContextObject) == 0x000000, "Member 'EndTurnCallbackProxy_EndTurn::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(EndTurnCallbackProxy_EndTurn, PlayerController) == 0x000008, "Member 'EndTurnCallbackProxy_EndTurn::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(EndTurnCallbackProxy_EndTurn, MatchID) == 0x000010, "Member 'EndTurnCallbackProxy_EndTurn::MatchID' has a wrong offset!"); \ +static_assert(offsetof(EndTurnCallbackProxy_EndTurn, TurnBasedMatchInterface) == 0x000020, "Member 'EndTurnCallbackProxy_EndTurn::TurnBasedMatchInterface' has a wrong offset!"); \ +static_assert(offsetof(EndTurnCallbackProxy_EndTurn, ReturnValue) == 0x000030, "Member 'EndTurnCallbackProxy_EndTurn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEndTurnCallbackProxy \ +static_assert(alignof(UEndTurnCallbackProxy) == 0x000008, "Wrong alignment on UEndTurnCallbackProxy"); \ +static_assert(sizeof(UEndTurnCallbackProxy) == 0x000078, "Wrong size on UEndTurnCallbackProxy"); \ +static_assert(offsetof(UEndTurnCallbackProxy, OnSuccess) == 0x000030, "Member 'UEndTurnCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UEndTurnCallbackProxy, OnFailure) == 0x000040, "Member 'UEndTurnCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindSessionsCallbackProxy_FindSessions \ +static_assert(alignof(FindSessionsCallbackProxy_FindSessions) == 0x000008, "Wrong alignment on FindSessionsCallbackProxy_FindSessions"); \ +static_assert(sizeof(FindSessionsCallbackProxy_FindSessions) == 0x000020, "Wrong size on FindSessionsCallbackProxy_FindSessions"); \ +static_assert(offsetof(FindSessionsCallbackProxy_FindSessions, WorldContextObject) == 0x000000, "Member 'FindSessionsCallbackProxy_FindSessions::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_FindSessions, PlayerController) == 0x000008, "Member 'FindSessionsCallbackProxy_FindSessions::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_FindSessions, MaxResults) == 0x000010, "Member 'FindSessionsCallbackProxy_FindSessions::MaxResults' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_FindSessions, bUseLAN) == 0x000014, "Member 'FindSessionsCallbackProxy_FindSessions::bUseLAN' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_FindSessions, ReturnValue) == 0x000018, "Member 'FindSessionsCallbackProxy_FindSessions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindSessionsCallbackProxy_GetCurrentPlayers \ +static_assert(alignof(FindSessionsCallbackProxy_GetCurrentPlayers) == 0x000008, "Wrong alignment on FindSessionsCallbackProxy_GetCurrentPlayers"); \ +static_assert(sizeof(FindSessionsCallbackProxy_GetCurrentPlayers) == 0x000128, "Wrong size on FindSessionsCallbackProxy_GetCurrentPlayers"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetCurrentPlayers, Result) == 0x000000, "Member 'FindSessionsCallbackProxy_GetCurrentPlayers::Result' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetCurrentPlayers, ReturnValue) == 0x000120, "Member 'FindSessionsCallbackProxy_GetCurrentPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindSessionsCallbackProxy_GetMaxPlayers \ +static_assert(alignof(FindSessionsCallbackProxy_GetMaxPlayers) == 0x000008, "Wrong alignment on FindSessionsCallbackProxy_GetMaxPlayers"); \ +static_assert(sizeof(FindSessionsCallbackProxy_GetMaxPlayers) == 0x000128, "Wrong size on FindSessionsCallbackProxy_GetMaxPlayers"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetMaxPlayers, Result) == 0x000000, "Member 'FindSessionsCallbackProxy_GetMaxPlayers::Result' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetMaxPlayers, ReturnValue) == 0x000120, "Member 'FindSessionsCallbackProxy_GetMaxPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindSessionsCallbackProxy_GetPingInMs \ +static_assert(alignof(FindSessionsCallbackProxy_GetPingInMs) == 0x000008, "Wrong alignment on FindSessionsCallbackProxy_GetPingInMs"); \ +static_assert(sizeof(FindSessionsCallbackProxy_GetPingInMs) == 0x000128, "Wrong size on FindSessionsCallbackProxy_GetPingInMs"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetPingInMs, Result) == 0x000000, "Member 'FindSessionsCallbackProxy_GetPingInMs::Result' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetPingInMs, ReturnValue) == 0x000120, "Member 'FindSessionsCallbackProxy_GetPingInMs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindSessionsCallbackProxy_GetServerName \ +static_assert(alignof(FindSessionsCallbackProxy_GetServerName) == 0x000008, "Wrong alignment on FindSessionsCallbackProxy_GetServerName"); \ +static_assert(sizeof(FindSessionsCallbackProxy_GetServerName) == 0x000130, "Wrong size on FindSessionsCallbackProxy_GetServerName"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetServerName, Result) == 0x000000, "Member 'FindSessionsCallbackProxy_GetServerName::Result' has a wrong offset!"); \ +static_assert(offsetof(FindSessionsCallbackProxy_GetServerName, ReturnValue) == 0x000120, "Member 'FindSessionsCallbackProxy_GetServerName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFindSessionsCallbackProxy \ +static_assert(alignof(UFindSessionsCallbackProxy) == 0x000008, "Wrong alignment on UFindSessionsCallbackProxy"); \ +static_assert(sizeof(UFindSessionsCallbackProxy) == 0x000090, "Wrong size on UFindSessionsCallbackProxy"); \ +static_assert(offsetof(UFindSessionsCallbackProxy, OnSuccess) == 0x000030, "Member 'UFindSessionsCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UFindSessionsCallbackProxy, OnFailure) == 0x000040, "Member 'UFindSessionsCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch \ +static_assert(alignof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch) == 0x000008, "Wrong alignment on FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch"); \ +static_assert(sizeof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch) == 0x000038, "Wrong size on FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, WorldContextObject) == 0x000000, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, PlayerController) == 0x000008, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, MatchActor) == 0x000010, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::MatchActor' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, MinPlayers) == 0x000020, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::MinPlayers' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, MaxPlayers) == 0x000024, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::MaxPlayers' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, PlayerGroup) == 0x000028, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::PlayerGroup' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, ShowExistingMatches) == 0x00002C, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::ShowExistingMatches' has a wrong offset!"); \ +static_assert(offsetof(FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch, ReturnValue) == 0x000030, "Member 'FindTurnBasedMatchCallbackProxy_FindTurnBasedMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFindTurnBasedMatchCallbackProxy \ +static_assert(alignof(UFindTurnBasedMatchCallbackProxy) == 0x000008, "Wrong alignment on UFindTurnBasedMatchCallbackProxy"); \ +static_assert(sizeof(UFindTurnBasedMatchCallbackProxy) == 0x000088, "Wrong size on UFindTurnBasedMatchCallbackProxy"); \ +static_assert(offsetof(UFindTurnBasedMatchCallbackProxy, OnSuccess) == 0x000030, "Member 'UFindTurnBasedMatchCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UFindTurnBasedMatchCallbackProxy, OnFailure) == 0x000040, "Member 'UFindTurnBasedMatchCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase \ +static_assert(alignof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase) == 0x000008, "Wrong alignment on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase"); \ +static_assert(sizeof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase) == 0x000028, "Wrong size on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase, PlayerController) == 0x000000, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase, ProductRequest) == 0x000008, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase::ProductRequest' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase, ReturnValue) == 0x000020, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned \ +static_assert(alignof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned) == 0x000008, "Wrong alignment on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned"); \ +static_assert(sizeof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned) == 0x000010, "Wrong size on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned, PlayerController) == 0x000000, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned, ReturnValue) == 0x000008, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseQueryOwned::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases \ +static_assert(alignof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases) == 0x000008, "Wrong alignment on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases"); \ +static_assert(sizeof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases) == 0x000010, "Wrong size on InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases, PlayerController) == 0x000000, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases, ReturnValue) == 0x000008, "Member 'InAppPurchaseCallbackProxy2_CreateProxyObjectForInAppPurchaseUnprocessedPurchases::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseCallbackProxy2 \ +static_assert(alignof(UInAppPurchaseCallbackProxy2) == 0x000008, "Wrong alignment on UInAppPurchaseCallbackProxy2"); \ +static_assert(sizeof(UInAppPurchaseCallbackProxy2) == 0x0000A8, "Wrong size on UInAppPurchaseCallbackProxy2"); \ +static_assert(offsetof(UInAppPurchaseCallbackProxy2, OnSuccess) == 0x000028, "Member 'UInAppPurchaseCallbackProxy2::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UInAppPurchaseCallbackProxy2, OnFailure) == 0x000038, "Member 'UInAppPurchaseCallbackProxy2::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout \ +static_assert(alignof(InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout) == 0x000008, "Wrong alignment on InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout"); \ +static_assert(sizeof(InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout) == 0x000028, "Wrong size on InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout"); \ +static_assert(offsetof(InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout, PlayerController) == 0x000000, "Member 'InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout, ProductRequest) == 0x000008, "Member 'InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout::ProductRequest' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout, ReturnValue) == 0x000020, "Member 'InAppPurchaseCheckoutCallbackProxy_CreateProxyObjectForInAppPurchaseCheckout::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseCheckoutCallbackProxy \ +static_assert(alignof(UInAppPurchaseCheckoutCallbackProxy) == 0x000008, "Wrong alignment on UInAppPurchaseCheckoutCallbackProxy"); \ +static_assert(sizeof(UInAppPurchaseCheckoutCallbackProxy) == 0x0000A0, "Wrong size on UInAppPurchaseCheckoutCallbackProxy"); \ +static_assert(offsetof(UInAppPurchaseCheckoutCallbackProxy, OnSuccess) == 0x000028, "Member 'UInAppPurchaseCheckoutCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UInAppPurchaseCheckoutCallbackProxy, OnFailure) == 0x000038, "Member 'UInAppPurchaseCheckoutCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize \ +static_assert(alignof(InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize) == 0x000008, "Wrong alignment on InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize"); \ +static_assert(sizeof(InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize) == 0x000050, "Wrong size on InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize"); \ +static_assert(offsetof(InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize, InAppPurchaseReceipt) == 0x000000, "Member 'InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize::InAppPurchaseReceipt' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize, PlayerController) == 0x000040, "Member 'InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize, ReturnValue) == 0x000048, "Member 'InAppPurchaseFinalizeProxy_CreateProxyObjectForInAppPurchaseFinalize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseFinalizeProxy \ +static_assert(alignof(UInAppPurchaseFinalizeProxy) == 0x000008, "Wrong alignment on UInAppPurchaseFinalizeProxy"); \ +static_assert(sizeof(UInAppPurchaseFinalizeProxy) == 0x000028, "Wrong size on UInAppPurchaseFinalizeProxy"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery \ +static_assert(alignof(InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery) == 0x000008, "Wrong alignment on InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery"); \ +static_assert(sizeof(InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery) == 0x000020, "Wrong size on InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery"); \ +static_assert(offsetof(InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery, PlayerController) == 0x000000, "Member 'InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery, ProductIdentifiers) == 0x000008, "Member 'InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery::ProductIdentifiers' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery, ReturnValue) == 0x000018, "Member 'InAppPurchaseQueryCallbackProxy2_CreateProxyObjectForInAppPurchaseQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseQueryCallbackProxy2 \ +static_assert(alignof(UInAppPurchaseQueryCallbackProxy2) == 0x000008, "Wrong alignment on UInAppPurchaseQueryCallbackProxy2"); \ +static_assert(sizeof(UInAppPurchaseQueryCallbackProxy2) == 0x000068, "Wrong size on UInAppPurchaseQueryCallbackProxy2"); \ +static_assert(offsetof(UInAppPurchaseQueryCallbackProxy2, OnSuccess) == 0x000028, "Member 'UInAppPurchaseQueryCallbackProxy2::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UInAppPurchaseQueryCallbackProxy2, OnFailure) == 0x000038, "Member 'UInAppPurchaseQueryCallbackProxy2::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts \ +static_assert(alignof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts) == 0x000008, "Wrong alignment on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts"); \ +static_assert(sizeof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts) == 0x000010, "Wrong size on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts, PlayerController) == 0x000000, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts, ReturnValue) == 0x000008, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseGetKnownReceipts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts \ +static_assert(alignof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts) == 0x000008, "Wrong alignment on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts"); \ +static_assert(sizeof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts) == 0x000010, "Wrong size on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts, PlayerController) == 0x000000, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts, ReturnValue) == 0x000008, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseQueryOwnedProducts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts \ +static_assert(alignof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts) == 0x000008, "Wrong alignment on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts"); \ +static_assert(sizeof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts) == 0x000010, "Wrong size on InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts, PlayerController) == 0x000000, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts, ReturnValue) == 0x000008, "Member 'InAppPurchaseReceiptsCallbackProxy_CreateProxyObjectForInAppPurchaseRestoreOwnedProducts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseReceiptsCallbackProxy \ +static_assert(alignof(UInAppPurchaseReceiptsCallbackProxy) == 0x000008, "Wrong alignment on UInAppPurchaseReceiptsCallbackProxy"); \ +static_assert(sizeof(UInAppPurchaseReceiptsCallbackProxy) == 0x000088, "Wrong size on UInAppPurchaseReceiptsCallbackProxy"); \ +static_assert(offsetof(UInAppPurchaseReceiptsCallbackProxy, OnSuccess) == 0x000028, "Member 'UInAppPurchaseReceiptsCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UInAppPurchaseReceiptsCallbackProxy, OnFailure) == 0x000038, "Member 'UInAppPurchaseReceiptsCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore \ +static_assert(alignof(InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore) == 0x000008, "Wrong alignment on InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore"); \ +static_assert(sizeof(InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore) == 0x000020, "Wrong size on InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore"); \ +static_assert(offsetof(InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore, ConsumableProductFlags) == 0x000000, "Member 'InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore::ConsumableProductFlags' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore, PlayerController) == 0x000010, "Member 'InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore, ReturnValue) == 0x000018, "Member 'InAppPurchaseRestoreCallbackProxy2_CreateProxyObjectForInAppPurchaseRestore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInAppPurchaseRestoreCallbackProxy2 \ +static_assert(alignof(UInAppPurchaseRestoreCallbackProxy2) == 0x000008, "Wrong alignment on UInAppPurchaseRestoreCallbackProxy2"); \ +static_assert(sizeof(UInAppPurchaseRestoreCallbackProxy2) == 0x0000B0, "Wrong size on UInAppPurchaseRestoreCallbackProxy2"); \ +static_assert(offsetof(UInAppPurchaseRestoreCallbackProxy2, OnSuccess) == 0x000028, "Member 'UInAppPurchaseRestoreCallbackProxy2::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UInAppPurchaseRestoreCallbackProxy2, OnFailure) == 0x000038, "Member 'UInAppPurchaseRestoreCallbackProxy2::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIpConnection \ +static_assert(alignof(UIpConnection) == 0x000008, "Wrong alignment on UIpConnection"); \ +static_assert(sizeof(UIpConnection) == 0x001E88, "Wrong size on UIpConnection"); \ +static_assert(offsetof(UIpConnection, SocketErrorDisconnectDelay) == 0x001E6C, "Member 'UIpConnection::SocketErrorDisconnectDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIpNetDriver \ +static_assert(alignof(UIpNetDriver) == 0x000008, "Wrong alignment on UIpNetDriver"); \ +static_assert(sizeof(UIpNetDriver) == 0x0008A0, "Wrong size on UIpNetDriver"); \ +static_assert(offsetof(UIpNetDriver, MaxPortCountToTry) == 0x0007F4, "Member 'UIpNetDriver::MaxPortCountToTry' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, ServerDesiredSocketReceiveBufferBytes) == 0x0007FC, "Member 'UIpNetDriver::ServerDesiredSocketReceiveBufferBytes' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, ServerDesiredSocketSendBufferBytes) == 0x000800, "Member 'UIpNetDriver::ServerDesiredSocketSendBufferBytes' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, ClientDesiredSocketReceiveBufferBytes) == 0x000804, "Member 'UIpNetDriver::ClientDesiredSocketReceiveBufferBytes' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, ClientDesiredSocketSendBufferBytes) == 0x000808, "Member 'UIpNetDriver::ClientDesiredSocketSendBufferBytes' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, MaxSecondsInReceive) == 0x000810, "Member 'UIpNetDriver::MaxSecondsInReceive' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, NbPacketsBetweenReceiveTimeTest) == 0x000818, "Member 'UIpNetDriver::NbPacketsBetweenReceiveTimeTest' has a wrong offset!"); \ +static_assert(offsetof(UIpNetDriver, ResolutionConnectionTimeout) == 0x00081C, "Member 'UIpNetDriver::ResolutionConnectionTimeout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_JoinSessionCallbackProxy_JoinSession \ +static_assert(alignof(JoinSessionCallbackProxy_JoinSession) == 0x000008, "Wrong alignment on JoinSessionCallbackProxy_JoinSession"); \ +static_assert(sizeof(JoinSessionCallbackProxy_JoinSession) == 0x000138, "Wrong size on JoinSessionCallbackProxy_JoinSession"); \ +static_assert(offsetof(JoinSessionCallbackProxy_JoinSession, WorldContextObject) == 0x000000, "Member 'JoinSessionCallbackProxy_JoinSession::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(JoinSessionCallbackProxy_JoinSession, PlayerController) == 0x000008, "Member 'JoinSessionCallbackProxy_JoinSession::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(JoinSessionCallbackProxy_JoinSession, SearchResult) == 0x000010, "Member 'JoinSessionCallbackProxy_JoinSession::SearchResult' has a wrong offset!"); \ +static_assert(offsetof(JoinSessionCallbackProxy_JoinSession, ReturnValue) == 0x000130, "Member 'JoinSessionCallbackProxy_JoinSession::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UJoinSessionCallbackProxy \ +static_assert(alignof(UJoinSessionCallbackProxy) == 0x000008, "Wrong alignment on UJoinSessionCallbackProxy"); \ +static_assert(sizeof(UJoinSessionCallbackProxy) == 0x000198, "Wrong size on UJoinSessionCallbackProxy"); \ +static_assert(offsetof(UJoinSessionCallbackProxy, OnSuccess) == 0x000030, "Member 'UJoinSessionCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UJoinSessionCallbackProxy, OnFailure) == 0x000040, "Member 'UJoinSessionCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LeaderboardBlueprintLibrary_WriteLeaderboardInteger \ +static_assert(alignof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger) == 0x000008, "Wrong alignment on LeaderboardBlueprintLibrary_WriteLeaderboardInteger"); \ +static_assert(sizeof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger) == 0x000018, "Wrong size on LeaderboardBlueprintLibrary_WriteLeaderboardInteger"); \ +static_assert(offsetof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger, PlayerController) == 0x000000, "Member 'LeaderboardBlueprintLibrary_WriteLeaderboardInteger::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger, StatName) == 0x000008, "Member 'LeaderboardBlueprintLibrary_WriteLeaderboardInteger::StatName' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger, StatValue) == 0x000010, "Member 'LeaderboardBlueprintLibrary_WriteLeaderboardInteger::StatValue' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardBlueprintLibrary_WriteLeaderboardInteger, ReturnValue) == 0x000014, "Member 'LeaderboardBlueprintLibrary_WriteLeaderboardInteger::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULeaderboardBlueprintLibrary \ +static_assert(alignof(ULeaderboardBlueprintLibrary) == 0x000008, "Wrong alignment on ULeaderboardBlueprintLibrary"); \ +static_assert(sizeof(ULeaderboardBlueprintLibrary) == 0x000028, "Wrong size on ULeaderboardBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush \ +static_assert(alignof(LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush) == 0x000008, "Wrong alignment on LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush"); \ +static_assert(sizeof(LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush) == 0x000018, "Wrong size on LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush"); \ +static_assert(offsetof(LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush, PlayerController) == 0x000000, "Member 'LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush, SessionName) == 0x000008, "Member 'LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush::SessionName' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush, ReturnValue) == 0x000010, "Member 'LeaderboardFlushCallbackProxy_CreateProxyObjectForFlush::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULeaderboardFlushCallbackProxy \ +static_assert(alignof(ULeaderboardFlushCallbackProxy) == 0x000008, "Wrong alignment on ULeaderboardFlushCallbackProxy"); \ +static_assert(sizeof(ULeaderboardFlushCallbackProxy) == 0x000068, "Wrong size on ULeaderboardFlushCallbackProxy"); \ +static_assert(offsetof(ULeaderboardFlushCallbackProxy, OnSuccess) == 0x000028, "Member 'ULeaderboardFlushCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(ULeaderboardFlushCallbackProxy, OnFailure) == 0x000038, "Member 'ULeaderboardFlushCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery \ +static_assert(alignof(LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery) == 0x000008, "Wrong alignment on LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery"); \ +static_assert(sizeof(LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery) == 0x000018, "Wrong size on LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery"); \ +static_assert(offsetof(LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery, PlayerController) == 0x000000, "Member 'LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery, StatName) == 0x000008, "Member 'LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery::StatName' has a wrong offset!"); \ +static_assert(offsetof(LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery, ReturnValue) == 0x000010, "Member 'LeaderboardQueryCallbackProxy_CreateProxyObjectForIntQuery::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULeaderboardQueryCallbackProxy \ +static_assert(alignof(ULeaderboardQueryCallbackProxy) == 0x000008, "Wrong alignment on ULeaderboardQueryCallbackProxy"); \ +static_assert(sizeof(ULeaderboardQueryCallbackProxy) == 0x000098, "Wrong size on ULeaderboardQueryCallbackProxy"); \ +static_assert(offsetof(ULeaderboardQueryCallbackProxy, OnSuccess) == 0x000028, "Member 'ULeaderboardQueryCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(ULeaderboardQueryCallbackProxy, OnFailure) == 0x000038, "Member 'ULeaderboardQueryCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LogoutCallbackProxy_Logout \ +static_assert(alignof(LogoutCallbackProxy_Logout) == 0x000008, "Wrong alignment on LogoutCallbackProxy_Logout"); \ +static_assert(sizeof(LogoutCallbackProxy_Logout) == 0x000018, "Wrong size on LogoutCallbackProxy_Logout"); \ +static_assert(offsetof(LogoutCallbackProxy_Logout, WorldContextObject) == 0x000000, "Member 'LogoutCallbackProxy_Logout::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LogoutCallbackProxy_Logout, PlayerController) == 0x000008, "Member 'LogoutCallbackProxy_Logout::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(LogoutCallbackProxy_Logout, ReturnValue) == 0x000010, "Member 'LogoutCallbackProxy_Logout::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULogoutCallbackProxy \ +static_assert(alignof(ULogoutCallbackProxy) == 0x000008, "Wrong alignment on ULogoutCallbackProxy"); \ +static_assert(sizeof(ULogoutCallbackProxy) == 0x000068, "Wrong size on ULogoutCallbackProxy"); \ +static_assert(offsetof(ULogoutCallbackProxy, OnSuccess) == 0x000030, "Member 'ULogoutCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(ULogoutCallbackProxy, OnFailure) == 0x000040, "Member 'ULogoutCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AOnlineBeacon \ +static_assert(alignof(AOnlineBeacon) == 0x000008, "Wrong alignment on AOnlineBeacon"); \ +static_assert(sizeof(AOnlineBeacon) == 0x0002C8, "Wrong size on AOnlineBeacon"); \ +static_assert(offsetof(AOnlineBeacon, BeaconConnectionInitialTimeout) == 0x0002A0, "Member 'AOnlineBeacon::BeaconConnectionInitialTimeout' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeacon, BeaconConnectionTimeout) == 0x0002A4, "Member 'AOnlineBeacon::BeaconConnectionTimeout' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeacon, NetDriver) == 0x0002A8, "Member 'AOnlineBeacon::NetDriver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AOnlineBeaconClient \ +static_assert(alignof(AOnlineBeaconClient) == 0x000008, "Wrong alignment on AOnlineBeaconClient"); \ +static_assert(sizeof(AOnlineBeaconClient) == 0x000328, "Wrong size on AOnlineBeaconClient"); \ +static_assert(offsetof(AOnlineBeaconClient, BeaconOwner) == 0x0002C8, "Member 'AOnlineBeaconClient::BeaconOwner' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconClient, BeaconConnection) == 0x0002D0, "Member 'AOnlineBeaconClient::BeaconConnection' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconClient, ConnectionState) == 0x0002D8, "Member 'AOnlineBeaconClient::ConnectionState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AOnlineBeaconHost \ +static_assert(alignof(AOnlineBeaconHost) == 0x000008, "Wrong alignment on AOnlineBeaconHost"); \ +static_assert(sizeof(AOnlineBeaconHost) == 0x0003D8, "Wrong size on AOnlineBeaconHost"); \ +static_assert(offsetof(AOnlineBeaconHost, ListenPort) == 0x0002C8, "Member 'AOnlineBeaconHost::ListenPort' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHost, bReuseAddressAndPort) == 0x0002CC, "Member 'AOnlineBeaconHost::bReuseAddressAndPort' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHost, bAuthRequired) == 0x0002CD, "Member 'AOnlineBeaconHost::bAuthRequired' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHost, MaxAuthTokenSize) == 0x0002D0, "Member 'AOnlineBeaconHost::MaxAuthTokenSize' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHost, ClientActors) == 0x000328, "Member 'AOnlineBeaconHost::ClientActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AOnlineBeaconHostObject \ +static_assert(alignof(AOnlineBeaconHostObject) == 0x000008, "Wrong alignment on AOnlineBeaconHostObject"); \ +static_assert(sizeof(AOnlineBeaconHostObject) == 0x0002C0, "Wrong size on AOnlineBeaconHostObject"); \ +static_assert(offsetof(AOnlineBeaconHostObject, BeaconTypeName) == 0x000298, "Member 'AOnlineBeaconHostObject::BeaconTypeName' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHostObject, ClientBeaconActorClass) == 0x0002A8, "Member 'AOnlineBeaconHostObject::ClientBeaconActorClass' has a wrong offset!"); \ +static_assert(offsetof(AOnlineBeaconHostObject, ClientActors) == 0x0002B0, "Member 'AOnlineBeaconHostObject::ClientActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnlineEngineInterfaceImpl2 \ +static_assert(alignof(UOnlineEngineInterfaceImpl2) == 0x000008, "Wrong alignment on UOnlineEngineInterfaceImpl2"); \ +static_assert(sizeof(UOnlineEngineInterfaceImpl2) == 0x000188, "Wrong size on UOnlineEngineInterfaceImpl2"); \ +static_assert(offsetof(UOnlineEngineInterfaceImpl2, MappedUniqueNetIdTypes) == 0x000028, "Member 'UOnlineEngineInterfaceImpl2::MappedUniqueNetIdTypes' has a wrong offset!"); \ +static_assert(offsetof(UOnlineEngineInterfaceImpl2, CompatibleUniqueNetIdTypes) == 0x000078, "Member 'UOnlineEngineInterfaceImpl2::CompatibleUniqueNetIdTypes' has a wrong offset!"); \ +static_assert(offsetof(UOnlineEngineInterfaceImpl2, VoiceSubsystemNameOverride) == 0x000088, "Member 'UOnlineEngineInterfaceImpl2::VoiceSubsystemNameOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnlinePIESettings \ +static_assert(alignof(UOnlinePIESettings) == 0x000008, "Wrong alignment on UOnlinePIESettings"); \ +static_assert(sizeof(UOnlinePIESettings) == 0x000050, "Wrong size on UOnlinePIESettings"); \ +static_assert(offsetof(UOnlinePIESettings, bOnlinePIEEnabled) == 0x000038, "Member 'UOnlinePIESettings::bOnlinePIEEnabled' has a wrong offset!"); \ +static_assert(offsetof(UOnlinePIESettings, Logins) == 0x000040, "Member 'UOnlinePIESettings::Logins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnlineServicesEngineInterfaceImpl \ +static_assert(alignof(UOnlineServicesEngineInterfaceImpl) == 0x000008, "Wrong alignment on UOnlineServicesEngineInterfaceImpl"); \ +static_assert(sizeof(UOnlineServicesEngineInterfaceImpl) == 0x000028, "Wrong size on UOnlineServicesEngineInterfaceImpl"); \ + +#define DUMPER7_ASSERTS_UOnlineSessionClient \ +static_assert(alignof(UOnlineSessionClient) == 0x000008, "Wrong alignment on UOnlineSessionClient"); \ +static_assert(sizeof(UOnlineSessionClient) == 0x0001E0, "Wrong size on UOnlineSessionClient"); \ +static_assert(offsetof(UOnlineSessionClient, bIsFromInvite) == 0x0001D8, "Member 'UOnlineSessionClient::bIsFromInvite' has a wrong offset!"); \ +static_assert(offsetof(UOnlineSessionClient, bHandlingDisconnect) == 0x0001D9, "Member 'UOnlineSessionClient::bHandlingDisconnect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ClientCancelReservationResponse \ +static_assert(alignof(PartyBeaconClient_ClientCancelReservationResponse) == 0x000001, "Wrong alignment on PartyBeaconClient_ClientCancelReservationResponse"); \ +static_assert(sizeof(PartyBeaconClient_ClientCancelReservationResponse) == 0x000001, "Wrong size on PartyBeaconClient_ClientCancelReservationResponse"); \ +static_assert(offsetof(PartyBeaconClient_ClientCancelReservationResponse, ReservationResponse) == 0x000000, "Member 'PartyBeaconClient_ClientCancelReservationResponse::ReservationResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ClientReservationResponse \ +static_assert(alignof(PartyBeaconClient_ClientReservationResponse) == 0x000001, "Wrong alignment on PartyBeaconClient_ClientReservationResponse"); \ +static_assert(sizeof(PartyBeaconClient_ClientReservationResponse) == 0x000001, "Wrong size on PartyBeaconClient_ClientReservationResponse"); \ +static_assert(offsetof(PartyBeaconClient_ClientReservationResponse, ReservationResponse) == 0x000000, "Member 'PartyBeaconClient_ClientReservationResponse::ReservationResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ClientSendReservationUpdates \ +static_assert(alignof(PartyBeaconClient_ClientSendReservationUpdates) == 0x000004, "Wrong alignment on PartyBeaconClient_ClientSendReservationUpdates"); \ +static_assert(sizeof(PartyBeaconClient_ClientSendReservationUpdates) == 0x000004, "Wrong size on PartyBeaconClient_ClientSendReservationUpdates"); \ +static_assert(offsetof(PartyBeaconClient_ClientSendReservationUpdates, NumRemainingReservations) == 0x000000, "Member 'PartyBeaconClient_ClientSendReservationUpdates::NumRemainingReservations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ServerAddOrUpdateReservationRequest \ +static_assert(alignof(PartyBeaconClient_ServerAddOrUpdateReservationRequest) == 0x000008, "Wrong alignment on PartyBeaconClient_ServerAddOrUpdateReservationRequest"); \ +static_assert(sizeof(PartyBeaconClient_ServerAddOrUpdateReservationRequest) == 0x000068, "Wrong size on PartyBeaconClient_ServerAddOrUpdateReservationRequest"); \ +static_assert(offsetof(PartyBeaconClient_ServerAddOrUpdateReservationRequest, SessionId) == 0x000000, "Member 'PartyBeaconClient_ServerAddOrUpdateReservationRequest::SessionId' has a wrong offset!"); \ +static_assert(offsetof(PartyBeaconClient_ServerAddOrUpdateReservationRequest, Reservation) == 0x000010, "Member 'PartyBeaconClient_ServerAddOrUpdateReservationRequest::Reservation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ServerCancelReservationRequest \ +static_assert(alignof(PartyBeaconClient_ServerCancelReservationRequest) == 0x000008, "Wrong alignment on PartyBeaconClient_ServerCancelReservationRequest"); \ +static_assert(sizeof(PartyBeaconClient_ServerCancelReservationRequest) == 0x000030, "Wrong size on PartyBeaconClient_ServerCancelReservationRequest"); \ +static_assert(offsetof(PartyBeaconClient_ServerCancelReservationRequest, PartyLeader) == 0x000000, "Member 'PartyBeaconClient_ServerCancelReservationRequest::PartyLeader' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ServerRemoveMemberFromReservationRequest \ +static_assert(alignof(PartyBeaconClient_ServerRemoveMemberFromReservationRequest) == 0x000008, "Wrong alignment on PartyBeaconClient_ServerRemoveMemberFromReservationRequest"); \ +static_assert(sizeof(PartyBeaconClient_ServerRemoveMemberFromReservationRequest) == 0x000068, "Wrong size on PartyBeaconClient_ServerRemoveMemberFromReservationRequest"); \ +static_assert(offsetof(PartyBeaconClient_ServerRemoveMemberFromReservationRequest, SessionId) == 0x000000, "Member 'PartyBeaconClient_ServerRemoveMemberFromReservationRequest::SessionId' has a wrong offset!"); \ +static_assert(offsetof(PartyBeaconClient_ServerRemoveMemberFromReservationRequest, ReservationUpdate) == 0x000010, "Member 'PartyBeaconClient_ServerRemoveMemberFromReservationRequest::ReservationUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ServerReservationRequest \ +static_assert(alignof(PartyBeaconClient_ServerReservationRequest) == 0x000008, "Wrong alignment on PartyBeaconClient_ServerReservationRequest"); \ +static_assert(sizeof(PartyBeaconClient_ServerReservationRequest) == 0x000068, "Wrong size on PartyBeaconClient_ServerReservationRequest"); \ +static_assert(offsetof(PartyBeaconClient_ServerReservationRequest, SessionId) == 0x000000, "Member 'PartyBeaconClient_ServerReservationRequest::SessionId' has a wrong offset!"); \ +static_assert(offsetof(PartyBeaconClient_ServerReservationRequest, Reservation) == 0x000010, "Member 'PartyBeaconClient_ServerReservationRequest::Reservation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PartyBeaconClient_ServerUpdateReservationRequest \ +static_assert(alignof(PartyBeaconClient_ServerUpdateReservationRequest) == 0x000008, "Wrong alignment on PartyBeaconClient_ServerUpdateReservationRequest"); \ +static_assert(sizeof(PartyBeaconClient_ServerUpdateReservationRequest) == 0x000068, "Wrong size on PartyBeaconClient_ServerUpdateReservationRequest"); \ +static_assert(offsetof(PartyBeaconClient_ServerUpdateReservationRequest, SessionId) == 0x000000, "Member 'PartyBeaconClient_ServerUpdateReservationRequest::SessionId' has a wrong offset!"); \ +static_assert(offsetof(PartyBeaconClient_ServerUpdateReservationRequest, ReservationUpdate) == 0x000010, "Member 'PartyBeaconClient_ServerUpdateReservationRequest::ReservationUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APartyBeaconClient \ +static_assert(alignof(APartyBeaconClient) == 0x000008, "Wrong alignment on APartyBeaconClient"); \ +static_assert(sizeof(APartyBeaconClient) == 0x0003F0, "Wrong size on APartyBeaconClient"); \ +static_assert(offsetof(APartyBeaconClient, DestSessionId) == 0x000358, "Member 'APartyBeaconClient::DestSessionId' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconClient, PendingReservation) == 0x000368, "Member 'APartyBeaconClient::PendingReservation' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconClient, RequestType) == 0x0003C0, "Member 'APartyBeaconClient::RequestType' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconClient, bPendingReservationSent) == 0x0003C1, "Member 'APartyBeaconClient::bPendingReservationSent' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconClient, bCancelReservation) == 0x0003C2, "Member 'APartyBeaconClient::bCancelReservation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APartyBeaconHost \ +static_assert(alignof(APartyBeaconHost) == 0x000008, "Wrong alignment on APartyBeaconHost"); \ +static_assert(sizeof(APartyBeaconHost) == 0x000338, "Wrong size on APartyBeaconHost"); \ +static_assert(offsetof(APartyBeaconHost, State) == 0x0002C0, "Member 'APartyBeaconHost::State' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconHost, bLogoutOnSessionTimeout) == 0x000328, "Member 'APartyBeaconHost::bLogoutOnSessionTimeout' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconHost, bIsValidationStrRequired) == 0x000329, "Member 'APartyBeaconHost::bIsValidationStrRequired' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconHost, SessionTimeoutSecs) == 0x00032C, "Member 'APartyBeaconHost::SessionTimeoutSecs' has a wrong offset!"); \ +static_assert(offsetof(APartyBeaconHost, TravelSessionTimeoutSecs) == 0x000330, "Member 'APartyBeaconHost::TravelSessionTimeoutSecs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPartyBeaconState \ +static_assert(alignof(UPartyBeaconState) == 0x000008, "Wrong alignment on UPartyBeaconState"); \ +static_assert(sizeof(UPartyBeaconState) == 0x0000A0, "Wrong size on UPartyBeaconState"); \ +static_assert(offsetof(UPartyBeaconState, SessionName) == 0x000028, "Member 'UPartyBeaconState::SessionName' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, NumConsumedReservations) == 0x000030, "Member 'UPartyBeaconState::NumConsumedReservations' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, MaxReservations) == 0x000034, "Member 'UPartyBeaconState::MaxReservations' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, NumTeams) == 0x000038, "Member 'UPartyBeaconState::NumTeams' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, NumPlayersPerTeam) == 0x00003C, "Member 'UPartyBeaconState::NumPlayersPerTeam' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, TeamAssignmentMethod) == 0x000040, "Member 'UPartyBeaconState::TeamAssignmentMethod' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, ReservedHostTeamNum) == 0x000048, "Member 'UPartyBeaconState::ReservedHostTeamNum' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, ForceTeamNum) == 0x00004C, "Member 'UPartyBeaconState::ForceTeamNum' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, bRestrictCrossConsole) == 0x000050, "Member 'UPartyBeaconState::bRestrictCrossConsole' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, PlatformCrossplayRestrictions) == 0x000058, "Member 'UPartyBeaconState::PlatformCrossplayRestrictions' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, PlatformTypeMapping) == 0x000068, "Member 'UPartyBeaconState::PlatformTypeMapping' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, bEnableRemovalRequests) == 0x000078, "Member 'UPartyBeaconState::bEnableRemovalRequests' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, bRespectCompetitiveIntegrity) == 0x000079, "Member 'UPartyBeaconState::bRespectCompetitiveIntegrity' has a wrong offset!"); \ +static_assert(offsetof(UPartyBeaconState, Reservations) == 0x000080, "Member 'UPartyBeaconState::Reservations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_QuitMatchCallbackProxy_QuitMatch \ +static_assert(alignof(QuitMatchCallbackProxy_QuitMatch) == 0x000008, "Wrong alignment on QuitMatchCallbackProxy_QuitMatch"); \ +static_assert(sizeof(QuitMatchCallbackProxy_QuitMatch) == 0x000030, "Wrong size on QuitMatchCallbackProxy_QuitMatch"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, WorldContextObject) == 0x000000, "Member 'QuitMatchCallbackProxy_QuitMatch::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, PlayerController) == 0x000008, "Member 'QuitMatchCallbackProxy_QuitMatch::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, MatchID) == 0x000010, "Member 'QuitMatchCallbackProxy_QuitMatch::MatchID' has a wrong offset!"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, Outcome) == 0x000020, "Member 'QuitMatchCallbackProxy_QuitMatch::Outcome' has a wrong offset!"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, TurnTimeoutInSeconds) == 0x000024, "Member 'QuitMatchCallbackProxy_QuitMatch::TurnTimeoutInSeconds' has a wrong offset!"); \ +static_assert(offsetof(QuitMatchCallbackProxy_QuitMatch, ReturnValue) == 0x000028, "Member 'QuitMatchCallbackProxy_QuitMatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UQuitMatchCallbackProxy \ +static_assert(alignof(UQuitMatchCallbackProxy) == 0x000008, "Wrong alignment on UQuitMatchCallbackProxy"); \ +static_assert(sizeof(UQuitMatchCallbackProxy) == 0x000078, "Wrong size on UQuitMatchCallbackProxy"); \ +static_assert(offsetof(UQuitMatchCallbackProxy, OnSuccess) == 0x000030, "Member 'UQuitMatchCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UQuitMatchCallbackProxy, OnFailure) == 0x000040, "Member 'UQuitMatchCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowLoginUICallbackProxy_ShowExternalLoginUI \ +static_assert(alignof(ShowLoginUICallbackProxy_ShowExternalLoginUI) == 0x000008, "Wrong alignment on ShowLoginUICallbackProxy_ShowExternalLoginUI"); \ +static_assert(sizeof(ShowLoginUICallbackProxy_ShowExternalLoginUI) == 0x000018, "Wrong size on ShowLoginUICallbackProxy_ShowExternalLoginUI"); \ +static_assert(offsetof(ShowLoginUICallbackProxy_ShowExternalLoginUI, WorldContextObject) == 0x000000, "Member 'ShowLoginUICallbackProxy_ShowExternalLoginUI::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(ShowLoginUICallbackProxy_ShowExternalLoginUI, InPlayerController) == 0x000008, "Member 'ShowLoginUICallbackProxy_ShowExternalLoginUI::InPlayerController' has a wrong offset!"); \ +static_assert(offsetof(ShowLoginUICallbackProxy_ShowExternalLoginUI, ReturnValue) == 0x000010, "Member 'ShowLoginUICallbackProxy_ShowExternalLoginUI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowLoginUICallbackProxy \ +static_assert(alignof(UShowLoginUICallbackProxy) == 0x000008, "Wrong alignment on UShowLoginUICallbackProxy"); \ +static_assert(sizeof(UShowLoginUICallbackProxy) == 0x000060, "Wrong size on UShowLoginUICallbackProxy"); \ +static_assert(offsetof(UShowLoginUICallbackProxy, OnSuccess) == 0x000030, "Member 'UShowLoginUICallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UShowLoginUICallbackProxy, OnFailure) == 0x000040, "Member 'UShowLoginUICallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpectatorBeaconClient_ClientCancelReservationResponse \ +static_assert(alignof(SpectatorBeaconClient_ClientCancelReservationResponse) == 0x000001, "Wrong alignment on SpectatorBeaconClient_ClientCancelReservationResponse"); \ +static_assert(sizeof(SpectatorBeaconClient_ClientCancelReservationResponse) == 0x000001, "Wrong size on SpectatorBeaconClient_ClientCancelReservationResponse"); \ +static_assert(offsetof(SpectatorBeaconClient_ClientCancelReservationResponse, ReservationResponse) == 0x000000, "Member 'SpectatorBeaconClient_ClientCancelReservationResponse::ReservationResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpectatorBeaconClient_ClientReservationResponse \ +static_assert(alignof(SpectatorBeaconClient_ClientReservationResponse) == 0x000001, "Wrong alignment on SpectatorBeaconClient_ClientReservationResponse"); \ +static_assert(sizeof(SpectatorBeaconClient_ClientReservationResponse) == 0x000001, "Wrong size on SpectatorBeaconClient_ClientReservationResponse"); \ +static_assert(offsetof(SpectatorBeaconClient_ClientReservationResponse, ReservationResponse) == 0x000000, "Member 'SpectatorBeaconClient_ClientReservationResponse::ReservationResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpectatorBeaconClient_ClientSendReservationUpdates \ +static_assert(alignof(SpectatorBeaconClient_ClientSendReservationUpdates) == 0x000004, "Wrong alignment on SpectatorBeaconClient_ClientSendReservationUpdates"); \ +static_assert(sizeof(SpectatorBeaconClient_ClientSendReservationUpdates) == 0x000004, "Wrong size on SpectatorBeaconClient_ClientSendReservationUpdates"); \ +static_assert(offsetof(SpectatorBeaconClient_ClientSendReservationUpdates, NumRemainingReservations) == 0x000000, "Member 'SpectatorBeaconClient_ClientSendReservationUpdates::NumRemainingReservations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpectatorBeaconClient_ServerCancelReservationRequest \ +static_assert(alignof(SpectatorBeaconClient_ServerCancelReservationRequest) == 0x000008, "Wrong alignment on SpectatorBeaconClient_ServerCancelReservationRequest"); \ +static_assert(sizeof(SpectatorBeaconClient_ServerCancelReservationRequest) == 0x000030, "Wrong size on SpectatorBeaconClient_ServerCancelReservationRequest"); \ +static_assert(offsetof(SpectatorBeaconClient_ServerCancelReservationRequest, Spectator) == 0x000000, "Member 'SpectatorBeaconClient_ServerCancelReservationRequest::Spectator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpectatorBeaconClient_ServerReservationRequest \ +static_assert(alignof(SpectatorBeaconClient_ServerReservationRequest) == 0x000008, "Wrong alignment on SpectatorBeaconClient_ServerReservationRequest"); \ +static_assert(sizeof(SpectatorBeaconClient_ServerReservationRequest) == 0x000098, "Wrong size on SpectatorBeaconClient_ServerReservationRequest"); \ +static_assert(offsetof(SpectatorBeaconClient_ServerReservationRequest, SessionId) == 0x000000, "Member 'SpectatorBeaconClient_ServerReservationRequest::SessionId' has a wrong offset!"); \ +static_assert(offsetof(SpectatorBeaconClient_ServerReservationRequest, Reservation) == 0x000010, "Member 'SpectatorBeaconClient_ServerReservationRequest::Reservation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASpectatorBeaconClient \ +static_assert(alignof(ASpectatorBeaconClient) == 0x000008, "Wrong alignment on ASpectatorBeaconClient"); \ +static_assert(sizeof(ASpectatorBeaconClient) == 0x000420, "Wrong size on ASpectatorBeaconClient"); \ +static_assert(offsetof(ASpectatorBeaconClient, DestSessionId) == 0x000358, "Member 'ASpectatorBeaconClient::DestSessionId' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconClient, PendingReservation) == 0x000368, "Member 'ASpectatorBeaconClient::PendingReservation' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconClient, RequestType) == 0x0003F0, "Member 'ASpectatorBeaconClient::RequestType' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconClient, bPendingReservationSent) == 0x0003F1, "Member 'ASpectatorBeaconClient::bPendingReservationSent' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconClient, bCancelReservation) == 0x0003F2, "Member 'ASpectatorBeaconClient::bCancelReservation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASpectatorBeaconHost \ +static_assert(alignof(ASpectatorBeaconHost) == 0x000008, "Wrong alignment on ASpectatorBeaconHost"); \ +static_assert(sizeof(ASpectatorBeaconHost) == 0x000338, "Wrong size on ASpectatorBeaconHost"); \ +static_assert(offsetof(ASpectatorBeaconHost, State) == 0x0002C0, "Member 'ASpectatorBeaconHost::State' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconHost, bLogoutOnSessionTimeout) == 0x000328, "Member 'ASpectatorBeaconHost::bLogoutOnSessionTimeout' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconHost, bIsValidationStrRequired) == 0x000329, "Member 'ASpectatorBeaconHost::bIsValidationStrRequired' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconHost, SessionTimeoutSecs) == 0x00032C, "Member 'ASpectatorBeaconHost::SessionTimeoutSecs' has a wrong offset!"); \ +static_assert(offsetof(ASpectatorBeaconHost, TravelSessionTimeoutSecs) == 0x000330, "Member 'ASpectatorBeaconHost::TravelSessionTimeoutSecs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpectatorBeaconState \ +static_assert(alignof(USpectatorBeaconState) == 0x000008, "Wrong alignment on USpectatorBeaconState"); \ +static_assert(sizeof(USpectatorBeaconState) == 0x000060, "Wrong size on USpectatorBeaconState"); \ +static_assert(offsetof(USpectatorBeaconState, SessionName) == 0x000028, "Member 'USpectatorBeaconState::SessionName' has a wrong offset!"); \ +static_assert(offsetof(USpectatorBeaconState, NumConsumedReservations) == 0x000030, "Member 'USpectatorBeaconState::NumConsumedReservations' has a wrong offset!"); \ +static_assert(offsetof(USpectatorBeaconState, MaxReservations) == 0x000034, "Member 'USpectatorBeaconState::MaxReservations' has a wrong offset!"); \ +static_assert(offsetof(USpectatorBeaconState, bRestrictCrossConsole) == 0x000038, "Member 'USpectatorBeaconState::bRestrictCrossConsole' has a wrong offset!"); \ +static_assert(offsetof(USpectatorBeaconState, Reservations) == 0x000040, "Member 'USpectatorBeaconState::Reservations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATestBeaconClient \ +static_assert(alignof(ATestBeaconClient) == 0x000008, "Wrong alignment on ATestBeaconClient"); \ +static_assert(sizeof(ATestBeaconClient) == 0x000328, "Wrong size on ATestBeaconClient"); \ + +#define DUMPER7_ASSERTS_ATestBeaconHost \ +static_assert(alignof(ATestBeaconHost) == 0x000008, "Wrong alignment on ATestBeaconHost"); \ +static_assert(sizeof(ATestBeaconHost) == 0x0002C0, "Wrong size on ATestBeaconHost"); \ + +#define DUMPER7_ASSERTS_TurnBasedBlueprintLibrary_GetIsMyTurn \ +static_assert(alignof(TurnBasedBlueprintLibrary_GetIsMyTurn) == 0x000008, "Wrong alignment on TurnBasedBlueprintLibrary_GetIsMyTurn"); \ +static_assert(sizeof(TurnBasedBlueprintLibrary_GetIsMyTurn) == 0x000028, "Wrong size on TurnBasedBlueprintLibrary_GetIsMyTurn"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetIsMyTurn, WorldContextObject) == 0x000000, "Member 'TurnBasedBlueprintLibrary_GetIsMyTurn::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetIsMyTurn, PlayerController) == 0x000008, "Member 'TurnBasedBlueprintLibrary_GetIsMyTurn::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetIsMyTurn, MatchID) == 0x000010, "Member 'TurnBasedBlueprintLibrary_GetIsMyTurn::MatchID' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetIsMyTurn, bIsMyTurn) == 0x000020, "Member 'TurnBasedBlueprintLibrary_GetIsMyTurn::bIsMyTurn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TurnBasedBlueprintLibrary_GetMyPlayerIndex \ +static_assert(alignof(TurnBasedBlueprintLibrary_GetMyPlayerIndex) == 0x000008, "Wrong alignment on TurnBasedBlueprintLibrary_GetMyPlayerIndex"); \ +static_assert(sizeof(TurnBasedBlueprintLibrary_GetMyPlayerIndex) == 0x000028, "Wrong size on TurnBasedBlueprintLibrary_GetMyPlayerIndex"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetMyPlayerIndex, WorldContextObject) == 0x000000, "Member 'TurnBasedBlueprintLibrary_GetMyPlayerIndex::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetMyPlayerIndex, PlayerController) == 0x000008, "Member 'TurnBasedBlueprintLibrary_GetMyPlayerIndex::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetMyPlayerIndex, MatchID) == 0x000010, "Member 'TurnBasedBlueprintLibrary_GetMyPlayerIndex::MatchID' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetMyPlayerIndex, PlayerIndex) == 0x000020, "Member 'TurnBasedBlueprintLibrary_GetMyPlayerIndex::PlayerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TurnBasedBlueprintLibrary_GetPlayerDisplayName \ +static_assert(alignof(TurnBasedBlueprintLibrary_GetPlayerDisplayName) == 0x000008, "Wrong alignment on TurnBasedBlueprintLibrary_GetPlayerDisplayName"); \ +static_assert(sizeof(TurnBasedBlueprintLibrary_GetPlayerDisplayName) == 0x000038, "Wrong size on TurnBasedBlueprintLibrary_GetPlayerDisplayName"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetPlayerDisplayName, WorldContextObject) == 0x000000, "Member 'TurnBasedBlueprintLibrary_GetPlayerDisplayName::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetPlayerDisplayName, PlayerController) == 0x000008, "Member 'TurnBasedBlueprintLibrary_GetPlayerDisplayName::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetPlayerDisplayName, MatchID) == 0x000010, "Member 'TurnBasedBlueprintLibrary_GetPlayerDisplayName::MatchID' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetPlayerDisplayName, PlayerIndex) == 0x000020, "Member 'TurnBasedBlueprintLibrary_GetPlayerDisplayName::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_GetPlayerDisplayName, PlayerDisplayName) == 0x000028, "Member 'TurnBasedBlueprintLibrary_GetPlayerDisplayName::PlayerDisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject \ +static_assert(alignof(TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject) == 0x000008, "Wrong alignment on TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject"); \ +static_assert(sizeof(TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject) == 0x000018, "Wrong size on TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject, WorldContextObject) == 0x000000, "Member 'TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject, PlayerController) == 0x000008, "Member 'TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject, Object) == 0x000010, "Member 'TurnBasedBlueprintLibrary_RegisterTurnBasedMatchInterfaceObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTurnBasedBlueprintLibrary \ +static_assert(alignof(UTurnBasedBlueprintLibrary) == 0x000008, "Wrong alignment on UTurnBasedBlueprintLibrary"); \ +static_assert(sizeof(UTurnBasedBlueprintLibrary) == 0x000028, "Wrong size on UTurnBasedBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_VoipListenerSynthComponent_IsIdling \ +static_assert(alignof(VoipListenerSynthComponent_IsIdling) == 0x000001, "Wrong alignment on VoipListenerSynthComponent_IsIdling"); \ +static_assert(sizeof(VoipListenerSynthComponent_IsIdling) == 0x000001, "Wrong size on VoipListenerSynthComponent_IsIdling"); \ +static_assert(offsetof(VoipListenerSynthComponent_IsIdling, ReturnValue) == 0x000000, "Member 'VoipListenerSynthComponent_IsIdling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVoipListenerSynthComponent \ +static_assert(alignof(UVoipListenerSynthComponent) == 0x000010, "Wrong alignment on UVoipListenerSynthComponent"); \ +static_assert(sizeof(UVoipListenerSynthComponent) == 0x000960, "Wrong size on UVoipListenerSynthComponent"); \ + +#define DUMPER7_ASSERTS_UNetConnectionEOS \ +static_assert(alignof(UNetConnectionEOS) == 0x000008, "Wrong alignment on UNetConnectionEOS"); \ +static_assert(sizeof(UNetConnectionEOS) == 0x001E90, "Wrong size on UNetConnectionEOS"); \ + +#define DUMPER7_ASSERTS_UNetDriverEOSBase \ +static_assert(alignof(UNetDriverEOSBase) == 0x000008, "Wrong alignment on UNetDriverEOSBase"); \ +static_assert(sizeof(UNetDriverEOSBase) == 0x0008A8, "Wrong size on UNetDriverEOSBase"); \ +static_assert(offsetof(UNetDriverEOSBase, bIsPassthrough) == 0x0008A0, "Member 'UNetDriverEOSBase::bIsPassthrough' has a wrong offset!"); \ +static_assert(offsetof(UNetDriverEOSBase, bIsUsingP2PSockets) == 0x0008A1, "Member 'UNetDriverEOSBase::bIsUsingP2PSockets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueLeft_Controller_C \ +static_assert(alignof(UDialogueLeft_Controller_C) == 0x000010, "Wrong alignment on UDialogueLeft_Controller_C"); \ +static_assert(sizeof(UDialogueLeft_Controller_C) == 0x0007B0, "Wrong size on UDialogueLeft_Controller_C"); \ + +#define DUMPER7_ASSERTS_FArtifactSettings \ +static_assert(alignof(FArtifactSettings) == 0x000008, "Wrong alignment on FArtifactSettings"); \ +static_assert(sizeof(FArtifactSettings) == 0x000070, "Wrong size on FArtifactSettings"); \ +static_assert(offsetof(FArtifactSettings, ArtifactName) == 0x000000, "Member 'FArtifactSettings::ArtifactName' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, ClientId) == 0x000010, "Member 'FArtifactSettings::ClientId' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, ClientSecret) == 0x000020, "Member 'FArtifactSettings::ClientSecret' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, ProductId) == 0x000030, "Member 'FArtifactSettings::ProductId' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, SandboxId) == 0x000040, "Member 'FArtifactSettings::SandboxId' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, DeploymentId) == 0x000050, "Member 'FArtifactSettings::DeploymentId' has a wrong offset!"); \ +static_assert(offsetof(FArtifactSettings, ClientEncryptionKey) == 0x000060, "Member 'FArtifactSettings::ClientEncryptionKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetDriverEOS \ +static_assert(alignof(UNetDriverEOS) == 0x000008, "Wrong alignment on UNetDriverEOS"); \ +static_assert(sizeof(UNetDriverEOS) == 0x0008A8, "Wrong size on UNetDriverEOS"); \ + +#define DUMPER7_ASSERTS_UEOSArtifactSettings \ +static_assert(alignof(UEOSArtifactSettings) == 0x000008, "Wrong alignment on UEOSArtifactSettings"); \ +static_assert(sizeof(UEOSArtifactSettings) == 0x000030, "Wrong size on UEOSArtifactSettings"); \ + +#define DUMPER7_ASSERTS_UEOSSettings \ +static_assert(alignof(UEOSSettings) == 0x000008, "Wrong alignment on UEOSSettings"); \ +static_assert(sizeof(UEOSSettings) == 0x0000A0, "Wrong size on UEOSSettings"); \ +static_assert(offsetof(UEOSSettings, CacheDir) == 0x000038, "Member 'UEOSSettings::CacheDir' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, DefaultArtifactName) == 0x000048, "Member 'UEOSSettings::DefaultArtifactName' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, TickBudgetInMilliseconds) == 0x000058, "Member 'UEOSSettings::TickBudgetInMilliseconds' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bEnableOverlay) == 0x00005C, "Member 'UEOSSettings::bEnableOverlay' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bEnableSocialOverlay) == 0x00005D, "Member 'UEOSSettings::bEnableSocialOverlay' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bEnableEditorOverlay) == 0x00005E, "Member 'UEOSSettings::bEnableEditorOverlay' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bShouldEnforceBeingLaunchedByEGS) == 0x00005F, "Member 'UEOSSettings::bShouldEnforceBeingLaunchedByEGS' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, TitleStorageTags) == 0x000060, "Member 'UEOSSettings::TitleStorageTags' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, TitleStorageReadChunkLength) == 0x000070, "Member 'UEOSSettings::TitleStorageReadChunkLength' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, Artifacts) == 0x000078, "Member 'UEOSSettings::Artifacts' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, AuthScopeFlags) == 0x000088, "Member 'UEOSSettings::AuthScopeFlags' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bUseEAS) == 0x000098, "Member 'UEOSSettings::bUseEAS' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bUseEOSConnect) == 0x000099, "Member 'UEOSSettings::bUseEOSConnect' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bMirrorStatsToEOS) == 0x00009A, "Member 'UEOSSettings::bMirrorStatsToEOS' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bMirrorAchievementsToEOS) == 0x00009B, "Member 'UEOSSettings::bMirrorAchievementsToEOS' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bUseEOSSessions) == 0x00009C, "Member 'UEOSSettings::bUseEOSSessions' has a wrong offset!"); \ +static_assert(offsetof(UEOSSettings, bMirrorPresenceToEAS) == 0x00009D, "Member 'UEOSSettings::bMirrorPresenceToEAS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout \ +static_assert(alignof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout) == 0x000008, "Wrong alignment on TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout"); \ +static_assert(sizeof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout) == 0x000028, "Wrong size on TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout"); \ +static_assert(offsetof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout, EntryPoint) == 0x000000, "Member 'TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout, CallFunc_IsDebug_ReturnValue) == 0x000004, "Member 'TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout::CallFunc_IsDebug_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout, CallFunc_GetVersionInfo_ReturnValue) == 0x000008, "Member 'TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout::CallFunc_GetVersionInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout, CallFunc_GetVersionDate_ReturnValue) == 0x000018, "Member 'TCR_SimpleLayout_C_ExecuteUbergraph_TCR_SimpleLayout::CallFunc_GetVersionDate_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_SimpleLayout_C \ +static_assert(alignof(UTCR_SimpleLayout_C) == 0x000008, "Wrong alignment on UTCR_SimpleLayout_C"); \ +static_assert(sizeof(UTCR_SimpleLayout_C) == 0x000480, "Wrong size on UTCR_SimpleLayout_C"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, UberGraphFrame) == 0x000450, "Member 'UTCR_SimpleLayout_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, Content) == 0x000458, "Member 'UTCR_SimpleLayout_C::Content' has a wrong offset!"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, Content_Mid) == 0x000460, "Member 'UTCR_SimpleLayout_C::Content_Mid' has a wrong offset!"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, date) == 0x000468, "Member 'UTCR_SimpleLayout_C::date' has a wrong offset!"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, Layer_0) == 0x000470, "Member 'UTCR_SimpleLayout_C::Layer_0' has a wrong offset!"); \ +static_assert(offsetof(UTCR_SimpleLayout_C, Version) == 0x000478, "Member 'UTCR_SimpleLayout_C::Version' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraDlcSpecification \ +static_assert(alignof(FHeraDlcSpecification) == 0x000008, "Wrong alignment on FHeraDlcSpecification"); \ +static_assert(sizeof(FHeraDlcSpecification) == 0x000050, "Wrong size on FHeraDlcSpecification"); \ +static_assert(offsetof(FHeraDlcSpecification, DlcTitle) == 0x000000, "Member 'FHeraDlcSpecification::DlcTitle' has a wrong offset!"); \ +static_assert(offsetof(FHeraDlcSpecification, DlcDescription) == 0x000010, "Member 'FHeraDlcSpecification::DlcDescription' has a wrong offset!"); \ +static_assert(offsetof(FHeraDlcSpecification, ProductIdentifiers) == 0x000020, "Member 'FHeraDlcSpecification::ProductIdentifiers' has a wrong offset!"); \ +static_assert(offsetof(FHeraDlcSpecification, ProductIdentifier) == 0x000030, "Member 'FHeraDlcSpecification::ProductIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FHeraDlcSpecification, AssociatedProperties) == 0x000038, "Member 'FHeraDlcSpecification::AssociatedProperties' has a wrong offset!"); \ +static_assert(offsetof(FHeraDlcSpecification, bRequiresLicense) == 0x000048, "Member 'FHeraDlcSpecification::bRequiresLicense' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDlcSpecificationAsset \ +static_assert(alignof(UHeraDlcSpecificationAsset) == 0x000008, "Wrong alignment on UHeraDlcSpecificationAsset"); \ +static_assert(sizeof(UHeraDlcSpecificationAsset) == 0x000040, "Wrong size on UHeraDlcSpecificationAsset"); \ +static_assert(offsetof(UHeraDlcSpecificationAsset, DlcSpecifications) == 0x000030, "Member 'UHeraDlcSpecificationAsset::DlcSpecifications' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDLCSubsystemSettings \ +static_assert(alignof(UHeraDLCSubsystemSettings) == 0x000008, "Wrong alignment on UHeraDLCSubsystemSettings"); \ +static_assert(sizeof(UHeraDLCSubsystemSettings) == 0x000058, "Wrong size on UHeraDLCSubsystemSettings"); \ +static_assert(offsetof(UHeraDLCSubsystemSettings, DlcSpecificationAsset) == 0x000038, "Member 'UHeraDLCSubsystemSettings::DlcSpecificationAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDLCSettings \ +static_assert(alignof(UHeraDLCSettings) == 0x000008, "Wrong alignment on UHeraDLCSettings"); \ +static_assert(sizeof(UHeraDLCSettings) == 0x000078, "Wrong size on UHeraDLCSettings"); \ +static_assert(offsetof(UHeraDLCSettings, DLCPlatformIdMap) == 0x000028, "Member 'UHeraDLCSettings::DLCPlatformIdMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraDLCSubsystem_IsDLCInitialised \ +static_assert(alignof(HeraDLCSubsystem_IsDLCInitialised) == 0x000001, "Wrong alignment on HeraDLCSubsystem_IsDLCInitialised"); \ +static_assert(sizeof(HeraDLCSubsystem_IsDLCInitialised) == 0x000001, "Wrong size on HeraDLCSubsystem_IsDLCInitialised"); \ +static_assert(offsetof(HeraDLCSubsystem_IsDLCInitialised, ReturnValue) == 0x000000, "Member 'HeraDLCSubsystem_IsDLCInitialised::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraDLCSubsystem \ +static_assert(alignof(UHeraDLCSubsystem) == 0x000008, "Wrong alignment on UHeraDLCSubsystem"); \ +static_assert(sizeof(UHeraDLCSubsystem) == 0x000098, "Wrong size on UHeraDLCSubsystem"); \ +static_assert(offsetof(UHeraDLCSubsystem, DlcEntitlementsChanged) == 0x000030, "Member 'UHeraDLCSubsystem::DlcEntitlementsChanged' has a wrong offset!"); \ +static_assert(offsetof(UHeraDLCSubsystem, DlcSpecificationAsset) == 0x000050, "Member 'UHeraDLCSubsystem::DlcSpecificationAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar \ +static_assert(alignof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar) == 0x000008, "Wrong alignment on HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar"); \ +static_assert(sizeof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar) == 0x000048, "Wrong size on HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, EntryPoint) == 0x000000, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_DynamicCast_AsWrestler_HUDIn_Game) == 0x000010, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_DynamicCast_AsWrestler_HUDIn_Game' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_Event_InAutomata) == 0x000020, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_Event_InState) == 0x000028, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000030, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_DynamicCast_AsWBP_Boss_Health_Meter) == 0x000038, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_DynamicCast_AsWBP_Boss_Health_Meter' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'HideBossHealthBar_C_ExecuteUbergraph_HideBossHealthBar::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HideBossHealthBar_C_ReceiveExecute \ +static_assert(alignof(HideBossHealthBar_C_ReceiveExecute) == 0x000008, "Wrong alignment on HideBossHealthBar_C_ReceiveExecute"); \ +static_assert(sizeof(HideBossHealthBar_C_ReceiveExecute) == 0x000010, "Wrong size on HideBossHealthBar_C_ReceiveExecute"); \ +static_assert(offsetof(HideBossHealthBar_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'HideBossHealthBar_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HideBossHealthBar_C_ReceiveExecute, InState) == 0x000008, "Member 'HideBossHealthBar_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHideBossHealthBar_C \ +static_assert(alignof(UHideBossHealthBar_C) == 0x000008, "Wrong alignment on UHideBossHealthBar_C"); \ +static_assert(sizeof(UHideBossHealthBar_C) == 0x000090, "Wrong size on UHideBossHealthBar_C"); \ +static_assert(offsetof(UHideBossHealthBar_C, UberGraphFrame) == 0x000088, "Member 'UHideBossHealthBar_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInkpotValue \ +static_assert(alignof(FInkpotValue) == 0x000008, "Wrong alignment on FInkpotValue"); \ +static_assert(sizeof(FInkpotValue) == 0x000010, "Wrong size on FInkpotValue"); \ + +#define DUMPER7_ASSERTS_FInkVariableDescription \ +static_assert(alignof(FInkVariableDescription) == 0x000008, "Wrong alignment on FInkVariableDescription"); \ +static_assert(sizeof(FInkVariableDescription) == 0x000018, "Wrong size on FInkVariableDescription"); \ +static_assert(offsetof(FInkVariableDescription, VariableName) == 0x000000, "Member 'FInkVariableDescription::VariableName' has a wrong offset!"); \ +static_assert(offsetof(FInkVariableDescription, VariableType) == 0x000010, "Member 'FInkVariableDescription::VariableType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_DefaultInkpotValue \ +static_assert(alignof(InkpotLibrary_DefaultInkpotValue) == 0x000008, "Wrong alignment on InkpotLibrary_DefaultInkpotValue"); \ +static_assert(sizeof(InkpotLibrary_DefaultInkpotValue) == 0x000010, "Wrong size on InkpotLibrary_DefaultInkpotValue"); \ +static_assert(offsetof(InkpotLibrary_DefaultInkpotValue, ReturnValue) == 0x000000, "Member 'InkpotLibrary_DefaultInkpotValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotArrayValueAsBool \ +static_assert(alignof(InkpotLibrary_InkpotArrayValueAsBool) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotArrayValueAsBool"); \ +static_assert(sizeof(InkpotLibrary_InkpotArrayValueAsBool) == 0x000018, "Wrong size on InkpotLibrary_InkpotArrayValueAsBool"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsBool, Values) == 0x000000, "Member 'InkpotLibrary_InkpotArrayValueAsBool::Values' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsBool, Index_0) == 0x000010, "Member 'InkpotLibrary_InkpotArrayValueAsBool::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsBool, ReturnValue) == 0x000014, "Member 'InkpotLibrary_InkpotArrayValueAsBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotArrayValueAsFloat \ +static_assert(alignof(InkpotLibrary_InkpotArrayValueAsFloat) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotArrayValueAsFloat"); \ +static_assert(sizeof(InkpotLibrary_InkpotArrayValueAsFloat) == 0x000018, "Wrong size on InkpotLibrary_InkpotArrayValueAsFloat"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsFloat, Values) == 0x000000, "Member 'InkpotLibrary_InkpotArrayValueAsFloat::Values' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsFloat, Index_0) == 0x000010, "Member 'InkpotLibrary_InkpotArrayValueAsFloat::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsFloat, ReturnValue) == 0x000014, "Member 'InkpotLibrary_InkpotArrayValueAsFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotArrayValueAsInt \ +static_assert(alignof(InkpotLibrary_InkpotArrayValueAsInt) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotArrayValueAsInt"); \ +static_assert(sizeof(InkpotLibrary_InkpotArrayValueAsInt) == 0x000018, "Wrong size on InkpotLibrary_InkpotArrayValueAsInt"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsInt, Values) == 0x000000, "Member 'InkpotLibrary_InkpotArrayValueAsInt::Values' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsInt, Index_0) == 0x000010, "Member 'InkpotLibrary_InkpotArrayValueAsInt::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsInt, ReturnValue) == 0x000014, "Member 'InkpotLibrary_InkpotArrayValueAsInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotArrayValueAsList \ +static_assert(alignof(InkpotLibrary_InkpotArrayValueAsList) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotArrayValueAsList"); \ +static_assert(sizeof(InkpotLibrary_InkpotArrayValueAsList) == 0x000028, "Wrong size on InkpotLibrary_InkpotArrayValueAsList"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsList, Values) == 0x000000, "Member 'InkpotLibrary_InkpotArrayValueAsList::Values' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsList, Index_0) == 0x000010, "Member 'InkpotLibrary_InkpotArrayValueAsList::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsList, ReturnValue) == 0x000018, "Member 'InkpotLibrary_InkpotArrayValueAsList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotArrayValueAsString \ +static_assert(alignof(InkpotLibrary_InkpotArrayValueAsString) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotArrayValueAsString"); \ +static_assert(sizeof(InkpotLibrary_InkpotArrayValueAsString) == 0x000028, "Wrong size on InkpotLibrary_InkpotArrayValueAsString"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsString, Values) == 0x000000, "Member 'InkpotLibrary_InkpotArrayValueAsString::Values' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsString, Index_0) == 0x000010, "Member 'InkpotLibrary_InkpotArrayValueAsString::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotArrayValueAsString, ReturnValue) == 0x000018, "Member 'InkpotLibrary_InkpotArrayValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotValueAsBool \ +static_assert(alignof(InkpotLibrary_InkpotValueAsBool) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotValueAsBool"); \ +static_assert(sizeof(InkpotLibrary_InkpotValueAsBool) == 0x000018, "Wrong size on InkpotLibrary_InkpotValueAsBool"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsBool, Value) == 0x000000, "Member 'InkpotLibrary_InkpotValueAsBool::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsBool, ReturnValue) == 0x000010, "Member 'InkpotLibrary_InkpotValueAsBool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotValueAsFloat \ +static_assert(alignof(InkpotLibrary_InkpotValueAsFloat) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotValueAsFloat"); \ +static_assert(sizeof(InkpotLibrary_InkpotValueAsFloat) == 0x000018, "Wrong size on InkpotLibrary_InkpotValueAsFloat"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsFloat, Value) == 0x000000, "Member 'InkpotLibrary_InkpotValueAsFloat::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsFloat, ReturnValue) == 0x000010, "Member 'InkpotLibrary_InkpotValueAsFloat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotValueAsInt \ +static_assert(alignof(InkpotLibrary_InkpotValueAsInt) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotValueAsInt"); \ +static_assert(sizeof(InkpotLibrary_InkpotValueAsInt) == 0x000018, "Wrong size on InkpotLibrary_InkpotValueAsInt"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsInt, Value) == 0x000000, "Member 'InkpotLibrary_InkpotValueAsInt::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsInt, ReturnValue) == 0x000010, "Member 'InkpotLibrary_InkpotValueAsInt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotValueAsList \ +static_assert(alignof(InkpotLibrary_InkpotValueAsList) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotValueAsList"); \ +static_assert(sizeof(InkpotLibrary_InkpotValueAsList) == 0x000020, "Wrong size on InkpotLibrary_InkpotValueAsList"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsList, Value) == 0x000000, "Member 'InkpotLibrary_InkpotValueAsList::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsList, ReturnValue) == 0x000010, "Member 'InkpotLibrary_InkpotValueAsList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_InkpotValueAsString \ +static_assert(alignof(InkpotLibrary_InkpotValueAsString) == 0x000008, "Wrong alignment on InkpotLibrary_InkpotValueAsString"); \ +static_assert(sizeof(InkpotLibrary_InkpotValueAsString) == 0x000020, "Wrong size on InkpotLibrary_InkpotValueAsString"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsString, Value) == 0x000000, "Member 'InkpotLibrary_InkpotValueAsString::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_InkpotValueAsString, ReturnValue) == 0x000010, "Member 'InkpotLibrary_InkpotValueAsString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_MakeBoolInkpotValue \ +static_assert(alignof(InkpotLibrary_MakeBoolInkpotValue) == 0x000008, "Wrong alignment on InkpotLibrary_MakeBoolInkpotValue"); \ +static_assert(sizeof(InkpotLibrary_MakeBoolInkpotValue) == 0x000018, "Wrong size on InkpotLibrary_MakeBoolInkpotValue"); \ +static_assert(offsetof(InkpotLibrary_MakeBoolInkpotValue, bValue) == 0x000000, "Member 'InkpotLibrary_MakeBoolInkpotValue::bValue' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_MakeBoolInkpotValue, ReturnValue) == 0x000008, "Member 'InkpotLibrary_MakeBoolInkpotValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_MakeFloatInkpotValue \ +static_assert(alignof(InkpotLibrary_MakeFloatInkpotValue) == 0x000008, "Wrong alignment on InkpotLibrary_MakeFloatInkpotValue"); \ +static_assert(sizeof(InkpotLibrary_MakeFloatInkpotValue) == 0x000018, "Wrong size on InkpotLibrary_MakeFloatInkpotValue"); \ +static_assert(offsetof(InkpotLibrary_MakeFloatInkpotValue, Value) == 0x000000, "Member 'InkpotLibrary_MakeFloatInkpotValue::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_MakeFloatInkpotValue, ReturnValue) == 0x000008, "Member 'InkpotLibrary_MakeFloatInkpotValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_MakeInkpotList \ +static_assert(alignof(InkpotLibrary_MakeInkpotList) == 0x000008, "Wrong alignment on InkpotLibrary_MakeInkpotList"); \ +static_assert(sizeof(InkpotLibrary_MakeInkpotList) == 0x000020, "Wrong size on InkpotLibrary_MakeInkpotList"); \ +static_assert(offsetof(InkpotLibrary_MakeInkpotList, Value) == 0x000000, "Member 'InkpotLibrary_MakeInkpotList::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_MakeInkpotList, ReturnValue) == 0x000010, "Member 'InkpotLibrary_MakeInkpotList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_MakeIntInkpotValue \ +static_assert(alignof(InkpotLibrary_MakeIntInkpotValue) == 0x000008, "Wrong alignment on InkpotLibrary_MakeIntInkpotValue"); \ +static_assert(sizeof(InkpotLibrary_MakeIntInkpotValue) == 0x000018, "Wrong size on InkpotLibrary_MakeIntInkpotValue"); \ +static_assert(offsetof(InkpotLibrary_MakeIntInkpotValue, Value) == 0x000000, "Member 'InkpotLibrary_MakeIntInkpotValue::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_MakeIntInkpotValue, ReturnValue) == 0x000008, "Member 'InkpotLibrary_MakeIntInkpotValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkpotLibrary_MakeStringInkpotValue \ +static_assert(alignof(InkpotLibrary_MakeStringInkpotValue) == 0x000008, "Wrong alignment on InkpotLibrary_MakeStringInkpotValue"); \ +static_assert(sizeof(InkpotLibrary_MakeStringInkpotValue) == 0x000020, "Wrong size on InkpotLibrary_MakeStringInkpotValue"); \ +static_assert(offsetof(InkpotLibrary_MakeStringInkpotValue, Value) == 0x000000, "Member 'InkpotLibrary_MakeStringInkpotValue::Value' has a wrong offset!"); \ +static_assert(offsetof(InkpotLibrary_MakeStringInkpotValue, ReturnValue) == 0x000010, "Member 'InkpotLibrary_MakeStringInkpotValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInkpotLibrary \ +static_assert(alignof(UInkpotLibrary) == 0x000008, "Wrong alignment on UInkpotLibrary"); \ +static_assert(sizeof(UInkpotLibrary) == 0x000028, "Wrong size on UInkpotLibrary"); \ + +#define DUMPER7_ASSERTS_UInkStoryController \ +static_assert(alignof(UInkStoryController) == 0x000008, "Wrong alignment on UInkStoryController"); \ +static_assert(sizeof(UInkStoryController) == 0x000098, "Wrong size on UInkStoryController"); \ +static_assert(offsetof(UInkStoryController, ActiveStories) == 0x000038, "Member 'UInkStoryController::ActiveStories' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkSubsystem_OnInkBoolChanged \ +static_assert(alignof(InkSubsystem_OnInkBoolChanged) == 0x000008, "Wrong alignment on InkSubsystem_OnInkBoolChanged"); \ +static_assert(sizeof(InkSubsystem_OnInkBoolChanged) == 0x000020, "Wrong size on InkSubsystem_OnInkBoolChanged"); \ +static_assert(offsetof(InkSubsystem_OnInkBoolChanged, InStory) == 0x000000, "Member 'InkSubsystem_OnInkBoolChanged::InStory' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkBoolChanged, InkVariableName) == 0x000008, "Member 'InkSubsystem_OnInkBoolChanged::InkVariableName' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkBoolChanged, Value) == 0x000018, "Member 'InkSubsystem_OnInkBoolChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkSubsystem_OnInkFloatChanged \ +static_assert(alignof(InkSubsystem_OnInkFloatChanged) == 0x000008, "Wrong alignment on InkSubsystem_OnInkFloatChanged"); \ +static_assert(sizeof(InkSubsystem_OnInkFloatChanged) == 0x000020, "Wrong size on InkSubsystem_OnInkFloatChanged"); \ +static_assert(offsetof(InkSubsystem_OnInkFloatChanged, InStory) == 0x000000, "Member 'InkSubsystem_OnInkFloatChanged::InStory' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkFloatChanged, InkVariableName) == 0x000008, "Member 'InkSubsystem_OnInkFloatChanged::InkVariableName' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkFloatChanged, Value) == 0x000018, "Member 'InkSubsystem_OnInkFloatChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkSubsystem_OnInkIntegerChanged \ +static_assert(alignof(InkSubsystem_OnInkIntegerChanged) == 0x000008, "Wrong alignment on InkSubsystem_OnInkIntegerChanged"); \ +static_assert(sizeof(InkSubsystem_OnInkIntegerChanged) == 0x000020, "Wrong size on InkSubsystem_OnInkIntegerChanged"); \ +static_assert(offsetof(InkSubsystem_OnInkIntegerChanged, InStory) == 0x000000, "Member 'InkSubsystem_OnInkIntegerChanged::InStory' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkIntegerChanged, InkVariableName) == 0x000008, "Member 'InkSubsystem_OnInkIntegerChanged::InkVariableName' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkIntegerChanged, Value) == 0x000018, "Member 'InkSubsystem_OnInkIntegerChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InkSubsystem_OnInkStringChanged \ +static_assert(alignof(InkSubsystem_OnInkStringChanged) == 0x000008, "Wrong alignment on InkSubsystem_OnInkStringChanged"); \ +static_assert(sizeof(InkSubsystem_OnInkStringChanged) == 0x000028, "Wrong size on InkSubsystem_OnInkStringChanged"); \ +static_assert(offsetof(InkSubsystem_OnInkStringChanged, InStory) == 0x000000, "Member 'InkSubsystem_OnInkStringChanged::InStory' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkStringChanged, InkVariableName) == 0x000008, "Member 'InkSubsystem_OnInkStringChanged::InkVariableName' has a wrong offset!"); \ +static_assert(offsetof(InkSubsystem_OnInkStringChanged, Value) == 0x000018, "Member 'InkSubsystem_OnInkStringChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInkSubsystem \ +static_assert(alignof(UInkSubsystem) == 0x000008, "Wrong alignment on UInkSubsystem"); \ +static_assert(sizeof(UInkSubsystem) == 0x000080, "Wrong size on UInkSubsystem"); \ + +#define DUMPER7_ASSERTS_UStory \ +static_assert(alignof(UStory) == 0x000008, "Wrong alignment on UStory"); \ +static_assert(sizeof(UStory) == 0x000128, "Wrong size on UStory"); \ +static_assert(offsetof(UStory, DopeSheet) == 0x000030, "Member 'UStory::DopeSheet' has a wrong offset!"); \ +static_assert(offsetof(UStory, PropertyToInkVariableMap) == 0x000048, "Member 'UStory::PropertyToInkVariableMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStoryAsset \ +static_assert(alignof(UStoryAsset) == 0x000008, "Wrong alignment on UStoryAsset"); \ +static_assert(sizeof(UStoryAsset) == 0x000070, "Wrong size on UStoryAsset"); \ +static_assert(offsetof(UStoryAsset, CompiledStory) == 0x000028, "Member 'UStoryAsset::CompiledStory' has a wrong offset!"); \ +static_assert(offsetof(UStoryAsset, VariableDescriptions) == 0x000038, "Member 'UStoryAsset::VariableDescriptions' has a wrong offset!"); \ +static_assert(offsetof(UStoryAsset, AutoBindingVariableDescriptions) == 0x000048, "Member 'UStoryAsset::AutoBindingVariableDescriptions' has a wrong offset!"); \ +static_assert(offsetof(UStoryAsset, DialogueOutcomes) == 0x000058, "Member 'UStoryAsset::DialogueOutcomes' has a wrong offset!"); \ +static_assert(offsetof(UStoryAsset, DopeSheet) == 0x000068, "Member 'UStoryAsset::DopeSheet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionWarpingWindowData \ +static_assert(alignof(FMotionWarpingWindowData) == 0x000008, "Wrong alignment on FMotionWarpingWindowData"); \ +static_assert(sizeof(FMotionWarpingWindowData) == 0x000010, "Wrong size on FMotionWarpingWindowData"); \ +static_assert(offsetof(FMotionWarpingWindowData, AnimNotify) == 0x000000, "Member 'FMotionWarpingWindowData::AnimNotify' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingWindowData, StartTime) == 0x000008, "Member 'FMotionWarpingWindowData::StartTime' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingWindowData, EndTime) == 0x00000C, "Member 'FMotionWarpingWindowData::EndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionWarpingUpdateContext \ +static_assert(alignof(FMotionWarpingUpdateContext) == 0x000004, "Wrong alignment on FMotionWarpingUpdateContext"); \ +static_assert(sizeof(FMotionWarpingUpdateContext) == 0x00001C, "Wrong size on FMotionWarpingUpdateContext"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, Animation) == 0x000000, "Member 'FMotionWarpingUpdateContext::Animation' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, PreviousPosition) == 0x000008, "Member 'FMotionWarpingUpdateContext::PreviousPosition' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, CurrentPosition) == 0x00000C, "Member 'FMotionWarpingUpdateContext::CurrentPosition' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, Weight) == 0x000010, "Member 'FMotionWarpingUpdateContext::Weight' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, PlayRate) == 0x000014, "Member 'FMotionWarpingUpdateContext::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingUpdateContext, DeltaSeconds) == 0x000018, "Member 'FMotionWarpingUpdateContext::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionWarpingTarget \ +static_assert(alignof(FMotionWarpingTarget) == 0x000008, "Wrong alignment on FMotionWarpingTarget"); \ +static_assert(sizeof(FMotionWarpingTarget) == 0x000050, "Wrong size on FMotionWarpingTarget"); \ +static_assert(offsetof(FMotionWarpingTarget, Name) == 0x000000, "Member 'FMotionWarpingTarget::Name' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingTarget, Location) == 0x000008, "Member 'FMotionWarpingTarget::Location' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingTarget, Rotation) == 0x000020, "Member 'FMotionWarpingTarget::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingTarget, Component) == 0x000038, "Member 'FMotionWarpingTarget::Component' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingTarget, BoneName) == 0x000040, "Member 'FMotionWarpingTarget::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FMotionWarpingTarget, bFollowComponent) == 0x000048, "Member 'FMotionWarpingTarget::bFollowComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionDeltaTrack \ +static_assert(alignof(FMotionDeltaTrack) == 0x000008, "Wrong alignment on FMotionDeltaTrack"); \ +static_assert(sizeof(FMotionDeltaTrack) == 0x000060, "Wrong size on FMotionDeltaTrack"); \ +static_assert(offsetof(FMotionDeltaTrack, BoneTransformTrack) == 0x000000, "Member 'FMotionDeltaTrack::BoneTransformTrack' has a wrong offset!"); \ +static_assert(offsetof(FMotionDeltaTrack, DeltaTranslationTrack) == 0x000010, "Member 'FMotionDeltaTrack::DeltaTranslationTrack' has a wrong offset!"); \ +static_assert(offsetof(FMotionDeltaTrack, DeltaRotationTrack) == 0x000020, "Member 'FMotionDeltaTrack::DeltaRotationTrack' has a wrong offset!"); \ +static_assert(offsetof(FMotionDeltaTrack, TotalTranslation) == 0x000030, "Member 'FMotionDeltaTrack::TotalTranslation' has a wrong offset!"); \ +static_assert(offsetof(FMotionDeltaTrack, TotalRotation) == 0x000048, "Member 'FMotionDeltaTrack::TotalRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionDeltaTrackContainer \ +static_assert(alignof(FMotionDeltaTrackContainer) == 0x000008, "Wrong alignment on FMotionDeltaTrackContainer"); \ +static_assert(sizeof(FMotionDeltaTrackContainer) == 0x000010, "Wrong size on FMotionDeltaTrackContainer"); \ +static_assert(offsetof(FMotionDeltaTrackContainer, Tracks) == 0x000000, "Member 'FMotionDeltaTrackContainer::Tracks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_AddRootMotionModifier \ +static_assert(alignof(AnimNotifyState_MotionWarping_AddRootMotionModifier) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_AddRootMotionModifier"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_AddRootMotionModifier) == 0x000020, "Wrong size on AnimNotifyState_MotionWarping_AddRootMotionModifier"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_AddRootMotionModifier, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_AddRootMotionModifier::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_AddRootMotionModifier, Animation) == 0x000008, "Member 'AnimNotifyState_MotionWarping_AddRootMotionModifier::Animation' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_AddRootMotionModifier, StartTime) == 0x000010, "Member 'AnimNotifyState_MotionWarping_AddRootMotionModifier::StartTime' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_AddRootMotionModifier, EndTime) == 0x000014, "Member 'AnimNotifyState_MotionWarping_AddRootMotionModifier::EndTime' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_AddRootMotionModifier, ReturnValue) == 0x000018, "Member 'AnimNotifyState_MotionWarping_AddRootMotionModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnRootMotionModifierActivate \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnRootMotionModifierActivate) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnRootMotionModifierActivate"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnRootMotionModifierActivate) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnRootMotionModifierActivate"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierActivate, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierActivate::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierActivate, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierActivate::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierDeactivate::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnRootMotionModifierUpdate::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnWarpBegin \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnWarpBegin) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnWarpBegin"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnWarpBegin) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnWarpBegin"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpBegin, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnWarpBegin::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpBegin, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnWarpBegin::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnWarpEnd \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnWarpEnd) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnWarpEnd"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnWarpEnd) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnWarpEnd"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpEnd, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnWarpEnd::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpEnd, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnWarpEnd::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimNotifyState_MotionWarping_OnWarpUpdate \ +static_assert(alignof(AnimNotifyState_MotionWarping_OnWarpUpdate) == 0x000008, "Wrong alignment on AnimNotifyState_MotionWarping_OnWarpUpdate"); \ +static_assert(sizeof(AnimNotifyState_MotionWarping_OnWarpUpdate) == 0x000010, "Wrong size on AnimNotifyState_MotionWarping_OnWarpUpdate"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpUpdate, MotionWarpingComp) == 0x000000, "Member 'AnimNotifyState_MotionWarping_OnWarpUpdate::MotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(AnimNotifyState_MotionWarping_OnWarpUpdate, Modifier) == 0x000008, "Member 'AnimNotifyState_MotionWarping_OnWarpUpdate::Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimNotifyState_MotionWarping \ +static_assert(alignof(UAnimNotifyState_MotionWarping) == 0x000008, "Wrong alignment on UAnimNotifyState_MotionWarping"); \ +static_assert(sizeof(UAnimNotifyState_MotionWarping) == 0x000038, "Wrong size on UAnimNotifyState_MotionWarping"); \ +static_assert(offsetof(UAnimNotifyState_MotionWarping, RootMotionModifier) == 0x000030, "Member 'UAnimNotifyState_MotionWarping::RootMotionModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingUtilities_ExtractRootMotionFromAnimation \ +static_assert(alignof(MotionWarpingUtilities_ExtractRootMotionFromAnimation) == 0x000010, "Wrong alignment on MotionWarpingUtilities_ExtractRootMotionFromAnimation"); \ +static_assert(sizeof(MotionWarpingUtilities_ExtractRootMotionFromAnimation) == 0x000070, "Wrong size on MotionWarpingUtilities_ExtractRootMotionFromAnimation"); \ +static_assert(offsetof(MotionWarpingUtilities_ExtractRootMotionFromAnimation, Animation) == 0x000000, "Member 'MotionWarpingUtilities_ExtractRootMotionFromAnimation::Animation' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_ExtractRootMotionFromAnimation, StartTime) == 0x000008, "Member 'MotionWarpingUtilities_ExtractRootMotionFromAnimation::StartTime' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_ExtractRootMotionFromAnimation, EndTime) == 0x00000C, "Member 'MotionWarpingUtilities_ExtractRootMotionFromAnimation::EndTime' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_ExtractRootMotionFromAnimation, ReturnValue) == 0x000010, "Member 'MotionWarpingUtilities_ExtractRootMotionFromAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation \ +static_assert(alignof(MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation) == 0x000008, "Wrong alignment on MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation"); \ +static_assert(sizeof(MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation) == 0x000020, "Wrong size on MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation"); \ +static_assert(offsetof(MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation, Animation) == 0x000000, "Member 'MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation::Animation' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation, WarpTargetName) == 0x000008, "Member 'MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation, OutWindows) == 0x000010, "Member 'MotionWarpingUtilities_GetMotionWarpingWindowsForWarpTargetFromAnimation::OutWindows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation \ +static_assert(alignof(MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation) == 0x000008, "Wrong alignment on MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation"); \ +static_assert(sizeof(MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation) == 0x000018, "Wrong size on MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation"); \ +static_assert(offsetof(MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation, Animation) == 0x000000, "Member 'MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation::Animation' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation, OutWindows) == 0x000008, "Member 'MotionWarpingUtilities_GetMotionWarpingWindowsFromAnimation::OutWindows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMotionWarpingUtilities \ +static_assert(alignof(UMotionWarpingUtilities) == 0x000008, "Wrong alignment on UMotionWarpingUtilities"); \ +static_assert(sizeof(UMotionWarpingUtilities) == 0x000028, "Wrong size on UMotionWarpingUtilities"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_AddOrUpdateWarpTarget \ +static_assert(alignof(MotionWarpingComponent_AddOrUpdateWarpTarget) == 0x000008, "Wrong alignment on MotionWarpingComponent_AddOrUpdateWarpTarget"); \ +static_assert(sizeof(MotionWarpingComponent_AddOrUpdateWarpTarget) == 0x000050, "Wrong size on MotionWarpingComponent_AddOrUpdateWarpTarget"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTarget, WarpTarget) == 0x000000, "Member 'MotionWarpingComponent_AddOrUpdateWarpTarget::WarpTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent \ +static_assert(alignof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent) == 0x000008, "Wrong alignment on MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent"); \ +static_assert(sizeof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent) == 0x000020, "Wrong size on MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent, WarpTargetName) == 0x000000, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent, Component) == 0x000008, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent, BoneName) == 0x000010, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent::BoneName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent, bFollowComponent) == 0x000018, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromComponent::bFollowComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation \ +static_assert(alignof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation) == 0x000008, "Wrong alignment on MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation"); \ +static_assert(sizeof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation) == 0x000020, "Wrong size on MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation, WarpTargetName) == 0x000000, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation, TargetLocation) == 0x000008, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromLocation::TargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation \ +static_assert(alignof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation) == 0x000008, "Wrong alignment on MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation"); \ +static_assert(sizeof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation) == 0x000038, "Wrong size on MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation, WarpTargetName) == 0x000000, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation, TargetLocation) == 0x000008, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation, TargetRotation) == 0x000020, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromLocationAndRotation::TargetRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform \ +static_assert(alignof(MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform) == 0x000010, "Wrong alignment on MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform"); \ +static_assert(sizeof(MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform) == 0x000070, "Wrong size on MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform, WarpTargetName) == 0x000000, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform, TargetTransform) == 0x000010, "Member 'MotionWarpingComponent_AddOrUpdateWarpTargetFromTransform::TargetTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MotionWarpingComponent_RemoveWarpTarget \ +static_assert(alignof(MotionWarpingComponent_RemoveWarpTarget) == 0x000004, "Wrong alignment on MotionWarpingComponent_RemoveWarpTarget"); \ +static_assert(sizeof(MotionWarpingComponent_RemoveWarpTarget) == 0x00000C, "Wrong size on MotionWarpingComponent_RemoveWarpTarget"); \ +static_assert(offsetof(MotionWarpingComponent_RemoveWarpTarget, WarpTargetName) == 0x000000, "Member 'MotionWarpingComponent_RemoveWarpTarget::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(MotionWarpingComponent_RemoveWarpTarget, ReturnValue) == 0x000008, "Member 'MotionWarpingComponent_RemoveWarpTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMotionWarpingComponent \ +static_assert(alignof(UMotionWarpingComponent) == 0x000008, "Wrong alignment on UMotionWarpingComponent"); \ +static_assert(sizeof(UMotionWarpingComponent) == 0x0000E0, "Wrong size on UMotionWarpingComponent"); \ +static_assert(offsetof(UMotionWarpingComponent, bSearchForWindowsInAnimsWithinMontages) == 0x0000A0, "Member 'UMotionWarpingComponent::bSearchForWindowsInAnimsWithinMontages' has a wrong offset!"); \ +static_assert(offsetof(UMotionWarpingComponent, OnPreUpdate) == 0x0000A8, "Member 'UMotionWarpingComponent::OnPreUpdate' has a wrong offset!"); \ +static_assert(offsetof(UMotionWarpingComponent, CharacterOwner) == 0x0000B8, "Member 'UMotionWarpingComponent::CharacterOwner' has a wrong offset!"); \ +static_assert(offsetof(UMotionWarpingComponent, Modifiers) == 0x0000C0, "Member 'UMotionWarpingComponent::Modifiers' has a wrong offset!"); \ +static_assert(offsetof(UMotionWarpingComponent, WarpTargets) == 0x0000D0, "Member 'UMotionWarpingComponent::WarpTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier \ +static_assert(alignof(URootMotionModifier) == 0x000010, "Wrong alignment on URootMotionModifier"); \ +static_assert(sizeof(URootMotionModifier) == 0x0000F0, "Wrong size on URootMotionModifier"); \ +static_assert(offsetof(URootMotionModifier, Animation) == 0x000028, "Member 'URootMotionModifier::Animation' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, StartTime) == 0x000030, "Member 'URootMotionModifier::StartTime' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, EndTime) == 0x000034, "Member 'URootMotionModifier::EndTime' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, PreviousPosition) == 0x000038, "Member 'URootMotionModifier::PreviousPosition' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, CurrentPosition) == 0x00003C, "Member 'URootMotionModifier::CurrentPosition' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, Weight) == 0x000040, "Member 'URootMotionModifier::Weight' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, StartTransform) == 0x000050, "Member 'URootMotionModifier::StartTransform' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, ActualStartTime) == 0x0000B0, "Member 'URootMotionModifier::ActualStartTime' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, OnActivateDelegate) == 0x0000B4, "Member 'URootMotionModifier::OnActivateDelegate' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, OnUpdateDelegate) == 0x0000C4, "Member 'URootMotionModifier::OnUpdateDelegate' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, OnDeactivateDelegate) == 0x0000D4, "Member 'URootMotionModifier::OnDeactivateDelegate' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier, State) == 0x0000E4, "Member 'URootMotionModifier::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier_Warp \ +static_assert(alignof(URootMotionModifier_Warp) == 0x000010, "Wrong alignment on URootMotionModifier_Warp"); \ +static_assert(sizeof(URootMotionModifier_Warp) == 0x000260, "Wrong size on URootMotionModifier_Warp"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpTargetName) == 0x0000E8, "Member 'URootMotionModifier_Warp::WarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpPointAnimProvider) == 0x0000F0, "Member 'URootMotionModifier_Warp::WarpPointAnimProvider' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpPointAnimTransform) == 0x000100, "Member 'URootMotionModifier_Warp::WarpPointAnimTransform' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpPointAnimBoneName) == 0x000160, "Member 'URootMotionModifier_Warp::WarpPointAnimBoneName' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, bWarpTranslation) == 0x000168, "Member 'URootMotionModifier_Warp::bWarpTranslation' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, bIgnoreZAxis) == 0x000169, "Member 'URootMotionModifier_Warp::bIgnoreZAxis' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, AddTranslationEasingFunc) == 0x00016A, "Member 'URootMotionModifier_Warp::AddTranslationEasingFunc' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, AddTranslationEasingCurve) == 0x000170, "Member 'URootMotionModifier_Warp::AddTranslationEasingCurve' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, bWarpRotation) == 0x000178, "Member 'URootMotionModifier_Warp::bWarpRotation' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, RotationType) == 0x000179, "Member 'URootMotionModifier_Warp::RotationType' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, RotationMethod) == 0x00017A, "Member 'URootMotionModifier_Warp::RotationMethod' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpRotationTimeMultiplier) == 0x00017C, "Member 'URootMotionModifier_Warp::WarpRotationTimeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, WarpMaxRotationRate) == 0x000180, "Member 'URootMotionModifier_Warp::WarpMaxRotationRate' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_Warp, CachedTargetTransform) == 0x000190, "Member 'URootMotionModifier_Warp::CachedTargetTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier_SimpleWarp \ +static_assert(alignof(URootMotionModifier_SimpleWarp) == 0x000010, "Wrong alignment on URootMotionModifier_SimpleWarp"); \ +static_assert(sizeof(URootMotionModifier_SimpleWarp) == 0x000260, "Wrong size on URootMotionModifier_SimpleWarp"); \ + +#define DUMPER7_ASSERTS_RootMotionModifier_Scale_AddRootMotionModifierScale \ +static_assert(alignof(RootMotionModifier_Scale_AddRootMotionModifierScale) == 0x000008, "Wrong alignment on RootMotionModifier_Scale_AddRootMotionModifierScale"); \ +static_assert(sizeof(RootMotionModifier_Scale_AddRootMotionModifierScale) == 0x000038, "Wrong size on RootMotionModifier_Scale_AddRootMotionModifierScale"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, InMotionWarpingComp) == 0x000000, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::InMotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, InAnimation) == 0x000008, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, InStartTime) == 0x000010, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::InStartTime' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, InEndTime) == 0x000014, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::InEndTime' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, InScale) == 0x000018, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::InScale' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_Scale_AddRootMotionModifierScale, ReturnValue) == 0x000030, "Member 'RootMotionModifier_Scale_AddRootMotionModifierScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier_Scale \ +static_assert(alignof(URootMotionModifier_Scale) == 0x000010, "Wrong alignment on URootMotionModifier_Scale"); \ +static_assert(sizeof(URootMotionModifier_Scale) == 0x000100, "Wrong size on URootMotionModifier_Scale"); \ +static_assert(offsetof(URootMotionModifier_Scale, Scale) == 0x0000E8, "Member 'URootMotionModifier_Scale::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier_AdjustmentBlendWarp \ +static_assert(alignof(URootMotionModifier_AdjustmentBlendWarp) == 0x000010, "Wrong alignment on URootMotionModifier_AdjustmentBlendWarp"); \ +static_assert(sizeof(URootMotionModifier_AdjustmentBlendWarp) == 0x0003C0, "Wrong size on URootMotionModifier_AdjustmentBlendWarp"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, bWarpIKBones) == 0x000260, "Member 'URootMotionModifier_AdjustmentBlendWarp::bWarpIKBones' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, IKBones) == 0x000268, "Member 'URootMotionModifier_AdjustmentBlendWarp::IKBones' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, CachedMeshTransform) == 0x000280, "Member 'URootMotionModifier_AdjustmentBlendWarp::CachedMeshTransform' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, CachedMeshRelativeTransform) == 0x0002E0, "Member 'URootMotionModifier_AdjustmentBlendWarp::CachedMeshRelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, CachedRootMotion) == 0x000340, "Member 'URootMotionModifier_AdjustmentBlendWarp::CachedRootMotion' has a wrong offset!"); \ +static_assert(offsetof(URootMotionModifier_AdjustmentBlendWarp, Result) == 0x0003A0, "Member 'URootMotionModifier_AdjustmentBlendWarp::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp \ +static_assert(alignof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp) == 0x000010, "Wrong alignment on RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp"); \ +static_assert(sizeof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp) == 0x0000B0, "Wrong size on RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InMotionWarpingComp) == 0x000000, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InMotionWarpingComp' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InAnimation) == 0x000008, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InStartTime) == 0x000010, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InStartTime' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InEndTime) == 0x000014, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InEndTime' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpTargetName) == 0x000018, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpPointAnimProvider) == 0x000020, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpPointAnimProvider' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpPointAnimTransform) == 0x000030, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpPointAnimTransform' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpPointAnimBoneName) == 0x000090, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpPointAnimBoneName' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, bInWarpTranslation) == 0x000098, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::bInWarpTranslation' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, bInIgnoreZAxis) == 0x000099, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::bInIgnoreZAxis' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, bInWarpRotation) == 0x00009A, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::bInWarpRotation' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InRotationType) == 0x00009B, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InRotationType' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InRotationMethod) == 0x00009C, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InRotationMethod' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpRotationTimeMultiplier) == 0x0000A0, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpRotationTimeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, InWarpMaxRotationRate) == 0x0000A4, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::InWarpMaxRotationRate' has a wrong offset!"); \ +static_assert(offsetof(RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp, ReturnValue) == 0x0000A8, "Member 'RootMotionModifier_SkewWarp_AddRootMotionModifierSkewWarp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URootMotionModifier_SkewWarp \ +static_assert(alignof(URootMotionModifier_SkewWarp) == 0x000010, "Wrong alignment on URootMotionModifier_SkewWarp"); \ +static_assert(sizeof(URootMotionModifier_SkewWarp) == 0x000260, "Wrong size on URootMotionModifier_SkewWarp"); \ + +#define DUMPER7_ASSERTS_FEvent_Response \ +static_assert(alignof(FEvent_Response) == 0x000008, "Wrong alignment on FEvent_Response"); \ +static_assert(sizeof(FEvent_Response) == 0x000038, "Wrong size on FEvent_Response"); \ +static_assert(offsetof(FEvent_Response, _index) == 0x000000, "Member 'FEvent_Response::_index' has a wrong offset!"); \ +static_assert(offsetof(FEvent_Response, _id) == 0x000010, "Member 'FEvent_Response::_id' has a wrong offset!"); \ +static_assert(offsetof(FEvent_Response, _version) == 0x000020, "Member 'FEvent_Response::_version' has a wrong offset!"); \ +static_assert(offsetof(FEvent_Response, Result) == 0x000028, "Member 'FEvent_Response::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDeviceAndUserIdentityInfo \ +static_assert(alignof(FDeviceAndUserIdentityInfo) == 0x000008, "Wrong alignment on FDeviceAndUserIdentityInfo"); \ +static_assert(sizeof(FDeviceAndUserIdentityInfo) == 0x000060, "Wrong size on FDeviceAndUserIdentityInfo"); \ + +#define DUMPER7_ASSERTS_FHeraAnalyticsCommonData \ +static_assert(alignof(FHeraAnalyticsCommonData) == 0x000008, "Wrong alignment on FHeraAnalyticsCommonData"); \ +static_assert(sizeof(FHeraAnalyticsCommonData) == 0x000050, "Wrong size on FHeraAnalyticsCommonData"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, Timestamp) == 0x000000, "Member 'FHeraAnalyticsCommonData::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, dv) == 0x000010, "Member 'FHeraAnalyticsCommonData::dv' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, UserId) == 0x000018, "Member 'FHeraAnalyticsCommonData::UserId' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, SessionId) == 0x000028, "Member 'FHeraAnalyticsCommonData::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, ts) == 0x000038, "Member 'FHeraAnalyticsCommonData::ts' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, tl) == 0x00003C, "Member 'FHeraAnalyticsCommonData::tl' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsCommonData, Tags) == 0x000040, "Member 'FHeraAnalyticsCommonData::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAnalyticsPerfData \ +static_assert(alignof(FHeraAnalyticsPerfData) == 0x000008, "Wrong alignment on FHeraAnalyticsPerfData"); \ +static_assert(sizeof(FHeraAnalyticsPerfData) == 0x000180, "Wrong size on FHeraAnalyticsPerfData"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, winmode) == 0x000050, "Member 'FHeraAnalyticsPerfData::winmode' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, vsync) == 0x000054, "Member 'FHeraAnalyticsPerfData::vsync' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, Resolution) == 0x000058, "Member 'FHeraAnalyticsPerfData::Resolution' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, resolutionX) == 0x000068, "Member 'FHeraAnalyticsPerfData::resolutionX' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, resolutionY) == 0x00006C, "Member 'FHeraAnalyticsPerfData::resolutionY' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, scrn_percent) == 0x000070, "Member 'FHeraAnalyticsPerfData::scrn_percent' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, shadowQuality) == 0x000074, "Member 'FHeraAnalyticsPerfData::shadowQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, viewDistanceQuality) == 0x000078, "Member 'FHeraAnalyticsPerfData::viewDistanceQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, globalIlluminationQuality) == 0x00007C, "Member 'FHeraAnalyticsPerfData::globalIlluminationQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, reflectionQuality) == 0x000080, "Member 'FHeraAnalyticsPerfData::reflectionQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, antiAliasingQuality) == 0x000084, "Member 'FHeraAnalyticsPerfData::antiAliasingQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, textureQuality) == 0x000088, "Member 'FHeraAnalyticsPerfData::textureQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, visualEffectQuality) == 0x00008C, "Member 'FHeraAnalyticsPerfData::visualEffectQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, postProcessQuality) == 0x000090, "Member 'FHeraAnalyticsPerfData::postProcessQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, foliageQuality) == 0x000094, "Member 'FHeraAnalyticsPerfData::foliageQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, shadingQuality) == 0x000098, "Member 'FHeraAnalyticsPerfData::shadingQuality' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, Point) == 0x0000A0, "Member 'FHeraAnalyticsPerfData::Point' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, geo_point) == 0x0000B8, "Member 'FHeraAnalyticsPerfData::geo_point' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, Rotation) == 0x0000D0, "Member 'FHeraAnalyticsPerfData::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, rotation2D) == 0x0000E8, "Member 'FHeraAnalyticsPerfData::rotation2D' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, map_p) == 0x000100, "Member 'FHeraAnalyticsPerfData::map_p' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, Maps) == 0x000110, "Member 'FHeraAnalyticsPerfData::Maps' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, fps_avg) == 0x000120, "Member 'FHeraAnalyticsPerfData::fps_avg' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, Duration) == 0x000124, "Member 'FHeraAnalyticsPerfData::Duration' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg) == 0x000128, "Member 'FHeraAnalyticsPerfData::ms_avg' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_min) == 0x00012C, "Member 'FHeraAnalyticsPerfData::ms_min' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_max) == 0x000130, "Member 'FHeraAnalyticsPerfData::ms_max' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg_game) == 0x000134, "Member 'FHeraAnalyticsPerfData::ms_avg_game' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg_render) == 0x000138, "Member 'FHeraAnalyticsPerfData::ms_avg_render' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg_rhi) == 0x00013C, "Member 'FHeraAnalyticsPerfData::ms_avg_rhi' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg_gpu) == 0x000140, "Member 'FHeraAnalyticsPerfData::ms_avg_gpu' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, ms_avg_input) == 0x000144, "Member 'FHeraAnalyticsPerfData::ms_avg_input' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, gpudevicedesc) == 0x000148, "Member 'FHeraAnalyticsPerfData::gpudevicedesc' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_cpu_total) == 0x000158, "Member 'FHeraAnalyticsPerfData::audio_cpu_total' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_cpu_plugin) == 0x00015C, "Member 'FHeraAnalyticsPerfData::audio_cpu_plugin' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_loudness_lufs) == 0x000160, "Member 'FHeraAnalyticsPerfData::audio_loudness_lufs' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numvoices_physical) == 0x000164, "Member 'FHeraAnalyticsPerfData::audio_numvoices_physical' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numvoices_virtual) == 0x000168, "Member 'FHeraAnalyticsPerfData::audio_numvoices_virtual' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numvoices_total) == 0x00016C, "Member 'FHeraAnalyticsPerfData::audio_numvoices_total' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numeevents) == 0x000170, "Member 'FHeraAnalyticsPerfData::audio_numeevents' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numaudio_comps) == 0x000174, "Member 'FHeraAnalyticsPerfData::audio_numaudio_comps' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numactiveaudio_comps) == 0x000178, "Member 'FHeraAnalyticsPerfData::audio_numactiveaudio_comps' has a wrong offset!"); \ +static_assert(offsetof(FHeraAnalyticsPerfData, audio_numgeometry_comps) == 0x00017C, "Member 'FHeraAnalyticsPerfData::audio_numgeometry_comps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement \ +static_assert(alignof(HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement) == 0x000008, "Wrong alignment on HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement"); \ +static_assert(sizeof(HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement) == 0x000188, "Wrong size on HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement"); \ +static_assert(offsetof(HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement, OutPerformanceData) == 0x000000, "Member 'HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement::OutPerformanceData' has a wrong offset!"); \ +static_assert(offsetof(HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement, ReturnValue) == 0x000180, "Member 'HeraAnalyticsSubsystem_GetLastRecordedPerformanceMeasurement::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAnalyticsSubsystem \ +static_assert(alignof(UHeraAnalyticsSubsystem) == 0x000008, "Wrong alignment on UHeraAnalyticsSubsystem"); \ +static_assert(sizeof(UHeraAnalyticsSubsystem) == 0x0003E0, "Wrong size on UHeraAnalyticsSubsystem"); \ +static_assert(offsetof(UHeraAnalyticsSubsystem, LastPerformanceData) == 0x000030, "Member 'UHeraAnalyticsSubsystem::LastPerformanceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HeraPerformanceTestActor_TakeScreenShotWithPostFix \ +static_assert(alignof(HeraPerformanceTestActor_TakeScreenShotWithPostFix) == 0x000008, "Wrong alignment on HeraPerformanceTestActor_TakeScreenShotWithPostFix"); \ +static_assert(sizeof(HeraPerformanceTestActor_TakeScreenShotWithPostFix) == 0x000020, "Wrong size on HeraPerformanceTestActor_TakeScreenShotWithPostFix"); \ +static_assert(offsetof(HeraPerformanceTestActor_TakeScreenShotWithPostFix, InFilenamePreFix) == 0x000000, "Member 'HeraPerformanceTestActor_TakeScreenShotWithPostFix::InFilenamePreFix' has a wrong offset!"); \ +static_assert(offsetof(HeraPerformanceTestActor_TakeScreenShotWithPostFix, InFilenamePostFix) == 0x000010, "Member 'HeraPerformanceTestActor_TakeScreenShotWithPostFix::InFilenamePostFix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHeraPerformanceTestActor \ +static_assert(alignof(AHeraPerformanceTestActor) == 0x000008, "Wrong alignment on AHeraPerformanceTestActor"); \ +static_assert(sizeof(AHeraPerformanceTestActor) == 0x000450, "Wrong size on AHeraPerformanceTestActor"); \ +static_assert(offsetof(AHeraPerformanceTestActor, CameraUniqueName) == 0x000298, "Member 'AHeraPerformanceTestActor::CameraUniqueName' has a wrong offset!"); \ +static_assert(offsetof(AHeraPerformanceTestActor, CameraComponent) == 0x0002A8, "Member 'AHeraPerformanceTestActor::CameraComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraPerformanceTestActor, SceneComponent) == 0x0002B0, "Member 'AHeraPerformanceTestActor::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraPerformanceTestActor, TextRenderComponent) == 0x0002B8, "Member 'AHeraPerformanceTestActor::TextRenderComponent' has a wrong offset!"); \ +static_assert(offsetof(AHeraPerformanceTestActor, LastMeasurement) == 0x0002C0, "Member 'AHeraPerformanceTestActor::LastMeasurement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USelectedSubTabFont_C \ +static_assert(alignof(USelectedSubTabFont_C) == 0x000010, "Wrong alignment on USelectedSubTabFont_C"); \ +static_assert(sizeof(USelectedSubTabFont_C) == 0x0001B0, "Wrong size on USelectedSubTabFont_C"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature \ +static_assert(alignof(RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature) == 0x000001, "Wrong alignment on RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature"); \ +static_assert(sizeof(RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature) == 0x000001, "Wrong size on RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature"); \ +static_assert(offsetof(RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature, NewValue) == 0x000000, "Member 'RadioShow_C_BndEvt__RadioShow_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'RadioShow_C_BndEvt__RadioShow_WrestlerInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_ExecuteUbergraph_RadioShow \ +static_assert(alignof(RadioShow_C_ExecuteUbergraph_RadioShow) == 0x000008, "Wrong alignment on RadioShow_C_ExecuteUbergraph_RadioShow"); \ +static_assert(sizeof(RadioShow_C_ExecuteUbergraph_RadioShow) == 0x000178, "Wrong size on RadioShow_C_ExecuteUbergraph_RadioShow"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, EntryPoint) == 0x000000, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetSequencePlayer_ReturnValue) == 0x000008, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetSequencePlayer_ReturnValue_1) == 0x000010, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetSequencePlayer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Array_Index_Variable) == 0x000018, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Array_Index_Variable_1) == 0x000024, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_delegate_Variable) == 0x000028, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetSequencePlayer_ReturnValue_2) == 0x000038, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetSequencePlayer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_bInVisible) == 0x000040, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_InDuration_1) == 0x000044, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_InDuration) == 0x000048, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000050, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Loop_Counter_Variable_1) == 0x00005C, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_MakeArray_Array) == 0x000060, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Add_IntInt_ReturnValue_1) == 0x000070, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_OtherActor_1) == 0x000078, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_DynamicCast_AsWrestler_Character) == 0x000080, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_OtherActor) == 0x000090, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000098, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_DynamicCast_AsWrestler_Character_1) == 0x0000A8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_DynamicCast_AsWrestler_Character_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_DynamicCast_bSuccess_1) == 0x0000B0, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Get_Item) == 0x0000B8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Length_ReturnValue) == 0x0000C0, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Length_ReturnValue_1) == 0x0000C4, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Loop_Counter_Variable_2) == 0x0000C8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Less_IntInt_ReturnValue) == 0x0000CC, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000CD, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000D0, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_ComponentBoundEvent_newValue) == 0x0000D4, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_ComponentBoundEvent_newValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_IsValid_ReturnValue_1) == 0x0000D5, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetSequencePlayer_ReturnValue_3) == 0x0000D8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetSequencePlayer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, Temp_int_Array_Index_Variable_2) == 0x0000E0, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x0000E8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Get_Item_1) == 0x0000F8, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Get_Item_2) == 0x000100, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Array_Length_ReturnValue_2) == 0x000108, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Less_IntInt_ReturnValue_2) == 0x00010C, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_IsValid_ReturnValue_2) == 0x00010D, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetProperty_ReturnValue) == 0x00010E, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_IsValid_ReturnValue_3) == 0x00010F, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_Event_DeltaSeconds) == 0x000110, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetCurrentTimeDilation_ReturnValue) == 0x000114, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetCurrentTimeDilation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_CreateDelegate_OutputDelegate) == 0x000118, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000128, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetGameMode_ReturnValue) == 0x000130, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetGameMode_ReturnValue_1) == 0x000138, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetGameMode_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetComponentByClass_ReturnValue) == 0x000140, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000148, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetActiveQuestTag_ReturnValue) == 0x000150, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000158, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x000159, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, K2Node_CustomEvent_ActivatedQuest) == 0x00015C, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::K2Node_CustomEvent_ActivatedQuest' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_IsValid_ReturnValue_4) == 0x000164, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_GetProperty_ReturnValue_1) == 0x000165, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000168, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(RadioShow_C_ExecuteUbergraph_RadioShow, CallFunc_SetPlayRate_PlayRate_ImplicitCast) == 0x000170, "Member 'RadioShow_C_ExecuteUbergraph_RadioShow::CallFunc_SetPlayRate_PlayRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetClueDataAsset \ +static_assert(alignof(RadioShow_C_GetClueDataAsset) == 0x000008, "Wrong alignment on RadioShow_C_GetClueDataAsset"); \ +static_assert(sizeof(RadioShow_C_GetClueDataAsset) == 0x000008, "Wrong size on RadioShow_C_GetClueDataAsset"); \ +static_assert(offsetof(RadioShow_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetDebugString \ +static_assert(alignof(RadioShow_C_GetDebugString) == 0x000008, "Wrong alignment on RadioShow_C_GetDebugString"); \ +static_assert(sizeof(RadioShow_C_GetDebugString) == 0x000010, "Wrong size on RadioShow_C_GetDebugString"); \ +static_assert(offsetof(RadioShow_C_GetDebugString, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(RadioShow_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on RadioShow_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(RadioShow_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on RadioShow_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(RadioShow_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetInteractableData \ +static_assert(alignof(RadioShow_C_GetInteractableData) == 0x000008, "Wrong alignment on RadioShow_C_GetInteractableData"); \ +static_assert(sizeof(RadioShow_C_GetInteractableData) == 0x000018, "Wrong size on RadioShow_C_GetInteractableData"); \ +static_assert(offsetof(RadioShow_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetItemState \ +static_assert(alignof(RadioShow_C_GetItemState) == 0x000001, "Wrong alignment on RadioShow_C_GetItemState"); \ +static_assert(sizeof(RadioShow_C_GetItemState) == 0x000001, "Wrong size on RadioShow_C_GetItemState"); \ +static_assert(offsetof(RadioShow_C_GetItemState, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetMeshComponent \ +static_assert(alignof(RadioShow_C_GetMeshComponent) == 0x000008, "Wrong alignment on RadioShow_C_GetMeshComponent"); \ +static_assert(sizeof(RadioShow_C_GetMeshComponent) == 0x000008, "Wrong size on RadioShow_C_GetMeshComponent"); \ +static_assert(offsetof(RadioShow_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_OnNewActiveQuestSetDelegate_Event \ +static_assert(alignof(RadioShow_C_OnNewActiveQuestSetDelegate_Event) == 0x000004, "Wrong alignment on RadioShow_C_OnNewActiveQuestSetDelegate_Event"); \ +static_assert(sizeof(RadioShow_C_OnNewActiveQuestSetDelegate_Event) == 0x000008, "Wrong size on RadioShow_C_OnNewActiveQuestSetDelegate_Event"); \ +static_assert(offsetof(RadioShow_C_OnNewActiveQuestSetDelegate_Event, ActivatedQuest) == 0x000000, "Member 'RadioShow_C_OnNewActiveQuestSetDelegate_Event::ActivatedQuest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_ReceiveActorBeginOverlap \ +static_assert(alignof(RadioShow_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on RadioShow_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(RadioShow_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on RadioShow_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(RadioShow_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'RadioShow_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_ReceiveActorEndOverlap \ +static_assert(alignof(RadioShow_C_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on RadioShow_C_ReceiveActorEndOverlap"); \ +static_assert(sizeof(RadioShow_C_ReceiveActorEndOverlap) == 0x000008, "Wrong size on RadioShow_C_ReceiveActorEndOverlap"); \ +static_assert(offsetof(RadioShow_C_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'RadioShow_C_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_ReceiveTick \ +static_assert(alignof(RadioShow_C_ReceiveTick) == 0x000004, "Wrong alignment on RadioShow_C_ReceiveTick"); \ +static_assert(sizeof(RadioShow_C_ReceiveTick) == 0x000004, "Wrong size on RadioShow_C_ReceiveTick"); \ +static_assert(offsetof(RadioShow_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'RadioShow_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_SetVisionVisibility \ +static_assert(alignof(RadioShow_C_SetVisionVisibility) == 0x000001, "Wrong alignment on RadioShow_C_SetVisionVisibility"); \ +static_assert(sizeof(RadioShow_C_SetVisionVisibility) == 0x000001, "Wrong size on RadioShow_C_SetVisionVisibility"); \ +static_assert(offsetof(RadioShow_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'RadioShow_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_VisionFadeInBegin \ +static_assert(alignof(RadioShow_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on RadioShow_C_VisionFadeInBegin"); \ +static_assert(sizeof(RadioShow_C_VisionFadeInBegin) == 0x000004, "Wrong size on RadioShow_C_VisionFadeInBegin"); \ +static_assert(offsetof(RadioShow_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'RadioShow_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_VisionFadeOutBegin \ +static_assert(alignof(RadioShow_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on RadioShow_C_VisionFadeOutBegin"); \ +static_assert(sizeof(RadioShow_C_VisionFadeOutBegin) == 0x000004, "Wrong size on RadioShow_C_VisionFadeOutBegin"); \ +static_assert(offsetof(RadioShow_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'RadioShow_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetAudioComp \ +static_assert(alignof(RadioShow_C_GetAudioComp) == 0x000008, "Wrong alignment on RadioShow_C_GetAudioComp"); \ +static_assert(sizeof(RadioShow_C_GetAudioComp) == 0x000008, "Wrong size on RadioShow_C_GetAudioComp"); \ +static_assert(offsetof(RadioShow_C_GetAudioComp, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetAudioComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetCrosshairReactComponent \ +static_assert(alignof(RadioShow_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on RadioShow_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(RadioShow_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on RadioShow_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(RadioShow_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadioShow_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(RadioShow_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on RadioShow_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(RadioShow_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on RadioShow_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(RadioShow_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'RadioShow_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ARadioShow_C \ +static_assert(alignof(ARadioShow_C) == 0x000008, "Wrong alignment on ARadioShow_C"); \ +static_assert(sizeof(ARadioShow_C) == 0x0003A8, "Wrong size on ARadioShow_C"); \ +static_assert(offsetof(ARadioShow_C, UberGraphFrame) == 0x000358, "Member 'ARadioShow_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, HeraPropertyComponentBool) == 0x000360, "Member 'ARadioShow_C::HeraPropertyComponentBool' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, RadioShowBoxTrigger) == 0x000368, "Member 'ARadioShow_C::RadioShowBoxTrigger' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, WrestlerCrosshairReact) == 0x000370, "Member 'ARadioShow_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, WrestlerInteractionPoint) == 0x000378, "Member 'ARadioShow_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, WrestlerInteraction) == 0x000380, "Member 'ARadioShow_C::WrestlerInteraction' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, HeraAudio) == 0x000388, "Member 'ARadioShow_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, RadioMesh) == 0x000390, "Member 'ARadioShow_C::RadioMesh' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, ProEscape_Radio) == 0x000398, "Member 'ARadioShow_C::ProEscape_Radio' has a wrong offset!"); \ +static_assert(offsetof(ARadioShow_C, IsMalkavian) == 0x0003A0, "Member 'ARadioShow_C::IsMalkavian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_EqualEqual_InstancedStruct \ +static_assert(alignof(StructUtilsFunctionLibrary_EqualEqual_InstancedStruct) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_EqualEqual_InstancedStruct"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_EqualEqual_InstancedStruct) == 0x000028, "Wrong size on StructUtilsFunctionLibrary_EqualEqual_InstancedStruct"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_EqualEqual_InstancedStruct, A) == 0x000000, "Member 'StructUtilsFunctionLibrary_EqualEqual_InstancedStruct::A' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_EqualEqual_InstancedStruct, B) == 0x000010, "Member 'StructUtilsFunctionLibrary_EqualEqual_InstancedStruct::B' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_EqualEqual_InstancedStruct, ReturnValue) == 0x000020, "Member 'StructUtilsFunctionLibrary_EqualEqual_InstancedStruct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_GetInstancedStructValue \ +static_assert(alignof(StructUtilsFunctionLibrary_GetInstancedStructValue) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_GetInstancedStructValue"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_GetInstancedStructValue) == 0x000020, "Wrong size on StructUtilsFunctionLibrary_GetInstancedStructValue"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_GetInstancedStructValue, ExecResult) == 0x000000, "Member 'StructUtilsFunctionLibrary_GetInstancedStructValue::ExecResult' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_GetInstancedStructValue, InstancedStruct) == 0x000008, "Member 'StructUtilsFunctionLibrary_GetInstancedStructValue::InstancedStruct' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_GetInstancedStructValue, Value) == 0x000018, "Member 'StructUtilsFunctionLibrary_GetInstancedStructValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_IsInstancedStructValid \ +static_assert(alignof(StructUtilsFunctionLibrary_IsInstancedStructValid) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_IsInstancedStructValid"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_IsInstancedStructValid) == 0x000018, "Wrong size on StructUtilsFunctionLibrary_IsInstancedStructValid"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_IsInstancedStructValid, InstancedStruct) == 0x000000, "Member 'StructUtilsFunctionLibrary_IsInstancedStructValid::InstancedStruct' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_IsInstancedStructValid, ReturnValue) == 0x000010, "Member 'StructUtilsFunctionLibrary_IsInstancedStructValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_IsValid_InstancedStruct \ +static_assert(alignof(StructUtilsFunctionLibrary_IsValid_InstancedStruct) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_IsValid_InstancedStruct"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_IsValid_InstancedStruct) == 0x000018, "Wrong size on StructUtilsFunctionLibrary_IsValid_InstancedStruct"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_IsValid_InstancedStruct, InstancedStruct) == 0x000000, "Member 'StructUtilsFunctionLibrary_IsValid_InstancedStruct::InstancedStruct' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_IsValid_InstancedStruct, ReturnValue) == 0x000010, "Member 'StructUtilsFunctionLibrary_IsValid_InstancedStruct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_MakeInstancedStruct \ +static_assert(alignof(StructUtilsFunctionLibrary_MakeInstancedStruct) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_MakeInstancedStruct"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_MakeInstancedStruct) == 0x000018, "Wrong size on StructUtilsFunctionLibrary_MakeInstancedStruct"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_MakeInstancedStruct, Value) == 0x000000, "Member 'StructUtilsFunctionLibrary_MakeInstancedStruct::Value' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_MakeInstancedStruct, ReturnValue) == 0x000008, "Member 'StructUtilsFunctionLibrary_MakeInstancedStruct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_NotEqual_InstancedStruct \ +static_assert(alignof(StructUtilsFunctionLibrary_NotEqual_InstancedStruct) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_NotEqual_InstancedStruct"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_NotEqual_InstancedStruct) == 0x000028, "Wrong size on StructUtilsFunctionLibrary_NotEqual_InstancedStruct"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_NotEqual_InstancedStruct, A) == 0x000000, "Member 'StructUtilsFunctionLibrary_NotEqual_InstancedStruct::A' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_NotEqual_InstancedStruct, B) == 0x000010, "Member 'StructUtilsFunctionLibrary_NotEqual_InstancedStruct::B' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_NotEqual_InstancedStruct, ReturnValue) == 0x000020, "Member 'StructUtilsFunctionLibrary_NotEqual_InstancedStruct::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_Reset \ +static_assert(alignof(StructUtilsFunctionLibrary_Reset) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_Reset"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_Reset) == 0x000018, "Wrong size on StructUtilsFunctionLibrary_Reset"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_Reset, InstancedStruct) == 0x000000, "Member 'StructUtilsFunctionLibrary_Reset::InstancedStruct' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_Reset, StructType) == 0x000010, "Member 'StructUtilsFunctionLibrary_Reset::StructType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StructUtilsFunctionLibrary_SetInstancedStructValue \ +static_assert(alignof(StructUtilsFunctionLibrary_SetInstancedStructValue) == 0x000008, "Wrong alignment on StructUtilsFunctionLibrary_SetInstancedStructValue"); \ +static_assert(sizeof(StructUtilsFunctionLibrary_SetInstancedStructValue) == 0x000018, "Wrong size on StructUtilsFunctionLibrary_SetInstancedStructValue"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_SetInstancedStructValue, InstancedStruct) == 0x000000, "Member 'StructUtilsFunctionLibrary_SetInstancedStructValue::InstancedStruct' has a wrong offset!"); \ +static_assert(offsetof(StructUtilsFunctionLibrary_SetInstancedStructValue, Value) == 0x000010, "Member 'StructUtilsFunctionLibrary_SetInstancedStructValue::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStructUtilsFunctionLibrary \ +static_assert(alignof(UStructUtilsFunctionLibrary) == 0x000008, "Wrong alignment on UStructUtilsFunctionLibrary"); \ +static_assert(sizeof(UStructUtilsFunctionLibrary) == 0x000028, "Wrong size on UStructUtilsFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_FStateTreeAnyEnum \ +static_assert(alignof(FStateTreeAnyEnum) == 0x000008, "Wrong alignment on FStateTreeAnyEnum"); \ +static_assert(sizeof(FStateTreeAnyEnum) == 0x000010, "Wrong size on FStateTreeAnyEnum"); \ +static_assert(offsetof(FStateTreeAnyEnum, Value) == 0x000000, "Member 'FStateTreeAnyEnum::Value' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeAnyEnum, Enum) == 0x000008, "Member 'FStateTreeAnyEnum::Enum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeIndex16 \ +static_assert(alignof(FStateTreeIndex16) == 0x000002, "Wrong alignment on FStateTreeIndex16"); \ +static_assert(sizeof(FStateTreeIndex16) == 0x000002, "Wrong size on FStateTreeIndex16"); \ +static_assert(offsetof(FStateTreeIndex16, Value) == 0x000000, "Member 'FStateTreeIndex16::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeExternalDataHandle \ +static_assert(alignof(FStateTreeExternalDataHandle) == 0x000002, "Wrong alignment on FStateTreeExternalDataHandle"); \ +static_assert(sizeof(FStateTreeExternalDataHandle) == 0x000002, "Wrong size on FStateTreeExternalDataHandle"); \ +static_assert(offsetof(FStateTreeExternalDataHandle, DataViewIndex) == 0x000000, "Member 'FStateTreeExternalDataHandle::DataViewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeExternalDataDesc \ +static_assert(alignof(FStateTreeExternalDataDesc) == 0x000008, "Wrong alignment on FStateTreeExternalDataDesc"); \ +static_assert(sizeof(FStateTreeExternalDataDesc) == 0x000018, "Wrong size on FStateTreeExternalDataDesc"); \ +static_assert(offsetof(FStateTreeExternalDataDesc, Struct) == 0x000000, "Member 'FStateTreeExternalDataDesc::Struct' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeExternalDataDesc, Name) == 0x000008, "Member 'FStateTreeExternalDataDesc::Name' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeExternalDataDesc, Handle) == 0x000010, "Member 'FStateTreeExternalDataDesc::Handle' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeExternalDataDesc, Requirement) == 0x000012, "Member 'FStateTreeExternalDataDesc::Requirement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeStateHandle \ +static_assert(alignof(FStateTreeStateHandle) == 0x000002, "Wrong alignment on FStateTreeStateHandle"); \ +static_assert(sizeof(FStateTreeStateHandle) == 0x000002, "Wrong size on FStateTreeStateHandle"); \ +static_assert(offsetof(FStateTreeStateHandle, Index) == 0x000000, "Member 'FStateTreeStateHandle::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeTransitionRequest \ +static_assert(alignof(FStateTreeTransitionRequest) == 0x000002, "Wrong alignment on FStateTreeTransitionRequest"); \ +static_assert(sizeof(FStateTreeTransitionRequest) == 0x000006, "Wrong size on FStateTreeTransitionRequest"); \ +static_assert(offsetof(FStateTreeTransitionRequest, SourceState) == 0x000000, "Member 'FStateTreeTransitionRequest::SourceState' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionRequest, TargetState) == 0x000002, "Member 'FStateTreeTransitionRequest::TargetState' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionRequest, Priority) == 0x000004, "Member 'FStateTreeTransitionRequest::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeActiveStates \ +static_assert(alignof(FStateTreeActiveStates) == 0x000002, "Wrong alignment on FStateTreeActiveStates"); \ +static_assert(sizeof(FStateTreeActiveStates) == 0x000012, "Wrong size on FStateTreeActiveStates"); \ +static_assert(offsetof(FStateTreeActiveStates, States) == 0x000000, "Member 'FStateTreeActiveStates::States' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeActiveStates, NumStates) == 0x000010, "Member 'FStateTreeActiveStates::NumStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeTransitionSource \ +static_assert(alignof(FStateTreeTransitionSource) == 0x000002, "Wrong alignment on FStateTreeTransitionSource"); \ +static_assert(sizeof(FStateTreeTransitionSource) == 0x000008, "Wrong size on FStateTreeTransitionSource"); \ + +#define DUMPER7_ASSERTS_FStateTreeTransitionResult \ +static_assert(alignof(FStateTreeTransitionResult) == 0x000002, "Wrong alignment on FStateTreeTransitionResult"); \ +static_assert(sizeof(FStateTreeTransitionResult) == 0x00002E, "Wrong size on FStateTreeTransitionResult"); \ +static_assert(offsetof(FStateTreeTransitionResult, CurrentActiveStates) == 0x000000, "Member 'FStateTreeTransitionResult::CurrentActiveStates' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, CurrentRunStatus) == 0x000012, "Member 'FStateTreeTransitionResult::CurrentRunStatus' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, SourceState) == 0x000014, "Member 'FStateTreeTransitionResult::SourceState' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, TargetState) == 0x000016, "Member 'FStateTreeTransitionResult::TargetState' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, NextActiveStates) == 0x000018, "Member 'FStateTreeTransitionResult::NextActiveStates' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, CurrentState) == 0x00002A, "Member 'FStateTreeTransitionResult::CurrentState' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, ChangeType) == 0x00002C, "Member 'FStateTreeTransitionResult::ChangeType' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionResult, Priority) == 0x00002D, "Member 'FStateTreeTransitionResult::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeExecutionState \ +static_assert(alignof(FStateTreeExecutionState) == 0x000008, "Wrong alignment on FStateTreeExecutionState"); \ +static_assert(sizeof(FStateTreeExecutionState) == 0x000030, "Wrong size on FStateTreeExecutionState"); \ + +#define DUMPER7_ASSERTS_FStateTreeIndex8 \ +static_assert(alignof(FStateTreeIndex8) == 0x000001, "Wrong alignment on FStateTreeIndex8"); \ +static_assert(sizeof(FStateTreeIndex8) == 0x000001, "Wrong size on FStateTreeIndex8"); \ +static_assert(offsetof(FStateTreeIndex8, Value) == 0x000000, "Member 'FStateTreeIndex8::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeNodeBase \ +static_assert(alignof(FStateTreeNodeBase) == 0x000008, "Wrong alignment on FStateTreeNodeBase"); \ +static_assert(sizeof(FStateTreeNodeBase) == 0x000018, "Wrong size on FStateTreeNodeBase"); \ +static_assert(offsetof(FStateTreeNodeBase, Name) == 0x000008, "Member 'FStateTreeNodeBase::Name' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeNodeBase, BindingsBatch) == 0x000010, "Member 'FStateTreeNodeBase::BindingsBatch' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeNodeBase, DataViewIndex) == 0x000012, "Member 'FStateTreeNodeBase::DataViewIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeNodeBase, InstanceIndex) == 0x000014, "Member 'FStateTreeNodeBase::InstanceIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeConditionBase \ +static_assert(alignof(FStateTreeConditionBase) == 0x000008, "Wrong alignment on FStateTreeConditionBase"); \ +static_assert(sizeof(FStateTreeConditionBase) == 0x000020, "Wrong size on FStateTreeConditionBase"); \ +static_assert(offsetof(FStateTreeConditionBase, Operand) == 0x000018, "Member 'FStateTreeConditionBase::Operand' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeConditionBase, DeltaIndent) == 0x000019, "Member 'FStateTreeConditionBase::DeltaIndent' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeConditionBase, EvaluationMode) == 0x00001A, "Member 'FStateTreeConditionBase::EvaluationMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeBlueprintConditionWrapper \ +static_assert(alignof(FStateTreeBlueprintConditionWrapper) == 0x000008, "Wrong alignment on FStateTreeBlueprintConditionWrapper"); \ +static_assert(sizeof(FStateTreeBlueprintConditionWrapper) == 0x000028, "Wrong size on FStateTreeBlueprintConditionWrapper"); \ +static_assert(offsetof(FStateTreeBlueprintConditionWrapper, ConditionClass) == 0x000020, "Member 'FStateTreeBlueprintConditionWrapper::ConditionClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeEvaluatorBase \ +static_assert(alignof(FStateTreeEvaluatorBase) == 0x000008, "Wrong alignment on FStateTreeEvaluatorBase"); \ +static_assert(sizeof(FStateTreeEvaluatorBase) == 0x000018, "Wrong size on FStateTreeEvaluatorBase"); \ + +#define DUMPER7_ASSERTS_FStateTreeBlueprintEvaluatorWrapper \ +static_assert(alignof(FStateTreeBlueprintEvaluatorWrapper) == 0x000008, "Wrong alignment on FStateTreeBlueprintEvaluatorWrapper"); \ +static_assert(sizeof(FStateTreeBlueprintEvaluatorWrapper) == 0x000020, "Wrong size on FStateTreeBlueprintEvaluatorWrapper"); \ +static_assert(offsetof(FStateTreeBlueprintEvaluatorWrapper, EvaluatorClass) == 0x000018, "Member 'FStateTreeBlueprintEvaluatorWrapper::EvaluatorClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeTaskBase \ +static_assert(alignof(FStateTreeTaskBase) == 0x000008, "Wrong alignment on FStateTreeTaskBase"); \ +static_assert(sizeof(FStateTreeTaskBase) == 0x000020, "Wrong size on FStateTreeTaskBase"); \ + +#define DUMPER7_ASSERTS_FStateTreeBlueprintTaskWrapper \ +static_assert(alignof(FStateTreeBlueprintTaskWrapper) == 0x000008, "Wrong alignment on FStateTreeBlueprintTaskWrapper"); \ +static_assert(sizeof(FStateTreeBlueprintTaskWrapper) == 0x000028, "Wrong size on FStateTreeBlueprintTaskWrapper"); \ +static_assert(offsetof(FStateTreeBlueprintTaskWrapper, TaskClass) == 0x000020, "Member 'FStateTreeBlueprintTaskWrapper::TaskClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareIntConditionInstanceData \ +static_assert(alignof(FStateTreeCompareIntConditionInstanceData) == 0x000004, "Wrong alignment on FStateTreeCompareIntConditionInstanceData"); \ +static_assert(sizeof(FStateTreeCompareIntConditionInstanceData) == 0x000008, "Wrong size on FStateTreeCompareIntConditionInstanceData"); \ +static_assert(offsetof(FStateTreeCompareIntConditionInstanceData, Left) == 0x000000, "Member 'FStateTreeCompareIntConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareIntConditionInstanceData, Right) == 0x000004, "Member 'FStateTreeCompareIntConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeConditionCommonBase \ +static_assert(alignof(FStateTreeConditionCommonBase) == 0x000008, "Wrong alignment on FStateTreeConditionCommonBase"); \ +static_assert(sizeof(FStateTreeConditionCommonBase) == 0x000020, "Wrong size on FStateTreeConditionCommonBase"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareIntCondition \ +static_assert(alignof(FStateTreeCompareIntCondition) == 0x000008, "Wrong alignment on FStateTreeCompareIntCondition"); \ +static_assert(sizeof(FStateTreeCompareIntCondition) == 0x000028, "Wrong size on FStateTreeCompareIntCondition"); \ +static_assert(offsetof(FStateTreeCompareIntCondition, bInvert) == 0x000020, "Member 'FStateTreeCompareIntCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareIntCondition, Operator) == 0x000021, "Member 'FStateTreeCompareIntCondition::Operator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareFloatConditionInstanceData \ +static_assert(alignof(FStateTreeCompareFloatConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeCompareFloatConditionInstanceData"); \ +static_assert(sizeof(FStateTreeCompareFloatConditionInstanceData) == 0x000010, "Wrong size on FStateTreeCompareFloatConditionInstanceData"); \ +static_assert(offsetof(FStateTreeCompareFloatConditionInstanceData, Left) == 0x000000, "Member 'FStateTreeCompareFloatConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareFloatConditionInstanceData, Right) == 0x000008, "Member 'FStateTreeCompareFloatConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareFloatCondition \ +static_assert(alignof(FStateTreeCompareFloatCondition) == 0x000008, "Wrong alignment on FStateTreeCompareFloatCondition"); \ +static_assert(sizeof(FStateTreeCompareFloatCondition) == 0x000028, "Wrong size on FStateTreeCompareFloatCondition"); \ +static_assert(offsetof(FStateTreeCompareFloatCondition, bInvert) == 0x000020, "Member 'FStateTreeCompareFloatCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareFloatCondition, Operator) == 0x000021, "Member 'FStateTreeCompareFloatCondition::Operator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareBoolConditionInstanceData \ +static_assert(alignof(FStateTreeCompareBoolConditionInstanceData) == 0x000001, "Wrong alignment on FStateTreeCompareBoolConditionInstanceData"); \ +static_assert(sizeof(FStateTreeCompareBoolConditionInstanceData) == 0x000002, "Wrong size on FStateTreeCompareBoolConditionInstanceData"); \ +static_assert(offsetof(FStateTreeCompareBoolConditionInstanceData, bLeft) == 0x000000, "Member 'FStateTreeCompareBoolConditionInstanceData::bLeft' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareBoolConditionInstanceData, bRight) == 0x000001, "Member 'FStateTreeCompareBoolConditionInstanceData::bRight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareBoolCondition \ +static_assert(alignof(FStateTreeCompareBoolCondition) == 0x000008, "Wrong alignment on FStateTreeCompareBoolCondition"); \ +static_assert(sizeof(FStateTreeCompareBoolCondition) == 0x000028, "Wrong size on FStateTreeCompareBoolCondition"); \ +static_assert(offsetof(FStateTreeCompareBoolCondition, bInvert) == 0x000020, "Member 'FStateTreeCompareBoolCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareEnumConditionInstanceData \ +static_assert(alignof(FStateTreeCompareEnumConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeCompareEnumConditionInstanceData"); \ +static_assert(sizeof(FStateTreeCompareEnumConditionInstanceData) == 0x000020, "Wrong size on FStateTreeCompareEnumConditionInstanceData"); \ +static_assert(offsetof(FStateTreeCompareEnumConditionInstanceData, Left) == 0x000000, "Member 'FStateTreeCompareEnumConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareEnumConditionInstanceData, Right) == 0x000010, "Member 'FStateTreeCompareEnumConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareEnumCondition \ +static_assert(alignof(FStateTreeCompareEnumCondition) == 0x000008, "Wrong alignment on FStateTreeCompareEnumCondition"); \ +static_assert(sizeof(FStateTreeCompareEnumCondition) == 0x000028, "Wrong size on FStateTreeCompareEnumCondition"); \ +static_assert(offsetof(FStateTreeCompareEnumCondition, bInvert) == 0x000020, "Member 'FStateTreeCompareEnumCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareDistanceConditionInstanceData \ +static_assert(alignof(FStateTreeCompareDistanceConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeCompareDistanceConditionInstanceData"); \ +static_assert(sizeof(FStateTreeCompareDistanceConditionInstanceData) == 0x000038, "Wrong size on FStateTreeCompareDistanceConditionInstanceData"); \ +static_assert(offsetof(FStateTreeCompareDistanceConditionInstanceData, Source) == 0x000000, "Member 'FStateTreeCompareDistanceConditionInstanceData::Source' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareDistanceConditionInstanceData, Target) == 0x000018, "Member 'FStateTreeCompareDistanceConditionInstanceData::Target' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareDistanceConditionInstanceData, Distance) == 0x000030, "Member 'FStateTreeCompareDistanceConditionInstanceData::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeCompareDistanceCondition \ +static_assert(alignof(FStateTreeCompareDistanceCondition) == 0x000008, "Wrong alignment on FStateTreeCompareDistanceCondition"); \ +static_assert(sizeof(FStateTreeCompareDistanceCondition) == 0x000028, "Wrong size on FStateTreeCompareDistanceCondition"); \ +static_assert(offsetof(FStateTreeCompareDistanceCondition, bInvert) == 0x000020, "Member 'FStateTreeCompareDistanceCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeCompareDistanceCondition, Operator) == 0x000021, "Member 'FStateTreeCompareDistanceCondition::Operator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeRandomConditionInstanceData \ +static_assert(alignof(FStateTreeRandomConditionInstanceData) == 0x000004, "Wrong alignment on FStateTreeRandomConditionInstanceData"); \ +static_assert(sizeof(FStateTreeRandomConditionInstanceData) == 0x000004, "Wrong size on FStateTreeRandomConditionInstanceData"); \ +static_assert(offsetof(FStateTreeRandomConditionInstanceData, Threshold) == 0x000000, "Member 'FStateTreeRandomConditionInstanceData::Threshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeRandomCondition \ +static_assert(alignof(FStateTreeRandomCondition) == 0x000008, "Wrong alignment on FStateTreeRandomCondition"); \ +static_assert(sizeof(FStateTreeRandomCondition) == 0x000020, "Wrong size on FStateTreeRandomCondition"); \ + +#define DUMPER7_ASSERTS_FGameplayTagMatchConditionInstanceData \ +static_assert(alignof(FGameplayTagMatchConditionInstanceData) == 0x000008, "Wrong alignment on FGameplayTagMatchConditionInstanceData"); \ +static_assert(sizeof(FGameplayTagMatchConditionInstanceData) == 0x000028, "Wrong size on FGameplayTagMatchConditionInstanceData"); \ +static_assert(offsetof(FGameplayTagMatchConditionInstanceData, TagContainer) == 0x000000, "Member 'FGameplayTagMatchConditionInstanceData::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagMatchConditionInstanceData, Tag) == 0x000020, "Member 'FGameplayTagMatchConditionInstanceData::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagMatchCondition \ +static_assert(alignof(FGameplayTagMatchCondition) == 0x000008, "Wrong alignment on FGameplayTagMatchCondition"); \ +static_assert(sizeof(FGameplayTagMatchCondition) == 0x000028, "Wrong size on FGameplayTagMatchCondition"); \ +static_assert(offsetof(FGameplayTagMatchCondition, bExactMatch) == 0x000020, "Member 'FGameplayTagMatchCondition::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagMatchCondition, bInvert) == 0x000021, "Member 'FGameplayTagMatchCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagContainerMatchConditionInstanceData \ +static_assert(alignof(FGameplayTagContainerMatchConditionInstanceData) == 0x000008, "Wrong alignment on FGameplayTagContainerMatchConditionInstanceData"); \ +static_assert(sizeof(FGameplayTagContainerMatchConditionInstanceData) == 0x000040, "Wrong size on FGameplayTagContainerMatchConditionInstanceData"); \ +static_assert(offsetof(FGameplayTagContainerMatchConditionInstanceData, TagContainer) == 0x000000, "Member 'FGameplayTagContainerMatchConditionInstanceData::TagContainer' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagContainerMatchConditionInstanceData, OtherContainer) == 0x000020, "Member 'FGameplayTagContainerMatchConditionInstanceData::OtherContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagContainerMatchCondition \ +static_assert(alignof(FGameplayTagContainerMatchCondition) == 0x000008, "Wrong alignment on FGameplayTagContainerMatchCondition"); \ +static_assert(sizeof(FGameplayTagContainerMatchCondition) == 0x000028, "Wrong size on FGameplayTagContainerMatchCondition"); \ +static_assert(offsetof(FGameplayTagContainerMatchCondition, MatchType) == 0x000020, "Member 'FGameplayTagContainerMatchCondition::MatchType' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagContainerMatchCondition, bExactMatch) == 0x000021, "Member 'FGameplayTagContainerMatchCondition::bExactMatch' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagContainerMatchCondition, bInvert) == 0x000022, "Member 'FGameplayTagContainerMatchCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagQueryConditionInstanceData \ +static_assert(alignof(FGameplayTagQueryConditionInstanceData) == 0x000008, "Wrong alignment on FGameplayTagQueryConditionInstanceData"); \ +static_assert(sizeof(FGameplayTagQueryConditionInstanceData) == 0x000020, "Wrong size on FGameplayTagQueryConditionInstanceData"); \ +static_assert(offsetof(FGameplayTagQueryConditionInstanceData, TagContainer) == 0x000000, "Member 'FGameplayTagQueryConditionInstanceData::TagContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayTagQueryCondition \ +static_assert(alignof(FGameplayTagQueryCondition) == 0x000008, "Wrong alignment on FGameplayTagQueryCondition"); \ +static_assert(sizeof(FGameplayTagQueryCondition) == 0x000070, "Wrong size on FGameplayTagQueryCondition"); \ +static_assert(offsetof(FGameplayTagQueryCondition, TagQuery) == 0x000020, "Member 'FGameplayTagQueryCondition::TagQuery' has a wrong offset!"); \ +static_assert(offsetof(FGameplayTagQueryCondition, bInvert) == 0x000068, "Member 'FGameplayTagQueryCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectIsValidConditionInstanceData \ +static_assert(alignof(FStateTreeObjectIsValidConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeObjectIsValidConditionInstanceData"); \ +static_assert(sizeof(FStateTreeObjectIsValidConditionInstanceData) == 0x000008, "Wrong size on FStateTreeObjectIsValidConditionInstanceData"); \ +static_assert(offsetof(FStateTreeObjectIsValidConditionInstanceData, Object) == 0x000000, "Member 'FStateTreeObjectIsValidConditionInstanceData::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectIsValidCondition \ +static_assert(alignof(FStateTreeObjectIsValidCondition) == 0x000008, "Wrong alignment on FStateTreeObjectIsValidCondition"); \ +static_assert(sizeof(FStateTreeObjectIsValidCondition) == 0x000028, "Wrong size on FStateTreeObjectIsValidCondition"); \ +static_assert(offsetof(FStateTreeObjectIsValidCondition, bInvert) == 0x000020, "Member 'FStateTreeObjectIsValidCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectEqualsConditionInstanceData \ +static_assert(alignof(FStateTreeObjectEqualsConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeObjectEqualsConditionInstanceData"); \ +static_assert(sizeof(FStateTreeObjectEqualsConditionInstanceData) == 0x000010, "Wrong size on FStateTreeObjectEqualsConditionInstanceData"); \ +static_assert(offsetof(FStateTreeObjectEqualsConditionInstanceData, Left) == 0x000000, "Member 'FStateTreeObjectEqualsConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeObjectEqualsConditionInstanceData, Right) == 0x000008, "Member 'FStateTreeObjectEqualsConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectEqualsCondition \ +static_assert(alignof(FStateTreeObjectEqualsCondition) == 0x000008, "Wrong alignment on FStateTreeObjectEqualsCondition"); \ +static_assert(sizeof(FStateTreeObjectEqualsCondition) == 0x000028, "Wrong size on FStateTreeObjectEqualsCondition"); \ +static_assert(offsetof(FStateTreeObjectEqualsCondition, bInvert) == 0x000020, "Member 'FStateTreeObjectEqualsCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectIsChildOfClassConditionInstanceData \ +static_assert(alignof(FStateTreeObjectIsChildOfClassConditionInstanceData) == 0x000008, "Wrong alignment on FStateTreeObjectIsChildOfClassConditionInstanceData"); \ +static_assert(sizeof(FStateTreeObjectIsChildOfClassConditionInstanceData) == 0x000010, "Wrong size on FStateTreeObjectIsChildOfClassConditionInstanceData"); \ +static_assert(offsetof(FStateTreeObjectIsChildOfClassConditionInstanceData, Object) == 0x000000, "Member 'FStateTreeObjectIsChildOfClassConditionInstanceData::Object' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeObjectIsChildOfClassConditionInstanceData, Class) == 0x000008, "Member 'FStateTreeObjectIsChildOfClassConditionInstanceData::Class' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeObjectIsChildOfClassCondition \ +static_assert(alignof(FStateTreeObjectIsChildOfClassCondition) == 0x000008, "Wrong alignment on FStateTreeObjectIsChildOfClassCondition"); \ +static_assert(sizeof(FStateTreeObjectIsChildOfClassCondition) == 0x000028, "Wrong size on FStateTreeObjectIsChildOfClassCondition"); \ +static_assert(offsetof(FStateTreeObjectIsChildOfClassCondition, bInvert) == 0x000020, "Member 'FStateTreeObjectIsChildOfClassCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeEvaluatorCommonBase \ +static_assert(alignof(FStateTreeEvaluatorCommonBase) == 0x000008, "Wrong alignment on FStateTreeEvaluatorCommonBase"); \ +static_assert(sizeof(FStateTreeEvaluatorCommonBase) == 0x000018, "Wrong size on FStateTreeEvaluatorCommonBase"); \ + +#define DUMPER7_ASSERTS_FStateTreeEvent \ +static_assert(alignof(FStateTreeEvent) == 0x000008, "Wrong alignment on FStateTreeEvent"); \ +static_assert(sizeof(FStateTreeEvent) == 0x000020, "Wrong size on FStateTreeEvent"); \ +static_assert(offsetof(FStateTreeEvent, Tag) == 0x000000, "Member 'FStateTreeEvent::Tag' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeEvent, Payload) == 0x000008, "Member 'FStateTreeEvent::Payload' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeEvent, Origin) == 0x000018, "Member 'FStateTreeEvent::Origin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeEventQueue \ +static_assert(alignof(FStateTreeEventQueue) == 0x000008, "Wrong alignment on FStateTreeEventQueue"); \ +static_assert(sizeof(FStateTreeEventQueue) == 0x000010, "Wrong size on FStateTreeEventQueue"); \ +static_assert(offsetof(FStateTreeEventQueue, Events) == 0x000000, "Member 'FStateTreeEventQueue::Events' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeInstanceStorage \ +static_assert(alignof(FStateTreeInstanceStorage) == 0x000008, "Wrong alignment on FStateTreeInstanceStorage"); \ +static_assert(sizeof(FStateTreeInstanceStorage) == 0x000040, "Wrong size on FStateTreeInstanceStorage"); \ +static_assert(offsetof(FStateTreeInstanceStorage, InstanceStructs) == 0x000000, "Member 'FStateTreeInstanceStorage::InstanceStructs' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeInstanceStorage, InstanceObjects) == 0x000010, "Member 'FStateTreeInstanceStorage::InstanceObjects' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeInstanceStorage, EventQueue) == 0x000020, "Member 'FStateTreeInstanceStorage::EventQueue' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeInstanceStorage, TransitionRequests) == 0x000030, "Member 'FStateTreeInstanceStorage::TransitionRequests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeInstanceData \ +static_assert(alignof(FStateTreeInstanceData) == 0x000008, "Wrong alignment on FStateTreeInstanceData"); \ +static_assert(sizeof(FStateTreeInstanceData) == 0x000010, "Wrong size on FStateTreeInstanceData"); \ +static_assert(offsetof(FStateTreeInstanceData, InstanceStorage) == 0x000000, "Member 'FStateTreeInstanceData::InstanceStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeBindableStructDesc \ +static_assert(alignof(FStateTreeBindableStructDesc) == 0x000008, "Wrong alignment on FStateTreeBindableStructDesc"); \ +static_assert(sizeof(FStateTreeBindableStructDesc) == 0x000018, "Wrong size on FStateTreeBindableStructDesc"); \ +static_assert(offsetof(FStateTreeBindableStructDesc, Struct) == 0x000000, "Member 'FStateTreeBindableStructDesc::Struct' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeBindableStructDesc, Name) == 0x000008, "Member 'FStateTreeBindableStructDesc::Name' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeBindableStructDesc, DataSource) == 0x000010, "Member 'FStateTreeBindableStructDesc::DataSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyPathSegment \ +static_assert(alignof(FStateTreePropertyPathSegment) == 0x000008, "Wrong alignment on FStateTreePropertyPathSegment"); \ +static_assert(sizeof(FStateTreePropertyPathSegment) == 0x000018, "Wrong size on FStateTreePropertyPathSegment"); \ +static_assert(offsetof(FStateTreePropertyPathSegment, Name) == 0x000000, "Member 'FStateTreePropertyPathSegment::Name' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyPathSegment, ArrayIndex) == 0x000008, "Member 'FStateTreePropertyPathSegment::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyPathSegment, InstanceStruct) == 0x000010, "Member 'FStateTreePropertyPathSegment::InstanceStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyPath \ +static_assert(alignof(FStateTreePropertyPath) == 0x000008, "Wrong alignment on FStateTreePropertyPath"); \ +static_assert(sizeof(FStateTreePropertyPath) == 0x000010, "Wrong size on FStateTreePropertyPath"); \ +static_assert(offsetof(FStateTreePropertyPath, Segments) == 0x000000, "Member 'FStateTreePropertyPath::Segments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeEditorPropertyPath \ +static_assert(alignof(FStateTreeEditorPropertyPath) == 0x000008, "Wrong alignment on FStateTreeEditorPropertyPath"); \ +static_assert(sizeof(FStateTreeEditorPropertyPath) == 0x000020, "Wrong size on FStateTreeEditorPropertyPath"); \ +static_assert(offsetof(FStateTreeEditorPropertyPath, StructID) == 0x000000, "Member 'FStateTreeEditorPropertyPath::StructID' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeEditorPropertyPath, Path) == 0x000010, "Member 'FStateTreeEditorPropertyPath::Path' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyPathBinding \ +static_assert(alignof(FStateTreePropertyPathBinding) == 0x000008, "Wrong alignment on FStateTreePropertyPathBinding"); \ +static_assert(sizeof(FStateTreePropertyPathBinding) == 0x000028, "Wrong size on FStateTreePropertyPathBinding"); \ +static_assert(offsetof(FStateTreePropertyPathBinding, SourcePropertyPath) == 0x000000, "Member 'FStateTreePropertyPathBinding::SourcePropertyPath' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyPathBinding, TargetPropertyPath) == 0x000010, "Member 'FStateTreePropertyPathBinding::TargetPropertyPath' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyPathBinding, CompiledSourceStructIndex) == 0x000020, "Member 'FStateTreePropertyPathBinding::CompiledSourceStructIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertySegment \ +static_assert(alignof(FStateTreePropertySegment) == 0x000004, "Wrong alignment on FStateTreePropertySegment"); \ +static_assert(sizeof(FStateTreePropertySegment) == 0x000010, "Wrong size on FStateTreePropertySegment"); \ +static_assert(offsetof(FStateTreePropertySegment, Name) == 0x000000, "Member 'FStateTreePropertySegment::Name' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertySegment, ArrayIndex) == 0x000008, "Member 'FStateTreePropertySegment::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertySegment, NextIndex) == 0x00000A, "Member 'FStateTreePropertySegment::NextIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertySegment, Type) == 0x00000C, "Member 'FStateTreePropertySegment::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyBinding \ +static_assert(alignof(FStateTreePropertyBinding) == 0x000004, "Wrong alignment on FStateTreePropertyBinding"); \ +static_assert(sizeof(FStateTreePropertyBinding) == 0x000024, "Wrong size on FStateTreePropertyBinding"); \ +static_assert(offsetof(FStateTreePropertyBinding, SourcePath) == 0x000000, "Member 'FStateTreePropertyBinding::SourcePath' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBinding, TargetPath) == 0x000010, "Member 'FStateTreePropertyBinding::TargetPath' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBinding, SourceStructIndex) == 0x000020, "Member 'FStateTreePropertyBinding::SourceStructIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBinding, CopyType) == 0x000022, "Member 'FStateTreePropertyBinding::CopyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyIndirection \ +static_assert(alignof(FStateTreePropertyIndirection) == 0x000008, "Wrong alignment on FStateTreePropertyIndirection"); \ +static_assert(sizeof(FStateTreePropertyIndirection) == 0x000018, "Wrong size on FStateTreePropertyIndirection"); \ +static_assert(offsetof(FStateTreePropertyIndirection, ArrayIndex) == 0x000000, "Member 'FStateTreePropertyIndirection::ArrayIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyIndirection, Offset) == 0x000002, "Member 'FStateTreePropertyIndirection::Offset' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyIndirection, NextIndex) == 0x000004, "Member 'FStateTreePropertyIndirection::NextIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyIndirection, Type) == 0x000006, "Member 'FStateTreePropertyIndirection::Type' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyIndirection, InstanceStruct) == 0x000008, "Member 'FStateTreePropertyIndirection::InstanceStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyCopy \ +static_assert(alignof(FStateTreePropertyCopy) == 0x000008, "Wrong alignment on FStateTreePropertyCopy"); \ +static_assert(sizeof(FStateTreePropertyCopy) == 0x000048, "Wrong size on FStateTreePropertyCopy"); \ +static_assert(offsetof(FStateTreePropertyCopy, SourceIndirection) == 0x000000, "Member 'FStateTreePropertyCopy::SourceIndirection' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopy, TargetIndirection) == 0x000018, "Member 'FStateTreePropertyCopy::TargetIndirection' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopy, CopySize) == 0x000040, "Member 'FStateTreePropertyCopy::CopySize' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopy, SourceStructIndex) == 0x000044, "Member 'FStateTreePropertyCopy::SourceStructIndex' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopy, Type) == 0x000046, "Member 'FStateTreePropertyCopy::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyCopyBatch \ +static_assert(alignof(FStateTreePropertyCopyBatch) == 0x000008, "Wrong alignment on FStateTreePropertyCopyBatch"); \ +static_assert(sizeof(FStateTreePropertyCopyBatch) == 0x000020, "Wrong size on FStateTreePropertyCopyBatch"); \ +static_assert(offsetof(FStateTreePropertyCopyBatch, TargetStruct) == 0x000000, "Member 'FStateTreePropertyCopyBatch::TargetStruct' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopyBatch, BindingsBegin) == 0x000018, "Member 'FStateTreePropertyCopyBatch::BindingsBegin' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyCopyBatch, BindingsEnd) == 0x00001A, "Member 'FStateTreePropertyCopyBatch::BindingsEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreePropertyBindings \ +static_assert(alignof(FStateTreePropertyBindings) == 0x000008, "Wrong alignment on FStateTreePropertyBindings"); \ +static_assert(sizeof(FStateTreePropertyBindings) == 0x000058, "Wrong size on FStateTreePropertyBindings"); \ +static_assert(offsetof(FStateTreePropertyBindings, SourceStructs) == 0x000000, "Member 'FStateTreePropertyBindings::SourceStructs' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBindings, CopyBatches) == 0x000010, "Member 'FStateTreePropertyBindings::CopyBatches' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBindings, PropertyPathBindings) == 0x000020, "Member 'FStateTreePropertyBindings::PropertyPathBindings' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBindings, PropertyCopies) == 0x000030, "Member 'FStateTreePropertyBindings::PropertyCopies' has a wrong offset!"); \ +static_assert(offsetof(FStateTreePropertyBindings, PropertyIndirections) == 0x000040, "Member 'FStateTreePropertyBindings::PropertyIndirections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeReference \ +static_assert(alignof(FStateTreeReference) == 0x000008, "Wrong alignment on FStateTreeReference"); \ +static_assert(sizeof(FStateTreeReference) == 0x000018, "Wrong size on FStateTreeReference"); \ +static_assert(offsetof(FStateTreeReference, StateTree) == 0x000000, "Member 'FStateTreeReference::StateTree' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeReference, Parameters) == 0x000008, "Member 'FStateTreeReference::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeTaskCommonBase \ +static_assert(alignof(FStateTreeTaskCommonBase) == 0x000008, "Wrong alignment on FStateTreeTaskCommonBase"); \ +static_assert(sizeof(FStateTreeTaskCommonBase) == 0x000020, "Wrong size on FStateTreeTaskCommonBase"); \ + +#define DUMPER7_ASSERTS_FStateTreeRandomTimeDuration \ +static_assert(alignof(FStateTreeRandomTimeDuration) == 0x000002, "Wrong alignment on FStateTreeRandomTimeDuration"); \ +static_assert(sizeof(FStateTreeRandomTimeDuration) == 0x000004, "Wrong size on FStateTreeRandomTimeDuration"); \ +static_assert(offsetof(FStateTreeRandomTimeDuration, Duration) == 0x000000, "Member 'FStateTreeRandomTimeDuration::Duration' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeRandomTimeDuration, RandomVariance) == 0x000002, "Member 'FStateTreeRandomTimeDuration::RandomVariance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompactStateTransition \ +static_assert(alignof(FCompactStateTransition) == 0x000004, "Wrong alignment on FCompactStateTransition"); \ +static_assert(sizeof(FCompactStateTransition) == 0x000014, "Wrong size on FCompactStateTransition"); \ +static_assert(offsetof(FCompactStateTransition, EventTag) == 0x000000, "Member 'FCompactStateTransition::EventTag' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, ConditionsBegin) == 0x000008, "Member 'FCompactStateTransition::ConditionsBegin' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, State) == 0x00000A, "Member 'FCompactStateTransition::State' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, Delay) == 0x00000C, "Member 'FCompactStateTransition::Delay' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, Trigger) == 0x000010, "Member 'FCompactStateTransition::Trigger' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, Priority) == 0x000011, "Member 'FCompactStateTransition::Priority' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTransition, ConditionsNum) == 0x000012, "Member 'FCompactStateTransition::ConditionsNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompactStateTreeState \ +static_assert(alignof(FCompactStateTreeState) == 0x000004, "Wrong alignment on FCompactStateTreeState"); \ +static_assert(sizeof(FCompactStateTreeState) == 0x000024, "Wrong size on FCompactStateTreeState"); \ +static_assert(offsetof(FCompactStateTreeState, Name) == 0x000000, "Member 'FCompactStateTreeState::Name' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, LinkedState) == 0x000008, "Member 'FCompactStateTreeState::LinkedState' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, Parent) == 0x00000A, "Member 'FCompactStateTreeState::Parent' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, ChildrenBegin) == 0x00000C, "Member 'FCompactStateTreeState::ChildrenBegin' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, ChildrenEnd) == 0x00000E, "Member 'FCompactStateTreeState::ChildrenEnd' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, EnterConditionsBegin) == 0x000010, "Member 'FCompactStateTreeState::EnterConditionsBegin' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TransitionsBegin) == 0x000012, "Member 'FCompactStateTreeState::TransitionsBegin' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TasksBegin) == 0x000014, "Member 'FCompactStateTreeState::TasksBegin' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, ParameterInstanceIndex) == 0x000016, "Member 'FCompactStateTreeState::ParameterInstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, ParameterDataViewIndex) == 0x000018, "Member 'FCompactStateTreeState::ParameterDataViewIndex' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, EnterConditionsNum) == 0x00001A, "Member 'FCompactStateTreeState::EnterConditionsNum' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TransitionsNum) == 0x00001B, "Member 'FCompactStateTreeState::TransitionsNum' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TasksNum) == 0x00001C, "Member 'FCompactStateTreeState::TasksNum' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TaskInstanceStructNum) == 0x00001D, "Member 'FCompactStateTreeState::TaskInstanceStructNum' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, TaskInstanceObjectNum) == 0x00001E, "Member 'FCompactStateTreeState::TaskInstanceObjectNum' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, Type) == 0x00001F, "Member 'FCompactStateTreeState::Type' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeState, SelectionBehavior) == 0x000020, "Member 'FCompactStateTreeState::SelectionBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompactStateTreeParameters \ +static_assert(alignof(FCompactStateTreeParameters) == 0x000008, "Wrong alignment on FCompactStateTreeParameters"); \ +static_assert(sizeof(FCompactStateTreeParameters) == 0x000018, "Wrong size on FCompactStateTreeParameters"); \ +static_assert(offsetof(FCompactStateTreeParameters, BindingsBatch) == 0x000000, "Member 'FCompactStateTreeParameters::BindingsBatch' has a wrong offset!"); \ +static_assert(offsetof(FCompactStateTreeParameters, Parameters) == 0x000008, "Member 'FCompactStateTreeParameters::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeStateIdToHandle \ +static_assert(alignof(FStateTreeStateIdToHandle) == 0x000004, "Wrong alignment on FStateTreeStateIdToHandle"); \ +static_assert(sizeof(FStateTreeStateIdToHandle) == 0x000014, "Wrong size on FStateTreeStateIdToHandle"); \ +static_assert(offsetof(FStateTreeStateIdToHandle, ID) == 0x000000, "Member 'FStateTreeStateIdToHandle::ID' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeStateIdToHandle, Handle) == 0x000010, "Member 'FStateTreeStateIdToHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeNodeIdToIndex \ +static_assert(alignof(FStateTreeNodeIdToIndex) == 0x000004, "Wrong alignment on FStateTreeNodeIdToIndex"); \ +static_assert(sizeof(FStateTreeNodeIdToIndex) == 0x000014, "Wrong size on FStateTreeNodeIdToIndex"); \ +static_assert(offsetof(FStateTreeNodeIdToIndex, ID) == 0x000000, "Member 'FStateTreeNodeIdToIndex::ID' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeNodeIdToIndex, Index) == 0x000010, "Member 'FStateTreeNodeIdToIndex::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeTransitionIdToIndex \ +static_assert(alignof(FStateTreeTransitionIdToIndex) == 0x000004, "Wrong alignment on FStateTreeTransitionIdToIndex"); \ +static_assert(sizeof(FStateTreeTransitionIdToIndex) == 0x000014, "Wrong size on FStateTreeTransitionIdToIndex"); \ +static_assert(offsetof(FStateTreeTransitionIdToIndex, ID) == 0x000000, "Member 'FStateTreeTransitionIdToIndex::ID' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeTransitionIdToIndex, Index) == 0x000010, "Member 'FStateTreeTransitionIdToIndex::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeStructRef \ +static_assert(alignof(FStateTreeStructRef) == 0x000008, "Wrong alignment on FStateTreeStructRef"); \ +static_assert(sizeof(FStateTreeStructRef) == 0x000010, "Wrong size on FStateTreeStructRef"); \ + +#define DUMPER7_ASSERTS_FStateTreeStateLink \ +static_assert(alignof(FStateTreeStateLink) == 0x000002, "Wrong alignment on FStateTreeStateLink"); \ +static_assert(sizeof(FStateTreeStateLink) == 0x000002, "Wrong size on FStateTreeStateLink"); \ +static_assert(offsetof(FStateTreeStateLink, StateHandle) == 0x000000, "Member 'FStateTreeStateLink::StateHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeDebugTextTaskInstanceData \ +static_assert(alignof(FStateTreeDebugTextTaskInstanceData) == 0x000008, "Wrong alignment on FStateTreeDebugTextTaskInstanceData"); \ +static_assert(sizeof(FStateTreeDebugTextTaskInstanceData) == 0x000008, "Wrong size on FStateTreeDebugTextTaskInstanceData"); \ +static_assert(offsetof(FStateTreeDebugTextTaskInstanceData, ReferenceActor) == 0x000000, "Member 'FStateTreeDebugTextTaskInstanceData::ReferenceActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeDebugTextTask \ +static_assert(alignof(FStateTreeDebugTextTask) == 0x000008, "Wrong alignment on FStateTreeDebugTextTask"); \ +static_assert(sizeof(FStateTreeDebugTextTask) == 0x000058, "Wrong size on FStateTreeDebugTextTask"); \ +static_assert(offsetof(FStateTreeDebugTextTask, Text) == 0x000020, "Member 'FStateTreeDebugTextTask::Text' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDebugTextTask, TextColor) == 0x000030, "Member 'FStateTreeDebugTextTask::TextColor' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDebugTextTask, FontScale) == 0x000034, "Member 'FStateTreeDebugTextTask::FontScale' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDebugTextTask, Offset) == 0x000038, "Member 'FStateTreeDebugTextTask::Offset' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDebugTextTask, bEnabled) == 0x000050, "Member 'FStateTreeDebugTextTask::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeDelayTaskInstanceData \ +static_assert(alignof(FStateTreeDelayTaskInstanceData) == 0x000004, "Wrong alignment on FStateTreeDelayTaskInstanceData"); \ +static_assert(sizeof(FStateTreeDelayTaskInstanceData) == 0x000010, "Wrong size on FStateTreeDelayTaskInstanceData"); \ +static_assert(offsetof(FStateTreeDelayTaskInstanceData, Duration) == 0x000000, "Member 'FStateTreeDelayTaskInstanceData::Duration' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDelayTaskInstanceData, RandomDeviation) == 0x000004, "Member 'FStateTreeDelayTaskInstanceData::RandomDeviation' has a wrong offset!"); \ +static_assert(offsetof(FStateTreeDelayTaskInstanceData, bRunForever) == 0x000008, "Member 'FStateTreeDelayTaskInstanceData::bRunForever' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStateTreeDelayTask \ +static_assert(alignof(FStateTreeDelayTask) == 0x000008, "Wrong alignment on FStateTreeDelayTask"); \ +static_assert(sizeof(FStateTreeDelayTask) == 0x000020, "Wrong size on FStateTreeDelayTask"); \ + +#define DUMPER7_ASSERTS_UStateTreeSettings \ +static_assert(alignof(UStateTreeSettings) == 0x000008, "Wrong alignment on UStateTreeSettings"); \ +static_assert(sizeof(UStateTreeSettings) == 0x000040, "Wrong size on UStateTreeSettings"); \ +static_assert(offsetof(UStateTreeSettings, bAutoStartDebuggerTracesOnNonEditorTargets) == 0x000038, "Member 'UStateTreeSettings::bAutoStartDebuggerTracesOnNonEditorTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeNodeBlueprintBase_RequestTransition \ +static_assert(alignof(StateTreeNodeBlueprintBase_RequestTransition) == 0x000002, "Wrong alignment on StateTreeNodeBlueprintBase_RequestTransition"); \ +static_assert(sizeof(StateTreeNodeBlueprintBase_RequestTransition) == 0x000004, "Wrong size on StateTreeNodeBlueprintBase_RequestTransition"); \ +static_assert(offsetof(StateTreeNodeBlueprintBase_RequestTransition, TargetState) == 0x000000, "Member 'StateTreeNodeBlueprintBase_RequestTransition::TargetState' has a wrong offset!"); \ +static_assert(offsetof(StateTreeNodeBlueprintBase_RequestTransition, Priority) == 0x000002, "Member 'StateTreeNodeBlueprintBase_RequestTransition::Priority' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeNodeBlueprintBase_SendEvent \ +static_assert(alignof(StateTreeNodeBlueprintBase_SendEvent) == 0x000008, "Wrong alignment on StateTreeNodeBlueprintBase_SendEvent"); \ +static_assert(sizeof(StateTreeNodeBlueprintBase_SendEvent) == 0x000020, "Wrong size on StateTreeNodeBlueprintBase_SendEvent"); \ +static_assert(offsetof(StateTreeNodeBlueprintBase_SendEvent, Event) == 0x000000, "Member 'StateTreeNodeBlueprintBase_SendEvent::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeNodeBlueprintBase \ +static_assert(alignof(UStateTreeNodeBlueprintBase) == 0x000008, "Wrong alignment on UStateTreeNodeBlueprintBase"); \ +static_assert(sizeof(UStateTreeNodeBlueprintBase) == 0x000040, "Wrong size on UStateTreeNodeBlueprintBase"); \ +static_assert(offsetof(UStateTreeNodeBlueprintBase, CachedOwner) == 0x000038, "Member 'UStateTreeNodeBlueprintBase::CachedOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeConditionBlueprintBase_ReceiveTestCondition \ +static_assert(alignof(StateTreeConditionBlueprintBase_ReceiveTestCondition) == 0x000001, "Wrong alignment on StateTreeConditionBlueprintBase_ReceiveTestCondition"); \ +static_assert(sizeof(StateTreeConditionBlueprintBase_ReceiveTestCondition) == 0x000001, "Wrong size on StateTreeConditionBlueprintBase_ReceiveTestCondition"); \ +static_assert(offsetof(StateTreeConditionBlueprintBase_ReceiveTestCondition, ReturnValue) == 0x000000, "Member 'StateTreeConditionBlueprintBase_ReceiveTestCondition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeConditionBlueprintBase \ +static_assert(alignof(UStateTreeConditionBlueprintBase) == 0x000008, "Wrong alignment on UStateTreeConditionBlueprintBase"); \ +static_assert(sizeof(UStateTreeConditionBlueprintBase) == 0x000048, "Wrong size on UStateTreeConditionBlueprintBase"); \ + +#define DUMPER7_ASSERTS_StateTreeEvaluatorBlueprintBase_ReceiveTick \ +static_assert(alignof(StateTreeEvaluatorBlueprintBase_ReceiveTick) == 0x000004, "Wrong alignment on StateTreeEvaluatorBlueprintBase_ReceiveTick"); \ +static_assert(sizeof(StateTreeEvaluatorBlueprintBase_ReceiveTick) == 0x000004, "Wrong size on StateTreeEvaluatorBlueprintBase_ReceiveTick"); \ +static_assert(offsetof(StateTreeEvaluatorBlueprintBase_ReceiveTick, DeltaTime) == 0x000000, "Member 'StateTreeEvaluatorBlueprintBase_ReceiveTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeEvaluatorBlueprintBase \ +static_assert(alignof(UStateTreeEvaluatorBlueprintBase) == 0x000008, "Wrong alignment on UStateTreeEvaluatorBlueprintBase"); \ +static_assert(sizeof(UStateTreeEvaluatorBlueprintBase) == 0x000048, "Wrong size on UStateTreeEvaluatorBlueprintBase"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_FinishTask \ +static_assert(alignof(StateTreeTaskBlueprintBase_FinishTask) == 0x000001, "Wrong alignment on StateTreeTaskBlueprintBase_FinishTask"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_FinishTask) == 0x000001, "Wrong size on StateTreeTaskBlueprintBase_FinishTask"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_FinishTask, bSucceeded) == 0x000000, "Member 'StateTreeTaskBlueprintBase_FinishTask::bSucceeded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveEnterState \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveEnterState) == 0x000002, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveEnterState"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveEnterState) == 0x000030, "Wrong size on StateTreeTaskBlueprintBase_ReceiveEnterState"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveEnterState, Transition) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveEnterState::Transition' has a wrong offset!"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveEnterState, ReturnValue) == 0x00002E, "Member 'StateTreeTaskBlueprintBase_ReceiveEnterState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveExitState \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveExitState) == 0x000002, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveExitState"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveExitState) == 0x00002E, "Wrong size on StateTreeTaskBlueprintBase_ReceiveExitState"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveExitState, Transition) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveExitState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveLatentEnterState \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveLatentEnterState) == 0x000002, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveLatentEnterState"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveLatentEnterState) == 0x00002E, "Wrong size on StateTreeTaskBlueprintBase_ReceiveLatentEnterState"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveLatentEnterState, Transition) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveLatentEnterState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveLatentTick \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveLatentTick) == 0x000004, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveLatentTick"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveLatentTick) == 0x000004, "Wrong size on StateTreeTaskBlueprintBase_ReceiveLatentTick"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveLatentTick, DeltaTime) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveLatentTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveStateCompleted \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveStateCompleted) == 0x000002, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveStateCompleted"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveStateCompleted) == 0x000014, "Wrong size on StateTreeTaskBlueprintBase_ReceiveStateCompleted"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveStateCompleted, CompletionStatus) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveStateCompleted::CompletionStatus' has a wrong offset!"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveStateCompleted, CompletedActiveStates) == 0x000002, "Member 'StateTreeTaskBlueprintBase_ReceiveStateCompleted::CompletedActiveStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeTaskBlueprintBase_ReceiveTick \ +static_assert(alignof(StateTreeTaskBlueprintBase_ReceiveTick) == 0x000004, "Wrong alignment on StateTreeTaskBlueprintBase_ReceiveTick"); \ +static_assert(sizeof(StateTreeTaskBlueprintBase_ReceiveTick) == 0x000008, "Wrong size on StateTreeTaskBlueprintBase_ReceiveTick"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveTick, DeltaTime) == 0x000000, "Member 'StateTreeTaskBlueprintBase_ReceiveTick::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(StateTreeTaskBlueprintBase_ReceiveTick, ReturnValue) == 0x000004, "Member 'StateTreeTaskBlueprintBase_ReceiveTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeTaskBlueprintBase \ +static_assert(alignof(UStateTreeTaskBlueprintBase) == 0x000008, "Wrong alignment on UStateTreeTaskBlueprintBase"); \ +static_assert(sizeof(UStateTreeTaskBlueprintBase) == 0x000048, "Wrong size on UStateTreeTaskBlueprintBase"); \ + +#define DUMPER7_ASSERTS_UStateTree \ +static_assert(alignof(UStateTree) == 0x000008, "Wrong alignment on UStateTree"); \ +static_assert(sizeof(UStateTree) == 0x000180, "Wrong size on UStateTree"); \ +static_assert(offsetof(UStateTree, LastCompiledEditorDataHash) == 0x000030, "Member 'UStateTree::LastCompiledEditorDataHash' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, Schema) == 0x000038, "Member 'UStateTree::Schema' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, States) == 0x000040, "Member 'UStateTree::States' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, Transitions) == 0x000050, "Member 'UStateTree::Transitions' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, Nodes) == 0x000060, "Member 'UStateTree::Nodes' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, DefaultInstanceData) == 0x000070, "Member 'UStateTree::DefaultInstanceData' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, SharedInstanceData) == 0x000080, "Member 'UStateTree::SharedInstanceData' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, ContextDataDescs) == 0x0000A8, "Member 'UStateTree::ContextDataDescs' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, PropertyBindings) == 0x0000B8, "Member 'UStateTree::PropertyBindings' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, IDToStateMappings) == 0x000110, "Member 'UStateTree::IDToStateMappings' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, IDToNodeMappings) == 0x000120, "Member 'UStateTree::IDToNodeMappings' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, IDToTransitionMappings) == 0x000130, "Member 'UStateTree::IDToTransitionMappings' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, Parameters) == 0x000140, "Member 'UStateTree::Parameters' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, ParametersDataViewIndex) == 0x000150, "Member 'UStateTree::ParametersDataViewIndex' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, EvaluatorsBegin) == 0x000152, "Member 'UStateTree::EvaluatorsBegin' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, EvaluatorsNum) == 0x000154, "Member 'UStateTree::EvaluatorsNum' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, GlobalTasksBegin) == 0x000156, "Member 'UStateTree::GlobalTasksBegin' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, GlobalTasksNum) == 0x000158, "Member 'UStateTree::GlobalTasksNum' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, bHasGlobalTransitionTasks) == 0x00015A, "Member 'UStateTree::bHasGlobalTransitionTasks' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, ExternalDataDescs) == 0x000160, "Member 'UStateTree::ExternalDataDescs' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, ExternalDataBaseIndex) == 0x000170, "Member 'UStateTree::ExternalDataBaseIndex' has a wrong offset!"); \ +static_assert(offsetof(UStateTree, NumDataViews) == 0x000174, "Member 'UStateTree::NumDataViews' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeSchema \ +static_assert(alignof(UStateTreeSchema) == 0x000008, "Wrong alignment on UStateTreeSchema"); \ +static_assert(sizeof(UStateTreeSchema) == 0x000028, "Wrong size on UStateTreeSchema"); \ + +#define DUMPER7_ASSERTS_StateTreeComponent_SendStateTreeEvent \ +static_assert(alignof(StateTreeComponent_SendStateTreeEvent) == 0x000008, "Wrong alignment on StateTreeComponent_SendStateTreeEvent"); \ +static_assert(sizeof(StateTreeComponent_SendStateTreeEvent) == 0x000020, "Wrong size on StateTreeComponent_SendStateTreeEvent"); \ +static_assert(offsetof(StateTreeComponent_SendStateTreeEvent, Event) == 0x000000, "Member 'StateTreeComponent_SendStateTreeEvent::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeComponent_SetStartLogicAutomatically \ +static_assert(alignof(StateTreeComponent_SetStartLogicAutomatically) == 0x000001, "Wrong alignment on StateTreeComponent_SetStartLogicAutomatically"); \ +static_assert(sizeof(StateTreeComponent_SetStartLogicAutomatically) == 0x000001, "Wrong size on StateTreeComponent_SetStartLogicAutomatically"); \ +static_assert(offsetof(StateTreeComponent_SetStartLogicAutomatically, bInStartLogicAutomatically) == 0x000000, "Member 'StateTreeComponent_SetStartLogicAutomatically::bInStartLogicAutomatically' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StateTreeComponent_GetStateTreeRunStatus \ +static_assert(alignof(StateTreeComponent_GetStateTreeRunStatus) == 0x000001, "Wrong alignment on StateTreeComponent_GetStateTreeRunStatus"); \ +static_assert(sizeof(StateTreeComponent_GetStateTreeRunStatus) == 0x000001, "Wrong size on StateTreeComponent_GetStateTreeRunStatus"); \ +static_assert(offsetof(StateTreeComponent_GetStateTreeRunStatus, ReturnValue) == 0x000000, "Member 'StateTreeComponent_GetStateTreeRunStatus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeComponent \ +static_assert(alignof(UStateTreeComponent) == 0x000008, "Wrong alignment on UStateTreeComponent"); \ +static_assert(sizeof(UStateTreeComponent) == 0x000148, "Wrong size on UStateTreeComponent"); \ +static_assert(offsetof(UStateTreeComponent, OnStateTreeRunStatusChanged) == 0x000100, "Member 'UStateTreeComponent::OnStateTreeRunStatusChanged' has a wrong offset!"); \ +static_assert(offsetof(UStateTreeComponent, StateTreeRef) == 0x000110, "Member 'UStateTreeComponent::StateTreeRef' has a wrong offset!"); \ +static_assert(offsetof(UStateTreeComponent, bStartLogicAutomatically) == 0x000128, "Member 'UStateTreeComponent::bStartLogicAutomatically' has a wrong offset!"); \ +static_assert(offsetof(UStateTreeComponent, InstanceData) == 0x000130, "Member 'UStateTreeComponent::InstanceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStateTreeComponentSchema \ +static_assert(alignof(UStateTreeComponentSchema) == 0x000008, "Wrong alignment on UStateTreeComponentSchema"); \ +static_assert(sizeof(UStateTreeComponentSchema) == 0x000048, "Wrong size on UStateTreeComponentSchema"); \ +static_assert(offsetof(UStateTreeComponentSchema, ContextActorClass) == 0x000028, "Member 'UStateTreeComponentSchema::ContextActorClass' has a wrong offset!"); \ +static_assert(offsetof(UStateTreeComponentSchema, ContextActorDataDesc) == 0x000030, "Member 'UStateTreeComponentSchema::ContextActorDataDesc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassMovingAvoidanceParameters \ +static_assert(alignof(FMassMovingAvoidanceParameters) == 0x000004, "Wrong alignment on FMassMovingAvoidanceParameters"); \ +static_assert(sizeof(FMassMovingAvoidanceParameters) == 0x000044, "Wrong size on FMassMovingAvoidanceParameters"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, ObstacleDetectionDistance) == 0x000000, "Member 'FMassMovingAvoidanceParameters::ObstacleDetectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, StartOfPathDuration) == 0x000004, "Member 'FMassMovingAvoidanceParameters::StartOfPathDuration' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, EndOfPathDuration) == 0x000008, "Member 'FMassMovingAvoidanceParameters::EndOfPathDuration' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, StartOfPathAvoidanceScale) == 0x00000C, "Member 'FMassMovingAvoidanceParameters::StartOfPathAvoidanceScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, EndOfPathAvoidanceScale) == 0x000010, "Member 'FMassMovingAvoidanceParameters::EndOfPathAvoidanceScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, StandingObstacleAvoidanceScale) == 0x000014, "Member 'FMassMovingAvoidanceParameters::StandingObstacleAvoidanceScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, StaticObstacleClearanceScale) == 0x000018, "Member 'FMassMovingAvoidanceParameters::StaticObstacleClearanceScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, SeparationRadiusScale) == 0x00001C, "Member 'FMassMovingAvoidanceParameters::SeparationRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, ObstacleSeparationStiffness) == 0x000020, "Member 'FMassMovingAvoidanceParameters::ObstacleSeparationStiffness' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, ObstacleSeparationDistance) == 0x000024, "Member 'FMassMovingAvoidanceParameters::ObstacleSeparationDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, EnvironmentSeparationStiffness) == 0x000028, "Member 'FMassMovingAvoidanceParameters::EnvironmentSeparationStiffness' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, EnvironmentSeparationDistance) == 0x00002C, "Member 'FMassMovingAvoidanceParameters::EnvironmentSeparationDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, PredictiveAvoidanceTime) == 0x000030, "Member 'FMassMovingAvoidanceParameters::PredictiveAvoidanceTime' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, PredictiveAvoidanceRadiusScale) == 0x000034, "Member 'FMassMovingAvoidanceParameters::PredictiveAvoidanceRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, PredictiveAvoidanceDistance) == 0x000038, "Member 'FMassMovingAvoidanceParameters::PredictiveAvoidanceDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, ObstaclePredictiveAvoidanceStiffness) == 0x00003C, "Member 'FMassMovingAvoidanceParameters::ObstaclePredictiveAvoidanceStiffness' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingAvoidanceParameters, EnvironmentPredictiveAvoidanceStiffness) == 0x000040, "Member 'FMassMovingAvoidanceParameters::EnvironmentPredictiveAvoidanceStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStandingAvoidanceParameters \ +static_assert(alignof(FMassStandingAvoidanceParameters) == 0x000004, "Wrong alignment on FMassStandingAvoidanceParameters"); \ +static_assert(sizeof(FMassStandingAvoidanceParameters) == 0x000034, "Wrong size on FMassStandingAvoidanceParameters"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostObstacleDetectionDistance) == 0x000000, "Member 'FMassStandingAvoidanceParameters::GhostObstacleDetectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostToTargetMaxDeviation) == 0x000004, "Member 'FMassStandingAvoidanceParameters::GhostToTargetMaxDeviation' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostSteeringReactionTime) == 0x000008, "Member 'FMassStandingAvoidanceParameters::GhostSteeringReactionTime' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostStandSlowdownRadius) == 0x00000C, "Member 'FMassStandingAvoidanceParameters::GhostStandSlowdownRadius' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostMaxSpeed) == 0x000010, "Member 'FMassStandingAvoidanceParameters::GhostMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostMaxAcceleration) == 0x000014, "Member 'FMassStandingAvoidanceParameters::GhostMaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostVelocityDampingTime) == 0x000018, "Member 'FMassStandingAvoidanceParameters::GhostVelocityDampingTime' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostSeparationRadiusScale) == 0x00001C, "Member 'FMassStandingAvoidanceParameters::GhostSeparationRadiusScale' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostSeparationDistance) == 0x000020, "Member 'FMassStandingAvoidanceParameters::GhostSeparationDistance' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, GhostSeparationStiffness) == 0x000024, "Member 'FMassStandingAvoidanceParameters::GhostSeparationStiffness' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, MovingObstacleAvoidanceScale) == 0x000028, "Member 'FMassStandingAvoidanceParameters::MovingObstacleAvoidanceScale' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, MovingObstacleDirectionalScale) == 0x00002C, "Member 'FMassStandingAvoidanceParameters::MovingObstacleDirectionalScale' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingAvoidanceParameters, MovingObstaclePersonalSpaceScale) == 0x000030, "Member 'FMassStandingAvoidanceParameters::MovingObstaclePersonalSpaceScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassNavigationEdgesFragment \ +static_assert(alignof(FMassNavigationEdgesFragment) == 0x000008, "Wrong alignment on FMassNavigationEdgesFragment"); \ +static_assert(sizeof(FMassNavigationEdgesFragment) == 0x000248, "Wrong size on FMassNavigationEdgesFragment"); \ + +#define DUMPER7_ASSERTS_FMassMoveTargetFragment \ +static_assert(alignof(FMassMoveTargetFragment) == 0x000008, "Wrong alignment on FMassMoveTargetFragment"); \ +static_assert(sizeof(FMassMoveTargetFragment) == 0x000050, "Wrong size on FMassMoveTargetFragment"); \ + +#define DUMPER7_ASSERTS_FMassGhostLocationFragment \ +static_assert(alignof(FMassGhostLocationFragment) == 0x000008, "Wrong alignment on FMassGhostLocationFragment"); \ +static_assert(sizeof(FMassGhostLocationFragment) == 0x000038, "Wrong size on FMassGhostLocationFragment"); \ + +#define DUMPER7_ASSERTS_FMassNavigationObstacleGridCellLocationFragment \ +static_assert(alignof(FMassNavigationObstacleGridCellLocationFragment) == 0x000004, "Wrong alignment on FMassNavigationObstacleGridCellLocationFragment"); \ +static_assert(sizeof(FMassNavigationObstacleGridCellLocationFragment) == 0x00000C, "Wrong size on FMassNavigationObstacleGridCellLocationFragment"); \ + +#define DUMPER7_ASSERTS_FMassAvoidanceColliderFragment \ +static_assert(alignof(FMassAvoidanceColliderFragment) == 0x000004, "Wrong alignment on FMassAvoidanceColliderFragment"); \ +static_assert(sizeof(FMassAvoidanceColliderFragment) == 0x00000C, "Wrong size on FMassAvoidanceColliderFragment"); \ + +#define DUMPER7_ASSERTS_FMassInNavigationObstacleGridTag \ +static_assert(alignof(FMassInNavigationObstacleGridTag) == 0x000001, "Wrong alignment on FMassInNavigationObstacleGridTag"); \ +static_assert(sizeof(FMassInNavigationObstacleGridTag) == 0x000001, "Wrong size on FMassInNavigationObstacleGridTag"); \ + +#define DUMPER7_ASSERTS_FMassSmoothOrientationWeights \ +static_assert(alignof(FMassSmoothOrientationWeights) == 0x000004, "Wrong alignment on FMassSmoothOrientationWeights"); \ +static_assert(sizeof(FMassSmoothOrientationWeights) == 0x000008, "Wrong size on FMassSmoothOrientationWeights"); \ +static_assert(offsetof(FMassSmoothOrientationWeights, MoveTargetWeight) == 0x000000, "Member 'FMassSmoothOrientationWeights::MoveTargetWeight' has a wrong offset!"); \ +static_assert(offsetof(FMassSmoothOrientationWeights, VelocityWeight) == 0x000004, "Member 'FMassSmoothOrientationWeights::VelocityWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmoothOrientationParameters \ +static_assert(alignof(FMassSmoothOrientationParameters) == 0x000004, "Wrong alignment on FMassSmoothOrientationParameters"); \ +static_assert(sizeof(FMassSmoothOrientationParameters) == 0x000018, "Wrong size on FMassSmoothOrientationParameters"); \ +static_assert(offsetof(FMassSmoothOrientationParameters, EndOfPathDuration) == 0x000000, "Member 'FMassSmoothOrientationParameters::EndOfPathDuration' has a wrong offset!"); \ +static_assert(offsetof(FMassSmoothOrientationParameters, OrientationSmoothingTime) == 0x000004, "Member 'FMassSmoothOrientationParameters::OrientationSmoothingTime' has a wrong offset!"); \ +static_assert(offsetof(FMassSmoothOrientationParameters, Moving) == 0x000008, "Member 'FMassSmoothOrientationParameters::Moving' has a wrong offset!"); \ +static_assert(offsetof(FMassSmoothOrientationParameters, Standing) == 0x000010, "Member 'FMassSmoothOrientationParameters::Standing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSteeringFragment \ +static_assert(alignof(FMassSteeringFragment) == 0x000008, "Wrong alignment on FMassSteeringFragment"); \ +static_assert(sizeof(FMassSteeringFragment) == 0x000018, "Wrong size on FMassSteeringFragment"); \ + +#define DUMPER7_ASSERTS_FMassStandingSteeringFragment \ +static_assert(alignof(FMassStandingSteeringFragment) == 0x000008, "Wrong alignment on FMassStandingSteeringFragment"); \ +static_assert(sizeof(FMassStandingSteeringFragment) == 0x000028, "Wrong size on FMassStandingSteeringFragment"); \ + +#define DUMPER7_ASSERTS_FMassMovingSteeringParameters \ +static_assert(alignof(FMassMovingSteeringParameters) == 0x000004, "Wrong alignment on FMassMovingSteeringParameters"); \ +static_assert(sizeof(FMassMovingSteeringParameters) == 0x000008, "Wrong size on FMassMovingSteeringParameters"); \ +static_assert(offsetof(FMassMovingSteeringParameters, ReactionTime) == 0x000000, "Member 'FMassMovingSteeringParameters::ReactionTime' has a wrong offset!"); \ +static_assert(offsetof(FMassMovingSteeringParameters, LookAheadTime) == 0x000004, "Member 'FMassMovingSteeringParameters::LookAheadTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStandingSteeringParameters \ +static_assert(alignof(FMassStandingSteeringParameters) == 0x000004, "Wrong alignment on FMassStandingSteeringParameters"); \ +static_assert(sizeof(FMassStandingSteeringParameters) == 0x000020, "Wrong size on FMassStandingSteeringParameters"); \ +static_assert(offsetof(FMassStandingSteeringParameters, ReactionTime) == 0x000000, "Member 'FMassStandingSteeringParameters::ReactionTime' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, TargetMoveThreshold) == 0x000004, "Member 'FMassStandingSteeringParameters::TargetMoveThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, TargetMoveThresholdVariance) == 0x000008, "Member 'FMassStandingSteeringParameters::TargetMoveThresholdVariance' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, LowSpeedThreshold) == 0x00000C, "Member 'FMassStandingSteeringParameters::LowSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, TargetSpeedHysteresisScale) == 0x000010, "Member 'FMassStandingSteeringParameters::TargetSpeedHysteresisScale' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, TargetSelectionCooldown) == 0x000014, "Member 'FMassStandingSteeringParameters::TargetSelectionCooldown' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, TargetSelectionCooldownVariance) == 0x000018, "Member 'FMassStandingSteeringParameters::TargetSelectionCooldownVariance' has a wrong offset!"); \ +static_assert(offsetof(FMassStandingSteeringParameters, DeadZoneRadius) == 0x00001C, "Member 'FMassStandingSteeringParameters::DeadZoneRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassMovingAvoidanceProcessor \ +static_assert(alignof(UMassMovingAvoidanceProcessor) == 0x000008, "Wrong alignment on UMassMovingAvoidanceProcessor"); \ +static_assert(sizeof(UMassMovingAvoidanceProcessor) == 0x000370, "Wrong size on UMassMovingAvoidanceProcessor"); \ + +#define DUMPER7_ASSERTS_UMassNavigationObstacleRemoverProcessor \ +static_assert(alignof(UMassNavigationObstacleRemoverProcessor) == 0x000008, "Wrong alignment on UMassNavigationObstacleRemoverProcessor"); \ +static_assert(sizeof(UMassNavigationObstacleRemoverProcessor) == 0x000370, "Wrong size on UMassNavigationObstacleRemoverProcessor"); \ + +#define DUMPER7_ASSERTS_UMassStandingAvoidanceProcessor \ +static_assert(alignof(UMassStandingAvoidanceProcessor) == 0x000008, "Wrong alignment on UMassStandingAvoidanceProcessor"); \ +static_assert(sizeof(UMassStandingAvoidanceProcessor) == 0x000370, "Wrong size on UMassStandingAvoidanceProcessor"); \ + +#define DUMPER7_ASSERTS_UMassNavigationObstacleTrait \ +static_assert(alignof(UMassNavigationObstacleTrait) == 0x000008, "Wrong alignment on UMassNavigationObstacleTrait"); \ +static_assert(sizeof(UMassNavigationObstacleTrait) == 0x000028, "Wrong size on UMassNavigationObstacleTrait"); \ + +#define DUMPER7_ASSERTS_UMassObstacleAvoidanceTrait \ +static_assert(alignof(UMassObstacleAvoidanceTrait) == 0x000008, "Wrong alignment on UMassObstacleAvoidanceTrait"); \ +static_assert(sizeof(UMassObstacleAvoidanceTrait) == 0x0000A0, "Wrong size on UMassObstacleAvoidanceTrait"); \ +static_assert(offsetof(UMassObstacleAvoidanceTrait, MovingParameters) == 0x000028, "Member 'UMassObstacleAvoidanceTrait::MovingParameters' has a wrong offset!"); \ +static_assert(offsetof(UMassObstacleAvoidanceTrait, StandingParameters) == 0x00006C, "Member 'UMassObstacleAvoidanceTrait::StandingParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassOffLODNavigationProcessor \ +static_assert(alignof(UMassOffLODNavigationProcessor) == 0x000008, "Wrong alignment on UMassOffLODNavigationProcessor"); \ +static_assert(sizeof(UMassOffLODNavigationProcessor) == 0x000360, "Wrong size on UMassOffLODNavigationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassNavigationSmoothHeightProcessor \ +static_assert(alignof(UMassNavigationSmoothHeightProcessor) == 0x000008, "Wrong alignment on UMassNavigationSmoothHeightProcessor"); \ +static_assert(sizeof(UMassNavigationSmoothHeightProcessor) == 0x000360, "Wrong size on UMassNavigationSmoothHeightProcessor"); \ + +#define DUMPER7_ASSERTS_UMassMoveTargetFragmentInitializer \ +static_assert(alignof(UMassMoveTargetFragmentInitializer) == 0x000008, "Wrong alignment on UMassMoveTargetFragmentInitializer"); \ +static_assert(sizeof(UMassMoveTargetFragmentInitializer) == 0x000370, "Wrong size on UMassMoveTargetFragmentInitializer"); \ + +#define DUMPER7_ASSERTS_UMassNavigationObstacleGridProcessor \ +static_assert(alignof(UMassNavigationObstacleGridProcessor) == 0x000008, "Wrong alignment on UMassNavigationObstacleGridProcessor"); \ +static_assert(sizeof(UMassNavigationObstacleGridProcessor) == 0x0008A0, "Wrong size on UMassNavigationObstacleGridProcessor"); \ + +#define DUMPER7_ASSERTS_UMassNavigationSubsystem \ +static_assert(alignof(UMassNavigationSubsystem) == 0x000008, "Wrong alignment on UMassNavigationSubsystem"); \ +static_assert(sizeof(UMassNavigationSubsystem) == 0x0000D8, "Wrong size on UMassNavigationSubsystem"); \ + +#define DUMPER7_ASSERTS_UMassSmoothOrientationProcessor \ +static_assert(alignof(UMassSmoothOrientationProcessor) == 0x000008, "Wrong alignment on UMassSmoothOrientationProcessor"); \ +static_assert(sizeof(UMassSmoothOrientationProcessor) == 0x000600, "Wrong size on UMassSmoothOrientationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassSmoothOrientationTrait \ +static_assert(alignof(UMassSmoothOrientationTrait) == 0x000008, "Wrong alignment on UMassSmoothOrientationTrait"); \ +static_assert(sizeof(UMassSmoothOrientationTrait) == 0x000040, "Wrong size on UMassSmoothOrientationTrait"); \ +static_assert(offsetof(UMassSmoothOrientationTrait, Orientation) == 0x000028, "Member 'UMassSmoothOrientationTrait::Orientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSteerToMoveTargetProcessor \ +static_assert(alignof(UMassSteerToMoveTargetProcessor) == 0x000008, "Wrong alignment on UMassSteerToMoveTargetProcessor"); \ +static_assert(sizeof(UMassSteerToMoveTargetProcessor) == 0x000360, "Wrong size on UMassSteerToMoveTargetProcessor"); \ + +#define DUMPER7_ASSERTS_UMassSteeringTrait \ +static_assert(alignof(UMassSteeringTrait) == 0x000008, "Wrong alignment on UMassSteeringTrait"); \ +static_assert(sizeof(UMassSteeringTrait) == 0x000050, "Wrong size on UMassSteeringTrait"); \ +static_assert(offsetof(UMassSteeringTrait, MovingSteering) == 0x000028, "Member 'UMassSteeringTrait::MovingSteering' has a wrong offset!"); \ +static_assert(offsetof(UMassSteeringTrait, StandingSteering) == 0x000030, "Member 'UMassSteeringTrait::StandingSteering' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphNavigationParameters \ +static_assert(alignof(FMassZoneGraphNavigationParameters) == 0x000004, "Wrong alignment on FMassZoneGraphNavigationParameters"); \ +static_assert(sizeof(FMassZoneGraphNavigationParameters) == 0x000010, "Wrong size on FMassZoneGraphNavigationParameters"); \ +static_assert(offsetof(FMassZoneGraphNavigationParameters, LaneFilter) == 0x000000, "Member 'FMassZoneGraphNavigationParameters::LaneFilter' has a wrong offset!"); \ +static_assert(offsetof(FMassZoneGraphNavigationParameters, QueryRadius) == 0x00000C, "Member 'FMassZoneGraphNavigationParameters::QueryRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphShortPathRequest \ +static_assert(alignof(FZoneGraphShortPathRequest) == 0x000008, "Wrong alignment on FZoneGraphShortPathRequest"); \ +static_assert(sizeof(FZoneGraphShortPathRequest) == 0x000048, "Wrong size on FZoneGraphShortPathRequest"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, StartPosition) == 0x000000, "Member 'FZoneGraphShortPathRequest::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, EndOfPathPosition) == 0x000018, "Member 'FZoneGraphShortPathRequest::EndOfPathPosition' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, NextLaneHandle) == 0x000030, "Member 'FZoneGraphShortPathRequest::NextLaneHandle' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, TargetDistance) == 0x000038, "Member 'FZoneGraphShortPathRequest::TargetDistance' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, EndOfPathDirection) == 0x00003C, "Member 'FZoneGraphShortPathRequest::EndOfPathDirection' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, AnticipationDistance) == 0x000040, "Member 'FZoneGraphShortPathRequest::AnticipationDistance' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, EndOfPathOffset) == 0x000042, "Member 'FZoneGraphShortPathRequest::EndOfPathOffset' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, EndOfPathIntent) == 0x000044, "Member 'FZoneGraphShortPathRequest::EndOfPathIntent' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphShortPathRequest, NextExitLinkType) == 0x000045, "Member 'FZoneGraphShortPathRequest::NextExitLinkType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphPathRequestFragment \ +static_assert(alignof(FMassZoneGraphPathRequestFragment) == 0x000008, "Wrong alignment on FMassZoneGraphPathRequestFragment"); \ +static_assert(sizeof(FMassZoneGraphPathRequestFragment) == 0x000048, "Wrong size on FMassZoneGraphPathRequestFragment"); \ +static_assert(offsetof(FMassZoneGraphPathRequestFragment, PathRequest) == 0x000000, "Member 'FMassZoneGraphPathRequestFragment::PathRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphLaneLocationFragment \ +static_assert(alignof(FMassZoneGraphLaneLocationFragment) == 0x000004, "Wrong alignment on FMassZoneGraphLaneLocationFragment"); \ +static_assert(sizeof(FMassZoneGraphLaneLocationFragment) == 0x000010, "Wrong size on FMassZoneGraphLaneLocationFragment"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphCachedLaneFragment \ +static_assert(alignof(FMassZoneGraphCachedLaneFragment) == 0x000008, "Wrong alignment on FMassZoneGraphCachedLaneFragment"); \ +static_assert(sizeof(FMassZoneGraphCachedLaneFragment) == 0x0000A8, "Wrong size on FMassZoneGraphCachedLaneFragment"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphPathPoint \ +static_assert(alignof(FMassZoneGraphPathPoint) == 0x000008, "Wrong alignment on FMassZoneGraphPathPoint"); \ +static_assert(sizeof(FMassZoneGraphPathPoint) == 0x000020, "Wrong size on FMassZoneGraphPathPoint"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphShortPathFragment \ +static_assert(alignof(FMassZoneGraphShortPathFragment) == 0x000008, "Wrong alignment on FMassZoneGraphShortPathFragment"); \ +static_assert(sizeof(FMassZoneGraphShortPathFragment) == 0x000078, "Wrong size on FMassZoneGraphShortPathFragment"); \ + +#define DUMPER7_ASSERTS_FMassLaneCacheBoundaryFragment \ +static_assert(alignof(FMassLaneCacheBoundaryFragment) == 0x000008, "Wrong alignment on FMassLaneCacheBoundaryFragment"); \ +static_assert(sizeof(FMassLaneCacheBoundaryFragment) == 0x000020, "Wrong size on FMassLaneCacheBoundaryFragment"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphLocationInitializer \ +static_assert(alignof(UMassZoneGraphLocationInitializer) == 0x000008, "Wrong alignment on UMassZoneGraphLocationInitializer"); \ +static_assert(sizeof(UMassZoneGraphLocationInitializer) == 0x000370, "Wrong size on UMassZoneGraphLocationInitializer"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphPathFollowProcessor \ +static_assert(alignof(UMassZoneGraphPathFollowProcessor) == 0x000010, "Wrong alignment on UMassZoneGraphPathFollowProcessor"); \ +static_assert(sizeof(UMassZoneGraphPathFollowProcessor) == 0x000370, "Wrong size on UMassZoneGraphPathFollowProcessor"); \ +static_assert(offsetof(UMassZoneGraphPathFollowProcessor, SignalSubsystem) == 0x000360, "Member 'UMassZoneGraphPathFollowProcessor::SignalSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphLaneCacheBoundaryProcessor \ +static_assert(alignof(UMassZoneGraphLaneCacheBoundaryProcessor) == 0x000008, "Wrong alignment on UMassZoneGraphLaneCacheBoundaryProcessor"); \ +static_assert(sizeof(UMassZoneGraphLaneCacheBoundaryProcessor) == 0x000360, "Wrong size on UMassZoneGraphLaneCacheBoundaryProcessor"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphNavigationTrait \ +static_assert(alignof(UMassZoneGraphNavigationTrait) == 0x000008, "Wrong alignment on UMassZoneGraphNavigationTrait"); \ +static_assert(sizeof(UMassZoneGraphNavigationTrait) == 0x000038, "Wrong size on UMassZoneGraphNavigationTrait"); \ +static_assert(offsetof(UMassZoneGraphNavigationTrait, NavigationParameters) == 0x000028, "Member 'UMassZoneGraphNavigationTrait::NavigationParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavArea_SmartLinkTraversal_C \ +static_assert(alignof(UNavArea_SmartLinkTraversal_C) == 0x000008, "Wrong alignment on UNavArea_SmartLinkTraversal_C"); \ +static_assert(sizeof(UNavArea_SmartLinkTraversal_C) == 0x000048, "Wrong size on UNavArea_SmartLinkTraversal_C"); \ + +#define DUMPER7_ASSERTS_FWorldConditionBase \ +static_assert(alignof(FWorldConditionBase) == 0x000008, "Wrong alignment on FWorldConditionBase"); \ +static_assert(sizeof(FWorldConditionBase) == 0x000010, "Wrong size on FWorldConditionBase"); \ +static_assert(offsetof(FWorldConditionBase, Operator) == 0x00000C, "Member 'FWorldConditionBase::Operator' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionBase, NextExpressionDepth) == 0x00000D, "Member 'FWorldConditionBase::NextExpressionDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionCommonBase \ +static_assert(alignof(FWorldConditionCommonBase) == 0x000008, "Wrong alignment on FWorldConditionCommonBase"); \ +static_assert(sizeof(FWorldConditionCommonBase) == 0x000010, "Wrong size on FWorldConditionCommonBase"); \ + +#define DUMPER7_ASSERTS_FWorldConditionCommonActorBase \ +static_assert(alignof(FWorldConditionCommonActorBase) == 0x000008, "Wrong alignment on FWorldConditionCommonActorBase"); \ +static_assert(sizeof(FWorldConditionCommonActorBase) == 0x000010, "Wrong size on FWorldConditionCommonActorBase"); \ + +#define DUMPER7_ASSERTS_FWorldConditionEditable \ +static_assert(alignof(FWorldConditionEditable) == 0x000001, "Wrong alignment on FWorldConditionEditable"); \ +static_assert(sizeof(FWorldConditionEditable) == 0x000001, "Wrong size on FWorldConditionEditable"); \ + +#define DUMPER7_ASSERTS_FWorldConditionQuerySharedDefinition \ +static_assert(alignof(FWorldConditionQuerySharedDefinition) == 0x000008, "Wrong alignment on FWorldConditionQuerySharedDefinition"); \ +static_assert(sizeof(FWorldConditionQuerySharedDefinition) == 0x000028, "Wrong size on FWorldConditionQuerySharedDefinition"); \ +static_assert(offsetof(FWorldConditionQuerySharedDefinition, Conditions) == 0x000000, "Member 'FWorldConditionQuerySharedDefinition::Conditions' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionQuerySharedDefinition, SchemaClass) == 0x000010, "Member 'FWorldConditionQuerySharedDefinition::SchemaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionQueryDefinition \ +static_assert(alignof(FWorldConditionQueryDefinition) == 0x000008, "Wrong alignment on FWorldConditionQueryDefinition"); \ +static_assert(sizeof(FWorldConditionQueryDefinition) == 0x000018, "Wrong size on FWorldConditionQueryDefinition"); \ +static_assert(offsetof(FWorldConditionQueryDefinition, SchemaClass) == 0x000010, "Member 'FWorldConditionQueryDefinition::SchemaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionItem \ +static_assert(alignof(FWorldConditionItem) == 0x000001, "Wrong alignment on FWorldConditionItem"); \ +static_assert(sizeof(FWorldConditionItem) == 0x000003, "Wrong size on FWorldConditionItem"); \ + +#define DUMPER7_ASSERTS_FWorldConditionStateObject \ +static_assert(alignof(FWorldConditionStateObject) == 0x000008, "Wrong alignment on FWorldConditionStateObject"); \ +static_assert(sizeof(FWorldConditionStateObject) == 0x000008, "Wrong size on FWorldConditionStateObject"); \ +static_assert(offsetof(FWorldConditionStateObject, Object) == 0x000000, "Member 'FWorldConditionStateObject::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionQueryState \ +static_assert(alignof(FWorldConditionQueryState) == 0x000008, "Wrong alignment on FWorldConditionQueryState"); \ +static_assert(sizeof(FWorldConditionQueryState) == 0x000030, "Wrong size on FWorldConditionQueryState"); \ +static_assert(offsetof(FWorldConditionQueryState, Owner) == 0x000028, "Member 'FWorldConditionQueryState::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionQuery \ +static_assert(alignof(FWorldConditionQuery) == 0x000008, "Wrong alignment on FWorldConditionQuery"); \ +static_assert(sizeof(FWorldConditionQuery) == 0x000048, "Wrong size on FWorldConditionQuery"); \ +static_assert(offsetof(FWorldConditionQuery, QueryDefinition) == 0x000000, "Member 'FWorldConditionQuery::QueryDefinition' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionQuery, QueryState) == 0x000018, "Member 'FWorldConditionQuery::QueryState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionResult \ +static_assert(alignof(FWorldConditionResult) == 0x000001, "Wrong alignment on FWorldConditionResult"); \ +static_assert(sizeof(FWorldConditionResult) == 0x000002, "Wrong size on FWorldConditionResult"); \ +static_assert(offsetof(FWorldConditionResult, Value) == 0x000000, "Member 'FWorldConditionResult::Value' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionResult, bCanBeCached) == 0x000001, "Member 'FWorldConditionResult::bCanBeCached' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionContextDataDesc \ +static_assert(alignof(FWorldConditionContextDataDesc) == 0x000008, "Wrong alignment on FWorldConditionContextDataDesc"); \ +static_assert(sizeof(FWorldConditionContextDataDesc) == 0x000018, "Wrong size on FWorldConditionContextDataDesc"); \ +static_assert(offsetof(FWorldConditionContextDataDesc, Struct) == 0x000000, "Member 'FWorldConditionContextDataDesc::Struct' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionContextDataDesc, Name) == 0x000008, "Member 'FWorldConditionContextDataDesc::Name' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionContextDataDesc, Type) == 0x000010, "Member 'FWorldConditionContextDataDesc::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldConditionContextDataRef \ +static_assert(alignof(FWorldConditionContextDataRef) == 0x000004, "Wrong alignment on FWorldConditionContextDataRef"); \ +static_assert(sizeof(FWorldConditionContextDataRef) == 0x00000C, "Wrong size on FWorldConditionContextDataRef"); \ +static_assert(offsetof(FWorldConditionContextDataRef, Name) == 0x000000, "Member 'FWorldConditionContextDataRef::Name' has a wrong offset!"); \ +static_assert(offsetof(FWorldConditionContextDataRef, Index) == 0x000008, "Member 'FWorldConditionContextDataRef::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWorldConditionSchema \ +static_assert(alignof(UWorldConditionSchema) == 0x000008, "Wrong alignment on UWorldConditionSchema"); \ +static_assert(sizeof(UWorldConditionSchema) == 0x000038, "Wrong size on UWorldConditionSchema"); \ +static_assert(offsetof(UWorldConditionSchema, ContextDataDescs) == 0x000028, "Member 'UWorldConditionSchema::ContextDataDescs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectUserCapsuleParams \ +static_assert(alignof(FSmartObjectUserCapsuleParams) == 0x000004, "Wrong alignment on FSmartObjectUserCapsuleParams"); \ +static_assert(sizeof(FSmartObjectUserCapsuleParams) == 0x00000C, "Wrong size on FSmartObjectUserCapsuleParams"); \ +static_assert(offsetof(FSmartObjectUserCapsuleParams, Radius) == 0x000000, "Member 'FSmartObjectUserCapsuleParams::Radius' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectUserCapsuleParams, Height) == 0x000004, "Member 'FSmartObjectUserCapsuleParams::Height' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectUserCapsuleParams, StepHeight) == 0x000008, "Member 'FSmartObjectUserCapsuleParams::StepHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotDefinitionData \ +static_assert(alignof(FSmartObjectSlotDefinitionData) == 0x000008, "Wrong alignment on FSmartObjectSlotDefinitionData"); \ +static_assert(sizeof(FSmartObjectSlotDefinitionData) == 0x000008, "Wrong size on FSmartObjectSlotDefinitionData"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotAnnotation \ +static_assert(alignof(FSmartObjectSlotAnnotation) == 0x000008, "Wrong alignment on FSmartObjectSlotAnnotation"); \ +static_assert(sizeof(FSmartObjectSlotAnnotation) == 0x000008, "Wrong size on FSmartObjectSlotAnnotation"); \ + +#define DUMPER7_ASSERTS_FSmartObjectAnnotation_SlotUserCollision \ +static_assert(alignof(FSmartObjectAnnotation_SlotUserCollision) == 0x000008, "Wrong alignment on FSmartObjectAnnotation_SlotUserCollision"); \ +static_assert(sizeof(FSmartObjectAnnotation_SlotUserCollision) == 0x000018, "Wrong size on FSmartObjectAnnotation_SlotUserCollision"); \ +static_assert(offsetof(FSmartObjectAnnotation_SlotUserCollision, bUseUserCapsuleSize) == 0x000008, "Member 'FSmartObjectAnnotation_SlotUserCollision::bUseUserCapsuleSize' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectAnnotation_SlotUserCollision, Capsule) == 0x00000C, "Member 'FSmartObjectAnnotation_SlotUserCollision::Capsule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectWorldConditionSlotTagQueryState \ +static_assert(alignof(FSmartObjectWorldConditionSlotTagQueryState) == 0x000008, "Wrong alignment on FSmartObjectWorldConditionSlotTagQueryState"); \ +static_assert(sizeof(FSmartObjectWorldConditionSlotTagQueryState) == 0x000018, "Wrong size on FSmartObjectWorldConditionSlotTagQueryState"); \ + +#define DUMPER7_ASSERTS_FSmartObjectHandle \ +static_assert(alignof(FSmartObjectHandle) == 0x000008, "Wrong alignment on FSmartObjectHandle"); \ +static_assert(sizeof(FSmartObjectHandle) == 0x000008, "Wrong size on FSmartObjectHandle"); \ +static_assert(offsetof(FSmartObjectHandle, ID) == 0x000000, "Member 'FSmartObjectHandle::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotHandle \ +static_assert(alignof(FSmartObjectSlotHandle) == 0x000008, "Wrong alignment on FSmartObjectSlotHandle"); \ +static_assert(sizeof(FSmartObjectSlotHandle) == 0x000010, "Wrong size on FSmartObjectSlotHandle"); \ + +#define DUMPER7_ASSERTS_FSmartObjectEventData \ +static_assert(alignof(FSmartObjectEventData) == 0x000008, "Wrong alignment on FSmartObjectEventData"); \ +static_assert(sizeof(FSmartObjectEventData) == 0x000038, "Wrong size on FSmartObjectEventData"); \ +static_assert(offsetof(FSmartObjectEventData, SmartObjectHandle) == 0x000000, "Member 'FSmartObjectEventData::SmartObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectEventData, SlotHandle) == 0x000008, "Member 'FSmartObjectEventData::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectEventData, Reason) == 0x000018, "Member 'FSmartObjectEventData::Reason' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectEventData, Tag) == 0x00001C, "Member 'FSmartObjectEventData::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectRequestResult \ +static_assert(alignof(FSmartObjectRequestResult) == 0x000008, "Wrong alignment on FSmartObjectRequestResult"); \ +static_assert(sizeof(FSmartObjectRequestResult) == 0x000018, "Wrong size on FSmartObjectRequestResult"); \ +static_assert(offsetof(FSmartObjectRequestResult, SmartObjectHandle) == 0x000000, "Member 'FSmartObjectRequestResult::SmartObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestResult, SlotHandle) == 0x000008, "Member 'FSmartObjectRequestResult::SlotHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectWorldConditionBase \ +static_assert(alignof(FSmartObjectWorldConditionBase) == 0x000008, "Wrong alignment on FSmartObjectWorldConditionBase"); \ +static_assert(sizeof(FSmartObjectWorldConditionBase) == 0x000010, "Wrong size on FSmartObjectWorldConditionBase"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotEntranceAnnotation \ +static_assert(alignof(FSmartObjectSlotEntranceAnnotation) == 0x000008, "Wrong alignment on FSmartObjectSlotEntranceAnnotation"); \ +static_assert(sizeof(FSmartObjectSlotEntranceAnnotation) == 0x000050, "Wrong size on FSmartObjectSlotEntranceAnnotation"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, Offset) == 0x000008, "Member 'FSmartObjectSlotEntranceAnnotation::Offset' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, Rotation) == 0x000014, "Member 'FSmartObjectSlotEntranceAnnotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, Tags) == 0x000020, "Member 'FSmartObjectSlotEntranceAnnotation::Tags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, SelectionPriority) == 0x000041, "Member 'FSmartObjectSlotEntranceAnnotation::SelectionPriority' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, TrajectoryStartHeightOffset) == 0x000044, "Member 'FSmartObjectSlotEntranceAnnotation::TrajectoryStartHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, TrajectorySlotHeightOffset) == 0x000048, "Member 'FSmartObjectSlotEntranceAnnotation::TrajectorySlotHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceAnnotation, TransitionCheckRadius) == 0x00004C, "Member 'FSmartObjectSlotEntranceAnnotation::TransitionCheckRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotReference \ +static_assert(alignof(FSmartObjectSlotReference) == 0x000001, "Wrong alignment on FSmartObjectSlotReference"); \ +static_assert(sizeof(FSmartObjectSlotReference) == 0x000001, "Wrong size on FSmartObjectSlotReference"); \ +static_assert(offsetof(FSmartObjectSlotReference, Index) == 0x000000, "Member 'FSmartObjectSlotReference::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotLinkAnnotation \ +static_assert(alignof(FSmartObjectSlotLinkAnnotation) == 0x000008, "Wrong alignment on FSmartObjectSlotLinkAnnotation"); \ +static_assert(sizeof(FSmartObjectSlotLinkAnnotation) == 0x000018, "Wrong size on FSmartObjectSlotLinkAnnotation"); \ +static_assert(offsetof(FSmartObjectSlotLinkAnnotation, Tag) == 0x000008, "Member 'FSmartObjectSlotLinkAnnotation::Tag' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotLinkAnnotation, LinkedSlot) == 0x000010, "Member 'FSmartObjectSlotLinkAnnotation::LinkedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectComponentInstanceData \ +static_assert(alignof(FSmartObjectComponentInstanceData) == 0x000008, "Wrong alignment on FSmartObjectComponentInstanceData"); \ +static_assert(sizeof(FSmartObjectComponentInstanceData) == 0x000070, "Wrong size on FSmartObjectComponentInstanceData"); \ +static_assert(offsetof(FSmartObjectComponentInstanceData, DefinitionAsset) == 0x000068, "Member 'FSmartObjectComponentInstanceData::DefinitionAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotDefinition \ +static_assert(alignof(FSmartObjectSlotDefinition) == 0x000008, "Wrong alignment on FSmartObjectSlotDefinition"); \ +static_assert(sizeof(FSmartObjectSlotDefinition) == 0x0000E0, "Wrong size on FSmartObjectSlotDefinition"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, bEnabled) == 0x000000, "Member 'FSmartObjectSlotDefinition::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, RuntimeTags) == 0x000008, "Member 'FSmartObjectSlotDefinition::RuntimeTags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, UserTagFilter) == 0x000028, "Member 'FSmartObjectSlotDefinition::UserTagFilter' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, ActivityTags) == 0x000070, "Member 'FSmartObjectSlotDefinition::ActivityTags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, SelectionPreconditions) == 0x000090, "Member 'FSmartObjectSlotDefinition::SelectionPreconditions' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, Offset) == 0x0000A8, "Member 'FSmartObjectSlotDefinition::Offset' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, Rotation) == 0x0000B4, "Member 'FSmartObjectSlotDefinition::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, Data) == 0x0000C0, "Member 'FSmartObjectSlotDefinition::Data' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotDefinition, BehaviorDefinitions) == 0x0000D0, "Member 'FSmartObjectSlotDefinition::BehaviorDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectDefinitionPreviewData \ +static_assert(alignof(FSmartObjectDefinitionPreviewData) == 0x000008, "Wrong alignment on FSmartObjectDefinitionPreviewData"); \ +static_assert(sizeof(FSmartObjectDefinitionPreviewData) == 0x000098, "Wrong size on FSmartObjectDefinitionPreviewData"); \ +static_assert(offsetof(FSmartObjectDefinitionPreviewData, ObjectActorClass) == 0x000000, "Member 'FSmartObjectDefinitionPreviewData::ObjectActorClass' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectDefinitionPreviewData, ObjectMeshPath) == 0x000028, "Member 'FSmartObjectDefinitionPreviewData::ObjectMeshPath' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectDefinitionPreviewData, UserActorClass) == 0x000048, "Member 'FSmartObjectDefinitionPreviewData::UserActorClass' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectDefinitionPreviewData, UserValidationFilterClass) == 0x000070, "Member 'FSmartObjectDefinitionPreviewData::UserValidationFilterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSpatialEntryData \ +static_assert(alignof(FSmartObjectSpatialEntryData) == 0x000001, "Wrong alignment on FSmartObjectSpatialEntryData"); \ +static_assert(sizeof(FSmartObjectSpatialEntryData) == 0x000001, "Wrong size on FSmartObjectSpatialEntryData"); \ + +#define DUMPER7_ASSERTS_FSmartObjectHashGridEntryData \ +static_assert(alignof(FSmartObjectHashGridEntryData) == 0x000004, "Wrong alignment on FSmartObjectHashGridEntryData"); \ +static_assert(sizeof(FSmartObjectHashGridEntryData) == 0x00000C, "Wrong size on FSmartObjectHashGridEntryData"); \ + +#define DUMPER7_ASSERTS_FSmartObjectOctreeEntryData \ +static_assert(alignof(FSmartObjectOctreeEntryData) == 0x000008, "Wrong alignment on FSmartObjectOctreeEntryData"); \ +static_assert(sizeof(FSmartObjectOctreeEntryData) == 0x000010, "Wrong size on FSmartObjectOctreeEntryData"); \ + +#define DUMPER7_ASSERTS_FSmartObjectCollectionEntry \ +static_assert(alignof(FSmartObjectCollectionEntry) == 0x000010, "Wrong alignment on FSmartObjectCollectionEntry"); \ +static_assert(sizeof(FSmartObjectCollectionEntry) == 0x0000F0, "Wrong size on FSmartObjectCollectionEntry"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, Tags) == 0x000000, "Member 'FSmartObjectCollectionEntry::Tags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, Path) == 0x000020, "Member 'FSmartObjectCollectionEntry::Path' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, Transform) == 0x000040, "Member 'FSmartObjectCollectionEntry::Transform' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, Bounds) == 0x0000A0, "Member 'FSmartObjectCollectionEntry::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, Handle) == 0x0000D8, "Member 'FSmartObjectCollectionEntry::Handle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCollectionEntry, DefinitionIdx) == 0x0000E0, "Member 'FSmartObjectCollectionEntry::DefinitionIdx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectContainer \ +static_assert(alignof(FSmartObjectContainer) == 0x000008, "Wrong alignment on FSmartObjectContainer"); \ +static_assert(sizeof(FSmartObjectContainer) == 0x0000B0, "Wrong size on FSmartObjectContainer"); \ +static_assert(offsetof(FSmartObjectContainer, Bounds) == 0x000000, "Member 'FSmartObjectContainer::Bounds' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectContainer, CollectionEntries) == 0x000038, "Member 'FSmartObjectContainer::CollectionEntries' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectContainer, RegisteredIdToObjectMap) == 0x000048, "Member 'FSmartObjectContainer::RegisteredIdToObjectMap' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectContainer, Definitions) == 0x000098, "Member 'FSmartObjectContainer::Definitions' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectContainer, Owner) == 0x0000A8, "Member 'FSmartObjectContainer::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectUserHandle \ +static_assert(alignof(FSmartObjectUserHandle) == 0x000004, "Wrong alignment on FSmartObjectUserHandle"); \ +static_assert(sizeof(FSmartObjectUserHandle) == 0x000004, "Wrong size on FSmartObjectUserHandle"); \ +static_assert(offsetof(FSmartObjectUserHandle, ID) == 0x000000, "Member 'FSmartObjectUserHandle::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectClaimHandle \ +static_assert(alignof(FSmartObjectClaimHandle) == 0x000008, "Wrong alignment on FSmartObjectClaimHandle"); \ +static_assert(sizeof(FSmartObjectClaimHandle) == 0x000020, "Wrong size on FSmartObjectClaimHandle"); \ +static_assert(offsetof(FSmartObjectClaimHandle, SmartObjectHandle) == 0x000000, "Member 'FSmartObjectClaimHandle::SmartObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectClaimHandle, SlotHandle) == 0x000008, "Member 'FSmartObjectClaimHandle::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectClaimHandle, UserHandle) == 0x000018, "Member 'FSmartObjectClaimHandle::UserHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotStateData \ +static_assert(alignof(FSmartObjectSlotStateData) == 0x000001, "Wrong alignment on FSmartObjectSlotStateData"); \ +static_assert(sizeof(FSmartObjectSlotStateData) == 0x000001, "Wrong size on FSmartObjectSlotStateData"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotTransform \ +static_assert(alignof(FSmartObjectSlotTransform) == 0x000010, "Wrong alignment on FSmartObjectSlotTransform"); \ +static_assert(sizeof(FSmartObjectSlotTransform) == 0x000060, "Wrong size on FSmartObjectSlotTransform"); \ +static_assert(offsetof(FSmartObjectSlotTransform, Transform) == 0x000000, "Member 'FSmartObjectSlotTransform::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectRuntimeSlot \ +static_assert(alignof(FSmartObjectRuntimeSlot) == 0x000008, "Wrong alignment on FSmartObjectRuntimeSlot"); \ +static_assert(sizeof(FSmartObjectRuntimeSlot) == 0x0000A8, "Wrong size on FSmartObjectRuntimeSlot"); \ +static_assert(offsetof(FSmartObjectRuntimeSlot, PreconditionState) == 0x000070, "Member 'FSmartObjectRuntimeSlot::PreconditionState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectRuntime \ +static_assert(alignof(FSmartObjectRuntime) == 0x000010, "Wrong alignment on FSmartObjectRuntime"); \ +static_assert(sizeof(FSmartObjectRuntime) == 0x000120, "Wrong size on FSmartObjectRuntime"); \ +static_assert(offsetof(FSmartObjectRuntime, PreconditionState) == 0x000000, "Member 'FSmartObjectRuntime::PreconditionState' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRuntime, Slots) == 0x000030, "Member 'FSmartObjectRuntime::Slots' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRuntime, Definition) == 0x000040, "Member 'FSmartObjectRuntime::Definition' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRuntime, OwnerComponent) == 0x000048, "Member 'FSmartObjectRuntime::OwnerComponent' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRuntime, SpatialEntryData) == 0x000100, "Member 'FSmartObjectRuntime::SpatialEntryData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotView \ +static_assert(alignof(FSmartObjectSlotView) == 0x000008, "Wrong alignment on FSmartObjectSlotView"); \ +static_assert(sizeof(FSmartObjectSlotView) == 0x000020, "Wrong size on FSmartObjectSlotView"); \ + +#define DUMPER7_ASSERTS_FSmartObjectRequestFilter \ +static_assert(alignof(FSmartObjectRequestFilter) == 0x000010, "Wrong alignment on FSmartObjectRequestFilter"); \ +static_assert(sizeof(FSmartObjectRequestFilter) == 0x0000F0, "Wrong size on FSmartObjectRequestFilter"); \ +static_assert(offsetof(FSmartObjectRequestFilter, UserActor) == 0x000000, "Member 'FSmartObjectRequestFilter::UserActor' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestFilter, UserTags) == 0x000008, "Member 'FSmartObjectRequestFilter::UserTags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestFilter, ActivityRequirements) == 0x000028, "Member 'FSmartObjectRequestFilter::ActivityRequirements' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestFilter, BehaviorDefinitionClass) == 0x000070, "Member 'FSmartObjectRequestFilter::BehaviorDefinitionClass' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestFilter, BehaviorDefinitionClasses) == 0x000078, "Member 'FSmartObjectRequestFilter::BehaviorDefinitionClasses' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequestFilter, bShouldEvaluateConditions) == 0x000088, "Member 'FSmartObjectRequestFilter::bShouldEvaluateConditions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectRequest \ +static_assert(alignof(FSmartObjectRequest) == 0x000010, "Wrong alignment on FSmartObjectRequest"); \ +static_assert(sizeof(FSmartObjectRequest) == 0x000130, "Wrong size on FSmartObjectRequest"); \ +static_assert(offsetof(FSmartObjectRequest, QueryBox) == 0x000000, "Member 'FSmartObjectRequest::QueryBox' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectRequest, Filter) == 0x000040, "Member 'FSmartObjectRequest::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotEntranceHandle \ +static_assert(alignof(FSmartObjectSlotEntranceHandle) == 0x000008, "Wrong alignment on FSmartObjectSlotEntranceHandle"); \ +static_assert(sizeof(FSmartObjectSlotEntranceHandle) == 0x000018, "Wrong size on FSmartObjectSlotEntranceHandle"); \ +static_assert(offsetof(FSmartObjectSlotEntranceHandle, SlotHandle) == 0x000000, "Member 'FSmartObjectSlotEntranceHandle::SlotHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotEntranceLocationRequest \ +static_assert(alignof(FSmartObjectSlotEntranceLocationRequest) == 0x000008, "Wrong alignment on FSmartObjectSlotEntranceLocationRequest"); \ +static_assert(sizeof(FSmartObjectSlotEntranceLocationRequest) == 0x000048, "Wrong size on FSmartObjectSlotEntranceLocationRequest"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotEntranceLocationResult \ +static_assert(alignof(FSmartObjectSlotEntranceLocationResult) == 0x000008, "Wrong alignment on FSmartObjectSlotEntranceLocationResult"); \ +static_assert(sizeof(FSmartObjectSlotEntranceLocationResult) == 0x000078, "Wrong size on FSmartObjectSlotEntranceLocationResult"); \ +static_assert(offsetof(FSmartObjectSlotEntranceLocationResult, Location) == 0x000000, "Member 'FSmartObjectSlotEntranceLocationResult::Location' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceLocationResult, Rotation) == 0x000018, "Member 'FSmartObjectSlotEntranceLocationResult::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceLocationResult, Tag) == 0x000038, "Member 'FSmartObjectSlotEntranceLocationResult::Tag' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceLocationResult, Tags) == 0x000040, "Member 'FSmartObjectSlotEntranceLocationResult::Tags' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotEntranceLocationResult, EntranceHandle) == 0x000060, "Member 'FSmartObjectSlotEntranceLocationResult::EntranceHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotIndex \ +static_assert(alignof(FSmartObjectSlotIndex) == 0x000004, "Wrong alignment on FSmartObjectSlotIndex"); \ +static_assert(sizeof(FSmartObjectSlotIndex) == 0x000004, "Wrong size on FSmartObjectSlotIndex"); \ +static_assert(offsetof(FSmartObjectSlotIndex, Index) == 0x000000, "Member 'FSmartObjectSlotIndex::Index' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectTraceParams \ +static_assert(alignof(FSmartObjectTraceParams) == 0x000008, "Wrong alignment on FSmartObjectTraceParams"); \ +static_assert(sizeof(FSmartObjectTraceParams) == 0x000028, "Wrong size on FSmartObjectTraceParams"); \ +static_assert(offsetof(FSmartObjectTraceParams, Type) == 0x000000, "Member 'FSmartObjectTraceParams::Type' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectTraceParams, TraceChannel) == 0x000001, "Member 'FSmartObjectTraceParams::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectTraceParams, ObjectTypes) == 0x000008, "Member 'FSmartObjectTraceParams::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectTraceParams, CollisionProfile) == 0x000018, "Member 'FSmartObjectTraceParams::CollisionProfile' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectTraceParams, bTraceComplex) == 0x000020, "Member 'FSmartObjectTraceParams::bTraceComplex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectSlotValidationParams \ +static_assert(alignof(FSmartObjectSlotValidationParams) == 0x000008, "Wrong alignment on FSmartObjectSlotValidationParams"); \ +static_assert(sizeof(FSmartObjectSlotValidationParams) == 0x000080, "Wrong size on FSmartObjectSlotValidationParams"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, NavigationFilter) == 0x000000, "Member 'FSmartObjectSlotValidationParams::NavigationFilter' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, SearchExtents) == 0x000008, "Member 'FSmartObjectSlotValidationParams::SearchExtents' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, GroundTraceParameters) == 0x000020, "Member 'FSmartObjectSlotValidationParams::GroundTraceParameters' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, TransitionTraceParameters) == 0x000048, "Member 'FSmartObjectSlotValidationParams::TransitionTraceParameters' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, bUseNavigationCapsuleSize) == 0x000070, "Member 'FSmartObjectSlotValidationParams::bUseNavigationCapsuleSize' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectSlotValidationParams, UserCapsule) == 0x000074, "Member 'FSmartObjectSlotValidationParams::UserCapsule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectActorUserData \ +static_assert(alignof(FSmartObjectActorUserData) == 0x000004, "Wrong alignment on FSmartObjectActorUserData"); \ +static_assert(sizeof(FSmartObjectActorUserData) == 0x000008, "Wrong size on FSmartObjectActorUserData"); \ +static_assert(offsetof(FSmartObjectActorUserData, UserActor) == 0x000000, "Member 'FSmartObjectActorUserData::UserActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectWorldConditionObjectTagQueryState \ +static_assert(alignof(FSmartObjectWorldConditionObjectTagQueryState) == 0x000008, "Wrong alignment on FSmartObjectWorldConditionObjectTagQueryState"); \ +static_assert(sizeof(FSmartObjectWorldConditionObjectTagQueryState) == 0x000008, "Wrong size on FSmartObjectWorldConditionObjectTagQueryState"); \ + +#define DUMPER7_ASSERTS_FSmartObjectWorldConditionObjectTagQuery \ +static_assert(alignof(FSmartObjectWorldConditionObjectTagQuery) == 0x000008, "Wrong alignment on FSmartObjectWorldConditionObjectTagQuery"); \ +static_assert(sizeof(FSmartObjectWorldConditionObjectTagQuery) == 0x000070, "Wrong size on FSmartObjectWorldConditionObjectTagQuery"); \ +static_assert(offsetof(FSmartObjectWorldConditionObjectTagQuery, TagQuery) == 0x000028, "Member 'FSmartObjectWorldConditionObjectTagQuery::TagQuery' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectWorldConditionSlotTagQuery \ +static_assert(alignof(FSmartObjectWorldConditionSlotTagQuery) == 0x000008, "Wrong alignment on FSmartObjectWorldConditionSlotTagQuery"); \ +static_assert(sizeof(FSmartObjectWorldConditionSlotTagQuery) == 0x000070, "Wrong size on FSmartObjectWorldConditionSlotTagQuery"); \ +static_assert(offsetof(FSmartObjectWorldConditionSlotTagQuery, TagQuery) == 0x000028, "Member 'FSmartObjectWorldConditionSlotTagQuery::TagQuery' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorldCondition_SmartObjectActorTagQueryState \ +static_assert(alignof(FWorldCondition_SmartObjectActorTagQueryState) == 0x000008, "Wrong alignment on FWorldCondition_SmartObjectActorTagQueryState"); \ +static_assert(sizeof(FWorldCondition_SmartObjectActorTagQueryState) == 0x000008, "Wrong size on FWorldCondition_SmartObjectActorTagQueryState"); \ + +#define DUMPER7_ASSERTS_FWorldCondition_SmartObjectActorTagQuery \ +static_assert(alignof(FWorldCondition_SmartObjectActorTagQuery) == 0x000008, "Wrong alignment on FWorldCondition_SmartObjectActorTagQuery"); \ +static_assert(sizeof(FWorldCondition_SmartObjectActorTagQuery) == 0x000068, "Wrong size on FWorldCondition_SmartObjectActorTagQuery"); \ +static_assert(offsetof(FWorldCondition_SmartObjectActorTagQuery, TagQuery) == 0x000020, "Member 'FWorldCondition_SmartObjectActorTagQuery::TagQuery' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryGenerator_SmartObjects \ +static_assert(alignof(UEnvQueryGenerator_SmartObjects) == 0x000010, "Wrong alignment on UEnvQueryGenerator_SmartObjects"); \ +static_assert(sizeof(UEnvQueryGenerator_SmartObjects) == 0x000170, "Wrong size on UEnvQueryGenerator_SmartObjects"); \ +static_assert(offsetof(UEnvQueryGenerator_SmartObjects, QueryOriginContext) == 0x000050, "Member 'UEnvQueryGenerator_SmartObjects::QueryOriginContext' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_SmartObjects, SmartObjectRequestFilter) == 0x000060, "Member 'UEnvQueryGenerator_SmartObjects::SmartObjectRequestFilter' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_SmartObjects, QueryBoxExtent) == 0x000150, "Member 'UEnvQueryGenerator_SmartObjects::QueryBoxExtent' has a wrong offset!"); \ +static_assert(offsetof(UEnvQueryGenerator_SmartObjects, bOnlyClaimable) == 0x000168, "Member 'UEnvQueryGenerator_SmartObjects::bOnlyClaimable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvQueryItemType_SmartObject \ +static_assert(alignof(UEnvQueryItemType_SmartObject) == 0x000008, "Wrong alignment on UEnvQueryItemType_SmartObject"); \ +static_assert(sizeof(UEnvQueryItemType_SmartObject) == 0x000030, "Wrong size on UEnvQueryItemType_SmartObject"); \ + +#define DUMPER7_ASSERTS_USmartObjectSettings \ +static_assert(alignof(USmartObjectSettings) == 0x000008, "Wrong alignment on USmartObjectSettings"); \ +static_assert(sizeof(USmartObjectSettings) == 0x000048, "Wrong size on USmartObjectSettings"); \ +static_assert(offsetof(USmartObjectSettings, DefaultUserTagsFilteringPolicy) == 0x000038, "Member 'USmartObjectSettings::DefaultUserTagsFilteringPolicy' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSettings, DefaultActivityTagsMergingPolicy) == 0x000039, "Member 'USmartObjectSettings::DefaultActivityTagsMergingPolicy' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSettings, DefaultWorldConditionSchemaClass) == 0x000040, "Member 'USmartObjectSettings::DefaultWorldConditionSchemaClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlackboardKeyType_SOClaimHandle \ +static_assert(alignof(UBlackboardKeyType_SOClaimHandle) == 0x000008, "Wrong alignment on UBlackboardKeyType_SOClaimHandle"); \ +static_assert(sizeof(UBlackboardKeyType_SOClaimHandle) == 0x000050, "Wrong size on UBlackboardKeyType_SOClaimHandle"); \ +static_assert(offsetof(UBlackboardKeyType_SOClaimHandle, Handle) == 0x000030, "Member 'UBlackboardKeyType_SOClaimHandle::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGenericSmartObject \ +static_assert(alignof(AGenericSmartObject) == 0x000008, "Wrong alignment on AGenericSmartObject"); \ +static_assert(sizeof(AGenericSmartObject) == 0x0002A0, "Wrong size on AGenericSmartObject"); \ +static_assert(offsetof(AGenericSmartObject, SOComponent) == 0x000298, "Member 'AGenericSmartObject::SOComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects) == 0x000018, "Wrong size on SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects, SmartObjectActors) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects::SmartObjectActors' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects, ReturnValue) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_AddMultipleSmartObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects) == 0x000018, "Wrong size on SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects, SmartObjectActors) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects::SmartObjectActors' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects, bAdd) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects::bAdd' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects, ReturnValue) == 0x000011, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveMultipleSmartObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject) == 0x000010, "Wrong size on SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject, SmartObject) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject::SmartObject' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject, bEnabled) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject, ReturnValue) == 0x000009, "Member 'SmartObjectBlueprintFunctionLibrary_AddOrRemoveSmartObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_AddSmartObject \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_AddSmartObject) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_AddSmartObject"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_AddSmartObject) == 0x000010, "Wrong size on SmartObjectBlueprintFunctionLibrary_AddSmartObject"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddSmartObject, SmartObjectActor) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_AddSmartObject::SmartObjectActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_AddSmartObject, ReturnValue) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_AddSmartObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle) == 0x000050, "Wrong size on SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle, NodeOwner) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle, Key) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle::Key' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle, ReturnValue) == 0x000030, "Member 'SmartObjectBlueprintFunctionLibrary_GetBlackboardValueAsSOClaimHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle) == 0x000030, "Wrong size on SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle, BlackboardComponent) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle::BlackboardComponent' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle, KeyName) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle::KeyName' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle, ReturnValue) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_GetValueAsSOClaimHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle) == 0x000028, "Wrong size on SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle, Handle) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle::Handle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle, ReturnValue) == 0x000020, "Member 'SmartObjectBlueprintFunctionLibrary_IsValidSmartObjectClaimHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed) == 0x000040, "Wrong size on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed, WorldContextObject) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed, SlotHandle) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed, UserActor) == 0x000018, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed::UserActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed, ReturnValue) == 0x000020, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsClaimed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree) == 0x000030, "Wrong size on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree, WorldContextObject) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree, ClaimHandle) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree, ReturnValue) == 0x000028, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsFree::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied) == 0x000038, "Wrong size on SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied, WorldContextObject) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied, ClaimHandle) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied, DefinitionClass) == 0x000028, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied::DefinitionClass' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied, ReturnValue) == 0x000030, "Member 'SmartObjectBlueprintFunctionLibrary_MarkSmartObjectSlotAsOccupied::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects) == 0x000018, "Wrong size on SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects, SmartObjectActors) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects::SmartObjectActors' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects, ReturnValue) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_RemoveMultipleSmartObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_RemoveSmartObject \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_RemoveSmartObject) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_RemoveSmartObject"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_RemoveSmartObject) == 0x000010, "Wrong size on SmartObjectBlueprintFunctionLibrary_RemoveSmartObject"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_RemoveSmartObject, SmartObjectActor) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_RemoveSmartObject::SmartObjectActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_RemoveSmartObject, ReturnValue) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_RemoveSmartObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle) == 0x000050, "Wrong size on SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle, NodeOwner) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle::NodeOwner' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle, Key) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle::Key' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle, Value) == 0x000030, "Member 'SmartObjectBlueprintFunctionLibrary_SetBlackboardValueAsSOClaimHandle::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled) == 0x000018, "Wrong size on SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled, SmartObjectActors) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled::SmartObjectActors' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled, bEnabled) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled, ReturnValue) == 0x000011, "Member 'SmartObjectBlueprintFunctionLibrary_SetMultipleSmartObjectsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled) == 0x000010, "Wrong size on SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled, SmartObjectActor) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled::SmartObjectActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled, bEnabled) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled, ReturnValue) == 0x000009, "Member 'SmartObjectBlueprintFunctionLibrary_SetSmartObjectEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle \ +static_assert(alignof(SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle) == 0x000008, "Wrong alignment on SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle"); \ +static_assert(sizeof(SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle) == 0x000030, "Wrong size on SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle, BlackboardComponent) == 0x000000, "Member 'SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle::BlackboardComponent' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle, KeyName) == 0x000008, "Member 'SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle::KeyName' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle, Value) == 0x000010, "Member 'SmartObjectBlueprintFunctionLibrary_SetValueAsSOClaimHandle::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectBlueprintFunctionLibrary \ +static_assert(alignof(USmartObjectBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on USmartObjectBlueprintFunctionLibrary"); \ +static_assert(sizeof(USmartObjectBlueprintFunctionLibrary) == 0x000028, "Wrong size on USmartObjectBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_ASmartObjectCollection \ +static_assert(alignof(ASmartObjectCollection) == 0x000008, "Wrong alignment on ASmartObjectCollection"); \ +static_assert(sizeof(ASmartObjectCollection) == 0x000348, "Wrong size on ASmartObjectCollection"); \ +static_assert(offsetof(ASmartObjectCollection, Bounds) == 0x000298, "Member 'ASmartObjectCollection::Bounds' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectCollection, CollectionEntries) == 0x0002D0, "Member 'ASmartObjectCollection::CollectionEntries' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectCollection, RegisteredIdToObjectMap) == 0x0002E0, "Member 'ASmartObjectCollection::RegisteredIdToObjectMap' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectCollection, Definitions) == 0x000330, "Member 'ASmartObjectCollection::Definitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectComponent_ReceiveOnEvent \ +static_assert(alignof(SmartObjectComponent_ReceiveOnEvent) == 0x000008, "Wrong alignment on SmartObjectComponent_ReceiveOnEvent"); \ +static_assert(sizeof(SmartObjectComponent_ReceiveOnEvent) == 0x000040, "Wrong size on SmartObjectComponent_ReceiveOnEvent"); \ +static_assert(offsetof(SmartObjectComponent_ReceiveOnEvent, EventData) == 0x000000, "Member 'SmartObjectComponent_ReceiveOnEvent::EventData' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectComponent_ReceiveOnEvent, Interactor) == 0x000038, "Member 'SmartObjectComponent_ReceiveOnEvent::Interactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectComponent \ +static_assert(alignof(USmartObjectComponent) == 0x000010, "Wrong alignment on USmartObjectComponent"); \ +static_assert(sizeof(USmartObjectComponent) == 0x0002F0, "Wrong size on USmartObjectComponent"); \ +static_assert(offsetof(USmartObjectComponent, OnSmartObjectEvent) == 0x0002A0, "Member 'USmartObjectComponent::OnSmartObjectEvent' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectComponent, DefinitionAsset) == 0x0002C8, "Member 'USmartObjectComponent::DefinitionAsset' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectComponent, RegisteredHandle) == 0x0002D0, "Member 'USmartObjectComponent::RegisteredHandle' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectComponent, bCanBePartOfCollection) == 0x0002E8, "Member 'USmartObjectComponent::bCanBePartOfCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectContainerRenderingComponent \ +static_assert(alignof(USmartObjectContainerRenderingComponent) == 0x000010, "Wrong alignment on USmartObjectContainerRenderingComponent"); \ +static_assert(sizeof(USmartObjectContainerRenderingComponent) == 0x000570, "Wrong size on USmartObjectContainerRenderingComponent"); \ + +#define DUMPER7_ASSERTS_USmartObjectDebugRenderingComponent \ +static_assert(alignof(USmartObjectDebugRenderingComponent) == 0x000010, "Wrong alignment on USmartObjectDebugRenderingComponent"); \ +static_assert(sizeof(USmartObjectDebugRenderingComponent) == 0x0005C0, "Wrong size on USmartObjectDebugRenderingComponent"); \ + +#define DUMPER7_ASSERTS_USmartObjectBehaviorDefinition \ +static_assert(alignof(USmartObjectBehaviorDefinition) == 0x000008, "Wrong alignment on USmartObjectBehaviorDefinition"); \ +static_assert(sizeof(USmartObjectBehaviorDefinition) == 0x000028, "Wrong size on USmartObjectBehaviorDefinition"); \ + +#define DUMPER7_ASSERTS_USmartObjectDefinition \ +static_assert(alignof(USmartObjectDefinition) == 0x000008, "Wrong alignment on USmartObjectDefinition"); \ +static_assert(sizeof(USmartObjectDefinition) == 0x0000E0, "Wrong size on USmartObjectDefinition"); \ +static_assert(offsetof(USmartObjectDefinition, Slots) == 0x000030, "Member 'USmartObjectDefinition::Slots' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, DefaultBehaviorDefinitions) == 0x000040, "Member 'USmartObjectDefinition::DefaultBehaviorDefinitions' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, UserTagFilter) == 0x000050, "Member 'USmartObjectDefinition::UserTagFilter' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, Preconditions) == 0x000098, "Member 'USmartObjectDefinition::Preconditions' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, ActivityTags) == 0x0000B0, "Member 'USmartObjectDefinition::ActivityTags' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, WorldConditionSchemaClass) == 0x0000D0, "Member 'USmartObjectDefinition::WorldConditionSchemaClass' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, ActivityTagsMergingPolicy) == 0x0000D8, "Member 'USmartObjectDefinition::ActivityTagsMergingPolicy' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectDefinition, UserTagsFilteringPolicy) == 0x0000D9, "Member 'USmartObjectDefinition::UserTagsFilteringPolicy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectSpacePartition \ +static_assert(alignof(USmartObjectSpacePartition) == 0x000008, "Wrong alignment on USmartObjectSpacePartition"); \ +static_assert(sizeof(USmartObjectSpacePartition) == 0x000028, "Wrong size on USmartObjectSpacePartition"); \ + +#define DUMPER7_ASSERTS_USmartObjectHashGrid \ +static_assert(alignof(USmartObjectHashGrid) == 0x000008, "Wrong alignment on USmartObjectHashGrid"); \ +static_assert(sizeof(USmartObjectHashGrid) == 0x0000D0, "Wrong size on USmartObjectHashGrid"); \ + +#define DUMPER7_ASSERTS_USmartObjectOctree \ +static_assert(alignof(USmartObjectOctree) == 0x000008, "Wrong alignment on USmartObjectOctree"); \ +static_assert(sizeof(USmartObjectOctree) == 0x0000F0, "Wrong size on USmartObjectOctree"); \ + +#define DUMPER7_ASSERTS_ASmartObjectPersistentCollection \ +static_assert(alignof(ASmartObjectPersistentCollection) == 0x000008, "Wrong alignment on ASmartObjectPersistentCollection"); \ +static_assert(sizeof(ASmartObjectPersistentCollection) == 0x000350, "Wrong size on ASmartObjectPersistentCollection"); \ +static_assert(offsetof(ASmartObjectPersistentCollection, SmartObjectContainer) == 0x000298, "Member 'ASmartObjectPersistentCollection::SmartObjectContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectRenderingComponent \ +static_assert(alignof(USmartObjectRenderingComponent) == 0x000010, "Wrong alignment on USmartObjectRenderingComponent"); \ +static_assert(sizeof(USmartObjectRenderingComponent) == 0x000570, "Wrong size on USmartObjectRenderingComponent"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_AddTagToInstance \ +static_assert(alignof(SmartObjectSubsystem_AddTagToInstance) == 0x000008, "Wrong alignment on SmartObjectSubsystem_AddTagToInstance"); \ +static_assert(sizeof(SmartObjectSubsystem_AddTagToInstance) == 0x000010, "Wrong size on SmartObjectSubsystem_AddTagToInstance"); \ +static_assert(offsetof(SmartObjectSubsystem_AddTagToInstance, Handle) == 0x000000, "Member 'SmartObjectSubsystem_AddTagToInstance::Handle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_AddTagToInstance, Tag) == 0x000008, "Member 'SmartObjectSubsystem_AddTagToInstance::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_AddTagToSlot \ +static_assert(alignof(SmartObjectSubsystem_AddTagToSlot) == 0x000008, "Wrong alignment on SmartObjectSubsystem_AddTagToSlot"); \ +static_assert(sizeof(SmartObjectSubsystem_AddTagToSlot) == 0x000018, "Wrong size on SmartObjectSubsystem_AddTagToSlot"); \ +static_assert(offsetof(SmartObjectSubsystem_AddTagToSlot, SlotHandle) == 0x000000, "Member 'SmartObjectSubsystem_AddTagToSlot::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_AddTagToSlot, Tag) == 0x000010, "Member 'SmartObjectSubsystem_AddTagToSlot::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_Claim \ +static_assert(alignof(SmartObjectSubsystem_Claim) == 0x000008, "Wrong alignment on SmartObjectSubsystem_Claim"); \ +static_assert(sizeof(SmartObjectSubsystem_Claim) == 0x000040, "Wrong size on SmartObjectSubsystem_Claim"); \ +static_assert(offsetof(SmartObjectSubsystem_Claim, RequestResult) == 0x000000, "Member 'SmartObjectSubsystem_Claim::RequestResult' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_Claim, UserActor) == 0x000018, "Member 'SmartObjectSubsystem_Claim::UserActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_Claim, ReturnValue) == 0x000020, "Member 'SmartObjectSubsystem_Claim::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetBehaviorDefinition \ +static_assert(alignof(SmartObjectSubsystem_GetBehaviorDefinition) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetBehaviorDefinition"); \ +static_assert(sizeof(SmartObjectSubsystem_GetBehaviorDefinition) == 0x000030, "Wrong size on SmartObjectSubsystem_GetBehaviorDefinition"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinition, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_GetBehaviorDefinition::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinition, DefinitionClass) == 0x000020, "Member 'SmartObjectSubsystem_GetBehaviorDefinition::DefinitionClass' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinition, ReturnValue) == 0x000028, "Member 'SmartObjectSubsystem_GetBehaviorDefinition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult \ +static_assert(alignof(SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult"); \ +static_assert(sizeof(SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult) == 0x000028, "Wrong size on SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult, RequestResult) == 0x000000, "Member 'SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult::RequestResult' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult, DefinitionClass) == 0x000018, "Member 'SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult::DefinitionClass' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult, ReturnValue) == 0x000020, "Member 'SmartObjectSubsystem_GetBehaviorDefinitionByRequestResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_Release \ +static_assert(alignof(SmartObjectSubsystem_Release) == 0x000008, "Wrong alignment on SmartObjectSubsystem_Release"); \ +static_assert(sizeof(SmartObjectSubsystem_Release) == 0x000028, "Wrong size on SmartObjectSubsystem_Release"); \ +static_assert(offsetof(SmartObjectSubsystem_Release, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_Release::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_Release, ReturnValue) == 0x000020, "Member 'SmartObjectSubsystem_Release::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_RemoveTagFromInstance \ +static_assert(alignof(SmartObjectSubsystem_RemoveTagFromInstance) == 0x000008, "Wrong alignment on SmartObjectSubsystem_RemoveTagFromInstance"); \ +static_assert(sizeof(SmartObjectSubsystem_RemoveTagFromInstance) == 0x000010, "Wrong size on SmartObjectSubsystem_RemoveTagFromInstance"); \ +static_assert(offsetof(SmartObjectSubsystem_RemoveTagFromInstance, Handle) == 0x000000, "Member 'SmartObjectSubsystem_RemoveTagFromInstance::Handle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_RemoveTagFromInstance, Tag) == 0x000008, "Member 'SmartObjectSubsystem_RemoveTagFromInstance::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_RemoveTagFromSlot \ +static_assert(alignof(SmartObjectSubsystem_RemoveTagFromSlot) == 0x000008, "Wrong alignment on SmartObjectSubsystem_RemoveTagFromSlot"); \ +static_assert(sizeof(SmartObjectSubsystem_RemoveTagFromSlot) == 0x000020, "Wrong size on SmartObjectSubsystem_RemoveTagFromSlot"); \ +static_assert(offsetof(SmartObjectSubsystem_RemoveTagFromSlot, SlotHandle) == 0x000000, "Member 'SmartObjectSubsystem_RemoveTagFromSlot::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_RemoveTagFromSlot, Tag) == 0x000010, "Member 'SmartObjectSubsystem_RemoveTagFromSlot::Tag' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_RemoveTagFromSlot, ReturnValue) == 0x000018, "Member 'SmartObjectSubsystem_RemoveTagFromSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_SetEnabled \ +static_assert(alignof(SmartObjectSubsystem_SetEnabled) == 0x000008, "Wrong alignment on SmartObjectSubsystem_SetEnabled"); \ +static_assert(sizeof(SmartObjectSubsystem_SetEnabled) == 0x000010, "Wrong size on SmartObjectSubsystem_SetEnabled"); \ +static_assert(offsetof(SmartObjectSubsystem_SetEnabled, Handle) == 0x000000, "Member 'SmartObjectSubsystem_SetEnabled::Handle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_SetEnabled, bEnabled) == 0x000008, "Member 'SmartObjectSubsystem_SetEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_SetEnabled, ReturnValue) == 0x000009, "Member 'SmartObjectSubsystem_SetEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_SetSlotEnabled \ +static_assert(alignof(SmartObjectSubsystem_SetSlotEnabled) == 0x000008, "Wrong alignment on SmartObjectSubsystem_SetSlotEnabled"); \ +static_assert(sizeof(SmartObjectSubsystem_SetSlotEnabled) == 0x000018, "Wrong size on SmartObjectSubsystem_SetSlotEnabled"); \ +static_assert(offsetof(SmartObjectSubsystem_SetSlotEnabled, SlotHandle) == 0x000000, "Member 'SmartObjectSubsystem_SetSlotEnabled::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_SetSlotEnabled, bEnabled) == 0x000010, "Member 'SmartObjectSubsystem_SetSlotEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_SetSlotEnabled, ReturnValue) == 0x000011, "Member 'SmartObjectSubsystem_SetSlotEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_Use \ +static_assert(alignof(SmartObjectSubsystem_Use) == 0x000008, "Wrong alignment on SmartObjectSubsystem_Use"); \ +static_assert(sizeof(SmartObjectSubsystem_Use) == 0x000030, "Wrong size on SmartObjectSubsystem_Use"); \ +static_assert(offsetof(SmartObjectSubsystem_Use, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_Use::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_Use, DefinitionClass) == 0x000020, "Member 'SmartObjectSubsystem_Use::DefinitionClass' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_Use, ReturnValue) == 0x000028, "Member 'SmartObjectSubsystem_Use::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_FindSmartObject \ +static_assert(alignof(SmartObjectSubsystem_FindSmartObject) == 0x000010, "Wrong alignment on SmartObjectSubsystem_FindSmartObject"); \ +static_assert(sizeof(SmartObjectSubsystem_FindSmartObject) == 0x000150, "Wrong size on SmartObjectSubsystem_FindSmartObject"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObject, Request) == 0x000000, "Member 'SmartObjectSubsystem_FindSmartObject::Request' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObject, UserActor) == 0x000130, "Member 'SmartObjectSubsystem_FindSmartObject::UserActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObject, ReturnValue) == 0x000138, "Member 'SmartObjectSubsystem_FindSmartObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_FindSmartObjects \ +static_assert(alignof(SmartObjectSubsystem_FindSmartObjects) == 0x000010, "Wrong alignment on SmartObjectSubsystem_FindSmartObjects"); \ +static_assert(sizeof(SmartObjectSubsystem_FindSmartObjects) == 0x000150, "Wrong size on SmartObjectSubsystem_FindSmartObjects"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects, Request) == 0x000000, "Member 'SmartObjectSubsystem_FindSmartObjects::Request' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects, OutResults) == 0x000130, "Member 'SmartObjectSubsystem_FindSmartObjects::OutResults' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects, UserActor) == 0x000140, "Member 'SmartObjectSubsystem_FindSmartObjects::UserActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects, ReturnValue) == 0x000148, "Member 'SmartObjectSubsystem_FindSmartObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_FindSmartObjects_BP \ +static_assert(alignof(SmartObjectSubsystem_FindSmartObjects_BP) == 0x000010, "Wrong alignment on SmartObjectSubsystem_FindSmartObjects_BP"); \ +static_assert(sizeof(SmartObjectSubsystem_FindSmartObjects_BP) == 0x000150, "Wrong size on SmartObjectSubsystem_FindSmartObjects_BP"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects_BP, Request) == 0x000000, "Member 'SmartObjectSubsystem_FindSmartObjects_BP::Request' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects_BP, OutResults) == 0x000130, "Member 'SmartObjectSubsystem_FindSmartObjects_BP::OutResults' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects_BP, UserActor) == 0x000140, "Member 'SmartObjectSubsystem_FindSmartObjects_BP::UserActor' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_FindSmartObjects_BP, ReturnValue) == 0x000148, "Member 'SmartObjectSubsystem_FindSmartObjects_BP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetInstanceTags \ +static_assert(alignof(SmartObjectSubsystem_GetInstanceTags) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetInstanceTags"); \ +static_assert(sizeof(SmartObjectSubsystem_GetInstanceTags) == 0x000028, "Wrong size on SmartObjectSubsystem_GetInstanceTags"); \ +static_assert(offsetof(SmartObjectSubsystem_GetInstanceTags, Handle) == 0x000000, "Member 'SmartObjectSubsystem_GetInstanceTags::Handle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetInstanceTags, ReturnValue) == 0x000008, "Member 'SmartObjectSubsystem_GetInstanceTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSlotLocation \ +static_assert(alignof(SmartObjectSubsystem_GetSlotLocation) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetSlotLocation"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSlotLocation) == 0x000040, "Wrong size on SmartObjectSubsystem_GetSlotLocation"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotLocation, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_GetSlotLocation::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotLocation, OutSlotLocation) == 0x000020, "Member 'SmartObjectSubsystem_GetSlotLocation::OutSlotLocation' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotLocation, ReturnValue) == 0x000038, "Member 'SmartObjectSubsystem_GetSlotLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSlotTags \ +static_assert(alignof(SmartObjectSubsystem_GetSlotTags) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetSlotTags"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSlotTags) == 0x000030, "Wrong size on SmartObjectSubsystem_GetSlotTags"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTags, SlotHandle) == 0x000000, "Member 'SmartObjectSubsystem_GetSlotTags::SlotHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTags, ReturnValue) == 0x000010, "Member 'SmartObjectSubsystem_GetSlotTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSlotTransform \ +static_assert(alignof(SmartObjectSubsystem_GetSlotTransform) == 0x000010, "Wrong alignment on SmartObjectSubsystem_GetSlotTransform"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSlotTransform) == 0x000090, "Wrong size on SmartObjectSubsystem_GetSlotTransform"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransform, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_GetSlotTransform::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransform, OutSlotTransform) == 0x000020, "Member 'SmartObjectSubsystem_GetSlotTransform::OutSlotTransform' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransform, ReturnValue) == 0x000080, "Member 'SmartObjectSubsystem_GetSlotTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSlotTransformFromRequestResult \ +static_assert(alignof(SmartObjectSubsystem_GetSlotTransformFromRequestResult) == 0x000010, "Wrong alignment on SmartObjectSubsystem_GetSlotTransformFromRequestResult"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSlotTransformFromRequestResult) == 0x000090, "Wrong size on SmartObjectSubsystem_GetSlotTransformFromRequestResult"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransformFromRequestResult, RequestResult) == 0x000000, "Member 'SmartObjectSubsystem_GetSlotTransformFromRequestResult::RequestResult' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransformFromRequestResult, OutSlotTransform) == 0x000020, "Member 'SmartObjectSubsystem_GetSlotTransformFromRequestResult::OutSlotTransform' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSlotTransformFromRequestResult, ReturnValue) == 0x000080, "Member 'SmartObjectSubsystem_GetSlotTransformFromRequestResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSmartObjectComponent \ +static_assert(alignof(SmartObjectSubsystem_GetSmartObjectComponent) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetSmartObjectComponent"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSmartObjectComponent) == 0x000028, "Wrong size on SmartObjectSubsystem_GetSmartObjectComponent"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSmartObjectComponent, ClaimHandle) == 0x000000, "Member 'SmartObjectSubsystem_GetSmartObjectComponent::ClaimHandle' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSmartObjectComponent, ReturnValue) == 0x000020, "Member 'SmartObjectSubsystem_GetSmartObjectComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SmartObjectSubsystem_GetSmartObjectComponentByRequestResult \ +static_assert(alignof(SmartObjectSubsystem_GetSmartObjectComponentByRequestResult) == 0x000008, "Wrong alignment on SmartObjectSubsystem_GetSmartObjectComponentByRequestResult"); \ +static_assert(sizeof(SmartObjectSubsystem_GetSmartObjectComponentByRequestResult) == 0x000020, "Wrong size on SmartObjectSubsystem_GetSmartObjectComponentByRequestResult"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSmartObjectComponentByRequestResult, Result) == 0x000000, "Member 'SmartObjectSubsystem_GetSmartObjectComponentByRequestResult::Result' has a wrong offset!"); \ +static_assert(offsetof(SmartObjectSubsystem_GetSmartObjectComponentByRequestResult, ReturnValue) == 0x000018, "Member 'SmartObjectSubsystem_GetSmartObjectComponentByRequestResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectSubsystem \ +static_assert(alignof(USmartObjectSubsystem) == 0x000008, "Wrong alignment on USmartObjectSubsystem"); \ +static_assert(sizeof(USmartObjectSubsystem) == 0x0001A0, "Wrong size on USmartObjectSubsystem"); \ +static_assert(offsetof(USmartObjectSubsystem, SpacePartitionClassName) == 0x000030, "Member 'USmartObjectSubsystem::SpacePartitionClassName' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, SpacePartitionClass) == 0x000050, "Member 'USmartObjectSubsystem::SpacePartitionClass' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, SpacePartition) == 0x000058, "Member 'USmartObjectSubsystem::SpacePartition' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, RenderingActor) == 0x000060, "Member 'USmartObjectSubsystem::RenderingActor' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, SmartObjectContainer) == 0x000068, "Member 'USmartObjectSubsystem::SmartObjectContainer' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, RuntimeSmartObjects) == 0x000128, "Member 'USmartObjectSubsystem::RuntimeSmartObjects' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, RegisteredSOComponents) == 0x000178, "Member 'USmartObjectSubsystem::RegisteredSOComponents' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSubsystem, PendingSmartObjectRegistration) == 0x000188, "Member 'USmartObjectSubsystem::PendingSmartObjectRegistration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectSubsystemRenderingComponent \ +static_assert(alignof(USmartObjectSubsystemRenderingComponent) == 0x000010, "Wrong alignment on USmartObjectSubsystemRenderingComponent"); \ +static_assert(sizeof(USmartObjectSubsystemRenderingComponent) == 0x0005C0, "Wrong size on USmartObjectSubsystemRenderingComponent"); \ + +#define DUMPER7_ASSERTS_ASmartObjectSubsystemRenderingActor \ +static_assert(alignof(ASmartObjectSubsystemRenderingActor) == 0x000008, "Wrong alignment on ASmartObjectSubsystemRenderingActor"); \ +static_assert(sizeof(ASmartObjectSubsystemRenderingActor) == 0x0002A0, "Wrong size on ASmartObjectSubsystemRenderingActor"); \ +static_assert(offsetof(ASmartObjectSubsystemRenderingActor, RenderingComponent) == 0x000298, "Member 'ASmartObjectSubsystemRenderingActor::RenderingComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectTest \ +static_assert(alignof(USmartObjectTest) == 0x000008, "Wrong alignment on USmartObjectTest"); \ +static_assert(sizeof(USmartObjectTest) == 0x000030, "Wrong size on USmartObjectTest"); \ +static_assert(offsetof(USmartObjectTest, SmartObjectTestingActor) == 0x000028, "Member 'USmartObjectTest::SmartObjectTestingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectSimpleQueryTest \ +static_assert(alignof(USmartObjectSimpleQueryTest) == 0x000010, "Wrong alignment on USmartObjectSimpleQueryTest"); \ +static_assert(sizeof(USmartObjectSimpleQueryTest) == 0x000170, "Wrong size on USmartObjectSimpleQueryTest"); \ +static_assert(offsetof(USmartObjectSimpleQueryTest, Request) == 0x000030, "Member 'USmartObjectSimpleQueryTest::Request' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSimpleQueryTest, Results) == 0x000160, "Member 'USmartObjectSimpleQueryTest::Results' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectTestRenderingComponent \ +static_assert(alignof(USmartObjectTestRenderingComponent) == 0x000010, "Wrong alignment on USmartObjectTestRenderingComponent"); \ +static_assert(sizeof(USmartObjectTestRenderingComponent) == 0x0005C0, "Wrong size on USmartObjectTestRenderingComponent"); \ + +#define DUMPER7_ASSERTS_ASmartObjectTestingActor \ +static_assert(alignof(ASmartObjectTestingActor) == 0x000008, "Wrong alignment on ASmartObjectTestingActor"); \ +static_assert(sizeof(ASmartObjectTestingActor) == 0x0002C0, "Wrong size on ASmartObjectTestingActor"); \ +static_assert(offsetof(ASmartObjectTestingActor, Tests) == 0x000298, "Member 'ASmartObjectTestingActor::Tests' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectTestingActor, RenderingComponent) == 0x0002A8, "Member 'ASmartObjectTestingActor::RenderingComponent' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectTestingActor, SmartObjectSubsystem) == 0x0002B0, "Member 'ASmartObjectTestingActor::SmartObjectSubsystem' has a wrong offset!"); \ +static_assert(offsetof(ASmartObjectTestingActor, bRunTestsEachFrame) == 0x0002B8, "Member 'ASmartObjectTestingActor::bRunTestsEachFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectSlotValidationFilter \ +static_assert(alignof(USmartObjectSlotValidationFilter) == 0x000008, "Wrong alignment on USmartObjectSlotValidationFilter"); \ +static_assert(sizeof(USmartObjectSlotValidationFilter) == 0x000130, "Wrong size on USmartObjectSlotValidationFilter"); \ +static_assert(offsetof(USmartObjectSlotValidationFilter, EntryParameters) == 0x000028, "Member 'USmartObjectSlotValidationFilter::EntryParameters' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSlotValidationFilter, bUseEntryParametersForExit) == 0x0000A8, "Member 'USmartObjectSlotValidationFilter::bUseEntryParametersForExit' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectSlotValidationFilter, ExitParameters) == 0x0000B0, "Member 'USmartObjectSlotValidationFilter::ExitParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectUserComponent \ +static_assert(alignof(USmartObjectUserComponent) == 0x000008, "Wrong alignment on USmartObjectUserComponent"); \ +static_assert(sizeof(USmartObjectUserComponent) == 0x0000A8, "Wrong size on USmartObjectUserComponent"); \ +static_assert(offsetof(USmartObjectUserComponent, ValidationFilter) == 0x0000A0, "Member 'USmartObjectUserComponent::ValidationFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectWorldConditionSchema \ +static_assert(alignof(USmartObjectWorldConditionSchema) == 0x000008, "Wrong alignment on USmartObjectWorldConditionSchema"); \ +static_assert(sizeof(USmartObjectWorldConditionSchema) == 0x000078, "Wrong size on USmartObjectWorldConditionSchema"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409 \ +static_assert(alignof(WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409) == 0x0000B0, "Wrong size on WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409, Payload) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_EventReceived_13F4557D4F59A5C3DA7E389E857C0409::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667 \ +static_assert(alignof(WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667) == 0x0000B0, "Wrong size on WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667, Payload) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_EventReceived_B2F09FFC490E99B606387284E8519667::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller \ +static_assert(alignof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller) == 0x0003F0, "Wrong size on WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, EntryPoint) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CustomEvent_InType) == 0x000004, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CustomEvent_InType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CustomEvent_Payload_1) == 0x000008, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_struct_Variable) == 0x0000C8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CreateDelegate_OutputDelegate_1) == 0x000178, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CustomEvent_Payload) == 0x000188, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_struct_Variable_1) == 0x000238, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CreateDelegate_OutputDelegate_2) == 0x0002E8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_delegate_Variable) == 0x0002F8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CreateDelegate_OutputDelegate_3) == 0x000308, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_int_Array_Index_Variable) == 0x000318, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_real_Variable) == 0x000320, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_bool_IsClosed_Variable) == 0x000328, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_bool_Has_Been_Initd_Variable) == 0x000329, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_IsClanSelected_Is_Clan_Selected) == 0x00032A, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_IsClanSelected_Is_Clan_Selected' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_IsClanSelected_Is_Clan_Selected_1) == 0x00032B, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_IsClanSelected_Is_Clan_Selected_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_GetAnimationCurrentTime_ReturnValue) == 0x00032C, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_GetAnimationCurrentTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000330, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_Event_bInStatus) == 0x000338, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_bool_Variable) == 0x000339, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_PlayAnimation_ReturnValue) == 0x000340, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_PlayAnimation_ReturnValue_1) == 0x000348, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CustomEvent_Show) == 0x000350, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CustomEvent_Show' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_GetPlayerPawn_ReturnValue) == 0x000358, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000360, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000368, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_IsValid_ReturnValue) == 0x000370, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_IsValid_ReturnValue_1) == 0x000371, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_PlayAnimationForward_ReturnValue) == 0x000378, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000380, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_int_Loop_Counter_Variable) == 0x000388, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_MakeArray_Array) == 0x000390, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Array_Get_Item) == 0x0003A0, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Array_Length_ReturnValue) == 0x0003A8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Less_IntInt_ReturnValue) == 0x0003AC, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Add_IntInt_ReturnValue) == 0x0003B0, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_CustomEvent_InReadyAbility) == 0x0003B8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_CustomEvent_InReadyAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, Temp_real_Variable_1) == 0x0003C0, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, K2Node_Select_Default) == 0x0003C8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Lerp_ReturnValue) == 0x0003D0, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_MakeVector2D_ReturnValue) == 0x0003D8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0003E8, "Member 'WBP_DpadInGame_Controller_C_ExecuteUbergraph_WBP_DpadInGame_Controller::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_FadeAfterTimer \ +static_assert(alignof(WBP_DpadInGame_Controller_C_FadeAfterTimer) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_FadeAfterTimer"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_FadeAfterTimer) == 0x000010, "Wrong size on WBP_DpadInGame_Controller_C_FadeAfterTimer"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_FadeAfterTimer, CallFunc_IsAnyoneInCombat_ReturnValue) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_FadeAfterTimer::CallFunc_IsAnyoneInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_FadeAfterTimer, CallFunc_PlayAnimationForward_ReturnValue) == 0x000008, "Member 'WBP_DpadInGame_Controller_C_FadeAfterTimer::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_IsClanSelected \ +static_assert(alignof(WBP_DpadInGame_Controller_C_IsClanSelected) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_IsClanSelected"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_IsClanSelected) == 0x000030, "Wrong size on WBP_DpadInGame_Controller_C_IsClanSelected"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, Is_Clan_Selected) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::Is_Clan_Selected' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, CallFunc_GetPlayerState_ReturnValue) == 0x000008, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000010, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, CallFunc_GetClan_ReturnValue) == 0x000020, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsClanSelected, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000028, "Member 'WBP_DpadInGame_Controller_C_IsClanSelected::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_IsCombat \ +static_assert(alignof(WBP_DpadInGame_Controller_C_IsCombat) == 0x000001, "Wrong alignment on WBP_DpadInGame_Controller_C_IsCombat"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_IsCombat) == 0x000001, "Wrong size on WBP_DpadInGame_Controller_C_IsCombat"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_IsCombat, outStatus) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_IsCombat::outStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_OnAbilityReady \ +static_assert(alignof(WBP_DpadInGame_Controller_C_OnAbilityReady) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_OnAbilityReady"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_OnAbilityReady) == 0x000008, "Wrong size on WBP_DpadInGame_Controller_C_OnAbilityReady"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_OnAbilityReady, InReadyAbility) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_OnAbilityReady::InReadyAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_OnGreedActivatedEvent \ +static_assert(alignof(WBP_DpadInGame_Controller_C_OnGreedActivatedEvent) == 0x000001, "Wrong alignment on WBP_DpadInGame_Controller_C_OnGreedActivatedEvent"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_OnGreedActivatedEvent) == 0x000001, "Wrong size on WBP_DpadInGame_Controller_C_OnGreedActivatedEvent"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_OnGreedActivatedEvent, InType) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_OnGreedActivatedEvent::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_PlayGreedAnimByType \ +static_assert(alignof(WBP_DpadInGame_Controller_C_PlayGreedAnimByType) == 0x000001, "Wrong alignment on WBP_DpadInGame_Controller_C_PlayGreedAnimByType"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_PlayGreedAnimByType) == 0x000002, "Wrong size on WBP_DpadInGame_Controller_C_PlayGreedAnimByType"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_PlayGreedAnimByType, InAbilityType) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_PlayGreedAnimByType::InAbilityType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_PlayGreedAnimByType, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_DpadInGame_Controller_C_PlayGreedAnimByType::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_ReverseFade \ +static_assert(alignof(WBP_DpadInGame_Controller_C_ReverseFade) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_ReverseFade"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_ReverseFade) == 0x000020, "Wrong size on WBP_DpadInGame_Controller_C_ReverseFade"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ReverseFade, CallFunc_GetRenderOpacity_ReturnValue) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_ReverseFade::CallFunc_GetRenderOpacity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ReverseFade, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000008, "Member 'WBP_DpadInGame_Controller_C_ReverseFade::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ReverseFade, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_DpadInGame_Controller_C_ReverseFade::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ReverseFade, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000018, "Member 'WBP_DpadInGame_Controller_C_ReverseFade::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_Toggle_Display \ +static_assert(alignof(WBP_DpadInGame_Controller_C_Toggle_Display) == 0x000001, "Wrong alignment on WBP_DpadInGame_Controller_C_Toggle_Display"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_Toggle_Display) == 0x000001, "Wrong size on WBP_DpadInGame_Controller_C_Toggle_Display"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_Toggle_Display, Show) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_Toggle_Display::Show' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_ToggleVisibility \ +static_assert(alignof(WBP_DpadInGame_Controller_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_DpadInGame_Controller_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_DpadInGame_Controller_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_UpdatePromptPosition \ +static_assert(alignof(WBP_DpadInGame_Controller_C_UpdatePromptPosition) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_UpdatePromptPosition"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_UpdatePromptPosition) == 0x000080, "Wrong size on WBP_DpadInGame_Controller_C_UpdatePromptPosition"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_bool_Variable) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_real_Variable) == 0x000008, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_real_Variable_1) == 0x000010, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_bool_Variable_1) == 0x000018, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_real_Variable_2) == 0x000020, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, Temp_real_Variable_3) == 0x000028, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000030, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_Select_Default) == 0x000038, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_MakeStruct_Margin) == 0x000040, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_MakeStruct_Margin' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_Select_Default_1) == 0x000050, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_MakeStruct_Margin_1) == 0x000058, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_MakeStruct_Margin_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, CallFunc_SlotAsOverlaySlot_ReturnValue_1) == 0x000068, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::CallFunc_SlotAsOverlaySlot_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, CallFunc_SlotAsOverlaySlot_ReturnValue_2) == 0x000070, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::CallFunc_SlotAsOverlaySlot_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_MakeStruct_Top_ImplicitCast) == 0x000078, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_MakeStruct_Top_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdatePromptPosition, K2Node_MakeStruct_Top_ImplicitCast_1) == 0x00007C, "Member 'WBP_DpadInGame_Controller_C_UpdatePromptPosition::K2Node_MakeStruct_Top_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_Controller_C_UpdateSlotVisual \ +static_assert(alignof(WBP_DpadInGame_Controller_C_UpdateSlotVisual) == 0x000008, "Wrong alignment on WBP_DpadInGame_Controller_C_UpdateSlotVisual"); \ +static_assert(sizeof(WBP_DpadInGame_Controller_C_UpdateSlotVisual) == 0x000008, "Wrong size on WBP_DpadInGame_Controller_C_UpdateSlotVisual"); \ +static_assert(offsetof(WBP_DpadInGame_Controller_C_UpdateSlotVisual, InSlot) == 0x000000, "Member 'WBP_DpadInGame_Controller_C_UpdateSlotVisual::InSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DpadInGame_Controller_C \ +static_assert(alignof(UWBP_DpadInGame_Controller_C) == 0x000008, "Wrong alignment on UWBP_DpadInGame_Controller_C"); \ +static_assert(sizeof(UWBP_DpadInGame_Controller_C) == 0x000428, "Wrong size on UWBP_DpadInGame_Controller_C"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, UberGraphFrame) == 0x000348, "Member 'UWBP_DpadInGame_Controller_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, Fade) == 0x000350, "Member 'UWBP_DpadInGame_Controller_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, HoldingAnim) == 0x000358, "Member 'UWBP_DpadInGame_Controller_C::HoldingAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, AbilityHUD_Overlay) == 0x000360, "Member 'UWBP_DpadInGame_Controller_C::AbilityHUD_Overlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, AffectGreedAnim) == 0x000368, "Member 'UWBP_DpadInGame_Controller_C::AffectGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, AffectPrompt) == 0x000370, "Member 'UWBP_DpadInGame_Controller_C::AffectPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, AffectSlot) == 0x000378, "Member 'UWBP_DpadInGame_Controller_C::AffectSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, InputIcon) == 0x000380, "Member 'UWBP_DpadInGame_Controller_C::InputIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, InputIcons) == 0x000388, "Member 'UWBP_DpadInGame_Controller_C::InputIcons' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, MasteryGreedAnim) == 0x000390, "Member 'UWBP_DpadInGame_Controller_C::MasteryGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, MasteryPrompt) == 0x000398, "Member 'UWBP_DpadInGame_Controller_C::MasteryPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, MasterySlot) == 0x0003A0, "Member 'UWBP_DpadInGame_Controller_C::MasterySlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, Pattern) == 0x0003A8, "Member 'UWBP_DpadInGame_Controller_C::Pattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, RelocateGreedAnim) == 0x0003B0, "Member 'UWBP_DpadInGame_Controller_C::RelocateGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, RelocatePrompt) == 0x0003B8, "Member 'UWBP_DpadInGame_Controller_C::RelocatePrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, RelocateSlot) == 0x0003C0, "Member 'UWBP_DpadInGame_Controller_C::RelocateSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, SizeBox_Input) == 0x0003C8, "Member 'UWBP_DpadInGame_Controller_C::SizeBox_Input' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, StrikeGreedAnim) == 0x0003D0, "Member 'UWBP_DpadInGame_Controller_C::StrikeGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, StrikePrompt) == 0x0003D8, "Member 'UWBP_DpadInGame_Controller_C::StrikePrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, StrikeSlot) == 0x0003E0, "Member 'UWBP_DpadInGame_Controller_C::StrikeSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, TriggerProperty) == 0x0003E8, "Member 'UWBP_DpadInGame_Controller_C::TriggerProperty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, BottonPromts) == 0x0003F0, "Member 'UWBP_DpadInGame_Controller_C::BottonPromts' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, IsHolding) == 0x000400, "Member 'UWBP_DpadInGame_Controller_C::IsHolding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, Timer) == 0x000408, "Member 'UWBP_DpadInGame_Controller_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, TimerHandle) == 0x000410, "Member 'UWBP_DpadInGame_Controller_C::TimerHandle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_Controller_C, Slots) == 0x000418, "Member 'UWBP_DpadInGame_Controller_C::Slots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectUserFragment \ +static_assert(alignof(FMassSmartObjectUserFragment) == 0x000008, "Wrong alignment on FMassSmartObjectUserFragment"); \ +static_assert(sizeof(FMassSmartObjectUserFragment) == 0x000050, "Wrong size on FMassSmartObjectUserFragment"); \ +static_assert(offsetof(FMassSmartObjectUserFragment, UserTags) == 0x000000, "Member 'FMassSmartObjectUserFragment::UserTags' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectUserFragment, InteractionHandle) == 0x000020, "Member 'FMassSmartObjectUserFragment::InteractionHandle' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectUserFragment, InteractionStatus) == 0x000040, "Member 'FMassSmartObjectUserFragment::InteractionStatus' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectUserFragment, InteractionCooldownEndTime) == 0x000048, "Member 'FMassSmartObjectUserFragment::InteractionCooldownEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectTimedBehaviorFragment \ +static_assert(alignof(FMassSmartObjectTimedBehaviorFragment) == 0x000004, "Wrong alignment on FMassSmartObjectTimedBehaviorFragment"); \ +static_assert(sizeof(FMassSmartObjectTimedBehaviorFragment) == 0x000004, "Wrong size on FMassSmartObjectTimedBehaviorFragment"); \ +static_assert(offsetof(FMassSmartObjectTimedBehaviorFragment, UseTime) == 0x000000, "Member 'FMassSmartObjectTimedBehaviorFragment::UseTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectCandidateSlot \ +static_assert(alignof(FSmartObjectCandidateSlot) == 0x000008, "Wrong alignment on FSmartObjectCandidateSlot"); \ +static_assert(sizeof(FSmartObjectCandidateSlot) == 0x000020, "Wrong size on FSmartObjectCandidateSlot"); \ +static_assert(offsetof(FSmartObjectCandidateSlot, Result) == 0x000000, "Member 'FSmartObjectCandidateSlot::Result' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectCandidateSlot, Cost) == 0x000018, "Member 'FSmartObjectCandidateSlot::Cost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectRequestID \ +static_assert(alignof(FMassSmartObjectRequestID) == 0x000008, "Wrong alignment on FMassSmartObjectRequestID"); \ +static_assert(sizeof(FMassSmartObjectRequestID) == 0x000008, "Wrong size on FMassSmartObjectRequestID"); \ +static_assert(offsetof(FMassSmartObjectRequestID, Entity) == 0x000000, "Member 'FMassSmartObjectRequestID::Entity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectCandidateSlots \ +static_assert(alignof(FMassSmartObjectCandidateSlots) == 0x000008, "Wrong alignment on FMassSmartObjectCandidateSlots"); \ +static_assert(sizeof(FMassSmartObjectCandidateSlots) == 0x000088, "Wrong size on FMassSmartObjectCandidateSlots"); \ +static_assert(offsetof(FMassSmartObjectCandidateSlots, NumSlots) == 0x000080, "Member 'FMassSmartObjectCandidateSlots::NumSlots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectRequestResultFragment \ +static_assert(alignof(FMassSmartObjectRequestResultFragment) == 0x000008, "Wrong alignment on FMassSmartObjectRequestResultFragment"); \ +static_assert(sizeof(FMassSmartObjectRequestResultFragment) == 0x000090, "Wrong size on FMassSmartObjectRequestResultFragment"); \ +static_assert(offsetof(FMassSmartObjectRequestResultFragment, Candidates) == 0x000000, "Member 'FMassSmartObjectRequestResultFragment::Candidates' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectRequestResultFragment, bProcessed) == 0x000088, "Member 'FMassSmartObjectRequestResultFragment::bProcessed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectWorldLocationRequestFragment \ +static_assert(alignof(FMassSmartObjectWorldLocationRequestFragment) == 0x000008, "Wrong alignment on FMassSmartObjectWorldLocationRequestFragment"); \ +static_assert(sizeof(FMassSmartObjectWorldLocationRequestFragment) == 0x000088, "Wrong size on FMassSmartObjectWorldLocationRequestFragment"); \ +static_assert(offsetof(FMassSmartObjectWorldLocationRequestFragment, SearchOrigin) == 0x000000, "Member 'FMassSmartObjectWorldLocationRequestFragment::SearchOrigin' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectWorldLocationRequestFragment, RequestingEntity) == 0x000018, "Member 'FMassSmartObjectWorldLocationRequestFragment::RequestingEntity' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectWorldLocationRequestFragment, UserTags) == 0x000020, "Member 'FMassSmartObjectWorldLocationRequestFragment::UserTags' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectWorldLocationRequestFragment, ActivityRequirements) == 0x000040, "Member 'FMassSmartObjectWorldLocationRequestFragment::ActivityRequirements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectLaneLocationRequestFragment \ +static_assert(alignof(FMassSmartObjectLaneLocationRequestFragment) == 0x000008, "Wrong alignment on FMassSmartObjectLaneLocationRequestFragment"); \ +static_assert(sizeof(FMassSmartObjectLaneLocationRequestFragment) == 0x000080, "Wrong size on FMassSmartObjectLaneLocationRequestFragment"); \ +static_assert(offsetof(FMassSmartObjectLaneLocationRequestFragment, RequestingEntity) == 0x000010, "Member 'FMassSmartObjectLaneLocationRequestFragment::RequestingEntity' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectLaneLocationRequestFragment, UserTags) == 0x000018, "Member 'FMassSmartObjectLaneLocationRequestFragment::UserTags' has a wrong offset!"); \ +static_assert(offsetof(FMassSmartObjectLaneLocationRequestFragment, ActivityRequirements) == 0x000038, "Member 'FMassSmartObjectLaneLocationRequestFragment::ActivityRequirements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassSmartObjectCompletedRequestTag \ +static_assert(alignof(FMassSmartObjectCompletedRequestTag) == 0x000001, "Wrong alignment on FMassSmartObjectCompletedRequestTag"); \ +static_assert(sizeof(FMassSmartObjectCompletedRequestTag) == 0x000001, "Wrong size on FMassSmartObjectCompletedRequestTag"); \ + +#define DUMPER7_ASSERTS_FSmartObjectMassEntityUserData \ +static_assert(alignof(FSmartObjectMassEntityUserData) == 0x000008, "Wrong alignment on FSmartObjectMassEntityUserData"); \ +static_assert(sizeof(FSmartObjectMassEntityUserData) == 0x000008, "Wrong size on FSmartObjectMassEntityUserData"); \ +static_assert(offsetof(FSmartObjectMassEntityUserData, UserEntity) == 0x000000, "Member 'FSmartObjectMassEntityUserData::UserEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectLaneLocation \ +static_assert(alignof(FSmartObjectLaneLocation) == 0x000008, "Wrong alignment on FSmartObjectLaneLocation"); \ +static_assert(sizeof(FSmartObjectLaneLocation) == 0x000010, "Wrong size on FSmartObjectLaneLocation"); \ +static_assert(offsetof(FSmartObjectLaneLocation, ObjectHandle) == 0x000000, "Member 'FSmartObjectLaneLocation::ObjectHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectLaneLocation, LaneIndex) == 0x000008, "Member 'FSmartObjectLaneLocation::LaneIndex' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectLaneLocation, DistanceAlongLane) == 0x00000C, "Member 'FSmartObjectLaneLocation::DistanceAlongLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectLaneLocationIndices \ +static_assert(alignof(FSmartObjectLaneLocationIndices) == 0x000008, "Wrong alignment on FSmartObjectLaneLocationIndices"); \ +static_assert(sizeof(FSmartObjectLaneLocationIndices) == 0x000010, "Wrong size on FSmartObjectLaneLocationIndices"); \ +static_assert(offsetof(FSmartObjectLaneLocationIndices, SmartObjectLaneLocationIndices) == 0x000000, "Member 'FSmartObjectLaneLocationIndices::SmartObjectLaneLocationIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSmartObjectAnnotationData \ +static_assert(alignof(FSmartObjectAnnotationData) == 0x000008, "Wrong alignment on FSmartObjectAnnotationData"); \ +static_assert(sizeof(FSmartObjectAnnotationData) == 0x0000D0, "Wrong size on FSmartObjectAnnotationData"); \ +static_assert(offsetof(FSmartObjectAnnotationData, DataHandle) == 0x000000, "Member 'FSmartObjectAnnotationData::DataHandle' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectAnnotationData, AffectedLanes) == 0x000008, "Member 'FSmartObjectAnnotationData::AffectedLanes' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectAnnotationData, SmartObjectLaneLocations) == 0x000018, "Member 'FSmartObjectAnnotationData::SmartObjectLaneLocations' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectAnnotationData, SmartObjectToLaneLocationIndexLookup) == 0x000028, "Member 'FSmartObjectAnnotationData::SmartObjectToLaneLocationIndexLookup' has a wrong offset!"); \ +static_assert(offsetof(FSmartObjectAnnotationData, LaneToLaneLocationIndicesLookup) == 0x000078, "Member 'FSmartObjectAnnotationData::LaneToLaneLocationIndicesLookup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectMassBehaviorDefinition \ +static_assert(alignof(USmartObjectMassBehaviorDefinition) == 0x000008, "Wrong alignment on USmartObjectMassBehaviorDefinition"); \ +static_assert(sizeof(USmartObjectMassBehaviorDefinition) == 0x000030, "Wrong size on USmartObjectMassBehaviorDefinition"); \ +static_assert(offsetof(USmartObjectMassBehaviorDefinition, UseTime) == 0x000028, "Member 'USmartObjectMassBehaviorDefinition::UseTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSmartObjectCandidatesFinderProcessor \ +static_assert(alignof(UMassSmartObjectCandidatesFinderProcessor) == 0x000008, "Wrong alignment on UMassSmartObjectCandidatesFinderProcessor"); \ +static_assert(sizeof(UMassSmartObjectCandidatesFinderProcessor) == 0x000600, "Wrong size on UMassSmartObjectCandidatesFinderProcessor"); \ +static_assert(offsetof(UMassSmartObjectCandidatesFinderProcessor, SearchExtents) == 0x0000B8, "Member 'UMassSmartObjectCandidatesFinderProcessor::SearchExtents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSmartObjectTimedBehaviorProcessor \ +static_assert(alignof(UMassSmartObjectTimedBehaviorProcessor) == 0x000008, "Wrong alignment on UMassSmartObjectTimedBehaviorProcessor"); \ +static_assert(sizeof(UMassSmartObjectTimedBehaviorProcessor) == 0x000360, "Wrong size on UMassSmartObjectTimedBehaviorProcessor"); \ + +#define DUMPER7_ASSERTS_UMassSmartObjectUserFragmentDeinitializer \ +static_assert(alignof(UMassSmartObjectUserFragmentDeinitializer) == 0x000008, "Wrong alignment on UMassSmartObjectUserFragmentDeinitializer"); \ +static_assert(sizeof(UMassSmartObjectUserFragmentDeinitializer) == 0x000370, "Wrong size on UMassSmartObjectUserFragmentDeinitializer"); \ + +#define DUMPER7_ASSERTS_UMassSmartObjectSettings \ +static_assert(alignof(UMassSmartObjectSettings) == 0x000008, "Wrong alignment on UMassSmartObjectSettings"); \ +static_assert(sizeof(UMassSmartObjectSettings) == 0x000030, "Wrong size on UMassSmartObjectSettings"); \ +static_assert(offsetof(UMassSmartObjectSettings, SmartObjectTag) == 0x000028, "Member 'UMassSmartObjectSettings::SmartObjectTag' has a wrong offset!"); \ +static_assert(offsetof(UMassSmartObjectSettings, SearchExtents) == 0x00002C, "Member 'UMassSmartObjectSettings::SearchExtents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassSmartObjectUserTrait \ +static_assert(alignof(UMassSmartObjectUserTrait) == 0x000008, "Wrong alignment on UMassSmartObjectUserTrait"); \ +static_assert(sizeof(UMassSmartObjectUserTrait) == 0x000048, "Wrong size on UMassSmartObjectUserTrait"); \ +static_assert(offsetof(UMassSmartObjectUserTrait, UserTags) == 0x000028, "Member 'UMassSmartObjectUserTrait::UserTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USmartObjectZoneAnnotations \ +static_assert(alignof(USmartObjectZoneAnnotations) == 0x000010, "Wrong alignment on USmartObjectZoneAnnotations"); \ +static_assert(sizeof(USmartObjectZoneAnnotations) == 0x000610, "Wrong size on USmartObjectZoneAnnotations"); \ +static_assert(offsetof(USmartObjectZoneAnnotations, AffectedLaneTags) == 0x0005E0, "Member 'USmartObjectZoneAnnotations::AffectedLaneTags' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectZoneAnnotations, SmartObjectAnnotationDataArray) == 0x0005F0, "Member 'USmartObjectZoneAnnotations::SmartObjectAnnotationDataArray' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectZoneAnnotations, BehaviorTag) == 0x000600, "Member 'USmartObjectZoneAnnotations::BehaviorTag' has a wrong offset!"); \ +static_assert(offsetof(USmartObjectZoneAnnotations, SmartObjectSubsystem) == 0x000608, "Member 'USmartObjectZoneAnnotations::SmartObjectSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassClaimSmartObjectTaskInstanceData \ +static_assert(alignof(FMassClaimSmartObjectTaskInstanceData) == 0x000008, "Wrong alignment on FMassClaimSmartObjectTaskInstanceData"); \ +static_assert(sizeof(FMassClaimSmartObjectTaskInstanceData) == 0x000030, "Wrong size on FMassClaimSmartObjectTaskInstanceData"); \ +static_assert(offsetof(FMassClaimSmartObjectTaskInstanceData, CandidateSlots) == 0x000000, "Member 'FMassClaimSmartObjectTaskInstanceData::CandidateSlots' has a wrong offset!"); \ +static_assert(offsetof(FMassClaimSmartObjectTaskInstanceData, ClaimedSlot) == 0x000010, "Member 'FMassClaimSmartObjectTaskInstanceData::ClaimedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeTaskBase \ +static_assert(alignof(FMassStateTreeTaskBase) == 0x000008, "Wrong alignment on FMassStateTreeTaskBase"); \ +static_assert(sizeof(FMassStateTreeTaskBase) == 0x000020, "Wrong size on FMassStateTreeTaskBase"); \ + +#define DUMPER7_ASSERTS_FMassClaimSmartObjectTask \ +static_assert(alignof(FMassClaimSmartObjectTask) == 0x000008, "Wrong alignment on FMassClaimSmartObjectTask"); \ +static_assert(sizeof(FMassClaimSmartObjectTask) == 0x000030, "Wrong size on FMassClaimSmartObjectTask"); \ +static_assert(offsetof(FMassClaimSmartObjectTask, InteractionCooldown) == 0x000028, "Member 'FMassClaimSmartObjectTask::InteractionCooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassComponentHitEvaluatorInstanceData \ +static_assert(alignof(FMassComponentHitEvaluatorInstanceData) == 0x000008, "Wrong alignment on FMassComponentHitEvaluatorInstanceData"); \ +static_assert(sizeof(FMassComponentHitEvaluatorInstanceData) == 0x000010, "Wrong size on FMassComponentHitEvaluatorInstanceData"); \ +static_assert(offsetof(FMassComponentHitEvaluatorInstanceData, bGotHit) == 0x000000, "Member 'FMassComponentHitEvaluatorInstanceData::bGotHit' has a wrong offset!"); \ +static_assert(offsetof(FMassComponentHitEvaluatorInstanceData, LastHitEntity) == 0x000008, "Member 'FMassComponentHitEvaluatorInstanceData::LastHitEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeEvaluatorBase \ +static_assert(alignof(FMassStateTreeEvaluatorBase) == 0x000008, "Wrong alignment on FMassStateTreeEvaluatorBase"); \ +static_assert(sizeof(FMassStateTreeEvaluatorBase) == 0x000018, "Wrong size on FMassStateTreeEvaluatorBase"); \ + +#define DUMPER7_ASSERTS_FMassComponentHitEvaluator \ +static_assert(alignof(FMassComponentHitEvaluator) == 0x000008, "Wrong alignment on FMassComponentHitEvaluator"); \ +static_assert(sizeof(FMassComponentHitEvaluator) == 0x000020, "Wrong size on FMassComponentHitEvaluator"); \ + +#define DUMPER7_ASSERTS_FMassHitResult \ +static_assert(alignof(FMassHitResult) == 0x000008, "Wrong alignment on FMassHitResult"); \ +static_assert(sizeof(FMassHitResult) == 0x000018, "Wrong size on FMassHitResult"); \ + +#define DUMPER7_ASSERTS_FMassFindSmartObjectTaskInstanceData \ +static_assert(alignof(FMassFindSmartObjectTaskInstanceData) == 0x000008, "Wrong alignment on FMassFindSmartObjectTaskInstanceData"); \ +static_assert(sizeof(FMassFindSmartObjectTaskInstanceData) == 0x0000A8, "Wrong size on FMassFindSmartObjectTaskInstanceData"); \ +static_assert(offsetof(FMassFindSmartObjectTaskInstanceData, FoundCandidateSlots) == 0x000000, "Member 'FMassFindSmartObjectTaskInstanceData::FoundCandidateSlots' has a wrong offset!"); \ +static_assert(offsetof(FMassFindSmartObjectTaskInstanceData, bHasCandidateSlots) == 0x000088, "Member 'FMassFindSmartObjectTaskInstanceData::bHasCandidateSlots' has a wrong offset!"); \ +static_assert(offsetof(FMassFindSmartObjectTaskInstanceData, SearchRequestID) == 0x000090, "Member 'FMassFindSmartObjectTaskInstanceData::SearchRequestID' has a wrong offset!"); \ +static_assert(offsetof(FMassFindSmartObjectTaskInstanceData, NextUpdate) == 0x000098, "Member 'FMassFindSmartObjectTaskInstanceData::NextUpdate' has a wrong offset!"); \ +static_assert(offsetof(FMassFindSmartObjectTaskInstanceData, LastLane) == 0x0000A0, "Member 'FMassFindSmartObjectTaskInstanceData::LastLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassFindSmartObjectTask \ +static_assert(alignof(FMassFindSmartObjectTask) == 0x000008, "Wrong alignment on FMassFindSmartObjectTask"); \ +static_assert(sizeof(FMassFindSmartObjectTask) == 0x000080, "Wrong size on FMassFindSmartObjectTask"); \ +static_assert(offsetof(FMassFindSmartObjectTask, ActivityRequirements) == 0x000030, "Member 'FMassFindSmartObjectTask::ActivityRequirements' has a wrong offset!"); \ +static_assert(offsetof(FMassFindSmartObjectTask, SearchInterval) == 0x000078, "Member 'FMassFindSmartObjectTask::SearchInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassLookAtFragment \ +static_assert(alignof(FMassLookAtFragment) == 0x000008, "Wrong alignment on FMassLookAtFragment"); \ +static_assert(sizeof(FMassLookAtFragment) == 0x000058, "Wrong size on FMassLookAtFragment"); \ +static_assert(offsetof(FMassLookAtFragment, Direction) == 0x000000, "Member 'FMassLookAtFragment::Direction' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, GazeDirection) == 0x000018, "Member 'FMassLookAtFragment::GazeDirection' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, TrackedEntity) == 0x000030, "Member 'FMassLookAtFragment::TrackedEntity' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, GazeTrackedEntity) == 0x000038, "Member 'FMassLookAtFragment::GazeTrackedEntity' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, GazeStartTime) == 0x000040, "Member 'FMassLookAtFragment::GazeStartTime' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, GazeDuration) == 0x000048, "Member 'FMassLookAtFragment::GazeDuration' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, LastSeenActionID) == 0x00004C, "Member 'FMassLookAtFragment::LastSeenActionID' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, LookAtMode) == 0x00004E, "Member 'FMassLookAtFragment::LookAtMode' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, RandomGazeMode) == 0x00004F, "Member 'FMassLookAtFragment::RandomGazeMode' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, RandomGazeYawVariation) == 0x000050, "Member 'FMassLookAtFragment::RandomGazeYawVariation' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtFragment, RandomGazePitchVariation) == 0x000051, "Member 'FMassLookAtFragment::RandomGazePitchVariation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassLookAtTargetTag \ +static_assert(alignof(FMassLookAtTargetTag) == 0x000001, "Wrong alignment on FMassLookAtTargetTag"); \ +static_assert(sizeof(FMassLookAtTargetTag) == 0x000001, "Wrong size on FMassLookAtTargetTag"); \ + +#define DUMPER7_ASSERTS_FMassLookAtTrajectoryPoint \ +static_assert(alignof(FMassLookAtTrajectoryPoint) == 0x000008, "Wrong alignment on FMassLookAtTrajectoryPoint"); \ +static_assert(sizeof(FMassLookAtTrajectoryPoint) == 0x000020, "Wrong size on FMassLookAtTrajectoryPoint"); \ + +#define DUMPER7_ASSERTS_FMassLookAtTrajectoryFragment \ +static_assert(alignof(FMassLookAtTrajectoryFragment) == 0x000008, "Wrong alignment on FMassLookAtTrajectoryFragment"); \ +static_assert(sizeof(FMassLookAtTrajectoryFragment) == 0x000070, "Wrong size on FMassLookAtTrajectoryFragment"); \ + +#define DUMPER7_ASSERTS_FMassLookAtTaskInstanceData \ +static_assert(alignof(FMassLookAtTaskInstanceData) == 0x000008, "Wrong alignment on FMassLookAtTaskInstanceData"); \ +static_assert(sizeof(FMassLookAtTaskInstanceData) == 0x000010, "Wrong size on FMassLookAtTaskInstanceData"); \ +static_assert(offsetof(FMassLookAtTaskInstanceData, TargetEntity) == 0x000000, "Member 'FMassLookAtTaskInstanceData::TargetEntity' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTaskInstanceData, Duration) == 0x000008, "Member 'FMassLookAtTaskInstanceData::Duration' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTaskInstanceData, Time) == 0x00000C, "Member 'FMassLookAtTaskInstanceData::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassLookAtTask \ +static_assert(alignof(FMassLookAtTask) == 0x000008, "Wrong alignment on FMassLookAtTask"); \ +static_assert(sizeof(FMassLookAtTask) == 0x000030, "Wrong size on FMassLookAtTask"); \ +static_assert(offsetof(FMassLookAtTask, LookAtMode) == 0x000024, "Member 'FMassLookAtTask::LookAtMode' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTask, RandomGazeMode) == 0x000025, "Member 'FMassLookAtTask::RandomGazeMode' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTask, RandomGazeYawVariation) == 0x000026, "Member 'FMassLookAtTask::RandomGazeYawVariation' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTask, RandomGazePitchVariation) == 0x000027, "Member 'FMassLookAtTask::RandomGazePitchVariation' has a wrong offset!"); \ +static_assert(offsetof(FMassLookAtTask, bRandomGazeEntities) == 0x000028, "Member 'FMassLookAtTask::bRandomGazeEntities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeInstanceFragment \ +static_assert(alignof(FMassStateTreeInstanceFragment) == 0x000008, "Wrong alignment on FMassStateTreeInstanceFragment"); \ +static_assert(sizeof(FMassStateTreeInstanceFragment) == 0x000010, "Wrong size on FMassStateTreeInstanceFragment"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeSharedFragment \ +static_assert(alignof(FMassStateTreeSharedFragment) == 0x000008, "Wrong alignment on FMassStateTreeSharedFragment"); \ +static_assert(sizeof(FMassStateTreeSharedFragment) == 0x000008, "Wrong size on FMassStateTreeSharedFragment"); \ +static_assert(offsetof(FMassStateTreeSharedFragment, StateTree) == 0x000000, "Member 'FMassStateTreeSharedFragment::StateTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeActivatedTag \ +static_assert(alignof(FMassStateTreeActivatedTag) == 0x000001, "Wrong alignment on FMassStateTreeActivatedTag"); \ +static_assert(sizeof(FMassStateTreeActivatedTag) == 0x000001, "Wrong size on FMassStateTreeActivatedTag"); \ + +#define DUMPER7_ASSERTS_FMassStateTreeInstanceDataItem \ +static_assert(alignof(FMassStateTreeInstanceDataItem) == 0x000008, "Wrong alignment on FMassStateTreeInstanceDataItem"); \ +static_assert(sizeof(FMassStateTreeInstanceDataItem) == 0x000018, "Wrong size on FMassStateTreeInstanceDataItem"); \ +static_assert(offsetof(FMassStateTreeInstanceDataItem, InstanceData) == 0x000000, "Member 'FMassStateTreeInstanceDataItem::InstanceData' has a wrong offset!"); \ +static_assert(offsetof(FMassStateTreeInstanceDataItem, Generation) == 0x000010, "Member 'FMassStateTreeInstanceDataItem::Generation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassUseSmartObjectTaskInstanceData \ +static_assert(alignof(FMassUseSmartObjectTaskInstanceData) == 0x000008, "Wrong alignment on FMassUseSmartObjectTaskInstanceData"); \ +static_assert(sizeof(FMassUseSmartObjectTaskInstanceData) == 0x000020, "Wrong size on FMassUseSmartObjectTaskInstanceData"); \ +static_assert(offsetof(FMassUseSmartObjectTaskInstanceData, ClaimedSlot) == 0x000000, "Member 'FMassUseSmartObjectTaskInstanceData::ClaimedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassUseSmartObjectTask \ +static_assert(alignof(FMassUseSmartObjectTask) == 0x000008, "Wrong alignment on FMassUseSmartObjectTask"); \ +static_assert(sizeof(FMassUseSmartObjectTask) == 0x000030, "Wrong size on FMassUseSmartObjectTask"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphAnnotationEvaluatorInstanceData \ +static_assert(alignof(FMassZoneGraphAnnotationEvaluatorInstanceData) == 0x000004, "Wrong alignment on FMassZoneGraphAnnotationEvaluatorInstanceData"); \ +static_assert(sizeof(FMassZoneGraphAnnotationEvaluatorInstanceData) == 0x000004, "Wrong size on FMassZoneGraphAnnotationEvaluatorInstanceData"); \ +static_assert(offsetof(FMassZoneGraphAnnotationEvaluatorInstanceData, AnnotationTags) == 0x000000, "Member 'FMassZoneGraphAnnotationEvaluatorInstanceData::AnnotationTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphAnnotationEvaluator \ +static_assert(alignof(FMassZoneGraphAnnotationEvaluator) == 0x000008, "Wrong alignment on FMassZoneGraphAnnotationEvaluator"); \ +static_assert(sizeof(FMassZoneGraphAnnotationEvaluator) == 0x000020, "Wrong size on FMassZoneGraphAnnotationEvaluator"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphAnnotationFragment \ +static_assert(alignof(FMassZoneGraphAnnotationFragment) == 0x000004, "Wrong alignment on FMassZoneGraphAnnotationFragment"); \ +static_assert(sizeof(FMassZoneGraphAnnotationFragment) == 0x000004, "Wrong size on FMassZoneGraphAnnotationFragment"); \ +static_assert(offsetof(FMassZoneGraphAnnotationFragment, Tags) == 0x000000, "Member 'FMassZoneGraphAnnotationFragment::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphAnnotationVariableTickChunkFragment \ +static_assert(alignof(FMassZoneGraphAnnotationVariableTickChunkFragment) == 0x000004, "Wrong alignment on FMassZoneGraphAnnotationVariableTickChunkFragment"); \ +static_assert(sizeof(FMassZoneGraphAnnotationVariableTickChunkFragment) == 0x000008, "Wrong size on FMassZoneGraphAnnotationVariableTickChunkFragment"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphTargetLocation \ +static_assert(alignof(FMassZoneGraphTargetLocation) == 0x000008, "Wrong alignment on FMassZoneGraphTargetLocation"); \ +static_assert(sizeof(FMassZoneGraphTargetLocation) == 0x000060, "Wrong size on FMassZoneGraphTargetLocation"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindEscapeTargetInstanceData \ +static_assert(alignof(FMassZoneGraphFindEscapeTargetInstanceData) == 0x000008, "Wrong alignment on FMassZoneGraphFindEscapeTargetInstanceData"); \ +static_assert(sizeof(FMassZoneGraphFindEscapeTargetInstanceData) == 0x000060, "Wrong size on FMassZoneGraphFindEscapeTargetInstanceData"); \ +static_assert(offsetof(FMassZoneGraphFindEscapeTargetInstanceData, EscapeTargetLocation) == 0x000000, "Member 'FMassZoneGraphFindEscapeTargetInstanceData::EscapeTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagFilterConditionInstanceData \ +static_assert(alignof(FZoneGraphTagFilterConditionInstanceData) == 0x000004, "Wrong alignment on FZoneGraphTagFilterConditionInstanceData"); \ +static_assert(sizeof(FZoneGraphTagFilterConditionInstanceData) == 0x000004, "Wrong size on FZoneGraphTagFilterConditionInstanceData"); \ +static_assert(offsetof(FZoneGraphTagFilterConditionInstanceData, Tags) == 0x000000, "Member 'FZoneGraphTagFilterConditionInstanceData::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindEscapeTarget \ +static_assert(alignof(FMassZoneGraphFindEscapeTarget) == 0x000008, "Wrong alignment on FMassZoneGraphFindEscapeTarget"); \ +static_assert(sizeof(FMassZoneGraphFindEscapeTarget) == 0x000028, "Wrong size on FMassZoneGraphFindEscapeTarget"); \ +static_assert(offsetof(FMassZoneGraphFindEscapeTarget, DisturbanceAnnotationTag) == 0x000026, "Member 'FMassZoneGraphFindEscapeTarget::DisturbanceAnnotationTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindSmartObjectTargetInstanceData \ +static_assert(alignof(FMassZoneGraphFindSmartObjectTargetInstanceData) == 0x000008, "Wrong alignment on FMassZoneGraphFindSmartObjectTargetInstanceData"); \ +static_assert(sizeof(FMassZoneGraphFindSmartObjectTargetInstanceData) == 0x000080, "Wrong size on FMassZoneGraphFindSmartObjectTargetInstanceData"); \ +static_assert(offsetof(FMassZoneGraphFindSmartObjectTargetInstanceData, ClaimedSlot) == 0x000000, "Member 'FMassZoneGraphFindSmartObjectTargetInstanceData::ClaimedSlot' has a wrong offset!"); \ +static_assert(offsetof(FMassZoneGraphFindSmartObjectTargetInstanceData, SmartObjectLocation) == 0x000020, "Member 'FMassZoneGraphFindSmartObjectTargetInstanceData::SmartObjectLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindSmartObjectTarget \ +static_assert(alignof(FMassZoneGraphFindSmartObjectTarget) == 0x000008, "Wrong alignment on FMassZoneGraphFindSmartObjectTarget"); \ +static_assert(sizeof(FMassZoneGraphFindSmartObjectTarget) == 0x000028, "Wrong size on FMassZoneGraphFindSmartObjectTarget"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphPathFollowTaskInstanceData \ +static_assert(alignof(FMassZoneGraphPathFollowTaskInstanceData) == 0x000008, "Wrong alignment on FMassZoneGraphPathFollowTaskInstanceData"); \ +static_assert(sizeof(FMassZoneGraphPathFollowTaskInstanceData) == 0x000030, "Wrong size on FMassZoneGraphPathFollowTaskInstanceData"); \ +static_assert(offsetof(FMassZoneGraphPathFollowTaskInstanceData, TargetLocation) == 0x000000, "Member 'FMassZoneGraphPathFollowTaskInstanceData::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FMassZoneGraphPathFollowTaskInstanceData, MovementStyle) == 0x000010, "Member 'FMassZoneGraphPathFollowTaskInstanceData::MovementStyle' has a wrong offset!"); \ +static_assert(offsetof(FMassZoneGraphPathFollowTaskInstanceData, SpeedScale) == 0x000028, "Member 'FMassZoneGraphPathFollowTaskInstanceData::SpeedScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagConditionInstanceData \ +static_assert(alignof(FZoneGraphTagConditionInstanceData) == 0x000001, "Wrong alignment on FZoneGraphTagConditionInstanceData"); \ +static_assert(sizeof(FZoneGraphTagConditionInstanceData) == 0x000002, "Wrong size on FZoneGraphTagConditionInstanceData"); \ +static_assert(offsetof(FZoneGraphTagConditionInstanceData, Left) == 0x000000, "Member 'FZoneGraphTagConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagConditionInstanceData, Right) == 0x000001, "Member 'FZoneGraphTagConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphPathFollowTask \ +static_assert(alignof(FMassZoneGraphPathFollowTask) == 0x000008, "Wrong alignment on FMassZoneGraphPathFollowTask"); \ +static_assert(sizeof(FMassZoneGraphPathFollowTask) == 0x000030, "Wrong size on FMassZoneGraphPathFollowTask"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphStandTaskInstanceData \ +static_assert(alignof(FMassZoneGraphStandTaskInstanceData) == 0x000004, "Wrong alignment on FMassZoneGraphStandTaskInstanceData"); \ +static_assert(sizeof(FMassZoneGraphStandTaskInstanceData) == 0x000008, "Wrong size on FMassZoneGraphStandTaskInstanceData"); \ +static_assert(offsetof(FMassZoneGraphStandTaskInstanceData, Duration) == 0x000000, "Member 'FMassZoneGraphStandTaskInstanceData::Duration' has a wrong offset!"); \ +static_assert(offsetof(FMassZoneGraphStandTaskInstanceData, Time) == 0x000004, "Member 'FMassZoneGraphStandTaskInstanceData::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphStandTask \ +static_assert(alignof(FMassZoneGraphStandTask) == 0x000008, "Wrong alignment on FMassZoneGraphStandTask"); \ +static_assert(sizeof(FMassZoneGraphStandTask) == 0x000030, "Wrong size on FMassZoneGraphStandTask"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagFilterCondition \ +static_assert(alignof(FZoneGraphTagFilterCondition) == 0x000008, "Wrong alignment on FZoneGraphTagFilterCondition"); \ +static_assert(sizeof(FZoneGraphTagFilterCondition) == 0x000030, "Wrong size on FZoneGraphTagFilterCondition"); \ +static_assert(offsetof(FZoneGraphTagFilterCondition, Filter) == 0x000020, "Member 'FZoneGraphTagFilterCondition::Filter' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagFilterCondition, bInvert) == 0x00002C, "Member 'FZoneGraphTagFilterCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagMaskConditionInstanceData \ +static_assert(alignof(FZoneGraphTagMaskConditionInstanceData) == 0x000004, "Wrong alignment on FZoneGraphTagMaskConditionInstanceData"); \ +static_assert(sizeof(FZoneGraphTagMaskConditionInstanceData) == 0x000008, "Wrong size on FZoneGraphTagMaskConditionInstanceData"); \ +static_assert(offsetof(FZoneGraphTagMaskConditionInstanceData, Left) == 0x000000, "Member 'FZoneGraphTagMaskConditionInstanceData::Left' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagMaskConditionInstanceData, Right) == 0x000004, "Member 'FZoneGraphTagMaskConditionInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagMaskCondition \ +static_assert(alignof(FZoneGraphTagMaskCondition) == 0x000008, "Wrong alignment on FZoneGraphTagMaskCondition"); \ +static_assert(sizeof(FZoneGraphTagMaskCondition) == 0x000028, "Wrong size on FZoneGraphTagMaskCondition"); \ +static_assert(offsetof(FZoneGraphTagMaskCondition, Operator) == 0x000020, "Member 'FZoneGraphTagMaskCondition::Operator' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphTagMaskCondition, bInvert) == 0x000021, "Member 'FZoneGraphTagMaskCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphTagCondition \ +static_assert(alignof(FZoneGraphTagCondition) == 0x000008, "Wrong alignment on FZoneGraphTagCondition"); \ +static_assert(sizeof(FZoneGraphTagCondition) == 0x000028, "Wrong size on FZoneGraphTagCondition"); \ +static_assert(offsetof(FZoneGraphTagCondition, bInvert) == 0x000020, "Member 'FZoneGraphTagCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassBehaviorSettings \ +static_assert(alignof(UMassBehaviorSettings) == 0x000008, "Wrong alignment on UMassBehaviorSettings"); \ +static_assert(sizeof(UMassBehaviorSettings) == 0x000038, "Wrong size on UMassBehaviorSettings"); \ +static_assert(offsetof(UMassBehaviorSettings, MaxActivationsPerLOD) == 0x000028, "Member 'UMassBehaviorSettings::MaxActivationsPerLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MassComponentHitSubsystem_OnHitCallback \ +static_assert(alignof(MassComponentHitSubsystem_OnHitCallback) == 0x000008, "Wrong alignment on MassComponentHitSubsystem_OnHitCallback"); \ +static_assert(sizeof(MassComponentHitSubsystem_OnHitCallback) == 0x000118, "Wrong size on MassComponentHitSubsystem_OnHitCallback"); \ +static_assert(offsetof(MassComponentHitSubsystem_OnHitCallback, HitComp) == 0x000000, "Member 'MassComponentHitSubsystem_OnHitCallback::HitComp' has a wrong offset!"); \ +static_assert(offsetof(MassComponentHitSubsystem_OnHitCallback, OtherActor) == 0x000008, "Member 'MassComponentHitSubsystem_OnHitCallback::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(MassComponentHitSubsystem_OnHitCallback, OtherComp) == 0x000010, "Member 'MassComponentHitSubsystem_OnHitCallback::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(MassComponentHitSubsystem_OnHitCallback, NormalImpulse) == 0x000018, "Member 'MassComponentHitSubsystem_OnHitCallback::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(MassComponentHitSubsystem_OnHitCallback, Hit) == 0x000030, "Member 'MassComponentHitSubsystem_OnHitCallback::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassComponentHitSubsystem \ +static_assert(alignof(UMassComponentHitSubsystem) == 0x000008, "Wrong alignment on UMassComponentHitSubsystem"); \ +static_assert(sizeof(UMassComponentHitSubsystem) == 0x000140, "Wrong size on UMassComponentHitSubsystem"); \ +static_assert(offsetof(UMassComponentHitSubsystem, SignalSubsystem) == 0x000040, "Member 'UMassComponentHitSubsystem::SignalSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassComponentHitSubsystem, AgentSubsystem) == 0x000048, "Member 'UMassComponentHitSubsystem::AgentSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassComponentHitSubsystem, HitResults) == 0x000050, "Member 'UMassComponentHitSubsystem::HitResults' has a wrong offset!"); \ +static_assert(offsetof(UMassComponentHitSubsystem, ComponentToEntityMap) == 0x0000A0, "Member 'UMassComponentHitSubsystem::ComponentToEntityMap' has a wrong offset!"); \ +static_assert(offsetof(UMassComponentHitSubsystem, EntityToComponentMap) == 0x0000F0, "Member 'UMassComponentHitSubsystem::EntityToComponentMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLookAtProcessor \ +static_assert(alignof(UMassLookAtProcessor) == 0x000008, "Wrong alignment on UMassLookAtProcessor"); \ +static_assert(sizeof(UMassLookAtProcessor) == 0x000370, "Wrong size on UMassLookAtProcessor"); \ +static_assert(offsetof(UMassLookAtProcessor, QueryExtent) == 0x0000B8, "Member 'UMassLookAtProcessor::QueryExtent' has a wrong offset!"); \ +static_assert(offsetof(UMassLookAtProcessor, Duration) == 0x0000BC, "Member 'UMassLookAtProcessor::Duration' has a wrong offset!"); \ +static_assert(offsetof(UMassLookAtProcessor, DurationVariation) == 0x0000C0, "Member 'UMassLookAtProcessor::DurationVariation' has a wrong offset!"); \ +static_assert(offsetof(UMassLookAtProcessor, DebugZOffset) == 0x0000C4, "Member 'UMassLookAtProcessor::DebugZOffset' has a wrong offset!"); \ +static_assert(offsetof(UMassLookAtProcessor, AngleThresholdInDegrees) == 0x0000C8, "Member 'UMassLookAtProcessor::AngleThresholdInDegrees' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLookAtTargetTrait \ +static_assert(alignof(UMassLookAtTargetTrait) == 0x000008, "Wrong alignment on UMassLookAtTargetTrait"); \ +static_assert(sizeof(UMassLookAtTargetTrait) == 0x000028, "Wrong size on UMassLookAtTargetTrait"); \ + +#define DUMPER7_ASSERTS_UMassLookAtTrait \ +static_assert(alignof(UMassLookAtTrait) == 0x000008, "Wrong alignment on UMassLookAtTrait"); \ +static_assert(sizeof(UMassLookAtTrait) == 0x000028, "Wrong size on UMassLookAtTrait"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeFragmentDestructor \ +static_assert(alignof(UMassStateTreeFragmentDestructor) == 0x000010, "Wrong alignment on UMassStateTreeFragmentDestructor"); \ +static_assert(sizeof(UMassStateTreeFragmentDestructor) == 0x000380, "Wrong size on UMassStateTreeFragmentDestructor"); \ +static_assert(offsetof(UMassStateTreeFragmentDestructor, SignalSubsystem) == 0x000370, "Member 'UMassStateTreeFragmentDestructor::SignalSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeActivationProcessor \ +static_assert(alignof(UMassStateTreeActivationProcessor) == 0x000008, "Wrong alignment on UMassStateTreeActivationProcessor"); \ +static_assert(sizeof(UMassStateTreeActivationProcessor) == 0x000360, "Wrong size on UMassStateTreeActivationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeProcessor \ +static_assert(alignof(UMassStateTreeProcessor) == 0x000008, "Wrong alignment on UMassStateTreeProcessor"); \ +static_assert(sizeof(UMassStateTreeProcessor) == 0x000420, "Wrong size on UMassStateTreeProcessor"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeSchema \ +static_assert(alignof(UMassStateTreeSchema) == 0x000008, "Wrong alignment on UMassStateTreeSchema"); \ +static_assert(sizeof(UMassStateTreeSchema) == 0x000028, "Wrong size on UMassStateTreeSchema"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeSubsystem \ +static_assert(alignof(UMassStateTreeSubsystem) == 0x000008, "Wrong alignment on UMassStateTreeSubsystem"); \ +static_assert(sizeof(UMassStateTreeSubsystem) == 0x000050, "Wrong size on UMassStateTreeSubsystem"); \ +static_assert(offsetof(UMassStateTreeSubsystem, InstanceDataArray) == 0x000040, "Member 'UMassStateTreeSubsystem::InstanceDataArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassStateTreeTrait \ +static_assert(alignof(UMassStateTreeTrait) == 0x000008, "Wrong alignment on UMassStateTreeTrait"); \ +static_assert(sizeof(UMassStateTreeTrait) == 0x000030, "Wrong size on UMassStateTreeTrait"); \ +static_assert(offsetof(UMassStateTreeTrait, StateTree) == 0x000028, "Member 'UMassStateTreeTrait::StateTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphAnnotationTagsInitializer \ +static_assert(alignof(UMassZoneGraphAnnotationTagsInitializer) == 0x000008, "Wrong alignment on UMassZoneGraphAnnotationTagsInitializer"); \ +static_assert(sizeof(UMassZoneGraphAnnotationTagsInitializer) == 0x000370, "Wrong size on UMassZoneGraphAnnotationTagsInitializer"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphAnnotationTagUpdateProcessor \ +static_assert(alignof(UMassZoneGraphAnnotationTagUpdateProcessor) == 0x000008, "Wrong alignment on UMassZoneGraphAnnotationTagUpdateProcessor"); \ +static_assert(sizeof(UMassZoneGraphAnnotationTagUpdateProcessor) == 0x000430, "Wrong size on UMassZoneGraphAnnotationTagUpdateProcessor"); \ + +#define DUMPER7_ASSERTS_UMassZoneGraphAnnotationTrait \ +static_assert(alignof(UMassZoneGraphAnnotationTrait) == 0x000008, "Wrong alignment on UMassZoneGraphAnnotationTrait"); \ +static_assert(sizeof(UMassZoneGraphAnnotationTrait) == 0x000028, "Wrong size on UMassZoneGraphAnnotationTrait"); \ + +#define DUMPER7_ASSERTS_ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial \ +static_assert(alignof(ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial) == 0x000008, "Wrong alignment on ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial"); \ +static_assert(sizeof(ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial) == 0x000018, "Wrong size on ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial"); \ +static_assert(offsetof(ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial, EntryPoint) == 0x000000, "Member 'ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial, K2Node_Event_InAutomata) == 0x000008, "Member 'ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial, K2Node_Event_InState) == 0x000010, "Member 'ForceHideTutorial_C_ExecuteUbergraph_ForceHideTutorial::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceHideTutorial_C_HideTutorialWidgetSlot \ +static_assert(alignof(ForceHideTutorial_C_HideTutorialWidgetSlot) == 0x000008, "Wrong alignment on ForceHideTutorial_C_HideTutorialWidgetSlot"); \ +static_assert(sizeof(ForceHideTutorial_C_HideTutorialWidgetSlot) == 0x000070, "Wrong size on ForceHideTutorial_C_HideTutorialWidgetSlot"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, SizeProperty) == 0x000000, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::SizeProperty' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, TextProperty) == 0x000008, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::TextProperty' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, TitleProperty) == 0x000010, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::TitleProperty' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, WBP_TempText) == 0x000018, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::WBP_TempText' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, CallFunc_GetPlayerController_ReturnValue) == 0x000040, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, CallFunc_GetHeraHUD_ReturnValue) == 0x000050, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::CallFunc_GetHeraHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000058, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, K2Node_DynamicCast_AsWBP_Tutorial_Widget) == 0x000060, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::K2Node_DynamicCast_AsWBP_Tutorial_Widget' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_HideTutorialWidgetSlot, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'ForceHideTutorial_C_HideTutorialWidgetSlot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceHideTutorial_C_ReceiveExecute \ +static_assert(alignof(ForceHideTutorial_C_ReceiveExecute) == 0x000008, "Wrong alignment on ForceHideTutorial_C_ReceiveExecute"); \ +static_assert(sizeof(ForceHideTutorial_C_ReceiveExecute) == 0x000010, "Wrong size on ForceHideTutorial_C_ReceiveExecute"); \ +static_assert(offsetof(ForceHideTutorial_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ForceHideTutorial_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceHideTutorial_C_ReceiveExecute, InState) == 0x000008, "Member 'ForceHideTutorial_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForceHideTutorial_C \ +static_assert(alignof(UForceHideTutorial_C) == 0x000008, "Wrong alignment on UForceHideTutorial_C"); \ +static_assert(sizeof(UForceHideTutorial_C) == 0x000170, "Wrong size on UForceHideTutorial_C"); \ +static_assert(offsetof(UForceHideTutorial_C, UberGraphFrame) == 0x000158, "Member 'UForceHideTutorial_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UForceHideTutorial_C, IsTutorialPlaying) == 0x000160, "Member 'UForceHideTutorial_C::IsTutorialPlaying' has a wrong offset!"); \ +static_assert(offsetof(UForceHideTutorial_C, TutorialActionCompleted) == 0x000168, "Member 'UForceHideTutorial_C::TutorialActionCompleted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedCrowdAgent \ +static_assert(alignof(FReplicatedCrowdAgent) == 0x000008, "Wrong alignment on FReplicatedCrowdAgent"); \ +static_assert(sizeof(FReplicatedCrowdAgent) == 0x0000B0, "Wrong size on FReplicatedCrowdAgent"); \ +static_assert(offsetof(FReplicatedCrowdAgent, Path) == 0x000028, "Member 'FReplicatedCrowdAgent::Path' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedCrowdAgent, PositionYaw) == 0x000090, "Member 'FReplicatedCrowdAgent::PositionYaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCrowdFastArrayItem \ +static_assert(alignof(FCrowdFastArrayItem) == 0x000008, "Wrong alignment on FCrowdFastArrayItem"); \ +static_assert(sizeof(FCrowdFastArrayItem) == 0x0000C0, "Wrong size on FCrowdFastArrayItem"); \ +static_assert(offsetof(FCrowdFastArrayItem, Agent) == 0x000010, "Member 'FCrowdFastArrayItem::Agent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassCrowdClientBubbleSerializer \ +static_assert(alignof(FMassCrowdClientBubbleSerializer) == 0x000008, "Wrong alignment on FMassCrowdClientBubbleSerializer"); \ +static_assert(sizeof(FMassCrowdClientBubbleSerializer) == 0x000288, "Wrong size on FMassCrowdClientBubbleSerializer"); \ +static_assert(offsetof(FMassCrowdClientBubbleSerializer, Crowd) == 0x000278, "Member 'FMassCrowdClientBubbleSerializer::Crowd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassCrowdClaimWaitSlotTaskInstanceData \ +static_assert(alignof(FMassCrowdClaimWaitSlotTaskInstanceData) == 0x000008, "Wrong alignment on FMassCrowdClaimWaitSlotTaskInstanceData"); \ +static_assert(sizeof(FMassCrowdClaimWaitSlotTaskInstanceData) == 0x000070, "Wrong size on FMassCrowdClaimWaitSlotTaskInstanceData"); \ +static_assert(offsetof(FMassCrowdClaimWaitSlotTaskInstanceData, WaitSlotLocation) == 0x000000, "Member 'FMassCrowdClaimWaitSlotTaskInstanceData::WaitSlotLocation' has a wrong offset!"); \ +static_assert(offsetof(FMassCrowdClaimWaitSlotTaskInstanceData, WaitingSlotIndex) == 0x000060, "Member 'FMassCrowdClaimWaitSlotTaskInstanceData::WaitingSlotIndex' has a wrong offset!"); \ +static_assert(offsetof(FMassCrowdClaimWaitSlotTaskInstanceData, AcquiredLane) == 0x000064, "Member 'FMassCrowdClaimWaitSlotTaskInstanceData::AcquiredLane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassCrowdClaimWaitSlotTask \ +static_assert(alignof(FMassCrowdClaimWaitSlotTask) == 0x000008, "Wrong alignment on FMassCrowdClaimWaitSlotTask"); \ +static_assert(sizeof(FMassCrowdClaimWaitSlotTask) == 0x000028, "Wrong size on FMassCrowdClaimWaitSlotTask"); \ + +#define DUMPER7_ASSERTS_FMassCrowdTag \ +static_assert(alignof(FMassCrowdTag) == 0x000001, "Wrong alignment on FMassCrowdTag"); \ +static_assert(sizeof(FMassCrowdTag) == 0x000001, "Wrong size on FMassCrowdTag"); \ + +#define DUMPER7_ASSERTS_FMassCrowdLaneTrackingFragment \ +static_assert(alignof(FMassCrowdLaneTrackingFragment) == 0x000004, "Wrong alignment on FMassCrowdLaneTrackingFragment"); \ +static_assert(sizeof(FMassCrowdLaneTrackingFragment) == 0x000008, "Wrong size on FMassCrowdLaneTrackingFragment"); \ + +#define DUMPER7_ASSERTS_FMassCrowdObstacleFragment \ +static_assert(alignof(FMassCrowdObstacleFragment) == 0x000008, "Wrong alignment on FMassCrowdObstacleFragment"); \ +static_assert(sizeof(FMassCrowdObstacleFragment) == 0x000028, "Wrong size on FMassCrowdObstacleFragment"); \ + +#define DUMPER7_ASSERTS_FMassCrowdLaneDensityDesc \ +static_assert(alignof(FMassCrowdLaneDensityDesc) == 0x000004, "Wrong alignment on FMassCrowdLaneDensityDesc"); \ +static_assert(sizeof(FMassCrowdLaneDensityDesc) == 0x00000C, "Wrong size on FMassCrowdLaneDensityDesc"); \ +static_assert(offsetof(FMassCrowdLaneDensityDesc, Tag) == 0x000000, "Member 'FMassCrowdLaneDensityDesc::Tag' has a wrong offset!"); \ +static_assert(offsetof(FMassCrowdLaneDensityDesc, Weight) == 0x000004, "Member 'FMassCrowdLaneDensityDesc::Weight' has a wrong offset!"); \ +static_assert(offsetof(FMassCrowdLaneDensityDesc, RenderColor) == 0x000008, "Member 'FMassCrowdLaneDensityDesc::RenderColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCrowdTrackingLaneData \ +static_assert(alignof(FCrowdTrackingLaneData) == 0x000004, "Wrong alignment on FCrowdTrackingLaneData"); \ +static_assert(sizeof(FCrowdTrackingLaneData) == 0x000008, "Wrong size on FCrowdTrackingLaneData"); \ + +#define DUMPER7_ASSERTS_FCrowdWaitSlot \ +static_assert(alignof(FCrowdWaitSlot) == 0x000008, "Wrong alignment on FCrowdWaitSlot"); \ +static_assert(sizeof(FCrowdWaitSlot) == 0x000038, "Wrong size on FCrowdWaitSlot"); \ + +#define DUMPER7_ASSERTS_FCrowdWaitAreaData \ +static_assert(alignof(FCrowdWaitAreaData) == 0x000008, "Wrong alignment on FCrowdWaitAreaData"); \ +static_assert(sizeof(FCrowdWaitAreaData) == 0x000028, "Wrong size on FCrowdWaitAreaData"); \ + +#define DUMPER7_ASSERTS_FCrowdBranchingLaneData \ +static_assert(alignof(FCrowdBranchingLaneData) == 0x000004, "Wrong alignment on FCrowdBranchingLaneData"); \ +static_assert(sizeof(FCrowdBranchingLaneData) == 0x000004, "Wrong size on FCrowdBranchingLaneData"); \ + +#define DUMPER7_ASSERTS_FZoneGraphCrowdLaneData \ +static_assert(alignof(FZoneGraphCrowdLaneData) == 0x000001, "Wrong alignment on FZoneGraphCrowdLaneData"); \ +static_assert(sizeof(FZoneGraphCrowdLaneData) == 0x000001, "Wrong size on FZoneGraphCrowdLaneData"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindWanderTargetInstanceData \ +static_assert(alignof(FMassZoneGraphFindWanderTargetInstanceData) == 0x000008, "Wrong alignment on FMassZoneGraphFindWanderTargetInstanceData"); \ +static_assert(sizeof(FMassZoneGraphFindWanderTargetInstanceData) == 0x000060, "Wrong size on FMassZoneGraphFindWanderTargetInstanceData"); \ +static_assert(offsetof(FMassZoneGraphFindWanderTargetInstanceData, WanderTargetLocation) == 0x000000, "Member 'FMassZoneGraphFindWanderTargetInstanceData::WanderTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassZoneGraphFindWanderTarget \ +static_assert(alignof(FMassZoneGraphFindWanderTarget) == 0x000008, "Wrong alignment on FMassZoneGraphFindWanderTarget"); \ +static_assert(sizeof(FMassZoneGraphFindWanderTarget) == 0x000038, "Wrong size on FMassZoneGraphFindWanderTarget"); \ +static_assert(offsetof(FMassZoneGraphFindWanderTarget, AllowedAnnotationTags) == 0x000028, "Member 'FMassZoneGraphFindWanderTarget::AllowedAnnotationTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FZoneGraphCrowdLaneStateChangeEvent \ +static_assert(alignof(FZoneGraphCrowdLaneStateChangeEvent) == 0x000004, "Wrong alignment on FZoneGraphCrowdLaneStateChangeEvent"); \ +static_assert(sizeof(FZoneGraphCrowdLaneStateChangeEvent) == 0x00000C, "Wrong size on FZoneGraphCrowdLaneStateChangeEvent"); \ +static_assert(offsetof(FZoneGraphCrowdLaneStateChangeEvent, Lane) == 0x000000, "Member 'FZoneGraphCrowdLaneStateChangeEvent::Lane' has a wrong offset!"); \ +static_assert(offsetof(FZoneGraphCrowdLaneStateChangeEvent, State) == 0x000008, "Member 'FZoneGraphCrowdLaneStateChangeEvent::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMassCrowdClientBubbleInfo \ +static_assert(alignof(AMassCrowdClientBubbleInfo) == 0x000008, "Wrong alignment on AMassCrowdClientBubbleInfo"); \ +static_assert(sizeof(AMassCrowdClientBubbleInfo) == 0x000538, "Wrong size on AMassCrowdClientBubbleInfo"); \ +static_assert(offsetof(AMassCrowdClientBubbleInfo, CrowdSerializer) == 0x0002B0, "Member 'AMassCrowdClientBubbleInfo::CrowdSerializer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UZoneGraphCloseCrowdLaneTest \ +static_assert(alignof(UZoneGraphCloseCrowdLaneTest) == 0x000008, "Wrong alignment on UZoneGraphCloseCrowdLaneTest"); \ +static_assert(sizeof(UZoneGraphCloseCrowdLaneTest) == 0x0000B0, "Wrong size on UZoneGraphCloseCrowdLaneTest"); \ +static_assert(offsetof(UZoneGraphCloseCrowdLaneTest, LaneLocation) == 0x000030, "Member 'UZoneGraphCloseCrowdLaneTest::LaneLocation' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCloseCrowdLaneTest, CrowdSubsystem) == 0x0000A0, "Member 'UZoneGraphCloseCrowdLaneTest::CrowdSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCloseCrowdLaneTest, LaneState) == 0x0000A8, "Member 'UZoneGraphCloseCrowdLaneTest::LaneState' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCloseCrowdLaneTest, PrevLaneState) == 0x0000A9, "Member 'UZoneGraphCloseCrowdLaneTest::PrevLaneState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdLaneDataRenderingComponent \ +static_assert(alignof(UMassCrowdLaneDataRenderingComponent) == 0x000010, "Wrong alignment on UMassCrowdLaneDataRenderingComponent"); \ +static_assert(sizeof(UMassCrowdLaneDataRenderingComponent) == 0x000570, "Wrong size on UMassCrowdLaneDataRenderingComponent"); \ + +#define DUMPER7_ASSERTS_UMassCrowdMemberTrait \ +static_assert(alignof(UMassCrowdMemberTrait) == 0x000008, "Wrong alignment on UMassCrowdMemberTrait"); \ +static_assert(sizeof(UMassCrowdMemberTrait) == 0x000028, "Wrong size on UMassCrowdMemberTrait"); \ + +#define DUMPER7_ASSERTS_UMassCrowdLaneTrackingSignalProcessor \ +static_assert(alignof(UMassCrowdLaneTrackingSignalProcessor) == 0x000008, "Wrong alignment on UMassCrowdLaneTrackingSignalProcessor"); \ +static_assert(sizeof(UMassCrowdLaneTrackingSignalProcessor) == 0x000420, "Wrong size on UMassCrowdLaneTrackingSignalProcessor"); \ + +#define DUMPER7_ASSERTS_UMassCrowdLaneTrackingDestructor \ +static_assert(alignof(UMassCrowdLaneTrackingDestructor) == 0x000008, "Wrong alignment on UMassCrowdLaneTrackingDestructor"); \ +static_assert(sizeof(UMassCrowdLaneTrackingDestructor) == 0x000370, "Wrong size on UMassCrowdLaneTrackingDestructor"); \ + +#define DUMPER7_ASSERTS_UMassCrowdDynamicObstacleProcessor \ +static_assert(alignof(UMassCrowdDynamicObstacleProcessor) == 0x000010, "Wrong alignment on UMassCrowdDynamicObstacleProcessor"); \ +static_assert(sizeof(UMassCrowdDynamicObstacleProcessor) == 0x000370, "Wrong size on UMassCrowdDynamicObstacleProcessor"); \ +static_assert(offsetof(UMassCrowdDynamicObstacleProcessor, ZoneGraphAnnotationSubsystem) == 0x000360, "Member 'UMassCrowdDynamicObstacleProcessor::ZoneGraphAnnotationSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdDynamicObstacleInitializer \ +static_assert(alignof(UMassCrowdDynamicObstacleInitializer) == 0x000008, "Wrong alignment on UMassCrowdDynamicObstacleInitializer"); \ +static_assert(sizeof(UMassCrowdDynamicObstacleInitializer) == 0x000370, "Wrong size on UMassCrowdDynamicObstacleInitializer"); \ + +#define DUMPER7_ASSERTS_UMassCrowdDynamicObstacleDeinitializer \ +static_assert(alignof(UMassCrowdDynamicObstacleDeinitializer) == 0x000010, "Wrong alignment on UMassCrowdDynamicObstacleDeinitializer"); \ +static_assert(sizeof(UMassCrowdDynamicObstacleDeinitializer) == 0x000380, "Wrong size on UMassCrowdDynamicObstacleDeinitializer"); \ +static_assert(offsetof(UMassCrowdDynamicObstacleDeinitializer, ZoneGraphAnnotationSubsystem) == 0x0000D0, "Member 'UMassCrowdDynamicObstacleDeinitializer::ZoneGraphAnnotationSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdReplicator \ +static_assert(alignof(UMassCrowdReplicator) == 0x000008, "Wrong alignment on UMassCrowdReplicator"); \ +static_assert(sizeof(UMassCrowdReplicator) == 0x000028, "Wrong size on UMassCrowdReplicator"); \ + +#define DUMPER7_ASSERTS_UMassCrowdRepresentationActorManagement \ +static_assert(alignof(UMassCrowdRepresentationActorManagement) == 0x000008, "Wrong alignment on UMassCrowdRepresentationActorManagement"); \ +static_assert(sizeof(UMassCrowdRepresentationActorManagement) == 0x000028, "Wrong size on UMassCrowdRepresentationActorManagement"); \ + +#define DUMPER7_ASSERTS_UMassCrowdRepresentationSubsystem \ +static_assert(alignof(UMassCrowdRepresentationSubsystem) == 0x000008, "Wrong alignment on UMassCrowdRepresentationSubsystem"); \ +static_assert(sizeof(UMassCrowdRepresentationSubsystem) == 0x0000C8, "Wrong size on UMassCrowdRepresentationSubsystem"); \ + +#define DUMPER7_ASSERTS_UMassCrowdServerRepresentationLODProcessor \ +static_assert(alignof(UMassCrowdServerRepresentationLODProcessor) == 0x000008, "Wrong alignment on UMassCrowdServerRepresentationLODProcessor"); \ +static_assert(sizeof(UMassCrowdServerRepresentationLODProcessor) == 0x002390, "Wrong size on UMassCrowdServerRepresentationLODProcessor"); \ +static_assert(offsetof(UMassCrowdServerRepresentationLODProcessor, LODDistance) == 0x0000B8, "Member 'UMassCrowdServerRepresentationLODProcessor::LODDistance' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdServerRepresentationLODProcessor, BufferHysteresisOnDistancePercentage) == 0x0000C8, "Member 'UMassCrowdServerRepresentationLODProcessor::BufferHysteresisOnDistancePercentage' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdServerRepresentationLODProcessor, LODMaxCount) == 0x0000CC, "Member 'UMassCrowdServerRepresentationLODProcessor::LODMaxCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdServerRepresentationProcessor \ +static_assert(alignof(UMassCrowdServerRepresentationProcessor) == 0x000008, "Wrong alignment on UMassCrowdServerRepresentationProcessor"); \ +static_assert(sizeof(UMassCrowdServerRepresentationProcessor) == 0x000360, "Wrong size on UMassCrowdServerRepresentationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassCrowdServerRepresentationTrait \ +static_assert(alignof(UMassCrowdServerRepresentationTrait) == 0x000008, "Wrong alignment on UMassCrowdServerRepresentationTrait"); \ +static_assert(sizeof(UMassCrowdServerRepresentationTrait) == 0x000058, "Wrong size on UMassCrowdServerRepresentationTrait"); \ +static_assert(offsetof(UMassCrowdServerRepresentationTrait, TemplateActor) == 0x000028, "Member 'UMassCrowdServerRepresentationTrait::TemplateActor' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdServerRepresentationTrait, Params_0) == 0x000030, "Member 'UMassCrowdServerRepresentationTrait::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdSettings \ +static_assert(alignof(UMassCrowdSettings) == 0x000008, "Wrong alignment on UMassCrowdSettings"); \ +static_assert(sizeof(UMassCrowdSettings) == 0x000078, "Wrong size on UMassCrowdSettings"); \ +static_assert(offsetof(UMassCrowdSettings, LaneBaseLineThickness) == 0x000028, "Member 'UMassCrowdSettings::LaneBaseLineThickness' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, LaneRenderZOffset) == 0x00002C, "Member 'UMassCrowdSettings::LaneRenderZOffset' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, IntersectionLaneScaleFactor) == 0x000030, "Member 'UMassCrowdSettings::IntersectionLaneScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, LaneDensityScaleFactor) == 0x000034, "Member 'UMassCrowdSettings::LaneDensityScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, OpenedLaneColor) == 0x000038, "Member 'UMassCrowdSettings::OpenedLaneColor' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, ClosedLaneColor) == 0x00003C, "Member 'UMassCrowdSettings::ClosedLaneColor' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, CrowdTag) == 0x000040, "Member 'UMassCrowdSettings::CrowdTag' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, CrossingTag) == 0x000041, "Member 'UMassCrowdSettings::CrossingTag' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, SlotSize) == 0x000044, "Member 'UMassCrowdSettings::SlotSize' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, SlotOffset) == 0x000048, "Member 'UMassCrowdSettings::SlotOffset' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, bDisplayTrackingData) == 0x00004C, "Member 'UMassCrowdSettings::bDisplayTrackingData' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, bDisplayStates) == 0x00004D, "Member 'UMassCrowdSettings::bDisplayStates' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, bDisplayDensities) == 0x00004E, "Member 'UMassCrowdSettings::bDisplayDensities' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, ObstacleStoppingSpeedTolerance) == 0x000050, "Member 'UMassCrowdSettings::ObstacleStoppingSpeedTolerance' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, ObstacleMovingDistanceTolerance) == 0x000054, "Member 'UMassCrowdSettings::ObstacleMovingDistanceTolerance' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, ObstacleTimeToStop) == 0x000058, "Member 'UMassCrowdSettings::ObstacleTimeToStop' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, ObstacleEffectRadius) == 0x00005C, "Member 'UMassCrowdSettings::ObstacleEffectRadius' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, MoveDistance) == 0x000060, "Member 'UMassCrowdSettings::MoveDistance' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, MoveDistanceRandomDeviation) == 0x000064, "Member 'UMassCrowdSettings::MoveDistanceRandomDeviation' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSettings, LaneDensities) == 0x000068, "Member 'UMassCrowdSettings::LaneDensities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdSpawnerSubsystem \ +static_assert(alignof(UMassCrowdSpawnerSubsystem) == 0x000008, "Wrong alignment on UMassCrowdSpawnerSubsystem"); \ +static_assert(sizeof(UMassCrowdSpawnerSubsystem) == 0x0000E8, "Wrong size on UMassCrowdSpawnerSubsystem"); \ + +#define DUMPER7_ASSERTS_UMassCrowdSubsystem \ +static_assert(alignof(UMassCrowdSubsystem) == 0x000008, "Wrong alignment on UMassCrowdSubsystem"); \ +static_assert(sizeof(UMassCrowdSubsystem) == 0x000070, "Wrong size on UMassCrowdSubsystem"); \ +static_assert(offsetof(UMassCrowdSubsystem, ZoneGraphSubsystem) == 0x000030, "Member 'UMassCrowdSubsystem::ZoneGraphSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSubsystem, ZoneGraphAnnotationSubsystem) == 0x000038, "Member 'UMassCrowdSubsystem::ZoneGraphAnnotationSubsystem' has a wrong offset!"); \ +static_assert(offsetof(UMassCrowdSubsystem, MassCrowdSettings) == 0x000040, "Member 'UMassCrowdSubsystem::MassCrowdSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdVisualizationLODProcessor \ +static_assert(alignof(UMassCrowdVisualizationLODProcessor) == 0x000010, "Wrong alignment on UMassCrowdVisualizationLODProcessor"); \ +static_assert(sizeof(UMassCrowdVisualizationLODProcessor) == 0x000B50, "Wrong size on UMassCrowdVisualizationLODProcessor"); \ + +#define DUMPER7_ASSERTS_UMassCrowdLODCollectorProcessor \ +static_assert(alignof(UMassCrowdLODCollectorProcessor) == 0x000008, "Wrong alignment on UMassCrowdLODCollectorProcessor"); \ +static_assert(sizeof(UMassCrowdLODCollectorProcessor) == 0x000B50, "Wrong size on UMassCrowdLODCollectorProcessor"); \ + +#define DUMPER7_ASSERTS_UMassCrowdVisualizationProcessor \ +static_assert(alignof(UMassCrowdVisualizationProcessor) == 0x000008, "Wrong alignment on UMassCrowdVisualizationProcessor"); \ +static_assert(sizeof(UMassCrowdVisualizationProcessor) == 0x000360, "Wrong size on UMassCrowdVisualizationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassDebugCrowdVisualizationProcessor \ +static_assert(alignof(UMassDebugCrowdVisualizationProcessor) == 0x000010, "Wrong alignment on UMassDebugCrowdVisualizationProcessor"); \ +static_assert(sizeof(UMassDebugCrowdVisualizationProcessor) == 0x000360, "Wrong size on UMassDebugCrowdVisualizationProcessor"); \ +static_assert(offsetof(UMassDebugCrowdVisualizationProcessor, World) == 0x0000B8, "Member 'UMassDebugCrowdVisualizationProcessor::World' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassCrowdVisualizationTrait \ +static_assert(alignof(UMassCrowdVisualizationTrait) == 0x000010, "Wrong alignment on UMassCrowdVisualizationTrait"); \ +static_assert(sizeof(UMassCrowdVisualizationTrait) == 0x000140, "Wrong size on UMassCrowdVisualizationTrait"); \ + +#define DUMPER7_ASSERTS_UZoneGraphCrowdLaneAnnotations \ +static_assert(alignof(UZoneGraphCrowdLaneAnnotations) == 0x000010, "Wrong alignment on UZoneGraphCrowdLaneAnnotations"); \ +static_assert(sizeof(UZoneGraphCrowdLaneAnnotations) == 0x000600, "Wrong size on UZoneGraphCrowdLaneAnnotations"); \ +static_assert(offsetof(UZoneGraphCrowdLaneAnnotations, CloseLaneTag) == 0x0005E0, "Member 'UZoneGraphCrowdLaneAnnotations::CloseLaneTag' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCrowdLaneAnnotations, WaitingLaneTag) == 0x0005E1, "Member 'UZoneGraphCrowdLaneAnnotations::WaitingLaneTag' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCrowdLaneAnnotations, bDisplayTags) == 0x0005E2, "Member 'UZoneGraphCrowdLaneAnnotations::bDisplayTags' has a wrong offset!"); \ +static_assert(offsetof(UZoneGraphCrowdLaneAnnotations, CrowdSubsystem) == 0x0005F8, "Member 'UZoneGraphCrowdLaneAnnotations::CrowdSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_AttackImpact_Heavy_C \ +static_assert(alignof(UCameraShake_AttackImpact_Heavy_C) == 0x000010, "Wrong alignment on UCameraShake_AttackImpact_Heavy_C"); \ +static_assert(sizeof(UCameraShake_AttackImpact_Heavy_C) == 0x000230, "Wrong size on UCameraShake_AttackImpact_Heavy_C"); \ + +#define DUMPER7_ASSERTS_FAnimToTextureAnimSequenceInfo \ +static_assert(alignof(FAnimToTextureAnimSequenceInfo) == 0x000008, "Wrong alignment on FAnimToTextureAnimSequenceInfo"); \ +static_assert(sizeof(FAnimToTextureAnimSequenceInfo) == 0x000020, "Wrong size on FAnimToTextureAnimSequenceInfo"); \ +static_assert(offsetof(FAnimToTextureAnimSequenceInfo, bEnabled) == 0x000000, "Member 'FAnimToTextureAnimSequenceInfo::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAnimSequenceInfo, AnimSequence) == 0x000008, "Member 'FAnimToTextureAnimSequenceInfo::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAnimSequenceInfo, bUseCustomRange) == 0x000010, "Member 'FAnimToTextureAnimSequenceInfo::bUseCustomRange' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAnimSequenceInfo, StartFrame) == 0x000014, "Member 'FAnimToTextureAnimSequenceInfo::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAnimSequenceInfo, EndFrame) == 0x000018, "Member 'FAnimToTextureAnimSequenceInfo::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimToTextureAnimInfo \ +static_assert(alignof(FAnimToTextureAnimInfo) == 0x000004, "Wrong alignment on FAnimToTextureAnimInfo"); \ +static_assert(sizeof(FAnimToTextureAnimInfo) == 0x000008, "Wrong size on FAnimToTextureAnimInfo"); \ +static_assert(offsetof(FAnimToTextureAnimInfo, StartFrame) == 0x000000, "Member 'FAnimToTextureAnimInfo::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAnimInfo, EndFrame) == 0x000004, "Member 'FAnimToTextureAnimInfo::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimToTextureFrameData \ +static_assert(alignof(FAnimToTextureFrameData) == 0x000004, "Wrong alignment on FAnimToTextureFrameData"); \ +static_assert(sizeof(FAnimToTextureFrameData) == 0x000008, "Wrong size on FAnimToTextureFrameData"); \ +static_assert(offsetof(FAnimToTextureFrameData, Frame) == 0x000000, "Member 'FAnimToTextureFrameData::Frame' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureFrameData, PrevFrame) == 0x000004, "Member 'FAnimToTextureFrameData::PrevFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimToTextureAutoPlayData \ +static_assert(alignof(FAnimToTextureAutoPlayData) == 0x000004, "Wrong alignment on FAnimToTextureAutoPlayData"); \ +static_assert(sizeof(FAnimToTextureAutoPlayData) == 0x000010, "Wrong size on FAnimToTextureAutoPlayData"); \ +static_assert(offsetof(FAnimToTextureAutoPlayData, TimeOffset) == 0x000000, "Member 'FAnimToTextureAutoPlayData::TimeOffset' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAutoPlayData, PlayRate) == 0x000004, "Member 'FAnimToTextureAutoPlayData::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAutoPlayData, StartFrame) == 0x000008, "Member 'FAnimToTextureAutoPlayData::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(FAnimToTextureAutoPlayData, EndFrame) == 0x00000C, "Member 'FAnimToTextureAutoPlayData::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_BP_GetBonePositionTexture \ +static_assert(alignof(AnimToTextureDataAsset_BP_GetBonePositionTexture) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_BP_GetBonePositionTexture"); \ +static_assert(sizeof(AnimToTextureDataAsset_BP_GetBonePositionTexture) == 0x000008, "Wrong size on AnimToTextureDataAsset_BP_GetBonePositionTexture"); \ +static_assert(offsetof(AnimToTextureDataAsset_BP_GetBonePositionTexture, ReturnValue) == 0x000000, "Member 'AnimToTextureDataAsset_BP_GetBonePositionTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_BP_GetBoneRotationTexture \ +static_assert(alignof(AnimToTextureDataAsset_BP_GetBoneRotationTexture) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_BP_GetBoneRotationTexture"); \ +static_assert(sizeof(AnimToTextureDataAsset_BP_GetBoneRotationTexture) == 0x000008, "Wrong size on AnimToTextureDataAsset_BP_GetBoneRotationTexture"); \ +static_assert(offsetof(AnimToTextureDataAsset_BP_GetBoneRotationTexture, ReturnValue) == 0x000000, "Member 'AnimToTextureDataAsset_BP_GetBoneRotationTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_BP_GetBoneWeightTexture \ +static_assert(alignof(AnimToTextureDataAsset_BP_GetBoneWeightTexture) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_BP_GetBoneWeightTexture"); \ +static_assert(sizeof(AnimToTextureDataAsset_BP_GetBoneWeightTexture) == 0x000008, "Wrong size on AnimToTextureDataAsset_BP_GetBoneWeightTexture"); \ +static_assert(offsetof(AnimToTextureDataAsset_BP_GetBoneWeightTexture, ReturnValue) == 0x000000, "Member 'AnimToTextureDataAsset_BP_GetBoneWeightTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_BP_GetSkeletalMesh \ +static_assert(alignof(AnimToTextureDataAsset_BP_GetSkeletalMesh) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_BP_GetSkeletalMesh"); \ +static_assert(sizeof(AnimToTextureDataAsset_BP_GetSkeletalMesh) == 0x000008, "Wrong size on AnimToTextureDataAsset_BP_GetSkeletalMesh"); \ +static_assert(offsetof(AnimToTextureDataAsset_BP_GetSkeletalMesh, ReturnValue) == 0x000000, "Member 'AnimToTextureDataAsset_BP_GetSkeletalMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_BP_GetStaticMesh \ +static_assert(alignof(AnimToTextureDataAsset_BP_GetStaticMesh) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_BP_GetStaticMesh"); \ +static_assert(sizeof(AnimToTextureDataAsset_BP_GetStaticMesh) == 0x000008, "Wrong size on AnimToTextureDataAsset_BP_GetStaticMesh"); \ +static_assert(offsetof(AnimToTextureDataAsset_BP_GetStaticMesh, ReturnValue) == 0x000000, "Member 'AnimToTextureDataAsset_BP_GetStaticMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureDataAsset_GetIndexFromAnimSequence \ +static_assert(alignof(AnimToTextureDataAsset_GetIndexFromAnimSequence) == 0x000008, "Wrong alignment on AnimToTextureDataAsset_GetIndexFromAnimSequence"); \ +static_assert(sizeof(AnimToTextureDataAsset_GetIndexFromAnimSequence) == 0x000010, "Wrong size on AnimToTextureDataAsset_GetIndexFromAnimSequence"); \ +static_assert(offsetof(AnimToTextureDataAsset_GetIndexFromAnimSequence, Sequence) == 0x000000, "Member 'AnimToTextureDataAsset_GetIndexFromAnimSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureDataAsset_GetIndexFromAnimSequence, ReturnValue) == 0x000008, "Member 'AnimToTextureDataAsset_GetIndexFromAnimSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimToTextureDataAsset \ +static_assert(alignof(UAnimToTextureDataAsset) == 0x000010, "Wrong alignment on UAnimToTextureDataAsset"); \ +static_assert(sizeof(UAnimToTextureDataAsset) == 0x000260, "Wrong size on UAnimToTextureDataAsset"); \ +static_assert(offsetof(UAnimToTextureDataAsset, SkeletalMesh) == 0x000030, "Member 'UAnimToTextureDataAsset::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, SkeletalLODIndex) == 0x000058, "Member 'UAnimToTextureDataAsset::SkeletalLODIndex' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, StaticMesh) == 0x000060, "Member 'UAnimToTextureDataAsset::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, StaticLODIndex) == 0x000088, "Member 'UAnimToTextureDataAsset::StaticLODIndex' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, UVChannel) == 0x00008C, "Member 'UAnimToTextureDataAsset::UVChannel' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, NumDriverTriangles) == 0x000090, "Member 'UAnimToTextureDataAsset::NumDriverTriangles' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, Sigma) == 0x000094, "Member 'UAnimToTextureDataAsset::Sigma' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, MaxHeight) == 0x000098, "Member 'UAnimToTextureDataAsset::MaxHeight' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, MaxWidth) == 0x00009C, "Member 'UAnimToTextureDataAsset::MaxWidth' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, bEnforcePowerOfTwo) == 0x0000A0, "Member 'UAnimToTextureDataAsset::bEnforcePowerOfTwo' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, Precision) == 0x0000A1, "Member 'UAnimToTextureDataAsset::Precision' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, Mode) == 0x0000A2, "Member 'UAnimToTextureDataAsset::Mode' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, VertexPositionTexture) == 0x0000A8, "Member 'UAnimToTextureDataAsset::VertexPositionTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, VertexNormalTexture) == 0x0000D0, "Member 'UAnimToTextureDataAsset::VertexNormalTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BonePositionTexture) == 0x0000F8, "Member 'UAnimToTextureDataAsset::BonePositionTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneRotationTexture) == 0x000120, "Member 'UAnimToTextureDataAsset::BoneRotationTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneWeightTexture) == 0x000148, "Member 'UAnimToTextureDataAsset::BoneWeightTexture' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, RootTransform) == 0x000170, "Member 'UAnimToTextureDataAsset::RootTransform' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, AttachToSocket) == 0x0001D0, "Member 'UAnimToTextureDataAsset::AttachToSocket' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, SampleRate) == 0x0001D8, "Member 'UAnimToTextureDataAsset::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, AnimSequences) == 0x0001E0, "Member 'UAnimToTextureDataAsset::AnimSequences' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, bAutoPlay) == 0x0001F0, "Member 'UAnimToTextureDataAsset::bAutoPlay' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, AnimationIndex) == 0x0001F4, "Member 'UAnimToTextureDataAsset::AnimationIndex' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, Frame) == 0x0001F8, "Member 'UAnimToTextureDataAsset::Frame' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, NumBoneInfluences) == 0x0001FC, "Member 'UAnimToTextureDataAsset::NumBoneInfluences' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, NumFrames) == 0x000200, "Member 'UAnimToTextureDataAsset::NumFrames' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, NumBones) == 0x000204, "Member 'UAnimToTextureDataAsset::NumBones' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, VertexRowsPerFrame) == 0x000208, "Member 'UAnimToTextureDataAsset::VertexRowsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, VertexMinBBox) == 0x00020C, "Member 'UAnimToTextureDataAsset::VertexMinBBox' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, VertexSizeBBox) == 0x000218, "Member 'UAnimToTextureDataAsset::VertexSizeBBox' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneWeightRowsPerFrame) == 0x000224, "Member 'UAnimToTextureDataAsset::BoneWeightRowsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneRowsPerFrame) == 0x000228, "Member 'UAnimToTextureDataAsset::BoneRowsPerFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneMinBBox) == 0x00022C, "Member 'UAnimToTextureDataAsset::BoneMinBBox' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, BoneSizeBBox) == 0x000238, "Member 'UAnimToTextureDataAsset::BoneSizeBBox' has a wrong offset!"); \ +static_assert(offsetof(UAnimToTextureDataAsset, Animations) == 0x000248, "Member 'UAnimToTextureDataAsset::Animations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData) == 0x000030, "Wrong size on AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData, InstancedMeshComponent) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData::InstancedMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData, AutoPlayData) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData::AutoPlayData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData, Transforms) == 0x000018, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData::Transforms' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData, bMarkRenderStateDirty) == 0x000028, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData, ReturnValue) == 0x000029, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesAutoPlayData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData) == 0x000030, "Wrong size on AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData, InstancedMeshComponent) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData::InstancedMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData, FrameData) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData::FrameData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData, Transforms) == 0x000018, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData::Transforms' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData, bMarkRenderStateDirty) == 0x000028, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData, ReturnValue) == 0x000029, "Member 'AnimToTextureInstancePlaybackLibrary_BatchUpdateInstancesFrameData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset) == 0x000028, "Wrong size on AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, DataAsset) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::DataAsset' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, AnimationIndex) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::AnimationIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, AutoPlayData) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::AutoPlayData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, TimeOffset) == 0x00001C, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::TimeOffset' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, PlayRate) == 0x000020, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset, ReturnValue) == 0x000024, "Member 'AnimToTextureInstancePlaybackLibrary_GetAutoPlayDataFromDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_GetFrame \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_GetFrame) == 0x000004, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_GetFrame"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_GetFrame) == 0x00001C, "Wrong size on AnimToTextureInstancePlaybackLibrary_GetFrame"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, Time) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, StartFrame) == 0x000004, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, EndFrame) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::EndFrame' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, TimeOffset) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::TimeOffset' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, PlayRate) == 0x000010, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, SampleRate) == 0x000014, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrame, ReturnValue) == 0x000018, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset) == 0x000028, "Wrong size on AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, DataAsset) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::DataAsset' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, AnimationIndex) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::AnimationIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, Time) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::Time' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, AutoPlayData) == 0x000010, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::AutoPlayData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, TimeOffset) == 0x000018, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::TimeOffset' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, PlayRate) == 0x00001C, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset, ReturnValue) == 0x000020, "Member 'AnimToTextureInstancePlaybackLibrary_GetFrameDataFromDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent) == 0x000010, "Wrong size on AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent, InstancedMeshComponent) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent::InstancedMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent, NumInstances) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent::NumInstances' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent, bAutoPlay) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent::bAutoPlay' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent, ReturnValue) == 0x00000D, "Member 'AnimToTextureInstancePlaybackLibrary_SetupInstancedMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData) == 0x000020, "Wrong size on AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData, InstancedMeshComponent) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData::InstancedMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData, InstanceIndex) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData, AutoPlayData) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData::AutoPlayData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData, bMarkRenderStateDirty) == 0x00001C, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData, ReturnValue) == 0x00001D, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceAutoPlayData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData \ +static_assert(alignof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData) == 0x000008, "Wrong alignment on AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData"); \ +static_assert(sizeof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData) == 0x000018, "Wrong size on AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData, InstancedMeshComponent) == 0x000000, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData::InstancedMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData, InstanceIndex) == 0x000008, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData, FrameData) == 0x00000C, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData::FrameData' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData, bMarkRenderStateDirty) == 0x000014, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData, ReturnValue) == 0x000015, "Member 'AnimToTextureInstancePlaybackLibrary_UpdateInstanceFrameData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimToTextureInstancePlaybackLibrary \ +static_assert(alignof(UAnimToTextureInstancePlaybackLibrary) == 0x000008, "Wrong alignment on UAnimToTextureInstancePlaybackLibrary"); \ +static_assert(sizeof(UAnimToTextureInstancePlaybackLibrary) == 0x000028, "Wrong size on UAnimToTextureInstancePlaybackLibrary"); \ + +#define DUMPER7_ASSERTS_Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP \ +static_assert(alignof(Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP) == 0x000004, "Wrong alignment on Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP"); \ +static_assert(sizeof(Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP) == 0x000004, "Wrong size on Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP"); \ +static_assert(offsetof(Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP, EntryPoint) == 0x000000, "Member 'Masquerade_Breach_Stake_Death_DirectorBP_C_ExecuteUbergraph_Masquerade_Breach_Stake_Death_DirectorBP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMasquerade_Breach_Stake_Death_DirectorBP_C \ +static_assert(alignof(UMasquerade_Breach_Stake_Death_DirectorBP_C) == 0x000008, "Wrong alignment on UMasquerade_Breach_Stake_Death_DirectorBP_C"); \ +static_assert(sizeof(UMasquerade_Breach_Stake_Death_DirectorBP_C) == 0x000040, "Wrong size on UMasquerade_Breach_Stake_Death_DirectorBP_C"); \ +static_assert(offsetof(UMasquerade_Breach_Stake_Death_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'UMasquerade_Breach_Stake_Death_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDLSSOverrideSettings \ +static_assert(alignof(UDLSSOverrideSettings) == 0x000008, "Wrong alignment on UDLSSOverrideSettings"); \ +static_assert(sizeof(UDLSSOverrideSettings) == 0x000030, "Wrong size on UDLSSOverrideSettings"); \ +static_assert(offsetof(UDLSSOverrideSettings, EnableDLSSInEditorViewportsOverride) == 0x000028, "Member 'UDLSSOverrideSettings::EnableDLSSInEditorViewportsOverride' has a wrong offset!"); \ +static_assert(offsetof(UDLSSOverrideSettings, EnableDLSSInPlayInEditorViewportsOverride) == 0x000029, "Member 'UDLSSOverrideSettings::EnableDLSSInPlayInEditorViewportsOverride' has a wrong offset!"); \ +static_assert(offsetof(UDLSSOverrideSettings, bShowDLSSIncompatiblePluginsToolsWarnings) == 0x00002A, "Member 'UDLSSOverrideSettings::bShowDLSSIncompatiblePluginsToolsWarnings' has a wrong offset!"); \ +static_assert(offsetof(UDLSSOverrideSettings, ShowDLSSSDebugOnScreenMessages) == 0x00002B, "Member 'UDLSSOverrideSettings::ShowDLSSSDebugOnScreenMessages' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDLSSSettings \ +static_assert(alignof(UDLSSSettings) == 0x000008, "Wrong alignment on UDLSSSettings"); \ +static_assert(sizeof(UDLSSSettings) == 0x000068, "Wrong size on UDLSSSettings"); \ +static_assert(offsetof(UDLSSSettings, bEnableDLSSD3D12) == 0x000028, "Member 'UDLSSSettings::bEnableDLSSD3D12' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bEnableDLSSD3D11) == 0x000029, "Member 'UDLSSSettings::bEnableDLSSD3D11' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bEnableDLSSVulkan) == 0x00002A, "Member 'UDLSSSettings::bEnableDLSSVulkan' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bEnableDLSSInEditorViewports) == 0x00002B, "Member 'UDLSSSettings::bEnableDLSSInEditorViewports' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bEnableDLSSInPlayInEditorViewports) == 0x00002C, "Member 'UDLSSSettings::bEnableDLSSInPlayInEditorViewports' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bShowDLSSSDebugOnScreenMessages) == 0x00002D, "Member 'UDLSSSettings::bShowDLSSSDebugOnScreenMessages' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, GenericDLSSBinaryPath) == 0x000030, "Member 'UDLSSSettings::GenericDLSSBinaryPath' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bGenericDLSSBinaryExists) == 0x000040, "Member 'UDLSSSettings::bGenericDLSSBinaryExists' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, NVIDIANGXApplicationId) == 0x000044, "Member 'UDLSSSettings::NVIDIANGXApplicationId' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, CustomDLSSBinaryPath) == 0x000048, "Member 'UDLSSSettings::CustomDLSSBinaryPath' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bCustomDLSSBinaryExists) == 0x000058, "Member 'UDLSSSettings::bCustomDLSSBinaryExists' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bAllowOTAUpdate) == 0x000059, "Member 'UDLSSSettings::bAllowOTAUpdate' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, bShowDLSSIncompatiblePluginsToolsWarnings) == 0x00005A, "Member 'UDLSSSettings::bShowDLSSIncompatiblePluginsToolsWarnings' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, DLAAPreset) == 0x00005B, "Member 'UDLSSSettings::DLAAPreset' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, DLSSQualityPreset) == 0x00005D, "Member 'UDLSSSettings::DLSSQualityPreset' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, DLSSBalancedPreset) == 0x00005E, "Member 'UDLSSSettings::DLSSBalancedPreset' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, DLSSPerformancePreset) == 0x00005F, "Member 'UDLSSSettings::DLSSPerformancePreset' has a wrong offset!"); \ +static_assert(offsetof(UDLSSSettings, DLSSUltraPerformancePreset) == 0x000060, "Member 'UDLSSSettings::DLSSUltraPerformancePreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_VanDoor_C_CanPull \ +static_assert(alignof(BP_TelekinesisInteractable_VanDoor_C_CanPull) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_VanDoor_C_CanPull"); \ +static_assert(sizeof(BP_TelekinesisInteractable_VanDoor_C_CanPull) == 0x000001, "Wrong size on BP_TelekinesisInteractable_VanDoor_C_CanPull"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_VanDoor_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor \ +static_assert(alignof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor"); \ +static_assert(sizeof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor) == 0x0000E0, "Wrong size on BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, EntryPoint) == 0x000000, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, Temp_bool_Variable) == 0x000004, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, Temp_delegate_Variable) == 0x000008, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, Temp_bool_Variable_1) == 0x000018, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, Temp_bool_Has_Been_Initd_Variable) == 0x000019, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, Temp_bool_IsClosed_Variable) == 0x00001A, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000020, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door) == 0x000028, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_OnInteract_self_CastInput) == 0x000038, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_OnInteract_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_Select_Default) == 0x000048, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_K2_GetComponentRotation_ReturnValue) == 0x000050, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_K2_GetComponentRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_RLerp_ReturnValue) == 0x000068, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000080, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_VisionFadeOutBegin_self_CastInput) == 0x000088, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_VisionFadeOutBegin_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x000098, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_Select_Default_1) == 0x0000A0, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_SwitchEnum_CmpSuccess) == 0x0000A8, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_K2_GetComponentRotation_ReturnValue_1) == 0x0000B0, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_K2_GetComponentRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000C8, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door_1) == 0x0000D0, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_DynamicCast_bSuccess_1) == 0x0000D8, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, CallFunc_IsValid_ReturnValue_1) == 0x0000D9, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor, K2Node_Event_InItemState) == 0x0000DA, "Member 'BP_TelekinesisInteractable_VanDoor_C_ExecuteUbergraph_BP_TelekinesisInteractable_VanDoor::K2Node_Event_InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_VanDoor_C_IsThrowable \ +static_assert(alignof(BP_TelekinesisInteractable_VanDoor_C_IsThrowable) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_VanDoor_C_IsThrowable"); \ +static_assert(sizeof(BP_TelekinesisInteractable_VanDoor_C_IsThrowable) == 0x000001, "Wrong size on BP_TelekinesisInteractable_VanDoor_C_IsThrowable"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_VanDoor_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_VanDoor_C_SetItemState \ +static_assert(alignof(BP_TelekinesisInteractable_VanDoor_C_SetItemState) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_VanDoor_C_SetItemState"); \ +static_assert(sizeof(BP_TelekinesisInteractable_VanDoor_C_SetItemState) == 0x000001, "Wrong size on BP_TelekinesisInteractable_VanDoor_C_SetItemState"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_SetItemState, InItemState) == 0x000000, "Member 'BP_TelekinesisInteractable_VanDoor_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript \ +static_assert(alignof(BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript"); \ +static_assert(sizeof(BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript) == 0x000002, "Wrong size on BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript, CallFunc_SetStaticMesh_ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript, CallFunc_SetStaticMesh_ReturnValue_1) == 0x000001, "Member 'BP_TelekinesisInteractable_VanDoor_C_UserConstructionScript::CallFunc_SetStaticMesh_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TelekinesisInteractable_VanDoor_C \ +static_assert(alignof(ABP_TelekinesisInteractable_VanDoor_C) == 0x000008, "Wrong alignment on ABP_TelekinesisInteractable_VanDoor_C"); \ +static_assert(sizeof(ABP_TelekinesisInteractable_VanDoor_C) == 0x0003F0, "Wrong size on ABP_TelekinesisInteractable_VanDoor_C"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, UberGraphFrame_BP_TelekinesisInteractable_VanDoor_C) == 0x000368, "Member 'ABP_TelekinesisInteractable_VanDoor_C::UberGraphFrame_BP_TelekinesisInteractable_VanDoor_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, EndRotation_Left) == 0x000370, "Member 'ABP_TelekinesisInteractable_VanDoor_C::EndRotation_Left' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, EndRotation_Right) == 0x000378, "Member 'ABP_TelekinesisInteractable_VanDoor_C::EndRotation_Right' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Rotate_Outwards_Left_Alpha_63E20D54400B422AE5206796D5E84312) == 0x000380, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Rotate_Outwards_Left_Alpha_63E20D54400B422AE5206796D5E84312' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Rotate_Outwards_Left__Direction_63E20D54400B422AE5206796D5E84312) == 0x000384, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Rotate_Outwards_Left__Direction_63E20D54400B422AE5206796D5E84312' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Rotate_Outwards_Left) == 0x000388, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Rotate_Outwards_Left' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Adjacent_Door) == 0x000390, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Adjacent_Door' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, IsRightDoor) == 0x0003B8, "Member 'ABP_TelekinesisInteractable_VanDoor_C::IsRightDoor' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Actor_End_Rotation) == 0x0003C0, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Actor_End_Rotation' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_VanDoor_C, Initial_Rotation) == 0x0003D8, "Member 'ABP_TelekinesisInteractable_VanDoor_C::Initial_Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_EnableDLAA \ +static_assert(alignof(DLSSLibrary_EnableDLAA) == 0x000001, "Wrong alignment on DLSSLibrary_EnableDLAA"); \ +static_assert(sizeof(DLSSLibrary_EnableDLAA) == 0x000001, "Wrong size on DLSSLibrary_EnableDLAA"); \ +static_assert(offsetof(DLSSLibrary_EnableDLAA, bEnabled) == 0x000000, "Member 'DLSSLibrary_EnableDLAA::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_EnableDLSS \ +static_assert(alignof(DLSSLibrary_EnableDLSS) == 0x000001, "Wrong alignment on DLSSLibrary_EnableDLSS"); \ +static_assert(sizeof(DLSSLibrary_EnableDLSS) == 0x000001, "Wrong size on DLSSLibrary_EnableDLSS"); \ +static_assert(offsetof(DLSSLibrary_EnableDLSS, bEnabled) == 0x000000, "Member 'DLSSLibrary_EnableDLSS::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_EnableDLSSRR \ +static_assert(alignof(DLSSLibrary_EnableDLSSRR) == 0x000001, "Wrong alignment on DLSSLibrary_EnableDLSSRR"); \ +static_assert(sizeof(DLSSLibrary_EnableDLSSRR) == 0x000001, "Wrong size on DLSSLibrary_EnableDLSSRR"); \ +static_assert(offsetof(DLSSLibrary_EnableDLSSRR, bEnabled) == 0x000000, "Member 'DLSSLibrary_EnableDLSSRR::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDefaultDLSSMode \ +static_assert(alignof(DLSSLibrary_GetDefaultDLSSMode) == 0x000001, "Wrong alignment on DLSSLibrary_GetDefaultDLSSMode"); \ +static_assert(sizeof(DLSSLibrary_GetDefaultDLSSMode) == 0x000001, "Wrong size on DLSSLibrary_GetDefaultDLSSMode"); \ +static_assert(offsetof(DLSSLibrary_GetDefaultDLSSMode, ReturnValue) == 0x000000, "Member 'DLSSLibrary_GetDefaultDLSSMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSMinimumDriverVersion \ +static_assert(alignof(DLSSLibrary_GetDLSSMinimumDriverVersion) == 0x000004, "Wrong alignment on DLSSLibrary_GetDLSSMinimumDriverVersion"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSMinimumDriverVersion) == 0x000008, "Wrong size on DLSSLibrary_GetDLSSMinimumDriverVersion"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSMinimumDriverVersion, MinDriverVersionMajor) == 0x000000, "Member 'DLSSLibrary_GetDLSSMinimumDriverVersion::MinDriverVersionMajor' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSMinimumDriverVersion, MinDriverVersionMinor) == 0x000004, "Member 'DLSSLibrary_GetDLSSMinimumDriverVersion::MinDriverVersionMinor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSMode \ +static_assert(alignof(DLSSLibrary_GetDLSSMode) == 0x000001, "Wrong alignment on DLSSLibrary_GetDLSSMode"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSMode) == 0x000001, "Wrong size on DLSSLibrary_GetDLSSMode"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSMode, ReturnValue) == 0x000000, "Member 'DLSSLibrary_GetDLSSMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSModeInformation \ +static_assert(alignof(DLSSLibrary_GetDLSSModeInformation) == 0x000008, "Wrong alignment on DLSSLibrary_GetDLSSModeInformation"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSModeInformation) == 0x000030, "Wrong size on DLSSLibrary_GetDLSSModeInformation"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, DLSSMode) == 0x000000, "Member 'DLSSLibrary_GetDLSSModeInformation::DLSSMode' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, ScreenResolution) == 0x000008, "Member 'DLSSLibrary_GetDLSSModeInformation::ScreenResolution' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, bIsSupported) == 0x000018, "Member 'DLSSLibrary_GetDLSSModeInformation::bIsSupported' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, OptimalScreenPercentage) == 0x00001C, "Member 'DLSSLibrary_GetDLSSModeInformation::OptimalScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, bIsFixedScreenPercentage) == 0x000020, "Member 'DLSSLibrary_GetDLSSModeInformation::bIsFixedScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, MinScreenPercentage) == 0x000024, "Member 'DLSSLibrary_GetDLSSModeInformation::MinScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, MaxScreenPercentage) == 0x000028, "Member 'DLSSLibrary_GetDLSSModeInformation::MaxScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSModeInformation, OptimalSharpness) == 0x00002C, "Member 'DLSSLibrary_GetDLSSModeInformation::OptimalSharpness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSRRMinimumDriverVersion \ +static_assert(alignof(DLSSLibrary_GetDLSSRRMinimumDriverVersion) == 0x000004, "Wrong alignment on DLSSLibrary_GetDLSSRRMinimumDriverVersion"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSRRMinimumDriverVersion) == 0x000008, "Wrong size on DLSSLibrary_GetDLSSRRMinimumDriverVersion"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSRRMinimumDriverVersion, MinDriverVersionMajor) == 0x000000, "Member 'DLSSLibrary_GetDLSSRRMinimumDriverVersion::MinDriverVersionMajor' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSRRMinimumDriverVersion, MinDriverVersionMinor) == 0x000004, "Member 'DLSSLibrary_GetDLSSRRMinimumDriverVersion::MinDriverVersionMinor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSScreenPercentageRange \ +static_assert(alignof(DLSSLibrary_GetDLSSScreenPercentageRange) == 0x000004, "Wrong alignment on DLSSLibrary_GetDLSSScreenPercentageRange"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSScreenPercentageRange) == 0x000008, "Wrong size on DLSSLibrary_GetDLSSScreenPercentageRange"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSScreenPercentageRange, MinScreenPercentage) == 0x000000, "Member 'DLSSLibrary_GetDLSSScreenPercentageRange::MinScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSScreenPercentageRange, MaxScreenPercentage) == 0x000004, "Member 'DLSSLibrary_GetDLSSScreenPercentageRange::MaxScreenPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetDLSSSharpness \ +static_assert(alignof(DLSSLibrary_GetDLSSSharpness) == 0x000004, "Wrong alignment on DLSSLibrary_GetDLSSSharpness"); \ +static_assert(sizeof(DLSSLibrary_GetDLSSSharpness) == 0x000004, "Wrong size on DLSSLibrary_GetDLSSSharpness"); \ +static_assert(offsetof(DLSSLibrary_GetDLSSSharpness, ReturnValue) == 0x000000, "Member 'DLSSLibrary_GetDLSSSharpness::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_GetSupportedDLSSModes \ +static_assert(alignof(DLSSLibrary_GetSupportedDLSSModes) == 0x000008, "Wrong alignment on DLSSLibrary_GetSupportedDLSSModes"); \ +static_assert(sizeof(DLSSLibrary_GetSupportedDLSSModes) == 0x000010, "Wrong size on DLSSLibrary_GetSupportedDLSSModes"); \ +static_assert(offsetof(DLSSLibrary_GetSupportedDLSSModes, ReturnValue) == 0x000000, "Member 'DLSSLibrary_GetSupportedDLSSModes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLAAEnabled \ +static_assert(alignof(DLSSLibrary_IsDLAAEnabled) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLAAEnabled"); \ +static_assert(sizeof(DLSSLibrary_IsDLAAEnabled) == 0x000001, "Wrong size on DLSSLibrary_IsDLAAEnabled"); \ +static_assert(offsetof(DLSSLibrary_IsDLAAEnabled, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsDLAAEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLSSEnabled \ +static_assert(alignof(DLSSLibrary_IsDLSSEnabled) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLSSEnabled"); \ +static_assert(sizeof(DLSSLibrary_IsDLSSEnabled) == 0x000001, "Wrong size on DLSSLibrary_IsDLSSEnabled"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSEnabled, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsDLSSEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLSSModeSupported \ +static_assert(alignof(DLSSLibrary_IsDLSSModeSupported) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLSSModeSupported"); \ +static_assert(sizeof(DLSSLibrary_IsDLSSModeSupported) == 0x000002, "Wrong size on DLSSLibrary_IsDLSSModeSupported"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSModeSupported, DLSSMode) == 0x000000, "Member 'DLSSLibrary_IsDLSSModeSupported::DLSSMode' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSModeSupported, ReturnValue) == 0x000001, "Member 'DLSSLibrary_IsDLSSModeSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLSSRREnabled \ +static_assert(alignof(DLSSLibrary_IsDLSSRREnabled) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLSSRREnabled"); \ +static_assert(sizeof(DLSSLibrary_IsDLSSRREnabled) == 0x000001, "Wrong size on DLSSLibrary_IsDLSSRREnabled"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSRREnabled, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsDLSSRREnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLSSRRSupported \ +static_assert(alignof(DLSSLibrary_IsDLSSRRSupported) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLSSRRSupported"); \ +static_assert(sizeof(DLSSLibrary_IsDLSSRRSupported) == 0x000001, "Wrong size on DLSSLibrary_IsDLSSRRSupported"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSRRSupported, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsDLSSRRSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsDLSSSupported \ +static_assert(alignof(DLSSLibrary_IsDLSSSupported) == 0x000001, "Wrong alignment on DLSSLibrary_IsDLSSSupported"); \ +static_assert(sizeof(DLSSLibrary_IsDLSSSupported) == 0x000001, "Wrong size on DLSSLibrary_IsDLSSSupported"); \ +static_assert(offsetof(DLSSLibrary_IsDLSSSupported, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsDLSSSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_IsRayTracingAvailable \ +static_assert(alignof(DLSSLibrary_IsRayTracingAvailable) == 0x000001, "Wrong alignment on DLSSLibrary_IsRayTracingAvailable"); \ +static_assert(sizeof(DLSSLibrary_IsRayTracingAvailable) == 0x000001, "Wrong size on DLSSLibrary_IsRayTracingAvailable"); \ +static_assert(offsetof(DLSSLibrary_IsRayTracingAvailable, ReturnValue) == 0x000000, "Member 'DLSSLibrary_IsRayTracingAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_QueryDLSSRRSupport \ +static_assert(alignof(DLSSLibrary_QueryDLSSRRSupport) == 0x000001, "Wrong alignment on DLSSLibrary_QueryDLSSRRSupport"); \ +static_assert(sizeof(DLSSLibrary_QueryDLSSRRSupport) == 0x000001, "Wrong size on DLSSLibrary_QueryDLSSRRSupport"); \ +static_assert(offsetof(DLSSLibrary_QueryDLSSRRSupport, ReturnValue) == 0x000000, "Member 'DLSSLibrary_QueryDLSSRRSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_QueryDLSSSupport \ +static_assert(alignof(DLSSLibrary_QueryDLSSSupport) == 0x000001, "Wrong alignment on DLSSLibrary_QueryDLSSSupport"); \ +static_assert(sizeof(DLSSLibrary_QueryDLSSSupport) == 0x000001, "Wrong size on DLSSLibrary_QueryDLSSSupport"); \ +static_assert(offsetof(DLSSLibrary_QueryDLSSSupport, ReturnValue) == 0x000000, "Member 'DLSSLibrary_QueryDLSSSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_SetDLSSMode \ +static_assert(alignof(DLSSLibrary_SetDLSSMode) == 0x000008, "Wrong alignment on DLSSLibrary_SetDLSSMode"); \ +static_assert(sizeof(DLSSLibrary_SetDLSSMode) == 0x000010, "Wrong size on DLSSLibrary_SetDLSSMode"); \ +static_assert(offsetof(DLSSLibrary_SetDLSSMode, WorldContextObject) == 0x000000, "Member 'DLSSLibrary_SetDLSSMode::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(DLSSLibrary_SetDLSSMode, DLSSMode) == 0x000008, "Member 'DLSSLibrary_SetDLSSMode::DLSSMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DLSSLibrary_SetDLSSSharpness \ +static_assert(alignof(DLSSLibrary_SetDLSSSharpness) == 0x000004, "Wrong alignment on DLSSLibrary_SetDLSSSharpness"); \ +static_assert(sizeof(DLSSLibrary_SetDLSSSharpness) == 0x000004, "Wrong size on DLSSLibrary_SetDLSSSharpness"); \ +static_assert(offsetof(DLSSLibrary_SetDLSSSharpness, Sharpness) == 0x000000, "Member 'DLSSLibrary_SetDLSSSharpness::Sharpness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDLSSLibrary \ +static_assert(alignof(UDLSSLibrary) == 0x000008, "Wrong alignment on UDLSSLibrary"); \ +static_assert(sizeof(UDLSSLibrary) == 0x000028, "Wrong size on UDLSSLibrary"); \ + +#define DUMPER7_ASSERTS_ABP_Enemy_Throwable_Grenade_LongFuse_C \ +static_assert(alignof(ABP_Enemy_Throwable_Grenade_LongFuse_C) == 0x000008, "Wrong alignment on ABP_Enemy_Throwable_Grenade_LongFuse_C"); \ +static_assert(sizeof(ABP_Enemy_Throwable_Grenade_LongFuse_C) == 0x000410, "Wrong size on ABP_Enemy_Throwable_Grenade_LongFuse_C"); \ + +#define DUMPER7_ASSERTS_UStreamlineOverrideSettings \ +static_assert(alignof(UStreamlineOverrideSettings) == 0x000008, "Wrong alignment on UStreamlineOverrideSettings"); \ +static_assert(sizeof(UStreamlineOverrideSettings) == 0x000030, "Wrong size on UStreamlineOverrideSettings"); \ +static_assert(offsetof(UStreamlineOverrideSettings, EnableDLSSFGInPlayInEditorViewportsOverride) == 0x000028, "Member 'UStreamlineOverrideSettings::EnableDLSSFGInPlayInEditorViewportsOverride' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineOverrideSettings, LoadDebugOverlayOverride) == 0x000029, "Member 'UStreamlineOverrideSettings::LoadDebugOverlayOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamlineSettings \ +static_assert(alignof(UStreamlineSettings) == 0x000008, "Wrong alignment on UStreamlineSettings"); \ +static_assert(sizeof(UStreamlineSettings) == 0x000038, "Wrong size on UStreamlineSettings"); \ +static_assert(offsetof(UStreamlineSettings, bEnableStreamlineD3D12) == 0x000028, "Member 'UStreamlineSettings::bEnableStreamlineD3D12' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineSettings, bEnableStreamlineD3D11) == 0x000029, "Member 'UStreamlineSettings::bEnableStreamlineD3D11' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineSettings, bEnableDLSSFGInPlayInEditorViewports) == 0x00002A, "Member 'UStreamlineSettings::bEnableDLSSFGInPlayInEditorViewports' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineSettings, bLoadDebugOverlay) == 0x00002B, "Member 'UStreamlineSettings::bLoadDebugOverlay' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineSettings, bAllowOTAUpdate) == 0x00002C, "Member 'UStreamlineSettings::bAllowOTAUpdate' has a wrong offset!"); \ +static_assert(offsetof(UStreamlineSettings, NVIDIANGXApplicationId) == 0x000030, "Member 'UStreamlineSettings::NVIDIANGXApplicationId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder \ +static_assert(alignof(GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder) == 0x000004, "Wrong alignment on GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder"); \ +static_assert(sizeof(GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder) == 0x000004, "Wrong size on GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder"); \ +static_assert(offsetof(GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_WeaponRelaxedOnSholder_C_ExecuteUbergraph_GA_Patrol_Action_WeaponRelaxedOnSholder::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_WeaponRelaxedOnSholder_C \ +static_assert(alignof(UGA_Patrol_Action_WeaponRelaxedOnSholder_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_WeaponRelaxedOnSholder_C"); \ +static_assert(sizeof(UGA_Patrol_Action_WeaponRelaxedOnSholder_C) == 0x000698, "Wrong size on UGA_Patrol_Action_WeaponRelaxedOnSholder_C"); \ +static_assert(offsetof(UGA_Patrol_Action_WeaponRelaxedOnSholder_C, UberGraphFrame_GA_Patrol_Action_WeaponRelaxedOnSholder_C) == 0x000690, "Member 'UGA_Patrol_Action_WeaponRelaxedOnSholder_C::UberGraphFrame_GA_Patrol_Action_WeaponRelaxedOnSholder_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamlineVersion \ +static_assert(alignof(FStreamlineVersion) == 0x000004, "Wrong alignment on FStreamlineVersion"); \ +static_assert(sizeof(FStreamlineVersion) == 0x00000C, "Wrong size on FStreamlineVersion"); \ +static_assert(offsetof(FStreamlineVersion, Major) == 0x000000, "Member 'FStreamlineVersion::Major' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineVersion, Minor) == 0x000004, "Member 'FStreamlineVersion::Minor' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineVersion, Build) == 0x000008, "Member 'FStreamlineVersion::Build' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStreamlineFeatureRequirements \ +static_assert(alignof(FStreamlineFeatureRequirements) == 0x000004, "Wrong alignment on FStreamlineFeatureRequirements"); \ +static_assert(sizeof(FStreamlineFeatureRequirements) == 0x000034, "Wrong size on FStreamlineFeatureRequirements"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, Support) == 0x000000, "Member 'FStreamlineFeatureRequirements::Support' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, Requirements) == 0x000001, "Member 'FStreamlineFeatureRequirements::Requirements' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, RequiredOperatingSystemVersion) == 0x000004, "Member 'FStreamlineFeatureRequirements::RequiredOperatingSystemVersion' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, DetectedOperatingSystemVersion) == 0x000010, "Member 'FStreamlineFeatureRequirements::DetectedOperatingSystemVersion' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, RequiredDriverVersion) == 0x00001C, "Member 'FStreamlineFeatureRequirements::RequiredDriverVersion' has a wrong offset!"); \ +static_assert(offsetof(FStreamlineFeatureRequirements, DetectedDriverVersion) == 0x000028, "Member 'FStreamlineFeatureRequirements::DetectedDriverVersion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibrary_BreakStreamlineFeatureRequirements \ +static_assert(alignof(StreamlineLibrary_BreakStreamlineFeatureRequirements) == 0x000001, "Wrong alignment on StreamlineLibrary_BreakStreamlineFeatureRequirements"); \ +static_assert(sizeof(StreamlineLibrary_BreakStreamlineFeatureRequirements) == 0x000006, "Wrong size on StreamlineLibrary_BreakStreamlineFeatureRequirements"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, Requirements) == 0x000000, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::Requirements' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, D3D11Supported) == 0x000001, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::D3D11Supported' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, D3D12Supported) == 0x000002, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::D3D12Supported' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, VulkanSupported) == 0x000003, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::VulkanSupported' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, VSyncOffRequired) == 0x000004, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::VSyncOffRequired' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_BreakStreamlineFeatureRequirements, HardwareSchedulingRequired) == 0x000005, "Member 'StreamlineLibrary_BreakStreamlineFeatureRequirements::HardwareSchedulingRequired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibrary_GetStreamlineFeatureInformation \ +static_assert(alignof(StreamlineLibrary_GetStreamlineFeatureInformation) == 0x000004, "Wrong alignment on StreamlineLibrary_GetStreamlineFeatureInformation"); \ +static_assert(sizeof(StreamlineLibrary_GetStreamlineFeatureInformation) == 0x000038, "Wrong size on StreamlineLibrary_GetStreamlineFeatureInformation"); \ +static_assert(offsetof(StreamlineLibrary_GetStreamlineFeatureInformation, Feature) == 0x000000, "Member 'StreamlineLibrary_GetStreamlineFeatureInformation::Feature' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_GetStreamlineFeatureInformation, ReturnValue) == 0x000004, "Member 'StreamlineLibrary_GetStreamlineFeatureInformation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibrary_IsStreamlineFeatureSupported \ +static_assert(alignof(StreamlineLibrary_IsStreamlineFeatureSupported) == 0x000001, "Wrong alignment on StreamlineLibrary_IsStreamlineFeatureSupported"); \ +static_assert(sizeof(StreamlineLibrary_IsStreamlineFeatureSupported) == 0x000002, "Wrong size on StreamlineLibrary_IsStreamlineFeatureSupported"); \ +static_assert(offsetof(StreamlineLibrary_IsStreamlineFeatureSupported, Feature) == 0x000000, "Member 'StreamlineLibrary_IsStreamlineFeatureSupported::Feature' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_IsStreamlineFeatureSupported, ReturnValue) == 0x000001, "Member 'StreamlineLibrary_IsStreamlineFeatureSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibrary_QueryStreamlineFeatureSupport \ +static_assert(alignof(StreamlineLibrary_QueryStreamlineFeatureSupport) == 0x000001, "Wrong alignment on StreamlineLibrary_QueryStreamlineFeatureSupport"); \ +static_assert(sizeof(StreamlineLibrary_QueryStreamlineFeatureSupport) == 0x000002, "Wrong size on StreamlineLibrary_QueryStreamlineFeatureSupport"); \ +static_assert(offsetof(StreamlineLibrary_QueryStreamlineFeatureSupport, Feature) == 0x000000, "Member 'StreamlineLibrary_QueryStreamlineFeatureSupport::Feature' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibrary_QueryStreamlineFeatureSupport, ReturnValue) == 0x000001, "Member 'StreamlineLibrary_QueryStreamlineFeatureSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamlineLibrary \ +static_assert(alignof(UStreamlineLibrary) == 0x000008, "Wrong alignment on UStreamlineLibrary"); \ +static_assert(sizeof(UStreamlineLibrary) == 0x000028, "Wrong size on UStreamlineLibrary"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_GetDefaultDLSSGMode \ +static_assert(alignof(StreamlineLibraryDLSSG_GetDefaultDLSSGMode) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_GetDefaultDLSSGMode"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_GetDefaultDLSSGMode) == 0x000001, "Wrong size on StreamlineLibraryDLSSG_GetDefaultDLSSGMode"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_GetDefaultDLSSGMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDLSSG_GetDefaultDLSSGMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_GetDLSSGFrameTiming \ +static_assert(alignof(StreamlineLibraryDLSSG_GetDLSSGFrameTiming) == 0x000004, "Wrong alignment on StreamlineLibraryDLSSG_GetDLSSGFrameTiming"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_GetDLSSGFrameTiming) == 0x000008, "Wrong size on StreamlineLibraryDLSSG_GetDLSSGFrameTiming"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_GetDLSSGFrameTiming, FrameRateInHertz) == 0x000000, "Member 'StreamlineLibraryDLSSG_GetDLSSGFrameTiming::FrameRateInHertz' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_GetDLSSGFrameTiming, FramesPresented) == 0x000004, "Member 'StreamlineLibraryDLSSG_GetDLSSGFrameTiming::FramesPresented' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_GetDLSSGMode \ +static_assert(alignof(StreamlineLibraryDLSSG_GetDLSSGMode) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_GetDLSSGMode"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_GetDLSSGMode) == 0x000001, "Wrong size on StreamlineLibraryDLSSG_GetDLSSGMode"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_GetDLSSGMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDLSSG_GetDLSSGMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_GetSupportedDLSSGModes \ +static_assert(alignof(StreamlineLibraryDLSSG_GetSupportedDLSSGModes) == 0x000008, "Wrong alignment on StreamlineLibraryDLSSG_GetSupportedDLSSGModes"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_GetSupportedDLSSGModes) == 0x000010, "Wrong size on StreamlineLibraryDLSSG_GetSupportedDLSSGModes"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_GetSupportedDLSSGModes, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDLSSG_GetSupportedDLSSGModes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_IsDLSSGModeSupported \ +static_assert(alignof(StreamlineLibraryDLSSG_IsDLSSGModeSupported) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_IsDLSSGModeSupported"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_IsDLSSGModeSupported) == 0x000002, "Wrong size on StreamlineLibraryDLSSG_IsDLSSGModeSupported"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_IsDLSSGModeSupported, DLSSGMode) == 0x000000, "Member 'StreamlineLibraryDLSSG_IsDLSSGModeSupported::DLSSGMode' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_IsDLSSGModeSupported, ReturnValue) == 0x000001, "Member 'StreamlineLibraryDLSSG_IsDLSSGModeSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_IsDLSSGSupported \ +static_assert(alignof(StreamlineLibraryDLSSG_IsDLSSGSupported) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_IsDLSSGSupported"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_IsDLSSGSupported) == 0x000001, "Wrong size on StreamlineLibraryDLSSG_IsDLSSGSupported"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_IsDLSSGSupported, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDLSSG_IsDLSSGSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_QueryDLSSGSupport \ +static_assert(alignof(StreamlineLibraryDLSSG_QueryDLSSGSupport) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_QueryDLSSGSupport"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_QueryDLSSGSupport) == 0x000001, "Wrong size on StreamlineLibraryDLSSG_QueryDLSSGSupport"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_QueryDLSSGSupport, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDLSSG_QueryDLSSGSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDLSSG_SetDLSSGMode \ +static_assert(alignof(StreamlineLibraryDLSSG_SetDLSSGMode) == 0x000001, "Wrong alignment on StreamlineLibraryDLSSG_SetDLSSGMode"); \ +static_assert(sizeof(StreamlineLibraryDLSSG_SetDLSSGMode) == 0x000001, "Wrong size on StreamlineLibraryDLSSG_SetDLSSGMode"); \ +static_assert(offsetof(StreamlineLibraryDLSSG_SetDLSSGMode, DLSSGMode) == 0x000000, "Member 'StreamlineLibraryDLSSG_SetDLSSGMode::DLSSGMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamlineLibraryDLSSG \ +static_assert(alignof(UStreamlineLibraryDLSSG) == 0x000008, "Wrong alignment on UStreamlineLibraryDLSSG"); \ +static_assert(sizeof(UStreamlineLibraryDLSSG) == 0x000028, "Wrong size on UStreamlineLibraryDLSSG"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetDefaultReflexMode \ +static_assert(alignof(StreamlineLibraryReflex_GetDefaultReflexMode) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_GetDefaultReflexMode"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetDefaultReflexMode) == 0x000001, "Wrong size on StreamlineLibraryReflex_GetDefaultReflexMode"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetDefaultReflexMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetDefaultReflexMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetGameLatencyInMs \ +static_assert(alignof(StreamlineLibraryReflex_GetGameLatencyInMs) == 0x000004, "Wrong alignment on StreamlineLibraryReflex_GetGameLatencyInMs"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetGameLatencyInMs) == 0x000004, "Wrong size on StreamlineLibraryReflex_GetGameLatencyInMs"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetGameLatencyInMs, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetGameLatencyInMs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetGameToRenderLatencyInMs \ +static_assert(alignof(StreamlineLibraryReflex_GetGameToRenderLatencyInMs) == 0x000004, "Wrong alignment on StreamlineLibraryReflex_GetGameToRenderLatencyInMs"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetGameToRenderLatencyInMs) == 0x000004, "Wrong size on StreamlineLibraryReflex_GetGameToRenderLatencyInMs"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetGameToRenderLatencyInMs, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetGameToRenderLatencyInMs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetReflexMode \ +static_assert(alignof(StreamlineLibraryReflex_GetReflexMode) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_GetReflexMode"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetReflexMode) == 0x000001, "Wrong size on StreamlineLibraryReflex_GetReflexMode"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetReflexMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetReflexMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetRenderLatencyInMs \ +static_assert(alignof(StreamlineLibraryReflex_GetRenderLatencyInMs) == 0x000004, "Wrong alignment on StreamlineLibraryReflex_GetRenderLatencyInMs"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetRenderLatencyInMs) == 0x000004, "Wrong size on StreamlineLibraryReflex_GetRenderLatencyInMs"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetRenderLatencyInMs, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetRenderLatencyInMs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_GetSupportedReflexModes \ +static_assert(alignof(StreamlineLibraryReflex_GetSupportedReflexModes) == 0x000008, "Wrong alignment on StreamlineLibraryReflex_GetSupportedReflexModes"); \ +static_assert(sizeof(StreamlineLibraryReflex_GetSupportedReflexModes) == 0x000010, "Wrong size on StreamlineLibraryReflex_GetSupportedReflexModes"); \ +static_assert(offsetof(StreamlineLibraryReflex_GetSupportedReflexModes, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_GetSupportedReflexModes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_IsReflexModeSupported \ +static_assert(alignof(StreamlineLibraryReflex_IsReflexModeSupported) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_IsReflexModeSupported"); \ +static_assert(sizeof(StreamlineLibraryReflex_IsReflexModeSupported) == 0x000002, "Wrong size on StreamlineLibraryReflex_IsReflexModeSupported"); \ +static_assert(offsetof(StreamlineLibraryReflex_IsReflexModeSupported, ReflexMode) == 0x000000, "Member 'StreamlineLibraryReflex_IsReflexModeSupported::ReflexMode' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibraryReflex_IsReflexModeSupported, ReturnValue) == 0x000001, "Member 'StreamlineLibraryReflex_IsReflexModeSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_IsReflexSupported \ +static_assert(alignof(StreamlineLibraryReflex_IsReflexSupported) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_IsReflexSupported"); \ +static_assert(sizeof(StreamlineLibraryReflex_IsReflexSupported) == 0x000001, "Wrong size on StreamlineLibraryReflex_IsReflexSupported"); \ +static_assert(offsetof(StreamlineLibraryReflex_IsReflexSupported, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_IsReflexSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_QueryReflexSupport \ +static_assert(alignof(StreamlineLibraryReflex_QueryReflexSupport) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_QueryReflexSupport"); \ +static_assert(sizeof(StreamlineLibraryReflex_QueryReflexSupport) == 0x000001, "Wrong size on StreamlineLibraryReflex_QueryReflexSupport"); \ +static_assert(offsetof(StreamlineLibraryReflex_QueryReflexSupport, ReturnValue) == 0x000000, "Member 'StreamlineLibraryReflex_QueryReflexSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryReflex_SetReflexMode \ +static_assert(alignof(StreamlineLibraryReflex_SetReflexMode) == 0x000001, "Wrong alignment on StreamlineLibraryReflex_SetReflexMode"); \ +static_assert(sizeof(StreamlineLibraryReflex_SetReflexMode) == 0x000001, "Wrong size on StreamlineLibraryReflex_SetReflexMode"); \ +static_assert(offsetof(StreamlineLibraryReflex_SetReflexMode, Mode) == 0x000000, "Member 'StreamlineLibraryReflex_SetReflexMode::Mode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamlineLibraryReflex \ +static_assert(alignof(UStreamlineLibraryReflex) == 0x000008, "Wrong alignment on UStreamlineLibraryReflex"); \ +static_assert(sizeof(UStreamlineLibraryReflex) == 0x000028, "Wrong size on UStreamlineLibraryReflex"); \ + +#define DUMPER7_ASSERTS_UFFXFSR3Settings \ +static_assert(alignof(UFFXFSR3Settings) == 0x000008, "Wrong alignment on UFFXFSR3Settings"); \ +static_assert(sizeof(UFFXFSR3Settings) == 0x0000D0, "Wrong size on UFFXFSR3Settings"); \ +static_assert(offsetof(UFFXFSR3Settings, bEnabled) == 0x000038, "Member 'UFFXFSR3Settings::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bAutoExposure) == 0x000039, "Member 'UFFXFSR3Settings::bAutoExposure' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bEnabledInEditorViewport) == 0x00003A, "Member 'UFFXFSR3Settings::bEnabledInEditorViewport' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bUseSSRExperimentalDenoiser) == 0x00003B, "Member 'UFFXFSR3Settings::bUseSSRExperimentalDenoiser' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bRHIBackend) == 0x00003C, "Member 'UFFXFSR3Settings::bRHIBackend' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bD3D12Backend) == 0x00003D, "Member 'UFFXFSR3Settings::bD3D12Backend' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bFrameGenEnabled) == 0x00003E, "Member 'UFFXFSR3Settings::bFrameGenEnabled' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bCaptureDebugUI) == 0x00003F, "Member 'UFFXFSR3Settings::bCaptureDebugUI' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bUpdateGlobalFrameTime) == 0x000040, "Member 'UFFXFSR3Settings::bUpdateGlobalFrameTime' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bModifySlateDeltaTime) == 0x000041, "Member 'UFFXFSR3Settings::bModifySlateDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, UIMode) == 0x000044, "Member 'UFFXFSR3Settings::UIMode' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bUseDistortionTexture) == 0x000048, "Member 'UFFXFSR3Settings::bUseDistortionTexture' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bD3D12AsyncInterpolation) == 0x000049, "Member 'UFFXFSR3Settings::bD3D12AsyncInterpolation' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bD3D12AsyncPresent) == 0x00004A, "Member 'UFFXFSR3Settings::bD3D12AsyncPresent' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, PaceMode) == 0x00004C, "Member 'UFFXFSR3Settings::PaceMode' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, QualityMode) == 0x000050, "Member 'UFFXFSR3Settings::QualityMode' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, HistoryFormat) == 0x000054, "Member 'UFFXFSR3Settings::HistoryFormat' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, DeDither) == 0x000058, "Member 'UFFXFSR3Settings::DeDither' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, Sharpness) == 0x00005C, "Member 'UFFXFSR3Settings::Sharpness' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bAdjustMipBias) == 0x000060, "Member 'UFFXFSR3Settings::bAdjustMipBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bForceVertexDeformationOutputsVelocity) == 0x000061, "Member 'UFFXFSR3Settings::bForceVertexDeformationOutputsVelocity' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ForceLandscapeHISMMobility) == 0x000064, "Member 'UFFXFSR3Settings::ForceLandscapeHISMMobility' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, VelocityFactor) == 0x000068, "Member 'UFFXFSR3Settings::VelocityFactor' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bReactiveMask) == 0x00006C, "Member 'UFFXFSR3Settings::bReactiveMask' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReflectionScale) == 0x000070, "Member 'UFFXFSR3Settings::ReflectionScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReflectionLuminanceBias) == 0x000074, "Member 'UFFXFSR3Settings::ReflectionLuminanceBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, RoughnessScale) == 0x000078, "Member 'UFFXFSR3Settings::RoughnessScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, RoughnessBias) == 0x00007C, "Member 'UFFXFSR3Settings::RoughnessBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, RoughnessMaxDistance) == 0x000080, "Member 'UFFXFSR3Settings::RoughnessMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bReactiveMaskRoughnessForceMaxDistance) == 0x000084, "Member 'UFFXFSR3Settings::bReactiveMaskRoughnessForceMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, TranslucencyBias) == 0x000088, "Member 'UFFXFSR3Settings::TranslucencyBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, TranslucencyLuminanceBias) == 0x00008C, "Member 'UFFXFSR3Settings::TranslucencyLuminanceBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, TranslucencyMaxDistance) == 0x000090, "Member 'UFFXFSR3Settings::TranslucencyMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveShadingModelID) == 0x000094, "Member 'UFFXFSR3Settings::ReactiveShadingModelID' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ForceReactiveMaterialValue) == 0x000098, "Member 'UFFXFSR3Settings::ForceReactiveMaterialValue' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveHistoryTranslucencyBias) == 0x00009C, "Member 'UFFXFSR3Settings::ReactiveHistoryTranslucencyBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveHistoryTranslucencyLumaBias) == 0x0000A0, "Member 'UFFXFSR3Settings::ReactiveHistoryTranslucencyLumaBias' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, PreDOFTranslucencyScale) == 0x0000A4, "Member 'UFFXFSR3Settings::PreDOFTranslucencyScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, bPreDOFTranslucencyMax) == 0x0000A8, "Member 'UFFXFSR3Settings::bPreDOFTranslucencyMax' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveMaskDeferredDecalScale) == 0x0000AC, "Member 'UFFXFSR3Settings::ReactiveMaskDeferredDecalScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveHistoryDeferredDecalScale) == 0x0000B0, "Member 'UFFXFSR3Settings::ReactiveHistoryDeferredDecalScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveMaskTAAResponsiveValue) == 0x0000B4, "Member 'UFFXFSR3Settings::ReactiveMaskTAAResponsiveValue' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveHistoryTAAResponsiveValue) == 0x0000B8, "Member 'UFFXFSR3Settings::ReactiveHistoryTAAResponsiveValue' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveMaskCustomStencilScale) == 0x0000BC, "Member 'UFFXFSR3Settings::ReactiveMaskCustomStencilScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, ReactiveHistoryCustomStencilScale) == 0x0000C0, "Member 'UFFXFSR3Settings::ReactiveHistoryCustomStencilScale' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, CustomStencilMask) == 0x0000C4, "Member 'UFFXFSR3Settings::CustomStencilMask' has a wrong offset!"); \ +static_assert(offsetof(UFFXFSR3Settings, CustomStencilShift) == 0x0000C8, "Member 'UFFXFSR3Settings::CustomStencilShift' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_LightningStrikes_Unleash_C \ +static_assert(alignof(UGE_LightningStrikes_Unleash_C) == 0x000008, "Wrong alignment on UGE_LightningStrikes_Unleash_C"); \ +static_assert(sizeof(UGE_LightningStrikes_Unleash_C) == 0x000A70, "Wrong size on UGE_LightningStrikes_Unleash_C"); \ + +#define DUMPER7_ASSERTS_USteamAuthComponentModuleInterface \ +static_assert(alignof(USteamAuthComponentModuleInterface) == 0x000008, "Wrong alignment on USteamAuthComponentModuleInterface"); \ +static_assert(sizeof(USteamAuthComponentModuleInterface) == 0x000028, "Wrong size on USteamAuthComponentModuleInterface"); \ + +#define DUMPER7_ASSERTS_USteamNetConnection \ +static_assert(alignof(USteamNetConnection) == 0x000008, "Wrong alignment on USteamNetConnection"); \ +static_assert(sizeof(USteamNetConnection) == 0x001E90, "Wrong size on USteamNetConnection"); \ +static_assert(offsetof(USteamNetConnection, bIsPassthrough) == 0x001E88, "Member 'USteamNetConnection::bIsPassthrough' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USteamNetDriver \ +static_assert(alignof(USteamNetDriver) == 0x000008, "Wrong alignment on USteamNetDriver"); \ +static_assert(sizeof(USteamNetDriver) == 0x0008A8, "Wrong size on USteamNetDriver"); \ + +#define DUMPER7_ASSERTS_UGA_GhoulHitReact_FistOfCaineUltimate_C \ +static_assert(alignof(UGA_GhoulHitReact_FistOfCaineUltimate_C) == 0x000008, "Wrong alignment on UGA_GhoulHitReact_FistOfCaineUltimate_C"); \ +static_assert(sizeof(UGA_GhoulHitReact_FistOfCaineUltimate_C) == 0x000770, "Wrong size on UGA_GhoulHitReact_FistOfCaineUltimate_C"); \ + +#define DUMPER7_ASSERTS_FCacheData \ +static_assert(alignof(FCacheData) == 0x000008, "Wrong alignment on FCacheData"); \ +static_assert(sizeof(FCacheData) == 0x000058, "Wrong size on FCacheData"); \ +static_assert(offsetof(FCacheData, accountId) == 0x000000, "Member 'FCacheData::accountId' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, sessionToken) == 0x000010, "Member 'FCacheData::sessionToken' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, RefreshToken) == 0x000020, "Member 'FCacheData::RefreshToken' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, viewedLegalDocuments) == 0x000030, "Member 'FCacheData::viewedLegalDocuments' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, telemetryEnabled) == 0x000040, "Member 'FCacheData::telemetryEnabled' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, thirdPartyAutoLoginPromptState) == 0x000044, "Member 'FCacheData::thirdPartyAutoLoginPromptState' has a wrong offset!"); \ +static_assert(offsetof(FCacheData, fallbackPlayerId) == 0x000048, "Member 'FCacheData::fallbackPlayerId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLegalDocument \ +static_assert(alignof(FLegalDocument) == 0x000008, "Wrong alignment on FLegalDocument"); \ +static_assert(sizeof(FLegalDocument) == 0x000060, "Wrong size on FLegalDocument"); \ +static_assert(offsetof(FLegalDocument, Title) == 0x000000, "Member 'FLegalDocument::Title' has a wrong offset!"); \ +static_assert(offsetof(FLegalDocument, Type) == 0x000010, "Member 'FLegalDocument::Type' has a wrong offset!"); \ +static_assert(offsetof(FLegalDocument, Text) == 0x000020, "Member 'FLegalDocument::Text' has a wrong offset!"); \ +static_assert(offsetof(FLegalDocument, Language) == 0x000030, "Member 'FLegalDocument::Language' has a wrong offset!"); \ +static_assert(offsetof(FLegalDocument, URL) == 0x000040, "Member 'FLegalDocument::URL' has a wrong offset!"); \ +static_assert(offsetof(FLegalDocument, restrictedLayoutUrl) == 0x000050, "Member 'FLegalDocument::restrictedLayoutUrl' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPDXContinueGameSaveData \ +static_assert(alignof(FPDXContinueGameSaveData) == 0x000008, "Wrong alignment on FPDXContinueGameSaveData"); \ +static_assert(sizeof(FPDXContinueGameSaveData) == 0x000030, "Wrong size on FPDXContinueGameSaveData"); \ +static_assert(offsetof(FPDXContinueGameSaveData, Title) == 0x000000, "Member 'FPDXContinueGameSaveData::Title' has a wrong offset!"); \ +static_assert(offsetof(FPDXContinueGameSaveData, date) == 0x000010, "Member 'FPDXContinueGameSaveData::date' has a wrong offset!"); \ +static_assert(offsetof(FPDXContinueGameSaveData, saveFileName) == 0x000020, "Member 'FPDXContinueGameSaveData::saveFileName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPDXSettingsData \ +static_assert(alignof(FPDXSettingsData) == 0x000008, "Wrong alignment on FPDXSettingsData"); \ +static_assert(sizeof(FPDXSettingsData) == 0x000018, "Wrong size on FPDXSettingsData"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_Cache_GetData \ +static_assert(alignof(PDXSDKSubsystem_Cache_GetData) == 0x000008, "Wrong alignment on PDXSDKSubsystem_Cache_GetData"); \ +static_assert(sizeof(PDXSDKSubsystem_Cache_GetData) == 0x000058, "Wrong size on PDXSDKSubsystem_Cache_GetData"); \ +static_assert(offsetof(PDXSDKSubsystem_Cache_GetData, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_Cache_GetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_CreateAccount \ +static_assert(alignof(PDXSDKSubsystem_CreateAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_CreateAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_CreateAccount) == 0x000080, "Wrong size on PDXSDKSubsystem_CreateAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_CreateAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_CreateAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, _email) == 0x000020, "Member 'PDXSDKSubsystem_CreateAccount::_email' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, _password) == 0x000030, "Member 'PDXSDKSubsystem_CreateAccount::_password' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, _dateOfBirth) == 0x000040, "Member 'PDXSDKSubsystem_CreateAccount::_dateOfBirth' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, _marketingConsent) == 0x000050, "Member 'PDXSDKSubsystem_CreateAccount::_marketingConsent' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, _region) == 0x000058, "Member 'PDXSDKSubsystem_CreateAccount::_region' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, errorCode_) == 0x000068, "Member 'PDXSDKSubsystem_CreateAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_CreateAccount, errorMessage_) == 0x000070, "Member 'PDXSDKSubsystem_CreateAccount::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetCountries \ +static_assert(alignof(PDXSDKSubsystem_GetCountries) == 0x000008, "Wrong alignment on PDXSDKSubsystem_GetCountries"); \ +static_assert(sizeof(PDXSDKSubsystem_GetCountries) == 0x000010, "Wrong size on PDXSDKSubsystem_GetCountries"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCountries, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_GetCountries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetCustomLegalDocument \ +static_assert(alignof(PDXSDKSubsystem_GetCustomLegalDocument) == 0x000008, "Wrong alignment on PDXSDKSubsystem_GetCustomLegalDocument"); \ +static_assert(sizeof(PDXSDKSubsystem_GetCustomLegalDocument) == 0x0000B8, "Wrong size on PDXSDKSubsystem_GetCustomLegalDocument"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, _title) == 0x000020, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::_title' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, _type) == 0x000030, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::_type' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, errorCode_) == 0x000040, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, errorMessage_) == 0x000048, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::errorMessage_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetCustomLegalDocument, legalDocument_) == 0x000058, "Member 'PDXSDKSubsystem_GetCustomLegalDocument::legalDocument_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetLegalDocument \ +static_assert(alignof(PDXSDKSubsystem_GetLegalDocument) == 0x000008, "Wrong alignment on PDXSDKSubsystem_GetLegalDocument"); \ +static_assert(sizeof(PDXSDKSubsystem_GetLegalDocument) == 0x0000A8, "Wrong size on PDXSDKSubsystem_GetLegalDocument"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_GetLegalDocument::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_GetLegalDocument::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, _title) == 0x000020, "Member 'PDXSDKSubsystem_GetLegalDocument::_title' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, errorCode_) == 0x000030, "Member 'PDXSDKSubsystem_GetLegalDocument::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, errorMessage_) == 0x000038, "Member 'PDXSDKSubsystem_GetLegalDocument::errorMessage_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetLegalDocument, legalDocument_) == 0x000048, "Member 'PDXSDKSubsystem_GetLegalDocument::legalDocument_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState \ +static_assert(alignof(PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState) == 0x000004, "Wrong alignment on PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState"); \ +static_assert(sizeof(PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState) == 0x000004, "Wrong size on PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState"); \ +static_assert(offsetof(PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_GetThirdPartyAutoLoginPromptState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetThirdPartyLinkState \ +static_assert(alignof(PDXSDKSubsystem_GetThirdPartyLinkState) == 0x000008, "Wrong alignment on PDXSDKSubsystem_GetThirdPartyLinkState"); \ +static_assert(sizeof(PDXSDKSubsystem_GetThirdPartyLinkState) == 0x000028, "Wrong size on PDXSDKSubsystem_GetThirdPartyLinkState"); \ +static_assert(offsetof(PDXSDKSubsystem_GetThirdPartyLinkState, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_GetThirdPartyLinkState::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetThirdPartyLinkState, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_GetThirdPartyLinkState::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_GetThirdPartyLinkState, result_) == 0x000020, "Member 'PDXSDKSubsystem_GetThirdPartyLinkState::result_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_IsLoggedIn \ +static_assert(alignof(PDXSDKSubsystem_IsLoggedIn) == 0x000001, "Wrong alignment on PDXSDKSubsystem_IsLoggedIn"); \ +static_assert(sizeof(PDXSDKSubsystem_IsLoggedIn) == 0x000001, "Wrong size on PDXSDKSubsystem_IsLoggedIn"); \ +static_assert(offsetof(PDXSDKSubsystem_IsLoggedIn, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_IsLoggedIn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_IsRunningFromParadoxLauncher \ +static_assert(alignof(PDXSDKSubsystem_IsRunningFromParadoxLauncher) == 0x000001, "Wrong alignment on PDXSDKSubsystem_IsRunningFromParadoxLauncher"); \ +static_assert(sizeof(PDXSDKSubsystem_IsRunningFromParadoxLauncher) == 0x000001, "Wrong size on PDXSDKSubsystem_IsRunningFromParadoxLauncher"); \ +static_assert(offsetof(PDXSDKSubsystem_IsRunningFromParadoxLauncher, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_IsRunningFromParadoxLauncher::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_LinkThirdPartyAccount \ +static_assert(alignof(PDXSDKSubsystem_LinkThirdPartyAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_LinkThirdPartyAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_LinkThirdPartyAccount) == 0x000038, "Wrong size on PDXSDKSubsystem_LinkThirdPartyAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_LinkThirdPartyAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_LinkThirdPartyAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LinkThirdPartyAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_LinkThirdPartyAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LinkThirdPartyAccount, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_LinkThirdPartyAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LinkThirdPartyAccount, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_LinkThirdPartyAccount::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_LoginAccount \ +static_assert(alignof(PDXSDKSubsystem_LoginAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_LoginAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_LoginAccount) == 0x000068, "Wrong size on PDXSDKSubsystem_LoginAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_LoginAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_LoginAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, _email) == 0x000020, "Member 'PDXSDKSubsystem_LoginAccount::_email' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, _password) == 0x000030, "Member 'PDXSDKSubsystem_LoginAccount::_password' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, errorCode_) == 0x000040, "Member 'PDXSDKSubsystem_LoginAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, errorMessage_) == 0x000048, "Member 'PDXSDKSubsystem_LoginAccount::errorMessage_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginAccount, unviewedLegalDocuments_) == 0x000058, "Member 'PDXSDKSubsystem_LoginAccount::unviewedLegalDocuments_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_LoginThirdPartyAccount \ +static_assert(alignof(PDXSDKSubsystem_LoginThirdPartyAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_LoginThirdPartyAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_LoginThirdPartyAccount) == 0x000038, "Wrong size on PDXSDKSubsystem_LoginThirdPartyAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginThirdPartyAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_LoginThirdPartyAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginThirdPartyAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_LoginThirdPartyAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginThirdPartyAccount, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_LoginThirdPartyAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LoginThirdPartyAccount, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_LoginThirdPartyAccount::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_LogoutAccount \ +static_assert(alignof(PDXSDKSubsystem_LogoutAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_LogoutAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_LogoutAccount) == 0x000038, "Wrong size on PDXSDKSubsystem_LogoutAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_LogoutAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_LogoutAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LogoutAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_LogoutAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LogoutAccount, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_LogoutAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_LogoutAccount, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_LogoutAccount::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_SetLegalDocumentAsViewed \ +static_assert(alignof(PDXSDKSubsystem_SetLegalDocumentAsViewed) == 0x000008, "Wrong alignment on PDXSDKSubsystem_SetLegalDocumentAsViewed"); \ +static_assert(sizeof(PDXSDKSubsystem_SetLegalDocumentAsViewed) == 0x000048, "Wrong size on PDXSDKSubsystem_SetLegalDocumentAsViewed"); \ +static_assert(offsetof(PDXSDKSubsystem_SetLegalDocumentAsViewed, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_SetLegalDocumentAsViewed::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_SetLegalDocumentAsViewed, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_SetLegalDocumentAsViewed::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_SetLegalDocumentAsViewed, _title) == 0x000020, "Member 'PDXSDKSubsystem_SetLegalDocumentAsViewed::_title' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_SetLegalDocumentAsViewed, errorCode_) == 0x000030, "Member 'PDXSDKSubsystem_SetLegalDocumentAsViewed::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_SetLegalDocumentAsViewed, errorMessage_) == 0x000038, "Member 'PDXSDKSubsystem_SetLegalDocumentAsViewed::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState \ +static_assert(alignof(PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState) == 0x000004, "Wrong alignment on PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState"); \ +static_assert(sizeof(PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState) == 0x000004, "Wrong size on PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState"); \ +static_assert(offsetof(PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState, NewState) == 0x000000, "Member 'PDXSDKSubsystem_SetThirdPartyAutoLoginPromptState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_ShouldShowPDXLoginScreen \ +static_assert(alignof(PDXSDKSubsystem_ShouldShowPDXLoginScreen) == 0x000001, "Wrong alignment on PDXSDKSubsystem_ShouldShowPDXLoginScreen"); \ +static_assert(sizeof(PDXSDKSubsystem_ShouldShowPDXLoginScreen) == 0x000001, "Wrong size on PDXSDKSubsystem_ShouldShowPDXLoginScreen"); \ +static_assert(offsetof(PDXSDKSubsystem_ShouldShowPDXLoginScreen, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_ShouldShowPDXLoginScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_Shutdown \ +static_assert(alignof(PDXSDKSubsystem_Shutdown) == 0x000008, "Wrong alignment on PDXSDKSubsystem_Shutdown"); \ +static_assert(sizeof(PDXSDKSubsystem_Shutdown) == 0x000038, "Wrong size on PDXSDKSubsystem_Shutdown"); \ +static_assert(offsetof(PDXSDKSubsystem_Shutdown, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_Shutdown::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Shutdown, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_Shutdown::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Shutdown, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_Shutdown::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Shutdown, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_Shutdown::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_Startup \ +static_assert(alignof(PDXSDKSubsystem_Startup) == 0x000008, "Wrong alignment on PDXSDKSubsystem_Startup"); \ +static_assert(sizeof(PDXSDKSubsystem_Startup) == 0x000050, "Wrong size on PDXSDKSubsystem_Startup"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_Startup::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_Startup::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_Startup::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_Startup::errorMessage_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, linkState_) == 0x000038, "Member 'PDXSDKSubsystem_Startup::linkState_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, isLoginSuccess_) == 0x00003C, "Member 'PDXSDKSubsystem_Startup::isLoginSuccess_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_Startup, unviewedLegalDocuments_) == 0x000040, "Member 'PDXSDKSubsystem_Startup::unviewedLegalDocuments_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_UnlinkThirdPartyAccount \ +static_assert(alignof(PDXSDKSubsystem_UnlinkThirdPartyAccount) == 0x000008, "Wrong alignment on PDXSDKSubsystem_UnlinkThirdPartyAccount"); \ +static_assert(sizeof(PDXSDKSubsystem_UnlinkThirdPartyAccount) == 0x000038, "Wrong size on PDXSDKSubsystem_UnlinkThirdPartyAccount"); \ +static_assert(offsetof(PDXSDKSubsystem_UnlinkThirdPartyAccount, pWorldContext) == 0x000000, "Member 'PDXSDKSubsystem_UnlinkThirdPartyAccount::pWorldContext' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_UnlinkThirdPartyAccount, LatentInfo) == 0x000008, "Member 'PDXSDKSubsystem_UnlinkThirdPartyAccount::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_UnlinkThirdPartyAccount, errorCode_) == 0x000020, "Member 'PDXSDKSubsystem_UnlinkThirdPartyAccount::errorCode_' has a wrong offset!"); \ +static_assert(offsetof(PDXSDKSubsystem_UnlinkThirdPartyAccount, errorMessage_) == 0x000028, "Member 'PDXSDKSubsystem_UnlinkThirdPartyAccount::errorMessage_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PDXSDKSubsystem_GetGameSessionElapsedTime \ +static_assert(alignof(PDXSDKSubsystem_GetGameSessionElapsedTime) == 0x000004, "Wrong alignment on PDXSDKSubsystem_GetGameSessionElapsedTime"); \ +static_assert(sizeof(PDXSDKSubsystem_GetGameSessionElapsedTime) == 0x000004, "Wrong size on PDXSDKSubsystem_GetGameSessionElapsedTime"); \ +static_assert(offsetof(PDXSDKSubsystem_GetGameSessionElapsedTime, ReturnValue) == 0x000000, "Member 'PDXSDKSubsystem_GetGameSessionElapsedTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPDXSDKSubsystem \ +static_assert(alignof(UPDXSDKSubsystem) == 0x000008, "Wrong alignment on UPDXSDKSubsystem"); \ +static_assert(sizeof(UPDXSDKSubsystem) == 0x000048, "Wrong size on UPDXSDKSubsystem"); \ +static_assert(offsetof(UPDXSDKSubsystem, bDisplayAutologinPrompt) == 0x000030, "Member 'UPDXSDKSubsystem::bDisplayAutologinPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityUpgradeAcquired_C \ +static_assert(alignof(UActiveAbilityUpgradeAcquired_C) == 0x000010, "Wrong alignment on UActiveAbilityUpgradeAcquired_C"); \ +static_assert(sizeof(UActiveAbilityUpgradeAcquired_C) == 0x0007B0, "Wrong size on UActiveAbilityUpgradeAcquired_C"); \ + +#define DUMPER7_ASSERTS_FOnlineResultInformation \ +static_assert(alignof(FOnlineResultInformation) == 0x000008, "Wrong alignment on FOnlineResultInformation"); \ +static_assert(sizeof(FOnlineResultInformation) == 0x000030, "Wrong size on FOnlineResultInformation"); \ +static_assert(offsetof(FOnlineResultInformation, bWasSuccessful) == 0x000000, "Member 'FOnlineResultInformation::bWasSuccessful' has a wrong offset!"); \ +static_assert(offsetof(FOnlineResultInformation, ErrorId) == 0x000008, "Member 'FOnlineResultInformation::ErrorId' has a wrong offset!"); \ +static_assert(offsetof(FOnlineResultInformation, ErrorText) == 0x000018, "Member 'FOnlineResultInformation::ErrorText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCommonUserInitializeParams \ +static_assert(alignof(FCommonUserInitializeParams) == 0x000004, "Wrong alignment on FCommonUserInitializeParams"); \ +static_assert(sizeof(FCommonUserInitializeParams) == 0x000028, "Wrong size on FCommonUserInitializeParams"); \ +static_assert(offsetof(FCommonUserInitializeParams, LocalPlayerIndex) == 0x000000, "Member 'FCommonUserInitializeParams::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, ControllerId) == 0x000004, "Member 'FCommonUserInitializeParams::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, PrimaryInputDevice) == 0x000008, "Member 'FCommonUserInitializeParams::PrimaryInputDevice' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, PlatformUser) == 0x00000C, "Member 'FCommonUserInitializeParams::PlatformUser' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, RequestedPrivilege) == 0x000010, "Member 'FCommonUserInitializeParams::RequestedPrivilege' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, OnlineContext) == 0x000011, "Member 'FCommonUserInitializeParams::OnlineContext' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, bCanCreateNewLocalPlayer) == 0x000012, "Member 'FCommonUserInitializeParams::bCanCreateNewLocalPlayer' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, bCanUseGuestLogin) == 0x000013, "Member 'FCommonUserInitializeParams::bCanUseGuestLogin' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, bSuppressLoginErrors) == 0x000014, "Member 'FCommonUserInitializeParams::bSuppressLoginErrors' has a wrong offset!"); \ +static_assert(offsetof(FCommonUserInitializeParams, OnUserInitializeComplete) == 0x000018, "Member 'FCommonUserInitializeParams::OnUserInitializeComplete' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncAction_CommonUserInitialize_InitializeForLocalPlay \ +static_assert(alignof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay) == 0x000008, "Wrong alignment on AsyncAction_CommonUserInitialize_InitializeForLocalPlay"); \ +static_assert(sizeof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay) == 0x000020, "Wrong size on AsyncAction_CommonUserInitialize_InitializeForLocalPlay"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay, Target) == 0x000000, "Member 'AsyncAction_CommonUserInitialize_InitializeForLocalPlay::Target' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay, LocalPlayerIndex) == 0x000008, "Member 'AsyncAction_CommonUserInitialize_InitializeForLocalPlay::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay, PrimaryInputDevice) == 0x00000C, "Member 'AsyncAction_CommonUserInitialize_InitializeForLocalPlay::PrimaryInputDevice' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay, bCanUseGuestLogin) == 0x000010, "Member 'AsyncAction_CommonUserInitialize_InitializeForLocalPlay::bCanUseGuestLogin' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_InitializeForLocalPlay, ReturnValue) == 0x000018, "Member 'AsyncAction_CommonUserInitialize_InitializeForLocalPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncAction_CommonUserInitialize_LoginForOnlinePlay \ +static_assert(alignof(AsyncAction_CommonUserInitialize_LoginForOnlinePlay) == 0x000008, "Wrong alignment on AsyncAction_CommonUserInitialize_LoginForOnlinePlay"); \ +static_assert(sizeof(AsyncAction_CommonUserInitialize_LoginForOnlinePlay) == 0x000018, "Wrong size on AsyncAction_CommonUserInitialize_LoginForOnlinePlay"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_LoginForOnlinePlay, Target) == 0x000000, "Member 'AsyncAction_CommonUserInitialize_LoginForOnlinePlay::Target' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_LoginForOnlinePlay, LocalPlayerIndex) == 0x000008, "Member 'AsyncAction_CommonUserInitialize_LoginForOnlinePlay::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_LoginForOnlinePlay, ReturnValue) == 0x000010, "Member 'AsyncAction_CommonUserInitialize_LoginForOnlinePlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AsyncAction_CommonUserInitialize_HandleInitializationComplete \ +static_assert(alignof(AsyncAction_CommonUserInitialize_HandleInitializationComplete) == 0x000008, "Wrong alignment on AsyncAction_CommonUserInitialize_HandleInitializationComplete"); \ +static_assert(sizeof(AsyncAction_CommonUserInitialize_HandleInitializationComplete) == 0x000030, "Wrong size on AsyncAction_CommonUserInitialize_HandleInitializationComplete"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_HandleInitializationComplete, UserInfo) == 0x000000, "Member 'AsyncAction_CommonUserInitialize_HandleInitializationComplete::UserInfo' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_HandleInitializationComplete, bSuccess) == 0x000008, "Member 'AsyncAction_CommonUserInitialize_HandleInitializationComplete::bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_HandleInitializationComplete, Error) == 0x000010, "Member 'AsyncAction_CommonUserInitialize_HandleInitializationComplete::Error' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_HandleInitializationComplete, RequestedPrivilege) == 0x000028, "Member 'AsyncAction_CommonUserInitialize_HandleInitializationComplete::RequestedPrivilege' has a wrong offset!"); \ +static_assert(offsetof(AsyncAction_CommonUserInitialize_HandleInitializationComplete, OnlineContext) == 0x000029, "Member 'AsyncAction_CommonUserInitialize_HandleInitializationComplete::OnlineContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAsyncAction_CommonUserInitialize \ +static_assert(alignof(UAsyncAction_CommonUserInitialize) == 0x000008, "Wrong alignment on UAsyncAction_CommonUserInitialize"); \ +static_assert(sizeof(UAsyncAction_CommonUserInitialize) == 0x000070, "Wrong size on UAsyncAction_CommonUserInitialize"); \ +static_assert(offsetof(UAsyncAction_CommonUserInitialize, OnInitializationComplete) == 0x000030, "Member 'UAsyncAction_CommonUserInitialize::OnInitializationComplete' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonSession_HostSessionRequest \ +static_assert(alignof(UCommonSession_HostSessionRequest) == 0x000008, "Wrong alignment on UCommonSession_HostSessionRequest"); \ +static_assert(sizeof(UCommonSession_HostSessionRequest) == 0x0000A8, "Wrong size on UCommonSession_HostSessionRequest"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, OnlineMode) == 0x000028, "Member 'UCommonSession_HostSessionRequest::OnlineMode' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, bUseLobbies) == 0x000029, "Member 'UCommonSession_HostSessionRequest::bUseLobbies' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, ModeNameForAdvertisement) == 0x000030, "Member 'UCommonSession_HostSessionRequest::ModeNameForAdvertisement' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, MapID) == 0x000040, "Member 'UCommonSession_HostSessionRequest::MapID' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, ExtraArgs) == 0x000050, "Member 'UCommonSession_HostSessionRequest::ExtraArgs' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_HostSessionRequest, MaxPlayerCount) == 0x0000A0, "Member 'UCommonSession_HostSessionRequest::MaxPlayerCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetDescription \ +static_assert(alignof(CommonSession_SearchResult_GetDescription) == 0x000008, "Wrong alignment on CommonSession_SearchResult_GetDescription"); \ +static_assert(sizeof(CommonSession_SearchResult_GetDescription) == 0x000010, "Wrong size on CommonSession_SearchResult_GetDescription"); \ +static_assert(offsetof(CommonSession_SearchResult_GetDescription, ReturnValue) == 0x000000, "Member 'CommonSession_SearchResult_GetDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetIntSetting \ +static_assert(alignof(CommonSession_SearchResult_GetIntSetting) == 0x000004, "Wrong alignment on CommonSession_SearchResult_GetIntSetting"); \ +static_assert(sizeof(CommonSession_SearchResult_GetIntSetting) == 0x000010, "Wrong size on CommonSession_SearchResult_GetIntSetting"); \ +static_assert(offsetof(CommonSession_SearchResult_GetIntSetting, Key) == 0x000000, "Member 'CommonSession_SearchResult_GetIntSetting::Key' has a wrong offset!"); \ +static_assert(offsetof(CommonSession_SearchResult_GetIntSetting, Value) == 0x000008, "Member 'CommonSession_SearchResult_GetIntSetting::Value' has a wrong offset!"); \ +static_assert(offsetof(CommonSession_SearchResult_GetIntSetting, bFoundValue) == 0x00000C, "Member 'CommonSession_SearchResult_GetIntSetting::bFoundValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetMaxPublicConnections \ +static_assert(alignof(CommonSession_SearchResult_GetMaxPublicConnections) == 0x000004, "Wrong alignment on CommonSession_SearchResult_GetMaxPublicConnections"); \ +static_assert(sizeof(CommonSession_SearchResult_GetMaxPublicConnections) == 0x000004, "Wrong size on CommonSession_SearchResult_GetMaxPublicConnections"); \ +static_assert(offsetof(CommonSession_SearchResult_GetMaxPublicConnections, ReturnValue) == 0x000000, "Member 'CommonSession_SearchResult_GetMaxPublicConnections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetNumOpenPrivateConnections \ +static_assert(alignof(CommonSession_SearchResult_GetNumOpenPrivateConnections) == 0x000004, "Wrong alignment on CommonSession_SearchResult_GetNumOpenPrivateConnections"); \ +static_assert(sizeof(CommonSession_SearchResult_GetNumOpenPrivateConnections) == 0x000004, "Wrong size on CommonSession_SearchResult_GetNumOpenPrivateConnections"); \ +static_assert(offsetof(CommonSession_SearchResult_GetNumOpenPrivateConnections, ReturnValue) == 0x000000, "Member 'CommonSession_SearchResult_GetNumOpenPrivateConnections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetNumOpenPublicConnections \ +static_assert(alignof(CommonSession_SearchResult_GetNumOpenPublicConnections) == 0x000004, "Wrong alignment on CommonSession_SearchResult_GetNumOpenPublicConnections"); \ +static_assert(sizeof(CommonSession_SearchResult_GetNumOpenPublicConnections) == 0x000004, "Wrong size on CommonSession_SearchResult_GetNumOpenPublicConnections"); \ +static_assert(offsetof(CommonSession_SearchResult_GetNumOpenPublicConnections, ReturnValue) == 0x000000, "Member 'CommonSession_SearchResult_GetNumOpenPublicConnections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetPingInMs \ +static_assert(alignof(CommonSession_SearchResult_GetPingInMs) == 0x000004, "Wrong alignment on CommonSession_SearchResult_GetPingInMs"); \ +static_assert(sizeof(CommonSession_SearchResult_GetPingInMs) == 0x000004, "Wrong size on CommonSession_SearchResult_GetPingInMs"); \ +static_assert(offsetof(CommonSession_SearchResult_GetPingInMs, ReturnValue) == 0x000000, "Member 'CommonSession_SearchResult_GetPingInMs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSession_SearchResult_GetStringSetting \ +static_assert(alignof(CommonSession_SearchResult_GetStringSetting) == 0x000008, "Wrong alignment on CommonSession_SearchResult_GetStringSetting"); \ +static_assert(sizeof(CommonSession_SearchResult_GetStringSetting) == 0x000020, "Wrong size on CommonSession_SearchResult_GetStringSetting"); \ +static_assert(offsetof(CommonSession_SearchResult_GetStringSetting, Key) == 0x000000, "Member 'CommonSession_SearchResult_GetStringSetting::Key' has a wrong offset!"); \ +static_assert(offsetof(CommonSession_SearchResult_GetStringSetting, Value) == 0x000008, "Member 'CommonSession_SearchResult_GetStringSetting::Value' has a wrong offset!"); \ +static_assert(offsetof(CommonSession_SearchResult_GetStringSetting, bFoundValue) == 0x000018, "Member 'CommonSession_SearchResult_GetStringSetting::bFoundValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonSession_SearchResult \ +static_assert(alignof(UCommonSession_SearchResult) == 0x000008, "Wrong alignment on UCommonSession_SearchResult"); \ +static_assert(sizeof(UCommonSession_SearchResult) == 0x000148, "Wrong size on UCommonSession_SearchResult"); \ + +#define DUMPER7_ASSERTS_UCommonSession_SearchSessionRequest \ +static_assert(alignof(UCommonSession_SearchSessionRequest) == 0x000008, "Wrong alignment on UCommonSession_SearchSessionRequest"); \ +static_assert(sizeof(UCommonSession_SearchSessionRequest) == 0x000068, "Wrong size on UCommonSession_SearchSessionRequest"); \ +static_assert(offsetof(UCommonSession_SearchSessionRequest, OnlineMode) == 0x000028, "Member 'UCommonSession_SearchSessionRequest::OnlineMode' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_SearchSessionRequest, bUseLobbies) == 0x000029, "Member 'UCommonSession_SearchSessionRequest::bUseLobbies' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_SearchSessionRequest, Results) == 0x000030, "Member 'UCommonSession_SearchSessionRequest::Results' has a wrong offset!"); \ +static_assert(offsetof(UCommonSession_SearchSessionRequest, K2_OnSearchFinished) == 0x000058, "Member 'UCommonSession_SearchSessionRequest::K2_OnSearchFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_CreateOnlineHostSessionRequest \ +static_assert(alignof(CommonSessionSubsystem_CreateOnlineHostSessionRequest) == 0x000008, "Wrong alignment on CommonSessionSubsystem_CreateOnlineHostSessionRequest"); \ +static_assert(sizeof(CommonSessionSubsystem_CreateOnlineHostSessionRequest) == 0x000008, "Wrong size on CommonSessionSubsystem_CreateOnlineHostSessionRequest"); \ +static_assert(offsetof(CommonSessionSubsystem_CreateOnlineHostSessionRequest, ReturnValue) == 0x000000, "Member 'CommonSessionSubsystem_CreateOnlineHostSessionRequest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_CreateOnlineSearchSessionRequest \ +static_assert(alignof(CommonSessionSubsystem_CreateOnlineSearchSessionRequest) == 0x000008, "Wrong alignment on CommonSessionSubsystem_CreateOnlineSearchSessionRequest"); \ +static_assert(sizeof(CommonSessionSubsystem_CreateOnlineSearchSessionRequest) == 0x000008, "Wrong size on CommonSessionSubsystem_CreateOnlineSearchSessionRequest"); \ +static_assert(offsetof(CommonSessionSubsystem_CreateOnlineSearchSessionRequest, ReturnValue) == 0x000000, "Member 'CommonSessionSubsystem_CreateOnlineSearchSessionRequest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_FindSessions \ +static_assert(alignof(CommonSessionSubsystem_FindSessions) == 0x000008, "Wrong alignment on CommonSessionSubsystem_FindSessions"); \ +static_assert(sizeof(CommonSessionSubsystem_FindSessions) == 0x000010, "Wrong size on CommonSessionSubsystem_FindSessions"); \ +static_assert(offsetof(CommonSessionSubsystem_FindSessions, SearchingPlayer) == 0x000000, "Member 'CommonSessionSubsystem_FindSessions::SearchingPlayer' has a wrong offset!"); \ +static_assert(offsetof(CommonSessionSubsystem_FindSessions, Request) == 0x000008, "Member 'CommonSessionSubsystem_FindSessions::Request' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_HostSession \ +static_assert(alignof(CommonSessionSubsystem_HostSession) == 0x000008, "Wrong alignment on CommonSessionSubsystem_HostSession"); \ +static_assert(sizeof(CommonSessionSubsystem_HostSession) == 0x000010, "Wrong size on CommonSessionSubsystem_HostSession"); \ +static_assert(offsetof(CommonSessionSubsystem_HostSession, HostingPlayer) == 0x000000, "Member 'CommonSessionSubsystem_HostSession::HostingPlayer' has a wrong offset!"); \ +static_assert(offsetof(CommonSessionSubsystem_HostSession, Request) == 0x000008, "Member 'CommonSessionSubsystem_HostSession::Request' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_JoinSession \ +static_assert(alignof(CommonSessionSubsystem_JoinSession) == 0x000008, "Wrong alignment on CommonSessionSubsystem_JoinSession"); \ +static_assert(sizeof(CommonSessionSubsystem_JoinSession) == 0x000010, "Wrong size on CommonSessionSubsystem_JoinSession"); \ +static_assert(offsetof(CommonSessionSubsystem_JoinSession, JoiningPlayer) == 0x000000, "Member 'CommonSessionSubsystem_JoinSession::JoiningPlayer' has a wrong offset!"); \ +static_assert(offsetof(CommonSessionSubsystem_JoinSession, Request) == 0x000008, "Member 'CommonSessionSubsystem_JoinSession::Request' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonSessionSubsystem_QuickPlaySession \ +static_assert(alignof(CommonSessionSubsystem_QuickPlaySession) == 0x000008, "Wrong alignment on CommonSessionSubsystem_QuickPlaySession"); \ +static_assert(sizeof(CommonSessionSubsystem_QuickPlaySession) == 0x000010, "Wrong size on CommonSessionSubsystem_QuickPlaySession"); \ +static_assert(offsetof(CommonSessionSubsystem_QuickPlaySession, JoiningOrHostingPlayer) == 0x000000, "Member 'CommonSessionSubsystem_QuickPlaySession::JoiningOrHostingPlayer' has a wrong offset!"); \ +static_assert(offsetof(CommonSessionSubsystem_QuickPlaySession, Request) == 0x000008, "Member 'CommonSessionSubsystem_QuickPlaySession::Request' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonSessionSubsystem \ +static_assert(alignof(UCommonSessionSubsystem) == 0x000008, "Wrong alignment on UCommonSessionSubsystem"); \ +static_assert(sizeof(UCommonSessionSubsystem) == 0x0000E0, "Wrong size on UCommonSessionSubsystem"); \ +static_assert(offsetof(UCommonSessionSubsystem, K2_OnUserRequestedSessionEvent) == 0x000048, "Member 'UCommonSessionSubsystem::K2_OnUserRequestedSessionEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonSessionSubsystem, K2_OnJoinSessionCompleteEvent) == 0x000070, "Member 'UCommonSessionSubsystem::K2_OnJoinSessionCompleteEvent' has a wrong offset!"); \ +static_assert(offsetof(UCommonSessionSubsystem, K2_OnCreateSessionCompleteEvent) == 0x000098, "Member 'UCommonSessionSubsystem::K2_OnCreateSessionCompleteEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserInfo_GetCachedPrivilegeResult \ +static_assert(alignof(CommonUserInfo_GetCachedPrivilegeResult) == 0x000001, "Wrong alignment on CommonUserInfo_GetCachedPrivilegeResult"); \ +static_assert(sizeof(CommonUserInfo_GetCachedPrivilegeResult) == 0x000003, "Wrong size on CommonUserInfo_GetCachedPrivilegeResult"); \ +static_assert(offsetof(CommonUserInfo_GetCachedPrivilegeResult, Privilege) == 0x000000, "Member 'CommonUserInfo_GetCachedPrivilegeResult::Privilege' has a wrong offset!"); \ +static_assert(offsetof(CommonUserInfo_GetCachedPrivilegeResult, Context) == 0x000001, "Member 'CommonUserInfo_GetCachedPrivilegeResult::Context' has a wrong offset!"); \ +static_assert(offsetof(CommonUserInfo_GetCachedPrivilegeResult, ReturnValue) == 0x000002, "Member 'CommonUserInfo_GetCachedPrivilegeResult::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserInfo_GetDebugString \ +static_assert(alignof(CommonUserInfo_GetDebugString) == 0x000008, "Wrong alignment on CommonUserInfo_GetDebugString"); \ +static_assert(sizeof(CommonUserInfo_GetDebugString) == 0x000010, "Wrong size on CommonUserInfo_GetDebugString"); \ +static_assert(offsetof(CommonUserInfo_GetDebugString, ReturnValue) == 0x000000, "Member 'CommonUserInfo_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserInfo_GetNetId \ +static_assert(alignof(CommonUserInfo_GetNetId) == 0x000008, "Wrong alignment on CommonUserInfo_GetNetId"); \ +static_assert(sizeof(CommonUserInfo_GetNetId) == 0x000038, "Wrong size on CommonUserInfo_GetNetId"); \ +static_assert(offsetof(CommonUserInfo_GetNetId, Context) == 0x000000, "Member 'CommonUserInfo_GetNetId::Context' has a wrong offset!"); \ +static_assert(offsetof(CommonUserInfo_GetNetId, ReturnValue) == 0x000008, "Member 'CommonUserInfo_GetNetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserInfo_GetNickname \ +static_assert(alignof(CommonUserInfo_GetNickname) == 0x000008, "Wrong alignment on CommonUserInfo_GetNickname"); \ +static_assert(sizeof(CommonUserInfo_GetNickname) == 0x000010, "Wrong size on CommonUserInfo_GetNickname"); \ +static_assert(offsetof(CommonUserInfo_GetNickname, ReturnValue) == 0x000000, "Member 'CommonUserInfo_GetNickname::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserInfo_GetPrivilegeAvailability \ +static_assert(alignof(CommonUserInfo_GetPrivilegeAvailability) == 0x000001, "Wrong alignment on CommonUserInfo_GetPrivilegeAvailability"); \ +static_assert(sizeof(CommonUserInfo_GetPrivilegeAvailability) == 0x000002, "Wrong size on CommonUserInfo_GetPrivilegeAvailability"); \ +static_assert(offsetof(CommonUserInfo_GetPrivilegeAvailability, Privilege) == 0x000000, "Member 'CommonUserInfo_GetPrivilegeAvailability::Privilege' has a wrong offset!"); \ +static_assert(offsetof(CommonUserInfo_GetPrivilegeAvailability, ReturnValue) == 0x000001, "Member 'CommonUserInfo_GetPrivilegeAvailability::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUserInfo \ +static_assert(alignof(UCommonUserInfo) == 0x000008, "Wrong alignment on UCommonUserInfo"); \ +static_assert(sizeof(UCommonUserInfo) == 0x000088, "Wrong size on UCommonUserInfo"); \ +static_assert(offsetof(UCommonUserInfo, PrimaryInputDevice) == 0x000028, "Member 'UCommonUserInfo::PrimaryInputDevice' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserInfo, PlatformUser) == 0x00002C, "Member 'UCommonUserInfo::PlatformUser' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserInfo, LocalPlayerIndex) == 0x000030, "Member 'UCommonUserInfo::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserInfo, bCanBeGuest) == 0x000034, "Member 'UCommonUserInfo::bCanBeGuest' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserInfo, bIsGuest) == 0x000035, "Member 'UCommonUserInfo::bIsGuest' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserInfo, InitializationState) == 0x000036, "Member 'UCommonUserInfo::InitializationState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_CancelUserInitialization \ +static_assert(alignof(CommonUserSubsystem_CancelUserInitialization) == 0x000004, "Wrong alignment on CommonUserSubsystem_CancelUserInitialization"); \ +static_assert(sizeof(CommonUserSubsystem_CancelUserInitialization) == 0x000008, "Wrong size on CommonUserSubsystem_CancelUserInitialization"); \ +static_assert(offsetof(CommonUserSubsystem_CancelUserInitialization, LocalPlayerIndex) == 0x000000, "Member 'CommonUserSubsystem_CancelUserInitialization::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_CancelUserInitialization, ReturnValue) == 0x000004, "Member 'CommonUserSubsystem_CancelUserInitialization::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_ListenForLoginKeyInput \ +static_assert(alignof(CommonUserSubsystem_ListenForLoginKeyInput) == 0x000008, "Wrong alignment on CommonUserSubsystem_ListenForLoginKeyInput"); \ +static_assert(sizeof(CommonUserSubsystem_ListenForLoginKeyInput) == 0x000048, "Wrong size on CommonUserSubsystem_ListenForLoginKeyInput"); \ +static_assert(offsetof(CommonUserSubsystem_ListenForLoginKeyInput, AnyUserKeys) == 0x000000, "Member 'CommonUserSubsystem_ListenForLoginKeyInput::AnyUserKeys' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_ListenForLoginKeyInput, NewUserKeys) == 0x000010, "Member 'CommonUserSubsystem_ListenForLoginKeyInput::NewUserKeys' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_ListenForLoginKeyInput, Params_0) == 0x000020, "Member 'CommonUserSubsystem_ListenForLoginKeyInput::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_SendSystemMessage \ +static_assert(alignof(CommonUserSubsystem_SendSystemMessage) == 0x000008, "Wrong alignment on CommonUserSubsystem_SendSystemMessage"); \ +static_assert(sizeof(CommonUserSubsystem_SendSystemMessage) == 0x000038, "Wrong size on CommonUserSubsystem_SendSystemMessage"); \ +static_assert(offsetof(CommonUserSubsystem_SendSystemMessage, MessageType) == 0x000000, "Member 'CommonUserSubsystem_SendSystemMessage::MessageType' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_SendSystemMessage, TitleText) == 0x000008, "Member 'CommonUserSubsystem_SendSystemMessage::TitleText' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_SendSystemMessage, BodyText) == 0x000020, "Member 'CommonUserSubsystem_SendSystemMessage::BodyText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_SetMaxLocalPlayers \ +static_assert(alignof(CommonUserSubsystem_SetMaxLocalPlayers) == 0x000004, "Wrong alignment on CommonUserSubsystem_SetMaxLocalPlayers"); \ +static_assert(sizeof(CommonUserSubsystem_SetMaxLocalPlayers) == 0x000004, "Wrong size on CommonUserSubsystem_SetMaxLocalPlayers"); \ +static_assert(offsetof(CommonUserSubsystem_SetMaxLocalPlayers, InMaxLocalPLayers) == 0x000000, "Member 'CommonUserSubsystem_SetMaxLocalPlayers::InMaxLocalPLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_TryToInitializeForLocalPlay \ +static_assert(alignof(CommonUserSubsystem_TryToInitializeForLocalPlay) == 0x000004, "Wrong alignment on CommonUserSubsystem_TryToInitializeForLocalPlay"); \ +static_assert(sizeof(CommonUserSubsystem_TryToInitializeForLocalPlay) == 0x00000C, "Wrong size on CommonUserSubsystem_TryToInitializeForLocalPlay"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeForLocalPlay, LocalPlayerIndex) == 0x000000, "Member 'CommonUserSubsystem_TryToInitializeForLocalPlay::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeForLocalPlay, PrimaryInputDevice) == 0x000004, "Member 'CommonUserSubsystem_TryToInitializeForLocalPlay::PrimaryInputDevice' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeForLocalPlay, bCanUseGuestLogin) == 0x000008, "Member 'CommonUserSubsystem_TryToInitializeForLocalPlay::bCanUseGuestLogin' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeForLocalPlay, ReturnValue) == 0x000009, "Member 'CommonUserSubsystem_TryToInitializeForLocalPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_TryToInitializeUser \ +static_assert(alignof(CommonUserSubsystem_TryToInitializeUser) == 0x000004, "Wrong alignment on CommonUserSubsystem_TryToInitializeUser"); \ +static_assert(sizeof(CommonUserSubsystem_TryToInitializeUser) == 0x00002C, "Wrong size on CommonUserSubsystem_TryToInitializeUser"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeUser, Params_0) == 0x000000, "Member 'CommonUserSubsystem_TryToInitializeUser::Params_0' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_TryToInitializeUser, ReturnValue) == 0x000028, "Member 'CommonUserSubsystem_TryToInitializeUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_TryToLoginForOnlinePlay \ +static_assert(alignof(CommonUserSubsystem_TryToLoginForOnlinePlay) == 0x000004, "Wrong alignment on CommonUserSubsystem_TryToLoginForOnlinePlay"); \ +static_assert(sizeof(CommonUserSubsystem_TryToLoginForOnlinePlay) == 0x000008, "Wrong size on CommonUserSubsystem_TryToLoginForOnlinePlay"); \ +static_assert(offsetof(CommonUserSubsystem_TryToLoginForOnlinePlay, LocalPlayerIndex) == 0x000000, "Member 'CommonUserSubsystem_TryToLoginForOnlinePlay::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_TryToLoginForOnlinePlay, ReturnValue) == 0x000004, "Member 'CommonUserSubsystem_TryToLoginForOnlinePlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetLocalPlayerInitializationState \ +static_assert(alignof(CommonUserSubsystem_GetLocalPlayerInitializationState) == 0x000004, "Wrong alignment on CommonUserSubsystem_GetLocalPlayerInitializationState"); \ +static_assert(sizeof(CommonUserSubsystem_GetLocalPlayerInitializationState) == 0x000008, "Wrong size on CommonUserSubsystem_GetLocalPlayerInitializationState"); \ +static_assert(offsetof(CommonUserSubsystem_GetLocalPlayerInitializationState, LocalPlayerIndex) == 0x000000, "Member 'CommonUserSubsystem_GetLocalPlayerInitializationState::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetLocalPlayerInitializationState, ReturnValue) == 0x000004, "Member 'CommonUserSubsystem_GetLocalPlayerInitializationState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetMaxLocalPlayers \ +static_assert(alignof(CommonUserSubsystem_GetMaxLocalPlayers) == 0x000004, "Wrong alignment on CommonUserSubsystem_GetMaxLocalPlayers"); \ +static_assert(sizeof(CommonUserSubsystem_GetMaxLocalPlayers) == 0x000004, "Wrong size on CommonUserSubsystem_GetMaxLocalPlayers"); \ +static_assert(offsetof(CommonUserSubsystem_GetMaxLocalPlayers, ReturnValue) == 0x000000, "Member 'CommonUserSubsystem_GetMaxLocalPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetNumLocalPlayers \ +static_assert(alignof(CommonUserSubsystem_GetNumLocalPlayers) == 0x000004, "Wrong alignment on CommonUserSubsystem_GetNumLocalPlayers"); \ +static_assert(sizeof(CommonUserSubsystem_GetNumLocalPlayers) == 0x000004, "Wrong size on CommonUserSubsystem_GetNumLocalPlayers"); \ +static_assert(offsetof(CommonUserSubsystem_GetNumLocalPlayers, ReturnValue) == 0x000000, "Member 'CommonUserSubsystem_GetNumLocalPlayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForControllerId \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForControllerId) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForControllerId"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForControllerId) == 0x000010, "Wrong size on CommonUserSubsystem_GetUserInfoForControllerId"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForControllerId, ControllerId) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForControllerId::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForControllerId, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_GetUserInfoForControllerId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForInputDevice \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForInputDevice) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForInputDevice"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForInputDevice) == 0x000010, "Wrong size on CommonUserSubsystem_GetUserInfoForInputDevice"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForInputDevice, InputDevice) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForInputDevice::InputDevice' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForInputDevice, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_GetUserInfoForInputDevice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForLocalPlayerIndex \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForLocalPlayerIndex) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForLocalPlayerIndex"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForLocalPlayerIndex) == 0x000010, "Wrong size on CommonUserSubsystem_GetUserInfoForLocalPlayerIndex"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForLocalPlayerIndex, LocalPlayerIndex) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForLocalPlayerIndex::LocalPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForLocalPlayerIndex, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_GetUserInfoForLocalPlayerIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForPlatformUser \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForPlatformUser) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForPlatformUser"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForPlatformUser) == 0x000010, "Wrong size on CommonUserSubsystem_GetUserInfoForPlatformUser"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForPlatformUser, PlatformUser) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForPlatformUser::PlatformUser' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForPlatformUser, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_GetUserInfoForPlatformUser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForPlatformUserIndex \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForPlatformUserIndex) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForPlatformUserIndex"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForPlatformUserIndex) == 0x000010, "Wrong size on CommonUserSubsystem_GetUserInfoForPlatformUserIndex"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForPlatformUserIndex, PlatformUserIndex) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForPlatformUserIndex::PlatformUserIndex' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForPlatformUserIndex, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_GetUserInfoForPlatformUserIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_GetUserInfoForUniqueNetId \ +static_assert(alignof(CommonUserSubsystem_GetUserInfoForUniqueNetId) == 0x000008, "Wrong alignment on CommonUserSubsystem_GetUserInfoForUniqueNetId"); \ +static_assert(sizeof(CommonUserSubsystem_GetUserInfoForUniqueNetId) == 0x000038, "Wrong size on CommonUserSubsystem_GetUserInfoForUniqueNetId"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForUniqueNetId, NetID) == 0x000000, "Member 'CommonUserSubsystem_GetUserInfoForUniqueNetId::NetID' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_GetUserInfoForUniqueNetId, ReturnValue) == 0x000030, "Member 'CommonUserSubsystem_GetUserInfoForUniqueNetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_HasTraitTag \ +static_assert(alignof(CommonUserSubsystem_HasTraitTag) == 0x000004, "Wrong alignment on CommonUserSubsystem_HasTraitTag"); \ +static_assert(sizeof(CommonUserSubsystem_HasTraitTag) == 0x00000C, "Wrong size on CommonUserSubsystem_HasTraitTag"); \ +static_assert(offsetof(CommonUserSubsystem_HasTraitTag, TraitTag) == 0x000000, "Member 'CommonUserSubsystem_HasTraitTag::TraitTag' has a wrong offset!"); \ +static_assert(offsetof(CommonUserSubsystem_HasTraitTag, ReturnValue) == 0x000008, "Member 'CommonUserSubsystem_HasTraitTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CommonUserSubsystem_ShouldWaitForStartInput \ +static_assert(alignof(CommonUserSubsystem_ShouldWaitForStartInput) == 0x000001, "Wrong alignment on CommonUserSubsystem_ShouldWaitForStartInput"); \ +static_assert(sizeof(CommonUserSubsystem_ShouldWaitForStartInput) == 0x000001, "Wrong size on CommonUserSubsystem_ShouldWaitForStartInput"); \ +static_assert(offsetof(CommonUserSubsystem_ShouldWaitForStartInput, ReturnValue) == 0x000000, "Member 'CommonUserSubsystem_ShouldWaitForStartInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonUserSubsystem \ +static_assert(alignof(UCommonUserSubsystem) == 0x000008, "Wrong alignment on UCommonUserSubsystem"); \ +static_assert(sizeof(UCommonUserSubsystem) == 0x000168, "Wrong size on UCommonUserSubsystem"); \ +static_assert(offsetof(UCommonUserSubsystem, OnUserInitializeComplete) == 0x000030, "Member 'UCommonUserSubsystem::OnUserInitializeComplete' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserSubsystem, OnHandleSystemMessage) == 0x000040, "Member 'UCommonUserSubsystem::OnHandleSystemMessage' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserSubsystem, OnUserPrivilegeChanged) == 0x000050, "Member 'UCommonUserSubsystem::OnUserPrivilegeChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserSubsystem, OnUserInputDeviceChanged) == 0x000060, "Member 'UCommonUserSubsystem::OnUserInputDeviceChanged' has a wrong offset!"); \ +static_assert(offsetof(UCommonUserSubsystem, LocalUserInfos) == 0x0000E0, "Member 'UCommonUserSubsystem::LocalUserInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameSettingFilterState \ +static_assert(alignof(FGameSettingFilterState) == 0x000008, "Wrong alignment on FGameSettingFilterState"); \ +static_assert(sizeof(FGameSettingFilterState) == 0x0003B8, "Wrong size on FGameSettingFilterState"); \ +static_assert(offsetof(FGameSettingFilterState, bIncludeDisabled) == 0x000000, "Member 'FGameSettingFilterState::bIncludeDisabled' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingFilterState, bIncludeHidden) == 0x000001, "Member 'FGameSettingFilterState::bIncludeHidden' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingFilterState, bIncludeResetable) == 0x000002, "Member 'FGameSettingFilterState::bIncludeResetable' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingFilterState, bIncludeNestedPages) == 0x000003, "Member 'FGameSettingFilterState::bIncludeNestedPages' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingFilterState, SettingRootList) == 0x000398, "Member 'FGameSettingFilterState::SettingRootList' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingFilterState, SettingAllowList) == 0x0003A8, "Member 'FGameSettingFilterState::SettingAllowList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameSettingClassExtensions \ +static_assert(alignof(FGameSettingClassExtensions) == 0x000008, "Wrong alignment on FGameSettingClassExtensions"); \ +static_assert(sizeof(FGameSettingClassExtensions) == 0x000010, "Wrong size on FGameSettingClassExtensions"); \ +static_assert(offsetof(FGameSettingClassExtensions, Extensions) == 0x000000, "Member 'FGameSettingClassExtensions::Extensions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameSettingNameExtensions \ +static_assert(alignof(FGameSettingNameExtensions) == 0x000008, "Wrong alignment on FGameSettingNameExtensions"); \ +static_assert(sizeof(FGameSettingNameExtensions) == 0x000018, "Wrong size on FGameSettingNameExtensions"); \ +static_assert(offsetof(FGameSettingNameExtensions, bIncludeClassDefaultExtensions) == 0x000000, "Member 'FGameSettingNameExtensions::bIncludeClassDefaultExtensions' has a wrong offset!"); \ +static_assert(offsetof(FGameSettingNameExtensions, Extensions) == 0x000008, "Member 'FGameSettingNameExtensions::Extensions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingPressAnyKey \ +static_assert(alignof(UGameSettingPressAnyKey) == 0x000008, "Wrong alignment on UGameSettingPressAnyKey"); \ +static_assert(sizeof(UGameSettingPressAnyKey) == 0x000458, "Wrong size on UGameSettingPressAnyKey"); \ + +#define DUMPER7_ASSERTS_UKeyAlreadyBoundWarning \ +static_assert(alignof(UKeyAlreadyBoundWarning) == 0x000008, "Wrong alignment on UKeyAlreadyBoundWarning"); \ +static_assert(sizeof(UKeyAlreadyBoundWarning) == 0x000468, "Wrong size on UKeyAlreadyBoundWarning"); \ +static_assert(offsetof(UKeyAlreadyBoundWarning, WarningText) == 0x000458, "Member 'UKeyAlreadyBoundWarning::WarningText' has a wrong offset!"); \ +static_assert(offsetof(UKeyAlreadyBoundWarning, CancelText) == 0x000460, "Member 'UKeyAlreadyBoundWarning::CancelText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetDisplayNameVisibility \ +static_assert(alignof(GameSetting_GetDisplayNameVisibility) == 0x000001, "Wrong alignment on GameSetting_GetDisplayNameVisibility"); \ +static_assert(sizeof(GameSetting_GetDisplayNameVisibility) == 0x000001, "Wrong size on GameSetting_GetDisplayNameVisibility"); \ +static_assert(offsetof(GameSetting_GetDisplayNameVisibility, ReturnValue) == 0x000000, "Member 'GameSetting_GetDisplayNameVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetDescriptionRichText \ +static_assert(alignof(GameSetting_GetDescriptionRichText) == 0x000008, "Wrong alignment on GameSetting_GetDescriptionRichText"); \ +static_assert(sizeof(GameSetting_GetDescriptionRichText) == 0x000018, "Wrong size on GameSetting_GetDescriptionRichText"); \ +static_assert(offsetof(GameSetting_GetDescriptionRichText, ReturnValue) == 0x000000, "Member 'GameSetting_GetDescriptionRichText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetDevName \ +static_assert(alignof(GameSetting_GetDevName) == 0x000004, "Wrong alignment on GameSetting_GetDevName"); \ +static_assert(sizeof(GameSetting_GetDevName) == 0x000008, "Wrong size on GameSetting_GetDevName"); \ +static_assert(offsetof(GameSetting_GetDevName, ReturnValue) == 0x000000, "Member 'GameSetting_GetDevName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetDisplayName \ +static_assert(alignof(GameSetting_GetDisplayName) == 0x000008, "Wrong alignment on GameSetting_GetDisplayName"); \ +static_assert(sizeof(GameSetting_GetDisplayName) == 0x000018, "Wrong size on GameSetting_GetDisplayName"); \ +static_assert(offsetof(GameSetting_GetDisplayName, ReturnValue) == 0x000000, "Member 'GameSetting_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetDynamicDetails \ +static_assert(alignof(GameSetting_GetDynamicDetails) == 0x000008, "Wrong alignment on GameSetting_GetDynamicDetails"); \ +static_assert(sizeof(GameSetting_GetDynamicDetails) == 0x000018, "Wrong size on GameSetting_GetDynamicDetails"); \ +static_assert(offsetof(GameSetting_GetDynamicDetails, ReturnValue) == 0x000000, "Member 'GameSetting_GetDynamicDetails::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetTags \ +static_assert(alignof(GameSetting_GetTags) == 0x000008, "Wrong alignment on GameSetting_GetTags"); \ +static_assert(sizeof(GameSetting_GetTags) == 0x000020, "Wrong size on GameSetting_GetTags"); \ +static_assert(offsetof(GameSetting_GetTags, ReturnValue) == 0x000000, "Member 'GameSetting_GetTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSetting_GetWarningRichText \ +static_assert(alignof(GameSetting_GetWarningRichText) == 0x000008, "Wrong alignment on GameSetting_GetWarningRichText"); \ +static_assert(sizeof(GameSetting_GetWarningRichText) == 0x000018, "Wrong size on GameSetting_GetWarningRichText"); \ +static_assert(offsetof(GameSetting_GetWarningRichText, ReturnValue) == 0x000000, "Member 'GameSetting_GetWarningRichText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSetting \ +static_assert(alignof(UGameSetting) == 0x000008, "Wrong alignment on UGameSetting"); \ +static_assert(sizeof(UGameSetting) == 0x000188, "Wrong size on UGameSetting"); \ +static_assert(offsetof(UGameSetting, LocalPlayer) == 0x000088, "Member 'UGameSetting::LocalPlayer' has a wrong offset!"); \ +static_assert(offsetof(UGameSetting, SettingParent) == 0x000090, "Member 'UGameSetting::SettingParent' has a wrong offset!"); \ +static_assert(offsetof(UGameSetting, OwningRegistry) == 0x000098, "Member 'UGameSetting::OwningRegistry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingAction \ +static_assert(alignof(UGameSettingAction) == 0x000008, "Wrong alignment on UGameSettingAction"); \ +static_assert(sizeof(UGameSettingAction) == 0x0001D8, "Wrong size on UGameSettingAction"); \ + +#define DUMPER7_ASSERTS_UGameSettingCollection \ +static_assert(alignof(UGameSettingCollection) == 0x000008, "Wrong alignment on UGameSettingCollection"); \ +static_assert(sizeof(UGameSettingCollection) == 0x000198, "Wrong size on UGameSettingCollection"); \ +static_assert(offsetof(UGameSettingCollection, Settings) == 0x000188, "Member 'UGameSettingCollection::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingCollectionPage \ +static_assert(alignof(UGameSettingCollectionPage) == 0x000008, "Wrong alignment on UGameSettingCollectionPage"); \ +static_assert(sizeof(UGameSettingCollectionPage) == 0x0001C8, "Wrong size on UGameSettingCollectionPage"); \ + +#define DUMPER7_ASSERTS_UGameSettingValue \ +static_assert(alignof(UGameSettingValue) == 0x000008, "Wrong alignment on UGameSettingValue"); \ +static_assert(sizeof(UGameSettingValue) == 0x000188, "Wrong size on UGameSettingValue"); \ + +#define DUMPER7_ASSERTS_GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex \ +static_assert(alignof(GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex) == 0x000004, "Wrong alignment on GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex"); \ +static_assert(sizeof(GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex) == 0x000004, "Wrong size on GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex"); \ +static_assert(offsetof(GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex, ReturnValue) == 0x000000, "Member 'GameSettingValueDiscrete_GetDiscreteOptionDefaultIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingValueDiscrete_GetDiscreteOptionIndex \ +static_assert(alignof(GameSettingValueDiscrete_GetDiscreteOptionIndex) == 0x000004, "Wrong alignment on GameSettingValueDiscrete_GetDiscreteOptionIndex"); \ +static_assert(sizeof(GameSettingValueDiscrete_GetDiscreteOptionIndex) == 0x000004, "Wrong size on GameSettingValueDiscrete_GetDiscreteOptionIndex"); \ +static_assert(offsetof(GameSettingValueDiscrete_GetDiscreteOptionIndex, ReturnValue) == 0x000000, "Member 'GameSettingValueDiscrete_GetDiscreteOptionIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingValueDiscrete_GetDiscreteOptions \ +static_assert(alignof(GameSettingValueDiscrete_GetDiscreteOptions) == 0x000008, "Wrong alignment on GameSettingValueDiscrete_GetDiscreteOptions"); \ +static_assert(sizeof(GameSettingValueDiscrete_GetDiscreteOptions) == 0x000010, "Wrong size on GameSettingValueDiscrete_GetDiscreteOptions"); \ +static_assert(offsetof(GameSettingValueDiscrete_GetDiscreteOptions, ReturnValue) == 0x000000, "Member 'GameSettingValueDiscrete_GetDiscreteOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscrete \ +static_assert(alignof(UGameSettingValueDiscrete) == 0x000008, "Wrong alignment on UGameSettingValueDiscrete"); \ +static_assert(sizeof(UGameSettingValueDiscrete) == 0x000188, "Wrong size on UGameSettingValueDiscrete"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic \ +static_assert(alignof(UGameSettingValueDiscreteDynamic) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Bool \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Bool) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Bool"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Bool) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic_Bool"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Number \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Number) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Number"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Number) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic_Number"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Enum \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Enum) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Enum"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Enum) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic_Enum"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Color \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Color) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Color"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Color) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic_Color"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Vector2D \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Vector2D) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Vector2D"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Vector2D) == 0x0001F0, "Wrong size on UGameSettingValueDiscreteDynamic_Vector2D"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueScalar \ +static_assert(alignof(UGameSettingValueScalar) == 0x000008, "Wrong alignment on UGameSettingValueScalar"); \ +static_assert(sizeof(UGameSettingValueScalar) == 0x000188, "Wrong size on UGameSettingValueScalar"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueScalarDynamic \ +static_assert(alignof(UGameSettingValueScalarDynamic) == 0x000008, "Wrong alignment on UGameSettingValueScalarDynamic"); \ +static_assert(sizeof(UGameSettingValueScalarDynamic) == 0x000250, "Wrong size on UGameSettingValueScalarDynamic"); \ + +#define DUMPER7_ASSERTS_UGameSettingRegistry \ +static_assert(alignof(UGameSettingRegistry) == 0x000008, "Wrong alignment on UGameSettingRegistry"); \ +static_assert(sizeof(UGameSettingRegistry) == 0x0000B0, "Wrong size on UGameSettingRegistry"); \ +static_assert(offsetof(UGameSettingRegistry, TopLevelSettings) == 0x000088, "Member 'UGameSettingRegistry::TopLevelSettings' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingRegistry, RegisteredSettings) == 0x000098, "Member 'UGameSettingRegistry::RegisteredSettings' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingRegistry, OwningLocalPlayer) == 0x0000A8, "Member 'UGameSettingRegistry::OwningLocalPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingDetailExtension_OnSettingAssigned \ +static_assert(alignof(GameSettingDetailExtension_OnSettingAssigned) == 0x000008, "Wrong alignment on GameSettingDetailExtension_OnSettingAssigned"); \ +static_assert(sizeof(GameSettingDetailExtension_OnSettingAssigned) == 0x000008, "Wrong size on GameSettingDetailExtension_OnSettingAssigned"); \ +static_assert(offsetof(GameSettingDetailExtension_OnSettingAssigned, InSetting) == 0x000000, "Member 'GameSettingDetailExtension_OnSettingAssigned::InSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingDetailExtension_OnSettingValueChanged \ +static_assert(alignof(GameSettingDetailExtension_OnSettingValueChanged) == 0x000008, "Wrong alignment on GameSettingDetailExtension_OnSettingValueChanged"); \ +static_assert(sizeof(GameSettingDetailExtension_OnSettingValueChanged) == 0x000008, "Wrong size on GameSettingDetailExtension_OnSettingValueChanged"); \ +static_assert(offsetof(GameSettingDetailExtension_OnSettingValueChanged, InSetting) == 0x000000, "Member 'GameSettingDetailExtension_OnSettingValueChanged::InSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingDetailExtension \ +static_assert(alignof(UGameSettingDetailExtension) == 0x000008, "Wrong alignment on UGameSettingDetailExtension"); \ +static_assert(sizeof(UGameSettingDetailExtension) == 0x0002C8, "Wrong size on UGameSettingDetailExtension"); \ +static_assert(offsetof(UGameSettingDetailExtension, Setting) == 0x0002C0, "Member 'UGameSettingDetailExtension::Setting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingDetailView \ +static_assert(alignof(UGameSettingDetailView) == 0x000008, "Wrong alignment on UGameSettingDetailView"); \ +static_assert(sizeof(UGameSettingDetailView) == 0x000398, "Wrong size on UGameSettingDetailView"); \ +static_assert(offsetof(UGameSettingDetailView, VisualData) == 0x0002C0, "Member 'UGameSettingDetailView::VisualData' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, ExtensionWidgetPool) == 0x0002C8, "Member 'UGameSettingDetailView::ExtensionWidgetPool' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, CurrentSetting) == 0x000350, "Member 'UGameSettingDetailView::CurrentSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, Text_SettingName) == 0x000368, "Member 'UGameSettingDetailView::Text_SettingName' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, RichText_Description) == 0x000370, "Member 'UGameSettingDetailView::RichText_Description' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, RichText_DynamicDetails) == 0x000378, "Member 'UGameSettingDetailView::RichText_DynamicDetails' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, RichText_WarningDetails) == 0x000380, "Member 'UGameSettingDetailView::RichText_WarningDetails' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, RichText_DisabledDetails) == 0x000388, "Member 'UGameSettingDetailView::RichText_DisabledDetails' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingDetailView, Box_DetailsExtension) == 0x000390, "Member 'UGameSettingDetailView::Box_DetailsExtension' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntryBase_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(GameSettingListEntryBase_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on GameSettingListEntryBase_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(GameSettingListEntryBase_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on GameSettingListEntryBase_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(GameSettingListEntryBase_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'GameSettingListEntryBase_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntryBase \ +static_assert(alignof(UGameSettingListEntryBase) == 0x000008, "Wrong alignment on UGameSettingListEntryBase"); \ +static_assert(sizeof(UGameSettingListEntryBase) == 0x000320, "Wrong size on UGameSettingListEntryBase"); \ +static_assert(offsetof(UGameSettingListEntryBase, Setting) == 0x0002F8, "Member 'UGameSettingListEntryBase::Setting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntryBase, Background) == 0x000318, "Member 'UGameSettingListEntryBase::Background' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntry_Setting \ +static_assert(alignof(UGameSettingListEntry_Setting) == 0x000008, "Wrong alignment on UGameSettingListEntry_Setting"); \ +static_assert(sizeof(UGameSettingListEntry_Setting) == 0x000328, "Wrong size on UGameSettingListEntry_Setting"); \ +static_assert(offsetof(UGameSettingListEntry_Setting, Text_SettingName) == 0x000320, "Member 'UGameSettingListEntry_Setting::Text_SettingName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntrySetting_Discrete \ +static_assert(alignof(UGameSettingListEntrySetting_Discrete) == 0x000008, "Wrong alignment on UGameSettingListEntrySetting_Discrete"); \ +static_assert(sizeof(UGameSettingListEntrySetting_Discrete) == 0x000350, "Wrong size on UGameSettingListEntrySetting_Discrete"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Discrete, DiscreteSetting) == 0x000328, "Member 'UGameSettingListEntrySetting_Discrete::DiscreteSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Discrete, Panel_Value) == 0x000330, "Member 'UGameSettingListEntrySetting_Discrete::Panel_Value' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Discrete, Rotator_SettingValue) == 0x000338, "Member 'UGameSettingListEntrySetting_Discrete::Rotator_SettingValue' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Discrete, Button_Decrease) == 0x000340, "Member 'UGameSettingListEntrySetting_Discrete::Button_Decrease' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Discrete, Button_Increase) == 0x000348, "Member 'UGameSettingListEntrySetting_Discrete::Button_Increase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Scalar_HandleSliderValueChanged \ +static_assert(alignof(GameSettingListEntrySetting_Scalar_HandleSliderValueChanged) == 0x000004, "Wrong alignment on GameSettingListEntrySetting_Scalar_HandleSliderValueChanged"); \ +static_assert(sizeof(GameSettingListEntrySetting_Scalar_HandleSliderValueChanged) == 0x000004, "Wrong size on GameSettingListEntrySetting_Scalar_HandleSliderValueChanged"); \ +static_assert(offsetof(GameSettingListEntrySetting_Scalar_HandleSliderValueChanged, Value) == 0x000000, "Member 'GameSettingListEntrySetting_Scalar_HandleSliderValueChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Scalar_OnDefaultValueChanged \ +static_assert(alignof(GameSettingListEntrySetting_Scalar_OnDefaultValueChanged) == 0x000004, "Wrong alignment on GameSettingListEntrySetting_Scalar_OnDefaultValueChanged"); \ +static_assert(sizeof(GameSettingListEntrySetting_Scalar_OnDefaultValueChanged) == 0x000004, "Wrong size on GameSettingListEntrySetting_Scalar_OnDefaultValueChanged"); \ +static_assert(offsetof(GameSettingListEntrySetting_Scalar_OnDefaultValueChanged, DefaultValue) == 0x000000, "Member 'GameSettingListEntrySetting_Scalar_OnDefaultValueChanged::DefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Scalar_OnValueChanged \ +static_assert(alignof(GameSettingListEntrySetting_Scalar_OnValueChanged) == 0x000004, "Wrong alignment on GameSettingListEntrySetting_Scalar_OnValueChanged"); \ +static_assert(sizeof(GameSettingListEntrySetting_Scalar_OnValueChanged) == 0x000004, "Wrong size on GameSettingListEntrySetting_Scalar_OnValueChanged"); \ +static_assert(offsetof(GameSettingListEntrySetting_Scalar_OnValueChanged, Value) == 0x000000, "Member 'GameSettingListEntrySetting_Scalar_OnValueChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntrySetting_Scalar \ +static_assert(alignof(UGameSettingListEntrySetting_Scalar) == 0x000008, "Wrong alignment on UGameSettingListEntrySetting_Scalar"); \ +static_assert(sizeof(UGameSettingListEntrySetting_Scalar) == 0x000348, "Wrong size on UGameSettingListEntrySetting_Scalar"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Scalar, ScalarSetting) == 0x000328, "Member 'UGameSettingListEntrySetting_Scalar::ScalarSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Scalar, Panel_Value) == 0x000330, "Member 'UGameSettingListEntrySetting_Scalar::Panel_Value' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Scalar, Slider_SettingValue) == 0x000338, "Member 'UGameSettingListEntrySetting_Scalar::Slider_SettingValue' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Scalar, Text_SettingValue) == 0x000340, "Member 'UGameSettingListEntrySetting_Scalar::Text_SettingValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Action_OnSettingAssigned \ +static_assert(alignof(GameSettingListEntrySetting_Action_OnSettingAssigned) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Action_OnSettingAssigned"); \ +static_assert(sizeof(GameSettingListEntrySetting_Action_OnSettingAssigned) == 0x000018, "Wrong size on GameSettingListEntrySetting_Action_OnSettingAssigned"); \ +static_assert(offsetof(GameSettingListEntrySetting_Action_OnSettingAssigned, ActionText) == 0x000000, "Member 'GameSettingListEntrySetting_Action_OnSettingAssigned::ActionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntrySetting_Action \ +static_assert(alignof(UGameSettingListEntrySetting_Action) == 0x000008, "Wrong alignment on UGameSettingListEntrySetting_Action"); \ +static_assert(sizeof(UGameSettingListEntrySetting_Action) == 0x000338, "Wrong size on UGameSettingListEntrySetting_Action"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Action, ActionSetting) == 0x000328, "Member 'UGameSettingListEntrySetting_Action::ActionSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Action, Button_Action) == 0x000330, "Member 'UGameSettingListEntrySetting_Action::Button_Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Navigation_OnSettingAssigned \ +static_assert(alignof(GameSettingListEntrySetting_Navigation_OnSettingAssigned) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Navigation_OnSettingAssigned"); \ +static_assert(sizeof(GameSettingListEntrySetting_Navigation_OnSettingAssigned) == 0x000018, "Wrong size on GameSettingListEntrySetting_Navigation_OnSettingAssigned"); \ +static_assert(offsetof(GameSettingListEntrySetting_Navigation_OnSettingAssigned, ActionText) == 0x000000, "Member 'GameSettingListEntrySetting_Navigation_OnSettingAssigned::ActionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntrySetting_Navigation \ +static_assert(alignof(UGameSettingListEntrySetting_Navigation) == 0x000008, "Wrong alignment on UGameSettingListEntrySetting_Navigation"); \ +static_assert(sizeof(UGameSettingListEntrySetting_Navigation) == 0x000338, "Wrong size on UGameSettingListEntrySetting_Navigation"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Navigation, CollectionSetting) == 0x000328, "Member 'UGameSettingListEntrySetting_Navigation::CollectionSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Navigation, Button_Navigate) == 0x000330, "Member 'UGameSettingListEntrySetting_Navigation::Button_Navigate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListView_GetSelectedItemWidget \ +static_assert(alignof(GameSettingListView_GetSelectedItemWidget) == 0x000008, "Wrong alignment on GameSettingListView_GetSelectedItemWidget"); \ +static_assert(sizeof(GameSettingListView_GetSelectedItemWidget) == 0x000008, "Wrong size on GameSettingListView_GetSelectedItemWidget"); \ +static_assert(offsetof(GameSettingListView_GetSelectedItemWidget, ReturnValue) == 0x000000, "Member 'GameSettingListView_GetSelectedItemWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListView \ +static_assert(alignof(UGameSettingListView) == 0x000010, "Wrong alignment on UGameSettingListView"); \ +static_assert(sizeof(UGameSettingListView) == 0x000CD0, "Wrong size on UGameSettingListView"); \ +static_assert(offsetof(UGameSettingListView, VisualData) == 0x000C70, "Member 'UGameSettingListView::VisualData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingPanel \ +static_assert(alignof(UGameSettingPanel) == 0x000008, "Wrong alignment on UGameSettingPanel"); \ +static_assert(sizeof(UGameSettingPanel) == 0x000740, "Wrong size on UGameSettingPanel"); \ +static_assert(offsetof(UGameSettingPanel, Registry) == 0x000318, "Member 'UGameSettingPanel::Registry' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, VisibleSettings) == 0x000320, "Member 'UGameSettingPanel::VisibleSettings' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, LastHoveredOrSelectedSetting) == 0x000330, "Member 'UGameSettingPanel::LastHoveredOrSelectedSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, FilterState) == 0x000338, "Member 'UGameSettingPanel::FilterState' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, FilterNavigationStack) == 0x0006F0, "Member 'UGameSettingPanel::FilterNavigationStack' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, ListView_Settings) == 0x000710, "Member 'UGameSettingPanel::ListView_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, Details_Settings) == 0x000718, "Member 'UGameSettingPanel::Details_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingPanel, BP_OnExecuteNamedAction) == 0x000720, "Member 'UGameSettingPanel::BP_OnExecuteNamedAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_AttemptToPopNavigation \ +static_assert(alignof(GameSettingScreen_AttemptToPopNavigation) == 0x000001, "Wrong alignment on GameSettingScreen_AttemptToPopNavigation"); \ +static_assert(sizeof(GameSettingScreen_AttemptToPopNavigation) == 0x000001, "Wrong size on GameSettingScreen_AttemptToPopNavigation"); \ +static_assert(offsetof(GameSettingScreen_AttemptToPopNavigation, ReturnValue) == 0x000000, "Member 'GameSettingScreen_AttemptToPopNavigation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_GetSettingCollection \ +static_assert(alignof(GameSettingScreen_GetSettingCollection) == 0x000008, "Wrong alignment on GameSettingScreen_GetSettingCollection"); \ +static_assert(sizeof(GameSettingScreen_GetSettingCollection) == 0x000018, "Wrong size on GameSettingScreen_GetSettingCollection"); \ +static_assert(offsetof(GameSettingScreen_GetSettingCollection, SettingDevName) == 0x000000, "Member 'GameSettingScreen_GetSettingCollection::SettingDevName' has a wrong offset!"); \ +static_assert(offsetof(GameSettingScreen_GetSettingCollection, HasAnySettings) == 0x000008, "Member 'GameSettingScreen_GetSettingCollection::HasAnySettings' has a wrong offset!"); \ +static_assert(offsetof(GameSettingScreen_GetSettingCollection, ReturnValue) == 0x000010, "Member 'GameSettingScreen_GetSettingCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_NavigateToSetting \ +static_assert(alignof(GameSettingScreen_NavigateToSetting) == 0x000004, "Wrong alignment on GameSettingScreen_NavigateToSetting"); \ +static_assert(sizeof(GameSettingScreen_NavigateToSetting) == 0x000008, "Wrong size on GameSettingScreen_NavigateToSetting"); \ +static_assert(offsetof(GameSettingScreen_NavigateToSetting, SettingDevName) == 0x000000, "Member 'GameSettingScreen_NavigateToSetting::SettingDevName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_NavigateToSettings \ +static_assert(alignof(GameSettingScreen_NavigateToSettings) == 0x000008, "Wrong alignment on GameSettingScreen_NavigateToSettings"); \ +static_assert(sizeof(GameSettingScreen_NavigateToSettings) == 0x000010, "Wrong size on GameSettingScreen_NavigateToSettings"); \ +static_assert(offsetof(GameSettingScreen_NavigateToSettings, SettingDevNames) == 0x000000, "Member 'GameSettingScreen_NavigateToSettings::SettingDevNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_OnSettingsDirtyStateChanged \ +static_assert(alignof(GameSettingScreen_OnSettingsDirtyStateChanged) == 0x000001, "Wrong alignment on GameSettingScreen_OnSettingsDirtyStateChanged"); \ +static_assert(sizeof(GameSettingScreen_OnSettingsDirtyStateChanged) == 0x000001, "Wrong size on GameSettingScreen_OnSettingsDirtyStateChanged"); \ +static_assert(offsetof(GameSettingScreen_OnSettingsDirtyStateChanged, bSettingsDirty) == 0x000000, "Member 'GameSettingScreen_OnSettingsDirtyStateChanged::bSettingsDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingScreen_HaveSettingsBeenChanged \ +static_assert(alignof(GameSettingScreen_HaveSettingsBeenChanged) == 0x000001, "Wrong alignment on GameSettingScreen_HaveSettingsBeenChanged"); \ +static_assert(sizeof(GameSettingScreen_HaveSettingsBeenChanged) == 0x000001, "Wrong size on GameSettingScreen_HaveSettingsBeenChanged"); \ +static_assert(offsetof(GameSettingScreen_HaveSettingsBeenChanged, ReturnValue) == 0x000000, "Member 'GameSettingScreen_HaveSettingsBeenChanged::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingScreen \ +static_assert(alignof(UGameSettingScreen) == 0x000008, "Wrong alignment on UGameSettingScreen"); \ +static_assert(sizeof(UGameSettingScreen) == 0x000480, "Wrong size on UGameSettingScreen"); \ +static_assert(offsetof(UGameSettingScreen, Registry) == 0x000470, "Member 'UGameSettingScreen::Registry' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingScreen, Settings_Panel) == 0x000478, "Member 'UGameSettingScreen::Settings_Panel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingVisualData \ +static_assert(alignof(UGameSettingVisualData) == 0x000008, "Wrong alignment on UGameSettingVisualData"); \ +static_assert(sizeof(UGameSettingVisualData) == 0x000170, "Wrong size on UGameSettingVisualData"); \ +static_assert(offsetof(UGameSettingVisualData, EntryWidgetForClass) == 0x000030, "Member 'UGameSettingVisualData::EntryWidgetForClass' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingVisualData, EntryWidgetForName) == 0x000080, "Member 'UGameSettingVisualData::EntryWidgetForName' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingVisualData, ExtensionsForClasses) == 0x0000D0, "Member 'UGameSettingVisualData::ExtensionsForClasses' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingVisualData, ExtensionsForName) == 0x000120, "Member 'UGameSettingVisualData::ExtensionsForName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingActionInterface_ExecuteActionForSetting \ +static_assert(alignof(GameSettingActionInterface_ExecuteActionForSetting) == 0x000008, "Wrong alignment on GameSettingActionInterface_ExecuteActionForSetting"); \ +static_assert(sizeof(GameSettingActionInterface_ExecuteActionForSetting) == 0x000018, "Wrong size on GameSettingActionInterface_ExecuteActionForSetting"); \ +static_assert(offsetof(GameSettingActionInterface_ExecuteActionForSetting, ActionTag) == 0x000000, "Member 'GameSettingActionInterface_ExecuteActionForSetting::ActionTag' has a wrong offset!"); \ +static_assert(offsetof(GameSettingActionInterface_ExecuteActionForSetting, InSetting) == 0x000008, "Member 'GameSettingActionInterface_ExecuteActionForSetting::InSetting' has a wrong offset!"); \ +static_assert(offsetof(GameSettingActionInterface_ExecuteActionForSetting, ReturnValue) == 0x000010, "Member 'GameSettingActionInterface_ExecuteActionForSetting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGameSettingActionInterface \ +static_assert(alignof(IGameSettingActionInterface) == 0x000001, "Wrong alignment on IGameSettingActionInterface"); \ +static_assert(sizeof(IGameSettingActionInterface) == 0x000001, "Wrong size on IGameSettingActionInterface"); \ + +#define DUMPER7_ASSERTS_GameSettingRotator_BP_OnDefaultOptionSpecified \ +static_assert(alignof(GameSettingRotator_BP_OnDefaultOptionSpecified) == 0x000004, "Wrong alignment on GameSettingRotator_BP_OnDefaultOptionSpecified"); \ +static_assert(sizeof(GameSettingRotator_BP_OnDefaultOptionSpecified) == 0x000004, "Wrong size on GameSettingRotator_BP_OnDefaultOptionSpecified"); \ +static_assert(offsetof(GameSettingRotator_BP_OnDefaultOptionSpecified, DefaultOptionIndex) == 0x000000, "Member 'GameSettingRotator_BP_OnDefaultOptionSpecified::DefaultOptionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingRotator \ +static_assert(alignof(UGameSettingRotator) == 0x000010, "Wrong alignment on UGameSettingRotator"); \ +static_assert(sizeof(UGameSettingRotator) == 0x0015E0, "Wrong size on UGameSettingRotator"); \ + +#define DUMPER7_ASSERTS_GameResponsivePanel_AddChildToGameResponsivePanel \ +static_assert(alignof(GameResponsivePanel_AddChildToGameResponsivePanel) == 0x000008, "Wrong alignment on GameResponsivePanel_AddChildToGameResponsivePanel"); \ +static_assert(sizeof(GameResponsivePanel_AddChildToGameResponsivePanel) == 0x000010, "Wrong size on GameResponsivePanel_AddChildToGameResponsivePanel"); \ +static_assert(offsetof(GameResponsivePanel_AddChildToGameResponsivePanel, Content) == 0x000000, "Member 'GameResponsivePanel_AddChildToGameResponsivePanel::Content' has a wrong offset!"); \ +static_assert(offsetof(GameResponsivePanel_AddChildToGameResponsivePanel, ReturnValue) == 0x000008, "Member 'GameResponsivePanel_AddChildToGameResponsivePanel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameResponsivePanel \ +static_assert(alignof(UGameResponsivePanel) == 0x000008, "Wrong alignment on UGameResponsivePanel"); \ +static_assert(sizeof(UGameResponsivePanel) == 0x0001B0, "Wrong size on UGameResponsivePanel"); \ +static_assert(offsetof(UGameResponsivePanel, bCanStackVertically) == 0x000198, "Member 'UGameResponsivePanel::bCanStackVertically' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameResponsivePanelSlot \ +static_assert(alignof(UGameResponsivePanelSlot) == 0x000008, "Wrong alignment on UGameResponsivePanelSlot"); \ +static_assert(sizeof(UGameResponsivePanelSlot) == 0x000040, "Wrong size on UGameResponsivePanelSlot"); \ + +#define DUMPER7_ASSERTS_ANS_TokenWindowController_C_Received_NotifyBegin \ +static_assert(alignof(ANS_TokenWindowController_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on ANS_TokenWindowController_C_Received_NotifyBegin"); \ +static_assert(sizeof(ANS_TokenWindowController_C_Received_NotifyBegin) == 0x000050, "Wrong size on ANS_TokenWindowController_C_Received_NotifyBegin"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'ANS_TokenWindowController_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'ANS_TokenWindowController_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'ANS_TokenWindowController_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'ANS_TokenWindowController_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'ANS_TokenWindowController_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ANS_TokenWindowController_C_Received_NotifyEnd \ +static_assert(alignof(ANS_TokenWindowController_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on ANS_TokenWindowController_C_Received_NotifyEnd"); \ +static_assert(sizeof(ANS_TokenWindowController_C_Received_NotifyEnd) == 0x000048, "Wrong size on ANS_TokenWindowController_C_Received_NotifyEnd"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'ANS_TokenWindowController_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'ANS_TokenWindowController_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'ANS_TokenWindowController_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(ANS_TokenWindowController_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'ANS_TokenWindowController_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UANS_TokenWindowController_C \ +static_assert(alignof(UANS_TokenWindowController_C) == 0x000008, "Wrong alignment on UANS_TokenWindowController_C"); \ +static_assert(sizeof(UANS_TokenWindowController_C) == 0x000038, "Wrong size on UANS_TokenWindowController_C"); \ +static_assert(offsetof(UANS_TokenWindowController_C, DurationCooldown) == 0x000030, "Member 'UANS_TokenWindowController_C::DurationCooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USignificanceManager \ +static_assert(alignof(USignificanceManager) == 0x000008, "Wrong alignment on USignificanceManager"); \ +static_assert(sizeof(USignificanceManager) == 0x000140, "Wrong size on USignificanceManager"); \ +static_assert(offsetof(USignificanceManager, SignificanceManagerClassName) == 0x000120, "Member 'USignificanceManager::SignificanceManagerClassName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetAngularOffset \ +static_assert(alignof(RadialSlider_SetAngularOffset) == 0x000004, "Wrong alignment on RadialSlider_SetAngularOffset"); \ +static_assert(sizeof(RadialSlider_SetAngularOffset) == 0x000004, "Wrong size on RadialSlider_SetAngularOffset"); \ +static_assert(offsetof(RadialSlider_SetAngularOffset, InValue) == 0x000000, "Member 'RadialSlider_SetAngularOffset::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetCenterBackgroundColor \ +static_assert(alignof(RadialSlider_SetCenterBackgroundColor) == 0x000004, "Wrong alignment on RadialSlider_SetCenterBackgroundColor"); \ +static_assert(sizeof(RadialSlider_SetCenterBackgroundColor) == 0x000010, "Wrong size on RadialSlider_SetCenterBackgroundColor"); \ +static_assert(offsetof(RadialSlider_SetCenterBackgroundColor, InValue) == 0x000000, "Member 'RadialSlider_SetCenterBackgroundColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetCustomDefaultValue \ +static_assert(alignof(RadialSlider_SetCustomDefaultValue) == 0x000004, "Wrong alignment on RadialSlider_SetCustomDefaultValue"); \ +static_assert(sizeof(RadialSlider_SetCustomDefaultValue) == 0x000004, "Wrong size on RadialSlider_SetCustomDefaultValue"); \ +static_assert(offsetof(RadialSlider_SetCustomDefaultValue, InValue) == 0x000000, "Member 'RadialSlider_SetCustomDefaultValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetHandStartEndRatio \ +static_assert(alignof(RadialSlider_SetHandStartEndRatio) == 0x000008, "Wrong alignment on RadialSlider_SetHandStartEndRatio"); \ +static_assert(sizeof(RadialSlider_SetHandStartEndRatio) == 0x000010, "Wrong size on RadialSlider_SetHandStartEndRatio"); \ +static_assert(offsetof(RadialSlider_SetHandStartEndRatio, InValue) == 0x000000, "Member 'RadialSlider_SetHandStartEndRatio::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetLocked \ +static_assert(alignof(RadialSlider_SetLocked) == 0x000001, "Wrong alignment on RadialSlider_SetLocked"); \ +static_assert(sizeof(RadialSlider_SetLocked) == 0x000001, "Wrong size on RadialSlider_SetLocked"); \ +static_assert(offsetof(RadialSlider_SetLocked, InValue) == 0x000000, "Member 'RadialSlider_SetLocked::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetShowSliderHand \ +static_assert(alignof(RadialSlider_SetShowSliderHand) == 0x000001, "Wrong alignment on RadialSlider_SetShowSliderHand"); \ +static_assert(sizeof(RadialSlider_SetShowSliderHand) == 0x000001, "Wrong size on RadialSlider_SetShowSliderHand"); \ +static_assert(offsetof(RadialSlider_SetShowSliderHand, InShowSliderHand) == 0x000000, "Member 'RadialSlider_SetShowSliderHand::InShowSliderHand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetShowSliderHandle \ +static_assert(alignof(RadialSlider_SetShowSliderHandle) == 0x000001, "Wrong alignment on RadialSlider_SetShowSliderHandle"); \ +static_assert(sizeof(RadialSlider_SetShowSliderHandle) == 0x000001, "Wrong size on RadialSlider_SetShowSliderHandle"); \ +static_assert(offsetof(RadialSlider_SetShowSliderHandle, InShowSliderHandle) == 0x000000, "Member 'RadialSlider_SetShowSliderHandle::InShowSliderHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderBarColor \ +static_assert(alignof(RadialSlider_SetSliderBarColor) == 0x000004, "Wrong alignment on RadialSlider_SetSliderBarColor"); \ +static_assert(sizeof(RadialSlider_SetSliderBarColor) == 0x000010, "Wrong size on RadialSlider_SetSliderBarColor"); \ +static_assert(offsetof(RadialSlider_SetSliderBarColor, InValue) == 0x000000, "Member 'RadialSlider_SetSliderBarColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderHandleColor \ +static_assert(alignof(RadialSlider_SetSliderHandleColor) == 0x000004, "Wrong alignment on RadialSlider_SetSliderHandleColor"); \ +static_assert(sizeof(RadialSlider_SetSliderHandleColor) == 0x000010, "Wrong size on RadialSlider_SetSliderHandleColor"); \ +static_assert(offsetof(RadialSlider_SetSliderHandleColor, InValue) == 0x000000, "Member 'RadialSlider_SetSliderHandleColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderHandleEndAngle \ +static_assert(alignof(RadialSlider_SetSliderHandleEndAngle) == 0x000004, "Wrong alignment on RadialSlider_SetSliderHandleEndAngle"); \ +static_assert(sizeof(RadialSlider_SetSliderHandleEndAngle) == 0x000004, "Wrong size on RadialSlider_SetSliderHandleEndAngle"); \ +static_assert(offsetof(RadialSlider_SetSliderHandleEndAngle, InValue) == 0x000000, "Member 'RadialSlider_SetSliderHandleEndAngle::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderHandleStartAngle \ +static_assert(alignof(RadialSlider_SetSliderHandleStartAngle) == 0x000004, "Wrong alignment on RadialSlider_SetSliderHandleStartAngle"); \ +static_assert(sizeof(RadialSlider_SetSliderHandleStartAngle) == 0x000004, "Wrong size on RadialSlider_SetSliderHandleStartAngle"); \ +static_assert(offsetof(RadialSlider_SetSliderHandleStartAngle, InValue) == 0x000000, "Member 'RadialSlider_SetSliderHandleStartAngle::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderProgressColor \ +static_assert(alignof(RadialSlider_SetSliderProgressColor) == 0x000004, "Wrong alignment on RadialSlider_SetSliderProgressColor"); \ +static_assert(sizeof(RadialSlider_SetSliderProgressColor) == 0x000010, "Wrong size on RadialSlider_SetSliderProgressColor"); \ +static_assert(offsetof(RadialSlider_SetSliderProgressColor, InValue) == 0x000000, "Member 'RadialSlider_SetSliderProgressColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetSliderRange \ +static_assert(alignof(RadialSlider_SetSliderRange) == 0x000008, "Wrong alignment on RadialSlider_SetSliderRange"); \ +static_assert(sizeof(RadialSlider_SetSliderRange) == 0x000088, "Wrong size on RadialSlider_SetSliderRange"); \ +static_assert(offsetof(RadialSlider_SetSliderRange, InSliderRange) == 0x000000, "Member 'RadialSlider_SetSliderRange::InSliderRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetStepSize \ +static_assert(alignof(RadialSlider_SetStepSize) == 0x000004, "Wrong alignment on RadialSlider_SetStepSize"); \ +static_assert(sizeof(RadialSlider_SetStepSize) == 0x000004, "Wrong size on RadialSlider_SetStepSize"); \ +static_assert(offsetof(RadialSlider_SetStepSize, InValue) == 0x000000, "Member 'RadialSlider_SetStepSize::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetUseVerticalDrag \ +static_assert(alignof(RadialSlider_SetUseVerticalDrag) == 0x000001, "Wrong alignment on RadialSlider_SetUseVerticalDrag"); \ +static_assert(sizeof(RadialSlider_SetUseVerticalDrag) == 0x000001, "Wrong size on RadialSlider_SetUseVerticalDrag"); \ +static_assert(offsetof(RadialSlider_SetUseVerticalDrag, InUseVerticalDrag) == 0x000000, "Member 'RadialSlider_SetUseVerticalDrag::InUseVerticalDrag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetValue \ +static_assert(alignof(RadialSlider_SetValue) == 0x000004, "Wrong alignment on RadialSlider_SetValue"); \ +static_assert(sizeof(RadialSlider_SetValue) == 0x000004, "Wrong size on RadialSlider_SetValue"); \ +static_assert(offsetof(RadialSlider_SetValue, InValue) == 0x000000, "Member 'RadialSlider_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_SetValueTags \ +static_assert(alignof(RadialSlider_SetValueTags) == 0x000008, "Wrong alignment on RadialSlider_SetValueTags"); \ +static_assert(sizeof(RadialSlider_SetValueTags) == 0x000010, "Wrong size on RadialSlider_SetValueTags"); \ +static_assert(offsetof(RadialSlider_SetValueTags, InValueTags) == 0x000000, "Member 'RadialSlider_SetValueTags::InValueTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_GetCustomDefaultValue \ +static_assert(alignof(RadialSlider_GetCustomDefaultValue) == 0x000004, "Wrong alignment on RadialSlider_GetCustomDefaultValue"); \ +static_assert(sizeof(RadialSlider_GetCustomDefaultValue) == 0x000004, "Wrong size on RadialSlider_GetCustomDefaultValue"); \ +static_assert(offsetof(RadialSlider_GetCustomDefaultValue, ReturnValue) == 0x000000, "Member 'RadialSlider_GetCustomDefaultValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_GetNormalizedSliderHandlePosition \ +static_assert(alignof(RadialSlider_GetNormalizedSliderHandlePosition) == 0x000004, "Wrong alignment on RadialSlider_GetNormalizedSliderHandlePosition"); \ +static_assert(sizeof(RadialSlider_GetNormalizedSliderHandlePosition) == 0x000004, "Wrong size on RadialSlider_GetNormalizedSliderHandlePosition"); \ +static_assert(offsetof(RadialSlider_GetNormalizedSliderHandlePosition, ReturnValue) == 0x000000, "Member 'RadialSlider_GetNormalizedSliderHandlePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RadialSlider_GetValue \ +static_assert(alignof(RadialSlider_GetValue) == 0x000004, "Wrong alignment on RadialSlider_GetValue"); \ +static_assert(sizeof(RadialSlider_GetValue) == 0x000004, "Wrong size on RadialSlider_GetValue"); \ +static_assert(offsetof(RadialSlider_GetValue, ReturnValue) == 0x000000, "Member 'RadialSlider_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URadialSlider \ +static_assert(alignof(URadialSlider) == 0x000010, "Wrong alignment on URadialSlider"); \ +static_assert(sizeof(URadialSlider) == 0x000810, "Wrong size on URadialSlider"); \ +static_assert(offsetof(URadialSlider, Value) == 0x000180, "Member 'URadialSlider::Value' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, ValueDelegate) == 0x000184, "Member 'URadialSlider::ValueDelegate' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, bUseCustomDefaultValue) == 0x000194, "Member 'URadialSlider::bUseCustomDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, CustomDefaultValue) == 0x000198, "Member 'URadialSlider::CustomDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderRange) == 0x0001A0, "Member 'URadialSlider::SliderRange' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, ValueTags) == 0x000228, "Member 'URadialSlider::ValueTags' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderHandleStartAngle) == 0x000238, "Member 'URadialSlider::SliderHandleStartAngle' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderHandleEndAngle) == 0x00023C, "Member 'URadialSlider::SliderHandleEndAngle' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, AngularOffset) == 0x000240, "Member 'URadialSlider::AngularOffset' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, HandStartEndRatio) == 0x000248, "Member 'URadialSlider::HandStartEndRatio' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, WidgetStyle) == 0x000260, "Member 'URadialSlider::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderBarColor) == 0x000760, "Member 'URadialSlider::SliderBarColor' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderProgressColor) == 0x000770, "Member 'URadialSlider::SliderProgressColor' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, SliderHandleColor) == 0x000780, "Member 'URadialSlider::SliderHandleColor' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, CenterBackgroundColor) == 0x000790, "Member 'URadialSlider::CenterBackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, Locked) == 0x0007A0, "Member 'URadialSlider::Locked' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, MouseUsesStep) == 0x0007A1, "Member 'URadialSlider::MouseUsesStep' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, RequiresControllerLock) == 0x0007A2, "Member 'URadialSlider::RequiresControllerLock' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, StepSize) == 0x0007A4, "Member 'URadialSlider::StepSize' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, IsFocusable) == 0x0007A8, "Member 'URadialSlider::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, UseVerticalDrag) == 0x0007A9, "Member 'URadialSlider::UseVerticalDrag' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, ShowSliderHandle) == 0x0007AA, "Member 'URadialSlider::ShowSliderHandle' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, ShowSliderHand) == 0x0007AB, "Member 'URadialSlider::ShowSliderHand' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, OnMouseCaptureBegin) == 0x0007B0, "Member 'URadialSlider::OnMouseCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, OnMouseCaptureEnd) == 0x0007C0, "Member 'URadialSlider::OnMouseCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, OnControllerCaptureBegin) == 0x0007D0, "Member 'URadialSlider::OnControllerCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, OnControllerCaptureEnd) == 0x0007E0, "Member 'URadialSlider::OnControllerCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(URadialSlider, OnValueChanged) == 0x0007F0, "Member 'URadialSlider::OnValueChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Death_C_ExecuteUbergraph_GA_Death \ +static_assert(alignof(GA_Death_C_ExecuteUbergraph_GA_Death) == 0x000008, "Wrong alignment on GA_Death_C_ExecuteUbergraph_GA_Death"); \ +static_assert(sizeof(GA_Death_C_ExecuteUbergraph_GA_Death) == 0x0000C8, "Wrong size on GA_Death_C_ExecuteUbergraph_GA_Death"); \ +static_assert(offsetof(GA_Death_C_ExecuteUbergraph_GA_Death, EntryPoint) == 0x000000, "Member 'GA_Death_C_ExecuteUbergraph_GA_Death::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_ExecuteUbergraph_GA_Death, CallFunc_GetOwningComponentFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Death_C_ExecuteUbergraph_GA_Death::CallFunc_GetOwningComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_ExecuteUbergraph_GA_Death, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_Death_C_ExecuteUbergraph_GA_Death::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_ExecuteUbergraph_GA_Death, K2Node_Event_EventData) == 0x000018, "Member 'GA_Death_C_ExecuteUbergraph_GA_Death::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Death_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Death_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Death_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Death_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Death_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Death_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Death_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Death_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Death_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Death_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Death_C_K2_CanActivateAbility) == 0x0000A0, "Wrong size on GA_Death_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Death_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Death_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Death_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Death_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_RelevantTags) == 0x000078, "Member 'GA_Death_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Death_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_ReturnValue) == 0x000098, "Member 'GA_Death_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Death_C \ +static_assert(alignof(UGA_Death_C) == 0x000008, "Wrong alignment on UGA_Death_C"); \ +static_assert(sizeof(UGA_Death_C) == 0x000670, "Wrong size on UGA_Death_C"); \ +static_assert(offsetof(UGA_Death_C, UberGraphFrame) == 0x000668, "Member 'UGA_Death_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEffectMagnitudesTag \ +static_assert(alignof(FEffectMagnitudesTag) == 0x000004, "Wrong alignment on FEffectMagnitudesTag"); \ +static_assert(sizeof(FEffectMagnitudesTag) == 0x000010, "Wrong size on FEffectMagnitudesTag"); \ +static_assert(offsetof(FEffectMagnitudesTag, MagnitudeTagSetByCaller) == 0x000000, "Member 'FEffectMagnitudesTag::MagnitudeTagSetByCaller' has a wrong offset!"); \ +static_assert(offsetof(FEffectMagnitudesTag, MagnitudeTagOnTheMagnitudesContainer) == 0x000008, "Member 'FEffectMagnitudesTag::MagnitudeTagOnTheMagnitudesContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEffectModifier \ +static_assert(alignof(FEffectModifier) == 0x000008, "Wrong alignment on FEffectModifier"); \ +static_assert(sizeof(FEffectModifier) == 0x000018, "Wrong size on FEffectModifier"); \ +static_assert(offsetof(FEffectModifier, MagnitudesTag) == 0x000000, "Member 'FEffectModifier::MagnitudesTag' has a wrong offset!"); \ +static_assert(offsetof(FEffectModifier, Operation) == 0x000010, "Member 'FEffectModifier::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialMenuMeterialParamData \ +static_assert(alignof(FRadialMenuMeterialParamData) == 0x000004, "Wrong alignment on FRadialMenuMeterialParamData"); \ +static_assert(sizeof(FRadialMenuMeterialParamData) == 0x00000C, "Wrong size on FRadialMenuMeterialParamData"); \ +static_assert(offsetof(FRadialMenuMeterialParamData, ParameterName) == 0x000000, "Member 'FRadialMenuMeterialParamData::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(FRadialMenuMeterialParamData, ParameterValue) == 0x000008, "Member 'FRadialMenuMeterialParamData::ParameterValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTrainingCost \ +static_assert(alignof(FTrainingCost) == 0x000004, "Wrong alignment on FTrainingCost"); \ +static_assert(sizeof(FTrainingCost) == 0x000008, "Wrong size on FTrainingCost"); \ +static_assert(offsetof(FTrainingCost, CostType) == 0x000000, "Member 'FTrainingCost::CostType' has a wrong offset!"); \ +static_assert(offsetof(FTrainingCost, CostAmount) == 0x000004, "Member 'FTrainingCost::CostAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetActiveGameplayAbilityTask \ +static_assert(alignof(FWrestlerMassGetActiveGameplayAbilityTask) == 0x000008, "Wrong alignment on FWrestlerMassGetActiveGameplayAbilityTask"); \ +static_assert(sizeof(FWrestlerMassGetActiveGameplayAbilityTask) == 0x000028, "Wrong size on FWrestlerMassGetActiveGameplayAbilityTask"); \ + +#define DUMPER7_ASSERTS_FCharacterSequenceData \ +static_assert(alignof(FCharacterSequenceData) == 0x000010, "Wrong alignment on FCharacterSequenceData"); \ +static_assert(sizeof(FCharacterSequenceData) == 0x000080, "Wrong size on FCharacterSequenceData"); \ +static_assert(offsetof(FCharacterSequenceData, TransformOriginActor) == 0x000000, "Member 'FCharacterSequenceData::TransformOriginActor' has a wrong offset!"); \ +static_assert(offsetof(FCharacterSequenceData, TransformOrigin) == 0x000010, "Member 'FCharacterSequenceData::TransformOrigin' has a wrong offset!"); \ +static_assert(offsetof(FCharacterSequenceData, BlendInTime) == 0x000070, "Member 'FCharacterSequenceData::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(FCharacterSequenceData, BlendOutTime) == 0x000074, "Member 'FCharacterSequenceData::BlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(FCharacterSequenceData, bDisableCollisions) == 0x000078, "Member 'FCharacterSequenceData::bDisableCollisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationCameraTrace \ +static_assert(alignof(FWrestlerMassConversationCameraTrace) == 0x000008, "Wrong alignment on FWrestlerMassConversationCameraTrace"); \ +static_assert(sizeof(FWrestlerMassConversationCameraTrace) == 0x000010, "Wrong size on FWrestlerMassConversationCameraTrace"); \ + +#define DUMPER7_ASSERTS_FWrestlerSpecialInput \ +static_assert(alignof(FWrestlerSpecialInput) == 0x000008, "Wrong alignment on FWrestlerSpecialInput"); \ +static_assert(sizeof(FWrestlerSpecialInput) == 0x000028, "Wrong size on FWrestlerSpecialInput"); \ +static_assert(offsetof(FWrestlerSpecialInput, Action) == 0x000000, "Member 'FWrestlerSpecialInput::Action' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSpecialInput, ID) == 0x000008, "Member 'FWrestlerSpecialInput::ID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSpecialInput, Key) == 0x000010, "Member 'FWrestlerSpecialInput::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassStandInstanceData \ +static_assert(alignof(FWrestlerMassStandInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassStandInstanceData"); \ +static_assert(sizeof(FWrestlerMassStandInstanceData) == 0x000010, "Wrong size on FWrestlerMassStandInstanceData"); \ +static_assert(offsetof(FWrestlerMassStandInstanceData, RandomDeviation) == 0x000008, "Member 'FWrestlerMassStandInstanceData::RandomDeviation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassStandInstanceData, TimeFactor) == 0x00000C, "Member 'FWrestlerMassStandInstanceData::TimeFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeWallaQueryParameters \ +static_assert(alignof(FWrestlerMasqueradeWallaQueryParameters) == 0x000008, "Wrong alignment on FWrestlerMasqueradeWallaQueryParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeWallaQueryParameters) == 0x000028, "Wrong size on FWrestlerMasqueradeWallaQueryParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaQueryParameters, ID) == 0x000000, "Member 'FWrestlerMasqueradeWallaQueryParameters::ID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaQueryParameters, Types) == 0x000008, "Member 'FWrestlerMasqueradeWallaQueryParameters::Types' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaQueryParameters, MinRange) == 0x000018, "Member 'FWrestlerMasqueradeWallaQueryParameters::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaQueryParameters, MaxRange) == 0x00001C, "Member 'FWrestlerMasqueradeWallaQueryParameters::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaQueryParameters, FearWeightViolence) == 0x000020, "Member 'FWrestlerMasqueradeWallaQueryParameters::FearWeightViolence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerMovementParams \ +static_assert(alignof(FWrestlerPlayerMovementParams) == 0x000004, "Wrong alignment on FWrestlerPlayerMovementParams"); \ +static_assert(sizeof(FWrestlerPlayerMovementParams) == 0x00001C, "Wrong size on FWrestlerPlayerMovementParams"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, JumpZVelocity) == 0x000000, "Member 'FWrestlerPlayerMovementParams::JumpZVelocity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, MaxCrouchSpeed) == 0x000004, "Member 'FWrestlerPlayerMovementParams::MaxCrouchSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, GravityScale) == 0x000008, "Member 'FWrestlerPlayerMovementParams::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, MaxAcceleration) == 0x00000C, "Member 'FWrestlerPlayerMovementParams::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, BrakingFriction) == 0x000010, "Member 'FWrestlerPlayerMovementParams::BrakingFriction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, AirControl) == 0x000014, "Member 'FWrestlerPlayerMovementParams::AirControl' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, bCanCrouch) == 0x000018, "Member 'FWrestlerPlayerMovementParams::bCanCrouch' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerMovementParams, bCanJump) == 0x000019, "Member 'FWrestlerPlayerMovementParams::bCanJump' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModCharProfileGroup \ +static_assert(alignof(FWrestlerMassModCharProfileGroup) == 0x000008, "Wrong alignment on FWrestlerMassModCharProfileGroup"); \ +static_assert(sizeof(FWrestlerMassModCharProfileGroup) == 0x000010, "Wrong size on FWrestlerMassModCharProfileGroup"); \ +static_assert(offsetof(FWrestlerMassModCharProfileGroup, Profiles) == 0x000000, "Member 'FWrestlerMassModCharProfileGroup::Profiles' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModCharProfileGroup, Group) == 0x000008, "Member 'FWrestlerMassModCharProfileGroup::Group' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSequenceBinding \ +static_assert(alignof(FWrestlerSequenceBinding) == 0x000008, "Wrong alignment on FWrestlerSequenceBinding"); \ +static_assert(sizeof(FWrestlerSequenceBinding) == 0x000018, "Wrong size on FWrestlerSequenceBinding"); \ +static_assert(offsetof(FWrestlerSequenceBinding, BindingTag) == 0x000000, "Member 'FWrestlerSequenceBinding::BindingTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSequenceBinding, Actors) == 0x000008, "Member 'FWrestlerSequenceBinding::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSequenceSettings \ +static_assert(alignof(FWrestlerSequenceSettings) == 0x000008, "Wrong alignment on FWrestlerSequenceSettings"); \ +static_assert(sizeof(FWrestlerSequenceSettings) == 0x000010, "Wrong size on FWrestlerSequenceSettings"); \ +static_assert(offsetof(FWrestlerSequenceSettings, BindingsList) == 0x000000, "Member 'FWrestlerSequenceSettings::BindingsList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInputMappingPair \ +static_assert(alignof(FWrestlerInputMappingPair) == 0x000008, "Wrong alignment on FWrestlerInputMappingPair"); \ +static_assert(sizeof(FWrestlerInputMappingPair) == 0x000030, "Wrong size on FWrestlerInputMappingPair"); \ +static_assert(offsetof(FWrestlerInputMappingPair, PrimaryKey) == 0x000000, "Member 'FWrestlerInputMappingPair::PrimaryKey' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingPair, SecondaryKey) == 0x000018, "Member 'FWrestlerInputMappingPair::SecondaryKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerWallClimbParameters \ +static_assert(alignof(FWrestlerWallClimbParameters) == 0x000004, "Wrong alignment on FWrestlerWallClimbParameters"); \ +static_assert(sizeof(FWrestlerWallClimbParameters) == 0x00002C, "Wrong size on FWrestlerWallClimbParameters"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, LerpToWallDuration) == 0x000000, "Member 'FWrestlerWallClimbParameters::LerpToWallDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, MaxWallClimbDuration) == 0x000004, "Member 'FWrestlerWallClimbParameters::MaxWallClimbDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, InwardProjection) == 0x000008, "Member 'FWrestlerWallClimbParameters::InwardProjection' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, ForwardDirectionLerpStrength) == 0x00000C, "Member 'FWrestlerWallClimbParameters::ForwardDirectionLerpStrength' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, LedgeVaultDetectionDistance) == 0x000010, "Member 'FWrestlerWallClimbParameters::LedgeVaultDetectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, LedgeMinProtrusion) == 0x000014, "Member 'FWrestlerWallClimbParameters::LedgeMinProtrusion' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, LedgeMaxProtrusion) == 0x000018, "Member 'FWrestlerWallClimbParameters::LedgeMaxProtrusion' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, LedgeMaxThickness) == 0x00001C, "Member 'FWrestlerWallClimbParameters::LedgeMaxThickness' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, StepUpHeight) == 0x000020, "Member 'FWrestlerWallClimbParameters::StepUpHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, SlopeBoostMultiplier) == 0x000024, "Member 'FWrestlerWallClimbParameters::SlopeBoostMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWallClimbParameters, bFallOnBlock) == 0x000028, "Member 'FWrestlerWallClimbParameters::bFallOnBlock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilityDataStruct \ +static_assert(alignof(FWrestlerAbilityDataStruct) == 0x000010, "Wrong alignment on FWrestlerAbilityDataStruct"); \ +static_assert(sizeof(FWrestlerAbilityDataStruct) == 0x0003E0, "Wrong size on FWrestlerAbilityDataStruct"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityName) == 0x000008, "Member 'FWrestlerAbilityDataStruct::AbilityName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityIcon) == 0x000020, "Member 'FWrestlerAbilityDataStruct::AbilityIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, Description) == 0x000048, "Member 'FWrestlerAbilityDataStruct::Description' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, BaseCost) == 0x000060, "Member 'FWrestlerAbilityDataStruct::BaseCost' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, DecreasedCost) == 0x000064, "Member 'FWrestlerAbilityDataStruct::DecreasedCost' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, IncreasedCost) == 0x000068, "Member 'FWrestlerAbilityDataStruct::IncreasedCost' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, ClanModifiers) == 0x000070, "Member 'FWrestlerAbilityDataStruct::ClanModifiers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityTrainingCost) == 0x000080, "Member 'FWrestlerAbilityDataStruct::AbilityTrainingCost' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityFillingStyle) == 0x000090, "Member 'FWrestlerAbilityDataStruct::AbilityFillingStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, LockedButtonStyle) == 0x000320, "Member 'FWrestlerAbilityDataStruct::LockedButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, UnlockedButtonStyle) == 0x000328, "Member 'FWrestlerAbilityDataStruct::UnlockedButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AcquiredButtonStyle) == 0x000330, "Member 'FWrestlerAbilityDataStruct::AcquiredButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AcquiredButtonStyle_Small) == 0x000338, "Member 'FWrestlerAbilityDataStruct::AcquiredButtonStyle_Small' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, LockedButtonStyle_Small) == 0x000340, "Member 'FWrestlerAbilityDataStruct::LockedButtonStyle_Small' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, UnlockedButtonStyle_Small) == 0x000348, "Member 'FWrestlerAbilityDataStruct::UnlockedButtonStyle_Small' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, UnaivalableButtonStyle_Small) == 0x000350, "Member 'FWrestlerAbilityDataStruct::UnaivalableButtonStyle_Small' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityDefinition) == 0x000358, "Member 'FWrestlerAbilityDataStruct::AbilityDefinition' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityVideoclip) == 0x000360, "Member 'FWrestlerAbilityDataStruct::AbilityVideoclip' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, ClanValue) == 0x000388, "Member 'FWrestlerAbilityDataStruct::ClanValue' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityTier) == 0x00038C, "Member 'FWrestlerAbilityDataStruct::AbilityTier' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, CostumeTag) == 0x000394, "Member 'FWrestlerAbilityDataStruct::CostumeTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, EnabledProperty) == 0x0003A0, "Member 'FWrestlerAbilityDataStruct::EnabledProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, AbilityDisciplines) == 0x0003A8, "Member 'FWrestlerAbilityDataStruct::AbilityDisciplines' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, RowFileName) == 0x0003B8, "Member 'FWrestlerAbilityDataStruct::RowFileName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityDataStruct, UnlockDependenciesAbilityRows) == 0x0003C8, "Member 'FWrestlerAbilityDataStruct::UnlockDependenciesAbilityRows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSpecialMappingData \ +static_assert(alignof(FWrestlerSpecialMappingData) == 0x000008, "Wrong alignment on FWrestlerSpecialMappingData"); \ +static_assert(sizeof(FWrestlerSpecialMappingData) == 0x000070, "Wrong size on FWrestlerSpecialMappingData"); \ +static_assert(offsetof(FWrestlerSpecialMappingData, ID) == 0x000000, "Member 'FWrestlerSpecialMappingData::ID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSpecialMappingData, DisplayName) == 0x000008, "Member 'FWrestlerSpecialMappingData::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSpecialMappingData, KeyMapping) == 0x000020, "Member 'FWrestlerSpecialMappingData::KeyMapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInputMappingEntry \ +static_assert(alignof(FWrestlerInputMappingEntry) == 0x000008, "Wrong alignment on FWrestlerInputMappingEntry"); \ +static_assert(sizeof(FWrestlerInputMappingEntry) == 0x000028, "Wrong size on FWrestlerInputMappingEntry"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, DependentAction) == 0x000000, "Member 'FWrestlerInputMappingEntry::DependentAction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, Action) == 0x000008, "Member 'FWrestlerInputMappingEntry::Action' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, SpecialMappings) == 0x000010, "Member 'FWrestlerInputMappingEntry::SpecialMappings' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bRemappableMouseKeyboard) == 0x000020, "Member 'FWrestlerInputMappingEntry::bRemappableMouseKeyboard' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bRemappableGamepad) == 0x000021, "Member 'FWrestlerInputMappingEntry::bRemappableGamepad' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bShowOnMouseKeyboard) == 0x000022, "Member 'FWrestlerInputMappingEntry::bShowOnMouseKeyboard' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bShowOnGamepad) == 0x000023, "Member 'FWrestlerInputMappingEntry::bShowOnGamepad' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bShowOnMouseKeyboardSpecial) == 0x000024, "Member 'FWrestlerInputMappingEntry::bShowOnMouseKeyboardSpecial' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingEntry, bShowOnGamepadSpecial) == 0x000025, "Member 'FWrestlerInputMappingEntry::bShowOnGamepadSpecial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInputMappingCategory \ +static_assert(alignof(FWrestlerInputMappingCategory) == 0x000008, "Wrong alignment on FWrestlerInputMappingCategory"); \ +static_assert(sizeof(FWrestlerInputMappingCategory) == 0x000028, "Wrong size on FWrestlerInputMappingCategory"); \ +static_assert(offsetof(FWrestlerInputMappingCategory, Category) == 0x000000, "Member 'FWrestlerInputMappingCategory::Category' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInputMappingCategory, Entries) == 0x000018, "Member 'FWrestlerInputMappingCategory::Entries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerWindGustIntensity \ +static_assert(alignof(FWrestlerWindGustIntensity) == 0x000004, "Wrong alignment on FWrestlerWindGustIntensity"); \ +static_assert(sizeof(FWrestlerWindGustIntensity) == 0x000008, "Wrong size on FWrestlerWindGustIntensity"); \ +static_assert(offsetof(FWrestlerWindGustIntensity, Min) == 0x000000, "Member 'FWrestlerWindGustIntensity::Min' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWindGustIntensity, Max) == 0x000004, "Member 'FWrestlerWindGustIntensity::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerWeatherParameters \ +static_assert(alignof(FWrestlerWeatherParameters) == 0x000008, "Wrong alignment on FWrestlerWeatherParameters"); \ +static_assert(sizeof(FWrestlerWeatherParameters) == 0x000038, "Wrong size on FWrestlerWeatherParameters"); \ +static_assert(offsetof(FWrestlerWeatherParameters, Name) == 0x000000, "Member 'FWrestlerWeatherParameters::Name' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, BlendTime) == 0x000008, "Member 'FWrestlerWeatherParameters::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, WindIntensity) == 0x00000C, "Member 'FWrestlerWeatherParameters::WindIntensity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, WindDirection) == 0x000010, "Member 'FWrestlerWeatherParameters::WindDirection' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, WindGustProbability) == 0x000028, "Member 'FWrestlerWeatherParameters::WindGustProbability' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, WindGustDuration) == 0x00002C, "Member 'FWrestlerWeatherParameters::WindGustDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWeatherParameters, WindGustIntensity) == 0x000030, "Member 'FWrestlerWeatherParameters::WindGustIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassStateTreeTask_RunSubTree \ +static_assert(alignof(FWrestlerMassStateTreeTask_RunSubTree) == 0x000008, "Wrong alignment on FWrestlerMassStateTreeTask_RunSubTree"); \ +static_assert(sizeof(FWrestlerMassStateTreeTask_RunSubTree) == 0x000048, "Wrong size on FWrestlerMassStateTreeTask_RunSubTree"); \ +static_assert(offsetof(FWrestlerMassStateTreeTask_RunSubTree, SubTree) == 0x000020, "Member 'FWrestlerMassStateTreeTask_RunSubTree::SubTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerQuestObjective \ +static_assert(alignof(FWrestlerQuestObjective) == 0x000008, "Wrong alignment on FWrestlerQuestObjective"); \ +static_assert(sizeof(FWrestlerQuestObjective) == 0x0000D0, "Wrong size on FWrestlerQuestObjective"); \ +static_assert(offsetof(FWrestlerQuestObjective, Objective) == 0x000000, "Member 'FWrestlerQuestObjective::Objective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, bOverrideTitle) == 0x000010, "Member 'FWrestlerQuestObjective::bOverrideTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, TitleOverride) == 0x000018, "Member 'FWrestlerQuestObjective::TitleOverride' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, Description) == 0x000030, "Member 'FWrestlerQuestObjective::Description' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, StoryDialogueInfo) == 0x000048, "Member 'FWrestlerQuestObjective::StoryDialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, ObjectiveCompletedProperties) == 0x000050, "Member 'FWrestlerQuestObjective::ObjectiveCompletedProperties' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, bUseSideQuestIcon) == 0x0000A0, "Member 'FWrestlerQuestObjective::bUseSideQuestIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestObjective, ObjectToTag) == 0x0000A8, "Member 'FWrestlerQuestObjective::ObjectToTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTagDelegates \ +static_assert(alignof(FWrestlerTagDelegates) == 0x000004, "Wrong alignment on FWrestlerTagDelegates"); \ +static_assert(sizeof(FWrestlerTagDelegates) == 0x000020, "Wrong size on FWrestlerTagDelegates"); \ +static_assert(offsetof(FWrestlerTagDelegates, OnTagAddedToObjectEvent) == 0x000000, "Member 'FWrestlerTagDelegates::OnTagAddedToObjectEvent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTagDelegates, OnTagRemovedFromObjectEvent) == 0x000010, "Member 'FWrestlerTagDelegates::OnTagRemovedFromObjectEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEnemiesQuestData \ +static_assert(alignof(FWrestlerEnemiesQuestData) == 0x000008, "Wrong alignment on FWrestlerEnemiesQuestData"); \ +static_assert(sizeof(FWrestlerEnemiesQuestData) == 0x000050, "Wrong size on FWrestlerEnemiesQuestData"); \ +static_assert(offsetof(FWrestlerEnemiesQuestData, KilledEnemySpawnerPaths) == 0x000000, "Member 'FWrestlerEnemiesQuestData::KilledEnemySpawnerPaths' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerOpenQuestData \ +static_assert(alignof(FWrestlerOpenQuestData) == 0x000008, "Wrong alignment on FWrestlerOpenQuestData"); \ +static_assert(sizeof(FWrestlerOpenQuestData) == 0x000098, "Wrong size on FWrestlerOpenQuestData"); \ +static_assert(offsetof(FWrestlerOpenQuestData, QuestTag) == 0x000000, "Member 'FWrestlerOpenQuestData::QuestTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOpenQuestData, QuestData) == 0x000008, "Member 'FWrestlerOpenQuestData::QuestData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOpenQuestData, OpenObjectives) == 0x000010, "Member 'FWrestlerOpenQuestData::OpenObjectives' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOpenQuestData, TagDelegates) == 0x000020, "Member 'FWrestlerOpenQuestData::TagDelegates' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOpenQuestData, EnemiesQuestData) == 0x000040, "Member 'FWrestlerOpenQuestData::EnemiesQuestData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOpenQuestData, CurrentObjectiveIndex) == 0x000090, "Member 'FWrestlerOpenQuestData::CurrentObjectiveIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMeshSlotMaterialSet \ +static_assert(alignof(FWrestlerMeshSlotMaterialSet) == 0x000008, "Wrong alignment on FWrestlerMeshSlotMaterialSet"); \ +static_assert(sizeof(FWrestlerMeshSlotMaterialSet) == 0x000010, "Wrong size on FWrestlerMeshSlotMaterialSet"); \ +static_assert(offsetof(FWrestlerMeshSlotMaterialSet, ChosenMaterials) == 0x000000, "Member 'FWrestlerMeshSlotMaterialSet::ChosenMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMeshSlotData \ +static_assert(alignof(FWrestlerMeshSlotData) == 0x000008, "Wrong alignment on FWrestlerMeshSlotData"); \ +static_assert(sizeof(FWrestlerMeshSlotData) == 0x000040, "Wrong size on FWrestlerMeshSlotData"); \ +static_assert(offsetof(FWrestlerMeshSlotData, Type) == 0x000000, "Member 'FWrestlerMeshSlotData::Type' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, bRandomizeMesh) == 0x000001, "Member 'FWrestlerMeshSlotData::bRandomizeMesh' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, bRandomizeMaterial) == 0x000002, "Member 'FWrestlerMeshSlotData::bRandomizeMaterial' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, SKMesh) == 0x000008, "Member 'FWrestlerMeshSlotData::SKMesh' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, ChosenMaterials) == 0x000010, "Member 'FWrestlerMeshSlotData::ChosenMaterials' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, MaterialOptions) == 0x000020, "Member 'FWrestlerMeshSlotData::MaterialOptions' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMeshSlotData, AudioSwitch) == 0x000030, "Member 'FWrestlerMeshSlotData::AudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPositionedPlane \ +static_assert(alignof(FWrestlerPositionedPlane) == 0x000010, "Wrong alignment on FWrestlerPositionedPlane"); \ +static_assert(sizeof(FWrestlerPositionedPlane) == 0x000040, "Wrong size on FWrestlerPositionedPlane"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassClearResetFleeingPathValueInstanceData \ +static_assert(alignof(FWrestlerMassClearResetFleeingPathValueInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassClearResetFleeingPathValueInstanceData"); \ +static_assert(sizeof(FWrestlerMassClearResetFleeingPathValueInstanceData) == 0x000001, "Wrong size on FWrestlerMassClearResetFleeingPathValueInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerEquipmentActorToSpawn \ +static_assert(alignof(FWrestlerEquipmentActorToSpawn) == 0x000010, "Wrong alignment on FWrestlerEquipmentActorToSpawn"); \ +static_assert(sizeof(FWrestlerEquipmentActorToSpawn) == 0x000080, "Wrong size on FWrestlerEquipmentActorToSpawn"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, ActorToSpawn) == 0x000000, "Member 'FWrestlerEquipmentActorToSpawn::ActorToSpawn' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, AttachSocket) == 0x000008, "Member 'FWrestlerEquipmentActorToSpawn::AttachSocket' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, LocationAttachmentRule) == 0x000010, "Member 'FWrestlerEquipmentActorToSpawn::LocationAttachmentRule' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, RotationAttachmentRule) == 0x000011, "Member 'FWrestlerEquipmentActorToSpawn::RotationAttachmentRule' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, ScaleAttachmentRule) == 0x000012, "Member 'FWrestlerEquipmentActorToSpawn::ScaleAttachmentRule' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentActorToSpawn, AttachTransform) == 0x000020, "Member 'FWrestlerEquipmentActorToSpawn::AttachTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEntityMassTagFilter \ +static_assert(alignof(FWrestlerEntityMassTagFilter) == 0x000008, "Wrong alignment on FWrestlerEntityMassTagFilter"); \ +static_assert(sizeof(FWrestlerEntityMassTagFilter) == 0x000030, "Wrong size on FWrestlerEntityMassTagFilter"); \ +static_assert(offsetof(FWrestlerEntityMassTagFilter, AnyTags) == 0x000000, "Member 'FWrestlerEntityMassTagFilter::AnyTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityMassTagFilter, AllTags) == 0x000010, "Member 'FWrestlerEntityMassTagFilter::AllTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityMassTagFilter, NoneTags) == 0x000020, "Member 'FWrestlerEntityMassTagFilter::NoneTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEntityMassFragmentFilter \ +static_assert(alignof(FWrestlerEntityMassFragmentFilter) == 0x000008, "Wrong alignment on FWrestlerEntityMassFragmentFilter"); \ +static_assert(sizeof(FWrestlerEntityMassFragmentFilter) == 0x000030, "Wrong size on FWrestlerEntityMassFragmentFilter"); \ +static_assert(offsetof(FWrestlerEntityMassFragmentFilter, AnyFragments) == 0x000000, "Member 'FWrestlerEntityMassFragmentFilter::AnyFragments' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityMassFragmentFilter, AllFragments) == 0x000010, "Member 'FWrestlerEntityMassFragmentFilter::AllFragments' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityMassFragmentFilter, NoneFragments) == 0x000020, "Member 'FWrestlerEntityMassFragmentFilter::NoneFragments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseAIActor \ +static_assert(alignof(FWrestlerMassUseAIActor) == 0x000008, "Wrong alignment on FWrestlerMassUseAIActor"); \ +static_assert(sizeof(FWrestlerMassUseAIActor) == 0x000088, "Wrong size on FWrestlerMassUseAIActor"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, bChangeTeam) == 0x000022, "Member 'FWrestlerMassUseAIActor::bChangeTeam' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, NewTeam) == 0x000023, "Member 'FWrestlerMassUseAIActor::NewTeam' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, bUsePlayerAsInitialTarget) == 0x000024, "Member 'FWrestlerMassUseAIActor::bUsePlayerAsInitialTarget' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, bSwapBackOnExit) == 0x000025, "Member 'FWrestlerMassUseAIActor::bSwapBackOnExit' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, FilterTags) == 0x000028, "Member 'FWrestlerMassUseAIActor::FilterTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseAIActor, FilterFragments) == 0x000058, "Member 'FWrestlerMassUseAIActor::FilterFragments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataTestData_PerStep \ +static_assert(alignof(FHeraAutomataTestData_PerStep) == 0x000008, "Wrong alignment on FHeraAutomataTestData_PerStep"); \ +static_assert(sizeof(FHeraAutomataTestData_PerStep) == 0x000030, "Wrong size on FHeraAutomataTestData_PerStep"); \ +static_assert(offsetof(FHeraAutomataTestData_PerStep, TestLabel) == 0x000000, "Member 'FHeraAutomataTestData_PerStep::TestLabel' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestData_PerStep, Nodes) == 0x000010, "Member 'FHeraAutomataTestData_PerStep::Nodes' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestData_PerStep, ObjectivesToTriggerPostCheck) == 0x000020, "Member 'FHeraAutomataTestData_PerStep::ObjectivesToTriggerPostCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMoveToInstanceData \ +static_assert(alignof(FWrestlerMassMoveToInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassMoveToInstanceData"); \ +static_assert(sizeof(FWrestlerMassMoveToInstanceData) == 0x0000B8, "Wrong size on FWrestlerMassMoveToInstanceData"); \ +static_assert(offsetof(FWrestlerMassMoveToInstanceData, MovementStyle) == 0x000000, "Member 'FWrestlerMassMoveToInstanceData::MovementStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveToInstanceData, SpeedScale) == 0x000018, "Member 'FWrestlerMassMoveToInstanceData::SpeedScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveToInstanceData, bCheckRemainingPathDistance) == 0x00001C, "Member 'FWrestlerMassMoveToInstanceData::bCheckRemainingPathDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveToInstanceData, bFailIfTimeOut) == 0x00001D, "Member 'FWrestlerMassMoveToInstanceData::bFailIfTimeOut' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveToInstanceData, TimeOutAfter) == 0x000020, "Member 'FWrestlerMassMoveToInstanceData::TimeOutAfter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataTestFlowData \ +static_assert(alignof(FHeraAutomataTestFlowData) == 0x000008, "Wrong alignment on FHeraAutomataTestFlowData"); \ +static_assert(sizeof(FHeraAutomataTestFlowData) == 0x000060, "Wrong size on FHeraAutomataTestFlowData"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, Map) == 0x000000, "Member 'FHeraAutomataTestFlowData::Map' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, ExpectedStates) == 0x000028, "Member 'FHeraAutomataTestFlowData::ExpectedStates' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, bDumpStateHistory) == 0x000038, "Member 'FHeraAutomataTestFlowData::bDumpStateHistory' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, TimeLimitInSeconds) == 0x00003C, "Member 'FHeraAutomataTestFlowData::TimeLimitInSeconds' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, StartingStep) == 0x000040, "Member 'FHeraAutomataTestFlowData::StartingStep' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, LastStep) == 0x000044, "Member 'FHeraAutomataTestFlowData::LastStep' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, bSkipStepsCheck) == 0x000048, "Member 'FHeraAutomataTestFlowData::bSkipStepsCheck' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestFlowData, Steps) == 0x000050, "Member 'FHeraAutomataTestFlowData::Steps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerResetEntityTag \ +static_assert(alignof(FWrestlerResetEntityTag) == 0x000001, "Wrong alignment on FWrestlerResetEntityTag"); \ +static_assert(sizeof(FWrestlerResetEntityTag) == 0x000001, "Wrong size on FWrestlerResetEntityTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMeshSlotEntry \ +static_assert(alignof(FWrestlerMassMeshSlotEntry) == 0x000008, "Wrong alignment on FWrestlerMassMeshSlotEntry"); \ +static_assert(sizeof(FWrestlerMassMeshSlotEntry) == 0x000040, "Wrong size on FWrestlerMassMeshSlotEntry"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterEntry \ +static_assert(alignof(FWrestlerMassModularCharacterEntry) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterEntry"); \ +static_assert(sizeof(FWrestlerMassModularCharacterEntry) == 0x000048, "Wrong size on FWrestlerMassModularCharacterEntry"); \ +static_assert(offsetof(FWrestlerMassModularCharacterEntry, MeshData) == 0x000000, "Member 'FWrestlerMassModularCharacterEntry::MeshData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterEntry, Distribution) == 0x000040, "Member 'FWrestlerMassModularCharacterEntry::Distribution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDigestedRepulsionProperties \ +static_assert(alignof(FDigestedRepulsionProperties) == 0x000001, "Wrong alignment on FDigestedRepulsionProperties"); \ +static_assert(sizeof(FDigestedRepulsionProperties) == 0x000001, "Wrong size on FDigestedRepulsionProperties"); \ + +#define DUMPER7_ASSERTS_FWrestlerMetadataData \ +static_assert(alignof(FWrestlerMetadataData) == 0x000008, "Wrong alignment on FWrestlerMetadataData"); \ +static_assert(sizeof(FWrestlerMetadataData) == 0x000058, "Wrong size on FWrestlerMetadataData"); \ +static_assert(offsetof(FWrestlerMetadataData, SaveSlotName) == 0x000000, "Member 'FWrestlerMetadataData::SaveSlotName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMetadataData, DateTimeStamp) == 0x000010, "Member 'FWrestlerMetadataData::DateTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMetadataData, Version) == 0x000018, "Member 'FWrestlerMetadataData::Version' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMetadataData, SaveGameTitle) == 0x000020, "Member 'FWrestlerMetadataData::SaveGameTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMetadataData, SaveGameDescription) == 0x000038, "Member 'FWrestlerMetadataData::SaveGameDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMetadataData, PlayerClan) == 0x000050, "Member 'FWrestlerMetadataData::PlayerClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputMappingData \ +static_assert(alignof(FInputMappingData) == 0x000008, "Wrong alignment on FInputMappingData"); \ +static_assert(sizeof(FInputMappingData) == 0x000090, "Wrong size on FInputMappingData"); \ +static_assert(offsetof(FInputMappingData, DependentPlayerAction) == 0x000000, "Member 'FInputMappingData::DependentPlayerAction' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, PlayerAction) == 0x000008, "Member 'FInputMappingData::PlayerAction' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, DefaultKey_MK) == 0x000010, "Member 'FInputMappingData::DefaultKey_MK' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, ID) == 0x000040, "Member 'FInputMappingData::ID' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, DefaultKey_C_Primary) == 0x000048, "Member 'FInputMappingData::DefaultKey_C_Primary' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, DefaultKey_C_Secondary) == 0x000060, "Member 'FInputMappingData::DefaultKey_C_Secondary' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bRemappableMouseKeyboard) == 0x000078, "Member 'FInputMappingData::bRemappableMouseKeyboard' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bRemappableGamepad) == 0x000079, "Member 'FInputMappingData::bRemappableGamepad' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bShowOnMouseKeyboard) == 0x00007A, "Member 'FInputMappingData::bShowOnMouseKeyboard' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bShowOnGamepad) == 0x00007B, "Member 'FInputMappingData::bShowOnGamepad' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bShowOnMouseKeyboardSpecial) == 0x00007C, "Member 'FInputMappingData::bShowOnMouseKeyboardSpecial' has a wrong offset!"); \ +static_assert(offsetof(FInputMappingData, bShowOnGamepadSpecial) == 0x00007D, "Member 'FInputMappingData::bShowOnGamepadSpecial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTaskExecutionResult \ +static_assert(alignof(FWrestlerTaskExecutionResult) == 0x000008, "Wrong alignment on FWrestlerTaskExecutionResult"); \ +static_assert(sizeof(FWrestlerTaskExecutionResult) == 0x000010, "Wrong size on FWrestlerTaskExecutionResult"); \ +static_assert(offsetof(FWrestlerTaskExecutionResult, Result) == 0x000000, "Member 'FWrestlerTaskExecutionResult::Result' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskExecutionResult, ReturnTask) == 0x000008, "Member 'FWrestlerTaskExecutionResult::ReturnTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerClanTrainerConversationInfo \ +static_assert(alignof(FWrestlerClanTrainerConversationInfo) == 0x000008, "Wrong alignment on FWrestlerClanTrainerConversationInfo"); \ +static_assert(sizeof(FWrestlerClanTrainerConversationInfo) == 0x000020, "Wrong size on FWrestlerClanTrainerConversationInfo"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationInfo, Info) == 0x000000, "Member 'FWrestlerClanTrainerConversationInfo::Info' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAINoiseEvent \ +static_assert(alignof(FWrestlerAINoiseEvent) == 0x000008, "Wrong alignment on FWrestlerAINoiseEvent"); \ +static_assert(sizeof(FWrestlerAINoiseEvent) == 0x000040, "Wrong size on FWrestlerAINoiseEvent"); \ +static_assert(offsetof(FWrestlerAINoiseEvent, NoiseLocation) == 0x000008, "Member 'FWrestlerAINoiseEvent::NoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAINoiseEvent, Loudness) == 0x000020, "Member 'FWrestlerAINoiseEvent::Loudness' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAINoiseEvent, MaxRange) == 0x000024, "Member 'FWrestlerAINoiseEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAINoiseEvent, Instigator) == 0x000028, "Member 'FWrestlerAINoiseEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAINoiseEvent, Tag) == 0x000030, "Member 'FWrestlerAINoiseEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntitySmartObjectEventActivation \ +static_assert(alignof(FWrestlerMassEntitySmartObjectEventActivation) == 0x000008, "Wrong alignment on FWrestlerMassEntitySmartObjectEventActivation"); \ +static_assert(sizeof(FWrestlerMassEntitySmartObjectEventActivation) == 0x000028, "Wrong size on FWrestlerMassEntitySmartObjectEventActivation"); \ +static_assert(offsetof(FWrestlerMassEntitySmartObjectEventActivation, ConeAngle) == 0x000020, "Member 'FWrestlerMassEntitySmartObjectEventActivation::ConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAISpawnerData \ +static_assert(alignof(FWrestlerAISpawnerData) == 0x000008, "Wrong alignment on FWrestlerAISpawnerData"); \ +static_assert(sizeof(FWrestlerAISpawnerData) == 0x0000C8, "Wrong size on FWrestlerAISpawnerData"); \ +static_assert(offsetof(FWrestlerAISpawnerData, PatrolRoute_OLD) == 0x000000, "Member 'FWrestlerAISpawnerData::PatrolRoute_OLD' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, Route) == 0x000008, "Member 'FWrestlerAISpawnerData::Route' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, DeathObjective) == 0x000030, "Member 'FWrestlerAISpawnerData::DeathObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, StunObjective) == 0x000038, "Member 'FWrestlerAISpawnerData::StunObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, AwareOfPlayerObjective) == 0x000040, "Member 'FWrestlerAISpawnerData::AwareOfPlayerObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, DetectedPlayerObjective) == 0x000048, "Member 'FWrestlerAISpawnerData::DetectedPlayerObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, TKedObjective) == 0x000050, "Member 'FWrestlerAISpawnerData::TKedObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, DespawnTag) == 0x000058, "Member 'FWrestlerAISpawnerData::DespawnTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, DialogueCharacterTag) == 0x000060, "Member 'FWrestlerAISpawnerData::DialogueCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, bForceEnemyState) == 0x000068, "Member 'FWrestlerAISpawnerData::bForceEnemyState' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, bEnabledUVGlow) == 0x000069, "Member 'FWrestlerAISpawnerData::bEnabledUVGlow' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, ModularCharacterProfileOverride) == 0x000070, "Member 'FWrestlerAISpawnerData::ModularCharacterProfileOverride' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, EnemyStartState) == 0x000098, "Member 'FWrestlerAISpawnerData::EnemyStartState' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, TagsToApply) == 0x0000A0, "Member 'FWrestlerAISpawnerData::TagsToApply' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISpawnerData, bPreventDeadEnemyRespawn) == 0x0000C0, "Member 'FWrestlerAISpawnerData::bPreventDeadEnemyRespawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTutorialData \ +static_assert(alignof(FWrestlerTutorialData) == 0x000008, "Wrong alignment on FWrestlerTutorialData"); \ +static_assert(sizeof(FWrestlerTutorialData) == 0x0000A0, "Wrong size on FWrestlerTutorialData"); \ +static_assert(offsetof(FWrestlerTutorialData, Title) == 0x000000, "Member 'FWrestlerTutorialData::Title' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, KeyboardMouseDescription) == 0x000018, "Member 'FWrestlerTutorialData::KeyboardMouseDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, ControllerDescription) == 0x000030, "Member 'FWrestlerTutorialData::ControllerDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, bWaitForPlayerAction) == 0x000048, "Member 'FWrestlerTutorialData::bWaitForPlayerAction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, AbilityTag) == 0x00004C, "Member 'FWrestlerTutorialData::AbilityTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, SecondaryAbilityTag) == 0x000054, "Member 'FWrestlerTutorialData::SecondaryAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, PCIcon) == 0x00005C, "Member 'FWrestlerTutorialData::PCIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, XBoxIcon) == 0x000064, "Member 'FWrestlerTutorialData::XBoxIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, PSIcon) == 0x00006C, "Member 'FWrestlerTutorialData::PSIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, SecondoryPCIcon) == 0x000074, "Member 'FWrestlerTutorialData::SecondoryPCIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, SecondaryXBoxIcon) == 0x00007C, "Member 'FWrestlerTutorialData::SecondaryXBoxIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, SecondaryPSIcon) == 0x000084, "Member 'FWrestlerTutorialData::SecondaryPSIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, PrimarySymbolIcon) == 0x00008C, "Member 'FWrestlerTutorialData::PrimarySymbolIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTutorialData, SecondarySymbolIcon) == 0x000094, "Member 'FWrestlerTutorialData::SecondarySymbolIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerComponentTransformAndVelocityCopyToMassTag \ +static_assert(alignof(FWrestlerComponentTransformAndVelocityCopyToMassTag) == 0x000001, "Wrong alignment on FWrestlerComponentTransformAndVelocityCopyToMassTag"); \ +static_assert(sizeof(FWrestlerComponentTransformAndVelocityCopyToMassTag) == 0x000001, "Wrong size on FWrestlerComponentTransformAndVelocityCopyToMassTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerGrantedPointsData \ +static_assert(alignof(FWrestlerGrantedPointsData) == 0x000008, "Wrong alignment on FWrestlerGrantedPointsData"); \ +static_assert(sizeof(FWrestlerGrantedPointsData) == 0x000020, "Wrong size on FWrestlerGrantedPointsData"); \ +static_assert(offsetof(FWrestlerGrantedPointsData, Type) == 0x000000, "Member 'FWrestlerGrantedPointsData::Type' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGrantedPointsData, GrantedPoints) == 0x000004, "Member 'FWrestlerGrantedPointsData::GrantedPoints' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGrantedPointsData, Description) == 0x000008, "Member 'FWrestlerGrantedPointsData::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassActorHasAnyGameplayTagCondition \ +static_assert(alignof(FWrestlerMassActorHasAnyGameplayTagCondition) == 0x000008, "Wrong alignment on FWrestlerMassActorHasAnyGameplayTagCondition"); \ +static_assert(sizeof(FWrestlerMassActorHasAnyGameplayTagCondition) == 0x000048, "Wrong size on FWrestlerMassActorHasAnyGameplayTagCondition"); \ +static_assert(offsetof(FWrestlerMassActorHasAnyGameplayTagCondition, bInvert) == 0x000020, "Member 'FWrestlerMassActorHasAnyGameplayTagCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassActorHasAnyGameplayTagCondition, GameplayTags) == 0x000028, "Member 'FWrestlerMassActorHasAnyGameplayTagCondition::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassZoneGraphNavigationAvoidanceParameters \ +static_assert(alignof(FWrestlerMassZoneGraphNavigationAvoidanceParameters) == 0x000004, "Wrong alignment on FWrestlerMassZoneGraphNavigationAvoidanceParameters"); \ +static_assert(sizeof(FWrestlerMassZoneGraphNavigationAvoidanceParameters) == 0x000018, "Wrong size on FWrestlerMassZoneGraphNavigationAvoidanceParameters"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, bUseMoveTargetOffsetting) == 0x000000, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::bUseMoveTargetOffsetting' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, MoveTargetOffsetFactor) == 0x000004, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::MoveTargetOffsetFactor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, MoveTargetOffsetMax) == 0x000008, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::MoveTargetOffsetMax' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, MoveTargetOffsetInLerp) == 0x00000C, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::MoveTargetOffsetInLerp' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, MoveTargetOffsetOutLerp) == 0x000010, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::MoveTargetOffsetOutLerp' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, bEnableAvoidanceForce) == 0x000014, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::bEnableAvoidanceForce' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationAvoidanceParameters, bEnableSeparationForce) == 0x000015, "Member 'FWrestlerMassZoneGraphNavigationAvoidanceParameters::bEnableSeparationForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataTestData \ +static_assert(alignof(FHeraAutomataTestData) == 0x000008, "Wrong alignment on FHeraAutomataTestData"); \ +static_assert(sizeof(FHeraAutomataTestData) == 0x000040, "Wrong size on FHeraAutomataTestData"); \ +static_assert(offsetof(FHeraAutomataTestData, Map) == 0x000000, "Member 'FHeraAutomataTestData::Map' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestData, StartingStep) == 0x000028, "Member 'FHeraAutomataTestData::StartingStep' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestData, LastStep) == 0x00002C, "Member 'FHeraAutomataTestData::LastStep' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestData, Steps) == 0x000030, "Member 'FHeraAutomataTestData::Steps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataTestBackreferenceStateChainData \ +static_assert(alignof(FHeraAutomataTestBackreferenceStateChainData) == 0x000008, "Wrong alignment on FHeraAutomataTestBackreferenceStateChainData"); \ +static_assert(sizeof(FHeraAutomataTestBackreferenceStateChainData) == 0x000030, "Wrong size on FHeraAutomataTestBackreferenceStateChainData"); \ +static_assert(offsetof(FHeraAutomataTestBackreferenceStateChainData, Steps) == 0x000000, "Member 'FHeraAutomataTestBackreferenceStateChainData::Steps' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestBackreferenceStateChainData, FilterTasks) == 0x000010, "Member 'FHeraAutomataTestBackreferenceStateChainData::FilterTasks' has a wrong offset!"); \ +static_assert(offsetof(FHeraAutomataTestBackreferenceStateChainData, FilterStates) == 0x000020, "Member 'FHeraAutomataTestBackreferenceStateChainData::FilterStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRunEQS \ +static_assert(alignof(FWrestlerMassRunEQS) == 0x000008, "Wrong alignment on FWrestlerMassRunEQS"); \ +static_assert(sizeof(FWrestlerMassRunEQS) == 0x000040, "Wrong size on FWrestlerMassRunEQS"); \ +static_assert(offsetof(FWrestlerMassRunEQS, Query) == 0x000028, "Member 'FWrestlerMassRunEQS::Query' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassRunEQS, bUpdateLastKnowPositionSightData) == 0x000030, "Member 'FWrestlerMassRunEQS::bUpdateLastKnowPositionSightData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassRunEQS, RefreshRate) == 0x000034, "Member 'FWrestlerMassRunEQS::RefreshRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassRunEQS, RunMode) == 0x000038, "Member 'FWrestlerMassRunEQS::RunMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHeraAutomataTestBackreferenceBootChainData \ +static_assert(alignof(FHeraAutomataTestBackreferenceBootChainData) == 0x000008, "Wrong alignment on FHeraAutomataTestBackreferenceBootChainData"); \ +static_assert(sizeof(FHeraAutomataTestBackreferenceBootChainData) == 0x000050, "Wrong size on FHeraAutomataTestBackreferenceBootChainData"); \ +static_assert(offsetof(FHeraAutomataTestBackreferenceBootChainData, Mapping) == 0x000000, "Member 'FHeraAutomataTestBackreferenceBootChainData::Mapping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRowIconID \ +static_assert(alignof(FRowIconID) == 0x000004, "Wrong alignment on FRowIconID"); \ +static_assert(sizeof(FRowIconID) == 0x000008, "Wrong size on FRowIconID"); \ +static_assert(offsetof(FRowIconID, RowID) == 0x000000, "Member 'FRowIconID::RowID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEffectMagnitudes \ +static_assert(alignof(FEffectMagnitudes) == 0x000008, "Wrong alignment on FEffectMagnitudes"); \ +static_assert(sizeof(FEffectMagnitudes) == 0x000050, "Wrong size on FEffectMagnitudes"); \ +static_assert(offsetof(FEffectMagnitudes, Magnitudes) == 0x000000, "Member 'FEffectMagnitudes::Magnitudes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWait \ +static_assert(alignof(FWrestlerMassWait) == 0x000008, "Wrong alignment on FWrestlerMassWait"); \ +static_assert(sizeof(FWrestlerMassWait) == 0x000040, "Wrong size on FWrestlerMassWait"); \ +static_assert(offsetof(FWrestlerMassWait, bInfiniteWait) == 0x000020, "Member 'FWrestlerMassWait::bInfiniteWait' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassWait, Duration) == 0x000024, "Member 'FWrestlerMassWait::Duration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassWait, RandomTimeDeviation) == 0x000028, "Member 'FWrestlerMassWait::RandomTimeDeviation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEffectMagnitudesContainer \ +static_assert(alignof(FEffectMagnitudesContainer) == 0x000008, "Wrong alignment on FEffectMagnitudesContainer"); \ +static_assert(sizeof(FEffectMagnitudesContainer) == 0x000050, "Wrong size on FEffectMagnitudesContainer"); \ +static_assert(offsetof(FEffectMagnitudesContainer, Container) == 0x000000, "Member 'FEffectMagnitudesContainer::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEffectsMap \ +static_assert(alignof(FEffectsMap) == 0x000008, "Wrong alignment on FEffectsMap"); \ +static_assert(sizeof(FEffectsMap) == 0x000050, "Wrong size on FEffectsMap"); \ +static_assert(offsetof(FEffectsMap, Container) == 0x000000, "Member 'FEffectsMap::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveSpeedOverrideFragment \ +static_assert(alignof(FWrestlerMoveSpeedOverrideFragment) == 0x000004, "Wrong alignment on FWrestlerMoveSpeedOverrideFragment"); \ +static_assert(sizeof(FWrestlerMoveSpeedOverrideFragment) == 0x000018, "Wrong size on FWrestlerMoveSpeedOverrideFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilityInput \ +static_assert(alignof(FWrestlerAbilityInput) == 0x000008, "Wrong alignment on FWrestlerAbilityInput"); \ +static_assert(sizeof(FWrestlerAbilityInput) == 0x000020, "Wrong size on FWrestlerAbilityInput"); \ +static_assert(offsetof(FWrestlerAbilityInput, AbilitySlot) == 0x000004, "Member 'FWrestlerAbilityInput::AbilitySlot' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityInput, NewControlsAbilitySlot) == 0x000008, "Member 'FWrestlerAbilityInput::NewControlsAbilitySlot' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityInput, AbilitySelectDirection) == 0x000010, "Member 'FWrestlerAbilityInput::AbilitySelectDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRowIDAbilityProperty \ +static_assert(alignof(FRowIDAbilityProperty) == 0x000004, "Wrong alignment on FRowIDAbilityProperty"); \ +static_assert(sizeof(FRowIDAbilityProperty) == 0x000008, "Wrong size on FRowIDAbilityProperty"); \ +static_assert(offsetof(FRowIDAbilityProperty, RowID) == 0x000000, "Member 'FRowIDAbilityProperty::RowID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAbilityDataStruct \ +static_assert(alignof(FAbilityDataStruct) == 0x000008, "Wrong alignment on FAbilityDataStruct"); \ +static_assert(sizeof(FAbilityDataStruct) == 0x000018, "Wrong size on FAbilityDataStruct"); \ +static_assert(offsetof(FAbilityDataStruct, AbilitySlot) == 0x000000, "Member 'FAbilityDataStruct::AbilitySlot' has a wrong offset!"); \ +static_assert(offsetof(FAbilityDataStruct, AbilityDefinition) == 0x000008, "Member 'FAbilityDataStruct::AbilityDefinition' has a wrong offset!"); \ +static_assert(offsetof(FAbilityDataStruct, abilityPropertyRowID) == 0x000010, "Member 'FAbilityDataStruct::abilityPropertyRowID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRemoveTagsOnExitInstanceData \ +static_assert(alignof(FWrestlerRemoveTagsOnExitInstanceData) == 0x000008, "Wrong alignment on FWrestlerRemoveTagsOnExitInstanceData"); \ +static_assert(sizeof(FWrestlerRemoveTagsOnExitInstanceData) == 0x000010, "Wrong size on FWrestlerRemoveTagsOnExitInstanceData"); \ +static_assert(offsetof(FWrestlerRemoveTagsOnExitInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerRemoveTagsOnExitInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMomentumAbilityChargeParameters \ +static_assert(alignof(FWrestlerMomentumAbilityChargeParameters) == 0x000008, "Wrong alignment on FWrestlerMomentumAbilityChargeParameters"); \ +static_assert(sizeof(FWrestlerMomentumAbilityChargeParameters) == 0x000048, "Wrong size on FWrestlerMomentumAbilityChargeParameters"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, CollisionChannelWorldOnly) == 0x000000, "Member 'FWrestlerMomentumAbilityChargeParameters::CollisionChannelWorldOnly' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, ChargeMinTime) == 0x000004, "Member 'FWrestlerMomentumAbilityChargeParameters::ChargeMinTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, ChargeMaxTime) == 0x000008, "Member 'FWrestlerMomentumAbilityChargeParameters::ChargeMaxTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, MinDistance) == 0x00000C, "Member 'FWrestlerMomentumAbilityChargeParameters::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, MaxDistance) == 0x000010, "Member 'FWrestlerMomentumAbilityChargeParameters::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, TargetRadius) == 0x000014, "Member 'FWrestlerMomentumAbilityChargeParameters::TargetRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, MaxDrop) == 0x000018, "Member 'FWrestlerMomentumAbilityChargeParameters::MaxDrop' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, MaxStoppingDrop) == 0x00001C, "Member 'FWrestlerMomentumAbilityChargeParameters::MaxStoppingDrop' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, TraversalTestSpacing) == 0x000020, "Member 'FWrestlerMomentumAbilityChargeParameters::TraversalTestSpacing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, TimeSlowPercent) == 0x000024, "Member 'FWrestlerMomentumAbilityChargeParameters::TimeSlowPercent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, DamageRadius) == 0x000028, "Member 'FWrestlerMomentumAbilityChargeParameters::DamageRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, PlayerSlowPercent) == 0x00002C, "Member 'FWrestlerMomentumAbilityChargeParameters::PlayerSlowPercent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, MontageToPlay) == 0x000030, "Member 'FWrestlerMomentumAbilityChargeParameters::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, ControlReleasedCue) == 0x000038, "Member 'FWrestlerMomentumAbilityChargeParameters::ControlReleasedCue' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityChargeParameters, bDrawDebug) == 0x000040, "Member 'FWrestlerMomentumAbilityChargeParameters::bDrawDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkelMeshMergeSectionMapping_BP \ +static_assert(alignof(FSkelMeshMergeSectionMapping_BP) == 0x000008, "Wrong alignment on FSkelMeshMergeSectionMapping_BP"); \ +static_assert(sizeof(FSkelMeshMergeSectionMapping_BP) == 0x000010, "Wrong size on FSkelMeshMergeSectionMapping_BP"); \ +static_assert(offsetof(FSkelMeshMergeSectionMapping_BP, SectionIDs) == 0x000000, "Member 'FSkelMeshMergeSectionMapping_BP::SectionIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshMergeParams \ +static_assert(alignof(FSkeletalMeshMergeParams) == 0x000008, "Wrong alignment on FSkeletalMeshMergeParams"); \ +static_assert(sizeof(FSkeletalMeshMergeParams) == 0x000048, "Wrong size on FSkeletalMeshMergeParams"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, MeshSectionMappings) == 0x000000, "Member 'FSkeletalMeshMergeParams::MeshSectionMappings' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, UVTransformsPerMesh) == 0x000010, "Member 'FSkeletalMeshMergeParams::UVTransformsPerMesh' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, MeshesToMerge) == 0x000020, "Member 'FSkeletalMeshMergeParams::MeshesToMerge' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, StripTopLODS) == 0x000030, "Member 'FSkeletalMeshMergeParams::StripTopLODS' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, Skeleton) == 0x000038, "Member 'FSkeletalMeshMergeParams::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshMergeParams, MeshName) == 0x000040, "Member 'FSkeletalMeshMergeParams::MeshName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMomentumAbilityMoveParameters \ +static_assert(alignof(FWrestlerMomentumAbilityMoveParameters) == 0x000008, "Wrong alignment on FWrestlerMomentumAbilityMoveParameters"); \ +static_assert(sizeof(FWrestlerMomentumAbilityMoveParameters) == 0x000048, "Wrong size on FWrestlerMomentumAbilityMoveParameters"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, SpeedAtMinCharge) == 0x000000, "Member 'FWrestlerMomentumAbilityMoveParameters::SpeedAtMinCharge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, SpeedAtMaxCharge) == 0x000004, "Member 'FWrestlerMomentumAbilityMoveParameters::SpeedAtMaxCharge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, DamageAtMinCharge) == 0x000008, "Member 'FWrestlerMomentumAbilityMoveParameters::DamageAtMinCharge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, DamageAtMaxCharge) == 0x00000C, "Member 'FWrestlerMomentumAbilityMoveParameters::DamageAtMaxCharge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, DamageRadius) == 0x000010, "Member 'FWrestlerMomentumAbilityMoveParameters::DamageRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, DamageDistance) == 0x000014, "Member 'FWrestlerMomentumAbilityMoveParameters::DamageDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, ChargeCurve) == 0x000018, "Member 'FWrestlerMomentumAbilityMoveParameters::ChargeCurve' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, ChargeProportion) == 0x000020, "Member 'FWrestlerMomentumAbilityMoveParameters::ChargeProportion' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, destination) == 0x000028, "Member 'FWrestlerMomentumAbilityMoveParameters::destination' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMomentumAbilityMoveParameters, PrimaryTarget) == 0x000040, "Member 'FWrestlerMomentumAbilityMoveParameters::PrimaryTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSimplifyAbilityDataStruct \ +static_assert(alignof(FWrestlerSimplifyAbilityDataStruct) == 0x000008, "Wrong alignment on FWrestlerSimplifyAbilityDataStruct"); \ +static_assert(sizeof(FWrestlerSimplifyAbilityDataStruct) == 0x000048, "Wrong size on FWrestlerSimplifyAbilityDataStruct"); \ +static_assert(offsetof(FWrestlerSimplifyAbilityDataStruct, AbilityID) == 0x000000, "Member 'FWrestlerSimplifyAbilityDataStruct::AbilityID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSimplifyAbilityDataStruct, AbilityName) == 0x000010, "Member 'FWrestlerSimplifyAbilityDataStruct::AbilityName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSimplifyAbilityDataStruct, AbilityIcon) == 0x000020, "Member 'FWrestlerSimplifyAbilityDataStruct::AbilityIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSimplifyAbilityDataStruct, Description) == 0x000028, "Member 'FWrestlerSimplifyAbilityDataStruct::Description' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSimplifyAbilityDataStruct, AbilityTrainingCost) == 0x000038, "Member 'FWrestlerSimplifyAbilityDataStruct::AbilityTrainingCost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSaveSlotPromptData \ +static_assert(alignof(FWrestlerSaveSlotPromptData) == 0x000008, "Wrong alignment on FWrestlerSaveSlotPromptData"); \ +static_assert(sizeof(FWrestlerSaveSlotPromptData) == 0x000050, "Wrong size on FWrestlerSaveSlotPromptData"); \ + +#define DUMPER7_ASSERTS_FWrestlerGameplayEffectContainer \ +static_assert(alignof(FWrestlerGameplayEffectContainer) == 0x000008, "Wrong alignment on FWrestlerGameplayEffectContainer"); \ +static_assert(sizeof(FWrestlerGameplayEffectContainer) == 0x000038, "Wrong size on FWrestlerGameplayEffectContainer"); \ +static_assert(offsetof(FWrestlerGameplayEffectContainer, TargetType) == 0x000000, "Member 'FWrestlerGameplayEffectContainer::TargetType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGameplayEffectContainer, TargetGameplayEffectClasses) == 0x000028, "Member 'FWrestlerGameplayEffectContainer::TargetGameplayEffectClasses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerNavigableWidgetData \ +static_assert(alignof(FWrestlerNavigableWidgetData) == 0x000008, "Wrong alignment on FWrestlerNavigableWidgetData"); \ +static_assert(sizeof(FWrestlerNavigableWidgetData) == 0x000198, "Wrong size on FWrestlerNavigableWidgetData"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, NavigationMode) == 0x000000, "Member 'FWrestlerNavigableWidgetData::NavigationMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, MaxSizeForBoundaries) == 0x000004, "Member 'FWrestlerNavigableWidgetData::MaxSizeForBoundaries' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, bMoveBGKWithKeys) == 0x000008, "Member 'FWrestlerNavigableWidgetData::bMoveBGKWithKeys' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, bMoveBKGWithInputWhenThresholdReached) == 0x000009, "Member 'FWrestlerNavigableWidgetData::bMoveBKGWithInputWhenThresholdReached' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, bCenterCursorIfNoInput) == 0x00000A, "Member 'FWrestlerNavigableWidgetData::bCenterCursorIfNoInput' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, MovementDeadZone) == 0x00000C, "Member 'FWrestlerNavigableWidgetData::MovementDeadZone' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, BackgroundBoundariesThreshold) == 0x000010, "Member 'FWrestlerNavigableWidgetData::BackgroundBoundariesThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, FloatingCursorBoundariesThreshold) == 0x000020, "Member 'FWrestlerNavigableWidgetData::FloatingCursorBoundariesThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, RadialBoundaryThreshold) == 0x000030, "Member 'FWrestlerNavigableWidgetData::RadialBoundaryThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, MouseBoundariesThreshold) == 0x000038, "Member 'FWrestlerNavigableWidgetData::MouseBoundariesThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, TranslationSpeedRate) == 0x000048, "Member 'FWrestlerNavigableWidgetData::TranslationSpeedRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, HoveringSpeedCurveData) == 0x000050, "Member 'FWrestlerNavigableWidgetData::HoveringSpeedCurveData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, RecenterCursorIfNoInputSpeed) == 0x0000D8, "Member 'FWrestlerNavigableWidgetData::RecenterCursorIfNoInputSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, ZoomRate) == 0x0000DC, "Member 'FWrestlerNavigableWidgetData::ZoomRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, TranslationSpeed) == 0x0000E0, "Member 'FWrestlerNavigableWidgetData::TranslationSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, ResetSpeed) == 0x0000E4, "Member 'FWrestlerNavigableWidgetData::ResetSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, ZoomDeadZone) == 0x0000E8, "Member 'FWrestlerNavigableWidgetData::ZoomDeadZone' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, ZoomCurveData) == 0x0000F0, "Member 'FWrestlerNavigableWidgetData::ZoomCurveData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, MaxZoomInputGamepad) == 0x000178, "Member 'FWrestlerNavigableWidgetData::MaxZoomInputGamepad' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, bUseCanvasLocation) == 0x00017C, "Member 'FWrestlerNavigableWidgetData::bUseCanvasLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, OuterSnapThresholdRadius) == 0x000180, "Member 'FWrestlerNavigableWidgetData::OuterSnapThresholdRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, InnerSnapThresholdRadius) == 0x000184, "Member 'FWrestlerNavigableWidgetData::InnerSnapThresholdRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, PreSnapHysteresis) == 0x000188, "Member 'FWrestlerNavigableWidgetData::PreSnapHysteresis' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, bSnapBKGIndependentlyWhenInFloatingMode) == 0x00018C, "Member 'FWrestlerNavigableWidgetData::bSnapBKGIndependentlyWhenInFloatingMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, SnapSpeed) == 0x000190, "Member 'FWrestlerNavigableWidgetData::SnapSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNavigableWidgetData, BKGSnapSpeed) == 0x000194, "Member 'FWrestlerNavigableWidgetData::BKGSnapSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerGameplayEffectContainerSpec \ +static_assert(alignof(FWrestlerGameplayEffectContainerSpec) == 0x000008, "Wrong alignment on FWrestlerGameplayEffectContainerSpec"); \ +static_assert(sizeof(FWrestlerGameplayEffectContainerSpec) == 0x000038, "Wrong size on FWrestlerGameplayEffectContainerSpec"); \ +static_assert(offsetof(FWrestlerGameplayEffectContainerSpec, TargetData) == 0x000000, "Member 'FWrestlerGameplayEffectContainerSpec::TargetData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGameplayEffectContainerSpec, TargetGameplayEffectSpecs) == 0x000028, "Member 'FWrestlerGameplayEffectContainerSpec::TargetGameplayEffectSpecs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerGameplayEffectContext \ +static_assert(alignof(FWrestlerGameplayEffectContext) == 0x000008, "Wrong alignment on FWrestlerGameplayEffectContext"); \ +static_assert(sizeof(FWrestlerGameplayEffectContext) == 0x0000A8, "Wrong size on FWrestlerGameplayEffectContext"); \ + +#define DUMPER7_ASSERTS_FWrestlerInteractableData \ +static_assert(alignof(FWrestlerInteractableData) == 0x000008, "Wrong alignment on FWrestlerInteractableData"); \ +static_assert(sizeof(FWrestlerInteractableData) == 0x000018, "Wrong size on FWrestlerInteractableData"); \ +static_assert(offsetof(FWrestlerInteractableData, Name) == 0x000000, "Member 'FWrestlerInteractableData::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrevAssignedSearchRoutes \ +static_assert(alignof(FPrevAssignedSearchRoutes) == 0x000008, "Wrong alignment on FPrevAssignedSearchRoutes"); \ +static_assert(sizeof(FPrevAssignedSearchRoutes) == 0x000010, "Wrong size on FPrevAssignedSearchRoutes"); \ + +#define DUMPER7_ASSERTS_FWrestlerActorOcclusionData \ +static_assert(alignof(FWrestlerActorOcclusionData) == 0x000008, "Wrong alignment on FWrestlerActorOcclusionData"); \ +static_assert(sizeof(FWrestlerActorOcclusionData) == 0x000040, "Wrong size on FWrestlerActorOcclusionData"); \ + +#define DUMPER7_ASSERTS_FWrestlerGenderAnimationData \ +static_assert(alignof(FWrestlerGenderAnimationData) == 0x000008, "Wrong alignment on FWrestlerGenderAnimationData"); \ +static_assert(sizeof(FWrestlerGenderAnimationData) == 0x000058, "Wrong size on FWrestlerGenderAnimationData"); \ +static_assert(offsetof(FWrestlerGenderAnimationData, ChanceToUseThisAnimations) == 0x000000, "Member 'FWrestlerGenderAnimationData::ChanceToUseThisAnimations' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGenderAnimationData, IdleAnimation) == 0x000008, "Member 'FWrestlerGenderAnimationData::IdleAnimation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerGenderAnimationData, LocomotionBlendspace) == 0x000030, "Member 'FWrestlerGenderAnimationData::LocomotionBlendspace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerActorsGameplayTargetDataFilter \ +static_assert(alignof(FWrestlerActorsGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerActorsGameplayTargetDataFilter"); \ +static_assert(sizeof(FWrestlerActorsGameplayTargetDataFilter) == 0x000030, "Wrong size on FWrestlerActorsGameplayTargetDataFilter"); \ +static_assert(offsetof(FWrestlerActorsGameplayTargetDataFilter, FilteredActors) == 0x000020, "Member 'FWrestlerActorsGameplayTargetDataFilter::FilteredActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerActorVisibilitySaveData \ +static_assert(alignof(FWrestlerActorVisibilitySaveData) == 0x000001, "Wrong alignment on FWrestlerActorVisibilitySaveData"); \ +static_assert(sizeof(FWrestlerActorVisibilitySaveData) == 0x000003, "Wrong size on FWrestlerActorVisibilitySaveData"); \ +static_assert(offsetof(FWrestlerActorVisibilitySaveData, Visibility) == 0x000000, "Member 'FWrestlerActorVisibilitySaveData::Visibility' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerActorVisibilitySaveData, Collision) == 0x000001, "Member 'FWrestlerActorVisibilitySaveData::Collision' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerActorVisibilitySaveData, bPropagateToAttachedActors) == 0x000002, "Member 'FWrestlerActorVisibilitySaveData::bPropagateToAttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerActorVisibilities \ +static_assert(alignof(FWrestlerActorVisibilities) == 0x000008, "Wrong alignment on FWrestlerActorVisibilities"); \ +static_assert(sizeof(FWrestlerActorVisibilities) == 0x000050, "Wrong size on FWrestlerActorVisibilities"); \ +static_assert(offsetof(FWrestlerActorVisibilities, Actors) == 0x000000, "Member 'FWrestlerActorVisibilities::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEntityCloseToLocationCompareInstanceData \ +static_assert(alignof(FWrestlerEntityCloseToLocationCompareInstanceData) == 0x000008, "Wrong alignment on FWrestlerEntityCloseToLocationCompareInstanceData"); \ +static_assert(sizeof(FWrestlerEntityCloseToLocationCompareInstanceData) == 0x000018, "Wrong size on FWrestlerEntityCloseToLocationCompareInstanceData"); \ +static_assert(offsetof(FWrestlerEntityCloseToLocationCompareInstanceData, Location) == 0x000000, "Member 'FWrestlerEntityCloseToLocationCompareInstanceData::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAvoidanceFragment \ +static_assert(alignof(FWrestlerAvoidanceFragment) == 0x000008, "Wrong alignment on FWrestlerAvoidanceFragment"); \ +static_assert(sizeof(FWrestlerAvoidanceFragment) == 0x000040, "Wrong size on FWrestlerAvoidanceFragment"); \ +static_assert(offsetof(FWrestlerAvoidanceFragment, MoveTargetOffsetSize) == 0x000000, "Member 'FWrestlerAvoidanceFragment::MoveTargetOffsetSize' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAvoidanceFragment, MoveTargetOffset) == 0x000008, "Member 'FWrestlerAvoidanceFragment::MoveTargetOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAIStimulusEvent \ +static_assert(alignof(FWrestlerAIStimulusEvent) == 0x000008, "Wrong alignment on FWrestlerAIStimulusEvent"); \ +static_assert(sizeof(FWrestlerAIStimulusEvent) == 0x000030, "Wrong size on FWrestlerAIStimulusEvent"); \ +static_assert(offsetof(FWrestlerAIStimulusEvent, Age) == 0x000000, "Member 'FWrestlerAIStimulusEvent::Age' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAIStimulusEvent, SenseLocation) == 0x000008, "Member 'FWrestlerAIStimulusEvent::SenseLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAIStimulusEvent, Instigator) == 0x000020, "Member 'FWrestlerAIStimulusEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAIStimulusEvent, Tag) == 0x000028, "Member 'FWrestlerAIStimulusEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPassWitnessData \ +static_assert(alignof(FWrestlerPassWitnessData) == 0x000008, "Wrong alignment on FWrestlerPassWitnessData"); \ +static_assert(sizeof(FWrestlerPassWitnessData) == 0x000028, "Wrong size on FWrestlerPassWitnessData"); \ + +#define DUMPER7_ASSERTS_FWrestlerVisionRectangle \ +static_assert(alignof(FWrestlerVisionRectangle) == 0x000004, "Wrong alignment on FWrestlerVisionRectangle"); \ +static_assert(sizeof(FWrestlerVisionRectangle) == 0x00000C, "Wrong size on FWrestlerVisionRectangle"); \ +static_assert(offsetof(FWrestlerVisionRectangle, Width) == 0x000000, "Member 'FWrestlerVisionRectangle::Width' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerVisionRectangle, Height) == 0x000004, "Member 'FWrestlerVisionRectangle::Height' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerVisionRectangle, FwdOffset) == 0x000008, "Member 'FWrestlerVisionRectangle::FwdOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerVisionPane \ +static_assert(alignof(FWrestlerVisionPane) == 0x000008, "Wrong alignment on FWrestlerVisionPane"); \ +static_assert(sizeof(FWrestlerVisionPane) == 0x000060, "Wrong size on FWrestlerVisionPane"); \ + +#define DUMPER7_ASSERTS_FWrestlerPercentChance \ +static_assert(alignof(FWrestlerPercentChance) == 0x000004, "Wrong alignment on FWrestlerPercentChance"); \ +static_assert(sizeof(FWrestlerPercentChance) == 0x000004, "Wrong size on FWrestlerPercentChance"); \ +static_assert(offsetof(FWrestlerPercentChance, PercentChance) == 0x000000, "Member 'FWrestlerPercentChance::PercentChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFrustumPoints \ +static_assert(alignof(FWrestlerFrustumPoints) == 0x000008, "Wrong alignment on FWrestlerFrustumPoints"); \ +static_assert(sizeof(FWrestlerFrustumPoints) == 0x0000C0, "Wrong size on FWrestlerFrustumPoints"); \ + +#define DUMPER7_ASSERTS_FWrestlerModifyMassTags \ +static_assert(alignof(FWrestlerModifyMassTags) == 0x000008, "Wrong alignment on FWrestlerModifyMassTags"); \ +static_assert(sizeof(FWrestlerModifyMassTags) == 0x000048, "Wrong size on FWrestlerModifyMassTags"); \ +static_assert(offsetof(FWrestlerModifyMassTags, TagsToAdd) == 0x000020, "Member 'FWrestlerModifyMassTags::TagsToAdd' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModifyMassTags, TagsToRemove) == 0x000030, "Member 'FWrestlerModifyMassTags::TagsToRemove' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModifyMassTags, bRevertOnExit) == 0x000040, "Member 'FWrestlerModifyMassTags::bRevertOnExit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassNavMeshProjectionBounds \ +static_assert(alignof(FWrestlerMassNavMeshProjectionBounds) == 0x000008, "Wrong alignment on FWrestlerMassNavMeshProjectionBounds"); \ +static_assert(sizeof(FWrestlerMassNavMeshProjectionBounds) == 0x000030, "Wrong size on FWrestlerMassNavMeshProjectionBounds"); \ +static_assert(offsetof(FWrestlerMassNavMeshProjectionBounds, BoxOffset) == 0x000000, "Member 'FWrestlerMassNavMeshProjectionBounds::BoxOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassNavMeshProjectionBounds, BoxExtent) == 0x000018, "Member 'FWrestlerMassNavMeshProjectionBounds::BoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMoveTo \ +static_assert(alignof(FWrestlerMassMoveTo) == 0x000008, "Wrong alignment on FWrestlerMassMoveTo"); \ +static_assert(sizeof(FWrestlerMassMoveTo) == 0x000068, "Wrong size on FWrestlerMassMoveTo"); \ +static_assert(offsetof(FWrestlerMassMoveTo, AcceptableDistance) == 0x00003C, "Member 'FWrestlerMassMoveTo::AcceptableDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, bAllowPartialPath) == 0x000040, "Member 'FWrestlerMassMoveTo::bAllowPartialPath' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, MoveSuccessCondition) == 0x000041, "Member 'FWrestlerMassMoveTo::MoveSuccessCondition' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, PathUpdateType) == 0x000042, "Member 'FWrestlerMassMoveTo::PathUpdateType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, NavigationType) == 0x000043, "Member 'FWrestlerMassMoveTo::NavigationType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, ZoneGraphSearchRange) == 0x000044, "Member 'FWrestlerMassMoveTo::ZoneGraphSearchRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, UpdateRate) == 0x000048, "Member 'FWrestlerMassMoveTo::UpdateRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, MoveDistanceToRefreshPath) == 0x00004C, "Member 'FWrestlerMassMoveTo::MoveDistanceToRefreshPath' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, ProjectPointToNavMeshBoundsData) == 0x000050, "Member 'FWrestlerMassMoveTo::ProjectPointToNavMeshBoundsData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMoveTo, NavMeshQueryFilterClass) == 0x000060, "Member 'FWrestlerMassMoveTo::NavMeshQueryFilterClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveToLocation \ +static_assert(alignof(FWrestlerMoveToLocation) == 0x000008, "Wrong alignment on FWrestlerMoveToLocation"); \ +static_assert(sizeof(FWrestlerMoveToLocation) == 0x000070, "Wrong size on FWrestlerMoveToLocation"); \ +static_assert(offsetof(FWrestlerMoveToLocation, MinimalDistance) == 0x000068, "Member 'FWrestlerMoveToLocation::MinimalDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveToEntity \ +static_assert(alignof(FWrestlerMoveToEntity) == 0x000008, "Wrong alignment on FWrestlerMoveToEntity"); \ +static_assert(sizeof(FWrestlerMoveToEntity) == 0x000070, "Wrong size on FWrestlerMoveToEntity"); \ + +#define DUMPER7_ASSERTS_FWrestlerAIAttractionEvent \ +static_assert(alignof(FWrestlerAIAttractionEvent) == 0x000008, "Wrong alignment on FWrestlerAIAttractionEvent"); \ +static_assert(sizeof(FWrestlerAIAttractionEvent) == 0x000038, "Wrong size on FWrestlerAIAttractionEvent"); \ +static_assert(offsetof(FWrestlerAIAttractionEvent, BaseEvent) == 0x000000, "Member 'FWrestlerAIAttractionEvent::BaseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDigestedAttractionProperties \ +static_assert(alignof(FDigestedAttractionProperties) == 0x000001, "Wrong alignment on FDigestedAttractionProperties"); \ +static_assert(sizeof(FDigestedAttractionProperties) == 0x000001, "Wrong size on FDigestedAttractionProperties"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityPersistentDataFragment \ +static_assert(alignof(FWrestlerMassEntityPersistentDataFragment) == 0x000008, "Wrong alignment on FWrestlerMassEntityPersistentDataFragment"); \ +static_assert(sizeof(FWrestlerMassEntityPersistentDataFragment) == 0x000040, "Wrong size on FWrestlerMassEntityPersistentDataFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerAIFearEvent \ +static_assert(alignof(FWrestlerAIFearEvent) == 0x000008, "Wrong alignment on FWrestlerAIFearEvent"); \ +static_assert(sizeof(FWrestlerAIFearEvent) == 0x000038, "Wrong size on FWrestlerAIFearEvent"); \ +static_assert(offsetof(FWrestlerAIFearEvent, BaseEvent) == 0x000000, "Member 'FWrestlerAIFearEvent::BaseEvent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAIFearEvent, FearStrength) == 0x000030, "Member 'FWrestlerAIFearEvent::FearStrength' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAIFearEvent, MaxRange) == 0x000034, "Member 'FWrestlerAIFearEvent::MaxRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerConversationDialogueInfo \ +static_assert(alignof(FWrestlerConversationDialogueInfo) == 0x000008, "Wrong alignment on FWrestlerConversationDialogueInfo"); \ +static_assert(sizeof(FWrestlerConversationDialogueInfo) == 0x000010, "Wrong size on FWrestlerConversationDialogueInfo"); \ +static_assert(offsetof(FWrestlerConversationDialogueInfo, DialogueInfo) == 0x000000, "Member 'FWrestlerConversationDialogueInfo::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConversationDialogueInfo, AmbientInfo) == 0x000008, "Member 'FWrestlerConversationDialogueInfo::AmbientInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerConversationDialogues \ +static_assert(alignof(FWrestlerConversationDialogues) == 0x000008, "Wrong alignment on FWrestlerConversationDialogues"); \ +static_assert(sizeof(FWrestlerConversationDialogues) == 0x000010, "Wrong size on FWrestlerConversationDialogues"); \ +static_assert(offsetof(FWrestlerConversationDialogues, Dialogues) == 0x000000, "Member 'FWrestlerConversationDialogues::Dialogues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAIFearActor \ +static_assert(alignof(FWrestlerAIFearActor) == 0x000008, "Wrong alignment on FWrestlerAIFearActor"); \ +static_assert(sizeof(FWrestlerAIFearActor) == 0x000010, "Wrong size on FWrestlerAIFearActor"); \ +static_assert(offsetof(FWrestlerAIFearActor, FearEmitter) == 0x000000, "Member 'FWrestlerAIFearActor::FearEmitter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDigestedFearProperties \ +static_assert(alignof(FDigestedFearProperties) == 0x000004, "Wrong alignment on FDigestedFearProperties"); \ +static_assert(sizeof(FDigestedFearProperties) == 0x000004, "Wrong size on FDigestedFearProperties"); \ + +#define DUMPER7_ASSERTS_FWrestlerAIRepulsionEvent \ +static_assert(alignof(FWrestlerAIRepulsionEvent) == 0x000008, "Wrong alignment on FWrestlerAIRepulsionEvent"); \ +static_assert(sizeof(FWrestlerAIRepulsionEvent) == 0x000038, "Wrong size on FWrestlerAIRepulsionEvent"); \ +static_assert(offsetof(FWrestlerAIRepulsionEvent, BaseEvent) == 0x000000, "Member 'FWrestlerAIRepulsionEvent::BaseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkinTone \ +static_assert(alignof(FSkinTone) == 0x000008, "Wrong alignment on FSkinTone"); \ +static_assert(sizeof(FSkinTone) == 0x000038, "Wrong size on FSkinTone"); \ +static_assert(offsetof(FSkinTone, HeadSkintoneMaterial) == 0x000000, "Member 'FSkinTone::HeadSkintoneMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSkinTone, ArmsSkintoneMaterial) == 0x000008, "Member 'FSkinTone::ArmsSkintoneMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSkinTone, BodySkintoneMaterial) == 0x000010, "Member 'FSkinTone::BodySkintoneMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSkinTone, LegsSkintoneMaterial) == 0x000018, "Member 'FSkinTone::LegsSkintoneMaterial' has a wrong offset!"); \ +static_assert(offsetof(FSkinTone, ToneValue) == 0x000020, "Member 'FSkinTone::ToneValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerNotificationData \ +static_assert(alignof(FWrestlerNotificationData) == 0x000008, "Wrong alignment on FWrestlerNotificationData"); \ +static_assert(sizeof(FWrestlerNotificationData) == 0x000058, "Wrong size on FWrestlerNotificationData"); \ +static_assert(offsetof(FWrestlerNotificationData, BigTitle) == 0x000000, "Member 'FWrestlerNotificationData::BigTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, SmallTitle) == 0x000018, "Member 'FWrestlerNotificationData::SmallTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, Timer) == 0x000030, "Member 'FWrestlerNotificationData::Timer' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, NotificationType) == 0x000034, "Member 'FWrestlerNotificationData::NotificationType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, SideNotificationIcon) == 0x000038, "Member 'FWrestlerNotificationData::SideNotificationIcon' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, ReactionType) == 0x000040, "Member 'FWrestlerNotificationData::ReactionType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, bHasShortcutTab) == 0x000041, "Member 'FWrestlerNotificationData::bHasShortcutTab' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, bShouldDismissOnShortcut) == 0x000042, "Member 'FWrestlerNotificationData::bShouldDismissOnShortcut' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, bShowXPFill) == 0x000043, "Member 'FWrestlerNotificationData::bShowXPFill' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, AssociatedRPGMenuTab) == 0x000044, "Member 'FWrestlerNotificationData::AssociatedRPGMenuTab' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNotificationData, CodexItemID) == 0x000048, "Member 'FWrestlerNotificationData::CodexItemID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAISightEvent \ +static_assert(alignof(FWrestlerAISightEvent) == 0x000008, "Wrong alignment on FWrestlerAISightEvent"); \ +static_assert(sizeof(FWrestlerAISightEvent) == 0x000058, "Wrong size on FWrestlerAISightEvent"); \ +static_assert(offsetof(FWrestlerAISightEvent, EventLocation) == 0x000008, "Member 'FWrestlerAISightEvent::EventLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISightEvent, PredictedLocation) == 0x000020, "Member 'FWrestlerAISightEvent::PredictedLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISightEvent, MaxRange) == 0x000038, "Member 'FWrestlerAISightEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISightEvent, Instigator) == 0x000040, "Member 'FWrestlerAISightEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAISightEvent, Tag) == 0x000048, "Member 'FWrestlerAISightEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDeferredEnemySpawnParam \ +static_assert(alignof(FWrestlerDeferredEnemySpawnParam) == 0x000008, "Wrong alignment on FWrestlerDeferredEnemySpawnParam"); \ +static_assert(sizeof(FWrestlerDeferredEnemySpawnParam) == 0x000038, "Wrong size on FWrestlerDeferredEnemySpawnParam"); \ +static_assert(offsetof(FWrestlerDeferredEnemySpawnParam, TagsToApply) == 0x000000, "Member 'FWrestlerDeferredEnemySpawnParam::TagsToApply' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDeferredEnemySpawnParam, EnemyTypeOverride) == 0x000020, "Member 'FWrestlerDeferredEnemySpawnParam::EnemyTypeOverride' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDeferredEnemySpawnParam, OnEnemySpawned) == 0x000028, "Member 'FWrestlerDeferredEnemySpawnParam::OnEnemySpawned' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAnimationFragment \ +static_assert(alignof(FWrestlerAnimationFragment) == 0x000004, "Wrong alignment on FWrestlerAnimationFragment"); \ +static_assert(sizeof(FWrestlerAnimationFragment) == 0x000018, "Wrong size on FWrestlerAnimationFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassQueuedTrace \ +static_assert(alignof(FWrestlerMassQueuedTrace) == 0x000008, "Wrong alignment on FWrestlerMassQueuedTrace"); \ +static_assert(sizeof(FWrestlerMassQueuedTrace) == 0x000040, "Wrong size on FWrestlerMassQueuedTrace"); \ +static_assert(offsetof(FWrestlerMassQueuedTrace, ActorsToIgnore) == 0x000030, "Member 'FWrestlerMassQueuedTrace::ActorsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMontageFragment \ +static_assert(alignof(FWrestlerMontageFragment) == 0x000010, "Wrong alignment on FWrestlerMontageFragment"); \ +static_assert(sizeof(FWrestlerMontageFragment) == 0x000170, "Wrong size on FWrestlerMontageFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerQuestProgressData \ +static_assert(alignof(FWrestlerQuestProgressData) == 0x000008, "Wrong alignment on FWrestlerQuestProgressData"); \ +static_assert(sizeof(FWrestlerQuestProgressData) == 0x000058, "Wrong size on FWrestlerQuestProgressData"); \ +static_assert(offsetof(FWrestlerQuestProgressData, ActiveQuestTitle) == 0x000000, "Member 'FWrestlerQuestProgressData::ActiveQuestTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestProgressData, ActiveQuestDescription) == 0x000018, "Member 'FWrestlerQuestProgressData::ActiveQuestDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestProgressData, ActiveQuestTag) == 0x000030, "Member 'FWrestlerQuestProgressData::ActiveQuestTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestProgressData, CompletedQuestTags) == 0x000038, "Member 'FWrestlerQuestProgressData::CompletedQuestTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQuestProgressData, OpenQuests) == 0x000048, "Member 'FWrestlerQuestProgressData::OpenQuests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVariationMontages \ +static_assert(alignof(FVariationMontages) == 0x000008, "Wrong alignment on FVariationMontages"); \ +static_assert(sizeof(FVariationMontages) == 0x000010, "Wrong size on FVariationMontages"); \ +static_assert(offsetof(FVariationMontages, Montages) == 0x000000, "Member 'FVariationMontages::Montages' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAudioSurfaceParameters \ +static_assert(alignof(FWrestlerAudioSurfaceParameters) == 0x000008, "Wrong alignment on FWrestlerAudioSurfaceParameters"); \ +static_assert(sizeof(FWrestlerAudioSurfaceParameters) == 0x000038, "Wrong size on FWrestlerAudioSurfaceParameters"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, BaseSurfaceSwitch) == 0x000000, "Member 'FWrestlerAudioSurfaceParameters::BaseSurfaceSwitch' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, CoverSurfaceSwitch) == 0x000008, "Member 'FWrestlerAudioSurfaceParameters::CoverSurfaceSwitch' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, CoverSurfaceAmount) == 0x000010, "Member 'FWrestlerAudioSurfaceParameters::CoverSurfaceAmount' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, RvtOnlyWetnessAmount) == 0x000014, "Member 'FWrestlerAudioSurfaceParameters::RvtOnlyWetnessAmount' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, BaseSurfaceType) == 0x000018, "Member 'FWrestlerAudioSurfaceParameters::BaseSurfaceType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, CoverSurfaceType) == 0x000019, "Member 'FWrestlerAudioSurfaceParameters::CoverSurfaceType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSurfaceParameters, CoverLocation) == 0x000020, "Member 'FWrestlerAudioSurfaceParameters::CoverLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAudioSplineRtpcModifier \ +static_assert(alignof(FWrestlerAudioSplineRtpcModifier) == 0x000008, "Wrong alignment on FWrestlerAudioSplineRtpcModifier"); \ +static_assert(sizeof(FWrestlerAudioSplineRtpcModifier) == 0x000020, "Wrong size on FWrestlerAudioSplineRtpcModifier"); \ +static_assert(offsetof(FWrestlerAudioSplineRtpcModifier, ModifierProperty) == 0x000000, "Member 'FWrestlerAudioSplineRtpcModifier::ModifierProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSplineRtpcModifier, StartIndex) == 0x000008, "Member 'FWrestlerAudioSplineRtpcModifier::StartIndex' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAudioSplineRtpcModifier, ModifierValues) == 0x000010, "Member 'FWrestlerAudioSplineRtpcModifier::ModifierValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCrimeNoticedFragment \ +static_assert(alignof(FWrestlerCrimeNoticedFragment) == 0x000008, "Wrong alignment on FWrestlerCrimeNoticedFragment"); \ +static_assert(sizeof(FWrestlerCrimeNoticedFragment) == 0x000008, "Wrong size on FWrestlerCrimeNoticedFragment"); \ + +#define DUMPER7_ASSERTS_FAudioImpact \ +static_assert(alignof(FAudioImpact) == 0x000008, "Wrong alignment on FAudioImpact"); \ +static_assert(sizeof(FAudioImpact) == 0x000130, "Wrong size on FAudioImpact"); \ +static_assert(offsetof(FAudioImpact, SurfaceType) == 0x000000, "Member 'FAudioImpact::SurfaceType' has a wrong offset!"); \ +static_assert(offsetof(FAudioImpact, Hit) == 0x000008, "Member 'FAudioImpact::Hit' has a wrong offset!"); \ +static_assert(offsetof(FAudioImpact, ImpactLocation) == 0x0000F0, "Member 'FAudioImpact::ImpactLocation' has a wrong offset!"); \ +static_assert(offsetof(FAudioImpact, ImpactNormal) == 0x000108, "Member 'FAudioImpact::ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(FAudioImpact, ImpactMagnitude) == 0x000120, "Member 'FAudioImpact::ImpactMagnitude' has a wrong offset!"); \ +static_assert(offsetof(FAudioImpact, ImpactTag) == 0x000124, "Member 'FAudioImpact::ImpactTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSignificanceBucket \ +static_assert(alignof(FWrestlerSignificanceBucket) == 0x000004, "Wrong alignment on FWrestlerSignificanceBucket"); \ +static_assert(sizeof(FWrestlerSignificanceBucket) == 0x00000C, "Wrong size on FWrestlerSignificanceBucket"); \ +static_assert(offsetof(FWrestlerSignificanceBucket, MaxDistance) == 0x000000, "Member 'FWrestlerSignificanceBucket::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceBucket, SignificanceValueOnScreen) == 0x000004, "Member 'FWrestlerSignificanceBucket::SignificanceValueOnScreen' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceBucket, SignificanceValueOffScreen) == 0x000008, "Member 'FWrestlerSignificanceBucket::SignificanceValueOffScreen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSignificanceEffect \ +static_assert(alignof(FWrestlerSignificanceEffect) == 0x000004, "Wrong alignment on FWrestlerSignificanceEffect"); \ +static_assert(sizeof(FWrestlerSignificanceEffect) == 0x000010, "Wrong size on FWrestlerSignificanceEffect"); \ +static_assert(offsetof(FWrestlerSignificanceEffect, MaxSignificance) == 0x000000, "Member 'FWrestlerSignificanceEffect::MaxSignificance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceEffect, OptimizationLevel) == 0x000004, "Member 'FWrestlerSignificanceEffect::OptimizationLevel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceEffect, TickRate) == 0x000008, "Member 'FWrestlerSignificanceEffect::TickRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceEffect, CullShadows) == 0x00000C, "Member 'FWrestlerSignificanceEffect::CullShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSignificanceBucketContainer \ +static_assert(alignof(FWrestlerSignificanceBucketContainer) == 0x000008, "Wrong alignment on FWrestlerSignificanceBucketContainer"); \ +static_assert(sizeof(FWrestlerSignificanceBucketContainer) == 0x000020, "Wrong size on FWrestlerSignificanceBucketContainer"); \ +static_assert(offsetof(FWrestlerSignificanceBucketContainer, SignificanceBuckets) == 0x000000, "Member 'FWrestlerSignificanceBucketContainer::SignificanceBuckets' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSignificanceBucketContainer, SignificanceEffects) == 0x000010, "Member 'FWrestlerSignificanceBucketContainer::SignificanceEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLastStimulusInfo \ +static_assert(alignof(FWrestlerLastStimulusInfo) == 0x000008, "Wrong alignment on FWrestlerLastStimulusInfo"); \ +static_assert(sizeof(FWrestlerLastStimulusInfo) == 0x000068, "Wrong size on FWrestlerLastStimulusInfo"); \ +static_assert(offsetof(FWrestlerLastStimulusInfo, StimulusActor) == 0x000000, "Member 'FWrestlerLastStimulusInfo::StimulusActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAwarenessFragment \ +static_assert(alignof(FWrestlerAwarenessFragment) == 0x000008, "Wrong alignment on FWrestlerAwarenessFragment"); \ +static_assert(sizeof(FWrestlerAwarenessFragment) == 0x0000D0, "Wrong size on FWrestlerAwarenessFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerAwarenessTrackingData \ +static_assert(alignof(FWrestlerAwarenessTrackingData) == 0x000008, "Wrong alignment on FWrestlerAwarenessTrackingData"); \ +static_assert(sizeof(FWrestlerAwarenessTrackingData) == 0x000078, "Wrong size on FWrestlerAwarenessTrackingData"); \ +static_assert(offsetof(FWrestlerAwarenessTrackingData, LastStimulus) == 0x000020, "Member 'FWrestlerAwarenessTrackingData::LastStimulus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSignalEntityInstanceData \ +static_assert(alignof(FWrestlerMassSignalEntityInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassSignalEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMassSignalEntityInstanceData) == 0x000004, "Wrong size on FWrestlerMassSignalEntityInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerAwarenessTagTrackingData \ +static_assert(alignof(FWrestlerAwarenessTagTrackingData) == 0x000008, "Wrong alignment on FWrestlerAwarenessTagTrackingData"); \ +static_assert(sizeof(FWrestlerAwarenessTagTrackingData) == 0x000018, "Wrong size on FWrestlerAwarenessTagTrackingData"); \ +static_assert(offsetof(FWrestlerAwarenessTagTrackingData, Actor) == 0x000010, "Member 'FWrestlerAwarenessTagTrackingData::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRPGMenuTabData \ +static_assert(alignof(FWrestlerRPGMenuTabData) == 0x000008, "Wrong alignment on FWrestlerRPGMenuTabData"); \ +static_assert(sizeof(FWrestlerRPGMenuTabData) == 0x000040, "Wrong size on FWrestlerRPGMenuTabData"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, TabId) == 0x000000, "Member 'FWrestlerRPGMenuTabData::TabId' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, TabTitle) == 0x000008, "Member 'FWrestlerRPGMenuTabData::TabTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, TabWidgetClass) == 0x000020, "Member 'FWrestlerRPGMenuTabData::TabWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, bCurrentlyAvailable) == 0x000028, "Member 'FWrestlerRPGMenuTabData::bCurrentlyAvailable' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, SettingCollectionName) == 0x00002C, "Member 'FWrestlerRPGMenuTabData::SettingCollectionName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRPGMenuTabData, PlayerMappingContext) == 0x000038, "Member 'FWrestlerRPGMenuTabData::PlayerMappingContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBipedFragment \ +static_assert(alignof(FWrestlerBipedFragment) == 0x000001, "Wrong alignment on FWrestlerBipedFragment"); \ +static_assert(sizeof(FWrestlerBipedFragment) == 0x000001, "Wrong size on FWrestlerBipedFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceEventActivatedInstanceData \ +static_assert(alignof(FWrestlerBloodResonanceEventActivatedInstanceData) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceEventActivatedInstanceData"); \ +static_assert(sizeof(FWrestlerBloodResonanceEventActivatedInstanceData) == 0x000020, "Wrong size on FWrestlerBloodResonanceEventActivatedInstanceData"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventActivatedInstanceData, ClaimedSlot) == 0x000000, "Member 'FWrestlerBloodResonanceEventActivatedInstanceData::ClaimedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceEventActivatedTask \ +static_assert(alignof(FWrestlerBloodResonanceEventActivatedTask) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceEventActivatedTask"); \ +static_assert(sizeof(FWrestlerBloodResonanceEventActivatedTask) == 0x000028, "Wrong size on FWrestlerBloodResonanceEventActivatedTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSmartObjectPropsFragment \ +static_assert(alignof(FWrestlerMassSmartObjectPropsFragment) == 0x000004, "Wrong alignment on FWrestlerMassSmartObjectPropsFragment"); \ +static_assert(sizeof(FWrestlerMassSmartObjectPropsFragment) == 0x000038, "Wrong size on FWrestlerMassSmartObjectPropsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceEventData \ +static_assert(alignof(FWrestlerBloodResonanceEventData) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceEventData"); \ +static_assert(sizeof(FWrestlerBloodResonanceEventData) == 0x000058, "Wrong size on FWrestlerBloodResonanceEventData"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, ParticipantType) == 0x000000, "Member 'FWrestlerBloodResonanceEventData::ParticipantType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, SmartObjectBlueprintToSpawn) == 0x000008, "Member 'FWrestlerBloodResonanceEventData::SmartObjectBlueprintToSpawn' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, EventName) == 0x000030, "Member 'FWrestlerBloodResonanceEventData::EventName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, BloodResSmartObjectTag) == 0x000038, "Member 'FWrestlerBloodResonanceEventData::BloodResSmartObjectTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, MaxNumSpawnedAtOneTime) == 0x000040, "Member 'FWrestlerBloodResonanceEventData::MaxNumSpawnedAtOneTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, PercentChance) == 0x000044, "Member 'FWrestlerBloodResonanceEventData::PercentChance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, MinTimeBetweenSpawns) == 0x000048, "Member 'FWrestlerBloodResonanceEventData::MinTimeBetweenSpawns' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, BloodResType) == 0x00004A, "Member 'FWrestlerBloodResonanceEventData::BloodResType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventData, BloodResonanceTag) == 0x00004C, "Member 'FWrestlerBloodResonanceEventData::BloodResonanceTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerStateParms \ +static_assert(alignof(FWrestlerPlayerStateParms) == 0x000004, "Wrong alignment on FWrestlerPlayerStateParms"); \ +static_assert(sizeof(FWrestlerPlayerStateParms) == 0x000014, "Wrong size on FWrestlerPlayerStateParms"); \ +static_assert(offsetof(FWrestlerPlayerStateParms, MaxHealth) == 0x000000, "Member 'FWrestlerPlayerStateParms::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerStateParms, MaxBlood) == 0x000004, "Member 'FWrestlerPlayerStateParms::MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerStateParms, AttackPower) == 0x000008, "Member 'FWrestlerPlayerStateParms::AttackPower' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerStateParms, HeavyFallSpeedThreshold) == 0x00000C, "Member 'FWrestlerPlayerStateParms::HeavyFallSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerStateParms, MaxHeightForFloorCast) == 0x000010, "Member 'FWrestlerPlayerStateParms::MaxHeightForFloorCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPawnParms \ +static_assert(alignof(FWrestlerPawnParms) == 0x000004, "Wrong alignment on FWrestlerPawnParms"); \ +static_assert(sizeof(FWrestlerPawnParms) == 0x000030, "Wrong size on FWrestlerPawnParms"); \ +static_assert(offsetof(FWrestlerPawnParms, StateParams) == 0x000000, "Member 'FWrestlerPawnParms::StateParams' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPawnParms, MovementParams) == 0x000014, "Member 'FWrestlerPawnParms::MovementParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceWaypointIcon \ +static_assert(alignof(FWrestlerBloodResonanceWaypointIcon) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceWaypointIcon"); \ +static_assert(sizeof(FWrestlerBloodResonanceWaypointIcon) == 0x000038, "Wrong size on FWrestlerBloodResonanceWaypointIcon"); \ +static_assert(offsetof(FWrestlerBloodResonanceWaypointIcon, WaypointTexture) == 0x000000, "Member 'FWrestlerBloodResonanceWaypointIcon::WaypointTexture' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceWaypointIcon, WaypointColor) == 0x000028, "Member 'FWrestlerBloodResonanceWaypointIcon::WaypointColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerChangeVisibilityCollisionInfo \ +static_assert(alignof(FWrestlerChangeVisibilityCollisionInfo) == 0x000008, "Wrong alignment on FWrestlerChangeVisibilityCollisionInfo"); \ +static_assert(sizeof(FWrestlerChangeVisibilityCollisionInfo) == 0x000018, "Wrong size on FWrestlerChangeVisibilityCollisionInfo"); \ +static_assert(offsetof(FWrestlerChangeVisibilityCollisionInfo, Actors) == 0x000000, "Member 'FWrestlerChangeVisibilityCollisionInfo::Actors' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerChangeVisibilityCollisionInfo, Visibility) == 0x000010, "Member 'FWrestlerChangeVisibilityCollisionInfo::Visibility' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerChangeVisibilityCollisionInfo, Collision) == 0x000011, "Member 'FWrestlerChangeVisibilityCollisionInfo::Collision' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerChangeVisibilityCollisionInfo, bPropagateToAttachedActors) == 0x000012, "Member 'FWrestlerChangeVisibilityCollisionInfo::bPropagateToAttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerOutfitData \ +static_assert(alignof(FWrestlerOutfitData) == 0x000008, "Wrong alignment on FWrestlerOutfitData"); \ +static_assert(sizeof(FWrestlerOutfitData) == 0x0000A0, "Wrong size on FWrestlerOutfitData"); \ +static_assert(offsetof(FWrestlerOutfitData, CostumeTextureSmall) == 0x000000, "Member 'FWrestlerOutfitData::CostumeTextureSmall' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOutfitData, CostumeTexture) == 0x000028, "Member 'FWrestlerOutfitData::CostumeTexture' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOutfitData, CostumeMesh_FP) == 0x000050, "Member 'FWrestlerOutfitData::CostumeMesh_FP' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerOutfitData, CostumeMesh_TP) == 0x000078, "Member 'FWrestlerOutfitData::CostumeMesh_TP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCharacterCostumeDefinition \ +static_assert(alignof(FWrestlerCharacterCostumeDefinition) == 0x000008, "Wrong alignment on FWrestlerCharacterCostumeDefinition"); \ +static_assert(sizeof(FWrestlerCharacterCostumeDefinition) == 0x000020, "Wrong size on FWrestlerCharacterCostumeDefinition"); \ +static_assert(offsetof(FWrestlerCharacterCostumeDefinition, CostumeTextureSmall) == 0x000000, "Member 'FWrestlerCharacterCostumeDefinition::CostumeTextureSmall' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCharacterCostumeDefinition, CostumeTexture) == 0x000008, "Member 'FWrestlerCharacterCostumeDefinition::CostumeTexture' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCharacterCostumeDefinition, CostumeMesh_FP) == 0x000010, "Member 'FWrestlerCharacterCostumeDefinition::CostumeMesh_FP' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCharacterCostumeDefinition, CostumeMesh_TP) == 0x000018, "Member 'FWrestlerCharacterCostumeDefinition::CostumeMesh_TP' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSequenceContainer \ +static_assert(alignof(FSequenceContainer) == 0x000008, "Wrong alignment on FSequenceContainer"); \ +static_assert(sizeof(FSequenceContainer) == 0x000010, "Wrong size on FSequenceContainer"); \ +static_assert(offsetof(FSequenceContainer, Sequences) == 0x000000, "Member 'FSequenceContainer::Sequences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInteractionInput \ +static_assert(alignof(FWrestlerInteractionInput) == 0x000004, "Wrong alignment on FWrestlerInteractionInput"); \ +static_assert(sizeof(FWrestlerInteractionInput) == 0x000004, "Wrong size on FWrestlerInteractionInput"); \ + +#define DUMPER7_ASSERTS_FWrestlerControlInput \ +static_assert(alignof(FWrestlerControlInput) == 0x000008, "Wrong alignment on FWrestlerControlInput"); \ +static_assert(sizeof(FWrestlerControlInput) == 0x000020, "Wrong size on FWrestlerControlInput"); \ +static_assert(offsetof(FWrestlerControlInput, Move) == 0x000008, "Member 'FWrestlerControlInput::Move' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInput, MovementMode) == 0x000018, "Member 'FWrestlerControlInput::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInput, Interaction) == 0x00001C, "Member 'FWrestlerControlInput::Interaction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInput \ +static_assert(alignof(FWrestlerInput) == 0x000008, "Wrong alignment on FWrestlerInput"); \ +static_assert(sizeof(FWrestlerInput) == 0x000088, "Wrong size on FWrestlerInput"); \ +static_assert(offsetof(FWrestlerInput, Move) == 0x000000, "Member 'FWrestlerInput::Move' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInput, Look) == 0x000018, "Member 'FWrestlerInput::Look' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInput, LookRate) == 0x000030, "Member 'FWrestlerInput::LookRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInput, Control) == 0x000048, "Member 'FWrestlerInput::Control' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInput, Ability) == 0x000068, "Member 'FWrestlerInput::Ability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerControlledGameplayTargetDataFilter \ +static_assert(alignof(FWrestlerPlayerControlledGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerPlayerControlledGameplayTargetDataFilter"); \ +static_assert(sizeof(FWrestlerPlayerControlledGameplayTargetDataFilter) == 0x000020, "Wrong size on FWrestlerPlayerControlledGameplayTargetDataFilter"); \ + +#define DUMPER7_ASSERTS_FRangedProjectileParams \ +static_assert(alignof(FRangedProjectileParams) == 0x000008, "Wrong alignment on FRangedProjectileParams"); \ +static_assert(sizeof(FRangedProjectileParams) == 0x000060, "Wrong size on FRangedProjectileParams"); \ +static_assert(offsetof(FRangedProjectileParams, ProjectileClass) == 0x000000, "Member 'FRangedProjectileParams::ProjectileClass' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, StartLocation) == 0x000008, "Member 'FRangedProjectileParams::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, StartRotation) == 0x000020, "Member 'FRangedProjectileParams::StartRotation' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, Instigator) == 0x000038, "Member 'FRangedProjectileParams::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, ActorsToIgnore) == 0x000040, "Member 'FRangedProjectileParams::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, ProjectileDamage) == 0x000050, "Member 'FRangedProjectileParams::ProjectileDamage' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, Speed) == 0x000054, "Member 'FRangedProjectileParams::Speed' has a wrong offset!"); \ +static_assert(offsetof(FRangedProjectileParams, MaxDistance) == 0x000058, "Member 'FRangedProjectileParams::MaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCodexItemDetail \ +static_assert(alignof(FCodexItemDetail) == 0x000008, "Wrong alignment on FCodexItemDetail"); \ +static_assert(sizeof(FCodexItemDetail) == 0x000078, "Wrong size on FCodexItemDetail"); \ + +#define DUMPER7_ASSERTS_FWrestlerCodexPendingShowItem \ +static_assert(alignof(FWrestlerCodexPendingShowItem) == 0x000008, "Wrong alignment on FWrestlerCodexPendingShowItem"); \ +static_assert(sizeof(FWrestlerCodexPendingShowItem) == 0x000020, "Wrong size on FWrestlerCodexPendingShowItem"); \ +static_assert(offsetof(FWrestlerCodexPendingShowItem, bIsPending) == 0x000000, "Member 'FWrestlerCodexPendingShowItem::bIsPending' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCodexPendingShowItem, CodexItemID) == 0x000008, "Member 'FWrestlerCodexPendingShowItem::CodexItemID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCodexPendingShowItem, bIsMalkavian) == 0x000018, "Member 'FWrestlerCodexPendingShowItem::bIsMalkavian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCodex \ +static_assert(alignof(FWrestlerCodex) == 0x000008, "Wrong alignment on FWrestlerCodex"); \ +static_assert(sizeof(FWrestlerCodex) == 0x000058, "Wrong size on FWrestlerCodex"); \ +static_assert(offsetof(FWrestlerCodex, Root) == 0x000000, "Member 'FWrestlerCodex::Root' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCodex, DialogStoryMap) == 0x000008, "Member 'FWrestlerCodex::DialogStoryMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerSaveData \ +static_assert(alignof(FWrestlerPlayerSaveData) == 0x000008, "Wrong alignment on FWrestlerPlayerSaveData"); \ +static_assert(sizeof(FWrestlerPlayerSaveData) == 0x000098, "Wrong size on FWrestlerPlayerSaveData"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, PlayerStart) == 0x000000, "Member 'FWrestlerPlayerSaveData::PlayerStart' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, bCrouched) == 0x000020, "Member 'FWrestlerPlayerSaveData::bCrouched' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, PlayerClan) == 0x000021, "Member 'FWrestlerPlayerSaveData::PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, PlayerDifficulty) == 0x000022, "Member 'FWrestlerPlayerSaveData::PlayerDifficulty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, BlockedAbilities) == 0x000028, "Member 'FWrestlerPlayerSaveData::BlockedAbilities' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSaveData, PlayerAttributes) == 0x000048, "Member 'FWrestlerPlayerSaveData::PlayerAttributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRangedRotateConfig \ +static_assert(alignof(FWrestlerRangedRotateConfig) == 0x000008, "Wrong alignment on FWrestlerRangedRotateConfig"); \ +static_assert(sizeof(FWrestlerRangedRotateConfig) == 0x000028, "Wrong size on FWrestlerRangedRotateConfig"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, CatchupSpeed) == 0x000000, "Member 'FWrestlerRangedRotateConfig::CatchupSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, OffsetClamp) == 0x000004, "Member 'FWrestlerRangedRotateConfig::OffsetClamp' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, RotationRate) == 0x000008, "Member 'FWrestlerRangedRotateConfig::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, TurnCurve) == 0x000010, "Member 'FWrestlerRangedRotateConfig::TurnCurve' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, SocketName) == 0x000018, "Member 'FWrestlerRangedRotateConfig::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedRotateConfig, TargetHeightOffset) == 0x000020, "Member 'FWrestlerRangedRotateConfig::TargetHeightOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerModifyTagsInEntity \ +static_assert(alignof(FWrestlerModifyTagsInEntity) == 0x000008, "Wrong alignment on FWrestlerModifyTagsInEntity"); \ +static_assert(sizeof(FWrestlerModifyTagsInEntity) == 0x000050, "Wrong size on FWrestlerModifyTagsInEntity"); \ +static_assert(offsetof(FWrestlerModifyTagsInEntity, TagsToAdd) == 0x000028, "Member 'FWrestlerModifyTagsInEntity::TagsToAdd' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModifyTagsInEntity, TagsToRemove) == 0x000038, "Member 'FWrestlerModifyTagsInEntity::TagsToRemove' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModifyTagsInEntity, bSignalWhenTagsChanged) == 0x000048, "Member 'FWrestlerModifyTagsInEntity::bSignalWhenTagsChanged' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModifyTagsInEntity, bRevertOnExit) == 0x000049, "Member 'FWrestlerModifyTagsInEntity::bRevertOnExit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerConfirmationPromptData \ +static_assert(alignof(FWrestlerConfirmationPromptData) == 0x000008, "Wrong alignment on FWrestlerConfirmationPromptData"); \ +static_assert(sizeof(FWrestlerConfirmationPromptData) == 0x000050, "Wrong size on FWrestlerConfirmationPromptData"); \ +static_assert(offsetof(FWrestlerConfirmationPromptData, ConfirmationTitle) == 0x000000, "Member 'FWrestlerConfirmationPromptData::ConfirmationTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConfirmationPromptData, ConfirmationTextFirstLine) == 0x000018, "Member 'FWrestlerConfirmationPromptData::ConfirmationTextFirstLine' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConfirmationPromptData, ConfirmationTextSecondLine) == 0x000030, "Member 'FWrestlerConfirmationPromptData::ConfirmationTextSecondLine' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConfirmationPromptData, UseBothPromtButtons) == 0x000048, "Member 'FWrestlerConfirmationPromptData::UseBothPromtButtons' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerControlInputCue \ +static_assert(alignof(FWrestlerControlInputCue) == 0x000008, "Wrong alignment on FWrestlerControlInputCue"); \ +static_assert(sizeof(FWrestlerControlInputCue) == 0x000030, "Wrong size on FWrestlerControlInputCue"); \ +static_assert(offsetof(FWrestlerControlInputCue, Input) == 0x000000, "Member 'FWrestlerControlInputCue::Input' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInputCue, InputType) == 0x000001, "Member 'FWrestlerControlInputCue::InputType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInputCue, Time) == 0x000004, "Member 'FWrestlerControlInputCue::Time' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInputCue, Direction) == 0x000008, "Member 'FWrestlerControlInputCue::Direction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInputCue, MovementMode) == 0x000010, "Member 'FWrestlerControlInputCue::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControlInputCue, Cue) == 0x000020, "Member 'FWrestlerControlInputCue::Cue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCreditsIconRow \ +static_assert(alignof(FWrestlerCreditsIconRow) == 0x000008, "Wrong alignment on FWrestlerCreditsIconRow"); \ +static_assert(sizeof(FWrestlerCreditsIconRow) == 0x000050, "Wrong size on FWrestlerCreditsIconRow"); \ +static_assert(offsetof(FWrestlerCreditsIconRow, DisplayName) == 0x000008, "Member 'FWrestlerCreditsIconRow::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCreditsIconRow, ResourceObject) == 0x000020, "Member 'FWrestlerCreditsIconRow::ResourceObject' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCreditsIconRow, DesiredHeight) == 0x000048, "Member 'FWrestlerCreditsIconRow::DesiredHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerSightTest \ +static_assert(alignof(FWrestlerPlayerSightTest) == 0x000008, "Wrong alignment on FWrestlerPlayerSightTest"); \ +static_assert(sizeof(FWrestlerPlayerSightTest) == 0x000030, "Wrong size on FWrestlerPlayerSightTest"); \ +static_assert(offsetof(FWrestlerPlayerSightTest, EyeHeight) == 0x000028, "Member 'FWrestlerPlayerSightTest::EyeHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerSightTest, MaxDistance) == 0x00002C, "Member 'FWrestlerPlayerSightTest::MaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCreditsRow \ +static_assert(alignof(FWrestlerCreditsRow) == 0x000008, "Wrong alignment on FWrestlerCreditsRow"); \ +static_assert(sizeof(FWrestlerCreditsRow) == 0x000030, "Wrong size on FWrestlerCreditsRow"); \ +static_assert(offsetof(FWrestlerCreditsRow, CreditText1) == 0x000008, "Member 'FWrestlerCreditsRow::CreditText1' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCreditsRow, CreditText2) == 0x000018, "Member 'FWrestlerCreditsRow::CreditText2' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerCreditsRow, CreditType) == 0x000028, "Member 'FWrestlerCreditsRow::CreditType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSearchLastKnownPosition \ +static_assert(alignof(FWrestlerSearchLastKnownPosition) == 0x000008, "Wrong alignment on FWrestlerSearchLastKnownPosition"); \ +static_assert(sizeof(FWrestlerSearchLastKnownPosition) == 0x000070, "Wrong size on FWrestlerSearchLastKnownPosition"); \ +static_assert(offsetof(FWrestlerSearchLastKnownPosition, SearchRadius) == 0x00006C, "Member 'FWrestlerSearchLastKnownPosition::SearchRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCrowdVisualizationFragment \ +static_assert(alignof(FWrestlerCrowdVisualizationFragment) == 0x000008, "Wrong alignment on FWrestlerCrowdVisualizationFragment"); \ +static_assert(sizeof(FWrestlerCrowdVisualizationFragment) == 0x000010, "Wrong size on FWrestlerCrowdVisualizationFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerCustomDepthPrimitiveEntry \ +static_assert(alignof(FWrestlerCustomDepthPrimitiveEntry) == 0x000008, "Wrong alignment on FWrestlerCustomDepthPrimitiveEntry"); \ +static_assert(sizeof(FWrestlerCustomDepthPrimitiveEntry) == 0x000010, "Wrong size on FWrestlerCustomDepthPrimitiveEntry"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassCoordinateSmartObjectInstanceData \ +static_assert(alignof(FWrestlerMassCoordinateSmartObjectInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassCoordinateSmartObjectInstanceData"); \ +static_assert(sizeof(FWrestlerMassCoordinateSmartObjectInstanceData) == 0x000004, "Wrong size on FWrestlerMassCoordinateSmartObjectInstanceData"); \ + +#define DUMPER7_ASSERTS_FApplyDamageParams \ +static_assert(alignof(FApplyDamageParams) == 0x000008, "Wrong alignment on FApplyDamageParams"); \ +static_assert(sizeof(FApplyDamageParams) == 0x000028, "Wrong size on FApplyDamageParams"); \ +static_assert(offsetof(FApplyDamageParams, DamageTag) == 0x000000, "Member 'FApplyDamageParams::DamageTag' has a wrong offset!"); \ +static_assert(offsetof(FApplyDamageParams, Instigator) == 0x000008, "Member 'FApplyDamageParams::Instigator' has a wrong offset!"); \ +static_assert(offsetof(FApplyDamageParams, DamageTypeTag) == 0x000010, "Member 'FApplyDamageParams::DamageTypeTag' has a wrong offset!"); \ +static_assert(offsetof(FApplyDamageParams, DeathBehaviourTag) == 0x000018, "Member 'FApplyDamageParams::DeathBehaviourTag' has a wrong offset!"); \ +static_assert(offsetof(FApplyDamageParams, bNoDeath) == 0x000020, "Member 'FApplyDamageParams::bNoDeath' has a wrong offset!"); \ +static_assert(offsetof(FApplyDamageParams, bShouldExecute) == 0x000021, "Member 'FApplyDamageParams::bShouldExecute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassCanBecomeWitness \ +static_assert(alignof(FWrestlerMassCanBecomeWitness) == 0x000008, "Wrong alignment on FWrestlerMassCanBecomeWitness"); \ +static_assert(sizeof(FWrestlerMassCanBecomeWitness) == 0x000028, "Wrong size on FWrestlerMassCanBecomeWitness"); \ +static_assert(offsetof(FWrestlerMassCanBecomeWitness, bInvert) == 0x000020, "Member 'FWrestlerMassCanBecomeWitness::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAimAssistTargetSettingsStruct \ +static_assert(alignof(FAimAssistTargetSettingsStruct) == 0x000008, "Wrong alignment on FAimAssistTargetSettingsStruct"); \ +static_assert(sizeof(FAimAssistTargetSettingsStruct) == 0x0000C0, "Wrong size on FAimAssistTargetSettingsStruct"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, TargetDistance) == 0x000000, "Member 'FAimAssistTargetSettingsStruct::TargetDistance' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, MinDegreeAngle) == 0x000004, "Member 'FAimAssistTargetSettingsStruct::MinDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, MaxDegreeAngle) == 0x000008, "Member 'FAimAssistTargetSettingsStruct::MaxDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, MaxPitchDegreeAngle) == 0x00000C, "Member 'FAimAssistTargetSettingsStruct::MaxPitchDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, DistanceWeightMultiplier) == 0x000010, "Member 'FAimAssistTargetSettingsStruct::DistanceWeightMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, AngleWeightMultiplier) == 0x000014, "Member 'FAimAssistTargetSettingsStruct::AngleWeightMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, MaxAnglePotentialTarget_ReticleOnly) == 0x000018, "Member 'FAimAssistTargetSettingsStruct::MaxAnglePotentialTarget_ReticleOnly' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, bShouldBeReachable) == 0x00001C, "Member 'FAimAssistTargetSettingsStruct::bShouldBeReachable' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, SphereOverlapQueryChannel) == 0x00001D, "Member 'FAimAssistTargetSettingsStruct::SphereOverlapQueryChannel' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, ReachableLineTraceQueryChannel) == 0x00001E, "Member 'FAimAssistTargetSettingsStruct::ReachableLineTraceQueryChannel' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, bShouldUseSocket) == 0x00001F, "Member 'FAimAssistTargetSettingsStruct::bShouldUseSocket' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, SocketName) == 0x000020, "Member 'FAimAssistTargetSettingsStruct::SocketName' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, PauseAimAssistTag) == 0x000028, "Member 'FAimAssistTargetSettingsStruct::PauseAimAssistTag' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, AimAssistActiveStateTag) == 0x000030, "Member 'FAimAssistTargetSettingsStruct::AimAssistActiveStateTag' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, AimAssistBlockedTags) == 0x000038, "Member 'FAimAssistTargetSettingsStruct::AimAssistBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, TargetLocationOffset) == 0x000058, "Member 'FAimAssistTargetSettingsStruct::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, MaxYawDegreeAngleForLockOn) == 0x000070, "Member 'FAimAssistTargetSettingsStruct::MaxYawDegreeAngleForLockOn' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, StrengthAlphaFadeTime) == 0x000074, "Member 'FAimAssistTargetSettingsStruct::StrengthAlphaFadeTime' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, PreLockOnYawStrength) == 0x000078, "Member 'FAimAssistTargetSettingsStruct::PreLockOnYawStrength' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, LockedOnYawStrength) == 0x00007C, "Member 'FAimAssistTargetSettingsStruct::LockedOnYawStrength' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, YawStrengthCurve) == 0x000080, "Member 'FAimAssistTargetSettingsStruct::YawStrengthCurve' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, bUsePitchLockedOn) == 0x000088, "Member 'FAimAssistTargetSettingsStruct::bUsePitchLockedOn' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, PreLockOnPitchStrength) == 0x00008C, "Member 'FAimAssistTargetSettingsStruct::PreLockOnPitchStrength' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, LockedOnPitchStrength) == 0x000090, "Member 'FAimAssistTargetSettingsStruct::LockedOnPitchStrength' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, PitchStrengthCurve) == 0x000098, "Member 'FAimAssistTargetSettingsStruct::PitchStrengthCurve' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, UnlockLookInputThreshold) == 0x0000A0, "Member 'FAimAssistTargetSettingsStruct::UnlockLookInputThreshold' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, UnlockPercentageOfTargetDistance) == 0x0000A4, "Member 'FAimAssistTargetSettingsStruct::UnlockPercentageOfTargetDistance' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, LockedOnReticleType) == 0x0000A8, "Member 'FAimAssistTargetSettingsStruct::LockedOnReticleType' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, ChosenTargetReticleType) == 0x0000B0, "Member 'FAimAssistTargetSettingsStruct::ChosenTargetReticleType' has a wrong offset!"); \ +static_assert(offsetof(FAimAssistTargetSettingsStruct, PotentialTargetReticleType) == 0x0000B8, "Member 'FAimAssistTargetSettingsStruct::PotentialTargetReticleType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLightningStrikeTierConfig \ +static_assert(alignof(FLightningStrikeTierConfig) == 0x000008, "Wrong alignment on FLightningStrikeTierConfig"); \ +static_assert(sizeof(FLightningStrikeTierConfig) == 0x0000D0, "Wrong size on FLightningStrikeTierConfig"); \ +static_assert(offsetof(FLightningStrikeTierConfig, TargetRange) == 0x000000, "Member 'FLightningStrikeTierConfig::TargetRange' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, MaxPunchCount) == 0x000004, "Member 'FLightningStrikeTierConfig::MaxPunchCount' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, TimeDilation) == 0x000008, "Member 'FLightningStrikeTierConfig::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, TargetTimeoutSeconds) == 0x00000C, "Member 'FLightningStrikeTierConfig::TargetTimeoutSeconds' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, LockOnTime) == 0x000010, "Member 'FLightningStrikeTierConfig::LockOnTime' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, SwitchTargetSearchAngle) == 0x000014, "Member 'FLightningStrikeTierConfig::SwitchTargetSearchAngle' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, MinAngle) == 0x000018, "Member 'FLightningStrikeTierConfig::MinAngle' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, MaxChainCount) == 0x00001C, "Member 'FLightningStrikeTierConfig::MaxChainCount' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, CriticalHitDamageAmount) == 0x000020, "Member 'FLightningStrikeTierConfig::CriticalHitDamageAmount' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, CriticalHitChancePercentage) == 0x000024, "Member 'FLightningStrikeTierConfig::CriticalHitChancePercentage' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, HitDamageAmount) == 0x000028, "Member 'FLightningStrikeTierConfig::HitDamageAmount' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, StunDamageAmount) == 0x000078, "Member 'FLightningStrikeTierConfig::StunDamageAmount' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, FearDuration) == 0x0000C8, "Member 'FLightningStrikeTierConfig::FearDuration' has a wrong offset!"); \ +static_assert(offsetof(FLightningStrikeTierConfig, FearStrength) == 0x0000CC, "Member 'FLightningStrikeTierConfig::FearStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnemyToSpawn \ +static_assert(alignof(FEnemyToSpawn) == 0x000008, "Wrong alignment on FEnemyToSpawn"); \ +static_assert(sizeof(FEnemyToSpawn) == 0x0000D8, "Wrong size on FEnemyToSpawn"); \ +static_assert(offsetof(FEnemyToSpawn, EnemyType) == 0x000000, "Member 'FEnemyToSpawn::EnemyType' has a wrong offset!"); \ +static_assert(offsetof(FEnemyToSpawn, WeaponDefinition) == 0x000028, "Member 'FEnemyToSpawn::WeaponDefinition' has a wrong offset!"); \ +static_assert(offsetof(FEnemyToSpawn, AnimationSet) == 0x000050, "Member 'FEnemyToSpawn::AnimationSet' has a wrong offset!"); \ +static_assert(offsetof(FEnemyToSpawn, MovementSet) == 0x000078, "Member 'FEnemyToSpawn::MovementSet' has a wrong offset!"); \ +static_assert(offsetof(FEnemyToSpawn, EnemyStats) == 0x0000A0, "Member 'FEnemyToSpawn::EnemyStats' has a wrong offset!"); \ +static_assert(offsetof(FEnemyToSpawn, AdditionalDefaultEffects) == 0x0000C8, "Member 'FEnemyToSpawn::AdditionalDefaultEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeadBodyData \ +static_assert(alignof(FWrestlerMassDeadBodyData) == 0x000008, "Wrong alignment on FWrestlerMassDeadBodyData"); \ +static_assert(sizeof(FWrestlerMassDeadBodyData) == 0x000060, "Wrong size on FWrestlerMassDeadBodyData"); \ + +#define DUMPER7_ASSERTS_FWrestlerDeadBodyInvestigators \ +static_assert(alignof(FWrestlerDeadBodyInvestigators) == 0x000008, "Wrong alignment on FWrestlerDeadBodyInvestigators"); \ +static_assert(sizeof(FWrestlerDeadBodyInvestigators) == 0x000028, "Wrong size on FWrestlerDeadBodyInvestigators"); \ +static_assert(offsetof(FWrestlerDeadBodyInvestigators, Investigator) == 0x000000, "Member 'FWrestlerDeadBodyInvestigators::Investigator' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDeadBodyInvestigators, PotentialInvestigators) == 0x000008, "Member 'FWrestlerDeadBodyInvestigators::PotentialInvestigators' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDeadBodyInvestigators, SeenBodyActors) == 0x000018, "Member 'FWrestlerDeadBodyInvestigators::SeenBodyActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetGameplayAbilityTagsInstanceData \ +static_assert(alignof(FWrestlerMassGetGameplayAbilityTagsInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetGameplayAbilityTagsInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetGameplayAbilityTagsInstanceData) == 0x000030, "Wrong size on FWrestlerMassGetGameplayAbilityTagsInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetGameplayAbilityTagsInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerMassGetGameplayAbilityTagsInstanceData::TargetEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetGameplayAbilityTagsInstanceData, OutTags) == 0x000010, "Member 'FWrestlerMassGetGameplayAbilityTagsInstanceData::OutTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDeadBodyObserverFragment \ +static_assert(alignof(FWrestlerDeadBodyObserverFragment) == 0x000008, "Wrong alignment on FWrestlerDeadBodyObserverFragment"); \ +static_assert(sizeof(FWrestlerDeadBodyObserverFragment) == 0x000028, "Wrong size on FWrestlerDeadBodyObserverFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerCameraPresent \ +static_assert(alignof(FWrestlerCameraPresent) == 0x000001, "Wrong alignment on FWrestlerCameraPresent"); \ +static_assert(sizeof(FWrestlerCameraPresent) == 0x000001, "Wrong size on FWrestlerCameraPresent"); \ + +#define DUMPER7_ASSERTS_FWrestlerDensityFragment \ +static_assert(alignof(FWrestlerDensityFragment) == 0x000008, "Wrong alignment on FWrestlerDensityFragment"); \ +static_assert(sizeof(FWrestlerDensityFragment) == 0x000048, "Wrong size on FWrestlerDensityFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDebugLODColors \ +static_assert(alignof(FWrestlerMassDebugLODColors) == 0x000008, "Wrong alignment on FWrestlerMassDebugLODColors"); \ +static_assert(sizeof(FWrestlerMassDebugLODColors) == 0x000010, "Wrong size on FWrestlerMassDebugLODColors"); \ +static_assert(offsetof(FWrestlerMassDebugLODColors, Colors) == 0x000000, "Member 'FWrestlerMassDebugLODColors::Colors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDialogueFragment \ +static_assert(alignof(FWrestlerDialogueFragment) == 0x000008, "Wrong alignment on FWrestlerDialogueFragment"); \ +static_assert(sizeof(FWrestlerDialogueFragment) == 0x000040, "Wrong size on FWrestlerDialogueFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationInfo \ +static_assert(alignof(FWrestlerMassConversationInfo) == 0x000008, "Wrong alignment on FWrestlerMassConversationInfo"); \ +static_assert(sizeof(FWrestlerMassConversationInfo) == 0x000020, "Wrong size on FWrestlerMassConversationInfo"); \ + +#define DUMPER7_ASSERTS_FWrestlerDialogueRequestInstanceData \ +static_assert(alignof(FWrestlerDialogueRequestInstanceData) == 0x000008, "Wrong alignment on FWrestlerDialogueRequestInstanceData"); \ +static_assert(sizeof(FWrestlerDialogueRequestInstanceData) == 0x000030, "Wrong size on FWrestlerDialogueRequestInstanceData"); \ +static_assert(offsetof(FWrestlerDialogueRequestInstanceData, Prompt) == 0x000000, "Member 'FWrestlerDialogueRequestInstanceData::Prompt' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDialogueRequestInstanceData, MainParticipant) == 0x000008, "Member 'FWrestlerDialogueRequestInstanceData::MainParticipant' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDialogueRequestInstanceData, OtherParticipant) == 0x000018, "Member 'FWrestlerDialogueRequestInstanceData::OtherParticipant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDialogueRequestTask \ +static_assert(alignof(FWrestlerDialogueRequestTask) == 0x000008, "Wrong alignment on FWrestlerDialogueRequestTask"); \ +static_assert(sizeof(FWrestlerDialogueRequestTask) == 0x000030, "Wrong size on FWrestlerDialogueRequestTask"); \ +static_assert(offsetof(FWrestlerDialogueRequestTask, FirstRequstDelay) == 0x000020, "Member 'FWrestlerDialogueRequestTask::FirstRequstDelay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDialogueRequestTask, RequestFrequency) == 0x000024, "Member 'FWrestlerDialogueRequestTask::RequestFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDialogueSaveDataV1 \ +static_assert(alignof(FWrestlerDialogueSaveDataV1) == 0x000008, "Wrong alignment on FWrestlerDialogueSaveDataV1"); \ +static_assert(sizeof(FWrestlerDialogueSaveDataV1) == 0x000050, "Wrong size on FWrestlerDialogueSaveDataV1"); \ +static_assert(offsetof(FWrestlerDialogueSaveDataV1, DialogueData) == 0x000000, "Member 'FWrestlerDialogueSaveDataV1::DialogueData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDebugTurningParameters \ +static_assert(alignof(FWrestlerMassDebugTurningParameters) == 0x000004, "Wrong alignment on FWrestlerMassDebugTurningParameters"); \ +static_assert(sizeof(FWrestlerMassDebugTurningParameters) == 0x000028, "Wrong size on FWrestlerMassDebugTurningParameters"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, QueryType) == 0x000000, "Member 'FWrestlerMassDebugTurningParameters::QueryType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bIncludeSOUsers) == 0x000001, "Member 'FWrestlerMassDebugTurningParameters::bIncludeSOUsers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, AveRate) == 0x000004, "Member 'FWrestlerMassDebugTurningParameters::AveRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, TurningAngle) == 0x000008, "Member 'FWrestlerMassDebugTurningParameters::TurningAngle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, MinSpeed) == 0x00000C, "Member 'FWrestlerMassDebugTurningParameters::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, VelMultiplier) == 0x000010, "Member 'FWrestlerMassDebugTurningParameters::VelMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, TurnedDisplayTime) == 0x000014, "Member 'FWrestlerMassDebugTurningParameters::TurnedDisplayTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, ControlledTurnDetectionTime) == 0x000018, "Member 'FWrestlerMassDebugTurningParameters::ControlledTurnDetectionTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bShowDirectionLogging) == 0x00001C, "Member 'FWrestlerMassDebugTurningParameters::bShowDirectionLogging' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bShowTurnPointLogging) == 0x00001D, "Member 'FWrestlerMassDebugTurningParameters::bShowTurnPointLogging' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bShowEntityOfInterest) == 0x00001E, "Member 'FWrestlerMassDebugTurningParameters::bShowEntityOfInterest' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, EntityOfInterest) == 0x000020, "Member 'FWrestlerMassDebugTurningParameters::EntityOfInterest' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bFollowEntityOfInterest) == 0x000024, "Member 'FWrestlerMassDebugTurningParameters::bFollowEntityOfInterest' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, bTeleportToLastTurnEntity) == 0x000025, "Member 'FWrestlerMassDebugTurningParameters::bTeleportToLastTurnEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, TeleportToTurnedNext) == 0x000026, "Member 'FWrestlerMassDebugTurningParameters::TeleportToTurnedNext' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugTurningParameters, TeleportToTurnedPrevious) == 0x000027, "Member 'FWrestlerMassDebugTurningParameters::TeleportToTurnedPrevious' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDialogueSaveDataV2 \ +static_assert(alignof(FWrestlerDialogueSaveDataV2) == 0x000008, "Wrong alignment on FWrestlerDialogueSaveDataV2"); \ +static_assert(sizeof(FWrestlerDialogueSaveDataV2) == 0x000050, "Wrong size on FWrestlerDialogueSaveDataV2"); \ +static_assert(offsetof(FWrestlerDialogueSaveDataV2, DialogueData) == 0x000000, "Member 'FWrestlerDialogueSaveDataV2::DialogueData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassBloodResonanceEventSpawnRequestFragment \ +static_assert(alignof(FWrestlerMassBloodResonanceEventSpawnRequestFragment) == 0x000010, "Wrong alignment on FWrestlerMassBloodResonanceEventSpawnRequestFragment"); \ +static_assert(sizeof(FWrestlerMassBloodResonanceEventSpawnRequestFragment) == 0x0000F0, "Wrong size on FWrestlerMassBloodResonanceEventSpawnRequestFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMusicSting \ +static_assert(alignof(FWrestlerMusicSting) == 0x000008, "Wrong alignment on FWrestlerMusicSting"); \ +static_assert(sizeof(FWrestlerMusicSting) == 0x000010, "Wrong size on FWrestlerMusicSting"); \ +static_assert(offsetof(FWrestlerMusicSting, TriggerEvent) == 0x000000, "Member 'FWrestlerMusicSting::TriggerEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTrackedEnemyProperties \ +static_assert(alignof(FWrestlerTrackedEnemyProperties) == 0x000004, "Wrong alignment on FWrestlerTrackedEnemyProperties"); \ +static_assert(sizeof(FWrestlerTrackedEnemyProperties) == 0x00000C, "Wrong size on FWrestlerTrackedEnemyProperties"); \ +static_assert(offsetof(FWrestlerTrackedEnemyProperties, ThreatLevel) == 0x000000, "Member 'FWrestlerTrackedEnemyProperties::ThreatLevel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTrackedEnemyProperties, DistanceSqr) == 0x000004, "Member 'FWrestlerTrackedEnemyProperties::DistanceSqr' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTrackedEnemyProperties, EnemyState) == 0x000008, "Member 'FWrestlerTrackedEnemyProperties::EnemyState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEnemyBehaviours \ +static_assert(alignof(FWrestlerEnemyBehaviours) == 0x000008, "Wrong alignment on FWrestlerEnemyBehaviours"); \ +static_assert(sizeof(FWrestlerEnemyBehaviours) == 0x000050, "Wrong size on FWrestlerEnemyBehaviours"); \ +static_assert(offsetof(FWrestlerEnemyBehaviours, EnemyBehaviourData) == 0x000000, "Member 'FWrestlerEnemyBehaviours::EnemyBehaviourData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMapBoundariesFragment \ +static_assert(alignof(FWrestlerMassMapBoundariesFragment) == 0x000010, "Wrong alignment on FWrestlerMassMapBoundariesFragment"); \ +static_assert(sizeof(FWrestlerMassMapBoundariesFragment) == 0x0000A0, "Wrong size on FWrestlerMassMapBoundariesFragment"); \ + +#define DUMPER7_ASSERTS_FGroupedPatrolPoints \ +static_assert(alignof(FGroupedPatrolPoints) == 0x000008, "Wrong alignment on FGroupedPatrolPoints"); \ +static_assert(sizeof(FGroupedPatrolPoints) == 0x000010, "Wrong size on FGroupedPatrolPoints"); \ +static_assert(offsetof(FGroupedPatrolPoints, GroupedPatrolPoints) == 0x000000, "Member 'FGroupedPatrolPoints::GroupedPatrolPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeadBodyInvestigated \ +static_assert(alignof(FWrestlerMassDeadBodyInvestigated) == 0x000008, "Wrong alignment on FWrestlerMassDeadBodyInvestigated"); \ +static_assert(sizeof(FWrestlerMassDeadBodyInvestigated) == 0x000028, "Wrong size on FWrestlerMassDeadBodyInvestigated"); \ + +#define DUMPER7_ASSERTS_FEnemySequenceData \ +static_assert(alignof(FEnemySequenceData) == 0x000008, "Wrong alignment on FEnemySequenceData"); \ +static_assert(sizeof(FEnemySequenceData) == 0x000038, "Wrong size on FEnemySequenceData"); \ +static_assert(offsetof(FEnemySequenceData, Sequence) == 0x000000, "Member 'FEnemySequenceData::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FEnemySequenceData, bSpawnSequence) == 0x000028, "Member 'FEnemySequenceData::bSpawnSequence' has a wrong offset!"); \ +static_assert(offsetof(FEnemySequenceData, SequenceBlendInTime) == 0x00002C, "Member 'FEnemySequenceData::SequenceBlendInTime' has a wrong offset!"); \ +static_assert(offsetof(FEnemySequenceData, SequenceBlendOutTime) == 0x000030, "Member 'FEnemySequenceData::SequenceBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(FEnemySequenceData, bInterruptable) == 0x000034, "Member 'FEnemySequenceData::bInterruptable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerConeParams \ +static_assert(alignof(FWrestlerConeParams) == 0x000004, "Wrong alignment on FWrestlerConeParams"); \ +static_assert(sizeof(FWrestlerConeParams) == 0x000010, "Wrong size on FWrestlerConeParams"); \ +static_assert(offsetof(FWrestlerConeParams, VerticalVisionAngle) == 0x000000, "Member 'FWrestlerConeParams::VerticalVisionAngle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConeParams, PeripheralVisionAngle) == 0x000004, "Member 'FWrestlerConeParams::PeripheralVisionAngle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConeParams, HorizontalRange) == 0x000008, "Member 'FWrestlerConeParams::HorizontalRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerConeParams, VerticalRange) == 0x00000C, "Member 'FWrestlerConeParams::VerticalRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEnemySquad \ +static_assert(alignof(FEnemySquad) == 0x000008, "Wrong alignment on FEnemySquad"); \ +static_assert(sizeof(FEnemySquad) == 0x000018, "Wrong size on FEnemySquad"); \ +static_assert(offsetof(FEnemySquad, Leader) == 0x000000, "Member 'FEnemySquad::Leader' has a wrong offset!"); \ +static_assert(offsetof(FEnemySquad, Followers) == 0x000008, "Member 'FEnemySquad::Followers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEntityAwarenessWidgetData \ +static_assert(alignof(FWrestlerEntityAwarenessWidgetData) == 0x000010, "Wrong alignment on FWrestlerEntityAwarenessWidgetData"); \ +static_assert(sizeof(FWrestlerEntityAwarenessWidgetData) == 0x0002B0, "Wrong size on FWrestlerEntityAwarenessWidgetData"); \ +static_assert(offsetof(FWrestlerEntityAwarenessWidgetData, AwarenessProgressBarStyle) == 0x000000, "Member 'FWrestlerEntityAwarenessWidgetData::AwarenessProgressBarStyle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityAwarenessWidgetData, AwarenessBackgroundColor) == 0x000290, "Member 'FWrestlerEntityAwarenessWidgetData::AwarenessBackgroundColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityAwarenessWidgetData, AwarenessBorderColor) == 0x0002A0, "Member 'FWrestlerEntityAwarenessWidgetData::AwarenessBorderColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilitySet_GrantedHandles \ +static_assert(alignof(FWrestlerAbilitySet_GrantedHandles) == 0x000008, "Wrong alignment on FWrestlerAbilitySet_GrantedHandles"); \ +static_assert(sizeof(FWrestlerAbilitySet_GrantedHandles) == 0x000020, "Wrong size on FWrestlerAbilitySet_GrantedHandles"); \ +static_assert(offsetof(FWrestlerAbilitySet_GrantedHandles, AbilitySpecHandles) == 0x000000, "Member 'FWrestlerAbilitySet_GrantedHandles::AbilitySpecHandles' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySet_GrantedHandles, GameplayEffectHandles) == 0x000010, "Member 'FWrestlerAbilitySet_GrantedHandles::GameplayEffectHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAppliedEquipmentEntry \ +static_assert(alignof(FWrestlerAppliedEquipmentEntry) == 0x000008, "Wrong alignment on FWrestlerAppliedEquipmentEntry"); \ +static_assert(sizeof(FWrestlerAppliedEquipmentEntry) == 0x000030, "Wrong size on FWrestlerAppliedEquipmentEntry"); \ +static_assert(offsetof(FWrestlerAppliedEquipmentEntry, EquipmentDefinition) == 0x000000, "Member 'FWrestlerAppliedEquipmentEntry::EquipmentDefinition' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAppliedEquipmentEntry, Instance) == 0x000008, "Member 'FWrestlerAppliedEquipmentEntry::Instance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAppliedEquipmentEntry, GrantedHandles) == 0x000010, "Member 'FWrestlerAppliedEquipmentEntry::GrantedHandles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMeshSlotList \ +static_assert(alignof(FWrestlerMassMeshSlotList) == 0x000008, "Wrong alignment on FWrestlerMassMeshSlotList"); \ +static_assert(sizeof(FWrestlerMassMeshSlotList) == 0x000010, "Wrong size on FWrestlerMassMeshSlotList"); \ +static_assert(offsetof(FWrestlerMassMeshSlotList, MeshesData) == 0x000000, "Member 'FWrestlerMassMeshSlotList::MeshesData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCompatibleCharacterEntry \ +static_assert(alignof(FWrestlerMassModularCompatibleCharacterEntry) == 0x000008, "Wrong alignment on FWrestlerMassModularCompatibleCharacterEntry"); \ +static_assert(sizeof(FWrestlerMassModularCompatibleCharacterEntry) == 0x000098, "Wrong size on FWrestlerMassModularCompatibleCharacterEntry"); \ +static_assert(offsetof(FWrestlerMassModularCompatibleCharacterEntry, Incompatabilities) == 0x000048, "Member 'FWrestlerMassModularCompatibleCharacterEntry::Incompatabilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerEquipmentList \ +static_assert(alignof(FWrestlerEquipmentList) == 0x000008, "Wrong alignment on FWrestlerEquipmentList"); \ +static_assert(sizeof(FWrestlerEquipmentList) == 0x000018, "Wrong size on FWrestlerEquipmentList"); \ +static_assert(offsetof(FWrestlerEquipmentList, Entries) == 0x000000, "Member 'FWrestlerEquipmentList::Entries' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEquipmentList, OwnerComponent) == 0x000010, "Member 'FWrestlerEquipmentList::OwnerComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDisableMovementInstanceData \ +static_assert(alignof(FWrestlerMassDisableMovementInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassDisableMovementInstanceData"); \ +static_assert(sizeof(FWrestlerMassDisableMovementInstanceData) == 0x000001, "Wrong size on FWrestlerMassDisableMovementInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerExclusionZoneFragment \ +static_assert(alignof(FWrestlerExclusionZoneFragment) == 0x000004, "Wrong alignment on FWrestlerExclusionZoneFragment"); \ +static_assert(sizeof(FWrestlerExclusionZoneFragment) == 0x00000C, "Wrong size on FWrestlerExclusionZoneFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerExponentialHeightFogParameters \ +static_assert(alignof(FWrestlerExponentialHeightFogParameters) == 0x000008, "Wrong alignment on FWrestlerExponentialHeightFogParameters"); \ +static_assert(sizeof(FWrestlerExponentialHeightFogParameters) == 0x0000A0, "Wrong size on FWrestlerExponentialHeightFogParameters"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, BlendTime) == 0x000000, "Member 'FWrestlerExponentialHeightFogParameters::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogDensity) == 0x000004, "Member 'FWrestlerExponentialHeightFogParameters::FogDensity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogInscatteringColor) == 0x000008, "Member 'FWrestlerExponentialHeightFogParameters::FogInscatteringColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogHeightFalloff) == 0x000018, "Member 'FWrestlerExponentialHeightFogParameters::FogHeightFalloff' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogMaxOpacity) == 0x00001C, "Member 'FWrestlerExponentialHeightFogParameters::FogMaxOpacity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, StartDistance) == 0x000020, "Member 'FWrestlerExponentialHeightFogParameters::StartDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogCutoffDistance) == 0x000024, "Member 'FWrestlerExponentialHeightFogParameters::FogCutoffDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, InscatteringColorCubemap) == 0x000028, "Member 'FWrestlerExponentialHeightFogParameters::InscatteringColorCubemap' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, InscatteringColorCubemapAngle) == 0x000030, "Member 'FWrestlerExponentialHeightFogParameters::InscatteringColorCubemapAngle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, InscatteringTextureTint) == 0x000034, "Member 'FWrestlerExponentialHeightFogParameters::InscatteringTextureTint' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FullyDirectionalInscatteringColorDistance) == 0x000044, "Member 'FWrestlerExponentialHeightFogParameters::FullyDirectionalInscatteringColorDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, NonDirectionalInscatteringColorDistance) == 0x000048, "Member 'FWrestlerExponentialHeightFogParameters::NonDirectionalInscatteringColorDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, DirectionalInscatteringExponent) == 0x00004C, "Member 'FWrestlerExponentialHeightFogParameters::DirectionalInscatteringExponent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, DirectionalInscatteringStartDistance) == 0x000050, "Member 'FWrestlerExponentialHeightFogParameters::DirectionalInscatteringStartDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, DirectionalInscatteringColor) == 0x000054, "Member 'FWrestlerExponentialHeightFogParameters::DirectionalInscatteringColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, bEnableVolumetricFog) == 0x000064, "Member 'FWrestlerExponentialHeightFogParameters::bEnableVolumetricFog' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, VolumetricFogScatteringDistribution) == 0x000068, "Member 'FWrestlerExponentialHeightFogParameters::VolumetricFogScatteringDistribution' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, VolumetricFogAlbedo) == 0x00006C, "Member 'FWrestlerExponentialHeightFogParameters::VolumetricFogAlbedo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, VolumetricFogEmissive) == 0x000070, "Member 'FWrestlerExponentialHeightFogParameters::VolumetricFogEmissive' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, VolumetricFogExtinctionScale) == 0x000080, "Member 'FWrestlerExponentialHeightFogParameters::VolumetricFogExtinctionScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, VolumetricFogDistance) == 0x000084, "Member 'FWrestlerExponentialHeightFogParameters::VolumetricFogDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerExponentialHeightFogParameters, FogActorLocation) == 0x000088, "Member 'FWrestlerExponentialHeightFogParameters::FogActorLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFearFragment \ +static_assert(alignof(FWrestlerFearFragment) == 0x000008, "Wrong alignment on FWrestlerFearFragment"); \ +static_assert(sizeof(FWrestlerFearFragment) == 0x000088, "Wrong size on FWrestlerFearFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterSlotData \ +static_assert(alignof(FWrestlerMassModularCharacterSlotData) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterSlotData"); \ +static_assert(sizeof(FWrestlerMassModularCharacterSlotData) == 0x000018, "Wrong size on FWrestlerMassModularCharacterSlotData"); \ +static_assert(offsetof(FWrestlerMassModularCharacterSlotData, MeshEntries) == 0x000000, "Member 'FWrestlerMassModularCharacterSlotData::MeshEntries' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterSlotData, bOptionalSlot) == 0x000010, "Member 'FWrestlerMassModularCharacterSlotData::bOptionalSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterData \ +static_assert(alignof(FWrestlerMassModularCharacterData) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterData"); \ +static_assert(sizeof(FWrestlerMassModularCharacterData) == 0x000050, "Wrong size on FWrestlerMassModularCharacterData"); \ +static_assert(offsetof(FWrestlerMassModularCharacterData, MeshesByBodyType) == 0x000000, "Member 'FWrestlerMassModularCharacterData::MeshesByBodyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterArchetype \ +static_assert(alignof(FWrestlerMassModularCharacterArchetype) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterArchetype"); \ +static_assert(sizeof(FWrestlerMassModularCharacterArchetype) == 0x000058, "Wrong size on FWrestlerMassModularCharacterArchetype"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetype, Gender) == 0x000000, "Member 'FWrestlerMassModularCharacterArchetype::Gender' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetype, PedestrianType) == 0x000001, "Member 'FWrestlerMassModularCharacterArchetype::PedestrianType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetype, Distribution) == 0x000002, "Member 'FWrestlerMassModularCharacterArchetype::Distribution' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetype, CharacterData) == 0x000008, "Member 'FWrestlerMassModularCharacterArchetype::CharacterData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterArchetypeGroup \ +static_assert(alignof(FWrestlerMassModularCharacterArchetypeGroup) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterArchetypeGroup"); \ +static_assert(sizeof(FWrestlerMassModularCharacterArchetypeGroup) == 0x000028, "Wrong size on FWrestlerMassModularCharacterArchetypeGroup"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetypeGroup, PedestrianArchetypes) == 0x000000, "Member 'FWrestlerMassModularCharacterArchetypeGroup::PedestrianArchetypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetypeGroup, Distribution) == 0x000010, "Member 'FWrestlerMassModularCharacterArchetypeGroup::Distribution' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassModularCharacterArchetypeGroup, GroupName) == 0x000018, "Member 'FWrestlerMassModularCharacterArchetypeGroup::GroupName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFindClosestEntityInstanceData \ +static_assert(alignof(FWrestlerFindClosestEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerFindClosestEntityInstanceData"); \ +static_assert(sizeof(FWrestlerFindClosestEntityInstanceData) == 0x000010, "Wrong size on FWrestlerFindClosestEntityInstanceData"); \ +static_assert(offsetof(FWrestlerFindClosestEntityInstanceData, EntityHandle) == 0x000000, "Member 'FWrestlerFindClosestEntityInstanceData::EntityHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeactivateBloodResonanceInstanceData \ +static_assert(alignof(FWrestlerMassDeactivateBloodResonanceInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassDeactivateBloodResonanceInstanceData"); \ +static_assert(sizeof(FWrestlerMassDeactivateBloodResonanceInstanceData) == 0x000001, "Wrong size on FWrestlerMassDeactivateBloodResonanceInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerEntityTagFilter \ +static_assert(alignof(FWrestlerEntityTagFilter) == 0x000008, "Wrong alignment on FWrestlerEntityTagFilter"); \ +static_assert(sizeof(FWrestlerEntityTagFilter) == 0x000030, "Wrong size on FWrestlerEntityTagFilter"); \ +static_assert(offsetof(FWrestlerEntityTagFilter, AnyTags) == 0x000000, "Member 'FWrestlerEntityTagFilter::AnyTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityTagFilter, AllTags) == 0x000010, "Member 'FWrestlerEntityTagFilter::AllTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerEntityTagFilter, NotTags) == 0x000020, "Member 'FWrestlerEntityTagFilter::NotTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFindClosestEntity \ +static_assert(alignof(FWrestlerFindClosestEntity) == 0x000008, "Wrong alignment on FWrestlerFindClosestEntity"); \ +static_assert(sizeof(FWrestlerFindClosestEntity) == 0x0000C0, "Wrong size on FWrestlerFindClosestEntity"); \ +static_assert(offsetof(FWrestlerFindClosestEntity, FilterTags) == 0x000028, "Member 'FWrestlerFindClosestEntity::FilterTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindClosestEntity, FilterFragments) == 0x000058, "Member 'FWrestlerFindClosestEntity::FilterFragments' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindClosestEntity, FilterGameplayTags) == 0x000088, "Member 'FWrestlerFindClosestEntity::FilterGameplayTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindClosestEntity, RefreshRate) == 0x0000B8, "Member 'FWrestlerFindClosestEntity::RefreshRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindClosestEntity, TendencyToChangeEntity) == 0x0000BC, "Member 'FWrestlerFindClosestEntity::TendencyToChangeEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetBloodResonanceActivationPromptInstanceData \ +static_assert(alignof(FWrestlerMassGetBloodResonanceActivationPromptInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassGetBloodResonanceActivationPromptInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetBloodResonanceActivationPromptInstanceData) == 0x000010, "Wrong size on FWrestlerMassGetBloodResonanceActivationPromptInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetBloodResonanceActivationPromptInstanceData, OutActivationPrompt) == 0x000000, "Member 'FWrestlerMassGetBloodResonanceActivationPromptInstanceData::OutActivationPrompt' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetBloodResonanceActivationPromptInstanceData, OutActiveIdlePrompt) == 0x000008, "Member 'FWrestlerMassGetBloodResonanceActivationPromptInstanceData::OutActiveIdlePrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveToLocationInstanceData \ +static_assert(alignof(FWrestlerMoveToLocationInstanceData) == 0x000008, "Wrong alignment on FWrestlerMoveToLocationInstanceData"); \ +static_assert(sizeof(FWrestlerMoveToLocationInstanceData) == 0x0000D0, "Wrong size on FWrestlerMoveToLocationInstanceData"); \ +static_assert(offsetof(FWrestlerMoveToLocationInstanceData, TargetLocation) == 0x0000B8, "Member 'FWrestlerMoveToLocationInstanceData::TargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveToEntityInstanceData \ +static_assert(alignof(FWrestlerMoveToEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMoveToEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMoveToEntityInstanceData) == 0x0000E0, "Wrong size on FWrestlerMoveToEntityInstanceData"); \ +static_assert(offsetof(FWrestlerMoveToEntityInstanceData, TargetEntity) == 0x0000D0, "Member 'FWrestlerMoveToEntityInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPairedEntityTypeParams \ +static_assert(alignof(FWrestlerMassPairedEntityTypeParams) == 0x000008, "Wrong alignment on FWrestlerMassPairedEntityTypeParams"); \ +static_assert(sizeof(FWrestlerMassPairedEntityTypeParams) == 0x000058, "Wrong size on FWrestlerMassPairedEntityTypeParams"); \ +static_assert(offsetof(FWrestlerMassPairedEntityTypeParams, bEnabled) == 0x000000, "Member 'FWrestlerMassPairedEntityTypeParams::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPairedEntityTypeParams, PerEntityPercentChance) == 0x000008, "Member 'FWrestlerMassPairedEntityTypeParams::PerEntityPercentChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityPairedEntityData \ +static_assert(alignof(FWrestlerMassEntityPairedEntityData) == 0x000008, "Wrong alignment on FWrestlerMassEntityPairedEntityData"); \ +static_assert(sizeof(FWrestlerMassEntityPairedEntityData) == 0x0000C0, "Wrong size on FWrestlerMassEntityPairedEntityData"); \ +static_assert(offsetof(FWrestlerMassEntityPairedEntityData, bAllowGlancing) == 0x000000, "Member 'FWrestlerMassEntityPairedEntityData::bAllowGlancing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPairedEntityData, GlanceParams) == 0x000008, "Member 'FWrestlerMassEntityPairedEntityData::GlanceParams' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPairedEntityData, bAllowSideBySidePairing) == 0x000060, "Member 'FWrestlerMassEntityPairedEntityData::bAllowSideBySidePairing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPairedEntityData, SideBySideParams) == 0x000068, "Member 'FWrestlerMassEntityPairedEntityData::SideBySideParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFindSmartObjectTask \ +static_assert(alignof(FWrestlerFindSmartObjectTask) == 0x000008, "Wrong alignment on FWrestlerFindSmartObjectTask"); \ +static_assert(sizeof(FWrestlerFindSmartObjectTask) == 0x000088, "Wrong size on FWrestlerFindSmartObjectTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerFindTargetNearPlayerInstanceData \ +static_assert(alignof(FWrestlerFindTargetNearPlayerInstanceData) == 0x000008, "Wrong alignment on FWrestlerFindTargetNearPlayerInstanceData"); \ +static_assert(sizeof(FWrestlerFindTargetNearPlayerInstanceData) == 0x000060, "Wrong size on FWrestlerFindTargetNearPlayerInstanceData"); \ +static_assert(offsetof(FWrestlerFindTargetNearPlayerInstanceData, NearPlayerTargetLocation) == 0x000000, "Member 'FWrestlerFindTargetNearPlayerInstanceData::NearPlayerTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFindTargetNearPlayer \ +static_assert(alignof(FWrestlerFindTargetNearPlayer) == 0x000008, "Wrong alignment on FWrestlerFindTargetNearPlayer"); \ +static_assert(sizeof(FWrestlerFindTargetNearPlayer) == 0x000038, "Wrong size on FWrestlerFindTargetNearPlayer"); \ +static_assert(offsetof(FWrestlerFindTargetNearPlayer, AllowedAnnotationTags) == 0x000024, "Member 'FWrestlerFindTargetNearPlayer::AllowedAnnotationTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindTargetNearPlayer, Range) == 0x000030, "Member 'FWrestlerFindTargetNearPlayer::Range' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindTargetNearPlayer, bLookAtPlayer) == 0x000034, "Member 'FWrestlerFindTargetNearPlayer::bLookAtPlayer' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFindTargetNearPlayer, bStopMoveAtPathEnd) == 0x000035, "Member 'FWrestlerFindTargetNearPlayer::bStopMoveAtPathEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGFindWanderTargetInstanceData \ +static_assert(alignof(FWrestlerZGFindWanderTargetInstanceData) == 0x000008, "Wrong alignment on FWrestlerZGFindWanderTargetInstanceData"); \ +static_assert(sizeof(FWrestlerZGFindWanderTargetInstanceData) == 0x000068, "Wrong size on FWrestlerZGFindWanderTargetInstanceData"); \ +static_assert(offsetof(FWrestlerZGFindWanderTargetInstanceData, WanderTargetLocation) == 0x000000, "Member 'FWrestlerZGFindWanderTargetInstanceData::WanderTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGFindWanderTargetInstanceData, bDoAdjacentLaneSwap) == 0x000060, "Member 'FWrestlerZGFindWanderTargetInstanceData::bDoAdjacentLaneSwap' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGFindWanderTargetInstanceData, AdjacentLanesSwapAheadDistance) == 0x000064, "Member 'FWrestlerZGFindWanderTargetInstanceData::AdjacentLanesSwapAheadDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFinishStateInstanceData \ +static_assert(alignof(FWrestlerFinishStateInstanceData) == 0x000001, "Wrong alignment on FWrestlerFinishStateInstanceData"); \ +static_assert(sizeof(FWrestlerFinishStateInstanceData) == 0x000001, "Wrong size on FWrestlerFinishStateInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMusicTagEventSectionTemplate \ +static_assert(alignof(FWrestlerMusicTagEventSectionTemplate) == 0x000008, "Wrong alignment on FWrestlerMusicTagEventSectionTemplate"); \ +static_assert(sizeof(FWrestlerMusicTagEventSectionTemplate) == 0x000030, "Wrong size on FWrestlerMusicTagEventSectionTemplate"); \ +static_assert(offsetof(FWrestlerMusicTagEventSectionTemplate, Section) == 0x000020, "Member 'FWrestlerMusicTagEventSectionTemplate::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerFinishState \ +static_assert(alignof(FWrestlerFinishState) == 0x000008, "Wrong alignment on FWrestlerFinishState"); \ +static_assert(sizeof(FWrestlerFinishState) == 0x000028, "Wrong size on FWrestlerFinishState"); \ +static_assert(offsetof(FWrestlerFinishState, bReturnSuccessOnFinish) == 0x000022, "Member 'FWrestlerFinishState::bReturnSuccessOnFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasFocusSetTag \ +static_assert(alignof(FWrestlerHasFocusSetTag) == 0x000001, "Wrong alignment on FWrestlerHasFocusSetTag"); \ +static_assert(sizeof(FWrestlerHasFocusSetTag) == 0x000001, "Wrong size on FWrestlerHasFocusSetTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerFocusFragment \ +static_assert(alignof(FWrestlerFocusFragment) == 0x000008, "Wrong alignment on FWrestlerFocusFragment"); \ +static_assert(sizeof(FWrestlerFocusFragment) == 0x000058, "Wrong size on FWrestlerFocusFragment"); \ +static_assert(offsetof(FWrestlerFocusFragment, FocusActor) == 0x000000, "Member 'FWrestlerFocusFragment::FocusActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerFocusFragment, FocusEntity) == 0x000008, "Member 'FWrestlerFocusFragment::FocusEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetEntityLocationInstanceData \ +static_assert(alignof(FWrestlerMassGetEntityLocationInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetEntityLocationInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetEntityLocationInstanceData) == 0x000028, "Wrong size on FWrestlerMassGetEntityLocationInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetEntityLocationInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerMassGetEntityLocationInstanceData::TargetEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetEntityLocationInstanceData, OutLocation) == 0x000010, "Member 'FWrestlerMassGetEntityLocationInstanceData::OutLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilityMoveTo \ +static_assert(alignof(FWrestlerAbilityMoveTo) == 0x000008, "Wrong alignment on FWrestlerAbilityMoveTo"); \ +static_assert(sizeof(FWrestlerAbilityMoveTo) == 0x000088, "Wrong size on FWrestlerAbilityMoveTo"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, TargetLocationOffset) == 0x000000, "Member 'FWrestlerAbilityMoveTo::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, MaximumHeightOffset) == 0x000018, "Member 'FWrestlerAbilityMoveTo::MaximumHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bMoveToFallingTarget) == 0x00001C, "Member 'FWrestlerAbilityMoveTo::bMoveToFallingTarget' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, OffsetAlignment) == 0x00001D, "Member 'FWrestlerAbilityMoveTo::OffsetAlignment' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, Delay) == 0x000020, "Member 'FWrestlerAbilityMoveTo::Delay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, Duration) == 0x000024, "Member 'FWrestlerAbilityMoveTo::Duration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, MaxRange) == 0x000028, "Member 'FWrestlerAbilityMoveTo::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, MinRange) == 0x00002C, "Member 'FWrestlerAbilityMoveTo::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, TargetLerpSpeedHorizontal) == 0x000030, "Member 'FWrestlerAbilityMoveTo::TargetLerpSpeedHorizontal' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, TargetLerpSpeedVertical) == 0x000038, "Member 'FWrestlerAbilityMoveTo::TargetLerpSpeedVertical' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bSetNewMovementMode) == 0x000040, "Member 'FWrestlerAbilityMoveTo::bSetNewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, MovementMode) == 0x000041, "Member 'FWrestlerAbilityMoveTo::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bRestrictSpeedToExpected) == 0x000042, "Member 'FWrestlerAbilityMoveTo::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, PathOffsetCurve) == 0x000048, "Member 'FWrestlerAbilityMoveTo::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, TimeMappingCurve) == 0x000050, "Member 'FWrestlerAbilityMoveTo::TimeMappingCurve' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, VelocityOnFinishMode) == 0x000058, "Member 'FWrestlerAbilityMoveTo::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, SetVelocityOnFinish) == 0x000060, "Member 'FWrestlerAbilityMoveTo::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, ClampVelocityOnFinish) == 0x000078, "Member 'FWrestlerAbilityMoveTo::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bDisableDestinationReachedInterrupt) == 0x00007C, "Member 'FWrestlerAbilityMoveTo::bDisableDestinationReachedInterrupt' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bCanTimeOut) == 0x00007D, "Member 'FWrestlerAbilityMoveTo::bCanTimeOut' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bInterruptBeforeDestinationReached) == 0x00007E, "Member 'FWrestlerAbilityMoveTo::bInterruptBeforeDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bMoveToWhenNotInRange) == 0x00007F, "Member 'FWrestlerAbilityMoveTo::bMoveToWhenNotInRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, VelocityWhenNotInRange) == 0x000080, "Member 'FWrestlerAbilityMoveTo::VelocityWhenNotInRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bIgnoreDodge) == 0x000084, "Member 'FWrestlerAbilityMoveTo::bIgnoreDodge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bIgnoreHeightFromDistanceCheck) == 0x000085, "Member 'FWrestlerAbilityMoveTo::bIgnoreHeightFromDistanceCheck' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bEnableGravity) == 0x000086, "Member 'FWrestlerAbilityMoveTo::bEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityMoveTo, bUseAIMoveTo) == 0x000087, "Member 'FWrestlerAbilityMoveTo::bUseAIMoveTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerNoiseResponseInstanceData \ +static_assert(alignof(FWrestlerNoiseResponseInstanceData) == 0x000008, "Wrong alignment on FWrestlerNoiseResponseInstanceData"); \ +static_assert(sizeof(FWrestlerNoiseResponseInstanceData) == 0x000030, "Wrong size on FWrestlerNoiseResponseInstanceData"); \ +static_assert(offsetof(FWrestlerNoiseResponseInstanceData, MoveDesiredLocation) == 0x000000, "Member 'FWrestlerNoiseResponseInstanceData::MoveDesiredLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerNoiseResponseInstanceData, NoiseLocation) == 0x000018, "Member 'FWrestlerNoiseResponseInstanceData::NoiseLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetActiveGameplayAbilityTaskInstanceData \ +static_assert(alignof(FWrestlerMassGetActiveGameplayAbilityTaskInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetActiveGameplayAbilityTaskInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetActiveGameplayAbilityTaskInstanceData) == 0x000020, "Wrong size on FWrestlerMassGetActiveGameplayAbilityTaskInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetActiveGameplayAbilityTaskInstanceData, ActiveAbilityTags) == 0x000000, "Member 'FWrestlerMassGetActiveGameplayAbilityTaskInstanceData::ActiveAbilityTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilityRotate \ +static_assert(alignof(FWrestlerAbilityRotate) == 0x000008, "Wrong alignment on FWrestlerAbilityRotate"); \ +static_assert(sizeof(FWrestlerAbilityRotate) == 0x000048, "Wrong size on FWrestlerAbilityRotate"); \ +static_assert(offsetof(FWrestlerAbilityRotate, LocationToFace) == 0x000000, "Member 'FWrestlerAbilityRotate::LocationToFace' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, RotatorOverride) == 0x000018, "Member 'FWrestlerAbilityRotate::RotatorOverride' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, Duration) == 0x000030, "Member 'FWrestlerAbilityRotate::Duration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, Precision) == 0x000034, "Member 'FWrestlerAbilityRotate::Precision' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, bUsePrecision) == 0x000038, "Member 'FWrestlerAbilityRotate::bUsePrecision' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, Delay) == 0x00003C, "Member 'FWrestlerAbilityRotate::Delay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, bIgnoreDodge) == 0x000040, "Member 'FWrestlerAbilityRotate::bIgnoreDodge' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilityRotate, bUseAISetFocus) == 0x000041, "Member 'FWrestlerAbilityRotate::bUseAISetFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayMontage \ +static_assert(alignof(FWrestlerPlayMontage) == 0x000008, "Wrong alignment on FWrestlerPlayMontage"); \ +static_assert(sizeof(FWrestlerPlayMontage) == 0x000020, "Wrong size on FWrestlerPlayMontage"); \ +static_assert(offsetof(FWrestlerPlayMontage, MontageToPlay) == 0x000000, "Member 'FWrestlerPlayMontage::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayMontage, Rate) == 0x000008, "Member 'FWrestlerPlayMontage::Rate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayMontage, StartSection) == 0x00000C, "Member 'FWrestlerPlayMontage::StartSection' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayMontage, bStopWhenAbilityEnds) == 0x000014, "Member 'FWrestlerPlayMontage::bStopWhenAbilityEnds' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayMontage, AnimRootMotionTranslationScale) == 0x000018, "Member 'FWrestlerPlayMontage::AnimRootMotionTranslationScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayMontage, StartTimeSeconds) == 0x00001C, "Member 'FWrestlerPlayMontage::StartTimeSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTeamHostility \ +static_assert(alignof(FWrestlerTeamHostility) == 0x000008, "Wrong alignment on FWrestlerTeamHostility"); \ +static_assert(sizeof(FWrestlerTeamHostility) == 0x000050, "Wrong size on FWrestlerTeamHostility"); \ +static_assert(offsetof(FWrestlerTeamHostility, TeamHostility) == 0x000000, "Member 'FWrestlerTeamHostility::TeamHostility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetIntoPositionParams \ +static_assert(alignof(FWrestlerMassGetIntoPositionParams) == 0x000008, "Wrong alignment on FWrestlerMassGetIntoPositionParams"); \ +static_assert(sizeof(FWrestlerMassGetIntoPositionParams) == 0x000028, "Wrong size on FWrestlerMassGetIntoPositionParams"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionParams, Montage) == 0x000000, "Member 'FWrestlerMassGetIntoPositionParams::Montage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionParams, TargetOffsetFromAnimStart) == 0x000008, "Member 'FWrestlerMassGetIntoPositionParams::TargetOffsetFromAnimStart' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionParams, DegreesTurn) == 0x000018, "Member 'FWrestlerMassGetIntoPositionParams::DegreesTurn' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionParams, SequenceName) == 0x00001C, "Member 'FWrestlerMassGetIntoPositionParams::SequenceName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerDebugKeyToCvarIntToggles \ +static_assert(alignof(FWrestlerDebugKeyToCvarIntToggles) == 0x000008, "Wrong alignment on FWrestlerDebugKeyToCvarIntToggles"); \ +static_assert(sizeof(FWrestlerDebugKeyToCvarIntToggles) == 0x000030, "Wrong size on FWrestlerDebugKeyToCvarIntToggles"); \ +static_assert(offsetof(FWrestlerDebugKeyToCvarIntToggles, Key) == 0x000000, "Member 'FWrestlerDebugKeyToCvarIntToggles::Key' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDebugKeyToCvarIntToggles, Cvar) == 0x000018, "Member 'FWrestlerDebugKeyToCvarIntToggles::Cvar' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerDebugKeyToCvarIntToggles, IsDebugMenuWithShiftForFocus) == 0x000028, "Member 'FWrestlerDebugKeyToCvarIntToggles::IsDebugMenuWithShiftForFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerObjectTagData \ +static_assert(alignof(FWrestlerObjectTagData) == 0x000008, "Wrong alignment on FWrestlerObjectTagData"); \ +static_assert(sizeof(FWrestlerObjectTagData) == 0x000020, "Wrong size on FWrestlerObjectTagData"); \ +static_assert(offsetof(FWrestlerObjectTagData, Tag) == 0x000000, "Member 'FWrestlerObjectTagData::Tag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerObjectTagData, Objects) == 0x000010, "Member 'FWrestlerObjectTagData::Objects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerObjectTagSaveData \ +static_assert(alignof(FWrestlerObjectTagSaveData) == 0x000008, "Wrong alignment on FWrestlerObjectTagSaveData"); \ +static_assert(sizeof(FWrestlerObjectTagSaveData) == 0x000050, "Wrong size on FWrestlerObjectTagSaveData"); \ +static_assert(offsetof(FWrestlerObjectTagSaveData, Data) == 0x000000, "Member 'FWrestlerObjectTagSaveData::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityCloseToPlayerInstanceData \ +static_assert(alignof(FWrestlerMassEntityCloseToPlayerInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassEntityCloseToPlayerInstanceData"); \ +static_assert(sizeof(FWrestlerMassEntityCloseToPlayerInstanceData) == 0x000001, "Wrong size on FWrestlerMassEntityCloseToPlayerInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerGetAttributeValueInstanceData \ +static_assert(alignof(FWrestlerGetAttributeValueInstanceData) == 0x000004, "Wrong alignment on FWrestlerGetAttributeValueInstanceData"); \ +static_assert(sizeof(FWrestlerGetAttributeValueInstanceData) == 0x000004, "Wrong size on FWrestlerGetAttributeValueInstanceData"); \ +static_assert(offsetof(FWrestlerGetAttributeValueInstanceData, AttributeValue) == 0x000000, "Member 'FWrestlerGetAttributeValueInstanceData::AttributeValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerGetAttributeValue \ +static_assert(alignof(FWrestlerGetAttributeValue) == 0x000008, "Wrong alignment on FWrestlerGetAttributeValue"); \ +static_assert(sizeof(FWrestlerGetAttributeValue) == 0x000060, "Wrong size on FWrestlerGetAttributeValue"); \ +static_assert(offsetof(FWrestlerGetAttributeValue, Attribute) == 0x000028, "Member 'FWrestlerGetAttributeValue::Attribute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasBloodResonanceTypeInstanceData \ +static_assert(alignof(FWrestlerHasBloodResonanceTypeInstanceData) == 0x000008, "Wrong alignment on FWrestlerHasBloodResonanceTypeInstanceData"); \ +static_assert(sizeof(FWrestlerHasBloodResonanceTypeInstanceData) == 0x000010, "Wrong size on FWrestlerHasBloodResonanceTypeInstanceData"); \ +static_assert(offsetof(FWrestlerHasBloodResonanceTypeInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerHasBloodResonanceTypeInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIgnoreActorCollisionWithPawnsTag \ +static_assert(alignof(FWrestlerMassIgnoreActorCollisionWithPawnsTag) == 0x000001, "Wrong alignment on FWrestlerMassIgnoreActorCollisionWithPawnsTag"); \ +static_assert(sizeof(FWrestlerMassIgnoreActorCollisionWithPawnsTag) == 0x000001, "Wrong size on FWrestlerMassIgnoreActorCollisionWithPawnsTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasBloodResonanceTypeCondition \ +static_assert(alignof(FWrestlerHasBloodResonanceTypeCondition) == 0x000008, "Wrong alignment on FWrestlerHasBloodResonanceTypeCondition"); \ +static_assert(sizeof(FWrestlerHasBloodResonanceTypeCondition) == 0x000028, "Wrong size on FWrestlerHasBloodResonanceTypeCondition"); \ +static_assert(offsetof(FWrestlerHasBloodResonanceTypeCondition, BloodType) == 0x000020, "Member 'FWrestlerHasBloodResonanceTypeCondition::BloodType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHasBloodResonanceTypeCondition, bInvert) == 0x000021, "Member 'FWrestlerHasBloodResonanceTypeCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGFindWanderTarget \ +static_assert(alignof(FWrestlerZGFindWanderTarget) == 0x000008, "Wrong alignment on FWrestlerZGFindWanderTarget"); \ +static_assert(sizeof(FWrestlerZGFindWanderTarget) == 0x000038, "Wrong size on FWrestlerZGFindWanderTarget"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasMassFragmentConditionInstanceData \ +static_assert(alignof(FWrestlerHasMassFragmentConditionInstanceData) == 0x000008, "Wrong alignment on FWrestlerHasMassFragmentConditionInstanceData"); \ +static_assert(sizeof(FWrestlerHasMassFragmentConditionInstanceData) == 0x000010, "Wrong size on FWrestlerHasMassFragmentConditionInstanceData"); \ +static_assert(offsetof(FWrestlerHasMassFragmentConditionInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerHasMassFragmentConditionInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasMassFragmentCondition \ +static_assert(alignof(FWrestlerHasMassFragmentCondition) == 0x000008, "Wrong alignment on FWrestlerHasMassFragmentCondition"); \ +static_assert(sizeof(FWrestlerHasMassFragmentCondition) == 0x000058, "Wrong size on FWrestlerHasMassFragmentCondition"); \ +static_assert(offsetof(FWrestlerHasMassFragmentCondition, bInvert) == 0x000020, "Member 'FWrestlerHasMassFragmentCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHasMassFragmentCondition, FilterTags) == 0x000028, "Member 'FWrestlerHasMassFragmentCondition::FilterTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasMassTagConditionInstanceData \ +static_assert(alignof(FWrestlerHasMassTagConditionInstanceData) == 0x000008, "Wrong alignment on FWrestlerHasMassTagConditionInstanceData"); \ +static_assert(sizeof(FWrestlerHasMassTagConditionInstanceData) == 0x000010, "Wrong size on FWrestlerHasMassTagConditionInstanceData"); \ +static_assert(offsetof(FWrestlerHasMassTagConditionInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerHasMassTagConditionInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceAssignment \ +static_assert(alignof(FWrestlerBloodResonanceAssignment) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceAssignment"); \ +static_assert(sizeof(FWrestlerBloodResonanceAssignment) == 0x000028, "Wrong size on FWrestlerBloodResonanceAssignment"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, Tag) == 0x000000, "Member 'FWrestlerBloodResonanceAssignment::Tag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, Weighting) == 0x000008, "Member 'FWrestlerBloodResonanceAssignment::Weighting' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, DialogueInfo) == 0x000010, "Member 'FWrestlerBloodResonanceAssignment::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, AmbientInfo) == 0x000018, "Member 'FWrestlerBloodResonanceAssignment::AmbientInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, bAllowConversations) == 0x000020, "Member 'FWrestlerBloodResonanceAssignment::bAllowConversations' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceAssignment, bAllowActivatedConversations) == 0x000021, "Member 'FWrestlerBloodResonanceAssignment::bAllowActivatedConversations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassBloodResonanceTypeInfo \ +static_assert(alignof(FWrestlerMassBloodResonanceTypeInfo) == 0x000008, "Wrong alignment on FWrestlerMassBloodResonanceTypeInfo"); \ +static_assert(sizeof(FWrestlerMassBloodResonanceTypeInfo) == 0x000030, "Wrong size on FWrestlerMassBloodResonanceTypeInfo"); \ +static_assert(offsetof(FWrestlerMassBloodResonanceTypeInfo, Assignment) == 0x000000, "Member 'FWrestlerMassBloodResonanceTypeInfo::Assignment' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassBloodResonanceTypeInfo, Type) == 0x000028, "Member 'FWrestlerMassBloodResonanceTypeInfo::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHasMassTagCondition \ +static_assert(alignof(FWrestlerHasMassTagCondition) == 0x000008, "Wrong alignment on FWrestlerHasMassTagCondition"); \ +static_assert(sizeof(FWrestlerHasMassTagCondition) == 0x000058, "Wrong size on FWrestlerHasMassTagCondition"); \ +static_assert(offsetof(FWrestlerHasMassTagCondition, bInvert) == 0x000020, "Member 'FWrestlerHasMassTagCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHasMassTagCondition, FilterTags) == 0x000028, "Member 'FWrestlerHasMassTagCondition::FilterTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntitySharedData \ +static_assert(alignof(FWrestlerMassEntitySharedData) == 0x000008, "Wrong alignment on FWrestlerMassEntitySharedData"); \ +static_assert(sizeof(FWrestlerMassEntitySharedData) == 0x000028, "Wrong size on FWrestlerMassEntitySharedData"); \ +static_assert(offsetof(FWrestlerMassEntitySharedData, ContextualAnimDataAsset) == 0x000000, "Member 'FWrestlerMassEntitySharedData::ContextualAnimDataAsset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntitySharedData, ModularCharacterProfiles) == 0x000008, "Member 'FWrestlerMassEntitySharedData::ModularCharacterProfiles' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntitySharedData, EnemyTypeName) == 0x000010, "Member 'FWrestlerMassEntitySharedData::EnemyTypeName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntitySharedData, UnconsciousAfterFeedTime) == 0x000018, "Member 'FWrestlerMassEntitySharedData::UnconsciousAfterFeedTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntitySharedData, FeedXPAwardTag) == 0x00001C, "Member 'FWrestlerMassEntitySharedData::FeedXPAwardTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntitySharedDataFragment \ +static_assert(alignof(FWrestlerMassEntitySharedDataFragment) == 0x000008, "Wrong alignment on FWrestlerMassEntitySharedDataFragment"); \ +static_assert(sizeof(FWrestlerMassEntitySharedDataFragment) == 0x000028, "Wrong size on FWrestlerMassEntitySharedDataFragment"); \ +static_assert(offsetof(FWrestlerMassEntitySharedDataFragment, SharedData) == 0x000000, "Member 'FWrestlerMassEntitySharedDataFragment::SharedData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHighlightUpdateData \ +static_assert(alignof(FWrestlerHighlightUpdateData) == 0x000008, "Wrong alignment on FWrestlerHighlightUpdateData"); \ +static_assert(sizeof(FWrestlerHighlightUpdateData) == 0x000048, "Wrong size on FWrestlerHighlightUpdateData"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, bIsOccluded) == 0x000000, "Member 'FWrestlerHighlightUpdateData::bIsOccluded' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, bInCombat) == 0x000001, "Member 'FWrestlerHighlightUpdateData::bInCombat' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, bIsWhereIsWally) == 0x000002, "Member 'FWrestlerHighlightUpdateData::bIsWhereIsWally' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, bResonanceTypeChanged) == 0x000003, "Member 'FWrestlerHighlightUpdateData::bResonanceTypeChanged' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, TypeTags) == 0x000008, "Member 'FWrestlerHighlightUpdateData::TypeTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, BloodResonanceType) == 0x000028, "Member 'FWrestlerHighlightUpdateData::BloodResonanceType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, BloodResonanceState) == 0x000029, "Member 'FWrestlerHighlightUpdateData::BloodResonanceState' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightUpdateData, Velocity) == 0x000030, "Member 'FWrestlerHighlightUpdateData::Velocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHighlightParticleData \ +static_assert(alignof(FWrestlerHighlightParticleData) == 0x000008, "Wrong alignment on FWrestlerHighlightParticleData"); \ +static_assert(sizeof(FWrestlerHighlightParticleData) == 0x000010, "Wrong size on FWrestlerHighlightParticleData"); \ +static_assert(offsetof(FWrestlerHighlightParticleData, ParticleActor) == 0x000000, "Member 'FWrestlerHighlightParticleData::ParticleActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHighlightVFXData \ +static_assert(alignof(FWrestlerHighlightVFXData) == 0x000008, "Wrong alignment on FWrestlerHighlightVFXData"); \ +static_assert(sizeof(FWrestlerHighlightVFXData) == 0x000078, "Wrong size on FWrestlerHighlightVFXData"); \ +static_assert(offsetof(FWrestlerHighlightVFXData, VFXActor) == 0x000000, "Member 'FWrestlerHighlightVFXData::VFXActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHighlightVFXData, EntitiesParticles) == 0x000028, "Member 'FWrestlerHighlightVFXData::EntitiesParticles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetClaimedSmartObjectLocationTask \ +static_assert(alignof(FWrestlerMassGetClaimedSmartObjectLocationTask) == 0x000008, "Wrong alignment on FWrestlerMassGetClaimedSmartObjectLocationTask"); \ +static_assert(sizeof(FWrestlerMassGetClaimedSmartObjectLocationTask) == 0x000028, "Wrong size on FWrestlerMassGetClaimedSmartObjectLocationTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerHoldAbilityTargetingUpdateData \ +static_assert(alignof(FWrestlerHoldAbilityTargetingUpdateData) == 0x000004, "Wrong alignment on FWrestlerHoldAbilityTargetingUpdateData"); \ +static_assert(sizeof(FWrestlerHoldAbilityTargetingUpdateData) == 0x00001C, "Wrong size on FWrestlerHoldAbilityTargetingUpdateData"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, ThrowRange) == 0x000000, "Member 'FWrestlerHoldAbilityTargetingUpdateData::ThrowRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, AimAssistRange) == 0x000004, "Member 'FWrestlerHoldAbilityTargetingUpdateData::AimAssistRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, AimAssistRadius) == 0x000008, "Member 'FWrestlerHoldAbilityTargetingUpdateData::AimAssistRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, HeldObject) == 0x00000C, "Member 'FWrestlerHoldAbilityTargetingUpdateData::HeldObject' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, HeldObjectRadius) == 0x000014, "Member 'FWrestlerHoldAbilityTargetingUpdateData::HeldObjectRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoldAbilityTargetingUpdateData, UpdatePeriod) == 0x000018, "Member 'FWrestlerHoldAbilityTargetingUpdateData::UpdatePeriod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetIntoPositionAnimationData \ +static_assert(alignof(FWrestlerMassGetIntoPositionAnimationData) == 0x000008, "Wrong alignment on FWrestlerMassGetIntoPositionAnimationData"); \ +static_assert(sizeof(FWrestlerMassGetIntoPositionAnimationData) == 0x000018, "Wrong size on FWrestlerMassGetIntoPositionAnimationData"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionAnimationData, GetIntoPositionAnims) == 0x000000, "Member 'FWrestlerMassGetIntoPositionAnimationData::GetIntoPositionAnims' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetIntoPositionAnimationDataFragment \ +static_assert(alignof(FWrestlerMassGetIntoPositionAnimationDataFragment) == 0x000008, "Wrong alignment on FWrestlerMassGetIntoPositionAnimationDataFragment"); \ +static_assert(sizeof(FWrestlerMassGetIntoPositionAnimationDataFragment) == 0x000018, "Wrong size on FWrestlerMassGetIntoPositionAnimationDataFragment"); \ +static_assert(offsetof(FWrestlerMassGetIntoPositionAnimationDataFragment, AnimationData) == 0x000000, "Member 'FWrestlerMassGetIntoPositionAnimationDataFragment::AnimationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHoudiniContainerVersion \ +static_assert(alignof(FWrestlerHoudiniContainerVersion) == 0x000008, "Wrong alignment on FWrestlerHoudiniContainerVersion"); \ +static_assert(sizeof(FWrestlerHoudiniContainerVersion) == 0x000028, "Wrong size on FWrestlerHoudiniContainerVersion"); \ +static_assert(offsetof(FWrestlerHoudiniContainerVersion, bContainerOutdated) == 0x000000, "Member 'FWrestlerHoudiniContainerVersion::bContainerOutdated' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoudiniContainerVersion, GeneratorHash) == 0x000004, "Member 'FWrestlerHoudiniContainerVersion::GeneratorHash' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerHoudiniContainerVersion, GeneratorPath) == 0x000008, "Member 'FWrestlerHoudiniContainerVersion::GeneratorPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerHoudiniContainerMode \ +static_assert(alignof(FWrestlerHoudiniContainerMode) == 0x000001, "Wrong alignment on FWrestlerHoudiniContainerMode"); \ +static_assert(sizeof(FWrestlerHoudiniContainerMode) == 0x000001, "Wrong size on FWrestlerHoudiniContainerMode"); \ +static_assert(offsetof(FWrestlerHoudiniContainerMode, Value) == 0x000000, "Member 'FWrestlerHoudiniContainerMode::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIndicatorTypeData \ +static_assert(alignof(FWrestlerIndicatorTypeData) == 0x000008, "Wrong alignment on FWrestlerIndicatorTypeData"); \ +static_assert(sizeof(FWrestlerIndicatorTypeData) == 0x000020, "Wrong size on FWrestlerIndicatorTypeData"); \ +static_assert(offsetof(FWrestlerIndicatorTypeData, IndicatorTypeLifespan) == 0x000000, "Member 'FWrestlerIndicatorTypeData::IndicatorTypeLifespan' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerIndicatorTypeData, IndicatorTypeScale) == 0x000008, "Member 'FWrestlerIndicatorTypeData::IndicatorTypeScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerIndicatorTypeData, IndicatorsOffsetFromCenter) == 0x000018, "Member 'FWrestlerIndicatorTypeData::IndicatorsOffsetFromCenter' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerIndicatorTypeData, ThresholdDotProduct) == 0x00001C, "Member 'FWrestlerIndicatorTypeData::ThresholdDotProduct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerContextualAnimations \ +static_assert(alignof(FWrestlerContextualAnimations) == 0x000008, "Wrong alignment on FWrestlerContextualAnimations"); \ +static_assert(sizeof(FWrestlerContextualAnimations) == 0x000010, "Wrong size on FWrestlerContextualAnimations"); \ +static_assert(offsetof(FWrestlerContextualAnimations, Animations) == 0x000000, "Member 'FWrestlerContextualAnimations::Animations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIndicatorData \ +static_assert(alignof(FWrestlerIndicatorData) == 0x000008, "Wrong alignment on FWrestlerIndicatorData"); \ +static_assert(sizeof(FWrestlerIndicatorData) == 0x000020, "Wrong size on FWrestlerIndicatorData"); \ +static_assert(offsetof(FWrestlerIndicatorData, IndicatorWidget) == 0x000000, "Member 'FWrestlerIndicatorData::IndicatorWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetCrimeEntityInstanceData \ +static_assert(alignof(FWrestlerMassGetCrimeEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetCrimeEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetCrimeEntityInstanceData) == 0x000008, "Wrong size on FWrestlerMassGetCrimeEntityInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetCrimeEntityInstanceData, CrimeEntity) == 0x000000, "Member 'FWrestlerMassGetCrimeEntityInstanceData::CrimeEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerControllerSetupLookAt \ +static_assert(alignof(FWrestlerControllerSetupLookAt) == 0x000004, "Wrong alignment on FWrestlerControllerSetupLookAt"); \ +static_assert(sizeof(FWrestlerControllerSetupLookAt) == 0x000008, "Wrong size on FWrestlerControllerSetupLookAt"); \ +static_assert(offsetof(FWrestlerControllerSetupLookAt, MaxLookAtDistance) == 0x000000, "Member 'FWrestlerControllerSetupLookAt::MaxLookAtDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupLookAt, LookAtCollisionChannel) == 0x000004, "Member 'FWrestlerControllerSetupLookAt::LookAtCollisionChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerControllerSetupTargeting \ +static_assert(alignof(FWrestlerControllerSetupTargeting) == 0x000004, "Wrong alignment on FWrestlerControllerSetupTargeting"); \ +static_assert(sizeof(FWrestlerControllerSetupTargeting) == 0x000018, "Wrong size on FWrestlerControllerSetupTargeting"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, MaxDistance) == 0x000000, "Member 'FWrestlerControllerSetupTargeting::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, MaxAngle) == 0x000004, "Member 'FWrestlerControllerSetupTargeting::MaxAngle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, StickThreshold) == 0x000008, "Member 'FWrestlerControllerSetupTargeting::StickThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, TurnRate) == 0x00000C, "Member 'FWrestlerControllerSetupTargeting::TurnRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, GlancePush) == 0x000010, "Member 'FWrestlerControllerSetupTargeting::GlancePush' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupTargeting, MaxGlanceAngle) == 0x000014, "Member 'FWrestlerControllerSetupTargeting::MaxGlanceAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerControllerSetupStick \ +static_assert(alignof(FWrestlerControllerSetupStick) == 0x000004, "Wrong alignment on FWrestlerControllerSetupStick"); \ +static_assert(sizeof(FWrestlerControllerSetupStick) == 0x000028, "Wrong size on FWrestlerControllerSetupStick"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, HorizontalSensitivity) == 0x000000, "Member 'FWrestlerControllerSetupStick::HorizontalSensitivity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, VerticalSensitivity) == 0x000004, "Member 'FWrestlerControllerSetupStick::VerticalSensitivity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, MouseSensitivity) == 0x000008, "Member 'FWrestlerControllerSetupStick::MouseSensitivity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, DeadZone) == 0x00000C, "Member 'FWrestlerControllerSetupStick::DeadZone' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, MaximumInputThreshold) == 0x000010, "Member 'FWrestlerControllerSetupStick::MaximumInputThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, AxialDeadzone) == 0x000014, "Member 'FWrestlerControllerSetupStick::AxialDeadzone' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, CurveExponent) == 0x000018, "Member 'FWrestlerControllerSetupStick::CurveExponent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, Acceleration) == 0x00001C, "Member 'FWrestlerControllerSetupStick::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, AccelerationTime) == 0x000020, "Member 'FWrestlerControllerSetupStick::AccelerationTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupStick, bInvertY) == 0x000024, "Member 'FWrestlerControllerSetupStick::bInvertY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetSmartObjectDataInstanceData \ +static_assert(alignof(FWrestlerMassGetSmartObjectDataInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassGetSmartObjectDataInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetSmartObjectDataInstanceData) == 0x000001, "Wrong size on FWrestlerMassGetSmartObjectDataInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetSmartObjectDataInstanceData, bTeleportToSmartObject) == 0x000000, "Member 'FWrestlerMassGetSmartObjectDataInstanceData::bTeleportToSmartObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerControllerSetupControl \ +static_assert(alignof(FWrestlerControllerSetupControl) == 0x000004, "Wrong alignment on FWrestlerControllerSetupControl"); \ +static_assert(sizeof(FWrestlerControllerSetupControl) == 0x000074, "Wrong size on FWrestlerControllerSetupControl"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, MoveStick) == 0x000000, "Member 'FWrestlerControllerSetupControl::MoveStick' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, LookStick) == 0x000028, "Member 'FWrestlerControllerSetupControl::LookStick' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, bIsCrouchToggle) == 0x000050, "Member 'FWrestlerControllerSetupControl::bIsCrouchToggle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, bIsSprintToggle) == 0x000051, "Member 'FWrestlerControllerSetupControl::bIsSprintToggle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, Targeting) == 0x000054, "Member 'FWrestlerControllerSetupControl::Targeting' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerControllerSetupControl, LookAt) == 0x00006C, "Member 'FWrestlerControllerSetupControl::LookAt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetObservedPlayerActionDataInstanceData \ +static_assert(alignof(FWrestlerMassGetObservedPlayerActionDataInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassGetObservedPlayerActionDataInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetObservedPlayerActionDataInstanceData) == 0x000018, "Wrong size on FWrestlerMassGetObservedPlayerActionDataInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, bIsViolentAction) == 0x000000, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::bIsViolentAction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, bShouldBecomeWitness) == 0x000001, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::bShouldBecomeWitness' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, bShouldReact) == 0x000002, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::bShouldReact' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, ReactionAnimName) == 0x000004, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::ReactionAnimName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, ReactionBarkTag) == 0x00000C, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::ReactionBarkTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionDataInstanceData, ObservedMasqueradeScore) == 0x000014, "Member 'FWrestlerMassGetObservedPlayerActionDataInstanceData::ObservedMasqueradeScore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCoreData \ +static_assert(alignof(FCoreData) == 0x000008, "Wrong alignment on FCoreData"); \ +static_assert(sizeof(FCoreData) == 0x000010, "Wrong size on FCoreData"); \ +static_assert(offsetof(FCoreData, PrimaryMappingContext) == 0x000000, "Member 'FCoreData::PrimaryMappingContext' has a wrong offset!"); \ +static_assert(offsetof(FCoreData, DisplayData) == 0x000008, "Member 'FCoreData::DisplayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInteractionAnimLoadingTimes \ +static_assert(alignof(FInteractionAnimLoadingTimes) == 0x000004, "Wrong alignment on FInteractionAnimLoadingTimes"); \ +static_assert(sizeof(FInteractionAnimLoadingTimes) == 0x000008, "Wrong size on FInteractionAnimLoadingTimes"); \ +static_assert(offsetof(FInteractionAnimLoadingTimes, LoadStartTime) == 0x000000, "Member 'FInteractionAnimLoadingTimes::LoadStartTime' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimLoadingTimes, LoadTime) == 0x000004, "Member 'FInteractionAnimLoadingTimes::LoadTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInteractionAnimData \ +static_assert(alignof(FInteractionAnimData) == 0x000008, "Wrong alignment on FInteractionAnimData"); \ +static_assert(sizeof(FInteractionAnimData) == 0x000068, "Wrong size on FInteractionAnimData"); \ +static_assert(offsetof(FInteractionAnimData, Sequence) == 0x000000, "Member 'FInteractionAnimData::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, SequenceBlendInTime) == 0x000028, "Member 'FInteractionAnimData::SequenceBlendInTime' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, SequenceBlendOutTime) == 0x00002C, "Member 'FInteractionAnimData::SequenceBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, Montage) == 0x000030, "Member 'FInteractionAnimData::Montage' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, bStartCrouched) == 0x000058, "Member 'FInteractionAnimData::bStartCrouched' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, bUseLoadingTimes) == 0x000059, "Member 'FInteractionAnimData::bUseLoadingTimes' has a wrong offset!"); \ +static_assert(offsetof(FInteractionAnimData, LoadingTimes) == 0x00005C, "Member 'FInteractionAnimData::LoadingTimes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassHasActiveBloodResonanceBehaviourInstanceData \ +static_assert(alignof(FWrestlerMassHasActiveBloodResonanceBehaviourInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassHasActiveBloodResonanceBehaviourInstanceData"); \ +static_assert(sizeof(FWrestlerMassHasActiveBloodResonanceBehaviourInstanceData) == 0x000001, "Wrong size on FWrestlerMassHasActiveBloodResonanceBehaviourInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerInteractionTarget \ +static_assert(alignof(FWrestlerInteractionTarget) == 0x000008, "Wrong alignment on FWrestlerInteractionTarget"); \ +static_assert(sizeof(FWrestlerInteractionTarget) == 0x000010, "Wrong size on FWrestlerInteractionTarget"); \ +static_assert(offsetof(FWrestlerInteractionTarget, ParentActor) == 0x000000, "Member 'FWrestlerInteractionTarget::ParentActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInteractionTarget, Interaction) == 0x000008, "Member 'FWrestlerInteractionTarget::Interaction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSOInteractionEntry \ +static_assert(alignof(FWrestlerSOInteractionEntry) == 0x000008, "Wrong alignment on FWrestlerSOInteractionEntry"); \ +static_assert(sizeof(FWrestlerSOInteractionEntry) == 0x000010, "Wrong size on FWrestlerSOInteractionEntry"); \ +static_assert(offsetof(FWrestlerSOInteractionEntry, SmartObjectActorTemplate) == 0x000000, "Member 'FWrestlerSOInteractionEntry::SmartObjectActorTemplate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSOInteractionEntry, SpawnProbability) == 0x000008, "Member 'FWrestlerSOInteractionEntry::SpawnProbability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPedestrianInteractionList \ +static_assert(alignof(FWrestlerPedestrianInteractionList) == 0x000008, "Wrong alignment on FWrestlerPedestrianInteractionList"); \ +static_assert(sizeof(FWrestlerPedestrianInteractionList) == 0x000010, "Wrong size on FWrestlerPedestrianInteractionList"); \ +static_assert(offsetof(FWrestlerPedestrianInteractionList, Entries) == 0x000000, "Member 'FWrestlerPedestrianInteractionList::Entries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPedestrianInteractionSOEntry \ +static_assert(alignof(FWrestlerPedestrianInteractionSOEntry) == 0x000008, "Wrong alignment on FWrestlerPedestrianInteractionSOEntry"); \ +static_assert(sizeof(FWrestlerPedestrianInteractionSOEntry) == 0x000050, "Wrong size on FWrestlerPedestrianInteractionSOEntry"); \ +static_assert(offsetof(FWrestlerPedestrianInteractionSOEntry, SecondPedType) == 0x000000, "Member 'FWrestlerPedestrianInteractionSOEntry::SecondPedType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerScoredInteraction \ +static_assert(alignof(FWrestlerScoredInteraction) == 0x000008, "Wrong alignment on FWrestlerScoredInteraction"); \ +static_assert(sizeof(FWrestlerScoredInteraction) == 0x000020, "Wrong size on FWrestlerScoredInteraction"); \ +static_assert(offsetof(FWrestlerScoredInteraction, Target) == 0x000008, "Member 'FWrestlerScoredInteraction::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGameplayAbilityTargetData_Interaction \ +static_assert(alignof(FGameplayAbilityTargetData_Interaction) == 0x000010, "Wrong alignment on FGameplayAbilityTargetData_Interaction"); \ +static_assert(sizeof(FGameplayAbilityTargetData_Interaction) == 0x0000D0, "Wrong size on FGameplayAbilityTargetData_Interaction"); \ +static_assert(offsetof(FGameplayAbilityTargetData_Interaction, InteractionTarget) == 0x0000C0, "Member 'FGameplayAbilityTargetData_Interaction::InteractionTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInterfaceGameplayTargetDataFilter \ +static_assert(alignof(FWrestlerInterfaceGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerInterfaceGameplayTargetDataFilter"); \ +static_assert(sizeof(FWrestlerInterfaceGameplayTargetDataFilter) == 0x000028, "Wrong size on FWrestlerInterfaceGameplayTargetDataFilter"); \ +static_assert(offsetof(FWrestlerInterfaceGameplayTargetDataFilter, Interface) == 0x000020, "Member 'FWrestlerInterfaceGameplayTargetDataFilter::Interface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIsPairedSOEntityReadyConditionInstanceData \ +static_assert(alignof(FWrestlerMassIsPairedSOEntityReadyConditionInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassIsPairedSOEntityReadyConditionInstanceData"); \ +static_assert(sizeof(FWrestlerMassIsPairedSOEntityReadyConditionInstanceData) == 0x000001, "Wrong size on FWrestlerMassIsPairedSOEntityReadyConditionInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerInvestigateDeadBodyInstanceData \ +static_assert(alignof(FWrestlerInvestigateDeadBodyInstanceData) == 0x000008, "Wrong alignment on FWrestlerInvestigateDeadBodyInstanceData"); \ +static_assert(sizeof(FWrestlerInvestigateDeadBodyInstanceData) == 0x000028, "Wrong size on FWrestlerInvestigateDeadBodyInstanceData"); \ +static_assert(offsetof(FWrestlerInvestigateDeadBodyInstanceData, DeadActor) == 0x000000, "Member 'FWrestlerInvestigateDeadBodyInstanceData::DeadActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInvestigateDeadBodyInstanceData, DeadBodyLocation) == 0x000008, "Member 'FWrestlerInvestigateDeadBodyInstanceData::DeadBodyLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInvestigateDeadBodyInstanceData, bIsInvestigating) == 0x000020, "Member 'FWrestlerInvestigateDeadBodyInstanceData::bIsInvestigating' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerInvestigateDeadBodyInstanceData, bLookForPlayer) == 0x000021, "Member 'FWrestlerInvestigateDeadBodyInstanceData::bLookForPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPoliceNoticedCrimeInstanceData \ +static_assert(alignof(FWrestlerMassGetPoliceNoticedCrimeInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetPoliceNoticedCrimeInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetPoliceNoticedCrimeInstanceData) == 0x000020, "Wrong size on FWrestlerMassGetPoliceNoticedCrimeInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetPoliceNoticedCrimeInstanceData, PoliceEntity) == 0x000000, "Member 'FWrestlerMassGetPoliceNoticedCrimeInstanceData::PoliceEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetPoliceNoticedCrimeInstanceData, PoliceLocation) == 0x000008, "Member 'FWrestlerMassGetPoliceNoticedCrimeInstanceData::PoliceLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerInvestigateDeadBody \ +static_assert(alignof(FWrestlerInvestigateDeadBody) == 0x000008, "Wrong alignment on FWrestlerInvestigateDeadBody"); \ +static_assert(sizeof(FWrestlerInvestigateDeadBody) == 0x000030, "Wrong size on FWrestlerInvestigateDeadBody"); \ +static_assert(offsetof(FWrestlerInvestigateDeadBody, RefreshRate) == 0x000028, "Member 'FWrestlerInvestigateDeadBody::RefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIsGameplayTagValidConditionInstanceData \ +static_assert(alignof(FWrestlerIsGameplayTagValidConditionInstanceData) == 0x000004, "Wrong alignment on FWrestlerIsGameplayTagValidConditionInstanceData"); \ +static_assert(sizeof(FWrestlerIsGameplayTagValidConditionInstanceData) == 0x000008, "Wrong size on FWrestlerIsGameplayTagValidConditionInstanceData"); \ +static_assert(offsetof(FWrestlerIsGameplayTagValidConditionInstanceData, Tag) == 0x000000, "Member 'FWrestlerIsGameplayTagValidConditionInstanceData::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIsGameplayTagValidCondition \ +static_assert(alignof(FWrestlerIsGameplayTagValidCondition) == 0x000008, "Wrong alignment on FWrestlerIsGameplayTagValidCondition"); \ +static_assert(sizeof(FWrestlerIsGameplayTagValidCondition) == 0x000028, "Wrong size on FWrestlerIsGameplayTagValidCondition"); \ +static_assert(offsetof(FWrestlerIsGameplayTagValidCondition, bInvert) == 0x000020, "Member 'FWrestlerIsGameplayTagValidCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeNoiseInstanceData \ +static_assert(alignof(FWrestlerMassMakeNoiseInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassMakeNoiseInstanceData"); \ +static_assert(sizeof(FWrestlerMassMakeNoiseInstanceData) == 0x000010, "Wrong size on FWrestlerMassMakeNoiseInstanceData"); \ +static_assert(offsetof(FWrestlerMassMakeNoiseInstanceData, NoiseLocation) == 0x000000, "Member 'FWrestlerMassMakeNoiseInstanceData::NoiseLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIsPedestrianTypeConditionInstanceData \ +static_assert(alignof(FWrestlerIsPedestrianTypeConditionInstanceData) == 0x000008, "Wrong alignment on FWrestlerIsPedestrianTypeConditionInstanceData"); \ +static_assert(sizeof(FWrestlerIsPedestrianTypeConditionInstanceData) == 0x000010, "Wrong size on FWrestlerIsPedestrianTypeConditionInstanceData"); \ +static_assert(offsetof(FWrestlerIsPedestrianTypeConditionInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerIsPedestrianTypeConditionInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetNoticedEnemyActorInstanceData \ +static_assert(alignof(FWrestlerMassGetNoticedEnemyActorInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetNoticedEnemyActorInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetNoticedEnemyActorInstanceData) == 0x000020, "Wrong size on FWrestlerMassGetNoticedEnemyActorInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetNoticedEnemyActorInstanceData, EnemyActor) == 0x000000, "Member 'FWrestlerMassGetNoticedEnemyActorInstanceData::EnemyActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetNoticedEnemyActorInstanceData, EnemyLocation) == 0x000008, "Member 'FWrestlerMassGetNoticedEnemyActorInstanceData::EnemyLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIsPedestrianTypeCondition \ +static_assert(alignof(FWrestlerIsPedestrianTypeCondition) == 0x000008, "Wrong alignment on FWrestlerIsPedestrianTypeCondition"); \ +static_assert(sizeof(FWrestlerIsPedestrianTypeCondition) == 0x000028, "Wrong size on FWrestlerIsPedestrianTypeCondition"); \ +static_assert(offsetof(FWrestlerIsPedestrianTypeCondition, PedestrianType) == 0x000020, "Member 'FWrestlerIsPedestrianTypeCondition::PedestrianType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerIsPedestrianTypeCondition, bInvert) == 0x000021, "Member 'FWrestlerIsPedestrianTypeCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLastKnownPositionFragment \ +static_assert(alignof(FWrestlerLastKnownPositionFragment) == 0x000008, "Wrong alignment on FWrestlerLastKnownPositionFragment"); \ +static_assert(sizeof(FWrestlerLastKnownPositionFragment) == 0x000028, "Wrong size on FWrestlerLastKnownPositionFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerLevelSaveData \ +static_assert(alignof(FWrestlerLevelSaveData) == 0x000008, "Wrong alignment on FWrestlerLevelSaveData"); \ +static_assert(sizeof(FWrestlerLevelSaveData) == 0x000080, "Wrong size on FWrestlerLevelSaveData"); \ +static_assert(offsetof(FWrestlerLevelSaveData, MapTag) == 0x000000, "Member 'FWrestlerLevelSaveData::MapTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLevelSaveData, ActivatedStreamingLevels) == 0x000008, "Member 'FWrestlerLevelSaveData::ActivatedStreamingLevels' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLevelSaveData, bRecursiveDataLayerActivation) == 0x000018, "Member 'FWrestlerLevelSaveData::bRecursiveDataLayerActivation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLevelSaveData, ActivatedDataLayers) == 0x000020, "Member 'FWrestlerLevelSaveData::ActivatedDataLayers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLevelSaveData, ActivatedDataLayerNames) == 0x000030, "Member 'FWrestlerLevelSaveData::ActivatedDataLayerNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassStand \ +static_assert(alignof(FWrestlerMassStand) == 0x000008, "Wrong alignment on FWrestlerMassStand"); \ +static_assert(sizeof(FWrestlerMassStand) == 0x000050, "Wrong size on FWrestlerMassStand"); \ +static_assert(offsetof(FWrestlerMassStand, StoppingChance) == 0x000030, "Member 'FWrestlerMassStand::StoppingChance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassStand, RandomTimeDeviation) == 0x000038, "Member 'FWrestlerMassStand::RandomTimeDeviation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLightActorComponentLightParameters \ +static_assert(alignof(FWrestlerLightActorComponentLightParameters) == 0x000004, "Wrong alignment on FWrestlerLightActorComponentLightParameters"); \ +static_assert(sizeof(FWrestlerLightActorComponentLightParameters) == 0x000024, "Wrong size on FWrestlerLightActorComponentLightParameters"); \ +static_assert(offsetof(FWrestlerLightActorComponentLightParameters, MaxDrawDistance) == 0x000004, "Member 'FWrestlerLightActorComponentLightParameters::MaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentLightParameters, MaxDistanceFadeRange) == 0x000008, "Member 'FWrestlerLightActorComponentLightParameters::MaxDistanceFadeRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentLightParameters, IntensityUnits) == 0x00000C, "Member 'FWrestlerLightActorComponentLightParameters::IntensityUnits' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentLightParameters, Intensity) == 0x000010, "Member 'FWrestlerLightActorComponentLightParameters::Intensity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentLightParameters, Colour) == 0x000014, "Member 'FWrestlerLightActorComponentLightParameters::Colour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassInformAboutCrimeNoticedInstanceData \ +static_assert(alignof(FWrestlerMassInformAboutCrimeNoticedInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassInformAboutCrimeNoticedInstanceData"); \ +static_assert(sizeof(FWrestlerMassInformAboutCrimeNoticedInstanceData) == 0x000010, "Wrong size on FWrestlerMassInformAboutCrimeNoticedInstanceData"); \ +static_assert(offsetof(FWrestlerMassInformAboutCrimeNoticedInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerMassInformAboutCrimeNoticedInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLightActorComponentEmissiveParameters \ +static_assert(alignof(FWrestlerLightActorComponentEmissiveParameters) == 0x000004, "Wrong alignment on FWrestlerLightActorComponentEmissiveParameters"); \ +static_assert(sizeof(FWrestlerLightActorComponentEmissiveParameters) == 0x000018, "Wrong size on FWrestlerLightActorComponentEmissiveParameters"); \ +static_assert(offsetof(FWrestlerLightActorComponentEmissiveParameters, EmissiveIntensity) == 0x000004, "Member 'FWrestlerLightActorComponentEmissiveParameters::EmissiveIntensity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentEmissiveParameters, EmissiveColour) == 0x000008, "Member 'FWrestlerLightActorComponentEmissiveParameters::EmissiveColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLightActorComponentFlickerParameters \ +static_assert(alignof(FWrestlerLightActorComponentFlickerParameters) == 0x000008, "Wrong alignment on FWrestlerLightActorComponentFlickerParameters"); \ +static_assert(sizeof(FWrestlerLightActorComponentFlickerParameters) == 0x000020, "Wrong size on FWrestlerLightActorComponentFlickerParameters"); \ +static_assert(offsetof(FWrestlerLightActorComponentFlickerParameters, FlickerSpeed) == 0x000004, "Member 'FWrestlerLightActorComponentFlickerParameters::FlickerSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentFlickerParameters, FlickerCurveOffset) == 0x000008, "Member 'FWrestlerLightActorComponentFlickerParameters::FlickerCurveOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentFlickerParameters, FlickerIntensityMultiplier) == 0x00000C, "Member 'FWrestlerLightActorComponentFlickerParameters::FlickerIntensityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentFlickerParameters, FlickerElapsedTime) == 0x000010, "Member 'FWrestlerLightActorComponentFlickerParameters::FlickerElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightActorComponentFlickerParameters, FlickerCurve) == 0x000018, "Member 'FWrestlerLightActorComponentFlickerParameters::FlickerCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLampDamageLight \ +static_assert(alignof(FWrestlerLampDamageLight) == 0x000008, "Wrong alignment on FWrestlerLampDamageLight"); \ +static_assert(sizeof(FWrestlerLampDamageLight) == 0x000010, "Wrong size on FWrestlerLampDamageLight"); \ +static_assert(offsetof(FWrestlerLampDamageLight, LightComponent) == 0x000000, "Member 'FWrestlerLampDamageLight::LightComponent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLampDamageLight, LightIntensity) == 0x000008, "Member 'FWrestlerLampDamageLight::LightIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSwapAIFragment \ +static_assert(alignof(FWrestlerMassSwapAIFragment) == 0x000008, "Wrong alignment on FWrestlerMassSwapAIFragment"); \ +static_assert(sizeof(FWrestlerMassSwapAIFragment) == 0x000070, "Wrong size on FWrestlerMassSwapAIFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerLightComponent \ +static_assert(alignof(FWrestlerLightComponent) == 0x000008, "Wrong alignment on FWrestlerLightComponent"); \ +static_assert(sizeof(FWrestlerLightComponent) == 0x000010, "Wrong size on FWrestlerLightComponent"); \ +static_assert(offsetof(FWrestlerLightComponent, LightComponent) == 0x000000, "Member 'FWrestlerLightComponent::LightComponent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightComponent, Intensity) == 0x000008, "Member 'FWrestlerLightComponent::Intensity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightComponent, Temperature) == 0x00000C, "Member 'FWrestlerLightComponent::Temperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPlayerAwarenessDataInstanceData \ +static_assert(alignof(FWrestlerMassGetPlayerAwarenessDataInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassGetPlayerAwarenessDataInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetPlayerAwarenessDataInstanceData) == 0x000002, "Wrong size on FWrestlerMassGetPlayerAwarenessDataInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetPlayerAwarenessDataInstanceData, bCanSeePlayer) == 0x000000, "Member 'FWrestlerMassGetPlayerAwarenessDataInstanceData::bCanSeePlayer' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetPlayerAwarenessDataInstanceData, bIsFullyAwareOfPlayer) == 0x000001, "Member 'FWrestlerMassGetPlayerAwarenessDataInstanceData::bIsFullyAwareOfPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerLightMesh \ +static_assert(alignof(FWrestlerLightMesh) == 0x000008, "Wrong alignment on FWrestlerLightMesh"); \ +static_assert(sizeof(FWrestlerLightMesh) == 0x000018, "Wrong size on FWrestlerLightMesh"); \ +static_assert(offsetof(FWrestlerLightMesh, MeshComponent) == 0x000000, "Member 'FWrestlerLightMesh::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightMesh, EmissiveIndex) == 0x000008, "Member 'FWrestlerLightMesh::EmissiveIndex' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerLightMesh, EmissiveMaterial) == 0x000010, "Member 'FWrestlerLightMesh::EmissiveMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLoadingTipData \ +static_assert(alignof(FLoadingTipData) == 0x000008, "Wrong alignment on FLoadingTipData"); \ +static_assert(sizeof(FLoadingTipData) == 0x000010, "Wrong size on FLoadingTipData"); \ +static_assert(offsetof(FLoadingTipData, TipTitle) == 0x000000, "Member 'FLoadingTipData::TipTitle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapUIImagesData \ +static_assert(alignof(FWrestlerMapUIImagesData) == 0x000008, "Wrong alignment on FWrestlerMapUIImagesData"); \ +static_assert(sizeof(FWrestlerMapUIImagesData) == 0x000050, "Wrong size on FWrestlerMapUIImagesData"); \ +static_assert(offsetof(FWrestlerMapUIImagesData, MapZoneImagePerMode) == 0x000000, "Member 'FWrestlerMapUIImagesData::MapZoneImagePerMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGameplayAbilityInProgressTag \ +static_assert(alignof(FWrestlerMassGameplayAbilityInProgressTag) == 0x000001, "Wrong alignment on FWrestlerMassGameplayAbilityInProgressTag"); \ +static_assert(sizeof(FWrestlerMassGameplayAbilityInProgressTag) == 0x000001, "Wrong size on FWrestlerMassGameplayAbilityInProgressTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapCategoryData \ +static_assert(alignof(FWrestlerMapCategoryData) == 0x000008, "Wrong alignment on FWrestlerMapCategoryData"); \ +static_assert(sizeof(FWrestlerMapCategoryData) == 0x000020, "Wrong size on FWrestlerMapCategoryData"); \ +static_assert(offsetof(FWrestlerMapCategoryData, CategoryNameForUI) == 0x000000, "Member 'FWrestlerMapCategoryData::CategoryNameForUI' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapCategoryData, InitialCategoryMarkersCount) == 0x000018, "Member 'FWrestlerMapCategoryData::InitialCategoryMarkersCount' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapCategoryData, bCanInteractWithMarkesInCategory) == 0x00001C, "Member 'FWrestlerMapCategoryData::bCanInteractWithMarkesInCategory' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapCategoryData, bCanCategoryVisibilityBeToggled) == 0x00001D, "Member 'FWrestlerMapCategoryData::bCanCategoryVisibilityBeToggled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapCategoryData, bUpdateObjectRotationInMap) == 0x00001E, "Member 'FWrestlerMapCategoryData::bUpdateObjectRotationInMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeWitnessInstanceData \ +static_assert(alignof(FWrestlerMassMakeWitnessInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassMakeWitnessInstanceData"); \ +static_assert(sizeof(FWrestlerMassMakeWitnessInstanceData) == 0x000001, "Wrong size on FWrestlerMassMakeWitnessInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapMarkerData \ +static_assert(alignof(FWrestlerMapMarkerData) == 0x000008, "Wrong alignment on FWrestlerMapMarkerData"); \ +static_assert(sizeof(FWrestlerMapMarkerData) == 0x000058, "Wrong size on FWrestlerMapMarkerData"); \ +static_assert(offsetof(FWrestlerMapMarkerData, IconImage) == 0x000000, "Member 'FWrestlerMapMarkerData::IconImage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapMarkerData, ImageColor) == 0x000008, "Member 'FWrestlerMapMarkerData::ImageColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapMarkerData, Description) == 0x000018, "Member 'FWrestlerMapMarkerData::Description' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapMarkerData, AltDescription) == 0x000030, "Member 'FWrestlerMapMarkerData::AltDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapMarkerData, IconScale) == 0x000048, "Member 'FWrestlerMapMarkerData::IconScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapData \ +static_assert(alignof(FWrestlerMapData) == 0x000008, "Wrong alignment on FWrestlerMapData"); \ +static_assert(sizeof(FWrestlerMapData) == 0x000078, "Wrong size on FWrestlerMapData"); \ +static_assert(offsetof(FWrestlerMapData, CategoryData) == 0x000000, "Member 'FWrestlerMapData::CategoryData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapData, CategoryMarkerData) == 0x000020, "Member 'FWrestlerMapData::CategoryMarkerData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapRadialAreaData \ +static_assert(alignof(FWrestlerMapRadialAreaData) == 0x000008, "Wrong alignment on FWrestlerMapRadialAreaData"); \ +static_assert(sizeof(FWrestlerMapRadialAreaData) == 0x000018, "Wrong size on FWrestlerMapRadialAreaData"); \ +static_assert(offsetof(FWrestlerMapRadialAreaData, Radius) == 0x000000, "Member 'FWrestlerMapRadialAreaData::Radius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapRadialAreaData, RadialAreaOffset) == 0x000008, "Member 'FWrestlerMapRadialAreaData::RadialAreaOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerComponentTransformAndVelocityCopyToActorTag \ +static_assert(alignof(FWrestlerComponentTransformAndVelocityCopyToActorTag) == 0x000001, "Wrong alignment on FWrestlerComponentTransformAndVelocityCopyToActorTag"); \ +static_assert(sizeof(FWrestlerComponentTransformAndVelocityCopyToActorTag) == 0x000001, "Wrong size on FWrestlerComponentTransformAndVelocityCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeData \ +static_assert(alignof(FWrestlerMasqueradeData) == 0x000008, "Wrong alignment on FWrestlerMasqueradeData"); \ +static_assert(sizeof(FWrestlerMasqueradeData) == 0x000020, "Wrong size on FWrestlerMasqueradeData"); \ +static_assert(offsetof(FWrestlerMasqueradeData, MasqueradeTextLevel) == 0x000000, "Member 'FWrestlerMasqueradeData::MasqueradeTextLevel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeData, MasqueradeLevelImage) == 0x000018, "Member 'FWrestlerMasqueradeData::MasqueradeLevelImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassHasActiveBloodResonanceInstanceData \ +static_assert(alignof(FWrestlerMassHasActiveBloodResonanceInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassHasActiveBloodResonanceInstanceData"); \ +static_assert(sizeof(FWrestlerMassHasActiveBloodResonanceInstanceData) == 0x000001, "Wrong size on FWrestlerMassHasActiveBloodResonanceInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMapInfo \ +static_assert(alignof(FWrestlerMapInfo) == 0x000008, "Wrong alignment on FWrestlerMapInfo"); \ +static_assert(sizeof(FWrestlerMapInfo) == 0x000030, "Wrong size on FWrestlerMapInfo"); \ +static_assert(offsetof(FWrestlerMapInfo, Tag) == 0x000000, "Member 'FWrestlerMapInfo::Tag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapInfo, Map) == 0x000008, "Member 'FWrestlerMapInfo::Map' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapInfo, bSeamlessLoad) == 0x000028, "Member 'FWrestlerMapInfo::bSeamlessLoad' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMapInfo, bEnableAutomationTests) == 0x000029, "Member 'FWrestlerMapInfo::bEnableAutomationTests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeScoreUpdateData \ +static_assert(alignof(FWrestlerMasqueradeScoreUpdateData) == 0x000004, "Wrong alignment on FWrestlerMasqueradeScoreUpdateData"); \ +static_assert(sizeof(FWrestlerMasqueradeScoreUpdateData) == 0x000010, "Wrong size on FWrestlerMasqueradeScoreUpdateData"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreUpdateData, bCanAffectEngagedState) == 0x000000, "Member 'FWrestlerMasqueradeScoreUpdateData::bCanAffectEngagedState' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreUpdateData, InitialScoreToAdd) == 0x000004, "Member 'FWrestlerMasqueradeScoreUpdateData::InitialScoreToAdd' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreUpdateData, ScoreOverTime) == 0x000008, "Member 'FWrestlerMasqueradeScoreUpdateData::ScoreOverTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreUpdateData, MinimalMasqueradeState) == 0x00000C, "Member 'FWrestlerMasqueradeScoreUpdateData::MinimalMasqueradeState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerActionReactionData \ +static_assert(alignof(FWrestlerPlayerActionReactionData) == 0x000004, "Wrong alignment on FWrestlerPlayerActionReactionData"); \ +static_assert(sizeof(FWrestlerPlayerActionReactionData) == 0x000014, "Wrong size on FWrestlerPlayerActionReactionData"); \ +static_assert(offsetof(FWrestlerPlayerActionReactionData, ReactPercentageChanceToPlayerActions) == 0x000000, "Member 'FWrestlerPlayerActionReactionData::ReactPercentageChanceToPlayerActions' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerActionReactionData, ReactionAnimName) == 0x000004, "Member 'FWrestlerPlayerActionReactionData::ReactionAnimName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerActionReactionData, ReactionBarkTag) == 0x00000C, "Member 'FWrestlerPlayerActionReactionData::ReactionBarkTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradePlayerActionData \ +static_assert(alignof(FWrestlerMasqueradePlayerActionData) == 0x000008, "Wrong alignment on FWrestlerMasqueradePlayerActionData"); \ +static_assert(sizeof(FWrestlerMasqueradePlayerActionData) == 0x000140, "Wrong size on FWrestlerMasqueradePlayerActionData"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, ActionTag) == 0x000008, "Member 'FWrestlerMasqueradePlayerActionData::ActionTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, bIsViolentAction) == 0x000010, "Member 'FWrestlerMasqueradePlayerActionData::bIsViolentAction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, InstantlyAwareRadius) == 0x000014, "Member 'FWrestlerMasqueradePlayerActionData::InstantlyAwareRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, ActionNoticeability) == 0x000018, "Member 'FWrestlerMasqueradePlayerActionData::ActionNoticeability' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, ObservationDuration) == 0x00001C, "Member 'FWrestlerMasqueradePlayerActionData::ObservationDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, NoiseRadius) == 0x000020, "Member 'FWrestlerMasqueradePlayerActionData::NoiseRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, ExcludedPedestrianTypes) == 0x000028, "Member 'FWrestlerMasqueradePlayerActionData::ExcludedPedestrianTypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, MasqueradeUpdateData) == 0x000078, "Member 'FWrestlerMasqueradePlayerActionData::MasqueradeUpdateData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, OverrideUpdateData) == 0x000088, "Member 'FWrestlerMasqueradePlayerActionData::OverrideUpdateData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, ReactionData) == 0x0000D8, "Member 'FWrestlerMasqueradePlayerActionData::ReactionData' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradePlayerActionData, OverrideReactionData) == 0x0000F0, "Member 'FWrestlerMasqueradePlayerActionData::OverrideReactionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeDensityControlParameters \ +static_assert(alignof(FWrestlerMasqueradeDensityControlParameters) == 0x000004, "Wrong alignment on FWrestlerMasqueradeDensityControlParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeDensityControlParameters) == 0x000014, "Wrong size on FWrestlerMasqueradeDensityControlParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityControlParameters, EntitiesDesired) == 0x000000, "Member 'FWrestlerMasqueradeDensityControlParameters::EntitiesDesired' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityControlParameters, EntitiesTolerance) == 0x000004, "Member 'FWrestlerMasqueradeDensityControlParameters::EntitiesTolerance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityControlParameters, ChangePercentage) == 0x000008, "Member 'FWrestlerMasqueradeDensityControlParameters::ChangePercentage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityControlParameters, MoveSpeedFraction) == 0x00000C, "Member 'FWrestlerMasqueradeDensityControlParameters::MoveSpeedFraction' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityControlParameters, StandTimeFraction) == 0x000010, "Member 'FWrestlerMasqueradeDensityControlParameters::StandTimeFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeDensityParameters \ +static_assert(alignof(FWrestlerMasqueradeDensityParameters) == 0x000008, "Wrong alignment on FWrestlerMasqueradeDensityParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeDensityParameters) == 0x000060, "Wrong size on FWrestlerMasqueradeDensityParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityParameters, bIsEnabled) == 0x000000, "Member 'FWrestlerMasqueradeDensityParameters::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityParameters, NearbyDistance) == 0x000004, "Member 'FWrestlerMasqueradeDensityParameters::NearbyDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityParameters, ControlRange) == 0x000008, "Member 'FWrestlerMasqueradeDensityParameters::ControlRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDensityParameters, ControlParams) == 0x000010, "Member 'FWrestlerMasqueradeDensityParameters::ControlParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeGroupingParameters \ +static_assert(alignof(FWrestlerMasqueradeGroupingParameters) == 0x000008, "Wrong alignment on FWrestlerMasqueradeGroupingParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeGroupingParameters) == 0x0000A8, "Wrong size on FWrestlerMasqueradeGroupingParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeGroupingParameters, UpdateRate) == 0x000000, "Member 'FWrestlerMasqueradeGroupingParameters::UpdateRate' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeGroupingParameters, DensityParams) == 0x000008, "Member 'FWrestlerMasqueradeGroupingParameters::DensityParams' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeGroupingParameters, SpacingParams) == 0x000058, "Member 'FWrestlerMasqueradeGroupingParameters::SpacingParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerNoiseInvestigationTag \ +static_assert(alignof(FWrestlerNoiseInvestigationTag) == 0x000001, "Wrong alignment on FWrestlerNoiseInvestigationTag"); \ +static_assert(sizeof(FWrestlerNoiseInvestigationTag) == 0x000001, "Wrong size on FWrestlerNoiseInvestigationTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeDialoguePrompts \ +static_assert(alignof(FWrestlerMasqueradeDialoguePrompts) == 0x000004, "Wrong alignment on FWrestlerMasqueradeDialoguePrompts"); \ +static_assert(sizeof(FWrestlerMasqueradeDialoguePrompts) == 0x000040, "Wrong size on FWrestlerMasqueradeDialoguePrompts"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, SingleIdle) == 0x000000, "Member 'FWrestlerMasqueradeDialoguePrompts::SingleIdle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, GroupIdle) == 0x000008, "Member 'FWrestlerMasqueradeDialoguePrompts::GroupIdle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, Greetings) == 0x000010, "Member 'FWrestlerMasqueradeDialoguePrompts::Greetings' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, Chat) == 0x000018, "Member 'FWrestlerMasqueradeDialoguePrompts::Chat' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, Passing) == 0x000020, "Member 'FWrestlerMasqueradeDialoguePrompts::Passing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, FedOn) == 0x000028, "Member 'FWrestlerMasqueradeDialoguePrompts::FedOn' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, Damaged) == 0x000030, "Member 'FWrestlerMasqueradeDialoguePrompts::Damaged' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialoguePrompts, Death) == 0x000038, "Member 'FWrestlerMasqueradeDialoguePrompts::Death' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDebugFallDetectParameters \ +static_assert(alignof(FWrestlerMassDebugFallDetectParameters) == 0x000004, "Wrong alignment on FWrestlerMassDebugFallDetectParameters"); \ +static_assert(sizeof(FWrestlerMassDebugFallDetectParameters) == 0x000024, "Wrong size on FWrestlerMassDebugFallDetectParameters"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, bIsEnabled) == 0x000000, "Member 'FWrestlerMassDebugFallDetectParameters::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, bIsVelocityFallDetectEnabled) == 0x000001, "Member 'FWrestlerMassDebugFallDetectParameters::bIsVelocityFallDetectEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, FallVelocityThreshold) == 0x000004, "Member 'FWrestlerMassDebugFallDetectParameters::FallVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, VelocityDetectColor) == 0x000008, "Member 'FWrestlerMassDebugFallDetectParameters::VelocityDetectColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, bIsGroundAboveDetectEnabled) == 0x00000C, "Member 'FWrestlerMassDebugFallDetectParameters::bIsGroundAboveDetectEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, TraceChannel) == 0x00000D, "Member 'FWrestlerMassDebugFallDetectParameters::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, SweepShapeRadius) == 0x000010, "Member 'FWrestlerMassDebugFallDetectParameters::SweepShapeRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, SweepHeight) == 0x000014, "Member 'FWrestlerMassDebugFallDetectParameters::SweepHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, GroundDetectColor) == 0x000018, "Member 'FWrestlerMassDebugFallDetectParameters::GroundDetectColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, CapsuleHeight) == 0x00001C, "Member 'FWrestlerMassDebugFallDetectParameters::CapsuleHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugFallDetectParameters, CapsuleRadius) == 0x000020, "Member 'FWrestlerMassDebugFallDetectParameters::CapsuleRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeDialogueParameters \ +static_assert(alignof(FWrestlerMasqueradeDialogueParameters) == 0x000008, "Wrong alignment on FWrestlerMasqueradeDialogueParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeDialogueParameters) == 0x000090, "Wrong size on FWrestlerMasqueradeDialogueParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, bDisplayDebugIndividuals) == 0x000000, "Member 'FWrestlerMasqueradeDialogueParameters::bDisplayDebugIndividuals' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, bDisplayDebugGroups) == 0x000001, "Member 'FWrestlerMasqueradeDialogueParameters::bDisplayDebugGroups' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, bDisplayDebugRequests) == 0x000002, "Member 'FWrestlerMasqueradeDialogueParameters::bDisplayDebugRequests' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, bDisplayDebugActiveEntities) == 0x000003, "Member 'FWrestlerMasqueradeDialogueParameters::bDisplayDebugActiveEntities' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, bDisplayDebugTotalRequests) == 0x000004, "Member 'FWrestlerMasqueradeDialogueParameters::bDisplayDebugTotalRequests' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, RequestFilterRange) == 0x000008, "Member 'FWrestlerMasqueradeDialogueParameters::RequestFilterRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, IdleRange) == 0x00000C, "Member 'FWrestlerMasqueradeDialogueParameters::IdleRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, MaxIdleIndividuals) == 0x000010, "Member 'FWrestlerMasqueradeDialogueParameters::MaxIdleIndividuals' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, IdleDelay) == 0x000014, "Member 'FWrestlerMasqueradeDialogueParameters::IdleDelay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, IdleRangeGroup) == 0x000018, "Member 'FWrestlerMasqueradeDialogueParameters::IdleRangeGroup' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, MaxIdleForGroups) == 0x00001C, "Member 'FWrestlerMasqueradeDialogueParameters::MaxIdleForGroups' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, MaxIdleInGroup) == 0x000020, "Member 'FWrestlerMasqueradeDialogueParameters::MaxIdleInGroup' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, MaxIdleGroups) == 0x000024, "Member 'FWrestlerMasqueradeDialogueParameters::MaxIdleGroups' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, PromptDialogueInfoDefault) == 0x000028, "Member 'FWrestlerMasqueradeDialogueParameters::PromptDialogueInfoDefault' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeDialogueParameters, Prompts) == 0x000050, "Member 'FWrestlerMasqueradeDialogueParameters::Prompts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationCostumeParameters \ +static_assert(alignof(FWrestlerMassConversationCostumeParameters) == 0x000008, "Wrong alignment on FWrestlerMassConversationCostumeParameters"); \ +static_assert(sizeof(FWrestlerMassConversationCostumeParameters) == 0x000038, "Wrong size on FWrestlerMassConversationCostumeParameters"); \ +static_assert(offsetof(FWrestlerMassConversationCostumeParameters, CostumeProperty) == 0x000000, "Member 'FWrestlerMassConversationCostumeParameters::CostumeProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCostumeParameters, CostumeTags) == 0x000028, "Member 'FWrestlerMassConversationCostumeParameters::CostumeTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationParameters \ +static_assert(alignof(FWrestlerMassConversationParameters) == 0x000008, "Wrong alignment on FWrestlerMassConversationParameters"); \ +static_assert(sizeof(FWrestlerMassConversationParameters) == 0x0002B0, "Wrong size on FWrestlerMassConversationParameters"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, bIsConversationsEnabled) == 0x000000, "Member 'FWrestlerMassConversationParameters::bIsConversationsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, bIsAmbienceEnabled) == 0x000001, "Member 'FWrestlerMassConversationParameters::bIsAmbienceEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, bIsDebugging) == 0x000002, "Member 'FWrestlerMassConversationParameters::bIsDebugging' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, bPauseGame) == 0x000003, "Member 'FWrestlerMassConversationParameters::bPauseGame' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MaxRange) == 0x000004, "Member 'FWrestlerMassConversationParameters::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, ConversatationDialogRig) == 0x000008, "Member 'FWrestlerMassConversationParameters::ConversatationDialogRig' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, ConversatationDialogRigClass) == 0x000030, "Member 'FWrestlerMassConversationParameters::ConversatationDialogRigClass' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, ConversationDialogueInfoDefault) == 0x000058, "Member 'FWrestlerMassConversationParameters::ConversationDialogueInfoDefault' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, ConversationAmbientInfoDefault) == 0x000080, "Member 'FWrestlerMassConversationParameters::ConversationAmbientInfoDefault' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, ConversationAvoidanceArea) == 0x0000A8, "Member 'FWrestlerMassConversationParameters::ConversationAvoidanceArea' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, AmbienceChance) == 0x0000B8, "Member 'FWrestlerMassConversationParameters::AmbienceChance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, AmbienceCooldownMin) == 0x0000BC, "Member 'FWrestlerMassConversationParameters::AmbienceCooldownMin' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, AmbienceCooldownMax) == 0x0000C0, "Member 'FWrestlerMassConversationParameters::AmbienceCooldownMax' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, PromptButtonOffset) == 0x0000C8, "Member 'FWrestlerMassConversationParameters::PromptButtonOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationStartProperty) == 0x0000E0, "Member 'FWrestlerMassConversationParameters::MassConversationStartProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationFlirtProperty) == 0x000108, "Member 'FWrestlerMassConversationParameters::MassConversationFlirtProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationFightProperty) == 0x000130, "Member 'FWrestlerMassConversationParameters::MassConversationFightProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationFearProperty) == 0x000158, "Member 'FWrestlerMassConversationParameters::MassConversationFearProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationBREventProperty) == 0x000180, "Member 'FWrestlerMassConversationParameters::MassConversationBREventProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationWallyProperty) == 0x0001A8, "Member 'FWrestlerMassConversationParameters::MassConversationWallyProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationMarkedWallyNumberForNixProperty) == 0x0001D0, "Member 'FWrestlerMassConversationParameters::MassConversationMarkedWallyNumberForNixProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationMarkedWallyNumberForLouProperty) == 0x0001F8, "Member 'FWrestlerMassConversationParameters::MassConversationMarkedWallyNumberForLouProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, MassConversationHasAbilityProperties) == 0x000220, "Member 'FWrestlerMassConversationParameters::MassConversationHasAbilityProperties' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, CostumeParams) == 0x000270, "Member 'FWrestlerMassConversationParameters::CostumeParams' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, AbilityToTriggerAtSuccessBRConversation) == 0x000280, "Member 'FWrestlerMassConversationParameters::AbilityToTriggerAtSuccessBRConversation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationParameters, bDisablePlayerInput) == 0x0002A8, "Member 'FWrestlerMassConversationParameters::bDisablePlayerInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationCameraShakeParameters \ +static_assert(alignof(FWrestlerMassConversationCameraShakeParameters) == 0x000004, "Wrong alignment on FWrestlerMassConversationCameraShakeParameters"); \ +static_assert(sizeof(FWrestlerMassConversationCameraShakeParameters) == 0x00000C, "Wrong size on FWrestlerMassConversationCameraShakeParameters"); \ +static_assert(offsetof(FWrestlerMassConversationCameraShakeParameters, Offset) == 0x000000, "Member 'FWrestlerMassConversationCameraShakeParameters::Offset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraShakeParameters, Frequency) == 0x000004, "Member 'FWrestlerMassConversationCameraShakeParameters::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraShakeParameters, Amplitude) == 0x000008, "Member 'FWrestlerMassConversationCameraShakeParameters::Amplitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassCharacterMovementCopyToActorTag \ +static_assert(alignof(FWrestlerMassCharacterMovementCopyToActorTag) == 0x000001, "Wrong alignment on FWrestlerMassCharacterMovementCopyToActorTag"); \ +static_assert(sizeof(FWrestlerMassCharacterMovementCopyToActorTag) == 0x000001, "Wrong size on FWrestlerMassCharacterMovementCopyToActorTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassConversationCameraParameters \ +static_assert(alignof(FWrestlerMassConversationCameraParameters) == 0x000004, "Wrong alignment on FWrestlerMassConversationCameraParameters"); \ +static_assert(sizeof(FWrestlerMassConversationCameraParameters) == 0x000038, "Wrong size on FWrestlerMassConversationCameraParameters"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, bIsDebugging) == 0x000000, "Member 'FWrestlerMassConversationCameraParameters::bIsDebugging' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, bIsShakeEnabled) == 0x000001, "Member 'FWrestlerMassConversationCameraParameters::bIsShakeEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, ShakePitch) == 0x000004, "Member 'FWrestlerMassConversationCameraParameters::ShakePitch' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, ShakeYaw) == 0x000010, "Member 'FWrestlerMassConversationCameraParameters::ShakeYaw' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, ShakeFOV) == 0x00001C, "Member 'FWrestlerMassConversationCameraParameters::ShakeFOV' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, TraceChannel) == 0x000028, "Member 'FWrestlerMassConversationCameraParameters::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, CollsionShapeRadius) == 0x00002C, "Member 'FWrestlerMassConversationCameraParameters::CollsionShapeRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, MinCameraLOSPercentage) == 0x000030, "Member 'FWrestlerMassConversationCameraParameters::MinCameraLOSPercentage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, bUseCameraWithBlockedLOS) == 0x000034, "Member 'FWrestlerMassConversationCameraParameters::bUseCameraWithBlockedLOS' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, bStickWithCurrentCamera) == 0x000035, "Member 'FWrestlerMassConversationCameraParameters::bStickWithCurrentCamera' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassConversationCameraParameters, bChooseRandomAvailableCamera) == 0x000036, "Member 'FWrestlerMassConversationCameraParameters::bChooseRandomAvailableCamera' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerClanTrainerConversation \ +static_assert(alignof(FWrestlerClanTrainerConversation) == 0x000008, "Wrong alignment on FWrestlerClanTrainerConversation"); \ +static_assert(sizeof(FWrestlerClanTrainerConversation) == 0x000070, "Wrong size on FWrestlerClanTrainerConversation"); \ +static_assert(offsetof(FWrestlerClanTrainerConversation, Clan) == 0x000000, "Member 'FWrestlerClanTrainerConversation::Clan' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversation, DialogueInfo) == 0x000008, "Member 'FWrestlerClanTrainerConversation::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversation, FabienDialoguePath) == 0x000010, "Member 'FWrestlerClanTrainerConversation::FabienDialoguePath' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversation, StartProperty) == 0x000020, "Member 'FWrestlerClanTrainerConversation::StartProperty' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversation, ClanAbilitiesDataTable) == 0x000048, "Member 'FWrestlerClanTrainerConversation::ClanAbilitiesDataTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerClanTrainerConversationParameters \ +static_assert(alignof(FWrestlerClanTrainerConversationParameters) == 0x000008, "Wrong alignment on FWrestlerClanTrainerConversationParameters"); \ +static_assert(sizeof(FWrestlerClanTrainerConversationParameters) == 0x000070, "Wrong size on FWrestlerClanTrainerConversationParameters"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationParameters, bIsConversationsEnabled) == 0x000000, "Member 'FWrestlerClanTrainerConversationParameters::bIsConversationsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationParameters, DialogueInfoDefault) == 0x000008, "Member 'FWrestlerClanTrainerConversationParameters::DialogueInfoDefault' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationParameters, FabienDialogueInfo) == 0x000030, "Member 'FWrestlerClanTrainerConversationParameters::FabienDialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationParameters, Trainers) == 0x000058, "Member 'FWrestlerClanTrainerConversationParameters::Trainers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerClanTrainerConversationParameters, bDisablePlayerInput) == 0x000068, "Member 'FWrestlerClanTrainerConversationParameters::bDisablePlayerInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPlayContextualAnimInstanceData \ +static_assert(alignof(FWrestlerMassPlayContextualAnimInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassPlayContextualAnimInstanceData"); \ +static_assert(sizeof(FWrestlerMassPlayContextualAnimInstanceData) == 0x000058, "Wrong size on FWrestlerMassPlayContextualAnimInstanceData"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnimInstanceData, ContextualAnimName) == 0x000000, "Member 'FWrestlerMassPlayContextualAnimInstanceData::ContextualAnimName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnimInstanceData, DialoguePrompt) == 0x000008, "Member 'FWrestlerMassPlayContextualAnimInstanceData::DialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnimInstanceData, bJumpToLoop) == 0x000010, "Member 'FWrestlerMassPlayContextualAnimInstanceData::bJumpToLoop' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnimInstanceData, AnimMontage) == 0x000050, "Member 'FWrestlerMassPlayContextualAnimInstanceData::AnimMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerModularCharacterRandomTypeContstraints \ +static_assert(alignof(FWrestlerModularCharacterRandomTypeContstraints) == 0x000008, "Wrong alignment on FWrestlerModularCharacterRandomTypeContstraints"); \ +static_assert(sizeof(FWrestlerModularCharacterRandomTypeContstraints) == 0x000018, "Wrong size on FWrestlerModularCharacterRandomTypeContstraints"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, bOverrideGenerateOnlyGender) == 0x000000, "Member 'FWrestlerModularCharacterRandomTypeContstraints::bOverrideGenerateOnlyGender' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, GenerateOnlyGender) == 0x000001, "Member 'FWrestlerModularCharacterRandomTypeContstraints::GenerateOnlyGender' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, bOverrideGenerateOnlyPedType) == 0x000002, "Member 'FWrestlerModularCharacterRandomTypeContstraints::bOverrideGenerateOnlyPedType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, GenerateOnlyPedestrianType) == 0x000003, "Member 'FWrestlerModularCharacterRandomTypeContstraints::GenerateOnlyPedestrianType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, bOverrideGenerateOnlyDescriptor) == 0x000004, "Member 'FWrestlerModularCharacterRandomTypeContstraints::bOverrideGenerateOnlyDescriptor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerModularCharacterRandomTypeContstraints, GenerateOnlyDescriptor) == 0x000008, "Member 'FWrestlerModularCharacterRandomTypeContstraints::GenerateOnlyDescriptor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceParameters \ +static_assert(alignof(FWrestlerBloodResonanceParameters) == 0x000008, "Wrong alignment on FWrestlerBloodResonanceParameters"); \ +static_assert(sizeof(FWrestlerBloodResonanceParameters) == 0x000078, "Wrong size on FWrestlerBloodResonanceParameters"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, bIsTypeAssignerEnabled) == 0x000000, "Member 'FWrestlerBloodResonanceParameters::bIsTypeAssignerEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, UpdateTime) == 0x000004, "Member 'FWrestlerBloodResonanceParameters::UpdateTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, AssignmentRange) == 0x000008, "Member 'FWrestlerBloodResonanceParameters::AssignmentRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, Assignments) == 0x000010, "Member 'FWrestlerBloodResonanceParameters::Assignments' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, DeactivationRange) == 0x000020, "Member 'FWrestlerBloodResonanceParameters::DeactivationRange' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceParameters, ExcludedTag) == 0x000070, "Member 'FWrestlerBloodResonanceParameters::ExcludedTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerBloodResonanceEventParameters \ +static_assert(alignof(FWrestlerBloodResonanceEventParameters) == 0x000004, "Wrong alignment on FWrestlerBloodResonanceEventParameters"); \ +static_assert(sizeof(FWrestlerBloodResonanceEventParameters) == 0x00001C, "Wrong size on FWrestlerBloodResonanceEventParameters"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, CancellationDistance) == 0x000000, "Member 'FWrestlerBloodResonanceEventParameters::CancellationDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, IconDisplayMinDistance) == 0x000004, "Member 'FWrestlerBloodResonanceEventParameters::IconDisplayMinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, IconRemoveMinDistance) == 0x000008, "Member 'FWrestlerBloodResonanceEventParameters::IconRemoveMinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, IconClipMinDistance) == 0x00000C, "Member 'FWrestlerBloodResonanceEventParameters::IconClipMinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, bIconDisplayWhenLOS) == 0x000010, "Member 'FWrestlerBloodResonanceEventParameters::bIconDisplayWhenLOS' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, IconDisplayLOSDistance) == 0x000014, "Member 'FWrestlerBloodResonanceEventParameters::IconDisplayLOSDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerBloodResonanceEventParameters, IconAlwaysDisplayAtEdge) == 0x000018, "Member 'FWrestlerBloodResonanceEventParameters::IconAlwaysDisplayAtEdge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeProperties \ +static_assert(alignof(FWrestlerMasqueradeProperties) == 0x000008, "Wrong alignment on FWrestlerMasqueradeProperties"); \ +static_assert(sizeof(FWrestlerMasqueradeProperties) == 0x0000F0, "Wrong size on FWrestlerMasqueradeProperties"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, IsMassVisible) == 0x000000, "Member 'FWrestlerMasqueradeProperties::IsMassVisible' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, ExclusionZoneMask) == 0x000028, "Member 'FWrestlerMasqueradeProperties::ExclusionZoneMask' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, ExclusionZoneSpeedOverride) == 0x000050, "Member 'FWrestlerMasqueradeProperties::ExclusionZoneSpeedOverride' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, ExclusionZoneSetPedestrians) == 0x000078, "Member 'FWrestlerMasqueradeProperties::ExclusionZoneSetPedestrians' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, ExclusionZoneSetPolice) == 0x0000A0, "Member 'FWrestlerMasqueradeProperties::ExclusionZoneSetPolice' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeProperties, IsMasqueradeEnabled) == 0x0000C8, "Member 'FWrestlerMasqueradeProperties::IsMasqueradeEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetLastKnownPositionInstanceData \ +static_assert(alignof(FWrestlerMassGetLastKnownPositionInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetLastKnownPositionInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetLastKnownPositionInstanceData) == 0x000030, "Wrong size on FWrestlerMassGetLastKnownPositionInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetLastKnownPositionInstanceData, OutLastKnownPosition) == 0x000000, "Member 'FWrestlerMassGetLastKnownPositionInstanceData::OutLastKnownPosition' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetLastKnownPositionInstanceData, OutInstigatorPosition) == 0x000018, "Member 'FWrestlerMassGetLastKnownPositionInstanceData::OutInstigatorPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPairedEntitiesParamsFragment \ +static_assert(alignof(FWrestlerMassPairedEntitiesParamsFragment) == 0x000008, "Wrong alignment on FWrestlerMassPairedEntitiesParamsFragment"); \ +static_assert(sizeof(FWrestlerMassPairedEntitiesParamsFragment) == 0x0000C0, "Wrong size on FWrestlerMassPairedEntitiesParamsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeWallaParameters \ +static_assert(alignof(FWrestlerMasqueradeWallaParameters) == 0x000008, "Wrong alignment on FWrestlerMasqueradeWallaParameters"); \ +static_assert(sizeof(FWrestlerMasqueradeWallaParameters) == 0x000018, "Wrong size on FWrestlerMasqueradeWallaParameters"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaParameters, bIsEnabled) == 0x000000, "Member 'FWrestlerMasqueradeWallaParameters::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaParameters, bDisplayDebugWalla) == 0x000001, "Member 'FWrestlerMasqueradeWallaParameters::bDisplayDebugWalla' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaParameters, UpdateTime) == 0x000004, "Member 'FWrestlerMasqueradeWallaParameters::UpdateTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeWallaParameters, QueryParams) == 0x000008, "Member 'FWrestlerMasqueradeWallaParameters::QueryParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeScoreData \ +static_assert(alignof(FWrestlerMasqueradeScoreData) == 0x000004, "Wrong alignment on FWrestlerMasqueradeScoreData"); \ +static_assert(sizeof(FWrestlerMasqueradeScoreData) == 0x00000C, "Wrong size on FWrestlerMasqueradeScoreData"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreData, MasqueradeScoreToEnterState) == 0x000000, "Member 'FWrestlerMasqueradeScoreData::MasqueradeScoreToEnterState' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreData, MasqueradeScorePauseTime) == 0x000004, "Member 'FWrestlerMasqueradeScoreData::MasqueradeScorePauseTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeScoreData, MasqueradeScoreDecreaseSpeed) == 0x000008, "Member 'FWrestlerMasqueradeScoreData::MasqueradeScoreDecreaseSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIndicatorList \ +static_assert(alignof(FWrestlerIndicatorList) == 0x000008, "Wrong alignment on FWrestlerIndicatorList"); \ +static_assert(sizeof(FWrestlerIndicatorList) == 0x000010, "Wrong size on FWrestlerIndicatorList"); \ +static_assert(offsetof(FWrestlerIndicatorList, Indicators) == 0x000000, "Member 'FWrestlerIndicatorList::Indicators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetNoticedScaredEntityInstanceData \ +static_assert(alignof(FWrestlerMassGetNoticedScaredEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetNoticedScaredEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetNoticedScaredEntityInstanceData) == 0x000008, "Wrong size on FWrestlerMassGetNoticedScaredEntityInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetNoticedScaredEntityInstanceData, ScaredEntity) == 0x000000, "Member 'FWrestlerMassGetNoticedScaredEntityInstanceData::ScaredEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerIndicatedEntity \ +static_assert(alignof(FWrestlerIndicatedEntity) == 0x000008, "Wrong alignment on FWrestlerIndicatedEntity"); \ +static_assert(sizeof(FWrestlerIndicatedEntity) == 0x000010, "Wrong size on FWrestlerIndicatedEntity"); \ +static_assert(offsetof(FWrestlerIndicatedEntity, Indicator) == 0x000008, "Member 'FWrestlerIndicatedEntity::Indicator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerViolentActionWitnessData \ +static_assert(alignof(FWrestlerViolentActionWitnessData) == 0x000008, "Wrong alignment on FWrestlerViolentActionWitnessData"); \ +static_assert(sizeof(FWrestlerViolentActionWitnessData) == 0x000018, "Wrong size on FWrestlerViolentActionWitnessData"); \ +static_assert(offsetof(FWrestlerViolentActionWitnessData, IndicatorData) == 0x000000, "Member 'FWrestlerViolentActionWitnessData::IndicatorData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDialogueData \ +static_assert(alignof(FWrestlerMassDialogueData) == 0x000008, "Wrong alignment on FWrestlerMassDialogueData"); \ +static_assert(sizeof(FWrestlerMassDialogueData) == 0x000038, "Wrong size on FWrestlerMassDialogueData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassBloodResonanceData \ +static_assert(alignof(FWrestlerMassBloodResonanceData) == 0x000008, "Wrong alignment on FWrestlerMassBloodResonanceData"); \ +static_assert(sizeof(FWrestlerMassBloodResonanceData) == 0x0000A8, "Wrong size on FWrestlerMassBloodResonanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetObservedUnconsciousEntityInstanceData \ +static_assert(alignof(FWrestlerMassGetObservedUnconsciousEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetObservedUnconsciousEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetObservedUnconsciousEntityInstanceData) == 0x000008, "Wrong size on FWrestlerMassGetObservedUnconsciousEntityInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetObservedUnconsciousEntityInstanceData, UnconsciousEntity) == 0x000000, "Member 'FWrestlerMassGetObservedUnconsciousEntityInstanceData::UnconsciousEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWallaQueryData \ +static_assert(alignof(FWrestlerMassWallaQueryData) == 0x000008, "Wrong alignment on FWrestlerMassWallaQueryData"); \ +static_assert(sizeof(FWrestlerMassWallaQueryData) == 0x000028, "Wrong size on FWrestlerMassWallaQueryData"); \ +static_assert(offsetof(FWrestlerMassWallaQueryData, ID) == 0x000000, "Member 'FWrestlerMassWallaQueryData::ID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassWallaQueryData, Count) == 0x000004, "Member 'FWrestlerMassWallaQueryData::Count' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassWallaQueryData, AverageLocation) == 0x000008, "Member 'FWrestlerMassWallaQueryData::AverageLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassWallaQueryData, FearFactor) == 0x000020, "Member 'FWrestlerMassWallaQueryData::FearFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCanRemovePlayerActionObserverTag \ +static_assert(alignof(FWrestlerCanRemovePlayerActionObserverTag) == 0x000001, "Wrong alignment on FWrestlerCanRemovePlayerActionObserverTag"); \ +static_assert(sizeof(FWrestlerCanRemovePlayerActionObserverTag) == 0x000001, "Wrong size on FWrestlerCanRemovePlayerActionObserverTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWallaData \ +static_assert(alignof(FWrestlerMassWallaData) == 0x000008, "Wrong alignment on FWrestlerMassWallaData"); \ +static_assert(sizeof(FWrestlerMassWallaData) == 0x000010, "Wrong size on FWrestlerMassWallaData"); \ +static_assert(offsetof(FWrestlerMassWallaData, QueryData) == 0x000000, "Member 'FWrestlerMassWallaData::QueryData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassActors \ +static_assert(alignof(FWrestlerMassActors) == 0x000008, "Wrong alignment on FWrestlerMassActors"); \ +static_assert(sizeof(FWrestlerMassActors) == 0x000010, "Wrong size on FWrestlerMassActors"); \ +static_assert(offsetof(FWrestlerMassActors, Array) == 0x000000, "Member 'FWrestlerMassActors::Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassActorHasAnyGameplayTagConditionInstanceData \ +static_assert(alignof(FWrestlerMassActorHasAnyGameplayTagConditionInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassActorHasAnyGameplayTagConditionInstanceData"); \ +static_assert(sizeof(FWrestlerMassActorHasAnyGameplayTagConditionInstanceData) == 0x000001, "Wrong size on FWrestlerMassActorHasAnyGameplayTagConditionInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPlayerPositionInstanceData \ +static_assert(alignof(FWrestlerMassGetPlayerPositionInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetPlayerPositionInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetPlayerPositionInstanceData) == 0x000018, "Wrong size on FWrestlerMassGetPlayerPositionInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetPlayerPositionInstanceData, OutPlayerPosition) == 0x000000, "Member 'FWrestlerMassGetPlayerPositionInstanceData::OutPlayerPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassAddPropInstanceData \ +static_assert(alignof(FWrestlerMassAddPropInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassAddPropInstanceData"); \ +static_assert(sizeof(FWrestlerMassAddPropInstanceData) == 0x000010, "Wrong size on FWrestlerMassAddPropInstanceData"); \ +static_assert(offsetof(FWrestlerMassAddPropInstanceData, LoadedPropAsset) == 0x000008, "Member 'FWrestlerMassAddPropInstanceData::LoadedPropAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassAddProp \ +static_assert(alignof(FWrestlerMassAddProp) == 0x000008, "Wrong alignment on FWrestlerMassAddProp"); \ +static_assert(sizeof(FWrestlerMassAddProp) == 0x000050, "Wrong size on FWrestlerMassAddProp"); \ +static_assert(offsetof(FWrestlerMassAddProp, PropDataAsset) == 0x000028, "Member 'FWrestlerMassAddProp::PropDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityHandle_BP \ +static_assert(alignof(FWrestlerMassEntityHandle_BP) == 0x000004, "Wrong alignment on FWrestlerMassEntityHandle_BP"); \ +static_assert(sizeof(FWrestlerMassEntityHandle_BP) == 0x000008, "Wrong size on FWrestlerMassEntityHandle_BP"); \ +static_assert(offsetof(FWrestlerMassEntityHandle_BP, Index) == 0x000000, "Member 'FWrestlerMassEntityHandle_BP::Index' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityHandle_BP, SerialNumber) == 0x000004, "Member 'FWrestlerMassEntityHandle_BP::SerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassBloodResonanceEventFragment \ +static_assert(alignof(FWrestlerMassBloodResonanceEventFragment) == 0x000008, "Wrong alignment on FWrestlerMassBloodResonanceEventFragment"); \ +static_assert(sizeof(FWrestlerMassBloodResonanceEventFragment) == 0x000038, "Wrong size on FWrestlerMassBloodResonanceEventFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassBloodResonanceFragment \ +static_assert(alignof(FWrestlerMassBloodResonanceFragment) == 0x000004, "Wrong alignment on FWrestlerMassBloodResonanceFragment"); \ +static_assert(sizeof(FWrestlerMassBloodResonanceFragment) == 0x00002C, "Wrong size on FWrestlerMassBloodResonanceFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassCanBecomeWitnessInstanceData \ +static_assert(alignof(FWrestlerMassCanBecomeWitnessInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassCanBecomeWitnessInstanceData"); \ +static_assert(sizeof(FWrestlerMassCanBecomeWitnessInstanceData) == 0x000001, "Wrong size on FWrestlerMassCanBecomeWitnessInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetClaimedSmartObjectLocationInstanceData \ +static_assert(alignof(FWrestlerMassGetClaimedSmartObjectLocationInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetClaimedSmartObjectLocationInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetClaimedSmartObjectLocationInstanceData) == 0x000038, "Wrong size on FWrestlerMassGetClaimedSmartObjectLocationInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetClaimedSmartObjectLocationInstanceData, ClaimedSlot) == 0x000000, "Member 'FWrestlerMassGetClaimedSmartObjectLocationInstanceData::ClaimedSlot' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassGetClaimedSmartObjectLocationInstanceData, SlotLocation) == 0x000020, "Member 'FWrestlerMassGetClaimedSmartObjectLocationInstanceData::SlotLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassClaimSmartObjectTask \ +static_assert(alignof(FWrestlerMassClaimSmartObjectTask) == 0x000008, "Wrong alignment on FWrestlerMassClaimSmartObjectTask"); \ +static_assert(sizeof(FWrestlerMassClaimSmartObjectTask) == 0x000040, "Wrong size on FWrestlerMassClaimSmartObjectTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassClearResetFleeingPathValue \ +static_assert(alignof(FWrestlerMassClearResetFleeingPathValue) == 0x000008, "Wrong alignment on FWrestlerMassClearResetFleeingPathValue"); \ +static_assert(sizeof(FWrestlerMassClearResetFleeingPathValue) == 0x000028, "Wrong size on FWrestlerMassClearResetFleeingPathValue"); \ + +#define DUMPER7_ASSERTS_FWrestlerContextualAnimationsPerGender \ +static_assert(alignof(FWrestlerContextualAnimationsPerGender) == 0x000008, "Wrong alignment on FWrestlerContextualAnimationsPerGender"); \ +static_assert(sizeof(FWrestlerContextualAnimationsPerGender) == 0x000050, "Wrong size on FWrestlerContextualAnimationsPerGender"); \ +static_assert(offsetof(FWrestlerContextualAnimationsPerGender, AnimationsPerGender) == 0x000000, "Member 'FWrestlerContextualAnimationsPerGender::AnimationsPerGender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassCoordinateSmartObjectTask \ +static_assert(alignof(FWrestlerMassCoordinateSmartObjectTask) == 0x000008, "Wrong alignment on FWrestlerMassCoordinateSmartObjectTask"); \ +static_assert(sizeof(FWrestlerMassCoordinateSmartObjectTask) == 0x000028, "Wrong size on FWrestlerMassCoordinateSmartObjectTask"); \ +static_assert(offsetof(FWrestlerMassCoordinateSmartObjectTask, MaxTimeToWait) == 0x000024, "Member 'FWrestlerMassCoordinateSmartObjectTask::MaxTimeToWait' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeactivateBloodResonance \ +static_assert(alignof(FWrestlerMassDeactivateBloodResonance) == 0x000008, "Wrong alignment on FWrestlerMassDeactivateBloodResonance"); \ +static_assert(sizeof(FWrestlerMassDeactivateBloodResonance) == 0x000028, "Wrong size on FWrestlerMassDeactivateBloodResonance"); \ +static_assert(offsetof(FWrestlerMassDeactivateBloodResonance, bClearBloodResonance) == 0x000022, "Member 'FWrestlerMassDeactivateBloodResonance::bClearBloodResonance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeadBodyInvestigatedInstanceData \ +static_assert(alignof(FWrestlerMassDeadBodyInvestigatedInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassDeadBodyInvestigatedInstanceData"); \ +static_assert(sizeof(FWrestlerMassDeadBodyInvestigatedInstanceData) == 0x000001, "Wrong size on FWrestlerMassDeadBodyInvestigatedInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDeathFragment \ +static_assert(alignof(FWrestlerMassDeathFragment) == 0x000008, "Wrong alignment on FWrestlerMassDeathFragment"); \ +static_assert(sizeof(FWrestlerMassDeathFragment) == 0x000010, "Wrong size on FWrestlerMassDeathFragment"); \ +static_assert(offsetof(FWrestlerMassDeathFragment, bCanRespawnOnDeath) == 0x000000, "Member 'FWrestlerMassDeathFragment::bCanRespawnOnDeath' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDeathFragment, DeathProperty) == 0x000008, "Member 'FWrestlerMassDeathFragment::DeathProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDebugLocationParameters \ +static_assert(alignof(FWrestlerMassDebugLocationParameters) == 0x000008, "Wrong alignment on FWrestlerMassDebugLocationParameters"); \ +static_assert(sizeof(FWrestlerMassDebugLocationParameters) == 0x000020, "Wrong size on FWrestlerMassDebugLocationParameters"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, bIsVLogEnabled) == 0x000000, "Member 'FWrestlerMassDebugLocationParameters::bIsVLogEnabled' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, bIncludeSOUsers) == 0x000001, "Member 'FWrestlerMassDebugLocationParameters::bIncludeSOUsers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, bOnlySOUsers) == 0x000002, "Member 'FWrestlerMassDebugLocationParameters::bOnlySOUsers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, CapsuleHeight) == 0x000004, "Member 'FWrestlerMassDebugLocationParameters::CapsuleHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, CapsuleRadius) == 0x000008, "Member 'FWrestlerMassDebugLocationParameters::CapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, CapsuleDefaultColor) == 0x00000C, "Member 'FWrestlerMassDebugLocationParameters::CapsuleDefaultColor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugLocationParameters, LODColors) == 0x000010, "Member 'FWrestlerMassDebugLocationParameters::LODColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDebugMobilityParameters \ +static_assert(alignof(FWrestlerMassDebugMobilityParameters) == 0x000004, "Wrong alignment on FWrestlerMassDebugMobilityParameters"); \ +static_assert(sizeof(FWrestlerMassDebugMobilityParameters) == 0x000014, "Wrong size on FWrestlerMassDebugMobilityParameters"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, QueryType) == 0x000000, "Member 'FWrestlerMassDebugMobilityParameters::QueryType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, bIncludeSOUsers) == 0x000001, "Member 'FWrestlerMassDebugMobilityParameters::bIncludeSOUsers' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, ShortTime) == 0x000004, "Member 'FWrestlerMassDebugMobilityParameters::ShortTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, LongTime) == 0x000008, "Member 'FWrestlerMassDebugMobilityParameters::LongTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, MinDistance) == 0x00000C, "Member 'FWrestlerMassDebugMobilityParameters::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, TeleportToImmobileNext) == 0x000010, "Member 'FWrestlerMassDebugMobilityParameters::TeleportToImmobileNext' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassDebugMobilityParameters, TeleportToImmobilePrevious) == 0x000011, "Member 'FWrestlerMassDebugMobilityParameters::TeleportToImmobilePrevious' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDestroyActorFragment \ +static_assert(alignof(FWrestlerMassDestroyActorFragment) == 0x000004, "Wrong alignment on FWrestlerMassDestroyActorFragment"); \ +static_assert(sizeof(FWrestlerMassDestroyActorFragment) == 0x000008, "Wrong size on FWrestlerMassDestroyActorFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDisableMovement \ +static_assert(alignof(FWrestlerMassDisableMovement) == 0x000008, "Wrong alignment on FWrestlerMassDisableMovement"); \ +static_assert(sizeof(FWrestlerMassDisableMovement) == 0x000028, "Wrong size on FWrestlerMassDisableMovement"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityCloseToLocationCondition \ +static_assert(alignof(FWrestlerMassEntityCloseToLocationCondition) == 0x000008, "Wrong alignment on FWrestlerMassEntityCloseToLocationCondition"); \ +static_assert(sizeof(FWrestlerMassEntityCloseToLocationCondition) == 0x000028, "Wrong size on FWrestlerMassEntityCloseToLocationCondition"); \ +static_assert(offsetof(FWrestlerMassEntityCloseToLocationCondition, bInvert) == 0x000020, "Member 'FWrestlerMassEntityCloseToLocationCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityCloseToLocationCondition, AllowedDistance) == 0x000024, "Member 'FWrestlerMassEntityCloseToLocationCondition::AllowedDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityCloseToPlayerCondition \ +static_assert(alignof(FWrestlerMassEntityCloseToPlayerCondition) == 0x000008, "Wrong alignment on FWrestlerMassEntityCloseToPlayerCondition"); \ +static_assert(sizeof(FWrestlerMassEntityCloseToPlayerCondition) == 0x000030, "Wrong size on FWrestlerMassEntityCloseToPlayerCondition"); \ +static_assert(offsetof(FWrestlerMassEntityCloseToPlayerCondition, bInvert) == 0x000020, "Member 'FWrestlerMassEntityCloseToPlayerCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityCloseToPlayerCondition, DistanceToPlayer) == 0x000024, "Member 'FWrestlerMassEntityCloseToPlayerCondition::DistanceToPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntityPersistentData \ +static_assert(alignof(FWrestlerMassEntityPersistentData) == 0x000008, "Wrong alignment on FWrestlerMassEntityPersistentData"); \ +static_assert(sizeof(FWrestlerMassEntityPersistentData) == 0x000020, "Wrong size on FWrestlerMassEntityPersistentData"); \ +static_assert(offsetof(FWrestlerMassEntityPersistentData, bOverridePedestrianType) == 0x000000, "Member 'FWrestlerMassEntityPersistentData::bOverridePedestrianType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPersistentData, PedestrianType) == 0x000001, "Member 'FWrestlerMassEntityPersistentData::PedestrianType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPersistentData, bOverrideGender) == 0x000002, "Member 'FWrestlerMassEntityPersistentData::bOverrideGender' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPersistentData, GenderType) == 0x000003, "Member 'FWrestlerMassEntityPersistentData::GenderType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassEntityPersistentData, OffsetFromPivotToHead) == 0x000008, "Member 'FWrestlerMassEntityPersistentData::OffsetFromPivotToHead' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassEntitySOEventActivationInstanceData \ +static_assert(alignof(FWrestlerMassEntitySOEventActivationInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassEntitySOEventActivationInstanceData"); \ +static_assert(sizeof(FWrestlerMassEntitySOEventActivationInstanceData) == 0x000001, "Wrong size on FWrestlerMassEntitySOEventActivationInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPlayerFragment \ +static_assert(alignof(FWrestlerMassPlayerFragment) == 0x000001, "Wrong alignment on FWrestlerMassPlayerFragment"); \ +static_assert(sizeof(FWrestlerMassPlayerFragment) == 0x000001, "Wrong size on FWrestlerMassPlayerFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetBloodResonanceActivationPrompt \ +static_assert(alignof(FWrestlerMassGetBloodResonanceActivationPrompt) == 0x000008, "Wrong alignment on FWrestlerMassGetBloodResonanceActivationPrompt"); \ +static_assert(sizeof(FWrestlerMassGetBloodResonanceActivationPrompt) == 0x000030, "Wrong size on FWrestlerMassGetBloodResonanceActivationPrompt"); \ +static_assert(offsetof(FWrestlerMassGetBloodResonanceActivationPrompt, DefaultIdlePrompt) == 0x000024, "Member 'FWrestlerMassGetBloodResonanceActivationPrompt::DefaultIdlePrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetCrimeEntity \ +static_assert(alignof(FWrestlerMassGetCrimeEntity) == 0x000008, "Wrong alignment on FWrestlerMassGetCrimeEntity"); \ +static_assert(sizeof(FWrestlerMassGetCrimeEntity) == 0x000028, "Wrong size on FWrestlerMassGetCrimeEntity"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetDesiredMoveLocationFromSOInstanceData \ +static_assert(alignof(FWrestlerMassGetDesiredMoveLocationFromSOInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassGetDesiredMoveLocationFromSOInstanceData"); \ +static_assert(sizeof(FWrestlerMassGetDesiredMoveLocationFromSOInstanceData) == 0x000080, "Wrong size on FWrestlerMassGetDesiredMoveLocationFromSOInstanceData"); \ +static_assert(offsetof(FWrestlerMassGetDesiredMoveLocationFromSOInstanceData, OutLocation) == 0x000068, "Member 'FWrestlerMassGetDesiredMoveLocationFromSOInstanceData::OutLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetDesiredMoveLocationFromSO \ +static_assert(alignof(FWrestlerMassGetDesiredMoveLocationFromSO) == 0x000008, "Wrong alignment on FWrestlerMassGetDesiredMoveLocationFromSO"); \ +static_assert(sizeof(FWrestlerMassGetDesiredMoveLocationFromSO) == 0x000040, "Wrong size on FWrestlerMassGetDesiredMoveLocationFromSO"); \ +static_assert(offsetof(FWrestlerMassGetDesiredMoveLocationFromSO, ZoneGraphSearchRange) == 0x000038, "Member 'FWrestlerMassGetDesiredMoveLocationFromSO::ZoneGraphSearchRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetEntityLocation \ +static_assert(alignof(FWrestlerMassGetEntityLocation) == 0x000008, "Wrong alignment on FWrestlerMassGetEntityLocation"); \ +static_assert(sizeof(FWrestlerMassGetEntityLocation) == 0x000030, "Wrong size on FWrestlerMassGetEntityLocation"); \ +static_assert(offsetof(FWrestlerMassGetEntityLocation, RefreshRate) == 0x000028, "Member 'FWrestlerMassGetEntityLocation::RefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetGameplayAbilityTags \ +static_assert(alignof(FWrestlerMassGetGameplayAbilityTags) == 0x000008, "Wrong alignment on FWrestlerMassGetGameplayAbilityTags"); \ +static_assert(sizeof(FWrestlerMassGetGameplayAbilityTags) == 0x000028, "Wrong size on FWrestlerMassGetGameplayAbilityTags"); \ +static_assert(offsetof(FWrestlerMassGetGameplayAbilityTags, RefreshRate) == 0x000024, "Member 'FWrestlerMassGetGameplayAbilityTags::RefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetIntoPositionAnimationParamsFragment \ +static_assert(alignof(FWrestlerMassGetIntoPositionAnimationParamsFragment) == 0x000008, "Wrong alignment on FWrestlerMassGetIntoPositionAnimationParamsFragment"); \ +static_assert(sizeof(FWrestlerMassGetIntoPositionAnimationParamsFragment) == 0x000040, "Wrong size on FWrestlerMassGetIntoPositionAnimationParamsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetLastKnownPosition \ +static_assert(alignof(FWrestlerMassGetLastKnownPosition) == 0x000008, "Wrong alignment on FWrestlerMassGetLastKnownPosition"); \ +static_assert(sizeof(FWrestlerMassGetLastKnownPosition) == 0x000028, "Wrong size on FWrestlerMassGetLastKnownPosition"); \ +static_assert(offsetof(FWrestlerMassGetLastKnownPosition, RefreshRate) == 0x000024, "Member 'FWrestlerMassGetLastKnownPosition::RefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetNoticedEnemyActor \ +static_assert(alignof(FWrestlerMassGetNoticedEnemyActor) == 0x000008, "Wrong alignment on FWrestlerMassGetNoticedEnemyActor"); \ +static_assert(sizeof(FWrestlerMassGetNoticedEnemyActor) == 0x000028, "Wrong size on FWrestlerMassGetNoticedEnemyActor"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetNoticedScaredEntity \ +static_assert(alignof(FWrestlerMassGetNoticedScaredEntity) == 0x000008, "Wrong alignment on FWrestlerMassGetNoticedScaredEntity"); \ +static_assert(sizeof(FWrestlerMassGetNoticedScaredEntity) == 0x000028, "Wrong size on FWrestlerMassGetNoticedScaredEntity"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetObservedPlayerActionData \ +static_assert(alignof(FWrestlerMassGetObservedPlayerActionData) == 0x000008, "Wrong alignment on FWrestlerMassGetObservedPlayerActionData"); \ +static_assert(sizeof(FWrestlerMassGetObservedPlayerActionData) == 0x000030, "Wrong size on FWrestlerMassGetObservedPlayerActionData"); \ +static_assert(offsetof(FWrestlerMassGetObservedPlayerActionData, UpdateRate) == 0x000028, "Member 'FWrestlerMassGetObservedPlayerActionData::UpdateRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetObservedUnconsciousEntity \ +static_assert(alignof(FWrestlerMassGetObservedUnconsciousEntity) == 0x000008, "Wrong alignment on FWrestlerMassGetObservedUnconsciousEntity"); \ +static_assert(sizeof(FWrestlerMassGetObservedUnconsciousEntity) == 0x000028, "Wrong size on FWrestlerMassGetObservedUnconsciousEntity"); \ +static_assert(offsetof(FWrestlerMassGetObservedUnconsciousEntity, UpdateRate) == 0x000024, "Member 'FWrestlerMassGetObservedUnconsciousEntity::UpdateRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPlayerAwarenessData \ +static_assert(alignof(FWrestlerMassGetPlayerAwarenessData) == 0x000008, "Wrong alignment on FWrestlerMassGetPlayerAwarenessData"); \ +static_assert(sizeof(FWrestlerMassGetPlayerAwarenessData) == 0x000028, "Wrong size on FWrestlerMassGetPlayerAwarenessData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPlayerPositionTask \ +static_assert(alignof(FWrestlerMassGetPlayerPositionTask) == 0x000008, "Wrong alignment on FWrestlerMassGetPlayerPositionTask"); \ +static_assert(sizeof(FWrestlerMassGetPlayerPositionTask) == 0x000028, "Wrong size on FWrestlerMassGetPlayerPositionTask"); \ +static_assert(offsetof(FWrestlerMassGetPlayerPositionTask, RefreshRate) == 0x000024, "Member 'FWrestlerMassGetPlayerPositionTask::RefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetPoliceNoticedCrime \ +static_assert(alignof(FWrestlerMassGetPoliceNoticedCrime) == 0x000008, "Wrong alignment on FWrestlerMassGetPoliceNoticedCrime"); \ +static_assert(sizeof(FWrestlerMassGetPoliceNoticedCrime) == 0x000028, "Wrong size on FWrestlerMassGetPoliceNoticedCrime"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassGetSmartObjectData \ +static_assert(alignof(FWrestlerMassGetSmartObjectData) == 0x000008, "Wrong alignment on FWrestlerMassGetSmartObjectData"); \ +static_assert(sizeof(FWrestlerMassGetSmartObjectData) == 0x000028, "Wrong size on FWrestlerMassGetSmartObjectData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassHasActiveBloodResonance \ +static_assert(alignof(FWrestlerMassHasActiveBloodResonance) == 0x000008, "Wrong alignment on FWrestlerMassHasActiveBloodResonance"); \ +static_assert(sizeof(FWrestlerMassHasActiveBloodResonance) == 0x000028, "Wrong size on FWrestlerMassHasActiveBloodResonance"); \ +static_assert(offsetof(FWrestlerMassHasActiveBloodResonance, bInvert) == 0x000020, "Member 'FWrestlerMassHasActiveBloodResonance::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassHasActiveBloodResonanceBehaviour \ +static_assert(alignof(FWrestlerMassHasActiveBloodResonanceBehaviour) == 0x000008, "Wrong alignment on FWrestlerMassHasActiveBloodResonanceBehaviour"); \ +static_assert(sizeof(FWrestlerMassHasActiveBloodResonanceBehaviour) == 0x000028, "Wrong size on FWrestlerMassHasActiveBloodResonanceBehaviour"); \ +static_assert(offsetof(FWrestlerMassHasActiveBloodResonanceBehaviour, bInvert) == 0x000020, "Member 'FWrestlerMassHasActiveBloodResonanceBehaviour::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassInformAboutCrimeNoticed \ +static_assert(alignof(FWrestlerMassInformAboutCrimeNoticed) == 0x000008, "Wrong alignment on FWrestlerMassInformAboutCrimeNoticed"); \ +static_assert(sizeof(FWrestlerMassInformAboutCrimeNoticed) == 0x000020, "Wrong size on FWrestlerMassInformAboutCrimeNoticed"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIsPairedSOEntityReadyCondition \ +static_assert(alignof(FWrestlerMassIsPairedSOEntityReadyCondition) == 0x000008, "Wrong alignment on FWrestlerMassIsPairedSOEntityReadyCondition"); \ +static_assert(sizeof(FWrestlerMassIsPairedSOEntityReadyCondition) == 0x000028, "Wrong size on FWrestlerMassIsPairedSOEntityReadyCondition"); \ +static_assert(offsetof(FWrestlerMassIsPairedSOEntityReadyCondition, bInvert) == 0x000020, "Member 'FWrestlerMassIsPairedSOEntityReadyCondition::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeAlertedInstanceData \ +static_assert(alignof(FWrestlerMassMakeAlertedInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassMakeAlertedInstanceData"); \ +static_assert(sizeof(FWrestlerMassMakeAlertedInstanceData) == 0x000001, "Wrong size on FWrestlerMassMakeAlertedInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeAlerted \ +static_assert(alignof(FWrestlerMassMakeAlerted) == 0x000008, "Wrong alignment on FWrestlerMassMakeAlerted"); \ +static_assert(sizeof(FWrestlerMassMakeAlerted) == 0x000020, "Wrong size on FWrestlerMassMakeAlerted"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeNoise \ +static_assert(alignof(FWrestlerMassMakeNoise) == 0x000008, "Wrong alignment on FWrestlerMassMakeNoise"); \ +static_assert(sizeof(FWrestlerMassMakeNoise) == 0x000030, "Wrong size on FWrestlerMassMakeNoise"); \ +static_assert(offsetof(FWrestlerMassMakeNoise, NoiseRadius) == 0x000024, "Member 'FWrestlerMassMakeNoise::NoiseRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMakeNoise, NoiseInvestigationType) == 0x000028, "Member 'FWrestlerMassMakeNoise::NoiseInvestigationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMakeWitness \ +static_assert(alignof(FWrestlerMassMakeWitness) == 0x000008, "Wrong alignment on FWrestlerMassMakeWitness"); \ +static_assert(sizeof(FWrestlerMassMakeWitness) == 0x000048, "Wrong size on FWrestlerMassMakeWitness"); \ +static_assert(offsetof(FWrestlerMassMakeWitness, NoClearWithTags) == 0x000028, "Member 'FWrestlerMassMakeWitness::NoClearWithTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassModularCharacterProfileData \ +static_assert(alignof(FWrestlerMassModularCharacterProfileData) == 0x000008, "Wrong alignment on FWrestlerMassModularCharacterProfileData"); \ +static_assert(sizeof(FWrestlerMassModularCharacterProfileData) == 0x000060, "Wrong size on FWrestlerMassModularCharacterProfileData"); \ +static_assert(offsetof(FWrestlerMassModularCharacterProfileData, SavedProfile) == 0x000058, "Member 'FWrestlerMassModularCharacterProfileData::SavedProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMovementSpeedParameters \ +static_assert(alignof(FWrestlerMassMovementSpeedParameters) == 0x000004, "Wrong alignment on FWrestlerMassMovementSpeedParameters"); \ +static_assert(sizeof(FWrestlerMassMovementSpeedParameters) == 0x000008, "Wrong size on FWrestlerMassMovementSpeedParameters"); \ +static_assert(offsetof(FWrestlerMassMovementSpeedParameters, MaxSideSpeed) == 0x000000, "Member 'FWrestlerMassMovementSpeedParameters::MaxSideSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassMovementSpeedParameters, MaxBackwardSpeed) == 0x000004, "Member 'FWrestlerMassMovementSpeedParameters::MaxBackwardSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassMoveToClosestZoneGraph \ +static_assert(alignof(FWrestlerMassMoveToClosestZoneGraph) == 0x000008, "Wrong alignment on FWrestlerMassMoveToClosestZoneGraph"); \ +static_assert(sizeof(FWrestlerMassMoveToClosestZoneGraph) == 0x000068, "Wrong size on FWrestlerMassMoveToClosestZoneGraph"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIgnoreNoisesTag \ +static_assert(alignof(FWrestlerMassIgnoreNoisesTag) == 0x000001, "Wrong alignment on FWrestlerMassIgnoreNoisesTag"); \ +static_assert(sizeof(FWrestlerMassIgnoreNoisesTag) == 0x000001, "Wrong size on FWrestlerMassIgnoreNoisesTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPairedEntitiesFragment \ +static_assert(alignof(FWrestlerMassPairedEntitiesFragment) == 0x000008, "Wrong alignment on FWrestlerMassPairedEntitiesFragment"); \ +static_assert(sizeof(FWrestlerMassPairedEntitiesFragment) == 0x000018, "Wrong size on FWrestlerMassPairedEntitiesFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPairedSmartObjectSpawnRequestFragment \ +static_assert(alignof(FWrestlerMassPairedSmartObjectSpawnRequestFragment) == 0x000010, "Wrong alignment on FWrestlerMassPairedSmartObjectSpawnRequestFragment"); \ +static_assert(sizeof(FWrestlerMassPairedSmartObjectSpawnRequestFragment) == 0x0000B0, "Wrong size on FWrestlerMassPairedSmartObjectSpawnRequestFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPlayContextualAnim \ +static_assert(alignof(FWrestlerMassPlayContextualAnim) == 0x000008, "Wrong alignment on FWrestlerMassPlayContextualAnim"); \ +static_assert(sizeof(FWrestlerMassPlayContextualAnim) == 0x000048, "Wrong size on FWrestlerMassPlayContextualAnim"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, ContextualAnimType) == 0x000030, "Member 'FWrestlerMassPlayContextualAnim::ContextualAnimType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, bStopMovement) == 0x000034, "Member 'FWrestlerMassPlayContextualAnim::bStopMovement' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, MinPlayAnimationDelay) == 0x000038, "Member 'FWrestlerMassPlayContextualAnim::MinPlayAnimationDelay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, MaxPlayAnimationDelay) == 0x00003C, "Member 'FWrestlerMassPlayContextualAnim::MaxPlayAnimationDelay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, bForceAnimationDuration) == 0x000040, "Member 'FWrestlerMassPlayContextualAnim::bForceAnimationDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassPlayContextualAnim, ForcedAnimationDuration) == 0x000044, "Member 'FWrestlerMassPlayContextualAnim::ForcedAnimationDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassPlayerActionObserverFragment \ +static_assert(alignof(FWrestlerMassPlayerActionObserverFragment) == 0x000004, "Wrong alignment on FWrestlerMassPlayerActionObserverFragment"); \ +static_assert(sizeof(FWrestlerMassPlayerActionObserverFragment) == 0x000024, "Wrong size on FWrestlerMassPlayerActionObserverFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIgnorePlayerActionsTag \ +static_assert(alignof(FWrestlerMassIgnorePlayerActionsTag) == 0x000001, "Wrong alignment on FWrestlerMassIgnorePlayerActionsTag"); \ +static_assert(sizeof(FWrestlerMassIgnorePlayerActionsTag) == 0x000001, "Wrong size on FWrestlerMassIgnorePlayerActionsTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRemoveSwapFragmentInstanceData \ +static_assert(alignof(FWrestlerMassRemoveSwapFragmentInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassRemoveSwapFragmentInstanceData"); \ +static_assert(sizeof(FWrestlerMassRemoveSwapFragmentInstanceData) == 0x000010, "Wrong size on FWrestlerMassRemoveSwapFragmentInstanceData"); \ +static_assert(offsetof(FWrestlerMassRemoveSwapFragmentInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerMassRemoveSwapFragmentInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerScalabilitySnapshot \ +static_assert(alignof(FWrestlerScalabilitySnapshot) == 0x000008, "Wrong alignment on FWrestlerScalabilitySnapshot"); \ +static_assert(sizeof(FWrestlerScalabilitySnapshot) == 0x000060, "Wrong size on FWrestlerScalabilitySnapshot"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRemoveSwapFragment \ +static_assert(alignof(FWrestlerMassRemoveSwapFragment) == 0x000008, "Wrong alignment on FWrestlerMassRemoveSwapFragment"); \ +static_assert(sizeof(FWrestlerMassRemoveSwapFragment) == 0x000020, "Wrong size on FWrestlerMassRemoveSwapFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassReservedSmartObjectFragment \ +static_assert(alignof(FWrestlerMassReservedSmartObjectFragment) == 0x000008, "Wrong alignment on FWrestlerMassReservedSmartObjectFragment"); \ +static_assert(sizeof(FWrestlerMassReservedSmartObjectFragment) == 0x000080, "Wrong size on FWrestlerMassReservedSmartObjectFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRunEQSInstanceData \ +static_assert(alignof(FWrestlerMassRunEQSInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassRunEQSInstanceData"); \ +static_assert(sizeof(FWrestlerMassRunEQSInstanceData) == 0x000040, "Wrong size on FWrestlerMassRunEQSInstanceData"); \ +static_assert(offsetof(FWrestlerMassRunEQSInstanceData, bOutEQSFinished) == 0x000000, "Member 'FWrestlerMassRunEQSInstanceData::bOutEQSFinished' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassRunEQSInstanceData, OutLocation) == 0x000008, "Member 'FWrestlerMassRunEQSInstanceData::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassRunEQSInstanceData, OutActor) == 0x000020, "Member 'FWrestlerMassRunEQSInstanceData::OutActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassScaredFragment \ +static_assert(alignof(FWrestlerMassScaredFragment) == 0x000004, "Wrong alignment on FWrestlerMassScaredFragment"); \ +static_assert(sizeof(FWrestlerMassScaredFragment) == 0x000008, "Wrong size on FWrestlerMassScaredFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassScareEntitiesInstanceData \ +static_assert(alignof(FWrestlerMassScareEntitiesInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassScareEntitiesInstanceData"); \ +static_assert(sizeof(FWrestlerMassScareEntitiesInstanceData) == 0x000010, "Wrong size on FWrestlerMassScareEntitiesInstanceData"); \ +static_assert(offsetof(FWrestlerMassScareEntitiesInstanceData, ScareLocation) == 0x000000, "Member 'FWrestlerMassScareEntitiesInstanceData::ScareLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSetGameplayTags \ +static_assert(alignof(FWrestlerSetGameplayTags) == 0x000008, "Wrong alignment on FWrestlerSetGameplayTags"); \ +static_assert(sizeof(FWrestlerSetGameplayTags) == 0x000048, "Wrong size on FWrestlerSetGameplayTags"); \ +static_assert(offsetof(FWrestlerSetGameplayTags, GameplayTagsToAdd) == 0x000028, "Member 'FWrestlerSetGameplayTags::GameplayTagsToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassScareEntities \ +static_assert(alignof(FWrestlerMassScareEntities) == 0x000008, "Wrong alignment on FWrestlerMassScareEntities"); \ +static_assert(sizeof(FWrestlerMassScareEntities) == 0x000090, "Wrong size on FWrestlerMassScareEntities"); \ +static_assert(offsetof(FWrestlerMassScareEntities, FilterTags) == 0x000028, "Member 'FWrestlerMassScareEntities::FilterTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassScareEntities, FilterFragments) == 0x000058, "Member 'FWrestlerMassScareEntities::FilterFragments' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassScareEntities, ScareRadius) == 0x000088, "Member 'FWrestlerMassScareEntities::ScareRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSetLastKnownPositionInstanceData \ +static_assert(alignof(FWrestlerMassSetLastKnownPositionInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassSetLastKnownPositionInstanceData"); \ +static_assert(sizeof(FWrestlerMassSetLastKnownPositionInstanceData) == 0x000030, "Wrong size on FWrestlerMassSetLastKnownPositionInstanceData"); \ +static_assert(offsetof(FWrestlerMassSetLastKnownPositionInstanceData, TargetLocation) == 0x000000, "Member 'FWrestlerMassSetLastKnownPositionInstanceData::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassSetLastKnownPositionInstanceData, InstigatorEntity) == 0x000018, "Member 'FWrestlerMassSetLastKnownPositionInstanceData::InstigatorEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassSetLastKnownPositionInstanceData, InstigatorActor) == 0x000028, "Member 'FWrestlerMassSetLastKnownPositionInstanceData::InstigatorActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectSlotStateData \ +static_assert(alignof(FWrestlerSmartObjectSlotStateData) == 0x000008, "Wrong alignment on FWrestlerSmartObjectSlotStateData"); \ +static_assert(sizeof(FWrestlerSmartObjectSlotStateData) == 0x000008, "Wrong size on FWrestlerSmartObjectSlotStateData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSetLastKnownPosition \ +static_assert(alignof(FWrestlerMassSetLastKnownPosition) == 0x000008, "Wrong alignment on FWrestlerMassSetLastKnownPosition"); \ +static_assert(sizeof(FWrestlerMassSetLastKnownPosition) == 0x000028, "Wrong size on FWrestlerMassSetLastKnownPosition"); \ +static_assert(offsetof(FWrestlerMassSetLastKnownPosition, bPlayerAsInstigator) == 0x000024, "Member 'FWrestlerMassSetLastKnownPosition::bPlayerAsInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassShouldInstantlyMoveToSmartObjectInstanceData \ +static_assert(alignof(FWrestlerMassShouldInstantlyMoveToSmartObjectInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassShouldInstantlyMoveToSmartObjectInstanceData"); \ +static_assert(sizeof(FWrestlerMassShouldInstantlyMoveToSmartObjectInstanceData) == 0x000001, "Wrong size on FWrestlerMassShouldInstantlyMoveToSmartObjectInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerShouldResetScaredRunningPath \ +static_assert(alignof(FWrestlerShouldResetScaredRunningPath) == 0x000008, "Wrong alignment on FWrestlerShouldResetScaredRunningPath"); \ +static_assert(sizeof(FWrestlerShouldResetScaredRunningPath) == 0x000028, "Wrong size on FWrestlerShouldResetScaredRunningPath"); \ +static_assert(offsetof(FWrestlerShouldResetScaredRunningPath, bInvert) == 0x000020, "Member 'FWrestlerShouldResetScaredRunningPath::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassShouldInstantlyMoveToSmartObject \ +static_assert(alignof(FWrestlerMassShouldInstantlyMoveToSmartObject) == 0x000008, "Wrong alignment on FWrestlerMassShouldInstantlyMoveToSmartObject"); \ +static_assert(sizeof(FWrestlerMassShouldInstantlyMoveToSmartObject) == 0x000028, "Wrong size on FWrestlerMassShouldInstantlyMoveToSmartObject"); \ +static_assert(offsetof(FWrestlerMassShouldInstantlyMoveToSmartObject, bInvert) == 0x000020, "Member 'FWrestlerMassShouldInstantlyMoveToSmartObject::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassShouldTransitionFromSOInstanceData \ +static_assert(alignof(FWrestlerMassShouldTransitionFromSOInstanceData) == 0x000001, "Wrong alignment on FWrestlerMassShouldTransitionFromSOInstanceData"); \ +static_assert(sizeof(FWrestlerMassShouldTransitionFromSOInstanceData) == 0x000001, "Wrong size on FWrestlerMassShouldTransitionFromSOInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerSetFocus \ +static_assert(alignof(FWrestlerSetFocus) == 0x000008, "Wrong alignment on FWrestlerSetFocus"); \ +static_assert(sizeof(FWrestlerSetFocus) == 0x000030, "Wrong size on FWrestlerSetFocus"); \ +static_assert(offsetof(FWrestlerSetFocus, bFocusOnPlayer) == 0x000026, "Member 'FWrestlerSetFocus::bFocusOnPlayer' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocus, bFocusAhead) == 0x000027, "Member 'FWrestlerSetFocus::bFocusAhead' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocus, FocusDuration) == 0x000028, "Member 'FWrestlerSetFocus::FocusDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocus, MinAngleToStartRotating) == 0x00002C, "Member 'FWrestlerSetFocus::MinAngleToStartRotating' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassShouldTransitionFromSO \ +static_assert(alignof(FWrestlerMassShouldTransitionFromSO) == 0x000008, "Wrong alignment on FWrestlerMassShouldTransitionFromSO"); \ +static_assert(sizeof(FWrestlerMassShouldTransitionFromSO) == 0x000028, "Wrong size on FWrestlerMassShouldTransitionFromSO"); \ +static_assert(offsetof(FWrestlerMassShouldTransitionFromSO, bInvert) == 0x000020, "Member 'FWrestlerMassShouldTransitionFromSO::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectBehaviourData \ +static_assert(alignof(FWrestlerSmartObjectBehaviourData) == 0x000008, "Wrong alignment on FWrestlerSmartObjectBehaviourData"); \ +static_assert(sizeof(FWrestlerSmartObjectBehaviourData) == 0x000038, "Wrong size on FWrestlerSmartObjectBehaviourData"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, ContextualAnimationName) == 0x000000, "Member 'FWrestlerSmartObjectBehaviourData::ContextualAnimationName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, AllowedPedestrianTypes) == 0x000008, "Member 'FWrestlerSmartObjectBehaviourData::AllowedPedestrianTypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, AllowedGenderTypes) == 0x000018, "Member 'FWrestlerSmartObjectBehaviourData::AllowedGenderTypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, InteractionCooldown) == 0x000028, "Member 'FWrestlerSmartObjectBehaviourData::InteractionCooldown' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, bOverrideAnimMontagePlayTime) == 0x00002C, "Member 'FWrestlerSmartObjectBehaviourData::bOverrideAnimMontagePlayTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, UseTime) == 0x000030, "Member 'FWrestlerSmartObjectBehaviourData::UseTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectBehaviourData, Idx) == 0x000034, "Member 'FWrestlerSmartObjectBehaviourData::Idx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassQueuedTraceContainer \ +static_assert(alignof(FWrestlerMassQueuedTraceContainer) == 0x000008, "Wrong alignment on FWrestlerMassQueuedTraceContainer"); \ +static_assert(sizeof(FWrestlerMassQueuedTraceContainer) == 0x000010, "Wrong size on FWrestlerMassQueuedTraceContainer"); \ + +#define DUMPER7_ASSERTS_FWrestlerCrimeNoticedTag \ +static_assert(alignof(FWrestlerCrimeNoticedTag) == 0x000001, "Wrong alignment on FWrestlerCrimeNoticedTag"); \ +static_assert(sizeof(FWrestlerCrimeNoticedTag) == 0x000001, "Wrong size on FWrestlerCrimeNoticedTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerStateTreeIntPropertyCompareInstanceData \ +static_assert(alignof(FWrestlerStateTreeIntPropertyCompareInstanceData) == 0x000004, "Wrong alignment on FWrestlerStateTreeIntPropertyCompareInstanceData"); \ +static_assert(sizeof(FWrestlerStateTreeIntPropertyCompareInstanceData) == 0x000004, "Wrong size on FWrestlerStateTreeIntPropertyCompareInstanceData"); \ +static_assert(offsetof(FWrestlerStateTreeIntPropertyCompareInstanceData, Right) == 0x000000, "Member 'FWrestlerStateTreeIntPropertyCompareInstanceData::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerCrimeChaseTag \ +static_assert(alignof(FWrestlerCrimeChaseTag) == 0x000001, "Wrong alignment on FWrestlerCrimeChaseTag"); \ +static_assert(sizeof(FWrestlerCrimeChaseTag) == 0x000001, "Wrong size on FWrestlerCrimeChaseTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectUserDataFragment \ +static_assert(alignof(FWrestlerSmartObjectUserDataFragment) == 0x000008, "Wrong alignment on FWrestlerSmartObjectUserDataFragment"); \ +static_assert(sizeof(FWrestlerSmartObjectUserDataFragment) == 0x000060, "Wrong size on FWrestlerSmartObjectUserDataFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassIgnoreDeadBodiesTag \ +static_assert(alignof(FWrestlerMassIgnoreDeadBodiesTag) == 0x000001, "Wrong alignment on FWrestlerMassIgnoreDeadBodiesTag"); \ +static_assert(sizeof(FWrestlerMassIgnoreDeadBodiesTag) == 0x000001, "Wrong size on FWrestlerMassIgnoreDeadBodiesTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerEnemyNoticedTag \ +static_assert(alignof(FWrestlerEnemyNoticedTag) == 0x000001, "Wrong alignment on FWrestlerEnemyNoticedTag"); \ +static_assert(sizeof(FWrestlerEnemyNoticedTag) == 0x000001, "Wrong size on FWrestlerEnemyNoticedTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerShouldScaredEntityCowerCondition \ +static_assert(alignof(FWrestlerShouldScaredEntityCowerCondition) == 0x000008, "Wrong alignment on FWrestlerShouldScaredEntityCowerCondition"); \ +static_assert(sizeof(FWrestlerShouldScaredEntityCowerCondition) == 0x000050, "Wrong size on FWrestlerShouldScaredEntityCowerCondition"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, bInvert) == 0x000020, "Member 'FWrestlerShouldScaredEntityCowerCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, MinScareDuration) == 0x000024, "Member 'FWrestlerShouldScaredEntityCowerCondition::MinScareDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, MaxScareDuration) == 0x000028, "Member 'FWrestlerShouldScaredEntityCowerCondition::MaxScareDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, MinimumTimeOnRequiredArea) == 0x00002C, "Member 'FWrestlerShouldScaredEntityCowerCondition::MinimumTimeOnRequiredArea' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, CowerPercentageChance) == 0x000030, "Member 'FWrestlerShouldScaredEntityCowerCondition::CowerPercentageChance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, NavMeshFilterClass) == 0x000038, "Member 'FWrestlerShouldScaredEntityCowerCondition::NavMeshFilterClass' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerShouldScaredEntityCowerCondition, ZoneGraphLaneTags) == 0x000040, "Member 'FWrestlerShouldScaredEntityCowerCondition::ZoneGraphLaneTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassAwareOfUnconsciousEntityTag \ +static_assert(alignof(FWrestlerMassAwareOfUnconsciousEntityTag) == 0x000001, "Wrong alignment on FWrestlerMassAwareOfUnconsciousEntityTag"); \ +static_assert(sizeof(FWrestlerMassAwareOfUnconsciousEntityTag) == 0x000001, "Wrong size on FWrestlerMassAwareOfUnconsciousEntityTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerStateTreeHasTagInstanceData \ +static_assert(alignof(FWrestlerStateTreeHasTagInstanceData) == 0x000001, "Wrong alignment on FWrestlerStateTreeHasTagInstanceData"); \ +static_assert(sizeof(FWrestlerStateTreeHasTagInstanceData) == 0x000001, "Wrong size on FWrestlerStateTreeHasTagInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSignalEntity \ +static_assert(alignof(FWrestlerMassSignalEntity) == 0x000008, "Wrong alignment on FWrestlerMassSignalEntity"); \ +static_assert(sizeof(FWrestlerMassSignalEntity) == 0x000028, "Wrong size on FWrestlerMassSignalEntity"); \ +static_assert(offsetof(FWrestlerMassSignalEntity, SignalRate) == 0x000024, "Member 'FWrestlerMassSignalEntity::SignalRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectFindOptionsFragment \ +static_assert(alignof(FWrestlerSmartObjectFindOptionsFragment) == 0x000004, "Wrong alignment on FWrestlerSmartObjectFindOptionsFragment"); \ +static_assert(sizeof(FWrestlerSmartObjectFindOptionsFragment) == 0x00000C, "Wrong size on FWrestlerSmartObjectFindOptionsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerTaskCollection \ +static_assert(alignof(FWrestlerTaskCollection) == 0x000008, "Wrong alignment on FWrestlerTaskCollection"); \ +static_assert(sizeof(FWrestlerTaskCollection) == 0x000010, "Wrong size on FWrestlerTaskCollection"); \ +static_assert(offsetof(FWrestlerTaskCollection, TaskCollection) == 0x000000, "Member 'FWrestlerTaskCollection::TaskCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSmartObjectQueueFragment \ +static_assert(alignof(FWrestlerMassSmartObjectQueueFragment) == 0x000008, "Wrong alignment on FWrestlerMassSmartObjectQueueFragment"); \ +static_assert(sizeof(FWrestlerMassSmartObjectQueueFragment) == 0x000090, "Wrong size on FWrestlerMassSmartObjectQueueFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerStatsFragment \ +static_assert(alignof(FWrestlerStatsFragment) == 0x000004, "Wrong alignment on FWrestlerStatsFragment"); \ +static_assert(sizeof(FWrestlerStatsFragment) == 0x000004, "Wrong size on FWrestlerStatsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGSpawnPointsGeneratorData \ +static_assert(alignof(FWrestlerZGSpawnPointsGeneratorData) == 0x000004, "Wrong alignment on FWrestlerZGSpawnPointsGeneratorData"); \ +static_assert(sizeof(FWrestlerZGSpawnPointsGeneratorData) == 0x00002C, "Wrong size on FWrestlerZGSpawnPointsGeneratorData"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, TagFilter) == 0x000000, "Member 'FWrestlerZGSpawnPointsGeneratorData::TagFilter' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, MinGap) == 0x00000C, "Member 'FWrestlerZGSpawnPointsGeneratorData::MinGap' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, MaxGap) == 0x000010, "Member 'FWrestlerZGSpawnPointsGeneratorData::MaxGap' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, RandomSeed) == 0x000014, "Member 'FWrestlerZGSpawnPointsGeneratorData::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, RandomizeLocations) == 0x000018, "Member 'FWrestlerZGSpawnPointsGeneratorData::RandomizeLocations' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, bFillZones) == 0x000019, "Member 'FWrestlerZGSpawnPointsGeneratorData::bFillZones' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, WidthRandomUsage) == 0x00001C, "Member 'FWrestlerZGSpawnPointsGeneratorData::WidthRandomUsage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, bCapWidthUsage) == 0x000020, "Member 'FWrestlerZGSpawnPointsGeneratorData::bCapWidthUsage' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, EntityWidth) == 0x000024, "Member 'FWrestlerZGSpawnPointsGeneratorData::EntityWidth' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGSpawnPointsGeneratorData, bConvertedFromOldData) == 0x000028, "Member 'FWrestlerZGSpawnPointsGeneratorData::bConvertedFromOldData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassSpawnerTableRow \ +static_assert(alignof(FWrestlerMassSpawnerTableRow) == 0x000008, "Wrong alignment on FWrestlerMassSpawnerTableRow"); \ +static_assert(sizeof(FWrestlerMassSpawnerTableRow) == 0x000030, "Wrong size on FWrestlerMassSpawnerTableRow"); \ +static_assert(offsetof(FWrestlerMassSpawnerTableRow, Type) == 0x000008, "Member 'FWrestlerMassSpawnerTableRow::Type' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassSpawnerTableRow, Count) == 0x00000C, "Member 'FWrestlerMassSpawnerTableRow::Count' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassSpawnerTableRow, EntityTypes) == 0x000010, "Member 'FWrestlerMassSpawnerTableRow::EntityTypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassSpawnerTableRow, SpawnGeneratorsData) == 0x000020, "Member 'FWrestlerMassSpawnerTableRow::SpawnGeneratorsData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerStateGameplayTagContainer \ +static_assert(alignof(FWrestlerStateGameplayTagContainer) == 0x000008, "Wrong alignment on FWrestlerStateGameplayTagContainer"); \ +static_assert(sizeof(FWrestlerStateGameplayTagContainer) == 0x000050, "Wrong size on FWrestlerStateGameplayTagContainer"); \ +static_assert(offsetof(FWrestlerStateGameplayTagContainer, ActiveStateTags) == 0x000000, "Member 'FWrestlerStateGameplayTagContainer::ActiveStateTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassTransformsAndGenderSpawnData \ +static_assert(alignof(FWrestlerMassTransformsAndGenderSpawnData) == 0x000008, "Wrong alignment on FWrestlerMassTransformsAndGenderSpawnData"); \ +static_assert(sizeof(FWrestlerMassTransformsAndGenderSpawnData) == 0x000020, "Wrong size on FWrestlerMassTransformsAndGenderSpawnData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRunSubTreeTaskInstanceData \ +static_assert(alignof(FWrestlerMassRunSubTreeTaskInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassRunSubTreeTaskInstanceData"); \ +static_assert(sizeof(FWrestlerMassRunSubTreeTaskInstanceData) == 0x000010, "Wrong size on FWrestlerMassRunSubTreeTaskInstanceData"); \ +static_assert(offsetof(FWrestlerMassRunSubTreeTaskInstanceData, PerEntityInstanceData) == 0x000000, "Member 'FWrestlerMassRunSubTreeTaskInstanceData::PerEntityInstanceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassRunSubTreeTaskDebugStrings \ +static_assert(alignof(FWrestlerMassRunSubTreeTaskDebugStrings) == 0x000008, "Wrong alignment on FWrestlerMassRunSubTreeTaskDebugStrings"); \ +static_assert(sizeof(FWrestlerMassRunSubTreeTaskDebugStrings) == 0x000020, "Wrong size on FWrestlerMassRunSubTreeTaskDebugStrings"); \ + +#define DUMPER7_ASSERTS_FWrestlerPoliceTag \ +static_assert(alignof(FWrestlerPoliceTag) == 0x000001, "Wrong alignment on FWrestlerPoliceTag"); \ +static_assert(sizeof(FWrestlerPoliceTag) == 0x000001, "Wrong size on FWrestlerPoliceTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerScaredTag \ +static_assert(alignof(FWrestlerScaredTag) == 0x000001, "Wrong alignment on FWrestlerScaredTag"); \ +static_assert(sizeof(FWrestlerScaredTag) == 0x000001, "Wrong size on FWrestlerScaredTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseGameplayAbilityTaskTag \ +static_assert(alignof(FWrestlerMassUseGameplayAbilityTaskTag) == 0x000001, "Wrong alignment on FWrestlerMassUseGameplayAbilityTaskTag"); \ +static_assert(sizeof(FWrestlerMassUseGameplayAbilityTaskTag) == 0x000001, "Wrong size on FWrestlerMassUseGameplayAbilityTaskTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassHasActorRepresentationTag \ +static_assert(alignof(FWrestlerMassHasActorRepresentationTag) == 0x000001, "Wrong alignment on FWrestlerMassHasActorRepresentationTag"); \ +static_assert(sizeof(FWrestlerMassHasActorRepresentationTag) == 0x000001, "Wrong size on FWrestlerMassHasActorRepresentationTag"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassDisableFragment \ +static_assert(alignof(FWrestlerMassDisableFragment) == 0x000008, "Wrong alignment on FWrestlerMassDisableFragment"); \ +static_assert(sizeof(FWrestlerMassDisableFragment) == 0x0001B8, "Wrong size on FWrestlerMassDisableFragment"); \ + +#define DUMPER7_ASSERTS_FDebugTaskScoreItem \ +static_assert(alignof(FDebugTaskScoreItem) == 0x000008, "Wrong alignment on FDebugTaskScoreItem"); \ +static_assert(sizeof(FDebugTaskScoreItem) == 0x000018, "Wrong size on FDebugTaskScoreItem"); \ +static_assert(offsetof(FDebugTaskScoreItem, Item) == 0x000000, "Member 'FDebugTaskScoreItem::Item' has a wrong offset!"); \ +static_assert(offsetof(FDebugTaskScoreItem, Value) == 0x000010, "Member 'FDebugTaskScoreItem::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugTaskScoreItems \ +static_assert(alignof(FDebugTaskScoreItems) == 0x000008, "Wrong alignment on FDebugTaskScoreItems"); \ +static_assert(sizeof(FDebugTaskScoreItems) == 0x000010, "Wrong size on FDebugTaskScoreItems"); \ +static_assert(offsetof(FDebugTaskScoreItems, TaskScoreItems) == 0x000000, "Member 'FDebugTaskScoreItems::TaskScoreItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassFleeingVolumeFragment \ +static_assert(alignof(FWrestlerMassFleeingVolumeFragment) == 0x000004, "Wrong alignment on FWrestlerMassFleeingVolumeFragment"); \ +static_assert(sizeof(FWrestlerMassFleeingVolumeFragment) == 0x000008, "Wrong size on FWrestlerMassFleeingVolumeFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassTurnOffVolumeFragment \ +static_assert(alignof(FWrestlerMassTurnOffVolumeFragment) == 0x000004, "Wrong alignment on FWrestlerMassTurnOffVolumeFragment"); \ +static_assert(sizeof(FWrestlerMassTurnOffVolumeFragment) == 0x000008, "Wrong size on FWrestlerMassTurnOffVolumeFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseAIActorInstanceData \ +static_assert(alignof(FWrestlerMassUseAIActorInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassUseAIActorInstanceData"); \ +static_assert(sizeof(FWrestlerMassUseAIActorInstanceData) == 0x000008, "Wrong size on FWrestlerMassUseAIActorInstanceData"); \ +static_assert(offsetof(FWrestlerMassUseAIActorInstanceData, TargetActor) == 0x000000, "Member 'FWrestlerMassUseAIActorInstanceData::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseGameplayAbilityFragment \ +static_assert(alignof(FWrestlerMassUseGameplayAbilityFragment) == 0x000008, "Wrong alignment on FWrestlerMassUseGameplayAbilityFragment"); \ +static_assert(sizeof(FWrestlerMassUseGameplayAbilityFragment) == 0x000360, "Wrong size on FWrestlerMassUseGameplayAbilityFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseGameplayAbilityInstanceData \ +static_assert(alignof(FWrestlerMassUseGameplayAbilityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassUseGameplayAbilityInstanceData"); \ +static_assert(sizeof(FWrestlerMassUseGameplayAbilityInstanceData) == 0x0000B8, "Wrong size on FWrestlerMassUseGameplayAbilityInstanceData"); \ +static_assert(offsetof(FWrestlerMassUseGameplayAbilityInstanceData, AbilityData) == 0x000000, "Member 'FWrestlerMassUseGameplayAbilityInstanceData::AbilityData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseGameplayAbilityTask \ +static_assert(alignof(FWrestlerMassUseGameplayAbilityTask) == 0x000008, "Wrong alignment on FWrestlerMassUseGameplayAbilityTask"); \ +static_assert(sizeof(FWrestlerMassUseGameplayAbilityTask) == 0x000028, "Wrong size on FWrestlerMassUseGameplayAbilityTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseSmartObjectTaskInstanceData \ +static_assert(alignof(FWrestlerMassUseSmartObjectTaskInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassUseSmartObjectTaskInstanceData"); \ +static_assert(sizeof(FWrestlerMassUseSmartObjectTaskInstanceData) == 0x000030, "Wrong size on FWrestlerMassUseSmartObjectTaskInstanceData"); \ +static_assert(offsetof(FWrestlerMassUseSmartObjectTaskInstanceData, UsingBehaviourDefinition) == 0x000028, "Member 'FWrestlerMassUseSmartObjectTaskInstanceData::UsingBehaviourDefinition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassUseSmartObjectTask \ +static_assert(alignof(FWrestlerMassUseSmartObjectTask) == 0x000008, "Wrong alignment on FWrestlerMassUseSmartObjectTask"); \ +static_assert(sizeof(FWrestlerMassUseSmartObjectTask) == 0x000058, "Wrong size on FWrestlerMassUseSmartObjectTask"); \ +static_assert(offsetof(FWrestlerMassUseSmartObjectTask, TimeToDetectSmartObjectIterruption) == 0x000044, "Member 'FWrestlerMassUseSmartObjectTask::TimeToDetectSmartObjectIterruption' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseSmartObjectTask, InterruptReactionAnimName) == 0x000048, "Member 'FWrestlerMassUseSmartObjectTask::InterruptReactionAnimName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassUseSmartObjectTask, InterruptReactionBarkTag) == 0x000050, "Member 'FWrestlerMassUseSmartObjectTask::InterruptReactionBarkTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassVisibilityFragment \ +static_assert(alignof(FWrestlerMassVisibilityFragment) == 0x000004, "Wrong alignment on FWrestlerMassVisibilityFragment"); \ +static_assert(sizeof(FWrestlerMassVisibilityFragment) == 0x000018, "Wrong size on FWrestlerMassVisibilityFragment"); \ +static_assert(offsetof(FWrestlerMassVisibilityFragment, TimeToConsiderNotVisible) == 0x00000C, "Member 'FWrestlerMassVisibilityFragment::TimeToConsiderNotVisible' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassVisibilityFragment, CloseDistance) == 0x000010, "Member 'FWrestlerMassVisibilityFragment::CloseDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassVisibilityFragment, FarDistance) == 0x000014, "Member 'FWrestlerMassVisibilityFragment::FarDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWaitInstanceData \ +static_assert(alignof(FWrestlerMassWaitInstanceData) == 0x000004, "Wrong alignment on FWrestlerMassWaitInstanceData"); \ +static_assert(sizeof(FWrestlerMassWaitInstanceData) == 0x000004, "Wrong size on FWrestlerMassWaitInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWakeUpUnconsciousEntityInstanceData \ +static_assert(alignof(FWrestlerMassWakeUpUnconsciousEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassWakeUpUnconsciousEntityInstanceData"); \ +static_assert(sizeof(FWrestlerMassWakeUpUnconsciousEntityInstanceData) == 0x000008, "Wrong size on FWrestlerMassWakeUpUnconsciousEntityInstanceData"); \ +static_assert(offsetof(FWrestlerMassWakeUpUnconsciousEntityInstanceData, UnconsciousEntity) == 0x000000, "Member 'FWrestlerMassWakeUpUnconsciousEntityInstanceData::UnconsciousEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassWakeUpUnconsciousEntity \ +static_assert(alignof(FWrestlerMassWakeUpUnconsciousEntity) == 0x000008, "Wrong alignment on FWrestlerMassWakeUpUnconsciousEntity"); \ +static_assert(sizeof(FWrestlerMassWakeUpUnconsciousEntity) == 0x000028, "Wrong size on FWrestlerMassWakeUpUnconsciousEntity"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassZoneGraphNavigationTagChance \ +static_assert(alignof(FWrestlerMassZoneGraphNavigationTagChance) == 0x000004, "Wrong alignment on FWrestlerMassZoneGraphNavigationTagChance"); \ +static_assert(sizeof(FWrestlerMassZoneGraphNavigationTagChance) == 0x000008, "Wrong size on FWrestlerMassZoneGraphNavigationTagChance"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationTagChance, Tag) == 0x000000, "Member 'FWrestlerMassZoneGraphNavigationTagChance::Tag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationTagChance, AllowedChance) == 0x000004, "Member 'FWrestlerMassZoneGraphNavigationTagChance::AllowedChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassZoneGraphNavigationParameters \ +static_assert(alignof(FWrestlerMassZoneGraphNavigationParameters) == 0x000008, "Wrong alignment on FWrestlerMassZoneGraphNavigationParameters"); \ +static_assert(sizeof(FWrestlerMassZoneGraphNavigationParameters) == 0x000030, "Wrong size on FWrestlerMassZoneGraphNavigationParameters"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationParameters, LaneChances) == 0x000000, "Member 'FWrestlerMassZoneGraphNavigationParameters::LaneChances' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationParameters, AvoidanceParams) == 0x000010, "Member 'FWrestlerMassZoneGraphNavigationParameters::AvoidanceParams' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationParameters, bOverrideEndOfPathOffset) == 0x000028, "Member 'FWrestlerMassZoneGraphNavigationParameters::bOverrideEndOfPathOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphNavigationParameters, OverriddenEndOfPathOffset) == 0x00002C, "Member 'FWrestlerMassZoneGraphNavigationParameters::OverriddenEndOfPathOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerModifyMassTagsInstanceData \ +static_assert(alignof(FWrestlerModifyMassTagsInstanceData) == 0x000008, "Wrong alignment on FWrestlerModifyMassTagsInstanceData"); \ +static_assert(sizeof(FWrestlerModifyMassTagsInstanceData) == 0x000018, "Wrong size on FWrestlerModifyMassTagsInstanceData"); \ +static_assert(offsetof(FWrestlerModifyMassTagsInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerModifyMassTagsInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerModifyTagsInEntityInstanceData \ +static_assert(alignof(FWrestlerModifyTagsInEntityInstanceData) == 0x000008, "Wrong alignment on FWrestlerModifyTagsInEntityInstanceData"); \ +static_assert(sizeof(FWrestlerModifyTagsInEntityInstanceData) == 0x000010, "Wrong size on FWrestlerModifyTagsInEntityInstanceData"); \ +static_assert(offsetof(FWrestlerModifyTagsInEntityInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerModifyTagsInEntityInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPromptDialogues \ +static_assert(alignof(FWrestlerPromptDialogues) == 0x000008, "Wrong alignment on FWrestlerPromptDialogues"); \ +static_assert(sizeof(FWrestlerPromptDialogues) == 0x000018, "Wrong size on FWrestlerPromptDialogues"); \ +static_assert(offsetof(FWrestlerPromptDialogues, DialogueInfos) == 0x000000, "Member 'FWrestlerPromptDialogues::DialogueInfos' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPromptDialogues, SharedPromptStory) == 0x000010, "Member 'FWrestlerPromptDialogues::SharedPromptStory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestleAnimationsContainer \ +static_assert(alignof(FWrestleAnimationsContainer) == 0x000008, "Wrong alignment on FWrestleAnimationsContainer"); \ +static_assert(sizeof(FWrestleAnimationsContainer) == 0x000010, "Wrong size on FWrestleAnimationsContainer"); \ +static_assert(offsetof(FWrestleAnimationsContainer, AnimationChances) == 0x000000, "Member 'FWrestleAnimationsContainer::AnimationChances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMovementSetInfo \ +static_assert(alignof(FWrestlerMovementSetInfo) == 0x000004, "Wrong alignment on FWrestlerMovementSetInfo"); \ +static_assert(sizeof(FWrestlerMovementSetInfo) == 0x000018, "Wrong size on FWrestlerMovementSetInfo"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, WalkSpeed) == 0x000000, "Member 'FWrestlerMovementSetInfo::WalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, Acceleration) == 0x000004, "Member 'FWrestlerMovementSetInfo::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, SprintDistanceThreshold) == 0x000008, "Member 'FWrestlerMovementSetInfo::SprintDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, bStrafing) == 0x00000C, "Member 'FWrestlerMovementSetInfo::bStrafing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, RotationInterpolationSpeed) == 0x000010, "Member 'FWrestlerMovementSetInfo::RotationInterpolationSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMovementSetInfo, bTurnSetEnabled) == 0x000014, "Member 'FWrestlerMovementSetInfo::bTurnSetEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMoveToPlayer \ +static_assert(alignof(FWrestlerMoveToPlayer) == 0x000008, "Wrong alignment on FWrestlerMoveToPlayer"); \ +static_assert(sizeof(FWrestlerMoveToPlayer) == 0x000070, "Wrong size on FWrestlerMoveToPlayer"); \ + +#define DUMPER7_ASSERTS_FWrestlerMusicTagMovieSceneTrackImplementation \ +static_assert(alignof(FWrestlerMusicTagMovieSceneTrackImplementation) == 0x000008, "Wrong alignment on FWrestlerMusicTagMovieSceneTrackImplementation"); \ +static_assert(sizeof(FWrestlerMusicTagMovieSceneTrackImplementation) == 0x000010, "Wrong size on FWrestlerMusicTagMovieSceneTrackImplementation"); \ + +#define DUMPER7_ASSERTS_FWrestlerNoiseHearingFragment \ +static_assert(alignof(FWrestlerNoiseHearingFragment) == 0x000008, "Wrong alignment on FWrestlerNoiseHearingFragment"); \ +static_assert(sizeof(FWrestlerNoiseHearingFragment) == 0x000020, "Wrong size on FWrestlerNoiseHearingFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerNoiseResponse \ +static_assert(alignof(FWrestlerNoiseResponse) == 0x000008, "Wrong alignment on FWrestlerNoiseResponse"); \ +static_assert(sizeof(FWrestlerNoiseResponse) == 0x000028, "Wrong size on FWrestlerNoiseResponse"); \ +static_assert(offsetof(FWrestlerNoiseResponse, MoveTowardsNoiseDistance) == 0x000024, "Member 'FWrestlerNoiseResponse::MoveTowardsNoiseDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPassWitnessDataInstanceData \ +static_assert(alignof(FWrestlerPassWitnessDataInstanceData) == 0x000008, "Wrong alignment on FWrestlerPassWitnessDataInstanceData"); \ +static_assert(sizeof(FWrestlerPassWitnessDataInstanceData) == 0x000010, "Wrong size on FWrestlerPassWitnessDataInstanceData"); \ +static_assert(offsetof(FWrestlerPassWitnessDataInstanceData, TargetEntity) == 0x000000, "Member 'FWrestlerPassWitnessDataInstanceData::TargetEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPerformanceCameraInfo \ +static_assert(alignof(FWrestlerPerformanceCameraInfo) == 0x000008, "Wrong alignment on FWrestlerPerformanceCameraInfo"); \ +static_assert(sizeof(FWrestlerPerformanceCameraInfo) == 0x000080, "Wrong size on FWrestlerPerformanceCameraInfo"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, Type) == 0x000000, "Member 'FWrestlerPerformanceCameraInfo::Type' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, MapTag) == 0x000004, "Member 'FWrestlerPerformanceCameraInfo::MapTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, Name) == 0x00000C, "Member 'FWrestlerPerformanceCameraInfo::Name' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, AssetPath) == 0x000018, "Member 'FWrestlerPerformanceCameraInfo::AssetPath' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, Position) == 0x000038, "Member 'FWrestlerPerformanceCameraInfo::Position' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, Rotation) == 0x000050, "Member 'FWrestlerPerformanceCameraInfo::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPerformanceCameraInfo, Scale) == 0x000068, "Member 'FWrestlerPerformanceCameraInfo::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTaskBoardPerDifficulty \ +static_assert(alignof(FWrestlerTaskBoardPerDifficulty) == 0x000008, "Wrong alignment on FWrestlerTaskBoardPerDifficulty"); \ +static_assert(sizeof(FWrestlerTaskBoardPerDifficulty) == 0x000050, "Wrong size on FWrestlerTaskBoardPerDifficulty"); \ +static_assert(offsetof(FWrestlerTaskBoardPerDifficulty, TaskBoards) == 0x000000, "Member 'FWrestlerTaskBoardPerDifficulty::TaskBoards' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerQualityDeviceProfileVariant \ +static_assert(alignof(FWrestlerQualityDeviceProfileVariant) == 0x000008, "Wrong alignment on FWrestlerQualityDeviceProfileVariant"); \ +static_assert(sizeof(FWrestlerQualityDeviceProfileVariant) == 0x000030, "Wrong size on FWrestlerQualityDeviceProfileVariant"); \ +static_assert(offsetof(FWrestlerQualityDeviceProfileVariant, DisplayName) == 0x000000, "Member 'FWrestlerQualityDeviceProfileVariant::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQualityDeviceProfileVariant, DeviceProfileSuffix) == 0x000018, "Member 'FWrestlerQualityDeviceProfileVariant::DeviceProfileSuffix' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerQualityDeviceProfileVariant, MinRefreshRate) == 0x000028, "Member 'FWrestlerQualityDeviceProfileVariant::MinRefreshRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTaskBoardConfig \ +static_assert(alignof(FWrestlerTaskBoardConfig) == 0x000008, "Wrong alignment on FWrestlerTaskBoardConfig"); \ +static_assert(sizeof(FWrestlerTaskBoardConfig) == 0x000018, "Wrong size on FWrestlerTaskBoardConfig"); \ +static_assert(offsetof(FWrestlerTaskBoardConfig, TaskTypes) == 0x000000, "Member 'FWrestlerTaskBoardConfig::TaskTypes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskBoardConfig, NextTaskMinDelay) == 0x000010, "Member 'FWrestlerTaskBoardConfig::NextTaskMinDelay' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskBoardConfig, NextTaskMaxDelay) == 0x000014, "Member 'FWrestlerTaskBoardConfig::NextTaskMaxDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDifficulty \ +static_assert(alignof(FDifficulty) == 0x000008, "Wrong alignment on FDifficulty"); \ +static_assert(sizeof(FDifficulty) == 0x000028, "Wrong size on FDifficulty"); \ +static_assert(offsetof(FDifficulty, DifficultyAttributeEffect) == 0x000000, "Member 'FDifficulty::DifficultyAttributeEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerHasAnyGameplayTagInstanceData \ +static_assert(alignof(FWrestlerPlayerHasAnyGameplayTagInstanceData) == 0x000001, "Wrong alignment on FWrestlerPlayerHasAnyGameplayTagInstanceData"); \ +static_assert(sizeof(FWrestlerPlayerHasAnyGameplayTagInstanceData) == 0x000001, "Wrong size on FWrestlerPlayerHasAnyGameplayTagInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilityTargetData \ +static_assert(alignof(FWrestlerAbilityTargetData) == 0x000008, "Wrong alignment on FWrestlerAbilityTargetData"); \ +static_assert(sizeof(FWrestlerAbilityTargetData) == 0x000008, "Wrong size on FWrestlerAbilityTargetData"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerHasAnyGameplayTagCondition \ +static_assert(alignof(FWrestlerPlayerHasAnyGameplayTagCondition) == 0x000008, "Wrong alignment on FWrestlerPlayerHasAnyGameplayTagCondition"); \ +static_assert(sizeof(FWrestlerPlayerHasAnyGameplayTagCondition) == 0x000048, "Wrong size on FWrestlerPlayerHasAnyGameplayTagCondition"); \ +static_assert(offsetof(FWrestlerPlayerHasAnyGameplayTagCondition, bInvert) == 0x000020, "Member 'FWrestlerPlayerHasAnyGameplayTagCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlayerHasAnyGameplayTagCondition, GameplayTags) == 0x000028, "Member 'FWrestlerPlayerHasAnyGameplayTagCondition::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlayerSightTestInstanceData \ +static_assert(alignof(FWrestlerPlayerSightTestInstanceData) == 0x000008, "Wrong alignment on FWrestlerPlayerSightTestInstanceData"); \ +static_assert(sizeof(FWrestlerPlayerSightTestInstanceData) == 0x000010, "Wrong size on FWrestlerPlayerSightTestInstanceData"); \ +static_assert(offsetof(FWrestlerPlayerSightTestInstanceData, bCanSeePlayer) == 0x000008, "Member 'FWrestlerPlayerSightTestInstanceData::bCanSeePlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerPlaythroughSaveData \ +static_assert(alignof(FWrestlerPlaythroughSaveData) == 0x000008, "Wrong alignment on FWrestlerPlaythroughSaveData"); \ +static_assert(sizeof(FWrestlerPlaythroughSaveData) == 0x000070, "Wrong size on FWrestlerPlaythroughSaveData"); \ +static_assert(offsetof(FWrestlerPlaythroughSaveData, PlaythroughGUID) == 0x000000, "Member 'FWrestlerPlaythroughSaveData::PlaythroughGUID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlaythroughSaveData, CurrentActivityID) == 0x000010, "Member 'FWrestlerPlaythroughSaveData::CurrentActivityID' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPlaythroughSaveData, LoadingPreset) == 0x000020, "Member 'FWrestlerPlaythroughSaveData::LoadingPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMasqueradeQuestData \ +static_assert(alignof(FWrestlerMasqueradeQuestData) == 0x000008, "Wrong alignment on FWrestlerMasqueradeQuestData"); \ +static_assert(sizeof(FWrestlerMasqueradeQuestData) == 0x000010, "Wrong size on FWrestlerMasqueradeQuestData"); \ +static_assert(offsetof(FWrestlerMasqueradeQuestData, MasqueradeQuestDataAsset) == 0x000000, "Member 'FWrestlerMasqueradeQuestData::MasqueradeQuestDataAsset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMasqueradeQuestData, HighMasqueradeLevelRule) == 0x000008, "Member 'FWrestlerMasqueradeQuestData::HighMasqueradeLevelRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRangedAttackEQSSettings \ +static_assert(alignof(FWrestlerRangedAttackEQSSettings) == 0x000004, "Wrong alignment on FWrestlerRangedAttackEQSSettings"); \ +static_assert(sizeof(FWrestlerRangedAttackEQSSettings) == 0x000008, "Wrong size on FWrestlerRangedAttackEQSSettings"); \ +static_assert(offsetof(FWrestlerRangedAttackEQSSettings, RangedGapCloseMinDistance) == 0x000000, "Member 'FWrestlerRangedAttackEQSSettings::RangedGapCloseMinDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRangedAttackEQSSettings, RangedGapCloseMaxDistance) == 0x000004, "Member 'FWrestlerRangedAttackEQSSettings::RangedGapCloseMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRangedProjectilePool \ +static_assert(alignof(FRangedProjectilePool) == 0x000008, "Wrong alignment on FRangedProjectilePool"); \ +static_assert(sizeof(FRangedProjectilePool) == 0x000018, "Wrong size on FRangedProjectilePool"); \ +static_assert(offsetof(FRangedProjectilePool, Projectiles) == 0x000000, "Member 'FRangedProjectilePool::Projectiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRemoveTagsOnExit \ +static_assert(alignof(FWrestlerRemoveTagsOnExit) == 0x000008, "Wrong alignment on FWrestlerRemoveTagsOnExit"); \ +static_assert(sizeof(FWrestlerRemoveTagsOnExit) == 0x000038, "Wrong size on FWrestlerRemoveTagsOnExit"); \ +static_assert(offsetof(FWrestlerRemoveTagsOnExit, TagsToRemove) == 0x000028, "Member 'FWrestlerRemoveTagsOnExit::TagsToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerRunAwayFromFearSource \ +static_assert(alignof(FWrestlerRunAwayFromFearSource) == 0x000008, "Wrong alignment on FWrestlerRunAwayFromFearSource"); \ +static_assert(sizeof(FWrestlerRunAwayFromFearSource) == 0x000080, "Wrong size on FWrestlerRunAwayFromFearSource"); \ +static_assert(offsetof(FWrestlerRunAwayFromFearSource, SearchDepth) == 0x00006A, "Member 'FWrestlerRunAwayFromFearSource::SearchDepth' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRunAwayFromFearSource, AcceptableDistanceThreshold) == 0x00006C, "Member 'FWrestlerRunAwayFromFearSource::AcceptableDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRunAwayFromFearSource, MinimumMoveAngleToDanger) == 0x000070, "Member 'FWrestlerRunAwayFromFearSource::MinimumMoveAngleToDanger' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRunAwayFromFearSource, AvoidDangerRadius) == 0x000074, "Member 'FWrestlerRunAwayFromFearSource::AvoidDangerRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerRunAwayFromFearSource, MinimumPathLength) == 0x000078, "Member 'FWrestlerRunAwayFromFearSource::MinimumPathLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBufferToCapture \ +static_assert(alignof(FBufferToCapture) == 0x000008, "Wrong alignment on FBufferToCapture"); \ +static_assert(sizeof(FBufferToCapture) == 0x000010, "Wrong size on FBufferToCapture"); \ +static_assert(offsetof(FBufferToCapture, Buffer) == 0x000000, "Member 'FBufferToCapture::Buffer' has a wrong offset!"); \ +static_assert(offsetof(FBufferToCapture, TextureTarget) == 0x000008, "Member 'FBufferToCapture::TextureTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSearchTeam \ +static_assert(alignof(FWrestlerSearchTeam) == 0x000008, "Wrong alignment on FWrestlerSearchTeam"); \ +static_assert(sizeof(FWrestlerSearchTeam) == 0x000078, "Wrong size on FWrestlerSearchTeam"); \ +static_assert(offsetof(FWrestlerSearchTeam, Team) == 0x000000, "Member 'FWrestlerSearchTeam::Team' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSearchTeam, TeamCaptain) == 0x000050, "Member 'FWrestlerSearchTeam::TeamCaptain' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSearchTeam, SearchSpot) == 0x000058, "Member 'FWrestlerSearchTeam::SearchSpot' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSearchTeam, Type) == 0x000070, "Member 'FWrestlerSearchTeam::Type' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSearchTeam, NumberSearchesLeft) == 0x000074, "Member 'FWrestlerSearchTeam::NumberSearchesLeft' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSelectByTagGameplayTargetDataFilter \ +static_assert(alignof(FWrestlerSelectByTagGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerSelectByTagGameplayTargetDataFilter"); \ +static_assert(sizeof(FWrestlerSelectByTagGameplayTargetDataFilter) == 0x000040, "Wrong size on FWrestlerSelectByTagGameplayTargetDataFilter"); \ +static_assert(offsetof(FWrestlerSelectByTagGameplayTargetDataFilter, TagContainer) == 0x000020, "Member 'FWrestlerSelectByTagGameplayTargetDataFilter::TagContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSetFocusInstanceData \ +static_assert(alignof(FWrestlerSetFocusInstanceData) == 0x000008, "Wrong alignment on FWrestlerSetFocusInstanceData"); \ +static_assert(sizeof(FWrestlerSetFocusInstanceData) == 0x000068, "Wrong size on FWrestlerSetFocusInstanceData"); \ +static_assert(offsetof(FWrestlerSetFocusInstanceData, FocusingEntity) == 0x000000, "Member 'FWrestlerSetFocusInstanceData::FocusingEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocusInstanceData, TargetEntity) == 0x000010, "Member 'FWrestlerSetFocusInstanceData::TargetEntity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocusInstanceData, TargetActor) == 0x000020, "Member 'FWrestlerSetFocusInstanceData::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSetFocusInstanceData, TargetLocation) == 0x000028, "Member 'FWrestlerSetFocusInstanceData::TargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSetGameplayTagsInstanceData \ +static_assert(alignof(FWrestlerSetGameplayTagsInstanceData) == 0x000001, "Wrong alignment on FWrestlerSetGameplayTagsInstanceData"); \ +static_assert(sizeof(FWrestlerSetGameplayTagsInstanceData) == 0x000001, "Wrong size on FWrestlerSetGameplayTagsInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerManagedConfigAssets \ +static_assert(alignof(FWrestlerManagedConfigAssets) == 0x000008, "Wrong alignment on FWrestlerManagedConfigAssets"); \ +static_assert(sizeof(FWrestlerManagedConfigAssets) == 0x000010, "Wrong size on FWrestlerManagedConfigAssets"); \ +static_assert(offsetof(FWrestlerManagedConfigAssets, DataConfigSoftObjects) == 0x000000, "Member 'FWrestlerManagedConfigAssets::DataConfigSoftObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerShouldResetScaredRunningPathInstanceData \ +static_assert(alignof(FWrestlerShouldResetScaredRunningPathInstanceData) == 0x000001, "Wrong alignment on FWrestlerShouldResetScaredRunningPathInstanceData"); \ +static_assert(sizeof(FWrestlerShouldResetScaredRunningPathInstanceData) == 0x000001, "Wrong size on FWrestlerShouldResetScaredRunningPathInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerShouldScaredEntityCowerInstanceData \ +static_assert(alignof(FWrestlerShouldScaredEntityCowerInstanceData) == 0x000004, "Wrong alignment on FWrestlerShouldScaredEntityCowerInstanceData"); \ +static_assert(sizeof(FWrestlerShouldScaredEntityCowerInstanceData) == 0x000008, "Wrong size on FWrestlerShouldScaredEntityCowerInstanceData"); \ + +#define DUMPER7_ASSERTS_FSkillNode \ +static_assert(alignof(FSkillNode) == 0x000008, "Wrong alignment on FSkillNode"); \ +static_assert(sizeof(FSkillNode) == 0x000030, "Wrong size on FSkillNode"); \ +static_assert(offsetof(FSkillNode, NodeName) == 0x000000, "Member 'FSkillNode::NodeName' has a wrong offset!"); \ +static_assert(offsetof(FSkillNode, NodeDescription) == 0x000008, "Member 'FSkillNode::NodeDescription' has a wrong offset!"); \ +static_assert(offsetof(FSkillNode, NodeImg) == 0x000010, "Member 'FSkillNode::NodeImg' has a wrong offset!"); \ +static_assert(offsetof(FSkillNode, bloodPoints) == 0x000018, "Member 'FSkillNode::bloodPoints' has a wrong offset!"); \ +static_assert(offsetof(FSkillNode, NodeStatus) == 0x00001C, "Member 'FSkillNode::NodeStatus' has a wrong offset!"); \ +static_assert(offsetof(FSkillNode, NodePos) == 0x000020, "Member 'FSkillNode::NodePos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectDataDefinitionTableRow \ +static_assert(alignof(FWrestlerSmartObjectDataDefinitionTableRow) == 0x000008, "Wrong alignment on FWrestlerSmartObjectDataDefinitionTableRow"); \ +static_assert(sizeof(FWrestlerSmartObjectDataDefinitionTableRow) == 0x000020, "Wrong size on FWrestlerSmartObjectDataDefinitionTableRow"); \ +static_assert(offsetof(FWrestlerSmartObjectDataDefinitionTableRow, RowName) == 0x000008, "Member 'FWrestlerSmartObjectDataDefinitionTableRow::RowName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectDataDefinitionTableRow, BehavioursData) == 0x000010, "Member 'FWrestlerSmartObjectDataDefinitionTableRow::BehavioursData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmartObjectUserData \ +static_assert(alignof(FWrestlerSmartObjectUserData) == 0x000008, "Wrong alignment on FWrestlerSmartObjectUserData"); \ +static_assert(sizeof(FWrestlerSmartObjectUserData) == 0x000060, "Wrong size on FWrestlerSmartObjectUserData"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, SmartObjectAnim) == 0x000000, "Member 'FWrestlerSmartObjectUserData::SmartObjectAnim' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, MaxConsiderDistanceBehind) == 0x000040, "Member 'FWrestlerSmartObjectUserData::MaxConsiderDistanceBehind' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, MinConsiderDistanceAhead) == 0x000044, "Member 'FWrestlerSmartObjectUserData::MinConsiderDistanceAhead' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, MaxConsiderDistanceAhead) == 0x000048, "Member 'FWrestlerSmartObjectUserData::MaxConsiderDistanceAhead' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, DynamicSearchDistance) == 0x00004C, "Member 'FWrestlerSmartObjectUserData::DynamicSearchDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, DynamicSearchHeight) == 0x000050, "Member 'FWrestlerSmartObjectUserData::DynamicSearchHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmartObjectUserData, bAllowFindingBehindEntity) == 0x000054, "Member 'FWrestlerSmartObjectUserData::bAllowFindingBehindEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerSmoothOrientationFragment \ +static_assert(alignof(FWrestlerSmoothOrientationFragment) == 0x000004, "Wrong alignment on FWrestlerSmoothOrientationFragment"); \ +static_assert(sizeof(FWrestlerSmoothOrientationFragment) == 0x000020, "Wrong size on FWrestlerSmoothOrientationFragment"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, EndOfPathDuration) == 0x000000, "Member 'FWrestlerSmoothOrientationFragment::EndOfPathDuration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, OrientationSmoothingTime) == 0x000004, "Member 'FWrestlerSmoothOrientationFragment::OrientationSmoothingTime' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, MinRotationSpeed) == 0x000008, "Member 'FWrestlerSmoothOrientationFragment::MinRotationSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, MinVelocityWeightSpeed) == 0x00000C, "Member 'FWrestlerSmoothOrientationFragment::MinVelocityWeightSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, Moving) == 0x000010, "Member 'FWrestlerSmoothOrientationFragment::Moving' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerSmoothOrientationFragment, Standing) == 0x000018, "Member 'FWrestlerSmoothOrientationFragment::Standing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEvaluatorDefaultBehaviorStruct \ +static_assert(alignof(FEvaluatorDefaultBehaviorStruct) == 0x000008, "Wrong alignment on FEvaluatorDefaultBehaviorStruct"); \ +static_assert(sizeof(FEvaluatorDefaultBehaviorStruct) == 0x0000C8, "Wrong size on FEvaluatorDefaultBehaviorStruct"); \ +static_assert(offsetof(FEvaluatorDefaultBehaviorStruct, DefaultBehaviour) == 0x000000, "Member 'FEvaluatorDefaultBehaviorStruct::DefaultBehaviour' has a wrong offset!"); \ +static_assert(offsetof(FEvaluatorDefaultBehaviorStruct, EnemyTypeDefaultBehaviourOverride) == 0x000028, "Member 'FEvaluatorDefaultBehaviorStruct::EnemyTypeDefaultBehaviourOverride' has a wrong offset!"); \ +static_assert(offsetof(FEvaluatorDefaultBehaviorStruct, HasTagDefaultBehaviourTagOverride) == 0x000078, "Member 'FEvaluatorDefaultBehaviorStruct::HasTagDefaultBehaviourTagOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerStateTreeHasTagCondition \ +static_assert(alignof(FWrestlerStateTreeHasTagCondition) == 0x000008, "Wrong alignment on FWrestlerStateTreeHasTagCondition"); \ +static_assert(sizeof(FWrestlerStateTreeHasTagCondition) == 0x000058, "Wrong size on FWrestlerStateTreeHasTagCondition"); \ +static_assert(offsetof(FWrestlerStateTreeHasTagCondition, bInvert) == 0x000020, "Member 'FWrestlerStateTreeHasTagCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerStateTreeHasTagCondition, FilterTags) == 0x000028, "Member 'FWrestlerStateTreeHasTagCondition::FilterTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerStateTreeIntPropertyCondition \ +static_assert(alignof(FWrestlerStateTreeIntPropertyCondition) == 0x000008, "Wrong alignment on FWrestlerStateTreeIntPropertyCondition"); \ +static_assert(sizeof(FWrestlerStateTreeIntPropertyCondition) == 0x000030, "Wrong size on FWrestlerStateTreeIntPropertyCondition"); \ +static_assert(offsetof(FWrestlerStateTreeIntPropertyCondition, bInvert) == 0x000020, "Member 'FWrestlerStateTreeIntPropertyCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerStateTreeIntPropertyCondition, Operator) == 0x000021, "Member 'FWrestlerStateTreeIntPropertyCondition::Operator' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerStateTreeIntPropertyCondition, Left) == 0x000028, "Member 'FWrestlerStateTreeIntPropertyCondition::Left' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTagsFragment \ +static_assert(alignof(FWrestlerTagsFragment) == 0x000008, "Wrong alignment on FWrestlerTagsFragment"); \ +static_assert(sizeof(FWrestlerTagsFragment) == 0x000060, "Wrong size on FWrestlerTagsFragment"); \ + +#define DUMPER7_ASSERTS_FWrestlerThrowTargetData \ +static_assert(alignof(FWrestlerThrowTargetData) == 0x000008, "Wrong alignment on FWrestlerThrowTargetData"); \ +static_assert(sizeof(FWrestlerThrowTargetData) == 0x000020, "Wrong size on FWrestlerThrowTargetData"); \ +static_assert(offsetof(FWrestlerThrowTargetData, ThrowVelocity) == 0x000008, "Member 'FWrestlerThrowTargetData::ThrowVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilitySequenceTaskData \ +static_assert(alignof(FWrestlerAbilitySequenceTaskData) == 0x000008, "Wrong alignment on FWrestlerAbilitySequenceTaskData"); \ +static_assert(sizeof(FWrestlerAbilitySequenceTaskData) == 0x000020, "Wrong size on FWrestlerAbilitySequenceTaskData"); \ +static_assert(offsetof(FWrestlerAbilitySequenceTaskData, SequenceName) == 0x000000, "Member 'FWrestlerAbilitySequenceTaskData::SequenceName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySequenceTaskData, Weighting) == 0x000008, "Member 'FWrestlerAbilitySequenceTaskData::Weighting' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySequenceTaskData, TaskSequence) == 0x000010, "Member 'FWrestlerAbilitySequenceTaskData::TaskSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAgentTask \ +static_assert(alignof(FWrestlerAgentTask) == 0x000008, "Wrong alignment on FWrestlerAgentTask"); \ +static_assert(sizeof(FWrestlerAgentTask) == 0x000018, "Wrong size on FWrestlerAgentTask"); \ +static_assert(offsetof(FWrestlerAgentTask, Agent) == 0x000000, "Member 'FWrestlerAgentTask::Agent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugTaskScores \ +static_assert(alignof(FDebugTaskScores) == 0x000008, "Wrong alignment on FDebugTaskScores"); \ +static_assert(sizeof(FDebugTaskScores) == 0x000050, "Wrong size on FDebugTaskScores"); \ +static_assert(offsetof(FDebugTaskScores, TaskScores) == 0x000000, "Member 'FDebugTaskScores::TaskScores' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugEnemyTaskScores \ +static_assert(alignof(FDebugEnemyTaskScores) == 0x000008, "Wrong alignment on FDebugEnemyTaskScores"); \ +static_assert(sizeof(FDebugEnemyTaskScores) == 0x0000A0, "Wrong size on FDebugEnemyTaskScores"); \ +static_assert(offsetof(FDebugEnemyTaskScores, EnemyTaskScores) == 0x000000, "Member 'FDebugEnemyTaskScores::EnemyTaskScores' has a wrong offset!"); \ +static_assert(offsetof(FDebugEnemyTaskScores, ChosenTaskScore) == 0x000050, "Member 'FDebugEnemyTaskScores::ChosenTaskScore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugTaskTypeEnemyTaskScores \ +static_assert(alignof(FDebugTaskTypeEnemyTaskScores) == 0x000008, "Wrong alignment on FDebugTaskTypeEnemyTaskScores"); \ +static_assert(sizeof(FDebugTaskTypeEnemyTaskScores) == 0x000070, "Wrong size on FDebugTaskTypeEnemyTaskScores"); \ +static_assert(offsetof(FDebugTaskTypeEnemyTaskScores, TaskTypeEnemyTaskScores) == 0x000000, "Member 'FDebugTaskTypeEnemyTaskScores::TaskTypeEnemyTaskScores' has a wrong offset!"); \ +static_assert(offsetof(FDebugTaskTypeEnemyTaskScores, TaskTypeTagsToRemove) == 0x000050, "Member 'FDebugTaskTypeEnemyTaskScores::TaskTypeTagsToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDebugTaskScoreData \ +static_assert(alignof(FDebugTaskScoreData) == 0x000008, "Wrong alignment on FDebugTaskScoreData"); \ +static_assert(sizeof(FDebugTaskScoreData) == 0x000030, "Wrong size on FDebugTaskScoreData"); \ + +#define DUMPER7_ASSERTS_FWrestlerTaskFilterParams \ +static_assert(alignof(FWrestlerTaskFilterParams) == 0x000008, "Wrong alignment on FWrestlerTaskFilterParams"); \ +static_assert(sizeof(FWrestlerTaskFilterParams) == 0x000058, "Wrong size on FWrestlerTaskFilterParams"); \ +static_assert(offsetof(FWrestlerTaskFilterParams, Task) == 0x000000, "Member 'FWrestlerTaskFilterParams::Task' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskFilterParams, StateTags) == 0x000008, "Member 'FWrestlerTaskFilterParams::StateTags' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskFilterParams, IgnoreAgents) == 0x000028, "Member 'FWrestlerTaskFilterParams::IgnoreAgents' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTaskFilterParams, IgnoreWithTags) == 0x000038, "Member 'FWrestlerTaskFilterParams::IgnoreWithTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTeamAttitudeTowardsConditionInstanceData \ +static_assert(alignof(FWrestlerTeamAttitudeTowardsConditionInstanceData) == 0x000001, "Wrong alignment on FWrestlerTeamAttitudeTowardsConditionInstanceData"); \ +static_assert(sizeof(FWrestlerTeamAttitudeTowardsConditionInstanceData) == 0x000001, "Wrong size on FWrestlerTeamAttitudeTowardsConditionInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerTeamAttitudeTowardsCondition \ +static_assert(alignof(FWrestlerTeamAttitudeTowardsCondition) == 0x000008, "Wrong alignment on FWrestlerTeamAttitudeTowardsCondition"); \ +static_assert(sizeof(FWrestlerTeamAttitudeTowardsCondition) == 0x000028, "Wrong size on FWrestlerTeamAttitudeTowardsCondition"); \ +static_assert(offsetof(FWrestlerTeamAttitudeTowardsCondition, bInvert) == 0x000020, "Member 'FWrestlerTeamAttitudeTowardsCondition::bInvert' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTeamAttitudeTowardsCondition, TeamAttitude) == 0x000021, "Member 'FWrestlerTeamAttitudeTowardsCondition::TeamAttitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTelekinesisTargetDataFilter \ +static_assert(alignof(FWrestlerTelekinesisTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerTelekinesisTargetDataFilter"); \ +static_assert(sizeof(FWrestlerTelekinesisTargetDataFilter) == 0x000020, "Wrong size on FWrestlerTelekinesisTargetDataFilter"); \ + +#define DUMPER7_ASSERTS_FWrestlerPointAxis \ +static_assert(alignof(FWrestlerPointAxis) == 0x000008, "Wrong alignment on FWrestlerPointAxis"); \ +static_assert(sizeof(FWrestlerPointAxis) == 0x000030, "Wrong size on FWrestlerPointAxis"); \ +static_assert(offsetof(FWrestlerPointAxis, ForwardVector) == 0x000000, "Member 'FWrestlerPointAxis::ForwardVector' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerPointAxis, UpVector) == 0x000018, "Member 'FWrestlerPointAxis::UpVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTimeDilationConfig \ +static_assert(alignof(FWrestlerTimeDilationConfig) == 0x000008, "Wrong alignment on FWrestlerTimeDilationConfig"); \ +static_assert(sizeof(FWrestlerTimeDilationConfig) == 0x000028, "Wrong size on FWrestlerTimeDilationConfig"); \ +static_assert(offsetof(FWrestlerTimeDilationConfig, TimeDilation) == 0x000000, "Member 'FWrestlerTimeDilationConfig::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationConfig, Duration) == 0x000004, "Member 'FWrestlerTimeDilationConfig::Duration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationConfig, TimeScale) == 0x000008, "Member 'FWrestlerTimeDilationConfig::TimeScale' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationConfig, TimeScaleActor) == 0x000010, "Member 'FWrestlerTimeDilationConfig::TimeScaleActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationConfig, ActorsToIgnore) == 0x000018, "Member 'FWrestlerTimeDilationConfig::ActorsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTimeDilator \ +static_assert(alignof(FWrestlerTimeDilator) == 0x000004, "Wrong alignment on FWrestlerTimeDilator"); \ +static_assert(sizeof(FWrestlerTimeDilator) == 0x000004, "Wrong size on FWrestlerTimeDilator"); \ + +#define DUMPER7_ASSERTS_FWrestlerTimeDilationData \ +static_assert(alignof(FWrestlerTimeDilationData) == 0x000008, "Wrong alignment on FWrestlerTimeDilationData"); \ +static_assert(sizeof(FWrestlerTimeDilationData) == 0x000030, "Wrong size on FWrestlerTimeDilationData"); \ +static_assert(offsetof(FWrestlerTimeDilationData, TimeDilation) == 0x000000, "Member 'FWrestlerTimeDilationData::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationData, TimeScaleActor) == 0x000010, "Member 'FWrestlerTimeDilationData::TimeScaleActor' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTimeDilationData, ActorsToIgnore) == 0x000020, "Member 'FWrestlerTimeDilationData::ActorsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTokenTypeConfig \ +static_assert(alignof(FWrestlerTokenTypeConfig) == 0x000008, "Wrong alignment on FWrestlerTokenTypeConfig"); \ +static_assert(sizeof(FWrestlerTokenTypeConfig) == 0x000018, "Wrong size on FWrestlerTokenTypeConfig"); \ +static_assert(offsetof(FWrestlerTokenTypeConfig, InitialNumberOfTokens) == 0x000000, "Member 'FWrestlerTokenTypeConfig::InitialNumberOfTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenTypeConfig, MaxNumberOfActiveTokens) == 0x000001, "Member 'FWrestlerTokenTypeConfig::MaxNumberOfActiveTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenTypeConfig, StealingControllerClass) == 0x000008, "Member 'FWrestlerTokenTypeConfig::StealingControllerClass' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenTypeConfig, CooldownDuration) == 0x000010, "Member 'FWrestlerTokenTypeConfig::CooldownDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTokenContainer \ +static_assert(alignof(FWrestlerTokenContainer) == 0x000008, "Wrong alignment on FWrestlerTokenContainer"); \ +static_assert(sizeof(FWrestlerTokenContainer) == 0x000060, "Wrong size on FWrestlerTokenContainer"); \ +static_assert(offsetof(FWrestlerTokenContainer, FreeTokens) == 0x000000, "Member 'FWrestlerTokenContainer::FreeTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenContainer, ActiveTokens) == 0x000010, "Member 'FWrestlerTokenContainer::ActiveTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenContainer, QueuedTokens) == 0x000020, "Member 'FWrestlerTokenContainer::QueuedTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenContainer, CooldownTokens) == 0x000030, "Member 'FWrestlerTokenContainer::CooldownTokens' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenContainer, Queue) == 0x000040, "Member 'FWrestlerTokenContainer::Queue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTokenRequestResult \ +static_assert(alignof(FWrestlerTokenRequestResult) == 0x000008, "Wrong alignment on FWrestlerTokenRequestResult"); \ +static_assert(sizeof(FWrestlerTokenRequestResult) == 0x000018, "Wrong size on FWrestlerTokenRequestResult"); \ +static_assert(offsetof(FWrestlerTokenRequestResult, Result) == 0x000000, "Member 'FWrestlerTokenRequestResult::Result' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenRequestResult, ReturnToken) == 0x000008, "Member 'FWrestlerTokenRequestResult::ReturnToken' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTokenRequestQuery \ +static_assert(alignof(FWrestlerTokenRequestQuery) == 0x000008, "Wrong alignment on FWrestlerTokenRequestQuery"); \ +static_assert(sizeof(FWrestlerTokenRequestQuery) == 0x000010, "Wrong size on FWrestlerTokenRequestQuery"); \ +static_assert(offsetof(FWrestlerTokenRequestQuery, RequestedTokenType) == 0x000000, "Member 'FWrestlerTokenRequestQuery::RequestedTokenType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTokenRequestQuery, RequestingActor) == 0x000008, "Member 'FWrestlerTokenRequestQuery::RequestingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTransitionTransform \ +static_assert(alignof(FWrestlerTransitionTransform) == 0x000010, "Wrong alignment on FWrestlerTransitionTransform"); \ +static_assert(sizeof(FWrestlerTransitionTransform) == 0x000060, "Wrong size on FWrestlerTransitionTransform"); \ +static_assert(offsetof(FWrestlerTransitionTransform, Location) == 0x000000, "Member 'FWrestlerTransitionTransform::Location' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTransitionTransform, Rotation) == 0x000020, "Member 'FWrestlerTransitionTransform::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTransitionTransform, ControllerRotation) == 0x000040, "Member 'FWrestlerTransitionTransform::ControllerRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalCommonVars \ +static_assert(alignof(FWrestlerTraversalCommonVars) == 0x000004, "Wrong alignment on FWrestlerTraversalCommonVars"); \ +static_assert(sizeof(FWrestlerTraversalCommonVars) == 0x000018, "Wrong size on FWrestlerTraversalCommonVars"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, TraversalMaxFacingAngleDegrees) == 0x000000, "Member 'FWrestlerTraversalCommonVars::TraversalMaxFacingAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, CollisionCapsuleRadius) == 0x000004, "Member 'FWrestlerTraversalCommonVars::CollisionCapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, CollisionCapsuleHalfHeight) == 0x000008, "Member 'FWrestlerTraversalCommonVars::CollisionCapsuleHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, Channel) == 0x00000C, "Member 'FWrestlerTraversalCommonVars::Channel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, LandingZoneFloorAngleErrorDegrees) == 0x000010, "Member 'FWrestlerTraversalCommonVars::LandingZoneFloorAngleErrorDegrees' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalCommonVars, SmallPlatformThickness) == 0x000014, "Member 'FWrestlerTraversalCommonVars::SmallPlatformThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalWallClimbVars \ +static_assert(alignof(FWrestlerTraversalWallClimbVars) == 0x000004, "Wrong alignment on FWrestlerTraversalWallClimbVars"); \ +static_assert(sizeof(FWrestlerTraversalWallClimbVars) == 0x000028, "Wrong size on FWrestlerTraversalWallClimbVars"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, CheckInterval) == 0x000000, "Member 'FWrestlerTraversalWallClimbVars::CheckInterval' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, ForwardTraceHeight) == 0x000004, "Member 'FWrestlerTraversalWallClimbVars::ForwardTraceHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, ForwardTraceLength) == 0x000008, "Member 'FWrestlerTraversalWallClimbVars::ForwardTraceLength' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, ForwardTraceVerticalSlopeErrorDegrees) == 0x00000C, "Member 'FWrestlerTraversalWallClimbVars::ForwardTraceVerticalSlopeErrorDegrees' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, MinHeight) == 0x000010, "Member 'FWrestlerTraversalWallClimbVars::MinHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, UpSweepOffset) == 0x000014, "Member 'FWrestlerTraversalWallClimbVars::UpSweepOffset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, VerticalSpeed) == 0x000018, "Member 'FWrestlerTraversalWallClimbVars::VerticalSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, ForwardTraceSpacing) == 0x00001C, "Member 'FWrestlerTraversalWallClimbVars::ForwardTraceSpacing' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, Offset) == 0x000020, "Member 'FWrestlerTraversalWallClimbVars::Offset' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalWallClimbVars, Duration) == 0x000024, "Member 'FWrestlerTraversalWallClimbVars::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalVaultVars \ +static_assert(alignof(FWrestlerTraversalVaultVars) == 0x000004, "Wrong alignment on FWrestlerTraversalVaultVars"); \ +static_assert(sizeof(FWrestlerTraversalVaultVars) == 0x000028, "Wrong size on FWrestlerTraversalVaultVars"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, CheckInterval) == 0x000000, "Member 'FWrestlerTraversalVaultVars::CheckInterval' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, ObstacleMinHeight) == 0x000004, "Member 'FWrestlerTraversalVaultVars::ObstacleMinHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, ObstacleMaxHeight) == 0x000008, "Member 'FWrestlerTraversalVaultVars::ObstacleMaxHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, ObstacleMinDepth) == 0x00000C, "Member 'FWrestlerTraversalVaultVars::ObstacleMinDepth' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, MaxHeadHeight) == 0x000010, "Member 'FWrestlerTraversalVaultVars::MaxHeadHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, ObstacleWallErrorDegrees) == 0x000014, "Member 'FWrestlerTraversalVaultVars::ObstacleWallErrorDegrees' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, LandingZoneSmallLift) == 0x000018, "Member 'FWrestlerTraversalVaultVars::LandingZoneSmallLift' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, SpeedMultiplier) == 0x00001C, "Member 'FWrestlerTraversalVaultVars::SpeedMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, Duration) == 0x000020, "Member 'FWrestlerTraversalVaultVars::Duration' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalVaultVars, ClimbDuration) == 0x000024, "Member 'FWrestlerTraversalVaultVars::ClimbDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalMantleVars \ +static_assert(alignof(FWrestlerTraversalMantleVars) == 0x000004, "Wrong alignment on FWrestlerTraversalMantleVars"); \ +static_assert(sizeof(FWrestlerTraversalMantleVars) == 0x00001C, "Wrong size on FWrestlerTraversalMantleVars"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, CheckInterval) == 0x000000, "Member 'FWrestlerTraversalMantleVars::CheckInterval' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, MaxMantleHeight) == 0x000004, "Member 'FWrestlerTraversalMantleVars::MaxMantleHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, MaxMantleDistance) == 0x000008, "Member 'FWrestlerTraversalMantleVars::MaxMantleDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, PlatformTraceSeparation) == 0x00000C, "Member 'FWrestlerTraversalMantleVars::PlatformTraceSeparation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, WallNormalAngleThreshold) == 0x000010, "Member 'FWrestlerTraversalMantleVars::WallNormalAngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, LandingDistanceInFromLip) == 0x000014, "Member 'FWrestlerTraversalMantleVars::LandingDistanceInFromLip' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleVars, IgnoreMantleViewAngle) == 0x000018, "Member 'FWrestlerTraversalMantleVars::IgnoreMantleViewAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalMantleOffsets \ +static_assert(alignof(FWrestlerTraversalMantleOffsets) == 0x000004, "Wrong alignment on FWrestlerTraversalMantleOffsets"); \ +static_assert(sizeof(FWrestlerTraversalMantleOffsets) == 0x000008, "Wrong size on FWrestlerTraversalMantleOffsets"); \ +static_assert(offsetof(FWrestlerTraversalMantleOffsets, MantleHeight) == 0x000000, "Member 'FWrestlerTraversalMantleOffsets::MantleHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalMantleOffsets, MantleDistance) == 0x000004, "Member 'FWrestlerTraversalMantleOffsets::MantleDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalLedgeVaultVars \ +static_assert(alignof(FWrestlerTraversalLedgeVaultVars) == 0x000004, "Wrong alignment on FWrestlerTraversalLedgeVaultVars"); \ +static_assert(sizeof(FWrestlerTraversalLedgeVaultVars) == 0x000018, "Wrong size on FWrestlerTraversalLedgeVaultVars"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, ObstacleLengthMin) == 0x000000, "Member 'FWrestlerTraversalLedgeVaultVars::ObstacleLengthMin' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, ObstacleLengthMax) == 0x000004, "Member 'FWrestlerTraversalLedgeVaultVars::ObstacleLengthMax' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, LedgeVaultDetectionDistance) == 0x000008, "Member 'FWrestlerTraversalLedgeVaultVars::LedgeVaultDetectionDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, LedgeMaxThickness) == 0x00000C, "Member 'FWrestlerTraversalLedgeVaultVars::LedgeMaxThickness' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, WallHugSpeed) == 0x000010, "Member 'FWrestlerTraversalLedgeVaultVars::WallHugSpeed' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalLedgeVaultVars, WallHugMaxDistance) == 0x000014, "Member 'FWrestlerTraversalLedgeVaultVars::WallHugMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTraversalObjectSearchVars \ +static_assert(alignof(FWrestlerTraversalObjectSearchVars) == 0x000004, "Wrong alignment on FWrestlerTraversalObjectSearchVars"); \ +static_assert(sizeof(FWrestlerTraversalObjectSearchVars) == 0x00000C, "Wrong size on FWrestlerTraversalObjectSearchVars"); \ +static_assert(offsetof(FWrestlerTraversalObjectSearchVars, CheckInterval) == 0x000000, "Member 'FWrestlerTraversalObjectSearchVars::CheckInterval' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalObjectSearchVars, Radius) == 0x000004, "Member 'FWrestlerTraversalObjectSearchVars::Radius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTraversalObjectSearchVars, QueryChannel) == 0x000008, "Member 'FWrestlerTraversalObjectSearchVars::QueryChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTriggerMasqueradeEventInstanceData \ +static_assert(alignof(FWrestlerTriggerMasqueradeEventInstanceData) == 0x000001, "Wrong alignment on FWrestlerTriggerMasqueradeEventInstanceData"); \ +static_assert(sizeof(FWrestlerTriggerMasqueradeEventInstanceData) == 0x000001, "Wrong size on FWrestlerTriggerMasqueradeEventInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerTriggerMasqueradeEvent \ +static_assert(alignof(FWrestlerTriggerMasqueradeEvent) == 0x000008, "Wrong alignment on FWrestlerTriggerMasqueradeEvent"); \ +static_assert(sizeof(FWrestlerTriggerMasqueradeEvent) == 0x000030, "Wrong size on FWrestlerTriggerMasqueradeEvent"); \ +static_assert(offsetof(FWrestlerTriggerMasqueradeEvent, EventTag) == 0x000024, "Member 'FWrestlerTriggerMasqueradeEvent::EventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerTriggerZoneDangerInstanceData \ +static_assert(alignof(FWrestlerTriggerZoneDangerInstanceData) == 0x000001, "Wrong alignment on FWrestlerTriggerZoneDangerInstanceData"); \ +static_assert(sizeof(FWrestlerTriggerZoneDangerInstanceData) == 0x000001, "Wrong size on FWrestlerTriggerZoneDangerInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerTriggerZoneDanger \ +static_assert(alignof(FWrestlerTriggerZoneDanger) == 0x000008, "Wrong alignment on FWrestlerTriggerZoneDanger"); \ +static_assert(sizeof(FWrestlerTriggerZoneDanger) == 0x000030, "Wrong size on FWrestlerTriggerZoneDanger"); \ +static_assert(offsetof(FWrestlerTriggerZoneDanger, DangerRadius) == 0x000028, "Member 'FWrestlerTriggerZoneDanger::DangerRadius' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerTriggerZoneDanger, DangerDuration) == 0x00002C, "Member 'FWrestlerTriggerZoneDanger::DangerDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUIAchievementInfo \ +static_assert(alignof(FWrestlerUIAchievementInfo) == 0x000008, "Wrong alignment on FWrestlerUIAchievementInfo"); \ +static_assert(sizeof(FWrestlerUIAchievementInfo) == 0x000010, "Wrong size on FWrestlerUIAchievementInfo"); \ +static_assert(offsetof(FWrestlerUIAchievementInfo, Positions) == 0x000000, "Member 'FWrestlerUIAchievementInfo::Positions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizationKey \ +static_assert(alignof(FLocalizationKey) == 0x000004, "Wrong alignment on FLocalizationKey"); \ +static_assert(sizeof(FLocalizationKey) == 0x000008, "Wrong size on FLocalizationKey"); \ +static_assert(offsetof(FLocalizationKey, RowID) == 0x000000, "Member 'FLocalizationKey::RowID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUILocalisationDataTableRowBase \ +static_assert(alignof(FWrestlerUILocalisationDataTableRowBase) == 0x000008, "Wrong alignment on FWrestlerUILocalisationDataTableRowBase"); \ +static_assert(sizeof(FWrestlerUILocalisationDataTableRowBase) == 0x000028, "Wrong size on FWrestlerUILocalisationDataTableRowBase"); \ +static_assert(offsetof(FWrestlerUILocalisationDataTableRowBase, LocalisationNotes) == 0x000008, "Member 'FWrestlerUILocalisationDataTableRowBase::LocalisationNotes' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUILocalisationDataTableRowBase, CharactersLimit) == 0x000018, "Member 'FWrestlerUILocalisationDataTableRowBase::CharactersLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerWaypointData \ +static_assert(alignof(FWrestlerWaypointData) == 0x000008, "Wrong alignment on FWrestlerWaypointData"); \ +static_assert(sizeof(FWrestlerWaypointData) == 0x000020, "Wrong size on FWrestlerWaypointData"); \ +static_assert(offsetof(FWrestlerWaypointData, WaypointActor) == 0x000000, "Member 'FWrestlerWaypointData::WaypointActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUIMarkerInfo \ +static_assert(alignof(FWrestlerUIMarkerInfo) == 0x000008, "Wrong alignment on FWrestlerUIMarkerInfo"); \ +static_assert(sizeof(FWrestlerUIMarkerInfo) == 0x000158, "Wrong size on FWrestlerUIMarkerInfo"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, Objective) == 0x000000, "Member 'FWrestlerUIMarkerInfo::Objective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, MarkerTitle) == 0x000010, "Member 'FWrestlerUIMarkerInfo::MarkerTitle' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, MarkerDescription) == 0x000028, "Member 'FWrestlerUIMarkerInfo::MarkerDescription' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, MarkerType) == 0x000040, "Member 'FWrestlerUIMarkerInfo::MarkerType' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, MarkerTag) == 0x000044, "Member 'FWrestlerUIMarkerInfo::MarkerTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, ObjectToTag) == 0x00004C, "Member 'FWrestlerUIMarkerInfo::ObjectToTag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, StoryDialogueInfo) == 0x000058, "Member 'FWrestlerUIMarkerInfo::StoryDialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, MarkerCompletedProperties) == 0x000060, "Member 'FWrestlerUIMarkerInfo::MarkerCompletedProperties' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, WaypointActorName) == 0x000070, "Member 'FWrestlerUIMarkerInfo::WaypointActorName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, QuestObjective) == 0x000080, "Member 'FWrestlerUIMarkerInfo::QuestObjective' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUIMarkerInfo, bUseSideQuestIcon) == 0x000150, "Member 'FWrestlerUIMarkerInfo::bUseSideQuestIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUISaveData \ +static_assert(alignof(FWrestlerUISaveData) == 0x000008, "Wrong alignment on FWrestlerUISaveData"); \ +static_assert(sizeof(FWrestlerUISaveData) == 0x0000A0, "Wrong size on FWrestlerUISaveData"); \ +static_assert(offsetof(FWrestlerUISaveData, TrainersPositions) == 0x000000, "Member 'FWrestlerUISaveData::TrainersPositions' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUISaveData, FoundAchievementCollectibles) == 0x000050, "Member 'FWrestlerUISaveData::FoundAchievementCollectibles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSystemNotificationStruct \ +static_assert(alignof(FSystemNotificationStruct) == 0x000008, "Wrong alignment on FSystemNotificationStruct"); \ +static_assert(sizeof(FSystemNotificationStruct) == 0x000048, "Wrong size on FSystemNotificationStruct"); \ +static_assert(offsetof(FSystemNotificationStruct, Title) == 0x000000, "Member 'FSystemNotificationStruct::Title' has a wrong offset!"); \ +static_assert(offsetof(FSystemNotificationStruct, Message) == 0x000018, "Member 'FSystemNotificationStruct::Message' has a wrong offset!"); \ +static_assert(offsetof(FSystemNotificationStruct, ObjectToBind) == 0x000030, "Member 'FSystemNotificationStruct::ObjectToBind' has a wrong offset!"); \ +static_assert(offsetof(FSystemNotificationStruct, OnConfirmFunctionName) == 0x000038, "Member 'FSystemNotificationStruct::OnConfirmFunctionName' has a wrong offset!"); \ +static_assert(offsetof(FSystemNotificationStruct, OnCancelFunctionName) == 0x000040, "Member 'FSystemNotificationStruct::OnCancelFunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUltraVolumetricsFogQualityParameters \ +static_assert(alignof(FWrestlerUltraVolumetricsFogQualityParameters) == 0x000004, "Wrong alignment on FWrestlerUltraVolumetricsFogQualityParameters"); \ +static_assert(sizeof(FWrestlerUltraVolumetricsFogQualityParameters) == 0x000008, "Wrong size on FWrestlerUltraVolumetricsFogQualityParameters"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogQualityParameters, GridPixelSize) == 0x000000, "Member 'FWrestlerUltraVolumetricsFogQualityParameters::GridPixelSize' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogQualityParameters, GridSizeZ) == 0x000004, "Member 'FWrestlerUltraVolumetricsFogQualityParameters::GridSizeZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUltraVolumetricsFogParameters \ +static_assert(alignof(FWrestlerUltraVolumetricsFogParameters) == 0x000008, "Wrong alignment on FWrestlerUltraVolumetricsFogParameters"); \ +static_assert(sizeof(FWrestlerUltraVolumetricsFogParameters) == 0x000068, "Wrong size on FWrestlerUltraVolumetricsFogParameters"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, SecondLayer) == 0x000000, "Member 'FWrestlerUltraVolumetricsFogParameters::SecondLayer' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, SecondLayerAmount) == 0x000004, "Member 'FWrestlerUltraVolumetricsFogParameters::SecondLayerAmount' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, bUseDistanceField) == 0x000008, "Member 'FWrestlerUltraVolumetricsFogParameters::bUseDistanceField' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, DistanceFieldHeight) == 0x00000C, "Member 'FWrestlerUltraVolumetricsFogParameters::DistanceFieldHeight' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, DistanceFieldMultiply) == 0x000010, "Member 'FWrestlerUltraVolumetricsFogParameters::DistanceFieldMultiply' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, DistanceFieldPower) == 0x000014, "Member 'FWrestlerUltraVolumetricsFogParameters::DistanceFieldPower' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, Opacity) == 0x000018, "Member 'FWrestlerUltraVolumetricsFogParameters::Opacity' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, SelfShadowAmount) == 0x00001C, "Member 'FWrestlerUltraVolumetricsFogParameters::SelfShadowAmount' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, NoiseSize) == 0x000020, "Member 'FWrestlerUltraVolumetricsFogParameters::NoiseSize' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, NoisePower) == 0x000038, "Member 'FWrestlerUltraVolumetricsFogParameters::NoisePower' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, NoiseMultiply) == 0x00003C, "Member 'FWrestlerUltraVolumetricsFogParameters::NoiseMultiply' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, Color) == 0x000040, "Member 'FWrestlerUltraVolumetricsFogParameters::Color' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, PanningSpeedX) == 0x000050, "Member 'FWrestlerUltraVolumetricsFogParameters::PanningSpeedX' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, PanningSpeedY) == 0x000054, "Member 'FWrestlerUltraVolumetricsFogParameters::PanningSpeedY' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, PanningSpeedZ) == 0x000058, "Member 'FWrestlerUltraVolumetricsFogParameters::PanningSpeedZ' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, FarFadeDistance) == 0x00005C, "Member 'FWrestlerUltraVolumetricsFogParameters::FarFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, NearFadeDistance) == 0x000060, "Member 'FWrestlerUltraVolumetricsFogParameters::NearFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerUltraVolumetricsFogParameters, bUseThirdPersonNearFade) == 0x000064, "Member 'FWrestlerUltraVolumetricsFogParameters::bUseThirdPersonNearFade' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerUseAbilityInstanceData \ +static_assert(alignof(FWrestlerUseAbilityInstanceData) == 0x000008, "Wrong alignment on FWrestlerUseAbilityInstanceData"); \ +static_assert(sizeof(FWrestlerUseAbilityInstanceData) == 0x000008, "Wrong size on FWrestlerUseAbilityInstanceData"); \ + +#define DUMPER7_ASSERTS_FWrestlerUseAbility \ +static_assert(alignof(FWrestlerUseAbility) == 0x000008, "Wrong alignment on FWrestlerUseAbility"); \ +static_assert(sizeof(FWrestlerUseAbility) == 0x000030, "Wrong size on FWrestlerUseAbility"); \ +static_assert(offsetof(FWrestlerUseAbility, GameplayAbilityTag) == 0x000024, "Member 'FWrestlerUseAbility::GameplayAbilityTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerVisionGameplayTargetDataFilter \ +static_assert(alignof(FWrestlerVisionGameplayTargetDataFilter) == 0x000008, "Wrong alignment on FWrestlerVisionGameplayTargetDataFilter"); \ +static_assert(sizeof(FWrestlerVisionGameplayTargetDataFilter) == 0x000028, "Wrong size on FWrestlerVisionGameplayTargetDataFilter"); \ +static_assert(offsetof(FWrestlerVisionGameplayTargetDataFilter, Interface) == 0x000020, "Member 'FWrestlerVisionGameplayTargetDataFilter::Interface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerWaypointIndicatorData \ +static_assert(alignof(FWrestlerWaypointIndicatorData) == 0x000008, "Wrong alignment on FWrestlerWaypointIndicatorData"); \ +static_assert(sizeof(FWrestlerWaypointIndicatorData) == 0x000030, "Wrong size on FWrestlerWaypointIndicatorData"); \ +static_assert(offsetof(FWrestlerWaypointIndicatorData, WaypointTarget) == 0x000000, "Member 'FWrestlerWaypointIndicatorData::WaypointTarget' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWaypointIndicatorData, WaypointTargetName) == 0x000008, "Member 'FWrestlerWaypointIndicatorData::WaypointTargetName' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWaypointIndicatorData, Tag) == 0x000018, "Member 'FWrestlerWaypointIndicatorData::Tag' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerWaypointIndicatorData, IndicatorWidget) == 0x000028, "Member 'FWrestlerWaypointIndicatorData::IndicatorWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilitySet_GameplayAbility \ +static_assert(alignof(FWrestlerAbilitySet_GameplayAbility) == 0x000008, "Wrong alignment on FWrestlerAbilitySet_GameplayAbility"); \ +static_assert(sizeof(FWrestlerAbilitySet_GameplayAbility) == 0x000028, "Wrong size on FWrestlerAbilitySet_GameplayAbility"); \ +static_assert(offsetof(FWrestlerAbilitySet_GameplayAbility, Ability) == 0x000000, "Member 'FWrestlerAbilitySet_GameplayAbility::Ability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAbilitySet_GameplayEffect \ +static_assert(alignof(FWrestlerAbilitySet_GameplayEffect) == 0x000008, "Wrong alignment on FWrestlerAbilitySet_GameplayEffect"); \ +static_assert(sizeof(FWrestlerAbilitySet_GameplayEffect) == 0x000018, "Wrong size on FWrestlerAbilitySet_GameplayEffect"); \ +static_assert(offsetof(FWrestlerAbilitySet_GameplayEffect, GameplayEffect) == 0x000000, "Member 'FWrestlerAbilitySet_GameplayEffect::GameplayEffect' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySet_GameplayEffect, EffectLevel) == 0x000008, "Member 'FWrestlerAbilitySet_GameplayEffect::EffectLevel' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySet_GameplayEffect, bSetByCaller) == 0x00000C, "Member 'FWrestlerAbilitySet_GameplayEffect::bSetByCaller' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAbilitySet_GameplayEffect, DataTag) == 0x000010, "Member 'FWrestlerAbilitySet_GameplayEffect::DataTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerXPConversionData \ +static_assert(alignof(FWrestlerXPConversionData) == 0x000008, "Wrong alignment on FWrestlerXPConversionData"); \ +static_assert(sizeof(FWrestlerXPConversionData) == 0x000088, "Wrong size on FWrestlerXPConversionData"); \ +static_assert(offsetof(FWrestlerXPConversionData, XPToAPConversionCurve) == 0x000000, "Member 'FWrestlerXPConversionData::XPToAPConversionCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerAchievementCollectableCounter \ +static_assert(alignof(FWrestlerAchievementCollectableCounter) == 0x000008, "Wrong alignment on FWrestlerAchievementCollectableCounter"); \ +static_assert(sizeof(FWrestlerAchievementCollectableCounter) == 0x000010, "Wrong size on FWrestlerAchievementCollectableCounter"); \ +static_assert(offsetof(FWrestlerAchievementCollectableCounter, NumberToFind) == 0x000000, "Member 'FWrestlerAchievementCollectableCounter::NumberToFind' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerAchievementCollectableCounter, CounterProperty) == 0x000008, "Member 'FWrestlerAchievementCollectableCounter::CounterProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGFindConversationExitWanderTargetInstanceData \ +static_assert(alignof(FWrestlerZGFindConversationExitWanderTargetInstanceData) == 0x000008, "Wrong alignment on FWrestlerZGFindConversationExitWanderTargetInstanceData"); \ +static_assert(sizeof(FWrestlerZGFindConversationExitWanderTargetInstanceData) == 0x000080, "Wrong size on FWrestlerZGFindConversationExitWanderTargetInstanceData"); \ +static_assert(offsetof(FWrestlerZGFindConversationExitWanderTargetInstanceData, bUseWanderTaget) == 0x000000, "Member 'FWrestlerZGFindConversationExitWanderTargetInstanceData::bUseWanderTaget' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGFindConversationExitWanderTargetInstanceData, WanderTargetLocation) == 0x000008, "Member 'FWrestlerZGFindConversationExitWanderTargetInstanceData::WanderTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerZGFindConversationExitWanderTargetInstanceData, NavMeshTargetLocation) == 0x000068, "Member 'FWrestlerZGFindConversationExitWanderTargetInstanceData::NavMeshTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGFindConversationExitWanderTarget \ +static_assert(alignof(FWrestlerZGFindConversationExitWanderTarget) == 0x000008, "Wrong alignment on FWrestlerZGFindConversationExitWanderTarget"); \ +static_assert(sizeof(FWrestlerZGFindConversationExitWanderTarget) == 0x000038, "Wrong size on FWrestlerZGFindConversationExitWanderTarget"); \ +static_assert(offsetof(FWrestlerZGFindConversationExitWanderTarget, ZoneGraphSearchRange) == 0x000020, "Member 'FWrestlerZGFindConversationExitWanderTarget::ZoneGraphSearchRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassZoneGraphMovePreciseTaskInstanceData \ +static_assert(alignof(FWrestlerMassZoneGraphMovePreciseTaskInstanceData) == 0x000008, "Wrong alignment on FWrestlerMassZoneGraphMovePreciseTaskInstanceData"); \ +static_assert(sizeof(FWrestlerMassZoneGraphMovePreciseTaskInstanceData) == 0x000028, "Wrong size on FWrestlerMassZoneGraphMovePreciseTaskInstanceData"); \ +static_assert(offsetof(FWrestlerMassZoneGraphMovePreciseTaskInstanceData, ClaimedSlot) == 0x000000, "Member 'FWrestlerMassZoneGraphMovePreciseTaskInstanceData::ClaimedSlot' has a wrong offset!"); \ +static_assert(offsetof(FWrestlerMassZoneGraphMovePreciseTaskInstanceData, bTeleportToSlot) == 0x000020, "Member 'FWrestlerMassZoneGraphMovePreciseTaskInstanceData::bTeleportToSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrestlerMassZoneGraphMovePreciseTask \ +static_assert(alignof(FWrestlerMassZoneGraphMovePreciseTask) == 0x000008, "Wrong alignment on FWrestlerMassZoneGraphMovePreciseTask"); \ +static_assert(sizeof(FWrestlerMassZoneGraphMovePreciseTask) == 0x000038, "Wrong size on FWrestlerMassZoneGraphMovePreciseTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerZGPathFollowTask \ +static_assert(alignof(FWrestlerZGPathFollowTask) == 0x000008, "Wrong alignment on FWrestlerZGPathFollowTask"); \ +static_assert(sizeof(FWrestlerZGPathFollowTask) == 0x000038, "Wrong size on FWrestlerZGPathFollowTask"); \ + +#define DUMPER7_ASSERTS_FWrestlerZoneGraphAnnotationArea \ +static_assert(alignof(FWrestlerZoneGraphAnnotationArea) == 0x000008, "Wrong alignment on FWrestlerZoneGraphAnnotationArea"); \ +static_assert(sizeof(FWrestlerZoneGraphAnnotationArea) == 0x000010, "Wrong size on FWrestlerZoneGraphAnnotationArea"); \ +static_assert(offsetof(FWrestlerZoneGraphAnnotationArea, AnnotationVolume) == 0x000000, "Member 'FWrestlerZoneGraphAnnotationArea::AnnotationVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitiesData_Add \ +static_assert(alignof(AbilitiesData_Add) == 0x000004, "Wrong alignment on AbilitiesData_Add"); \ +static_assert(sizeof(AbilitiesData_Add) == 0x00000C, "Wrong size on AbilitiesData_Add"); \ +static_assert(offsetof(AbilitiesData_Add, Tag) == 0x000000, "Member 'AbilitiesData_Add::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilitiesData_Add, Value) == 0x000008, "Member 'AbilitiesData_Add::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilitiesData_Get \ +static_assert(alignof(AbilitiesData_Get) == 0x000004, "Wrong alignment on AbilitiesData_Get"); \ +static_assert(sizeof(AbilitiesData_Get) == 0x000010, "Wrong size on AbilitiesData_Get"); \ +static_assert(offsetof(AbilitiesData_Get, Tag) == 0x000000, "Member 'AbilitiesData_Get::Tag' has a wrong offset!"); \ +static_assert(offsetof(AbilitiesData_Get, Value) == 0x000008, "Member 'AbilitiesData_Get::Value' has a wrong offset!"); \ +static_assert(offsetof(AbilitiesData_Get, IsValid) == 0x00000C, "Member 'AbilitiesData_Get::IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilitiesData \ +static_assert(alignof(UAbilitiesData) == 0x000008, "Wrong alignment on UAbilitiesData"); \ +static_assert(sizeof(UAbilitiesData) == 0x000078, "Wrong size on UAbilitiesData"); \ + +#define DUMPER7_ASSERTS_AWrestlerSmartObjectSyncActor \ +static_assert(alignof(AWrestlerSmartObjectSyncActor) == 0x000008, "Wrong alignment on AWrestlerSmartObjectSyncActor"); \ +static_assert(sizeof(AWrestlerSmartObjectSyncActor) == 0x000298, "Wrong size on AWrestlerSmartObjectSyncActor"); \ + +#define DUMPER7_ASSERTS_AWrestlerSmartObjectMeshActor \ +static_assert(alignof(AWrestlerSmartObjectMeshActor) == 0x000008, "Wrong alignment on AWrestlerSmartObjectMeshActor"); \ +static_assert(sizeof(AWrestlerSmartObjectMeshActor) == 0x000298, "Wrong size on AWrestlerSmartObjectMeshActor"); \ + +#define DUMPER7_ASSERTS_AWrestlerVolumeBase \ +static_assert(alignof(AWrestlerVolumeBase) == 0x000008, "Wrong alignment on AWrestlerVolumeBase"); \ +static_assert(sizeof(AWrestlerVolumeBase) == 0x0002D0, "Wrong size on AWrestlerVolumeBase"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPerceptionStimuliSource_ReportAttraction \ +static_assert(alignof(WrestlerAIPerceptionStimuliSource_ReportAttraction) == 0x000008, "Wrong alignment on WrestlerAIPerceptionStimuliSource_ReportAttraction"); \ +static_assert(sizeof(WrestlerAIPerceptionStimuliSource_ReportAttraction) == 0x000028, "Wrong size on WrestlerAIPerceptionStimuliSource_ReportAttraction"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportAttraction, StimuliLocation) == 0x000000, "Member 'WrestlerAIPerceptionStimuliSource_ReportAttraction::StimuliLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportAttraction, Instigator) == 0x000018, "Member 'WrestlerAIPerceptionStimuliSource_ReportAttraction::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportAttraction, Receiver) == 0x000020, "Member 'WrestlerAIPerceptionStimuliSource_ReportAttraction::Receiver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPerceptionStimuliSource_ReportFear \ +static_assert(alignof(WrestlerAIPerceptionStimuliSource_ReportFear) == 0x000008, "Wrong alignment on WrestlerAIPerceptionStimuliSource_ReportFear"); \ +static_assert(sizeof(WrestlerAIPerceptionStimuliSource_ReportFear) == 0x000038, "Wrong size on WrestlerAIPerceptionStimuliSource_ReportFear"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportFear, FearLocation) == 0x000000, "Member 'WrestlerAIPerceptionStimuliSource_ReportFear::FearLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportFear, Stimulus) == 0x000018, "Member 'WrestlerAIPerceptionStimuliSource_ReportFear::Stimulus' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportFear, Instigator) == 0x000020, "Member 'WrestlerAIPerceptionStimuliSource_ReportFear::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportFear, MaxRange) == 0x000028, "Member 'WrestlerAIPerceptionStimuliSource_ReportFear::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportFear, InFullTag) == 0x00002C, "Member 'WrestlerAIPerceptionStimuliSource_ReportFear::InFullTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPerceptionStimuliSource_ReportRepulsion \ +static_assert(alignof(WrestlerAIPerceptionStimuliSource_ReportRepulsion) == 0x000008, "Wrong alignment on WrestlerAIPerceptionStimuliSource_ReportRepulsion"); \ +static_assert(sizeof(WrestlerAIPerceptionStimuliSource_ReportRepulsion) == 0x000028, "Wrong size on WrestlerAIPerceptionStimuliSource_ReportRepulsion"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportRepulsion, StimuliLocation) == 0x000000, "Member 'WrestlerAIPerceptionStimuliSource_ReportRepulsion::StimuliLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportRepulsion, Instigator) == 0x000018, "Member 'WrestlerAIPerceptionStimuliSource_ReportRepulsion::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_ReportRepulsion, Receiver) == 0x000020, "Member 'WrestlerAIPerceptionStimuliSource_ReportRepulsion::Receiver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense \ +static_assert(alignof(WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense) == 0x000008, "Wrong alignment on WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense"); \ +static_assert(sizeof(WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense) == 0x000010, "Wrong size on WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense, InSenseClass) == 0x000000, "Member 'WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense::InSenseClass' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense, InEnabled) == 0x000008, "Member 'WrestlerAIPerceptionStimuliSource_SetRegisterAsSourceForSense::InEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIPerceptionStimuliSource \ +static_assert(alignof(UWrestlerAIPerceptionStimuliSource) == 0x000008, "Wrong alignment on UWrestlerAIPerceptionStimuliSource"); \ +static_assert(sizeof(UWrestlerAIPerceptionStimuliSource) == 0x0000C0, "Wrong size on UWrestlerAIPerceptionStimuliSource"); \ +static_assert(offsetof(UWrestlerAIPerceptionStimuliSource, StimulusStrength) == 0x0000B8, "Member 'UWrestlerAIPerceptionStimuliSource::StimulusStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSOPropDataAsset \ +static_assert(alignof(UWrestlerMassSOPropDataAsset) == 0x000008, "Wrong alignment on UWrestlerMassSOPropDataAsset"); \ +static_assert(sizeof(UWrestlerMassSOPropDataAsset) == 0x0000C8, "Wrong size on UWrestlerMassSOPropDataAsset"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, AttachBoneOrSocketName) == 0x000030, "Member 'UWrestlerMassSOPropDataAsset::AttachBoneOrSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, AttachLocationOffset) == 0x000038, "Member 'UWrestlerMassSOPropDataAsset::AttachLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, AttachRotationOffset) == 0x000050, "Member 'UWrestlerMassSOPropDataAsset::AttachRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, bCanDrop) == 0x000068, "Member 'UWrestlerMassSOPropDataAsset::bCanDrop' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, PropMesh) == 0x000070, "Member 'UWrestlerMassSOPropDataAsset::PropMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSOPropDataAsset, PropActorOverride) == 0x000098, "Member 'UWrestlerMassSOPropDataAsset::PropActorOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAbilityDeadZoneVolume \ +static_assert(alignof(AAbilityDeadZoneVolume) == 0x000008, "Wrong alignment on AAbilityDeadZoneVolume"); \ +static_assert(sizeof(AAbilityDeadZoneVolume) == 0x0002D8, "Wrong size on AAbilityDeadZoneVolume"); \ +static_assert(offsetof(AAbilityDeadZoneVolume, AbilityDeadZoneSetupClass) == 0x0002D0, "Member 'AAbilityDeadZoneVolume::AbilityDeadZoneSetupClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBaseWidget_ToggleVisibility \ +static_assert(alignof(WrestlerBaseWidget_ToggleVisibility) == 0x000001, "Wrong alignment on WrestlerBaseWidget_ToggleVisibility"); \ +static_assert(sizeof(WrestlerBaseWidget_ToggleVisibility) == 0x000001, "Wrong size on WrestlerBaseWidget_ToggleVisibility"); \ +static_assert(offsetof(WrestlerBaseWidget_ToggleVisibility, bInStatus) == 0x000000, "Member 'WrestlerBaseWidget_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBaseWidget \ +static_assert(alignof(UWrestlerBaseWidget) == 0x000008, "Wrong alignment on UWrestlerBaseWidget"); \ +static_assert(sizeof(UWrestlerBaseWidget) == 0x0002C8, "Wrong size on UWrestlerBaseWidget"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointWidgetsContainer_AddWaypointIndicator \ +static_assert(alignof(WrestlerWaypointWidgetsContainer_AddWaypointIndicator) == 0x000008, "Wrong alignment on WrestlerWaypointWidgetsContainer_AddWaypointIndicator"); \ +static_assert(sizeof(WrestlerWaypointWidgetsContainer_AddWaypointIndicator) == 0x000018, "Wrong size on WrestlerWaypointWidgetsContainer_AddWaypointIndicator"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_AddWaypointIndicator, Tag) == 0x000000, "Member 'WrestlerWaypointWidgetsContainer_AddWaypointIndicator::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_AddWaypointIndicator, WaypointTarget) == 0x000010, "Member 'WrestlerWaypointWidgetsContainer_AddWaypointIndicator::WaypointTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointWidgetsContainer_OnWaypointAdded \ +static_assert(alignof(WrestlerWaypointWidgetsContainer_OnWaypointAdded) == 0x000008, "Wrong alignment on WrestlerWaypointWidgetsContainer_OnWaypointAdded"); \ +static_assert(sizeof(WrestlerWaypointWidgetsContainer_OnWaypointAdded) == 0x000018, "Wrong size on WrestlerWaypointWidgetsContainer_OnWaypointAdded"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointAdded, Tag) == 0x000000, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointAdded::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointAdded, WaypointTarget) == 0x000010, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointAdded::WaypointTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointWidgetsContainer_OnWaypointPathActive \ +static_assert(alignof(WrestlerWaypointWidgetsContainer_OnWaypointPathActive) == 0x000008, "Wrong alignment on WrestlerWaypointWidgetsContainer_OnWaypointPathActive"); \ +static_assert(sizeof(WrestlerWaypointWidgetsContainer_OnWaypointPathActive) == 0x000010, "Wrong size on WrestlerWaypointWidgetsContainer_OnWaypointPathActive"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointPathActive, InNewWaypointPath) == 0x000000, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointPathActive::InNewWaypointPath' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointPathActive, bIsActive) == 0x000008, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointPathActive::bIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointWidgetsContainer_OnWaypointRemoved \ +static_assert(alignof(WrestlerWaypointWidgetsContainer_OnWaypointRemoved) == 0x000008, "Wrong alignment on WrestlerWaypointWidgetsContainer_OnWaypointRemoved"); \ +static_assert(sizeof(WrestlerWaypointWidgetsContainer_OnWaypointRemoved) == 0x000018, "Wrong size on WrestlerWaypointWidgetsContainer_OnWaypointRemoved"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointRemoved, Tag) == 0x000000, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointRemoved::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_OnWaypointRemoved, WaypointTarget) == 0x000010, "Member 'WrestlerWaypointWidgetsContainer_OnWaypointRemoved::WaypointTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor \ +static_assert(alignof(WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor) == 0x000008, "Wrong alignment on WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor"); \ +static_assert(sizeof(WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor) == 0x000010, "Wrong size on WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor, Target) == 0x000000, "Member 'WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor::Target' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor, ReturnValue) == 0x000008, "Member 'WrestlerWaypointWidgetsContainer_GetIndicatorForTargetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWaypointWidgetsContainer \ +static_assert(alignof(UWrestlerWaypointWidgetsContainer) == 0x000008, "Wrong alignment on UWrestlerWaypointWidgetsContainer"); \ +static_assert(sizeof(UWrestlerWaypointWidgetsContainer) == 0x000360, "Wrong size on UWrestlerWaypointWidgetsContainer"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, IndicatorsContainer) == 0x0002C8, "Member 'UWrestlerWaypointWidgetsContainer::IndicatorsContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, IndicatorWidgetClassPerTag) == 0x0002D0, "Member 'UWrestlerWaypointWidgetsContainer::IndicatorWidgetClassPerTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, DefaultIndicatorWidgetClass) == 0x000320, "Member 'UWrestlerWaypointWidgetsContainer::DefaultIndicatorWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, IndicatorSize) == 0x000328, "Member 'UWrestlerWaypointWidgetsContainer::IndicatorSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, ActiveIndicators) == 0x000338, "Member 'UWrestlerWaypointWidgetsContainer::ActiveIndicators' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, PathIndicatorWidget) == 0x000348, "Member 'UWrestlerWaypointWidgetsContainer::PathIndicatorWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointWidgetsContainer, ActiveWaypointSpline) == 0x000350, "Member 'UWrestlerWaypointWidgetsContainer::ActiveWaypointSpline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCompassWidget \ +static_assert(alignof(UWrestlerCompassWidget) == 0x000008, "Wrong alignment on UWrestlerCompassWidget"); \ +static_assert(sizeof(UWrestlerCompassWidget) == 0x000370, "Wrong size on UWrestlerCompassWidget"); \ +static_assert(offsetof(UWrestlerCompassWidget, CompassImage) == 0x000360, "Member 'UWrestlerCompassWidget::CompassImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCompassWidget, CompassMID) == 0x000368, "Member 'UWrestlerCompassWidget::CompassMID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMenu_GetMenuID \ +static_assert(alignof(WrestlerMenu_GetMenuID) == 0x000001, "Wrong alignment on WrestlerMenu_GetMenuID"); \ +static_assert(sizeof(WrestlerMenu_GetMenuID) == 0x000001, "Wrong size on WrestlerMenu_GetMenuID"); \ +static_assert(offsetof(WrestlerMenu_GetMenuID, ReturnValue) == 0x000000, "Member 'WrestlerMenu_GetMenuID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMenu_LoadFromSlot \ +static_assert(alignof(WrestlerMenu_LoadFromSlot) == 0x000008, "Wrong alignment on WrestlerMenu_LoadFromSlot"); \ +static_assert(sizeof(WrestlerMenu_LoadFromSlot) == 0x000010, "Wrong size on WrestlerMenu_LoadFromSlot"); \ +static_assert(offsetof(WrestlerMenu_LoadFromSlot, InSlotName) == 0x000000, "Member 'WrestlerMenu_LoadFromSlot::InSlotName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMenu \ +static_assert(alignof(UWrestlerMenu) == 0x000008, "Wrong alignment on UWrestlerMenu"); \ +static_assert(sizeof(UWrestlerMenu) == 0x000300, "Wrong size on UWrestlerMenu"); \ +static_assert(offsetof(UWrestlerMenu, MenuID) == 0x0002F8, "Member 'UWrestlerMenu::MenuID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTreeMenu \ +static_assert(alignof(UWrestlerAbilityTreeMenu) == 0x000008, "Wrong alignment on UWrestlerAbilityTreeMenu"); \ +static_assert(sizeof(UWrestlerAbilityTreeMenu) == 0x000310, "Wrong size on UWrestlerAbilityTreeMenu"); \ +static_assert(offsetof(UWrestlerAbilityTreeMenu, PlayerCurrentPoints_Text) == 0x000300, "Member 'UWrestlerAbilityTreeMenu::PlayerCurrentPoints_Text' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTreeMenu, PlayerTotalPoints_Text) == 0x000308, "Member 'UWrestlerAbilityTreeMenu::PlayerTotalPoints_Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusInterface_CalculateFocusPoint \ +static_assert(alignof(AIFocusInterface_CalculateFocusPoint) == 0x000008, "Wrong alignment on AIFocusInterface_CalculateFocusPoint"); \ +static_assert(sizeof(AIFocusInterface_CalculateFocusPoint) == 0x000028, "Wrong size on AIFocusInterface_CalculateFocusPoint"); \ +static_assert(offsetof(AIFocusInterface_CalculateFocusPoint, Controller) == 0x000000, "Member 'AIFocusInterface_CalculateFocusPoint::Controller' has a wrong offset!"); \ +static_assert(offsetof(AIFocusInterface_CalculateFocusPoint, DeltaTime) == 0x000008, "Member 'AIFocusInterface_CalculateFocusPoint::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AIFocusInterface_CalculateFocusPoint, ReturnValue) == 0x000010, "Member 'AIFocusInterface_CalculateFocusPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusInterface_Reset \ +static_assert(alignof(AIFocusInterface_Reset) == 0x000008, "Wrong alignment on AIFocusInterface_Reset"); \ +static_assert(sizeof(AIFocusInterface_Reset) == 0x000008, "Wrong size on AIFocusInterface_Reset"); \ +static_assert(offsetof(AIFocusInterface_Reset, Controller) == 0x000000, "Member 'AIFocusInterface_Reset::Controller' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAIFocusInterface \ +static_assert(alignof(IAIFocusInterface) == 0x000001, "Wrong alignment on IAIFocusInterface"); \ +static_assert(sizeof(IAIFocusInterface) == 0x000001, "Wrong size on IAIFocusInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressWidget_OnNewActiveQuestSet \ +static_assert(alignof(WrestlerQuestProgressWidget_OnNewActiveQuestSet) == 0x000004, "Wrong alignment on WrestlerQuestProgressWidget_OnNewActiveQuestSet"); \ +static_assert(sizeof(WrestlerQuestProgressWidget_OnNewActiveQuestSet) == 0x000008, "Wrong size on WrestlerQuestProgressWidget_OnNewActiveQuestSet"); \ +static_assert(offsetof(WrestlerQuestProgressWidget_OnNewActiveQuestSet, InNewActiveQuestTag) == 0x000000, "Member 'WrestlerQuestProgressWidget_OnNewActiveQuestSet::InNewActiveQuestTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestProgressWidget \ +static_assert(alignof(UWrestlerQuestProgressWidget) == 0x000010, "Wrong alignment on UWrestlerQuestProgressWidget"); \ +static_assert(sizeof(UWrestlerQuestProgressWidget) == 0x0003F0, "Wrong size on UWrestlerQuestProgressWidget"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, QuestTitleText) == 0x0002C8, "Member 'UWrestlerQuestProgressWidget::QuestTitleText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, QuestDescriptionText) == 0x0002D0, "Member 'UWrestlerQuestProgressWidget::QuestDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, QuestDescriptionOptionalText) == 0x0002D8, "Member 'UWrestlerQuestProgressWidget::QuestDescriptionOptionalText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, QuestCounterText) == 0x0002E0, "Member 'UWrestlerQuestProgressWidget::QuestCounterText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, QuestTimerText) == 0x0002E8, "Member 'UWrestlerQuestProgressWidget::QuestTimerText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, bRemoveCounter) == 0x0002F0, "Member 'UWrestlerQuestProgressWidget::bRemoveCounter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, bRemoveTimer) == 0x0002F1, "Member 'UWrestlerQuestProgressWidget::bRemoveTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, bUseLegacyQuestData) == 0x0002F2, "Member 'UWrestlerQuestProgressWidget::bUseLegacyQuestData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, bUseLegacyQuestDataIfNoActiveQuest) == 0x0002F3, "Member 'UWrestlerQuestProgressWidget::bUseLegacyQuestDataIfNoActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, CounterPropertyToTrack) == 0x0003A0, "Member 'UWrestlerQuestProgressWidget::CounterPropertyToTrack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressWidget, TimerPropertyToTrack) == 0x0003C8, "Member 'UWrestlerQuestProgressWidget::TimerPropertyToTrack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_InterpVector \ +static_assert(alignof(AIFocusTypeBase_InterpVector) == 0x000008, "Wrong alignment on AIFocusTypeBase_InterpVector"); \ +static_assert(sizeof(AIFocusTypeBase_InterpVector) == 0x000058, "Wrong size on AIFocusTypeBase_InterpVector"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, InCurrent) == 0x000000, "Member 'AIFocusTypeBase_InterpVector::InCurrent' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, InTarget) == 0x000018, "Member 'AIFocusTypeBase_InterpVector::InTarget' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, InDeltaTime) == 0x000030, "Member 'AIFocusTypeBase_InterpVector::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, InSpeed) == 0x000034, "Member 'AIFocusTypeBase_InterpVector::InSpeed' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, Pin) == 0x000038, "Member 'AIFocusTypeBase_InterpVector::Pin' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_InterpVector, ReturnValue) == 0x000040, "Member 'AIFocusTypeBase_InterpVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_IsMovingOrTurning \ +static_assert(alignof(AIFocusTypeBase_IsMovingOrTurning) == 0x000008, "Wrong alignment on AIFocusTypeBase_IsMovingOrTurning"); \ +static_assert(sizeof(AIFocusTypeBase_IsMovingOrTurning) == 0x000018, "Wrong size on AIFocusTypeBase_IsMovingOrTurning"); \ +static_assert(offsetof(AIFocusTypeBase_IsMovingOrTurning, InController) == 0x000000, "Member 'AIFocusTypeBase_IsMovingOrTurning::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_IsMovingOrTurning, InVelocityTolerance) == 0x000008, "Member 'AIFocusTypeBase_IsMovingOrTurning::InVelocityTolerance' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_IsMovingOrTurning, InTurnTolerance) == 0x00000C, "Member 'AIFocusTypeBase_IsMovingOrTurning::InTurnTolerance' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_IsMovingOrTurning, ReturnValue) == 0x000010, "Member 'AIFocusTypeBase_IsMovingOrTurning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetCurrentFocalPoint \ +static_assert(alignof(AIFocusTypeBase_GetCurrentFocalPoint) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetCurrentFocalPoint"); \ +static_assert(sizeof(AIFocusTypeBase_GetCurrentFocalPoint) == 0x000020, "Wrong size on AIFocusTypeBase_GetCurrentFocalPoint"); \ +static_assert(offsetof(AIFocusTypeBase_GetCurrentFocalPoint, InController) == 0x000000, "Member 'AIFocusTypeBase_GetCurrentFocalPoint::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetCurrentFocalPoint, ReturnValue) == 0x000008, "Member 'AIFocusTypeBase_GetCurrentFocalPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetHeadDirection \ +static_assert(alignof(AIFocusTypeBase_GetHeadDirection) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetHeadDirection"); \ +static_assert(sizeof(AIFocusTypeBase_GetHeadDirection) == 0x000020, "Wrong size on AIFocusTypeBase_GetHeadDirection"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadDirection, InController) == 0x000000, "Member 'AIFocusTypeBase_GetHeadDirection::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadDirection, ReturnValue) == 0x000008, "Member 'AIFocusTypeBase_GetHeadDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetHeadPitch \ +static_assert(alignof(AIFocusTypeBase_GetHeadPitch) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetHeadPitch"); \ +static_assert(sizeof(AIFocusTypeBase_GetHeadPitch) == 0x000010, "Wrong size on AIFocusTypeBase_GetHeadPitch"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadPitch, InController) == 0x000000, "Member 'AIFocusTypeBase_GetHeadPitch::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadPitch, ReturnValue) == 0x000008, "Member 'AIFocusTypeBase_GetHeadPitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetHeadYaw \ +static_assert(alignof(AIFocusTypeBase_GetHeadYaw) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetHeadYaw"); \ +static_assert(sizeof(AIFocusTypeBase_GetHeadYaw) == 0x000010, "Wrong size on AIFocusTypeBase_GetHeadYaw"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadYaw, InController) == 0x000000, "Member 'AIFocusTypeBase_GetHeadYaw::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetHeadYaw, ReturnValue) == 0x000008, "Member 'AIFocusTypeBase_GetHeadYaw::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetPlayerCharacter \ +static_assert(alignof(AIFocusTypeBase_GetPlayerCharacter) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetPlayerCharacter"); \ +static_assert(sizeof(AIFocusTypeBase_GetPlayerCharacter) == 0x000018, "Wrong size on AIFocusTypeBase_GetPlayerCharacter"); \ +static_assert(offsetof(AIFocusTypeBase_GetPlayerCharacter, InWorldContext) == 0x000000, "Member 'AIFocusTypeBase_GetPlayerCharacter::InWorldContext' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetPlayerCharacter, InPlayerIndex) == 0x000008, "Member 'AIFocusTypeBase_GetPlayerCharacter::InPlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetPlayerCharacter, ReturnValue) == 0x000010, "Member 'AIFocusTypeBase_GetPlayerCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_GetScaledForwardLocation \ +static_assert(alignof(AIFocusTypeBase_GetScaledForwardLocation) == 0x000008, "Wrong alignment on AIFocusTypeBase_GetScaledForwardLocation"); \ +static_assert(sizeof(AIFocusTypeBase_GetScaledForwardLocation) == 0x000028, "Wrong size on AIFocusTypeBase_GetScaledForwardLocation"); \ +static_assert(offsetof(AIFocusTypeBase_GetScaledForwardLocation, InController) == 0x000000, "Member 'AIFocusTypeBase_GetScaledForwardLocation::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetScaledForwardLocation, InScale) == 0x000008, "Member 'AIFocusTypeBase_GetScaledForwardLocation::InScale' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_GetScaledForwardLocation, ReturnValue) == 0x000010, "Member 'AIFocusTypeBase_GetScaledForwardLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIFocusTypeBase_RotateHead \ +static_assert(alignof(AIFocusTypeBase_RotateHead) == 0x000008, "Wrong alignment on AIFocusTypeBase_RotateHead"); \ +static_assert(sizeof(AIFocusTypeBase_RotateHead) == 0x000030, "Wrong size on AIFocusTypeBase_RotateHead"); \ +static_assert(offsetof(AIFocusTypeBase_RotateHead, InController) == 0x000000, "Member 'AIFocusTypeBase_RotateHead::InController' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_RotateHead, InYaw) == 0x000008, "Member 'AIFocusTypeBase_RotateHead::InYaw' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_RotateHead, InPitch) == 0x00000C, "Member 'AIFocusTypeBase_RotateHead::InPitch' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_RotateHead, InZOffSet) == 0x000010, "Member 'AIFocusTypeBase_RotateHead::InZOffSet' has a wrong offset!"); \ +static_assert(offsetof(AIFocusTypeBase_RotateHead, ReturnValue) == 0x000018, "Member 'AIFocusTypeBase_RotateHead::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIFocusTypeBase \ +static_assert(alignof(UAIFocusTypeBase) == 0x000008, "Wrong alignment on UAIFocusTypeBase"); \ +static_assert(sizeof(UAIFocusTypeBase) == 0x000030, "Wrong size on UAIFocusTypeBase"); \ +static_assert(offsetof(UAIFocusTypeBase, EyePosZOffset) == 0x000028, "Member 'UAIFocusTypeBase::EyePosZOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIFocusType_BlueprintBase \ +static_assert(alignof(UAIFocusType_BlueprintBase) == 0x000008, "Wrong alignment on UAIFocusType_BlueprintBase"); \ +static_assert(sizeof(UAIFocusType_BlueprintBase) == 0x000038, "Wrong size on UAIFocusType_BlueprintBase"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce \ +static_assert(alignof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce"); \ +static_assert(sizeof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce) == 0x000070, "Wrong size on WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InTargetLocation) == 0x000010, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InDuration) == 0x000028, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InbSetNewMovementMode) == 0x00002C, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InbSetNewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InMovementMode) == 0x00002D, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InMovementMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InbRestrictSpeedToExpected) == 0x00002E, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InbRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InPathOffsetCurve) == 0x000030, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InPathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InTimeMappingCurve) == 0x000038, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InTimeMappingCurve' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InVelocityOnFinishMode) == 0x000040, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InVelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InSetVelocityOnFinish) == 0x000048, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InSetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, InClampVelocityOnFinish) == 0x000060, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::InClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce, ReturnValue) == 0x000068, "Member 'WrestlerAbilityTask_MoveToForce_WrestlerApplyMoveToForce::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MoveToForce \ +static_assert(alignof(UWrestlerAbilityTask_MoveToForce) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MoveToForce"); \ +static_assert(sizeof(UWrestlerAbilityTask_MoveToForce) == 0x000138, "Wrong size on UWrestlerAbilityTask_MoveToForce"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToForce, TimeMappingCurve) == 0x000130, "Member 'UWrestlerAbilityTask_MoveToForce::TimeMappingCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints \ +static_assert(alignof(WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints) == 0x000001, "Wrong alignment on WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints"); \ +static_assert(sizeof(WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints) == 0x000001, "Wrong size on WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints"); \ +static_assert(offsetof(WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints, ReturnValue) == 0x000000, "Member 'WrestlerRefillBloodAutomataTask_CheckForMaxBloodPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRefillBloodAutomataTask \ +static_assert(alignof(UWrestlerRefillBloodAutomataTask) == 0x000008, "Wrong alignment on UWrestlerRefillBloodAutomataTask"); \ +static_assert(sizeof(UWrestlerRefillBloodAutomataTask) == 0x000090, "Wrong size on UWrestlerRefillBloodAutomataTask"); \ +static_assert(offsetof(UWrestlerRefillBloodAutomataTask, AbilityType) == 0x000088, "Member 'UWrestlerRefillBloodAutomataTask::AbilityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAIFocusType_LookBothWays \ +static_assert(alignof(UAIFocusType_LookBothWays) == 0x000008, "Wrong alignment on UAIFocusType_LookBothWays"); \ +static_assert(sizeof(UAIFocusType_LookBothWays) == 0x000070, "Wrong size on UAIFocusType_LookBothWays"); \ +static_assert(offsetof(UAIFocusType_LookBothWays, HalfConeAngle) == 0x000038, "Member 'UAIFocusType_LookBothWays::HalfConeAngle' has a wrong offset!"); \ +static_assert(offsetof(UAIFocusType_LookBothWays, HalfGlanceTime) == 0x00003C, "Member 'UAIFocusType_LookBothWays::HalfGlanceTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIDebugWidgetComponent \ +static_assert(alignof(UWrestlerAIDebugWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerAIDebugWidgetComponent"); \ +static_assert(sizeof(UWrestlerAIDebugWidgetComponent) == 0x000740, "Wrong size on UWrestlerAIDebugWidgetComponent"); \ + +#define DUMPER7_ASSERTS_UAIFocus_LookForward \ +static_assert(alignof(UAIFocus_LookForward) == 0x000008, "Wrong alignment on UAIFocus_LookForward"); \ +static_assert(sizeof(UAIFocus_LookForward) == 0x000040, "Wrong size on UAIFocus_LookForward"); \ + +#define DUMPER7_ASSERTS_BlockUnblockAbilityTask_BlockAbility \ +static_assert(alignof(BlockUnblockAbilityTask_BlockAbility) == 0x000008, "Wrong alignment on BlockUnblockAbilityTask_BlockAbility"); \ +static_assert(sizeof(BlockUnblockAbilityTask_BlockAbility) == 0x000028, "Wrong size on BlockUnblockAbilityTask_BlockAbility"); \ +static_assert(offsetof(BlockUnblockAbilityTask_BlockAbility, InOtherActor) == 0x000000, "Member 'BlockUnblockAbilityTask_BlockAbility::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(BlockUnblockAbilityTask_BlockAbility, InAbilityTag) == 0x000008, "Member 'BlockUnblockAbilityTask_BlockAbility::InAbilityTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockUnblockAbilityTask_UnBlockAbility \ +static_assert(alignof(BlockUnblockAbilityTask_UnBlockAbility) == 0x000008, "Wrong alignment on BlockUnblockAbilityTask_UnBlockAbility"); \ +static_assert(sizeof(BlockUnblockAbilityTask_UnBlockAbility) == 0x000028, "Wrong size on BlockUnblockAbilityTask_UnBlockAbility"); \ +static_assert(offsetof(BlockUnblockAbilityTask_UnBlockAbility, InOtherActor) == 0x000000, "Member 'BlockUnblockAbilityTask_UnBlockAbility::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(BlockUnblockAbilityTask_UnBlockAbility, InAbilityTag) == 0x000008, "Member 'BlockUnblockAbilityTask_UnBlockAbility::InAbilityTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockUnblockAbilityTask_UnBlockAbilityHack \ +static_assert(alignof(BlockUnblockAbilityTask_UnBlockAbilityHack) == 0x000008, "Wrong alignment on BlockUnblockAbilityTask_UnBlockAbilityHack"); \ +static_assert(sizeof(BlockUnblockAbilityTask_UnBlockAbilityHack) == 0x000008, "Wrong size on BlockUnblockAbilityTask_UnBlockAbilityHack"); \ +static_assert(offsetof(BlockUnblockAbilityTask_UnBlockAbilityHack, InOtherActor) == 0x000000, "Member 'BlockUnblockAbilityTask_UnBlockAbilityHack::InOtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockUnblockAbilityTask_UnBlockAllAbilities \ +static_assert(alignof(BlockUnblockAbilityTask_UnBlockAllAbilities) == 0x000008, "Wrong alignment on BlockUnblockAbilityTask_UnBlockAllAbilities"); \ +static_assert(sizeof(BlockUnblockAbilityTask_UnBlockAllAbilities) == 0x000008, "Wrong size on BlockUnblockAbilityTask_UnBlockAllAbilities"); \ +static_assert(offsetof(BlockUnblockAbilityTask_UnBlockAllAbilities, InActor) == 0x000000, "Member 'BlockUnblockAbilityTask_UnBlockAllAbilities::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlockUnblockAbilityTask \ +static_assert(alignof(UBlockUnblockAbilityTask) == 0x000008, "Wrong alignment on UBlockUnblockAbilityTask"); \ +static_assert(sizeof(UBlockUnblockAbilityTask) == 0x000088, "Wrong size on UBlockUnblockAbilityTask"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapMarkerWidget \ +static_assert(alignof(UWrestlerMapMarkerWidget) == 0x000010, "Wrong alignment on UWrestlerMapMarkerWidget"); \ +static_assert(sizeof(UWrestlerMapMarkerWidget) == 0x000500, "Wrong size on UWrestlerMapMarkerWidget"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, MarkerData) == 0x0002D8, "Member 'UWrestlerMapMarkerWidget::MarkerData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, WaypointPosition) == 0x000430, "Member 'UWrestlerMapMarkerWidget::WaypointPosition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, MapMarkerCanvas) == 0x000490, "Member 'UWrestlerMapMarkerWidget::MapMarkerCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, MarkerIconToShow) == 0x000498, "Member 'UWrestlerMapMarkerWidget::MarkerIconToShow' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, RadialAreaImage) == 0x0004A0, "Member 'UWrestlerMapMarkerWidget::RadialAreaImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, ButtonBody) == 0x0004A8, "Member 'UWrestlerMapMarkerWidget::ButtonBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, IsSelected) == 0x0004B0, "Member 'UWrestlerMapMarkerWidget::IsSelected' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, IsOverideWaypointLogic) == 0x0004B1, "Member 'UWrestlerMapMarkerWidget::IsOverideWaypointLogic' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, MarkerOnMapText) == 0x0004B8, "Member 'UWrestlerMapMarkerWidget::MarkerOnMapText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkerWidget, DialogueStory) == 0x0004C0, "Member 'UWrestlerMapMarkerWidget::DialogueStory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestMapMarkerWidget \ +static_assert(alignof(UWrestlerQuestMapMarkerWidget) == 0x000010, "Wrong alignment on UWrestlerQuestMapMarkerWidget"); \ +static_assert(sizeof(UWrestlerQuestMapMarkerWidget) == 0x000510, "Wrong size on UWrestlerQuestMapMarkerWidget"); \ + +#define DUMPER7_ASSERTS_UBTTask_WrestlerChooseTarget \ +static_assert(alignof(UBTTask_WrestlerChooseTarget) == 0x000008, "Wrong alignment on UBTTask_WrestlerChooseTarget"); \ +static_assert(sizeof(UBTTask_WrestlerChooseTarget) == 0x000098, "Wrong size on UBTTask_WrestlerChooseTarget"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent \ +static_assert(alignof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent) == 0x000010, "Wrong alignment on WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent"); \ +static_assert(sizeof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent) == 0x000170, "Wrong size on WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InLevelSequence) == 0x000010, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InLevelSequence' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InEventTags) == 0x000018, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InEventTags' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InTransformOriginActor) == 0x000038, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InTransformOriginActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InTransformOrigin) == 0x000040, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InTransformOrigin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, bInSendSequenceData) == 0x0000A0, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::bInSendSequenceData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, bInSequenceIgnoresTaskEnd) == 0x0000A1, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::bInSequenceIgnoresTaskEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InPlaybackSettings) == 0x0000A4, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InPlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InCharacterSequenceData) == 0x0000D0, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InCharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, InBindings) == 0x000150, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::InBindings' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, OutLevelSequenceActor) == 0x000160, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent, ReturnValue) == 0x000168, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_PlaySequenceAndWaitForEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData \ +static_assert(alignof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData) == 0x000010, "Wrong alignment on WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData"); \ +static_assert(sizeof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData) == 0x000080, "Wrong size on WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData"); \ +static_assert(offsetof(WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData, InSequenceData) == 0x000000, "Member 'WrestlerAbilityTask_PlaySequenceAndWaitForEvent_UpdateSequenceData::InSequenceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_PlaySequenceAndWaitForEvent \ +static_assert(alignof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_PlaySequenceAndWaitForEvent"); \ +static_assert(sizeof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent) == 0x0001C0, "Wrong size on UWrestlerAbilityTask_PlaySequenceAndWaitForEvent"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnSequenceStopped) == 0x000080, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnSequenceStopped' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnSequenceFinished) == 0x000090, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnSequenceFinished' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnSequencePlay) == 0x0000A0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnSequencePlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnSequencePause) == 0x0000B0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnSequencePause' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnCancelled) == 0x0000C0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, OnSequenceUpdate) == 0x0000D0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::OnSequenceUpdate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, EventReceived) == 0x0000E0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::EventReceived' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, EventTags) == 0x0000F0, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::EventTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, SequencePlayer) == 0x000110, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, InstanceData) == 0x000118, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::InstanceData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlaySequenceAndWaitForEvent, CharacterSequenceData) == 0x000120, "Member 'UWrestlerAbilityTask_PlaySequenceAndWaitForEvent::CharacterSequenceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassProcessorBase \ +static_assert(alignof(UWrestlerMassProcessorBase) == 0x000008, "Wrong alignment on UWrestlerMassProcessorBase"); \ +static_assert(sizeof(UWrestlerMassProcessorBase) == 0x0000B8, "Wrong size on UWrestlerMassProcessorBase"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectCandidatesFinderProcessor \ +static_assert(alignof(UWrestlerMassSmartObjectCandidatesFinderProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectCandidatesFinderProcessor"); \ +static_assert(sizeof(UWrestlerMassSmartObjectCandidatesFinderProcessor) == 0x000600, "Wrong size on UWrestlerMassSmartObjectCandidatesFinderProcessor"); \ + +#define DUMPER7_ASSERTS_UBTTask_WrestlerRunBehaviorDynamic \ +static_assert(alignof(UBTTask_WrestlerRunBehaviorDynamic) == 0x000008, "Wrong alignment on UBTTask_WrestlerRunBehaviorDynamic"); \ +static_assert(sizeof(UBTTask_WrestlerRunBehaviorDynamic) == 0x000088, "Wrong size on UBTTask_WrestlerRunBehaviorDynamic"); \ + +#define DUMPER7_ASSERTS_InputIconLookupTable_GetIconName \ +static_assert(alignof(InputIconLookupTable_GetIconName) == 0x000008, "Wrong alignment on InputIconLookupTable_GetIconName"); \ +static_assert(sizeof(InputIconLookupTable_GetIconName) == 0x000020, "Wrong size on InputIconLookupTable_GetIconName"); \ +static_assert(offsetof(InputIconLookupTable_GetIconName, InInputSystem) == 0x000000, "Member 'InputIconLookupTable_GetIconName::InInputSystem' has a wrong offset!"); \ +static_assert(offsetof(InputIconLookupTable_GetIconName, InEnhancedInputAction) == 0x000008, "Member 'InputIconLookupTable_GetIconName::InEnhancedInputAction' has a wrong offset!"); \ +static_assert(offsetof(InputIconLookupTable_GetIconName, ReturnValue) == 0x000010, "Member 'InputIconLookupTable_GetIconName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputIconLookupTable \ +static_assert(alignof(UInputIconLookupTable) == 0x000008, "Wrong alignment on UInputIconLookupTable"); \ +static_assert(sizeof(UInputIconLookupTable) == 0x000080, "Wrong size on UInputIconLookupTable"); \ +static_assert(offsetof(UInputIconLookupTable, InputIconsLookupTable) == 0x000030, "Member 'UInputIconLookupTable::InputIconsLookupTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConfigDataAsset \ +static_assert(alignof(UWrestlerConfigDataAsset) == 0x000008, "Wrong alignment on UWrestlerConfigDataAsset"); \ +static_assert(sizeof(UWrestlerConfigDataAsset) == 0x000030, "Wrong size on UWrestlerConfigDataAsset"); \ + +#define DUMPER7_ASSERTS_UWrestlerActorOcclusionConfig \ +static_assert(alignof(UWrestlerActorOcclusionConfig) == 0x000008, "Wrong alignment on UWrestlerActorOcclusionConfig"); \ +static_assert(sizeof(UWrestlerActorOcclusionConfig) == 0x000040, "Wrong size on UWrestlerActorOcclusionConfig"); \ +static_assert(offsetof(UWrestlerActorOcclusionConfig, MovementDistanceThreshold) == 0x000030, "Member 'UWrestlerActorOcclusionConfig::MovementDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActorOcclusionConfig, MaxAngleDegrees) == 0x000034, "Member 'UWrestlerActorOcclusionConfig::MaxAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActorOcclusionConfig, MinPeriod) == 0x000038, "Member 'UWrestlerActorOcclusionConfig::MinPeriod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSmartObjectUserDataTrait \ +static_assert(alignof(UWrestlerSmartObjectUserDataTrait) == 0x000008, "Wrong alignment on UWrestlerSmartObjectUserDataTrait"); \ +static_assert(sizeof(UWrestlerSmartObjectUserDataTrait) == 0x000088, "Wrong size on UWrestlerSmartObjectUserDataTrait"); \ +static_assert(offsetof(UWrestlerSmartObjectUserDataTrait, Data) == 0x000028, "Member 'UWrestlerSmartObjectUserDataTrait::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraModifier_HeadTrack \ +static_assert(alignof(UCameraModifier_HeadTrack) == 0x000008, "Wrong alignment on UCameraModifier_HeadTrack"); \ +static_assert(sizeof(UCameraModifier_HeadTrack) == 0x000050, "Wrong size on UCameraModifier_HeadTrack"); \ +static_assert(offsetof(UCameraModifier_HeadTrack, TrackedSocketName) == 0x000048, "Member 'UCameraModifier_HeadTrack::TrackedSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerModularCharacterData \ +static_assert(alignof(UWrestlerModularCharacterData) == 0x000008, "Wrong alignment on UWrestlerModularCharacterData"); \ +static_assert(sizeof(UWrestlerModularCharacterData) == 0x000110, "Wrong size on UWrestlerModularCharacterData"); \ +static_assert(offsetof(UWrestlerModularCharacterData, ChestMeshes) == 0x000030, "Member 'UWrestlerModularCharacterData::ChestMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, LegMeshes) == 0x000040, "Member 'UWrestlerModularCharacterData::LegMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, HairMeshes) == 0x000050, "Member 'UWrestlerModularCharacterData::HairMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, HatMeshes) == 0x000060, "Member 'UWrestlerModularCharacterData::HatMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, ScarfMeshes) == 0x000070, "Member 'UWrestlerModularCharacterData::ScarfMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, GlovesMeshes) == 0x000080, "Member 'UWrestlerModularCharacterData::GlovesMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, HeadMeshes) == 0x000090, "Member 'UWrestlerModularCharacterData::HeadMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, ShoesMeshes) == 0x0000A0, "Member 'UWrestlerModularCharacterData::ShoesMeshes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_FemaleArms) == 0x0000B0, "Member 'UWrestlerModularCharacterData::MI_FemaleArms' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_FemaleBody) == 0x0000C0, "Member 'UWrestlerModularCharacterData::MI_FemaleBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_Female_SkintoneVariations) == 0x0000D0, "Member 'UWrestlerModularCharacterData::MI_Female_SkintoneVariations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_TopInners) == 0x0000E0, "Member 'UWrestlerModularCharacterData::MI_TopInners' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_TopOuters) == 0x0000F0, "Member 'UWrestlerModularCharacterData::MI_TopOuters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterData, MI_TopExtras) == 0x000100, "Member 'UWrestlerModularCharacterData::MI_TopExtras' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraModifier_MotionBlurTimeScaler \ +static_assert(alignof(UCameraModifier_MotionBlurTimeScaler) == 0x000008, "Wrong alignment on UCameraModifier_MotionBlurTimeScaler"); \ +static_assert(sizeof(UCameraModifier_MotionBlurTimeScaler) == 0x000050, "Wrong size on UCameraModifier_MotionBlurTimeScaler"); \ +static_assert(offsetof(UCameraModifier_MotionBlurTimeScaler, MinTimeDilation) == 0x000048, "Member 'UCameraModifier_MotionBlurTimeScaler::MinTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UCameraModifier_MotionBlurTimeScaler, MotionBlurMax) == 0x00004C, "Member 'UCameraModifier_MotionBlurTimeScaler::MotionBlurMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerClan \ +static_assert(alignof(UWrestlerPlayerClan) == 0x000008, "Wrong alignment on UWrestlerPlayerClan"); \ +static_assert(sizeof(UWrestlerPlayerClan) == 0x000090, "Wrong size on UWrestlerPlayerClan"); \ +static_assert(offsetof(UWrestlerPlayerClan, EnumValue) == 0x000030, "Member 'UWrestlerPlayerClan::EnumValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, Name_0) == 0x000038, "Member 'UWrestlerPlayerClan::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, PassiveDescription) == 0x000050, "Member 'UWrestlerPlayerClan::PassiveDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, Icon) == 0x000068, "Member 'UWrestlerPlayerClan::Icon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, ClanAbilities) == 0x000070, "Member 'UWrestlerPlayerClan::ClanAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, PassiveAbility) == 0x000078, "Member 'UWrestlerPlayerClan::PassiveAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, Attributes) == 0x000080, "Member 'UWrestlerPlayerClan::Attributes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerClan, bAbilitiesInNarrativeMode) == 0x000088, "Member 'UWrestlerPlayerClan::bAbilitiesInNarrativeMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCodexAssetMap \ +static_assert(alignof(UCodexAssetMap) == 0x000008, "Wrong alignment on UCodexAssetMap"); \ +static_assert(sizeof(UCodexAssetMap) == 0x000120, "Wrong size on UCodexAssetMap"); \ +static_assert(offsetof(UCodexAssetMap, TextureMapAsset) == 0x000030, "Member 'UCodexAssetMap::TextureMapAsset' has a wrong offset!"); \ +static_assert(offsetof(UCodexAssetMap, DialogueMapAsset) == 0x000080, "Member 'UCodexAssetMap::DialogueMapAsset' has a wrong offset!"); \ +static_assert(offsetof(UCodexAssetMap, ObjectClassMapAsset) == 0x0000D0, "Member 'UCodexAssetMap::ObjectClassMapAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_RealTimeDelay_WaitRealDelay \ +static_assert(alignof(WrestlerAbilityTask_RealTimeDelay_WaitRealDelay) == 0x000008, "Wrong alignment on WrestlerAbilityTask_RealTimeDelay_WaitRealDelay"); \ +static_assert(sizeof(WrestlerAbilityTask_RealTimeDelay_WaitRealDelay) == 0x000018, "Wrong size on WrestlerAbilityTask_RealTimeDelay_WaitRealDelay"); \ +static_assert(offsetof(WrestlerAbilityTask_RealTimeDelay_WaitRealDelay, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_RealTimeDelay_WaitRealDelay::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RealTimeDelay_WaitRealDelay, Duration) == 0x000008, "Member 'WrestlerAbilityTask_RealTimeDelay_WaitRealDelay::Duration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RealTimeDelay_WaitRealDelay, ReturnValue) == 0x000010, "Member 'WrestlerAbilityTask_RealTimeDelay_WaitRealDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_RealTimeDelay \ +static_assert(alignof(UWrestlerAbilityTask_RealTimeDelay) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_RealTimeDelay"); \ +static_assert(sizeof(UWrestlerAbilityTask_RealTimeDelay) == 0x0000B0, "Wrong size on UWrestlerAbilityTask_RealTimeDelay"); \ +static_assert(offsetof(UWrestlerAbilityTask_RealTimeDelay, OnFinish) == 0x000080, "Member 'UWrestlerAbilityTask_RealTimeDelay::OnFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavigationFilter_PrioritiseAlleyways \ +static_assert(alignof(UWrestlerNavigationFilter_PrioritiseAlleyways) == 0x000008, "Wrong alignment on UWrestlerNavigationFilter_PrioritiseAlleyways"); \ +static_assert(sizeof(UWrestlerNavigationFilter_PrioritiseAlleyways) == 0x000048, "Wrong size on UWrestlerNavigationFilter_PrioritiseAlleyways"); \ + +#define DUMPER7_ASSERTS_UControlsDisplayData \ +static_assert(alignof(UControlsDisplayData) == 0x000008, "Wrong alignment on UControlsDisplayData"); \ +static_assert(sizeof(UControlsDisplayData) == 0x000060, "Wrong size on UControlsDisplayData"); \ +static_assert(offsetof(UControlsDisplayData, Categories) == 0x000030, "Member 'UControlsDisplayData::Categories' has a wrong offset!"); \ +static_assert(offsetof(UControlsDisplayData, SpecialMappings) == 0x000040, "Member 'UControlsDisplayData::SpecialMappings' has a wrong offset!"); \ +static_assert(offsetof(UControlsDisplayData, MoveAction) == 0x000050, "Member 'UControlsDisplayData::MoveAction' has a wrong offset!"); \ +static_assert(offsetof(UControlsDisplayData, PriorityModifierInstance) == 0x000058, "Member 'UControlsDisplayData::PriorityModifierInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig \ +static_assert(alignof(UWrestlerAISenseConfig) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig"); \ +static_assert(sizeof(UWrestlerAISenseConfig) == 0x000040, "Wrong size on UWrestlerAISenseConfig"); \ +static_assert(offsetof(UWrestlerAISenseConfig, Senses) == 0x000030, "Member 'UWrestlerAISenseConfig::Senses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_GetCurrentlyPerceivedActorsOfSense \ +static_assert(alignof(WrestlerAIController_GetCurrentlyPerceivedActorsOfSense) == 0x000008, "Wrong alignment on WrestlerAIController_GetCurrentlyPerceivedActorsOfSense"); \ +static_assert(sizeof(WrestlerAIController_GetCurrentlyPerceivedActorsOfSense) == 0x000018, "Wrong size on WrestlerAIController_GetCurrentlyPerceivedActorsOfSense"); \ +static_assert(offsetof(WrestlerAIController_GetCurrentlyPerceivedActorsOfSense, SenseToUse) == 0x000000, "Member 'WrestlerAIController_GetCurrentlyPerceivedActorsOfSense::SenseToUse' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIController_GetCurrentlyPerceivedActorsOfSense, OutActors) == 0x000008, "Member 'WrestlerAIController_GetCurrentlyPerceivedActorsOfSense::OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_GetLookForExitPoint \ +static_assert(alignof(WrestlerAIController_GetLookForExitPoint) == 0x000001, "Wrong alignment on WrestlerAIController_GetLookForExitPoint"); \ +static_assert(sizeof(WrestlerAIController_GetLookForExitPoint) == 0x000001, "Wrong size on WrestlerAIController_GetLookForExitPoint"); \ +static_assert(offsetof(WrestlerAIController_GetLookForExitPoint, ReturnValue) == 0x000000, "Member 'WrestlerAIController_GetLookForExitPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_IsActorPerceived \ +static_assert(alignof(WrestlerAIController_IsActorPerceived) == 0x000008, "Wrong alignment on WrestlerAIController_IsActorPerceived"); \ +static_assert(sizeof(WrestlerAIController_IsActorPerceived) == 0x000010, "Wrong size on WrestlerAIController_IsActorPerceived"); \ +static_assert(offsetof(WrestlerAIController_IsActorPerceived, ActorToCheck) == 0x000000, "Member 'WrestlerAIController_IsActorPerceived::ActorToCheck' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIController_IsActorPerceived, ReturnValue) == 0x000008, "Member 'WrestlerAIController_IsActorPerceived::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_SetLookForExitPoint \ +static_assert(alignof(WrestlerAIController_SetLookForExitPoint) == 0x000001, "Wrong alignment on WrestlerAIController_SetLookForExitPoint"); \ +static_assert(sizeof(WrestlerAIController_SetLookForExitPoint) == 0x000001, "Wrong size on WrestlerAIController_SetLookForExitPoint"); \ +static_assert(offsetof(WrestlerAIController_SetLookForExitPoint, bLookExitPoint) == 0x000000, "Member 'WrestlerAIController_SetLookForExitPoint::bLookExitPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_WrestlerSetGenericTeamId \ +static_assert(alignof(WrestlerAIController_WrestlerSetGenericTeamId) == 0x000001, "Wrong alignment on WrestlerAIController_WrestlerSetGenericTeamId"); \ +static_assert(sizeof(WrestlerAIController_WrestlerSetGenericTeamId) == 0x000001, "Wrong size on WrestlerAIController_WrestlerSetGenericTeamId"); \ +static_assert(offsetof(WrestlerAIController_WrestlerSetGenericTeamId, InTeamID) == 0x000000, "Member 'WrestlerAIController_WrestlerSetGenericTeamId::InTeamID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_GetTeamAttitudeTowardsTeam \ +static_assert(alignof(WrestlerAIController_GetTeamAttitudeTowardsTeam) == 0x000001, "Wrong alignment on WrestlerAIController_GetTeamAttitudeTowardsTeam"); \ +static_assert(sizeof(WrestlerAIController_GetTeamAttitudeTowardsTeam) == 0x000002, "Wrong size on WrestlerAIController_GetTeamAttitudeTowardsTeam"); \ +static_assert(offsetof(WrestlerAIController_GetTeamAttitudeTowardsTeam, InTeam) == 0x000000, "Member 'WrestlerAIController_GetTeamAttitudeTowardsTeam::InTeam' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIController_GetTeamAttitudeTowardsTeam, ReturnValue) == 0x000001, "Member 'WrestlerAIController_GetTeamAttitudeTowardsTeam::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_WrestlerGetGenericTeamId \ +static_assert(alignof(WrestlerAIController_WrestlerGetGenericTeamId) == 0x000001, "Wrong alignment on WrestlerAIController_WrestlerGetGenericTeamId"); \ +static_assert(sizeof(WrestlerAIController_WrestlerGetGenericTeamId) == 0x000001, "Wrong size on WrestlerAIController_WrestlerGetGenericTeamId"); \ +static_assert(offsetof(WrestlerAIController_WrestlerGetGenericTeamId, ReturnValue) == 0x000000, "Member 'WrestlerAIController_WrestlerGetGenericTeamId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIController_WrestlerGetTeamAttitudeTowards \ +static_assert(alignof(WrestlerAIController_WrestlerGetTeamAttitudeTowards) == 0x000008, "Wrong alignment on WrestlerAIController_WrestlerGetTeamAttitudeTowards"); \ +static_assert(sizeof(WrestlerAIController_WrestlerGetTeamAttitudeTowards) == 0x000010, "Wrong size on WrestlerAIController_WrestlerGetTeamAttitudeTowards"); \ +static_assert(offsetof(WrestlerAIController_WrestlerGetTeamAttitudeTowards, InOther) == 0x000000, "Member 'WrestlerAIController_WrestlerGetTeamAttitudeTowards::InOther' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIController_WrestlerGetTeamAttitudeTowards, ReturnValue) == 0x000008, "Member 'WrestlerAIController_WrestlerGetTeamAttitudeTowards::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAIController \ +static_assert(alignof(AWrestlerAIController) == 0x000008, "Wrong alignment on AWrestlerAIController"); \ +static_assert(sizeof(AWrestlerAIController) == 0x000408, "Wrong size on AWrestlerAIController"); \ +static_assert(offsetof(AWrestlerAIController, OnTeamChangedEvent) == 0x0003C8, "Member 'AWrestlerAIController::OnTeamChangedEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, DefaultBlackboard) == 0x0003D8, "Member 'AWrestlerAIController::DefaultBlackboard' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, BlackboardComponent) == 0x0003E0, "Member 'AWrestlerAIController::BlackboardComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, GameTeamID) == 0x0003E8, "Member 'AWrestlerAIController::GameTeamID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, InterestingPointSelectionAngle) == 0x0003EC, "Member 'AWrestlerAIController::InterestingPointSelectionAngle' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, SelectedInterestingPoint) == 0x0003F0, "Member 'AWrestlerAIController::SelectedInterestingPoint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAIController, TeamAttitudeConfig) == 0x0003F8, "Member 'AWrestlerAIController::TeamAttitudeConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassVisualizationProcessor \ +static_assert(alignof(UWrestlerMassVisualizationProcessor) == 0x000008, "Wrong alignment on UWrestlerMassVisualizationProcessor"); \ +static_assert(sizeof(UWrestlerMassVisualizationProcessor) == 0x000360, "Wrong size on UWrestlerMassVisualizationProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_GetEnemySubTeam \ +static_assert(alignof(WrestlerEnemyController_GetEnemySubTeam) == 0x000001, "Wrong alignment on WrestlerEnemyController_GetEnemySubTeam"); \ +static_assert(sizeof(WrestlerEnemyController_GetEnemySubTeam) == 0x000001, "Wrong size on WrestlerEnemyController_GetEnemySubTeam"); \ +static_assert(offsetof(WrestlerEnemyController_GetEnemySubTeam, ReturnValue) == 0x000000, "Member 'WrestlerEnemyController_GetEnemySubTeam::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_ReportNoiseForInvestigation \ +static_assert(alignof(WrestlerEnemyController_ReportNoiseForInvestigation) == 0x000008, "Wrong alignment on WrestlerEnemyController_ReportNoiseForInvestigation"); \ +static_assert(sizeof(WrestlerEnemyController_ReportNoiseForInvestigation) == 0x000020, "Wrong size on WrestlerEnemyController_ReportNoiseForInvestigation"); \ +static_assert(offsetof(WrestlerEnemyController_ReportNoiseForInvestigation, InStimulusTag) == 0x000000, "Member 'WrestlerEnemyController_ReportNoiseForInvestigation::InStimulusTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyController_ReportNoiseForInvestigation, InNoiseLocation) == 0x000008, "Member 'WrestlerEnemyController_ReportNoiseForInvestigation::InNoiseLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_GetEnemyBehaviour \ +static_assert(alignof(WrestlerEnemyController_GetEnemyBehaviour) == 0x000008, "Wrong alignment on WrestlerEnemyController_GetEnemyBehaviour"); \ +static_assert(sizeof(WrestlerEnemyController_GetEnemyBehaviour) == 0x000030, "Wrong size on WrestlerEnemyController_GetEnemyBehaviour"); \ +static_assert(offsetof(WrestlerEnemyController_GetEnemyBehaviour, InGameplayTag) == 0x000000, "Member 'WrestlerEnemyController_GetEnemyBehaviour::InGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyController_GetEnemyBehaviour, ReturnValue) == 0x000008, "Member 'WrestlerEnemyController_GetEnemyBehaviour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_GetSearchVolume \ +static_assert(alignof(WrestlerEnemyController_GetSearchVolume) == 0x000008, "Wrong alignment on WrestlerEnemyController_GetSearchVolume"); \ +static_assert(sizeof(WrestlerEnemyController_GetSearchVolume) == 0x000008, "Wrong size on WrestlerEnemyController_GetSearchVolume"); \ +static_assert(offsetof(WrestlerEnemyController_GetSearchVolume, ReturnValue) == 0x000000, "Member 'WrestlerEnemyController_GetSearchVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_GetStimuliSearches \ +static_assert(alignof(WrestlerEnemyController_GetStimuliSearches) == 0x000008, "Wrong alignment on WrestlerEnemyController_GetStimuliSearches"); \ +static_assert(sizeof(WrestlerEnemyController_GetStimuliSearches) == 0x000010, "Wrong size on WrestlerEnemyController_GetStimuliSearches"); \ +static_assert(offsetof(WrestlerEnemyController_GetStimuliSearches, ReturnValue) == 0x000000, "Member 'WrestlerEnemyController_GetStimuliSearches::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_HasPreviouslySeenDeadBody \ +static_assert(alignof(WrestlerEnemyController_HasPreviouslySeenDeadBody) == 0x000008, "Wrong alignment on WrestlerEnemyController_HasPreviouslySeenDeadBody"); \ +static_assert(sizeof(WrestlerEnemyController_HasPreviouslySeenDeadBody) == 0x000010, "Wrong size on WrestlerEnemyController_HasPreviouslySeenDeadBody"); \ +static_assert(offsetof(WrestlerEnemyController_HasPreviouslySeenDeadBody, InDeadBodyActor) == 0x000000, "Member 'WrestlerEnemyController_HasPreviouslySeenDeadBody::InDeadBodyActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyController_HasPreviouslySeenDeadBody, ReturnValue) == 0x000008, "Member 'WrestlerEnemyController_HasPreviouslySeenDeadBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyController_SetMoveToLocation \ +static_assert(alignof(WrestlerEnemyController_SetMoveToLocation) == 0x000008, "Wrong alignment on WrestlerEnemyController_SetMoveToLocation"); \ +static_assert(sizeof(WrestlerEnemyController_SetMoveToLocation) == 0x000018, "Wrong size on WrestlerEnemyController_SetMoveToLocation"); \ +static_assert(offsetof(WrestlerEnemyController_SetMoveToLocation, MoveToLocation_0) == 0x000000, "Member 'WrestlerEnemyController_SetMoveToLocation::MoveToLocation_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerEnemyController \ +static_assert(alignof(AWrestlerEnemyController) == 0x000008, "Wrong alignment on AWrestlerEnemyController"); \ +static_assert(sizeof(AWrestlerEnemyController) == 0x0005B0, "Wrong size on AWrestlerEnemyController"); \ +static_assert(offsetof(AWrestlerEnemyController, bEnemySightDisabled) == 0x000410, "Member 'AWrestlerEnemyController::bEnemySightDisabled' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, bUseFocusAimOffsets) == 0x000411, "Member 'AWrestlerEnemyController::bUseFocusAimOffsets' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, bAutoEnableStreaming) == 0x000412, "Member 'AWrestlerEnemyController::bAutoEnableStreaming' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BehaviourTreeComponent) == 0x000418, "Member 'AWrestlerEnemyController::BehaviourTreeComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, TokenSinkComponent) == 0x000420, "Member 'AWrestlerEnemyController::TokenSinkComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, WorldPartitionStreamingSourceComponent) == 0x000428, "Member 'AWrestlerEnemyController::WorldPartitionStreamingSourceComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, DefaultEnemyBehaviours) == 0x000430, "Member 'AWrestlerEnemyController::DefaultEnemyBehaviours' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, EnemyCombatBehaviours) == 0x000480, "Member 'AWrestlerEnemyController::EnemyCombatBehaviours' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyLastSensedLocation) == 0x0004DC, "Member 'AWrestlerEnemyController::BBKeyLastSensedLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyLastSeenLocation) == 0x0004E4, "Member 'AWrestlerEnemyController::BBKeyLastSeenLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyLastHeardLocation) == 0x0004EC, "Member 'AWrestlerEnemyController::BBKeyLastHeardLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyLastSensedLocationWasHearing) == 0x0004F4, "Member 'AWrestlerEnemyController::BBKeyLastSensedLocationWasHearing' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyMoveToLocation) == 0x0004FC, "Member 'AWrestlerEnemyController::BBKeyMoveToLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, BBKeyStunTimer) == 0x000504, "Member 'AWrestlerEnemyController::BBKeyStunTimer' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, bUseHardSetRotation) == 0x00050C, "Member 'AWrestlerEnemyController::bUseHardSetRotation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, stun) == 0x000510, "Member 'AWrestlerEnemyController::stun' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, combat) == 0x000518, "Member 'AWrestlerEnemyController::combat' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, dash) == 0x000520, "Member 'AWrestlerEnemyController::dash' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, ConfigDataName) == 0x000528, "Member 'AWrestlerEnemyController::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, CombatConfigName) == 0x000530, "Member 'AWrestlerEnemyController::CombatConfigName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, TeamBattleFinishedTag) == 0x000540, "Member 'AWrestlerEnemyController::TeamBattleFinishedTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, SearchFinishedTag) == 0x000548, "Member 'AWrestlerEnemyController::SearchFinishedTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, EnemySubTeam) == 0x000578, "Member 'AWrestlerEnemyController::EnemySubTeam' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, SeenDeadBodies) == 0x000580, "Member 'AWrestlerEnemyController::SeenDeadBodies' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, SeenDeadBodyTagName) == 0x000590, "Member 'AWrestlerEnemyController::SeenDeadBodyTagName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyController, SearchVolume) == 0x0005A0, "Member 'AWrestlerEnemyController::SearchVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DroneController_DroneSight \ +static_assert(alignof(DroneController_DroneSight) == 0x000008, "Wrong alignment on DroneController_DroneSight"); \ +static_assert(sizeof(DroneController_DroneSight) == 0x000030, "Wrong size on DroneController_DroneSight"); \ +static_assert(offsetof(DroneController_DroneSight, out_Location) == 0x000000, "Member 'DroneController_DroneSight::out_Location' has a wrong offset!"); \ +static_assert(offsetof(DroneController_DroneSight, out_Rotation) == 0x000018, "Member 'DroneController_DroneSight::out_Rotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADroneController \ +static_assert(alignof(ADroneController) == 0x000008, "Wrong alignment on ADroneController"); \ +static_assert(sizeof(ADroneController) == 0x0005B0, "Wrong size on ADroneController"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Slide_WrestlerSlide \ +static_assert(alignof(WrestlerAbilityTask_Slide_WrestlerSlide) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Slide_WrestlerSlide"); \ +static_assert(sizeof(WrestlerAbilityTask_Slide_WrestlerSlide) == 0x000038, "Wrong size on WrestlerAbilityTask_Slide_WrestlerSlide"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, Deceleration_0) == 0x000010, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::Deceleration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, GroundFriction_0) == 0x000014, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::GroundFriction_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, MaxAcceleration_0) == 0x000018, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::MaxAcceleration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, MinimumSlideSpeed_0) == 0x00001C, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::MinimumSlideSpeed_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, MinimumSlideDot_0) == 0x000020, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::MinimumSlideDot_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, MoveInputScale_0) == 0x000024, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::MoveInputScale_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, SlopeAccelerationFactor_0) == 0x000028, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::SlopeAccelerationFactor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, bSprintPersists_0) == 0x00002C, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::bSprintPersists_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Slide_WrestlerSlide, ReturnValue) == 0x000030, "Member 'WrestlerAbilityTask_Slide_WrestlerSlide::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Slide \ +static_assert(alignof(UWrestlerAbilityTask_Slide) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Slide"); \ +static_assert(sizeof(UWrestlerAbilityTask_Slide) == 0x000130, "Wrong size on UWrestlerAbilityTask_Slide"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_Slide::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, OnCrouchSpeedReached) == 0x000090, "Member 'UWrestlerAbilityTask_Slide::OnCrouchSpeedReached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, OnFacingThresholdReached) == 0x0000A0, "Member 'UWrestlerAbilityTask_Slide::OnFacingThresholdReached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, OnSlideEnded) == 0x0000B0, "Member 'UWrestlerAbilityTask_Slide::OnSlideEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, Deceleration) == 0x0000C0, "Member 'UWrestlerAbilityTask_Slide::Deceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, MinimumSlideSpeed) == 0x0000C8, "Member 'UWrestlerAbilityTask_Slide::MinimumSlideSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, MinimumSlideDot) == 0x0000CC, "Member 'UWrestlerAbilityTask_Slide::MinimumSlideDot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, MoveInputScale) == 0x0000D0, "Member 'UWrestlerAbilityTask_Slide::MoveInputScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, SlopeAccelerationFactor) == 0x0000D4, "Member 'UWrestlerAbilityTask_Slide::SlopeAccelerationFactor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, GroundFriction) == 0x0000D8, "Member 'UWrestlerAbilityTask_Slide::GroundFriction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, MaxAcceleration) == 0x0000E0, "Member 'UWrestlerAbilityTask_Slide::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, bSprintPersists) == 0x0000E8, "Member 'UWrestlerAbilityTask_Slide::bSprintPersists' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Slide, SlideDirection) == 0x0000F0, "Member 'UWrestlerAbilityTask_Slide::SlideDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraAutomataTestSettings \ +static_assert(alignof(UHeraAutomataTestSettings) == 0x000008, "Wrong alignment on UHeraAutomataTestSettings"); \ +static_assert(sizeof(UHeraAutomataTestSettings) == 0x000128, "Wrong size on UHeraAutomataTestSettings"); \ +static_assert(offsetof(UHeraAutomataTestSettings, FlowTests) == 0x000038, "Member 'UHeraAutomataTestSettings::FlowTests' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTestSettings, BackreferenceStateChainTests) == 0x000088, "Member 'UHeraAutomataTestSettings::BackreferenceStateChainTests' has a wrong offset!"); \ +static_assert(offsetof(UHeraAutomataTestSettings, BackreferenceBootChainTests) == 0x0000D8, "Member 'UHeraAutomataTestSettings::BackreferenceBootChainTests' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSystemNotificationMenu_OnCancelButtonPressed \ +static_assert(alignof(WrestlerSystemNotificationMenu_OnCancelButtonPressed) == 0x000008, "Wrong alignment on WrestlerSystemNotificationMenu_OnCancelButtonPressed"); \ +static_assert(sizeof(WrestlerSystemNotificationMenu_OnCancelButtonPressed) == 0x000008, "Wrong size on WrestlerSystemNotificationMenu_OnCancelButtonPressed"); \ +static_assert(offsetof(WrestlerSystemNotificationMenu_OnCancelButtonPressed, InButtonPressed) == 0x000000, "Member 'WrestlerSystemNotificationMenu_OnCancelButtonPressed::InButtonPressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSystemNotificationMenu_OnConfirmButtonPressed \ +static_assert(alignof(WrestlerSystemNotificationMenu_OnConfirmButtonPressed) == 0x000008, "Wrong alignment on WrestlerSystemNotificationMenu_OnConfirmButtonPressed"); \ +static_assert(sizeof(WrestlerSystemNotificationMenu_OnConfirmButtonPressed) == 0x000008, "Wrong size on WrestlerSystemNotificationMenu_OnConfirmButtonPressed"); \ +static_assert(offsetof(WrestlerSystemNotificationMenu_OnConfirmButtonPressed, InButtonPressed) == 0x000000, "Member 'WrestlerSystemNotificationMenu_OnConfirmButtonPressed::InButtonPressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSystemNotificationMenu \ +static_assert(alignof(UWrestlerSystemNotificationMenu) == 0x000008, "Wrong alignment on UWrestlerSystemNotificationMenu"); \ +static_assert(sizeof(UWrestlerSystemNotificationMenu) == 0x000348, "Wrong size on UWrestlerSystemNotificationMenu"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, Title) == 0x000300, "Member 'UWrestlerSystemNotificationMenu::Title' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, Message) == 0x000308, "Member 'UWrestlerSystemNotificationMenu::Message' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, ConfirmButton) == 0x000310, "Member 'UWrestlerSystemNotificationMenu::ConfirmButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, CancelButton) == 0x000318, "Member 'UWrestlerSystemNotificationMenu::CancelButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, OnConfirmCallback) == 0x000320, "Member 'UWrestlerSystemNotificationMenu::OnConfirmCallback' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSystemNotificationMenu, OnCancelCallback) == 0x000330, "Member 'UWrestlerSystemNotificationMenu::OnCancelCallback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_AddAP \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_AddAP) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_AddAP"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_AddAP) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_AddAP"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddAP, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_AddAP::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddAP, InAPToAdd) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_AddAP::InAPToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent) == 0x000030, "Wrong size on WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent, InEventData) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent, bInOverridePooling) == 0x000028, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent::bInOverridePooling' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent, ReturnValue) == 0x000029, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForCustomEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent) == 0x000018, "Wrong size on WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent, InEventTag) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent, bInOverridePooling) == 0x000010, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent::bInOverridePooling' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent, ReturnValue) == 0x000011, "Member 'WrestlerBlueprintFunctionLibrary_AddPointsForRegisteredEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_AddXP \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_AddXP) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_AddXP"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_AddXP) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_AddXP"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddXP, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_AddXP::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_AddXP, InXPToAdd) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_AddXP::InXPToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData, InAnimationSequence) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData::InAnimationSequence' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData, ReturnValue) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_GetAnimAssetImportData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_GetRealDeltaTime \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_GetRealDeltaTime) == 0x000004, "Wrong alignment on WrestlerBlueprintFunctionLibrary_GetRealDeltaTime"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_GetRealDeltaTime) == 0x000004, "Wrong size on WrestlerBlueprintFunctionLibrary_GetRealDeltaTime"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetRealDeltaTime, ReturnValue) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_GetRealDeltaTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding) == 0x000010, "Wrong alignment on WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding) == 0x000080, "Wrong size on WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding, InSequence) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding::InSequence' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding, InBindingName) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding::InBindingName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding, OutTransform) == 0x000010, "Member 'WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding, ReturnValue) == 0x000070, "Member 'WrestlerBlueprintFunctionLibrary_GetTransformForSequenceBinding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_GetXPComponent \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_GetXPComponent) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_GetXPComponent"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_GetXPComponent) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_GetXPComponent"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetXPComponent, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_GetXPComponent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_GetXPComponent, ReturnValue) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_GetXPComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_IsActorOfClass \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_IsActorOfClass) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_IsActorOfClass"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_IsActorOfClass) == 0x000038, "Wrong size on WrestlerBlueprintFunctionLibrary_IsActorOfClass"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_IsActorOfClass, Target) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_IsActorOfClass::Target' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_IsActorOfClass, ActorType) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_IsActorOfClass::ActorType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_IsActorOfClass, ReturnValue) == 0x000030, "Member 'WrestlerBlueprintFunctionLibrary_IsActorOfClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_IsEditor \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_IsEditor) == 0x000001, "Wrong alignment on WrestlerBlueprintFunctionLibrary_IsEditor"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_IsEditor) == 0x000001, "Wrong size on WrestlerBlueprintFunctionLibrary_IsEditor"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_IsEditor, ReturnValue) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_IsEditor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_MarkActorDirty \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_MarkActorDirty) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_MarkActorDirty"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_MarkActorDirty) == 0x000008, "Wrong size on WrestlerBlueprintFunctionLibrary_MarkActorDirty"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_MarkActorDirty, InActorToMark) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_MarkActorDirty::InActorToMark' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_RealTimeDelay \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_RealTimeDelay) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_RealTimeDelay"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_RealTimeDelay) == 0x000028, "Wrong size on WrestlerBlueprintFunctionLibrary_RealTimeDelay"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_RealTimeDelay, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_RealTimeDelay::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_RealTimeDelay, Duration) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_RealTimeDelay::Duration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_RealTimeDelay, LatentInfo) == 0x000010, "Member 'WrestlerBlueprintFunctionLibrary_RealTimeDelay::LatentInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_ReimportAnimations \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_ReimportAnimations) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_ReimportAnimations"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_ReimportAnimations) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_ReimportAnimations"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_ReimportAnimations, InAnimationSequences) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_ReimportAnimations::InAnimationSequences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_ReplacePawn \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_ReplacePawn) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_ReplacePawn"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_ReplacePawn) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_ReplacePawn"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_ReplacePawn, InPlayerController) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_ReplacePawn::InPlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_ReplacePawn, InPawnClass) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_ReplacePawn::InPawnClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_SetBlockOnSlow \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_SetBlockOnSlow) == 0x000001, "Wrong alignment on WrestlerBlueprintFunctionLibrary_SetBlockOnSlow"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_SetBlockOnSlow) == 0x000001, "Wrong size on WrestlerBlueprintFunctionLibrary_SetBlockOnSlow"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_SetBlockOnSlow, Enabled) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_SetBlockOnSlow::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath) == 0x000010, "Wrong size on WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath, WorldContextObject) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath, bEnable) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_ToggleActiveQuestWaypointPath::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath \ +static_assert(alignof(WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath) == 0x000008, "Wrong alignment on WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath"); \ +static_assert(sizeof(WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath) == 0x000020, "Wrong size on WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath, InAssetImportData) == 0x000000, "Member 'WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath::InAssetImportData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath, InNewPath) == 0x000008, "Member 'WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath::InNewPath' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath, InIndex) == 0x000018, "Member 'WrestlerBlueprintFunctionLibrary_UpdateAssetImportDataSourcePath::InIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBlueprintFunctionLibrary \ +static_assert(alignof(UWrestlerBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerBlueprintFunctionLibrary"); \ +static_assert(sizeof(UWrestlerBlueprintFunctionLibrary) == 0x000028, "Wrong size on UWrestlerBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously \ +static_assert(alignof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously) == 0x000040, "Wrong size on WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously, InWorldContextObject) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously, InPathStart) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously::InPathStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously, InPathEnd) == 0x000020, "Member 'WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously::InPathEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously, ReturnValue) == 0x000038, "Member 'WrestlerAIBlueprintLibrary_FindStraightPathToLocationSynchronously::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_GetLastSeenPosition \ +static_assert(alignof(WrestlerAIBlueprintLibrary_GetLastSeenPosition) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_GetLastSeenPosition"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_GetLastSeenPosition) == 0x000020, "Wrong size on WrestlerAIBlueprintLibrary_GetLastSeenPosition"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetLastSeenPosition, FromController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_GetLastSeenPosition::FromController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetLastSeenPosition, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_GetLastSeenPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_GetLastSensedLocation \ +static_assert(alignof(WrestlerAIBlueprintLibrary_GetLastSensedLocation) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_GetLastSensedLocation"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_GetLastSensedLocation) == 0x000020, "Wrong size on WrestlerAIBlueprintLibrary_GetLastSensedLocation"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetLastSensedLocation, FromController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_GetLastSensedLocation::FromController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetLastSensedLocation, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_GetLastSensedLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_GetSeenActorByTag \ +static_assert(alignof(WrestlerAIBlueprintLibrary_GetSeenActorByTag) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_GetSeenActorByTag"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_GetSeenActorByTag) == 0x000018, "Wrong size on WrestlerAIBlueprintLibrary_GetSeenActorByTag"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetSeenActorByTag, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_GetSeenActorByTag::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetSeenActorByTag, InTag) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_GetSeenActorByTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetSeenActorByTag, ReturnValue) == 0x000010, "Member 'WrestlerAIBlueprintLibrary_GetSeenActorByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_GetTargetActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_GetTargetActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_GetTargetActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_GetTargetActor) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_GetTargetActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetTargetActor, FromController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_GetTargetActor::FromController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetTargetActor, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_GetTargetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated \ +static_assert(alignof(WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_GetTimeLastSensedLocationUpdated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_IsAwareOfActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_IsAwareOfActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_IsAwareOfActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_IsAwareOfActor) == 0x000018, "Wrong size on WrestlerAIBlueprintLibrary_IsAwareOfActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsAwareOfActor, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_IsAwareOfActor::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsAwareOfActor, InActor) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_IsAwareOfActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsAwareOfActor, ReturnValue) == 0x000010, "Member 'WrestlerAIBlueprintLibrary_IsAwareOfActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_IsDetectingActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_IsDetectingActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_IsDetectingActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_IsDetectingActor) == 0x000018, "Wrong size on WrestlerAIBlueprintLibrary_IsDetectingActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsDetectingActor, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_IsDetectingActor::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsDetectingActor, InActor) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_IsDetectingActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_IsDetectingActor, ReturnValue) == 0x000010, "Member 'WrestlerAIBlueprintLibrary_IsDetectingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_ResetAwareness \ +static_assert(alignof(WrestlerAIBlueprintLibrary_ResetAwareness) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_ResetAwareness"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_ResetAwareness) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_ResetAwareness"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetAwareness, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_ResetAwareness::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetAwareness, bInStartAtMaxAwareness) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_ResetAwareness::bInStartAtMaxAwareness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_ResetAwarenessOfActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_ResetAwarenessOfActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_ResetAwarenessOfActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_ResetAwarenessOfActor) == 0x000018, "Wrong size on WrestlerAIBlueprintLibrary_ResetAwarenessOfActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetAwarenessOfActor, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_ResetAwarenessOfActor::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetAwarenessOfActor, InActor) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_ResetAwarenessOfActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetAwarenessOfActor, bInStartAtMaxAwareness) == 0x000010, "Member 'WrestlerAIBlueprintLibrary_ResetAwarenessOfActor::bInStartAtMaxAwareness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_ResetDetection \ +static_assert(alignof(WrestlerAIBlueprintLibrary_ResetDetection) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_ResetDetection"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_ResetDetection) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_ResetDetection"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetection, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_ResetDetection::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetection, bInStartAtMaxDetection) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_ResetDetection::bInStartAtMaxDetection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_ResetDetectionOfActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_ResetDetectionOfActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_ResetDetectionOfActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_ResetDetectionOfActor) == 0x000018, "Wrong size on WrestlerAIBlueprintLibrary_ResetDetectionOfActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetectionOfActor, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_ResetDetectionOfActor::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetectionOfActor, InActor) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_ResetDetectionOfActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetectionOfActor, bInStartAtMaxDetection) == 0x000010, "Member 'WrestlerAIBlueprintLibrary_ResetDetectionOfActor::bInStartAtMaxDetection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer \ +static_assert(alignof(WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer) == 0x000008, "Wrong size on WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_ResetDetectionOfPlayer::InController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_SetOverrideTargetActor \ +static_assert(alignof(WrestlerAIBlueprintLibrary_SetOverrideTargetActor) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_SetOverrideTargetActor"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_SetOverrideTargetActor) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_SetOverrideTargetActor"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_SetOverrideTargetActor, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_SetOverrideTargetActor::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_SetOverrideTargetActor, InOverrideTargetActor) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_SetOverrideTargetActor::InOverrideTargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight \ +static_assert(alignof(WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_WasLastActiveStimulusSight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIBlueprintLibrary_WasLastStimulusSight \ +static_assert(alignof(WrestlerAIBlueprintLibrary_WasLastStimulusSight) == 0x000008, "Wrong alignment on WrestlerAIBlueprintLibrary_WasLastStimulusSight"); \ +static_assert(sizeof(WrestlerAIBlueprintLibrary_WasLastStimulusSight) == 0x000010, "Wrong size on WrestlerAIBlueprintLibrary_WasLastStimulusSight"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_WasLastStimulusSight, InController) == 0x000000, "Member 'WrestlerAIBlueprintLibrary_WasLastStimulusSight::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAIBlueprintLibrary_WasLastStimulusSight, ReturnValue) == 0x000008, "Member 'WrestlerAIBlueprintLibrary_WasLastStimulusSight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIBlueprintLibrary \ +static_assert(alignof(UWrestlerAIBlueprintLibrary) == 0x000008, "Wrong alignment on UWrestlerAIBlueprintLibrary"); \ +static_assert(sizeof(UWrestlerAIBlueprintLibrary) == 0x000028, "Wrong size on UWrestlerAIBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UQuestObjectiveEntry \ +static_assert(alignof(UQuestObjectiveEntry) == 0x000008, "Wrong alignment on UQuestObjectiveEntry"); \ +static_assert(sizeof(UQuestObjectiveEntry) == 0x000348, "Wrong size on UQuestObjectiveEntry"); \ +static_assert(offsetof(UQuestObjectiveEntry, QuestDescriptionText) == 0x000338, "Member 'UQuestObjectiveEntry::QuestDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UQuestObjectiveEntry, IconPanel) == 0x000340, "Member 'UQuestObjectiveEntry::IconPanel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputModifierIdentifier \ +static_assert(alignof(UInputModifierIdentifier) == 0x000008, "Wrong alignment on UInputModifierIdentifier"); \ +static_assert(sizeof(UInputModifierIdentifier) == 0x000048, "Wrong size on UInputModifierIdentifier"); \ +static_assert(offsetof(UInputModifierIdentifier, ID) == 0x000028, "Member 'UInputModifierIdentifier::ID' has a wrong offset!"); \ +static_assert(offsetof(UInputModifierIdentifier, DisplayName) == 0x000030, "Member 'UInputModifierIdentifier::DisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPoliceTrait \ +static_assert(alignof(UWrestlerMassPoliceTrait) == 0x000008, "Wrong alignment on UWrestlerMassPoliceTrait"); \ +static_assert(sizeof(UWrestlerMassPoliceTrait) == 0x000028, "Wrong size on UWrestlerMassPoliceTrait"); \ + +#define DUMPER7_ASSERTS_UInputModifierPriority \ +static_assert(alignof(UInputModifierPriority) == 0x000008, "Wrong alignment on UInputModifierPriority"); \ +static_assert(sizeof(UInputModifierPriority) == 0x000028, "Wrong size on UInputModifierPriority"); \ + +#define DUMPER7_ASSERTS_AWrestlerActorInteractionBase \ +static_assert(alignof(AWrestlerActorInteractionBase) == 0x000008, "Wrong alignment on AWrestlerActorInteractionBase"); \ +static_assert(sizeof(AWrestlerActorInteractionBase) == 0x0002C0, "Wrong size on AWrestlerActorInteractionBase"); \ +static_assert(offsetof(AWrestlerActorInteractionBase, Root) == 0x0002A0, "Member 'AWrestlerActorInteractionBase::Root' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerActorInteractionBase, InteractableData) == 0x0002A8, "Member 'AWrestlerActorInteractionBase::InteractableData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISpawnHelper \ +static_assert(alignof(UWrestlerAISpawnHelper) == 0x000008, "Wrong alignment on UWrestlerAISpawnHelper"); \ +static_assert(sizeof(UWrestlerAISpawnHelper) == 0x000148, "Wrong size on UWrestlerAISpawnHelper"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, SpawnedEnemies) == 0x000058, "Member 'UWrestlerAISpawnHelper::SpawnedEnemies' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, ActiveMassCharacters) == 0x000068, "Member 'UWrestlerAISpawnHelper::ActiveMassCharacters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, SuspendedEnemies) == 0x000078, "Member 'UWrestlerAISpawnHelper::SuspendedEnemies' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, AllAgents) == 0x000088, "Member 'UWrestlerAISpawnHelper::AllAgents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, SpawnerToSpawnedMap) == 0x000098, "Member 'UWrestlerAISpawnHelper::SpawnerToSpawnedMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, PendingSpawnRequests) == 0x0000E8, "Member 'UWrestlerAISpawnHelper::PendingSpawnRequests' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, PatrolRouteSubclass) == 0x000138, "Member 'UWrestlerAISpawnHelper::PatrolRouteSubclass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISpawnHelper, PatrolPointSubclass) == 0x000140, "Member 'UWrestlerAISpawnHelper::PatrolPointSubclass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovableInterface_MovableInteract \ +static_assert(alignof(WrestlerMovableInterface_MovableInteract) == 0x000008, "Wrong alignment on WrestlerMovableInterface_MovableInteract"); \ +static_assert(sizeof(WrestlerMovableInterface_MovableInteract) == 0x000040, "Wrong size on WrestlerMovableInterface_MovableInteract"); \ +static_assert(offsetof(WrestlerMovableInterface_MovableInteract, Origin) == 0x000000, "Member 'WrestlerMovableInterface_MovableInteract::Origin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovableInterface_MovableInteract, Direction) == 0x000018, "Member 'WrestlerMovableInterface_MovableInteract::Direction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovableInterface_MovableInteract, Strength) == 0x000030, "Member 'WrestlerMovableInterface_MovableInteract::Strength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovableInterface_MovableInteract, Tag) == 0x000034, "Member 'WrestlerMovableInterface_MovableInteract::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMovableInterface \ +static_assert(alignof(IWrestlerMovableInterface) == 0x000001, "Wrong alignment on IWrestlerMovableInterface"); \ +static_assert(sizeof(IWrestlerMovableInterface) == 0x000001, "Wrong size on IWrestlerMovableInterface"); \ + +#define DUMPER7_ASSERTS_InteractableQuestActor_OnAnyInteraction \ +static_assert(alignof(InteractableQuestActor_OnAnyInteraction) == 0x000008, "Wrong alignment on InteractableQuestActor_OnAnyInteraction"); \ +static_assert(sizeof(InteractableQuestActor_OnAnyInteraction) == 0x000008, "Wrong size on InteractableQuestActor_OnAnyInteraction"); \ +static_assert(offsetof(InteractableQuestActor_OnAnyInteraction, InInteractingActor) == 0x000000, "Member 'InteractableQuestActor_OnAnyInteraction::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractableQuestActor_OnAnyInteractionEnded \ +static_assert(alignof(InteractableQuestActor_OnAnyInteractionEnded) == 0x000008, "Wrong alignment on InteractableQuestActor_OnAnyInteractionEnded"); \ +static_assert(sizeof(InteractableQuestActor_OnAnyInteractionEnded) == 0x000008, "Wrong size on InteractableQuestActor_OnAnyInteractionEnded"); \ +static_assert(offsetof(InteractableQuestActor_OnAnyInteractionEnded, InInteractingActor) == 0x000000, "Member 'InteractableQuestActor_OnAnyInteractionEnded::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractableQuestActor_OnInteractionEnded \ +static_assert(alignof(InteractableQuestActor_OnInteractionEnded) == 0x000008, "Wrong alignment on InteractableQuestActor_OnInteractionEnded"); \ +static_assert(sizeof(InteractableQuestActor_OnInteractionEnded) == 0x000008, "Wrong size on InteractableQuestActor_OnInteractionEnded"); \ +static_assert(offsetof(InteractableQuestActor_OnInteractionEnded, InInteractingActor) == 0x000000, "Member 'InteractableQuestActor_OnInteractionEnded::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractableQuestActor_OnInteractionPerformed \ +static_assert(alignof(InteractableQuestActor_OnInteractionPerformed) == 0x000008, "Wrong alignment on InteractableQuestActor_OnInteractionPerformed"); \ +static_assert(sizeof(InteractableQuestActor_OnInteractionPerformed) == 0x000008, "Wrong size on InteractableQuestActor_OnInteractionPerformed"); \ +static_assert(offsetof(InteractableQuestActor_OnInteractionPerformed, InInteractingActor) == 0x000000, "Member 'InteractableQuestActor_OnInteractionPerformed::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AInteractableQuestActor \ +static_assert(alignof(AInteractableQuestActor) == 0x000008, "Wrong alignment on AInteractableQuestActor"); \ +static_assert(sizeof(AInteractableQuestActor) == 0x0002F8, "Wrong size on AInteractableQuestActor"); \ +static_assert(offsetof(AInteractableQuestActor, MissionComponent) == 0x0002C8, "Member 'AInteractableQuestActor::MissionComponent' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, PersistentState) == 0x0002D0, "Member 'AInteractableQuestActor::PersistentState' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, ItemState) == 0x0002D8, "Member 'AInteractableQuestActor::ItemState' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, InteractType) == 0x0002D9, "Member 'AInteractableQuestActor::InteractType' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, ObjectiveToUpdate) == 0x0002E0, "Member 'AInteractableQuestActor::ObjectiveToUpdate' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, OnInteractEndObjective) == 0x0002E8, "Member 'AInteractableQuestActor::OnInteractEndObjective' has a wrong offset!"); \ +static_assert(offsetof(AInteractableQuestActor, bShouldSetUsed) == 0x0002F0, "Member 'AInteractableQuestActor::bShouldSetUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_SightBase \ +static_assert(alignof(UWrestlerAISenseConfig_SightBase) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_SightBase"); \ +static_assert(sizeof(UWrestlerAISenseConfig_SightBase) == 0x000058, "Wrong size on UWrestlerAISenseConfig_SightBase"); \ +static_assert(offsetof(UWrestlerAISenseConfig_SightBase, DetectionByAffiliation) == 0x000048, "Member 'UWrestlerAISenseConfig_SightBase::DetectionByAffiliation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_SightBase, EyesViewPointSocketName) == 0x00004C, "Member 'UWrestlerAISenseConfig_SightBase::EyesViewPointSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_VisionCone \ +static_assert(alignof(UWrestlerAISenseConfig_VisionCone) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_VisionCone"); \ +static_assert(sizeof(UWrestlerAISenseConfig_VisionCone) == 0x000078, "Wrong size on UWrestlerAISenseConfig_VisionCone"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, Implementation) == 0x000058, "Member 'UWrestlerAISenseConfig_VisionCone::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, SightRadius) == 0x000060, "Member 'UWrestlerAISenseConfig_VisionCone::SightRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, LoseSightRadius) == 0x000064, "Member 'UWrestlerAISenseConfig_VisionCone::LoseSightRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, PeripheralVisionAngleDegrees) == 0x000068, "Member 'UWrestlerAISenseConfig_VisionCone::PeripheralVisionAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, AutoSuccessRangeFromLastSeenLocation) == 0x00006C, "Member 'UWrestlerAISenseConfig_VisionCone::AutoSuccessRangeFromLastSeenLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, PointOfViewBackwardOffset) == 0x000070, "Member 'UWrestlerAISenseConfig_VisionCone::PointOfViewBackwardOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_VisionCone, NearClippingRadius) == 0x000074, "Member 'UWrestlerAISenseConfig_VisionCone::NearClippingRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MultiactionWidget_SetOverrideIconForIndex \ +static_assert(alignof(MultiactionWidget_SetOverrideIconForIndex) == 0x000010, "Wrong alignment on MultiactionWidget_SetOverrideIconForIndex"); \ +static_assert(sizeof(MultiactionWidget_SetOverrideIconForIndex) == 0x0000E0, "Wrong size on MultiactionWidget_SetOverrideIconForIndex"); \ +static_assert(offsetof(MultiactionWidget_SetOverrideIconForIndex, Brush) == 0x000000, "Member 'MultiactionWidget_SetOverrideIconForIndex::Brush' has a wrong offset!"); \ +static_assert(offsetof(MultiactionWidget_SetOverrideIconForIndex, Index_0) == 0x0000D0, "Member 'MultiactionWidget_SetOverrideIconForIndex::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiactionWidget \ +static_assert(alignof(UMultiactionWidget) == 0x000008, "Wrong alignment on UMultiactionWidget"); \ +static_assert(sizeof(UMultiactionWidget) == 0x0002F8, "Wrong size on UMultiactionWidget"); \ +static_assert(offsetof(UMultiactionWidget, Keys) == 0x0002E8, "Member 'UMultiactionWidget::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassTransformAndVelocitySyncTrait \ +static_assert(alignof(UWrestlerMassTransformAndVelocitySyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassTransformAndVelocitySyncTrait"); \ +static_assert(sizeof(UWrestlerMassTransformAndVelocitySyncTrait) == 0x000030, "Wrong size on UWrestlerMassTransformAndVelocitySyncTrait"); \ + +#define DUMPER7_ASSERTS_TutorialAssetMap_GetIconIDs \ +static_assert(alignof(TutorialAssetMap_GetIconIDs) == 0x000008, "Wrong alignment on TutorialAssetMap_GetIconIDs"); \ +static_assert(sizeof(TutorialAssetMap_GetIconIDs) == 0x000010, "Wrong size on TutorialAssetMap_GetIconIDs"); \ +static_assert(offsetof(TutorialAssetMap_GetIconIDs, ReturnValue) == 0x000000, "Member 'TutorialAssetMap_GetIconIDs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTutorialAssetMap \ +static_assert(alignof(UTutorialAssetMap) == 0x000008, "Wrong alignment on UTutorialAssetMap"); \ +static_assert(sizeof(UTutorialAssetMap) == 0x000088, "Wrong size on UTutorialAssetMap"); \ +static_assert(offsetof(UTutorialAssetMap, TutorialMap) == 0x000030, "Member 'UTutorialAssetMap::TutorialMap' has a wrong offset!"); \ +static_assert(offsetof(UTutorialAssetMap, Icons) == 0x000080, "Member 'UTutorialAssetMap::Icons' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockCodexAndMilestoneTask_AddPoints \ +static_assert(alignof(UnlockCodexAndMilestoneTask_AddPoints) == 0x000004, "Wrong alignment on UnlockCodexAndMilestoneTask_AddPoints"); \ +static_assert(sizeof(UnlockCodexAndMilestoneTask_AddPoints) == 0x000004, "Wrong size on UnlockCodexAndMilestoneTask_AddPoints"); \ +static_assert(offsetof(UnlockCodexAndMilestoneTask_AddPoints, InPoints) == 0x000000, "Member 'UnlockCodexAndMilestoneTask_AddPoints::InPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockCodexAndMilestoneTask_AddXPPoints \ +static_assert(alignof(UnlockCodexAndMilestoneTask_AddXPPoints) == 0x000004, "Wrong alignment on UnlockCodexAndMilestoneTask_AddXPPoints"); \ +static_assert(sizeof(UnlockCodexAndMilestoneTask_AddXPPoints) == 0x000008, "Wrong size on UnlockCodexAndMilestoneTask_AddXPPoints"); \ +static_assert(offsetof(UnlockCodexAndMilestoneTask_AddXPPoints, InXPGameTag) == 0x000000, "Member 'UnlockCodexAndMilestoneTask_AddXPPoints::InXPGameTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockCodexAndMilestoneTask_GetCodexVariable \ +static_assert(alignof(UnlockCodexAndMilestoneTask_GetCodexVariable) == 0x000008, "Wrong alignment on UnlockCodexAndMilestoneTask_GetCodexVariable"); \ +static_assert(sizeof(UnlockCodexAndMilestoneTask_GetCodexVariable) == 0x000010, "Wrong size on UnlockCodexAndMilestoneTask_GetCodexVariable"); \ +static_assert(offsetof(UnlockCodexAndMilestoneTask_GetCodexVariable, ReturnValue) == 0x000000, "Member 'UnlockCodexAndMilestoneTask_GetCodexVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockCodexAndMilestoneTask_UnlockCodex \ +static_assert(alignof(UnlockCodexAndMilestoneTask_UnlockCodex) == 0x000008, "Wrong alignment on UnlockCodexAndMilestoneTask_UnlockCodex"); \ +static_assert(sizeof(UnlockCodexAndMilestoneTask_UnlockCodex) == 0x000010, "Wrong size on UnlockCodexAndMilestoneTask_UnlockCodex"); \ +static_assert(offsetof(UnlockCodexAndMilestoneTask_UnlockCodex, InCodexProperty) == 0x000000, "Member 'UnlockCodexAndMilestoneTask_UnlockCodex::InCodexProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnlockCodexAndMilestoneTask \ +static_assert(alignof(UUnlockCodexAndMilestoneTask) == 0x000008, "Wrong alignment on UUnlockCodexAndMilestoneTask"); \ +static_assert(sizeof(UUnlockCodexAndMilestoneTask) == 0x000098, "Wrong size on UUnlockCodexAndMilestoneTask"); \ +static_assert(offsetof(UUnlockCodexAndMilestoneTask, CodexProperty) == 0x000088, "Member 'UUnlockCodexAndMilestoneTask::CodexProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAnimInterface_GetAnimDataAsset \ +static_assert(alignof(WrestlerAnimInterface_GetAnimDataAsset) == 0x000008, "Wrong alignment on WrestlerAnimInterface_GetAnimDataAsset"); \ +static_assert(sizeof(WrestlerAnimInterface_GetAnimDataAsset) == 0x000008, "Wrong size on WrestlerAnimInterface_GetAnimDataAsset"); \ +static_assert(offsetof(WrestlerAnimInterface_GetAnimDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerAnimInterface_GetAnimDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAnimInterface_GetMontage \ +static_assert(alignof(WrestlerAnimInterface_GetMontage) == 0x000008, "Wrong alignment on WrestlerAnimInterface_GetMontage"); \ +static_assert(sizeof(WrestlerAnimInterface_GetMontage) == 0x000010, "Wrong size on WrestlerAnimInterface_GetMontage"); \ +static_assert(offsetof(WrestlerAnimInterface_GetMontage, GameplayTag) == 0x000000, "Member 'WrestlerAnimInterface_GetMontage::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAnimInterface_GetMontage, ReturnValue) == 0x000008, "Member 'WrestlerAnimInterface_GetMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAnimInterface_SetCurrentAnimState \ +static_assert(alignof(WrestlerAnimInterface_SetCurrentAnimState) == 0x000001, "Wrong alignment on WrestlerAnimInterface_SetCurrentAnimState"); \ +static_assert(sizeof(WrestlerAnimInterface_SetCurrentAnimState) == 0x000001, "Wrong size on WrestlerAnimInterface_SetCurrentAnimState"); \ +static_assert(offsetof(WrestlerAnimInterface_SetCurrentAnimState, NewState) == 0x000000, "Member 'WrestlerAnimInterface_SetCurrentAnimState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerAnimInterface \ +static_assert(alignof(IWrestlerAnimInterface) == 0x000001, "Wrong alignment on IWrestlerAnimInterface"); \ +static_assert(sizeof(IWrestlerAnimInterface) == 0x000001, "Wrong size on IWrestlerAnimInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerSpawnEnemyAutomataTask_OnEnemySpawned \ +static_assert(alignof(WrestlerSpawnEnemyAutomataTask_OnEnemySpawned) == 0x000008, "Wrong alignment on WrestlerSpawnEnemyAutomataTask_OnEnemySpawned"); \ +static_assert(sizeof(WrestlerSpawnEnemyAutomataTask_OnEnemySpawned) == 0x0000D0, "Wrong size on WrestlerSpawnEnemyAutomataTask_OnEnemySpawned"); \ +static_assert(offsetof(WrestlerSpawnEnemyAutomataTask_OnEnemySpawned, InSpawnData) == 0x000000, "Member 'WrestlerSpawnEnemyAutomataTask_OnEnemySpawned::InSpawnData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSpawnEnemyAutomataTask_OnEnemySpawned, InAISpawner) == 0x0000C8, "Member 'WrestlerSpawnEnemyAutomataTask_OnEnemySpawned::InAISpawner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSpawnEnemyAutomataTask \ +static_assert(alignof(UWrestlerSpawnEnemyAutomataTask) == 0x000008, "Wrong alignment on UWrestlerSpawnEnemyAutomataTask"); \ +static_assert(sizeof(UWrestlerSpawnEnemyAutomataTask) == 0x0000C8, "Wrong size on UWrestlerSpawnEnemyAutomataTask"); \ +static_assert(offsetof(UWrestlerSpawnEnemyAutomataTask, SpawnList) == 0x000088, "Member 'UWrestlerSpawnEnemyAutomataTask::SpawnList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSpawnEnemyAutomataTask, TaskCompleteObjective) == 0x000098, "Member 'UWrestlerSpawnEnemyAutomataTask::TaskCompleteObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSpawnEnemyAutomataTask, TagsToApply) == 0x0000A0, "Member 'UWrestlerSpawnEnemyAutomataTask::TagsToApply' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBreakable_OnBroken \ +static_assert(alignof(WrestlerBreakable_OnBroken) == 0x000008, "Wrong alignment on WrestlerBreakable_OnBroken"); \ +static_assert(sizeof(WrestlerBreakable_OnBroken) == 0x000010, "Wrong size on WrestlerBreakable_OnBroken"); \ +static_assert(offsetof(WrestlerBreakable_OnBroken, InEventInstigator) == 0x000000, "Member 'WrestlerBreakable_OnBroken::InEventInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBreakable_OnBroken, InDamageCauser) == 0x000008, "Member 'WrestlerBreakable_OnBroken::InDamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerBreakable \ +static_assert(alignof(AWrestlerBreakable) == 0x000008, "Wrong alignment on AWrestlerBreakable"); \ +static_assert(sizeof(AWrestlerBreakable) == 0x000320, "Wrong size on AWrestlerBreakable"); \ +static_assert(offsetof(AWrestlerBreakable, BreakableMesh) == 0x000298, "Member 'AWrestlerBreakable::BreakableMesh' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBreakable, BrokenMesh) == 0x0002A0, "Member 'AWrestlerBreakable::BrokenMesh' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBreakable, BreakOnDamageTypes) == 0x0002C8, "Member 'AWrestlerBreakable::BreakOnDamageTypes' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBreakable, BreakNoiseLoudness) == 0x000318, "Member 'AWrestlerBreakable::BreakNoiseLoudness' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBreakable, BreakNoiseRange) == 0x00031C, "Member 'AWrestlerBreakable::BreakNoiseRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUWrestlerSpawnSquadAutomataTask \ +static_assert(alignof(UUWrestlerSpawnSquadAutomataTask) == 0x000008, "Wrong alignment on UUWrestlerSpawnSquadAutomataTask"); \ +static_assert(sizeof(UUWrestlerSpawnSquadAutomataTask) == 0x0000F8, "Wrong size on UUWrestlerSpawnSquadAutomataTask"); \ +static_assert(offsetof(UUWrestlerSpawnSquadAutomataTask, Leader) == 0x0000C8, "Member 'UUWrestlerSpawnSquadAutomataTask::Leader' has a wrong offset!"); \ +static_assert(offsetof(UUWrestlerSpawnSquadAutomataTask, SquadIdTag) == 0x0000F0, "Member 'UUWrestlerSpawnSquadAutomataTask::SquadIdTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWAD_SoaringLeap_LevelConfig \ +static_assert(alignof(UWAD_SoaringLeap_LevelConfig) == 0x000008, "Wrong alignment on UWAD_SoaringLeap_LevelConfig"); \ +static_assert(sizeof(UWAD_SoaringLeap_LevelConfig) == 0x000198, "Wrong size on UWAD_SoaringLeap_LevelConfig"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, FearDuration) == 0x000030, "Member 'UWAD_SoaringLeap_LevelConfig::FearDuration' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, FearStrength) == 0x000034, "Member 'UWAD_SoaringLeap_LevelConfig::FearStrength' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, MasqueradeLevel) == 0x000038, "Member 'UWAD_SoaringLeap_LevelConfig::MasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, JumpDistance) == 0x00003C, "Member 'UWAD_SoaringLeap_LevelConfig::JumpDistance' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, JumpHeight) == 0x000040, "Member 'UWAD_SoaringLeap_LevelConfig::JumpHeight' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, JumpDuration) == 0x000044, "Member 'UWAD_SoaringLeap_LevelConfig::JumpDuration' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, JumpMontage) == 0x000048, "Member 'UWAD_SoaringLeap_LevelConfig::JumpMontage' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, JumpMontageSection) == 0x000050, "Member 'UWAD_SoaringLeap_LevelConfig::JumpMontageSection' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, OnJumpStartCues) == 0x000058, "Member 'UWAD_SoaringLeap_LevelConfig::OnJumpStartCues' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingDelay) == 0x000078, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingDelay' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingDuration) == 0x00007C, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingDuration' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingSphereRadius) == 0x000080, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingSphereRadius' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingTimeDilation) == 0x000084, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingSearchAngle) == 0x000088, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingSearchAngle' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, TargetingCameraYawCurve) == 0x000090, "Member 'UWAD_SoaringLeap_LevelConfig::TargetingCameraYawCurve' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, MoveToData) == 0x000098, "Member 'UWAD_SoaringLeap_LevelConfig::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, AimAssistStrength) == 0x000120, "Member 'UWAD_SoaringLeap_LevelConfig::AimAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, LandMontageSection) == 0x000124, "Member 'UWAD_SoaringLeap_LevelConfig::LandMontageSection' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, OnJumpLandCues) == 0x000130, "Member 'UWAD_SoaringLeap_LevelConfig::OnJumpLandCues' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, DamageEffect) == 0x000150, "Member 'UWAD_SoaringLeap_LevelConfig::DamageEffect' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, DamageLevel) == 0x000158, "Member 'UWAD_SoaringLeap_LevelConfig::DamageLevel' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, ReactionEventTag) == 0x00015C, "Member 'UWAD_SoaringLeap_LevelConfig::ReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, OnDamageCues) == 0x000168, "Member 'UWAD_SoaringLeap_LevelConfig::OnDamageCues' has a wrong offset!"); \ +static_assert(offsetof(UWAD_SoaringLeap_LevelConfig, OnDamageExtraGameplayEffects) == 0x000188, "Member 'UWAD_SoaringLeap_LevelConfig::OnDamageExtraGameplayEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityBloodExecution \ +static_assert(alignof(UWrestlerAbilityBloodExecution) == 0x000008, "Wrong alignment on UWrestlerAbilityBloodExecution"); \ +static_assert(sizeof(UWrestlerAbilityBloodExecution) == 0x000040, "Wrong size on UWrestlerAbilityBloodExecution"); \ + +#define DUMPER7_ASSERTS_UWrestlerAssetManager \ +static_assert(alignof(UWrestlerAssetManager) == 0x000008, "Wrong alignment on UWrestlerAssetManager"); \ +static_assert(sizeof(UWrestlerAssetManager) == 0x0004D0, "Wrong size on UWrestlerAssetManager"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassQueuedSmartObjectIntalizer \ +static_assert(alignof(UWrestlerMassQueuedSmartObjectIntalizer) == 0x000008, "Wrong alignment on UWrestlerMassQueuedSmartObjectIntalizer"); \ +static_assert(sizeof(UWrestlerMassQueuedSmartObjectIntalizer) == 0x000370, "Wrong size on UWrestlerMassQueuedSmartObjectIntalizer"); \ + +#define DUMPER7_ASSERTS_IWrestlerMassPoolableInterface \ +static_assert(alignof(IWrestlerMassPoolableInterface) == 0x000001, "Wrong alignment on IWrestlerMassPoolableInterface"); \ +static_assert(sizeof(IWrestlerMassPoolableInterface) == 0x000001, "Wrong size on IWrestlerMassPoolableInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Sight \ +static_assert(alignof(UWrestlerAISense_Sight) == 0x000008, "Wrong alignment on UWrestlerAISense_Sight"); \ +static_assert(sizeof(UWrestlerAISense_Sight) == 0x000178, "Wrong size on UWrestlerAISense_Sight"); \ +static_assert(offsetof(UWrestlerAISense_Sight, SightEvents) == 0x000078, "Member 'UWrestlerAISense_Sight::SightEvents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, MaxTracesPerTick) == 0x000088, "Member 'UWrestlerAISense_Sight::MaxTracesPerTick' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, MinQueriesPerTimeSliceCheck) == 0x00008C, "Member 'UWrestlerAISense_Sight::MinQueriesPerTimeSliceCheck' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, MaxTimeSlicePerTick) == 0x000090, "Member 'UWrestlerAISense_Sight::MaxTimeSlicePerTick' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, HighImportanceQueryDistanceThreshold) == 0x000098, "Member 'UWrestlerAISense_Sight::HighImportanceQueryDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, MaxQueryImportance) == 0x0000A0, "Member 'UWrestlerAISense_Sight::MaxQueryImportance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Sight, SightLimitQueryImportance) == 0x0000A4, "Member 'UWrestlerAISense_Sight::SightLimitQueryImportance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityConfigDataAsset_GetMagnitude \ +static_assert(alignof(WrestlerAbilityConfigDataAsset_GetMagnitude) == 0x000004, "Wrong alignment on WrestlerAbilityConfigDataAsset_GetMagnitude"); \ +static_assert(sizeof(WrestlerAbilityConfigDataAsset_GetMagnitude) == 0x000010, "Wrong size on WrestlerAbilityConfigDataAsset_GetMagnitude"); \ +static_assert(offsetof(WrestlerAbilityConfigDataAsset_GetMagnitude, MagnitudeTag) == 0x000000, "Member 'WrestlerAbilityConfigDataAsset_GetMagnitude::MagnitudeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityConfigDataAsset_GetMagnitude, AbilityLevel) == 0x000008, "Member 'WrestlerAbilityConfigDataAsset_GetMagnitude::AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityConfigDataAsset_GetMagnitude, ReturnValue) == 0x00000C, "Member 'WrestlerAbilityConfigDataAsset_GetMagnitude::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityConfigDataAsset \ +static_assert(alignof(UWrestlerAbilityConfigDataAsset) == 0x000008, "Wrong alignment on UWrestlerAbilityConfigDataAsset"); \ +static_assert(sizeof(UWrestlerAbilityConfigDataAsset) == 0x0001C0, "Wrong size on UWrestlerAbilityConfigDataAsset"); \ +static_assert(offsetof(UWrestlerAbilityConfigDataAsset, MagnitudesContainer) == 0x000030, "Member 'UWrestlerAbilityConfigDataAsset::MagnitudesContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityConfigDataAsset, EffectsModifiersOnActivateAbility) == 0x000080, "Member 'UWrestlerAbilityConfigDataAsset::EffectsModifiersOnActivateAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityConfigDataAsset, EffectsModifiersAtTheEndAbility) == 0x0000D0, "Member 'UWrestlerAbilityConfigDataAsset::EffectsModifiersAtTheEndAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityConfigDataAsset, EffectsModifiersAtAbilityCancelled) == 0x000120, "Member 'UWrestlerAbilityConfigDataAsset::EffectsModifiersAtAbilityCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityConfigDataAsset, EffectsModifiersOnEvent) == 0x000170, "Member 'UWrestlerAbilityConfigDataAsset::EffectsModifiersOnEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassGameplayTagsTrait \ +static_assert(alignof(UWrestlerMassGameplayTagsTrait) == 0x000008, "Wrong alignment on UWrestlerMassGameplayTagsTrait"); \ +static_assert(sizeof(UWrestlerMassGameplayTagsTrait) == 0x000038, "Wrong size on UWrestlerMassGameplayTagsTrait"); \ +static_assert(offsetof(UWrestlerMassGameplayTagsTrait, InitialTags) == 0x000028, "Member 'UWrestlerMassGameplayTagsTrait::InitialTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityDeadZoneSetup \ +static_assert(alignof(UWrestlerAbilityDeadZoneSetup) == 0x000008, "Wrong alignment on UWrestlerAbilityDeadZoneSetup"); \ +static_assert(sizeof(UWrestlerAbilityDeadZoneSetup) == 0x000070, "Wrong size on UWrestlerAbilityDeadZoneSetup"); \ +static_assert(offsetof(UWrestlerAbilityDeadZoneSetup, AbilityTagToBlock) == 0x000030, "Member 'UWrestlerAbilityDeadZoneSetup::AbilityTagToBlock' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDeadZoneSetup, AbilityTagToCancel) == 0x000050, "Member 'UWrestlerAbilityDeadZoneSetup::AbilityTagToCancel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityDebugSettings \ +static_assert(alignof(UWrestlerAbilityDebugSettings) == 0x000008, "Wrong alignment on UWrestlerAbilityDebugSettings"); \ +static_assert(sizeof(UWrestlerAbilityDebugSettings) == 0x000040, "Wrong size on UWrestlerAbilityDebugSettings"); \ +static_assert(offsetof(UWrestlerAbilityDebugSettings, bIsAbilityCostDisabled) == 0x000038, "Member 'UWrestlerAbilityDebugSettings::bIsAbilityCostDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingsBase \ +static_assert(alignof(UWrestlerSettingsBase) == 0x000008, "Wrong alignment on UWrestlerSettingsBase"); \ +static_assert(sizeof(UWrestlerSettingsBase) == 0x000048, "Wrong size on UWrestlerSettingsBase"); \ +static_assert(offsetof(UWrestlerSettingsBase, ManagedConfigAssets) == 0x000038, "Member 'UWrestlerSettingsBase::ManagedConfigAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_Get \ +static_assert(alignof(WrestlerSettingsLocal_Get) == 0x000008, "Wrong alignment on WrestlerSettingsLocal_Get"); \ +static_assert(sizeof(WrestlerSettingsLocal_Get) == 0x000008, "Wrong size on WrestlerSettingsLocal_Get"); \ +static_assert(offsetof(WrestlerSettingsLocal_Get, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_RunAutoBenchmark \ +static_assert(alignof(WrestlerSettingsLocal_RunAutoBenchmark) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_RunAutoBenchmark"); \ +static_assert(sizeof(WrestlerSettingsLocal_RunAutoBenchmark) == 0x000001, "Wrong size on WrestlerSettingsLocal_RunAutoBenchmark"); \ +static_assert(offsetof(WrestlerSettingsLocal_RunAutoBenchmark, bSaveImmediately) == 0x000000, "Member 'WrestlerSettingsLocal_RunAutoBenchmark::bSaveImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetAMDFSREnabled \ +static_assert(alignof(WrestlerSettingsLocal_SetAMDFSREnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_SetAMDFSREnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetAMDFSREnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_SetAMDFSREnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetAMDFSREnabled, bInEnabled) == 0x000000, "Member 'WrestlerSettingsLocal_SetAMDFSREnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled \ +static_assert(alignof(WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled, bInEnabled) == 0x000000, "Member 'WrestlerSettingsLocal_SetAMDFSRFrameGenerationEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetAMDFSRQuality \ +static_assert(alignof(WrestlerSettingsLocal_SetAMDFSRQuality) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetAMDFSRQuality"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetAMDFSRQuality) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetAMDFSRQuality"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetAMDFSRQuality, InQuality) == 0x000000, "Member 'WrestlerSettingsLocal_SetAMDFSRQuality::InQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix \ +static_assert(alignof(WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix) == 0x000008, "Wrong alignment on WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix) == 0x000010, "Wrong size on WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix, InDesiredSuffix) == 0x000000, "Member 'WrestlerSettingsLocal_SetDesiredDeviceProfileQualitySuffix::InDesiredSuffix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetFrameRateLimit_Always \ +static_assert(alignof(WrestlerSettingsLocal_SetFrameRateLimit_Always) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetFrameRateLimit_Always"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetFrameRateLimit_Always) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetFrameRateLimit_Always"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetFrameRateLimit_Always, InNewLimitFPS) == 0x000000, "Member 'WrestlerSettingsLocal_SetFrameRateLimit_Always::InNewLimitFPS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetFrameRateLimit_InMenu \ +static_assert(alignof(WrestlerSettingsLocal_SetFrameRateLimit_InMenu) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetFrameRateLimit_InMenu"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetFrameRateLimit_InMenu) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetFrameRateLimit_InMenu"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetFrameRateLimit_InMenu, InNewLimitFPS) == 0x000000, "Member 'WrestlerSettingsLocal_SetFrameRateLimit_InMenu::InNewLimitFPS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded \ +static_assert(alignof(WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded, InNewLimitFPS) == 0x000000, "Member 'WrestlerSettingsLocal_SetFrameRateLimit_WhenBackgrounded::InNewLimitFPS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetIsEulaLocalDisplayed \ +static_assert(alignof(WrestlerSettingsLocal_SetIsEulaLocalDisplayed) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_SetIsEulaLocalDisplayed"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetIsEulaLocalDisplayed) == 0x000001, "Wrong size on WrestlerSettingsLocal_SetIsEulaLocalDisplayed"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetIsEulaLocalDisplayed, bInDisplayed) == 0x000000, "Member 'WrestlerSettingsLocal_SetIsEulaLocalDisplayed::bInDisplayed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetNvidiaDLSSEnabled \ +static_assert(alignof(WrestlerSettingsLocal_SetNvidiaDLSSEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_SetNvidiaDLSSEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetNvidiaDLSSEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_SetNvidiaDLSSEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetNvidiaDLSSEnabled, bInEnabled) == 0x000000, "Member 'WrestlerSettingsLocal_SetNvidiaDLSSEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode \ +static_assert(alignof(WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode, InMode) == 0x000000, "Member 'WrestlerSettingsLocal_SetNvidiaDLSSFrameGenerationMode::InMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetNvidiaDLSSMode \ +static_assert(alignof(WrestlerSettingsLocal_SetNvidiaDLSSMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetNvidiaDLSSMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetNvidiaDLSSMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetNvidiaDLSSMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetNvidiaDLSSMode, InMode) == 0x000000, "Member 'WrestlerSettingsLocal_SetNvidiaDLSSMode::InMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetNvidiaFrameWarp \ +static_assert(alignof(WrestlerSettingsLocal_SetNvidiaFrameWarp) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_SetNvidiaFrameWarp"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetNvidiaFrameWarp) == 0x000001, "Wrong size on WrestlerSettingsLocal_SetNvidiaFrameWarp"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetNvidiaFrameWarp, bEnabled) == 0x000000, "Member 'WrestlerSettingsLocal_SetNvidiaFrameWarp::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_SetNvidiaReflexMode \ +static_assert(alignof(WrestlerSettingsLocal_SetNvidiaReflexMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_SetNvidiaReflexMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_SetNvidiaReflexMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_SetNvidiaReflexMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_SetNvidiaReflexMode, InMode) == 0x000000, "Member 'WrestlerSettingsLocal_SetNvidiaReflexMode::InMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_CanRunAutoBenchmark \ +static_assert(alignof(WrestlerSettingsLocal_CanRunAutoBenchmark) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_CanRunAutoBenchmark"); \ +static_assert(sizeof(WrestlerSettingsLocal_CanRunAutoBenchmark) == 0x000001, "Wrong size on WrestlerSettingsLocal_CanRunAutoBenchmark"); \ +static_assert(offsetof(WrestlerSettingsLocal_CanRunAutoBenchmark, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_CanRunAutoBenchmark::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetAMDFSRQuality \ +static_assert(alignof(WrestlerSettingsLocal_GetAMDFSRQuality) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetAMDFSRQuality"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetAMDFSRQuality) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetAMDFSRQuality"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetAMDFSRQuality, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetAMDFSRQuality::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix \ +static_assert(alignof(WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix) == 0x000008, "Wrong alignment on WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix) == 0x000010, "Wrong size on WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetDesiredDeviceProfileQualitySuffix::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetFrameRateLimit_Always \ +static_assert(alignof(WrestlerSettingsLocal_GetFrameRateLimit_Always) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetFrameRateLimit_Always"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetFrameRateLimit_Always) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetFrameRateLimit_Always"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetFrameRateLimit_Always, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetFrameRateLimit_Always::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetFrameRateLimit_InMenu \ +static_assert(alignof(WrestlerSettingsLocal_GetFrameRateLimit_InMenu) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetFrameRateLimit_InMenu"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetFrameRateLimit_InMenu) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetFrameRateLimit_InMenu"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetFrameRateLimit_InMenu, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetFrameRateLimit_InMenu::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded \ +static_assert(alignof(WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetFrameRateLimit_WhenBackgrounded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetIsEulaLocalDisplayed \ +static_assert(alignof(WrestlerSettingsLocal_GetIsEulaLocalDisplayed) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_GetIsEulaLocalDisplayed"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetIsEulaLocalDisplayed) == 0x000001, "Wrong size on WrestlerSettingsLocal_GetIsEulaLocalDisplayed"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetIsEulaLocalDisplayed, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetIsEulaLocalDisplayed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode \ +static_assert(alignof(WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetNvidiaDLSSFrameGenerationMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetNvidiaDLSSMode \ +static_assert(alignof(WrestlerSettingsLocal_GetNvidiaDLSSMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetNvidiaDLSSMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetNvidiaDLSSMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetNvidiaDLSSMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetNvidiaDLSSMode, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetNvidiaDLSSMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetNvidiaFrameWarp \ +static_assert(alignof(WrestlerSettingsLocal_GetNvidiaFrameWarp) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_GetNvidiaFrameWarp"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetNvidiaFrameWarp) == 0x000001, "Wrong size on WrestlerSettingsLocal_GetNvidiaFrameWarp"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetNvidiaFrameWarp, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetNvidiaFrameWarp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_GetNvidiaReflexMode \ +static_assert(alignof(WrestlerSettingsLocal_GetNvidiaReflexMode) == 0x000004, "Wrong alignment on WrestlerSettingsLocal_GetNvidiaReflexMode"); \ +static_assert(sizeof(WrestlerSettingsLocal_GetNvidiaReflexMode) == 0x000004, "Wrong size on WrestlerSettingsLocal_GetNvidiaReflexMode"); \ +static_assert(offsetof(WrestlerSettingsLocal_GetNvidiaReflexMode, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_GetNvidiaReflexMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_IsAMDFSREnabled \ +static_assert(alignof(WrestlerSettingsLocal_IsAMDFSREnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_IsAMDFSREnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_IsAMDFSREnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_IsAMDFSREnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_IsAMDFSREnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_IsAMDFSREnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled \ +static_assert(alignof(WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_IsAMDFSRFrameGenerationEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_IsNvidiaDLSSEnabled \ +static_assert(alignof(WrestlerSettingsLocal_IsNvidiaDLSSEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_IsNvidiaDLSSEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_IsNvidiaDLSSEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_IsNvidiaDLSSEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_IsNvidiaDLSSEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_IsNvidiaDLSSEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled \ +static_assert(alignof(WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_IsNvidiaDLSSFrameGenerationEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_IsNvidiaReflexEnabled \ +static_assert(alignof(WrestlerSettingsLocal_IsNvidiaReflexEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_IsNvidiaReflexEnabled"); \ +static_assert(sizeof(WrestlerSettingsLocal_IsNvidiaReflexEnabled) == 0x000001, "Wrong size on WrestlerSettingsLocal_IsNvidiaReflexEnabled"); \ +static_assert(offsetof(WrestlerSettingsLocal_IsNvidiaReflexEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_IsNvidiaReflexEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup \ +static_assert(alignof(WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup) == 0x000001, "Wrong alignment on WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup"); \ +static_assert(sizeof(WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup) == 0x000001, "Wrong size on WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup"); \ +static_assert(offsetof(WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup, ReturnValue) == 0x000000, "Member 'WrestlerSettingsLocal_ShouldRunAutoBenchmarkAtStartup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingsLocal \ +static_assert(alignof(UWrestlerSettingsLocal) == 0x000008, "Wrong alignment on UWrestlerSettingsLocal"); \ +static_assert(sizeof(UWrestlerSettingsLocal) == 0x000220, "Wrong size on UWrestlerSettingsLocal"); \ +static_assert(offsetof(UWrestlerSettingsLocal, FrameRateLimit_InMenu) == 0x000148, "Member 'UWrestlerSettingsLocal::FrameRateLimit_InMenu' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, FrameRateLimit_WhenBackgrounded) == 0x00014C, "Member 'UWrestlerSettingsLocal::FrameRateLimit_WhenBackgrounded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, DesiredUserChosenDeviceProfileSuffix) == 0x000150, "Member 'UWrestlerSettingsLocal::DesiredUserChosenDeviceProfileSuffix' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, CurrentAppliedDeviceProfileOverrideSuffix) == 0x000160, "Member 'UWrestlerSettingsLocal::CurrentAppliedDeviceProfileOverrideSuffix' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, UserChosenDeviceProfileSuffix) == 0x000170, "Member 'UWrestlerSettingsLocal::UserChosenDeviceProfileSuffix' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, NvidiaReflexMode) == 0x000180, "Member 'UWrestlerSettingsLocal::NvidiaReflexMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, bNvidiaFrameWarp) == 0x000184, "Member 'UWrestlerSettingsLocal::bNvidiaFrameWarp' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, bNvidiaDLSSEnabled) == 0x000185, "Member 'UWrestlerSettingsLocal::bNvidiaDLSSEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, NvidiaDLSSMode) == 0x000188, "Member 'UWrestlerSettingsLocal::NvidiaDLSSMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, NvidiaDLSSFrameGenerationMode) == 0x00018C, "Member 'UWrestlerSettingsLocal::NvidiaDLSSFrameGenerationMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, bAMDFSREnabled) == 0x000190, "Member 'UWrestlerSettingsLocal::bAMDFSREnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, AMDFSRQuality) == 0x000194, "Member 'UWrestlerSettingsLocal::AMDFSRQuality' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, bAMDFSRFrameGenerationEnabled) == 0x000198, "Member 'UWrestlerSettingsLocal::bAMDFSRFrameGenerationEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsLocal, bIsEulaLocalDisplayed) == 0x000199, "Member 'UWrestlerSettingsLocal::bIsEulaLocalDisplayed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityDPadWidget_IsAnyoneInCombat \ +static_assert(alignof(WrestlerAbilityDPadWidget_IsAnyoneInCombat) == 0x000001, "Wrong alignment on WrestlerAbilityDPadWidget_IsAnyoneInCombat"); \ +static_assert(sizeof(WrestlerAbilityDPadWidget_IsAnyoneInCombat) == 0x000001, "Wrong size on WrestlerAbilityDPadWidget_IsAnyoneInCombat"); \ +static_assert(offsetof(WrestlerAbilityDPadWidget_IsAnyoneInCombat, ReturnValue) == 0x000000, "Member 'WrestlerAbilityDPadWidget_IsAnyoneInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityDPadWidget_UpdateDPadWidget \ +static_assert(alignof(WrestlerAbilityDPadWidget_UpdateDPadWidget) == 0x000008, "Wrong alignment on WrestlerAbilityDPadWidget_UpdateDPadWidget"); \ +static_assert(sizeof(WrestlerAbilityDPadWidget_UpdateDPadWidget) == 0x000008, "Wrong size on WrestlerAbilityDPadWidget_UpdateDPadWidget"); \ +static_assert(offsetof(WrestlerAbilityDPadWidget_UpdateDPadWidget, InPlayerClan) == 0x000000, "Member 'WrestlerAbilityDPadWidget_UpdateDPadWidget::InPlayerClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityDPadWidget_UpdateRenderOpacity \ +static_assert(alignof(WrestlerAbilityDPadWidget_UpdateRenderOpacity) == 0x000001, "Wrong alignment on WrestlerAbilityDPadWidget_UpdateRenderOpacity"); \ +static_assert(sizeof(WrestlerAbilityDPadWidget_UpdateRenderOpacity) == 0x000001, "Wrong size on WrestlerAbilityDPadWidget_UpdateRenderOpacity"); \ +static_assert(offsetof(WrestlerAbilityDPadWidget_UpdateRenderOpacity, InStatus) == 0x000000, "Member 'WrestlerAbilityDPadWidget_UpdateRenderOpacity::InStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityDPadWidget \ +static_assert(alignof(UWrestlerAbilityDPadWidget) == 0x000008, "Wrong alignment on UWrestlerAbilityDPadWidget"); \ +static_assert(sizeof(UWrestlerAbilityDPadWidget) == 0x000348, "Wrong size on UWrestlerAbilityDPadWidget"); \ +static_assert(offsetof(UWrestlerAbilityDPadWidget, PlayerActionAssetMap) == 0x000330, "Member 'UWrestlerAbilityDPadWidget::PlayerActionAssetMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDPadWidget, PlayerMappingContext) == 0x000338, "Member 'UWrestlerAbilityDPadWidget::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDPadWidget, DpadInputType) == 0x000340, "Member 'UWrestlerAbilityDPadWidget::DpadInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_Fear \ +static_assert(alignof(UWrestlerAISenseConfig_Fear) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_Fear"); \ +static_assert(sizeof(UWrestlerAISenseConfig_Fear) == 0x000058, "Wrong size on UWrestlerAISenseConfig_Fear"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Fear, Implementation) == 0x000048, "Member 'UWrestlerAISenseConfig_Fear::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Fear, FearRange) == 0x000050, "Member 'UWrestlerAISenseConfig_Fear::FearRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_ApplyActorRelativeTransform \ +static_assert(alignof(WrestlerTransitionActor_ApplyActorRelativeTransform) == 0x000010, "Wrong alignment on WrestlerTransitionActor_ApplyActorRelativeTransform"); \ +static_assert(sizeof(WrestlerTransitionActor_ApplyActorRelativeTransform) == 0x000070, "Wrong size on WrestlerTransitionActor_ApplyActorRelativeTransform"); \ +static_assert(offsetof(WrestlerTransitionActor_ApplyActorRelativeTransform, InPlayer) == 0x000000, "Member 'WrestlerTransitionActor_ApplyActorRelativeTransform::InPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_ApplyActorRelativeTransform, InTransitionTransform) == 0x000010, "Member 'WrestlerTransitionActor_ApplyActorRelativeTransform::InTransitionTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_CalculateRelativeTransitionTransform \ +static_assert(alignof(WrestlerTransitionActor_CalculateRelativeTransitionTransform) == 0x000010, "Wrong alignment on WrestlerTransitionActor_CalculateRelativeTransitionTransform"); \ +static_assert(sizeof(WrestlerTransitionActor_CalculateRelativeTransitionTransform) == 0x000070, "Wrong size on WrestlerTransitionActor_CalculateRelativeTransitionTransform"); \ +static_assert(offsetof(WrestlerTransitionActor_CalculateRelativeTransitionTransform, InPlayer) == 0x000000, "Member 'WrestlerTransitionActor_CalculateRelativeTransitionTransform::InPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_CalculateRelativeTransitionTransform, OutTransform) == 0x000010, "Member 'WrestlerTransitionActor_CalculateRelativeTransitionTransform::OutTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_OnVolumeOverlapBeginA \ +static_assert(alignof(WrestlerTransitionActor_OnVolumeOverlapBeginA) == 0x000008, "Wrong alignment on WrestlerTransitionActor_OnVolumeOverlapBeginA"); \ +static_assert(sizeof(WrestlerTransitionActor_OnVolumeOverlapBeginA) == 0x000108, "Wrong size on WrestlerTransitionActor_OnVolumeOverlapBeginA"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, InOverlapBeginComponent) == 0x000000, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::InOverlapBeginComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, InOtherActor) == 0x000008, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, InOtherComponent) == 0x000010, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::InOtherComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, InOtherBodyIndex) == 0x000018, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::InOtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, bInFromSweep) == 0x00001C, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::bInFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginA, InSweepResult) == 0x000020, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginA::InSweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_OnVolumeOverlapBeginB \ +static_assert(alignof(WrestlerTransitionActor_OnVolumeOverlapBeginB) == 0x000008, "Wrong alignment on WrestlerTransitionActor_OnVolumeOverlapBeginB"); \ +static_assert(sizeof(WrestlerTransitionActor_OnVolumeOverlapBeginB) == 0x000108, "Wrong size on WrestlerTransitionActor_OnVolumeOverlapBeginB"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, InOverlapBeginComponent) == 0x000000, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::InOverlapBeginComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, InOtherActor) == 0x000008, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, InOtherComponent) == 0x000010, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::InOtherComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, InOtherBodyIndex) == 0x000018, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::InOtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, bInFromSweep) == 0x00001C, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::bInFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapBeginB, InSweepResult) == 0x000020, "Member 'WrestlerTransitionActor_OnVolumeOverlapBeginB::InSweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_OnVolumeOverlapEndA \ +static_assert(alignof(WrestlerTransitionActor_OnVolumeOverlapEndA) == 0x000008, "Wrong alignment on WrestlerTransitionActor_OnVolumeOverlapEndA"); \ +static_assert(sizeof(WrestlerTransitionActor_OnVolumeOverlapEndA) == 0x000020, "Wrong size on WrestlerTransitionActor_OnVolumeOverlapEndA"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndA, InOverlapEndComponent) == 0x000000, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndA::InOverlapEndComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndA, InOtherActor) == 0x000008, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndA::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndA, InOtherComponent) == 0x000010, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndA::InOtherComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndA, InOtherBodyIndex) == 0x000018, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndA::InOtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_OnVolumeOverlapEndB \ +static_assert(alignof(WrestlerTransitionActor_OnVolumeOverlapEndB) == 0x000008, "Wrong alignment on WrestlerTransitionActor_OnVolumeOverlapEndB"); \ +static_assert(sizeof(WrestlerTransitionActor_OnVolumeOverlapEndB) == 0x000020, "Wrong size on WrestlerTransitionActor_OnVolumeOverlapEndB"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndB, InOverlapEndComponent) == 0x000000, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndB::InOverlapEndComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndB, InOtherActor) == 0x000008, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndB::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndB, InOtherComponent) == 0x000010, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndB::InOtherComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionActor_OnVolumeOverlapEndB, InOtherBodyIndex) == 0x000018, "Member 'WrestlerTransitionActor_OnVolumeOverlapEndB::InOtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionActor_SetStreamingSourceActive \ +static_assert(alignof(WrestlerTransitionActor_SetStreamingSourceActive) == 0x000001, "Wrong alignment on WrestlerTransitionActor_SetStreamingSourceActive"); \ +static_assert(sizeof(WrestlerTransitionActor_SetStreamingSourceActive) == 0x000001, "Wrong size on WrestlerTransitionActor_SetStreamingSourceActive"); \ +static_assert(offsetof(WrestlerTransitionActor_SetStreamingSourceActive, bIsStreamingSourceActive) == 0x000000, "Member 'WrestlerTransitionActor_SetStreamingSourceActive::bIsStreamingSourceActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTransitionActor \ +static_assert(alignof(AWrestlerTransitionActor) == 0x000008, "Wrong alignment on AWrestlerTransitionActor"); \ +static_assert(sizeof(AWrestlerTransitionActor) == 0x0002E0, "Wrong size on AWrestlerTransitionActor"); \ +static_assert(offsetof(AWrestlerTransitionActor, LocationTagA) == 0x0002A0, "Member 'AWrestlerTransitionActor::LocationTagA' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, LocationTagB) == 0x0002A8, "Member 'AWrestlerTransitionActor::LocationTagB' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, LocationVolumeComponentA) == 0x0002B0, "Member 'AWrestlerTransitionActor::LocationVolumeComponentA' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, LocationVolumeComponentB) == 0x0002B8, "Member 'AWrestlerTransitionActor::LocationVolumeComponentB' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, WorldPartitionStreamingSourceComponent) == 0x0002C0, "Member 'AWrestlerTransitionActor::WorldPartitionStreamingSourceComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, MissionScriptObjectiveToRaiseOnFinish) == 0x0002C8, "Member 'AWrestlerTransitionActor::MissionScriptObjectiveToRaiseOnFinish' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTransitionActor, DestinationTag) == 0x0002D4, "Member 'AWrestlerTransitionActor::DestinationTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged \ +static_assert(alignof(WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged) == 0x000001, "Wrong alignment on WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged"); \ +static_assert(sizeof(WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged) == 0x000002, "Wrong size on WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged"); \ +static_assert(offsetof(WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged, OldState) == 0x000000, "Member 'WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged::OldState' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged, NewState) == 0x000001, "Member 'WrestlerSeamlessTransitionActor_OnSeamlessTransitionStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag \ +static_assert(alignof(WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag) == 0x000004, "Wrong alignment on WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag"); \ +static_assert(sizeof(WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag) == 0x000008, "Wrong size on WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag"); \ +static_assert(offsetof(WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag, ReturnValue) == 0x000000, "Member 'WrestlerSeamlessTransitionActor_GetPlayerStartGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerSeamlessTransitionActor \ +static_assert(alignof(AWrestlerSeamlessTransitionActor) == 0x000008, "Wrong alignment on AWrestlerSeamlessTransitionActor"); \ +static_assert(sizeof(AWrestlerSeamlessTransitionActor) == 0x0002E8, "Wrong size on AWrestlerSeamlessTransitionActor"); \ +static_assert(offsetof(AWrestlerSeamlessTransitionActor, PlayerStartTag) == 0x0002E0, "Member 'AWrestlerSeamlessTransitionActor::PlayerStartTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData) == 0x0000C8, "Wrong size on WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData, InTargetData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData::InTargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData, InClassesToIgnore) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData::InClassesToIgnore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData, Filter) == 0x000078, "Member 'WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData::Filter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData, InFilterActor) == 0x000098, "Member 'WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData::InFilterActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData, ReturnValue) == 0x0000A0, "Member 'WrestlerAbilityFunctionLibrary_ApplyFiltersToTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation) == 0x000070, "Wrong size on WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, WorldContextObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Origin) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Origin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Radius) == 0x000020, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Radius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Direction) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Direction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Strength) == 0x000040, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Strength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, FieldToSpawn) == 0x000048, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::FieldToSpawn' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Tag) == 0x000050, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, Debug) == 0x000058, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::Debug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation, ReturnValue) == 0x000060, "Member 'WrestlerAbilityFunctionLibrary_ApplyMovableForceAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag) == 0x000048, "Wrong size on WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag, TagsToCancel) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag::TagsToCancel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag, TagsToIgnore) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_CancelAbilitiesByTag::TagsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults) == 0x000038, "Wrong size on WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults, InHitResults) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults::InHitResults' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults, OutTargetData) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_GenerateTargetDataFromHitResults::OutTargetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAllAttributes \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAllAttributes) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAllAttributes"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAllAttributes) == 0x000058, "Wrong size on WrestlerAbilityFunctionLibrary_GetAllAttributes"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAllAttributes, Actor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAllAttributes::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAllAttributes, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAllAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponAim::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFire::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponFlyby::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponImpact::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponMelee::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponReload::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetAudioRangedWeaponTail::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetEnemyTypeAudioSwitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor, OutPlayerController) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetPlayerControllerFromActor::OutPlayerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetRangedWeapon \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetRangedWeapon) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetRangedWeapon"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetRangedWeapon) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetRangedWeapon"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetRangedWeapon, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetRangedWeapon::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetRangedWeapon, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetRangedWeapon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket) == 0x000050, "Wrong size on WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, WeaponSocketName) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::WeaponSocketName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, MuzzleSocket) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::MuzzleSocket' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, InTarget) == 0x000018, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, OutOrigin) == 0x000020, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::OutOrigin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket, OutDirection) == 0x000038, "Member 'WrestlerAbilityFunctionLibrary_GetShotOriginAndDirectionFromSocket::OutDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData) == 0x0000D0, "Wrong size on WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData, InEventData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData, OutThrowVelocity) == 0x0000B0, "Member 'WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData::OutThrowVelocity' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData, OutPins) == 0x0000C8, "Member 'WrestlerAbilityFunctionLibrary_GetThrowVelocityFromEventData::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch, InEnemy) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_GetWeaponAudioSwitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_AddAffectBlood \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_AddAffectBlood) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_AddAffectBlood"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_AddAffectBlood) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_K2_AddAffectBlood"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddAffectBlood, InPlayerActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_AddAffectBlood::InPlayerActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddAffectBlood, InAmount) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_AddAffectBlood::InAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood, InPlayerActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood::InPlayerActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood, InAmount) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_AddMasteryBlood::InAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood, InPlayerActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood::InPlayerActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood, InAmount) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_AddRelocateBlood::InAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood, InPlayerActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood::InPlayerActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood, InAmount) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_AddStrikeBlood::InAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff) == 0x000070, "Wrong size on WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InWorldContextObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InBaseDamage) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InBaseDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InMinimumDamage) == 0x00000C, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InMinimumDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InOrigin) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InOrigin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamageInnerRadius) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamageInnerRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamageOuterRadius) == 0x00002C, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamageOuterRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamageFalloff) == 0x000030, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamageFalloff' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamageTypeClass) == 0x000038, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamageTypeClass' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InIgnoreActors) == 0x000040, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InIgnoreActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, OutDamage) == 0x000050, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::OutDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, bInDamageGASActors) == 0x000054, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::bInDamageGASActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, bInDamageNonGASActor) == 0x000055, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::bInDamageNonGASActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, OutPins) == 0x000056, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamageCauser) == 0x000058, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamageCauser' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InInstigatedByController) == 0x000060, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InInstigatedByController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, InDamagePreventionChannel) == 0x000068, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::InDamagePreventionChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, bInDebug) == 0x000069, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::bInDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff, ReturnValue) == 0x00006A, "Member 'WrestlerAbilityFunctionLibrary_K2_ApplyRadialDamageWithFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset) == 0x000040, "Wrong size on WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset, InSourceMovementComponent) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset::InSourceMovementComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset, InTargetActor) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset, InTargetLocationOffset) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset::InTargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset, ReturnValue) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_K2_CalculateTargetOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors) == 0x000040, "Wrong size on WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors, WorldContextObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors, TargetData) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors::TargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors, EnvironmentDamage) == 0x000030, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors::EnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors, DamageTypeClass) == 0x000038, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageAllNonGASActors::DamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor) == 0x000100, "Wrong size on WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor, WorldContextObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor, HitResult) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor::HitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor, EnvironmentDamage) == 0x0000F0, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor::EnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor, DamageTypeClass) == 0x0000F8, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActor::DamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults) == 0x000028, "Wrong size on WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults, WorldContextObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults, HitResults) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults::HitResults' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults, EnvironmentDamage) == 0x000018, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults::EnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults, DamageTypeClass) == 0x000020, "Member 'WrestlerAbilityFunctionLibrary_K2_DamageNonGASActorFromHitResults::DamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor) == 0x000010, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor, ReturnValue) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAbilitySystemComponentFromActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetAttackDirection \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetAttackDirection"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection) == 0x0000D8, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetAttackDirection"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection, InEventData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAttackDirection::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection, InActor) == 0x0000B0, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAttackDirection::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection, OutPins) == 0x0000B8, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAttackDirection::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetAttackDirection, ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityFunctionLibrary_K2_GetAttackDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute) == 0x000048, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute, InAttribute) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute::InAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute, OutPins) == 0x000040, "Member 'WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute, ReturnValue) == 0x000044, "Member 'WrestlerAbilityFunctionLibrary_K2_GetFloatAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection) == 0x0000D8, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection, InEventData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection, InActor) == 0x0000B0, "Member 'WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection, OutPins) == 0x0000B8, "Member 'WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection, ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityFunctionLibrary_K2_GetHitReactOffsetDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData) == 0x000038, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData, InTargetData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData::InTargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData, OutPins) == 0x000028, "Member 'WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData, ReturnValue) == 0x000030, "Member 'WrestlerAbilityFunctionLibrary_K2_GetSingleActorFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_GetTargetActor \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_GetTargetActor"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor) == 0x000018, "Wrong size on WrestlerAbilityFunctionLibrary_K2_GetTargetActor"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_GetTargetActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor, bGetSoftTarget) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_GetTargetActor::bGetSoftTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor, OutPins) == 0x000009, "Member 'WrestlerAbilityFunctionLibrary_K2_GetTargetActor::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_GetTargetActor, ReturnValue) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_K2_GetTargetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight) == 0x0000C0, "Wrong size on WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight, InEventData) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight, InActor) == 0x0000B0, "Member 'WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight, OutPins) == 0x0000B8, "Member 'WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight, ReturnValue) == 0x0000B9, "Member 'WrestlerAbilityFunctionLibrary_K2_IsAttackFromRight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_K2_TargetActor \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_K2_TargetActor) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_K2_TargetActor"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_K2_TargetActor) == 0x000018, "Wrong size on WrestlerAbilityFunctionLibrary_K2_TargetActor"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_TargetActor, InObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_K2_TargetActor::InObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_TargetActor, bGetSoftTarget) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_K2_TargetActor::bGetSoftTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_TargetActor, OutPins) == 0x000009, "Member 'WrestlerAbilityFunctionLibrary_K2_TargetActor::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_K2_TargetActor, ReturnValue) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_K2_TargetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget) == 0x000008, "Wrong size on WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget, VampiricVisionObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_RegisterVampiricVisionTarget::VampiricVisionObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent) == 0x000110, "Wrong size on WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InActor) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InOverlappedComponent) == 0x000008, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InOverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InOtherActor) == 0x000010, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InHitResult) == 0x000018, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InClassToIgnore) == 0x000100, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InClassToIgnore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent, InGameplayTag) == 0x000108, "Member 'WrestlerAbilityFunctionLibrary_ReportMeleeHitGameplayEvent::InGameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget \ +static_assert(alignof(WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget) == 0x000008, "Wrong alignment on WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget"); \ +static_assert(sizeof(WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget) == 0x000008, "Wrong size on WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget"); \ +static_assert(offsetof(WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget, VampiricVisionObject) == 0x000000, "Member 'WrestlerAbilityFunctionLibrary_UnregisterVampiricVisionTarget::VampiricVisionObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityFunctionLibrary \ +static_assert(alignof(UWrestlerAbilityFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerAbilityFunctionLibrary"); \ +static_assert(sizeof(UWrestlerAbilityFunctionLibrary) == 0x000028, "Wrong size on UWrestlerAbilityFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityHitData \ +static_assert(alignof(UWrestlerAbilityHitData) == 0x000008, "Wrong alignment on UWrestlerAbilityHitData"); \ +static_assert(sizeof(UWrestlerAbilityHitData) == 0x0000D0, "Wrong size on UWrestlerAbilityHitData"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitDamage) == 0x000030, "Member 'UWrestlerAbilityHitData::HitDamage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitDamageType) == 0x000038, "Member 'UWrestlerAbilityHitData::HitDamageType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, CuesToExecuteForAllHits) == 0x000040, "Member 'UWrestlerAbilityHitData::CuesToExecuteForAllHits' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitEventsToSendToTargets) == 0x000060, "Member 'UWrestlerAbilityHitData::HitEventsToSendToTargets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, EffectsToApplyToOwnerOnHit) == 0x000080, "Member 'UWrestlerAbilityHitData::EffectsToApplyToOwnerOnHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitKillingTag) == 0x000090, "Member 'UWrestlerAbilityHitData::HitKillingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, EffectContainerTagsToApply) == 0x000098, "Member 'UWrestlerAbilityHitData::EffectContainerTagsToApply' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitFreezeDuration) == 0x0000B8, "Member 'UWrestlerAbilityHitData::HitFreezeDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitFreezeTimeDilation) == 0x0000BC, "Member 'UWrestlerAbilityHitData::HitFreezeTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, HitFreezeDelay) == 0x0000C0, "Member 'UWrestlerAbilityHitData::HitFreezeDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, FearEmissionDuration) == 0x0000C4, "Member 'UWrestlerAbilityHitData::FearEmissionDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHitData, FearEmissionStrength) == 0x0000C8, "Member 'UWrestlerAbilityHitData::FearEmissionStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_RequestToken \ +static_assert(alignof(UWrestlerBTTask_RequestToken) == 0x000008, "Wrong alignment on UWrestlerBTTask_RequestToken"); \ +static_assert(sizeof(UWrestlerBTTask_RequestToken) == 0x0000A0, "Wrong size on UWrestlerBTTask_RequestToken"); \ +static_assert(offsetof(UWrestlerBTTask_RequestToken, RequestedTokenType) == 0x000098, "Member 'UWrestlerBTTask_RequestToken::RequestedTokenType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSetRechargeBloodAutomataTask \ +static_assert(alignof(UWrestlerSetRechargeBloodAutomataTask) == 0x000008, "Wrong alignment on UWrestlerSetRechargeBloodAutomataTask"); \ +static_assert(sizeof(UWrestlerSetRechargeBloodAutomataTask) == 0x000090, "Wrong size on UWrestlerSetRechargeBloodAutomataTask"); \ +static_assert(offsetof(UWrestlerSetRechargeBloodAutomataTask, bRechargeBlood) == 0x000088, "Member 'UWrestlerSetRechargeBloodAutomataTask::bRechargeBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAnimNotifyState \ +static_assert(alignof(UWrestlerAnimNotifyState) == 0x000008, "Wrong alignment on UWrestlerAnimNotifyState"); \ +static_assert(sizeof(UWrestlerAnimNotifyState) == 0x000030, "Wrong size on UWrestlerAnimNotifyState"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged \ +static_assert(alignof(WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged) == 0x000004, "Wrong alignment on WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged"); \ +static_assert(sizeof(WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged) == 0x000008, "Wrong size on WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged"); \ +static_assert(offsetof(WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged, InCurrentValue) == 0x000000, "Member 'WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged, InMaxValue) == 0x000004, "Member 'WrestlerAbilityHotkeySlotWidget_OnBloodValueChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityHotkeySlotWidget \ +static_assert(alignof(UWrestlerAbilityHotkeySlotWidget) == 0x000008, "Wrong alignment on UWrestlerAbilityHotkeySlotWidget"); \ +static_assert(sizeof(UWrestlerAbilityHotkeySlotWidget) == 0x000348, "Wrong size on UWrestlerAbilityHotkeySlotWidget"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, AbilitySlotImage) == 0x0002C8, "Member 'UWrestlerAbilityHotkeySlotWidget::AbilitySlotImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, SlotType) == 0x0002D0, "Member 'UWrestlerAbilityHotkeySlotWidget::SlotType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, AbilityType) == 0x0002D1, "Member 'UWrestlerAbilityHotkeySlotWidget::AbilityType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, OnAbilityFailed) == 0x0002D8, "Member 'UWrestlerAbilityHotkeySlotWidget::OnAbilityFailed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, bAbilityAcquired) == 0x0002E8, "Member 'UWrestlerAbilityHotkeySlotWidget::bAbilityAcquired' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityHotkeySlotWidget, NotificationData) == 0x0002F0, "Member 'UWrestlerAbilityHotkeySlotWidget::NotificationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskStrategy \ +static_assert(alignof(UWrestlerTaskStrategy) == 0x000008, "Wrong alignment on UWrestlerTaskStrategy"); \ +static_assert(sizeof(UWrestlerTaskStrategy) == 0x000038, "Wrong size on UWrestlerTaskStrategy"); \ +static_assert(offsetof(UWrestlerTaskStrategy, EnemyTasksSettingsKey) == 0x000028, "Member 'UWrestlerTaskStrategy::EnemyTasksSettingsKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskStrategy, AgentTask) == 0x000030, "Member 'UWrestlerTaskStrategy::AgentTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskStrategy_Behaviour \ +static_assert(alignof(UWrestlerTaskStrategy_Behaviour) == 0x000008, "Wrong alignment on UWrestlerTaskStrategy_Behaviour"); \ +static_assert(sizeof(UWrestlerTaskStrategy_Behaviour) == 0x000038, "Wrong size on UWrestlerTaskStrategy_Behaviour"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyDefendZoneComponent_GetDefendZones \ +static_assert(alignof(WrestlerEnemyDefendZoneComponent_GetDefendZones) == 0x000008, "Wrong alignment on WrestlerEnemyDefendZoneComponent_GetDefendZones"); \ +static_assert(sizeof(WrestlerEnemyDefendZoneComponent_GetDefendZones) == 0x000010, "Wrong size on WrestlerEnemyDefendZoneComponent_GetDefendZones"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_GetDefendZones, ReturnValue) == 0x000000, "Member 'WrestlerEnemyDefendZoneComponent_GetDefendZones::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyDefendZoneComponent_HasDefendZones \ +static_assert(alignof(WrestlerEnemyDefendZoneComponent_HasDefendZones) == 0x000001, "Wrong alignment on WrestlerEnemyDefendZoneComponent_HasDefendZones"); \ +static_assert(sizeof(WrestlerEnemyDefendZoneComponent_HasDefendZones) == 0x000001, "Wrong size on WrestlerEnemyDefendZoneComponent_HasDefendZones"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_HasDefendZones, ReturnValue) == 0x000000, "Member 'WrestlerEnemyDefendZoneComponent_HasDefendZones::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone \ +static_assert(alignof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone) == 0x000008, "Wrong alignment on WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone"); \ +static_assert(sizeof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone) == 0x000020, "Wrong size on WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone, Point) == 0x000000, "Member 'WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone::Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone, ExtentMultiplier) == 0x000018, "Member 'WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone::ExtentMultiplier' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone, IncludeHysteresis) == 0x00001C, "Member 'WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone::IncludeHysteresis' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone, ReturnValue) == 0x00001D, "Member 'WrestlerEnemyDefendZoneComponent_IsPointInOwnedZone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyDefendZoneComponent \ +static_assert(alignof(UWrestlerEnemyDefendZoneComponent) == 0x000008, "Wrong alignment on UWrestlerEnemyDefendZoneComponent"); \ +static_assert(sizeof(UWrestlerEnemyDefendZoneComponent) == 0x0000B0, "Wrong size on UWrestlerEnemyDefendZoneComponent"); \ +static_assert(offsetof(UWrestlerEnemyDefendZoneComponent, DefendZones) == 0x0000A0, "Member 'UWrestlerEnemyDefendZoneComponent::DefendZones' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuTooltipWidget_PlayAbilityClip \ +static_assert(alignof(WrestlerAbilityMenuTooltipWidget_PlayAbilityClip) == 0x000008, "Wrong alignment on WrestlerAbilityMenuTooltipWidget_PlayAbilityClip"); \ +static_assert(sizeof(WrestlerAbilityMenuTooltipWidget_PlayAbilityClip) == 0x000010, "Wrong size on WrestlerAbilityMenuTooltipWidget_PlayAbilityClip"); \ +static_assert(offsetof(WrestlerAbilityMenuTooltipWidget_PlayAbilityClip, InMediaSource) == 0x000000, "Member 'WrestlerAbilityMenuTooltipWidget_PlayAbilityClip::InMediaSource' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityMenuTooltipWidget_PlayAbilityClip, InMediaPlayer) == 0x000008, "Member 'WrestlerAbilityMenuTooltipWidget_PlayAbilityClip::InMediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget \ +static_assert(alignof(WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget) == 0x000008, "Wrong alignment on WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget"); \ +static_assert(sizeof(WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget) == 0x000008, "Wrong size on WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget"); \ +static_assert(offsetof(WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget, InFocusedWidget) == 0x000000, "Member 'WrestlerAbilityMenuTooltipWidget_PopulateTooltipWidget::InFocusedWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals \ +static_assert(alignof(WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals) == 0x000008, "Wrong alignment on WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals"); \ +static_assert(sizeof(WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals) == 0x000008, "Wrong size on WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals"); \ +static_assert(offsetof(WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals, InFocusedWidget) == 0x000000, "Member 'WrestlerAbilityMenuTooltipWidget_UpdateTooltipWidgetVisuals::InFocusedWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityMenuTooltipWidget \ +static_assert(alignof(UWrestlerAbilityMenuTooltipWidget) == 0x000008, "Wrong alignment on UWrestlerAbilityMenuTooltipWidget"); \ +static_assert(sizeof(UWrestlerAbilityMenuTooltipWidget) == 0x000370, "Wrong size on UWrestlerAbilityMenuTooltipWidget"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityTooltipImage) == 0x000330, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityTooltipImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityTooltipName) == 0x000338, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityTooltipName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityTooltipCost) == 0x000340, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityTooltipCost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityTooltipType) == 0x000348, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityTooltipType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityCholericCost) == 0x000350, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityCholericCost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilitySanguineCost) == 0x000358, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilitySanguineCost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityMelancholicCost) == 0x000360, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityMelancholicCost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuTooltipWidget, AbilityTooltipDescription) == 0x000368, "Member 'UWrestlerAbilityMenuTooltipWidget::AbilityTooltipDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotWidget_SetClanIcon \ +static_assert(alignof(WrestlerSaveSlotWidget_SetClanIcon) == 0x000001, "Wrong alignment on WrestlerSaveSlotWidget_SetClanIcon"); \ +static_assert(sizeof(WrestlerSaveSlotWidget_SetClanIcon) == 0x000001, "Wrong size on WrestlerSaveSlotWidget_SetClanIcon"); \ +static_assert(offsetof(WrestlerSaveSlotWidget_SetClanIcon, InClan) == 0x000000, "Member 'WrestlerSaveSlotWidget_SetClanIcon::InClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveSlotWidget \ +static_assert(alignof(UWrestlerSaveSlotWidget) == 0x000008, "Wrong alignment on UWrestlerSaveSlotWidget"); \ +static_assert(sizeof(UWrestlerSaveSlotWidget) == 0x0003F0, "Wrong size on UWrestlerSaveSlotWidget"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, AutoSaveLabel) == 0x000330, "Member 'UWrestlerSaveSlotWidget::AutoSaveLabel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, OnSaveSlotFocused) == 0x000348, "Member 'UWrestlerSaveSlotWidget::OnSaveSlotFocused' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, Button) == 0x000368, "Member 'UWrestlerSaveSlotWidget::Button' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, TimestampText) == 0x000370, "Member 'UWrestlerSaveSlotWidget::TimestampText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, QuestName) == 0x000378, "Member 'UWrestlerSaveSlotWidget::QuestName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, QuestDescription) == 0x000380, "Member 'UWrestlerSaveSlotWidget::QuestDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotWidget, SaveType) == 0x000388, "Member 'UWrestlerSaveSlotWidget::SaveType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_GetFocusedNode \ +static_assert(alignof(WrestlerAbilityMenuWidget_GetFocusedNode) == 0x000008, "Wrong alignment on WrestlerAbilityMenuWidget_GetFocusedNode"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_GetFocusedNode) == 0x000008, "Wrong size on WrestlerAbilityMenuWidget_GetFocusedNode"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_GetFocusedNode, ReturnValue) == 0x000000, "Member 'WrestlerAbilityMenuWidget_GetFocusedNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes \ +static_assert(alignof(WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes) == 0x000004, "Wrong alignment on WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes) == 0x000004, "Wrong size on WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes, InSelectedClan) == 0x000000, "Member 'WrestlerAbilityMenuWidget_PopulatePreviewAbilityNodes::InSelectedClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals \ +static_assert(alignof(WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals) == 0x000008, "Wrong alignment on WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals) == 0x000008, "Wrong size on WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals, InAbilityNode) == 0x000000, "Member 'WrestlerAbilityMenuWidget_RefreshAbilityNodeVisuals::InAbilityNode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_ResetTree \ +static_assert(alignof(WrestlerAbilityMenuWidget_ResetTree) == 0x000001, "Wrong alignment on WrestlerAbilityMenuWidget_ResetTree"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_ResetTree) == 0x000001, "Wrong size on WrestlerAbilityMenuWidget_ResetTree"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_ResetTree, InShouldResetAnim) == 0x000000, "Member 'WrestlerAbilityMenuWidget_ResetTree::InShouldResetAnim' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_ResetTreeTier \ +static_assert(alignof(WrestlerAbilityMenuWidget_ResetTreeTier) == 0x000001, "Wrong alignment on WrestlerAbilityMenuWidget_ResetTreeTier"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_ResetTreeTier) == 0x000001, "Wrong size on WrestlerAbilityMenuWidget_ResetTreeTier"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_ResetTreeTier, InAbilityType) == 0x000000, "Member 'WrestlerAbilityMenuWidget_ResetTreeTier::InAbilityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_ToggleInputBindings \ +static_assert(alignof(WrestlerAbilityMenuWidget_ToggleInputBindings) == 0x000001, "Wrong alignment on WrestlerAbilityMenuWidget_ToggleInputBindings"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_ToggleInputBindings) == 0x000001, "Wrong size on WrestlerAbilityMenuWidget_ToggleInputBindings"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_ToggleInputBindings, bAddBindings) == 0x000000, "Member 'WrestlerAbilityMenuWidget_ToggleInputBindings::bAddBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityMenuWidget_UnlockTierNavigation \ +static_assert(alignof(WrestlerAbilityMenuWidget_UnlockTierNavigation) == 0x000001, "Wrong alignment on WrestlerAbilityMenuWidget_UnlockTierNavigation"); \ +static_assert(sizeof(WrestlerAbilityMenuWidget_UnlockTierNavigation) == 0x000001, "Wrong size on WrestlerAbilityMenuWidget_UnlockTierNavigation"); \ +static_assert(offsetof(WrestlerAbilityMenuWidget_UnlockTierNavigation, InAbilityType) == 0x000000, "Member 'WrestlerAbilityMenuWidget_UnlockTierNavigation::InAbilityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityMenuWidget \ +static_assert(alignof(UWrestlerAbilityMenuWidget) == 0x000008, "Wrong alignment on UWrestlerAbilityMenuWidget"); \ +static_assert(sizeof(UWrestlerAbilityMenuWidget) == 0x0004B0, "Wrong size on UWrestlerAbilityMenuWidget"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, AbilityMenuPanel) == 0x000450, "Member 'UWrestlerAbilityMenuWidget::AbilityMenuPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, AbilityDataTable) == 0x000458, "Member 'UWrestlerAbilityMenuWidget::AbilityDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, AbilityMarkers) == 0x000460, "Member 'UWrestlerAbilityMenuWidget::AbilityMarkers' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, StartUnlockInputActionData) == 0x000470, "Member 'UWrestlerAbilityMenuWidget::StartUnlockInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, ReverseUnlockInputActionData) == 0x000488, "Member 'UWrestlerAbilityMenuWidget::ReverseUnlockInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, MainPositionValue) == 0x00049C, "Member 'UWrestlerAbilityMenuWidget::MainPositionValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityMenuWidget, ResetTreeProperty) == 0x0004A0, "Member 'UWrestlerAbilityMenuWidget::ResetTreeProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_SetComboFinished \ +static_assert(alignof(UWrestlerBTTask_SetComboFinished) == 0x000008, "Wrong alignment on UWrestlerBTTask_SetComboFinished"); \ +static_assert(sizeof(UWrestlerBTTask_SetComboFinished) == 0x000078, "Wrong size on UWrestlerBTTask_SetComboFinished"); \ +static_assert(offsetof(UWrestlerBTTask_SetComboFinished, bComboFinished) == 0x000070, "Member 'UWrestlerBTTask_SetComboFinished::bComboFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassVolumeSpawnPointsGenerator \ +static_assert(alignof(UWrestlerMassVolumeSpawnPointsGenerator) == 0x000008, "Wrong alignment on UWrestlerMassVolumeSpawnPointsGenerator"); \ +static_assert(sizeof(UWrestlerMassVolumeSpawnPointsGenerator) == 0x000060, "Wrong size on UWrestlerMassVolumeSpawnPointsGenerator"); \ +static_assert(offsetof(UWrestlerMassVolumeSpawnPointsGenerator, Volume) == 0x000030, "Member 'UWrestlerMassVolumeSpawnPointsGenerator::Volume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassVolumeSpawnPointsGenerator, GapBetweenPoints) == 0x000058, "Member 'UWrestlerMassVolumeSpawnPointsGenerator::GapBetweenPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityDefinition \ +static_assert(alignof(UWrestlerAbilityDefinition) == 0x000008, "Wrong alignment on UWrestlerAbilityDefinition"); \ +static_assert(sizeof(UWrestlerAbilityDefinition) == 0x000088, "Wrong size on UWrestlerAbilityDefinition"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, PerkTag) == 0x000030, "Member 'UWrestlerAbilityDefinition::PerkTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, ControlGraph) == 0x000038, "Member 'UWrestlerAbilityDefinition::ControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, GameplayAbility) == 0x000040, "Member 'UWrestlerAbilityDefinition::GameplayAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, ClanAbilityType) == 0x000068, "Member 'UWrestlerAbilityDefinition::ClanAbilityType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, BloodCost) == 0x00006C, "Member 'UWrestlerAbilityDefinition::BloodCost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityDefinition, ProgressAutomataUID) == 0x000070, "Member 'UWrestlerAbilityDefinition::ProgressAutomataUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerXPCollectableBoolComponent \ +static_assert(alignof(UWrestlerXPCollectableBoolComponent) == 0x000008, "Wrong alignment on UWrestlerXPCollectableBoolComponent"); \ +static_assert(sizeof(UWrestlerXPCollectableBoolComponent) == 0x0000A0, "Wrong size on UWrestlerXPCollectableBoolComponent"); \ + +#define DUMPER7_ASSERTS_WrestlerAISense_ReportSenseEvent \ +static_assert(alignof(WrestlerAISense_ReportSenseEvent) == 0x000008, "Wrong alignment on WrestlerAISense_ReportSenseEvent"); \ +static_assert(sizeof(WrestlerAISense_ReportSenseEvent) == 0x000038, "Wrong size on WrestlerAISense_ReportSenseEvent"); \ +static_assert(offsetof(WrestlerAISense_ReportSenseEvent, InWorldContextObject) == 0x000000, "Member 'WrestlerAISense_ReportSenseEvent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_ReportSenseEvent, InInstigator) == 0x000008, "Member 'WrestlerAISense_ReportSenseEvent::InInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_ReportSenseEvent, InSenseLocation) == 0x000010, "Member 'WrestlerAISense_ReportSenseEvent::InSenseLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_ReportSenseEvent, InMaxRange) == 0x000028, "Member 'WrestlerAISense_ReportSenseEvent::InMaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_ReportSenseEvent, InTag) == 0x00002C, "Member 'WrestlerAISense_ReportSenseEvent::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense \ +static_assert(alignof(UWrestlerAISense) == 0x000008, "Wrong alignment on UWrestlerAISense"); \ +static_assert(sizeof(UWrestlerAISense) == 0x000088, "Wrong size on UWrestlerAISense"); \ +static_assert(offsetof(UWrestlerAISense, RegisteredEvents) == 0x000078, "Member 'UWrestlerAISense::RegisteredEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISense_Fear_ReportFearEvent \ +static_assert(alignof(WrestlerAISense_Fear_ReportFearEvent) == 0x000008, "Wrong alignment on WrestlerAISense_Fear_ReportFearEvent"); \ +static_assert(sizeof(WrestlerAISense_Fear_ReportFearEvent) == 0x000040, "Wrong size on WrestlerAISense_Fear_ReportFearEvent"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, WorldContextObject) == 0x000000, "Member 'WrestlerAISense_Fear_ReportFearEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, FearLocation) == 0x000008, "Member 'WrestlerAISense_Fear_ReportFearEvent::FearLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, FearStrength) == 0x000020, "Member 'WrestlerAISense_Fear_ReportFearEvent::FearStrength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, Instigator) == 0x000028, "Member 'WrestlerAISense_Fear_ReportFearEvent::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, MaxRange) == 0x000030, "Member 'WrestlerAISense_Fear_ReportFearEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Fear_ReportFearEvent, InFullTag) == 0x000034, "Member 'WrestlerAISense_Fear_ReportFearEvent::InFullTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Fear \ +static_assert(alignof(UWrestlerAISense_Fear) == 0x000008, "Wrong alignment on UWrestlerAISense_Fear"); \ +static_assert(sizeof(UWrestlerAISense_Fear) == 0x0000F8, "Wrong size on UWrestlerAISense_Fear"); \ +static_assert(offsetof(UWrestlerAISense_Fear, FearEvents) == 0x000088, "Member 'UWrestlerAISense_Fear::FearEvents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Fear, FearActors) == 0x0000E8, "Member 'UWrestlerAISense_Fear::FearActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetAbilityDisciplines \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetAbilityDisciplines) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetAbilityDisciplines"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetAbilityDisciplines) == 0x000010, "Wrong size on WrestlerAbilityNodeWidget_GetAbilityDisciplines"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetAbilityDisciplines, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetAbilityDisciplines::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetAbilityVideoclip \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetAbilityVideoclip) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetAbilityVideoclip"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetAbilityVideoclip) == 0x000008, "Wrong size on WrestlerAbilityNodeWidget_GetAbilityVideoclip"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetAbilityVideoclip, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetAbilityVideoclip::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetNodeIcon \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetNodeIcon) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetNodeIcon"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetNodeIcon) == 0x000008, "Wrong size on WrestlerAbilityNodeWidget_GetNodeIcon"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetNodeIcon, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetNodeIcon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetNodeName \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetNodeName) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetNodeName"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetNodeName) == 0x000018, "Wrong size on WrestlerAbilityNodeWidget_GetNodeName"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetNodeName, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetNodeName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_IsAbilityAcquired \ +static_assert(alignof(WrestlerAbilityNodeWidget_IsAbilityAcquired) == 0x000001, "Wrong alignment on WrestlerAbilityNodeWidget_IsAbilityAcquired"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_IsAbilityAcquired) == 0x000001, "Wrong size on WrestlerAbilityNodeWidget_IsAbilityAcquired"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_IsAbilityAcquired, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_IsAbilityAcquired::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_IsAbilityCostModified \ +static_assert(alignof(WrestlerAbilityNodeWidget_IsAbilityCostModified) == 0x000001, "Wrong alignment on WrestlerAbilityNodeWidget_IsAbilityCostModified"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_IsAbilityCostModified) == 0x000001, "Wrong size on WrestlerAbilityNodeWidget_IsAbilityCostModified"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_IsAbilityCostModified, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_IsAbilityCostModified::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_IsAbilityMain \ +static_assert(alignof(WrestlerAbilityNodeWidget_IsAbilityMain) == 0x000001, "Wrong alignment on WrestlerAbilityNodeWidget_IsAbilityMain"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_IsAbilityMain) == 0x000001, "Wrong size on WrestlerAbilityNodeWidget_IsAbilityMain"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_IsAbilityMain, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_IsAbilityMain::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_OnAbilityFocused \ +static_assert(alignof(WrestlerAbilityNodeWidget_OnAbilityFocused) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_OnAbilityFocused"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_OnAbilityFocused) == 0x000008, "Wrong size on WrestlerAbilityNodeWidget_OnAbilityFocused"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_OnAbilityFocused, InAbility) == 0x000000, "Member 'WrestlerAbilityNodeWidget_OnAbilityFocused::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_OnAbilityUnfocused \ +static_assert(alignof(WrestlerAbilityNodeWidget_OnAbilityUnfocused) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_OnAbilityUnfocused"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_OnAbilityUnfocused) == 0x000008, "Wrong size on WrestlerAbilityNodeWidget_OnAbilityUnfocused"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_OnAbilityUnfocused, InAbility) == 0x000000, "Member 'WrestlerAbilityNodeWidget_OnAbilityUnfocused::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_UpdateVisibilityByDLC \ +static_assert(alignof(WrestlerAbilityNodeWidget_UpdateVisibilityByDLC) == 0x000001, "Wrong alignment on WrestlerAbilityNodeWidget_UpdateVisibilityByDLC"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_UpdateVisibilityByDLC) == 0x000001, "Wrong size on WrestlerAbilityNodeWidget_UpdateVisibilityByDLC"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_UpdateVisibilityByDLC, InIsOwnedDLC) == 0x000000, "Member 'WrestlerAbilityNodeWidget_UpdateVisibilityByDLC::InIsOwnedDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetAllAbilityRows \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetAllAbilityRows) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetAllAbilityRows"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetAllAbilityRows) == 0x000010, "Wrong size on WrestlerAbilityNodeWidget_GetAllAbilityRows"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetAllAbilityRows, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetAllAbilityRows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetClanValPosition \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetClanValPosition) == 0x000004, "Wrong alignment on WrestlerAbilityNodeWidget_GetClanValPosition"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetClanValPosition) == 0x000004, "Wrong size on WrestlerAbilityNodeWidget_GetClanValPosition"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetClanValPosition, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetClanValPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetClanValue \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetClanValue) == 0x000004, "Wrong alignment on WrestlerAbilityNodeWidget_GetClanValue"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetClanValue) == 0x000004, "Wrong size on WrestlerAbilityNodeWidget_GetClanValue"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetClanValue, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetClanValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityNodeWidget_GetNodePosition \ +static_assert(alignof(WrestlerAbilityNodeWidget_GetNodePosition) == 0x000008, "Wrong alignment on WrestlerAbilityNodeWidget_GetNodePosition"); \ +static_assert(sizeof(WrestlerAbilityNodeWidget_GetNodePosition) == 0x000010, "Wrong size on WrestlerAbilityNodeWidget_GetNodePosition"); \ +static_assert(offsetof(WrestlerAbilityNodeWidget_GetNodePosition, ReturnValue) == 0x000000, "Member 'WrestlerAbilityNodeWidget_GetNodePosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityNodeWidget \ +static_assert(alignof(UWrestlerAbilityNodeWidget) == 0x000008, "Wrong alignment on UWrestlerAbilityNodeWidget"); \ +static_assert(sizeof(UWrestlerAbilityNodeWidget) == 0x000388, "Wrong size on UWrestlerAbilityNodeWidget"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, NodeButton) == 0x000330, "Member 'UWrestlerAbilityNodeWidget::NodeButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, bCanAfford) == 0x000340, "Member 'UWrestlerAbilityNodeWidget::bCanAfford' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, AbilityStatus) == 0x000341, "Member 'UWrestlerAbilityNodeWidget::AbilityStatus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, AbilityType) == 0x000342, "Member 'UWrestlerAbilityNodeWidget::AbilityType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, ClanValPosition) == 0x000344, "Member 'UWrestlerAbilityNodeWidget::ClanValPosition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, RowID) == 0x000348, "Member 'UWrestlerAbilityNodeWidget::RowID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, OnAbilityFocusedEvent) == 0x000358, "Member 'UWrestlerAbilityNodeWidget::OnAbilityFocusedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, OnAbilityUnfocusedEvent) == 0x000368, "Member 'UWrestlerAbilityNodeWidget::OnAbilityUnfocusedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, NodeImage) == 0x000378, "Member 'UWrestlerAbilityNodeWidget::NodeImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityNodeWidget, NodeCost) == 0x000380, "Member 'UWrestlerAbilityNodeWidget::NodeCost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPDXLogin_ShouldShowPDXLoginScreen \ +static_assert(alignof(WrestlerPDXLogin_ShouldShowPDXLoginScreen) == 0x000001, "Wrong alignment on WrestlerPDXLogin_ShouldShowPDXLoginScreen"); \ +static_assert(sizeof(WrestlerPDXLogin_ShouldShowPDXLoginScreen) == 0x000001, "Wrong size on WrestlerPDXLogin_ShouldShowPDXLoginScreen"); \ +static_assert(offsetof(WrestlerPDXLogin_ShouldShowPDXLoginScreen, ReturnValue) == 0x000000, "Member 'WrestlerPDXLogin_ShouldShowPDXLoginScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPDXLogin_BlockStreaming \ +static_assert(alignof(WrestlerPDXLogin_BlockStreaming) == 0x000001, "Wrong alignment on WrestlerPDXLogin_BlockStreaming"); \ +static_assert(sizeof(WrestlerPDXLogin_BlockStreaming) == 0x000001, "Wrong size on WrestlerPDXLogin_BlockStreaming"); \ +static_assert(offsetof(WrestlerPDXLogin_BlockStreaming, bInBlock) == 0x000000, "Member 'WrestlerPDXLogin_BlockStreaming::bInBlock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPDXLogin_GetLauncherName \ +static_assert(alignof(WrestlerPDXLogin_GetLauncherName) == 0x000004, "Wrong alignment on WrestlerPDXLogin_GetLauncherName"); \ +static_assert(sizeof(WrestlerPDXLogin_GetLauncherName) == 0x000008, "Wrong size on WrestlerPDXLogin_GetLauncherName"); \ +static_assert(offsetof(WrestlerPDXLogin_GetLauncherName, ReturnValue) == 0x000000, "Member 'WrestlerPDXLogin_GetLauncherName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPDXLogin \ +static_assert(alignof(UWrestlerPDXLogin) == 0x000008, "Wrong alignment on UWrestlerPDXLogin"); \ +static_assert(sizeof(UWrestlerPDXLogin) == 0x000300, "Wrong size on UWrestlerPDXLogin"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilitySlotsData \ +static_assert(alignof(UWrestlerAbilitySlotsData) == 0x000008, "Wrong alignment on UWrestlerAbilitySlotsData"); \ +static_assert(sizeof(UWrestlerAbilitySlotsData) == 0x0000E0, "Wrong size on UWrestlerAbilitySlotsData"); \ +static_assert(offsetof(UWrestlerAbilitySlotsData, ClanAbilities) == 0x000030, "Member 'UWrestlerAbilitySlotsData::ClanAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySlotsData, AssignedAbilities) == 0x000038, "Member 'UWrestlerAbilitySlotsData::AssignedAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySlotsData, AssignedAbilities_Alt) == 0x000088, "Member 'UWrestlerAbilitySlotsData::AssignedAbilities_Alt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySlotsData, PassiveAbility) == 0x0000D8, "Member 'UWrestlerAbilitySlotsData::PassiveAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyCombatDataAsset \ +static_assert(alignof(UWrestlerEnemyCombatDataAsset) == 0x000008, "Wrong alignment on UWrestlerEnemyCombatDataAsset"); \ +static_assert(sizeof(UWrestlerEnemyCombatDataAsset) == 0x000058, "Wrong size on UWrestlerEnemyCombatDataAsset"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, CombatControlGraph) == 0x000030, "Member 'UWrestlerEnemyCombatDataAsset::CombatControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, AltCombatControlGraph) == 0x000038, "Member 'UWrestlerEnemyCombatDataAsset::AltCombatControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, AltLeftRightCombatControlGraph) == 0x000040, "Member 'UWrestlerEnemyCombatDataAsset::AltLeftRightCombatControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, ActiveControlGraph) == 0x000048, "Member 'UWrestlerEnemyCombatDataAsset::ActiveControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, bIsAltCombatActive) == 0x000050, "Member 'UWrestlerEnemyCombatDataAsset::bIsAltCombatActive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, bIsLeftRightCombatInputActive) == 0x000051, "Member 'UWrestlerEnemyCombatDataAsset::bIsLeftRightCombatInputActive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatDataAsset, bAutoLockOn) == 0x000052, "Member 'UWrestlerEnemyCombatDataAsset::bAutoLockOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerAbilitySourceInterface \ +static_assert(alignof(IWrestlerAbilitySourceInterface) == 0x000001, "Wrong alignment on IWrestlerAbilitySourceInterface"); \ +static_assert(sizeof(IWrestlerAbilitySourceInterface) == 0x000001, "Wrong size on IWrestlerAbilitySourceInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_StartBark \ +static_assert(alignof(UWrestlerBTTask_StartBark) == 0x000008, "Wrong alignment on UWrestlerBTTask_StartBark"); \ +static_assert(sizeof(UWrestlerBTTask_StartBark) == 0x000080, "Wrong size on UWrestlerBTTask_StartBark"); \ +static_assert(offsetof(UWrestlerBTTask_StartBark, BarkTag) == 0x000070, "Member 'UWrestlerBTTask_StartBark::BarkTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_StartBark, PlayChance) == 0x000078, "Member 'UWrestlerBTTask_StartBark::PlayChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles \ +static_assert(alignof(WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles) == 0x000008, "Wrong alignment on WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles"); \ +static_assert(sizeof(WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles) == 0x000010, "Wrong size on WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles"); \ +static_assert(offsetof(WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles, ReturnValue) == 0x000000, "Member 'WrestlerPlatformEmulationSettings_GetKnownDeviceProfiles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformEmulationSettings_GetKnownPlatformIds \ +static_assert(alignof(WrestlerPlatformEmulationSettings_GetKnownPlatformIds) == 0x000008, "Wrong alignment on WrestlerPlatformEmulationSettings_GetKnownPlatformIds"); \ +static_assert(sizeof(WrestlerPlatformEmulationSettings_GetKnownPlatformIds) == 0x000010, "Wrong size on WrestlerPlatformEmulationSettings_GetKnownPlatformIds"); \ +static_assert(offsetof(WrestlerPlatformEmulationSettings_GetKnownPlatformIds, ReturnValue) == 0x000000, "Member 'WrestlerPlatformEmulationSettings_GetKnownPlatformIds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlatformEmulationSettings \ +static_assert(alignof(UWrestlerPlatformEmulationSettings) == 0x000008, "Wrong alignment on UWrestlerPlatformEmulationSettings"); \ +static_assert(sizeof(UWrestlerPlatformEmulationSettings) == 0x000090, "Wrong size on UWrestlerPlatformEmulationSettings"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, AdditionalPlatformTraitsToEnable) == 0x000038, "Member 'UWrestlerPlatformEmulationSettings::AdditionalPlatformTraitsToEnable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, AdditionalPlatformTraitsToSuppress) == 0x000058, "Member 'UWrestlerPlatformEmulationSettings::AdditionalPlatformTraitsToSuppress' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, PretendPlatform) == 0x000078, "Member 'UWrestlerPlatformEmulationSettings::PretendPlatform' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, PretendBaseDeviceProfile) == 0x000080, "Member 'UWrestlerPlatformEmulationSettings::PretendBaseDeviceProfile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, bApplyFrameRateSettingsInPIE) == 0x000088, "Member 'UWrestlerPlatformEmulationSettings::bApplyFrameRateSettingsInPIE' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, bApplyFrontEndPerformanceOptionsInPIE) == 0x000089, "Member 'UWrestlerPlatformEmulationSettings::bApplyFrontEndPerformanceOptionsInPIE' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformEmulationSettings, bApplyDeviceProfilesInPIE) == 0x00008A, "Member 'UWrestlerPlatformEmulationSettings::bApplyDeviceProfilesInPIE' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityState \ +static_assert(alignof(UWrestlerAbilityState) == 0x000008, "Wrong alignment on UWrestlerAbilityState"); \ +static_assert(sizeof(UWrestlerAbilityState) == 0x0000B8, "Wrong size on UWrestlerAbilityState"); \ +static_assert(offsetof(UWrestlerAbilityState, OnStateEndedDelegate) == 0x000080, "Member 'UWrestlerAbilityState::OnStateEndedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState, OnStateInterruptedDelegate) == 0x000090, "Member 'UWrestlerAbilityState::OnStateInterruptedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState, StartAbilityStateTask) == 0x0000B0, "Member 'UWrestlerAbilityState::StartAbilityStateTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioDiegeticMusicController_ActivateSpline \ +static_assert(alignof(WrestlerAudioDiegeticMusicController_ActivateSpline) == 0x000004, "Wrong alignment on WrestlerAudioDiegeticMusicController_ActivateSpline"); \ +static_assert(sizeof(WrestlerAudioDiegeticMusicController_ActivateSpline) == 0x00000C, "Wrong size on WrestlerAudioDiegeticMusicController_ActivateSpline"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_ActivateSpline, SplineTag) == 0x000000, "Member 'WrestlerAudioDiegeticMusicController_ActivateSpline::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_ActivateSpline, bActivate) == 0x000008, "Member 'WrestlerAudioDiegeticMusicController_ActivateSpline::bActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioDiegeticMusicController_HandleSplineExit \ +static_assert(alignof(WrestlerAudioDiegeticMusicController_HandleSplineExit) == 0x000004, "Wrong alignment on WrestlerAudioDiegeticMusicController_HandleSplineExit"); \ +static_assert(sizeof(WrestlerAudioDiegeticMusicController_HandleSplineExit) == 0x00000C, "Wrong size on WrestlerAudioDiegeticMusicController_HandleSplineExit"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_HandleSplineExit, SplineTag) == 0x000000, "Member 'WrestlerAudioDiegeticMusicController_HandleSplineExit::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_HandleSplineExit, bExitFromStart) == 0x000008, "Member 'WrestlerAudioDiegeticMusicController_HandleSplineExit::bExitFromStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_HandleSplineExit, bHoldAtExit) == 0x000009, "Member 'WrestlerAudioDiegeticMusicController_HandleSplineExit::bHoldAtExit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioDiegeticMusicController_HandleSplineExit, bExited) == 0x00000A, "Member 'WrestlerAudioDiegeticMusicController_HandleSplineExit::bExited' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAudioDiegeticMusicController \ +static_assert(alignof(AWrestlerAudioDiegeticMusicController) == 0x000008, "Wrong alignment on AWrestlerAudioDiegeticMusicController"); \ +static_assert(sizeof(AWrestlerAudioDiegeticMusicController) == 0x000320, "Wrong size on AWrestlerAudioDiegeticMusicController"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, EmitterArray) == 0x000298, "Member 'AWrestlerAudioDiegeticMusicController::EmitterArray' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, SplineTagMap) == 0x0002A8, "Member 'AWrestlerAudioDiegeticMusicController::SplineTagMap' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, ActiveSpline) == 0x0002F8, "Member 'AWrestlerAudioDiegeticMusicController::ActiveSpline' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, ActiveSplineProperty) == 0x000300, "Member 'AWrestlerAudioDiegeticMusicController::ActiveSplineProperty' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, PerimeterDistanceModifiers) == 0x000308, "Member 'AWrestlerAudioDiegeticMusicController::PerimeterDistanceModifiers' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioDiegeticMusicController, bDebug) == 0x000318, "Member 'AWrestlerAudioDiegeticMusicController::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted \ +static_assert(alignof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted) == 0x000008, "Wrong alignment on WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted"); \ +static_assert(sizeof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted) == 0x0000B8, "Wrong size on WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted, InEventTag) == 0x000000, "Member 'WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted, InEventData) == 0x000008, "Member 'WrestlerAbilityState_CauldronOfBlood_Boiling_OnFirstMontageCompleted::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained \ +static_assert(alignof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained) == 0x000008, "Wrong alignment on WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained"); \ +static_assert(sizeof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained) == 0x000008, "Wrong size on WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained, InTarget) == 0x000000, "Member 'WrestlerAbilityState_CauldronOfBlood_Boiling_OnTargetObtained::InTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityState_CauldronOfBlood_Boiling \ +static_assert(alignof(UWrestlerAbilityState_CauldronOfBlood_Boiling) == 0x000008, "Wrong alignment on UWrestlerAbilityState_CauldronOfBlood_Boiling"); \ +static_assert(sizeof(UWrestlerAbilityState_CauldronOfBlood_Boiling) == 0x0001B0, "Wrong size on UWrestlerAbilityState_CauldronOfBlood_Boiling"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Boiling, MontageToPlay) == 0x0000B8, "Member 'UWrestlerAbilityState_CauldronOfBlood_Boiling::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Boiling, CurrentTarget) == 0x000178, "Member 'UWrestlerAbilityState_CauldronOfBlood_Boiling::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Boiling, PlayMontageAndWaitForEvent) == 0x000180, "Member 'UWrestlerAbilityState_CauldronOfBlood_Boiling::PlayMontageAndWaitForEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Boiling, PlayMontageAndWaitForEventTarget) == 0x000188, "Member 'UWrestlerAbilityState_CauldronOfBlood_Boiling::PlayMontageAndWaitForEventTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Boiling, OverrideTarget) == 0x000190, "Member 'UWrestlerAbilityState_CauldronOfBlood_Boiling::OverrideTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemySightSetup \ +static_assert(alignof(UWrestlerEnemySightSetup) == 0x000008, "Wrong alignment on UWrestlerEnemySightSetup"); \ +static_assert(sizeof(UWrestlerEnemySightSetup) == 0x000228, "Wrong size on UWrestlerEnemySightSetup"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, PrimaryCone) == 0x000030, "Member 'UWrestlerEnemySightSetup::PrimaryCone' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, SecondaryCone) == 0x0000D0, "Member 'UWrestlerEnemySightSetup::SecondaryCone' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, TertiaryCone) == 0x000170, "Member 'UWrestlerEnemySightSetup::TertiaryCone' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, CrouchingHostilityMultiplier) == 0x000210, "Member 'UWrestlerEnemySightSetup::CrouchingHostilityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, SprintingHostilityMultiplier) == 0x000214, "Member 'UWrestlerEnemySightSetup::SprintingHostilityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, GlidingHostilityMultiplier) == 0x000218, "Member 'UWrestlerEnemySightSetup::GlidingHostilityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, CrouchingPrimaryConeRangeMultiplier) == 0x00021C, "Member 'UWrestlerEnemySightSetup::CrouchingPrimaryConeRangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, SprintingPrimaryConeRangeMultiplier) == 0x000220, "Member 'UWrestlerEnemySightSetup::SprintingPrimaryConeRangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySightSetup, GlidingPrimaryConeRangeMultiplier) == 0x000224, "Member 'UWrestlerEnemySightSetup::GlidingPrimaryConeRangeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSmartObjectUseLocationComponent \ +static_assert(alignof(UWrestlerSmartObjectUseLocationComponent) == 0x000010, "Wrong alignment on UWrestlerSmartObjectUseLocationComponent"); \ +static_assert(sizeof(UWrestlerSmartObjectUseLocationComponent) == 0x0002B0, "Wrong size on UWrestlerSmartObjectUseLocationComponent"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted \ +static_assert(alignof(WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted) == 0x000008, "Wrong alignment on WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted"); \ +static_assert(sizeof(WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted) == 0x0000B8, "Wrong size on WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted, InEventTag) == 0x000000, "Member 'WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted, InEventData) == 0x000008, "Member 'WrestlerAbilityState_CauldronOfBlood_Explosion_MontageCompleted::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived \ +static_assert(alignof(WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived) == 0x000008, "Wrong alignment on WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived"); \ +static_assert(sizeof(WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived) == 0x0000B8, "Wrong size on WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived, InEventTag) == 0x000000, "Member 'WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived, InEventData) == 0x000008, "Member 'WrestlerAbilityState_CauldronOfBlood_Explosion_OwnerMontageEventReceived::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion \ +static_assert(alignof(WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion) == 0x000008, "Wrong alignment on WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion"); \ +static_assert(sizeof(WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion) == 0x000010, "Wrong size on WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion"); \ +static_assert(offsetof(WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion, InTargets) == 0x000000, "Member 'WrestlerAbilityState_CauldronOfBlood_Explosion_TargetsOnExplosion::InTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityState_CauldronOfBlood_Explosion \ +static_assert(alignof(UWrestlerAbilityState_CauldronOfBlood_Explosion) == 0x000008, "Wrong alignment on UWrestlerAbilityState_CauldronOfBlood_Explosion"); \ +static_assert(sizeof(UWrestlerAbilityState_CauldronOfBlood_Explosion) == 0x000148, "Wrong size on UWrestlerAbilityState_CauldronOfBlood_Explosion"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, MontageToPlay) == 0x0000B8, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, MontageTagWaitingFor) == 0x0000C0, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::MontageTagWaitingFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, Target) == 0x0000E0, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, MontageToPlayOnTarget) == 0x0000E8, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::MontageToPlayOnTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, PlayMontageAndWaitForEventOwner) == 0x000138, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::PlayMontageAndWaitForEventOwner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityState_CauldronOfBlood_Explosion, PlayMontageAndWaitForEventTarget) == 0x000140, "Member 'UWrestlerAbilityState_CauldronOfBlood_Explosion::PlayMontageAndWaitForEventTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_GetBloodResonanceType \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_GetBloodResonanceType) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_GetBloodResonanceType"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_GetBloodResonanceType) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_GetBloodResonanceType"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_GetBloodResonanceType, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_GetBloodResonanceType::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_GetBloodResonanceType, ReturnValue) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_GetBloodResonanceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType, ReturnValue) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_GetXPBloodResonanceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_K2_SpawnEnemy \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy) == 0x000010, "Wrong alignment on WrestlerEnemyFunctionLibrary_K2_SpawnEnemy"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy) == 0x000080, "Wrong size on WrestlerEnemyFunctionLibrary_K2_SpawnEnemy"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_K2_SpawnEnemy::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy, InTransform) == 0x000010, "Member 'WrestlerEnemyFunctionLibrary_K2_SpawnEnemy::InTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy, InEnemyClass) == 0x000070, "Member 'WrestlerEnemyFunctionLibrary_K2_SpawnEnemy::InEnemyClass' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_K2_SpawnEnemy, ReturnValue) == 0x000078, "Member 'WrestlerEnemyFunctionLibrary_K2_SpawnEnemy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes) == 0x000018, "Wrong size on WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes, CanTick) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes::CanTick' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes, TickInterval) == 0x00000C, "Member 'WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes::TickInterval' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes, MaxDrawDistance) == 0x000010, "Member 'WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes::MaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes, CanCastShadows) == 0x000014, "Member 'WrestlerEnemyFunctionLibrary_OptimizeCharacterProfileMeshes::CanCastShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent, InAgent) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent, InTaskData) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_RegisterTaskOverrideForAgent::InTaskData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_SetBloodResonanceType \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_SetBloodResonanceType) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_SetBloodResonanceType"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_SetBloodResonanceType) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_SetBloodResonanceType"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetBloodResonanceType, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_SetBloodResonanceType::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetBloodResonanceType, InBloodResonanceType) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_SetBloodResonanceType::InBloodResonanceType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance, MaxDrawDistance) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesDrawDistance::MaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick, CanTick) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick::CanTick' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick, TickInterval) == 0x00000C, "Member 'WrestlerEnemyFunctionLibrary_SetCharacterProfileMeshesTick::TickInterval' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_SetUseStunGlow \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_SetUseStunGlow) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_SetUseStunGlow"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_SetUseStunGlow) == 0x000018, "Wrong size on WrestlerEnemyFunctionLibrary_SetUseStunGlow"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetUseStunGlow, Actor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_SetUseStunGlow::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetUseStunGlow, InUseStunGlow) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_SetUseStunGlow::InUseStunGlow' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SetUseStunGlow, InParamName) == 0x00000C, "Member 'WrestlerEnemyFunctionLibrary_SetUseStunGlow::InParamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred) == 0x000068, "Wrong size on WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred, InSpawner) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred::InSpawner' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred, InSpawnParams) == 0x000030, "Member 'WrestlerEnemyFunctionLibrary_SpawnEnemyDeferred::InSpawnParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides) == 0x000008, "Wrong size on WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides, InWorld) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_UnregisterAllTaskOverrides::InWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent) == 0x000008, "Wrong size on WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent, InAgent) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_UnregisterTaskOverrideForAgent::InAgent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter) == 0x000010, "Wrong size on WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter, bIsHiddenInGame) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_WrestlerFreezeCharacter::bIsHiddenInGame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent) == 0x000040, "Wrong size on WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InNoiseLocation) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InNoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InLoudness) == 0x000020, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InLoudness' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InInstigator) == 0x000028, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InMaxRange) == 0x000030, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InMaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent, InTag) == 0x000034, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportNoiseEvent::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent) == 0x000038, "Wrong size on WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent, InEventLocation) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent::InEventLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent, InInstigator) == 0x000020, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent::InInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent, InMaxRange) == 0x000028, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent::InMaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent, InTag) == 0x00002C, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation) == 0x000050, "Wrong size on WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InEventLocation) == 0x000008, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InEventLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InPredictedLocation) == 0x000020, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InPredictedLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InInstigator) == 0x000038, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InMaxRange) == 0x000040, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InMaxRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation, InTag) == 0x000044, "Member 'WrestlerEnemyFunctionLibrary_WrestlerReportSightEvent_PredictedLocation::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter \ +static_assert(alignof(WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter) == 0x000008, "Wrong alignment on WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter"); \ +static_assert(sizeof(WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter) == 0x000008, "Wrong size on WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter"); \ +static_assert(offsetof(WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter, InActor) == 0x000000, "Member 'WrestlerEnemyFunctionLibrary_WrestlerUnFreezeCharacter::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyFunctionLibrary \ +static_assert(alignof(UWrestlerEnemyFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerEnemyFunctionLibrary"); \ +static_assert(sizeof(UWrestlerEnemyFunctionLibrary) == 0x000028, "Wrong size on UWrestlerEnemyFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_AWrestlerAbilitySystemCharacter \ +static_assert(alignof(AWrestlerAbilitySystemCharacter) == 0x000010, "Wrong alignment on AWrestlerAbilitySystemCharacter"); \ +static_assert(sizeof(AWrestlerAbilitySystemCharacter) == 0x000690, "Wrong size on AWrestlerAbilitySystemCharacter"); \ +static_assert(offsetof(AWrestlerAbilitySystemCharacter, AbilitySystemComponent) == 0x000680, "Member 'AWrestlerAbilitySystemCharacter::AbilitySystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_UseAbility \ +static_assert(alignof(UWrestlerBTTask_UseAbility) == 0x000008, "Wrong alignment on UWrestlerBTTask_UseAbility"); \ +static_assert(sizeof(UWrestlerBTTask_UseAbility) == 0x0000B0, "Wrong size on UWrestlerBTTask_UseAbility"); \ +static_assert(offsetof(UWrestlerBTTask_UseAbility, GameplayAbilityTag) == 0x000098, "Member 'UWrestlerBTTask_UseAbility::GameplayAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_UseAbility, QuestAbilityTag) == 0x0000A0, "Member 'UWrestlerBTTask_UseAbility::QuestAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_UseAbility, bUseBlackboardTarget) == 0x0000A8, "Member 'UWrestlerBTTask_UseAbility::bUseBlackboardTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_UsePathPointAbility \ +static_assert(alignof(UWrestlerBTTask_UsePathPointAbility) == 0x000008, "Wrong alignment on UWrestlerBTTask_UsePathPointAbility"); \ +static_assert(sizeof(UWrestlerBTTask_UsePathPointAbility) == 0x0000D8, "Wrong size on UWrestlerBTTask_UsePathPointAbility"); \ +static_assert(offsetof(UWrestlerBTTask_UsePathPointAbility, PatrolPointKey) == 0x0000B0, "Member 'UWrestlerBTTask_UsePathPointAbility::PatrolPointKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassHighlightTranslator \ +static_assert(alignof(UWrestlerMassHighlightTranslator) == 0x000010, "Wrong alignment on UWrestlerMassHighlightTranslator"); \ +static_assert(sizeof(UWrestlerMassHighlightTranslator) == 0x0003C0, "Wrong size on UWrestlerMassHighlightTranslator"); \ +static_assert(offsetof(UWrestlerMassHighlightTranslator, UpdateRate) == 0x000380, "Member 'UWrestlerMassHighlightTranslator::UpdateRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassHighlightTranslator, PoliceHighlightVFXActorClass) == 0x000388, "Member 'UWrestlerMassHighlightTranslator::PoliceHighlightVFXActorClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassHighlightTranslator, LoadedPoliceHighlightVFXActorClass) == 0x0003B0, "Member 'UWrestlerMassHighlightTranslator::LoadedPoliceHighlightVFXActorClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAbilitySystemActor \ +static_assert(alignof(AWrestlerAbilitySystemActor) == 0x000008, "Wrong alignment on AWrestlerAbilitySystemActor"); \ +static_assert(sizeof(AWrestlerAbilitySystemActor) == 0x0002A8, "Wrong size on AWrestlerAbilitySystemActor"); \ +static_assert(offsetof(AWrestlerAbilitySystemActor, AbilitySystemComponent) == 0x0002A0, "Member 'AWrestlerAbilitySystemActor::AbilitySystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskScore_GetDebugName \ +static_assert(alignof(WrestlerTaskScore_GetDebugName) == 0x000004, "Wrong alignment on WrestlerTaskScore_GetDebugName"); \ +static_assert(sizeof(WrestlerTaskScore_GetDebugName) == 0x000008, "Wrong size on WrestlerTaskScore_GetDebugName"); \ +static_assert(offsetof(WrestlerTaskScore_GetDebugName, ReturnValue) == 0x000000, "Member 'WrestlerTaskScore_GetDebugName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskScore_GetScore \ +static_assert(alignof(WrestlerTaskScore_GetScore) == 0x000008, "Wrong alignment on WrestlerTaskScore_GetScore"); \ +static_assert(sizeof(WrestlerTaskScore_GetScore) == 0x000018, "Wrong size on WrestlerTaskScore_GetScore"); \ +static_assert(offsetof(WrestlerTaskScore_GetScore, InAgent) == 0x000000, "Member 'WrestlerTaskScore_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskScore_GetScore, InTargetPawn) == 0x000008, "Member 'WrestlerTaskScore_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskScore_GetScore, ReturnValue) == 0x000010, "Member 'WrestlerTaskScore_GetScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore \ +static_assert(alignof(UWrestlerTaskScore) == 0x000008, "Wrong alignment on UWrestlerTaskScore"); \ +static_assert(sizeof(UWrestlerTaskScore) == 0x000030, "Wrong size on UWrestlerTaskScore"); \ +static_assert(offsetof(UWrestlerTaskScore, Weight) == 0x000028, "Member 'UWrestlerTaskScore::Weight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore, bIsAbsoluteRequirement) == 0x00002C, "Member 'UWrestlerTaskScore::bIsAbsoluteRequirement' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore, bInvertScore) == 0x00002D, "Member 'UWrestlerTaskScore::bInvertScore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_TargetHealth \ +static_assert(alignof(UWrestlerTaskScore_TargetHealth) == 0x000008, "Wrong alignment on UWrestlerTaskScore_TargetHealth"); \ +static_assert(sizeof(UWrestlerTaskScore_TargetHealth) == 0x000030, "Wrong size on UWrestlerTaskScore_TargetHealth"); \ + +#define DUMPER7_ASSERTS_UWrestlerAnimInstance \ +static_assert(alignof(UWrestlerAnimInstance) == 0x000010, "Wrong alignment on UWrestlerAnimInstance"); \ +static_assert(sizeof(UWrestlerAnimInstance) == 0x000370, "Wrong size on UWrestlerAnimInstance"); \ +static_assert(offsetof(UWrestlerAnimInstance, FocalPoint) == 0x000350, "Member 'UWrestlerAnimInstance::FocalPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameBase \ +static_assert(alignof(UWrestlerSaveGameBase) == 0x000008, "Wrong alignment on UWrestlerSaveGameBase"); \ +static_assert(sizeof(UWrestlerSaveGameBase) == 0x000088, "Wrong size on UWrestlerSaveGameBase"); \ +static_assert(offsetof(UWrestlerSaveGameBase, UserIndex) == 0x000028, "Member 'UWrestlerSaveGameBase::UserIndex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameBase, SaveSlotName) == 0x000030, "Member 'UWrestlerSaveGameBase::SaveSlotName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameBase, DateTimeStamp) == 0x000040, "Member 'UWrestlerSaveGameBase::DateTimeStamp' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameBase, BuildVersion) == 0x000048, "Member 'UWrestlerSaveGameBase::BuildVersion' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameBase, SaveGameTitle) == 0x000058, "Member 'UWrestlerSaveGameBase::SaveGameTitle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameBase, SaveGameDescription) == 0x000070, "Member 'UWrestlerSaveGameBase::SaveGameDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameDummy \ +static_assert(alignof(UWrestlerSaveGameDummy) == 0x000008, "Wrong alignment on UWrestlerSaveGameDummy"); \ +static_assert(sizeof(UWrestlerSaveGameDummy) == 0x000088, "Wrong size on UWrestlerSaveGameDummy"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor \ +static_assert(alignof(WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor) == 0x000018, "Wrong size on WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor, Actor) == 0x000000, "Member 'WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor, LookForComponent) == 0x000008, "Member 'WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor::LookForComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor, ReturnValue) == 0x000010, "Member 'WrestlerAbilitySystemComponent_GetAbilitySystemComponentFromActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace \ +static_assert(alignof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace) == 0x0001A8, "Wrong size on WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace, InOtherActor) == 0x000000, "Member 'WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace, InHitResult) == 0x000008, "Member 'WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace, InEventTag) == 0x0000F0, "Member 'WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace, ReturnValue) == 0x0000F8, "Member 'WrestlerAbilitySystemComponent_MakeHitEventDataFromLineTrace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_SetEnableMoveTo \ +static_assert(alignof(WrestlerAbilitySystemComponent_SetEnableMoveTo) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_SetEnableMoveTo"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_SetEnableMoveTo) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_SetEnableMoveTo"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_SetEnableMoveTo, bInNewMoveTo) == 0x000000, "Member 'WrestlerAbilitySystemComponent_SetEnableMoveTo::bInNewMoveTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_SetEnableRotateTo \ +static_assert(alignof(WrestlerAbilitySystemComponent_SetEnableRotateTo) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_SetEnableRotateTo"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_SetEnableRotateTo) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_SetEnableRotateTo"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_SetEnableRotateTo, bInNewRotateTo) == 0x000000, "Member 'WrestlerAbilitySystemComponent_SetEnableRotateTo::bInNewRotateTo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_CurrentGameplayEffects \ +static_assert(alignof(WrestlerAbilitySystemComponent_CurrentGameplayEffects) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_CurrentGameplayEffects"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_CurrentGameplayEffects) == 0x000010, "Wrong size on WrestlerAbilitySystemComponent_CurrentGameplayEffects"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_CurrentGameplayEffects, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_CurrentGameplayEffects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_CurrentGameplayTagContainer \ +static_assert(alignof(WrestlerAbilitySystemComponent_CurrentGameplayTagContainer) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_CurrentGameplayTagContainer"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_CurrentGameplayTagContainer) == 0x000020, "Wrong size on WrestlerAbilitySystemComponent_CurrentGameplayTagContainer"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_CurrentGameplayTagContainer, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_CurrentGameplayTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_CurrentGameplayTags \ +static_assert(alignof(WrestlerAbilitySystemComponent_CurrentGameplayTags) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_CurrentGameplayTags"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_CurrentGameplayTags) == 0x000010, "Wrong size on WrestlerAbilitySystemComponent_CurrentGameplayTags"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_CurrentGameplayTags, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_CurrentGameplayTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven \ +static_assert(alignof(WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_GetCharacterAbilitiesGiven::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_GetDefaultAbilityLevel \ +static_assert(alignof(WrestlerAbilitySystemComponent_GetDefaultAbilityLevel) == 0x000004, "Wrong alignment on WrestlerAbilitySystemComponent_GetDefaultAbilityLevel"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_GetDefaultAbilityLevel) == 0x000004, "Wrong size on WrestlerAbilitySystemComponent_GetDefaultAbilityLevel"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetDefaultAbilityLevel, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_GetDefaultAbilityLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_GetStartupEffectsApplied \ +static_assert(alignof(WrestlerAbilitySystemComponent_GetStartupEffectsApplied) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_GetStartupEffectsApplied"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_GetStartupEffectsApplied) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_GetStartupEffectsApplied"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_GetStartupEffectsApplied, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_GetStartupEffectsApplied::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_HasTag \ +static_assert(alignof(WrestlerAbilitySystemComponent_HasTag) == 0x000004, "Wrong alignment on WrestlerAbilitySystemComponent_HasTag"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_HasTag) == 0x00000C, "Wrong size on WrestlerAbilitySystemComponent_HasTag"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_HasTag, TagToGet) == 0x000000, "Member 'WrestlerAbilitySystemComponent_HasTag::TagToGet' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_HasTag, ReturnValue) == 0x000008, "Member 'WrestlerAbilitySystemComponent_HasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_IsInvincible \ +static_assert(alignof(WrestlerAbilitySystemComponent_IsInvincible) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_IsInvincible"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_IsInvincible) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_IsInvincible"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_IsInvincible, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_IsInvincible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_IsInvisible \ +static_assert(alignof(WrestlerAbilitySystemComponent_IsInvisible) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_IsInvisible"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_IsInvisible) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_IsInvisible"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_IsInvisible, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_IsInvisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_IsNinja \ +static_assert(alignof(WrestlerAbilitySystemComponent_IsNinja) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_IsNinja"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_IsNinja) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_IsNinja"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_IsNinja, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_IsNinja::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_IsSilent \ +static_assert(alignof(WrestlerAbilitySystemComponent_IsSilent) == 0x000001, "Wrong alignment on WrestlerAbilitySystemComponent_IsSilent"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_IsSilent) == 0x000001, "Wrong size on WrestlerAbilitySystemComponent_IsSilent"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_IsSilent, ReturnValue) == 0x000000, "Member 'WrestlerAbilitySystemComponent_IsSilent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemComponent_MakeEffectContextWithHit \ +static_assert(alignof(WrestlerAbilitySystemComponent_MakeEffectContextWithHit) == 0x000008, "Wrong alignment on WrestlerAbilitySystemComponent_MakeEffectContextWithHit"); \ +static_assert(sizeof(WrestlerAbilitySystemComponent_MakeEffectContextWithHit) == 0x000100, "Wrong size on WrestlerAbilitySystemComponent_MakeEffectContextWithHit"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeEffectContextWithHit, Hit) == 0x000000, "Member 'WrestlerAbilitySystemComponent_MakeEffectContextWithHit::Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemComponent_MakeEffectContextWithHit, Context) == 0x0000E8, "Member 'WrestlerAbilitySystemComponent_MakeEffectContextWithHit::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilitySystemComponent \ +static_assert(alignof(UWrestlerAbilitySystemComponent) == 0x000008, "Wrong alignment on UWrestlerAbilitySystemComponent"); \ +static_assert(sizeof(UWrestlerAbilitySystemComponent) == 0x001288, "Wrong size on UWrestlerAbilitySystemComponent"); \ +static_assert(offsetof(UWrestlerAbilitySystemComponent, Invincible) == 0x001250, "Member 'UWrestlerAbilitySystemComponent::Invincible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemComponent, Invisible) == 0x001258, "Member 'UWrestlerAbilitySystemComponent::Invisible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemComponent, Silent) == 0x001260, "Member 'UWrestlerAbilitySystemComponent::Silent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemComponent, AbilitiesData) == 0x001270, "Member 'UWrestlerAbilitySystemComponent::AbilitiesData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyCombatConfigDataAsset \ +static_assert(alignof(UWrestlerEnemyCombatConfigDataAsset) == 0x000008, "Wrong alignment on UWrestlerEnemyCombatConfigDataAsset"); \ +static_assert(sizeof(UWrestlerEnemyCombatConfigDataAsset) == 0x000120, "Wrong size on UWrestlerEnemyCombatConfigDataAsset"); \ +static_assert(offsetof(UWrestlerEnemyCombatConfigDataAsset, DefaultEnemyBehaviours) == 0x000030, "Member 'UWrestlerEnemyCombatConfigDataAsset::DefaultEnemyBehaviours' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatConfigDataAsset, EnemyCombatBehaviours) == 0x000080, "Member 'UWrestlerEnemyCombatConfigDataAsset::EnemyCombatBehaviours' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyCombatConfigDataAsset, BaseSubTeams) == 0x0000D0, "Member 'UWrestlerEnemyCombatConfigDataAsset::BaseSubTeams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPropsRemovedProcessor \ +static_assert(alignof(UWrestlerPropsRemovedProcessor) == 0x000008, "Wrong alignment on UWrestlerPropsRemovedProcessor"); \ +static_assert(sizeof(UWrestlerPropsRemovedProcessor) == 0x000370, "Wrong size on UWrestlerPropsRemovedProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent \ +static_assert(alignof(WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent) == 0x000008, "Wrong alignment on WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent"); \ +static_assert(sizeof(WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent) == 0x000010, "Wrong size on WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent"); \ +static_assert(offsetof(WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent, Actor) == 0x000000, "Member 'WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent, ReturnValue) == 0x000008, "Member 'WrestlerAbilitySystemGlobals_GetWrestlerAbilitySystemComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilitySystemGlobals_SetTagsFromSubClass \ +static_assert(alignof(WrestlerAbilitySystemGlobals_SetTagsFromSubClass) == 0x000008, "Wrong alignment on WrestlerAbilitySystemGlobals_SetTagsFromSubClass"); \ +static_assert(sizeof(WrestlerAbilitySystemGlobals_SetTagsFromSubClass) == 0x000008, "Wrong size on WrestlerAbilitySystemGlobals_SetTagsFromSubClass"); \ +static_assert(offsetof(WrestlerAbilitySystemGlobals_SetTagsFromSubClass, InAbilitySystemGlobals) == 0x000000, "Member 'WrestlerAbilitySystemGlobals_SetTagsFromSubClass::InAbilitySystemGlobals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilitySystemGlobals \ +static_assert(alignof(UWrestlerAbilitySystemGlobals) == 0x000008, "Wrong alignment on UWrestlerAbilitySystemGlobals"); \ +static_assert(sizeof(UWrestlerAbilitySystemGlobals) == 0x000590, "Wrong size on UWrestlerAbilitySystemGlobals"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, LoadedAbilitiesDataAssets) == 0x0002A8, "Member 'UWrestlerAbilitySystemGlobals::LoadedAbilitiesDataAssets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, PreLoadedAbilities) == 0x0002F8, "Member 'UWrestlerAbilitySystemGlobals::PreLoadedAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, SprintTag) == 0x000348, "Member 'UWrestlerAbilitySystemGlobals::SprintTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, CrouchTag) == 0x000350, "Member 'UWrestlerAbilitySystemGlobals::CrouchTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, SlideTag) == 0x000358, "Member 'UWrestlerAbilitySystemGlobals::SlideTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, JumpTag) == 0x000360, "Member 'UWrestlerAbilitySystemGlobals::JumpTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, GlideTag) == 0x000368, "Member 'UWrestlerAbilitySystemGlobals::GlideTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, OutOfCombatTag) == 0x000370, "Member 'UWrestlerAbilitySystemGlobals::OutOfCombatTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, RegenTag) == 0x000378, "Member 'UWrestlerAbilitySystemGlobals::RegenTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, StunnedTag) == 0x000380, "Member 'UWrestlerAbilitySystemGlobals::StunnedTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, StunRegenerableTag) == 0x000388, "Member 'UWrestlerAbilitySystemGlobals::StunRegenerableTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DeadTag) == 0x000390, "Member 'UWrestlerAbilitySystemGlobals::DeadTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, NoDeathTag) == 0x000398, "Member 'UWrestlerAbilitySystemGlobals::NoDeathTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, Invincible) == 0x0003A0, "Member 'UWrestlerAbilitySystemGlobals::Invincible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, Invisible) == 0x0003A8, "Member 'UWrestlerAbilitySystemGlobals::Invisible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, FeedableTag) == 0x0003B0, "Member 'UWrestlerAbilitySystemGlobals::FeedableTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, NoKillTag) == 0x0003B8, "Member 'UWrestlerAbilitySystemGlobals::NoKillTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, RangedTag) == 0x0003C0, "Member 'UWrestlerAbilitySystemGlobals::RangedTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, PedestrianDefaultDeathTag) == 0x0003C8, "Member 'UWrestlerAbilitySystemGlobals::PedestrianDefaultDeathTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, LeaderTag) == 0x0003D0, "Member 'UWrestlerAbilitySystemGlobals::LeaderTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, FollowerTag) == 0x0003D8, "Member 'UWrestlerAbilitySystemGlobals::FollowerTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, FrozenTag) == 0x0003E0, "Member 'UWrestlerAbilitySystemGlobals::FrozenTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, PauseDetectionTag) == 0x0003E8, "Member 'UWrestlerAbilitySystemGlobals::PauseDetectionTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, PauseTargetPickingTag) == 0x0003F0, "Member 'UWrestlerAbilitySystemGlobals::PauseTargetPickingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, BlockPropagationTag) == 0x0003F8, "Member 'UWrestlerAbilitySystemGlobals::BlockPropagationTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, PedestrianTag) == 0x000400, "Member 'UWrestlerAbilitySystemGlobals::PedestrianTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, VampiricVisionTag) == 0x000408, "Member 'UWrestlerAbilitySystemGlobals::VampiricVisionTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, MovementTags) == 0x000410, "Member 'UWrestlerAbilitySystemGlobals::MovementTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, CouldNotActivateTags) == 0x000460, "Member 'UWrestlerAbilitySystemGlobals::CouldNotActivateTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, StunDamageEffect) == 0x0004B0, "Member 'UWrestlerAbilitySystemGlobals::StunDamageEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, StunDataTag) == 0x0004B8, "Member 'UWrestlerAbilitySystemGlobals::StunDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageEffect) == 0x0004C0, "Member 'UWrestlerAbilitySystemGlobals::DamageEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageReactCue) == 0x0004C8, "Member 'UWrestlerAbilitySystemGlobals::DamageReactCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageDataTag) == 0x0004D0, "Member 'UWrestlerAbilitySystemGlobals::DamageDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, MuteTag) == 0x0004D8, "Member 'UWrestlerAbilitySystemGlobals::MuteTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, BlindTag) == 0x0004E0, "Member 'UWrestlerAbilitySystemGlobals::BlindTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DeafTag) == 0x0004E8, "Member 'UWrestlerAbilitySystemGlobals::DeafTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AttackingTag) == 0x0004F0, "Member 'UWrestlerAbilitySystemGlobals::AttackingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AIPatrolStateTag) == 0x0004F8, "Member 'UWrestlerAbilitySystemGlobals::AIPatrolStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AIHeightenedStateTag) == 0x000500, "Member 'UWrestlerAbilitySystemGlobals::AIHeightenedStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AIInvestigateStateTag) == 0x000508, "Member 'UWrestlerAbilitySystemGlobals::AIInvestigateStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AICombatStateTag) == 0x000510, "Member 'UWrestlerAbilitySystemGlobals::AICombatStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, AIChaseStateTag) == 0x000518, "Member 'UWrestlerAbilitySystemGlobals::AIChaseStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, CombatStateTag) == 0x000520, "Member 'UWrestlerAbilitySystemGlobals::CombatStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, HeightenedStateTag) == 0x000528, "Member 'UWrestlerAbilitySystemGlobals::HeightenedStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, HostileSearchStateTag) == 0x000530, "Member 'UWrestlerAbilitySystemGlobals::HostileSearchStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, EmptyTaskBoardTag) == 0x000538, "Member 'UWrestlerAbilitySystemGlobals::EmptyTaskBoardTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, NoiseEventTag) == 0x000540, "Member 'UWrestlerAbilitySystemGlobals::NoiseEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, ContinuousNoiseEventTag) == 0x000548, "Member 'UWrestlerAbilitySystemGlobals::ContinuousNoiseEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, InstantNoiseEventTag) == 0x000550, "Member 'UWrestlerAbilitySystemGlobals::InstantNoiseEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, SightEventTag) == 0x000558, "Member 'UWrestlerAbilitySystemGlobals::SightEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, VampireSpeciesTag) == 0x000560, "Member 'UWrestlerAbilitySystemGlobals::VampireSpeciesTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageImmuneAgainstAllTag) == 0x000568, "Member 'UWrestlerAbilitySystemGlobals::DamageImmuneAgainstAllTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageImmuneAgainstEnemiesTag) == 0x000570, "Member 'UWrestlerAbilitySystemGlobals::DamageImmuneAgainstEnemiesTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, DamageImmuneAgainstPlayerTag) == 0x000578, "Member 'UWrestlerAbilitySystemGlobals::DamageImmuneAgainstPlayerTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, WasAwareOfPlayerTag) == 0x000580, "Member 'UWrestlerAbilitySystemGlobals::WasAwareOfPlayerTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilitySystemGlobals, BeingFedOnTag) == 0x000588, "Member 'UWrestlerAbilitySystemGlobals::BeingFedOnTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTargetActorData_SphereTrace \ +static_assert(alignof(UWrestlerAbilityTargetActorData_SphereTrace) == 0x000008, "Wrong alignment on UWrestlerAbilityTargetActorData_SphereTrace"); \ +static_assert(sizeof(UWrestlerAbilityTargetActorData_SphereTrace) == 0x0000A8, "Wrong size on UWrestlerAbilityTargetActorData_SphereTrace"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, Radius) == 0x000030, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, bTraceByChannel) == 0x000034, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::bTraceByChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, bReticleUseEyeLocation) == 0x000035, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::bReticleUseEyeLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, bPitchRangeReduction) == 0x000036, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::bPitchRangeReduction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, PitchedRange) == 0x000038, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::PitchedRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, Channel) == 0x00003C, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::Channel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, MaxRange) == 0x000040, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, TraceProfile) == 0x000044, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::TraceProfile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, bTraceAffectsAimPitch) == 0x00004C, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::bTraceAffectsAimPitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, TargetingStartLocationSocketName) == 0x000050, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::TargetingStartLocationSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, Filter) == 0x000058, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, ReticleClass) == 0x000078, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::ReticleClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetActorData_SphereTrace, bDebug) == 0x0000A0, "Member 'UWrestlerAbilityTargetActorData_SphereTrace::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBaseMapWidget \ +static_assert(alignof(UWrestlerBaseMapWidget) == 0x000008, "Wrong alignment on UWrestlerBaseMapWidget"); \ +static_assert(sizeof(UWrestlerBaseMapWidget) == 0x000400, "Wrong size on UWrestlerBaseMapWidget"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapMarkersPoolClass) == 0x0002C8, "Member 'UWrestlerBaseMapWidget::MapMarkersPoolClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, OverrideMarkerForPool) == 0x0002D0, "Member 'UWrestlerBaseMapWidget::OverrideMarkerForPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, OverridePoolForCategory) == 0x000320, "Member 'UWrestlerBaseMapWidget::OverridePoolForCategory' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapZoneImage) == 0x000370, "Member 'UWrestlerBaseMapWidget::MapZoneImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapZoneCanvas) == 0x000378, "Member 'UWrestlerBaseMapWidget::MapZoneCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapPoolsCanvas) == 0x000380, "Member 'UWrestlerBaseMapWidget::MapPoolsCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, GTCategoryAndPool) == 0x000388, "Member 'UWrestlerBaseMapWidget::GTCategoryAndPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapZoneActor) == 0x0003E8, "Member 'UWrestlerBaseMapWidget::MapZoneActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseMapWidget, MapDataAsset) == 0x0003F0, "Member 'UWrestlerBaseMapWidget::MapDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassGetIntoPositionAnimationTrait \ +static_assert(alignof(UWrestlerMassGetIntoPositionAnimationTrait) == 0x000008, "Wrong alignment on UWrestlerMassGetIntoPositionAnimationTrait"); \ +static_assert(sizeof(UWrestlerMassGetIntoPositionAnimationTrait) == 0x000040, "Wrong size on UWrestlerMassGetIntoPositionAnimationTrait"); \ +static_assert(offsetof(UWrestlerMassGetIntoPositionAnimationTrait, AnimationData) == 0x000028, "Member 'UWrestlerMassGetIntoPositionAnimationTrait::AnimationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask \ +static_assert(alignof(UWrestlerAbilityTask) == 0x000008, "Wrong alignment on UWrestlerAbilityTask"); \ +static_assert(sizeof(UWrestlerAbilityTask) == 0x0000A0, "Wrong size on UWrestlerAbilityTask"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_AngleFromTarget \ +static_assert(alignof(UWrestlerTaskScore_AngleFromTarget) == 0x000008, "Wrong alignment on UWrestlerTaskScore_AngleFromTarget"); \ +static_assert(sizeof(UWrestlerTaskScore_AngleFromTarget) == 0x000040, "Wrong size on UWrestlerTaskScore_AngleFromTarget"); \ +static_assert(offsetof(UWrestlerTaskScore_AngleFromTarget, MaxAngleFromTarget) == 0x000030, "Member 'UWrestlerTaskScore_AngleFromTarget::MaxAngleFromTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore_AngleFromTarget, bShouldDistanceCheck) == 0x000034, "Member 'UWrestlerTaskScore_AngleFromTarget::bShouldDistanceCheck' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore_AngleFromTarget, MaxDistance) == 0x000038, "Member 'UWrestlerTaskScore_AngleFromTarget::MaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataStateSuccessFailure \ +static_assert(alignof(UWrestlerAutomataStateSuccessFailure) == 0x000008, "Wrong alignment on UWrestlerAutomataStateSuccessFailure"); \ +static_assert(sizeof(UWrestlerAutomataStateSuccessFailure) == 0x000088, "Wrong size on UWrestlerAutomataStateSuccessFailure"); \ +static_assert(offsetof(UWrestlerAutomataStateSuccessFailure, SuccessObjective) == 0x000078, "Member 'UWrestlerAutomataStateSuccessFailure::SuccessObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAutomataStateSuccessFailure, FailureObjective) == 0x000080, "Member 'UWrestlerAutomataStateSuccessFailure::FailureObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveSettingsGlobal \ +static_assert(alignof(UWrestlerSaveSettingsGlobal) == 0x000008, "Wrong alignment on UWrestlerSaveSettingsGlobal"); \ +static_assert(sizeof(UWrestlerSaveSettingsGlobal) == 0x000070, "Wrong size on UWrestlerSaveSettingsGlobal"); \ +static_assert(offsetof(UWrestlerSaveSettingsGlobal, CurrentSaveGameClass) == 0x000038, "Member 'UWrestlerSaveSettingsGlobal::CurrentSaveGameClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSettingsGlobal, PerPlatformSettings) == 0x000060, "Member 'UWrestlerSaveSettingsGlobal::PerPlatformSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay \ +static_assert(alignof(WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay) == 0x000008, "Wrong alignment on WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay"); \ +static_assert(sizeof(WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay) == 0x000018, "Wrong size on WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay"); \ +static_assert(offsetof(WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay, Duration) == 0x000008, "Member 'WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay::Duration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay, ReturnValue) == 0x000010, "Member 'WrestlerAbilityTask_ActorTimeDelay_ActorTimeDelay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_ActorTimeDelay \ +static_assert(alignof(UWrestlerAbilityTask_ActorTimeDelay) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_ActorTimeDelay"); \ +static_assert(sizeof(UWrestlerAbilityTask_ActorTimeDelay) == 0x0000A0, "Wrong size on UWrestlerAbilityTask_ActorTimeDelay"); \ +static_assert(offsetof(UWrestlerAbilityTask_ActorTimeDelay, OnFinish) == 0x000080, "Member 'UWrestlerAbilityTask_ActorTimeDelay::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_ActorTimeDelay, OwnerActor) == 0x000094, "Member 'UWrestlerAbilityTask_ActorTimeDelay::OwnerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementSetData_GetMovementSetByTag \ +static_assert(alignof(WrestlerMovementSetData_GetMovementSetByTag) == 0x000004, "Wrong alignment on WrestlerMovementSetData_GetMovementSetByTag"); \ +static_assert(sizeof(WrestlerMovementSetData_GetMovementSetByTag) == 0x000024, "Wrong size on WrestlerMovementSetData_GetMovementSetByTag"); \ +static_assert(offsetof(WrestlerMovementSetData_GetMovementSetByTag, Tag) == 0x000000, "Member 'WrestlerMovementSetData_GetMovementSetByTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementSetData_GetMovementSetByTag, MovementSetInfo) == 0x000008, "Member 'WrestlerMovementSetData_GetMovementSetByTag::MovementSetInfo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementSetData_GetMovementSetByTag, ReturnValue) == 0x000020, "Member 'WrestlerMovementSetData_GetMovementSetByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMovementSetData \ +static_assert(alignof(UWrestlerMovementSetData) == 0x000008, "Wrong alignment on UWrestlerMovementSetData"); \ +static_assert(sizeof(UWrestlerMovementSetData) == 0x000088, "Wrong size on UWrestlerMovementSetData"); \ +static_assert(offsetof(UWrestlerMovementSetData, Sets) == 0x000030, "Member 'UWrestlerMovementSetData::Sets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementSetData, SprintSpeed) == 0x000080, "Member 'UWrestlerMovementSetData::SprintSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementSetData, SprintAcceleration) == 0x000084, "Member 'UWrestlerMovementSetData::SprintAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AimAssist_WrestlerAimAssist \ +static_assert(alignof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist) == 0x000008, "Wrong alignment on WrestlerAbilityTask_AimAssist_WrestlerAimAssist"); \ +static_assert(sizeof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist) == 0x000048, "Wrong size on WrestlerAbilityTask_AimAssist_WrestlerAimAssist"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, TargetActor_0) == 0x000010, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, bUseTargetEyeLocation_0) == 0x000018, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::bUseTargetEyeLocation_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, bUsePitch_0) == 0x000019, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::bUsePitch_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, TargetLocation_0) == 0x000020, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::TargetLocation_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, Strength_0) == 0x000038, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, Duration_0) == 0x00003C, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssist, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance \ +static_assert(alignof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance) == 0x000008, "Wrong alignment on WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance"); \ +static_assert(sizeof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance) == 0x000030, "Wrong size on WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, TargetActor_0) == 0x000010, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, bUseTargetEyeLocation_0) == 0x000018, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::bUseTargetEyeLocation_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, bUsePitch_0) == 0x000019, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::bUsePitch_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, Strength_0) == 0x00001C, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, MaxDistance) == 0x000020, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance, ReturnValue) == 0x000028, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistByDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket \ +static_assert(alignof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket) == 0x000008, "Wrong alignment on WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket"); \ +static_assert(sizeof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket) == 0x000060, "Wrong size on WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, TargetActor_0) == 0x000010, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, TargetSocketName_0) == 0x000018, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::TargetSocketName_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, bUsePitch_0) == 0x000020, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::bUsePitch_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, bClampPitch) == 0x000021, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::bClampPitch' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, MinClampDegrees) == 0x000024, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::MinClampDegrees' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, MaxClampDegrees) == 0x000028, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::MaxClampDegrees' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, TargetOffset) == 0x000030, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::TargetOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, Strength_0) == 0x000048, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, Duration_0) == 0x00004C, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, bDebugDraw) == 0x000050, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::bDebugDraw' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket, ReturnValue) == 0x000058, "Member 'WrestlerAbilityTask_AimAssist_WrestlerAimAssistToSocket::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_AimAssist \ +static_assert(alignof(UWrestlerAbilityTask_AimAssist) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_AimAssist"); \ +static_assert(sizeof(UWrestlerAbilityTask_AimAssist) == 0x000180, "Wrong size on UWrestlerAbilityTask_AimAssist"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_AimAssist::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, OnEnded) == 0x000090, "Member 'UWrestlerAbilityTask_AimAssist::OnEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, TargetActor) == 0x0000A0, "Member 'UWrestlerAbilityTask_AimAssist::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, bUseTargetEyeLocation) == 0x0000A8, "Member 'UWrestlerAbilityTask_AimAssist::bUseTargetEyeLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, bUsePitch) == 0x0000A9, "Member 'UWrestlerAbilityTask_AimAssist::bUsePitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, TargetLocation) == 0x0000B0, "Member 'UWrestlerAbilityTask_AimAssist::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, Strength) == 0x000140, "Member 'UWrestlerAbilityTask_AimAssist::Strength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, Duration) == 0x000144, "Member 'UWrestlerAbilityTask_AimAssist::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, OwningController) == 0x000150, "Member 'UWrestlerAbilityTask_AimAssist::OwningController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssist, TargetSocketName) == 0x000158, "Member 'UWrestlerAbilityTask_AimAssist::TargetSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting \ +static_assert(alignof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting) == 0x000008, "Wrong alignment on WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting"); \ +static_assert(sizeof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting) == 0x0000D8, "Wrong size on WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting, InAimAssistTargetSettingsStruct) == 0x000010, "Member 'WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting::InAimAssistTargetSettingsStruct' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting, ReturnValue) == 0x0000D0, "Member 'WrestlerAbilityTask_AimAssistWithTargetting_WrestlerAimAssistWithTargetting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_AimAssistWithTargetting \ +static_assert(alignof(UWrestlerAbilityTask_AimAssistWithTargetting) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_AimAssistWithTargetting"); \ +static_assert(sizeof(UWrestlerAbilityTask_AimAssistWithTargetting) == 0x000220, "Wrong size on UWrestlerAbilityTask_AimAssistWithTargetting"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, ChosenActor) == 0x000080, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::ChosenActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, PotentialActor) == 0x000088, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::PotentialActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, PreviousChosenActor) == 0x000090, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::PreviousChosenActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, bShouldUseSocket) == 0x000098, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::bShouldUseSocket' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, SocketName) == 0x00009C, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::SocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, TargetLocationOffset) == 0x0000A8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, Strength) == 0x000140, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::Strength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, OwningController) == 0x000148, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::OwningController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, bIsUsingMouse) == 0x000160, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::bIsUsingMouse' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, SpawnedTargetReticle) == 0x0001A0, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::SpawnedTargetReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, SpawnedChosenTargetReticle) == 0x0001A8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::SpawnedChosenTargetReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, SpawnedPotentialTargetReticle) == 0x0001B0, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::SpawnedPotentialTargetReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, UnlockLookInputThreshold) == 0x0001B8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::UnlockLookInputThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, PauseAimAssistTag) == 0x0001C8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::PauseAimAssistTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, AimAssistActiveStateTag) == 0x0001D0, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::AimAssistActiveStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, AimAssistBlockedTags) == 0x0001D8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::AimAssistBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, YawStrengthCurve) == 0x0001F8, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::YawStrengthCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, PitchStrengthCurve) == 0x000200, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::PitchStrengthCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, StrengthAlpha) == 0x000208, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::StrengthAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, StrengthAlphaFadeTime) == 0x00020C, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::StrengthAlphaFadeTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AimAssistWithTargetting, CurrentAlphaTime) == 0x000210, "Member 'UWrestlerAbilityTask_AimAssistWithTargetting::CurrentAlphaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBehaviorTreeComponent_StartBehaviorTree \ +static_assert(alignof(WrestlerBehaviorTreeComponent_StartBehaviorTree) == 0x000008, "Wrong alignment on WrestlerBehaviorTreeComponent_StartBehaviorTree"); \ +static_assert(sizeof(WrestlerBehaviorTreeComponent_StartBehaviorTree) == 0x000030, "Wrong size on WrestlerBehaviorTreeComponent_StartBehaviorTree"); \ +static_assert(offsetof(WrestlerBehaviorTreeComponent_StartBehaviorTree, InAsset) == 0x000000, "Member 'WrestlerBehaviorTreeComponent_StartBehaviorTree::InAsset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBehaviorTreeComponent_StartBehaviorTree, bInSingleRun) == 0x000028, "Member 'WrestlerBehaviorTreeComponent_StartBehaviorTree::bInSingleRun' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBehaviorTreeComponent \ +static_assert(alignof(UWrestlerBehaviorTreeComponent) == 0x000008, "Wrong alignment on UWrestlerBehaviorTreeComponent"); \ +static_assert(sizeof(UWrestlerBehaviorTreeComponent) == 0x0002B8, "Wrong size on UWrestlerBehaviorTreeComponent"); \ +static_assert(offsetof(UWrestlerBehaviorTreeComponent, BehaviorTree) == 0x000290, "Member 'UWrestlerBehaviorTreeComponent::BehaviorTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AirJump_WrestlerAirJump \ +static_assert(alignof(WrestlerAbilityTask_AirJump_WrestlerAirJump) == 0x000008, "Wrong alignment on WrestlerAbilityTask_AirJump_WrestlerAirJump"); \ +static_assert(sizeof(WrestlerAbilityTask_AirJump_WrestlerAirJump) == 0x000028, "Wrong size on WrestlerAbilityTask_AirJump_WrestlerAirJump"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, AirJumpStrength_0) == 0x000010, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::AirJumpStrength_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, FallSpeedMultiplier_0) == 0x000014, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::FallSpeedMultiplier_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, FallSpeedMinimum_0) == 0x000018, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::FallSpeedMinimum_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_WrestlerAirJump, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_AirJump_WrestlerAirJump::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_AirJump_MovementModeChanged \ +static_assert(alignof(WrestlerAbilityTask_AirJump_MovementModeChanged) == 0x000001, "Wrong alignment on WrestlerAbilityTask_AirJump_MovementModeChanged"); \ +static_assert(sizeof(WrestlerAbilityTask_AirJump_MovementModeChanged) == 0x000001, "Wrong size on WrestlerAbilityTask_AirJump_MovementModeChanged"); \ +static_assert(offsetof(WrestlerAbilityTask_AirJump_MovementModeChanged, NewMovementMode) == 0x000000, "Member 'WrestlerAbilityTask_AirJump_MovementModeChanged::NewMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_AirJump \ +static_assert(alignof(UWrestlerAbilityTask_AirJump) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_AirJump"); \ +static_assert(sizeof(UWrestlerAbilityTask_AirJump) == 0x0000B8, "Wrong size on UWrestlerAbilityTask_AirJump"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_AirJump::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, OnMovementModeChanged) == 0x000090, "Member 'UWrestlerAbilityTask_AirJump::OnMovementModeChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, AirJumpStrength) == 0x0000A0, "Member 'UWrestlerAbilityTask_AirJump::AirJumpStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, FallSpeedMultiplier) == 0x0000A4, "Member 'UWrestlerAbilityTask_AirJump::FallSpeedMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, FallSpeedMinimum) == 0x0000A8, "Member 'UWrestlerAbilityTask_AirJump::FallSpeedMinimum' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_AirJump, InitialVelocitySpeed) == 0x0000AC, "Member 'UWrestlerAbilityTask_AirJump::InitialVelocitySpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease \ +static_assert(alignof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease) == 0x000020, "Wrong size on WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease, bTestAlreadyReleased) == 0x000008, "Member 'WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease::bTestAlreadyReleased' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease, CueToWaitFor) == 0x000010, "Member 'WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease::CueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_WaitInputReleased_WrestlerWaitInputRelease::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitInputReleased_OnInputReleased \ +static_assert(alignof(WrestlerAbilityTask_WaitInputReleased_OnInputReleased) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitInputReleased_OnInputReleased"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitInputReleased_OnInputReleased) == 0x000008, "Wrong size on WrestlerAbilityTask_WaitInputReleased_OnInputReleased"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitInputReleased_OnInputReleased, CuePressed) == 0x000000, "Member 'WrestlerAbilityTask_WaitInputReleased_OnInputReleased::CuePressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitInputReleased \ +static_assert(alignof(UWrestlerAbilityTask_WaitInputReleased) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitInputReleased"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitInputReleased) == 0x0000A8, "Wrong size on UWrestlerAbilityTask_WaitInputReleased"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitInputReleased, OnRelease) == 0x000080, "Member 'UWrestlerAbilityTask_WaitInputReleased::OnRelease' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit \ +static_assert(alignof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit) == 0x000008, "Wrong alignment on WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit"); \ +static_assert(sizeof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit) == 0x0000E0, "Wrong size on WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InHitData) == 0x000010, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InHitData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InEventTag) == 0x000018, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InEventData) == 0x000020, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InIsHitFreezeDisabled) == 0x0000D0, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InIsHitFreezeDisabled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, InAudioHitMagnitude) == 0x0000D4, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::InAudioHitMagnitude' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit, ReturnValue) == 0x0000D8, "Member 'WrestlerAbilityTask_ApplyHit_WrestlerAbilityTask_ApplyHit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_ApplyHit \ +static_assert(alignof(UWrestlerAbilityTask_ApplyHit) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_ApplyHit"); \ +static_assert(sizeof(UWrestlerAbilityTask_ApplyHit) == 0x000148, "Wrong size on UWrestlerAbilityTask_ApplyHit"); \ +static_assert(offsetof(UWrestlerAbilityTask_ApplyHit, HitData) == 0x000080, "Member 'UWrestlerAbilityTask_ApplyHit::HitData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Crouch_WrestlerCrouch \ +static_assert(alignof(WrestlerAbilityTask_Crouch_WrestlerCrouch) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Crouch_WrestlerCrouch"); \ +static_assert(sizeof(WrestlerAbilityTask_Crouch_WrestlerCrouch) == 0x000068, "Wrong size on WrestlerAbilityTask_Crouch_WrestlerCrouch"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, CancelAbilityQuery_0) == 0x000010, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::CancelAbilityQuery_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, bCanJumpOutOfCrouch_0) == 0x000058, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::bCanJumpOutOfCrouch_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, bToggleCrouch_0) == 0x000059, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::bToggleCrouch_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_WrestlerCrouch, ReturnValue) == 0x000060, "Member 'WrestlerAbilityTask_Crouch_WrestlerCrouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated \ +static_assert(alignof(WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated"); \ +static_assert(sizeof(WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated) == 0x000008, "Wrong size on WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated"); \ +static_assert(offsetof(WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated, CancellingAbility) == 0x000000, "Member 'WrestlerAbilityTask_Crouch_OnAnotherAbilityActivated::CancellingAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Crouch \ +static_assert(alignof(UWrestlerAbilityTask_Crouch) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Crouch"); \ +static_assert(sizeof(UWrestlerAbilityTask_Crouch) == 0x0000F0, "Wrong size on UWrestlerAbilityTask_Crouch"); \ +static_assert(offsetof(UWrestlerAbilityTask_Crouch, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_Crouch::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Crouch, CancelAbilityQuery) == 0x000090, "Member 'UWrestlerAbilityTask_Crouch::CancelAbilityQuery' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Crouch, bCanJumpOutOfCrouch) == 0x0000D8, "Member 'UWrestlerAbilityTask_Crouch::bCanJumpOutOfCrouch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Crouch, bToggleCrouch) == 0x0000D9, "Member 'UWrestlerAbilityTask_Crouch::bToggleCrouch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Decoy_OnDamaged \ +static_assert(alignof(WrestlerAbilityTask_Decoy_OnDamaged) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Decoy_OnDamaged"); \ +static_assert(sizeof(WrestlerAbilityTask_Decoy_OnDamaged) == 0x000010, "Wrong size on WrestlerAbilityTask_Decoy_OnDamaged"); \ +static_assert(offsetof(WrestlerAbilityTask_Decoy_OnDamaged, InDamage) == 0x000000, "Member 'WrestlerAbilityTask_Decoy_OnDamaged::InDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Decoy_OnDamaged, InDamageInstigator) == 0x000008, "Member 'WrestlerAbilityTask_Decoy_OnDamaged::InDamageInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Decoy_OnSpawned \ +static_assert(alignof(WrestlerAbilityTask_Decoy_OnSpawned) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Decoy_OnSpawned"); \ +static_assert(sizeof(WrestlerAbilityTask_Decoy_OnSpawned) == 0x000008, "Wrong size on WrestlerAbilityTask_Decoy_OnSpawned"); \ +static_assert(offsetof(WrestlerAbilityTask_Decoy_OnSpawned, InActor) == 0x000000, "Member 'WrestlerAbilityTask_Decoy_OnSpawned::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Decoy \ +static_assert(alignof(UWrestlerAbilityTask_Decoy) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_Decoy"); \ +static_assert(sizeof(UWrestlerAbilityTask_Decoy) == 0x000170, "Wrong size on UWrestlerAbilityTask_Decoy"); \ +static_assert(offsetof(UWrestlerAbilityTask_Decoy, DecoyInstance) == 0x0000F8, "Member 'UWrestlerAbilityTask_Decoy::DecoyInstance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Decoy, AttributeSet) == 0x000160, "Member 'UWrestlerAbilityTask_Decoy::AttributeSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointIndicator_RefreshWidget \ +static_assert(alignof(WrestlerWaypointIndicator_RefreshWidget) == 0x000008, "Wrong alignment on WrestlerWaypointIndicator_RefreshWidget"); \ +static_assert(sizeof(WrestlerWaypointIndicator_RefreshWidget) == 0x000008, "Wrong size on WrestlerWaypointIndicator_RefreshWidget"); \ +static_assert(offsetof(WrestlerWaypointIndicator_RefreshWidget, InTargetActor) == 0x000000, "Member 'WrestlerWaypointIndicator_RefreshWidget::InTargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointIndicator_SetDistanceVisibility \ +static_assert(alignof(WrestlerWaypointIndicator_SetDistanceVisibility) == 0x000001, "Wrong alignment on WrestlerWaypointIndicator_SetDistanceVisibility"); \ +static_assert(sizeof(WrestlerWaypointIndicator_SetDistanceVisibility) == 0x000001, "Wrong size on WrestlerWaypointIndicator_SetDistanceVisibility"); \ +static_assert(offsetof(WrestlerWaypointIndicator_SetDistanceVisibility, InVisibility) == 0x000000, "Member 'WrestlerWaypointIndicator_SetDistanceVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWaypointIndicator \ +static_assert(alignof(UWrestlerWaypointIndicator) == 0x000008, "Wrong alignment on UWrestlerWaypointIndicator"); \ +static_assert(sizeof(UWrestlerWaypointIndicator) == 0x0002F0, "Wrong size on UWrestlerWaypointIndicator"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, IndicatorPanel) == 0x0002C8, "Member 'UWrestlerWaypointIndicator::IndicatorPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, WaypointDistanceText) == 0x0002D0, "Member 'UWrestlerWaypointIndicator::WaypointDistanceText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, bDisplayDirWaypoint) == 0x0002D8, "Member 'UWrestlerWaypointIndicator::bDisplayDirWaypoint' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, WaypointAngle) == 0x0002DC, "Member 'UWrestlerWaypointIndicator::WaypointAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, DisappearingDistance) == 0x0002E0, "Member 'UWrestlerWaypointIndicator::DisappearingDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointIndicator, TestPeriod) == 0x0002E4, "Member 'UWrestlerWaypointIndicator::TestPeriod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBloodResonanceWaypoint \ +static_assert(alignof(UWrestlerBloodResonanceWaypoint) == 0x000008, "Wrong alignment on UWrestlerBloodResonanceWaypoint"); \ +static_assert(sizeof(UWrestlerBloodResonanceWaypoint) == 0x000358, "Wrong size on UWrestlerBloodResonanceWaypoint"); \ +static_assert(offsetof(UWrestlerBloodResonanceWaypoint, WaypointImage) == 0x0002F0, "Member 'UWrestlerBloodResonanceWaypoint::WaypointImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceWaypoint, ThreshDistanceToForceShowIcon) == 0x0002F8, "Member 'UWrestlerBloodResonanceWaypoint::ThreshDistanceToForceShowIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceWaypoint, WaypointsDisplayData) == 0x000300, "Member 'UWrestlerBloodResonanceWaypoint::WaypointsDisplayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Deploy_OnMontageCancelled \ +static_assert(alignof(WrestlerAbilityTask_Deploy_OnMontageCancelled) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Deploy_OnMontageCancelled"); \ +static_assert(sizeof(WrestlerAbilityTask_Deploy_OnMontageCancelled) == 0x0000B8, "Wrong size on WrestlerAbilityTask_Deploy_OnMontageCancelled"); \ +static_assert(offsetof(WrestlerAbilityTask_Deploy_OnMontageCancelled, EventTag) == 0x000000, "Member 'WrestlerAbilityTask_Deploy_OnMontageCancelled::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Deploy_OnMontageCancelled, EventData) == 0x000008, "Member 'WrestlerAbilityTask_Deploy_OnMontageCancelled::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Deploy_OnMontageEventReceived \ +static_assert(alignof(WrestlerAbilityTask_Deploy_OnMontageEventReceived) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Deploy_OnMontageEventReceived"); \ +static_assert(sizeof(WrestlerAbilityTask_Deploy_OnMontageEventReceived) == 0x0000B8, "Wrong size on WrestlerAbilityTask_Deploy_OnMontageEventReceived"); \ +static_assert(offsetof(WrestlerAbilityTask_Deploy_OnMontageEventReceived, EventTag) == 0x000000, "Member 'WrestlerAbilityTask_Deploy_OnMontageEventReceived::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Deploy_OnMontageEventReceived, EventData) == 0x000008, "Member 'WrestlerAbilityTask_Deploy_OnMontageEventReceived::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Deploy \ +static_assert(alignof(UWrestlerAbilityTask_Deploy) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Deploy"); \ +static_assert(sizeof(UWrestlerAbilityTask_Deploy) == 0x0000D0, "Wrong size on UWrestlerAbilityTask_Deploy"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_OnTargetPerceptionInfoUpdated \ +static_assert(alignof(WrestlerAwareness_OnTargetPerceptionInfoUpdated) == 0x000008, "Wrong alignment on WrestlerAwareness_OnTargetPerceptionInfoUpdated"); \ +static_assert(sizeof(WrestlerAwareness_OnTargetPerceptionInfoUpdated) == 0x000068, "Wrong size on WrestlerAwareness_OnTargetPerceptionInfoUpdated"); \ +static_assert(offsetof(WrestlerAwareness_OnTargetPerceptionInfoUpdated, InUpdateInfo) == 0x000000, "Member 'WrestlerAwareness_OnTargetPerceptionInfoUpdated::InUpdateInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_IsActiveStimulusSight \ +static_assert(alignof(WrestlerAwareness_IsActiveStimulusSight) == 0x000001, "Wrong alignment on WrestlerAwareness_IsActiveStimulusSight"); \ +static_assert(sizeof(WrestlerAwareness_IsActiveStimulusSight) == 0x000001, "Wrong size on WrestlerAwareness_IsActiveStimulusSight"); \ +static_assert(offsetof(WrestlerAwareness_IsActiveStimulusSight, ReturnValue) == 0x000000, "Member 'WrestlerAwareness_IsActiveStimulusSight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_IsLastPlayerStimulusSight \ +static_assert(alignof(WrestlerAwareness_IsLastPlayerStimulusSight) == 0x000001, "Wrong alignment on WrestlerAwareness_IsLastPlayerStimulusSight"); \ +static_assert(sizeof(WrestlerAwareness_IsLastPlayerStimulusSight) == 0x000001, "Wrong size on WrestlerAwareness_IsLastPlayerStimulusSight"); \ +static_assert(offsetof(WrestlerAwareness_IsLastPlayerStimulusSight, ReturnValue) == 0x000000, "Member 'WrestlerAwareness_IsLastPlayerStimulusSight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAwareness \ +static_assert(alignof(UWrestlerAwareness) == 0x000008, "Wrong alignment on UWrestlerAwareness"); \ +static_assert(sizeof(UWrestlerAwareness) == 0x0001B8, "Wrong size on UWrestlerAwareness"); \ +static_assert(offsetof(UWrestlerAwareness, LastSightStimulusInfo) == 0x000028, "Member 'UWrestlerAwareness::LastSightStimulusInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness, LastHearingStimulusInfo) == 0x000090, "Member 'UWrestlerAwareness::LastHearingStimulusInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness, ActiveStimulus) == 0x0000F8, "Member 'UWrestlerAwareness::ActiveStimulus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness, LastPlayerStimulus) == 0x000150, "Member 'UWrestlerAwareness::LastPlayerStimulus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness, Owner) == 0x0001A8, "Member 'UWrestlerAwareness::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_OnStateTreeTagsAdded \ +static_assert(alignof(WrestlerAwareness_Default_OnStateTreeTagsAdded) == 0x000008, "Wrong alignment on WrestlerAwareness_Default_OnStateTreeTagsAdded"); \ +static_assert(sizeof(WrestlerAwareness_Default_OnStateTreeTagsAdded) == 0x000020, "Wrong size on WrestlerAwareness_Default_OnStateTreeTagsAdded"); \ +static_assert(offsetof(WrestlerAwareness_Default_OnStateTreeTagsAdded, InAddedTags) == 0x000000, "Member 'WrestlerAwareness_Default_OnStateTreeTagsAdded::InAddedTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_OwnerChangedTeams \ +static_assert(alignof(WrestlerAwareness_Default_OwnerChangedTeams) == 0x000008, "Wrong alignment on WrestlerAwareness_Default_OwnerChangedTeams"); \ +static_assert(sizeof(WrestlerAwareness_Default_OwnerChangedTeams) == 0x000010, "Wrong size on WrestlerAwareness_Default_OwnerChangedTeams"); \ +static_assert(offsetof(WrestlerAwareness_Default_OwnerChangedTeams, InController) == 0x000000, "Member 'WrestlerAwareness_Default_OwnerChangedTeams::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_OwnerChangedTeams, InTeam) == 0x000008, "Member 'WrestlerAwareness_Default_OwnerChangedTeams::InTeam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_SensedActorChangedTeams \ +static_assert(alignof(WrestlerAwareness_Default_SensedActorChangedTeams) == 0x000008, "Wrong alignment on WrestlerAwareness_Default_SensedActorChangedTeams"); \ +static_assert(sizeof(WrestlerAwareness_Default_SensedActorChangedTeams) == 0x000010, "Wrong size on WrestlerAwareness_Default_SensedActorChangedTeams"); \ +static_assert(offsetof(WrestlerAwareness_Default_SensedActorChangedTeams, InSensedController) == 0x000000, "Member 'WrestlerAwareness_Default_SensedActorChangedTeams::InSensedController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_SensedActorChangedTeams, InTeam) == 0x000008, "Member 'WrestlerAwareness_Default_SensedActorChangedTeams::InTeam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_CanSeePlayer \ +static_assert(alignof(WrestlerAwareness_Default_CanSeePlayer) == 0x000001, "Wrong alignment on WrestlerAwareness_Default_CanSeePlayer"); \ +static_assert(sizeof(WrestlerAwareness_Default_CanSeePlayer) == 0x000001, "Wrong size on WrestlerAwareness_Default_CanSeePlayer"); \ +static_assert(offsetof(WrestlerAwareness_Default_CanSeePlayer, ReturnValue) == 0x000000, "Member 'WrestlerAwareness_Default_CanSeePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_CanSeeTag \ +static_assert(alignof(WrestlerAwareness_Default_CanSeeTag) == 0x000008, "Wrong alignment on WrestlerAwareness_Default_CanSeeTag"); \ +static_assert(sizeof(WrestlerAwareness_Default_CanSeeTag) == 0x000020, "Wrong size on WrestlerAwareness_Default_CanSeeTag"); \ +static_assert(offsetof(WrestlerAwareness_Default_CanSeeTag, GameplayTag) == 0x000000, "Member 'WrestlerAwareness_Default_CanSeeTag::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_CanSeeTag, SightAge) == 0x000008, "Member 'WrestlerAwareness_Default_CanSeeTag::SightAge' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_CanSeeTag, SeenActor) == 0x000010, "Member 'WrestlerAwareness_Default_CanSeeTag::SeenActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_CanSeeTag, ReturnValue) == 0x000018, "Member 'WrestlerAwareness_Default_CanSeeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAwareness_Default_GetTimeSinceLastSawTarget \ +static_assert(alignof(WrestlerAwareness_Default_GetTimeSinceLastSawTarget) == 0x000008, "Wrong alignment on WrestlerAwareness_Default_GetTimeSinceLastSawTarget"); \ +static_assert(sizeof(WrestlerAwareness_Default_GetTimeSinceLastSawTarget) == 0x000010, "Wrong size on WrestlerAwareness_Default_GetTimeSinceLastSawTarget"); \ +static_assert(offsetof(WrestlerAwareness_Default_GetTimeSinceLastSawTarget, InActor) == 0x000000, "Member 'WrestlerAwareness_Default_GetTimeSinceLastSawTarget::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAwareness_Default_GetTimeSinceLastSawTarget, ReturnValue) == 0x000008, "Member 'WrestlerAwareness_Default_GetTimeSinceLastSawTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAwareness_Default \ +static_assert(alignof(UWrestlerAwareness_Default) == 0x000008, "Wrong alignment on UWrestlerAwareness_Default"); \ +static_assert(sizeof(UWrestlerAwareness_Default) == 0x000358, "Wrong size on UWrestlerAwareness_Default"); \ +static_assert(offsetof(UWrestlerAwareness_Default, TargetPicker) == 0x0001C8, "Member 'UWrestlerAwareness_Default::TargetPicker' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, DeadBodyIdentifier) == 0x0001D8, "Member 'UWrestlerAwareness_Default::DeadBodyIdentifier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, Config) == 0x0001E0, "Member 'UWrestlerAwareness_Default::Config' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, UpdatePeriod) == 0x0001E8, "Member 'UWrestlerAwareness_Default::UpdatePeriod' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, TargetAwarenessValues) == 0x0001F8, "Member 'UWrestlerAwareness_Default::TargetAwarenessValues' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, DefaultAwarenessConfig) == 0x000248, "Member 'UWrestlerAwareness_Default::DefaultAwarenessConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, PerStateAwarenessConfigs) == 0x000250, "Member 'UWrestlerAwareness_Default::PerStateAwarenessConfigs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, VisibleTagTracking) == 0x0002A0, "Member 'UWrestlerAwareness_Default::VisibleTagTracking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, AudibleTagTracking) == 0x0002F0, "Member 'UWrestlerAwareness_Default::AudibleTagTracking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwareness_Default, WorldContextObject) == 0x000340, "Member 'UWrestlerAwareness_Default::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck \ +static_assert(alignof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck) == 0x000008, "Wrong alignment on WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck"); \ +static_assert(sizeof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck) == 0x000028, "Wrong size on WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck"); \ +static_assert(offsetof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck, InTargetActor) == 0x000010, "Member 'WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck, InMaxDistance) == 0x000018, "Member 'WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck::InMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_DisplacementCheck_WrestlerDisplacementCheck::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_DisplacementCheck \ +static_assert(alignof(UWrestlerAbilityTask_DisplacementCheck) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_DisplacementCheck"); \ +static_assert(sizeof(UWrestlerAbilityTask_DisplacementCheck) == 0x0000D8, "Wrong size on UWrestlerAbilityTask_DisplacementCheck"); \ +static_assert(offsetof(UWrestlerAbilityTask_DisplacementCheck, OnDisplacementReached) == 0x0000A0, "Member 'UWrestlerAbilityTask_DisplacementCheck::OnDisplacementReached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_DisplacementCheck, TargetActor) == 0x0000B0, "Member 'UWrestlerAbilityTask_DisplacementCheck::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassResetEntityProcessor \ +static_assert(alignof(UWrestlerMassResetEntityProcessor) == 0x000008, "Wrong alignment on UWrestlerMassResetEntityProcessor"); \ +static_assert(sizeof(UWrestlerMassResetEntityProcessor) == 0x000370, "Wrong size on UWrestlerMassResetEntityProcessor"); \ +static_assert(offsetof(UWrestlerMassResetEntityProcessor, RespawnMinimumDistanceFromPlayer) == 0x000360, "Member 'UWrestlerMassResetEntityProcessor::RespawnMinimumDistanceFromPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassResetEntityProcessor, RespawnMaximumDistanceFromPlayer) == 0x000364, "Member 'UWrestlerMassResetEntityProcessor::RespawnMaximumDistanceFromPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassResetEntityProcessor, LaneIterationGap) == 0x000368, "Member 'UWrestlerMassResetEntityProcessor::LaneIterationGap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_EmitFear \ +static_assert(alignof(UWrestlerAbilityTask_EmitFear) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_EmitFear"); \ +static_assert(sizeof(UWrestlerAbilityTask_EmitFear) == 0x0000B8, "Wrong size on UWrestlerAbilityTask_EmitFear"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_EnemyClimb_EnemyClimb \ +static_assert(alignof(WrestlerAbilityTask_EnemyClimb_EnemyClimb) == 0x000008, "Wrong alignment on WrestlerAbilityTask_EnemyClimb_EnemyClimb"); \ +static_assert(sizeof(WrestlerAbilityTask_EnemyClimb_EnemyClimb) == 0x000020, "Wrong size on WrestlerAbilityTask_EnemyClimb_EnemyClimb"); \ +static_assert(offsetof(WrestlerAbilityTask_EnemyClimb_EnemyClimb, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_EnemyClimb_EnemyClimb::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_EnemyClimb_EnemyClimb, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_EnemyClimb_EnemyClimb::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_EnemyClimb_EnemyClimb, InClimbAnimMontage) == 0x000010, "Member 'WrestlerAbilityTask_EnemyClimb_EnemyClimb::InClimbAnimMontage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_EnemyClimb_EnemyClimb, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_EnemyClimb_EnemyClimb::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_EnemyClimb \ +static_assert(alignof(UWrestlerAbilityTask_EnemyClimb) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_EnemyClimb"); \ +static_assert(sizeof(UWrestlerAbilityTask_EnemyClimb) == 0x0000D0, "Wrong size on UWrestlerAbilityTask_EnemyClimb"); \ +static_assert(offsetof(UWrestlerAbilityTask_EnemyClimb, OnFinishEnemyClimb) == 0x0000A0, "Member 'UWrestlerAbilityTask_EnemyClimb::OnFinishEnemyClimb' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_EnemyClimb, OwnerAbility) == 0x0000B0, "Member 'UWrestlerAbilityTask_EnemyClimb::OwnerAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_EnemyClimb, ClimbMontage) == 0x0000B8, "Member 'UWrestlerAbilityTask_EnemyClimb::ClimbMontage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_EnemyClimb, MovementComponent) == 0x0000C0, "Member 'UWrestlerAbilityTask_EnemyClimb::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_EnemyClimb, Controller) == 0x0000C8, "Member 'UWrestlerAbilityTask_EnemyClimb::Controller' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_BlueprintBase \ +static_assert(alignof(UWrestlerBTDecorator_BlueprintBase) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_BlueprintBase"); \ +static_assert(sizeof(UWrestlerBTDecorator_BlueprintBase) == 0x0000A0, "Wrong size on UWrestlerBTDecorator_BlueprintBase"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatStateInterface_IsInCombat \ +static_assert(alignof(WrestlerCombatStateInterface_IsInCombat) == 0x000001, "Wrong alignment on WrestlerCombatStateInterface_IsInCombat"); \ +static_assert(sizeof(WrestlerCombatStateInterface_IsInCombat) == 0x000001, "Wrong size on WrestlerCombatStateInterface_IsInCombat"); \ +static_assert(offsetof(WrestlerCombatStateInterface_IsInCombat, ReturnValue) == 0x000000, "Member 'WrestlerCombatStateInterface_IsInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatStateInterface_OnCombatStateChanged \ +static_assert(alignof(WrestlerCombatStateInterface_OnCombatStateChanged) == 0x000001, "Wrong alignment on WrestlerCombatStateInterface_OnCombatStateChanged"); \ +static_assert(sizeof(WrestlerCombatStateInterface_OnCombatStateChanged) == 0x000001, "Wrong size on WrestlerCombatStateInterface_OnCombatStateChanged"); \ +static_assert(offsetof(WrestlerCombatStateInterface_OnCombatStateChanged, bOutIsInCombat) == 0x000000, "Member 'WrestlerCombatStateInterface_OnCombatStateChanged::bOutIsInCombat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerCombatStateInterface \ +static_assert(alignof(IWrestlerCombatStateInterface) == 0x000001, "Wrong alignment on IWrestlerCombatStateInterface"); \ +static_assert(sizeof(IWrestlerCombatStateInterface) == 0x000001, "Wrong size on IWrestlerCombatStateInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_FaceActor_WrestlerFaceActor \ +static_assert(alignof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_FaceActor_WrestlerFaceActor"); \ +static_assert(sizeof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor) == 0x000048, "Wrong size on WrestlerAbilityTask_FaceActor_WrestlerFaceActor"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, InTargetActor) == 0x000010, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, InEventTag) == 0x000018, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, InLocationToFace) == 0x000020, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::InLocationToFace' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, bInDebug) == 0x000038, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::bInDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FaceActor_WrestlerFaceActor, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_FaceActor_WrestlerFaceActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_FaceActor \ +static_assert(alignof(UWrestlerAbilityTask_FaceActor) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_FaceActor"); \ +static_assert(sizeof(UWrestlerAbilityTask_FaceActor) == 0x0000C8, "Wrong size on UWrestlerAbilityTask_FaceActor"); \ +static_assert(offsetof(UWrestlerAbilityTask_FaceActor, OnTargetEvaded) == 0x000080, "Member 'UWrestlerAbilityTask_FaceActor::OnTargetEvaded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FaceActor, TargetActor) == 0x000090, "Member 'UWrestlerAbilityTask_FaceActor::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FaceActor, EventTag) == 0x000098, "Member 'UWrestlerAbilityTask_FaceActor::EventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FaceActor, LocationToFace) == 0x0000A0, "Member 'UWrestlerAbilityTask_FaceActor::LocationToFace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAudioSetup \ +static_assert(alignof(UWrestlerAudioSetup) == 0x000008, "Wrong alignment on UWrestlerAudioSetup"); \ +static_assert(sizeof(UWrestlerAudioSetup) == 0x0001C0, "Wrong size on UWrestlerAudioSetup"); \ +static_assert(offsetof(UWrestlerAudioSetup, FootwearSwitches) == 0x000030, "Member 'UWrestlerAudioSetup::FootwearSwitches' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSetup, ClothingMaterialSwitches) == 0x000080, "Member 'UWrestlerAudioSetup::ClothingMaterialSwitches' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSetup, SurfaceSwitches) == 0x0000D0, "Member 'UWrestlerAudioSetup::SurfaceSwitches' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSetup, MeleeSurfaceSwitchs) == 0x000120, "Member 'UWrestlerAudioSetup::MeleeSurfaceSwitchs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSetup, AbilitySwitches) == 0x000170, "Member 'UWrestlerAudioSetup::AbilitySwitches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_FistHitDetect_FistHitDetect \ +static_assert(alignof(WrestlerAbilityTask_FistHitDetect_FistHitDetect) == 0x000008, "Wrong alignment on WrestlerAbilityTask_FistHitDetect_FistHitDetect"); \ +static_assert(sizeof(WrestlerAbilityTask_FistHitDetect_FistHitDetect) == 0x000030, "Wrong size on WrestlerAbilityTask_FistHitDetect_FistHitDetect"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, InTraceOriginSocketName) == 0x000010, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::InTraceOriginSocketName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, TargetActor_0) == 0x000018, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::TargetActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, InTraceDistance) == 0x000020, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::InTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, InbDebugDraw) == 0x000024, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::InbDebugDraw' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_FistHitDetect_FistHitDetect, ReturnValue) == 0x000028, "Member 'WrestlerAbilityTask_FistHitDetect_FistHitDetect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_FistHitDetect \ +static_assert(alignof(UWrestlerAbilityTask_FistHitDetect) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_FistHitDetect"); \ +static_assert(sizeof(UWrestlerAbilityTask_FistHitDetect) == 0x0000C0, "Wrong size on UWrestlerAbilityTask_FistHitDetect"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, OnHit) == 0x000080, "Member 'UWrestlerAbilityTask_FistHitDetect::OnHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, OwningController) == 0x000090, "Member 'UWrestlerAbilityTask_FistHitDetect::OwningController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, TargetActor) == 0x000098, "Member 'UWrestlerAbilityTask_FistHitDetect::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, OwnerSkeletalMesh) == 0x0000A0, "Member 'UWrestlerAbilityTask_FistHitDetect::OwnerSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, TargetSkeletalMesh) == 0x0000A8, "Member 'UWrestlerAbilityTask_FistHitDetect::TargetSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_FistHitDetect, TraceOriginSocketName) == 0x0000B0, "Member 'UWrestlerAbilityTask_FistHitDetect::TraceOriginSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerSmartObjectDataActor \ +static_assert(alignof(AWrestlerSmartObjectDataActor) == 0x000008, "Wrong alignment on AWrestlerSmartObjectDataActor"); \ +static_assert(sizeof(AWrestlerSmartObjectDataActor) == 0x000298, "Wrong size on AWrestlerSmartObjectDataActor"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Glide_WrestlerGlide \ +static_assert(alignof(WrestlerAbilityTask_Glide_WrestlerGlide) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Glide_WrestlerGlide"); \ +static_assert(sizeof(WrestlerAbilityTask_Glide_WrestlerGlide) == 0x000090, "Wrong size on WrestlerAbilityTask_Glide_WrestlerGlide"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, OtherAbilityActive_0) == 0x000010, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::OtherAbilityActive_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, MovementModeChange_0) == 0x000058, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::MovementModeChange_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, GlideAcceleration_0) == 0x000068, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::GlideAcceleration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, AirControl_0) == 0x000080, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::AirControl_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_WrestlerGlide, ReturnValue) == 0x000088, "Member 'WrestlerAbilityTask_Glide_WrestlerGlide::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Glide_OnAbilityEnded \ +static_assert(alignof(WrestlerAbilityTask_Glide_OnAbilityEnded) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Glide_OnAbilityEnded"); \ +static_assert(sizeof(WrestlerAbilityTask_Glide_OnAbilityEnded) == 0x000008, "Wrong size on WrestlerAbilityTask_Glide_OnAbilityEnded"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_OnAbilityEnded, AbilityEnded) == 0x000000, "Member 'WrestlerAbilityTask_Glide_OnAbilityEnded::AbilityEnded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Glide_OnAnotherAbilityActivated \ +static_assert(alignof(WrestlerAbilityTask_Glide_OnAnotherAbilityActivated) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Glide_OnAnotherAbilityActivated"); \ +static_assert(sizeof(WrestlerAbilityTask_Glide_OnAnotherAbilityActivated) == 0x000008, "Wrong size on WrestlerAbilityTask_Glide_OnAnotherAbilityActivated"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_OnAnotherAbilityActivated, OtherAbility) == 0x000000, "Member 'WrestlerAbilityTask_Glide_OnAnotherAbilityActivated::OtherAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Glide_OnNewMovementMode \ +static_assert(alignof(WrestlerAbilityTask_Glide_OnNewMovementMode) == 0x000001, "Wrong alignment on WrestlerAbilityTask_Glide_OnNewMovementMode"); \ +static_assert(sizeof(WrestlerAbilityTask_Glide_OnNewMovementMode) == 0x000001, "Wrong size on WrestlerAbilityTask_Glide_OnNewMovementMode"); \ +static_assert(offsetof(WrestlerAbilityTask_Glide_OnNewMovementMode, NewMovementMode) == 0x000000, "Member 'WrestlerAbilityTask_Glide_OnNewMovementMode::NewMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Glide \ +static_assert(alignof(UWrestlerAbilityTask_Glide) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Glide"); \ +static_assert(sizeof(UWrestlerAbilityTask_Glide) == 0x000150, "Wrong size on UWrestlerAbilityTask_Glide"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_Glide::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, OnAbilityActivated) == 0x000090, "Member 'UWrestlerAbilityTask_Glide::OnAbilityActivated' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, OnMovementModeChanged) == 0x0000A0, "Member 'UWrestlerAbilityTask_Glide::OnMovementModeChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, OtherAbilityActive) == 0x0000B0, "Member 'UWrestlerAbilityTask_Glide::OtherAbilityActive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, MovementModeChange) == 0x0000F8, "Member 'UWrestlerAbilityTask_Glide::MovementModeChange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, GlideAcceleration) == 0x000108, "Member 'UWrestlerAbilityTask_Glide::GlideAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, AirControl) == 0x000120, "Member 'UWrestlerAbilityTask_Glide::AirControl' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Glide, CachedMovementComponent) == 0x000128, "Member 'UWrestlerAbilityTask_Glide::CachedMovementComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting \ +static_assert(alignof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting) == 0x000008, "Wrong alignment on WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting"); \ +static_assert(sizeof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting) == 0x000030, "Wrong size on WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, ReferenceActor_0) == 0x000010, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::ReferenceActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, ExpansionDuration) == 0x000018, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::ExpansionDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, MaxRadius) == 0x00001C, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::MaxRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, RefreshTargetListPeriod) == 0x000020, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::RefreshTargetListPeriod' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, RefreshTargetListPeriodDuringPulse) == 0x000024, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::RefreshTargetListPeriodDuringPulse' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting, ReturnValue) == 0x000028, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_WrestlerHeightenedSensesTargeting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius \ +static_assert(alignof(WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius) == 0x000004, "Wrong alignment on WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius"); \ +static_assert(sizeof(WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius) == 0x000004, "Wrong size on WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius, ReturnValue) == 0x000000, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_GetCurrentRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets \ +static_assert(alignof(WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets) == 0x000008, "Wrong alignment on WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets"); \ +static_assert(sizeof(WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets) == 0x000010, "Wrong size on WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets"); \ +static_assert(offsetof(WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets, ReturnValue) == 0x000000, "Member 'WrestlerAbilityTask_HeightenedSensesTargeting_GetTargets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_HeightenedSensesTargeting \ +static_assert(alignof(UWrestlerAbilityTask_HeightenedSensesTargeting) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_HeightenedSensesTargeting"); \ +static_assert(sizeof(UWrestlerAbilityTask_HeightenedSensesTargeting) == 0x000100, "Wrong size on UWrestlerAbilityTask_HeightenedSensesTargeting"); \ +static_assert(offsetof(UWrestlerAbilityTask_HeightenedSensesTargeting, OnTargetUpdate) == 0x0000A0, "Member 'UWrestlerAbilityTask_HeightenedSensesTargeting::OnTargetUpdate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_HeightenedSensesTargeting, ReferenceActor) == 0x0000D8, "Member 'UWrestlerAbilityTask_HeightenedSensesTargeting::ReferenceActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_HeightenedSensesTargeting, Targets) == 0x0000E0, "Member 'UWrestlerAbilityTask_HeightenedSensesTargeting::Targets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_HeightenedSensesTargeting, AllInterfaceUsers) == 0x0000F0, "Member 'UWrestlerAbilityTask_HeightenedSensesTargeting::AllInterfaceUsers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeraMenuUserSettings \ +static_assert(alignof(UHeraMenuUserSettings) == 0x000008, "Wrong alignment on UHeraMenuUserSettings"); \ +static_assert(sizeof(UHeraMenuUserSettings) == 0x000040, "Wrong size on UHeraMenuUserSettings"); \ +static_assert(offsetof(UHeraMenuUserSettings, bShowDebugPanels) == 0x000038, "Member 'UHeraMenuUserSettings::bShowDebugPanels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_HitBase \ +static_assert(alignof(UWrestlerAbilityTask_HitBase) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_HitBase"); \ +static_assert(sizeof(UWrestlerAbilityTask_HitBase) == 0x000090, "Wrong size on UWrestlerAbilityTask_HitBase"); \ +static_assert(offsetof(UWrestlerAbilityTask_HitBase, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_HitBase::OnCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBloodResonanceEventDataAsset \ +static_assert(alignof(UWrestlerBloodResonanceEventDataAsset) == 0x000008, "Wrong alignment on UWrestlerBloodResonanceEventDataAsset"); \ +static_assert(sizeof(UWrestlerBloodResonanceEventDataAsset) == 0x0000A8, "Wrong size on UWrestlerBloodResonanceEventDataAsset"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, MinTimeToStartSpawning) == 0x000030, "Member 'UWrestlerBloodResonanceEventDataAsset::MinTimeToStartSpawning' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, MinTimeBetweenSpawns) == 0x000034, "Member 'UWrestlerBloodResonanceEventDataAsset::MinTimeBetweenSpawns' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, MinSpawnDistance) == 0x000038, "Member 'UWrestlerBloodResonanceEventDataAsset::MinSpawnDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, MaxSpawnDistance) == 0x00003C, "Member 'UWrestlerBloodResonanceEventDataAsset::MaxSpawnDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, GlobalMaxNumEventsAtOnce) == 0x000040, "Member 'UWrestlerBloodResonanceEventDataAsset::GlobalMaxNumEventsAtOnce' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, MaxNumOfEachTypeToSpawn) == 0x000048, "Member 'UWrestlerBloodResonanceEventDataAsset::MaxNumOfEachTypeToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceEventDataAsset, SpawnableEvents) == 0x000098, "Member 'UWrestlerBloodResonanceEventDataAsset::SpawnableEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove \ +static_assert(alignof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove) == 0x000008, "Wrong alignment on WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove"); \ +static_assert(sizeof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove) == 0x000108, "Wrong size on WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InHitEvent) == 0x000010, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InHitEvent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InStrength) == 0x0000C0, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InStrength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InDuration) == 0x0000C4, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, bInIsAdditive) == 0x0000C8, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::bInIsAdditive' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InStrengthOverTime) == 0x0000D0, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InStrengthOverTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InVelocityOnFinishMode) == 0x0000D8, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InVelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InSetVelocityOnFinish) == 0x0000E0, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InSetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, InClampVelocityOnFinish) == 0x0000F8, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::InClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, bInEnableGravity) == 0x0000FC, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::bInEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove, ReturnValue) == 0x000100, "Member 'WrestlerAbilityTask_HitReactMove_WrestlerHitReactMove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_HitReactMove \ +static_assert(alignof(UWrestlerAbilityTask_HitReactMove) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_HitReactMove"); \ +static_assert(sizeof(UWrestlerAbilityTask_HitReactMove) == 0x000110, "Wrong size on UWrestlerAbilityTask_HitReactMove"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_HoldInput_OnControlCueProcess \ +static_assert(alignof(WrestlerAbilityTask_HoldInput_OnControlCueProcess) == 0x000004, "Wrong alignment on WrestlerAbilityTask_HoldInput_OnControlCueProcess"); \ +static_assert(sizeof(WrestlerAbilityTask_HoldInput_OnControlCueProcess) == 0x000004, "Wrong size on WrestlerAbilityTask_HoldInput_OnControlCueProcess"); \ +static_assert(offsetof(WrestlerAbilityTask_HoldInput_OnControlCueProcess, InWaitingTime) == 0x000000, "Member 'WrestlerAbilityTask_HoldInput_OnControlCueProcess::InWaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_HoldInput \ +static_assert(alignof(UWrestlerAbilityTask_HoldInput) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_HoldInput"); \ +static_assert(sizeof(UWrestlerAbilityTask_HoldInput) == 0x0000B8, "Wrong size on UWrestlerAbilityTask_HoldInput"); \ + +#define DUMPER7_ASSERTS_WrestlerSkillTreeNodeWidget_SetNodeBloodPoints \ +static_assert(alignof(WrestlerSkillTreeNodeWidget_SetNodeBloodPoints) == 0x000004, "Wrong alignment on WrestlerSkillTreeNodeWidget_SetNodeBloodPoints"); \ +static_assert(sizeof(WrestlerSkillTreeNodeWidget_SetNodeBloodPoints) == 0x000004, "Wrong size on WrestlerSkillTreeNodeWidget_SetNodeBloodPoints"); \ +static_assert(offsetof(WrestlerSkillTreeNodeWidget_SetNodeBloodPoints, InBloodPoints) == 0x000000, "Member 'WrestlerSkillTreeNodeWidget_SetNodeBloodPoints::InBloodPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSkillTreeNodeWidget_SetNodeDescription \ +static_assert(alignof(WrestlerSkillTreeNodeWidget_SetNodeDescription) == 0x000008, "Wrong alignment on WrestlerSkillTreeNodeWidget_SetNodeDescription"); \ +static_assert(sizeof(WrestlerSkillTreeNodeWidget_SetNodeDescription) == 0x000018, "Wrong size on WrestlerSkillTreeNodeWidget_SetNodeDescription"); \ +static_assert(offsetof(WrestlerSkillTreeNodeWidget_SetNodeDescription, InNodeDescription) == 0x000000, "Member 'WrestlerSkillTreeNodeWidget_SetNodeDescription::InNodeDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSkillTreeNodeWidget_SetNodeImg \ +static_assert(alignof(WrestlerSkillTreeNodeWidget_SetNodeImg) == 0x000008, "Wrong alignment on WrestlerSkillTreeNodeWidget_SetNodeImg"); \ +static_assert(sizeof(WrestlerSkillTreeNodeWidget_SetNodeImg) == 0x000008, "Wrong size on WrestlerSkillTreeNodeWidget_SetNodeImg"); \ +static_assert(offsetof(WrestlerSkillTreeNodeWidget_SetNodeImg, InTexture) == 0x000000, "Member 'WrestlerSkillTreeNodeWidget_SetNodeImg::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSkillTreeNodeWidget_SetNodeText \ +static_assert(alignof(WrestlerSkillTreeNodeWidget_SetNodeText) == 0x000008, "Wrong alignment on WrestlerSkillTreeNodeWidget_SetNodeText"); \ +static_assert(sizeof(WrestlerSkillTreeNodeWidget_SetNodeText) == 0x000018, "Wrong size on WrestlerSkillTreeNodeWidget_SetNodeText"); \ +static_assert(offsetof(WrestlerSkillTreeNodeWidget_SetNodeText, InNodeTxt) == 0x000000, "Member 'WrestlerSkillTreeNodeWidget_SetNodeText::InNodeTxt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSkillTreeNodeWidget_GetNodeLocation \ +static_assert(alignof(WrestlerSkillTreeNodeWidget_GetNodeLocation) == 0x000008, "Wrong alignment on WrestlerSkillTreeNodeWidget_GetNodeLocation"); \ +static_assert(sizeof(WrestlerSkillTreeNodeWidget_GetNodeLocation) == 0x000010, "Wrong size on WrestlerSkillTreeNodeWidget_GetNodeLocation"); \ +static_assert(offsetof(WrestlerSkillTreeNodeWidget_GetNodeLocation, ReturnValue) == 0x000000, "Member 'WrestlerSkillTreeNodeWidget_GetNodeLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSkillTreeNodeWidget \ +static_assert(alignof(UWrestlerSkillTreeNodeWidget) == 0x000008, "Wrong alignment on UWrestlerSkillTreeNodeWidget"); \ +static_assert(sizeof(UWrestlerSkillTreeNodeWidget) == 0x000318, "Wrong size on UWrestlerSkillTreeNodeWidget"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, BloodPoints_Txt) == 0x0002C8, "Member 'UWrestlerSkillTreeNodeWidget::BloodPoints_Txt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, SkillNodeData) == 0x0002D0, "Member 'UWrestlerSkillTreeNodeWidget::SkillNodeData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, IMG_Node) == 0x0002D8, "Member 'UWrestlerSkillTreeNodeWidget::IMG_Node' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, NodeName_Txt) == 0x0002E0, "Member 'UWrestlerSkillTreeNodeWidget::NodeName_Txt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, NodeDescription_Txt) == 0x0002E8, "Member 'UWrestlerSkillTreeNodeWidget::NodeDescription_Txt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, Node_Btn) == 0x0002F0, "Member 'UWrestlerSkillTreeNodeWidget::Node_Btn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, SkillNode) == 0x0002F8, "Member 'UWrestlerSkillTreeNodeWidget::SkillNode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, NodeStatus) == 0x000300, "Member 'UWrestlerSkillTreeNodeWidget::NodeStatus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNodeWidget, ChildrenWidgets) == 0x000308, "Member 'UWrestlerSkillTreeNodeWidget::ChildrenWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Jump_WrestlerJump \ +static_assert(alignof(WrestlerAbilityTask_Jump_WrestlerJump) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Jump_WrestlerJump"); \ +static_assert(sizeof(WrestlerAbilityTask_Jump_WrestlerJump) == 0x000048, "Wrong size on WrestlerAbilityTask_Jump_WrestlerJump"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, UnBlockAtApex_0) == 0x000010, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::UnBlockAtApex_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, JumpSpeedMultiplier_0) == 0x000030, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::JumpSpeedMultiplier_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, bExtendableJump_0) == 0x000034, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::bExtendableJump_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, ExtendableJumpTime_0) == 0x000038, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::ExtendableJumpTime_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_WrestlerJump, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_Jump_WrestlerJump::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Jump_OnJumpLanded \ +static_assert(alignof(WrestlerAbilityTask_Jump_OnJumpLanded) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Jump_OnJumpLanded"); \ +static_assert(sizeof(WrestlerAbilityTask_Jump_OnJumpLanded) == 0x0000E8, "Wrong size on WrestlerAbilityTask_Jump_OnJumpLanded"); \ +static_assert(offsetof(WrestlerAbilityTask_Jump_OnJumpLanded, Hit) == 0x000000, "Member 'WrestlerAbilityTask_Jump_OnJumpLanded::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Jump \ +static_assert(alignof(UWrestlerAbilityTask_Jump) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Jump"); \ +static_assert(sizeof(UWrestlerAbilityTask_Jump) == 0x0000F0, "Wrong size on UWrestlerAbilityTask_Jump"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, OnLanded) == 0x000080, "Member 'UWrestlerAbilityTask_Jump::OnLanded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, OnApexReached) == 0x000090, "Member 'UWrestlerAbilityTask_Jump::OnApexReached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, OnCancelled) == 0x0000A0, "Member 'UWrestlerAbilityTask_Jump::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, JumpSpeedMultiplier) == 0x0000B0, "Member 'UWrestlerAbilityTask_Jump::JumpSpeedMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, bCanJumpFromCrouch) == 0x0000B4, "Member 'UWrestlerAbilityTask_Jump::bCanJumpFromCrouch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, bExtendableJump) == 0x0000B5, "Member 'UWrestlerAbilityTask_Jump::bExtendableJump' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, ExtendableJumpTime) == 0x0000B8, "Member 'UWrestlerAbilityTask_Jump::ExtendableJumpTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Jump, UnBlockAtApex) == 0x0000C0, "Member 'UWrestlerAbilityTask_Jump::UnBlockAtApex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_Proximity \ +static_assert(alignof(UWrestlerAISenseConfig_Proximity) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_Proximity"); \ +static_assert(sizeof(UWrestlerAISenseConfig_Proximity) == 0x000138, "Wrong size on UWrestlerAISenseConfig_Proximity"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Proximity, Implementation) == 0x000048, "Member 'UWrestlerAISenseConfig_Proximity::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Proximity, ProximityRange) == 0x000050, "Member 'UWrestlerAISenseConfig_Proximity::ProximityRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Proximity, FalloffCurve) == 0x000058, "Member 'UWrestlerAISenseConfig_Proximity::FalloffCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Proximity, ListenerTagsToIgnore) == 0x0000F8, "Member 'UWrestlerAISenseConfig_Proximity::ListenerTagsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Proximity, SourceTagsToIgnore) == 0x000118, "Member 'UWrestlerAISenseConfig_Proximity::SourceTagsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerNavigationDataChunkActor \ +static_assert(alignof(AWrestlerNavigationDataChunkActor) == 0x000008, "Wrong alignment on AWrestlerNavigationDataChunkActor"); \ +static_assert(sizeof(AWrestlerNavigationDataChunkActor) == 0x0002E0, "Wrong size on AWrestlerNavigationDataChunkActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerTraversalAbilityTask \ +static_assert(alignof(UWrestlerTraversalAbilityTask) == 0x000008, "Wrong alignment on UWrestlerTraversalAbilityTask"); \ +static_assert(sizeof(UWrestlerTraversalAbilityTask) == 0x0000E8, "Wrong size on UWrestlerTraversalAbilityTask"); \ +static_assert(offsetof(UWrestlerTraversalAbilityTask, OnLerpComplete) == 0x000080, "Member 'UWrestlerTraversalAbilityTask::OnLerpComplete' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalAbilityTask, OnFinish) == 0x000090, "Member 'UWrestlerTraversalAbilityTask::OnFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataPCSBlockingState \ +static_assert(alignof(UWrestlerAutomataPCSBlockingState) == 0x000008, "Wrong alignment on UWrestlerAutomataPCSBlockingState"); \ +static_assert(sizeof(UWrestlerAutomataPCSBlockingState) == 0x000080, "Wrong size on UWrestlerAutomataPCSBlockingState"); \ +static_assert(offsetof(UWrestlerAutomataPCSBlockingState, bBlockStart) == 0x000078, "Member 'UWrestlerAutomataPCSBlockingState::bBlockStart' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAutomataPCSBlockingState, EnemyType) == 0x000079, "Member 'UWrestlerAutomataPCSBlockingState::EnemyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault \ +static_assert(alignof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault) == 0x000008, "Wrong alignment on WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault"); \ +static_assert(sizeof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault) == 0x000020, "Wrong size on WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault"); \ +static_assert(offsetof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault, lerpDuration) == 0x000010, "Member 'WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault, stateDuration) == 0x000014, "Member 'WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault::stateDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_LedgeVault_WrestlerLedgeVault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_LedgeVault \ +static_assert(alignof(UWrestlerAbilityTask_LedgeVault) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_LedgeVault"); \ +static_assert(sizeof(UWrestlerAbilityTask_LedgeVault) == 0x0000E8, "Wrong size on UWrestlerAbilityTask_LedgeVault"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestContainerWidget_OnQuestButtonFocused \ +static_assert(alignof(WrestlerQuestContainerWidget_OnQuestButtonFocused) == 0x000008, "Wrong alignment on WrestlerQuestContainerWidget_OnQuestButtonFocused"); \ +static_assert(sizeof(WrestlerQuestContainerWidget_OnQuestButtonFocused) == 0x000008, "Wrong size on WrestlerQuestContainerWidget_OnQuestButtonFocused"); \ +static_assert(offsetof(WrestlerQuestContainerWidget_OnQuestButtonFocused, InFocusedQuestButton) == 0x000000, "Member 'WrestlerQuestContainerWidget_OnQuestButtonFocused::InFocusedQuestButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestContainerWidget_OnQuestButtonInteraction \ +static_assert(alignof(WrestlerQuestContainerWidget_OnQuestButtonInteraction) == 0x000008, "Wrong alignment on WrestlerQuestContainerWidget_OnQuestButtonInteraction"); \ +static_assert(sizeof(WrestlerQuestContainerWidget_OnQuestButtonInteraction) == 0x000008, "Wrong size on WrestlerQuestContainerWidget_OnQuestButtonInteraction"); \ +static_assert(offsetof(WrestlerQuestContainerWidget_OnQuestButtonInteraction, InInteractedQuestButton) == 0x000000, "Member 'WrestlerQuestContainerWidget_OnQuestButtonInteraction::InInteractedQuestButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestContainerWidget_GetButtonBody \ +static_assert(alignof(WrestlerQuestContainerWidget_GetButtonBody) == 0x000008, "Wrong alignment on WrestlerQuestContainerWidget_GetButtonBody"); \ +static_assert(sizeof(WrestlerQuestContainerWidget_GetButtonBody) == 0x000008, "Wrong size on WrestlerQuestContainerWidget_GetButtonBody"); \ +static_assert(offsetof(WrestlerQuestContainerWidget_GetButtonBody, ReturnValue) == 0x000000, "Member 'WrestlerQuestContainerWidget_GetButtonBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestContainerWidget_GetLastValidQuestButton \ +static_assert(alignof(WrestlerQuestContainerWidget_GetLastValidQuestButton) == 0x000008, "Wrong alignment on WrestlerQuestContainerWidget_GetLastValidQuestButton"); \ +static_assert(sizeof(WrestlerQuestContainerWidget_GetLastValidQuestButton) == 0x000008, "Wrong size on WrestlerQuestContainerWidget_GetLastValidQuestButton"); \ +static_assert(offsetof(WrestlerQuestContainerWidget_GetLastValidQuestButton, ReturnValue) == 0x000000, "Member 'WrestlerQuestContainerWidget_GetLastValidQuestButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestContainerWidget \ +static_assert(alignof(UWrestlerQuestContainerWidget) == 0x000008, "Wrong alignment on UWrestlerQuestContainerWidget"); \ +static_assert(sizeof(UWrestlerQuestContainerWidget) == 0x000380, "Wrong size on UWrestlerQuestContainerWidget"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, InitialPoolSize) == 0x0002C8, "Member 'UWrestlerQuestContainerWidget::InitialPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestButtonClass) == 0x0002D0, "Member 'UWrestlerQuestContainerWidget::QuestButtonClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bStartWithDeployedScrollIfHasActiveQuest) == 0x0002D8, "Member 'UWrestlerQuestContainerWidget::bStartWithDeployedScrollIfHasActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bShowIconOnQuestButtons) == 0x0002D9, "Member 'UWrestlerQuestContainerWidget::bShowIconOnQuestButtons' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bHaveInteractableButtons) == 0x0002DA, "Member 'UWrestlerQuestContainerWidget::bHaveInteractableButtons' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bContainsMasqueradeQuest) == 0x0002DB, "Member 'UWrestlerQuestContainerWidget::bContainsMasqueradeQuest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bHideQuestsIfMasqueradeIsBroken) == 0x0002DC, "Member 'UWrestlerQuestContainerWidget::bHideQuestsIfMasqueradeIsBroken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestVBox) == 0x0002E0, "Member 'UWrestlerQuestContainerWidget::QuestVBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestButtonsAndGT) == 0x0002E8, "Member 'UWrestlerQuestContainerWidget::QuestButtonsAndGT' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestButtonsPool) == 0x000338, "Member 'UWrestlerQuestContainerWidget::QuestButtonsPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestScreenReference) == 0x000348, "Member 'UWrestlerQuestContainerWidget::QuestScreenReference' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, ActiveQuestWidget) == 0x000350, "Member 'UWrestlerQuestContainerWidget::ActiveQuestWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, StackCount) == 0x000358, "Member 'UWrestlerQuestContainerWidget::StackCount' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bIsScrollDeployed) == 0x00035C, "Member 'UWrestlerQuestContainerWidget::bIsScrollDeployed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bHasActiveQuest) == 0x00035D, "Member 'UWrestlerQuestContainerWidget::bHasActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, bIsMasqueradeBroken) == 0x00035E, "Member 'UWrestlerQuestContainerWidget::bIsMasqueradeBroken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, ButtonBody) == 0x000360, "Member 'UWrestlerQuestContainerWidget::ButtonBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestContainerWidget, QuestButtonPadding) == 0x000368, "Member 'UWrestlerQuestContainerWidget::QuestButtonPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_LineTrace_LineTraceToTarget \ +static_assert(alignof(WrestlerAbilityTask_LineTrace_LineTraceToTarget) == 0x000008, "Wrong alignment on WrestlerAbilityTask_LineTrace_LineTraceToTarget"); \ +static_assert(sizeof(WrestlerAbilityTask_LineTrace_LineTraceToTarget) == 0x000048, "Wrong size on WrestlerAbilityTask_LineTrace_LineTraceToTarget"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, InObjectQuery) == 0x000010, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::InObjectQuery' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, TargetActor) == 0x000020, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, debugTraceType) == 0x000028, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::debugTraceType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, InSocketName) == 0x00002C, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, Delay) == 0x000034, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::Delay' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, EndTaskOnFirstSuccessfulHit) == 0x000038, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::EndTaskOnFirstSuccessfulHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_LineTrace_LineTraceToTarget, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_LineTrace_LineTraceToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_LineTrace \ +static_assert(alignof(UWrestlerAbilityTask_LineTrace) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_LineTrace"); \ +static_assert(sizeof(UWrestlerAbilityTask_LineTrace) == 0x000190, "Wrong size on UWrestlerAbilityTask_LineTrace"); \ +static_assert(offsetof(UWrestlerAbilityTask_LineTrace, OnTargetingCompleted) == 0x0000A0, "Member 'UWrestlerAbilityTask_LineTrace::OnTargetingCompleted' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_LineTrace, OnTargetingFailed) == 0x0000B0, "Member 'UWrestlerAbilityTask_LineTrace::OnTargetingFailed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_LineTrace, SpawnedReticle) == 0x000168, "Member 'UWrestlerAbilityTask_LineTrace::SpawnedReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_LineTrace, TraceToActor) == 0x000170, "Member 'UWrestlerAbilityTask_LineTrace::TraceToActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSequenceDataAsset_GetSequenceByEnemyName \ +static_assert(alignof(WrestlerSequenceDataAsset_GetSequenceByEnemyName) == 0x000008, "Wrong alignment on WrestlerSequenceDataAsset_GetSequenceByEnemyName"); \ +static_assert(sizeof(WrestlerSequenceDataAsset_GetSequenceByEnemyName) == 0x000010, "Wrong size on WrestlerSequenceDataAsset_GetSequenceByEnemyName"); \ +static_assert(offsetof(WrestlerSequenceDataAsset_GetSequenceByEnemyName, InEnemyName) == 0x000000, "Member 'WrestlerSequenceDataAsset_GetSequenceByEnemyName::InEnemyName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSequenceDataAsset_GetSequenceByEnemyName, ReturnValue) == 0x000008, "Member 'WrestlerSequenceDataAsset_GetSequenceByEnemyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSequenceDataAsset_GetSequenceForMassEntity \ +static_assert(alignof(WrestlerSequenceDataAsset_GetSequenceForMassEntity) == 0x000008, "Wrong alignment on WrestlerSequenceDataAsset_GetSequenceForMassEntity"); \ +static_assert(sizeof(WrestlerSequenceDataAsset_GetSequenceForMassEntity) == 0x000010, "Wrong size on WrestlerSequenceDataAsset_GetSequenceForMassEntity"); \ +static_assert(offsetof(WrestlerSequenceDataAsset_GetSequenceForMassEntity, InActor) == 0x000000, "Member 'WrestlerSequenceDataAsset_GetSequenceForMassEntity::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSequenceDataAsset_GetSequenceForMassEntity, ReturnValue) == 0x000008, "Member 'WrestlerSequenceDataAsset_GetSequenceForMassEntity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSequenceDataAsset \ +static_assert(alignof(UWrestlerSequenceDataAsset) == 0x000008, "Wrong alignment on UWrestlerSequenceDataAsset"); \ +static_assert(sizeof(UWrestlerSequenceDataAsset) == 0x000080, "Wrong size on UWrestlerSequenceDataAsset"); \ +static_assert(offsetof(UWrestlerSequenceDataAsset, EnemyNameSequenceMap) == 0x000030, "Member 'UWrestlerSequenceDataAsset::EnemyNameSequenceMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Magnet_Magnet \ +static_assert(alignof(WrestlerAbilityTask_Magnet_Magnet) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Magnet_Magnet"); \ +static_assert(sizeof(WrestlerAbilityTask_Magnet_Magnet) == 0x000048, "Wrong size on WrestlerAbilityTask_Magnet_Magnet"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Magnet_Magnet::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Magnet_Magnet::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, PhysicActor_0) == 0x000010, "Member 'WrestlerAbilityTask_Magnet_Magnet::PhysicActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, Owner_0) == 0x000018, "Member 'WrestlerAbilityTask_Magnet_Magnet::Owner_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, RelativeOffset) == 0x000020, "Member 'WrestlerAbilityTask_Magnet_Magnet::RelativeOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, FollowTightness) == 0x000038, "Member 'WrestlerAbilityTask_Magnet_Magnet::FollowTightness' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, OffsetTightness) == 0x00003C, "Member 'WrestlerAbilityTask_Magnet_Magnet::OffsetTightness' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Magnet_Magnet, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_Magnet_Magnet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Magnet \ +static_assert(alignof(UWrestlerAbilityTask_Magnet) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Magnet"); \ +static_assert(sizeof(UWrestlerAbilityTask_Magnet) == 0x0000D0, "Wrong size on UWrestlerAbilityTask_Magnet"); \ +static_assert(offsetof(UWrestlerAbilityTask_Magnet, PhysicActor) == 0x000080, "Member 'UWrestlerAbilityTask_Magnet::PhysicActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Magnet, Owner) == 0x000088, "Member 'UWrestlerAbilityTask_Magnet::Owner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Magnet, PrimitiveComponent) == 0x000090, "Member 'UWrestlerAbilityTask_Magnet::PrimitiveComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseEvent_Fear \ +static_assert(alignof(UWrestlerAISenseEvent_Fear) == 0x000008, "Wrong alignment on UWrestlerAISenseEvent_Fear"); \ +static_assert(sizeof(UWrestlerAISenseEvent_Fear) == 0x000060, "Wrong size on UWrestlerAISenseEvent_Fear"); \ +static_assert(offsetof(UWrestlerAISenseEvent_Fear, FearEvent) == 0x000028, "Member 'UWrestlerAISenseEvent_Fear::FearEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRadialDamageExecution \ +static_assert(alignof(UWrestlerRadialDamageExecution) == 0x000008, "Wrong alignment on UWrestlerRadialDamageExecution"); \ +static_assert(sizeof(UWrestlerRadialDamageExecution) == 0x000040, "Wrong size on UWrestlerRadialDamageExecution"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Mantle_WrestlerMantle \ +static_assert(alignof(WrestlerAbilityTask_Mantle_WrestlerMantle) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Mantle_WrestlerMantle"); \ +static_assert(sizeof(WrestlerAbilityTask_Mantle_WrestlerMantle) == 0x000020, "Wrong size on WrestlerAbilityTask_Mantle_WrestlerMantle"); \ +static_assert(offsetof(WrestlerAbilityTask_Mantle_WrestlerMantle, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Mantle_WrestlerMantle::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Mantle_WrestlerMantle, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Mantle_WrestlerMantle::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Mantle_WrestlerMantle, lerpDuration) == 0x000010, "Member 'WrestlerAbilityTask_Mantle_WrestlerMantle::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Mantle_WrestlerMantle, stateDuration) == 0x000014, "Member 'WrestlerAbilityTask_Mantle_WrestlerMantle::stateDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Mantle_WrestlerMantle, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_Mantle_WrestlerMantle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Mantle \ +static_assert(alignof(UWrestlerAbilityTask_Mantle) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Mantle"); \ +static_assert(sizeof(UWrestlerAbilityTask_Mantle) == 0x0000E8, "Wrong size on UWrestlerAbilityTask_Mantle"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_IsHearingSeveralNoises \ +static_assert(alignof(UWrestlerBTDecorator_IsHearingSeveralNoises) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_IsHearingSeveralNoises"); \ +static_assert(sizeof(UWrestlerBTDecorator_IsHearingSeveralNoises) == 0x000070, "Wrong size on UWrestlerBTDecorator_IsHearingSeveralNoises"); \ +static_assert(offsetof(UWrestlerBTDecorator_IsHearingSeveralNoises, bIndividual) == 0x000068, "Member 'UWrestlerBTDecorator_IsHearingSeveralNoises::bIndividual' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitControlCue_Base \ +static_assert(alignof(UWrestlerAbilityTask_WaitControlCue_Base) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitControlCue_Base"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitControlCue_Base) == 0x000090, "Wrong size on UWrestlerAbilityTask_WaitControlCue_Base"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitControlCue_Base, OnControlCueProcess) == 0x000080, "Member 'UWrestlerAbilityTask_WaitControlCue_Base::OnControlCueProcess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterChecked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerCharacterStateInGameChecked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume) == 0x000018, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume, InCharacter) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume, OutRange) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume::OutRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume, OutVolume) == 0x00000C, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume::OutVolume' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume, InWorldContextObject) == 0x000010, "Member 'WrestlerPlayerCharacterFunctionLibrary_GetPlayerFootstepNoiseReportRangeAndVolume::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterMalkavian::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan \ +static_assert(alignof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan"); \ +static_assert(sizeof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan) == 0x000010, "Wrong size on WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan, InClan) == 0x000008, "Member 'WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan::InClan' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan, ReturnValue) == 0x000009, "Member 'WrestlerPlayerCharacterFunctionLibrary_IsPlayerCharacterOfClan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerCharacterFunctionLibrary \ +static_assert(alignof(UWrestlerPlayerCharacterFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerPlayerCharacterFunctionLibrary"); \ +static_assert(sizeof(UWrestlerPlayerCharacterFunctionLibrary) == 0x000028, "Wrong size on UWrestlerPlayerCharacterFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue \ +static_assert(alignof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue, CueToWaitFor_0) == 0x000010, "Member 'WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue::CueToWaitFor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue, bUnbindOnExecute) == 0x000018, "Member 'WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue::bUnbindOnExecute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_WaitControlCue_WrestlerAbilityTask_WaitControlCue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitControlCue \ +static_assert(alignof(UWrestlerAbilityTask_WaitControlCue) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitControlCue"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitControlCue) == 0x0000B0, "Wrong size on UWrestlerAbilityTask_WaitControlCue"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitControlCue, CueToWaitFor) == 0x000098, "Member 'UWrestlerAbilityTask_WaitControlCue::CueToWaitFor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge \ +static_assert(alignof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge"); \ +static_assert(sizeof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge) == 0x000060, "Wrong size on WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge, Parameters) == 0x000010, "Member 'WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge::Parameters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge, ReturnValue) == 0x000058, "Member 'WrestlerAbilityTask_MomentumCharge_WrestlerMomentumCharge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MomentumCharge \ +static_assert(alignof(UWrestlerAbilityTask_MomentumCharge) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MomentumCharge"); \ +static_assert(sizeof(UWrestlerAbilityTask_MomentumCharge) == 0x0001E8, "Wrong size on UWrestlerAbilityTask_MomentumCharge"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumCharge, OnFullyCharged) == 0x0000B0, "Member 'UWrestlerAbilityTask_MomentumCharge::OnFullyCharged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumCharge, OnReportData) == 0x0000C0, "Member 'UWrestlerAbilityTask_MomentumCharge::OnReportData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumCharge, OnDestinationUpdated) == 0x0000D0, "Member 'UWrestlerAbilityTask_MomentumCharge::OnDestinationUpdated' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumCharge, ExtraDamageTarget) == 0x000150, "Member 'UWrestlerAbilityTask_MomentumCharge::ExtraDamageTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Proximity \ +static_assert(alignof(UWrestlerAISense_Proximity) == 0x000008, "Wrong alignment on UWrestlerAISense_Proximity"); \ +static_assert(sizeof(UWrestlerAISense_Proximity) == 0x000118, "Wrong size on UWrestlerAISense_Proximity"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor \ +static_assert(alignof(UWrestlerMassSightProcessor) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor"); \ +static_assert(sizeof(UWrestlerMassSightProcessor) == 0x000410, "Wrong size on UWrestlerMassSightProcessor"); \ +static_assert(offsetof(UWrestlerMassSightProcessor, QueuedTraces) == 0x0003B0, "Member 'UWrestlerMassSightProcessor::QueuedTraces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_Player \ +static_assert(alignof(UWrestlerMassSightProcessor_Player) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_Player"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_Player) == 0x000690, "Wrong size on UWrestlerMassSightProcessor_Player"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove \ +static_assert(alignof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove"); \ +static_assert(sizeof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove) == 0x000060, "Wrong size on WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove, Parameters) == 0x000010, "Member 'WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove::Parameters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove, ReturnValue) == 0x000058, "Member 'WrestlerAbilityTask_MomentumMove_WrestlerMomentumMove::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MomentumMove \ +static_assert(alignof(UWrestlerAbilityTask_MomentumMove) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MomentumMove"); \ +static_assert(sizeof(UWrestlerAbilityTask_MomentumMove) == 0x0001A0, "Wrong size on UWrestlerAbilityTask_MomentumMove"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumMove, OnMovementComplete) == 0x000080, "Member 'UWrestlerAbilityTask_MomentumMove::OnMovementComplete' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MomentumMove, OnTargetStruck) == 0x000090, "Member 'UWrestlerAbilityTask_MomentumMove::OnTargetStruck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTutorialTask_GetHeraHUD \ +static_assert(alignof(WrestlerTutorialTask_GetHeraHUD) == 0x000008, "Wrong alignment on WrestlerTutorialTask_GetHeraHUD"); \ +static_assert(sizeof(WrestlerTutorialTask_GetHeraHUD) == 0x000008, "Wrong size on WrestlerTutorialTask_GetHeraHUD"); \ +static_assert(offsetof(WrestlerTutorialTask_GetHeraHUD, ReturnValue) == 0x000000, "Member 'WrestlerTutorialTask_GetHeraHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTutorialTask_GetTutorialData \ +static_assert(alignof(WrestlerTutorialTask_GetTutorialData) == 0x000008, "Wrong alignment on WrestlerTutorialTask_GetTutorialData"); \ +static_assert(sizeof(WrestlerTutorialTask_GetTutorialData) == 0x0000B0, "Wrong size on WrestlerTutorialTask_GetTutorialData"); \ +static_assert(offsetof(WrestlerTutorialTask_GetTutorialData, InID) == 0x000000, "Member 'WrestlerTutorialTask_GetTutorialData::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTutorialTask_GetTutorialData, ReturnValue) == 0x000010, "Member 'WrestlerTutorialTask_GetTutorialData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTutorialTask \ +static_assert(alignof(UWrestlerTutorialTask) == 0x000008, "Wrong alignment on UWrestlerTutorialTask"); \ +static_assert(sizeof(UWrestlerTutorialTask) == 0x000158, "Wrong size on UWrestlerTutorialTask"); \ +static_assert(offsetof(UWrestlerTutorialTask, OnPlayerAction) == 0x000088, "Member 'UWrestlerTutorialTask::OnPlayerAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTutorialTask, TutorialComponent) == 0x000098, "Member 'UWrestlerTutorialTask::TutorialComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerBasePathPoint \ +static_assert(alignof(AWrestlerBasePathPoint) == 0x000008, "Wrong alignment on AWrestlerBasePathPoint"); \ +static_assert(sizeof(AWrestlerBasePathPoint) == 0x0002C8, "Wrong size on AWrestlerBasePathPoint"); \ +static_assert(offsetof(AWrestlerBasePathPoint, GameplayAbilityTag) == 0x000298, "Member 'AWrestlerBasePathPoint::GameplayAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, QuestAbilityTag) == 0x0002A0, "Member 'AWrestlerBasePathPoint::QuestAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, bOverrideWaitTime) == 0x0002A8, "Member 'AWrestlerBasePathPoint::bOverrideWaitTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, WaitTime) == 0x0002AC, "Member 'AWrestlerBasePathPoint::WaitTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, SceneComponent) == 0x0002B0, "Member 'AWrestlerBasePathPoint::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, PathPointArrowColor) == 0x0002B8, "Member 'AWrestlerBasePathPoint::PathPointArrowColor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBasePathPoint, DebugSphereRadius) == 0x0002BC, "Member 'AWrestlerBasePathPoint::DebugSphereRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBaseOptionWidget \ +static_assert(alignof(UWrestlerBaseOptionWidget) == 0x000008, "Wrong alignment on UWrestlerBaseOptionWidget"); \ +static_assert(sizeof(UWrestlerBaseOptionWidget) == 0x000360, "Wrong size on UWrestlerBaseOptionWidget"); \ +static_assert(offsetof(UWrestlerBaseOptionWidget, Label) == 0x000330, "Member 'UWrestlerBaseOptionWidget::Label' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBaseOptionWidget, Description) == 0x000348, "Member 'UWrestlerBaseOptionWidget::Description' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSliderWidget_GetValue \ +static_assert(alignof(WrestlerSliderWidget_GetValue) == 0x000004, "Wrong alignment on WrestlerSliderWidget_GetValue"); \ +static_assert(sizeof(WrestlerSliderWidget_GetValue) == 0x000004, "Wrong size on WrestlerSliderWidget_GetValue"); \ +static_assert(offsetof(WrestlerSliderWidget_GetValue, ReturnValue) == 0x000000, "Member 'WrestlerSliderWidget_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSliderWidget_SetValue \ +static_assert(alignof(WrestlerSliderWidget_SetValue) == 0x000004, "Wrong alignment on WrestlerSliderWidget_SetValue"); \ +static_assert(sizeof(WrestlerSliderWidget_SetValue) == 0x000004, "Wrong size on WrestlerSliderWidget_SetValue"); \ +static_assert(offsetof(WrestlerSliderWidget_SetValue, InValue) == 0x000000, "Member 'WrestlerSliderWidget_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSliderWidget \ +static_assert(alignof(UWrestlerSliderWidget) == 0x000008, "Wrong alignment on UWrestlerSliderWidget"); \ +static_assert(sizeof(UWrestlerSliderWidget) == 0x000370, "Wrong size on UWrestlerSliderWidget"); \ +static_assert(offsetof(UWrestlerSliderWidget, SettingSlider) == 0x000360, "Member 'UWrestlerSliderWidget::SettingSlider' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSliderWidget, SliderValue) == 0x000368, "Member 'UWrestlerSliderWidget::SliderValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps \ +static_assert(alignof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps"); \ +static_assert(sizeof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps) == 0x000038, "Wrong size on WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, InOverlapChannel) == 0x000010, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::InOverlapChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, InActorsToIgnore) == 0x000018, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::InActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, bInEndOnOverlap) == 0x000028, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::bInEndOnOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps, ReturnValue) == 0x000030, "Member 'WrestlerAbilityTask_MoveOverlaps_WaitMoveOverlaps::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MoveOverlaps \ +static_assert(alignof(UWrestlerAbilityTask_MoveOverlaps) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MoveOverlaps"); \ +static_assert(sizeof(UWrestlerAbilityTask_MoveOverlaps) == 0x000160, "Wrong size on UWrestlerAbilityTask_MoveOverlaps"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveOverlaps, OnOverlap) == 0x0000A0, "Member 'UWrestlerAbilityTask_MoveOverlaps::OnOverlap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveOverlaps, OverlappingComp) == 0x000130, "Member 'UWrestlerAbilityTask_MoveOverlaps::OverlappingComp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMissionSubSystem \ +static_assert(alignof(UWrestlerMissionSubSystem) == 0x000008, "Wrong alignment on UWrestlerMissionSubSystem"); \ +static_assert(sizeof(UWrestlerMissionSubSystem) == 0x000090, "Wrong size on UWrestlerMissionSubSystem"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget \ +static_assert(alignof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget"); \ +static_assert(sizeof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget) == 0x000058, "Wrong size on WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, PhysicActor_0) == 0x000010, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::PhysicActor_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, destination_0) == 0x000018, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::destination_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, RelativeOffset) == 0x000020, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::RelativeOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, Speed) == 0x000038, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::Speed' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, Acceleration) == 0x00003C, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, Threshold) == 0x000040, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::Threshold' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, MaxInertialAngle) == 0x000044, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::MaxInertialAngle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, bGravity) == 0x000048, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::bGravity' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, MaxTime) == 0x00004C, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::MaxTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget, ReturnValue) == 0x000050, "Member 'WrestlerAbilityTask_MovePhysicActorToTarget_MovePhysicActorToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MovePhysicActorToTarget \ +static_assert(alignof(UWrestlerAbilityTask_MovePhysicActorToTarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MovePhysicActorToTarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_MovePhysicActorToTarget) == 0x000110, "Wrong size on UWrestlerAbilityTask_MovePhysicActorToTarget"); \ +static_assert(offsetof(UWrestlerAbilityTask_MovePhysicActorToTarget, OnCompleted) == 0x000080, "Member 'UWrestlerAbilityTask_MovePhysicActorToTarget::OnCompleted' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MovePhysicActorToTarget, OnFailed) == 0x000090, "Member 'UWrestlerAbilityTask_MovePhysicActorToTarget::OnFailed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MovePhysicActorToTarget, PhysicActor) == 0x0000A0, "Member 'UWrestlerAbilityTask_MovePhysicActorToTarget::PhysicActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MovePhysicActorToTarget, destination) == 0x0000A8, "Member 'UWrestlerAbilityTask_MovePhysicActorToTarget::destination' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MovePhysicActorToTarget, PrimitiveComponent) == 0x0000B0, "Member 'UWrestlerAbilityTask_MovePhysicActorToTarget::PrimitiveComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalNavLinkProxy_NotifySmartLinkReached \ +static_assert(alignof(WrestlerTraversalNavLinkProxy_NotifySmartLinkReached) == 0x000008, "Wrong alignment on WrestlerTraversalNavLinkProxy_NotifySmartLinkReached"); \ +static_assert(sizeof(WrestlerTraversalNavLinkProxy_NotifySmartLinkReached) == 0x000028, "Wrong size on WrestlerTraversalNavLinkProxy_NotifySmartLinkReached"); \ +static_assert(offsetof(WrestlerTraversalNavLinkProxy_NotifySmartLinkReached, LinkComp) == 0x000000, "Member 'WrestlerTraversalNavLinkProxy_NotifySmartLinkReached::LinkComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTraversalNavLinkProxy_NotifySmartLinkReached, PathingAgent) == 0x000008, "Member 'WrestlerTraversalNavLinkProxy_NotifySmartLinkReached::PathingAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTraversalNavLinkProxy_NotifySmartLinkReached, DestPoint) == 0x000010, "Member 'WrestlerTraversalNavLinkProxy_NotifySmartLinkReached::DestPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalNavLinkProxy_OnMontageEnded \ +static_assert(alignof(WrestlerTraversalNavLinkProxy_OnMontageEnded) == 0x000008, "Wrong alignment on WrestlerTraversalNavLinkProxy_OnMontageEnded"); \ +static_assert(sizeof(WrestlerTraversalNavLinkProxy_OnMontageEnded) == 0x000010, "Wrong size on WrestlerTraversalNavLinkProxy_OnMontageEnded"); \ +static_assert(offsetof(WrestlerTraversalNavLinkProxy_OnMontageEnded, InMontage) == 0x000000, "Member 'WrestlerTraversalNavLinkProxy_OnMontageEnded::InMontage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTraversalNavLinkProxy_OnMontageEnded, bInInterrupted) == 0x000008, "Member 'WrestlerTraversalNavLinkProxy_OnMontageEnded::bInInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTraversalNavLinkProxy \ +static_assert(alignof(AWrestlerTraversalNavLinkProxy) == 0x000008, "Wrong alignment on AWrestlerTraversalNavLinkProxy"); \ +static_assert(sizeof(AWrestlerTraversalNavLinkProxy) == 0x000318, "Wrong size on AWrestlerTraversalNavLinkProxy"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, GameplayTagLeftToRight) == 0x0002E8, "Member 'AWrestlerTraversalNavLinkProxy::GameplayTagLeftToRight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, GameplayTagRightToLeft) == 0x0002F0, "Member 'AWrestlerTraversalNavLinkProxy::GameplayTagRightToLeft' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, bDrawDebug) == 0x0002F8, "Member 'AWrestlerTraversalNavLinkProxy::bDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, Frequency) == 0x0002FC, "Member 'AWrestlerTraversalNavLinkProxy::Frequency' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, CrossingCharacter) == 0x000300, "Member 'AWrestlerTraversalNavLinkProxy::CrossingCharacter' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalNavLinkProxy, PlayingMontage) == 0x000308, "Member 'AWrestlerTraversalNavLinkProxy::PlayingMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_GetClueDataAsset \ +static_assert(alignof(WrestlerHeightenedSensesInterface_GetClueDataAsset) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesInterface_GetClueDataAsset"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_GetClueDataAsset) == 0x000008, "Wrong size on WrestlerHeightenedSensesInterface_GetClueDataAsset"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_GetMeshComponent \ +static_assert(alignof(WrestlerHeightenedSensesInterface_GetMeshComponent) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesInterface_GetMeshComponent"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_GetMeshComponent) == 0x000008, "Wrong size on WrestlerHeightenedSensesInterface_GetMeshComponent"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_GetMeshComponent, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_SetVisionVisibility \ +static_assert(alignof(WrestlerHeightenedSensesInterface_SetVisionVisibility) == 0x000001, "Wrong alignment on WrestlerHeightenedSensesInterface_SetVisionVisibility"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_SetVisionVisibility) == 0x000001, "Wrong size on WrestlerHeightenedSensesInterface_SetVisionVisibility"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_SetVisionVisibility, bInVisible) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_VisionFadeInBegin \ +static_assert(alignof(WrestlerHeightenedSensesInterface_VisionFadeInBegin) == 0x000004, "Wrong alignment on WrestlerHeightenedSensesInterface_VisionFadeInBegin"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_VisionFadeInBegin) == 0x000004, "Wrong size on WrestlerHeightenedSensesInterface_VisionFadeInBegin"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_VisionFadeInBegin, InDuration) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_VisionFadeOutBegin \ +static_assert(alignof(WrestlerHeightenedSensesInterface_VisionFadeOutBegin) == 0x000004, "Wrong alignment on WrestlerHeightenedSensesInterface_VisionFadeOutBegin"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_VisionFadeOutBegin) == 0x000004, "Wrong size on WrestlerHeightenedSensesInterface_VisionFadeOutBegin"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag \ +static_assert(alignof(WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesInterface_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerHeightenedSensesInterface \ +static_assert(alignof(IWrestlerHeightenedSensesInterface) == 0x000001, "Wrong alignment on IWrestlerHeightenedSensesInterface"); \ +static_assert(sizeof(IWrestlerHeightenedSensesInterface) == 0x000001, "Wrong size on IWrestlerHeightenedSensesInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor \ +static_assert(alignof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor"); \ +static_assert(sizeof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor) == 0x0000B0, "Wrong size on WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, InTargetActor) == 0x000010, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, MoveToData) == 0x000018, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, bInDebug) == 0x0000A0, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::bInDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor, ReturnValue) == 0x0000A8, "Member 'WrestlerAbilityTask_MoveToActor_WrestlerMoveToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_MoveToActor \ +static_assert(alignof(UWrestlerAbilityTask_MoveToActor) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_MoveToActor"); \ +static_assert(sizeof(UWrestlerAbilityTask_MoveToActor) == 0x0001A8, "Wrong size on UWrestlerAbilityTask_MoveToActor"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, OnMoveToCancelled) == 0x000168, "Member 'UWrestlerAbilityTask_MoveToActor::OnMoveToCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, Delay) == 0x000178, "Member 'UWrestlerAbilityTask_MoveToActor::Delay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, MaximumHeightOffset) == 0x00017C, "Member 'UWrestlerAbilityTask_MoveToActor::MaximumHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bMoveToFallingTarget) == 0x000180, "Member 'UWrestlerAbilityTask_MoveToActor::bMoveToFallingTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, MaxRange) == 0x000184, "Member 'UWrestlerAbilityTask_MoveToActor::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, MinRange) == 0x000188, "Member 'UWrestlerAbilityTask_MoveToActor::MinRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bInterruptBeforeDestinationReached) == 0x00018C, "Member 'UWrestlerAbilityTask_MoveToActor::bInterruptBeforeDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bCanTimeOut) == 0x00018D, "Member 'UWrestlerAbilityTask_MoveToActor::bCanTimeOut' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bIgnoreDodge) == 0x00018E, "Member 'UWrestlerAbilityTask_MoveToActor::bIgnoreDodge' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bIgnoreHeightFromDistanceCheck) == 0x00018F, "Member 'UWrestlerAbilityTask_MoveToActor::bIgnoreHeightFromDistanceCheck' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bMoveToWhenNotInRange) == 0x000190, "Member 'UWrestlerAbilityTask_MoveToActor::bMoveToWhenNotInRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, VelocityWhenNotInRange) == 0x000194, "Member 'UWrestlerAbilityTask_MoveToActor::VelocityWhenNotInRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bUseAIMoveTo) == 0x000198, "Member 'UWrestlerAbilityTask_MoveToActor::bUseAIMoveTo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bEnableGravity) == 0x000199, "Member 'UWrestlerAbilityTask_MoveToActor::bEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_MoveToActor, bDebug) == 0x00019A, "Member 'UWrestlerAbilityTask_MoveToActor::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGlobalData \ +static_assert(alignof(UWrestlerGlobalData) == 0x000008, "Wrong alignment on UWrestlerGlobalData"); \ +static_assert(sizeof(UWrestlerGlobalData) == 0x000068, "Wrong size on UWrestlerGlobalData"); \ +static_assert(offsetof(UWrestlerGlobalData, bIsDebug) == 0x000028, "Member 'UWrestlerGlobalData::bIsDebug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, bWantsDebugMemReports) == 0x000029, "Member 'UWrestlerGlobalData::bWantsDebugMemReports' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, bIsShowDebugInfo) == 0x00002A, "Member 'UWrestlerGlobalData::bIsShowDebugInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, bIsCinematicsEnabled) == 0x00002B, "Member 'UWrestlerGlobalData::bIsCinematicsEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, bUseCheckpointJumping) == 0x00002C, "Member 'UWrestlerGlobalData::bUseCheckpointJumping' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, bIsExperimentalAutomataEditorEnabled) == 0x00002D, "Member 'UWrestlerGlobalData::bIsExperimentalAutomataEditorEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGlobalData, PlayerStartActor) == 0x000030, "Member 'UWrestlerGlobalData::PlayerStartActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerCursorWidget \ +static_assert(alignof(UWrestlerPlayerCursorWidget) == 0x000008, "Wrong alignment on UWrestlerPlayerCursorWidget"); \ +static_assert(sizeof(UWrestlerPlayerCursorWidget) == 0x0002D8, "Wrong size on UWrestlerPlayerCursorWidget"); \ +static_assert(offsetof(UWrestlerPlayerCursorWidget, MarkerDescription) == 0x0002C8, "Member 'UWrestlerPlayerCursorWidget::MarkerDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_OrbitTarget_OrbitTarget \ +static_assert(alignof(WrestlerAbilityTask_OrbitTarget_OrbitTarget) == 0x000008, "Wrong alignment on WrestlerAbilityTask_OrbitTarget_OrbitTarget"); \ +static_assert(sizeof(WrestlerAbilityTask_OrbitTarget_OrbitTarget) == 0x000068, "Wrong size on WrestlerAbilityTask_OrbitTarget_OrbitTarget"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, bLeft_0) == 0x000010, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::bLeft_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, Target_0) == 0x000018, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::Target_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, Angle_0) == 0x000020, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::Angle_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, Duration_0) == 0x000024, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, bIsAdditive_0) == 0x000028, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::bIsAdditive_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, StrengthOverTime_0) == 0x000030, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::StrengthOverTime_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, VelocityOnFinishMode) == 0x000038, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, SetVelocityOnFinish) == 0x000040, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, ClampVelocityOnFinish) == 0x000058, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, bEnableGravity_0) == 0x00005C, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::bEnableGravity_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, bDebug) == 0x00005D, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::bDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_OrbitTarget_OrbitTarget, ReturnValue) == 0x000060, "Member 'WrestlerAbilityTask_OrbitTarget_OrbitTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_OrbitTarget \ +static_assert(alignof(UWrestlerAbilityTask_OrbitTarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_OrbitTarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_OrbitTarget) == 0x000128, "Wrong size on UWrestlerAbilityTask_OrbitTarget"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, OnFinish) == 0x0000C8, "Member 'UWrestlerAbilityTask_OrbitTarget::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, bLeft) == 0x0000D8, "Member 'UWrestlerAbilityTask_OrbitTarget::bLeft' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, Target) == 0x0000E0, "Member 'UWrestlerAbilityTask_OrbitTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, Angle) == 0x0000E8, "Member 'UWrestlerAbilityTask_OrbitTarget::Angle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, Duration) == 0x0000EC, "Member 'UWrestlerAbilityTask_OrbitTarget::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, bIsAdditive) == 0x0000F0, "Member 'UWrestlerAbilityTask_OrbitTarget::bIsAdditive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, StrengthOverTime) == 0x0000F8, "Member 'UWrestlerAbilityTask_OrbitTarget::StrengthOverTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, bEnableGravity) == 0x000100, "Member 'UWrestlerAbilityTask_OrbitTarget::bEnableGravity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_OrbitTarget, StartingOffset) == 0x000108, "Member 'UWrestlerAbilityTask_OrbitTarget::StartingOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_OverrideTarget \ +static_assert(alignof(UWrestlerAbilityTask_OverrideTarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_OverrideTarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_OverrideTarget) == 0x000088, "Wrong size on UWrestlerAbilityTask_OverrideTarget"); \ +static_assert(offsetof(UWrestlerAbilityTask_OverrideTarget, Target) == 0x000080, "Member 'UWrestlerAbilityTask_OverrideTarget::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameState \ +static_assert(alignof(AWrestlerGameState) == 0x000008, "Wrong alignment on AWrestlerGameState"); \ +static_assert(sizeof(AWrestlerGameState) == 0x000310, "Wrong size on AWrestlerGameState"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent \ +static_assert(alignof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent) == 0x000008, "Wrong alignment on WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent"); \ +static_assert(sizeof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent) == 0x000058, "Wrong size on WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, MontageToPlay_0) == 0x000010, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::MontageToPlay_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, EventTags_0) == 0x000018, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::EventTags_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, Rate_0) == 0x000038, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::Rate_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, StartSection_0) == 0x00003C, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::StartSection_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, bStopWhenAbilityEnds_0) == 0x000044, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::bStopWhenAbilityEnds_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, bDoOnce_0) == 0x000045, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::bDoOnce_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, AnimRootMotionTranslationScale_0) == 0x000048, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::AnimRootMotionTranslationScale_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent, ReturnValue) == 0x000050, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget \ +static_assert(alignof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget) == 0x000008, "Wrong alignment on WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget"); \ +static_assert(sizeof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget) == 0x000060, "Wrong size on WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, MontageToPlay_0) == 0x000010, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::MontageToPlay_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, EventTags_0) == 0x000018, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::EventTags_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, Rate_0) == 0x000038, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::Rate_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, StartSection_0) == 0x00003C, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::StartSection_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, bStopWhenAbilityEnds_0) == 0x000044, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::bStopWhenAbilityEnds_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, bDoOnce_0) == 0x000045, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::bDoOnce_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, AnimRootMotionTranslationScale_0) == 0x000048, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::AnimRootMotionTranslationScale_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, Target_0) == 0x000050, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::Target_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget, ReturnValue) == 0x000058, "Member 'WrestlerAbilityTask_PlayMontageAndWaitForEvent_PlayMontageAndWaitForEventToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_PlayMontageAndWaitForEvent \ +static_assert(alignof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_PlayMontageAndWaitForEvent"); \ +static_assert(sizeof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent) == 0x000148, "Wrong size on UWrestlerAbilityTask_PlayMontageAndWaitForEvent"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, OnCompleted) == 0x000080, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::OnCompleted' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, OnBlendOut) == 0x000090, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::OnBlendOut' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, OnInterrupted) == 0x0000A0, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::OnInterrupted' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, OnCancelled) == 0x0000B0, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, EventReceived) == 0x0000C0, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::EventReceived' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, MontageToPlay) == 0x0000D0, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, EventTags) == 0x0000D8, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::EventTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, Rate) == 0x0000F8, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::Rate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, StartSection) == 0x0000FC, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::StartSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, AnimRootMotionTranslationScale) == 0x000104, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::AnimRootMotionTranslationScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, bStopWhenAbilityEnds) == 0x000108, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::bStopWhenAbilityEnds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, bDoOnce) == 0x000109, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::bDoOnce' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_PlayMontageAndWaitForEvent, Target) == 0x000110, "Member 'UWrestlerAbilityTask_PlayMontageAndWaitForEvent::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHealthRegenExecution \ +static_assert(alignof(UWrestlerHealthRegenExecution) == 0x000008, "Wrong alignment on UWrestlerHealthRegenExecution"); \ +static_assert(sizeof(UWrestlerHealthRegenExecution) == 0x000040, "Wrong size on UWrestlerHealthRegenExecution"); \ + +#define DUMPER7_ASSERTS_UWrestlerStunDamageExecution \ +static_assert(alignof(UWrestlerStunDamageExecution) == 0x000008, "Wrong alignment on UWrestlerStunDamageExecution"); \ +static_assert(sizeof(UWrestlerStunDamageExecution) == 0x000040, "Wrong size on UWrestlerStunDamageExecution"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Projectile_OnProjectileHitted \ +static_assert(alignof(WrestlerAbilityTask_Projectile_OnProjectileHitted) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Projectile_OnProjectileHitted"); \ +static_assert(sizeof(WrestlerAbilityTask_Projectile_OnProjectileHitted) == 0x000118, "Wrong size on WrestlerAbilityTask_Projectile_OnProjectileHitted"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileHitted, InHitComponent) == 0x000000, "Member 'WrestlerAbilityTask_Projectile_OnProjectileHitted::InHitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileHitted, InOtherActor) == 0x000008, "Member 'WrestlerAbilityTask_Projectile_OnProjectileHitted::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileHitted, InOtherComp) == 0x000010, "Member 'WrestlerAbilityTask_Projectile_OnProjectileHitted::InOtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileHitted, InNormalImpulse) == 0x000018, "Member 'WrestlerAbilityTask_Projectile_OnProjectileHitted::InNormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileHitted, InHit) == 0x000030, "Member 'WrestlerAbilityTask_Projectile_OnProjectileHitted::InHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Projectile_OnProjectileOverlapped \ +static_assert(alignof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Projectile_OnProjectileOverlapped"); \ +static_assert(sizeof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped) == 0x000108, "Wrong size on WrestlerAbilityTask_Projectile_OnProjectileOverlapped"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, InOverlappedComponent) == 0x000000, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::InOverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, InOtherActor) == 0x000008, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, InOtherComp) == 0x000010, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::InOtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, InOtherBodyIndex) == 0x000018, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::InOtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, bInFromSweep) == 0x00001C, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::bInFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnProjectileOverlapped, InSweepResult) == 0x000020, "Member 'WrestlerAbilityTask_Projectile_OnProjectileOverlapped::InSweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Projectile_OnSpawnedActor \ +static_assert(alignof(WrestlerAbilityTask_Projectile_OnSpawnedActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Projectile_OnSpawnedActor"); \ +static_assert(sizeof(WrestlerAbilityTask_Projectile_OnSpawnedActor) == 0x000008, "Wrong size on WrestlerAbilityTask_Projectile_OnSpawnedActor"); \ +static_assert(offsetof(WrestlerAbilityTask_Projectile_OnSpawnedActor, InActor) == 0x000000, "Member 'WrestlerAbilityTask_Projectile_OnSpawnedActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Projectile \ +static_assert(alignof(UWrestlerAbilityTask_Projectile) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Projectile"); \ +static_assert(sizeof(UWrestlerAbilityTask_Projectile) == 0x000128, "Wrong size on UWrestlerAbilityTask_Projectile"); \ +static_assert(offsetof(UWrestlerAbilityTask_Projectile, Target) == 0x000110, "Member 'UWrestlerAbilityTask_Projectile::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Projectile, ProjectileInstance) == 0x000118, "Member 'UWrestlerAbilityTask_Projectile::ProjectileInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle \ +static_assert(alignof(WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle) == 0x000008, "Wrong alignment on WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle"); \ +static_assert(sizeof(WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle) == 0x000018, "Wrong size on WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle"); \ +static_assert(offsetof(WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle, AnyFilter) == 0x000000, "Member 'WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle::AnyFilter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbilityTargetActor_WrestlerMakeFilterHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor) == 0x0003F0, "Wrong size on AWrestlerGameplayAbilityTargetActor"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor, ReticleActor) == 0x0003E0, "Member 'AWrestlerGameplayAbilityTargetActor::ReticleActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTraversalTargetActor \ +static_assert(alignof(AWrestlerTraversalTargetActor) == 0x000010, "Wrong alignment on AWrestlerTraversalTargetActor"); \ +static_assert(sizeof(AWrestlerTraversalTargetActor) == 0x000430, "Wrong size on AWrestlerTraversalTargetActor"); \ +static_assert(offsetof(AWrestlerTraversalTargetActor, LocalSearchOffset) == 0x0003F0, "Member 'AWrestlerTraversalTargetActor::LocalSearchOffset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalTargetActor, SearchCapsuleRadius) == 0x000408, "Member 'AWrestlerTraversalTargetActor::SearchCapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalTargetActor, SearchCapsuleHeight) == 0x00040C, "Member 'AWrestlerTraversalTargetActor::SearchCapsuleHeight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTraversalTargetActor, SearchClass) == 0x000410, "Member 'AWrestlerTraversalTargetActor::SearchClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_RangedAim_RangedAim \ +static_assert(alignof(WrestlerAbilityTask_RangedAim_RangedAim) == 0x000008, "Wrong alignment on WrestlerAbilityTask_RangedAim_RangedAim"); \ +static_assert(sizeof(WrestlerAbilityTask_RangedAim_RangedAim) == 0x0000A8, "Wrong size on WrestlerAbilityTask_RangedAim_RangedAim"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InPlayMontageData) == 0x000010, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InPlayMontageData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InEvadeTag) == 0x000030, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InEvadeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InAimCue) == 0x000038, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InAimCue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InAimDuration) == 0x000040, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InAimDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InEvadeSection) == 0x000044, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InEvadeSection' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InEvadeTime) == 0x00004C, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InEvadeTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InTargetActor) == 0x000050, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InTargetLocation) == 0x000058, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, InWeapon) == 0x000070, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::InWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, bDebug_0) == 0x000098, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::bDebug_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAim_RangedAim, ReturnValue) == 0x0000A0, "Member 'WrestlerAbilityTask_RangedAim_RangedAim::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_RangedAim \ +static_assert(alignof(UWrestlerAbilityTask_RangedAim) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_RangedAim"); \ +static_assert(sizeof(UWrestlerAbilityTask_RangedAim) == 0x000170, "Wrong size on UWrestlerAbilityTask_RangedAim"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, OnEvaded) == 0x000108, "Member 'UWrestlerAbilityTask_RangedAim::OnEvaded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, EvadeTag) == 0x000120, "Member 'UWrestlerAbilityTask_RangedAim::EvadeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, AimCue) == 0x000128, "Member 'UWrestlerAbilityTask_RangedAim::AimCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, AimDuration) == 0x000130, "Member 'UWrestlerAbilityTask_RangedAim::AimDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, EvadeSection) == 0x000134, "Member 'UWrestlerAbilityTask_RangedAim::EvadeSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, EvadeTime) == 0x00013C, "Member 'UWrestlerAbilityTask_RangedAim::EvadeTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, TargetActor) == 0x000140, "Member 'UWrestlerAbilityTask_RangedAim::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, LocationToFace) == 0x000148, "Member 'UWrestlerAbilityTask_RangedAim::LocationToFace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, Weapon) == 0x000160, "Member 'UWrestlerAbilityTask_RangedAim::Weapon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAim, bDebug) == 0x000168, "Member 'UWrestlerAbilityTask_RangedAim::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHUD_GetFadeOverlayWidget \ +static_assert(alignof(WrestlerHUD_GetFadeOverlayWidget) == 0x000008, "Wrong alignment on WrestlerHUD_GetFadeOverlayWidget"); \ +static_assert(sizeof(WrestlerHUD_GetFadeOverlayWidget) == 0x000008, "Wrong size on WrestlerHUD_GetFadeOverlayWidget"); \ +static_assert(offsetof(WrestlerHUD_GetFadeOverlayWidget, ReturnValue) == 0x000000, "Member 'WrestlerHUD_GetFadeOverlayWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerHUD \ +static_assert(alignof(AWrestlerHUD) == 0x000008, "Wrong alignment on AWrestlerHUD"); \ +static_assert(sizeof(AWrestlerHUD) == 0x000460, "Wrong size on AWrestlerHUD"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack \ +static_assert(alignof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack) == 0x000008, "Wrong alignment on WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack"); \ +static_assert(sizeof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack) == 0x0000D0, "Wrong size on WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, TraceCollisionChannel_0) == 0x000010, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::TraceCollisionChannel_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, ClassesToIgnore_0) == 0x000018, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::ClassesToIgnore_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, TargetDataFilter_0) == 0x000068, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::TargetDataFilter_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, MuzzleSocketName_0) == 0x000088, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::MuzzleSocketName_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, WeaponSocketName_0) == 0x000090, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::WeaponSocketName_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, Target_0) == 0x000098, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::Target_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, Spread_0) == 0x0000A0, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::Spread_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, MaxRange_0) == 0x0000A4, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::MaxRange_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, EnvironmentalDamage_0) == 0x0000A8, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::EnvironmentalDamage_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, ImpactCueTag_0) == 0x0000AC, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::ImpactCueTag_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, FireCueTag_0) == 0x0000B4, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::FireCueTag_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, MultifireSpread_0) == 0x0000BC, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::MultifireSpread_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, MultifireTraceNum_0) == 0x0000C0, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::MultifireTraceNum_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, bInPlayerDodged) == 0x0000C1, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::bInPlayerDodged' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, bDebug_0) == 0x0000C2, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::bDebug_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack, ReturnValue) == 0x0000C8, "Member 'WrestlerAbilityTask_RangedAttack_WrestlerRangedAttack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_RangedAttack_OnHitTargets \ +static_assert(alignof(WrestlerAbilityTask_RangedAttack_OnHitTargets) == 0x000008, "Wrong alignment on WrestlerAbilityTask_RangedAttack_OnHitTargets"); \ +static_assert(sizeof(WrestlerAbilityTask_RangedAttack_OnHitTargets) == 0x0000D8, "Wrong size on WrestlerAbilityTask_RangedAttack_OnHitTargets"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_OnHitTargets, TargetData) == 0x000000, "Member 'WrestlerAbilityTask_RangedAttack_OnHitTargets::TargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RangedAttack_OnHitTargets, EventData) == 0x000028, "Member 'WrestlerAbilityTask_RangedAttack_OnHitTargets::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_RangedAttack \ +static_assert(alignof(UWrestlerAbilityTask_RangedAttack) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_RangedAttack"); \ +static_assert(sizeof(UWrestlerAbilityTask_RangedAttack) == 0x000150, "Wrong size on UWrestlerAbilityTask_RangedAttack"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, OnRangedAttackHit) == 0x000080, "Member 'UWrestlerAbilityTask_RangedAttack::OnRangedAttackHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, OnRangedAttackMiss) == 0x000090, "Member 'UWrestlerAbilityTask_RangedAttack::OnRangedAttackMiss' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, Spread) == 0x0000A0, "Member 'UWrestlerAbilityTask_RangedAttack::Spread' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, TraceCollisionChannel) == 0x0000A4, "Member 'UWrestlerAbilityTask_RangedAttack::TraceCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, TargetDataFilter) == 0x0000A8, "Member 'UWrestlerAbilityTask_RangedAttack::TargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, ClassesToIgnore) == 0x0000C8, "Member 'UWrestlerAbilityTask_RangedAttack::ClassesToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, MuzzleSocketName) == 0x000118, "Member 'UWrestlerAbilityTask_RangedAttack::MuzzleSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, WeaponSocketName) == 0x000120, "Member 'UWrestlerAbilityTask_RangedAttack::WeaponSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, Target) == 0x000128, "Member 'UWrestlerAbilityTask_RangedAttack::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, MaxRange) == 0x000130, "Member 'UWrestlerAbilityTask_RangedAttack::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, EnvironmentalDamage) == 0x000134, "Member 'UWrestlerAbilityTask_RangedAttack::EnvironmentalDamage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, ImpactCueTag) == 0x000138, "Member 'UWrestlerAbilityTask_RangedAttack::ImpactCueTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, FireCueTag) == 0x000140, "Member 'UWrestlerAbilityTask_RangedAttack::FireCueTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, MultifireSpread) == 0x000148, "Member 'UWrestlerAbilityTask_RangedAttack::MultifireSpread' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, MultifireTraceNum) == 0x00014C, "Member 'UWrestlerAbilityTask_RangedAttack::MultifireTraceNum' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, bPlayerDodged) == 0x00014D, "Member 'UWrestlerAbilityTask_RangedAttack::bPlayerDodged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RangedAttack, bDebug) == 0x00014E, "Member 'UWrestlerAbilityTask_RangedAttack::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHUDWidget_IsVideoPlaying \ +static_assert(alignof(WrestlerHUDWidget_IsVideoPlaying) == 0x000001, "Wrong alignment on WrestlerHUDWidget_IsVideoPlaying"); \ +static_assert(sizeof(WrestlerHUDWidget_IsVideoPlaying) == 0x000001, "Wrong size on WrestlerHUDWidget_IsVideoPlaying"); \ +static_assert(offsetof(WrestlerHUDWidget_IsVideoPlaying, ReturnValue) == 0x000000, "Member 'WrestlerHUDWidget_IsVideoPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHUDWidget_OnInputMethodChanged \ +static_assert(alignof(WrestlerHUDWidget_OnInputMethodChanged) == 0x000001, "Wrong alignment on WrestlerHUDWidget_OnInputMethodChanged"); \ +static_assert(sizeof(WrestlerHUDWidget_OnInputMethodChanged) == 0x000001, "Wrong size on WrestlerHUDWidget_OnInputMethodChanged"); \ +static_assert(offsetof(WrestlerHUDWidget_OnInputMethodChanged, InCurrentInputType) == 0x000000, "Member 'WrestlerHUDWidget_OnInputMethodChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHUDWidget_StopVideo \ +static_assert(alignof(WrestlerHUDWidget_StopVideo) == 0x000001, "Wrong alignment on WrestlerHUDWidget_StopVideo"); \ +static_assert(sizeof(WrestlerHUDWidget_StopVideo) == 0x000001, "Wrong size on WrestlerHUDWidget_StopVideo"); \ +static_assert(offsetof(WrestlerHUDWidget_StopVideo, ReturnValue) == 0x000000, "Member 'WrestlerHUDWidget_StopVideo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHUDWidget_ToggleAllSlotsOn \ +static_assert(alignof(WrestlerHUDWidget_ToggleAllSlotsOn) == 0x000001, "Wrong alignment on WrestlerHUDWidget_ToggleAllSlotsOn"); \ +static_assert(sizeof(WrestlerHUDWidget_ToggleAllSlotsOn) == 0x000001, "Wrong size on WrestlerHUDWidget_ToggleAllSlotsOn"); \ +static_assert(offsetof(WrestlerHUDWidget_ToggleAllSlotsOn, bInStatus) == 0x000000, "Member 'WrestlerHUDWidget_ToggleAllSlotsOn::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHUDWidget \ +static_assert(alignof(UWrestlerHUDWidget) == 0x000008, "Wrong alignment on UWrestlerHUDWidget"); \ +static_assert(sizeof(UWrestlerHUDWidget) == 0x0002D8, "Wrong size on UWrestlerHUDWidget"); \ +static_assert(offsetof(UWrestlerHUDWidget, CrosshairActors) == 0x0002C8, "Member 'UWrestlerHUDWidget::CrosshairActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume \ +static_assert(alignof(WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume) == 0x000008, "Wrong alignment on WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume"); \ +static_assert(sizeof(WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume) == 0x000008, "Wrong size on WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume"); \ +static_assert(offsetof(WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume, InEnemyCharacter) == 0x000000, "Member 'WrestlerStateTreeEventVolume_HandleActorSpawnedInVolume::InEnemyCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerStateTreeEventVolume \ +static_assert(alignof(AWrestlerStateTreeEventVolume) == 0x000008, "Wrong alignment on AWrestlerStateTreeEventVolume"); \ +static_assert(sizeof(AWrestlerStateTreeEventVolume) == 0x0002D8, "Wrong size on AWrestlerStateTreeEventVolume"); \ +static_assert(offsetof(AWrestlerStateTreeEventVolume, EventTag) == 0x0002D0, "Member 'AWrestlerStateTreeEventVolume::EventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_RotateActor_WrestlerRotateActor \ +static_assert(alignof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_RotateActor_WrestlerRotateActor"); \ +static_assert(sizeof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor) == 0x000070, "Wrong size on WrestlerAbilityTask_RotateActor_WrestlerRotateActor"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, InTargetActor) == 0x000010, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, AbilityRotateData) == 0x000018, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::AbilityRotateData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, bInDebug) == 0x000060, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::bInDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_RotateActor_WrestlerRotateActor, ReturnValue) == 0x000068, "Member 'WrestlerAbilityTask_RotateActor_WrestlerRotateActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_RotateActor \ +static_assert(alignof(UWrestlerAbilityTask_RotateActor) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_RotateActor"); \ +static_assert(sizeof(UWrestlerAbilityTask_RotateActor) == 0x000108, "Wrong size on UWrestlerAbilityTask_RotateActor"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, OnRotateToCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_RotateActor::OnRotateToCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, ActorToFace) == 0x000090, "Member 'UWrestlerAbilityTask_RotateActor::ActorToFace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, LocationToFace) == 0x000098, "Member 'UWrestlerAbilityTask_RotateActor::LocationToFace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, RotatorOverride) == 0x0000B0, "Member 'UWrestlerAbilityTask_RotateActor::RotatorOverride' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, Duration) == 0x0000C8, "Member 'UWrestlerAbilityTask_RotateActor::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, Precision) == 0x0000CC, "Member 'UWrestlerAbilityTask_RotateActor::Precision' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, bUsePrecision) == 0x0000D0, "Member 'UWrestlerAbilityTask_RotateActor::bUsePrecision' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, Delay) == 0x0000D4, "Member 'UWrestlerAbilityTask_RotateActor::Delay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, bIgnoreDodge) == 0x0000D8, "Member 'UWrestlerAbilityTask_RotateActor::bIgnoreDodge' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, bUseAISetFocus) == 0x0000D9, "Member 'UWrestlerAbilityTask_RotateActor::bUseAISetFocus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_RotateActor, bDebug) == 0x0000DA, "Member 'UWrestlerAbilityTask_RotateActor::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTargetPoint \ +static_assert(alignof(AWrestlerTargetPoint) == 0x000008, "Wrong alignment on AWrestlerTargetPoint"); \ +static_assert(sizeof(AWrestlerTargetPoint) == 0x000298, "Wrong size on AWrestlerTargetPoint"); \ + +#define DUMPER7_ASSERTS_WrestlerTeleportTargetPoint_IsStreamingEnabled \ +static_assert(alignof(WrestlerTeleportTargetPoint_IsStreamingEnabled) == 0x000001, "Wrong alignment on WrestlerTeleportTargetPoint_IsStreamingEnabled"); \ +static_assert(sizeof(WrestlerTeleportTargetPoint_IsStreamingEnabled) == 0x000001, "Wrong size on WrestlerTeleportTargetPoint_IsStreamingEnabled"); \ +static_assert(offsetof(WrestlerTeleportTargetPoint_IsStreamingEnabled, ReturnValue) == 0x000000, "Member 'WrestlerTeleportTargetPoint_IsStreamingEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTeleportTargetPoint \ +static_assert(alignof(AWrestlerTeleportTargetPoint) == 0x000008, "Wrong alignment on AWrestlerTeleportTargetPoint"); \ +static_assert(sizeof(AWrestlerTeleportTargetPoint) == 0x0002C0, "Wrong size on AWrestlerTeleportTargetPoint"); \ +static_assert(offsetof(AWrestlerTeleportTargetPoint, HeraMissionActorComponent) == 0x0002A0, "Member 'AWrestlerTeleportTargetPoint::HeraMissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTeleportTargetPoint, WorldPartitionStreamingSourceComponent) == 0x0002A8, "Member 'AWrestlerTeleportTargetPoint::WorldPartitionStreamingSourceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_SetAITarget \ +static_assert(alignof(UWrestlerAbilityTask_SetAITarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_SetAITarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_SetAITarget) == 0x0000B8, "Wrong size on UWrestlerAbilityTask_SetAITarget"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameDummyToo \ +static_assert(alignof(UWrestlerSaveGameDummyToo) == 0x000008, "Wrong alignment on UWrestlerSaveGameDummyToo"); \ +static_assert(sizeof(UWrestlerSaveGameDummyToo) == 0x000088, "Wrong size on UWrestlerSaveGameDummyToo"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobalLightVisibilityGroup_SetEnabled \ +static_assert(alignof(WrestlerGlobalLightVisibilityGroup_SetEnabled) == 0x000001, "Wrong alignment on WrestlerGlobalLightVisibilityGroup_SetEnabled"); \ +static_assert(sizeof(WrestlerGlobalLightVisibilityGroup_SetEnabled) == 0x000001, "Wrong size on WrestlerGlobalLightVisibilityGroup_SetEnabled"); \ +static_assert(offsetof(WrestlerGlobalLightVisibilityGroup_SetEnabled, bEnabled_0) == 0x000000, "Member 'WrestlerGlobalLightVisibilityGroup_SetEnabled::bEnabled_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobalLightVisibilityGroup_SetRenderIntensity \ +static_assert(alignof(WrestlerGlobalLightVisibilityGroup_SetRenderIntensity) == 0x000004, "Wrong alignment on WrestlerGlobalLightVisibilityGroup_SetRenderIntensity"); \ +static_assert(sizeof(WrestlerGlobalLightVisibilityGroup_SetRenderIntensity) == 0x000004, "Wrong size on WrestlerGlobalLightVisibilityGroup_SetRenderIntensity"); \ +static_assert(offsetof(WrestlerGlobalLightVisibilityGroup_SetRenderIntensity, InNewIntensity) == 0x000000, "Member 'WrestlerGlobalLightVisibilityGroup_SetRenderIntensity::InNewIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobalLightVisibilityGroup_GetEnabled \ +static_assert(alignof(WrestlerGlobalLightVisibilityGroup_GetEnabled) == 0x000001, "Wrong alignment on WrestlerGlobalLightVisibilityGroup_GetEnabled"); \ +static_assert(sizeof(WrestlerGlobalLightVisibilityGroup_GetEnabled) == 0x000001, "Wrong size on WrestlerGlobalLightVisibilityGroup_GetEnabled"); \ +static_assert(offsetof(WrestlerGlobalLightVisibilityGroup_GetEnabled, ReturnValue) == 0x000000, "Member 'WrestlerGlobalLightVisibilityGroup_GetEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag \ +static_assert(alignof(WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag) == 0x000004, "Wrong alignment on WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag"); \ +static_assert(sizeof(WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag) == 0x000008, "Wrong size on WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag"); \ +static_assert(offsetof(WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag, ReturnValue) == 0x000000, "Member 'WrestlerGlobalLightVisibilityGroup_GetGlobalVisibilityTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobalLightVisibilityGroup_GetRenderIntensity \ +static_assert(alignof(WrestlerGlobalLightVisibilityGroup_GetRenderIntensity) == 0x000004, "Wrong alignment on WrestlerGlobalLightVisibilityGroup_GetRenderIntensity"); \ +static_assert(sizeof(WrestlerGlobalLightVisibilityGroup_GetRenderIntensity) == 0x000004, "Wrong size on WrestlerGlobalLightVisibilityGroup_GetRenderIntensity"); \ +static_assert(offsetof(WrestlerGlobalLightVisibilityGroup_GetRenderIntensity, ReturnValue) == 0x000000, "Member 'WrestlerGlobalLightVisibilityGroup_GetRenderIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGlobalLightVisibilityGroup \ +static_assert(alignof(AWrestlerGlobalLightVisibilityGroup) == 0x000008, "Wrong alignment on AWrestlerGlobalLightVisibilityGroup"); \ +static_assert(sizeof(AWrestlerGlobalLightVisibilityGroup) == 0x0002C0, "Wrong size on AWrestlerGlobalLightVisibilityGroup"); \ +static_assert(offsetof(AWrestlerGlobalLightVisibilityGroup, bEnabled) == 0x000298, "Member 'AWrestlerGlobalLightVisibilityGroup::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGlobalLightVisibilityGroup, GlobalVisibilityTag) == 0x00029C, "Member 'AWrestlerGlobalLightVisibilityGroup::GlobalVisibilityTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGlobalLightVisibilityGroup, FadeTime) == 0x0002A4, "Member 'AWrestlerGlobalLightVisibilityGroup::FadeTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGlobalLightVisibilityGroup, AttachedLights) == 0x0002A8, "Member 'AWrestlerGlobalLightVisibilityGroup::AttachedLights' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGlobalLightVisibilityGroup, PreviousIntensity) == 0x0002B8, "Member 'AWrestlerGlobalLightVisibilityGroup::PreviousIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_SetCtrlRot_SetControlRotation \ +static_assert(alignof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation) == 0x000008, "Wrong alignment on WrestlerAbilityTask_SetCtrlRot_SetControlRotation"); \ +static_assert(sizeof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation) == 0x000038, "Wrong size on WrestlerAbilityTask_SetCtrlRot_SetControlRotation"); \ +static_assert(offsetof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_SetCtrlRot_SetControlRotation::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_SetCtrlRot_SetControlRotation::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation, InNewRotation) == 0x000010, "Member 'WrestlerAbilityTask_SetCtrlRot_SetControlRotation::InNewRotation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation, InInterSpeed) == 0x000028, "Member 'WrestlerAbilityTask_SetCtrlRot_SetControlRotation::InInterSpeed' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SetCtrlRot_SetControlRotation, ReturnValue) == 0x000030, "Member 'WrestlerAbilityTask_SetCtrlRot_SetControlRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_SetCtrlRot \ +static_assert(alignof(UWrestlerAbilityTask_SetCtrlRot) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_SetCtrlRot"); \ +static_assert(sizeof(UWrestlerAbilityTask_SetCtrlRot) == 0x0000D0, "Wrong size on UWrestlerAbilityTask_SetCtrlRot"); \ +static_assert(offsetof(UWrestlerAbilityTask_SetCtrlRot, OwningController) == 0x0000A0, "Member 'UWrestlerAbilityTask_SetCtrlRot::OwningController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_SetCtrlRot, NewRotation) == 0x0000A8, "Member 'UWrestlerAbilityTask_SetCtrlRot::NewRotation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_SetCtrlRot, Speed) == 0x0000C0, "Member 'UWrestlerAbilityTask_SetCtrlRot::Speed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_SetCtrlRot, Timeout) == 0x0000C4, "Member 'UWrestlerAbilityTask_SetCtrlRot::Timeout' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_SetCtrlRot, TimeCount) == 0x0000C8, "Member 'UWrestlerAbilityTask_SetCtrlRot::TimeCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerHoudiniContainer \ +static_assert(alignof(AWrestlerHoudiniContainer) == 0x000008, "Wrong alignment on AWrestlerHoudiniContainer"); \ +static_assert(sizeof(AWrestlerHoudiniContainer) == 0x000298, "Wrong size on AWrestlerHoudiniContainer"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle \ +static_assert(alignof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle) == 0x000008, "Wrong alignment on WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle"); \ +static_assert(sizeof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle) == 0x000020, "Wrong size on WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle"); \ +static_assert(offsetof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle, InReticleType) == 0x000010, "Member 'WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle::InReticleType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_SpawnReticle_WrestlerSpawnReticle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_SpawnReticle \ +static_assert(alignof(UWrestlerAbilityTask_SpawnReticle) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_SpawnReticle"); \ +static_assert(sizeof(UWrestlerAbilityTask_SpawnReticle) == 0x000090, "Wrong size on UWrestlerAbilityTask_SpawnReticle"); \ +static_assert(offsetof(UWrestlerAbilityTask_SpawnReticle, SpawnedReticle) == 0x000080, "Member 'UWrestlerAbilityTask_SpawnReticle::SpawnedReticle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_SphereTrace \ +static_assert(alignof(UWrestlerAbilityTask_SphereTrace) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_SphereTrace"); \ +static_assert(sizeof(UWrestlerAbilityTask_SphereTrace) == 0x0000E8, "Wrong size on UWrestlerAbilityTask_SphereTrace"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_EndInteract \ +static_assert(alignof(WrestlerInteractionComponent_EndInteract) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_EndInteract"); \ +static_assert(sizeof(WrestlerInteractionComponent_EndInteract) == 0x000008, "Wrong size on WrestlerInteractionComponent_EndInteract"); \ +static_assert(offsetof(WrestlerInteractionComponent_EndInteract, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_EndInteract::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_InteractionEvent \ +static_assert(alignof(WrestlerInteractionComponent_InteractionEvent) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_InteractionEvent"); \ +static_assert(sizeof(WrestlerInteractionComponent_InteractionEvent) == 0x000010, "Wrong size on WrestlerInteractionComponent_InteractionEvent"); \ +static_assert(offsetof(WrestlerInteractionComponent_InteractionEvent, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_InteractionEvent::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_InteractionEvent, InEventTag) == 0x000008, "Member 'WrestlerInteractionComponent_InteractionEvent::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_OnBeginOverlap \ +static_assert(alignof(WrestlerInteractionComponent_OnBeginOverlap) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_OnBeginOverlap"); \ +static_assert(sizeof(WrestlerInteractionComponent_OnBeginOverlap) == 0x000108, "Wrong size on WrestlerInteractionComponent_OnBeginOverlap"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerInteractionComponent_OnBeginOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, OtherActor) == 0x000008, "Member 'WrestlerInteractionComponent_OnBeginOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, OtherComp) == 0x000010, "Member 'WrestlerInteractionComponent_OnBeginOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerInteractionComponent_OnBeginOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, bFromSweep) == 0x00001C, "Member 'WrestlerInteractionComponent_OnBeginOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnBeginOverlap, SweepResult) == 0x000020, "Member 'WrestlerInteractionComponent_OnBeginOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_OnEndOverlap \ +static_assert(alignof(WrestlerInteractionComponent_OnEndOverlap) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_OnEndOverlap"); \ +static_assert(sizeof(WrestlerInteractionComponent_OnEndOverlap) == 0x000020, "Wrong size on WrestlerInteractionComponent_OnEndOverlap"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnEndOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerInteractionComponent_OnEndOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnEndOverlap, OtherActor) == 0x000008, "Member 'WrestlerInteractionComponent_OnEndOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnEndOverlap, OtherComp) == 0x000010, "Member 'WrestlerInteractionComponent_OnEndOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_OnEndOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerInteractionComponent_OnEndOverlap::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_ReceiveEnd \ +static_assert(alignof(WrestlerInteractionComponent_ReceiveEnd) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_ReceiveEnd"); \ +static_assert(sizeof(WrestlerInteractionComponent_ReceiveEnd) == 0x000008, "Wrong size on WrestlerInteractionComponent_ReceiveEnd"); \ +static_assert(offsetof(WrestlerInteractionComponent_ReceiveEnd, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_ReceiveEnd::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_ReceiveEndPassiveInteraction \ +static_assert(alignof(WrestlerInteractionComponent_ReceiveEndPassiveInteraction) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_ReceiveEndPassiveInteraction"); \ +static_assert(sizeof(WrestlerInteractionComponent_ReceiveEndPassiveInteraction) == 0x000008, "Wrong size on WrestlerInteractionComponent_ReceiveEndPassiveInteraction"); \ +static_assert(offsetof(WrestlerInteractionComponent_ReceiveEndPassiveInteraction, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_ReceiveEndPassiveInteraction::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_ReceiveOnActiveInteraction \ +static_assert(alignof(WrestlerInteractionComponent_ReceiveOnActiveInteraction) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_ReceiveOnActiveInteraction"); \ +static_assert(sizeof(WrestlerInteractionComponent_ReceiveOnActiveInteraction) == 0x000008, "Wrong size on WrestlerInteractionComponent_ReceiveOnActiveInteraction"); \ +static_assert(offsetof(WrestlerInteractionComponent_ReceiveOnActiveInteraction, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_ReceiveOnActiveInteraction::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_ReceiveOnPassiveInteraction \ +static_assert(alignof(WrestlerInteractionComponent_ReceiveOnPassiveInteraction) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_ReceiveOnPassiveInteraction"); \ +static_assert(sizeof(WrestlerInteractionComponent_ReceiveOnPassiveInteraction) == 0x000008, "Wrong size on WrestlerInteractionComponent_ReceiveOnPassiveInteraction"); \ +static_assert(offsetof(WrestlerInteractionComponent_ReceiveOnPassiveInteraction, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_ReceiveOnPassiveInteraction::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_SetBlocked \ +static_assert(alignof(WrestlerInteractionComponent_SetBlocked) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_SetBlocked"); \ +static_assert(sizeof(WrestlerInteractionComponent_SetBlocked) == 0x000020, "Wrong size on WrestlerInteractionComponent_SetBlocked"); \ +static_assert(offsetof(WrestlerInteractionComponent_SetBlocked, bInBlocked) == 0x000000, "Member 'WrestlerInteractionComponent_SetBlocked::bInBlocked' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_SetBlocked, InBlockContext) == 0x000008, "Member 'WrestlerInteractionComponent_SetBlocked::InBlockContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_SetHidden \ +static_assert(alignof(WrestlerInteractionComponent_SetHidden) == 0x000001, "Wrong alignment on WrestlerInteractionComponent_SetHidden"); \ +static_assert(sizeof(WrestlerInteractionComponent_SetHidden) == 0x000001, "Wrong size on WrestlerInteractionComponent_SetHidden"); \ +static_assert(offsetof(WrestlerInteractionComponent_SetHidden, bInHidden) == 0x000000, "Member 'WrestlerInteractionComponent_SetHidden::bInHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_StartInteract \ +static_assert(alignof(WrestlerInteractionComponent_StartInteract) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_StartInteract"); \ +static_assert(sizeof(WrestlerInteractionComponent_StartInteract) == 0x000008, "Wrong size on WrestlerInteractionComponent_StartInteract"); \ +static_assert(offsetof(WrestlerInteractionComponent_StartInteract, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_StartInteract::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_CanInteract \ +static_assert(alignof(WrestlerInteractionComponent_CanInteract) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_CanInteract"); \ +static_assert(sizeof(WrestlerInteractionComponent_CanInteract) == 0x000010, "Wrong size on WrestlerInteractionComponent_CanInteract"); \ +static_assert(offsetof(WrestlerInteractionComponent_CanInteract, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_CanInteract::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_CanInteract, ReturnValue) == 0x000008, "Member 'WrestlerInteractionComponent_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_CanSee \ +static_assert(alignof(WrestlerInteractionComponent_CanSee) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_CanSee"); \ +static_assert(sizeof(WrestlerInteractionComponent_CanSee) == 0x000010, "Wrong size on WrestlerInteractionComponent_CanSee"); \ +static_assert(offsetof(WrestlerInteractionComponent_CanSee, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_CanSee::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_CanSee, ReturnValue) == 0x000008, "Member 'WrestlerInteractionComponent_CanSee::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_GetInteractionContext \ +static_assert(alignof(WrestlerInteractionComponent_GetInteractionContext) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_GetInteractionContext"); \ +static_assert(sizeof(WrestlerInteractionComponent_GetInteractionContext) == 0x000018, "Wrong size on WrestlerInteractionComponent_GetInteractionContext"); \ +static_assert(offsetof(WrestlerInteractionComponent_GetInteractionContext, ReturnValue) == 0x000000, "Member 'WrestlerInteractionComponent_GetInteractionContext::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_GetTransform \ +static_assert(alignof(WrestlerInteractionComponent_GetTransform) == 0x000010, "Wrong alignment on WrestlerInteractionComponent_GetTransform"); \ +static_assert(sizeof(WrestlerInteractionComponent_GetTransform) == 0x000070, "Wrong size on WrestlerInteractionComponent_GetTransform"); \ +static_assert(offsetof(WrestlerInteractionComponent_GetTransform, OutTransform) == 0x000000, "Member 'WrestlerInteractionComponent_GetTransform::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionComponent_GetTransform, ReturnValue) == 0x000060, "Member 'WrestlerInteractionComponent_GetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionComponent_PlayInteractionAnim \ +static_assert(alignof(WrestlerInteractionComponent_PlayInteractionAnim) == 0x000008, "Wrong alignment on WrestlerInteractionComponent_PlayInteractionAnim"); \ +static_assert(sizeof(WrestlerInteractionComponent_PlayInteractionAnim) == 0x000008, "Wrong size on WrestlerInteractionComponent_PlayInteractionAnim"); \ +static_assert(offsetof(WrestlerInteractionComponent_PlayInteractionAnim, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionComponent_PlayInteractionAnim::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInteractionComponent \ +static_assert(alignof(UWrestlerInteractionComponent) == 0x000008, "Wrong alignment on UWrestlerInteractionComponent"); \ +static_assert(sizeof(UWrestlerInteractionComponent) == 0x0001F8, "Wrong size on UWrestlerInteractionComponent"); \ +static_assert(offsetof(UWrestlerInteractionComponent, InputType) == 0x0000A0, "Member 'UWrestlerInteractionComponent::InputType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, HoldTime) == 0x0000A4, "Member 'UWrestlerInteractionComponent::HoldTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, Context) == 0x0000A8, "Member 'UWrestlerInteractionComponent::Context' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, bShowDistantMarker) == 0x0000C0, "Member 'UWrestlerInteractionComponent::bShowDistantMarker' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, bRestrictAngle) == 0x0000C1, "Member 'UWrestlerInteractionComponent::bRestrictAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, AngleRestriction) == 0x0000C4, "Member 'UWrestlerInteractionComponent::AngleRestriction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, bRestrictDistance) == 0x0000C8, "Member 'UWrestlerInteractionComponent::bRestrictDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, DistanceRestriction) == 0x0000CC, "Member 'UWrestlerInteractionComponent::DistanceRestriction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, bPadlocked) == 0x0000D0, "Member 'UWrestlerInteractionComponent::bPadlocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, PadlockEnemyDetector) == 0x0000D8, "Member 'UWrestlerInteractionComponent::PadlockEnemyDetector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, InteractionPointTag) == 0x000100, "Member 'UWrestlerInteractionComponent::InteractionPointTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, AnimationTag) == 0x000108, "Member 'UWrestlerInteractionComponent::AnimationTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnActiveInteractionDelegate) == 0x000110, "Member 'UWrestlerInteractionComponent::OnActiveInteractionDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnEnd) == 0x000120, "Member 'UWrestlerInteractionComponent::OnEnd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnPassiveInteractionDelegate) == 0x000130, "Member 'UWrestlerInteractionComponent::OnPassiveInteractionDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, EndPassiveInteractionDelegate) == 0x000140, "Member 'UWrestlerInteractionComponent::EndPassiveInteractionDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnInteractionEvent) == 0x000150, "Member 'UWrestlerInteractionComponent::OnInteractionEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnInteractionPadlockLocked) == 0x000160, "Member 'UWrestlerInteractionComponent::OnInteractionPadlockLocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, OnInteractionPadlockUnlocked) == 0x000170, "Member 'UWrestlerInteractionComponent::OnInteractionPadlockUnlocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, InteractionPointComponent) == 0x000180, "Member 'UWrestlerInteractionComponent::InteractionPointComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionComponent, EnemyOverlapCounters) == 0x000188, "Member 'UWrestlerInteractionComponent::EnemyOverlapCounters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_SphericalTrigger_OnOverlapped \ +static_assert(alignof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped) == 0x000008, "Wrong alignment on WrestlerAbilityTask_SphericalTrigger_OnOverlapped"); \ +static_assert(sizeof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped) == 0x000108, "Wrong size on WrestlerAbilityTask_SphericalTrigger_OnOverlapped"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, InOverlappedComponent) == 0x000000, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::InOverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, InOtherActor) == 0x000008, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, InOtherComp) == 0x000010, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::InOtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, InOtherBodyIndex) == 0x000018, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::InOtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, bInFromSweep) == 0x00001C, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::bInFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnOverlapped, InSweepResult) == 0x000020, "Member 'WrestlerAbilityTask_SphericalTrigger_OnOverlapped::InSweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor \ +static_assert(alignof(WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor"); \ +static_assert(sizeof(WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor) == 0x000008, "Wrong size on WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor"); \ +static_assert(offsetof(WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor, InActor) == 0x000000, "Member 'WrestlerAbilityTask_SphericalTrigger_OnSpawnedActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_SphericalTrigger \ +static_assert(alignof(UWrestlerAbilityTask_SphericalTrigger) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_SphericalTrigger"); \ +static_assert(sizeof(UWrestlerAbilityTask_SphericalTrigger) == 0x000190, "Wrong size on UWrestlerAbilityTask_SphericalTrigger"); \ +static_assert(offsetof(UWrestlerAbilityTask_SphericalTrigger, Instance) == 0x000160, "Member 'UWrestlerAbilityTask_SphericalTrigger::Instance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue \ +static_assert(alignof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue) == 0x000008, "Wrong alignment on WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue"); \ +static_assert(sizeof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue) == 0x000038, "Wrong size on WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, Story) == 0x000010, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::Story' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, JumpToKnot) == 0x000018, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::JumpToKnot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, Choice) == 0x000028, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::Choice' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue, ReturnValue) == 0x000030, "Member 'WrestlerAbilityTask_StartDialogue_WrestlerTaskStartDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_StartDialogue \ +static_assert(alignof(UWrestlerAbilityTask_StartDialogue) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_StartDialogue"); \ +static_assert(sizeof(UWrestlerAbilityTask_StartDialogue) == 0x000108, "Wrong size on UWrestlerAbilityTask_StartDialogue"); \ +static_assert(offsetof(UWrestlerAbilityTask_StartDialogue, DialogueInfo) == 0x0000A0, "Member 'UWrestlerAbilityTask_StartDialogue::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_StartDialogue, StartKnotOverride) == 0x0000A8, "Member 'UWrestlerAbilityTask_StartDialogue::StartKnotOverride' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_StartDialogue, FeedChoice) == 0x0000B8, "Member 'UWrestlerAbilityTask_StartDialogue::FeedChoice' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_StartDialogue, OnFinish) == 0x0000C0, "Member 'UWrestlerAbilityTask_StartDialogue::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_StartDialogue, OnFeed) == 0x0000D0, "Member 'UWrestlerAbilityTask_StartDialogue::OnFeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerHUDInGame \ +static_assert(alignof(AWrestlerHUDInGame) == 0x000008, "Wrong alignment on AWrestlerHUDInGame"); \ +static_assert(sizeof(AWrestlerHUDInGame) == 0x000460, "Wrong size on AWrestlerHUDInGame"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Stun_WrestlerStun \ +static_assert(alignof(WrestlerAbilityTask_Stun_WrestlerStun) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Stun_WrestlerStun"); \ +static_assert(sizeof(WrestlerAbilityTask_Stun_WrestlerStun) == 0x000018, "Wrong size on WrestlerAbilityTask_Stun_WrestlerStun"); \ +static_assert(offsetof(WrestlerAbilityTask_Stun_WrestlerStun, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Stun_WrestlerStun::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Stun_WrestlerStun, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Stun_WrestlerStun::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Stun_WrestlerStun, ReturnValue) == 0x000010, "Member 'WrestlerAbilityTask_Stun_WrestlerStun::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Stun \ +static_assert(alignof(UWrestlerAbilityTask_Stun) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Stun"); \ +static_assert(sizeof(UWrestlerAbilityTask_Stun) == 0x000090, "Wrong size on UWrestlerAbilityTask_Stun"); \ +static_assert(offsetof(UWrestlerAbilityTask_Stun, StunDelegate) == 0x000080, "Member 'UWrestlerAbilityTask_Stun::StunDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeDefaultBehaviorDataAsset \ +static_assert(alignof(UWrestlerStateTreeDefaultBehaviorDataAsset) == 0x000008, "Wrong alignment on UWrestlerStateTreeDefaultBehaviorDataAsset"); \ +static_assert(sizeof(UWrestlerStateTreeDefaultBehaviorDataAsset) == 0x000080, "Wrong size on UWrestlerStateTreeDefaultBehaviorDataAsset"); \ +static_assert(offsetof(UWrestlerStateTreeDefaultBehaviorDataAsset, StateDefaultBehaviours) == 0x000030, "Member 'UWrestlerStateTreeDefaultBehaviorDataAsset::StateDefaultBehaviours' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_TargetAssistAndConfirm \ +static_assert(alignof(UWrestlerAbilityTask_TargetAssistAndConfirm) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_TargetAssistAndConfirm"); \ +static_assert(sizeof(UWrestlerAbilityTask_TargetAssistAndConfirm) == 0x000118, "Wrong size on UWrestlerAbilityTask_TargetAssistAndConfirm"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetAssistAndConfirm, ReticleClass) == 0x0000C0, "Member 'UWrestlerAbilityTask_TargetAssistAndConfirm::ReticleClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetAssistAndConfirm, Filter) == 0x0000D0, "Member 'UWrestlerAbilityTask_TargetAssistAndConfirm::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetAssistAndConfirm, SpawnedReticle) == 0x0000F0, "Member 'UWrestlerAbilityTask_TargetAssistAndConfirm::SpawnedReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetAssistAndConfirm, OwningAbility) == 0x0000F8, "Member 'UWrestlerAbilityTask_TargetAssistAndConfirm::OwningAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBaseRoute_GetPathPoint \ +static_assert(alignof(WrestlerBaseRoute_GetPathPoint) == 0x000008, "Wrong alignment on WrestlerBaseRoute_GetPathPoint"); \ +static_assert(sizeof(WrestlerBaseRoute_GetPathPoint) == 0x000010, "Wrong size on WrestlerBaseRoute_GetPathPoint"); \ +static_assert(offsetof(WrestlerBaseRoute_GetPathPoint, InIndex) == 0x000000, "Member 'WrestlerBaseRoute_GetPathPoint::InIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBaseRoute_GetPathPoint, ReturnValue) == 0x000008, "Member 'WrestlerBaseRoute_GetPathPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBaseRoute_SetPathPoints \ +static_assert(alignof(WrestlerBaseRoute_SetPathPoints) == 0x000008, "Wrong alignment on WrestlerBaseRoute_SetPathPoints"); \ +static_assert(sizeof(WrestlerBaseRoute_SetPathPoints) == 0x000010, "Wrong size on WrestlerBaseRoute_SetPathPoints"); \ +static_assert(offsetof(WrestlerBaseRoute_SetPathPoints, InPathPoints) == 0x000000, "Member 'WrestlerBaseRoute_SetPathPoints::InPathPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBaseRoute_GetPathLength \ +static_assert(alignof(WrestlerBaseRoute_GetPathLength) == 0x000004, "Wrong alignment on WrestlerBaseRoute_GetPathLength"); \ +static_assert(sizeof(WrestlerBaseRoute_GetPathLength) == 0x000004, "Wrong size on WrestlerBaseRoute_GetPathLength"); \ +static_assert(offsetof(WrestlerBaseRoute_GetPathLength, ReturnValue) == 0x000000, "Member 'WrestlerBaseRoute_GetPathLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBaseRoute_GetPathPoints \ +static_assert(alignof(WrestlerBaseRoute_GetPathPoints) == 0x000008, "Wrong alignment on WrestlerBaseRoute_GetPathPoints"); \ +static_assert(sizeof(WrestlerBaseRoute_GetPathPoints) == 0x000010, "Wrong size on WrestlerBaseRoute_GetPathPoints"); \ +static_assert(offsetof(WrestlerBaseRoute_GetPathPoints, ReturnValue) == 0x000000, "Member 'WrestlerBaseRoute_GetPathPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerBaseRoute \ +static_assert(alignof(AWrestlerBaseRoute) == 0x000008, "Wrong alignment on AWrestlerBaseRoute"); \ +static_assert(sizeof(AWrestlerBaseRoute) == 0x0002C0, "Wrong size on AWrestlerBaseRoute"); \ +static_assert(offsetof(AWrestlerBaseRoute, bActive) == 0x000298, "Member 'AWrestlerBaseRoute::bActive' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBaseRoute, bSingleRun) == 0x000299, "Member 'AWrestlerBaseRoute::bSingleRun' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBaseRoute, bLoop) == 0x00029A, "Member 'AWrestlerBaseRoute::bLoop' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBaseRoute, PathPoints) == 0x0002A0, "Member 'AWrestlerBaseRoute::PathPoints' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerBaseRoute, PathLineColor) == 0x0002B0, "Member 'AWrestlerBaseRoute::PathLineColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPatrolRoute \ +static_assert(alignof(AWrestlerPatrolRoute) == 0x000008, "Wrong alignment on AWrestlerPatrolRoute"); \ +static_assert(sizeof(AWrestlerPatrolRoute) == 0x0002C0, "Wrong size on AWrestlerPatrolRoute"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightSubsystem_OnMissionTypeChanged \ +static_assert(alignof(WrestlerHighlightSubsystem_OnMissionTypeChanged) == 0x000001, "Wrong alignment on WrestlerHighlightSubsystem_OnMissionTypeChanged"); \ +static_assert(sizeof(WrestlerHighlightSubsystem_OnMissionTypeChanged) == 0x000001, "Wrong size on WrestlerHighlightSubsystem_OnMissionTypeChanged"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_OnMissionTypeChanged, CurrentMissionType) == 0x000000, "Member 'WrestlerHighlightSubsystem_OnMissionTypeChanged::CurrentMissionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightSubsystem_SetHighlightEffectActor \ +static_assert(alignof(WrestlerHighlightSubsystem_SetHighlightEffectActor) == 0x000008, "Wrong alignment on WrestlerHighlightSubsystem_SetHighlightEffectActor"); \ +static_assert(sizeof(WrestlerHighlightSubsystem_SetHighlightEffectActor) == 0x000010, "Wrong size on WrestlerHighlightSubsystem_SetHighlightEffectActor"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_SetHighlightEffectActor, InHighlightType) == 0x000000, "Member 'WrestlerHighlightSubsystem_SetHighlightEffectActor::InHighlightType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_SetHighlightEffectActor, InActor) == 0x000008, "Member 'WrestlerHighlightSubsystem_SetHighlightEffectActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightSubsystem_GetHighlightEffectsActor \ +static_assert(alignof(WrestlerHighlightSubsystem_GetHighlightEffectsActor) == 0x000008, "Wrong alignment on WrestlerHighlightSubsystem_GetHighlightEffectsActor"); \ +static_assert(sizeof(WrestlerHighlightSubsystem_GetHighlightEffectsActor) == 0x000010, "Wrong size on WrestlerHighlightSubsystem_GetHighlightEffectsActor"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_GetHighlightEffectsActor, InHighlightType) == 0x000000, "Member 'WrestlerHighlightSubsystem_GetHighlightEffectsActor::InHighlightType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_GetHighlightEffectsActor, ReturnValue) == 0x000008, "Member 'WrestlerHighlightSubsystem_GetHighlightEffectsActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightSubsystem_GetMassParticleActors \ +static_assert(alignof(WrestlerHighlightSubsystem_GetMassParticleActors) == 0x000008, "Wrong alignment on WrestlerHighlightSubsystem_GetMassParticleActors"); \ +static_assert(sizeof(WrestlerHighlightSubsystem_GetMassParticleActors) == 0x000018, "Wrong size on WrestlerHighlightSubsystem_GetMassParticleActors"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_GetMassParticleActors, InHighlightType) == 0x000000, "Member 'WrestlerHighlightSubsystem_GetMassParticleActors::InHighlightType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_GetMassParticleActors, OutParticleActors) == 0x000008, "Member 'WrestlerHighlightSubsystem_GetMassParticleActors::OutParticleActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightSubsystem_IsHighlightTypeActive \ +static_assert(alignof(WrestlerHighlightSubsystem_IsHighlightTypeActive) == 0x000001, "Wrong alignment on WrestlerHighlightSubsystem_IsHighlightTypeActive"); \ +static_assert(sizeof(WrestlerHighlightSubsystem_IsHighlightTypeActive) == 0x000002, "Wrong size on WrestlerHighlightSubsystem_IsHighlightTypeActive"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_IsHighlightTypeActive, InHighlightType) == 0x000000, "Member 'WrestlerHighlightSubsystem_IsHighlightTypeActive::InHighlightType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightSubsystem_IsHighlightTypeActive, ReturnValue) == 0x000001, "Member 'WrestlerHighlightSubsystem_IsHighlightTypeActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHighlightSubsystem \ +static_assert(alignof(UWrestlerHighlightSubsystem) == 0x000008, "Wrong alignment on UWrestlerHighlightSubsystem"); \ +static_assert(sizeof(UWrestlerHighlightSubsystem) == 0x0000A8, "Wrong size on UWrestlerHighlightSubsystem"); \ +static_assert(offsetof(UWrestlerHighlightSubsystem, HighlightedEntities) == 0x000040, "Member 'UWrestlerHighlightSubsystem::HighlightedEntities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHighlightSubsystem, RegisteredInterfaceUsers) == 0x000090, "Member 'UWrestlerHighlightSubsystem::RegisteredInterfaceUsers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_TargetAssisted_TargetAssisted \ +static_assert(alignof(WrestlerAbilityTask_TargetAssisted_TargetAssisted) == 0x000010, "Wrong alignment on WrestlerAbilityTask_TargetAssisted_TargetAssisted"); \ +static_assert(sizeof(WrestlerAbilityTask_TargetAssisted_TargetAssisted) == 0x0000C0, "Wrong size on WrestlerAbilityTask_TargetAssisted_TargetAssisted"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InRadius) == 0x000010, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InThreshold) == 0x000014, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InThreshold' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InWeightDistance) == 0x000018, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InWeightDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InWeightAngle) == 0x00001C, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InWeightAngle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InQueryChannel) == 0x000020, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InQueryChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InIsReachableChannel) == 0x000021, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InIsReachableChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, bInShouldBeReachable) == 0x000022, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::bInShouldBeReachable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InTransform) == 0x000030, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, InFilter) == 0x000090, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::InFilter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssisted, ReturnValue) == 0x0000B0, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssisted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp \ +static_assert(alignof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp) == 0x000010, "Wrong alignment on WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp"); \ +static_assert(sizeof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp) == 0x0000C0, "Wrong size on WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InOwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InOwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InTaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InRadius) == 0x000010, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InMinThreshold) == 0x000014, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InMinThreshold' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InMaxThreshold) == 0x000018, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InMaxThreshold' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InWeightDistance) == 0x00001C, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InWeightDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InWeightAngle) == 0x000020, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InWeightAngle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InQueryChannel) == 0x000024, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InQueryChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InIsReachableChannel) == 0x000025, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InIsReachableChannel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, bInShouldBeReachable) == 0x000026, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::bInShouldBeReachable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InTransform) == 0x000030, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, InFilter) == 0x000090, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::InFilter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp, ReturnValue) == 0x0000B0, "Member 'WrestlerAbilityTask_TargetAssisted_TargetAssistedLerp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_TargetAssisted \ +static_assert(alignof(UWrestlerAbilityTask_TargetAssisted) == 0x000010, "Wrong alignment on UWrestlerAbilityTask_TargetAssisted"); \ +static_assert(sizeof(UWrestlerAbilityTask_TargetAssisted) == 0x000160, "Wrong size on UWrestlerAbilityTask_TargetAssisted"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetAssisted, OnTargetingCompleted) == 0x0000A0, "Member 'UWrestlerAbilityTask_TargetAssisted::OnTargetingCompleted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_TargetLockOn \ +static_assert(alignof(UWrestlerAbilityTask_TargetLockOn) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_TargetLockOn"); \ +static_assert(sizeof(UWrestlerAbilityTask_TargetLockOn) == 0x000180, "Wrong size on UWrestlerAbilityTask_TargetLockOn"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, Filter) == 0x000110, "Member 'UWrestlerAbilityTask_TargetLockOn::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, ReticleClass) == 0x000130, "Member 'UWrestlerAbilityTask_TargetLockOn::ReticleClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, QueryChannel) == 0x000138, "Member 'UWrestlerAbilityTask_TargetLockOn::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, SpawnedReticle) == 0x000140, "Member 'UWrestlerAbilityTask_TargetLockOn::SpawnedReticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, OwningController) == 0x000148, "Member 'UWrestlerAbilityTask_TargetLockOn::OwningController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, OwningPawn) == 0x000150, "Member 'UWrestlerAbilityTask_TargetLockOn::OwningPawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, TargetActor) == 0x000158, "Member 'UWrestlerAbilityTask_TargetLockOn::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, TargetPawn) == 0x000160, "Member 'UWrestlerAbilityTask_TargetLockOn::TargetPawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, ActorsToIgnore) == 0x000168, "Member 'UWrestlerAbilityTask_TargetLockOn::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_TargetLockOn, CameraYawCurve) == 0x000178, "Member 'UWrestlerAbilityTask_TargetLockOn::CameraYawCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputSettings_Get \ +static_assert(alignof(WrestlerInputSettings_Get) == 0x000008, "Wrong alignment on WrestlerInputSettings_Get"); \ +static_assert(sizeof(WrestlerInputSettings_Get) == 0x000008, "Wrong size on WrestlerInputSettings_Get"); \ +static_assert(offsetof(WrestlerInputSettings_Get, ReturnValue) == 0x000000, "Member 'WrestlerInputSettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInputSettings \ +static_assert(alignof(UWrestlerInputSettings) == 0x000008, "Wrong alignment on UWrestlerInputSettings"); \ +static_assert(sizeof(UWrestlerInputSettings) == 0x0000C0, "Wrong size on UWrestlerInputSettings"); \ +static_assert(offsetof(UWrestlerInputSettings, ControllerConfiguration) == 0x000038, "Member 'UWrestlerInputSettings::ControllerConfiguration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputSettings, CoreData) == 0x0000B0, "Member 'UWrestlerInputSettings::CoreData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Tick_WrestlerTaskTick \ +static_assert(alignof(WrestlerAbilityTask_Tick_WrestlerTaskTick) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Tick_WrestlerTaskTick"); \ +static_assert(sizeof(WrestlerAbilityTask_Tick_WrestlerTaskTick) == 0x000020, "Wrong size on WrestlerAbilityTask_Tick_WrestlerTaskTick"); \ +static_assert(offsetof(WrestlerAbilityTask_Tick_WrestlerTaskTick, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Tick_WrestlerTaskTick::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Tick_WrestlerTaskTick, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Tick_WrestlerTaskTick::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Tick_WrestlerTaskTick, Duration_0) == 0x000010, "Member 'WrestlerAbilityTask_Tick_WrestlerTaskTick::Duration_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Tick_WrestlerTaskTick, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_Tick_WrestlerTaskTick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Tick \ +static_assert(alignof(UWrestlerAbilityTask_Tick) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Tick"); \ +static_assert(sizeof(UWrestlerAbilityTask_Tick) == 0x0000B8, "Wrong size on UWrestlerAbilityTask_Tick"); \ +static_assert(offsetof(UWrestlerAbilityTask_Tick, OnFinish) == 0x000080, "Member 'UWrestlerAbilityTask_Tick::OnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Tick, OnCancelled) == 0x000090, "Member 'UWrestlerAbilityTask_Tick::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Tick, OnTick) == 0x0000A0, "Member 'UWrestlerAbilityTask_Tick::OnTick' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Tick, ElapsedTime) == 0x0000B0, "Member 'UWrestlerAbilityTask_Tick::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Tick, Duration) == 0x0000B4, "Member 'UWrestlerAbilityTask_Tick::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_TimeDilation_OnTargetObtained \ +static_assert(alignof(WrestlerAbilityTask_TimeDilation_OnTargetObtained) == 0x000008, "Wrong alignment on WrestlerAbilityTask_TimeDilation_OnTargetObtained"); \ +static_assert(sizeof(WrestlerAbilityTask_TimeDilation_OnTargetObtained) == 0x000010, "Wrong size on WrestlerAbilityTask_TimeDilation_OnTargetObtained"); \ +static_assert(offsetof(WrestlerAbilityTask_TimeDilation_OnTargetObtained, Targets) == 0x000000, "Member 'WrestlerAbilityTask_TimeDilation_OnTargetObtained::Targets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_TimeDilation \ +static_assert(alignof(UWrestlerAbilityTask_TimeDilation) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_TimeDilation"); \ +static_assert(sizeof(UWrestlerAbilityTask_TimeDilation) == 0x0000C0, "Wrong size on UWrestlerAbilityTask_TimeDilation"); \ +static_assert(offsetof(UWrestlerAbilityTask_TimeDilation, OwningAbility) == 0x000080, "Member 'UWrestlerAbilityTask_TimeDilation::OwningAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Trance_WrestlerTrance \ +static_assert(alignof(WrestlerAbilityTask_Trance_WrestlerTrance) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Trance_WrestlerTrance"); \ +static_assert(sizeof(WrestlerAbilityTask_Trance_WrestlerTrance) == 0x000020, "Wrong size on WrestlerAbilityTask_Trance_WrestlerTrance"); \ +static_assert(offsetof(WrestlerAbilityTask_Trance_WrestlerTrance, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Trance_WrestlerTrance::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Trance_WrestlerTrance, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Trance_WrestlerTrance::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Trance_WrestlerTrance, Target_0) == 0x000010, "Member 'WrestlerAbilityTask_Trance_WrestlerTrance::Target_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Trance_WrestlerTrance, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_Trance_WrestlerTrance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Trance \ +static_assert(alignof(UWrestlerAbilityTask_Trance) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Trance"); \ +static_assert(sizeof(UWrestlerAbilityTask_Trance) == 0x0000A0, "Wrong size on UWrestlerAbilityTask_Trance"); \ +static_assert(offsetof(UWrestlerAbilityTask_Trance, OnCancelled) == 0x000080, "Member 'UWrestlerAbilityTask_Trance::OnCancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_Trance, Target) == 0x000090, "Member 'UWrestlerAbilityTask_Trance::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget \ +static_assert(alignof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget) == 0x000008, "Wrong alignment on WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget"); \ +static_assert(sizeof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget) == 0x000030, "Wrong size on WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, InWarpTargetName) == 0x000010, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::InWarpTargetName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, InTarget) == 0x000018, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, InDistanceOffset) == 0x000020, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::InDistanceOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, InRotationOffset) == 0x000024, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::InRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget, ReturnValue) == 0x000028, "Member 'WrestlerAbilityTask_UpdateWarpTarget_UpdateWarpTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_UpdateWarpTarget \ +static_assert(alignof(UWrestlerAbilityTask_UpdateWarpTarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_UpdateWarpTarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_UpdateWarpTarget) == 0x0000A0, "Wrong size on UWrestlerAbilityTask_UpdateWarpTarget"); \ +static_assert(offsetof(UWrestlerAbilityTask_UpdateWarpTarget, Target) == 0x000088, "Member 'UWrestlerAbilityTask_UpdateWarpTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_UpdateWarpTarget, MotionWarpingComponent) == 0x000090, "Member 'UWrestlerAbilityTask_UpdateWarpTarget::MotionWarpingComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_Vault_WrestlerVault \ +static_assert(alignof(WrestlerAbilityTask_Vault_WrestlerVault) == 0x000008, "Wrong alignment on WrestlerAbilityTask_Vault_WrestlerVault"); \ +static_assert(sizeof(WrestlerAbilityTask_Vault_WrestlerVault) == 0x000020, "Wrong size on WrestlerAbilityTask_Vault_WrestlerVault"); \ +static_assert(offsetof(WrestlerAbilityTask_Vault_WrestlerVault, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_Vault_WrestlerVault::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Vault_WrestlerVault, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_Vault_WrestlerVault::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Vault_WrestlerVault, lerpDuration) == 0x000010, "Member 'WrestlerAbilityTask_Vault_WrestlerVault::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Vault_WrestlerVault, stateDuration) == 0x000014, "Member 'WrestlerAbilityTask_Vault_WrestlerVault::stateDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_Vault_WrestlerVault, ReturnValue) == 0x000018, "Member 'WrestlerAbilityTask_Vault_WrestlerVault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_Vault \ +static_assert(alignof(UWrestlerAbilityTask_Vault) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_Vault"); \ +static_assert(sizeof(UWrestlerAbilityTask_Vault) == 0x0000E8, "Wrong size on UWrestlerAbilityTask_Vault"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConfig \ +static_assert(alignof(UWrestlerStateTreeConfig) == 0x000008, "Wrong alignment on UWrestlerStateTreeConfig"); \ +static_assert(sizeof(UWrestlerStateTreeConfig) == 0x000040, "Wrong size on UWrestlerStateTreeConfig"); \ +static_assert(offsetof(UWrestlerStateTreeConfig, MaxSearchesPerTeam) == 0x000030, "Member 'UWrestlerStateTreeConfig::MaxSearchesPerTeam' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConfig, MaxMembersPerTeam) == 0x000034, "Member 'UWrestlerStateTreeConfig::MaxMembersPerTeam' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConfig, RangeForHostileSearch) == 0x000038, "Member 'UWrestlerStateTreeConfig::RangeForHostileSearch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerIndicatorWidget_NotifyAttack \ +static_assert(alignof(WrestlerIndicatorWidget_NotifyAttack) == 0x000008, "Wrong alignment on WrestlerIndicatorWidget_NotifyAttack"); \ +static_assert(sizeof(WrestlerIndicatorWidget_NotifyAttack) == 0x000008, "Wrong size on WrestlerIndicatorWidget_NotifyAttack"); \ +static_assert(offsetof(WrestlerIndicatorWidget_NotifyAttack, Enemy) == 0x000000, "Member 'WrestlerIndicatorWidget_NotifyAttack::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerIndicatorWidget_NotifyStateChange \ +static_assert(alignof(WrestlerIndicatorWidget_NotifyStateChange) == 0x000008, "Wrong alignment on WrestlerIndicatorWidget_NotifyStateChange"); \ +static_assert(sizeof(WrestlerIndicatorWidget_NotifyStateChange) == 0x000010, "Wrong size on WrestlerIndicatorWidget_NotifyStateChange"); \ +static_assert(offsetof(WrestlerIndicatorWidget_NotifyStateChange, InEnemy) == 0x000000, "Member 'WrestlerIndicatorWidget_NotifyStateChange::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerIndicatorWidget_NotifyStateChange, InEnemyState) == 0x000008, "Member 'WrestlerIndicatorWidget_NotifyStateChange::InEnemyState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerIndicatorWidget_OnEnemyCharacterDead \ +static_assert(alignof(WrestlerIndicatorWidget_OnEnemyCharacterDead) == 0x000008, "Wrong alignment on WrestlerIndicatorWidget_OnEnemyCharacterDead"); \ +static_assert(sizeof(WrestlerIndicatorWidget_OnEnemyCharacterDead) == 0x000008, "Wrong size on WrestlerIndicatorWidget_OnEnemyCharacterDead"); \ +static_assert(offsetof(WrestlerIndicatorWidget_OnEnemyCharacterDead, InDeadActor) == 0x000000, "Member 'WrestlerIndicatorWidget_OnEnemyCharacterDead::InDeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerIndicatorWidget \ +static_assert(alignof(UWrestlerIndicatorWidget) == 0x000008, "Wrong alignment on UWrestlerIndicatorWidget"); \ +static_assert(sizeof(UWrestlerIndicatorWidget) == 0x000570, "Wrong size on UWrestlerIndicatorWidget"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, IndicatorWidgetClass) == 0x0002C8, "Member 'UWrestlerIndicatorWidget::IndicatorWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, IndicatorTypeData) == 0x0002D0, "Member 'UWrestlerIndicatorWidget::IndicatorTypeData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, bShouldShowIfEnemyUIIsNotVisible) == 0x000320, "Member 'UWrestlerIndicatorWidget::bShouldShowIfEnemyUIIsNotVisible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, IndicatorsContainer) == 0x000328, "Member 'UWrestlerIndicatorWidget::IndicatorsContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyStateIndicatorsInUse) == 0x000330, "Member 'UWrestlerIndicatorWidget::EnemyStateIndicatorsInUse' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyStateIndicatorsToAdd) == 0x000380, "Member 'UWrestlerIndicatorWidget::EnemyStateIndicatorsToAdd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyStateIndicatorsToRemove) == 0x0003D0, "Member 'UWrestlerIndicatorWidget::EnemyStateIndicatorsToRemove' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyAttackIndicatorsInUse) == 0x000420, "Member 'UWrestlerIndicatorWidget::EnemyAttackIndicatorsInUse' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyAttackIndicatorsToAdd) == 0x000470, "Member 'UWrestlerIndicatorWidget::EnemyAttackIndicatorsToAdd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, EnemyAttackIndicatorsToRemove) == 0x0004C0, "Member 'UWrestlerIndicatorWidget::EnemyAttackIndicatorsToRemove' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, AvailableEnemyIndicators) == 0x000510, "Member 'UWrestlerIndicatorWidget::AvailableEnemyIndicators' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerIndicatorWidget, ValidVisibileStates) == 0x000520, "Member 'UWrestlerIndicatorWidget::ValidVisibileStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData \ +static_assert(alignof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData, ConfirmationType) == 0x000010, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData, InTargetActorClass) == 0x000018, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData::InTargetActorClass' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor \ +static_assert(alignof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor, ConfirmationType) == 0x000010, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor, InTargetActor) == 0x000018, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_WaitTargetData_WrestlerWaitTargetDataUsingActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitTargetData \ +static_assert(alignof(UWrestlerAbilityTask_WaitTargetData) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitTargetData"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitTargetData) == 0x0000C0, "Wrong size on UWrestlerAbilityTask_WaitTargetData"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRoute_ClaimSlot \ +static_assert(alignof(WrestlerSearchRoute_ClaimSlot) == 0x000008, "Wrong alignment on WrestlerSearchRoute_ClaimSlot"); \ +static_assert(sizeof(WrestlerSearchRoute_ClaimSlot) == 0x000008, "Wrong size on WrestlerSearchRoute_ClaimSlot"); \ +static_assert(offsetof(WrestlerSearchRoute_ClaimSlot, InActor) == 0x000000, "Member 'WrestlerSearchRoute_ClaimSlot::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRoute_ReleaseSlot \ +static_assert(alignof(WrestlerSearchRoute_ReleaseSlot) == 0x000008, "Wrong alignment on WrestlerSearchRoute_ReleaseSlot"); \ +static_assert(sizeof(WrestlerSearchRoute_ReleaseSlot) == 0x000008, "Wrong size on WrestlerSearchRoute_ReleaseSlot"); \ +static_assert(offsetof(WrestlerSearchRoute_ReleaseSlot, InActor) == 0x000000, "Member 'WrestlerSearchRoute_ReleaseSlot::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRoute_HasSlotAvailable \ +static_assert(alignof(WrestlerSearchRoute_HasSlotAvailable) == 0x000001, "Wrong alignment on WrestlerSearchRoute_HasSlotAvailable"); \ +static_assert(sizeof(WrestlerSearchRoute_HasSlotAvailable) == 0x000001, "Wrong size on WrestlerSearchRoute_HasSlotAvailable"); \ +static_assert(offsetof(WrestlerSearchRoute_HasSlotAvailable, ReturnValue) == 0x000000, "Member 'WrestlerSearchRoute_HasSlotAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerSearchRoute \ +static_assert(alignof(AWrestlerSearchRoute) == 0x000008, "Wrong alignment on AWrestlerSearchRoute"); \ +static_assert(sizeof(AWrestlerSearchRoute) == 0x0002D8, "Wrong size on AWrestlerSearchRoute"); \ +static_assert(offsetof(AWrestlerSearchRoute, AvailableSlots) == 0x0002C0, "Member 'AWrestlerSearchRoute::AvailableSlots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor \ +static_assert(alignof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor, ConfirmationType) == 0x000010, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor, InTargetActor) == 0x000018, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor, ReturnValue) == 0x000020, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_WaitTargetDataWithReusableActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback \ +static_assert(alignof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback, Data) == 0x000000, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataCancelledCallback::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback \ +static_assert(alignof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback"); \ +static_assert(sizeof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback) == 0x000028, "Wrong size on WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback"); \ +static_assert(offsetof(WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback, Data) == 0x000000, "Member 'WrestlerAbilityTask_WaitTargetDataUsingActor_OnTargetDataReadyCallback::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitTargetDataUsingActor \ +static_assert(alignof(UWrestlerAbilityTask_WaitTargetDataUsingActor) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitTargetDataUsingActor"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitTargetDataUsingActor) == 0x0000B0, "Wrong size on UWrestlerAbilityTask_WaitTargetDataUsingActor"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitTargetDataUsingActor, ValidData) == 0x000080, "Member 'UWrestlerAbilityTask_WaitTargetDataUsingActor::ValidData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitTargetDataUsingActor, Cancelled) == 0x000090, "Member 'UWrestlerAbilityTask_WaitTargetDataUsingActor::Cancelled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitTargetDataUsingActor, TargetActor) == 0x0000A0, "Member 'UWrestlerAbilityTask_WaitTargetDataUsingActor::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject) == 0x000018, "Wrong size on WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject, ObjectToTag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject::ObjectToTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject, Tag) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_AddGameplayTagToObject::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_AddTagToObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_AddTagToObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_AddTagToObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_AddTagToObject) == 0x000020, "Wrong size on WrestlerObjectsTaggingSubsystem_AddTagToObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddTagToObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_AddTagToObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddTagToObject, ObjectToTag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_AddTagToObject::ObjectToTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_AddTagToObject, Tag) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_AddTagToObject::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag) == 0x000030, "Wrong size on WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag, InEvents) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToGameplayTag::InEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_BindEventsToTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_BindEventsToTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_BindEventsToTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_BindEventsToTag) == 0x000038, "Wrong size on WrestlerObjectsTaggingSubsystem_BindEventsToTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_BindEventsToTag, InEvents) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_BindEventsToTag::InEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_GetActorsWithTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_GetActorsWithTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag) == 0x000030, "Wrong size on WrestlerObjectsTaggingSubsystem_GetActorsWithTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_GetActorsWithTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_GetActorsWithTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag, OutActors) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_GetActorsWithTag::OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetActorsWithTag, bIncludeSubTags) == 0x000028, "Member 'WrestlerObjectsTaggingSubsystem_GetActorsWithTag::bIncludeSubTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_GetAllTagsForObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_GetAllTagsForObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_GetAllTagsForObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_GetAllTagsForObject) == 0x000020, "Wrong size on WrestlerObjectsTaggingSubsystem_GetAllTagsForObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetAllTagsForObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_GetAllTagsForObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetAllTagsForObject, InObject) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_GetAllTagsForObject::InObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetAllTagsForObject, ReturnValue) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_GetAllTagsForObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag) == 0x000028, "Wrong size on WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag, OutTransforms) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag::OutTransforms' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag, bIncludeSubTags) == 0x000020, "Member 'WrestlerObjectsTaggingSubsystem_GetEntityTransformsWithGameplayTag::bIncludeSubTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag) == 0x000028, "Wrong size on WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag, OutObjects) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag::OutObjects' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag, bIncludeSubTags) == 0x000020, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithGameplayTag::bIncludeSubTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_GetObjectsWithTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_GetObjectsWithTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag) == 0x000030, "Wrong size on WrestlerObjectsTaggingSubsystem_GetObjectsWithTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag, OutObjects) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithTag::OutObjects' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_GetObjectsWithTag, bIncludeSubTags) == 0x000028, "Member 'WrestlerObjectsTaggingSubsystem_GetObjectsWithTag::bIncludeSubTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_ObjectHasTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_ObjectHasTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_ObjectHasTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_ObjectHasTag) == 0x000020, "Wrong size on WrestlerObjectsTaggingSubsystem_ObjectHasTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_ObjectHasTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_ObjectHasTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_ObjectHasTag, ObjectToQuery) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_ObjectHasTag::ObjectToQuery' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_ObjectHasTag, Tag) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_ObjectHasTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_ObjectHasTag, ReturnValue) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_ObjectHasTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject) == 0x000010, "Wrong size on WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject, FromObject) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_RemoveAllTagsFromObject::FromObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject) == 0x000018, "Wrong size on WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject, ObjectToTag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject::ObjectToTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject, Tag) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_RemoveGameplayTagFromObject::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_RemoveTagFromObject \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_RemoveTagFromObject) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_RemoveTagFromObject"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_RemoveTagFromObject) == 0x000020, "Wrong size on WrestlerObjectsTaggingSubsystem_RemoveTagFromObject"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveTagFromObject, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_RemoveTagFromObject::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveTagFromObject, ObjectToTag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_RemoveTagFromObject::ObjectToTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_RemoveTagFromObject, Tag) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_RemoveTagFromObject::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_TransferAllTags \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_TransferAllTags) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_TransferAllTags"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_TransferAllTags) == 0x000018, "Wrong size on WrestlerObjectsTaggingSubsystem_TransferAllTags"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_TransferAllTags, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_TransferAllTags::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_TransferAllTags, FromObject) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_TransferAllTags::FromObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_TransferAllTags, ToObject) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_TransferAllTags::ToObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag) == 0x000018, "Wrong size on WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag, EventsOwner) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromGameplayTag::EventsOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag) == 0x000020, "Wrong size on WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag, EventsOwner) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_UnbindAllEventsFromTag::EventsOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag) == 0x000030, "Wrong size on WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag, InEvents) == 0x000010, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromGameplayTag::InEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag \ +static_assert(alignof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag) == 0x000008, "Wrong alignment on WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag"); \ +static_assert(sizeof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag) == 0x000038, "Wrong size on WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag, WorldContextObject) == 0x000000, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag, Tag) == 0x000008, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag, InEvents) == 0x000018, "Member 'WrestlerObjectsTaggingSubsystem_UnbindEventsFromTag::InEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerObjectsTaggingSubsystem \ +static_assert(alignof(UWrestlerObjectsTaggingSubsystem) == 0x000008, "Wrong alignment on UWrestlerObjectsTaggingSubsystem"); \ +static_assert(sizeof(UWrestlerObjectsTaggingSubsystem) == 0x000160, "Wrong size on UWrestlerObjectsTaggingSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitTarget_SphereTarget \ +static_assert(alignof(UWrestlerAbilityTask_WaitTarget_SphereTarget) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitTarget_SphereTarget"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitTarget_SphereTarget) == 0x0000C8, "Wrong size on UWrestlerAbilityTask_WaitTarget_SphereTarget"); \ +static_assert(offsetof(UWrestlerAbilityTask_WaitTarget_SphereTarget, Filter) == 0x0000B8, "Member 'UWrestlerAbilityTask_WaitTarget_SphereTarget::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWidget_AltAbility \ +static_assert(alignof(UWrestlerWidget_AltAbility) == 0x000008, "Wrong alignment on UWrestlerWidget_AltAbility"); \ +static_assert(sizeof(UWrestlerWidget_AltAbility) == 0x0002E0, "Wrong size on UWrestlerWidget_AltAbility"); \ +static_assert(offsetof(UWrestlerWidget_AltAbility, BruhajAbilities) == 0x0002C8, "Member 'UWrestlerWidget_AltAbility::BruhajAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWidget_AltAbility, BanuAbilities) == 0x0002D0, "Member 'UWrestlerWidget_AltAbility::BanuAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWidget_AltAbility, TremereAbilities) == 0x0002D8, "Member 'UWrestlerWidget_AltAbility::TremereAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WrestlerWaitTargetData \ +static_assert(alignof(UWrestlerAbilityTask_WrestlerWaitTargetData) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WrestlerWaitTargetData"); \ +static_assert(sizeof(UWrestlerAbilityTask_WrestlerWaitTargetData) == 0x0000C0, "Wrong size on UWrestlerAbilityTask_WrestlerWaitTargetData"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WaitTarget_SphereTrace \ +static_assert(alignof(UWrestlerAbilityTask_WaitTarget_SphereTrace) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WaitTarget_SphereTrace"); \ +static_assert(sizeof(UWrestlerAbilityTask_WaitTarget_SphereTrace) == 0x0000C0, "Wrong size on UWrestlerAbilityTask_WaitTarget_SphereTrace"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuContainerWidget_GetActiveWidget \ +static_assert(alignof(WrestlerRPGMenuContainerWidget_GetActiveWidget) == 0x000008, "Wrong alignment on WrestlerRPGMenuContainerWidget_GetActiveWidget"); \ +static_assert(sizeof(WrestlerRPGMenuContainerWidget_GetActiveWidget) == 0x000008, "Wrong size on WrestlerRPGMenuContainerWidget_GetActiveWidget"); \ +static_assert(offsetof(WrestlerRPGMenuContainerWidget_GetActiveWidget, ReturnValue) == 0x000000, "Member 'WrestlerRPGMenuContainerWidget_GetActiveWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex \ +static_assert(alignof(WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex) == 0x000004, "Wrong alignment on WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex"); \ +static_assert(sizeof(WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex) == 0x000004, "Wrong size on WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex"); \ +static_assert(offsetof(WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex, ReturnValue) == 0x000000, "Member 'WrestlerRPGMenuContainerWidget_GetActiveWidgetIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuContainerWidget \ +static_assert(alignof(UWrestlerRPGMenuContainerWidget) == 0x000008, "Wrong alignment on UWrestlerRPGMenuContainerWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuContainerWidget) == 0x000320, "Wrong size on UWrestlerRPGMenuContainerWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuContainerWidget, MenuSwitcher) == 0x0002C8, "Member 'UWrestlerRPGMenuContainerWidget::MenuSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuContainerWidget, IndexAndTabReference) == 0x0002D0, "Member 'UWrestlerRPGMenuContainerWidget::IndexAndTabReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTask_WallClimb_WrestlerWallClimb \ +static_assert(alignof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb) == 0x000008, "Wrong alignment on WrestlerAbilityTask_WallClimb_WrestlerWallClimb"); \ +static_assert(sizeof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb) == 0x000048, "Wrong size on WrestlerAbilityTask_WallClimb_WrestlerWallClimb"); \ +static_assert(offsetof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb, OwningAbility) == 0x000000, "Member 'WrestlerAbilityTask_WallClimb_WrestlerWallClimb::OwningAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb, TaskInstanceName) == 0x000008, "Member 'WrestlerAbilityTask_WallClimb_WrestlerWallClimb::TaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb, InParameters) == 0x000010, "Member 'WrestlerAbilityTask_WallClimb_WrestlerWallClimb::InParameters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTask_WallClimb_WrestlerWallClimb, ReturnValue) == 0x000040, "Member 'WrestlerAbilityTask_WallClimb_WrestlerWallClimb::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTask_WallClimb \ +static_assert(alignof(UWrestlerAbilityTask_WallClimb) == 0x000008, "Wrong alignment on UWrestlerAbilityTask_WallClimb"); \ +static_assert(sizeof(UWrestlerAbilityTask_WallClimb) == 0x0001D8, "Wrong size on UWrestlerAbilityTask_WallClimb"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnFinishToFall) == 0x000080, "Member 'UWrestlerAbilityTask_WallClimb::OnFinishToFall' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnFinishToFallBlocked) == 0x000090, "Member 'UWrestlerAbilityTask_WallClimb::OnFinishToFallBlocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnFinishToLedgeVault) == 0x0000A0, "Member 'UWrestlerAbilityTask_WallClimb::OnFinishToLedgeVault' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnFinishToMantle) == 0x0000B0, "Member 'UWrestlerAbilityTask_WallClimb::OnFinishToMantle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnFinishToVault) == 0x0000C0, "Member 'UWrestlerAbilityTask_WallClimb::OnFinishToVault' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnCancel) == 0x0000D0, "Member 'UWrestlerAbilityTask_WallClimb::OnCancel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, OnLerpComplete) == 0x0000E0, "Member 'UWrestlerAbilityTask_WallClimb::OnLerpComplete' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, SmoothedForwardVector) == 0x0000F8, "Member 'UWrestlerAbilityTask_WallClimb::SmoothedForwardVector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, WallInwardVector) == 0x000110, "Member 'UWrestlerAbilityTask_WallClimb::WallInwardVector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTask_WallClimb, LastClimbVector) == 0x000128, "Member 'UWrestlerAbilityTask_WallClimb::LastClimbVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLastBreathHealthAttributeSet \ +static_assert(alignof(UWrestlerLastBreathHealthAttributeSet) == 0x000008, "Wrong alignment on UWrestlerLastBreathHealthAttributeSet"); \ +static_assert(sizeof(UWrestlerLastBreathHealthAttributeSet) == 0x000040, "Wrong size on UWrestlerLastBreathHealthAttributeSet"); \ +static_assert(offsetof(UWrestlerLastBreathHealthAttributeSet, LastBreath) == 0x000030, "Member 'UWrestlerLastBreathHealthAttributeSet::LastBreath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile \ +static_assert(alignof(WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile) == 0x000008, "Wrong alignment on WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile"); \ +static_assert(sizeof(WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile) == 0x000070, "Wrong size on WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile"); \ +static_assert(offsetof(WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile, InWorldContextObject) == 0x000000, "Member 'WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile, InParams) == 0x000008, "Member 'WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile::InParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile, ReturnValue) == 0x000068, "Member 'WrestlerRangedProjectilePoolSubsystem_SpawnRangedProjectile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRangedProjectilePoolSubsystem \ +static_assert(alignof(UWrestlerRangedProjectilePoolSubsystem) == 0x000008, "Wrong alignment on UWrestlerRangedProjectilePoolSubsystem"); \ +static_assert(sizeof(UWrestlerRangedProjectilePoolSubsystem) == 0x000098, "Wrong size on UWrestlerRangedProjectilePoolSubsystem"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolSubsystem, ProjectileTypePool) == 0x000030, "Member 'UWrestlerRangedProjectilePoolSubsystem::ProjectileTypePool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolSubsystem, Projectiles) == 0x000080, "Member 'UWrestlerRangedProjectilePoolSubsystem::Projectiles' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolSubsystem, CollisionHandlingOverride) == 0x000091, "Member 'UWrestlerRangedProjectilePoolSubsystem::CollisionHandlingOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInteractionWidgetComponent \ +static_assert(alignof(UWrestlerInteractionWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerInteractionWidgetComponent"); \ +static_assert(sizeof(UWrestlerInteractionWidgetComponent) == 0x000750, "Wrong size on UWrestlerInteractionWidgetComponent"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, ScaleDistanceRange) == 0x0006E8, "Member 'UWrestlerInteractionWidgetComponent::ScaleDistanceRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, ScaleMultiplierRange) == 0x0006F8, "Member 'UWrestlerInteractionWidgetComponent::ScaleMultiplierRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, OpacityDistanceRange) == 0x000708, "Member 'UWrestlerInteractionWidgetComponent::OpacityDistanceRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, OpacityMultiplierRange) == 0x000718, "Member 'UWrestlerInteractionWidgetComponent::OpacityMultiplierRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, OwningTarget) == 0x000728, "Member 'UWrestlerInteractionWidgetComponent::OwningTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInteractionWidgetComponent, CurrentWidget) == 0x000730, "Member 'UWrestlerInteractionWidgetComponent::CurrentWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityUIDataBindAsset_GetActiveHandle \ +static_assert(alignof(WrestlerAbilityUIDataBindAsset_GetActiveHandle) == 0x000004, "Wrong alignment on WrestlerAbilityUIDataBindAsset_GetActiveHandle"); \ +static_assert(sizeof(WrestlerAbilityUIDataBindAsset_GetActiveHandle) == 0x000008, "Wrong size on WrestlerAbilityUIDataBindAsset_GetActiveHandle"); \ +static_assert(offsetof(WrestlerAbilityUIDataBindAsset_GetActiveHandle, ReturnValue) == 0x000000, "Member 'WrestlerAbilityUIDataBindAsset_GetActiveHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityUIDataBindAsset_GetIsActive \ +static_assert(alignof(WrestlerAbilityUIDataBindAsset_GetIsActive) == 0x000001, "Wrong alignment on WrestlerAbilityUIDataBindAsset_GetIsActive"); \ +static_assert(sizeof(WrestlerAbilityUIDataBindAsset_GetIsActive) == 0x000001, "Wrong size on WrestlerAbilityUIDataBindAsset_GetIsActive"); \ +static_assert(offsetof(WrestlerAbilityUIDataBindAsset_GetIsActive, ReturnValue) == 0x000000, "Member 'WrestlerAbilityUIDataBindAsset_GetIsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityUIDataBindAsset_SetActiveHandle \ +static_assert(alignof(WrestlerAbilityUIDataBindAsset_SetActiveHandle) == 0x000004, "Wrong alignment on WrestlerAbilityUIDataBindAsset_SetActiveHandle"); \ +static_assert(sizeof(WrestlerAbilityUIDataBindAsset_SetActiveHandle) == 0x000008, "Wrong size on WrestlerAbilityUIDataBindAsset_SetActiveHandle"); \ +static_assert(offsetof(WrestlerAbilityUIDataBindAsset_SetActiveHandle, InHandle) == 0x000000, "Member 'WrestlerAbilityUIDataBindAsset_SetActiveHandle::InHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityUIDataBindAsset_SetIsActive \ +static_assert(alignof(WrestlerAbilityUIDataBindAsset_SetIsActive) == 0x000001, "Wrong alignment on WrestlerAbilityUIDataBindAsset_SetIsActive"); \ +static_assert(sizeof(WrestlerAbilityUIDataBindAsset_SetIsActive) == 0x000001, "Wrong size on WrestlerAbilityUIDataBindAsset_SetIsActive"); \ +static_assert(offsetof(WrestlerAbilityUIDataBindAsset_SetIsActive, InIsActive) == 0x000000, "Member 'WrestlerAbilityUIDataBindAsset_SetIsActive::InIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityUIDataBindAsset \ +static_assert(alignof(UWrestlerAbilityUIDataBindAsset) == 0x000008, "Wrong alignment on UWrestlerAbilityUIDataBindAsset"); \ +static_assert(sizeof(UWrestlerAbilityUIDataBindAsset) == 0x000050, "Wrong size on UWrestlerAbilityUIDataBindAsset"); \ +static_assert(offsetof(UWrestlerAbilityUIDataBindAsset, OnUIAbilityDataChangeDelegate) == 0x000030, "Member 'UWrestlerAbilityUIDataBindAsset::OnUIAbilityDataChangeDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassTimedNiagaraEffect \ +static_assert(alignof(UWrestlerMassTimedNiagaraEffect) == 0x000008, "Wrong alignment on UWrestlerMassTimedNiagaraEffect"); \ +static_assert(sizeof(UWrestlerMassTimedNiagaraEffect) == 0x000078, "Wrong size on UWrestlerMassTimedNiagaraEffect"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_AcquireAbility \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_AcquireAbility) == 0x000008, "Wrong alignment on WrestlerAbilityWidgetSubsystem_AcquireAbility"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_AcquireAbility) == 0x000008, "Wrong size on WrestlerAbilityWidgetSubsystem_AcquireAbility"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_AcquireAbility, InAbility) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_AcquireAbility::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer) == 0x000008, "Wrong alignment on WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer) == 0x000008, "Wrong size on WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer, InAbility) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_AcquireAbilityFromTrainer::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier) == 0x000008, "Wrong alignment on WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier) == 0x000020, "Wrong size on WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier, InFocusedWidget) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier::InFocusedWidget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier, ReturnValue) == 0x000008, "Member 'WrestlerAbilityWidgetSubsystem_GetMainAbilityNameByTier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_IsAbilityEquipped \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_IsAbilityEquipped) == 0x000008, "Wrong alignment on WrestlerAbilityWidgetSubsystem_IsAbilityEquipped"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_IsAbilityEquipped) == 0x000010, "Wrong size on WrestlerAbilityWidgetSubsystem_IsAbilityEquipped"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_IsAbilityEquipped, InAbility) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_IsAbilityEquipped::InAbility' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_IsAbilityEquipped, ReturnValue) == 0x000008, "Member 'WrestlerAbilityWidgetSubsystem_IsAbilityEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_OnCostumeViewed \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_OnCostumeViewed) == 0x000004, "Wrong alignment on WrestlerAbilityWidgetSubsystem_OnCostumeViewed"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_OnCostumeViewed) == 0x000008, "Wrong size on WrestlerAbilityWidgetSubsystem_OnCostumeViewed"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_OnCostumeViewed, InCostumeTag) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_OnCostumeViewed::InCostumeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityWidgetSubsystem_SwapEquipAbility \ +static_assert(alignof(WrestlerAbilityWidgetSubsystem_SwapEquipAbility) == 0x000008, "Wrong alignment on WrestlerAbilityWidgetSubsystem_SwapEquipAbility"); \ +static_assert(sizeof(WrestlerAbilityWidgetSubsystem_SwapEquipAbility) == 0x000008, "Wrong size on WrestlerAbilityWidgetSubsystem_SwapEquipAbility"); \ +static_assert(offsetof(WrestlerAbilityWidgetSubsystem_SwapEquipAbility, InAbility) == 0x000000, "Member 'WrestlerAbilityWidgetSubsystem_SwapEquipAbility::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityWidgetSubsystem \ +static_assert(alignof(UWrestlerAbilityWidgetSubsystem) == 0x000008, "Wrong alignment on UWrestlerAbilityWidgetSubsystem"); \ +static_assert(sizeof(UWrestlerAbilityWidgetSubsystem) == 0x0000D0, "Wrong size on UWrestlerAbilityWidgetSubsystem"); \ +static_assert(offsetof(UWrestlerAbilityWidgetSubsystem, OnAbilityAcquiredEvent) == 0x000090, "Member 'UWrestlerAbilityWidgetSubsystem::OnAbilityAcquiredEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityWidgetSubsystem, OnTrainerAbilityAcquiredEvent) == 0x0000A0, "Member 'UWrestlerAbilityWidgetSubsystem::OnTrainerAbilityAcquiredEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityWidgetSubsystem, OnCostumeUnlockedEvent) == 0x0000B0, "Member 'UWrestlerAbilityWidgetSubsystem::OnCostumeUnlockedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityWidgetSubsystem, OnCostumeViewedEvent) == 0x0000C0, "Member 'UWrestlerAbilityWidgetSubsystem::OnCostumeViewedEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionListButton_GetMappingKey_C \ +static_assert(alignof(WrestlerActionListButton_GetMappingKey_C) == 0x000008, "Wrong alignment on WrestlerActionListButton_GetMappingKey_C"); \ +static_assert(sizeof(WrestlerActionListButton_GetMappingKey_C) == 0x000018, "Wrong size on WrestlerActionListButton_GetMappingKey_C"); \ +static_assert(offsetof(WrestlerActionListButton_GetMappingKey_C, ReturnValue) == 0x000000, "Member 'WrestlerActionListButton_GetMappingKey_C::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionListButton_GetMappingKey_MK \ +static_assert(alignof(WrestlerActionListButton_GetMappingKey_MK) == 0x000008, "Wrong alignment on WrestlerActionListButton_GetMappingKey_MK"); \ +static_assert(sizeof(WrestlerActionListButton_GetMappingKey_MK) == 0x000018, "Wrong size on WrestlerActionListButton_GetMappingKey_MK"); \ +static_assert(offsetof(WrestlerActionListButton_GetMappingKey_MK, ReturnValue) == 0x000000, "Member 'WrestlerActionListButton_GetMappingKey_MK::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionListButton_ResetKey \ +static_assert(alignof(WrestlerActionListButton_ResetKey) == 0x000001, "Wrong alignment on WrestlerActionListButton_ResetKey"); \ +static_assert(sizeof(WrestlerActionListButton_ResetKey) == 0x000001, "Wrong size on WrestlerActionListButton_ResetKey"); \ +static_assert(offsetof(WrestlerActionListButton_ResetKey, InIsGamepad) == 0x000000, "Member 'WrestlerActionListButton_ResetKey::InIsGamepad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionListButton_UpdateKeyText \ +static_assert(alignof(WrestlerActionListButton_UpdateKeyText) == 0x000001, "Wrong alignment on WrestlerActionListButton_UpdateKeyText"); \ +static_assert(sizeof(WrestlerActionListButton_UpdateKeyText) == 0x000001, "Wrong size on WrestlerActionListButton_UpdateKeyText"); \ +static_assert(offsetof(WrestlerActionListButton_UpdateKeyText, InIsGamepad) == 0x000000, "Member 'WrestlerActionListButton_UpdateKeyText::InIsGamepad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerActionListButton \ +static_assert(alignof(UWrestlerActionListButton) == 0x000010, "Wrong alignment on UWrestlerActionListButton"); \ +static_assert(sizeof(UWrestlerActionListButton) == 0x001440, "Wrong size on UWrestlerActionListButton"); \ +static_assert(offsetof(UWrestlerActionListButton, PlayerAction) == 0x0013E0, "Member 'UWrestlerActionListButton::PlayerAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, PlayerMappingContext) == 0x0013E8, "Member 'UWrestlerActionListButton::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, DefaultKey_MK) == 0x0013F0, "Member 'UWrestlerActionListButton::DefaultKey_MK' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, DefaultKey_C) == 0x001408, "Member 'UWrestlerActionListButton::DefaultKey_C' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, bIsGamepad) == 0x001420, "Member 'UWrestlerActionListButton::bIsGamepad' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, ActionName) == 0x001428, "Member 'UWrestlerActionListButton::ActionName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionListButton, KeyName) == 0x001430, "Member 'UWrestlerActionListButton::KeyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionName \ +static_assert(alignof(UWrestlerStateTreeConditionName) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionName"); \ +static_assert(sizeof(UWrestlerStateTreeConditionName) == 0x000058, "Wrong size on UWrestlerStateTreeConditionName"); \ +static_assert(offsetof(UWrestlerStateTreeConditionName, Left) == 0x000048, "Member 'UWrestlerStateTreeConditionName::Left' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConditionName, Right) == 0x000050, "Member 'UWrestlerStateTreeConditionName::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionWidget_SetOverrideIcon \ +static_assert(alignof(WrestlerActionWidget_SetOverrideIcon) == 0x000010, "Wrong alignment on WrestlerActionWidget_SetOverrideIcon"); \ +static_assert(sizeof(WrestlerActionWidget_SetOverrideIcon) == 0x0000D0, "Wrong size on WrestlerActionWidget_SetOverrideIcon"); \ +static_assert(offsetof(WrestlerActionWidget_SetOverrideIcon, NewBrush) == 0x000000, "Member 'WrestlerActionWidget_SetOverrideIcon::NewBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerActionWidget_SetOverrideKey \ +static_assert(alignof(WrestlerActionWidget_SetOverrideKey) == 0x000008, "Wrong alignment on WrestlerActionWidget_SetOverrideKey"); \ +static_assert(sizeof(WrestlerActionWidget_SetOverrideKey) == 0x000018, "Wrong size on WrestlerActionWidget_SetOverrideKey"); \ +static_assert(offsetof(WrestlerActionWidget_SetOverrideKey, NewKey) == 0x000000, "Member 'WrestlerActionWidget_SetOverrideKey::NewKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerActionWidget \ +static_assert(alignof(UWrestlerActionWidget) == 0x000010, "Wrong alignment on UWrestlerActionWidget"); \ +static_assert(sizeof(UWrestlerActionWidget) == 0x000590, "Wrong size on UWrestlerActionWidget"); \ +static_assert(offsetof(UWrestlerActionWidget, AssociatedInputAction) == 0x000488, "Member 'UWrestlerActionWidget::AssociatedInputAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActionWidget, OverrideKey) == 0x000490, "Member 'UWrestlerActionWidget::OverrideKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapMarkersPoolWidget \ +static_assert(alignof(UWrestlerMapMarkersPoolWidget) == 0x000008, "Wrong alignment on UWrestlerMapMarkersPoolWidget"); \ +static_assert(sizeof(UWrestlerMapMarkersPoolWidget) == 0x000498, "Wrong size on UWrestlerMapMarkersPoolWidget"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, MapMarkerClass) == 0x0002C8, "Member 'UWrestlerMapMarkersPoolWidget::MapMarkerClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, MapMarkerAndReference) == 0x0002D0, "Member 'UWrestlerMapMarkersPoolWidget::MapMarkerAndReference' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, MapMarkerAndTransform) == 0x000320, "Member 'UWrestlerMapMarkersPoolWidget::MapMarkerAndTransform' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, PoolMarkersArray) == 0x000370, "Member 'UWrestlerMapMarkersPoolWidget::PoolMarkersArray' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, MapPoolCanvas) == 0x000398, "Member 'UWrestlerMapMarkersPoolWidget::MapPoolCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMarkersPoolWidget, MapReference) == 0x0003A0, "Member 'UWrestlerMapMarkersPoolWidget::MapReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRangedProjectilePoolConfig \ +static_assert(alignof(UWrestlerRangedProjectilePoolConfig) == 0x000008, "Wrong alignment on UWrestlerRangedProjectilePoolConfig"); \ +static_assert(sizeof(UWrestlerRangedProjectilePoolConfig) == 0x000048, "Wrong size on UWrestlerRangedProjectilePoolConfig"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolConfig, InitialPoolSize) == 0x000030, "Member 'UWrestlerRangedProjectilePoolConfig::InitialPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolConfig, CollisionHandlingOverride) == 0x000034, "Member 'UWrestlerRangedProjectilePoolConfig::CollisionHandlingOverride' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedProjectilePoolConfig, ProjectileTypes) == 0x000038, "Member 'UWrestlerRangedProjectilePoolConfig::ProjectileTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerActiveQuestPoolWidget \ +static_assert(alignof(UWrestlerActiveQuestPoolWidget) == 0x000008, "Wrong alignment on UWrestlerActiveQuestPoolWidget"); \ +static_assert(sizeof(UWrestlerActiveQuestPoolWidget) == 0x000558, "Wrong size on UWrestlerActiveQuestPoolWidget"); \ +static_assert(offsetof(UWrestlerActiveQuestPoolWidget, bUseCustomIconForMarkers) == 0x000498, "Member 'UWrestlerActiveQuestPoolWidget::bUseCustomIconForMarkers' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActiveQuestPoolWidget, MainQuestIconImage) == 0x0004A0, "Member 'UWrestlerActiveQuestPoolWidget::MainQuestIconImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerActiveQuestPoolWidget, SideQuestIconImage) == 0x0004A8, "Member 'UWrestlerActiveQuestPoolWidget::SideQuestIconImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetType_GetTargets \ +static_assert(alignof(WrestlerTargetType_GetTargets) == 0x000008, "Wrong alignment on WrestlerTargetType_GetTargets"); \ +static_assert(sizeof(WrestlerTargetType_GetTargets) == 0x0000F0, "Wrong size on WrestlerTargetType_GetTargets"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, TargetingCharacter) == 0x000000, "Member 'WrestlerTargetType_GetTargets::TargetingCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, TargetingActor) == 0x000008, "Member 'WrestlerTargetType_GetTargets::TargetingActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, EventData) == 0x000010, "Member 'WrestlerTargetType_GetTargets::EventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, OutHitResults) == 0x0000C0, "Member 'WrestlerTargetType_GetTargets::OutHitResults' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, OutActors) == 0x0000D0, "Member 'WrestlerTargetType_GetTargets::OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetType_GetTargets, OutTargetData) == 0x0000E0, "Member 'WrestlerTargetType_GetTargets::OutTargetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTargetType \ +static_assert(alignof(UWrestlerTargetType) == 0x000008, "Wrong alignment on UWrestlerTargetType"); \ +static_assert(sizeof(UWrestlerTargetType) == 0x000028, "Wrong size on UWrestlerTargetType"); \ + +#define DUMPER7_ASSERTS_UWrestlerTargetType_UseEventData \ +static_assert(alignof(UWrestlerTargetType_UseEventData) == 0x000008, "Wrong alignment on UWrestlerTargetType_UseEventData"); \ +static_assert(sizeof(UWrestlerTargetType_UseEventData) == 0x000028, "Wrong size on UWrestlerTargetType_UseEventData"); \ + +#define DUMPER7_ASSERTS_WrestlerActorInteractionInterface_GetInteractableData \ +static_assert(alignof(WrestlerActorInteractionInterface_GetInteractableData) == 0x000008, "Wrong alignment on WrestlerActorInteractionInterface_GetInteractableData"); \ +static_assert(sizeof(WrestlerActorInteractionInterface_GetInteractableData) == 0x000018, "Wrong size on WrestlerActorInteractionInterface_GetInteractableData"); \ +static_assert(offsetof(WrestlerActorInteractionInterface_GetInteractableData, ReturnValue) == 0x000000, "Member 'WrestlerActorInteractionInterface_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerActorInteractionInterface \ +static_assert(alignof(IWrestlerActorInteractionInterface) == 0x000001, "Wrong alignment on IWrestlerActorInteractionInterface"); \ +static_assert(sizeof(IWrestlerActorInteractionInterface) == 0x000001, "Wrong size on IWrestlerActorInteractionInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerActorOcclusionSubsystem_IsOccluded \ +static_assert(alignof(WrestlerActorOcclusionSubsystem_IsOccluded) == 0x000008, "Wrong alignment on WrestlerActorOcclusionSubsystem_IsOccluded"); \ +static_assert(sizeof(WrestlerActorOcclusionSubsystem_IsOccluded) == 0x000020, "Wrong size on WrestlerActorOcclusionSubsystem_IsOccluded"); \ +static_assert(offsetof(WrestlerActorOcclusionSubsystem_IsOccluded, WorldContextObject) == 0x000000, "Member 'WrestlerActorOcclusionSubsystem_IsOccluded::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerActorOcclusionSubsystem_IsOccluded, Actor) == 0x000008, "Member 'WrestlerActorOcclusionSubsystem_IsOccluded::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerActorOcclusionSubsystem_IsOccluded, ConfigName) == 0x000010, "Member 'WrestlerActorOcclusionSubsystem_IsOccluded::ConfigName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerActorOcclusionSubsystem_IsOccluded, ReturnValue) == 0x000018, "Member 'WrestlerActorOcclusionSubsystem_IsOccluded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerActorOcclusionSubsystem \ +static_assert(alignof(UWrestlerActorOcclusionSubsystem) == 0x000008, "Wrong alignment on UWrestlerActorOcclusionSubsystem"); \ +static_assert(sizeof(UWrestlerActorOcclusionSubsystem) == 0x000030, "Wrong size on UWrestlerActorOcclusionSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerActorVisibilitySubsystem \ +static_assert(alignof(UWrestlerActorVisibilitySubsystem) == 0x000008, "Wrong alignment on UWrestlerActorVisibilitySubsystem"); \ +static_assert(sizeof(UWrestlerActorVisibilitySubsystem) == 0x000080, "Wrong size on UWrestlerActorVisibilitySubsystem"); \ +static_assert(offsetof(UWrestlerActorVisibilitySubsystem, ActorVisibilities) == 0x000030, "Member 'UWrestlerActorVisibilitySubsystem::ActorVisibilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerActor_Trace \ +static_assert(alignof(AWrestlerActor_Trace) == 0x000010, "Wrong alignment on AWrestlerActor_Trace"); \ +static_assert(sizeof(AWrestlerActor_Trace) == 0x000400, "Wrong size on AWrestlerActor_Trace"); \ + +#define DUMPER7_ASSERTS_UWrestlerAddPropToMassAI \ +static_assert(alignof(UWrestlerAddPropToMassAI) == 0x000008, "Wrong alignment on UWrestlerAddPropToMassAI"); \ +static_assert(sizeof(UWrestlerAddPropToMassAI) == 0x000040, "Wrong size on UWrestlerAddPropToMassAI"); \ +static_assert(offsetof(UWrestlerAddPropToMassAI, PropToAdd) == 0x000030, "Member 'UWrestlerAddPropToMassAI::PropToAdd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAddPropToMassAI, EndRemoveType) == 0x000038, "Member 'UWrestlerAddPropToMassAI::EndRemoveType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAddPropToMassAI, InterruptRemoveType) == 0x000039, "Member 'UWrestlerAddPropToMassAI::InterruptRemoveType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAddTagToLiveEnemies \ +static_assert(alignof(UWrestlerAddTagToLiveEnemies) == 0x000008, "Wrong alignment on UWrestlerAddTagToLiveEnemies"); \ +static_assert(sizeof(UWrestlerAddTagToLiveEnemies) == 0x0000C8, "Wrong size on UWrestlerAddTagToLiveEnemies"); \ +static_assert(offsetof(UWrestlerAddTagToLiveEnemies, TagsToAdd) == 0x000088, "Member 'UWrestlerAddTagToLiveEnemies::TagsToAdd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAddTagToLiveEnemies, TagsToRemove) == 0x0000A8, "Member 'UWrestlerAddTagToLiveEnemies::TagsToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAgentTaskFunctionLibrary_DistributeTask \ +static_assert(alignof(WrestlerAgentTaskFunctionLibrary_DistributeTask) == 0x000008, "Wrong alignment on WrestlerAgentTaskFunctionLibrary_DistributeTask"); \ +static_assert(sizeof(WrestlerAgentTaskFunctionLibrary_DistributeTask) == 0x000018, "Wrong size on WrestlerAgentTaskFunctionLibrary_DistributeTask"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_DistributeTask, WorldContextObject) == 0x000000, "Member 'WrestlerAgentTaskFunctionLibrary_DistributeTask::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_DistributeTask, InTaskTypeTag) == 0x000008, "Member 'WrestlerAgentTaskFunctionLibrary_DistributeTask::InTaskTypeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_DistributeTask, ReturnValue) == 0x000010, "Member 'WrestlerAgentTaskFunctionLibrary_DistributeTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent \ +static_assert(alignof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent) == 0x000008, "Wrong alignment on WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent"); \ +static_assert(sizeof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent) == 0x000020, "Wrong size on WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent, WorldContextObject) == 0x000000, "Member 'WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent, InTaskTag) == 0x000008, "Member 'WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent::InTaskTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent, InAgent) == 0x000010, "Member 'WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent, ReturnValue) == 0x000018, "Member 'WrestlerAgentTaskFunctionLibrary_RequestExactTaskForAgent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent \ +static_assert(alignof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent) == 0x000008, "Wrong alignment on WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent"); \ +static_assert(sizeof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent) == 0x000020, "Wrong size on WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent, WorldContextObject) == 0x000000, "Member 'WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent, InTaskTypeTag) == 0x000008, "Member 'WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent::InTaskTypeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent, InAgent) == 0x000010, "Member 'WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent, ReturnValue) == 0x000018, "Member 'WrestlerAgentTaskFunctionLibrary_RequestTaskForAgent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig \ +static_assert(alignof(WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig) == 0x000008, "Wrong alignment on WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig"); \ +static_assert(sizeof(WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig) == 0x000018, "Wrong size on WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig, WorldContextObject) == 0x000000, "Member 'WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig, InTaskBoardTag) == 0x000008, "Member 'WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig::InTaskBoardTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig, ReturnValue) == 0x000010, "Member 'WrestlerAgentTaskFunctionLibrary_SetTaskBoardConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAgentTaskFunctionLibrary \ +static_assert(alignof(UWrestlerAgentTaskFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerAgentTaskFunctionLibrary"); \ +static_assert(sizeof(UWrestlerAgentTaskFunctionLibrary) == 0x000028, "Wrong size on UWrestlerAgentTaskFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIAwarenessConfig \ +static_assert(alignof(UWrestlerAIAwarenessConfig) == 0x000008, "Wrong alignment on UWrestlerAIAwarenessConfig"); \ +static_assert(sizeof(UWrestlerAIAwarenessConfig) == 0x000258, "Wrong size on UWrestlerAIAwarenessConfig"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DetectionEscalationRate) == 0x000030, "Member 'UWrestlerAIAwarenessConfig::DetectionEscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DetectionDeEscalationRate) == 0x000034, "Member 'UWrestlerAIAwarenessConfig::DetectionDeEscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, ProximityDetectionEscalationRate) == 0x000038, "Member 'UWrestlerAIAwarenessConfig::ProximityDetectionEscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, EscalationRate) == 0x00003C, "Member 'UWrestlerAIAwarenessConfig::EscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DeEscalationRate) == 0x000040, "Member 'UWrestlerAIAwarenessConfig::DeEscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, ProximityEscalationRate) == 0x000044, "Member 'UWrestlerAIAwarenessConfig::ProximityEscalationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DamageDetectionIncrease) == 0x000048, "Member 'UWrestlerAIAwarenessConfig::DamageDetectionIncrease' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DamageLKPOffset) == 0x00004C, "Member 'UWrestlerAIAwarenessConfig::DamageLKPOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, DamageAwarenessIncrease) == 0x000050, "Member 'UWrestlerAIAwarenessConfig::DamageAwarenessIncrease' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, TouchAwarenessIncrease) == 0x000054, "Member 'UWrestlerAIAwarenessConfig::TouchAwarenessIncrease' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, LostSightOfPlayerDelay) == 0x000058, "Member 'UWrestlerAIAwarenessConfig::LostSightOfPlayerDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, EscalationValueDistanceCurve) == 0x000060, "Member 'UWrestlerAIAwarenessConfig::EscalationValueDistanceCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, EscalationValueAngleCurve) == 0x000100, "Member 'UWrestlerAIAwarenessConfig::EscalationValueAngleCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, NoticeabilitySightDistanceCurve) == 0x0001A0, "Member 'UWrestlerAIAwarenessConfig::NoticeabilitySightDistanceCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, BiasToCurrentTarget) == 0x000240, "Member 'UWrestlerAIAwarenessConfig::BiasToCurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, FlatBias) == 0x000248, "Member 'UWrestlerAIAwarenessConfig::FlatBias' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIAwarenessConfig, BiasRangeMultiplier) == 0x000250, "Member 'UWrestlerAIAwarenessConfig::BiasRangeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_EventOnBloodChanged \ +static_assert(alignof(WrestlerCharacterBase_EventOnBloodChanged) == 0x000004, "Wrong alignment on WrestlerCharacterBase_EventOnBloodChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_EventOnBloodChanged) == 0x000008, "Wrong size on WrestlerCharacterBase_EventOnBloodChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnBloodChanged, InCurrentBlood) == 0x000000, "Member 'WrestlerCharacterBase_EventOnBloodChanged::InCurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnBloodChanged, InMaxBlood) == 0x000004, "Member 'WrestlerCharacterBase_EventOnBloodChanged::InMaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_EventOnDamage \ +static_assert(alignof(WrestlerCharacterBase_EventOnDamage) == 0x000008, "Wrong alignment on WrestlerCharacterBase_EventOnDamage"); \ +static_assert(sizeof(WrestlerCharacterBase_EventOnDamage) == 0x000010, "Wrong size on WrestlerCharacterBase_EventOnDamage"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnDamage, InDamage) == 0x000000, "Member 'WrestlerCharacterBase_EventOnDamage::InDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnDamage, InDamageInstigator) == 0x000008, "Member 'WrestlerCharacterBase_EventOnDamage::InDamageInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_EventOnHealthChanged \ +static_assert(alignof(WrestlerCharacterBase_EventOnHealthChanged) == 0x000004, "Wrong alignment on WrestlerCharacterBase_EventOnHealthChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_EventOnHealthChanged) == 0x000008, "Wrong size on WrestlerCharacterBase_EventOnHealthChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnHealthChanged, InCurrentHealth) == 0x000000, "Member 'WrestlerCharacterBase_EventOnHealthChanged::InCurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_EventOnHealthChanged, InMaxHealth) == 0x000004, "Member 'WrestlerCharacterBase_EventOnHealthChanged::InMaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetHealth \ +static_assert(alignof(WrestlerCharacterBase_GetHealth) == 0x000004, "Wrong alignment on WrestlerCharacterBase_GetHealth"); \ +static_assert(sizeof(WrestlerCharacterBase_GetHealth) == 0x000004, "Wrong size on WrestlerCharacterBase_GetHealth"); \ +static_assert(offsetof(WrestlerCharacterBase_GetHealth, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetHealth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetWasRecentlyAttacked \ +static_assert(alignof(WrestlerCharacterBase_GetWasRecentlyAttacked) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetWasRecentlyAttacked"); \ +static_assert(sizeof(WrestlerCharacterBase_GetWasRecentlyAttacked) == 0x000001, "Wrong size on WrestlerCharacterBase_GetWasRecentlyAttacked"); \ +static_assert(offsetof(WrestlerCharacterBase_GetWasRecentlyAttacked, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetWasRecentlyAttacked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GiveAbility \ +static_assert(alignof(WrestlerCharacterBase_GiveAbility) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GiveAbility"); \ +static_assert(sizeof(WrestlerCharacterBase_GiveAbility) == 0x000008, "Wrong size on WrestlerCharacterBase_GiveAbility"); \ +static_assert(offsetof(WrestlerCharacterBase_GiveAbility, InAbility) == 0x000000, "Member 'WrestlerCharacterBase_GiveAbility::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_IsCurrentlyTargeting \ +static_assert(alignof(WrestlerCharacterBase_IsCurrentlyTargeting) == 0x000008, "Wrong alignment on WrestlerCharacterBase_IsCurrentlyTargeting"); \ +static_assert(sizeof(WrestlerCharacterBase_IsCurrentlyTargeting) == 0x000010, "Wrong size on WrestlerCharacterBase_IsCurrentlyTargeting"); \ +static_assert(offsetof(WrestlerCharacterBase_IsCurrentlyTargeting, bOutIsTargeting) == 0x000000, "Member 'WrestlerCharacterBase_IsCurrentlyTargeting::bOutIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_IsCurrentlyTargeting, OutCurrentTarget) == 0x000008, "Member 'WrestlerCharacterBase_IsCurrentlyTargeting::OutCurrentTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_IsDead \ +static_assert(alignof(WrestlerCharacterBase_IsDead) == 0x000001, "Wrong alignment on WrestlerCharacterBase_IsDead"); \ +static_assert(sizeof(WrestlerCharacterBase_IsDead) == 0x000001, "Wrong size on WrestlerCharacterBase_IsDead"); \ +static_assert(offsetof(WrestlerCharacterBase_IsDead, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_IsDead::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_MakeTargetDataFromOverlapSweep \ +static_assert(alignof(WrestlerCharacterBase_MakeTargetDataFromOverlapSweep) == 0x000008, "Wrong alignment on WrestlerCharacterBase_MakeTargetDataFromOverlapSweep"); \ +static_assert(sizeof(WrestlerCharacterBase_MakeTargetDataFromOverlapSweep) == 0x000118, "Wrong size on WrestlerCharacterBase_MakeTargetDataFromOverlapSweep"); \ +static_assert(offsetof(WrestlerCharacterBase_MakeTargetDataFromOverlapSweep, InOverlappedComponent) == 0x000000, "Member 'WrestlerCharacterBase_MakeTargetDataFromOverlapSweep::InOverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MakeTargetDataFromOverlapSweep, InHitResult) == 0x000008, "Member 'WrestlerCharacterBase_MakeTargetDataFromOverlapSweep::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MakeTargetDataFromOverlapSweep, ReturnValue) == 0x0000F0, "Member 'WrestlerCharacterBase_MakeTargetDataFromOverlapSweep::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_MeleeHitGameplayEvent \ +static_assert(alignof(WrestlerCharacterBase_MeleeHitGameplayEvent) == 0x000008, "Wrong alignment on WrestlerCharacterBase_MeleeHitGameplayEvent"); \ +static_assert(sizeof(WrestlerCharacterBase_MeleeHitGameplayEvent) == 0x0001C0, "Wrong size on WrestlerCharacterBase_MeleeHitGameplayEvent"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, InOverlappedComponent) == 0x000000, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::InOverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, InOtherActor) == 0x000008, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::InOtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, InHitResult) == 0x000010, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, InFilterHandle) == 0x0000F8, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::InFilterHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, OutPins) == 0x000108, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MeleeHitGameplayEvent, ReturnValue) == 0x000110, "Member 'WrestlerCharacterBase_MeleeHitGameplayEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnAbilityFailed \ +static_assert(alignof(WrestlerCharacterBase_OnAbilityFailed) == 0x000008, "Wrong alignment on WrestlerCharacterBase_OnAbilityFailed"); \ +static_assert(sizeof(WrestlerCharacterBase_OnAbilityFailed) == 0x000030, "Wrong size on WrestlerCharacterBase_OnAbilityFailed"); \ +static_assert(offsetof(WrestlerCharacterBase_OnAbilityFailed, OutFailureReason) == 0x000000, "Member 'WrestlerCharacterBase_OnAbilityFailed::OutFailureReason' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_OnAbilityFailed, TagFailure) == 0x000008, "Member 'WrestlerCharacterBase_OnAbilityFailed::TagFailure' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_OnAbilityFailed, AbilityFailure) == 0x000028, "Member 'WrestlerCharacterBase_OnAbilityFailed::AbilityFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnBloodChanged \ +static_assert(alignof(WrestlerCharacterBase_OnBloodChanged) == 0x000004, "Wrong alignment on WrestlerCharacterBase_OnBloodChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_OnBloodChanged) == 0x000008, "Wrong size on WrestlerCharacterBase_OnBloodChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_OnBloodChanged, CurrentBlood) == 0x000000, "Member 'WrestlerCharacterBase_OnBloodChanged::CurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_OnBloodChanged, MaxBlood) == 0x000004, "Member 'WrestlerCharacterBase_OnBloodChanged::MaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnDamagedGAS \ +static_assert(alignof(WrestlerCharacterBase_OnDamagedGAS) == 0x000004, "Wrong alignment on WrestlerCharacterBase_OnDamagedGAS"); \ +static_assert(sizeof(WrestlerCharacterBase_OnDamagedGAS) == 0x000004, "Wrong size on WrestlerCharacterBase_OnDamagedGAS"); \ +static_assert(offsetof(WrestlerCharacterBase_OnDamagedGAS, Damage) == 0x000000, "Member 'WrestlerCharacterBase_OnDamagedGAS::Damage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnGameplayTagsChanged \ +static_assert(alignof(WrestlerCharacterBase_OnGameplayTagsChanged) == 0x000008, "Wrong alignment on WrestlerCharacterBase_OnGameplayTagsChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_OnGameplayTagsChanged) == 0x000040, "Wrong size on WrestlerCharacterBase_OnGameplayTagsChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_OnGameplayTagsChanged, InAddedGameplayTags) == 0x000000, "Member 'WrestlerCharacterBase_OnGameplayTagsChanged::InAddedGameplayTags' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_OnGameplayTagsChanged, InRemovedGameplayTags) == 0x000020, "Member 'WrestlerCharacterBase_OnGameplayTagsChanged::InRemovedGameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnHealthChanged \ +static_assert(alignof(WrestlerCharacterBase_OnHealthChanged) == 0x000004, "Wrong alignment on WrestlerCharacterBase_OnHealthChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_OnHealthChanged) == 0x000008, "Wrong size on WrestlerCharacterBase_OnHealthChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_OnHealthChanged, CurrentHealth) == 0x000000, "Member 'WrestlerCharacterBase_OnHealthChanged::CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_OnHealthChanged, MaxHealth) == 0x000004, "Member 'WrestlerCharacterBase_OnHealthChanged::MaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnNewMovementMode \ +static_assert(alignof(WrestlerCharacterBase_OnNewMovementMode) == 0x000001, "Wrong alignment on WrestlerCharacterBase_OnNewMovementMode"); \ +static_assert(sizeof(WrestlerCharacterBase_OnNewMovementMode) == 0x000001, "Wrong size on WrestlerCharacterBase_OnNewMovementMode"); \ +static_assert(offsetof(WrestlerCharacterBase_OnNewMovementMode, InMovementMode) == 0x000000, "Member 'WrestlerCharacterBase_OnNewMovementMode::InMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_OnSequenceBindingChanged \ +static_assert(alignof(WrestlerCharacterBase_OnSequenceBindingChanged) == 0x000001, "Wrong alignment on WrestlerCharacterBase_OnSequenceBindingChanged"); \ +static_assert(sizeof(WrestlerCharacterBase_OnSequenceBindingChanged) == 0x000001, "Wrong size on WrestlerCharacterBase_OnSequenceBindingChanged"); \ +static_assert(offsetof(WrestlerCharacterBase_OnSequenceBindingChanged, bInIsBound) == 0x000000, "Member 'WrestlerCharacterBase_OnSequenceBindingChanged::bInIsBound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_RemoveAbility \ +static_assert(alignof(WrestlerCharacterBase_RemoveAbility) == 0x000008, "Wrong alignment on WrestlerCharacterBase_RemoveAbility"); \ +static_assert(sizeof(WrestlerCharacterBase_RemoveAbility) == 0x000008, "Wrong size on WrestlerCharacterBase_RemoveAbility"); \ +static_assert(offsetof(WrestlerCharacterBase_RemoveAbility, InAbility) == 0x000000, "Member 'WrestlerCharacterBase_RemoveAbility::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetAllowPawnOverlap \ +static_assert(alignof(WrestlerCharacterBase_SetAllowPawnOverlap) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetAllowPawnOverlap"); \ +static_assert(sizeof(WrestlerCharacterBase_SetAllowPawnOverlap) == 0x000004, "Wrong size on WrestlerCharacterBase_SetAllowPawnOverlap"); \ +static_assert(offsetof(WrestlerCharacterBase_SetAllowPawnOverlap, InDuration) == 0x000000, "Member 'WrestlerCharacterBase_SetAllowPawnOverlap::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetCharacterLevel \ +static_assert(alignof(WrestlerCharacterBase_SetCharacterLevel) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetCharacterLevel"); \ +static_assert(sizeof(WrestlerCharacterBase_SetCharacterLevel) == 0x000008, "Wrong size on WrestlerCharacterBase_SetCharacterLevel"); \ +static_assert(offsetof(WrestlerCharacterBase_SetCharacterLevel, NewLevel) == 0x000000, "Member 'WrestlerCharacterBase_SetCharacterLevel::NewLevel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_SetCharacterLevel, ReturnValue) == 0x000004, "Member 'WrestlerCharacterBase_SetCharacterLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetCrouchSpeed \ +static_assert(alignof(WrestlerCharacterBase_SetCrouchSpeed) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetCrouchSpeed"); \ +static_assert(sizeof(WrestlerCharacterBase_SetCrouchSpeed) == 0x000004, "Wrong size on WrestlerCharacterBase_SetCrouchSpeed"); \ +static_assert(offsetof(WrestlerCharacterBase_SetCrouchSpeed, NewCrouchSpeed) == 0x000000, "Member 'WrestlerCharacterBase_SetCrouchSpeed::NewCrouchSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetDeathBehaviourTag \ +static_assert(alignof(WrestlerCharacterBase_SetDeathBehaviourTag) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetDeathBehaviourTag"); \ +static_assert(sizeof(WrestlerCharacterBase_SetDeathBehaviourTag) == 0x000008, "Wrong size on WrestlerCharacterBase_SetDeathBehaviourTag"); \ +static_assert(offsetof(WrestlerCharacterBase_SetDeathBehaviourTag, InDeathBehaviourTag) == 0x000000, "Member 'WrestlerCharacterBase_SetDeathBehaviourTag::InDeathBehaviourTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetDeathInstigator \ +static_assert(alignof(WrestlerCharacterBase_SetDeathInstigator) == 0x000008, "Wrong alignment on WrestlerCharacterBase_SetDeathInstigator"); \ +static_assert(sizeof(WrestlerCharacterBase_SetDeathInstigator) == 0x000008, "Wrong size on WrestlerCharacterBase_SetDeathInstigator"); \ +static_assert(offsetof(WrestlerCharacterBase_SetDeathInstigator, InInstigator) == 0x000000, "Member 'WrestlerCharacterBase_SetDeathInstigator::InInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetIsInCutscene \ +static_assert(alignof(WrestlerCharacterBase_SetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetIsInCutscene"); \ +static_assert(sizeof(WrestlerCharacterBase_SetIsInCutscene) == 0x000001, "Wrong size on WrestlerCharacterBase_SetIsInCutscene"); \ +static_assert(offsetof(WrestlerCharacterBase_SetIsInCutscene, bInCutscene) == 0x000000, "Member 'WrestlerCharacterBase_SetIsInCutscene::bInCutscene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetIsInDialogue \ +static_assert(alignof(WrestlerCharacterBase_SetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetIsInDialogue"); \ +static_assert(sizeof(WrestlerCharacterBase_SetIsInDialogue) == 0x000001, "Wrong size on WrestlerCharacterBase_SetIsInDialogue"); \ +static_assert(offsetof(WrestlerCharacterBase_SetIsInDialogue, bInDialogue) == 0x000000, "Member 'WrestlerCharacterBase_SetIsInDialogue::bInDialogue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetIsSpeaking \ +static_assert(alignof(WrestlerCharacterBase_SetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetIsSpeaking"); \ +static_assert(sizeof(WrestlerCharacterBase_SetIsSpeaking) == 0x000001, "Wrong size on WrestlerCharacterBase_SetIsSpeaking"); \ +static_assert(offsetof(WrestlerCharacterBase_SetIsSpeaking, bIsSpeaking_0) == 0x000000, "Member 'WrestlerCharacterBase_SetIsSpeaking::bIsSpeaking_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetIsTargetable \ +static_assert(alignof(WrestlerCharacterBase_SetIsTargetable) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetIsTargetable"); \ +static_assert(sizeof(WrestlerCharacterBase_SetIsTargetable) == 0x000001, "Wrong size on WrestlerCharacterBase_SetIsTargetable"); \ +static_assert(offsetof(WrestlerCharacterBase_SetIsTargetable, InIsTargetable) == 0x000000, "Member 'WrestlerCharacterBase_SetIsTargetable::InIsTargetable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetOutOfCombat \ +static_assert(alignof(WrestlerCharacterBase_SetOutOfCombat) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetOutOfCombat"); \ +static_assert(sizeof(WrestlerCharacterBase_SetOutOfCombat) == 0x000001, "Wrong size on WrestlerCharacterBase_SetOutOfCombat"); \ +static_assert(offsetof(WrestlerCharacterBase_SetOutOfCombat, bNewOutOfCombat) == 0x000000, "Member 'WrestlerCharacterBase_SetOutOfCombat::bNewOutOfCombat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetPlayerTarget \ +static_assert(alignof(WrestlerCharacterBase_SetPlayerTarget) == 0x000001, "Wrong alignment on WrestlerCharacterBase_SetPlayerTarget"); \ +static_assert(sizeof(WrestlerCharacterBase_SetPlayerTarget) == 0x000001, "Wrong size on WrestlerCharacterBase_SetPlayerTarget"); \ +static_assert(offsetof(WrestlerCharacterBase_SetPlayerTarget, bIsTarget) == 0x000000, "Member 'WrestlerCharacterBase_SetPlayerTarget::bIsTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetSprintSpeed \ +static_assert(alignof(WrestlerCharacterBase_SetSprintSpeed) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetSprintSpeed"); \ +static_assert(sizeof(WrestlerCharacterBase_SetSprintSpeed) == 0x000004, "Wrong size on WrestlerCharacterBase_SetSprintSpeed"); \ +static_assert(offsetof(WrestlerCharacterBase_SetSprintSpeed, NewSprintSpeed) == 0x000000, "Member 'WrestlerCharacterBase_SetSprintSpeed::NewSprintSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_SetWalkSpeed \ +static_assert(alignof(WrestlerCharacterBase_SetWalkSpeed) == 0x000004, "Wrong alignment on WrestlerCharacterBase_SetWalkSpeed"); \ +static_assert(sizeof(WrestlerCharacterBase_SetWalkSpeed) == 0x000004, "Wrong size on WrestlerCharacterBase_SetWalkSpeed"); \ +static_assert(offsetof(WrestlerCharacterBase_SetWalkSpeed, NewWalkSpeed) == 0x000000, "Member 'WrestlerCharacterBase_SetWalkSpeed::NewWalkSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_ControlCueProcessed \ +static_assert(alignof(WrestlerCharacterBase_ControlCueProcessed) == 0x000008, "Wrong alignment on WrestlerCharacterBase_ControlCueProcessed"); \ +static_assert(sizeof(WrestlerCharacterBase_ControlCueProcessed) == 0x000008, "Wrong size on WrestlerCharacterBase_ControlCueProcessed"); \ +static_assert(offsetof(WrestlerCharacterBase_ControlCueProcessed, InControlCue) == 0x000000, "Member 'WrestlerCharacterBase_ControlCueProcessed::InControlCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetActorName \ +static_assert(alignof(WrestlerCharacterBase_GetActorName) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetActorName"); \ +static_assert(sizeof(WrestlerCharacterBase_GetActorName) == 0x000010, "Wrong size on WrestlerCharacterBase_GetActorName"); \ +static_assert(offsetof(WrestlerCharacterBase_GetActorName, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetAudioCharacterComponent \ +static_assert(alignof(WrestlerCharacterBase_GetAudioCharacterComponent) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetAudioCharacterComponent"); \ +static_assert(sizeof(WrestlerCharacterBase_GetAudioCharacterComponent) == 0x000008, "Wrong size on WrestlerCharacterBase_GetAudioCharacterComponent"); \ +static_assert(offsetof(WrestlerCharacterBase_GetAudioCharacterComponent, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetAudioCharacterComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetAudioComponent \ +static_assert(alignof(WrestlerCharacterBase_GetAudioComponent) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetAudioComponent"); \ +static_assert(sizeof(WrestlerCharacterBase_GetAudioComponent) == 0x000008, "Wrong size on WrestlerCharacterBase_GetAudioComponent"); \ +static_assert(offsetof(WrestlerCharacterBase_GetAudioComponent, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetCharacterLevel \ +static_assert(alignof(WrestlerCharacterBase_GetCharacterLevel) == 0x000004, "Wrong alignment on WrestlerCharacterBase_GetCharacterLevel"); \ +static_assert(sizeof(WrestlerCharacterBase_GetCharacterLevel) == 0x000004, "Wrong size on WrestlerCharacterBase_GetCharacterLevel"); \ +static_assert(offsetof(WrestlerCharacterBase_GetCharacterLevel, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetCharacterLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetDialogueCharacterTag \ +static_assert(alignof(WrestlerCharacterBase_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on WrestlerCharacterBase_GetDialogueCharacterTag"); \ +static_assert(sizeof(WrestlerCharacterBase_GetDialogueCharacterTag) == 0x000008, "Wrong size on WrestlerCharacterBase_GetDialogueCharacterTag"); \ +static_assert(offsetof(WrestlerCharacterBase_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetDialogueInfo \ +static_assert(alignof(WrestlerCharacterBase_GetDialogueInfo) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetDialogueInfo"); \ +static_assert(sizeof(WrestlerCharacterBase_GetDialogueInfo) == 0x000008, "Wrong size on WrestlerCharacterBase_GetDialogueInfo"); \ +static_assert(offsetof(WrestlerCharacterBase_GetDialogueInfo, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetDialogueInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetFloorSurfaceType \ +static_assert(alignof(WrestlerCharacterBase_GetFloorSurfaceType) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetFloorSurfaceType"); \ +static_assert(sizeof(WrestlerCharacterBase_GetFloorSurfaceType) == 0x000001, "Wrong size on WrestlerCharacterBase_GetFloorSurfaceType"); \ +static_assert(offsetof(WrestlerCharacterBase_GetFloorSurfaceType, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetFloorSurfaceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsInCutscene \ +static_assert(alignof(WrestlerCharacterBase_GetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsInCutscene"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsInCutscene) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsInCutscene"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsInDialogue \ +static_assert(alignof(WrestlerCharacterBase_GetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsInDialogue"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsInDialogue) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsInDialogue"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsLedgeVaulting \ +static_assert(alignof(WrestlerCharacterBase_GetIsLedgeVaulting) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsLedgeVaulting"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsLedgeVaulting) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsLedgeVaulting"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsLedgeVaulting, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsLedgeVaulting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsMantling \ +static_assert(alignof(WrestlerCharacterBase_GetIsMantling) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsMantling"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsMantling) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsMantling"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsMantling, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsMantling::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsSpeaking \ +static_assert(alignof(WrestlerCharacterBase_GetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsSpeaking"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsSpeaking) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsSpeaking"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsVaulting \ +static_assert(alignof(WrestlerCharacterBase_GetIsVaulting) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsVaulting"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsVaulting) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsVaulting"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsVaulting, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsVaulting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetIsWallClimbing \ +static_assert(alignof(WrestlerCharacterBase_GetIsWallClimbing) == 0x000001, "Wrong alignment on WrestlerCharacterBase_GetIsWallClimbing"); \ +static_assert(sizeof(WrestlerCharacterBase_GetIsWallClimbing) == 0x000001, "Wrong size on WrestlerCharacterBase_GetIsWallClimbing"); \ +static_assert(offsetof(WrestlerCharacterBase_GetIsWallClimbing, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetIsWallClimbing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetSkeletalMeshComp \ +static_assert(alignof(WrestlerCharacterBase_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetSkeletalMeshComp"); \ +static_assert(sizeof(WrestlerCharacterBase_GetSkeletalMeshComp) == 0x000008, "Wrong size on WrestlerCharacterBase_GetSkeletalMeshComp"); \ +static_assert(offsetof(WrestlerCharacterBase_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetTraversalComponent \ +static_assert(alignof(WrestlerCharacterBase_GetTraversalComponent) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetTraversalComponent"); \ +static_assert(sizeof(WrestlerCharacterBase_GetTraversalComponent) == 0x000008, "Wrong size on WrestlerCharacterBase_GetTraversalComponent"); \ +static_assert(offsetof(WrestlerCharacterBase_GetTraversalComponent, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetTraversalComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_GetWrestlerMovementComponent \ +static_assert(alignof(WrestlerCharacterBase_GetWrestlerMovementComponent) == 0x000008, "Wrong alignment on WrestlerCharacterBase_GetWrestlerMovementComponent"); \ +static_assert(sizeof(WrestlerCharacterBase_GetWrestlerMovementComponent) == 0x000008, "Wrong size on WrestlerCharacterBase_GetWrestlerMovementComponent"); \ +static_assert(offsetof(WrestlerCharacterBase_GetWrestlerMovementComponent, ReturnValue) == 0x000000, "Member 'WrestlerCharacterBase_GetWrestlerMovementComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterBase_MatchesCharacterTag \ +static_assert(alignof(WrestlerCharacterBase_MatchesCharacterTag) == 0x000004, "Wrong alignment on WrestlerCharacterBase_MatchesCharacterTag"); \ +static_assert(sizeof(WrestlerCharacterBase_MatchesCharacterTag) == 0x00000C, "Wrong size on WrestlerCharacterBase_MatchesCharacterTag"); \ +static_assert(offsetof(WrestlerCharacterBase_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'WrestlerCharacterBase_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterBase_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterBase_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCharacterBase \ +static_assert(alignof(AWrestlerCharacterBase) == 0x000010, "Wrong alignment on AWrestlerCharacterBase"); \ +static_assert(sizeof(AWrestlerCharacterBase) == 0x000AB0, "Wrong size on AWrestlerCharacterBase"); \ +static_assert(offsetof(AWrestlerCharacterBase, AudioCharacterComponent) == 0x0006E0, "Member 'AWrestlerCharacterBase::AudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, HealthRegenDelay) == 0x0006F0, "Member 'AWrestlerCharacterBase::HealthRegenDelay' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, HealthRegenSegment_MaxHealthPercentage) == 0x0006F4, "Member 'AWrestlerCharacterBase::HealthRegenSegment_MaxHealthPercentage' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, HealthRegenSegment) == 0x0006F8, "Member 'AWrestlerCharacterBase::HealthRegenSegment' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, HealthSubBar) == 0x0006FC, "Member 'AWrestlerCharacterBase::HealthSubBar' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CurrentHealthCache) == 0x000700, "Member 'AWrestlerCharacterBase::CurrentHealthCache' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, AttributeSetBase) == 0x000708, "Member 'AWrestlerCharacterBase::AttributeSetBase' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CameraShakeAttributeSet) == 0x000710, "Member 'AWrestlerCharacterBase::CameraShakeAttributeSet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, LastBreathHealthAttributeSet) == 0x000718, "Member 'AWrestlerCharacterBase::LastBreathHealthAttributeSet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, AnimDataAsset) == 0x000720, "Member 'AWrestlerCharacterBase::AnimDataAsset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DespawnTag) == 0x000728, "Member 'AWrestlerCharacterBase::DespawnTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CharacterTag) == 0x000730, "Member 'AWrestlerCharacterBase::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, SprintTag) == 0x000738, "Member 'AWrestlerCharacterBase::SprintTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CrouchTag) == 0x000740, "Member 'AWrestlerCharacterBase::CrouchTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, SlideTag) == 0x000748, "Member 'AWrestlerCharacterBase::SlideTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, JumpTag) == 0x000750, "Member 'AWrestlerCharacterBase::JumpTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, GlideTag) == 0x000758, "Member 'AWrestlerCharacterBase::GlideTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OutOfCombatTag) == 0x000760, "Member 'AWrestlerCharacterBase::OutOfCombatTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, RegenTag) == 0x000768, "Member 'AWrestlerCharacterBase::RegenTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, StunnedTag) == 0x000770, "Member 'AWrestlerCharacterBase::StunnedTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, MovementTags) == 0x000778, "Member 'AWrestlerCharacterBase::MovementTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, FeedXPAwardTag) == 0x0007C8, "Member 'AWrestlerCharacterBase::FeedXPAwardTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CheckForCombat) == 0x0007D0, "Member 'AWrestlerCharacterBase::CheckForCombat' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OutOfCombatTime) == 0x0007D4, "Member 'AWrestlerCharacterBase::OutOfCombatTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnOutOfCombat) == 0x0007D8, "Member 'AWrestlerCharacterBase::OnOutOfCombat' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnCutsceneStarted) == 0x0007E8, "Member 'AWrestlerCharacterBase::OnCutsceneStarted' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnCutsceneEnded) == 0x0007F8, "Member 'AWrestlerCharacterBase::OnCutsceneEnded' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bRegenHealth) == 0x000820, "Member 'AWrestlerCharacterBase::bRegenHealth' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, SightTargets) == 0x000828, "Member 'AWrestlerCharacterBase::SightTargets' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, VampiricVisionId) == 0x000878, "Member 'AWrestlerCharacterBase::VampiricVisionId' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, WrestlerCharacterDeathDelegate) == 0x000880, "Member 'AWrestlerCharacterBase::WrestlerCharacterDeathDelegate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, WrestlerCharacterMarkedForDespawnDelegate) == 0x000890, "Member 'AWrestlerCharacterBase::WrestlerCharacterMarkedForDespawnDelegate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnCharacterDamaged) == 0x0008A0, "Member 'AWrestlerCharacterBase::OnCharacterDamaged' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnCharacterAttacked) == 0x0008B0, "Member 'AWrestlerCharacterBase::OnCharacterAttacked' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, OnCharacterVanished) == 0x0008C0, "Member 'AWrestlerCharacterBase::OnCharacterVanished' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bRegisterAsVampiricVisionTarget) == 0x0008D0, "Member 'AWrestlerCharacterBase::bRegisterAsVampiricVisionTarget' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DeadActor) == 0x0008D8, "Member 'AWrestlerCharacterBase::DeadActor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DeathBehaviourTag) == 0x000900, "Member 'AWrestlerCharacterBase::DeathBehaviourTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DeathInstigator) == 0x000908, "Member 'AWrestlerCharacterBase::DeathInstigator' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, AbilitySystemComponent) == 0x000910, "Member 'AWrestlerCharacterBase::AbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, SequenceBlendComponent) == 0x000918, "Member 'AWrestlerCharacterBase::SequenceBlendComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, CharacterLevel) == 0x000920, "Member 'AWrestlerCharacterBase::CharacterLevel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DefaultAbilitiesAsset) == 0x000928, "Member 'AWrestlerCharacterBase::DefaultAbilitiesAsset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, DefaultEffectsOnStart) == 0x000930, "Member 'AWrestlerCharacterBase::DefaultEffectsOnStart' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, StatusText) == 0x000950, "Member 'AWrestlerCharacterBase::StatusText' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bIsInDialogue) == 0x000960, "Member 'AWrestlerCharacterBase::bIsInDialogue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bIsInCutscene) == 0x000961, "Member 'AWrestlerCharacterBase::bIsInCutscene' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bIsSpeaking) == 0x000962, "Member 'AWrestlerCharacterBase::bIsSpeaking' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacterBase, bIsTargetable) == 0x000970, "Member 'AWrestlerCharacterBase::bIsTargetable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_SetDefaultMeshHeightScale \ +static_assert(alignof(WrestlerAICharacter_SetDefaultMeshHeightScale) == 0x000004, "Wrong alignment on WrestlerAICharacter_SetDefaultMeshHeightScale"); \ +static_assert(sizeof(WrestlerAICharacter_SetDefaultMeshHeightScale) == 0x000004, "Wrong size on WrestlerAICharacter_SetDefaultMeshHeightScale"); \ +static_assert(offsetof(WrestlerAICharacter_SetDefaultMeshHeightScale, InLerpDuration) == 0x000000, "Member 'WrestlerAICharacter_SetDefaultMeshHeightScale::InLerpDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_SetEnableUVGlow \ +static_assert(alignof(WrestlerAICharacter_SetEnableUVGlow) == 0x000001, "Wrong alignment on WrestlerAICharacter_SetEnableUVGlow"); \ +static_assert(sizeof(WrestlerAICharacter_SetEnableUVGlow) == 0x000001, "Wrong size on WrestlerAICharacter_SetEnableUVGlow"); \ +static_assert(offsetof(WrestlerAICharacter_SetEnableUVGlow, bInNewUVGlow) == 0x000000, "Member 'WrestlerAICharacter_SetEnableUVGlow::bInNewUVGlow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_SetMeshHeightScale \ +static_assert(alignof(WrestlerAICharacter_SetMeshHeightScale) == 0x000004, "Wrong alignment on WrestlerAICharacter_SetMeshHeightScale"); \ +static_assert(sizeof(WrestlerAICharacter_SetMeshHeightScale) == 0x000008, "Wrong size on WrestlerAICharacter_SetMeshHeightScale"); \ +static_assert(offsetof(WrestlerAICharacter_SetMeshHeightScale, InHeightScale) == 0x000000, "Member 'WrestlerAICharacter_SetMeshHeightScale::InHeightScale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_SetMeshHeightScale, InLerpDuration) == 0x000004, "Member 'WrestlerAICharacter_SetMeshHeightScale::InLerpDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_SetUseStunGlow \ +static_assert(alignof(WrestlerAICharacter_SetUseStunGlow) == 0x000004, "Wrong alignment on WrestlerAICharacter_SetUseStunGlow"); \ +static_assert(sizeof(WrestlerAICharacter_SetUseStunGlow) == 0x000004, "Wrong size on WrestlerAICharacter_SetUseStunGlow"); \ +static_assert(offsetof(WrestlerAICharacter_SetUseStunGlow, InUseStunGlow) == 0x000000, "Member 'WrestlerAICharacter_SetUseStunGlow::InUseStunGlow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_CanBeSeen \ +static_assert(alignof(WrestlerAICharacter_CanBeSeen) == 0x000008, "Wrong alignment on WrestlerAICharacter_CanBeSeen"); \ +static_assert(sizeof(WrestlerAICharacter_CanBeSeen) == 0x000010, "Wrong size on WrestlerAICharacter_CanBeSeen"); \ +static_assert(offsetof(WrestlerAICharacter_CanBeSeen, InActor) == 0x000000, "Member 'WrestlerAICharacter_CanBeSeen::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_CanBeSeen, ReturnValue) == 0x000008, "Member 'WrestlerAICharacter_CanBeSeen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_GetIKRetargetMesh \ +static_assert(alignof(WrestlerAICharacter_GetIKRetargetMesh) == 0x000008, "Wrong alignment on WrestlerAICharacter_GetIKRetargetMesh"); \ +static_assert(sizeof(WrestlerAICharacter_GetIKRetargetMesh) == 0x000008, "Wrong size on WrestlerAICharacter_GetIKRetargetMesh"); \ +static_assert(offsetof(WrestlerAICharacter_GetIKRetargetMesh, ReturnValue) == 0x000000, "Member 'WrestlerAICharacter_GetIKRetargetMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_GetModularCharacterProfile \ +static_assert(alignof(WrestlerAICharacter_GetModularCharacterProfile) == 0x000008, "Wrong alignment on WrestlerAICharacter_GetModularCharacterProfile"); \ +static_assert(sizeof(WrestlerAICharacter_GetModularCharacterProfile) == 0x000008, "Wrong size on WrestlerAICharacter_GetModularCharacterProfile"); \ +static_assert(offsetof(WrestlerAICharacter_GetModularCharacterProfile, ReturnValue) == 0x000000, "Member 'WrestlerAICharacter_GetModularCharacterProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_IsActorInView \ +static_assert(alignof(WrestlerAICharacter_IsActorInView) == 0x000008, "Wrong alignment on WrestlerAICharacter_IsActorInView"); \ +static_assert(sizeof(WrestlerAICharacter_IsActorInView) == 0x000010, "Wrong size on WrestlerAICharacter_IsActorInView"); \ +static_assert(offsetof(WrestlerAICharacter_IsActorInView, ActorToCheck) == 0x000000, "Member 'WrestlerAICharacter_IsActorInView::ActorToCheck' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_IsActorInView, ReturnValue) == 0x000008, "Member 'WrestlerAICharacter_IsActorInView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAICharacter_TraceToActor \ +static_assert(alignof(WrestlerAICharacter_TraceToActor) == 0x000008, "Wrong alignment on WrestlerAICharacter_TraceToActor"); \ +static_assert(sizeof(WrestlerAICharacter_TraceToActor) == 0x000100, "Wrong size on WrestlerAICharacter_TraceToActor"); \ +static_assert(offsetof(WrestlerAICharacter_TraceToActor, ActorToTrace) == 0x000000, "Member 'WrestlerAICharacter_TraceToActor::ActorToTrace' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_TraceToActor, OutHit) == 0x000008, "Member 'WrestlerAICharacter_TraceToActor::OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_TraceToActor, TraceName) == 0x0000F0, "Member 'WrestlerAICharacter_TraceToActor::TraceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAICharacter_TraceToActor, ReturnValue) == 0x0000F8, "Member 'WrestlerAICharacter_TraceToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAICharacter \ +static_assert(alignof(AWrestlerAICharacter) == 0x000010, "Wrong alignment on AWrestlerAICharacter"); \ +static_assert(sizeof(AWrestlerAICharacter) == 0x000B50, "Wrong size on AWrestlerAICharacter"); \ +static_assert(offsetof(AWrestlerAICharacter, InterestingPointTags) == 0x000AB0, "Member 'AWrestlerAICharacter::InterestingPointTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, bFadeOutStunGlow) == 0x000AD0, "Member 'AWrestlerAICharacter::bFadeOutStunGlow' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, StunGlowFadeSpeed) == 0x000AD4, "Member 'AWrestlerAICharacter::StunGlowFadeSpeed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, WrestlerCharacterDeathCleanUpDelegate) == 0x000AD8, "Member 'AWrestlerAICharacter::WrestlerCharacterDeathCleanUpDelegate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, OnDeadBodySpawned) == 0x000AE8, "Member 'AWrestlerAICharacter::OnDeadBodySpawned' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, bEnableUVGlow) == 0x000AF8, "Member 'AWrestlerAICharacter::bEnableUVGlow' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, ModularCharacterProfile) == 0x000B00, "Member 'AWrestlerAICharacter::ModularCharacterProfile' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, MinMaxMeshHeightScale) == 0x000B08, "Member 'AWrestlerAICharacter::MinMaxMeshHeightScale' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, IKRetargetMesh) == 0x000B18, "Member 'AWrestlerAICharacter::IKRetargetMesh' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAICharacter, BloodResonanceComponent) == 0x000B20, "Member 'AWrestlerAICharacter::BloodResonanceComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerShowFlagsSubsystem \ +static_assert(alignof(UWrestlerShowFlagsSubsystem) == 0x000008, "Wrong alignment on UWrestlerShowFlagsSubsystem"); \ +static_assert(sizeof(UWrestlerShowFlagsSubsystem) == 0x000090, "Wrong size on UWrestlerShowFlagsSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIDebugSettings \ +static_assert(alignof(UWrestlerAIDebugSettings) == 0x000008, "Wrong alignment on UWrestlerAIDebugSettings"); \ +static_assert(sizeof(UWrestlerAIDebugSettings) == 0x000038, "Wrong size on UWrestlerAIDebugSettings"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingValueDiscrete_OverallQuality \ +static_assert(alignof(UWrestlerSettingValueDiscrete_OverallQuality) == 0x000008, "Wrong alignment on UWrestlerSettingValueDiscrete_OverallQuality"); \ +static_assert(sizeof(UWrestlerSettingValueDiscrete_OverallQuality) == 0x0001A8, "Wrong size on UWrestlerSettingValueDiscrete_OverallQuality"); \ + +#define DUMPER7_ASSERTS_AWrestlerGA_GetTargetActor \ +static_assert(alignof(AWrestlerGA_GetTargetActor) == 0x000010, "Wrong alignment on AWrestlerGA_GetTargetActor"); \ +static_assert(sizeof(AWrestlerGA_GetTargetActor) == 0x0003F0, "Wrong size on AWrestlerGA_GetTargetActor"); \ +static_assert(offsetof(AWrestlerGA_GetTargetActor, ScanRange) == 0x0003E0, "Member 'AWrestlerGA_GetTargetActor::ScanRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIFocus \ +static_assert(alignof(UWrestlerAIFocus) == 0x000008, "Wrong alignment on UWrestlerAIFocus"); \ +static_assert(sizeof(UWrestlerAIFocus) == 0x0000B0, "Wrong size on UWrestlerAIFocus"); \ +static_assert(offsetof(UWrestlerAIFocus, Controller) == 0x000040, "Member 'UWrestlerAIFocus::Controller' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIFocus, FocusConfig) == 0x000048, "Member 'UWrestlerAIFocus::FocusConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIFocus, CurrentFocusType) == 0x000050, "Member 'UWrestlerAIFocus::CurrentFocusType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIFocus, DefaultFocusType) == 0x000058, "Member 'UWrestlerAIFocus::DefaultFocusType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIFocus, FocusTypeCache) == 0x000060, "Member 'UWrestlerAIFocus::FocusTypeCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIHelperInterface_GetPatrolComponent \ +static_assert(alignof(WrestlerAIHelperInterface_GetPatrolComponent) == 0x000008, "Wrong alignment on WrestlerAIHelperInterface_GetPatrolComponent"); \ +static_assert(sizeof(WrestlerAIHelperInterface_GetPatrolComponent) == 0x000008, "Wrong size on WrestlerAIHelperInterface_GetPatrolComponent"); \ +static_assert(offsetof(WrestlerAIHelperInterface_GetPatrolComponent, ReturnValue) == 0x000000, "Member 'WrestlerAIHelperInterface_GetPatrolComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIHelperInterface_GetMoveToLocation \ +static_assert(alignof(WrestlerAIHelperInterface_GetMoveToLocation) == 0x000008, "Wrong alignment on WrestlerAIHelperInterface_GetMoveToLocation"); \ +static_assert(sizeof(WrestlerAIHelperInterface_GetMoveToLocation) == 0x000018, "Wrong size on WrestlerAIHelperInterface_GetMoveToLocation"); \ +static_assert(offsetof(WrestlerAIHelperInterface_GetMoveToLocation, ReturnValue) == 0x000000, "Member 'WrestlerAIHelperInterface_GetMoveToLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerAIHelperInterface \ +static_assert(alignof(IWrestlerAIHelperInterface) == 0x000001, "Wrong alignment on IWrestlerAIHelperInterface"); \ +static_assert(sizeof(IWrestlerAIHelperInterface) == 0x000001, "Wrong size on IWrestlerAIHelperInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged \ +static_assert(alignof(WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged) == 0x000004, "Wrong alignment on WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged"); \ +static_assert(sizeof(WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged) == 0x000004, "Wrong size on WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged, Value) == 0x000000, "Member 'WrestlerGameSettingListEntrySetting_Scalar_HandleSliderValueChanged::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingListEntrySetting_Scalar_IsEnabled \ +static_assert(alignof(WrestlerGameSettingListEntrySetting_Scalar_IsEnabled) == 0x000001, "Wrong alignment on WrestlerGameSettingListEntrySetting_Scalar_IsEnabled"); \ +static_assert(sizeof(WrestlerGameSettingListEntrySetting_Scalar_IsEnabled) == 0x000001, "Wrong size on WrestlerGameSettingListEntrySetting_Scalar_IsEnabled"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Scalar_IsEnabled, ReturnValue) == 0x000000, "Member 'WrestlerGameSettingListEntrySetting_Scalar_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged \ +static_assert(alignof(WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged) == 0x000004, "Wrong alignment on WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged"); \ +static_assert(sizeof(WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged) == 0x000004, "Wrong size on WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged, InDefaultValue) == 0x000000, "Member 'WrestlerGameSettingListEntrySetting_Scalar_OnDefaultValueChanged::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged \ +static_assert(alignof(WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged) == 0x000004, "Wrong alignment on WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged"); \ +static_assert(sizeof(WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged) == 0x000004, "Wrong size on WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged, InValue) == 0x000000, "Member 'WrestlerGameSettingListEntrySetting_Scalar_OnValueChanged::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameSettingListEntrySetting_Scalar \ +static_assert(alignof(UWrestlerGameSettingListEntrySetting_Scalar) == 0x000008, "Wrong alignment on UWrestlerGameSettingListEntrySetting_Scalar"); \ +static_assert(sizeof(UWrestlerGameSettingListEntrySetting_Scalar) == 0x000348, "Wrong size on UWrestlerGameSettingListEntrySetting_Scalar"); \ +static_assert(offsetof(UWrestlerGameSettingListEntrySetting_Scalar, ScalarSetting) == 0x000328, "Member 'UWrestlerGameSettingListEntrySetting_Scalar::ScalarSetting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingListEntrySetting_Scalar, Panel_Value) == 0x000330, "Member 'UWrestlerGameSettingListEntrySetting_Scalar::Panel_Value' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingListEntrySetting_Scalar, Slider_SettingValue) == 0x000338, "Member 'UWrestlerGameSettingListEntrySetting_Scalar::Slider_SettingValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingListEntrySetting_Scalar, Text_SettingValue) == 0x000340, "Member 'UWrestlerGameSettingListEntrySetting_Scalar::Text_SettingValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIInterestingComponent \ +static_assert(alignof(UWrestlerAIInterestingComponent) == 0x000010, "Wrong alignment on UWrestlerAIInterestingComponent"); \ +static_assert(sizeof(UWrestlerAIInterestingComponent) == 0x0002C0, "Wrong size on UWrestlerAIInterestingComponent"); \ +static_assert(offsetof(UWrestlerAIInterestingComponent, Interest) == 0x0002A0, "Member 'UWrestlerAIInterestingComponent::Interest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIInterestingComponent, InterestingPointTag) == 0x0002A4, "Member 'UWrestlerAIInterestingComponent::InterestingPointTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIInterestingComponent, bShowDebug) == 0x0002AC, "Member 'UWrestlerAIInterestingComponent::bShowDebug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIInterestingComponent, MaxCapacity) == 0x0002B0, "Member 'UWrestlerAIInterestingComponent::MaxCapacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_GetCurrentPatrolPoint \ +static_assert(alignof(WrestlerAIPatrolComponent_GetCurrentPatrolPoint) == 0x000008, "Wrong alignment on WrestlerAIPatrolComponent_GetCurrentPatrolPoint"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_GetCurrentPatrolPoint) == 0x000008, "Wrong size on WrestlerAIPatrolComponent_GetCurrentPatrolPoint"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_GetCurrentPatrolPoint, ReturnValue) == 0x000000, "Member 'WrestlerAIPatrolComponent_GetCurrentPatrolPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex \ +static_assert(alignof(WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex) == 0x000004, "Wrong alignment on WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex) == 0x000004, "Wrong size on WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex, ReturnValue) == 0x000000, "Member 'WrestlerAIPatrolComponent_GetCurrentPatrolPointIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_GetNextPatrolPoint \ +static_assert(alignof(WrestlerAIPatrolComponent_GetNextPatrolPoint) == 0x000008, "Wrong alignment on WrestlerAIPatrolComponent_GetNextPatrolPoint"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_GetNextPatrolPoint) == 0x000008, "Wrong size on WrestlerAIPatrolComponent_GetNextPatrolPoint"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_GetNextPatrolPoint, ReturnValue) == 0x000000, "Member 'WrestlerAIPatrolComponent_GetNextPatrolPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_GetPatrolRoute \ +static_assert(alignof(WrestlerAIPatrolComponent_GetPatrolRoute) == 0x000008, "Wrong alignment on WrestlerAIPatrolComponent_GetPatrolRoute"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_GetPatrolRoute) == 0x000008, "Wrong size on WrestlerAIPatrolComponent_GetPatrolRoute"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_GetPatrolRoute, ReturnValue) == 0x000000, "Member 'WrestlerAIPatrolComponent_GetPatrolRoute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_SetCurrentPatrolPoint \ +static_assert(alignof(WrestlerAIPatrolComponent_SetCurrentPatrolPoint) == 0x000008, "Wrong alignment on WrestlerAIPatrolComponent_SetCurrentPatrolPoint"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_SetCurrentPatrolPoint) == 0x000008, "Wrong size on WrestlerAIPatrolComponent_SetCurrentPatrolPoint"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_SetCurrentPatrolPoint, PatrolPoint) == 0x000000, "Member 'WrestlerAIPatrolComponent_SetCurrentPatrolPoint::PatrolPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex \ +static_assert(alignof(WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex) == 0x000004, "Wrong alignment on WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex) == 0x000004, "Wrong size on WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex, PatrolPointIndex) == 0x000000, "Member 'WrestlerAIPatrolComponent_SetCurrentPatrolPointIndex::PatrolPointIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPatrolComponent_SetPatrolRoute \ +static_assert(alignof(WrestlerAIPatrolComponent_SetPatrolRoute) == 0x000008, "Wrong alignment on WrestlerAIPatrolComponent_SetPatrolRoute"); \ +static_assert(sizeof(WrestlerAIPatrolComponent_SetPatrolRoute) == 0x000008, "Wrong size on WrestlerAIPatrolComponent_SetPatrolRoute"); \ +static_assert(offsetof(WrestlerAIPatrolComponent_SetPatrolRoute, InPatrolRoute) == 0x000000, "Member 'WrestlerAIPatrolComponent_SetPatrolRoute::InPatrolRoute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIPatrolComponent \ +static_assert(alignof(UWrestlerAIPatrolComponent) == 0x000008, "Wrong alignment on UWrestlerAIPatrolComponent"); \ +static_assert(sizeof(UWrestlerAIPatrolComponent) == 0x0000B8, "Wrong size on UWrestlerAIPatrolComponent"); \ +static_assert(offsetof(UWrestlerAIPatrolComponent, PatrolRoute) == 0x0000A0, "Member 'UWrestlerAIPatrolComponent::PatrolRoute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIPatrolComponent, CurrentPatrolPoint) == 0x0000A8, "Member 'UWrestlerAIPatrolComponent::CurrentPatrolPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAIPerceptionComponent_OnStateTreeTagsAdded \ +static_assert(alignof(WrestlerAIPerceptionComponent_OnStateTreeTagsAdded) == 0x000008, "Wrong alignment on WrestlerAIPerceptionComponent_OnStateTreeTagsAdded"); \ +static_assert(sizeof(WrestlerAIPerceptionComponent_OnStateTreeTagsAdded) == 0x000020, "Wrong size on WrestlerAIPerceptionComponent_OnStateTreeTagsAdded"); \ +static_assert(offsetof(WrestlerAIPerceptionComponent_OnStateTreeTagsAdded, InAddedTags) == 0x000000, "Member 'WrestlerAIPerceptionComponent_OnStateTreeTagsAdded::InAddedTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIPerceptionComponent \ +static_assert(alignof(UWrestlerAIPerceptionComponent) == 0x000008, "Wrong alignment on UWrestlerAIPerceptionComponent"); \ +static_assert(sizeof(UWrestlerAIPerceptionComponent) == 0x000218, "Wrong size on UWrestlerAIPerceptionComponent"); \ +static_assert(offsetof(UWrestlerAIPerceptionComponent, CurrentAwareness) == 0x000190, "Member 'UWrestlerAIPerceptionComponent::CurrentAwareness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIPerceptionComponent, DefaultSenseConfig) == 0x000198, "Member 'UWrestlerAIPerceptionComponent::DefaultSenseConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIPerceptionComponent, PerStateSenseConfig) == 0x0001C0, "Member 'UWrestlerAIPerceptionComponent::PerStateSenseConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAIPerceptionComponent, AIFocus) == 0x000210, "Member 'UWrestlerAIPerceptionComponent::AIFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyTeamAttitudeConfig \ +static_assert(alignof(UWrestlerEnemyTeamAttitudeConfig) == 0x000008, "Wrong alignment on UWrestlerEnemyTeamAttitudeConfig"); \ +static_assert(sizeof(UWrestlerEnemyTeamAttitudeConfig) == 0x000080, "Wrong size on UWrestlerEnemyTeamAttitudeConfig"); \ +static_assert(offsetof(UWrestlerEnemyTeamAttitudeConfig, TeamAttitude) == 0x000030, "Member 'UWrestlerEnemyTeamAttitudeConfig::TeamAttitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPlayerParticleKillVolume \ +static_assert(alignof(AWrestlerPlayerParticleKillVolume) == 0x000008, "Wrong alignment on AWrestlerPlayerParticleKillVolume"); \ +static_assert(sizeof(AWrestlerPlayerParticleKillVolume) == 0x000328, "Wrong size on AWrestlerPlayerParticleKillVolume"); \ +static_assert(offsetof(AWrestlerPlayerParticleKillVolume, bResetOnActivation) == 0x0002D0, "Member 'AWrestlerPlayerParticleKillVolume::bResetOnActivation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerParticleKillVolume, ParticleSystemExclusions) == 0x0002D8, "Member 'AWrestlerPlayerParticleKillVolume::ParticleSystemExclusions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_Attraction \ +static_assert(alignof(UWrestlerAISenseConfig_Attraction) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_Attraction"); \ +static_assert(sizeof(UWrestlerAISenseConfig_Attraction) == 0x000050, "Wrong size on UWrestlerAISenseConfig_Attraction"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Attraction, Implementation) == 0x000048, "Member 'UWrestlerAISenseConfig_Attraction::Implementation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSetEnemyRoutesAutomataTask \ +static_assert(alignof(UWrestlerSetEnemyRoutesAutomataTask) == 0x000008, "Wrong alignment on UWrestlerSetEnemyRoutesAutomataTask"); \ +static_assert(sizeof(UWrestlerSetEnemyRoutesAutomataTask) == 0x0000D8, "Wrong size on UWrestlerSetEnemyRoutesAutomataTask"); \ +static_assert(offsetof(UWrestlerSetEnemyRoutesAutomataTask, EnemyRoutes) == 0x000088, "Member 'UWrestlerSetEnemyRoutesAutomataTask::EnemyRoutes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_CoffinSight \ +static_assert(alignof(UWrestlerAISenseConfig_CoffinSight) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_CoffinSight"); \ +static_assert(sizeof(UWrestlerAISenseConfig_CoffinSight) == 0x0000A0, "Wrong size on UWrestlerAISenseConfig_CoffinSight"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, NearPane) == 0x000058, "Member 'UWrestlerAISenseConfig_CoffinSight::NearPane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, MiddlePane) == 0x000064, "Member 'UWrestlerAISenseConfig_CoffinSight::MiddlePane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, FarPane) == 0x000070, "Member 'UWrestlerAISenseConfig_CoffinSight::FarPane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, AutoSuccessRangeFromLastSeenLocation) == 0x00007C, "Member 'UWrestlerAISenseConfig_CoffinSight::AutoSuccessRangeFromLastSeenLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, PointOfViewBackwardOffset) == 0x000080, "Member 'UWrestlerAISenseConfig_CoffinSight::PointOfViewBackwardOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, NearClippingRadius) == 0x000084, "Member 'UWrestlerAISenseConfig_CoffinSight::NearClippingRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, CoffinDebugColorNearPane) == 0x000088, "Member 'UWrestlerAISenseConfig_CoffinSight::CoffinDebugColorNearPane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, CoffinDebugColorMiddlePane) == 0x00008C, "Member 'UWrestlerAISenseConfig_CoffinSight::CoffinDebugColorMiddlePane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, CoffinDebugColorFarPane) == 0x000090, "Member 'UWrestlerAISenseConfig_CoffinSight::CoffinDebugColorFarPane' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_CoffinSight, SightImplementation) == 0x000098, "Member 'UWrestlerAISenseConfig_CoffinSight::SightImplementation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_Hearing \ +static_assert(alignof(UWrestlerAISenseConfig_Hearing) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_Hearing"); \ +static_assert(sizeof(UWrestlerAISenseConfig_Hearing) == 0x000148, "Wrong size on UWrestlerAISenseConfig_Hearing"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, Implementation) == 0x000048, "Member 'UWrestlerAISenseConfig_Hearing::Implementation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, HearingRange) == 0x000050, "Member 'UWrestlerAISenseConfig_Hearing::HearingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, DetectionByAffiliation) == 0x000054, "Member 'UWrestlerAISenseConfig_Hearing::DetectionByAffiliation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, AttenuationCurve) == 0x000058, "Member 'UWrestlerAISenseConfig_Hearing::AttenuationCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, ListenerTagsToIgnore) == 0x0000F8, "Member 'UWrestlerAISenseConfig_Hearing::ListenerTagsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, SourceTagsToIgnore) == 0x000118, "Member 'UWrestlerAISenseConfig_Hearing::SourceTagsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, NumDebugSpheres) == 0x000138, "Member 'UWrestlerAISenseConfig_Hearing::NumDebugSpheres' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, NumDebugRings) == 0x00013C, "Member 'UWrestlerAISenseConfig_Hearing::NumDebugRings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Hearing, MaxDebugSphereSize) == 0x000140, "Member 'UWrestlerAISenseConfig_Hearing::MaxDebugSphereSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTrespassingVolume_OnActorBeginOverlap \ +static_assert(alignof(WrestlerTrespassingVolume_OnActorBeginOverlap) == 0x000008, "Wrong alignment on WrestlerTrespassingVolume_OnActorBeginOverlap"); \ +static_assert(sizeof(WrestlerTrespassingVolume_OnActorBeginOverlap) == 0x000108, "Wrong size on WrestlerTrespassingVolume_OnActorBeginOverlap"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, OtherActor) == 0x000008, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, OtherComp) == 0x000010, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, bFromSweep) == 0x00001C, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorBeginOverlap, SweepResult) == 0x000020, "Member 'WrestlerTrespassingVolume_OnActorBeginOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTrespassingVolume_OnActorEndOverlap \ +static_assert(alignof(WrestlerTrespassingVolume_OnActorEndOverlap) == 0x000008, "Wrong alignment on WrestlerTrespassingVolume_OnActorEndOverlap"); \ +static_assert(sizeof(WrestlerTrespassingVolume_OnActorEndOverlap) == 0x000020, "Wrong size on WrestlerTrespassingVolume_OnActorEndOverlap"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorEndOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerTrespassingVolume_OnActorEndOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorEndOverlap, OtherActor) == 0x000008, "Member 'WrestlerTrespassingVolume_OnActorEndOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorEndOverlap, OtherComp) == 0x000010, "Member 'WrestlerTrespassingVolume_OnActorEndOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTrespassingVolume_OnActorEndOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerTrespassingVolume_OnActorEndOverlap::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTrespassingVolume_IsTurnedOn \ +static_assert(alignof(WrestlerTrespassingVolume_IsTurnedOn) == 0x000001, "Wrong alignment on WrestlerTrespassingVolume_IsTurnedOn"); \ +static_assert(sizeof(WrestlerTrespassingVolume_IsTurnedOn) == 0x000001, "Wrong size on WrestlerTrespassingVolume_IsTurnedOn"); \ +static_assert(offsetof(WrestlerTrespassingVolume_IsTurnedOn, ReturnValue) == 0x000000, "Member 'WrestlerTrespassingVolume_IsTurnedOn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTrespassingVolume \ +static_assert(alignof(AWrestlerTrespassingVolume) == 0x000008, "Wrong alignment on AWrestlerTrespassingVolume"); \ +static_assert(sizeof(AWrestlerTrespassingVolume) == 0x0002D8, "Wrong size on AWrestlerTrespassingVolume"); \ +static_assert(offsetof(AWrestlerTrespassingVolume, bEnableOnBeginPlay) == 0x0002D0, "Member 'AWrestlerTrespassingVolume::bEnableOnBeginPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseConfig_Repulsion \ +static_assert(alignof(UWrestlerAISenseConfig_Repulsion) == 0x000008, "Wrong alignment on UWrestlerAISenseConfig_Repulsion"); \ +static_assert(sizeof(UWrestlerAISenseConfig_Repulsion) == 0x000050, "Wrong size on UWrestlerAISenseConfig_Repulsion"); \ +static_assert(offsetof(UWrestlerAISenseConfig_Repulsion, Implementation) == 0x000048, "Member 'UWrestlerAISenseConfig_Repulsion::Implementation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISenseEvent \ +static_assert(alignof(UWrestlerAISenseEvent) == 0x000008, "Wrong alignment on UWrestlerAISenseEvent"); \ +static_assert(sizeof(UWrestlerAISenseEvent) == 0x000058, "Wrong size on UWrestlerAISenseEvent"); \ +static_assert(offsetof(UWrestlerAISenseEvent, Event) == 0x000028, "Member 'UWrestlerAISenseEvent::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTeleportTask \ +static_assert(alignof(UWrestlerTeleportTask) == 0x000008, "Wrong alignment on UWrestlerTeleportTask"); \ +static_assert(sizeof(UWrestlerTeleportTask) == 0x000110, "Wrong size on UWrestlerTeleportTask"); \ +static_assert(offsetof(UWrestlerTeleportTask, TeleportMode) == 0x000088, "Member 'UWrestlerTeleportTask::TeleportMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTeleportTask, ActorToTeleport) == 0x000090, "Member 'UWrestlerTeleportTask::ActorToTeleport' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTeleportTask, Target) == 0x0000B8, "Member 'UWrestlerTeleportTask::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTeleportTask, bWaitForStreamingToComplete) == 0x0000E0, "Member 'UWrestlerTeleportTask::bWaitForStreamingToComplete' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTeleportTask, AbilitiesToCancelDuringTeleport) == 0x0000E8, "Member 'UWrestlerTeleportTask::AbilitiesToCancelDuringTeleport' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTeleportTask, TaskCompleteObjective) == 0x000108, "Member 'UWrestlerTeleportTask::TaskCompleteObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISense_Attraction_ReportAttractionEvent \ +static_assert(alignof(WrestlerAISense_Attraction_ReportAttractionEvent) == 0x000008, "Wrong alignment on WrestlerAISense_Attraction_ReportAttractionEvent"); \ +static_assert(sizeof(WrestlerAISense_Attraction_ReportAttractionEvent) == 0x000038, "Wrong size on WrestlerAISense_Attraction_ReportAttractionEvent"); \ +static_assert(offsetof(WrestlerAISense_Attraction_ReportAttractionEvent, WorldContextObject) == 0x000000, "Member 'WrestlerAISense_Attraction_ReportAttractionEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Attraction_ReportAttractionEvent, InAttractionLocation) == 0x000008, "Member 'WrestlerAISense_Attraction_ReportAttractionEvent::InAttractionLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Attraction_ReportAttractionEvent, InEventInstigator) == 0x000020, "Member 'WrestlerAISense_Attraction_ReportAttractionEvent::InEventInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Attraction_ReportAttractionEvent, InReceiver) == 0x000028, "Member 'WrestlerAISense_Attraction_ReportAttractionEvent::InReceiver' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Attraction_ReportAttractionEvent, InTag) == 0x000030, "Member 'WrestlerAISense_Attraction_ReportAttractionEvent::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Attraction \ +static_assert(alignof(UWrestlerAISense_Attraction) == 0x000008, "Wrong alignment on UWrestlerAISense_Attraction"); \ +static_assert(sizeof(UWrestlerAISense_Attraction) == 0x0000E8, "Wrong size on UWrestlerAISense_Attraction"); \ +static_assert(offsetof(UWrestlerAISense_Attraction, AttractionEvents) == 0x000088, "Member 'UWrestlerAISense_Attraction::AttractionEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Hearing \ +static_assert(alignof(UWrestlerAISense_Hearing) == 0x000008, "Wrong alignment on UWrestlerAISense_Hearing"); \ +static_assert(sizeof(UWrestlerAISense_Hearing) == 0x0000E0, "Wrong size on UWrestlerAISense_Hearing"); \ +static_assert(offsetof(UWrestlerAISense_Hearing, NoiseEvents) == 0x0000C8, "Member 'UWrestlerAISense_Hearing::NoiseEvents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAISense_Hearing, SpeedOfSoundSq) == 0x0000D8, "Member 'UWrestlerAISense_Hearing::SpeedOfSoundSq' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISense_Repulsion_ReportRepulsionEvent \ +static_assert(alignof(WrestlerAISense_Repulsion_ReportRepulsionEvent) == 0x000008, "Wrong alignment on WrestlerAISense_Repulsion_ReportRepulsionEvent"); \ +static_assert(sizeof(WrestlerAISense_Repulsion_ReportRepulsionEvent) == 0x000038, "Wrong size on WrestlerAISense_Repulsion_ReportRepulsionEvent"); \ +static_assert(offsetof(WrestlerAISense_Repulsion_ReportRepulsionEvent, WorldContextObject) == 0x000000, "Member 'WrestlerAISense_Repulsion_ReportRepulsionEvent::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Repulsion_ReportRepulsionEvent, InRepulsionLocation) == 0x000008, "Member 'WrestlerAISense_Repulsion_ReportRepulsionEvent::InRepulsionLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Repulsion_ReportRepulsionEvent, InEventInstigator) == 0x000020, "Member 'WrestlerAISense_Repulsion_ReportRepulsionEvent::InEventInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Repulsion_ReportRepulsionEvent, InReceiver) == 0x000028, "Member 'WrestlerAISense_Repulsion_ReportRepulsionEvent::InReceiver' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAISense_Repulsion_ReportRepulsionEvent, InTag) == 0x000030, "Member 'WrestlerAISense_Repulsion_ReportRepulsionEvent::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAISense_Repulsion \ +static_assert(alignof(UWrestlerAISense_Repulsion) == 0x000008, "Wrong alignment on UWrestlerAISense_Repulsion"); \ +static_assert(sizeof(UWrestlerAISense_Repulsion) == 0x0000E8, "Wrong size on UWrestlerAISense_Repulsion"); \ +static_assert(offsetof(UWrestlerAISense_Repulsion, RepulsionEvents) == 0x000088, "Member 'UWrestlerAISense_Repulsion::RepulsionEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISpawner_GetModularCharacterProfile \ +static_assert(alignof(WrestlerAISpawner_GetModularCharacterProfile) == 0x000008, "Wrong alignment on WrestlerAISpawner_GetModularCharacterProfile"); \ +static_assert(sizeof(WrestlerAISpawner_GetModularCharacterProfile) == 0x000028, "Wrong size on WrestlerAISpawner_GetModularCharacterProfile"); \ +static_assert(offsetof(WrestlerAISpawner_GetModularCharacterProfile, ReturnValue) == 0x000000, "Member 'WrestlerAISpawner_GetModularCharacterProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISpawner_SpawnEnemyTypeByName \ +static_assert(alignof(WrestlerAISpawner_SpawnEnemyTypeByName) == 0x000004, "Wrong alignment on WrestlerAISpawner_SpawnEnemyTypeByName"); \ +static_assert(sizeof(WrestlerAISpawner_SpawnEnemyTypeByName) == 0x000008, "Wrong size on WrestlerAISpawner_SpawnEnemyTypeByName"); \ +static_assert(offsetof(WrestlerAISpawner_SpawnEnemyTypeByName, InTypeName) == 0x000000, "Member 'WrestlerAISpawner_SpawnEnemyTypeByName::InTypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAISpawner_ShouldSpawnOnBeginPlay \ +static_assert(alignof(WrestlerAISpawner_ShouldSpawnOnBeginPlay) == 0x000001, "Wrong alignment on WrestlerAISpawner_ShouldSpawnOnBeginPlay"); \ +static_assert(sizeof(WrestlerAISpawner_ShouldSpawnOnBeginPlay) == 0x000001, "Wrong size on WrestlerAISpawner_ShouldSpawnOnBeginPlay"); \ +static_assert(offsetof(WrestlerAISpawner_ShouldSpawnOnBeginPlay, ReturnValue) == 0x000000, "Member 'WrestlerAISpawner_ShouldSpawnOnBeginPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAISpawner \ +static_assert(alignof(AWrestlerAISpawner) == 0x000008, "Wrong alignment on AWrestlerAISpawner"); \ +static_assert(sizeof(AWrestlerAISpawner) == 0x000420, "Wrong size on AWrestlerAISpawner"); \ +static_assert(offsetof(AWrestlerAISpawner, OnEnemyHasSpawned) == 0x000298, "Member 'AWrestlerAISpawner::OnEnemyHasSpawned' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, EnemyTypeName) == 0x0002B0, "Member 'AWrestlerAISpawner::EnemyTypeName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, SpawnData) == 0x0002B8, "Member 'AWrestlerAISpawner::SpawnData' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, ModularCharacterProfile) == 0x000380, "Member 'AWrestlerAISpawner::ModularCharacterProfile' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, bSpawnOnBeginPlay) == 0x0003A8, "Member 'AWrestlerAISpawner::bSpawnOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, OnEnemySpawned) == 0x0003B0, "Member 'AWrestlerAISpawner::OnEnemySpawned' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, bOffsetSpawnedActor) == 0x0003C0, "Member 'AWrestlerAISpawner::bOffsetSpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, WorldPartitionStreamingSourceComponent) == 0x0003C8, "Member 'AWrestlerAISpawner::WorldPartitionStreamingSourceComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, NavigationInvoker) == 0x0003D0, "Member 'AWrestlerAISpawner::NavigationInvoker' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, TagContainerToApply) == 0x0003E0, "Member 'AWrestlerAISpawner::TagContainerToApply' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, SquadIdTag) == 0x000400, "Member 'AWrestlerAISpawner::SquadIdTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAISpawner, bIsLeader) == 0x000408, "Member 'AWrestlerAISpawner::bIsLeader' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeEvaluatorAwareness_DetectionReset \ +static_assert(alignof(WrestlerStateTreeEvaluatorAwareness_DetectionReset) == 0x000008, "Wrong alignment on WrestlerStateTreeEvaluatorAwareness_DetectionReset"); \ +static_assert(sizeof(WrestlerStateTreeEvaluatorAwareness_DetectionReset) == 0x000008, "Wrong size on WrestlerStateTreeEvaluatorAwareness_DetectionReset"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorAwareness_DetectionReset, Character) == 0x000000, "Member 'WrestlerStateTreeEvaluatorAwareness_DetectionReset::Character' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback \ +static_assert(alignof(WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback) == 0x000008, "Wrong alignment on WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback"); \ +static_assert(sizeof(WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback) == 0x000008, "Wrong size on WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback, InPlayerCharacter) == 0x000000, "Member 'WrestlerStateTreeEvaluatorAwareness_OnPlayerVanishedCallback::InPlayerCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation \ +static_assert(alignof(WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation) == 0x000008, "Wrong alignment on WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation"); \ +static_assert(sizeof(WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation) == 0x000010, "Wrong size on WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation, Character) == 0x000000, "Member 'WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation, bInShouldBlock) == 0x000008, "Member 'WrestlerStateTreeEvaluatorAwareness_SetBlockPropagation::bInShouldBlock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorAwareness \ +static_assert(alignof(UWrestlerStateTreeEvaluatorAwareness) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorAwareness"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorAwareness) == 0x000090, "Wrong size on UWrestlerStateTreeEvaluatorAwareness"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, OnLostSightOfPlayerEventTagName) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorAwareness::OnLostSightOfPlayerEventTagName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, OnInstantAlertTriggeredEventTagName) == 0x000050, "Member 'UWrestlerStateTreeEvaluatorAwareness::OnInstantAlertTriggeredEventTagName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, OnPlayerVanishedTagName) == 0x000058, "Member 'UWrestlerStateTreeEvaluatorAwareness::OnPlayerVanishedTagName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, bDetected) == 0x000060, "Member 'UWrestlerStateTreeEvaluatorAwareness::bDetected' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, bAware) == 0x000061, "Member 'UWrestlerStateTreeEvaluatorAwareness::bAware' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, BlockPropagationDuration) == 0x000064, "Member 'UWrestlerStateTreeEvaluatorAwareness::BlockPropagationDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorAwareness, Owner) == 0x000088, "Member 'UWrestlerStateTreeEvaluatorAwareness::Owner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAIStimuliPriorities \ +static_assert(alignof(UWrestlerAIStimuliPriorities) == 0x000008, "Wrong alignment on UWrestlerAIStimuliPriorities"); \ +static_assert(sizeof(UWrestlerAIStimuliPriorities) == 0x000050, "Wrong size on UWrestlerAIStimuliPriorities"); \ +static_assert(offsetof(UWrestlerAIStimuliPriorities, UrgentStimuliTags) == 0x000030, "Member 'UWrestlerAIStimuliPriorities::UrgentStimuliTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimDataAsset_GetMontageByTag \ +static_assert(alignof(AnimDataAsset_GetMontageByTag) == 0x000008, "Wrong alignment on AnimDataAsset_GetMontageByTag"); \ +static_assert(sizeof(AnimDataAsset_GetMontageByTag) == 0x000010, "Wrong size on AnimDataAsset_GetMontageByTag"); \ +static_assert(offsetof(AnimDataAsset_GetMontageByTag, InGameplayTag) == 0x000000, "Member 'AnimDataAsset_GetMontageByTag::InGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AnimDataAsset_GetMontageByTag, ReturnValue) == 0x000008, "Member 'AnimDataAsset_GetMontageByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimDataAsset \ +static_assert(alignof(UAnimDataAsset) == 0x000008, "Wrong alignment on UAnimDataAsset"); \ +static_assert(sizeof(UAnimDataAsset) == 0x000080, "Wrong size on UAnimDataAsset"); \ +static_assert(offsetof(UAnimDataAsset, MontagesByTag) == 0x000030, "Member 'UAnimDataAsset::MontagesByTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAnimNotify \ +static_assert(alignof(UWrestlerAnimNotify) == 0x000008, "Wrong alignment on UWrestlerAnimNotify"); \ +static_assert(sizeof(UWrestlerAnimNotify) == 0x000038, "Wrong size on UWrestlerAnimNotify"); \ + +#define DUMPER7_ASSERTS_WrestlerArachnesKissTrigger_Explode \ +static_assert(alignof(WrestlerArachnesKissTrigger_Explode) == 0x000004, "Wrong alignment on WrestlerArachnesKissTrigger_Explode"); \ +static_assert(sizeof(WrestlerArachnesKissTrigger_Explode) == 0x000004, "Wrong size on WrestlerArachnesKissTrigger_Explode"); \ +static_assert(offsetof(WrestlerArachnesKissTrigger_Explode, InExplosionDelay) == 0x000000, "Member 'WrestlerArachnesKissTrigger_Explode::InExplosionDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerArachnesKissTrigger \ +static_assert(alignof(AWrestlerArachnesKissTrigger) == 0x000008, "Wrong alignment on AWrestlerArachnesKissTrigger"); \ +static_assert(sizeof(AWrestlerArachnesKissTrigger) == 0x000308, "Wrong size on AWrestlerArachnesKissTrigger"); \ +static_assert(offsetof(AWrestlerArachnesKissTrigger, TriggerSphere) == 0x000298, "Member 'AWrestlerArachnesKissTrigger::TriggerSphere' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerArachnesKissTrigger, ExplosionDamageRadius) == 0x0002A0, "Member 'AWrestlerArachnesKissTrigger::ExplosionDamageRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerArachnesKissTrigger, bDebugExplosion) == 0x0002A4, "Member 'AWrestlerArachnesKissTrigger::bDebugExplosion' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerArachnesKissTrigger, GameplayAbility) == 0x0002A8, "Member 'AWrestlerArachnesKissTrigger::GameplayAbility' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerArachnesKissTrigger, ExplosionHitEffectsMap) == 0x0002B0, "Member 'AWrestlerArachnesKissTrigger::ExplosionHitEffectsMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAttributeSet_GetAttributeValuesByAbility \ +static_assert(alignof(WrestlerAttributeSet_GetAttributeValuesByAbility) == 0x000004, "Wrong alignment on WrestlerAttributeSet_GetAttributeValuesByAbility"); \ +static_assert(sizeof(WrestlerAttributeSet_GetAttributeValuesByAbility) == 0x00000C, "Wrong size on WrestlerAttributeSet_GetAttributeValuesByAbility"); \ +static_assert(offsetof(WrestlerAttributeSet_GetAttributeValuesByAbility, InAbilityType) == 0x000000, "Member 'WrestlerAttributeSet_GetAttributeValuesByAbility::InAbilityType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAttributeSet_GetAttributeValuesByAbility, OutCurrentValue) == 0x000004, "Member 'WrestlerAttributeSet_GetAttributeValuesByAbility::OutCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAttributeSet_GetAttributeValuesByAbility, OutMaxValue) == 0x000008, "Member 'WrestlerAttributeSet_GetAttributeValuesByAbility::OutMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAttributeSet_OnMaximumValueChanged \ +static_assert(alignof(WrestlerAttributeSet_OnMaximumValueChanged) == 0x000008, "Wrong alignment on WrestlerAttributeSet_OnMaximumValueChanged"); \ +static_assert(sizeof(WrestlerAttributeSet_OnMaximumValueChanged) == 0x000040, "Wrong size on WrestlerAttributeSet_OnMaximumValueChanged"); \ +static_assert(offsetof(WrestlerAttributeSet_OnMaximumValueChanged, InAffectedAttribute) == 0x000000, "Member 'WrestlerAttributeSet_OnMaximumValueChanged::InAffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAttributeSet_OnMaximumValueChanged, InNewValue) == 0x000038, "Member 'WrestlerAttributeSet_OnMaximumValueChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAttributeSet_SetSprintSpeedAttribute \ +static_assert(alignof(WrestlerAttributeSet_SetSprintSpeedAttribute) == 0x000004, "Wrong alignment on WrestlerAttributeSet_SetSprintSpeedAttribute"); \ +static_assert(sizeof(WrestlerAttributeSet_SetSprintSpeedAttribute) == 0x000004, "Wrong size on WrestlerAttributeSet_SetSprintSpeedAttribute"); \ +static_assert(offsetof(WrestlerAttributeSet_SetSprintSpeedAttribute, Speed) == 0x000000, "Member 'WrestlerAttributeSet_SetSprintSpeedAttribute::Speed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAttributeSet_SetWalkSpeedAttribute \ +static_assert(alignof(WrestlerAttributeSet_SetWalkSpeedAttribute) == 0x000004, "Wrong alignment on WrestlerAttributeSet_SetWalkSpeedAttribute"); \ +static_assert(sizeof(WrestlerAttributeSet_SetWalkSpeedAttribute) == 0x000004, "Wrong size on WrestlerAttributeSet_SetWalkSpeedAttribute"); \ +static_assert(offsetof(WrestlerAttributeSet_SetWalkSpeedAttribute, Speed) == 0x000000, "Member 'WrestlerAttributeSet_SetWalkSpeedAttribute::Speed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAttributeSet \ +static_assert(alignof(UWrestlerAttributeSet) == 0x000008, "Wrong alignment on UWrestlerAttributeSet"); \ +static_assert(sizeof(UWrestlerAttributeSet) == 0x000430, "Wrong size on UWrestlerAttributeSet"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxHealth) == 0x000030, "Member 'UWrestlerAttributeSet::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Health) == 0x000040, "Member 'UWrestlerAttributeSet::Health' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxBlood) == 0x000050, "Member 'UWrestlerAttributeSet::MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Blood) == 0x000060, "Member 'UWrestlerAttributeSet::Blood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Damage) == 0x000070, "Member 'UWrestlerAttributeSet::Damage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, DamageCap) == 0x000080, "Member 'UWrestlerAttributeSet::DamageCap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, AttackPower) == 0x000090, "Member 'UWrestlerAttributeSet::AttackPower' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, CrouchSpeed) == 0x0000A0, "Member 'UWrestlerAttributeSet::CrouchSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, WalkSpeed) == 0x0000B0, "Member 'UWrestlerAttributeSet::WalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, SprintSpeed) == 0x0000C0, "Member 'UWrestlerAttributeSet::SprintSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, SlideMinSpeed) == 0x0000D0, "Member 'UWrestlerAttributeSet::SlideMinSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, AccelerationRate) == 0x0000E0, "Member 'UWrestlerAttributeSet::AccelerationRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, TurnRate) == 0x0000F0, "Member 'UWrestlerAttributeSet::TurnRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, HealthRegenRate) == 0x000100, "Member 'UWrestlerAttributeSet::HealthRegenRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, HealthRegenValue) == 0x000110, "Member 'UWrestlerAttributeSet::HealthRegenValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, HealthFragility) == 0x000120, "Member 'UWrestlerAttributeSet::HealthFragility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Ammo) == 0x000130, "Member 'UWrestlerAttributeSet::Ammo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxAmmo) == 0x000140, "Member 'UWrestlerAttributeSet::MaxAmmo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Shield) == 0x000150, "Member 'UWrestlerAttributeSet::Shield' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxShield) == 0x000160, "Member 'UWrestlerAttributeSet::MaxShield' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, stun) == 0x000170, "Member 'UWrestlerAttributeSet::stun' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxStun) == 0x000180, "Member 'UWrestlerAttributeSet::MaxStun' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunDamage) == 0x000190, "Member 'UWrestlerAttributeSet::StunDamage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunResistance) == 0x0001A0, "Member 'UWrestlerAttributeSet::StunResistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxStunResistance) == 0x0001B0, "Member 'UWrestlerAttributeSet::MaxStunResistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunFragility) == 0x0001C0, "Member 'UWrestlerAttributeSet::StunFragility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunRegenRate) == 0x0001D0, "Member 'UWrestlerAttributeSet::StunRegenRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunRegenValue) == 0x0001E0, "Member 'UWrestlerAttributeSet::StunRegenValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StunThreshold) == 0x0001F0, "Member 'UWrestlerAttributeSet::StunThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, InnerRadius) == 0x000200, "Member 'UWrestlerAttributeSet::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OuterRadius) == 0x000210, "Member 'UWrestlerAttributeSet::OuterRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Exponent) == 0x000220, "Member 'UWrestlerAttributeSet::Exponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Armor) == 0x000230, "Member 'UWrestlerAttributeSet::Armor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxArmor) == 0x000240, "Member 'UWrestlerAttributeSet::MaxArmor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, ArmorDamage) == 0x000250, "Member 'UWrestlerAttributeSet::ArmorDamage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, StrikeAbilityBlood) == 0x000260, "Member 'UWrestlerAttributeSet::StrikeAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxStrikeAbilityBlood) == 0x000270, "Member 'UWrestlerAttributeSet::MaxStrikeAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, RelocateAbilityBlood) == 0x000280, "Member 'UWrestlerAttributeSet::RelocateAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxRelocateAbilityBlood) == 0x000290, "Member 'UWrestlerAttributeSet::MaxRelocateAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MasteryAbilityBlood) == 0x0002A0, "Member 'UWrestlerAttributeSet::MasteryAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxMasteryAbilityBlood) == 0x0002B0, "Member 'UWrestlerAttributeSet::MaxMasteryAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, AffectAbilityBlood) == 0x0002C0, "Member 'UWrestlerAttributeSet::AffectAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, MaxAffectAbilityBlood) == 0x0002D0, "Member 'UWrestlerAttributeSet::MaxAffectAbilityBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, Noticeability) == 0x0002E0, "Member 'UWrestlerAttributeSet::Noticeability' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnHealthChanged) == 0x0002F0, "Member 'UWrestlerAttributeSet::OnHealthChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnBloodChanged) == 0x000300, "Member 'UWrestlerAttributeSet::OnBloodChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnShieldChanged) == 0x000310, "Member 'UWrestlerAttributeSet::OnShieldChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnStunChanged) == 0x000320, "Member 'UWrestlerAttributeSet::OnStunChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnStunFragilityChanged) == 0x000330, "Member 'UWrestlerAttributeSet::OnStunFragilityChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnArmorChanged) == 0x000340, "Member 'UWrestlerAttributeSet::OnArmorChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnStrikeAbilityBloodChanged) == 0x000350, "Member 'UWrestlerAttributeSet::OnStrikeAbilityBloodChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnRelocateAbilityBloodChanged) == 0x000360, "Member 'UWrestlerAttributeSet::OnRelocateAbilityBloodChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnMasteryAbilityBloodChanged) == 0x000370, "Member 'UWrestlerAttributeSet::OnMasteryAbilityBloodChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnAffectAbilityBloodChanged) == 0x000380, "Member 'UWrestlerAttributeSet::OnAffectAbilityBloodChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnMaximumValueChangedEvent) == 0x000390, "Member 'UWrestlerAttributeSet::OnMaximumValueChangedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnDamaged) == 0x0003A0, "Member 'UWrestlerAttributeSet::OnDamaged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnWalkSpeedChanged) == 0x0003B0, "Member 'UWrestlerAttributeSet::OnWalkSpeedChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnSprintSpeedChanged) == 0x0003C0, "Member 'UWrestlerAttributeSet::OnSprintSpeedChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnCrouchSpeedChanged) == 0x0003D0, "Member 'UWrestlerAttributeSet::OnCrouchSpeedChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnSlideMinSpeedChanged) == 0x0003E0, "Member 'UWrestlerAttributeSet::OnSlideMinSpeedChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnStunDamaged) == 0x0003F0, "Member 'UWrestlerAttributeSet::OnStunDamaged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnArmorDamaged) == 0x000400, "Member 'UWrestlerAttributeSet::OnArmorDamaged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnAccelerationRateChanged) == 0x000410, "Member 'UWrestlerAttributeSet::OnAccelerationRateChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAttributeSet, OnTurnRateChanged) == 0x000420, "Member 'UWrestlerAttributeSet::OnTurnRateChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAttributeWidget_GetAttributeSet \ +static_assert(alignof(WrestlerAttributeWidget_GetAttributeSet) == 0x000008, "Wrong alignment on WrestlerAttributeWidget_GetAttributeSet"); \ +static_assert(sizeof(WrestlerAttributeWidget_GetAttributeSet) == 0x000008, "Wrong size on WrestlerAttributeWidget_GetAttributeSet"); \ +static_assert(offsetof(WrestlerAttributeWidget_GetAttributeSet, ReturnValue) == 0x000000, "Member 'WrestlerAttributeWidget_GetAttributeSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAttributeWidget \ +static_assert(alignof(UWrestlerAttributeWidget) == 0x000008, "Wrong alignment on UWrestlerAttributeWidget"); \ +static_assert(sizeof(UWrestlerAttributeWidget) == 0x0002C8, "Wrong size on UWrestlerAttributeWidget"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters \ +static_assert(alignof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters) == 0x000008, "Wrong alignment on WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters"); \ +static_assert(sizeof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters) == 0x000080, "Wrong size on WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, InTraceStart) == 0x000000, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::InTraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, InTraceEnd) == 0x000018, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::InTraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, InIgnoredActor) == 0x000030, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::InIgnoredActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, OutParams) == 0x000038, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::OutParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, OutExecBranches) == 0x000070, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters, InWorldContextObject) == 0x000078, "Member 'WrestlerAudioBlueprintFunctionLibrary_GetSurfaceParameters::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAudioBlueprintFunctionLibrary \ +static_assert(alignof(UWrestlerAudioBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerAudioBlueprintFunctionLibrary"); \ +static_assert(sizeof(UWrestlerAudioBlueprintFunctionLibrary) == 0x000028, "Wrong size on UWrestlerAudioBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGLayout \ +static_assert(alignof(UWrestlerRPGLayout) == 0x000008, "Wrong alignment on UWrestlerRPGLayout"); \ +static_assert(sizeof(UWrestlerRPGLayout) == 0x0004D0, "Wrong size on UWrestlerRPGLayout"); \ +static_assert(offsetof(UWrestlerRPGLayout, IncreaseInputActionData) == 0x000470, "Member 'UWrestlerRPGLayout::IncreaseInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGLayout, DecreaseInputActionData) == 0x000488, "Member 'UWrestlerRPGLayout::DecreaseInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGLayout, PIEBackInputActionData) == 0x0004A0, "Member 'UWrestlerRPGLayout::PIEBackInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGLayout, AltBackInputActionData) == 0x0004B8, "Member 'UWrestlerRPGLayout::AltBackInputActionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAudioDebugSettings \ +static_assert(alignof(UWrestlerAudioDebugSettings) == 0x000008, "Wrong alignment on UWrestlerAudioDebugSettings"); \ +static_assert(sizeof(UWrestlerAudioDebugSettings) == 0x0000B0, "Wrong size on UWrestlerAudioDebugSettings"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceQueryDebugFlags) == 0x000048, "Member 'UWrestlerAudioDebugSettings::SurfaceQueryDebugFlags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceDebugDrawDuration) == 0x00004C, "Member 'UWrestlerAudioDebugSettings::SurfaceDebugDrawDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceLineThickness) == 0x000050, "Member 'UWrestlerAudioDebugSettings::SurfaceLineThickness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceLocationRadius) == 0x000054, "Member 'UWrestlerAudioDebugSettings::SurfaceLocationRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceTextFontSize) == 0x000058, "Member 'UWrestlerAudioDebugSettings::SurfaceTextFontSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceTextColour) == 0x00005C, "Member 'UWrestlerAudioDebugSettings::SurfaceTextColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceLineTraceColour) == 0x00006C, "Member 'UWrestlerAudioDebugSettings::SurfaceLineTraceColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceBaseColour) == 0x00007C, "Member 'UWrestlerAudioDebugSettings::SurfaceBaseColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceCoverColour) == 0x00008C, "Member 'UWrestlerAudioDebugSettings::SurfaceCoverColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioDebugSettings, SurfaceNotFoundColour) == 0x00009C, "Member 'UWrestlerAudioDebugSettings::SurfaceNotFoundColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAudioDiegeticMusicSpline \ +static_assert(alignof(AWrestlerAudioDiegeticMusicSpline) == 0x000008, "Wrong alignment on AWrestlerAudioDiegeticMusicSpline"); \ +static_assert(sizeof(AWrestlerAudioDiegeticMusicSpline) == 0x000298, "Wrong size on AWrestlerAudioDiegeticMusicSpline"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged \ +static_assert(alignof(WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged) == 0x000001, "Wrong alignment on WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged"); \ +static_assert(sizeof(WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged) == 0x000001, "Wrong size on WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged"); \ +static_assert(offsetof(WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged, bPlayerInsideVolume) == 0x000000, "Member 'WrestlerAudioFoliageVolume_OnPlayerInsideVolumeChanged::bPlayerInsideVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerAudioFoliageVolume \ +static_assert(alignof(AWrestlerAudioFoliageVolume) == 0x000008, "Wrong alignment on AWrestlerAudioFoliageVolume"); \ +static_assert(sizeof(AWrestlerAudioFoliageVolume) == 0x0002D0, "Wrong size on AWrestlerAudioFoliageVolume"); \ +static_assert(offsetof(AWrestlerAudioFoliageVolume, VolumeComponent) == 0x000298, "Member 'AWrestlerAudioFoliageVolume::VolumeComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioFoliageVolume, DefaultVolume) == 0x0002A0, "Member 'AWrestlerAudioFoliageVolume::DefaultVolume' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioFoliageVolume, FoliageLoopEvent) == 0x0002A8, "Member 'AWrestlerAudioFoliageVolume::FoliageLoopEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerAudioFoliageVolume, FoliageStopEvent) == 0x0002B0, "Member 'AWrestlerAudioFoliageVolume::FoliageStopEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_BeginTrackingActor \ +static_assert(alignof(WrestlerSplineProgressComponent_BeginTrackingActor) == 0x000008, "Wrong alignment on WrestlerSplineProgressComponent_BeginTrackingActor"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_BeginTrackingActor) == 0x000008, "Wrong size on WrestlerSplineProgressComponent_BeginTrackingActor"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_BeginTrackingActor, InActor) == 0x000000, "Member 'WrestlerSplineProgressComponent_BeginTrackingActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_GetClosestLocationOnSpline \ +static_assert(alignof(WrestlerSplineProgressComponent_GetClosestLocationOnSpline) == 0x000008, "Wrong alignment on WrestlerSplineProgressComponent_GetClosestLocationOnSpline"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_GetClosestLocationOnSpline) == 0x000018, "Wrong size on WrestlerSplineProgressComponent_GetClosestLocationOnSpline"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_GetClosestLocationOnSpline, ReturnValue) == 0x000000, "Member 'WrestlerSplineProgressComponent_GetClosestLocationOnSpline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_GetFurthestLocation \ +static_assert(alignof(WrestlerSplineProgressComponent_GetFurthestLocation) == 0x000008, "Wrong alignment on WrestlerSplineProgressComponent_GetFurthestLocation"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_GetFurthestLocation) == 0x000018, "Wrong size on WrestlerSplineProgressComponent_GetFurthestLocation"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_GetFurthestLocation, ReturnValue) == 0x000000, "Member 'WrestlerSplineProgressComponent_GetFurthestLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_GetProgress \ +static_assert(alignof(WrestlerSplineProgressComponent_GetProgress) == 0x000004, "Wrong alignment on WrestlerSplineProgressComponent_GetProgress"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_GetProgress) == 0x000004, "Wrong size on WrestlerSplineProgressComponent_GetProgress"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_GetProgress, ReturnValue) == 0x000000, "Member 'WrestlerSplineProgressComponent_GetProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_GetProgressNormalised \ +static_assert(alignof(WrestlerSplineProgressComponent_GetProgressNormalised) == 0x000004, "Wrong alignment on WrestlerSplineProgressComponent_GetProgressNormalised"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_GetProgressNormalised) == 0x000004, "Wrong size on WrestlerSplineProgressComponent_GetProgressNormalised"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_GetProgressNormalised, ReturnValue) == 0x000000, "Member 'WrestlerSplineProgressComponent_GetProgressNormalised::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_SetProgress \ +static_assert(alignof(WrestlerSplineProgressComponent_SetProgress) == 0x000004, "Wrong alignment on WrestlerSplineProgressComponent_SetProgress"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_SetProgress) == 0x000004, "Wrong size on WrestlerSplineProgressComponent_SetProgress"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_SetProgress, InProgress) == 0x000000, "Member 'WrestlerSplineProgressComponent_SetProgress::InProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSplineProgressComponent_SetProgressNormalised \ +static_assert(alignof(WrestlerSplineProgressComponent_SetProgressNormalised) == 0x000004, "Wrong alignment on WrestlerSplineProgressComponent_SetProgressNormalised"); \ +static_assert(sizeof(WrestlerSplineProgressComponent_SetProgressNormalised) == 0x000004, "Wrong size on WrestlerSplineProgressComponent_SetProgressNormalised"); \ +static_assert(offsetof(WrestlerSplineProgressComponent_SetProgressNormalised, InProgress) == 0x000000, "Member 'WrestlerSplineProgressComponent_SetProgressNormalised::InProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSplineProgressComponent \ +static_assert(alignof(UWrestlerSplineProgressComponent) == 0x000008, "Wrong alignment on UWrestlerSplineProgressComponent"); \ +static_assert(sizeof(UWrestlerSplineProgressComponent) == 0x000108, "Wrong size on UWrestlerSplineProgressComponent"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, TrackingDistance) == 0x0000A0, "Member 'UWrestlerSplineProgressComponent::TrackingDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, MinDistForPeriodicTracking) == 0x0000A4, "Member 'UWrestlerSplineProgressComponent::MinDistForPeriodicTracking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, MaxDistForPeriodicTracking) == 0x0000A8, "Member 'UWrestlerSplineProgressComponent::MaxDistForPeriodicTracking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, MaxTestingPeriod) == 0x0000AC, "Member 'UWrestlerSplineProgressComponent::MaxTestingPeriod' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, MinTestingPeriod) == 0x0000B0, "Member 'UWrestlerSplineProgressComponent::MinTestingPeriod' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, Leading) == 0x0000B4, "Member 'UWrestlerSplineProgressComponent::Leading' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, TrackedActor) == 0x0000B8, "Member 'UWrestlerSplineProgressComponent::TrackedActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSplineProgressComponent, Spline) == 0x0000C0, "Member 'UWrestlerSplineProgressComponent::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAudioSettings \ +static_assert(alignof(UWrestlerAudioSettings) == 0x000008, "Wrong alignment on UWrestlerAudioSettings"); \ +static_assert(sizeof(UWrestlerAudioSettings) == 0x0000A8, "Wrong size on UWrestlerAudioSettings"); \ +static_assert(offsetof(UWrestlerAudioSettings, LoadingStartedState) == 0x000048, "Member 'UWrestlerAudioSettings::LoadingStartedState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSettings, LoadingFinishedState) == 0x000070, "Member 'UWrestlerAudioSettings::LoadingFinishedState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSettings, SurfaceTypeDrySnow) == 0x000098, "Member 'UWrestlerAudioSettings::SurfaceTypeDrySnow' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSettings, SurfaceTypeWetSnow) == 0x000099, "Member 'UWrestlerAudioSettings::SurfaceTypeWetSnow' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSettings, RVTSnowWetnessThreshold) == 0x00009C, "Member 'UWrestlerAudioSettings::RVTSnowWetnessThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAudioSettings, BuildUpSnowAmount) == 0x0000A0, "Member 'UWrestlerAudioSettings::BuildUpSnowAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioStatics_AudioImpactFromGameplayCue \ +static_assert(alignof(WrestlerAudioStatics_AudioImpactFromGameplayCue) == 0x000008, "Wrong alignment on WrestlerAudioStatics_AudioImpactFromGameplayCue"); \ +static_assert(sizeof(WrestlerAudioStatics_AudioImpactFromGameplayCue) == 0x000208, "Wrong size on WrestlerAudioStatics_AudioImpactFromGameplayCue"); \ +static_assert(offsetof(WrestlerAudioStatics_AudioImpactFromGameplayCue, CueParams) == 0x000000, "Member 'WrestlerAudioStatics_AudioImpactFromGameplayCue::CueParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioStatics_AudioImpactFromGameplayCue, Impact) == 0x0000D8, "Member 'WrestlerAudioStatics_AudioImpactFromGameplayCue::Impact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAudioStatics_GetAudioSetup \ +static_assert(alignof(WrestlerAudioStatics_GetAudioSetup) == 0x000008, "Wrong alignment on WrestlerAudioStatics_GetAudioSetup"); \ +static_assert(sizeof(WrestlerAudioStatics_GetAudioSetup) == 0x000010, "Wrong size on WrestlerAudioStatics_GetAudioSetup"); \ +static_assert(offsetof(WrestlerAudioStatics_GetAudioSetup, InWorldContextObject) == 0x000000, "Member 'WrestlerAudioStatics_GetAudioSetup::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAudioStatics_GetAudioSetup, ReturnValue) == 0x000008, "Member 'WrestlerAudioStatics_GetAudioSetup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAudioStatics \ +static_assert(alignof(UWrestlerAudioStatics) == 0x000008, "Wrong alignment on UWrestlerAudioStatics"); \ +static_assert(sizeof(UWrestlerAudioStatics) == 0x000028, "Wrong size on UWrestlerAudioStatics"); \ + +#define DUMPER7_ASSERTS_AWrestlerPerformanceTestActor \ +static_assert(alignof(AWrestlerPerformanceTestActor) == 0x000008, "Wrong alignment on AWrestlerPerformanceTestActor"); \ +static_assert(sizeof(AWrestlerPerformanceTestActor) == 0x0004D8, "Wrong size on AWrestlerPerformanceTestActor"); \ +static_assert(offsetof(AWrestlerPerformanceTestActor, CameraType) == 0x000450, "Member 'AWrestlerPerformanceTestActor::CameraType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataCancelGameplayAbilityClass \ +static_assert(alignof(UWrestlerAutomataCancelGameplayAbilityClass) == 0x000008, "Wrong alignment on UWrestlerAutomataCancelGameplayAbilityClass"); \ +static_assert(sizeof(UWrestlerAutomataCancelGameplayAbilityClass) == 0x0000A0, "Wrong size on UWrestlerAutomataCancelGameplayAbilityClass"); \ +static_assert(offsetof(UWrestlerAutomataCancelGameplayAbilityClass, ControlAbility) == 0x000078, "Member 'UWrestlerAutomataCancelGameplayAbilityClass::ControlAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionOwnerHasTag \ +static_assert(alignof(UWrestlerStateTreeConditionOwnerHasTag) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionOwnerHasTag"); \ +static_assert(sizeof(UWrestlerStateTreeConditionOwnerHasTag) == 0x000058, "Wrong size on UWrestlerStateTreeConditionOwnerHasTag"); \ +static_assert(offsetof(UWrestlerStateTreeConditionOwnerHasTag, bInvert) == 0x000048, "Member 'UWrestlerStateTreeConditionOwnerHasTag::bInvert' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConditionOwnerHasTag, HasExactTag) == 0x00004C, "Member 'UWrestlerStateTreeConditionOwnerHasTag::HasExactTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataCancelGameplayAbilityTag \ +static_assert(alignof(UWrestlerAutomataCancelGameplayAbilityTag) == 0x000008, "Wrong alignment on UWrestlerAutomataCancelGameplayAbilityTag"); \ +static_assert(sizeof(UWrestlerAutomataCancelGameplayAbilityTag) == 0x000080, "Wrong size on UWrestlerAutomataCancelGameplayAbilityTag"); \ +static_assert(offsetof(UWrestlerAutomataCancelGameplayAbilityTag, ControlAbilityTag) == 0x000078, "Member 'UWrestlerAutomataCancelGameplayAbilityTag::ControlAbilityTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataCombatGraphPause \ +static_assert(alignof(UWrestlerAutomataCombatGraphPause) == 0x000008, "Wrong alignment on UWrestlerAutomataCombatGraphPause"); \ +static_assert(sizeof(UWrestlerAutomataCombatGraphPause) == 0x000090, "Wrong size on UWrestlerAutomataCombatGraphPause"); \ +static_assert(offsetof(UWrestlerAutomataCombatGraphPause, bShouldPause) == 0x000088, "Member 'UWrestlerAutomataCombatGraphPause::bShouldPause' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSpawnEnemyTypesAutomataTask \ +static_assert(alignof(UWrestlerSpawnEnemyTypesAutomataTask) == 0x000008, "Wrong alignment on UWrestlerSpawnEnemyTypesAutomataTask"); \ +static_assert(sizeof(UWrestlerSpawnEnemyTypesAutomataTask) == 0x0000D8, "Wrong size on UWrestlerSpawnEnemyTypesAutomataTask"); \ +static_assert(offsetof(UWrestlerSpawnEnemyTypesAutomataTask, SpawnEnemyCharacters) == 0x000088, "Member 'UWrestlerSpawnEnemyTypesAutomataTask::SpawnEnemyCharacters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataGameplayAbilityClass \ +static_assert(alignof(UWrestlerAutomataGameplayAbilityClass) == 0x000008, "Wrong alignment on UWrestlerAutomataGameplayAbilityClass"); \ +static_assert(sizeof(UWrestlerAutomataGameplayAbilityClass) == 0x0000B8, "Wrong size on UWrestlerAutomataGameplayAbilityClass"); \ +static_assert(offsetof(UWrestlerAutomataGameplayAbilityClass, ControlAbility) == 0x000088, "Member 'UWrestlerAutomataGameplayAbilityClass::ControlAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAutomataGameplayAbilityClass, bUseAbilityEnd) == 0x0000B0, "Member 'UWrestlerAutomataGameplayAbilityClass::bUseAbilityEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad \ +static_assert(alignof(WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad) == 0x000008, "Wrong alignment on WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad"); \ +static_assert(sizeof(WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad) == 0x000028, "Wrong size on WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad"); \ +static_assert(offsetof(WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad, ReturnValue) == 0x000000, "Member 'WrestlerUISettings_GetPlayerDLCCharacterPropertyToLoad::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad \ +static_assert(alignof(WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad) == 0x000004, "Wrong alignment on WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad"); \ +static_assert(sizeof(WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad) == 0x000008, "Wrong size on WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad"); \ +static_assert(offsetof(WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad, InPlayerTag) == 0x000000, "Member 'WrestlerUISettings_SetDLCPlayerCharacterPropertyToLoad::InPlayerTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUISettings \ +static_assert(alignof(UWrestlerUISettings) == 0x000008, "Wrong alignment on UWrestlerUISettings"); \ +static_assert(sizeof(UWrestlerUISettings) == 0x0002E8, "Wrong size on UWrestlerUISettings"); \ +static_assert(offsetof(UWrestlerUISettings, SubtitlesSize) == 0x000038, "Member 'UWrestlerUISettings::SubtitlesSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, bIsLasombraDLC_Debug) == 0x000060, "Member 'UWrestlerUISettings::bIsLasombraDLC_Debug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, bIsToreadorDLC_Debug) == 0x000061, "Member 'UWrestlerUISettings::bIsToreadorDLC_Debug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, ControlsIconDataTable) == 0x000068, "Member 'UWrestlerUISettings::ControlsIconDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, AbilityTreeDataTable) == 0x000090, "Member 'UWrestlerUISettings::AbilityTreeDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, AcquiredAbilitiesList) == 0x0000B8, "Member 'UWrestlerUISettings::AcquiredAbilitiesList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, AvailableAbilitiesList) == 0x0000E0, "Member 'UWrestlerUISettings::AvailableAbilitiesList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, CharacterCostumesList) == 0x000108, "Member 'UWrestlerUISettings::CharacterCostumesList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, CodexStoryInfo) == 0x000130, "Member 'UWrestlerUISettings::CodexStoryInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, MenuUILocalizationDataTable) == 0x000158, "Member 'UWrestlerUISettings::MenuUILocalizationDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, HUDUILocalizationDataTable) == 0x000180, "Member 'UWrestlerUISettings::HUDUILocalizationDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, AbilitiesUILocalizationDataTable) == 0x0001A8, "Member 'UWrestlerUISettings::AbilitiesUILocalizationDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, InteractionUILocalizationDataTable) == 0x0001D0, "Member 'UWrestlerUISettings::InteractionUILocalizationDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, TrainersUnlocked) == 0x0001F8, "Member 'UWrestlerUISettings::TrainersUnlocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, CodexUnlockedInDialogue) == 0x000220, "Member 'UWrestlerUISettings::CodexUnlockedInDialogue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, IconLookupTable) == 0x000248, "Member 'UWrestlerUISettings::IconLookupTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, VideoLoadingScreen_Debug) == 0x000270, "Member 'UWrestlerUISettings::VideoLoadingScreen_Debug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, TDLCHalloweenUnlocked) == 0x000298, "Member 'UWrestlerUISettings::TDLCHalloweenUnlocked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISettings, DLCPlayerCharacterPropertyToLoad) == 0x0002C0, "Member 'UWrestlerUISettings::DLCPlayerCharacterPropertyToLoad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataGameplayAbilityTag \ +static_assert(alignof(UWrestlerAutomataGameplayAbilityTag) == 0x000008, "Wrong alignment on UWrestlerAutomataGameplayAbilityTag"); \ +static_assert(sizeof(UWrestlerAutomataGameplayAbilityTag) == 0x000098, "Wrong size on UWrestlerAutomataGameplayAbilityTag"); \ +static_assert(offsetof(UWrestlerAutomataGameplayAbilityTag, ControlAbilityTag) == 0x000088, "Member 'UWrestlerAutomataGameplayAbilityTag::ControlAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAutomataGameplayAbilityTag, bUseAbilityEnd) == 0x000090, "Member 'UWrestlerAutomataGameplayAbilityTag::bUseAbilityEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAutomataProcessControlCue \ +static_assert(alignof(UWrestlerAutomataProcessControlCue) == 0x000008, "Wrong alignment on UWrestlerAutomataProcessControlCue"); \ +static_assert(sizeof(UWrestlerAutomataProcessControlCue) == 0x000088, "Wrong size on UWrestlerAutomataProcessControlCue"); \ +static_assert(offsetof(UWrestlerAutomataProcessControlCue, ControlCue) == 0x000078, "Member 'UWrestlerAutomataProcessControlCue::ControlCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAutomataProcessControlCue, UpdateAutomatas) == 0x000080, "Member 'UWrestlerAutomataProcessControlCue::UpdateAutomatas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAwarenessTargetPicker \ +static_assert(alignof(UWrestlerAwarenessTargetPicker) == 0x000008, "Wrong alignment on UWrestlerAwarenessTargetPicker"); \ +static_assert(sizeof(UWrestlerAwarenessTargetPicker) == 0x000128, "Wrong size on UWrestlerAwarenessTargetPicker"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, OnBecomeAware) == 0x000028, "Member 'UWrestlerAwarenessTargetPicker::OnBecomeAware' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, OnNotAware) == 0x000038, "Member 'UWrestlerAwarenessTargetPicker::OnNotAware' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, OnStartDetecting) == 0x000048, "Member 'UWrestlerAwarenessTargetPicker::OnStartDetecting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, OnNotDetecting) == 0x000058, "Member 'UWrestlerAwarenessTargetPicker::OnNotDetecting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, Owner) == 0x000068, "Member 'UWrestlerAwarenessTargetPicker::Owner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, DetectedActors) == 0x000070, "Member 'UWrestlerAwarenessTargetPicker::DetectedActors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, AwareActors) == 0x0000C0, "Member 'UWrestlerAwarenessTargetPicker::AwareActors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, CurrentTarget) == 0x000110, "Member 'UWrestlerAwarenessTargetPicker::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, OverrideTarget) == 0x000118, "Member 'UWrestlerAwarenessTargetPicker::OverrideTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAwarenessTargetPicker, Config) == 0x000120, "Member 'UWrestlerAwarenessTargetPicker::Config' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBaseGameplayWidget \ +static_assert(alignof(UWrestlerBaseGameplayWidget) == 0x000008, "Wrong alignment on UWrestlerBaseGameplayWidget"); \ +static_assert(sizeof(UWrestlerBaseGameplayWidget) == 0x0002C8, "Wrong size on UWrestlerBaseGameplayWidget"); \ + +#define DUMPER7_ASSERTS_WrestlerTaggedObjectInterface_OnGameplayTagAdded \ +static_assert(alignof(WrestlerTaggedObjectInterface_OnGameplayTagAdded) == 0x000004, "Wrong alignment on WrestlerTaggedObjectInterface_OnGameplayTagAdded"); \ +static_assert(sizeof(WrestlerTaggedObjectInterface_OnGameplayTagAdded) == 0x000008, "Wrong size on WrestlerTaggedObjectInterface_OnGameplayTagAdded"); \ +static_assert(offsetof(WrestlerTaggedObjectInterface_OnGameplayTagAdded, InTag) == 0x000000, "Member 'WrestlerTaggedObjectInterface_OnGameplayTagAdded::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaggedObjectInterface_OnGameplayTagRemoved \ +static_assert(alignof(WrestlerTaggedObjectInterface_OnGameplayTagRemoved) == 0x000004, "Wrong alignment on WrestlerTaggedObjectInterface_OnGameplayTagRemoved"); \ +static_assert(sizeof(WrestlerTaggedObjectInterface_OnGameplayTagRemoved) == 0x000008, "Wrong size on WrestlerTaggedObjectInterface_OnGameplayTagRemoved"); \ +static_assert(offsetof(WrestlerTaggedObjectInterface_OnGameplayTagRemoved, InTag) == 0x000000, "Member 'WrestlerTaggedObjectInterface_OnGameplayTagRemoved::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaggedObjectInterface_OnTagAdded \ +static_assert(alignof(WrestlerTaggedObjectInterface_OnTagAdded) == 0x000008, "Wrong alignment on WrestlerTaggedObjectInterface_OnTagAdded"); \ +static_assert(sizeof(WrestlerTaggedObjectInterface_OnTagAdded) == 0x000010, "Wrong size on WrestlerTaggedObjectInterface_OnTagAdded"); \ +static_assert(offsetof(WrestlerTaggedObjectInterface_OnTagAdded, InTag) == 0x000000, "Member 'WrestlerTaggedObjectInterface_OnTagAdded::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaggedObjectInterface_OnTagRemoved \ +static_assert(alignof(WrestlerTaggedObjectInterface_OnTagRemoved) == 0x000008, "Wrong alignment on WrestlerTaggedObjectInterface_OnTagRemoved"); \ +static_assert(sizeof(WrestlerTaggedObjectInterface_OnTagRemoved) == 0x000010, "Wrong size on WrestlerTaggedObjectInterface_OnTagRemoved"); \ +static_assert(offsetof(WrestlerTaggedObjectInterface_OnTagRemoved, InTag) == 0x000000, "Member 'WrestlerTaggedObjectInterface_OnTagRemoved::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerTaggedObjectInterface \ +static_assert(alignof(IWrestlerTaggedObjectInterface) == 0x000001, "Wrong alignment on IWrestlerTaggedObjectInterface"); \ +static_assert(sizeof(IWrestlerTaggedObjectInterface) == 0x000001, "Wrong size on IWrestlerTaggedObjectInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerBloodResonanceComponent \ +static_assert(alignof(UWrestlerBloodResonanceComponent) == 0x000008, "Wrong alignment on UWrestlerBloodResonanceComponent"); \ +static_assert(sizeof(UWrestlerBloodResonanceComponent) == 0x0000C0, "Wrong size on UWrestlerBloodResonanceComponent"); \ +static_assert(offsetof(UWrestlerBloodResonanceComponent, SanguineTag) == 0x0000A4, "Member 'UWrestlerBloodResonanceComponent::SanguineTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceComponent, CholericTag) == 0x0000AC, "Member 'UWrestlerBloodResonanceComponent::CholericTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBloodResonanceComponent, MelancholicTag) == 0x0000B4, "Member 'UWrestlerBloodResonanceComponent::MelancholicTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBoundActionButton \ +static_assert(alignof(UWrestlerBoundActionButton) == 0x000010, "Wrong alignment on UWrestlerBoundActionButton"); \ +static_assert(sizeof(UWrestlerBoundActionButton) == 0x0015B0, "Wrong size on UWrestlerBoundActionButton"); \ +static_assert(offsetof(UWrestlerBoundActionButton, KeyboardStyle) == 0x001598, "Member 'UWrestlerBoundActionButton::KeyboardStyle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBoundActionButton, GamepadStyle) == 0x0015A0, "Member 'UWrestlerBoundActionButton::GamepadStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBrightnessSliderWidget_SetUIDisplayGamma \ +static_assert(alignof(WrestlerBrightnessSliderWidget_SetUIDisplayGamma) == 0x000004, "Wrong alignment on WrestlerBrightnessSliderWidget_SetUIDisplayGamma"); \ +static_assert(sizeof(WrestlerBrightnessSliderWidget_SetUIDisplayGamma) == 0x000004, "Wrong size on WrestlerBrightnessSliderWidget_SetUIDisplayGamma"); \ +static_assert(offsetof(WrestlerBrightnessSliderWidget_SetUIDisplayGamma, InValue) == 0x000000, "Member 'WrestlerBrightnessSliderWidget_SetUIDisplayGamma::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBrightnessSliderWidget \ +static_assert(alignof(UWrestlerBrightnessSliderWidget) == 0x000008, "Wrong alignment on UWrestlerBrightnessSliderWidget"); \ +static_assert(sizeof(UWrestlerBrightnessSliderWidget) == 0x000370, "Wrong size on UWrestlerBrightnessSliderWidget"); \ +static_assert(offsetof(UWrestlerBrightnessSliderWidget, SettingSlider) == 0x000368, "Member 'UWrestlerBrightnessSliderWidget::SettingSlider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingAction_SafeZoneEditor \ +static_assert(alignof(UWrestlerSettingAction_SafeZoneEditor) == 0x000008, "Wrong alignment on UWrestlerSettingAction_SafeZoneEditor"); \ +static_assert(sizeof(UWrestlerSettingAction_SafeZoneEditor) == 0x0001E0, "Wrong size on UWrestlerSettingAction_SafeZoneEditor"); \ +static_assert(offsetof(UWrestlerSettingAction_SafeZoneEditor, SafeZoneValueSetting) == 0x0001D8, "Member 'UWrestlerSettingAction_SafeZoneEditor::SafeZoneValueSetting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_CVar \ +static_assert(alignof(UWrestlerBTDecorator_CVar) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_CVar"); \ +static_assert(sizeof(UWrestlerBTDecorator_CVar) == 0x000078, "Wrong size on UWrestlerBTDecorator_CVar"); \ +static_assert(offsetof(UWrestlerBTDecorator_CVar, CVarName) == 0x000068, "Member 'UWrestlerBTDecorator_CVar::CVarName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPairedSmartObjectGeneratorProcessor \ +static_assert(alignof(UWrestlerMassPairedSmartObjectGeneratorProcessor) == 0x000010, "Wrong alignment on UWrestlerMassPairedSmartObjectGeneratorProcessor"); \ +static_assert(sizeof(UWrestlerMassPairedSmartObjectGeneratorProcessor) == 0x0003B0, "Wrong size on UWrestlerMassPairedSmartObjectGeneratorProcessor"); \ +static_assert(offsetof(UWrestlerMassPairedSmartObjectGeneratorProcessor, FirstPedType) == 0x000360, "Member 'UWrestlerMassPairedSmartObjectGeneratorProcessor::FirstPedType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_PatrolRouteAvailable \ +static_assert(alignof(UWrestlerBTDecorator_PatrolRouteAvailable) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_PatrolRouteAvailable"); \ +static_assert(sizeof(UWrestlerBTDecorator_PatrolRouteAvailable) == 0x0000B8, "Wrong size on UWrestlerBTDecorator_PatrolRouteAvailable"); \ +static_assert(offsetof(UWrestlerBTDecorator_PatrolRouteAvailable, PatrolPoint) == 0x000090, "Member 'UWrestlerBTDecorator_PatrolRouteAvailable::PatrolPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_Mass \ +static_assert(alignof(UWrestlerEnvQueryContext_Mass) == 0x000008, "Wrong alignment on UWrestlerEnvQueryContext_Mass"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_Mass) == 0x000028, "Wrong size on UWrestlerEnvQueryContext_Mass"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_MassLastKnownPosition \ +static_assert(alignof(UWrestlerEnvQueryContext_MassLastKnownPosition) == 0x000008, "Wrong alignment on UWrestlerEnvQueryContext_MassLastKnownPosition"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_MassLastKnownPosition) == 0x000028, "Wrong size on UWrestlerEnvQueryContext_MassLastKnownPosition"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_SearchRouteAvailable \ +static_assert(alignof(UWrestlerBTDecorator_SearchRouteAvailable) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_SearchRouteAvailable"); \ +static_assert(sizeof(UWrestlerBTDecorator_SearchRouteAvailable) == 0x0000C0, "Wrong size on UWrestlerBTDecorator_SearchRouteAvailable"); \ +static_assert(offsetof(UWrestlerBTDecorator_SearchRouteAvailable, SearchesLeftKey) == 0x000090, "Member 'UWrestlerBTDecorator_SearchRouteAvailable::SearchesLeftKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTDecorator_SearchRouteAvailable, Radius) == 0x0000B8, "Member 'UWrestlerBTDecorator_SearchRouteAvailable::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTDecorator_ShouldInvestigateStimulus \ +static_assert(alignof(UWrestlerBTDecorator_ShouldInvestigateStimulus) == 0x000008, "Wrong alignment on UWrestlerBTDecorator_ShouldInvestigateStimulus"); \ +static_assert(sizeof(UWrestlerBTDecorator_ShouldInvestigateStimulus) == 0x000090, "Wrong size on UWrestlerBTDecorator_ShouldInvestigateStimulus"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_Throwable \ +static_assert(alignof(UWrestlerDataAsset_Throwable) == 0x000008, "Wrong alignment on UWrestlerDataAsset_Throwable"); \ +static_assert(sizeof(UWrestlerDataAsset_Throwable) == 0x000048, "Wrong size on UWrestlerDataAsset_Throwable"); \ +static_assert(offsetof(UWrestlerDataAsset_Throwable, Damage) == 0x000030, "Member 'UWrestlerDataAsset_Throwable::Damage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_Throwable, StaggerMultiplier) == 0x000034, "Member 'UWrestlerDataAsset_Throwable::StaggerMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_Throwable, StraightThrowDistance) == 0x000038, "Member 'UWrestlerDataAsset_Throwable::StraightThrowDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_Throwable, AudioStimulusRange) == 0x00003C, "Member 'UWrestlerDataAsset_Throwable::AudioStimulusRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_Throwable, SmashFX) == 0x000040, "Member 'UWrestlerDataAsset_Throwable::SmashFX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_AttributeComparison \ +static_assert(alignof(UWrestlerBTD_AttributeComparison) == 0x000008, "Wrong alignment on UWrestlerBTD_AttributeComparison"); \ +static_assert(sizeof(UWrestlerBTD_AttributeComparison) == 0x0000E8, "Wrong size on UWrestlerBTD_AttributeComparison"); \ +static_assert(offsetof(UWrestlerBTD_AttributeComparison, AttributeToCompare) == 0x000068, "Member 'UWrestlerBTD_AttributeComparison::AttributeToCompare' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_AttributeComparison, ComparisonMethod) == 0x0000A0, "Member 'UWrestlerBTD_AttributeComparison::ComparisonMethod' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_AttributeComparison, OtherAttribute) == 0x0000A8, "Member 'UWrestlerBTD_AttributeComparison::OtherAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_AttributeComparison, OtherValue) == 0x0000E0, "Member 'UWrestlerBTD_AttributeComparison::OtherValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_CloseToEnemies \ +static_assert(alignof(UWrestlerBTD_CloseToEnemies) == 0x000008, "Wrong alignment on UWrestlerBTD_CloseToEnemies"); \ +static_assert(sizeof(UWrestlerBTD_CloseToEnemies) == 0x000070, "Wrong size on UWrestlerBTD_CloseToEnemies"); \ +static_assert(offsetof(UWrestlerBTD_CloseToEnemies, DistanceThreshold) == 0x000068, "Member 'UWrestlerBTD_CloseToEnemies::DistanceThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryItem_InfluenceMapNodes \ +static_assert(alignof(UWrestlerEnvQueryItem_InfluenceMapNodes) == 0x000008, "Wrong alignment on UWrestlerEnvQueryItem_InfluenceMapNodes"); \ +static_assert(sizeof(UWrestlerEnvQueryItem_InfluenceMapNodes) == 0x000030, "Wrong size on UWrestlerEnvQueryItem_InfluenceMapNodes"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_IsAtLocation \ +static_assert(alignof(UWrestlerBTD_IsAtLocation) == 0x000008, "Wrong alignment on UWrestlerBTD_IsAtLocation"); \ +static_assert(sizeof(UWrestlerBTD_IsAtLocation) == 0x000108, "Wrong size on UWrestlerBTD_IsAtLocation"); \ +static_assert(offsetof(UWrestlerBTD_IsAtLocation, BBKeyDistance) == 0x0000D8, "Member 'UWrestlerBTD_IsAtLocation::BBKeyDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_IsAtLocation, WaitingDistanceMin) == 0x000100, "Member 'UWrestlerBTD_IsAtLocation::WaitingDistanceMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_IsAtLocation, WaitingDistanceMax) == 0x000104, "Member 'UWrestlerBTD_IsAtLocation::WaitingDistanceMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_ShouldChasePlayerInHostile \ +static_assert(alignof(UWrestlerBTD_ShouldChasePlayerInHostile) == 0x000008, "Wrong alignment on UWrestlerBTD_ShouldChasePlayerInHostile"); \ +static_assert(sizeof(UWrestlerBTD_ShouldChasePlayerInHostile) == 0x000068, "Wrong size on UWrestlerBTD_ShouldChasePlayerInHostile"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_ShouldCheckNoise \ +static_assert(alignof(UWrestlerBTD_ShouldCheckNoise) == 0x000008, "Wrong alignment on UWrestlerBTD_ShouldCheckNoise"); \ +static_assert(sizeof(UWrestlerBTD_ShouldCheckNoise) == 0x000090, "Wrong size on UWrestlerBTD_ShouldCheckNoise"); \ +static_assert(offsetof(UWrestlerBTD_ShouldCheckNoise, MoveToLocation) == 0x000068, "Member 'UWrestlerBTD_ShouldCheckNoise::MoveToLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTD_SwapEnemyType \ +static_assert(alignof(UWrestlerBTD_SwapEnemyType) == 0x000008, "Wrong alignment on UWrestlerBTD_SwapEnemyType"); \ +static_assert(sizeof(UWrestlerBTD_SwapEnemyType) == 0x000098, "Wrong size on UWrestlerBTD_SwapEnemyType"); \ +static_assert(offsetof(UWrestlerBTD_SwapEnemyType, BBKeyTargetActor) == 0x000068, "Member 'UWrestlerBTD_SwapEnemyType::BBKeyTargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTD_SwapEnemyType, SwappingThreshold) == 0x000090, "Member 'UWrestlerBTD_SwapEnemyType::SwappingThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_PlayerSpeedOverride \ +static_assert(alignof(UWrestlerDataAsset_PlayerSpeedOverride) == 0x000008, "Wrong alignment on UWrestlerDataAsset_PlayerSpeedOverride"); \ +static_assert(sizeof(UWrestlerDataAsset_PlayerSpeedOverride) == 0x000040, "Wrong size on UWrestlerDataAsset_PlayerSpeedOverride"); \ +static_assert(offsetof(UWrestlerDataAsset_PlayerSpeedOverride, Duration) == 0x000030, "Member 'UWrestlerDataAsset_PlayerSpeedOverride::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_PlayerSpeedOverride, MovementSpeed) == 0x000034, "Member 'UWrestlerDataAsset_PlayerSpeedOverride::MovementSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_PlayerSpeedOverride, SprintSpeed) == 0x000038, "Member 'UWrestlerDataAsset_PlayerSpeedOverride::SprintSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_ControlRotations \ +static_assert(alignof(UWrestlerBTService_ControlRotations) == 0x000008, "Wrong alignment on UWrestlerBTService_ControlRotations"); \ +static_assert(sizeof(UWrestlerBTService_ControlRotations) == 0x0000D0, "Wrong size on UWrestlerBTService_ControlRotations"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, ExcludedEnemyTypes) == 0x000098, "Member 'UWrestlerBTService_ControlRotations::ExcludedEnemyTypes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, TurningMontageTag) == 0x0000A8, "Member 'UWrestlerBTService_ControlRotations::TurningMontageTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, MontageSpeed) == 0x0000B0, "Member 'UWrestlerBTService_ControlRotations::MontageSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, RotationInterpolationSpeed) == 0x0000B4, "Member 'UWrestlerBTService_ControlRotations::RotationInterpolationSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, OriginalMaxWalkSpeed) == 0x0000B8, "Member 'UWrestlerBTService_ControlRotations::OriginalMaxWalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, MovingMinDegreesMontage) == 0x0000BC, "Member 'UWrestlerBTService_ControlRotations::MovingMinDegreesMontage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_ControlRotations, IdleMinDegreesMontage) == 0x0000C0, "Member 'UWrestlerBTService_ControlRotations::IdleMinDegreesMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPCollectable_IsCollectable \ +static_assert(alignof(WrestlerXPCollectable_IsCollectable) == 0x000001, "Wrong alignment on WrestlerXPCollectable_IsCollectable"); \ +static_assert(sizeof(WrestlerXPCollectable_IsCollectable) == 0x000001, "Wrong size on WrestlerXPCollectable_IsCollectable"); \ +static_assert(offsetof(WrestlerXPCollectable_IsCollectable, ReturnValue) == 0x000000, "Member 'WrestlerXPCollectable_IsCollectable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerXPCollectable \ +static_assert(alignof(AWrestlerXPCollectable) == 0x000008, "Wrong alignment on AWrestlerXPCollectable"); \ +static_assert(sizeof(AWrestlerXPCollectable) == 0x0002A8, "Wrong size on AWrestlerXPCollectable"); \ +static_assert(offsetof(AWrestlerXPCollectable, XPCollectableType) == 0x000298, "Member 'AWrestlerXPCollectable::XPCollectableType' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerXPCollectable, Collected) == 0x0002A0, "Member 'AWrestlerXPCollectable::Collected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_GameplayFocus \ +static_assert(alignof(UWrestlerBTService_GameplayFocus) == 0x000008, "Wrong alignment on UWrestlerBTService_GameplayFocus"); \ +static_assert(sizeof(UWrestlerBTService_GameplayFocus) == 0x0000A0, "Wrong size on UWrestlerBTService_GameplayFocus"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZone_GetEQGPoints \ +static_assert(alignof(WrestlerDefendZone_GetEQGPoints) == 0x000008, "Wrong alignment on WrestlerDefendZone_GetEQGPoints"); \ +static_assert(sizeof(WrestlerDefendZone_GetEQGPoints) == 0x000030, "Wrong size on WrestlerDefendZone_GetEQGPoints"); \ +static_assert(offsetof(WrestlerDefendZone_GetEQGPoints, InLocation) == 0x000000, "Member 'WrestlerDefendZone_GetEQGPoints::InLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_GetEQGPoints, InQueryRange) == 0x000018, "Member 'WrestlerDefendZone_GetEQGPoints::InQueryRange' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_GetEQGPoints, ReturnValue) == 0x000020, "Member 'WrestlerDefendZone_GetEQGPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZone_GetPoints \ +static_assert(alignof(WrestlerDefendZone_GetPoints) == 0x000008, "Wrong alignment on WrestlerDefendZone_GetPoints"); \ +static_assert(sizeof(WrestlerDefendZone_GetPoints) == 0x000010, "Wrong size on WrestlerDefendZone_GetPoints"); \ +static_assert(offsetof(WrestlerDefendZone_GetPoints, ReturnValue) == 0x000000, "Member 'WrestlerDefendZone_GetPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZone_IsInQueryResponseRange \ +static_assert(alignof(WrestlerDefendZone_IsInQueryResponseRange) == 0x000008, "Wrong alignment on WrestlerDefendZone_IsInQueryResponseRange"); \ +static_assert(sizeof(WrestlerDefendZone_IsInQueryResponseRange) == 0x000020, "Wrong size on WrestlerDefendZone_IsInQueryResponseRange"); \ +static_assert(offsetof(WrestlerDefendZone_IsInQueryResponseRange, Vector) == 0x000000, "Member 'WrestlerDefendZone_IsInQueryResponseRange::Vector' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_IsInQueryResponseRange, ReturnValue) == 0x000018, "Member 'WrestlerDefendZone_IsInQueryResponseRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZone_IsPointInsideZone \ +static_assert(alignof(WrestlerDefendZone_IsPointInsideZone) == 0x000008, "Wrong alignment on WrestlerDefendZone_IsPointInsideZone"); \ +static_assert(sizeof(WrestlerDefendZone_IsPointInsideZone) == 0x000020, "Wrong size on WrestlerDefendZone_IsPointInsideZone"); \ +static_assert(offsetof(WrestlerDefendZone_IsPointInsideZone, Point) == 0x000000, "Member 'WrestlerDefendZone_IsPointInsideZone::Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_IsPointInsideZone, ExtentMultiplier) == 0x000018, "Member 'WrestlerDefendZone_IsPointInsideZone::ExtentMultiplier' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_IsPointInsideZone, IncludeHysteresis) == 0x00001C, "Member 'WrestlerDefendZone_IsPointInsideZone::IncludeHysteresis' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZone_IsPointInsideZone, ReturnValue) == 0x00001D, "Member 'WrestlerDefendZone_IsPointInsideZone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDefendZone \ +static_assert(alignof(AWrestlerDefendZone) == 0x000008, "Wrong alignment on AWrestlerDefendZone"); \ +static_assert(sizeof(AWrestlerDefendZone) == 0x0002B0, "Wrong size on AWrestlerDefendZone"); \ +static_assert(offsetof(AWrestlerDefendZone, AcceptablePointCount) == 0x000298, "Member 'AWrestlerDefendZone::AcceptablePointCount' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDefendZone, Points) == 0x0002A0, "Member 'AWrestlerDefendZone::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_RangedRotateToTarget \ +static_assert(alignof(UWrestlerBTService_RangedRotateToTarget) == 0x000008, "Wrong alignment on UWrestlerBTService_RangedRotateToTarget"); \ +static_assert(sizeof(UWrestlerBTService_RangedRotateToTarget) == 0x0000F0, "Wrong size on UWrestlerBTService_RangedRotateToTarget"); \ +static_assert(offsetof(UWrestlerBTService_RangedRotateToTarget, AimAtTarget) == 0x000098, "Member 'UWrestlerBTService_RangedRotateToTarget::AimAtTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_RangedRotateToTarget, CurrentAimLocation) == 0x0000C0, "Member 'UWrestlerBTService_RangedRotateToTarget::CurrentAimLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_RangedRotateToTarget, CurrentAimRotation) == 0x0000D8, "Member 'UWrestlerBTService_RangedRotateToTarget::CurrentAimRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_TrackSeenActorByTagLocation \ +static_assert(alignof(UWrestlerBTService_TrackSeenActorByTagLocation) == 0x000008, "Wrong alignment on UWrestlerBTService_TrackSeenActorByTagLocation"); \ +static_assert(sizeof(UWrestlerBTService_TrackSeenActorByTagLocation) == 0x0000A0, "Wrong size on UWrestlerBTService_TrackSeenActorByTagLocation"); \ +static_assert(offsetof(UWrestlerBTService_TrackSeenActorByTagLocation, DeadBodyTag) == 0x000098, "Member 'UWrestlerBTService_TrackSeenActorByTagLocation::DeadBodyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassReservedSmartObjectTrait \ +static_assert(alignof(UWrestlerMassReservedSmartObjectTrait) == 0x000008, "Wrong alignment on UWrestlerMassReservedSmartObjectTrait"); \ +static_assert(sizeof(UWrestlerMassReservedSmartObjectTrait) == 0x000030, "Wrong size on UWrestlerMassReservedSmartObjectTrait"); \ +static_assert(offsetof(UWrestlerMassReservedSmartObjectTrait, MinTimeBetweenPairedSmartObjectSpawns) == 0x000028, "Member 'UWrestlerMassReservedSmartObjectTrait::MinTimeBetweenPairedSmartObjectSpawns' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDeadBodyIdentifier \ +static_assert(alignof(UWrestlerDeadBodyIdentifier) == 0x000008, "Wrong alignment on UWrestlerDeadBodyIdentifier"); \ +static_assert(sizeof(UWrestlerDeadBodyIdentifier) == 0x000030, "Wrong size on UWrestlerDeadBodyIdentifier"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_TrackStimulusLocation \ +static_assert(alignof(UWrestlerBTService_TrackStimulusLocation) == 0x000008, "Wrong alignment on UWrestlerBTService_TrackStimulusLocation"); \ +static_assert(sizeof(UWrestlerBTService_TrackStimulusLocation) == 0x000098, "Wrong size on UWrestlerBTService_TrackStimulusLocation"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTaskBase \ +static_assert(alignof(UWrestlerStateTreeTaskBase) == 0x000008, "Wrong alignment on UWrestlerStateTreeTaskBase"); \ +static_assert(sizeof(UWrestlerStateTreeTaskBase) == 0x000048, "Wrong size on UWrestlerStateTreeTaskBase"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_ReturnToken \ +static_assert(alignof(UWrestlerStateTreeTask_ReturnToken) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_ReturnToken"); \ +static_assert(sizeof(UWrestlerStateTreeTask_ReturnToken) == 0x000048, "Wrong size on UWrestlerStateTreeTask_ReturnToken"); \ + +#define DUMPER7_ASSERTS_WrestlerBTService_UpdateTarget_UpdatePriorityActor \ +static_assert(alignof(WrestlerBTService_UpdateTarget_UpdatePriorityActor) == 0x000008, "Wrong alignment on WrestlerBTService_UpdateTarget_UpdatePriorityActor"); \ +static_assert(sizeof(WrestlerBTService_UpdateTarget_UpdatePriorityActor) == 0x000010, "Wrong size on WrestlerBTService_UpdateTarget_UpdatePriorityActor"); \ +static_assert(offsetof(WrestlerBTService_UpdateTarget_UpdatePriorityActor, OwnerComp) == 0x000000, "Member 'WrestlerBTService_UpdateTarget_UpdatePriorityActor::OwnerComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBTService_UpdateTarget_UpdatePriorityActor, InController) == 0x000008, "Member 'WrestlerBTService_UpdateTarget_UpdatePriorityActor::InController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_UpdateTarget \ +static_assert(alignof(UWrestlerBTService_UpdateTarget) == 0x000008, "Wrong alignment on UWrestlerBTService_UpdateTarget"); \ +static_assert(sizeof(UWrestlerBTService_UpdateTarget) == 0x000200, "Wrong size on UWrestlerBTService_UpdateTarget"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, bCheckLOS) == 0x000070, "Member 'UWrestlerBTService_UpdateTarget::bCheckLOS' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, bCheckPath) == 0x000071, "Member 'UWrestlerBTService_UpdateTarget::bCheckPath' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, bCheckSpaceClear) == 0x000072, "Member 'UWrestlerBTService_UpdateTarget::bCheckSpaceClear' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, BentPathTolerance) == 0x000074, "Member 'UWrestlerBTService_UpdateTarget::BentPathTolerance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, QueryChannel) == 0x000078, "Member 'UWrestlerBTService_UpdateTarget::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, BoxTraceHalfSize) == 0x000080, "Member 'UWrestlerBTService_UpdateTarget::BoxTraceHalfSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, PriorityActor) == 0x000098, "Member 'UWrestlerBTService_UpdateTarget::PriorityActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, SelfActor) == 0x0000C0, "Member 'UWrestlerBTService_UpdateTarget::SelfActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, HasLOS) == 0x0000E8, "Member 'UWrestlerBTService_UpdateTarget::HasLOS' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, HasPathToTarget) == 0x000110, "Member 'UWrestlerBTService_UpdateTarget::HasPathToTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, IsPathStraight) == 0x000138, "Member 'UWrestlerBTService_UpdateTarget::IsPathStraight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, TimeSincePathLost) == 0x000160, "Member 'UWrestlerBTService_UpdateTarget::TimeSincePathLost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, HasSpaceClear) == 0x000188, "Member 'UWrestlerBTService_UpdateTarget::HasSpaceClear' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, OptimalRangedDistance) == 0x0001B0, "Member 'UWrestlerBTService_UpdateTarget::OptimalRangedDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, PriorityActorRef) == 0x0001E0, "Member 'UWrestlerBTService_UpdateTarget::PriorityActorRef' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTService_UpdateTarget, SelfActorRef) == 0x0001E8, "Member 'UWrestlerBTService_UpdateTarget::SelfActorRef' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent \ +static_assert(alignof(WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent) == 0x000008, "Wrong alignment on WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent"); \ +static_assert(sizeof(WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent) == 0x000010, "Wrong size on WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent"); \ +static_assert(offsetof(WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent, InParticipantActor) == 0x000000, "Member 'WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent::InParticipantActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent, InEndPlayReason) == 0x000008, "Member 'WrestlerDataAsset_ModularEnemyTasks_UnregisterTaskOverrideForAgent::InEndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_ModularEnemyTasks \ +static_assert(alignof(UWrestlerDataAsset_ModularEnemyTasks) == 0x000008, "Wrong alignment on UWrestlerDataAsset_ModularEnemyTasks"); \ +static_assert(sizeof(UWrestlerDataAsset_ModularEnemyTasks) == 0x0000D0, "Wrong size on UWrestlerDataAsset_ModularEnemyTasks"); \ +static_assert(offsetof(UWrestlerDataAsset_ModularEnemyTasks, EnemyTasks) == 0x000030, "Member 'UWrestlerDataAsset_ModularEnemyTasks::EnemyTasks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_ModularEnemyTasks, TaskOverrides) == 0x000080, "Member 'UWrestlerDataAsset_ModularEnemyTasks::TaskOverrides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMissionSubSystemProxy \ +static_assert(alignof(AWrestlerMissionSubSystemProxy) == 0x000008, "Wrong alignment on AWrestlerMissionSubSystemProxy"); \ +static_assert(sizeof(AWrestlerMissionSubSystemProxy) == 0x0002B8, "Wrong size on AWrestlerMissionSubSystemProxy"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTService_UpdateToken \ +static_assert(alignof(UWrestlerBTService_UpdateToken) == 0x000008, "Wrong alignment on UWrestlerBTService_UpdateToken"); \ +static_assert(sizeof(UWrestlerBTService_UpdateToken) == 0x000098, "Wrong size on UWrestlerBTService_UpdateToken"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_DebugDrawText \ +static_assert(alignof(UWrestlerBTTask_DebugDrawText) == 0x000008, "Wrong alignment on UWrestlerBTTask_DebugDrawText"); \ +static_assert(sizeof(UWrestlerBTTask_DebugDrawText) == 0x0000A8, "Wrong size on UWrestlerBTTask_DebugDrawText"); \ +static_assert(offsetof(UWrestlerBTTask_DebugDrawText, DebugString) == 0x000078, "Member 'UWrestlerBTTask_DebugDrawText::DebugString' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DebugDrawText, DebugStringColor) == 0x000088, "Member 'UWrestlerBTTask_DebugDrawText::DebugStringColor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DebugDrawText, TextOffsetFromPawnCenter) == 0x000090, "Member 'UWrestlerBTTask_DebugDrawText::TextOffsetFromPawnCenter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassLODForceProcessor \ +static_assert(alignof(UWrestlerMassLODForceProcessor) == 0x000008, "Wrong alignment on UWrestlerMassLODForceProcessor"); \ +static_assert(sizeof(UWrestlerMassLODForceProcessor) == 0x000DE0, "Wrong size on UWrestlerMassLODForceProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerDebugSettings_GetCheatMenuWidget \ +static_assert(alignof(WrestlerDebugSettings_GetCheatMenuWidget) == 0x000008, "Wrong alignment on WrestlerDebugSettings_GetCheatMenuWidget"); \ +static_assert(sizeof(WrestlerDebugSettings_GetCheatMenuWidget) == 0x000028, "Wrong size on WrestlerDebugSettings_GetCheatMenuWidget"); \ +static_assert(offsetof(WrestlerDebugSettings_GetCheatMenuWidget, ReturnValue) == 0x000000, "Member 'WrestlerDebugSettings_GetCheatMenuWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDebugSettings_GetPropertyWidget \ +static_assert(alignof(WrestlerDebugSettings_GetPropertyWidget) == 0x000008, "Wrong alignment on WrestlerDebugSettings_GetPropertyWidget"); \ +static_assert(sizeof(WrestlerDebugSettings_GetPropertyWidget) == 0x000028, "Wrong size on WrestlerDebugSettings_GetPropertyWidget"); \ +static_assert(offsetof(WrestlerDebugSettings_GetPropertyWidget, ReturnValue) == 0x000000, "Member 'WrestlerDebugSettings_GetPropertyWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDebugSettings \ +static_assert(alignof(UWrestlerDebugSettings) == 0x000008, "Wrong alignment on UWrestlerDebugSettings"); \ +static_assert(sizeof(UWrestlerDebugSettings) == 0x000088, "Wrong size on UWrestlerDebugSettings"); \ +static_assert(offsetof(UWrestlerDebugSettings, CheatMenuWidget) == 0x000038, "Member 'UWrestlerDebugSettings::CheatMenuWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDebugSettings, PropertyWidget) == 0x000060, "Member 'UWrestlerDebugSettings::PropertyWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_Despawn \ +static_assert(alignof(UWrestlerBTTask_Despawn) == 0x000008, "Wrong alignment on UWrestlerBTTask_Despawn"); \ +static_assert(sizeof(UWrestlerBTTask_Despawn) == 0x000070, "Wrong size on UWrestlerBTTask_Despawn"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_TargetSpeed \ +static_assert(alignof(UWrestlerTaskScore_TargetSpeed) == 0x000008, "Wrong alignment on UWrestlerTaskScore_TargetSpeed"); \ +static_assert(sizeof(UWrestlerTaskScore_TargetSpeed) == 0x000038, "Wrong size on UWrestlerTaskScore_TargetSpeed"); \ +static_assert(offsetof(UWrestlerTaskScore_TargetSpeed, MinSpeed) == 0x000030, "Member 'UWrestlerTaskScore_TargetSpeed::MinSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_DrawDebugSphereBBEntry \ +static_assert(alignof(UWrestlerBTTask_DrawDebugSphereBBEntry) == 0x000008, "Wrong alignment on UWrestlerBTTask_DrawDebugSphereBBEntry"); \ +static_assert(sizeof(UWrestlerBTTask_DrawDebugSphereBBEntry) == 0x0000B0, "Wrong size on UWrestlerBTTask_DrawDebugSphereBBEntry"); \ +static_assert(offsetof(UWrestlerBTTask_DrawDebugSphereBBEntry, BBKey) == 0x000070, "Member 'UWrestlerBTTask_DrawDebugSphereBBEntry::BBKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DrawDebugSphereBBEntry, Lifetime) == 0x000098, "Member 'UWrestlerBTTask_DrawDebugSphereBBEntry::Lifetime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DrawDebugSphereBBEntry, Radius) == 0x00009C, "Member 'UWrestlerBTTask_DrawDebugSphereBBEntry::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DrawDebugSphereBBEntry, Segments) == 0x0000A0, "Member 'UWrestlerBTTask_DrawDebugSphereBBEntry::Segments' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_DrawDebugSphereBBEntry, Color) == 0x0000A4, "Member 'UWrestlerBTTask_DrawDebugSphereBBEntry::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueRig_OnStartDialogueInteraction \ +static_assert(alignof(WrestlerDialogueRig_OnStartDialogueInteraction) == 0x000008, "Wrong alignment on WrestlerDialogueRig_OnStartDialogueInteraction"); \ +static_assert(sizeof(WrestlerDialogueRig_OnStartDialogueInteraction) == 0x000008, "Wrong size on WrestlerDialogueRig_OnStartDialogueInteraction"); \ +static_assert(offsetof(WrestlerDialogueRig_OnStartDialogueInteraction, InInteractingActor) == 0x000000, "Member 'WrestlerDialogueRig_OnStartDialogueInteraction::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueRig_SetInteractionPropertyPayload \ +static_assert(alignof(WrestlerDialogueRig_SetInteractionPropertyPayload) == 0x000001, "Wrong alignment on WrestlerDialogueRig_SetInteractionPropertyPayload"); \ +static_assert(sizeof(WrestlerDialogueRig_SetInteractionPropertyPayload) == 0x000001, "Wrong size on WrestlerDialogueRig_SetInteractionPropertyPayload"); \ +static_assert(offsetof(WrestlerDialogueRig_SetInteractionPropertyPayload, bIsActive) == 0x000000, "Member 'WrestlerDialogueRig_SetInteractionPropertyPayload::bIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDialogueRig \ +static_assert(alignof(AWrestlerDialogueRig) == 0x000008, "Wrong alignment on AWrestlerDialogueRig"); \ +static_assert(sizeof(AWrestlerDialogueRig) == 0x000460, "Wrong size on AWrestlerDialogueRig"); \ +static_assert(offsetof(AWrestlerDialogueRig, MissionObjective) == 0x0003F0, "Member 'AWrestlerDialogueRig::MissionObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueRig, DialogueAbilityData) == 0x0003F8, "Member 'AWrestlerDialogueRig::DialogueAbilityData' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueRig, InteractionProperty) == 0x000400, "Member 'AWrestlerDialogueRig::InteractionProperty' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueRig, MissionActorComponent) == 0x000428, "Member 'AWrestlerDialogueRig::MissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueRig, StartDialogueInteraction) == 0x000430, "Member 'AWrestlerDialogueRig::StartDialogueInteraction' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueRig, OwnedGameplayTags) == 0x000438, "Member 'AWrestlerDialogueRig::OwnedGameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherReceiverComponent_UpdateWeather \ +static_assert(alignof(WrestlerWeatherReceiverComponent_UpdateWeather) == 0x000008, "Wrong alignment on WrestlerWeatherReceiverComponent_UpdateWeather"); \ +static_assert(sizeof(WrestlerWeatherReceiverComponent_UpdateWeather) == 0x000038, "Wrong size on WrestlerWeatherReceiverComponent_UpdateWeather"); \ +static_assert(offsetof(WrestlerWeatherReceiverComponent_UpdateWeather, InParameters) == 0x000000, "Member 'WrestlerWeatherReceiverComponent_UpdateWeather::InParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters \ +static_assert(alignof(WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters) == 0x000008, "Wrong alignment on WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters"); \ +static_assert(sizeof(WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters) == 0x000038, "Wrong size on WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters"); \ +static_assert(offsetof(WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters, ReturnValue) == 0x000000, "Member 'WrestlerWeatherReceiverComponent_GetCurrentWeatherParameters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherReceiverComponent \ +static_assert(alignof(UWrestlerWeatherReceiverComponent) == 0x000010, "Wrong alignment on UWrestlerWeatherReceiverComponent"); \ +static_assert(sizeof(UWrestlerWeatherReceiverComponent) == 0x0002E0, "Wrong size on UWrestlerWeatherReceiverComponent"); \ +static_assert(offsetof(UWrestlerWeatherReceiverComponent, CurrentWeatherParameters) == 0x0002A0, "Member 'UWrestlerWeatherReceiverComponent::CurrentWeatherParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherRecvNiagaraComp \ +static_assert(alignof(UWrestlerWeatherRecvNiagaraComp) == 0x000010, "Wrong alignment on UWrestlerWeatherRecvNiagaraComp"); \ +static_assert(sizeof(UWrestlerWeatherRecvNiagaraComp) == 0x0002F0, "Wrong size on UWrestlerWeatherRecvNiagaraComp"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_EnableAimOffsets \ +static_assert(alignof(UWrestlerBTTask_EnableAimOffsets) == 0x000008, "Wrong alignment on UWrestlerBTTask_EnableAimOffsets"); \ +static_assert(sizeof(UWrestlerBTTask_EnableAimOffsets) == 0x000078, "Wrong size on UWrestlerBTTask_EnableAimOffsets"); \ +static_assert(offsetof(UWrestlerBTTask_EnableAimOffsets, Duration) == 0x000070, "Member 'UWrestlerBTTask_EnableAimOffsets::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_EnableAimOffsets, RandomDeviation) == 0x000074, "Member 'UWrestlerBTTask_EnableAimOffsets::RandomDeviation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_EndSearch \ +static_assert(alignof(UWrestlerBTTask_EndSearch) == 0x000008, "Wrong alignment on UWrestlerBTTask_EndSearch"); \ +static_assert(sizeof(UWrestlerBTTask_EndSearch) == 0x000078, "Wrong size on UWrestlerBTTask_EndSearch"); \ +static_assert(offsetof(UWrestlerBTTask_EndSearch, SearchManager) == 0x000070, "Member 'UWrestlerBTTask_EndSearch::SearchManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDespawnEnemyAutomataTask \ +static_assert(alignof(UWrestlerDespawnEnemyAutomataTask) == 0x000008, "Wrong alignment on UWrestlerDespawnEnemyAutomataTask"); \ +static_assert(sizeof(UWrestlerDespawnEnemyAutomataTask) == 0x000098, "Wrong size on UWrestlerDespawnEnemyAutomataTask"); \ +static_assert(offsetof(UWrestlerDespawnEnemyAutomataTask, DespawnTagList) == 0x000088, "Member 'UWrestlerDespawnEnemyAutomataTask::DespawnTagList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_EndSearchCoverVolume \ +static_assert(alignof(UWrestlerBTTask_EndSearchCoverVolume) == 0x000008, "Wrong alignment on UWrestlerBTTask_EndSearchCoverVolume"); \ +static_assert(sizeof(UWrestlerBTTask_EndSearchCoverVolume) == 0x0000A0, "Wrong size on UWrestlerBTTask_EndSearchCoverVolume"); \ +static_assert(offsetof(UWrestlerBTTask_EndSearchCoverVolume, NumSearchesLeftKey) == 0x000070, "Member 'UWrestlerBTTask_EndSearchCoverVolume::NumSearchesLeftKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_EndSearchCoverVolume, MaxWaitTime) == 0x000098, "Member 'UWrestlerBTTask_EndSearchCoverVolume::MaxWaitTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_EndStimulusInvestigation \ +static_assert(alignof(UWrestlerBTTask_EndStimulusInvestigation) == 0x000008, "Wrong alignment on UWrestlerBTTask_EndStimulusInvestigation"); \ +static_assert(sizeof(UWrestlerBTTask_EndStimulusInvestigation) == 0x000098, "Wrong size on UWrestlerBTTask_EndStimulusInvestigation"); \ + +#define DUMPER7_ASSERTS_WrestlerDebugCamera_SetCameraPresent \ +static_assert(alignof(WrestlerDebugCamera_SetCameraPresent) == 0x000004, "Wrong alignment on WrestlerDebugCamera_SetCameraPresent"); \ +static_assert(sizeof(WrestlerDebugCamera_SetCameraPresent) == 0x000004, "Wrong size on WrestlerDebugCamera_SetCameraPresent"); \ +static_assert(offsetof(WrestlerDebugCamera_SetCameraPresent, InCameraPresentIndex) == 0x000000, "Member 'WrestlerDebugCamera_SetCameraPresent::InCameraPresentIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDebugCamera \ +static_assert(alignof(AWrestlerDebugCamera) == 0x000008, "Wrong alignment on AWrestlerDebugCamera"); \ +static_assert(sizeof(AWrestlerDebugCamera) == 0x0002B8, "Wrong size on AWrestlerDebugCamera"); \ +static_assert(offsetof(AWrestlerDebugCamera, SpringArmComponent) == 0x000298, "Member 'AWrestlerDebugCamera::SpringArmComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDebugCamera, CameraComponent) == 0x0002A0, "Member 'AWrestlerDebugCamera::CameraComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDebugCamera, CameraName) == 0x0002A8, "Member 'AWrestlerDebugCamera::CameraName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_FinishAssignedAgentTask \ +static_assert(alignof(UWrestlerBTTask_FinishAssignedAgentTask) == 0x000008, "Wrong alignment on UWrestlerBTTask_FinishAssignedAgentTask"); \ +static_assert(sizeof(UWrestlerBTTask_FinishAssignedAgentTask) == 0x000078, "Wrong size on UWrestlerBTTask_FinishAssignedAgentTask"); \ +static_assert(offsetof(UWrestlerBTTask_FinishAssignedAgentTask, FinishStatus) == 0x000070, "Member 'UWrestlerBTTask_FinishAssignedAgentTask::FinishStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_GetClosestPathPoint \ +static_assert(alignof(UWrestlerBTTask_GetClosestPathPoint) == 0x000008, "Wrong alignment on UWrestlerBTTask_GetClosestPathPoint"); \ +static_assert(sizeof(UWrestlerBTTask_GetClosestPathPoint) == 0x000098, "Wrong size on UWrestlerBTTask_GetClosestPathPoint"); \ + +#define DUMPER7_ASSERTS_UWrestlerDialoguePreviewSettings \ +static_assert(alignof(UWrestlerDialoguePreviewSettings) == 0x000008, "Wrong alignment on UWrestlerDialoguePreviewSettings"); \ +static_assert(sizeof(UWrestlerDialoguePreviewSettings) == 0x000098, "Wrong size on UWrestlerDialoguePreviewSettings"); \ +static_assert(offsetof(UWrestlerDialoguePreviewSettings, DebugRigInteractionObjective) == 0x000048, "Member 'UWrestlerDialoguePreviewSettings::DebugRigInteractionObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialoguePreviewSettings, OverrideDialoguePreviewMission) == 0x000070, "Member 'UWrestlerDialoguePreviewSettings::OverrideDialoguePreviewMission' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_GetNextPathPoint \ +static_assert(alignof(UWrestlerBTTask_GetNextPathPoint) == 0x000008, "Wrong alignment on UWrestlerBTTask_GetNextPathPoint"); \ +static_assert(sizeof(UWrestlerBTTask_GetNextPathPoint) == 0x000098, "Wrong size on UWrestlerBTTask_GetNextPathPoint"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionCanReactToSeenBody \ +static_assert(alignof(UWrestlerStateTreeConditionCanReactToSeenBody) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionCanReactToSeenBody"); \ +static_assert(sizeof(UWrestlerStateTreeConditionCanReactToSeenBody) == 0x000050, "Wrong size on UWrestlerStateTreeConditionCanReactToSeenBody"); \ +static_assert(offsetof(UWrestlerStateTreeConditionCanReactToSeenBody, DeadBodyTag) == 0x000048, "Member 'UWrestlerStateTreeConditionCanReactToSeenBody::DeadBodyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_GetRangedWeaponInfo \ +static_assert(alignof(UWrestlerBTTask_GetRangedWeaponInfo) == 0x000008, "Wrong alignment on UWrestlerBTTask_GetRangedWeaponInfo"); \ +static_assert(sizeof(UWrestlerBTTask_GetRangedWeaponInfo) == 0x000130, "Wrong size on UWrestlerBTTask_GetRangedWeaponInfo"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, MinRangedDistanceKey) == 0x000070, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::MinRangedDistanceKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, DefaultMinRangedDistance) == 0x000098, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::DefaultMinRangedDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, MaxRangedDistanceKey) == 0x0000A0, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::MaxRangedDistanceKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, DefaultMaxRangedDistance) == 0x0000C8, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::DefaultMaxRangedDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, TimeSinceRangedRepositionKey) == 0x0000D0, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::TimeSinceRangedRepositionKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, DefaultTimeSinceReposition) == 0x0000F8, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::DefaultTimeSinceReposition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, TimeBeforeAimKey) == 0x000100, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::TimeBeforeAimKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_GetRangedWeaponInfo, DefaultTimeBeforeAim) == 0x000128, "Member 'UWrestlerBTTask_GetRangedWeaponInfo::DefaultTimeBeforeAim' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAssembler \ +static_assert(alignof(UWrestlerEnemyAssembler) == 0x000008, "Wrong alignment on UWrestlerEnemyAssembler"); \ +static_assert(sizeof(UWrestlerEnemyAssembler) == 0x000028, "Wrong size on UWrestlerEnemyAssembler"); \ + +#define DUMPER7_ASSERTS_UWrestlerTagsFragmentAdded \ +static_assert(alignof(UWrestlerTagsFragmentAdded) == 0x000008, "Wrong alignment on UWrestlerTagsFragmentAdded"); \ +static_assert(sizeof(UWrestlerTagsFragmentAdded) == 0x000370, "Wrong size on UWrestlerTagsFragmentAdded"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_MarkForDespawn \ +static_assert(alignof(UWrestlerBTTask_MarkForDespawn) == 0x000008, "Wrong alignment on UWrestlerBTTask_MarkForDespawn"); \ +static_assert(sizeof(UWrestlerBTTask_MarkForDespawn) == 0x000070, "Wrong size on UWrestlerBTTask_MarkForDespawn"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassFearProcessor \ +static_assert(alignof(UWrestlerMassFearProcessor) == 0x000008, "Wrong alignment on UWrestlerMassFearProcessor"); \ +static_assert(sizeof(UWrestlerMassFearProcessor) == 0x000600, "Wrong size on UWrestlerMassFearProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_ModifyKeyInt \ +static_assert(alignof(UWrestlerBTTask_ModifyKeyInt) == 0x000008, "Wrong alignment on UWrestlerBTTask_ModifyKeyInt"); \ +static_assert(sizeof(UWrestlerBTTask_ModifyKeyInt) == 0x0000A0, "Wrong size on UWrestlerBTTask_ModifyKeyInt"); \ +static_assert(offsetof(UWrestlerBTTask_ModifyKeyInt, ModifyingValue) == 0x000098, "Member 'UWrestlerBTTask_ModifyKeyInt::ModifyingValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDoorActorBase \ +static_assert(alignof(AWrestlerDoorActorBase) == 0x000008, "Wrong alignment on AWrestlerDoorActorBase"); \ +static_assert(sizeof(AWrestlerDoorActorBase) == 0x0002C0, "Wrong size on AWrestlerDoorActorBase"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_MoveToPatrol \ +static_assert(alignof(UWrestlerBTTask_MoveToPatrol) == 0x000008, "Wrong alignment on UWrestlerBTTask_MoveToPatrol"); \ +static_assert(sizeof(UWrestlerBTTask_MoveToPatrol) == 0x0001F0, "Wrong size on UWrestlerBTTask_MoveToPatrol"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, OriginalMaxWalkSpeed) == 0x0000B0, "Member 'UWrestlerBTTask_MoveToPatrol::OriginalMaxWalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, SpeedMultiplier) == 0x0000B8, "Member 'UWrestlerBTTask_MoveToPatrol::SpeedMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, AccelerationCurve) == 0x0000C0, "Member 'UWrestlerBTTask_MoveToPatrol::AccelerationCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, DecelerationCurve) == 0x000148, "Member 'UWrestlerBTTask_MoveToPatrol::DecelerationCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, AccelerationDistance) == 0x0001D0, "Member 'UWrestlerBTTask_MoveToPatrol::AccelerationDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, DecelerationDistance) == 0x0001D4, "Member 'UWrestlerBTTask_MoveToPatrol::DecelerationDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, MinAngleForDeceleration) == 0x0001D8, "Member 'UWrestlerBTTask_MoveToPatrol::MinAngleForDeceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, MovementInterpolationSpeed) == 0x0001DC, "Member 'UWrestlerBTTask_MoveToPatrol::MovementInterpolationSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_MoveToPatrol, TurningPathPointIndices) == 0x0001E0, "Member 'UWrestlerBTTask_MoveToPatrol::TurningPathPointIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBTTask_PlayMontage_OnMontageEnded \ +static_assert(alignof(WrestlerBTTask_PlayMontage_OnMontageEnded) == 0x000008, "Wrong alignment on WrestlerBTTask_PlayMontage_OnMontageEnded"); \ +static_assert(sizeof(WrestlerBTTask_PlayMontage_OnMontageEnded) == 0x000010, "Wrong size on WrestlerBTTask_PlayMontage_OnMontageEnded"); \ +static_assert(offsetof(WrestlerBTTask_PlayMontage_OnMontageEnded, InMontage) == 0x000000, "Member 'WrestlerBTTask_PlayMontage_OnMontageEnded::InMontage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBTTask_PlayMontage_OnMontageEnded, bInterrupted) == 0x000008, "Member 'WrestlerBTTask_PlayMontage_OnMontageEnded::bInterrupted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_PlayMontage \ +static_assert(alignof(UWrestlerBTTask_PlayMontage) == 0x000008, "Wrong alignment on UWrestlerBTTask_PlayMontage"); \ +static_assert(sizeof(UWrestlerBTTask_PlayMontage) == 0x000088, "Wrong size on UWrestlerBTTask_PlayMontage"); \ +static_assert(offsetof(UWrestlerBTTask_PlayMontage, MontageTag) == 0x000070, "Member 'UWrestlerBTTask_PlayMontage::MontageTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_PlayMontage, MontageSpeed) == 0x000078, "Member 'UWrestlerBTTask_PlayMontage::MontageSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_PlayMontage, bMontageFinished) == 0x00007C, "Member 'UWrestlerBTTask_PlayMontage::bMontageFinished' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_PlayMontage, Montage) == 0x000080, "Member 'UWrestlerBTTask_PlayMontage::Montage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_SetIsInCutscene \ +static_assert(alignof(WrestlerDialogueActor_SetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDialogueActor_SetIsInCutscene"); \ +static_assert(sizeof(WrestlerDialogueActor_SetIsInCutscene) == 0x000001, "Wrong size on WrestlerDialogueActor_SetIsInCutscene"); \ +static_assert(offsetof(WrestlerDialogueActor_SetIsInCutscene, bInCutscene) == 0x000000, "Member 'WrestlerDialogueActor_SetIsInCutscene::bInCutscene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_SetIsInDialogue \ +static_assert(alignof(WrestlerDialogueActor_SetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDialogueActor_SetIsInDialogue"); \ +static_assert(sizeof(WrestlerDialogueActor_SetIsInDialogue) == 0x000001, "Wrong size on WrestlerDialogueActor_SetIsInDialogue"); \ +static_assert(offsetof(WrestlerDialogueActor_SetIsInDialogue, bInDialogue) == 0x000000, "Member 'WrestlerDialogueActor_SetIsInDialogue::bInDialogue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_SetIsSpeaking \ +static_assert(alignof(WrestlerDialogueActor_SetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDialogueActor_SetIsSpeaking"); \ +static_assert(sizeof(WrestlerDialogueActor_SetIsSpeaking) == 0x000001, "Wrong size on WrestlerDialogueActor_SetIsSpeaking"); \ +static_assert(offsetof(WrestlerDialogueActor_SetIsSpeaking, bIsSpeaking_0) == 0x000000, "Member 'WrestlerDialogueActor_SetIsSpeaking::bIsSpeaking_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetActorName \ +static_assert(alignof(WrestlerDialogueActor_GetActorName) == 0x000008, "Wrong alignment on WrestlerDialogueActor_GetActorName"); \ +static_assert(sizeof(WrestlerDialogueActor_GetActorName) == 0x000010, "Wrong size on WrestlerDialogueActor_GetActorName"); \ +static_assert(offsetof(WrestlerDialogueActor_GetActorName, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetAudioComp \ +static_assert(alignof(WrestlerDialogueActor_GetAudioComp) == 0x000008, "Wrong alignment on WrestlerDialogueActor_GetAudioComp"); \ +static_assert(sizeof(WrestlerDialogueActor_GetAudioComp) == 0x000008, "Wrong size on WrestlerDialogueActor_GetAudioComp"); \ +static_assert(offsetof(WrestlerDialogueActor_GetAudioComp, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetAudioComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetAudioComponent \ +static_assert(alignof(WrestlerDialogueActor_GetAudioComponent) == 0x000008, "Wrong alignment on WrestlerDialogueActor_GetAudioComponent"); \ +static_assert(sizeof(WrestlerDialogueActor_GetAudioComponent) == 0x000008, "Wrong size on WrestlerDialogueActor_GetAudioComponent"); \ +static_assert(offsetof(WrestlerDialogueActor_GetAudioComponent, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetDialogueCharacterTag \ +static_assert(alignof(WrestlerDialogueActor_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on WrestlerDialogueActor_GetDialogueCharacterTag"); \ +static_assert(sizeof(WrestlerDialogueActor_GetDialogueCharacterTag) == 0x000008, "Wrong size on WrestlerDialogueActor_GetDialogueCharacterTag"); \ +static_assert(offsetof(WrestlerDialogueActor_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetIsInCutscene \ +static_assert(alignof(WrestlerDialogueActor_GetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDialogueActor_GetIsInCutscene"); \ +static_assert(sizeof(WrestlerDialogueActor_GetIsInCutscene) == 0x000001, "Wrong size on WrestlerDialogueActor_GetIsInCutscene"); \ +static_assert(offsetof(WrestlerDialogueActor_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetIsInDialogue \ +static_assert(alignof(WrestlerDialogueActor_GetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDialogueActor_GetIsInDialogue"); \ +static_assert(sizeof(WrestlerDialogueActor_GetIsInDialogue) == 0x000001, "Wrong size on WrestlerDialogueActor_GetIsInDialogue"); \ +static_assert(offsetof(WrestlerDialogueActor_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetIsSpeaking \ +static_assert(alignof(WrestlerDialogueActor_GetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDialogueActor_GetIsSpeaking"); \ +static_assert(sizeof(WrestlerDialogueActor_GetIsSpeaking) == 0x000001, "Wrong size on WrestlerDialogueActor_GetIsSpeaking"); \ +static_assert(offsetof(WrestlerDialogueActor_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_GetSkeletalMeshComp \ +static_assert(alignof(WrestlerDialogueActor_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on WrestlerDialogueActor_GetSkeletalMeshComp"); \ +static_assert(sizeof(WrestlerDialogueActor_GetSkeletalMeshComp) == 0x000008, "Wrong size on WrestlerDialogueActor_GetSkeletalMeshComp"); \ +static_assert(offsetof(WrestlerDialogueActor_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'WrestlerDialogueActor_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueActor_MatchesCharacterTag \ +static_assert(alignof(WrestlerDialogueActor_MatchesCharacterTag) == 0x000004, "Wrong alignment on WrestlerDialogueActor_MatchesCharacterTag"); \ +static_assert(sizeof(WrestlerDialogueActor_MatchesCharacterTag) == 0x00000C, "Wrong size on WrestlerDialogueActor_MatchesCharacterTag"); \ +static_assert(offsetof(WrestlerDialogueActor_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'WrestlerDialogueActor_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDialogueActor_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'WrestlerDialogueActor_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDialogueActor \ +static_assert(alignof(AWrestlerDialogueActor) == 0x000008, "Wrong alignment on AWrestlerDialogueActor"); \ +static_assert(sizeof(AWrestlerDialogueActor) == 0x0002B8, "Wrong size on AWrestlerDialogueActor"); \ +static_assert(offsetof(AWrestlerDialogueActor, bIsInDialogue) == 0x0002A8, "Member 'AWrestlerDialogueActor::bIsInDialogue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueActor, bIsInCutscene) == 0x0002A9, "Member 'AWrestlerDialogueActor::bIsInCutscene' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueActor, bIsSpeaking) == 0x0002AA, "Member 'AWrestlerDialogueActor::bIsSpeaking' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueActor, DialogueCharacterTag) == 0x0002AC, "Member 'AWrestlerDialogueActor::DialogueCharacterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_RegisterInvestigateStimulusFound \ +static_assert(alignof(UWrestlerBTTask_RegisterInvestigateStimulusFound) == 0x000008, "Wrong alignment on UWrestlerBTTask_RegisterInvestigateStimulusFound"); \ +static_assert(sizeof(UWrestlerBTTask_RegisterInvestigateStimulusFound) == 0x000098, "Wrong size on UWrestlerBTTask_RegisterInvestigateStimulusFound"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectQueueTrait \ +static_assert(alignof(UWrestlerMassSmartObjectQueueTrait) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectQueueTrait"); \ +static_assert(sizeof(UWrestlerMassSmartObjectQueueTrait) == 0x000088, "Wrong size on UWrestlerMassSmartObjectQueueTrait"); \ +static_assert(offsetof(UWrestlerMassSmartObjectQueueTrait, TransitionableSOs) == 0x000028, "Member 'UWrestlerMassSmartObjectQueueTrait::TransitionableSOs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSmartObjectQueueTrait, bChooseRandomInitalTag) == 0x000078, "Member 'UWrestlerMassSmartObjectQueueTrait::bChooseRandomInitalTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSmartObjectQueueTrait, InitialUsableSOTag) == 0x00007C, "Member 'UWrestlerMassSmartObjectQueueTrait::InitialUsableSOTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_ReleaseRoute \ +static_assert(alignof(UWrestlerBTTask_ReleaseRoute) == 0x000008, "Wrong alignment on UWrestlerBTTask_ReleaseRoute"); \ +static_assert(sizeof(UWrestlerBTTask_ReleaseRoute) == 0x000098, "Wrong size on UWrestlerBTTask_ReleaseRoute"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_ReturnToken \ +static_assert(alignof(UWrestlerBTTask_ReturnToken) == 0x000008, "Wrong alignment on UWrestlerBTTask_ReturnToken"); \ +static_assert(sizeof(UWrestlerBTTask_ReturnToken) == 0x000098, "Wrong size on UWrestlerBTTask_ReturnToken"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyDebugWidget \ +static_assert(alignof(UWrestlerEnemyDebugWidget) == 0x000008, "Wrong alignment on UWrestlerEnemyDebugWidget"); \ +static_assert(sizeof(UWrestlerEnemyDebugWidget) == 0x0002F0, "Wrong size on UWrestlerEnemyDebugWidget"); \ +static_assert(offsetof(UWrestlerEnemyDebugWidget, StateName) == 0x0002C8, "Member 'UWrestlerEnemyDebugWidget::StateName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyDebugWidget, AwarenessMin) == 0x0002D0, "Member 'UWrestlerEnemyDebugWidget::AwarenessMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyDebugWidget, AwarenessMax) == 0x0002D8, "Member 'UWrestlerEnemyDebugWidget::AwarenessMax' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyDebugWidget, AwarenessAbsoluteValue) == 0x0002E0, "Member 'UWrestlerEnemyDebugWidget::AwarenessAbsoluteValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyDebugWidget, AwarenessProgressBar) == 0x0002E8, "Member 'UWrestlerEnemyDebugWidget::AwarenessProgressBar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_RotateAtPathPoint \ +static_assert(alignof(UWrestlerBTTask_RotateAtPathPoint) == 0x000008, "Wrong alignment on UWrestlerBTTask_RotateAtPathPoint"); \ +static_assert(sizeof(UWrestlerBTTask_RotateAtPathPoint) == 0x0000A8, "Wrong size on UWrestlerBTTask_RotateAtPathPoint"); \ +static_assert(offsetof(UWrestlerBTTask_RotateAtPathPoint, PathPointKey) == 0x000070, "Member 'UWrestlerBTTask_RotateAtPathPoint::PathPointKey' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_RotateAtPathPoint, PathPoint) == 0x000098, "Member 'UWrestlerBTTask_RotateAtPathPoint::PathPoint' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_RotateAtPathPoint, Precision) == 0x0000A0, "Member 'UWrestlerBTTask_RotateAtPathPoint::Precision' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_RotateAtPathPoint, FocalPointDist) == 0x0000A4, "Member 'UWrestlerBTTask_RotateAtPathPoint::FocalPointDist' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_SendNoiseEvent \ +static_assert(alignof(UWrestlerBTTask_SendNoiseEvent) == 0x000008, "Wrong alignment on UWrestlerBTTask_SendNoiseEvent"); \ +static_assert(sizeof(UWrestlerBTTask_SendNoiseEvent) == 0x000080, "Wrong size on UWrestlerBTTask_SendNoiseEvent"); \ +static_assert(offsetof(UWrestlerBTTask_SendNoiseEvent, Loudness) == 0x000070, "Member 'UWrestlerBTTask_SendNoiseEvent::Loudness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_SendNoiseEvent, MaxRange) == 0x000074, "Member 'UWrestlerBTTask_SendNoiseEvent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_SendNoiseEvent, Tag) == 0x000078, "Member 'UWrestlerBTTask_SendNoiseEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_DistanceFromTarget \ +static_assert(alignof(UWrestlerTaskScore_DistanceFromTarget) == 0x000008, "Wrong alignment on UWrestlerTaskScore_DistanceFromTarget"); \ +static_assert(sizeof(UWrestlerTaskScore_DistanceFromTarget) == 0x000040, "Wrong size on UWrestlerTaskScore_DistanceFromTarget"); \ +static_assert(offsetof(UWrestlerTaskScore_DistanceFromTarget, MinDistance) == 0x000030, "Member 'UWrestlerTaskScore_DistanceFromTarget::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore_DistanceFromTarget, IdealDistance) == 0x000034, "Member 'UWrestlerTaskScore_DistanceFromTarget::IdealDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskScore_DistanceFromTarget, MaxDistance) == 0x000038, "Member 'UWrestlerTaskScore_DistanceFromTarget::MaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_SetSearchFinished \ +static_assert(alignof(UWrestlerBTTask_SetSearchFinished) == 0x000008, "Wrong alignment on UWrestlerBTTask_SetSearchFinished"); \ +static_assert(sizeof(UWrestlerBTTask_SetSearchFinished) == 0x000078, "Wrong size on UWrestlerBTTask_SetSearchFinished"); \ +static_assert(offsetof(UWrestlerBTTask_SetSearchFinished, bInvestigateFinished) == 0x000070, "Member 'UWrestlerBTTask_SetSearchFinished::bInvestigateFinished' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherComponent \ +static_assert(alignof(UWrestlerWeatherComponent) == 0x000010, "Wrong alignment on UWrestlerWeatherComponent"); \ +static_assert(sizeof(UWrestlerWeatherComponent) == 0x000320, "Wrong size on UWrestlerWeatherComponent"); \ +static_assert(offsetof(UWrestlerWeatherComponent, WeatherInformation) == 0x0002A0, "Member 'UWrestlerWeatherComponent::WeatherInformation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherComponent, WeatherParameters) == 0x0002A8, "Member 'UWrestlerWeatherComponent::WeatherParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_SpreadFear \ +static_assert(alignof(UWrestlerBTTask_SpreadFear) == 0x000008, "Wrong alignment on UWrestlerBTTask_SpreadFear"); \ +static_assert(sizeof(UWrestlerBTTask_SpreadFear) == 0x0000A0, "Wrong size on UWrestlerBTTask_SpreadFear"); \ +static_assert(offsetof(UWrestlerBTTask_SpreadFear, FearDuration) == 0x000070, "Member 'UWrestlerBTTask_SpreadFear::FearDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_SpreadFear, FearStrengthMultiplier) == 0x000074, "Member 'UWrestlerBTTask_SpreadFear::FearStrengthMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_SpreadFear, FearInstigator) == 0x000078, "Member 'UWrestlerBTTask_SpreadFear::FearInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete \ +static_assert(alignof(WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete) == 0x000008, "Wrong alignment on WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete"); \ +static_assert(sizeof(WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete) == 0x000010, "Wrong size on WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete"); \ +static_assert(offsetof(WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete, InResult) == 0x000000, "Member 'WrestlerBTTask_StartAssignedAgentTask_HandleTaskComplete::InResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask \ +static_assert(alignof(WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask) == 0x000008, "Wrong alignment on WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask"); \ +static_assert(sizeof(WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask) == 0x000010, "Wrong size on WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask"); \ +static_assert(offsetof(WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask, InAgent) == 0x000000, "Member 'WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask, ReturnValue) == 0x000008, "Member 'WrestlerBTTask_StartAssignedAgentTask_GetAssignedTask::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_StartAssignedAgentTask \ +static_assert(alignof(UWrestlerBTTask_StartAssignedAgentTask) == 0x000008, "Wrong alignment on UWrestlerBTTask_StartAssignedAgentTask"); \ +static_assert(sizeof(UWrestlerBTTask_StartAssignedAgentTask) == 0x000080, "Wrong size on UWrestlerBTTask_StartAssignedAgentTask"); \ +static_assert(offsetof(UWrestlerBTTask_StartAssignedAgentTask, OwnerComponent) == 0x000070, "Member 'UWrestlerBTTask_StartAssignedAgentTask::OwnerComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerBTTask_StartAssignedAgentTask, AgentTask) == 0x000078, "Member 'UWrestlerBTTask_StartAssignedAgentTask::AgentTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_StartSearch \ +static_assert(alignof(UWrestlerBTTask_StartSearch) == 0x000008, "Wrong alignment on UWrestlerBTTask_StartSearch"); \ +static_assert(sizeof(UWrestlerBTTask_StartSearch) == 0x000078, "Wrong size on UWrestlerBTTask_StartSearch"); \ +static_assert(offsetof(UWrestlerBTTask_StartSearch, SearchManager) == 0x000070, "Member 'UWrestlerBTTask_StartSearch::SearchManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySequenceDataAsset_GetEnemySequenceData \ +static_assert(alignof(WrestlerEnemySequenceDataAsset_GetEnemySequenceData) == 0x000008, "Wrong alignment on WrestlerEnemySequenceDataAsset_GetEnemySequenceData"); \ +static_assert(sizeof(WrestlerEnemySequenceDataAsset_GetEnemySequenceData) == 0x000048, "Wrong size on WrestlerEnemySequenceDataAsset_GetEnemySequenceData"); \ +static_assert(offsetof(WrestlerEnemySequenceDataAsset_GetEnemySequenceData, InTag) == 0x000000, "Member 'WrestlerEnemySequenceDataAsset_GetEnemySequenceData::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySequenceDataAsset_GetEnemySequenceData, OutEnemySequenceData) == 0x000008, "Member 'WrestlerEnemySequenceDataAsset_GetEnemySequenceData::OutEnemySequenceData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySequenceDataAsset_GetEnemySequenceData, ReturnValue) == 0x000040, "Member 'WrestlerEnemySequenceDataAsset_GetEnemySequenceData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemySequenceDataAsset \ +static_assert(alignof(UWrestlerEnemySequenceDataAsset) == 0x000008, "Wrong alignment on UWrestlerEnemySequenceDataAsset"); \ +static_assert(sizeof(UWrestlerEnemySequenceDataAsset) == 0x000080, "Wrong size on UWrestlerEnemySequenceDataAsset"); \ +static_assert(offsetof(UWrestlerEnemySequenceDataAsset, EnemySequences) == 0x000030, "Member 'UWrestlerEnemySequenceDataAsset::EnemySequences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_StartSearchCoverVolume \ +static_assert(alignof(UWrestlerBTTask_StartSearchCoverVolume) == 0x000008, "Wrong alignment on UWrestlerBTTask_StartSearchCoverVolume"); \ +static_assert(sizeof(UWrestlerBTTask_StartSearchCoverVolume) == 0x000070, "Wrong size on UWrestlerBTTask_StartSearchCoverVolume"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskDispenser_HandleTaskComplete \ +static_assert(alignof(WrestlerTaskDispenser_HandleTaskComplete) == 0x000008, "Wrong alignment on WrestlerTaskDispenser_HandleTaskComplete"); \ +static_assert(sizeof(WrestlerTaskDispenser_HandleTaskComplete) == 0x000010, "Wrong size on WrestlerTaskDispenser_HandleTaskComplete"); \ +static_assert(offsetof(WrestlerTaskDispenser_HandleTaskComplete, Result) == 0x000000, "Member 'WrestlerTaskDispenser_HandleTaskComplete::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskDispenser \ +static_assert(alignof(UWrestlerTaskDispenser) == 0x000008, "Wrong alignment on UWrestlerTaskDispenser"); \ +static_assert(sizeof(UWrestlerTaskDispenser) == 0x000040, "Wrong size on UWrestlerTaskDispenser"); \ +static_assert(offsetof(UWrestlerTaskDispenser, Tasks) == 0x000028, "Member 'UWrestlerTaskDispenser::Tasks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDispenser, TaskDistributor) == 0x000038, "Member 'UWrestlerTaskDispenser::TaskDistributor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerBTTask_WaitAtPathPoint \ +static_assert(alignof(UWrestlerBTTask_WaitAtPathPoint) == 0x000008, "Wrong alignment on UWrestlerBTTask_WaitAtPathPoint"); \ +static_assert(sizeof(UWrestlerBTTask_WaitAtPathPoint) == 0x0000A0, "Wrong size on UWrestlerBTTask_WaitAtPathPoint"); \ +static_assert(offsetof(UWrestlerBTTask_WaitAtPathPoint, PathPointKey) == 0x000078, "Member 'UWrestlerBTTask_WaitAtPathPoint::PathPointKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_ChangeWeapon \ +static_assert(alignof(WrestlerEnemyCharacter_ChangeWeapon) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_ChangeWeapon"); \ +static_assert(sizeof(WrestlerEnemyCharacter_ChangeWeapon) == 0x000070, "Wrong size on WrestlerEnemyCharacter_ChangeWeapon"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, InWeapon) == 0x000000, "Member 'WrestlerEnemyCharacter_ChangeWeapon::InWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, InAnimation) == 0x000008, "Member 'WrestlerEnemyCharacter_ChangeWeapon::InAnimation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, InMovement) == 0x000030, "Member 'WrestlerEnemyCharacter_ChangeWeapon::InMovement' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, InTaskOverride) == 0x000058, "Member 'WrestlerEnemyCharacter_ChangeWeapon::InTaskOverride' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, OutOldWeapon) == 0x000060, "Member 'WrestlerEnemyCharacter_ChangeWeapon::OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ChangeWeapon, OutNewWeapon) == 0x000068, "Member 'WrestlerEnemyCharacter_ChangeWeapon::OutNewWeapon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_EventOnStunChanged \ +static_assert(alignof(WrestlerEnemyCharacter_EventOnStunChanged) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_EventOnStunChanged"); \ +static_assert(sizeof(WrestlerEnemyCharacter_EventOnStunChanged) == 0x000008, "Wrong size on WrestlerEnemyCharacter_EventOnStunChanged"); \ +static_assert(offsetof(WrestlerEnemyCharacter_EventOnStunChanged, CurrentValue) == 0x000000, "Member 'WrestlerEnemyCharacter_EventOnStunChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_EventOnStunChanged, MaxValue) == 0x000004, "Member 'WrestlerEnemyCharacter_EventOnStunChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetAnimationSet \ +static_assert(alignof(WrestlerEnemyCharacter_GetAnimationSet) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetAnimationSet"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetAnimationSet) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetAnimationSet"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetAnimationSet, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetAnimationSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetDamageAmountByTag \ +static_assert(alignof(WrestlerEnemyCharacter_GetDamageAmountByTag) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_GetDamageAmountByTag"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetDamageAmountByTag) == 0x00000C, "Wrong size on WrestlerEnemyCharacter_GetDamageAmountByTag"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetDamageAmountByTag, InDamageTag) == 0x000000, "Member 'WrestlerEnemyCharacter_GetDamageAmountByTag::InDamageTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetDamageAmountByTag, ReturnValue) == 0x000008, "Member 'WrestlerEnemyCharacter_GetDamageAmountByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemies \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemies) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetEnemies"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemies) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemies"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemies, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemies::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemyStatsDataAsset \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemyStatsDataAsset) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetEnemyStatsDataAsset"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemyStatsDataAsset) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemyStatsDataAsset"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemyStatsDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemyStatsDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemySubsystem \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemySubsystem) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetEnemySubsystem"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemySubsystem) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemySubsystem"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemySubsystem, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemySubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetWeaponAudioSwitch \ +static_assert(alignof(WrestlerEnemyCharacter_GetWeaponAudioSwitch) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetWeaponAudioSwitch"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetWeaponAudioSwitch) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetWeaponAudioSwitch"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetWeaponAudioSwitch, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetWeaponAudioSwitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_MoveTo_Internal \ +static_assert(alignof(WrestlerEnemyCharacter_MoveTo_Internal) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_MoveTo_Internal"); \ +static_assert(sizeof(WrestlerEnemyCharacter_MoveTo_Internal) == 0x000018, "Wrong size on WrestlerEnemyCharacter_MoveTo_Internal"); \ +static_assert(offsetof(WrestlerEnemyCharacter_MoveTo_Internal, InDestination) == 0x000000, "Member 'WrestlerEnemyCharacter_MoveTo_Internal::InDestination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_PlayBark \ +static_assert(alignof(WrestlerEnemyCharacter_PlayBark) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_PlayBark"); \ +static_assert(sizeof(WrestlerEnemyCharacter_PlayBark) == 0x000008, "Wrong size on WrestlerEnemyCharacter_PlayBark"); \ +static_assert(offsetof(WrestlerEnemyCharacter_PlayBark, BarkTag) == 0x000000, "Member 'WrestlerEnemyCharacter_PlayBark::BarkTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_SetAnimationAsset \ +static_assert(alignof(WrestlerEnemyCharacter_SetAnimationAsset) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_SetAnimationAsset"); \ +static_assert(sizeof(WrestlerEnemyCharacter_SetAnimationAsset) == 0x000008, "Wrong size on WrestlerEnemyCharacter_SetAnimationAsset"); \ +static_assert(offsetof(WrestlerEnemyCharacter_SetAnimationAsset, InAnimAsset) == 0x000000, "Member 'WrestlerEnemyCharacter_SetAnimationAsset::InAnimAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_SetCanTalk \ +static_assert(alignof(WrestlerEnemyCharacter_SetCanTalk) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_SetCanTalk"); \ +static_assert(sizeof(WrestlerEnemyCharacter_SetCanTalk) == 0x000001, "Wrong size on WrestlerEnemyCharacter_SetCanTalk"); \ +static_assert(offsetof(WrestlerEnemyCharacter_SetCanTalk, CanTalk) == 0x000000, "Member 'WrestlerEnemyCharacter_SetCanTalk::CanTalk' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_SetInteractedWithPlayer \ +static_assert(alignof(WrestlerEnemyCharacter_SetInteractedWithPlayer) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_SetInteractedWithPlayer"); \ +static_assert(sizeof(WrestlerEnemyCharacter_SetInteractedWithPlayer) == 0x000001, "Wrong size on WrestlerEnemyCharacter_SetInteractedWithPlayer"); \ +static_assert(offsetof(WrestlerEnemyCharacter_SetInteractedWithPlayer, InHasInteractedWithPlayer) == 0x000000, "Member 'WrestlerEnemyCharacter_SetInteractedWithPlayer::InHasInteractedWithPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_ToggleDebug \ +static_assert(alignof(WrestlerEnemyCharacter_ToggleDebug) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_ToggleDebug"); \ +static_assert(sizeof(WrestlerEnemyCharacter_ToggleDebug) == 0x000001, "Wrong size on WrestlerEnemyCharacter_ToggleDebug"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ToggleDebug, bOutDebug) == 0x000000, "Member 'WrestlerEnemyCharacter_ToggleDebug::bOutDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetCanTalk \ +static_assert(alignof(WrestlerEnemyCharacter_GetCanTalk) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_GetCanTalk"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetCanTalk) == 0x000001, "Wrong size on WrestlerEnemyCharacter_GetCanTalk"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetCanTalk, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetCanTalk::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetCurrentMovementSettings \ +static_assert(alignof(WrestlerEnemyCharacter_GetCurrentMovementSettings) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_GetCurrentMovementSettings"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetCurrentMovementSettings) == 0x000018, "Wrong size on WrestlerEnemyCharacter_GetCurrentMovementSettings"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetCurrentMovementSettings, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetCurrentMovementSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemyDebugName \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemyDebugName) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_GetEnemyDebugName"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemyDebugName) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemyDebugName"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemyDebugName, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemyDebugName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemyTypeAudioSwitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetEnemyTypeName \ +static_assert(alignof(WrestlerEnemyCharacter_GetEnemyTypeName) == 0x000004, "Wrong alignment on WrestlerEnemyCharacter_GetEnemyTypeName"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetEnemyTypeName) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetEnemyTypeName"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetEnemyTypeName, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetEnemyTypeName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetInteractedWithPlayer \ +static_assert(alignof(WrestlerEnemyCharacter_GetInteractedWithPlayer) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_GetInteractedWithPlayer"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetInteractedWithPlayer) == 0x000001, "Wrong size on WrestlerEnemyCharacter_GetInteractedWithPlayer"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetInteractedWithPlayer, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetInteractedWithPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_GetMovementSet \ +static_assert(alignof(WrestlerEnemyCharacter_GetMovementSet) == 0x000008, "Wrong alignment on WrestlerEnemyCharacter_GetMovementSet"); \ +static_assert(sizeof(WrestlerEnemyCharacter_GetMovementSet) == 0x000008, "Wrong size on WrestlerEnemyCharacter_GetMovementSet"); \ +static_assert(offsetof(WrestlerEnemyCharacter_GetMovementSet, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_GetMovementSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_IsMassCharacter \ +static_assert(alignof(WrestlerEnemyCharacter_IsMassCharacter) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_IsMassCharacter"); \ +static_assert(sizeof(WrestlerEnemyCharacter_IsMassCharacter) == 0x000001, "Wrong size on WrestlerEnemyCharacter_IsMassCharacter"); \ +static_assert(offsetof(WrestlerEnemyCharacter_IsMassCharacter, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_IsMassCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyCharacter_ShouldApplyPlayerOffset \ +static_assert(alignof(WrestlerEnemyCharacter_ShouldApplyPlayerOffset) == 0x000001, "Wrong alignment on WrestlerEnemyCharacter_ShouldApplyPlayerOffset"); \ +static_assert(sizeof(WrestlerEnemyCharacter_ShouldApplyPlayerOffset) == 0x000001, "Wrong size on WrestlerEnemyCharacter_ShouldApplyPlayerOffset"); \ +static_assert(offsetof(WrestlerEnemyCharacter_ShouldApplyPlayerOffset, ReturnValue) == 0x000000, "Member 'WrestlerEnemyCharacter_ShouldApplyPlayerOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerEnemyCharacter \ +static_assert(alignof(AWrestlerEnemyCharacter) == 0x000010, "Wrong alignment on AWrestlerEnemyCharacter"); \ +static_assert(sizeof(AWrestlerEnemyCharacter) == 0x000E20, "Wrong size on AWrestlerEnemyCharacter"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, PCSBlockingStateDelegate) == 0x000BD0, "Member 'AWrestlerEnemyCharacter::PCSBlockingStateDelegate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugEnemyTypeName) == 0x000BE0, "Member 'AWrestlerEnemyCharacter::DebugEnemyTypeName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugEnemyTypeAudioSwitch) == 0x000BE8, "Member 'AWrestlerEnemyCharacter::DebugEnemyTypeAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugDeadActorClass) == 0x000BF0, "Member 'AWrestlerEnemyCharacter::DebugDeadActorClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugStateTree) == 0x000C18, "Member 'AWrestlerEnemyCharacter::DebugStateTree' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugAIControllerClass) == 0x000C40, "Member 'AWrestlerEnemyCharacter::DebugAIControllerClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugWeaponDefiniton) == 0x000C48, "Member 'AWrestlerEnemyCharacter::DebugWeaponDefiniton' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugWeaponInstanceClass) == 0x000C50, "Member 'AWrestlerEnemyCharacter::DebugWeaponInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DebugAnimAsset) == 0x000C58, "Member 'AWrestlerEnemyCharacter::DebugAnimAsset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, ControlComponent) == 0x000C90, "Member 'AWrestlerEnemyCharacter::ControlComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, PatrolComponent) == 0x000C98, "Member 'AWrestlerEnemyCharacter::PatrolComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, HeraMissionActorComponent) == 0x000CA0, "Member 'AWrestlerEnemyCharacter::HeraMissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, PerceptionStimuliSourceComponent) == 0x000CA8, "Member 'AWrestlerEnemyCharacter::PerceptionStimuliSourceComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, EquipmentManagerComponent) == 0x000CB0, "Member 'AWrestlerEnemyCharacter::EquipmentManagerComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, RouteFollowingComponent) == 0x000CB8, "Member 'AWrestlerEnemyCharacter::RouteFollowingComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, StateTreeComponent) == 0x000CC0, "Member 'AWrestlerEnemyCharacter::StateTreeComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, CharacterFloorControl) == 0x000CC8, "Member 'AWrestlerEnemyCharacter::CharacterFloorControl' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, PCSTeamTag) == 0x000CD0, "Member 'AWrestlerEnemyCharacter::PCSTeamTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, MoveToTolerance) == 0x000CD8, "Member 'AWrestlerEnemyCharacter::MoveToTolerance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DeathObjective) == 0x000CE0, "Member 'AWrestlerEnemyCharacter::DeathObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, StunObjective) == 0x000CE8, "Member 'AWrestlerEnemyCharacter::StunObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, AwareOfPlayerObjective) == 0x000CF0, "Member 'AWrestlerEnemyCharacter::AwareOfPlayerObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, DetectedPlayerObjective) == 0x000CF8, "Member 'AWrestlerEnemyCharacter::DetectedPlayerObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, TKedObjective) == 0x000D00, "Member 'AWrestlerEnemyCharacter::TKedObjective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, UIHealthStunWidgetComponent) == 0x000D08, "Member 'AWrestlerEnemyCharacter::UIHealthStunWidgetComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, UIAlertnessWidgetComponent) == 0x000D10, "Member 'AWrestlerEnemyCharacter::UIAlertnessWidgetComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, TaskDebugWidgetComponent) == 0x000D18, "Member 'AWrestlerEnemyCharacter::TaskDebugWidgetComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, PatrolRoute) == 0x000D20, "Member 'AWrestlerEnemyCharacter::PatrolRoute' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, CanBeFedOnTime) == 0x000D28, "Member 'AWrestlerEnemyCharacter::CanBeFedOnTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, TagWidgetClass) == 0x000D30, "Member 'AWrestlerEnemyCharacter::TagWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, EnemyTypeName) == 0x000D44, "Member 'AWrestlerEnemyCharacter::EnemyTypeName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, EnemyDebugName) == 0x000D4C, "Member 'AWrestlerEnemyCharacter::EnemyDebugName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, SignificanceTag) == 0x000D54, "Member 'AWrestlerEnemyCharacter::SignificanceTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, bAddToSignificanceManager) == 0x000D5C, "Member 'AWrestlerEnemyCharacter::bAddToSignificanceManager' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, SignificanceManagerMaxDrawDistance) == 0x000D60, "Member 'AWrestlerEnemyCharacter::SignificanceManagerMaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, ModularCharacterProfiles) == 0x000D68, "Member 'AWrestlerEnemyCharacter::ModularCharacterProfiles' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, EnemyTypeAudioSwitch) == 0x000D78, "Member 'AWrestlerEnemyCharacter::EnemyTypeAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, WeaponAudioSwitch) == 0x000D80, "Member 'AWrestlerEnemyCharacter::WeaponAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, AnimationSet) == 0x000D88, "Member 'AWrestlerEnemyCharacter::AnimationSet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, MovementSet) == 0x000D90, "Member 'AWrestlerEnemyCharacter::MovementSet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, CurrentMovementSettings) == 0x000D98, "Member 'AWrestlerEnemyCharacter::CurrentMovementSettings' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, RangedRotationSettings) == 0x000DB0, "Member 'AWrestlerEnemyCharacter::RangedRotationSettings' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyCharacter, Spawner) == 0x000DD8, "Member 'AWrestlerEnemyCharacter::Spawner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassFindApproachingPairsProcessor \ +static_assert(alignof(UWrestlerMassFindApproachingPairsProcessor) == 0x000010, "Wrong alignment on UWrestlerMassFindApproachingPairsProcessor"); \ +static_assert(sizeof(UWrestlerMassFindApproachingPairsProcessor) == 0x000620, "Wrong size on UWrestlerMassFindApproachingPairsProcessor"); \ +static_assert(offsetof(UWrestlerMassFindApproachingPairsProcessor, SearchAroundPlayerExtent) == 0x000608, "Member 'UWrestlerMassFindApproachingPairsProcessor::SearchAroundPlayerExtent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassFindApproachingPairsProcessor, bPreferSideBySidePairings) == 0x000610, "Member 'UWrestlerMassFindApproachingPairsProcessor::bPreferSideBySidePairings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassFindApproachingPairsProcessor, ConsiderDirectlyAheadOffset) == 0x000614, "Member 'UWrestlerMassFindApproachingPairsProcessor::ConsiderDirectlyAheadOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCameraComponent \ +static_assert(alignof(UWrestlerCameraComponent) == 0x000010, "Wrong alignment on UWrestlerCameraComponent"); \ +static_assert(sizeof(UWrestlerCameraComponent) == 0x000A50, "Wrong size on UWrestlerCameraComponent"); \ +static_assert(offsetof(UWrestlerCameraComponent, bHeadTracking) == 0x000A40, "Member 'UWrestlerCameraComponent::bHeadTracking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraComponent, TrackedSocket) == 0x000A44, "Member 'UWrestlerCameraComponent::TrackedSocket' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraManager_DestroySceneCaptureComponent \ +static_assert(alignof(WrestlerCameraManager_DestroySceneCaptureComponent) == 0x000008, "Wrong alignment on WrestlerCameraManager_DestroySceneCaptureComponent"); \ +static_assert(sizeof(WrestlerCameraManager_DestroySceneCaptureComponent) == 0x000010, "Wrong size on WrestlerCameraManager_DestroySceneCaptureComponent"); \ +static_assert(offsetof(WrestlerCameraManager_DestroySceneCaptureComponent, PlayerCameraManager) == 0x000000, "Member 'WrestlerCameraManager_DestroySceneCaptureComponent::PlayerCameraManager' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraManager_DestroySceneCaptureComponent, SceneCaptureComponent) == 0x000008, "Member 'WrestlerCameraManager_DestroySceneCaptureComponent::SceneCaptureComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCameraManager \ +static_assert(alignof(AWrestlerCameraManager) == 0x000010, "Wrong alignment on AWrestlerCameraManager"); \ +static_assert(sizeof(AWrestlerCameraManager) == 0x002400, "Wrong size on AWrestlerCameraManager"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_EntitiesVisibility \ +static_assert(alignof(UWrestlerMassSightProcessor_EntitiesVisibility) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_EntitiesVisibility"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_EntitiesVisibility) == 0x000980, "Wrong size on UWrestlerMassSightProcessor_EntitiesVisibility"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_EntitiesVisibility, PredictionTime) == 0x000690, "Member 'UWrestlerMassSightProcessor_EntitiesVisibility::PredictionTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_EntitiesVisibility, MinimumLODToProcess) == 0x000694, "Member 'UWrestlerMassSightProcessor_EntitiesVisibility::MinimumLODToProcess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerEnemyPatrolPoint \ +static_assert(alignof(AWrestlerEnemyPatrolPoint) == 0x000008, "Wrong alignment on AWrestlerEnemyPatrolPoint"); \ +static_assert(sizeof(AWrestlerEnemyPatrolPoint) == 0x0002A8, "Wrong size on AWrestlerEnemyPatrolPoint"); \ +static_assert(offsetof(AWrestlerEnemyPatrolPoint, Weight) == 0x000298, "Member 'AWrestlerEnemyPatrolPoint::Weight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolPoint, TimeAtPoint) == 0x00029C, "Member 'AWrestlerEnemyPatrolPoint::TimeAtPoint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolPoint, RotationRateMultiplier) == 0x0002A0, "Member 'AWrestlerEnemyPatrolPoint::RotationRateMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraModifier_SetRelativeLimitRotation \ +static_assert(alignof(WrestlerCameraModifier_SetRelativeLimitRotation) == 0x000008, "Wrong alignment on WrestlerCameraModifier_SetRelativeLimitRotation"); \ +static_assert(sizeof(WrestlerCameraModifier_SetRelativeLimitRotation) == 0x000018, "Wrong size on WrestlerCameraModifier_SetRelativeLimitRotation"); \ +static_assert(offsetof(WrestlerCameraModifier_SetRelativeLimitRotation, InRelativeLimitRotation) == 0x000000, "Member 'WrestlerCameraModifier_SetRelativeLimitRotation::InRelativeLimitRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCameraModifier \ +static_assert(alignof(UWrestlerCameraModifier) == 0x000008, "Wrong alignment on UWrestlerCameraModifier"); \ +static_assert(sizeof(UWrestlerCameraModifier) == 0x0000A0, "Wrong size on UWrestlerCameraModifier"); \ +static_assert(offsetof(UWrestlerCameraModifier, bAlphaOutBeforeRemoval) == 0x000048, "Member 'UWrestlerCameraModifier::bAlphaOutBeforeRemoval' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewPitchMin) == 0x00004C, "Member 'UWrestlerCameraModifier::ViewPitchMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewPitchMax) == 0x000050, "Member 'UWrestlerCameraModifier::ViewPitchMax' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewYawMin) == 0x000054, "Member 'UWrestlerCameraModifier::ViewYawMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewYawMax) == 0x000058, "Member 'UWrestlerCameraModifier::ViewYawMax' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewRollMin) == 0x00005C, "Member 'UWrestlerCameraModifier::ViewRollMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, ViewRollMax) == 0x000060, "Member 'UWrestlerCameraModifier::ViewRollMax' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, bUseAngleLimit) == 0x000064, "Member 'UWrestlerCameraModifier::bUseAngleLimit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier, AngleLimit) == 0x000068, "Member 'UWrestlerCameraModifier::AngleLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUI \ +static_assert(alignof(UWrestlerUI) == 0x000008, "Wrong alignment on UWrestlerUI"); \ +static_assert(sizeof(UWrestlerUI) == 0x0000D0, "Wrong size on UWrestlerUI"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraModifier_Highlight_IsFadeFinished \ +static_assert(alignof(WrestlerCameraModifier_Highlight_IsFadeFinished) == 0x000001, "Wrong alignment on WrestlerCameraModifier_Highlight_IsFadeFinished"); \ +static_assert(sizeof(WrestlerCameraModifier_Highlight_IsFadeFinished) == 0x000001, "Wrong size on WrestlerCameraModifier_Highlight_IsFadeFinished"); \ +static_assert(offsetof(WrestlerCameraModifier_Highlight_IsFadeFinished, ReturnValue) == 0x000000, "Member 'WrestlerCameraModifier_Highlight_IsFadeFinished::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraModifier_Highlight_IsFadeInFinished \ +static_assert(alignof(WrestlerCameraModifier_Highlight_IsFadeInFinished) == 0x000001, "Wrong alignment on WrestlerCameraModifier_Highlight_IsFadeInFinished"); \ +static_assert(sizeof(WrestlerCameraModifier_Highlight_IsFadeInFinished) == 0x000001, "Wrong size on WrestlerCameraModifier_Highlight_IsFadeInFinished"); \ +static_assert(offsetof(WrestlerCameraModifier_Highlight_IsFadeInFinished, ReturnValue) == 0x000000, "Member 'WrestlerCameraModifier_Highlight_IsFadeInFinished::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraModifier_Highlight_IsFadeOutFinished \ +static_assert(alignof(WrestlerCameraModifier_Highlight_IsFadeOutFinished) == 0x000001, "Wrong alignment on WrestlerCameraModifier_Highlight_IsFadeOutFinished"); \ +static_assert(sizeof(WrestlerCameraModifier_Highlight_IsFadeOutFinished) == 0x000001, "Wrong size on WrestlerCameraModifier_Highlight_IsFadeOutFinished"); \ +static_assert(offsetof(WrestlerCameraModifier_Highlight_IsFadeOutFinished, ReturnValue) == 0x000000, "Member 'WrestlerCameraModifier_Highlight_IsFadeOutFinished::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCameraModifier_Highlight \ +static_assert(alignof(UWrestlerCameraModifier_Highlight) == 0x000008, "Wrong alignment on UWrestlerCameraModifier_Highlight"); \ +static_assert(sizeof(UWrestlerCameraModifier_Highlight) == 0x0000C8, "Wrong size on UWrestlerCameraModifier_Highlight"); \ +static_assert(offsetof(UWrestlerCameraModifier_Highlight, PostProcessMaterial) == 0x0000A0, "Member 'UWrestlerCameraModifier_Highlight::PostProcessMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier_Highlight, HighlightMaterialParameterName) == 0x0000A8, "Member 'UWrestlerCameraModifier_Highlight::HighlightMaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier_Highlight, HighlightsFadeSpeed) == 0x0000B0, "Member 'UWrestlerCameraModifier_Highlight::HighlightsFadeSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier_Highlight, bRemoveOnFadeOut) == 0x0000B4, "Member 'UWrestlerCameraModifier_Highlight::bRemoveOnFadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraModifier_Highlight, PostProcessMID) == 0x0000B8, "Member 'UWrestlerCameraModifier_Highlight::PostProcessMID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyTraversalNavLink_NotifySmartLinkReached \ +static_assert(alignof(WrestlerEnemyTraversalNavLink_NotifySmartLinkReached) == 0x000008, "Wrong alignment on WrestlerEnemyTraversalNavLink_NotifySmartLinkReached"); \ +static_assert(sizeof(WrestlerEnemyTraversalNavLink_NotifySmartLinkReached) == 0x000028, "Wrong size on WrestlerEnemyTraversalNavLink_NotifySmartLinkReached"); \ +static_assert(offsetof(WrestlerEnemyTraversalNavLink_NotifySmartLinkReached, LinkComp) == 0x000000, "Member 'WrestlerEnemyTraversalNavLink_NotifySmartLinkReached::LinkComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyTraversalNavLink_NotifySmartLinkReached, PathingAgent) == 0x000008, "Member 'WrestlerEnemyTraversalNavLink_NotifySmartLinkReached::PathingAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyTraversalNavLink_NotifySmartLinkReached, DestinationPoint) == 0x000010, "Member 'WrestlerEnemyTraversalNavLink_NotifySmartLinkReached::DestinationPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerEnemyTraversalNavLink \ +static_assert(alignof(AWrestlerEnemyTraversalNavLink) == 0x000008, "Wrong alignment on AWrestlerEnemyTraversalNavLink"); \ +static_assert(sizeof(AWrestlerEnemyTraversalNavLink) == 0x0002F8, "Wrong size on AWrestlerEnemyTraversalNavLink"); \ +static_assert(offsetof(AWrestlerEnemyTraversalNavLink, AbilitySystemComponent) == 0x0002E8, "Member 'AWrestlerEnemyTraversalNavLink::AbilitySystemComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCameraShakeAttributeSet \ +static_assert(alignof(UWrestlerCameraShakeAttributeSet) == 0x000008, "Wrong alignment on UWrestlerCameraShakeAttributeSet"); \ +static_assert(sizeof(UWrestlerCameraShakeAttributeSet) == 0x000060, "Wrong size on UWrestlerCameraShakeAttributeSet"); \ +static_assert(offsetof(UWrestlerCameraShakeAttributeSet, Scale) == 0x000030, "Member 'UWrestlerCameraShakeAttributeSet::Scale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraShakeAttributeSet, Duration) == 0x000040, "Member 'UWrestlerCameraShakeAttributeSet::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraShakeAttributeSet, EndScale) == 0x000050, "Member 'UWrestlerCameraShakeAttributeSet::EndScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCentralContainerWidget \ +static_assert(alignof(UWrestlerCentralContainerWidget) == 0x000008, "Wrong alignment on UWrestlerCentralContainerWidget"); \ +static_assert(sizeof(UWrestlerCentralContainerWidget) == 0x0002E8, "Wrong size on UWrestlerCentralContainerWidget"); \ +static_assert(offsetof(UWrestlerCentralContainerWidget, QuestNotificationWidget) == 0x0002C8, "Member 'UWrestlerCentralContainerWidget::QuestNotificationWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralContainerWidget, MilestoneNotificationWidget) == 0x0002D0, "Member 'UWrestlerCentralContainerWidget::MilestoneNotificationWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralContainerWidget, ContainerPanel) == 0x0002D8, "Member 'UWrestlerCentralContainerWidget::ContainerPanel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySquadManager_HandleEnemyRemovedEvent \ +static_assert(alignof(WrestlerEnemySquadManager_HandleEnemyRemovedEvent) == 0x000008, "Wrong alignment on WrestlerEnemySquadManager_HandleEnemyRemovedEvent"); \ +static_assert(sizeof(WrestlerEnemySquadManager_HandleEnemyRemovedEvent) == 0x000008, "Wrong size on WrestlerEnemySquadManager_HandleEnemyRemovedEvent"); \ +static_assert(offsetof(WrestlerEnemySquadManager_HandleEnemyRemovedEvent, InEnemy) == 0x000000, "Member 'WrestlerEnemySquadManager_HandleEnemyRemovedEvent::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemySquadManager \ +static_assert(alignof(UWrestlerEnemySquadManager) == 0x000008, "Wrong alignment on UWrestlerEnemySquadManager"); \ +static_assert(sizeof(UWrestlerEnemySquadManager) == 0x000078, "Wrong size on UWrestlerEnemySquadManager"); \ +static_assert(offsetof(UWrestlerEnemySquadManager, EnemySquads) == 0x000028, "Member 'UWrestlerEnemySquadManager::EnemySquads' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCentralNotificationWidget \ +static_assert(alignof(UWrestlerCentralNotificationWidget) == 0x000008, "Wrong alignment on UWrestlerCentralNotificationWidget"); \ +static_assert(sizeof(UWrestlerCentralNotificationWidget) == 0x000358, "Wrong size on UWrestlerCentralNotificationWidget"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, NotificationWidgetOverlay) == 0x0002C8, "Member 'UWrestlerCentralNotificationWidget::NotificationWidgetOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, bIsShowing) == 0x0002D0, "Member 'UWrestlerCentralNotificationWidget::bIsShowing' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, bHasExpired) == 0x0002D1, "Member 'UWrestlerCentralNotificationWidget::bHasExpired' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, NotificationData) == 0x0002F0, "Member 'UWrestlerCentralNotificationWidget::NotificationData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, NotificationBigText) == 0x000348, "Member 'UWrestlerCentralNotificationWidget::NotificationBigText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCentralNotificationWidget, NotificationSmallText) == 0x000350, "Member 'UWrestlerCentralNotificationWidget::NotificationSmallText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerChangeVisibilityCollisionTask \ +static_assert(alignof(UWrestlerChangeVisibilityCollisionTask) == 0x000008, "Wrong alignment on UWrestlerChangeVisibilityCollisionTask"); \ +static_assert(sizeof(UWrestlerChangeVisibilityCollisionTask) == 0x000098, "Wrong size on UWrestlerChangeVisibilityCollisionTask"); \ +static_assert(offsetof(UWrestlerChangeVisibilityCollisionTask, ChangeInfo) == 0x000088, "Member 'UWrestlerChangeVisibilityCollisionTask::ChangeInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyIndicatorWidget_OnVisibilityChange \ +static_assert(alignof(WrestlerEnemyIndicatorWidget_OnVisibilityChange) == 0x000001, "Wrong alignment on WrestlerEnemyIndicatorWidget_OnVisibilityChange"); \ +static_assert(sizeof(WrestlerEnemyIndicatorWidget_OnVisibilityChange) == 0x000001, "Wrong size on WrestlerEnemyIndicatorWidget_OnVisibilityChange"); \ +static_assert(offsetof(WrestlerEnemyIndicatorWidget_OnVisibilityChange, bNewVisibility) == 0x000000, "Member 'WrestlerEnemyIndicatorWidget_OnVisibilityChange::bNewVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState \ +static_assert(alignof(WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState) == 0x000001, "Wrong alignment on WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState"); \ +static_assert(sizeof(WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState) == 0x000001, "Wrong size on WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState"); \ +static_assert(offsetof(WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState, InNewEnemyState) == 0x000000, "Member 'WrestlerEnemyIndicatorWidget_SetEnemyIndicatorState::InNewEnemyState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyIndicatorWidget \ +static_assert(alignof(UWrestlerEnemyIndicatorWidget) == 0x000008, "Wrong alignment on UWrestlerEnemyIndicatorWidget"); \ +static_assert(sizeof(UWrestlerEnemyIndicatorWidget) == 0x0002F0, "Wrong size on UWrestlerEnemyIndicatorWidget"); \ +static_assert(offsetof(UWrestlerEnemyIndicatorWidget, AttackImage) == 0x0002C8, "Member 'UWrestlerEnemyIndicatorWidget::AttackImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyIndicatorWidget, IndicatorIcon) == 0x0002D0, "Member 'UWrestlerEnemyIndicatorWidget::IndicatorIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyIndicatorWidget, IndicatorFillBar) == 0x0002D8, "Member 'UWrestlerEnemyIndicatorWidget::IndicatorFillBar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetMovementConfigData \ +static_assert(alignof(WrestlerCharacter_GetMovementConfigData) == 0x000008, "Wrong alignment on WrestlerCharacter_GetMovementConfigData"); \ +static_assert(sizeof(WrestlerCharacter_GetMovementConfigData) == 0x000008, "Wrong size on WrestlerCharacter_GetMovementConfigData"); \ +static_assert(offsetof(WrestlerCharacter_GetMovementConfigData, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetMovementConfigData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_OnNarrativeModeChanged \ +static_assert(alignof(WrestlerCharacter_OnNarrativeModeChanged) == 0x000001, "Wrong alignment on WrestlerCharacter_OnNarrativeModeChanged"); \ +static_assert(sizeof(WrestlerCharacter_OnNarrativeModeChanged) == 0x000001, "Wrong size on WrestlerCharacter_OnNarrativeModeChanged"); \ +static_assert(offsetof(WrestlerCharacter_OnNarrativeModeChanged, InNarrativeModeEnabled) == 0x000000, "Member 'WrestlerCharacter_OnNarrativeModeChanged::InNarrativeModeEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_OnPlayerClanChanged \ +static_assert(alignof(WrestlerCharacter_OnPlayerClanChanged) == 0x000008, "Wrong alignment on WrestlerCharacter_OnPlayerClanChanged"); \ +static_assert(sizeof(WrestlerCharacter_OnPlayerClanChanged) == 0x000008, "Wrong size on WrestlerCharacter_OnPlayerClanChanged"); \ +static_assert(offsetof(WrestlerCharacter_OnPlayerClanChanged, InNewClan) == 0x000000, "Member 'WrestlerCharacter_OnPlayerClanChanged::InNewClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_SetCanJumpFromCrouched \ +static_assert(alignof(WrestlerCharacter_SetCanJumpFromCrouched) == 0x000001, "Wrong alignment on WrestlerCharacter_SetCanJumpFromCrouched"); \ +static_assert(sizeof(WrestlerCharacter_SetCanJumpFromCrouched) == 0x000001, "Wrong size on WrestlerCharacter_SetCanJumpFromCrouched"); \ +static_assert(offsetof(WrestlerCharacter_SetCanJumpFromCrouched, bInCanJump) == 0x000000, "Member 'WrestlerCharacter_SetCanJumpFromCrouched::bInCanJump' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_SetGlideAcceleration \ +static_assert(alignof(WrestlerCharacter_SetGlideAcceleration) == 0x000008, "Wrong alignment on WrestlerCharacter_SetGlideAcceleration"); \ +static_assert(sizeof(WrestlerCharacter_SetGlideAcceleration) == 0x000018, "Wrong size on WrestlerCharacter_SetGlideAcceleration"); \ +static_assert(offsetof(WrestlerCharacter_SetGlideAcceleration, Acceleration) == 0x000000, "Member 'WrestlerCharacter_SetGlideAcceleration::Acceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_SetGlideAvailable \ +static_assert(alignof(WrestlerCharacter_SetGlideAvailable) == 0x000001, "Wrong alignment on WrestlerCharacter_SetGlideAvailable"); \ +static_assert(sizeof(WrestlerCharacter_SetGlideAvailable) == 0x000001, "Wrong size on WrestlerCharacter_SetGlideAvailable"); \ +static_assert(offsetof(WrestlerCharacter_SetGlideAvailable, Available) == 0x000000, "Member 'WrestlerCharacter_SetGlideAvailable::Available' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_SetJumpCount \ +static_assert(alignof(WrestlerCharacter_SetJumpCount) == 0x000004, "Wrong alignment on WrestlerCharacter_SetJumpCount"); \ +static_assert(sizeof(WrestlerCharacter_SetJumpCount) == 0x000004, "Wrong size on WrestlerCharacter_SetJumpCount"); \ +static_assert(offsetof(WrestlerCharacter_SetJumpCount, InJumpCount) == 0x000000, "Member 'WrestlerCharacter_SetJumpCount::InJumpCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_SetStableGround \ +static_assert(alignof(WrestlerCharacter_SetStableGround) == 0x000008, "Wrong alignment on WrestlerCharacter_SetStableGround"); \ +static_assert(sizeof(WrestlerCharacter_SetStableGround) == 0x000018, "Wrong size on WrestlerCharacter_SetStableGround"); \ +static_assert(offsetof(WrestlerCharacter_SetStableGround, InNewStableGround) == 0x000000, "Member 'WrestlerCharacter_SetStableGround::InNewStableGround' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_ToggleSecondaryViewpoint \ +static_assert(alignof(WrestlerCharacter_ToggleSecondaryViewpoint) == 0x000001, "Wrong alignment on WrestlerCharacter_ToggleSecondaryViewpoint"); \ +static_assert(sizeof(WrestlerCharacter_ToggleSecondaryViewpoint) == 0x000001, "Wrong size on WrestlerCharacter_ToggleSecondaryViewpoint"); \ +static_assert(offsetof(WrestlerCharacter_ToggleSecondaryViewpoint, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_ToggleSecondaryViewpoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_ToggleThirdPersonCamera \ +static_assert(alignof(WrestlerCharacter_ToggleThirdPersonCamera) == 0x000001, "Wrong alignment on WrestlerCharacter_ToggleThirdPersonCamera"); \ +static_assert(sizeof(WrestlerCharacter_ToggleThirdPersonCamera) == 0x000001, "Wrong size on WrestlerCharacter_ToggleThirdPersonCamera"); \ +static_assert(offsetof(WrestlerCharacter_ToggleThirdPersonCamera, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_ToggleThirdPersonCamera::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_CanGlide \ +static_assert(alignof(WrestlerCharacter_CanGlide) == 0x000001, "Wrong alignment on WrestlerCharacter_CanGlide"); \ +static_assert(sizeof(WrestlerCharacter_CanGlide) == 0x000001, "Wrong size on WrestlerCharacter_CanGlide"); \ +static_assert(offsetof(WrestlerCharacter_CanGlide, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_CanGlide::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetDistanceToFloor \ +static_assert(alignof(WrestlerCharacter_GetDistanceToFloor) == 0x000004, "Wrong alignment on WrestlerCharacter_GetDistanceToFloor"); \ +static_assert(sizeof(WrestlerCharacter_GetDistanceToFloor) == 0x000008, "Wrong size on WrestlerCharacter_GetDistanceToFloor"); \ +static_assert(offsetof(WrestlerCharacter_GetDistanceToFloor, InCastDistance) == 0x000000, "Member 'WrestlerCharacter_GetDistanceToFloor::InCastDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacter_GetDistanceToFloor, ReturnValue) == 0x000004, "Member 'WrestlerCharacter_GetDistanceToFloor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetEquippedAbilityComponent \ +static_assert(alignof(WrestlerCharacter_GetEquippedAbilityComponent) == 0x000008, "Wrong alignment on WrestlerCharacter_GetEquippedAbilityComponent"); \ +static_assert(sizeof(WrestlerCharacter_GetEquippedAbilityComponent) == 0x000008, "Wrong size on WrestlerCharacter_GetEquippedAbilityComponent"); \ +static_assert(offsetof(WrestlerCharacter_GetEquippedAbilityComponent, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetEquippedAbilityComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetGlideAvailable \ +static_assert(alignof(WrestlerCharacter_GetGlideAvailable) == 0x000001, "Wrong alignment on WrestlerCharacter_GetGlideAvailable"); \ +static_assert(sizeof(WrestlerCharacter_GetGlideAvailable) == 0x000001, "Wrong size on WrestlerCharacter_GetGlideAvailable"); \ +static_assert(offsetof(WrestlerCharacter_GetGlideAvailable, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetGlideAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetIsHeavyLanding \ +static_assert(alignof(WrestlerCharacter_GetIsHeavyLanding) == 0x000001, "Wrong alignment on WrestlerCharacter_GetIsHeavyLanding"); \ +static_assert(sizeof(WrestlerCharacter_GetIsHeavyLanding) == 0x000001, "Wrong size on WrestlerCharacter_GetIsHeavyLanding"); \ +static_assert(offsetof(WrestlerCharacter_GetIsHeavyLanding, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetIsHeavyLanding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetMaxFeedRange \ +static_assert(alignof(WrestlerCharacter_GetMaxFeedRange) == 0x000004, "Wrong alignment on WrestlerCharacter_GetMaxFeedRange"); \ +static_assert(sizeof(WrestlerCharacter_GetMaxFeedRange) == 0x000004, "Wrong size on WrestlerCharacter_GetMaxFeedRange"); \ +static_assert(offsetof(WrestlerCharacter_GetMaxFeedRange, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetMaxFeedRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetSprintSpeed \ +static_assert(alignof(WrestlerCharacter_GetSprintSpeed) == 0x000004, "Wrong alignment on WrestlerCharacter_GetSprintSpeed"); \ +static_assert(sizeof(WrestlerCharacter_GetSprintSpeed) == 0x000004, "Wrong size on WrestlerCharacter_GetSprintSpeed"); \ +static_assert(offsetof(WrestlerCharacter_GetSprintSpeed, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetSprintSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetStableGround \ +static_assert(alignof(WrestlerCharacter_GetStableGround) == 0x000008, "Wrong alignment on WrestlerCharacter_GetStableGround"); \ +static_assert(sizeof(WrestlerCharacter_GetStableGround) == 0x000018, "Wrong size on WrestlerCharacter_GetStableGround"); \ +static_assert(offsetof(WrestlerCharacter_GetStableGround, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetStableGround::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetVelocityLocal \ +static_assert(alignof(WrestlerCharacter_GetVelocityLocal) == 0x000008, "Wrong alignment on WrestlerCharacter_GetVelocityLocal"); \ +static_assert(sizeof(WrestlerCharacter_GetVelocityLocal) == 0x000018, "Wrong size on WrestlerCharacter_GetVelocityLocal"); \ +static_assert(offsetof(WrestlerCharacter_GetVelocityLocal, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetVelocityLocal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_GetWalkSpeed \ +static_assert(alignof(WrestlerCharacter_GetWalkSpeed) == 0x000004, "Wrong alignment on WrestlerCharacter_GetWalkSpeed"); \ +static_assert(sizeof(WrestlerCharacter_GetWalkSpeed) == 0x000004, "Wrong size on WrestlerCharacter_GetWalkSpeed"); \ +static_assert(offsetof(WrestlerCharacter_GetWalkSpeed, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_GetWalkSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacter_IsGliding \ +static_assert(alignof(WrestlerCharacter_IsGliding) == 0x000001, "Wrong alignment on WrestlerCharacter_IsGliding"); \ +static_assert(sizeof(WrestlerCharacter_IsGliding) == 0x000001, "Wrong size on WrestlerCharacter_IsGliding"); \ +static_assert(offsetof(WrestlerCharacter_IsGliding, ReturnValue) == 0x000000, "Member 'WrestlerCharacter_IsGliding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCharacter \ +static_assert(alignof(AWrestlerCharacter) == 0x000010, "Wrong alignment on AWrestlerCharacter"); \ +static_assert(sizeof(AWrestlerCharacter) == 0x000CA0, "Wrong size on AWrestlerCharacter"); \ +static_assert(offsetof(AWrestlerCharacter, OnPlayerCharacterInitializedEvent) == 0x000AC8, "Member 'AWrestlerCharacter::OnPlayerCharacterInitializedEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnJumpInputReleased) == 0x000AD8, "Member 'AWrestlerCharacter::OnJumpInputReleased' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnJumpInputHeld) == 0x000AE8, "Member 'AWrestlerCharacter::OnJumpInputHeld' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnTeleportSucceeded) == 0x000AF8, "Member 'AWrestlerCharacter::OnTeleportSucceeded' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnStealthActiveEvent) == 0x000B08, "Member 'AWrestlerCharacter::OnStealthActiveEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnDealMeleeDamageEvent) == 0x000B18, "Member 'AWrestlerCharacter::OnDealMeleeDamageEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnReceiveHitDamageEvent) == 0x000B28, "Member 'AWrestlerCharacter::OnReceiveHitDamageEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, OnFeedEndEvent) == 0x000B38, "Member 'AWrestlerCharacter::OnFeedEndEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, TorporTag) == 0x000B48, "Member 'AWrestlerCharacter::TorporTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, TorporAbility) == 0x000B50, "Member 'AWrestlerCharacter::TorporAbility' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, StealthTag) == 0x000B78, "Member 'AWrestlerCharacter::StealthTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, HitReactTag) == 0x000B80, "Member 'AWrestlerCharacter::HitReactTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, FeedTag) == 0x000B88, "Member 'AWrestlerCharacter::FeedTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, NarrativeModeTag) == 0x000B90, "Member 'AWrestlerCharacter::NarrativeModeTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, CrouchControlCue) == 0x000B98, "Member 'AWrestlerCharacter::CrouchControlCue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, CombatFeedMoveToDataSoftPtr) == 0x000BA0, "Member 'AWrestlerCharacter::CombatFeedMoveToDataSoftPtr' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, CombatFeedMoveToData) == 0x000BC8, "Member 'AWrestlerCharacter::CombatFeedMoveToData' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, EquippedAbilities) == 0x000BE8, "Member 'AWrestlerCharacter::EquippedAbilities' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, AutoTraversalTags) == 0x000BF0, "Member 'AWrestlerCharacter::AutoTraversalTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, bGlideAvailable) == 0x000C10, "Member 'AWrestlerCharacter::bGlideAvailable' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, bGlidePressed) == 0x000C11, "Member 'AWrestlerCharacter::bGlidePressed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, MovementParams) == 0x000C14, "Member 'AWrestlerCharacter::MovementParams' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, ControlComponent) == 0x000C30, "Member 'AWrestlerCharacter::ControlComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, TraversalComponent) == 0x000C38, "Member 'AWrestlerCharacter::TraversalComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, EquippedAbilityComponent) == 0x000C40, "Member 'AWrestlerCharacter::EquippedAbilityComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, PassiveTargetingComponent) == 0x000C48, "Member 'AWrestlerCharacter::PassiveTargetingComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, XPComponent) == 0x000C50, "Member 'AWrestlerCharacter::XPComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, bModifyCollisionDuringTraversal) == 0x000C58, "Member 'AWrestlerCharacter::bModifyCollisionDuringTraversal' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, StableGround) == 0x000C70, "Member 'AWrestlerCharacter::StableGround' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, skillPoints) == 0x000C88, "Member 'AWrestlerCharacter::skillPoints' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, TotalAbilityPoints) == 0x000C8C, "Member 'AWrestlerCharacter::TotalAbilityPoints' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, CurrentPassiveAbility) == 0x000C90, "Member 'AWrestlerCharacter::CurrentPassiveAbility' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCharacter, DialogueInfo) == 0x000C98, "Member 'AWrestlerCharacter::DialogueInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData \ +static_assert(alignof(WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData"); \ +static_assert(sizeof(WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData) == 0x0000A8, "Wrong size on WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData"); \ +static_assert(offsetof(WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData, InPlayerVariant) == 0x000000, "Member 'WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData::InPlayerVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeDataAsset_GetCurrentOutfitData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked \ +static_assert(alignof(WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked) == 0x000001, "Wrong alignment on WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked"); \ +static_assert(sizeof(WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked) == 0x000001, "Wrong size on WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked"); \ +static_assert(offsetof(WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeDataAsset_IsCostumeUnlocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeDataAsset_IsCostumeViewed \ +static_assert(alignof(WrestlerCharacterCostumeDataAsset_IsCostumeViewed) == 0x000001, "Wrong alignment on WrestlerCharacterCostumeDataAsset_IsCostumeViewed"); \ +static_assert(sizeof(WrestlerCharacterCostumeDataAsset_IsCostumeViewed) == 0x000001, "Wrong size on WrestlerCharacterCostumeDataAsset_IsCostumeViewed"); \ +static_assert(offsetof(WrestlerCharacterCostumeDataAsset_IsCostumeViewed, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeDataAsset_IsCostumeViewed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterCostumeDataAsset \ +static_assert(alignof(UWrestlerCharacterCostumeDataAsset) == 0x000008, "Wrong alignment on UWrestlerCharacterCostumeDataAsset"); \ +static_assert(sizeof(UWrestlerCharacterCostumeDataAsset) == 0x0001E8, "Wrong size on UWrestlerCharacterCostumeDataAsset"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, PlayerFem) == 0x000030, "Member 'UWrestlerCharacterCostumeDataAsset::PlayerFem' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, PlayerMasc) == 0x0000D0, "Member 'UWrestlerCharacterCostumeDataAsset::PlayerMasc' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, CostumeName) == 0x000170, "Member 'UWrestlerCharacterCostumeDataAsset::CostumeName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, CostumeDescription) == 0x000188, "Member 'UWrestlerCharacterCostumeDataAsset::CostumeDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, UnlockAbilityName) == 0x0001A0, "Member 'UWrestlerCharacterCostumeDataAsset::UnlockAbilityName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, CostumeUnlockDescription) == 0x0001B8, "Member 'UWrestlerCharacterCostumeDataAsset::CostumeUnlockDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, CostumeID) == 0x0001D0, "Member 'UWrestlerCharacterCostumeDataAsset::CostumeID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, AudioSwitch) == 0x0001D8, "Member 'UWrestlerCharacterCostumeDataAsset::AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeDataAsset, FeetAudioSwitch) == 0x0001E0, "Member 'UWrestlerCharacterCostumeDataAsset::FeetAudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_ActorDied \ +static_assert(alignof(WrestlerTokenStealingController_ActorDied) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_ActorDied"); \ +static_assert(sizeof(WrestlerTokenStealingController_ActorDied) == 0x000008, "Wrong size on WrestlerTokenStealingController_ActorDied"); \ +static_assert(offsetof(WrestlerTokenStealingController_ActorDied, InDiedActor) == 0x000000, "Member 'WrestlerTokenStealingController_ActorDied::InDiedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_LastActiveActor \ +static_assert(alignof(WrestlerTokenStealingController_LastActiveActor) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_LastActiveActor"); \ +static_assert(sizeof(WrestlerTokenStealingController_LastActiveActor) == 0x000008, "Wrong size on WrestlerTokenStealingController_LastActiveActor"); \ +static_assert(offsetof(WrestlerTokenStealingController_LastActiveActor, InActiveActor) == 0x000000, "Member 'WrestlerTokenStealingController_LastActiveActor::InActiveActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_RequestActorCompare \ +static_assert(alignof(WrestlerTokenStealingController_RequestActorCompare) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_RequestActorCompare"); \ +static_assert(sizeof(WrestlerTokenStealingController_RequestActorCompare) == 0x000020, "Wrong size on WrestlerTokenStealingController_RequestActorCompare"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestActorCompare, InTargetActor) == 0x000000, "Member 'WrestlerTokenStealingController_RequestActorCompare::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestActorCompare, InQueuedTokens) == 0x000008, "Member 'WrestlerTokenStealingController_RequestActorCompare::InQueuedTokens' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestActorCompare, ReturnValue) == 0x000018, "Member 'WrestlerTokenStealingController_RequestActorCompare::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_GetOwningActor \ +static_assert(alignof(WrestlerTokenStealingController_GetOwningActor) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_GetOwningActor"); \ +static_assert(sizeof(WrestlerTokenStealingController_GetOwningActor) == 0x000008, "Wrong size on WrestlerTokenStealingController_GetOwningActor"); \ +static_assert(offsetof(WrestlerTokenStealingController_GetOwningActor, ReturnValue) == 0x000000, "Member 'WrestlerTokenStealingController_GetOwningActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_GetScore \ +static_assert(alignof(WrestlerTokenStealingController_GetScore) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_GetScore"); \ +static_assert(sizeof(WrestlerTokenStealingController_GetScore) == 0x000018, "Wrong size on WrestlerTokenStealingController_GetScore"); \ +static_assert(offsetof(WrestlerTokenStealingController_GetScore, InRequestingActor) == 0x000000, "Member 'WrestlerTokenStealingController_GetScore::InRequestingActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_GetScore, InTarget) == 0x000008, "Member 'WrestlerTokenStealingController_GetScore::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_GetScore, ReturnValue) == 0x000010, "Member 'WrestlerTokenStealingController_GetScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenStealingController_RequestTokenSteal \ +static_assert(alignof(WrestlerTokenStealingController_RequestTokenSteal) == 0x000008, "Wrong alignment on WrestlerTokenStealingController_RequestTokenSteal"); \ +static_assert(sizeof(WrestlerTokenStealingController_RequestTokenSteal) == 0x000088, "Wrong size on WrestlerTokenStealingController_RequestTokenSteal"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestTokenSteal, InQuery) == 0x000000, "Member 'WrestlerTokenStealingController_RequestTokenSteal::InQuery' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestTokenSteal, InTokenContainer) == 0x000010, "Member 'WrestlerTokenStealingController_RequestTokenSteal::InTokenContainer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenStealingController_RequestTokenSteal, ReturnValue) == 0x000070, "Member 'WrestlerTokenStealingController_RequestTokenSteal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTokenStealingController \ +static_assert(alignof(UWrestlerTokenStealingController) == 0x000008, "Wrong alignment on UWrestlerTokenStealingController"); \ +static_assert(sizeof(UWrestlerTokenStealingController) == 0x000030, "Wrong size on UWrestlerTokenStealingController"); \ +static_assert(offsetof(UWrestlerTokenStealingController, OwningActor) == 0x000028, "Member 'UWrestlerTokenStealingController::OwningActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyTokenStealingController \ +static_assert(alignof(UWrestlerEnemyTokenStealingController) == 0x000008, "Wrong alignment on UWrestlerEnemyTokenStealingController"); \ +static_assert(sizeof(UWrestlerEnemyTokenStealingController) == 0x0000A8, "Wrong size on UWrestlerEnemyTokenStealingController"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, MaxDistance) == 0x000030, "Member 'UWrestlerEnemyTokenStealingController::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, MaxAngle) == 0x000034, "Member 'UWrestlerEnemyTokenStealingController::MaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, CollisionChannel) == 0x000038, "Member 'UWrestlerEnemyTokenStealingController::CollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, Handicap) == 0x000040, "Member 'UWrestlerEnemyTokenStealingController::Handicap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, HandicapScore) == 0x000090, "Member 'UWrestlerEnemyTokenStealingController::HandicapScore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, CurveDistance) == 0x000098, "Member 'UWrestlerEnemyTokenStealingController::CurveDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTokenStealingController, CurveAngle) == 0x0000A0, "Member 'UWrestlerEnemyTokenStealingController::CurveAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_GetRPGMenu \ +static_assert(alignof(WrestlerRPGMenuTabWidget_GetRPGMenu) == 0x000008, "Wrong alignment on WrestlerRPGMenuTabWidget_GetRPGMenu"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_GetRPGMenu) == 0x000008, "Wrong size on WrestlerRPGMenuTabWidget_GetRPGMenu"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_GetRPGMenu, ReturnValue) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_GetRPGMenu::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_OnTabButtonPressed \ +static_assert(alignof(WrestlerRPGMenuTabWidget_OnTabButtonPressed) == 0x000008, "Wrong alignment on WrestlerRPGMenuTabWidget_OnTabButtonPressed"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_OnTabButtonPressed) == 0x000008, "Wrong size on WrestlerRPGMenuTabWidget_OnTabButtonPressed"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_OnTabButtonPressed, InWidget) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_OnTabButtonPressed::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_OnWidgetIndexChanged \ +static_assert(alignof(WrestlerRPGMenuTabWidget_OnWidgetIndexChanged) == 0x000004, "Wrong alignment on WrestlerRPGMenuTabWidget_OnWidgetIndexChanged"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_OnWidgetIndexChanged) == 0x000008, "Wrong size on WrestlerRPGMenuTabWidget_OnWidgetIndexChanged"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_OnWidgetIndexChanged, OldIndex) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_OnWidgetIndexChanged::OldIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_OnWidgetIndexChanged, NewIndex) == 0x000004, "Member 'WrestlerRPGMenuTabWidget_OnWidgetIndexChanged::NewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_ResetCanSkipCutscene \ +static_assert(alignof(WrestlerRPGMenuTabWidget_ResetCanSkipCutscene) == 0x000004, "Wrong alignment on WrestlerRPGMenuTabWidget_ResetCanSkipCutscene"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_ResetCanSkipCutscene) == 0x000008, "Wrong size on WrestlerRPGMenuTabWidget_ResetCanSkipCutscene"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_ResetCanSkipCutscene, InMenuTag) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_ResetCanSkipCutscene::InMenuTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon \ +static_assert(alignof(WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon) == 0x000001, "Wrong alignment on WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon) == 0x000001, "Wrong size on WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon, ReturnValue) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_ShouldShowNotificationIcon::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching \ +static_assert(alignof(WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching) == 0x000001, "Wrong alignment on WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching"); \ +static_assert(sizeof(WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching) == 0x000001, "Wrong size on WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching"); \ +static_assert(offsetof(WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching, ReturnValue) == 0x000000, "Member 'WrestlerRPGMenuTabWidget_IsRequiringConfirmationOnSwitching::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuTabWidget \ +static_assert(alignof(UWrestlerRPGMenuTabWidget) == 0x000008, "Wrong alignment on UWrestlerRPGMenuTabWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuTabWidget) == 0x000490, "Wrong size on UWrestlerRPGMenuTabWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, ConfirmationEnded) == 0x000410, "Member 'UWrestlerRPGMenuTabWidget::ConfirmationEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, TapSwitcher) == 0x000420, "Member 'UWrestlerRPGMenuTabWidget::TapSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, ButtonScrollBox) == 0x000428, "Member 'UWrestlerRPGMenuTabWidget::ButtonScrollBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, CurrentSelectedButton) == 0x000430, "Member 'UWrestlerRPGMenuTabWidget::CurrentSelectedButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, CurrentActiveTab) == 0x000438, "Member 'UWrestlerRPGMenuTabWidget::CurrentActiveTab' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, SubLayoutIncreaseInputActionData) == 0x000440, "Member 'UWrestlerRPGMenuTabWidget::SubLayoutIncreaseInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, SubLayoutDecreaseInputActionData) == 0x000458, "Member 'UWrestlerRPGMenuTabWidget::SubLayoutDecreaseInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, BackInputActionData) == 0x000470, "Member 'UWrestlerRPGMenuTabWidget::BackInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuTabWidget, bRequiresConfirmationOnSwitching) == 0x000484, "Member 'UWrestlerRPGMenuTabWidget::bRequiresConfirmationOnSwitching' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_SetRotateToTarget \ +static_assert(alignof(UWrestlerStateTreeTask_SetRotateToTarget) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_SetRotateToTarget"); \ +static_assert(sizeof(UWrestlerStateTreeTask_SetRotateToTarget) == 0x000048, "Wrong size on UWrestlerStateTreeTask_SetRotateToTarget"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GePiercingButtonWithTag \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GePiercingButtonWithTag) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GePiercingButtonWithTag"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GePiercingButtonWithTag) == 0x000010, "Wrong size on WrestlerCharacterCostumeMenu_GePiercingButtonWithTag"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GePiercingButtonWithTag, InPiercingID) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GePiercingButtonWithTag::InPiercingID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GePiercingButtonWithTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeMenu_GePiercingButtonWithTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag) == 0x000010, "Wrong size on WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag, InCostumeID) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag::InCostumeID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeMenu_GetCostumeButtonWithTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEquippedCostumeButton \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEquippedCostumeButton) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEquippedCostumeButton"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEquippedCostumeButton) == 0x000008, "Wrong size on WrestlerCharacterCostumeMenu_GetEquippedCostumeButton"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEquippedCostumeButton, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEquippedCostumeButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEquippedEyesButton \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEquippedEyesButton) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEquippedEyesButton"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEquippedEyesButton) == 0x000008, "Wrong size on WrestlerCharacterCostumeMenu_GetEquippedEyesButton"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEquippedEyesButton, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEquippedEyesButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEquippedHairButton \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEquippedHairButton) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEquippedHairButton"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEquippedHairButton) == 0x000008, "Wrong size on WrestlerCharacterCostumeMenu_GetEquippedHairButton"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEquippedHairButton, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEquippedHairButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton) == 0x000008, "Wrong size on WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEquippedMakeUpButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEquippedPiercingButton \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEquippedPiercingButton) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEquippedPiercingButton"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEquippedPiercingButton) == 0x000008, "Wrong size on WrestlerCharacterCostumeMenu_GetEquippedPiercingButton"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEquippedPiercingButton, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEquippedPiercingButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetEyesButtonWithTag \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetEyesButtonWithTag) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetEyesButtonWithTag"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetEyesButtonWithTag) == 0x000010, "Wrong size on WrestlerCharacterCostumeMenu_GetEyesButtonWithTag"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEyesButtonWithTag, InEyesID) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetEyesButtonWithTag::InEyesID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetEyesButtonWithTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeMenu_GetEyesButtonWithTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetHairButtonWithTag \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetHairButtonWithTag) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetHairButtonWithTag"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetHairButtonWithTag) == 0x000010, "Wrong size on WrestlerCharacterCostumeMenu_GetHairButtonWithTag"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetHairButtonWithTag, InHairID) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetHairButtonWithTag::InHairID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetHairButtonWithTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeMenu_GetHairButtonWithTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag \ +static_assert(alignof(WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag) == 0x000008, "Wrong alignment on WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag) == 0x000010, "Wrong size on WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag, InMakeUpID) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag::InMakeUpID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumeMenu_GetMakeUpButtonWithTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumeMenu_SwapRowPositions \ +static_assert(alignof(WrestlerCharacterCostumeMenu_SwapRowPositions) == 0x000004, "Wrong alignment on WrestlerCharacterCostumeMenu_SwapRowPositions"); \ +static_assert(sizeof(WrestlerCharacterCostumeMenu_SwapRowPositions) == 0x000004, "Wrong size on WrestlerCharacterCostumeMenu_SwapRowPositions"); \ +static_assert(offsetof(WrestlerCharacterCostumeMenu_SwapRowPositions, InClanValue) == 0x000000, "Member 'WrestlerCharacterCostumeMenu_SwapRowPositions::InClanValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterCostumeMenu \ +static_assert(alignof(UWrestlerCharacterCostumeMenu) == 0x000008, "Wrong alignment on UWrestlerCharacterCostumeMenu"); \ +static_assert(sizeof(UWrestlerCharacterCostumeMenu) == 0x0004E0, "Wrong size on UWrestlerCharacterCostumeMenu"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, CostumePanel) == 0x000490, "Member 'UWrestlerCharacterCostumeMenu::CostumePanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, HairGridPanel) == 0x000498, "Member 'UWrestlerCharacterCostumeMenu::HairGridPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, MakeUpGridPanel) == 0x0004A0, "Member 'UWrestlerCharacterCostumeMenu::MakeUpGridPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, PiercingGridPanel) == 0x0004A8, "Member 'UWrestlerCharacterCostumeMenu::PiercingGridPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, EyesGridPanel) == 0x0004B0, "Member 'UWrestlerCharacterCostumeMenu::EyesGridPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, bSwapPerformed) == 0x0004B8, "Member 'UWrestlerCharacterCostumeMenu::bSwapPerformed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, HairCollectionDataAsset) == 0x0004C0, "Member 'UWrestlerCharacterCostumeMenu::HairCollectionDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, MakeUpCollectionDataAsset) == 0x0004C8, "Member 'UWrestlerCharacterCostumeMenu::MakeUpCollectionDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, PiercingCollectionDataAsset) == 0x0004D0, "Member 'UWrestlerCharacterCostumeMenu::PiercingCollectionDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumeMenu, EyesCollectionDataAsset) == 0x0004D8, "Member 'UWrestlerCharacterCostumeMenu::EyesCollectionDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_MassSightTarget \ +static_assert(alignof(UWrestlerEnvQueryContext_MassSightTarget) == 0x000008, "Wrong alignment on UWrestlerEnvQueryContext_MassSightTarget"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_MassSightTarget) == 0x000028, "Wrong size on UWrestlerEnvQueryContext_MassSightTarget"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassScaredTagAddedProcessor \ +static_assert(alignof(UWrestlerMassScaredTagAddedProcessor) == 0x000008, "Wrong alignment on UWrestlerMassScaredTagAddedProcessor"); \ +static_assert(sizeof(UWrestlerMassScaredTagAddedProcessor) == 0x000370, "Wrong size on UWrestlerMassScaredTagAddedProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumesCollection_GetCostumeFromID \ +static_assert(alignof(WrestlerCharacterCostumesCollection_GetCostumeFromID) == 0x000008, "Wrong alignment on WrestlerCharacterCostumesCollection_GetCostumeFromID"); \ +static_assert(sizeof(WrestlerCharacterCostumesCollection_GetCostumeFromID) == 0x000010, "Wrong size on WrestlerCharacterCostumesCollection_GetCostumeFromID"); \ +static_assert(offsetof(WrestlerCharacterCostumesCollection_GetCostumeFromID, InID) == 0x000000, "Member 'WrestlerCharacterCostumesCollection_GetCostumeFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterCostumesCollection_GetCostumeFromID, ReturnValue) == 0x000008, "Member 'WrestlerCharacterCostumesCollection_GetCostumeFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterCostumesCollection \ +static_assert(alignof(UWrestlerCharacterCostumesCollection) == 0x000008, "Wrong alignment on UWrestlerCharacterCostumesCollection"); \ +static_assert(sizeof(UWrestlerCharacterCostumesCollection) == 0x000080, "Wrong size on UWrestlerCharacterCostumesCollection"); \ +static_assert(offsetof(UWrestlerCharacterCostumesCollection, Costumes) == 0x000030, "Member 'UWrestlerCharacterCostumesCollection::Costumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassCanRemovePlayerActionsObserverProcessor \ +static_assert(alignof(UWrestlerMassCanRemovePlayerActionsObserverProcessor) == 0x000008, "Wrong alignment on UWrestlerMassCanRemovePlayerActionsObserverProcessor"); \ +static_assert(sizeof(UWrestlerMassCanRemovePlayerActionsObserverProcessor) == 0x000370, "Wrong size on UWrestlerMassCanRemovePlayerActionsObserverProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_GetAssetDLC \ +static_assert(alignof(WrestlerCharacterCostumisationButton_GetAssetDLC) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_GetAssetDLC"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_GetAssetDLC) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_GetAssetDLC"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_GetAssetDLC, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_GetAssetDLC::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset \ +static_assert(alignof(WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset) == 0x000008, "Wrong size on WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_GetCharacterItemDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant \ +static_assert(alignof(WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant) == 0x0000A0, "Wrong size on WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_GetCurrentOutfitVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_GetCustomButtonType \ +static_assert(alignof(WrestlerCharacterCostumisationButton_GetCustomButtonType) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_GetCustomButtonType"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_GetCustomButtonType) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_GetCustomButtonType"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_GetCustomButtonType, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_GetCustomButtonType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsButtonUnlock \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsButtonUnlock) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsButtonUnlock"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsButtonUnlock) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsButtonUnlock"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsButtonUnlock, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsButtonUnlock::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsCostumeEquipped \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsCostumeEquipped) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsCostumeEquipped"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsCostumeEquipped) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsCostumeEquipped"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsCostumeEquipped, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsCostumeEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsEyesEquipped \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsEyesEquipped) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsEyesEquipped"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsEyesEquipped) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsEyesEquipped"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsEyesEquipped, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsEyesEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsHairEquipped \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsHairEquipped) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsHairEquipped"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsHairEquipped) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsHairEquipped"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsHairEquipped, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsHairEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsMakeUpEquipped \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsMakeUpEquipped) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsMakeUpEquipped"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsMakeUpEquipped) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsMakeUpEquipped"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsMakeUpEquipped, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsMakeUpEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_IsPiercingEquipped \ +static_assert(alignof(WrestlerCharacterCostumisationButton_IsPiercingEquipped) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_IsPiercingEquipped"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_IsPiercingEquipped) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_IsPiercingEquipped"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_IsPiercingEquipped, ReturnValue) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_IsPiercingEquipped::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_OnCostumeChanged \ +static_assert(alignof(WrestlerCharacterCostumisationButton_OnCostumeChanged) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_OnCostumeChanged"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_OnCostumeChanged) == 0x000008, "Wrong size on WrestlerCharacterCostumisationButton_OnCostumeChanged"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_OnCostumeChanged, InButton) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_OnCostumeChanged::InButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_OnCostumeChangeStarted \ +static_assert(alignof(WrestlerCharacterCostumisationButton_OnCostumeChangeStarted) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_OnCostumeChangeStarted"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_OnCostumeChangeStarted) == 0x000008, "Wrong size on WrestlerCharacterCostumisationButton_OnCostumeChangeStarted"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_OnCostumeChangeStarted, InButton) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_OnCostumeChangeStarted::InButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_SetButtonIconTexture \ +static_assert(alignof(WrestlerCharacterCostumisationButton_SetButtonIconTexture) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_SetButtonIconTexture"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_SetButtonIconTexture) == 0x000008, "Wrong size on WrestlerCharacterCostumisationButton_SetButtonIconTexture"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_SetButtonIconTexture, InTexture) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_SetButtonIconTexture::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset \ +static_assert(alignof(WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset) == 0x000008, "Wrong alignment on WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset) == 0x000008, "Wrong size on WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset, InItemDataAsset) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_SetCharacterItemDataAsset::InItemDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterCostumisationButton_SetCustomButtonType \ +static_assert(alignof(WrestlerCharacterCostumisationButton_SetCustomButtonType) == 0x000001, "Wrong alignment on WrestlerCharacterCostumisationButton_SetCustomButtonType"); \ +static_assert(sizeof(WrestlerCharacterCostumisationButton_SetCustomButtonType) == 0x000001, "Wrong size on WrestlerCharacterCostumisationButton_SetCustomButtonType"); \ +static_assert(offsetof(WrestlerCharacterCostumisationButton_SetCustomButtonType, InButtonType) == 0x000000, "Member 'WrestlerCharacterCostumisationButton_SetCustomButtonType::InButtonType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterCostumisationButton \ +static_assert(alignof(UWrestlerCharacterCostumisationButton) == 0x000010, "Wrong alignment on UWrestlerCharacterCostumisationButton"); \ +static_assert(sizeof(UWrestlerCharacterCostumisationButton) == 0x001450, "Wrong size on UWrestlerCharacterCostumisationButton"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, CustomButtonType) == 0x0013E0, "Member 'UWrestlerCharacterCostumisationButton::CustomButtonType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, bIsCostumeButton) == 0x0013E1, "Member 'UWrestlerCharacterCostumisationButton::bIsCostumeButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, Clan) == 0x0013E2, "Member 'UWrestlerCharacterCostumisationButton::Clan' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, OnCostumeChangedCallback) == 0x0013E8, "Member 'UWrestlerCharacterCostumisationButton::OnCostumeChangedCallback' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, OnCostumeChangeStartedCallBack) == 0x0013F8, "Member 'UWrestlerCharacterCostumisationButton::OnCostumeChangeStartedCallBack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, CharacterItemDataAsset) == 0x001408, "Member 'UWrestlerCharacterCostumisationButton::CharacterItemDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, CostumeDataAsset) == 0x001410, "Member 'UWrestlerCharacterCostumisationButton::CostumeDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, ButtonIcon) == 0x001418, "Member 'UWrestlerCharacterCostumisationButton::ButtonIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, ButtonIcon_Locked) == 0x001420, "Member 'UWrestlerCharacterCostumisationButton::ButtonIcon_Locked' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, ButtonIcon_LockedContainer) == 0x001428, "Member 'UWrestlerCharacterCostumisationButton::ButtonIcon_LockedContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, EquipIcon) == 0x001430, "Member 'UWrestlerCharacterCostumisationButton::EquipIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, IconScaleBox) == 0x001438, "Member 'UWrestlerCharacterCostumisationButton::IconScaleBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterCostumisationButton, CostumeNotViewedIcon) == 0x001440, "Member 'UWrestlerCharacterCostumisationButton::CostumeNotViewedIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEntityAwarenessWidget \ +static_assert(alignof(UWrestlerEntityAwarenessWidget) == 0x000010, "Wrong alignment on UWrestlerEntityAwarenessWidget"); \ +static_assert(sizeof(UWrestlerEntityAwarenessWidget) == 0x000860, "Wrong size on UWrestlerEntityAwarenessWidget"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, AwarenessProgress) == 0x0002C8, "Member 'UWrestlerEntityAwarenessWidget::AwarenessProgress' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, AwarenessBackground) == 0x0002D0, "Member 'UWrestlerEntityAwarenessWidget::AwarenessBackground' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, AwarenessBorder) == 0x0002D8, "Member 'UWrestlerEntityAwarenessWidget::AwarenessBorder' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, SmoothAwarenessLerpSpeed) == 0x0002E0, "Member 'UWrestlerEntityAwarenessWidget::SmoothAwarenessLerpSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, InvestigateWidgetData) == 0x0002F0, "Member 'UWrestlerEntityAwarenessWidget::InvestigateWidgetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEntityAwarenessWidget, CombatWidgetData) == 0x0005A0, "Member 'UWrestlerEntityAwarenessWidget::CombatWidgetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterEyesDataAsset_GetEyesTexture \ +static_assert(alignof(WrestlerCharacterEyesDataAsset_GetEyesTexture) == 0x000008, "Wrong alignment on WrestlerCharacterEyesDataAsset_GetEyesTexture"); \ +static_assert(sizeof(WrestlerCharacterEyesDataAsset_GetEyesTexture) == 0x000028, "Wrong size on WrestlerCharacterEyesDataAsset_GetEyesTexture"); \ +static_assert(offsetof(WrestlerCharacterEyesDataAsset_GetEyesTexture, ReturnValue) == 0x000000, "Member 'WrestlerCharacterEyesDataAsset_GetEyesTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterEyesDataAsset \ +static_assert(alignof(UWrestlerCharacterEyesDataAsset) == 0x000008, "Wrong alignment on UWrestlerCharacterEyesDataAsset"); \ +static_assert(sizeof(UWrestlerCharacterEyesDataAsset) == 0x000090, "Wrong size on UWrestlerCharacterEyesDataAsset"); \ +static_assert(offsetof(UWrestlerCharacterEyesDataAsset, EyesID) == 0x000030, "Member 'UWrestlerCharacterEyesDataAsset::EyesID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterEyesDataAsset, EyesButtonTexture) == 0x000038, "Member 'UWrestlerCharacterEyesDataAsset::EyesButtonTexture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterEyesDataAsset, EyesMaterial) == 0x000060, "Member 'UWrestlerCharacterEyesDataAsset::EyesMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterEyesDataAsset, BelongsToDLC) == 0x000088, "Member 'UWrestlerCharacterEyesDataAsset::BelongsToDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterEyesCollection_GetEyesArray \ +static_assert(alignof(WrestlerCharacterEyesCollection_GetEyesArray) == 0x000008, "Wrong alignment on WrestlerCharacterEyesCollection_GetEyesArray"); \ +static_assert(sizeof(WrestlerCharacterEyesCollection_GetEyesArray) == 0x000010, "Wrong size on WrestlerCharacterEyesCollection_GetEyesArray"); \ +static_assert(offsetof(WrestlerCharacterEyesCollection_GetEyesArray, ReturnValue) == 0x000000, "Member 'WrestlerCharacterEyesCollection_GetEyesArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterEyesCollection_GetEyesFromID \ +static_assert(alignof(WrestlerCharacterEyesCollection_GetEyesFromID) == 0x000008, "Wrong alignment on WrestlerCharacterEyesCollection_GetEyesFromID"); \ +static_assert(sizeof(WrestlerCharacterEyesCollection_GetEyesFromID) == 0x000030, "Wrong size on WrestlerCharacterEyesCollection_GetEyesFromID"); \ +static_assert(offsetof(WrestlerCharacterEyesCollection_GetEyesFromID, InID) == 0x000000, "Member 'WrestlerCharacterEyesCollection_GetEyesFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterEyesCollection_GetEyesFromID, ReturnValue) == 0x000008, "Member 'WrestlerCharacterEyesCollection_GetEyesFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterEyesCollection \ +static_assert(alignof(UWrestlerCharacterEyesCollection) == 0x000008, "Wrong alignment on UWrestlerCharacterEyesCollection"); \ +static_assert(sizeof(UWrestlerCharacterEyesCollection) == 0x000040, "Wrong size on UWrestlerCharacterEyesCollection"); \ +static_assert(offsetof(UWrestlerCharacterEyesCollection, EyesArray) == 0x000030, "Member 'UWrestlerCharacterEyesCollection::EyesArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_IsFollower \ +static_assert(alignof(WrestlerEnemySubsystem_IsFollower) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_IsFollower"); \ +static_assert(sizeof(WrestlerEnemySubsystem_IsFollower) == 0x000010, "Wrong size on WrestlerEnemySubsystem_IsFollower"); \ +static_assert(offsetof(WrestlerEnemySubsystem_IsFollower, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_IsFollower::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_IsFollower, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_IsFollower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_IsLeader \ +static_assert(alignof(WrestlerEnemySubsystem_IsLeader) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_IsLeader"); \ +static_assert(sizeof(WrestlerEnemySubsystem_IsLeader) == 0x000010, "Wrong size on WrestlerEnemySubsystem_IsLeader"); \ +static_assert(offsetof(WrestlerEnemySubsystem_IsLeader, InLeader) == 0x000000, "Member 'WrestlerEnemySubsystem_IsLeader::InLeader' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_IsLeader, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_IsLeader::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_AddSquadMember \ +static_assert(alignof(WrestlerEnemySubsystem_K2_AddSquadMember) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_AddSquadMember"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_AddSquadMember) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_AddSquadMember"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_AddSquadMember, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_AddSquadMember::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_AddSquadMember, InSquadTag) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_AddSquadMember::InSquadTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_AddSquadMember, bIsLeader) == 0x000010, "Member 'WrestlerEnemySubsystem_K2_AddSquadMember::bIsLeader' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_AddSquadMember, ReturnValue) == 0x000011, "Member 'WrestlerEnemySubsystem_K2_AddSquadMember::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllAgents \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllAgents) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllAgents"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllAgents) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllAgents"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllAgents, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllAgents::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllAgents, OutAllAgents) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllAgents::OutAllAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllEnemiesAlive \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllEnemiesAlive) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllEnemiesAlive"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllEnemiesAlive) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllEnemiesAlive"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesAlive, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesAlive::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesAlive, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesAlive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllEnemiesAware \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllEnemiesAware) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllEnemiesAware"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllEnemiesAware) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllEnemiesAware"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesAware, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesAware::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesAware, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesAware::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesDetectingPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag) == 0x000020, "Wrong size on WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag, InTag) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag, ReturnValue) == 0x000010, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesHasMatchingTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllEnemiesInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetAllMassCharactersActive \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetAllMassCharactersActive) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetAllMassCharactersActive"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetAllMassCharactersActive) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetAllMassCharactersActive"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllMassCharactersActive, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetAllMassCharactersActive::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetAllMassCharactersActive, OutMassCharacters) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetAllMassCharactersActive::OutMassCharacters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetFollowers \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetFollowers) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetFollowers"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetFollowers) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetFollowers"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetFollowers, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetFollowers::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetFollowers, OutFollowers) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetFollowers::OutFollowers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetFollowersByTag \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetFollowersByTag) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetFollowersByTag"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetFollowersByTag) == 0x000020, "Wrong size on WrestlerEnemySubsystem_K2_GetFollowersByTag"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetFollowersByTag, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetFollowersByTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetFollowersByTag, InSquadTag) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetFollowersByTag::InSquadTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetFollowersByTag, OutFollowers) == 0x000010, "Member 'WrestlerEnemySubsystem_K2_GetFollowersByTag::OutFollowers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAlive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesAware::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesDetectingPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetNumberOfEnemiesInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetSquad \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetSquad) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetSquad"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetSquad) == 0x000028, "Wrong size on WrestlerEnemySubsystem_K2_GetSquad"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquad, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetSquad::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquad, InSquadTag) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetSquad::InSquadTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquad, ReturnValue) == 0x000010, "Member 'WrestlerEnemySubsystem_K2_GetSquad::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetSquadLeader \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetSquadLeader) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetSquadLeader"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetSquadLeader) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_GetSquadLeader"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquadLeader, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetSquadLeader::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquadLeader, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetSquadLeader::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_GetSquadLeaderByTag \ +static_assert(alignof(WrestlerEnemySubsystem_K2_GetSquadLeaderByTag) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_GetSquadLeaderByTag"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_GetSquadLeaderByTag) == 0x000018, "Wrong size on WrestlerEnemySubsystem_K2_GetSquadLeaderByTag"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquadLeaderByTag, WorldContextObject) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_GetSquadLeaderByTag::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquadLeaderByTag, InSquadTag) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_GetSquadLeaderByTag::InSquadTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_GetSquadLeaderByTag, ReturnValue) == 0x000010, "Member 'WrestlerEnemySubsystem_K2_GetSquadLeaderByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_IsEnemyAware \ +static_assert(alignof(WrestlerEnemySubsystem_K2_IsEnemyAware) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_IsEnemyAware"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_IsEnemyAware) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_IsEnemyAware"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyAware, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_IsEnemyAware::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyAware, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_IsEnemyAware::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer \ +static_assert(alignof(WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_IsEnemyDetectingPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemySubsystem_K2_IsEnemyInCombat \ +static_assert(alignof(WrestlerEnemySubsystem_K2_IsEnemyInCombat) == 0x000008, "Wrong alignment on WrestlerEnemySubsystem_K2_IsEnemyInCombat"); \ +static_assert(sizeof(WrestlerEnemySubsystem_K2_IsEnemyInCombat) == 0x000010, "Wrong size on WrestlerEnemySubsystem_K2_IsEnemyInCombat"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyInCombat, InEnemy) == 0x000000, "Member 'WrestlerEnemySubsystem_K2_IsEnemyInCombat::InEnemy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemySubsystem_K2_IsEnemyInCombat, ReturnValue) == 0x000008, "Member 'WrestlerEnemySubsystem_K2_IsEnemyInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemySubsystem \ +static_assert(alignof(UWrestlerEnemySubsystem) == 0x000008, "Wrong alignment on UWrestlerEnemySubsystem"); \ +static_assert(sizeof(UWrestlerEnemySubsystem) == 0x0000C8, "Wrong size on UWrestlerEnemySubsystem"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemyStateTagsChanged) == 0x000030, "Member 'UWrestlerEnemySubsystem::OnEnemyStateTagsChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemySpawnedBySpawner) == 0x000040, "Member 'UWrestlerEnemySubsystem::OnEnemySpawnedBySpawner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemySpawnedEvent) == 0x000050, "Member 'UWrestlerEnemySubsystem::OnEnemySpawnedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemyDeathEvent) == 0x000060, "Member 'UWrestlerEnemySubsystem::OnEnemyDeathEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnLastEnemyEvent) == 0x000070, "Member 'UWrestlerEnemySubsystem::OnLastEnemyEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnLastEnemyDeathEvent) == 0x000080, "Member 'UWrestlerEnemySubsystem::OnLastEnemyDeathEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemyCombatEvent) == 0x000090, "Member 'UWrestlerEnemySubsystem::OnEnemyCombatEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemyDetectedPlayer) == 0x0000A0, "Member 'UWrestlerEnemySubsystem::OnEnemyDetectedPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, OnEnemyStartDetectingPlayer) == 0x0000B0, "Member 'UWrestlerEnemySubsystem::OnEnemyStartDetectingPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemySubsystem, EnemySquadManager) == 0x0000C0, "Member 'UWrestlerEnemySubsystem::EnemySquadManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterFloorControlComponent \ +static_assert(alignof(UWrestlerCharacterFloorControlComponent) == 0x000008, "Wrong alignment on UWrestlerCharacterFloorControlComponent"); \ +static_assert(sizeof(UWrestlerCharacterFloorControlComponent) == 0x0000D0, "Wrong size on UWrestlerCharacterFloorControlComponent"); \ +static_assert(offsetof(UWrestlerCharacterFloorControlComponent, OnLevelStreamedOut) == 0x0000A0, "Member 'UWrestlerCharacterFloorControlComponent::OnLevelStreamedOut' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterFloorControlComponent, OnLevelStreamedIn) == 0x0000B0, "Member 'UWrestlerCharacterFloorControlComponent::OnLevelStreamedIn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterFloorControlComponent, CurrentStreamingLevel) == 0x0000C0, "Member 'UWrestlerCharacterFloorControlComponent::CurrentStreamingLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMeleeCollisionInterface_SetMeleeCollision \ +static_assert(alignof(WrestlerMeleeCollisionInterface_SetMeleeCollision) == 0x000001, "Wrong alignment on WrestlerMeleeCollisionInterface_SetMeleeCollision"); \ +static_assert(sizeof(WrestlerMeleeCollisionInterface_SetMeleeCollision) == 0x000002, "Wrong size on WrestlerMeleeCollisionInterface_SetMeleeCollision"); \ +static_assert(offsetof(WrestlerMeleeCollisionInterface_SetMeleeCollision, NewCollisionMode) == 0x000000, "Member 'WrestlerMeleeCollisionInterface_SetMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMeleeCollisionInterface_SetMeleeCollision, bRightSide) == 0x000001, "Member 'WrestlerMeleeCollisionInterface_SetMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision \ +static_assert(alignof(WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision) == 0x000001, "Wrong alignment on WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision"); \ +static_assert(sizeof(WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision) == 0x000002, "Wrong size on WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision"); \ +static_assert(offsetof(WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision, NewCollisionMode) == 0x000000, "Member 'WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision, bRightSide) == 0x000001, "Member 'WrestlerMeleeCollisionInterface_SetSecondaryMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMeleeCollisionInterface \ +static_assert(alignof(IWrestlerMeleeCollisionInterface) == 0x000001, "Wrong alignment on IWrestlerMeleeCollisionInterface"); \ +static_assert(sizeof(IWrestlerMeleeCollisionInterface) == 0x000001, "Wrong size on IWrestlerMeleeCollisionInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_AttachWeapon \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_AttachWeapon) == 0x000010, "Wrong alignment on WrestlerCharacterFunctionLibrary_AttachWeapon"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_AttachWeapon) == 0x000080, "Wrong size on WrestlerCharacterFunctionLibrary_AttachWeapon"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_AttachWeapon, InWeapon) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_AttachWeapon::InWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_AttachWeapon, InAttachTo) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_AttachWeapon::InAttachTo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_AttachWeapon, InNewTransformLocation) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_AttachWeapon::InNewTransformLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_AttachWeapon, InSocketName) == 0x000070, "Member 'WrestlerCharacterFunctionLibrary_AttachWeapon::InSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_GetBloodRecharge \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_GetBloodRecharge) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_GetBloodRecharge"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_GetBloodRecharge) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_GetBloodRecharge"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetBloodRecharge, InWorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_GetBloodRecharge::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetBloodRecharge, ReturnValue) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_GetBloodRecharge::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance, OutPins) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance, ReturnValue) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_GetRangedWeaponInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked, ReturnValue) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_GetRangedWeaponInstanceUnchecked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy, InWorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy, InCharacter) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy, bInAdd) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_AddOrRemoveSpawnedEnemy::bInAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_CharacterAttacked \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_CharacterAttacked) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_CharacterAttacked"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_CharacterAttacked) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_K2_CharacterAttacked"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_CharacterAttacked, InCharacterAttacked) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_CharacterAttacked::InCharacterAttacked' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_CharacterAttacked, InCharacterAttacking) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_CharacterAttacked::InCharacterAttacking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen, InWorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen, InPawn) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen::InPawn' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen, OutPins) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_GetCharacterIsOnScreen::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor, OutEnemyCharacter) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor::OutEnemyCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor, OutPins) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyCharacterFromActor::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor, OutEnemyController) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor::OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor, OutPins) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_GetEnemyControllerFromActor::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor, OutPlayerCharacter) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor::OutPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor, OutPins) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerCharacterFromActor::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor, OutPlayerController) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor::OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor, OutPins) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_K2_GetPlayerControllerFromActor::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies) == 0x000020, "Wrong size on WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies, WorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies, OutEnemyCharacters) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies::OutEnemyCharacters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies, OutPins) == 0x000018, "Member 'WrestlerCharacterFunctionLibrary_K2_GetSpawnedEnemies::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_IsActorDead \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_IsActorDead) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_IsActorDead"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_IsActorDead) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_K2_IsActorDead"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorDead, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorDead::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorDead, OutPins) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorDead::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorDead, ReturnValue) == 0x000009, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorDead::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_IsActorPossessed \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_IsActorPossessed) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_IsActorPossessed"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_IsActorPossessed) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_K2_IsActorPossessed"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorPossessed, InActor) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorPossessed::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorPossessed, OutPins) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorPossessed::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_IsActorPossessed, ReturnValue) == 0x000009, "Member 'WrestlerCharacterFunctionLibrary_K2_IsActorPossessed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_SpawnCharacters \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_SpawnCharacters) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_SpawnCharacters"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_SpawnCharacters) == 0x000058, "Wrong size on WrestlerCharacterFunctionLibrary_K2_SpawnCharacters"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_SpawnCharacters, InSpawnCharacters) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_SpawnCharacters::InSpawnCharacters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_SpawnCharacters, OutPins) == 0x000050, "Member 'WrestlerCharacterFunctionLibrary_K2_SpawnCharacters::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters) == 0x000058, "Wrong size on WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters, InSpawnCharacters) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters::InSpawnCharacters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters, OutPins) == 0x000050, "Member 'WrestlerCharacterFunctionLibrary_K2_SpawnEnemyCharacters::OutPins' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse) == 0x000088, "Wrong size on WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, WorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, ObjectTypes) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::ObjectTypes' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InActorsToIgnore) == 0x000018, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InOrigin) == 0x000028, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InOrigin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InRadius) == 0x000040, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InDirection) == 0x000048, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InDirection' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InTorque) == 0x000060, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InTorque' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, DrawDebugType) == 0x000078, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::DrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, bFromOrigin) == 0x000079, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::bFromOrigin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InStrength) == 0x00007C, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InStrength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse, InFalloff) == 0x000080, "Member 'WrestlerCharacterFunctionLibrary_RadialPhysicsImpulse::InFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_SetBloodRecharge \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_SetBloodRecharge) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_SetBloodRecharge"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_SetBloodRecharge) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_SetBloodRecharge"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetBloodRecharge, InWorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_SetBloodRecharge::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetBloodRecharge, InBloodRecharge) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_SetBloodRecharge::InBloodRecharge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial) == 0x000010, "Wrong size on WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial, InCharacter) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial, InNewOverlayMaterial) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_SetCharacterOverlayMaterial::InNewOverlayMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial) == 0x000058, "Wrong size on WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial, InCharacter) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial, InScalarParameters) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_SetCharacterScalarParameterOnMaterial::InScalarParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD) == 0x000018, "Wrong size on WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD, InWorld) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD::InWorld' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD, InDebugMessage) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_SetDebugMessageOnHUD::InDebugMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_ToggleUVGlow \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_ToggleUVGlow) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_ToggleUVGlow"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_ToggleUVGlow) == 0x000020, "Wrong size on WrestlerCharacterFunctionLibrary_ToggleUVGlow"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_ToggleUVGlow, WorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_ToggleUVGlow::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_ToggleUVGlow, MeshComponent) == 0x000008, "Member 'WrestlerCharacterFunctionLibrary_ToggleUVGlow::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_ToggleUVGlow, bGlowEnabled) == 0x000010, "Member 'WrestlerCharacterFunctionLibrary_ToggleUVGlow::bGlowEnabled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_ToggleUVGlow, ParameterName) == 0x000014, "Member 'WrestlerCharacterFunctionLibrary_ToggleUVGlow::ParameterName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities \ +static_assert(alignof(WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities) == 0x000008, "Wrong alignment on WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities"); \ +static_assert(sizeof(WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities) == 0x000008, "Wrong size on WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities"); \ +static_assert(offsetof(WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities, WorldContextObject) == 0x000000, "Member 'WrestlerCharacterFunctionLibrary_UnlockAllClanAbilities::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterFunctionLibrary \ +static_assert(alignof(UWrestlerCharacterFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerCharacterFunctionLibrary"); \ +static_assert(sizeof(UWrestlerCharacterFunctionLibrary) == 0x000028, "Wrong size on UWrestlerCharacterFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Actor_OnActiveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Actor_OnActiveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Actor_OnActiveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Actor_OnActiveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Actor_OnActiveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnActiveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Actor_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnActiveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Actor_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnActiveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Actor_OnActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Actor_OnExecuteAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Actor_OnExecuteAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Actor_OnExecuteAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Actor_OnExecuteAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Actor_OnExecuteAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnExecuteAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Actor_OnExecuteAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnExecuteAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Actor_OnExecuteAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnExecuteAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Actor_OnExecuteAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Actor_OnRemoveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Actor_OnRemoveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Actor_OnRemoveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Actor_OnRemoveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Actor_OnRemoveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnRemoveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Actor_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Actor_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_OnRemoveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Actor_OnRemoveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Actor_WhileActiveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Actor_WhileActiveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Actor_WhileActiveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Actor_WhileActiveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Actor_WhileActiveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_WhileActiveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Actor_WhileActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_WhileActiveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Actor_WhileActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Actor_WhileActiveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Actor_WhileActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayCueNotify_Actor \ +static_assert(alignof(AWrestlerGameplayCueNotify_Actor) == 0x000008, "Wrong alignment on AWrestlerGameplayCueNotify_Actor"); \ +static_assert(sizeof(AWrestlerGameplayCueNotify_Actor) == 0x000308, "Wrong size on AWrestlerGameplayCueNotify_Actor"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairDataAsset_GetAnimationType \ +static_assert(alignof(WrestlerCharacterHairDataAsset_GetAnimationType) == 0x000001, "Wrong alignment on WrestlerCharacterHairDataAsset_GetAnimationType"); \ +static_assert(sizeof(WrestlerCharacterHairDataAsset_GetAnimationType) == 0x000001, "Wrong size on WrestlerCharacterHairDataAsset_GetAnimationType"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetAnimationType, ReturnValue) == 0x000000, "Member 'WrestlerCharacterHairDataAsset_GetAnimationType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairDataAsset_GetCapVector \ +static_assert(alignof(WrestlerCharacterHairDataAsset_GetCapVector) == 0x000008, "Wrong alignment on WrestlerCharacterHairDataAsset_GetCapVector"); \ +static_assert(sizeof(WrestlerCharacterHairDataAsset_GetCapVector) == 0x000018, "Wrong size on WrestlerCharacterHairDataAsset_GetCapVector"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetCapVector, ReturnValue) == 0x000000, "Member 'WrestlerCharacterHairDataAsset_GetCapVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairDataAsset_GetHairMaterial \ +static_assert(alignof(WrestlerCharacterHairDataAsset_GetHairMaterial) == 0x000008, "Wrong alignment on WrestlerCharacterHairDataAsset_GetHairMaterial"); \ +static_assert(sizeof(WrestlerCharacterHairDataAsset_GetHairMaterial) == 0x000030, "Wrong size on WrestlerCharacterHairDataAsset_GetHairMaterial"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetHairMaterial, InVariant) == 0x000000, "Member 'WrestlerCharacterHairDataAsset_GetHairMaterial::InVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetHairMaterial, ReturnValue) == 0x000008, "Member 'WrestlerCharacterHairDataAsset_GetHairMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairDataAsset_GetHairVariant \ +static_assert(alignof(WrestlerCharacterHairDataAsset_GetHairVariant) == 0x000008, "Wrong alignment on WrestlerCharacterHairDataAsset_GetHairVariant"); \ +static_assert(sizeof(WrestlerCharacterHairDataAsset_GetHairVariant) == 0x000030, "Wrong size on WrestlerCharacterHairDataAsset_GetHairVariant"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetHairVariant, InVariant) == 0x000000, "Member 'WrestlerCharacterHairDataAsset_GetHairVariant::InVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterHairDataAsset_GetHairVariant, ReturnValue) == 0x000008, "Member 'WrestlerCharacterHairDataAsset_GetHairVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterHairDataAsset \ +static_assert(alignof(UWrestlerCharacterHairDataAsset) == 0x000008, "Wrong alignment on UWrestlerCharacterHairDataAsset"); \ +static_assert(sizeof(UWrestlerCharacterHairDataAsset) == 0x000120, "Wrong size on UWrestlerCharacterHairDataAsset"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, HairID) == 0x000030, "Member 'UWrestlerCharacterHairDataAsset::HairID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, HairButtonTexture) == 0x000038, "Member 'UWrestlerCharacterHairDataAsset::HairButtonTexture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, FemmeHairMesh) == 0x000060, "Member 'UWrestlerCharacterHairDataAsset::FemmeHairMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, MascHairMesh) == 0x000088, "Member 'UWrestlerCharacterHairDataAsset::MascHairMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, HairColour) == 0x0000B0, "Member 'UWrestlerCharacterHairDataAsset::HairColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, MascHairColour) == 0x0000D8, "Member 'UWrestlerCharacterHairDataAsset::MascHairColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, CapVector) == 0x000100, "Member 'UWrestlerCharacterHairDataAsset::CapVector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, IsOverrideHair) == 0x000118, "Member 'UWrestlerCharacterHairDataAsset::IsOverrideHair' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterHairDataAsset, BelongsToDLC) == 0x000119, "Member 'UWrestlerCharacterHairDataAsset::BelongsToDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairCollection_GetHairArray \ +static_assert(alignof(WrestlerCharacterHairCollection_GetHairArray) == 0x000008, "Wrong alignment on WrestlerCharacterHairCollection_GetHairArray"); \ +static_assert(sizeof(WrestlerCharacterHairCollection_GetHairArray) == 0x000010, "Wrong size on WrestlerCharacterHairCollection_GetHairArray"); \ +static_assert(offsetof(WrestlerCharacterHairCollection_GetHairArray, ReturnValue) == 0x000000, "Member 'WrestlerCharacterHairCollection_GetHairArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterHairCollection_GetHairFromID \ +static_assert(alignof(WrestlerCharacterHairCollection_GetHairFromID) == 0x000008, "Wrong alignment on WrestlerCharacterHairCollection_GetHairFromID"); \ +static_assert(sizeof(WrestlerCharacterHairCollection_GetHairFromID) == 0x000030, "Wrong size on WrestlerCharacterHairCollection_GetHairFromID"); \ +static_assert(offsetof(WrestlerCharacterHairCollection_GetHairFromID, InID) == 0x000000, "Member 'WrestlerCharacterHairCollection_GetHairFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterHairCollection_GetHairFromID, ReturnValue) == 0x000008, "Member 'WrestlerCharacterHairCollection_GetHairFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterHairCollection \ +static_assert(alignof(UWrestlerCharacterHairCollection) == 0x000008, "Wrong alignment on UWrestlerCharacterHairCollection"); \ +static_assert(sizeof(UWrestlerCharacterHairCollection) == 0x000040, "Wrong size on UWrestlerCharacterHairCollection"); \ +static_assert(offsetof(UWrestlerCharacterHairCollection, HairArray) == 0x000030, "Member 'UWrestlerCharacterHairCollection::HairArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquippedAbilityIndicator \ +static_assert(alignof(UWrestlerEquippedAbilityIndicator) == 0x000008, "Wrong alignment on UWrestlerEquippedAbilityIndicator"); \ +static_assert(sizeof(UWrestlerEquippedAbilityIndicator) == 0x0002D8, "Wrong size on UWrestlerEquippedAbilityIndicator"); \ +static_assert(offsetof(UWrestlerEquippedAbilityIndicator, EquippedAbilityImage) == 0x0002C8, "Member 'UWrestlerEquippedAbilityIndicator::EquippedAbilityImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPlayerActionsProcessor \ +static_assert(alignof(UWrestlerMassPlayerActionsProcessor) == 0x000010, "Wrong alignment on UWrestlerMassPlayerActionsProcessor"); \ +static_assert(sizeof(UWrestlerMassPlayerActionsProcessor) == 0x000E60, "Wrong size on UWrestlerMassPlayerActionsProcessor"); \ +static_assert(offsetof(UWrestlerMassPlayerActionsProcessor, MasqueradeSettings) == 0x0000B8, "Member 'UWrestlerMassPlayerActionsProcessor::MasqueradeSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassPlayerActionsProcessor, CallBackupRange) == 0x0000C0, "Member 'UWrestlerMassPlayerActionsProcessor::CallBackupRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh \ +static_assert(alignof(WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh) == 0x000008, "Wrong alignment on WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh"); \ +static_assert(sizeof(WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh) == 0x000028, "Wrong size on WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh"); \ +static_assert(offsetof(WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh, ReturnValue) == 0x000000, "Member 'WrestlerCharacterMakeUpDataAsset_GetMakeUpMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant \ +static_assert(alignof(WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant) == 0x000008, "Wrong alignment on WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant"); \ +static_assert(sizeof(WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant) == 0x000030, "Wrong size on WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant"); \ +static_assert(offsetof(WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant, InVariant) == 0x000000, "Member 'WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant::InVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant, ReturnValue) == 0x000008, "Member 'WrestlerCharacterMakeUpDataAsset_GetMakeUpVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterMakeUpDataAsset \ +static_assert(alignof(UWrestlerCharacterMakeUpDataAsset) == 0x000008, "Wrong alignment on UWrestlerCharacterMakeUpDataAsset"); \ +static_assert(sizeof(UWrestlerCharacterMakeUpDataAsset) == 0x0000E0, "Wrong size on UWrestlerCharacterMakeUpDataAsset"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, MakeUpID) == 0x000030, "Member 'UWrestlerCharacterMakeUpDataAsset::MakeUpID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, MakeUpButtonTexture) == 0x000038, "Member 'UWrestlerCharacterMakeUpDataAsset::MakeUpButtonTexture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, FemmeMakeUpMaterial) == 0x000060, "Member 'UWrestlerCharacterMakeUpDataAsset::FemmeMakeUpMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, MascMakeUpCapMaterial) == 0x000088, "Member 'UWrestlerCharacterMakeUpDataAsset::MascMakeUpCapMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, MakeUpMesh) == 0x0000B0, "Member 'UWrestlerCharacterMakeUpDataAsset::MakeUpMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpDataAsset, BelongsToDLC) == 0x0000D8, "Member 'UWrestlerCharacterMakeUpDataAsset::BelongsToDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterMakeUpCollection_GetMakeUpArray \ +static_assert(alignof(WrestlerCharacterMakeUpCollection_GetMakeUpArray) == 0x000008, "Wrong alignment on WrestlerCharacterMakeUpCollection_GetMakeUpArray"); \ +static_assert(sizeof(WrestlerCharacterMakeUpCollection_GetMakeUpArray) == 0x000010, "Wrong size on WrestlerCharacterMakeUpCollection_GetMakeUpArray"); \ +static_assert(offsetof(WrestlerCharacterMakeUpCollection_GetMakeUpArray, ReturnValue) == 0x000000, "Member 'WrestlerCharacterMakeUpCollection_GetMakeUpArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterMakeUpCollection_GetMakeUpFromID \ +static_assert(alignof(WrestlerCharacterMakeUpCollection_GetMakeUpFromID) == 0x000008, "Wrong alignment on WrestlerCharacterMakeUpCollection_GetMakeUpFromID"); \ +static_assert(sizeof(WrestlerCharacterMakeUpCollection_GetMakeUpFromID) == 0x000030, "Wrong size on WrestlerCharacterMakeUpCollection_GetMakeUpFromID"); \ +static_assert(offsetof(WrestlerCharacterMakeUpCollection_GetMakeUpFromID, InID) == 0x000000, "Member 'WrestlerCharacterMakeUpCollection_GetMakeUpFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterMakeUpCollection_GetMakeUpFromID, ReturnValue) == 0x000008, "Member 'WrestlerCharacterMakeUpCollection_GetMakeUpFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterMakeUpCollection \ +static_assert(alignof(UWrestlerCharacterMakeUpCollection) == 0x000008, "Wrong alignment on UWrestlerCharacterMakeUpCollection"); \ +static_assert(sizeof(UWrestlerCharacterMakeUpCollection) == 0x000040, "Wrong size on UWrestlerCharacterMakeUpCollection"); \ +static_assert(offsetof(UWrestlerCharacterMakeUpCollection, MakeUpArray) == 0x000030, "Member 'UWrestlerCharacterMakeUpCollection::MakeUpArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_Get \ +static_assert(alignof(WrestlerGameplaySettings_Get) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_Get"); \ +static_assert(sizeof(WrestlerGameplaySettings_Get) == 0x000010, "Wrong size on WrestlerGameplaySettings_Get"); \ +static_assert(offsetof(WrestlerGameplaySettings_Get, InWorldContextObject) == 0x000000, "Member 'WrestlerGameplaySettings_Get::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_Get, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetActorOcclusionConfig \ +static_assert(alignof(WrestlerGameplaySettings_GetActorOcclusionConfig) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetActorOcclusionConfig"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetActorOcclusionConfig) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetActorOcclusionConfig"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetActorOcclusionConfig, InName) == 0x000000, "Member 'WrestlerGameplaySettings_GetActorOcclusionConfig::InName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetActorOcclusionConfig, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetActorOcclusionConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetDefaultAbilities \ +static_assert(alignof(WrestlerGameplaySettings_GetDefaultAbilities) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetDefaultAbilities"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetDefaultAbilities) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetDefaultAbilities"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetDefaultAbilities, InCharacter) == 0x000000, "Member 'WrestlerGameplaySettings_GetDefaultAbilities::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetDefaultAbilities, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetDefaultAbilities::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetEnemyAbilitiesByName \ +static_assert(alignof(WrestlerGameplaySettings_GetEnemyAbilitiesByName) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetEnemyAbilitiesByName"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetEnemyAbilitiesByName) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetEnemyAbilitiesByName"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetEnemyAbilitiesByName, InName) == 0x000000, "Member 'WrestlerGameplaySettings_GetEnemyAbilitiesByName::InName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetEnemyAbilitiesByName, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetEnemyAbilitiesByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetEnemyConfig \ +static_assert(alignof(WrestlerGameplaySettings_GetEnemyConfig) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetEnemyConfig"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetEnemyConfig) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetEnemyConfig"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetEnemyConfig, InKey) == 0x000000, "Member 'WrestlerGameplaySettings_GetEnemyConfig::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetEnemyConfig, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetEnemyConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetModularEnemies \ +static_assert(alignof(WrestlerGameplaySettings_GetModularEnemies) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetModularEnemies"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetModularEnemies) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetModularEnemies"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetModularEnemies, InKey) == 0x000000, "Member 'WrestlerGameplaySettings_GetModularEnemies::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetModularEnemies, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetModularEnemies::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetPlayerMovementDefaults \ +static_assert(alignof(WrestlerGameplaySettings_GetPlayerMovementDefaults) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetPlayerMovementDefaults"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetPlayerMovementDefaults) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetPlayerMovementDefaults"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetPlayerMovementDefaults, InKey) == 0x000000, "Member 'WrestlerGameplaySettings_GetPlayerMovementDefaults::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetPlayerMovementDefaults, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetPlayerMovementDefaults::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetRangedProjectilePoolConfig \ +static_assert(alignof(WrestlerGameplaySettings_GetRangedProjectilePoolConfig) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetRangedProjectilePoolConfig"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetRangedProjectilePoolConfig) == 0x000010, "Wrong size on WrestlerGameplaySettings_GetRangedProjectilePoolConfig"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetRangedProjectilePoolConfig, InKey) == 0x000000, "Member 'WrestlerGameplaySettings_GetRangedProjectilePoolConfig::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetRangedProjectilePoolConfig, ReturnValue) == 0x000008, "Member 'WrestlerGameplaySettings_GetRangedProjectilePoolConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetNewTraversalCharacter \ +static_assert(alignof(WrestlerGameplaySettings_GetNewTraversalCharacter) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetNewTraversalCharacter"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetNewTraversalCharacter) == 0x000008, "Wrong size on WrestlerGameplaySettings_GetNewTraversalCharacter"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetNewTraversalCharacter, ReturnValue) == 0x000000, "Member 'WrestlerGameplaySettings_GetNewTraversalCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplaySettings_GetPlayerClans \ +static_assert(alignof(WrestlerGameplaySettings_GetPlayerClans) == 0x000008, "Wrong alignment on WrestlerGameplaySettings_GetPlayerClans"); \ +static_assert(sizeof(WrestlerGameplaySettings_GetPlayerClans) == 0x000050, "Wrong size on WrestlerGameplaySettings_GetPlayerClans"); \ +static_assert(offsetof(WrestlerGameplaySettings_GetPlayerClans, ReturnValue) == 0x000000, "Member 'WrestlerGameplaySettings_GetPlayerClans::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplaySettings \ +static_assert(alignof(UWrestlerGameplaySettings) == 0x000008, "Wrong alignment on UWrestlerGameplaySettings"); \ +static_assert(sizeof(UWrestlerGameplaySettings) == 0x0004D8, "Wrong size on UWrestlerGameplaySettings"); \ +static_assert(offsetof(UWrestlerGameplaySettings, InCombatTag) == 0x000048, "Member 'UWrestlerGameplaySettings::InCombatTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, PlayerMovementDefaults) == 0x000050, "Member 'UWrestlerGameplaySettings::PlayerMovementDefaults' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, EnemyConfigs) == 0x0000A0, "Member 'UWrestlerGameplaySettings::EnemyConfigs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, EnemiesToSpawn) == 0x0000F0, "Member 'UWrestlerGameplaySettings::EnemiesToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, RangedProjectilePoolConfig) == 0x000140, "Member 'UWrestlerGameplaySettings::RangedProjectilePoolConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, ActorOcclusionConfigs) == 0x000190, "Member 'UWrestlerGameplaySettings::ActorOcclusionConfigs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, DefaultAbilitiesConfig) == 0x0001E0, "Member 'UWrestlerGameplaySettings::DefaultAbilitiesConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, TestDefaultAbilitiesConfig) == 0x000230, "Member 'UWrestlerGameplaySettings::TestDefaultAbilitiesConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, PlayerClans) == 0x000280, "Member 'UWrestlerGameplaySettings::PlayerClans' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, NewTraversalCharacter) == 0x0002D0, "Member 'UWrestlerGameplaySettings::NewTraversalCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, TestAssetInstances) == 0x0002F8, "Member 'UWrestlerGameplaySettings::TestAssetInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, PlayerMovementDefaultsInstances) == 0x000348, "Member 'UWrestlerGameplaySettings::PlayerMovementDefaultsInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, EnemyConfigInstances) == 0x000398, "Member 'UWrestlerGameplaySettings::EnemyConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, ActorOcclusionConfigInstances) == 0x0003E8, "Member 'UWrestlerGameplaySettings::ActorOcclusionConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, EnemiesToSpawnInstances) == 0x000438, "Member 'UWrestlerGameplaySettings::EnemiesToSpawnInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplaySettings, RangedProjectilePoolConfigInstances) == 0x000488, "Member 'UWrestlerGameplaySettings::RangedProjectilePoolConfigInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterPiercingDataAsset_GetPiercingVariant \ +static_assert(alignof(WrestlerCharacterPiercingDataAsset_GetPiercingVariant) == 0x000008, "Wrong alignment on WrestlerCharacterPiercingDataAsset_GetPiercingVariant"); \ +static_assert(sizeof(WrestlerCharacterPiercingDataAsset_GetPiercingVariant) == 0x000030, "Wrong size on WrestlerCharacterPiercingDataAsset_GetPiercingVariant"); \ +static_assert(offsetof(WrestlerCharacterPiercingDataAsset_GetPiercingVariant, InVariant) == 0x000000, "Member 'WrestlerCharacterPiercingDataAsset_GetPiercingVariant::InVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterPiercingDataAsset_GetPiercingVariant, ReturnValue) == 0x000008, "Member 'WrestlerCharacterPiercingDataAsset_GetPiercingVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterPiercingDataAsset \ +static_assert(alignof(UWrestlerCharacterPiercingDataAsset) == 0x000008, "Wrong alignment on UWrestlerCharacterPiercingDataAsset"); \ +static_assert(sizeof(UWrestlerCharacterPiercingDataAsset) == 0x0000B8, "Wrong size on UWrestlerCharacterPiercingDataAsset"); \ +static_assert(offsetof(UWrestlerCharacterPiercingDataAsset, PiercingID) == 0x000030, "Member 'UWrestlerCharacterPiercingDataAsset::PiercingID' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterPiercingDataAsset, PiercingButtonTexture) == 0x000038, "Member 'UWrestlerCharacterPiercingDataAsset::PiercingButtonTexture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterPiercingDataAsset, PiercingMesh) == 0x000060, "Member 'UWrestlerCharacterPiercingDataAsset::PiercingMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterPiercingDataAsset, MascPiercingMesh) == 0x000088, "Member 'UWrestlerCharacterPiercingDataAsset::MascPiercingMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterPiercingDataAsset, BelongsToDLC) == 0x0000B0, "Member 'UWrestlerCharacterPiercingDataAsset::BelongsToDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterPiercingCollection_GetPiercingArray \ +static_assert(alignof(WrestlerCharacterPiercingCollection_GetPiercingArray) == 0x000008, "Wrong alignment on WrestlerCharacterPiercingCollection_GetPiercingArray"); \ +static_assert(sizeof(WrestlerCharacterPiercingCollection_GetPiercingArray) == 0x000010, "Wrong size on WrestlerCharacterPiercingCollection_GetPiercingArray"); \ +static_assert(offsetof(WrestlerCharacterPiercingCollection_GetPiercingArray, ReturnValue) == 0x000000, "Member 'WrestlerCharacterPiercingCollection_GetPiercingArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterPiercingCollection_GetPiercingFromID \ +static_assert(alignof(WrestlerCharacterPiercingCollection_GetPiercingFromID) == 0x000008, "Wrong alignment on WrestlerCharacterPiercingCollection_GetPiercingFromID"); \ +static_assert(sizeof(WrestlerCharacterPiercingCollection_GetPiercingFromID) == 0x000030, "Wrong size on WrestlerCharacterPiercingCollection_GetPiercingFromID"); \ +static_assert(offsetof(WrestlerCharacterPiercingCollection_GetPiercingFromID, InID) == 0x000000, "Member 'WrestlerCharacterPiercingCollection_GetPiercingFromID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterPiercingCollection_GetPiercingFromID, ReturnValue) == 0x000008, "Member 'WrestlerCharacterPiercingCollection_GetPiercingFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterPiercingCollection \ +static_assert(alignof(UWrestlerCharacterPiercingCollection) == 0x000008, "Wrong alignment on UWrestlerCharacterPiercingCollection"); \ +static_assert(sizeof(UWrestlerCharacterPiercingCollection) == 0x000040, "Wrong size on UWrestlerCharacterPiercingCollection"); \ +static_assert(offsetof(UWrestlerCharacterPiercingCollection, PiercingArray) == 0x000030, "Member 'UWrestlerCharacterPiercingCollection::PiercingArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ApplyEffectContainer \ +static_assert(alignof(WrestlerGameplayAbility_ApplyEffectContainer) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ApplyEffectContainer"); \ +static_assert(sizeof(WrestlerGameplayAbility_ApplyEffectContainer) == 0x0000D0, "Wrong size on WrestlerGameplayAbility_ApplyEffectContainer"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainer, ContainerTag) == 0x000000, "Member 'WrestlerGameplayAbility_ApplyEffectContainer::ContainerTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainer, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_ApplyEffectContainer::EventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainer, OverrideGameplayLevel) == 0x0000B8, "Member 'WrestlerGameplayAbility_ApplyEffectContainer::OverrideGameplayLevel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainer, ReturnValue) == 0x0000C0, "Member 'WrestlerGameplayAbility_ApplyEffectContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ApplyEffectContainerSpec \ +static_assert(alignof(WrestlerGameplayAbility_ApplyEffectContainerSpec) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ApplyEffectContainerSpec"); \ +static_assert(sizeof(WrestlerGameplayAbility_ApplyEffectContainerSpec) == 0x000048, "Wrong size on WrestlerGameplayAbility_ApplyEffectContainerSpec"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainerSpec, ContainerSpec) == 0x000000, "Member 'WrestlerGameplayAbility_ApplyEffectContainerSpec::ContainerSpec' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyEffectContainerSpec, ReturnValue) == 0x000038, "Member 'WrestlerGameplayAbility_ApplyEffectContainerSpec::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ApplyExecutionDamage \ +static_assert(alignof(WrestlerGameplayAbility_ApplyExecutionDamage) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ApplyExecutionDamage"); \ +static_assert(sizeof(WrestlerGameplayAbility_ApplyExecutionDamage) == 0x000020, "Wrong size on WrestlerGameplayAbility_ApplyExecutionDamage"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyExecutionDamage, InTargetActor) == 0x000000, "Member 'WrestlerGameplayAbility_ApplyExecutionDamage::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyExecutionDamage, InDamageAmount) == 0x000008, "Member 'WrestlerGameplayAbility_ApplyExecutionDamage::InDamageAmount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyExecutionDamage, bInShouldExecute) == 0x00000C, "Member 'WrestlerGameplayAbility_ApplyExecutionDamage::bInShouldExecute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyExecutionDamage, InDeathBehaviourTag) == 0x000010, "Member 'WrestlerGameplayAbility_ApplyExecutionDamage::InDeathBehaviourTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyExecutionDamage, bNoDeath) == 0x000018, "Member 'WrestlerGameplayAbility_ApplyExecutionDamage::bNoDeath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag \ +static_assert(alignof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag"); \ +static_assert(sizeof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag) == 0x000020, "Wrong size on WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag, InEffect) == 0x000000, "Member 'WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag::InEffect' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag, InDataTag) == 0x000008, "Member 'WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag::InDataTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag, InAmount) == 0x000010, "Member 'WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag::InAmount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag, ReturnValue) == 0x000014, "Member 'WrestlerGameplayAbility_ApplyGameplayEffectSpecByDataTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ApplyTimeDilation \ +static_assert(alignof(WrestlerGameplayAbility_ApplyTimeDilation) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_ApplyTimeDilation"); \ +static_assert(sizeof(WrestlerGameplayAbility_ApplyTimeDilation) == 0x000008, "Wrong size on WrestlerGameplayAbility_ApplyTimeDilation"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyTimeDilation, InTimeDilation) == 0x000000, "Member 'WrestlerGameplayAbility_ApplyTimeDilation::InTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ApplyTimeDilation, bInDoNotAffectOwner) == 0x000004, "Member 'WrestlerGameplayAbility_ApplyTimeDilation::bInDoNotAffectOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_BP_PlayAbilityMontage \ +static_assert(alignof(WrestlerGameplayAbility_BP_PlayAbilityMontage) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_BP_PlayAbilityMontage"); \ +static_assert(sizeof(WrestlerGameplayAbility_BP_PlayAbilityMontage) == 0x000048, "Wrong size on WrestlerGameplayAbility_BP_PlayAbilityMontage"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, InTaskInstanceName) == 0x000000, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::InTaskInstanceName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, InEventTags) == 0x000008, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::InEventTags' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, InRate) == 0x000028, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::InRate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, InStartSection) == 0x00002C, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::InStartSection' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, bInStopWhenAbilityEnds) == 0x000034, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::bInStopWhenAbilityEnds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, bInDoOnce) == 0x000035, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::bInDoOnce' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, InAnimRootMotionTranslationScale) == 0x000038, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::InAnimRootMotionTranslationScale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_BP_PlayAbilityMontage, ReturnValue) == 0x000040, "Member 'WrestlerGameplayAbility_BP_PlayAbilityMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ExecuteGameplayCueForAllHits \ +static_assert(alignof(WrestlerGameplayAbility_ExecuteGameplayCueForAllHits) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ExecuteGameplayCueForAllHits"); \ +static_assert(sizeof(WrestlerGameplayAbility_ExecuteGameplayCueForAllHits) == 0x000038, "Wrong size on WrestlerGameplayAbility_ExecuteGameplayCueForAllHits"); \ +static_assert(offsetof(WrestlerGameplayAbility_ExecuteGameplayCueForAllHits, TargetData) == 0x000000, "Member 'WrestlerGameplayAbility_ExecuteGameplayCueForAllHits::TargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ExecuteGameplayCueForAllHits, Magnitude) == 0x000028, "Member 'WrestlerGameplayAbility_ExecuteGameplayCueForAllHits::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ExecuteGameplayCueForAllHits, GameplayCueTag) == 0x00002C, "Member 'WrestlerGameplayAbility_ExecuteGameplayCueForAllHits::GameplayCueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ExecuteGameplayCueWithParams \ +static_assert(alignof(WrestlerGameplayAbility_ExecuteGameplayCueWithParams) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ExecuteGameplayCueWithParams"); \ +static_assert(sizeof(WrestlerGameplayAbility_ExecuteGameplayCueWithParams) == 0x0000E0, "Wrong size on WrestlerGameplayAbility_ExecuteGameplayCueWithParams"); \ +static_assert(offsetof(WrestlerGameplayAbility_ExecuteGameplayCueWithParams, GameplayCueTag) == 0x000000, "Member 'WrestlerGameplayAbility_ExecuteGameplayCueWithParams::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ExecuteGameplayCueWithParams, GameplayCueParameters) == 0x000008, "Member 'WrestlerGameplayAbility_ExecuteGameplayCueWithParams::GameplayCueParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetFootLocation \ +static_assert(alignof(WrestlerGameplayAbility_GetFootLocation) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetFootLocation"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetFootLocation) == 0x000020, "Wrong size on WrestlerGameplayAbility_GetFootLocation"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetFootLocation, bRightFoot) == 0x000000, "Member 'WrestlerGameplayAbility_GetFootLocation::bRightFoot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetFootLocation, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_GetFootLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetFootSocketName \ +static_assert(alignof(WrestlerGameplayAbility_GetFootSocketName) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_GetFootSocketName"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetFootSocketName) == 0x00000C, "Wrong size on WrestlerGameplayAbility_GetFootSocketName"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetFootSocketName, bRightFoot) == 0x000000, "Member 'WrestlerGameplayAbility_GetFootSocketName::bRightFoot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetFootSocketName, ReturnValue) == 0x000004, "Member 'WrestlerGameplayAbility_GetFootSocketName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetHandLocation \ +static_assert(alignof(WrestlerGameplayAbility_GetHandLocation) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetHandLocation"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetHandLocation) == 0x000020, "Wrong size on WrestlerGameplayAbility_GetHandLocation"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetHandLocation, bRightHand) == 0x000000, "Member 'WrestlerGameplayAbility_GetHandLocation::bRightHand' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetHandLocation, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_GetHandLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetHandSocketName \ +static_assert(alignof(WrestlerGameplayAbility_GetHandSocketName) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_GetHandSocketName"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetHandSocketName) == 0x00000C, "Wrong size on WrestlerGameplayAbility_GetHandSocketName"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetHandSocketName, bRightHand) == 0x000000, "Member 'WrestlerGameplayAbility_GetHandSocketName::bRightHand' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetHandSocketName, ReturnValue) == 0x000004, "Member 'WrestlerGameplayAbility_GetHandSocketName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetMeleeWeaponInstance \ +static_assert(alignof(WrestlerGameplayAbility_GetMeleeWeaponInstance) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetMeleeWeaponInstance"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetMeleeWeaponInstance) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetMeleeWeaponInstance"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMeleeWeaponInstance, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetMeleeWeaponInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetMontageFromSet \ +static_assert(alignof(WrestlerGameplayAbility_GetMontageFromSet) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetMontageFromSet"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetMontageFromSet) == 0x000060, "Wrong size on WrestlerGameplayAbility_GetMontageFromSet"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontageFromSet, OutPins) == 0x000000, "Member 'WrestlerGameplayAbility_GetMontageFromSet::OutPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontageFromSet, InOptionalMontageSet) == 0x000008, "Member 'WrestlerGameplayAbility_GetMontageFromSet::InOptionalMontageSet' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontageFromSet, ReturnValue) == 0x000058, "Member 'WrestlerGameplayAbility_GetMontageFromSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetPlayMontageFromSet \ +static_assert(alignof(WrestlerGameplayAbility_GetPlayMontageFromSet) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetPlayMontageFromSet"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetPlayMontageFromSet) == 0x000078, "Wrong size on WrestlerGameplayAbility_GetPlayMontageFromSet"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetPlayMontageFromSet, OutputPins) == 0x000000, "Member 'WrestlerGameplayAbility_GetPlayMontageFromSet::OutputPins' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetPlayMontageFromSet, InPlayMontageSet) == 0x000008, "Member 'WrestlerGameplayAbility_GetPlayMontageFromSet::InPlayMontageSet' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetPlayMontageFromSet, ReturnValue) == 0x000058, "Member 'WrestlerGameplayAbility_GetPlayMontageFromSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetRangedWeaponInstance \ +static_assert(alignof(WrestlerGameplayAbility_GetRangedWeaponInstance) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetRangedWeaponInstance"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetRangedWeaponInstance) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetRangedWeaponInstance"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetRangedWeaponInstance, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetRangedWeaponInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_MakeAudioCueParamsFromHit \ +static_assert(alignof(WrestlerGameplayAbility_MakeAudioCueParamsFromHit) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_MakeAudioCueParamsFromHit"); \ +static_assert(sizeof(WrestlerGameplayAbility_MakeAudioCueParamsFromHit) == 0x0001C8, "Wrong size on WrestlerGameplayAbility_MakeAudioCueParamsFromHit"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHit, HitResult) == 0x000000, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHit::HitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHit, Magnitude) == 0x0000E8, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHit::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHit, ReturnValue) == 0x0000F0, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute \ +static_assert(alignof(WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute"); \ +static_assert(sizeof(WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute) == 0x000020, "Wrong size on WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute, HitResult) == 0x000000, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute::HitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute, Magnitude) == 0x000010, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute, GameplayCueTag) == 0x000014, "Member 'WrestlerGameplayAbility_MakeAudioCueParamsFromHitArrayAndExecute::GameplayCueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_MakeEffectContainerSpec \ +static_assert(alignof(WrestlerGameplayAbility_MakeEffectContainerSpec) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_MakeEffectContainerSpec"); \ +static_assert(sizeof(WrestlerGameplayAbility_MakeEffectContainerSpec) == 0x0000F8, "Wrong size on WrestlerGameplayAbility_MakeEffectContainerSpec"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpec, ContainerTag) == 0x000000, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpec::ContainerTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpec, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpec::EventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpec, OverrideGameplayLevel) == 0x0000B8, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpec::OverrideGameplayLevel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpec, ReturnValue) == 0x0000C0, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpec::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer \ +static_assert(alignof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer"); \ +static_assert(sizeof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer) == 0x000128, "Wrong size on WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer, Container) == 0x000000, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer::Container' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer, EventData) == 0x000038, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer::EventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer, OverrideGameplayLevel) == 0x0000E8, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer::OverrideGameplayLevel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer, ReturnValue) == 0x0000F0, "Member 'WrestlerGameplayAbility_MakeEffectContainerSpecFromContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityActivate \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityActivate) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityActivate"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityActivate) == 0x000008, "Wrong size on WrestlerGameplayAbility_OnAbilityActivate"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityActivate, InActivatedAbility) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityActivate::InActivatedAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityMontageBlendOut \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityMontageBlendOut) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityMontageBlendOut"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityMontageBlendOut) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_OnAbilityMontageBlendOut"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageBlendOut, EventTag) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityMontageBlendOut::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageBlendOut, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_OnAbilityMontageBlendOut::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityMontageCancelled \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityMontageCancelled) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityMontageCancelled"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityMontageCancelled) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_OnAbilityMontageCancelled"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageCancelled, EventTag) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityMontageCancelled::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageCancelled, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_OnAbilityMontageCancelled::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityMontageComplete \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityMontageComplete) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityMontageComplete"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityMontageComplete) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_OnAbilityMontageComplete"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageComplete, EventTag) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityMontageComplete::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageComplete, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_OnAbilityMontageComplete::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityMontageEventReceived \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityMontageEventReceived) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityMontageEventReceived"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityMontageEventReceived) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_OnAbilityMontageEventReceived"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageEventReceived, EventTag) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityMontageEventReceived::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageEventReceived, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_OnAbilityMontageEventReceived::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnAbilityMontageInterrupted \ +static_assert(alignof(WrestlerGameplayAbility_OnAbilityMontageInterrupted) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_OnAbilityMontageInterrupted"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnAbilityMontageInterrupted) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_OnAbilityMontageInterrupted"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageInterrupted, EventTag) == 0x000000, "Member 'WrestlerGameplayAbility_OnAbilityMontageInterrupted::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnAbilityMontageInterrupted, EventData) == 0x000008, "Member 'WrestlerGameplayAbility_OnAbilityMontageInterrupted::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_OnCancelControlCue \ +static_assert(alignof(WrestlerGameplayAbility_OnCancelControlCue) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_OnCancelControlCue"); \ +static_assert(sizeof(WrestlerGameplayAbility_OnCancelControlCue) == 0x000004, "Wrong size on WrestlerGameplayAbility_OnCancelControlCue"); \ +static_assert(offsetof(WrestlerGameplayAbility_OnCancelControlCue, InElapsedTime) == 0x000000, "Member 'WrestlerGameplayAbility_OnCancelControlCue::InElapsedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_SendGameplayEventToTargetData \ +static_assert(alignof(WrestlerGameplayAbility_SendGameplayEventToTargetData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_SendGameplayEventToTargetData"); \ +static_assert(sizeof(WrestlerGameplayAbility_SendGameplayEventToTargetData) == 0x0000E0, "Wrong size on WrestlerGameplayAbility_SendGameplayEventToTargetData"); \ +static_assert(offsetof(WrestlerGameplayAbility_SendGameplayEventToTargetData, TargetData) == 0x000000, "Member 'WrestlerGameplayAbility_SendGameplayEventToTargetData::TargetData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_SendGameplayEventToTargetData, EventTag) == 0x000028, "Member 'WrestlerGameplayAbility_SendGameplayEventToTargetData::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_SendGameplayEventToTargetData, Payload) == 0x000030, "Member 'WrestlerGameplayAbility_SendGameplayEventToTargetData::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag \ +static_assert(alignof(WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag"); \ +static_assert(sizeof(WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag) == 0x000020, "Wrong size on WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag"); \ +static_assert(offsetof(WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag, FGameplayTagContainer) == 0x000000, "Member 'WrestlerGameplayAbility_WrestlerCancelAbilitiesWithTag::FGameplayTagContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_DamageNonGASActor \ +static_assert(alignof(WrestlerGameplayAbility_DamageNonGASActor) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_DamageNonGASActor"); \ +static_assert(sizeof(WrestlerGameplayAbility_DamageNonGASActor) == 0x0000F8, "Wrong size on WrestlerGameplayAbility_DamageNonGASActor"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActor, InHitResult) == 0x000000, "Member 'WrestlerGameplayAbility_DamageNonGASActor::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActor, InEnvironmentDamage) == 0x0000E8, "Member 'WrestlerGameplayAbility_DamageNonGASActor::InEnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActor, InDamageTypeClass) == 0x0000F0, "Member 'WrestlerGameplayAbility_DamageNonGASActor::InDamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_DamageNonGASActorFromHitResults \ +static_assert(alignof(WrestlerGameplayAbility_DamageNonGASActorFromHitResults) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_DamageNonGASActorFromHitResults"); \ +static_assert(sizeof(WrestlerGameplayAbility_DamageNonGASActorFromHitResults) == 0x000020, "Wrong size on WrestlerGameplayAbility_DamageNonGASActorFromHitResults"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActorFromHitResults, InHitResults) == 0x000000, "Member 'WrestlerGameplayAbility_DamageNonGASActorFromHitResults::InHitResults' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActorFromHitResults, InEnvironmentDamage) == 0x000010, "Member 'WrestlerGameplayAbility_DamageNonGASActorFromHitResults::InEnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_DamageNonGASActorFromHitResults, InDamageTypeClass) == 0x000018, "Member 'WrestlerGameplayAbility_DamageNonGASActorFromHitResults::InDamageTypeClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetAbilitiesData \ +static_assert(alignof(WrestlerGameplayAbility_GetAbilitiesData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetAbilitiesData"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetAbilitiesData) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetAbilitiesData"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetAbilitiesData, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetAbilitiesData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetAbilityAssetId \ +static_assert(alignof(WrestlerGameplayAbility_GetAbilityAssetId) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_GetAbilityAssetId"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetAbilityAssetId) == 0x000010, "Wrong size on WrestlerGameplayAbility_GetAbilityAssetId"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetAbilityAssetId, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetAbilityAssetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetAvatarActorAsCharacter \ +static_assert(alignof(WrestlerGameplayAbility_GetAvatarActorAsCharacter) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetAvatarActorAsCharacter"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetAvatarActorAsCharacter) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetAvatarActorAsCharacter"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetAvatarActorAsCharacter, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetAvatarActorAsCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase \ +static_assert(alignof(WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetAvatarActorAsWrestlerCharacterBase::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetMontage \ +static_assert(alignof(WrestlerGameplayAbility_GetMontage) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetMontage"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetMontage) == 0x000008, "Wrong size on WrestlerGameplayAbility_GetMontage"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontage, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetMontage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetMontageByTag \ +static_assert(alignof(WrestlerGameplayAbility_GetMontageByTag) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetMontageByTag"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetMontageByTag) == 0x000010, "Wrong size on WrestlerGameplayAbility_GetMontageByTag"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontageByTag, InAbilityTag) == 0x000000, "Member 'WrestlerGameplayAbility_GetMontageByTag::InAbilityTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetMontageByTag, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_GetMontageByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetPassiveTargetData \ +static_assert(alignof(WrestlerGameplayAbility_GetPassiveTargetData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetPassiveTargetData"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetPassiveTargetData) == 0x000028, "Wrong size on WrestlerGameplayAbility_GetPassiveTargetData"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetPassiveTargetData, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_GetPassiveTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_GetTargetActor \ +static_assert(alignof(WrestlerGameplayAbility_GetTargetActor) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_GetTargetActor"); \ +static_assert(sizeof(WrestlerGameplayAbility_GetTargetActor) == 0x000010, "Wrong size on WrestlerGameplayAbility_GetTargetActor"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetTargetActor, bGetSoftTarget) == 0x000000, "Member 'WrestlerGameplayAbility_GetTargetActor::bGetSoftTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_GetTargetActor, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_GetTargetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_HasPassiveTargetData \ +static_assert(alignof(WrestlerGameplayAbility_HasPassiveTargetData) == 0x000001, "Wrong alignment on WrestlerGameplayAbility_HasPassiveTargetData"); \ +static_assert(sizeof(WrestlerGameplayAbility_HasPassiveTargetData) == 0x000001, "Wrong size on WrestlerGameplayAbility_HasPassiveTargetData"); \ +static_assert(offsetof(WrestlerGameplayAbility_HasPassiveTargetData, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_HasPassiveTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_K2_CanEndAbility \ +static_assert(alignof(WrestlerGameplayAbility_K2_CanEndAbility) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_K2_CanEndAbility"); \ +static_assert(sizeof(WrestlerGameplayAbility_K2_CanEndAbility) == 0x000058, "Wrong size on WrestlerGameplayAbility_K2_CanEndAbility"); \ +static_assert(offsetof(WrestlerGameplayAbility_K2_CanEndAbility, InHandle) == 0x000000, "Member 'WrestlerGameplayAbility_K2_CanEndAbility::InHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_K2_CanEndAbility, InActorInfo) == 0x000008, "Member 'WrestlerGameplayAbility_K2_CanEndAbility::InActorInfo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_K2_CanEndAbility, ReturnValue) == 0x000050, "Member 'WrestlerGameplayAbility_K2_CanEndAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_StartFearEmission \ +static_assert(alignof(WrestlerGameplayAbility_StartFearEmission) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_StartFearEmission"); \ +static_assert(sizeof(WrestlerGameplayAbility_StartFearEmission) == 0x000008, "Wrong size on WrestlerGameplayAbility_StartFearEmission"); \ +static_assert(offsetof(WrestlerGameplayAbility_StartFearEmission, InFearDuration) == 0x000000, "Member 'WrestlerGameplayAbility_StartFearEmission::InFearDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_StartFearEmission, InFearStrength) == 0x000004, "Member 'WrestlerGameplayAbility_StartFearEmission::InFearStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility \ +static_assert(alignof(UWrestlerGameplayAbility) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility"); \ +static_assert(sizeof(UWrestlerGameplayAbility) == 0x000668, "Wrong size on UWrestlerGameplayAbility"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CoolDownProperty) == 0x0003B8, "Member 'UWrestlerGameplayAbility::CoolDownProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bForceHighMassLOD) == 0x0003D0, "Member 'UWrestlerGameplayAbility::bForceHighMassLOD' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, DistanceToMassAIToEndAbility) == 0x0003D4, "Member 'UWrestlerGameplayAbility::DistanceToMassAIToEndAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bTerminateMassAnimations) == 0x0003D8, "Member 'UWrestlerGameplayAbility::bTerminateMassAnimations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, AddGameplayAbilityTagToMassAI) == 0x0003D9, "Member 'UWrestlerGameplayAbility::AddGameplayAbilityTagToMassAI' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bSwapMassAIToDefaultAIOnActivate) == 0x0003DA, "Member 'UWrestlerGameplayAbility::bSwapMassAIToDefaultAIOnActivate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bSwapEnemyBackToMassAIOnEndAbility) == 0x0003DB, "Member 'UWrestlerGameplayAbility::bSwapEnemyBackToMassAIOnEndAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bActivateAbilityWhenSwapAI) == 0x0003DC, "Member 'UWrestlerGameplayAbility::bActivateAbilityWhenSwapAI' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MassAIBehaviourOnSwapBack) == 0x0003DD, "Member 'UWrestlerGameplayAbility::MassAIBehaviourOnSwapBack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, AbilityDataId) == 0x0003E0, "Member 'UWrestlerGameplayAbility::AbilityDataId' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MontageTag) == 0x0003E8, "Member 'UWrestlerGameplayAbility::MontageTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MontageVariations) == 0x0003F0, "Member 'UWrestlerGameplayAbility::MontageVariations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, Montage) == 0x000400, "Member 'UWrestlerGameplayAbility::Montage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MontageSet) == 0x000408, "Member 'UWrestlerGameplayAbility::MontageSet' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, EndAbilityOnMontageOutcome) == 0x000458, "Member 'UWrestlerGameplayAbility::EndAbilityOnMontageOutcome' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CancelControlCue) == 0x000460, "Member 'UWrestlerGameplayAbility::CancelControlCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, EffectContainerMap) == 0x000468, "Member 'UWrestlerGameplayAbility::EffectContainerMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CancelAbilitiesAtTheEndWithTag) == 0x0004B8, "Member 'UWrestlerGameplayAbility::CancelAbilitiesAtTheEndWithTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, StartAbilitiesWithTag) == 0x0004D8, "Member 'UWrestlerGameplayAbility::StartAbilitiesWithTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, StartAbilitiesAtTheEndWithTag) == 0x0004F8, "Member 'UWrestlerGameplayAbility::StartAbilitiesAtTheEndWithTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, PassiveTargetActorType) == 0x000518, "Member 'UWrestlerGameplayAbility::PassiveTargetActorType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CancelledByAbilitiesWithTag) == 0x000540, "Member 'UWrestlerGameplayAbility::CancelledByAbilitiesWithTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bIsAlwaysPassive) == 0x000560, "Member 'UWrestlerGameplayAbility::bIsAlwaysPassive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CancelAbilityOnAttributesLessOrEqualToZero) == 0x000568, "Member 'UWrestlerGameplayAbility::CancelAbilityOnAttributesLessOrEqualToZero' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, CancelAbilityOnAttributesDecreased) == 0x000578, "Member 'UWrestlerGameplayAbility::CancelAbilityOnAttributesDecreased' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, WrestlerAbilityConfigDataAsset) == 0x000630, "Member 'UWrestlerGameplayAbility::WrestlerAbilityConfigDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, tier) == 0x000638, "Member 'UWrestlerGameplayAbility::tier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MinTier) == 0x00063C, "Member 'UWrestlerGameplayAbility::MinTier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, MaxTier) == 0x000640, "Member 'UWrestlerGameplayAbility::MaxTier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility, bActivateAbilityOnGranted) == 0x000644, "Member 'UWrestlerGameplayAbility::bActivateAbilityOnGranted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_YsabellaStagePresence \ +static_assert(alignof(UWrestlerGameplayAbility_YsabellaStagePresence) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_YsabellaStagePresence"); \ +static_assert(sizeof(UWrestlerGameplayAbility_YsabellaStagePresence) == 0x000668, "Wrong size on UWrestlerGameplayAbility_YsabellaStagePresence"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSelectionMenu_OnDialogueAudioFinished \ +static_assert(alignof(WrestlerCharacterSelectionMenu_OnDialogueAudioFinished) == 0x000008, "Wrong alignment on WrestlerCharacterSelectionMenu_OnDialogueAudioFinished"); \ +static_assert(sizeof(WrestlerCharacterSelectionMenu_OnDialogueAudioFinished) == 0x000008, "Wrong size on WrestlerCharacterSelectionMenu_OnDialogueAudioFinished"); \ +static_assert(offsetof(WrestlerCharacterSelectionMenu_OnDialogueAudioFinished, InAudioObject) == 0x000000, "Member 'WrestlerCharacterSelectionMenu_OnDialogueAudioFinished::InAudioObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSelectionMenu_PlayDialogue \ +static_assert(alignof(WrestlerCharacterSelectionMenu_PlayDialogue) == 0x000004, "Wrong alignment on WrestlerCharacterSelectionMenu_PlayDialogue"); \ +static_assert(sizeof(WrestlerCharacterSelectionMenu_PlayDialogue) == 0x000008, "Wrong size on WrestlerCharacterSelectionMenu_PlayDialogue"); \ +static_assert(offsetof(WrestlerCharacterSelectionMenu_PlayDialogue, InPlayerVariant) == 0x000000, "Member 'WrestlerCharacterSelectionMenu_PlayDialogue::InPlayerVariant' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSelectionMenu_PlayDialogue, InPlaybackDelay) == 0x000004, "Member 'WrestlerCharacterSelectionMenu_PlayDialogue::InPlaybackDelay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterSelectionMenu \ +static_assert(alignof(UWrestlerCharacterSelectionMenu) == 0x000008, "Wrong alignment on UWrestlerCharacterSelectionMenu"); \ +static_assert(sizeof(UWrestlerCharacterSelectionMenu) == 0x000338, "Wrong size on UWrestlerCharacterSelectionMenu"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, DialogueInfo) == 0x000300, "Member 'UWrestlerCharacterSelectionMenu::DialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, AudioController) == 0x000308, "Member 'UWrestlerCharacterSelectionMenu::AudioController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, CharacterStory) == 0x000310, "Member 'UWrestlerCharacterSelectionMenu::CharacterStory' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, SubtitlesText) == 0x000320, "Member 'UWrestlerCharacterSelectionMenu::SubtitlesText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, SubtitlesCharacterName) == 0x000328, "Member 'UWrestlerCharacterSelectionMenu::SubtitlesCharacterName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSelectionMenu, SubtitlesBox) == 0x000330, "Member 'UWrestlerCharacterSelectionMenu::SubtitlesBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerModularCharacterProfile \ +static_assert(alignof(UWrestlerModularCharacterProfile) == 0x000008, "Wrong alignment on UWrestlerModularCharacterProfile"); \ +static_assert(sizeof(UWrestlerModularCharacterProfile) == 0x0002F0, "Wrong size on UWrestlerModularCharacterProfile"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, SkinToneProperties) == 0x000030, "Member 'UWrestlerModularCharacterProfile::SkinToneProperties' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, SlotDataMap) == 0x000068, "Member 'UWrestlerModularCharacterProfile::SlotDataMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Hat) == 0x0000B8, "Member 'UWrestlerModularCharacterProfile::Hat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Hair) == 0x0000F8, "Member 'UWrestlerModularCharacterProfile::Hair' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Head) == 0x000138, "Member 'UWrestlerModularCharacterProfile::Head' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Scarf) == 0x000178, "Member 'UWrestlerModularCharacterProfile::Scarf' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Gloves) == 0x0001B8, "Member 'UWrestlerModularCharacterProfile::Gloves' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Chest) == 0x0001F8, "Member 'UWrestlerModularCharacterProfile::Chest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Legs) == 0x000238, "Member 'UWrestlerModularCharacterProfile::Legs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Shoes) == 0x000278, "Member 'UWrestlerModularCharacterProfile::Shoes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Gender) == 0x0002B8, "Member 'UWrestlerModularCharacterProfile::Gender' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, Type) == 0x0002B9, "Member 'UWrestlerModularCharacterProfile::Type' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, TypeAudioSwitch) == 0x0002C0, "Member 'UWrestlerModularCharacterProfile::TypeAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, bMergeIntoSingleSkeletalMesh) == 0x0002C8, "Member 'UWrestlerModularCharacterProfile::bMergeIntoSingleSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, ConversationDialogueInfo) == 0x0002D0, "Member 'UWrestlerModularCharacterProfile::ConversationDialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, ConversationAmbientInfo) == 0x0002D8, "Member 'UWrestlerModularCharacterProfile::ConversationAmbientInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfile, PromptDialogueInfo) == 0x0002E0, "Member 'UWrestlerModularCharacterProfile::PromptDialogueInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_OnPlayerClanChanged \ +static_assert(alignof(WrestlerCharacterSnowComponent_OnPlayerClanChanged) == 0x000008, "Wrong alignment on WrestlerCharacterSnowComponent_OnPlayerClanChanged"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_OnPlayerClanChanged) == 0x000008, "Wrong size on WrestlerCharacterSnowComponent_OnPlayerClanChanged"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_OnPlayerClanChanged, InPlayerClan) == 0x000000, "Member 'WrestlerCharacterSnowComponent_OnPlayerClanChanged::InPlayerClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_SetSnowingSuppressed \ +static_assert(alignof(WrestlerCharacterSnowComponent_SetSnowingSuppressed) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_SetSnowingSuppressed"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_SetSnowingSuppressed) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_SetSnowingSuppressed"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_SetSnowingSuppressed, bInSnowingSuppressed) == 0x000000, "Member 'WrestlerCharacterSnowComponent_SetSnowingSuppressed::bInSnowingSuppressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_SetState \ +static_assert(alignof(WrestlerCharacterSnowComponent_SetState) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_SetState"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_SetState) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_SetState"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_SetState, InState) == 0x000000, "Member 'WrestlerCharacterSnowComponent_SetState::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_GetState \ +static_assert(alignof(WrestlerCharacterSnowComponent_GetState) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_GetState"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_GetState) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_GetState"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_GetState, ReturnValue) == 0x000000, "Member 'WrestlerCharacterSnowComponent_GetState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_IsActivated \ +static_assert(alignof(WrestlerCharacterSnowComponent_IsActivated) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_IsActivated"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_IsActivated) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_IsActivated"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_IsActivated, ReturnValue) == 0x000000, "Member 'WrestlerCharacterSnowComponent_IsActivated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_IsSnowingSuppressed \ +static_assert(alignof(WrestlerCharacterSnowComponent_IsSnowingSuppressed) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_IsSnowingSuppressed"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_IsSnowingSuppressed) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_IsSnowingSuppressed"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_IsSnowingSuppressed, ReturnValue) == 0x000000, "Member 'WrestlerCharacterSnowComponent_IsSnowingSuppressed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterSnowComponent \ +static_assert(alignof(UWrestlerCharacterSnowComponent) == 0x000010, "Wrong alignment on UWrestlerCharacterSnowComponent"); \ +static_assert(sizeof(UWrestlerCharacterSnowComponent) == 0x0002C0, "Wrong size on UWrestlerCharacterSnowComponent"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, DistantSnowMesh) == 0x0002A8, "Member 'UWrestlerCharacterSnowComponent::DistantSnowMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, SnowVolume) == 0x0002B0, "Member 'UWrestlerCharacterSnowComponent::SnowVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, bResetOnActivation) == 0x0002B8, "Member 'UWrestlerCharacterSnowComponent::bResetOnActivation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, bWorldPartitionOnly) == 0x0002B9, "Member 'UWrestlerCharacterSnowComponent::bWorldPartitionOnly' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, State) == 0x0002BA, "Member 'UWrestlerCharacterSnowComponent::State' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent, bSnowingSuppressed) == 0x0002BB, "Member 'UWrestlerCharacterSnowComponent::bSnowingSuppressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentManagerComponent_EquipItem \ +static_assert(alignof(WrestlerEquipmentManagerComponent_EquipItem) == 0x000008, "Wrong alignment on WrestlerEquipmentManagerComponent_EquipItem"); \ +static_assert(sizeof(WrestlerEquipmentManagerComponent_EquipItem) == 0x000010, "Wrong size on WrestlerEquipmentManagerComponent_EquipItem"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_EquipItem, InEquipmentDefinition) == 0x000000, "Member 'WrestlerEquipmentManagerComponent_EquipItem::InEquipmentDefinition' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_EquipItem, ReturnValue) == 0x000008, "Member 'WrestlerEquipmentManagerComponent_EquipItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentManagerComponent_GetAllEquppiedItems \ +static_assert(alignof(WrestlerEquipmentManagerComponent_GetAllEquppiedItems) == 0x000008, "Wrong alignment on WrestlerEquipmentManagerComponent_GetAllEquppiedItems"); \ +static_assert(sizeof(WrestlerEquipmentManagerComponent_GetAllEquppiedItems) == 0x000010, "Wrong size on WrestlerEquipmentManagerComponent_GetAllEquppiedItems"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_GetAllEquppiedItems, OutList) == 0x000000, "Member 'WrestlerEquipmentManagerComponent_GetAllEquppiedItems::OutList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType \ +static_assert(alignof(WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType) == 0x000008, "Wrong alignment on WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType"); \ +static_assert(sizeof(WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType) == 0x000018, "Wrong size on WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType, InInstanceType) == 0x000000, "Member 'WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType::InInstanceType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType, ReturnValue) == 0x000008, "Member 'WrestlerEquipmentManagerComponent_GetEquipmentInstancesOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentManagerComponent_GetFirstInstanceOfType \ +static_assert(alignof(WrestlerEquipmentManagerComponent_GetFirstInstanceOfType) == 0x000008, "Wrong alignment on WrestlerEquipmentManagerComponent_GetFirstInstanceOfType"); \ +static_assert(sizeof(WrestlerEquipmentManagerComponent_GetFirstInstanceOfType) == 0x000010, "Wrong size on WrestlerEquipmentManagerComponent_GetFirstInstanceOfType"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_GetFirstInstanceOfType, InInstanceType) == 0x000000, "Member 'WrestlerEquipmentManagerComponent_GetFirstInstanceOfType::InInstanceType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_GetFirstInstanceOfType, ReturnValue) == 0x000008, "Member 'WrestlerEquipmentManagerComponent_GetFirstInstanceOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentManagerComponent_UnequipItem \ +static_assert(alignof(WrestlerEquipmentManagerComponent_UnequipItem) == 0x000008, "Wrong alignment on WrestlerEquipmentManagerComponent_UnequipItem"); \ +static_assert(sizeof(WrestlerEquipmentManagerComponent_UnequipItem) == 0x000008, "Wrong size on WrestlerEquipmentManagerComponent_UnequipItem"); \ +static_assert(offsetof(WrestlerEquipmentManagerComponent_UnequipItem, InEquipmentInstance) == 0x000000, "Member 'WrestlerEquipmentManagerComponent_UnequipItem::InEquipmentInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquipmentManagerComponent \ +static_assert(alignof(UWrestlerEquipmentManagerComponent) == 0x000008, "Wrong alignment on UWrestlerEquipmentManagerComponent"); \ +static_assert(sizeof(UWrestlerEquipmentManagerComponent) == 0x0000C8, "Wrong size on UWrestlerEquipmentManagerComponent"); \ +static_assert(offsetof(UWrestlerEquipmentManagerComponent, WeaponDefiniton) == 0x0000A0, "Member 'UWrestlerEquipmentManagerComponent::WeaponDefiniton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentManagerComponent, EquipmentList) == 0x0000A8, "Member 'UWrestlerEquipmentManagerComponent::EquipmentList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentManagerComponent, EquippedItem) == 0x0000C0, "Member 'UWrestlerEquipmentManagerComponent::EquippedItem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility, MassEntityIdx) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility::MassEntityIdx' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility, MassEntitySerialNo) == 0x000004, "Member 'WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility::MassEntitySerialNo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility, AbilityName) == 0x000008, "Member 'WrestlerCheatManager_WrestlerMassAIRequestGameplayAbility::AbilityName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_ToggleLoadingScreenFade \ +static_assert(alignof(WrestlerCheatManager_ToggleLoadingScreenFade) == 0x000004, "Wrong alignment on WrestlerCheatManager_ToggleLoadingScreenFade"); \ +static_assert(sizeof(WrestlerCheatManager_ToggleLoadingScreenFade) == 0x000004, "Wrong size on WrestlerCheatManager_ToggleLoadingScreenFade"); \ +static_assert(offsetof(WrestlerCheatManager_ToggleLoadingScreenFade, InFadeDuration) == 0x000000, "Member 'WrestlerCheatManager_ToggleLoadingScreenFade::InFadeDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassAISetBloodResonanceType \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassAISetBloodResonanceType"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType) == 0x00000C, "Wrong size on WrestlerCheatManager_WrestlerMassAISetBloodResonanceType"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType, MassEntityIdx) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassAISetBloodResonanceType::MassEntityIdx' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType, MassEntitySerialNo) == 0x000004, "Member 'WrestlerCheatManager_WrestlerMassAISetBloodResonanceType::MassEntitySerialNo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType, BloodType) == 0x000008, "Member 'WrestlerCheatManager_WrestlerMassAISetBloodResonanceType::BloodType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetBloodResonanceType, bActivate) == 0x000009, "Member 'WrestlerCheatManager_WrestlerMassAISetBloodResonanceType::bActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerUnlockAchievement \ +static_assert(alignof(WrestlerCheatManager_WrestlerUnlockAchievement) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerUnlockAchievement"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerUnlockAchievement) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerUnlockAchievement"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerUnlockAchievement, AchievementID) == 0x000000, "Member 'WrestlerCheatManager_WrestlerUnlockAchievement::AchievementID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAbilitiesDisableCost \ +static_assert(alignof(WrestlerCheatManager_WrestlerAbilitiesDisableCost) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerAbilitiesDisableCost"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAbilitiesDisableCost) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerAbilitiesDisableCost"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAbilitiesDisableCost, bIsDisabled) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAbilitiesDisableCost::bIsDisabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier \ +static_assert(alignof(WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier) == 0x000018, "Wrong size on WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier, AbilityName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier::AbilityName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier, tier) == 0x000010, "Member 'WrestlerCheatManager_WrestlerAbilitiesSetAbilityTier::tier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAddAbilityPoints \ +static_assert(alignof(WrestlerCheatManager_WrestlerAddAbilityPoints) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerAddAbilityPoints"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAddAbilityPoints) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerAddAbilityPoints"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAddAbilityPoints, InNewPoints) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAddAbilityPoints::InNewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAddCholericPoints \ +static_assert(alignof(WrestlerCheatManager_WrestlerAddCholericPoints) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerAddCholericPoints"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAddCholericPoints) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerAddCholericPoints"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAddCholericPoints, InNewPoints) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAddCholericPoints::InNewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAddExperiencePoints \ +static_assert(alignof(WrestlerCheatManager_WrestlerAddExperiencePoints) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerAddExperiencePoints"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAddExperiencePoints) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerAddExperiencePoints"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAddExperiencePoints, InNewPoints) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAddExperiencePoints::InNewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAddMelancholicPoints \ +static_assert(alignof(WrestlerCheatManager_WrestlerAddMelancholicPoints) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerAddMelancholicPoints"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAddMelancholicPoints) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerAddMelancholicPoints"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAddMelancholicPoints, InNewPoints) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAddMelancholicPoints::InNewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAddSanguinePoints \ +static_assert(alignof(WrestlerCheatManager_WrestlerAddSanguinePoints) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerAddSanguinePoints"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAddSanguinePoints) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerAddSanguinePoints"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAddSanguinePoints, InNewPoints) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAddSanguinePoints::InNewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerAIDebugTasks \ +static_assert(alignof(WrestlerCheatManager_WrestlerAIDebugTasks) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerAIDebugTasks"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerAIDebugTasks) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerAIDebugTasks"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerAIDebugTasks, bIsActive) == 0x000000, "Member 'WrestlerCheatManager_WrestlerAIDebugTasks::bIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerConvertEnemiesToMassAI \ +static_assert(alignof(WrestlerCheatManager_WrestlerConvertEnemiesToMassAI) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerConvertEnemiesToMassAI"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerConvertEnemiesToMassAI) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerConvertEnemiesToMassAI"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerConvertEnemiesToMassAI, MaxEnemiesToConvert) == 0x000000, "Member 'WrestlerCheatManager_WrestlerConvertEnemiesToMassAI::MaxEnemiesToConvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerEnemiesKillAll \ +static_assert(alignof(WrestlerCheatManager_WrestlerEnemiesKillAll) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerEnemiesKillAll"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerEnemiesKillAll) == 0x000008, "Wrong size on WrestlerCheatManager_WrestlerEnemiesKillAll"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerEnemiesKillAll, TeamName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerEnemiesKillAll::TeamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerEnemiesSpawnAI \ +static_assert(alignof(WrestlerCheatManager_WrestlerEnemiesSpawnAI) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerEnemiesSpawnAI"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerEnemiesSpawnAI) == 0x000018, "Wrong size on WrestlerCheatManager_WrestlerEnemiesSpawnAI"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerEnemiesSpawnAI, AIName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerEnemiesSpawnAI::AIName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerEnemiesSpawnAI, Number) == 0x000010, "Member 'WrestlerCheatManager_WrestlerEnemiesSpawnAI::Number' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerHalloweenIsUnlocked \ +static_assert(alignof(WrestlerCheatManager_WrestlerHalloweenIsUnlocked) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerHalloweenIsUnlocked"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerHalloweenIsUnlocked) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerHalloweenIsUnlocked"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerHalloweenIsUnlocked, bInUnlocked) == 0x000000, "Member 'WrestlerCheatManager_WrestlerHalloweenIsUnlocked::bInUnlocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerLoadCheckpoint \ +static_assert(alignof(WrestlerCheatManager_WrestlerLoadCheckpoint) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerLoadCheckpoint"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerLoadCheckpoint) == 0x000008, "Wrong size on WrestlerCheatManager_WrestlerLoadCheckpoint"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerLoadCheckpoint, InCheckpointName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerLoadCheckpoint::InCheckpointName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerLoadSave \ +static_assert(alignof(WrestlerCheatManager_WrestlerLoadSave) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerLoadSave"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerLoadSave) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerLoadSave"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerLoadSave, InSaveSlot) == 0x000000, "Member 'WrestlerCheatManager_WrestlerLoadSave::InSaveSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMasqueradeSetEnabled \ +static_assert(alignof(WrestlerCheatManager_WrestlerMasqueradeSetEnabled) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerMasqueradeSetEnabled"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMasqueradeSetEnabled) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerMasqueradeSetEnabled"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMasqueradeSetEnabled, bEnabled) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMasqueradeSetEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMasqueradeSetState \ +static_assert(alignof(WrestlerCheatManager_WrestlerMasqueradeSetState) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerMasqueradeSetState"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMasqueradeSetState) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerMasqueradeSetState"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMasqueradeSetState, InNewState) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMasqueradeSetState::InNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze \ +static_assert(alignof(WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze, bFreeze) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMasqueradeSetUpdateFreeze::bFreeze' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassAIDialogueRequest \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassAIDialogueRequest) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassAIDialogueRequest"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassAIDialogueRequest) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerMassAIDialogueRequest"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIDialogueRequest, InEntityIndex) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassAIDialogueRequest::InEntityIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIDialogueRequest, InEntitySerialNumber) == 0x000004, "Member 'WrestlerCheatManager_WrestlerMassAIDialogueRequest::InEntitySerialNumber' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAIDialogueRequest, InPromptName) == 0x000008, "Member 'WrestlerCheatManager_WrestlerMassAIDialogueRequest::InPromptName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone) == 0x00000C, "Wrong size on WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone, InTag) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone, InSpeedOverride) == 0x000004, "Member 'WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone::InSpeedOverride' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone, InSetPedestrians) == 0x000008, "Member 'WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone::InSetPedestrians' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone, InSetPolice) == 0x000009, "Member 'WrestlerCheatManager_WrestlerMassAISetMassEntityExclusionZone::InSetPolice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo) == 0x00000C, "Wrong size on WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo, InEntityIndex) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo::InEntityIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo, InEntitySerialNumber) == 0x000004, "Member 'WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo::InEntitySerialNumber' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo, InDistanceFromEntity) == 0x000008, "Member 'WrestlerCheatManager_WrestlerMassEntityTeleportPlayerTo::InDistanceFromEntity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassForceEnemyAI \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassForceEnemyAI) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassForceEnemyAI"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassForceEnemyAI) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerMassForceEnemyAI"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassForceEnemyAI, MaxEntitiesToConvert) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassForceEnemyAI::MaxEntitiesToConvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerMassTeleportToType \ +static_assert(alignof(WrestlerCheatManager_WrestlerMassTeleportToType) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerMassTeleportToType"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerMassTeleportToType) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerMassTeleportToType"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerMassTeleportToType, InEntityType) == 0x000000, "Member 'WrestlerCheatManager_WrestlerMassTeleportToType::InEntityType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerPlayerAddTag \ +static_assert(alignof(WrestlerCheatManager_WrestlerPlayerAddTag) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerPlayerAddTag"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerPlayerAddTag) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerPlayerAddTag"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerPlayerAddTag, InGameplayTag) == 0x000000, "Member 'WrestlerCheatManager_WrestlerPlayerAddTag::InGameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerPlayerRemoveTag \ +static_assert(alignof(WrestlerCheatManager_WrestlerPlayerRemoveTag) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerPlayerRemoveTag"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerPlayerRemoveTag) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerPlayerRemoveTag"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerPlayerRemoveTag, InGameplayTag) == 0x000000, "Member 'WrestlerCheatManager_WrestlerPlayerRemoveTag::InGameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerPlayerSetClan \ +static_assert(alignof(WrestlerCheatManager_WrestlerPlayerSetClan) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerPlayerSetClan"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerPlayerSetClan) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerPlayerSetClan"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerPlayerSetClan, ClanName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerPlayerSetClan::ClanName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerPlayerSetDifficulty \ +static_assert(alignof(WrestlerCheatManager_WrestlerPlayerSetDifficulty) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerPlayerSetDifficulty"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerPlayerSetDifficulty) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerPlayerSetDifficulty"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerPlayerSetDifficulty, InDifficultyName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerPlayerSetDifficulty::InDifficultyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerPlayerSetNarrativeMode \ +static_assert(alignof(WrestlerCheatManager_WrestlerPlayerSetNarrativeMode) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerPlayerSetNarrativeMode"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerPlayerSetNarrativeMode) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerPlayerSetNarrativeMode"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerPlayerSetNarrativeMode, bInEnabled) == 0x000000, "Member 'WrestlerCheatManager_WrestlerPlayerSetNarrativeMode::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSave \ +static_assert(alignof(WrestlerCheatManager_WrestlerSave) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerSave"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSave) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerSave"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSave, InSaveSlot) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSave::InSaveSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttribute \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttribute) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttribute"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttribute) == 0x000018, "Wrong size on WrestlerCheatManager_WrestlerSetAttribute"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttribute, InAttributeName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttribute::InAttributeName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttribute, InValue) == 0x000010, "Member 'WrestlerCheatManager_WrestlerSetAttribute::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeAttackPower \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeAttackPower) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeAttackPower"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeAttackPower) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeAttackPower"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeAttackPower, InNewAttackPower) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeAttackPower::InNewAttackPower' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeBlood \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeBlood) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeBlood"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeBlood) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeBlood"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeBlood, InNewBlood) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeBlood::InNewBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed, InNewCrouchSpeed) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeCrouchSpeed::InNewCrouchSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeDamage \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeDamage) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeDamage"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeDamage) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeDamage"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeDamage, InNewDamage) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeDamage::InNewDamage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeHealth \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeHealth) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeHealth"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeHealth) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeHealth"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeHealth, InNewHealth) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeHealth::InNewHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeHealthFragility \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeHealthFragility) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeHealthFragility"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeHealthFragility) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeHealthFragility"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeHealthFragility, InNewHealthFragilityValue) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeHealthFragility::InNewHealthFragilityValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate, InNewHealthRegenRate) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeHealthRegenRate::InNewHealthRegenRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue, InNewHealthRegenValue) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeHealthRegenValue::InNewHealthRegenValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeMaxBlood \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeMaxBlood) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeMaxBlood"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeMaxBlood) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeMaxBlood"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeMaxBlood, InNewMaxBlood) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeMaxBlood::InNewMaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeMaxHealth \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeMaxHealth) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeMaxHealth"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeMaxHealth) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeMaxHealth"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeMaxHealth, InNewMaxHealth) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeMaxHealth::InNewMaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeNoticeability \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeNoticeability) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeNoticeability"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeNoticeability) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeNoticeability"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeNoticeability, InNewNoticeabilityValue) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeNoticeability::InNewNoticeabilityValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeSlideSpeed \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeSlideSpeed) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeSlideSpeed"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeSlideSpeed) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeSlideSpeed"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeSlideSpeed, InNewSlideMinSpeed) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeSlideSpeed::InNewSlideMinSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeSprintSpeed \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeSprintSpeed) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeSprintSpeed"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeSprintSpeed) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeSprintSpeed"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeSprintSpeed, InNewSprintSpeed) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeSprintSpeed::InNewSprintSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerSetAttributeWalkSpeed \ +static_assert(alignof(WrestlerCheatManager_WrestlerSetAttributeWalkSpeed) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerSetAttributeWalkSpeed"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerSetAttributeWalkSpeed) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerSetAttributeWalkSpeed"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerSetAttributeWalkSpeed, InNewWalkSpeed) == 0x000000, "Member 'WrestlerCheatManager_WrestlerSetAttributeWalkSpeed::InNewWalkSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerTraversalDebugType \ +static_assert(alignof(WrestlerCheatManager_WrestlerTraversalDebugType) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerTraversalDebugType"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerTraversalDebugType) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerTraversalDebugType"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerTraversalDebugType, traversalDebugType) == 0x000000, "Member 'WrestlerCheatManager_WrestlerTraversalDebugType::traversalDebugType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerTraversalSetJumpHeight \ +static_assert(alignof(WrestlerCheatManager_WrestlerTraversalSetJumpHeight) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerTraversalSetJumpHeight"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerTraversalSetJumpHeight) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerTraversalSetJumpHeight"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerTraversalSetJumpHeight, InJumpHeight) == 0x000000, "Member 'WrestlerCheatManager_WrestlerTraversalSetJumpHeight::InJumpHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerUIOpenTrainingMenu \ +static_assert(alignof(WrestlerCheatManager_WrestlerUIOpenTrainingMenu) == 0x000004, "Wrong alignment on WrestlerCheatManager_WrestlerUIOpenTrainingMenu"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerUIOpenTrainingMenu) == 0x000004, "Wrong size on WrestlerCheatManager_WrestlerUIOpenTrainingMenu"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerUIOpenTrainingMenu, InClan) == 0x000000, "Member 'WrestlerCheatManager_WrestlerUIOpenTrainingMenu::InClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerUIShowHUDElements \ +static_assert(alignof(WrestlerCheatManager_WrestlerUIShowHUDElements) == 0x000001, "Wrong alignment on WrestlerCheatManager_WrestlerUIShowHUDElements"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerUIShowHUDElements) == 0x000001, "Wrong size on WrestlerCheatManager_WrestlerUIShowHUDElements"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerUIShowHUDElements, bInStatus) == 0x000000, "Member 'WrestlerCheatManager_WrestlerUIShowHUDElements::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCheatManager_WrestlerUnlockClanPerk \ +static_assert(alignof(WrestlerCheatManager_WrestlerUnlockClanPerk) == 0x000008, "Wrong alignment on WrestlerCheatManager_WrestlerUnlockClanPerk"); \ +static_assert(sizeof(WrestlerCheatManager_WrestlerUnlockClanPerk) == 0x000010, "Wrong size on WrestlerCheatManager_WrestlerUnlockClanPerk"); \ +static_assert(offsetof(WrestlerCheatManager_WrestlerUnlockClanPerk, ClanName) == 0x000000, "Member 'WrestlerCheatManager_WrestlerUnlockClanPerk::ClanName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCheatManager \ +static_assert(alignof(UWrestlerCheatManager) == 0x000008, "Wrong alignment on UWrestlerCheatManager"); \ +static_assert(sizeof(UWrestlerCheatManager) == 0x0000B0, "Wrong size on UWrestlerCheatManager"); \ +static_assert(offsetof(UWrestlerCheatManager, SmartObjectActorTemplate) == 0x000088, "Member 'UWrestlerCheatManager::SmartObjectActorTemplate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCheatManager, ClanTrainerProperty) == 0x000098, "Member 'UWrestlerCheatManager::ClanTrainerProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCheatManager, MetLouProperty) == 0x0000A0, "Member 'UWrestlerCheatManager::MetLouProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCheatManager, BakerTurnedProperty) == 0x0000A8, "Member 'UWrestlerCheatManager::BakerTurnedProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HasClanPerk \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HasClanPerk) == 0x000008, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HasClanPerk"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HasClanPerk) == 0x000018, "Wrong size on WrestlerClanPerkUsageEvaluator_HasClanPerk"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HasClanPerk, InWorldContextObject) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HasClanPerk::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HasClanPerk, InClanPerkTag) == 0x000008, "Member 'WrestlerClanPerkUsageEvaluator_HasClanPerk::InClanPerkTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HasClanPerk, ReturnValue) == 0x000010, "Member 'WrestlerClanPerkUsageEvaluator_HasClanPerk::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed) == 0x000008, "Wrong alignment on WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed) == 0x000010, "Wrong size on WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed, InWorldContextObject) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed, ReturnValue) == 0x000008, "Member 'WrestlerClanPerkUsageEvaluator_K2_GetLastClanAbilityTypeUsed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged, CurrentValue) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged, MaxValue) == 0x000004, "Member 'WrestlerClanPerkUsageEvaluator_HandleAffectAbilityBloodChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged, CurrentValue) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged, MaxValue) == 0x000004, "Member 'WrestlerClanPerkUsageEvaluator_HandleMasteryAbilityBloodChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged) == 0x000008, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged) == 0x000040, "Wrong size on WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged, InAffectedAttribute) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged::InAffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged, NewMax) == 0x000038, "Member 'WrestlerClanPerkUsageEvaluator_HandleMaxBloodChanged::NewMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged, CurrentValue) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged, MaxValue) == 0x000004, "Member 'WrestlerClanPerkUsageEvaluator_HandleRelocateAbilityBloodChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged \ +static_assert(alignof(WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged, InCurrentValue) == 0x000000, "Member 'WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged, InMaxValue) == 0x000004, "Member 'WrestlerClanPerkUsageEvaluator_HandleStrikeAbilityBloodChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerClanPerkUsageEvaluator \ +static_assert(alignof(UWrestlerClanPerkUsageEvaluator) == 0x000008, "Wrong alignment on UWrestlerClanPerkUsageEvaluator"); \ +static_assert(sizeof(UWrestlerClanPerkUsageEvaluator) == 0x000088, "Wrong size on UWrestlerClanPerkUsageEvaluator"); \ +static_assert(offsetof(UWrestlerClanPerkUsageEvaluator, LastBloodValue) == 0x000028, "Member 'UWrestlerClanPerkUsageEvaluator::LastBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanPerkUsageEvaluator, LastAbilityTypeUsed) == 0x000078, "Member 'UWrestlerClanPerkUsageEvaluator::LastAbilityTypeUsed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanPerkUsageEvaluator, PlayerCharacter) == 0x000080, "Member 'UWrestlerClanPerkUsageEvaluator::PlayerCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterInterface_GetFearEmitter \ +static_assert(alignof(WrestlerFearEmitterInterface_GetFearEmitter) == 0x000008, "Wrong alignment on WrestlerFearEmitterInterface_GetFearEmitter"); \ +static_assert(sizeof(WrestlerFearEmitterInterface_GetFearEmitter) == 0x000008, "Wrong size on WrestlerFearEmitterInterface_GetFearEmitter"); \ +static_assert(offsetof(WrestlerFearEmitterInterface_GetFearEmitter, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterInterface_GetFearEmitter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerFearEmitterInterface \ +static_assert(alignof(IWrestlerFearEmitterInterface) == 0x000001, "Wrong alignment on IWrestlerFearEmitterInterface"); \ +static_assert(sizeof(IWrestlerFearEmitterInterface) == 0x000001, "Wrong size on IWrestlerFearEmitterInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerClanSelectionLayout_ToggleInputBindings \ +static_assert(alignof(WrestlerClanSelectionLayout_ToggleInputBindings) == 0x000001, "Wrong alignment on WrestlerClanSelectionLayout_ToggleInputBindings"); \ +static_assert(sizeof(WrestlerClanSelectionLayout_ToggleInputBindings) == 0x000001, "Wrong size on WrestlerClanSelectionLayout_ToggleInputBindings"); \ +static_assert(offsetof(WrestlerClanSelectionLayout_ToggleInputBindings, bAddBindings) == 0x000000, "Member 'WrestlerClanSelectionLayout_ToggleInputBindings::bAddBindings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerClanSelectionLayout \ +static_assert(alignof(UWrestlerClanSelectionLayout) == 0x000008, "Wrong alignment on UWrestlerClanSelectionLayout"); \ +static_assert(sizeof(UWrestlerClanSelectionLayout) == 0x000480, "Wrong size on UWrestlerClanSelectionLayout"); \ +static_assert(offsetof(UWrestlerClanSelectionLayout, ConfirmClanInputActionData) == 0x000450, "Member 'UWrestlerClanSelectionLayout::ConfirmClanInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanSelectionLayout, PreviewInputActionData) == 0x000468, "Member 'UWrestlerClanSelectionLayout::PreviewInputActionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerAbilityWidget_CanAffordAbility \ +static_assert(alignof(WrestlerClanTrainerAbilityWidget_CanAffordAbility) == 0x000001, "Wrong alignment on WrestlerClanTrainerAbilityWidget_CanAffordAbility"); \ +static_assert(sizeof(WrestlerClanTrainerAbilityWidget_CanAffordAbility) == 0x000001, "Wrong size on WrestlerClanTrainerAbilityWidget_CanAffordAbility"); \ +static_assert(offsetof(WrestlerClanTrainerAbilityWidget_CanAffordAbility, ReturnValue) == 0x000000, "Member 'WrestlerClanTrainerAbilityWidget_CanAffordAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerAbilityWidget_GetAbilityCosts \ +static_assert(alignof(WrestlerClanTrainerAbilityWidget_GetAbilityCosts) == 0x000008, "Wrong alignment on WrestlerClanTrainerAbilityWidget_GetAbilityCosts"); \ +static_assert(sizeof(WrestlerClanTrainerAbilityWidget_GetAbilityCosts) == 0x000010, "Wrong size on WrestlerClanTrainerAbilityWidget_GetAbilityCosts"); \ +static_assert(offsetof(WrestlerClanTrainerAbilityWidget_GetAbilityCosts, ReturnValue) == 0x000000, "Member 'WrestlerClanTrainerAbilityWidget_GetAbilityCosts::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerAbilityWidget_IsLockInteraction \ +static_assert(alignof(WrestlerClanTrainerAbilityWidget_IsLockInteraction) == 0x000001, "Wrong alignment on WrestlerClanTrainerAbilityWidget_IsLockInteraction"); \ +static_assert(sizeof(WrestlerClanTrainerAbilityWidget_IsLockInteraction) == 0x000001, "Wrong size on WrestlerClanTrainerAbilityWidget_IsLockInteraction"); \ +static_assert(offsetof(WrestlerClanTrainerAbilityWidget_IsLockInteraction, ReturnValue) == 0x000000, "Member 'WrestlerClanTrainerAbilityWidget_IsLockInteraction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerAbilityWidget_LockInteraction \ +static_assert(alignof(WrestlerClanTrainerAbilityWidget_LockInteraction) == 0x000001, "Wrong alignment on WrestlerClanTrainerAbilityWidget_LockInteraction"); \ +static_assert(sizeof(WrestlerClanTrainerAbilityWidget_LockInteraction) == 0x000001, "Wrong size on WrestlerClanTrainerAbilityWidget_LockInteraction"); \ +static_assert(offsetof(WrestlerClanTrainerAbilityWidget_LockInteraction, bInLock) == 0x000000, "Member 'WrestlerClanTrainerAbilityWidget_LockInteraction::bInLock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerClanTrainerAbilityWidget \ +static_assert(alignof(UWrestlerClanTrainerAbilityWidget) == 0x000008, "Wrong alignment on UWrestlerClanTrainerAbilityWidget"); \ +static_assert(sizeof(UWrestlerClanTrainerAbilityWidget) == 0x0003B8, "Wrong size on UWrestlerClanTrainerAbilityWidget"); \ +static_assert(offsetof(UWrestlerClanTrainerAbilityWidget, OnAbilityUnlockStartedEvent) == 0x000388, "Member 'UWrestlerClanTrainerAbilityWidget::OnAbilityUnlockStartedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanTrainerAbilityWidget, MissingCostTypes) == 0x0003A0, "Member 'UWrestlerClanTrainerAbilityWidget::MissingCostTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameModeBase_GetCurrentMenuID \ +static_assert(alignof(WrestlerGameModeBase_GetCurrentMenuID) == 0x000001, "Wrong alignment on WrestlerGameModeBase_GetCurrentMenuID"); \ +static_assert(sizeof(WrestlerGameModeBase_GetCurrentMenuID) == 0x000001, "Wrong size on WrestlerGameModeBase_GetCurrentMenuID"); \ +static_assert(offsetof(WrestlerGameModeBase_GetCurrentMenuID, ReturnValue) == 0x000000, "Member 'WrestlerGameModeBase_GetCurrentMenuID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameModeBase_IsLongRunningSoakTestRunning \ +static_assert(alignof(WrestlerGameModeBase_IsLongRunningSoakTestRunning) == 0x000001, "Wrong alignment on WrestlerGameModeBase_IsLongRunningSoakTestRunning"); \ +static_assert(sizeof(WrestlerGameModeBase_IsLongRunningSoakTestRunning) == 0x000001, "Wrong size on WrestlerGameModeBase_IsLongRunningSoakTestRunning"); \ +static_assert(offsetof(WrestlerGameModeBase_IsLongRunningSoakTestRunning, ReturnValue) == 0x000000, "Member 'WrestlerGameModeBase_IsLongRunningSoakTestRunning::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameModeBase_OnLoadingScreenVisibilityChanged \ +static_assert(alignof(WrestlerGameModeBase_OnLoadingScreenVisibilityChanged) == 0x000001, "Wrong alignment on WrestlerGameModeBase_OnLoadingScreenVisibilityChanged"); \ +static_assert(sizeof(WrestlerGameModeBase_OnLoadingScreenVisibilityChanged) == 0x000001, "Wrong size on WrestlerGameModeBase_OnLoadingScreenVisibilityChanged"); \ +static_assert(offsetof(WrestlerGameModeBase_OnLoadingScreenVisibilityChanged, bInVisibility) == 0x000000, "Member 'WrestlerGameModeBase_OnLoadingScreenVisibilityChanged::bInVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameModeBase_SetCurrentMenuID \ +static_assert(alignof(WrestlerGameModeBase_SetCurrentMenuID) == 0x000001, "Wrong alignment on WrestlerGameModeBase_SetCurrentMenuID"); \ +static_assert(sizeof(WrestlerGameModeBase_SetCurrentMenuID) == 0x000001, "Wrong size on WrestlerGameModeBase_SetCurrentMenuID"); \ +static_assert(offsetof(WrestlerGameModeBase_SetCurrentMenuID, InMenuID) == 0x000000, "Member 'WrestlerGameModeBase_SetCurrentMenuID::InMenuID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameModeBase \ +static_assert(alignof(AWrestlerGameModeBase) == 0x000008, "Wrong alignment on AWrestlerGameModeBase"); \ +static_assert(sizeof(AWrestlerGameModeBase) == 0x0003E0, "Wrong size on AWrestlerGameModeBase"); \ +static_assert(offsetof(AWrestlerGameModeBase, PI_UI_MenuID) == 0x000380, "Member 'AWrestlerGameModeBase::PI_UI_MenuID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameModeBase, AbilityGlobalsClass) == 0x000388, "Member 'AWrestlerGameModeBase::AbilityGlobalsClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameModeBase, LoadingFinishedAudioState) == 0x0003B0, "Member 'AWrestlerGameModeBase::LoadingFinishedAudioState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModeInGame_GetQuestProgressComponent \ +static_assert(alignof(WrestlerModeInGame_GetQuestProgressComponent) == 0x000008, "Wrong alignment on WrestlerModeInGame_GetQuestProgressComponent"); \ +static_assert(sizeof(WrestlerModeInGame_GetQuestProgressComponent) == 0x000008, "Wrong size on WrestlerModeInGame_GetQuestProgressComponent"); \ +static_assert(offsetof(WrestlerModeInGame_GetQuestProgressComponent, ReturnValue) == 0x000000, "Member 'WrestlerModeInGame_GetQuestProgressComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModeInGame_GetTutorialComponent \ +static_assert(alignof(WrestlerModeInGame_GetTutorialComponent) == 0x000008, "Wrong alignment on WrestlerModeInGame_GetTutorialComponent"); \ +static_assert(sizeof(WrestlerModeInGame_GetTutorialComponent) == 0x000008, "Wrong size on WrestlerModeInGame_GetTutorialComponent"); \ +static_assert(offsetof(WrestlerModeInGame_GetTutorialComponent, ReturnValue) == 0x000000, "Member 'WrestlerModeInGame_GetTutorialComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModeInGame_GetWaypointComponent \ +static_assert(alignof(WrestlerModeInGame_GetWaypointComponent) == 0x000008, "Wrong alignment on WrestlerModeInGame_GetWaypointComponent"); \ +static_assert(sizeof(WrestlerModeInGame_GetWaypointComponent) == 0x000008, "Wrong size on WrestlerModeInGame_GetWaypointComponent"); \ +static_assert(offsetof(WrestlerModeInGame_GetWaypointComponent, ReturnValue) == 0x000000, "Member 'WrestlerModeInGame_GetWaypointComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerModeInGame \ +static_assert(alignof(AWrestlerModeInGame) == 0x000008, "Wrong alignment on AWrestlerModeInGame"); \ +static_assert(sizeof(AWrestlerModeInGame) == 0x000410, "Wrong size on AWrestlerModeInGame"); \ +static_assert(offsetof(AWrestlerModeInGame, WaypointComponent) == 0x0003E0, "Member 'AWrestlerModeInGame::WaypointComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerModeInGame, QuestProgressComponent) == 0x0003E8, "Member 'AWrestlerModeInGame::QuestProgressComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerModeInGame, TutorialComponent) == 0x0003F0, "Member 'AWrestlerModeInGame::TutorialComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerModeInGame, AbilityWheelTimeDilation) == 0x0003F8, "Member 'AWrestlerModeInGame::AbilityWheelTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerModeInGame, TempPlayerSpawnActor) == 0x000400, "Member 'AWrestlerModeInGame::TempPlayerSpawnActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerExecuteCommandVolume \ +static_assert(alignof(AWrestlerExecuteCommandVolume) == 0x000008, "Wrong alignment on AWrestlerExecuteCommandVolume"); \ +static_assert(sizeof(AWrestlerExecuteCommandVolume) == 0x000340, "Wrong size on AWrestlerExecuteCommandVolume"); \ +static_assert(offsetof(AWrestlerExecuteCommandVolume, BoxCollision) == 0x000298, "Member 'AWrestlerExecuteCommandVolume::BoxCollision' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExecuteCommandVolume, CommandValues) == 0x0002A0, "Member 'AWrestlerExecuteCommandVolume::CommandValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired \ +static_assert(alignof(WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired) == 0x000008, "Wrong alignment on WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired"); \ +static_assert(sizeof(WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired) == 0x000008, "Wrong size on WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired"); \ +static_assert(offsetof(WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired, InAbilityAcquired) == 0x000000, "Member 'WrestlerClanTrainerConversationSubsystem_OnAbilityAcquired::InAbilityAcquired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerClanTrainerConversationSubsystem \ +static_assert(alignof(UWrestlerClanTrainerConversationSubsystem) == 0x000008, "Wrong alignment on UWrestlerClanTrainerConversationSubsystem"); \ +static_assert(sizeof(UWrestlerClanTrainerConversationSubsystem) == 0x0000D8, "Wrong size on UWrestlerClanTrainerConversationSubsystem"); \ +static_assert(offsetof(UWrestlerClanTrainerConversationSubsystem, ConversationStartProperty) == 0x000068, "Member 'UWrestlerClanTrainerConversationSubsystem::ConversationStartProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanTrainerConversationSubsystem, AbilitiesDataTablePerClan) == 0x000078, "Member 'UWrestlerClanTrainerConversationSubsystem::AbilitiesDataTablePerClan' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerClanTrainerConversationSubsystem, LastInteractedDialogueRig) == 0x0000C8, "Member 'UWrestlerClanTrainerConversationSubsystem::LastInteractedDialogueRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTrainerMenu_SetClanTrainer \ +static_assert(alignof(WrestlerTrainerMenu_SetClanTrainer) == 0x000004, "Wrong alignment on WrestlerTrainerMenu_SetClanTrainer"); \ +static_assert(sizeof(WrestlerTrainerMenu_SetClanTrainer) == 0x000004, "Wrong size on WrestlerTrainerMenu_SetClanTrainer"); \ +static_assert(offsetof(WrestlerTrainerMenu_SetClanTrainer, InClanValue) == 0x000000, "Member 'WrestlerTrainerMenu_SetClanTrainer::InClanValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTrainerMenu \ +static_assert(alignof(UWrestlerTrainerMenu) == 0x000008, "Wrong alignment on UWrestlerTrainerMenu"); \ +static_assert(sizeof(UWrestlerTrainerMenu) == 0x000308, "Wrong size on UWrestlerTrainerMenu"); \ +static_assert(offsetof(UWrestlerTrainerMenu, ClanTrainerAbilityWidget) == 0x000300, "Member 'UWrestlerTrainerMenu::ClanTrainerAbilityWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerMenuWidget_GetFocusedAbility \ +static_assert(alignof(WrestlerClanTrainerMenuWidget_GetFocusedAbility) == 0x000008, "Wrong alignment on WrestlerClanTrainerMenuWidget_GetFocusedAbility"); \ +static_assert(sizeof(WrestlerClanTrainerMenuWidget_GetFocusedAbility) == 0x000008, "Wrong size on WrestlerClanTrainerMenuWidget_GetFocusedAbility"); \ +static_assert(offsetof(WrestlerClanTrainerMenuWidget_GetFocusedAbility, ReturnValue) == 0x000000, "Member 'WrestlerClanTrainerMenuWidget_GetFocusedAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities \ +static_assert(alignof(WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities) == 0x000004, "Wrong alignment on WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities"); \ +static_assert(sizeof(WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities) == 0x000004, "Wrong size on WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities"); \ +static_assert(offsetof(WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities, InClanValue) == 0x000000, "Member 'WrestlerClanTrainerMenuWidget_PopulateTrainerAbilities::InClanValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerClanTrainerMenuWidget \ +static_assert(alignof(UWrestlerClanTrainerMenuWidget) == 0x000008, "Wrong alignment on UWrestlerClanTrainerMenuWidget"); \ +static_assert(sizeof(UWrestlerClanTrainerMenuWidget) == 0x0004C0, "Wrong size on UWrestlerClanTrainerMenuWidget"); \ +static_assert(offsetof(UWrestlerClanTrainerMenuWidget, TrainerAbilities) == 0x0004B0, "Member 'UWrestlerClanTrainerMenuWidget::TrainerAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquipmentDefinition \ +static_assert(alignof(UWrestlerEquipmentDefinition) == 0x000010, "Wrong alignment on UWrestlerEquipmentDefinition"); \ +static_assert(sizeof(UWrestlerEquipmentDefinition) == 0x0000D0, "Wrong size on UWrestlerEquipmentDefinition"); \ +static_assert(offsetof(UWrestlerEquipmentDefinition, InstanceType) == 0x000028, "Member 'UWrestlerEquipmentDefinition::InstanceType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentDefinition, AbilitySetsToGrant) == 0x000030, "Member 'UWrestlerEquipmentDefinition::AbilitySetsToGrant' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentDefinition, ActorToSpawn) == 0x000040, "Member 'UWrestlerEquipmentDefinition::ActorToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentDefinition, AudioSwitch) == 0x0000C0, "Member 'UWrestlerEquipmentDefinition::AudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerTypeDefinition \ +static_assert(alignof(UWrestlerPlayerTypeDefinition) == 0x000008, "Wrong alignment on UWrestlerPlayerTypeDefinition"); \ +static_assert(sizeof(UWrestlerPlayerTypeDefinition) == 0x000080, "Wrong size on UWrestlerPlayerTypeDefinition"); \ +static_assert(offsetof(UWrestlerPlayerTypeDefinition, CharacterTag) == 0x000028, "Member 'UWrestlerPlayerTypeDefinition::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerTypeDefinition, CharacterClass) == 0x000030, "Member 'UWrestlerPlayerTypeDefinition::CharacterClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerTypeDefinition, DefaultAbilities) == 0x000058, "Member 'UWrestlerPlayerTypeDefinition::DefaultAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerClueTrail_OnDecalAlphaUpdate \ +static_assert(alignof(WrestlerClueTrail_OnDecalAlphaUpdate) == 0x000004, "Wrong alignment on WrestlerClueTrail_OnDecalAlphaUpdate"); \ +static_assert(sizeof(WrestlerClueTrail_OnDecalAlphaUpdate) == 0x000004, "Wrong size on WrestlerClueTrail_OnDecalAlphaUpdate"); \ +static_assert(offsetof(WrestlerClueTrail_OnDecalAlphaUpdate, InAlpha) == 0x000000, "Member 'WrestlerClueTrail_OnDecalAlphaUpdate::InAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerClueTrail \ +static_assert(alignof(AWrestlerClueTrail) == 0x000008, "Wrong alignment on AWrestlerClueTrail"); \ +static_assert(sizeof(AWrestlerClueTrail) == 0x0002B8, "Wrong size on AWrestlerClueTrail"); \ +static_assert(offsetof(AWrestlerClueTrail, EmissiveParameterName) == 0x000298, "Member 'AWrestlerClueTrail::EmissiveParameterName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerClueTrail, DynamicMaterials) == 0x0002A0, "Member 'AWrestlerClueTrail::DynamicMaterials' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerClueTrail, ClueComponent) == 0x0002B0, "Member 'AWrestlerClueTrail::ClueComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCodexData \ +static_assert(alignof(UWrestlerCodexData) == 0x000008, "Wrong alignment on UWrestlerCodexData"); \ +static_assert(sizeof(UWrestlerCodexData) == 0x000068, "Wrong size on UWrestlerCodexData"); \ +static_assert(offsetof(UWrestlerCodexData, CodexInkData) == 0x000030, "Member 'UWrestlerCodexData::CodexInkData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCodexData, CodexInkData_Malkavian) == 0x000040, "Member 'UWrestlerCodexData::CodexInkData_Malkavian' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCodexData, CodexAssetMap) == 0x000050, "Member 'UWrestlerCodexData::CodexAssetMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCodexData, CodexTrackers) == 0x000058, "Member 'UWrestlerCodexData::CodexTrackers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUpdateFleeingVolumesProcessor \ +static_assert(alignof(UWrestlerMassUpdateFleeingVolumesProcessor) == 0x000008, "Wrong alignment on UWrestlerMassUpdateFleeingVolumesProcessor"); \ +static_assert(sizeof(UWrestlerMassUpdateFleeingVolumesProcessor) == 0x000600, "Wrong size on UWrestlerMassUpdateFleeingVolumesProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerFakeElevator_ModifyElevator \ +static_assert(alignof(WrestlerFakeElevator_ModifyElevator) == 0x000001, "Wrong alignment on WrestlerFakeElevator_ModifyElevator"); \ +static_assert(sizeof(WrestlerFakeElevator_ModifyElevator) == 0x000004, "Wrong size on WrestlerFakeElevator_ModifyElevator"); \ +static_assert(offsetof(WrestlerFakeElevator_ModifyElevator, bInWait) == 0x000000, "Member 'WrestlerFakeElevator_ModifyElevator::bInWait' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFakeElevator_ModifyElevator, bInLock) == 0x000001, "Member 'WrestlerFakeElevator_ModifyElevator::bInLock' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFakeElevator_ModifyElevator, bInForceOpen) == 0x000002, "Member 'WrestlerFakeElevator_ModifyElevator::bInForceOpen' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFakeElevator_ModifyElevator, bInForceClose) == 0x000003, "Member 'WrestlerFakeElevator_ModifyElevator::bInForceClose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerFakeElevator \ +static_assert(alignof(AWrestlerFakeElevator) == 0x000008, "Wrong alignment on AWrestlerFakeElevator"); \ +static_assert(sizeof(AWrestlerFakeElevator) == 0x0002E0, "Wrong size on AWrestlerFakeElevator"); \ + +#define DUMPER7_ASSERTS_CodexEntry_GetItem \ +static_assert(alignof(CodexEntry_GetItem) == 0x000008, "Wrong alignment on CodexEntry_GetItem"); \ +static_assert(sizeof(CodexEntry_GetItem) == 0x000008, "Wrong size on CodexEntry_GetItem"); \ +static_assert(offsetof(CodexEntry_GetItem, ReturnValue) == 0x000000, "Member 'CodexEntry_GetItem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexEntry_GetOwningEntryWidget \ +static_assert(alignof(CodexEntry_GetOwningEntryWidget) == 0x000008, "Wrong alignment on CodexEntry_GetOwningEntryWidget"); \ +static_assert(sizeof(CodexEntry_GetOwningEntryWidget) == 0x000008, "Wrong size on CodexEntry_GetOwningEntryWidget"); \ +static_assert(offsetof(CodexEntry_GetOwningEntryWidget, ReturnValue) == 0x000000, "Member 'CodexEntry_GetOwningEntryWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexEntry_ReceiveOnCodexUpdate \ +static_assert(alignof(CodexEntry_ReceiveOnCodexUpdate) == 0x000008, "Wrong alignment on CodexEntry_ReceiveOnCodexUpdate"); \ +static_assert(sizeof(CodexEntry_ReceiveOnCodexUpdate) == 0x000008, "Wrong size on CodexEntry_ReceiveOnCodexUpdate"); \ +static_assert(offsetof(CodexEntry_ReceiveOnCodexUpdate, ItemContent) == 0x000000, "Member 'CodexEntry_ReceiveOnCodexUpdate::ItemContent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCodexEntry \ +static_assert(alignof(UCodexEntry) == 0x000008, "Wrong alignment on UCodexEntry"); \ +static_assert(sizeof(UCodexEntry) == 0x000338, "Wrong size on UCodexEntry"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherSetupComponent \ +static_assert(alignof(UWrestlerWeatherSetupComponent) == 0x000010, "Wrong alignment on UWrestlerWeatherSetupComponent"); \ +static_assert(sizeof(UWrestlerWeatherSetupComponent) == 0x0002F0, "Wrong size on UWrestlerWeatherSetupComponent"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, bIsAffectingPlayer) == 0x0002A0, "Member 'UWrestlerWeatherSetupComponent::bIsAffectingPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, Scope) == 0x0002A1, "Member 'UWrestlerWeatherSetupComponent::Scope' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, Priority) == 0x0002A4, "Member 'UWrestlerWeatherSetupComponent::Priority' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, Type) == 0x0002A8, "Member 'UWrestlerWeatherSetupComponent::Type' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, WeatherInformation) == 0x0002B0, "Member 'UWrestlerWeatherSetupComponent::WeatherInformation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSetupComponent, WeatherParameters) == 0x0002B8, "Member 'UWrestlerWeatherSetupComponent::WeatherParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_AddItem \ +static_assert(alignof(CodexItem_AddItem) == 0x000008, "Wrong alignment on CodexItem_AddItem"); \ +static_assert(sizeof(CodexItem_AddItem) == 0x000008, "Wrong size on CodexItem_AddItem"); \ +static_assert(offsetof(CodexItem_AddItem, Item) == 0x000000, "Member 'CodexItem_AddItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetSortedItems \ +static_assert(alignof(CodexItem_GetSortedItems) == 0x000008, "Wrong alignment on CodexItem_GetSortedItems"); \ +static_assert(sizeof(CodexItem_GetSortedItems) == 0x000010, "Wrong size on CodexItem_GetSortedItems"); \ +static_assert(offsetof(CodexItem_GetSortedItems, ReturnValue) == 0x000000, "Member 'CodexItem_GetSortedItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_IsExpanded \ +static_assert(alignof(CodexItem_IsExpanded) == 0x000001, "Wrong alignment on CodexItem_IsExpanded"); \ +static_assert(sizeof(CodexItem_IsExpanded) == 0x000001, "Wrong size on CodexItem_IsExpanded"); \ +static_assert(offsetof(CodexItem_IsExpanded, ReturnValue) == 0x000000, "Member 'CodexItem_IsExpanded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_SetDepth \ +static_assert(alignof(CodexItem_SetDepth) == 0x000004, "Wrong alignment on CodexItem_SetDepth"); \ +static_assert(sizeof(CodexItem_SetDepth) == 0x000004, "Wrong size on CodexItem_SetDepth"); \ +static_assert(offsetof(CodexItem_SetDepth, Depth) == 0x000000, "Member 'CodexItem_SetDepth::Depth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_SetExpanded \ +static_assert(alignof(CodexItem_SetExpanded) == 0x000001, "Wrong alignment on CodexItem_SetExpanded"); \ +static_assert(sizeof(CodexItem_SetExpanded) == 0x000002, "Wrong size on CodexItem_SetExpanded"); \ +static_assert(offsetof(CodexItem_SetExpanded, bIsExpanded) == 0x000000, "Member 'CodexItem_SetExpanded::bIsExpanded' has a wrong offset!"); \ +static_assert(offsetof(CodexItem_SetExpanded, ReturnValue) == 0x000001, "Member 'CodexItem_SetExpanded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_SetName \ +static_assert(alignof(CodexItem_SetName) == 0x000008, "Wrong alignment on CodexItem_SetName"); \ +static_assert(sizeof(CodexItem_SetName) == 0x000018, "Wrong size on CodexItem_SetName"); \ +static_assert(offsetof(CodexItem_SetName, Name_0) == 0x000000, "Member 'CodexItem_SetName::Name_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_FindRecursive \ +static_assert(alignof(CodexItem_FindRecursive) == 0x000008, "Wrong alignment on CodexItem_FindRecursive"); \ +static_assert(sizeof(CodexItem_FindRecursive) == 0x000018, "Wrong size on CodexItem_FindRecursive"); \ +static_assert(offsetof(CodexItem_FindRecursive, Name_0) == 0x000000, "Member 'CodexItem_FindRecursive::Name_0' has a wrong offset!"); \ +static_assert(offsetof(CodexItem_FindRecursive, ReturnValue) == 0x000010, "Member 'CodexItem_FindRecursive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetBackground \ +static_assert(alignof(CodexItem_GetBackground) == 0x000008, "Wrong alignment on CodexItem_GetBackground"); \ +static_assert(sizeof(CodexItem_GetBackground) == 0x000010, "Wrong size on CodexItem_GetBackground"); \ +static_assert(offsetof(CodexItem_GetBackground, bHasImage) == 0x000000, "Member 'CodexItem_GetBackground::bHasImage' has a wrong offset!"); \ +static_assert(offsetof(CodexItem_GetBackground, ReturnValue) == 0x000008, "Member 'CodexItem_GetBackground::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetDepth \ +static_assert(alignof(CodexItem_GetDepth) == 0x000004, "Wrong alignment on CodexItem_GetDepth"); \ +static_assert(sizeof(CodexItem_GetDepth) == 0x000004, "Wrong size on CodexItem_GetDepth"); \ +static_assert(offsetof(CodexItem_GetDepth, ReturnValue) == 0x000000, "Member 'CodexItem_GetDepth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetDescription \ +static_assert(alignof(CodexItem_GetDescription) == 0x000008, "Wrong alignment on CodexItem_GetDescription"); \ +static_assert(sizeof(CodexItem_GetDescription) == 0x000018, "Wrong size on CodexItem_GetDescription"); \ +static_assert(offsetof(CodexItem_GetDescription, ReturnValue) == 0x000000, "Member 'CodexItem_GetDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetForeground \ +static_assert(alignof(CodexItem_GetForeground) == 0x000008, "Wrong alignment on CodexItem_GetForeground"); \ +static_assert(sizeof(CodexItem_GetForeground) == 0x000010, "Wrong size on CodexItem_GetForeground"); \ +static_assert(offsetof(CodexItem_GetForeground, bHasImage) == 0x000000, "Member 'CodexItem_GetForeground::bHasImage' has a wrong offset!"); \ +static_assert(offsetof(CodexItem_GetForeground, ReturnValue) == 0x000008, "Member 'CodexItem_GetForeground::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetItems \ +static_assert(alignof(CodexItem_GetItems) == 0x000008, "Wrong alignment on CodexItem_GetItems"); \ +static_assert(sizeof(CodexItem_GetItems) == 0x000010, "Wrong size on CodexItem_GetItems"); \ +static_assert(offsetof(CodexItem_GetItems, ReturnValue) == 0x000000, "Member 'CodexItem_GetItems::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetItemsWithChildren \ +static_assert(alignof(CodexItem_GetItemsWithChildren) == 0x000008, "Wrong alignment on CodexItem_GetItemsWithChildren"); \ +static_assert(sizeof(CodexItem_GetItemsWithChildren) == 0x000010, "Wrong size on CodexItem_GetItemsWithChildren"); \ +static_assert(offsetof(CodexItem_GetItemsWithChildren, ReturnValue) == 0x000000, "Member 'CodexItem_GetItemsWithChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetName \ +static_assert(alignof(CodexItem_GetName) == 0x000008, "Wrong alignment on CodexItem_GetName"); \ +static_assert(sizeof(CodexItem_GetName) == 0x000018, "Wrong size on CodexItem_GetName"); \ +static_assert(offsetof(CodexItem_GetName, ReturnValue) == 0x000000, "Member 'CodexItem_GetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetNameID \ +static_assert(alignof(CodexItem_GetNameID) == 0x000008, "Wrong alignment on CodexItem_GetNameID"); \ +static_assert(sizeof(CodexItem_GetNameID) == 0x000010, "Wrong size on CodexItem_GetNameID"); \ +static_assert(offsetof(CodexItem_GetNameID, ReturnValue) == 0x000000, "Member 'CodexItem_GetNameID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_GetParent \ +static_assert(alignof(CodexItem_GetParent) == 0x000008, "Wrong alignment on CodexItem_GetParent"); \ +static_assert(sizeof(CodexItem_GetParent) == 0x000008, "Wrong size on CodexItem_GetParent"); \ +static_assert(offsetof(CodexItem_GetParent, ReturnValue) == 0x000000, "Member 'CodexItem_GetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexItem_IsItemViewed \ +static_assert(alignof(CodexItem_IsItemViewed) == 0x000001, "Wrong alignment on CodexItem_IsItemViewed"); \ +static_assert(sizeof(CodexItem_IsItemViewed) == 0x000001, "Wrong size on CodexItem_IsItemViewed"); \ +static_assert(offsetof(CodexItem_IsItemViewed, ReturnValue) == 0x000000, "Member 'CodexItem_IsItemViewed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCodexItem \ +static_assert(alignof(UCodexItem) == 0x000008, "Wrong alignment on UCodexItem"); \ +static_assert(sizeof(UCodexItem) == 0x0000C0, "Wrong size on UCodexItem"); \ +static_assert(offsetof(UCodexItem, Detail) == 0x000028, "Member 'UCodexItem::Detail' has a wrong offset!"); \ +static_assert(offsetof(UCodexItem, Children) == 0x0000A0, "Member 'UCodexItem::Children' has a wrong offset!"); \ +static_assert(offsetof(UCodexItem, bIsExpaneded) == 0x0000B0, "Member 'UCodexItem::bIsExpaneded' has a wrong offset!"); \ +static_assert(offsetof(UCodexItem, NextChildIndex) == 0x0000B4, "Member 'UCodexItem::NextChildIndex' has a wrong offset!"); \ +static_assert(offsetof(UCodexItem, Index_0) == 0x0000B8, "Member 'UCodexItem::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFindRandomExitPointTask \ +static_assert(alignof(UWrestlerFindRandomExitPointTask) == 0x000008, "Wrong alignment on UWrestlerFindRandomExitPointTask"); \ +static_assert(sizeof(UWrestlerFindRandomExitPointTask) == 0x0000A0, "Wrong size on UWrestlerFindRandomExitPointTask"); \ +static_assert(offsetof(UWrestlerFindRandomExitPointTask, BBKeyExitPointLocation) == 0x000070, "Member 'UWrestlerFindRandomExitPointTask::BBKeyExitPointLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindRandomExitPointTask, OwnerController) == 0x000098, "Member 'UWrestlerFindRandomExitPointTask::OwnerController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem \ +static_assert(alignof(WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem) == 0x000008, "Wrong alignment on WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem"); \ +static_assert(sizeof(WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem) == 0x000010, "Wrong size on WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem"); \ +static_assert(offsetof(WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem, Item) == 0x000000, "Member 'WrestlerCodexRPGMenuTabWidget_ReceiveCodexShowItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient \ +static_assert(alignof(WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient) == 0x000008, "Wrong alignment on WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient"); \ +static_assert(sizeof(WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient) == 0x000008, "Wrong size on WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient"); \ +static_assert(offsetof(WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient, InAnalogScrollRecipient) == 0x000000, "Member 'WrestlerCodexRPGMenuTabWidget_RegisterScrollRecipient::InAnalogScrollRecipient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient \ +static_assert(alignof(WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient) == 0x000008, "Wrong alignment on WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient"); \ +static_assert(sizeof(WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient) == 0x000008, "Wrong size on WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient"); \ +static_assert(offsetof(WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient, InAnalogScrollRecipient) == 0x000000, "Member 'WrestlerCodexRPGMenuTabWidget_UnregisterScrollRecipient::InAnalogScrollRecipient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCodexRPGMenuTabWidget \ +static_assert(alignof(UWrestlerCodexRPGMenuTabWidget) == 0x000008, "Wrong alignment on UWrestlerCodexRPGMenuTabWidget"); \ +static_assert(sizeof(UWrestlerCodexRPGMenuTabWidget) == 0x0004A8, "Wrong size on UWrestlerCodexRPGMenuTabWidget"); \ +static_assert(offsetof(UWrestlerCodexRPGMenuTabWidget, ShortInputActionData) == 0x000490, "Member 'UWrestlerCodexRPGMenuTabWidget::ShortInputActionData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_GetAssetMap \ +static_assert(alignof(WrestlerCodexSubsystem_GetAssetMap) == 0x000008, "Wrong alignment on WrestlerCodexSubsystem_GetAssetMap"); \ +static_assert(sizeof(WrestlerCodexSubsystem_GetAssetMap) == 0x000008, "Wrong size on WrestlerCodexSubsystem_GetAssetMap"); \ +static_assert(offsetof(WrestlerCodexSubsystem_GetAssetMap, ReturnValue) == 0x000000, "Member 'WrestlerCodexSubsystem_GetAssetMap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_GetCodexRoot \ +static_assert(alignof(WrestlerCodexSubsystem_GetCodexRoot) == 0x000008, "Wrong alignment on WrestlerCodexSubsystem_GetCodexRoot"); \ +static_assert(sizeof(WrestlerCodexSubsystem_GetCodexRoot) == 0x000008, "Wrong size on WrestlerCodexSubsystem_GetCodexRoot"); \ +static_assert(offsetof(WrestlerCodexSubsystem_GetCodexRoot, ReturnValue) == 0x000000, "Member 'WrestlerCodexSubsystem_GetCodexRoot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_GetDLCCodexRoot \ +static_assert(alignof(WrestlerCodexSubsystem_GetDLCCodexRoot) == 0x000008, "Wrong alignment on WrestlerCodexSubsystem_GetDLCCodexRoot"); \ +static_assert(sizeof(WrestlerCodexSubsystem_GetDLCCodexRoot) == 0x000008, "Wrong size on WrestlerCodexSubsystem_GetDLCCodexRoot"); \ +static_assert(offsetof(WrestlerCodexSubsystem_GetDLCCodexRoot, ReturnValue) == 0x000000, "Member 'WrestlerCodexSubsystem_GetDLCCodexRoot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_ShowItem \ +static_assert(alignof(WrestlerCodexSubsystem_ShowItem) == 0x000008, "Wrong alignment on WrestlerCodexSubsystem_ShowItem"); \ +static_assert(sizeof(WrestlerCodexSubsystem_ShowItem) == 0x000018, "Wrong size on WrestlerCodexSubsystem_ShowItem"); \ +static_assert(offsetof(WrestlerCodexSubsystem_ShowItem, InCodexItemID) == 0x000000, "Member 'WrestlerCodexSubsystem_ShowItem::InCodexItemID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCodexSubsystem_ShowItem, bIsMalkavian) == 0x000010, "Member 'WrestlerCodexSubsystem_ShowItem::bIsMalkavian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_Tick \ +static_assert(alignof(WrestlerCodexSubsystem_Tick) == 0x000004, "Wrong alignment on WrestlerCodexSubsystem_Tick"); \ +static_assert(sizeof(WrestlerCodexSubsystem_Tick) == 0x000008, "Wrong size on WrestlerCodexSubsystem_Tick"); \ +static_assert(offsetof(WrestlerCodexSubsystem_Tick, DeltaSeconds) == 0x000000, "Member 'WrestlerCodexSubsystem_Tick::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCodexSubsystem_Tick, ReturnValue) == 0x000004, "Member 'WrestlerCodexSubsystem_Tick::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCodexSubsystem_UnlockFlag \ +static_assert(alignof(WrestlerCodexSubsystem_UnlockFlag) == 0x000008, "Wrong alignment on WrestlerCodexSubsystem_UnlockFlag"); \ +static_assert(sizeof(WrestlerCodexSubsystem_UnlockFlag) == 0x000010, "Wrong size on WrestlerCodexSubsystem_UnlockFlag"); \ +static_assert(offsetof(WrestlerCodexSubsystem_UnlockFlag, InCodexFlag) == 0x000000, "Member 'WrestlerCodexSubsystem_UnlockFlag::InCodexFlag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCodexSubsystem \ +static_assert(alignof(UWrestlerCodexSubsystem) == 0x000008, "Wrong alignment on UWrestlerCodexSubsystem"); \ +static_assert(sizeof(UWrestlerCodexSubsystem) == 0x000148, "Wrong size on UWrestlerCodexSubsystem"); \ +static_assert(offsetof(UWrestlerCodexSubsystem, MainCodex) == 0x000030, "Member 'UWrestlerCodexSubsystem::MainCodex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCodexSubsystem, MalkavianCodex) == 0x000088, "Member 'UWrestlerCodexSubsystem::MalkavianCodex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCodexSubsystem, Trackers) == 0x0000E0, "Member 'UWrestlerCodexSubsystem::Trackers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_TargetAssisted \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_TargetAssisted) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_TargetAssisted"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_TargetAssisted) == 0x000450, "Wrong size on AWrestlerGameplayAbilityTargetActor_TargetAssisted"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, Radius) == 0x0003E8, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::Radius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, MaxAngleDegrees) == 0x0003EC, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::MaxAngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, MaxAnglePitchDegrees) == 0x0003F0, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::MaxAnglePitchDegrees' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, WeightDistance) == 0x0003F4, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::WeightDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, WeightAngle) == 0x0003F8, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::WeightAngle' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, QueryChannel) == 0x0003FC, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, SphereCastPeriod) == 0x000400, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::SphereCastPeriod' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, SphereCastDistance) == 0x000404, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::SphereCastDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, SphereCastRadius) == 0x000408, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::SphereCastRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, LineOfSightTestCollisionChannel) == 0x000420, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::LineOfSightTestCollisionChannel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, bRequireLineOfSight) == 0x000421, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::bRequireLineOfSight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, LineOfSightTestSphereRadius) == 0x000424, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::LineOfSightTestSphereRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, bFindTargetOnConfirm) == 0x000428, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::bFindTargetOnConfirm' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TargetAssisted, CurrentTarget) == 0x000430, "Member 'AWrestlerGameplayAbilityTargetActor_TargetAssisted::CurrentTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCollectable_OnInteractionStarted \ +static_assert(alignof(WrestlerCollectable_OnInteractionStarted) == 0x000008, "Wrong alignment on WrestlerCollectable_OnInteractionStarted"); \ +static_assert(sizeof(WrestlerCollectable_OnInteractionStarted) == 0x000008, "Wrong size on WrestlerCollectable_OnInteractionStarted"); \ +static_assert(offsetof(WrestlerCollectable_OnInteractionStarted, InInteractingActor) == 0x000000, "Member 'WrestlerCollectable_OnInteractionStarted::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCollectable \ +static_assert(alignof(AWrestlerCollectable) == 0x000008, "Wrong alignment on AWrestlerCollectable"); \ +static_assert(sizeof(AWrestlerCollectable) == 0x000390, "Wrong size on AWrestlerCollectable"); \ +static_assert(offsetof(AWrestlerCollectable, PersistenceComponentHidden) == 0x0002F8, "Member 'AWrestlerCollectable::PersistenceComponentHidden' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, CollectableType) == 0x000300, "Member 'AWrestlerCollectable::CollectableType' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, bHasNotification) == 0x000301, "Member 'AWrestlerCollectable::bHasNotification' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, bHasXPReward) == 0x000302, "Member 'AWrestlerCollectable::bHasXPReward' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, Notification) == 0x000308, "Member 'AWrestlerCollectable::Notification' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, CodexNameID) == 0x000360, "Member 'AWrestlerCollectable::CodexNameID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, CodexUnlock) == 0x000370, "Member 'AWrestlerCollectable::CodexUnlock' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, XPRewardType) == 0x000380, "Member 'AWrestlerCollectable::XPRewardType' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCollectable, bIsPartOfGameProgression) == 0x000388, "Member 'AWrestlerCollectable::bIsPartOfGameProgression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTaskSetupSearchTeam \ +static_assert(alignof(UWrestlerStateTreeTaskSetupSearchTeam) == 0x000008, "Wrong alignment on UWrestlerStateTreeTaskSetupSearchTeam"); \ +static_assert(sizeof(UWrestlerStateTreeTaskSetupSearchTeam) == 0x000068, "Wrong size on UWrestlerStateTreeTaskSetupSearchTeam"); \ +static_assert(offsetof(UWrestlerStateTreeTaskSetupSearchTeam, SearchManager) == 0x000048, "Member 'UWrestlerStateTreeTaskSetupSearchTeam::SearchManager' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTaskSetupSearchTeam, LastKnownPosition) == 0x000050, "Member 'UWrestlerStateTreeTaskSetupSearchTeam::LastKnownPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_GetSoftLockTarget \ +static_assert(alignof(WrestlerCombatTargetComponent_GetSoftLockTarget) == 0x000008, "Wrong alignment on WrestlerCombatTargetComponent_GetSoftLockTarget"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_GetSoftLockTarget) == 0x000008, "Wrong size on WrestlerCombatTargetComponent_GetSoftLockTarget"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_GetSoftLockTarget, ReturnValue) == 0x000000, "Member 'WrestlerCombatTargetComponent_GetSoftLockTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_GetTarget \ +static_assert(alignof(WrestlerCombatTargetComponent_GetTarget) == 0x000008, "Wrong alignment on WrestlerCombatTargetComponent_GetTarget"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_GetTarget) == 0x000008, "Wrong size on WrestlerCombatTargetComponent_GetTarget"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_GetTarget, ReturnValue) == 0x000000, "Member 'WrestlerCombatTargetComponent_GetTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_IsTargeting \ +static_assert(alignof(WrestlerCombatTargetComponent_IsTargeting) == 0x000001, "Wrong alignment on WrestlerCombatTargetComponent_IsTargeting"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_IsTargeting) == 0x000001, "Wrong size on WrestlerCombatTargetComponent_IsTargeting"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_IsTargeting, ReturnValue) == 0x000000, "Member 'WrestlerCombatTargetComponent_IsTargeting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_SetMaxAngle \ +static_assert(alignof(WrestlerCombatTargetComponent_SetMaxAngle) == 0x000004, "Wrong alignment on WrestlerCombatTargetComponent_SetMaxAngle"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_SetMaxAngle) == 0x000004, "Wrong size on WrestlerCombatTargetComponent_SetMaxAngle"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_SetMaxAngle, NewMaxAngle) == 0x000000, "Member 'WrestlerCombatTargetComponent_SetMaxAngle::NewMaxAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_SetMaxDistance \ +static_assert(alignof(WrestlerCombatTargetComponent_SetMaxDistance) == 0x000004, "Wrong alignment on WrestlerCombatTargetComponent_SetMaxDistance"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_SetMaxDistance) == 0x000004, "Wrong size on WrestlerCombatTargetComponent_SetMaxDistance"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_SetMaxDistance, NewMaxDistance) == 0x000000, "Member 'WrestlerCombatTargetComponent_SetMaxDistance::NewMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_SwitchTarget \ +static_assert(alignof(WrestlerCombatTargetComponent_SwitchTarget) == 0x000001, "Wrong alignment on WrestlerCombatTargetComponent_SwitchTarget"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_SwitchTarget) == 0x000001, "Wrong size on WrestlerCombatTargetComponent_SwitchTarget"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_SwitchTarget, Right) == 0x000000, "Member 'WrestlerCombatTargetComponent_SwitchTarget::Right' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_UpdatePlayerControllerLook \ +static_assert(alignof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook) == 0x000008, "Wrong alignment on WrestlerCombatTargetComponent_UpdatePlayerControllerLook"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook) == 0x000028, "Wrong size on WrestlerCombatTargetComponent_UpdatePlayerControllerLook"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook, InDeltaTime) == 0x000000, "Member 'WrestlerCombatTargetComponent_UpdatePlayerControllerLook::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook, LookRate) == 0x000008, "Member 'WrestlerCombatTargetComponent_UpdatePlayerControllerLook::LookRate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook, OutYawInput) == 0x000020, "Member 'WrestlerCombatTargetComponent_UpdatePlayerControllerLook::OutYawInput' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_UpdatePlayerControllerLook, OutPitchInput) == 0x000024, "Member 'WrestlerCombatTargetComponent_UpdatePlayerControllerLook::OutPitchInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCombatTargetComponent_GetPlayerLookAt \ +static_assert(alignof(WrestlerCombatTargetComponent_GetPlayerLookAt) == 0x000008, "Wrong alignment on WrestlerCombatTargetComponent_GetPlayerLookAt"); \ +static_assert(sizeof(WrestlerCombatTargetComponent_GetPlayerLookAt) == 0x000018, "Wrong size on WrestlerCombatTargetComponent_GetPlayerLookAt"); \ +static_assert(offsetof(WrestlerCombatTargetComponent_GetPlayerLookAt, ReturnValue) == 0x000000, "Member 'WrestlerCombatTargetComponent_GetPlayerLookAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCombatTargetComponent \ +static_assert(alignof(UWrestlerCombatTargetComponent) == 0x000008, "Wrong alignment on UWrestlerCombatTargetComponent"); \ +static_assert(sizeof(UWrestlerCombatTargetComponent) == 0x0000B8, "Wrong size on UWrestlerCombatTargetComponent"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, bUseControllerRotationForLookAt) == 0x0000A0, "Member 'UWrestlerCombatTargetComponent::bUseControllerRotationForLookAt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, AllowManualTargeting) == 0x0000A1, "Member 'UWrestlerCombatTargetComponent::AllowManualTargeting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, LookAtPitchOffset) == 0x0000A4, "Member 'UWrestlerCombatTargetComponent::LookAtPitchOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, MaxAngle) == 0x0000A8, "Member 'UWrestlerCombatTargetComponent::MaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, MaxDistance) == 0x0000AC, "Member 'UWrestlerCombatTargetComponent::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCombatTargetComponent, Target) == 0x0000B0, "Member 'UWrestlerCombatTargetComponent::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerExponentialHeightFogVolume \ +static_assert(alignof(AWrestlerExponentialHeightFogVolume) == 0x000008, "Wrong alignment on AWrestlerExponentialHeightFogVolume"); \ +static_assert(sizeof(AWrestlerExponentialHeightFogVolume) == 0x000390, "Wrong size on AWrestlerExponentialHeightFogVolume"); \ +static_assert(offsetof(AWrestlerExponentialHeightFogVolume, Priority) == 0x0002D0, "Member 'AWrestlerExponentialHeightFogVolume::Priority' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFogVolume, ExponentialHeightFogParameters) == 0x0002D8, "Member 'AWrestlerExponentialHeightFogVolume::ExponentialHeightFogParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFogVolume, bPlayerCurrentlyWithin) == 0x000378, "Member 'AWrestlerExponentialHeightFogVolume::bPlayerCurrentlyWithin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassNoiseHearingProcessor \ +static_assert(alignof(UWrestlerMassNoiseHearingProcessor) == 0x000008, "Wrong alignment on UWrestlerMassNoiseHearingProcessor"); \ +static_assert(sizeof(UWrestlerMassNoiseHearingProcessor) == 0x000600, "Wrong size on UWrestlerMassNoiseHearingProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerComboFinished \ +static_assert(alignof(UWrestlerComboFinished) == 0x000008, "Wrong alignment on UWrestlerComboFinished"); \ +static_assert(sizeof(UWrestlerComboFinished) == 0x000080, "Wrong size on UWrestlerComboFinished"); \ +static_assert(offsetof(UWrestlerComboFinished, bSuccess) == 0x000078, "Member 'UWrestlerComboFinished::bSuccess' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerComboFinished, EnemyType) == 0x000079, "Member 'UWrestlerComboFinished::EnemyType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCommenceEnemyAbility \ +static_assert(alignof(UWrestlerCommenceEnemyAbility) == 0x000008, "Wrong alignment on UWrestlerCommenceEnemyAbility"); \ +static_assert(sizeof(UWrestlerCommenceEnemyAbility) == 0x000080, "Wrong size on UWrestlerCommenceEnemyAbility"); \ +static_assert(offsetof(UWrestlerCommenceEnemyAbility, ControlCue) == 0x000070, "Member 'UWrestlerCommenceEnemyAbility::ControlCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCommenceEnemyAbility, EnemyType) == 0x000078, "Member 'UWrestlerCommenceEnemyAbility::EnemyType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCommenceEnemyAbility, bBlockingState) == 0x000079, "Member 'UWrestlerCommenceEnemyAbility::bBlockingState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassGetIntoPositionAnimationProcessor \ +static_assert(alignof(UWrestlerMassGetIntoPositionAnimationProcessor) == 0x000008, "Wrong alignment on UWrestlerMassGetIntoPositionAnimationProcessor"); \ +static_assert(sizeof(UWrestlerMassGetIntoPositionAnimationProcessor) == 0x000360, "Wrong size on UWrestlerMassGetIntoPositionAnimationProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerFindInterestingPointTask \ +static_assert(alignof(UWrestlerFindInterestingPointTask) == 0x000008, "Wrong alignment on UWrestlerFindInterestingPointTask"); \ +static_assert(sizeof(UWrestlerFindInterestingPointTask) == 0x0000B0, "Wrong size on UWrestlerFindInterestingPointTask"); \ +static_assert(offsetof(UWrestlerFindInterestingPointTask, BBKeyInterestingPointLocation) == 0x000070, "Member 'UWrestlerFindInterestingPointTask::BBKeyInterestingPointLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindInterestingPointTask, OwnerController) == 0x000098, "Member 'UWrestlerFindInterestingPointTask::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindInterestingPointTask, AICharacter) == 0x0000A0, "Member 'UWrestlerFindInterestingPointTask::AICharacter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindInterestingPointTask, InterestingPointsRange) == 0x0000A8, "Member 'UWrestlerFindInterestingPointTask::InterestingPointsRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindInterestingPointTask, InterestingPointsRangeStrengthMultiplier) == 0x0000AC, "Member 'UWrestlerFindInterestingPointTask::InterestingPointsRangeStrengthMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCommonButtonBase_SetButtonText \ +static_assert(alignof(WrestlerCommonButtonBase_SetButtonText) == 0x000008, "Wrong alignment on WrestlerCommonButtonBase_SetButtonText"); \ +static_assert(sizeof(WrestlerCommonButtonBase_SetButtonText) == 0x000018, "Wrong size on WrestlerCommonButtonBase_SetButtonText"); \ +static_assert(offsetof(WrestlerCommonButtonBase_SetButtonText, InText) == 0x000000, "Member 'WrestlerCommonButtonBase_SetButtonText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCommonButtonBase_UpdateButtonText \ +static_assert(alignof(WrestlerCommonButtonBase_UpdateButtonText) == 0x000008, "Wrong alignment on WrestlerCommonButtonBase_UpdateButtonText"); \ +static_assert(sizeof(WrestlerCommonButtonBase_UpdateButtonText) == 0x000018, "Wrong size on WrestlerCommonButtonBase_UpdateButtonText"); \ +static_assert(offsetof(WrestlerCommonButtonBase_UpdateButtonText, InText) == 0x000000, "Member 'WrestlerCommonButtonBase_UpdateButtonText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCommonButtonBase \ +static_assert(alignof(UWrestlerCommonButtonBase) == 0x000010, "Wrong alignment on UWrestlerCommonButtonBase"); \ +static_assert(sizeof(UWrestlerCommonButtonBase) == 0x0015A0, "Wrong size on UWrestlerCommonButtonBase"); \ +static_assert(offsetof(UWrestlerCommonButtonBase, ButtonText) == 0x001588, "Member 'UWrestlerCommonButtonBase::ButtonText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_AgentActionTag \ +static_assert(alignof(UWrestlerTaskScore_AgentActionTag) == 0x000008, "Wrong alignment on UWrestlerTaskScore_AgentActionTag"); \ +static_assert(sizeof(UWrestlerTaskScore_AgentActionTag) == 0x000038, "Wrong size on UWrestlerTaskScore_AgentActionTag"); \ +static_assert(offsetof(UWrestlerTaskScore_AgentActionTag, TagToCheck) == 0x000030, "Member 'UWrestlerTaskScore_AgentActionTag::TagToCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState \ +static_assert(alignof(WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState) == 0x000008, "Wrong alignment on WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState"); \ +static_assert(sizeof(WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState) == 0x000010, "Wrong size on WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState"); \ +static_assert(offsetof(WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState, commonUIActionRouterBaseInstance) == 0x000000, "Member 'WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState::commonUIActionRouterBaseInstance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState, ReturnValue) == 0x000008, "Member 'WrestlerCommonUIActionRouterBase_GetWrestlerCommonAnalogCursorState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState \ +static_assert(alignof(WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState) == 0x000008, "Wrong alignment on WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState"); \ +static_assert(sizeof(WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState) == 0x000010, "Wrong size on WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState"); \ +static_assert(offsetof(WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState, commonUIActionRouterBaseInstance) == 0x000000, "Member 'WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState::commonUIActionRouterBaseInstance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState, State) == 0x000008, "Member 'WrestlerCommonUIActionRouterBase_SetWrestlerCommonAnalogCursorState::State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCommonUIActionRouterBase \ +static_assert(alignof(UWrestlerCommonUIActionRouterBase) == 0x000008, "Wrong alignment on UWrestlerCommonUIActionRouterBase"); \ +static_assert(sizeof(UWrestlerCommonUIActionRouterBase) == 0x000170, "Wrong size on UWrestlerCommonUIActionRouterBase"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_Persistent \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_Persistent) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_Persistent"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_Persistent) == 0x0003F0, "Wrong size on AWrestlerGameplayAbilityTargetActor_Persistent"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDisableFragmentRemovedProcessor \ +static_assert(alignof(UWrestlerMassDisableFragmentRemovedProcessor) == 0x000008, "Wrong alignment on UWrestlerMassDisableFragmentRemovedProcessor"); \ +static_assert(sizeof(UWrestlerMassDisableFragmentRemovedProcessor) == 0x000370, "Wrong size on UWrestlerMassDisableFragmentRemovedProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerGameInstance_OnUserInputDeviceChanged \ +static_assert(alignof(WrestlerGameInstance_OnUserInputDeviceChanged) == 0x000008, "Wrong alignment on WrestlerGameInstance_OnUserInputDeviceChanged"); \ +static_assert(sizeof(WrestlerGameInstance_OnUserInputDeviceChanged) == 0x000010, "Wrong size on WrestlerGameInstance_OnUserInputDeviceChanged"); \ +static_assert(offsetof(WrestlerGameInstance_OnUserInputDeviceChanged, InUserInfo) == 0x000000, "Member 'WrestlerGameInstance_OnUserInputDeviceChanged::InUserInfo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameInstance_OnUserInputDeviceChanged, InInputDeviceId) == 0x000008, "Member 'WrestlerGameInstance_OnUserInputDeviceChanged::InInputDeviceId' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameInstance_OnUserInputDeviceChanged, bIsConnected) == 0x00000C, "Member 'WrestlerGameInstance_OnUserInputDeviceChanged::bIsConnected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameInstance_SetPlayerVariantMenuOverride \ +static_assert(alignof(WrestlerGameInstance_SetPlayerVariantMenuOverride) == 0x000001, "Wrong alignment on WrestlerGameInstance_SetPlayerVariantMenuOverride"); \ +static_assert(sizeof(WrestlerGameInstance_SetPlayerVariantMenuOverride) == 0x000001, "Wrong size on WrestlerGameInstance_SetPlayerVariantMenuOverride"); \ +static_assert(offsetof(WrestlerGameInstance_SetPlayerVariantMenuOverride, InPlayerVariantMenuOverride) == 0x000000, "Member 'WrestlerGameInstance_SetPlayerVariantMenuOverride::InPlayerVariantMenuOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameInstance_SetPlayerVariantNewGame \ +static_assert(alignof(WrestlerGameInstance_SetPlayerVariantNewGame) == 0x000001, "Wrong alignment on WrestlerGameInstance_SetPlayerVariantNewGame"); \ +static_assert(sizeof(WrestlerGameInstance_SetPlayerVariantNewGame) == 0x000001, "Wrong size on WrestlerGameInstance_SetPlayerVariantNewGame"); \ +static_assert(offsetof(WrestlerGameInstance_SetPlayerVariantNewGame, InPlayerVariant) == 0x000000, "Member 'WrestlerGameInstance_SetPlayerVariantNewGame::InPlayerVariant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameInstance_GetPlayerVariantMenuOverride \ +static_assert(alignof(WrestlerGameInstance_GetPlayerVariantMenuOverride) == 0x000001, "Wrong alignment on WrestlerGameInstance_GetPlayerVariantMenuOverride"); \ +static_assert(sizeof(WrestlerGameInstance_GetPlayerVariantMenuOverride) == 0x000001, "Wrong size on WrestlerGameInstance_GetPlayerVariantMenuOverride"); \ +static_assert(offsetof(WrestlerGameInstance_GetPlayerVariantMenuOverride, ReturnValue) == 0x000000, "Member 'WrestlerGameInstance_GetPlayerVariantMenuOverride::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameInstance \ +static_assert(alignof(UWrestlerGameInstance) == 0x000008, "Wrong alignment on UWrestlerGameInstance"); \ +static_assert(sizeof(UWrestlerGameInstance) == 0x000278, "Wrong size on UWrestlerGameInstance"); \ +static_assert(offsetof(UWrestlerGameInstance, LoadingStartedAudioState) == 0x000258, "Member 'UWrestlerGameInstance::LoadingStartedAudioState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameInstance, WorldPartitionManager) == 0x000270, "Member 'UWrestlerGameInstance::WorldPartitionManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConfigDataAsset_EnemyStats \ +static_assert(alignof(UWrestlerConfigDataAsset_EnemyStats) == 0x000008, "Wrong alignment on UWrestlerConfigDataAsset_EnemyStats"); \ +static_assert(sizeof(UWrestlerConfigDataAsset_EnemyStats) == 0x0000C8, "Wrong size on UWrestlerConfigDataAsset_EnemyStats"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, MaxStun) == 0x000030, "Member 'UWrestlerConfigDataAsset_EnemyStats::MaxStun' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, MaxHealth) == 0x000034, "Member 'UWrestlerConfigDataAsset_EnemyStats::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, MaxBlood) == 0x000038, "Member 'UWrestlerConfigDataAsset_EnemyStats::MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, AttackPower) == 0x00003C, "Member 'UWrestlerConfigDataAsset_EnemyStats::AttackPower' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, StunThreshold) == 0x000040, "Member 'UWrestlerConfigDataAsset_EnemyStats::StunThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, StaggerDuration) == 0x000044, "Member 'UWrestlerConfigDataAsset_EnemyStats::StaggerDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, RangedRotationSettings) == 0x000048, "Member 'UWrestlerConfigDataAsset_EnemyStats::RangedRotationSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, Aggressiveness) == 0x000070, "Member 'UWrestlerConfigDataAsset_EnemyStats::Aggressiveness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, Noticeability) == 0x000074, "Member 'UWrestlerConfigDataAsset_EnemyStats::Noticeability' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_EnemyStats, DamageByTag) == 0x000078, "Member 'UWrestlerConfigDataAsset_EnemyStats::DamageByTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConfigDataAsset_Test \ +static_assert(alignof(UWrestlerConfigDataAsset_Test) == 0x000008, "Wrong alignment on UWrestlerConfigDataAsset_Test"); \ +static_assert(sizeof(UWrestlerConfigDataAsset_Test) == 0x000058, "Wrong size on UWrestlerConfigDataAsset_Test"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_Test, TestFloat) == 0x000030, "Member 'UWrestlerConfigDataAsset_Test::TestFloat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_Test, TestInt) == 0x000034, "Member 'UWrestlerConfigDataAsset_Test::TestInt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_Test, TestString) == 0x000038, "Member 'UWrestlerConfigDataAsset_Test::TestString' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfigDataAsset_Test, TestStringArray) == 0x000048, "Member 'UWrestlerConfigDataAsset_Test::TestStringArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFeedTargetInterface_CanBeFedOn \ +static_assert(alignof(WrestlerFeedTargetInterface_CanBeFedOn) == 0x000001, "Wrong alignment on WrestlerFeedTargetInterface_CanBeFedOn"); \ +static_assert(sizeof(WrestlerFeedTargetInterface_CanBeFedOn) == 0x000001, "Wrong size on WrestlerFeedTargetInterface_CanBeFedOn"); \ +static_assert(offsetof(WrestlerFeedTargetInterface_CanBeFedOn, ReturnValue) == 0x000000, "Member 'WrestlerFeedTargetInterface_CanBeFedOn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFeedTargetInterface_CanFeedInstaKill \ +static_assert(alignof(WrestlerFeedTargetInterface_CanFeedInstaKill) == 0x000001, "Wrong alignment on WrestlerFeedTargetInterface_CanFeedInstaKill"); \ +static_assert(sizeof(WrestlerFeedTargetInterface_CanFeedInstaKill) == 0x000001, "Wrong size on WrestlerFeedTargetInterface_CanFeedInstaKill"); \ +static_assert(offsetof(WrestlerFeedTargetInterface_CanFeedInstaKill, ReturnValue) == 0x000000, "Member 'WrestlerFeedTargetInterface_CanFeedInstaKill::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFeedTargetInterface_GetFeedReactGameplayEffect \ +static_assert(alignof(WrestlerFeedTargetInterface_GetFeedReactGameplayEffect) == 0x000008, "Wrong alignment on WrestlerFeedTargetInterface_GetFeedReactGameplayEffect"); \ +static_assert(sizeof(WrestlerFeedTargetInterface_GetFeedReactGameplayEffect) == 0x000008, "Wrong size on WrestlerFeedTargetInterface_GetFeedReactGameplayEffect"); \ +static_assert(offsetof(WrestlerFeedTargetInterface_GetFeedReactGameplayEffect, ReturnValue) == 0x000000, "Member 'WrestlerFeedTargetInterface_GetFeedReactGameplayEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerFeedTargetInterface \ +static_assert(alignof(IWrestlerFeedTargetInterface) == 0x000001, "Wrong alignment on IWrestlerFeedTargetInterface"); \ +static_assert(sizeof(IWrestlerFeedTargetInterface) == 0x000001, "Wrong size on IWrestlerFeedTargetInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerConfigDA_InheritanceTest \ +static_assert(alignof(UWrestlerConfigDA_InheritanceTest) == 0x000008, "Wrong alignment on UWrestlerConfigDA_InheritanceTest"); \ +static_assert(sizeof(UWrestlerConfigDA_InheritanceTest) == 0x000068, "Wrong size on UWrestlerConfigDA_InheritanceTest"); \ +static_assert(offsetof(UWrestlerConfigDA_InheritanceTest, NewProperty) == 0x000058, "Member 'UWrestlerConfigDA_InheritanceTest::NewProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerNotePopupWidget_OnInputChanged \ +static_assert(alignof(WrestlerNotePopupWidget_OnInputChanged) == 0x000001, "Wrong alignment on WrestlerNotePopupWidget_OnInputChanged"); \ +static_assert(sizeof(WrestlerNotePopupWidget_OnInputChanged) == 0x000001, "Wrong size on WrestlerNotePopupWidget_OnInputChanged"); \ +static_assert(offsetof(WrestlerNotePopupWidget_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WrestlerNotePopupWidget_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNotePopupWidget \ +static_assert(alignof(UWrestlerNotePopupWidget) == 0x000008, "Wrong alignment on UWrestlerNotePopupWidget"); \ +static_assert(sizeof(UWrestlerNotePopupWidget) == 0x000460, "Wrong size on UWrestlerNotePopupWidget"); \ +static_assert(offsetof(UWrestlerNotePopupWidget, CurrentInputType) == 0x000450, "Member 'UWrestlerNotePopupWidget::CurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerNotePopupWidget, NoteText) == 0x000458, "Member 'UWrestlerNotePopupWidget::NoteText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerConfirmPromptWidget_RequestConfirmation \ +static_assert(alignof(WrestlerConfirmPromptWidget_RequestConfirmation) == 0x000001, "Wrong alignment on WrestlerConfirmPromptWidget_RequestConfirmation"); \ +static_assert(sizeof(WrestlerConfirmPromptWidget_RequestConfirmation) == 0x000001, "Wrong size on WrestlerConfirmPromptWidget_RequestConfirmation"); \ +static_assert(offsetof(WrestlerConfirmPromptWidget_RequestConfirmation, InConfirmationType) == 0x000000, "Member 'WrestlerConfirmPromptWidget_RequestConfirmation::InConfirmationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerConfirmPromptWidget_RequestCostumConfirmation \ +static_assert(alignof(WrestlerConfirmPromptWidget_RequestCostumConfirmation) == 0x000008, "Wrong alignment on WrestlerConfirmPromptWidget_RequestCostumConfirmation"); \ +static_assert(sizeof(WrestlerConfirmPromptWidget_RequestCostumConfirmation) == 0x000050, "Wrong size on WrestlerConfirmPromptWidget_RequestCostumConfirmation"); \ +static_assert(offsetof(WrestlerConfirmPromptWidget_RequestCostumConfirmation, InData) == 0x000000, "Member 'WrestlerConfirmPromptWidget_RequestCostumConfirmation::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConfirmPromptWidget \ +static_assert(alignof(UWrestlerConfirmPromptWidget) == 0x000008, "Wrong alignment on UWrestlerConfirmPromptWidget"); \ +static_assert(sizeof(UWrestlerConfirmPromptWidget) == 0x0004D0, "Wrong size on UWrestlerConfirmPromptWidget"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, ConfirmationData) == 0x000450, "Member 'UWrestlerConfirmPromptWidget::ConfirmationData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, YesButton) == 0x0004A0, "Member 'UWrestlerConfirmPromptWidget::YesButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, NoButton) == 0x0004A8, "Member 'UWrestlerConfirmPromptWidget::NoButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, OkayButton) == 0x0004B0, "Member 'UWrestlerConfirmPromptWidget::OkayButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, ConfirmationPromptTitle) == 0x0004B8, "Member 'UWrestlerConfirmPromptWidget::ConfirmationPromptTitle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, ConfirmationPromptText) == 0x0004C0, "Member 'UWrestlerConfirmPromptWidget::ConfirmationPromptText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConfirmPromptWidget, ConfirmationPromptSecondLineText) == 0x0004C8, "Member 'UWrestlerConfirmPromptWidget::ConfirmationPromptSecondLineText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyUIWidgetComponent \ +static_assert(alignof(UWrestlerEnemyUIWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerEnemyUIWidgetComponent"); \ +static_assert(sizeof(UWrestlerEnemyUIWidgetComponent) == 0x0007E0, "Wrong size on UWrestlerEnemyUIWidgetComponent"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, DotProductThreshold) == 0x0006E8, "Member 'UWrestlerEnemyUIWidgetComponent::DotProductThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, DistanceRange) == 0x0006F0, "Member 'UWrestlerEnemyUIWidgetComponent::DistanceRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, DistanceMappingRange) == 0x000700, "Member 'UWrestlerEnemyUIWidgetComponent::DistanceMappingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, HeightOffsetRange) == 0x000710, "Member 'UWrestlerEnemyUIWidgetComponent::HeightOffsetRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, ScaleMultiplierRange) == 0x000720, "Member 'UWrestlerEnemyUIWidgetComponent::ScaleMultiplierRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, DelayBeforeVisibilityTrace) == 0x000730, "Member 'UWrestlerEnemyUIWidgetComponent::DelayBeforeVisibilityTrace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, DelayVariation) == 0x000734, "Member 'UWrestlerEnemyUIWidgetComponent::DelayVariation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, HeightOffset) == 0x000738, "Member 'UWrestlerEnemyUIWidgetComponent::HeightOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, bUseLOSTrace) == 0x00073C, "Member 'UWrestlerEnemyUIWidgetComponent::bUseLOSTrace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, SocketToMapTransformTo) == 0x000740, "Member 'UWrestlerEnemyUIWidgetComponent::SocketToMapTransformTo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, OwningCharacter) == 0x000748, "Member 'UWrestlerEnemyUIWidgetComponent::OwningCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyUIWidgetComponent, CurrentWidget) == 0x000750, "Member 'UWrestlerEnemyUIWidgetComponent::CurrentWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation \ +static_assert(alignof(WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation) == 0x000004, "Wrong alignment on WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation"); \ +static_assert(sizeof(WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation) == 0x000004, "Wrong size on WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation"); \ +static_assert(offsetof(WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation, InDuration) == 0x000000, "Member 'WrestlerConsumablesHUDSlotWidget_PlayConsumableAnimation::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConsumablesHUDSlotWidget \ +static_assert(alignof(UWrestlerConsumablesHUDSlotWidget) == 0x000010, "Wrong alignment on UWrestlerConsumablesHUDSlotWidget"); \ +static_assert(sizeof(UWrestlerConsumablesHUDSlotWidget) == 0x000440, "Wrong size on UWrestlerConsumablesHUDSlotWidget"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumableIconBrush) == 0x000330, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumableIconBrush' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumableImage) == 0x000400, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumableImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumableQuantityText) == 0x000408, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumableQuantityText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumableType) == 0x000410, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumableType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumableProperty) == 0x000418, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumableProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerConsumablesHUDSlotWidget, ConsumablesGATag) == 0x000420, "Member 'UWrestlerConsumablesHUDSlotWidget::ConsumablesGATag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerConsumablesHUDWidget_UpdateConsumableCount \ +static_assert(alignof(WrestlerConsumablesHUDWidget_UpdateConsumableCount) == 0x000001, "Wrong alignment on WrestlerConsumablesHUDWidget_UpdateConsumableCount"); \ +static_assert(sizeof(WrestlerConsumablesHUDWidget_UpdateConsumableCount) == 0x000001, "Wrong size on WrestlerConsumablesHUDWidget_UpdateConsumableCount"); \ +static_assert(offsetof(WrestlerConsumablesHUDWidget_UpdateConsumableCount, InConsumableType) == 0x000000, "Member 'WrestlerConsumablesHUDWidget_UpdateConsumableCount::InConsumableType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerConsumablesHUDWidget \ +static_assert(alignof(UWrestlerConsumablesHUDWidget) == 0x000008, "Wrong alignment on UWrestlerConsumablesHUDWidget"); \ +static_assert(sizeof(UWrestlerConsumablesHUDWidget) == 0x000338, "Wrong size on UWrestlerConsumablesHUDWidget"); \ +static_assert(offsetof(UWrestlerConsumablesHUDWidget, ConsumablesPanel) == 0x000330, "Member 'UWrestlerConsumablesHUDWidget::ConsumablesPanel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_EnemyAttack \ +static_assert(alignof(UWrestlerGameplayAbility_EnemyAttack) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_EnemyAttack"); \ +static_assert(sizeof(UWrestlerGameplayAbility_EnemyAttack) == 0x000668, "Wrong size on UWrestlerGameplayAbility_EnemyAttack"); \ + +#define DUMPER7_ASSERTS_UWrestlerControlComponent \ +static_assert(alignof(UWrestlerControlComponent) == 0x000008, "Wrong alignment on UWrestlerControlComponent"); \ +static_assert(sizeof(UWrestlerControlComponent) == 0x000218, "Wrong size on UWrestlerControlComponent"); \ +static_assert(offsetof(UWrestlerControlComponent, CombatControlGraph) == 0x0001F0, "Member 'UWrestlerControlComponent::CombatControlGraph' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerControlComponent, ControlGraphs) == 0x0001F8, "Member 'UWrestlerControlComponent::ControlGraphs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerControlComponent, InputSetup) == 0x000208, "Member 'UWrestlerControlComponent::InputSetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerControlCue \ +static_assert(alignof(UWrestlerControlCue) == 0x000008, "Wrong alignment on UWrestlerControlCue"); \ +static_assert(sizeof(UWrestlerControlCue) == 0x000040, "Wrong size on UWrestlerControlCue"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypoint_OnInteractionBegin \ +static_assert(alignof(WrestlerWaypoint_OnInteractionBegin) == 0x000008, "Wrong alignment on WrestlerWaypoint_OnInteractionBegin"); \ +static_assert(sizeof(WrestlerWaypoint_OnInteractionBegin) == 0x000008, "Wrong size on WrestlerWaypoint_OnInteractionBegin"); \ +static_assert(offsetof(WrestlerWaypoint_OnInteractionBegin, InInteractingActor) == 0x000000, "Member 'WrestlerWaypoint_OnInteractionBegin::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypoint \ +static_assert(alignof(AWrestlerWaypoint) == 0x000008, "Wrong alignment on AWrestlerWaypoint"); \ +static_assert(sizeof(AWrestlerWaypoint) == 0x000390, "Wrong size on AWrestlerWaypoint"); \ +static_assert(offsetof(AWrestlerWaypoint, ParentWaypoint) == 0x0002A0, "Member 'AWrestlerWaypoint::ParentWaypoint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, ChildWaypoint) == 0x0002C8, "Member 'AWrestlerWaypoint::ChildWaypoint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, MissionActorComponent) == 0x0002F0, "Member 'AWrestlerWaypoint::MissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, Objective) == 0x0002F8, "Member 'AWrestlerWaypoint::Objective' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, InteractionActor) == 0x000320, "Member 'AWrestlerWaypoint::InteractionActor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, Interaction) == 0x000348, "Member 'AWrestlerWaypoint::Interaction' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, bMoveToInteraction) == 0x000370, "Member 'AWrestlerWaypoint::bMoveToInteraction' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint, DisappearDistance) == 0x000374, "Member 'AWrestlerWaypoint::DisappearDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypoint_Trigger_OnBeginOverlap \ +static_assert(alignof(WrestlerWaypoint_Trigger_OnBeginOverlap) == 0x000008, "Wrong alignment on WrestlerWaypoint_Trigger_OnBeginOverlap"); \ +static_assert(sizeof(WrestlerWaypoint_Trigger_OnBeginOverlap) == 0x000108, "Wrong size on WrestlerWaypoint_Trigger_OnBeginOverlap"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, OtherActor) == 0x000008, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, OtherComp) == 0x000010, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, bFromSweep) == 0x00001C, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnBeginOverlap, SweepResult) == 0x000020, "Member 'WrestlerWaypoint_Trigger_OnBeginOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypoint_Trigger_OnEndOverlap \ +static_assert(alignof(WrestlerWaypoint_Trigger_OnEndOverlap) == 0x000008, "Wrong alignment on WrestlerWaypoint_Trigger_OnEndOverlap"); \ +static_assert(sizeof(WrestlerWaypoint_Trigger_OnEndOverlap) == 0x000020, "Wrong size on WrestlerWaypoint_Trigger_OnEndOverlap"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnEndOverlap, OverlappedComponent) == 0x000000, "Member 'WrestlerWaypoint_Trigger_OnEndOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnEndOverlap, OtherActor) == 0x000008, "Member 'WrestlerWaypoint_Trigger_OnEndOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnEndOverlap, OtherComp) == 0x000010, "Member 'WrestlerWaypoint_Trigger_OnEndOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnEndOverlap, OtherBodyIndex) == 0x000018, "Member 'WrestlerWaypoint_Trigger_OnEndOverlap::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded \ +static_assert(alignof(WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded) == 0x000008, "Wrong alignment on WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded"); \ +static_assert(sizeof(WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded) == 0x000008, "Wrong size on WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded"); \ +static_assert(offsetof(WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded, OtherActor) == 0x000000, "Member 'WrestlerWaypoint_Trigger_OnEndOverlapTimerEnded::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypoint_Trigger \ +static_assert(alignof(AWrestlerWaypoint_Trigger) == 0x000008, "Wrong alignment on AWrestlerWaypoint_Trigger"); \ +static_assert(sizeof(AWrestlerWaypoint_Trigger) == 0x0003D0, "Wrong size on AWrestlerWaypoint_Trigger"); \ +static_assert(offsetof(AWrestlerWaypoint_Trigger, Listeners) == 0x000398, "Member 'AWrestlerWaypoint_Trigger::Listeners' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint_Trigger, PassCondition) == 0x0003B8, "Member 'AWrestlerWaypoint_Trigger::PassCondition' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint_Trigger, ReferenceTriggers) == 0x0003C0, "Member 'AWrestlerWaypoint_Trigger::ReferenceTriggers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAudioControllerSettings \ +static_assert(alignof(UWrestlerEnemyAudioControllerSettings) == 0x000008, "Wrong alignment on UWrestlerEnemyAudioControllerSettings"); \ +static_assert(sizeof(UWrestlerEnemyAudioControllerSettings) == 0x000480, "Wrong size on UWrestlerEnemyAudioControllerSettings"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, AwarenessRange) == 0x000048, "Member 'UWrestlerEnemyAudioControllerSettings::AwarenessRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, CombatAwarenessRange) == 0x00004C, "Member 'UWrestlerEnemyAudioControllerSettings::CombatAwarenessRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, GameplayTypeProperty) == 0x000050, "Member 'UWrestlerEnemyAudioControllerSettings::GameplayTypeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, NumTrackedEnemiesProperty) == 0x000078, "Member 'UWrestlerEnemyAudioControllerSettings::NumTrackedEnemiesProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, IsFeedingProperty) == 0x0000A0, "Member 'UWrestlerEnemyAudioControllerSettings::IsFeedingProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, RefreshRate) == 0x0000C8, "Member 'UWrestlerEnemyAudioControllerSettings::RefreshRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, MaxThreatFactor) == 0x0000CC, "Member 'UWrestlerEnemyAudioControllerSettings::MaxThreatFactor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, MinimumCombatTimeSecs) == 0x0000D0, "Member 'UWrestlerEnemyAudioControllerSettings::MinimumCombatTimeSecs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, MinimumCombatEndingTimeSecs) == 0x0000D4, "Member 'UWrestlerEnemyAudioControllerSettings::MinimumCombatEndingTimeSecs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, ThreatFactorRTPC) == 0x0000D8, "Member 'UWrestlerEnemyAudioControllerSettings::ThreatFactorRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, ProximityFactorRTPC) == 0x000100, "Member 'UWrestlerEnemyAudioControllerSettings::ProximityFactorRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, NumEnemiesUnawareRTPC) == 0x000128, "Member 'UWrestlerEnemyAudioControllerSettings::NumEnemiesUnawareRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, NumEnemiesAwareRTPC) == 0x000150, "Member 'UWrestlerEnemyAudioControllerSettings::NumEnemiesAwareRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, NumEnemiesInCombatRTPC) == 0x000178, "Member 'UWrestlerEnemyAudioControllerSettings::NumEnemiesInCombatRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, EnemyAttackPowerWeighting) == 0x0001A0, "Member 'UWrestlerEnemyAudioControllerSettings::EnemyAttackPowerWeighting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, EnemyMaxHealthWeighting) == 0x0001A4, "Member 'UWrestlerEnemyAudioControllerSettings::EnemyMaxHealthWeighting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, EnemyProximityWeighting) == 0x0001A8, "Member 'UWrestlerEnemyAudioControllerSettings::EnemyProximityWeighting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, PlayerBloodWeighting) == 0x0001AC, "Member 'UWrestlerEnemyAudioControllerSettings::PlayerBloodWeighting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, PlayerBloodThreatThreshold) == 0x0001B0, "Member 'UWrestlerEnemyAudioControllerSettings::PlayerBloodThreatThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, PlayerHealthWeighting) == 0x0001B4, "Member 'UWrestlerEnemyAudioControllerSettings::PlayerHealthWeighting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, PlayerHealthThreatThreshold) == 0x0001B8, "Member 'UWrestlerEnemyAudioControllerSettings::PlayerHealthThreatThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, ThreatFactorCurve) == 0x0001C0, "Member 'UWrestlerEnemyAudioControllerSettings::ThreatFactorCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingLastKill) == 0x0001D0, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingLastKill' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingActiveCombat) == 0x0001F8, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingActiveCombat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingDetected) == 0x000220, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingDetected' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingInFeedRange) == 0x000248, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingInFeedRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingInAwarenessRange) == 0x000270, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingInAwarenessRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingOutOfRange) == 0x000298, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingOutOfRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnKillStingCooldownTime) == 0x0002C0, "Member 'UWrestlerEnemyAudioControllerSettings::OnKillStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerUseAbilitySting) == 0x0002C8, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerUseAbilitySting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerUseAbilityStingCooldownTime) == 0x0002F0, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerUseAbilityStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerReceiveDamageSting) == 0x0002F8, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerReceiveDamageSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerReceiveDamageStingCooldownTime) == 0x000320, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerReceiveDamageStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerDealDamageSting) == 0x000328, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerDealDamageSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerDealDamageStingCooldownTime) == 0x000350, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerDealDamageStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerSeenSting) == 0x000358, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerSeenSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerSeenStingCooldownTime) == 0x000380, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerSeenStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerSensedSting) == 0x000388, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerSensedSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnPlayerSensedStingCooldownTime) == 0x0003B0, "Member 'UWrestlerEnemyAudioControllerSettings::OnPlayerSensedStingCooldownTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, HiddenEnemySwitch) == 0x0003B8, "Member 'UWrestlerEnemyAudioControllerSettings::HiddenEnemySwitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnEnemyStateChangeEvent) == 0x0003E0, "Member 'UWrestlerEnemyAudioControllerSettings::OnEnemyStateChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnEnemyTrackedStart) == 0x000408, "Member 'UWrestlerEnemyAudioControllerSettings::OnEnemyTrackedStart' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, OnEnemyTrackedEnd) == 0x000430, "Member 'UWrestlerEnemyAudioControllerSettings::OnEnemyTrackedEnd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerSettings, EnemyStateTransitionRTPC) == 0x000458, "Member 'UWrestlerEnemyAudioControllerSettings::EnemyStateTransitionRTPC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControlCueInterface_ProcessCombatCue \ +static_assert(alignof(WrestlerControlCueInterface_ProcessCombatCue) == 0x000008, "Wrong alignment on WrestlerControlCueInterface_ProcessCombatCue"); \ +static_assert(sizeof(WrestlerControlCueInterface_ProcessCombatCue) == 0x000008, "Wrong size on WrestlerControlCueInterface_ProcessCombatCue"); \ +static_assert(offsetof(WrestlerControlCueInterface_ProcessCombatCue, InCue) == 0x000000, "Member 'WrestlerControlCueInterface_ProcessCombatCue::InCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControlCueInterface_ProcessControlCue \ +static_assert(alignof(WrestlerControlCueInterface_ProcessControlCue) == 0x000008, "Wrong alignment on WrestlerControlCueInterface_ProcessControlCue"); \ +static_assert(sizeof(WrestlerControlCueInterface_ProcessControlCue) == 0x000008, "Wrong size on WrestlerControlCueInterface_ProcessControlCue"); \ +static_assert(offsetof(WrestlerControlCueInterface_ProcessControlCue, InCue) == 0x000000, "Member 'WrestlerControlCueInterface_ProcessControlCue::InCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerControlCueInterface \ +static_assert(alignof(IWrestlerControlCueInterface) == 0x000001, "Wrong alignment on IWrestlerControlCueInterface"); \ +static_assert(sizeof(IWrestlerControlCueInterface) == 0x000001, "Wrong size on IWrestlerControlCueInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherInformation \ +static_assert(alignof(UWrestlerWeatherInformation) == 0x000008, "Wrong alignment on UWrestlerWeatherInformation"); \ +static_assert(sizeof(UWrestlerWeatherInformation) == 0x000068, "Wrong size on UWrestlerWeatherInformation"); \ +static_assert(offsetof(UWrestlerWeatherInformation, WeatherParameters) == 0x000030, "Member 'UWrestlerWeatherInformation::WeatherParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerControlGraph \ +static_assert(alignof(UWrestlerControlGraph) == 0x000008, "Wrong alignment on UWrestlerControlGraph"); \ +static_assert(sizeof(UWrestlerControlGraph) == 0x0000B0, "Wrong size on UWrestlerControlGraph"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_Get \ +static_assert(alignof(WrestlerEnemyAISettings_Get) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_Get"); \ +static_assert(sizeof(WrestlerEnemyAISettings_Get) == 0x000010, "Wrong size on WrestlerEnemyAISettings_Get"); \ +static_assert(offsetof(WrestlerEnemyAISettings_Get, InWorldContextObject) == 0x000000, "Member 'WrestlerEnemyAISettings_Get::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_Get, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetEnemyCombatConfigAsset \ +static_assert(alignof(WrestlerEnemyAISettings_GetEnemyCombatConfigAsset) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetEnemyCombatConfigAsset"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetEnemyCombatConfigAsset) == 0x000010, "Wrong size on WrestlerEnemyAISettings_GetEnemyCombatConfigAsset"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetEnemyCombatConfigAsset, InKey) == 0x000000, "Member 'WrestlerEnemyAISettings_GetEnemyCombatConfigAsset::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetEnemyCombatConfigAsset, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_GetEnemyCombatConfigAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetEnemyTasks \ +static_assert(alignof(WrestlerEnemyAISettings_GetEnemyTasks) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetEnemyTasks"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetEnemyTasks) == 0x000010, "Wrong size on WrestlerEnemyAISettings_GetEnemyTasks"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetEnemyTasks, InKey) == 0x000000, "Member 'WrestlerEnemyAISettings_GetEnemyTasks::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetEnemyTasks, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_GetEnemyTasks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig \ +static_assert(alignof(WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig) == 0x000008, "Wrong size on WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAISettings_GetEnemyTeamAttitudeConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetRangedAttackConfigAsset \ +static_assert(alignof(WrestlerEnemyAISettings_GetRangedAttackConfigAsset) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetRangedAttackConfigAsset"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetRangedAttackConfigAsset) == 0x000008, "Wrong size on WrestlerEnemyAISettings_GetRangedAttackConfigAsset"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetRangedAttackConfigAsset, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAISettings_GetRangedAttackConfigAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetStateTreeConfig \ +static_assert(alignof(WrestlerEnemyAISettings_GetStateTreeConfig) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetStateTreeConfig"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetStateTreeConfig) == 0x000010, "Wrong size on WrestlerEnemyAISettings_GetStateTreeConfig"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetStateTreeConfig, InKey) == 0x000000, "Member 'WrestlerEnemyAISettings_GetStateTreeConfig::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetStateTreeConfig, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_GetStateTreeConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetTaskConfig \ +static_assert(alignof(WrestlerEnemyAISettings_GetTaskConfig) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetTaskConfig"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetTaskConfig) == 0x000010, "Wrong size on WrestlerEnemyAISettings_GetTaskConfig"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTaskConfig, InKey) == 0x000000, "Member 'WrestlerEnemyAISettings_GetTaskConfig::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTaskConfig, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_GetTaskConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetTokenConfig \ +static_assert(alignof(WrestlerEnemyAISettings_GetTokenConfig) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetTokenConfig"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetTokenConfig) == 0x000010, "Wrong size on WrestlerEnemyAISettings_GetTokenConfig"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTokenConfig, InKey) == 0x000000, "Member 'WrestlerEnemyAISettings_GetTokenConfig::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTokenConfig, ReturnValue) == 0x000008, "Member 'WrestlerEnemyAISettings_GetTokenConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetTokenDebugWidget \ +static_assert(alignof(WrestlerEnemyAISettings_GetTokenDebugWidget) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetTokenDebugWidget"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetTokenDebugWidget) == 0x000008, "Wrong size on WrestlerEnemyAISettings_GetTokenDebugWidget"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTokenDebugWidget, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAISettings_GetTokenDebugWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAISettings_GetTaskDebugWidget \ +static_assert(alignof(WrestlerEnemyAISettings_GetTaskDebugWidget) == 0x000008, "Wrong alignment on WrestlerEnemyAISettings_GetTaskDebugWidget"); \ +static_assert(sizeof(WrestlerEnemyAISettings_GetTaskDebugWidget) == 0x000008, "Wrong size on WrestlerEnemyAISettings_GetTaskDebugWidget"); \ +static_assert(offsetof(WrestlerEnemyAISettings_GetTaskDebugWidget, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAISettings_GetTaskDebugWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAISettings \ +static_assert(alignof(UWrestlerEnemyAISettings) == 0x000008, "Wrong alignment on UWrestlerEnemyAISettings"); \ +static_assert(sizeof(UWrestlerEnemyAISettings) == 0x0004D8, "Wrong size on UWrestlerEnemyAISettings"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyCombatConfigClasses) == 0x000048, "Member 'UWrestlerEnemyAISettings::EnemyCombatConfigClasses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, RangedAttackConfigClasses) == 0x000098, "Member 'UWrestlerEnemyAISettings::RangedAttackConfigClasses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TokenConfigClasses) == 0x0000E8, "Member 'UWrestlerEnemyAISettings::TokenConfigClasses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, StateTreeConfigClasses) == 0x000138, "Member 'UWrestlerEnemyAISettings::StateTreeConfigClasses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TokenDebugWidget) == 0x000188, "Member 'UWrestlerEnemyAISettings::TokenDebugWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyTasks) == 0x000190, "Member 'UWrestlerEnemyAISettings::EnemyTasks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TaskConfig) == 0x0001E0, "Member 'UWrestlerEnemyAISettings::TaskConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TaskDebugWidget) == 0x000230, "Member 'UWrestlerEnemyAISettings::TaskDebugWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyTeamAttitudeConfigClasses) == 0x000258, "Member 'UWrestlerEnemyAISettings::EnemyTeamAttitudeConfigClasses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyCombatConfigInstances) == 0x0002A8, "Member 'UWrestlerEnemyAISettings::EnemyCombatConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, RangedAttackConfigInstances) == 0x0002F8, "Member 'UWrestlerEnemyAISettings::RangedAttackConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TokenConfigInstances) == 0x000348, "Member 'UWrestlerEnemyAISettings::TokenConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, StateTreeConfigInstances) == 0x000398, "Member 'UWrestlerEnemyAISettings::StateTreeConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyTasksInstances) == 0x0003E8, "Member 'UWrestlerEnemyAISettings::EnemyTasksInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, TaskConfigInstances) == 0x000438, "Member 'UWrestlerEnemyAISettings::TaskConfigInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAISettings, EnemyTeamAttitudeConfigInstances) == 0x000488, "Member 'UWrestlerEnemyAISettings::EnemyTeamAttitudeConfigInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerControlInputSetup \ +static_assert(alignof(UWrestlerControlInputSetup) == 0x000008, "Wrong alignment on UWrestlerControlInputSetup"); \ +static_assert(sizeof(UWrestlerControlInputSetup) == 0x000050, "Wrong size on UWrestlerControlInputSetup"); \ +static_assert(offsetof(UWrestlerControlInputSetup, DashThreshold) == 0x000030, "Member 'UWrestlerControlInputSetup::DashThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerControlInputSetup, DashRightArc) == 0x000034, "Member 'UWrestlerControlInputSetup::DashRightArc' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerControlInputSetup, DashForwardArc) == 0x000038, "Member 'UWrestlerControlInputSetup::DashForwardArc' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerControlInputSetup, InputCues) == 0x000040, "Member 'UWrestlerControlInputSetup::InputCues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_Entity \ +static_assert(alignof(UWrestlerMassSightProcessor_Entity) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_Entity"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_Entity) == 0x000430, "Wrong size on UWrestlerMassSightProcessor_Entity"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, AlwaysSeeDistance) == 0x000408, "Member 'UWrestlerMassSightProcessor_Entity::AlwaysSeeDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, MaxEntitySightDistance) == 0x00040C, "Member 'UWrestlerMassSightProcessor_Entity::MaxEntitySightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, MaxEntityVerticalSightDistance) == 0x000410, "Member 'UWrestlerMassSightProcessor_Entity::MaxEntityVerticalSightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, MaxEntitySightAngle) == 0x000414, "Member 'UWrestlerMassSightProcessor_Entity::MaxEntitySightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, MaxEntityVerticalSightAngle) == 0x000418, "Member 'UWrestlerMassSightProcessor_Entity::MaxEntityVerticalSightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Entity, MasqueradeSettings) == 0x000428, "Member 'UWrestlerMassSightProcessor_Entity::MasqueradeSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_Awareness \ +static_assert(alignof(UWrestlerMassSightProcessor_Awareness) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_Awareness"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_Awareness) == 0x000470, "Wrong size on UWrestlerMassSightProcessor_Awareness"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Awareness, MaxAwareness) == 0x000430, "Member 'UWrestlerMassSightProcessor_Awareness::MaxAwareness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Awareness, SoftAwarenessConfig) == 0x000438, "Member 'UWrestlerMassSightProcessor_Awareness::SoftAwarenessConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Awareness, AwarenessConfig) == 0x000460, "Member 'UWrestlerMassSightProcessor_Awareness::AwarenessConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_ScaredEntities \ +static_assert(alignof(UWrestlerMassSightProcessor_ScaredEntities) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_ScaredEntities"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_ScaredEntities) == 0x000A70, "Wrong size on UWrestlerMassSightProcessor_ScaredEntities"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_ScaredEntities, MinDelayTimeToNoticeScaredEntity) == 0x000470, "Member 'UWrestlerMassSightProcessor_ScaredEntities::MinDelayTimeToNoticeScaredEntity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_ScaredEntities, MinAngleToMoveOutOfTheWay) == 0x000474, "Member 'UWrestlerMassSightProcessor_ScaredEntities::MinAngleToMoveOutOfTheWay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_ScaredEntities, MinDistanceToMoveOutOfTheWay) == 0x000478, "Member 'UWrestlerMassSightProcessor_ScaredEntities::MinDistanceToMoveOutOfTheWay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPlayerController \ +static_assert(alignof(AWrestlerPlayerController) == 0x000008, "Wrong alignment on AWrestlerPlayerController"); \ +static_assert(sizeof(AWrestlerPlayerController) == 0x000890, "Wrong size on AWrestlerPlayerController"); \ +static_assert(offsetof(AWrestlerPlayerController, UsingGamepad) == 0x000860, "Member 'AWrestlerPlayerController::UsingGamepad' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerController, OnControllerSwitched) == 0x000868, "Member 'AWrestlerPlayerController::OnControllerSwitched' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerController, GamepadTypeProperty) == 0x000878, "Member 'AWrestlerPlayerController::GamepadTypeProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_CauldronOfBlood \ +static_assert(alignof(UWrestlerGameplayAbility_CauldronOfBlood) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_CauldronOfBlood"); \ +static_assert(sizeof(UWrestlerGameplayAbility_CauldronOfBlood) == 0x000780, "Wrong size on UWrestlerGameplayAbility_CauldronOfBlood"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, MontageToPlay) == 0x000670, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, StartSection) == 0x000678, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::StartSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, LoopSection) == 0x000680, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::LoopSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, DamagePerSecond) == 0x000688, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::DamagePerSecond' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, CueToWaitFor) == 0x000690, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::CueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, TimeForActivation) == 0x000698, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::TimeForActivation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, Radius) == 0x0006A0, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, Threshold) == 0x0006A8, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::Threshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, WeightDistance) == 0x0006B0, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::WeightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, WeightAngle) == 0x0006B8, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::WeightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, QueryChannel) == 0x0006C0, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, IsReachableChannel) == 0x0006C1, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::IsReachableChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, bShouldBeReachable) == 0x0006C2, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::bShouldBeReachable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, Filter) == 0x0006C8, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetStartBoiling) == 0x0006E8, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetStartBoiling' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagOwnerStartBoiling) == 0x0006F0, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagOwnerStartBoiling' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetEndBoiling) == 0x0006F8, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetEndBoiling' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetAbilityEnded) == 0x000700, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetAbilityEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagOwnerAbilityEnded) == 0x000708, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagOwnerAbilityEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetExplosionTarget) == 0x000710, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetExplosionTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetExplosionOwner) == 0x000718, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetExplosionOwner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagTargetAfterDelay) == 0x000720, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagTargetAfterDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, EventTagOthersTargetsOnExplosion) == 0x000728, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::EventTagOthersTargetsOnExplosion' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, MontageToPlayToTargetDelay) == 0x000730, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::MontageToPlayToTargetDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, ExplosionMontageToPlay) == 0x000738, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::ExplosionMontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, MontageTagWaitingFor) == 0x000740, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::MontageTagWaitingFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, ExplosionMontageTagToPlayOnTarget) == 0x000760, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::ExplosionMontageTagToPlayOnTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, TargetExplosionSection) == 0x000768, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::TargetExplosionSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, UltimateRadius) == 0x000770, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::UltimateRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_CauldronOfBlood, Target) == 0x000778, "Member 'UWrestlerGameplayAbility_CauldronOfBlood::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerControllerFrontEnd \ +static_assert(alignof(AWrestlerControllerFrontEnd) == 0x000008, "Wrong alignment on AWrestlerControllerFrontEnd"); \ +static_assert(sizeof(AWrestlerControllerFrontEnd) == 0x000890, "Wrong size on AWrestlerControllerFrontEnd"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_ProcessStickInput \ +static_assert(alignof(WrestlerControllerInGame_ProcessStickInput) == 0x000008, "Wrong alignment on WrestlerControllerInGame_ProcessStickInput"); \ +static_assert(sizeof(WrestlerControllerInGame_ProcessStickInput) == 0x000058, "Wrong size on WrestlerControllerInGame_ProcessStickInput"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, InStick) == 0x000000, "Member 'WrestlerControllerInGame_ProcessStickInput::InStick' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, InInput) == 0x000028, "Member 'WrestlerControllerInGame_ProcessStickInput::InInput' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, InDeltaTime) == 0x000038, "Member 'WrestlerControllerInGame_ProcessStickInput::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, OutCurrentAcceleration) == 0x00003C, "Member 'WrestlerControllerInGame_ProcessStickInput::OutCurrentAcceleration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, bInUnscaled) == 0x000040, "Member 'WrestlerControllerInGame_ProcessStickInput::bInUnscaled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ProcessStickInput, ReturnValue) == 0x000048, "Member 'WrestlerControllerInGame_ProcessStickInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_OnMovementModeChange \ +static_assert(alignof(WrestlerControllerInGame_OnMovementModeChange) == 0x000008, "Wrong alignment on WrestlerControllerInGame_OnMovementModeChange"); \ +static_assert(sizeof(WrestlerControllerInGame_OnMovementModeChange) == 0x000010, "Wrong size on WrestlerControllerInGame_OnMovementModeChange"); \ +static_assert(offsetof(WrestlerControllerInGame_OnMovementModeChange, InCharacter) == 0x000000, "Member 'WrestlerControllerInGame_OnMovementModeChange::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_OnMovementModeChange, PreviousMovementMode) == 0x000008, "Member 'WrestlerControllerInGame_OnMovementModeChange::PreviousMovementMode' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_OnMovementModeChange, PreviousCustomMode) == 0x000009, "Member 'WrestlerControllerInGame_OnMovementModeChange::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_OnPostSave \ +static_assert(alignof(WrestlerControllerInGame_OnPostSave) == 0x000001, "Wrong alignment on WrestlerControllerInGame_OnPostSave"); \ +static_assert(sizeof(WrestlerControllerInGame_OnPostSave) == 0x000001, "Wrong size on WrestlerControllerInGame_OnPostSave"); \ +static_assert(offsetof(WrestlerControllerInGame_OnPostSave, bInSuccess) == 0x000000, "Member 'WrestlerControllerInGame_OnPostSave::bInSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_ReceiveOnPlayerInput \ +static_assert(alignof(WrestlerControllerInGame_ReceiveOnPlayerInput) == 0x000008, "Wrong alignment on WrestlerControllerInGame_ReceiveOnPlayerInput"); \ +static_assert(sizeof(WrestlerControllerInGame_ReceiveOnPlayerInput) == 0x000118, "Wrong size on WrestlerControllerInGame_ReceiveOnPlayerInput"); \ +static_assert(offsetof(WrestlerControllerInGame_ReceiveOnPlayerInput, InDeltaTime) == 0x000000, "Member 'WrestlerControllerInGame_ReceiveOnPlayerInput::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ReceiveOnPlayerInput, InCurrent) == 0x000008, "Member 'WrestlerControllerInGame_ReceiveOnPlayerInput::InCurrent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_ReceiveOnPlayerInput, InLast) == 0x000090, "Member 'WrestlerControllerInGame_ReceiveOnPlayerInput::InLast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_UpdateUITargeting \ +static_assert(alignof(WrestlerControllerInGame_UpdateUITargeting) == 0x000008, "Wrong alignment on WrestlerControllerInGame_UpdateUITargeting"); \ +static_assert(sizeof(WrestlerControllerInGame_UpdateUITargeting) == 0x000010, "Wrong size on WrestlerControllerInGame_UpdateUITargeting"); \ +static_assert(offsetof(WrestlerControllerInGame_UpdateUITargeting, CurrentTarget) == 0x000000, "Member 'WrestlerControllerInGame_UpdateUITargeting::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerControllerInGame_UpdateUITargeting, OldTarget) == 0x000008, "Member 'WrestlerControllerInGame_UpdateUITargeting::OldTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetForwardInput \ +static_assert(alignof(WrestlerControllerInGame_GetForwardInput) == 0x000004, "Wrong alignment on WrestlerControllerInGame_GetForwardInput"); \ +static_assert(sizeof(WrestlerControllerInGame_GetForwardInput) == 0x000004, "Wrong size on WrestlerControllerInGame_GetForwardInput"); \ +static_assert(offsetof(WrestlerControllerInGame_GetForwardInput, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetForwardInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetFrameInput \ +static_assert(alignof(WrestlerControllerInGame_GetFrameInput) == 0x000008, "Wrong alignment on WrestlerControllerInGame_GetFrameInput"); \ +static_assert(sizeof(WrestlerControllerInGame_GetFrameInput) == 0x000088, "Wrong size on WrestlerControllerInGame_GetFrameInput"); \ +static_assert(offsetof(WrestlerControllerInGame_GetFrameInput, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetFrameInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetPitchAxisScale \ +static_assert(alignof(WrestlerControllerInGame_GetPitchAxisScale) == 0x000004, "Wrong alignment on WrestlerControllerInGame_GetPitchAxisScale"); \ +static_assert(sizeof(WrestlerControllerInGame_GetPitchAxisScale) == 0x000004, "Wrong size on WrestlerControllerInGame_GetPitchAxisScale"); \ +static_assert(offsetof(WrestlerControllerInGame_GetPitchAxisScale, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetPitchAxisScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetTarget \ +static_assert(alignof(WrestlerControllerInGame_GetTarget) == 0x000008, "Wrong alignment on WrestlerControllerInGame_GetTarget"); \ +static_assert(sizeof(WrestlerControllerInGame_GetTarget) == 0x000008, "Wrong size on WrestlerControllerInGame_GetTarget"); \ +static_assert(offsetof(WrestlerControllerInGame_GetTarget, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetWrestlerCharacter \ +static_assert(alignof(WrestlerControllerInGame_GetWrestlerCharacter) == 0x000008, "Wrong alignment on WrestlerControllerInGame_GetWrestlerCharacter"); \ +static_assert(sizeof(WrestlerControllerInGame_GetWrestlerCharacter) == 0x000008, "Wrong size on WrestlerControllerInGame_GetWrestlerCharacter"); \ +static_assert(offsetof(WrestlerControllerInGame_GetWrestlerCharacter, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetWrestlerCharacter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_GetYawAxisScale \ +static_assert(alignof(WrestlerControllerInGame_GetYawAxisScale) == 0x000004, "Wrong alignment on WrestlerControllerInGame_GetYawAxisScale"); \ +static_assert(sizeof(WrestlerControllerInGame_GetYawAxisScale) == 0x000004, "Wrong size on WrestlerControllerInGame_GetYawAxisScale"); \ +static_assert(offsetof(WrestlerControllerInGame_GetYawAxisScale, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_GetYawAxisScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerControllerInGame_IsTargeting \ +static_assert(alignof(WrestlerControllerInGame_IsTargeting) == 0x000001, "Wrong alignment on WrestlerControllerInGame_IsTargeting"); \ +static_assert(sizeof(WrestlerControllerInGame_IsTargeting) == 0x000001, "Wrong size on WrestlerControllerInGame_IsTargeting"); \ +static_assert(offsetof(WrestlerControllerInGame_IsTargeting, ReturnValue) == 0x000000, "Member 'WrestlerControllerInGame_IsTargeting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerControllerInGame \ +static_assert(alignof(AWrestlerControllerInGame) == 0x000008, "Wrong alignment on AWrestlerControllerInGame"); \ +static_assert(sizeof(AWrestlerControllerInGame) == 0x000A70, "Wrong size on AWrestlerControllerInGame"); \ +static_assert(offsetof(AWrestlerControllerInGame, TargetComponent) == 0x0008A0, "Member 'AWrestlerControllerInGame::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, GameTeamID) == 0x0008A8, "Member 'AWrestlerControllerInGame::GameTeamID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, bAutoLockOn) == 0x0009C2, "Member 'AWrestlerControllerInGame::bAutoLockOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, PlayerActionAssetMap) == 0x0009D0, "Member 'AWrestlerControllerInGame::PlayerActionAssetMap' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, PlayerMappingContext) == 0x0009D8, "Member 'AWrestlerControllerInGame::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, DebugMenuWidget) == 0x0009E0, "Member 'AWrestlerControllerInGame::DebugMenuWidget' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, PropertyWidget) == 0x0009E8, "Member 'AWrestlerControllerInGame::PropertyWidget' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, LookAtTraceInterval) == 0x0009F0, "Member 'AWrestlerControllerInGame::LookAtTraceInterval' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, MaxLookAtTraceQueryAttempts) == 0x000A04, "Member 'AWrestlerControllerInGame::MaxLookAtTraceQueryAttempts' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, ActorToLookAtCompMap) == 0x000A08, "Member 'AWrestlerControllerInGame::ActorToLookAtCompMap' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerControllerInGame, ActiveLookAtComponents) == 0x000A58, "Member 'AWrestlerControllerInGame::ActiveLookAtComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Hold_MakeThrowTargetData \ +static_assert(alignof(WrestlerGameplayAbility_Hold_MakeThrowTargetData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Hold_MakeThrowTargetData"); \ +static_assert(sizeof(WrestlerGameplayAbility_Hold_MakeThrowTargetData) == 0x000028, "Wrong size on WrestlerGameplayAbility_Hold_MakeThrowTargetData"); \ +static_assert(offsetof(WrestlerGameplayAbility_Hold_MakeThrowTargetData, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_Hold_MakeThrowTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Hold_OnValidTargetData \ +static_assert(alignof(WrestlerGameplayAbility_Hold_OnValidTargetData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Hold_OnValidTargetData"); \ +static_assert(sizeof(WrestlerGameplayAbility_Hold_OnValidTargetData) == 0x000028, "Wrong size on WrestlerGameplayAbility_Hold_OnValidTargetData"); \ +static_assert(offsetof(WrestlerGameplayAbility_Hold_OnValidTargetData, Data) == 0x000000, "Member 'WrestlerGameplayAbility_Hold_OnValidTargetData::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody \ +static_assert(alignof(WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody"); \ +static_assert(sizeof(WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody) == 0x000008, "Wrong size on WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody"); \ +static_assert(offsetof(WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody, InHeldActor) == 0x000000, "Member 'WrestlerGameplayAbility_Hold_WakeHeldPhysicsBody::InHeldActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_Hold \ +static_assert(alignof(UWrestlerGameplayAbility_Hold) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_Hold"); \ +static_assert(sizeof(UWrestlerGameplayAbility_Hold) == 0x0006C0, "Wrong size on UWrestlerGameplayAbility_Hold"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Hold, TargetingParameters) == 0x000668, "Member 'UWrestlerGameplayAbility_Hold::TargetingParameters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Hold, TargetingTask) == 0x000690, "Member 'UWrestlerGameplayAbility_Hold::TargetingTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Hold, TargetActorClass) == 0x000698, "Member 'UWrestlerGameplayAbility_Hold::TargetActorClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Hold, TargetActor) == 0x0006A0, "Member 'UWrestlerGameplayAbility_Hold::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerControllerLoadScreen \ +static_assert(alignof(AWrestlerControllerLoadScreen) == 0x000008, "Wrong alignment on AWrestlerControllerLoadScreen"); \ +static_assert(sizeof(AWrestlerControllerLoadScreen) == 0x000890, "Wrong size on AWrestlerControllerLoadScreen"); \ + +#define DUMPER7_ASSERTS_UWrestlerCreditsLineWidget \ +static_assert(alignof(UWrestlerCreditsLineWidget) == 0x000010, "Wrong alignment on UWrestlerCreditsLineWidget"); \ +static_assert(sizeof(UWrestlerCreditsLineWidget) == 0x0003F0, "Wrong size on UWrestlerCreditsLineWidget"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, CreditText1) == 0x0002C8, "Member 'UWrestlerCreditsLineWidget::CreditText1' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, CreditText2) == 0x0002E0, "Member 'UWrestlerCreditsLineWidget::CreditText2' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, CreditType) == 0x0002F8, "Member 'UWrestlerCreditsLineWidget::CreditType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, CreditLogo) == 0x000300, "Member 'UWrestlerCreditsLineWidget::CreditLogo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, LogoDesiredHeight) == 0x000308, "Member 'UWrestlerCreditsLineWidget::LogoDesiredHeight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsLineWidget, IconBrush) == 0x000320, "Member 'UWrestlerCreditsLineWidget::IconBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassGameplayTagsSubsystem \ +static_assert(alignof(UWrestlerMassGameplayTagsSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassGameplayTagsSubsystem"); \ +static_assert(sizeof(UWrestlerMassGameplayTagsSubsystem) == 0x000088, "Wrong size on UWrestlerMassGameplayTagsSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_EnemyAwarenessReaction \ +static_assert(alignof(UWrestlerGameplayAbility_EnemyAwarenessReaction) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_EnemyAwarenessReaction"); \ +static_assert(sizeof(UWrestlerGameplayAbility_EnemyAwarenessReaction) == 0x000668, "Wrong size on UWrestlerGameplayAbility_EnemyAwarenessReaction"); \ + +#define DUMPER7_ASSERTS_UWrestlerCreditsMenu \ +static_assert(alignof(UWrestlerCreditsMenu) == 0x000008, "Wrong alignment on UWrestlerCreditsMenu"); \ +static_assert(sizeof(UWrestlerCreditsMenu) == 0x000380, "Wrong size on UWrestlerCreditsMenu"); \ +static_assert(offsetof(UWrestlerCreditsMenu, CreditLinesContainer) == 0x000300, "Member 'UWrestlerCreditsMenu::CreditLinesContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, ButtonBack) == 0x000308, "Member 'UWrestlerCreditsMenu::ButtonBack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, CreditsData) == 0x000310, "Member 'UWrestlerCreditsMenu::CreditsData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, CreditsIconSet) == 0x000318, "Member 'UWrestlerCreditsMenu::CreditsIconSet' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, SetupWidgetClass) == 0x000320, "Member 'UWrestlerCreditsMenu::SetupWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, Widgets) == 0x000328, "Member 'UWrestlerCreditsMenu::Widgets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, ScrollDurationInSeconds) == 0x000338, "Member 'UWrestlerCreditsMenu::ScrollDurationInSeconds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, ScrollDurationInSecondsNormal) == 0x00033C, "Member 'UWrestlerCreditsMenu::ScrollDurationInSecondsNormal' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, ScrollDurationInSecondsFast) == 0x000340, "Member 'UWrestlerCreditsMenu::ScrollDurationInSecondsFast' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCreditsMenu, bIsEndgameCredits) == 0x000344, "Member 'UWrestlerCreditsMenu::bIsEndgameCredits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypointSplineActor \ +static_assert(alignof(AWrestlerWaypointSplineActor) == 0x000008, "Wrong alignment on AWrestlerWaypointSplineActor"); \ +static_assert(sizeof(AWrestlerWaypointSplineActor) == 0x0002B8, "Wrong size on AWrestlerWaypointSplineActor"); \ +static_assert(offsetof(AWrestlerWaypointSplineActor, QuestTag) == 0x000298, "Member 'AWrestlerWaypointSplineActor::QuestTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypointSplineActor, MinDistanceThreshold) == 0x0002A0, "Member 'AWrestlerWaypointSplineActor::MinDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypointSplineActor, OffsetDistance) == 0x0002A4, "Member 'AWrestlerWaypointSplineActor::OffsetDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypointSplineActor, WaypointSpline) == 0x0002A8, "Member 'AWrestlerWaypointSplineActor::WaypointSpline' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypointSplineActor, WaypointMode) == 0x0002B0, "Member 'AWrestlerWaypointSplineActor::WaypointMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_SetReactionDistance \ +static_assert(alignof(WrestlerCrosshairReactComponent_SetReactionDistance) == 0x000004, "Wrong alignment on WrestlerCrosshairReactComponent_SetReactionDistance"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_SetReactionDistance) == 0x000008, "Wrong size on WrestlerCrosshairReactComponent_SetReactionDistance"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_SetReactionDistance, InNewMinDistance) == 0x000000, "Member 'WrestlerCrosshairReactComponent_SetReactionDistance::InNewMinDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_SetReactionDistance, InNewMaxDistance) == 0x000004, "Member 'WrestlerCrosshairReactComponent_SetReactionDistance::InNewMaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_ShouldReact \ +static_assert(alignof(WrestlerCrosshairReactComponent_ShouldReact) == 0x000001, "Wrong alignment on WrestlerCrosshairReactComponent_ShouldReact"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_ShouldReact) == 0x000001, "Wrong size on WrestlerCrosshairReactComponent_ShouldReact"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_ShouldReact, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_ShouldReact::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_GetMinReactionDistance \ +static_assert(alignof(WrestlerCrosshairReactComponent_GetMinReactionDistance) == 0x000004, "Wrong alignment on WrestlerCrosshairReactComponent_GetMinReactionDistance"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_GetMinReactionDistance) == 0x000004, "Wrong size on WrestlerCrosshairReactComponent_GetMinReactionDistance"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_GetMinReactionDistance, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_GetMinReactionDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_GetMinReactionSqrDistance \ +static_assert(alignof(WrestlerCrosshairReactComponent_GetMinReactionSqrDistance) == 0x000004, "Wrong alignment on WrestlerCrosshairReactComponent_GetMinReactionSqrDistance"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_GetMinReactionSqrDistance) == 0x000004, "Wrong size on WrestlerCrosshairReactComponent_GetMinReactionSqrDistance"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_GetMinReactionSqrDistance, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_GetMinReactionSqrDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_GetReactionDistance \ +static_assert(alignof(WrestlerCrosshairReactComponent_GetReactionDistance) == 0x000004, "Wrong alignment on WrestlerCrosshairReactComponent_GetReactionDistance"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_GetReactionDistance) == 0x000004, "Wrong size on WrestlerCrosshairReactComponent_GetReactionDistance"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_GetReactionDistance, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_GetReactionDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_GetReactionSqrDistance \ +static_assert(alignof(WrestlerCrosshairReactComponent_GetReactionSqrDistance) == 0x000004, "Wrong alignment on WrestlerCrosshairReactComponent_GetReactionSqrDistance"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_GetReactionSqrDistance) == 0x000004, "Wrong size on WrestlerCrosshairReactComponent_GetReactionSqrDistance"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_GetReactionSqrDistance, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_GetReactionSqrDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactComponent_GetReactLocation \ +static_assert(alignof(WrestlerCrosshairReactComponent_GetReactLocation) == 0x000008, "Wrong alignment on WrestlerCrosshairReactComponent_GetReactLocation"); \ +static_assert(sizeof(WrestlerCrosshairReactComponent_GetReactLocation) == 0x000018, "Wrong size on WrestlerCrosshairReactComponent_GetReactLocation"); \ +static_assert(offsetof(WrestlerCrosshairReactComponent_GetReactLocation, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactComponent_GetReactLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCrosshairReactComponent \ +static_assert(alignof(UWrestlerCrosshairReactComponent) == 0x000008, "Wrong alignment on UWrestlerCrosshairReactComponent"); \ +static_assert(sizeof(UWrestlerCrosshairReactComponent) == 0x0000B8, "Wrong size on UWrestlerCrosshairReactComponent"); \ +static_assert(offsetof(UWrestlerCrosshairReactComponent, ReactionDistance) == 0x0000A0, "Member 'UWrestlerCrosshairReactComponent::ReactionDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairReactComponent, MinReactionDistance) == 0x0000A4, "Member 'UWrestlerCrosshairReactComponent::MinReactionDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairReactComponent, CrosshairShouldReact) == 0x0000A8, "Member 'UWrestlerCrosshairReactComponent::CrosshairShouldReact' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairReactComponent, InteractionPointComponent) == 0x0000B0, "Member 'UWrestlerCrosshairReactComponent::InteractionPointComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory) == 0x000470, "Wrong size on AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory, ReticleTeleportThreshold) == 0x0003E8, "Member 'AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory::ReticleTeleportThreshold' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory, TrajectorySmoothRate) == 0x0003EC, "Member 'AWrestlerGameplayAbilityTargetActor_TelekinesisTrajectory::TrajectorySmoothRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHidePropsProcessor \ +static_assert(alignof(UWrestlerHidePropsProcessor) == 0x000008, "Wrong alignment on UWrestlerHidePropsProcessor"); \ +static_assert(sizeof(UWrestlerHidePropsProcessor) == 0x000370, "Wrong size on UWrestlerHidePropsProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairReactInterface_GetCrosshairReactComponent \ +static_assert(alignof(WrestlerCrosshairReactInterface_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on WrestlerCrosshairReactInterface_GetCrosshairReactComponent"); \ +static_assert(sizeof(WrestlerCrosshairReactInterface_GetCrosshairReactComponent) == 0x000008, "Wrong size on WrestlerCrosshairReactInterface_GetCrosshairReactComponent"); \ +static_assert(offsetof(WrestlerCrosshairReactInterface_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'WrestlerCrosshairReactInterface_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerCrosshairReactInterface \ +static_assert(alignof(IWrestlerCrosshairReactInterface) == 0x000001, "Wrong alignment on IWrestlerCrosshairReactInterface"); \ +static_assert(sizeof(IWrestlerCrosshairReactInterface) == 0x000001, "Wrong size on IWrestlerCrosshairReactInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated \ +static_assert(alignof(WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated) == 0x000004, "Wrong alignment on WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated"); \ +static_assert(sizeof(WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated) == 0x000008, "Wrong size on WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated"); \ +static_assert(offsetof(WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated, Strength) == 0x000000, "Member 'WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated::Strength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated, DeltaTime) == 0x000004, "Member 'WrestlerCrosshairWidget_BP_OnCrosshairStrengthUpdated::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrosshairWidget_UpdateReactTargets \ +static_assert(alignof(WrestlerCrosshairWidget_UpdateReactTargets) == 0x000008, "Wrong alignment on WrestlerCrosshairWidget_UpdateReactTargets"); \ +static_assert(sizeof(WrestlerCrosshairWidget_UpdateReactTargets) == 0x000010, "Wrong size on WrestlerCrosshairWidget_UpdateReactTargets"); \ +static_assert(offsetof(WrestlerCrosshairWidget_UpdateReactTargets, OutFromActors) == 0x000000, "Member 'WrestlerCrosshairWidget_UpdateReactTargets::OutFromActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCrosshairWidget \ +static_assert(alignof(UWrestlerCrosshairWidget) == 0x000008, "Wrong alignment on UWrestlerCrosshairWidget"); \ +static_assert(sizeof(UWrestlerCrosshairWidget) == 0x000308, "Wrong size on UWrestlerCrosshairWidget"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, MinStrength) == 0x0002C8, "Member 'UWrestlerCrosshairWidget::MinStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, MaxDistanctStrength) == 0x0002CC, "Member 'UWrestlerCrosshairWidget::MaxDistanctStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, MaxDotStrength) == 0x0002D0, "Member 'UWrestlerCrosshairWidget::MaxDotStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, OOSStrengthReduction) == 0x0002D4, "Member 'UWrestlerCrosshairWidget::OOSStrengthReduction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, MinDotStartValue) == 0x0002D8, "Member 'UWrestlerCrosshairWidget::MinDotStartValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, VisibilityTraceTickInterval) == 0x0002DC, "Member 'UWrestlerCrosshairWidget::VisibilityTraceTickInterval' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, MaxStrengthToBeginVisibilityTrace) == 0x0002E0, "Member 'UWrestlerCrosshairWidget::MaxStrengthToBeginVisibilityTrace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, TraceChannel) == 0x0002E4, "Member 'UWrestlerCrosshairWidget::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, OutHitMinDistanceFromTarget) == 0x0002E8, "Member 'UWrestlerCrosshairWidget::OutHitMinDistanceFromTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, NearestActor) == 0x0002F0, "Member 'UWrestlerCrosshairWidget::NearestActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrosshairWidget, NearestDotActor) == 0x0002F8, "Member 'UWrestlerCrosshairWidget::NearestDotActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMusicTagMovieSceneSection \ +static_assert(alignof(UWrestlerMusicTagMovieSceneSection) == 0x000008, "Wrong alignment on UWrestlerMusicTagMovieSceneSection"); \ +static_assert(sizeof(UWrestlerMusicTagMovieSceneSection) == 0x000100, "Wrong size on UWrestlerMusicTagMovieSceneSection"); \ +static_assert(offsetof(UWrestlerMusicTagMovieSceneSection, MusicTag) == 0x0000F0, "Member 'UWrestlerMusicTagMovieSceneSection::MusicTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMusicTagMovieSceneSection, CutsceneState) == 0x0000F8, "Member 'UWrestlerMusicTagMovieSceneSection::CutsceneState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput \ +static_assert(alignof(WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput"); \ +static_assert(sizeof(WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput) == 0x000004, "Wrong size on WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput, InWaitingTime) == 0x000000, "Member 'WrestlerGameplayAbility_FistOfCaine_OnCancelChargeInput::InWaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_FistOfCaine_OnLungeHit \ +static_assert(alignof(WrestlerGameplayAbility_FistOfCaine_OnLungeHit) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_FistOfCaine_OnLungeHit"); \ +static_assert(sizeof(WrestlerGameplayAbility_FistOfCaine_OnLungeHit) == 0x0000B0, "Wrong size on WrestlerGameplayAbility_FistOfCaine_OnLungeHit"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnLungeHit, InEventData) == 0x000000, "Member 'WrestlerGameplayAbility_FistOfCaine_OnLungeHit::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished \ +static_assert(alignof(WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished"); \ +static_assert(sizeof(WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished) == 0x000020, "Wrong size on WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished, bInDestinationReached) == 0x000000, "Member 'WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished::bInDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished, bInTimedOut) == 0x000001, "Member 'WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished::bInTimedOut' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished, InFinalTargetLocation) == 0x000008, "Member 'WrestlerGameplayAbility_FistOfCaine_OnLungeMoveToTargetFinished::InFinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished \ +static_assert(alignof(WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished"); \ +static_assert(sizeof(WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished) == 0x000008, "Wrong size on WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished"); \ +static_assert(offsetof(WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished, InTarget) == 0x000000, "Member 'WrestlerGameplayAbility_FistOfCaine_OnTargetingFinished::InTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_FistOfCaine \ +static_assert(alignof(UWrestlerGameplayAbility_FistOfCaine) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_FistOfCaine"); \ +static_assert(sizeof(UWrestlerGameplayAbility_FistOfCaine) == 0x000918, "Wrong size on UWrestlerGameplayAbility_FistOfCaine"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, bNeedToHoldDownChargeButton) == 0x000668, "Member 'UWrestlerGameplayAbility_FistOfCaine::bNeedToHoldDownChargeButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, ControlCueWaitFor) == 0x000670, "Member 'UWrestlerGameplayAbility_FistOfCaine::ControlCueWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, CancelChargeControlCue) == 0x000678, "Member 'UWrestlerGameplayAbility_FistOfCaine::CancelChargeControlCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, UltimateAbilityMontage) == 0x000680, "Member 'UWrestlerGameplayAbility_FistOfCaine::UltimateAbilityMontage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, ChargeDurationToSuccess) == 0x000688, "Member 'UWrestlerGameplayAbility_FistOfCaine::ChargeDurationToSuccess' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagChargeEnded) == 0x000690, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagChargeEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagLunge) == 0x000698, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagLunge' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagLungeFinish) == 0x0006A0, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagLungeFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagHitTarget) == 0x0006A8, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagHitTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagReplenishBloodUltimate) == 0x0006B0, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagReplenishBloodUltimate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, EventTagReplenishBloodActivate) == 0x0006B8, "Member 'UWrestlerGameplayAbility_FistOfCaine::EventTagReplenishBloodActivate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AttackRange) == 0x0006C0, "Member 'UWrestlerGameplayAbility_FistOfCaine::AttackRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AttackDuration) == 0x0006C8, "Member 'UWrestlerGameplayAbility_FistOfCaine::AttackDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, ImpulseTag) == 0x0006D0, "Member 'UWrestlerGameplayAbility_FistOfCaine::ImpulseTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, UltimateHitReactionTag) == 0x0006D8, "Member 'UWrestlerGameplayAbility_FistOfCaine::UltimateHitReactionTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, OwnerGameplayCuesWhenChargeSuccess) == 0x0006E0, "Member 'UWrestlerGameplayAbility_FistOfCaine::OwnerGameplayCuesWhenChargeSuccess' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, OwnerGameplayCuesWhenHit) == 0x000700, "Member 'UWrestlerGameplayAbility_FistOfCaine::OwnerGameplayCuesWhenHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, TargetingThresholdAngle) == 0x000720, "Member 'UWrestlerGameplayAbility_FistOfCaine::TargetingThresholdAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, TargetingWeightDistance) == 0x000724, "Member 'UWrestlerGameplayAbility_FistOfCaine::TargetingWeightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, TargetingWeightAngle) == 0x000728, "Member 'UWrestlerGameplayAbility_FistOfCaine::TargetingWeightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, TargetingFilter) == 0x000730, "Member 'UWrestlerGameplayAbility_FistOfCaine::TargetingFilter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AbilityMontageEventTags) == 0x000750, "Member 'UWrestlerGameplayAbility_FistOfCaine::AbilityMontageEventTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AbilityMontageStartLungeEventTag) == 0x000770, "Member 'UWrestlerGameplayAbility_FistOfCaine::AbilityMontageStartLungeEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AbilityMontageHitEventTag) == 0x000778, "Member 'UWrestlerGameplayAbility_FistOfCaine::AbilityMontageHitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, ChargeMontageStartSectionName) == 0x000780, "Member 'UWrestlerGameplayAbility_FistOfCaine::ChargeMontageStartSectionName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AttackMontageStartSectionName) == 0x000788, "Member 'UWrestlerGameplayAbility_FistOfCaine::AttackMontageStartSectionName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, MoveToData) == 0x000790, "Member 'UWrestlerGameplayAbility_FistOfCaine::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, HitImpulseParams) == 0x000818, "Member 'UWrestlerGameplayAbility_FistOfCaine::HitImpulseParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, HitFreezeDelay) == 0x000868, "Member 'UWrestlerGameplayAbility_FistOfCaine::HitFreezeDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, HitFreezeTimeDilation) == 0x00086C, "Member 'UWrestlerGameplayAbility_FistOfCaine::HitFreezeTimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, HitFreezeDuration) == 0x000870, "Member 'UWrestlerGameplayAbility_FistOfCaine::HitFreezeDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, FearEmissionDuration) == 0x000874, "Member 'UWrestlerGameplayAbility_FistOfCaine::FearEmissionDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, FearEmissionStrength) == 0x000878, "Member 'UWrestlerGameplayAbility_FistOfCaine::FearEmissionStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, AttackTarget) == 0x000880, "Member 'UWrestlerGameplayAbility_FistOfCaine::AttackTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FistOfCaine, HitTargets) == 0x0008C8, "Member 'UWrestlerGameplayAbility_FistOfCaine::HitTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCrowdCharacter \ +static_assert(alignof(AWrestlerCrowdCharacter) == 0x000010, "Wrong alignment on AWrestlerCrowdCharacter"); \ +static_assert(sizeof(AWrestlerCrowdCharacter) == 0x0006B0, "Wrong size on AWrestlerCrowdCharacter"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, ModularCharacterComponent) == 0x000680, "Member 'AWrestlerCrowdCharacter::ModularCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, ModularCharacterProfile) == 0x000688, "Member 'AWrestlerCrowdCharacter::ModularCharacterProfile' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, bCanMove) == 0x000690, "Member 'AWrestlerCrowdCharacter::bCanMove' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, bUseAudio) == 0x000691, "Member 'AWrestlerCrowdCharacter::bUseAudio' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, bLazyLoad) == 0x000692, "Member 'AWrestlerCrowdCharacter::bLazyLoad' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, SignificanceTag) == 0x000694, "Member 'AWrestlerCrowdCharacter::SignificanceTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, bAddToSignificanceManager) == 0x00069C, "Member 'AWrestlerCrowdCharacter::bAddToSignificanceManager' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdCharacter, SignificanceManagerMaxDrawDistance) == 0x0006A0, "Member 'AWrestlerCrowdCharacter::SignificanceManagerMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdKillVolume_GetOverlappingCrowd \ +static_assert(alignof(WrestlerCrowdKillVolume_GetOverlappingCrowd) == 0x000008, "Wrong alignment on WrestlerCrowdKillVolume_GetOverlappingCrowd"); \ +static_assert(sizeof(WrestlerCrowdKillVolume_GetOverlappingCrowd) == 0x000010, "Wrong size on WrestlerCrowdKillVolume_GetOverlappingCrowd"); \ +static_assert(offsetof(WrestlerCrowdKillVolume_GetOverlappingCrowd, ReturnValue) == 0x000000, "Member 'WrestlerCrowdKillVolume_GetOverlappingCrowd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerCrowdKillVolume \ +static_assert(alignof(AWrestlerCrowdKillVolume) == 0x000008, "Wrong alignment on AWrestlerCrowdKillVolume"); \ +static_assert(sizeof(AWrestlerCrowdKillVolume) == 0x0002E0, "Wrong size on AWrestlerCrowdKillVolume"); \ +static_assert(offsetof(AWrestlerCrowdKillVolume, CrowdClass) == 0x000298, "Member 'AWrestlerCrowdKillVolume::CrowdClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdKillVolume, LoadedCrowdClass) == 0x0002C0, "Member 'AWrestlerCrowdKillVolume::LoadedCrowdClass' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdKillVolume, SceneComponent) == 0x0002C8, "Member 'AWrestlerCrowdKillVolume::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerCrowdKillVolume, OverlappingCrowd) == 0x0002D0, "Member 'AWrestlerCrowdKillVolume::OverlappingCrowd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_RapidReflexes \ +static_assert(alignof(UWrestlerGameplayAbility_RapidReflexes) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_RapidReflexes"); \ +static_assert(sizeof(UWrestlerGameplayAbility_RapidReflexes) == 0x0006C8, "Wrong size on UWrestlerGameplayAbility_RapidReflexes"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, WrestlerAbilityTask_TimeDilation) == 0x000668, "Member 'UWrestlerGameplayAbility_RapidReflexes::WrestlerAbilityTask_TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, TimeDilatation) == 0x000670, "Member 'UWrestlerGameplayAbility_RapidReflexes::TimeDilatation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, Duration) == 0x000674, "Member 'UWrestlerGameplayAbility_RapidReflexes::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, Radius) == 0x000678, "Member 'UWrestlerGameplayAbility_RapidReflexes::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, QueryChannel) == 0x00067C, "Member 'UWrestlerGameplayAbility_RapidReflexes::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, Filter) == 0x000680, "Member 'UWrestlerGameplayAbility_RapidReflexes::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_RapidReflexes, GameplayCueTag) == 0x0006C0, "Member 'UWrestlerGameplayAbility_RapidReflexes::GameplayCueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSettings_Get \ +static_assert(alignof(WrestlerCrowdSettings_Get) == 0x000008, "Wrong alignment on WrestlerCrowdSettings_Get"); \ +static_assert(sizeof(WrestlerCrowdSettings_Get) == 0x000010, "Wrong size on WrestlerCrowdSettings_Get"); \ +static_assert(offsetof(WrestlerCrowdSettings_Get, InWorldContextObject) == 0x000000, "Member 'WrestlerCrowdSettings_Get::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSettings_Get, ReturnValue) == 0x000008, "Member 'WrestlerCrowdSettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCrowdSettings \ +static_assert(alignof(UWrestlerCrowdSettings) == 0x000008, "Wrong alignment on UWrestlerCrowdSettings"); \ +static_assert(sizeof(UWrestlerCrowdSettings) == 0x000078, "Wrong size on UWrestlerCrowdSettings"); \ +static_assert(offsetof(UWrestlerCrowdSettings, AwarenessConfig) == 0x000048, "Member 'UWrestlerCrowdSettings::AwarenessConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSettings, PedestrianFearEmissionRange) == 0x000070, "Member 'UWrestlerCrowdSettings::PedestrianFearEmissionRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSettings, DeadBodiesFearEmissionRange) == 0x000074, "Member 'UWrestlerCrowdSettings::DeadBodiesFearEmissionRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition) == 0x000020, "Wrong size on WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition, Position) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition, Radius_0) == 0x000018, "Member 'WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition::Radius_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition, Intensity) == 0x00001C, "Member 'WrestlerCrowdSpawnerComponent_ColorGridsByBrushPosition::Intensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_CreateCanvas \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_CreateCanvas) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_CreateCanvas"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_CreateCanvas) == 0x000008, "Wrong size on WrestlerCrowdSpawnerComponent_CreateCanvas"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CreateCanvas, canvasMesh_0) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_CreateCanvas::canvasMesh_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_CursorToHitLocation \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_CursorToHitLocation) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_CursorToHitLocation"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_CursorToHitLocation) == 0x000028, "Wrong size on WrestlerCrowdSpawnerComponent_CursorToHitLocation"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CursorToHitLocation, cursorPos) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_CursorToHitLocation::cursorPos' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CursorToHitLocation, ReturnValue) == 0x000010, "Member 'WrestlerCrowdSpawnerComponent_CursorToHitLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_DivideCanvasToGrids \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_DivideCanvasToGrids) == 0x000004, "Wrong alignment on WrestlerCrowdSpawnerComponent_DivideCanvasToGrids"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_DivideCanvasToGrids) == 0x000004, "Wrong size on WrestlerCrowdSpawnerComponent_DivideCanvasToGrids"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_DivideCanvasToGrids, gridCount) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_DivideCanvasToGrids::gridCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas) == 0x000020, "Wrong size on WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas, brushTexture) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas::brushTexture' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas, brushSize) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas::brushSize' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas, DrawLocation) == 0x000010, "Member 'WrestlerCrowdSpawnerComponent_DrawBrushOnCanvas::DrawLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity) == 0x000004, "Wrong alignment on WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity) == 0x000014, "Wrong size on WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity, Intensity) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity::Intensity' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity, ReturnValue) == 0x000004, "Member 'WrestlerCrowdSpawnerComponent_GetColorFromBrushIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_HitLocationToCanvas \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_HitLocationToCanvas"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas) == 0x000058, "Wrong size on WrestlerCrowdSpawnerComponent_HitLocationToCanvas"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas, HitPosition) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_HitLocationToCanvas::HitPosition' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas, volumePosition) == 0x000018, "Member 'WrestlerCrowdSpawnerComponent_HitLocationToCanvas::volumePosition' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas, BoxExtent) == 0x000030, "Member 'WrestlerCrowdSpawnerComponent_HitLocationToCanvas::BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_HitLocationToCanvas, ReturnValue) == 0x000048, "Member 'WrestlerCrowdSpawnerComponent_HitLocationToCanvas::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_InitCursor \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_InitCursor) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_InitCursor"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_InitCursor) == 0x000010, "Wrong size on WrestlerCrowdSpawnerComponent_InitCursor"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_InitCursor, Cursor) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_InitCursor::Cursor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_InitCursor, Canvas) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_InitCursor::Canvas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor) == 0x000001, "Wrong alignment on WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor) == 0x000001, "Wrong size on WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor, ReturnValue) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_IsButtonPressedInEditor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_PaintGrid \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_PaintGrid) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_PaintGrid"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_PaintGrid) == 0x000020, "Wrong size on WrestlerCrowdSpawnerComponent_PaintGrid"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_PaintGrid, brushSize) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_PaintGrid::brushSize' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_PaintGrid, DrawLocation) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_PaintGrid::DrawLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_PaintGrid, BrushIntensity_0) == 0x000018, "Member 'WrestlerCrowdSpawnerComponent_PaintGrid::BrushIntensity_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_SetBrushGradientColor \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_SetBrushGradientColor) == 0x000004, "Wrong alignment on WrestlerCrowdSpawnerComponent_SetBrushGradientColor"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_SetBrushGradientColor) == 0x000004, "Wrong size on WrestlerCrowdSpawnerComponent_SetBrushGradientColor"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_SetBrushGradientColor, Value) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_SetBrushGradientColor::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_SetGridsEnabled \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_SetGridsEnabled) == 0x000001, "Wrong alignment on WrestlerCrowdSpawnerComponent_SetGridsEnabled"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_SetGridsEnabled) == 0x000001, "Wrong size on WrestlerCrowdSpawnerComponent_SetGridsEnabled"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_SetGridsEnabled, InEnabled) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_SetGridsEnabled::InEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_UpdateCanvasScale \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_UpdateCanvasScale) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_UpdateCanvasScale"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_UpdateCanvasScale) == 0x000010, "Wrong size on WrestlerCrowdSpawnerComponent_UpdateCanvasScale"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_UpdateCanvasScale, Volume) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_UpdateCanvasScale::Volume' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_UpdateCanvasScale, canvasMesh_0) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_UpdateCanvasScale::canvasMesh_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_UpdateCursor \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_UpdateCursor) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_UpdateCursor"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_UpdateCursor) == 0x000018, "Wrong size on WrestlerCrowdSpawnerComponent_UpdateCursor"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_UpdateCursor, Position) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_UpdateCursor::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_UpdatePainting \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_UpdatePainting) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_UpdatePainting"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_UpdatePainting) == 0x000010, "Wrong size on WrestlerCrowdSpawnerComponent_UpdatePainting"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_UpdatePainting, Volume) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_UpdatePainting::Volume' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_UpdatePainting, canvasMesh_0) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_UpdatePainting::canvasMesh_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition) == 0x000030, "Wrong size on WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, Position) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, brushRadius) == 0x000018, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::brushRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, MinX) == 0x00001C, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::MinX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, MaxX) == 0x000020, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::MaxX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, MinY) == 0x000024, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::MinY' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition, MaxY) == 0x000028, "Member 'WrestlerCrowdSpawnerComponent_CalculateEdgesForBrushPosition::MaxY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor) == 0x000020, "Wrong size on WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor, MinX) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor::MinX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor, MaxX) == 0x000004, "Member 'WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor::MaxX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor, MinY) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor::MinY' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor, MaxY) == 0x00000C, "Member 'WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor::MaxY' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor, listToColor) == 0x000010, "Member 'WrestlerCrowdSpawnerComponent_ConstructAListOfIndicesToColor::listToColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex) == 0x000020, "Wrong size on WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex, Index_0) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex, Position) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_GenerateRandomWorldPositionFromGridIndex::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_GetGridIndexByPosition \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_GetGridIndexByPosition) == 0x000008, "Wrong alignment on WrestlerCrowdSpawnerComponent_GetGridIndexByPosition"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_GetGridIndexByPosition) == 0x000028, "Wrong size on WrestlerCrowdSpawnerComponent_GetGridIndexByPosition"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridIndexByPosition, Position) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_GetGridIndexByPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridIndexByPosition, ReturnValue) == 0x000018, "Member 'WrestlerCrowdSpawnerComponent_GetGridIndexByPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_GetGridInformation \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_GetGridInformation) == 0x000004, "Wrong alignment on WrestlerCrowdSpawnerComponent_GetGridInformation"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_GetGridInformation) == 0x000010, "Wrong size on WrestlerCrowdSpawnerComponent_GetGridInformation"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridInformation, MinX) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_GetGridInformation::MinX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridInformation, MinY) == 0x000004, "Member 'WrestlerCrowdSpawnerComponent_GetGridInformation::MinY' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridInformation, Width) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_GetGridInformation::Width' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_GetGridInformation, Height) == 0x00000C, "Member 'WrestlerCrowdSpawnerComponent_GetGridInformation::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCrowdSpawnerComponent_ShrinkGridArea \ +static_assert(alignof(WrestlerCrowdSpawnerComponent_ShrinkGridArea) == 0x000004, "Wrong alignment on WrestlerCrowdSpawnerComponent_ShrinkGridArea"); \ +static_assert(sizeof(WrestlerCrowdSpawnerComponent_ShrinkGridArea) == 0x000010, "Wrong size on WrestlerCrowdSpawnerComponent_ShrinkGridArea"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ShrinkGridArea, MinX) == 0x000000, "Member 'WrestlerCrowdSpawnerComponent_ShrinkGridArea::MinX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ShrinkGridArea, MaxX) == 0x000004, "Member 'WrestlerCrowdSpawnerComponent_ShrinkGridArea::MaxX' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ShrinkGridArea, MinY) == 0x000008, "Member 'WrestlerCrowdSpawnerComponent_ShrinkGridArea::MinY' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCrowdSpawnerComponent_ShrinkGridArea, MaxY) == 0x00000C, "Member 'WrestlerCrowdSpawnerComponent_ShrinkGridArea::MaxY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCrowdSpawnerComponent \ +static_assert(alignof(UWrestlerCrowdSpawnerComponent) == 0x000010, "Wrong alignment on UWrestlerCrowdSpawnerComponent"); \ +static_assert(sizeof(UWrestlerCrowdSpawnerComponent) == 0x000570, "Wrong size on UWrestlerCrowdSpawnerComponent"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, SpawnerVolumeComp) == 0x0002A0, "Member 'UWrestlerCrowdSpawnerComponent::SpawnerVolumeComp' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, CubeComp) == 0x0002A8, "Member 'UWrestlerCrowdSpawnerComponent::CubeComp' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, canvasMesh) == 0x0002B0, "Member 'UWrestlerCrowdSpawnerComponent::canvasMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, BrushMat) == 0x0002B8, "Member 'UWrestlerCrowdSpawnerComponent::BrushMat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GridBrushMat) == 0x0002C0, "Member 'UWrestlerCrowdSpawnerComponent::GridBrushMat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, TexRenderTarget) == 0x0002C8, "Member 'UWrestlerCrowdSpawnerComponent::TexRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, BrushMatParent) == 0x0002D0, "Member 'UWrestlerCrowdSpawnerComponent::BrushMatParent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GridBrushMatParent) == 0x0002D8, "Member 'UWrestlerCrowdSpawnerComponent::GridBrushMatParent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, CanvasMat) == 0x0002E0, "Member 'UWrestlerCrowdSpawnerComponent::CanvasMat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, SpawnedUnitsPool) == 0x0002E8, "Member 'UWrestlerCrowdSpawnerComponent::SpawnedUnitsPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, jitter) == 0x0002F8, "Member 'UWrestlerCrowdSpawnerComponent::jitter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GridsList) == 0x000300, "Member 'UWrestlerCrowdSpawnerComponent::GridsList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GridColorMap) == 0x000310, "Member 'UWrestlerCrowdSpawnerComponent::GridColorMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GridColorMapBatch) == 0x000360, "Member 'UWrestlerCrowdSpawnerComponent::GridColorMapBatch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, BrushSizeF) == 0x0003B0, "Member 'UWrestlerCrowdSpawnerComponent::BrushSizeF' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, BrushIntensity) == 0x0003B4, "Member 'UWrestlerCrowdSpawnerComponent::BrushIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, MinBrushIntensity) == 0x0003B8, "Member 'UWrestlerCrowdSpawnerComponent::MinBrushIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, MaxBrushIntensity) == 0x0003BC, "Member 'UWrestlerCrowdSpawnerComponent::MaxBrushIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, BrushTex) == 0x0003C0, "Member 'UWrestlerCrowdSpawnerComponent::BrushTex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, SpawnedUnitClass) == 0x0003C8, "Member 'UWrestlerCrowdSpawnerComponent::SpawnedUnitClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, CursorComponent) == 0x0003D0, "Member 'UWrestlerCrowdSpawnerComponent::CursorComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, CurrentGridCount) == 0x0003D8, "Member 'UWrestlerCrowdSpawnerComponent::CurrentGridCount' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, bIsButtonPressedLastFrame) == 0x0003DC, "Member 'UWrestlerCrowdSpawnerComponent::bIsButtonPressedLastFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, GradientColors) == 0x0004A0, "Member 'UWrestlerCrowdSpawnerComponent::GradientColors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, CharacterBP) == 0x0004B0, "Member 'UWrestlerCrowdSpawnerComponent::CharacterBP' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, SpawnedCharacterName) == 0x0004B8, "Member 'UWrestlerCrowdSpawnerComponent::SpawnedCharacterName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, ModularDataPool) == 0x0004C0, "Member 'UWrestlerCrowdSpawnerComponent::ModularDataPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, Radius) == 0x0004C8, "Member 'UWrestlerCrowdSpawnerComponent::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, ProfileFrequencyMap) == 0x0004D0, "Member 'UWrestlerCrowdSpawnerComponent::ProfileFrequencyMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, ProfileList) == 0x000520, "Member 'UWrestlerCrowdSpawnerComponent::ProfileList' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, NPCCount) == 0x000530, "Member 'UWrestlerCrowdSpawnerComponent::NPCCount' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, DefaultAnim) == 0x000538, "Member 'UWrestlerCrowdSpawnerComponent::DefaultAnim' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCrowdSpawnerComponent, NPCPool) == 0x000548, "Member 'UWrestlerCrowdSpawnerComponent::NPCPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMontageComplete::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMontageEventReceived::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetCancel::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete) == 0x000020, "Wrong size on WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete, bReachedDestination) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete::bReachedDestination' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete, bHasTimedOut) == 0x000001, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete::bHasTimedOut' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete, InTargetLocation) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnMoveToTargetComplete::InTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady) == 0x000028, "Wrong size on WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady, InTargetDataHandle) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_Alt_OnTargetDataReady::InTargetDataHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_LightningStrike_Alt \ +static_assert(alignof(UWrestlerGameplayAbility_LightningStrike_Alt) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_LightningStrike_Alt"); \ +static_assert(sizeof(UWrestlerGameplayAbility_LightningStrike_Alt) == 0x0008C8, "Wrong size on UWrestlerGameplayAbility_LightningStrike_Alt"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TestAbilityLevel) == 0x000668, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TestAbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, LevelConfig) == 0x000670, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::LevelConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, LeftStrikeTag) == 0x000678, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::LeftStrikeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, RightStrikeTag) == 0x000680, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::RightStrikeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, LeftFlinchReactionEventTag) == 0x000688, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::LeftFlinchReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, RightFlinchReactionEventTag) == 0x000690, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::RightFlinchReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, MoveToData) == 0x000698, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, JumpToData) == 0x000720, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::JumpToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetAssistData) == 0x0007A8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetAssistData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, CameraYawCurve) == 0x0007B0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::CameraYawCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, DamageEffect) == 0x0007B8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::DamageEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, DamageDataTag) == 0x0007C0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::DamageDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, StunDataTag) == 0x0007C8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::StunDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, DisableMoveEffect) == 0x0007D0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::DisableMoveEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, MasqueradeEffect) == 0x0007D8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::MasqueradeEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, ChargeEffect) == 0x0007E0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::ChargeEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, MoveToEffect) == 0x0007E8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::MoveToEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, HealthAttribute) == 0x0007F0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::HealthAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetData) == 0x000860, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetActor) == 0x000868, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetDataHandle) == 0x000870, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetDataHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetLockOnTask) == 0x000898, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetLockOnTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, PlayMontageAndWait) == 0x0008A0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::PlayMontageAndWait' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, ChargeEffectHandle) == 0x0008A8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::ChargeEffectHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, MoveToEffectHandle) == 0x0008B0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::MoveToEffectHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, TargetTimeoutHandle) == 0x0008B8, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::TargetTimeoutHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike_Alt, AimAssistTask) == 0x0008C0, "Member 'UWrestlerGameplayAbility_LightningStrike_Alt::AimAssistTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCrowdVisualizationFragmentInitializer \ +static_assert(alignof(UWrestlerCrowdVisualizationFragmentInitializer) == 0x000008, "Wrong alignment on UWrestlerCrowdVisualizationFragmentInitializer"); \ +static_assert(sizeof(UWrestlerCrowdVisualizationFragmentInitializer) == 0x000610, "Wrong size on UWrestlerCrowdVisualizationFragmentInitializer"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskConfig \ +static_assert(alignof(UWrestlerTaskConfig) == 0x000008, "Wrong alignment on UWrestlerTaskConfig"); \ +static_assert(sizeof(UWrestlerTaskConfig) == 0x000118, "Wrong size on UWrestlerTaskConfig"); \ +static_assert(offsetof(UWrestlerTaskConfig, IgnoreTaskAgentsHasTags) == 0x000030, "Member 'UWrestlerTaskConfig::IgnoreTaskAgentsHasTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskConfig, DefaultTaskBoardDataTag) == 0x000050, "Member 'UWrestlerTaskConfig::DefaultTaskBoardDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskConfig, TaskBoardSettings) == 0x000058, "Member 'UWrestlerTaskConfig::TaskBoardSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskConfig, ParentTaskStateTags) == 0x0000A8, "Member 'UWrestlerTaskConfig::ParentTaskStateTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCustomDepthSubsystem_AddRenderCustomDepth \ +static_assert(alignof(WrestlerCustomDepthSubsystem_AddRenderCustomDepth) == 0x000008, "Wrong alignment on WrestlerCustomDepthSubsystem_AddRenderCustomDepth"); \ +static_assert(sizeof(WrestlerCustomDepthSubsystem_AddRenderCustomDepth) == 0x000010, "Wrong size on WrestlerCustomDepthSubsystem_AddRenderCustomDepth"); \ +static_assert(offsetof(WrestlerCustomDepthSubsystem_AddRenderCustomDepth, InPrimitiveComponent) == 0x000000, "Member 'WrestlerCustomDepthSubsystem_AddRenderCustomDepth::InPrimitiveComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCustomDepthSubsystem_AddRenderCustomDepth, InCaller) == 0x000008, "Member 'WrestlerCustomDepthSubsystem_AddRenderCustomDepth::InCaller' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCustomDepthSubsystem_AddRenderCustomDepth, InCustomDepthValue) == 0x00000C, "Member 'WrestlerCustomDepthSubsystem_AddRenderCustomDepth::InCustomDepthValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth \ +static_assert(alignof(WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth) == 0x000008, "Wrong alignment on WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth"); \ +static_assert(sizeof(WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth) == 0x000010, "Wrong size on WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth"); \ +static_assert(offsetof(WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth, InPrimitiveComponent) == 0x000000, "Member 'WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth::InPrimitiveComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth, InCaller) == 0x000008, "Member 'WrestlerCustomDepthSubsystem_RemoveRenderCustomDepth::InCaller' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCustomDepthSubsystem \ +static_assert(alignof(UWrestlerCustomDepthSubsystem) == 0x000008, "Wrong alignment on UWrestlerCustomDepthSubsystem"); \ +static_assert(sizeof(UWrestlerCustomDepthSubsystem) == 0x000080, "Wrong size on UWrestlerCustomDepthSubsystem"); \ +static_assert(offsetof(UWrestlerCustomDepthSubsystem, CustomDepthUsers) == 0x000030, "Member 'UWrestlerCustomDepthSubsystem::CustomDepthUsers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition \ +static_assert(alignof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition"); \ +static_assert(sizeof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition) == 0x000018, "Wrong size on WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, InMaxTraceRadius) == 0x000000, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::InMaxTraceRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, InDesiredWallOffset) == 0x000004, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::InDesiredWallOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, InMaxDisplacement) == 0x000008, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::InMaxDisplacement' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, InTraceCapsuleRadius) == 0x00000C, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::InTraceCapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, InTraceCapsuleHalfHeight) == 0x000010, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::InTraceCapsuleHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, bInConsiderNavmesh) == 0x000014, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::bInConsiderNavmesh' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, bInDrawDebug) == 0x000015, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::bInDrawDebug' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition, ReturnValue) == 0x000016, "Member 'WrestlerGameplayAbility_Feed_CalculateTargetOffsetPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset \ +static_assert(alignof(WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset"); \ +static_assert(sizeof(WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset) == 0x000018, "Wrong size on WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_Feed_GetFeedTargetLocationWithOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange \ +static_assert(alignof(WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange"); \ +static_assert(sizeof(WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange) == 0x000010, "Wrong size on WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange, InTarget) == 0x000000, "Member 'WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_Feed_IsTargetInJumpMoveToRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Feed_IsTargetInMoveToRange \ +static_assert(alignof(WrestlerGameplayAbility_Feed_IsTargetInMoveToRange) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Feed_IsTargetInMoveToRange"); \ +static_assert(sizeof(WrestlerGameplayAbility_Feed_IsTargetInMoveToRange) == 0x000010, "Wrong size on WrestlerGameplayAbility_Feed_IsTargetInMoveToRange"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_IsTargetInMoveToRange, InTarget) == 0x000000, "Member 'WrestlerGameplayAbility_Feed_IsTargetInMoveToRange::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_IsTargetInMoveToRange, ReturnValue) == 0x000008, "Member 'WrestlerGameplayAbility_Feed_IsTargetInMoveToRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Feed_ShouldJumpMoveTo \ +static_assert(alignof(WrestlerGameplayAbility_Feed_ShouldJumpMoveTo) == 0x000001, "Wrong alignment on WrestlerGameplayAbility_Feed_ShouldJumpMoveTo"); \ +static_assert(sizeof(WrestlerGameplayAbility_Feed_ShouldJumpMoveTo) == 0x000001, "Wrong size on WrestlerGameplayAbility_Feed_ShouldJumpMoveTo"); \ +static_assert(offsetof(WrestlerGameplayAbility_Feed_ShouldJumpMoveTo, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_Feed_ShouldJumpMoveTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_Feed \ +static_assert(alignof(UWrestlerGameplayAbility_Feed) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_Feed"); \ +static_assert(sizeof(UWrestlerGameplayAbility_Feed) == 0x0006A8, "Wrong size on UWrestlerGameplayAbility_Feed"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, JumpThreshold) == 0x000668, "Member 'UWrestlerGameplayAbility_Feed::JumpThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, MoveToData) == 0x000670, "Member 'UWrestlerGameplayAbility_Feed::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, JumpMoveToData) == 0x000678, "Member 'UWrestlerGameplayAbility_Feed::JumpMoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, FeedTargetLocationWithOffset) == 0x000680, "Member 'UWrestlerGameplayAbility_Feed::FeedTargetLocationWithOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, FeedTarget) == 0x000698, "Member 'UWrestlerGameplayAbility_Feed::FeedTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Feed, bRechargeBlood) == 0x0006A0, "Member 'UWrestlerGameplayAbility_Feed::bRechargeBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectResetProcessor \ +static_assert(alignof(UWrestlerMassSmartObjectResetProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectResetProcessor"); \ +static_assert(sizeof(UWrestlerMassSmartObjectResetProcessor) == 0x000370, "Wrong size on UWrestlerMassSmartObjectResetProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerCutsceneMusicSettings \ +static_assert(alignof(UWrestlerCutsceneMusicSettings) == 0x000008, "Wrong alignment on UWrestlerCutsceneMusicSettings"); \ +static_assert(sizeof(UWrestlerCutsceneMusicSettings) == 0x000070, "Wrong size on UWrestlerCutsceneMusicSettings"); \ +static_assert(offsetof(UWrestlerCutsceneMusicSettings, CutsceneMusicTagProperty) == 0x000048, "Member 'UWrestlerCutsceneMusicSettings::CutsceneMusicTagProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDamageApplicator_K2_ApplyDamage \ +static_assert(alignof(WrestlerDamageApplicator_K2_ApplyDamage) == 0x000008, "Wrong alignment on WrestlerDamageApplicator_K2_ApplyDamage"); \ +static_assert(sizeof(WrestlerDamageApplicator_K2_ApplyDamage) == 0x000048, "Wrong size on WrestlerDamageApplicator_K2_ApplyDamage"); \ +static_assert(offsetof(WrestlerDamageApplicator_K2_ApplyDamage, WorldContextObject) == 0x000000, "Member 'WrestlerDamageApplicator_K2_ApplyDamage::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDamageApplicator_K2_ApplyDamage, Target) == 0x000008, "Member 'WrestlerDamageApplicator_K2_ApplyDamage::Target' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDamageApplicator_K2_ApplyDamage, Amount) == 0x000010, "Member 'WrestlerDamageApplicator_K2_ApplyDamage::Amount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDamageApplicator_K2_ApplyDamage, Params_0) == 0x000018, "Member 'WrestlerDamageApplicator_K2_ApplyDamage::Params_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDamageApplicator_K2_ApplyDamage, ReturnValue) == 0x000040, "Member 'WrestlerDamageApplicator_K2_ApplyDamage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDamageApplicator \ +static_assert(alignof(UWrestlerDamageApplicator) == 0x000008, "Wrong alignment on UWrestlerDamageApplicator"); \ +static_assert(sizeof(UWrestlerDamageApplicator) == 0x000028, "Wrong size on UWrestlerDamageApplicator"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassScaredProcessor \ +static_assert(alignof(UWrestlerMassScaredProcessor) == 0x000008, "Wrong alignment on UWrestlerMassScaredProcessor"); \ +static_assert(sizeof(UWrestlerMassScaredProcessor) == 0x000370, "Wrong size on UWrestlerMassScaredProcessor"); \ +static_assert(offsetof(UWrestlerMassScaredProcessor, TimeToStopBeScared) == 0x000360, "Member 'UWrestlerMassScaredProcessor::TimeToStopBeScared' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassScaredProcessor, MinDistanceToStopBeScared) == 0x000364, "Member 'UWrestlerMassScaredProcessor::MinDistanceToStopBeScared' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess \ +static_assert(alignof(WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess"); \ +static_assert(sizeof(WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess) == 0x000004, "Wrong size on WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess"); \ +static_assert(offsetof(WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess, WaitingTime) == 0x000000, "Member 'WrestlerGameplayAbility_PsychicProjection_OnControlCueProcess::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned \ +static_assert(alignof(WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned"); \ +static_assert(sizeof(WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned) == 0x000008, "Wrong size on WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned"); \ +static_assert(offsetof(WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned, Actor) == 0x000000, "Member 'WrestlerGameplayAbility_PsychicProjection_OnDecoySpawned::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained \ +static_assert(alignof(WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained"); \ +static_assert(sizeof(WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained) == 0x000010, "Wrong size on WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained"); \ +static_assert(offsetof(WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained, OutTargets) == 0x000000, "Member 'WrestlerGameplayAbility_PsychicProjection_OnEnemyTargetsObtained::OutTargets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PsychicProjection_OnTargetObtained \ +static_assert(alignof(WrestlerGameplayAbility_PsychicProjection_OnTargetObtained) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PsychicProjection_OnTargetObtained"); \ +static_assert(sizeof(WrestlerGameplayAbility_PsychicProjection_OnTargetObtained) == 0x000018, "Wrong size on WrestlerGameplayAbility_PsychicProjection_OnTargetObtained"); \ +static_assert(offsetof(WrestlerGameplayAbility_PsychicProjection_OnTargetObtained, InTarget) == 0x000000, "Member 'WrestlerGameplayAbility_PsychicProjection_OnTargetObtained::InTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_PsychicProjection \ +static_assert(alignof(UWrestlerGameplayAbility_PsychicProjection) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_PsychicProjection"); \ +static_assert(sizeof(UWrestlerGameplayAbility_PsychicProjection) == 0x000760, "Wrong size on UWrestlerGameplayAbility_PsychicProjection"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Targets) == 0x0006A8, "Member 'UWrestlerGameplayAbility_PsychicProjection::Targets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, MontageToPlay) == 0x0006B8, "Member 'UWrestlerGameplayAbility_PsychicProjection::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, MontageTagWaitingFor) == 0x0006C0, "Member 'UWrestlerGameplayAbility_PsychicProjection::MontageTagWaitingFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, StartSection) == 0x0006E0, "Member 'UWrestlerGameplayAbility_PsychicProjection::StartSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, GameplayCue) == 0x0006E8, "Member 'UWrestlerGameplayAbility_PsychicProjection::GameplayCue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, ObjectProfile) == 0x0006F0, "Member 'UWrestlerGameplayAbility_PsychicProjection::ObjectProfile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Lifetime) == 0x0006F8, "Member 'UWrestlerGameplayAbility_PsychicProjection::Lifetime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, AttributeBase) == 0x000700, "Member 'UWrestlerGameplayAbility_PsychicProjection::AttributeBase' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, QueryChannel) == 0x000708, "Member 'UWrestlerGameplayAbility_PsychicProjection::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Length) == 0x00070C, "Member 'UWrestlerGameplayAbility_PsychicProjection::Length' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Filter) == 0x000710, "Member 'UWrestlerGameplayAbility_PsychicProjection::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Reticle) == 0x000730, "Member 'UWrestlerGameplayAbility_PsychicProjection::Reticle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, CueToWaitFor) == 0x000738, "Member 'UWrestlerGameplayAbility_PsychicProjection::CueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Radius) == 0x000740, "Member 'UWrestlerGameplayAbility_PsychicProjection::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, Delay) == 0x000744, "Member 'UWrestlerGameplayAbility_PsychicProjection::Delay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, AiQueryChannel) == 0x000748, "Member 'UWrestlerGameplayAbility_PsychicProjection::AiQueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, EventTagTargetObtained) == 0x00074C, "Member 'UWrestlerGameplayAbility_PsychicProjection::EventTagTargetObtained' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PsychicProjection, EventTagTargetEndAbility) == 0x000754, "Member 'UWrestlerGameplayAbility_PsychicProjection::EventTagTargetEndAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDamageExecution \ +static_assert(alignof(UWrestlerDamageExecution) == 0x000008, "Wrong alignment on UWrestlerDamageExecution"); \ +static_assert(sizeof(UWrestlerDamageExecution) == 0x000040, "Wrong size on UWrestlerDamageExecution"); \ + +#define DUMPER7_ASSERTS_AWrestlerTraversalActor \ +static_assert(alignof(AWrestlerTraversalActor) == 0x000008, "Wrong alignment on AWrestlerTraversalActor"); \ +static_assert(sizeof(AWrestlerTraversalActor) == 0x0002A0, "Wrong size on AWrestlerTraversalActor"); \ +static_assert(offsetof(AWrestlerTraversalActor, AbilityTag) == 0x000298, "Member 'AWrestlerTraversalActor::AbilityTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDamageExecutionNoDeath \ +static_assert(alignof(UWrestlerDamageExecutionNoDeath) == 0x000008, "Wrong alignment on UWrestlerDamageExecutionNoDeath"); \ +static_assert(sizeof(UWrestlerDamageExecutionNoDeath) == 0x000040, "Wrong size on UWrestlerDamageExecutionNoDeath"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget, InActor) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget, InGameplayCueParams) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget::InGameplayCueParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget, InBaseImpulseForce) == 0x0000E0, "Member 'WrestlerGameplayCueNotify_Static_ApplyImpulseToTarget::InBaseImpulseForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget, InTarget) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget, Parameters) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget::Parameters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget, ReturnValue) == 0x0000E0, "Member 'WrestlerGameplayCueNotify_Static_CueApplyImpulseToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_OnActiveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_OnActiveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_OnActiveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_OnActiveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_OnActiveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnActiveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnActiveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnActiveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Static_OnActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_OnExecuteAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_OnExecuteAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_OnExecuteAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_OnExecuteAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_OnExecuteAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnExecuteAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_OnExecuteAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnExecuteAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_OnExecuteAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnExecuteAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Static_OnExecuteAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_OnRemoveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_OnRemoveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_OnRemoveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_OnRemoveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_OnRemoveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnRemoveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_OnRemoveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Static_OnRemoveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_Static_WhileActiveAudio \ +static_assert(alignof(WrestlerGameplayCueNotify_Static_WhileActiveAudio) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_Static_WhileActiveAudio"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_Static_WhileActiveAudio) == 0x0000E8, "Wrong size on WrestlerGameplayCueNotify_Static_WhileActiveAudio"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_WhileActiveAudio, Character) == 0x000000, "Member 'WrestlerGameplayCueNotify_Static_WhileActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_WhileActiveAudio, AudioComponent) == 0x000008, "Member 'WrestlerGameplayCueNotify_Static_WhileActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_Static_WhileActiveAudio, Parameters) == 0x000010, "Member 'WrestlerGameplayCueNotify_Static_WhileActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayCueNotify_Static \ +static_assert(alignof(UWrestlerGameplayCueNotify_Static) == 0x000008, "Wrong alignment on UWrestlerGameplayCueNotify_Static"); \ +static_assert(sizeof(UWrestlerGameplayCueNotify_Static) == 0x000040, "Wrong size on UWrestlerGameplayCueNotify_Static"); \ + +#define DUMPER7_ASSERTS_UWrestlerModularAIData \ +static_assert(alignof(UWrestlerModularAIData) == 0x000008, "Wrong alignment on UWrestlerModularAIData"); \ +static_assert(sizeof(UWrestlerModularAIData) == 0x000050, "Wrong size on UWrestlerModularAIData"); \ +static_assert(offsetof(UWrestlerModularAIData, Weapon) == 0x000030, "Member 'UWrestlerModularAIData::Weapon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularAIData, WeaponSocket) == 0x000038, "Member 'UWrestlerModularAIData::WeaponSocket' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularAIData, Behaviours) == 0x000040, "Member 'UWrestlerModularAIData::Behaviours' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_AimAssistWithTargetingConfig \ +static_assert(alignof(UWrestlerDataAsset_AimAssistWithTargetingConfig) == 0x000008, "Wrong alignment on UWrestlerDataAsset_AimAssistWithTargetingConfig"); \ +static_assert(sizeof(UWrestlerDataAsset_AimAssistWithTargetingConfig) == 0x0000F0, "Wrong size on UWrestlerDataAsset_AimAssistWithTargetingConfig"); \ +static_assert(offsetof(UWrestlerDataAsset_AimAssistWithTargetingConfig, AimAssistTargetSettings) == 0x000030, "Member 'UWrestlerDataAsset_AimAssistWithTargetingConfig::AimAssistTargetSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMinimapWidget_ForcePoolUpdate \ +static_assert(alignof(WrestlerMinimapWidget_ForcePoolUpdate) == 0x000008, "Wrong alignment on WrestlerMinimapWidget_ForcePoolUpdate"); \ +static_assert(sizeof(WrestlerMinimapWidget_ForcePoolUpdate) == 0x000018, "Wrong size on WrestlerMinimapWidget_ForcePoolUpdate"); \ +static_assert(offsetof(WrestlerMinimapWidget_ForcePoolUpdate, Tag) == 0x000000, "Member 'WrestlerMinimapWidget_ForcePoolUpdate::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMinimapWidget_ForcePoolUpdate, Object) == 0x000010, "Member 'WrestlerMinimapWidget_ForcePoolUpdate::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMinimapWidget \ +static_assert(alignof(UWrestlerMinimapWidget) == 0x000008, "Wrong alignment on UWrestlerMinimapWidget"); \ +static_assert(sizeof(UWrestlerMinimapWidget) == 0x000360, "Wrong size on UWrestlerMinimapWidget"); \ +static_assert(offsetof(UWrestlerMinimapWidget, MapDataAsset) == 0x0002C8, "Member 'UWrestlerMinimapWidget::MapDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMinimapWidget, bShouldPlayerIconAlwaysFaceUp) == 0x0002D0, "Member 'UWrestlerMinimapWidget::bShouldPlayerIconAlwaysFaceUp' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMinimapWidget, MapInitialScale) == 0x0002D4, "Member 'UWrestlerMinimapWidget::MapInitialScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMinimapWidget, WorldMapWidget) == 0x0002D8, "Member 'UWrestlerMinimapWidget::WorldMapWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMinimapWidget, MinimapRotationCanvas) == 0x0002E0, "Member 'UWrestlerMinimapWidget::MinimapRotationCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMinimapWidget, PlayerCharacterReference) == 0x0002E8, "Member 'UWrestlerMinimapWidget::PlayerCharacterReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_DashConfig \ +static_assert(alignof(UWrestlerDataAsset_DashConfig) == 0x000008, "Wrong alignment on UWrestlerDataAsset_DashConfig"); \ +static_assert(sizeof(UWrestlerDataAsset_DashConfig) == 0x000058, "Wrong size on UWrestlerDataAsset_DashConfig"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, OrbitAngle) == 0x000030, "Member 'UWrestlerDataAsset_DashConfig::OrbitAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, OrbitDuration) == 0x000034, "Member 'UWrestlerDataAsset_DashConfig::OrbitDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, ForwardStrength) == 0x000038, "Member 'UWrestlerDataAsset_DashConfig::ForwardStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, ForwardDuration) == 0x00003C, "Member 'UWrestlerDataAsset_DashConfig::ForwardDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, BackwardStrength) == 0x000040, "Member 'UWrestlerDataAsset_DashConfig::BackwardStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, BackwardDuration) == 0x000044, "Member 'UWrestlerDataAsset_DashConfig::BackwardDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, LeftStrength) == 0x000048, "Member 'UWrestlerDataAsset_DashConfig::LeftStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, LeftDuration) == 0x00004C, "Member 'UWrestlerDataAsset_DashConfig::LeftDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, RightStrength) == 0x000050, "Member 'UWrestlerDataAsset_DashConfig::RightStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_DashConfig, RightDuration) == 0x000054, "Member 'UWrestlerDataAsset_DashConfig::RightDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled \ +static_assert(alignof(WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled"); \ +static_assert(sizeof(WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_SoaringLeap_OnMoveToCancelled::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished \ +static_assert(alignof(WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished"); \ +static_assert(sizeof(WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished) == 0x000020, "Wrong size on WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished, bInDestinationReached) == 0x000000, "Member 'WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished::bInDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished, bInTimedOut) == 0x000001, "Member 'WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished::bInTimedOut' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished, InFinalTargetLocation) == 0x000008, "Member 'WrestlerGameplayAbility_SoaringLeap_OnMoveToFinished::InFinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady \ +static_assert(alignof(WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady"); \ +static_assert(sizeof(WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady) == 0x000028, "Wrong size on WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady"); \ +static_assert(offsetof(WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady, InTargetDataHandle) == 0x000000, "Member 'WrestlerGameplayAbility_SoaringLeap_OnTargetDataReady::InTargetDataHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_SoaringLeap \ +static_assert(alignof(UWrestlerGameplayAbility_SoaringLeap) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_SoaringLeap"); \ +static_assert(sizeof(UWrestlerGameplayAbility_SoaringLeap) == 0x000710, "Wrong size on UWrestlerGameplayAbility_SoaringLeap"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, TierConfigData) == 0x000698, "Member 'UWrestlerGameplayAbility_SoaringLeap::TierConfigData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, FallingTag) == 0x0006A0, "Member 'UWrestlerGameplayAbility_SoaringLeap::FallingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, ReticleClass) == 0x0006A8, "Member 'UWrestlerGameplayAbility_SoaringLeap::ReticleClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, TargetingCollisionProfile) == 0x0006B0, "Member 'UWrestlerGameplayAbility_SoaringLeap::TargetingCollisionProfile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, MasqueradeEffect) == 0x0006B8, "Member 'UWrestlerGameplayAbility_SoaringLeap::MasqueradeEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, JumpTask) == 0x0006C0, "Member 'UWrestlerGameplayAbility_SoaringLeap::JumpTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, TargetLockOnTask) == 0x0006C8, "Member 'UWrestlerGameplayAbility_SoaringLeap::TargetLockOnTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, MoveToTask) == 0x0006D0, "Member 'UWrestlerGameplayAbility_SoaringLeap::MoveToTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, TargetData) == 0x0006D8, "Member 'UWrestlerGameplayAbility_SoaringLeap::TargetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, JumpTimerHandle) == 0x000700, "Member 'UWrestlerGameplayAbility_SoaringLeap::JumpTimerHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_SoaringLeap, PhaseTimerHandle) == 0x000708, "Member 'UWrestlerGameplayAbility_SoaringLeap::PhaseTimerHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_HeightenedSensesClue \ +static_assert(alignof(UWrestlerDataAsset_HeightenedSensesClue) == 0x000008, "Wrong alignment on UWrestlerDataAsset_HeightenedSensesClue"); \ +static_assert(sizeof(UWrestlerDataAsset_HeightenedSensesClue) == 0x000040, "Wrong size on UWrestlerDataAsset_HeightenedSensesClue"); \ +static_assert(offsetof(UWrestlerDataAsset_HeightenedSensesClue, bIsInfiniteRadius) == 0x000030, "Member 'UWrestlerDataAsset_HeightenedSensesClue::bIsInfiniteRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_HeightenedSensesClue, MinVisibleRadius) == 0x000034, "Member 'UWrestlerDataAsset_HeightenedSensesClue::MinVisibleRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDataAsset_HeightenedSensesClue, MaxVisibleRadius) == 0x000038, "Member 'UWrestlerDataAsset_HeightenedSensesClue::MaxVisibleRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_LightningStrike_LevelConfig \ +static_assert(alignof(UWrestlerDataAsset_LightningStrike_LevelConfig) == 0x000008, "Wrong alignment on UWrestlerDataAsset_LightningStrike_LevelConfig"); \ +static_assert(sizeof(UWrestlerDataAsset_LightningStrike_LevelConfig) == 0x000040, "Wrong size on UWrestlerDataAsset_LightningStrike_LevelConfig"); \ +static_assert(offsetof(UWrestlerDataAsset_LightningStrike_LevelConfig, FLightningStrikeTierConfigItems) == 0x000030, "Member 'UWrestlerDataAsset_LightningStrike_LevelConfig::FLightningStrikeTierConfigItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Passive_GetPassiveEffectDuration \ +static_assert(alignof(WrestlerGameplayAbility_Passive_GetPassiveEffectDuration) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Passive_GetPassiveEffectDuration"); \ +static_assert(sizeof(WrestlerGameplayAbility_Passive_GetPassiveEffectDuration) == 0x000004, "Wrong size on WrestlerGameplayAbility_Passive_GetPassiveEffectDuration"); \ +static_assert(offsetof(WrestlerGameplayAbility_Passive_GetPassiveEffectDuration, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_Passive_GetPassiveEffectDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Passive_GetPassiveEffectHandle \ +static_assert(alignof(WrestlerGameplayAbility_Passive_GetPassiveEffectHandle) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Passive_GetPassiveEffectHandle"); \ +static_assert(sizeof(WrestlerGameplayAbility_Passive_GetPassiveEffectHandle) == 0x000008, "Wrong size on WrestlerGameplayAbility_Passive_GetPassiveEffectHandle"); \ +static_assert(offsetof(WrestlerGameplayAbility_Passive_GetPassiveEffectHandle, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_Passive_GetPassiveEffectHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_Passive \ +static_assert(alignof(UWrestlerGameplayAbility_Passive) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_Passive"); \ +static_assert(sizeof(UWrestlerGameplayAbility_Passive) == 0x000690, "Wrong size on UWrestlerGameplayAbility_Passive"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Passive, PassiveEffect) == 0x000668, "Member 'UWrestlerGameplayAbility_Passive::PassiveEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Passive, bEndInstantly) == 0x000670, "Member 'UWrestlerGameplayAbility_Passive::bEndInstantly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_ModularEnemies \ +static_assert(alignof(UWrestlerDataAsset_ModularEnemies) == 0x000008, "Wrong alignment on UWrestlerDataAsset_ModularEnemies"); \ +static_assert(sizeof(UWrestlerDataAsset_ModularEnemies) == 0x000080, "Wrong size on UWrestlerDataAsset_ModularEnemies"); \ +static_assert(offsetof(UWrestlerDataAsset_ModularEnemies, Enemies) == 0x000030, "Member 'UWrestlerDataAsset_ModularEnemies::Enemies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_PlayableCharacters \ +static_assert(alignof(UWrestlerDataAsset_PlayableCharacters) == 0x000008, "Wrong alignment on UWrestlerDataAsset_PlayableCharacters"); \ +static_assert(sizeof(UWrestlerDataAsset_PlayableCharacters) == 0x000080, "Wrong size on UWrestlerDataAsset_PlayableCharacters"); \ +static_assert(offsetof(UWrestlerDataAsset_PlayableCharacters, PlayableCharacters) == 0x000030, "Member 'UWrestlerDataAsset_PlayableCharacters::PlayableCharacters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden \ +static_assert(alignof(WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden) == 0x000001, "Wrong alignment on WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden) == 0x000001, "Wrong size on WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettingsPerUser_IsPlayableCharacterOverridden::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerCharacterSettingsPerUser \ +static_assert(alignof(UWrestlerPlayerCharacterSettingsPerUser) == 0x000008, "Wrong alignment on UWrestlerPlayerCharacterSettingsPerUser"); \ +static_assert(sizeof(UWrestlerPlayerCharacterSettingsPerUser) == 0x000048, "Wrong size on UWrestlerPlayerCharacterSettingsPerUser"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_Punch_Config \ +static_assert(alignof(UWrestlerDataAsset_Punch_Config) == 0x000008, "Wrong alignment on UWrestlerDataAsset_Punch_Config"); \ +static_assert(sizeof(UWrestlerDataAsset_Punch_Config) == 0x000038, "Wrong size on UWrestlerDataAsset_Punch_Config"); \ +static_assert(offsetof(UWrestlerDataAsset_Punch_Config, bComboVarietyActive) == 0x000030, "Member 'UWrestlerDataAsset_Punch_Config::bComboVarietyActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetDeadBodySnapshot \ +static_assert(alignof(WrestlerDeadBody_GetDeadBodySnapshot) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetDeadBodySnapshot"); \ +static_assert(sizeof(WrestlerDeadBody_GetDeadBodySnapshot) == 0x000038, "Wrong size on WrestlerDeadBody_GetDeadBodySnapshot"); \ +static_assert(offsetof(WrestlerDeadBody_GetDeadBodySnapshot, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetDeadBodySnapshot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetEnemyTypeAudioSwitch \ +static_assert(alignof(WrestlerDeadBody_GetEnemyTypeAudioSwitch) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetEnemyTypeAudioSwitch"); \ +static_assert(sizeof(WrestlerDeadBody_GetEnemyTypeAudioSwitch) == 0x000008, "Wrong size on WrestlerDeadBody_GetEnemyTypeAudioSwitch"); \ +static_assert(offsetof(WrestlerDeadBody_GetEnemyTypeAudioSwitch, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetEnemyTypeAudioSwitch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_SetCharacterProfile \ +static_assert(alignof(WrestlerDeadBody_SetCharacterProfile) == 0x000008, "Wrong alignment on WrestlerDeadBody_SetCharacterProfile"); \ +static_assert(sizeof(WrestlerDeadBody_SetCharacterProfile) == 0x000008, "Wrong size on WrestlerDeadBody_SetCharacterProfile"); \ +static_assert(offsetof(WrestlerDeadBody_SetCharacterProfile, InCharacterProfiler) == 0x000000, "Member 'WrestlerDeadBody_SetCharacterProfile::InCharacterProfiler' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_SetGameTeam \ +static_assert(alignof(WrestlerDeadBody_SetGameTeam) == 0x000001, "Wrong alignment on WrestlerDeadBody_SetGameTeam"); \ +static_assert(sizeof(WrestlerDeadBody_SetGameTeam) == 0x000001, "Wrong size on WrestlerDeadBody_SetGameTeam"); \ +static_assert(offsetof(WrestlerDeadBody_SetGameTeam, InGameTeam) == 0x000000, "Member 'WrestlerDeadBody_SetGameTeam::InGameTeam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_SetIsInCutscene \ +static_assert(alignof(WrestlerDeadBody_SetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDeadBody_SetIsInCutscene"); \ +static_assert(sizeof(WrestlerDeadBody_SetIsInCutscene) == 0x000001, "Wrong size on WrestlerDeadBody_SetIsInCutscene"); \ +static_assert(offsetof(WrestlerDeadBody_SetIsInCutscene, bInCutscene) == 0x000000, "Member 'WrestlerDeadBody_SetIsInCutscene::bInCutscene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_SetIsInDialogue \ +static_assert(alignof(WrestlerDeadBody_SetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDeadBody_SetIsInDialogue"); \ +static_assert(sizeof(WrestlerDeadBody_SetIsInDialogue) == 0x000001, "Wrong size on WrestlerDeadBody_SetIsInDialogue"); \ +static_assert(offsetof(WrestlerDeadBody_SetIsInDialogue, bInDialogue) == 0x000000, "Member 'WrestlerDeadBody_SetIsInDialogue::bInDialogue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_SetIsSpeaking \ +static_assert(alignof(WrestlerDeadBody_SetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDeadBody_SetIsSpeaking"); \ +static_assert(sizeof(WrestlerDeadBody_SetIsSpeaking) == 0x000001, "Wrong size on WrestlerDeadBody_SetIsSpeaking"); \ +static_assert(offsetof(WrestlerDeadBody_SetIsSpeaking, bIsSpeaking_0) == 0x000000, "Member 'WrestlerDeadBody_SetIsSpeaking::bIsSpeaking_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetActorName \ +static_assert(alignof(WrestlerDeadBody_GetActorName) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetActorName"); \ +static_assert(sizeof(WrestlerDeadBody_GetActorName) == 0x000010, "Wrong size on WrestlerDeadBody_GetActorName"); \ +static_assert(offsetof(WrestlerDeadBody_GetActorName, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetAudioCharacterComponent \ +static_assert(alignof(WrestlerDeadBody_GetAudioCharacterComponent) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetAudioCharacterComponent"); \ +static_assert(sizeof(WrestlerDeadBody_GetAudioCharacterComponent) == 0x000008, "Wrong size on WrestlerDeadBody_GetAudioCharacterComponent"); \ +static_assert(offsetof(WrestlerDeadBody_GetAudioCharacterComponent, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetAudioCharacterComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetAudioComponent \ +static_assert(alignof(WrestlerDeadBody_GetAudioComponent) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetAudioComponent"); \ +static_assert(sizeof(WrestlerDeadBody_GetAudioComponent) == 0x000008, "Wrong size on WrestlerDeadBody_GetAudioComponent"); \ +static_assert(offsetof(WrestlerDeadBody_GetAudioComponent, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetDialogueCharacterTag \ +static_assert(alignof(WrestlerDeadBody_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on WrestlerDeadBody_GetDialogueCharacterTag"); \ +static_assert(sizeof(WrestlerDeadBody_GetDialogueCharacterTag) == 0x000008, "Wrong size on WrestlerDeadBody_GetDialogueCharacterTag"); \ +static_assert(offsetof(WrestlerDeadBody_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetIsInCutscene \ +static_assert(alignof(WrestlerDeadBody_GetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDeadBody_GetIsInCutscene"); \ +static_assert(sizeof(WrestlerDeadBody_GetIsInCutscene) == 0x000001, "Wrong size on WrestlerDeadBody_GetIsInCutscene"); \ +static_assert(offsetof(WrestlerDeadBody_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetIsInDialogue \ +static_assert(alignof(WrestlerDeadBody_GetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDeadBody_GetIsInDialogue"); \ +static_assert(sizeof(WrestlerDeadBody_GetIsInDialogue) == 0x000001, "Wrong size on WrestlerDeadBody_GetIsInDialogue"); \ +static_assert(offsetof(WrestlerDeadBody_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetIsSpeaking \ +static_assert(alignof(WrestlerDeadBody_GetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDeadBody_GetIsSpeaking"); \ +static_assert(sizeof(WrestlerDeadBody_GetIsSpeaking) == 0x000001, "Wrong size on WrestlerDeadBody_GetIsSpeaking"); \ +static_assert(offsetof(WrestlerDeadBody_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_GetSkeletalMeshComp \ +static_assert(alignof(WrestlerDeadBody_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on WrestlerDeadBody_GetSkeletalMeshComp"); \ +static_assert(sizeof(WrestlerDeadBody_GetSkeletalMeshComp) == 0x000008, "Wrong size on WrestlerDeadBody_GetSkeletalMeshComp"); \ +static_assert(offsetof(WrestlerDeadBody_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'WrestlerDeadBody_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBody_MatchesCharacterTag \ +static_assert(alignof(WrestlerDeadBody_MatchesCharacterTag) == 0x000004, "Wrong alignment on WrestlerDeadBody_MatchesCharacterTag"); \ +static_assert(sizeof(WrestlerDeadBody_MatchesCharacterTag) == 0x00000C, "Wrong size on WrestlerDeadBody_MatchesCharacterTag"); \ +static_assert(offsetof(WrestlerDeadBody_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'WrestlerDeadBody_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBody_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'WrestlerDeadBody_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDeadBody \ +static_assert(alignof(AWrestlerDeadBody) == 0x000008, "Wrong alignment on AWrestlerDeadBody"); \ +static_assert(sizeof(AWrestlerDeadBody) == 0x0003A0, "Wrong size on AWrestlerDeadBody"); \ +static_assert(offsetof(AWrestlerDeadBody, StimuliSource) == 0x0002B8, "Member 'AWrestlerDeadBody::StimuliSource' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, SightTargets) == 0x0002C0, "Member 'AWrestlerDeadBody::SightTargets' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, OnDeadBodyDestroyed) == 0x0002D0, "Member 'AWrestlerDeadBody::OnDeadBodyDestroyed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, CharacterTag) == 0x0002E0, "Member 'AWrestlerDeadBody::CharacterTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, GameTeam) == 0x0002E8, "Member 'AWrestlerDeadBody::GameTeam' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, DeadBodySnapshot) == 0x0002F0, "Member 'AWrestlerDeadBody::DeadBodySnapshot' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, SenseToSelfRegister) == 0x000328, "Member 'AWrestlerDeadBody::SenseToSelfRegister' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, ModularCharacterProfile) == 0x000330, "Member 'AWrestlerDeadBody::ModularCharacterProfile' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, bHasUVGlow) == 0x000338, "Member 'AWrestlerDeadBody::bHasUVGlow' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, DeathBehaviourTag) == 0x00033C, "Member 'AWrestlerDeadBody::DeathBehaviourTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, EnemyTypeAudioSwitch) == 0x000348, "Member 'AWrestlerDeadBody::EnemyTypeAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, OwnedCharacterTags) == 0x000350, "Member 'AWrestlerDeadBody::OwnedCharacterTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, DeadBodyMesh) == 0x000370, "Member 'AWrestlerDeadBody::DeadBodyMesh' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, AudioCharacterComponent) == 0x000378, "Member 'AWrestlerDeadBody::AudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, CorpseLifeSpan) == 0x000380, "Member 'AWrestlerDeadBody::CorpseLifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, CorpseDisposalDistance) == 0x000384, "Member 'AWrestlerDeadBody::CorpseDisposalDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, bIsInDialogue) == 0x000399, "Member 'AWrestlerDeadBody::bIsInDialogue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDeadBody, bIsSpeaking) == 0x00039A, "Member 'AWrestlerDeadBody::bIsSpeaking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerModeFrontEnd \ +static_assert(alignof(AWrestlerModeFrontEnd) == 0x000008, "Wrong alignment on AWrestlerModeFrontEnd"); \ +static_assert(sizeof(AWrestlerModeFrontEnd) == 0x0003E8, "Wrong size on AWrestlerModeFrontEnd"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBodyManager_CanInvestigateBody \ +static_assert(alignof(WrestlerDeadBodyManager_CanInvestigateBody) == 0x000008, "Wrong alignment on WrestlerDeadBodyManager_CanInvestigateBody"); \ +static_assert(sizeof(WrestlerDeadBodyManager_CanInvestigateBody) == 0x000018, "Wrong size on WrestlerDeadBodyManager_CanInvestigateBody"); \ +static_assert(offsetof(WrestlerDeadBodyManager_CanInvestigateBody, InActor) == 0x000000, "Member 'WrestlerDeadBodyManager_CanInvestigateBody::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBodyManager_CanInvestigateBody, InBody) == 0x000008, "Member 'WrestlerDeadBodyManager_CanInvestigateBody::InBody' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBodyManager_CanInvestigateBody, ReturnValue) == 0x000010, "Member 'WrestlerDeadBodyManager_CanInvestigateBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBodyManager_Death \ +static_assert(alignof(WrestlerDeadBodyManager_Death) == 0x000008, "Wrong alignment on WrestlerDeadBodyManager_Death"); \ +static_assert(sizeof(WrestlerDeadBodyManager_Death) == 0x000008, "Wrong size on WrestlerDeadBodyManager_Death"); \ +static_assert(offsetof(WrestlerDeadBodyManager_Death, InActor) == 0x000000, "Member 'WrestlerDeadBodyManager_Death::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBodyManager_RegisterSeenBody \ +static_assert(alignof(WrestlerDeadBodyManager_RegisterSeenBody) == 0x000008, "Wrong alignment on WrestlerDeadBodyManager_RegisterSeenBody"); \ +static_assert(sizeof(WrestlerDeadBodyManager_RegisterSeenBody) == 0x000018, "Wrong size on WrestlerDeadBodyManager_RegisterSeenBody"); \ +static_assert(offsetof(WrestlerDeadBodyManager_RegisterSeenBody, InActor) == 0x000000, "Member 'WrestlerDeadBodyManager_RegisterSeenBody::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBodyManager_RegisterSeenBody, InBody) == 0x000008, "Member 'WrestlerDeadBodyManager_RegisterSeenBody::InBody' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBodyManager_RegisterSeenBody, InMayInvestigate) == 0x000010, "Member 'WrestlerDeadBodyManager_RegisterSeenBody::InMayInvestigate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDeadBodyManager_RegisterSeenBody, ReturnValue) == 0x000011, "Member 'WrestlerDeadBodyManager_RegisterSeenBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDeadBodyManager_RemoveDeadBody \ +static_assert(alignof(WrestlerDeadBodyManager_RemoveDeadBody) == 0x000008, "Wrong alignment on WrestlerDeadBodyManager_RemoveDeadBody"); \ +static_assert(sizeof(WrestlerDeadBodyManager_RemoveDeadBody) == 0x000008, "Wrong size on WrestlerDeadBodyManager_RemoveDeadBody"); \ +static_assert(offsetof(WrestlerDeadBodyManager_RemoveDeadBody, InBody) == 0x000000, "Member 'WrestlerDeadBodyManager_RemoveDeadBody::InBody' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDeadBodyManager \ +static_assert(alignof(UWrestlerDeadBodyManager) == 0x000008, "Wrong alignment on UWrestlerDeadBodyManager"); \ +static_assert(sizeof(UWrestlerDeadBodyManager) == 0x000080, "Wrong size on UWrestlerDeadBodyManager"); \ +static_assert(offsetof(UWrestlerDeadBodyManager, ActiveBodies) == 0x000030, "Member 'UWrestlerDeadBodyManager::ActiveBodies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDebugKeysConfigDataAsset \ +static_assert(alignof(UWrestlerDebugKeysConfigDataAsset) == 0x000008, "Wrong alignment on UWrestlerDebugKeysConfigDataAsset"); \ +static_assert(sizeof(UWrestlerDebugKeysConfigDataAsset) == 0x000030, "Wrong size on UWrestlerDebugKeysConfigDataAsset"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassTurnOffProcessor \ +static_assert(alignof(UWrestlerMassTurnOffProcessor) == 0x000008, "Wrong alignment on UWrestlerMassTurnOffProcessor"); \ +static_assert(sizeof(UWrestlerMassTurnOffProcessor) == 0x000370, "Wrong size on UWrestlerMassTurnOffProcessor"); \ +static_assert(offsetof(UWrestlerMassTurnOffProcessor, ZoneGraphSearchRange) == 0x000360, "Member 'UWrestlerMassTurnOffProcessor::ZoneGraphSearchRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDefaultAbilities \ +static_assert(alignof(UWrestlerDefaultAbilities) == 0x000008, "Wrong alignment on UWrestlerDefaultAbilities"); \ +static_assert(sizeof(UWrestlerDefaultAbilities) == 0x0000E8, "Wrong size on UWrestlerDefaultAbilities"); \ +static_assert(offsetof(UWrestlerDefaultAbilities, SoftDefaultAbilities) == 0x000030, "Member 'UWrestlerDefaultAbilities::SoftDefaultAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDefaultAbilities, DefaultGameplayAbilities) == 0x000040, "Member 'UWrestlerDefaultAbilities::DefaultGameplayAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDefaultAbilities, bShouldPopulateAbilityEventMap) == 0x000090, "Member 'UWrestlerDefaultAbilities::bShouldPopulateAbilityEventMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDefaultAbilities, DefaultAbilityEventMap) == 0x000098, "Member 'UWrestlerDefaultAbilities::DefaultAbilityEventMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDepleteBloodAutomataTask \ +static_assert(alignof(UWrestlerDepleteBloodAutomataTask) == 0x000008, "Wrong alignment on UWrestlerDepleteBloodAutomataTask"); \ +static_assert(sizeof(UWrestlerDepleteBloodAutomataTask) == 0x000088, "Wrong size on UWrestlerDepleteBloodAutomataTask"); \ + +#define DUMPER7_ASSERTS_UWrestlerDialogueAbilitylData \ +static_assert(alignof(UWrestlerDialogueAbilitylData) == 0x000008, "Wrong alignment on UWrestlerDialogueAbilitylData"); \ +static_assert(sizeof(UWrestlerDialogueAbilitylData) == 0x000058, "Wrong size on UWrestlerDialogueAbilitylData"); \ +static_assert(offsetof(UWrestlerDialogueAbilitylData, Objective) == 0x000030, "Member 'UWrestlerDialogueAbilitylData::Objective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialogueAbilitylData, Story) == 0x000038, "Member 'UWrestlerDialogueAbilitylData::Story' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialogueAbilitylData, IsAbilityResultSuccess) == 0x000040, "Member 'UWrestlerDialogueAbilitylData::IsAbilityResultSuccess' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialogueAbilitylData, JumpToKnot) == 0x000048, "Member 'UWrestlerDialogueAbilitylData::JumpToKnot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_SetIsInCutscene \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_SetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_SetIsInCutscene"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_SetIsInCutscene) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_SetIsInCutscene"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_SetIsInCutscene, bInCutscene) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_SetIsInCutscene::bInCutscene' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_SetIsInDialogue \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_SetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_SetIsInDialogue"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_SetIsInDialogue) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_SetIsInDialogue"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_SetIsInDialogue, bInDialogue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_SetIsInDialogue::bInDialogue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_SetIsSpeaking \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_SetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_SetIsSpeaking"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_SetIsSpeaking) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_SetIsSpeaking"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_SetIsSpeaking, bIsSpeaking_0) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_SetIsSpeaking::bIsSpeaking_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetActorName \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetActorName) == 0x000008, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetActorName"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetActorName) == 0x000010, "Wrong size on WrestlerDialogueLevelSequenceActor_GetActorName"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetActorName, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetActorName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetAudioComp \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetAudioComp) == 0x000008, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetAudioComp"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetAudioComp) == 0x000008, "Wrong size on WrestlerDialogueLevelSequenceActor_GetAudioComp"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetAudioComp, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetAudioComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetAudioComponent \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetAudioComponent) == 0x000008, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetAudioComponent"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetAudioComponent) == 0x000008, "Wrong size on WrestlerDialogueLevelSequenceActor_GetAudioComponent"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetAudioComponent, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag) == 0x000004, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag) == 0x000008, "Wrong size on WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetDialogueCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetIsInCutscene \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetIsInCutscene) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetIsInCutscene"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetIsInCutscene) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_GetIsInCutscene"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetIsInCutscene, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetIsInCutscene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetIsInDialogue \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetIsInDialogue) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetIsInDialogue"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetIsInDialogue) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_GetIsInDialogue"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetIsInDialogue, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetIsInDialogue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetIsSpeaking \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetIsSpeaking) == 0x000001, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetIsSpeaking"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetIsSpeaking) == 0x000001, "Wrong size on WrestlerDialogueLevelSequenceActor_GetIsSpeaking"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetIsSpeaking, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetIsSpeaking::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp) == 0x000008, "Wrong alignment on WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp) == 0x000008, "Wrong size on WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp, ReturnValue) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_GetSkeletalMeshComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueLevelSequenceActor_MatchesCharacterTag \ +static_assert(alignof(WrestlerDialogueLevelSequenceActor_MatchesCharacterTag) == 0x000004, "Wrong alignment on WrestlerDialogueLevelSequenceActor_MatchesCharacterTag"); \ +static_assert(sizeof(WrestlerDialogueLevelSequenceActor_MatchesCharacterTag) == 0x00000C, "Wrong size on WrestlerDialogueLevelSequenceActor_MatchesCharacterTag"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_MatchesCharacterTag, InCharacterTag) == 0x000000, "Member 'WrestlerDialogueLevelSequenceActor_MatchesCharacterTag::InCharacterTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDialogueLevelSequenceActor_MatchesCharacterTag, ReturnValue) == 0x000008, "Member 'WrestlerDialogueLevelSequenceActor_MatchesCharacterTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDialogueLevelSequenceActor \ +static_assert(alignof(AWrestlerDialogueLevelSequenceActor) == 0x000008, "Wrong alignment on AWrestlerDialogueLevelSequenceActor"); \ +static_assert(sizeof(AWrestlerDialogueLevelSequenceActor) == 0x000358, "Wrong size on AWrestlerDialogueLevelSequenceActor"); \ +static_assert(offsetof(AWrestlerDialogueLevelSequenceActor, bIsInDialogue) == 0x000348, "Member 'AWrestlerDialogueLevelSequenceActor::bIsInDialogue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueLevelSequenceActor, bIsInCutscene) == 0x000349, "Member 'AWrestlerDialogueLevelSequenceActor::bIsInCutscene' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueLevelSequenceActor, bIsSpeaking) == 0x00034A, "Member 'AWrestlerDialogueLevelSequenceActor::bIsSpeaking' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerDialogueLevelSequenceActor, DialogueCharacterTag) == 0x00034C, "Member 'AWrestlerDialogueLevelSequenceActor::DialogueCharacterTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTagsFragmentRemoved \ +static_assert(alignof(UWrestlerTagsFragmentRemoved) == 0x000008, "Wrong alignment on UWrestlerTagsFragmentRemoved"); \ +static_assert(sizeof(UWrestlerTagsFragmentRemoved) == 0x000370, "Wrong size on UWrestlerTagsFragmentRemoved"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueReactionWidget_OnShow \ +static_assert(alignof(WrestlerDialogueReactionWidget_OnShow) == 0x000001, "Wrong alignment on WrestlerDialogueReactionWidget_OnShow"); \ +static_assert(sizeof(WrestlerDialogueReactionWidget_OnShow) == 0x000001, "Wrong size on WrestlerDialogueReactionWidget_OnShow"); \ +static_assert(offsetof(WrestlerDialogueReactionWidget_OnShow, InReactionType) == 0x000000, "Member 'WrestlerDialogueReactionWidget_OnShow::InReactionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDialogueReactionWidget_IsWidgetShowing \ +static_assert(alignof(WrestlerDialogueReactionWidget_IsWidgetShowing) == 0x000001, "Wrong alignment on WrestlerDialogueReactionWidget_IsWidgetShowing"); \ +static_assert(sizeof(WrestlerDialogueReactionWidget_IsWidgetShowing) == 0x000001, "Wrong size on WrestlerDialogueReactionWidget_IsWidgetShowing"); \ +static_assert(offsetof(WrestlerDialogueReactionWidget_IsWidgetShowing, ReturnValue) == 0x000000, "Member 'WrestlerDialogueReactionWidget_IsWidgetShowing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDialogueReactionWidget \ +static_assert(alignof(UWrestlerDialogueReactionWidget) == 0x000008, "Wrong alignment on UWrestlerDialogueReactionWidget"); \ +static_assert(sizeof(UWrestlerDialogueReactionWidget) == 0x000350, "Wrong size on UWrestlerDialogueReactionWidget"); \ +static_assert(offsetof(UWrestlerDialogueReactionWidget, NotificationTimer) == 0x000330, "Member 'UWrestlerDialogueReactionWidget::NotificationTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialogueReactionWidget, TextReaction) == 0x000338, "Member 'UWrestlerDialogueReactionWidget::TextReaction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerDialogueReactionWidget, ShowTime) == 0x000340, "Member 'UWrestlerDialogueReactionWidget::ShowTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDoor \ +static_assert(alignof(AWrestlerDoor) == 0x000008, "Wrong alignment on AWrestlerDoor"); \ +static_assert(sizeof(AWrestlerDoor) == 0x0002F8, "Wrong size on AWrestlerDoor"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_AddActor \ +static_assert(alignof(WrestlerSearchManager_AddActor) == 0x000008, "Wrong alignment on WrestlerSearchManager_AddActor"); \ +static_assert(sizeof(WrestlerSearchManager_AddActor) == 0x000008, "Wrong size on WrestlerSearchManager_AddActor"); \ +static_assert(offsetof(WrestlerSearchManager_AddActor, InActor) == 0x000000, "Member 'WrestlerSearchManager_AddActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_BindActorDelegates \ +static_assert(alignof(WrestlerSearchManager_BindActorDelegates) == 0x000008, "Wrong alignment on WrestlerSearchManager_BindActorDelegates"); \ +static_assert(sizeof(WrestlerSearchManager_BindActorDelegates) == 0x000008, "Wrong size on WrestlerSearchManager_BindActorDelegates"); \ +static_assert(offsetof(WrestlerSearchManager_BindActorDelegates, InActor) == 0x000000, "Member 'WrestlerSearchManager_BindActorDelegates::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_CompletedSearch \ +static_assert(alignof(WrestlerSearchManager_CompletedSearch) == 0x000008, "Wrong alignment on WrestlerSearchManager_CompletedSearch"); \ +static_assert(sizeof(WrestlerSearchManager_CompletedSearch) == 0x000008, "Wrong size on WrestlerSearchManager_CompletedSearch"); \ +static_assert(offsetof(WrestlerSearchManager_CompletedSearch, InActor) == 0x000000, "Member 'WrestlerSearchManager_CompletedSearch::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_Death \ +static_assert(alignof(WrestlerSearchManager_Death) == 0x000008, "Wrong alignment on WrestlerSearchManager_Death"); \ +static_assert(sizeof(WrestlerSearchManager_Death) == 0x000008, "Wrong size on WrestlerSearchManager_Death"); \ +static_assert(offsetof(WrestlerSearchManager_Death, InActor) == 0x000000, "Member 'WrestlerSearchManager_Death::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_GetAssignedSearchSpot \ +static_assert(alignof(WrestlerSearchManager_GetAssignedSearchSpot) == 0x000008, "Wrong alignment on WrestlerSearchManager_GetAssignedSearchSpot"); \ +static_assert(sizeof(WrestlerSearchManager_GetAssignedSearchSpot) == 0x000020, "Wrong size on WrestlerSearchManager_GetAssignedSearchSpot"); \ +static_assert(offsetof(WrestlerSearchManager_GetAssignedSearchSpot, InActor) == 0x000000, "Member 'WrestlerSearchManager_GetAssignedSearchSpot::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchManager_GetAssignedSearchSpot, ReturnValue) == 0x000008, "Member 'WrestlerSearchManager_GetAssignedSearchSpot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_GetNumSearchesLeft \ +static_assert(alignof(WrestlerSearchManager_GetNumSearchesLeft) == 0x000008, "Wrong alignment on WrestlerSearchManager_GetNumSearchesLeft"); \ +static_assert(sizeof(WrestlerSearchManager_GetNumSearchesLeft) == 0x000010, "Wrong size on WrestlerSearchManager_GetNumSearchesLeft"); \ +static_assert(offsetof(WrestlerSearchManager_GetNumSearchesLeft, InActor) == 0x000000, "Member 'WrestlerSearchManager_GetNumSearchesLeft::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchManager_GetNumSearchesLeft, ReturnValue) == 0x000008, "Member 'WrestlerSearchManager_GetNumSearchesLeft::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_IsTeamCaptain \ +static_assert(alignof(WrestlerSearchManager_IsTeamCaptain) == 0x000008, "Wrong alignment on WrestlerSearchManager_IsTeamCaptain"); \ +static_assert(sizeof(WrestlerSearchManager_IsTeamCaptain) == 0x000010, "Wrong size on WrestlerSearchManager_IsTeamCaptain"); \ +static_assert(offsetof(WrestlerSearchManager_IsTeamCaptain, InActor) == 0x000000, "Member 'WrestlerSearchManager_IsTeamCaptain::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchManager_IsTeamCaptain, ReturnValue) == 0x000008, "Member 'WrestlerSearchManager_IsTeamCaptain::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_RemoveActor \ +static_assert(alignof(WrestlerSearchManager_RemoveActor) == 0x000008, "Wrong alignment on WrestlerSearchManager_RemoveActor"); \ +static_assert(sizeof(WrestlerSearchManager_RemoveActor) == 0x000008, "Wrong size on WrestlerSearchManager_RemoveActor"); \ +static_assert(offsetof(WrestlerSearchManager_RemoveActor, InActor) == 0x000000, "Member 'WrestlerSearchManager_RemoveActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchManager_SetAssignedSearchSpot \ +static_assert(alignof(WrestlerSearchManager_SetAssignedSearchSpot) == 0x000008, "Wrong alignment on WrestlerSearchManager_SetAssignedSearchSpot"); \ +static_assert(sizeof(WrestlerSearchManager_SetAssignedSearchSpot) == 0x000020, "Wrong size on WrestlerSearchManager_SetAssignedSearchSpot"); \ +static_assert(offsetof(WrestlerSearchManager_SetAssignedSearchSpot, InActor) == 0x000000, "Member 'WrestlerSearchManager_SetAssignedSearchSpot::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchManager_SetAssignedSearchSpot, InSearchSpot) == 0x000008, "Member 'WrestlerSearchManager_SetAssignedSearchSpot::InSearchSpot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSearchManager \ +static_assert(alignof(UWrestlerSearchManager) == 0x000008, "Wrong alignment on UWrestlerSearchManager"); \ +static_assert(sizeof(UWrestlerSearchManager) == 0x000058, "Wrong size on UWrestlerSearchManager"); \ +static_assert(offsetof(UWrestlerSearchManager, SearchTeams) == 0x000040, "Member 'UWrestlerSearchManager::SearchTeams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSearchManager, ConfigData) == 0x000050, "Member 'UWrestlerSearchManager::ConfigData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerDynamicMaskObject \ +static_assert(alignof(AWrestlerDynamicMaskObject) == 0x000008, "Wrong alignment on AWrestlerDynamicMaskObject"); \ +static_assert(sizeof(AWrestlerDynamicMaskObject) == 0x0002A8, "Wrong size on AWrestlerDynamicMaskObject"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_CleanUp \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_CleanUp) == 0x000008, "Wrong alignment on WrestlerEnemyAlertnessWidget_CleanUp"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_CleanUp) == 0x000008, "Wrong size on WrestlerEnemyAlertnessWidget_CleanUp"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_CleanUp, InDeadActor) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_CleanUp::InDeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_FadeWidget \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_FadeWidget) == 0x000004, "Wrong alignment on WrestlerEnemyAlertnessWidget_FadeWidget"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_FadeWidget) == 0x000008, "Wrong size on WrestlerEnemyAlertnessWidget_FadeWidget"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_FadeWidget, InCombatTag) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_FadeWidget::InCombatTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_GetAwarnessProportion \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_GetAwarnessProportion) == 0x000004, "Wrong alignment on WrestlerEnemyAlertnessWidget_GetAwarnessProportion"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_GetAwarnessProportion) == 0x000004, "Wrong size on WrestlerEnemyAlertnessWidget_GetAwarnessProportion"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_GetAwarnessProportion, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_GetAwarnessProportion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_GetDetectionProportion \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_GetDetectionProportion) == 0x000004, "Wrong alignment on WrestlerEnemyAlertnessWidget_GetDetectionProportion"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_GetDetectionProportion) == 0x000004, "Wrong size on WrestlerEnemyAlertnessWidget_GetDetectionProportion"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_GetDetectionProportion, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_GetDetectionProportion::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_GetIsAware \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_GetIsAware) == 0x000001, "Wrong alignment on WrestlerEnemyAlertnessWidget_GetIsAware"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_GetIsAware) == 0x000001, "Wrong size on WrestlerEnemyAlertnessWidget_GetIsAware"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_GetIsAware, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_GetIsAware::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_GetIsDetected \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_GetIsDetected) == 0x000001, "Wrong alignment on WrestlerEnemyAlertnessWidget_GetIsDetected"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_GetIsDetected) == 0x000001, "Wrong size on WrestlerEnemyAlertnessWidget_GetIsDetected"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_GetIsDetected, ReturnValue) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_GetIsDetected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_SetEnemy \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_SetEnemy) == 0x000008, "Wrong alignment on WrestlerEnemyAlertnessWidget_SetEnemy"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_SetEnemy) == 0x000008, "Wrong size on WrestlerEnemyAlertnessWidget_SetEnemy"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_SetEnemy, InEnemy) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_SetEnemy::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAlertnessWidget_UpdateAwareness \ +static_assert(alignof(WrestlerEnemyAlertnessWidget_UpdateAwareness) == 0x000008, "Wrong alignment on WrestlerEnemyAlertnessWidget_UpdateAwareness"); \ +static_assert(sizeof(WrestlerEnemyAlertnessWidget_UpdateAwareness) == 0x000010, "Wrong size on WrestlerEnemyAlertnessWidget_UpdateAwareness"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_UpdateAwareness, InOwningCharacterController) == 0x000000, "Member 'WrestlerEnemyAlertnessWidget_UpdateAwareness::InOwningCharacterController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAlertnessWidget_UpdateAwareness, InNewValue) == 0x000008, "Member 'WrestlerEnemyAlertnessWidget_UpdateAwareness::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAlertnessWidget \ +static_assert(alignof(UWrestlerEnemyAlertnessWidget) == 0x000008, "Wrong alignment on UWrestlerEnemyAlertnessWidget"); \ +static_assert(sizeof(UWrestlerEnemyAlertnessWidget) == 0x0002F8, "Wrong size on UWrestlerEnemyAlertnessWidget"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidget, bIsAvailable) == 0x0002C8, "Member 'UWrestlerEnemyAlertnessWidget::bIsAvailable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidget, Enemy) == 0x0002CC, "Member 'UWrestlerEnemyAlertnessWidget::Enemy' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidget, CombatTimeBeforeFade) == 0x0002D4, "Member 'UWrestlerEnemyAlertnessWidget::CombatTimeBeforeFade' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidget, FadeRate) == 0x0002D8, "Member 'UWrestlerEnemyAlertnessWidget::FadeRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidget, AwarenessCanvas) == 0x0002E0, "Member 'UWrestlerEnemyAlertnessWidget::AwarenessCanvas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAlertnessWidgetComponent \ +static_assert(alignof(UWrestlerEnemyAlertnessWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerEnemyAlertnessWidgetComponent"); \ +static_assert(sizeof(UWrestlerEnemyAlertnessWidgetComponent) == 0x000810, "Wrong size on UWrestlerEnemyAlertnessWidgetComponent"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidgetComponent, CombatTimeBeforeFade) == 0x000808, "Member 'UWrestlerEnemyAlertnessWidgetComponent::CombatTimeBeforeFade' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAlertnessWidgetComponent, FadeRate) == 0x00080C, "Member 'UWrestlerEnemyAlertnessWidgetComponent::FadeRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnEnemyDetectedPlayer \ +static_assert(alignof(WrestlerEnemyAudioController_OnEnemyDetectedPlayer) == 0x000008, "Wrong alignment on WrestlerEnemyAudioController_OnEnemyDetectedPlayer"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnEnemyDetectedPlayer) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnEnemyDetectedPlayer"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnEnemyDetectedPlayer, InEnemy) == 0x000000, "Member 'WrestlerEnemyAudioController_OnEnemyDetectedPlayer::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnEnemyKilled \ +static_assert(alignof(WrestlerEnemyAudioController_OnEnemyKilled) == 0x000008, "Wrong alignment on WrestlerEnemyAudioController_OnEnemyKilled"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnEnemyKilled) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnEnemyKilled"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnEnemyKilled, InEnemy) == 0x000000, "Member 'WrestlerEnemyAudioController_OnEnemyKilled::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnEnemyStartDetecting \ +static_assert(alignof(WrestlerEnemyAudioController_OnEnemyStartDetecting) == 0x000008, "Wrong alignment on WrestlerEnemyAudioController_OnEnemyStartDetecting"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnEnemyStartDetecting) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnEnemyStartDetecting"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnEnemyStartDetecting, InEnemy) == 0x000000, "Member 'WrestlerEnemyAudioController_OnEnemyStartDetecting::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnLastEnemyKilled \ +static_assert(alignof(WrestlerEnemyAudioController_OnLastEnemyKilled) == 0x000008, "Wrong alignment on WrestlerEnemyAudioController_OnLastEnemyKilled"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnLastEnemyKilled) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnLastEnemyKilled"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnLastEnemyKilled, InEnemy) == 0x000000, "Member 'WrestlerEnemyAudioController_OnLastEnemyKilled::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnPlayerBloodChanged \ +static_assert(alignof(WrestlerEnemyAudioController_OnPlayerBloodChanged) == 0x000004, "Wrong alignment on WrestlerEnemyAudioController_OnPlayerBloodChanged"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnPlayerBloodChanged) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnPlayerBloodChanged"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnPlayerBloodChanged, InCurrentBlood) == 0x000000, "Member 'WrestlerEnemyAudioController_OnPlayerBloodChanged::InCurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnPlayerBloodChanged, InMaxBlood) == 0x000004, "Member 'WrestlerEnemyAudioController_OnPlayerBloodChanged::InMaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnPlayerHealthChanged \ +static_assert(alignof(WrestlerEnemyAudioController_OnPlayerHealthChanged) == 0x000004, "Wrong alignment on WrestlerEnemyAudioController_OnPlayerHealthChanged"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnPlayerHealthChanged) == 0x000008, "Wrong size on WrestlerEnemyAudioController_OnPlayerHealthChanged"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnPlayerHealthChanged, InCurrentHealth) == 0x000000, "Member 'WrestlerEnemyAudioController_OnPlayerHealthChanged::InCurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnPlayerHealthChanged, InMaxHealth) == 0x000004, "Member 'WrestlerEnemyAudioController_OnPlayerHealthChanged::InMaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyAudioController_OnPlayerUseAbility \ +static_assert(alignof(WrestlerEnemyAudioController_OnPlayerUseAbility) == 0x000001, "Wrong alignment on WrestlerEnemyAudioController_OnPlayerUseAbility"); \ +static_assert(sizeof(WrestlerEnemyAudioController_OnPlayerUseAbility) == 0x000001, "Wrong size on WrestlerEnemyAudioController_OnPlayerUseAbility"); \ +static_assert(offsetof(WrestlerEnemyAudioController_OnPlayerUseAbility, bInAbilityActive) == 0x000000, "Member 'WrestlerEnemyAudioController_OnPlayerUseAbility::bInAbilityActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAudioController \ +static_assert(alignof(UWrestlerEnemyAudioController) == 0x000008, "Wrong alignment on UWrestlerEnemyAudioController"); \ +static_assert(sizeof(UWrestlerEnemyAudioController) == 0x000228, "Wrong size on UWrestlerEnemyAudioController"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, TrackedEnemies) == 0x000030, "Member 'UWrestlerEnemyAudioController::TrackedEnemies' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, CurrentEnemiesInRange) == 0x000080, "Member 'UWrestlerEnemyAudioController::CurrentEnemiesInRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingLastKill) == 0x000090, "Member 'UWrestlerEnemyAudioController::OnKillStingLastKill' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingActiveCombat) == 0x0000A0, "Member 'UWrestlerEnemyAudioController::OnKillStingActiveCombat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingDetected) == 0x0000B0, "Member 'UWrestlerEnemyAudioController::OnKillStingDetected' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingInFeedRange) == 0x0000C0, "Member 'UWrestlerEnemyAudioController::OnKillStingInFeedRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingInAwarenessRange) == 0x0000D0, "Member 'UWrestlerEnemyAudioController::OnKillStingInAwarenessRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnKillStingOutOfRange) == 0x0000E0, "Member 'UWrestlerEnemyAudioController::OnKillStingOutOfRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnPlayerUseAbilitySting) == 0x0000F0, "Member 'UWrestlerEnemyAudioController::OnPlayerUseAbilitySting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnPlayerReceiveDamageSting) == 0x000100, "Member 'UWrestlerEnemyAudioController::OnPlayerReceiveDamageSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnPlayerDealDamageSting) == 0x000110, "Member 'UWrestlerEnemyAudioController::OnPlayerDealDamageSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnPlayerSeenSting) == 0x000120, "Member 'UWrestlerEnemyAudioController::OnPlayerSeenSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnPlayerSensedSting) == 0x000130, "Member 'UWrestlerEnemyAudioController::OnPlayerSensedSting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, GameplayTypeProperty) == 0x000140, "Member 'UWrestlerEnemyAudioController::GameplayTypeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, NumTrackedEnemiesProperty) == 0x000148, "Member 'UWrestlerEnemyAudioController::NumTrackedEnemiesProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, IsFeedingProperty) == 0x000150, "Member 'UWrestlerEnemyAudioController::IsFeedingProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, ThreatFactorRTPC) == 0x000158, "Member 'UWrestlerEnemyAudioController::ThreatFactorRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, ProximityFactorRTPC) == 0x000160, "Member 'UWrestlerEnemyAudioController::ProximityFactorRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, EnemyStateTransitionRTPC) == 0x000168, "Member 'UWrestlerEnemyAudioController::EnemyStateTransitionRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, NumEnemiesUnawareRTPC) == 0x000170, "Member 'UWrestlerEnemyAudioController::NumEnemiesUnawareRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, NumEnemiesAwareRTPC) == 0x000178, "Member 'UWrestlerEnemyAudioController::NumEnemiesAwareRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, NumEnemiesInCombatRTPC) == 0x000180, "Member 'UWrestlerEnemyAudioController::NumEnemiesInCombatRTPC' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnEnemyStateChangeEvent) == 0x000188, "Member 'UWrestlerEnemyAudioController::OnEnemyStateChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnEnemyTrackedStart) == 0x000190, "Member 'UWrestlerEnemyAudioController::OnEnemyTrackedStart' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyAudioController, OnEnemyTrackedEnd) == 0x000198, "Member 'UWrestlerEnemyAudioController::OnEnemyTrackedEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPerformanceAnalyserSettings \ +static_assert(alignof(UWrestlerPerformanceAnalyserSettings) == 0x000008, "Wrong alignment on UWrestlerPerformanceAnalyserSettings"); \ +static_assert(sizeof(UWrestlerPerformanceAnalyserSettings) == 0x000058, "Wrong size on UWrestlerPerformanceAnalyserSettings"); \ +static_assert(offsetof(UWrestlerPerformanceAnalyserSettings, TestDuration) == 0x000038, "Member 'UWrestlerPerformanceAnalyserSettings::TestDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerformanceAnalyserSettings, DesiredFrameRate) == 0x00003C, "Member 'UWrestlerPerformanceAnalyserSettings::DesiredFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerformanceAnalyserSettings, FrameRateDuration) == 0x000040, "Member 'UWrestlerPerformanceAnalyserSettings::FrameRateDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerformanceAnalyserSettings, MaxWaitTime) == 0x000044, "Member 'UWrestlerPerformanceAnalyserSettings::MaxWaitTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerformanceAnalyserSettings, PerformanceCameraEntries) == 0x000048, "Member 'UWrestlerPerformanceAnalyserSettings::PerformanceCameraEntries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyAudioControllerDebugSettings \ +static_assert(alignof(UWrestlerEnemyAudioControllerDebugSettings) == 0x000008, "Wrong alignment on UWrestlerEnemyAudioControllerDebugSettings"); \ +static_assert(sizeof(UWrestlerEnemyAudioControllerDebugSettings) == 0x000050, "Wrong size on UWrestlerEnemyAudioControllerDebugSettings"); \ +static_assert(offsetof(UWrestlerEnemyAudioControllerDebugSettings, bDisplayOnScreenDebug) == 0x000048, "Member 'UWrestlerEnemyAudioControllerDebugSettings::bDisplayOnScreenDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedProjectile_CollisionImpact \ +static_assert(alignof(WrestlerRangedProjectile_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerRangedProjectile_CollisionImpact"); \ +static_assert(sizeof(WrestlerRangedProjectile_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerRangedProjectile_CollisionImpact"); \ +static_assert(offsetof(WrestlerRangedProjectile_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerRangedProjectile_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedProjectile_GetDamageAmount \ +static_assert(alignof(WrestlerRangedProjectile_GetDamageAmount) == 0x000004, "Wrong alignment on WrestlerRangedProjectile_GetDamageAmount"); \ +static_assert(sizeof(WrestlerRangedProjectile_GetDamageAmount) == 0x000004, "Wrong size on WrestlerRangedProjectile_GetDamageAmount"); \ +static_assert(offsetof(WrestlerRangedProjectile_GetDamageAmount, ReturnValue) == 0x000000, "Member 'WrestlerRangedProjectile_GetDamageAmount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerRangedProjectile \ +static_assert(alignof(AWrestlerRangedProjectile) == 0x000008, "Wrong alignment on AWrestlerRangedProjectile"); \ +static_assert(sizeof(AWrestlerRangedProjectile) == 0x000300, "Wrong size on AWrestlerRangedProjectile"); \ +static_assert(offsetof(AWrestlerRangedProjectile, GravityScale) == 0x000298, "Member 'AWrestlerRangedProjectile::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, TraceChannel) == 0x00029C, "Member 'AWrestlerRangedProjectile::TraceChannel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, bShouldTraceComplex) == 0x00029D, "Member 'AWrestlerRangedProjectile::bShouldTraceComplex' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, ActorsToIgnore) == 0x0002A0, "Member 'AWrestlerRangedProjectile::ActorsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, MaxLifeSpan) == 0x0002B0, "Member 'AWrestlerRangedProjectile::MaxLifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, Velocity) == 0x0002B8, "Member 'AWrestlerRangedProjectile::Velocity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, MaxDistance) == 0x0002D0, "Member 'AWrestlerRangedProjectile::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, Speed) == 0x0002D4, "Member 'AWrestlerRangedProjectile::Speed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, AccumulatedDistance) == 0x0002D8, "Member 'AWrestlerRangedProjectile::AccumulatedDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, DamageAmount) == 0x0002DC, "Member 'AWrestlerRangedProjectile::DamageAmount' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, Gravity) == 0x0002E0, "Member 'AWrestlerRangedProjectile::Gravity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, CurrentLifeSpan) == 0x0002F8, "Member 'AWrestlerRangedProjectile::CurrentLifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerRangedProjectile, bHasCollided) == 0x0002FC, "Member 'AWrestlerRangedProjectile::bHasCollided' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyConfigDataAsset \ +static_assert(alignof(UWrestlerEnemyConfigDataAsset) == 0x000008, "Wrong alignment on UWrestlerEnemyConfigDataAsset"); \ +static_assert(sizeof(UWrestlerEnemyConfigDataAsset) == 0x0000D0, "Wrong size on UWrestlerEnemyConfigDataAsset"); \ +static_assert(offsetof(UWrestlerEnemyConfigDataAsset, UIWidgetClass) == 0x000030, "Member 'UWrestlerEnemyConfigDataAsset::UIWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyConfigDataAsset, UIWidgetClassAlertness) == 0x000058, "Member 'UWrestlerEnemyConfigDataAsset::UIWidgetClassAlertness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyConfigDataAsset, PatrolRouteClass) == 0x000080, "Member 'UWrestlerEnemyConfigDataAsset::PatrolRouteClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyConfigDataAsset, PatrolPointClass) == 0x0000A8, "Member 'UWrestlerEnemyConfigDataAsset::PatrolPointClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassFleeingVolume_IsVolumeActivated \ +static_assert(alignof(WrestlerMassFleeingVolume_IsVolumeActivated) == 0x000001, "Wrong alignment on WrestlerMassFleeingVolume_IsVolumeActivated"); \ +static_assert(sizeof(WrestlerMassFleeingVolume_IsVolumeActivated) == 0x000001, "Wrong size on WrestlerMassFleeingVolume_IsVolumeActivated"); \ +static_assert(offsetof(WrestlerMassFleeingVolume_IsVolumeActivated, ReturnValue) == 0x000000, "Member 'WrestlerMassFleeingVolume_IsVolumeActivated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassFleeingVolume \ +static_assert(alignof(AWrestlerMassFleeingVolume) == 0x000008, "Wrong alignment on AWrestlerMassFleeingVolume"); \ +static_assert(sizeof(AWrestlerMassFleeingVolume) == 0x0002B0, "Wrong size on AWrestlerMassFleeingVolume"); \ +static_assert(offsetof(AWrestlerMassFleeingVolume, bActivateOnBeginPlay) == 0x0002A0, "Member 'AWrestlerMassFleeingVolume::bActivateOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassFleeingVolume, DistanceToPlayerToRunAway) == 0x0002A4, "Member 'AWrestlerMassFleeingVolume::DistanceToPlayerToRunAway' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyHealthStunWidgetComponent \ +static_assert(alignof(UWrestlerEnemyHealthStunWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerEnemyHealthStunWidgetComponent"); \ +static_assert(sizeof(UWrestlerEnemyHealthStunWidgetComponent) == 0x0007E0, "Wrong size on UWrestlerEnemyHealthStunWidgetComponent"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded) == 0x000008, "Wrong alignment on WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded) == 0x000020, "Wrong size on WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded, InStateTags) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_OnOwnerStateTagsAdded::InStateTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_CanRotate \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_CanRotate) == 0x000001, "Wrong alignment on WrestlerEnemyMoveInputComponent_CanRotate"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_CanRotate) == 0x000001, "Wrong size on WrestlerEnemyMoveInputComponent_CanRotate"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_CanRotate, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_CanRotate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection) == 0x000008, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection) == 0x000018, "Wrong size on WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetDesiredFacingDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle) == 0x000004, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle) == 0x000004, "Wrong size on WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetDesiredTurnAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetDestination \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetDestination) == 0x000008, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetDestination"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetDestination) == 0x000018, "Wrong size on WrestlerEnemyMoveInputComponent_GetDestination"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetDestination, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetDestination::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetIsFrantic \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetIsFrantic) == 0x000001, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetIsFrantic"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetIsFrantic) == 0x000001, "Wrong size on WrestlerEnemyMoveInputComponent_GetIsFrantic"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetIsFrantic, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetIsFrantic::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity) == 0x000004, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity) == 0x000004, "Wrong size on WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetOwnerHorizontalVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_GetSpeedMultiplier \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_GetSpeedMultiplier) == 0x000004, "Wrong alignment on WrestlerEnemyMoveInputComponent_GetSpeedMultiplier"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_GetSpeedMultiplier) == 0x000004, "Wrong size on WrestlerEnemyMoveInputComponent_GetSpeedMultiplier"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_GetSpeedMultiplier, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_GetSpeedMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_IsTurnBlocked \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_IsTurnBlocked) == 0x000001, "Wrong alignment on WrestlerEnemyMoveInputComponent_IsTurnBlocked"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_IsTurnBlocked) == 0x000001, "Wrong size on WrestlerEnemyMoveInputComponent_IsTurnBlocked"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_IsTurnBlocked, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_IsTurnBlocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyMoveInputComponent_ShouldBeSprinting \ +static_assert(alignof(WrestlerEnemyMoveInputComponent_ShouldBeSprinting) == 0x000001, "Wrong alignment on WrestlerEnemyMoveInputComponent_ShouldBeSprinting"); \ +static_assert(sizeof(WrestlerEnemyMoveInputComponent_ShouldBeSprinting) == 0x000001, "Wrong size on WrestlerEnemyMoveInputComponent_ShouldBeSprinting"); \ +static_assert(offsetof(WrestlerEnemyMoveInputComponent_ShouldBeSprinting, ReturnValue) == 0x000000, "Member 'WrestlerEnemyMoveInputComponent_ShouldBeSprinting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyMoveInputComponent \ +static_assert(alignof(UWrestlerEnemyMoveInputComponent) == 0x000008, "Wrong alignment on UWrestlerEnemyMoveInputComponent"); \ +static_assert(sizeof(UWrestlerEnemyMoveInputComponent) == 0x000260, "Wrong size on UWrestlerEnemyMoveInputComponent"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, OwningCharacter) == 0x0000A0, "Member 'UWrestlerEnemyMoveInputComponent::OwningCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, SprintThreshold) == 0x0000A8, "Member 'UWrestlerEnemyMoveInputComponent::SprintThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnBlockThreshold) == 0x0000AC, "Member 'UWrestlerEnemyMoveInputComponent::TurnBlockThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, WalkInterpolationSpeed) == 0x0000B0, "Member 'UWrestlerEnemyMoveInputComponent::WalkInterpolationSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, StopSpeedThreshold) == 0x0000B4, "Member 'UWrestlerEnemyMoveInputComponent::StopSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, StrategicBackoutStartDistance) == 0x0000B8, "Member 'UWrestlerEnemyMoveInputComponent::StrategicBackoutStartDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, RotationWithTurnSetSpeedThreshold) == 0x0000BC, "Member 'UWrestlerEnemyMoveInputComponent::RotationWithTurnSetSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, MinSprintThreshold) == 0x0000C0, "Member 'UWrestlerEnemyMoveInputComponent::MinSprintThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, SprintHysteria) == 0x0000C4, "Member 'UWrestlerEnemyMoveInputComponent::SprintHysteria' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, MinDistanceFromPlayerToSprintFollow) == 0x0000C8, "Member 'UWrestlerEnemyMoveInputComponent::MinDistanceFromPlayerToSprintFollow' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSetDesired) == 0x0000CC, "Member 'UWrestlerEnemyMoveInputComponent::TurnSetDesired' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, Strafing) == 0x0000CD, "Member 'UWrestlerEnemyMoveInputComponent::Strafing' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSpeed) == 0x0000D0, "Member 'UWrestlerEnemyMoveInputComponent::TurnSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, WalkAcceleration) == 0x0000D4, "Member 'UWrestlerEnemyMoveInputComponent::WalkAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, SprintAcceleration) == 0x0000D8, "Member 'UWrestlerEnemyMoveInputComponent::SprintAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, destination) == 0x0000E0, "Member 'UWrestlerEnemyMoveInputComponent::destination' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, FranticSpeciesTags) == 0x0000F8, "Member 'UWrestlerEnemyMoveInputComponent::FranticSpeciesTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, MovementBlockedTags) == 0x000118, "Member 'UWrestlerEnemyMoveInputComponent::MovementBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, RotationBlockedTags) == 0x000138, "Member 'UWrestlerEnemyMoveInputComponent::RotationBlockedTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, SprintTag) == 0x000158, "Member 'UWrestlerEnemyMoveInputComponent::SprintTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, SprintSpeedAttribute) == 0x000160, "Member 'UWrestlerEnemyMoveInputComponent::SprintSpeedAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, WalkSpeedAttribute) == 0x000198, "Member 'UWrestlerEnemyMoveInputComponent::WalkSpeedAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSetMontageDefaultTag) == 0x0001D0, "Member 'UWrestlerEnemyMoveInputComponent::TurnSetMontageDefaultTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSetMontageTagPerState) == 0x0001D8, "Member 'UWrestlerEnemyMoveInputComponent::TurnSetMontageTagPerState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSetMontageDefault) == 0x000228, "Member 'UWrestlerEnemyMoveInputComponent::TurnSetMontageDefault' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyMoveInputComponent, TurnSetAnimMontage) == 0x000258, "Member 'UWrestlerEnemyMoveInputComponent::TurnSetAnimMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMultipleEndingsConfig_GetVideoClips \ +static_assert(alignof(WrestlerMultipleEndingsConfig_GetVideoClips) == 0x000008, "Wrong alignment on WrestlerMultipleEndingsConfig_GetVideoClips"); \ +static_assert(sizeof(WrestlerMultipleEndingsConfig_GetVideoClips) == 0x000050, "Wrong size on WrestlerMultipleEndingsConfig_GetVideoClips"); \ +static_assert(offsetof(WrestlerMultipleEndingsConfig_GetVideoClips, ReturnValue) == 0x000000, "Member 'WrestlerMultipleEndingsConfig_GetVideoClips::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMultipleEndingsConfig \ +static_assert(alignof(UWrestlerMultipleEndingsConfig) == 0x000008, "Wrong alignment on UWrestlerMultipleEndingsConfig"); \ +static_assert(sizeof(UWrestlerMultipleEndingsConfig) == 0x000080, "Wrong size on UWrestlerMultipleEndingsConfig"); \ +static_assert(offsetof(UWrestlerMultipleEndingsConfig, VideoClips) == 0x000030, "Member 'UWrestlerMultipleEndingsConfig::VideoClips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyPatrolRoute_GetPatrolPoints \ +static_assert(alignof(WrestlerEnemyPatrolRoute_GetPatrolPoints) == 0x000008, "Wrong alignment on WrestlerEnemyPatrolRoute_GetPatrolPoints"); \ +static_assert(sizeof(WrestlerEnemyPatrolRoute_GetPatrolPoints) == 0x000010, "Wrong size on WrestlerEnemyPatrolRoute_GetPatrolPoints"); \ +static_assert(offsetof(WrestlerEnemyPatrolRoute_GetPatrolPoints, ReturnValue) == 0x000000, "Member 'WrestlerEnemyPatrolRoute_GetPatrolPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerEnemyPatrolRoute \ +static_assert(alignof(AWrestlerEnemyPatrolRoute) == 0x000008, "Wrong alignment on AWrestlerEnemyPatrolRoute"); \ +static_assert(sizeof(AWrestlerEnemyPatrolRoute) == 0x0002C8, "Wrong size on AWrestlerEnemyPatrolRoute"); \ +static_assert(offsetof(AWrestlerEnemyPatrolRoute, bSingleRun) == 0x000298, "Member 'AWrestlerEnemyPatrolRoute::bSingleRun' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolRoute, TimeAtPoints) == 0x00029C, "Member 'AWrestlerEnemyPatrolRoute::TimeAtPoints' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolRoute, bActive) == 0x0002A0, "Member 'AWrestlerEnemyPatrolRoute::bActive' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolRoute, PatrolPoints) == 0x0002A8, "Member 'AWrestlerEnemyPatrolRoute::PatrolPoints' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerEnemyPatrolRoute, bUpdateAllPatrolPoints) == 0x0002B8, "Member 'AWrestlerEnemyPatrolRoute::bUpdateAllPatrolPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyStatsConfig \ +static_assert(alignof(UWrestlerEnemyStatsConfig) == 0x000008, "Wrong alignment on UWrestlerEnemyStatsConfig"); \ +static_assert(sizeof(UWrestlerEnemyStatsConfig) == 0x000070, "Wrong size on UWrestlerEnemyStatsConfig"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, EasyStatsEffects) == 0x000030, "Member 'UWrestlerEnemyStatsConfig::EasyStatsEffects' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, MediumStatsEffects) == 0x000040, "Member 'UWrestlerEnemyStatsConfig::MediumStatsEffects' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, HardStatsEffects) == 0x000050, "Member 'UWrestlerEnemyStatsConfig::HardStatsEffects' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, EasyStunDuration) == 0x000060, "Member 'UWrestlerEnemyStatsConfig::EasyStunDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, MediumStunDuration) == 0x000064, "Member 'UWrestlerEnemyStatsConfig::MediumStunDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyStatsConfig, HardStunDuration) == 0x000068, "Member 'UWrestlerEnemyStatsConfig::HardStunDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassScaredTagRemovedProcessor \ +static_assert(alignof(UWrestlerMassScaredTagRemovedProcessor) == 0x000008, "Wrong alignment on UWrestlerMassScaredTagRemovedProcessor"); \ +static_assert(sizeof(UWrestlerMassScaredTagRemovedProcessor) == 0x000370, "Wrong size on UWrestlerMassScaredTagRemovedProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerEnemyTraversalComponent_GetTraversalPoints \ +static_assert(alignof(WrestlerEnemyTraversalComponent_GetTraversalPoints) == 0x000008, "Wrong alignment on WrestlerEnemyTraversalComponent_GetTraversalPoints"); \ +static_assert(sizeof(WrestlerEnemyTraversalComponent_GetTraversalPoints) == 0x000030, "Wrong size on WrestlerEnemyTraversalComponent_GetTraversalPoints"); \ +static_assert(offsetof(WrestlerEnemyTraversalComponent_GetTraversalPoints, OutStartPoint) == 0x000000, "Member 'WrestlerEnemyTraversalComponent_GetTraversalPoints::OutStartPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEnemyTraversalComponent_GetTraversalPoints, OutEndPoint) == 0x000018, "Member 'WrestlerEnemyTraversalComponent_GetTraversalPoints::OutEndPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyTraversalComponent \ +static_assert(alignof(UWrestlerEnemyTraversalComponent) == 0x000008, "Wrong alignment on UWrestlerEnemyTraversalComponent"); \ +static_assert(sizeof(UWrestlerEnemyTraversalComponent) == 0x000100, "Wrong size on UWrestlerEnemyTraversalComponent"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, MinJumpHeightThreshold) == 0x0000A0, "Member 'UWrestlerEnemyTraversalComponent::MinJumpHeightThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, MinClimbHeightThreshold) == 0x0000A4, "Member 'UWrestlerEnemyTraversalComponent::MinClimbHeightThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, ClimbingTag) == 0x0000A8, "Member 'UWrestlerEnemyTraversalComponent::ClimbingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, JumpTag) == 0x0000B0, "Member 'UWrestlerEnemyTraversalComponent::JumpTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, ClimbDownTag) == 0x0000B8, "Member 'UWrestlerEnemyTraversalComponent::ClimbDownTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTraversalComponent, ClimbPoints) == 0x0000F0, "Member 'UWrestlerEnemyTraversalComponent::ClimbPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnemyTypeDefinition \ +static_assert(alignof(UWrestlerEnemyTypeDefinition) == 0x000008, "Wrong alignment on UWrestlerEnemyTypeDefinition"); \ +static_assert(sizeof(UWrestlerEnemyTypeDefinition) == 0x000270, "Wrong size on UWrestlerEnemyTypeDefinition"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, AudioSwitch) == 0x000028, "Member 'UWrestlerEnemyTypeDefinition::AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, EnemyCharacterBase) == 0x000050, "Member 'UWrestlerEnemyTypeDefinition::EnemyCharacterBase' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, DeadActor) == 0x000078, "Member 'UWrestlerEnemyTypeDefinition::DeadActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, ModularCharacterProfiles) == 0x0000A0, "Member 'UWrestlerEnemyTypeDefinition::ModularCharacterProfiles' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, EnemyController) == 0x0000B0, "Member 'UWrestlerEnemyTypeDefinition::EnemyController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, StateTree) == 0x0000D8, "Member 'UWrestlerEnemyTypeDefinition::StateTree' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, SenseConfig) == 0x000100, "Member 'UWrestlerEnemyTypeDefinition::SenseConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, PerStateSenseConfig) == 0x000128, "Member 'UWrestlerEnemyTypeDefinition::PerStateSenseConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, AwarenessConfig) == 0x000178, "Member 'UWrestlerEnemyTypeDefinition::AwarenessConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, PerStateAwarenessConfig) == 0x0001A0, "Member 'UWrestlerEnemyTypeDefinition::PerStateAwarenessConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, FocusConfig) == 0x0001F0, "Member 'UWrestlerEnemyTypeDefinition::FocusConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, DefaultAbilities) == 0x000218, "Member 'UWrestlerEnemyTypeDefinition::DefaultAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, StartupTags) == 0x000240, "Member 'UWrestlerEnemyTypeDefinition::StartupTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, FeedXPAwardTag) == 0x000260, "Member 'UWrestlerEnemyTypeDefinition::FeedXPAwardTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnemyTypeDefinition, Team) == 0x000268, "Member 'UWrestlerEnemyTypeDefinition::Team' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSmartObjectDefinition \ +static_assert(alignof(UWrestlerSmartObjectDefinition) == 0x000008, "Wrong alignment on UWrestlerSmartObjectDefinition"); \ +static_assert(sizeof(UWrestlerSmartObjectDefinition) == 0x000100, "Wrong size on UWrestlerSmartObjectDefinition"); \ +static_assert(offsetof(UWrestlerSmartObjectDefinition, SlotUseTransforms) == 0x0000E0, "Member 'UWrestlerSmartObjectDefinition::SlotUseTransforms' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectDefinition, BloodResonanceEventLocationTag) == 0x0000F0, "Member 'UWrestlerSmartObjectDefinition::BloodResonanceEventLocationTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectDefinition, bBloodResonanceEvent) == 0x0000F8, "Member 'UWrestlerSmartObjectDefinition::bBloodResonanceEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_AllEnemyMoveTos \ +static_assert(alignof(UWrestlerEnvQueryContext_AllEnemyMoveTos) == 0x000008, "Wrong alignment on UWrestlerEnvQueryContext_AllEnemyMoveTos"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_AllEnemyMoveTos) == 0x000030, "Wrong size on UWrestlerEnvQueryContext_AllEnemyMoveTos"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_MassEntities \ +static_assert(alignof(UWrestlerEnvQueryContext_MassEntities) == 0x000010, "Wrong alignment on UWrestlerEnvQueryContext_MassEntities"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_MassEntities) == 0x000330, "Wrong size on UWrestlerEnvQueryContext_MassEntities"); \ +static_assert(offsetof(UWrestlerEnvQueryContext_MassEntities, FilterTags) == 0x000028, "Member 'UWrestlerEnvQueryContext_MassEntities::FilterTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnvQueryContext_MassEntities, FilterFragments) == 0x000058, "Member 'UWrestlerEnvQueryContext_MassEntities::FilterFragments' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEnvQueryContext_MassEntities, bIgnoreQuerier) == 0x000088, "Member 'UWrestlerEnvQueryContext_MassEntities::bIgnoreQuerier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryContext_MassQuerier \ +static_assert(alignof(UWrestlerEnvQueryContext_MassQuerier) == 0x000008, "Wrong alignment on UWrestlerEnvQueryContext_MassQuerier"); \ +static_assert(sizeof(UWrestlerEnvQueryContext_MassQuerier) == 0x000028, "Wrong size on UWrestlerEnvQueryContext_MassQuerier"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryGenerator_Cone \ +static_assert(alignof(UWrestlerEnvQueryGenerator_Cone) == 0x000008, "Wrong alignment on UWrestlerEnvQueryGenerator_Cone"); \ +static_assert(sizeof(UWrestlerEnvQueryGenerator_Cone) == 0x000188, "Wrong size on UWrestlerEnvQueryGenerator_Cone"); \ +static_assert(offsetof(UWrestlerEnvQueryGenerator_Cone, bReverse) == 0x000180, "Member 'UWrestlerEnvQueryGenerator_Cone::bReverse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestEntryWidget \ +static_assert(alignof(UWrestlerQuestEntryWidget) == 0x000008, "Wrong alignment on UWrestlerQuestEntryWidget"); \ +static_assert(sizeof(UWrestlerQuestEntryWidget) == 0x000320, "Wrong size on UWrestlerQuestEntryWidget"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, QuestNameText) == 0x0002C8, "Member 'UWrestlerQuestEntryWidget::QuestNameText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, QuestCurrentDescription) == 0x0002D0, "Member 'UWrestlerQuestEntryWidget::QuestCurrentDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, ObjectivesSB) == 0x0002D8, "Member 'UWrestlerQuestEntryWidget::ObjectivesSB' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, QuestEntryPadding) == 0x0002E0, "Member 'UWrestlerQuestEntryWidget::QuestEntryPadding' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, InitialPoolSize) == 0x0002F0, "Member 'UWrestlerQuestEntryWidget::InitialPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, QuestObjectiveWidgetClass) == 0x0002F8, "Member 'UWrestlerQuestEntryWidget::QuestObjectiveWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, bShowOptionalObjectives) == 0x000300, "Member 'UWrestlerQuestEntryWidget::bShowOptionalObjectives' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, bShowLastDescription) == 0x000301, "Member 'UWrestlerQuestEntryWidget::bShowLastDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestEntryWidget, QuestOptionsPool) == 0x000308, "Member 'UWrestlerQuestEntryWidget::QuestOptionsPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEnvQueryTest_MassTrace \ +static_assert(alignof(UWrestlerEnvQueryTest_MassTrace) == 0x000008, "Wrong alignment on UWrestlerEnvQueryTest_MassTrace"); \ +static_assert(sizeof(UWrestlerEnvQueryTest_MassTrace) == 0x0002F8, "Wrong size on UWrestlerEnvQueryTest_MassTrace"); \ +static_assert(offsetof(UWrestlerEnvQueryTest_MassTrace, IgnoreActorsContexts) == 0x0002E8, "Member 'UWrestlerEnvQueryTest_MassTrace::IgnoreActorsContexts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentInstance_GetInstigator \ +static_assert(alignof(WrestlerEquipmentInstance_GetInstigator) == 0x000008, "Wrong alignment on WrestlerEquipmentInstance_GetInstigator"); \ +static_assert(sizeof(WrestlerEquipmentInstance_GetInstigator) == 0x000008, "Wrong size on WrestlerEquipmentInstance_GetInstigator"); \ +static_assert(offsetof(WrestlerEquipmentInstance_GetInstigator, ReturnValue) == 0x000000, "Member 'WrestlerEquipmentInstance_GetInstigator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentInstance_GetPawn \ +static_assert(alignof(WrestlerEquipmentInstance_GetPawn) == 0x000008, "Wrong alignment on WrestlerEquipmentInstance_GetPawn"); \ +static_assert(sizeof(WrestlerEquipmentInstance_GetPawn) == 0x000008, "Wrong size on WrestlerEquipmentInstance_GetPawn"); \ +static_assert(offsetof(WrestlerEquipmentInstance_GetPawn, ReturnValue) == 0x000000, "Member 'WrestlerEquipmentInstance_GetPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentInstance_GetSpawnedActor \ +static_assert(alignof(WrestlerEquipmentInstance_GetSpawnedActor) == 0x000008, "Wrong alignment on WrestlerEquipmentInstance_GetSpawnedActor"); \ +static_assert(sizeof(WrestlerEquipmentInstance_GetSpawnedActor) == 0x000008, "Wrong size on WrestlerEquipmentInstance_GetSpawnedActor"); \ +static_assert(offsetof(WrestlerEquipmentInstance_GetSpawnedActor, ReturnValue) == 0x000000, "Member 'WrestlerEquipmentInstance_GetSpawnedActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquipmentInstance_GetTypedPawn \ +static_assert(alignof(WrestlerEquipmentInstance_GetTypedPawn) == 0x000008, "Wrong alignment on WrestlerEquipmentInstance_GetTypedPawn"); \ +static_assert(sizeof(WrestlerEquipmentInstance_GetTypedPawn) == 0x000010, "Wrong size on WrestlerEquipmentInstance_GetTypedPawn"); \ +static_assert(offsetof(WrestlerEquipmentInstance_GetTypedPawn, InPawnType) == 0x000000, "Member 'WrestlerEquipmentInstance_GetTypedPawn::InPawnType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquipmentInstance_GetTypedPawn, ReturnValue) == 0x000008, "Member 'WrestlerEquipmentInstance_GetTypedPawn::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquipmentInstance \ +static_assert(alignof(UWrestlerEquipmentInstance) == 0x000008, "Wrong alignment on UWrestlerEquipmentInstance"); \ +static_assert(sizeof(UWrestlerEquipmentInstance) == 0x000038, "Wrong size on UWrestlerEquipmentInstance"); \ +static_assert(offsetof(UWrestlerEquipmentInstance, Instigator) == 0x000028, "Member 'UWrestlerEquipmentInstance::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquipmentInstance, SpawnedActor) == 0x000030, "Member 'UWrestlerEquipmentInstance::SpawnedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSequenceBlendComponent \ +static_assert(alignof(UWrestlerSequenceBlendComponent) == 0x000010, "Wrong alignment on UWrestlerSequenceBlendComponent"); \ +static_assert(sizeof(UWrestlerSequenceBlendComponent) == 0x000170, "Wrong size on UWrestlerSequenceBlendComponent"); \ +static_assert(offsetof(UWrestlerSequenceBlendComponent, OnSequenceBindingChanged) == 0x0000A0, "Member 'UWrestlerSequenceBlendComponent::OnSequenceBindingChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSequenceBlendComponent, OnSequenceStarted) == 0x0000B0, "Member 'UWrestlerSequenceBlendComponent::OnSequenceStarted' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSequenceBlendComponent, OnSequenceEnded) == 0x0000C0, "Member 'UWrestlerSequenceBlendComponent::OnSequenceEnded' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSequenceBlendComponent, OnSequenceDataChanged) == 0x0000D0, "Member 'UWrestlerSequenceBlendComponent::OnSequenceDataChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType \ +static_assert(alignof(WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType) == 0x000001, "Wrong alignment on WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType"); \ +static_assert(sizeof(WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType) == 0x000002, "Wrong size on WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType"); \ +static_assert(offsetof(WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType, InType) == 0x000000, "Member 'WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType::InType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType, ReturnValue) == 0x000001, "Member 'WrestlerEquippedAbilityComponent_HasEquippedAbilityOfType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquippedAbilityComponent \ +static_assert(alignof(UWrestlerEquippedAbilityComponent) == 0x000008, "Wrong alignment on UWrestlerEquippedAbilityComponent"); \ +static_assert(sizeof(UWrestlerEquippedAbilityComponent) == 0x000178, "Wrong size on UWrestlerEquippedAbilityComponent"); \ +static_assert(offsetof(UWrestlerEquippedAbilityComponent, OnEquippedAbilityActiveEvent) == 0x0000B8, "Member 'UWrestlerEquippedAbilityComponent::OnEquippedAbilityActiveEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityComponent, UnlockedAbilities) == 0x0000C8, "Member 'UWrestlerEquippedAbilityComponent::UnlockedAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityComponent, EquippedAbilities) == 0x000128, "Member 'UWrestlerEquippedAbilityComponent::EquippedAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged \ +static_assert(alignof(WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged, InCurrentValue) == 0x000000, "Member 'WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged, InMaxValue) == 0x000004, "Member 'WrestlerEquippedAbilityWidget_OnAffectAbilityBloodChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged \ +static_assert(alignof(WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged, InCurrentValue) == 0x000000, "Member 'WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged, InMaxValue) == 0x000004, "Member 'WrestlerEquippedAbilityWidget_OnMasteryAbilityBloodChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityWidget_OnMaxValueChanged \ +static_assert(alignof(WrestlerEquippedAbilityWidget_OnMaxValueChanged) == 0x000008, "Wrong alignment on WrestlerEquippedAbilityWidget_OnMaxValueChanged"); \ +static_assert(sizeof(WrestlerEquippedAbilityWidget_OnMaxValueChanged) == 0x000040, "Wrong size on WrestlerEquippedAbilityWidget_OnMaxValueChanged"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnMaxValueChanged, InAffectedAttribute) == 0x000000, "Member 'WrestlerEquippedAbilityWidget_OnMaxValueChanged::InAffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnMaxValueChanged, InNewMax) == 0x000038, "Member 'WrestlerEquippedAbilityWidget_OnMaxValueChanged::InNewMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged \ +static_assert(alignof(WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged, InCurrentValue) == 0x000000, "Member 'WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged, InMaxValue) == 0x000004, "Member 'WrestlerEquippedAbilityWidget_OnRelocateAbilityBloodChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged \ +static_assert(alignof(WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged) == 0x000004, "Wrong alignment on WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged"); \ +static_assert(sizeof(WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged) == 0x000008, "Wrong size on WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged, InCurrentValue) == 0x000000, "Member 'WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged, InMaxValue) == 0x000004, "Member 'WrestlerEquippedAbilityWidget_OnStrikeAbilityBloodChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEquippedAbilityWidget \ +static_assert(alignof(UWrestlerEquippedAbilityWidget) == 0x000008, "Wrong alignment on UWrestlerEquippedAbilityWidget"); \ +static_assert(sizeof(UWrestlerEquippedAbilityWidget) == 0x000358, "Wrong size on UWrestlerEquippedAbilityWidget"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, PlayerClan) == 0x000330, "Member 'UWrestlerEquippedAbilityWidget::PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, StrikeAbilityBloodValue) == 0x000338, "Member 'UWrestlerEquippedAbilityWidget::StrikeAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, MaxStrikeAbilityBloodValue) == 0x00033C, "Member 'UWrestlerEquippedAbilityWidget::MaxStrikeAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, RelocateAbilityBloodValue) == 0x000340, "Member 'UWrestlerEquippedAbilityWidget::RelocateAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, MaxRelocateAbilityBloodValue) == 0x000344, "Member 'UWrestlerEquippedAbilityWidget::MaxRelocateAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, MasteryAbilityBloodValue) == 0x000348, "Member 'UWrestlerEquippedAbilityWidget::MasteryAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, MaxMasteryAbilityBloodValue) == 0x00034C, "Member 'UWrestlerEquippedAbilityWidget::MaxMasteryAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, AffectAbilityBloodValue) == 0x000350, "Member 'UWrestlerEquippedAbilityWidget::AffectAbilityBloodValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEquippedAbilityWidget, MaxAffectAbilityBloodValue) == 0x000354, "Member 'UWrestlerEquippedAbilityWidget::MaxAffectAbilityBloodValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlaySequenceAutomataTask \ +static_assert(alignof(UWrestlerPlaySequenceAutomataTask) == 0x000010, "Wrong alignment on UWrestlerPlaySequenceAutomataTask"); \ +static_assert(sizeof(UWrestlerPlaySequenceAutomataTask) == 0x0001E0, "Wrong size on UWrestlerPlaySequenceAutomataTask"); \ +static_assert(offsetof(UWrestlerPlaySequenceAutomataTask, CutsceneType) == 0x000130, "Member 'UWrestlerPlaySequenceAutomataTask::CutsceneType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlaySequenceAutomataTask, AbilitiesToCancel) == 0x000138, "Member 'UWrestlerPlaySequenceAutomataTask::AbilitiesToCancel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlaySequenceAutomataTask, PlayerSequenceData) == 0x000160, "Member 'UWrestlerPlaySequenceAutomataTask::PlayerSequenceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerExponentialHeightFog_SetFogEnabled \ +static_assert(alignof(WrestlerExponentialHeightFog_SetFogEnabled) == 0x000001, "Wrong alignment on WrestlerExponentialHeightFog_SetFogEnabled"); \ +static_assert(sizeof(WrestlerExponentialHeightFog_SetFogEnabled) == 0x000001, "Wrong size on WrestlerExponentialHeightFog_SetFogEnabled"); \ +static_assert(offsetof(WrestlerExponentialHeightFog_SetFogEnabled, bInEnabled) == 0x000000, "Member 'WrestlerExponentialHeightFog_SetFogEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerExponentialHeightFog \ +static_assert(alignof(AWrestlerExponentialHeightFog) == 0x000008, "Wrong alignment on AWrestlerExponentialHeightFog"); \ +static_assert(sizeof(AWrestlerExponentialHeightFog) == 0x000530, "Wrong size on AWrestlerExponentialHeightFog"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, BaseExponentialHeightFogParameters) == 0x000298, "Member 'AWrestlerExponentialHeightFog::BaseExponentialHeightFogParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, CurrentExponentialHeightFogParameters) == 0x000338, "Member 'AWrestlerExponentialHeightFog::CurrentExponentialHeightFogParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, BlendStartParameters) == 0x0003D8, "Member 'AWrestlerExponentialHeightFog::BlendStartParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, BlendEndParameters) == 0x000478, "Member 'AWrestlerExponentialHeightFog::BlendEndParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, CurrentBlendAlpha) == 0x000518, "Member 'AWrestlerExponentialHeightFog::CurrentBlendAlpha' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerExponentialHeightFog, FogComponent) == 0x000520, "Member 'AWrestlerExponentialHeightFog::FogComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPersistenceComponentBreakable \ +static_assert(alignof(UWrestlerPersistenceComponentBreakable) == 0x000008, "Wrong alignment on UWrestlerPersistenceComponentBreakable"); \ +static_assert(sizeof(UWrestlerPersistenceComponentBreakable) == 0x0000A0, "Wrong size on UWrestlerPersistenceComponentBreakable"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_SetIsEmitting \ +static_assert(alignof(WrestlerFearEmitterComponent_SetIsEmitting) == 0x000001, "Wrong alignment on WrestlerFearEmitterComponent_SetIsEmitting"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_SetIsEmitting) == 0x000001, "Wrong size on WrestlerFearEmitterComponent_SetIsEmitting"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_SetIsEmitting, InEmitting) == 0x000000, "Member 'WrestlerFearEmitterComponent_SetIsEmitting::InEmitting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_StartTimedEmission \ +static_assert(alignof(WrestlerFearEmitterComponent_StartTimedEmission) == 0x000008, "Wrong alignment on WrestlerFearEmitterComponent_StartTimedEmission"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_StartTimedEmission) == 0x000018, "Wrong size on WrestlerFearEmitterComponent_StartTimedEmission"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_StartTimedEmission, InTime) == 0x000000, "Member 'WrestlerFearEmitterComponent_StartTimedEmission::InTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_StartTimedEmission, InFearStrengthMultiplier) == 0x000004, "Member 'WrestlerFearEmitterComponent_StartTimedEmission::InFearStrengthMultiplier' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_StartTimedEmission, InFearInstigator) == 0x000008, "Member 'WrestlerFearEmitterComponent_StartTimedEmission::InFearInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_StartTimedEmission, InTag) == 0x000010, "Member 'WrestlerFearEmitterComponent_StartTimedEmission::InTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_GetFearCurve \ +static_assert(alignof(WrestlerFearEmitterComponent_GetFearCurve) == 0x000008, "Wrong alignment on WrestlerFearEmitterComponent_GetFearCurve"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_GetFearCurve) == 0x000088, "Wrong size on WrestlerFearEmitterComponent_GetFearCurve"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetFearCurve, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterComponent_GetFearCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_GetFearMaxRange \ +static_assert(alignof(WrestlerFearEmitterComponent_GetFearMaxRange) == 0x000004, "Wrong alignment on WrestlerFearEmitterComponent_GetFearMaxRange"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_GetFearMaxRange) == 0x000004, "Wrong size on WrestlerFearEmitterComponent_GetFearMaxRange"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetFearMaxRange, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterComponent_GetFearMaxRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_GetFearStrength \ +static_assert(alignof(WrestlerFearEmitterComponent_GetFearStrength) == 0x000004, "Wrong alignment on WrestlerFearEmitterComponent_GetFearStrength"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_GetFearStrength) == 0x000008, "Wrong size on WrestlerFearEmitterComponent_GetFearStrength"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetFearStrength, InDistance) == 0x000000, "Member 'WrestlerFearEmitterComponent_GetFearStrength::InDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetFearStrength, ReturnValue) == 0x000004, "Member 'WrestlerFearEmitterComponent_GetFearStrength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_GetFearTypeTag \ +static_assert(alignof(WrestlerFearEmitterComponent_GetFearTypeTag) == 0x000004, "Wrong alignment on WrestlerFearEmitterComponent_GetFearTypeTag"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_GetFearTypeTag) == 0x000008, "Wrong size on WrestlerFearEmitterComponent_GetFearTypeTag"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetFearTypeTag, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterComponent_GetFearTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_GetInstigator \ +static_assert(alignof(WrestlerFearEmitterComponent_GetInstigator) == 0x000008, "Wrong alignment on WrestlerFearEmitterComponent_GetInstigator"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_GetInstigator) == 0x000008, "Wrong size on WrestlerFearEmitterComponent_GetInstigator"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_GetInstigator, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterComponent_GetInstigator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFearEmitterComponent_IsEmitting \ +static_assert(alignof(WrestlerFearEmitterComponent_IsEmitting) == 0x000001, "Wrong alignment on WrestlerFearEmitterComponent_IsEmitting"); \ +static_assert(sizeof(WrestlerFearEmitterComponent_IsEmitting) == 0x000001, "Wrong size on WrestlerFearEmitterComponent_IsEmitting"); \ +static_assert(offsetof(WrestlerFearEmitterComponent_IsEmitting, ReturnValue) == 0x000000, "Member 'WrestlerFearEmitterComponent_IsEmitting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFearEmitterComponent \ +static_assert(alignof(UWrestlerFearEmitterComponent) == 0x000008, "Wrong alignment on UWrestlerFearEmitterComponent"); \ +static_assert(sizeof(UWrestlerFearEmitterComponent) == 0x000160, "Wrong size on UWrestlerFearEmitterComponent"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, bShowDebug) == 0x0000A0, "Member 'UWrestlerFearEmitterComponent::bShowDebug' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearMaxRange) == 0x0000A4, "Member 'UWrestlerFearEmitterComponent::FearMaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearAnnotationRange) == 0x0000A8, "Member 'UWrestlerFearEmitterComponent::FearAnnotationRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearStrengthCurve) == 0x0000B0, "Member 'UWrestlerFearEmitterComponent::FearStrengthCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, Emitting) == 0x000138, "Member 'UWrestlerFearEmitterComponent::Emitting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, EmissionTimer) == 0x00013C, "Member 'UWrestlerFearEmitterComponent::EmissionTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearStrengthMultiplier) == 0x000140, "Member 'UWrestlerFearEmitterComponent::FearStrengthMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearInstigator) == 0x000148, "Member 'UWrestlerFearEmitterComponent::FearInstigator' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFearEmitterComponent, FearTypeTag) == 0x000150, "Member 'UWrestlerFearEmitterComponent::FearTypeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_UseAbility \ +static_assert(alignof(UWrestlerStateTreeTask_UseAbility) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_UseAbility"); \ +static_assert(sizeof(UWrestlerStateTreeTask_UseAbility) == 0x000060, "Wrong size on UWrestlerStateTreeTask_UseAbility"); \ +static_assert(offsetof(UWrestlerStateTreeTask_UseAbility, AbilityTag) == 0x000048, "Member 'UWrestlerStateTreeTask_UseAbility::AbilityTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_UseAbility, Target) == 0x000050, "Member 'UWrestlerStateTreeTask_UseAbility::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFeedTargetActor_GetFilterInterface \ +static_assert(alignof(WrestlerFeedTargetActor_GetFilterInterface) == 0x000008, "Wrong alignment on WrestlerFeedTargetActor_GetFilterInterface"); \ +static_assert(sizeof(WrestlerFeedTargetActor_GetFilterInterface) == 0x000008, "Wrong size on WrestlerFeedTargetActor_GetFilterInterface"); \ +static_assert(offsetof(WrestlerFeedTargetActor_GetFilterInterface, ReturnValue) == 0x000000, "Member 'WrestlerFeedTargetActor_GetFilterInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerFeedTargetActor \ +static_assert(alignof(AWrestlerFeedTargetActor) == 0x000010, "Wrong alignment on AWrestlerFeedTargetActor"); \ +static_assert(sizeof(AWrestlerFeedTargetActor) == 0x0004A0, "Wrong size on AWrestlerFeedTargetActor"); \ +static_assert(offsetof(AWrestlerFeedTargetActor, TargetFilterOutTags) == 0x000450, "Member 'AWrestlerFeedTargetActor::TargetFilterOutTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerFeedTargetActor, TargetFilterInTags) == 0x000470, "Member 'AWrestlerFeedTargetActor::TargetFilterInTags' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerFeedTargetActor, VerticalRangeAbove) == 0x000490, "Member 'AWrestlerFeedTargetActor::VerticalRangeAbove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt) == 0x000008, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt) == 0x000008, "Wrong size on WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt, InConfirmButton) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_OnCanceledOnPrompt::InConfirmButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt) == 0x000008, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt) == 0x000008, "Wrong size on WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt, InConfirmButton) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_OnConfirmedOnPrompt::InConfirmButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived) == 0x000001, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived) == 0x000001, "Wrong size on WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived, bWasAffirmative) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_OnExitToDesktopConfirmationReceived::bWasAffirmative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived) == 0x000001, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived) == 0x000001, "Wrong size on WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived, bWasAffirmative) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_OnExitToMainMenuConfirmationReceived::bWasAffirmative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived) == 0x000001, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived) == 0x000001, "Wrong size on WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived, bWasAffirmative) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_OnLoadOrSaveConfirmationReceived::bWasAffirmative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt \ +static_assert(alignof(WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt) == 0x000001, "Wrong alignment on WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt"); \ +static_assert(sizeof(WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt) == 0x000001, "Wrong size on WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt"); \ +static_assert(offsetof(WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt, InConfirmationType) == 0x000000, "Member 'WrestlerFilesRPGMenuTabWidget_ShowConfirmationPrompt::InConfirmationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFilesRPGMenuTabWidget \ +static_assert(alignof(UWrestlerFilesRPGMenuTabWidget) == 0x000008, "Wrong alignment on UWrestlerFilesRPGMenuTabWidget"); \ +static_assert(sizeof(UWrestlerFilesRPGMenuTabWidget) == 0x000318, "Wrong size on UWrestlerFilesRPGMenuTabWidget"); \ +static_assert(offsetof(UWrestlerFilesRPGMenuTabWidget, ConfirmationPromptClass) == 0x000300, "Member 'UWrestlerFilesRPGMenuTabWidget::ConfirmationPromptClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFilesRPGMenuTabWidget, ConfirmationPrompt) == 0x000308, "Member 'UWrestlerFilesRPGMenuTabWidget::ConfirmationPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassStatsTrait \ +static_assert(alignof(UWrestlerMassStatsTrait) == 0x000008, "Wrong alignment on UWrestlerMassStatsTrait"); \ +static_assert(sizeof(UWrestlerMassStatsTrait) == 0x000030, "Wrong size on UWrestlerMassStatsTrait"); \ +static_assert(offsetof(UWrestlerMassStatsTrait, MaxHealth) == 0x000028, "Member 'UWrestlerMassStatsTrait::MaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFindPatrolPointTask \ +static_assert(alignof(UWrestlerFindPatrolPointTask) == 0x000008, "Wrong alignment on UWrestlerFindPatrolPointTask"); \ +static_assert(sizeof(UWrestlerFindPatrolPointTask) == 0x0000A0, "Wrong size on UWrestlerFindPatrolPointTask"); \ +static_assert(offsetof(UWrestlerFindPatrolPointTask, OwnerController) == 0x000070, "Member 'UWrestlerFindPatrolPointTask::OwnerController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFindPatrolPointTask, BBKeyNextPatrolPoint) == 0x000078, "Member 'UWrestlerFindPatrolPointTask::BBKeyNextPatrolPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFocusConfig \ +static_assert(alignof(UWrestlerFocusConfig) == 0x000008, "Wrong alignment on UWrestlerFocusConfig"); \ +static_assert(sizeof(UWrestlerFocusConfig) == 0x000088, "Wrong size on UWrestlerFocusConfig"); \ +static_assert(offsetof(UWrestlerFocusConfig, DefaultFocus) == 0x000030, "Member 'UWrestlerFocusConfig::DefaultFocus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFocusConfig, StateMap) == 0x000038, "Member 'UWrestlerFocusConfig::StateMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbilityData \ +static_assert(alignof(UWrestlerGameplayAbilityData) == 0x000008, "Wrong alignment on UWrestlerGameplayAbilityData"); \ +static_assert(sizeof(UWrestlerGameplayAbilityData) == 0x000040, "Wrong size on UWrestlerGameplayAbilityData"); \ +static_assert(offsetof(UWrestlerGameplayAbilityData, GameplayCues) == 0x000030, "Member 'UWrestlerGameplayAbilityData::GameplayCues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone \ +static_assert(alignof(WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone) == 0x000001, "Wrong alignment on WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone"); \ +static_assert(sizeof(WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone) == 0x000001, "Wrong size on WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone"); \ +static_assert(offsetof(WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbilityStatusChaos_AmIAwareOfAnyone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe \ +static_assert(alignof(WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe) == 0x000001, "Wrong alignment on WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe"); \ +static_assert(sizeof(WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe) == 0x000001, "Wrong size on WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe"); \ +static_assert(offsetof(WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbilityStatusChaos_IsAnyoneAwareOfMe::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbilityStatusChaos \ +static_assert(alignof(UWrestlerGameplayAbilityStatusChaos) == 0x000008, "Wrong alignment on UWrestlerGameplayAbilityStatusChaos"); \ +static_assert(sizeof(UWrestlerGameplayAbilityStatusChaos) == 0x000668, "Wrong size on UWrestlerGameplayAbilityStatusChaos"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbilitySystemSettings \ +static_assert(alignof(UWrestlerGameplayAbilitySystemSettings) == 0x000008, "Wrong alignment on UWrestlerGameplayAbilitySystemSettings"); \ +static_assert(sizeof(UWrestlerGameplayAbilitySystemSettings) == 0x000050, "Wrong size on UWrestlerGameplayAbilitySystemSettings"); \ +static_assert(offsetof(UWrestlerGameplayAbilitySystemSettings, AbilitiesDataAssetsToPreLoad) == 0x000038, "Member 'UWrestlerGameplayAbilitySystemSettings::AbilitiesDataAssetsToPreLoad' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbilitySystemSettings, InDialogueTag) == 0x000048, "Member 'UWrestlerGameplayAbilitySystemSettings::InDialogueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint \ +static_assert(alignof(WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint) == 0x000008, "Wrong alignment on WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint"); \ +static_assert(sizeof(WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint) == 0x000020, "Wrong size on WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint"); \ +static_assert(offsetof(WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint, OutViewPoint) == 0x000000, "Member 'WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint::OutViewPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint, ReturnValue) == 0x000018, "Member 'WrestlerGameplayAbilityTargetActor_SphereTarget_GetPlayerLookAtPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_SphereTarget \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_SphereTarget) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_SphereTarget"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_SphereTarget) == 0x0003F0, "Wrong size on AWrestlerGameplayAbilityTargetActor_SphereTarget"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTarget, OverlapRadius) == 0x0003E8, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTarget::OverlapRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTarget, QueryChannel) == 0x0003EC, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTarget::QueryChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_SphereTrace \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_SphereTrace) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_SphereTrace"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_SphereTrace) == 0x000410, "Wrong size on AWrestlerGameplayAbilityTargetActor_SphereTrace"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, Radius) == 0x0003F8, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::Radius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, bTraceByChannel) == 0x0003FC, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::bTraceByChannel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, bReticleUseEyeLocation) == 0x0003FD, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::bReticleUseEyeLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, bPitchRangeReduction) == 0x0003FE, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::bPitchRangeReduction' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, PitchedRange) == 0x000400, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::PitchedRange' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameplayAbilityTargetActor_SphereTrace, Channel) == 0x000408, "Member 'AWrestlerGameplayAbilityTargetActor_SphereTrace::Channel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_OnCanceledPrompt \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_OnCanceledPrompt) == 0x000001, "Wrong alignment on WrestlerSaveSlotContainerWidget_OnCanceledPrompt"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_OnCanceledPrompt) == 0x000001, "Wrong size on WrestlerSaveSlotContainerWidget_OnCanceledPrompt"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_OnCanceledPrompt, ReturnValue) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_OnCanceledPrompt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_OnSaveSlotClicked \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_OnSaveSlotClicked) == 0x000008, "Wrong alignment on WrestlerSaveSlotContainerWidget_OnSaveSlotClicked"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_OnSaveSlotClicked) == 0x000008, "Wrong size on WrestlerSaveSlotContainerWidget_OnSaveSlotClicked"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_OnSaveSlotClicked, InSaveSlotWidget) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_OnSaveSlotClicked::InSaveSlotWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_OnSaveSlotFocused \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_OnSaveSlotFocused) == 0x000008, "Wrong alignment on WrestlerSaveSlotContainerWidget_OnSaveSlotFocused"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_OnSaveSlotFocused) == 0x000008, "Wrong size on WrestlerSaveSlotContainerWidget_OnSaveSlotFocused"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_OnSaveSlotFocused, InSaveSlotWidget) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_OnSaveSlotFocused::InSaveSlotWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked) == 0x000008, "Wrong alignment on WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked) == 0x000008, "Wrong size on WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked, InClickedSlot) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetClicked::InClickedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused) == 0x000008, "Wrong alignment on WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused) == 0x000008, "Wrong size on WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused, InFocusedSlot) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_OnSaveSlotWidgetFocused::InFocusedSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_SetContainerMode \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_SetContainerMode) == 0x000001, "Wrong alignment on WrestlerSaveSlotContainerWidget_SetContainerMode"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_SetContainerMode) == 0x000001, "Wrong size on WrestlerSaveSlotContainerWidget_SetContainerMode"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_SetContainerMode, InNewMode) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_SetContainerMode::InNewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSlotContainerWidget_GetContainerMode \ +static_assert(alignof(WrestlerSaveSlotContainerWidget_GetContainerMode) == 0x000001, "Wrong alignment on WrestlerSaveSlotContainerWidget_GetContainerMode"); \ +static_assert(sizeof(WrestlerSaveSlotContainerWidget_GetContainerMode) == 0x000001, "Wrong size on WrestlerSaveSlotContainerWidget_GetContainerMode"); \ +static_assert(offsetof(WrestlerSaveSlotContainerWidget_GetContainerMode, ReturnValue) == 0x000000, "Member 'WrestlerSaveSlotContainerWidget_GetContainerMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveSlotContainerWidget \ +static_assert(alignof(UWrestlerSaveSlotContainerWidget) == 0x000008, "Wrong alignment on UWrestlerSaveSlotContainerWidget"); \ +static_assert(sizeof(UWrestlerSaveSlotContainerWidget) == 0x000528, "Wrong size on UWrestlerSaveSlotContainerWidget"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, SaveSlotWidgetClass) == 0x000450, "Member 'UWrestlerSaveSlotContainerWidget::SaveSlotWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, SavedDataPrompt) == 0x000458, "Member 'UWrestlerSaveSlotContainerWidget::SavedDataPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, OnConfirmationPromptRequired) == 0x000460, "Member 'UWrestlerSaveSlotContainerWidget::OnConfirmationPromptRequired' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, ScrollBox) == 0x000470, "Member 'UWrestlerSaveSlotContainerWidget::ScrollBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, CurrentlyFocusedSlot) == 0x000478, "Member 'UWrestlerSaveSlotContainerWidget::CurrentlyFocusedSlot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, DeleteInputActionData) == 0x000480, "Member 'UWrestlerSaveSlotContainerWidget::DeleteInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, ConfirmActionData) == 0x000490, "Member 'UWrestlerSaveSlotContainerWidget::ConfirmActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, OnSlotsEmptyEvent) == 0x0004A0, "Member 'UWrestlerSaveSlotContainerWidget::OnSlotsEmptyEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, SaveSlots) == 0x0004C0, "Member 'UWrestlerSaveSlotContainerWidget::SaveSlots' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSlotContainerWidget, SaveSlotAndPromptData) == 0x0004D0, "Member 'UWrestlerSaveSlotContainerWidget::SaveSlotAndPromptData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayAbilityTargetActor_Telekinesis \ +static_assert(alignof(AWrestlerGameplayAbilityTargetActor_Telekinesis) == 0x000010, "Wrong alignment on AWrestlerGameplayAbilityTargetActor_Telekinesis"); \ +static_assert(sizeof(AWrestlerGameplayAbilityTargetActor_Telekinesis) == 0x000450, "Wrong size on AWrestlerGameplayAbilityTargetActor_Telekinesis"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor \ +static_assert(alignof(WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor"); \ +static_assert(sizeof(WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor) == 0x000008, "Wrong size on WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor, InTriggerActor) == 0x000000, "Member 'WrestlerGameplayAbility_ArachnesKiss_BP_InitializeDeadBodyTriggerActor::InTriggerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled \ +static_assert(alignof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled"); \ +static_assert(sizeof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetCancelled::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished \ +static_assert(alignof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished"); \ +static_assert(sizeof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished) == 0x000020, "Wrong size on WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished, bInDestinationReached) == 0x000000, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished::bInDestinationReached' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished, bInTimedOut) == 0x000001, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished::bInTimedOut' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished, InFinalTargetLocation) == 0x000008, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnMoveToTargetFinished::InFinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded \ +static_assert(alignof(WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded"); \ +static_assert(sizeof(WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded) == 0x0000E8, "Wrong size on WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded, InHit) == 0x000000, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnPlayerLanded::InHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath \ +static_assert(alignof(WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath"); \ +static_assert(sizeof(WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath) == 0x000008, "Wrong size on WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath"); \ +static_assert(offsetof(WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath, InDeadActor) == 0x000000, "Member 'WrestlerGameplayAbility_ArachnesKiss_OnTargetDeath::InDeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_ArachnesKiss \ +static_assert(alignof(UWrestlerGameplayAbility_ArachnesKiss) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_ArachnesKiss"); \ +static_assert(sizeof(UWrestlerGameplayAbility_ArachnesKiss) == 0x000780, "Wrong size on UWrestlerGameplayAbility_ArachnesKiss"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, EventTagTargetActivate) == 0x000668, "Member 'UWrestlerGameplayAbility_ArachnesKiss::EventTagTargetActivate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, EventTagInsectDeployment) == 0x000670, "Member 'UWrestlerGameplayAbility_ArachnesKiss::EventTagInsectDeployment' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, EventTagExplosionHit) == 0x000678, "Member 'UWrestlerGameplayAbility_ArachnesKiss::EventTagExplosionHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, InfestationLoudness) == 0x000680, "Member 'UWrestlerGameplayAbility_ArachnesKiss::InfestationLoudness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, ProximityTriggeringRadius) == 0x000688, "Member 'UWrestlerGameplayAbility_ArachnesKiss::ProximityTriggeringRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, ExplosionRadius) == 0x000690, "Member 'UWrestlerGameplayAbility_ArachnesKiss::ExplosionRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, InsectDeploymentReactionTag) == 0x000698, "Member 'UWrestlerGameplayAbility_ArachnesKiss::InsectDeploymentReactionTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, MoveToData) == 0x0006A0, "Member 'UWrestlerGameplayAbility_ArachnesKiss::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, bUseTargetEyeLocationForLookAt) == 0x000728, "Member 'UWrestlerGameplayAbility_ArachnesKiss::bUseTargetEyeLocationForLookAt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, bUsePitchForLookAt) == 0x000729, "Member 'UWrestlerGameplayAbility_ArachnesKiss::bUsePitchForLookAt' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, LookAtStrength) == 0x00072C, "Member 'UWrestlerGameplayAbility_ArachnesKiss::LookAtStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, DeadBodyTriggerActorClass) == 0x000730, "Member 'UWrestlerGameplayAbility_ArachnesKiss::DeadBodyTriggerActorClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, DeadBodyTriggerAttachSocketName) == 0x000738, "Member 'UWrestlerGameplayAbility_ArachnesKiss::DeadBodyTriggerAttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ArachnesKiss, TargetActor) == 0x000740, "Member 'UWrestlerGameplayAbility_ArachnesKiss::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor \ +static_assert(alignof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor) == 0x000010, "Wrong alignment on WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor"); \ +static_assert(sizeof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor) == 0x000080, "Wrong size on WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor"); \ +static_assert(offsetof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor, WorldContextObject) == 0x000000, "Member 'WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor, ActorTemplate) == 0x000008, "Member 'WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor::ActorTemplate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor, Transform) == 0x000010, "Member 'WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor::Transform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor, ReturnValue) == 0x000070, "Member 'WrestlerMassAISmartObjectBlueprintUtils_SpawnSmartObjectActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAISmartObjectBlueprintUtils \ +static_assert(alignof(UWrestlerMassAISmartObjectBlueprintUtils) == 0x000008, "Wrong alignment on UWrestlerMassAISmartObjectBlueprintUtils"); \ +static_assert(sizeof(UWrestlerMassAISmartObjectBlueprintUtils) == 0x000028, "Wrong size on UWrestlerMassAISmartObjectBlueprintUtils"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget \ +static_assert(alignof(WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget) == 0x0000B0, "Wrong size on WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget, InEventData) == 0x000000, "Member 'WrestlerGameplayAbility_EarthShock_ApplyHitOnTarget::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_EarthShock \ +static_assert(alignof(UWrestlerGameplayAbility_EarthShock) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_EarthShock"); \ +static_assert(sizeof(UWrestlerGameplayAbility_EarthShock) == 0x000730, "Wrong size on UWrestlerGameplayAbility_EarthShock"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, AbilityMontageEventTags) == 0x000668, "Member 'UWrestlerGameplayAbility_EarthShock::AbilityMontageEventTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, AbilityMontageStartSectionName) == 0x000688, "Member 'UWrestlerGameplayAbility_EarthShock::AbilityMontageStartSectionName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, EventTagExecute) == 0x000690, "Member 'UWrestlerGameplayAbility_EarthShock::EventTagExecute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, EventTagHit) == 0x000698, "Member 'UWrestlerGameplayAbility_EarthShock::EventTagHit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, EarthShockRadius) == 0x0006A0, "Member 'UWrestlerGameplayAbility_EarthShock::EarthShockRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, HitImpulseParams) == 0x0006A8, "Member 'UWrestlerGameplayAbility_EarthShock::HitImpulseParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, EventsToSendToTargets) == 0x0006F8, "Member 'UWrestlerGameplayAbility_EarthShock::EventsToSendToTargets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, FearEmissionDuration) == 0x000718, "Member 'UWrestlerGameplayAbility_EarthShock::FearEmissionDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EarthShock, FearEmissionStrength) == 0x00071C, "Member 'UWrestlerGameplayAbility_EarthShock::FearEmissionStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWorldMapWidget \ +static_assert(alignof(UWrestlerWorldMapWidget) == 0x000008, "Wrong alignment on UWrestlerWorldMapWidget"); \ +static_assert(sizeof(UWrestlerWorldMapWidget) == 0x000400, "Wrong size on UWrestlerWorldMapWidget"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_EnemyAttackSelector \ +static_assert(alignof(UWrestlerGameplayAbility_EnemyAttackSelector) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_EnemyAttackSelector"); \ +static_assert(sizeof(UWrestlerGameplayAbility_EnemyAttackSelector) == 0x000690, "Wrong size on UWrestlerGameplayAbility_EnemyAttackSelector"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyAttackSelector, AttackAbilities) == 0x000668, "Member 'UWrestlerGameplayAbility_EnemyAttackSelector::AttackAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyAttackSelector, RandomWeight) == 0x000678, "Member 'UWrestlerGameplayAbility_EnemyAttackSelector::RandomWeight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyAttackSelector, WeighedAttackAbilities) == 0x000680, "Member 'UWrestlerGameplayAbility_EnemyAttackSelector::WeighedAttackAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassSpawner_OnMissionTypeChanged \ +static_assert(alignof(WrestlerMassSpawner_OnMissionTypeChanged) == 0x000001, "Wrong alignment on WrestlerMassSpawner_OnMissionTypeChanged"); \ +static_assert(sizeof(WrestlerMassSpawner_OnMissionTypeChanged) == 0x000001, "Wrong size on WrestlerMassSpawner_OnMissionTypeChanged"); \ +static_assert(offsetof(WrestlerMassSpawner_OnMissionTypeChanged, CurrentMissionType) == 0x000000, "Member 'WrestlerMassSpawner_OnMissionTypeChanged::CurrentMissionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassSpawner \ +static_assert(alignof(AWrestlerMassSpawner) == 0x000008, "Wrong alignment on AWrestlerMassSpawner"); \ +static_assert(sizeof(AWrestlerMassSpawner) == 0x000358, "Wrong size on AWrestlerMassSpawner"); \ +static_assert(offsetof(AWrestlerMassSpawner, SpawnerData) == 0x000340, "Member 'AWrestlerMassSpawner::SpawnerData' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassSpawner, Type) == 0x000350, "Member 'AWrestlerMassSpawner::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_EnemyClimb_EndVault \ +static_assert(alignof(WrestlerGameplayAbility_EnemyClimb_EndVault) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_EnemyClimb_EndVault"); \ +static_assert(sizeof(WrestlerGameplayAbility_EnemyClimb_EndVault) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_EnemyClimb_EndVault"); \ +static_assert(offsetof(WrestlerGameplayAbility_EnemyClimb_EndVault, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_EnemyClimb_EndVault::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_EnemyClimb_EndVault, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_EnemyClimb_EndVault::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_EnemyClimb \ +static_assert(alignof(UWrestlerGameplayAbility_EnemyClimb) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_EnemyClimb"); \ +static_assert(sizeof(UWrestlerGameplayAbility_EnemyClimb) == 0x0006C8, "Wrong size on UWrestlerGameplayAbility_EnemyClimb"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, ClimbStartLocation) == 0x000668, "Member 'UWrestlerGameplayAbility_EnemyClimb::ClimbStartLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, ClimbMontage) == 0x000680, "Member 'UWrestlerGameplayAbility_EnemyClimb::ClimbMontage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, VaultMontage) == 0x000688, "Member 'UWrestlerGameplayAbility_EnemyClimb::VaultMontage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, OwningCharacter) == 0x000690, "Member 'UWrestlerGameplayAbility_EnemyClimb::OwningCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, StartPosition) == 0x000698, "Member 'UWrestlerGameplayAbility_EnemyClimb::StartPosition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_EnemyClimb, EndPosition) == 0x0006B0, "Member 'UWrestlerGameplayAbility_EnemyClimb::EndPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_FireInTheBlood_OnOverlap \ +static_assert(alignof(WrestlerGameplayAbility_FireInTheBlood_OnOverlap) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_FireInTheBlood_OnOverlap"); \ +static_assert(sizeof(WrestlerGameplayAbility_FireInTheBlood_OnOverlap) == 0x000008, "Wrong size on WrestlerGameplayAbility_FireInTheBlood_OnOverlap"); \ +static_assert(offsetof(WrestlerGameplayAbility_FireInTheBlood_OnOverlap, OtherActor) == 0x000000, "Member 'WrestlerGameplayAbility_FireInTheBlood_OnOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_FireInTheBlood \ +static_assert(alignof(UWrestlerGameplayAbility_FireInTheBlood) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_FireInTheBlood"); \ +static_assert(sizeof(UWrestlerGameplayAbility_FireInTheBlood) == 0x0006D8, "Wrong size on UWrestlerGameplayAbility_FireInTheBlood"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, MontageToPlay) == 0x000668, "Member 'UWrestlerGameplayAbility_FireInTheBlood::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, MontageTagWaitingFor) == 0x000670, "Member 'UWrestlerGameplayAbility_FireInTheBlood::MontageTagWaitingFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, StartSection) == 0x000690, "Member 'UWrestlerGameplayAbility_FireInTheBlood::StartSection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, DecoratorEvent) == 0x000698, "Member 'UWrestlerGameplayAbility_FireInTheBlood::DecoratorEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, ObjectProfile) == 0x0006A0, "Member 'UWrestlerGameplayAbility_FireInTheBlood::ObjectProfile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, Lifetime) == 0x0006A8, "Member 'UWrestlerGameplayAbility_FireInTheBlood::Lifetime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, EnlargeTime) == 0x0006AC, "Member 'UWrestlerGameplayAbility_FireInTheBlood::EnlargeTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, Radius) == 0x0006B0, "Member 'UWrestlerGameplayAbility_FireInTheBlood::Radius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, EventTagTargetOverlappedActor) == 0x0006B4, "Member 'UWrestlerGameplayAbility_FireInTheBlood::EventTagTargetOverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, EventTagTargetOverlappedActorEndAbility) == 0x0006BC, "Member 'UWrestlerGameplayAbility_FireInTheBlood::EventTagTargetOverlappedActorEndAbility' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_FireInTheBlood, OverlappedActors) == 0x0006C8, "Member 'UWrestlerGameplayAbility_FireInTheBlood::OverlappedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectiveEntryObject \ +static_assert(alignof(UObjectiveEntryObject) == 0x000008, "Wrong alignment on UObjectiveEntryObject"); \ +static_assert(sizeof(UObjectiveEntryObject) == 0x000048, "Wrong size on UObjectiveEntryObject"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_HitTarget_ApplyHit \ +static_assert(alignof(WrestlerGameplayAbility_HitTarget_ApplyHit) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_HitTarget_ApplyHit"); \ +static_assert(sizeof(WrestlerGameplayAbility_HitTarget_ApplyHit) == 0x0000C0, "Wrong size on WrestlerGameplayAbility_HitTarget_ApplyHit"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_ApplyHit, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_HitTarget_ApplyHit::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_ApplyHit, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_HitTarget_ApplyHit::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_ApplyHit, InAudioMagnitude) == 0x0000B8, "Member 'WrestlerGameplayAbility_HitTarget_ApplyHit::InAudioMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_HitTarget_BP_OnHitTarget \ +static_assert(alignof(WrestlerGameplayAbility_HitTarget_BP_OnHitTarget) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_HitTarget_BP_OnHitTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_HitTarget_BP_OnHitTarget) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_HitTarget_BP_OnHitTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_BP_OnHitTarget, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_HitTarget_BP_OnHitTarget::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_BP_OnHitTarget, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_HitTarget_BP_OnHitTarget::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits \ +static_assert(alignof(WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits"); \ +static_assert(sizeof(WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits, InEventData) == 0x000000, "Member 'WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits, InAudioMagnitude) == 0x0000B0, "Member 'WrestlerGameplayAbility_HitTarget_DoExecuteGameplayCueForAllHits::InAudioMagnitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_HitTarget_HitTarget \ +static_assert(alignof(WrestlerGameplayAbility_HitTarget_HitTarget) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_HitTarget_HitTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_HitTarget_HitTarget) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_HitTarget_HitTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_HitTarget, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_HitTarget_HitTarget::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_HitTarget_HitTarget, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_HitTarget_HitTarget::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_HitTarget \ +static_assert(alignof(UWrestlerGameplayAbility_HitTarget) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_HitTarget"); \ +static_assert(sizeof(UWrestlerGameplayAbility_HitTarget) == 0x000678, "Wrong size on UWrestlerGameplayAbility_HitTarget"); \ +static_assert(offsetof(UWrestlerGameplayAbility_HitTarget, StrikeDamageData) == 0x000668, "Member 'UWrestlerGameplayAbility_HitTarget::StrikeDamageData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_HitTarget, bIsHitFreezeDisabled) == 0x000670, "Member 'UWrestlerGameplayAbility_HitTarget::bIsHitFreezeDisabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_HitTarget, bIsHitAppliedFromBluePrint) == 0x000671, "Member 'UWrestlerGameplayAbility_HitTarget::bIsHitAppliedFromBluePrint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess) == 0x000004, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess, InElapsedTime) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnCancelCueProcess::InElapsedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnMontageComplete \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnMontageComplete) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnMontageComplete"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnMontageComplete) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnMontageComplete"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMontageComplete, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnMontageComplete::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMontageComplete, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_OnMontageComplete::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_OnMontageEventReceived::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_OnMoveToTargetCancel::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete) == 0x000020, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete, bReachedDestination) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete::bReachedDestination' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete, bHasTimedOut) == 0x000001, "Member 'WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete::bHasTimedOut' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete, InTargetLocation) == 0x000008, "Member 'WrestlerGameplayAbility_LightningStrike_OnMoveToTargetComplete::InTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnTargetDataReady \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnTargetDataReady) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnTargetDataReady"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnTargetDataReady) == 0x000028, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnTargetDataReady"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnTargetDataReady, InTargetDataHandle) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnTargetDataReady::InTargetDataHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_LightningStrike_OnTriggerRelease \ +static_assert(alignof(WrestlerGameplayAbility_LightningStrike_OnTriggerRelease) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_LightningStrike_OnTriggerRelease"); \ +static_assert(sizeof(WrestlerGameplayAbility_LightningStrike_OnTriggerRelease) == 0x000004, "Wrong size on WrestlerGameplayAbility_LightningStrike_OnTriggerRelease"); \ +static_assert(offsetof(WrestlerGameplayAbility_LightningStrike_OnTriggerRelease, InElapsedTime) == 0x000000, "Member 'WrestlerGameplayAbility_LightningStrike_OnTriggerRelease::InElapsedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_LightningStrike \ +static_assert(alignof(UWrestlerGameplayAbility_LightningStrike) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_LightningStrike"); \ +static_assert(sizeof(UWrestlerGameplayAbility_LightningStrike) == 0x0008C8, "Wrong size on UWrestlerGameplayAbility_LightningStrike"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TestAbilityLevel) == 0x000668, "Member 'UWrestlerGameplayAbility_LightningStrike::TestAbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, FearDuration) == 0x00066C, "Member 'UWrestlerGameplayAbility_LightningStrike::FearDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, FearStrength) == 0x000670, "Member 'UWrestlerGameplayAbility_LightningStrike::FearStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, LevelConfig) == 0x000678, "Member 'UWrestlerGameplayAbility_LightningStrike::LevelConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, LeftStrikeTag) == 0x000680, "Member 'UWrestlerGameplayAbility_LightningStrike::LeftStrikeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, RightStrikeTag) == 0x000688, "Member 'UWrestlerGameplayAbility_LightningStrike::RightStrikeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, LeftFlinchReactionEventTag) == 0x000690, "Member 'UWrestlerGameplayAbility_LightningStrike::LeftFlinchReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, RightFlinchReactionEventTag) == 0x000698, "Member 'UWrestlerGameplayAbility_LightningStrike::RightFlinchReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, MoveToData) == 0x0006A0, "Member 'UWrestlerGameplayAbility_LightningStrike::MoveToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, JumpToData) == 0x000728, "Member 'UWrestlerGameplayAbility_LightningStrike::JumpToData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TargetAssistData) == 0x0007B0, "Member 'UWrestlerGameplayAbility_LightningStrike::TargetAssistData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TriggerReleaseCueToWaitFor) == 0x0007B8, "Member 'UWrestlerGameplayAbility_LightningStrike::TriggerReleaseCueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, CancelCueToWaitFor) == 0x0007C0, "Member 'UWrestlerGameplayAbility_LightningStrike::CancelCueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, DamageEffect) == 0x0007C8, "Member 'UWrestlerGameplayAbility_LightningStrike::DamageEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, DamageDataTag) == 0x0007D0, "Member 'UWrestlerGameplayAbility_LightningStrike::DamageDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, StunDataTag) == 0x0007D8, "Member 'UWrestlerGameplayAbility_LightningStrike::StunDataTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, DisableMoveEffect) == 0x0007E0, "Member 'UWrestlerGameplayAbility_LightningStrike::DisableMoveEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, MasqueradeEffect) == 0x0007E8, "Member 'UWrestlerGameplayAbility_LightningStrike::MasqueradeEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, ChargeEffect) == 0x0007F0, "Member 'UWrestlerGameplayAbility_LightningStrike::ChargeEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, MoveToEffect) == 0x0007F8, "Member 'UWrestlerGameplayAbility_LightningStrike::MoveToEffect' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, HealthAttribute) == 0x000800, "Member 'UWrestlerGameplayAbility_LightningStrike::HealthAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TargetData) == 0x000868, "Member 'UWrestlerGameplayAbility_LightningStrike::TargetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TargetActor) == 0x000870, "Member 'UWrestlerGameplayAbility_LightningStrike::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TargetDataHandle) == 0x000878, "Member 'UWrestlerGameplayAbility_LightningStrike::TargetDataHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, TargetAssistAndConfirm) == 0x0008A0, "Member 'UWrestlerGameplayAbility_LightningStrike::TargetAssistAndConfirm' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, PlayMontageAndWait) == 0x0008A8, "Member 'UWrestlerGameplayAbility_LightningStrike::PlayMontageAndWait' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, HealthChangeTask) == 0x0008B0, "Member 'UWrestlerGameplayAbility_LightningStrike::HealthChangeTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, ChargeEffectHandle) == 0x0008B8, "Member 'UWrestlerGameplayAbility_LightningStrike::ChargeEffectHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_LightningStrike, MoveToEffectHandle) == 0x0008C0, "Member 'UWrestlerGameplayAbility_LightningStrike::MoveToEffectHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Mesmerize_OnSkillCancel \ +static_assert(alignof(WrestlerGameplayAbility_Mesmerize_OnSkillCancel) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Mesmerize_OnSkillCancel"); \ +static_assert(sizeof(WrestlerGameplayAbility_Mesmerize_OnSkillCancel) == 0x000004, "Wrong size on WrestlerGameplayAbility_Mesmerize_OnSkillCancel"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnSkillCancel, InWaitingTime) == 0x000000, "Member 'WrestlerGameplayAbility_Mesmerize_OnSkillCancel::InWaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Mesmerize_OnTargetDataReady \ +static_assert(alignof(WrestlerGameplayAbility_Mesmerize_OnTargetDataReady) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Mesmerize_OnTargetDataReady"); \ +static_assert(sizeof(WrestlerGameplayAbility_Mesmerize_OnTargetDataReady) == 0x000028, "Wrong size on WrestlerGameplayAbility_Mesmerize_OnTargetDataReady"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnTargetDataReady, InData) == 0x000000, "Member 'WrestlerGameplayAbility_Mesmerize_OnTargetDataReady::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Mesmerize_OnTranceCancel \ +static_assert(alignof(WrestlerGameplayAbility_Mesmerize_OnTranceCancel) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Mesmerize_OnTranceCancel"); \ +static_assert(sizeof(WrestlerGameplayAbility_Mesmerize_OnTranceCancel) == 0x0000B8, "Wrong size on WrestlerGameplayAbility_Mesmerize_OnTranceCancel"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnTranceCancel, InEventTag) == 0x000000, "Member 'WrestlerGameplayAbility_Mesmerize_OnTranceCancel::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnTranceCancel, InEventData) == 0x000008, "Member 'WrestlerGameplayAbility_Mesmerize_OnTranceCancel::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Mesmerize_OnTriggerPress \ +static_assert(alignof(WrestlerGameplayAbility_Mesmerize_OnTriggerPress) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Mesmerize_OnTriggerPress"); \ +static_assert(sizeof(WrestlerGameplayAbility_Mesmerize_OnTriggerPress) == 0x000004, "Wrong size on WrestlerGameplayAbility_Mesmerize_OnTriggerPress"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnTriggerPress, InWaitingTime) == 0x000000, "Member 'WrestlerGameplayAbility_Mesmerize_OnTriggerPress::InWaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Mesmerize_OnTriggerRelease \ +static_assert(alignof(WrestlerGameplayAbility_Mesmerize_OnTriggerRelease) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_Mesmerize_OnTriggerRelease"); \ +static_assert(sizeof(WrestlerGameplayAbility_Mesmerize_OnTriggerRelease) == 0x000004, "Wrong size on WrestlerGameplayAbility_Mesmerize_OnTriggerRelease"); \ +static_assert(offsetof(WrestlerGameplayAbility_Mesmerize_OnTriggerRelease, InWaitingTime) == 0x000000, "Member 'WrestlerGameplayAbility_Mesmerize_OnTriggerRelease::InWaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_Mesmerize \ +static_assert(alignof(UWrestlerGameplayAbility_Mesmerize) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_Mesmerize"); \ +static_assert(sizeof(UWrestlerGameplayAbility_Mesmerize) == 0x000708, "Wrong size on UWrestlerGameplayAbility_Mesmerize"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, SphereTraceTargetData) == 0x000668, "Member 'UWrestlerGameplayAbility_Mesmerize::SphereTraceTargetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, TriggerPressCueToWaitFor) == 0x000670, "Member 'UWrestlerGameplayAbility_Mesmerize::TriggerPressCueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, TriggerReleaseCueToWaitFor) == 0x000678, "Member 'UWrestlerGameplayAbility_Mesmerize::TriggerReleaseCueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, SkillCancelCueToWaitFor) == 0x000680, "Member 'UWrestlerGameplayAbility_Mesmerize::SkillCancelCueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, EffectToApplyOnTarget) == 0x000688, "Member 'UWrestlerGameplayAbility_Mesmerize::EffectToApplyOnTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, CueToApplyOnOwner) == 0x000690, "Member 'UWrestlerGameplayAbility_Mesmerize::CueToApplyOnOwner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Mesmerize, CurrentTargetActor) == 0x0006F0, "Member 'UWrestlerGameplayAbility_Mesmerize::CurrentTargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_AlignToTarget \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_AlignToTarget) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_AlignToTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_AlignToTarget) == 0x000008, "Wrong size on WrestlerGameplayAbility_PlayerPunch_AlignToTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_AlignToTarget, InTargetHeightOffset) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_AlignToTarget::InTargetHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_AlignToTarget, InAlphaStrength) == 0x000004, "Member 'WrestlerGameplayAbility_PlayerPunch_AlignToTarget::InAlphaStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_GetValidEventData \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_GetValidEventData"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData) == 0x000130, "Wrong size on WrestlerGameplayAbility_PlayerPunch_GetValidEventData"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InbMultiHit) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InbMultiHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InEnvironmentHitResult) == 0x000008, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InEnvironmentHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InEnemyHitResults) == 0x0000F0, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InEnemyHitResults' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InHitTag) == 0x000100, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InHitTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InbRightPunch) == 0x000108, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InbRightPunch' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InTraceOriginSocketName) == 0x00010C, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InTraceOriginSocketName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, InTraceDistance) == 0x000114, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::InTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, bInDebugDraw) == 0x000118, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::bInDebugDraw' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetValidEventData, ReturnValue) == 0x000120, "Member 'WrestlerGameplayAbility_PlayerPunch_GetValidEventData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd) == 0x0000B0, "Wrong size on WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd, Payload) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_OnFistHitEnd::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_OnFistHitStart \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_OnFistHitStart) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_OnFistHitStart"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_OnFistHitStart) == 0x0000B0, "Wrong size on WrestlerGameplayAbility_PlayerPunch_OnFistHitStart"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_OnFistHitStart, Payload) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_OnFistHitStart::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_GetPunchTarget \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_GetPunchTarget) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_GetPunchTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_GetPunchTarget) == 0x000008, "Wrong size on WrestlerGameplayAbility_PlayerPunch_GetPunchTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_GetPunchTarget, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_GetPunchTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits) == 0x000020, "Wrong size on WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits, InForwardDistance) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits::InForwardDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits, InHeightOffset) == 0x000004, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits::InHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits, InTraceRadius) == 0x000008, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits::InTraceRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits, InDrawDebugType) == 0x00000C, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits::InDrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits, ReturnValue) == 0x000010, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnemyHits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit \ +static_assert(alignof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit"); \ +static_assert(sizeof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit) == 0x0000F8, "Wrong size on WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit, InForwardDistance) == 0x000000, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit::InForwardDistance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit, InHeightOffset) == 0x000004, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit::InHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit, InRadius) == 0x000008, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit::InRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit, InDrawDebugType) == 0x00000C, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit::InDrawDebugType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit, ReturnValue) == 0x000010, "Member 'WrestlerGameplayAbility_PlayerPunch_TraceEnvironmentHit::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_PlayerPunch \ +static_assert(alignof(UWrestlerGameplayAbility_PlayerPunch) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_PlayerPunch"); \ +static_assert(sizeof(UWrestlerGameplayAbility_PlayerPunch) == 0x000690, "Wrong size on UWrestlerGameplayAbility_PlayerPunch"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PlayerPunch, FistHitStartEventTag) == 0x000668, "Member 'UWrestlerGameplayAbility_PlayerPunch::FistHitStartEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PlayerPunch, FistHitEndEventTag) == 0x000670, "Member 'UWrestlerGameplayAbility_PlayerPunch::FistHitEndEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PlayerPunch, PunchTarget) == 0x000678, "Member 'UWrestlerGameplayAbility_PlayerPunch::PunchTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PlayerPunch, LeftName) == 0x000680, "Member 'UWrestlerGameplayAbility_PlayerPunch::LeftName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_PlayerPunch, RightName) == 0x000688, "Member 'UWrestlerGameplayAbility_PlayerPunch::RightName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModularAIWeapon_GetCollisionComponents \ +static_assert(alignof(WrestlerModularAIWeapon_GetCollisionComponents) == 0x000008, "Wrong alignment on WrestlerModularAIWeapon_GetCollisionComponents"); \ +static_assert(sizeof(WrestlerModularAIWeapon_GetCollisionComponents) == 0x000018, "Wrong size on WrestlerModularAIWeapon_GetCollisionComponents"); \ +static_assert(offsetof(WrestlerModularAIWeapon_GetCollisionComponents, OutCollisionComponents) == 0x000000, "Member 'WrestlerModularAIWeapon_GetCollisionComponents::OutCollisionComponents' has a wrong offset!"); \ +static_assert(offsetof(WrestlerModularAIWeapon_GetCollisionComponents, InCollisionTag) == 0x000010, "Member 'WrestlerModularAIWeapon_GetCollisionComponents::InCollisionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerModularAIWeapon \ +static_assert(alignof(AWrestlerModularAIWeapon) == 0x000008, "Wrong alignment on AWrestlerModularAIWeapon"); \ +static_assert(sizeof(AWrestlerModularAIWeapon) == 0x000298, "Wrong size on AWrestlerModularAIWeapon"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle) == 0x000020, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle, TargetLocation) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle, ReturnValue) == 0x000018, "Member 'WrestlerGameplayAbility_RangedWeapon_GetMaxInaccuracyDegreeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation) == 0x000030, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation, TargetLocation) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation, ReturnValue) == 0x000018, "Member 'WrestlerGameplayAbility_RangedWeapon_GetProjectileRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_SpawnProjectile \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_SpawnProjectile) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_SpawnProjectile"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_SpawnProjectile) == 0x000060, "Wrong size on WrestlerGameplayAbility_RangedWeapon_SpawnProjectile"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_SpawnProjectile, InParams) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_SpawnProjectile::InParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetDamagePerProjectile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget) == 0x000020, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget, TargetLocation) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget, ReturnValue) == 0x000018, "Member 'WrestlerGameplayAbility_RangedWeapon_GetDistanceToTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetMaxDistance \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetMaxDistance) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetMaxDistance"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetMaxDistance) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetMaxDistance"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetMaxDistance, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetMaxDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation) == 0x000018, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetMuzzleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetProjectileSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetProjectilesPerShot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetShotFireRate \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetShotFireRate) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetShotFireRate"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetShotFireRate) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetShotFireRate"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetShotFireRate, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetShotFireRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst) == 0x000004, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetShotsPerBurst::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform) == 0x000010, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform) == 0x000060, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetWeaponAimTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance \ +static_assert(alignof(WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance"); \ +static_assert(sizeof(WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance) == 0x000008, "Wrong size on WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance"); \ +static_assert(offsetof(WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance, ReturnValue) == 0x000000, "Member 'WrestlerGameplayAbility_RangedWeapon_GetWeaponInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_RangedWeapon \ +static_assert(alignof(UWrestlerGameplayAbility_RangedWeapon) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_RangedWeapon"); \ +static_assert(sizeof(UWrestlerGameplayAbility_RangedWeapon) == 0x000668, "Wrong size on UWrestlerGameplayAbility_RangedWeapon"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied \ +static_assert(alignof(WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied) == 0x000004, "Wrong alignment on WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied"); \ +static_assert(sizeof(WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied) == 0x000004, "Wrong size on WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied"); \ +static_assert(offsetof(WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied, InDamage) == 0x000000, "Member 'WrestlerGameplayAbility_ReplenishBloodOnDamage_OnDamageApplied::InDamage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_ReplenishBloodOnDamage \ +static_assert(alignof(UWrestlerGameplayAbility_ReplenishBloodOnDamage) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_ReplenishBloodOnDamage"); \ +static_assert(sizeof(UWrestlerGameplayAbility_ReplenishBloodOnDamage) == 0x000730, "Wrong size on UWrestlerGameplayAbility_ReplenishBloodOnDamage"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ReplenishBloodOnDamage, DamageEffectsToIgnore) == 0x000668, "Member 'UWrestlerGameplayAbility_ReplenishBloodOnDamage::DamageEffectsToIgnore' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ReplenishBloodOnDamage, CancelAbilityWhenTagReceived) == 0x0006B8, "Member 'UWrestlerGameplayAbility_ReplenishBloodOnDamage::CancelAbilityWhenTagReceived' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_ReplenishBloodOnDamage, EventTagOnDamage) == 0x0006D8, "Member 'UWrestlerGameplayAbility_ReplenishBloodOnDamage::EventTagOnDamage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayAbility_Telekinesis_OnValidData \ +static_assert(alignof(WrestlerGameplayAbility_Telekinesis_OnValidData) == 0x000008, "Wrong alignment on WrestlerGameplayAbility_Telekinesis_OnValidData"); \ +static_assert(sizeof(WrestlerGameplayAbility_Telekinesis_OnValidData) == 0x000028, "Wrong size on WrestlerGameplayAbility_Telekinesis_OnValidData"); \ +static_assert(offsetof(WrestlerGameplayAbility_Telekinesis_OnValidData, InData) == 0x000000, "Member 'WrestlerGameplayAbility_Telekinesis_OnValidData::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayAbility_Telekinesis \ +static_assert(alignof(UWrestlerGameplayAbility_Telekinesis) == 0x000008, "Wrong alignment on UWrestlerGameplayAbility_Telekinesis"); \ +static_assert(sizeof(UWrestlerGameplayAbility_Telekinesis) == 0x000698, "Wrong size on UWrestlerGameplayAbility_Telekinesis"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, TargetingRange) == 0x000668, "Member 'UWrestlerGameplayAbility_Telekinesis::TargetingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, TargetingMaxAngle) == 0x00066C, "Member 'UWrestlerGameplayAbility_Telekinesis::TargetingMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, CameraSocketName) == 0x000670, "Member 'UWrestlerGameplayAbility_Telekinesis::CameraSocketName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, Target) == 0x000678, "Member 'UWrestlerGameplayAbility_Telekinesis::Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, TargetingTask) == 0x000680, "Member 'UWrestlerGameplayAbility_Telekinesis::TargetingTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, TargetActorClass) == 0x000688, "Member 'UWrestlerGameplayAbility_Telekinesis::TargetActorClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameplayAbility_Telekinesis, TargetActor) == 0x000690, "Member 'UWrestlerGameplayAbility_Telekinesis::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayCueManager \ +static_assert(alignof(UWrestlerGameplayCueManager) == 0x000008, "Wrong alignment on UWrestlerGameplayCueManager"); \ +static_assert(sizeof(UWrestlerGameplayCueManager) == 0x0002C0, "Wrong size on UWrestlerGameplayCueManager"); \ + +#define DUMPER7_ASSERTS_WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged \ +static_assert(alignof(WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged) == 0x000008, "Wrong alignment on WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged"); \ +static_assert(sizeof(WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged) == 0x000010, "Wrong size on WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged, PreviousActor) == 0x000000, "Member 'WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged::PreviousActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged, NewActor) == 0x000008, "Member 'WrestlerGameplayCueNotify_MassActor_OnMassTargetActorChanged::NewActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameplayCueNotify_MassActor \ +static_assert(alignof(AWrestlerGameplayCueNotify_MassActor) == 0x000008, "Wrong alignment on AWrestlerGameplayCueNotify_MassActor"); \ +static_assert(sizeof(AWrestlerGameplayCueNotify_MassActor) == 0x000318, "Wrong size on AWrestlerGameplayCueNotify_MassActor"); \ +static_assert(offsetof(AWrestlerGameplayCueNotify_MassActor, TargetActor) == 0x000308, "Member 'AWrestlerGameplayCueNotify_MassActor::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameplayEffect \ +static_assert(alignof(UWrestlerGameplayEffect) == 0x000008, "Wrong alignment on UWrestlerGameplayEffect"); \ +static_assert(sizeof(UWrestlerGameplayEffect) == 0x000A70, "Wrong size on UWrestlerGameplayEffect"); \ + +#define DUMPER7_ASSERTS_UWrestlerSkillTreeNode \ +static_assert(alignof(UWrestlerSkillTreeNode) == 0x000008, "Wrong alignment on UWrestlerSkillTreeNode"); \ +static_assert(sizeof(UWrestlerSkillTreeNode) == 0x000070, "Wrong size on UWrestlerSkillTreeNode"); \ +static_assert(offsetof(UWrestlerSkillTreeNode, NodeData) == 0x000030, "Member 'UWrestlerSkillTreeNode::NodeData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeNode, ChildrenNodes) == 0x000060, "Member 'UWrestlerSkillTreeNode::ChildrenNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged \ +static_assert(alignof(WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged) == 0x000008, "Wrong alignment on WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged"); \ +static_assert(sizeof(WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged) == 0x000020, "Wrong size on WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged, Index_0) == 0x000000, "Member 'WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged::Index_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged, Text) == 0x000008, "Member 'WrestlerGameSettingListEntrySetting_Discrete_OnValueChanged::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameSettingListEntrySetting_Discrete \ +static_assert(alignof(UWrestlerGameSettingListEntrySetting_Discrete) == 0x000008, "Wrong alignment on UWrestlerGameSettingListEntrySetting_Discrete"); \ +static_assert(sizeof(UWrestlerGameSettingListEntrySetting_Discrete) == 0x000350, "Wrong size on UWrestlerGameSettingListEntrySetting_Discrete"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_RequestToken \ +static_assert(alignof(UWrestlerStateTreeTask_RequestToken) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_RequestToken"); \ +static_assert(sizeof(UWrestlerStateTreeTask_RequestToken) == 0x000050, "Wrong size on UWrestlerStateTreeTask_RequestToken"); \ +static_assert(offsetof(UWrestlerStateTreeTask_RequestToken, TokenType) == 0x000048, "Member 'UWrestlerStateTreeTask_RequestToken::TokenType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_OnInputChanged \ +static_assert(alignof(GameSettingListEntrySetting_Input_OnInputChanged) == 0x000001, "Wrong alignment on GameSettingListEntrySetting_Input_OnInputChanged"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_OnInputChanged) == 0x000001, "Wrong size on GameSettingListEntrySetting_Input_OnInputChanged"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'GameSettingListEntrySetting_Input_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_ResetKey \ +static_assert(alignof(GameSettingListEntrySetting_Input_ResetKey) == 0x000001, "Wrong alignment on GameSettingListEntrySetting_Input_ResetKey"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_ResetKey) == 0x000001, "Wrong size on GameSettingListEntrySetting_Input_ResetKey"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_ResetKey, InIsGamepad) == 0x000000, "Member 'GameSettingListEntrySetting_Input_ResetKey::InIsGamepad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_SetKeyMapping_C \ +static_assert(alignof(GameSettingListEntrySetting_Input_SetKeyMapping_C) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_SetKeyMapping_C"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_SetKeyMapping_C) == 0x000020, "Wrong size on GameSettingListEntrySetting_Input_SetKeyMapping_C"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_SetKeyMapping_C, InNewKey) == 0x000000, "Member 'GameSettingListEntrySetting_Input_SetKeyMapping_C::InNewKey' has a wrong offset!"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_SetKeyMapping_C, bPrimary) == 0x000018, "Member 'GameSettingListEntrySetting_Input_SetKeyMapping_C::bPrimary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_SetKeyMapping_MK \ +static_assert(alignof(GameSettingListEntrySetting_Input_SetKeyMapping_MK) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_SetKeyMapping_MK"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_SetKeyMapping_MK) == 0x000028, "Wrong size on GameSettingListEntrySetting_Input_SetKeyMapping_MK"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_SetKeyMapping_MK, InNewKey) == 0x000000, "Member 'GameSettingListEntrySetting_Input_SetKeyMapping_MK::InNewKey' has a wrong offset!"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_SetKeyMapping_MK, bPrimary) == 0x000018, "Member 'GameSettingListEntrySetting_Input_SetKeyMapping_MK::bPrimary' has a wrong offset!"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_SetKeyMapping_MK, ID) == 0x00001C, "Member 'GameSettingListEntrySetting_Input_SetKeyMapping_MK::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_UpdateKeyIcon \ +static_assert(alignof(GameSettingListEntrySetting_Input_UpdateKeyIcon) == 0x000001, "Wrong alignment on GameSettingListEntrySetting_Input_UpdateKeyIcon"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_UpdateKeyIcon) == 0x000001, "Wrong size on GameSettingListEntrySetting_Input_UpdateKeyIcon"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_UpdateKeyIcon, InIsGamepad) == 0x000000, "Member 'GameSettingListEntrySetting_Input_UpdateKeyIcon::InIsGamepad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetAction \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetAction) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetAction"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetAction) == 0x000008, "Wrong size on GameSettingListEntrySetting_Input_GetAction"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetAction, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetDependentAction \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetDependentAction) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetDependentAction"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetDependentAction) == 0x000008, "Wrong size on GameSettingListEntrySetting_Input_GetDependentAction"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetDependentAction, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetDependentAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetDisplayName \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetDisplayName) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetDisplayName"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetDisplayName) == 0x000018, "Wrong size on GameSettingListEntrySetting_Input_GetDisplayName"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetDisplayName, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetInitialInputData \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetInitialInputData) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetInitialInputData"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetInitialInputData) == 0x000090, "Wrong size on GameSettingListEntrySetting_Input_GetInitialInputData"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetInitialInputData, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetInitialInputData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetKeyMapping_C \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetKeyMapping_C) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetKeyMapping_C"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetKeyMapping_C) == 0x000030, "Wrong size on GameSettingListEntrySetting_Input_GetKeyMapping_C"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetKeyMapping_C, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetKeyMapping_C::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_GetKeyMapping_MK \ +static_assert(alignof(GameSettingListEntrySetting_Input_GetKeyMapping_MK) == 0x000008, "Wrong alignment on GameSettingListEntrySetting_Input_GetKeyMapping_MK"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_GetKeyMapping_MK) == 0x000030, "Wrong size on GameSettingListEntrySetting_Input_GetKeyMapping_MK"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_GetKeyMapping_MK, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_GetKeyMapping_MK::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameSettingListEntrySetting_Input_IsRemappable \ +static_assert(alignof(GameSettingListEntrySetting_Input_IsRemappable) == 0x000001, "Wrong alignment on GameSettingListEntrySetting_Input_IsRemappable"); \ +static_assert(sizeof(GameSettingListEntrySetting_Input_IsRemappable) == 0x000001, "Wrong size on GameSettingListEntrySetting_Input_IsRemappable"); \ +static_assert(offsetof(GameSettingListEntrySetting_Input_IsRemappable, ReturnValue) == 0x000000, "Member 'GameSettingListEntrySetting_Input_IsRemappable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingListEntrySetting_Input \ +static_assert(alignof(UGameSettingListEntrySetting_Input) == 0x000010, "Wrong alignment on UGameSettingListEntrySetting_Input"); \ +static_assert(sizeof(UGameSettingListEntrySetting_Input) == 0x000450, "Wrong size on UGameSettingListEntrySetting_Input"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, bIsGamepad) == 0x000328, "Member 'UGameSettingListEntrySetting_Input::bIsGamepad' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, PlayerMappingContext) == 0x000330, "Member 'UGameSettingListEntrySetting_Input::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, MoveAction) == 0x000338, "Member 'UGameSettingListEntrySetting_Input::MoveAction' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, MoveKeyControllerOverride) == 0x000340, "Member 'UGameSettingListEntrySetting_Input::MoveKeyControllerOverride' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, OverrideMoveIcon_MK) == 0x000360, "Member 'UGameSettingListEntrySetting_Input::OverrideMoveIcon_MK' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, InputSetting) == 0x000430, "Member 'UGameSettingListEntrySetting_Input::InputSetting' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, CurrentInputType) == 0x000438, "Member 'UGameSettingListEntrySetting_Input::CurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, Button_Action) == 0x000440, "Member 'UGameSettingListEntrySetting_Input::Button_Action' has a wrong offset!"); \ +static_assert(offsetof(UGameSettingListEntrySetting_Input, MultiactionWidget) == 0x000448, "Member 'UGameSettingListEntrySetting_Input::MultiactionWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingRegistry_GetCodexSubsystem \ +static_assert(alignof(WrestlerGameSettingRegistry_GetCodexSubsystem) == 0x000008, "Wrong alignment on WrestlerGameSettingRegistry_GetCodexSubsystem"); \ +static_assert(sizeof(WrestlerGameSettingRegistry_GetCodexSubsystem) == 0x000008, "Wrong size on WrestlerGameSettingRegistry_GetCodexSubsystem"); \ +static_assert(offsetof(WrestlerGameSettingRegistry_GetCodexSubsystem, ReturnValue) == 0x000000, "Member 'WrestlerGameSettingRegistry_GetCodexSubsystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameSettingRegistry_GetUI \ +static_assert(alignof(WrestlerGameSettingRegistry_GetUI) == 0x000008, "Wrong alignment on WrestlerGameSettingRegistry_GetUI"); \ +static_assert(sizeof(WrestlerGameSettingRegistry_GetUI) == 0x000008, "Wrong size on WrestlerGameSettingRegistry_GetUI"); \ +static_assert(offsetof(WrestlerGameSettingRegistry_GetUI, ReturnValue) == 0x000000, "Member 'WrestlerGameSettingRegistry_GetUI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameSettingRegistry \ +static_assert(alignof(UWrestlerGameSettingRegistry) == 0x000008, "Wrong alignment on UWrestlerGameSettingRegistry"); \ +static_assert(sizeof(UWrestlerGameSettingRegistry) == 0x000100, "Wrong size on UWrestlerGameSettingRegistry"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, PlayerMappingContext) == 0x0000B0, "Member 'UWrestlerGameSettingRegistry::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, ControlsDisplayData) == 0x0000B8, "Member 'UWrestlerGameSettingRegistry::ControlsDisplayData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, ControlsSettings) == 0x0000C0, "Member 'UWrestlerGameSettingRegistry::ControlsSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, VideoSettings) == 0x0000C8, "Member 'UWrestlerGameSettingRegistry::VideoSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, AudioSettings) == 0x0000D0, "Member 'UWrestlerGameSettingRegistry::AudioSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, GameSettings) == 0x0000D8, "Member 'UWrestlerGameSettingRegistry::GameSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, AccessibilitySettings) == 0x0000E0, "Member 'UWrestlerGameSettingRegistry::AccessibilitySettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerGameSettingRegistry, UISettings) == 0x0000E8, "Member 'UWrestlerGameSettingRegistry::UISettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameStateInGame_GetAISpawnerHelper \ +static_assert(alignof(WrestlerGameStateInGame_GetAISpawnerHelper) == 0x000008, "Wrong alignment on WrestlerGameStateInGame_GetAISpawnerHelper"); \ +static_assert(sizeof(WrestlerGameStateInGame_GetAISpawnerHelper) == 0x000008, "Wrong size on WrestlerGameStateInGame_GetAISpawnerHelper"); \ +static_assert(offsetof(WrestlerGameStateInGame_GetAISpawnerHelper, ReturnValue) == 0x000000, "Member 'WrestlerGameStateInGame_GetAISpawnerHelper::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGameStateInGame_GetClanPerkUsageEvaluator \ +static_assert(alignof(WrestlerGameStateInGame_GetClanPerkUsageEvaluator) == 0x000008, "Wrong alignment on WrestlerGameStateInGame_GetClanPerkUsageEvaluator"); \ +static_assert(sizeof(WrestlerGameStateInGame_GetClanPerkUsageEvaluator) == 0x000008, "Wrong size on WrestlerGameStateInGame_GetClanPerkUsageEvaluator"); \ +static_assert(offsetof(WrestlerGameStateInGame_GetClanPerkUsageEvaluator, ReturnValue) == 0x000000, "Member 'WrestlerGameStateInGame_GetClanPerkUsageEvaluator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerGameStateInGame \ +static_assert(alignof(AWrestlerGameStateInGame) == 0x000008, "Wrong alignment on AWrestlerGameStateInGame"); \ +static_assert(sizeof(AWrestlerGameStateInGame) == 0x000328, "Wrong size on AWrestlerGameStateInGame"); \ +static_assert(offsetof(AWrestlerGameStateInGame, AISpawnHelper) == 0x000310, "Member 'AWrestlerGameStateInGame::AISpawnHelper' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameStateInGame, EnemyAudioController) == 0x000318, "Member 'AWrestlerGameStateInGame::EnemyAudioController' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerGameStateInGame, ClanPerkUsageEvaluator) == 0x000320, "Member 'AWrestlerGameStateInGame::ClanPerkUsageEvaluator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPointOfInterestWaypoint \ +static_assert(alignof(UWrestlerPointOfInterestWaypoint) == 0x000008, "Wrong alignment on UWrestlerPointOfInterestWaypoint"); \ +static_assert(sizeof(UWrestlerPointOfInterestWaypoint) == 0x000368, "Wrong size on UWrestlerPointOfInterestWaypoint"); \ +static_assert(offsetof(UWrestlerPointOfInterestWaypoint, WaypointImage) == 0x0002F0, "Member 'UWrestlerPointOfInterestWaypoint::WaypointImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPointOfInterestWaypoint, WaypointsDisplayData) == 0x000318, "Member 'UWrestlerPointOfInterestWaypoint::WaypointsDisplayData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGameViewportClient \ +static_assert(alignof(UWrestlerGameViewportClient) == 0x000008, "Wrong alignment on UWrestlerGameViewportClient"); \ +static_assert(sizeof(UWrestlerGameViewportClient) == 0x000400, "Wrong size on UWrestlerGameViewportClient"); \ +static_assert(offsetof(UWrestlerGameViewportClient, DebugKeysToCvarsIntToggles) == 0x0003F0, "Member 'UWrestlerGameViewportClient::DebugKeysToCvarsIntToggles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGA_ScryTheSoul \ +static_assert(alignof(UWrestlerGA_ScryTheSoul) == 0x000008, "Wrong alignment on UWrestlerGA_ScryTheSoul"); \ +static_assert(sizeof(UWrestlerGA_ScryTheSoul) == 0x000668, "Wrong size on UWrestlerGA_ScryTheSoul"); \ + +#define DUMPER7_ASSERTS_WrestlerPersistenceComponentItemState_SetItemState \ +static_assert(alignof(WrestlerPersistenceComponentItemState_SetItemState) == 0x000001, "Wrong alignment on WrestlerPersistenceComponentItemState_SetItemState"); \ +static_assert(sizeof(WrestlerPersistenceComponentItemState_SetItemState) == 0x000001, "Wrong size on WrestlerPersistenceComponentItemState_SetItemState"); \ +static_assert(offsetof(WrestlerPersistenceComponentItemState_SetItemState, InValue) == 0x000000, "Member 'WrestlerPersistenceComponentItemState_SetItemState::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPersistenceComponentItemState \ +static_assert(alignof(UWrestlerPersistenceComponentItemState) == 0x000008, "Wrong alignment on UWrestlerPersistenceComponentItemState"); \ +static_assert(sizeof(UWrestlerPersistenceComponentItemState) == 0x0000B0, "Wrong size on UWrestlerPersistenceComponentItemState"); \ +static_assert(offsetof(UWrestlerPersistenceComponentItemState, OnItemStateChanged) == 0x0000A0, "Member 'UWrestlerPersistenceComponentItemState::OnItemStateChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints \ +static_assert(alignof(WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints) == 0x000008, "Wrong alignment on WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints"); \ +static_assert(sizeof(WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints) == 0x000010, "Wrong size on WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints"); \ +static_assert(offsetof(WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetAutoCheckpointCycleTestCheckpoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetAutoCheckpointCycleTestIndex \ +static_assert(alignof(WrestlerGlobal_GetAutoCheckpointCycleTestIndex) == 0x000004, "Wrong alignment on WrestlerGlobal_GetAutoCheckpointCycleTestIndex"); \ +static_assert(sizeof(WrestlerGlobal_GetAutoCheckpointCycleTestIndex) == 0x000004, "Wrong size on WrestlerGlobal_GetAutoCheckpointCycleTestIndex"); \ +static_assert(offsetof(WrestlerGlobal_GetAutoCheckpointCycleTestIndex, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetAutoCheckpointCycleTestIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft \ +static_assert(alignof(WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft) == 0x000004, "Wrong alignment on WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft"); \ +static_assert(sizeof(WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft) == 0x000004, "Wrong size on WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft"); \ +static_assert(offsetof(WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetAutoCheckpointCycleTestRepeatsLeft::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetGameInstance \ +static_assert(alignof(WrestlerGlobal_GetGameInstance) == 0x000008, "Wrong alignment on WrestlerGlobal_GetGameInstance"); \ +static_assert(sizeof(WrestlerGlobal_GetGameInstance) == 0x000008, "Wrong size on WrestlerGlobal_GetGameInstance"); \ +static_assert(offsetof(WrestlerGlobal_GetGameInstance, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetGameInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetHUD \ +static_assert(alignof(WrestlerGlobal_GetHUD) == 0x000008, "Wrong alignment on WrestlerGlobal_GetHUD"); \ +static_assert(sizeof(WrestlerGlobal_GetHUD) == 0x000008, "Wrong size on WrestlerGlobal_GetHUD"); \ +static_assert(offsetof(WrestlerGlobal_GetHUD, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetInk \ +static_assert(alignof(WrestlerGlobal_GetInk) == 0x000008, "Wrong alignment on WrestlerGlobal_GetInk"); \ +static_assert(sizeof(WrestlerGlobal_GetInk) == 0x000008, "Wrong size on WrestlerGlobal_GetInk"); \ +static_assert(offsetof(WrestlerGlobal_GetInk, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetInk::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetMaps \ +static_assert(alignof(WrestlerGlobal_GetMaps) == 0x000008, "Wrong alignment on WrestlerGlobal_GetMaps"); \ +static_assert(sizeof(WrestlerGlobal_GetMaps) == 0x000050, "Wrong size on WrestlerGlobal_GetMaps"); \ +static_assert(offsetof(WrestlerGlobal_GetMaps, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetMaps::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetPlayerStartActor \ +static_assert(alignof(WrestlerGlobal_GetPlayerStartActor) == 0x000008, "Wrong alignment on WrestlerGlobal_GetPlayerStartActor"); \ +static_assert(sizeof(WrestlerGlobal_GetPlayerStartActor) == 0x000020, "Wrong size on WrestlerGlobal_GetPlayerStartActor"); \ +static_assert(offsetof(WrestlerGlobal_GetPlayerStartActor, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetPlayerStartActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetPropertySystem \ +static_assert(alignof(WrestlerGlobal_GetPropertySystem) == 0x000008, "Wrong alignment on WrestlerGlobal_GetPropertySystem"); \ +static_assert(sizeof(WrestlerGlobal_GetPropertySystem) == 0x000008, "Wrong size on WrestlerGlobal_GetPropertySystem"); \ +static_assert(offsetof(WrestlerGlobal_GetPropertySystem, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetPropertySystem::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetWorldFromEngine \ +static_assert(alignof(WrestlerGlobal_GetWorldFromEngine) == 0x000008, "Wrong alignment on WrestlerGlobal_GetWorldFromEngine"); \ +static_assert(sizeof(WrestlerGlobal_GetWorldFromEngine) == 0x000008, "Wrong size on WrestlerGlobal_GetWorldFromEngine"); \ +static_assert(offsetof(WrestlerGlobal_GetWorldFromEngine, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_GetWorldFromEngine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetWorldFromMapTag \ +static_assert(alignof(WrestlerGlobal_GetWorldFromMapTag) == 0x000008, "Wrong alignment on WrestlerGlobal_GetWorldFromMapTag"); \ +static_assert(sizeof(WrestlerGlobal_GetWorldFromMapTag) == 0x000028, "Wrong size on WrestlerGlobal_GetWorldFromMapTag"); \ +static_assert(offsetof(WrestlerGlobal_GetWorldFromMapTag, InMapTag) == 0x000000, "Member 'WrestlerGlobal_GetWorldFromMapTag::InMapTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGlobal_GetWorldFromMapTag, ReturnValue) == 0x000008, "Member 'WrestlerGlobal_GetWorldFromMapTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_GetWorldMapTag \ +static_assert(alignof(WrestlerGlobal_GetWorldMapTag) == 0x000008, "Wrong alignment on WrestlerGlobal_GetWorldMapTag"); \ +static_assert(sizeof(WrestlerGlobal_GetWorldMapTag) == 0x000010, "Wrong size on WrestlerGlobal_GetWorldMapTag"); \ +static_assert(offsetof(WrestlerGlobal_GetWorldMapTag, InWorld) == 0x000000, "Member 'WrestlerGlobal_GetWorldMapTag::InWorld' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGlobal_GetWorldMapTag, ReturnValue) == 0x000008, "Member 'WrestlerGlobal_GetWorldMapTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsCinematicsEnabled \ +static_assert(alignof(WrestlerGlobal_IsCinematicsEnabled) == 0x000001, "Wrong alignment on WrestlerGlobal_IsCinematicsEnabled"); \ +static_assert(sizeof(WrestlerGlobal_IsCinematicsEnabled) == 0x000001, "Wrong size on WrestlerGlobal_IsCinematicsEnabled"); \ +static_assert(offsetof(WrestlerGlobal_IsCinematicsEnabled, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsCinematicsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsDebug \ +static_assert(alignof(WrestlerGlobal_IsDebug) == 0x000001, "Wrong alignment on WrestlerGlobal_IsDebug"); \ +static_assert(sizeof(WrestlerGlobal_IsDebug) == 0x000001, "Wrong size on WrestlerGlobal_IsDebug"); \ +static_assert(offsetof(WrestlerGlobal_IsDebug, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsDebug::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsExperimentalAutomataEditorEnabled \ +static_assert(alignof(WrestlerGlobal_IsExperimentalAutomataEditorEnabled) == 0x000001, "Wrong alignment on WrestlerGlobal_IsExperimentalAutomataEditorEnabled"); \ +static_assert(sizeof(WrestlerGlobal_IsExperimentalAutomataEditorEnabled) == 0x000001, "Wrong size on WrestlerGlobal_IsExperimentalAutomataEditorEnabled"); \ +static_assert(offsetof(WrestlerGlobal_IsExperimentalAutomataEditorEnabled, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsExperimentalAutomataEditorEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsRunningAutoCheckpointCycleTest \ +static_assert(alignof(WrestlerGlobal_IsRunningAutoCheckpointCycleTest) == 0x000001, "Wrong alignment on WrestlerGlobal_IsRunningAutoCheckpointCycleTest"); \ +static_assert(sizeof(WrestlerGlobal_IsRunningAutoCheckpointCycleTest) == 0x000001, "Wrong size on WrestlerGlobal_IsRunningAutoCheckpointCycleTest"); \ +static_assert(offsetof(WrestlerGlobal_IsRunningAutoCheckpointCycleTest, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsRunningAutoCheckpointCycleTest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsShowDebugInfo \ +static_assert(alignof(WrestlerGlobal_IsShowDebugInfo) == 0x000001, "Wrong alignment on WrestlerGlobal_IsShowDebugInfo"); \ +static_assert(sizeof(WrestlerGlobal_IsShowDebugInfo) == 0x000001, "Wrong size on WrestlerGlobal_IsShowDebugInfo"); \ +static_assert(offsetof(WrestlerGlobal_IsShowDebugInfo, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsShowDebugInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_IsUsingCheckpointJumping \ +static_assert(alignof(WrestlerGlobal_IsUsingCheckpointJumping) == 0x000001, "Wrong alignment on WrestlerGlobal_IsUsingCheckpointJumping"); \ +static_assert(sizeof(WrestlerGlobal_IsUsingCheckpointJumping) == 0x000001, "Wrong size on WrestlerGlobal_IsUsingCheckpointJumping"); \ +static_assert(offsetof(WrestlerGlobal_IsUsingCheckpointJumping, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_IsUsingCheckpointJumping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_SetAutoCheckpointCycleTestIndex \ +static_assert(alignof(WrestlerGlobal_SetAutoCheckpointCycleTestIndex) == 0x000004, "Wrong alignment on WrestlerGlobal_SetAutoCheckpointCycleTestIndex"); \ +static_assert(sizeof(WrestlerGlobal_SetAutoCheckpointCycleTestIndex) == 0x000004, "Wrong size on WrestlerGlobal_SetAutoCheckpointCycleTestIndex"); \ +static_assert(offsetof(WrestlerGlobal_SetAutoCheckpointCycleTestIndex, InNewIndex) == 0x000000, "Member 'WrestlerGlobal_SetAutoCheckpointCycleTestIndex::InNewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_SetCinematicsEnabled \ +static_assert(alignof(WrestlerGlobal_SetCinematicsEnabled) == 0x000001, "Wrong alignment on WrestlerGlobal_SetCinematicsEnabled"); \ +static_assert(sizeof(WrestlerGlobal_SetCinematicsEnabled) == 0x000001, "Wrong size on WrestlerGlobal_SetCinematicsEnabled"); \ +static_assert(offsetof(WrestlerGlobal_SetCinematicsEnabled, InIsEnabled) == 0x000000, "Member 'WrestlerGlobal_SetCinematicsEnabled::InIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_SetPlayerStartActor \ +static_assert(alignof(WrestlerGlobal_SetPlayerStartActor) == 0x000008, "Wrong alignment on WrestlerGlobal_SetPlayerStartActor"); \ +static_assert(sizeof(WrestlerGlobal_SetPlayerStartActor) == 0x000020, "Wrong size on WrestlerGlobal_SetPlayerStartActor"); \ +static_assert(offsetof(WrestlerGlobal_SetPlayerStartActor, InPlayerStartActor) == 0x000000, "Member 'WrestlerGlobal_SetPlayerStartActor::InPlayerStartActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_SetUseCheckpointJumping \ +static_assert(alignof(WrestlerGlobal_SetUseCheckpointJumping) == 0x000001, "Wrong alignment on WrestlerGlobal_SetUseCheckpointJumping"); \ +static_assert(sizeof(WrestlerGlobal_SetUseCheckpointJumping) == 0x000001, "Wrong size on WrestlerGlobal_SetUseCheckpointJumping"); \ +static_assert(offsetof(WrestlerGlobal_SetUseCheckpointJumping, bInUseCheckpointJumping) == 0x000000, "Member 'WrestlerGlobal_SetUseCheckpointJumping::bInUseCheckpointJumping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_WantsDebugMemReports \ +static_assert(alignof(WrestlerGlobal_WantsDebugMemReports) == 0x000001, "Wrong alignment on WrestlerGlobal_WantsDebugMemReports"); \ +static_assert(sizeof(WrestlerGlobal_WantsDebugMemReports) == 0x000001, "Wrong size on WrestlerGlobal_WantsDebugMemReports"); \ +static_assert(offsetof(WrestlerGlobal_WantsDebugMemReports, ReturnValue) == 0x000000, "Member 'WrestlerGlobal_WantsDebugMemReports::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGlobal_WorldIsFullyLoaded \ +static_assert(alignof(WrestlerGlobal_WorldIsFullyLoaded) == 0x000008, "Wrong alignment on WrestlerGlobal_WorldIsFullyLoaded"); \ +static_assert(sizeof(WrestlerGlobal_WorldIsFullyLoaded) == 0x000010, "Wrong size on WrestlerGlobal_WorldIsFullyLoaded"); \ +static_assert(offsetof(WrestlerGlobal_WorldIsFullyLoaded, WorldContextObject) == 0x000000, "Member 'WrestlerGlobal_WorldIsFullyLoaded::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGlobal_WorldIsFullyLoaded, ReturnValue) == 0x000008, "Member 'WrestlerGlobal_WorldIsFullyLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGlobal \ +static_assert(alignof(UWrestlerGlobal) == 0x000008, "Wrong alignment on UWrestlerGlobal"); \ +static_assert(sizeof(UWrestlerGlobal) == 0x000028, "Wrong size on UWrestlerGlobal"); \ + +#define DUMPER7_ASSERTS_WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation \ +static_assert(alignof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation) == 0x000008, "Wrong alignment on WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation"); \ +static_assert(sizeof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation) == 0x000038, "Wrong size on WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation"); \ +static_assert(offsetof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation, InWorldLocation) == 0x000000, "Member 'WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation::InWorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation, OutParams) == 0x000018, "Member 'WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation::OutParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation, InWorldContextObject) == 0x000028, "Member 'WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation, ReturnValue) == 0x000030, "Member 'WrestlerGraphicsBlueprintFunctionLibrary_QueryRuntimeVirtualTextureVolumesAtLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD \ +static_assert(alignof(WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD) == 0x000004, "Wrong alignment on WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD"); \ +static_assert(sizeof(WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD) == 0x000004, "Wrong size on WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD"); \ +static_assert(offsetof(WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD, InValue) == 0x000000, "Member 'WrestlerGraphicsBlueprintFunctionLibrary_SetUpscalePaniniD::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerGraphicsBlueprintFunctionLibrary \ +static_assert(alignof(UWrestlerGraphicsBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerGraphicsBlueprintFunctionLibrary"); \ +static_assert(sizeof(UWrestlerGraphicsBlueprintFunctionLibrary) == 0x000028, "Wrong size on UWrestlerGraphicsBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPairedSmartObjectSpawnerProcessor \ +static_assert(alignof(UWrestlerMassPairedSmartObjectSpawnerProcessor) == 0x000008, "Wrong alignment on UWrestlerMassPairedSmartObjectSpawnerProcessor"); \ +static_assert(sizeof(UWrestlerMassPairedSmartObjectSpawnerProcessor) == 0x000360, "Wrong size on UWrestlerMassPairedSmartObjectSpawnerProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight) == 0x000010, "Wrong size on WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_GetComponentsToHighlight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag) == 0x000004, "Wrong alignment on WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag) == 0x000008, "Wrong size on WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag, InTypeTag) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_SetHeightenedSensesTypeTag::InTypeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_SetOverlayMaterial \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_SetOverlayMaterial) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesClueComponent_SetOverlayMaterial"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_SetOverlayMaterial) == 0x000008, "Wrong size on WrestlerHeightenedSensesClueComponent_SetOverlayMaterial"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetOverlayMaterial, InDynamicMaterial) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_SetOverlayMaterial::InDynamicMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility) == 0x000008, "Wrong alignment on WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility) == 0x000040, "Wrong size on WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility, InMeshComponentsToHideInTheRealWorld) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility::InMeshComponentsToHideInTheRealWorld' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility, InMeshComponentsToHideInHeightenedSenses) == 0x000010, "Member 'WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility::InMeshComponentsToHideInHeightenedSenses' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility, InMeshComponentsToHighlightInHeightenedSenses) == 0x000020, "Member 'WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility::InMeshComponentsToHighlightInHeightenedSenses' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility, InPrimitiveComponentsToIncludeInSceneCapture) == 0x000030, "Member 'WrestlerHeightenedSensesClueComponent_SetUpComponentVisibility::InPrimitiveComponentsToIncludeInSceneCapture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_StartFadeToAlpha \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_StartFadeToAlpha) == 0x000004, "Wrong alignment on WrestlerHeightenedSensesClueComponent_StartFadeToAlpha"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_StartFadeToAlpha) == 0x000008, "Wrong size on WrestlerHeightenedSensesClueComponent_StartFadeToAlpha"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_StartFadeToAlpha, InFadeDuration) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_StartFadeToAlpha::InFadeDuration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_StartFadeToAlpha, InAlpha) == 0x000004, "Member 'WrestlerHeightenedSensesClueComponent_StartFadeToAlpha::InAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_GetAlpha \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_GetAlpha) == 0x000004, "Wrong alignment on WrestlerHeightenedSensesClueComponent_GetAlpha"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_GetAlpha) == 0x000004, "Wrong size on WrestlerHeightenedSensesClueComponent_GetAlpha"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_GetAlpha, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_GetAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility \ +static_assert(alignof(WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility) == 0x000001, "Wrong alignment on WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility"); \ +static_assert(sizeof(WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility) == 0x000001, "Wrong size on WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility"); \ +static_assert(offsetof(WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility, ReturnValue) == 0x000000, "Member 'WrestlerHeightenedSensesClueComponent_GetHeightenedSensesVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHeightenedSensesClueComponent \ +static_assert(alignof(UWrestlerHeightenedSensesClueComponent) == 0x000008, "Wrong alignment on UWrestlerHeightenedSensesClueComponent"); \ +static_assert(sizeof(UWrestlerHeightenedSensesClueComponent) == 0x0001B8, "Wrong size on UWrestlerHeightenedSensesClueComponent"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, OnAlphaUpdated) == 0x0000A8, "Member 'UWrestlerHeightenedSensesClueComponent::OnAlphaUpdated' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, OnVisionBegin) == 0x0000B8, "Member 'UWrestlerHeightenedSensesClueComponent::OnVisionBegin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, OnNiagaraSystemAttached) == 0x0000C8, "Member 'UWrestlerHeightenedSensesClueComponent::OnNiagaraSystemAttached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, OnVisionEnd) == 0x0000D8, "Member 'UWrestlerHeightenedSensesClueComponent::OnVisionEnd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, MeshComponentsToHideInTheRealWorld) == 0x000110, "Member 'UWrestlerHeightenedSensesClueComponent::MeshComponentsToHideInTheRealWorld' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, MeshComponentsToHideInHeightenedSenses) == 0x000120, "Member 'UWrestlerHeightenedSensesClueComponent::MeshComponentsToHideInHeightenedSenses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, MeshComponentsToHighlight) == 0x000130, "Member 'UWrestlerHeightenedSensesClueComponent::MeshComponentsToHighlight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, PrimitiveComponentsToIncludeInSceneCapture) == 0x000140, "Member 'UWrestlerHeightenedSensesClueComponent::PrimitiveComponentsToIncludeInSceneCapture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, HeightenedSensesTypeTag) == 0x000150, "Member 'UWrestlerHeightenedSensesClueComponent::HeightenedSensesTypeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, BloodResonanceType) == 0x000170, "Member 'UWrestlerHeightenedSensesClueComponent::BloodResonanceType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, BloodResonanceState) == 0x000171, "Member 'UWrestlerHeightenedSensesClueComponent::BloodResonanceState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, OverlayMaterial) == 0x000178, "Member 'UWrestlerHeightenedSensesClueComponent::OverlayMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, DefaultFadeInDuration) == 0x000180, "Member 'UWrestlerHeightenedSensesClueComponent::DefaultFadeInDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, DefaultFadeOutDuration) == 0x000184, "Member 'UWrestlerHeightenedSensesClueComponent::DefaultFadeOutDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, bUseCustomDepth) == 0x000188, "Member 'UWrestlerHeightenedSensesClueComponent::bUseCustomDepth' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, CustomDepthStencilValue) == 0x00018C, "Member 'UWrestlerHeightenedSensesClueComponent::CustomDepthStencilValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHeightenedSensesClueComponent, ClueDataAsset) == 0x000190, "Member 'UWrestlerHeightenedSensesClueComponent::ClueDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerHeightenedSensesSceneCaptureComponent \ +static_assert(alignof(UWrestlerHeightenedSensesSceneCaptureComponent) == 0x000010, "Wrong alignment on UWrestlerHeightenedSensesSceneCaptureComponent"); \ +static_assert(sizeof(UWrestlerHeightenedSensesSceneCaptureComponent) == 0x000B60, "Wrong size on UWrestlerHeightenedSensesSceneCaptureComponent"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSteeringProcessor \ +static_assert(alignof(UWrestlerMassSteeringProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSteeringProcessor"); \ +static_assert(sizeof(UWrestlerMassSteeringProcessor) == 0x000360, "Wrong size on UWrestlerMassSteeringProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerHighlightableHUDWidget \ +static_assert(alignof(UWrestlerHighlightableHUDWidget) == 0x000008, "Wrong alignment on UWrestlerHighlightableHUDWidget"); \ +static_assert(sizeof(UWrestlerHighlightableHUDWidget) == 0x0002F8, "Wrong size on UWrestlerHighlightableHUDWidget"); \ +static_assert(offsetof(UWrestlerHighlightableHUDWidget, OnHighlightBegin) == 0x0002D8, "Member 'UWrestlerHighlightableHUDWidget::OnHighlightBegin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerHighlightableHUDWidget, OnHighlightEnd) == 0x0002E8, "Member 'UWrestlerHighlightableHUDWidget::OnHighlightEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightVFXActor_SpawnMassParticleEffect \ +static_assert(alignof(WrestlerHighlightVFXActor_SpawnMassParticleEffect) == 0x000008, "Wrong alignment on WrestlerHighlightVFXActor_SpawnMassParticleEffect"); \ +static_assert(sizeof(WrestlerHighlightVFXActor_SpawnMassParticleEffect) == 0x000058, "Wrong size on WrestlerHighlightVFXActor_SpawnMassParticleEffect"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_SpawnMassParticleEffect, InUpdateData) == 0x000000, "Member 'WrestlerHighlightVFXActor_SpawnMassParticleEffect::InUpdateData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_SpawnMassParticleEffect, AttachParentComponent) == 0x000048, "Member 'WrestlerHighlightVFXActor_SpawnMassParticleEffect::AttachParentComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_SpawnMassParticleEffect, ReturnValue) == 0x000050, "Member 'WrestlerHighlightVFXActor_SpawnMassParticleEffect::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightVFXActor_UpdateMassParticle \ +static_assert(alignof(WrestlerHighlightVFXActor_UpdateMassParticle) == 0x000008, "Wrong alignment on WrestlerHighlightVFXActor_UpdateMassParticle"); \ +static_assert(sizeof(WrestlerHighlightVFXActor_UpdateMassParticle) == 0x000050, "Wrong size on WrestlerHighlightVFXActor_UpdateMassParticle"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_UpdateMassParticle, InParticleActor) == 0x000000, "Member 'WrestlerHighlightVFXActor_UpdateMassParticle::InParticleActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_UpdateMassParticle, InUpdateData) == 0x000008, "Member 'WrestlerHighlightVFXActor_UpdateMassParticle::InUpdateData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightVFXActor_GetHighlightRadius \ +static_assert(alignof(WrestlerHighlightVFXActor_GetHighlightRadius) == 0x000004, "Wrong alignment on WrestlerHighlightVFXActor_GetHighlightRadius"); \ +static_assert(sizeof(WrestlerHighlightVFXActor_GetHighlightRadius) == 0x000004, "Wrong size on WrestlerHighlightVFXActor_GetHighlightRadius"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_GetHighlightRadius, ReturnValue) == 0x000000, "Member 'WrestlerHighlightVFXActor_GetHighlightRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerHighlightVFXActor_IsCleaningUp \ +static_assert(alignof(WrestlerHighlightVFXActor_IsCleaningUp) == 0x000001, "Wrong alignment on WrestlerHighlightVFXActor_IsCleaningUp"); \ +static_assert(sizeof(WrestlerHighlightVFXActor_IsCleaningUp) == 0x000001, "Wrong size on WrestlerHighlightVFXActor_IsCleaningUp"); \ +static_assert(offsetof(WrestlerHighlightVFXActor_IsCleaningUp, ReturnValue) == 0x000000, "Member 'WrestlerHighlightVFXActor_IsCleaningUp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerHighlightVFXActor \ +static_assert(alignof(AWrestlerHighlightVFXActor) == 0x000008, "Wrong alignment on AWrestlerHighlightVFXActor"); \ +static_assert(sizeof(AWrestlerHighlightVFXActor) == 0x0002A0, "Wrong size on AWrestlerHighlightVFXActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerHubNavigationSystem \ +static_assert(alignof(UWrestlerHubNavigationSystem) == 0x000008, "Wrong alignment on UWrestlerHubNavigationSystem"); \ +static_assert(sizeof(UWrestlerHubNavigationSystem) == 0x001590, "Wrong size on UWrestlerHubNavigationSystem"); \ + +#define DUMPER7_ASSERTS_AWrestlerHUDFrontEnd \ +static_assert(alignof(AWrestlerHUDFrontEnd) == 0x000008, "Wrong alignment on AWrestlerHUDFrontEnd"); \ +static_assert(sizeof(AWrestlerHUDFrontEnd) == 0x000460, "Wrong size on AWrestlerHUDFrontEnd"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassFearSourceSubsystem \ +static_assert(alignof(UWrestlerMassFearSourceSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassFearSourceSubsystem"); \ +static_assert(sizeof(UWrestlerMassFearSourceSubsystem) == 0x000088, "Wrong size on UWrestlerMassFearSourceSubsystem"); \ + +#define DUMPER7_ASSERTS_AWrestlerHUDLoadScreen \ +static_assert(alignof(AWrestlerHUDLoadScreen) == 0x000008, "Wrong alignment on AWrestlerHUDLoadScreen"); \ +static_assert(sizeof(AWrestlerHUDLoadScreen) == 0x000460, "Wrong size on AWrestlerHUDLoadScreen"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionCanInvestigateBody \ +static_assert(alignof(UWrestlerStateTreeConditionCanInvestigateBody) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionCanInvestigateBody"); \ +static_assert(sizeof(UWrestlerStateTreeConditionCanInvestigateBody) == 0x000050, "Wrong size on UWrestlerStateTreeConditionCanInvestigateBody"); \ +static_assert(offsetof(UWrestlerStateTreeConditionCanInvestigateBody, DeadBodyTag) == 0x000048, "Member 'UWrestlerStateTreeConditionCanInvestigateBody::DeadBodyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_GetInitialMappingForEntry \ +static_assert(alignof(WrestlerInputRemappingWidget_GetInitialMappingForEntry) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_GetInitialMappingForEntry"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_GetInitialMappingForEntry) == 0x000090, "Wrong size on WrestlerInputRemappingWidget_GetInitialMappingForEntry"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_GetInitialMappingForEntry, ReturnValue) == 0x000000, "Member 'WrestlerInputRemappingWidget_GetInitialMappingForEntry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_RemapKey \ +static_assert(alignof(WrestlerInputRemappingWidget_RemapKey) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_RemapKey"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_RemapKey) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_RemapKey"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_RemapKey, InNewKey) == 0x000000, "Member 'WrestlerInputRemappingWidget_RemapKey::InNewKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_RemapKey, bPrimary) == 0x000018, "Member 'WrestlerInputRemappingWidget_RemapKey::bPrimary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_UnmapKey \ +static_assert(alignof(WrestlerInputRemappingWidget_UnmapKey) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_UnmapKey"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_UnmapKey) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_UnmapKey"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_UnmapKey, InKey) == 0x000000, "Member 'WrestlerInputRemappingWidget_UnmapKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_UnmapKey, ReturnValue) == 0x000018, "Member 'WrestlerInputRemappingWidget_UnmapKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_GetActionByKey \ +static_assert(alignof(WrestlerInputRemappingWidget_GetActionByKey) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_GetActionByKey"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_GetActionByKey) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_GetActionByKey"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_GetActionByKey, Key) == 0x000000, "Member 'WrestlerInputRemappingWidget_GetActionByKey::Key' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_GetActionByKey, ReturnValue) == 0x000018, "Member 'WrestlerInputRemappingWidget_GetActionByKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_GetDisplayedActionByKey \ +static_assert(alignof(WrestlerInputRemappingWidget_GetDisplayedActionByKey) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_GetDisplayedActionByKey"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_GetDisplayedActionByKey) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_GetDisplayedActionByKey"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_GetDisplayedActionByKey, InKey) == 0x000000, "Member 'WrestlerInputRemappingWidget_GetDisplayedActionByKey::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_GetDisplayedActionByKey, ReturnValue) == 0x000018, "Member 'WrestlerInputRemappingWidget_GetDisplayedActionByKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_IsIconForKeyValid \ +static_assert(alignof(WrestlerInputRemappingWidget_IsIconForKeyValid) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_IsIconForKeyValid"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_IsIconForKeyValid) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_IsIconForKeyValid"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_IsIconForKeyValid, Key) == 0x000000, "Member 'WrestlerInputRemappingWidget_IsIconForKeyValid::Key' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_IsIconForKeyValid, ReturnValue) == 0x000018, "Member 'WrestlerInputRemappingWidget_IsIconForKeyValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInputRemappingWidget_IsKeyAvailable \ +static_assert(alignof(WrestlerInputRemappingWidget_IsKeyAvailable) == 0x000008, "Wrong alignment on WrestlerInputRemappingWidget_IsKeyAvailable"); \ +static_assert(sizeof(WrestlerInputRemappingWidget_IsKeyAvailable) == 0x000020, "Wrong size on WrestlerInputRemappingWidget_IsKeyAvailable"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_IsKeyAvailable, InKey) == 0x000000, "Member 'WrestlerInputRemappingWidget_IsKeyAvailable::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_IsKeyAvailable, bInPrimary) == 0x000018, "Member 'WrestlerInputRemappingWidget_IsKeyAvailable::bInPrimary' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInputRemappingWidget_IsKeyAvailable, ReturnValue) == 0x000019, "Member 'WrestlerInputRemappingWidget_IsKeyAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInputRemappingWidget \ +static_assert(alignof(UWrestlerInputRemappingWidget) == 0x000008, "Wrong alignment on UWrestlerInputRemappingWidget"); \ +static_assert(sizeof(UWrestlerInputRemappingWidget) == 0x0004A0, "Wrong size on UWrestlerInputRemappingWidget"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, ActionButton) == 0x000410, "Member 'UWrestlerInputRemappingWidget::ActionButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, KeySelector_Primary) == 0x000418, "Member 'UWrestlerInputRemappingWidget::KeySelector_Primary' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, KeySelector_Secondary) == 0x000420, "Member 'UWrestlerInputRemappingWidget::KeySelector_Secondary' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, ActionWidget_Primary) == 0x000428, "Member 'UWrestlerInputRemappingWidget::ActionWidget_Primary' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, ActionWidget_Secondary) == 0x000430, "Member 'UWrestlerInputRemappingWidget::ActionWidget_Secondary' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, MappedKeys) == 0x000438, "Member 'UWrestlerInputRemappingWidget::MappedKeys' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, DisplayData) == 0x000488, "Member 'UWrestlerInputRemappingWidget::DisplayData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, CurrentInputType) == 0x000490, "Member 'UWrestlerInputRemappingWidget::CurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerInputRemappingWidget, MappingContext) == 0x000498, "Member 'UWrestlerInputRemappingWidget::MappingContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionAnimDataAsset_GetInteractionAnimData \ +static_assert(alignof(WrestlerInteractionAnimDataAsset_GetInteractionAnimData) == 0x000008, "Wrong alignment on WrestlerInteractionAnimDataAsset_GetInteractionAnimData"); \ +static_assert(sizeof(WrestlerInteractionAnimDataAsset_GetInteractionAnimData) == 0x000078, "Wrong size on WrestlerInteractionAnimDataAsset_GetInteractionAnimData"); \ +static_assert(offsetof(WrestlerInteractionAnimDataAsset_GetInteractionAnimData, InTag) == 0x000000, "Member 'WrestlerInteractionAnimDataAsset_GetInteractionAnimData::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionAnimDataAsset_GetInteractionAnimData, OutInteractionAnimData) == 0x000008, "Member 'WrestlerInteractionAnimDataAsset_GetInteractionAnimData::OutInteractionAnimData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionAnimDataAsset_GetInteractionAnimData, ReturnValue) == 0x000070, "Member 'WrestlerInteractionAnimDataAsset_GetInteractionAnimData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInteractionAnimDataAsset \ +static_assert(alignof(UWrestlerInteractionAnimDataAsset) == 0x000008, "Wrong alignment on UWrestlerInteractionAnimDataAsset"); \ +static_assert(sizeof(UWrestlerInteractionAnimDataAsset) == 0x000080, "Wrong size on UWrestlerInteractionAnimDataAsset"); \ +static_assert(offsetof(UWrestlerInteractionAnimDataAsset, InteractionAnims) == 0x000030, "Member 'UWrestlerInteractionAnimDataAsset::InteractionAnims' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskDebugWidgetComponent \ +static_assert(alignof(UWrestlerTaskDebugWidgetComponent) == 0x000010, "Wrong alignment on UWrestlerTaskDebugWidgetComponent"); \ +static_assert(sizeof(UWrestlerTaskDebugWidgetComponent) == 0x0007E0, "Wrong size on UWrestlerTaskDebugWidgetComponent"); \ + +#define DUMPER7_ASSERTS_UWrestlerInteractionPointComponent \ +static_assert(alignof(UWrestlerInteractionPointComponent) == 0x000010, "Wrong alignment on UWrestlerInteractionPointComponent"); \ +static_assert(sizeof(UWrestlerInteractionPointComponent) == 0x0002B0, "Wrong size on UWrestlerInteractionPointComponent"); \ +static_assert(offsetof(UWrestlerInteractionPointComponent, InteractionPointTag) == 0x0002A0, "Member 'UWrestlerInteractionPointComponent::InteractionPointTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionTargetActor_GetInteractionFromTargetData \ +static_assert(alignof(WrestlerInteractionTargetActor_GetInteractionFromTargetData) == 0x000008, "Wrong alignment on WrestlerInteractionTargetActor_GetInteractionFromTargetData"); \ +static_assert(sizeof(WrestlerInteractionTargetActor_GetInteractionFromTargetData) == 0x000048, "Wrong size on WrestlerInteractionTargetActor_GetInteractionFromTargetData"); \ +static_assert(offsetof(WrestlerInteractionTargetActor_GetInteractionFromTargetData, InHandle) == 0x000000, "Member 'WrestlerInteractionTargetActor_GetInteractionFromTargetData::InHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionTargetActor_GetInteractionFromTargetData, InIndex) == 0x000028, "Member 'WrestlerInteractionTargetActor_GetInteractionFromTargetData::InIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionTargetActor_GetInteractionFromTargetData, OutInteraction) == 0x000030, "Member 'WrestlerInteractionTargetActor_GetInteractionFromTargetData::OutInteraction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionTargetActor_GetInteractionFromTargetData, ReturnValue) == 0x000040, "Member 'WrestlerInteractionTargetActor_GetInteractionFromTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerInteractionTargetActor \ +static_assert(alignof(AWrestlerInteractionTargetActor) == 0x000010, "Wrong alignment on AWrestlerInteractionTargetActor"); \ +static_assert(sizeof(AWrestlerInteractionTargetActor) == 0x000520, "Wrong size on AWrestlerInteractionTargetActor"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, ReticleLimit) == 0x000450, "Member 'AWrestlerInteractionTargetActor::ReticleLimit' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, ChosenTargetDist) == 0x000454, "Member 'AWrestlerInteractionTargetActor::ChosenTargetDist' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, ChosenTargetScore) == 0x000458, "Member 'AWrestlerInteractionTargetActor::ChosenTargetScore' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, LOSBreakDistance) == 0x00045C, "Member 'AWrestlerInteractionTargetActor::LOSBreakDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, bUpdateCrosshairUI) == 0x000460, "Member 'AWrestlerInteractionTargetActor::bUpdateCrosshairUI' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, CrossRadius) == 0x000464, "Member 'AWrestlerInteractionTargetActor::CrossRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, Scores) == 0x000478, "Member 'AWrestlerInteractionTargetActor::Scores' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, CrosshairHUD) == 0x0004F8, "Member 'AWrestlerInteractionTargetActor::CrosshairHUD' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionTargetActor, MaxCrosshairTraceQueryAttempts) == 0x00050C, "Member 'AWrestlerInteractionTargetActor::MaxCrosshairTraceQueryAttempts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionWidget_OnTargetUpdated \ +static_assert(alignof(WrestlerInteractionWidget_OnTargetUpdated) == 0x000008, "Wrong alignment on WrestlerInteractionWidget_OnTargetUpdated"); \ +static_assert(sizeof(WrestlerInteractionWidget_OnTargetUpdated) == 0x000018, "Wrong size on WrestlerInteractionWidget_OnTargetUpdated"); \ +static_assert(offsetof(WrestlerInteractionWidget_OnTargetUpdated, InTarget) == 0x000000, "Member 'WrestlerInteractionWidget_OnTargetUpdated::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInteractionWidget_OnTargetUpdated, bInIsPrimaryTarget) == 0x000010, "Member 'WrestlerInteractionWidget_OnTargetUpdated::bInIsPrimaryTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInteractionWidget \ +static_assert(alignof(UWrestlerInteractionWidget) == 0x000008, "Wrong alignment on UWrestlerInteractionWidget"); \ +static_assert(sizeof(UWrestlerInteractionWidget) == 0x0002C8, "Wrong size on UWrestlerInteractionWidget"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionWorldReticle_Interact \ +static_assert(alignof(WrestlerInteractionWorldReticle_Interact) == 0x000008, "Wrong alignment on WrestlerInteractionWorldReticle_Interact"); \ +static_assert(sizeof(WrestlerInteractionWorldReticle_Interact) == 0x000008, "Wrong size on WrestlerInteractionWorldReticle_Interact"); \ +static_assert(offsetof(WrestlerInteractionWorldReticle_Interact, InInteractingActor) == 0x000000, "Member 'WrestlerInteractionWorldReticle_Interact::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged \ +static_assert(alignof(WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged) == 0x000001, "Wrong alignment on WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged"); \ +static_assert(sizeof(WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged) == 0x000001, "Wrong size on WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged"); \ +static_assert(offsetof(WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged, bIsVisible) == 0x000000, "Member 'WrestlerInteractionWorldReticle_OnPlayerHudVisibilityChanged::bIsVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerInteractionWorldReticle \ +static_assert(alignof(AWrestlerInteractionWorldReticle) == 0x000008, "Wrong alignment on AWrestlerInteractionWorldReticle"); \ +static_assert(sizeof(AWrestlerInteractionWorldReticle) == 0x0002F0, "Wrong size on AWrestlerInteractionWorldReticle"); \ +static_assert(offsetof(AWrestlerInteractionWorldReticle, CurrentTarget) == 0x0002C8, "Member 'AWrestlerInteractionWorldReticle::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionWorldReticle, InteractionWidgetComponent) == 0x0002D0, "Member 'AWrestlerInteractionWorldReticle::InteractionWidgetComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionWorldReticle, ExipryDuration) == 0x0002D8, "Member 'AWrestlerInteractionWorldReticle::ExipryDuration' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInteractionWorldReticle, InteractionWidget) == 0x0002E0, "Member 'AWrestlerInteractionWorldReticle::InteractionWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInvestigateManager_AddActor \ +static_assert(alignof(WrestlerInvestigateManager_AddActor) == 0x000008, "Wrong alignment on WrestlerInvestigateManager_AddActor"); \ +static_assert(sizeof(WrestlerInvestigateManager_AddActor) == 0x000060, "Wrong size on WrestlerInvestigateManager_AddActor"); \ +static_assert(offsetof(WrestlerInvestigateManager_AddActor, InActor) == 0x000000, "Member 'WrestlerInvestigateManager_AddActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvestigateManager_AddActor, InStimulus) == 0x000008, "Member 'WrestlerInvestigateManager_AddActor::InStimulus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInvestigateManager_BindActorDelegates \ +static_assert(alignof(WrestlerInvestigateManager_BindActorDelegates) == 0x000008, "Wrong alignment on WrestlerInvestigateManager_BindActorDelegates"); \ +static_assert(sizeof(WrestlerInvestigateManager_BindActorDelegates) == 0x000008, "Wrong size on WrestlerInvestigateManager_BindActorDelegates"); \ +static_assert(offsetof(WrestlerInvestigateManager_BindActorDelegates, InActor) == 0x000000, "Member 'WrestlerInvestigateManager_BindActorDelegates::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInvestigateManager_CompletedInvestigation \ +static_assert(alignof(WrestlerInvestigateManager_CompletedInvestigation) == 0x000008, "Wrong alignment on WrestlerInvestigateManager_CompletedInvestigation"); \ +static_assert(sizeof(WrestlerInvestigateManager_CompletedInvestigation) == 0x000008, "Wrong size on WrestlerInvestigateManager_CompletedInvestigation"); \ +static_assert(offsetof(WrestlerInvestigateManager_CompletedInvestigation, InActor) == 0x000000, "Member 'WrestlerInvestigateManager_CompletedInvestigation::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInvestigateManager_Death \ +static_assert(alignof(WrestlerInvestigateManager_Death) == 0x000008, "Wrong alignment on WrestlerInvestigateManager_Death"); \ +static_assert(sizeof(WrestlerInvestigateManager_Death) == 0x000008, "Wrong size on WrestlerInvestigateManager_Death"); \ +static_assert(offsetof(WrestlerInvestigateManager_Death, InActor) == 0x000000, "Member 'WrestlerInvestigateManager_Death::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerInvestigateManager_IsInvestigatingStimulus \ +static_assert(alignof(WrestlerInvestigateManager_IsInvestigatingStimulus) == 0x000008, "Wrong alignment on WrestlerInvestigateManager_IsInvestigatingStimulus"); \ +static_assert(sizeof(WrestlerInvestigateManager_IsInvestigatingStimulus) == 0x000068, "Wrong size on WrestlerInvestigateManager_IsInvestigatingStimulus"); \ +static_assert(offsetof(WrestlerInvestigateManager_IsInvestigatingStimulus, InActor) == 0x000000, "Member 'WrestlerInvestigateManager_IsInvestigatingStimulus::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvestigateManager_IsInvestigatingStimulus, InStimulus) == 0x000008, "Member 'WrestlerInvestigateManager_IsInvestigatingStimulus::InStimulus' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvestigateManager_IsInvestigatingStimulus, ReturnValue) == 0x000060, "Member 'WrestlerInvestigateManager_IsInvestigatingStimulus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerInvestigateManager \ +static_assert(alignof(UWrestlerInvestigateManager) == 0x000008, "Wrong alignment on UWrestlerInvestigateManager"); \ +static_assert(sizeof(UWrestlerInvestigateManager) == 0x0000D0, "Wrong size on UWrestlerInvestigateManager"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSpawnLocationAndGenderProcessor \ +static_assert(alignof(UWrestlerMassSpawnLocationAndGenderProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSpawnLocationAndGenderProcessor"); \ +static_assert(sizeof(UWrestlerMassSpawnLocationAndGenderProcessor) == 0x000360, "Wrong size on UWrestlerMassSpawnLocationAndGenderProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerItemStateInterface_GetDebugString \ +static_assert(alignof(WrestlerItemStateInterface_GetDebugString) == 0x000008, "Wrong alignment on WrestlerItemStateInterface_GetDebugString"); \ +static_assert(sizeof(WrestlerItemStateInterface_GetDebugString) == 0x000010, "Wrong size on WrestlerItemStateInterface_GetDebugString"); \ +static_assert(offsetof(WrestlerItemStateInterface_GetDebugString, ReturnValue) == 0x000000, "Member 'WrestlerItemStateInterface_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerItemStateInterface_GetItemState \ +static_assert(alignof(WrestlerItemStateInterface_GetItemState) == 0x000001, "Wrong alignment on WrestlerItemStateInterface_GetItemState"); \ +static_assert(sizeof(WrestlerItemStateInterface_GetItemState) == 0x000001, "Wrong size on WrestlerItemStateInterface_GetItemState"); \ +static_assert(offsetof(WrestlerItemStateInterface_GetItemState, ReturnValue) == 0x000000, "Member 'WrestlerItemStateInterface_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerItemStateInterface_SetItemState \ +static_assert(alignof(WrestlerItemStateInterface_SetItemState) == 0x000001, "Wrong alignment on WrestlerItemStateInterface_SetItemState"); \ +static_assert(sizeof(WrestlerItemStateInterface_SetItemState) == 0x000001, "Wrong size on WrestlerItemStateInterface_SetItemState"); \ +static_assert(offsetof(WrestlerItemStateInterface_SetItemState, InItemState) == 0x000000, "Member 'WrestlerItemStateInterface_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerItemStateInterface \ +static_assert(alignof(IWrestlerItemStateInterface) == 0x000001, "Wrong alignment on IWrestlerItemStateInterface"); \ +static_assert(sizeof(IWrestlerItemStateInterface) == 0x000001, "Wrong size on IWrestlerItemStateInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetActor_OnPassiveTargetFound \ +static_assert(alignof(WrestlerPassiveTargetActor_OnPassiveTargetFound) == 0x000008, "Wrong alignment on WrestlerPassiveTargetActor_OnPassiveTargetFound"); \ +static_assert(sizeof(WrestlerPassiveTargetActor_OnPassiveTargetFound) == 0x000008, "Wrong size on WrestlerPassiveTargetActor_OnPassiveTargetFound"); \ +static_assert(offsetof(WrestlerPassiveTargetActor_OnPassiveTargetFound, foundTarget) == 0x000000, "Member 'WrestlerPassiveTargetActor_OnPassiveTargetFound::foundTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetActor_OnPassiveTargetLost \ +static_assert(alignof(WrestlerPassiveTargetActor_OnPassiveTargetLost) == 0x000008, "Wrong alignment on WrestlerPassiveTargetActor_OnPassiveTargetLost"); \ +static_assert(sizeof(WrestlerPassiveTargetActor_OnPassiveTargetLost) == 0x000008, "Wrong size on WrestlerPassiveTargetActor_OnPassiveTargetLost"); \ +static_assert(offsetof(WrestlerPassiveTargetActor_OnPassiveTargetLost, lostTarget) == 0x000000, "Member 'WrestlerPassiveTargetActor_OnPassiveTargetLost::lostTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetActor_GetFilterInterface \ +static_assert(alignof(WrestlerPassiveTargetActor_GetFilterInterface) == 0x000008, "Wrong alignment on WrestlerPassiveTargetActor_GetFilterInterface"); \ +static_assert(sizeof(WrestlerPassiveTargetActor_GetFilterInterface) == 0x000008, "Wrong size on WrestlerPassiveTargetActor_GetFilterInterface"); \ +static_assert(offsetof(WrestlerPassiveTargetActor_GetFilterInterface, ReturnValue) == 0x000000, "Member 'WrestlerPassiveTargetActor_GetFilterInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerPassiveTargetActor \ +static_assert(alignof(IWrestlerPassiveTargetActor) == 0x000001, "Wrong alignment on IWrestlerPassiveTargetActor"); \ +static_assert(sizeof(IWrestlerPassiveTargetActor) == 0x000001, "Wrong size on IWrestlerPassiveTargetActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMultipleOptionWidget \ +static_assert(alignof(UWrestlerMultipleOptionWidget) == 0x000008, "Wrong alignment on UWrestlerMultipleOptionWidget"); \ +static_assert(sizeof(UWrestlerMultipleOptionWidget) == 0x000380, "Wrong size on UWrestlerMultipleOptionWidget"); \ +static_assert(offsetof(UWrestlerMultipleOptionWidget, OnSettingChangedCallback) == 0x000360, "Member 'UWrestlerMultipleOptionWidget::OnSettingChangedCallback' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMultipleOptionWidget, SettingProperty) == 0x000370, "Member 'UWrestlerMultipleOptionWidget::SettingProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMultipleOptionWidget, SettingsSwitcher) == 0x000378, "Member 'UWrestlerMultipleOptionWidget::SettingsSwitcher' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex \ +static_assert(alignof(WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex) == 0x000008, "Wrong alignment on WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex"); \ +static_assert(sizeof(WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex) == 0x000018, "Wrong size on WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex"); \ +static_assert(offsetof(WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex, InIndex) == 0x000000, "Member 'WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex::InIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex, ReturnValue) == 0x000008, "Member 'WrestlerLanguageSelectorWidget_GetCurrentLanguageByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLanguageSelectorWidget \ +static_assert(alignof(UWrestlerLanguageSelectorWidget) == 0x000008, "Wrong alignment on UWrestlerLanguageSelectorWidget"); \ +static_assert(sizeof(UWrestlerLanguageSelectorWidget) == 0x0003E0, "Wrong size on UWrestlerLanguageSelectorWidget"); \ +static_assert(offsetof(UWrestlerLanguageSelectorWidget, Box) == 0x000380, "Member 'UWrestlerLanguageSelectorWidget::Box' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLanguageSelectorWidget, LanguageTextFont) == 0x000388, "Member 'UWrestlerLanguageSelectorWidget::LanguageTextFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_AddQuestObjectives \ +static_assert(alignof(WrestlerQuestProgressComponent_AddQuestObjectives) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_AddQuestObjectives"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_AddQuestObjectives) == 0x000018, "Wrong size on WrestlerQuestProgressComponent_AddQuestObjectives"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_AddQuestObjectives, InQuestTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_AddQuestObjectives::InQuestTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_AddQuestObjectives, InObjectives) == 0x000008, "Member 'WrestlerQuestProgressComponent_AddQuestObjectives::InObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_EnableObjectiveCounter \ +static_assert(alignof(WrestlerQuestProgressComponent_EnableObjectiveCounter) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_EnableObjectiveCounter"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_EnableObjectiveCounter) == 0x000028, "Wrong size on WrestlerQuestProgressComponent_EnableObjectiveCounter"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_EnableObjectiveCounter, InPropertyToTrack) == 0x000000, "Member 'WrestlerQuestProgressComponent_EnableObjectiveCounter::InPropertyToTrack' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_EnableObjectiveCounter, InTextToDisplay) == 0x000008, "Member 'WrestlerQuestProgressComponent_EnableObjectiveCounter::InTextToDisplay' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_EnableObjectiveCounter, InTotalCount) == 0x000020, "Member 'WrestlerQuestProgressComponent_EnableObjectiveCounter::InTotalCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_EnableTimer \ +static_assert(alignof(WrestlerQuestProgressComponent_EnableTimer) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_EnableTimer"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_EnableTimer) == 0x000020, "Wrong size on WrestlerQuestProgressComponent_EnableTimer"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_EnableTimer, InTimer) == 0x000000, "Member 'WrestlerQuestProgressComponent_EnableTimer::InTimer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_EnableTimer, InTextToShow) == 0x000008, "Member 'WrestlerQuestProgressComponent_EnableTimer::InTextToShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_GetObjectiveTimerFailed \ +static_assert(alignof(WrestlerQuestProgressComponent_GetObjectiveTimerFailed) == 0x000001, "Wrong alignment on WrestlerQuestProgressComponent_GetObjectiveTimerFailed"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_GetObjectiveTimerFailed) == 0x000001, "Wrong size on WrestlerQuestProgressComponent_GetObjectiveTimerFailed"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_GetObjectiveTimerFailed, ReturnValue) == 0x000000, "Member 'WrestlerQuestProgressComponent_GetObjectiveTimerFailed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_MarkQuestComplete \ +static_assert(alignof(WrestlerQuestProgressComponent_MarkQuestComplete) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_MarkQuestComplete"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_MarkQuestComplete) == 0x000010, "Wrong size on WrestlerQuestProgressComponent_MarkQuestComplete"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_MarkQuestComplete, Quest) == 0x000000, "Member 'WrestlerQuestProgressComponent_MarkQuestComplete::Quest' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_MarkQuestComplete, InNewActiveQuest) == 0x000008, "Member 'WrestlerQuestProgressComponent_MarkQuestComplete::InNewActiveQuest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_OnMasqueradeLevelChange \ +static_assert(alignof(WrestlerQuestProgressComponent_OnMasqueradeLevelChange) == 0x000004, "Wrong alignment on WrestlerQuestProgressComponent_OnMasqueradeLevelChange"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_OnMasqueradeLevelChange) == 0x000004, "Wrong size on WrestlerQuestProgressComponent_OnMasqueradeLevelChange"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OnMasqueradeLevelChange, InNewMasqueradeLevel) == 0x000000, "Member 'WrestlerQuestProgressComponent_OnMasqueradeLevelChange::InNewMasqueradeLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_OnWaypointAdded \ +static_assert(alignof(WrestlerQuestProgressComponent_OnWaypointAdded) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_OnWaypointAdded"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_OnWaypointAdded) == 0x000018, "Wrong size on WrestlerQuestProgressComponent_OnWaypointAdded"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OnWaypointAdded, InTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_OnWaypointAdded::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OnWaypointAdded, InObject) == 0x000010, "Member 'WrestlerQuestProgressComponent_OnWaypointAdded::InObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_OpenNewQuest \ +static_assert(alignof(WrestlerQuestProgressComponent_OpenNewQuest) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_OpenNewQuest"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_OpenNewQuest) == 0x000020, "Wrong size on WrestlerQuestProgressComponent_OpenNewQuest"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuest, InNewQuest) == 0x000000, "Member 'WrestlerQuestProgressComponent_OpenNewQuest::InNewQuest' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuest, InAdditionalQuestObjectives) == 0x000008, "Member 'WrestlerQuestProgressComponent_OpenNewQuest::InAdditionalQuestObjectives' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuest, bSetAsActiveQuest) == 0x000018, "Member 'WrestlerQuestProgressComponent_OpenNewQuest::bSetAsActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuest, ReturnValue) == 0x000019, "Member 'WrestlerQuestProgressComponent_OpenNewQuest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective \ +static_assert(alignof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective) == 0x000030, "Wrong size on WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective, InNewQuest) == 0x000000, "Member 'WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective::InNewQuest' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective, InInitialObjective) == 0x000008, "Member 'WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective::InInitialObjective' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective, InAdditionalQuestObjectives) == 0x000018, "Member 'WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective::InAdditionalQuestObjectives' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective, bSetAsActiveQuest) == 0x000028, "Member 'WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective::bSetAsActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective, ReturnValue) == 0x000029, "Member 'WrestlerQuestProgressComponent_OpenNewQuestWithInitialObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_RemoveQuestObjectives \ +static_assert(alignof(WrestlerQuestProgressComponent_RemoveQuestObjectives) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_RemoveQuestObjectives"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_RemoveQuestObjectives) == 0x000018, "Wrong size on WrestlerQuestProgressComponent_RemoveQuestObjectives"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_RemoveQuestObjectives, InQuestTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_RemoveQuestObjectives::InQuestTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_RemoveQuestObjectives, InObjectives) == 0x000008, "Member 'WrestlerQuestProgressComponent_RemoveQuestObjectives::InObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest \ +static_assert(alignof(WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest) == 0x000018, "Wrong size on WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest, InQuestTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest::InQuestTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest, InObjective) == 0x000008, "Member 'WrestlerQuestProgressComponent_SetCurrentObjectiveForQuest::InObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_SetNewActiveQuest \ +static_assert(alignof(WrestlerQuestProgressComponent_SetNewActiveQuest) == 0x000004, "Wrong alignment on WrestlerQuestProgressComponent_SetNewActiveQuest"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_SetNewActiveQuest) == 0x000008, "Wrong size on WrestlerQuestProgressComponent_SetNewActiveQuest"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetNewActiveQuest, InNewActiveQuestGT) == 0x000000, "Member 'WrestlerQuestProgressComponent_SetNewActiveQuest::InNewActiveQuestGT' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_SetObjectiveTimerFailed \ +static_assert(alignof(WrestlerQuestProgressComponent_SetObjectiveTimerFailed) == 0x000001, "Wrong alignment on WrestlerQuestProgressComponent_SetObjectiveTimerFailed"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_SetObjectiveTimerFailed) == 0x000001, "Wrong size on WrestlerQuestProgressComponent_SetObjectiveTimerFailed"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetObjectiveTimerFailed, bInFailed) == 0x000000, "Member 'WrestlerQuestProgressComponent_SetObjectiveTimerFailed::bInFailed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_SetQuestObjectives \ +static_assert(alignof(WrestlerQuestProgressComponent_SetQuestObjectives) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_SetQuestObjectives"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_SetQuestObjectives) == 0x000018, "Wrong size on WrestlerQuestProgressComponent_SetQuestObjectives"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetQuestObjectives, InQuestTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_SetQuestObjectives::InQuestTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetQuestObjectives, InObjectives) == 0x000008, "Member 'WrestlerQuestProgressComponent_SetQuestObjectives::InObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_SetWaypointForCurrentObjective \ +static_assert(alignof(WrestlerQuestProgressComponent_SetWaypointForCurrentObjective) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_SetWaypointForCurrentObjective"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_SetWaypointForCurrentObjective) == 0x000008, "Wrong size on WrestlerQuestProgressComponent_SetWaypointForCurrentObjective"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_SetWaypointForCurrentObjective, InActorToTag) == 0x000000, "Member 'WrestlerQuestProgressComponent_SetWaypointForCurrentObjective::InActorToTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_GetActiveQuestTag \ +static_assert(alignof(WrestlerQuestProgressComponent_GetActiveQuestTag) == 0x000004, "Wrong alignment on WrestlerQuestProgressComponent_GetActiveQuestTag"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_GetActiveQuestTag) == 0x000008, "Wrong size on WrestlerQuestProgressComponent_GetActiveQuestTag"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_GetActiveQuestTag, ReturnValue) == 0x000000, "Member 'WrestlerQuestProgressComponent_GetActiveQuestTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_GetCompletedQuestTags \ +static_assert(alignof(WrestlerQuestProgressComponent_GetCompletedQuestTags) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_GetCompletedQuestTags"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_GetCompletedQuestTags) == 0x000010, "Wrong size on WrestlerQuestProgressComponent_GetCompletedQuestTags"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_GetCompletedQuestTags, ReturnValue) == 0x000000, "Member 'WrestlerQuestProgressComponent_GetCompletedQuestTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_GetOpenQuestTags \ +static_assert(alignof(WrestlerQuestProgressComponent_GetOpenQuestTags) == 0x000008, "Wrong alignment on WrestlerQuestProgressComponent_GetOpenQuestTags"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_GetOpenQuestTags) == 0x000010, "Wrong size on WrestlerQuestProgressComponent_GetOpenQuestTags"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_GetOpenQuestTags, ReturnValue) == 0x000000, "Member 'WrestlerQuestProgressComponent_GetOpenQuestTags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestProgressComponent_HasValidActiveQuest \ +static_assert(alignof(WrestlerQuestProgressComponent_HasValidActiveQuest) == 0x000001, "Wrong alignment on WrestlerQuestProgressComponent_HasValidActiveQuest"); \ +static_assert(sizeof(WrestlerQuestProgressComponent_HasValidActiveQuest) == 0x000001, "Wrong size on WrestlerQuestProgressComponent_HasValidActiveQuest"); \ +static_assert(offsetof(WrestlerQuestProgressComponent_HasValidActiveQuest, ReturnValue) == 0x000000, "Member 'WrestlerQuestProgressComponent_HasValidActiveQuest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestProgressComponent \ +static_assert(alignof(UWrestlerQuestProgressComponent) == 0x000008, "Wrong alignment on UWrestlerQuestProgressComponent"); \ +static_assert(sizeof(UWrestlerQuestProgressComponent) == 0x000210, "Wrong size on UWrestlerQuestProgressComponent"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, QuestProgressWidgetClass) == 0x0000A0, "Member 'UWrestlerQuestProgressComponent::QuestProgressWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, QuestProgressWidgetSlotName) == 0x0000A8, "Member 'UWrestlerQuestProgressComponent::QuestProgressWidgetSlotName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, ActiveQuestTagProperty) == 0x0000B0, "Member 'UWrestlerQuestProgressComponent::ActiveQuestTagProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, OnNewActiveQuestSetDelegate) == 0x0000E8, "Member 'UWrestlerQuestProgressComponent::OnNewActiveQuestSetDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, OpenQuestsData) == 0x000198, "Member 'UWrestlerQuestProgressComponent::OpenQuestsData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestProgressComponent, RegisteredPathForQuest) == 0x0001B8, "Member 'UWrestlerQuestProgressComponent::RegisteredPathForQuest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged \ +static_assert(alignof(WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged) == 0x000001, "Wrong alignment on WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged"); \ +static_assert(sizeof(WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged) == 0x000001, "Wrong size on WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged"); \ +static_assert(offsetof(WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged, bInNewValue) == 0x000000, "Member 'WrestlerLevelStreamingVolume_OnStreamingVolumeEnabledPropertyChanged::bInNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerLevelStreamingVolume \ +static_assert(alignof(AWrestlerLevelStreamingVolume) == 0x000008, "Wrong alignment on AWrestlerLevelStreamingVolume"); \ +static_assert(sizeof(AWrestlerLevelStreamingVolume) == 0x0002F8, "Wrong size on AWrestlerLevelStreamingVolume"); \ +static_assert(offsetof(AWrestlerLevelStreamingVolume, StreamingVolumeEnabledPropertyComponent) == 0x0002E8, "Member 'AWrestlerLevelStreamingVolume::StreamingVolumeEnabledPropertyComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLevelStreamingVolume, HeraMissionActorComponent) == 0x0002F0, "Member 'AWrestlerLevelStreamingVolume::HeraMissionActorComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSmartObjectComponent \ +static_assert(alignof(UWrestlerSmartObjectComponent) == 0x000010, "Wrong alignment on UWrestlerSmartObjectComponent"); \ +static_assert(sizeof(UWrestlerSmartObjectComponent) == 0x0003C0, "Wrong size on UWrestlerSmartObjectComponent"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, bReservedSmartObject) == 0x0002F0, "Member 'UWrestlerSmartObjectComponent::bReservedSmartObject' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, bSpawnEntityAtSmartObject) == 0x000321, "Member 'UWrestlerSmartObjectComponent::bSpawnEntityAtSmartObject' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, TimeToReserveSOAfterSpawning) == 0x000324, "Member 'UWrestlerSmartObjectComponent::TimeToReserveSOAfterSpawning' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, CachedSlotUseTransforms) == 0x000330, "Member 'UWrestlerSmartObjectComponent::CachedSlotUseTransforms' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, EntityConfigsPerSlot) == 0x000340, "Member 'UWrestlerSmartObjectComponent::EntityConfigsPerSlot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, EntityConfig) == 0x000350, "Member 'UWrestlerSmartObjectComponent::EntityConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, EntityConfigSlot2) == 0x000378, "Member 'UWrestlerSmartObjectComponent::EntityConfigSlot2' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, SOTag) == 0x0003A0, "Member 'UWrestlerSmartObjectComponent::SOTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, bMustMatchTagToUse) == 0x0003A8, "Member 'UWrestlerSmartObjectComponent::bMustMatchTagToUse' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSmartObjectComponent, bAutoDestroyOnceUsed) == 0x0003A9, "Member 'UWrestlerSmartObjectComponent::bAutoDestroyOnceUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorBase_OnLightEnabledChanged \ +static_assert(alignof(WrestlerLightActorBase_OnLightEnabledChanged) == 0x000008, "Wrong alignment on WrestlerLightActorBase_OnLightEnabledChanged"); \ +static_assert(sizeof(WrestlerLightActorBase_OnLightEnabledChanged) == 0x000010, "Wrong size on WrestlerLightActorBase_OnLightEnabledChanged"); \ +static_assert(offsetof(WrestlerLightActorBase_OnLightEnabledChanged, InComponent) == 0x000000, "Member 'WrestlerLightActorBase_OnLightEnabledChanged::InComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLightActorBase_OnLightEnabledChanged, bIsEnabled) == 0x000008, "Member 'WrestlerLightActorBase_OnLightEnabledChanged::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerLightActorBase \ +static_assert(alignof(AWrestlerLightActorBase) == 0x000008, "Wrong alignment on AWrestlerLightActorBase"); \ +static_assert(sizeof(AWrestlerLightActorBase) == 0x0002E8, "Wrong size on AWrestlerLightActorBase"); \ +static_assert(offsetof(AWrestlerLightActorBase, MainLights) == 0x0002A0, "Member 'AWrestlerLightActorBase::MainLights' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, SecondaryLights) == 0x0002A8, "Member 'AWrestlerLightActorBase::SecondaryLights' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, Audio) == 0x0002B0, "Member 'AWrestlerLightActorBase::Audio' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, FixedLightTickRate) == 0x0002B8, "Member 'AWrestlerLightActorBase::FixedLightTickRate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, AudioIntensityRTPC) == 0x0002C0, "Member 'AWrestlerLightActorBase::AudioIntensityRTPC' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, AddToSignificanceManager) == 0x0002C8, "Member 'AWrestlerLightActorBase::AddToSignificanceManager' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightActorBase, SignificanceTag) == 0x0002CC, "Member 'AWrestlerLightActorBase::SignificanceTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetIntensityUnits \ +static_assert(alignof(WrestlerLightActorComponent_GetIntensityUnits) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetIntensityUnits"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetIntensityUnits) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetIntensityUnits"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetIntensityUnits, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetCastShadows \ +static_assert(alignof(WrestlerLightActorComponent_SetCastShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetCastShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetCastShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetCastShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetCastShadows, bInCastShadows) == 0x000000, "Member 'WrestlerLightActorComponent_SetCastShadows::bInCastShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetCastVolumetricShadows \ +static_assert(alignof(WrestlerLightActorComponent_SetCastVolumetricShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetCastVolumetricShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetCastVolumetricShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetCastVolumetricShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetCastVolumetricShadows, bInCastVolumetricShadows) == 0x000000, "Member 'WrestlerLightActorComponent_SetCastVolumetricShadows::bInCastVolumetricShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetColour \ +static_assert(alignof(WrestlerLightActorComponent_SetColour) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetColour) == 0x000010, "Wrong size on WrestlerLightActorComponent_SetColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetColour, InColour) == 0x000000, "Member 'WrestlerLightActorComponent_SetColour::InColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetEmissiveColour \ +static_assert(alignof(WrestlerLightActorComponent_SetEmissiveColour) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetEmissiveColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetEmissiveColour) == 0x000010, "Wrong size on WrestlerLightActorComponent_SetEmissiveColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetEmissiveColour, InEmissiveColour) == 0x000000, "Member 'WrestlerLightActorComponent_SetEmissiveColour::InEmissiveColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetEmissiveIntensity \ +static_assert(alignof(WrestlerLightActorComponent_SetEmissiveIntensity) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetEmissiveIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetEmissiveIntensity) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetEmissiveIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetEmissiveIntensity, InEmissiveIntensity) == 0x000000, "Member 'WrestlerLightActorComponent_SetEmissiveIntensity::InEmissiveIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetEnabled \ +static_assert(alignof(WrestlerLightActorComponent_SetEnabled) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetEnabled"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetEnabled) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetEnabled"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetEnabled, bInEnabled) == 0x000000, "Member 'WrestlerLightActorComponent_SetEnabled::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetEnabledAffectsEmissive \ +static_assert(alignof(WrestlerLightActorComponent_SetEnabledAffectsEmissive) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetEnabledAffectsEmissive"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetEnabledAffectsEmissive) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetEnabledAffectsEmissive"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetEnabledAffectsEmissive, bInAffectsEmissive) == 0x000000, "Member 'WrestlerLightActorComponent_SetEnabledAffectsEmissive::bInAffectsEmissive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetFlickerCurve \ +static_assert(alignof(WrestlerLightActorComponent_SetFlickerCurve) == 0x000008, "Wrong alignment on WrestlerLightActorComponent_SetFlickerCurve"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetFlickerCurve) == 0x000008, "Wrong size on WrestlerLightActorComponent_SetFlickerCurve"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetFlickerCurve, InCurve) == 0x000000, "Member 'WrestlerLightActorComponent_SetFlickerCurve::InCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetFlickerCurveOffset \ +static_assert(alignof(WrestlerLightActorComponent_SetFlickerCurveOffset) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetFlickerCurveOffset"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetFlickerCurveOffset) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetFlickerCurveOffset"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetFlickerCurveOffset, InOffset) == 0x000000, "Member 'WrestlerLightActorComponent_SetFlickerCurveOffset::InOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetFlickerEnabled \ +static_assert(alignof(WrestlerLightActorComponent_SetFlickerEnabled) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetFlickerEnabled"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetFlickerEnabled) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetFlickerEnabled"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetFlickerEnabled, bInState) == 0x000000, "Member 'WrestlerLightActorComponent_SetFlickerEnabled::bInState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetFlickerIntensityMultiplier \ +static_assert(alignof(WrestlerLightActorComponent_SetFlickerIntensityMultiplier) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetFlickerIntensityMultiplier"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetFlickerIntensityMultiplier) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetFlickerIntensityMultiplier"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetFlickerIntensityMultiplier, InMultiplier) == 0x000000, "Member 'WrestlerLightActorComponent_SetFlickerIntensityMultiplier::InMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetFlickerSpeed \ +static_assert(alignof(WrestlerLightActorComponent_SetFlickerSpeed) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetFlickerSpeed"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetFlickerSpeed) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetFlickerSpeed"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetFlickerSpeed, InSpeed) == 0x000000, "Member 'WrestlerLightActorComponent_SetFlickerSpeed::InSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetIntensity \ +static_assert(alignof(WrestlerLightActorComponent_SetIntensity) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetIntensity) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetIntensity, InIntensity) == 0x000000, "Member 'WrestlerLightActorComponent_SetIntensity::InIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetMaxDistanceFadeRange \ +static_assert(alignof(WrestlerLightActorComponent_SetMaxDistanceFadeRange) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetMaxDistanceFadeRange"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetMaxDistanceFadeRange) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetMaxDistanceFadeRange"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetMaxDistanceFadeRange, InMaxDistanceFadeRange) == 0x000000, "Member 'WrestlerLightActorComponent_SetMaxDistanceFadeRange::InMaxDistanceFadeRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetMaxDrawDistance \ +static_assert(alignof(WrestlerLightActorComponent_SetMaxDrawDistance) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_SetMaxDrawDistance"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetMaxDrawDistance) == 0x000004, "Wrong size on WrestlerLightActorComponent_SetMaxDrawDistance"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetMaxDrawDistance, InMaxDrawDistance) == 0x000000, "Member 'WrestlerLightActorComponent_SetMaxDrawDistance::InMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideCastShadows \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideCastShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideCastShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideCastShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideCastShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideCastShadows, bInOverrideCastShadows) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideCastShadows::bInOverrideCastShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideCastVolumetricShadows \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideCastVolumetricShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideCastVolumetricShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideCastVolumetricShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideCastVolumetricShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideCastVolumetricShadows, bInOverrideCastVolumetricShadows) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideCastVolumetricShadows::bInOverrideCastVolumetricShadows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideColour \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideColour) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideColour) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideColour, bInOverrideColour) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideColour::bInOverrideColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideEmissiveColour \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideEmissiveColour) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideEmissiveColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideEmissiveColour) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideEmissiveColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideEmissiveColour, bInOverrideEmissiveColour) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideEmissiveColour::bInOverrideEmissiveColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideEmissiveIntensity \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideEmissiveIntensity) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideEmissiveIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideEmissiveIntensity) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideEmissiveIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideEmissiveIntensity, bInOverrideEmissiveIntensity) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideEmissiveIntensity::bInOverrideEmissiveIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideIntensity \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideIntensity) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideIntensity) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideIntensity, bInOverrideIntensity) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideIntensity::bInOverrideIntensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideIntensityUnits \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideIntensityUnits) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideIntensityUnits"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideIntensityUnits) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideIntensityUnits"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideIntensityUnits, bInOverrideIntensityUnits) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideIntensityUnits::bInOverrideIntensityUnits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange, bInOverrideMaxDistanceFadeRange) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideMaxDistanceFadeRange::bInOverrideMaxDistanceFadeRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_SetOverrideMaxDrawDistance \ +static_assert(alignof(WrestlerLightActorComponent_SetOverrideMaxDrawDistance) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_SetOverrideMaxDrawDistance"); \ +static_assert(sizeof(WrestlerLightActorComponent_SetOverrideMaxDrawDistance) == 0x000001, "Wrong size on WrestlerLightActorComponent_SetOverrideMaxDrawDistance"); \ +static_assert(offsetof(WrestlerLightActorComponent_SetOverrideMaxDrawDistance, bInOverrideMaxDrawDistance) == 0x000000, "Member 'WrestlerLightActorComponent_SetOverrideMaxDrawDistance::bInOverrideMaxDrawDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetCastShadows \ +static_assert(alignof(WrestlerLightActorComponent_GetCastShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetCastShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetCastShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetCastShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetCastShadows, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetCastShadows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetCastVolumetricShadows \ +static_assert(alignof(WrestlerLightActorComponent_GetCastVolumetricShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetCastVolumetricShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetCastVolumetricShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetCastVolumetricShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetCastVolumetricShadows, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetCastVolumetricShadows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetColour \ +static_assert(alignof(WrestlerLightActorComponent_GetColour) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetColour) == 0x000010, "Wrong size on WrestlerLightActorComponent_GetColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetColour, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetColour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEmissiveColour \ +static_assert(alignof(WrestlerLightActorComponent_GetEmissiveColour) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetEmissiveColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEmissiveColour) == 0x000010, "Wrong size on WrestlerLightActorComponent_GetEmissiveColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEmissiveColour, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEmissiveColour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName \ +static_assert(alignof(WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName) == 0x000008, "Wrong size on WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEmissiveColourMaterialParameterName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEmissiveIntensity \ +static_assert(alignof(WrestlerLightActorComponent_GetEmissiveIntensity) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetEmissiveIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEmissiveIntensity) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetEmissiveIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEmissiveIntensity, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEmissiveIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName \ +static_assert(alignof(WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName) == 0x000008, "Wrong size on WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEmissiveIntensityMaterialParameterName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEnabled \ +static_assert(alignof(WrestlerLightActorComponent_GetEnabled) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetEnabled"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEnabled) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetEnabled"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEnabled, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetEnabledAffectsEmissive \ +static_assert(alignof(WrestlerLightActorComponent_GetEnabledAffectsEmissive) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetEnabledAffectsEmissive"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetEnabledAffectsEmissive) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetEnabledAffectsEmissive"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetEnabledAffectsEmissive, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetEnabledAffectsEmissive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetFlickerCurve \ +static_assert(alignof(WrestlerLightActorComponent_GetFlickerCurve) == 0x000008, "Wrong alignment on WrestlerLightActorComponent_GetFlickerCurve"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetFlickerCurve) == 0x000008, "Wrong size on WrestlerLightActorComponent_GetFlickerCurve"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetFlickerCurve, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetFlickerCurve::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetFlickerCurveOffset \ +static_assert(alignof(WrestlerLightActorComponent_GetFlickerCurveOffset) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetFlickerCurveOffset"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetFlickerCurveOffset) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetFlickerCurveOffset"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetFlickerCurveOffset, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetFlickerCurveOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetFlickerEnabled \ +static_assert(alignof(WrestlerLightActorComponent_GetFlickerEnabled) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetFlickerEnabled"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetFlickerEnabled) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetFlickerEnabled"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetFlickerEnabled, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetFlickerEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetFlickerIntensityMultiplier \ +static_assert(alignof(WrestlerLightActorComponent_GetFlickerIntensityMultiplier) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetFlickerIntensityMultiplier"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetFlickerIntensityMultiplier) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetFlickerIntensityMultiplier"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetFlickerIntensityMultiplier, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetFlickerIntensityMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetFlickerSpeed \ +static_assert(alignof(WrestlerLightActorComponent_GetFlickerSpeed) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetFlickerSpeed"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetFlickerSpeed) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetFlickerSpeed"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetFlickerSpeed, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetFlickerSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetIntensity \ +static_assert(alignof(WrestlerLightActorComponent_GetIntensity) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetIntensity) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetIntensity, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetLightComponents \ +static_assert(alignof(WrestlerLightActorComponent_GetLightComponents) == 0x000008, "Wrong alignment on WrestlerLightActorComponent_GetLightComponents"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetLightComponents) == 0x000010, "Wrong size on WrestlerLightActorComponent_GetLightComponents"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetLightComponents, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetLightComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetMaxDistanceFadeRange \ +static_assert(alignof(WrestlerLightActorComponent_GetMaxDistanceFadeRange) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetMaxDistanceFadeRange"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetMaxDistanceFadeRange) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetMaxDistanceFadeRange"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetMaxDistanceFadeRange, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetMaxDistanceFadeRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetMaxDrawDistance \ +static_assert(alignof(WrestlerLightActorComponent_GetMaxDrawDistance) == 0x000004, "Wrong alignment on WrestlerLightActorComponent_GetMaxDrawDistance"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetMaxDrawDistance) == 0x000004, "Wrong size on WrestlerLightActorComponent_GetMaxDrawDistance"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetMaxDrawDistance, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetMaxDrawDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideCastShadows \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideCastShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideCastShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideCastShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideCastShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideCastShadows, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideCastShadows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideCastVolumetricShadows \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideCastVolumetricShadows) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideCastVolumetricShadows"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideCastVolumetricShadows) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideCastVolumetricShadows"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideCastVolumetricShadows, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideCastVolumetricShadows::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideColour \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideColour) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideColour) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideColour, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideColour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideEmissiveColour \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideEmissiveColour) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideEmissiveColour"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideEmissiveColour) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideEmissiveColour"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideEmissiveColour, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideEmissiveColour::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideEmissiveIntensity \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideEmissiveIntensity) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideEmissiveIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideEmissiveIntensity) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideEmissiveIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideEmissiveIntensity, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideEmissiveIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideIntensity \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideIntensity) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideIntensity"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideIntensity) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideIntensity"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideIntensity, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideIntensityUnits \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideIntensityUnits) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideIntensityUnits"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideIntensityUnits) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideIntensityUnits"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideIntensityUnits, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideMaxDistanceFadeRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightActorComponent_GetOverrideMaxDrawDistance \ +static_assert(alignof(WrestlerLightActorComponent_GetOverrideMaxDrawDistance) == 0x000001, "Wrong alignment on WrestlerLightActorComponent_GetOverrideMaxDrawDistance"); \ +static_assert(sizeof(WrestlerLightActorComponent_GetOverrideMaxDrawDistance) == 0x000001, "Wrong size on WrestlerLightActorComponent_GetOverrideMaxDrawDistance"); \ +static_assert(offsetof(WrestlerLightActorComponent_GetOverrideMaxDrawDistance, ReturnValue) == 0x000000, "Member 'WrestlerLightActorComponent_GetOverrideMaxDrawDistance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLightActorComponent \ +static_assert(alignof(UWrestlerLightActorComponent) == 0x000010, "Wrong alignment on UWrestlerLightActorComponent"); \ +static_assert(sizeof(UWrestlerLightActorComponent) == 0x000390, "Wrong size on UWrestlerLightActorComponent"); \ +static_assert(offsetof(UWrestlerLightActorComponent, OnEnabledChanged) == 0x0002A0, "Member 'UWrestlerLightActorComponent::OnEnabledChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, bEnabled) == 0x0002B0, "Member 'UWrestlerLightActorComponent::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, bEnabledAffectsEmissive) == 0x0002B1, "Member 'UWrestlerLightActorComponent::bEnabledAffectsEmissive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, OverridenLightParameters) == 0x0002B4, "Member 'UWrestlerLightActorComponent::OverridenLightParameters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, OverridenEmissiveParameters) == 0x0002D8, "Member 'UWrestlerLightActorComponent::OverridenEmissiveParameters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, FlickerParameters) == 0x0002F0, "Member 'UWrestlerLightActorComponent::FlickerParameters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, EmissiveIntensityMaterialParameterName) == 0x000310, "Member 'UWrestlerLightActorComponent::EmissiveIntensityMaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, EmissiveColourMaterialParameterName) == 0x000318, "Member 'UWrestlerLightActorComponent::EmissiveColourMaterialParameterName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightActorComponent, EmissiveMIDs) == 0x000320, "Member 'UWrestlerLightActorComponent::EmissiveMIDs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightmaster_EditorTick2 \ +static_assert(alignof(WrestlerLightmaster_EditorTick2) == 0x000004, "Wrong alignment on WrestlerLightmaster_EditorTick2"); \ +static_assert(sizeof(WrestlerLightmaster_EditorTick2) == 0x000004, "Wrong size on WrestlerLightmaster_EditorTick2"); \ +static_assert(offsetof(WrestlerLightmaster_EditorTick2, InDeltaTime) == 0x000000, "Member 'WrestlerLightmaster_EditorTick2::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerLightmaster \ +static_assert(alignof(AWrestlerLightmaster) == 0x000008, "Wrong alignment on AWrestlerLightmaster"); \ +static_assert(sizeof(AWrestlerLightmaster) == 0x0006C0, "Wrong size on AWrestlerLightmaster"); \ +static_assert(offsetof(AWrestlerLightmaster, VFXBurst) == 0x0002E0, "Member 'AWrestlerLightmaster::VFXBurst' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, Lights) == 0x0002E8, "Member 'AWrestlerLightmaster::Lights' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, Meshes) == 0x0002F0, "Member 'AWrestlerLightmaster::Meshes' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, VFX) == 0x0002F8, "Member 'AWrestlerLightmaster::VFX' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, RotationRoot) == 0x000300, "Member 'AWrestlerLightmaster::RotationRoot' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, Root) == 0x000308, "Member 'AWrestlerLightmaster::Root' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, OnFadeTimelineInternal) == 0x000310, "Member 'AWrestlerLightmaster::OnFadeTimelineInternal' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, OffFadeTimelineInternal) == 0x000318, "Member 'AWrestlerLightmaster::OffFadeTimelineInternal' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, FadeOnTimeline) == 0x000320, "Member 'AWrestlerLightmaster::FadeOnTimeline' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, FadeOffTimeline) == 0x000328, "Member 'AWrestlerLightmaster::FadeOffTimeline' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageTimeline) == 0x000330, "Member 'AWrestlerLightmaster::DamageTimeline' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EmissiveMaterialArray) == 0x000338, "Member 'AWrestlerLightmaster::EmissiveMaterialArray' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LampPostVarsArray) == 0x000348, "Member 'AWrestlerLightmaster::LampPostVarsArray' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MeshUndamagedRotation) == 0x000358, "Member 'AWrestlerLightmaster::MeshUndamagedRotation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeRandomFreq) == 0x000370, "Member 'AWrestlerLightmaster::DamageShakeRandomFreq' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeRandomIntensityX) == 0x000378, "Member 'AWrestlerLightmaster::DamageShakeRandomIntensityX' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeRandomIntensityY) == 0x000380, "Member 'AWrestlerLightmaster::DamageShakeRandomIntensityY' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeMultiplier) == 0x000388, "Member 'AWrestlerLightmaster::DamageShakeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeFrequency) == 0x000390, "Member 'AWrestlerLightmaster::DamageShakeFrequency' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageShakeDuration) == 0x000398, "Member 'AWrestlerLightmaster::DamageShakeDuration' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bDamageRandomShake) == 0x0003A0, "Member 'AWrestlerLightmaster::bDamageRandomShake' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bEnableDamage) == 0x0003A1, "Member 'AWrestlerLightmaster::bEnableDamage' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DamageMaxAmount) == 0x0003A8, "Member 'AWrestlerLightmaster::DamageMaxAmount' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DecalMaterial) == 0x0003B0, "Member 'AWrestlerLightmaster::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, BurstParticleArrayNiagara) == 0x0003B8, "Member 'AWrestlerLightmaster::BurstParticleArrayNiagara' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bVFXOn) == 0x0003C8, "Member 'AWrestlerLightmaster::bVFXOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bVFXisOn) == 0x0003C9, "Member 'AWrestlerLightmaster::bVFXisOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bCurveFlickerOn) == 0x0003CA, "Member 'AWrestlerLightmaster::bCurveFlickerOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bCurveFlickerInEditor) == 0x0003CB, "Member 'AWrestlerLightmaster::bCurveFlickerInEditor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bFlickerOnlyAffectsEmissive) == 0x0003CC, "Member 'AWrestlerLightmaster::bFlickerOnlyAffectsEmissive' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, FlickerCurve) == 0x0003D0, "Member 'AWrestlerLightmaster::FlickerCurve' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, FlickerSpeed) == 0x0003D8, "Member 'AWrestlerLightmaster::FlickerSpeed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bFlickeringAffectsTemperature) == 0x0003E0, "Member 'AWrestlerLightmaster::bFlickeringAffectsTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bLightFadesOn) == 0x0003E1, "Member 'AWrestlerLightmaster::bLightFadesOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, OnCurve) == 0x0003E8, "Member 'AWrestlerLightmaster::OnCurve' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightFadeOnMaxSpeed) == 0x0003F0, "Member 'AWrestlerLightmaster::LightFadeOnMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightFadeOnMinSpeed) == 0x0003F8, "Member 'AWrestlerLightmaster::LightFadeOnMinSpeed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bLightFadesOff) == 0x000400, "Member 'AWrestlerLightmaster::bLightFadesOff' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, OffCurve) == 0x000408, "Member 'AWrestlerLightmaster::OffCurve' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, GlobalFlickerValueMultiplier) == 0x000410, "Member 'AWrestlerLightmaster::GlobalFlickerValueMultiplier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, GlobalFlickerIntensityModifier) == 0x000418, "Member 'AWrestlerLightmaster::GlobalFlickerIntensityModifier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bIsFlickerOn_0) == 0x000420, "Member 'AWrestlerLightmaster::bIsFlickerOn_0' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CurrentStormShakeIntensity) == 0x000424, "Member 'AWrestlerLightmaster::CurrentStormShakeIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bFlickerWhenEnergyActorNear) == 0x000428, "Member 'AWrestlerLightmaster::bFlickerWhenEnergyActorNear' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EnergyActorInfluenceMinRadius) == 0x000430, "Member 'AWrestlerLightmaster::EnergyActorInfluenceMinRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EnergyActorInfluenceMaxRadius) == 0x000438, "Member 'AWrestlerLightmaster::EnergyActorInfluenceMaxRadius' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EnergyAlteringActor) == 0x000440, "Member 'AWrestlerLightmaster::EnergyAlteringActor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bEnergyAlteringActorExists) == 0x000448, "Member 'AWrestlerLightmaster::bEnergyAlteringActorExists' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bEnergyActorIsNearby) == 0x000449, "Member 'AWrestlerLightmaster::bEnergyActorIsNearby' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bFlickerOnStormShake) == 0x00044A, "Member 'AWrestlerLightmaster::bFlickerOnStormShake' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EventFlickerDecayRate) == 0x000450, "Member 'AWrestlerLightmaster::EventFlickerDecayRate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, PowerFade) == 0x000458, "Member 'AWrestlerLightmaster::PowerFade' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bPowerFadeAffectsTemperature) == 0x000460, "Member 'AWrestlerLightmaster::bPowerFadeAffectsTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, PowerFadeTemperatureFloor) == 0x000468, "Member 'AWrestlerLightmaster::PowerFadeTemperatureFloor' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bUsesLightmasterValues) == 0x000470, "Member 'AWrestlerLightmaster::bUsesLightmasterValues' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bLightsOn) == 0x000471, "Member 'AWrestlerLightmaster::bLightsOn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EmissiveIntensity) == 0x000478, "Member 'AWrestlerLightmaster::EmissiveIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EmissiveTint) == 0x000480, "Member 'AWrestlerLightmaster::EmissiveTint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MainLightIntensity) == 0x000490, "Member 'AWrestlerLightmaster::MainLightIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MainLightTemperature) == 0x000498, "Member 'AWrestlerLightmaster::MainLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MainLightAttenuation) == 0x0004A0, "Member 'AWrestlerLightmaster::MainLightAttenuation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, BounceLightIntensity) == 0x0004A8, "Member 'AWrestlerLightmaster::BounceLightIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, BounceLightTemperature) == 0x0004B0, "Member 'AWrestlerLightmaster::BounceLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, BounceLightAttenuation) == 0x0004B8, "Member 'AWrestlerLightmaster::BounceLightAttenuation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bEmissiveTintUsesTemperature) == 0x0004C0, "Member 'AWrestlerLightmaster::bEmissiveTintUsesTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bValuesCached) == 0x0004C1, "Member 'AWrestlerLightmaster::bValuesCached' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightIntensityCache) == 0x0004C8, "Member 'AWrestlerLightmaster::LightIntensityCache' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightTemperatureCache) == 0x000518, "Member 'AWrestlerLightmaster::LightTemperatureCache' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, Character) == 0x000568, "Member 'AWrestlerLightmaster::Character' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightComponents) == 0x000570, "Member 'AWrestlerLightmaster::LightComponents' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightComponentData) == 0x000580, "Member 'AWrestlerLightmaster::LightComponentData' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bLightsFound) == 0x000590, "Member 'AWrestlerLightmaster::bLightsFound' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MainLights) == 0x000598, "Member 'AWrestlerLightmaster::MainLights' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, BounceLight) == 0x0005A8, "Member 'AWrestlerLightmaster::BounceLight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MeshComponents) == 0x0005B0, "Member 'AWrestlerLightmaster::MeshComponents' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EmissiveLightMeshes) == 0x0005C0, "Member 'AWrestlerLightmaster::EmissiveLightMeshes' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, DynamicEmissiveMaterials) == 0x0005D0, "Member 'AWrestlerLightmaster::DynamicEmissiveMaterials' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bNoDynamicMaterials) == 0x0005E0, "Member 'AWrestlerLightmaster::bNoDynamicMaterials' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, OriginalAverageLightTemperature) == 0x0005E8, "Member 'AWrestlerLightmaster::OriginalAverageLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, SumOfTemperatures) == 0x0005F0, "Member 'AWrestlerLightmaster::SumOfTemperatures' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bMeshComponentsFound) == 0x0005F8, "Member 'AWrestlerLightmaster::bMeshComponentsFound' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bSetMeshEmissiveLightSource) == 0x0005F9, "Member 'AWrestlerLightmaster::bSetMeshEmissiveLightSource' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, LightName) == 0x000600, "Member 'AWrestlerLightmaster::LightName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, FlickerCurveLength) == 0x000610, "Member 'AWrestlerLightmaster::FlickerCurveLength' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CachedMaterialSlotNames) == 0x000618, "Member 'AWrestlerLightmaster::CachedMaterialSlotNames' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, PlayerMinimumTickDistance) == 0x000628, "Member 'AWrestlerLightmaster::PlayerMinimumTickDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MaxDrawDistance) == 0x000630, "Member 'AWrestlerLightmaster::MaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, MaxFadeDistance) == 0x000638, "Member 'AWrestlerLightmaster::MaxFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CharacterFindTimer) == 0x000640, "Member 'AWrestlerLightmaster::CharacterFindTimer' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, EnergyActorFindCounter) == 0x000648, "Member 'AWrestlerLightmaster::EnergyActorFindCounter' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CurrentFadeValue) == 0x000650, "Member 'AWrestlerLightmaster::CurrentFadeValue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CurrentLightTemperature) == 0x000658, "Member 'AWrestlerLightmaster::CurrentLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, ElapsedTime) == 0x000660, "Member 'AWrestlerLightmaster::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CurrentRigShakeIntensity) == 0x000668, "Member 'AWrestlerLightmaster::CurrentRigShakeIntensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bIsFlickering) == 0x00066C, "Member 'AWrestlerLightmaster::bIsFlickering' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, bLightIsChangingState) == 0x00066D, "Member 'AWrestlerLightmaster::bLightIsChangingState' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightmaster, CachedTemperature) == 0x000670, "Member 'AWrestlerLightmaster::CachedTemperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectSpawnerSubsystem \ +static_assert(alignof(UWrestlerMassSmartObjectSpawnerSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectSpawnerSubsystem"); \ +static_assert(sizeof(UWrestlerMassSmartObjectSpawnerSubsystem) == 0x000108, "Wrong size on UWrestlerMassSmartObjectSpawnerSubsystem"); \ +static_assert(offsetof(UWrestlerMassSmartObjectSpawnerSubsystem, SpawnedSmartObjects) == 0x000068, "Member 'UWrestlerMassSmartObjectSpawnerSubsystem::SpawnedSmartObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerLightVisibilityGroup \ +static_assert(alignof(AWrestlerLightVisibilityGroup) == 0x000008, "Wrong alignment on AWrestlerLightVisibilityGroup"); \ +static_assert(sizeof(AWrestlerLightVisibilityGroup) == 0x0002B0, "Wrong size on AWrestlerLightVisibilityGroup"); \ +static_assert(offsetof(AWrestlerLightVisibilityGroup, AttachedLights) == 0x000298, "Member 'AWrestlerLightVisibilityGroup::AttachedLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionHearingThreshold \ +static_assert(alignof(UWrestlerStateTreeConditionHearingThreshold) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionHearingThreshold"); \ +static_assert(sizeof(UWrestlerStateTreeConditionHearingThreshold) == 0x000050, "Wrong size on UWrestlerStateTreeConditionHearingThreshold"); \ +static_assert(offsetof(UWrestlerStateTreeConditionHearingThreshold, Threshold) == 0x000048, "Member 'UWrestlerStateTreeConditionHearingThreshold::Threshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightVisibilityVolume_SetVisibilityMode \ +static_assert(alignof(WrestlerLightVisibilityVolume_SetVisibilityMode) == 0x000001, "Wrong alignment on WrestlerLightVisibilityVolume_SetVisibilityMode"); \ +static_assert(sizeof(WrestlerLightVisibilityVolume_SetVisibilityMode) == 0x000001, "Wrong size on WrestlerLightVisibilityVolume_SetVisibilityMode"); \ +static_assert(offsetof(WrestlerLightVisibilityVolume_SetVisibilityMode, InNewMode) == 0x000000, "Member 'WrestlerLightVisibilityVolume_SetVisibilityMode::InNewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLightVisibilityVolume_IsPlayerWithin \ +static_assert(alignof(WrestlerLightVisibilityVolume_IsPlayerWithin) == 0x000001, "Wrong alignment on WrestlerLightVisibilityVolume_IsPlayerWithin"); \ +static_assert(sizeof(WrestlerLightVisibilityVolume_IsPlayerWithin) == 0x000002, "Wrong size on WrestlerLightVisibilityVolume_IsPlayerWithin"); \ +static_assert(offsetof(WrestlerLightVisibilityVolume_IsPlayerWithin, bInAssumeIfNoPlayer) == 0x000000, "Member 'WrestlerLightVisibilityVolume_IsPlayerWithin::bInAssumeIfNoPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLightVisibilityVolume_IsPlayerWithin, ReturnValue) == 0x000001, "Member 'WrestlerLightVisibilityVolume_IsPlayerWithin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerLightVisibilityVolume \ +static_assert(alignof(AWrestlerLightVisibilityVolume) == 0x000008, "Wrong alignment on AWrestlerLightVisibilityVolume"); \ +static_assert(sizeof(AWrestlerLightVisibilityVolume) == 0x000308, "Wrong size on AWrestlerLightVisibilityVolume"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, bManageAttachedActors) == 0x0002D0, "Member 'AWrestlerLightVisibilityVolume::bManageAttachedActors' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, VisibilityMode) == 0x0002D1, "Member 'AWrestlerLightVisibilityVolume::VisibilityMode' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, FadeTime) == 0x0002D4, "Member 'AWrestlerLightVisibilityVolume::FadeTime' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, ManagedActors) == 0x0002D8, "Member 'AWrestlerLightVisibilityVolume::ManagedActors' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, GlobalGroupsOff) == 0x0002F0, "Member 'AWrestlerLightVisibilityVolume::GlobalGroupsOff' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerLightVisibilityVolume, LightVisibilityVolumeManager) == 0x000300, "Member 'AWrestlerLightVisibilityVolume::LightVisibilityVolumeManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLightVisibilityVolumeManager \ +static_assert(alignof(UWrestlerLightVisibilityVolumeManager) == 0x000008, "Wrong alignment on UWrestlerLightVisibilityVolumeManager"); \ +static_assert(sizeof(UWrestlerLightVisibilityVolumeManager) == 0x0000D8, "Wrong size on UWrestlerLightVisibilityVolumeManager"); \ +static_assert(offsetof(UWrestlerLightVisibilityVolumeManager, PlayerOverlappingVolumes) == 0x000028, "Member 'UWrestlerLightVisibilityVolumeManager::PlayerOverlappingVolumes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightVisibilityVolumeManager, GlobalVisibilityGroups) == 0x000078, "Member 'UWrestlerLightVisibilityVolumeManager::GlobalVisibilityGroups' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLightVisibilityVolumeManager, ManagedLights) == 0x000088, "Member 'UWrestlerLightVisibilityVolumeManager::ManagedLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLoadingScreenWidget_GetTipsArrayForTag \ +static_assert(alignof(WrestlerLoadingScreenWidget_GetTipsArrayForTag) == 0x000008, "Wrong alignment on WrestlerLoadingScreenWidget_GetTipsArrayForTag"); \ +static_assert(sizeof(WrestlerLoadingScreenWidget_GetTipsArrayForTag) == 0x000018, "Wrong size on WrestlerLoadingScreenWidget_GetTipsArrayForTag"); \ +static_assert(offsetof(WrestlerLoadingScreenWidget_GetTipsArrayForTag, InInfoTag) == 0x000000, "Member 'WrestlerLoadingScreenWidget_GetTipsArrayForTag::InInfoTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLoadingScreenWidget_GetTipsArrayForTag, ReturnValue) == 0x000008, "Member 'WrestlerLoadingScreenWidget_GetTipsArrayForTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLoadingScreenWidget \ +static_assert(alignof(UWrestlerLoadingScreenWidget) == 0x000008, "Wrong alignment on UWrestlerLoadingScreenWidget"); \ +static_assert(sizeof(UWrestlerLoadingScreenWidget) == 0x0002D8, "Wrong size on UWrestlerLoadingScreenWidget"); \ +static_assert(offsetof(UWrestlerLoadingScreenWidget, LoadingTipsText) == 0x0002C8, "Member 'UWrestlerLoadingScreenWidget::LoadingTipsText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLoadingScreenWidget, LoadingTipsDataTable) == 0x0002D0, "Member 'UWrestlerLoadingScreenWidget::LoadingTipsDataTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModularCharacter_AssembleCharacterFromProfiles \ +static_assert(alignof(WrestlerModularCharacter_AssembleCharacterFromProfiles) == 0x000008, "Wrong alignment on WrestlerModularCharacter_AssembleCharacterFromProfiles"); \ +static_assert(sizeof(WrestlerModularCharacter_AssembleCharacterFromProfiles) == 0x000020, "Wrong size on WrestlerModularCharacter_AssembleCharacterFromProfiles"); \ +static_assert(offsetof(WrestlerModularCharacter_AssembleCharacterFromProfiles, InModularCharacterProfiles) == 0x000000, "Member 'WrestlerModularCharacter_AssembleCharacterFromProfiles::InModularCharacterProfiles' has a wrong offset!"); \ +static_assert(offsetof(WrestlerModularCharacter_AssembleCharacterFromProfiles, InSkeletalMesh) == 0x000010, "Member 'WrestlerModularCharacter_AssembleCharacterFromProfiles::InSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(WrestlerModularCharacter_AssembleCharacterFromProfiles, InPhysicsAsset) == 0x000018, "Member 'WrestlerModularCharacter_AssembleCharacterFromProfiles::InPhysicsAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModularCharacter_Setup \ +static_assert(alignof(WrestlerModularCharacter_Setup) == 0x000008, "Wrong alignment on WrestlerModularCharacter_Setup"); \ +static_assert(sizeof(WrestlerModularCharacter_Setup) == 0x000008, "Wrong size on WrestlerModularCharacter_Setup"); \ +static_assert(offsetof(WrestlerModularCharacter_Setup, InProfile) == 0x000000, "Member 'WrestlerModularCharacter_Setup::InProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerModularCharacter_GetSkeletalMeshComponents \ +static_assert(alignof(WrestlerModularCharacter_GetSkeletalMeshComponents) == 0x000008, "Wrong alignment on WrestlerModularCharacter_GetSkeletalMeshComponents"); \ +static_assert(sizeof(WrestlerModularCharacter_GetSkeletalMeshComponents) == 0x000010, "Wrong size on WrestlerModularCharacter_GetSkeletalMeshComponents"); \ +static_assert(offsetof(WrestlerModularCharacter_GetSkeletalMeshComponents, ReturnValue) == 0x000000, "Member 'WrestlerModularCharacter_GetSkeletalMeshComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerModularCharacter \ +static_assert(alignof(UWrestlerModularCharacter) == 0x000008, "Wrong alignment on UWrestlerModularCharacter"); \ +static_assert(sizeof(UWrestlerModularCharacter) == 0x000160, "Wrong size on UWrestlerModularCharacter"); \ +static_assert(offsetof(UWrestlerModularCharacter, DataPool) == 0x0000A0, "Member 'UWrestlerModularCharacter::DataPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacter, bForceMeshesMerge) == 0x0000A8, "Member 'UWrestlerModularCharacter::bForceMeshesMerge' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacter, bKeepSkeletalMeshesPooled) == 0x0000A9, "Member 'UWrestlerModularCharacter::bKeepSkeletalMeshesPooled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacter, SkeletalMeshComponents) == 0x000150, "Member 'UWrestlerModularCharacter::SkeletalMeshComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULoadingTipsDataTable \ +static_assert(alignof(ULoadingTipsDataTable) == 0x000008, "Wrong alignment on ULoadingTipsDataTable"); \ +static_assert(sizeof(ULoadingTipsDataTable) == 0x0000D0, "Wrong size on ULoadingTipsDataTable"); \ +static_assert(offsetof(ULoadingTipsDataTable, TipsList) == 0x000030, "Member 'ULoadingTipsDataTable::TipsList' has a wrong offset!"); \ +static_assert(offsetof(ULoadingTipsDataTable, ImagesList) == 0x000080, "Member 'ULoadingTipsDataTable::ImagesList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPropVent \ +static_assert(alignof(AWrestlerPropVent) == 0x000008, "Wrong alignment on AWrestlerPropVent"); \ +static_assert(sizeof(AWrestlerPropVent) == 0x0002A8, "Wrong size on AWrestlerPropVent"); \ + +#define DUMPER7_ASSERTS_WrestlerLocalPlayer_GetLocalSettings \ +static_assert(alignof(WrestlerLocalPlayer_GetLocalSettings) == 0x000008, "Wrong alignment on WrestlerLocalPlayer_GetLocalSettings"); \ +static_assert(sizeof(WrestlerLocalPlayer_GetLocalSettings) == 0x000008, "Wrong size on WrestlerLocalPlayer_GetLocalSettings"); \ +static_assert(offsetof(WrestlerLocalPlayer_GetLocalSettings, ReturnValue) == 0x000000, "Member 'WrestlerLocalPlayer_GetLocalSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLocalPlayer_GetSharedSettings \ +static_assert(alignof(WrestlerLocalPlayer_GetSharedSettings) == 0x000008, "Wrong alignment on WrestlerLocalPlayer_GetSharedSettings"); \ +static_assert(sizeof(WrestlerLocalPlayer_GetSharedSettings) == 0x000008, "Wrong size on WrestlerLocalPlayer_GetSharedSettings"); \ +static_assert(offsetof(WrestlerLocalPlayer_GetSharedSettings, ReturnValue) == 0x000000, "Member 'WrestlerLocalPlayer_GetSharedSettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLocalPlayer \ +static_assert(alignof(UWrestlerLocalPlayer) == 0x000008, "Wrong alignment on UWrestlerLocalPlayer"); \ +static_assert(sizeof(UWrestlerLocalPlayer) == 0x0002F0, "Wrong size on UWrestlerLocalPlayer"); \ +static_assert(offsetof(UWrestlerLocalPlayer, SharedSettings) == 0x0002B0, "Member 'UWrestlerLocalPlayer::SharedSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLocalPlayer, InputMappingContext) == 0x0002E8, "Member 'UWrestlerLocalPlayer::InputMappingContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLookAtComponent_CanLookAt \ +static_assert(alignof(WrestlerLookAtComponent_CanLookAt) == 0x000008, "Wrong alignment on WrestlerLookAtComponent_CanLookAt"); \ +static_assert(sizeof(WrestlerLookAtComponent_CanLookAt) == 0x0000F8, "Wrong size on WrestlerLookAtComponent_CanLookAt"); \ +static_assert(offsetof(WrestlerLookAtComponent_CanLookAt, InPlayer) == 0x000000, "Member 'WrestlerLookAtComponent_CanLookAt::InPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLookAtComponent_CanLookAt, InHitResult) == 0x000008, "Member 'WrestlerLookAtComponent_CanLookAt::InHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLookAtComponent_CanLookAt, ReturnValue) == 0x0000F0, "Member 'WrestlerLookAtComponent_CanLookAt::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLookAtComponent_LookAt \ +static_assert(alignof(WrestlerLookAtComponent_LookAt) == 0x000008, "Wrong alignment on WrestlerLookAtComponent_LookAt"); \ +static_assert(sizeof(WrestlerLookAtComponent_LookAt) == 0x000010, "Wrong size on WrestlerLookAtComponent_LookAt"); \ +static_assert(offsetof(WrestlerLookAtComponent_LookAt, InDeltaTime) == 0x000000, "Member 'WrestlerLookAtComponent_LookAt::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLookAtComponent_LookAt, InPlayer) == 0x000008, "Member 'WrestlerLookAtComponent_LookAt::InPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLookAtComponent_SetEnabled \ +static_assert(alignof(WrestlerLookAtComponent_SetEnabled) == 0x000001, "Wrong alignment on WrestlerLookAtComponent_SetEnabled"); \ +static_assert(sizeof(WrestlerLookAtComponent_SetEnabled) == 0x000001, "Wrong size on WrestlerLookAtComponent_SetEnabled"); \ +static_assert(offsetof(WrestlerLookAtComponent_SetEnabled, InEnabled) == 0x000000, "Member 'WrestlerLookAtComponent_SetEnabled::InEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerLookAtComponent_TriggerLookAt \ +static_assert(alignof(WrestlerLookAtComponent_TriggerLookAt) == 0x000008, "Wrong alignment on WrestlerLookAtComponent_TriggerLookAt"); \ +static_assert(sizeof(WrestlerLookAtComponent_TriggerLookAt) == 0x000010, "Wrong size on WrestlerLookAtComponent_TriggerLookAt"); \ +static_assert(offsetof(WrestlerLookAtComponent_TriggerLookAt, InDeltaTime) == 0x000000, "Member 'WrestlerLookAtComponent_TriggerLookAt::InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerLookAtComponent_TriggerLookAt, InPlayer) == 0x000008, "Member 'WrestlerLookAtComponent_TriggerLookAt::InPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerLookAtComponent \ +static_assert(alignof(UWrestlerLookAtComponent) == 0x000008, "Wrong alignment on UWrestlerLookAtComponent"); \ +static_assert(sizeof(UWrestlerLookAtComponent) == 0x0000E8, "Wrong size on UWrestlerLookAtComponent"); \ +static_assert(offsetof(UWrestlerLookAtComponent, MissionActorComponent) == 0x0000A0, "Member 'UWrestlerLookAtComponent::MissionActorComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, Timer) == 0x0000A8, "Member 'UWrestlerLookAtComponent::Timer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, TimeToDecay) == 0x0000AC, "Member 'UWrestlerLookAtComponent::TimeToDecay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, TriggerTime) == 0x0000B0, "Member 'UWrestlerLookAtComponent::TriggerTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, ObjectiveToTrigger) == 0x0000B8, "Member 'UWrestlerLookAtComponent::ObjectiveToTrigger' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, ObjectiveTickInterval) == 0x0000C0, "Member 'UWrestlerLookAtComponent::ObjectiveTickInterval' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, LookAtProperty) == 0x0000C8, "Member 'UWrestlerLookAtComponent::LookAtProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, MaxRange) == 0x0000D0, "Member 'UWrestlerLookAtComponent::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, IsEnabled) == 0x0000D4, "Member 'UWrestlerLookAtComponent::IsEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerLookAtComponent, DisableOnActivation) == 0x0000D5, "Member 'UWrestlerLookAtComponent::DisableOnActivation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMainMenu \ +static_assert(alignof(UWrestlerMainMenu) == 0x000008, "Wrong alignment on UWrestlerMainMenu"); \ +static_assert(sizeof(UWrestlerMainMenu) == 0x000330, "Wrong size on UWrestlerMainMenu"); \ +static_assert(offsetof(UWrestlerMainMenu, OnSuccess) == 0x000300, "Member 'UWrestlerMainMenu::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMainMenu, OnFailure) == 0x000310, "Member 'UWrestlerMainMenu::OnFailure' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMainMenu, TestButton) == 0x000320, "Member 'UWrestlerMainMenu::TestButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMainMenu, TestButtonOverlay) == 0x000328, "Member 'UWrestlerMainMenu::TestButtonOverlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestObjectiveWidget_SetObjectiveData \ +static_assert(alignof(WrestlerQuestObjectiveWidget_SetObjectiveData) == 0x000008, "Wrong alignment on WrestlerQuestObjectiveWidget_SetObjectiveData"); \ +static_assert(sizeof(WrestlerQuestObjectiveWidget_SetObjectiveData) == 0x000028, "Wrong size on WrestlerQuestObjectiveWidget_SetObjectiveData"); \ +static_assert(offsetof(WrestlerQuestObjectiveWidget_SetObjectiveData, InObjectiveText) == 0x000000, "Member 'WrestlerQuestObjectiveWidget_SetObjectiveData::InObjectiveText' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestObjectiveWidget_SetObjectiveData, InOptionalObjectiveTexts) == 0x000018, "Member 'WrestlerQuestObjectiveWidget_SetObjectiveData::InOptionalObjectiveTexts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestObjectiveWidget \ +static_assert(alignof(UWrestlerQuestObjectiveWidget) == 0x000008, "Wrong alignment on UWrestlerQuestObjectiveWidget"); \ +static_assert(sizeof(UWrestlerQuestObjectiveWidget) == 0x000308, "Wrong size on UWrestlerQuestObjectiveWidget"); \ +static_assert(offsetof(UWrestlerQuestObjectiveWidget, InitialPoolSize) == 0x0002C8, "Member 'UWrestlerQuestObjectiveWidget::InitialPoolSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestObjectiveWidget, OptionalTextClass) == 0x0002D0, "Member 'UWrestlerQuestObjectiveWidget::OptionalTextClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestObjectiveWidget, OptionalQuestEntryPadding) == 0x0002D8, "Member 'UWrestlerQuestObjectiveWidget::OptionalQuestEntryPadding' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestObjectiveWidget, OptionalObjectivesVB) == 0x0002E8, "Member 'UWrestlerQuestObjectiveWidget::OptionalObjectivesVB' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestObjectiveWidget, OptionalObjectivesPool) == 0x0002F0, "Member 'UWrestlerQuestObjectiveWidget::OptionalObjectivesPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapActiveQuestWidget \ +static_assert(alignof(UWrestlerMapActiveQuestWidget) == 0x000008, "Wrong alignment on UWrestlerMapActiveQuestWidget"); \ +static_assert(sizeof(UWrestlerMapActiveQuestWidget) == 0x000328, "Wrong size on UWrestlerMapActiveQuestWidget"); \ +static_assert(offsetof(UWrestlerMapActiveQuestWidget, ObjectivesWidgetArray) == 0x000308, "Member 'UWrestlerMapActiveQuestWidget::ObjectivesWidgetArray' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapActiveQuestWidget, QuestTitleText) == 0x000318, "Member 'UWrestlerMapActiveQuestWidget::QuestTitleText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapActiveQuestWidget, ObjectivesListView) == 0x000320, "Member 'UWrestlerMapActiveQuestWidget::ObjectivesListView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMapBoundaryActor \ +static_assert(alignof(AWrestlerMapBoundaryActor) == 0x000008, "Wrong alignment on AWrestlerMapBoundaryActor"); \ +static_assert(sizeof(AWrestlerMapBoundaryActor) == 0x0002A8, "Wrong size on AWrestlerMapBoundaryActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapButtonWidget \ +static_assert(alignof(UWrestlerMapButtonWidget) == 0x000008, "Wrong alignment on UWrestlerMapButtonWidget"); \ +static_assert(sizeof(UWrestlerMapButtonWidget) == 0x0002F8, "Wrong size on UWrestlerMapButtonWidget"); \ +static_assert(offsetof(UWrestlerMapButtonWidget, ButtonBody) == 0x0002E8, "Member 'UWrestlerMapButtonWidget::ButtonBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapButtonWidget, ButtonText) == 0x0002F0, "Member 'UWrestlerMapButtonWidget::ButtonText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPoliceHarassmentProcessor \ +static_assert(alignof(UWrestlerMassPoliceHarassmentProcessor) == 0x000008, "Wrong alignment on UWrestlerMassPoliceHarassmentProcessor"); \ +static_assert(sizeof(UWrestlerMassPoliceHarassmentProcessor) == 0x000610, "Wrong size on UWrestlerMassPoliceHarassmentProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked \ +static_assert(alignof(WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked) == 0x000004, "Wrong alignment on WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked"); \ +static_assert(sizeof(WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked) == 0x00000C, "Wrong size on WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked"); \ +static_assert(offsetof(WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked, InCategoryGT) == 0x000000, "Member 'WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked::InCategoryGT' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked, bInEnable) == 0x000008, "Member 'WrestlerMapCategoryFilterWidget_OnMapCategoryFilterChangedClicked::bInEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory \ +static_assert(alignof(WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory) == 0x000008, "Wrong alignment on WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory"); \ +static_assert(sizeof(WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory) == 0x000010, "Wrong size on WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory"); \ +static_assert(offsetof(WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory, InCategoryWidget) == 0x000000, "Member 'WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory::InCategoryWidget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory, bInEnable) == 0x000008, "Member 'WrestlerMapCategoryFilterWidget_ToggleButtonVisibilityForCategory::bInEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapCategoryFilterWidget \ +static_assert(alignof(UWrestlerMapCategoryFilterWidget) == 0x000008, "Wrong alignment on UWrestlerMapCategoryFilterWidget"); \ +static_assert(sizeof(UWrestlerMapCategoryFilterWidget) == 0x0002D8, "Wrong size on UWrestlerMapCategoryFilterWidget"); \ + +#define DUMPER7_ASSERTS_UWrestlerSuppressBarksGameplayEffectComponent \ +static_assert(alignof(UWrestlerSuppressBarksGameplayEffectComponent) == 0x000008, "Wrong alignment on UWrestlerSuppressBarksGameplayEffectComponent"); \ +static_assert(sizeof(UWrestlerSuppressBarksGameplayEffectComponent) == 0x000048, "Wrong size on UWrestlerSuppressBarksGameplayEffectComponent"); \ +static_assert(offsetof(UWrestlerSuppressBarksGameplayEffectComponent, SuppressedBarkTags) == 0x000028, "Member 'UWrestlerSuppressBarksGameplayEffectComponent::SuppressedBarkTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMapCheckActor \ +static_assert(alignof(AWrestlerMapCheckActor) == 0x000008, "Wrong alignment on AWrestlerMapCheckActor"); \ +static_assert(sizeof(AWrestlerMapCheckActor) == 0x000298, "Wrong size on AWrestlerMapCheckActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_SetMovementSettings \ +static_assert(alignof(UWrestlerStateTreeTask_SetMovementSettings) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_SetMovementSettings"); \ +static_assert(sizeof(UWrestlerStateTreeTask_SetMovementSettings) == 0x000070, "Wrong size on UWrestlerStateTreeTask_SetMovementSettings"); \ +static_assert(offsetof(UWrestlerStateTreeTask_SetMovementSettings, SetData) == 0x000048, "Member 'UWrestlerStateTreeTask_SetMovementSettings::SetData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_SetMovementSettings, GameplayTag) == 0x000050, "Member 'UWrestlerStateTreeTask_SetMovementSettings::GameplayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMapCheckInterface \ +static_assert(alignof(IWrestlerMapCheckInterface) == 0x000001, "Wrong alignment on IWrestlerMapCheckInterface"); \ +static_assert(sizeof(IWrestlerMapCheckInterface) == 0x000001, "Wrong size on IWrestlerMapCheckInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapDataAsset \ +static_assert(alignof(UWrestlerMapDataAsset) == 0x000008, "Wrong alignment on UWrestlerMapDataAsset"); \ +static_assert(sizeof(UWrestlerMapDataAsset) == 0x0000E0, "Wrong size on UWrestlerMapDataAsset"); \ +static_assert(offsetof(UWrestlerMapDataAsset, MapData) == 0x000030, "Member 'UWrestlerMapDataAsset::MapData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapDataAsset, LevelTagAndImages) == 0x000080, "Member 'UWrestlerMapDataAsset::LevelTagAndImages' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapDataAsset, DefaultMapZoneImage) == 0x0000D0, "Member 'UWrestlerMapDataAsset::DefaultMapZoneImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapDataAsset, MaxWaypointsOnMap) == 0x0000D8, "Member 'UWrestlerMapDataAsset::MaxWaypointsOnMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapDataInterface_GetMapMarkerData \ +static_assert(alignof(WrestlerMapDataInterface_GetMapMarkerData) == 0x000008, "Wrong alignment on WrestlerMapDataInterface_GetMapMarkerData"); \ +static_assert(sizeof(WrestlerMapDataInterface_GetMapMarkerData) == 0x000060, "Wrong size on WrestlerMapDataInterface_GetMapMarkerData"); \ +static_assert(offsetof(WrestlerMapDataInterface_GetMapMarkerData, OutMarkerData) == 0x000000, "Member 'WrestlerMapDataInterface_GetMapMarkerData::OutMarkerData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMapDataInterface_GetMapMarkerData, ReturnValue) == 0x000058, "Member 'WrestlerMapDataInterface_GetMapMarkerData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapDataInterface_GetRadialAreaData \ +static_assert(alignof(WrestlerMapDataInterface_GetRadialAreaData) == 0x000008, "Wrong alignment on WrestlerMapDataInterface_GetRadialAreaData"); \ +static_assert(sizeof(WrestlerMapDataInterface_GetRadialAreaData) == 0x000018, "Wrong size on WrestlerMapDataInterface_GetRadialAreaData"); \ +static_assert(offsetof(WrestlerMapDataInterface_GetRadialAreaData, ReturnValue) == 0x000000, "Member 'WrestlerMapDataInterface_GetRadialAreaData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMapDataInterface \ +static_assert(alignof(IWrestlerMapDataInterface) == 0x000001, "Wrong alignment on IWrestlerMapDataInterface"); \ +static_assert(sizeof(IWrestlerMapDataInterface) == 0x000001, "Wrong size on IWrestlerMapDataInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSourceTestActor_GetTokenManager \ +static_assert(alignof(WrestlerTokenSourceTestActor_GetTokenManager) == 0x000008, "Wrong alignment on WrestlerTokenSourceTestActor_GetTokenManager"); \ +static_assert(sizeof(WrestlerTokenSourceTestActor_GetTokenManager) == 0x000008, "Wrong size on WrestlerTokenSourceTestActor_GetTokenManager"); \ +static_assert(offsetof(WrestlerTokenSourceTestActor_GetTokenManager, ReturnValue) == 0x000000, "Member 'WrestlerTokenSourceTestActor_GetTokenManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTokenSourceTestActor \ +static_assert(alignof(AWrestlerTokenSourceTestActor) == 0x000008, "Wrong alignment on AWrestlerTokenSourceTestActor"); \ +static_assert(sizeof(AWrestlerTokenSourceTestActor) == 0x0002A8, "Wrong size on AWrestlerTokenSourceTestActor"); \ +static_assert(offsetof(AWrestlerTokenSourceTestActor, ConfigDataName) == 0x000298, "Member 'AWrestlerTokenSourceTestActor::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTokenSourceTestActor, TokenManager) == 0x0002A0, "Member 'AWrestlerTokenSourceTestActor::TokenManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapMasqueradeWidget \ +static_assert(alignof(UWrestlerMapMasqueradeWidget) == 0x000008, "Wrong alignment on UWrestlerMapMasqueradeWidget"); \ +static_assert(sizeof(UWrestlerMapMasqueradeWidget) == 0x0002E8, "Wrong size on UWrestlerMapMasqueradeWidget"); \ +static_assert(offsetof(UWrestlerMapMasqueradeWidget, MasqueradeLevelData) == 0x0002C8, "Member 'UWrestlerMapMasqueradeWidget::MasqueradeLevelData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMasqueradeWidget, MasqueradeIcon) == 0x0002D8, "Member 'UWrestlerMapMasqueradeWidget::MasqueradeIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapMasqueradeWidget, MasqueradeLevelText) == 0x0002E0, "Member 'UWrestlerMapMasqueradeWidget::MasqueradeLevelText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers \ +static_assert(alignof(WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers) == 0x000008, "Wrong alignment on WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers"); \ +static_assert(sizeof(WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers) == 0x000010, "Wrong size on WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers"); \ +static_assert(offsetof(WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers, InNewInteractableMarkersList) == 0x000000, "Member 'WrestlerRPGMenuNavigableWidget_AddNewInteractableMarkers::InNewInteractableMarkersList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget \ +static_assert(alignof(WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget) == 0x000008, "Wrong alignment on WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget"); \ +static_assert(sizeof(WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget) == 0x000010, "Wrong size on WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget"); \ +static_assert(offsetof(WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget, InNewInitialLocation) == 0x000000, "Member 'WrestlerRPGMenuNavigableWidget_InitializeNavigableWidget::InNewInitialLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuNavigableWidget_OnZoomValueChanged \ +static_assert(alignof(WrestlerRPGMenuNavigableWidget_OnZoomValueChanged) == 0x000001, "Wrong alignment on WrestlerRPGMenuNavigableWidget_OnZoomValueChanged"); \ +static_assert(sizeof(WrestlerRPGMenuNavigableWidget_OnZoomValueChanged) == 0x000001, "Wrong size on WrestlerRPGMenuNavigableWidget_OnZoomValueChanged"); \ +static_assert(offsetof(WrestlerRPGMenuNavigableWidget_OnZoomValueChanged, bIsZoomingIn) == 0x000000, "Member 'WrestlerRPGMenuNavigableWidget_OnZoomValueChanged::bIsZoomingIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker \ +static_assert(alignof(WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker) == 0x000008, "Wrong alignment on WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker"); \ +static_assert(sizeof(WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker) == 0x000008, "Wrong size on WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker"); \ +static_assert(offsetof(WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker, InMarker) == 0x000000, "Member 'WrestlerRPGMenuNavigableWidget_SnapToDesiredMarker::InMarker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuNavigableWidget \ +static_assert(alignof(UWrestlerRPGMenuNavigableWidget) == 0x000008, "Wrong alignment on UWrestlerRPGMenuNavigableWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuNavigableWidget) == 0x0006F8, "Wrong size on UWrestlerRPGMenuNavigableWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, NavigableWidgetDataAsset) == 0x0002C8, "Member 'UWrestlerRPGMenuNavigableWidget::NavigableWidgetDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, DefaultNavigableWidgetParams) == 0x0002D0, "Member 'UWrestlerRPGMenuNavigableWidget::DefaultNavigableWidgetParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, bDebugMouseMovement) == 0x000468, "Member 'UWrestlerRPGMenuNavigableWidget::bDebugMouseMovement' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, bHasCustomSnap) == 0x000469, "Member 'UWrestlerRPGMenuNavigableWidget::bHasCustomSnap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, TranslationContainer) == 0x000470, "Member 'UWrestlerRPGMenuNavigableWidget::TranslationContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, ScaleContainer) == 0x000478, "Member 'UWrestlerRPGMenuNavigableWidget::ScaleContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, CursorContainer) == 0x000480, "Member 'UWrestlerRPGMenuNavigableWidget::CursorContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, ContainerToMove) == 0x000488, "Member 'UWrestlerRPGMenuNavigableWidget::ContainerToMove' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, AllInteractableMarkers) == 0x000490, "Member 'UWrestlerRPGMenuNavigableWidget::AllInteractableMarkers' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, ClosestMarker) == 0x0004A0, "Member 'UWrestlerRPGMenuNavigableWidget::ClosestMarker' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, HoveredMarker) == 0x0004A8, "Member 'UWrestlerRPGMenuNavigableWidget::HoveredMarker' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, RTPCZoomValue) == 0x0004B0, "Member 'UWrestlerRPGMenuNavigableWidget::RTPCZoomValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuNavigableWidget, RTPCMovementValue) == 0x0004B4, "Member 'UWrestlerRPGMenuNavigableWidget::RTPCMovementValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapsContainerWidget_TogglePoolVisibility \ +static_assert(alignof(WrestlerMapsContainerWidget_TogglePoolVisibility) == 0x000004, "Wrong alignment on WrestlerMapsContainerWidget_TogglePoolVisibility"); \ +static_assert(sizeof(WrestlerMapsContainerWidget_TogglePoolVisibility) == 0x00000C, "Wrong size on WrestlerMapsContainerWidget_TogglePoolVisibility"); \ +static_assert(offsetof(WrestlerMapsContainerWidget_TogglePoolVisibility, InCategoryGT) == 0x000000, "Member 'WrestlerMapsContainerWidget_TogglePoolVisibility::InCategoryGT' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMapsContainerWidget_TogglePoolVisibility, bInIsVisible) == 0x000008, "Member 'WrestlerMapsContainerWidget_TogglePoolVisibility::bInIsVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapsContainerWidget \ +static_assert(alignof(UWrestlerMapsContainerWidget) == 0x000008, "Wrong alignment on UWrestlerMapsContainerWidget"); \ +static_assert(sizeof(UWrestlerMapsContainerWidget) == 0x000768, "Wrong size on UWrestlerMapsContainerWidget"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, WorldMapWidget) == 0x0006F8, "Member 'UWrestlerMapsContainerWidget::WorldMapWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, PlayerCursorWidget) == 0x000700, "Member 'UWrestlerMapsContainerWidget::PlayerCursorWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, HoverMarkerDialogueWidget) == 0x000708, "Member 'UWrestlerMapsContainerWidget::HoverMarkerDialogueWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, HoverMarkerDialogueCharName) == 0x000710, "Member 'UWrestlerMapsContainerWidget::HoverMarkerDialogueCharName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, HoverMarkerDialogueSubs) == 0x000718, "Member 'UWrestlerMapsContainerWidget::HoverMarkerDialogueSubs' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, bStopDialogueOnUnHover) == 0x000720, "Member 'UWrestlerMapsContainerWidget::bStopDialogueOnUnHover' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, DialogueAudioPlayEvent) == 0x000728, "Member 'UWrestlerMapsContainerWidget::DialogueAudioPlayEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, DialogueAudioStopEvent) == 0x000730, "Member 'UWrestlerMapsContainerWidget::DialogueAudioStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, MapDataAsset) == 0x000738, "Member 'UWrestlerMapsContainerWidget::MapDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, QuestProgressComponent) == 0x000740, "Member 'UWrestlerMapsContainerWidget::QuestProgressComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, AudioController) == 0x000748, "Member 'UWrestlerMapsContainerWidget::AudioController' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapsContainerWidget, PlayingDialogueMarker) == 0x000750, "Member 'UWrestlerMapsContainerWidget::PlayingDialogueMarker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_SetFocus \ +static_assert(alignof(UWrestlerStateTreeTask_SetFocus) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_SetFocus"); \ +static_assert(sizeof(UWrestlerStateTreeTask_SetFocus) == 0x000068, "Wrong size on UWrestlerStateTreeTask_SetFocus"); \ +static_assert(offsetof(UWrestlerStateTreeTask_SetFocus, FocusLocation) == 0x000048, "Member 'UWrestlerStateTreeTask_SetFocus::FocusLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_SetFocus, AIController) == 0x000060, "Member 'UWrestlerStateTreeTask_SetFocus::AIController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapScreenWidget_OnIconFilterStateChanged \ +static_assert(alignof(WrestlerMapScreenWidget_OnIconFilterStateChanged) == 0x000001, "Wrong alignment on WrestlerMapScreenWidget_OnIconFilterStateChanged"); \ +static_assert(sizeof(WrestlerMapScreenWidget_OnIconFilterStateChanged) == 0x000001, "Wrong size on WrestlerMapScreenWidget_OnIconFilterStateChanged"); \ +static_assert(offsetof(WrestlerMapScreenWidget_OnIconFilterStateChanged, bIsCurrentlyActive) == 0x000000, "Member 'WrestlerMapScreenWidget_OnIconFilterStateChanged::bIsCurrentlyActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapScreenWidget_OnIconVisibilityChanged \ +static_assert(alignof(WrestlerMapScreenWidget_OnIconVisibilityChanged) == 0x000001, "Wrong alignment on WrestlerMapScreenWidget_OnIconVisibilityChanged"); \ +static_assert(sizeof(WrestlerMapScreenWidget_OnIconVisibilityChanged) == 0x000001, "Wrong size on WrestlerMapScreenWidget_OnIconVisibilityChanged"); \ +static_assert(offsetof(WrestlerMapScreenWidget_OnIconVisibilityChanged, bNewVisibility) == 0x000000, "Member 'WrestlerMapScreenWidget_OnIconVisibilityChanged::bNewVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapScreenWidget \ +static_assert(alignof(UWrestlerMapScreenWidget) == 0x000008, "Wrong alignment on UWrestlerMapScreenWidget"); \ +static_assert(sizeof(UWrestlerMapScreenWidget) == 0x000518, "Wrong size on UWrestlerMapScreenWidget"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapDataAsset) == 0x000490, "Member 'UWrestlerMapScreenWidget::MapDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapAvailabilityProperty) == 0x000498, "Member 'UWrestlerMapScreenWidget::MapAvailabilityProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, ToggleIconLegendInputActionData) == 0x0004A0, "Member 'UWrestlerMapScreenWidget::ToggleIconLegendInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, PlaceWaypointActionData) == 0x0004B0, "Member 'UWrestlerMapScreenWidget::PlaceWaypointActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapIconLeftArrowActionData) == 0x0004C0, "Member 'UWrestlerMapScreenWidget::MapIconLeftArrowActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapIconRightArrowActionData) == 0x0004D0, "Member 'UWrestlerMapScreenWidget::MapIconRightArrowActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapsContainerWidget) == 0x0004E0, "Member 'UWrestlerMapScreenWidget::MapsContainerWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, MapMasqueradeWidget) == 0x0004E8, "Member 'UWrestlerMapScreenWidget::MapMasqueradeWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, IconLegendWidget) == 0x0004F0, "Member 'UWrestlerMapScreenWidget::IconLegendWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapScreenWidget, ActiveQuestWidget) == 0x0004F8, "Member 'UWrestlerMapScreenWidget::ActiveQuestWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMapSettings \ +static_assert(alignof(UWrestlerMapSettings) == 0x000008, "Wrong alignment on UWrestlerMapSettings"); \ +static_assert(sizeof(UWrestlerMapSettings) == 0x000060, "Wrong size on UWrestlerMapSettings"); \ +static_assert(offsetof(UWrestlerMapSettings, HubExtent) == 0x000038, "Member 'UWrestlerMapSettings::HubExtent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMapSettings, ZoneShapeDataLayerName) == 0x000050, "Member 'UWrestlerMapSettings::ZoneShapeDataLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapZone_GetMapZoneBoundaries \ +static_assert(alignof(WrestlerMapZone_GetMapZoneBoundaries) == 0x000008, "Wrong alignment on WrestlerMapZone_GetMapZoneBoundaries"); \ +static_assert(sizeof(WrestlerMapZone_GetMapZoneBoundaries) == 0x000018, "Wrong size on WrestlerMapZone_GetMapZoneBoundaries"); \ +static_assert(offsetof(WrestlerMapZone_GetMapZoneBoundaries, ReturnValue) == 0x000000, "Member 'WrestlerMapZone_GetMapZoneBoundaries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMapZone_GetMapZoneBoundariesLocation \ +static_assert(alignof(WrestlerMapZone_GetMapZoneBoundariesLocation) == 0x000008, "Wrong alignment on WrestlerMapZone_GetMapZoneBoundariesLocation"); \ +static_assert(sizeof(WrestlerMapZone_GetMapZoneBoundariesLocation) == 0x000018, "Wrong size on WrestlerMapZone_GetMapZoneBoundariesLocation"); \ +static_assert(offsetof(WrestlerMapZone_GetMapZoneBoundariesLocation, ReturnValue) == 0x000000, "Member 'WrestlerMapZone_GetMapZoneBoundariesLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMapZone \ +static_assert(alignof(AWrestlerMapZone) == 0x000008, "Wrong alignment on AWrestlerMapZone"); \ +static_assert(sizeof(AWrestlerMapZone) == 0x0002A0, "Wrong size on AWrestlerMapZone"); \ +static_assert(offsetof(AWrestlerMapZone, MapZoneBoundaries) == 0x000298, "Member 'AWrestlerMapZone::MapZoneBoundaries' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingValueDiscrete_Resolution \ +static_assert(alignof(UWrestlerSettingValueDiscrete_Resolution) == 0x000008, "Wrong alignment on UWrestlerSettingValueDiscrete_Resolution"); \ +static_assert(sizeof(UWrestlerSettingValueDiscrete_Resolution) == 0x000238, "Wrong size on UWrestlerSettingValueDiscrete_Resolution"); \ + +#define DUMPER7_ASSERTS_UWrestlerMarkerDescriptionWidget \ +static_assert(alignof(UWrestlerMarkerDescriptionWidget) == 0x000008, "Wrong alignment on UWrestlerMarkerDescriptionWidget"); \ +static_assert(sizeof(UWrestlerMarkerDescriptionWidget) == 0x0002E0, "Wrong size on UWrestlerMarkerDescriptionWidget"); \ +static_assert(offsetof(UWrestlerMarkerDescriptionWidget, MarkerTitle) == 0x0002C8, "Member 'UWrestlerMarkerDescriptionWidget::MarkerTitle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMarkerDescriptionWidget, MarkerDescription) == 0x0002D0, "Member 'UWrestlerMarkerDescriptionWidget::MarkerDescription' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMarkerDescriptionWidget, TextDividerImage) == 0x0002D8, "Member 'UWrestlerMarkerDescriptionWidget::TextDividerImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeInterface_GetTagContainer \ +static_assert(alignof(WrestlerMasqueradeInterface_GetTagContainer) == 0x000008, "Wrong alignment on WrestlerMasqueradeInterface_GetTagContainer"); \ +static_assert(sizeof(WrestlerMasqueradeInterface_GetTagContainer) == 0x000020, "Wrong size on WrestlerMasqueradeInterface_GetTagContainer"); \ +static_assert(offsetof(WrestlerMasqueradeInterface_GetTagContainer, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeInterface_GetTagContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMasqueradeInterface \ +static_assert(alignof(IWrestlerMasqueradeInterface) == 0x000001, "Wrong alignment on IWrestlerMasqueradeInterface"); \ +static_assert(sizeof(IWrestlerMasqueradeInterface) == 0x000001, "Wrong size on IWrestlerMasqueradeInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTaskSetupMovementPatrol \ +static_assert(alignof(UWrestlerStateTreeTaskSetupMovementPatrol) == 0x000008, "Wrong alignment on UWrestlerStateTreeTaskSetupMovementPatrol"); \ +static_assert(sizeof(UWrestlerStateTreeTaskSetupMovementPatrol) == 0x000060, "Wrong size on UWrestlerStateTreeTaskSetupMovementPatrol"); \ + +#define DUMPER7_ASSERTS_UWrestlerMasqueradePoolWidget \ +static_assert(alignof(UWrestlerMasqueradePoolWidget) == 0x000008, "Wrong alignment on UWrestlerMasqueradePoolWidget"); \ +static_assert(sizeof(UWrestlerMasqueradePoolWidget) == 0x000558, "Wrong size on UWrestlerMasqueradePoolWidget"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSettings_GetContextualAnimOptions \ +static_assert(alignof(WrestlerMasqueradeSettings_GetContextualAnimOptions) == 0x000008, "Wrong alignment on WrestlerMasqueradeSettings_GetContextualAnimOptions"); \ +static_assert(sizeof(WrestlerMasqueradeSettings_GetContextualAnimOptions) == 0x000010, "Wrong size on WrestlerMasqueradeSettings_GetContextualAnimOptions"); \ +static_assert(offsetof(WrestlerMasqueradeSettings_GetContextualAnimOptions, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSettings_GetContextualAnimOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMasqueradeSettings \ +static_assert(alignof(UWrestlerMasqueradeSettings) == 0x000008, "Wrong alignment on UWrestlerMasqueradeSettings"); \ +static_assert(sizeof(UWrestlerMasqueradeSettings) == 0x000870, "Wrong size on UWrestlerMasqueradeSettings"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, bEnableOnlyInWorldPartitionedWorlds) == 0x000048, "Member 'UWrestlerMasqueradeSettings::bEnableOnlyInWorldPartitionedWorlds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PlayertActionsDataTable) == 0x000050, "Member 'UWrestlerMasqueradeSettings::PlayertActionsDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, IgnoreActionTags) == 0x000078, "Member 'UWrestlerMasqueradeSettings::IgnoreActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PlayerNoActionTags) == 0x000098, "Member 'UWrestlerMasqueradeSettings::PlayerNoActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MaxNumberOfWitnesses) == 0x0000B8, "Member 'UWrestlerMasqueradeSettings::MaxNumberOfWitnesses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MaxNumberOfAlertedPolice) == 0x0000B9, "Member 'UWrestlerMasqueradeSettings::MaxNumberOfAlertedPolice' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MaxEnemyAINum) == 0x0000BA, "Member 'UWrestlerMasqueradeSettings::MaxEnemyAINum' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, DelayForNewWitness) == 0x0000BC, "Member 'UWrestlerMasqueradeSettings::DelayForNewWitness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, DelayForMasqueradeBreachSequence) == 0x0000C0, "Member 'UWrestlerMasqueradeSettings::DelayForMasqueradeBreachSequence' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, InvestigateDeadBodyTag) == 0x0000C4, "Member 'UWrestlerMasqueradeSettings::InvestigateDeadBodyTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, TrespassingTag) == 0x0000CC, "Member 'UWrestlerMasqueradeSettings::TrespassingTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PedestrianKilledEventTag) == 0x0000D4, "Member 'UWrestlerMasqueradeSettings::PedestrianKilledEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PoliceKilledEventTag) == 0x0000DC, "Member 'UWrestlerMasqueradeSettings::PoliceKilledEventTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PlayerInvisibleTags) == 0x0000E8, "Member 'UWrestlerMasqueradeSettings::PlayerInvisibleTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, PlayerInvisibleNoneTags) == 0x000108, "Member 'UWrestlerMasqueradeSettings::PlayerInvisibleNoneTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, TimeToLoseInterestInPlayerAction) == 0x000128, "Member 'UWrestlerMasqueradeSettings::TimeToLoseInterestInPlayerAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, TimeToIgnoreDeadBody) == 0x00012C, "Member 'UWrestlerMasqueradeSettings::TimeToIgnoreDeadBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, TimeToDespawnDeadBody) == 0x000130, "Member 'UWrestlerMasqueradeSettings::TimeToDespawnDeadBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, DistanceToDespawnDeadBody) == 0x000134, "Member 'UWrestlerMasqueradeSettings::DistanceToDespawnDeadBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MasqueradeScoreData) == 0x000138, "Member 'UWrestlerMasqueradeSettings::MasqueradeScoreData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, SightEQSQueryPrecision) == 0x000188, "Member 'UWrestlerMasqueradeSettings::SightEQSQueryPrecision' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, SightEQSQueryLifetime) == 0x00018C, "Member 'UWrestlerMasqueradeSettings::SightEQSQueryLifetime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, WitnessIndicator) == 0x000190, "Member 'UWrestlerMasqueradeSettings::WitnessIndicator' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, SightEQSQuery) == 0x0001B8, "Member 'UWrestlerMasqueradeSettings::SightEQSQuery' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MasqueradeProperty) == 0x0001E0, "Member 'UWrestlerMasqueradeSettings::MasqueradeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MasqueradeScoreProperty) == 0x000208, "Member 'UWrestlerMasqueradeSettings::MasqueradeScoreProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, CommonCrowdContextualAnimNames) == 0x000230, "Member 'UWrestlerMasqueradeSettings::CommonCrowdContextualAnimNames' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, GroupingParams) == 0x000240, "Member 'UWrestlerMasqueradeSettings::GroupingParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, Properties) == 0x0002E8, "Member 'UWrestlerMasqueradeSettings::Properties' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, DialogueParams) == 0x0003D8, "Member 'UWrestlerMasqueradeSettings::DialogueParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MassConversationParams) == 0x000468, "Member 'UWrestlerMasqueradeSettings::MassConversationParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, MassConversationCameraParams) == 0x000718, "Member 'UWrestlerMasqueradeSettings::MassConversationCameraParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, ClainTrainerConversationParams) == 0x000750, "Member 'UWrestlerMasqueradeSettings::ClainTrainerConversationParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, BloodResonanceParams) == 0x0007C0, "Member 'UWrestlerMasqueradeSettings::BloodResonanceParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, BloodResonanceEventParams) == 0x000838, "Member 'UWrestlerMasqueradeSettings::BloodResonanceEventParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSettings, WallaParams) == 0x000858, "Member 'UWrestlerMasqueradeSettings::WallaParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerScreenCaptureActor \ +static_assert(alignof(AWrestlerScreenCaptureActor) == 0x000008, "Wrong alignment on AWrestlerScreenCaptureActor"); \ +static_assert(sizeof(AWrestlerScreenCaptureActor) == 0x0002C0, "Wrong size on AWrestlerScreenCaptureActor"); \ +static_assert(offsetof(AWrestlerScreenCaptureActor, BuffersToCapture) == 0x000298, "Member 'AWrestlerScreenCaptureActor::BuffersToCapture' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerScreenCaptureActor, DestinationTextureBackBuffer) == 0x0002A8, "Member 'AWrestlerScreenCaptureActor::DestinationTextureBackBuffer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_ForceMasqueradeState \ +static_assert(alignof(WrestlerMasqueradeSubsystem_ForceMasqueradeState) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_ForceMasqueradeState"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_ForceMasqueradeState) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_ForceMasqueradeState"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_ForceMasqueradeState, InNewState) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_ForceMasqueradeState::InNewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetMassVisibleActors \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetMassVisibleActors) == 0x000008, "Wrong alignment on WrestlerMasqueradeSubsystem_GetMassVisibleActors"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetMassVisibleActors) == 0x000010, "Wrong size on WrestlerMasqueradeSubsystem_GetMassVisibleActors"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetMassVisibleActors, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetMassVisibleActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetWallaData \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetWallaData) == 0x000008, "Wrong alignment on WrestlerMasqueradeSubsystem_GetWallaData"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetWallaData) == 0x000010, "Wrong size on WrestlerMasqueradeSubsystem_GetWallaData"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetWallaData, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetWallaData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetWallaQueryData \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetWallaQueryData) == 0x000008, "Wrong alignment on WrestlerMasqueradeSubsystem_GetWallaQueryData"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetWallaQueryData) == 0x000038, "Wrong size on WrestlerMasqueradeSubsystem_GetWallaQueryData"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetWallaQueryData, InID) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetWallaQueryData::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetWallaQueryData, OutData) == 0x000008, "Member 'WrestlerMasqueradeSubsystem_GetWallaQueryData::OutData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetWallaQueryData, ReturnValue) == 0x000030, "Member 'WrestlerMasqueradeSubsystem_GetWallaQueryData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_OnMissionTypeChanged \ +static_assert(alignof(WrestlerMasqueradeSubsystem_OnMissionTypeChanged) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_OnMissionTypeChanged"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_OnMissionTypeChanged) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_OnMissionTypeChanged"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_OnMissionTypeChanged, CurrentMissionType) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_OnMissionTypeChanged::CurrentMissionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_SetExclusionZoneInfo \ +static_assert(alignof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_SetExclusionZoneInfo"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo) == 0x00000C, "Wrong size on WrestlerMasqueradeSubsystem_SetExclusionZoneInfo"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo, InMask) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_SetExclusionZoneInfo::InMask' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo, InSpeedOverride) == 0x000004, "Member 'WrestlerMasqueradeSubsystem_SetExclusionZoneInfo::InSpeedOverride' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo, InSetPedestrians) == 0x000008, "Member 'WrestlerMasqueradeSubsystem_SetExclusionZoneInfo::InSetPedestrians' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetExclusionZoneInfo, InSetPolice) == 0x000009, "Member 'WrestlerMasqueradeSubsystem_SetExclusionZoneInfo::InSetPolice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_SetGroupingEnabled \ +static_assert(alignof(WrestlerMasqueradeSubsystem_SetGroupingEnabled) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_SetGroupingEnabled"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_SetGroupingEnabled) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_SetGroupingEnabled"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetGroupingEnabled, InIsEnabled) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_SetGroupingEnabled::InIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_SetGroupingParameters \ +static_assert(alignof(WrestlerMasqueradeSubsystem_SetGroupingParameters) == 0x000008, "Wrong alignment on WrestlerMasqueradeSubsystem_SetGroupingParameters"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_SetGroupingParameters) == 0x0000A8, "Wrong size on WrestlerMasqueradeSubsystem_SetGroupingParameters"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetGroupingParameters, InGroupingParams) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_SetGroupingParameters::InGroupingParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_SetMasqueradeEnabled \ +static_assert(alignof(WrestlerMasqueradeSubsystem_SetMasqueradeEnabled) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_SetMasqueradeEnabled"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_SetMasqueradeEnabled) == 0x000002, "Wrong size on WrestlerMasqueradeSubsystem_SetMasqueradeEnabled"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetMasqueradeEnabled, bEnabled) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_SetMasqueradeEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetMasqueradeEnabled, bResetMasqueradeScore) == 0x000001, "Member 'WrestlerMasqueradeSubsystem_SetMasqueradeEnabled::bResetMasqueradeScore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility \ +static_assert(alignof(WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility, InIsVisible) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_SetMassEntitiesVisibility::InIsVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent \ +static_assert(alignof(WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent) == 0x000008, "Wrong size on WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent, InEventTag) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_TriggerMasqueradeEvent::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetCurrentPlayerAction \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetCurrentPlayerAction) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_GetCurrentPlayerAction"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetCurrentPlayerAction) == 0x000008, "Wrong size on WrestlerMasqueradeSubsystem_GetCurrentPlayerAction"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetCurrentPlayerAction, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetCurrentPlayerAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetDurationForForfeitState \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetDurationForForfeitState) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_GetDurationForForfeitState"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetDurationForForfeitState) == 0x000004, "Wrong size on WrestlerMasqueradeSubsystem_GetDurationForForfeitState"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetDurationForForfeitState, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetDurationForForfeitState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetMasqueradeState \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetMasqueradeState) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_GetMasqueradeState"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetMasqueradeState) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_GetMasqueradeState"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetMasqueradeState, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetMasqueradeState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore) == 0x000008, "Wrong size on WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore, InScore) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore::InScore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore, ReturnValue) == 0x000004, "Member 'WrestlerMasqueradeSubsystem_GetMasqueradeStateForScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount) == 0x000004, "Wrong size on WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetMassBloodResonanceCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState \ +static_assert(alignof(WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState) == 0x000004, "Wrong alignment on WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState) == 0x000004, "Wrong size on WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_GetRemainingTimeToEnterForfeitState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer \ +static_assert(alignof(WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_IsAnyEntityAwareOfPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeSubsystem_IsPlayerTrespassing \ +static_assert(alignof(WrestlerMasqueradeSubsystem_IsPlayerTrespassing) == 0x000001, "Wrong alignment on WrestlerMasqueradeSubsystem_IsPlayerTrespassing"); \ +static_assert(sizeof(WrestlerMasqueradeSubsystem_IsPlayerTrespassing) == 0x000001, "Wrong size on WrestlerMasqueradeSubsystem_IsPlayerTrespassing"); \ +static_assert(offsetof(WrestlerMasqueradeSubsystem_IsPlayerTrespassing, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeSubsystem_IsPlayerTrespassing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMasqueradeSubsystem \ +static_assert(alignof(UWrestlerMasqueradeSubsystem) == 0x000008, "Wrong alignment on UWrestlerMasqueradeSubsystem"); \ +static_assert(sizeof(UWrestlerMasqueradeSubsystem) == 0x000550, "Wrong size on UWrestlerMasqueradeSubsystem"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, OnMasqueradeStateChanged) == 0x000040, "Member 'UWrestlerMasqueradeSubsystem::OnMasqueradeStateChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, OnMasqueradeScoreChangedEvent) == 0x000050, "Member 'UWrestlerMasqueradeSubsystem::OnMasqueradeScoreChangedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, OnAnyEntityAwareOfPlayerChanged) == 0x000060, "Member 'UWrestlerMasqueradeSubsystem::OnAnyEntityAwareOfPlayerChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, ViolentActionWitnesses) == 0x000078, "Member 'UWrestlerMasqueradeSubsystem::ViolentActionWitnesses' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, IndicatorsPool) == 0x0000C8, "Member 'UWrestlerMasqueradeSubsystem::IndicatorsPool' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, MasqueradeProperty) == 0x000118, "Member 'UWrestlerMasqueradeSubsystem::MasqueradeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, MasqueradeScoreProperty) == 0x000120, "Member 'UWrestlerMasqueradeSubsystem::MasqueradeScoreProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, IsMassVisibleProperty) == 0x0001D8, "Member 'UWrestlerMasqueradeSubsystem::IsMassVisibleProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, ExclusionZoneMaskProperty) == 0x0001E0, "Member 'UWrestlerMasqueradeSubsystem::ExclusionZoneMaskProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, ExclusionZoneSpeedOverrideProperty) == 0x0001E8, "Member 'UWrestlerMasqueradeSubsystem::ExclusionZoneSpeedOverrideProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, ExclusionZoneSetPedestriansProperty) == 0x0001F0, "Member 'UWrestlerMasqueradeSubsystem::ExclusionZoneSetPedestriansProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, ExclusionZoneSetPoliceProperty) == 0x0001F8, "Member 'UWrestlerMasqueradeSubsystem::ExclusionZoneSetPoliceProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, IsMasqueradeEnabledProperty) == 0x000200, "Member 'UWrestlerMasqueradeSubsystem::IsMasqueradeEnabledProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, PlayerTrespassingVolumes) == 0x000308, "Member 'UWrestlerMasqueradeSubsystem::PlayerTrespassingVolumes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, PlayerActionsDataTable) == 0x000358, "Member 'UWrestlerMasqueradeSubsystem::PlayerActionsDataTable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, SightEQSQuery) == 0x000360, "Member 'UWrestlerMasqueradeSubsystem::SightEQSQuery' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeSubsystem, SpawnedEntityActorsNum) == 0x0004D8, "Member 'UWrestlerMasqueradeSubsystem::SpawnedEntityActorsNum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_IsPartitionedWorld \ +static_assert(alignof(WrestlerMasqueradeWidget_IsPartitionedWorld) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_IsPartitionedWorld"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_IsPartitionedWorld) == 0x000001, "Wrong size on WrestlerMasqueradeWidget_IsPartitionedWorld"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_IsPartitionedWorld, ReturnValue) == 0x000000, "Member 'WrestlerMasqueradeWidget_IsPartitionedWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged \ +static_assert(alignof(WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged) == 0x000001, "Wrong size on WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged, bAware) == 0x000000, "Member 'WrestlerMasqueradeWidget_OnAnyEntityAwareOfPlayerChanged::bAware' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_OnEnemyDetectedPlayer \ +static_assert(alignof(WrestlerMasqueradeWidget_OnEnemyDetectedPlayer) == 0x000008, "Wrong alignment on WrestlerMasqueradeWidget_OnEnemyDetectedPlayer"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_OnEnemyDetectedPlayer) == 0x000008, "Wrong size on WrestlerMasqueradeWidget_OnEnemyDetectedPlayer"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_OnEnemyDetectedPlayer, InEnemy) == 0x000000, "Member 'WrestlerMasqueradeWidget_OnEnemyDetectedPlayer::InEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_OnMasqueradeScoreChanged \ +static_assert(alignof(WrestlerMasqueradeWidget_OnMasqueradeScoreChanged) == 0x000004, "Wrong alignment on WrestlerMasqueradeWidget_OnMasqueradeScoreChanged"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_OnMasqueradeScoreChanged) == 0x000008, "Wrong size on WrestlerMasqueradeWidget_OnMasqueradeScoreChanged"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_OnMasqueradeScoreChanged, PrevScore) == 0x000000, "Member 'WrestlerMasqueradeWidget_OnMasqueradeScoreChanged::PrevScore' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_OnMasqueradeScoreChanged, NewScore) == 0x000004, "Member 'WrestlerMasqueradeWidget_OnMasqueradeScoreChanged::NewScore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_OnWidgetVisibilityChanged \ +static_assert(alignof(WrestlerMasqueradeWidget_OnWidgetVisibilityChanged) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_OnWidgetVisibilityChanged"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_OnWidgetVisibilityChanged) == 0x000001, "Wrong size on WrestlerMasqueradeWidget_OnWidgetVisibilityChanged"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_OnWidgetVisibilityChanged, InVisibility) == 0x000000, "Member 'WrestlerMasqueradeWidget_OnWidgetVisibilityChanged::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_ShowHideAllElements \ +static_assert(alignof(WrestlerMasqueradeWidget_ShowHideAllElements) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_ShowHideAllElements"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_ShowHideAllElements) == 0x000001, "Wrong size on WrestlerMasqueradeWidget_ShowHideAllElements"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_ShowHideAllElements, InShow) == 0x000000, "Member 'WrestlerMasqueradeWidget_ShowHideAllElements::InShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_UpdateElementVisibility \ +static_assert(alignof(WrestlerMasqueradeWidget_UpdateElementVisibility) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_UpdateElementVisibility"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_UpdateElementVisibility) == 0x000002, "Wrong size on WrestlerMasqueradeWidget_UpdateElementVisibility"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_UpdateElementVisibility, InElement) == 0x000000, "Member 'WrestlerMasqueradeWidget_UpdateElementVisibility::InElement' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_UpdateElementVisibility, InShow) == 0x000001, "Member 'WrestlerMasqueradeWidget_UpdateElementVisibility::InShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMasqueradeWidget_UpdateEye \ +static_assert(alignof(WrestlerMasqueradeWidget_UpdateEye) == 0x000001, "Wrong alignment on WrestlerMasqueradeWidget_UpdateEye"); \ +static_assert(sizeof(WrestlerMasqueradeWidget_UpdateEye) == 0x000001, "Wrong size on WrestlerMasqueradeWidget_UpdateEye"); \ +static_assert(offsetof(WrestlerMasqueradeWidget_UpdateEye, bIsPlayerDetected) == 0x000000, "Member 'WrestlerMasqueradeWidget_UpdateEye::bIsPlayerDetected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMasqueradeWidget \ +static_assert(alignof(UWrestlerMasqueradeWidget) == 0x000008, "Wrong alignment on UWrestlerMasqueradeWidget"); \ +static_assert(sizeof(UWrestlerMasqueradeWidget) == 0x000320, "Wrong size on UWrestlerMasqueradeWidget"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, UpheldProgressBarMaterial) == 0x0002C8, "Member 'UWrestlerMasqueradeWidget::UpheldProgressBarMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, CautionProgressBarMaterial) == 0x0002D0, "Member 'UWrestlerMasqueradeWidget::CautionProgressBarMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, EngagedProgressBarMaterial) == 0x0002D8, "Member 'UWrestlerMasqueradeWidget::EngagedProgressBarMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, EyeIcon) == 0x0002E0, "Member 'UWrestlerMasqueradeWidget::EyeIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, MaskPanel) == 0x0002E8, "Member 'UWrestlerMasqueradeWidget::MaskPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, ProgressBarPanel) == 0x0002F0, "Member 'UWrestlerMasqueradeWidget::ProgressBarPanel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, MasqueradeStartedEvent) == 0x0002F8, "Member 'UWrestlerMasqueradeWidget::MasqueradeStartedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, MasqueradeScoreBarUpdateSpeed) == 0x000308, "Member 'UWrestlerMasqueradeWidget::MasqueradeScoreBarUpdateSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, MinCautionProgressValue) == 0x00030C, "Member 'UWrestlerMasqueradeWidget::MinCautionProgressValue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMasqueradeWidget, MinEngagedProgressValue) == 0x000310, "Member 'UWrestlerMasqueradeWidget::MinEngagedProgressValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassActor_SetBloodResonanceTypeByTag_Native \ +static_assert(alignof(WrestlerMassActor_SetBloodResonanceTypeByTag_Native) == 0x000004, "Wrong alignment on WrestlerMassActor_SetBloodResonanceTypeByTag_Native"); \ +static_assert(sizeof(WrestlerMassActor_SetBloodResonanceTypeByTag_Native) == 0x00000C, "Wrong size on WrestlerMassActor_SetBloodResonanceTypeByTag_Native"); \ +static_assert(offsetof(WrestlerMassActor_SetBloodResonanceTypeByTag_Native, BloodTypeTag) == 0x000000, "Member 'WrestlerMassActor_SetBloodResonanceTypeByTag_Native::BloodTypeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassActor_SetBloodResonanceTypeByTag_Native, bActivateImmediately) == 0x000008, "Member 'WrestlerMassActor_SetBloodResonanceTypeByTag_Native::bActivateImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassActor_IsMale \ +static_assert(alignof(WrestlerMassActor_IsMale) == 0x000001, "Wrong alignment on WrestlerMassActor_IsMale"); \ +static_assert(sizeof(WrestlerMassActor_IsMale) == 0x000001, "Wrong size on WrestlerMassActor_IsMale"); \ +static_assert(offsetof(WrestlerMassActor_IsMale, ReturnValue) == 0x000000, "Member 'WrestlerMassActor_IsMale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassActor \ +static_assert(alignof(AWrestlerMassActor) == 0x000008, "Wrong alignment on AWrestlerMassActor"); \ +static_assert(sizeof(AWrestlerMassActor) == 0x000318, "Wrong size on AWrestlerMassActor"); \ +static_assert(offsetof(AWrestlerMassActor, ModularCharacterComponent) == 0x0002F0, "Member 'AWrestlerMassActor::ModularCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassActor, MassAgentComponent) == 0x0002F8, "Member 'AWrestlerMassActor::MassAgentComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassActor, bCanBePooled) == 0x000300, "Member 'AWrestlerMassActor::bCanBePooled' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassActor, MaxPoolSize) == 0x000304, "Member 'AWrestlerMassActor::MaxPoolSize' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassActor, BaseEyeHeight) == 0x000308, "Member 'AWrestlerMassActor::BaseEyeHeight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassActor, CurrentModularCharacterProfile) == 0x000310, "Member 'AWrestlerMassActor::CurrentModularCharacterProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponInstance_GetWeaponDataByTag \ +static_assert(alignof(WrestlerWeaponInstance_GetWeaponDataByTag) == 0x000004, "Wrong alignment on WrestlerWeaponInstance_GetWeaponDataByTag"); \ +static_assert(sizeof(WrestlerWeaponInstance_GetWeaponDataByTag) == 0x00000C, "Wrong size on WrestlerWeaponInstance_GetWeaponDataByTag"); \ +static_assert(offsetof(WrestlerWeaponInstance_GetWeaponDataByTag, InDataTag) == 0x000000, "Member 'WrestlerWeaponInstance_GetWeaponDataByTag::InDataTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponInstance_GetWeaponDataByTag, ReturnValue) == 0x000008, "Member 'WrestlerWeaponInstance_GetWeaponDataByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponInstance_GetBaseMeleeDamage \ +static_assert(alignof(WrestlerWeaponInstance_GetBaseMeleeDamage) == 0x000004, "Wrong alignment on WrestlerWeaponInstance_GetBaseMeleeDamage"); \ +static_assert(sizeof(WrestlerWeaponInstance_GetBaseMeleeDamage) == 0x000004, "Wrong size on WrestlerWeaponInstance_GetBaseMeleeDamage"); \ +static_assert(offsetof(WrestlerWeaponInstance_GetBaseMeleeDamage, ReturnValue) == 0x000000, "Member 'WrestlerWeaponInstance_GetBaseMeleeDamage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponInstance_GetTimeSinceLastInteractedWith \ +static_assert(alignof(WrestlerWeaponInstance_GetTimeSinceLastInteractedWith) == 0x000004, "Wrong alignment on WrestlerWeaponInstance_GetTimeSinceLastInteractedWith"); \ +static_assert(sizeof(WrestlerWeaponInstance_GetTimeSinceLastInteractedWith) == 0x000004, "Wrong size on WrestlerWeaponInstance_GetTimeSinceLastInteractedWith"); \ +static_assert(offsetof(WrestlerWeaponInstance_GetTimeSinceLastInteractedWith, ReturnValue) == 0x000000, "Member 'WrestlerWeaponInstance_GetTimeSinceLastInteractedWith::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeaponInstance \ +static_assert(alignof(UWrestlerWeaponInstance) == 0x000008, "Wrong alignment on UWrestlerWeaponInstance"); \ +static_assert(sizeof(UWrestlerWeaponInstance) == 0x0000A0, "Wrong size on UWrestlerWeaponInstance"); \ +static_assert(offsetof(UWrestlerWeaponInstance, BaseMeleeDamage) == 0x000038, "Member 'UWrestlerWeaponInstance::BaseMeleeDamage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponInstance, WeaponData) == 0x000040, "Member 'UWrestlerWeaponInstance::WeaponData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassActorProcessor \ +static_assert(alignof(UWrestlerMassActorProcessor) == 0x000008, "Wrong alignment on UWrestlerMassActorProcessor"); \ +static_assert(sizeof(UWrestlerMassActorProcessor) == 0x000360, "Wrong size on UWrestlerMassActorProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassActorSignificanceProcessor \ +static_assert(alignof(UWrestlerMassActorSignificanceProcessor) == 0x000008, "Wrong alignment on UWrestlerMassActorSignificanceProcessor"); \ +static_assert(sizeof(UWrestlerMassActorSignificanceProcessor) == 0x000370, "Wrong size on UWrestlerMassActorSignificanceProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAgentAvoidanceSyncTrait \ +static_assert(alignof(UWrestlerMassAgentAvoidanceSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassAgentAvoidanceSyncTrait"); \ +static_assert(sizeof(UWrestlerMassAgentAvoidanceSyncTrait) == 0x000030, "Wrong size on UWrestlerMassAgentAvoidanceSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassIgnoreActorCollisionTagAdded \ +static_assert(alignof(UWrestlerMassIgnoreActorCollisionTagAdded) == 0x000008, "Wrong alignment on UWrestlerMassIgnoreActorCollisionTagAdded"); \ +static_assert(sizeof(UWrestlerMassIgnoreActorCollisionTagAdded) == 0x000370, "Wrong size on UWrestlerMassIgnoreActorCollisionTagAdded"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_GetPotentialEnemies \ +static_assert(alignof(WrestlerPCSInterface_GetPotentialEnemies) == 0x000008, "Wrong alignment on WrestlerPCSInterface_GetPotentialEnemies"); \ +static_assert(sizeof(WrestlerPCSInterface_GetPotentialEnemies) == 0x000010, "Wrong size on WrestlerPCSInterface_GetPotentialEnemies"); \ +static_assert(offsetof(WrestlerPCSInterface_GetPotentialEnemies, OutPotentialEnemies) == 0x000000, "Member 'WrestlerPCSInterface_GetPotentialEnemies::OutPotentialEnemies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_InitiateAttack \ +static_assert(alignof(WrestlerPCSInterface_InitiateAttack) == 0x000001, "Wrong alignment on WrestlerPCSInterface_InitiateAttack"); \ +static_assert(sizeof(WrestlerPCSInterface_InitiateAttack) == 0x000001, "Wrong size on WrestlerPCSInterface_InitiateAttack"); \ +static_assert(offsetof(WrestlerPCSInterface_InitiateAttack, ReturnValue) == 0x000000, "Member 'WrestlerPCSInterface_InitiateAttack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_MoveTo \ +static_assert(alignof(WrestlerPCSInterface_MoveTo) == 0x000008, "Wrong alignment on WrestlerPCSInterface_MoveTo"); \ +static_assert(sizeof(WrestlerPCSInterface_MoveTo) == 0x000018, "Wrong size on WrestlerPCSInterface_MoveTo"); \ +static_assert(offsetof(WrestlerPCSInterface_MoveTo, Location) == 0x000000, "Member 'WrestlerPCSInterface_MoveTo::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_OverridePriorityActor \ +static_assert(alignof(WrestlerPCSInterface_OverridePriorityActor) == 0x000008, "Wrong alignment on WrestlerPCSInterface_OverridePriorityActor"); \ +static_assert(sizeof(WrestlerPCSInterface_OverridePriorityActor) == 0x000008, "Wrong size on WrestlerPCSInterface_OverridePriorityActor"); \ +static_assert(offsetof(WrestlerPCSInterface_OverridePriorityActor, InNewPriorityActor) == 0x000000, "Member 'WrestlerPCSInterface_OverridePriorityActor::InNewPriorityActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_QueryPCSReady \ +static_assert(alignof(WrestlerPCSInterface_QueryPCSReady) == 0x000001, "Wrong alignment on WrestlerPCSInterface_QueryPCSReady"); \ +static_assert(sizeof(WrestlerPCSInterface_QueryPCSReady) == 0x000001, "Wrong size on WrestlerPCSInterface_QueryPCSReady"); \ +static_assert(offsetof(WrestlerPCSInterface_QueryPCSReady, bOutReady) == 0x000000, "Member 'WrestlerPCSInterface_QueryPCSReady::bOutReady' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_QuerySensingPlayer \ +static_assert(alignof(WrestlerPCSInterface_QuerySensingPlayer) == 0x000001, "Wrong alignment on WrestlerPCSInterface_QuerySensingPlayer"); \ +static_assert(sizeof(WrestlerPCSInterface_QuerySensingPlayer) == 0x000001, "Wrong size on WrestlerPCSInterface_QuerySensingPlayer"); \ +static_assert(offsetof(WrestlerPCSInterface_QuerySensingPlayer, bOutSensingPlayer) == 0x000000, "Member 'WrestlerPCSInterface_QuerySensingPlayer::bOutSensingPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_QueryStateAttacker \ +static_assert(alignof(WrestlerPCSInterface_QueryStateAttacker) == 0x000001, "Wrong alignment on WrestlerPCSInterface_QueryStateAttacker"); \ +static_assert(sizeof(WrestlerPCSInterface_QueryStateAttacker) == 0x000001, "Wrong size on WrestlerPCSInterface_QueryStateAttacker"); \ +static_assert(offsetof(WrestlerPCSInterface_QueryStateAttacker, bOutIsAttacker) == 0x000000, "Member 'WrestlerPCSInterface_QueryStateAttacker::bOutIsAttacker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_QueryStateRetreat \ +static_assert(alignof(WrestlerPCSInterface_QueryStateRetreat) == 0x000001, "Wrong alignment on WrestlerPCSInterface_QueryStateRetreat"); \ +static_assert(sizeof(WrestlerPCSInterface_QueryStateRetreat) == 0x000001, "Wrong size on WrestlerPCSInterface_QueryStateRetreat"); \ +static_assert(offsetof(WrestlerPCSInterface_QueryStateRetreat, bOutRetreating) == 0x000000, "Member 'WrestlerPCSInterface_QueryStateRetreat::bOutRetreating' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_SetBattlePropagated \ +static_assert(alignof(WrestlerPCSInterface_SetBattlePropagated) == 0x000001, "Wrong alignment on WrestlerPCSInterface_SetBattlePropagated"); \ +static_assert(sizeof(WrestlerPCSInterface_SetBattlePropagated) == 0x000001, "Wrong size on WrestlerPCSInterface_SetBattlePropagated"); \ +static_assert(offsetof(WrestlerPCSInterface_SetBattlePropagated, bInBattlePropagated) == 0x000000, "Member 'WrestlerPCSInterface_SetBattlePropagated::bInBattlePropagated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer \ +static_assert(alignof(WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer) == 0x000001, "Wrong alignment on WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer"); \ +static_assert(sizeof(WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer) == 0x000001, "Wrong size on WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer"); \ +static_assert(offsetof(WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer, bInLostLOS) == 0x000000, "Member 'WrestlerPCSInterface_SetEveryEnemyHasLostLOSOfPlayer::bInLostLOS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_SetInitiateAttack \ +static_assert(alignof(WrestlerPCSInterface_SetInitiateAttack) == 0x000001, "Wrong alignment on WrestlerPCSInterface_SetInitiateAttack"); \ +static_assert(sizeof(WrestlerPCSInterface_SetInitiateAttack) == 0x000001, "Wrong size on WrestlerPCSInterface_SetInitiateAttack"); \ +static_assert(offsetof(WrestlerPCSInterface_SetInitiateAttack, bInInitiate) == 0x000000, "Member 'WrestlerPCSInterface_SetInitiateAttack::bInInitiate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_SetPCSBlockingState \ +static_assert(alignof(WrestlerPCSInterface_SetPCSBlockingState) == 0x000001, "Wrong alignment on WrestlerPCSInterface_SetPCSBlockingState"); \ +static_assert(sizeof(WrestlerPCSInterface_SetPCSBlockingState) == 0x000001, "Wrong size on WrestlerPCSInterface_SetPCSBlockingState"); \ +static_assert(offsetof(WrestlerPCSInterface_SetPCSBlockingState, bInBlocking) == 0x000000, "Member 'WrestlerPCSInterface_SetPCSBlockingState::bInBlocking' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_SetZoneIndex \ +static_assert(alignof(WrestlerPCSInterface_SetZoneIndex) == 0x000004, "Wrong alignment on WrestlerPCSInterface_SetZoneIndex"); \ +static_assert(sizeof(WrestlerPCSInterface_SetZoneIndex) == 0x000004, "Wrong size on WrestlerPCSInterface_SetZoneIndex"); \ +static_assert(offsetof(WrestlerPCSInterface_SetZoneIndex, ZoneIndex) == 0x000000, "Member 'WrestlerPCSInterface_SetZoneIndex::ZoneIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_GetPriorityActorForPCS \ +static_assert(alignof(WrestlerPCSInterface_GetPriorityActorForPCS) == 0x000008, "Wrong alignment on WrestlerPCSInterface_GetPriorityActorForPCS"); \ +static_assert(sizeof(WrestlerPCSInterface_GetPriorityActorForPCS) == 0x000008, "Wrong size on WrestlerPCSInterface_GetPriorityActorForPCS"); \ +static_assert(offsetof(WrestlerPCSInterface_GetPriorityActorForPCS, ReturnValue) == 0x000000, "Member 'WrestlerPCSInterface_GetPriorityActorForPCS::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPCSInterface_ReceiveOnComboFinished \ +static_assert(alignof(WrestlerPCSInterface_ReceiveOnComboFinished) == 0x000001, "Wrong alignment on WrestlerPCSInterface_ReceiveOnComboFinished"); \ +static_assert(sizeof(WrestlerPCSInterface_ReceiveOnComboFinished) == 0x000001, "Wrong size on WrestlerPCSInterface_ReceiveOnComboFinished"); \ +static_assert(offsetof(WrestlerPCSInterface_ReceiveOnComboFinished, ReturnValue) == 0x000000, "Member 'WrestlerPCSInterface_ReceiveOnComboFinished::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerPCSInterface \ +static_assert(alignof(IWrestlerPCSInterface) == 0x000001, "Wrong alignment on IWrestlerPCSInterface"); \ +static_assert(sizeof(IWrestlerPCSInterface) == 0x000001, "Wrong size on IWrestlerPCSInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassIgnoreActorCollisionTagRemoved \ +static_assert(alignof(UWrestlerMassIgnoreActorCollisionTagRemoved) == 0x000008, "Wrong alignment on UWrestlerMassIgnoreActorCollisionTagRemoved"); \ +static_assert(sizeof(UWrestlerMassIgnoreActorCollisionTagRemoved) == 0x000370, "Wrong size on UWrestlerMassIgnoreActorCollisionTagRemoved"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameV1 \ +static_assert(alignof(UWrestlerSaveGameV1) == 0x000008, "Wrong alignment on UWrestlerSaveGameV1"); \ +static_assert(sizeof(UWrestlerSaveGameV1) == 0x0005F8, "Wrong size on UWrestlerSaveGameV1"); \ +static_assert(offsetof(UWrestlerSaveGameV1, AutomataData) == 0x000088, "Member 'UWrestlerSaveGameV1::AutomataData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, PropertyStorageData) == 0x0000A8, "Member 'UWrestlerSaveGameV1::PropertyStorageData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, PlaythroughData) == 0x000288, "Member 'UWrestlerSaveGameV1::PlaythroughData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, PlayerData) == 0x0002F8, "Member 'UWrestlerSaveGameV1::PlayerData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, LevelData) == 0x000390, "Member 'UWrestlerSaveGameV1::LevelData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, QuestProgressData) == 0x000410, "Member 'UWrestlerSaveGameV1::QuestProgressData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, ObjectTaggingData) == 0x000468, "Member 'UWrestlerSaveGameV1::ObjectTaggingData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, DialogueData) == 0x0004B8, "Member 'UWrestlerSaveGameV1::DialogueData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, UIData) == 0x000508, "Member 'UWrestlerSaveGameV1::UIData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV1, ActorVisibilities) == 0x0005A8, "Member 'UWrestlerSaveGameV1::ActorVisibilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAgentBloodResonanceSyncTrait \ +static_assert(alignof(UWrestlerMassAgentBloodResonanceSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassAgentBloodResonanceSyncTrait"); \ +static_assert(sizeof(UWrestlerMassAgentBloodResonanceSyncTrait) == 0x000030, "Wrong size on UWrestlerMassAgentBloodResonanceSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAgentFeetLocationSyncTrait \ +static_assert(alignof(UWrestlerMassAgentFeetLocationSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassAgentFeetLocationSyncTrait"); \ +static_assert(sizeof(UWrestlerMassAgentFeetLocationSyncTrait) == 0x000030, "Wrong size on UWrestlerMassAgentFeetLocationSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassFeetLocationTranslator \ +static_assert(alignof(UWrestlerMassFeetLocationTranslator) == 0x000008, "Wrong alignment on UWrestlerMassFeetLocationTranslator"); \ +static_assert(sizeof(UWrestlerMassFeetLocationTranslator) == 0x000380, "Wrong size on UWrestlerMassFeetLocationTranslator"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassModularCharacterProfile \ +static_assert(alignof(UWrestlerMassModularCharacterProfile) == 0x000008, "Wrong alignment on UWrestlerMassModularCharacterProfile"); \ +static_assert(sizeof(UWrestlerMassModularCharacterProfile) == 0x0002F0, "Wrong size on UWrestlerMassModularCharacterProfile"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassCharacterOrientationTranslator \ +static_assert(alignof(UWrestlerMassCharacterOrientationTranslator) == 0x000008, "Wrong alignment on UWrestlerMassCharacterOrientationTranslator"); \ +static_assert(sizeof(UWrestlerMassCharacterOrientationTranslator) == 0x000380, "Wrong size on UWrestlerMassCharacterOrientationTranslator"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_ReleaseSearchRoute \ +static_assert(alignof(UWrestlerStateTreeTask_ReleaseSearchRoute) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_ReleaseSearchRoute"); \ +static_assert(sizeof(UWrestlerStateTreeTask_ReleaseSearchRoute) == 0x000048, "Wrong size on UWrestlerStateTreeTask_ReleaseSearchRoute"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI, InTagToAdd) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI::InTagToAdd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI, bSignalTagChanged) == 0x000009, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassAI::bSignalTagChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity, InTagToAdd) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity::InTagToAdd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity, bSignalTagChanged) == 0x000011, "Member 'WrestlerMassAIFunctionLibrary_AddGameplayTagToMassEntity::bSignalTagChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment) == 0x000028, "Wrong size on WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment, InBloodResonanceTags) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_AddRestrictedBloodResonanceAssignment::InBloodResonanceTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_AreMassEntitiesSame \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_AreMassEntitiesSame) == 0x000004, "Wrong alignment on WrestlerMassAIFunctionLibrary_AreMassEntitiesSame"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_AreMassEntitiesSame) == 0x000014, "Wrong size on WrestlerMassAIFunctionLibrary_AreMassEntitiesSame"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AreMassEntitiesSame, InEntityHandle1) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_AreMassEntitiesSame::InEntityHandle1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AreMassEntitiesSame, InEntityHandle2) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_AreMassEntitiesSame::InEntityHandle2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_AreMassEntitiesSame, ReturnValue) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_AreMassEntitiesSame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments) == 0x000008, "Wrong size on WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ClearBloodResonanceAssignments::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents) == 0x000008, "Wrong size on WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ClearBloodResonanceEvents::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI, EnemyAIActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI::EnemyAIActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI, MassAIBehaviour) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ConvertEnemyAIToMassAI::MassAIBehaviour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI) == 0x000030, "Wrong size on WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, InMassAIActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::InMassAIActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, InSpawnedDelegate) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::InSpawnedDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, bConvertBackManually) == 0x000018, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::bConvertBackManually' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, bChangeTeam) == 0x000019, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::bChangeTeam' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, InNewTeam) == 0x00001A, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::InNewTeam' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, InInitialTarget) == 0x000020, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::InInitialTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI, ReturnValue) == 0x000028, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassAIToEnemyAI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI) == 0x000038, "Wrong size on WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, InSpawnedDelegate) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::InSpawnedDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, bConvertBackManually) == 0x000020, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::bConvertBackManually' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, bChangeTeam) == 0x000021, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::bChangeTeam' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, InNewTeam) == 0x000022, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::InNewTeam' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, InInitialTarget) == 0x000028, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::InInitialTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI, ReturnValue) == 0x000030, "Member 'WrestlerMassAIFunctionLibrary_ConvertMassEntityToEnemyAI::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents) == 0x000008, "Wrong size on WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_DisableBloodResonanceEvents::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType, InType) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_DisableBloodResonanceEventsForType::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_DoesAnyEntityHaveBloodResonance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents, bEnabled) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_EnableBloodResonanceEvents::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType, bEnabled) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType, InType) == 0x000009, "Member 'WrestlerMassAIFunctionLibrary_EnableBloodResonanceEventsForType::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD, bForceHighLODEnabled) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_ForceMassEntityHighLOD::bForceHighLODEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassBloodResonanceState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassBloodResonanceType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassEntityActor \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassEntityActor) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassEntityActor"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassEntityActor) == 0x000020, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassEntityActor"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityActor, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityActor::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityActor, InEntityHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityActor::InEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityActor, OutActor) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityActor::OutActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityActor, ReturnValue) == 0x000018, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassEntityHandle \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassEntityHandle) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassEntityHandle"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassEntityHandle) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassEntityHandle"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityHandle, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityHandle::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityHandle, OutEntityHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityHandle::OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityHandle, ReturnValue) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityHandle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassEntityTransform \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform) == 0x000010, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassEntityTransform"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform) == 0x000080, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassEntityTransform"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityTransform::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform, InEntityHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityTransform::InEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform, OutTransform) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityTransform::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassEntityTransform, ReturnValue) == 0x000070, "Member 'WrestlerMassAIFunctionLibrary_GetMassEntityTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetMassSnapshotPose \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetMassSnapshotPose) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetMassSnapshotPose"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetMassSnapshotPose) == 0x000040, "Wrong size on WrestlerMassAIFunctionLibrary_GetMassSnapshotPose"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassSnapshotPose, EnemyAIActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetMassSnapshotPose::EnemyAIActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetMassSnapshotPose, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetMassSnapshotPose::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving, InMinSpeed) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving::InMinSpeed' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving, InMinStoppedCount) == 0x00000C, "Member 'WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving::InMinStoppedCount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving, ReturnValue) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_GetNumEntitiesMoving::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_GetTaggedWhereIsWallyPedestriansCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_HasMassFragment \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_HasMassFragment) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_HasMassFragment"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_HasMassFragment) == 0x000020, "Wrong size on WrestlerMassAIFunctionLibrary_HasMassFragment"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassFragment, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_HasMassFragment::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassFragment, InFragment) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_HasMassFragment::InFragment' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassFragment, ReturnValue) == 0x000018, "Member 'WrestlerMassAIFunctionLibrary_HasMassFragment::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_HasMassTag \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_HasMassTag) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_HasMassTag"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_HasMassTag) == 0x000020, "Wrong size on WrestlerMassAIFunctionLibrary_HasMassTag"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassTag, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_HasMassTag::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassTag, InTag) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_HasMassTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_HasMassTag, ReturnValue) == 0x000018, "Member 'WrestlerMassAIFunctionLibrary_HasMassTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_IsAnyEntityTurnedOff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_IsAnyEntityUsingPairedSO::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_IsPolice \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_IsPolice) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_IsPolice"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_IsPolice) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_IsPolice"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsPolice, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_IsPolice::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsPolice, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_IsPolice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_IsScared \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_IsScared) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_IsScared"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_IsScared) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_IsScared"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsScared, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_IsScared::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsScared, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_IsScared::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_IsUnconscious \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_IsUnconscious) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_IsUnconscious"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_IsUnconscious) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_IsUnconscious"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsUnconscious, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_IsUnconscious::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_IsUnconscious, ReturnValue) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_IsUnconscious::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_MakeMassAIFearSource \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_MakeMassAIFearSource"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource) == 0x000030, "Wrong size on WrestlerMassAIFunctionLibrary_MakeMassAIFearSource"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIFearSource::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource, InFearLocation) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIFearSource::InFearLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource, InFearRadius) == 0x000020, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIFearSource::InFearRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource, InPoliceReactionType) == 0x000024, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIFearSource::InPoliceReactionType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIFearSource, InFearInstigator) == 0x000028, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIFearSource::InFearInstigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_MakeMassAIScared \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_MakeMassAIScared) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_MakeMassAIScared"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_MakeMassAIScared) == 0x000038, "Wrong size on WrestlerMassAIFunctionLibrary_MakeMassAIScared"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIScared, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIScared::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIScared, InMassAIActor) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIScared::InMassAIActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIScared, InScareLocation) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIScared::InScareLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIScared, InScareInstigator) == 0x000028, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIScared::InScareInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassAIScared, bCanScarePolice) == 0x000030, "Member 'WrestlerMassAIFunctionLibrary_MakeMassAIScared::bCanScarePolice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_MakeMassEntityScared \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_MakeMassEntityScared"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared) == 0x000038, "Wrong size on WrestlerMassAIFunctionLibrary_MakeMassEntityScared"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_MakeMassEntityScared::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_MakeMassEntityScared::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared, InScareLocation) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_MakeMassEntityScared::InScareLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared, InScareInstigator) == 0x000028, "Member 'WrestlerMassAIFunctionLibrary_MakeMassEntityScared::InScareInstigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MakeMassEntityScared, bCanScarePolice) == 0x000030, "Member 'WrestlerMassAIFunctionLibrary_MakeMassEntityScared::bCanScarePolice' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag, InTag) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag, ReturnValue) == 0x000011, "Member 'WrestlerMassAIFunctionLibrary_MassEntityHasGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_MassHasGameplayTag \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_MassHasGameplayTag) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_MassHasGameplayTag"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_MassHasGameplayTag) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_MassHasGameplayTag"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassHasGameplayTag, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_MassHasGameplayTag::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassHasGameplayTag, InTag) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_MassHasGameplayTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_MassHasGameplayTag, ReturnValue) == 0x000009, "Member 'WrestlerMassAIFunctionLibrary_MassHasGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments) == 0x000008, "Wrong size on WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_PurgeBloodResonanceAssignments::InWorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI) == 0x000010, "Wrong size on WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI, InTagToRemove) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI::InTagToRemove' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI, bSignalTagChanged) == 0x000009, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassAI::bSignalTagChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity, InTagToRemove) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity::InTagToRemove' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity, bSignalTagChanged) == 0x000011, "Member 'WrestlerMassAIFunctionLibrary_RemoveGameplayTagFromMassEntity::bSignalTagChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment) == 0x000028, "Wrong size on WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment, InBloodResonanceTags) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_RemoveRestrictedBloodResonanceAssignment::InBloodResonanceTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent) == 0x000028, "Wrong size on WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent, InNoiseLocation) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent::InNoiseLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent, InRadius) == 0x000020, "Member 'WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent::InRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent, InvestigationType) == 0x000024, "Member 'WrestlerMassAIFunctionLibrary_ReportMassNoiseEvent::InvestigationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment) == 0x000028, "Wrong size on WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment, InBloodResonanceTags) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_RestrictBloodResonanceAssignment::InBloodResonanceTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType, InActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType, InResonanceTag) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType::InResonanceTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType, InResonanceType) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType::InResonanceType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType, InState) == 0x000011, "Member 'WrestlerMassAIFunctionLibrary_SetMassBloodResonanceType::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_SetMassMovementEnabled \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_SetMassMovementEnabled) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_SetMassMovementEnabled"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_SetMassMovementEnabled) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_SetMassMovementEnabled"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassMovementEnabled, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_SetMassMovementEnabled::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassMovementEnabled, InMassHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_SetMassMovementEnabled::InMassHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SetMassMovementEnabled, bEnabled) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_SetMassMovementEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_SignalMassEntity \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_SignalMassEntity) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_SignalMassEntity"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_SignalMassEntity) == 0x000008, "Wrong size on WrestlerMassAIFunctionLibrary_SignalMassEntity"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_SignalMassEntity, InMassActor) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_SignalMassEntity::InMassActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_UseActorTransformForMass \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_UseActorTransformForMass) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_UseActorTransformForMass"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_UseActorTransformForMass) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_UseActorTransformForMass"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_UseActorTransformForMass, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_UseActorTransformForMass::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_UseActorTransformForMass, InEntityHandle) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_UseActorTransformForMass::InEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_UseActorTransformForMass, bEnabled) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_UseActorTransformForMass::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassAIFunctionLibrary_ValidateEntityConfig \ +static_assert(alignof(WrestlerMassAIFunctionLibrary_ValidateEntityConfig) == 0x000008, "Wrong alignment on WrestlerMassAIFunctionLibrary_ValidateEntityConfig"); \ +static_assert(sizeof(WrestlerMassAIFunctionLibrary_ValidateEntityConfig) == 0x000018, "Wrong size on WrestlerMassAIFunctionLibrary_ValidateEntityConfig"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ValidateEntityConfig, InWorldContextObject) == 0x000000, "Member 'WrestlerMassAIFunctionLibrary_ValidateEntityConfig::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ValidateEntityConfig, InConfig) == 0x000008, "Member 'WrestlerMassAIFunctionLibrary_ValidateEntityConfig::InConfig' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassAIFunctionLibrary_ValidateEntityConfig, ReturnValue) == 0x000010, "Member 'WrestlerMassAIFunctionLibrary_ValidateEntityConfig::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAIFunctionLibrary \ +static_assert(alignof(UWrestlerMassAIFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerMassAIFunctionLibrary"); \ +static_assert(sizeof(UWrestlerMassAIFunctionLibrary) == 0x000028, "Wrong size on UWrestlerMassAIFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerAnimationFragmentInitializer \ +static_assert(alignof(UWrestlerAnimationFragmentInitializer) == 0x000008, "Wrong alignment on UWrestlerAnimationFragmentInitializer"); \ +static_assert(sizeof(UWrestlerAnimationFragmentInitializer) == 0x000370, "Wrong size on UWrestlerAnimationFragmentInitializer"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAnimationProcessor \ +static_assert(alignof(UWrestlerMassAnimationProcessor) == 0x000008, "Wrong alignment on UWrestlerMassAnimationProcessor"); \ +static_assert(sizeof(UWrestlerMassAnimationProcessor) == 0x000610, "Wrong size on UWrestlerMassAnimationProcessor"); \ +static_assert(offsetof(UWrestlerMassAnimationProcessor, MoveThreshold) == 0x000600, "Member 'UWrestlerMassAnimationProcessor::MoveThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassAnimationProcessor, IdleAnimationStateIndex) == 0x000604, "Member 'UWrestlerMassAnimationProcessor::IdleAnimationStateIndex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassAnimationProcessor, WalkAnimationStateIndex) == 0x000608, "Member 'UWrestlerMassAnimationProcessor::WalkAnimationStateIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSOPropsSyncTrait \ +static_assert(alignof(UWrestlerMassSOPropsSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassSOPropsSyncTrait"); \ +static_assert(sizeof(UWrestlerMassSOPropsSyncTrait) == 0x000030, "Wrong size on UWrestlerMassSOPropsSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAnimationProcessor_GameThread \ +static_assert(alignof(UWrestlerMassAnimationProcessor_GameThread) == 0x000008, "Wrong alignment on UWrestlerMassAnimationProcessor_GameThread"); \ +static_assert(sizeof(UWrestlerMassAnimationProcessor_GameThread) == 0x000610, "Wrong size on UWrestlerMassAnimationProcessor_GameThread"); \ +static_assert(offsetof(UWrestlerMassAnimationProcessor_GameThread, EnemyAIPoseSnapshotBlendSpeed) == 0x000600, "Member 'UWrestlerMassAnimationProcessor_GameThread::EnemyAIPoseSnapshotBlendSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_TargetActionTag \ +static_assert(alignof(UWrestlerTaskScore_TargetActionTag) == 0x000008, "Wrong alignment on UWrestlerTaskScore_TargetActionTag"); \ +static_assert(sizeof(UWrestlerTaskScore_TargetActionTag) == 0x000038, "Wrong size on UWrestlerTaskScore_TargetActionTag"); \ +static_assert(offsetof(UWrestlerTaskScore_TargetActionTag, TagToCheck) == 0x000030, "Member 'UWrestlerTaskScore_TargetActionTag::TagToCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAnimationSubsystem \ +static_assert(alignof(UWrestlerMassAnimationSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassAnimationSubsystem"); \ +static_assert(sizeof(UWrestlerMassAnimationSubsystem) == 0x000080, "Wrong size on UWrestlerMassAnimationSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAnimDebugSystem \ +static_assert(alignof(UWrestlerMassAnimDebugSystem) == 0x000008, "Wrong alignment on UWrestlerMassAnimDebugSystem"); \ +static_assert(sizeof(UWrestlerMassAnimDebugSystem) == 0x000040, "Wrong size on UWrestlerMassAnimDebugSystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassApproachingPairTrait \ +static_assert(alignof(UWrestlerMassApproachingPairTrait) == 0x000008, "Wrong alignment on UWrestlerMassApproachingPairTrait"); \ +static_assert(sizeof(UWrestlerMassApproachingPairTrait) == 0x0000E8, "Wrong size on UWrestlerMassApproachingPairTrait"); \ +static_assert(offsetof(UWrestlerMassApproachingPairTrait, Data) == 0x000028, "Member 'UWrestlerMassApproachingPairTrait::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassArchetypesSubsystem \ +static_assert(alignof(UWrestlerMassArchetypesSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassArchetypesSubsystem"); \ +static_assert(sizeof(UWrestlerMassArchetypesSubsystem) == 0x000088, "Wrong size on UWrestlerMassArchetypesSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassObserverRegistry \ +static_assert(alignof(UWrestlerMassObserverRegistry) == 0x000008, "Wrong alignment on UWrestlerMassObserverRegistry"); \ +static_assert(sizeof(UWrestlerMassObserverRegistry) == 0x0001E8, "Wrong size on UWrestlerMassObserverRegistry"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_OnNewActiveQuestSet \ +static_assert(alignof(WrestlerWaypointComponent_OnNewActiveQuestSet) == 0x000004, "Wrong alignment on WrestlerWaypointComponent_OnNewActiveQuestSet"); \ +static_assert(sizeof(WrestlerWaypointComponent_OnNewActiveQuestSet) == 0x000008, "Wrong size on WrestlerWaypointComponent_OnNewActiveQuestSet"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnNewActiveQuestSet, InQuestTag) == 0x000000, "Member 'WrestlerWaypointComponent_OnNewActiveQuestSet::InQuestTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_OnPlayerLocationPropertyChanged \ +static_assert(alignof(WrestlerWaypointComponent_OnPlayerLocationPropertyChanged) == 0x000004, "Wrong alignment on WrestlerWaypointComponent_OnPlayerLocationPropertyChanged"); \ +static_assert(sizeof(WrestlerWaypointComponent_OnPlayerLocationPropertyChanged) == 0x000008, "Wrong size on WrestlerWaypointComponent_OnPlayerLocationPropertyChanged"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnPlayerLocationPropertyChanged, InNewValue) == 0x000000, "Member 'WrestlerWaypointComponent_OnPlayerLocationPropertyChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_OnWaypointAdded \ +static_assert(alignof(WrestlerWaypointComponent_OnWaypointAdded) == 0x000008, "Wrong alignment on WrestlerWaypointComponent_OnWaypointAdded"); \ +static_assert(sizeof(WrestlerWaypointComponent_OnWaypointAdded) == 0x000018, "Wrong size on WrestlerWaypointComponent_OnWaypointAdded"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnWaypointAdded, InTag) == 0x000000, "Member 'WrestlerWaypointComponent_OnWaypointAdded::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnWaypointAdded, InObject) == 0x000010, "Member 'WrestlerWaypointComponent_OnWaypointAdded::InObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_OnWaypointRemoved \ +static_assert(alignof(WrestlerWaypointComponent_OnWaypointRemoved) == 0x000008, "Wrong alignment on WrestlerWaypointComponent_OnWaypointRemoved"); \ +static_assert(sizeof(WrestlerWaypointComponent_OnWaypointRemoved) == 0x000018, "Wrong size on WrestlerWaypointComponent_OnWaypointRemoved"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnWaypointRemoved, InTag) == 0x000000, "Member 'WrestlerWaypointComponent_OnWaypointRemoved::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWaypointComponent_OnWaypointRemoved, InObject) == 0x000010, "Member 'WrestlerWaypointComponent_OnWaypointRemoved::InObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_UpdateTagFilter \ +static_assert(alignof(WrestlerWaypointComponent_UpdateTagFilter) == 0x000004, "Wrong alignment on WrestlerWaypointComponent_UpdateTagFilter"); \ +static_assert(sizeof(WrestlerWaypointComponent_UpdateTagFilter) == 0x000008, "Wrong size on WrestlerWaypointComponent_UpdateTagFilter"); \ +static_assert(offsetof(WrestlerWaypointComponent_UpdateTagFilter, Tag) == 0x000000, "Member 'WrestlerWaypointComponent_UpdateTagFilter::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWaypointComponent_GetWaypoints \ +static_assert(alignof(WrestlerWaypointComponent_GetWaypoints) == 0x000008, "Wrong alignment on WrestlerWaypointComponent_GetWaypoints"); \ +static_assert(sizeof(WrestlerWaypointComponent_GetWaypoints) == 0x000050, "Wrong size on WrestlerWaypointComponent_GetWaypoints"); \ +static_assert(offsetof(WrestlerWaypointComponent_GetWaypoints, ReturnValue) == 0x000000, "Member 'WrestlerWaypointComponent_GetWaypoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWaypointComponent \ +static_assert(alignof(UWrestlerWaypointComponent) == 0x000008, "Wrong alignment on UWrestlerWaypointComponent"); \ +static_assert(sizeof(UWrestlerWaypointComponent) == 0x000198, "Wrong size on UWrestlerWaypointComponent"); \ +static_assert(offsetof(UWrestlerWaypointComponent, WaypointTags) == 0x0000A0, "Member 'UWrestlerWaypointComponent::WaypointTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, WaypointQuestTags) == 0x0000C0, "Member 'UWrestlerWaypointComponent::WaypointQuestTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, OnWaypointsAddedEvent) == 0x0000E0, "Member 'UWrestlerWaypointComponent::OnWaypointsAddedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, PostWaypointsAddedEvent) == 0x0000F0, "Member 'UWrestlerWaypointComponent::PostWaypointsAddedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, OnWaypointsRemovedEvent) == 0x000100, "Member 'UWrestlerWaypointComponent::OnWaypointsRemovedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, LocationTagProperty) == 0x000140, "Member 'UWrestlerWaypointComponent::LocationTagProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWaypointComponent, LocationChangedListeners) == 0x000148, "Member 'UWrestlerWaypointComponent::LocationChangedListeners' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassMovingAvoidanceProcessor \ +static_assert(alignof(UWrestlerMassMovingAvoidanceProcessor) == 0x000008, "Wrong alignment on UWrestlerMassMovingAvoidanceProcessor"); \ +static_assert(sizeof(UWrestlerMassMovingAvoidanceProcessor) == 0x000620, "Wrong size on UWrestlerMassMovingAvoidanceProcessor"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassEntityIndicator \ +static_assert(alignof(AWrestlerMassEntityIndicator) == 0x000008, "Wrong alignment on AWrestlerMassEntityIndicator"); \ +static_assert(sizeof(AWrestlerMassEntityIndicator) == 0x000298, "Wrong size on AWrestlerMassEntityIndicator"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassAwarenessIndicator \ +static_assert(alignof(AWrestlerMassAwarenessIndicator) == 0x000008, "Wrong alignment on AWrestlerMassAwarenessIndicator"); \ +static_assert(sizeof(AWrestlerMassAwarenessIndicator) == 0x0002A0, "Wrong size on AWrestlerMassAwarenessIndicator"); \ +static_assert(offsetof(AWrestlerMassAwarenessIndicator, AwarenessWidgetComponent) == 0x000298, "Member 'AWrestlerMassAwarenessIndicator::AwarenessWidgetComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassAwarenessTrait \ +static_assert(alignof(UWrestlerMassAwarenessTrait) == 0x000008, "Wrong alignment on UWrestlerMassAwarenessTrait"); \ +static_assert(sizeof(UWrestlerMassAwarenessTrait) == 0x000058, "Wrong size on UWrestlerMassAwarenessTrait"); \ +static_assert(offsetof(UWrestlerMassAwarenessTrait, MaxAwareness) == 0x000028, "Member 'UWrestlerMassAwarenessTrait::MaxAwareness' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassAwarenessTrait, AwarenessConfig) == 0x000030, "Member 'UWrestlerMassAwarenessTrait::AwarenessConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceEventSpawnerSubsystem \ +static_assert(alignof(UWrestlerMassBloodResonanceEventSpawnerSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassBloodResonanceEventSpawnerSubsystem"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceEventSpawnerSubsystem) == 0x000158, "Wrong size on UWrestlerMassBloodResonanceEventSpawnerSubsystem"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceEventSpawnerSubsystem, EventDataAsset) == 0x000128, "Member 'UWrestlerMassBloodResonanceEventSpawnerSubsystem::EventDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceEventSpawnerSubsystem, CachedEventDataAsset) == 0x000150, "Member 'UWrestlerMassBloodResonanceEventSpawnerSubsystem::CachedEventDataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceEventGeneratorProcessor \ +static_assert(alignof(UWrestlerMassBloodResonanceEventGeneratorProcessor) == 0x000010, "Wrong alignment on UWrestlerMassBloodResonanceEventGeneratorProcessor"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceEventGeneratorProcessor) == 0x0006B0, "Wrong size on UWrestlerMassBloodResonanceEventGeneratorProcessor"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceEventGeneratorProcessor, bReuseExistingEntities) == 0x000600, "Member 'UWrestlerMassBloodResonanceEventGeneratorProcessor::bReuseExistingEntities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceEventGeneratorProcessor, EventDataAssetPerMap) == 0x000608, "Member 'UWrestlerMassBloodResonanceEventGeneratorProcessor::EventDataAssetPerMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceEventGeneratorProcessor, MinDelayToUseSmartObjectAgain) == 0x000658, "Member 'UWrestlerMassBloodResonanceEventGeneratorProcessor::MinDelayToUseSmartObjectAgain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetingComponent_GetTargetData \ +static_assert(alignof(WrestlerPassiveTargetingComponent_GetTargetData) == 0x000008, "Wrong alignment on WrestlerPassiveTargetingComponent_GetTargetData"); \ +static_assert(sizeof(WrestlerPassiveTargetingComponent_GetTargetData) == 0x000030, "Wrong size on WrestlerPassiveTargetingComponent_GetTargetData"); \ +static_assert(offsetof(WrestlerPassiveTargetingComponent_GetTargetData, InTargetActorType) == 0x000000, "Member 'WrestlerPassiveTargetingComponent_GetTargetData::InTargetActorType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPassiveTargetingComponent_GetTargetData, ReturnValue) == 0x000008, "Member 'WrestlerPassiveTargetingComponent_GetTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetingComponent_HasTargetData \ +static_assert(alignof(WrestlerPassiveTargetingComponent_HasTargetData) == 0x000008, "Wrong alignment on WrestlerPassiveTargetingComponent_HasTargetData"); \ +static_assert(sizeof(WrestlerPassiveTargetingComponent_HasTargetData) == 0x000010, "Wrong size on WrestlerPassiveTargetingComponent_HasTargetData"); \ +static_assert(offsetof(WrestlerPassiveTargetingComponent_HasTargetData, InTargetActorType) == 0x000000, "Member 'WrestlerPassiveTargetingComponent_HasTargetData::InTargetActorType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPassiveTargetingComponent_HasTargetData, ReturnValue) == 0x000008, "Member 'WrestlerPassiveTargetingComponent_HasTargetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPassiveTargetingComponent \ +static_assert(alignof(UWrestlerPassiveTargetingComponent) == 0x000008, "Wrong alignment on UWrestlerPassiveTargetingComponent"); \ +static_assert(sizeof(UWrestlerPassiveTargetingComponent) == 0x000110, "Wrong size on UWrestlerPassiveTargetingComponent"); \ +static_assert(offsetof(UWrestlerPassiveTargetingComponent, PassiveTargetingInstances) == 0x0000A0, "Member 'UWrestlerPassiveTargetingComponent::PassiveTargetingInstances' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingComponent, EquippedTargetActorType) == 0x0000F0, "Member 'UWrestlerPassiveTargetingComponent::EquippedTargetActorType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingComponent, AbilitySystemComponent) == 0x0000F8, "Member 'UWrestlerPassiveTargetingComponent::AbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingComponent, CameraSocketName) == 0x000100, "Member 'UWrestlerPassiveTargetingComponent::CameraSocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceEventSpawnerProcessor \ +static_assert(alignof(UWrestlerMassBloodResonanceEventSpawnerProcessor) == 0x000008, "Wrong alignment on UWrestlerMassBloodResonanceEventSpawnerProcessor"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceEventSpawnerProcessor) == 0x000360, "Wrong size on UWrestlerMassBloodResonanceEventSpawnerProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuTabButtonWidget \ +static_assert(alignof(UWrestlerRPGMenuTabButtonWidget) == 0x000010, "Wrong alignment on UWrestlerRPGMenuTabButtonWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuTabButtonWidget) == 0x001590, "Wrong size on UWrestlerRPGMenuTabButtonWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuTabButtonWidget, TabButtonLabel) == 0x001580, "Member 'UWrestlerRPGMenuTabButtonWidget::TabButtonLabel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceProcessor \ +static_assert(alignof(UWrestlerMassBloodResonanceProcessor) == 0x000008, "Wrong alignment on UWrestlerMassBloodResonanceProcessor"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceProcessor) == 0x000380, "Wrong size on UWrestlerMassBloodResonanceProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskBoardData \ +static_assert(alignof(UWrestlerTaskBoardData) == 0x000008, "Wrong alignment on UWrestlerTaskBoardData"); \ +static_assert(sizeof(UWrestlerTaskBoardData) == 0x000040, "Wrong size on UWrestlerTaskBoardData"); \ +static_assert(offsetof(UWrestlerTaskBoardData, TaskBoardConfigs) == 0x000030, "Member 'UWrestlerTaskBoardData::TaskBoardConfigs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceProcessor_GameThread \ +static_assert(alignof(UWrestlerMassBloodResonanceProcessor_GameThread) == 0x000008, "Wrong alignment on UWrestlerMassBloodResonanceProcessor_GameThread"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceProcessor_GameThread) == 0x000380, "Wrong size on UWrestlerMassBloodResonanceProcessor_GameThread"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUseSOBehaviorDefinition \ +static_assert(alignof(UWrestlerMassUseSOBehaviorDefinition) == 0x000008, "Wrong alignment on UWrestlerMassUseSOBehaviorDefinition"); \ +static_assert(sizeof(UWrestlerMassUseSOBehaviorDefinition) == 0x0000F0, "Wrong size on UWrestlerMassUseSOBehaviorDefinition"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, ContextualAnimationName) == 0x000030, "Member 'UWrestlerMassUseSOBehaviorDefinition::ContextualAnimationName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bSyncSmartObjectAnimations) == 0x000038, "Member 'UWrestlerMassUseSOBehaviorDefinition::bSyncSmartObjectAnimations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MinPlayAnimationDelay) == 0x00003C, "Member 'UWrestlerMassUseSOBehaviorDefinition::MinPlayAnimationDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MaxPlayAnimationDelay) == 0x000040, "Member 'UWrestlerMassUseSOBehaviorDefinition::MaxPlayAnimationDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, AllowedPedestrianTypes) == 0x000048, "Member 'UWrestlerMassUseSOBehaviorDefinition::AllowedPedestrianTypes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, AllowedGenderTypes) == 0x000058, "Member 'UWrestlerMassUseSOBehaviorDefinition::AllowedGenderTypes' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bOverrideAnimMontagePlayTime) == 0x000068, "Member 'UWrestlerMassUseSOBehaviorDefinition::bOverrideAnimMontagePlayTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bUseRandomUseTime) == 0x000069, "Member 'UWrestlerMassUseSOBehaviorDefinition::bUseRandomUseTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MinUseTime) == 0x00006C, "Member 'UWrestlerMassUseSOBehaviorDefinition::MinUseTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MaxUseTime) == 0x000070, "Member 'UWrestlerMassUseSOBehaviorDefinition::MaxUseTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, AllowedPedestrianTypesBitMask) == 0x000074, "Member 'UWrestlerMassUseSOBehaviorDefinition::AllowedPedestrianTypesBitMask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, AllowedGenderTypesBitMask) == 0x000078, "Member 'UWrestlerMassUseSOBehaviorDefinition::AllowedGenderTypesBitMask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, InteractionCooldown) == 0x00007C, "Member 'UWrestlerMassUseSOBehaviorDefinition::InteractionCooldown' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, ChanceOfBeingUsed) == 0x000080, "Member 'UWrestlerMassUseSOBehaviorDefinition::ChanceOfBeingUsed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptSOSpawn) == 0x000084, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptSOSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptBREventSpawn) == 0x00008C, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptBREventSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptSOClaim) == 0x000094, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptSOClaim' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptSOUse) == 0x00009C, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptSOUse' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptBREventActivated) == 0x0000A4, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptBREventActivated' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, DialoguePromptBREventActivateLoop) == 0x0000AC, "Member 'UWrestlerMassUseSOBehaviorDefinition::DialoguePromptBREventActivateLoop' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bIsConversationAllowed) == 0x0000B4, "Member 'UWrestlerMassUseSOBehaviorDefinition::bIsConversationAllowed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bIsIdleDialogueAllowed) == 0x0000B5, "Member 'UWrestlerMassUseSOBehaviorDefinition::bIsIdleDialogueAllowed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bShouldStandForConversation) == 0x0000B6, "Member 'UWrestlerMassUseSOBehaviorDefinition::bShouldStandForConversation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bBloodResonanceAllowed) == 0x0000B7, "Member 'UWrestlerMassUseSOBehaviorDefinition::bBloodResonanceAllowed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, PropsToSpawn) == 0x0000B8, "Member 'UWrestlerMassUseSOBehaviorDefinition::PropsToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bOverrideEntityAlwaysSeeDistance) == 0x0000C8, "Member 'UWrestlerMassUseSOBehaviorDefinition::bOverrideEntityAlwaysSeeDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, AlwaysSeeDistance) == 0x0000CC, "Member 'UWrestlerMassUseSOBehaviorDefinition::AlwaysSeeDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bOverrideEntityMaxSightDistance) == 0x0000D0, "Member 'UWrestlerMassUseSOBehaviorDefinition::bOverrideEntityMaxSightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MaxSightDistance) == 0x0000D4, "Member 'UWrestlerMassUseSOBehaviorDefinition::MaxSightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bOverrideEntityMaxSightAngle) == 0x0000D8, "Member 'UWrestlerMassUseSOBehaviorDefinition::bOverrideEntityMaxSightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, MaxSightAngle) == 0x0000DC, "Member 'UWrestlerMassUseSOBehaviorDefinition::MaxSightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bOverrideEntityActionNoticeability) == 0x0000E0, "Member 'UWrestlerMassUseSOBehaviorDefinition::bOverrideEntityActionNoticeability' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, ActionNoticeability) == 0x0000E4, "Member 'UWrestlerMassUseSOBehaviorDefinition::ActionNoticeability' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bIsCrimeSO) == 0x0000E8, "Member 'UWrestlerMassUseSOBehaviorDefinition::bIsCrimeSO' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseSOBehaviorDefinition, bIsMugger) == 0x0000E9, "Member 'UWrestlerMassUseSOBehaviorDefinition::bIsMugger' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition \ +static_assert(alignof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition) == 0x000008, "Wrong alignment on UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition"); \ +static_assert(sizeof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition) == 0x000108, "Wrong size on UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, GrantedPointsType) == 0x0000F0, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::GrantedPointsType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, TimeToGrantAfterActivation) == 0x0000F8, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::TimeToGrantAfterActivation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, TimeToActivateBehaviourAfterActivation) == 0x0000FC, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::TimeToActivateBehaviourAfterActivation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, bActivateUsingTalkInteraction) == 0x000100, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::bActivateUsingTalkInteraction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, bActivateUsingLOS) == 0x000101, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::bActivateUsingLOS' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition, ActivationLOSDistance) == 0x000104, "Member 'UWrestlerMassBloodResonanceSmartObjectBehaviorDefinition::ActivationLOSDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCharacter_OnTookDamage \ +static_assert(alignof(WrestlerMassCharacter_OnTookDamage) == 0x000008, "Wrong alignment on WrestlerMassCharacter_OnTookDamage"); \ +static_assert(sizeof(WrestlerMassCharacter_OnTookDamage) == 0x000008, "Wrong size on WrestlerMassCharacter_OnTookDamage"); \ +static_assert(offsetof(WrestlerMassCharacter_OnTookDamage, InDamageCauser) == 0x000000, "Member 'WrestlerMassCharacter_OnTookDamage::InDamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native \ +static_assert(alignof(WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native) == 0x000004, "Wrong alignment on WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native"); \ +static_assert(sizeof(WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native) == 0x00000C, "Wrong size on WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native"); \ +static_assert(offsetof(WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native, BloodTypeTag) == 0x000000, "Member 'WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native::BloodTypeTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native, bActivateImmediately) == 0x000008, "Member 'WrestlerMassCharacter_SetBloodResonanceTypeByTag_Native::bActivateImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCharacter_GetEntityIndexAndSerialNumber \ +static_assert(alignof(WrestlerMassCharacter_GetEntityIndexAndSerialNumber) == 0x000004, "Wrong alignment on WrestlerMassCharacter_GetEntityIndexAndSerialNumber"); \ +static_assert(sizeof(WrestlerMassCharacter_GetEntityIndexAndSerialNumber) == 0x000008, "Wrong size on WrestlerMassCharacter_GetEntityIndexAndSerialNumber"); \ +static_assert(offsetof(WrestlerMassCharacter_GetEntityIndexAndSerialNumber, OutIndex) == 0x000000, "Member 'WrestlerMassCharacter_GetEntityIndexAndSerialNumber::OutIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassCharacter_GetEntityIndexAndSerialNumber, OutSerialNumber) == 0x000004, "Member 'WrestlerMassCharacter_GetEntityIndexAndSerialNumber::OutSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCharacter_IsMale \ +static_assert(alignof(WrestlerMassCharacter_IsMale) == 0x000001, "Wrong alignment on WrestlerMassCharacter_IsMale"); \ +static_assert(sizeof(WrestlerMassCharacter_IsMale) == 0x000001, "Wrong size on WrestlerMassCharacter_IsMale"); \ +static_assert(offsetof(WrestlerMassCharacter_IsMale, ReturnValue) == 0x000000, "Member 'WrestlerMassCharacter_IsMale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCharacter_IsPolice \ +static_assert(alignof(WrestlerMassCharacter_IsPolice) == 0x000001, "Wrong alignment on WrestlerMassCharacter_IsPolice"); \ +static_assert(sizeof(WrestlerMassCharacter_IsPolice) == 0x000001, "Wrong size on WrestlerMassCharacter_IsPolice"); \ +static_assert(offsetof(WrestlerMassCharacter_IsPolice, ReturnValue) == 0x000000, "Member 'WrestlerMassCharacter_IsPolice::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassCharacter \ +static_assert(alignof(AWrestlerMassCharacter) == 0x000010, "Wrong alignment on AWrestlerMassCharacter"); \ +static_assert(sizeof(AWrestlerMassCharacter) == 0x000B50, "Wrong size on AWrestlerMassCharacter"); \ +static_assert(offsetof(AWrestlerMassCharacter, ModularCharacterComponent) == 0x000B20, "Member 'AWrestlerMassCharacter::ModularCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassCharacter, MassAgentComponent) == 0x000B28, "Member 'AWrestlerMassCharacter::MassAgentComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassCharacter, ReactiveCrosshairComponent) == 0x000B30, "Member 'AWrestlerMassCharacter::ReactiveCrosshairComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassCharacter, bCanBePooled) == 0x000B38, "Member 'AWrestlerMassCharacter::bCanBePooled' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassCharacter, MaxPoolSize) == 0x000B3C, "Member 'AWrestlerMassCharacter::MaxPoolSize' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassCharacter, CurrentModularCharacterProfile) == 0x000B40, "Member 'AWrestlerMassCharacter::CurrentModularCharacterProfile' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassContextualAnimationData \ +static_assert(alignof(UWrestlerMassContextualAnimationData) == 0x000008, "Wrong alignment on UWrestlerMassContextualAnimationData"); \ +static_assert(sizeof(UWrestlerMassContextualAnimationData) == 0x000170, "Wrong size on UWrestlerMassContextualAnimationData"); \ +static_assert(offsetof(UWrestlerMassContextualAnimationData, MasqueradeAnimsMap) == 0x000030, "Member 'UWrestlerMassContextualAnimationData::MasqueradeAnimsMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassContextualAnimationData, SmartObjectsAnimsMap) == 0x000080, "Member 'UWrestlerMassContextualAnimationData::SmartObjectsAnimsMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassContextualAnimationData, MasqueradeAnimsPerGenderMap) == 0x0000D0, "Member 'UWrestlerMassContextualAnimationData::MasqueradeAnimsPerGenderMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassContextualAnimationData, SmartObjectsAnimsPerGenderMap) == 0x000120, "Member 'UWrestlerMassContextualAnimationData::SmartObjectsAnimsPerGenderMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassConversationSubsystem_SetMassConversationDialogRig \ +static_assert(alignof(WrestlerMassConversationSubsystem_SetMassConversationDialogRig) == 0x000008, "Wrong alignment on WrestlerMassConversationSubsystem_SetMassConversationDialogRig"); \ +static_assert(sizeof(WrestlerMassConversationSubsystem_SetMassConversationDialogRig) == 0x000008, "Wrong size on WrestlerMassConversationSubsystem_SetMassConversationDialogRig"); \ +static_assert(offsetof(WrestlerMassConversationSubsystem_SetMassConversationDialogRig, InActor) == 0x000000, "Member 'WrestlerMassConversationSubsystem_SetMassConversationDialogRig::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassConversationSubsystem \ +static_assert(alignof(UWrestlerMassConversationSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassConversationSubsystem"); \ +static_assert(sizeof(UWrestlerMassConversationSubsystem) == 0x000230, "Wrong size on UWrestlerMassConversationSubsystem"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationActor) == 0x000040, "Member 'UWrestlerMassConversationSubsystem::MassConversationActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassEntityActor) == 0x000058, "Member 'UWrestlerMassConversationSubsystem::MassEntityActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassDialogueInfo) == 0x000088, "Member 'UWrestlerMassConversationSubsystem::MassDialogueInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassAmbientInfo) == 0x000090, "Member 'UWrestlerMassConversationSubsystem::MassAmbientInfo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationStartProperty) == 0x0000A0, "Member 'UWrestlerMassConversationSubsystem::MassConversationStartProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationFlirtProperty) == 0x0000A8, "Member 'UWrestlerMassConversationSubsystem::MassConversationFlirtProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationFightProperty) == 0x0000B0, "Member 'UWrestlerMassConversationSubsystem::MassConversationFightProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationFearProperty) == 0x0000B8, "Member 'UWrestlerMassConversationSubsystem::MassConversationFearProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationBREventProperty) == 0x0000C0, "Member 'UWrestlerMassConversationSubsystem::MassConversationBREventProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationWallyProperty) == 0x0000C8, "Member 'UWrestlerMassConversationSubsystem::MassConversationWallyProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationMarkedWallyNumberForNixProperty) == 0x0000D0, "Member 'UWrestlerMassConversationSubsystem::MassConversationMarkedWallyNumberForNixProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationMarkedWallyNumberForLouProperty) == 0x0000D8, "Member 'UWrestlerMassConversationSubsystem::MassConversationMarkedWallyNumberForLouProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, MassConversationHasAbilityProperties) == 0x0000E0, "Member 'UWrestlerMassConversationSubsystem::MassConversationHasAbilityProperties' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, CostumeProperties) == 0x000130, "Member 'UWrestlerMassConversationSubsystem::CostumeProperties' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, LastCamera) == 0x000180, "Member 'UWrestlerMassConversationSubsystem::LastCamera' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, Cameras) == 0x0001B0, "Member 'UWrestlerMassConversationSubsystem::Cameras' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassConversationSubsystem, CameraTraces) == 0x0001C0, "Member 'UWrestlerMassConversationSubsystem::CameraTraces' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerNotificationSubsystem_OpenRPGMenuFromNotification \ +static_assert(alignof(WrestlerNotificationSubsystem_OpenRPGMenuFromNotification) == 0x000001, "Wrong alignment on WrestlerNotificationSubsystem_OpenRPGMenuFromNotification"); \ +static_assert(sizeof(WrestlerNotificationSubsystem_OpenRPGMenuFromNotification) == 0x000001, "Wrong size on WrestlerNotificationSubsystem_OpenRPGMenuFromNotification"); \ +static_assert(offsetof(WrestlerNotificationSubsystem_OpenRPGMenuFromNotification, InTab) == 0x000000, "Member 'WrestlerNotificationSubsystem_OpenRPGMenuFromNotification::InTab' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerNotificationSubsystem_SendToNotificationStack \ +static_assert(alignof(WrestlerNotificationSubsystem_SendToNotificationStack) == 0x000008, "Wrong alignment on WrestlerNotificationSubsystem_SendToNotificationStack"); \ +static_assert(sizeof(WrestlerNotificationSubsystem_SendToNotificationStack) == 0x000058, "Wrong size on WrestlerNotificationSubsystem_SendToNotificationStack"); \ +static_assert(offsetof(WrestlerNotificationSubsystem_SendToNotificationStack, InNotification) == 0x000000, "Member 'WrestlerNotificationSubsystem_SendToNotificationStack::InNotification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNotificationSubsystem \ +static_assert(alignof(UWrestlerNotificationSubsystem) == 0x000008, "Wrong alignment on UWrestlerNotificationSubsystem"); \ +static_assert(sizeof(UWrestlerNotificationSubsystem) == 0x0000E0, "Wrong size on UWrestlerNotificationSubsystem"); \ + +#define DUMPER7_ASSERTS_IWrestlerMassCrowdActor \ +static_assert(alignof(IWrestlerMassCrowdActor) == 0x000001, "Wrong alignment on IWrestlerMassCrowdActor"); \ +static_assert(sizeof(IWrestlerMassCrowdActor) == 0x000001, "Wrong size on IWrestlerMassCrowdActor"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_Aggression \ +static_assert(alignof(UWrestlerTaskScore_Aggression) == 0x000008, "Wrong alignment on UWrestlerTaskScore_Aggression"); \ +static_assert(sizeof(UWrestlerTaskScore_Aggression) == 0x000030, "Wrong size on UWrestlerTaskScore_Aggression"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCrowdAnimInstance_GetLocomotionMachineName \ +static_assert(alignof(WrestlerMassCrowdAnimInstance_GetLocomotionMachineName) == 0x000004, "Wrong alignment on WrestlerMassCrowdAnimInstance_GetLocomotionMachineName"); \ +static_assert(sizeof(WrestlerMassCrowdAnimInstance_GetLocomotionMachineName) == 0x000008, "Wrong size on WrestlerMassCrowdAnimInstance_GetLocomotionMachineName"); \ +static_assert(offsetof(WrestlerMassCrowdAnimInstance_GetLocomotionMachineName, ReturnValue) == 0x000000, "Member 'WrestlerMassCrowdAnimInstance_GetLocomotionMachineName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassCrowdAnimInstance_ShouldStandForConversation \ +static_assert(alignof(WrestlerMassCrowdAnimInstance_ShouldStandForConversation) == 0x000001, "Wrong alignment on WrestlerMassCrowdAnimInstance_ShouldStandForConversation"); \ +static_assert(sizeof(WrestlerMassCrowdAnimInstance_ShouldStandForConversation) == 0x000001, "Wrong size on WrestlerMassCrowdAnimInstance_ShouldStandForConversation"); \ +static_assert(offsetof(WrestlerMassCrowdAnimInstance_ShouldStandForConversation, ReturnValue) == 0x000000, "Member 'WrestlerMassCrowdAnimInstance_ShouldStandForConversation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassCrowdAnimInstance \ +static_assert(alignof(UWrestlerMassCrowdAnimInstance) == 0x000010, "Wrong alignment on UWrestlerMassCrowdAnimInstance"); \ +static_assert(sizeof(UWrestlerMassCrowdAnimInstance) == 0x000440, "Wrong size on UWrestlerMassCrowdAnimInstance"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, bInCombat) == 0x0003A0, "Member 'UWrestlerMassCrowdAnimInstance::bInCombat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, bIsMugger) == 0x0003A1, "Member 'UWrestlerMassCrowdAnimInstance::bIsMugger' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, bIsIdle) == 0x0003A2, "Member 'UWrestlerMassCrowdAnimInstance::bIsIdle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, MoveSpeed) == 0x0003A4, "Member 'UWrestlerMassCrowdAnimInstance::MoveSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, MoveDirection) == 0x0003A8, "Member 'UWrestlerMassCrowdAnimInstance::MoveDirection' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, EnemyAIPoseSnapshot) == 0x0003B0, "Member 'UWrestlerMassCrowdAnimInstance::EnemyAIPoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, EnemyAIPoseSnapshotBlendAlpha) == 0x0003E8, "Member 'UWrestlerMassCrowdAnimInstance::EnemyAIPoseSnapshotBlendAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, LookAtLocationOverride) == 0x0003F0, "Member 'UWrestlerMassCrowdAnimInstance::LookAtLocationOverride' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, LookAtLocationOverrideValid) == 0x000408, "Member 'UWrestlerMassCrowdAnimInstance::LookAtLocationOverrideValid' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, bLookingAtPlayer) == 0x000409, "Member 'UWrestlerMassCrowdAnimInstance::bLookingAtPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, LookAtLocationBlendSpaceInput) == 0x000410, "Member 'UWrestlerMassCrowdAnimInstance::LookAtLocationBlendSpaceInput' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, LocomotionStartTime) == 0x000420, "Member 'UWrestlerMassCrowdAnimInstance::LocomotionStartTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, CurrentIdleAnim) == 0x000428, "Member 'UWrestlerMassCrowdAnimInstance::CurrentIdleAnim' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassCrowdAnimInstance, CurrentLocomotionBlendspace) == 0x000430, "Member 'UWrestlerMassCrowdAnimInstance::CurrentLocomotionBlendspace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassCrowdRepresentation \ +static_assert(alignof(UWrestlerMassCrowdRepresentation) == 0x000008, "Wrong alignment on UWrestlerMassCrowdRepresentation"); \ +static_assert(sizeof(UWrestlerMassCrowdRepresentation) == 0x000028, "Wrong size on UWrestlerMassCrowdRepresentation"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDeadBodiesSubsystem \ +static_assert(alignof(UWrestlerMassDeadBodiesSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassDeadBodiesSubsystem"); \ +static_assert(sizeof(UWrestlerMassDeadBodiesSubsystem) == 0x0000B8, "Wrong size on UWrestlerMassDeadBodiesSubsystem"); \ +static_assert(offsetof(UWrestlerMassDeadBodiesSubsystem, DeadBodiesData) == 0x000040, "Member 'UWrestlerMassDeadBodiesSubsystem::DeadBodiesData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestButtonWidget_SetButtonTitle \ +static_assert(alignof(WrestlerQuestButtonWidget_SetButtonTitle) == 0x000008, "Wrong alignment on WrestlerQuestButtonWidget_SetButtonTitle"); \ +static_assert(sizeof(WrestlerQuestButtonWidget_SetButtonTitle) == 0x000018, "Wrong size on WrestlerQuestButtonWidget_SetButtonTitle"); \ +static_assert(offsetof(WrestlerQuestButtonWidget_SetButtonTitle, InQuesTitle) == 0x000000, "Member 'WrestlerQuestButtonWidget_SetButtonTitle::InQuesTitle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestButtonWidget_ToggleMasqueradeMode \ +static_assert(alignof(WrestlerQuestButtonWidget_ToggleMasqueradeMode) == 0x000001, "Wrong alignment on WrestlerQuestButtonWidget_ToggleMasqueradeMode"); \ +static_assert(sizeof(WrestlerQuestButtonWidget_ToggleMasqueradeMode) == 0x000001, "Wrong size on WrestlerQuestButtonWidget_ToggleMasqueradeMode"); \ +static_assert(offsetof(WrestlerQuestButtonWidget_ToggleMasqueradeMode, bNewMasqueradeMode) == 0x000000, "Member 'WrestlerQuestButtonWidget_ToggleMasqueradeMode::bNewMasqueradeMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestButtonWidget_ToggleQuestIconVisibility \ +static_assert(alignof(WrestlerQuestButtonWidget_ToggleQuestIconVisibility) == 0x000001, "Wrong alignment on WrestlerQuestButtonWidget_ToggleQuestIconVisibility"); \ +static_assert(sizeof(WrestlerQuestButtonWidget_ToggleQuestIconVisibility) == 0x000001, "Wrong size on WrestlerQuestButtonWidget_ToggleQuestIconVisibility"); \ +static_assert(offsetof(WrestlerQuestButtonWidget_ToggleQuestIconVisibility, bInMakeVisible) == 0x000000, "Member 'WrestlerQuestButtonWidget_ToggleQuestIconVisibility::bInMakeVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestButtonWidget_GetButtonBody \ +static_assert(alignof(WrestlerQuestButtonWidget_GetButtonBody) == 0x000008, "Wrong alignment on WrestlerQuestButtonWidget_GetButtonBody"); \ +static_assert(sizeof(WrestlerQuestButtonWidget_GetButtonBody) == 0x000008, "Wrong size on WrestlerQuestButtonWidget_GetButtonBody"); \ +static_assert(offsetof(WrestlerQuestButtonWidget_GetButtonBody, ReturnValue) == 0x000000, "Member 'WrestlerQuestButtonWidget_GetButtonBody::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestButtonWidget \ +static_assert(alignof(UWrestlerQuestButtonWidget) == 0x000008, "Wrong alignment on UWrestlerQuestButtonWidget"); \ +static_assert(sizeof(UWrestlerQuestButtonWidget) == 0x000300, "Wrong size on UWrestlerQuestButtonWidget"); \ +static_assert(offsetof(UWrestlerQuestButtonWidget, bCanInteractWhenMasqueradeBroken) == 0x0002C8, "Member 'UWrestlerQuestButtonWidget::bCanInteractWhenMasqueradeBroken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestButtonWidget, ButtonBody) == 0x0002F0, "Member 'UWrestlerQuestButtonWidget::ButtonBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestButtonWidget, bWasMasqueradeBroken) == 0x0002F8, "Member 'UWrestlerQuestButtonWidget::bWasMasqueradeBroken' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDeadBodyObserveProcessor \ +static_assert(alignof(UWrestlerMassDeadBodyObserveProcessor) == 0x000008, "Wrong alignment on UWrestlerMassDeadBodyObserveProcessor"); \ +static_assert(sizeof(UWrestlerMassDeadBodyObserveProcessor) == 0x000360, "Wrong size on UWrestlerMassDeadBodyObserveProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerSideContainerWidget \ +static_assert(alignof(UWrestlerSideContainerWidget) == 0x000008, "Wrong alignment on UWrestlerSideContainerWidget"); \ +static_assert(sizeof(UWrestlerSideContainerWidget) == 0x0003D0, "Wrong size on UWrestlerSideContainerWidget"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, MessageContainer) == 0x000330, "Member 'UWrestlerSideContainerWidget::MessageContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, DialogueCodexNotificationData) == 0x000350, "Member 'UWrestlerSideContainerWidget::DialogueCodexNotificationData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, bCanShortcutToMenu) == 0x0003A8, "Member 'UWrestlerSideContainerWidget::bCanShortcutToMenu' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, PlayerActionAssetMap) == 0x0003B0, "Member 'UWrestlerSideContainerWidget::PlayerActionAssetMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, PlayerMappingContext) == 0x0003B8, "Member 'UWrestlerSideContainerWidget::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideContainerWidget, AvailableWidgets) == 0x0003C0, "Member 'UWrestlerSideContainerWidget::AvailableWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDeadBodyWitnessProcessor \ +static_assert(alignof(UWrestlerMassDeadBodyWitnessProcessor) == 0x000008, "Wrong alignment on UWrestlerMassDeadBodyWitnessProcessor"); \ +static_assert(sizeof(UWrestlerMassDeadBodyWitnessProcessor) == 0x000360, "Wrong size on UWrestlerMassDeadBodyWitnessProcessor"); \ +static_assert(offsetof(UWrestlerMassDeadBodyWitnessProcessor, TimeUntilStopDetectsPlayerAsKiller) == 0x0000B8, "Member 'UWrestlerMassDeadBodyWitnessProcessor::TimeUntilStopDetectsPlayerAsKiller' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDeathTrait \ +static_assert(alignof(UWrestlerMassDeathTrait) == 0x000008, "Wrong alignment on UWrestlerMassDeathTrait"); \ +static_assert(sizeof(UWrestlerMassDeathTrait) == 0x000038, "Wrong size on UWrestlerMassDeathTrait"); \ +static_assert(offsetof(UWrestlerMassDeathTrait, Data) == 0x000028, "Member 'UWrestlerMassDeathTrait::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassDebugDisplay \ +static_assert(alignof(AWrestlerMassDebugDisplay) == 0x000008, "Wrong alignment on AWrestlerMassDebugDisplay"); \ +static_assert(sizeof(AWrestlerMassDebugDisplay) == 0x000458, "Wrong size on AWrestlerMassDebugDisplay"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bIsEnabled) == 0x000298, "Member 'AWrestlerMassDebugDisplay::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, ScreenLocation) == 0x0002A0, "Member 'AWrestlerMassDebugDisplay::ScreenLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowLODInfo) == 0x0002B0, "Member 'AWrestlerMassDebugDisplay::bShowLODInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowTemplates) == 0x0002B1, "Member 'AWrestlerMassDebugDisplay::bShowTemplates' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowProfiles) == 0x0002B2, "Member 'AWrestlerMassDebugDisplay::bShowProfiles' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowDensity) == 0x0002B3, "Member 'AWrestlerMassDebugDisplay::bShowDensity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowSpawningInfo) == 0x0002B4, "Member 'AWrestlerMassDebugDisplay::bShowSpawningInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowMasqueradeInfo) == 0x0002B5, "Member 'AWrestlerMassDebugDisplay::bShowMasqueradeInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowSpacingInfo) == 0x0002B6, "Member 'AWrestlerMassDebugDisplay::bShowSpacingInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowBloodResonanceInfo) == 0x0002B7, "Member 'AWrestlerMassDebugDisplay::bShowBloodResonanceInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowBloodResonanceEventInfo) == 0x0002B8, "Member 'AWrestlerMassDebugDisplay::bShowBloodResonanceEventInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowWallyInfo) == 0x0002B9, "Member 'AWrestlerMassDebugDisplay::bShowWallyInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowWallaInfo) == 0x0002BA, "Member 'AWrestlerMassDebugDisplay::bShowWallaInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowMobilityInfo) == 0x0002BB, "Member 'AWrestlerMassDebugDisplay::bShowMobilityInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowTurningInfo) == 0x0002BC, "Member 'AWrestlerMassDebugDisplay::bShowTurningInfo' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, bShowMassActors) == 0x0002BD, "Member 'AWrestlerMassDebugDisplay::bShowMassActors' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, LocationParams) == 0x0002C0, "Member 'AWrestlerMassDebugDisplay::LocationParams' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, NearbyDistance) == 0x0002E0, "Member 'AWrestlerMassDebugDisplay::NearbyDistance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, FallDetectParams) == 0x0002E4, "Member 'AWrestlerMassDebugDisplay::FallDetectParams' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, MobilityParams) == 0x000308, "Member 'AWrestlerMassDebugDisplay::MobilityParams' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassDebugDisplay, TurningParams) == 0x00031C, "Member 'AWrestlerMassDebugDisplay::TurningParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_UnconsciousEntities \ +static_assert(alignof(UWrestlerMassSightProcessor_UnconsciousEntities) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_UnconsciousEntities"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_UnconsciousEntities) == 0x000720, "Wrong size on UWrestlerMassSightProcessor_UnconsciousEntities"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDensityProcessor \ +static_assert(alignof(UWrestlerMassDensityProcessor) == 0x000008, "Wrong alignment on UWrestlerMassDensityProcessor"); \ +static_assert(sizeof(UWrestlerMassDensityProcessor) == 0x000370, "Wrong size on UWrestlerMassDensityProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskDebugWidget \ +static_assert(alignof(UWrestlerTaskDebugWidget) == 0x000008, "Wrong alignment on UWrestlerTaskDebugWidget"); \ +static_assert(sizeof(UWrestlerTaskDebugWidget) == 0x0002F8, "Wrong size on UWrestlerTaskDebugWidget"); \ +static_assert(offsetof(UWrestlerTaskDebugWidget, EnemyDebugName) == 0x0002C8, "Member 'UWrestlerTaskDebugWidget::EnemyDebugName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDebugWidget, TaskTag) == 0x0002D8, "Member 'UWrestlerTaskDebugWidget::TaskTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDebugWidget, Score) == 0x0002E8, "Member 'UWrestlerTaskDebugWidget::Score' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDestroyActorProcessor \ +static_assert(alignof(UWrestlerMassDestroyActorProcessor) == 0x000008, "Wrong alignment on UWrestlerMassDestroyActorProcessor"); \ +static_assert(sizeof(UWrestlerMassDestroyActorProcessor) == 0x000360, "Wrong size on UWrestlerMassDestroyActorProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDialogueProcessor \ +static_assert(alignof(UWrestlerMassDialogueProcessor) == 0x000010, "Wrong alignment on UWrestlerMassDialogueProcessor"); \ +static_assert(sizeof(UWrestlerMassDialogueProcessor) == 0x000660, "Wrong size on UWrestlerMassDialogueProcessor"); \ +static_assert(offsetof(UWrestlerMassDialogueProcessor, DefaultPromptInfo) == 0x000658, "Member 'UWrestlerMassDialogueProcessor::DefaultPromptInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDialogueTrait \ +static_assert(alignof(UWrestlerMassDialogueTrait) == 0x000008, "Wrong alignment on UWrestlerMassDialogueTrait"); \ +static_assert(sizeof(UWrestlerMassDialogueTrait) == 0x000068, "Wrong size on UWrestlerMassDialogueTrait"); \ +static_assert(offsetof(UWrestlerMassDialogueTrait, DialogueData) == 0x000028, "Member 'UWrestlerMassDialogueTrait::DialogueData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMissionControlComponent \ +static_assert(alignof(UWrestlerMissionControlComponent) == 0x000008, "Wrong alignment on UWrestlerMissionControlComponent"); \ +static_assert(sizeof(UWrestlerMissionControlComponent) == 0x000280, "Wrong size on UWrestlerMissionControlComponent"); \ + +#define DUMPER7_ASSERTS_WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests \ +static_assert(alignof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests) == 0x000004, "Wrong alignment on WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests"); \ +static_assert(sizeof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests) == 0x000004, "Wrong size on WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests, ReturnValue) == 0x000000, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueGetRegisteredRequests::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest \ +static_assert(alignof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest) == 0x000008, "Wrong alignment on WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest"); \ +static_assert(sizeof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest) == 0x000020, "Wrong size on WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest, InWorldContextObject) == 0x000000, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest, InEntityIndex) == 0x000008, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest::InEntityIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest, InEntitySerialNumber) == 0x00000C, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest::InEntitySerialNumber' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest, InPrompt) == 0x000010, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest::InPrompt' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest, ReturnValue) == 0x000018, "Member 'WrestlerMassDialogueBlueprintUtils_MassAIDialogueRequest::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassDialogueBlueprintUtils \ +static_assert(alignof(UWrestlerMassDialogueBlueprintUtils) == 0x000008, "Wrong alignment on UWrestlerMassDialogueBlueprintUtils"); \ +static_assert(sizeof(UWrestlerMassDialogueBlueprintUtils) == 0x000028, "Wrong size on UWrestlerMassDialogueBlueprintUtils"); \ + +#define DUMPER7_ASSERTS_WrestlerTutorialComponent_GetTutorialWithID \ +static_assert(alignof(WrestlerTutorialComponent_GetTutorialWithID) == 0x000008, "Wrong alignment on WrestlerTutorialComponent_GetTutorialWithID"); \ +static_assert(sizeof(WrestlerTutorialComponent_GetTutorialWithID) == 0x0000B0, "Wrong size on WrestlerTutorialComponent_GetTutorialWithID"); \ +static_assert(offsetof(WrestlerTutorialComponent_GetTutorialWithID, InID) == 0x000000, "Member 'WrestlerTutorialComponent_GetTutorialWithID::InID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTutorialComponent_GetTutorialWithID, ReturnValue) == 0x000010, "Member 'WrestlerTutorialComponent_GetTutorialWithID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTutorialComponent \ +static_assert(alignof(UWrestlerTutorialComponent) == 0x000008, "Wrong alignment on UWrestlerTutorialComponent"); \ +static_assert(sizeof(UWrestlerTutorialComponent) == 0x0000A8, "Wrong size on UWrestlerTutorialComponent"); \ +static_assert(offsetof(UWrestlerTutorialComponent, TutorialAssetMap) == 0x0000A0, "Member 'UWrestlerTutorialComponent::TutorialAssetMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerMassEnemyCharacter \ +static_assert(alignof(IWrestlerMassEnemyCharacter) == 0x000001, "Wrong alignment on IWrestlerMassEnemyCharacter"); \ +static_assert(sizeof(IWrestlerMassEnemyCharacter) == 0x000001, "Wrong size on IWrestlerMassEnemyCharacter"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior \ +static_assert(alignof(WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior) == 0x000004, "Wrong alignment on WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior) == 0x00000C, "Wrong size on WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior, InTagToCheck) == 0x000000, "Member 'WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior::InTagToCheck' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior, ReturnValue) == 0x000008, "Member 'WrestlerTransitionSubsystem_IsLocationGameplayTagInInterior::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_ApplyActorRelativeTransform \ +static_assert(alignof(WrestlerTransitionSubsystem_ApplyActorRelativeTransform) == 0x000010, "Wrong alignment on WrestlerTransitionSubsystem_ApplyActorRelativeTransform"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_ApplyActorRelativeTransform) == 0x000080, "Wrong size on WrestlerTransitionSubsystem_ApplyActorRelativeTransform"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_ApplyActorRelativeTransform, InPlayer) == 0x000000, "Member 'WrestlerTransitionSubsystem_ApplyActorRelativeTransform::InPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_ApplyActorRelativeTransform, InTransitionTransform) == 0x000010, "Member 'WrestlerTransitionSubsystem_ApplyActorRelativeTransform::InTransitionTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_ApplyActorRelativeTransform, ReturnValue) == 0x000070, "Member 'WrestlerTransitionSubsystem_ApplyActorRelativeTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform \ +static_assert(alignof(WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform) == 0x000010, "Wrong alignment on WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform) == 0x000080, "Wrong size on WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform, InPlayer) == 0x000000, "Member 'WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform::InPlayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform, OutTransform) == 0x000010, "Member 'WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform::OutTransform' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform, ReturnValue) == 0x000070, "Member 'WrestlerTransitionSubsystem_CalculateRelativeTransitionTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_RequestDataLayerTransition \ +static_assert(alignof(WrestlerTransitionSubsystem_RequestDataLayerTransition) == 0x000008, "Wrong alignment on WrestlerTransitionSubsystem_RequestDataLayerTransition"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_RequestDataLayerTransition) == 0x000048, "Wrong size on WrestlerTransitionSubsystem_RequestDataLayerTransition"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, InTransitionActor) == 0x000000, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::InTransitionActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, InDestinationTag) == 0x000008, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::InDestinationTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, InDatalayersToUnload) == 0x000010, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::InDatalayersToUnload' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, InDatalayersToLoad) == 0x000020, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::InDatalayersToLoad' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, InDatalayersToActivate) == 0x000030, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::InDatalayersToActivate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestDataLayerTransition, OutResult) == 0x000040, "Member 'WrestlerTransitionSubsystem_RequestDataLayerTransition::OutResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_RequestSeamlessLevelTransition \ +static_assert(alignof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition) == 0x000008, "Wrong alignment on WrestlerTransitionSubsystem_RequestSeamlessLevelTransition"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition) == 0x000040, "Wrong size on WrestlerTransitionSubsystem_RequestSeamlessLevelTransition"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InTransitionActor) == 0x000000, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InTransitionActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InDestinationTag) == 0x000008, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InDestinationTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InWorldTag) == 0x000010, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InWorldTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InPlayerStartTag) == 0x000018, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InPlayerStartTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InLevelLoadOptions) == 0x000020, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InLevelLoadOptions' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, InTransitionDataLayer) == 0x000030, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::InTransitionDataLayer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, bInPauseAtMidpoint) == 0x000038, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::bInPauseAtMidpoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_RequestSeamlessLevelTransition, OutResult) == 0x000039, "Member 'WrestlerTransitionSubsystem_RequestSeamlessLevelTransition::OutResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_SetDataLayerRuntimeStates \ +static_assert(alignof(WrestlerTransitionSubsystem_SetDataLayerRuntimeStates) == 0x000008, "Wrong alignment on WrestlerTransitionSubsystem_SetDataLayerRuntimeStates"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_SetDataLayerRuntimeStates) == 0x000030, "Wrong size on WrestlerTransitionSubsystem_SetDataLayerRuntimeStates"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_SetDataLayerRuntimeStates, InDatalayersToUnload) == 0x000000, "Member 'WrestlerTransitionSubsystem_SetDataLayerRuntimeStates::InDatalayersToUnload' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_SetDataLayerRuntimeStates, InDatalayersToLoad) == 0x000010, "Member 'WrestlerTransitionSubsystem_SetDataLayerRuntimeStates::InDatalayersToLoad' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_SetDataLayerRuntimeStates, InDatalayersToActivate) == 0x000020, "Member 'WrestlerTransitionSubsystem_SetDataLayerRuntimeStates::InDatalayersToActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransitionSubsystem_IsRequestInProgress \ +static_assert(alignof(WrestlerTransitionSubsystem_IsRequestInProgress) == 0x000001, "Wrong alignment on WrestlerTransitionSubsystem_IsRequestInProgress"); \ +static_assert(sizeof(WrestlerTransitionSubsystem_IsRequestInProgress) == 0x000001, "Wrong size on WrestlerTransitionSubsystem_IsRequestInProgress"); \ +static_assert(offsetof(WrestlerTransitionSubsystem_IsRequestInProgress, ReturnValue) == 0x000000, "Member 'WrestlerTransitionSubsystem_IsRequestInProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTransitionSubsystem \ +static_assert(alignof(UWrestlerTransitionSubsystem) == 0x000008, "Wrong alignment on UWrestlerTransitionSubsystem"); \ +static_assert(sizeof(UWrestlerTransitionSubsystem) == 0x000050, "Wrong size on UWrestlerTransitionSubsystem"); \ +static_assert(offsetof(UWrestlerTransitionSubsystem, PlayerLocationProperty) == 0x000038, "Member 'UWrestlerTransitionSubsystem::PlayerLocationProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEntityChangedSignalProcessor \ +static_assert(alignof(UWrestlerMassEntityChangedSignalProcessor) == 0x000010, "Wrong alignment on UWrestlerMassEntityChangedSignalProcessor"); \ +static_assert(sizeof(UWrestlerMassEntityChangedSignalProcessor) == 0x000380, "Wrong size on UWrestlerMassEntityChangedSignalProcessor"); \ +static_assert(offsetof(UWrestlerMassEntityChangedSignalProcessor, ObserveTags) == 0x0000B8, "Member 'UWrestlerMassEntityChangedSignalProcessor::ObserveTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassEntityChangedSignalProcessor, ObserveFragments) == 0x0000C8, "Member 'UWrestlerMassEntityChangedSignalProcessor::ObserveFragments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEntityPersistentDataTrait \ +static_assert(alignof(UWrestlerMassEntityPersistentDataTrait) == 0x000008, "Wrong alignment on UWrestlerMassEntityPersistentDataTrait"); \ +static_assert(sizeof(UWrestlerMassEntityPersistentDataTrait) == 0x000048, "Wrong size on UWrestlerMassEntityPersistentDataTrait"); \ +static_assert(offsetof(UWrestlerMassEntityPersistentDataTrait, Data) == 0x000028, "Member 'UWrestlerMassEntityPersistentDataTrait::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEntityQuadTreeProcessor \ +static_assert(alignof(UWrestlerMassEntityQuadTreeProcessor) == 0x000008, "Wrong alignment on UWrestlerMassEntityQuadTreeProcessor"); \ +static_assert(sizeof(UWrestlerMassEntityQuadTreeProcessor) == 0x000360, "Wrong size on UWrestlerMassEntityQuadTreeProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEntityQuadTreeSubSystem \ +static_assert(alignof(UWrestlerMassEntityQuadTreeSubSystem) == 0x000008, "Wrong alignment on UWrestlerMassEntityQuadTreeSubSystem"); \ +static_assert(sizeof(UWrestlerMassEntityQuadTreeSubSystem) == 0x000070, "Wrong size on UWrestlerMassEntityQuadTreeSubSystem"); \ +static_assert(offsetof(UWrestlerMassEntityQuadTreeSubSystem, WorldBoundsMin) == 0x000040, "Member 'UWrestlerMassEntityQuadTreeSubSystem::WorldBoundsMin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassEntityQuadTreeSubSystem, WorldBoundsMax) == 0x000050, "Member 'UWrestlerMassEntityQuadTreeSubSystem::WorldBoundsMax' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassEntityQuadTreeSubSystem, MinQuadTreeNodeSize) == 0x000060, "Member 'UWrestlerMassEntityQuadTreeSubSystem::MinQuadTreeNodeSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEntitySharedDataTrait \ +static_assert(alignof(UWrestlerMassEntitySharedDataTrait) == 0x000008, "Wrong alignment on UWrestlerMassEntitySharedDataTrait"); \ +static_assert(sizeof(UWrestlerMassEntitySharedDataTrait) == 0x000050, "Wrong size on UWrestlerMassEntitySharedDataTrait"); \ +static_assert(offsetof(UWrestlerMassEntitySharedDataTrait, SharedData) == 0x000028, "Member 'UWrestlerMassEntitySharedDataTrait::SharedData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassEnvQueryGenerator_SightPositions \ +static_assert(alignof(UWrestlerMassEnvQueryGenerator_SightPositions) == 0x000008, "Wrong alignment on UWrestlerMassEnvQueryGenerator_SightPositions"); \ +static_assert(sizeof(UWrestlerMassEnvQueryGenerator_SightPositions) == 0x000050, "Wrong size on UWrestlerMassEnvQueryGenerator_SightPositions"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUpdatePlayerEntityProcessor \ +static_assert(alignof(UWrestlerMassUpdatePlayerEntityProcessor) == 0x000008, "Wrong alignment on UWrestlerMassUpdatePlayerEntityProcessor"); \ +static_assert(sizeof(UWrestlerMassUpdatePlayerEntityProcessor) == 0x000360, "Wrong size on UWrestlerMassUpdatePlayerEntityProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassGetIntoPositionAnimationProcessor_Turning \ +static_assert(alignof(UWrestlerMassGetIntoPositionAnimationProcessor_Turning) == 0x000008, "Wrong alignment on UWrestlerMassGetIntoPositionAnimationProcessor_Turning"); \ +static_assert(sizeof(UWrestlerMassGetIntoPositionAnimationProcessor_Turning) == 0x000360, "Wrong size on UWrestlerMassGetIntoPositionAnimationProcessor_Turning"); \ + +#define DUMPER7_ASSERTS_UWrestlerOnHasRepresentationTagRemoved \ +static_assert(alignof(UWrestlerOnHasRepresentationTagRemoved) == 0x000008, "Wrong alignment on UWrestlerOnHasRepresentationTagRemoved"); \ +static_assert(sizeof(UWrestlerOnHasRepresentationTagRemoved) == 0x000370, "Wrong size on UWrestlerOnHasRepresentationTagRemoved"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassHearingSubsystem \ +static_assert(alignof(UWrestlerMassHearingSubsystem) == 0x000008, "Wrong alignment on UWrestlerMassHearingSubsystem"); \ +static_assert(sizeof(UWrestlerMassHearingSubsystem) == 0x000068, "Wrong size on UWrestlerMassHearingSubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassHighlightProcessor \ +static_assert(alignof(UWrestlerMassHighlightProcessor) == 0x000008, "Wrong alignment on UWrestlerMassHighlightProcessor"); \ +static_assert(sizeof(UWrestlerMassHighlightProcessor) == 0x000610, "Wrong size on UWrestlerMassHighlightProcessor"); \ +static_assert(offsetof(UWrestlerMassHighlightProcessor, DistanceToHighlightWithinPoliceRange) == 0x000600, "Member 'UWrestlerMassHighlightProcessor::DistanceToHighlightWithinPoliceRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassHighlightSyncTrait \ +static_assert(alignof(UWrestlerMassHighlightSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassHighlightSyncTrait"); \ +static_assert(sizeof(UWrestlerMassHighlightSyncTrait) == 0x000030, "Wrong size on UWrestlerMassHighlightSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassLookAtPassingEntityProcessor \ +static_assert(alignof(UWrestlerMassLookAtPassingEntityProcessor) == 0x000008, "Wrong alignment on UWrestlerMassLookAtPassingEntityProcessor"); \ +static_assert(sizeof(UWrestlerMassLookAtPassingEntityProcessor) == 0x000360, "Wrong size on UWrestlerMassLookAtPassingEntityProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassMapBoundariesProcessor \ +static_assert(alignof(UWrestlerMassMapBoundariesProcessor) == 0x000008, "Wrong alignment on UWrestlerMassMapBoundariesProcessor"); \ +static_assert(sizeof(UWrestlerMassMapBoundariesProcessor) == 0x000600, "Wrong size on UWrestlerMassMapBoundariesProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_AddGoodToOutputProfiles \ +static_assert(alignof(WrestlerMassModularCharGameMode_AddGoodToOutputProfiles) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_AddGoodToOutputProfiles"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_AddGoodToOutputProfiles) == 0x000008, "Wrong size on WrestlerMassModularCharGameMode_AddGoodToOutputProfiles"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_AddGoodToOutputProfiles, TypeName) == 0x000000, "Member 'WrestlerMassModularCharGameMode_AddGoodToOutputProfiles::TypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_GenerateFromGroup \ +static_assert(alignof(WrestlerMassModularCharGameMode_GenerateFromGroup) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_GenerateFromGroup"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_GenerateFromGroup) == 0x00000C, "Wrong size on WrestlerMassModularCharGameMode_GenerateFromGroup"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_GenerateFromGroup, TypeName) == 0x000000, "Member 'WrestlerMassModularCharGameMode_GenerateFromGroup::TypeName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_GenerateFromGroup, NumToGenerate) == 0x000008, "Member 'WrestlerMassModularCharGameMode_GenerateFromGroup::NumToGenerate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_ImportProfiles \ +static_assert(alignof(WrestlerMassModularCharGameMode_ImportProfiles) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_ImportProfiles"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_ImportProfiles) == 0x000008, "Wrong size on WrestlerMassModularCharGameMode_ImportProfiles"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_ImportProfiles, NewTypeName) == 0x000000, "Member 'WrestlerMassModularCharGameMode_ImportProfiles::NewTypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_OnNextButtonPressed \ +static_assert(alignof(WrestlerMassModularCharGameMode_OnNextButtonPressed) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_OnNextButtonPressed"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_OnNextButtonPressed) == 0x000004, "Wrong size on WrestlerMassModularCharGameMode_OnNextButtonPressed"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_OnNextButtonPressed, SkipAmount) == 0x000000, "Member 'WrestlerMassModularCharGameMode_OnNextButtonPressed::SkipAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_OnPrevButtonPressed \ +static_assert(alignof(WrestlerMassModularCharGameMode_OnPrevButtonPressed) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_OnPrevButtonPressed"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_OnPrevButtonPressed) == 0x000004, "Wrong size on WrestlerMassModularCharGameMode_OnPrevButtonPressed"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_OnPrevButtonPressed, SkipAmount) == 0x000000, "Member 'WrestlerMassModularCharGameMode_OnPrevButtonPressed::SkipAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_ResetOutputProfiles \ +static_assert(alignof(WrestlerMassModularCharGameMode_ResetOutputProfiles) == 0x000004, "Wrong alignment on WrestlerMassModularCharGameMode_ResetOutputProfiles"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_ResetOutputProfiles) == 0x000008, "Wrong size on WrestlerMassModularCharGameMode_ResetOutputProfiles"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_ResetOutputProfiles, TypeName) == 0x000000, "Member 'WrestlerMassModularCharGameMode_ResetOutputProfiles::TypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_GetCurrentProfileInfo \ +static_assert(alignof(WrestlerMassModularCharGameMode_GetCurrentProfileInfo) == 0x000008, "Wrong alignment on WrestlerMassModularCharGameMode_GetCurrentProfileInfo"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_GetCurrentProfileInfo) == 0x000010, "Wrong size on WrestlerMassModularCharGameMode_GetCurrentProfileInfo"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_GetCurrentProfileInfo, ReturnValue) == 0x000000, "Member 'WrestlerMassModularCharGameMode_GetCurrentProfileInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_GetCurrentProfileState \ +static_assert(alignof(WrestlerMassModularCharGameMode_GetCurrentProfileState) == 0x000001, "Wrong alignment on WrestlerMassModularCharGameMode_GetCurrentProfileState"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_GetCurrentProfileState) == 0x000001, "Wrong size on WrestlerMassModularCharGameMode_GetCurrentProfileState"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_GetCurrentProfileState, ReturnValue) == 0x000000, "Member 'WrestlerMassModularCharGameMode_GetCurrentProfileState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMassModularCharGameMode_GetPedestrianTypeNames \ +static_assert(alignof(WrestlerMassModularCharGameMode_GetPedestrianTypeNames) == 0x000008, "Wrong alignment on WrestlerMassModularCharGameMode_GetPedestrianTypeNames"); \ +static_assert(sizeof(WrestlerMassModularCharGameMode_GetPedestrianTypeNames) == 0x000010, "Wrong size on WrestlerMassModularCharGameMode_GetPedestrianTypeNames"); \ +static_assert(offsetof(WrestlerMassModularCharGameMode_GetPedestrianTypeNames, ReturnValue) == 0x000000, "Member 'WrestlerMassModularCharGameMode_GetPedestrianTypeNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassModularCharGameMode \ +static_assert(alignof(AWrestlerMassModularCharGameMode) == 0x000008, "Wrong alignment on AWrestlerMassModularCharGameMode"); \ +static_assert(sizeof(AWrestlerMassModularCharGameMode) == 0x000490, "Wrong size on AWrestlerMassModularCharGameMode"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, bRandomiseOrderOnStart) == 0x000380, "Member 'AWrestlerMassModularCharGameMode::bRandomiseOrderOnStart' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, ProfileGroupsPerType) == 0x000388, "Member 'AWrestlerMassModularCharGameMode::ProfileGroupsPerType' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, ProfilesToPreview) == 0x0003D8, "Member 'AWrestlerMassModularCharGameMode::ProfilesToPreview' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, ProfileStates) == 0x0003E8, "Member 'AWrestlerMassModularCharGameMode::ProfileStates' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, PawnClassToSpawn) == 0x000438, "Member 'AWrestlerMassModularCharGameMode::PawnClassToSpawn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, CurrentCharProfile) == 0x000440, "Member 'AWrestlerMassModularCharGameMode::CurrentCharProfile' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, PreviewPawn) == 0x000468, "Member 'AWrestlerMassModularCharGameMode::PreviewPawn' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, ModCharComp) == 0x000470, "Member 'AWrestlerMassModularCharGameMode::ModCharComp' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassModularCharGameMode, PackagesToCheckOutAndSave) == 0x000478, "Member 'AWrestlerMassModularCharGameMode::PackagesToCheckOutAndSave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassModularCharacterGroup \ +static_assert(alignof(UWrestlerMassModularCharacterGroup) == 0x000008, "Wrong alignment on UWrestlerMassModularCharacterGroup"); \ +static_assert(sizeof(UWrestlerMassModularCharacterGroup) == 0x000090, "Wrong size on UWrestlerMassModularCharacterGroup"); \ +static_assert(offsetof(UWrestlerMassModularCharacterGroup, CharacterGroups) == 0x000030, "Member 'UWrestlerMassModularCharacterGroup::CharacterGroups' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassModularCharacterGroup, GeneratedProfiles) == 0x000040, "Member 'UWrestlerMassModularCharacterGroup::GeneratedProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassMovementSyncTrait \ +static_assert(alignof(UWrestlerMassMovementSyncTrait) == 0x000008, "Wrong alignment on UWrestlerMassMovementSyncTrait"); \ +static_assert(sizeof(UWrestlerMassMovementSyncTrait) == 0x000030, "Wrong size on UWrestlerMassMovementSyncTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassCharacterMovementToActorTranslator \ +static_assert(alignof(UWrestlerMassCharacterMovementToActorTranslator) == 0x000008, "Wrong alignment on UWrestlerMassCharacterMovementToActorTranslator"); \ +static_assert(sizeof(UWrestlerMassCharacterMovementToActorTranslator) == 0x000380, "Wrong size on UWrestlerMassCharacterMovementToActorTranslator"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassMovementTrait \ +static_assert(alignof(UWrestlerMassMovementTrait) == 0x000008, "Wrong alignment on UWrestlerMassMovementTrait"); \ +static_assert(sizeof(UWrestlerMassMovementTrait) == 0x000058, "Wrong size on UWrestlerMassMovementTrait"); \ +static_assert(offsetof(UWrestlerMassMovementTrait, MovementSpeeds) == 0x000028, "Member 'UWrestlerMassMovementTrait::MovementSpeeds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassMovementTrait, Movement) == 0x000030, "Member 'UWrestlerMassMovementTrait::Movement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassPathHeightAdjustProcessor \ +static_assert(alignof(UWrestlerMassPathHeightAdjustProcessor) == 0x000008, "Wrong alignment on UWrestlerMassPathHeightAdjustProcessor"); \ +static_assert(sizeof(UWrestlerMassPathHeightAdjustProcessor) == 0x000490, "Wrong size on UWrestlerMassPathHeightAdjustProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_Crimes \ +static_assert(alignof(UWrestlerMassSightProcessor_Crimes) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_Crimes"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_Crimes) == 0x000AB0, "Wrong size on UWrestlerMassSightProcessor_Crimes"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_DeadBodies \ +static_assert(alignof(UWrestlerMassSightProcessor_DeadBodies) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_DeadBodies"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_DeadBodies) == 0x000480, "Wrong size on UWrestlerMassSightProcessor_DeadBodies"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_DeadBodies, DeadBodies) == 0x000470, "Member 'UWrestlerMassSightProcessor_DeadBodies::DeadBodies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_Enemies \ +static_assert(alignof(UWrestlerMassSightProcessor_Enemies) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_Enemies"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_Enemies) == 0x000AC0, "Wrong size on UWrestlerMassSightProcessor_Enemies"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_Enemies, AttackingEnemies) == 0x0009B0, "Member 'UWrestlerMassSightProcessor_Enemies::AttackingEnemies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_PlayerAwareness \ +static_assert(alignof(UWrestlerMassSightProcessor_PlayerAwareness) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_PlayerAwareness"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_PlayerAwareness) == 0x0004C0, "Wrong size on UWrestlerMassSightProcessor_PlayerAwareness"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_PlayerAwareness, PlayerCharacter) == 0x000478, "Member 'UWrestlerMassSightProcessor_PlayerAwareness::PlayerCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_AIPlayerAwareness \ +static_assert(alignof(UWrestlerMassSightProcessor_AIPlayerAwareness) == 0x000008, "Wrong alignment on UWrestlerMassSightProcessor_AIPlayerAwareness"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_AIPlayerAwareness) == 0x000360, "Wrong size on UWrestlerMassSightProcessor_AIPlayerAwareness"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSightProcessor_UpdateLastKnownPosition \ +static_assert(alignof(UWrestlerMassSightProcessor_UpdateLastKnownPosition) == 0x000010, "Wrong alignment on UWrestlerMassSightProcessor_UpdateLastKnownPosition"); \ +static_assert(sizeof(UWrestlerMassSightProcessor_UpdateLastKnownPosition) == 0x000440, "Wrong size on UWrestlerMassSightProcessor_UpdateLastKnownPosition"); \ +static_assert(offsetof(UWrestlerMassSightProcessor_UpdateLastKnownPosition, MaxDistanceToUpdateWithoutSightCheck) == 0x000430, "Member 'UWrestlerMassSightProcessor_UpdateLastKnownPosition::MaxDistanceToUpdateWithoutSightCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSimulationLODProcessor \ +static_assert(alignof(UWrestlerMassSimulationLODProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSimulationLODProcessor"); \ +static_assert(sizeof(UWrestlerMassSimulationLODProcessor) == 0x000DE0, "Wrong size on UWrestlerMassSimulationLODProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectProcessor \ +static_assert(alignof(UWrestlerMassSmartObjectProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectProcessor"); \ +static_assert(sizeof(UWrestlerMassSmartObjectProcessor) == 0x000360, "Wrong size on UWrestlerMassSmartObjectProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmartObjectEntityLinkProcessor \ +static_assert(alignof(UWrestlerMassSmartObjectEntityLinkProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSmartObjectEntityLinkProcessor"); \ +static_assert(sizeof(UWrestlerMassSmartObjectEntityLinkProcessor) == 0x000360, "Wrong size on UWrestlerMassSmartObjectEntityLinkProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmoothOrientationProcessor \ +static_assert(alignof(UWrestlerMassSmoothOrientationProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSmoothOrientationProcessor"); \ +static_assert(sizeof(UWrestlerMassSmoothOrientationProcessor) == 0x000600, "Wrong size on UWrestlerMassSmoothOrientationProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSmoothOrientationTrait \ +static_assert(alignof(UWrestlerMassSmoothOrientationTrait) == 0x000008, "Wrong alignment on UWrestlerMassSmoothOrientationTrait"); \ +static_assert(sizeof(UWrestlerMassSmoothOrientationTrait) == 0x000048, "Wrong size on UWrestlerMassSmoothOrientationTrait"); \ +static_assert(offsetof(UWrestlerMassSmoothOrientationTrait, Orientation) == 0x000028, "Member 'UWrestlerMassSmoothOrientationTrait::Orientation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassStateTreeProcessor \ +static_assert(alignof(UWrestlerMassStateTreeProcessor) == 0x000008, "Wrong alignment on UWrestlerMassStateTreeProcessor"); \ +static_assert(sizeof(UWrestlerMassStateTreeProcessor) == 0x000430, "Wrong size on UWrestlerMassStateTreeProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSwapAIFragmentAddedProcessor \ +static_assert(alignof(UWrestlerMassSwapAIFragmentAddedProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSwapAIFragmentAddedProcessor"); \ +static_assert(sizeof(UWrestlerMassSwapAIFragmentAddedProcessor) == 0x000370, "Wrong size on UWrestlerMassSwapAIFragmentAddedProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassSwapAIFragmentRemovedProcessor \ +static_assert(alignof(UWrestlerMassSwapAIFragmentRemovedProcessor) == 0x000008, "Wrong alignment on UWrestlerMassSwapAIFragmentRemovedProcessor"); \ +static_assert(sizeof(UWrestlerMassSwapAIFragmentRemovedProcessor) == 0x000370, "Wrong size on UWrestlerMassSwapAIFragmentRemovedProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerSwapAIUpdateProcessor \ +static_assert(alignof(UWrestlerSwapAIUpdateProcessor) == 0x000008, "Wrong alignment on UWrestlerSwapAIUpdateProcessor"); \ +static_assert(sizeof(UWrestlerSwapAIUpdateProcessor) == 0x000610, "Wrong size on UWrestlerSwapAIUpdateProcessor"); \ +static_assert(offsetof(UWrestlerSwapAIUpdateProcessor, TimeToSwapBackForNoAwareAI) == 0x000600, "Member 'UWrestlerSwapAIUpdateProcessor::TimeToSwapBackForNoAwareAI' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerComponentTransformAndVelocityToActorTranslator \ +static_assert(alignof(UWrestlerComponentTransformAndVelocityToActorTranslator) == 0x000008, "Wrong alignment on UWrestlerComponentTransformAndVelocityToActorTranslator"); \ +static_assert(sizeof(UWrestlerComponentTransformAndVelocityToActorTranslator) == 0x000380, "Wrong size on UWrestlerComponentTransformAndVelocityToActorTranslator"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUpdateTurnOffVolumesProcessor \ +static_assert(alignof(UWrestlerMassUpdateTurnOffVolumesProcessor) == 0x000008, "Wrong alignment on UWrestlerMassUpdateTurnOffVolumesProcessor"); \ +static_assert(sizeof(UWrestlerMassUpdateTurnOffVolumesProcessor) == 0x0008A0, "Wrong size on UWrestlerMassUpdateTurnOffVolumesProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUseGameplayAbilityProcessor \ +static_assert(alignof(UWrestlerMassUseGameplayAbilityProcessor) == 0x000010, "Wrong alignment on UWrestlerMassUseGameplayAbilityProcessor"); \ +static_assert(sizeof(UWrestlerMassUseGameplayAbilityProcessor) == 0x0006F0, "Wrong size on UWrestlerMassUseGameplayAbilityProcessor"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, CooldownTimeForRelinquishingActor) == 0x0000B8, "Member 'UWrestlerMassUseGameplayAbilityProcessor::CooldownTimeForRelinquishingActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, VeryLongRunningTime) == 0x0000BC, "Member 'UWrestlerMassUseGameplayAbilityProcessor::VeryLongRunningTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, AbilityMapByName) == 0x0000C0, "Member 'UWrestlerMassUseGameplayAbilityProcessor::AbilityMapByName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, AbilityMapByTag) == 0x000110, "Member 'UWrestlerMassUseGameplayAbilityProcessor::AbilityMapByTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, BannedAbilityTags) == 0x000160, "Member 'UWrestlerMassUseGameplayAbilityProcessor::BannedAbilityTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMassUseGameplayAbilityProcessor, DefaultAbilities) == 0x000180, "Member 'UWrestlerMassUseGameplayAbilityProcessor::DefaultAbilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassUseGameplayAbilityTrait \ +static_assert(alignof(UWrestlerMassUseGameplayAbilityTrait) == 0x000008, "Wrong alignment on UWrestlerMassUseGameplayAbilityTrait"); \ +static_assert(sizeof(UWrestlerMassUseGameplayAbilityTrait) == 0x000028, "Wrong size on UWrestlerMassUseGameplayAbilityTrait"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassRuntimeUseSOBehaviorDefinition \ +static_assert(alignof(UWrestlerMassRuntimeUseSOBehaviorDefinition) == 0x000008, "Wrong alignment on UWrestlerMassRuntimeUseSOBehaviorDefinition"); \ +static_assert(sizeof(UWrestlerMassRuntimeUseSOBehaviorDefinition) == 0x0000F0, "Wrong size on UWrestlerMassRuntimeUseSOBehaviorDefinition"); \ + +#define DUMPER7_ASSERTS_UWrestlerOnOffLODTagRemovedProcessor \ +static_assert(alignof(UWrestlerOnOffLODTagRemovedProcessor) == 0x000008, "Wrong alignment on UWrestlerOnOffLODTagRemovedProcessor"); \ +static_assert(sizeof(UWrestlerOnOffLODTagRemovedProcessor) == 0x000370, "Wrong size on UWrestlerOnOffLODTagRemovedProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerMassZGAnnotationVolume_IsVolumeActivated \ +static_assert(alignof(WrestlerMassZGAnnotationVolume_IsVolumeActivated) == 0x000001, "Wrong alignment on WrestlerMassZGAnnotationVolume_IsVolumeActivated"); \ +static_assert(sizeof(WrestlerMassZGAnnotationVolume_IsVolumeActivated) == 0x000001, "Wrong size on WrestlerMassZGAnnotationVolume_IsVolumeActivated"); \ +static_assert(offsetof(WrestlerMassZGAnnotationVolume_IsVolumeActivated, ReturnValue) == 0x000000, "Member 'WrestlerMassZGAnnotationVolume_IsVolumeActivated::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerMassZGAnnotationVolume \ +static_assert(alignof(AWrestlerMassZGAnnotationVolume) == 0x000008, "Wrong alignment on AWrestlerMassZGAnnotationVolume"); \ +static_assert(sizeof(AWrestlerMassZGAnnotationVolume) == 0x0002A8, "Wrong size on AWrestlerMassZGAnnotationVolume"); \ +static_assert(offsetof(AWrestlerMassZGAnnotationVolume, bActivateOnBeginPlay) == 0x0002A0, "Member 'AWrestlerMassZGAnnotationVolume::bActivateOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerMassZGAnnotationVolume, AnnotationTag) == 0x0002A1, "Member 'AWrestlerMassZGAnnotationVolume::AnnotationTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassZoneGraphNavigationTrait \ +static_assert(alignof(UWrestlerMassZoneGraphNavigationTrait) == 0x000008, "Wrong alignment on UWrestlerMassZoneGraphNavigationTrait"); \ +static_assert(sizeof(UWrestlerMassZoneGraphNavigationTrait) == 0x000068, "Wrong size on UWrestlerMassZoneGraphNavigationTrait"); \ +static_assert(offsetof(UWrestlerMassZoneGraphNavigationTrait, AdditionalNavigationParameters) == 0x000038, "Member 'UWrestlerMassZoneGraphNavigationTrait::AdditionalNavigationParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMassZoneGraphPathFollowProcessor \ +static_assert(alignof(UWrestlerMassZoneGraphPathFollowProcessor) == 0x000010, "Wrong alignment on UWrestlerMassZoneGraphPathFollowProcessor"); \ +static_assert(sizeof(UWrestlerMassZoneGraphPathFollowProcessor) == 0x000370, "Wrong size on UWrestlerMassZoneGraphPathFollowProcessor"); \ + +#define DUMPER7_ASSERTS_UWrestlerMeleeWeaponInstance \ +static_assert(alignof(UWrestlerMeleeWeaponInstance) == 0x000008, "Wrong alignment on UWrestlerMeleeWeaponInstance"); \ +static_assert(sizeof(UWrestlerMeleeWeaponInstance) == 0x0000A0, "Wrong size on UWrestlerMeleeWeaponInstance"); \ + +#define DUMPER7_ASSERTS_WrestlerMeshMergeFunctionLibrary_MergeMeshes \ +static_assert(alignof(WrestlerMeshMergeFunctionLibrary_MergeMeshes) == 0x000008, "Wrong alignment on WrestlerMeshMergeFunctionLibrary_MergeMeshes"); \ +static_assert(sizeof(WrestlerMeshMergeFunctionLibrary_MergeMeshes) == 0x000050, "Wrong size on WrestlerMeshMergeFunctionLibrary_MergeMeshes"); \ +static_assert(offsetof(WrestlerMeshMergeFunctionLibrary_MergeMeshes, Params_0) == 0x000000, "Member 'WrestlerMeshMergeFunctionLibrary_MergeMeshes::Params_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMeshMergeFunctionLibrary_MergeMeshes, ReturnValue) == 0x000048, "Member 'WrestlerMeshMergeFunctionLibrary_MergeMeshes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMeshMergeFunctionLibrary \ +static_assert(alignof(UWrestlerMeshMergeFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerMeshMergeFunctionLibrary"); \ +static_assert(sizeof(UWrestlerMeshMergeFunctionLibrary) == 0x000028, "Wrong size on UWrestlerMeshMergeFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_AWrestlerModeLoadScreen \ +static_assert(alignof(AWrestlerModeLoadScreen) == 0x000008, "Wrong alignment on AWrestlerModeLoadScreen"); \ +static_assert(sizeof(AWrestlerModeLoadScreen) == 0x0003E0, "Wrong size on AWrestlerModeLoadScreen"); \ + +#define DUMPER7_ASSERTS_UWrestlerModularCharacterProfiles \ +static_assert(alignof(UWrestlerModularCharacterProfiles) == 0x000008, "Wrong alignment on UWrestlerModularCharacterProfiles"); \ +static_assert(sizeof(UWrestlerModularCharacterProfiles) == 0x000170, "Wrong size on UWrestlerModularCharacterProfiles"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, ConversationDialogue) == 0x000030, "Member 'UWrestlerModularCharacterProfiles::ConversationDialogue' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, PromptDialogueInfos) == 0x000080, "Member 'UWrestlerModularCharacterProfiles::PromptDialogueInfos' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, bCanBeAssignedBloodResonance) == 0x0000D0, "Member 'UWrestlerModularCharacterProfiles::bCanBeAssignedBloodResonance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, BloodResonanceTypesAssignable) == 0x0000D8, "Member 'UWrestlerModularCharacterProfiles::BloodResonanceTypesAssignable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, BloodResonanceTag) == 0x0000F8, "Member 'UWrestlerModularCharacterProfiles::BloodResonanceTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, Entries) == 0x000100, "Member 'UWrestlerModularCharacterProfiles::Entries' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, Animations) == 0x000110, "Member 'UWrestlerModularCharacterProfiles::Animations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, AnimToTextureData) == 0x000160, "Member 'UWrestlerModularCharacterProfiles::AnimToTextureData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerModularCharacterProfiles, bCanRemoveActivatedBloodResonance) == 0x000168, "Member 'UWrestlerModularCharacterProfiles::bCanRemoveActivatedBloodResonance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_BP_SlideAlongSurface \ +static_assert(alignof(WrestlerMovementComponent_BP_SlideAlongSurface) == 0x000008, "Wrong alignment on WrestlerMovementComponent_BP_SlideAlongSurface"); \ +static_assert(sizeof(WrestlerMovementComponent_BP_SlideAlongSurface) == 0x000128, "Wrong size on WrestlerMovementComponent_BP_SlideAlongSurface"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, InDelta) == 0x000000, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::InDelta' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, InTime) == 0x000018, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::InTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, InNormal) == 0x000020, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::InNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, InHit) == 0x000038, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::InHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, bInHandleImpact) == 0x000120, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::bInHandleImpact' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_SlideAlongSurface, ReturnValue) == 0x000124, "Member 'WrestlerMovementComponent_BP_SlideAlongSurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement \ +static_assert(alignof(WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement) == 0x000004, "Wrong alignment on WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement"); \ +static_assert(sizeof(WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement) == 0x000004, "Wrong size on WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement"); \ +static_assert(offsetof(WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement, DeltaSeconds) == 0x000000, "Member 'WrestlerMovementComponent_BP_UpdateCharacterStateBeforeMovement::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_GetIsClockwiseRotation \ +static_assert(alignof(WrestlerMovementComponent_GetIsClockwiseRotation) == 0x000001, "Wrong alignment on WrestlerMovementComponent_GetIsClockwiseRotation"); \ +static_assert(sizeof(WrestlerMovementComponent_GetIsClockwiseRotation) == 0x000001, "Wrong size on WrestlerMovementComponent_GetIsClockwiseRotation"); \ +static_assert(offsetof(WrestlerMovementComponent_GetIsClockwiseRotation, ReturnValue) == 0x000000, "Member 'WrestlerMovementComponent_GetIsClockwiseRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_GetIsCounterClockwiseRotation \ +static_assert(alignof(WrestlerMovementComponent_GetIsCounterClockwiseRotation) == 0x000001, "Wrong alignment on WrestlerMovementComponent_GetIsCounterClockwiseRotation"); \ +static_assert(sizeof(WrestlerMovementComponent_GetIsCounterClockwiseRotation) == 0x000001, "Wrong size on WrestlerMovementComponent_GetIsCounterClockwiseRotation"); \ +static_assert(offsetof(WrestlerMovementComponent_GetIsCounterClockwiseRotation, ReturnValue) == 0x000000, "Member 'WrestlerMovementComponent_GetIsCounterClockwiseRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_SetForceAllowCrouch \ +static_assert(alignof(WrestlerMovementComponent_SetForceAllowCrouch) == 0x000001, "Wrong alignment on WrestlerMovementComponent_SetForceAllowCrouch"); \ +static_assert(sizeof(WrestlerMovementComponent_SetForceAllowCrouch) == 0x000001, "Wrong size on WrestlerMovementComponent_SetForceAllowCrouch"); \ +static_assert(offsetof(WrestlerMovementComponent_SetForceAllowCrouch, bInForceAllowCrouch) == 0x000000, "Member 'WrestlerMovementComponent_SetForceAllowCrouch::bInForceAllowCrouch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_TestUnCrouch \ +static_assert(alignof(WrestlerMovementComponent_TestUnCrouch) == 0x000001, "Wrong alignment on WrestlerMovementComponent_TestUnCrouch"); \ +static_assert(sizeof(WrestlerMovementComponent_TestUnCrouch) == 0x000001, "Wrong size on WrestlerMovementComponent_TestUnCrouch"); \ +static_assert(offsetof(WrestlerMovementComponent_TestUnCrouch, ReturnValue) == 0x000000, "Member 'WrestlerMovementComponent_TestUnCrouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_GetMaxSprintSpeed \ +static_assert(alignof(WrestlerMovementComponent_GetMaxSprintSpeed) == 0x000004, "Wrong alignment on WrestlerMovementComponent_GetMaxSprintSpeed"); \ +static_assert(sizeof(WrestlerMovementComponent_GetMaxSprintSpeed) == 0x000004, "Wrong size on WrestlerMovementComponent_GetMaxSprintSpeed"); \ +static_assert(offsetof(WrestlerMovementComponent_GetMaxSprintSpeed, ReturnValue) == 0x000000, "Member 'WrestlerMovementComponent_GetMaxSprintSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMovementComponent_GetMoveIncline \ +static_assert(alignof(WrestlerMovementComponent_GetMoveIncline) == 0x000004, "Wrong alignment on WrestlerMovementComponent_GetMoveIncline"); \ +static_assert(sizeof(WrestlerMovementComponent_GetMoveIncline) == 0x000004, "Wrong size on WrestlerMovementComponent_GetMoveIncline"); \ +static_assert(offsetof(WrestlerMovementComponent_GetMoveIncline, ReturnValue) == 0x000000, "Member 'WrestlerMovementComponent_GetMoveIncline::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMovementComponent \ +static_assert(alignof(UWrestlerMovementComponent) == 0x000010, "Wrong alignment on UWrestlerMovementComponent"); \ +static_assert(sizeof(UWrestlerMovementComponent) == 0x001060, "Wrong size on UWrestlerMovementComponent"); \ +static_assert(offsetof(UWrestlerMovementComponent, OnGlideBegin) == 0x000F48, "Member 'UWrestlerMovementComponent::OnGlideBegin' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, OnGlideEnd) == 0x000F49, "Member 'UWrestlerMovementComponent::OnGlideEnd' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, OnGliding) == 0x000F4A, "Member 'UWrestlerMovementComponent::OnGliding' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, CoyoteTimerHandle) == 0x000F50, "Member 'UWrestlerMovementComponent::CoyoteTimerHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, NavWalkingRootMotionProjectionExtent) == 0x001010, "Member 'UWrestlerMovementComponent::NavWalkingRootMotionProjectionExtent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, MinSprintInput) == 0x00102C, "Member 'UWrestlerMovementComponent::MinSprintInput' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, MinSprintInputDot) == 0x001030, "Member 'UWrestlerMovementComponent::MinSprintInputDot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, RotationDeltaYawThreshold) == 0x001034, "Member 'UWrestlerMovementComponent::RotationDeltaYawThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, CoyoteTime) == 0x001038, "Member 'UWrestlerMovementComponent::CoyoteTime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMovementComponent, bIgnoreGlideAcceleration) == 0x00105D, "Member 'UWrestlerMovementComponent::bIgnoreGlideAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMoveToDataAsset_CreateMoveToData \ +static_assert(alignof(WrestlerMoveToDataAsset_CreateMoveToData) == 0x000008, "Wrong alignment on WrestlerMoveToDataAsset_CreateMoveToData"); \ +static_assert(sizeof(WrestlerMoveToDataAsset_CreateMoveToData) == 0x000098, "Wrong size on WrestlerMoveToDataAsset_CreateMoveToData"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_CreateMoveToData, SourceActor) == 0x000000, "Member 'WrestlerMoveToDataAsset_CreateMoveToData::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_CreateMoveToData, TargetActor) == 0x000008, "Member 'WrestlerMoveToDataAsset_CreateMoveToData::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_CreateMoveToData, ReturnValue) == 0x000010, "Member 'WrestlerMoveToDataAsset_CreateMoveToData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerMoveToDataAsset_GetMaxRange \ +static_assert(alignof(WrestlerMoveToDataAsset_GetMaxRange) == 0x000008, "Wrong alignment on WrestlerMoveToDataAsset_GetMaxRange"); \ +static_assert(sizeof(WrestlerMoveToDataAsset_GetMaxRange) == 0x000018, "Wrong size on WrestlerMoveToDataAsset_GetMaxRange"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_GetMaxRange, SourceActor) == 0x000000, "Member 'WrestlerMoveToDataAsset_GetMaxRange::SourceActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_GetMaxRange, TargetActor) == 0x000008, "Member 'WrestlerMoveToDataAsset_GetMaxRange::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerMoveToDataAsset_GetMaxRange, ReturnValue) == 0x000010, "Member 'WrestlerMoveToDataAsset_GetMaxRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMoveToDataAsset \ +static_assert(alignof(UWrestlerMoveToDataAsset) == 0x000008, "Wrong alignment on UWrestlerMoveToDataAsset"); \ +static_assert(sizeof(UWrestlerMoveToDataAsset) == 0x000098, "Wrong size on UWrestlerMoveToDataAsset"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, TargetLocationOffset) == 0x000030, "Member 'UWrestlerMoveToDataAsset::TargetLocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, MaximumHeightOffset) == 0x000048, "Member 'UWrestlerMoveToDataAsset::MaximumHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, Duration) == 0x00004C, "Member 'UWrestlerMoveToDataAsset::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, MaxRange) == 0x000050, "Member 'UWrestlerMoveToDataAsset::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, MinRange) == 0x000054, "Member 'UWrestlerMoveToDataAsset::MinRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, MaxHorizontalRangeCurve) == 0x000058, "Member 'UWrestlerMoveToDataAsset::MaxHorizontalRangeCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, bSetNewMovementMode) == 0x000060, "Member 'UWrestlerMoveToDataAsset::bSetNewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, MovementMode) == 0x000061, "Member 'UWrestlerMoveToDataAsset::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, bRestrictSpeedToExpected) == 0x000062, "Member 'UWrestlerMoveToDataAsset::bRestrictSpeedToExpected' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, PathOffsetCurve) == 0x000068, "Member 'UWrestlerMoveToDataAsset::PathOffsetCurve' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, VelocityOnFinishMode) == 0x000070, "Member 'UWrestlerMoveToDataAsset::VelocityOnFinishMode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, SetVelocityOnFinish) == 0x000078, "Member 'UWrestlerMoveToDataAsset::SetVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, ClampVelocityOnFinish) == 0x000090, "Member 'UWrestlerMoveToDataAsset::ClampVelocityOnFinish' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerMoveToDataAsset, bIgnoreDodge) == 0x000094, "Member 'UWrestlerMoveToDataAsset::bIgnoreDodge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerMusicTagMovieSceneTrack \ +static_assert(alignof(UWrestlerMusicTagMovieSceneTrack) == 0x000008, "Wrong alignment on UWrestlerMusicTagMovieSceneTrack"); \ +static_assert(sizeof(UWrestlerMusicTagMovieSceneTrack) == 0x0000B0, "Wrong size on UWrestlerMusicTagMovieSceneTrack"); \ +static_assert(offsetof(UWrestlerMusicTagMovieSceneTrack, Sections) == 0x0000A0, "Member 'UWrestlerMusicTagMovieSceneTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavArea_Alleyway \ +static_assert(alignof(UWrestlerNavArea_Alleyway) == 0x000008, "Wrong alignment on UWrestlerNavArea_Alleyway"); \ +static_assert(sizeof(UWrestlerNavArea_Alleyway) == 0x000048, "Wrong size on UWrestlerNavArea_Alleyway"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavigationFilter_Alleyway \ +static_assert(alignof(UWrestlerNavigationFilter_Alleyway) == 0x000008, "Wrong alignment on UWrestlerNavigationFilter_Alleyway"); \ +static_assert(sizeof(UWrestlerNavigationFilter_Alleyway) == 0x000048, "Wrong size on UWrestlerNavigationFilter_Alleyway"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavArea_NoMassCharacters \ +static_assert(alignof(UWrestlerNavArea_NoMassCharacters) == 0x000008, "Wrong alignment on UWrestlerNavArea_NoMassCharacters"); \ +static_assert(sizeof(UWrestlerNavArea_NoMassCharacters) == 0x000048, "Wrong size on UWrestlerNavArea_NoMassCharacters"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavigableWidgetDataAsset \ +static_assert(alignof(UWrestlerNavigableWidgetDataAsset) == 0x000008, "Wrong alignment on UWrestlerNavigableWidgetDataAsset"); \ +static_assert(sizeof(UWrestlerNavigableWidgetDataAsset) == 0x0001C8, "Wrong size on UWrestlerNavigableWidgetDataAsset"); \ +static_assert(offsetof(UWrestlerNavigableWidgetDataAsset, NavigableWidgetParams) == 0x000030, "Member 'UWrestlerNavigableWidgetDataAsset::NavigableWidgetParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavInvokerComponent \ +static_assert(alignof(UWrestlerNavInvokerComponent) == 0x000008, "Wrong alignment on UWrestlerNavInvokerComponent"); \ +static_assert(sizeof(UWrestlerNavInvokerComponent) == 0x0000C0, "Wrong size on UWrestlerNavInvokerComponent"); \ +static_assert(offsetof(UWrestlerNavInvokerComponent, bShouldKickOffNavBuild) == 0x0000B0, "Member 'UWrestlerNavInvokerComponent::bShouldKickOffNavBuild' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNavLinkFunctionsLibrary \ +static_assert(alignof(UWrestlerNavLinkFunctionsLibrary) == 0x000008, "Wrong alignment on UWrestlerNavLinkFunctionsLibrary"); \ +static_assert(sizeof(UWrestlerNavLinkFunctionsLibrary) == 0x000028, "Wrong size on UWrestlerNavLinkFunctionsLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives \ +static_assert(alignof(WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives) == 0x000008, "Wrong alignment on WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives"); \ +static_assert(sizeof(WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives) == 0x000010, "Wrong size on WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives"); \ +static_assert(offsetof(WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives, ReturnValue) == 0x000000, "Member 'WrestlerNominateAutosaveToNamedSaveSlot_GetQuestObjectives::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerNominateAutosaveToNamedSaveSlot \ +static_assert(alignof(UWrestlerNominateAutosaveToNamedSaveSlot) == 0x000008, "Wrong alignment on UWrestlerNominateAutosaveToNamedSaveSlot"); \ +static_assert(sizeof(UWrestlerNominateAutosaveToNamedSaveSlot) == 0x0000E0, "Wrong size on UWrestlerNominateAutosaveToNamedSaveSlot"); \ +static_assert(offsetof(UWrestlerNominateAutosaveToNamedSaveSlot, QuestData) == 0x000088, "Member 'UWrestlerNominateAutosaveToNamedSaveSlot::QuestData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerNominateAutosaveToNamedSaveSlot, QuestObjective) == 0x0000B0, "Member 'UWrestlerNominateAutosaveToNamedSaveSlot::QuestObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerNominateAutosaveToNamedSaveSlot, TaskCompleteObjective) == 0x0000C0, "Member 'UWrestlerNominateAutosaveToNamedSaveSlot::TaskCompleteObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerNominateAutosaveToNamedSaveSlot, LoadedQuestData) == 0x0000C8, "Member 'UWrestlerNominateAutosaveToNamedSaveSlot::LoadedQuestData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerNominateAutosaveToNamedSaveSlot, TaskGUID) == 0x0000D0, "Member 'UWrestlerNominateAutosaveToNamedSaveSlot::TaskGUID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerOptObjectivesPoolWidget \ +static_assert(alignof(UWrestlerOptObjectivesPoolWidget) == 0x000008, "Wrong alignment on UWrestlerOptObjectivesPoolWidget"); \ +static_assert(sizeof(UWrestlerOptObjectivesPoolWidget) == 0x000558, "Wrong size on UWrestlerOptObjectivesPoolWidget"); \ + +#define DUMPER7_ASSERTS_UWrestlerPairAnimEventObject \ +static_assert(alignof(UWrestlerPairAnimEventObject) == 0x000008, "Wrong alignment on UWrestlerPairAnimEventObject"); \ +static_assert(sizeof(UWrestlerPairAnimEventObject) == 0x000050, "Wrong size on UWrestlerPairAnimEventObject"); \ +static_assert(offsetof(UWrestlerPairAnimEventObject, Instigator) == 0x000048, "Member 'UWrestlerPairAnimEventObject::Instigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerParticlesInterface_OnParticlesActivated \ +static_assert(alignof(WrestlerParticlesInterface_OnParticlesActivated) == 0x000001, "Wrong alignment on WrestlerParticlesInterface_OnParticlesActivated"); \ +static_assert(sizeof(WrestlerParticlesInterface_OnParticlesActivated) == 0x000001, "Wrong size on WrestlerParticlesInterface_OnParticlesActivated"); \ +static_assert(offsetof(WrestlerParticlesInterface_OnParticlesActivated, bInResetNiagaraSystem) == 0x000000, "Member 'WrestlerParticlesInterface_OnParticlesActivated::bInResetNiagaraSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerParticlesInterface \ +static_assert(alignof(IWrestlerParticlesInterface) == 0x000001, "Wrong alignment on IWrestlerParticlesInterface"); \ +static_assert(sizeof(IWrestlerParticlesInterface) == 0x000001, "Wrong size on IWrestlerParticlesInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation \ +static_assert(alignof(WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation) == 0x000004, "Wrong alignment on WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation"); \ +static_assert(sizeof(WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation) == 0x000004, "Wrong size on WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation"); \ +static_assert(offsetof(WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation, InDuration) == 0x000000, "Member 'WrestlerPassiveAbilitySlotWidget_PlayCooldownAnimation::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveAbilitySlotWidget_GetPlayerClan \ +static_assert(alignof(WrestlerPassiveAbilitySlotWidget_GetPlayerClan) == 0x000008, "Wrong alignment on WrestlerPassiveAbilitySlotWidget_GetPlayerClan"); \ +static_assert(sizeof(WrestlerPassiveAbilitySlotWidget_GetPlayerClan) == 0x000008, "Wrong size on WrestlerPassiveAbilitySlotWidget_GetPlayerClan"); \ +static_assert(offsetof(WrestlerPassiveAbilitySlotWidget_GetPlayerClan, ReturnValue) == 0x000000, "Member 'WrestlerPassiveAbilitySlotWidget_GetPlayerClan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPassiveAbilitySlotWidget \ +static_assert(alignof(UWrestlerPassiveAbilitySlotWidget) == 0x000008, "Wrong alignment on UWrestlerPassiveAbilitySlotWidget"); \ +static_assert(sizeof(UWrestlerPassiveAbilitySlotWidget) == 0x000358, "Wrong size on UWrestlerPassiveAbilitySlotWidget"); \ +static_assert(offsetof(UWrestlerPassiveAbilitySlotWidget, PassiveAbilityImage) == 0x000330, "Member 'UWrestlerPassiveAbilitySlotWidget::PassiveAbilityImage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveAbilitySlotWidget, PassiveAbilityTags) == 0x000338, "Member 'UWrestlerPassiveAbilitySlotWidget::PassiveAbilityTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveAbilitySlotWidget, CurrentActiveTag) == 0x000348, "Member 'UWrestlerPassiveAbilitySlotWidget::CurrentActiveTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPassiveTargetingInstance_OnValidData \ +static_assert(alignof(WrestlerPassiveTargetingInstance_OnValidData) == 0x000008, "Wrong alignment on WrestlerPassiveTargetingInstance_OnValidData"); \ +static_assert(sizeof(WrestlerPassiveTargetingInstance_OnValidData) == 0x000028, "Wrong size on WrestlerPassiveTargetingInstance_OnValidData"); \ +static_assert(offsetof(WrestlerPassiveTargetingInstance_OnValidData, InValidData) == 0x000000, "Member 'WrestlerPassiveTargetingInstance_OnValidData::InValidData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPassiveTargetingInstance \ +static_assert(alignof(UWrestlerPassiveTargetingInstance) == 0x000008, "Wrong alignment on UWrestlerPassiveTargetingInstance"); \ +static_assert(sizeof(UWrestlerPassiveTargetingInstance) == 0x000070, "Wrong size on UWrestlerPassiveTargetingInstance"); \ +static_assert(offsetof(UWrestlerPassiveTargetingInstance, AbilityInstance) == 0x000028, "Member 'UWrestlerPassiveTargetingInstance::AbilityInstance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingInstance, TargetActor) == 0x000030, "Member 'UWrestlerPassiveTargetingInstance::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingInstance, AttachmentSocket) == 0x000038, "Member 'UWrestlerPassiveTargetingInstance::AttachmentSocket' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPassiveTargetingInstance, SkeletonComponent) == 0x000040, "Member 'UWrestlerPassiveTargetingInstance::SkeletonComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPathPoint \ +static_assert(alignof(AWrestlerPathPoint) == 0x000008, "Wrong alignment on AWrestlerPathPoint"); \ +static_assert(sizeof(AWrestlerPathPoint) == 0x0002C8, "Wrong size on AWrestlerPathPoint"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetAttractiveActor \ +static_assert(alignof(WrestlerPerceptionInterface_GetAttractiveActor) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetAttractiveActor"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetAttractiveActor) == 0x000008, "Wrong size on WrestlerPerceptionInterface_GetAttractiveActor"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetAttractiveActor, OutAttractiveActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetAttractiveActor::OutAttractiveActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetLastHeardActorAndLocation \ +static_assert(alignof(WrestlerPerceptionInterface_GetLastHeardActorAndLocation) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetLastHeardActorAndLocation"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetLastHeardActorAndLocation) == 0x000028, "Wrong size on WrestlerPerceptionInterface_GetLastHeardActorAndLocation"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastHeardActorAndLocation, OutLastHeardActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetLastHeardActorAndLocation::OutLastHeardActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastHeardActorAndLocation, OutLocation) == 0x000008, "Member 'WrestlerPerceptionInterface_GetLastHeardActorAndLocation::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastHeardActorAndLocation, OutTime) == 0x000020, "Member 'WrestlerPerceptionInterface_GetLastHeardActorAndLocation::OutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetLastSeenActorAndLocation \ +static_assert(alignof(WrestlerPerceptionInterface_GetLastSeenActorAndLocation) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetLastSeenActorAndLocation"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetLastSeenActorAndLocation) == 0x000028, "Wrong size on WrestlerPerceptionInterface_GetLastSeenActorAndLocation"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSeenActorAndLocation, OutLastSeenActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetLastSeenActorAndLocation::OutLastSeenActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSeenActorAndLocation, OutLocation) == 0x000008, "Member 'WrestlerPerceptionInterface_GetLastSeenActorAndLocation::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSeenActorAndLocation, OutTime) == 0x000020, "Member 'WrestlerPerceptionInterface_GetLastSeenActorAndLocation::OutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetLastSensedActorAndLocation \ +static_assert(alignof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetLastSensedActorAndLocation"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation) == 0x000028, "Wrong size on WrestlerPerceptionInterface_GetLastSensedActorAndLocation"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation, OutLastSensedActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetLastSensedActorAndLocation::OutLastSensedActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation, OutLocation) == 0x000008, "Member 'WrestlerPerceptionInterface_GetLastSensedActorAndLocation::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation, OutTime) == 0x000020, "Member 'WrestlerPerceptionInterface_GetLastSensedActorAndLocation::OutTime' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetLastSensedActorAndLocation, OutWasHearingSense) == 0x000024, "Member 'WrestlerPerceptionInterface_GetLastSensedActorAndLocation::OutWasHearingSense' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetPlayerActor \ +static_assert(alignof(WrestlerPerceptionInterface_GetPlayerActor) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetPlayerActor"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetPlayerActor) == 0x000008, "Wrong size on WrestlerPerceptionInterface_GetPlayerActor"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetPlayerActor, OutPlayerActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetPlayerActor::OutPlayerActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetPriorityActor \ +static_assert(alignof(WrestlerPerceptionInterface_GetPriorityActor) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetPriorityActor"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetPriorityActor) == 0x000008, "Wrong size on WrestlerPerceptionInterface_GetPriorityActor"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetPriorityActor, OutPriorityActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetPriorityActor::OutPriorityActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_GetRepulsiveActor \ +static_assert(alignof(WrestlerPerceptionInterface_GetRepulsiveActor) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_GetRepulsiveActor"); \ +static_assert(sizeof(WrestlerPerceptionInterface_GetRepulsiveActor) == 0x000008, "Wrong size on WrestlerPerceptionInterface_GetRepulsiveActor"); \ +static_assert(offsetof(WrestlerPerceptionInterface_GetRepulsiveActor, OutRepulsiveActor) == 0x000000, "Member 'WrestlerPerceptionInterface_GetRepulsiveActor::OutRepulsiveActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPerceptionInterface_ToggleSense \ +static_assert(alignof(WrestlerPerceptionInterface_ToggleSense) == 0x000008, "Wrong alignment on WrestlerPerceptionInterface_ToggleSense"); \ +static_assert(sizeof(WrestlerPerceptionInterface_ToggleSense) == 0x000008, "Wrong size on WrestlerPerceptionInterface_ToggleSense"); \ +static_assert(offsetof(WrestlerPerceptionInterface_ToggleSense, Sense) == 0x000000, "Member 'WrestlerPerceptionInterface_ToggleSense::Sense' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerPerceptionInterface \ +static_assert(alignof(IWrestlerPerceptionInterface) == 0x000001, "Wrong alignment on IWrestlerPerceptionInterface"); \ +static_assert(sizeof(IWrestlerPerceptionInterface) == 0x000001, "Wrong size on IWrestlerPerceptionInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerPerPlatformSettings \ +static_assert(alignof(UWrestlerPerPlatformSettings) == 0x000008, "Wrong alignment on UWrestlerPerPlatformSettings"); \ +static_assert(sizeof(UWrestlerPerPlatformSettings) == 0x000068, "Wrong size on UWrestlerPerPlatformSettings"); \ +static_assert(offsetof(UWrestlerPerPlatformSettings, DefaultDeviceProfileSuffix) == 0x000040, "Member 'UWrestlerPerPlatformSettings::DefaultDeviceProfileSuffix' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerPlatformSettings, UserFacingDeviceProfileOptions) == 0x000050, "Member 'UWrestlerPerPlatformSettings::UserFacingDeviceProfileOptions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerPlatformSettings, bSupportsGranularVideoQualitySettings) == 0x000060, "Member 'UWrestlerPerPlatformSettings::bSupportsGranularVideoQualitySettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerPlatformSettings, bSupportsAutomaticVideoQualityBenchmark) == 0x000061, "Member 'UWrestlerPerPlatformSettings::bSupportsAutomaticVideoQualityBenchmark' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPerPlatformSettings, FramePacingMode) == 0x000062, "Member 'UWrestlerPerPlatformSettings::FramePacingMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlatformSettings \ +static_assert(alignof(UWrestlerPlatformSettings) == 0x000008, "Wrong alignment on UWrestlerPlatformSettings"); \ +static_assert(sizeof(UWrestlerPlatformSettings) == 0x0003C8, "Wrong size on UWrestlerPlatformSettings"); \ +static_assert(offsetof(UWrestlerPlatformSettings, PerPlatformSettings) == 0x000038, "Member 'UWrestlerPlatformSettings::PerPlatformSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, DesktopFrameRateLimits) == 0x000048, "Member 'UWrestlerPlatformSettings::DesktopFrameRateLimits' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, OverallVolume) == 0x000058, "Member 'UWrestlerPlatformSettings::OverallVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, DialogueVolume) == 0x000080, "Member 'UWrestlerPlatformSettings::DialogueVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, MusicVolume) == 0x0000A8, "Member 'UWrestlerPlatformSettings::MusicVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, AllSoundFXVolume) == 0x0000D0, "Member 'UWrestlerPlatformSettings::AllSoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, AmbientSoundFXVolume) == 0x0000F8, "Member 'UWrestlerPlatformSettings::AmbientSoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, UISoundFXVolume) == 0x000120, "Member 'UWrestlerPlatformSettings::UISoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, DynamicRange) == 0x000148, "Member 'UWrestlerPlatformSettings::DynamicRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, DialogueBoost) == 0x000170, "Member 'UWrestlerPlatformSettings::DialogueBoost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, PanningRule) == 0x000198, "Member 'UWrestlerPlatformSettings::PanningRule' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, MonoAudio) == 0x0001C0, "Member 'UWrestlerPlatformSettings::MonoAudio' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, AudioBalance) == 0x0001E8, "Member 'UWrestlerPlatformSettings::AudioBalance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, HighFrequencyCutoff) == 0x000210, "Member 'UWrestlerPlatformSettings::HighFrequencyCutoff' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, LowFrequencyCutoff) == 0x000238, "Member 'UWrestlerPlatformSettings::LowFrequencyCutoff' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, VibrationAmount) == 0x000260, "Member 'UWrestlerPlatformSettings::VibrationAmount' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, PlayerDifficultyProperty) == 0x000288, "Member 'UWrestlerPlatformSettings::PlayerDifficultyProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, SubtitlesOn) == 0x0002B0, "Member 'UWrestlerPlatformSettings::SubtitlesOn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, SubtitlesSize) == 0x0002D8, "Member 'UWrestlerPlatformSettings::SubtitlesSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, SubtitlesBackgroundAlpha) == 0x000300, "Member 'UWrestlerPlatformSettings::SubtitlesBackgroundAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, CloseCaptionOn) == 0x000328, "Member 'UWrestlerPlatformSettings::CloseCaptionOn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, CloseCaptionSizeProperty) == 0x000350, "Member 'UWrestlerPlatformSettings::CloseCaptionSizeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, CloseCaptionAlpha) == 0x000378, "Member 'UWrestlerPlatformSettings::CloseCaptionAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlatformSettings, CameraMovementReductionProperty) == 0x0003A0, "Member 'UWrestlerPlatformSettings::CameraMovementReductionProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPersistentAbilityTagComponent \ +static_assert(alignof(UWrestlerPersistentAbilityTagComponent) == 0x000008, "Wrong alignment on UWrestlerPersistentAbilityTagComponent"); \ +static_assert(sizeof(UWrestlerPersistentAbilityTagComponent) == 0x000110, "Wrong size on UWrestlerPersistentAbilityTagComponent"); \ +static_assert(offsetof(UWrestlerPersistentAbilityTagComponent, TrackedTags) == 0x0000A0, "Member 'UWrestlerPersistentAbilityTagComponent::TrackedTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPersistentAbilityTagComponent, GameplayEventObjectives) == 0x0000C0, "Member 'UWrestlerPersistentAbilityTagComponent::GameplayEventObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_EndActivity \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_EndActivity) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_EndActivity"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_EndActivity) == 0x000018, "Wrong size on WrestlerPlatformActivitySubsystem_EndActivity"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_EndActivity, ActivityId) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_EndActivity::ActivityId' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_EndActivity, bSuccess) == 0x000010, "Member 'WrestlerPlatformActivitySubsystem_EndActivity::bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_StartActivity \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_StartActivity) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_StartActivity"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_StartActivity) == 0x000020, "Wrong size on WrestlerPlatformActivitySubsystem_StartActivity"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_StartActivity, ActivityId) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_StartActivity::ActivityId' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_StartActivity, EndActivityId) == 0x000010, "Member 'WrestlerPlatformActivitySubsystem_StartActivity::EndActivityId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange) == 0x000018, "Wrong size on WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange, ActivityId) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange::ActivityId' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange, bEnabled) == 0x000010, "Member 'WrestlerPlatformActivitySubsystem_ActivityAvailabilityChange::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_GetCurrentActivityID \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_GetCurrentActivityID) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_GetCurrentActivityID"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_GetCurrentActivityID) == 0x000010, "Wrong size on WrestlerPlatformActivitySubsystem_GetCurrentActivityID"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_GetCurrentActivityID, ReturnValue) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_GetCurrentActivityID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_GetPreviousActivityID \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_GetPreviousActivityID) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_GetPreviousActivityID"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_GetPreviousActivityID) == 0x000010, "Wrong size on WrestlerPlatformActivitySubsystem_GetPreviousActivityID"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_GetPreviousActivityID, ReturnValue) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_GetPreviousActivityID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlatformActivitySubsystem_ResumeActivity \ +static_assert(alignof(WrestlerPlatformActivitySubsystem_ResumeActivity) == 0x000008, "Wrong alignment on WrestlerPlatformActivitySubsystem_ResumeActivity"); \ +static_assert(sizeof(WrestlerPlatformActivitySubsystem_ResumeActivity) == 0x000010, "Wrong size on WrestlerPlatformActivitySubsystem_ResumeActivity"); \ +static_assert(offsetof(WrestlerPlatformActivitySubsystem_ResumeActivity, ActivityId) == 0x000000, "Member 'WrestlerPlatformActivitySubsystem_ResumeActivity::ActivityId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlatformActivitySubsystem \ +static_assert(alignof(UWrestlerPlatformActivitySubsystem) == 0x000008, "Wrong alignment on UWrestlerPlatformActivitySubsystem"); \ +static_assert(sizeof(UWrestlerPlatformActivitySubsystem) == 0x0000E0, "Wrong size on UWrestlerPlatformActivitySubsystem"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerActionAssetMap \ +static_assert(alignof(UWrestlerPlayerActionAssetMap) == 0x000008, "Wrong alignment on UWrestlerPlayerActionAssetMap"); \ +static_assert(sizeof(UWrestlerPlayerActionAssetMap) == 0x000080, "Wrong size on UWrestlerPlayerActionAssetMap"); \ +static_assert(offsetof(UWrestlerPlayerActionAssetMap, ActionsMapAsset) == 0x000030, "Member 'UWrestlerPlayerActionAssetMap::ActionsMapAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_Get \ +static_assert(alignof(WrestlerPlayerCharacterSettings_Get) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_Get"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_Get) == 0x000010, "Wrong size on WrestlerPlayerCharacterSettings_Get"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_Get, InWorldContextObject) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_Get::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_Get, ReturnValue) == 0x000008, "Member 'WrestlerPlayerCharacterSettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset) == 0x000008, "Wrong size on WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetNoiseReportDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetPlayableCharacters \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetPlayableCharacters) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_GetPlayableCharacters"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetPlayableCharacters) == 0x000008, "Wrong size on WrestlerPlayerCharacterSettings_GetPlayableCharacters"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetPlayableCharacters, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetPlayableCharacters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth) == 0x000004, "Wrong alignment on WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth) == 0x000004, "Wrong size on WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetMinimumPlayerHealth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise) == 0x000050, "Wrong size on WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetPlayerAttributesToSerialise::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty) == 0x000028, "Wrong size on WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetPlayerCharacterProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset \ +static_assert(alignof(WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset"); \ +static_assert(sizeof(WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset) == 0x000008, "Wrong size on WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset"); \ +static_assert(offsetof(WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerCharacterSettings_GetPlayerDifficultyDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerCharacterSettings \ +static_assert(alignof(UWrestlerPlayerCharacterSettings) == 0x000008, "Wrong alignment on UWrestlerPlayerCharacterSettings"); \ +static_assert(sizeof(UWrestlerPlayerCharacterSettings) == 0x000148, "Wrong size on UWrestlerPlayerCharacterSettings"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, PlayableCharacters) == 0x000048, "Member 'UWrestlerPlayerCharacterSettings::PlayableCharacters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, PlayerCharacterProperty) == 0x000070, "Member 'UWrestlerPlayerCharacterSettings::PlayerCharacterProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, NoiseReportDataAsset) == 0x000098, "Member 'UWrestlerPlayerCharacterSettings::NoiseReportDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, PlayerDifficultyDataAsset) == 0x0000C0, "Member 'UWrestlerPlayerCharacterSettings::PlayerDifficultyDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, PlayableCharactersInstance) == 0x0000E8, "Member 'UWrestlerPlayerCharacterSettings::PlayableCharactersInstance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, PlayerAttributesToSerialise) == 0x0000F0, "Member 'UWrestlerPlayerCharacterSettings::PlayerAttributesToSerialise' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerCharacterSettings, MinimumPlayerHealth) == 0x000140, "Member 'UWrestlerPlayerCharacterSettings::MinimumPlayerHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerDifficulty_GetDifficulty \ +static_assert(alignof(WrestlerPlayerDifficulty_GetDifficulty) == 0x000001, "Wrong alignment on WrestlerPlayerDifficulty_GetDifficulty"); \ +static_assert(sizeof(WrestlerPlayerDifficulty_GetDifficulty) == 0x000001, "Wrong size on WrestlerPlayerDifficulty_GetDifficulty"); \ +static_assert(offsetof(WrestlerPlayerDifficulty_GetDifficulty, ReturnValue) == 0x000000, "Member 'WrestlerPlayerDifficulty_GetDifficulty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerDifficulty_SetDifficulty \ +static_assert(alignof(WrestlerPlayerDifficulty_SetDifficulty) == 0x000001, "Wrong alignment on WrestlerPlayerDifficulty_SetDifficulty"); \ +static_assert(sizeof(WrestlerPlayerDifficulty_SetDifficulty) == 0x000001, "Wrong size on WrestlerPlayerDifficulty_SetDifficulty"); \ +static_assert(offsetof(WrestlerPlayerDifficulty_SetDifficulty, InDifficulty) == 0x000000, "Member 'WrestlerPlayerDifficulty_SetDifficulty::InDifficulty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerDifficulty \ +static_assert(alignof(UWrestlerPlayerDifficulty) == 0x000008, "Wrong alignment on UWrestlerPlayerDifficulty"); \ +static_assert(sizeof(UWrestlerPlayerDifficulty) == 0x0000A8, "Wrong size on UWrestlerPlayerDifficulty"); \ +static_assert(offsetof(UWrestlerPlayerDifficulty, PlayerDifficulty) == 0x000030, "Member 'UWrestlerPlayerDifficulty::PlayerDifficulty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerDifficulty, Difficulty) == 0x000058, "Member 'UWrestlerPlayerDifficulty::Difficulty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerMovementDataAsset \ +static_assert(alignof(UWrestlerPlayerMovementDataAsset) == 0x000008, "Wrong alignment on UWrestlerPlayerMovementDataAsset"); \ +static_assert(sizeof(UWrestlerPlayerMovementDataAsset) == 0x000050, "Wrong size on UWrestlerPlayerMovementDataAsset"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, JumpSpeed) == 0x000030, "Member 'UWrestlerPlayerMovementDataAsset::JumpSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, GravityScale) == 0x000034, "Member 'UWrestlerPlayerMovementDataAsset::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, MaxAcceleration) == 0x000038, "Member 'UWrestlerPlayerMovementDataAsset::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, BrakingFriction) == 0x00003C, "Member 'UWrestlerPlayerMovementDataAsset::BrakingFriction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, AirControl) == 0x000040, "Member 'UWrestlerPlayerMovementDataAsset::AirControl' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, bCanCrouch) == 0x000044, "Member 'UWrestlerPlayerMovementDataAsset::bCanCrouch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, bCanJump) == 0x000045, "Member 'UWrestlerPlayerMovementDataAsset::bCanJump' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, HeavyFallSpeedThreshold) == 0x000048, "Member 'UWrestlerPlayerMovementDataAsset::HeavyFallSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerMovementDataAsset, MaxHeightForFloorCast) == 0x00004C, "Member 'UWrestlerPlayerMovementDataAsset::MaxHeightForFloorCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerNoiseReportDataAsset \ +static_assert(alignof(UWrestlerPlayerNoiseReportDataAsset) == 0x000008, "Wrong alignment on UWrestlerPlayerNoiseReportDataAsset"); \ +static_assert(sizeof(UWrestlerPlayerNoiseReportDataAsset) == 0x000050, "Wrong size on UWrestlerPlayerNoiseReportDataAsset"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseRangeWalking) == 0x000030, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseRangeWalking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseRangeSprinting) == 0x000034, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseRangeSprinting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseRangeStealth) == 0x000038, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseRangeStealth' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseVolumeWalking) == 0x00003C, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseVolumeWalking' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseVolumeSprinting) == 0x000040, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseVolumeSprinting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, NoiseVolumeStealth) == 0x000044, "Member 'UWrestlerPlayerNoiseReportDataAsset::NoiseVolumeStealth' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, FeedNoiseRange) == 0x000048, "Member 'UWrestlerPlayerNoiseReportDataAsset::FeedNoiseRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerNoiseReportDataAsset, FeedNoiseVolume) == 0x00004C, "Member 'UWrestlerPlayerNoiseReportDataAsset::FeedNoiseVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerSetup \ +static_assert(alignof(UWrestlerPlayerSetup) == 0x000008, "Wrong alignment on UWrestlerPlayerSetup"); \ +static_assert(sizeof(UWrestlerPlayerSetup) == 0x000060, "Wrong size on UWrestlerPlayerSetup"); \ +static_assert(offsetof(UWrestlerPlayerSetup, Setup) == 0x000030, "Member 'UWrestlerPlayerSetup::Setup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPlayerStart \ +static_assert(alignof(AWrestlerPlayerStart) == 0x000008, "Wrong alignment on AWrestlerPlayerStart"); \ +static_assert(sizeof(AWrestlerPlayerStart) == 0x0002F8, "Wrong size on AWrestlerPlayerStart"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerState_GetTokenManager \ +static_assert(alignof(WrestlerPlayerState_GetTokenManager) == 0x000008, "Wrong alignment on WrestlerPlayerState_GetTokenManager"); \ +static_assert(sizeof(WrestlerPlayerState_GetTokenManager) == 0x000008, "Wrong size on WrestlerPlayerState_GetTokenManager"); \ +static_assert(offsetof(WrestlerPlayerState_GetTokenManager, ReturnValue) == 0x000000, "Member 'WrestlerPlayerState_GetTokenManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPlayerState \ +static_assert(alignof(AWrestlerPlayerState) == 0x000008, "Wrong alignment on AWrestlerPlayerState"); \ +static_assert(sizeof(AWrestlerPlayerState) == 0x000360, "Wrong size on AWrestlerPlayerState"); \ +static_assert(offsetof(AWrestlerPlayerState, ConfigDataName) == 0x000350, "Member 'AWrestlerPlayerState::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerState, TokenManager) == 0x000358, "Member 'AWrestlerPlayerState::TokenManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_CanCollectConsumable \ +static_assert(alignof(WrestlerPlayerStateInGame_CanCollectConsumable) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_CanCollectConsumable"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_CanCollectConsumable) == 0x000002, "Wrong size on WrestlerPlayerStateInGame_CanCollectConsumable"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_CanCollectConsumable, InConsumableType) == 0x000000, "Member 'WrestlerPlayerStateInGame_CanCollectConsumable::InConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_CanCollectConsumable, ReturnValue) == 0x000001, "Member 'WrestlerPlayerStateInGame_CanCollectConsumable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetCostumeDataAsset \ +static_assert(alignof(WrestlerPlayerStateInGame_GetCostumeDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetCostumeDataAsset"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetCostumeDataAsset) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetCostumeDataAsset"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetCostumeDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetCostumeDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetCostumesCollection \ +static_assert(alignof(WrestlerPlayerStateInGame_GetCostumesCollection) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetCostumesCollection"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetCostumesCollection) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetCostumesCollection"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetCostumesCollection, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetCostumesCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetEyesCollection \ +static_assert(alignof(WrestlerPlayerStateInGame_GetEyesCollection) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetEyesCollection"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetEyesCollection) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetEyesCollection"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetEyesCollection, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetEyesCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetEyesDataAsset \ +static_assert(alignof(WrestlerPlayerStateInGame_GetEyesDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetEyesDataAsset"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetEyesDataAsset) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetEyesDataAsset"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetEyesDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetEyesDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetHairCollection \ +static_assert(alignof(WrestlerPlayerStateInGame_GetHairCollection) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetHairCollection"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetHairCollection) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetHairCollection"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetHairCollection, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetHairCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetHairDataAsset \ +static_assert(alignof(WrestlerPlayerStateInGame_GetHairDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetHairDataAsset"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetHairDataAsset) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetHairDataAsset"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetHairDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetHairDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMakeUpCollection \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMakeUpCollection) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetMakeUpCollection"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMakeUpCollection) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetMakeUpCollection"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMakeUpCollection, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMakeUpCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMakeUpDataAsset \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMakeUpDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetMakeUpDataAsset"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMakeUpDataAsset) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetMakeUpDataAsset"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMakeUpDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMakeUpDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetPiercingCollection \ +static_assert(alignof(WrestlerPlayerStateInGame_GetPiercingCollection) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetPiercingCollection"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetPiercingCollection) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetPiercingCollection"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetPiercingCollection, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetPiercingCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetPiercingDataAsset \ +static_assert(alignof(WrestlerPlayerStateInGame_GetPiercingDataAsset) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetPiercingDataAsset"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetPiercingDataAsset) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetPiercingDataAsset"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetPiercingDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetPiercingDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_MasqueradeLevelChanged \ +static_assert(alignof(WrestlerPlayerStateInGame_MasqueradeLevelChanged) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_MasqueradeLevelChanged"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_MasqueradeLevelChanged) == 0x000002, "Wrong size on WrestlerPlayerStateInGame_MasqueradeLevelChanged"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_MasqueradeLevelChanged, InPrevMasqState) == 0x000000, "Member 'WrestlerPlayerStateInGame_MasqueradeLevelChanged::InPrevMasqState' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_MasqueradeLevelChanged, InNewMasqState) == 0x000001, "Member 'WrestlerPlayerStateInGame_MasqueradeLevelChanged::InNewMasqState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_OnConsumableFailed \ +static_assert(alignof(WrestlerPlayerStateInGame_OnConsumableFailed) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_OnConsumableFailed"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_OnConsumableFailed) == 0x000002, "Wrong size on WrestlerPlayerStateInGame_OnConsumableFailed"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_OnConsumableFailed, InConsumableType) == 0x000000, "Member 'WrestlerPlayerStateInGame_OnConsumableFailed::InConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_OnConsumableFailed, bShouldAdd) == 0x000001, "Member 'WrestlerPlayerStateInGame_OnConsumableFailed::bShouldAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_SetClan \ +static_assert(alignof(WrestlerPlayerStateInGame_SetClan) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_SetClan"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_SetClan) == 0x000010, "Wrong size on WrestlerPlayerStateInGame_SetClan"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetClan, InClan) == 0x000000, "Member 'WrestlerPlayerStateInGame_SetClan::InClan' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetClan, UpdateProperty) == 0x000008, "Member 'WrestlerPlayerStateInGame_SetClan::UpdateProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_SetNarrativeModeEnabled \ +static_assert(alignof(WrestlerPlayerStateInGame_SetNarrativeModeEnabled) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_SetNarrativeModeEnabled"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_SetNarrativeModeEnabled) == 0x000001, "Wrong size on WrestlerPlayerStateInGame_SetNarrativeModeEnabled"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetNarrativeModeEnabled, bInNarrativeModeEnabled) == 0x000000, "Member 'WrestlerPlayerStateInGame_SetNarrativeModeEnabled::bInNarrativeModeEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_SetUpClanAttributes \ +static_assert(alignof(WrestlerPlayerStateInGame_SetUpClanAttributes) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_SetUpClanAttributes"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_SetUpClanAttributes) == 0x000018, "Wrong size on WrestlerPlayerStateInGame_SetUpClanAttributes"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetUpClanAttributes, InAbilityArray) == 0x000000, "Member 'WrestlerPlayerStateInGame_SetUpClanAttributes::InAbilityArray' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetUpClanAttributes, InMaxHealth) == 0x000010, "Member 'WrestlerPlayerStateInGame_SetUpClanAttributes::InMaxHealth' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_SetUpClanAttributes, InMaxBlood) == 0x000014, "Member 'WrestlerPlayerStateInGame_SetUpClanAttributes::InMaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_UpdateConsumable \ +static_assert(alignof(WrestlerPlayerStateInGame_UpdateConsumable) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_UpdateConsumable"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_UpdateConsumable) == 0x000003, "Wrong size on WrestlerPlayerStateInGame_UpdateConsumable"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_UpdateConsumable, InConsumableType) == 0x000000, "Member 'WrestlerPlayerStateInGame_UpdateConsumable::InConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_UpdateConsumable, bShouldAdd) == 0x000001, "Member 'WrestlerPlayerStateInGame_UpdateConsumable::bShouldAdd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_UpdateConsumable, ReturnValue) == 0x000002, "Member 'WrestlerPlayerStateInGame_UpdateConsumable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetAttackPower \ +static_assert(alignof(WrestlerPlayerStateInGame_GetAttackPower) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetAttackPower"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetAttackPower) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetAttackPower"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetAttackPower, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetAttackPower::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetAttributeSet \ +static_assert(alignof(WrestlerPlayerStateInGame_GetAttributeSet) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetAttributeSet"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetAttributeSet) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetAttributeSet"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetAttributeSet, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetAttributeSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetBlood \ +static_assert(alignof(WrestlerPlayerStateInGame_GetBlood) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetBlood"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetBlood) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetBlood"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetBlood, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetBlood::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetCharacterLevel \ +static_assert(alignof(WrestlerPlayerStateInGame_GetCharacterLevel) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetCharacterLevel"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetCharacterLevel) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetCharacterLevel"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetCharacterLevel, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetCharacterLevel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetClan \ +static_assert(alignof(WrestlerPlayerStateInGame_GetClan) == 0x000008, "Wrong alignment on WrestlerPlayerStateInGame_GetClan"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetClan) == 0x000008, "Wrong size on WrestlerPlayerStateInGame_GetClan"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetClan, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetClan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetHealth \ +static_assert(alignof(WrestlerPlayerStateInGame_GetHealth) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetHealth"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetHealth) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetHealth"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetHealth, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetHealth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed \ +static_assert(alignof(WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetHeavyFallThresholdSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMaxBlood \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMaxBlood) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetMaxBlood"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMaxBlood) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetMaxBlood"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMaxBlood, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMaxBlood::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMaxHealth \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMaxHealth) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetMaxHealth"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMaxHealth) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetMaxHealth"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMaxHealth, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMaxHealth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMaxHeightForFloorCast \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMaxHeightForFloorCast) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetMaxHeightForFloorCast"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMaxHeightForFloorCast) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetMaxHeightForFloorCast"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMaxHeightForFloorCast, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMaxHeightForFloorCast::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetMaxShield \ +static_assert(alignof(WrestlerPlayerStateInGame_GetMaxShield) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetMaxShield"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetMaxShield) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetMaxShield"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetMaxShield, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetMaxShield::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetNarrativeModeEnabled \ +static_assert(alignof(WrestlerPlayerStateInGame_GetNarrativeModeEnabled) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_GetNarrativeModeEnabled"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetNarrativeModeEnabled) == 0x000001, "Wrong size on WrestlerPlayerStateInGame_GetNarrativeModeEnabled"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetNarrativeModeEnabled, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetNarrativeModeEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetShield \ +static_assert(alignof(WrestlerPlayerStateInGame_GetShield) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetShield"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetShield) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetShield"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetShield, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetShield::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_GetWalkSpeed \ +static_assert(alignof(WrestlerPlayerStateInGame_GetWalkSpeed) == 0x000004, "Wrong alignment on WrestlerPlayerStateInGame_GetWalkSpeed"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_GetWalkSpeed) == 0x000004, "Wrong size on WrestlerPlayerStateInGame_GetWalkSpeed"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_GetWalkSpeed, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_GetWalkSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_IsDead \ +static_assert(alignof(WrestlerPlayerStateInGame_IsDead) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_IsDead"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_IsDead) == 0x000001, "Wrong size on WrestlerPlayerStateInGame_IsDead"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_IsDead, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_IsDead::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerStateInGame_IsDeadByMasquerade \ +static_assert(alignof(WrestlerPlayerStateInGame_IsDeadByMasquerade) == 0x000001, "Wrong alignment on WrestlerPlayerStateInGame_IsDeadByMasquerade"); \ +static_assert(sizeof(WrestlerPlayerStateInGame_IsDeadByMasquerade) == 0x000001, "Wrong size on WrestlerPlayerStateInGame_IsDeadByMasquerade"); \ +static_assert(offsetof(WrestlerPlayerStateInGame_IsDeadByMasquerade, ReturnValue) == 0x000000, "Member 'WrestlerPlayerStateInGame_IsDeadByMasquerade::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerPlayerStateInGame \ +static_assert(alignof(AWrestlerPlayerStateInGame) == 0x000008, "Wrong alignment on AWrestlerPlayerStateInGame"); \ +static_assert(sizeof(AWrestlerPlayerStateInGame) == 0x000500, "Wrong size on AWrestlerPlayerStateInGame"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnClanPropertyChangeEvent) == 0x000368, "Member 'AWrestlerPlayerStateInGame::OnClanPropertyChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnMissionTypePropertyChangeEvent) == 0x000378, "Member 'AWrestlerPlayerStateInGame::OnMissionTypePropertyChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnPlayableCharacterPropertyChangeEvent) == 0x000388, "Member 'AWrestlerPlayerStateInGame::OnPlayableCharacterPropertyChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnNarrativeModePropertyChangeEvent) == 0x000398, "Member 'AWrestlerPlayerStateInGame::OnNarrativeModePropertyChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnConsumablePropertyChangeEvent) == 0x0003A8, "Member 'AWrestlerPlayerStateInGame::OnConsumablePropertyChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, OnConsumableFailedEvent) == 0x0003B8, "Member 'AWrestlerPlayerStateInGame::OnConsumableFailedEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, ClanValue) == 0x0003C8, "Member 'AWrestlerPlayerStateInGame::ClanValue' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, ClanStateTrackingList) == 0x0003D0, "Member 'AWrestlerPlayerStateInGame::ClanStateTrackingList' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerCostumeID) == 0x0003D8, "Member 'AWrestlerPlayerStateInGame::PlayerCostumeID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerHairID) == 0x0003E0, "Member 'AWrestlerPlayerStateInGame::PlayerHairID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerMakeUpID) == 0x0003E8, "Member 'AWrestlerPlayerStateInGame::PlayerMakeUpID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerPiercingID) == 0x0003F0, "Member 'AWrestlerPlayerStateInGame::PlayerPiercingID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerEyesID) == 0x0003F8, "Member 'AWrestlerPlayerStateInGame::PlayerEyesID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerInNarrativeMode) == 0x000400, "Member 'AWrestlerPlayerStateInGame::PlayerInNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PlayerCharacterID) == 0x000408, "Member 'AWrestlerPlayerStateInGame::PlayerCharacterID' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, ConsumableCap) == 0x000410, "Member 'AWrestlerPlayerStateInGame::ConsumableCap' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, StateAttributeSet) == 0x000420, "Member 'AWrestlerPlayerStateInGame::StateAttributeSet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, ConsumableProperties) == 0x000468, "Member 'AWrestlerPlayerStateInGame::ConsumableProperties' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, CurrentClan) == 0x0004C0, "Member 'AWrestlerPlayerStateInGame::CurrentClan' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, CurrentPlayerType) == 0x0004C8, "Member 'AWrestlerPlayerStateInGame::CurrentPlayerType' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, CostumesCollection) == 0x0004D0, "Member 'AWrestlerPlayerStateInGame::CostumesCollection' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, HairCollection) == 0x0004D8, "Member 'AWrestlerPlayerStateInGame::HairCollection' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, MakeUpCollection) == 0x0004E0, "Member 'AWrestlerPlayerStateInGame::MakeUpCollection' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, PiercingCollection) == 0x0004E8, "Member 'AWrestlerPlayerStateInGame::PiercingCollection' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerPlayerStateInGame, EyesCollection) == 0x0004F0, "Member 'AWrestlerPlayerStateInGame::EyesCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPropControlComponet_OnComponentSleep \ +static_assert(alignof(WrestlerPropControlComponet_OnComponentSleep) == 0x000008, "Wrong alignment on WrestlerPropControlComponet_OnComponentSleep"); \ +static_assert(sizeof(WrestlerPropControlComponet_OnComponentSleep) == 0x000010, "Wrong size on WrestlerPropControlComponet_OnComponentSleep"); \ +static_assert(offsetof(WrestlerPropControlComponet_OnComponentSleep, SleepingComponent) == 0x000000, "Member 'WrestlerPropControlComponet_OnComponentSleep::SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPropControlComponet_OnComponentSleep, BoneName) == 0x000008, "Member 'WrestlerPropControlComponet_OnComponentSleep::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPropControlComponet \ +static_assert(alignof(UWrestlerPropControlComponet) == 0x000008, "Wrong alignment on UWrestlerPropControlComponet"); \ +static_assert(sizeof(UWrestlerPropControlComponet) == 0x0000F8, "Wrong size on UWrestlerPropControlComponet"); \ +static_assert(offsetof(UWrestlerPropControlComponet, OnLevelStreamedOut) == 0x0000A0, "Member 'UWrestlerPropControlComponet::OnLevelStreamedOut' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, OnLevelStreamedIn) == 0x0000B0, "Member 'UWrestlerPropControlComponet::OnLevelStreamedIn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, OnLevelChanged) == 0x0000C0, "Member 'UWrestlerPropControlComponet::OnLevelChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, FloorLineTraceDistance) == 0x0000D0, "Member 'UWrestlerPropControlComponet::FloorLineTraceDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, DebugLineTrace) == 0x0000D4, "Member 'UWrestlerPropControlComponet::DebugLineTrace' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, TargetMesh) == 0x0000E8, "Member 'UWrestlerPropControlComponet::TargetMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPropControlComponet, CurrentStreamingLevel) == 0x0000F0, "Member 'UWrestlerPropControlComponet::CurrentStreamingLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPropertyLibrary_GetAllPublicFloatProperties \ +static_assert(alignof(WrestlerPropertyLibrary_GetAllPublicFloatProperties) == 0x000008, "Wrong alignment on WrestlerPropertyLibrary_GetAllPublicFloatProperties"); \ +static_assert(sizeof(WrestlerPropertyLibrary_GetAllPublicFloatProperties) == 0x000058, "Wrong size on WrestlerPropertyLibrary_GetAllPublicFloatProperties"); \ +static_assert(offsetof(WrestlerPropertyLibrary_GetAllPublicFloatProperties, Object) == 0x000000, "Member 'WrestlerPropertyLibrary_GetAllPublicFloatProperties::Object' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPropertyLibrary_GetAllPublicFloatProperties, ReturnValue) == 0x000008, "Member 'WrestlerPropertyLibrary_GetAllPublicFloatProperties::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPropertyLibrary \ +static_assert(alignof(UWrestlerPropertyLibrary) == 0x000008, "Wrong alignment on UWrestlerPropertyLibrary"); \ +static_assert(sizeof(UWrestlerPropertyLibrary) == 0x000028, "Wrong size on UWrestlerPropertyLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestData_GetQuestObjectivesList \ +static_assert(alignof(WrestlerQuestData_GetQuestObjectivesList) == 0x000008, "Wrong alignment on WrestlerQuestData_GetQuestObjectivesList"); \ +static_assert(sizeof(WrestlerQuestData_GetQuestObjectivesList) == 0x000010, "Wrong size on WrestlerQuestData_GetQuestObjectivesList"); \ +static_assert(offsetof(WrestlerQuestData_GetQuestObjectivesList, ReturnValue) == 0x000000, "Member 'WrestlerQuestData_GetQuestObjectivesList::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestData \ +static_assert(alignof(UWrestlerQuestData) == 0x000008, "Wrong alignment on UWrestlerQuestData"); \ +static_assert(sizeof(UWrestlerQuestData) == 0x000148, "Wrong size on UWrestlerQuestData"); \ +static_assert(offsetof(UWrestlerQuestData, QuestTag) == 0x000030, "Member 'UWrestlerQuestData::QuestTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, QuestTitle) == 0x000038, "Member 'UWrestlerQuestData::QuestTitle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, QuestDescriptions) == 0x000050, "Member 'UWrestlerQuestData::QuestDescriptions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, QuestIcon) == 0x0000A0, "Member 'UWrestlerQuestData::QuestIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, QuestInkData) == 0x0000C8, "Member 'UWrestlerQuestData::QuestInkData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, ListVariable) == 0x0000D0, "Member 'UWrestlerQuestData::ListVariable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, QuestObjectives) == 0x0000D8, "Member 'UWrestlerQuestData::QuestObjectives' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, bRecursiveDataLayerActivation) == 0x000128, "Member 'UWrestlerQuestData::bRecursiveDataLayerActivation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, GameplayDataLayers) == 0x000130, "Member 'UWrestlerQuestData::GameplayDataLayers' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestData, CurrentObjectiveVariable) == 0x000140, "Member 'UWrestlerQuestData::CurrentObjectiveVariable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestMarkersPoolWidget \ +static_assert(alignof(UWrestlerQuestMarkersPoolWidget) == 0x000008, "Wrong alignment on UWrestlerQuestMarkersPoolWidget"); \ +static_assert(sizeof(UWrestlerQuestMarkersPoolWidget) == 0x000538, "Wrong size on UWrestlerQuestMarkersPoolWidget"); \ +static_assert(offsetof(UWrestlerQuestMarkersPoolWidget, ObjectWithQuestTag) == 0x000498, "Member 'UWrestlerQuestMarkersPoolWidget::ObjectWithQuestTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestMarkersPoolWidget, TagAndMarker) == 0x0004E8, "Member 'UWrestlerQuestMarkersPoolWidget::TagAndMarker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestScreenWidget_OnQuestFocused \ +static_assert(alignof(WrestlerQuestScreenWidget_OnQuestFocused) == 0x000008, "Wrong alignment on WrestlerQuestScreenWidget_OnQuestFocused"); \ +static_assert(sizeof(WrestlerQuestScreenWidget_OnQuestFocused) == 0x000010, "Wrong size on WrestlerQuestScreenWidget_OnQuestFocused"); \ +static_assert(offsetof(WrestlerQuestScreenWidget_OnQuestFocused, InQuestGT) == 0x000000, "Member 'WrestlerQuestScreenWidget_OnQuestFocused::InQuestGT' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestScreenWidget_OnQuestFocused, InQuestContainer) == 0x000008, "Member 'WrestlerQuestScreenWidget_OnQuestFocused::InQuestContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerQuestScreenWidget_OnQuestSelected \ +static_assert(alignof(WrestlerQuestScreenWidget_OnQuestSelected) == 0x000008, "Wrong alignment on WrestlerQuestScreenWidget_OnQuestSelected"); \ +static_assert(sizeof(WrestlerQuestScreenWidget_OnQuestSelected) == 0x000010, "Wrong size on WrestlerQuestScreenWidget_OnQuestSelected"); \ +static_assert(offsetof(WrestlerQuestScreenWidget_OnQuestSelected, InQuestContainer) == 0x000000, "Member 'WrestlerQuestScreenWidget_OnQuestSelected::InQuestContainer' has a wrong offset!"); \ +static_assert(offsetof(WrestlerQuestScreenWidget_OnQuestSelected, InQuestGT) == 0x000008, "Member 'WrestlerQuestScreenWidget_OnQuestSelected::InQuestGT' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerQuestScreenWidget \ +static_assert(alignof(UWrestlerQuestScreenWidget) == 0x000008, "Wrong alignment on UWrestlerQuestScreenWidget"); \ +static_assert(sizeof(UWrestlerQuestScreenWidget) == 0x000560, "Wrong size on UWrestlerQuestScreenWidget"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, ShowFocusedQuestInputActionData) == 0x000490, "Member 'UWrestlerQuestScreenWidget::ShowFocusedQuestInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, MainQuestContainer) == 0x0004A0, "Member 'UWrestlerQuestScreenWidget::MainQuestContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, SideQuestContainer) == 0x0004A8, "Member 'UWrestlerQuestScreenWidget::SideQuestContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, CompletedQuestContainer) == 0x0004B0, "Member 'UWrestlerQuestScreenWidget::CompletedQuestContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, SelectedQuestEntry) == 0x0004B8, "Member 'UWrestlerQuestScreenWidget::SelectedQuestEntry' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, CurrentlyFocusedButton) == 0x0004C0, "Member 'UWrestlerQuestScreenWidget::CurrentlyFocusedButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, CurrentlyInspectedContainer) == 0x0004C8, "Member 'UWrestlerQuestScreenWidget::CurrentlyInspectedContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, QuestsScrollBox) == 0x0004D0, "Member 'UWrestlerQuestScreenWidget::QuestsScrollBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, bWasMasqueradeBroken) == 0x0004D8, "Member 'UWrestlerQuestScreenWidget::bWasMasqueradeBroken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, bIsMapScreenAvailable) == 0x0004D9, "Member 'UWrestlerQuestScreenWidget::bIsMapScreenAvailable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, OpenQuestsData) == 0x0004E0, "Member 'UWrestlerQuestScreenWidget::OpenQuestsData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, ContainerWithActiveQuest) == 0x000530, "Member 'UWrestlerQuestScreenWidget::ContainerWithActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerQuestScreenWidget, CurrentlyFocusedQuestButton) == 0x000550, "Member 'UWrestlerQuestScreenWidget::CurrentlyFocusedQuestButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRadialMenu \ +static_assert(alignof(UWrestlerRadialMenu) == 0x000010, "Wrong alignment on UWrestlerRadialMenu"); \ +static_assert(sizeof(UWrestlerRadialMenu) == 0x000400, "Wrong size on UWrestlerRadialMenu"); \ +static_assert(offsetof(UWrestlerRadialMenu, bUseFixedAspectRatio) == 0x000198, "Member 'UWrestlerRadialMenu::bUseFixedAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, InitialRotation) == 0x00019C, "Member 'UWrestlerRadialMenu::InitialRotation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, RingRadius) == 0x0001A0, "Member 'UWrestlerRadialMenu::RingRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, CoreRadius) == 0x0001A4, "Member 'UWrestlerRadialMenu::CoreRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, ChildrenOffset) == 0x0001A8, "Member 'UWrestlerRadialMenu::ChildrenOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, ChildrenSizeScale) == 0x0001AC, "Member 'UWrestlerRadialMenu::ChildrenSizeScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, RadialMenuMaterialParams) == 0x0001B0, "Member 'UWrestlerRadialMenu::RadialMenuMaterialParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, SelectBrushAngle) == 0x0001C0, "Member 'UWrestlerRadialMenu::SelectBrushAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, RadialMenuBrush) == 0x0001D0, "Member 'UWrestlerRadialMenu::RadialMenuBrush' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, SelectBrush) == 0x0002A0, "Member 'UWrestlerRadialMenu::SelectBrush' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, OnActiveSlotChangedEvent) == 0x000370, "Member 'UWrestlerRadialMenu::OnActiveSlotChangedEvent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, RadialMenuBrushDelegate) == 0x000380, "Member 'UWrestlerRadialMenu::RadialMenuBrushDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, SelectBrushDelegate) == 0x000390, "Member 'UWrestlerRadialMenu::SelectBrushDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, ColorAndOpacity) == 0x0003A0, "Member 'UWrestlerRadialMenu::ColorAndOpacity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRadialMenu, ColorAndOpacityDelegate) == 0x0003B0, "Member 'UWrestlerRadialMenu::ColorAndOpacityDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRadialMenuSlot \ +static_assert(alignof(UWrestlerRadialMenuSlot) == 0x000008, "Wrong alignment on UWrestlerRadialMenuSlot"); \ +static_assert(sizeof(UWrestlerRadialMenuSlot) == 0x000080, "Wrong size on UWrestlerRadialMenuSlot"); \ +static_assert(offsetof(UWrestlerRadialMenuSlot, SlotSizeScale) == 0x000038, "Member 'UWrestlerRadialMenuSlot::SlotSizeScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRangedAttackConfig \ +static_assert(alignof(UWrestlerRangedAttackConfig) == 0x000008, "Wrong alignment on UWrestlerRangedAttackConfig"); \ +static_assert(sizeof(UWrestlerRangedAttackConfig) == 0x0000B0, "Wrong size on UWrestlerRangedAttackConfig"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, AimOffset) == 0x000030, "Member 'UWrestlerRangedAttackConfig::AimOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, MissingOffset) == 0x000034, "Member 'UWrestlerRangedAttackConfig::MissingOffset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, WaitTimeBeforeMeleeAttack) == 0x000038, "Member 'UWrestlerRangedAttackConfig::WaitTimeBeforeMeleeAttack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, DistanceThresholdToTurnMelee) == 0x00003C, "Member 'UWrestlerRangedAttackConfig::DistanceThresholdToTurnMelee' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, EnemyRangedAttackEQSParams) == 0x000040, "Member 'UWrestlerRangedAttackConfig::EnemyRangedAttackEQSParams' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, DefaultRangedGapCloseMinDistance) == 0x000090, "Member 'UWrestlerRangedAttackConfig::DefaultRangedGapCloseMinDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, DefaultRangedGapCloseMaxDistance) == 0x000094, "Member 'UWrestlerRangedAttackConfig::DefaultRangedGapCloseMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, TimeBeforeStartFire) == 0x000098, "Member 'UWrestlerRangedAttackConfig::TimeBeforeStartFire' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, TimeBeforeFiring) == 0x00009C, "Member 'UWrestlerRangedAttackConfig::TimeBeforeFiring' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, GlintMaxLifetime) == 0x0000A0, "Member 'UWrestlerRangedAttackConfig::GlintMaxLifetime' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, GlintIntensity) == 0x0000A4, "Member 'UWrestlerRangedAttackConfig::GlintIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, MinTimeBeforeRangedAttacks) == 0x0000A8, "Member 'UWrestlerRangedAttackConfig::MinTimeBeforeRangedAttacks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedAttackConfig, MaxTimeBeforeRangedAttacks) == 0x0000AC, "Member 'UWrestlerRangedAttackConfig::MaxTimeBeforeRangedAttacks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetEarlyReload \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetEarlyReload) == 0x000001, "Wrong alignment on WrestlerRangedWeaponInstance_GetEarlyReload"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetEarlyReload) == 0x000001, "Wrong size on WrestlerRangedWeaponInstance_GetEarlyReload"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetEarlyReload, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetEarlyReload::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_SetAimRotation \ +static_assert(alignof(WrestlerRangedWeaponInstance_SetAimRotation) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_SetAimRotation"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_SetAimRotation) == 0x000018, "Wrong size on WrestlerRangedWeaponInstance_SetAimRotation"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_SetAimRotation, InAimRotation) == 0x000000, "Member 'WrestlerRangedWeaponInstance_SetAimRotation::InAimRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAimDuration \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAimDuration) == 0x000004, "Wrong alignment on WrestlerRangedWeaponInstance_GetAimDuration"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAimDuration) == 0x000004, "Wrong size on WrestlerRangedWeaponInstance_GetAimDuration"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAimDuration, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAimDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAimRotation \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAimRotation) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAimRotation"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAimRotation) == 0x000018, "Wrong size on WrestlerRangedWeaponInstance_GetAimRotation"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAimRotation, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAimRotation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponAim::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponFire::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponFlyby::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponImpact::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponMelee::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponReload::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetAudioRangedWeaponTail::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetGlintIntensity \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetGlintIntensity) == 0x000004, "Wrong alignment on WrestlerRangedWeaponInstance_GetGlintIntensity"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetGlintIntensity) == 0x000004, "Wrong size on WrestlerRangedWeaponInstance_GetGlintIntensity"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetGlintIntensity, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetGlintIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetMuzzleLocation \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetMuzzleLocation) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetMuzzleLocation"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetMuzzleLocation) == 0x000018, "Wrong size on WrestlerRangedWeaponInstance_GetMuzzleLocation"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetMuzzleLocation, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetMuzzleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetProjectileClass \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetProjectileClass) == 0x000008, "Wrong alignment on WrestlerRangedWeaponInstance_GetProjectileClass"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetProjectileClass) == 0x000008, "Wrong size on WrestlerRangedWeaponInstance_GetProjectileClass"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetProjectileClass, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetProjectileClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetTelegraphDuration \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetTelegraphDuration) == 0x000004, "Wrong alignment on WrestlerRangedWeaponInstance_GetTelegraphDuration"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetTelegraphDuration) == 0x000004, "Wrong size on WrestlerRangedWeaponInstance_GetTelegraphDuration"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetTelegraphDuration, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetTelegraphDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration) == 0x000004, "Wrong alignment on WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration) == 0x000004, "Wrong size on WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetTelegraphHUDEndDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetTelegraphVisualDuration \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetTelegraphVisualDuration) == 0x000004, "Wrong alignment on WrestlerRangedWeaponInstance_GetTelegraphVisualDuration"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetTelegraphVisualDuration) == 0x000004, "Wrong size on WrestlerRangedWeaponInstance_GetTelegraphVisualDuration"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetTelegraphVisualDuration, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetTelegraphVisualDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRangedWeaponInstance_GetWeaponAimTransform \ +static_assert(alignof(WrestlerRangedWeaponInstance_GetWeaponAimTransform) == 0x000010, "Wrong alignment on WrestlerRangedWeaponInstance_GetWeaponAimTransform"); \ +static_assert(sizeof(WrestlerRangedWeaponInstance_GetWeaponAimTransform) == 0x000060, "Wrong size on WrestlerRangedWeaponInstance_GetWeaponAimTransform"); \ +static_assert(offsetof(WrestlerRangedWeaponInstance_GetWeaponAimTransform, ReturnValue) == 0x000000, "Member 'WrestlerRangedWeaponInstance_GetWeaponAimTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRangedWeaponInstance \ +static_assert(alignof(UWrestlerRangedWeaponInstance) == 0x000008, "Wrong alignment on UWrestlerRangedWeaponInstance"); \ +static_assert(sizeof(UWrestlerRangedWeaponInstance) == 0x000200, "Wrong size on UWrestlerRangedWeaponInstance"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxDistanceBeforeRangedPositioning) == 0x0000A0, "Member 'UWrestlerRangedWeaponInstance::MaxDistanceBeforeRangedPositioning' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MinDistanceBeforeMeleeAttack) == 0x0000A4, "Member 'UWrestlerRangedWeaponInstance::MinDistanceBeforeMeleeAttack' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MinRangedDistance) == 0x0000A8, "Member 'UWrestlerRangedWeaponInstance::MinRangedDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxRangedDistance) == 0x0000AC, "Member 'UWrestlerRangedWeaponInstance::MaxRangedDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, TimeSinceRangedReposition) == 0x0000B0, "Member 'UWrestlerRangedWeaponInstance::TimeSinceRangedReposition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, TimeBeforeAim) == 0x0000B4, "Member 'UWrestlerRangedWeaponInstance::TimeBeforeAim' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, ProjectileClass) == 0x0000B8, "Member 'UWrestlerRangedWeaponInstance::ProjectileClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxAmmo) == 0x0000C0, "Member 'UWrestlerRangedWeaponInstance::MaxAmmo' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, ShotsPerBurst) == 0x0000C4, "Member 'UWrestlerRangedWeaponInstance::ShotsPerBurst' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, ShotFireRate) == 0x0000C8, "Member 'UWrestlerRangedWeaponInstance::ShotFireRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, ProjectilesPerShot) == 0x0000CC, "Member 'UWrestlerRangedWeaponInstance::ProjectilesPerShot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, PerfectAccuracyPerProjectile) == 0x0000D0, "Member 'UWrestlerRangedWeaponInstance::PerfectAccuracyPerProjectile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, ProjectileSpeed) == 0x0000D4, "Member 'UWrestlerRangedWeaponInstance::ProjectileSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, DamageTag) == 0x0000D8, "Member 'UWrestlerRangedWeaponInstance::DamageTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, DamagePerProjectile) == 0x0000E0, "Member 'UWrestlerRangedWeaponInstance::DamagePerProjectile' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, InaccuracyType) == 0x0000E4, "Member 'UWrestlerRangedWeaponInstance::InaccuracyType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxInaccuracyInDegrees) == 0x0000E8, "Member 'UWrestlerRangedWeaponInstance::MaxInaccuracyInDegrees' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxInaccuracyPerDistance) == 0x0000F0, "Member 'UWrestlerRangedWeaponInstance::MaxInaccuracyPerDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, SpreadExponent) == 0x000178, "Member 'UWrestlerRangedWeaponInstance::SpreadExponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MaxDamageRange) == 0x00017C, "Member 'UWrestlerRangedWeaponInstance::MaxDamageRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AimDuration) == 0x000180, "Member 'UWrestlerRangedWeaponInstance::AimDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, TelegraphDuration) == 0x000184, "Member 'UWrestlerRangedWeaponInstance::TelegraphDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, TelegraphVisualDuration) == 0x000188, "Member 'UWrestlerRangedWeaponInstance::TelegraphVisualDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, GlintIntensity) == 0x00018C, "Member 'UWrestlerRangedWeaponInstance::GlintIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, TelegraphHUDEndDuration) == 0x000190, "Member 'UWrestlerRangedWeaponInstance::TelegraphHUDEndDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, PreEmptiveReloadTimer) == 0x000194, "Member 'UWrestlerRangedWeaponInstance::PreEmptiveReloadTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, MeleeAttackCooldownDuration) == 0x000198, "Member 'UWrestlerRangedWeaponInstance::MeleeAttackCooldownDuration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponFire) == 0x0001A0, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponFire' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponTail) == 0x0001A8, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponTail' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponFlyby) == 0x0001B0, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponFlyby' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponImpact) == 0x0001B8, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponImpact' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponReload) == 0x0001C0, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponReload' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponMelee) == 0x0001C8, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponMelee' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AudioRangedWeaponAim) == 0x0001D0, "Member 'UWrestlerRangedWeaponInstance::AudioRangedWeaponAim' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRangedWeaponInstance, AimRotation) == 0x0001D8, "Member 'UWrestlerRangedWeaponInstance::AimRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRouteFollowingComponent_GetClosestPathPoint \ +static_assert(alignof(WrestlerRouteFollowingComponent_GetClosestPathPoint) == 0x000008, "Wrong alignment on WrestlerRouteFollowingComponent_GetClosestPathPoint"); \ +static_assert(sizeof(WrestlerRouteFollowingComponent_GetClosestPathPoint) == 0x000020, "Wrong size on WrestlerRouteFollowingComponent_GetClosestPathPoint"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_GetClosestPathPoint, InLocation) == 0x000000, "Member 'WrestlerRouteFollowingComponent_GetClosestPathPoint::InLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_GetClosestPathPoint, ReturnValue) == 0x000018, "Member 'WrestlerRouteFollowingComponent_GetClosestPathPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRouteFollowingComponent_GetNextPathPoint \ +static_assert(alignof(WrestlerRouteFollowingComponent_GetNextPathPoint) == 0x000008, "Wrong alignment on WrestlerRouteFollowingComponent_GetNextPathPoint"); \ +static_assert(sizeof(WrestlerRouteFollowingComponent_GetNextPathPoint) == 0x000008, "Wrong size on WrestlerRouteFollowingComponent_GetNextPathPoint"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_GetNextPathPoint, ReturnValue) == 0x000000, "Member 'WrestlerRouteFollowingComponent_GetNextPathPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRouteFollowingComponent_SetRoute \ +static_assert(alignof(WrestlerRouteFollowingComponent_SetRoute) == 0x000008, "Wrong alignment on WrestlerRouteFollowingComponent_SetRoute"); \ +static_assert(sizeof(WrestlerRouteFollowingComponent_SetRoute) == 0x000008, "Wrong size on WrestlerRouteFollowingComponent_SetRoute"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_SetRoute, InRoute) == 0x000000, "Member 'WrestlerRouteFollowingComponent_SetRoute::InRoute' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRouteFollowingComponent_GetCurrentPathPoint \ +static_assert(alignof(WrestlerRouteFollowingComponent_GetCurrentPathPoint) == 0x000008, "Wrong alignment on WrestlerRouteFollowingComponent_GetCurrentPathPoint"); \ +static_assert(sizeof(WrestlerRouteFollowingComponent_GetCurrentPathPoint) == 0x000008, "Wrong size on WrestlerRouteFollowingComponent_GetCurrentPathPoint"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_GetCurrentPathPoint, ReturnValue) == 0x000000, "Member 'WrestlerRouteFollowingComponent_GetCurrentPathPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRouteFollowingComponent_GetRoute \ +static_assert(alignof(WrestlerRouteFollowingComponent_GetRoute) == 0x000008, "Wrong alignment on WrestlerRouteFollowingComponent_GetRoute"); \ +static_assert(sizeof(WrestlerRouteFollowingComponent_GetRoute) == 0x000008, "Wrong size on WrestlerRouteFollowingComponent_GetRoute"); \ +static_assert(offsetof(WrestlerRouteFollowingComponent_GetRoute, ReturnValue) == 0x000000, "Member 'WrestlerRouteFollowingComponent_GetRoute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRouteFollowingComponent \ +static_assert(alignof(UWrestlerRouteFollowingComponent) == 0x000008, "Wrong alignment on UWrestlerRouteFollowingComponent"); \ +static_assert(sizeof(UWrestlerRouteFollowingComponent) == 0x0000B0, "Wrong size on UWrestlerRouteFollowingComponent"); \ +static_assert(offsetof(UWrestlerRouteFollowingComponent, Route) == 0x0000A0, "Member 'UWrestlerRouteFollowingComponent::Route' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenu_GetTabByID \ +static_assert(alignof(WrestlerRPGMenu_GetTabByID) == 0x000008, "Wrong alignment on WrestlerRPGMenu_GetTabByID"); \ +static_assert(sizeof(WrestlerRPGMenu_GetTabByID) == 0x000010, "Wrong size on WrestlerRPGMenu_GetTabByID"); \ +static_assert(offsetof(WrestlerRPGMenu_GetTabByID, InTabID) == 0x000000, "Member 'WrestlerRPGMenu_GetTabByID::InTabID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenu_GetTabByID, ReturnValue) == 0x000008, "Member 'WrestlerRPGMenu_GetTabByID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenu_OnCategoryButtonPressed \ +static_assert(alignof(WrestlerRPGMenu_OnCategoryButtonPressed) == 0x000008, "Wrong alignment on WrestlerRPGMenu_OnCategoryButtonPressed"); \ +static_assert(sizeof(WrestlerRPGMenu_OnCategoryButtonPressed) == 0x000008, "Wrong size on WrestlerRPGMenu_OnCategoryButtonPressed"); \ +static_assert(offsetof(WrestlerRPGMenu_OnCategoryButtonPressed, InWidget) == 0x000000, "Member 'WrestlerRPGMenu_OnCategoryButtonPressed::InWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenu_OnWidgetIndexChanged \ +static_assert(alignof(WrestlerRPGMenu_OnWidgetIndexChanged) == 0x000004, "Wrong alignment on WrestlerRPGMenu_OnWidgetIndexChanged"); \ +static_assert(sizeof(WrestlerRPGMenu_OnWidgetIndexChanged) == 0x000008, "Wrong size on WrestlerRPGMenu_OnWidgetIndexChanged"); \ +static_assert(offsetof(WrestlerRPGMenu_OnWidgetIndexChanged, OldIndex) == 0x000000, "Member 'WrestlerRPGMenu_OnWidgetIndexChanged::OldIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenu_OnWidgetIndexChanged, NewIndex) == 0x000004, "Member 'WrestlerRPGMenu_OnWidgetIndexChanged::NewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenu_OpenTabByID \ +static_assert(alignof(WrestlerRPGMenu_OpenTabByID) == 0x000001, "Wrong alignment on WrestlerRPGMenu_OpenTabByID"); \ +static_assert(sizeof(WrestlerRPGMenu_OpenTabByID) == 0x000001, "Wrong size on WrestlerRPGMenu_OpenTabByID"); \ +static_assert(offsetof(WrestlerRPGMenu_OpenTabByID, InTabID) == 0x000000, "Member 'WrestlerRPGMenu_OpenTabByID::InTabID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenu_SetTabAvailable \ +static_assert(alignof(WrestlerRPGMenu_SetTabAvailable) == 0x000001, "Wrong alignment on WrestlerRPGMenu_SetTabAvailable"); \ +static_assert(sizeof(WrestlerRPGMenu_SetTabAvailable) == 0x000002, "Wrong size on WrestlerRPGMenu_SetTabAvailable"); \ +static_assert(offsetof(WrestlerRPGMenu_SetTabAvailable, InTabID) == 0x000000, "Member 'WrestlerRPGMenu_SetTabAvailable::InTabID' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenu_SetTabAvailable, InState) == 0x000001, "Member 'WrestlerRPGMenu_SetTabAvailable::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenu \ +static_assert(alignof(UWrestlerRPGMenu) == 0x000008, "Wrong alignment on UWrestlerRPGMenu"); \ +static_assert(sizeof(UWrestlerRPGMenu) == 0x0003A0, "Wrong size on UWrestlerRPGMenu"); \ +static_assert(offsetof(UWrestlerRPGMenu, RPGMenuData) == 0x000300, "Member 'UWrestlerRPGMenu::RPGMenuData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, TabButtonClass) == 0x000310, "Member 'UWrestlerRPGMenu::TabButtonClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, TabSelector) == 0x000318, "Member 'UWrestlerRPGMenu::TabSelector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, TabContainer) == 0x000320, "Member 'UWrestlerRPGMenu::TabContainer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, EditorTabFocus) == 0x000328, "Member 'UWrestlerRPGMenu::EditorTabFocus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, bHasPopupOpen) == 0x000329, "Member 'UWrestlerRPGMenu::bHasPopupOpen' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, FocusTargetButton) == 0x000330, "Member 'UWrestlerRPGMenu::FocusTargetButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenu, TabIDAndIndex) == 0x000338, "Member 'UWrestlerRPGMenu::TabIDAndIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuButton \ +static_assert(alignof(UWrestlerRPGMenuButton) == 0x000010, "Wrong alignment on UWrestlerRPGMenuButton"); \ +static_assert(sizeof(UWrestlerRPGMenuButton) == 0x000B10, "Wrong size on UWrestlerRPGMenuButton"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, ButtonSwitcher) == 0x0002C8, "Member 'UWrestlerRPGMenuButton::ButtonSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, TabWidget) == 0x0002D0, "Member 'UWrestlerRPGMenuButton::TabWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, ButtonText) == 0x0002D8, "Member 'UWrestlerRPGMenuButton::ButtonText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, ButtonBody) == 0x0002E0, "Member 'UWrestlerRPGMenuButton::ButtonBody' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, Label) == 0x0002E8, "Member 'UWrestlerRPGMenuButton::Label' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, HighlightColour) == 0x0002F8, "Member 'UWrestlerRPGMenuButton::HighlightColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, HighlightStyle) == 0x000310, "Member 'UWrestlerRPGMenuButton::HighlightStyle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, NormalColour) == 0x000700, "Member 'UWrestlerRPGMenuButton::NormalColour' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuButton, NormalStyle) == 0x000720, "Member 'UWrestlerRPGMenuButton::NormalStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuSelectorWidget_GetTabButton \ +static_assert(alignof(WrestlerRPGMenuSelectorWidget_GetTabButton) == 0x000008, "Wrong alignment on WrestlerRPGMenuSelectorWidget_GetTabButton"); \ +static_assert(sizeof(WrestlerRPGMenuSelectorWidget_GetTabButton) == 0x000010, "Wrong size on WrestlerRPGMenuSelectorWidget_GetTabButton"); \ +static_assert(offsetof(WrestlerRPGMenuSelectorWidget_GetTabButton, InIndex) == 0x000000, "Member 'WrestlerRPGMenuSelectorWidget_GetTabButton::InIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenuSelectorWidget_GetTabButton, ReturnValue) == 0x000008, "Member 'WrestlerRPGMenuSelectorWidget_GetTabButton::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerRPGMenuSelectorWidget_GetTabIndex \ +static_assert(alignof(WrestlerRPGMenuSelectorWidget_GetTabIndex) == 0x000008, "Wrong alignment on WrestlerRPGMenuSelectorWidget_GetTabIndex"); \ +static_assert(sizeof(WrestlerRPGMenuSelectorWidget_GetTabIndex) == 0x000010, "Wrong size on WrestlerRPGMenuSelectorWidget_GetTabIndex"); \ +static_assert(offsetof(WrestlerRPGMenuSelectorWidget_GetTabIndex, InWidget) == 0x000000, "Member 'WrestlerRPGMenuSelectorWidget_GetTabIndex::InWidget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerRPGMenuSelectorWidget_GetTabIndex, ReturnValue) == 0x000008, "Member 'WrestlerRPGMenuSelectorWidget_GetTabIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuSelectorWidget \ +static_assert(alignof(UWrestlerRPGMenuSelectorWidget) == 0x000008, "Wrong alignment on UWrestlerRPGMenuSelectorWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuSelectorWidget) == 0x000340, "Wrong size on UWrestlerRPGMenuSelectorWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuSelectorWidget, LeftAction) == 0x0002C8, "Member 'UWrestlerRPGMenuSelectorWidget::LeftAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuSelectorWidget, RightAction) == 0x0002D0, "Member 'UWrestlerRPGMenuSelectorWidget::RightAction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuSelectorWidget, MarginPerElementInButtonTab) == 0x0002D8, "Member 'UWrestlerRPGMenuSelectorWidget::MarginPerElementInButtonTab' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuSelectorWidget, ButtonBox) == 0x0002E8, "Member 'UWrestlerRPGMenuSelectorWidget::ButtonBox' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerRPGMenuSelectorWidget, IndexAndTabButtonReference) == 0x0002F0, "Member 'UWrestlerRPGMenuSelectorWidget::IndexAndTabButtonReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerRPGMenuSettingsTabWidget \ +static_assert(alignof(UWrestlerRPGMenuSettingsTabWidget) == 0x000008, "Wrong alignment on UWrestlerRPGMenuSettingsTabWidget"); \ +static_assert(sizeof(UWrestlerRPGMenuSettingsTabWidget) == 0x000498, "Wrong size on UWrestlerRPGMenuSettingsTabWidget"); \ +static_assert(offsetof(UWrestlerRPGMenuSettingsTabWidget, SettingScreen) == 0x000490, "Member 'UWrestlerRPGMenuSettingsTabWidget::SettingScreen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility \ +static_assert(alignof(WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility) == 0x000001, "Wrong alignment on WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility"); \ +static_assert(sizeof(WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility) == 0x000001, "Wrong size on WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility"); \ +static_assert(offsetof(WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility, InPromptMode) == 0x000000, "Member 'WrestlerSavedDataPromptWidget_ToggleDataPromptButtonsVisibility::InPromptMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSavedDataPromptWidget \ +static_assert(alignof(UWrestlerSavedDataPromptWidget) == 0x000008, "Wrong alignment on UWrestlerSavedDataPromptWidget"); \ +static_assert(sizeof(UWrestlerSavedDataPromptWidget) == 0x000310, "Wrong size on UWrestlerSavedDataPromptWidget"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, DefaulAreatTexture) == 0x0002C8, "Member 'UWrestlerSavedDataPromptWidget::DefaulAreatTexture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, OverwriteSaveButton) == 0x0002D0, "Member 'UWrestlerSavedDataPromptWidget::OverwriteSaveButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, DeleteSaveButton) == 0x0002D8, "Member 'UWrestlerSavedDataPromptWidget::DeleteSaveButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, LoadSaveButton) == 0x0002E0, "Member 'UWrestlerSavedDataPromptWidget::LoadSaveButton' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, CurrentQuestNameText) == 0x0002E8, "Member 'UWrestlerSavedDataPromptWidget::CurrentQuestNameText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, QuestDescriptionText) == 0x0002F0, "Member 'UWrestlerSavedDataPromptWidget::QuestDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, LocationNameText) == 0x0002F8, "Member 'UWrestlerSavedDataPromptWidget::LocationNameText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, PlayTimeText) == 0x000300, "Member 'UWrestlerSavedDataPromptWidget::PlayTimeText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavedDataPromptWidget, AreaImage) == 0x000308, "Member 'UWrestlerSavedDataPromptWidget::AreaImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameMetadata \ +static_assert(alignof(UWrestlerSaveGameMetadata) == 0x000008, "Wrong alignment on UWrestlerSaveGameMetadata"); \ +static_assert(sizeof(UWrestlerSaveGameMetadata) == 0x0000E8, "Wrong size on UWrestlerSaveGameMetadata"); \ +static_assert(offsetof(UWrestlerSaveGameMetadata, LastLoadedSaveSlot) == 0x000088, "Member 'UWrestlerSaveGameMetadata::LastLoadedSaveSlot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameMetadata, MetaData) == 0x000098, "Member 'UWrestlerSaveGameMetadata::MetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveGameV2 \ +static_assert(alignof(UWrestlerSaveGameV2) == 0x000008, "Wrong alignment on UWrestlerSaveGameV2"); \ +static_assert(sizeof(UWrestlerSaveGameV2) == 0x0005F8, "Wrong size on UWrestlerSaveGameV2"); \ +static_assert(offsetof(UWrestlerSaveGameV2, AutomataData) == 0x000088, "Member 'UWrestlerSaveGameV2::AutomataData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, PropertyStorageData) == 0x0000A8, "Member 'UWrestlerSaveGameV2::PropertyStorageData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, PlaythroughData) == 0x000288, "Member 'UWrestlerSaveGameV2::PlaythroughData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, PlayerData) == 0x0002F8, "Member 'UWrestlerSaveGameV2::PlayerData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, LevelData) == 0x000390, "Member 'UWrestlerSaveGameV2::LevelData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, QuestProgressData) == 0x000410, "Member 'UWrestlerSaveGameV2::QuestProgressData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, ObjectTaggingData) == 0x000468, "Member 'UWrestlerSaveGameV2::ObjectTaggingData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, DialogueData) == 0x0004B8, "Member 'UWrestlerSaveGameV2::DialogueData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, UIData) == 0x000508, "Member 'UWrestlerSaveGameV2::UIData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveGameV2, ActorVisibilities) == 0x0005A8, "Member 'UWrestlerSaveGameV2::ActorVisibilities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSavePerPlatformSettings \ +static_assert(alignof(UWrestlerSavePerPlatformSettings) == 0x000008, "Wrong alignment on UWrestlerSavePerPlatformSettings"); \ +static_assert(sizeof(UWrestlerSavePerPlatformSettings) == 0x000058, "Wrong size on UWrestlerSavePerPlatformSettings"); \ +static_assert(offsetof(UWrestlerSavePerPlatformSettings, MaxSaveSize) == 0x000040, "Member 'UWrestlerSavePerPlatformSettings::MaxSaveSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavePerPlatformSettings, TotalSaveSizeLimit) == 0x000044, "Member 'UWrestlerSavePerPlatformSettings::TotalSaveSizeLimit' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSavePerPlatformSettings, SaveGameIconPath) == 0x000048, "Member 'UWrestlerSavePerPlatformSettings::SaveGameIconPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_LoadGame \ +static_assert(alignof(WrestlerSaveSubsystem_LoadGame) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_LoadGame"); \ +static_assert(sizeof(WrestlerSaveSubsystem_LoadGame) == 0x000010, "Wrong size on WrestlerSaveSubsystem_LoadGame"); \ +static_assert(offsetof(WrestlerSaveSubsystem_LoadGame, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_LoadGame::InSaveSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_LoadGameAsync \ +static_assert(alignof(WrestlerSaveSubsystem_LoadGameAsync) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_LoadGameAsync"); \ +static_assert(sizeof(WrestlerSaveSubsystem_LoadGameAsync) == 0x000010, "Wrong size on WrestlerSaveSubsystem_LoadGameAsync"); \ +static_assert(offsetof(WrestlerSaveSubsystem_LoadGameAsync, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_LoadGameAsync::InSaveSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_LoadGameIsPermitted \ +static_assert(alignof(WrestlerSaveSubsystem_LoadGameIsPermitted) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_LoadGameIsPermitted"); \ +static_assert(sizeof(WrestlerSaveSubsystem_LoadGameIsPermitted) == 0x000018, "Wrong size on WrestlerSaveSubsystem_LoadGameIsPermitted"); \ +static_assert(offsetof(WrestlerSaveSubsystem_LoadGameIsPermitted, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_LoadGameIsPermitted::InSaveSlot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSaveSubsystem_LoadGameIsPermitted, ReturnValue) == 0x000010, "Member 'WrestlerSaveSubsystem_LoadGameIsPermitted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_NewGame \ +static_assert(alignof(WrestlerSaveSubsystem_NewGame) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_NewGame"); \ +static_assert(sizeof(WrestlerSaveSubsystem_NewGame) == 0x000008, "Wrong size on WrestlerSaveSubsystem_NewGame"); \ +static_assert(offsetof(WrestlerSaveSubsystem_NewGame, InLoadingScreenPreset) == 0x000000, "Member 'WrestlerSaveSubsystem_NewGame::InLoadingScreenPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_PlayerOwnsClanDlc \ +static_assert(alignof(WrestlerSaveSubsystem_PlayerOwnsClanDlc) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_PlayerOwnsClanDlc"); \ +static_assert(sizeof(WrestlerSaveSubsystem_PlayerOwnsClanDlc) == 0x000001, "Wrong size on WrestlerSaveSubsystem_PlayerOwnsClanDlc"); \ +static_assert(offsetof(WrestlerSaveSubsystem_PlayerOwnsClanDlc, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_PlayerOwnsClanDlc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_SaveAutosave \ +static_assert(alignof(WrestlerSaveSubsystem_SaveAutosave) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_SaveAutosave"); \ +static_assert(sizeof(WrestlerSaveSubsystem_SaveAutosave) == 0x000001, "Wrong size on WrestlerSaveSubsystem_SaveAutosave"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveAutosave, InSaveScope) == 0x000000, "Member 'WrestlerSaveSubsystem_SaveAutosave::InSaveScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_SaveAutosaveAsync \ +static_assert(alignof(WrestlerSaveSubsystem_SaveAutosaveAsync) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_SaveAutosaveAsync"); \ +static_assert(sizeof(WrestlerSaveSubsystem_SaveAutosaveAsync) == 0x000001, "Wrong size on WrestlerSaveSubsystem_SaveAutosaveAsync"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveAutosaveAsync, InSaveScope) == 0x000000, "Member 'WrestlerSaveSubsystem_SaveAutosaveAsync::InSaveScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_SaveGame \ +static_assert(alignof(WrestlerSaveSubsystem_SaveGame) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_SaveGame"); \ +static_assert(sizeof(WrestlerSaveSubsystem_SaveGame) == 0x000018, "Wrong size on WrestlerSaveSubsystem_SaveGame"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveGame, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_SaveGame::InSaveSlot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveGame, InSaveScope) == 0x000010, "Member 'WrestlerSaveSubsystem_SaveGame::InSaveScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_SaveGameAsync \ +static_assert(alignof(WrestlerSaveSubsystem_SaveGameAsync) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_SaveGameAsync"); \ +static_assert(sizeof(WrestlerSaveSubsystem_SaveGameAsync) == 0x000018, "Wrong size on WrestlerSaveSubsystem_SaveGameAsync"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveGameAsync, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_SaveGameAsync::InSaveSlot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveGameAsync, InSaveScope) == 0x000010, "Member 'WrestlerSaveSubsystem_SaveGameAsync::InSaveScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_SaveGameInMemory \ +static_assert(alignof(WrestlerSaveSubsystem_SaveGameInMemory) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_SaveGameInMemory"); \ +static_assert(sizeof(WrestlerSaveSubsystem_SaveGameInMemory) == 0x000001, "Wrong size on WrestlerSaveSubsystem_SaveGameInMemory"); \ +static_assert(offsetof(WrestlerSaveSubsystem_SaveGameInMemory, InSaveScope) == 0x000000, "Member 'WrestlerSaveSubsystem_SaveGameInMemory::InSaveScope' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_DoesAutosaveExist \ +static_assert(alignof(WrestlerSaveSubsystem_DoesAutosaveExist) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_DoesAutosaveExist"); \ +static_assert(sizeof(WrestlerSaveSubsystem_DoesAutosaveExist) == 0x000001, "Wrong size on WrestlerSaveSubsystem_DoesAutosaveExist"); \ +static_assert(offsetof(WrestlerSaveSubsystem_DoesAutosaveExist, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_DoesAutosaveExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_DoesSaveExist \ +static_assert(alignof(WrestlerSaveSubsystem_DoesSaveExist) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_DoesSaveExist"); \ +static_assert(sizeof(WrestlerSaveSubsystem_DoesSaveExist) == 0x000018, "Wrong size on WrestlerSaveSubsystem_DoesSaveExist"); \ +static_assert(offsetof(WrestlerSaveSubsystem_DoesSaveExist, InSaveSlot) == 0x000000, "Member 'WrestlerSaveSubsystem_DoesSaveExist::InSaveSlot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSaveSubsystem_DoesSaveExist, ReturnValue) == 0x000010, "Member 'WrestlerSaveSubsystem_DoesSaveExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_GetLastLoadedSaveSlot \ +static_assert(alignof(WrestlerSaveSubsystem_GetLastLoadedSaveSlot) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_GetLastLoadedSaveSlot"); \ +static_assert(sizeof(WrestlerSaveSubsystem_GetLastLoadedSaveSlot) == 0x000010, "Wrong size on WrestlerSaveSubsystem_GetLastLoadedSaveSlot"); \ +static_assert(offsetof(WrestlerSaveSubsystem_GetLastLoadedSaveSlot, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_GetLastLoadedSaveSlot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_GetSaveGamesMetadata \ +static_assert(alignof(WrestlerSaveSubsystem_GetSaveGamesMetadata) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_GetSaveGamesMetadata"); \ +static_assert(sizeof(WrestlerSaveSubsystem_GetSaveGamesMetadata) == 0x000050, "Wrong size on WrestlerSaveSubsystem_GetSaveGamesMetadata"); \ +static_assert(offsetof(WrestlerSaveSubsystem_GetSaveGamesMetadata, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_GetSaveGamesMetadata::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_GetSaveNames \ +static_assert(alignof(WrestlerSaveSubsystem_GetSaveNames) == 0x000008, "Wrong alignment on WrestlerSaveSubsystem_GetSaveNames"); \ +static_assert(sizeof(WrestlerSaveSubsystem_GetSaveNames) == 0x000010, "Wrong size on WrestlerSaveSubsystem_GetSaveNames"); \ +static_assert(offsetof(WrestlerSaveSubsystem_GetSaveNames, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_GetSaveNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_HasAnySave \ +static_assert(alignof(WrestlerSaveSubsystem_HasAnySave) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_HasAnySave"); \ +static_assert(sizeof(WrestlerSaveSubsystem_HasAnySave) == 0x000001, "Wrong size on WrestlerSaveSubsystem_HasAnySave"); \ +static_assert(offsetof(WrestlerSaveSubsystem_HasAnySave, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_HasAnySave::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_IsLastLoadedSaveNameValid \ +static_assert(alignof(WrestlerSaveSubsystem_IsLastLoadedSaveNameValid) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_IsLastLoadedSaveNameValid"); \ +static_assert(sizeof(WrestlerSaveSubsystem_IsLastLoadedSaveNameValid) == 0x000001, "Wrong size on WrestlerSaveSubsystem_IsLastLoadedSaveNameValid"); \ +static_assert(offsetof(WrestlerSaveSubsystem_IsLastLoadedSaveNameValid, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_IsLastLoadedSaveNameValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_IsSaveInProgress \ +static_assert(alignof(WrestlerSaveSubsystem_IsSaveInProgress) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_IsSaveInProgress"); \ +static_assert(sizeof(WrestlerSaveSubsystem_IsSaveInProgress) == 0x000001, "Wrong size on WrestlerSaveSubsystem_IsSaveInProgress"); \ +static_assert(offsetof(WrestlerSaveSubsystem_IsSaveInProgress, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_IsSaveInProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSaveSubsystem_IsSaveLoaded \ +static_assert(alignof(WrestlerSaveSubsystem_IsSaveLoaded) == 0x000001, "Wrong alignment on WrestlerSaveSubsystem_IsSaveLoaded"); \ +static_assert(sizeof(WrestlerSaveSubsystem_IsSaveLoaded) == 0x000001, "Wrong size on WrestlerSaveSubsystem_IsSaveLoaded"); \ +static_assert(offsetof(WrestlerSaveSubsystem_IsSaveLoaded, ReturnValue) == 0x000000, "Member 'WrestlerSaveSubsystem_IsSaveLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSaveSubsystem \ +static_assert(alignof(UWrestlerSaveSubsystem) == 0x000008, "Wrong alignment on UWrestlerSaveSubsystem"); \ +static_assert(sizeof(UWrestlerSaveSubsystem) == 0x0000A0, "Wrong size on UWrestlerSaveSubsystem"); \ +static_assert(offsetof(UWrestlerSaveSubsystem, OnPreSave) == 0x000060, "Member 'UWrestlerSaveSubsystem::OnPreSave' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSaveSubsystem, OnPostSave) == 0x000070, "Member 'UWrestlerSaveSubsystem::OnPostSave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSeamlessTransitionHelper \ +static_assert(alignof(UWrestlerSeamlessTransitionHelper) == 0x000008, "Wrong alignment on UWrestlerSeamlessTransitionHelper"); \ +static_assert(sizeof(UWrestlerSeamlessTransitionHelper) == 0x000028, "Wrong size on UWrestlerSeamlessTransitionHelper"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_BindActorDelegates \ +static_assert(alignof(WrestlerSearchRouteManager_BindActorDelegates) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_BindActorDelegates"); \ +static_assert(sizeof(WrestlerSearchRouteManager_BindActorDelegates) == 0x000008, "Wrong size on WrestlerSearchRouteManager_BindActorDelegates"); \ +static_assert(offsetof(WrestlerSearchRouteManager_BindActorDelegates, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_BindActorDelegates::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_ExitSearchState \ +static_assert(alignof(WrestlerSearchRouteManager_ExitSearchState) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_ExitSearchState"); \ +static_assert(sizeof(WrestlerSearchRouteManager_ExitSearchState) == 0x000008, "Wrong size on WrestlerSearchRouteManager_ExitSearchState"); \ +static_assert(offsetof(WrestlerSearchRouteManager_ExitSearchState, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_ExitSearchState::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_FinishSearchRoute \ +static_assert(alignof(WrestlerSearchRouteManager_FinishSearchRoute) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_FinishSearchRoute"); \ +static_assert(sizeof(WrestlerSearchRouteManager_FinishSearchRoute) == 0x000008, "Wrong size on WrestlerSearchRouteManager_FinishSearchRoute"); \ +static_assert(offsetof(WrestlerSearchRouteManager_FinishSearchRoute, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_FinishSearchRoute::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_HasRouteAssigned \ +static_assert(alignof(WrestlerSearchRouteManager_HasRouteAssigned) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_HasRouteAssigned"); \ +static_assert(sizeof(WrestlerSearchRouteManager_HasRouteAssigned) == 0x000010, "Wrong size on WrestlerSearchRouteManager_HasRouteAssigned"); \ +static_assert(offsetof(WrestlerSearchRouteManager_HasRouteAssigned, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_HasRouteAssigned::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchRouteManager_HasRouteAssigned, ReturnValue) == 0x000008, "Member 'WrestlerSearchRouteManager_HasRouteAssigned::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_RemoveDeadActor \ +static_assert(alignof(WrestlerSearchRouteManager_RemoveDeadActor) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_RemoveDeadActor"); \ +static_assert(sizeof(WrestlerSearchRouteManager_RemoveDeadActor) == 0x000008, "Wrong size on WrestlerSearchRouteManager_RemoveDeadActor"); \ +static_assert(offsetof(WrestlerSearchRouteManager_RemoveDeadActor, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_RemoveDeadActor::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSearchRouteManager_StartSearchRoute \ +static_assert(alignof(WrestlerSearchRouteManager_StartSearchRoute) == 0x000008, "Wrong alignment on WrestlerSearchRouteManager_StartSearchRoute"); \ +static_assert(sizeof(WrestlerSearchRouteManager_StartSearchRoute) == 0x000018, "Wrong size on WrestlerSearchRouteManager_StartSearchRoute"); \ +static_assert(offsetof(WrestlerSearchRouteManager_StartSearchRoute, InActor) == 0x000000, "Member 'WrestlerSearchRouteManager_StartSearchRoute::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchRouteManager_StartSearchRoute, InSearchRadius) == 0x000008, "Member 'WrestlerSearchRouteManager_StartSearchRoute::InSearchRadius' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSearchRouteManager_StartSearchRoute, ReturnValue) == 0x000010, "Member 'WrestlerSearchRouteManager_StartSearchRoute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSearchRouteManager \ +static_assert(alignof(UWrestlerSearchRouteManager) == 0x000008, "Wrong alignment on UWrestlerSearchRouteManager"); \ +static_assert(sizeof(UWrestlerSearchRouteManager) == 0x000080, "Wrong size on UWrestlerSearchRouteManager"); \ +static_assert(offsetof(UWrestlerSearchRouteManager, ActiveActors) == 0x000030, "Member 'UWrestlerSearchRouteManager::ActiveActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSequenceBlendAnimInstance_SequenceDataChanged \ +static_assert(alignof(WrestlerSequenceBlendAnimInstance_SequenceDataChanged) == 0x000010, "Wrong alignment on WrestlerSequenceBlendAnimInstance_SequenceDataChanged"); \ +static_assert(sizeof(WrestlerSequenceBlendAnimInstance_SequenceDataChanged) == 0x000080, "Wrong size on WrestlerSequenceBlendAnimInstance_SequenceDataChanged"); \ +static_assert(offsetof(WrestlerSequenceBlendAnimInstance_SequenceDataChanged, InNewValue) == 0x000000, "Member 'WrestlerSequenceBlendAnimInstance_SequenceDataChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSequenceBlendAnimInstance \ +static_assert(alignof(UWrestlerSequenceBlendAnimInstance) == 0x000010, "Wrong alignment on UWrestlerSequenceBlendAnimInstance"); \ +static_assert(sizeof(UWrestlerSequenceBlendAnimInstance) == 0x000380, "Wrong size on UWrestlerSequenceBlendAnimInstance"); \ + +#define DUMPER7_ASSERTS_WrestlerSetQuestStatusAutomataTask_GetQuestObjectives \ +static_assert(alignof(WrestlerSetQuestStatusAutomataTask_GetQuestObjectives) == 0x000008, "Wrong alignment on WrestlerSetQuestStatusAutomataTask_GetQuestObjectives"); \ +static_assert(sizeof(WrestlerSetQuestStatusAutomataTask_GetQuestObjectives) == 0x000010, "Wrong size on WrestlerSetQuestStatusAutomataTask_GetQuestObjectives"); \ +static_assert(offsetof(WrestlerSetQuestStatusAutomataTask_GetQuestObjectives, ReturnValue) == 0x000000, "Member 'WrestlerSetQuestStatusAutomataTask_GetQuestObjectives::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSetQuestStatusAutomataTask \ +static_assert(alignof(UWrestlerSetQuestStatusAutomataTask) == 0x000008, "Wrong alignment on UWrestlerSetQuestStatusAutomataTask"); \ +static_assert(sizeof(UWrestlerSetQuestStatusAutomataTask) == 0x0000F8, "Wrong size on UWrestlerSetQuestStatusAutomataTask"); \ +static_assert(offsetof(UWrestlerSetQuestStatusAutomataTask, QuestData) == 0x000088, "Member 'UWrestlerSetQuestStatusAutomataTask::QuestData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSetQuestStatusAutomataTask, bOverrideInitialObjective) == 0x000090, "Member 'UWrestlerSetQuestStatusAutomataTask::bOverrideInitialObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSetQuestStatusAutomataTask, OverrideInitialObjective) == 0x000098, "Member 'UWrestlerSetQuestStatusAutomataTask::OverrideInitialObjective' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSetQuestStatusAutomataTask, AdditionalObjectives) == 0x0000A8, "Member 'UWrestlerSetQuestStatusAutomataTask::AdditionalObjectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingValueScalarDynamic_SafeZoneValue \ +static_assert(alignof(UWrestlerSettingValueScalarDynamic_SafeZoneValue) == 0x000008, "Wrong alignment on UWrestlerSettingValueScalarDynamic_SafeZoneValue"); \ +static_assert(sizeof(UWrestlerSettingValueScalarDynamic_SafeZoneValue) == 0x000250, "Wrong size on UWrestlerSettingValueScalarDynamic_SafeZoneValue"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled \ +static_assert(alignof(WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled) == 0x000001, "Wrong alignment on WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled"); \ +static_assert(sizeof(WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled) == 0x000001, "Wrong size on WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled"); \ +static_assert(offsetof(WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled, bConfirm) == 0x000000, "Member 'WrestlerSettingScreen_HandleRestoreSettingConfirmationHandled::bConfirm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingScreen_HandleSettingConfirmationHandled \ +static_assert(alignof(WrestlerSettingScreen_HandleSettingConfirmationHandled) == 0x000001, "Wrong alignment on WrestlerSettingScreen_HandleSettingConfirmationHandled"); \ +static_assert(sizeof(WrestlerSettingScreen_HandleSettingConfirmationHandled) == 0x000001, "Wrong size on WrestlerSettingScreen_HandleSettingConfirmationHandled"); \ +static_assert(offsetof(WrestlerSettingScreen_HandleSettingConfirmationHandled, bConfirm) == 0x000000, "Member 'WrestlerSettingScreen_HandleSettingConfirmationHandled::bConfirm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingScreen_RegisterTab \ +static_assert(alignof(WrestlerSettingScreen_RegisterTab) == 0x000004, "Wrong alignment on WrestlerSettingScreen_RegisterTab"); \ +static_assert(sizeof(WrestlerSettingScreen_RegisterTab) == 0x000008, "Wrong size on WrestlerSettingScreen_RegisterTab"); \ +static_assert(offsetof(WrestlerSettingScreen_RegisterTab, InSettingDevName) == 0x000000, "Member 'WrestlerSettingScreen_RegisterTab::InSettingDevName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingScreen_ResolveSelectedWidgetSetting \ +static_assert(alignof(WrestlerSettingScreen_ResolveSelectedWidgetSetting) == 0x000008, "Wrong alignment on WrestlerSettingScreen_ResolveSelectedWidgetSetting"); \ +static_assert(sizeof(WrestlerSettingScreen_ResolveSelectedWidgetSetting) == 0x000008, "Wrong size on WrestlerSettingScreen_ResolveSelectedWidgetSetting"); \ +static_assert(offsetof(WrestlerSettingScreen_ResolveSelectedWidgetSetting, Widget) == 0x000000, "Member 'WrestlerSettingScreen_ResolveSelectedWidgetSetting::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingScreen_GetSettingCollectionName \ +static_assert(alignof(WrestlerSettingScreen_GetSettingCollectionName) == 0x000004, "Wrong alignment on WrestlerSettingScreen_GetSettingCollectionName"); \ +static_assert(sizeof(WrestlerSettingScreen_GetSettingCollectionName) == 0x000008, "Wrong size on WrestlerSettingScreen_GetSettingCollectionName"); \ +static_assert(offsetof(WrestlerSettingScreen_GetSettingCollectionName, ReturnValue) == 0x000000, "Member 'WrestlerSettingScreen_GetSettingCollectionName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingScreen \ +static_assert(alignof(UWrestlerSettingScreen) == 0x000008, "Wrong alignment on UWrestlerSettingScreen"); \ +static_assert(sizeof(UWrestlerSettingScreen) == 0x000560, "Wrong size on UWrestlerSettingScreen"); \ +static_assert(offsetof(UWrestlerSettingScreen, SettingsConfirmationHandled) == 0x000480, "Member 'UWrestlerSettingScreen::SettingsConfirmationHandled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, SettingsRestoreConfirmationHandled) == 0x000490, "Member 'UWrestlerSettingScreen::SettingsRestoreConfirmationHandled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, PlayerMappingContext) == 0x0004A0, "Member 'UWrestlerSettingScreen::PlayerMappingContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, ControlsDisplayData) == 0x0004A8, "Member 'UWrestlerSettingScreen::ControlsDisplayData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, BackInputActionData) == 0x0004B0, "Member 'UWrestlerSettingScreen::BackInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, ApplyInputActionData) == 0x0004C0, "Member 'UWrestlerSettingScreen::ApplyInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, CancelChangesInputActionData) == 0x0004D0, "Member 'UWrestlerSettingScreen::CancelChangesInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, RestoreInputActionData) == 0x0004E0, "Member 'UWrestlerSettingScreen::RestoreInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, EnterInputActionData) == 0x0004F0, "Member 'UWrestlerSettingScreen::EnterInputActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, ScrollInputNavigationtActionData) == 0x000500, "Member 'UWrestlerSettingScreen::ScrollInputNavigationtActionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingScreen, SettingCollectionName) == 0x000550, "Member 'UWrestlerSettingScreen::SettingCollectionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetSubtitlesBackgroundAlpha \ +static_assert(alignof(WrestlerSettingsShared_GetSubtitlesBackgroundAlpha) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetSubtitlesBackgroundAlpha"); \ +static_assert(sizeof(WrestlerSettingsShared_GetSubtitlesBackgroundAlpha) == 0x000004, "Wrong size on WrestlerSettingsShared_GetSubtitlesBackgroundAlpha"); \ +static_assert(offsetof(WrestlerSettingsShared_GetSubtitlesBackgroundAlpha, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetSubtitlesBackgroundAlpha::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetVibrationAmount \ +static_assert(alignof(WrestlerSettingsShared_GetVibrationAmount) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetVibrationAmount"); \ +static_assert(sizeof(WrestlerSettingsShared_GetVibrationAmount) == 0x000004, "Wrong size on WrestlerSettingsShared_GetVibrationAmount"); \ +static_assert(offsetof(WrestlerSettingsShared_GetVibrationAmount, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetVibrationAmount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetAllowAudioInBackgroundSetting \ +static_assert(alignof(WrestlerSettingsShared_SetAllowAudioInBackgroundSetting) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetAllowAudioInBackgroundSetting"); \ +static_assert(sizeof(WrestlerSettingsShared_SetAllowAudioInBackgroundSetting) == 0x000001, "Wrong size on WrestlerSettingsShared_SetAllowAudioInBackgroundSetting"); \ +static_assert(offsetof(WrestlerSettingsShared_SetAllowAudioInBackgroundSetting, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetAllowAudioInBackgroundSetting::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetAllSoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_SetAllSoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetAllSoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetAllSoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetAllSoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetAllSoundFXVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetAllSoundFXVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetAmbientSoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_SetAmbientSoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetAmbientSoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetAmbientSoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetAmbientSoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetAmbientSoundFXVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetAmbientSoundFXVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetAudioBalance \ +static_assert(alignof(WrestlerSettingsShared_SetAudioBalance) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetAudioBalance"); \ +static_assert(sizeof(WrestlerSettingsShared_SetAudioBalance) == 0x000004, "Wrong size on WrestlerSettingsShared_SetAudioBalance"); \ +static_assert(offsetof(WrestlerSettingsShared_SetAudioBalance, InAudioBalance) == 0x000000, "Member 'WrestlerSettingsShared_SetAudioBalance::InAudioBalance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetCameraMovementReduction \ +static_assert(alignof(WrestlerSettingsShared_SetCameraMovementReduction) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetCameraMovementReduction"); \ +static_assert(sizeof(WrestlerSettingsShared_SetCameraMovementReduction) == 0x000004, "Wrong size on WrestlerSettingsShared_SetCameraMovementReduction"); \ +static_assert(offsetof(WrestlerSettingsShared_SetCameraMovementReduction, InReductionAmount) == 0x000000, "Member 'WrestlerSettingsShared_SetCameraMovementReduction::InReductionAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetControllerLookSensitivity \ +static_assert(alignof(WrestlerSettingsShared_SetControllerLookSensitivity) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetControllerLookSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_SetControllerLookSensitivity) == 0x000004, "Wrong size on WrestlerSettingsShared_SetControllerLookSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_SetControllerLookSensitivity, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetControllerLookSensitivity::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetControllerPlatform \ +static_assert(alignof(WrestlerSettingsShared_SetControllerPlatform) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetControllerPlatform"); \ +static_assert(sizeof(WrestlerSettingsShared_SetControllerPlatform) == 0x000008, "Wrong size on WrestlerSettingsShared_SetControllerPlatform"); \ +static_assert(offsetof(WrestlerSettingsShared_SetControllerPlatform, InControllerPlatform) == 0x000000, "Member 'WrestlerSettingsShared_SetControllerPlatform::InControllerPlatform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetDialogueBoost \ +static_assert(alignof(WrestlerSettingsShared_SetDialogueBoost) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetDialogueBoost"); \ +static_assert(sizeof(WrestlerSettingsShared_SetDialogueBoost) == 0x000004, "Wrong size on WrestlerSettingsShared_SetDialogueBoost"); \ +static_assert(offsetof(WrestlerSettingsShared_SetDialogueBoost, InDialogueBoost) == 0x000000, "Member 'WrestlerSettingsShared_SetDialogueBoost::InDialogueBoost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetDialogueVolume \ +static_assert(alignof(WrestlerSettingsShared_SetDialogueVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetDialogueVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetDialogueVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetDialogueVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetDialogueVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetDialogueVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetDifficulty \ +static_assert(alignof(WrestlerSettingsShared_SetDifficulty) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetDifficulty"); \ +static_assert(sizeof(WrestlerSettingsShared_SetDifficulty) == 0x000004, "Wrong size on WrestlerSettingsShared_SetDifficulty"); \ +static_assert(offsetof(WrestlerSettingsShared_SetDifficulty, InDifficulty) == 0x000000, "Member 'WrestlerSettingsShared_SetDifficulty::InDifficulty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetDisplayGamma \ +static_assert(alignof(WrestlerSettingsShared_SetDisplayGamma) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetDisplayGamma"); \ +static_assert(sizeof(WrestlerSettingsShared_SetDisplayGamma) == 0x000004, "Wrong size on WrestlerSettingsShared_SetDisplayGamma"); \ +static_assert(offsetof(WrestlerSettingsShared_SetDisplayGamma, InGamma) == 0x000000, "Member 'WrestlerSettingsShared_SetDisplayGamma::InGamma' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetDynamicRange \ +static_assert(alignof(WrestlerSettingsShared_SetDynamicRange) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetDynamicRange"); \ +static_assert(sizeof(WrestlerSettingsShared_SetDynamicRange) == 0x000004, "Wrong size on WrestlerSettingsShared_SetDynamicRange"); \ +static_assert(offsetof(WrestlerSettingsShared_SetDynamicRange, InDynamicRange) == 0x000000, "Member 'WrestlerSettingsShared_SetDynamicRange::InDynamicRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetForceFeedbackEnabled \ +static_assert(alignof(WrestlerSettingsShared_SetForceFeedbackEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetForceFeedbackEnabled"); \ +static_assert(sizeof(WrestlerSettingsShared_SetForceFeedbackEnabled) == 0x000001, "Wrong size on WrestlerSettingsShared_SetForceFeedbackEnabled"); \ +static_assert(offsetof(WrestlerSettingsShared_SetForceFeedbackEnabled, bInNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetForceFeedbackEnabled::bInNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetGamepadLookStickDeadZone \ +static_assert(alignof(WrestlerSettingsShared_SetGamepadLookStickDeadZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetGamepadLookStickDeadZone"); \ +static_assert(sizeof(WrestlerSettingsShared_SetGamepadLookStickDeadZone) == 0x000004, "Wrong size on WrestlerSettingsShared_SetGamepadLookStickDeadZone"); \ +static_assert(offsetof(WrestlerSettingsShared_SetGamepadLookStickDeadZone, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetGamepadLookStickDeadZone::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetGamepadMoveStickDeadZone \ +static_assert(alignof(WrestlerSettingsShared_SetGamepadMoveStickDeadZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetGamepadMoveStickDeadZone"); \ +static_assert(sizeof(WrestlerSettingsShared_SetGamepadMoveStickDeadZone) == 0x000004, "Wrong size on WrestlerSettingsShared_SetGamepadMoveStickDeadZone"); \ +static_assert(offsetof(WrestlerSettingsShared_SetGamepadMoveStickDeadZone, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetGamepadMoveStickDeadZone::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetHighFrequencyCutoff \ +static_assert(alignof(WrestlerSettingsShared_SetHighFrequencyCutoff) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetHighFrequencyCutoff"); \ +static_assert(sizeof(WrestlerSettingsShared_SetHighFrequencyCutoff) == 0x000004, "Wrong size on WrestlerSettingsShared_SetHighFrequencyCutoff"); \ +static_assert(offsetof(WrestlerSettingsShared_SetHighFrequencyCutoff, InHighFrequencyCutoff) == 0x000000, "Member 'WrestlerSettingsShared_SetHighFrequencyCutoff::InHighFrequencyCutoff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetInvertHorizontalAxis \ +static_assert(alignof(WrestlerSettingsShared_SetInvertHorizontalAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetInvertHorizontalAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_SetInvertHorizontalAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_SetInvertHorizontalAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_SetInvertHorizontalAxis, bInNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetInvertHorizontalAxis::bInNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetInvertVerticalAxis \ +static_assert(alignof(WrestlerSettingsShared_SetInvertVerticalAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetInvertVerticalAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_SetInvertVerticalAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_SetInvertVerticalAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_SetInvertVerticalAxis, bInNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetInvertVerticalAxis::bInNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetInvertYAxis \ +static_assert(alignof(WrestlerSettingsShared_SetInvertYAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetInvertYAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_SetInvertYAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_SetInvertYAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_SetInvertYAxis, bInEnabled) == 0x000000, "Member 'WrestlerSettingsShared_SetInvertYAxis::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetIsMonoAudio \ +static_assert(alignof(WrestlerSettingsShared_SetIsMonoAudio) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetIsMonoAudio"); \ +static_assert(sizeof(WrestlerSettingsShared_SetIsMonoAudio) == 0x000001, "Wrong size on WrestlerSettingsShared_SetIsMonoAudio"); \ +static_assert(offsetof(WrestlerSettingsShared_SetIsMonoAudio, InMonoAudio) == 0x000000, "Member 'WrestlerSettingsShared_SetIsMonoAudio::InMonoAudio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetLanguage \ +static_assert(alignof(WrestlerSettingsShared_SetLanguage) == 0x000008, "Wrong alignment on WrestlerSettingsShared_SetLanguage"); \ +static_assert(sizeof(WrestlerSettingsShared_SetLanguage) == 0x000010, "Wrong size on WrestlerSettingsShared_SetLanguage"); \ +static_assert(offsetof(WrestlerSettingsShared_SetLanguage, NewLanguage) == 0x000000, "Member 'WrestlerSettingsShared_SetLanguage::NewLanguage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetLookSensitivity \ +static_assert(alignof(WrestlerSettingsShared_SetLookSensitivity) == 0x000008, "Wrong alignment on WrestlerSettingsShared_SetLookSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_SetLookSensitivity) == 0x000008, "Wrong size on WrestlerSettingsShared_SetLookSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_SetLookSensitivity, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetLookSensitivity::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetLowFrequencyCutoff \ +static_assert(alignof(WrestlerSettingsShared_SetLowFrequencyCutoff) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetLowFrequencyCutoff"); \ +static_assert(sizeof(WrestlerSettingsShared_SetLowFrequencyCutoff) == 0x000004, "Wrong size on WrestlerSettingsShared_SetLowFrequencyCutoff"); \ +static_assert(offsetof(WrestlerSettingsShared_SetLowFrequencyCutoff, InLowFrequencyCutoff) == 0x000000, "Member 'WrestlerSettingsShared_SetLowFrequencyCutoff::InLowFrequencyCutoff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetMusicVolume \ +static_assert(alignof(WrestlerSettingsShared_SetMusicVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetMusicVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetMusicVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetMusicVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetMusicVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetMusicVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetOptionalTelemetry \ +static_assert(alignof(WrestlerSettingsShared_SetOptionalTelemetry) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetOptionalTelemetry"); \ +static_assert(sizeof(WrestlerSettingsShared_SetOptionalTelemetry) == 0x000001, "Wrong size on WrestlerSettingsShared_SetOptionalTelemetry"); \ +static_assert(offsetof(WrestlerSettingsShared_SetOptionalTelemetry, bInEnabled) == 0x000000, "Member 'WrestlerSettingsShared_SetOptionalTelemetry::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetOverallVolume \ +static_assert(alignof(WrestlerSettingsShared_SetOverallVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetOverallVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetOverallVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetOverallVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetOverallVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetOverallVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetPanningRule \ +static_assert(alignof(WrestlerSettingsShared_SetPanningRule) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetPanningRule"); \ +static_assert(sizeof(WrestlerSettingsShared_SetPanningRule) == 0x000004, "Wrong size on WrestlerSettingsShared_SetPanningRule"); \ +static_assert(offsetof(WrestlerSettingsShared_SetPanningRule, InPanningRule) == 0x000000, "Member 'WrestlerSettingsShared_SetPanningRule::InPanningRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetPauseInBackground \ +static_assert(alignof(WrestlerSettingsShared_SetPauseInBackground) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetPauseInBackground"); \ +static_assert(sizeof(WrestlerSettingsShared_SetPauseInBackground) == 0x000001, "Wrong size on WrestlerSettingsShared_SetPauseInBackground"); \ +static_assert(offsetof(WrestlerSettingsShared_SetPauseInBackground, bInEnabled) == 0x000000, "Member 'WrestlerSettingsShared_SetPauseInBackground::bInEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetSafeZone \ +static_assert(alignof(WrestlerSettingsShared_SetSafeZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetSafeZone"); \ +static_assert(sizeof(WrestlerSettingsShared_SetSafeZone) == 0x000004, "Wrong size on WrestlerSettingsShared_SetSafeZone"); \ +static_assert(offsetof(WrestlerSettingsShared_SetSafeZone, InValue) == 0x000000, "Member 'WrestlerSettingsShared_SetSafeZone::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetSubtitles \ +static_assert(alignof(WrestlerSettingsShared_SetSubtitles) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetSubtitles"); \ +static_assert(sizeof(WrestlerSettingsShared_SetSubtitles) == 0x000001, "Wrong size on WrestlerSettingsShared_SetSubtitles"); \ +static_assert(offsetof(WrestlerSettingsShared_SetSubtitles, InSubtitlesOn) == 0x000000, "Member 'WrestlerSettingsShared_SetSubtitles::InSubtitlesOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetSubtitlesBackgroundAlpha \ +static_assert(alignof(WrestlerSettingsShared_SetSubtitlesBackgroundAlpha) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetSubtitlesBackgroundAlpha"); \ +static_assert(sizeof(WrestlerSettingsShared_SetSubtitlesBackgroundAlpha) == 0x000004, "Wrong size on WrestlerSettingsShared_SetSubtitlesBackgroundAlpha"); \ +static_assert(offsetof(WrestlerSettingsShared_SetSubtitlesBackgroundAlpha, InSubtitlesBackgroundAlpha) == 0x000000, "Member 'WrestlerSettingsShared_SetSubtitlesBackgroundAlpha::InSubtitlesBackgroundAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetSubtitlesSize \ +static_assert(alignof(WrestlerSettingsShared_SetSubtitlesSize) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetSubtitlesSize"); \ +static_assert(sizeof(WrestlerSettingsShared_SetSubtitlesSize) == 0x000004, "Wrong size on WrestlerSettingsShared_SetSubtitlesSize"); \ +static_assert(offsetof(WrestlerSettingsShared_SetSubtitlesSize, InSubtitlesSize) == 0x000000, "Member 'WrestlerSettingsShared_SetSubtitlesSize::InSubtitlesSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetTargetingMultiplier \ +static_assert(alignof(WrestlerSettingsShared_SetTargetingMultiplier) == 0x000008, "Wrong alignment on WrestlerSettingsShared_SetTargetingMultiplier"); \ +static_assert(sizeof(WrestlerSettingsShared_SetTargetingMultiplier) == 0x000008, "Wrong size on WrestlerSettingsShared_SetTargetingMultiplier"); \ +static_assert(offsetof(WrestlerSettingsShared_SetTargetingMultiplier, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetTargetingMultiplier::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetTriggerHapticsEnabled \ +static_assert(alignof(WrestlerSettingsShared_SetTriggerHapticsEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetTriggerHapticsEnabled"); \ +static_assert(sizeof(WrestlerSettingsShared_SetTriggerHapticsEnabled) == 0x000001, "Wrong size on WrestlerSettingsShared_SetTriggerHapticsEnabled"); \ +static_assert(offsetof(WrestlerSettingsShared_SetTriggerHapticsEnabled, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetTriggerHapticsEnabled::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetTriggerHapticStartPosition \ +static_assert(alignof(WrestlerSettingsShared_SetTriggerHapticStartPosition) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetTriggerHapticStartPosition"); \ +static_assert(sizeof(WrestlerSettingsShared_SetTriggerHapticStartPosition) == 0x000001, "Wrong size on WrestlerSettingsShared_SetTriggerHapticStartPosition"); \ +static_assert(offsetof(WrestlerSettingsShared_SetTriggerHapticStartPosition, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetTriggerHapticStartPosition::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetTriggerHapticStrength \ +static_assert(alignof(WrestlerSettingsShared_SetTriggerHapticStrength) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetTriggerHapticStrength"); \ +static_assert(sizeof(WrestlerSettingsShared_SetTriggerHapticStrength) == 0x000001, "Wrong size on WrestlerSettingsShared_SetTriggerHapticStrength"); \ +static_assert(offsetof(WrestlerSettingsShared_SetTriggerHapticStrength, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetTriggerHapticStrength::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold \ +static_assert(alignof(WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold) == 0x000001, "Wrong alignment on WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold"); \ +static_assert(sizeof(WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold) == 0x000001, "Wrong size on WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold"); \ +static_assert(offsetof(WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetTriggerPullUsesHapticThreshold::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetUISoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_SetUISoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetUISoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_SetUISoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_SetUISoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_SetUISoundFXVolume, InVolume) == 0x000000, "Member 'WrestlerSettingsShared_SetUISoundFXVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetVerticalMultiplierSensitivity \ +static_assert(alignof(WrestlerSettingsShared_SetVerticalMultiplierSensitivity) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetVerticalMultiplierSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_SetVerticalMultiplierSensitivity) == 0x000004, "Wrong size on WrestlerSettingsShared_SetVerticalMultiplierSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_SetVerticalMultiplierSensitivity, InNewValue) == 0x000000, "Member 'WrestlerSettingsShared_SetVerticalMultiplierSensitivity::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_SetVibrationAmount \ +static_assert(alignof(WrestlerSettingsShared_SetVibrationAmount) == 0x000004, "Wrong alignment on WrestlerSettingsShared_SetVibrationAmount"); \ +static_assert(sizeof(WrestlerSettingsShared_SetVibrationAmount) == 0x000004, "Wrong size on WrestlerSettingsShared_SetVibrationAmount"); \ +static_assert(offsetof(WrestlerSettingsShared_SetVibrationAmount, InVibrationAmount) == 0x000000, "Member 'WrestlerSettingsShared_SetVibrationAmount::InVibrationAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetAllowAudioInBackgroundSetting \ +static_assert(alignof(WrestlerSettingsShared_GetAllowAudioInBackgroundSetting) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetAllowAudioInBackgroundSetting"); \ +static_assert(sizeof(WrestlerSettingsShared_GetAllowAudioInBackgroundSetting) == 0x000001, "Wrong size on WrestlerSettingsShared_GetAllowAudioInBackgroundSetting"); \ +static_assert(offsetof(WrestlerSettingsShared_GetAllowAudioInBackgroundSetting, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetAllowAudioInBackgroundSetting::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetAllSoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_GetAllSoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetAllSoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetAllSoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetAllSoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetAllSoundFXVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetAllSoundFXVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetAmbientSoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_GetAmbientSoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetAmbientSoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetAmbientSoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetAmbientSoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetAmbientSoundFXVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetAmbientSoundFXVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetAudioBalance \ +static_assert(alignof(WrestlerSettingsShared_GetAudioBalance) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetAudioBalance"); \ +static_assert(sizeof(WrestlerSettingsShared_GetAudioBalance) == 0x000004, "Wrong size on WrestlerSettingsShared_GetAudioBalance"); \ +static_assert(offsetof(WrestlerSettingsShared_GetAudioBalance, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetAudioBalance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetCameraMovementReduction \ +static_assert(alignof(WrestlerSettingsShared_GetCameraMovementReduction) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetCameraMovementReduction"); \ +static_assert(sizeof(WrestlerSettingsShared_GetCameraMovementReduction) == 0x000004, "Wrong size on WrestlerSettingsShared_GetCameraMovementReduction"); \ +static_assert(offsetof(WrestlerSettingsShared_GetCameraMovementReduction, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetCameraMovementReduction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetControllerLookSensitivity \ +static_assert(alignof(WrestlerSettingsShared_GetControllerLookSensitivity) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetControllerLookSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_GetControllerLookSensitivity) == 0x000004, "Wrong size on WrestlerSettingsShared_GetControllerLookSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_GetControllerLookSensitivity, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetControllerLookSensitivity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetControllerPlatform \ +static_assert(alignof(WrestlerSettingsShared_GetControllerPlatform) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetControllerPlatform"); \ +static_assert(sizeof(WrestlerSettingsShared_GetControllerPlatform) == 0x000008, "Wrong size on WrestlerSettingsShared_GetControllerPlatform"); \ +static_assert(offsetof(WrestlerSettingsShared_GetControllerPlatform, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetControllerPlatform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetDialogueBoost \ +static_assert(alignof(WrestlerSettingsShared_GetDialogueBoost) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetDialogueBoost"); \ +static_assert(sizeof(WrestlerSettingsShared_GetDialogueBoost) == 0x000004, "Wrong size on WrestlerSettingsShared_GetDialogueBoost"); \ +static_assert(offsetof(WrestlerSettingsShared_GetDialogueBoost, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetDialogueBoost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetDialogueVolume \ +static_assert(alignof(WrestlerSettingsShared_GetDialogueVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetDialogueVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetDialogueVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetDialogueVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetDialogueVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetDialogueVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetDifficulty \ +static_assert(alignof(WrestlerSettingsShared_GetDifficulty) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetDifficulty"); \ +static_assert(sizeof(WrestlerSettingsShared_GetDifficulty) == 0x000004, "Wrong size on WrestlerSettingsShared_GetDifficulty"); \ +static_assert(offsetof(WrestlerSettingsShared_GetDifficulty, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetDifficulty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetDisplayGamma \ +static_assert(alignof(WrestlerSettingsShared_GetDisplayGamma) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetDisplayGamma"); \ +static_assert(sizeof(WrestlerSettingsShared_GetDisplayGamma) == 0x000004, "Wrong size on WrestlerSettingsShared_GetDisplayGamma"); \ +static_assert(offsetof(WrestlerSettingsShared_GetDisplayGamma, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetDisplayGamma::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetDynamicRange \ +static_assert(alignof(WrestlerSettingsShared_GetDynamicRange) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetDynamicRange"); \ +static_assert(sizeof(WrestlerSettingsShared_GetDynamicRange) == 0x000004, "Wrong size on WrestlerSettingsShared_GetDynamicRange"); \ +static_assert(offsetof(WrestlerSettingsShared_GetDynamicRange, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetDynamicRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetForceFeedbackEnabled \ +static_assert(alignof(WrestlerSettingsShared_GetForceFeedbackEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetForceFeedbackEnabled"); \ +static_assert(sizeof(WrestlerSettingsShared_GetForceFeedbackEnabled) == 0x000001, "Wrong size on WrestlerSettingsShared_GetForceFeedbackEnabled"); \ +static_assert(offsetof(WrestlerSettingsShared_GetForceFeedbackEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetForceFeedbackEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetGamepadLookStickDeadZone \ +static_assert(alignof(WrestlerSettingsShared_GetGamepadLookStickDeadZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetGamepadLookStickDeadZone"); \ +static_assert(sizeof(WrestlerSettingsShared_GetGamepadLookStickDeadZone) == 0x000004, "Wrong size on WrestlerSettingsShared_GetGamepadLookStickDeadZone"); \ +static_assert(offsetof(WrestlerSettingsShared_GetGamepadLookStickDeadZone, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetGamepadLookStickDeadZone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetGamepadMoveStickDeadZone \ +static_assert(alignof(WrestlerSettingsShared_GetGamepadMoveStickDeadZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetGamepadMoveStickDeadZone"); \ +static_assert(sizeof(WrestlerSettingsShared_GetGamepadMoveStickDeadZone) == 0x000004, "Wrong size on WrestlerSettingsShared_GetGamepadMoveStickDeadZone"); \ +static_assert(offsetof(WrestlerSettingsShared_GetGamepadMoveStickDeadZone, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetGamepadMoveStickDeadZone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetHighFrequencyCutoff \ +static_assert(alignof(WrestlerSettingsShared_GetHighFrequencyCutoff) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetHighFrequencyCutoff"); \ +static_assert(sizeof(WrestlerSettingsShared_GetHighFrequencyCutoff) == 0x000004, "Wrong size on WrestlerSettingsShared_GetHighFrequencyCutoff"); \ +static_assert(offsetof(WrestlerSettingsShared_GetHighFrequencyCutoff, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetHighFrequencyCutoff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetInvertHorizontalAxis \ +static_assert(alignof(WrestlerSettingsShared_GetInvertHorizontalAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetInvertHorizontalAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_GetInvertHorizontalAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_GetInvertHorizontalAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_GetInvertHorizontalAxis, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetInvertHorizontalAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetInvertVerticalAxis \ +static_assert(alignof(WrestlerSettingsShared_GetInvertVerticalAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetInvertVerticalAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_GetInvertVerticalAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_GetInvertVerticalAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_GetInvertVerticalAxis, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetInvertVerticalAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetInvertYAxis \ +static_assert(alignof(WrestlerSettingsShared_GetInvertYAxis) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetInvertYAxis"); \ +static_assert(sizeof(WrestlerSettingsShared_GetInvertYAxis) == 0x000001, "Wrong size on WrestlerSettingsShared_GetInvertYAxis"); \ +static_assert(offsetof(WrestlerSettingsShared_GetInvertYAxis, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetInvertYAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetIsMonoAudio \ +static_assert(alignof(WrestlerSettingsShared_GetIsMonoAudio) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetIsMonoAudio"); \ +static_assert(sizeof(WrestlerSettingsShared_GetIsMonoAudio) == 0x000001, "Wrong size on WrestlerSettingsShared_GetIsMonoAudio"); \ +static_assert(offsetof(WrestlerSettingsShared_GetIsMonoAudio, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetIsMonoAudio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetLanguage \ +static_assert(alignof(WrestlerSettingsShared_GetLanguage) == 0x000008, "Wrong alignment on WrestlerSettingsShared_GetLanguage"); \ +static_assert(sizeof(WrestlerSettingsShared_GetLanguage) == 0x000010, "Wrong size on WrestlerSettingsShared_GetLanguage"); \ +static_assert(offsetof(WrestlerSettingsShared_GetLanguage, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetLanguage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetLookSensitivity \ +static_assert(alignof(WrestlerSettingsShared_GetLookSensitivity) == 0x000008, "Wrong alignment on WrestlerSettingsShared_GetLookSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_GetLookSensitivity) == 0x000008, "Wrong size on WrestlerSettingsShared_GetLookSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_GetLookSensitivity, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetLookSensitivity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetLowFrequencyCutoff \ +static_assert(alignof(WrestlerSettingsShared_GetLowFrequencyCutoff) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetLowFrequencyCutoff"); \ +static_assert(sizeof(WrestlerSettingsShared_GetLowFrequencyCutoff) == 0x000004, "Wrong size on WrestlerSettingsShared_GetLowFrequencyCutoff"); \ +static_assert(offsetof(WrestlerSettingsShared_GetLowFrequencyCutoff, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetLowFrequencyCutoff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetMusicVolume \ +static_assert(alignof(WrestlerSettingsShared_GetMusicVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetMusicVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetMusicVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetMusicVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetMusicVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetMusicVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetOptionalTelemetry \ +static_assert(alignof(WrestlerSettingsShared_GetOptionalTelemetry) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetOptionalTelemetry"); \ +static_assert(sizeof(WrestlerSettingsShared_GetOptionalTelemetry) == 0x000001, "Wrong size on WrestlerSettingsShared_GetOptionalTelemetry"); \ +static_assert(offsetof(WrestlerSettingsShared_GetOptionalTelemetry, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetOptionalTelemetry::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetOverallVolume \ +static_assert(alignof(WrestlerSettingsShared_GetOverallVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetOverallVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetOverallVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetOverallVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetOverallVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetOverallVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetPanningRule \ +static_assert(alignof(WrestlerSettingsShared_GetPanningRule) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetPanningRule"); \ +static_assert(sizeof(WrestlerSettingsShared_GetPanningRule) == 0x000004, "Wrong size on WrestlerSettingsShared_GetPanningRule"); \ +static_assert(offsetof(WrestlerSettingsShared_GetPanningRule, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetPanningRule::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetPauseInBackground \ +static_assert(alignof(WrestlerSettingsShared_GetPauseInBackground) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetPauseInBackground"); \ +static_assert(sizeof(WrestlerSettingsShared_GetPauseInBackground) == 0x000001, "Wrong size on WrestlerSettingsShared_GetPauseInBackground"); \ +static_assert(offsetof(WrestlerSettingsShared_GetPauseInBackground, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetPauseInBackground::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetSafeZone \ +static_assert(alignof(WrestlerSettingsShared_GetSafeZone) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetSafeZone"); \ +static_assert(sizeof(WrestlerSettingsShared_GetSafeZone) == 0x000004, "Wrong size on WrestlerSettingsShared_GetSafeZone"); \ +static_assert(offsetof(WrestlerSettingsShared_GetSafeZone, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetSafeZone::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetSubtitles \ +static_assert(alignof(WrestlerSettingsShared_GetSubtitles) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetSubtitles"); \ +static_assert(sizeof(WrestlerSettingsShared_GetSubtitles) == 0x000001, "Wrong size on WrestlerSettingsShared_GetSubtitles"); \ +static_assert(offsetof(WrestlerSettingsShared_GetSubtitles, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetSubtitles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetSubtitlesSize \ +static_assert(alignof(WrestlerSettingsShared_GetSubtitlesSize) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetSubtitlesSize"); \ +static_assert(sizeof(WrestlerSettingsShared_GetSubtitlesSize) == 0x000004, "Wrong size on WrestlerSettingsShared_GetSubtitlesSize"); \ +static_assert(offsetof(WrestlerSettingsShared_GetSubtitlesSize, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetSubtitlesSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetTargetingMultiplier \ +static_assert(alignof(WrestlerSettingsShared_GetTargetingMultiplier) == 0x000008, "Wrong alignment on WrestlerSettingsShared_GetTargetingMultiplier"); \ +static_assert(sizeof(WrestlerSettingsShared_GetTargetingMultiplier) == 0x000008, "Wrong size on WrestlerSettingsShared_GetTargetingMultiplier"); \ +static_assert(offsetof(WrestlerSettingsShared_GetTargetingMultiplier, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetTargetingMultiplier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetTriggerHapticsEnabled \ +static_assert(alignof(WrestlerSettingsShared_GetTriggerHapticsEnabled) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetTriggerHapticsEnabled"); \ +static_assert(sizeof(WrestlerSettingsShared_GetTriggerHapticsEnabled) == 0x000001, "Wrong size on WrestlerSettingsShared_GetTriggerHapticsEnabled"); \ +static_assert(offsetof(WrestlerSettingsShared_GetTriggerHapticsEnabled, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetTriggerHapticsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetTriggerHapticStartPosition \ +static_assert(alignof(WrestlerSettingsShared_GetTriggerHapticStartPosition) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetTriggerHapticStartPosition"); \ +static_assert(sizeof(WrestlerSettingsShared_GetTriggerHapticStartPosition) == 0x000001, "Wrong size on WrestlerSettingsShared_GetTriggerHapticStartPosition"); \ +static_assert(offsetof(WrestlerSettingsShared_GetTriggerHapticStartPosition, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetTriggerHapticStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetTriggerHapticStrength \ +static_assert(alignof(WrestlerSettingsShared_GetTriggerHapticStrength) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetTriggerHapticStrength"); \ +static_assert(sizeof(WrestlerSettingsShared_GetTriggerHapticStrength) == 0x000001, "Wrong size on WrestlerSettingsShared_GetTriggerHapticStrength"); \ +static_assert(offsetof(WrestlerSettingsShared_GetTriggerHapticStrength, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetTriggerHapticStrength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold \ +static_assert(alignof(WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold) == 0x000001, "Wrong alignment on WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold"); \ +static_assert(sizeof(WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold) == 0x000001, "Wrong size on WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold"); \ +static_assert(offsetof(WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetTriggerPullUsesHapticThreshold::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetUISoundFXVolume \ +static_assert(alignof(WrestlerSettingsShared_GetUISoundFXVolume) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetUISoundFXVolume"); \ +static_assert(sizeof(WrestlerSettingsShared_GetUISoundFXVolume) == 0x000004, "Wrong size on WrestlerSettingsShared_GetUISoundFXVolume"); \ +static_assert(offsetof(WrestlerSettingsShared_GetUISoundFXVolume, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetUISoundFXVolume::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_GetVerticalMultiplierSensitivity \ +static_assert(alignof(WrestlerSettingsShared_GetVerticalMultiplierSensitivity) == 0x000004, "Wrong alignment on WrestlerSettingsShared_GetVerticalMultiplierSensitivity"); \ +static_assert(sizeof(WrestlerSettingsShared_GetVerticalMultiplierSensitivity) == 0x000004, "Wrong size on WrestlerSettingsShared_GetVerticalMultiplierSensitivity"); \ +static_assert(offsetof(WrestlerSettingsShared_GetVerticalMultiplierSensitivity, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_GetVerticalMultiplierSensitivity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_IsFirstBoot \ +static_assert(alignof(WrestlerSettingsShared_IsFirstBoot) == 0x000001, "Wrong alignment on WrestlerSettingsShared_IsFirstBoot"); \ +static_assert(sizeof(WrestlerSettingsShared_IsFirstBoot) == 0x000001, "Wrong size on WrestlerSettingsShared_IsFirstBoot"); \ +static_assert(offsetof(WrestlerSettingsShared_IsFirstBoot, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_IsFirstBoot::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSettingsShared_IsSafeZoneSet \ +static_assert(alignof(WrestlerSettingsShared_IsSafeZoneSet) == 0x000001, "Wrong alignment on WrestlerSettingsShared_IsSafeZoneSet"); \ +static_assert(sizeof(WrestlerSettingsShared_IsSafeZoneSet) == 0x000001, "Wrong size on WrestlerSettingsShared_IsSafeZoneSet"); \ +static_assert(offsetof(WrestlerSettingsShared_IsSafeZoneSet, ReturnValue) == 0x000000, "Member 'WrestlerSettingsShared_IsSafeZoneSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSettingsShared \ +static_assert(alignof(UWrestlerSettingsShared) == 0x000008, "Wrong alignment on UWrestlerSettingsShared"); \ +static_assert(sizeof(UWrestlerSettingsShared) == 0x000288, "Wrong size on UWrestlerSettingsShared"); \ +static_assert(offsetof(UWrestlerSettingsShared, CachedInputSettings) == 0x000070, "Member 'UWrestlerSettingsShared::CachedInputSettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, UserChosenDeviceProfileSuffix) == 0x000080, "Member 'UWrestlerSettingsShared::UserChosenDeviceProfileSuffix' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DisplayGamma) == 0x000090, "Member 'UWrestlerSettingsShared::DisplayGamma' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SafeZoneScale) == 0x000094, "Member 'UWrestlerSettingsShared::SafeZoneScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bForceFeedbackEnabled) == 0x000098, "Member 'UWrestlerSettingsShared::bForceFeedbackEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, GamepadMoveStickDeadZone) == 0x00009C, "Member 'UWrestlerSettingsShared::GamepadMoveStickDeadZone' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, GamepadLookStickDeadZone) == 0x0000A0, "Member 'UWrestlerSettingsShared::GamepadLookStickDeadZone' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bTriggerHapticsEnabled) == 0x0000A4, "Member 'UWrestlerSettingsShared::bTriggerHapticsEnabled' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bTriggerPullUsesHapticThreshold) == 0x0000A5, "Member 'UWrestlerSettingsShared::bTriggerPullUsesHapticThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, TriggerHapticStrength) == 0x0000A6, "Member 'UWrestlerSettingsShared::TriggerHapticStrength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, TriggerHapticStartPosition) == 0x0000A7, "Member 'UWrestlerSettingsShared::TriggerHapticStartPosition' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AllowAudioInBackground) == 0x0000A8, "Member 'UWrestlerSettingsShared::AllowAudioInBackground' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, LookSensitivity) == 0x0000B0, "Member 'UWrestlerSettingsShared::LookSensitivity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, TargetingMultiplier) == 0x0000B8, "Member 'UWrestlerSettingsShared::TargetingMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bInvertVerticalAxis) == 0x0000C0, "Member 'UWrestlerSettingsShared::bInvertVerticalAxis' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bInvertHorizontalAxis) == 0x0000C1, "Member 'UWrestlerSettingsShared::bInvertHorizontalAxis' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, OverallVolume) == 0x0000C4, "Member 'UWrestlerSettingsShared::OverallVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, OverallVolumeProperty) == 0x0000C8, "Member 'UWrestlerSettingsShared::OverallVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DialogueVolume) == 0x0000D0, "Member 'UWrestlerSettingsShared::DialogueVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DialogueVolumeProperty) == 0x0000D8, "Member 'UWrestlerSettingsShared::DialogueVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, MusicVolume) == 0x0000E0, "Member 'UWrestlerSettingsShared::MusicVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, MusicVolumeProperty) == 0x0000E8, "Member 'UWrestlerSettingsShared::MusicVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AllSoundFXVolume) == 0x0000F0, "Member 'UWrestlerSettingsShared::AllSoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AllSoundFXVolumeProperty) == 0x0000F8, "Member 'UWrestlerSettingsShared::AllSoundFXVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AmbientSoundFXVolume) == 0x000100, "Member 'UWrestlerSettingsShared::AmbientSoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AmbientSoundFXVolumeProperty) == 0x000108, "Member 'UWrestlerSettingsShared::AmbientSoundFXVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, UISoundFXVolume) == 0x000110, "Member 'UWrestlerSettingsShared::UISoundFXVolume' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, UISoundFXVolumeProperty) == 0x000118, "Member 'UWrestlerSettingsShared::UISoundFXVolumeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DynamicRange) == 0x000120, "Member 'UWrestlerSettingsShared::DynamicRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DynamicRangeProperty) == 0x000128, "Member 'UWrestlerSettingsShared::DynamicRangeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DialogueBoost) == 0x000130, "Member 'UWrestlerSettingsShared::DialogueBoost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, DialogueBoostProperty) == 0x000138, "Member 'UWrestlerSettingsShared::DialogueBoostProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, PanningRule) == 0x000140, "Member 'UWrestlerSettingsShared::PanningRule' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, PanningRuleProperty) == 0x000148, "Member 'UWrestlerSettingsShared::PanningRuleProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bMonoAudio) == 0x000150, "Member 'UWrestlerSettingsShared::bMonoAudio' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, MonoAudioProperty) == 0x000158, "Member 'UWrestlerSettingsShared::MonoAudioProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AudioBalance) == 0x000160, "Member 'UWrestlerSettingsShared::AudioBalance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, AudioBalanceProperty) == 0x000168, "Member 'UWrestlerSettingsShared::AudioBalanceProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, VibrationAmount) == 0x000170, "Member 'UWrestlerSettingsShared::VibrationAmount' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, VibrationAmountProperty) == 0x000178, "Member 'UWrestlerSettingsShared::VibrationAmountProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, HighFrequencyCutoff) == 0x000180, "Member 'UWrestlerSettingsShared::HighFrequencyCutoff' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, HighFrequencyCutoffProperty) == 0x000188, "Member 'UWrestlerSettingsShared::HighFrequencyCutoffProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, LowFrequencyCutoff) == 0x000190, "Member 'UWrestlerSettingsShared::LowFrequencyCutoff' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, LowFrequencyCutoffProperty) == 0x000198, "Member 'UWrestlerSettingsShared::LowFrequencyCutoffProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, ControllerPlatform) == 0x0001A0, "Member 'UWrestlerSettingsShared::ControllerPlatform' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, PlayerDifficultyProperty) == 0x0001A8, "Member 'UWrestlerSettingsShared::PlayerDifficultyProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, PlayerDifficulty) == 0x0001B0, "Member 'UWrestlerSettingsShared::PlayerDifficulty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bInvertYAxis) == 0x0001B5, "Member 'UWrestlerSettingsShared::bInvertYAxis' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, ControllerSensitivity) == 0x0001B8, "Member 'UWrestlerSettingsShared::ControllerSensitivity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, VerticalSensitivityMultiplier) == 0x0001BC, "Member 'UWrestlerSettingsShared::VerticalSensitivityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesOn) == 0x0001C0, "Member 'UWrestlerSettingsShared::SubtitlesOn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CameraMovementReduction) == 0x0001C4, "Member 'UWrestlerSettingsShared::CameraMovementReduction' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesOnProperty) == 0x0001C8, "Member 'UWrestlerSettingsShared::SubtitlesOnProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesSize) == 0x0001D0, "Member 'UWrestlerSettingsShared::SubtitlesSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesSizeProperty) == 0x0001D8, "Member 'UWrestlerSettingsShared::SubtitlesSizeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesBackgroundAlpha) == 0x0001E0, "Member 'UWrestlerSettingsShared::SubtitlesBackgroundAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, SubtitlesBackgroundAlphaProperty) == 0x0001E8, "Member 'UWrestlerSettingsShared::SubtitlesBackgroundAlphaProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionsOn) == 0x0001F0, "Member 'UWrestlerSettingsShared::CloseCaptionsOn' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionOnProperty) == 0x0001F8, "Member 'UWrestlerSettingsShared::CloseCaptionOnProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionSize) == 0x000200, "Member 'UWrestlerSettingsShared::CloseCaptionSize' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionSizeProperty) == 0x000208, "Member 'UWrestlerSettingsShared::CloseCaptionSizeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionBackgroundAlpha) == 0x000210, "Member 'UWrestlerSettingsShared::CloseCaptionBackgroundAlpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CloseCaptionBackgroundAlphaProperty) == 0x000218, "Member 'UWrestlerSettingsShared::CloseCaptionBackgroundAlphaProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, CameraMovementReductionProperty) == 0x000220, "Member 'UWrestlerSettingsShared::CameraMovementReductionProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, InitialInputMappingData) == 0x000228, "Member 'UWrestlerSettingsShared::InitialInputMappingData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, InputMappingData) == 0x000238, "Member 'UWrestlerSettingsShared::InputMappingData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, InputSpecialMappingData) == 0x000248, "Member 'UWrestlerSettingsShared::InputSpecialMappingData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, Language) == 0x000258, "Member 'UWrestlerSettingsShared::Language' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, PendingCulture) == 0x000268, "Member 'UWrestlerSettingsShared::PendingCulture' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bPauseInBackground) == 0x000279, "Member 'UWrestlerSettingsShared::bPauseInBackground' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSettingsShared, bFirstBoot) == 0x00027B, "Member 'UWrestlerSettingsShared::bFirstBoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscrete_Input \ +static_assert(alignof(UGameSettingValueDiscrete_Input) == 0x000008, "Wrong alignment on UGameSettingValueDiscrete_Input"); \ +static_assert(sizeof(UGameSettingValueDiscrete_Input) == 0x000248, "Wrong size on UGameSettingValueDiscrete_Input"); \ + +#define DUMPER7_ASSERTS_UGameSettingValueDiscreteDynamic_Language \ +static_assert(alignof(UGameSettingValueDiscreteDynamic_Language) == 0x000008, "Wrong alignment on UGameSettingValueDiscreteDynamic_Language"); \ +static_assert(sizeof(UGameSettingValueDiscreteDynamic_Language) == 0x000200, "Wrong size on UGameSettingValueDiscreteDynamic_Language"); \ + +#define DUMPER7_ASSERTS_UWrestlerShowMasqueradeHUDTask \ +static_assert(alignof(UWrestlerShowMasqueradeHUDTask) == 0x000008, "Wrong alignment on UWrestlerShowMasqueradeHUDTask"); \ +static_assert(sizeof(UWrestlerShowMasqueradeHUDTask) == 0x000090, "Wrong size on UWrestlerShowMasqueradeHUDTask"); \ +static_assert(offsetof(UWrestlerShowMasqueradeHUDTask, bShow) == 0x000088, "Member 'UWrestlerShowMasqueradeHUDTask::bShow' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerShowMasqueradeHUDTask, bAllElements) == 0x000089, "Member 'UWrestlerShowMasqueradeHUDTask::bAllElements' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerShowMasqueradeHUDTask, MasqueradeElement) == 0x00008A, "Member 'UWrestlerShowMasqueradeHUDTask::MasqueradeElement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSideNotificationWidget_GetContainer \ +static_assert(alignof(WrestlerSideNotificationWidget_GetContainer) == 0x000008, "Wrong alignment on WrestlerSideNotificationWidget_GetContainer"); \ +static_assert(sizeof(WrestlerSideNotificationWidget_GetContainer) == 0x000008, "Wrong size on WrestlerSideNotificationWidget_GetContainer"); \ +static_assert(offsetof(WrestlerSideNotificationWidget_GetContainer, ReturnValue) == 0x000000, "Member 'WrestlerSideNotificationWidget_GetContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSideNotificationWidget_HasShortcutTab \ +static_assert(alignof(WrestlerSideNotificationWidget_HasShortcutTab) == 0x000001, "Wrong alignment on WrestlerSideNotificationWidget_HasShortcutTab"); \ +static_assert(sizeof(WrestlerSideNotificationWidget_HasShortcutTab) == 0x000001, "Wrong size on WrestlerSideNotificationWidget_HasShortcutTab"); \ +static_assert(offsetof(WrestlerSideNotificationWidget_HasShortcutTab, ReturnValue) == 0x000000, "Member 'WrestlerSideNotificationWidget_HasShortcutTab::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSideNotificationWidget_SetNotificationImage \ +static_assert(alignof(WrestlerSideNotificationWidget_SetNotificationImage) == 0x000008, "Wrong alignment on WrestlerSideNotificationWidget_SetNotificationImage"); \ +static_assert(sizeof(WrestlerSideNotificationWidget_SetNotificationImage) == 0x000008, "Wrong size on WrestlerSideNotificationWidget_SetNotificationImage"); \ +static_assert(offsetof(WrestlerSideNotificationWidget_SetNotificationImage, InTexture) == 0x000000, "Member 'WrestlerSideNotificationWidget_SetNotificationImage::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSideNotificationWidget_ShouldShowXPFill \ +static_assert(alignof(WrestlerSideNotificationWidget_ShouldShowXPFill) == 0x000001, "Wrong alignment on WrestlerSideNotificationWidget_ShouldShowXPFill"); \ +static_assert(sizeof(WrestlerSideNotificationWidget_ShouldShowXPFill) == 0x000001, "Wrong size on WrestlerSideNotificationWidget_ShouldShowXPFill"); \ +static_assert(offsetof(WrestlerSideNotificationWidget_ShouldShowXPFill, ReturnValue) == 0x000000, "Member 'WrestlerSideNotificationWidget_ShouldShowXPFill::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSideNotificationWidget \ +static_assert(alignof(UWrestlerSideNotificationWidget) == 0x000008, "Wrong alignment on UWrestlerSideNotificationWidget"); \ +static_assert(sizeof(UWrestlerSideNotificationWidget) == 0x0003E0, "Wrong size on UWrestlerSideNotificationWidget"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationWidgetOverlay) == 0x000330, "Member 'UWrestlerSideNotificationWidget::NotificationWidgetOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, bIsShowing) == 0x000338, "Member 'UWrestlerSideNotificationWidget::bIsShowing' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, bHasExpired) == 0x000339, "Member 'UWrestlerSideNotificationWidget::bHasExpired' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, TimeElapsed) == 0x00033C, "Member 'UWrestlerSideNotificationWidget::TimeElapsed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationData) == 0x000358, "Member 'UWrestlerSideNotificationWidget::NotificationData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationBigText) == 0x0003B0, "Member 'UWrestlerSideNotificationWidget::NotificationBigText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationSmallText) == 0x0003B8, "Member 'UWrestlerSideNotificationWidget::NotificationSmallText' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationIcon) == 0x0003C0, "Member 'UWrestlerSideNotificationWidget::NotificationIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationType) == 0x0003C8, "Member 'UWrestlerSideNotificationWidget::NotificationType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationTimer) == 0x0003CC, "Member 'UWrestlerSideNotificationWidget::NotificationTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSideNotificationWidget, NotificationSmallTextWithIcon) == 0x0003D0, "Member 'UWrestlerSideNotificationWidget::NotificationSmallTextWithIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerSignificanceInterface \ +static_assert(alignof(IWrestlerSignificanceInterface) == 0x000001, "Wrong alignment on IWrestlerSignificanceInterface"); \ +static_assert(sizeof(IWrestlerSignificanceInterface) == 0x000001, "Wrong size on IWrestlerSignificanceInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerSignificanceSettings \ +static_assert(alignof(UWrestlerSignificanceSettings) == 0x000008, "Wrong alignment on UWrestlerSignificanceSettings"); \ +static_assert(sizeof(UWrestlerSignificanceSettings) == 0x000090, "Wrong size on UWrestlerSignificanceSettings"); \ +static_assert(offsetof(UWrestlerSignificanceSettings, TimeOffScreenToBeConsideredOffScreenSignificance) == 0x000038, "Member 'UWrestlerSignificanceSettings::TimeOffScreenToBeConsideredOffScreenSignificance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSignificanceSettings, SignificanceBuckets) == 0x000040, "Member 'UWrestlerSignificanceSettings::SignificanceBuckets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSkillTreeWidget \ +static_assert(alignof(UWrestlerSkillTreeWidget) == 0x000008, "Wrong alignment on UWrestlerSkillTreeWidget"); \ +static_assert(sizeof(UWrestlerSkillTreeWidget) == 0x0002E8, "Wrong size on UWrestlerSkillTreeWidget"); \ +static_assert(offsetof(UWrestlerSkillTreeWidget, RootNode) == 0x0002C8, "Member 'UWrestlerSkillTreeWidget::RootNode' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeWidget, NodeWidget) == 0x0002D0, "Member 'UWrestlerSkillTreeWidget::NodeWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSkillTreeWidget, NodeWidgets) == 0x0002D8, "Member 'UWrestlerSkillTreeWidget::NodeWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerSmartObjectDataTableActor \ +static_assert(alignof(AWrestlerSmartObjectDataTableActor) == 0x000008, "Wrong alignment on AWrestlerSmartObjectDataTableActor"); \ +static_assert(sizeof(AWrestlerSmartObjectDataTableActor) == 0x0002E8, "Wrong size on AWrestlerSmartObjectDataTableActor"); \ +static_assert(offsetof(AWrestlerSmartObjectDataTableActor, DataTableRows) == 0x000298, "Member 'AWrestlerSmartObjectDataTableActor::DataTableRows' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStartMenu_OnUserInitialized \ +static_assert(alignof(WrestlerStartMenu_OnUserInitialized) == 0x000008, "Wrong alignment on WrestlerStartMenu_OnUserInitialized"); \ +static_assert(sizeof(WrestlerStartMenu_OnUserInitialized) == 0x000030, "Wrong size on WrestlerStartMenu_OnUserInitialized"); \ +static_assert(offsetof(WrestlerStartMenu_OnUserInitialized, InUserInfo) == 0x000000, "Member 'WrestlerStartMenu_OnUserInitialized::InUserInfo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStartMenu_OnUserInitialized, bInSuccess) == 0x000008, "Member 'WrestlerStartMenu_OnUserInitialized::bInSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStartMenu_OnUserInitialized, InError) == 0x000010, "Member 'WrestlerStartMenu_OnUserInitialized::InError' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStartMenu_OnUserInitialized, InRequestedPrivilege) == 0x000028, "Member 'WrestlerStartMenu_OnUserInitialized::InRequestedPrivilege' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStartMenu_OnUserInitialized, InOnlineContext) == 0x000029, "Member 'WrestlerStartMenu_OnUserInitialized::InOnlineContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStartMenu \ +static_assert(alignof(UWrestlerStartMenu) == 0x000008, "Wrong alignment on UWrestlerStartMenu"); \ +static_assert(sizeof(UWrestlerStartMenu) == 0x000308, "Wrong size on UWrestlerStartMenu"); \ +static_assert(offsetof(UWrestlerStartMenu, bIsFading) == 0x000300, "Member 'UWrestlerStartMenu::bIsFading' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateFunctionLibrary_AIHasStateTag \ +static_assert(alignof(WrestlerStateFunctionLibrary_AIHasStateTag) == 0x000008, "Wrong alignment on WrestlerStateFunctionLibrary_AIHasStateTag"); \ +static_assert(sizeof(WrestlerStateFunctionLibrary_AIHasStateTag) == 0x000018, "Wrong size on WrestlerStateFunctionLibrary_AIHasStateTag"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_AIHasStateTag, InController) == 0x000000, "Member 'WrestlerStateFunctionLibrary_AIHasStateTag::InController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_AIHasStateTag, InTag) == 0x000008, "Member 'WrestlerStateFunctionLibrary_AIHasStateTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_AIHasStateTag, ReturnValue) == 0x000010, "Member 'WrestlerStateFunctionLibrary_AIHasStateTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateFunctionLibrary_PawnHasStateTag \ +static_assert(alignof(WrestlerStateFunctionLibrary_PawnHasStateTag) == 0x000008, "Wrong alignment on WrestlerStateFunctionLibrary_PawnHasStateTag"); \ +static_assert(sizeof(WrestlerStateFunctionLibrary_PawnHasStateTag) == 0x000018, "Wrong size on WrestlerStateFunctionLibrary_PawnHasStateTag"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_PawnHasStateTag, InPawn) == 0x000000, "Member 'WrestlerStateFunctionLibrary_PawnHasStateTag::InPawn' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_PawnHasStateTag, InTag) == 0x000008, "Member 'WrestlerStateFunctionLibrary_PawnHasStateTag::InTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_PawnHasStateTag, ReturnValue) == 0x000010, "Member 'WrestlerStateFunctionLibrary_PawnHasStateTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateFunctionLibrary_SendStateTreeEventToActor \ +static_assert(alignof(WrestlerStateFunctionLibrary_SendStateTreeEventToActor) == 0x000008, "Wrong alignment on WrestlerStateFunctionLibrary_SendStateTreeEventToActor"); \ +static_assert(sizeof(WrestlerStateFunctionLibrary_SendStateTreeEventToActor) == 0x000030, "Wrong size on WrestlerStateFunctionLibrary_SendStateTreeEventToActor"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_SendStateTreeEventToActor, InStateTreeEvent) == 0x000000, "Member 'WrestlerStateFunctionLibrary_SendStateTreeEventToActor::InStateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_SendStateTreeEventToActor, InActor) == 0x000020, "Member 'WrestlerStateFunctionLibrary_SendStateTreeEventToActor::InActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateFunctionLibrary_SendStateTreeEventToActor, ReturnValue) == 0x000028, "Member 'WrestlerStateFunctionLibrary_SendStateTreeEventToActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateFunctionLibrary \ +static_assert(alignof(UWrestlerStateFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerStateFunctionLibrary"); \ +static_assert(sizeof(UWrestlerStateFunctionLibrary) == 0x000028, "Wrong size on UWrestlerStateFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeComponent_SetStateTreeAsset \ +static_assert(alignof(WrestlerStateTreeComponent_SetStateTreeAsset) == 0x000008, "Wrong alignment on WrestlerStateTreeComponent_SetStateTreeAsset"); \ +static_assert(sizeof(WrestlerStateTreeComponent_SetStateTreeAsset) == 0x000028, "Wrong size on WrestlerStateTreeComponent_SetStateTreeAsset"); \ +static_assert(offsetof(WrestlerStateTreeComponent_SetStateTreeAsset, InAsset) == 0x000000, "Member 'WrestlerStateTreeComponent_SetStateTreeAsset::InAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeComponent \ +static_assert(alignof(UWrestlerStateTreeComponent) == 0x000008, "Wrong alignment on UWrestlerStateTreeComponent"); \ +static_assert(sizeof(UWrestlerStateTreeComponent) == 0x0001D0, "Wrong size on UWrestlerStateTreeComponent"); \ +static_assert(offsetof(UWrestlerStateTreeComponent, StateTree) == 0x000148, "Member 'UWrestlerStateTreeComponent::StateTree' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeComponent, OnStateTagsAdded) == 0x000170, "Member 'UWrestlerStateTreeComponent::OnStateTagsAdded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionAwarenessThreshold \ +static_assert(alignof(UWrestlerStateTreeConditionAwarenessThreshold) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionAwarenessThreshold"); \ +static_assert(sizeof(UWrestlerStateTreeConditionAwarenessThreshold) == 0x000050, "Wrong size on UWrestlerStateTreeConditionAwarenessThreshold"); \ +static_assert(offsetof(UWrestlerStateTreeConditionAwarenessThreshold, Threshold) == 0x000048, "Member 'UWrestlerStateTreeConditionAwarenessThreshold::Threshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionEnemyType \ +static_assert(alignof(UWrestlerStateTreeConditionEnemyType) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionEnemyType"); \ +static_assert(sizeof(UWrestlerStateTreeConditionEnemyType) == 0x000050, "Wrong size on UWrestlerStateTreeConditionEnemyType"); \ +static_assert(offsetof(UWrestlerStateTreeConditionEnemyType, TypeName) == 0x000048, "Member 'UWrestlerStateTreeConditionEnemyType::TypeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeConditionTokenState \ +static_assert(alignof(UWrestlerStateTreeConditionTokenState) == 0x000008, "Wrong alignment on UWrestlerStateTreeConditionTokenState"); \ +static_assert(sizeof(UWrestlerStateTreeConditionTokenState) == 0x000058, "Wrong size on UWrestlerStateTreeConditionTokenState"); \ +static_assert(offsetof(UWrestlerStateTreeConditionTokenState, HeldToken) == 0x000048, "Member 'UWrestlerStateTreeConditionTokenState::HeldToken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConditionTokenState, TokenState) == 0x000050, "Member 'UWrestlerStateTreeConditionTokenState::TokenState' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeConditionTokenState, bInverseCondition) == 0x000051, "Member 'UWrestlerStateTreeConditionTokenState::bInverseCondition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged \ +static_assert(alignof(WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged) == 0x000004, "Wrong alignment on WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged"); \ +static_assert(sizeof(WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged) == 0x00000C, "Wrong size on WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged, InGameplayTag) == 0x000000, "Member 'WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged::InGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged, InNewCount) == 0x000008, "Member 'WrestlerStateTreeEvaluatorDefaultBehavior_OnTagChanged::InNewCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorDefaultBehavior \ +static_assert(alignof(UWrestlerStateTreeEvaluatorDefaultBehavior) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorDefaultBehavior"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorDefaultBehavior) == 0x0000B0, "Wrong size on UWrestlerStateTreeEvaluatorDefaultBehavior"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorDefaultBehavior, StateDefaultBehaviours) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorDefaultBehavior::StateDefaultBehaviours' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorDefaultBehavior, CurrentDefaultBehaviors) == 0x000058, "Member 'UWrestlerStateTreeEvaluatorDefaultBehavior::CurrentDefaultBehaviors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorDefaultBehavior, OwnerCharacter) == 0x0000A8, "Member 'UWrestlerStateTreeEvaluatorDefaultBehavior::OwnerCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorHeldToken \ +static_assert(alignof(UWrestlerStateTreeEvaluatorHeldToken) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorHeldToken"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorHeldToken) == 0x000050, "Wrong size on UWrestlerStateTreeEvaluatorHeldToken"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorHeldToken, HeldToken) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorHeldToken::HeldToken' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorLastKnownPosition \ +static_assert(alignof(UWrestlerStateTreeEvaluatorLastKnownPosition) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorLastKnownPosition"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorLastKnownPosition) == 0x000060, "Wrong size on UWrestlerStateTreeEvaluatorLastKnownPosition"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorLastKnownPosition, LastKnownPosition) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorLastKnownPosition::LastKnownPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorMovementSettings \ +static_assert(alignof(UWrestlerStateTreeEvaluatorMovementSettings) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorMovementSettings"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorMovementSettings) == 0x000050, "Wrong size on UWrestlerStateTreeEvaluatorMovementSettings"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorMovementSettings, MovementSetData) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorMovementSettings::MovementSetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorPlayerVisibility \ +static_assert(alignof(UWrestlerStateTreeEvaluatorPlayerVisibility) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorPlayerVisibility"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorPlayerVisibility) == 0x000058, "Wrong size on UWrestlerStateTreeEvaluatorPlayerVisibility"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorPlayerVisibility, bPlayerVisible) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorPlayerVisibility::bPlayerVisible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorPlayerVisibility, TimeSinceLastSawPlayer) == 0x00004C, "Member 'UWrestlerStateTreeEvaluatorPlayerVisibility::TimeSinceLastSawPlayer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorPlayerVisibility, bLostSightOfPlayer) == 0x000050, "Member 'UWrestlerStateTreeEvaluatorPlayerVisibility::bLostSightOfPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorRanged \ +static_assert(alignof(UWrestlerStateTreeEvaluatorRanged) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorRanged"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorRanged) == 0x000050, "Wrong size on UWrestlerStateTreeEvaluatorRanged"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorRanged, IsRanged) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorRanged::IsRanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeEvaluatorSensedTags \ +static_assert(alignof(UWrestlerStateTreeEvaluatorSensedTags) == 0x000008, "Wrong alignment on UWrestlerStateTreeEvaluatorSensedTags"); \ +static_assert(sizeof(UWrestlerStateTreeEvaluatorSensedTags) == 0x000090, "Wrong size on UWrestlerStateTreeEvaluatorSensedTags"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorSensedTags, VisibleTags) == 0x000048, "Member 'UWrestlerStateTreeEvaluatorSensedTags::VisibleTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorSensedTags, AudibleTags) == 0x000068, "Member 'UWrestlerStateTreeEvaluatorSensedTags::AudibleTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeEvaluatorSensedTags, SenseAge) == 0x000088, "Member 'UWrestlerStateTreeEvaluatorSensedTags::SenseAge' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTaskReturnToken \ +static_assert(alignof(UWrestlerStateTreeTaskReturnToken) == 0x000008, "Wrong alignment on UWrestlerStateTreeTaskReturnToken"); \ +static_assert(sizeof(UWrestlerStateTreeTaskReturnToken) == 0x000050, "Wrong size on UWrestlerStateTreeTaskReturnToken"); \ +static_assert(offsetof(UWrestlerStateTreeTaskReturnToken, BlackboardKey) == 0x000048, "Member 'UWrestlerStateTreeTaskReturnToken::BlackboardKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTaskWithTokens \ +static_assert(alignof(UWrestlerStateTreeTaskWithTokens) == 0x000008, "Wrong alignment on UWrestlerStateTreeTaskWithTokens"); \ +static_assert(sizeof(UWrestlerStateTreeTaskWithTokens) == 0x000060, "Wrong size on UWrestlerStateTreeTaskWithTokens"); \ +static_assert(offsetof(UWrestlerStateTreeTaskWithTokens, EnterStateToken) == 0x000048, "Member 'UWrestlerStateTreeTaskWithTokens::EnterStateToken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTaskWithTokens, ExitStateToken) == 0x000049, "Member 'UWrestlerStateTreeTaskWithTokens::ExitStateToken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTaskWithTokens, RequestedTokenType) == 0x00004A, "Member 'UWrestlerStateTreeTaskWithTokens::RequestedTokenType' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTaskWithTokens, TokenSink) == 0x000050, "Member 'UWrestlerStateTreeTaskWithTokens::TokenSink' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTaskWithTokens, TokenManager) == 0x000058, "Member 'UWrestlerStateTreeTaskWithTokens::TokenManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete \ +static_assert(alignof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete) == 0x000008, "Wrong alignment on WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete"); \ +static_assert(sizeof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete) == 0x000010, "Wrong size on WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete"); \ +static_assert(offsetof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete, Result) == 0x000000, "Member 'WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskComplete::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute \ +static_assert(alignof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute) == 0x000008, "Wrong alignment on WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute"); \ +static_assert(sizeof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute) == 0x000010, "Wrong size on WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute"); \ +static_assert(offsetof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute, InAgent) == 0x000000, "Member 'WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute::InAgent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute, InTask) == 0x000008, "Member 'WrestlerStateTreeTask_BehaviourTaskSlot_HandleTaskDistribute::InTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_BehaviourTaskSlot \ +static_assert(alignof(UWrestlerStateTreeTask_BehaviourTaskSlot) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_BehaviourTaskSlot"); \ +static_assert(sizeof(UWrestlerStateTreeTask_BehaviourTaskSlot) == 0x0000B8, "Wrong size on UWrestlerStateTreeTask_BehaviourTaskSlot"); \ +static_assert(offsetof(UWrestlerStateTreeTask_BehaviourTaskSlot, DefaultBehaviorTag) == 0x000048, "Member 'UWrestlerStateTreeTask_BehaviourTaskSlot::DefaultBehaviorTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_BehaviourTaskSlot, CurrentDefaultBehaviors) == 0x000050, "Member 'UWrestlerStateTreeTask_BehaviourTaskSlot::CurrentDefaultBehaviors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_BehaviourTaskSlot, Owner) == 0x0000A0, "Member 'UWrestlerStateTreeTask_BehaviourTaskSlot::Owner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_BehaviourTaskSlot, TaskDistributor) == 0x0000A8, "Member 'UWrestlerStateTreeTask_BehaviourTaskSlot::TaskDistributor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_BehaviourTaskSlot, AgentTask) == 0x0000B0, "Member 'UWrestlerStateTreeTask_BehaviourTaskSlot::AgentTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_ConEnemyToMassAI \ +static_assert(alignof(UWrestlerStateTreeTask_ConEnemyToMassAI) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_ConEnemyToMassAI"); \ +static_assert(sizeof(UWrestlerStateTreeTask_ConEnemyToMassAI) == 0x000078, "Wrong size on UWrestlerStateTreeTask_ConEnemyToMassAI"); \ +static_assert(offsetof(UWrestlerStateTreeTask_ConEnemyToMassAI, ConvertDelay) == 0x000054, "Member 'UWrestlerStateTreeTask_ConEnemyToMassAI::ConvertDelay' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_ConEnemyToMassAI, EnemyAIActorTagsToIgnore) == 0x000058, "Member 'UWrestlerStateTreeTask_ConEnemyToMassAI::EnemyAIActorTagsToIgnore' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_EndInvestigation \ +static_assert(alignof(UWrestlerStateTreeTask_EndInvestigation) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_EndInvestigation"); \ +static_assert(sizeof(UWrestlerStateTreeTask_EndInvestigation) == 0x000048, "Wrong size on UWrestlerStateTreeTask_EndInvestigation"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_Reaction \ +static_assert(alignof(UWrestlerStateTreeTask_Reaction) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_Reaction"); \ +static_assert(sizeof(UWrestlerStateTreeTask_Reaction) == 0x000068, "Wrong size on UWrestlerStateTreeTask_Reaction"); \ +static_assert(offsetof(UWrestlerStateTreeTask_Reaction, Montage) == 0x000048, "Member 'UWrestlerStateTreeTask_Reaction::Montage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_Reaction, Bark) == 0x000050, "Member 'UWrestlerStateTreeTask_Reaction::Bark' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_RunBehaviorTree \ +static_assert(alignof(UWrestlerStateTreeTask_RunBehaviorTree) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_RunBehaviorTree"); \ +static_assert(sizeof(UWrestlerStateTreeTask_RunBehaviorTree) == 0x000080, "Wrong size on UWrestlerStateTreeTask_RunBehaviorTree"); \ +static_assert(offsetof(UWrestlerStateTreeTask_RunBehaviorTree, BehaviorTree) == 0x000048, "Member 'UWrestlerStateTreeTask_RunBehaviorTree::BehaviorTree' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_RunBehaviorTree, bSingleRun) == 0x000070, "Member 'UWrestlerStateTreeTask_RunBehaviorTree::bSingleRun' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerStateTreeTask_RunBehaviorTree, BehaviorTag) == 0x000074, "Member 'UWrestlerStateTreeTask_RunBehaviorTree::BehaviorTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerStateTreeTask_SetSpeed \ +static_assert(alignof(UWrestlerStateTreeTask_SetSpeed) == 0x000008, "Wrong alignment on UWrestlerStateTreeTask_SetSpeed"); \ +static_assert(sizeof(UWrestlerStateTreeTask_SetSpeed) == 0x000050, "Wrong size on UWrestlerStateTreeTask_SetSpeed"); \ +static_assert(offsetof(UWrestlerStateTreeTask_SetSpeed, Speed) == 0x000048, "Member 'UWrestlerStateTreeTask_SetSpeed::Speed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerStealthCoverVolume \ +static_assert(alignof(AWrestlerStealthCoverVolume) == 0x000008, "Wrong alignment on AWrestlerStealthCoverVolume"); \ +static_assert(sizeof(AWrestlerStealthCoverVolume) == 0x0002D0, "Wrong size on AWrestlerStealthCoverVolume"); \ + +#define DUMPER7_ASSERTS_UWrestlerStunRegenExecution \ +static_assert(alignof(UWrestlerStunRegenExecution) == 0x000008, "Wrong alignment on UWrestlerStunRegenExecution"); \ +static_assert(sizeof(UWrestlerStunRegenExecution) == 0x000040, "Wrong size on UWrestlerStunRegenExecution"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetableActorInterface_OverrideTargetViewPoint \ +static_assert(alignof(WrestlerTargetableActorInterface_OverrideTargetViewPoint) == 0x000008, "Wrong alignment on WrestlerTargetableActorInterface_OverrideTargetViewPoint"); \ +static_assert(sizeof(WrestlerTargetableActorInterface_OverrideTargetViewPoint) == 0x000030, "Wrong size on WrestlerTargetableActorInterface_OverrideTargetViewPoint"); \ +static_assert(offsetof(WrestlerTargetableActorInterface_OverrideTargetViewPoint, OutLocation) == 0x000000, "Member 'WrestlerTargetableActorInterface_OverrideTargetViewPoint::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetableActorInterface_OverrideTargetViewPoint, OutRotation) == 0x000018, "Member 'WrestlerTargetableActorInterface_OverrideTargetViewPoint::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetableActorInterface_IsTargetable \ +static_assert(alignof(WrestlerTargetableActorInterface_IsTargetable) == 0x000001, "Wrong alignment on WrestlerTargetableActorInterface_IsTargetable"); \ +static_assert(sizeof(WrestlerTargetableActorInterface_IsTargetable) == 0x000001, "Wrong size on WrestlerTargetableActorInterface_IsTargetable"); \ +static_assert(offsetof(WrestlerTargetableActorInterface_IsTargetable, ReturnValue) == 0x000000, "Member 'WrestlerTargetableActorInterface_IsTargetable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerTargetableActorInterface \ +static_assert(alignof(IWrestlerTargetableActorInterface) == 0x000001, "Wrong alignment on IWrestlerTargetableActorInterface"); \ +static_assert(sizeof(IWrestlerTargetableActorInterface) == 0x000001, "Wrong size on IWrestlerTargetableActorInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerTargetAssistDataAsset \ +static_assert(alignof(UWrestlerTargetAssistDataAsset) == 0x000008, "Wrong alignment on UWrestlerTargetAssistDataAsset"); \ +static_assert(sizeof(UWrestlerTargetAssistDataAsset) == 0x000090, "Wrong size on UWrestlerTargetAssistDataAsset"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, DistanceThreshold) == 0x000030, "Member 'UWrestlerTargetAssistDataAsset::DistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, AngleThreshold) == 0x000034, "Member 'UWrestlerTargetAssistDataAsset::AngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, WeightDistance) == 0x000038, "Member 'UWrestlerTargetAssistDataAsset::WeightDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, WeightAngle) == 0x00003C, "Member 'UWrestlerTargetAssistDataAsset::WeightAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, QueryChannel) == 0x000040, "Member 'UWrestlerTargetAssistDataAsset::QueryChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, IsReachableChannel) == 0x000041, "Member 'UWrestlerTargetAssistDataAsset::IsReachableChannel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, bShouldBeReachable) == 0x000042, "Member 'UWrestlerTargetAssistDataAsset::bShouldBeReachable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, Filter) == 0x000048, "Member 'UWrestlerTargetAssistDataAsset::Filter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetAssistDataAsset, Reticle) == 0x000068, "Member 'UWrestlerTargetAssistDataAsset::Reticle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetingControllerInterface_GetSoftLockTarget \ +static_assert(alignof(WrestlerTargetingControllerInterface_GetSoftLockTarget) == 0x000008, "Wrong alignment on WrestlerTargetingControllerInterface_GetSoftLockTarget"); \ +static_assert(sizeof(WrestlerTargetingControllerInterface_GetSoftLockTarget) == 0x000008, "Wrong size on WrestlerTargetingControllerInterface_GetSoftLockTarget"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_GetSoftLockTarget, OutSoftLockTarget) == 0x000000, "Member 'WrestlerTargetingControllerInterface_GetSoftLockTarget::OutSoftLockTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetingControllerInterface_GetTargetActorAndLocation \ +static_assert(alignof(WrestlerTargetingControllerInterface_GetTargetActorAndLocation) == 0x000008, "Wrong alignment on WrestlerTargetingControllerInterface_GetTargetActorAndLocation"); \ +static_assert(sizeof(WrestlerTargetingControllerInterface_GetTargetActorAndLocation) == 0x000020, "Wrong size on WrestlerTargetingControllerInterface_GetTargetActorAndLocation"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_GetTargetActorAndLocation, OutCurrentTarget) == 0x000000, "Member 'WrestlerTargetingControllerInterface_GetTargetActorAndLocation::OutCurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_GetTargetActorAndLocation, OutLocation) == 0x000008, "Member 'WrestlerTargetingControllerInterface_GetTargetActorAndLocation::OutLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetingControllerInterface_IsCurrentlyTargeting \ +static_assert(alignof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting) == 0x000008, "Wrong alignment on WrestlerTargetingControllerInterface_IsCurrentlyTargeting"); \ +static_assert(sizeof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting) == 0x000020, "Wrong size on WrestlerTargetingControllerInterface_IsCurrentlyTargeting"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting, bIsTargeting) == 0x000000, "Member 'WrestlerTargetingControllerInterface_IsCurrentlyTargeting::bIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting, CurrentTarget) == 0x000008, "Member 'WrestlerTargetingControllerInterface_IsCurrentlyTargeting::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting, bOutIsTargeting) == 0x000010, "Member 'WrestlerTargetingControllerInterface_IsCurrentlyTargeting::bOutIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_IsCurrentlyTargeting, OutCurrentTarget) == 0x000018, "Member 'WrestlerTargetingControllerInterface_IsCurrentlyTargeting::OutCurrentTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetingControllerInterface_OverrideTarget \ +static_assert(alignof(WrestlerTargetingControllerInterface_OverrideTarget) == 0x000008, "Wrong alignment on WrestlerTargetingControllerInterface_OverrideTarget"); \ +static_assert(sizeof(WrestlerTargetingControllerInterface_OverrideTarget) == 0x000008, "Wrong size on WrestlerTargetingControllerInterface_OverrideTarget"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_OverrideTarget, InActor) == 0x000000, "Member 'WrestlerTargetingControllerInterface_OverrideTarget::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetingControllerInterface_SwitchedTarget \ +static_assert(alignof(WrestlerTargetingControllerInterface_SwitchedTarget) == 0x000008, "Wrong alignment on WrestlerTargetingControllerInterface_SwitchedTarget"); \ +static_assert(sizeof(WrestlerTargetingControllerInterface_SwitchedTarget) == 0x000020, "Wrong size on WrestlerTargetingControllerInterface_SwitchedTarget"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_SwitchedTarget, CurrentTarget) == 0x000000, "Member 'WrestlerTargetingControllerInterface_SwitchedTarget::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_SwitchedTarget, PreviousTarget) == 0x000008, "Member 'WrestlerTargetingControllerInterface_SwitchedTarget::PreviousTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_SwitchedTarget, OutCurrentTarget) == 0x000010, "Member 'WrestlerTargetingControllerInterface_SwitchedTarget::OutCurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetingControllerInterface_SwitchedTarget, OutPreviousTarget) == 0x000018, "Member 'WrestlerTargetingControllerInterface_SwitchedTarget::OutPreviousTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerTargetingControllerInterface \ +static_assert(alignof(IWrestlerTargetingControllerInterface) == 0x000001, "Wrong alignment on IWrestlerTargetingControllerInterface"); \ +static_assert(sizeof(IWrestlerTargetingControllerInterface) == 0x000001, "Wrong size on IWrestlerTargetingControllerInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerTargetMotionTracker_TrackTarget \ +static_assert(alignof(WrestlerTargetMotionTracker_TrackTarget) == 0x000008, "Wrong alignment on WrestlerTargetMotionTracker_TrackTarget"); \ +static_assert(sizeof(WrestlerTargetMotionTracker_TrackTarget) == 0x000040, "Wrong size on WrestlerTargetMotionTracker_TrackTarget"); \ +static_assert(offsetof(WrestlerTargetMotionTracker_TrackTarget, InTarget) == 0x000000, "Member 'WrestlerTargetMotionTracker_TrackTarget::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetMotionTracker_TrackTarget, InMoveSpeed) == 0x000008, "Member 'WrestlerTargetMotionTracker_TrackTarget::InMoveSpeed' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetMotionTracker_TrackTarget, InRotationRate) == 0x00000C, "Member 'WrestlerTargetMotionTracker_TrackTarget::InRotationRate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetMotionTracker_TrackTarget, OutLocation) == 0x000010, "Member 'WrestlerTargetMotionTracker_TrackTarget::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTargetMotionTracker_TrackTarget, OutRotation) == 0x000028, "Member 'WrestlerTargetMotionTracker_TrackTarget::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTargetMotionTracker \ +static_assert(alignof(UWrestlerTargetMotionTracker) == 0x000008, "Wrong alignment on UWrestlerTargetMotionTracker"); \ +static_assert(sizeof(UWrestlerTargetMotionTracker) == 0x0000B8, "Wrong size on UWrestlerTargetMotionTracker"); \ +static_assert(offsetof(UWrestlerTargetMotionTracker, MoveToTargetDistance) == 0x0000A0, "Member 'UWrestlerTargetMotionTracker::MoveToTargetDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetMotionTracker, MoveAlongTargetForwardDistance) == 0x0000A4, "Member 'UWrestlerTargetMotionTracker::MoveAlongTargetForwardDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetMotionTracker, AxisExponent) == 0x0000A8, "Member 'UWrestlerTargetMotionTracker::AxisExponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetMotionTracker, ForwardMultiplier) == 0x0000AC, "Member 'UWrestlerTargetMotionTracker::ForwardMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTargetMotionTracker, BackwardMultiplier) == 0x0000B0, "Member 'UWrestlerTargetMotionTracker::BackwardMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTargetType_UseOwner \ +static_assert(alignof(UWrestlerTargetType_UseOwner) == 0x000008, "Wrong alignment on UWrestlerTargetType_UseOwner"); \ +static_assert(sizeof(UWrestlerTargetType_UseOwner) == 0x000028, "Wrong size on UWrestlerTargetType_UseOwner"); \ + +#define DUMPER7_ASSERTS_UWrestlerTask \ +static_assert(alignof(UWrestlerTask) == 0x000008, "Wrong alignment on UWrestlerTask"); \ +static_assert(sizeof(UWrestlerTask) == 0x000068, "Wrong size on UWrestlerTask"); \ +static_assert(offsetof(UWrestlerTask, OnComplete) == 0x000028, "Member 'UWrestlerTask::OnComplete' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, TypeTag) == 0x000038, "Member 'UWrestlerTask::TypeTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, TaskTag) == 0x000040, "Member 'UWrestlerTask::TaskTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, TaskOwner) == 0x000048, "Member 'UWrestlerTask::TaskOwner' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, ExecutableStrategy) == 0x000050, "Member 'UWrestlerTask::ExecutableStrategy' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, TaskStatus) == 0x000058, "Member 'UWrestlerTask::TaskStatus' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, TaskCooldownSeconds) == 0x00005C, "Member 'UWrestlerTask::TaskCooldownSeconds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTask, bIsCooldownForAllAgents) == 0x000060, "Member 'UWrestlerTask::bIsCooldownForAllAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskBoard \ +static_assert(alignof(UWrestlerTaskBoard) == 0x000008, "Wrong alignment on UWrestlerTaskBoard"); \ +static_assert(sizeof(UWrestlerTaskBoard) == 0x000080, "Wrong size on UWrestlerTaskBoard"); \ +static_assert(offsetof(UWrestlerTaskBoard, Tasks) == 0x000028, "Member 'UWrestlerTaskBoard::Tasks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskBoard, ActiveTask) == 0x000038, "Member 'UWrestlerTaskBoard::ActiveTask' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskBoard, NextTaskIndex) == 0x000040, "Member 'UWrestlerTaskBoard::NextTaskIndex' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskBoard, TaskDistributor) == 0x000048, "Member 'UWrestlerTaskBoard::TaskDistributor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskBoard, WorldContext) == 0x000050, "Member 'UWrestlerTaskBoard::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskBoard, bIsPaused) == 0x000058, "Member 'UWrestlerTaskBoard::bIsPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskCooldownManager \ +static_assert(alignof(UWrestlerTaskCooldownManager) == 0x000008, "Wrong alignment on UWrestlerTaskCooldownManager"); \ +static_assert(sizeof(UWrestlerTaskCooldownManager) == 0x000088, "Wrong size on UWrestlerTaskCooldownManager"); \ +static_assert(offsetof(UWrestlerTaskCooldownManager, AgentTasksInCooldown) == 0x000028, "Member 'UWrestlerTaskCooldownManager::AgentTasksInCooldown' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskCooldownManager, TasksInCooldownForAllAgents) == 0x000078, "Member 'UWrestlerTaskCooldownManager::TasksInCooldownForAllAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskData \ +static_assert(alignof(UWrestlerTaskData) == 0x000008, "Wrong alignment on UWrestlerTaskData"); \ +static_assert(sizeof(UWrestlerTaskData) == 0x000040, "Wrong size on UWrestlerTaskData"); \ +static_assert(offsetof(UWrestlerTaskData, TaskTag) == 0x000030, "Member 'UWrestlerTaskData::TaskTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskData, CooldownSeconds) == 0x000038, "Member 'UWrestlerTaskData::CooldownSeconds' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskData, bIsCooldownForAllAgents) == 0x00003C, "Member 'UWrestlerTaskData::bIsCooldownForAllAgents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskData_Behaviour \ +static_assert(alignof(UWrestlerTaskData_Behaviour) == 0x000008, "Wrong alignment on UWrestlerTaskData_Behaviour"); \ +static_assert(sizeof(UWrestlerTaskData_Behaviour) == 0x000078, "Wrong size on UWrestlerTaskData_Behaviour"); \ +static_assert(offsetof(UWrestlerTaskData_Behaviour, TaskScores) == 0x000040, "Member 'UWrestlerTaskData_Behaviour::TaskScores' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskData_Behaviour, BehaviourTree) == 0x000050, "Member 'UWrestlerTaskData_Behaviour::BehaviourTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskData_AbilitySequence \ +static_assert(alignof(UWrestlerTaskData_AbilitySequence) == 0x000008, "Wrong alignment on UWrestlerTaskData_AbilitySequence"); \ +static_assert(sizeof(UWrestlerTaskData_AbilitySequence) == 0x000088, "Wrong size on UWrestlerTaskData_AbilitySequence"); \ +static_assert(offsetof(UWrestlerTaskData_AbilitySequence, AbilitySequence) == 0x000078, "Member 'UWrestlerTaskData_AbilitySequence::AbilitySequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskDebugMediator \ +static_assert(alignof(UWrestlerTaskDebugMediator) == 0x000008, "Wrong alignment on UWrestlerTaskDebugMediator"); \ +static_assert(sizeof(UWrestlerTaskDebugMediator) == 0x0000A0, "Wrong size on UWrestlerTaskDebugMediator"); \ +static_assert(offsetof(UWrestlerTaskDebugMediator, DebugTaskEnemyData) == 0x000028, "Member 'UWrestlerTaskDebugMediator::DebugTaskEnemyData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDebugMediator, bDebugActive) == 0x000098, "Member 'UWrestlerTaskDebugMediator::bDebugActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskDistributor_HandleEnemyRemoved \ +static_assert(alignof(WrestlerTaskDistributor_HandleEnemyRemoved) == 0x000008, "Wrong alignment on WrestlerTaskDistributor_HandleEnemyRemoved"); \ +static_assert(sizeof(WrestlerTaskDistributor_HandleEnemyRemoved) == 0x000008, "Wrong size on WrestlerTaskDistributor_HandleEnemyRemoved"); \ +static_assert(offsetof(WrestlerTaskDistributor_HandleEnemyRemoved, InCharacter) == 0x000000, "Member 'WrestlerTaskDistributor_HandleEnemyRemoved::InCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskDistributor \ +static_assert(alignof(UWrestlerTaskDistributor) == 0x000008, "Wrong alignment on UWrestlerTaskDistributor"); \ +static_assert(sizeof(UWrestlerTaskDistributor) == 0x000098, "Wrong size on UWrestlerTaskDistributor"); \ +static_assert(offsetof(UWrestlerTaskDistributor, OnTaskAssigned) == 0x000028, "Member 'UWrestlerTaskDistributor::OnTaskAssigned' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDistributor, TaskConfig) == 0x000038, "Member 'UWrestlerTaskDistributor::TaskConfig' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDistributor, AssignedTasks) == 0x000040, "Member 'UWrestlerTaskDistributor::AssignedTasks' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskDistributor, TaskFilter) == 0x000090, "Member 'UWrestlerTaskDistributor::TaskFilter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskFilter \ +static_assert(alignof(UWrestlerTaskFilter) == 0x000008, "Wrong alignment on UWrestlerTaskFilter"); \ +static_assert(sizeof(UWrestlerTaskFilter) == 0x000030, "Wrong size on UWrestlerTaskFilter"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_AgentHealth \ +static_assert(alignof(UWrestlerTaskScore_AgentHealth) == 0x000008, "Wrong alignment on UWrestlerTaskScore_AgentHealth"); \ +static_assert(sizeof(UWrestlerTaskScore_AgentHealth) == 0x000030, "Wrong size on UWrestlerTaskScore_AgentHealth"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskScore_Random \ +static_assert(alignof(UWrestlerTaskScore_Random) == 0x000008, "Wrong alignment on UWrestlerTaskScore_Random"); \ +static_assert(sizeof(UWrestlerTaskScore_Random) == 0x000030, "Wrong size on UWrestlerTaskScore_Random"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_GetTaskCooldownManager \ +static_assert(alignof(WrestlerTaskSource_GetTaskCooldownManager) == 0x000008, "Wrong alignment on WrestlerTaskSource_GetTaskCooldownManager"); \ +static_assert(sizeof(WrestlerTaskSource_GetTaskCooldownManager) == 0x000008, "Wrong size on WrestlerTaskSource_GetTaskCooldownManager"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskCooldownManager, ReturnValue) == 0x000000, "Member 'WrestlerTaskSource_GetTaskCooldownManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_GetTaskDebugManager \ +static_assert(alignof(WrestlerTaskSource_GetTaskDebugManager) == 0x000008, "Wrong alignment on WrestlerTaskSource_GetTaskDebugManager"); \ +static_assert(sizeof(WrestlerTaskSource_GetTaskDebugManager) == 0x000008, "Wrong size on WrestlerTaskSource_GetTaskDebugManager"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskDebugManager, ReturnValue) == 0x000000, "Member 'WrestlerTaskSource_GetTaskDebugManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_GetTaskDispenser \ +static_assert(alignof(WrestlerTaskSource_GetTaskDispenser) == 0x000008, "Wrong alignment on WrestlerTaskSource_GetTaskDispenser"); \ +static_assert(sizeof(WrestlerTaskSource_GetTaskDispenser) == 0x000010, "Wrong size on WrestlerTaskSource_GetTaskDispenser"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskDispenser, InWorld) == 0x000000, "Member 'WrestlerTaskSource_GetTaskDispenser::InWorld' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskDispenser, ReturnValue) == 0x000008, "Member 'WrestlerTaskSource_GetTaskDispenser::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_GetTaskDistributor \ +static_assert(alignof(WrestlerTaskSource_GetTaskDistributor) == 0x000008, "Wrong alignment on WrestlerTaskSource_GetTaskDistributor"); \ +static_assert(sizeof(WrestlerTaskSource_GetTaskDistributor) == 0x000010, "Wrong size on WrestlerTaskSource_GetTaskDistributor"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskDistributor, InWorld) == 0x000000, "Member 'WrestlerTaskSource_GetTaskDistributor::InWorld' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskSource_GetTaskDistributor, ReturnValue) == 0x000008, "Member 'WrestlerTaskSource_GetTaskDistributor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_SetPaused \ +static_assert(alignof(WrestlerTaskSource_SetPaused) == 0x000001, "Wrong alignment on WrestlerTaskSource_SetPaused"); \ +static_assert(sizeof(WrestlerTaskSource_SetPaused) == 0x000001, "Wrong size on WrestlerTaskSource_SetPaused"); \ +static_assert(offsetof(WrestlerTaskSource_SetPaused, bIsPaused) == 0x000000, "Member 'WrestlerTaskSource_SetPaused::bIsPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTaskSource_SetTaskBoardByTag \ +static_assert(alignof(WrestlerTaskSource_SetTaskBoardByTag) == 0x000008, "Wrong alignment on WrestlerTaskSource_SetTaskBoardByTag"); \ +static_assert(sizeof(WrestlerTaskSource_SetTaskBoardByTag) == 0x000018, "Wrong size on WrestlerTaskSource_SetTaskBoardByTag"); \ +static_assert(offsetof(WrestlerTaskSource_SetTaskBoardByTag, World) == 0x000000, "Member 'WrestlerTaskSource_SetTaskBoardByTag::World' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskSource_SetTaskBoardByTag, InTaskBoardTag) == 0x000008, "Member 'WrestlerTaskSource_SetTaskBoardByTag::InTaskBoardTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTaskSource_SetTaskBoardByTag, ReturnValue) == 0x000010, "Member 'WrestlerTaskSource_SetTaskBoardByTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskSource \ +static_assert(alignof(UWrestlerTaskSource) == 0x000008, "Wrong alignment on UWrestlerTaskSource"); \ +static_assert(sizeof(UWrestlerTaskSource) == 0x000070, "Wrong size on UWrestlerTaskSource"); \ +static_assert(offsetof(UWrestlerTaskSource, ConfigDataName) == 0x000030, "Member 'UWrestlerTaskSource::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskDistributor) == 0x000038, "Member 'UWrestlerTaskSource::TaskDistributor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskBoards) == 0x000040, "Member 'UWrestlerTaskSource::TaskBoards' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskCooldownManager) == 0x000050, "Member 'UWrestlerTaskSource::TaskCooldownManager' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskDebugManager) == 0x000058, "Member 'UWrestlerTaskSource::TaskDebugManager' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskDispenser) == 0x000060, "Member 'UWrestlerTaskSource::TaskDispenser' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskSource, TaskConfig) == 0x000068, "Member 'UWrestlerTaskSource::TaskConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTaskStrategy_AbilitySequence \ +static_assert(alignof(UWrestlerTaskStrategy_AbilitySequence) == 0x000008, "Wrong alignment on UWrestlerTaskStrategy_AbilitySequence"); \ +static_assert(sizeof(UWrestlerTaskStrategy_AbilitySequence) == 0x000060, "Wrong size on UWrestlerTaskStrategy_AbilitySequence"); \ +static_assert(offsetof(UWrestlerTaskStrategy_AbilitySequence, AbilitySequence) == 0x000038, "Member 'UWrestlerTaskStrategy_AbilitySequence::AbilitySequence' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskStrategy_AbilitySequence, AbilitySystemComponent) == 0x000048, "Member 'UWrestlerTaskStrategy_AbilitySequence::AbilitySystemComponent' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTaskStrategy_AbilitySequence, CurrentActiveAbility) == 0x000050, "Member 'UWrestlerTaskStrategy_AbilitySequence::CurrentActiveAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTeamAgentInterface_BP_SetGenericTeamId \ +static_assert(alignof(WrestlerTeamAgentInterface_BP_SetGenericTeamId) == 0x000001, "Wrong alignment on WrestlerTeamAgentInterface_BP_SetGenericTeamId"); \ +static_assert(sizeof(WrestlerTeamAgentInterface_BP_SetGenericTeamId) == 0x000001, "Wrong size on WrestlerTeamAgentInterface_BP_SetGenericTeamId"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_BP_SetGenericTeamId, InOther) == 0x000000, "Member 'WrestlerTeamAgentInterface_BP_SetGenericTeamId::InOther' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTeamAgentInterface_SetGameTeamId \ +static_assert(alignof(WrestlerTeamAgentInterface_SetGameTeamId) == 0x000001, "Wrong alignment on WrestlerTeamAgentInterface_SetGameTeamId"); \ +static_assert(sizeof(WrestlerTeamAgentInterface_SetGameTeamId) == 0x000001, "Wrong size on WrestlerTeamAgentInterface_SetGameTeamId"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_SetGameTeamId, InNewTeamID) == 0x000000, "Member 'WrestlerTeamAgentInterface_SetGameTeamId::InNewTeamID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTeamAgentInterface_BP_GetGenericTeamId \ +static_assert(alignof(WrestlerTeamAgentInterface_BP_GetGenericTeamId) == 0x000001, "Wrong alignment on WrestlerTeamAgentInterface_BP_GetGenericTeamId"); \ +static_assert(sizeof(WrestlerTeamAgentInterface_BP_GetGenericTeamId) == 0x000001, "Wrong size on WrestlerTeamAgentInterface_BP_GetGenericTeamId"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_BP_GetGenericTeamId, ReturnValue) == 0x000000, "Member 'WrestlerTeamAgentInterface_BP_GetGenericTeamId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards \ +static_assert(alignof(WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards) == 0x000008, "Wrong alignment on WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards"); \ +static_assert(sizeof(WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards) == 0x000010, "Wrong size on WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards, InOther) == 0x000000, "Member 'WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards::InOther' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards, ReturnValue) == 0x000008, "Member 'WrestlerTeamAgentInterface_BP_GetTeamAttitudeTowards::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTeamAgentInterface_GetGameTeamId \ +static_assert(alignof(WrestlerTeamAgentInterface_GetGameTeamId) == 0x000001, "Wrong alignment on WrestlerTeamAgentInterface_GetGameTeamId"); \ +static_assert(sizeof(WrestlerTeamAgentInterface_GetGameTeamId) == 0x000001, "Wrong size on WrestlerTeamAgentInterface_GetGameTeamId"); \ +static_assert(offsetof(WrestlerTeamAgentInterface_GetGameTeamId, ReturnValue) == 0x000000, "Member 'WrestlerTeamAgentInterface_GetGameTeamId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerTeamAgentInterface \ +static_assert(alignof(IWrestlerTeamAgentInterface) == 0x000001, "Wrong alignment on IWrestlerTeamAgentInterface"); \ +static_assert(sizeof(IWrestlerTeamAgentInterface) == 0x000001, "Wrong size on IWrestlerTeamAgentInterface"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_CanInteract \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_CanInteract) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_CanInteract"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_CanInteract) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_CanInteract"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_CanInteract, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_CanPull \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_CanPull) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_CanPull"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_CanPull) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_CanPull"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_CanPull, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetCurrentAmmo \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetCurrentAmmo) == 0x000004, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetCurrentAmmo"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetCurrentAmmo) == 0x000004, "Wrong size on WrestlerTelekinesisTargetInterface_GetCurrentAmmo"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetDataAsset \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetDataAsset) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetDataAsset"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetDataAsset) == 0x000008, "Wrong size on WrestlerTelekinesisTargetInterface_GetDataAsset"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetDataAsset, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetHandleLocation \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetHandleLocation) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetHandleLocation"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetHandleLocation) == 0x000018, "Wrong size on WrestlerTelekinesisTargetInterface_GetHandleLocation"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetHandleLocation, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetInteractAnimation \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetInteractAnimation) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetInteractAnimation"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetInteractAnimation) == 0x000008, "Wrong size on WrestlerTelekinesisTargetInterface_GetInteractAnimation"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetInteractObjective \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetInteractObjective) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetInteractObjective"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetInteractObjective) == 0x000008, "Wrong size on WrestlerTelekinesisTargetInterface_GetInteractObjective"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetInteractObjective, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetPointAxis \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetPointAxis) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetPointAxis"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetPointAxis) == 0x000030, "Wrong size on WrestlerTelekinesisTargetInterface_GetPointAxis"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetPointAxis, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetPointAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetScoreBias \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetScoreBias) == 0x000004, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetScoreBias"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetScoreBias) == 0x000004, "Wrong size on WrestlerTelekinesisTargetInterface_GetScoreBias"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetScoreBias, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetThrowableComponent \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetThrowableComponent) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetThrowableComponent"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetThrowableComponent) == 0x000008, "Wrong size on WrestlerTelekinesisTargetInterface_GetThrowableComponent"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetThrowableOrientation \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetThrowableOrientation) == 0x000008, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetThrowableOrientation"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetThrowableOrientation) == 0x000020, "Wrong size on WrestlerTelekinesisTargetInterface_GetThrowableOrientation"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'WrestlerTelekinesisTargetInterface_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetThrowableType \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetThrowableType) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetThrowableType"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetThrowableType) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_GetThrowableType"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetThrowableType, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_IsExplosive \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_IsExplosive) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_IsExplosive"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_IsExplosive) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_IsExplosive"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_IsExplosive, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_IsPointed \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_IsPointed) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_IsPointed"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_IsPointed) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_IsPointed"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_IsPointed, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_IsThrowable \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_IsThrowable) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_IsThrowable"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_IsThrowable) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_IsThrowable"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_IsThrowable, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTelekinesisTargetInterface_GetTargetType \ +static_assert(alignof(WrestlerTelekinesisTargetInterface_GetTargetType) == 0x000001, "Wrong alignment on WrestlerTelekinesisTargetInterface_GetTargetType"); \ +static_assert(sizeof(WrestlerTelekinesisTargetInterface_GetTargetType) == 0x000001, "Wrong size on WrestlerTelekinesisTargetInterface_GetTargetType"); \ +static_assert(offsetof(WrestlerTelekinesisTargetInterface_GetTargetType, ReturnValue) == 0x000000, "Member 'WrestlerTelekinesisTargetInterface_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerTelekinesisTargetInterface \ +static_assert(alignof(IWrestlerTelekinesisTargetInterface) == 0x000001, "Wrong alignment on IWrestlerTelekinesisTargetInterface"); \ +static_assert(sizeof(IWrestlerTelekinesisTargetInterface) == 0x000001, "Wrong size on IWrestlerTelekinesisTargetInterface"); \ + +#define DUMPER7_ASSERTS_UWrestlerWithTagsStateTreeTask \ +static_assert(alignof(UWrestlerWithTagsStateTreeTask) == 0x000008, "Wrong alignment on UWrestlerWithTagsStateTreeTask"); \ +static_assert(sizeof(UWrestlerWithTagsStateTreeTask) == 0x000068, "Wrong size on UWrestlerWithTagsStateTreeTask"); \ +static_assert(offsetof(UWrestlerWithTagsStateTreeTask, StateTags) == 0x000048, "Member 'UWrestlerWithTagsStateTreeTask::StateTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTimedWithTagsStateTreeTask \ +static_assert(alignof(UWrestlerTimedWithTagsStateTreeTask) == 0x000008, "Wrong alignment on UWrestlerTimedWithTagsStateTreeTask"); \ +static_assert(sizeof(UWrestlerTimedWithTagsStateTreeTask) == 0x000078, "Wrong size on UWrestlerTimedWithTagsStateTreeTask"); \ +static_assert(offsetof(UWrestlerTimedWithTagsStateTreeTask, Duration) == 0x000068, "Member 'UWrestlerTimedWithTagsStateTreeTask::Duration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTimedWithTagsStateTreeTask, CurrentStateName) == 0x00006C, "Member 'UWrestlerTimedWithTagsStateTreeTask::CurrentStateName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTimedWithTagsStateTreeTask, PassedTime) == 0x000074, "Member 'UWrestlerTimedWithTagsStateTreeTask::PassedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTimeManagerSubsystem_CreateTimeDilation \ +static_assert(alignof(WrestlerTimeManagerSubsystem_CreateTimeDilation) == 0x000008, "Wrong alignment on WrestlerTimeManagerSubsystem_CreateTimeDilation"); \ +static_assert(sizeof(WrestlerTimeManagerSubsystem_CreateTimeDilation) == 0x000038, "Wrong size on WrestlerTimeManagerSubsystem_CreateTimeDilation"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_CreateTimeDilation, Instigator) == 0x000000, "Member 'WrestlerTimeManagerSubsystem_CreateTimeDilation::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_CreateTimeDilation, Handle) == 0x000008, "Member 'WrestlerTimeManagerSubsystem_CreateTimeDilation::Handle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_CreateTimeDilation, Config) == 0x000010, "Member 'WrestlerTimeManagerSubsystem_CreateTimeDilation::Config' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTimeManagerSubsystem_GetCurrentTimeDilation \ +static_assert(alignof(WrestlerTimeManagerSubsystem_GetCurrentTimeDilation) == 0x000008, "Wrong alignment on WrestlerTimeManagerSubsystem_GetCurrentTimeDilation"); \ +static_assert(sizeof(WrestlerTimeManagerSubsystem_GetCurrentTimeDilation) == 0x000010, "Wrong size on WrestlerTimeManagerSubsystem_GetCurrentTimeDilation"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_GetCurrentTimeDilation, Instigator) == 0x000000, "Member 'WrestlerTimeManagerSubsystem_GetCurrentTimeDilation::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_GetCurrentTimeDilation, ReturnValue) == 0x000008, "Member 'WrestlerTimeManagerSubsystem_GetCurrentTimeDilation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTimeManagerSubsystem_RemoveAllTimeDilation \ +static_assert(alignof(WrestlerTimeManagerSubsystem_RemoveAllTimeDilation) == 0x000008, "Wrong alignment on WrestlerTimeManagerSubsystem_RemoveAllTimeDilation"); \ +static_assert(sizeof(WrestlerTimeManagerSubsystem_RemoveAllTimeDilation) == 0x000008, "Wrong size on WrestlerTimeManagerSubsystem_RemoveAllTimeDilation"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_RemoveAllTimeDilation, Instigator) == 0x000000, "Member 'WrestlerTimeManagerSubsystem_RemoveAllTimeDilation::Instigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTimeManagerSubsystem_RemoveTimeDilation \ +static_assert(alignof(WrestlerTimeManagerSubsystem_RemoveTimeDilation) == 0x000008, "Wrong alignment on WrestlerTimeManagerSubsystem_RemoveTimeDilation"); \ +static_assert(sizeof(WrestlerTimeManagerSubsystem_RemoveTimeDilation) == 0x000010, "Wrong size on WrestlerTimeManagerSubsystem_RemoveTimeDilation"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_RemoveTimeDilation, Instigator) == 0x000000, "Member 'WrestlerTimeManagerSubsystem_RemoveTimeDilation::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_RemoveTimeDilation, Handle) == 0x000008, "Member 'WrestlerTimeManagerSubsystem_RemoveTimeDilation::Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTimeManagerSubsystem_SetTimeDilation \ +static_assert(alignof(WrestlerTimeManagerSubsystem_SetTimeDilation) == 0x000008, "Wrong alignment on WrestlerTimeManagerSubsystem_SetTimeDilation"); \ +static_assert(sizeof(WrestlerTimeManagerSubsystem_SetTimeDilation) == 0x000010, "Wrong size on WrestlerTimeManagerSubsystem_SetTimeDilation"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_SetTimeDilation, Instigator) == 0x000000, "Member 'WrestlerTimeManagerSubsystem_SetTimeDilation::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_SetTimeDilation, Handle) == 0x000008, "Member 'WrestlerTimeManagerSubsystem_SetTimeDilation::Handle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTimeManagerSubsystem_SetTimeDilation, TimeDilation) == 0x00000C, "Member 'WrestlerTimeManagerSubsystem_SetTimeDilation::TimeDilation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTimeManagerSubsystem \ +static_assert(alignof(UWrestlerTimeManagerSubsystem) == 0x000008, "Wrong alignment on UWrestlerTimeManagerSubsystem"); \ +static_assert(sizeof(UWrestlerTimeManagerSubsystem) == 0x000050, "Wrong size on UWrestlerTimeManagerSubsystem"); \ +static_assert(offsetof(UWrestlerTimeManagerSubsystem, TimeDilations) == 0x000038, "Member 'UWrestlerTimeManagerSubsystem::TimeDilations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTKSettings_Get \ +static_assert(alignof(WrestlerTKSettings_Get) == 0x000008, "Wrong alignment on WrestlerTKSettings_Get"); \ +static_assert(sizeof(WrestlerTKSettings_Get) == 0x000010, "Wrong size on WrestlerTKSettings_Get"); \ +static_assert(offsetof(WrestlerTKSettings_Get, InWorldContextObject) == 0x000000, "Member 'WrestlerTKSettings_Get::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTKSettings_Get, ReturnValue) == 0x000008, "Member 'WrestlerTKSettings_Get::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTKSettings \ +static_assert(alignof(UWrestlerTKSettings) == 0x000008, "Wrong alignment on UWrestlerTKSettings"); \ +static_assert(sizeof(UWrestlerTKSettings) == 0x000050, "Wrong size on UWrestlerTKSettings"); \ +static_assert(offsetof(UWrestlerTKSettings, ThrowSpeed) == 0x000048, "Member 'UWrestlerTKSettings::ThrowSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTKSettings, MaxThrowTime) == 0x00004C, "Member 'UWrestlerTKSettings::MaxThrowTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerToken_GetHolder \ +static_assert(alignof(WrestlerToken_GetHolder) == 0x000008, "Wrong alignment on WrestlerToken_GetHolder"); \ +static_assert(sizeof(WrestlerToken_GetHolder) == 0x000008, "Wrong size on WrestlerToken_GetHolder"); \ +static_assert(offsetof(WrestlerToken_GetHolder, ReturnValue) == 0x000000, "Member 'WrestlerToken_GetHolder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerToken_GetTokenState \ +static_assert(alignof(WrestlerToken_GetTokenState) == 0x000001, "Wrong alignment on WrestlerToken_GetTokenState"); \ +static_assert(sizeof(WrestlerToken_GetTokenState) == 0x000001, "Wrong size on WrestlerToken_GetTokenState"); \ +static_assert(offsetof(WrestlerToken_GetTokenState, ReturnValue) == 0x000000, "Member 'WrestlerToken_GetTokenState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerToken \ +static_assert(alignof(UWrestlerToken) == 0x000008, "Wrong alignment on UWrestlerToken"); \ +static_assert(sizeof(UWrestlerToken) == 0x000060, "Wrong size on UWrestlerToken"); \ +static_assert(offsetof(UWrestlerToken, CurrentHolder) == 0x000050, "Member 'UWrestlerToken::CurrentHolder' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerToken, TokenState) == 0x000058, "Member 'UWrestlerToken::TokenState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTokenConfigData \ +static_assert(alignof(UWrestlerTokenConfigData) == 0x000008, "Wrong alignment on UWrestlerTokenConfigData"); \ +static_assert(sizeof(UWrestlerTokenConfigData) == 0x000080, "Wrong size on UWrestlerTokenConfigData"); \ +static_assert(offsetof(UWrestlerTokenConfigData, TypeToConfig) == 0x000030, "Member 'UWrestlerTokenConfigData::TypeToConfig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_EnemiesActiveByTypeStats \ +static_assert(alignof(WrestlerTokenManager_EnemiesActiveByTypeStats) == 0x000008, "Wrong alignment on WrestlerTokenManager_EnemiesActiveByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_EnemiesActiveByTypeStats) == 0x000018, "Wrong size on WrestlerTokenManager_EnemiesActiveByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesActiveByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_EnemiesActiveByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesActiveByTypeStats, ReturnValue) == 0x000008, "Member 'WrestlerTokenManager_EnemiesActiveByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_EnemiesCooldownByTypeStats \ +static_assert(alignof(WrestlerTokenManager_EnemiesCooldownByTypeStats) == 0x000008, "Wrong alignment on WrestlerTokenManager_EnemiesCooldownByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_EnemiesCooldownByTypeStats) == 0x000018, "Wrong size on WrestlerTokenManager_EnemiesCooldownByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesCooldownByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_EnemiesCooldownByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesCooldownByTypeStats, ReturnValue) == 0x000008, "Member 'WrestlerTokenManager_EnemiesCooldownByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_EnemiesQueuedByTypeStats \ +static_assert(alignof(WrestlerTokenManager_EnemiesQueuedByTypeStats) == 0x000008, "Wrong alignment on WrestlerTokenManager_EnemiesQueuedByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_EnemiesQueuedByTypeStats) == 0x000018, "Wrong size on WrestlerTokenManager_EnemiesQueuedByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesQueuedByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_EnemiesQueuedByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_EnemiesQueuedByTypeStats, ReturnValue) == 0x000008, "Member 'WrestlerTokenManager_EnemiesQueuedByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_FreeTokensByTypeStats \ +static_assert(alignof(WrestlerTokenManager_FreeTokensByTypeStats) == 0x000004, "Wrong alignment on WrestlerTokenManager_FreeTokensByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_FreeTokensByTypeStats) == 0x000008, "Wrong size on WrestlerTokenManager_FreeTokensByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_FreeTokensByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_FreeTokensByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_FreeTokensByTypeStats, ReturnValue) == 0x000004, "Member 'WrestlerTokenManager_FreeTokensByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_GetActorsHandicap \ +static_assert(alignof(WrestlerTokenManager_GetActorsHandicap) == 0x000008, "Wrong alignment on WrestlerTokenManager_GetActorsHandicap"); \ +static_assert(sizeof(WrestlerTokenManager_GetActorsHandicap) == 0x000058, "Wrong size on WrestlerTokenManager_GetActorsHandicap"); \ +static_assert(offsetof(WrestlerTokenManager_GetActorsHandicap, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_GetActorsHandicap::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_GetActorsHandicap, ReturnValue) == 0x000008, "Member 'WrestlerTokenManager_GetActorsHandicap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_GetActorsScore \ +static_assert(alignof(WrestlerTokenManager_GetActorsScore) == 0x000008, "Wrong alignment on WrestlerTokenManager_GetActorsScore"); \ +static_assert(sizeof(WrestlerTokenManager_GetActorsScore) == 0x000058, "Wrong size on WrestlerTokenManager_GetActorsScore"); \ +static_assert(offsetof(WrestlerTokenManager_GetActorsScore, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_GetActorsScore::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_GetActorsScore, ReturnValue) == 0x000008, "Member 'WrestlerTokenManager_GetActorsScore::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_ReturnToken \ +static_assert(alignof(WrestlerTokenManager_ReturnToken) == 0x000008, "Wrong alignment on WrestlerTokenManager_ReturnToken"); \ +static_assert(sizeof(WrestlerTokenManager_ReturnToken) == 0x000018, "Wrong size on WrestlerTokenManager_ReturnToken"); \ +static_assert(offsetof(WrestlerTokenManager_ReturnToken, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_ReturnToken::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_ReturnToken, InReturnToken) == 0x000008, "Member 'WrestlerTokenManager_ReturnToken::InReturnToken' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_ReturnToken, bInDeath) == 0x000010, "Member 'WrestlerTokenManager_ReturnToken::bInDeath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_TokensActiveByTypeStats \ +static_assert(alignof(WrestlerTokenManager_TokensActiveByTypeStats) == 0x000004, "Wrong alignment on WrestlerTokenManager_TokensActiveByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_TokensActiveByTypeStats) == 0x000008, "Wrong size on WrestlerTokenManager_TokensActiveByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_TokensActiveByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_TokensActiveByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_TokensActiveByTypeStats, ReturnValue) == 0x000004, "Member 'WrestlerTokenManager_TokensActiveByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_TokensCooldownByTypeStats \ +static_assert(alignof(WrestlerTokenManager_TokensCooldownByTypeStats) == 0x000004, "Wrong alignment on WrestlerTokenManager_TokensCooldownByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_TokensCooldownByTypeStats) == 0x000008, "Wrong size on WrestlerTokenManager_TokensCooldownByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_TokensCooldownByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_TokensCooldownByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_TokensCooldownByTypeStats, ReturnValue) == 0x000004, "Member 'WrestlerTokenManager_TokensCooldownByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_TokensQueuedByTypeStats \ +static_assert(alignof(WrestlerTokenManager_TokensQueuedByTypeStats) == 0x000004, "Wrong alignment on WrestlerTokenManager_TokensQueuedByTypeStats"); \ +static_assert(sizeof(WrestlerTokenManager_TokensQueuedByTypeStats) == 0x000008, "Wrong size on WrestlerTokenManager_TokensQueuedByTypeStats"); \ +static_assert(offsetof(WrestlerTokenManager_TokensQueuedByTypeStats, InTokenType) == 0x000000, "Member 'WrestlerTokenManager_TokensQueuedByTypeStats::InTokenType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenManager_TokensQueuedByTypeStats, ReturnValue) == 0x000004, "Member 'WrestlerTokenManager_TokensQueuedByTypeStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_TotalFreeTokensStats \ +static_assert(alignof(WrestlerTokenManager_TotalFreeTokensStats) == 0x000004, "Wrong alignment on WrestlerTokenManager_TotalFreeTokensStats"); \ +static_assert(sizeof(WrestlerTokenManager_TotalFreeTokensStats) == 0x000004, "Wrong size on WrestlerTokenManager_TotalFreeTokensStats"); \ +static_assert(offsetof(WrestlerTokenManager_TotalFreeTokensStats, ReturnValue) == 0x000000, "Member 'WrestlerTokenManager_TotalFreeTokensStats::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenManager_TotalTokensInUse \ +static_assert(alignof(WrestlerTokenManager_TotalTokensInUse) == 0x000004, "Wrong alignment on WrestlerTokenManager_TotalTokensInUse"); \ +static_assert(sizeof(WrestlerTokenManager_TotalTokensInUse) == 0x000004, "Wrong size on WrestlerTokenManager_TotalTokensInUse"); \ +static_assert(offsetof(WrestlerTokenManager_TotalTokensInUse, ReturnValue) == 0x000000, "Member 'WrestlerTokenManager_TotalTokensInUse::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTokenManager \ +static_assert(alignof(UWrestlerTokenManager) == 0x000008, "Wrong alignment on UWrestlerTokenManager"); \ +static_assert(sizeof(UWrestlerTokenManager) == 0x0000C8, "Wrong size on UWrestlerTokenManager"); \ +static_assert(offsetof(UWrestlerTokenManager, Tokens) == 0x000028, "Member 'UWrestlerTokenManager::Tokens' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenManager, TokenStealingControllers) == 0x000078, "Member 'UWrestlerTokenManager::TokenStealingControllers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkComponent_CooldownToken \ +static_assert(alignof(WrestlerTokenSinkComponent_CooldownToken) == 0x000004, "Wrong alignment on WrestlerTokenSinkComponent_CooldownToken"); \ +static_assert(sizeof(WrestlerTokenSinkComponent_CooldownToken) == 0x000004, "Wrong size on WrestlerTokenSinkComponent_CooldownToken"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_CooldownToken, InOverrideCooldownTime) == 0x000000, "Member 'WrestlerTokenSinkComponent_CooldownToken::InOverrideCooldownTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkComponent_OnTokenStolen \ +static_assert(alignof(WrestlerTokenSinkComponent_OnTokenStolen) == 0x000008, "Wrong alignment on WrestlerTokenSinkComponent_OnTokenStolen"); \ +static_assert(sizeof(WrestlerTokenSinkComponent_OnTokenStolen) == 0x000010, "Wrong size on WrestlerTokenSinkComponent_OnTokenStolen"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_OnTokenStolen, InStealersRequest) == 0x000000, "Member 'WrestlerTokenSinkComponent_OnTokenStolen::InStealersRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkComponent_RequestToken \ +static_assert(alignof(WrestlerTokenSinkComponent_RequestToken) == 0x000008, "Wrong alignment on WrestlerTokenSinkComponent_RequestToken"); \ +static_assert(sizeof(WrestlerTokenSinkComponent_RequestToken) == 0x000030, "Wrong size on WrestlerTokenSinkComponent_RequestToken"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_RequestToken, InTokenSource) == 0x000000, "Member 'WrestlerTokenSinkComponent_RequestToken::InTokenSource' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_RequestToken, InTokenQuery) == 0x000008, "Member 'WrestlerTokenSinkComponent_RequestToken::InTokenQuery' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_RequestToken, ReturnValue) == 0x000018, "Member 'WrestlerTokenSinkComponent_RequestToken::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkComponent_GetHeldToken \ +static_assert(alignof(WrestlerTokenSinkComponent_GetHeldToken) == 0x000008, "Wrong alignment on WrestlerTokenSinkComponent_GetHeldToken"); \ +static_assert(sizeof(WrestlerTokenSinkComponent_GetHeldToken) == 0x000008, "Wrong size on WrestlerTokenSinkComponent_GetHeldToken"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_GetHeldToken, ReturnValue) == 0x000000, "Member 'WrestlerTokenSinkComponent_GetHeldToken::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkComponent_HasActiveToken \ +static_assert(alignof(WrestlerTokenSinkComponent_HasActiveToken) == 0x000001, "Wrong alignment on WrestlerTokenSinkComponent_HasActiveToken"); \ +static_assert(sizeof(WrestlerTokenSinkComponent_HasActiveToken) == 0x000001, "Wrong size on WrestlerTokenSinkComponent_HasActiveToken"); \ +static_assert(offsetof(WrestlerTokenSinkComponent_HasActiveToken, ReturnValue) == 0x000000, "Member 'WrestlerTokenSinkComponent_HasActiveToken::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTokenSinkComponent \ +static_assert(alignof(UWrestlerTokenSinkComponent) == 0x000008, "Wrong alignment on UWrestlerTokenSinkComponent"); \ +static_assert(sizeof(UWrestlerTokenSinkComponent) == 0x0000D0, "Wrong size on UWrestlerTokenSinkComponent"); \ +static_assert(offsetof(UWrestlerTokenSinkComponent, CurrentTarget) == 0x0000A0, "Member 'UWrestlerTokenSinkComponent::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSinkComponent, HeldToken) == 0x0000A8, "Member 'UWrestlerTokenSinkComponent::HeldToken' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSinkComponent, SourceTokenManager) == 0x0000B0, "Member 'UWrestlerTokenSinkComponent::SourceTokenManager' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSinkComponent, ConfigDataName) == 0x0000B8, "Member 'UWrestlerTokenSinkComponent::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSinkComponent, TokenCooldownTimerHandle) == 0x0000C8, "Member 'UWrestlerTokenSinkComponent::TokenCooldownTimerHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkTestActor_OnTokenStolen \ +static_assert(alignof(WrestlerTokenSinkTestActor_OnTokenStolen) == 0x000008, "Wrong alignment on WrestlerTokenSinkTestActor_OnTokenStolen"); \ +static_assert(sizeof(WrestlerTokenSinkTestActor_OnTokenStolen) == 0x000010, "Wrong size on WrestlerTokenSinkTestActor_OnTokenStolen"); \ +static_assert(offsetof(WrestlerTokenSinkTestActor_OnTokenStolen, InStealersRequest) == 0x000000, "Member 'WrestlerTokenSinkTestActor_OnTokenStolen::InStealersRequest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkTestActor_GetDebugColor \ +static_assert(alignof(WrestlerTokenSinkTestActor_GetDebugColor) == 0x000004, "Wrong alignment on WrestlerTokenSinkTestActor_GetDebugColor"); \ +static_assert(sizeof(WrestlerTokenSinkTestActor_GetDebugColor) == 0x000004, "Wrong size on WrestlerTokenSinkTestActor_GetDebugColor"); \ +static_assert(offsetof(WrestlerTokenSinkTestActor_GetDebugColor, ReturnValue) == 0x000000, "Member 'WrestlerTokenSinkTestActor_GetDebugColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSinkTestActor_GetStatus \ +static_assert(alignof(WrestlerTokenSinkTestActor_GetStatus) == 0x000008, "Wrong alignment on WrestlerTokenSinkTestActor_GetStatus"); \ +static_assert(sizeof(WrestlerTokenSinkTestActor_GetStatus) == 0x000010, "Wrong size on WrestlerTokenSinkTestActor_GetStatus"); \ +static_assert(offsetof(WrestlerTokenSinkTestActor_GetStatus, ReturnValue) == 0x000000, "Member 'WrestlerTokenSinkTestActor_GetStatus::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTokenSinkTestActor \ +static_assert(alignof(AWrestlerTokenSinkTestActor) == 0x000008, "Wrong alignment on AWrestlerTokenSinkTestActor"); \ +static_assert(sizeof(AWrestlerTokenSinkTestActor) == 0x000360, "Wrong size on AWrestlerTokenSinkTestActor"); \ +static_assert(offsetof(AWrestlerTokenSinkTestActor, HeldToken) == 0x000320, "Member 'AWrestlerTokenSinkTestActor::HeldToken' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTokenSinkTestActor, SourceTokenManager) == 0x000328, "Member 'AWrestlerTokenSinkTestActor::SourceTokenManager' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTokenSinkTestActor, Status) == 0x000330, "Member 'AWrestlerTokenSinkTestActor::Status' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTokenSinkTestActor, DebugColor) == 0x000340, "Member 'AWrestlerTokenSinkTestActor::DebugColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTokenSource_GetTokenManager \ +static_assert(alignof(WrestlerTokenSource_GetTokenManager) == 0x000008, "Wrong alignment on WrestlerTokenSource_GetTokenManager"); \ +static_assert(sizeof(WrestlerTokenSource_GetTokenManager) == 0x000008, "Wrong size on WrestlerTokenSource_GetTokenManager"); \ +static_assert(offsetof(WrestlerTokenSource_GetTokenManager, ReturnValue) == 0x000000, "Member 'WrestlerTokenSource_GetTokenManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTokenSource \ +static_assert(alignof(UWrestlerTokenSource) == 0x000008, "Wrong alignment on UWrestlerTokenSource"); \ +static_assert(sizeof(UWrestlerTokenSource) == 0x000048, "Wrong size on UWrestlerTokenSource"); \ +static_assert(offsetof(UWrestlerTokenSource, ConfigDataName) == 0x000030, "Member 'UWrestlerTokenSource::ConfigDataName' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSource, TokenManager) == 0x000038, "Member 'UWrestlerTokenSource::TokenManager' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTokenSource, TokenDebugWidget) == 0x000040, "Member 'UWrestlerTokenSource::TokenDebugWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache \ +static_assert(alignof(WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache) == 0x000008, "Wrong alignment on WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache"); \ +static_assert(sizeof(WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache) == 0x000010, "Wrong size on WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache, InKey) == 0x000000, "Member 'WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache, InClass) == 0x000008, "Member 'WrestlerTransientCacheSubSystem_AddDialogueAbilityToCache::InClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache \ +static_assert(alignof(WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache) == 0x000008, "Wrong alignment on WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache"); \ +static_assert(sizeof(WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache) == 0x000018, "Wrong size on WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache, InKey) == 0x000000, "Member 'WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache::InKey' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache, OutDialogueData) == 0x000008, "Member 'WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache::OutDialogueData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache, ReturnValue) == 0x000010, "Member 'WrestlerTransientCacheSubSystem_GetDialogueAbilityFromCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache \ +static_assert(alignof(WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache) == 0x000004, "Wrong alignment on WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache"); \ +static_assert(sizeof(WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache) == 0x000008, "Wrong size on WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache"); \ +static_assert(offsetof(WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache, InKey) == 0x000000, "Member 'WrestlerTransientCacheSubSystem_RemoveDialogueAbilityFromCache::InKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTransientCacheSubSystem \ +static_assert(alignof(UWrestlerTransientCacheSubSystem) == 0x000008, "Wrong alignment on UWrestlerTransientCacheSubSystem"); \ +static_assert(sizeof(UWrestlerTransientCacheSubSystem) == 0x000080, "Wrong size on UWrestlerTransientCacheSubSystem"); \ +static_assert(offsetof(UWrestlerTransientCacheSubSystem, DialogueAbilityCache) == 0x000030, "Member 'UWrestlerTransientCacheSubSystem::DialogueAbilityCache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTransitionSettings \ +static_assert(alignof(UWrestlerTransitionSettings) == 0x000008, "Wrong alignment on UWrestlerTransitionSettings"); \ +static_assert(sizeof(UWrestlerTransitionSettings) == 0x0000B0, "Wrong size on UWrestlerTransitionSettings"); \ +static_assert(offsetof(UWrestlerTransitionSettings, VolumeOverlapPlayerIgnoreTags) == 0x000048, "Member 'UWrestlerTransitionSettings::VolumeOverlapPlayerIgnoreTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTransitionSettings, PlayerLocationProperty) == 0x000068, "Member 'UWrestlerTransitionSettings::PlayerLocationProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTransitionSettings, SnowingInteriorLocationIgnoreTags) == 0x000090, "Member 'UWrestlerTransitionSettings::SnowingInteriorLocationIgnoreTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_AttachTo \ +static_assert(alignof(WrestlerTraversalComponent_AttachTo) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_AttachTo"); \ +static_assert(sizeof(WrestlerTraversalComponent_AttachTo) == 0x000010, "Wrong size on WrestlerTraversalComponent_AttachTo"); \ +static_assert(offsetof(WrestlerTraversalComponent_AttachTo, InLinkActor) == 0x000000, "Member 'WrestlerTraversalComponent_AttachTo::InLinkActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTraversalComponent_AttachTo, ReturnValue) == 0x000008, "Member 'WrestlerTraversalComponent_AttachTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetAttachActor \ +static_assert(alignof(WrestlerTraversalComponent_GetAttachActor) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetAttachActor"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetAttachActor) == 0x000010, "Wrong size on WrestlerTraversalComponent_GetAttachActor"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetAttachActor, OutAttachActor) == 0x000000, "Member 'WrestlerTraversalComponent_GetAttachActor::OutAttachActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetAttachActor, ReturnValue) == 0x000008, "Member 'WrestlerTraversalComponent_GetAttachActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_SetAttachDirection \ +static_assert(alignof(WrestlerTraversalComponent_SetAttachDirection) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_SetAttachDirection"); \ +static_assert(sizeof(WrestlerTraversalComponent_SetAttachDirection) == 0x000018, "Wrong size on WrestlerTraversalComponent_SetAttachDirection"); \ +static_assert(offsetof(WrestlerTraversalComponent_SetAttachDirection, InAttachDirection) == 0x000000, "Member 'WrestlerTraversalComponent_SetAttachDirection::InAttachDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_SetLedgeVaultEndLocation \ +static_assert(alignof(WrestlerTraversalComponent_SetLedgeVaultEndLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_SetLedgeVaultEndLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_SetLedgeVaultEndLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_SetLedgeVaultEndLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_SetLedgeVaultEndLocation, Location) == 0x000000, "Member 'WrestlerTraversalComponent_SetLedgeVaultEndLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_SetLedgeVaultStartLocation \ +static_assert(alignof(WrestlerTraversalComponent_SetLedgeVaultStartLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_SetLedgeVaultStartLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_SetLedgeVaultStartLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_SetLedgeVaultStartLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_SetLedgeVaultStartLocation, Location) == 0x000000, "Member 'WrestlerTraversalComponent_SetLedgeVaultStartLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_SetMantleOffsets \ +static_assert(alignof(WrestlerTraversalComponent_SetMantleOffsets) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_SetMantleOffsets"); \ +static_assert(sizeof(WrestlerTraversalComponent_SetMantleOffsets) == 0x000008, "Wrong size on WrestlerTraversalComponent_SetMantleOffsets"); \ +static_assert(offsetof(WrestlerTraversalComponent_SetMantleOffsets, NewMantleOffsets) == 0x000000, "Member 'WrestlerTraversalComponent_SetMantleOffsets::NewMantleOffsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_SetTraversalVelocity \ +static_assert(alignof(WrestlerTraversalComponent_SetTraversalVelocity) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_SetTraversalVelocity"); \ +static_assert(sizeof(WrestlerTraversalComponent_SetTraversalVelocity) == 0x000018, "Wrong size on WrestlerTraversalComponent_SetTraversalVelocity"); \ +static_assert(offsetof(WrestlerTraversalComponent_SetTraversalVelocity, InNewTraversalVelocity) == 0x000000, "Member 'WrestlerTraversalComponent_SetTraversalVelocity::InNewTraversalVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_CanMantle \ +static_assert(alignof(WrestlerTraversalComponent_CanMantle) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_CanMantle"); \ +static_assert(sizeof(WrestlerTraversalComponent_CanMantle) == 0x000001, "Wrong size on WrestlerTraversalComponent_CanMantle"); \ +static_assert(offsetof(WrestlerTraversalComponent_CanMantle, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_CanMantle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_CanVault \ +static_assert(alignof(WrestlerTraversalComponent_CanVault) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_CanVault"); \ +static_assert(sizeof(WrestlerTraversalComponent_CanVault) == 0x000001, "Wrong size on WrestlerTraversalComponent_CanVault"); \ +static_assert(offsetof(WrestlerTraversalComponent_CanVault, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_CanVault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_CanWallClimb \ +static_assert(alignof(WrestlerTraversalComponent_CanWallClimb) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_CanWallClimb"); \ +static_assert(sizeof(WrestlerTraversalComponent_CanWallClimb) == 0x000001, "Wrong size on WrestlerTraversalComponent_CanWallClimb"); \ +static_assert(offsetof(WrestlerTraversalComponent_CanWallClimb, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_CanWallClimb::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetAttachDirection \ +static_assert(alignof(WrestlerTraversalComponent_GetAttachDirection) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetAttachDirection"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetAttachDirection) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetAttachDirection"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetAttachDirection, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetAttachDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetLedgeVaultEndLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetLedgeVaultEndLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetLedgeVaultEndLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetLedgeVaultEndLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetLedgeVaultEndLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetLedgeVaultEndLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetLedgeVaultEndLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetLedgeVaultParameters \ +static_assert(alignof(WrestlerTraversalComponent_GetLedgeVaultParameters) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_GetLedgeVaultParameters"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetLedgeVaultParameters) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetLedgeVaultParameters"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetLedgeVaultParameters, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetLedgeVaultParameters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetLedgeVaultStartLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetLedgeVaultStartLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetLedgeVaultStartLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetLedgeVaultStartLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetLedgeVaultStartLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetLedgeVaultStartLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetLedgeVaultStartLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetMantleEndLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetMantleEndLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetMantleEndLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetMantleEndLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetMantleEndLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetMantleEndLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetMantleEndLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetMantleIntoCrouch \ +static_assert(alignof(WrestlerTraversalComponent_GetMantleIntoCrouch) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_GetMantleIntoCrouch"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetMantleIntoCrouch) == 0x000001, "Wrong size on WrestlerTraversalComponent_GetMantleIntoCrouch"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetMantleIntoCrouch, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetMantleIntoCrouch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetMantleOffsets \ +static_assert(alignof(WrestlerTraversalComponent_GetMantleOffsets) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_GetMantleOffsets"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetMantleOffsets) == 0x000008, "Wrong size on WrestlerTraversalComponent_GetMantleOffsets"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetMantleOffsets, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetMantleOffsets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetMantleStartLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetMantleStartLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetMantleStartLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetMantleStartLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetMantleStartLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetMantleStartLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetMantleStartLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetMantleSurface \ +static_assert(alignof(WrestlerTraversalComponent_GetMantleSurface) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_GetMantleSurface"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetMantleSurface) == 0x000001, "Wrong size on WrestlerTraversalComponent_GetMantleSurface"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetMantleSurface, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetMantleSurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetTraversalVelocity \ +static_assert(alignof(WrestlerTraversalComponent_GetTraversalVelocity) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetTraversalVelocity"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetTraversalVelocity) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetTraversalVelocity"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetTraversalVelocity, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetTraversalVelocity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetVaultEndLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetVaultEndLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetVaultEndLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetVaultEndLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetVaultEndLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetVaultEndLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetVaultEndLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetVaultHandHoldLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetVaultHandHoldLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetVaultHandHoldLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetVaultHandHoldLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetVaultHandHoldLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetVaultHandHoldLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetVaultHandHoldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetVaultStartLocation \ +static_assert(alignof(WrestlerTraversalComponent_GetVaultStartLocation) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetVaultStartLocation"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetVaultStartLocation) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetVaultStartLocation"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetVaultStartLocation, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetVaultStartLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetVaultSurface \ +static_assert(alignof(WrestlerTraversalComponent_GetVaultSurface) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_GetVaultSurface"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetVaultSurface) == 0x000001, "Wrong size on WrestlerTraversalComponent_GetVaultSurface"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetVaultSurface, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetVaultSurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbDuration \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbDuration) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbDuration"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbDuration) == 0x000004, "Wrong size on WrestlerTraversalComponent_GetWallClimbDuration"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbDuration, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbFinalPosition \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbFinalPosition) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbFinalPosition"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbFinalPosition) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetWallClimbFinalPosition"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbFinalPosition, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbFinalPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbLedgeCornerPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbOffset \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbOffset) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbOffset"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbOffset) == 0x000004, "Wrong size on WrestlerTraversalComponent_GetWallClimbOffset"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbOffset, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbStartPosition \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbStartPosition) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbStartPosition"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbStartPosition) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetWallClimbStartPosition"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbStartPosition, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbStartPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbSurface \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbSurface) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbSurface"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbSurface) == 0x000001, "Wrong size on WrestlerTraversalComponent_GetWallClimbSurface"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbSurface, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbSurface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbVerticalSpeed \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbVerticalSpeed) == 0x000004, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbVerticalSpeed"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbVerticalSpeed) == 0x000004, "Wrong size on WrestlerTraversalComponent_GetWallClimbVerticalSpeed"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbVerticalSpeed, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbVerticalSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_GetWallClimbWallNormal \ +static_assert(alignof(WrestlerTraversalComponent_GetWallClimbWallNormal) == 0x000008, "Wrong alignment on WrestlerTraversalComponent_GetWallClimbWallNormal"); \ +static_assert(sizeof(WrestlerTraversalComponent_GetWallClimbWallNormal) == 0x000018, "Wrong size on WrestlerTraversalComponent_GetWallClimbWallNormal"); \ +static_assert(offsetof(WrestlerTraversalComponent_GetWallClimbWallNormal, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_GetWallClimbWallNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_IsAttached \ +static_assert(alignof(WrestlerTraversalComponent_IsAttached) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_IsAttached"); \ +static_assert(sizeof(WrestlerTraversalComponent_IsAttached) == 0x000001, "Wrong size on WrestlerTraversalComponent_IsAttached"); \ +static_assert(offsetof(WrestlerTraversalComponent_IsAttached, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_IsAttached::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerTraversalComponent_WasGliding \ +static_assert(alignof(WrestlerTraversalComponent_WasGliding) == 0x000001, "Wrong alignment on WrestlerTraversalComponent_WasGliding"); \ +static_assert(sizeof(WrestlerTraversalComponent_WasGliding) == 0x000001, "Wrong size on WrestlerTraversalComponent_WasGliding"); \ +static_assert(offsetof(WrestlerTraversalComponent_WasGliding, ReturnValue) == 0x000000, "Member 'WrestlerTraversalComponent_WasGliding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerTraversalComponent \ +static_assert(alignof(UWrestlerTraversalComponent) == 0x000008, "Wrong alignment on UWrestlerTraversalComponent"); \ +static_assert(sizeof(UWrestlerTraversalComponent) == 0x0003A0, "Wrong size on UWrestlerTraversalComponent"); \ +static_assert(offsetof(UWrestlerTraversalComponent, ClimbVector) == 0x0000A0, "Member 'UWrestlerTraversalComponent::ClimbVector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, bClimbLookingAtWall) == 0x0000B0, "Member 'UWrestlerTraversalComponent::bClimbLookingAtWall' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, NewWallClimbInwardVector) == 0x0000B8, "Member 'UWrestlerTraversalComponent::NewWallClimbInwardVector' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, Common) == 0x0000E0, "Member 'UWrestlerTraversalComponent::Common' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, WallClimb) == 0x0000F8, "Member 'UWrestlerTraversalComponent::WallClimb' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, Vault) == 0x000120, "Member 'UWrestlerTraversalComponent::Vault' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, Mantle) == 0x000148, "Member 'UWrestlerTraversalComponent::Mantle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, LedgeVault) == 0x000164, "Member 'UWrestlerTraversalComponent::LedgeVault' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, ObjectSearch) == 0x00017C, "Member 'UWrestlerTraversalComponent::ObjectSearch' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, AttachActor) == 0x000350, "Member 'UWrestlerTraversalComponent::AttachActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerTraversalComponent, nearbyTraversalObjects) == 0x000360, "Member 'UWrestlerTraversalComponent::nearbyTraversalObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerTurnOffMassEntityVolume \ +static_assert(alignof(AWrestlerTurnOffMassEntityVolume) == 0x000008, "Wrong alignment on AWrestlerTurnOffMassEntityVolume"); \ +static_assert(sizeof(AWrestlerTurnOffMassEntityVolume) == 0x0002F8, "Wrong size on AWrestlerTurnOffMassEntityVolume"); \ +static_assert(offsetof(AWrestlerTurnOffMassEntityVolume, TurnOffMode) == 0x0002E8, "Member 'AWrestlerTurnOffMassEntityVolume::TurnOffMode' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerTurnOffMassEntityVolume, NavModifier) == 0x0002F0, "Member 'AWrestlerTurnOffMassEntityVolume::NavModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag \ +static_assert(alignof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag) == 0x000050, "Wrong size on WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, InQuestTag) == 0x000008, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::InQuestTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, OutQuestTitle) == 0x000010, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::OutQuestTitle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, OutQuestObjectives) == 0x000028, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::OutQuestObjectives' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, OutQuestDescriptions) == 0x000038, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::OutQuestDescriptions' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag, ReturnValue) == 0x000048, "Member 'WrestlerUIFunctionLibrary_GetFormattedQuestDataForGameplayTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_GetScreenAngleToWorld \ +static_assert(alignof(WrestlerUIFunctionLibrary_GetScreenAngleToWorld) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_GetScreenAngleToWorld"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_GetScreenAngleToWorld) == 0x000028, "Wrong size on WrestlerUIFunctionLibrary_GetScreenAngleToWorld"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenAngleToWorld, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_GetScreenAngleToWorld::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenAngleToWorld, WorldLocation) == 0x000008, "Member 'WrestlerUIFunctionLibrary_GetScreenAngleToWorld::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenAngleToWorld, OutAngle) == 0x000020, "Member 'WrestlerUIFunctionLibrary_GetScreenAngleToWorld::OutAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_GetScreenDirectionToWorld \ +static_assert(alignof(WrestlerUIFunctionLibrary_GetScreenDirectionToWorld) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_GetScreenDirectionToWorld"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_GetScreenDirectionToWorld) == 0x000030, "Wrong size on WrestlerUIFunctionLibrary_GetScreenDirectionToWorld"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenDirectionToWorld, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_GetScreenDirectionToWorld::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenDirectionToWorld, WorldLocation) == 0x000008, "Member 'WrestlerUIFunctionLibrary_GetScreenDirectionToWorld::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_GetScreenDirectionToWorld, OutDirection) == 0x000020, "Member 'WrestlerUIFunctionLibrary_GetScreenDirectionToWorld::OutDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_ProjectWorldToCanvas \ +static_assert(alignof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_ProjectWorldToCanvas"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas) == 0x000040, "Wrong size on WrestlerUIFunctionLibrary_ProjectWorldToCanvas"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToCanvas::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas, CanvasPanel) == 0x000008, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToCanvas::CanvasPanel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas, WorldLocation) == 0x000010, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToCanvas::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas, OutNormalizedPosition) == 0x000028, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToCanvas::OutNormalizedPosition' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToCanvas, ReturnValue) == 0x000038, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToCanvas::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_ProjectWorldToScreen \ +static_assert(alignof(WrestlerUIFunctionLibrary_ProjectWorldToScreen) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_ProjectWorldToScreen"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_ProjectWorldToScreen) == 0x000038, "Wrong size on WrestlerUIFunctionLibrary_ProjectWorldToScreen"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToScreen, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToScreen::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToScreen, WorldLocation) == 0x000008, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToScreen::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToScreen, OutScreenPosition) == 0x000020, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToScreen::OutScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_ProjectWorldToScreen, ReturnValue) == 0x000030, "Member 'WrestlerUIFunctionLibrary_ProjectWorldToScreen::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation \ +static_assert(alignof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation) == 0x000008, "Wrong alignment on WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation"); \ +static_assert(sizeof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation) == 0x000038, "Wrong size on WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation, PlayerController) == 0x000000, "Member 'WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation, CanvasPanel) == 0x000008, "Member 'WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation::CanvasPanel' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation, CanvasSlot) == 0x000010, "Member 'WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation::CanvasSlot' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation, WorldLocation) == 0x000018, "Member 'WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation, ReturnValue) == 0x000030, "Member 'WrestlerUIFunctionLibrary_SetCanvasSlotPositionToWorldLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUIFunctionLibrary \ +static_assert(alignof(UWrestlerUIFunctionLibrary) == 0x000008, "Wrong alignment on UWrestlerUIFunctionLibrary"); \ +static_assert(sizeof(UWrestlerUIFunctionLibrary) == 0x000028, "Wrong size on UWrestlerUIFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_CastToRPGMenu \ +static_assert(alignof(WrestlerUIHelperLibrary_CastToRPGMenu) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_CastToRPGMenu"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_CastToRPGMenu) == 0x000010, "Wrong size on WrestlerUIHelperLibrary_CastToRPGMenu"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_CastToRPGMenu, InHeraMenu) == 0x000000, "Member 'WrestlerUIHelperLibrary_CastToRPGMenu::InHeraMenu' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_CastToRPGMenu, ReturnValue) == 0x000008, "Member 'WrestlerUIHelperLibrary_CastToRPGMenu::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_CheckForAbilitiesToBuy \ +static_assert(alignof(WrestlerUIHelperLibrary_CheckForAbilitiesToBuy) == 0x000004, "Wrong alignment on WrestlerUIHelperLibrary_CheckForAbilitiesToBuy"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_CheckForAbilitiesToBuy) == 0x00000C, "Wrong size on WrestlerUIHelperLibrary_CheckForAbilitiesToBuy"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_CheckForAbilitiesToBuy, InCurrentClan) == 0x000000, "Member 'WrestlerUIHelperLibrary_CheckForAbilitiesToBuy::InCurrentClan' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_CheckForAbilitiesToBuy, InPlayerPoints) == 0x000004, "Member 'WrestlerUIHelperLibrary_CheckForAbilitiesToBuy::InPlayerPoints' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_CheckForAbilitiesToBuy, ReturnValue) == 0x000008, "Member 'WrestlerUIHelperLibrary_CheckForAbilitiesToBuy::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_FormatLineBreaks \ +static_assert(alignof(WrestlerUIHelperLibrary_FormatLineBreaks) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_FormatLineBreaks"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_FormatLineBreaks) == 0x000030, "Wrong size on WrestlerUIHelperLibrary_FormatLineBreaks"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_FormatLineBreaks, InValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_FormatLineBreaks::InValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_FormatLineBreaks, ReturnValue) == 0x000018, "Member 'WrestlerUIHelperLibrary_FormatLineBreaks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetAbilitiesClan \ +static_assert(alignof(WrestlerUIHelperLibrary_GetAbilitiesClan) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetAbilitiesClan"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetAbilitiesClan) == 0x000018, "Wrong size on WrestlerUIHelperLibrary_GetAbilitiesClan"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetAbilitiesClan, DataTable) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetAbilitiesClan::DataTable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetAbilitiesClan, ReturnValue) == 0x000008, "Member 'WrestlerUIHelperLibrary_GetAbilitiesClan::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetFocusedUMGWidget \ +static_assert(alignof(WrestlerUIHelperLibrary_GetFocusedUMGWidget) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetFocusedUMGWidget"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetFocusedUMGWidget) == 0x000008, "Wrong size on WrestlerUIHelperLibrary_GetFocusedUMGWidget"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetFocusedUMGWidget, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetFocusedUMGWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetSubtitleStyle \ +static_assert(alignof(WrestlerUIHelperLibrary_GetSubtitleStyle) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetSubtitleStyle"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetSubtitleStyle) == 0x000018, "Wrong size on WrestlerUIHelperLibrary_GetSubtitleStyle"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetSubtitleStyle, InStyleName) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetSubtitleStyle::InStyleName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetSubtitleStyle, ReturnValue) == 0x000010, "Member 'WrestlerUIHelperLibrary_GetSubtitleStyle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetWrestlerHUD \ +static_assert(alignof(WrestlerUIHelperLibrary_GetWrestlerHUD) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetWrestlerHUD"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetWrestlerHUD) == 0x000020, "Wrong size on WrestlerUIHelperLibrary_GetWrestlerHUD"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUD, InPlayerController) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUD::InPlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUD, OutExecBranches) == 0x000008, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUD::OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUD, InWorldContextObject) == 0x000010, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUD::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUD, ReturnValue) == 0x000018, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUD::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetWrestlerHUDWidget \ +static_assert(alignof(WrestlerUIHelperLibrary_GetWrestlerHUDWidget) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetWrestlerHUDWidget"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetWrestlerHUDWidget) == 0x000010, "Wrong size on WrestlerUIHelperLibrary_GetWrestlerHUDWidget"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUDWidget, InPlayerController) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUDWidget::InPlayerController' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerHUDWidget, ReturnValue) == 0x000008, "Member 'WrestlerUIHelperLibrary_GetWrestlerHUDWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_GetWrestlerUISettings \ +static_assert(alignof(WrestlerUIHelperLibrary_GetWrestlerUISettings) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_GetWrestlerUISettings"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_GetWrestlerUISettings) == 0x000008, "Wrong size on WrestlerUIHelperLibrary_GetWrestlerUISettings"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_GetWrestlerUISettings, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_GetWrestlerUISettings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_HasNetworkConnection \ +static_assert(alignof(WrestlerUIHelperLibrary_HasNetworkConnection) == 0x000001, "Wrong alignment on WrestlerUIHelperLibrary_HasNetworkConnection"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_HasNetworkConnection) == 0x000001, "Wrong size on WrestlerUIHelperLibrary_HasNetworkConnection"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_HasNetworkConnection, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_HasNetworkConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_IsPartitionedWorld \ +static_assert(alignof(WrestlerUIHelperLibrary_IsPartitionedWorld) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_IsPartitionedWorld"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_IsPartitionedWorld) == 0x000010, "Wrong size on WrestlerUIHelperLibrary_IsPartitionedWorld"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_IsPartitionedWorld, InWorldContextObject) == 0x000000, "Member 'WrestlerUIHelperLibrary_IsPartitionedWorld::InWorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_IsPartitionedWorld, ReturnValue) == 0x000008, "Member 'WrestlerUIHelperLibrary_IsPartitionedWorld::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_IsPlatformPC \ +static_assert(alignof(WrestlerUIHelperLibrary_IsPlatformPC) == 0x000001, "Wrong alignment on WrestlerUIHelperLibrary_IsPlatformPC"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_IsPlatformPC) == 0x000001, "Wrong size on WrestlerUIHelperLibrary_IsPlatformPC"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_IsPlatformPC, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_IsPlatformPC::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_IsPlatformPS5 \ +static_assert(alignof(WrestlerUIHelperLibrary_IsPlatformPS5) == 0x000001, "Wrong alignment on WrestlerUIHelperLibrary_IsPlatformPS5"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_IsPlatformPS5) == 0x000001, "Wrong size on WrestlerUIHelperLibrary_IsPlatformPS5"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_IsPlatformPS5, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_IsPlatformPS5::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_IsPlatformXSX \ +static_assert(alignof(WrestlerUIHelperLibrary_IsPlatformXSX) == 0x000001, "Wrong alignment on WrestlerUIHelperLibrary_IsPlatformXSX"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_IsPlatformXSX) == 0x000001, "Wrong size on WrestlerUIHelperLibrary_IsPlatformXSX"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_IsPlatformXSX, ReturnValue) == 0x000000, "Member 'WrestlerUIHelperLibrary_IsPlatformXSX::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_SetHealth \ +static_assert(alignof(WrestlerUIHelperLibrary_SetHealth) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_SetHealth"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_SetHealth) == 0x000010, "Wrong size on WrestlerUIHelperLibrary_SetHealth"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_SetHealth, InCharacter) == 0x000000, "Member 'WrestlerUIHelperLibrary_SetHealth::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_SetHealth, InNewHealth) == 0x000008, "Member 'WrestlerUIHelperLibrary_SetHealth::InNewHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_UnlockPlayerCostume \ +static_assert(alignof(WrestlerUIHelperLibrary_UnlockPlayerCostume) == 0x000004, "Wrong alignment on WrestlerUIHelperLibrary_UnlockPlayerCostume"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_UnlockPlayerCostume) == 0x000008, "Wrong size on WrestlerUIHelperLibrary_UnlockPlayerCostume"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_UnlockPlayerCostume, InCostumeID) == 0x000000, "Member 'WrestlerUIHelperLibrary_UnlockPlayerCostume::InCostumeID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIHelperLibrary_UnlockSecondaryAbility \ +static_assert(alignof(WrestlerUIHelperLibrary_UnlockSecondaryAbility) == 0x000008, "Wrong alignment on WrestlerUIHelperLibrary_UnlockSecondaryAbility"); \ +static_assert(sizeof(WrestlerUIHelperLibrary_UnlockSecondaryAbility) == 0x000010, "Wrong size on WrestlerUIHelperLibrary_UnlockSecondaryAbility"); \ +static_assert(offsetof(WrestlerUIHelperLibrary_UnlockSecondaryAbility, InAbilityName) == 0x000000, "Member 'WrestlerUIHelperLibrary_UnlockSecondaryAbility::InAbilityName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUIHelperLibrary \ +static_assert(alignof(UWrestlerUIHelperLibrary) == 0x000008, "Wrong alignment on UWrestlerUIHelperLibrary"); \ +static_assert(sizeof(UWrestlerUIHelperLibrary) == 0x000028, "Wrong size on UWrestlerUIHelperLibrary"); \ + +#define DUMPER7_ASSERTS_UWrestlerUILocalisationDataTable \ +static_assert(alignof(UWrestlerUILocalisationDataTable) == 0x000008, "Wrong alignment on UWrestlerUILocalisationDataTable"); \ +static_assert(sizeof(UWrestlerUILocalisationDataTable) == 0x0000C0, "Wrong size on UWrestlerUILocalisationDataTable"); \ + +#define DUMPER7_ASSERTS_WrestlerUIMapSubsystem_AddTransformToArray \ +static_assert(alignof(WrestlerUIMapSubsystem_AddTransformToArray) == 0x000008, "Wrong alignment on WrestlerUIMapSubsystem_AddTransformToArray"); \ +static_assert(sizeof(WrestlerUIMapSubsystem_AddTransformToArray) == 0x000010, "Wrong size on WrestlerUIMapSubsystem_AddTransformToArray"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_AddTransformToArray, InGameplayTag) == 0x000000, "Member 'WrestlerUIMapSubsystem_AddTransformToArray::InGameplayTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_AddTransformToArray, ObjectToAdd) == 0x000008, "Member 'WrestlerUIMapSubsystem_AddTransformToArray::ObjectToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIMapSubsystem_HeraBoolPropertyChanged \ +static_assert(alignof(WrestlerUIMapSubsystem_HeraBoolPropertyChanged) == 0x000004, "Wrong alignment on WrestlerUIMapSubsystem_HeraBoolPropertyChanged"); \ +static_assert(sizeof(WrestlerUIMapSubsystem_HeraBoolPropertyChanged) == 0x00000C, "Wrong size on WrestlerUIMapSubsystem_HeraBoolPropertyChanged"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_HeraBoolPropertyChanged, InPropertyName) == 0x000000, "Member 'WrestlerUIMapSubsystem_HeraBoolPropertyChanged::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_HeraBoolPropertyChanged, InNewValue) == 0x000008, "Member 'WrestlerUIMapSubsystem_HeraBoolPropertyChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIMapSubsystem_OnNewActiveQuestSet \ +static_assert(alignof(WrestlerUIMapSubsystem_OnNewActiveQuestSet) == 0x000004, "Wrong alignment on WrestlerUIMapSubsystem_OnNewActiveQuestSet"); \ +static_assert(sizeof(WrestlerUIMapSubsystem_OnNewActiveQuestSet) == 0x000008, "Wrong size on WrestlerUIMapSubsystem_OnNewActiveQuestSet"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_OnNewActiveQuestSet, InQuestTag) == 0x000000, "Member 'WrestlerUIMapSubsystem_OnNewActiveQuestSet::InQuestTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUIMapSubsystem_TagRemovedFromWorld \ +static_assert(alignof(WrestlerUIMapSubsystem_TagRemovedFromWorld) == 0x000008, "Wrong alignment on WrestlerUIMapSubsystem_TagRemovedFromWorld"); \ +static_assert(sizeof(WrestlerUIMapSubsystem_TagRemovedFromWorld) == 0x000020, "Wrong size on WrestlerUIMapSubsystem_TagRemovedFromWorld"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_TagRemovedFromWorld, InActorName) == 0x000000, "Member 'WrestlerUIMapSubsystem_TagRemovedFromWorld::InActorName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerUIMapSubsystem_TagRemovedFromWorld, Tag) == 0x000010, "Member 'WrestlerUIMapSubsystem_TagRemovedFromWorld::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUIMapSubsystem \ +static_assert(alignof(UWrestlerUIMapSubsystem) == 0x000008, "Wrong alignment on UWrestlerUIMapSubsystem"); \ +static_assert(sizeof(UWrestlerUIMapSubsystem) == 0x000228, "Wrong size on UWrestlerUIMapSubsystem"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, OnWaypointPlacedDelegate) == 0x000030, "Member 'UWrestlerUIMapSubsystem::OnWaypointPlacedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, OnWaypointRemovedDelegate) == 0x000040, "Member 'UWrestlerUIMapSubsystem::OnWaypointRemovedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, UIMarkers) == 0x000068, "Member 'UWrestlerUIMapSubsystem::UIMarkers' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, UnlockedTrainersPositions) == 0x0000B8, "Member 'UWrestlerUIMapSubsystem::UnlockedTrainersPositions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, FoundAchievementCollectablesPositions) == 0x000108, "Member 'UWrestlerUIMapSubsystem::FoundAchievementCollectablesPositions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, LocationsPositions) == 0x000158, "Member 'UWrestlerUIMapSubsystem::LocationsPositions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, FeedingStationPositions) == 0x0001A8, "Member 'UWrestlerUIMapSubsystem::FeedingStationPositions' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, RegisteredWaypointActor) == 0x0001F8, "Member 'UWrestlerUIMapSubsystem::RegisteredWaypointActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUIMapSubsystem, RegisteredWaypointActorName) == 0x000218, "Member 'UWrestlerUIMapSubsystem::RegisteredWaypointActorName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubtitlesAssetMap \ +static_assert(alignof(USubtitlesAssetMap) == 0x000008, "Wrong alignment on USubtitlesAssetMap"); \ +static_assert(sizeof(USubtitlesAssetMap) == 0x000080, "Wrong size on USubtitlesAssetMap"); \ +static_assert(offsetof(USubtitlesAssetMap, SubtitleTextStyleMapAsset) == 0x000030, "Member 'USubtitlesAssetMap::SubtitleTextStyleMapAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIconLookupTable \ +static_assert(alignof(UIconLookupTable) == 0x000008, "Wrong alignment on UIconLookupTable"); \ +static_assert(sizeof(UIconLookupTable) == 0x000080, "Wrong size on UIconLookupTable"); \ +static_assert(offsetof(UIconLookupTable, IconsLookupTable) == 0x000030, "Member 'UIconLookupTable::IconsLookupTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUISubsystem_SetBootFlowPlayed \ +static_assert(alignof(WrestlerUISubsystem_SetBootFlowPlayed) == 0x000001, "Wrong alignment on WrestlerUISubsystem_SetBootFlowPlayed"); \ +static_assert(sizeof(WrestlerUISubsystem_SetBootFlowPlayed) == 0x000001, "Wrong size on WrestlerUISubsystem_SetBootFlowPlayed"); \ +static_assert(offsetof(WrestlerUISubsystem_SetBootFlowPlayed, Value) == 0x000000, "Member 'WrestlerUISubsystem_SetBootFlowPlayed::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUISubsystem_GetBootFlowPlayed \ +static_assert(alignof(WrestlerUISubsystem_GetBootFlowPlayed) == 0x000001, "Wrong alignment on WrestlerUISubsystem_GetBootFlowPlayed"); \ +static_assert(sizeof(WrestlerUISubsystem_GetBootFlowPlayed) == 0x000001, "Wrong size on WrestlerUISubsystem_GetBootFlowPlayed"); \ +static_assert(offsetof(WrestlerUISubsystem_GetBootFlowPlayed, ReturnValue) == 0x000000, "Member 'WrestlerUISubsystem_GetBootFlowPlayed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUISubsystem \ +static_assert(alignof(UWrestlerUISubsystem) == 0x000008, "Wrong alignment on UWrestlerUISubsystem"); \ +static_assert(sizeof(UWrestlerUISubsystem) == 0x000090, "Wrong size on UWrestlerUISubsystem"); \ +static_assert(offsetof(UWrestlerUISubsystem, UISettings) == 0x000030, "Member 'UWrestlerUISubsystem::UISettings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISubsystem, bBootFlowPlayed) == 0x000038, "Member 'UWrestlerUISubsystem::bBootFlowPlayed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUISubsystem, SubtitleAssetMap) == 0x000040, "Member 'UWrestlerUISubsystem::SubtitleAssetMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerUltraVolumetricsActor \ +static_assert(alignof(AWrestlerUltraVolumetricsActor) == 0x000008, "Wrong alignment on AWrestlerUltraVolumetricsActor"); \ +static_assert(sizeof(AWrestlerUltraVolumetricsActor) == 0x000348, "Wrong size on AWrestlerUltraVolumetricsActor"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, Root) == 0x000298, "Member 'AWrestlerUltraVolumetricsActor::Root' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, FogPreset) == 0x0002A0, "Member 'AWrestlerUltraVolumetricsActor::FogPreset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, FogParameters) == 0x0002A8, "Member 'AWrestlerUltraVolumetricsActor::FogParameters' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, Fog) == 0x000310, "Member 'AWrestlerUltraVolumetricsActor::Fog' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, Material) == 0x000318, "Member 'AWrestlerUltraVolumetricsActor::Material' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, Materials) == 0x000320, "Member 'AWrestlerUltraVolumetricsActor::Materials' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, MaterialsDF) == 0x000330, "Member 'AWrestlerUltraVolumetricsActor::MaterialsDF' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerUltraVolumetricsActor, bRandomizeWithDistanceFields) == 0x000340, "Member 'AWrestlerUltraVolumetricsActor::bRandomizeWithDistanceFields' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUltraVolumetricsFogPreset \ +static_assert(alignof(UWrestlerUltraVolumetricsFogPreset) == 0x000008, "Wrong alignment on UWrestlerUltraVolumetricsFogPreset"); \ +static_assert(sizeof(UWrestlerUltraVolumetricsFogPreset) == 0x000098, "Wrong size on UWrestlerUltraVolumetricsFogPreset"); \ +static_assert(offsetof(UWrestlerUltraVolumetricsFogPreset, Parameters) == 0x000030, "Member 'UWrestlerUltraVolumetricsFogPreset::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUpdateISMVertexAnimationProcessor \ +static_assert(alignof(UWrestlerUpdateISMVertexAnimationProcessor) == 0x000008, "Wrong alignment on UWrestlerUpdateISMVertexAnimationProcessor"); \ +static_assert(sizeof(UWrestlerUpdateISMVertexAnimationProcessor) == 0x000360, "Wrong size on UWrestlerUpdateISMVertexAnimationProcessor"); \ + +#define DUMPER7_ASSERTS_WrestlerUpdateQuestTask_GetCurrentQuestLine \ +static_assert(alignof(WrestlerUpdateQuestTask_GetCurrentQuestLine) == 0x000008, "Wrong alignment on WrestlerUpdateQuestTask_GetCurrentQuestLine"); \ +static_assert(sizeof(WrestlerUpdateQuestTask_GetCurrentQuestLine) == 0x000010, "Wrong size on WrestlerUpdateQuestTask_GetCurrentQuestLine"); \ +static_assert(offsetof(WrestlerUpdateQuestTask_GetCurrentQuestLine, ReturnValue) == 0x000000, "Member 'WrestlerUpdateQuestTask_GetCurrentQuestLine::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerUpdateQuestTask_GetQuestObjectives \ +static_assert(alignof(WrestlerUpdateQuestTask_GetQuestObjectives) == 0x000008, "Wrong alignment on WrestlerUpdateQuestTask_GetQuestObjectives"); \ +static_assert(sizeof(WrestlerUpdateQuestTask_GetQuestObjectives) == 0x000010, "Wrong size on WrestlerUpdateQuestTask_GetQuestObjectives"); \ +static_assert(offsetof(WrestlerUpdateQuestTask_GetQuestObjectives, ReturnValue) == 0x000000, "Member 'WrestlerUpdateQuestTask_GetQuestObjectives::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerUpdateQuestTask \ +static_assert(alignof(UWrestlerUpdateQuestTask) == 0x000008, "Wrong alignment on UWrestlerUpdateQuestTask"); \ +static_assert(sizeof(UWrestlerUpdateQuestTask) == 0x000110, "Wrong size on UWrestlerUpdateQuestTask"); \ +static_assert(offsetof(UWrestlerUpdateQuestTask, QuestData) == 0x000088, "Member 'UWrestlerUpdateQuestTask::QuestData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUpdateQuestTask, ProgressVariable) == 0x0000B0, "Member 'UWrestlerUpdateQuestTask::ProgressVariable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerUpdateQuestTask, Objectives) == 0x0000C0, "Member 'UWrestlerUpdateQuestTask::Objectives' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters \ +static_assert(alignof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters) == 0x000008, "Wrong alignment on WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters"); \ +static_assert(sizeof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters) == 0x000048, "Wrong size on WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters"); \ +static_assert(offsetof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters, InNiagaraSystemComponent) == 0x000000, "Member 'WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters::InNiagaraSystemComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters, OutVectorParams) == 0x000008, "Member 'WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters::OutVectorParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters, OutScalarParams) == 0x000018, "Member 'WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters::OutScalarParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters, OutLinearColorParams) == 0x000028, "Member 'WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters::OutLinearColorParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters, OutVector4Params) == 0x000038, "Member 'WrestlerVFXBlueprintUtilities_GetExposedNiagaraParameters::OutVector4Params' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerVFXBlueprintUtilities \ +static_assert(alignof(UWrestlerVFXBlueprintUtilities) == 0x000008, "Wrong alignment on UWrestlerVFXBlueprintUtilities"); \ +static_assert(sizeof(UWrestlerVFXBlueprintUtilities) == 0x000028, "Wrong size on UWrestlerVFXBlueprintUtilities"); \ + +#define DUMPER7_ASSERTS_UWrestleVideoPlayerWidget \ +static_assert(alignof(UWrestleVideoPlayerWidget) == 0x000008, "Wrong alignment on UWrestleVideoPlayerWidget"); \ +static_assert(sizeof(UWrestleVideoPlayerWidget) == 0x0002D8, "Wrong size on UWrestleVideoPlayerWidget"); \ +static_assert(offsetof(UWrestleVideoPlayerWidget, MediaPlayer) == 0x0002D0, "Member 'UWrestleVideoPlayerWidget::MediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerVisionTaggable_GetTagWidget \ +static_assert(alignof(WrestlerVisionTaggable_GetTagWidget) == 0x000008, "Wrong alignment on WrestlerVisionTaggable_GetTagWidget"); \ +static_assert(sizeof(WrestlerVisionTaggable_GetTagWidget) == 0x000008, "Wrong size on WrestlerVisionTaggable_GetTagWidget"); \ +static_assert(offsetof(WrestlerVisionTaggable_GetTagWidget, ReturnValue) == 0x000000, "Member 'WrestlerVisionTaggable_GetTagWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IWrestlerVisionTaggable \ +static_assert(alignof(IWrestlerVisionTaggable) == 0x000001, "Wrong alignment on IWrestlerVisionTaggable"); \ +static_assert(sizeof(IWrestlerVisionTaggable) == 0x000001, "Wrong size on IWrestlerVisionTaggable"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypointActor \ +static_assert(alignof(AWrestlerWaypointActor) == 0x000008, "Wrong alignment on AWrestlerWaypointActor"); \ +static_assert(sizeof(AWrestlerWaypointActor) == 0x0002A8, "Wrong size on AWrestlerWaypointActor"); \ +static_assert(offsetof(AWrestlerWaypointActor, TraceInitialHeight) == 0x000298, "Member 'AWrestlerWaypointActor::TraceInitialHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypoint_BoxTrigger \ +static_assert(alignof(AWrestlerWaypoint_BoxTrigger) == 0x000008, "Wrong alignment on AWrestlerWaypoint_BoxTrigger"); \ +static_assert(sizeof(AWrestlerWaypoint_BoxTrigger) == 0x0003D8, "Wrong size on AWrestlerWaypoint_BoxTrigger"); \ +static_assert(offsetof(AWrestlerWaypoint_BoxTrigger, Collider) == 0x0003D0, "Member 'AWrestlerWaypoint_BoxTrigger::Collider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypoint_Location \ +static_assert(alignof(AWrestlerWaypoint_Location) == 0x000008, "Wrong alignment on AWrestlerWaypoint_Location"); \ +static_assert(sizeof(AWrestlerWaypoint_Location) == 0x0003A8, "Wrong size on AWrestlerWaypoint_Location"); \ +static_assert(offsetof(AWrestlerWaypoint_Location, PlayerLocationPropertyComponent) == 0x000390, "Member 'AWrestlerWaypoint_Location::PlayerLocationPropertyComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint_Location, SourceLocation) == 0x000398, "Member 'AWrestlerWaypoint_Location::SourceLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWaypoint_Location, TargetLocation) == 0x0003A0, "Member 'AWrestlerWaypoint_Location::TargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWaypoint_SphereTrigger \ +static_assert(alignof(AWrestlerWaypoint_SphereTrigger) == 0x000008, "Wrong alignment on AWrestlerWaypoint_SphereTrigger"); \ +static_assert(sizeof(AWrestlerWaypoint_SphereTrigger) == 0x0003D8, "Wrong size on AWrestlerWaypoint_SphereTrigger"); \ +static_assert(offsetof(AWrestlerWaypoint_SphereTrigger, Collider) == 0x0003D0, "Member 'AWrestlerWaypoint_SphereTrigger::Collider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeaponAbilitySet \ +static_assert(alignof(UWrestlerWeaponAbilitySet) == 0x000008, "Wrong alignment on UWrestlerWeaponAbilitySet"); \ +static_assert(sizeof(UWrestlerWeaponAbilitySet) == 0x000050, "Wrong size on UWrestlerWeaponAbilitySet"); \ +static_assert(offsetof(UWrestlerWeaponAbilitySet, GrantedGameplayAbilities) == 0x000030, "Member 'UWrestlerWeaponAbilitySet::GrantedGameplayAbilities' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponAbilitySet, GrantedGameplayEffects) == 0x000040, "Member 'UWrestlerWeaponAbilitySet::GrantedGameplayEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWeather \ +static_assert(alignof(AWrestlerWeather) == 0x000008, "Wrong alignment on AWrestlerWeather"); \ +static_assert(sizeof(AWrestlerWeather) == 0x0002A0, "Wrong size on AWrestlerWeather"); \ +static_assert(offsetof(AWrestlerWeather, WeatherSetupComponent) == 0x000298, "Member 'AWrestlerWeather::WeatherSetupComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished \ +static_assert(alignof(WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished) == 0x000008, "Wrong alignment on WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished"); \ +static_assert(sizeof(WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished) == 0x000008, "Wrong size on WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished"); \ +static_assert(offsetof(WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished, FinishedComponent) == 0x000000, "Member 'WrestlerWeatherNiagaraActor_OnNiagaraSystemFinished::FinishedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish \ +static_assert(alignof(WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish) == 0x000001, "Wrong alignment on WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish"); \ +static_assert(sizeof(WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish) == 0x000001, "Wrong size on WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish"); \ +static_assert(offsetof(WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish, bShouldDestroyOnSystemFinish) == 0x000000, "Member 'WrestlerWeatherNiagaraActor_SetDestroyOnSystemFinish::bShouldDestroyOnSystemFinish' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWeatherNiagaraActor \ +static_assert(alignof(AWrestlerWeatherNiagaraActor) == 0x000008, "Wrong alignment on AWrestlerWeatherNiagaraActor"); \ +static_assert(sizeof(AWrestlerWeatherNiagaraActor) == 0x0002B0, "Wrong size on AWrestlerWeatherNiagaraActor"); \ +static_assert(offsetof(AWrestlerWeatherNiagaraActor, NiagaraComponent) == 0x000298, "Member 'AWrestlerWeatherNiagaraActor::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWeatherNiagaraActor, WeatherReceiverComponent) == 0x0002A0, "Member 'AWrestlerWeatherNiagaraActor::WeatherReceiverComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherSubsystem_RegisterWeatherSetup \ +static_assert(alignof(WrestlerWeatherSubsystem_RegisterWeatherSetup) == 0x000008, "Wrong alignment on WrestlerWeatherSubsystem_RegisterWeatherSetup"); \ +static_assert(sizeof(WrestlerWeatherSubsystem_RegisterWeatherSetup) == 0x000008, "Wrong size on WrestlerWeatherSubsystem_RegisterWeatherSetup"); \ +static_assert(offsetof(WrestlerWeatherSubsystem_RegisterWeatherSetup, InSetup) == 0x000000, "Member 'WrestlerWeatherSubsystem_RegisterWeatherSetup::InSetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherSubsystem_SetWindGustTimerRate \ +static_assert(alignof(WrestlerWeatherSubsystem_SetWindGustTimerRate) == 0x000004, "Wrong alignment on WrestlerWeatherSubsystem_SetWindGustTimerRate"); \ +static_assert(sizeof(WrestlerWeatherSubsystem_SetWindGustTimerRate) == 0x000004, "Wrong size on WrestlerWeatherSubsystem_SetWindGustTimerRate"); \ +static_assert(offsetof(WrestlerWeatherSubsystem_SetWindGustTimerRate, InRate) == 0x000000, "Member 'WrestlerWeatherSubsystem_SetWindGustTimerRate::InRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherSubsystem_UnRegisterWeatherSetup \ +static_assert(alignof(WrestlerWeatherSubsystem_UnRegisterWeatherSetup) == 0x000008, "Wrong alignment on WrestlerWeatherSubsystem_UnRegisterWeatherSetup"); \ +static_assert(sizeof(WrestlerWeatherSubsystem_UnRegisterWeatherSetup) == 0x000008, "Wrong size on WrestlerWeatherSubsystem_UnRegisterWeatherSetup"); \ +static_assert(offsetof(WrestlerWeatherSubsystem_UnRegisterWeatherSetup, InSetup) == 0x000000, "Member 'WrestlerWeatherSubsystem_UnRegisterWeatherSetup::InSetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherSubsystem_GetCurrentWeatherParameters \ +static_assert(alignof(WrestlerWeatherSubsystem_GetCurrentWeatherParameters) == 0x000008, "Wrong alignment on WrestlerWeatherSubsystem_GetCurrentWeatherParameters"); \ +static_assert(sizeof(WrestlerWeatherSubsystem_GetCurrentWeatherParameters) == 0x000038, "Wrong size on WrestlerWeatherSubsystem_GetCurrentWeatherParameters"); \ +static_assert(offsetof(WrestlerWeatherSubsystem_GetCurrentWeatherParameters, ReturnValue) == 0x000000, "Member 'WrestlerWeatherSubsystem_GetCurrentWeatherParameters::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeatherSubsystem_GetWindGustTimerRate \ +static_assert(alignof(WrestlerWeatherSubsystem_GetWindGustTimerRate) == 0x000004, "Wrong alignment on WrestlerWeatherSubsystem_GetWindGustTimerRate"); \ +static_assert(sizeof(WrestlerWeatherSubsystem_GetWindGustTimerRate) == 0x000004, "Wrong size on WrestlerWeatherSubsystem_GetWindGustTimerRate"); \ +static_assert(offsetof(WrestlerWeatherSubsystem_GetWindGustTimerRate, ReturnValue) == 0x000000, "Member 'WrestlerWeatherSubsystem_GetWindGustTimerRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeatherSubsystem \ +static_assert(alignof(UWrestlerWeatherSubsystem) == 0x000008, "Wrong alignment on UWrestlerWeatherSubsystem"); \ +static_assert(sizeof(UWrestlerWeatherSubsystem) == 0x0001B0, "Wrong size on UWrestlerWeatherSubsystem"); \ +static_assert(offsetof(UWrestlerWeatherSubsystem, OnWindGust) == 0x000038, "Member 'UWrestlerWeatherSubsystem::OnWindGust' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSubsystem, OnWeatherUpdate) == 0x000048, "Member 'UWrestlerWeatherSubsystem::OnWeatherUpdate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeatherSubsystem, WindGustTimerRate) == 0x000058, "Member 'UWrestlerWeatherSubsystem::WindGustTimerRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerWeatherVolume \ +static_assert(alignof(AWrestlerWeatherVolume) == 0x000008, "Wrong alignment on AWrestlerWeatherVolume"); \ +static_assert(sizeof(AWrestlerWeatherVolume) == 0x0002D8, "Wrong size on AWrestlerWeatherVolume"); \ +static_assert(offsetof(AWrestlerWeatherVolume, WeatherSetupComponent) == 0x0002D0, "Member 'AWrestlerWeatherVolume::WeatherSetupComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWorldPartitionManager \ +static_assert(alignof(UWrestlerWorldPartitionManager) == 0x000008, "Wrong alignment on UWrestlerWorldPartitionManager"); \ +static_assert(sizeof(UWrestlerWorldPartitionManager) == 0x000040, "Wrong size on UWrestlerWorldPartitionManager"); \ + +#define DUMPER7_ASSERTS_AWrestlerWorldSettings \ +static_assert(alignof(AWrestlerWorldSettings) == 0x000008, "Wrong alignment on AWrestlerWorldSettings"); \ +static_assert(sizeof(AWrestlerWorldSettings) == 0x0004C8, "Wrong size on AWrestlerWorldSettings"); \ +static_assert(offsetof(AWrestlerWorldSettings, MassSpawnerDataTableAsset) == 0x0004B8, "Member 'AWrestlerWorldSettings::MassSpawnerDataTableAsset' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerWorldSettings, SmartObjectDataTableAsset) == 0x0004C0, "Member 'AWrestlerWorldSettings::SmartObjectDataTableAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddAP \ +static_assert(alignof(WrestlerXPComponent_AddAP) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddAP"); \ +static_assert(sizeof(WrestlerXPComponent_AddAP) == 0x000004, "Wrong size on WrestlerXPComponent_AddAP"); \ +static_assert(offsetof(WrestlerXPComponent_AddAP, InAPToAdd) == 0x000000, "Member 'WrestlerXPComponent_AddAP::InAPToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddCholericPoints \ +static_assert(alignof(WrestlerXPComponent_AddCholericPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddCholericPoints"); \ +static_assert(sizeof(WrestlerXPComponent_AddCholericPoints) == 0x000004, "Wrong size on WrestlerXPComponent_AddCholericPoints"); \ +static_assert(offsetof(WrestlerXPComponent_AddCholericPoints, InSanguineToAdd) == 0x000000, "Member 'WrestlerXPComponent_AddCholericPoints::InSanguineToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddMelancholicPoints \ +static_assert(alignof(WrestlerXPComponent_AddMelancholicPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddMelancholicPoints"); \ +static_assert(sizeof(WrestlerXPComponent_AddMelancholicPoints) == 0x000004, "Wrong size on WrestlerXPComponent_AddMelancholicPoints"); \ +static_assert(offsetof(WrestlerXPComponent_AddMelancholicPoints, InSanguineToAdd) == 0x000000, "Member 'WrestlerXPComponent_AddMelancholicPoints::InSanguineToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddPointsForCustomEvent \ +static_assert(alignof(WrestlerXPComponent_AddPointsForCustomEvent) == 0x000008, "Wrong alignment on WrestlerXPComponent_AddPointsForCustomEvent"); \ +static_assert(sizeof(WrestlerXPComponent_AddPointsForCustomEvent) == 0x000028, "Wrong size on WrestlerXPComponent_AddPointsForCustomEvent"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForCustomEvent, InEventData) == 0x000000, "Member 'WrestlerXPComponent_AddPointsForCustomEvent::InEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForCustomEvent, bInOverridePooling) == 0x000020, "Member 'WrestlerXPComponent_AddPointsForCustomEvent::bInOverridePooling' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForCustomEvent, ReturnValue) == 0x000021, "Member 'WrestlerXPComponent_AddPointsForCustomEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddPointsForRegisteredEvent \ +static_assert(alignof(WrestlerXPComponent_AddPointsForRegisteredEvent) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddPointsForRegisteredEvent"); \ +static_assert(sizeof(WrestlerXPComponent_AddPointsForRegisteredEvent) == 0x00000C, "Wrong size on WrestlerXPComponent_AddPointsForRegisteredEvent"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForRegisteredEvent, InEventTag) == 0x000000, "Member 'WrestlerXPComponent_AddPointsForRegisteredEvent::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForRegisteredEvent, bInOverridePooling) == 0x000008, "Member 'WrestlerXPComponent_AddPointsForRegisteredEvent::bInOverridePooling' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_AddPointsForRegisteredEvent, ReturnValue) == 0x000009, "Member 'WrestlerXPComponent_AddPointsForRegisteredEvent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddSanguinePoints \ +static_assert(alignof(WrestlerXPComponent_AddSanguinePoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddSanguinePoints"); \ +static_assert(sizeof(WrestlerXPComponent_AddSanguinePoints) == 0x000004, "Wrong size on WrestlerXPComponent_AddSanguinePoints"); \ +static_assert(offsetof(WrestlerXPComponent_AddSanguinePoints, InSanguineToAdd) == 0x000000, "Member 'WrestlerXPComponent_AddSanguinePoints::InSanguineToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddXP \ +static_assert(alignof(WrestlerXPComponent_AddXP) == 0x000004, "Wrong alignment on WrestlerXPComponent_AddXP"); \ +static_assert(sizeof(WrestlerXPComponent_AddXP) == 0x000004, "Wrong size on WrestlerXPComponent_AddXP"); \ +static_assert(offsetof(WrestlerXPComponent_AddXP, InXPToAdd) == 0x000000, "Member 'WrestlerXPComponent_AddXP::InXPToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AddXPFromFeed \ +static_assert(alignof(WrestlerXPComponent_AddXPFromFeed) == 0x000008, "Wrong alignment on WrestlerXPComponent_AddXPFromFeed"); \ +static_assert(sizeof(WrestlerXPComponent_AddXPFromFeed) == 0x000008, "Wrong size on WrestlerXPComponent_AddXPFromFeed"); \ +static_assert(offsetof(WrestlerXPComponent_AddXPFromFeed, InFeedActor) == 0x000000, "Member 'WrestlerXPComponent_AddXPFromFeed::InFeedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_CanAffordAbility \ +static_assert(alignof(WrestlerXPComponent_CanAffordAbility) == 0x000008, "Wrong alignment on WrestlerXPComponent_CanAffordAbility"); \ +static_assert(sizeof(WrestlerXPComponent_CanAffordAbility) == 0x000028, "Wrong size on WrestlerXPComponent_CanAffordAbility"); \ +static_assert(offsetof(WrestlerXPComponent_CanAffordAbility, InCost) == 0x000000, "Member 'WrestlerXPComponent_CanAffordAbility::InCost' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_CanAffordAbility, OutMissingCost) == 0x000010, "Member 'WrestlerXPComponent_CanAffordAbility::OutMissingCost' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_CanAffordAbility, ReturnValue) == 0x000020, "Member 'WrestlerXPComponent_CanAffordAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAchievementCounterData \ +static_assert(alignof(WrestlerXPComponent_GetAchievementCounterData) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAchievementCounterData"); \ +static_assert(sizeof(WrestlerXPComponent_GetAchievementCounterData) == 0x000010, "Wrong size on WrestlerXPComponent_GetAchievementCounterData"); \ +static_assert(offsetof(WrestlerXPComponent_GetAchievementCounterData, InAchievementTag) == 0x000000, "Member 'WrestlerXPComponent_GetAchievementCounterData::InAchievementTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_GetAchievementCounterData, OutTotalToFind) == 0x000008, "Member 'WrestlerXPComponent_GetAchievementCounterData::OutTotalToFind' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_GetAchievementCounterData, OutFoundCount) == 0x00000C, "Member 'WrestlerXPComponent_GetAchievementCounterData::OutFoundCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAvailableAP \ +static_assert(alignof(WrestlerXPComponent_GetAvailableAP) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAvailableAP"); \ +static_assert(sizeof(WrestlerXPComponent_GetAvailableAP) == 0x000004, "Wrong size on WrestlerXPComponent_GetAvailableAP"); \ +static_assert(offsetof(WrestlerXPComponent_GetAvailableAP, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_GetAvailableAP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAvailableCholericPoints \ +static_assert(alignof(WrestlerXPComponent_GetAvailableCholericPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAvailableCholericPoints"); \ +static_assert(sizeof(WrestlerXPComponent_GetAvailableCholericPoints) == 0x000004, "Wrong size on WrestlerXPComponent_GetAvailableCholericPoints"); \ +static_assert(offsetof(WrestlerXPComponent_GetAvailableCholericPoints, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_GetAvailableCholericPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAvailableMelancholicPoints \ +static_assert(alignof(WrestlerXPComponent_GetAvailableMelancholicPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAvailableMelancholicPoints"); \ +static_assert(sizeof(WrestlerXPComponent_GetAvailableMelancholicPoints) == 0x000004, "Wrong size on WrestlerXPComponent_GetAvailableMelancholicPoints"); \ +static_assert(offsetof(WrestlerXPComponent_GetAvailableMelancholicPoints, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_GetAvailableMelancholicPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAvailableSanguinePoints \ +static_assert(alignof(WrestlerXPComponent_GetAvailableSanguinePoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAvailableSanguinePoints"); \ +static_assert(sizeof(WrestlerXPComponent_GetAvailableSanguinePoints) == 0x000004, "Wrong size on WrestlerXPComponent_GetAvailableSanguinePoints"); \ +static_assert(offsetof(WrestlerXPComponent_GetAvailableSanguinePoints, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_GetAvailableSanguinePoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetAvailableXP \ +static_assert(alignof(WrestlerXPComponent_GetAvailableXP) == 0x000004, "Wrong alignment on WrestlerXPComponent_GetAvailableXP"); \ +static_assert(sizeof(WrestlerXPComponent_GetAvailableXP) == 0x000004, "Wrong size on WrestlerXPComponent_GetAvailableXP"); \ +static_assert(offsetof(WrestlerXPComponent_GetAvailableXP, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_GetAvailableXP::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_GetEventData \ +static_assert(alignof(WrestlerXPComponent_GetEventData) == 0x000008, "Wrong alignment on WrestlerXPComponent_GetEventData"); \ +static_assert(sizeof(WrestlerXPComponent_GetEventData) == 0x000028, "Wrong size on WrestlerXPComponent_GetEventData"); \ +static_assert(offsetof(WrestlerXPComponent_GetEventData, InEventTag) == 0x000000, "Member 'WrestlerXPComponent_GetEventData::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_GetEventData, ReturnValue) == 0x000008, "Member 'WrestlerXPComponent_GetEventData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_PoolXPFromEvent \ +static_assert(alignof(WrestlerXPComponent_PoolXPFromEvent) == 0x000004, "Wrong alignment on WrestlerXPComponent_PoolXPFromEvent"); \ +static_assert(sizeof(WrestlerXPComponent_PoolXPFromEvent) == 0x000008, "Wrong size on WrestlerXPComponent_PoolXPFromEvent"); \ +static_assert(offsetof(WrestlerXPComponent_PoolXPFromEvent, InEventTag) == 0x000000, "Member 'WrestlerXPComponent_PoolXPFromEvent::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_ShouldOverrideNotificationTimer \ +static_assert(alignof(WrestlerXPComponent_ShouldOverrideNotificationTimer) == 0x000008, "Wrong alignment on WrestlerXPComponent_ShouldOverrideNotificationTimer"); \ +static_assert(sizeof(WrestlerXPComponent_ShouldOverrideNotificationTimer) == 0x000010, "Wrong size on WrestlerXPComponent_ShouldOverrideNotificationTimer"); \ +static_assert(offsetof(WrestlerXPComponent_ShouldOverrideNotificationTimer, InOverride) == 0x000000, "Member 'WrestlerXPComponent_ShouldOverrideNotificationTimer::InOverride' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_ShouldOverrideNotificationTimer, InNewTimer) == 0x000008, "Member 'WrestlerXPComponent_ShouldOverrideNotificationTimer::InNewTimer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_SpendAP \ +static_assert(alignof(WrestlerXPComponent_SpendAP) == 0x000004, "Wrong alignment on WrestlerXPComponent_SpendAP"); \ +static_assert(sizeof(WrestlerXPComponent_SpendAP) == 0x000004, "Wrong size on WrestlerXPComponent_SpendAP"); \ +static_assert(offsetof(WrestlerXPComponent_SpendAP, InAPToSpend) == 0x000000, "Member 'WrestlerXPComponent_SpendAP::InAPToSpend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_SpendCholericPoints \ +static_assert(alignof(WrestlerXPComponent_SpendCholericPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_SpendCholericPoints"); \ +static_assert(sizeof(WrestlerXPComponent_SpendCholericPoints) == 0x000004, "Wrong size on WrestlerXPComponent_SpendCholericPoints"); \ +static_assert(offsetof(WrestlerXPComponent_SpendCholericPoints, InSanguineToSpend) == 0x000000, "Member 'WrestlerXPComponent_SpendCholericPoints::InSanguineToSpend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_SpendMelancholicPoints \ +static_assert(alignof(WrestlerXPComponent_SpendMelancholicPoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_SpendMelancholicPoints"); \ +static_assert(sizeof(WrestlerXPComponent_SpendMelancholicPoints) == 0x000004, "Wrong size on WrestlerXPComponent_SpendMelancholicPoints"); \ +static_assert(offsetof(WrestlerXPComponent_SpendMelancholicPoints, InSanguineToSpend) == 0x000000, "Member 'WrestlerXPComponent_SpendMelancholicPoints::InSanguineToSpend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_SpendSanguinePoints \ +static_assert(alignof(WrestlerXPComponent_SpendSanguinePoints) == 0x000004, "Wrong alignment on WrestlerXPComponent_SpendSanguinePoints"); \ +static_assert(sizeof(WrestlerXPComponent_SpendSanguinePoints) == 0x000004, "Wrong size on WrestlerXPComponent_SpendSanguinePoints"); \ +static_assert(offsetof(WrestlerXPComponent_SpendSanguinePoints, InSanguineToSpend) == 0x000000, "Member 'WrestlerXPComponent_SpendSanguinePoints::InSanguineToSpend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_AchievementCollected \ +static_assert(alignof(WrestlerXPComponent_AchievementCollected) == 0x000008, "Wrong alignment on WrestlerXPComponent_AchievementCollected"); \ +static_assert(sizeof(WrestlerXPComponent_AchievementCollected) == 0x000010, "Wrong size on WrestlerXPComponent_AchievementCollected"); \ +static_assert(offsetof(WrestlerXPComponent_AchievementCollected, InAchievementTag) == 0x000000, "Member 'WrestlerXPComponent_AchievementCollected::InAchievementTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerXPComponent_AchievementCollected, ObjectToAdd) == 0x000008, "Member 'WrestlerXPComponent_AchievementCollected::ObjectToAdd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerXPComponent_MaxXPForNextAPPoint \ +static_assert(alignof(WrestlerXPComponent_MaxXPForNextAPPoint) == 0x000004, "Wrong alignment on WrestlerXPComponent_MaxXPForNextAPPoint"); \ +static_assert(sizeof(WrestlerXPComponent_MaxXPForNextAPPoint) == 0x000004, "Wrong size on WrestlerXPComponent_MaxXPForNextAPPoint"); \ +static_assert(offsetof(WrestlerXPComponent_MaxXPForNextAPPoint, ReturnValue) == 0x000000, "Member 'WrestlerXPComponent_MaxXPForNextAPPoint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerXPComponent \ +static_assert(alignof(UWrestlerXPComponent) == 0x000008, "Wrong alignment on UWrestlerXPComponent"); \ +static_assert(sizeof(UWrestlerXPComponent) == 0x000258, "Wrong size on UWrestlerXPComponent"); \ +static_assert(offsetof(UWrestlerXPComponent, ExperiencePointsProperty) == 0x0000A0, "Member 'UWrestlerXPComponent::ExperiencePointsProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, AbilityPointsProperty) == 0x0000A8, "Member 'UWrestlerXPComponent::AbilityPointsProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, BloodResonanceProperty) == 0x0000B0, "Member 'UWrestlerXPComponent::BloodResonanceProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, BloodResonanceIcons) == 0x000100, "Member 'UWrestlerXPComponent::BloodResonanceIcons' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, TotalAbilityPointsProperty) == 0x000150, "Member 'UWrestlerXPComponent::TotalAbilityPointsProperty' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, XPDataAsset) == 0x000158, "Member 'UWrestlerXPComponent::XPDataAsset' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, bConvertXPToAPAutomaticallyWhenPossible) == 0x000160, "Member 'UWrestlerXPComponent::bConvertXPToAPAutomaticallyWhenPossible' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnXPChanged) == 0x000168, "Member 'UWrestlerXPComponent::OnXPChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnAPChanged) == 0x000178, "Member 'UWrestlerXPComponent::OnAPChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnAPChangedSimple) == 0x000188, "Member 'UWrestlerXPComponent::OnAPChangedSimple' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnNewAPReceived) == 0x000198, "Member 'UWrestlerXPComponent::OnNewAPReceived' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnBRChanged) == 0x0001A8, "Member 'UWrestlerXPComponent::OnBRChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnXPOrAPChanged) == 0x0001B8, "Member 'UWrestlerXPComponent::OnXPOrAPChanged' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, OnBRTypeGained) == 0x0001C8, "Member 'UWrestlerXPComponent::OnBRTypeGained' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, APIcon) == 0x0001D8, "Member 'UWrestlerXPComponent::APIcon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, XPNotification) == 0x0001E0, "Member 'UWrestlerXPComponent::XPNotification' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, XPNotificationDuration_Default) == 0x000238, "Member 'UWrestlerXPComponent::XPNotificationDuration_Default' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPComponent, XPNotificationDuration_Long) == 0x000240, "Member 'UWrestlerXPComponent::XPNotificationDuration_Long' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerXPDataAsset \ +static_assert(alignof(UWrestlerXPDataAsset) == 0x000008, "Wrong alignment on UWrestlerXPDataAsset"); \ +static_assert(sizeof(UWrestlerXPDataAsset) == 0x000160, "Wrong size on UWrestlerXPDataAsset"); \ +static_assert(offsetof(UWrestlerXPDataAsset, EventTagAndData) == 0x000030, "Member 'UWrestlerXPDataAsset::EventTagAndData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPDataAsset, AchievementCollectableCounters) == 0x000080, "Member 'UWrestlerXPDataAsset::AchievementCollectableCounters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPDataAsset, ConversionData) == 0x0000D0, "Member 'UWrestlerXPDataAsset::ConversionData' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerXPDataAsset, XPtoAPGoal) == 0x000158, "Member 'UWrestlerXPDataAsset::XPtoAPGoal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerZGSpawnPointsGenerator \ +static_assert(alignof(UWrestlerZGSpawnPointsGenerator) == 0x000008, "Wrong alignment on UWrestlerZGSpawnPointsGenerator"); \ +static_assert(sizeof(UWrestlerZGSpawnPointsGenerator) == 0x000080, "Wrong size on UWrestlerZGSpawnPointsGenerator"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, TagFilter) == 0x000030, "Member 'UWrestlerZGSpawnPointsGenerator::TagFilter' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, MinGap) == 0x00003C, "Member 'UWrestlerZGSpawnPointsGenerator::MinGap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, MaxGap) == 0x000040, "Member 'UWrestlerZGSpawnPointsGenerator::MaxGap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, RandomSeed) == 0x000044, "Member 'UWrestlerZGSpawnPointsGenerator::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, RandomizeLocations) == 0x000048, "Member 'UWrestlerZGSpawnPointsGenerator::RandomizeLocations' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, bFillZones) == 0x000049, "Member 'UWrestlerZGSpawnPointsGenerator::bFillZones' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, WidthRandomUsage) == 0x00004C, "Member 'UWrestlerZGSpawnPointsGenerator::WidthRandomUsage' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZGSpawnPointsGenerator, Data) == 0x000050, "Member 'UWrestlerZGSpawnPointsGenerator::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerZoneGraphVolumeAnnotation \ +static_assert(alignof(UWrestlerZoneGraphVolumeAnnotation) == 0x000010, "Wrong alignment on UWrestlerZoneGraphVolumeAnnotation"); \ +static_assert(sizeof(UWrestlerZoneGraphVolumeAnnotation) == 0x000660, "Wrong size on UWrestlerZoneGraphVolumeAnnotation"); \ +static_assert(offsetof(UWrestlerZoneGraphVolumeAnnotation, AnnotationTags) == 0x0005E0, "Member 'UWrestlerZoneGraphVolumeAnnotation::AnnotationTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZoneGraphVolumeAnnotation, PendingAnnotationEvents) == 0x0005E8, "Member 'UWrestlerZoneGraphVolumeAnnotation::PendingAnnotationEvents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZoneGraphVolumeAnnotation, ActiveAnnotationEvents) == 0x0005F8, "Member 'UWrestlerZoneGraphVolumeAnnotation::ActiveAnnotationEvents' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerZoneGraphVolumeAnnotation, ZoneGraphSubsystem) == 0x000658, "Member 'UWrestlerZoneGraphVolumeAnnotation::ZoneGraphSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre \ +static_assert(alignof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre) == 0x000008, "Wrong alignment on AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre"); \ +static_assert(sizeof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre) == 0x0000A8, "Wrong size on AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, EntryPoint) == 0x000000, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, K2Node_Event_InAutomata) == 0x000010, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, K2Node_Event_InState) == 0x000018, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000028, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000030, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000038, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000040, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000048, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000058, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000068, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_Array_Get_Item) == 0x000070, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_Array_Length_ReturnValue) == 0x000078, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000080, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_Less_IntInt_ReturnValue) == 0x0000A0, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0000A1, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre, CallFunc_HasTag_ReturnValue) == 0x0000A2, "Member 'AddRemoveTagsOnPhyre_C_ExecuteUbergraph_AddRemoveTagsOnPhyre::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AddRemoveTagsOnPhyre_C_ReceiveExecute \ +static_assert(alignof(AddRemoveTagsOnPhyre_C_ReceiveExecute) == 0x000008, "Wrong alignment on AddRemoveTagsOnPhyre_C_ReceiveExecute"); \ +static_assert(sizeof(AddRemoveTagsOnPhyre_C_ReceiveExecute) == 0x000010, "Wrong size on AddRemoveTagsOnPhyre_C_ReceiveExecute"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AddRemoveTagsOnPhyre_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagsOnPhyre_C_ReceiveExecute, InState) == 0x000008, "Member 'AddRemoveTagsOnPhyre_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAddRemoveTagsOnPhyre_C \ +static_assert(alignof(UAddRemoveTagsOnPhyre_C) == 0x000008, "Wrong alignment on UAddRemoveTagsOnPhyre_C"); \ +static_assert(sizeof(UAddRemoveTagsOnPhyre_C) == 0x0000B8, "Wrong size on UAddRemoveTagsOnPhyre_C"); \ +static_assert(offsetof(UAddRemoveTagsOnPhyre_C, UberGraphFrame) == 0x000088, "Member 'UAddRemoveTagsOnPhyre_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagsOnPhyre_C, Tags) == 0x000090, "Member 'UAddRemoveTagsOnPhyre_C::Tags' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagsOnPhyre_C, Tick_AddsTags___untick_RemovesTags) == 0x0000B0, "Member 'UAddRemoveTagsOnPhyre_C::Tick_AddsTags___untick_RemovesTags' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagsOnPhyre_C, Tick_AllowStacking___Untick_WillNotStack) == 0x0000B1, "Member 'UAddRemoveTagsOnPhyre_C::Tick_AllowStacking___Untick_WillNotStack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSequencerScriptingRange \ +static_assert(alignof(FSequencerScriptingRange) == 0x000004, "Wrong alignment on FSequencerScriptingRange"); \ +static_assert(sizeof(FSequencerScriptingRange) == 0x000014, "Wrong size on FSequencerScriptingRange"); \ +static_assert(offsetof(FSequencerScriptingRange, InclusiveStart) == 0x000004, "Member 'FSequencerScriptingRange::InclusiveStart' has a wrong offset!"); \ +static_assert(offsetof(FSequencerScriptingRange, ExclusiveEnd) == 0x000008, "Member 'FSequencerScriptingRange::ExclusiveEnd' has a wrong offset!"); \ +static_assert(offsetof(FSequencerScriptingRange, InternalRate) == 0x00000C, "Member 'FSequencerScriptingRange::InternalRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingKey \ +static_assert(alignof(UMovieSceneScriptingKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingKey"); \ +static_assert(sizeof(UMovieSceneScriptingKey) == 0x000040, "Wrong size on UMovieSceneScriptingKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceKey_SetTime \ +static_assert(alignof(MovieSceneScriptingActorReferenceKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingActorReferenceKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingActorReferenceKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingActorReferenceKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingActorReferenceKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceKey_SetValue \ +static_assert(alignof(MovieSceneScriptingActorReferenceKey_SetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceKey_SetValue) == 0x000018, "Wrong size on MovieSceneScriptingActorReferenceKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceKey_GetTime \ +static_assert(alignof(MovieSceneScriptingActorReferenceKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingActorReferenceKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingActorReferenceKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingActorReferenceKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceKey_GetValue \ +static_assert(alignof(MovieSceneScriptingActorReferenceKey_GetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceKey_GetValue) == 0x000018, "Wrong size on MovieSceneScriptingActorReferenceKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingActorReferenceKey \ +static_assert(alignof(UMovieSceneScriptingActorReferenceKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingActorReferenceKey"); \ +static_assert(sizeof(UMovieSceneScriptingActorReferenceKey) == 0x000060, "Wrong size on UMovieSceneScriptingActorReferenceKey"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingChannel \ +static_assert(alignof(UMovieSceneScriptingChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingChannel"); \ +static_assert(sizeof(UMovieSceneScriptingChannel) == 0x000030, "Wrong size on UMovieSceneScriptingChannel"); \ +static_assert(offsetof(UMovieSceneScriptingChannel, ChannelName) == 0x000028, "Member 'UMovieSceneScriptingChannel::ChannelName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_AddKey) == 0x000030, "Wrong size on MovieSceneScriptingActorReferenceChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_AddKey, NewValue) == 0x000004, "Member 'MovieSceneScriptingActorReferenceChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_AddKey, SubFrame) == 0x00001C, "Member 'MovieSceneScriptingActorReferenceChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_AddKey, TimeUnit) == 0x000020, "Member 'MovieSceneScriptingActorReferenceChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_AddKey, ReturnValue) == 0x000028, "Member 'MovieSceneScriptingActorReferenceChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingActorReferenceChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_SetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_SetDefault) == 0x000018, "Wrong size on MovieSceneScriptingActorReferenceChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_GetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_GetDefault) == 0x000018, "Wrong size on MovieSceneScriptingActorReferenceChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingActorReferenceChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingActorReferenceChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingActorReferenceChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingActorReferenceChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingActorReferenceChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingActorReferenceChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingActorReferenceChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingActorReferenceChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingActorReferenceChannel \ +static_assert(alignof(UMovieSceneScriptingActorReferenceChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingActorReferenceChannel"); \ +static_assert(sizeof(UMovieSceneScriptingActorReferenceChannel) == 0x000060, "Wrong size on UMovieSceneScriptingActorReferenceChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolKey_SetTime \ +static_assert(alignof(MovieSceneScriptingBoolKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingBoolKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingBoolKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingBoolKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingBoolKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingBoolKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingBoolKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolKey_SetValue \ +static_assert(alignof(MovieSceneScriptingBoolKey_SetValue) == 0x000001, "Wrong alignment on MovieSceneScriptingBoolKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingBoolKey_SetValue) == 0x000001, "Wrong size on MovieSceneScriptingBoolKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingBoolKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolKey_GetTime \ +static_assert(alignof(MovieSceneScriptingBoolKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingBoolKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingBoolKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingBoolKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingBoolKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingBoolKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolKey_GetValue \ +static_assert(alignof(MovieSceneScriptingBoolKey_GetValue) == 0x000001, "Wrong alignment on MovieSceneScriptingBoolKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingBoolKey_GetValue) == 0x000001, "Wrong size on MovieSceneScriptingBoolKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingBoolKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingBoolKey \ +static_assert(alignof(UMovieSceneScriptingBoolKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingBoolKey"); \ +static_assert(sizeof(UMovieSceneScriptingBoolKey) == 0x000060, "Wrong size on UMovieSceneScriptingBoolKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingBoolChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingBoolChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_AddKey) == 0x000018, "Wrong size on MovieSceneScriptingBoolChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_AddKey, NewValue) == 0x000004, "Member 'MovieSceneScriptingBoolChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_AddKey, SubFrame) == 0x000008, "Member 'MovieSceneScriptingBoolChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_AddKey, TimeUnit) == 0x00000C, "Member 'MovieSceneScriptingBoolChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_AddKey, ReturnValue) == 0x000010, "Member 'MovieSceneScriptingBoolChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingBoolChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingBoolChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingBoolChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingBoolChannel_SetDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingBoolChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_SetDefault) == 0x000001, "Wrong size on MovieSceneScriptingBoolChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_ComputeEffectiveRange \ +static_assert(alignof(MovieSceneScriptingBoolChannel_ComputeEffectiveRange) == 0x000004, "Wrong alignment on MovieSceneScriptingBoolChannel_ComputeEffectiveRange"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_ComputeEffectiveRange) == 0x000014, "Wrong size on MovieSceneScriptingBoolChannel_ComputeEffectiveRange"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_ComputeEffectiveRange, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_ComputeEffectiveRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_EvaluateKeys \ +static_assert(alignof(MovieSceneScriptingBoolChannel_EvaluateKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingBoolChannel_EvaluateKeys"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_EvaluateKeys) == 0x000030, "Wrong size on MovieSceneScriptingBoolChannel_EvaluateKeys"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_EvaluateKeys, Range) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_EvaluateKeys::Range' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_EvaluateKeys, FrameRate) == 0x000014, "Member 'MovieSceneScriptingBoolChannel_EvaluateKeys::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_EvaluateKeys, ReturnValue) == 0x000020, "Member 'MovieSceneScriptingBoolChannel_EvaluateKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingBoolChannel_GetDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingBoolChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_GetDefault) == 0x000001, "Wrong size on MovieSceneScriptingBoolChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingBoolChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingBoolChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingBoolChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_GetNumKeys \ +static_assert(alignof(MovieSceneScriptingBoolChannel_GetNumKeys) == 0x000004, "Wrong alignment on MovieSceneScriptingBoolChannel_GetNumKeys"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_GetNumKeys) == 0x000004, "Wrong size on MovieSceneScriptingBoolChannel_GetNumKeys"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_GetNumKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_GetNumKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingBoolChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingBoolChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingBoolChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingBoolChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingBoolChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingBoolChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingBoolChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingBoolChannel \ +static_assert(alignof(UMovieSceneScriptingBoolChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingBoolChannel"); \ +static_assert(sizeof(UMovieSceneScriptingBoolChannel) == 0x000060, "Wrong size on UMovieSceneScriptingBoolChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteKey_SetTime \ +static_assert(alignof(MovieSceneScriptingByteKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingByteKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingByteKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingByteKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingByteKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingByteKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingByteKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteKey_SetValue \ +static_assert(alignof(MovieSceneScriptingByteKey_SetValue) == 0x000001, "Wrong alignment on MovieSceneScriptingByteKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingByteKey_SetValue) == 0x000001, "Wrong size on MovieSceneScriptingByteKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingByteKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteKey_GetTime \ +static_assert(alignof(MovieSceneScriptingByteKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingByteKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingByteKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingByteKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingByteKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingByteKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteKey_GetValue \ +static_assert(alignof(MovieSceneScriptingByteKey_GetValue) == 0x000001, "Wrong alignment on MovieSceneScriptingByteKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingByteKey_GetValue) == 0x000001, "Wrong size on MovieSceneScriptingByteKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingByteKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingByteKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingByteKey \ +static_assert(alignof(UMovieSceneScriptingByteKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingByteKey"); \ +static_assert(sizeof(UMovieSceneScriptingByteKey) == 0x000060, "Wrong size on UMovieSceneScriptingByteKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingByteChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingByteChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_AddKey) == 0x000018, "Wrong size on MovieSceneScriptingByteChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingByteChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, NewValue) == 0x000004, "Member 'MovieSceneScriptingByteChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, SubFrame) == 0x000008, "Member 'MovieSceneScriptingByteChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, TimeUnit) == 0x00000C, "Member 'MovieSceneScriptingByteChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, InInterpolation) == 0x00000D, "Member 'MovieSceneScriptingByteChannel_AddKey::InInterpolation' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_AddKey, ReturnValue) == 0x000010, "Member 'MovieSceneScriptingByteChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingByteChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingByteChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingByteChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingByteChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingByteChannel_SetDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingByteChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_SetDefault) == 0x000001, "Wrong size on MovieSceneScriptingByteChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingByteChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingByteChannel_GetDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingByteChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_GetDefault) == 0x000001, "Wrong size on MovieSceneScriptingByteChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingByteChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingByteChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingByteChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingByteChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingByteChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingByteChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingByteChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingByteChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingByteChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingByteChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingByteChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingByteChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingByteChannel \ +static_assert(alignof(UMovieSceneScriptingByteChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingByteChannel"); \ +static_assert(sizeof(UMovieSceneScriptingByteChannel) == 0x000060, "Wrong size on UMovieSceneScriptingByteChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetArriveTangent \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetArriveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_SetArriveTangent"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetArriveTangent) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_SetArriveTangent"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetArriveTangent, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetArriveTangent::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetArriveTangentWeight \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetArriveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_SetArriveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetArriveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_SetArriveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetArriveTangentWeight, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetArriveTangentWeight::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetInterpolationMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetInterpolationMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_SetInterpolationMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetInterpolationMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_SetInterpolationMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetInterpolationMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetInterpolationMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetLeaveTangent \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetLeaveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_SetLeaveTangent"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetLeaveTangent) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_SetLeaveTangent"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetLeaveTangent, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetLeaveTangent::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetLeaveTangentWeight \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetLeaveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_SetLeaveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetLeaveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_SetLeaveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetLeaveTangentWeight, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetLeaveTangentWeight::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetTangentMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetTangentMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_SetTangentMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetTangentMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_SetTangentMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetTangentMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetTangentMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetTangentWeightMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetTangentWeightMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_SetTangentWeightMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetTangentWeightMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_SetTangentWeightMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetTangentWeightMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetTangentWeightMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetTime \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingDoubleKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingDoubleKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingDoubleKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_SetValue \ +static_assert(alignof(MovieSceneScriptingDoubleKey_SetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_SetValue) == 0x000008, "Wrong size on MovieSceneScriptingDoubleKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetArriveTangent \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetArriveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_GetArriveTangent"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetArriveTangent) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_GetArriveTangent"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetArriveTangent, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetArriveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetArriveTangentWeight \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetArriveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_GetArriveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetArriveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_GetArriveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetArriveTangentWeight, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetArriveTangentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetInterpolationMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetInterpolationMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_GetInterpolationMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetInterpolationMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_GetInterpolationMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetInterpolationMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetInterpolationMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetLeaveTangent \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetLeaveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_GetLeaveTangent"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetLeaveTangent) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_GetLeaveTangent"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetLeaveTangent, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetLeaveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetLeaveTangentWeight \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetLeaveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_GetLeaveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetLeaveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingDoubleKey_GetLeaveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetLeaveTangentWeight, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetLeaveTangentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetTangentMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetTangentMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_GetTangentMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetTangentMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_GetTangentMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetTangentMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetTangentMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetTangentWeightMode \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetTangentWeightMode) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleKey_GetTangentWeightMode"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetTangentWeightMode) == 0x000001, "Wrong size on MovieSceneScriptingDoubleKey_GetTangentWeightMode"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetTangentWeightMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetTangentWeightMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetTime \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingDoubleKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingDoubleKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleKey_GetValue \ +static_assert(alignof(MovieSceneScriptingDoubleKey_GetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingDoubleKey_GetValue) == 0x000008, "Wrong size on MovieSceneScriptingDoubleKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingDoubleKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingDoubleKey \ +static_assert(alignof(UMovieSceneScriptingDoubleKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingDoubleKey"); \ +static_assert(sizeof(UMovieSceneScriptingDoubleKey) == 0x000060, "Wrong size on UMovieSceneScriptingDoubleKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_AddKey) == 0x000020, "Wrong size on MovieSceneScriptingDoubleChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, NewValue) == 0x000008, "Member 'MovieSceneScriptingDoubleChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, SubFrame) == 0x000010, "Member 'MovieSceneScriptingDoubleChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, TimeUnit) == 0x000014, "Member 'MovieSceneScriptingDoubleChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, InInterpolation) == 0x000015, "Member 'MovieSceneScriptingDoubleChannel_AddKey::InInterpolation' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_AddKey, ReturnValue) == 0x000018, "Member 'MovieSceneScriptingDoubleChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingDoubleChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_SetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_SetDefault) == 0x000008, "Wrong size on MovieSceneScriptingDoubleChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation, InExtrapolation) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_SetPostInfinityExtrapolation::InExtrapolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation, InExtrapolation) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_SetPreInfinityExtrapolation::InExtrapolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_ComputeEffectiveRange \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_ComputeEffectiveRange) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleChannel_ComputeEffectiveRange"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_ComputeEffectiveRange) == 0x000014, "Wrong size on MovieSceneScriptingDoubleChannel_ComputeEffectiveRange"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_ComputeEffectiveRange, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_ComputeEffectiveRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_EvaluateKeys \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_EvaluateKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_EvaluateKeys"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_EvaluateKeys) == 0x000030, "Wrong size on MovieSceneScriptingDoubleChannel_EvaluateKeys"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_EvaluateKeys, Range) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_EvaluateKeys::Range' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_EvaluateKeys, FrameRate) == 0x000014, "Member 'MovieSceneScriptingDoubleChannel_EvaluateKeys::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_EvaluateKeys, ReturnValue) == 0x000020, "Member 'MovieSceneScriptingDoubleChannel_EvaluateKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_GetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_GetDefault) == 0x000008, "Wrong size on MovieSceneScriptingDoubleChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingDoubleChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingDoubleChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_GetNumKeys \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_GetNumKeys) == 0x000004, "Wrong alignment on MovieSceneScriptingDoubleChannel_GetNumKeys"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_GetNumKeys) == 0x000004, "Wrong size on MovieSceneScriptingDoubleChannel_GetNumKeys"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_GetNumKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_GetNumKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_GetPostInfinityExtrapolation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_GetPreInfinityExtrapolation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingDoubleChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingDoubleChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingDoubleChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingDoubleChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingDoubleChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingDoubleChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingDoubleChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingDoubleChannel \ +static_assert(alignof(UMovieSceneScriptingDoubleChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingDoubleChannel"); \ +static_assert(sizeof(UMovieSceneScriptingDoubleChannel) == 0x000060, "Wrong size on UMovieSceneScriptingDoubleChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventKey_SetTime \ +static_assert(alignof(MovieSceneScriptingEventKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingEventKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingEventKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingEventKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingEventKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingEventKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingEventKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventKey_SetValue \ +static_assert(alignof(MovieSceneScriptingEventKey_SetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingEventKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingEventKey_SetValue) == 0x000028, "Wrong size on MovieSceneScriptingEventKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingEventKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventKey_GetTime \ +static_assert(alignof(MovieSceneScriptingEventKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingEventKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingEventKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingEventKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingEventKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingEventKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventKey_GetValue \ +static_assert(alignof(MovieSceneScriptingEventKey_GetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingEventKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingEventKey_GetValue) == 0x000028, "Wrong size on MovieSceneScriptingEventKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingEventKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingEventKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingEventKey \ +static_assert(alignof(UMovieSceneScriptingEventKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingEventKey"); \ +static_assert(sizeof(UMovieSceneScriptingEventKey) == 0x000060, "Wrong size on UMovieSceneScriptingEventKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingEventChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingEventChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingEventChannel_AddKey) == 0x000040, "Wrong size on MovieSceneScriptingEventChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingEventChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_AddKey, NewValue) == 0x000008, "Member 'MovieSceneScriptingEventChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_AddKey, SubFrame) == 0x000030, "Member 'MovieSceneScriptingEventChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_AddKey, TimeUnit) == 0x000034, "Member 'MovieSceneScriptingEventChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_AddKey, ReturnValue) == 0x000038, "Member 'MovieSceneScriptingEventChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingEventChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingEventChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingEventChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingEventChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingEventChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingEventChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingEventChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingEventChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingEventChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingEventChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingEventChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingEventChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingEventChannel \ +static_assert(alignof(UMovieSceneScriptingEventChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingEventChannel"); \ +static_assert(sizeof(UMovieSceneScriptingEventChannel) == 0x000060, "Wrong size on UMovieSceneScriptingEventChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetArriveTangent \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetArriveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetArriveTangent"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetArriveTangent) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_SetArriveTangent"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetArriveTangent, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetArriveTangent::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetArriveTangentWeight \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetArriveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetArriveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetArriveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_SetArriveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetArriveTangentWeight, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetArriveTangentWeight::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetInterpolationMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetInterpolationMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_SetInterpolationMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetInterpolationMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_SetInterpolationMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetInterpolationMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetInterpolationMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetLeaveTangent \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetLeaveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetLeaveTangent"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetLeaveTangent) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_SetLeaveTangent"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetLeaveTangent, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetLeaveTangent::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetLeaveTangentWeight \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetLeaveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetLeaveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetLeaveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_SetLeaveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetLeaveTangentWeight, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetLeaveTangentWeight::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetTangentMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetTangentMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_SetTangentMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetTangentMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_SetTangentMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetTangentMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetTangentMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetTangentWeightMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetTangentWeightMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_SetTangentWeightMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetTangentWeightMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_SetTangentWeightMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetTangentWeightMode, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetTangentWeightMode::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetTime \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingFloatKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingFloatKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingFloatKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_SetValue \ +static_assert(alignof(MovieSceneScriptingFloatKey_SetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_SetValue) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetArriveTangent \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetArriveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetArriveTangent"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetArriveTangent) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_GetArriveTangent"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetArriveTangent, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetArriveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetArriveTangentWeight \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetArriveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetArriveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetArriveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_GetArriveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetArriveTangentWeight, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetArriveTangentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetInterpolationMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetInterpolationMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_GetInterpolationMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetInterpolationMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_GetInterpolationMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetInterpolationMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetInterpolationMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetLeaveTangent \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetLeaveTangent) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetLeaveTangent"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetLeaveTangent) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_GetLeaveTangent"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetLeaveTangent, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetLeaveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetLeaveTangentWeight \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetLeaveTangentWeight) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetLeaveTangentWeight"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetLeaveTangentWeight) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_GetLeaveTangentWeight"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetLeaveTangentWeight, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetLeaveTangentWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetTangentMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetTangentMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_GetTangentMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetTangentMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_GetTangentMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetTangentMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetTangentMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetTangentWeightMode \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetTangentWeightMode) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatKey_GetTangentWeightMode"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetTangentWeightMode) == 0x000001, "Wrong size on MovieSceneScriptingFloatKey_GetTangentWeightMode"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetTangentWeightMode, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetTangentWeightMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetTime \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingFloatKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingFloatKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatKey_GetValue \ +static_assert(alignof(MovieSceneScriptingFloatKey_GetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingFloatKey_GetValue) == 0x000004, "Wrong size on MovieSceneScriptingFloatKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingFloatKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingFloatKey \ +static_assert(alignof(UMovieSceneScriptingFloatKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingFloatKey"); \ +static_assert(sizeof(UMovieSceneScriptingFloatKey) == 0x000040, "Wrong size on UMovieSceneScriptingFloatKey"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingActualFloatKey \ +static_assert(alignof(UMovieSceneScriptingActualFloatKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingActualFloatKey"); \ +static_assert(sizeof(UMovieSceneScriptingActualFloatKey) == 0x000060, "Wrong size on UMovieSceneScriptingActualFloatKey"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingDoubleAsFloatKey \ +static_assert(alignof(UMovieSceneScriptingDoubleAsFloatKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingDoubleAsFloatKey"); \ +static_assert(sizeof(UMovieSceneScriptingDoubleAsFloatKey) == 0x000060, "Wrong size on UMovieSceneScriptingDoubleAsFloatKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingFloatChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingFloatChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_AddKey) == 0x000018, "Wrong size on MovieSceneScriptingFloatChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, NewValue) == 0x000004, "Member 'MovieSceneScriptingFloatChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, SubFrame) == 0x000008, "Member 'MovieSceneScriptingFloatChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, TimeUnit) == 0x00000C, "Member 'MovieSceneScriptingFloatChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, InInterpolation) == 0x00000D, "Member 'MovieSceneScriptingFloatChannel_AddKey::InInterpolation' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_AddKey, ReturnValue) == 0x000010, "Member 'MovieSceneScriptingFloatChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingFloatChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingFloatChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingFloatChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingFloatChannel_SetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_SetDefault) == 0x000004, "Wrong size on MovieSceneScriptingFloatChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation, InExtrapolation) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_SetPostInfinityExtrapolation::InExtrapolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation, InExtrapolation) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_SetPreInfinityExtrapolation::InExtrapolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_ComputeEffectiveRange \ +static_assert(alignof(MovieSceneScriptingFloatChannel_ComputeEffectiveRange) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatChannel_ComputeEffectiveRange"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_ComputeEffectiveRange) == 0x000014, "Wrong size on MovieSceneScriptingFloatChannel_ComputeEffectiveRange"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_ComputeEffectiveRange, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_ComputeEffectiveRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_EvaluateKeys \ +static_assert(alignof(MovieSceneScriptingFloatChannel_EvaluateKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingFloatChannel_EvaluateKeys"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_EvaluateKeys) == 0x000030, "Wrong size on MovieSceneScriptingFloatChannel_EvaluateKeys"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_EvaluateKeys, Range) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_EvaluateKeys::Range' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_EvaluateKeys, FrameRate) == 0x000014, "Member 'MovieSceneScriptingFloatChannel_EvaluateKeys::FrameRate' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_EvaluateKeys, ReturnValue) == 0x000020, "Member 'MovieSceneScriptingFloatChannel_EvaluateKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingFloatChannel_GetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_GetDefault) == 0x000004, "Wrong size on MovieSceneScriptingFloatChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingFloatChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingFloatChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingFloatChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_GetNumKeys \ +static_assert(alignof(MovieSceneScriptingFloatChannel_GetNumKeys) == 0x000004, "Wrong alignment on MovieSceneScriptingFloatChannel_GetNumKeys"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_GetNumKeys) == 0x000004, "Wrong size on MovieSceneScriptingFloatChannel_GetNumKeys"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_GetNumKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_GetNumKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_GetPostInfinityExtrapolation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation \ +static_assert(alignof(MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation) == 0x000001, "Wrong size on MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_GetPreInfinityExtrapolation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingFloatChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingFloatChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingFloatChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingFloatChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingFloatChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingFloatChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingFloatChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingFloatChannel \ +static_assert(alignof(UMovieSceneScriptingFloatChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingFloatChannel"); \ +static_assert(sizeof(UMovieSceneScriptingFloatChannel) == 0x000080, "Wrong size on UMovieSceneScriptingFloatChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerKey_SetTime \ +static_assert(alignof(MovieSceneScriptingIntegerKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingIntegerKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingIntegerKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingIntegerKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingIntegerKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingIntegerKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerKey_SetValue \ +static_assert(alignof(MovieSceneScriptingIntegerKey_SetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingIntegerKey_SetValue) == 0x000004, "Wrong size on MovieSceneScriptingIntegerKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingIntegerKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerKey_GetTime \ +static_assert(alignof(MovieSceneScriptingIntegerKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingIntegerKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingIntegerKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingIntegerKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingIntegerKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerKey_GetValue \ +static_assert(alignof(MovieSceneScriptingIntegerKey_GetValue) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingIntegerKey_GetValue) == 0x000004, "Wrong size on MovieSceneScriptingIntegerKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingIntegerKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingIntegerKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingIntegerKey \ +static_assert(alignof(UMovieSceneScriptingIntegerKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingIntegerKey"); \ +static_assert(sizeof(UMovieSceneScriptingIntegerKey) == 0x000060, "Wrong size on UMovieSceneScriptingIntegerKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingIntegerChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_AddKey) == 0x000018, "Wrong size on MovieSceneScriptingIntegerChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_AddKey, NewValue) == 0x000004, "Member 'MovieSceneScriptingIntegerChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_AddKey, SubFrame) == 0x000008, "Member 'MovieSceneScriptingIntegerChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_AddKey, TimeUnit) == 0x00000C, "Member 'MovieSceneScriptingIntegerChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_AddKey, ReturnValue) == 0x000010, "Member 'MovieSceneScriptingIntegerChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingIntegerChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingIntegerChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_SetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_SetDefault) == 0x000004, "Wrong size on MovieSceneScriptingIntegerChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_GetDefault) == 0x000004, "Wrong alignment on MovieSceneScriptingIntegerChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_GetDefault) == 0x000004, "Wrong size on MovieSceneScriptingIntegerChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingIntegerChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingIntegerChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingIntegerChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingIntegerChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingIntegerChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingIntegerChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingIntegerChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingIntegerChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingIntegerChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingIntegerChannel \ +static_assert(alignof(UMovieSceneScriptingIntegerChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingIntegerChannel"); \ +static_assert(sizeof(UMovieSceneScriptingIntegerChannel) == 0x000060, "Wrong size on UMovieSceneScriptingIntegerChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathKey_SetTime \ +static_assert(alignof(MovieSceneScriptingObjectPathKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingObjectPathKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingObjectPathKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingObjectPathKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingObjectPathKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingObjectPathKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathKey_SetValue \ +static_assert(alignof(MovieSceneScriptingObjectPathKey_SetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathKey_SetValue) == 0x000008, "Wrong size on MovieSceneScriptingObjectPathKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathKey_GetTime \ +static_assert(alignof(MovieSceneScriptingObjectPathKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingObjectPathKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingObjectPathKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingObjectPathKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingObjectPathKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathKey_GetValue \ +static_assert(alignof(MovieSceneScriptingObjectPathKey_GetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathKey_GetValue) == 0x000008, "Wrong size on MovieSceneScriptingObjectPathKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingObjectPathKey \ +static_assert(alignof(UMovieSceneScriptingObjectPathKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingObjectPathKey"); \ +static_assert(sizeof(UMovieSceneScriptingObjectPathKey) == 0x000060, "Wrong size on UMovieSceneScriptingObjectPathKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_AddKey) == 0x000020, "Wrong size on MovieSceneScriptingObjectPathChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_AddKey, NewValue) == 0x000008, "Member 'MovieSceneScriptingObjectPathChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_AddKey, SubFrame) == 0x000010, "Member 'MovieSceneScriptingObjectPathChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_AddKey, TimeUnit) == 0x000014, "Member 'MovieSceneScriptingObjectPathChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_AddKey, ReturnValue) == 0x000018, "Member 'MovieSceneScriptingObjectPathChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingObjectPathChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_SetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_SetDefault) == 0x000008, "Wrong size on MovieSceneScriptingObjectPathChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_GetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_GetDefault) == 0x000008, "Wrong size on MovieSceneScriptingObjectPathChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingObjectPathChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingObjectPathChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingObjectPathChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingObjectPathChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingObjectPathChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingObjectPathChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingObjectPathChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingObjectPathChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingObjectPathChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingObjectPathChannel \ +static_assert(alignof(UMovieSceneScriptingObjectPathChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingObjectPathChannel"); \ +static_assert(sizeof(UMovieSceneScriptingObjectPathChannel) == 0x000060, "Wrong size on UMovieSceneScriptingObjectPathChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringKey_SetTime \ +static_assert(alignof(MovieSceneScriptingStringKey_SetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingStringKey_SetTime"); \ +static_assert(sizeof(MovieSceneScriptingStringKey_SetTime) == 0x00000C, "Wrong size on MovieSceneScriptingStringKey_SetTime"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_SetTime, NewFrameNumber) == 0x000000, "Member 'MovieSceneScriptingStringKey_SetTime::NewFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_SetTime, SubFrame) == 0x000004, "Member 'MovieSceneScriptingStringKey_SetTime::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_SetTime, TimeUnit) == 0x000008, "Member 'MovieSceneScriptingStringKey_SetTime::TimeUnit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringKey_SetValue \ +static_assert(alignof(MovieSceneScriptingStringKey_SetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingStringKey_SetValue"); \ +static_assert(sizeof(MovieSceneScriptingStringKey_SetValue) == 0x000010, "Wrong size on MovieSceneScriptingStringKey_SetValue"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_SetValue, InNewValue) == 0x000000, "Member 'MovieSceneScriptingStringKey_SetValue::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringKey_GetTime \ +static_assert(alignof(MovieSceneScriptingStringKey_GetTime) == 0x000004, "Wrong alignment on MovieSceneScriptingStringKey_GetTime"); \ +static_assert(sizeof(MovieSceneScriptingStringKey_GetTime) == 0x00000C, "Wrong size on MovieSceneScriptingStringKey_GetTime"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_GetTime, TimeUnit) == 0x000000, "Member 'MovieSceneScriptingStringKey_GetTime::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_GetTime, ReturnValue) == 0x000004, "Member 'MovieSceneScriptingStringKey_GetTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringKey_GetValue \ +static_assert(alignof(MovieSceneScriptingStringKey_GetValue) == 0x000008, "Wrong alignment on MovieSceneScriptingStringKey_GetValue"); \ +static_assert(sizeof(MovieSceneScriptingStringKey_GetValue) == 0x000010, "Wrong size on MovieSceneScriptingStringKey_GetValue"); \ +static_assert(offsetof(MovieSceneScriptingStringKey_GetValue, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingStringKey_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingStringKey \ +static_assert(alignof(UMovieSceneScriptingStringKey) == 0x000008, "Wrong alignment on UMovieSceneScriptingStringKey"); \ +static_assert(sizeof(UMovieSceneScriptingStringKey) == 0x000060, "Wrong size on UMovieSceneScriptingStringKey"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_AddKey \ +static_assert(alignof(MovieSceneScriptingStringChannel_AddKey) == 0x000008, "Wrong alignment on MovieSceneScriptingStringChannel_AddKey"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_AddKey) == 0x000028, "Wrong size on MovieSceneScriptingStringChannel_AddKey"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_AddKey, InTime) == 0x000000, "Member 'MovieSceneScriptingStringChannel_AddKey::InTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_AddKey, NewValue) == 0x000008, "Member 'MovieSceneScriptingStringChannel_AddKey::NewValue' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_AddKey, SubFrame) == 0x000018, "Member 'MovieSceneScriptingStringChannel_AddKey::SubFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_AddKey, TimeUnit) == 0x00001C, "Member 'MovieSceneScriptingStringChannel_AddKey::TimeUnit' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_AddKey, ReturnValue) == 0x000020, "Member 'MovieSceneScriptingStringChannel_AddKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_RemoveKey \ +static_assert(alignof(MovieSceneScriptingStringChannel_RemoveKey) == 0x000008, "Wrong alignment on MovieSceneScriptingStringChannel_RemoveKey"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_RemoveKey) == 0x000008, "Wrong size on MovieSceneScriptingStringChannel_RemoveKey"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_RemoveKey, Key) == 0x000000, "Member 'MovieSceneScriptingStringChannel_RemoveKey::Key' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_SetDefault \ +static_assert(alignof(MovieSceneScriptingStringChannel_SetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingStringChannel_SetDefault"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_SetDefault) == 0x000010, "Wrong size on MovieSceneScriptingStringChannel_SetDefault"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_SetDefault, InDefaultValue) == 0x000000, "Member 'MovieSceneScriptingStringChannel_SetDefault::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_GetDefault \ +static_assert(alignof(MovieSceneScriptingStringChannel_GetDefault) == 0x000008, "Wrong alignment on MovieSceneScriptingStringChannel_GetDefault"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_GetDefault) == 0x000010, "Wrong size on MovieSceneScriptingStringChannel_GetDefault"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_GetDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingStringChannel_GetDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_GetKeys \ +static_assert(alignof(MovieSceneScriptingStringChannel_GetKeys) == 0x000008, "Wrong alignment on MovieSceneScriptingStringChannel_GetKeys"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_GetKeys) == 0x000010, "Wrong size on MovieSceneScriptingStringChannel_GetKeys"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_GetKeys, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingStringChannel_GetKeys::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneScriptingStringChannel_HasDefault \ +static_assert(alignof(MovieSceneScriptingStringChannel_HasDefault) == 0x000001, "Wrong alignment on MovieSceneScriptingStringChannel_HasDefault"); \ +static_assert(sizeof(MovieSceneScriptingStringChannel_HasDefault) == 0x000001, "Wrong size on MovieSceneScriptingStringChannel_HasDefault"); \ +static_assert(offsetof(MovieSceneScriptingStringChannel_HasDefault, ReturnValue) == 0x000000, "Member 'MovieSceneScriptingStringChannel_HasDefault::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneScriptingStringChannel \ +static_assert(alignof(UMovieSceneScriptingStringChannel) == 0x000008, "Wrong alignment on UMovieSceneScriptingStringChannel"); \ +static_assert(sizeof(UMovieSceneScriptingStringChannel) == 0x000060, "Wrong size on UMovieSceneScriptingStringChannel"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_AddTrack \ +static_assert(alignof(MovieSceneBindingExtensions_AddTrack) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_AddTrack"); \ +static_assert(sizeof(MovieSceneBindingExtensions_AddTrack) == 0x000028, "Wrong size on MovieSceneBindingExtensions_AddTrack"); \ +static_assert(offsetof(MovieSceneBindingExtensions_AddTrack, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_AddTrack::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_AddTrack, TrackType) == 0x000018, "Member 'MovieSceneBindingExtensions_AddTrack::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_AddTrack, ReturnValue) == 0x000020, "Member 'MovieSceneBindingExtensions_AddTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_FindTracksByExactType \ +static_assert(alignof(MovieSceneBindingExtensions_FindTracksByExactType) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_FindTracksByExactType"); \ +static_assert(sizeof(MovieSceneBindingExtensions_FindTracksByExactType) == 0x000030, "Wrong size on MovieSceneBindingExtensions_FindTracksByExactType"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByExactType, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_FindTracksByExactType::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByExactType, TrackType) == 0x000018, "Member 'MovieSceneBindingExtensions_FindTracksByExactType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByExactType, ReturnValue) == 0x000020, "Member 'MovieSceneBindingExtensions_FindTracksByExactType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_FindTracksByType \ +static_assert(alignof(MovieSceneBindingExtensions_FindTracksByType) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_FindTracksByType"); \ +static_assert(sizeof(MovieSceneBindingExtensions_FindTracksByType) == 0x000030, "Wrong size on MovieSceneBindingExtensions_FindTracksByType"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByType, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_FindTracksByType::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByType, TrackType) == 0x000018, "Member 'MovieSceneBindingExtensions_FindTracksByType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_FindTracksByType, ReturnValue) == 0x000020, "Member 'MovieSceneBindingExtensions_FindTracksByType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetChildPossessables \ +static_assert(alignof(MovieSceneBindingExtensions_GetChildPossessables) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetChildPossessables"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetChildPossessables) == 0x000028, "Wrong size on MovieSceneBindingExtensions_GetChildPossessables"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetChildPossessables, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetChildPossessables::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetChildPossessables, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetChildPossessables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetDisplayName \ +static_assert(alignof(MovieSceneBindingExtensions_GetDisplayName) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetDisplayName"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetDisplayName) == 0x000030, "Wrong size on MovieSceneBindingExtensions_GetDisplayName"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetDisplayName, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetDisplayName::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetDisplayName, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetId \ +static_assert(alignof(MovieSceneBindingExtensions_GetId) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetId"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetId) == 0x000028, "Wrong size on MovieSceneBindingExtensions_GetId"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetId, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetId::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetId, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetName \ +static_assert(alignof(MovieSceneBindingExtensions_GetName) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetName"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetName) == 0x000028, "Wrong size on MovieSceneBindingExtensions_GetName"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetName, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetName::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetName, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetObjectTemplate \ +static_assert(alignof(MovieSceneBindingExtensions_GetObjectTemplate) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetObjectTemplate"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetObjectTemplate) == 0x000020, "Wrong size on MovieSceneBindingExtensions_GetObjectTemplate"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetObjectTemplate, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetObjectTemplate::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetObjectTemplate, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetObjectTemplate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetParent \ +static_assert(alignof(MovieSceneBindingExtensions_GetParent) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetParent"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetParent) == 0x000030, "Wrong size on MovieSceneBindingExtensions_GetParent"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetParent, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetParent::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetParent, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetPossessedObjectClass \ +static_assert(alignof(MovieSceneBindingExtensions_GetPossessedObjectClass) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetPossessedObjectClass"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetPossessedObjectClass) == 0x000020, "Wrong size on MovieSceneBindingExtensions_GetPossessedObjectClass"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetPossessedObjectClass, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetPossessedObjectClass::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetPossessedObjectClass, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetPossessedObjectClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetSortingOrder \ +static_assert(alignof(MovieSceneBindingExtensions_GetSortingOrder) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetSortingOrder"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetSortingOrder) == 0x000020, "Wrong size on MovieSceneBindingExtensions_GetSortingOrder"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetSortingOrder, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetSortingOrder::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetSortingOrder, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetSortingOrder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_GetTracks \ +static_assert(alignof(MovieSceneBindingExtensions_GetTracks) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_GetTracks"); \ +static_assert(sizeof(MovieSceneBindingExtensions_GetTracks) == 0x000028, "Wrong size on MovieSceneBindingExtensions_GetTracks"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetTracks, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_GetTracks::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_GetTracks, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_GetTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_IsValid \ +static_assert(alignof(MovieSceneBindingExtensions_IsValid) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_IsValid"); \ +static_assert(sizeof(MovieSceneBindingExtensions_IsValid) == 0x000020, "Wrong size on MovieSceneBindingExtensions_IsValid"); \ +static_assert(offsetof(MovieSceneBindingExtensions_IsValid, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_IsValid::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_IsValid, ReturnValue) == 0x000018, "Member 'MovieSceneBindingExtensions_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_MoveBindingContents \ +static_assert(alignof(MovieSceneBindingExtensions_MoveBindingContents) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_MoveBindingContents"); \ +static_assert(sizeof(MovieSceneBindingExtensions_MoveBindingContents) == 0x000030, "Wrong size on MovieSceneBindingExtensions_MoveBindingContents"); \ +static_assert(offsetof(MovieSceneBindingExtensions_MoveBindingContents, SourceBindingId) == 0x000000, "Member 'MovieSceneBindingExtensions_MoveBindingContents::SourceBindingId' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_MoveBindingContents, DestinationBindingId) == 0x000018, "Member 'MovieSceneBindingExtensions_MoveBindingContents::DestinationBindingId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_Remove \ +static_assert(alignof(MovieSceneBindingExtensions_Remove) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_Remove"); \ +static_assert(sizeof(MovieSceneBindingExtensions_Remove) == 0x000018, "Wrong size on MovieSceneBindingExtensions_Remove"); \ +static_assert(offsetof(MovieSceneBindingExtensions_Remove, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_Remove::InBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_RemoveTrack \ +static_assert(alignof(MovieSceneBindingExtensions_RemoveTrack) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_RemoveTrack"); \ +static_assert(sizeof(MovieSceneBindingExtensions_RemoveTrack) == 0x000020, "Wrong size on MovieSceneBindingExtensions_RemoveTrack"); \ +static_assert(offsetof(MovieSceneBindingExtensions_RemoveTrack, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_RemoveTrack::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_RemoveTrack, TrackToRemove) == 0x000018, "Member 'MovieSceneBindingExtensions_RemoveTrack::TrackToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_SetDisplayName \ +static_assert(alignof(MovieSceneBindingExtensions_SetDisplayName) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_SetDisplayName"); \ +static_assert(sizeof(MovieSceneBindingExtensions_SetDisplayName) == 0x000030, "Wrong size on MovieSceneBindingExtensions_SetDisplayName"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetDisplayName, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_SetDisplayName::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetDisplayName, InDisplayName) == 0x000018, "Member 'MovieSceneBindingExtensions_SetDisplayName::InDisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_SetName \ +static_assert(alignof(MovieSceneBindingExtensions_SetName) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_SetName"); \ +static_assert(sizeof(MovieSceneBindingExtensions_SetName) == 0x000028, "Wrong size on MovieSceneBindingExtensions_SetName"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetName, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_SetName::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetName, InName) == 0x000018, "Member 'MovieSceneBindingExtensions_SetName::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_SetParent \ +static_assert(alignof(MovieSceneBindingExtensions_SetParent) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_SetParent"); \ +static_assert(sizeof(MovieSceneBindingExtensions_SetParent) == 0x000030, "Wrong size on MovieSceneBindingExtensions_SetParent"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetParent, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_SetParent::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetParent, InParentBinding) == 0x000018, "Member 'MovieSceneBindingExtensions_SetParent::InParentBinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_SetSortingOrder \ +static_assert(alignof(MovieSceneBindingExtensions_SetSortingOrder) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_SetSortingOrder"); \ +static_assert(sizeof(MovieSceneBindingExtensions_SetSortingOrder) == 0x000020, "Wrong size on MovieSceneBindingExtensions_SetSortingOrder"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetSortingOrder, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_SetSortingOrder::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetSortingOrder, SortingOrder) == 0x000018, "Member 'MovieSceneBindingExtensions_SetSortingOrder::SortingOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneBindingExtensions_SetSpawnableBindingID \ +static_assert(alignof(MovieSceneBindingExtensions_SetSpawnableBindingID) == 0x000008, "Wrong alignment on MovieSceneBindingExtensions_SetSpawnableBindingID"); \ +static_assert(sizeof(MovieSceneBindingExtensions_SetSpawnableBindingID) == 0x000030, "Wrong size on MovieSceneBindingExtensions_SetSpawnableBindingID"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetSpawnableBindingID, InBinding) == 0x000000, "Member 'MovieSceneBindingExtensions_SetSpawnableBindingID::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneBindingExtensions_SetSpawnableBindingID, SpawnableBindingID) == 0x000018, "Member 'MovieSceneBindingExtensions_SetSpawnableBindingID::SpawnableBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneBindingExtensions \ +static_assert(alignof(UMovieSceneBindingExtensions) == 0x000008, "Wrong alignment on UMovieSceneBindingExtensions"); \ +static_assert(sizeof(UMovieSceneBindingExtensions) == 0x000028, "Wrong size on UMovieSceneBindingExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneEventTrackExtensions_AddEventRepeaterSection \ +static_assert(alignof(MovieSceneEventTrackExtensions_AddEventRepeaterSection) == 0x000008, "Wrong alignment on MovieSceneEventTrackExtensions_AddEventRepeaterSection"); \ +static_assert(sizeof(MovieSceneEventTrackExtensions_AddEventRepeaterSection) == 0x000010, "Wrong size on MovieSceneEventTrackExtensions_AddEventRepeaterSection"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_AddEventRepeaterSection, InTrack) == 0x000000, "Member 'MovieSceneEventTrackExtensions_AddEventRepeaterSection::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_AddEventRepeaterSection, ReturnValue) == 0x000008, "Member 'MovieSceneEventTrackExtensions_AddEventRepeaterSection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneEventTrackExtensions_AddEventTriggerSection \ +static_assert(alignof(MovieSceneEventTrackExtensions_AddEventTriggerSection) == 0x000008, "Wrong alignment on MovieSceneEventTrackExtensions_AddEventTriggerSection"); \ +static_assert(sizeof(MovieSceneEventTrackExtensions_AddEventTriggerSection) == 0x000010, "Wrong size on MovieSceneEventTrackExtensions_AddEventTriggerSection"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_AddEventTriggerSection, InTrack) == 0x000000, "Member 'MovieSceneEventTrackExtensions_AddEventTriggerSection::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_AddEventTriggerSection, ReturnValue) == 0x000008, "Member 'MovieSceneEventTrackExtensions_AddEventTriggerSection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass \ +static_assert(alignof(MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass) == 0x000008, "Wrong alignment on MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass"); \ +static_assert(sizeof(MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass) == 0x000030, "Wrong size on MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass, EventKey) == 0x000000, "Member 'MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass::EventKey' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass, ReturnValue) == 0x000028, "Member 'MovieSceneEventTrackExtensions_GetBoundObjectPropertyClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneEventTrackExtensions \ +static_assert(alignof(UMovieSceneEventTrackExtensions) == 0x000008, "Wrong alignment on UMovieSceneEventTrackExtensions"); \ +static_assert(sizeof(UMovieSceneEventTrackExtensions) == 0x000028, "Wrong size on UMovieSceneEventTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_AddChildFolder \ +static_assert(alignof(MovieSceneFolderExtensions_AddChildFolder) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_AddChildFolder"); \ +static_assert(sizeof(MovieSceneFolderExtensions_AddChildFolder) == 0x000018, "Wrong size on MovieSceneFolderExtensions_AddChildFolder"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildFolder, TargetFolder) == 0x000000, "Member 'MovieSceneFolderExtensions_AddChildFolder::TargetFolder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildFolder, FolderToAdd) == 0x000008, "Member 'MovieSceneFolderExtensions_AddChildFolder::FolderToAdd' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildFolder, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_AddChildFolder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_AddChildMasterTrack \ +static_assert(alignof(MovieSceneFolderExtensions_AddChildMasterTrack) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_AddChildMasterTrack"); \ +static_assert(sizeof(MovieSceneFolderExtensions_AddChildMasterTrack) == 0x000018, "Wrong size on MovieSceneFolderExtensions_AddChildMasterTrack"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildMasterTrack, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_AddChildMasterTrack::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildMasterTrack, InTrack) == 0x000008, "Member 'MovieSceneFolderExtensions_AddChildMasterTrack::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildMasterTrack, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_AddChildMasterTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_AddChildObjectBinding \ +static_assert(alignof(MovieSceneFolderExtensions_AddChildObjectBinding) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_AddChildObjectBinding"); \ +static_assert(sizeof(MovieSceneFolderExtensions_AddChildObjectBinding) == 0x000028, "Wrong size on MovieSceneFolderExtensions_AddChildObjectBinding"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildObjectBinding, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_AddChildObjectBinding::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildObjectBinding, InObjectBinding) == 0x000008, "Member 'MovieSceneFolderExtensions_AddChildObjectBinding::InObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildObjectBinding, ReturnValue) == 0x000020, "Member 'MovieSceneFolderExtensions_AddChildObjectBinding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_AddChildTrack \ +static_assert(alignof(MovieSceneFolderExtensions_AddChildTrack) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_AddChildTrack"); \ +static_assert(sizeof(MovieSceneFolderExtensions_AddChildTrack) == 0x000018, "Wrong size on MovieSceneFolderExtensions_AddChildTrack"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildTrack, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_AddChildTrack::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildTrack, InTrack) == 0x000008, "Member 'MovieSceneFolderExtensions_AddChildTrack::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_AddChildTrack, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_AddChildTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetChildFolders \ +static_assert(alignof(MovieSceneFolderExtensions_GetChildFolders) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetChildFolders"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetChildFolders) == 0x000018, "Wrong size on MovieSceneFolderExtensions_GetChildFolders"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildFolders, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetChildFolders::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildFolders, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetChildFolders::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetChildMasterTracks \ +static_assert(alignof(MovieSceneFolderExtensions_GetChildMasterTracks) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetChildMasterTracks"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetChildMasterTracks) == 0x000018, "Wrong size on MovieSceneFolderExtensions_GetChildMasterTracks"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildMasterTracks, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetChildMasterTracks::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildMasterTracks, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetChildMasterTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetChildObjectBindings \ +static_assert(alignof(MovieSceneFolderExtensions_GetChildObjectBindings) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetChildObjectBindings"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetChildObjectBindings) == 0x000018, "Wrong size on MovieSceneFolderExtensions_GetChildObjectBindings"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildObjectBindings, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetChildObjectBindings::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildObjectBindings, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetChildObjectBindings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetChildTracks \ +static_assert(alignof(MovieSceneFolderExtensions_GetChildTracks) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetChildTracks"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetChildTracks) == 0x000018, "Wrong size on MovieSceneFolderExtensions_GetChildTracks"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildTracks, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetChildTracks::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetChildTracks, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetChildTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetFolderColor \ +static_assert(alignof(MovieSceneFolderExtensions_GetFolderColor) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetFolderColor"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetFolderColor) == 0x000010, "Wrong size on MovieSceneFolderExtensions_GetFolderColor"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetFolderColor, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetFolderColor::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetFolderColor, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetFolderColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_GetFolderName \ +static_assert(alignof(MovieSceneFolderExtensions_GetFolderName) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_GetFolderName"); \ +static_assert(sizeof(MovieSceneFolderExtensions_GetFolderName) == 0x000010, "Wrong size on MovieSceneFolderExtensions_GetFolderName"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetFolderName, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_GetFolderName::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_GetFolderName, ReturnValue) == 0x000008, "Member 'MovieSceneFolderExtensions_GetFolderName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_RemoveChildFolder \ +static_assert(alignof(MovieSceneFolderExtensions_RemoveChildFolder) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_RemoveChildFolder"); \ +static_assert(sizeof(MovieSceneFolderExtensions_RemoveChildFolder) == 0x000018, "Wrong size on MovieSceneFolderExtensions_RemoveChildFolder"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildFolder, TargetFolder) == 0x000000, "Member 'MovieSceneFolderExtensions_RemoveChildFolder::TargetFolder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildFolder, FolderToRemove) == 0x000008, "Member 'MovieSceneFolderExtensions_RemoveChildFolder::FolderToRemove' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildFolder, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_RemoveChildFolder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_RemoveChildMasterTrack \ +static_assert(alignof(MovieSceneFolderExtensions_RemoveChildMasterTrack) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_RemoveChildMasterTrack"); \ +static_assert(sizeof(MovieSceneFolderExtensions_RemoveChildMasterTrack) == 0x000018, "Wrong size on MovieSceneFolderExtensions_RemoveChildMasterTrack"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildMasterTrack, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_RemoveChildMasterTrack::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildMasterTrack, InTrack) == 0x000008, "Member 'MovieSceneFolderExtensions_RemoveChildMasterTrack::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildMasterTrack, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_RemoveChildMasterTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_RemoveChildObjectBinding \ +static_assert(alignof(MovieSceneFolderExtensions_RemoveChildObjectBinding) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_RemoveChildObjectBinding"); \ +static_assert(sizeof(MovieSceneFolderExtensions_RemoveChildObjectBinding) == 0x000028, "Wrong size on MovieSceneFolderExtensions_RemoveChildObjectBinding"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildObjectBinding, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_RemoveChildObjectBinding::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildObjectBinding, InObjectBinding) == 0x000008, "Member 'MovieSceneFolderExtensions_RemoveChildObjectBinding::InObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildObjectBinding, ReturnValue) == 0x000020, "Member 'MovieSceneFolderExtensions_RemoveChildObjectBinding::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_RemoveChildTrack \ +static_assert(alignof(MovieSceneFolderExtensions_RemoveChildTrack) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_RemoveChildTrack"); \ +static_assert(sizeof(MovieSceneFolderExtensions_RemoveChildTrack) == 0x000018, "Wrong size on MovieSceneFolderExtensions_RemoveChildTrack"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildTrack, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_RemoveChildTrack::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildTrack, InTrack) == 0x000008, "Member 'MovieSceneFolderExtensions_RemoveChildTrack::InTrack' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_RemoveChildTrack, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_RemoveChildTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_SetFolderColor \ +static_assert(alignof(MovieSceneFolderExtensions_SetFolderColor) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_SetFolderColor"); \ +static_assert(sizeof(MovieSceneFolderExtensions_SetFolderColor) == 0x000010, "Wrong size on MovieSceneFolderExtensions_SetFolderColor"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderColor, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_SetFolderColor::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderColor, InFolderColor) == 0x000008, "Member 'MovieSceneFolderExtensions_SetFolderColor::InFolderColor' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderColor, ReturnValue) == 0x00000C, "Member 'MovieSceneFolderExtensions_SetFolderColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFolderExtensions_SetFolderName \ +static_assert(alignof(MovieSceneFolderExtensions_SetFolderName) == 0x000008, "Wrong alignment on MovieSceneFolderExtensions_SetFolderName"); \ +static_assert(sizeof(MovieSceneFolderExtensions_SetFolderName) == 0x000018, "Wrong size on MovieSceneFolderExtensions_SetFolderName"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderName, Folder) == 0x000000, "Member 'MovieSceneFolderExtensions_SetFolderName::Folder' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderName, InFolderName) == 0x000008, "Member 'MovieSceneFolderExtensions_SetFolderName::InFolderName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFolderExtensions_SetFolderName, ReturnValue) == 0x000010, "Member 'MovieSceneFolderExtensions_SetFolderName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFolderExtensions \ +static_assert(alignof(UMovieSceneFolderExtensions) == 0x000008, "Wrong alignment on UMovieSceneFolderExtensions"); \ +static_assert(sizeof(UMovieSceneFolderExtensions) == 0x000028, "Wrong size on UMovieSceneFolderExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneMaterialTrackExtensions_GetMaterialIndex \ +static_assert(alignof(MovieSceneMaterialTrackExtensions_GetMaterialIndex) == 0x000008, "Wrong alignment on MovieSceneMaterialTrackExtensions_GetMaterialIndex"); \ +static_assert(sizeof(MovieSceneMaterialTrackExtensions_GetMaterialIndex) == 0x000010, "Wrong size on MovieSceneMaterialTrackExtensions_GetMaterialIndex"); \ +static_assert(offsetof(MovieSceneMaterialTrackExtensions_GetMaterialIndex, Track) == 0x000000, "Member 'MovieSceneMaterialTrackExtensions_GetMaterialIndex::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneMaterialTrackExtensions_GetMaterialIndex, ReturnValue) == 0x000008, "Member 'MovieSceneMaterialTrackExtensions_GetMaterialIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneMaterialTrackExtensions_SetMaterialIndex \ +static_assert(alignof(MovieSceneMaterialTrackExtensions_SetMaterialIndex) == 0x000008, "Wrong alignment on MovieSceneMaterialTrackExtensions_SetMaterialIndex"); \ +static_assert(sizeof(MovieSceneMaterialTrackExtensions_SetMaterialIndex) == 0x000010, "Wrong size on MovieSceneMaterialTrackExtensions_SetMaterialIndex"); \ +static_assert(offsetof(MovieSceneMaterialTrackExtensions_SetMaterialIndex, Track) == 0x000000, "Member 'MovieSceneMaterialTrackExtensions_SetMaterialIndex::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneMaterialTrackExtensions_SetMaterialIndex, MaterialIndex) == 0x000008, "Member 'MovieSceneMaterialTrackExtensions_SetMaterialIndex::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMaterialTrackExtensions \ +static_assert(alignof(UMovieSceneMaterialTrackExtensions) == 0x000008, "Wrong alignment on UMovieSceneMaterialTrackExtensions"); \ +static_assert(sizeof(UMovieSceneMaterialTrackExtensions) == 0x000028, "Wrong size on UMovieSceneMaterialTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex \ +static_assert(alignof(MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex) == 0x000008, "Wrong alignment on MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex"); \ +static_assert(sizeof(MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex) == 0x000010, "Wrong size on MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex"); \ +static_assert(offsetof(MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex, Track) == 0x000000, "Member 'MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex, ReturnValue) == 0x000008, "Member 'MovieScenePrimitiveMaterialTrackExtensions_GetMaterialIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex \ +static_assert(alignof(MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex) == 0x000008, "Wrong alignment on MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex"); \ +static_assert(sizeof(MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex) == 0x000010, "Wrong size on MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex"); \ +static_assert(offsetof(MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex, Track) == 0x000000, "Member 'MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex, MaterialIndex) == 0x000008, "Member 'MovieScenePrimitiveMaterialTrackExtensions_SetMaterialIndex::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePrimitiveMaterialTrackExtensions \ +static_assert(alignof(UMovieScenePrimitiveMaterialTrackExtensions) == 0x000008, "Wrong alignment on UMovieScenePrimitiveMaterialTrackExtensions"); \ +static_assert(sizeof(UMovieScenePrimitiveMaterialTrackExtensions) == 0x000028, "Wrong size on UMovieScenePrimitiveMaterialTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_GetByteTrackEnum \ +static_assert(alignof(MovieScenePropertyTrackExtensions_GetByteTrackEnum) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_GetByteTrackEnum"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_GetByteTrackEnum) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_GetByteTrackEnum"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetByteTrackEnum, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_GetByteTrackEnum::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetByteTrackEnum, ReturnValue) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_GetByteTrackEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_GetObjectPropertyClass \ +static_assert(alignof(MovieScenePropertyTrackExtensions_GetObjectPropertyClass) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_GetObjectPropertyClass"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_GetObjectPropertyClass) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_GetObjectPropertyClass"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetObjectPropertyClass, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_GetObjectPropertyClass::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetObjectPropertyClass, ReturnValue) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_GetObjectPropertyClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_GetPropertyName \ +static_assert(alignof(MovieScenePropertyTrackExtensions_GetPropertyName) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_GetPropertyName"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_GetPropertyName) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_GetPropertyName"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetPropertyName, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_GetPropertyName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetPropertyName, ReturnValue) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_GetPropertyName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_GetPropertyPath \ +static_assert(alignof(MovieScenePropertyTrackExtensions_GetPropertyPath) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_GetPropertyPath"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_GetPropertyPath) == 0x000018, "Wrong size on MovieScenePropertyTrackExtensions_GetPropertyPath"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetPropertyPath, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_GetPropertyPath::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetPropertyPath, ReturnValue) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_GetPropertyPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_GetUniqueTrackName \ +static_assert(alignof(MovieScenePropertyTrackExtensions_GetUniqueTrackName) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_GetUniqueTrackName"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_GetUniqueTrackName) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_GetUniqueTrackName"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetUniqueTrackName, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_GetUniqueTrackName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_GetUniqueTrackName, ReturnValue) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_GetUniqueTrackName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_SetByteTrackEnum \ +static_assert(alignof(MovieScenePropertyTrackExtensions_SetByteTrackEnum) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_SetByteTrackEnum"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_SetByteTrackEnum) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_SetByteTrackEnum"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetByteTrackEnum, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_SetByteTrackEnum::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetByteTrackEnum, InEnum) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_SetByteTrackEnum::InEnum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_SetObjectPropertyClass \ +static_assert(alignof(MovieScenePropertyTrackExtensions_SetObjectPropertyClass) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_SetObjectPropertyClass"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_SetObjectPropertyClass) == 0x000010, "Wrong size on MovieScenePropertyTrackExtensions_SetObjectPropertyClass"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetObjectPropertyClass, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_SetObjectPropertyClass::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetObjectPropertyClass, PropertyClass) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_SetObjectPropertyClass::PropertyClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieScenePropertyTrackExtensions_SetPropertyNameAndPath \ +static_assert(alignof(MovieScenePropertyTrackExtensions_SetPropertyNameAndPath) == 0x000008, "Wrong alignment on MovieScenePropertyTrackExtensions_SetPropertyNameAndPath"); \ +static_assert(sizeof(MovieScenePropertyTrackExtensions_SetPropertyNameAndPath) == 0x000020, "Wrong size on MovieScenePropertyTrackExtensions_SetPropertyNameAndPath"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetPropertyNameAndPath, Track) == 0x000000, "Member 'MovieScenePropertyTrackExtensions_SetPropertyNameAndPath::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetPropertyNameAndPath, InPropertyName) == 0x000008, "Member 'MovieScenePropertyTrackExtensions_SetPropertyNameAndPath::InPropertyName' has a wrong offset!"); \ +static_assert(offsetof(MovieScenePropertyTrackExtensions_SetPropertyNameAndPath, InPropertyPath) == 0x000010, "Member 'MovieScenePropertyTrackExtensions_SetPropertyNameAndPath::InPropertyPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieScenePropertyTrackExtensions \ +static_assert(alignof(UMovieScenePropertyTrackExtensions) == 0x000008, "Wrong alignment on UMovieScenePropertyTrackExtensions"); \ +static_assert(sizeof(UMovieScenePropertyTrackExtensions) == 0x000028, "Wrong size on UMovieScenePropertyTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAllChannels \ +static_assert(alignof(MovieSceneSectionExtensions_GetAllChannels) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAllChannels"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAllChannels) == 0x000018, "Wrong size on MovieSceneSectionExtensions_GetAllChannels"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAllChannels, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAllChannels::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAllChannels, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAllChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeEndFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeEndFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeEndFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeEndFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeEndFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeEndFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeEndFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeEndFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeEndFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeEndFrameSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeHasEndFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeHasEndFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeHasEndFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeHasEndFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeHasEndFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeHasEndFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeHasEndFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeHasEndFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeHasEndFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeHasStartFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeHasStartFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeHasStartFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeHasStartFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeHasStartFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeHasStartFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeHasStartFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeHasStartFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeHasStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeStartFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeStartFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeStartFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeStartFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeStartFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeStartFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeStartFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeStartFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetAutoSizeStartFrameSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetChannelsByType \ +static_assert(alignof(MovieSceneSectionExtensions_GetChannelsByType) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetChannelsByType"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetChannelsByType) == 0x000020, "Wrong size on MovieSceneSectionExtensions_GetChannelsByType"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetChannelsByType, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetChannelsByType::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetChannelsByType, ChannelType) == 0x000008, "Member 'MovieSceneSectionExtensions_GetChannelsByType::ChannelType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetChannelsByType, ReturnValue) == 0x000010, "Member 'MovieSceneSectionExtensions_GetChannelsByType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetEndFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetEndFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetEndFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetEndFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetEndFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetEndFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetEndFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetEndFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetEndFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetEndFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_GetEndFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetEndFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetEndFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetEndFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetEndFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetEndFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetEndFrameSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetEndFrameSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetParentSequenceFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetParentSequenceFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetParentSequenceFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetParentSequenceFrame) == 0x000020, "Wrong size on MovieSceneSectionExtensions_GetParentSequenceFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetParentSequenceFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetParentSequenceFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetParentSequenceFrame, InFrame) == 0x000008, "Member 'MovieSceneSectionExtensions_GetParentSequenceFrame::InFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetParentSequenceFrame, ParentSequence) == 0x000010, "Member 'MovieSceneSectionExtensions_GetParentSequenceFrame::ParentSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetParentSequenceFrame, ReturnValue) == 0x000018, "Member 'MovieSceneSectionExtensions_GetParentSequenceFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetStartFrame \ +static_assert(alignof(MovieSceneSectionExtensions_GetStartFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetStartFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetStartFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetStartFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetStartFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetStartFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetStartFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_GetStartFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_GetStartFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_GetStartFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_GetStartFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_GetStartFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetStartFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_GetStartFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_GetStartFrameSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_GetStartFrameSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_HasEndFrame \ +static_assert(alignof(MovieSceneSectionExtensions_HasEndFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_HasEndFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_HasEndFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_HasEndFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_HasEndFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_HasEndFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_HasEndFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_HasEndFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_HasStartFrame \ +static_assert(alignof(MovieSceneSectionExtensions_HasStartFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_HasStartFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_HasStartFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_HasStartFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_HasStartFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_HasStartFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_HasStartFrame, ReturnValue) == 0x000008, "Member 'MovieSceneSectionExtensions_HasStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetEndFrame \ +static_assert(alignof(MovieSceneSectionExtensions_SetEndFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetEndFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetEndFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetEndFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetEndFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrame, EndFrame) == 0x000008, "Member 'MovieSceneSectionExtensions_SetEndFrame::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetEndFrameBounded \ +static_assert(alignof(MovieSceneSectionExtensions_SetEndFrameBounded) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetEndFrameBounded"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetEndFrameBounded) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetEndFrameBounded"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrameBounded, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetEndFrameBounded::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrameBounded, bIsBounded) == 0x000008, "Member 'MovieSceneSectionExtensions_SetEndFrameBounded::bIsBounded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetEndFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_SetEndFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetEndFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetEndFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetEndFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetEndFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetEndFrameSeconds, EndTime) == 0x000008, "Member 'MovieSceneSectionExtensions_SetEndFrameSeconds::EndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetRange \ +static_assert(alignof(MovieSceneSectionExtensions_SetRange) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetRange"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetRange) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetRange"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRange, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetRange::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRange, StartFrame) == 0x000008, "Member 'MovieSceneSectionExtensions_SetRange::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRange, EndFrame) == 0x00000C, "Member 'MovieSceneSectionExtensions_SetRange::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetRangeSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_SetRangeSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetRangeSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetRangeSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetRangeSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRangeSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetRangeSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRangeSeconds, StartTime) == 0x000008, "Member 'MovieSceneSectionExtensions_SetRangeSeconds::StartTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetRangeSeconds, EndTime) == 0x00000C, "Member 'MovieSceneSectionExtensions_SetRangeSeconds::EndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetStartFrame \ +static_assert(alignof(MovieSceneSectionExtensions_SetStartFrame) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetStartFrame"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetStartFrame) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetStartFrame"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrame, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetStartFrame::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrame, StartFrame) == 0x000008, "Member 'MovieSceneSectionExtensions_SetStartFrame::StartFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetStartFrameBounded \ +static_assert(alignof(MovieSceneSectionExtensions_SetStartFrameBounded) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetStartFrameBounded"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetStartFrameBounded) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetStartFrameBounded"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrameBounded, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetStartFrameBounded::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrameBounded, bIsBounded) == 0x000008, "Member 'MovieSceneSectionExtensions_SetStartFrameBounded::bIsBounded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSectionExtensions_SetStartFrameSeconds \ +static_assert(alignof(MovieSceneSectionExtensions_SetStartFrameSeconds) == 0x000008, "Wrong alignment on MovieSceneSectionExtensions_SetStartFrameSeconds"); \ +static_assert(sizeof(MovieSceneSectionExtensions_SetStartFrameSeconds) == 0x000010, "Wrong size on MovieSceneSectionExtensions_SetStartFrameSeconds"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrameSeconds, Section) == 0x000000, "Member 'MovieSceneSectionExtensions_SetStartFrameSeconds::Section' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSectionExtensions_SetStartFrameSeconds, StartTime) == 0x000008, "Member 'MovieSceneSectionExtensions_SetStartFrameSeconds::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSectionExtensions \ +static_assert(alignof(UMovieSceneSectionExtensions) == 0x000008, "Wrong alignment on UMovieSceneSectionExtensions"); \ +static_assert(sizeof(UMovieSceneSectionExtensions) == 0x000028, "Wrong size on UMovieSceneSectionExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddMarkedFrame \ +static_assert(alignof(MovieSceneSequenceExtensions_AddMarkedFrame) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddMarkedFrame"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddMarkedFrame) == 0x000030, "Wrong size on MovieSceneSequenceExtensions_AddMarkedFrame"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMarkedFrame, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddMarkedFrame::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMarkedFrame, InMarkedFrame) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddMarkedFrame::InMarkedFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMarkedFrame, ReturnValue) == 0x000028, "Member 'MovieSceneSequenceExtensions_AddMarkedFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddMasterTrack \ +static_assert(alignof(MovieSceneSequenceExtensions_AddMasterTrack) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddMasterTrack"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddMasterTrack) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_AddMasterTrack"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMasterTrack, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddMasterTrack::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMasterTrack, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddMasterTrack::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddMasterTrack, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_AddMasterTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddPossessable \ +static_assert(alignof(MovieSceneSequenceExtensions_AddPossessable) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddPossessable"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddPossessable) == 0x000028, "Wrong size on MovieSceneSequenceExtensions_AddPossessable"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddPossessable, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddPossessable::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddPossessable, ObjectToPossess) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddPossessable::ObjectToPossess' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddPossessable, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_AddPossessable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddRootFolderToSequence \ +static_assert(alignof(MovieSceneSequenceExtensions_AddRootFolderToSequence) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddRootFolderToSequence"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddRootFolderToSequence) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_AddRootFolderToSequence"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddRootFolderToSequence, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddRootFolderToSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddRootFolderToSequence, NewFolderName) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddRootFolderToSequence::NewFolderName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddRootFolderToSequence, ReturnValue) == 0x000018, "Member 'MovieSceneSequenceExtensions_AddRootFolderToSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddSpawnableFromClass \ +static_assert(alignof(MovieSceneSequenceExtensions_AddSpawnableFromClass) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddSpawnableFromClass"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddSpawnableFromClass) == 0x000028, "Wrong size on MovieSceneSequenceExtensions_AddSpawnableFromClass"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromClass, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromClass::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromClass, ClassToSpawn) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromClass::ClassToSpawn' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromClass, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddSpawnableFromInstance \ +static_assert(alignof(MovieSceneSequenceExtensions_AddSpawnableFromInstance) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddSpawnableFromInstance"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddSpawnableFromInstance) == 0x000028, "Wrong size on MovieSceneSequenceExtensions_AddSpawnableFromInstance"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromInstance, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromInstance::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromInstance, ObjectToSpawn) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromInstance::ObjectToSpawn' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddSpawnableFromInstance, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_AddSpawnableFromInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AddTrack \ +static_assert(alignof(MovieSceneSequenceExtensions_AddTrack) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AddTrack"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AddTrack) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_AddTrack"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddTrack, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AddTrack::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddTrack, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_AddTrack::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AddTrack, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_AddTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_AreMarkedFramesLocked \ +static_assert(alignof(MovieSceneSequenceExtensions_AreMarkedFramesLocked) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_AreMarkedFramesLocked"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_AreMarkedFramesLocked) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_AreMarkedFramesLocked"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AreMarkedFramesLocked, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_AreMarkedFramesLocked::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_AreMarkedFramesLocked, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_AreMarkedFramesLocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_DeleteMarkedFrame \ +static_assert(alignof(MovieSceneSequenceExtensions_DeleteMarkedFrame) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_DeleteMarkedFrame"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_DeleteMarkedFrame) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_DeleteMarkedFrame"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_DeleteMarkedFrame, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_DeleteMarkedFrame::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_DeleteMarkedFrame, DeleteIndex) == 0x000008, "Member 'MovieSceneSequenceExtensions_DeleteMarkedFrame::DeleteIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_DeleteMarkedFrames \ +static_assert(alignof(MovieSceneSequenceExtensions_DeleteMarkedFrames) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_DeleteMarkedFrames"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_DeleteMarkedFrames) == 0x000008, "Wrong size on MovieSceneSequenceExtensions_DeleteMarkedFrames"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_DeleteMarkedFrames, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_DeleteMarkedFrames::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindBindingById \ +static_assert(alignof(MovieSceneSequenceExtensions_FindBindingById) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindBindingById"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindBindingById) == 0x000030, "Wrong size on MovieSceneSequenceExtensions_FindBindingById"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingById, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindBindingById::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingById, BindingID) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindBindingById::BindingID' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingById, ReturnValue) == 0x000018, "Member 'MovieSceneSequenceExtensions_FindBindingById::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindBindingByName \ +static_assert(alignof(MovieSceneSequenceExtensions_FindBindingByName) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindBindingByName"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindBindingByName) == 0x000030, "Wrong size on MovieSceneSequenceExtensions_FindBindingByName"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingByName, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindBindingByName::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingByName, Name_0) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindBindingByName::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindBindingByName, ReturnValue) == 0x000018, "Member 'MovieSceneSequenceExtensions_FindBindingByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber \ +static_assert(alignof(MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber, InFrameNumber) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber::InFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber, ReturnValue) == 0x00000C, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByFrameNumber::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindMarkedFrameByLabel \ +static_assert(alignof(MovieSceneSequenceExtensions_FindMarkedFrameByLabel) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindMarkedFrameByLabel"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindMarkedFrameByLabel) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_FindMarkedFrameByLabel"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByLabel, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByLabel::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByLabel, InLabel) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByLabel::InLabel' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMarkedFrameByLabel, ReturnValue) == 0x000018, "Member 'MovieSceneSequenceExtensions_FindMarkedFrameByLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindMasterTracksByExactType \ +static_assert(alignof(MovieSceneSequenceExtensions_FindMasterTracksByExactType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindMasterTracksByExactType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindMasterTracksByExactType) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_FindMasterTracksByExactType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByExactType, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByExactType::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByExactType, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByExactType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByExactType, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByExactType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindMasterTracksByType \ +static_assert(alignof(MovieSceneSequenceExtensions_FindMasterTracksByType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindMasterTracksByType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindMasterTracksByType) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_FindMasterTracksByType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByType, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByType::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByType, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindMasterTracksByType, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_FindMasterTracksByType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindNextMarkedFrame \ +static_assert(alignof(MovieSceneSequenceExtensions_FindNextMarkedFrame) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindNextMarkedFrame"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindNextMarkedFrame) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_FindNextMarkedFrame"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindNextMarkedFrame, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindNextMarkedFrame::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindNextMarkedFrame, InFrameNumber) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindNextMarkedFrame::InFrameNumber' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindNextMarkedFrame, bForward) == 0x00000C, "Member 'MovieSceneSequenceExtensions_FindNextMarkedFrame::bForward' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindNextMarkedFrame, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_FindNextMarkedFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindTracksByExactType \ +static_assert(alignof(MovieSceneSequenceExtensions_FindTracksByExactType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindTracksByExactType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindTracksByExactType) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_FindTracksByExactType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByExactType, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindTracksByExactType::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByExactType, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindTracksByExactType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByExactType, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_FindTracksByExactType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_FindTracksByType \ +static_assert(alignof(MovieSceneSequenceExtensions_FindTracksByType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_FindTracksByType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_FindTracksByType) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_FindTracksByType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByType, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_FindTracksByType::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByType, TrackType) == 0x000008, "Member 'MovieSceneSequenceExtensions_FindTracksByType::TrackType' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_FindTracksByType, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_FindTracksByType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetBindingID \ +static_assert(alignof(MovieSceneSequenceExtensions_GetBindingID) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetBindingID"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetBindingID) == 0x000038, "Wrong size on MovieSceneSequenceExtensions_GetBindingID"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetBindingID, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetBindingID::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetBindingID, InBinding) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetBindingID::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetBindingID, ReturnValue) == 0x000020, "Member 'MovieSceneSequenceExtensions_GetBindingID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetBindings \ +static_assert(alignof(MovieSceneSequenceExtensions_GetBindings) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetBindings"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetBindings) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetBindings"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetBindings, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetBindings::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetBindings, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetBindings::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetClockSource \ +static_assert(alignof(MovieSceneSequenceExtensions_GetClockSource) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetClockSource"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetClockSource) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetClockSource"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetClockSource, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetClockSource::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetClockSource, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetClockSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetDisplayRate \ +static_assert(alignof(MovieSceneSequenceExtensions_GetDisplayRate) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetDisplayRate"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetDisplayRate) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetDisplayRate"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetDisplayRate, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetDisplayRate::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetDisplayRate, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetDisplayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetEvaluationType \ +static_assert(alignof(MovieSceneSequenceExtensions_GetEvaluationType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetEvaluationType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetEvaluationType) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetEvaluationType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetEvaluationType, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetEvaluationType::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetEvaluationType, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetEvaluationType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetMarkedFrames \ +static_assert(alignof(MovieSceneSequenceExtensions_GetMarkedFrames) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetMarkedFrames"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetMarkedFrames) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetMarkedFrames"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMarkedFrames, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetMarkedFrames::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMarkedFrames, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetMarkedFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetMasterTracks \ +static_assert(alignof(MovieSceneSequenceExtensions_GetMasterTracks) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetMasterTracks"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetMasterTracks) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetMasterTracks"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMasterTracks, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetMasterTracks::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMasterTracks, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetMasterTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetMovieScene \ +static_assert(alignof(MovieSceneSequenceExtensions_GetMovieScene) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetMovieScene"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetMovieScene) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetMovieScene"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMovieScene, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetMovieScene::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetMovieScene, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetMovieScene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPlaybackEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPlaybackEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPlaybackEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPlaybackEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetPlaybackEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackEnd, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPlaybackEnd::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackEnd, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPlaybackEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPlaybackEndSeconds \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPlaybackEndSeconds) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPlaybackEndSeconds"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPlaybackEndSeconds) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetPlaybackEndSeconds"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackEndSeconds, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPlaybackEndSeconds::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackEndSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPlaybackEndSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPlaybackRange \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPlaybackRange) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPlaybackRange"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPlaybackRange) == 0x000020, "Wrong size on MovieSceneSequenceExtensions_GetPlaybackRange"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackRange, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPlaybackRange::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackRange, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPlaybackRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPlaybackStart \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPlaybackStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPlaybackStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPlaybackStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetPlaybackStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackStart, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPlaybackStart::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackStart, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPlaybackStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPlaybackStartSeconds \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPlaybackStartSeconds) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPlaybackStartSeconds"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPlaybackStartSeconds) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetPlaybackStartSeconds"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackStartSeconds, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPlaybackStartSeconds::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPlaybackStartSeconds, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPlaybackStartSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPortableBindingID \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPortableBindingID) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPortableBindingID"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPortableBindingID) == 0x000040, "Wrong size on MovieSceneSequenceExtensions_GetPortableBindingID"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPortableBindingID, RootSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPortableBindingID::RootSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPortableBindingID, DestinationSequence) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPortableBindingID::DestinationSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPortableBindingID, InBinding) == 0x000010, "Member 'MovieSceneSequenceExtensions_GetPortableBindingID::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPortableBindingID, ReturnValue) == 0x000028, "Member 'MovieSceneSequenceExtensions_GetPortableBindingID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetPossessables \ +static_assert(alignof(MovieSceneSequenceExtensions_GetPossessables) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetPossessables"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetPossessables) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetPossessables"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPossessables, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetPossessables::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetPossessables, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetPossessables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetRootFoldersInSequence \ +static_assert(alignof(MovieSceneSequenceExtensions_GetRootFoldersInSequence) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetRootFoldersInSequence"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetRootFoldersInSequence) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetRootFoldersInSequence"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetRootFoldersInSequence, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetRootFoldersInSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetRootFoldersInSequence, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetRootFoldersInSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetSpawnables \ +static_assert(alignof(MovieSceneSequenceExtensions_GetSpawnables) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetSpawnables"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetSpawnables) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetSpawnables"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetSpawnables, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetSpawnables::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetSpawnables, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetSpawnables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetTickResolution \ +static_assert(alignof(MovieSceneSequenceExtensions_GetTickResolution) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetTickResolution"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetTickResolution) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetTickResolution"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetTickResolution, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetTickResolution::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetTickResolution, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetTickResolution::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetTracks \ +static_assert(alignof(MovieSceneSequenceExtensions_GetTracks) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetTracks"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetTracks) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_GetTracks"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetTracks, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetTracks::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetTracks, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetTracks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetViewRangeEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_GetViewRangeEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetViewRangeEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetViewRangeEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetViewRangeEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetViewRangeEnd, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetViewRangeEnd::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetViewRangeEnd, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetViewRangeEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetViewRangeStart \ +static_assert(alignof(MovieSceneSequenceExtensions_GetViewRangeStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetViewRangeStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetViewRangeStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetViewRangeStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetViewRangeStart, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetViewRangeStart::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetViewRangeStart, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetViewRangeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetWorkRangeEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_GetWorkRangeEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetWorkRangeEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetWorkRangeEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetWorkRangeEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetWorkRangeEnd, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetWorkRangeEnd::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetWorkRangeEnd, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetWorkRangeEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_GetWorkRangeStart \ +static_assert(alignof(MovieSceneSequenceExtensions_GetWorkRangeStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_GetWorkRangeStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_GetWorkRangeStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_GetWorkRangeStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetWorkRangeStart, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_GetWorkRangeStart::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_GetWorkRangeStart, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_GetWorkRangeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_IsPlaybackRangeLocked \ +static_assert(alignof(MovieSceneSequenceExtensions_IsPlaybackRangeLocked) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_IsPlaybackRangeLocked"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_IsPlaybackRangeLocked) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_IsPlaybackRangeLocked"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_IsPlaybackRangeLocked, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_IsPlaybackRangeLocked::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_IsPlaybackRangeLocked, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_IsPlaybackRangeLocked::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_IsReadOnly \ +static_assert(alignof(MovieSceneSequenceExtensions_IsReadOnly) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_IsReadOnly"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_IsReadOnly) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_IsReadOnly"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_IsReadOnly, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_IsReadOnly::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_IsReadOnly, ReturnValue) == 0x000008, "Member 'MovieSceneSequenceExtensions_IsReadOnly::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_LocateBoundObjects \ +static_assert(alignof(MovieSceneSequenceExtensions_LocateBoundObjects) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_LocateBoundObjects"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_LocateBoundObjects) == 0x000038, "Wrong size on MovieSceneSequenceExtensions_LocateBoundObjects"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_LocateBoundObjects, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_LocateBoundObjects::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_LocateBoundObjects, InBinding) == 0x000008, "Member 'MovieSceneSequenceExtensions_LocateBoundObjects::InBinding' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_LocateBoundObjects, Context) == 0x000020, "Member 'MovieSceneSequenceExtensions_LocateBoundObjects::Context' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_LocateBoundObjects, ReturnValue) == 0x000028, "Member 'MovieSceneSequenceExtensions_LocateBoundObjects::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_MakeRange \ +static_assert(alignof(MovieSceneSequenceExtensions_MakeRange) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_MakeRange"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_MakeRange) == 0x000028, "Wrong size on MovieSceneSequenceExtensions_MakeRange"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRange, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_MakeRange::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRange, StartFrame) == 0x000008, "Member 'MovieSceneSequenceExtensions_MakeRange::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRange, Duration) == 0x00000C, "Member 'MovieSceneSequenceExtensions_MakeRange::Duration' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRange, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_MakeRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_MakeRangeSeconds \ +static_assert(alignof(MovieSceneSequenceExtensions_MakeRangeSeconds) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_MakeRangeSeconds"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_MakeRangeSeconds) == 0x000028, "Wrong size on MovieSceneSequenceExtensions_MakeRangeSeconds"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRangeSeconds, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_MakeRangeSeconds::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRangeSeconds, StartTime) == 0x000008, "Member 'MovieSceneSequenceExtensions_MakeRangeSeconds::StartTime' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRangeSeconds, Duration) == 0x00000C, "Member 'MovieSceneSequenceExtensions_MakeRangeSeconds::Duration' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_MakeRangeSeconds, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_MakeRangeSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_RemoveMasterTrack \ +static_assert(alignof(MovieSceneSequenceExtensions_RemoveMasterTrack) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_RemoveMasterTrack"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_RemoveMasterTrack) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_RemoveMasterTrack"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveMasterTrack, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_RemoveMasterTrack::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveMasterTrack, Track) == 0x000008, "Member 'MovieSceneSequenceExtensions_RemoveMasterTrack::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveMasterTrack, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_RemoveMasterTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_RemoveRootFolderFromSequence \ +static_assert(alignof(MovieSceneSequenceExtensions_RemoveRootFolderFromSequence) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_RemoveRootFolderFromSequence"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_RemoveRootFolderFromSequence) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_RemoveRootFolderFromSequence"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveRootFolderFromSequence, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_RemoveRootFolderFromSequence::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveRootFolderFromSequence, Folder) == 0x000008, "Member 'MovieSceneSequenceExtensions_RemoveRootFolderFromSequence::Folder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_RemoveTrack \ +static_assert(alignof(MovieSceneSequenceExtensions_RemoveTrack) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_RemoveTrack"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_RemoveTrack) == 0x000018, "Wrong size on MovieSceneSequenceExtensions_RemoveTrack"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveTrack, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_RemoveTrack::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveTrack, Track) == 0x000008, "Member 'MovieSceneSequenceExtensions_RemoveTrack::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_RemoveTrack, ReturnValue) == 0x000010, "Member 'MovieSceneSequenceExtensions_RemoveTrack::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_ResolveBindingID \ +static_assert(alignof(MovieSceneSequenceExtensions_ResolveBindingID) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_ResolveBindingID"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_ResolveBindingID) == 0x000038, "Wrong size on MovieSceneSequenceExtensions_ResolveBindingID"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_ResolveBindingID, RootSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_ResolveBindingID::RootSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_ResolveBindingID, InObjectBindingID) == 0x000008, "Member 'MovieSceneSequenceExtensions_ResolveBindingID::InObjectBindingID' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_ResolveBindingID, ReturnValue) == 0x000020, "Member 'MovieSceneSequenceExtensions_ResolveBindingID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetClockSource \ +static_assert(alignof(MovieSceneSequenceExtensions_SetClockSource) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetClockSource"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetClockSource) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetClockSource"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetClockSource, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetClockSource::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetClockSource, InClockSource) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetClockSource::InClockSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetDisplayRate \ +static_assert(alignof(MovieSceneSequenceExtensions_SetDisplayRate) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetDisplayRate"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetDisplayRate) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetDisplayRate"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetDisplayRate, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetDisplayRate::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetDisplayRate, DisplayRate) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetDisplayRate::DisplayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetEvaluationType \ +static_assert(alignof(MovieSceneSequenceExtensions_SetEvaluationType) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetEvaluationType"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetEvaluationType) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetEvaluationType"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetEvaluationType, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetEvaluationType::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetEvaluationType, InEvaluationType) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetEvaluationType::InEvaluationType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetMarkedFrame \ +static_assert(alignof(MovieSceneSequenceExtensions_SetMarkedFrame) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetMarkedFrame"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetMarkedFrame) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetMarkedFrame"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetMarkedFrame, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetMarkedFrame::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetMarkedFrame, InMarkIndex) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetMarkedFrame::InMarkIndex' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetMarkedFrame, InFrameNumber) == 0x00000C, "Member 'MovieSceneSequenceExtensions_SetMarkedFrame::InFrameNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetMarkedFramesLocked \ +static_assert(alignof(MovieSceneSequenceExtensions_SetMarkedFramesLocked) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetMarkedFramesLocked"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetMarkedFramesLocked) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetMarkedFramesLocked"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetMarkedFramesLocked, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetMarkedFramesLocked::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetMarkedFramesLocked, bInLocked) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetMarkedFramesLocked::bInLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetPlaybackEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_SetPlaybackEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetPlaybackEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetPlaybackEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetPlaybackEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackEnd, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetPlaybackEnd::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackEnd, EndFrame) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetPlaybackEnd::EndFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetPlaybackEndSeconds \ +static_assert(alignof(MovieSceneSequenceExtensions_SetPlaybackEndSeconds) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetPlaybackEndSeconds"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetPlaybackEndSeconds) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetPlaybackEndSeconds"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackEndSeconds, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetPlaybackEndSeconds::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackEndSeconds, EndTime) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetPlaybackEndSeconds::EndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetPlaybackRangeLocked \ +static_assert(alignof(MovieSceneSequenceExtensions_SetPlaybackRangeLocked) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetPlaybackRangeLocked"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetPlaybackRangeLocked) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetPlaybackRangeLocked"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackRangeLocked, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetPlaybackRangeLocked::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackRangeLocked, bInLocked) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetPlaybackRangeLocked::bInLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetPlaybackStart \ +static_assert(alignof(MovieSceneSequenceExtensions_SetPlaybackStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetPlaybackStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetPlaybackStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetPlaybackStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackStart, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetPlaybackStart::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackStart, StartFrame) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetPlaybackStart::StartFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetPlaybackStartSeconds \ +static_assert(alignof(MovieSceneSequenceExtensions_SetPlaybackStartSeconds) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetPlaybackStartSeconds"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetPlaybackStartSeconds) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetPlaybackStartSeconds"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackStartSeconds, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetPlaybackStartSeconds::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetPlaybackStartSeconds, StartTime) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetPlaybackStartSeconds::StartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetReadOnly \ +static_assert(alignof(MovieSceneSequenceExtensions_SetReadOnly) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetReadOnly"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetReadOnly) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetReadOnly"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetReadOnly, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetReadOnly::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetReadOnly, bInReadOnly) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetReadOnly::bInReadOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetTickResolution \ +static_assert(alignof(MovieSceneSequenceExtensions_SetTickResolution) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetTickResolution"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetTickResolution) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetTickResolution"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetTickResolution, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetTickResolution::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetTickResolution, TickResolution) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetTickResolution::TickResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetTickResolutionDirectly \ +static_assert(alignof(MovieSceneSequenceExtensions_SetTickResolutionDirectly) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetTickResolutionDirectly"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetTickResolutionDirectly) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetTickResolutionDirectly"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetTickResolutionDirectly, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetTickResolutionDirectly::Sequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetTickResolutionDirectly, TickResolution) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetTickResolutionDirectly::TickResolution' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetViewRangeEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_SetViewRangeEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetViewRangeEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetViewRangeEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetViewRangeEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetViewRangeEnd, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetViewRangeEnd::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetViewRangeEnd, EndTimeInSeconds) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetViewRangeEnd::EndTimeInSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetViewRangeStart \ +static_assert(alignof(MovieSceneSequenceExtensions_SetViewRangeStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetViewRangeStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetViewRangeStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetViewRangeStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetViewRangeStart, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetViewRangeStart::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetViewRangeStart, StartTimeInSeconds) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetViewRangeStart::StartTimeInSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetWorkRangeEnd \ +static_assert(alignof(MovieSceneSequenceExtensions_SetWorkRangeEnd) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetWorkRangeEnd"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetWorkRangeEnd) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetWorkRangeEnd"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetWorkRangeEnd, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetWorkRangeEnd::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetWorkRangeEnd, EndTimeInSeconds) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetWorkRangeEnd::EndTimeInSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SetWorkRangeStart \ +static_assert(alignof(MovieSceneSequenceExtensions_SetWorkRangeStart) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SetWorkRangeStart"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SetWorkRangeStart) == 0x000010, "Wrong size on MovieSceneSequenceExtensions_SetWorkRangeStart"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetWorkRangeStart, InSequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SetWorkRangeStart::InSequence' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SetWorkRangeStart, StartTimeInSeconds) == 0x000008, "Member 'MovieSceneSequenceExtensions_SetWorkRangeStart::StartTimeInSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneSequenceExtensions_SortMarkedFrames \ +static_assert(alignof(MovieSceneSequenceExtensions_SortMarkedFrames) == 0x000008, "Wrong alignment on MovieSceneSequenceExtensions_SortMarkedFrames"); \ +static_assert(sizeof(MovieSceneSequenceExtensions_SortMarkedFrames) == 0x000008, "Wrong size on MovieSceneSequenceExtensions_SortMarkedFrames"); \ +static_assert(offsetof(MovieSceneSequenceExtensions_SortMarkedFrames, Sequence) == 0x000000, "Member 'MovieSceneSequenceExtensions_SortMarkedFrames::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneSequenceExtensions \ +static_assert(alignof(UMovieSceneSequenceExtensions) == 0x000008, "Wrong alignment on UMovieSceneSequenceExtensions"); \ +static_assert(sizeof(UMovieSceneSequenceExtensions) == 0x000028, "Wrong size on UMovieSceneSequenceExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_AddSection \ +static_assert(alignof(MovieSceneTrackExtensions_AddSection) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_AddSection"); \ +static_assert(sizeof(MovieSceneTrackExtensions_AddSection) == 0x000010, "Wrong size on MovieSceneTrackExtensions_AddSection"); \ +static_assert(offsetof(MovieSceneTrackExtensions_AddSection, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_AddSection::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_AddSection, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_AddSection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetColorTint \ +static_assert(alignof(MovieSceneTrackExtensions_GetColorTint) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetColorTint"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetColorTint) == 0x000010, "Wrong size on MovieSceneTrackExtensions_GetColorTint"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetColorTint, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetColorTint::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetColorTint, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_GetColorTint::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetDisplayName \ +static_assert(alignof(MovieSceneTrackExtensions_GetDisplayName) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetDisplayName"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetDisplayName) == 0x000020, "Wrong size on MovieSceneTrackExtensions_GetDisplayName"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetDisplayName, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetDisplayName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetDisplayName, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_GetDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetSections \ +static_assert(alignof(MovieSceneTrackExtensions_GetSections) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetSections"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetSections) == 0x000018, "Wrong size on MovieSceneTrackExtensions_GetSections"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSections, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetSections::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSections, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_GetSections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetSectionToKey \ +static_assert(alignof(MovieSceneTrackExtensions_GetSectionToKey) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetSectionToKey"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetSectionToKey) == 0x000010, "Wrong size on MovieSceneTrackExtensions_GetSectionToKey"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSectionToKey, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetSectionToKey::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSectionToKey, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_GetSectionToKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetSortingOrder \ +static_assert(alignof(MovieSceneTrackExtensions_GetSortingOrder) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetSortingOrder"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetSortingOrder) == 0x000010, "Wrong size on MovieSceneTrackExtensions_GetSortingOrder"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSortingOrder, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetSortingOrder::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetSortingOrder, ReturnValue) == 0x000008, "Member 'MovieSceneTrackExtensions_GetSortingOrder::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_GetTrackRowDisplayName \ +static_assert(alignof(MovieSceneTrackExtensions_GetTrackRowDisplayName) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_GetTrackRowDisplayName"); \ +static_assert(sizeof(MovieSceneTrackExtensions_GetTrackRowDisplayName) == 0x000028, "Wrong size on MovieSceneTrackExtensions_GetTrackRowDisplayName"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetTrackRowDisplayName, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_GetTrackRowDisplayName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetTrackRowDisplayName, RowIndex) == 0x000008, "Member 'MovieSceneTrackExtensions_GetTrackRowDisplayName::RowIndex' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_GetTrackRowDisplayName, ReturnValue) == 0x000010, "Member 'MovieSceneTrackExtensions_GetTrackRowDisplayName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_RemoveSection \ +static_assert(alignof(MovieSceneTrackExtensions_RemoveSection) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_RemoveSection"); \ +static_assert(sizeof(MovieSceneTrackExtensions_RemoveSection) == 0x000010, "Wrong size on MovieSceneTrackExtensions_RemoveSection"); \ +static_assert(offsetof(MovieSceneTrackExtensions_RemoveSection, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_RemoveSection::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_RemoveSection, Section) == 0x000008, "Member 'MovieSceneTrackExtensions_RemoveSection::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_SetColorTint \ +static_assert(alignof(MovieSceneTrackExtensions_SetColorTint) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_SetColorTint"); \ +static_assert(sizeof(MovieSceneTrackExtensions_SetColorTint) == 0x000010, "Wrong size on MovieSceneTrackExtensions_SetColorTint"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetColorTint, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_SetColorTint::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetColorTint, ColorTint) == 0x000008, "Member 'MovieSceneTrackExtensions_SetColorTint::ColorTint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_SetDisplayName \ +static_assert(alignof(MovieSceneTrackExtensions_SetDisplayName) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_SetDisplayName"); \ +static_assert(sizeof(MovieSceneTrackExtensions_SetDisplayName) == 0x000020, "Wrong size on MovieSceneTrackExtensions_SetDisplayName"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetDisplayName, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_SetDisplayName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetDisplayName, InName) == 0x000008, "Member 'MovieSceneTrackExtensions_SetDisplayName::InName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_SetSectionToKey \ +static_assert(alignof(MovieSceneTrackExtensions_SetSectionToKey) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_SetSectionToKey"); \ +static_assert(sizeof(MovieSceneTrackExtensions_SetSectionToKey) == 0x000010, "Wrong size on MovieSceneTrackExtensions_SetSectionToKey"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetSectionToKey, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_SetSectionToKey::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetSectionToKey, Section) == 0x000008, "Member 'MovieSceneTrackExtensions_SetSectionToKey::Section' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_SetSortingOrder \ +static_assert(alignof(MovieSceneTrackExtensions_SetSortingOrder) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_SetSortingOrder"); \ +static_assert(sizeof(MovieSceneTrackExtensions_SetSortingOrder) == 0x000010, "Wrong size on MovieSceneTrackExtensions_SetSortingOrder"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetSortingOrder, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_SetSortingOrder::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetSortingOrder, SortingOrder) == 0x000008, "Member 'MovieSceneTrackExtensions_SetSortingOrder::SortingOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneTrackExtensions_SetTrackRowDisplayName \ +static_assert(alignof(MovieSceneTrackExtensions_SetTrackRowDisplayName) == 0x000008, "Wrong alignment on MovieSceneTrackExtensions_SetTrackRowDisplayName"); \ +static_assert(sizeof(MovieSceneTrackExtensions_SetTrackRowDisplayName) == 0x000028, "Wrong size on MovieSceneTrackExtensions_SetTrackRowDisplayName"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetTrackRowDisplayName, Track) == 0x000000, "Member 'MovieSceneTrackExtensions_SetTrackRowDisplayName::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetTrackRowDisplayName, InName) == 0x000008, "Member 'MovieSceneTrackExtensions_SetTrackRowDisplayName::InName' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneTrackExtensions_SetTrackRowDisplayName, RowIndex) == 0x000020, "Member 'MovieSceneTrackExtensions_SetTrackRowDisplayName::RowIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTrackExtensions \ +static_assert(alignof(UMovieSceneTrackExtensions) == 0x000008, "Wrong alignment on UMovieSceneTrackExtensions"); \ +static_assert(sizeof(UMovieSceneTrackExtensions) == 0x000028, "Wrong size on UMovieSceneTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed \ +static_assert(alignof(MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed) == 0x000008, "Wrong alignment on MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed"); \ +static_assert(sizeof(MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed) == 0x000010, "Wrong size on MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed"); \ +static_assert(offsetof(MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed, Track) == 0x000000, "Member 'MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed, ReturnValue) == 0x000008, "Member 'MovieSceneFloatVectorTrackExtensions_GetNumChannelsUsed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed \ +static_assert(alignof(MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed) == 0x000008, "Wrong alignment on MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed"); \ +static_assert(sizeof(MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed) == 0x000010, "Wrong size on MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed"); \ +static_assert(offsetof(MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed, Track) == 0x000000, "Member 'MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed, InNumChannelsUsed) == 0x000008, "Member 'MovieSceneFloatVectorTrackExtensions_SetNumChannelsUsed::InNumChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneFloatVectorTrackExtensions \ +static_assert(alignof(UMovieSceneFloatVectorTrackExtensions) == 0x000008, "Wrong alignment on UMovieSceneFloatVectorTrackExtensions"); \ +static_assert(sizeof(UMovieSceneFloatVectorTrackExtensions) == 0x000028, "Wrong size on UMovieSceneFloatVectorTrackExtensions"); \ + +#define DUMPER7_ASSERTS_MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed \ +static_assert(alignof(MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed) == 0x000008, "Wrong alignment on MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed"); \ +static_assert(sizeof(MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed) == 0x000010, "Wrong size on MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed"); \ +static_assert(offsetof(MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed, Track) == 0x000000, "Member 'MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed, ReturnValue) == 0x000008, "Member 'MovieSceneDoubleVectorTrackExtensions_GetNumChannelsUsed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed \ +static_assert(alignof(MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed) == 0x000008, "Wrong alignment on MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed"); \ +static_assert(sizeof(MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed) == 0x000010, "Wrong size on MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed"); \ +static_assert(offsetof(MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed, Track) == 0x000000, "Member 'MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed::Track' has a wrong offset!"); \ +static_assert(offsetof(MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed, InNumChannelsUsed) == 0x000008, "Member 'MovieSceneDoubleVectorTrackExtensions_SetNumChannelsUsed::InNumChannelsUsed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneDoubleVectorTrackExtensions \ +static_assert(alignof(UMovieSceneDoubleVectorTrackExtensions) == 0x000008, "Wrong alignment on UMovieSceneDoubleVectorTrackExtensions"); \ +static_assert(sizeof(UMovieSceneDoubleVectorTrackExtensions) == 0x000028, "Wrong size on UMovieSceneDoubleVectorTrackExtensions"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_GetEndFrame \ +static_assert(alignof(SequencerScriptingRangeExtensions_GetEndFrame) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_GetEndFrame"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_GetEndFrame) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_GetEndFrame"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetEndFrame, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_GetEndFrame::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetEndFrame, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_GetEndFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_GetEndSeconds \ +static_assert(alignof(SequencerScriptingRangeExtensions_GetEndSeconds) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_GetEndSeconds"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_GetEndSeconds) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_GetEndSeconds"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetEndSeconds, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_GetEndSeconds::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetEndSeconds, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_GetEndSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_GetStartFrame \ +static_assert(alignof(SequencerScriptingRangeExtensions_GetStartFrame) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_GetStartFrame"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_GetStartFrame) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_GetStartFrame"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetStartFrame, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_GetStartFrame::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetStartFrame, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_GetStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_GetStartSeconds \ +static_assert(alignof(SequencerScriptingRangeExtensions_GetStartSeconds) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_GetStartSeconds"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_GetStartSeconds) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_GetStartSeconds"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetStartSeconds, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_GetStartSeconds::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_GetStartSeconds, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_GetStartSeconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_HasEnd \ +static_assert(alignof(SequencerScriptingRangeExtensions_HasEnd) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_HasEnd"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_HasEnd) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_HasEnd"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_HasEnd, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_HasEnd::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_HasEnd, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_HasEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_HasStart \ +static_assert(alignof(SequencerScriptingRangeExtensions_HasStart) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_HasStart"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_HasStart) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_HasStart"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_HasStart, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_HasStart::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_HasStart, ReturnValue) == 0x000014, "Member 'SequencerScriptingRangeExtensions_HasStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_RemoveEnd \ +static_assert(alignof(SequencerScriptingRangeExtensions_RemoveEnd) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_RemoveEnd"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_RemoveEnd) == 0x000014, "Wrong size on SequencerScriptingRangeExtensions_RemoveEnd"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_RemoveEnd, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_RemoveEnd::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_RemoveStart \ +static_assert(alignof(SequencerScriptingRangeExtensions_RemoveStart) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_RemoveStart"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_RemoveStart) == 0x000014, "Wrong size on SequencerScriptingRangeExtensions_RemoveStart"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_RemoveStart, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_RemoveStart::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_SetEndFrame \ +static_assert(alignof(SequencerScriptingRangeExtensions_SetEndFrame) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_SetEndFrame"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_SetEndFrame) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_SetEndFrame"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetEndFrame, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_SetEndFrame::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetEndFrame, End) == 0x000014, "Member 'SequencerScriptingRangeExtensions_SetEndFrame::End' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_SetEndSeconds \ +static_assert(alignof(SequencerScriptingRangeExtensions_SetEndSeconds) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_SetEndSeconds"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_SetEndSeconds) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_SetEndSeconds"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetEndSeconds, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_SetEndSeconds::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetEndSeconds, End) == 0x000014, "Member 'SequencerScriptingRangeExtensions_SetEndSeconds::End' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_SetStartFrame \ +static_assert(alignof(SequencerScriptingRangeExtensions_SetStartFrame) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_SetStartFrame"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_SetStartFrame) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_SetStartFrame"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetStartFrame, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_SetStartFrame::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetStartFrame, Start) == 0x000014, "Member 'SequencerScriptingRangeExtensions_SetStartFrame::Start' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequencerScriptingRangeExtensions_SetStartSeconds \ +static_assert(alignof(SequencerScriptingRangeExtensions_SetStartSeconds) == 0x000004, "Wrong alignment on SequencerScriptingRangeExtensions_SetStartSeconds"); \ +static_assert(sizeof(SequencerScriptingRangeExtensions_SetStartSeconds) == 0x000018, "Wrong size on SequencerScriptingRangeExtensions_SetStartSeconds"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetStartSeconds, Range) == 0x000000, "Member 'SequencerScriptingRangeExtensions_SetStartSeconds::Range' has a wrong offset!"); \ +static_assert(offsetof(SequencerScriptingRangeExtensions_SetStartSeconds, Start) == 0x000014, "Member 'SequencerScriptingRangeExtensions_SetStartSeconds::Start' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequencerScriptingRangeExtensions \ +static_assert(alignof(USequencerScriptingRangeExtensions) == 0x000008, "Wrong alignment on USequencerScriptingRangeExtensions"); \ +static_assert(sizeof(USequencerScriptingRangeExtensions) == 0x000028, "Wrong size on USequencerScriptingRangeExtensions"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat \ +static_assert(alignof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat) == 0x000008, "Wrong alignment on CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat"); \ +static_assert(sizeof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat) == 0x000050, "Wrong size on CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, EntryPoint) == 0x000000, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, K2Node_CustomEvent_Enemy) == 0x000008, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, K2Node_Event_InAutomata) == 0x000020, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, K2Node_Event_InState) == 0x000028, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000038, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat, CallFunc_Array_Contains_ReturnValue) == 0x000048, "Member 'CheckEnemiesInCombat_C_ExecuteUbergraph_CheckEnemiesInCombat::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesInCombat_C_OnCombat \ +static_assert(alignof(CheckEnemiesInCombat_C_OnCombat) == 0x000008, "Wrong alignment on CheckEnemiesInCombat_C_OnCombat"); \ +static_assert(sizeof(CheckEnemiesInCombat_C_OnCombat) == 0x000008, "Wrong size on CheckEnemiesInCombat_C_OnCombat"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_OnCombat, Enemy) == 0x000000, "Member 'CheckEnemiesInCombat_C_OnCombat::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesInCombat_C_ReceiveExecute \ +static_assert(alignof(CheckEnemiesInCombat_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckEnemiesInCombat_C_ReceiveExecute"); \ +static_assert(sizeof(CheckEnemiesInCombat_C_ReceiveExecute) == 0x000010, "Wrong size on CheckEnemiesInCombat_C_ReceiveExecute"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckEnemiesInCombat_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesInCombat_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckEnemiesInCombat_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckEnemiesInCombat_C \ +static_assert(alignof(UCheckEnemiesInCombat_C) == 0x000008, "Wrong alignment on UCheckEnemiesInCombat_C"); \ +static_assert(sizeof(UCheckEnemiesInCombat_C) == 0x0000A0, "Wrong size on UCheckEnemiesInCombat_C"); \ +static_assert(offsetof(UCheckEnemiesInCombat_C, UberGraphFrame) == 0x000088, "Member 'UCheckEnemiesInCombat_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesInCombat_C, Tagged_Enmies_In_Combat) == 0x000090, "Member 'UCheckEnemiesInCombat_C::Tagged_Enmies_In_Combat' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesInCombat_C, Update_Objective) == 0x000098, "Member 'UCheckEnemiesInCombat_C::Update_Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGauntletTestController \ +static_assert(alignof(UGauntletTestController) == 0x000008, "Wrong alignment on UGauntletTestController"); \ +static_assert(sizeof(UGauntletTestController) == 0x000030, "Wrong size on UGauntletTestController"); \ + +#define DUMPER7_ASSERTS_UGauntletTestControllerBootTest \ +static_assert(alignof(UGauntletTestControllerBootTest) == 0x000008, "Wrong alignment on UGauntletTestControllerBootTest"); \ +static_assert(sizeof(UGauntletTestControllerBootTest) == 0x000030, "Wrong size on UGauntletTestControllerBootTest"); \ + +#define DUMPER7_ASSERTS_UGauntletTestControllerErrorTest \ +static_assert(alignof(UGauntletTestControllerErrorTest) == 0x000008, "Wrong alignment on UGauntletTestControllerErrorTest"); \ +static_assert(sizeof(UGauntletTestControllerErrorTest) == 0x000050, "Wrong size on UGauntletTestControllerErrorTest"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_AssignStencil \ +static_assert(alignof(BP_TKable_Laser_C_AssignStencil) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_AssignStencil"); \ +static_assert(sizeof(BP_TKable_Laser_C_AssignStencil) == 0x000020, "Wrong size on BP_TKable_Laser_C_AssignStencil"); \ +static_assert(offsetof(BP_TKable_Laser_C_AssignStencil, InputPin) == 0x000000, "Member 'BP_TKable_Laser_C_AssignStencil::InputPin' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_AssignStencil, Parent) == 0x000008, "Member 'BP_TKable_Laser_C_AssignStencil::Parent' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_AssignStencil, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000010, "Member 'BP_TKable_Laser_C_AssignStencil::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_AssignStencil, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_TKable_Laser_C_AssignStencil::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_CanInteract \ +static_assert(alignof(BP_TKable_Laser_C_CanInteract) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_CanInteract"); \ +static_assert(sizeof(BP_TKable_Laser_C_CanInteract) == 0x000001, "Wrong size on BP_TKable_Laser_C_CanInteract"); \ +static_assert(offsetof(BP_TKable_Laser_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_CanPull \ +static_assert(alignof(BP_TKable_Laser_C_CanPull) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_CanPull"); \ +static_assert(sizeof(BP_TKable_Laser_C_CanPull) == 0x000001, "Wrong size on BP_TKable_Laser_C_CanPull"); \ +static_assert(offsetof(BP_TKable_Laser_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser \ +static_assert(alignof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser) == 0x000010, "Wrong alignment on BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser"); \ +static_assert(sizeof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser) == 0x000470, "Wrong size on BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, EntryPoint) == 0x000000, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_delegate_Variable) == 0x000004, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_IsValid_ReturnValue) == 0x000014, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_bool_IsClosed_Variable) == 0x000020, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_bool_IsClosed_Variable_1) == 0x000021, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_struct_Variable) == 0x000030, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_AddComponent_ReturnValue) == 0x000090, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_bool_Has_Been_Initd_Variable) == 0x000098, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000A0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000B8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_RandomUnitVector_ReturnValue) == 0x0000C0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000D8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000F0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000108, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000120, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000140, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0001A0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_FinishSpawningActor_ReturnValue) == 0x0001A8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_MakeStruct_GameplayEventData) == 0x0001B0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_IsValid_ReturnValue_1) == 0x000260, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000268, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000280, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_Event_Damage) == 0x000288, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_Event_DamageType) == 0x000290, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_Event_InstigatedBy) == 0x000298, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_Event_DamageCauser) == 0x0002A0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0002A8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x0002B0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Array_Get_Item) == 0x0002C0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x0002C8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_IsValid_ReturnValue_2) == 0x0002C9, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, Temp_bool_Has_Been_Initd_Variable_1) == 0x0002CA, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_RandomFloatInRange_ReturnValue) == 0x0002D0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Conv_LinearColorToVector_ReturnValue) == 0x0002D8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Conv_LinearColorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_IsPlayerFabien_Return) == 0x0002F0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_IsValid_ReturnValue_3) == 0x0002F1, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, K2Node_MakeArray_Array) == 0x0002F8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000308, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000320, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_GetComponentToWorld_ReturnValue_1) == 0x000340, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_GetComponentToWorld_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_BreakTransform_Location) == 0x0003A0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_BreakTransform_Rotation) == 0x0003B8, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_BreakTransform_Scale) == 0x0003D0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_MakeTransform_ReturnValue) == 0x0003F0, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x000450, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x000458, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000460, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser, CallFunc_Delay_Duration_ImplicitCast) == 0x000464, "Member 'BP_TKable_Laser_C_ExecuteUbergraph_BP_TKable_Laser::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_Face_Location \ +static_assert(alignof(BP_TKable_Laser_C_Face_Location) == 0x000010, "Wrong alignment on BP_TKable_Laser_C_Face_Location"); \ +static_assert(sizeof(BP_TKable_Laser_C_Face_Location) == 0x000110, "Wrong size on BP_TKable_Laser_C_Face_Location"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, TargetLocation) == 0x000000, "Member 'BP_TKable_Laser_C_Face_Location::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_MakeRotator_ReturnValue) == 0x000018, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_FindRelativeLookAtRotation_ReturnValue) == 0x000090, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_FindRelativeLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Roll) == 0x0000A8, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Pitch) == 0x0000AC, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Yaw) == 0x0000B0, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_MakeRotator_ReturnValue_1) == 0x0000B8, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000D0, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_ComposeRotators_ReturnValue) == 0x0000D8, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Roll_1) == 0x0000F0, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Pitch_1) == 0x0000F4, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_BreakRotator_Yaw_1) == 0x0000F8, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000100, "Member 'BP_TKable_Laser_C_Face_Location::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_Face_Location, K2Node_VariableSet_Pitch_ImplicitCast) == 0x000108, "Member 'BP_TKable_Laser_C_Face_Location::K2Node_VariableSet_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetCurrentAmmo \ +static_assert(alignof(BP_TKable_Laser_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_TKable_Laser_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_TKable_Laser_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetDataAsset \ +static_assert(alignof(BP_TKable_Laser_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetDataAsset"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetDataAsset) == 0x000008, "Wrong size on BP_TKable_Laser_C_GetDataAsset"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetHandleLocation \ +static_assert(alignof(BP_TKable_Laser_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetHandleLocation"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetHandleLocation) == 0x000018, "Wrong size on BP_TKable_Laser_C_GetHandleLocation"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetInteractAnimation \ +static_assert(alignof(BP_TKable_Laser_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_TKable_Laser_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetInteractObjective \ +static_assert(alignof(BP_TKable_Laser_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetInteractObjective"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetInteractObjective) == 0x000008, "Wrong size on BP_TKable_Laser_C_GetInteractObjective"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetPointAxis \ +static_assert(alignof(BP_TKable_Laser_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetPointAxis"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetPointAxis) == 0x000030, "Wrong size on BP_TKable_Laser_C_GetPointAxis"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetScoreBias \ +static_assert(alignof(BP_TKable_Laser_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_TKable_Laser_C_GetScoreBias"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetScoreBias) == 0x000004, "Wrong size on BP_TKable_Laser_C_GetScoreBias"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetThrowableComponent \ +static_assert(alignof(BP_TKable_Laser_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_TKable_Laser_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetThrowableOrientation \ +static_assert(alignof(BP_TKable_Laser_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_TKable_Laser_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_TKable_Laser_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_TKable_Laser_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetThrowableType \ +static_assert(alignof(BP_TKable_Laser_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_GetThrowableType"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetThrowableType) == 0x000001, "Wrong size on BP_TKable_Laser_C_GetThrowableType"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_IsExplosive \ +static_assert(alignof(BP_TKable_Laser_C_IsExplosive) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_IsExplosive"); \ +static_assert(sizeof(BP_TKable_Laser_C_IsExplosive) == 0x000001, "Wrong size on BP_TKable_Laser_C_IsExplosive"); \ +static_assert(offsetof(BP_TKable_Laser_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_IsPointed \ +static_assert(alignof(BP_TKable_Laser_C_IsPointed) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_IsPointed"); \ +static_assert(sizeof(BP_TKable_Laser_C_IsPointed) == 0x000001, "Wrong size on BP_TKable_Laser_C_IsPointed"); \ +static_assert(offsetof(BP_TKable_Laser_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_IsThrowable \ +static_assert(alignof(BP_TKable_Laser_C_IsThrowable) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_IsThrowable"); \ +static_assert(sizeof(BP_TKable_Laser_C_IsThrowable) == 0x000001, "Wrong size on BP_TKable_Laser_C_IsThrowable"); \ +static_assert(offsetof(BP_TKable_Laser_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_ReceiveAnyDamage \ +static_assert(alignof(BP_TKable_Laser_C_ReceiveAnyDamage) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_ReceiveAnyDamage"); \ +static_assert(sizeof(BP_TKable_Laser_C_ReceiveAnyDamage) == 0x000020, "Wrong size on BP_TKable_Laser_C_ReceiveAnyDamage"); \ +static_assert(offsetof(BP_TKable_Laser_C_ReceiveAnyDamage, Damage) == 0x000000, "Member 'BP_TKable_Laser_C_ReceiveAnyDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ReceiveAnyDamage, DamageType) == 0x000008, "Member 'BP_TKable_Laser_C_ReceiveAnyDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ReceiveAnyDamage, InstigatedBy) == 0x000010, "Member 'BP_TKable_Laser_C_ReceiveAnyDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_ReceiveAnyDamage, DamageCauser) == 0x000018, "Member 'BP_TKable_Laser_C_ReceiveAnyDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_UpdateLaserLength \ +static_assert(alignof(BP_TKable_Laser_C_UpdateLaserLength) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_UpdateLaserLength"); \ +static_assert(sizeof(BP_TKable_Laser_C_UpdateLaserLength) == 0x000288, "Wrong size on BP_TKable_Laser_C_UpdateLaserLength"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, Temp_object_Variable) == 0x000000, "Member 'BP_TKable_Laser_C_UpdateLaserLength::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_GetForwardVector_ReturnValue) == 0x000010, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000028, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000040, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000060, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_Add_VectorVector_ReturnValue) == 0x000078, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, K2Node_MakeArray_Array) == 0x000090, "Member 'BP_TKable_Laser_C_UpdateLaserLength::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0000A0, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000188, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_bBlockingHit) == 0x000189, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_bInitialOverlap) == 0x00018A, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_Time) == 0x00018C, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_Distance) == 0x000190, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_Location) == 0x000198, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_ImpactPoint) == 0x0001B0, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_Normal) == 0x0001C8, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_ImpactNormal) == 0x0001E0, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_PhysMat) == 0x0001F8, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_HitActor) == 0x000200, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_HitComponent) == 0x000208, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_HitBoneName) == 0x000210, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_BoneName) == 0x000218, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_HitItem) == 0x000220, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_ElementIndex) == 0x000224, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_FaceIndex) == 0x000228, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_TraceStart) == 0x000230, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_BreakHitResult_TraceEnd) == 0x000248, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000260, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_MakeVector_ReturnValue) == 0x000268, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateLaserLength, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000280, "Member 'BP_TKable_Laser_C_UpdateLaserLength::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_UpdateRotation \ +static_assert(alignof(BP_TKable_Laser_C_UpdateRotation) == 0x000008, "Wrong alignment on BP_TKable_Laser_C_UpdateRotation"); \ +static_assert(sizeof(BP_TKable_Laser_C_UpdateRotation) == 0x000208, "Wrong size on BP_TKable_Laser_C_UpdateRotation"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, NewRotation_Roll) == 0x000000, "Member 'BP_TKable_Laser_C_UpdateRotation::NewRotation_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, NewRotation_Yaw) == 0x000004, "Member 'BP_TKable_Laser_C_UpdateRotation::NewRotation_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, CallFunc_MakeRotator_ReturnValue) == 0x000008, "Member 'BP_TKable_Laser_C_UpdateRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, CallFunc_MakeRotator_ReturnValue_1) == 0x000020, "Member 'BP_TKable_Laser_C_UpdateRotation::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, CallFunc_K2_SetRelativeRotation_SweepHitResult) == 0x000038, "Member 'BP_TKable_Laser_C_UpdateRotation::CallFunc_K2_SetRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UpdateRotation, CallFunc_K2_SetRelativeRotation_SweepHitResult_1) == 0x000120, "Member 'BP_TKable_Laser_C_UpdateRotation::CallFunc_K2_SetRelativeRotation_SweepHitResult_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_UserConstructionScript \ +static_assert(alignof(BP_TKable_Laser_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_TKable_Laser_C_UserConstructionScript"); \ +static_assert(sizeof(BP_TKable_Laser_C_UserConstructionScript) == 0x000120, "Wrong size on BP_TKable_Laser_C_UserConstructionScript"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_MakeRotator_ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_GetTransform_ReturnValue) == 0x000040, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_FindRelativeLookAtRotation_ReturnValue) == 0x0000A0, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_FindRelativeLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Roll) == 0x0000B8, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Pitch) == 0x0000BC, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Yaw) == 0x0000C0, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_MakeRotator_ReturnValue_1) == 0x0000D0, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_ComposeRotators_ReturnValue) == 0x0000E8, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Roll_1) == 0x000100, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Pitch_1) == 0x000104, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_BreakRotator_Yaw_1) == 0x000108, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000110, "Member 'BP_TKable_Laser_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TKable_Laser_C_UserConstructionScript, K2Node_VariableSet_Pitch_ImplicitCast) == 0x000118, "Member 'BP_TKable_Laser_C_UserConstructionScript::K2Node_VariableSet_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TKable_Laser_C_GetTargetType \ +static_assert(alignof(BP_TKable_Laser_C_GetTargetType) == 0x000001, "Wrong alignment on BP_TKable_Laser_C_GetTargetType"); \ +static_assert(sizeof(BP_TKable_Laser_C_GetTargetType) == 0x000001, "Wrong size on BP_TKable_Laser_C_GetTargetType"); \ +static_assert(offsetof(BP_TKable_Laser_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_TKable_Laser_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TKable_Laser_C \ +static_assert(alignof(ABP_TKable_Laser_C) == 0x000008, "Wrong alignment on ABP_TKable_Laser_C"); \ +static_assert(sizeof(ABP_TKable_Laser_C) == 0x000398, "Wrong size on ABP_TKable_Laser_C"); \ +static_assert(offsetof(ABP_TKable_Laser_C, UberGraphFrame) == 0x000298, "Member 'ABP_TKable_Laser_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, BoxCollision) == 0x0002A0, "Member 'ABP_TKable_Laser_C::BoxCollision' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, SM_LaserProjectorSupport_01) == 0x0002A8, "Member 'ABP_TKable_Laser_C::SM_LaserProjectorSupport_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, RotationRoot) == 0x0002B0, "Member 'ABP_TKable_Laser_C::RotationRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, WrestlerInteractionPoint) == 0x0002B8, "Member 'ABP_TKable_Laser_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, HeraAudio) == 0x0002C0, "Member 'ABP_TKable_Laser_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Arrow) == 0x0002C8, "Member 'ABP_TKable_Laser_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, SM_LaserProjector_01) == 0x0002D0, "Member 'ABP_TKable_Laser_C::SM_LaserProjector_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, DefaultSceneRoot) == 0x0002D8, "Member 'ABP_TKable_Laser_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, TargetToFace) == 0x0002E0, "Member 'ABP_TKable_Laser_C::TargetToFace' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, MaxDistance) == 0x0002E8, "Member 'ABP_TKable_Laser_C::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Radius) == 0x0002F0, "Member 'ABP_TKable_Laser_C::Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, WrestlerHeightenedSensesClue) == 0x0002F8, "Member 'ABP_TKable_Laser_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, SFX_Collected) == 0x000300, "Member 'ABP_TKable_Laser_C::SFX_Collected' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Audio_Loop_Start) == 0x000308, "Member 'ABP_TKable_Laser_C::Audio_Loop_Start' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, VFXParticles) == 0x000310, "Member 'ABP_TKable_Laser_C::VFXParticles' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Audio_Loop_Stop) == 0x000318, "Member 'ABP_TKable_Laser_C::Audio_Loop_Stop' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Audio_Collect) == 0x000320, "Member 'ABP_TKable_Laser_C::Audio_Collect' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, ReplaceMeshWithThrowable) == 0x000328, "Member 'ABP_TKable_Laser_C::ReplaceMeshWithThrowable' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, HeightenedMesh) == 0x000330, "Member 'ABP_TKable_Laser_C::HeightenedMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, IsBroken) == 0x000340, "Member 'ABP_TKable_Laser_C::IsBroken' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, CanBeTKed) == 0x000341, "Member 'ABP_TKable_Laser_C::CanBeTKed' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Out_Hit_Distance) == 0x000344, "Member 'ABP_TKable_Laser_C::Out_Hit_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, TimeBetweenLineTraces) == 0x000348, "Member 'ABP_TKable_Laser_C::TimeBetweenLineTraces' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, LaserTick) == 0x000350, "Member 'ABP_TKable_Laser_C::LaserTick' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Pitch) == 0x000358, "Member 'ABP_TKable_Laser_C::Pitch' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Yaw) == 0x00035C, "Member 'ABP_TKable_Laser_C::Yaw' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, LaserMaterial) == 0x000360, "Member 'ABP_TKable_Laser_C::LaserMaterial' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, ProjectorColor) == 0x000368, "Member 'ABP_TKable_Laser_C::ProjectorColor' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, OnByDefault) == 0x000378, "Member 'ABP_TKable_Laser_C::OnByDefault' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, TestMode) == 0x000379, "Member 'ABP_TKable_Laser_C::TestMode' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, SecondHalf) == 0x00037A, "Member 'ABP_TKable_Laser_C::SecondHalf' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, IsOn) == 0x00037B, "Member 'ABP_TKable_Laser_C::IsOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, IsShowActive) == 0x00037C, "Member 'ABP_TKable_Laser_C::IsShowActive' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, LaserBeam) == 0x000380, "Member 'ABP_TKable_Laser_C::LaserBeam' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, AkEventBreak) == 0x000388, "Member 'ABP_TKable_Laser_C::AkEventBreak' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKable_Laser_C, Trigger_Objective_When_Broken) == 0x000390, "Member 'ABP_TKable_Laser_C::Trigger_Objective_When_Broken' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GOGLoginCallbackProxy_Login \ +static_assert(alignof(GOGLoginCallbackProxy_Login) == 0x000008, "Wrong alignment on GOGLoginCallbackProxy_Login"); \ +static_assert(sizeof(GOGLoginCallbackProxy_Login) == 0x000048, "Wrong size on GOGLoginCallbackProxy_Login"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, WorldContextObject) == 0x000000, "Member 'GOGLoginCallbackProxy_Login::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, PlayerController) == 0x000008, "Member 'GOGLoginCallbackProxy_Login::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, AuthType) == 0x000010, "Member 'GOGLoginCallbackProxy_Login::AuthType' has a wrong offset!"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, UserId) == 0x000020, "Member 'GOGLoginCallbackProxy_Login::UserId' has a wrong offset!"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, UserToken) == 0x000030, "Member 'GOGLoginCallbackProxy_Login::UserToken' has a wrong offset!"); \ +static_assert(offsetof(GOGLoginCallbackProxy_Login, ReturnValue) == 0x000040, "Member 'GOGLoginCallbackProxy_Login::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGOGLoginCallbackProxy \ +static_assert(alignof(UGOGLoginCallbackProxy) == 0x000008, "Wrong alignment on UGOGLoginCallbackProxy"); \ +static_assert(sizeof(UGOGLoginCallbackProxy) == 0x0000A8, "Wrong size on UGOGLoginCallbackProxy"); \ +static_assert(offsetof(UGOGLoginCallbackProxy, OnSuccess) == 0x000030, "Member 'UGOGLoginCallbackProxy::OnSuccess' has a wrong offset!"); \ +static_assert(offsetof(UGOGLoginCallbackProxy, OnFailure) == 0x000040, "Member 'UGOGLoginCallbackProxy::OnFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNetConnectionGOG \ +static_assert(alignof(UNetConnectionGOG) == 0x000008, "Wrong alignment on UNetConnectionGOG"); \ +static_assert(sizeof(UNetConnectionGOG) == 0x001E20, "Wrong size on UNetConnectionGOG"); \ + +#define DUMPER7_ASSERTS_UNetDriverGOG \ +static_assert(alignof(UNetDriverGOG) == 0x000008, "Wrong alignment on UNetDriverGOG"); \ +static_assert(sizeof(UNetDriverGOG) == 0x001808, "Wrong size on UNetDriverGOG"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup \ +static_assert(alignof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup) == 0x000008, "Wrong alignment on GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup"); \ +static_assert(sizeof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup) == 0x000030, "Wrong size on GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup, EntryPoint) == 0x000000, "Member 'GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000004, "Member 'GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Heavy_Followup_C_ExecuteUbergraph_GA_PlayerPunch_Heavy_Followup::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Heavy_Followup_C \ +static_assert(alignof(UGA_PlayerPunch_Heavy_Followup_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Heavy_Followup_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Heavy_Followup_C) == 0x000950, "Wrong size on UGA_PlayerPunch_Heavy_Followup_C"); \ +static_assert(offsetof(UGA_PlayerPunch_Heavy_Followup_C, UberGraphFrame_GA_PlayerPunch_Heavy_Followup_C) == 0x000948, "Member 'UGA_PlayerPunch_Heavy_Followup_C::UberGraphFrame_GA_PlayerPunch_Heavy_Followup_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnalyticsEventAttr \ +static_assert(alignof(FAnalyticsEventAttr) == 0x000008, "Wrong alignment on FAnalyticsEventAttr"); \ +static_assert(sizeof(FAnalyticsEventAttr) == 0x000020, "Wrong size on FAnalyticsEventAttr"); \ +static_assert(offsetof(FAnalyticsEventAttr, Name) == 0x000000, "Member 'FAnalyticsEventAttr::Name' has a wrong offset!"); \ +static_assert(offsetof(FAnalyticsEventAttr, Value) == 0x000010, "Member 'FAnalyticsEventAttr::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_GetSessionId \ +static_assert(alignof(AnalyticsBlueprintLibrary_GetSessionId) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_GetSessionId"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_GetSessionId) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_GetSessionId"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_GetSessionId, ReturnValue) == 0x000000, "Member 'AnalyticsBlueprintLibrary_GetSessionId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_GetUserId \ +static_assert(alignof(AnalyticsBlueprintLibrary_GetUserId) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_GetUserId"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_GetUserId) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_GetUserId"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_GetUserId, ReturnValue) == 0x000000, "Member 'AnalyticsBlueprintLibrary_GetUserId::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_MakeEventAttribute \ +static_assert(alignof(AnalyticsBlueprintLibrary_MakeEventAttribute) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_MakeEventAttribute"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_MakeEventAttribute) == 0x000040, "Wrong size on AnalyticsBlueprintLibrary_MakeEventAttribute"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_MakeEventAttribute, AttributeName) == 0x000000, "Member 'AnalyticsBlueprintLibrary_MakeEventAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_MakeEventAttribute, AttributeValue) == 0x000010, "Member 'AnalyticsBlueprintLibrary_MakeEventAttribute::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_MakeEventAttribute, ReturnValue) == 0x000020, "Member 'AnalyticsBlueprintLibrary_MakeEventAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordCurrencyGiven \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordCurrencyGiven) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordCurrencyGiven"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordCurrencyGiven) == 0x000018, "Wrong size on AnalyticsBlueprintLibrary_RecordCurrencyGiven"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyGiven, GameCurrencyType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyGiven::GameCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyGiven, GameCurrencyAmount) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyGiven::GameCurrencyAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes) == 0x000028, "Wrong size on AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes, GameCurrencyType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes::GameCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes, GameCurrencyAmount) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes::GameCurrencyAmount' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes, Attributes) == 0x000018, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyGivenWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordCurrencyPurchase \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordCurrencyPurchase"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase) == 0x000040, "Wrong size on AnalyticsBlueprintLibrary_RecordCurrencyPurchase"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase, GameCurrencyType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyPurchase::GameCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase, GameCurrencyAmount) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyPurchase::GameCurrencyAmount' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase, RealCurrencyType) == 0x000018, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyPurchase::RealCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase, RealMoneyCost) == 0x000028, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyPurchase::RealMoneyCost' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordCurrencyPurchase, PaymentProvider) == 0x000030, "Member 'AnalyticsBlueprintLibrary_RecordCurrencyPurchase::PaymentProvider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordError \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordError) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordError"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordError) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_RecordError"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordError, Error) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordError::Error' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordErrorWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordErrorWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordErrorWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordErrorWithAttributes) == 0x000020, "Wrong size on AnalyticsBlueprintLibrary_RecordErrorWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordErrorWithAttributes, Error) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordErrorWithAttributes::Error' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordErrorWithAttributes, Attributes) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordErrorWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordEvent \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordEvent) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordEvent"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordEvent) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_RecordEvent"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEvent, EventName) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordEvent::EventName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordEventWithAttribute \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordEventWithAttribute) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordEventWithAttribute"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordEventWithAttribute) == 0x000030, "Wrong size on AnalyticsBlueprintLibrary_RecordEventWithAttribute"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEventWithAttribute, EventName) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordEventWithAttribute::EventName' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEventWithAttribute, AttributeName) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordEventWithAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEventWithAttribute, AttributeValue) == 0x000020, "Member 'AnalyticsBlueprintLibrary_RecordEventWithAttribute::AttributeValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordEventWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordEventWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordEventWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordEventWithAttributes) == 0x000020, "Wrong size on AnalyticsBlueprintLibrary_RecordEventWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEventWithAttributes, EventName) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordEventWithAttributes::EventName' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordEventWithAttributes, Attributes) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordEventWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordItemPurchase \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordItemPurchase) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordItemPurchase"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordItemPurchase) == 0x000028, "Wrong size on AnalyticsBlueprintLibrary_RecordItemPurchase"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordItemPurchase, ItemId) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordItemPurchase::ItemId' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordItemPurchase, Currency) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordItemPurchase::Currency' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordItemPurchase, PerItemCost) == 0x000020, "Member 'AnalyticsBlueprintLibrary_RecordItemPurchase::PerItemCost' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordItemPurchase, ItemQuantity) == 0x000024, "Member 'AnalyticsBlueprintLibrary_RecordItemPurchase::ItemQuantity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordProgress \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordProgress) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordProgress"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordProgress) == 0x000020, "Wrong size on AnalyticsBlueprintLibrary_RecordProgress"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgress, ProgressType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordProgress::ProgressType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgress, ProgressName) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordProgress::ProgressName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordProgressWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordProgressWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordProgressWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordProgressWithAttributes) == 0x000030, "Wrong size on AnalyticsBlueprintLibrary_RecordProgressWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithAttributes, ProgressType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithAttributes::ProgressType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithAttributes, ProgressName) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithAttributes::ProgressName' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithAttributes, Attributes) == 0x000020, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes) == 0x000030, "Wrong size on AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes, ProgressType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes::ProgressType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes, ProgressNames) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes::ProgressNames' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes, Attributes) == 0x000020, "Member 'AnalyticsBlueprintLibrary_RecordProgressWithFullHierarchyAndAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase) == 0x000018, "Wrong size on AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase, GameCurrencyType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase::GameCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase, GameCurrencyAmount) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchase::GameCurrencyAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes) == 0x000028, "Wrong size on AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes, GameCurrencyType) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes::GameCurrencyType' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes, GameCurrencyAmount) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes::GameCurrencyAmount' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes, Attributes) == 0x000018, "Member 'AnalyticsBlueprintLibrary_RecordSimpleCurrencyPurchaseWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordSimpleItemPurchase \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchase) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordSimpleItemPurchase"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchase) == 0x000018, "Wrong size on AnalyticsBlueprintLibrary_RecordSimpleItemPurchase"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchase, ItemId) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordSimpleItemPurchase::ItemId' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchase, ItemQuantity) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordSimpleItemPurchase::ItemQuantity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes) == 0x000028, "Wrong size on AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes, ItemId) == 0x000000, "Member 'AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes::ItemId' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes, ItemQuantity) == 0x000010, "Member 'AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes::ItemQuantity' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes, Attributes) == 0x000018, "Member 'AnalyticsBlueprintLibrary_RecordSimpleItemPurchaseWithAttributes::Attributes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetAge \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetAge) == 0x000004, "Wrong alignment on AnalyticsBlueprintLibrary_SetAge"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetAge) == 0x000004, "Wrong size on AnalyticsBlueprintLibrary_SetAge"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetAge, Age) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetAge::Age' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetBuildInfo \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetBuildInfo) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_SetBuildInfo"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetBuildInfo) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_SetBuildInfo"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetBuildInfo, BuildInfo) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetBuildInfo::BuildInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetGender \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetGender) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_SetGender"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetGender) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_SetGender"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetGender, Gender) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetGender::Gender' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetLocation \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetLocation) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_SetLocation"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetLocation) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_SetLocation"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetLocation, Location) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetSessionId \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetSessionId) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_SetSessionId"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetSessionId) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_SetSessionId"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetSessionId, SessionId) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetSessionId::SessionId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_SetUserId \ +static_assert(alignof(AnalyticsBlueprintLibrary_SetUserId) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_SetUserId"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_SetUserId) == 0x000010, "Wrong size on AnalyticsBlueprintLibrary_SetUserId"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_SetUserId, UserId) == 0x000000, "Member 'AnalyticsBlueprintLibrary_SetUserId::UserId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_StartSession \ +static_assert(alignof(AnalyticsBlueprintLibrary_StartSession) == 0x000001, "Wrong alignment on AnalyticsBlueprintLibrary_StartSession"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_StartSession) == 0x000001, "Wrong size on AnalyticsBlueprintLibrary_StartSession"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_StartSession, ReturnValue) == 0x000000, "Member 'AnalyticsBlueprintLibrary_StartSession::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnalyticsBlueprintLibrary_StartSessionWithAttributes \ +static_assert(alignof(AnalyticsBlueprintLibrary_StartSessionWithAttributes) == 0x000008, "Wrong alignment on AnalyticsBlueprintLibrary_StartSessionWithAttributes"); \ +static_assert(sizeof(AnalyticsBlueprintLibrary_StartSessionWithAttributes) == 0x000018, "Wrong size on AnalyticsBlueprintLibrary_StartSessionWithAttributes"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_StartSessionWithAttributes, Attributes) == 0x000000, "Member 'AnalyticsBlueprintLibrary_StartSessionWithAttributes::Attributes' has a wrong offset!"); \ +static_assert(offsetof(AnalyticsBlueprintLibrary_StartSessionWithAttributes, ReturnValue) == 0x000010, "Member 'AnalyticsBlueprintLibrary_StartSessionWithAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnalyticsBlueprintLibrary \ +static_assert(alignof(UAnalyticsBlueprintLibrary) == 0x000008, "Wrong alignment on UAnalyticsBlueprintLibrary"); \ +static_assert(sizeof(UAnalyticsBlueprintLibrary) == 0x000028, "Wrong size on UAnalyticsBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_FHoudiniCurveOutputProperties \ +static_assert(alignof(FHoudiniCurveOutputProperties) == 0x000004, "Wrong alignment on FHoudiniCurveOutputProperties"); \ +static_assert(sizeof(FHoudiniCurveOutputProperties) == 0x00000C, "Wrong size on FHoudiniCurveOutputProperties"); \ +static_assert(offsetof(FHoudiniCurveOutputProperties, CurveOutputType) == 0x000000, "Member 'FHoudiniCurveOutputProperties::CurveOutputType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniCurveOutputProperties, NumPoints) == 0x000004, "Member 'FHoudiniCurveOutputProperties::NumPoints' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniCurveOutputProperties, bClosed) == 0x000008, "Member 'FHoudiniCurveOutputProperties::bClosed' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniCurveOutputProperties, CurveType) == 0x000009, "Member 'FHoudiniCurveOutputProperties::CurveType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniCurveOutputProperties, CurveMethod) == 0x00000A, "Member 'FHoudiniCurveOutputProperties::CurveMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniDataLayer \ +static_assert(alignof(FHoudiniDataLayer) == 0x000008, "Wrong alignment on FHoudiniDataLayer"); \ +static_assert(sizeof(FHoudiniDataLayer) == 0x000018, "Wrong size on FHoudiniDataLayer"); \ +static_assert(offsetof(FHoudiniDataLayer, Name) == 0x000000, "Member 'FHoudiniDataLayer::Name' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniDataLayer, bCreateIfNeeded) == 0x000010, "Member 'FHoudiniDataLayer::bCreateIfNeeded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniHLODLayer \ +static_assert(alignof(FHoudiniHLODLayer) == 0x000008, "Wrong alignment on FHoudiniHLODLayer"); \ +static_assert(sizeof(FHoudiniHLODLayer) == 0x000010, "Wrong size on FHoudiniHLODLayer"); \ +static_assert(offsetof(FHoudiniHLODLayer, Name) == 0x000000, "Member 'FHoudiniHLODLayer::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniLevelInstanceParams \ +static_assert(alignof(FHoudiniLevelInstanceParams) == 0x000008, "Wrong alignment on FHoudiniLevelInstanceParams"); \ +static_assert(sizeof(FHoudiniLevelInstanceParams) == 0x000018, "Wrong size on FHoudiniLevelInstanceParams"); \ +static_assert(offsetof(FHoudiniLevelInstanceParams, Type) == 0x000000, "Member 'FHoudiniLevelInstanceParams::Type' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniLevelInstanceParams, OutputName) == 0x000008, "Member 'FHoudiniLevelInstanceParams::OutputName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniOutputObject \ +static_assert(alignof(FHoudiniOutputObject) == 0x000008, "Wrong alignment on FHoudiniOutputObject"); \ +static_assert(sizeof(FHoudiniOutputObject) == 0x000168, "Wrong size on FHoudiniOutputObject"); \ +static_assert(offsetof(FHoudiniOutputObject, OutputObject) == 0x000000, "Member 'FHoudiniOutputObject::OutputObject' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, OutputComponents) == 0x000008, "Member 'FHoudiniOutputObject::OutputComponents' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, OutputActors) == 0x000018, "Member 'FHoudiniOutputObject::OutputActors' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, OutputComponent) == 0x000028, "Member 'FHoudiniOutputObject::OutputComponent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, ProxyObject) == 0x000030, "Member 'FHoudiniOutputObject::ProxyObject' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, ProxyComponent) == 0x000038, "Member 'FHoudiniOutputObject::ProxyComponent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, bProxyIsCurrent) == 0x000040, "Member 'FHoudiniOutputObject::bProxyIsCurrent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, bIsImplicit) == 0x000041, "Member 'FHoudiniOutputObject::bIsImplicit' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, bIsGeometryCollectionPiece) == 0x000042, "Member 'FHoudiniOutputObject::bIsGeometryCollectionPiece' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, GeometryCollectionPieceName) == 0x000048, "Member 'FHoudiniOutputObject::GeometryCollectionPieceName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, BakeName) == 0x000058, "Member 'FHoudiniOutputObject::BakeName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, CurveOutputProperty) == 0x000068, "Member 'FHoudiniOutputObject::CurveOutputProperty' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, CachedAttributes) == 0x000078, "Member 'FHoudiniOutputObject::CachedAttributes' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, CachedTokens) == 0x0000C8, "Member 'FHoudiniOutputObject::CachedTokens' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, UserFoliageType) == 0x000118, "Member 'FHoudiniOutputObject::UserFoliageType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, FoliageType) == 0x000120, "Member 'FHoudiniOutputObject::FoliageType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, World) == 0x000128, "Member 'FHoudiniOutputObject::World' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, DataLayers) == 0x000130, "Member 'FHoudiniOutputObject::DataLayers' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, HLODLayers) == 0x000140, "Member 'FHoudiniOutputObject::HLODLayers' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObject, LevelInstanceParams) == 0x000150, "Member 'FHoudiniOutputObject::LevelInstanceParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniAssetBlueprintOutput \ +static_assert(alignof(FHoudiniAssetBlueprintOutput) == 0x000008, "Wrong alignment on FHoudiniAssetBlueprintOutput"); \ +static_assert(sizeof(FHoudiniAssetBlueprintOutput) == 0x000170, "Wrong size on FHoudiniAssetBlueprintOutput"); \ +static_assert(offsetof(FHoudiniAssetBlueprintOutput, OutputIndex) == 0x000000, "Member 'FHoudiniAssetBlueprintOutput::OutputIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintOutput, OutputObject) == 0x000008, "Member 'FHoudiniAssetBlueprintOutput::OutputObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniOutputObjectIdentifier \ +static_assert(alignof(FHoudiniOutputObjectIdentifier) == 0x000008, "Wrong alignment on FHoudiniOutputObjectIdentifier"); \ +static_assert(sizeof(FHoudiniOutputObjectIdentifier) == 0x000040, "Wrong size on FHoudiniOutputObjectIdentifier"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, ObjectId) == 0x000000, "Member 'FHoudiniOutputObjectIdentifier::ObjectId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, GeoId) == 0x000004, "Member 'FHoudiniOutputObjectIdentifier::GeoId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, PartId) == 0x000008, "Member 'FHoudiniOutputObjectIdentifier::PartId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, SplitIdentifier) == 0x000010, "Member 'FHoudiniOutputObjectIdentifier::SplitIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, PartName) == 0x000020, "Member 'FHoudiniOutputObjectIdentifier::PartName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, PrimitiveIndex) == 0x000030, "Member 'FHoudiniOutputObjectIdentifier::PrimitiveIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniOutputObjectIdentifier, PointIndex) == 0x000034, "Member 'FHoudiniOutputObjectIdentifier::PointIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniAssetBlueprintInstanceData \ +static_assert(alignof(FHoudiniAssetBlueprintInstanceData) == 0x000008, "Wrong alignment on FHoudiniAssetBlueprintInstanceData"); \ +static_assert(sizeof(FHoudiniAssetBlueprintInstanceData) == 0x000120, "Wrong size on FHoudiniAssetBlueprintInstanceData"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, HoudiniAsset) == 0x000068, "Member 'FHoudiniAssetBlueprintInstanceData::HoudiniAsset' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, AssetId) == 0x000070, "Member 'FHoudiniAssetBlueprintInstanceData::AssetId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, AssetState) == 0x000074, "Member 'FHoudiniAssetBlueprintInstanceData::AssetState' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, SubAssetIndex) == 0x000078, "Member 'FHoudiniAssetBlueprintInstanceData::SubAssetIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, AssetCookCount) == 0x00007C, "Member 'FHoudiniAssetBlueprintInstanceData::AssetCookCount' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bHasBeenLoaded) == 0x000080, "Member 'FHoudiniAssetBlueprintInstanceData::bHasBeenLoaded' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bHasBeenDuplicated) == 0x000081, "Member 'FHoudiniAssetBlueprintInstanceData::bHasBeenDuplicated' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bPendingDelete) == 0x000082, "Member 'FHoudiniAssetBlueprintInstanceData::bPendingDelete' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bRecookRequested) == 0x000083, "Member 'FHoudiniAssetBlueprintInstanceData::bRecookRequested' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bRebuildRequested) == 0x000084, "Member 'FHoudiniAssetBlueprintInstanceData::bRebuildRequested' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bEnableCooking) == 0x000085, "Member 'FHoudiniAssetBlueprintInstanceData::bEnableCooking' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bForceNeedUpdate) == 0x000086, "Member 'FHoudiniAssetBlueprintInstanceData::bForceNeedUpdate' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bLastCookSuccess) == 0x000087, "Member 'FHoudiniAssetBlueprintInstanceData::bLastCookSuccess' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, ComponentGUID) == 0x000088, "Member 'FHoudiniAssetBlueprintInstanceData::ComponentGUID' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, HapiGUID) == 0x000098, "Member 'FHoudiniAssetBlueprintInstanceData::HapiGUID' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, bRegisteredComponentTemplate) == 0x0000A8, "Member 'FHoudiniAssetBlueprintInstanceData::bRegisteredComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, SourceName) == 0x0000B0, "Member 'FHoudiniAssetBlueprintInstanceData::SourceName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, Outputs) == 0x0000C0, "Member 'FHoudiniAssetBlueprintInstanceData::Outputs' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniAssetBlueprintInstanceData, Inputs) == 0x000110, "Member 'FHoudiniAssetBlueprintInstanceData::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniGenericAttributeChangedProperty \ +static_assert(alignof(FHoudiniGenericAttributeChangedProperty) == 0x000008, "Wrong alignment on FHoudiniGenericAttributeChangedProperty"); \ +static_assert(sizeof(FHoudiniGenericAttributeChangedProperty) == 0x000098, "Wrong size on FHoudiniGenericAttributeChangedProperty"); \ +static_assert(offsetof(FHoudiniGenericAttributeChangedProperty, Object) == 0x000000, "Member 'FHoudiniGenericAttributeChangedProperty::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniGenericAttribute \ +static_assert(alignof(FHoudiniGenericAttribute) == 0x000008, "Wrong alignment on FHoudiniGenericAttribute"); \ +static_assert(sizeof(FHoudiniGenericAttribute) == 0x000050, "Wrong size on FHoudiniGenericAttribute"); \ +static_assert(offsetof(FHoudiniGenericAttribute, AttributeName) == 0x000000, "Member 'FHoudiniGenericAttribute::AttributeName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, AttributeType) == 0x000010, "Member 'FHoudiniGenericAttribute::AttributeType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, AttributeOwner) == 0x000011, "Member 'FHoudiniGenericAttribute::AttributeOwner' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, AttributeCount) == 0x000014, "Member 'FHoudiniGenericAttribute::AttributeCount' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, AttributeTupleSize) == 0x000018, "Member 'FHoudiniGenericAttribute::AttributeTupleSize' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, DoubleValues) == 0x000020, "Member 'FHoudiniGenericAttribute::DoubleValues' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, IntValues) == 0x000030, "Member 'FHoudiniGenericAttribute::IntValues' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGenericAttribute, StringValues) == 0x000040, "Member 'FHoudiniGenericAttribute::StringValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniObjectInfo \ +static_assert(alignof(FHoudiniObjectInfo) == 0x000008, "Wrong alignment on FHoudiniObjectInfo"); \ +static_assert(sizeof(FHoudiniObjectInfo) == 0x000028, "Wrong size on FHoudiniObjectInfo"); \ + +#define DUMPER7_ASSERTS_FHoudiniGeoInfo \ +static_assert(alignof(FHoudiniGeoInfo) == 0x000008, "Wrong alignment on FHoudiniGeoInfo"); \ +static_assert(sizeof(FHoudiniGeoInfo) == 0x000030, "Wrong size on FHoudiniGeoInfo"); \ + +#define DUMPER7_ASSERTS_FHoudiniPartInfo \ +static_assert(alignof(FHoudiniPartInfo) == 0x000008, "Wrong alignment on FHoudiniPartInfo"); \ +static_assert(sizeof(FHoudiniPartInfo) == 0x000048, "Wrong size on FHoudiniPartInfo"); \ + +#define DUMPER7_ASSERTS_FHoudiniVolumeInfo \ +static_assert(alignof(FHoudiniVolumeInfo) == 0x000010, "Wrong alignment on FHoudiniVolumeInfo"); \ +static_assert(sizeof(FHoudiniVolumeInfo) == 0x0000B0, "Wrong size on FHoudiniVolumeInfo"); \ + +#define DUMPER7_ASSERTS_FHoudiniCurveInfo \ +static_assert(alignof(FHoudiniCurveInfo) == 0x000004, "Wrong alignment on FHoudiniCurveInfo"); \ +static_assert(sizeof(FHoudiniCurveInfo) == 0x00001C, "Wrong size on FHoudiniCurveInfo"); \ + +#define DUMPER7_ASSERTS_FHoudiniMeshSocket \ +static_assert(alignof(FHoudiniMeshSocket) == 0x000010, "Wrong alignment on FHoudiniMeshSocket"); \ +static_assert(sizeof(FHoudiniMeshSocket) == 0x000090, "Wrong size on FHoudiniMeshSocket"); \ + +#define DUMPER7_ASSERTS_FHoudiniGeoPartObject \ +static_assert(alignof(FHoudiniGeoPartObject) == 0x000010, "Wrong alignment on FHoudiniGeoPartObject"); \ +static_assert(sizeof(FHoudiniGeoPartObject) == 0x000290, "Wrong size on FHoudiniGeoPartObject"); \ +static_assert(offsetof(FHoudiniGeoPartObject, AssetId) == 0x000000, "Member 'FHoudiniGeoPartObject::AssetId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, AssetName) == 0x000008, "Member 'FHoudiniGeoPartObject::AssetName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, ObjectId) == 0x000018, "Member 'FHoudiniGeoPartObject::ObjectId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, ObjectName) == 0x000020, "Member 'FHoudiniGeoPartObject::ObjectName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, GeoId) == 0x000030, "Member 'FHoudiniGeoPartObject::GeoId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, PartId) == 0x000034, "Member 'FHoudiniGeoPartObject::PartId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, PartName) == 0x000038, "Member 'FHoudiniGeoPartObject::PartName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasCustomPartName) == 0x000048, "Member 'FHoudiniGeoPartObject::bHasCustomPartName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, SplitGroups) == 0x000050, "Member 'FHoudiniGeoPartObject::SplitGroups' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, TransformMatrix) == 0x000060, "Member 'FHoudiniGeoPartObject::TransformMatrix' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, NodePath) == 0x0000C0, "Member 'FHoudiniGeoPartObject::NodePath' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, Type) == 0x0000D0, "Member 'FHoudiniGeoPartObject::Type' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, InstancerType) == 0x0000D1, "Member 'FHoudiniGeoPartObject::InstancerType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, VolumeName) == 0x0000D8, "Member 'FHoudiniGeoPartObject::VolumeName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasEditLayers) == 0x0000E8, "Member 'FHoudiniGeoPartObject::bHasEditLayers' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, VolumeLayerName) == 0x0000F0, "Member 'FHoudiniGeoPartObject::VolumeLayerName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, VolumeTileIndex) == 0x000100, "Member 'FHoudiniGeoPartObject::VolumeTileIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bIsVisible) == 0x000104, "Member 'FHoudiniGeoPartObject::bIsVisible' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bIsEditable) == 0x000105, "Member 'FHoudiniGeoPartObject::bIsEditable' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bIsTemplated) == 0x000106, "Member 'FHoudiniGeoPartObject::bIsTemplated' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bIsInstanced) == 0x000107, "Member 'FHoudiniGeoPartObject::bIsInstanced' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasGeoChanged) == 0x000108, "Member 'FHoudiniGeoPartObject::bHasGeoChanged' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasPartChanged) == 0x000109, "Member 'FHoudiniGeoPartObject::bHasPartChanged' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasTransformChanged) == 0x00010A, "Member 'FHoudiniGeoPartObject::bHasTransformChanged' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, bHasMaterialsChanged) == 0x00010B, "Member 'FHoudiniGeoPartObject::bHasMaterialsChanged' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniGeoPartObject, AllMeshSockets) == 0x000280, "Member 'FHoudiniGeoPartObject::AllMeshSockets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniBrushInfo \ +static_assert(alignof(FHoudiniBrushInfo) == 0x000010, "Wrong alignment on FHoudiniBrushInfo"); \ +static_assert(sizeof(FHoudiniBrushInfo) == 0x0000B0, "Wrong size on FHoudiniBrushInfo"); \ +static_assert(offsetof(FHoudiniBrushInfo, BrushActor) == 0x000000, "Member 'FHoudiniBrushInfo::BrushActor' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBrushInfo, CachedTransform) == 0x000010, "Member 'FHoudiniBrushInfo::CachedTransform' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBrushInfo, CachedOrigin) == 0x000070, "Member 'FHoudiniBrushInfo::CachedOrigin' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBrushInfo, CachedExtent) == 0x000088, "Member 'FHoudiniBrushInfo::CachedExtent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBrushInfo, CachedBrushType) == 0x0000A0, "Member 'FHoudiniBrushInfo::CachedBrushType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBrushInfo, CachedSurfaceHash) == 0x0000A8, "Member 'FHoudiniBrushInfo::CachedSurfaceHash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniLandscapeSplineControlPointData \ +static_assert(alignof(FHoudiniLandscapeSplineControlPointData) == 0x000008, "Wrong alignment on FHoudiniLandscapeSplineControlPointData"); \ +static_assert(sizeof(FHoudiniLandscapeSplineControlPointData) == 0x000038, "Wrong size on FHoudiniLandscapeSplineControlPointData"); \ +static_assert(offsetof(FHoudiniLandscapeSplineControlPointData, Location) == 0x000000, "Member 'FHoudiniLandscapeSplineControlPointData::Location' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniLandscapeSplineControlPointData, Rotation) == 0x000018, "Member 'FHoudiniLandscapeSplineControlPointData::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniLandscapeSplineControlPointData, Width) == 0x000030, "Member 'FHoudiniLandscapeSplineControlPointData::Width' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniLandscapeSplineSegmentData \ +static_assert(alignof(FHoudiniLandscapeSplineSegmentData) == 0x000001, "Wrong alignment on FHoudiniLandscapeSplineSegmentData"); \ +static_assert(sizeof(FHoudiniLandscapeSplineSegmentData) == 0x000001, "Wrong size on FHoudiniLandscapeSplineSegmentData"); \ + +#define DUMPER7_ASSERTS_FHoudiniInputObjectSettings \ +static_assert(alignof(FHoudiniInputObjectSettings) == 0x000004, "Wrong alignment on FHoudiniInputObjectSettings"); \ +static_assert(sizeof(FHoudiniInputObjectSettings) == 0x000020, "Wrong size on FHoudiniInputObjectSettings"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, KeepWorldTransform) == 0x000000, "Member 'FHoudiniInputObjectSettings::KeepWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bImportAsReference) == 0x000001, "Member 'FHoudiniInputObjectSettings::bImportAsReference' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bImportAsReferenceRotScaleEnabled) == 0x000002, "Member 'FHoudiniInputObjectSettings::bImportAsReferenceRotScaleEnabled' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bImportAsReferenceBboxEnabled) == 0x000003, "Member 'FHoudiniInputObjectSettings::bImportAsReferenceBboxEnabled' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bImportAsReferenceMaterialEnabled) == 0x000004, "Member 'FHoudiniInputObjectSettings::bImportAsReferenceMaterialEnabled' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bExportLODs) == 0x000005, "Member 'FHoudiniInputObjectSettings::bExportLODs' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bExportSockets) == 0x000006, "Member 'FHoudiniInputObjectSettings::bExportSockets' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bPreferNaniteFallbackMesh) == 0x000007, "Member 'FHoudiniInputObjectSettings::bPreferNaniteFallbackMesh' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bExportColliders) == 0x000008, "Member 'FHoudiniInputObjectSettings::bExportColliders' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bExportMaterialParameters) == 0x000009, "Member 'FHoudiniInputObjectSettings::bExportMaterialParameters' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bAddRotAndScaleAttributesOnCurves) == 0x00000A, "Member 'FHoudiniInputObjectSettings::bAddRotAndScaleAttributesOnCurves' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bUseLegacyInputCurves) == 0x00000B, "Member 'FHoudiniInputObjectSettings::bUseLegacyInputCurves' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, UnrealSplineResolution) == 0x00000C, "Member 'FHoudiniInputObjectSettings::UnrealSplineResolution' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, LandscapeExportType) == 0x000010, "Member 'FHoudiniInputObjectSettings::LandscapeExportType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeExportSelectionOnly) == 0x000011, "Member 'FHoudiniInputObjectSettings::bLandscapeExportSelectionOnly' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeAutoSelectComponent) == 0x000012, "Member 'FHoudiniInputObjectSettings::bLandscapeAutoSelectComponent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeExportMaterials) == 0x000013, "Member 'FHoudiniInputObjectSettings::bLandscapeExportMaterials' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeExportLighting) == 0x000014, "Member 'FHoudiniInputObjectSettings::bLandscapeExportLighting' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeExportNormalizedUVs) == 0x000015, "Member 'FHoudiniInputObjectSettings::bLandscapeExportNormalizedUVs' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeExportTileUVs) == 0x000016, "Member 'FHoudiniInputObjectSettings::bLandscapeExportTileUVs' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeAutoSelectSplines) == 0x000017, "Member 'FHoudiniInputObjectSettings::bLandscapeAutoSelectSplines' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeSplinesExportControlPoints) == 0x000018, "Member 'FHoudiniInputObjectSettings::bLandscapeSplinesExportControlPoints' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeSplinesExportLeftRightCurves) == 0x000019, "Member 'FHoudiniInputObjectSettings::bLandscapeSplinesExportLeftRightCurves' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bLandscapeSplinesExportSplineMeshComponents) == 0x00001A, "Member 'FHoudiniInputObjectSettings::bLandscapeSplinesExportSplineMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bMergeSplineMeshComponents) == 0x00001B, "Member 'FHoudiniInputObjectSettings::bMergeSplineMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInputObjectSettings, bExportPerEditLayerData) == 0x00001C, "Member 'FHoudiniInputObjectSettings::bExportPerEditLayerData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniExtents \ +static_assert(alignof(FHoudiniExtents) == 0x000004, "Wrong alignment on FHoudiniExtents"); \ +static_assert(sizeof(FHoudiniExtents) == 0x000010, "Wrong size on FHoudiniExtents"); \ +static_assert(offsetof(FHoudiniExtents, Min) == 0x000000, "Member 'FHoudiniExtents::Min' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniExtents, Max) == 0x000008, "Member 'FHoudiniExtents::Max' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniClearedTargetLayer \ +static_assert(alignof(FHoudiniClearedTargetLayer) == 0x000008, "Wrong alignment on FHoudiniClearedTargetLayer"); \ +static_assert(sizeof(FHoudiniClearedTargetLayer) == 0x000050, "Wrong size on FHoudiniClearedTargetLayer"); \ +static_assert(offsetof(FHoudiniClearedTargetLayer, TargetLayers) == 0x000000, "Member 'FHoudiniClearedTargetLayer::TargetLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniClearedEditLayers \ +static_assert(alignof(FHoudiniClearedEditLayers) == 0x000008, "Wrong alignment on FHoudiniClearedEditLayers"); \ +static_assert(sizeof(FHoudiniClearedEditLayers) == 0x000050, "Wrong size on FHoudiniClearedEditLayers"); \ +static_assert(offsetof(FHoudiniClearedEditLayers, EditLayers) == 0x000000, "Member 'FHoudiniClearedEditLayers::EditLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniBakedOutputObjectIdentifier \ +static_assert(alignof(FHoudiniBakedOutputObjectIdentifier) == 0x000008, "Wrong alignment on FHoudiniBakedOutputObjectIdentifier"); \ +static_assert(sizeof(FHoudiniBakedOutputObjectIdentifier) == 0x000018, "Wrong size on FHoudiniBakedOutputObjectIdentifier"); \ +static_assert(offsetof(FHoudiniBakedOutputObjectIdentifier, PartId) == 0x000000, "Member 'FHoudiniBakedOutputObjectIdentifier::PartId' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObjectIdentifier, SplitIdentifier) == 0x000008, "Member 'FHoudiniBakedOutputObjectIdentifier::SplitIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniInstancedOutput \ +static_assert(alignof(FHoudiniInstancedOutput) == 0x000008, "Wrong alignment on FHoudiniInstancedOutput"); \ +static_assert(sizeof(FHoudiniInstancedOutput) == 0x000088, "Wrong size on FHoudiniInstancedOutput"); \ +static_assert(offsetof(FHoudiniInstancedOutput, OriginalObject) == 0x000000, "Member 'FHoudiniInstancedOutput::OriginalObject' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, OriginalObjectIndex) == 0x000028, "Member 'FHoudiniInstancedOutput::OriginalObjectIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, OriginalTransforms) == 0x000030, "Member 'FHoudiniInstancedOutput::OriginalTransforms' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, VariationObjects) == 0x000040, "Member 'FHoudiniInstancedOutput::VariationObjects' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, VariationTransformOffsets) == 0x000050, "Member 'FHoudiniInstancedOutput::VariationTransformOffsets' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, TransformVariationIndices) == 0x000060, "Member 'FHoudiniInstancedOutput::TransformVariationIndices' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, OriginalInstanceIndices) == 0x000070, "Member 'FHoudiniInstancedOutput::OriginalInstanceIndices' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, bChanged) == 0x000080, "Member 'FHoudiniInstancedOutput::bChanged' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniInstancedOutput, bStale) == 0x000081, "Member 'FHoudiniInstancedOutput::bStale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniBakedOutputObject \ +static_assert(alignof(FHoudiniBakedOutputObject) == 0x000008, "Wrong alignment on FHoudiniBakedOutputObject"); \ +static_assert(sizeof(FHoudiniBakedOutputObject) == 0x0000F0, "Wrong size on FHoudiniBakedOutputObject"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, Actor) == 0x000000, "Member 'FHoudiniBakedOutputObject::Actor' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, Blueprint) == 0x000010, "Member 'FHoudiniBakedOutputObject::Blueprint' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, ActorBakeName) == 0x000020, "Member 'FHoudiniBakedOutputObject::ActorBakeName' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, BakedObject) == 0x000028, "Member 'FHoudiniBakedOutputObject::BakedObject' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, BakedComponent) == 0x000038, "Member 'FHoudiniBakedOutputObject::BakedComponent' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, InstancedActors) == 0x000048, "Member 'FHoudiniBakedOutputObject::InstancedActors' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, InstancedComponents) == 0x000058, "Member 'FHoudiniBakedOutputObject::InstancedComponents' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, LandscapeLayers) == 0x000068, "Member 'FHoudiniBakedOutputObject::LandscapeLayers' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, FoliageInstancePositions) == 0x0000B8, "Member 'FHoudiniBakedOutputObject::FoliageInstancePositions' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, FoliageType) == 0x0000C8, "Member 'FHoudiniBakedOutputObject::FoliageType' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, LevelInstanceActors) == 0x0000D0, "Member 'FHoudiniBakedOutputObject::LevelInstanceActors' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniBakedOutputObject, Landscape) == 0x0000E0, "Member 'FHoudiniBakedOutputObject::Landscape' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniBakedOutput \ +static_assert(alignof(FHoudiniBakedOutput) == 0x000008, "Wrong alignment on FHoudiniBakedOutput"); \ +static_assert(sizeof(FHoudiniBakedOutput) == 0x000050, "Wrong size on FHoudiniBakedOutput"); \ +static_assert(offsetof(FHoudiniBakedOutput, BakedOutputObjects) == 0x000000, "Member 'FHoudiniBakedOutput::BakedOutputObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOutputActorOwner \ +static_assert(alignof(FOutputActorOwner) == 0x000008, "Wrong alignment on FOutputActorOwner"); \ +static_assert(sizeof(FOutputActorOwner) == 0x000010, "Wrong size on FOutputActorOwner"); \ +static_assert(offsetof(FOutputActorOwner, OutputActor) == 0x000008, "Member 'FOutputActorOwner::OutputActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTOPWorkResultObject \ +static_assert(alignof(FTOPWorkResultObject) == 0x000008, "Wrong alignment on FTOPWorkResultObject"); \ +static_assert(sizeof(FTOPWorkResultObject) == 0x000058, "Wrong size on FTOPWorkResultObject"); \ +static_assert(offsetof(FTOPWorkResultObject, Name) == 0x000008, "Member 'FTOPWorkResultObject::Name' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, FilePath) == 0x000018, "Member 'FTOPWorkResultObject::FilePath' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, State) == 0x000028, "Member 'FTOPWorkResultObject::State' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, WorkItemResultInfoIndex) == 0x00002C, "Member 'FTOPWorkResultObject::WorkItemResultInfoIndex' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, ResultOutputs) == 0x000030, "Member 'FTOPWorkResultObject::ResultOutputs' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, bAutoBakedSinceLastLoad) == 0x000040, "Member 'FTOPWorkResultObject::bAutoBakedSinceLastLoad' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResultObject, OutputActorOwner) == 0x000048, "Member 'FTOPWorkResultObject::OutputActorOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTOPWorkResult \ +static_assert(alignof(FTOPWorkResult) == 0x000008, "Wrong alignment on FTOPWorkResult"); \ +static_assert(sizeof(FTOPWorkResult) == 0x000018, "Wrong size on FTOPWorkResult"); \ +static_assert(offsetof(FTOPWorkResult, WorkItemIndex) == 0x000000, "Member 'FTOPWorkResult::WorkItemIndex' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResult, WorkItemID) == 0x000004, "Member 'FTOPWorkResult::WorkItemID' has a wrong offset!"); \ +static_assert(offsetof(FTOPWorkResult, ResultObjects) == 0x000008, "Member 'FTOPWorkResult::ResultObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWorkItemTallyBase \ +static_assert(alignof(FWorkItemTallyBase) == 0x000008, "Wrong alignment on FWorkItemTallyBase"); \ +static_assert(sizeof(FWorkItemTallyBase) == 0x000008, "Wrong size on FWorkItemTallyBase"); \ + +#define DUMPER7_ASSERTS_FWorkItemTally \ +static_assert(alignof(FWorkItemTally) == 0x000008, "Wrong alignment on FWorkItemTally"); \ +static_assert(sizeof(FWorkItemTally) == 0x000238, "Wrong size on FWorkItemTally"); \ +static_assert(offsetof(FWorkItemTally, AllWorkItems) == 0x000008, "Member 'FWorkItemTally::AllWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, WaitingWorkItems) == 0x000058, "Member 'FWorkItemTally::WaitingWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, ScheduledWorkItems) == 0x0000A8, "Member 'FWorkItemTally::ScheduledWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, CookingWorkItems) == 0x0000F8, "Member 'FWorkItemTally::CookingWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, CookedWorkItems) == 0x000148, "Member 'FWorkItemTally::CookedWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, ErroredWorkItems) == 0x000198, "Member 'FWorkItemTally::ErroredWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FWorkItemTally, CookCancelledWorkItems) == 0x0001E8, "Member 'FWorkItemTally::CookCancelledWorkItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAggregatedWorkItemTally \ +static_assert(alignof(FAggregatedWorkItemTally) == 0x000008, "Wrong alignment on FAggregatedWorkItemTally"); \ +static_assert(sizeof(FAggregatedWorkItemTally) == 0x000028, "Wrong size on FAggregatedWorkItemTally"); \ +static_assert(offsetof(FAggregatedWorkItemTally, TotalWorkItems) == 0x000008, "Member 'FAggregatedWorkItemTally::TotalWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, WaitingWorkItems) == 0x00000C, "Member 'FAggregatedWorkItemTally::WaitingWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, ScheduledWorkItems) == 0x000010, "Member 'FAggregatedWorkItemTally::ScheduledWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, CookingWorkItems) == 0x000014, "Member 'FAggregatedWorkItemTally::CookingWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, CookedWorkItems) == 0x000018, "Member 'FAggregatedWorkItemTally::CookedWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, ErroredWorkItems) == 0x00001C, "Member 'FAggregatedWorkItemTally::ErroredWorkItems' has a wrong offset!"); \ +static_assert(offsetof(FAggregatedWorkItemTally, CookCancelledWorkItems) == 0x000020, "Member 'FAggregatedWorkItemTally::CookCancelledWorkItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniPDGWorkResultObjectBakedOutput \ +static_assert(alignof(FHoudiniPDGWorkResultObjectBakedOutput) == 0x000008, "Wrong alignment on FHoudiniPDGWorkResultObjectBakedOutput"); \ +static_assert(sizeof(FHoudiniPDGWorkResultObjectBakedOutput) == 0x000010, "Wrong size on FHoudiniPDGWorkResultObjectBakedOutput"); \ +static_assert(offsetof(FHoudiniPDGWorkResultObjectBakedOutput, BakedOutputs) == 0x000000, "Member 'FHoudiniPDGWorkResultObjectBakedOutput::BakedOutputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniStaticMeshGenerationProperties \ +static_assert(alignof(FHoudiniStaticMeshGenerationProperties) == 0x000008, "Wrong alignment on FHoudiniStaticMeshGenerationProperties"); \ +static_assert(sizeof(FHoudiniStaticMeshGenerationProperties) == 0x0001E0, "Wrong size on FHoudiniStaticMeshGenerationProperties"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedPhysMaterial) == 0x000008, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedPhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, DefaultBodyInstance) == 0x000010, "Member 'FHoudiniStaticMeshGenerationProperties::DefaultBodyInstance' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedCollisionTraceFlag) == 0x0001A0, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedCollisionTraceFlag' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedLightMapResolution) == 0x0001A4, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedLightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedWalkableSlopeOverride) == 0x0001A8, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedWalkableSlopeOverride' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedLightMapCoordinateIndex) == 0x0001B8, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedLightMapCoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedStreamingDistanceMultiplier) == 0x0001C0, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedStreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedFoliageDefaultSettings) == 0x0001C8, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedFoliageDefaultSettings' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniStaticMeshGenerationProperties, GeneratedAssetUserData) == 0x0001D0, "Member 'FHoudiniStaticMeshGenerationProperties::GeneratedAssetUserData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniSplineComponentInstanceData \ +static_assert(alignof(FHoudiniSplineComponentInstanceData) == 0x000008, "Wrong alignment on FHoudiniSplineComponentInstanceData"); \ +static_assert(sizeof(FHoudiniSplineComponentInstanceData) == 0x000098, "Wrong size on FHoudiniSplineComponentInstanceData"); \ +static_assert(offsetof(FHoudiniSplineComponentInstanceData, CurvePoints) == 0x000068, "Member 'FHoudiniSplineComponentInstanceData::CurvePoints' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniSplineComponentInstanceData, DisplayPoints) == 0x000078, "Member 'FHoudiniSplineComponentInstanceData::DisplayPoints' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniSplineComponentInstanceData, DisplayPointIndexDivider) == 0x000088, "Member 'FHoudiniSplineComponentInstanceData::DisplayPointIndexDivider' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAsset \ +static_assert(alignof(UHoudiniAsset) == 0x000008, "Wrong alignment on UHoudiniAsset"); \ +static_assert(sizeof(UHoudiniAsset) == 0x000050, "Wrong size on UHoudiniAsset"); \ +static_assert(offsetof(UHoudiniAsset, AssetFileName) == 0x000028, "Member 'UHoudiniAsset::AssetFileName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAsset, AssetBytes) == 0x000038, "Member 'UHoudiniAsset::AssetBytes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAsset, AssetBytesCount) == 0x000048, "Member 'UHoudiniAsset::AssetBytesCount' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAsset, bAssetLimitedCommercial) == 0x00004C, "Member 'UHoudiniAsset::bAssetLimitedCommercial' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAsset, bAssetNonCommercial) == 0x00004D, "Member 'UHoudiniAsset::bAssetNonCommercial' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAsset, bAssetExpanded) == 0x00004E, "Member 'UHoudiniAsset::bAssetExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniLandscapeTargetLayerOutput \ +static_assert(alignof(UHoudiniLandscapeTargetLayerOutput) == 0x000008, "Wrong alignment on UHoudiniLandscapeTargetLayerOutput"); \ +static_assert(sizeof(UHoudiniLandscapeTargetLayerOutput) == 0x0000D0, "Wrong size on UHoudiniLandscapeTargetLayerOutput"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, Landscape) == 0x000028, "Member 'UHoudiniLandscapeTargetLayerOutput::Landscape' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, LandscapeProxy) == 0x000030, "Member 'UHoudiniLandscapeTargetLayerOutput::LandscapeProxy' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, BakedEditLayer) == 0x000038, "Member 'UHoudiniLandscapeTargetLayerOutput::BakedEditLayer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, CookedEditLayer) == 0x000048, "Member 'UHoudiniLandscapeTargetLayerOutput::CookedEditLayer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, TargetLayer) == 0x000058, "Member 'UHoudiniLandscapeTargetLayerOutput::TargetLayer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, Extents) == 0x000068, "Member 'UHoudiniLandscapeTargetLayerOutput::Extents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, bClearLayer) == 0x000078, "Member 'UHoudiniLandscapeTargetLayerOutput::bClearLayer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, bCreatedLandscape) == 0x000079, "Member 'UHoudiniLandscapeTargetLayerOutput::bCreatedLandscape' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, bCookedLayerRequiresBaking) == 0x00007A, "Member 'UHoudiniLandscapeTargetLayerOutput::bCookedLayerRequiresBaking' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, BakedLandscapeName) == 0x000080, "Member 'UHoudiniLandscapeTargetLayerOutput::BakedLandscapeName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, LayerInfoObjects) == 0x000090, "Member 'UHoudiniLandscapeTargetLayerOutput::LayerInfoObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, BakeOutlinerFolder) == 0x0000A0, "Member 'UHoudiniLandscapeTargetLayerOutput::BakeOutlinerFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, BakeFolder) == 0x0000B0, "Member 'UHoudiniLandscapeTargetLayerOutput::BakeFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, MaterialInstance) == 0x0000C0, "Member 'UHoudiniLandscapeTargetLayerOutput::MaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, bWriteLockedLayers) == 0x0000C8, "Member 'UHoudiniLandscapeTargetLayerOutput::bWriteLockedLayers' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeTargetLayerOutput, bLockLayer) == 0x0000C9, "Member 'UHoudiniLandscapeTargetLayerOutput::bLockLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniLandscapeSplineTargetLayerOutput \ +static_assert(alignof(UHoudiniLandscapeSplineTargetLayerOutput) == 0x000008, "Wrong alignment on UHoudiniLandscapeSplineTargetLayerOutput"); \ +static_assert(sizeof(UHoudiniLandscapeSplineTargetLayerOutput) == 0x0000E8, "Wrong size on UHoudiniLandscapeSplineTargetLayerOutput"); \ +static_assert(offsetof(UHoudiniLandscapeSplineTargetLayerOutput, AfterEditLayer) == 0x0000D0, "Member 'UHoudiniLandscapeSplineTargetLayerOutput::AfterEditLayer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplineTargetLayerOutput, Segments) == 0x0000D8, "Member 'UHoudiniLandscapeSplineTargetLayerOutput::Segments' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AHoudiniAssetActor \ +static_assert(alignof(AHoudiniAssetActor) == 0x000008, "Wrong alignment on AHoudiniAssetActor"); \ +static_assert(sizeof(AHoudiniAssetActor) == 0x0002A0, "Wrong size on AHoudiniAssetActor"); \ +static_assert(offsetof(AHoudiniAssetActor, HoudiniAssetComponent) == 0x000298, "Member 'AHoudiniAssetActor::HoudiniAssetComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetComponent \ +static_assert(alignof(UHoudiniAssetComponent) == 0x000010, "Wrong alignment on UHoudiniAssetComponent"); \ +static_assert(sizeof(UHoudiniAssetComponent) == 0x000AC0, "Wrong size on UHoudiniAssetComponent"); \ +static_assert(offsetof(UHoudiniAssetComponent, HoudiniAsset) == 0x000578, "Member 'UHoudiniAssetComponent::HoudiniAsset' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bCookOnParameterChange) == 0x000580, "Member 'UHoudiniAssetComponent::bCookOnParameterChange' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bUploadTransformsToHoudiniEngine) == 0x000581, "Member 'UHoudiniAssetComponent::bUploadTransformsToHoudiniEngine' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bCookOnTransformChange) == 0x000582, "Member 'UHoudiniAssetComponent::bCookOnTransformChange' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bCookOnAssetInputCook) == 0x000583, "Member 'UHoudiniAssetComponent::bCookOnAssetInputCook' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bOutputless) == 0x000584, "Member 'UHoudiniAssetComponent::bOutputless' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bOutputTemplateGeos) == 0x000585, "Member 'UHoudiniAssetComponent::bOutputTemplateGeos' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bUseOutputNodes) == 0x000586, "Member 'UHoudiniAssetComponent::bUseOutputNodes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, TemporaryCookFolder) == 0x000588, "Member 'UHoudiniAssetComponent::TemporaryCookFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, BakeFolder) == 0x000598, "Member 'UHoudiniAssetComponent::BakeFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, StaticMeshMethod) == 0x0005A8, "Member 'UHoudiniAssetComponent::StaticMeshMethod' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, StaticMeshGenerationProperties) == 0x0005B0, "Member 'UHoudiniAssetComponent::StaticMeshGenerationProperties' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, StaticMeshBuildSettings) == 0x000790, "Member 'UHoudiniAssetComponent::StaticMeshBuildSettings' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bOverrideGlobalProxyStaticMeshSettings) == 0x0007D8, "Member 'UHoudiniAssetComponent::bOverrideGlobalProxyStaticMeshSettings' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bEnableProxyStaticMeshOverride) == 0x0007D9, "Member 'UHoudiniAssetComponent::bEnableProxyStaticMeshOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bEnableProxyStaticMeshRefinementByTimerOverride) == 0x0007DA, "Member 'UHoudiniAssetComponent::bEnableProxyStaticMeshRefinementByTimerOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, ProxyMeshAutoRefineTimeoutSecondsOverride) == 0x0007DC, "Member 'UHoudiniAssetComponent::ProxyMeshAutoRefineTimeoutSecondsOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bEnableProxyStaticMeshRefinementOnPreSaveWorldOverride) == 0x0007E0, "Member 'UHoudiniAssetComponent::bEnableProxyStaticMeshRefinementOnPreSaveWorldOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bEnableProxyStaticMeshRefinementOnPreBeginPIEOverride) == 0x0007E1, "Member 'UHoudiniAssetComponent::bEnableProxyStaticMeshRefinementOnPreBeginPIEOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bLandscapeUseTempLayers) == 0x0007E2, "Member 'UHoudiniAssetComponent::bLandscapeUseTempLayers' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, AssetId) == 0x0007E4, "Member 'UHoudiniAssetComponent::AssetId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, NodeIdsToCook) == 0x0007E8, "Member 'UHoudiniAssetComponent::NodeIdsToCook' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, OutputNodeCookCounts) == 0x0007F8, "Member 'UHoudiniAssetComponent::OutputNodeCookCounts' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, DownstreamHoudiniAssets) == 0x000848, "Member 'UHoudiniAssetComponent::DownstreamHoudiniAssets' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, ComponentGUID) == 0x000898, "Member 'UHoudiniAssetComponent::ComponentGUID' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, HapiGUID) == 0x0008A8, "Member 'UHoudiniAssetComponent::HapiGUID' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, HapiAssetName) == 0x0008B8, "Member 'UHoudiniAssetComponent::HapiAssetName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, AssetState) == 0x0008C8, "Member 'UHoudiniAssetComponent::AssetState' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, DebugLastAssetState) == 0x0008C9, "Member 'UHoudiniAssetComponent::DebugLastAssetState' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, AssetStateResult) == 0x0008CA, "Member 'UHoudiniAssetComponent::AssetStateResult' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, LastComponentTransform) == 0x0008D0, "Member 'UHoudiniAssetComponent::LastComponentTransform' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, SubAssetIndex) == 0x000930, "Member 'UHoudiniAssetComponent::SubAssetIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, AssetCookCount) == 0x000934, "Member 'UHoudiniAssetComponent::AssetCookCount' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bHasBeenLoaded) == 0x000938, "Member 'UHoudiniAssetComponent::bHasBeenLoaded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bHasBeenDuplicated) == 0x000939, "Member 'UHoudiniAssetComponent::bHasBeenDuplicated' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bPendingDelete) == 0x00093A, "Member 'UHoudiniAssetComponent::bPendingDelete' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bRecookRequested) == 0x00093B, "Member 'UHoudiniAssetComponent::bRecookRequested' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bRebuildRequested) == 0x00093C, "Member 'UHoudiniAssetComponent::bRebuildRequested' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bEnableCooking) == 0x00093D, "Member 'UHoudiniAssetComponent::bEnableCooking' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bForceNeedUpdate) == 0x00093E, "Member 'UHoudiniAssetComponent::bForceNeedUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bLastCookSuccess) == 0x00093F, "Member 'UHoudiniAssetComponent::bLastCookSuccess' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bParameterDefinitionUpdateNeeded) == 0x000940, "Member 'UHoudiniAssetComponent::bParameterDefinitionUpdateNeeded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bBlueprintStructureModified) == 0x000941, "Member 'UHoudiniAssetComponent::bBlueprintStructureModified' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bBlueprintModified) == 0x000942, "Member 'UHoudiniAssetComponent::bBlueprintModified' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, Parameters) == 0x000948, "Member 'UHoudiniAssetComponent::Parameters' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, Inputs) == 0x000958, "Member 'UHoudiniAssetComponent::Inputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, Outputs) == 0x000968, "Member 'UHoudiniAssetComponent::Outputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, BakedOutputs) == 0x000978, "Member 'UHoudiniAssetComponent::BakedOutputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, UntrackedOutputs) == 0x000988, "Member 'UHoudiniAssetComponent::UntrackedOutputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, HandleComponents) == 0x000998, "Member 'UHoudiniAssetComponent::HandleComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bHasComponentTransformChanged) == 0x0009A8, "Member 'UHoudiniAssetComponent::bHasComponentTransformChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bFullyLoaded) == 0x0009A9, "Member 'UHoudiniAssetComponent::bFullyLoaded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, PDGAssetLink) == 0x0009B0, "Member 'UHoudiniAssetComponent::PDGAssetLink' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, RefineMeshesTimer) == 0x0009B8, "Member 'UHoudiniAssetComponent::RefineMeshesTimer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bNoProxyMeshNextCookRequested) == 0x0009D8, "Member 'UHoudiniAssetComponent::bNoProxyMeshNextCookRequested' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, InputPresets) == 0x0009E0, "Member 'UHoudiniAssetComponent::InputPresets' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bBakeAfterNextCook) == 0x000A30, "Member 'UHoudiniAssetComponent::bBakeAfterNextCook' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, bCachedIsPreview) == 0x000A90, "Member 'UHoudiniAssetComponent::bCachedIsPreview' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent, LastTickTime) == 0x000AA0, "Member 'UHoudiniAssetComponent::LastTickTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniAssetBlueprintComponent_HasParameter \ +static_assert(alignof(HoudiniAssetBlueprintComponent_HasParameter) == 0x000008, "Wrong alignment on HoudiniAssetBlueprintComponent_HasParameter"); \ +static_assert(sizeof(HoudiniAssetBlueprintComponent_HasParameter) == 0x000018, "Wrong size on HoudiniAssetBlueprintComponent_HasParameter"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_HasParameter, Name_0) == 0x000000, "Member 'HoudiniAssetBlueprintComponent_HasParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_HasParameter, ReturnValue) == 0x000010, "Member 'HoudiniAssetBlueprintComponent_HasParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniAssetBlueprintComponent_SetFloatParameter \ +static_assert(alignof(HoudiniAssetBlueprintComponent_SetFloatParameter) == 0x000008, "Wrong alignment on HoudiniAssetBlueprintComponent_SetFloatParameter"); \ +static_assert(sizeof(HoudiniAssetBlueprintComponent_SetFloatParameter) == 0x000018, "Wrong size on HoudiniAssetBlueprintComponent_SetFloatParameter"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetFloatParameter, Name_0) == 0x000000, "Member 'HoudiniAssetBlueprintComponent_SetFloatParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetFloatParameter, Value) == 0x000010, "Member 'HoudiniAssetBlueprintComponent_SetFloatParameter::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetFloatParameter, Index_0) == 0x000014, "Member 'HoudiniAssetBlueprintComponent_SetFloatParameter::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniAssetBlueprintComponent_SetToggleValueAt \ +static_assert(alignof(HoudiniAssetBlueprintComponent_SetToggleValueAt) == 0x000008, "Wrong alignment on HoudiniAssetBlueprintComponent_SetToggleValueAt"); \ +static_assert(sizeof(HoudiniAssetBlueprintComponent_SetToggleValueAt) == 0x000018, "Wrong size on HoudiniAssetBlueprintComponent_SetToggleValueAt"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetToggleValueAt, Name_0) == 0x000000, "Member 'HoudiniAssetBlueprintComponent_SetToggleValueAt::Name_0' has a wrong offset!"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetToggleValueAt, Value) == 0x000010, "Member 'HoudiniAssetBlueprintComponent_SetToggleValueAt::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniAssetBlueprintComponent_SetToggleValueAt, Index_0) == 0x000014, "Member 'HoudiniAssetBlueprintComponent_SetToggleValueAt::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetBlueprintComponent \ +static_assert(alignof(UHoudiniAssetBlueprintComponent) == 0x000010, "Wrong alignment on UHoudiniAssetBlueprintComponent"); \ +static_assert(sizeof(UHoudiniAssetBlueprintComponent) == 0x000BC0, "Wrong size on UHoudiniAssetBlueprintComponent"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, FauxBPProperty) == 0x000B08, "Member 'UHoudiniAssetBlueprintComponent::FauxBPProperty' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, bHoudiniAssetChanged) == 0x000B09, "Member 'UHoudiniAssetBlueprintComponent::bHoudiniAssetChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, bUpdatedFromTemplate) == 0x000B0A, "Member 'UHoudiniAssetBlueprintComponent::bUpdatedFromTemplate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, bIsInBlueprintEditor) == 0x000B0B, "Member 'UHoudiniAssetBlueprintComponent::bIsInBlueprintEditor' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, bCanDeleteHoudiniNodes) == 0x000B0C, "Member 'UHoudiniAssetBlueprintComponent::bCanDeleteHoudiniNodes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, bHasRegisteredComponentTemplate) == 0x000B0D, "Member 'UHoudiniAssetBlueprintComponent::bHasRegisteredComponentTemplate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, CachedOutputNodes) == 0x000B18, "Member 'UHoudiniAssetBlueprintComponent::CachedOutputNodes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetBlueprintComponent, CachedInputNodes) == 0x000B68, "Member 'UHoudiniAssetBlueprintComponent::CachedInputNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameter \ +static_assert(alignof(UHoudiniAssetParameter) == 0x000008, "Wrong alignment on UHoudiniAssetParameter"); \ +static_assert(sizeof(UHoudiniAssetParameter) == 0x000080, "Wrong size on UHoudiniAssetParameter"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterButton \ +static_assert(alignof(UHoudiniAssetParameterButton) == 0x000008, "Wrong alignment on UHoudiniAssetParameterButton"); \ +static_assert(sizeof(UHoudiniAssetParameterButton) == 0x000080, "Wrong size on UHoudiniAssetParameterButton"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterChoice \ +static_assert(alignof(UHoudiniAssetParameterChoice) == 0x000008, "Wrong alignment on UHoudiniAssetParameterChoice"); \ +static_assert(sizeof(UHoudiniAssetParameterChoice) == 0x0000B8, "Wrong size on UHoudiniAssetParameterChoice"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterColor \ +static_assert(alignof(UHoudiniAssetParameterColor) == 0x000008, "Wrong alignment on UHoudiniAssetParameterColor"); \ +static_assert(sizeof(UHoudiniAssetParameterColor) == 0x000090, "Wrong size on UHoudiniAssetParameterColor"); \ + +#define DUMPER7_ASSERTS_UHoudiniLandscapeSplinesOutput \ +static_assert(alignof(UHoudiniLandscapeSplinesOutput) == 0x000008, "Wrong alignment on UHoudiniLandscapeSplinesOutput"); \ +static_assert(sizeof(UHoudiniLandscapeSplinesOutput) == 0x0000B8, "Wrong size on UHoudiniLandscapeSplinesOutput"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, Landscape) == 0x000028, "Member 'UHoudiniLandscapeSplinesOutput::Landscape' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, LandscapeProxy) == 0x000030, "Member 'UHoudiniLandscapeSplinesOutput::LandscapeProxy' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, LandscapeSplineActor) == 0x000038, "Member 'UHoudiniLandscapeSplinesOutput::LandscapeSplineActor' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, LandscapeSplinesComponent) == 0x000040, "Member 'UHoudiniLandscapeSplinesOutput::LandscapeSplinesComponent' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, LayerOutputs) == 0x000048, "Member 'UHoudiniLandscapeSplinesOutput::LayerOutputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, Segments) == 0x000098, "Member 'UHoudiniLandscapeSplinesOutput::Segments' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeSplinesOutput, ControlPoints) == 0x0000A8, "Member 'UHoudiniLandscapeSplinesOutput::ControlPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterFile \ +static_assert(alignof(UHoudiniAssetParameterFile) == 0x000008, "Wrong alignment on UHoudiniAssetParameterFile"); \ +static_assert(sizeof(UHoudiniAssetParameterFile) == 0x0000A8, "Wrong size on UHoudiniAssetParameterFile"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterFloat \ +static_assert(alignof(UHoudiniAssetParameterFloat) == 0x000008, "Wrong alignment on UHoudiniAssetParameterFloat"); \ +static_assert(sizeof(UHoudiniAssetParameterFloat) == 0x0000B8, "Wrong size on UHoudiniAssetParameterFloat"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterFolder \ +static_assert(alignof(UHoudiniAssetParameterFolder) == 0x000008, "Wrong alignment on UHoudiniAssetParameterFolder"); \ +static_assert(sizeof(UHoudiniAssetParameterFolder) == 0x000080, "Wrong size on UHoudiniAssetParameterFolder"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterFolderList \ +static_assert(alignof(UHoudiniAssetParameterFolderList) == 0x000008, "Wrong alignment on UHoudiniAssetParameterFolderList"); \ +static_assert(sizeof(UHoudiniAssetParameterFolderList) == 0x000080, "Wrong size on UHoudiniAssetParameterFolderList"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterInt \ +static_assert(alignof(UHoudiniAssetParameterInt) == 0x000008, "Wrong alignment on UHoudiniAssetParameterInt"); \ +static_assert(sizeof(UHoudiniAssetParameterInt) == 0x0000B0, "Wrong size on UHoudiniAssetParameterInt"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterLabel \ +static_assert(alignof(UHoudiniAssetParameterLabel) == 0x000008, "Wrong alignment on UHoudiniAssetParameterLabel"); \ +static_assert(sizeof(UHoudiniAssetParameterLabel) == 0x000080, "Wrong size on UHoudiniAssetParameterLabel"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterMultiparm \ +static_assert(alignof(UHoudiniAssetParameterMultiparm) == 0x000008, "Wrong alignment on UHoudiniAssetParameterMultiparm"); \ +static_assert(sizeof(UHoudiniAssetParameterMultiparm) == 0x000088, "Wrong size on UHoudiniAssetParameterMultiparm"); \ + +#define DUMPER7_ASSERTS_UHoudiniOutput \ +static_assert(alignof(UHoudiniOutput) == 0x000008, "Wrong alignment on UHoudiniOutput"); \ +static_assert(sizeof(UHoudiniOutput) == 0x0001B0, "Wrong size on UHoudiniOutput"); \ +static_assert(offsetof(UHoudiniOutput, Type) == 0x000028, "Member 'UHoudiniOutput::Type' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, HoudiniGeoPartObjects) == 0x000030, "Member 'UHoudiniOutput::HoudiniGeoPartObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, OutputObjects) == 0x000040, "Member 'UHoudiniOutput::OutputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, InstancedOutputs) == 0x000090, "Member 'UHoudiniOutput::InstancedOutputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, AssignementMaterials) == 0x0000E0, "Member 'UHoudiniOutput::AssignementMaterials' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, ReplacementMaterials) == 0x000130, "Member 'UHoudiniOutput::ReplacementMaterials' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, bLandscapeWorldComposition) == 0x000184, "Member 'UHoudiniOutput::bLandscapeWorldComposition' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, HoudiniCreatedSocketActors) == 0x000188, "Member 'UHoudiniOutput::HoudiniCreatedSocketActors' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, HoudiniAttachedSocketActors) == 0x000198, "Member 'UHoudiniOutput::HoudiniAttachedSocketActors' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, bIsEditableNode) == 0x0001A8, "Member 'UHoudiniOutput::bIsEditableNode' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, bHasEditableNodeBuilt) == 0x0001A9, "Member 'UHoudiniOutput::bHasEditableNodeBuilt' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, bIsUpdating) == 0x0001AA, "Member 'UHoudiniOutput::bIsUpdating' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniOutput, bCanDeleteHoudiniNodes) == 0x0001AB, "Member 'UHoudiniOutput::bCanDeleteHoudiniNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterRamp \ +static_assert(alignof(UHoudiniAssetParameterRamp) == 0x000008, "Wrong alignment on UHoudiniAssetParameterRamp"); \ +static_assert(sizeof(UHoudiniAssetParameterRamp) == 0x000098, "Wrong size on UHoudiniAssetParameterRamp"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterSeparator \ +static_assert(alignof(UHoudiniAssetParameterSeparator) == 0x000008, "Wrong alignment on UHoudiniAssetParameterSeparator"); \ +static_assert(sizeof(UHoudiniAssetParameterSeparator) == 0x000080, "Wrong size on UHoudiniAssetParameterSeparator"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterString \ +static_assert(alignof(UHoudiniAssetParameterString) == 0x000008, "Wrong alignment on UHoudiniAssetParameterString"); \ +static_assert(sizeof(UHoudiniAssetParameterString) == 0x000090, "Wrong size on UHoudiniAssetParameterString"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetParameterToggle \ +static_assert(alignof(UHoudiniAssetParameterToggle) == 0x000008, "Wrong alignment on UHoudiniAssetParameterToggle"); \ +static_assert(sizeof(UHoudiniAssetParameterToggle) == 0x000090, "Wrong size on UHoudiniAssetParameterToggle"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetComponentMaterials_V1 \ +static_assert(alignof(UHoudiniAssetComponentMaterials_V1) == 0x000008, "Wrong alignment on UHoudiniAssetComponentMaterials_V1"); \ +static_assert(sizeof(UHoudiniAssetComponentMaterials_V1) == 0x0000C8, "Wrong size on UHoudiniAssetComponentMaterials_V1"); \ + +#define DUMPER7_ASSERTS_UHoudiniHandleComponent_V1 \ +static_assert(alignof(UHoudiniHandleComponent_V1) == 0x000010, "Wrong alignment on UHoudiniHandleComponent_V1"); \ +static_assert(sizeof(UHoudiniHandleComponent_V1) == 0x000330, "Wrong size on UHoudiniHandleComponent_V1"); \ + +#define DUMPER7_ASSERTS_UHoudiniSplineComponent_V1 \ +static_assert(alignof(UHoudiniSplineComponent_V1) == 0x000010, "Wrong alignment on UHoudiniSplineComponent_V1"); \ +static_assert(sizeof(UHoudiniSplineComponent_V1) == 0x0003C0, "Wrong size on UHoudiniSplineComponent_V1"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetInput \ +static_assert(alignof(UHoudiniAssetInput) == 0x000008, "Wrong alignment on UHoudiniAssetInput"); \ +static_assert(sizeof(UHoudiniAssetInput) == 0x0001D0, "Wrong size on UHoudiniAssetInput"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetInstanceInput \ +static_assert(alignof(UHoudiniAssetInstanceInput) == 0x000008, "Wrong alignment on UHoudiniAssetInstanceInput"); \ +static_assert(sizeof(UHoudiniAssetInstanceInput) == 0x000190, "Wrong size on UHoudiniAssetInstanceInput"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetInstanceInputField \ +static_assert(alignof(UHoudiniAssetInstanceInputField) == 0x000008, "Wrong alignment on UHoudiniAssetInstanceInputField"); \ +static_assert(sizeof(UHoudiniAssetInstanceInputField) == 0x0001C0, "Wrong size on UHoudiniAssetInstanceInputField"); \ + +#define DUMPER7_ASSERTS_UHoudiniAssetComponent_V1 \ +static_assert(alignof(UHoudiniAssetComponent_V1) == 0x000010, "Wrong alignment on UHoudiniAssetComponent_V1"); \ +static_assert(sizeof(UHoudiniAssetComponent_V1) == 0x000AC0, "Wrong size on UHoudiniAssetComponent_V1"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedPhysMaterial) == 0x000578, "Member 'UHoudiniAssetComponent_V1::GeneratedPhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, DefaultBodyInstance) == 0x000580, "Member 'UHoudiniAssetComponent_V1::DefaultBodyInstance' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedCollisionTraceFlag) == 0x000710, "Member 'UHoudiniAssetComponent_V1::GeneratedCollisionTraceFlag' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedLightMapResolution) == 0x000714, "Member 'UHoudiniAssetComponent_V1::GeneratedLightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedDistanceFieldResolutionScale) == 0x000718, "Member 'UHoudiniAssetComponent_V1::GeneratedDistanceFieldResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedWalkableSlopeOverride) == 0x00071C, "Member 'UHoudiniAssetComponent_V1::GeneratedWalkableSlopeOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedLightMapCoordinateIndex) == 0x00072C, "Member 'UHoudiniAssetComponent_V1::GeneratedLightMapCoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedStreamingDistanceMultiplier) == 0x000734, "Member 'UHoudiniAssetComponent_V1::GeneratedStreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedFoliageDefaultSettings) == 0x000738, "Member 'UHoudiniAssetComponent_V1::GeneratedFoliageDefaultSettings' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, GeneratedAssetUserData) == 0x000740, "Member 'UHoudiniAssetComponent_V1::GeneratedAssetUserData' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, BakeFolder) == 0x000750, "Member 'UHoudiniAssetComponent_V1::BakeFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniAssetComponent_V1, TempCookFolder) == 0x000768, "Member 'UHoudiniAssetComponent_V1::TempCookFolder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInstancedActorComponent_V1 \ +static_assert(alignof(UHoudiniInstancedActorComponent_V1) == 0x000010, "Wrong alignment on UHoudiniInstancedActorComponent_V1"); \ +static_assert(sizeof(UHoudiniInstancedActorComponent_V1) == 0x0002C0, "Wrong size on UHoudiniInstancedActorComponent_V1"); \ + +#define DUMPER7_ASSERTS_UHoudiniMeshSplitInstancerComponent_V1 \ +static_assert(alignof(UHoudiniMeshSplitInstancerComponent_V1) == 0x000010, "Wrong alignment on UHoudiniMeshSplitInstancerComponent_V1"); \ +static_assert(sizeof(UHoudiniMeshSplitInstancerComponent_V1) == 0x0002C0, "Wrong size on UHoudiniMeshSplitInstancerComponent_V1"); \ + +#define DUMPER7_ASSERTS_IHoudiniEngineCopyPropertiesInterface \ +static_assert(alignof(IHoudiniEngineCopyPropertiesInterface) == 0x000001, "Wrong alignment on IHoudiniEngineCopyPropertiesInterface"); \ +static_assert(sizeof(IHoudiniEngineCopyPropertiesInterface) == 0x000001, "Wrong size on IHoudiniEngineCopyPropertiesInterface"); \ + +#define DUMPER7_ASSERTS_UHoudiniHandleParameter \ +static_assert(alignof(UHoudiniHandleParameter) == 0x000008, "Wrong alignment on UHoudiniHandleParameter"); \ +static_assert(sizeof(UHoudiniHandleParameter) == 0x000038, "Wrong size on UHoudiniHandleParameter"); \ +static_assert(offsetof(UHoudiniHandleParameter, AssetParameter) == 0x000028, "Member 'UHoudiniHandleParameter::AssetParameter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniHandleParameter, TupleIndex) == 0x000030, "Member 'UHoudiniHandleParameter::TupleIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniHandleComponent \ +static_assert(alignof(UHoudiniHandleComponent) == 0x000010, "Wrong alignment on UHoudiniHandleComponent"); \ +static_assert(sizeof(UHoudiniHandleComponent) == 0x0002E0, "Wrong size on UHoudiniHandleComponent"); \ +static_assert(offsetof(UHoudiniHandleComponent, XformParms) == 0x0002A0, "Member 'UHoudiniHandleComponent::XformParms' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniHandleComponent, RSTParm) == 0x0002B0, "Member 'UHoudiniHandleComponent::RSTParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniHandleComponent, RotOrderParm) == 0x0002B8, "Member 'UHoudiniHandleComponent::RotOrderParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniHandleComponent, HandleType) == 0x0002C0, "Member 'UHoudiniHandleComponent::HandleType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniHandleComponent, HandleName) == 0x0002C8, "Member 'UHoudiniHandleComponent::HandleName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInput \ +static_assert(alignof(UHoudiniInput) == 0x000008, "Wrong alignment on UHoudiniInput"); \ +static_assert(sizeof(UHoudiniInput) == 0x000268, "Wrong size on UHoudiniInput"); \ +static_assert(offsetof(UHoudiniInput, Name_0) == 0x000028, "Member 'UHoudiniInput::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, Label) == 0x000038, "Member 'UHoudiniInput::Label' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, Type) == 0x000048, "Member 'UHoudiniInput::Type' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, PreviousType) == 0x000049, "Member 'UHoudiniInput::PreviousType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, AssetNodeId) == 0x00004C, "Member 'UHoudiniInput::AssetNodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, InputNodeId) == 0x000050, "Member 'UHoudiniInput::InputNodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, InputIndex) == 0x000054, "Member 'UHoudiniInput::InputIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, ParmId) == 0x000058, "Member 'UHoudiniInput::ParmId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bIsObjectPathParameter) == 0x00005C, "Member 'UHoudiniInput::bIsObjectPathParameter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, CreatedDataNodeIds) == 0x000060, "Member 'UHoudiniInput::CreatedDataNodeIds' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bHasChanged) == 0x000070, "Member 'UHoudiniInput::bHasChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bNeedsToTriggerUpdate) == 0x000071, "Member 'UHoudiniInput::bNeedsToTriggerUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, CachedBounds) == 0x000078, "Member 'UHoudiniInput::CachedBounds' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, Help) == 0x0000B0, "Member 'UHoudiniInput::Help' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, KeepWorldTransform) == 0x0000C0, "Member 'UHoudiniInput::KeepWorldTransform' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bPackBeforeMerge) == 0x0000C1, "Member 'UHoudiniInput::bPackBeforeMerge' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bImportAsReference) == 0x0000C2, "Member 'UHoudiniInput::bImportAsReference' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bImportAsReferenceRotScaleEnabled) == 0x0000C3, "Member 'UHoudiniInput::bImportAsReferenceRotScaleEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bImportAsReferenceBboxEnabled) == 0x0000C4, "Member 'UHoudiniInput::bImportAsReferenceBboxEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bImportAsReferenceMaterialEnabled) == 0x0000C5, "Member 'UHoudiniInput::bImportAsReferenceMaterialEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bExportLODs) == 0x0000C6, "Member 'UHoudiniInput::bExportLODs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bExportSockets) == 0x0000C7, "Member 'UHoudiniInput::bExportSockets' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bPreferNaniteFallbackMesh) == 0x0000C8, "Member 'UHoudiniInput::bPreferNaniteFallbackMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bExportColliders) == 0x0000C9, "Member 'UHoudiniInput::bExportColliders' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bExportMaterialParameters) == 0x0000CA, "Member 'UHoudiniInput::bExportMaterialParameters' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bCookOnCurveChanged) == 0x0000CB, "Member 'UHoudiniInput::bCookOnCurveChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, GeometryInputObjects) == 0x0000D0, "Member 'UHoudiniInput::GeometryInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bStaticMeshChanged) == 0x0000E0, "Member 'UHoudiniInput::bStaticMeshChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, AssetInputObjects) == 0x0000E8, "Member 'UHoudiniInput::AssetInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bInputAssetConnectedInHoudini) == 0x0000F8, "Member 'UHoudiniInput::bInputAssetConnectedInHoudini' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, CurveInputObjects) == 0x000100, "Member 'UHoudiniInput::CurveInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, DefaultCurveOffset) == 0x000110, "Member 'UHoudiniInput::DefaultCurveOffset' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bAddRotAndScaleAttributesOnCurves) == 0x000114, "Member 'UHoudiniInput::bAddRotAndScaleAttributesOnCurves' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bUseLegacyInputCurves) == 0x000115, "Member 'UHoudiniInput::bUseLegacyInputCurves' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, LandscapeInputObjects) == 0x000118, "Member 'UHoudiniInput::LandscapeInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeHasExportTypeChanged) == 0x000128, "Member 'UHoudiniInput::bLandscapeHasExportTypeChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, WorldInputObjects) == 0x000130, "Member 'UHoudiniInput::WorldInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, WorldInputBoundSelectorObjects) == 0x000140, "Member 'UHoudiniInput::WorldInputBoundSelectorObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bIsWorldInputBoundSelector) == 0x000150, "Member 'UHoudiniInput::bIsWorldInputBoundSelector' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bWorldInputBoundSelectorAutoUpdate) == 0x000151, "Member 'UHoudiniInput::bWorldInputBoundSelectorAutoUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, UnrealSplineResolution) == 0x000154, "Member 'UHoudiniInput::UnrealSplineResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, SkeletalInputObjects) == 0x000158, "Member 'UHoudiniInput::SkeletalInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, GeometryCollectionInputObjects) == 0x000168, "Member 'UHoudiniInput::GeometryCollectionInputObjects' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, LandscapeSelectedComponents) == 0x000178, "Member 'UHoudiniInput::LandscapeSelectedComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, InputNodesPendingDelete) == 0x0001C8, "Member 'UHoudiniInput::InputNodesPendingDelete' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, LastInsertedInputs) == 0x000218, "Member 'UHoudiniInput::LastInsertedInputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, LastUndoDeletedInputs) == 0x000228, "Member 'UHoudiniInput::LastUndoDeletedInputs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bUpdateInputLandscape) == 0x000238, "Member 'UHoudiniInput::bUpdateInputLandscape' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, LandscapeExportType) == 0x000239, "Member 'UHoudiniInput::LandscapeExportType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeExportSelectionOnly) == 0x00023A, "Member 'UHoudiniInput::bLandscapeExportSelectionOnly' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeControlVisiblity) == 0x00023B, "Member 'UHoudiniInput::bLandscapeControlVisiblity' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeAutoSelectComponent) == 0x00023C, "Member 'UHoudiniInput::bLandscapeAutoSelectComponent' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeExportMaterials) == 0x00023D, "Member 'UHoudiniInput::bLandscapeExportMaterials' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeExportLighting) == 0x00023E, "Member 'UHoudiniInput::bLandscapeExportLighting' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeExportNormalizedUVs) == 0x00023F, "Member 'UHoudiniInput::bLandscapeExportNormalizedUVs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeExportTileUVs) == 0x000240, "Member 'UHoudiniInput::bLandscapeExportTileUVs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bCanDeleteHoudiniNodes) == 0x000241, "Member 'UHoudiniInput::bCanDeleteHoudiniNodes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeAutoSelectSplines) == 0x000242, "Member 'UHoudiniInput::bLandscapeAutoSelectSplines' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeSplinesExportOptionsMenuExpanded) == 0x000243, "Member 'UHoudiniInput::bLandscapeSplinesExportOptionsMenuExpanded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeSplinesExportControlPoints) == 0x000244, "Member 'UHoudiniInput::bLandscapeSplinesExportControlPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeSplinesExportLeftRightCurves) == 0x000245, "Member 'UHoudiniInput::bLandscapeSplinesExportLeftRightCurves' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bLandscapeSplinesExportSplineMeshComponents) == 0x000246, "Member 'UHoudiniInput::bLandscapeSplinesExportSplineMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, bMergeSplineMeshComponents) == 0x000247, "Member 'UHoudiniInput::bMergeSplineMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInput, InputSettings) == 0x000248, "Member 'UHoudiniInput::InputSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTOPNetwork \ +static_assert(alignof(UTOPNetwork) == 0x000008, "Wrong alignment on UTOPNetwork"); \ +static_assert(sizeof(UTOPNetwork) == 0x000098, "Wrong size on UTOPNetwork"); \ +static_assert(offsetof(UTOPNetwork, NodeId) == 0x000028, "Member 'UTOPNetwork::NodeId' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, NodeName) == 0x000030, "Member 'UTOPNetwork::NodeName' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, NodePath) == 0x000040, "Member 'UTOPNetwork::NodePath' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, AllTOPNodes) == 0x000050, "Member 'UTOPNetwork::AllTOPNodes' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, SelectedTOPIndex) == 0x000060, "Member 'UTOPNetwork::SelectedTOPIndex' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, ParentName) == 0x000068, "Member 'UTOPNetwork::ParentName' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, bShowResults) == 0x000078, "Member 'UTOPNetwork::bShowResults' has a wrong offset!"); \ +static_assert(offsetof(UTOPNetwork, bAutoLoadResults) == 0x000079, "Member 'UTOPNetwork::bAutoLoadResults' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputObject \ +static_assert(alignof(UHoudiniInputObject) == 0x000010, "Wrong alignment on UHoudiniInputObject"); \ +static_assert(sizeof(UHoudiniInputObject) == 0x000140, "Wrong size on UHoudiniInputObject"); \ +static_assert(offsetof(UHoudiniInputObject, InputObject) == 0x000028, "Member 'UHoudiniInputObject::InputObject' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, Transform) == 0x000050, "Member 'UHoudiniInputObject::Transform' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, Type) == 0x0000B0, "Member 'UHoudiniInputObject::Type' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, Guid) == 0x0000B4, "Member 'UHoudiniInputObject::Guid' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, bHasChanged) == 0x0000F0, "Member 'UHoudiniInputObject::bHasChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, bNeedsToTriggerUpdate) == 0x0000F1, "Member 'UHoudiniInputObject::bNeedsToTriggerUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, bTransformChanged) == 0x0000F2, "Member 'UHoudiniInputObject::bTransformChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, MaterialReferences) == 0x0000F8, "Member 'UHoudiniInputObject::MaterialReferences' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, CachedInputSettings) == 0x000108, "Member 'UHoudiniInputObject::CachedInputSettings' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, bCanDeleteHoudiniNodes) == 0x000128, "Member 'UHoudiniInputObject::bCanDeleteHoudiniNodes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, bInputNodeHandleOverridesNodeIds) == 0x000129, "Member 'UHoudiniInputObject::bInputNodeHandleOverridesNodeIds' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, InputNodeId) == 0x00012C, "Member 'UHoudiniInputObject::InputNodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputObject, InputObjectNodeId) == 0x000130, "Member 'UHoudiniInputObject::InputObjectNodeId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputStaticMesh \ +static_assert(alignof(UHoudiniInputStaticMesh) == 0x000010, "Wrong alignment on UHoudiniInputStaticMesh"); \ +static_assert(sizeof(UHoudiniInputStaticMesh) == 0x000140, "Wrong size on UHoudiniInputStaticMesh"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputSkeletalMesh \ +static_assert(alignof(UHoudiniInputSkeletalMesh) == 0x000010, "Wrong alignment on UHoudiniInputSkeletalMesh"); \ +static_assert(sizeof(UHoudiniInputSkeletalMesh) == 0x000140, "Wrong size on UHoudiniInputSkeletalMesh"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputGeometryCollection \ +static_assert(alignof(UHoudiniInputGeometryCollection) == 0x000010, "Wrong alignment on UHoudiniInputGeometryCollection"); \ +static_assert(sizeof(UHoudiniInputGeometryCollection) == 0x000140, "Wrong size on UHoudiniInputGeometryCollection"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputSceneComponent \ +static_assert(alignof(UHoudiniInputSceneComponent) == 0x000010, "Wrong alignment on UHoudiniInputSceneComponent"); \ +static_assert(sizeof(UHoudiniInputSceneComponent) == 0x0001A0, "Wrong size on UHoudiniInputSceneComponent"); \ +static_assert(offsetof(UHoudiniInputSceneComponent, ActorTransform) == 0x000140, "Member 'UHoudiniInputSceneComponent::ActorTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputMeshComponent \ +static_assert(alignof(UHoudiniInputMeshComponent) == 0x000010, "Wrong alignment on UHoudiniInputMeshComponent"); \ +static_assert(sizeof(UHoudiniInputMeshComponent) == 0x0001D0, "Wrong size on UHoudiniInputMeshComponent"); \ +static_assert(offsetof(UHoudiniInputMeshComponent, StaticMesh) == 0x0001A0, "Member 'UHoudiniInputMeshComponent::StaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputInstancedMeshComponent \ +static_assert(alignof(UHoudiniInputInstancedMeshComponent) == 0x000010, "Wrong alignment on UHoudiniInputInstancedMeshComponent"); \ +static_assert(sizeof(UHoudiniInputInstancedMeshComponent) == 0x0001E0, "Wrong size on UHoudiniInputInstancedMeshComponent"); \ +static_assert(offsetof(UHoudiniInputInstancedMeshComponent, InstanceTransforms) == 0x0001C8, "Member 'UHoudiniInputInstancedMeshComponent::InstanceTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputSplineComponent \ +static_assert(alignof(UHoudiniInputSplineComponent) == 0x000010, "Wrong alignment on UHoudiniInputSplineComponent"); \ +static_assert(sizeof(UHoudiniInputSplineComponent) == 0x0001C0, "Wrong size on UHoudiniInputSplineComponent"); \ +static_assert(offsetof(UHoudiniInputSplineComponent, NumberOfSplineControlPoints) == 0x0001A0, "Member 'UHoudiniInputSplineComponent::NumberOfSplineControlPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineComponent, SplineLength) == 0x0001A4, "Member 'UHoudiniInputSplineComponent::SplineLength' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineComponent, SplineResolution) == 0x0001A8, "Member 'UHoudiniInputSplineComponent::SplineResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineComponent, SplineClosed) == 0x0001AC, "Member 'UHoudiniInputSplineComponent::SplineClosed' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineComponent, SplineControlPoints) == 0x0001B0, "Member 'UHoudiniInputSplineComponent::SplineControlPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputGeometryCollectionComponent \ +static_assert(alignof(UHoudiniInputGeometryCollectionComponent) == 0x000010, "Wrong alignment on UHoudiniInputGeometryCollectionComponent"); \ +static_assert(sizeof(UHoudiniInputGeometryCollectionComponent) == 0x0001A0, "Wrong size on UHoudiniInputGeometryCollectionComponent"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputSkeletalMeshComponent \ +static_assert(alignof(UHoudiniInputSkeletalMeshComponent) == 0x000010, "Wrong alignment on UHoudiniInputSkeletalMeshComponent"); \ +static_assert(sizeof(UHoudiniInputSkeletalMeshComponent) == 0x0001A0, "Wrong size on UHoudiniInputSkeletalMeshComponent"); \ + +#define DUMPER7_ASSERTS_UHoudiniLandscapeOutput \ +static_assert(alignof(UHoudiniLandscapeOutput) == 0x000008, "Wrong alignment on UHoudiniLandscapeOutput"); \ +static_assert(sizeof(UHoudiniLandscapeOutput) == 0x000058, "Wrong size on UHoudiniLandscapeOutput"); \ +static_assert(offsetof(UHoudiniLandscapeOutput, Landscape) == 0x000028, "Member 'UHoudiniLandscapeOutput::Landscape' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeOutput, BakedName) == 0x000030, "Member 'UHoudiniLandscapeOutput::BakedName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeOutput, Layers) == 0x000040, "Member 'UHoudiniLandscapeOutput::Layers' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapeOutput, bCreated) == 0x000050, "Member 'UHoudiniLandscapeOutput::bCreated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputHoudiniSplineComponent \ +static_assert(alignof(UHoudiniInputHoudiniSplineComponent) == 0x000010, "Wrong alignment on UHoudiniInputHoudiniSplineComponent"); \ +static_assert(sizeof(UHoudiniInputHoudiniSplineComponent) == 0x000150, "Wrong size on UHoudiniInputHoudiniSplineComponent"); \ +static_assert(offsetof(UHoudiniInputHoudiniSplineComponent, CurveType) == 0x000138, "Member 'UHoudiniInputHoudiniSplineComponent::CurveType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputHoudiniSplineComponent, CurveMethod) == 0x000139, "Member 'UHoudiniInputHoudiniSplineComponent::CurveMethod' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputHoudiniSplineComponent, Reversed) == 0x00013A, "Member 'UHoudiniInputHoudiniSplineComponent::Reversed' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputHoudiniSplineComponent, CachedComponent) == 0x000140, "Member 'UHoudiniInputHoudiniSplineComponent::CachedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputCameraComponent \ +static_assert(alignof(UHoudiniInputCameraComponent) == 0x000010, "Wrong alignment on UHoudiniInputCameraComponent"); \ +static_assert(sizeof(UHoudiniInputCameraComponent) == 0x0001C0, "Wrong size on UHoudiniInputCameraComponent"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, FOV) == 0x0001A0, "Member 'UHoudiniInputCameraComponent::FOV' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, AspectRatio) == 0x0001A4, "Member 'UHoudiniInputCameraComponent::AspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, bIsOrthographic) == 0x0001A8, "Member 'UHoudiniInputCameraComponent::bIsOrthographic' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, OrthoWidth) == 0x0001AC, "Member 'UHoudiniInputCameraComponent::OrthoWidth' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, OrthoNearClipPlane) == 0x0001B0, "Member 'UHoudiniInputCameraComponent::OrthoNearClipPlane' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputCameraComponent, OrthoFarClipPlane) == 0x0001B4, "Member 'UHoudiniInputCameraComponent::OrthoFarClipPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputHoudiniAsset \ +static_assert(alignof(UHoudiniInputHoudiniAsset) == 0x000010, "Wrong alignment on UHoudiniInputHoudiniAsset"); \ +static_assert(sizeof(UHoudiniInputHoudiniAsset) == 0x000140, "Wrong size on UHoudiniInputHoudiniAsset"); \ +static_assert(offsetof(UHoudiniInputHoudiniAsset, AssetOutputIndex) == 0x000138, "Member 'UHoudiniInputHoudiniAsset::AssetOutputIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputHoudiniAsset, AssetId) == 0x00013C, "Member 'UHoudiniInputHoudiniAsset::AssetId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputActor \ +static_assert(alignof(UHoudiniInputActor) == 0x000010, "Wrong alignment on UHoudiniInputActor"); \ +static_assert(sizeof(UHoudiniInputActor) == 0x000200, "Wrong size on UHoudiniInputActor"); \ +static_assert(offsetof(UHoudiniInputActor, SplinesMeshObjectNodeId) == 0x000138, "Member 'UHoudiniInputActor::SplinesMeshObjectNodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, SplinesMeshNodeId) == 0x00013C, "Member 'UHoudiniInputActor::SplinesMeshNodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, ActorComponents) == 0x000168, "Member 'UHoudiniInputActor::ActorComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, ActorSceneComponents) == 0x000178, "Member 'UHoudiniInputActor::ActorSceneComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, LastUpdateNumComponentsAdded) == 0x0001C8, "Member 'UHoudiniInputActor::LastUpdateNumComponentsAdded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, LastUpdateNumComponentsRemoved) == 0x0001CC, "Member 'UHoudiniInputActor::LastUpdateNumComponentsRemoved' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, NumSplineMeshComponents) == 0x0001D0, "Member 'UHoudiniInputActor::NumSplineMeshComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, GeneratedSplinesMeshPackageGuid) == 0x0001D4, "Member 'UHoudiniInputActor::GeneratedSplinesMeshPackageGuid' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, GeneratedSplinesMesh) == 0x0001E8, "Member 'UHoudiniInputActor::GeneratedSplinesMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputActor, bUsedMergeSplinesMeshAtLastTranslate) == 0x0001F0, "Member 'UHoudiniInputActor::bUsedMergeSplinesMeshAtLastTranslate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameter \ +static_assert(alignof(UHoudiniParameter) == 0x000008, "Wrong alignment on UHoudiniParameter"); \ +static_assert(sizeof(UHoudiniParameter) == 0x000108, "Wrong size on UHoudiniParameter"); \ +static_assert(offsetof(UHoudiniParameter, Name_0) == 0x000028, "Member 'UHoudiniParameter::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, Label) == 0x000038, "Member 'UHoudiniParameter::Label' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ParmType) == 0x000048, "Member 'UHoudiniParameter::ParmType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, TupleSize) == 0x00004C, "Member 'UHoudiniParameter::TupleSize' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, NodeId) == 0x000050, "Member 'UHoudiniParameter::NodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ParmId) == 0x000054, "Member 'UHoudiniParameter::ParmId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ParentParmId) == 0x000058, "Member 'UHoudiniParameter::ParentParmId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ChildIndex) == 0x00005C, "Member 'UHoudiniParameter::ChildIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsVisible) == 0x000060, "Member 'UHoudiniParameter::bIsVisible' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsParentFolderVisible) == 0x000061, "Member 'UHoudiniParameter::bIsParentFolderVisible' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsDisabled) == 0x000062, "Member 'UHoudiniParameter::bIsDisabled' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bHasChanged) == 0x000063, "Member 'UHoudiniParameter::bHasChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bNeedsToTriggerUpdate) == 0x000064, "Member 'UHoudiniParameter::bNeedsToTriggerUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsDefault) == 0x000065, "Member 'UHoudiniParameter::bIsDefault' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsSpare) == 0x000066, "Member 'UHoudiniParameter::bIsSpare' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bJoinNext) == 0x000067, "Member 'UHoudiniParameter::bJoinNext' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsChildOfMultiParm) == 0x000068, "Member 'UHoudiniParameter::bIsChildOfMultiParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bIsDirectChildOfMultiParm) == 0x000069, "Member 'UHoudiniParameter::bIsDirectChildOfMultiParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bPendingRevertToDefault) == 0x00006A, "Member 'UHoudiniParameter::bPendingRevertToDefault' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, TuplePendingRevertToDefault) == 0x000070, "Member 'UHoudiniParameter::TuplePendingRevertToDefault' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, Help) == 0x000080, "Member 'UHoudiniParameter::Help' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, TagCount) == 0x000090, "Member 'UHoudiniParameter::TagCount' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ValueIndex) == 0x000094, "Member 'UHoudiniParameter::ValueIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bHasExpression) == 0x000098, "Member 'UHoudiniParameter::bHasExpression' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bShowExpression) == 0x000099, "Member 'UHoudiniParameter::bShowExpression' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, ParamExpression) == 0x0000A0, "Member 'UHoudiniParameter::ParamExpression' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, Tags) == 0x0000B0, "Member 'UHoudiniParameter::Tags' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameter, bAutoUpdate) == 0x000100, "Member 'UHoudiniParameter::bAutoUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputLevelInstance \ +static_assert(alignof(UHoudiniInputLevelInstance) == 0x000010, "Wrong alignment on UHoudiniInputLevelInstance"); \ +static_assert(sizeof(UHoudiniInputLevelInstance) == 0x000200, "Wrong size on UHoudiniInputLevelInstance"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputLandscape \ +static_assert(alignof(UHoudiniInputLandscape) == 0x000010, "Wrong alignment on UHoudiniInputLandscape"); \ +static_assert(sizeof(UHoudiniInputLandscape) == 0x000200, "Wrong size on UHoudiniInputLandscape"); \ +static_assert(offsetof(UHoudiniInputLandscape, CachedNumLandscapeComponents) == 0x0001F8, "Member 'UHoudiniInputLandscape::CachedNumLandscapeComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputBrush \ +static_assert(alignof(UHoudiniInputBrush) == 0x000010, "Wrong alignment on UHoudiniInputBrush"); \ +static_assert(sizeof(UHoudiniInputBrush) == 0x000220, "Wrong size on UHoudiniInputBrush"); \ +static_assert(offsetof(UHoudiniInputBrush, BrushesInfo) == 0x0001F8, "Member 'UHoudiniInputBrush::BrushesInfo' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBrush, CombinedModel) == 0x000208, "Member 'UHoudiniInputBrush::CombinedModel' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBrush, bIgnoreInputObject) == 0x000210, "Member 'UHoudiniInputBrush::bIgnoreInputObject' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBrush, CachedInputBrushType) == 0x000211, "Member 'UHoudiniInputBrush::CachedInputBrushType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputDataTable \ +static_assert(alignof(UHoudiniInputDataTable) == 0x000010, "Wrong alignment on UHoudiniInputDataTable"); \ +static_assert(sizeof(UHoudiniInputDataTable) == 0x000140, "Wrong size on UHoudiniInputDataTable"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputFoliageType_InstancedStaticMesh \ +static_assert(alignof(UHoudiniInputFoliageType_InstancedStaticMesh) == 0x000010, "Wrong alignment on UHoudiniInputFoliageType_InstancedStaticMesh"); \ +static_assert(sizeof(UHoudiniInputFoliageType_InstancedStaticMesh) == 0x000140, "Wrong size on UHoudiniInputFoliageType_InstancedStaticMesh"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputBlueprint \ +static_assert(alignof(UHoudiniInputBlueprint) == 0x000010, "Wrong alignment on UHoudiniInputBlueprint"); \ +static_assert(sizeof(UHoudiniInputBlueprint) == 0x0001A0, "Wrong size on UHoudiniInputBlueprint"); \ +static_assert(offsetof(UHoudiniInputBlueprint, BPComponents) == 0x000138, "Member 'UHoudiniInputBlueprint::BPComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBlueprint, BPSceneComponents) == 0x000148, "Member 'UHoudiniInputBlueprint::BPSceneComponents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBlueprint, LastUpdateNumComponentsAdded) == 0x000198, "Member 'UHoudiniInputBlueprint::LastUpdateNumComponentsAdded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputBlueprint, LastUpdateNumComponentsRemoved) == 0x00019C, "Member 'UHoudiniInputBlueprint::LastUpdateNumComponentsRemoved' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputLandscapeSplineActor \ +static_assert(alignof(UHoudiniInputLandscapeSplineActor) == 0x000010, "Wrong alignment on UHoudiniInputLandscapeSplineActor"); \ +static_assert(sizeof(UHoudiniInputLandscapeSplineActor) == 0x000200, "Wrong size on UHoudiniInputLandscapeSplineActor"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputLandscapeSplinesComponent \ +static_assert(alignof(UHoudiniInputLandscapeSplinesComponent) == 0x000010, "Wrong alignment on UHoudiniInputLandscapeSplinesComponent"); \ +static_assert(sizeof(UHoudiniInputLandscapeSplinesComponent) == 0x000220, "Wrong size on UHoudiniInputLandscapeSplinesComponent"); \ +static_assert(offsetof(UHoudiniInputLandscapeSplinesComponent, CachedControlPoints) == 0x0001A0, "Member 'UHoudiniInputLandscapeSplinesComponent::CachedControlPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputLandscapeSplinesComponent, CachedSegments) == 0x0001B0, "Member 'UHoudiniInputLandscapeSplinesComponent::CachedSegments' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputLandscapeSplinesComponent, ControlPointIdMap) == 0x0001C0, "Member 'UHoudiniInputLandscapeSplinesComponent::ControlPointIdMap' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputLandscapeSplinesComponent, NextControlPointId) == 0x000210, "Member 'UHoudiniInputLandscapeSplinesComponent::NextControlPointId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInputSplineMeshComponent \ +static_assert(alignof(UHoudiniInputSplineMeshComponent) == 0x000010, "Wrong alignment on UHoudiniInputSplineMeshComponent"); \ +static_assert(sizeof(UHoudiniInputSplineMeshComponent) == 0x0002C0, "Wrong size on UHoudiniInputSplineMeshComponent"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, MeshPackageGuid) == 0x0001C8, "Member 'UHoudiniInputSplineMeshComponent::MeshPackageGuid' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, GeneratedMesh) == 0x0001D8, "Member 'UHoudiniInputSplineMeshComponent::GeneratedMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, CachedForwardAxis) == 0x0001E0, "Member 'UHoudiniInputSplineMeshComponent::CachedForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, CachedSplineParams) == 0x0001E8, "Member 'UHoudiniInputSplineMeshComponent::CachedSplineParams' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, CachedSplineUpDir) == 0x000298, "Member 'UHoudiniInputSplineMeshComponent::CachedSplineUpDir' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, CachedSplineBoundaryMax) == 0x0002B0, "Member 'UHoudiniInputSplineMeshComponent::CachedSplineBoundaryMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInputSplineMeshComponent, CachedSplineBoundaryMin) == 0x0002B4, "Member 'UHoudiniInputSplineMeshComponent::CachedSplineBoundaryMin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniInstancedActorComponent \ +static_assert(alignof(UHoudiniInstancedActorComponent) == 0x000010, "Wrong alignment on UHoudiniInstancedActorComponent"); \ +static_assert(sizeof(UHoudiniInstancedActorComponent) == 0x0002C0, "Wrong size on UHoudiniInstancedActorComponent"); \ +static_assert(offsetof(UHoudiniInstancedActorComponent, InstancedObject) == 0x0002A0, "Member 'UHoudiniInstancedActorComponent::InstancedObject' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniInstancedActorComponent, InstancedActors) == 0x0002A8, "Member 'UHoudiniInstancedActorComponent::InstancedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniMeshSplitInstancerComponent \ +static_assert(alignof(UHoudiniMeshSplitInstancerComponent) == 0x000010, "Wrong alignment on UHoudiniMeshSplitInstancerComponent"); \ +static_assert(sizeof(UHoudiniMeshSplitInstancerComponent) == 0x0002D0, "Wrong size on UHoudiniMeshSplitInstancerComponent"); \ +static_assert(offsetof(UHoudiniMeshSplitInstancerComponent, Instances) == 0x0002A0, "Member 'UHoudiniMeshSplitInstancerComponent::Instances' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniMeshSplitInstancerComponent, OverrideMaterials) == 0x0002B0, "Member 'UHoudiniMeshSplitInstancerComponent::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniMeshSplitInstancerComponent, InstancedMesh) == 0x0002C0, "Member 'UHoudiniMeshSplitInstancerComponent::InstancedMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniLandscapePtr \ +static_assert(alignof(UHoudiniLandscapePtr) == 0x000008, "Wrong alignment on UHoudiniLandscapePtr"); \ +static_assert(sizeof(UHoudiniLandscapePtr) == 0x000060, "Wrong size on UHoudiniLandscapePtr"); \ +static_assert(offsetof(UHoudiniLandscapePtr, LandscapeSoftPtr) == 0x000028, "Member 'UHoudiniLandscapePtr::LandscapeSoftPtr' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapePtr, BakeType) == 0x000050, "Member 'UHoudiniLandscapePtr::BakeType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniLandscapePtr, EditLayerName) == 0x000054, "Member 'UHoudiniLandscapePtr::EditLayerName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterButton \ +static_assert(alignof(UHoudiniParameterButton) == 0x000008, "Wrong alignment on UHoudiniParameterButton"); \ +static_assert(sizeof(UHoudiniParameterButton) == 0x000108, "Wrong size on UHoudiniParameterButton"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterButtonStrip \ +static_assert(alignof(UHoudiniParameterButtonStrip) == 0x000008, "Wrong alignment on UHoudiniParameterButtonStrip"); \ +static_assert(sizeof(UHoudiniParameterButtonStrip) == 0x000130, "Wrong size on UHoudiniParameterButtonStrip"); \ +static_assert(offsetof(UHoudiniParameterButtonStrip, Count) == 0x000108, "Member 'UHoudiniParameterButtonStrip::Count' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterButtonStrip, Labels) == 0x000110, "Member 'UHoudiniParameterButtonStrip::Labels' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterButtonStrip, Values) == 0x000120, "Member 'UHoudiniParameterButtonStrip::Values' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterChoice \ +static_assert(alignof(UHoudiniParameterChoice) == 0x000008, "Wrong alignment on UHoudiniParameterChoice"); \ +static_assert(sizeof(UHoudiniParameterChoice) == 0x000178, "Wrong size on UHoudiniParameterChoice"); \ +static_assert(offsetof(UHoudiniParameterChoice, IntValue) == 0x000108, "Member 'UHoudiniParameterChoice::IntValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, DefaultIntValue) == 0x00010C, "Member 'UHoudiniParameterChoice::DefaultIntValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, StringValue) == 0x000110, "Member 'UHoudiniParameterChoice::StringValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, DefaultStringValue) == 0x000120, "Member 'UHoudiniParameterChoice::DefaultStringValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, StringChoiceValues) == 0x000130, "Member 'UHoudiniParameterChoice::StringChoiceValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, StringChoiceLabels) == 0x000140, "Member 'UHoudiniParameterChoice::StringChoiceLabels' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, bIsChildOfRamp) == 0x000160, "Member 'UHoudiniParameterChoice::bIsChildOfRamp' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterChoice, IntValuesArray) == 0x000168, "Member 'UHoudiniParameterChoice::IntValuesArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterColor \ +static_assert(alignof(UHoudiniParameterColor) == 0x000008, "Wrong alignment on UHoudiniParameterColor"); \ +static_assert(sizeof(UHoudiniParameterColor) == 0x000130, "Wrong size on UHoudiniParameterColor"); \ +static_assert(offsetof(UHoudiniParameterColor, Color) == 0x000108, "Member 'UHoudiniParameterColor::Color' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterColor, DefaultColor) == 0x000118, "Member 'UHoudiniParameterColor::DefaultColor' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterColor, bIsChildOfRamp) == 0x000128, "Member 'UHoudiniParameterColor::bIsChildOfRamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterFile \ +static_assert(alignof(UHoudiniParameterFile) == 0x000008, "Wrong alignment on UHoudiniParameterFile"); \ +static_assert(sizeof(UHoudiniParameterFile) == 0x000140, "Wrong size on UHoudiniParameterFile"); \ +static_assert(offsetof(UHoudiniParameterFile, Values) == 0x000108, "Member 'UHoudiniParameterFile::Values' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFile, DefaultValues) == 0x000118, "Member 'UHoudiniParameterFile::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFile, Filters) == 0x000128, "Member 'UHoudiniParameterFile::Filters' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFile, bIsReadOnly) == 0x000138, "Member 'UHoudiniParameterFile::bIsReadOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterFloat \ +static_assert(alignof(UHoudiniParameterFloat) == 0x000008, "Wrong alignment on UHoudiniParameterFloat"); \ +static_assert(sizeof(UHoudiniParameterFloat) == 0x000158, "Wrong size on UHoudiniParameterFloat"); \ +static_assert(offsetof(UHoudiniParameterFloat, Values) == 0x000108, "Member 'UHoudiniParameterFloat::Values' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, DefaultValues) == 0x000118, "Member 'UHoudiniParameterFloat::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, Unit) == 0x000128, "Member 'UHoudiniParameterFloat::Unit' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bNoSwap) == 0x000138, "Member 'UHoudiniParameterFloat::bNoSwap' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bHasMin) == 0x000139, "Member 'UHoudiniParameterFloat::bHasMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bHasMax) == 0x00013A, "Member 'UHoudiniParameterFloat::bHasMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bHasUIMin) == 0x00013B, "Member 'UHoudiniParameterFloat::bHasUIMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bHasUIMax) == 0x00013C, "Member 'UHoudiniParameterFloat::bHasUIMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bIsLogarithmic) == 0x00013D, "Member 'UHoudiniParameterFloat::bIsLogarithmic' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, Min) == 0x000140, "Member 'UHoudiniParameterFloat::Min' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, Max) == 0x000144, "Member 'UHoudiniParameterFloat::Max' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, UIMin) == 0x000148, "Member 'UHoudiniParameterFloat::UIMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, UIMax) == 0x00014C, "Member 'UHoudiniParameterFloat::UIMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFloat, bIsChildOfRamp) == 0x000150, "Member 'UHoudiniParameterFloat::bIsChildOfRamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterFolder \ +static_assert(alignof(UHoudiniParameterFolder) == 0x000008, "Wrong alignment on UHoudiniParameterFolder"); \ +static_assert(sizeof(UHoudiniParameterFolder) == 0x000118, "Wrong size on UHoudiniParameterFolder"); \ +static_assert(offsetof(UHoudiniParameterFolder, FolderType) == 0x000108, "Member 'UHoudiniParameterFolder::FolderType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolder, bExpanded) == 0x000109, "Member 'UHoudiniParameterFolder::bExpanded' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolder, bChosen) == 0x00010A, "Member 'UHoudiniParameterFolder::bChosen' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolder, ChildCounter) == 0x00010C, "Member 'UHoudiniParameterFolder::ChildCounter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolder, bIsContentShown) == 0x000110, "Member 'UHoudiniParameterFolder::bIsContentShown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterFolderList \ +static_assert(alignof(UHoudiniParameterFolderList) == 0x000008, "Wrong alignment on UHoudiniParameterFolderList"); \ +static_assert(sizeof(UHoudiniParameterFolderList) == 0x000120, "Wrong size on UHoudiniParameterFolderList"); \ +static_assert(offsetof(UHoudiniParameterFolderList, bIsTabMenu) == 0x000108, "Member 'UHoudiniParameterFolderList::bIsTabMenu' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolderList, bIsTabsShown) == 0x000109, "Member 'UHoudiniParameterFolderList::bIsTabsShown' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterFolderList, TabFolders) == 0x000110, "Member 'UHoudiniParameterFolderList::TabFolders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterInt \ +static_assert(alignof(UHoudiniParameterInt) == 0x000008, "Wrong alignment on UHoudiniParameterInt"); \ +static_assert(sizeof(UHoudiniParameterInt) == 0x000150, "Wrong size on UHoudiniParameterInt"); \ +static_assert(offsetof(UHoudiniParameterInt, Values) == 0x000108, "Member 'UHoudiniParameterInt::Values' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, DefaultValues) == 0x000118, "Member 'UHoudiniParameterInt::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, Unit) == 0x000128, "Member 'UHoudiniParameterInt::Unit' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, bHasMin) == 0x000138, "Member 'UHoudiniParameterInt::bHasMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, bHasMax) == 0x000139, "Member 'UHoudiniParameterInt::bHasMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, bHasUIMin) == 0x00013A, "Member 'UHoudiniParameterInt::bHasUIMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, bHasUIMax) == 0x00013B, "Member 'UHoudiniParameterInt::bHasUIMax' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, bIsLogarithmic) == 0x00013C, "Member 'UHoudiniParameterInt::bIsLogarithmic' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, Min) == 0x000140, "Member 'UHoudiniParameterInt::Min' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, Max) == 0x000144, "Member 'UHoudiniParameterInt::Max' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, UIMin) == 0x000148, "Member 'UHoudiniParameterInt::UIMin' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterInt, UIMax) == 0x00014C, "Member 'UHoudiniParameterInt::UIMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterLabel \ +static_assert(alignof(UHoudiniParameterLabel) == 0x000008, "Wrong alignment on UHoudiniParameterLabel"); \ +static_assert(sizeof(UHoudiniParameterLabel) == 0x000118, "Wrong size on UHoudiniParameterLabel"); \ +static_assert(offsetof(UHoudiniParameterLabel, LabelStrings) == 0x000108, "Member 'UHoudiniParameterLabel::LabelStrings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterMultiParm \ +static_assert(alignof(UHoudiniParameterMultiParm) == 0x000008, "Wrong alignment on UHoudiniParameterMultiParm"); \ +static_assert(sizeof(UHoudiniParameterMultiParm) == 0x000150, "Wrong size on UHoudiniParameterMultiParm"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, bIsShown) == 0x000108, "Member 'UHoudiniParameterMultiParm::bIsShown' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, Value) == 0x00010C, "Member 'UHoudiniParameterMultiParm::Value' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, TemplateName) == 0x000110, "Member 'UHoudiniParameterMultiParm::TemplateName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, MultiparmValue) == 0x000120, "Member 'UHoudiniParameterMultiParm::MultiparmValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, MultiParmInstanceNum) == 0x000124, "Member 'UHoudiniParameterMultiParm::MultiParmInstanceNum' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, MultiParmInstanceLength) == 0x000128, "Member 'UHoudiniParameterMultiParm::MultiParmInstanceLength' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, MultiParmInstanceCount) == 0x00012C, "Member 'UHoudiniParameterMultiParm::MultiParmInstanceCount' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, InstanceStartOffset) == 0x000130, "Member 'UHoudiniParameterMultiParm::InstanceStartOffset' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, MultiParmInstanceLastModifyArray) == 0x000138, "Member 'UHoudiniParameterMultiParm::MultiParmInstanceLastModifyArray' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterMultiParm, DefaultInstanceCount) == 0x000148, "Member 'UHoudiniParameterMultiParm::DefaultInstanceCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterOperatorPath \ +static_assert(alignof(UHoudiniParameterOperatorPath) == 0x000008, "Wrong alignment on UHoudiniParameterOperatorPath"); \ +static_assert(sizeof(UHoudiniParameterOperatorPath) == 0x000110, "Wrong size on UHoudiniParameterOperatorPath"); \ +static_assert(offsetof(UHoudiniParameterOperatorPath, HoudiniInput) == 0x000108, "Member 'UHoudiniParameterOperatorPath::HoudiniInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterRampModificationEvent \ +static_assert(alignof(UHoudiniParameterRampModificationEvent) == 0x000008, "Wrong alignment on UHoudiniParameterRampModificationEvent"); \ +static_assert(sizeof(UHoudiniParameterRampModificationEvent) == 0x000050, "Wrong size on UHoudiniParameterRampModificationEvent"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, bIsInsertEvent) == 0x000028, "Member 'UHoudiniParameterRampModificationEvent::bIsInsertEvent' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, bIsFloatRamp) == 0x000029, "Member 'UHoudiniParameterRampModificationEvent::bIsFloatRamp' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, DeleteInstanceIndex) == 0x00002C, "Member 'UHoudiniParameterRampModificationEvent::DeleteInstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, InsertPosition) == 0x000030, "Member 'UHoudiniParameterRampModificationEvent::InsertPosition' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, InsertFloat) == 0x000034, "Member 'UHoudiniParameterRampModificationEvent::InsertFloat' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, InsertColor) == 0x000038, "Member 'UHoudiniParameterRampModificationEvent::InsertColor' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampModificationEvent, InsertInterpolation) == 0x000048, "Member 'UHoudiniParameterRampModificationEvent::InsertInterpolation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterRampFloatPoint \ +static_assert(alignof(UHoudiniParameterRampFloatPoint) == 0x000008, "Wrong alignment on UHoudiniParameterRampFloatPoint"); \ +static_assert(sizeof(UHoudiniParameterRampFloatPoint) == 0x000050, "Wrong size on UHoudiniParameterRampFloatPoint"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, Position) == 0x000028, "Member 'UHoudiniParameterRampFloatPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, Value) == 0x00002C, "Member 'UHoudiniParameterRampFloatPoint::Value' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, Interpolation) == 0x000030, "Member 'UHoudiniParameterRampFloatPoint::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, InstanceIndex) == 0x000034, "Member 'UHoudiniParameterRampFloatPoint::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, PositionParentParm) == 0x000038, "Member 'UHoudiniParameterRampFloatPoint::PositionParentParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, ValueParentParm) == 0x000040, "Member 'UHoudiniParameterRampFloatPoint::ValueParentParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloatPoint, InterpolationParentParm) == 0x000048, "Member 'UHoudiniParameterRampFloatPoint::InterpolationParentParm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterRampColorPoint \ +static_assert(alignof(UHoudiniParameterRampColorPoint) == 0x000008, "Wrong alignment on UHoudiniParameterRampColorPoint"); \ +static_assert(sizeof(UHoudiniParameterRampColorPoint) == 0x000060, "Wrong size on UHoudiniParameterRampColorPoint"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, Position) == 0x000028, "Member 'UHoudiniParameterRampColorPoint::Position' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, Value) == 0x00002C, "Member 'UHoudiniParameterRampColorPoint::Value' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, Interpolation) == 0x00003C, "Member 'UHoudiniParameterRampColorPoint::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, InstanceIndex) == 0x000040, "Member 'UHoudiniParameterRampColorPoint::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, PositionParentParm) == 0x000048, "Member 'UHoudiniParameterRampColorPoint::PositionParentParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, ValueParentParm) == 0x000050, "Member 'UHoudiniParameterRampColorPoint::ValueParentParm' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColorPoint, InterpolationParentParm) == 0x000058, "Member 'UHoudiniParameterRampColorPoint::InterpolationParentParm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterRampFloat \ +static_assert(alignof(UHoudiniParameterRampFloat) == 0x000008, "Wrong alignment on UHoudiniParameterRampFloat"); \ +static_assert(sizeof(UHoudiniParameterRampFloat) == 0x0001B8, "Wrong size on UHoudiniParameterRampFloat"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, Points) == 0x000150, "Member 'UHoudiniParameterRampFloat::Points' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, CachedPoints) == 0x000160, "Member 'UHoudiniParameterRampFloat::CachedPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, DefaultPositions) == 0x000170, "Member 'UHoudiniParameterRampFloat::DefaultPositions' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, DefaultValues) == 0x000180, "Member 'UHoudiniParameterRampFloat::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, DefaultChoices) == 0x000190, "Member 'UHoudiniParameterRampFloat::DefaultChoices' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, NumDefaultPoints) == 0x0001A0, "Member 'UHoudiniParameterRampFloat::NumDefaultPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, bCaching) == 0x0001A4, "Member 'UHoudiniParameterRampFloat::bCaching' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampFloat, ModificationEvents) == 0x0001A8, "Member 'UHoudiniParameterRampFloat::ModificationEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterRampColor \ +static_assert(alignof(UHoudiniParameterRampColor) == 0x000008, "Wrong alignment on UHoudiniParameterRampColor"); \ +static_assert(sizeof(UHoudiniParameterRampColor) == 0x0001C0, "Wrong size on UHoudiniParameterRampColor"); \ +static_assert(offsetof(UHoudiniParameterRampColor, Points) == 0x000150, "Member 'UHoudiniParameterRampColor::Points' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, bCaching) == 0x000160, "Member 'UHoudiniParameterRampColor::bCaching' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, CachedPoints) == 0x000168, "Member 'UHoudiniParameterRampColor::CachedPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, DefaultPositions) == 0x000178, "Member 'UHoudiniParameterRampColor::DefaultPositions' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, DefaultValues) == 0x000188, "Member 'UHoudiniParameterRampColor::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, DefaultChoices) == 0x000198, "Member 'UHoudiniParameterRampColor::DefaultChoices' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, NumDefaultPoints) == 0x0001A8, "Member 'UHoudiniParameterRampColor::NumDefaultPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterRampColor, ModificationEvents) == 0x0001B0, "Member 'UHoudiniParameterRampColor::ModificationEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterSeparator \ +static_assert(alignof(UHoudiniParameterSeparator) == 0x000008, "Wrong alignment on UHoudiniParameterSeparator"); \ +static_assert(sizeof(UHoudiniParameterSeparator) == 0x000108, "Wrong size on UHoudiniParameterSeparator"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterString \ +static_assert(alignof(UHoudiniParameterString) == 0x000008, "Wrong alignment on UHoudiniParameterString"); \ +static_assert(sizeof(UHoudiniParameterString) == 0x000140, "Wrong size on UHoudiniParameterString"); \ +static_assert(offsetof(UHoudiniParameterString, Values) == 0x000108, "Member 'UHoudiniParameterString::Values' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterString, DefaultValues) == 0x000118, "Member 'UHoudiniParameterString::DefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterString, ChosenAssets) == 0x000128, "Member 'UHoudiniParameterString::ChosenAssets' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterString, bIsAssetRef) == 0x000138, "Member 'UHoudiniParameterString::bIsAssetRef' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniParameterToggle \ +static_assert(alignof(UHoudiniParameterToggle) == 0x000008, "Wrong alignment on UHoudiniParameterToggle"); \ +static_assert(sizeof(UHoudiniParameterToggle) == 0x000128, "Wrong size on UHoudiniParameterToggle"); \ +static_assert(offsetof(UHoudiniParameterToggle, Values) == 0x000108, "Member 'UHoudiniParameterToggle::Values' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniParameterToggle, DefaultValues) == 0x000118, "Member 'UHoudiniParameterToggle::DefaultValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTOPNode \ +static_assert(alignof(UTOPNode) == 0x000008, "Wrong alignment on UTOPNode"); \ +static_assert(sizeof(UTOPNode) == 0x0003F0, "Wrong size on UTOPNode"); \ +static_assert(offsetof(UTOPNode, NodeId) == 0x000028, "Member 'UTOPNode::NodeId' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, NodeName) == 0x000030, "Member 'UTOPNode::NodeName' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, NodePath) == 0x000040, "Member 'UTOPNode::NodePath' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, ParentName) == 0x000050, "Member 'UTOPNode::ParentName' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, WorkResultParent) == 0x000060, "Member 'UTOPNode::WorkResultParent' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, WorkResult) == 0x000068, "Member 'UTOPNode::WorkResult' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bHidden) == 0x000078, "Member 'UTOPNode::bHidden' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bAutoLoad) == 0x000079, "Member 'UTOPNode::bAutoLoad' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, NodeState) == 0x00007A, "Member 'UTOPNode::NodeState' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bCachedHaveNotLoadedWorkResults) == 0x00007B, "Member 'UTOPNode::bCachedHaveNotLoadedWorkResults' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bCachedHaveLoadedWorkResults) == 0x00007C, "Member 'UTOPNode::bCachedHaveLoadedWorkResults' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bHasChildNodes) == 0x00007D, "Member 'UTOPNode::bHasChildNodes' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, ClearedLandscapeLayers) == 0x000080, "Member 'UTOPNode::ClearedLandscapeLayers' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, ClearedLayers) == 0x0000D0, "Member 'UTOPNode::ClearedLayers' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bShow) == 0x000120, "Member 'UTOPNode::bShow' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, BakedWorkResultObjectOutputs) == 0x000128, "Member 'UTOPNode::BakedWorkResultObjectOutputs' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, WorkItemTally) == 0x000178, "Member 'UTOPNode::WorkItemTally' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, AggregatedWorkItemTally) == 0x0003B0, "Member 'UTOPNode::AggregatedWorkItemTally' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, bHasReceivedCookCompleteEvent) == 0x0003D8, "Member 'UTOPNode::bHasReceivedCookCompleteEvent' has a wrong offset!"); \ +static_assert(offsetof(UTOPNode, OutputActorOwner) == 0x0003E0, "Member 'UTOPNode::OutputActorOwner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniPDGAssetLink \ +static_assert(alignof(UHoudiniPDGAssetLink) == 0x000008, "Wrong alignment on UHoudiniPDGAssetLink"); \ +static_assert(sizeof(UHoudiniPDGAssetLink) == 0x000138, "Wrong size on UHoudiniPDGAssetLink"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, AssetName) == 0x000028, "Member 'UHoudiniPDGAssetLink::AssetName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, AssetNodePath) == 0x000038, "Member 'UHoudiniPDGAssetLink::AssetNodePath' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, AssetId) == 0x000048, "Member 'UHoudiniPDGAssetLink::AssetId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, AllTOPNetworks) == 0x000050, "Member 'UHoudiniPDGAssetLink::AllTOPNetworks' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, SelectedTOPNetworkIndex) == 0x000060, "Member 'UHoudiniPDGAssetLink::SelectedTOPNetworkIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, LinkState) == 0x000064, "Member 'UHoudiniPDGAssetLink::LinkState' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, bAutoCook) == 0x000065, "Member 'UHoudiniPDGAssetLink::bAutoCook' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, bUseTOPNodeFilter) == 0x000066, "Member 'UHoudiniPDGAssetLink::bUseTOPNodeFilter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, bUseTOPOutputFilter) == 0x000067, "Member 'UHoudiniPDGAssetLink::bUseTOPOutputFilter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, TOPNodeFilter) == 0x000068, "Member 'UHoudiniPDGAssetLink::TOPNodeFilter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, TOPOutputFilter) == 0x000078, "Member 'UHoudiniPDGAssetLink::TOPOutputFilter' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, NumWorkItems) == 0x000088, "Member 'UHoudiniPDGAssetLink::NumWorkItems' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, WorkItemTally) == 0x000090, "Member 'UHoudiniPDGAssetLink::WorkItemTally' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, OutputCachePath) == 0x0000B8, "Member 'UHoudiniPDGAssetLink::OutputCachePath' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, bNeedsUIRefresh) == 0x0000C8, "Member 'UHoudiniPDGAssetLink::bNeedsUIRefresh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, OutputParentActor) == 0x0000D0, "Member 'UHoudiniPDGAssetLink::OutputParentActor' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, BakeFolder) == 0x0000D8, "Member 'UHoudiniPDGAssetLink::BakeFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, NumAttemptedNodeAutoBakes) == 0x000130, "Member 'UHoudiniPDGAssetLink::NumAttemptedNodeAutoBakes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPDGAssetLink, NumSuccessfulNodeAutoBakes) == 0x000134, "Member 'UHoudiniPDGAssetLink::NumSuccessfulNodeAutoBakes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniRuntimeSettings \ +static_assert(alignof(UHoudiniRuntimeSettings) == 0x000008, "Wrong alignment on UHoudiniRuntimeSettings"); \ +static_assert(sizeof(UHoudiniRuntimeSettings) == 0x000340, "Wrong size on UHoudiniRuntimeSettings"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, SessionType) == 0x000028, "Member 'UHoudiniRuntimeSettings::SessionType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, ServerHost) == 0x000030, "Member 'UHoudiniRuntimeSettings::ServerHost' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, ServerPort) == 0x000040, "Member 'UHoudiniRuntimeSettings::ServerPort' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, ServerPipeName) == 0x000048, "Member 'UHoudiniRuntimeSettings::ServerPipeName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bStartAutomaticServer) == 0x000058, "Member 'UHoudiniRuntimeSettings::bStartAutomaticServer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, AutomaticServerTimeout) == 0x00005C, "Member 'UHoudiniRuntimeSettings::AutomaticServerTimeout' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bSyncWithHoudiniCook) == 0x000060, "Member 'UHoudiniRuntimeSettings::bSyncWithHoudiniCook' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bCookUsingHoudiniTime) == 0x000061, "Member 'UHoudiniRuntimeSettings::bCookUsingHoudiniTime' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bSyncViewport) == 0x000062, "Member 'UHoudiniRuntimeSettings::bSyncViewport' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bSyncHoudiniViewport) == 0x000063, "Member 'UHoudiniRuntimeSettings::bSyncHoudiniViewport' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bSyncUnrealViewport) == 0x000064, "Member 'UHoudiniRuntimeSettings::bSyncUnrealViewport' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bShowMultiAssetDialog) == 0x000065, "Member 'UHoudiniRuntimeSettings::bShowMultiAssetDialog' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bPreferHdaMemoryCopyOverHdaSourceFile) == 0x000066, "Member 'UHoudiniRuntimeSettings::bPreferHdaMemoryCopyOverHdaSourceFile' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bPauseCookingOnStart) == 0x000067, "Member 'UHoudiniRuntimeSettings::bPauseCookingOnStart' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bDisplaySlateCookingNotifications) == 0x000068, "Member 'UHoudiniRuntimeSettings::bDisplaySlateCookingNotifications' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DefaultTemporaryCookFolder) == 0x000070, "Member 'UHoudiniRuntimeSettings::DefaultTemporaryCookFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DefaultBakeFolder) == 0x000080, "Member 'UHoudiniRuntimeSettings::DefaultBakeFolder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableTheReferenceCountedInputSystem) == 0x000090, "Member 'UHoudiniRuntimeSettings::bEnableTheReferenceCountedInputSystem' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingLandscapesUseDefaultUnrealScaling) == 0x000091, "Member 'UHoudiniRuntimeSettings::MarshallingLandscapesUseDefaultUnrealScaling' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingLandscapesUseFullResolution) == 0x000092, "Member 'UHoudiniRuntimeSettings::MarshallingLandscapesUseFullResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingLandscapesForceMinMaxValues) == 0x000093, "Member 'UHoudiniRuntimeSettings::MarshallingLandscapesForceMinMaxValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingLandscapesForcedMinValue) == 0x000094, "Member 'UHoudiniRuntimeSettings::MarshallingLandscapesForcedMinValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingLandscapesForcedMaxValue) == 0x000098, "Member 'UHoudiniRuntimeSettings::MarshallingLandscapesForcedMaxValue' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bAddRotAndScaleAttributesOnCurves) == 0x00009C, "Member 'UHoudiniRuntimeSettings::bAddRotAndScaleAttributesOnCurves' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bUseLegacyInputCurves) == 0x00009D, "Member 'UHoudiniRuntimeSettings::bUseLegacyInputCurves' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MarshallingSplineResolution) == 0x0000A0, "Member 'UHoudiniRuntimeSettings::MarshallingSplineResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableProxyStaticMesh) == 0x0000A4, "Member 'UHoudiniRuntimeSettings::bEnableProxyStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bShowDefaultMesh) == 0x0000A5, "Member 'UHoudiniRuntimeSettings::bShowDefaultMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bPreferNaniteFallbackMesh) == 0x0000A6, "Member 'UHoudiniRuntimeSettings::bPreferNaniteFallbackMesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableProxyStaticMeshRefinementByTimer) == 0x0000A7, "Member 'UHoudiniRuntimeSettings::bEnableProxyStaticMeshRefinementByTimer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, ProxyMeshAutoRefineTimeoutSeconds) == 0x0000A8, "Member 'UHoudiniRuntimeSettings::ProxyMeshAutoRefineTimeoutSeconds' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableProxyStaticMeshRefinementOnPreSaveWorld) == 0x0000AC, "Member 'UHoudiniRuntimeSettings::bEnableProxyStaticMeshRefinementOnPreSaveWorld' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableProxyStaticMeshRefinementOnPreBeginPIE) == 0x0000AD, "Member 'UHoudiniRuntimeSettings::bEnableProxyStaticMeshRefinementOnPreBeginPIE' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, PhysMaterial) == 0x0000B8, "Member 'UHoudiniRuntimeSettings::PhysMaterial' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DefaultBodyInstance) == 0x0000C0, "Member 'UHoudiniRuntimeSettings::DefaultBodyInstance' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, CollisionTraceFlag) == 0x000250, "Member 'UHoudiniRuntimeSettings::CollisionTraceFlag' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, LightMapResolution) == 0x000254, "Member 'UHoudiniRuntimeSettings::LightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, LpvBiasMultiplier) == 0x000258, "Member 'UHoudiniRuntimeSettings::LpvBiasMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, GeneratedDistanceFieldResolutionScale) == 0x00025C, "Member 'UHoudiniRuntimeSettings::GeneratedDistanceFieldResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, WalkableSlopeOverride) == 0x000260, "Member 'UHoudiniRuntimeSettings::WalkableSlopeOverride' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, LightMapCoordinateIndex) == 0x000270, "Member 'UHoudiniRuntimeSettings::LightMapCoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, StreamingDistanceMultiplier) == 0x000278, "Member 'UHoudiniRuntimeSettings::StreamingDistanceMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, FoliageDefaultSettings) == 0x000280, "Member 'UHoudiniRuntimeSettings::FoliageDefaultSettings' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, AssetUserData) == 0x000288, "Member 'UHoudiniRuntimeSettings::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bUseFullPrecisionUVs) == 0x000298, "Member 'UHoudiniRuntimeSettings::bUseFullPrecisionUVs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, SrcLightmapIndex) == 0x00029C, "Member 'UHoudiniRuntimeSettings::SrcLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DstLightmapIndex) == 0x0002A0, "Member 'UHoudiniRuntimeSettings::DstLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, MinLightmapResolution) == 0x0002A4, "Member 'UHoudiniRuntimeSettings::MinLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bRemoveDegenerates) == 0x0002A8, "Member 'UHoudiniRuntimeSettings::bRemoveDegenerates' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, GenerateLightmapUVsFlag) == 0x0002A9, "Member 'UHoudiniRuntimeSettings::GenerateLightmapUVsFlag' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, RecomputeNormalsFlag) == 0x0002AA, "Member 'UHoudiniRuntimeSettings::RecomputeNormalsFlag' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, RecomputeTangentsFlag) == 0x0002AB, "Member 'UHoudiniRuntimeSettings::RecomputeTangentsFlag' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bUseMikkTSpace) == 0x0002AC, "Member 'UHoudiniRuntimeSettings::bUseMikkTSpace' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bBuildAdjacencyBuffer) == 0x0002AD, "Member 'UHoudiniRuntimeSettings::bBuildAdjacencyBuffer' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DistanceFieldResolutionScale) == 0x0002B0, "Member 'UHoudiniRuntimeSettings::DistanceFieldResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bPDGAsyncCommandletImportEnabled) == 0x0002B5, "Member 'UHoudiniRuntimeSettings::bPDGAsyncCommandletImportEnabled' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bEnableBackwardCompatibility) == 0x0002B6, "Member 'UHoudiniRuntimeSettings::bEnableBackwardCompatibility' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bAutomaticLegacyHDARebuild) == 0x0002B7, "Member 'UHoudiniRuntimeSettings::bAutomaticLegacyHDARebuild' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, bUseCustomHoudiniLocation) == 0x0002B8, "Member 'UHoudiniRuntimeSettings::bUseCustomHoudiniLocation' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, CustomHoudiniLocation) == 0x0002C0, "Member 'UHoudiniRuntimeSettings::CustomHoudiniLocation' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, HoudiniExecutable) == 0x0002D0, "Member 'UHoudiniRuntimeSettings::HoudiniExecutable' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, CustomHoudiniHomeLocation) == 0x0002D8, "Member 'UHoudiniRuntimeSettings::CustomHoudiniHomeLocation' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, CookingThreadStackSize) == 0x0002E8, "Member 'UHoudiniRuntimeSettings::CookingThreadStackSize' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, HoudiniEnvironmentFiles) == 0x0002F0, "Member 'UHoudiniRuntimeSettings::HoudiniEnvironmentFiles' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, OtlSearchPath) == 0x000300, "Member 'UHoudiniRuntimeSettings::OtlSearchPath' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, DsoSearchPath) == 0x000310, "Member 'UHoudiniRuntimeSettings::DsoSearchPath' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, ImageDsoSearchPath) == 0x000320, "Member 'UHoudiniRuntimeSettings::ImageDsoSearchPath' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniRuntimeSettings, AudioDsoSearchPath) == 0x000330, "Member 'UHoudiniRuntimeSettings::AudioDsoSearchPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniSplineComponent \ +static_assert(alignof(UHoudiniSplineComponent) == 0x000010, "Wrong alignment on UHoudiniSplineComponent"); \ +static_assert(sizeof(UHoudiniSplineComponent) == 0x0005B0, "Wrong size on UHoudiniSplineComponent"); \ +static_assert(offsetof(UHoudiniSplineComponent, CurvePoints) == 0x0002A8, "Member 'UHoudiniSplineComponent::CurvePoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, DisplayPoints) == 0x0002B8, "Member 'UHoudiniSplineComponent::DisplayPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, DisplayPointIndexDivider) == 0x0002C8, "Member 'UHoudiniSplineComponent::DisplayPointIndexDivider' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, HoudiniSplineName) == 0x0002D8, "Member 'UHoudiniSplineComponent::HoudiniSplineName' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bClosed) == 0x0002E8, "Member 'UHoudiniSplineComponent::bClosed' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bReversed) == 0x0002E9, "Member 'UHoudiniSplineComponent::bReversed' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, CurveOrder) == 0x0002EC, "Member 'UHoudiniSplineComponent::CurveOrder' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bIsHoudiniSplineVisible) == 0x0002F0, "Member 'UHoudiniSplineComponent::bIsHoudiniSplineVisible' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, CurveType) == 0x0002F1, "Member 'UHoudiniSplineComponent::CurveType' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, CurveMethod) == 0x0002F2, "Member 'UHoudiniSplineComponent::CurveMethod' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, CurveBreakpointParameterization) == 0x0002F3, "Member 'UHoudiniSplineComponent::CurveBreakpointParameterization' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bIsOutputCurve) == 0x0002F4, "Member 'UHoudiniSplineComponent::bIsOutputCurve' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bCookOnCurveChanged) == 0x0002F5, "Member 'UHoudiniSplineComponent::bCookOnCurveChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bIsLegacyInputCurve) == 0x0002F6, "Member 'UHoudiniSplineComponent::bIsLegacyInputCurve' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bHasChanged) == 0x000590, "Member 'UHoudiniSplineComponent::bHasChanged' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bNeedsToTriggerUpdate) == 0x000591, "Member 'UHoudiniSplineComponent::bNeedsToTriggerUpdate' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bIsInputCurve) == 0x000592, "Member 'UHoudiniSplineComponent::bIsInputCurve' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, bIsEditableOutputCurve) == 0x000593, "Member 'UHoudiniSplineComponent::bIsEditableOutputCurve' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, NodeId) == 0x000594, "Member 'UHoudiniSplineComponent::NodeId' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniSplineComponent, PartName) == 0x000598, "Member 'UHoudiniSplineComponent::PartName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_AddStaticMaterial \ +static_assert(alignof(HoudiniStaticMesh_AddStaticMaterial) == 0x000008, "Wrong alignment on HoudiniStaticMesh_AddStaticMaterial"); \ +static_assert(sizeof(HoudiniStaticMesh_AddStaticMaterial) == 0x000038, "Wrong size on HoudiniStaticMesh_AddStaticMaterial"); \ +static_assert(offsetof(HoudiniStaticMesh_AddStaticMaterial, InStaticMaterial) == 0x000000, "Member 'HoudiniStaticMesh_AddStaticMaterial::InStaticMaterial' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_AddStaticMaterial, ReturnValue) == 0x000030, "Member 'HoudiniStaticMesh_AddStaticMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_CalculateNormals \ +static_assert(alignof(HoudiniStaticMesh_CalculateNormals) == 0x000001, "Wrong alignment on HoudiniStaticMesh_CalculateNormals"); \ +static_assert(sizeof(HoudiniStaticMesh_CalculateNormals) == 0x000001, "Wrong size on HoudiniStaticMesh_CalculateNormals"); \ +static_assert(offsetof(HoudiniStaticMesh_CalculateNormals, bInComputeWeightedNormals) == 0x000000, "Member 'HoudiniStaticMesh_CalculateNormals::bInComputeWeightedNormals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_CalculateTangents \ +static_assert(alignof(HoudiniStaticMesh_CalculateTangents) == 0x000001, "Wrong alignment on HoudiniStaticMesh_CalculateTangents"); \ +static_assert(sizeof(HoudiniStaticMesh_CalculateTangents) == 0x000001, "Wrong size on HoudiniStaticMesh_CalculateTangents"); \ +static_assert(offsetof(HoudiniStaticMesh_CalculateTangents, bInComputeWeightedNormals) == 0x000000, "Member 'HoudiniStaticMesh_CalculateTangents::bInComputeWeightedNormals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetMaterial \ +static_assert(alignof(HoudiniStaticMesh_GetMaterial) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetMaterial"); \ +static_assert(sizeof(HoudiniStaticMesh_GetMaterial) == 0x000010, "Wrong size on HoudiniStaticMesh_GetMaterial"); \ +static_assert(offsetof(HoudiniStaticMesh_GetMaterial, InMaterialIndex) == 0x000000, "Member 'HoudiniStaticMesh_GetMaterial::InMaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_GetMaterial, ReturnValue) == 0x000008, "Member 'HoudiniStaticMesh_GetMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_Initialize \ +static_assert(alignof(HoudiniStaticMesh_Initialize) == 0x000004, "Wrong alignment on HoudiniStaticMesh_Initialize"); \ +static_assert(sizeof(HoudiniStaticMesh_Initialize) == 0x000014, "Wrong size on HoudiniStaticMesh_Initialize"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, InNumVertices) == 0x000000, "Member 'HoudiniStaticMesh_Initialize::InNumVertices' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, InNumTriangles) == 0x000004, "Member 'HoudiniStaticMesh_Initialize::InNumTriangles' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, InNumUVLayers) == 0x000008, "Member 'HoudiniStaticMesh_Initialize::InNumUVLayers' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, InInitialNumStaticMaterials) == 0x00000C, "Member 'HoudiniStaticMesh_Initialize::InInitialNumStaticMaterials' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, bInHasNormals) == 0x000010, "Member 'HoudiniStaticMesh_Initialize::bInHasNormals' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, bInHasTangents) == 0x000011, "Member 'HoudiniStaticMesh_Initialize::bInHasTangents' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, bInHasColors) == 0x000012, "Member 'HoudiniStaticMesh_Initialize::bInHasColors' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_Initialize, bInHasPerFaceMaterials) == 0x000013, "Member 'HoudiniStaticMesh_Initialize::bInHasPerFaceMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetHasColors \ +static_assert(alignof(HoudiniStaticMesh_SetHasColors) == 0x000001, "Wrong alignment on HoudiniStaticMesh_SetHasColors"); \ +static_assert(sizeof(HoudiniStaticMesh_SetHasColors) == 0x000001, "Wrong size on HoudiniStaticMesh_SetHasColors"); \ +static_assert(offsetof(HoudiniStaticMesh_SetHasColors, bInHasColors) == 0x000000, "Member 'HoudiniStaticMesh_SetHasColors::bInHasColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetHasNormals \ +static_assert(alignof(HoudiniStaticMesh_SetHasNormals) == 0x000001, "Wrong alignment on HoudiniStaticMesh_SetHasNormals"); \ +static_assert(sizeof(HoudiniStaticMesh_SetHasNormals) == 0x000001, "Wrong size on HoudiniStaticMesh_SetHasNormals"); \ +static_assert(offsetof(HoudiniStaticMesh_SetHasNormals, bInHasNormals) == 0x000000, "Member 'HoudiniStaticMesh_SetHasNormals::bInHasNormals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetHasPerFaceMaterials \ +static_assert(alignof(HoudiniStaticMesh_SetHasPerFaceMaterials) == 0x000001, "Wrong alignment on HoudiniStaticMesh_SetHasPerFaceMaterials"); \ +static_assert(sizeof(HoudiniStaticMesh_SetHasPerFaceMaterials) == 0x000001, "Wrong size on HoudiniStaticMesh_SetHasPerFaceMaterials"); \ +static_assert(offsetof(HoudiniStaticMesh_SetHasPerFaceMaterials, bInHasPerFaceMaterials) == 0x000000, "Member 'HoudiniStaticMesh_SetHasPerFaceMaterials::bInHasPerFaceMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetHasTangents \ +static_assert(alignof(HoudiniStaticMesh_SetHasTangents) == 0x000001, "Wrong alignment on HoudiniStaticMesh_SetHasTangents"); \ +static_assert(sizeof(HoudiniStaticMesh_SetHasTangents) == 0x000001, "Wrong size on HoudiniStaticMesh_SetHasTangents"); \ +static_assert(offsetof(HoudiniStaticMesh_SetHasTangents, bInHasTangents) == 0x000000, "Member 'HoudiniStaticMesh_SetHasTangents::bInHasTangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetNumStaticMaterials \ +static_assert(alignof(HoudiniStaticMesh_SetNumStaticMaterials) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetNumStaticMaterials"); \ +static_assert(sizeof(HoudiniStaticMesh_SetNumStaticMaterials) == 0x000004, "Wrong size on HoudiniStaticMesh_SetNumStaticMaterials"); \ +static_assert(offsetof(HoudiniStaticMesh_SetNumStaticMaterials, InNumStaticMaterials) == 0x000000, "Member 'HoudiniStaticMesh_SetNumStaticMaterials::InNumStaticMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetNumUVLayers \ +static_assert(alignof(HoudiniStaticMesh_SetNumUVLayers) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetNumUVLayers"); \ +static_assert(sizeof(HoudiniStaticMesh_SetNumUVLayers) == 0x000004, "Wrong size on HoudiniStaticMesh_SetNumUVLayers"); \ +static_assert(offsetof(HoudiniStaticMesh_SetNumUVLayers, InNumUVLayers) == 0x000000, "Member 'HoudiniStaticMesh_SetNumUVLayers::InNumUVLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetStaticMaterial \ +static_assert(alignof(HoudiniStaticMesh_SetStaticMaterial) == 0x000008, "Wrong alignment on HoudiniStaticMesh_SetStaticMaterial"); \ +static_assert(sizeof(HoudiniStaticMesh_SetStaticMaterial) == 0x000038, "Wrong size on HoudiniStaticMesh_SetStaticMaterial"); \ +static_assert(offsetof(HoudiniStaticMesh_SetStaticMaterial, InMaterialIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetStaticMaterial::InMaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetStaticMaterial, InStaticMaterial) == 0x000008, "Member 'HoudiniStaticMesh_SetStaticMaterial::InStaticMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleMaterialID \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleMaterialID) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleMaterialID"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleMaterialID) == 0x000008, "Wrong size on HoudiniStaticMesh_SetTriangleMaterialID"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleMaterialID, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleMaterialID::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleMaterialID, InMaterialID) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleMaterialID::InMaterialID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexColor \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexColor) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexColor"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexColor) == 0x00000C, "Wrong size on HoudiniStaticMesh_SetTriangleVertexColor"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexColor, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexColor::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexColor, InTriangleVertexIndex) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexColor::InTriangleVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexColor, InColor) == 0x000008, "Member 'HoudiniStaticMesh_SetTriangleVertexColor::InColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexIndices \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexIndices) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexIndices"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexIndices) == 0x000010, "Wrong size on HoudiniStaticMesh_SetTriangleVertexIndices"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexIndices, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexIndices::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexIndices, InTriangleVertexIndices) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexIndices::InTriangleVertexIndices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexNormal \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexNormal) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexNormal"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexNormal) == 0x000014, "Wrong size on HoudiniStaticMesh_SetTriangleVertexNormal"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexNormal, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexNormal::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexNormal, InTriangleVertexIndex) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexNormal::InTriangleVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexNormal, InNormal) == 0x000008, "Member 'HoudiniStaticMesh_SetTriangleVertexNormal::InNormal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexUTangent \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexUTangent) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexUTangent"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexUTangent) == 0x000014, "Wrong size on HoudiniStaticMesh_SetTriangleVertexUTangent"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUTangent, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexUTangent::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUTangent, InTriangleVertexIndex) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexUTangent::InTriangleVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUTangent, InUTangent) == 0x000008, "Member 'HoudiniStaticMesh_SetTriangleVertexUTangent::InUTangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexUV \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexUV) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexUV"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexUV) == 0x000010, "Wrong size on HoudiniStaticMesh_SetTriangleVertexUV"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUV, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexUV::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUV, InTriangleVertexIndex) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexUV::InTriangleVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUV, InUVLayer) == 0x000005, "Member 'HoudiniStaticMesh_SetTriangleVertexUV::InUVLayer' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexUV, InUV) == 0x000008, "Member 'HoudiniStaticMesh_SetTriangleVertexUV::InUV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetTriangleVertexVTangent \ +static_assert(alignof(HoudiniStaticMesh_SetTriangleVertexVTangent) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetTriangleVertexVTangent"); \ +static_assert(sizeof(HoudiniStaticMesh_SetTriangleVertexVTangent) == 0x000014, "Wrong size on HoudiniStaticMesh_SetTriangleVertexVTangent"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexVTangent, InTriangleIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetTriangleVertexVTangent::InTriangleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexVTangent, InTriangleVertexIndex) == 0x000004, "Member 'HoudiniStaticMesh_SetTriangleVertexVTangent::InTriangleVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetTriangleVertexVTangent, InVTangent) == 0x000008, "Member 'HoudiniStaticMesh_SetTriangleVertexVTangent::InVTangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_SetVertexPosition \ +static_assert(alignof(HoudiniStaticMesh_SetVertexPosition) == 0x000004, "Wrong alignment on HoudiniStaticMesh_SetVertexPosition"); \ +static_assert(sizeof(HoudiniStaticMesh_SetVertexPosition) == 0x000010, "Wrong size on HoudiniStaticMesh_SetVertexPosition"); \ +static_assert(offsetof(HoudiniStaticMesh_SetVertexPosition, InVertexIndex) == 0x000000, "Member 'HoudiniStaticMesh_SetVertexPosition::InVertexIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_SetVertexPosition, InPosition) == 0x000004, "Member 'HoudiniStaticMesh_SetVertexPosition::InPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_CalcBounds \ +static_assert(alignof(HoudiniStaticMesh_CalcBounds) == 0x000008, "Wrong alignment on HoudiniStaticMesh_CalcBounds"); \ +static_assert(sizeof(HoudiniStaticMesh_CalcBounds) == 0x000038, "Wrong size on HoudiniStaticMesh_CalcBounds"); \ +static_assert(offsetof(HoudiniStaticMesh_CalcBounds, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_CalcBounds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetMaterialIDsPerTriangle \ +static_assert(alignof(HoudiniStaticMesh_GetMaterialIDsPerTriangle) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetMaterialIDsPerTriangle"); \ +static_assert(sizeof(HoudiniStaticMesh_GetMaterialIDsPerTriangle) == 0x000010, "Wrong size on HoudiniStaticMesh_GetMaterialIDsPerTriangle"); \ +static_assert(offsetof(HoudiniStaticMesh_GetMaterialIDsPerTriangle, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetMaterialIDsPerTriangle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetMaterialIndex \ +static_assert(alignof(HoudiniStaticMesh_GetMaterialIndex) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetMaterialIndex"); \ +static_assert(sizeof(HoudiniStaticMesh_GetMaterialIndex) == 0x00000C, "Wrong size on HoudiniStaticMesh_GetMaterialIndex"); \ +static_assert(offsetof(HoudiniStaticMesh_GetMaterialIndex, InMaterialSlotName) == 0x000000, "Member 'HoudiniStaticMesh_GetMaterialIndex::InMaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_GetMaterialIndex, ReturnValue) == 0x000008, "Member 'HoudiniStaticMesh_GetMaterialIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetNumStaticMaterials \ +static_assert(alignof(HoudiniStaticMesh_GetNumStaticMaterials) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetNumStaticMaterials"); \ +static_assert(sizeof(HoudiniStaticMesh_GetNumStaticMaterials) == 0x000004, "Wrong size on HoudiniStaticMesh_GetNumStaticMaterials"); \ +static_assert(offsetof(HoudiniStaticMesh_GetNumStaticMaterials, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetNumStaticMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetNumTriangles \ +static_assert(alignof(HoudiniStaticMesh_GetNumTriangles) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetNumTriangles"); \ +static_assert(sizeof(HoudiniStaticMesh_GetNumTriangles) == 0x000004, "Wrong size on HoudiniStaticMesh_GetNumTriangles"); \ +static_assert(offsetof(HoudiniStaticMesh_GetNumTriangles, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetNumTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetNumUVLayers \ +static_assert(alignof(HoudiniStaticMesh_GetNumUVLayers) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetNumUVLayers"); \ +static_assert(sizeof(HoudiniStaticMesh_GetNumUVLayers) == 0x000004, "Wrong size on HoudiniStaticMesh_GetNumUVLayers"); \ +static_assert(offsetof(HoudiniStaticMesh_GetNumUVLayers, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetNumUVLayers::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetNumVertexInstances \ +static_assert(alignof(HoudiniStaticMesh_GetNumVertexInstances) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetNumVertexInstances"); \ +static_assert(sizeof(HoudiniStaticMesh_GetNumVertexInstances) == 0x000004, "Wrong size on HoudiniStaticMesh_GetNumVertexInstances"); \ +static_assert(offsetof(HoudiniStaticMesh_GetNumVertexInstances, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetNumVertexInstances::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetNumVertices \ +static_assert(alignof(HoudiniStaticMesh_GetNumVertices) == 0x000004, "Wrong alignment on HoudiniStaticMesh_GetNumVertices"); \ +static_assert(sizeof(HoudiniStaticMesh_GetNumVertices) == 0x000004, "Wrong size on HoudiniStaticMesh_GetNumVertices"); \ +static_assert(offsetof(HoudiniStaticMesh_GetNumVertices, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetNumVertices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetStaticMaterials \ +static_assert(alignof(HoudiniStaticMesh_GetStaticMaterials) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetStaticMaterials"); \ +static_assert(sizeof(HoudiniStaticMesh_GetStaticMaterials) == 0x000010, "Wrong size on HoudiniStaticMesh_GetStaticMaterials"); \ +static_assert(offsetof(HoudiniStaticMesh_GetStaticMaterials, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetStaticMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetTriangleIndices \ +static_assert(alignof(HoudiniStaticMesh_GetTriangleIndices) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetTriangleIndices"); \ +static_assert(sizeof(HoudiniStaticMesh_GetTriangleIndices) == 0x000010, "Wrong size on HoudiniStaticMesh_GetTriangleIndices"); \ +static_assert(offsetof(HoudiniStaticMesh_GetTriangleIndices, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetTriangleIndices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexInstanceColors \ +static_assert(alignof(HoudiniStaticMesh_GetVertexInstanceColors) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexInstanceColors"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexInstanceColors) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexInstanceColors"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexInstanceColors, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexInstanceColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexInstanceNormals \ +static_assert(alignof(HoudiniStaticMesh_GetVertexInstanceNormals) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexInstanceNormals"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexInstanceNormals) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexInstanceNormals"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexInstanceNormals, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexInstanceNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexInstanceUTangents \ +static_assert(alignof(HoudiniStaticMesh_GetVertexInstanceUTangents) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexInstanceUTangents"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexInstanceUTangents) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexInstanceUTangents"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexInstanceUTangents, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexInstanceUTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexInstanceUVs \ +static_assert(alignof(HoudiniStaticMesh_GetVertexInstanceUVs) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexInstanceUVs"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexInstanceUVs) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexInstanceUVs"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexInstanceUVs, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexInstanceUVs::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexInstanceVTangents \ +static_assert(alignof(HoudiniStaticMesh_GetVertexInstanceVTangents) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexInstanceVTangents"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexInstanceVTangents) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexInstanceVTangents"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexInstanceVTangents, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexInstanceVTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_GetVertexPositions \ +static_assert(alignof(HoudiniStaticMesh_GetVertexPositions) == 0x000008, "Wrong alignment on HoudiniStaticMesh_GetVertexPositions"); \ +static_assert(sizeof(HoudiniStaticMesh_GetVertexPositions) == 0x000010, "Wrong size on HoudiniStaticMesh_GetVertexPositions"); \ +static_assert(offsetof(HoudiniStaticMesh_GetVertexPositions, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_GetVertexPositions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_HasColors \ +static_assert(alignof(HoudiniStaticMesh_HasColors) == 0x000001, "Wrong alignment on HoudiniStaticMesh_HasColors"); \ +static_assert(sizeof(HoudiniStaticMesh_HasColors) == 0x000001, "Wrong size on HoudiniStaticMesh_HasColors"); \ +static_assert(offsetof(HoudiniStaticMesh_HasColors, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_HasColors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_HasNormals \ +static_assert(alignof(HoudiniStaticMesh_HasNormals) == 0x000001, "Wrong alignment on HoudiniStaticMesh_HasNormals"); \ +static_assert(sizeof(HoudiniStaticMesh_HasNormals) == 0x000001, "Wrong size on HoudiniStaticMesh_HasNormals"); \ +static_assert(offsetof(HoudiniStaticMesh_HasNormals, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_HasNormals::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_HasPerFaceMaterials \ +static_assert(alignof(HoudiniStaticMesh_HasPerFaceMaterials) == 0x000001, "Wrong alignment on HoudiniStaticMesh_HasPerFaceMaterials"); \ +static_assert(sizeof(HoudiniStaticMesh_HasPerFaceMaterials) == 0x000001, "Wrong size on HoudiniStaticMesh_HasPerFaceMaterials"); \ +static_assert(offsetof(HoudiniStaticMesh_HasPerFaceMaterials, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_HasPerFaceMaterials::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_HasTangents \ +static_assert(alignof(HoudiniStaticMesh_HasTangents) == 0x000001, "Wrong alignment on HoudiniStaticMesh_HasTangents"); \ +static_assert(sizeof(HoudiniStaticMesh_HasTangents) == 0x000001, "Wrong size on HoudiniStaticMesh_HasTangents"); \ +static_assert(offsetof(HoudiniStaticMesh_HasTangents, ReturnValue) == 0x000000, "Member 'HoudiniStaticMesh_HasTangents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMesh_IsValid \ +static_assert(alignof(HoudiniStaticMesh_IsValid) == 0x000001, "Wrong alignment on HoudiniStaticMesh_IsValid"); \ +static_assert(sizeof(HoudiniStaticMesh_IsValid) == 0x000002, "Wrong size on HoudiniStaticMesh_IsValid"); \ +static_assert(offsetof(HoudiniStaticMesh_IsValid, bInSkipVertexIndicesCheck) == 0x000000, "Member 'HoudiniStaticMesh_IsValid::bInSkipVertexIndicesCheck' has a wrong offset!"); \ +static_assert(offsetof(HoudiniStaticMesh_IsValid, ReturnValue) == 0x000001, "Member 'HoudiniStaticMesh_IsValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniStaticMesh \ +static_assert(alignof(UHoudiniStaticMesh) == 0x000008, "Wrong alignment on UHoudiniStaticMesh"); \ +static_assert(sizeof(UHoudiniStaticMesh) == 0x0000C8, "Wrong size on UHoudiniStaticMesh"); \ +static_assert(offsetof(UHoudiniStaticMesh, bHasNormals) == 0x000028, "Member 'UHoudiniStaticMesh::bHasNormals' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, bHasTangents) == 0x000029, "Member 'UHoudiniStaticMesh::bHasTangents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, bHasColors) == 0x00002A, "Member 'UHoudiniStaticMesh::bHasColors' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, NumUVLayers) == 0x00002C, "Member 'UHoudiniStaticMesh::NumUVLayers' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, bHasPerFaceMaterials) == 0x000030, "Member 'UHoudiniStaticMesh::bHasPerFaceMaterials' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexPositions) == 0x000038, "Member 'UHoudiniStaticMesh::VertexPositions' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, TriangleIndices) == 0x000048, "Member 'UHoudiniStaticMesh::TriangleIndices' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexInstanceColors) == 0x000058, "Member 'UHoudiniStaticMesh::VertexInstanceColors' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexInstanceNormals) == 0x000068, "Member 'UHoudiniStaticMesh::VertexInstanceNormals' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexInstanceUTangents) == 0x000078, "Member 'UHoudiniStaticMesh::VertexInstanceUTangents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexInstanceVTangents) == 0x000088, "Member 'UHoudiniStaticMesh::VertexInstanceVTangents' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, VertexInstanceUVs) == 0x000098, "Member 'UHoudiniStaticMesh::VertexInstanceUVs' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, MaterialIDsPerTriangle) == 0x0000A8, "Member 'UHoudiniStaticMesh::MaterialIDsPerTriangle' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMesh, StaticMaterials) == 0x0000B8, "Member 'UHoudiniStaticMesh::StaticMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMeshComponent_GetMesh \ +static_assert(alignof(HoudiniStaticMeshComponent_GetMesh) == 0x000008, "Wrong alignment on HoudiniStaticMeshComponent_GetMesh"); \ +static_assert(sizeof(HoudiniStaticMeshComponent_GetMesh) == 0x000008, "Wrong size on HoudiniStaticMeshComponent_GetMesh"); \ +static_assert(offsetof(HoudiniStaticMeshComponent_GetMesh, ReturnValue) == 0x000000, "Member 'HoudiniStaticMeshComponent_GetMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMeshComponent_SetHoudiniIconVisible \ +static_assert(alignof(HoudiniStaticMeshComponent_SetHoudiniIconVisible) == 0x000001, "Wrong alignment on HoudiniStaticMeshComponent_SetHoudiniIconVisible"); \ +static_assert(sizeof(HoudiniStaticMeshComponent_SetHoudiniIconVisible) == 0x000001, "Wrong size on HoudiniStaticMeshComponent_SetHoudiniIconVisible"); \ +static_assert(offsetof(HoudiniStaticMeshComponent_SetHoudiniIconVisible, bInHoudiniIconVisible) == 0x000000, "Member 'HoudiniStaticMeshComponent_SetHoudiniIconVisible::bInHoudiniIconVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMeshComponent_SetMesh \ +static_assert(alignof(HoudiniStaticMeshComponent_SetMesh) == 0x000008, "Wrong alignment on HoudiniStaticMeshComponent_SetMesh"); \ +static_assert(sizeof(HoudiniStaticMeshComponent_SetMesh) == 0x000008, "Wrong size on HoudiniStaticMeshComponent_SetMesh"); \ +static_assert(offsetof(HoudiniStaticMeshComponent_SetMesh, InMesh) == 0x000000, "Member 'HoudiniStaticMeshComponent_SetMesh::InMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniStaticMeshComponent_IsHoudiniIconVisible \ +static_assert(alignof(HoudiniStaticMeshComponent_IsHoudiniIconVisible) == 0x000001, "Wrong alignment on HoudiniStaticMeshComponent_IsHoudiniIconVisible"); \ +static_assert(sizeof(HoudiniStaticMeshComponent_IsHoudiniIconVisible) == 0x000001, "Wrong size on HoudiniStaticMeshComponent_IsHoudiniIconVisible"); \ +static_assert(offsetof(HoudiniStaticMeshComponent_IsHoudiniIconVisible, ReturnValue) == 0x000000, "Member 'HoudiniStaticMeshComponent_IsHoudiniIconVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniStaticMeshComponent \ +static_assert(alignof(UHoudiniStaticMeshComponent) == 0x000010, "Wrong alignment on UHoudiniStaticMeshComponent"); \ +static_assert(sizeof(UHoudiniStaticMeshComponent) == 0x0005F0, "Wrong size on UHoudiniStaticMeshComponent"); \ +static_assert(offsetof(UHoudiniStaticMeshComponent, Mesh) == 0x0005A8, "Member 'UHoudiniStaticMeshComponent::Mesh' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMeshComponent, LocalBounds) == 0x0005B0, "Member 'UHoudiniStaticMeshComponent::LocalBounds' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniStaticMeshComponent, bHoudiniIconVisible) == 0x0005E8, "Member 'UHoudiniStaticMeshComponent::bHoudiniIconVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IHoudiniAssetStateEvents \ +static_assert(alignof(IHoudiniAssetStateEvents) == 0x000001, "Wrong alignment on IHoudiniAssetStateEvents"); \ +static_assert(sizeof(IHoudiniAssetStateEvents) == 0x000001, "Wrong size on IHoudiniAssetStateEvents"); \ + +#define DUMPER7_ASSERTS_EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker \ +static_assert(alignof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker) == 0x000008, "Wrong alignment on EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker"); \ +static_assert(sizeof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker) == 0x000118, "Wrong size on EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, EntryPoint) == 0x000000, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, Temp_int_Array_Index_Variable) == 0x000004, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000020, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000028, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, Temp_bool_Has_Been_Initd_Variable) == 0x000030, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, K2Node_Event_InAutomata) == 0x000038, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, K2Node_Event_InState) == 0x000040, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000048, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors) == 0x000090, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Array_Length_ReturnValue) == 0x0000A0, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0000A4, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, Temp_bool_IsClosed_Variable) == 0x0000A5, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue_1) == 0x0000A8, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors_1) == 0x0000F0, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Array_Get_Item) == 0x000100, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Array_Length_ReturnValue_1) == 0x000108, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Less_IntInt_ReturnValue) == 0x00010C, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker, CallFunc_Delay_Duration_ImplicitCast) == 0x000110, "Member 'EnemyDeathChecker_C_ExecuteUbergraph_EnemyDeathChecker::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnemyDeathChecker_C_ReceiveExecute \ +static_assert(alignof(EnemyDeathChecker_C_ReceiveExecute) == 0x000008, "Wrong alignment on EnemyDeathChecker_C_ReceiveExecute"); \ +static_assert(sizeof(EnemyDeathChecker_C_ReceiveExecute) == 0x000010, "Wrong size on EnemyDeathChecker_C_ReceiveExecute"); \ +static_assert(offsetof(EnemyDeathChecker_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'EnemyDeathChecker_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(EnemyDeathChecker_C_ReceiveExecute, InState) == 0x000008, "Member 'EnemyDeathChecker_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnemyDeathChecker_C \ +static_assert(alignof(UEnemyDeathChecker_C) == 0x000008, "Wrong alignment on UEnemyDeathChecker_C"); \ +static_assert(sizeof(UEnemyDeathChecker_C) == 0x0000C8, "Wrong size on UEnemyDeathChecker_C"); \ +static_assert(offsetof(UEnemyDeathChecker_C, UberGraphFrame) == 0x000088, "Member 'UEnemyDeathChecker_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, Delay) == 0x000090, "Member 'UEnemyDeathChecker_C::Delay' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, NPC_has_any_of_these_Tags) == 0x000098, "Member 'UEnemyDeathChecker_C::NPC_has_any_of_these_Tags' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, In_Objective) == 0x0000B8, "Member 'UEnemyDeathChecker_C::In_Objective' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, Min_enemies_remaining_to_succeed) == 0x0000C0, "Member 'UEnemyDeathChecker_C::Min_enemies_remaining_to_succeed' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, OnSuccesDestroyRemainingEnemiesWithTag) == 0x0000C4, "Member 'UEnemyDeathChecker_C::OnSuccesDestroyRemainingEnemiesWithTag' has a wrong offset!"); \ +static_assert(offsetof(UEnemyDeathChecker_C, CanCompleteStraightAway) == 0x0000C5, "Member 'UEnemyDeathChecker_C::CanCompleteStraightAway' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_LockDash_C \ +static_assert(alignof(UGE_LockDash_C) == 0x000008, "Wrong alignment on UGE_LockDash_C"); \ +static_assert(sizeof(UGE_LockDash_C) == 0x000A70, "Wrong size on UGE_LockDash_C"); \ + +#define DUMPER7_ASSERTS_UCommonPreLoadScreenSettings \ +static_assert(alignof(UCommonPreLoadScreenSettings) == 0x000008, "Wrong alignment on UCommonPreLoadScreenSettings"); \ +static_assert(sizeof(UCommonPreLoadScreenSettings) == 0x000058, "Wrong size on UCommonPreLoadScreenSettings"); \ +static_assert(offsetof(UCommonPreLoadScreenSettings, LoadingScreenImage) == 0x000038, "Member 'UCommonPreLoadScreenSettings::LoadingScreenImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConsoleVariablesEditorAssetSaveData \ +static_assert(alignof(FConsoleVariablesEditorAssetSaveData) == 0x000008, "Wrong alignment on FConsoleVariablesEditorAssetSaveData"); \ +static_assert(sizeof(FConsoleVariablesEditorAssetSaveData) == 0x000028, "Wrong size on FConsoleVariablesEditorAssetSaveData"); \ +static_assert(offsetof(FConsoleVariablesEditorAssetSaveData, CommandName) == 0x000000, "Member 'FConsoleVariablesEditorAssetSaveData::CommandName' has a wrong offset!"); \ +static_assert(offsetof(FConsoleVariablesEditorAssetSaveData, CommandValueAsString) == 0x000010, "Member 'FConsoleVariablesEditorAssetSaveData::CommandValueAsString' has a wrong offset!"); \ +static_assert(offsetof(FConsoleVariablesEditorAssetSaveData, CheckedState) == 0x000020, "Member 'FConsoleVariablesEditorAssetSaveData::CheckedState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData \ +static_assert(alignof(ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData"); \ +static_assert(sizeof(ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData) == 0x000028, "Wrong size on ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData"); \ +static_assert(offsetof(ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData, InData) == 0x000000, "Member 'ConsoleVariablesAsset_AddOrSetConsoleObjectSavedData::InData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_CopyFrom \ +static_assert(alignof(ConsoleVariablesAsset_CopyFrom) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_CopyFrom"); \ +static_assert(sizeof(ConsoleVariablesAsset_CopyFrom) == 0x000008, "Wrong size on ConsoleVariablesAsset_CopyFrom"); \ +static_assert(offsetof(ConsoleVariablesAsset_CopyFrom, InAssetToCopy) == 0x000000, "Member 'ConsoleVariablesAsset_CopyFrom::InAssetToCopy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_RemoveConsoleVariable \ +static_assert(alignof(ConsoleVariablesAsset_RemoveConsoleVariable) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_RemoveConsoleVariable"); \ +static_assert(sizeof(ConsoleVariablesAsset_RemoveConsoleVariable) == 0x000018, "Wrong size on ConsoleVariablesAsset_RemoveConsoleVariable"); \ +static_assert(offsetof(ConsoleVariablesAsset_RemoveConsoleVariable, InCommandString) == 0x000000, "Member 'ConsoleVariablesAsset_RemoveConsoleVariable::InCommandString' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_RemoveConsoleVariable, ReturnValue) == 0x000010, "Member 'ConsoleVariablesAsset_RemoveConsoleVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_ReplaceSavedCommands \ +static_assert(alignof(ConsoleVariablesAsset_ReplaceSavedCommands) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_ReplaceSavedCommands"); \ +static_assert(sizeof(ConsoleVariablesAsset_ReplaceSavedCommands) == 0x000010, "Wrong size on ConsoleVariablesAsset_ReplaceSavedCommands"); \ +static_assert(offsetof(ConsoleVariablesAsset_ReplaceSavedCommands, Replacement) == 0x000000, "Member 'ConsoleVariablesAsset_ReplaceSavedCommands::Replacement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_SetVariableCollectionDescription \ +static_assert(alignof(ConsoleVariablesAsset_SetVariableCollectionDescription) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_SetVariableCollectionDescription"); \ +static_assert(sizeof(ConsoleVariablesAsset_SetVariableCollectionDescription) == 0x000010, "Wrong size on ConsoleVariablesAsset_SetVariableCollectionDescription"); \ +static_assert(offsetof(ConsoleVariablesAsset_SetVariableCollectionDescription, InVariableCollectionDescription) == 0x000000, "Member 'ConsoleVariablesAsset_SetVariableCollectionDescription::InVariableCollectionDescription' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_ExecuteSavedCommands \ +static_assert(alignof(ConsoleVariablesAsset_ExecuteSavedCommands) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_ExecuteSavedCommands"); \ +static_assert(sizeof(ConsoleVariablesAsset_ExecuteSavedCommands) == 0x000010, "Wrong size on ConsoleVariablesAsset_ExecuteSavedCommands"); \ +static_assert(offsetof(ConsoleVariablesAsset_ExecuteSavedCommands, WorldContextObject) == 0x000000, "Member 'ConsoleVariablesAsset_ExecuteSavedCommands::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_ExecuteSavedCommands, bOnlyIncludeChecked) == 0x000008, "Member 'ConsoleVariablesAsset_ExecuteSavedCommands::bOnlyIncludeChecked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_FindSavedDataByCommandString \ +static_assert(alignof(ConsoleVariablesAsset_FindSavedDataByCommandString) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_FindSavedDataByCommandString"); \ +static_assert(sizeof(ConsoleVariablesAsset_FindSavedDataByCommandString) == 0x000040, "Wrong size on ConsoleVariablesAsset_FindSavedDataByCommandString"); \ +static_assert(offsetof(ConsoleVariablesAsset_FindSavedDataByCommandString, InCommandString) == 0x000000, "Member 'ConsoleVariablesAsset_FindSavedDataByCommandString::InCommandString' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_FindSavedDataByCommandString, OutValue) == 0x000010, "Member 'ConsoleVariablesAsset_FindSavedDataByCommandString::OutValue' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_FindSavedDataByCommandString, SearchCase) == 0x000038, "Member 'ConsoleVariablesAsset_FindSavedDataByCommandString::SearchCase' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_FindSavedDataByCommandString, ReturnValue) == 0x000039, "Member 'ConsoleVariablesAsset_FindSavedDataByCommandString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_GetSavedCommands \ +static_assert(alignof(ConsoleVariablesAsset_GetSavedCommands) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_GetSavedCommands"); \ +static_assert(sizeof(ConsoleVariablesAsset_GetSavedCommands) == 0x000010, "Wrong size on ConsoleVariablesAsset_GetSavedCommands"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommands, ReturnValue) == 0x000000, "Member 'ConsoleVariablesAsset_GetSavedCommands::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString \ +static_assert(alignof(ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString"); \ +static_assert(sizeof(ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString) == 0x000018, "Wrong size on ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString, bOnlyIncludeChecked) == 0x000000, "Member 'ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString::bOnlyIncludeChecked' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString, ReturnValue) == 0x000008, "Member 'ConsoleVariablesAsset_GetSavedCommandsAsCommaSeparatedString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_GetSavedCommandsAsStringArray \ +static_assert(alignof(ConsoleVariablesAsset_GetSavedCommandsAsStringArray) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_GetSavedCommandsAsStringArray"); \ +static_assert(sizeof(ConsoleVariablesAsset_GetSavedCommandsAsStringArray) == 0x000018, "Wrong size on ConsoleVariablesAsset_GetSavedCommandsAsStringArray"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommandsAsStringArray, bOnlyIncludeChecked) == 0x000000, "Member 'ConsoleVariablesAsset_GetSavedCommandsAsStringArray::bOnlyIncludeChecked' has a wrong offset!"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommandsAsStringArray, ReturnValue) == 0x000008, "Member 'ConsoleVariablesAsset_GetSavedCommandsAsStringArray::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_GetSavedCommandsCount \ +static_assert(alignof(ConsoleVariablesAsset_GetSavedCommandsCount) == 0x000004, "Wrong alignment on ConsoleVariablesAsset_GetSavedCommandsCount"); \ +static_assert(sizeof(ConsoleVariablesAsset_GetSavedCommandsCount) == 0x000004, "Wrong size on ConsoleVariablesAsset_GetSavedCommandsCount"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetSavedCommandsCount, ReturnValue) == 0x000000, "Member 'ConsoleVariablesAsset_GetSavedCommandsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ConsoleVariablesAsset_GetVariableCollectionDescription \ +static_assert(alignof(ConsoleVariablesAsset_GetVariableCollectionDescription) == 0x000008, "Wrong alignment on ConsoleVariablesAsset_GetVariableCollectionDescription"); \ +static_assert(sizeof(ConsoleVariablesAsset_GetVariableCollectionDescription) == 0x000010, "Wrong size on ConsoleVariablesAsset_GetVariableCollectionDescription"); \ +static_assert(offsetof(ConsoleVariablesAsset_GetVariableCollectionDescription, ReturnValue) == 0x000000, "Member 'ConsoleVariablesAsset_GetVariableCollectionDescription::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConsoleVariablesAsset \ +static_assert(alignof(UConsoleVariablesAsset) == 0x000008, "Wrong alignment on UConsoleVariablesAsset"); \ +static_assert(sizeof(UConsoleVariablesAsset) == 0x000050, "Wrong size on UConsoleVariablesAsset"); \ +static_assert(offsetof(UConsoleVariablesAsset, VariableCollectionDescription) == 0x000030, "Member 'UConsoleVariablesAsset::VariableCollectionDescription' has a wrong offset!"); \ +static_assert(offsetof(UConsoleVariablesAsset, SavedCommands) == 0x000040, "Member 'UConsoleVariablesAsset::SavedCommands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttackParams \ +static_assert(alignof(FAttackParams) == 0x000008, "Wrong alignment on FAttackParams"); \ +static_assert(sizeof(FAttackParams) == 0x000098, "Wrong size on FAttackParams"); \ +static_assert(offsetof(FAttackParams, WindupMontage_20_29AA7AA04FBDC1AA636108998778406E) == 0x000000, "Member 'FAttackParams::WindupMontage_20_29AA7AA04FBDC1AA636108998778406E' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, HeavyThreshold_5_05562401427B39DD0A38E2B7C31079CB) == 0x000008, "Member 'FAttackParams::HeavyThreshold_5_05562401427B39DD0A38E2B7C31079CB' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, MinimumWindup_9_78B3E6584AC4400EB8629696F6114C39) == 0x000010, "Member 'FAttackParams::MinimumWindup_9_78B3E6584AC4400EB8629696F6114C39' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, MaximumWindup_11_AE4AA75640D24987DD94508EDFE6BBAF) == 0x000018, "Member 'FAttackParams::MaximumWindup_11_AE4AA75640D24987DD94508EDFE6BBAF' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, ThresholdBias_13_93D466334833BB97273266A5C1AC4D3E) == 0x000020, "Member 'FAttackParams::ThresholdBias_13_93D466334833BB97273266A5C1AC4D3E' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, LightAttack_23_E4F62AE1475D52613EC95C85F27901D4) == 0x000028, "Member 'FAttackParams::LightAttack_23_E4F62AE1475D52613EC95C85F27901D4' has a wrong offset!"); \ +static_assert(offsetof(FAttackParams, HeavyAttack_25_408448FB48DC72ECB4662AA6770A8923) == 0x000060, "Member 'FAttackParams::HeavyAttack_25_408448FB48DC72ECB4662AA6770A8923' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHeightfieldMinMaxTexture \ +static_assert(alignof(UHeightfieldMinMaxTexture) == 0x000008, "Wrong alignment on UHeightfieldMinMaxTexture"); \ +static_assert(sizeof(UHeightfieldMinMaxTexture) == 0x000070, "Wrong size on UHeightfieldMinMaxTexture"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, Texture) == 0x000028, "Member 'UHeightfieldMinMaxTexture::Texture' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, LodBiasTexture) == 0x000030, "Member 'UHeightfieldMinMaxTexture::LodBiasTexture' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, LodBiasMinMaxTexture) == 0x000038, "Member 'UHeightfieldMinMaxTexture::LodBiasMinMaxTexture' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, MaxCPULevels) == 0x000040, "Member 'UHeightfieldMinMaxTexture::MaxCPULevels' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, TextureData) == 0x000048, "Member 'UHeightfieldMinMaxTexture::TextureData' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, TextureDataSize) == 0x000058, "Member 'UHeightfieldMinMaxTexture::TextureDataSize' has a wrong offset!"); \ +static_assert(offsetof(UHeightfieldMinMaxTexture, TextureDataMips) == 0x000060, "Member 'UHeightfieldMinMaxTexture::TextureDataMips' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionHeightfieldMinMaxTexture \ +static_assert(alignof(UMaterialExpressionHeightfieldMinMaxTexture) == 0x000008, "Wrong alignment on UMaterialExpressionHeightfieldMinMaxTexture"); \ +static_assert(sizeof(UMaterialExpressionHeightfieldMinMaxTexture) == 0x0000C0, "Wrong size on UMaterialExpressionHeightfieldMinMaxTexture"); \ +static_assert(offsetof(UMaterialExpressionHeightfieldMinMaxTexture, MinMaxTexture) == 0x0000B0, "Member 'UMaterialExpressionHeightfieldMinMaxTexture::MinMaxTexture' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionHeightfieldMinMaxTexture, SamplerType) == 0x0000B8, "Member 'UMaterialExpressionHeightfieldMinMaxTexture::SamplerType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AVirtualHeightfieldMesh \ +static_assert(alignof(AVirtualHeightfieldMesh) == 0x000008, "Wrong alignment on AVirtualHeightfieldMesh"); \ +static_assert(sizeof(AVirtualHeightfieldMesh) == 0x0002A0, "Wrong size on AVirtualHeightfieldMesh"); \ +static_assert(offsetof(AVirtualHeightfieldMesh, VirtualHeightfieldMeshComponent) == 0x000298, "Member 'AVirtualHeightfieldMesh::VirtualHeightfieldMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VirtualHeightfieldMeshComponent_GatherHideFlags \ +static_assert(alignof(VirtualHeightfieldMeshComponent_GatherHideFlags) == 0x000001, "Wrong alignment on VirtualHeightfieldMeshComponent_GatherHideFlags"); \ +static_assert(sizeof(VirtualHeightfieldMeshComponent_GatherHideFlags) == 0x000002, "Wrong size on VirtualHeightfieldMeshComponent_GatherHideFlags"); \ +static_assert(offsetof(VirtualHeightfieldMeshComponent_GatherHideFlags, InOutHidePrimitivesInEditor) == 0x000000, "Member 'VirtualHeightfieldMeshComponent_GatherHideFlags::InOutHidePrimitivesInEditor' has a wrong offset!"); \ +static_assert(offsetof(VirtualHeightfieldMeshComponent_GatherHideFlags, InOutHidePrimitivesInGame) == 0x000001, "Member 'VirtualHeightfieldMeshComponent_GatherHideFlags::InOutHidePrimitivesInGame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVirtualHeightfieldMeshComponent \ +static_assert(alignof(UVirtualHeightfieldMeshComponent) == 0x000010, "Wrong alignment on UVirtualHeightfieldMeshComponent"); \ +static_assert(sizeof(UVirtualHeightfieldMeshComponent) == 0x0005F0, "Wrong size on UVirtualHeightfieldMeshComponent"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, VirtualTexture) == 0x000570, "Member 'UVirtualHeightfieldMeshComponent::VirtualTexture' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, VirtualTextureRef) == 0x000598, "Member 'UVirtualHeightfieldMeshComponent::VirtualTextureRef' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, VirtualTextureThumbnail) == 0x0005A0, "Member 'UVirtualHeightfieldMeshComponent::VirtualTextureThumbnail' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, bCopyBoundsButton) == 0x0005A8, "Member 'UVirtualHeightfieldMeshComponent::bCopyBoundsButton' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, MinMaxTexture) == 0x0005B0, "Member 'UVirtualHeightfieldMeshComponent::MinMaxTexture' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, NumMinMaxTextureBuildLevels) == 0x0005B8, "Member 'UVirtualHeightfieldMeshComponent::NumMinMaxTextureBuildLevels' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, bBuildMinMaxTextureButton) == 0x0005BC, "Member 'UVirtualHeightfieldMeshComponent::bBuildMinMaxTextureButton' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, Material) == 0x0005C0, "Member 'UVirtualHeightfieldMeshComponent::Material' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, LOD0ScreenSize) == 0x0005C8, "Member 'UVirtualHeightfieldMeshComponent::LOD0ScreenSize' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, Lod0Distribution) == 0x0005CC, "Member 'UVirtualHeightfieldMeshComponent::Lod0Distribution' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, LodDistribution) == 0x0005D0, "Member 'UVirtualHeightfieldMeshComponent::LodDistribution' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, LodBiasScale) == 0x0005D4, "Member 'UVirtualHeightfieldMeshComponent::LodBiasScale' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, NumForceLoadLods) == 0x0005D8, "Member 'UVirtualHeightfieldMeshComponent::NumForceLoadLods' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, NumOcclusionLods) == 0x0005DC, "Member 'UVirtualHeightfieldMeshComponent::NumOcclusionLods' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, bHiddenInEditor) == 0x0005E0, "Member 'UVirtualHeightfieldMeshComponent::bHiddenInEditor' has a wrong offset!"); \ +static_assert(offsetof(UVirtualHeightfieldMeshComponent, bWorldPositionOffsetVelocity) == 0x0005E1, "Member 'UVirtualHeightfieldMeshComponent::bWorldPositionOffsetVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOpenColorIOColorSpace \ +static_assert(alignof(FOpenColorIOColorSpace) == 0x000008, "Wrong alignment on FOpenColorIOColorSpace"); \ +static_assert(sizeof(FOpenColorIOColorSpace) == 0x000028, "Wrong size on FOpenColorIOColorSpace"); \ +static_assert(offsetof(FOpenColorIOColorSpace, ColorSpaceName) == 0x000000, "Member 'FOpenColorIOColorSpace::ColorSpaceName' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorSpace, ColorSpaceIndex) == 0x000010, "Member 'FOpenColorIOColorSpace::ColorSpaceIndex' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorSpace, FamilyName) == 0x000018, "Member 'FOpenColorIOColorSpace::FamilyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOpenColorIODisplayView \ +static_assert(alignof(FOpenColorIODisplayView) == 0x000008, "Wrong alignment on FOpenColorIODisplayView"); \ +static_assert(sizeof(FOpenColorIODisplayView) == 0x000020, "Wrong size on FOpenColorIODisplayView"); \ +static_assert(offsetof(FOpenColorIODisplayView, Display) == 0x000000, "Member 'FOpenColorIODisplayView::Display' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIODisplayView, View) == 0x000010, "Member 'FOpenColorIODisplayView::View' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOpenColorIOColorConversionSettings \ +static_assert(alignof(FOpenColorIOColorConversionSettings) == 0x000008, "Wrong alignment on FOpenColorIOColorConversionSettings"); \ +static_assert(sizeof(FOpenColorIOColorConversionSettings) == 0x000098, "Wrong size on FOpenColorIOColorConversionSettings"); \ +static_assert(offsetof(FOpenColorIOColorConversionSettings, ConfigurationSource) == 0x000000, "Member 'FOpenColorIOColorConversionSettings::ConfigurationSource' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorConversionSettings, SourceColorSpace) == 0x000008, "Member 'FOpenColorIOColorConversionSettings::SourceColorSpace' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorConversionSettings, DestinationColorSpace) == 0x000030, "Member 'FOpenColorIOColorConversionSettings::DestinationColorSpace' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorConversionSettings, DestinationDisplayView) == 0x000058, "Member 'FOpenColorIOColorConversionSettings::DestinationDisplayView' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIOColorConversionSettings, DisplayViewDirection) == 0x000078, "Member 'FOpenColorIOColorConversionSettings::DisplayViewDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOpenColorIODisplayConfiguration \ +static_assert(alignof(FOpenColorIODisplayConfiguration) == 0x000008, "Wrong alignment on FOpenColorIODisplayConfiguration"); \ +static_assert(sizeof(FOpenColorIODisplayConfiguration) == 0x0000A0, "Wrong size on FOpenColorIODisplayConfiguration"); \ +static_assert(offsetof(FOpenColorIODisplayConfiguration, bIsEnabled) == 0x000000, "Member 'FOpenColorIODisplayConfiguration::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(FOpenColorIODisplayConfiguration, ColorConfiguration) == 0x000008, "Member 'FOpenColorIODisplayConfiguration::ColorConfiguration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOpenColorIOSettings \ +static_assert(alignof(UOpenColorIOSettings) == 0x000008, "Wrong alignment on UOpenColorIOSettings"); \ +static_assert(sizeof(UOpenColorIOSettings) == 0x000040, "Wrong size on UOpenColorIOSettings"); \ + +#define DUMPER7_ASSERTS_OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform \ +static_assert(alignof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform) == 0x000008, "Wrong alignment on OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform"); \ +static_assert(sizeof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform) == 0x0000B8, "Wrong size on OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform"); \ +static_assert(offsetof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform, WorldContextObject) == 0x000000, "Member 'OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform, ConversionSettings) == 0x000008, "Member 'OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform::ConversionSettings' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform, InputTexture) == 0x0000A0, "Member 'OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform::InputTexture' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform, OutputRenderTarget) == 0x0000A8, "Member 'OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform::OutputRenderTarget' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform, ReturnValue) == 0x0000B0, "Member 'OpenColorIOBlueprintLibrary_ApplyColorSpaceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOpenColorIOBlueprintLibrary \ +static_assert(alignof(UOpenColorIOBlueprintLibrary) == 0x000008, "Wrong alignment on UOpenColorIOBlueprintLibrary"); \ +static_assert(sizeof(UOpenColorIOBlueprintLibrary) == 0x000028, "Wrong size on UOpenColorIOBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UOpenColorIOColorTransform \ +static_assert(alignof(UOpenColorIOColorTransform) == 0x000008, "Wrong alignment on UOpenColorIOColorTransform"); \ +static_assert(sizeof(UOpenColorIOColorTransform) == 0x000168, "Wrong size on UOpenColorIOColorTransform"); \ +static_assert(offsetof(UOpenColorIOColorTransform, bIsDisplayViewType) == 0x000028, "Member 'UOpenColorIOColorTransform::bIsDisplayViewType' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, SourceColorSpace) == 0x000030, "Member 'UOpenColorIOColorTransform::SourceColorSpace' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, DestinationColorSpace) == 0x000040, "Member 'UOpenColorIOColorTransform::DestinationColorSpace' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, Display) == 0x000050, "Member 'UOpenColorIOColorTransform::Display' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, View) == 0x000060, "Member 'UOpenColorIOColorTransform::View' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, DisplayViewDirection) == 0x000070, "Member 'UOpenColorIOColorTransform::DisplayViewDirection' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOColorTransform, Textures) == 0x000078, "Member 'UOpenColorIOColorTransform::Textures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOpenColorIOConfiguration \ +static_assert(alignof(UOpenColorIOConfiguration) == 0x000008, "Wrong alignment on UOpenColorIOConfiguration"); \ +static_assert(sizeof(UOpenColorIOConfiguration) == 0x000090, "Wrong size on UOpenColorIOConfiguration"); \ +static_assert(offsetof(UOpenColorIOConfiguration, ConfigurationFile) == 0x000028, "Member 'UOpenColorIOConfiguration::ConfigurationFile' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOConfiguration, DesiredColorSpaces) == 0x000038, "Member 'UOpenColorIOConfiguration::DesiredColorSpaces' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOConfiguration, DesiredDisplayViews) == 0x000048, "Member 'UOpenColorIOConfiguration::DesiredDisplayViews' has a wrong offset!"); \ +static_assert(offsetof(UOpenColorIOConfiguration, ColorTransforms) == 0x000058, "Member 'UOpenColorIOConfiguration::ColorTransforms' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension) == 0x000008, "Wrong alignment on OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension) == 0x0000A8, "Wrong size on OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension, InDisplayConfiguration) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension::InDisplayConfiguration' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension, ReturnValue) == 0x0000A0, "Member 'OpenColorIODisplayExtensionWrapper_CreateInGameOpenColorIODisplayExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension) == 0x000010, "Wrong alignment on OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension) == 0x000100, "Wrong size on OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension, InDisplayConfiguration) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension::InDisplayConfiguration' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension, IsActiveFunction) == 0x0000A0, "Member 'OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension::IsActiveFunction' has a wrong offset!"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension, ReturnValue) == 0x0000F0, "Member 'OpenColorIODisplayExtensionWrapper_CreateOpenColorIODisplayExtension::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration) == 0x000008, "Wrong alignment on OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration) == 0x0000A0, "Wrong size on OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration, InDisplayConfiguration) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_SetOpenColorIOConfiguration::InDisplayConfiguration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction) == 0x000010, "Wrong alignment on OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction) == 0x000050, "Wrong size on OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction, IsActiveFunction) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunction::IsActiveFunction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions) == 0x000008, "Wrong alignment on OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions) == 0x000010, "Wrong size on OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions, IsActiveFunctions) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_SetSceneExtensionIsActiveFunctions::IsActiveFunctions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration \ +static_assert(alignof(OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration) == 0x000008, "Wrong alignment on OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration"); \ +static_assert(sizeof(OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration) == 0x0000A0, "Wrong size on OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration"); \ +static_assert(offsetof(OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration, ReturnValue) == 0x000000, "Member 'OpenColorIODisplayExtensionWrapper_GetOpenColorIOConfiguration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOpenColorIODisplayExtensionWrapper \ +static_assert(alignof(UOpenColorIODisplayExtensionWrapper) == 0x000008, "Wrong alignment on UOpenColorIODisplayExtensionWrapper"); \ +static_assert(sizeof(UOpenColorIODisplayExtensionWrapper) == 0x000038, "Wrong size on UOpenColorIODisplayExtensionWrapper"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleActionPromp_Disabled_C \ +static_assert(alignof(UCommonTextStyleActionPromp_Disabled_C) == 0x000010, "Wrong alignment on UCommonTextStyleActionPromp_Disabled_C"); \ +static_assert(sizeof(UCommonTextStyleActionPromp_Disabled_C) == 0x0001B0, "Wrong size on UCommonTextStyleActionPromp_Disabled_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction \ +static_assert(alignof(GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction) == 0x000004, "Wrong alignment on GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction"); \ +static_assert(sizeof(GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction) == 0x000010, "Wrong size on GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction"); \ +static_assert(offsetof(GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction, K2Node_Event_bWasCancelled) == 0x000004, "Member 'GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000008, "Member 'GA_EnemyPlayerVanishedReaction_C_ExecuteUbergraph_GA_EnemyPlayerVanishedReaction::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyPlayerVanishedReaction_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyPlayerVanishedReaction_C \ +static_assert(alignof(UGA_EnemyPlayerVanishedReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyPlayerVanishedReaction_C"); \ +static_assert(sizeof(UGA_EnemyPlayerVanishedReaction_C) == 0x000700, "Wrong size on UGA_EnemyPlayerVanishedReaction_C"); \ +static_assert(offsetof(UGA_EnemyPlayerVanishedReaction_C, UberGraphFrame_GA_EnemyPlayerVanishedReaction_C) == 0x0006D8, "Member 'UGA_EnemyPlayerVanishedReaction_C::UberGraphFrame_GA_EnemyPlayerVanishedReaction_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPlayerVanishedReaction_C, TwitchyTag) == 0x0006E0, "Member 'UGA_EnemyPlayerVanishedReaction_C::TwitchyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelineConsoleVariableEntry \ +static_assert(alignof(FMoviePipelineConsoleVariableEntry) == 0x000008, "Wrong alignment on FMoviePipelineConsoleVariableEntry"); \ +static_assert(sizeof(FMoviePipelineConsoleVariableEntry) == 0x000018, "Wrong size on FMoviePipelineConsoleVariableEntry"); \ +static_assert(offsetof(FMoviePipelineConsoleVariableEntry, Name) == 0x000000, "Member 'FMoviePipelineConsoleVariableEntry::Name' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineConsoleVariableEntry, Value) == 0x000010, "Member 'FMoviePipelineConsoleVariableEntry::Value' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelineConsoleVariableEntry, bIsEnabled) == 0x000014, "Member 'FMoviePipelineConsoleVariableEntry::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineBurnInWidget_OnOutputFrameStarted \ +static_assert(alignof(MoviePipelineBurnInWidget_OnOutputFrameStarted) == 0x000008, "Wrong alignment on MoviePipelineBurnInWidget_OnOutputFrameStarted"); \ +static_assert(sizeof(MoviePipelineBurnInWidget_OnOutputFrameStarted) == 0x000008, "Wrong size on MoviePipelineBurnInWidget_OnOutputFrameStarted"); \ +static_assert(offsetof(MoviePipelineBurnInWidget_OnOutputFrameStarted, ForPipeline) == 0x000000, "Member 'MoviePipelineBurnInWidget_OnOutputFrameStarted::ForPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineBurnInWidget \ +static_assert(alignof(UMoviePipelineBurnInWidget) == 0x000008, "Wrong alignment on UMoviePipelineBurnInWidget"); \ +static_assert(sizeof(UMoviePipelineBurnInWidget) == 0x0002C0, "Wrong size on UMoviePipelineBurnInWidget"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineBurnInSetting \ +static_assert(alignof(UMoviePipelineBurnInSetting) == 0x000008, "Wrong alignment on UMoviePipelineBurnInSetting"); \ +static_assert(sizeof(UMoviePipelineBurnInSetting) == 0x0000B0, "Wrong size on UMoviePipelineBurnInSetting"); \ +static_assert(offsetof(UMoviePipelineBurnInSetting, BurnInClass) == 0x000048, "Member 'UMoviePipelineBurnInSetting::BurnInClass' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineBurnInSetting, bCompositeOntoFinalImage) == 0x000068, "Member 'UMoviePipelineBurnInSetting::bCompositeOntoFinalImage' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineBurnInSetting, RenderTarget) == 0x000098, "Member 'UMoviePipelineBurnInSetting::RenderTarget' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineBurnInSetting, BurnInWidgetInstances) == 0x0000A0, "Member 'UMoviePipelineBurnInSetting::BurnInWidgetInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConsoleVariableSetting_AddConsoleVariable \ +static_assert(alignof(MoviePipelineConsoleVariableSetting_AddConsoleVariable) == 0x000008, "Wrong alignment on MoviePipelineConsoleVariableSetting_AddConsoleVariable"); \ +static_assert(sizeof(MoviePipelineConsoleVariableSetting_AddConsoleVariable) == 0x000018, "Wrong size on MoviePipelineConsoleVariableSetting_AddConsoleVariable"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddConsoleVariable, Name_0) == 0x000000, "Member 'MoviePipelineConsoleVariableSetting_AddConsoleVariable::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddConsoleVariable, Value) == 0x000010, "Member 'MoviePipelineConsoleVariableSetting_AddConsoleVariable::Value' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddConsoleVariable, ReturnValue) == 0x000014, "Member 'MoviePipelineConsoleVariableSetting_AddConsoleVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable \ +static_assert(alignof(MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable) == 0x000008, "Wrong alignment on MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable"); \ +static_assert(sizeof(MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable) == 0x000018, "Wrong size on MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable, Name_0) == 0x000000, "Member 'MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable, Value) == 0x000010, "Member 'MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable::Value' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable, ReturnValue) == 0x000014, "Member 'MoviePipelineConsoleVariableSetting_AddOrUpdateConsoleVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConsoleVariableSetting_RemoveConsoleVariable \ +static_assert(alignof(MoviePipelineConsoleVariableSetting_RemoveConsoleVariable) == 0x000008, "Wrong alignment on MoviePipelineConsoleVariableSetting_RemoveConsoleVariable"); \ +static_assert(sizeof(MoviePipelineConsoleVariableSetting_RemoveConsoleVariable) == 0x000018, "Wrong size on MoviePipelineConsoleVariableSetting_RemoveConsoleVariable"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_RemoveConsoleVariable, Name_0) == 0x000000, "Member 'MoviePipelineConsoleVariableSetting_RemoveConsoleVariable::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_RemoveConsoleVariable, bRemoveAllInstances) == 0x000010, "Member 'MoviePipelineConsoleVariableSetting_RemoveConsoleVariable::bRemoveAllInstances' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_RemoveConsoleVariable, ReturnValue) == 0x000011, "Member 'MoviePipelineConsoleVariableSetting_RemoveConsoleVariable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState \ +static_assert(alignof(MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState) == 0x000008, "Wrong alignment on MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState"); \ +static_assert(sizeof(MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState) == 0x000018, "Wrong size on MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState, Name_0) == 0x000000, "Member 'MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState::Name_0' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState, bIsEnabled) == 0x000010, "Member 'MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState, ReturnValue) == 0x000011, "Member 'MoviePipelineConsoleVariableSetting_UpdateConsoleVariableEnableState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MoviePipelineConsoleVariableSetting_GetConsoleVariables \ +static_assert(alignof(MoviePipelineConsoleVariableSetting_GetConsoleVariables) == 0x000008, "Wrong alignment on MoviePipelineConsoleVariableSetting_GetConsoleVariables"); \ +static_assert(sizeof(MoviePipelineConsoleVariableSetting_GetConsoleVariables) == 0x000010, "Wrong size on MoviePipelineConsoleVariableSetting_GetConsoleVariables"); \ +static_assert(offsetof(MoviePipelineConsoleVariableSetting_GetConsoleVariables, ReturnValue) == 0x000000, "Member 'MoviePipelineConsoleVariableSetting_GetConsoleVariables::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineConsoleVariableSetting \ +static_assert(alignof(UMoviePipelineConsoleVariableSetting) == 0x000008, "Wrong alignment on UMoviePipelineConsoleVariableSetting"); \ +static_assert(sizeof(UMoviePipelineConsoleVariableSetting) == 0x0000F8, "Wrong size on UMoviePipelineConsoleVariableSetting"); \ +static_assert(offsetof(UMoviePipelineConsoleVariableSetting, ConsoleVariablePresets) == 0x000048, "Member 'UMoviePipelineConsoleVariableSetting::ConsoleVariablePresets' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConsoleVariableSetting, ConsoleVariables) == 0x000058, "Member 'UMoviePipelineConsoleVariableSetting::ConsoleVariables' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConsoleVariableSetting, StartConsoleCommands) == 0x0000A8, "Member 'UMoviePipelineConsoleVariableSetting::StartConsoleCommands' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConsoleVariableSetting, EndConsoleCommands) == 0x0000B8, "Member 'UMoviePipelineConsoleVariableSetting::EndConsoleCommands' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineConsoleVariableSetting, CVars) == 0x0000C8, "Member 'UMoviePipelineConsoleVariableSetting::CVars' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineWidgetRenderer \ +static_assert(alignof(UMoviePipelineWidgetRenderer) == 0x000008, "Wrong alignment on UMoviePipelineWidgetRenderer"); \ +static_assert(sizeof(UMoviePipelineWidgetRenderer) == 0x000068, "Wrong size on UMoviePipelineWidgetRenderer"); \ +static_assert(offsetof(UMoviePipelineWidgetRenderer, bCompositeOntoFinalImage) == 0x000048, "Member 'UMoviePipelineWidgetRenderer::bCompositeOntoFinalImage' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineWidgetRenderer, RenderTarget) == 0x000060, "Member 'UMoviePipelineWidgetRenderer::RenderTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_MoTF_PoS_Silky_C \ +static_assert(alignof(UPD_MoTF_PoS_Silky_C) == 0x000008, "Wrong alignment on UPD_MoTF_PoS_Silky_C"); \ +static_assert(sizeof(UPD_MoTF_PoS_Silky_C) == 0x000058, "Wrong size on UPD_MoTF_PoS_Silky_C"); \ + +#define DUMPER7_ASSERTS_FActorLayer \ +static_assert(alignof(FActorLayer) == 0x000004, "Wrong alignment on FActorLayer"); \ +static_assert(sizeof(FActorLayer) == 0x000008, "Wrong size on FActorLayer"); \ +static_assert(offsetof(FActorLayer, Name) == 0x000000, "Member 'FActorLayer::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayersBlueprintLibrary_AddActorToLayer \ +static_assert(alignof(LayersBlueprintLibrary_AddActorToLayer) == 0x000008, "Wrong alignment on LayersBlueprintLibrary_AddActorToLayer"); \ +static_assert(sizeof(LayersBlueprintLibrary_AddActorToLayer) == 0x000010, "Wrong size on LayersBlueprintLibrary_AddActorToLayer"); \ +static_assert(offsetof(LayersBlueprintLibrary_AddActorToLayer, InActor) == 0x000000, "Member 'LayersBlueprintLibrary_AddActorToLayer::InActor' has a wrong offset!"); \ +static_assert(offsetof(LayersBlueprintLibrary_AddActorToLayer, Layer) == 0x000008, "Member 'LayersBlueprintLibrary_AddActorToLayer::Layer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayersBlueprintLibrary_GetActors \ +static_assert(alignof(LayersBlueprintLibrary_GetActors) == 0x000008, "Wrong alignment on LayersBlueprintLibrary_GetActors"); \ +static_assert(sizeof(LayersBlueprintLibrary_GetActors) == 0x000020, "Wrong size on LayersBlueprintLibrary_GetActors"); \ +static_assert(offsetof(LayersBlueprintLibrary_GetActors, WorldContextObject) == 0x000000, "Member 'LayersBlueprintLibrary_GetActors::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LayersBlueprintLibrary_GetActors, ActorLayer) == 0x000008, "Member 'LayersBlueprintLibrary_GetActors::ActorLayer' has a wrong offset!"); \ +static_assert(offsetof(LayersBlueprintLibrary_GetActors, ReturnValue) == 0x000010, "Member 'LayersBlueprintLibrary_GetActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LayersBlueprintLibrary_RemoveActorFromLayer \ +static_assert(alignof(LayersBlueprintLibrary_RemoveActorFromLayer) == 0x000008, "Wrong alignment on LayersBlueprintLibrary_RemoveActorFromLayer"); \ +static_assert(sizeof(LayersBlueprintLibrary_RemoveActorFromLayer) == 0x000010, "Wrong size on LayersBlueprintLibrary_RemoveActorFromLayer"); \ +static_assert(offsetof(LayersBlueprintLibrary_RemoveActorFromLayer, InActor) == 0x000000, "Member 'LayersBlueprintLibrary_RemoveActorFromLayer::InActor' has a wrong offset!"); \ +static_assert(offsetof(LayersBlueprintLibrary_RemoveActorFromLayer, Layer) == 0x000008, "Member 'LayersBlueprintLibrary_RemoveActorFromLayer::Layer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULayersBlueprintLibrary \ +static_assert(alignof(ULayersBlueprintLibrary) == 0x000008, "Wrong alignment on ULayersBlueprintLibrary"); \ +static_assert(sizeof(ULayersBlueprintLibrary) == 0x000028, "Wrong size on ULayersBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_BP_ElixirBlood_C_CanPull \ +static_assert(alignof(BP_ElixirBlood_C_CanPull) == 0x000001, "Wrong alignment on BP_ElixirBlood_C_CanPull"); \ +static_assert(sizeof(BP_ElixirBlood_C_CanPull) == 0x000001, "Wrong size on BP_ElixirBlood_C_CanPull"); \ +static_assert(offsetof(BP_ElixirBlood_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_ElixirBlood_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood \ +static_assert(alignof(BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood) == 0x000004, "Wrong alignment on BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood"); \ +static_assert(sizeof(BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood) == 0x000008, "Wrong size on BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood"); \ +static_assert(offsetof(BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood, EntryPoint) == 0x000000, "Member 'BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_ElixirBlood_C_ExecuteUbergraph_BP_ElixirBlood::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ElixirBlood_C \ +static_assert(alignof(ABP_ElixirBlood_C) == 0x000008, "Wrong alignment on ABP_ElixirBlood_C"); \ +static_assert(sizeof(ABP_ElixirBlood_C) == 0x0003F0, "Wrong size on ABP_ElixirBlood_C"); \ +static_assert(offsetof(ABP_ElixirBlood_C, UberGraphFrame_BP_ElixirBlood_C) == 0x0003E8, "Member 'ABP_ElixirBlood_C::UberGraphFrame_BP_ElixirBlood_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMoviePipelinePostProcessPass \ +static_assert(alignof(FMoviePipelinePostProcessPass) == 0x000008, "Wrong alignment on FMoviePipelinePostProcessPass"); \ +static_assert(sizeof(FMoviePipelinePostProcessPass) == 0x000030, "Wrong size on FMoviePipelinePostProcessPass"); \ +static_assert(offsetof(FMoviePipelinePostProcessPass, bEnabled) == 0x000000, "Member 'FMoviePipelinePostProcessPass::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FMoviePipelinePostProcessPass, Material) == 0x000008, "Member 'FMoviePipelinePostProcessPass::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImagePassBase \ +static_assert(alignof(UMoviePipelineImagePassBase) == 0x000008, "Wrong alignment on UMoviePipelineImagePassBase"); \ +static_assert(sizeof(UMoviePipelineImagePassBase) == 0x000178, "Wrong size on UMoviePipelineImagePassBase"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPassBase \ +static_assert(alignof(UMoviePipelineDeferredPassBase) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPassBase"); \ +static_assert(sizeof(UMoviePipelineDeferredPassBase) == 0x000238, "Wrong size on UMoviePipelineDeferredPassBase"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, bAccumulatorIncludesAlpha) == 0x000178, "Member 'UMoviePipelineDeferredPassBase::bAccumulatorIncludesAlpha' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, bDisableMultisampleEffects) == 0x000179, "Member 'UMoviePipelineDeferredPassBase::bDisableMultisampleEffects' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, bUse32BitPostProcessMaterials) == 0x00017A, "Member 'UMoviePipelineDeferredPassBase::bUse32BitPostProcessMaterials' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, AdditionalPostProcessMaterials) == 0x000180, "Member 'UMoviePipelineDeferredPassBase::AdditionalPostProcessMaterials' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, bRenderMainPass) == 0x000190, "Member 'UMoviePipelineDeferredPassBase::bRenderMainPass' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, bAddDefaultLayer) == 0x000191, "Member 'UMoviePipelineDeferredPassBase::bAddDefaultLayer' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, ActorLayers) == 0x000198, "Member 'UMoviePipelineDeferredPassBase::ActorLayers' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, DataLayers) == 0x0001B8, "Member 'UMoviePipelineDeferredPassBase::DataLayers' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, ActivePostProcessMaterials) == 0x0001C8, "Member 'UMoviePipelineDeferredPassBase::ActivePostProcessMaterials' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineDeferredPassBase, StencilLayerMaterial) == 0x0001D8, "Member 'UMoviePipelineDeferredPassBase::StencilLayerMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPass_Unlit \ +static_assert(alignof(UMoviePipelineDeferredPass_Unlit) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPass_Unlit"); \ +static_assert(sizeof(UMoviePipelineDeferredPass_Unlit) == 0x000238, "Wrong size on UMoviePipelineDeferredPass_Unlit"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPass_DetailLighting \ +static_assert(alignof(UMoviePipelineDeferredPass_DetailLighting) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPass_DetailLighting"); \ +static_assert(sizeof(UMoviePipelineDeferredPass_DetailLighting) == 0x000238, "Wrong size on UMoviePipelineDeferredPass_DetailLighting"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPass_LightingOnly \ +static_assert(alignof(UMoviePipelineDeferredPass_LightingOnly) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPass_LightingOnly"); \ +static_assert(sizeof(UMoviePipelineDeferredPass_LightingOnly) == 0x000238, "Wrong size on UMoviePipelineDeferredPass_LightingOnly"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPass_ReflectionsOnly \ +static_assert(alignof(UMoviePipelineDeferredPass_ReflectionsOnly) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPass_ReflectionsOnly"); \ +static_assert(sizeof(UMoviePipelineDeferredPass_ReflectionsOnly) == 0x000238, "Wrong size on UMoviePipelineDeferredPass_ReflectionsOnly"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDeferredPass_PathTracer \ +static_assert(alignof(UMoviePipelineDeferredPass_PathTracer) == 0x000008, "Wrong alignment on UMoviePipelineDeferredPass_PathTracer"); \ +static_assert(sizeof(UMoviePipelineDeferredPass_PathTracer) == 0x000240, "Wrong size on UMoviePipelineDeferredPass_PathTracer"); \ +static_assert(offsetof(UMoviePipelineDeferredPass_PathTracer, bReferenceMotionBlur) == 0x000238, "Member 'UMoviePipelineDeferredPass_PathTracer::bReferenceMotionBlur' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImageSequenceOutputBase \ +static_assert(alignof(UMoviePipelineImageSequenceOutputBase) == 0x000008, "Wrong alignment on UMoviePipelineImageSequenceOutputBase"); \ +static_assert(sizeof(UMoviePipelineImageSequenceOutputBase) == 0x000068, "Wrong size on UMoviePipelineImageSequenceOutputBase"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImageSequenceOutput_EXR \ +static_assert(alignof(UMoviePipelineImageSequenceOutput_EXR) == 0x000008, "Wrong alignment on UMoviePipelineImageSequenceOutput_EXR"); \ +static_assert(sizeof(UMoviePipelineImageSequenceOutput_EXR) == 0x000070, "Wrong size on UMoviePipelineImageSequenceOutput_EXR"); \ +static_assert(offsetof(UMoviePipelineImageSequenceOutput_EXR, Compression) == 0x000068, "Member 'UMoviePipelineImageSequenceOutput_EXR::Compression' has a wrong offset!"); \ +static_assert(offsetof(UMoviePipelineImageSequenceOutput_EXR, bMultilayer) == 0x000069, "Member 'UMoviePipelineImageSequenceOutput_EXR::bMultilayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImageSequenceOutput_BMP \ +static_assert(alignof(UMoviePipelineImageSequenceOutput_BMP) == 0x000008, "Wrong alignment on UMoviePipelineImageSequenceOutput_BMP"); \ +static_assert(sizeof(UMoviePipelineImageSequenceOutput_BMP) == 0x000068, "Wrong size on UMoviePipelineImageSequenceOutput_BMP"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImageSequenceOutput_PNG \ +static_assert(alignof(UMoviePipelineImageSequenceOutput_PNG) == 0x000008, "Wrong alignment on UMoviePipelineImageSequenceOutput_PNG"); \ +static_assert(sizeof(UMoviePipelineImageSequenceOutput_PNG) == 0x000070, "Wrong size on UMoviePipelineImageSequenceOutput_PNG"); \ +static_assert(offsetof(UMoviePipelineImageSequenceOutput_PNG, bWriteAlpha) == 0x000068, "Member 'UMoviePipelineImageSequenceOutput_PNG::bWriteAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineImageSequenceOutput_JPG \ +static_assert(alignof(UMoviePipelineImageSequenceOutput_JPG) == 0x000008, "Wrong alignment on UMoviePipelineImageSequenceOutput_JPG"); \ +static_assert(sizeof(UMoviePipelineImageSequenceOutput_JPG) == 0x000068, "Wrong size on UMoviePipelineImageSequenceOutput_JPG"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineWaveOutput \ +static_assert(alignof(UMoviePipelineWaveOutput) == 0x000008, "Wrong alignment on UMoviePipelineWaveOutput"); \ +static_assert(sizeof(UMoviePipelineWaveOutput) == 0x0000B8, "Wrong size on UMoviePipelineWaveOutput"); \ +static_assert(offsetof(UMoviePipelineWaveOutput, FileNameFormatOverride) == 0x000048, "Member 'UMoviePipelineWaveOutput::FileNameFormatOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget \ +static_assert(alignof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget) == 0x000008, "Wrong alignment on WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget"); \ +static_assert(sizeof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget) == 0x0000C8, "Wrong size on WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, EntryPoint) == 0x000000, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, Temp_bool_Variable) == 0x000004, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, K2Node_Event_MyGeometry) == 0x000008, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, K2Node_Event_InDeltaTime) == 0x000040, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000048, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000059, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_IsValid_ReturnValue) == 0x00005A, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_GetPlayerController_ReturnValue) == 0x000060, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_PointerPosition_ReturnValue) == 0x000068, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_PointerPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_GetHud_ReturnValue) == 0x000080, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_ProjectWorldToScreen_OutScreenPosition) == 0x000088, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_ProjectWorldToScreen_OutScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_ProjectWorldToScreen_ReturnValue) == 0x000098, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_ProjectWorldToScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_BreakVector2D_X) == 0x0000A0, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_BreakVector2D_Y) == 0x0000A8, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget, CallFunc_MakeVector2D_ReturnValue) == 0x0000B8, "Member 'WBP_AbilityTarget_C_ExecuteUbergraph_WBP_AbilityTarget::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTarget_C_PointerPosition \ +static_assert(alignof(WBP_AbilityTarget_C_PointerPosition) == 0x000008, "Wrong alignment on WBP_AbilityTarget_C_PointerPosition"); \ +static_assert(sizeof(WBP_AbilityTarget_C_PointerPosition) == 0x000160, "Wrong size on WBP_AbilityTarget_C_PointerPosition"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, ReturnValue) == 0x000000, "Member 'WBP_AbilityTarget_C_PointerPosition::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_MakeVector_ReturnValue) == 0x000018, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000030, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetCameraLocation_ReturnValue) == 0x000038, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000050, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetActorBounds_Origin) == 0x000068, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetActorBounds_BoxExtent) == 0x000080, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_Vector_Distance_ReturnValue) == 0x000098, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_BreakVector_X) == 0x0000A0, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_BreakVector_Y) == 0x0000A8, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_BreakVector_Z) == 0x0000B0, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_MapRangeClamped_ReturnValue) == 0x0000B8, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_MakeVector_ReturnValue_1) == 0x0000C0, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_MakeVector_ReturnValue_2) == 0x0000D8, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000108, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetComponentByClass_ReturnValue) == 0x000120, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_IsValid_ReturnValue) == 0x000128, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_GetSocketLocation_ReturnValue) == 0x000130, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_PointerPosition, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000148, "Member 'WBP_AbilityTarget_C_PointerPosition::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTarget_C_Tick \ +static_assert(alignof(WBP_AbilityTarget_C_Tick) == 0x000004, "Wrong alignment on WBP_AbilityTarget_C_Tick"); \ +static_assert(sizeof(WBP_AbilityTarget_C_Tick) == 0x00003C, "Wrong size on WBP_AbilityTarget_C_Tick"); \ +static_assert(offsetof(WBP_AbilityTarget_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_AbilityTarget_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTarget_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_AbilityTarget_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AbilityTarget_C \ +static_assert(alignof(UWBP_AbilityTarget_C) == 0x000008, "Wrong alignment on UWBP_AbilityTarget_C"); \ +static_assert(sizeof(UWBP_AbilityTarget_C) == 0x0002D8, "Wrong size on UWBP_AbilityTarget_C"); \ +static_assert(offsetof(UWBP_AbilityTarget_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_AbilityTarget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTarget_C, Pointer) == 0x0002C8, "Member 'UWBP_AbilityTarget_C::Pointer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTarget_C, TargetActor) == 0x0002D0, "Member 'UWBP_AbilityTarget_C::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimDebugDataRow \ +static_assert(alignof(FSimDebugDataRow) == 0x000008, "Wrong alignment on FSimDebugDataRow"); \ +static_assert(sizeof(FSimDebugDataRow) == 0x000020, "Wrong size on FSimDebugDataRow"); \ +static_assert(offsetof(FSimDebugDataRow, Mesh) == 0x000008, "Member 'FSimDebugDataRow::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FSimDebugDataRow, MaterialOverride) == 0x000010, "Member 'FSimDebugDataRow::MaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(FSimDebugDataRow, Scale) == 0x000018, "Member 'FSimDebugDataRow::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimDebugVisFragment \ +static_assert(alignof(FSimDebugVisFragment) == 0x000004, "Wrong alignment on FSimDebugVisFragment"); \ +static_assert(sizeof(FSimDebugVisFragment) == 0x000008, "Wrong size on FSimDebugVisFragment"); \ + +#define DUMPER7_ASSERTS_FDataFragment_DebugVis \ +static_assert(alignof(FDataFragment_DebugVis) == 0x000001, "Wrong alignment on FDataFragment_DebugVis"); \ +static_assert(sizeof(FDataFragment_DebugVis) == 0x000001, "Wrong size on FDataFragment_DebugVis"); \ +static_assert(offsetof(FDataFragment_DebugVis, Shape) == 0x000000, "Member 'FDataFragment_DebugVis::Shape' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassDebuggableTag \ +static_assert(alignof(FMassDebuggableTag) == 0x000001, "Wrong alignment on FMassDebuggableTag"); \ +static_assert(sizeof(FMassDebuggableTag) == 0x000001, "Wrong size on FMassDebuggableTag"); \ + +#define DUMPER7_ASSERTS_FAgentDebugVisualization \ +static_assert(alignof(FAgentDebugVisualization) == 0x000008, "Wrong alignment on FAgentDebugVisualization"); \ +static_assert(sizeof(FAgentDebugVisualization) == 0x000028, "Wrong size on FAgentDebugVisualization"); \ +static_assert(offsetof(FAgentDebugVisualization, Mesh) == 0x000008, "Member 'FAgentDebugVisualization::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FAgentDebugVisualization, MaterialOverride) == 0x000010, "Member 'FAgentDebugVisualization::MaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(FAgentDebugVisualization, VisualNearCullDistance) == 0x000018, "Member 'FAgentDebugVisualization::VisualNearCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FAgentDebugVisualization, VisualFarCullDistance) == 0x00001C, "Member 'FAgentDebugVisualization::VisualFarCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FAgentDebugVisualization, WireShape) == 0x000020, "Member 'FAgentDebugVisualization::WireShape' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssignDebugVisProcessor \ +static_assert(alignof(UAssignDebugVisProcessor) == 0x000008, "Wrong alignment on UAssignDebugVisProcessor"); \ +static_assert(sizeof(UAssignDebugVisProcessor) == 0x000370, "Wrong size on UAssignDebugVisProcessor"); \ + +#define DUMPER7_ASSERTS_UDebugVisLocationProcessor \ +static_assert(alignof(UDebugVisLocationProcessor) == 0x000008, "Wrong alignment on UDebugVisLocationProcessor"); \ +static_assert(sizeof(UDebugVisLocationProcessor) == 0x000360, "Wrong size on UDebugVisLocationProcessor"); \ + +#define DUMPER7_ASSERTS_UMassProcessor_UpdateDebugVis \ +static_assert(alignof(UMassProcessor_UpdateDebugVis) == 0x000008, "Wrong alignment on UMassProcessor_UpdateDebugVis"); \ +static_assert(sizeof(UMassProcessor_UpdateDebugVis) == 0x000360, "Wrong size on UMassProcessor_UpdateDebugVis"); \ + +#define DUMPER7_ASSERTS_UMassDebuggerSubsystem \ +static_assert(alignof(UMassDebuggerSubsystem) == 0x000008, "Wrong alignment on UMassDebuggerSubsystem"); \ +static_assert(sizeof(UMassDebuggerSubsystem) == 0x0000C8, "Wrong size on UMassDebuggerSubsystem"); \ +static_assert(offsetof(UMassDebuggerSubsystem, VisualizationComponent) == 0x0000B0, "Member 'UMassDebuggerSubsystem::VisualizationComponent' has a wrong offset!"); \ +static_assert(offsetof(UMassDebuggerSubsystem, DebugVisualizer) == 0x0000B8, "Member 'UMassDebuggerSubsystem::DebugVisualizer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassDebugVisualizationComponent \ +static_assert(alignof(UMassDebugVisualizationComponent) == 0x000008, "Wrong alignment on UMassDebugVisualizationComponent"); \ +static_assert(sizeof(UMassDebugVisualizationComponent) == 0x0000A0, "Wrong size on UMassDebugVisualizationComponent"); \ + +#define DUMPER7_ASSERTS_UMassDebugVisualizationTrait \ +static_assert(alignof(UMassDebugVisualizationTrait) == 0x000008, "Wrong alignment on UMassDebugVisualizationTrait"); \ +static_assert(sizeof(UMassDebugVisualizationTrait) == 0x000028, "Wrong size on UMassDebugVisualizationTrait"); \ + +#define DUMPER7_ASSERTS_AMassDebugVisualizer \ +static_assert(alignof(AMassDebugVisualizer) == 0x000008, "Wrong alignment on AMassDebugVisualizer"); \ +static_assert(sizeof(AMassDebugVisualizer) == 0x000298, "Wrong size on AMassDebugVisualizer"); \ + +#define DUMPER7_ASSERTS_UMassDebugStateTreeProcessor \ +static_assert(alignof(UMassDebugStateTreeProcessor) == 0x000008, "Wrong alignment on UMassDebugStateTreeProcessor"); \ +static_assert(sizeof(UMassDebugStateTreeProcessor) == 0x000360, "Wrong size on UMassDebugStateTreeProcessor"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Player::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Player::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Player::FAnimBlueprintGeneratedConstantData) == 0x0001A8, "Wrong size on AnimBP_Player::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_367) == 0x000004, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_367' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_368) == 0x00000C, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_368' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __IntProperty_369) == 0x000014, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__IntProperty_369' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_370) == 0x000018, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_370' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __IntProperty_371) == 0x000020, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__IntProperty_371' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_372) == 0x000024, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_372' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __EnumProperty_373) == 0x00002C, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__EnumProperty_373' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __ArrayProperty_374) == 0x000030, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__ArrayProperty_374' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_375) == 0x000040, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_375' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_376) == 0x000048, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_376' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_377) == 0x000050, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_377' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_378) == 0x000058, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_378' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __ByteProperty_379) == 0x000060, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__ByteProperty_379' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __AnimSequenceBase_380) == 0x000068, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__AnimSequenceBase_380' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __StructProperty_381) == 0x000070, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__StructProperty_381' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __ArrayProperty_382) == 0x0000A0, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__ArrayProperty_382' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __BlendProfile_383) == 0x0000B0, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__BlendProfile_383' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __CurveFloat_384) == 0x0000B8, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__CurveFloat_384' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __EnumProperty_385) == 0x0000C0, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__EnumProperty_385' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __EnumProperty_386) == 0x0000C1, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__EnumProperty_386' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __ArrayProperty_387) == 0x0000C8, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__ArrayProperty_387' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __FloatProperty_388) == 0x0000D8, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__FloatProperty_388' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __BoolProperty_389) == 0x0000DC, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__BoolProperty_389' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __FloatProperty_390) == 0x0000E0, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__FloatProperty_390' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __BoolProperty_391) == 0x0000E4, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__BoolProperty_391' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __EnumProperty_392) == 0x0000E5, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__EnumProperty_392' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __ByteProperty_393) == 0x0000E6, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__ByteProperty_393' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __NameProperty_394) == 0x0000E8, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__NameProperty_394' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, __StructProperty_395) == 0x0000F0, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::__StructProperty_395' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000110, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000190, "Member 'AnimBP_Player::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Player::FAnimBlueprintGeneratedMutableData) == 0x000008, "Wrong alignment on AnimBP_Player::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Player::FAnimBlueprintGeneratedMutableData) == 0x000068, "Wrong size on AnimBP_Player::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty) == 0x000004, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000008, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_1) == 0x00000C, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __ArrayProperty_2) == 0x000010, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__ArrayProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_3) == 0x000020, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __ArrayProperty_4) == 0x000028, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__ArrayProperty_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_5) == 0x000038, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_6) == 0x000039, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __ArrayProperty_7) == 0x000040, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__ArrayProperty_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_8) == 0x000050, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __BoolProperty_9) == 0x000051, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__BoolProperty_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_10) == 0x000054, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_11) == 0x000058, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_12) == 0x00005C, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_13) == 0x000060, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player::FAnimBlueprintGeneratedMutableData, __FloatProperty_14) == 0x000064, "Member 'AnimBP_Player::FAnimBlueprintGeneratedMutableData::__FloatProperty_14' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_Three60to180rot \ +static_assert(alignof(AnimBP_Player_C_Three60to180rot) == 0x000008, "Wrong alignment on AnimBP_Player_C_Three60to180rot"); \ +static_assert(sizeof(AnimBP_Player_C_Three60to180rot) == 0x000030, "Wrong size on AnimBP_Player_C_Three60to180rot"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, Angle) == 0x000000, "Member 'AnimBP_Player_C_Three60to180rot::Angle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, Output) == 0x000008, "Member 'AnimBP_Player_C_Three60to180rot::Output' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, Temp_bool_Variable) == 0x000010, "Member 'AnimBP_Player_C_Three60to180rot::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000018, "Member 'AnimBP_Player_C_Three60to180rot::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000020, "Member 'AnimBP_Player_C_Three60to180rot::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_Three60to180rot, K2Node_Select_Default) == 0x000028, "Member 'AnimBP_Player_C_Three60to180rot::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_AnimGraph \ +static_assert(alignof(AnimBP_Player_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Player_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Player_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Player_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Player_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Player_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_BlueprintUpdateAnimation \ +static_assert(alignof(AnimBP_Player_C_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_Player_C_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimBP_Player_C_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimBP_Player_C_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimBP_Player_C_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimBP_Player_C_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_CamJostle \ +static_assert(alignof(AnimBP_Player_C_CamJostle) == 0x000008, "Wrong alignment on AnimBP_Player_C_CamJostle"); \ +static_assert(sizeof(AnimBP_Player_C_CamJostle) == 0x000128, "Wrong size on AnimBP_Player_C_CamJostle"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, ReturnValue) == 0x000000, "Member 'AnimBP_Player_C_CamJostle::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_MakeLiteralDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_C_CamJostle::CallFunc_MakeLiteralDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_VSize_ReturnValue) == 0x000038, "Member 'AnimBP_Player_C_CamJostle::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000040, "Member 'AnimBP_Player_C_CamJostle::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_NormalizeToRange_ReturnValue) == 0x000048, "Member 'AnimBP_Player_C_CamJostle::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000050, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'AnimBP_Player_C_CamJostle::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000068, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_ReturnValue) == 0x000070, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000078, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000080, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000088, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000A0, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0000A8, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_ReturnValue_1) == 0x0000B0, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_ReturnValue_2) == 0x0000B4, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_MakeVector_ReturnValue) == 0x0000B8, "Member 'AnimBP_Player_C_CamJostle::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000D0, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000E8, "Member 'AnimBP_Player_C_CamJostle::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_Value_ImplicitCast) == 0x000100, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_MakeVector_Z_ImplicitCast) == 0x000108, "Member 'AnimBP_Player_C_CamJostle::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_Value_ImplicitCast_1) == 0x000110, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_PerlinNoise1D_Value_ImplicitCast_2) == 0x000114, "Member 'AnimBP_Player_C_CamJostle::CallFunc_PerlinNoise1D_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_MakeVector_Y_ImplicitCast) == 0x000118, "Member 'AnimBP_Player_C_CamJostle::CallFunc_MakeVector_Y_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle, CallFunc_MakeVector_X_ImplicitCast) == 0x000120, "Member 'AnimBP_Player_C_CamJostle::CallFunc_MakeVector_X_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_CamJostle_Rot \ +static_assert(alignof(AnimBP_Player_C_CamJostle_Rot) == 0x000008, "Wrong alignment on AnimBP_Player_C_CamJostle_Rot"); \ +static_assert(sizeof(AnimBP_Player_C_CamJostle_Rot) == 0x000190, "Wrong size on AnimBP_Player_C_CamJostle_Rot"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, ReturnValue) == 0x000000, "Member 'AnimBP_Player_C_CamJostle_Rot::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeVector_ReturnValue) == 0x000018, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeLiteralDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeLiteralDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_VSize_ReturnValue) == 0x000038, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000040, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_NormalizeToRange_ReturnValue) == 0x000048, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000050, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000068, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_ReturnValue) == 0x000070, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000078, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000090, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000098, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0000A0, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_ReturnValue_1) == 0x0000A8, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_ReturnValue_2) == 0x0000AC, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000B0, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeVector_ReturnValue_1) == 0x0000C8, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Add_VectorVector_ReturnValue) == 0x0000E0, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000F8, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000110, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_BreakVector_X) == 0x000128, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_BreakVector_Y) == 0x000130, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_BreakVector_Z) == 0x000138, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeRotator_ReturnValue) == 0x000140, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_Value_ImplicitCast) == 0x000158, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeVector_Z_ImplicitCast) == 0x000160, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_Value_ImplicitCast_1) == 0x000168, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_PerlinNoise1D_Value_ImplicitCast_2) == 0x00016C, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_PerlinNoise1D_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeVector_X_ImplicitCast) == 0x000170, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeVector_X_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeVector_Y_ImplicitCast) == 0x000178, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeVector_Y_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000180, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000184, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CamJostle_Rot, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000188, "Member 'AnimBP_Player_C_CamJostle_Rot::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_CombatMain \ +static_assert(alignof(AnimBP_Player_C_CombatMain) == 0x000008, "Wrong alignment on AnimBP_Player_C_CombatMain"); \ +static_assert(sizeof(AnimBP_Player_C_CombatMain) == 0x000020, "Wrong size on AnimBP_Player_C_CombatMain"); \ +static_assert(offsetof(AnimBP_Player_C_CombatMain, InPose) == 0x000000, "Member 'AnimBP_Player_C_CombatMain::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_CombatMain, CombatMain_0) == 0x000010, "Member 'AnimBP_Player_C_CombatMain::CombatMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_Create_Feed_Snapshot \ +static_assert(alignof(AnimBP_Player_C_Create_Feed_Snapshot) == 0x000008, "Wrong alignment on AnimBP_Player_C_Create_Feed_Snapshot"); \ +static_assert(sizeof(AnimBP_Player_C_Create_Feed_Snapshot) == 0x000008, "Wrong size on AnimBP_Player_C_Create_Feed_Snapshot"); \ +static_assert(offsetof(AnimBP_Player_C_Create_Feed_Snapshot, FadeTime) == 0x000000, "Member 'AnimBP_Player_C_Create_Feed_Snapshot::FadeTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_DialogueLayer \ +static_assert(alignof(AnimBP_Player_C_DialogueLayer) == 0x000008, "Wrong alignment on AnimBP_Player_C_DialogueLayer"); \ +static_assert(sizeof(AnimBP_Player_C_DialogueLayer) == 0x000010, "Wrong size on AnimBP_Player_C_DialogueLayer"); \ +static_assert(offsetof(AnimBP_Player_C_DialogueLayer, DialogueLayer_0) == 0x000000, "Member 'AnimBP_Player_C_DialogueLayer::DialogueLayer_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240 \ +static_assert(alignof(AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240) == 0x000008, "Wrong alignment on AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240"); \ +static_assert(sizeof(AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240) == 0x0000B0, "Wrong size on AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240"); \ +static_assert(offsetof(AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240, Payload) == 0x000000, "Member 'AnimBP_Player_C_EventReceived_39860BED4E74E52DBA6B1381DEF2C240::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player \ +static_assert(alignof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player) == 0x000010, "Wrong alignment on AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player"); \ +static_assert(sizeof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player) == 0x000D20, "Wrong size on AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, EntryPoint) == 0x000000, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_IsClosed_Variable) == 0x000014, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_struct_Variable) == 0x000018, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable) == 0x0000C8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Not_PreBool_ReturnValue) == 0x0000C9, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsBlendingPoses_ReturnValue) == 0x0000CA, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsBlendingPoses_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_NotifyName_2) == 0x0000CC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Not_PreBool_ReturnValue_1) == 0x0000D4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsBlendingPoses_ReturnValue_1) == 0x0000D5, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsBlendingPoses_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetBodyAnimation_ReturnValue) == 0x0000D8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetBodyAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_NotifyName_1) == 0x0000F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetBlendingAlpha_ReturnValue) == 0x0000F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetBlendingAlpha_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetOldBodyIdleSnapshotName_ReturnValue) == 0x0000FC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetOldBodyIdleSnapshotName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetBodyIdleAnimation_ReturnValue) == 0x000108, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetBodyIdleAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeVector_ReturnValue) == 0x000110, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Has_Been_Initd_Variable) == 0x000128, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_NotifyName) == 0x00012C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_2) == 0x000134, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_3) == 0x000144, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue) == 0x000158, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_4) == 0x000170, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000180, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_Payload) == 0x000188, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetIsInDialogue_ReturnValue) == 0x000238, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetIsInDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_5) == 0x00023C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000250, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeVector_ReturnValue_1) == 0x000258, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Not_PreBool_ReturnValue_2) == 0x000270, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue) == 0x000271, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable) == 0x000274, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000278, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000280, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_1) == 0x000288, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FMax_ReturnValue) == 0x000290, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_2) == 0x000298, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_3) == 0x0002A0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_4) == 0x0002A4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Roll) == 0x0002A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Pitch) == 0x0002AC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Yaw) == 0x0002B0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_1) == 0x0002B4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0002B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeVector_ReturnValue_2) == 0x0002C0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default) == 0x0002D8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_2) == 0x0002DC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_5) == 0x0002E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_3) == 0x0002E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x0002F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_X) == 0x0002F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Y) == 0x000300, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Z) == 0x000308, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_ReturnValue) == 0x000310, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000318, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000319, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_6) == 0x00031C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue_1) == 0x000320, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_7) == 0x000324, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_ReturnValue_1) == 0x000328, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000330, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_4) == 0x000331, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_X_1) == 0x000338, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Y_1) == 0x000340, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Z_1) == 0x000348, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x000350, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_1) == 0x000354, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue_2) == 0x000358, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000360, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanOR_ReturnValue) == 0x000378, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Roll_1) == 0x00037C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Pitch_1) == 0x000380, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Yaw_1) == 0x000384, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000388, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000390, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FMax_ReturnValue_1) == 0x000398, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FClamp_ReturnValue) == 0x0003A0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeVector_ReturnValue_3) == 0x0003A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_OutValue) == 0x0003C0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x0003C4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0003C8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0003D0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_name_Variable) == 0x0003D4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Event_DeltaTimeX) == 0x0003DC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Event_DeltaTimeX' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetOwningComponent_ReturnValue) == 0x0003E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue) == 0x0003E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x0003F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsWrestler_Character) == 0x0003F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess) == 0x000400, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsInCombat_self_CastInput) == 0x000408, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsInCombat_ReturnValue) == 0x000418, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Not_PreBool_ReturnValue_3) == 0x000419, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue_3) == 0x00041A, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsValid_ReturnValue) == 0x00041B, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_OutValue_1) == 0x00041C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_OutValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_ReturnValue_1) == 0x000420, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_OutValue_2) == 0x000424, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_OutValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_ReturnValue_2) == 0x000428, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_OutValue_3) == 0x00042C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_OutValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_ReturnValue_3) == 0x000430, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_OutValue_4) == 0x000434, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_OutValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurveValueWithDefault_ReturnValue_4) == 0x000438, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurveValueWithDefault_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetDeltaSeconds_ReturnValue) == 0x00043C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000440, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000448, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsWrestler_Character_1) == 0x000450, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsWrestler_Character_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess_1) == 0x000458, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_FadeTime) == 0x000460, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_FadeTime' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000468, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000478, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetIsWallClimbing_ReturnValue) == 0x000479, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetIsWallClimbing_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasTag_ReturnValue) == 0x00047A, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x000480, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_2) == 0x000488, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetVelocity_ReturnValue) == 0x000490, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FInterpTo_ReturnValue) == 0x0004A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_X_2) == 0x0004B0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Y_2) == 0x0004B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Z_2) == 0x0004C0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeVector_ReturnValue_4) == 0x0004C8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_VSize_ReturnValue) == 0x0004E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_NotifyName_3) == 0x0004E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_3) == 0x0004F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0004F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsValid_ReturnValue_1) == 0x000500, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsValid_ReturnValue_2) == 0x000501, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_real_Variable_8) == 0x000508, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_real_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_RandomUnitVector_ReturnValue) == 0x000510, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000528, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_VectorVector_ReturnValue) == 0x000540, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000558, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_ClampVectorSize_ReturnValue) == 0x000570, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000588, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_5) == 0x00058C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000590, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_X_3) == 0x0005A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Y_3) == 0x0005B0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakVector_Z_3) == 0x0005B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_struct_Variable_1) == 0x0005C0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0005D8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_ReturnValue_2) == 0x0005E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Has_Been_Initd_Variable_1) == 0x0005E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0005F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeRotator_ReturnValue) == 0x0005F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetProperty_ReturnValue) == 0x000610, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsValid_ReturnValue_3) == 0x000614, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MapRangeClamped_ReturnValue) == 0x000618, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_6) == 0x000620, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_IsClosed_Variable_1) == 0x000621, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CreateDelegate_OutputDelegate_6) == 0x000624, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_delegate_Variable) == 0x000634, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_delegate_Variable_1) == 0x000644, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_4) == 0x000658, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_5) == 0x000660, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsWrestler_Character_2) == 0x000668, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsWrestler_Character_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess_2) == 0x000670, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsWrestler_Character_3) == 0x000678, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsWrestler_Character_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess_3) == 0x000680, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000688, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000690, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_7) == 0x000698, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCurrentActiveMontage_ReturnValue) == 0x0006A0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCurrentActiveMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsSlotActive_ReturnValue) == 0x0006A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsSlotActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Montage_GetBlendTime_ReturnValue) == 0x0006AC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Montage_GetBlendTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_TryGetPawnOwner_ReturnValue_6) == 0x0006B0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_TryGetPawnOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetForwardVector_ReturnValue) == 0x0006B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsWrestler_Character_4) == 0x0006D0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsWrestler_Character_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess_4) == 0x0006D8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_CustomEvent_NotifyName_4) == 0x0006DC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0006E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0006F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetOwningActor_ReturnValue) == 0x000700, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetOwningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetTraversalVelocity_ReturnValue) == 0x000708, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetTraversalVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_MakeArray_Array) == 0x000720, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_3) == 0x000730, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetAttachDirection_ReturnValue) == 0x000748, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetAttachDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000760, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetAttachActor_OutAttachActor) == 0x000778, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetAttachActor_OutAttachActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetAttachActor_ReturnValue) == 0x000780, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetAttachActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeTransform_ReturnValue) == 0x000790, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_InverseTransformDirection_ReturnValue) == 0x0007F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_AsBP_Climbable_Animations) == 0x000808, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_AsBP_Climbable_Animations' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_DynamicCast_bSuccess_5) == 0x000818, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000820, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetBlendshapes_Idle) == 0x000838, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetBlendshapes_Idle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetBlendshapes_Movement) == 0x000840, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetBlendshapes_Movement' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Roll_2) == 0x000848, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Pitch_2) == 0x00084C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakRotator_Yaw_2) == 0x000850, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_SignOfFloat_ReturnValue) == 0x000858, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_ReturnValue_3) == 0x000860, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000868, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue_3) == 0x000870, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue_4) == 0x000871, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_4) == 0x000878, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_5) == 0x000880, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_DoesImplementInterface_ReturnValue) == 0x000888, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue_1) == 0x000890, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsAttached_ReturnValue) == 0x0008A8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, Temp_bool_Variable_8) == 0x0008A9, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Not_PreBool_ReturnValue_4) == 0x0008AA, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Not_PreBool_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0008B0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0008B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_IsValid_ReturnValue_4) == 0x0008D8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0008E0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0008F0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0008F8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000910, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000918, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCameraRotation_ReturnValue) == 0x000930, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_VInterpTo_ReturnValue) == 0x000948, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetForwardVector_ReturnValue_1) == 0x000960, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_NegateVector_ReturnValue) == 0x000978, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x000990, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Default_6) == 0x000998, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCameraRotation_ReturnValue_1) == 0x0009A0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0009B8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetRightVector_ReturnValue) == 0x0009D0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetForwardVector_ReturnValue_2) == 0x0009E8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000A00, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000A18, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GetCameraLocation_ReturnValue) == 0x000A30, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000A48, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000A60, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_LineTraceSingle_OutHit) == 0x000A78, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_LineTraceSingle_ReturnValue) == 0x000B60, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_bBlockingHit) == 0x000B61, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_bInitialOverlap) == 0x000B62, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_Time) == 0x000B64, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_Distance) == 0x000B68, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_Location) == 0x000B70, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_ImpactPoint) == 0x000B88, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_Normal) == 0x000BA0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_ImpactNormal) == 0x000BB8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_PhysMat) == 0x000BD0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_HitActor) == 0x000BD8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_HitComponent) == 0x000BE0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_HitBoneName) == 0x000BE8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_BoneName) == 0x000BF0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_HitItem) == 0x000BF8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_ElementIndex) == 0x000BFC, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_FaceIndex) == 0x000C00, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_TraceStart) == 0x000C08, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BreakHitResult_TraceEnd) == 0x000C20, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000C38, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Dot_VectorVector_ReturnValue) == 0x000C40, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_ReturnValue_4) == 0x000C48, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Less_DoubleDouble_ReturnValue_5) == 0x000C50, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Less_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000C58, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000C60, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue_4) == 0x000C61, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_BooleanAND_ReturnValue_5) == 0x000C62, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_StructMemberSet_Alpha_ImplicitCast) == 0x000C64, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_StructMemberSet_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000C68, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FMax_A_ImplicitCast) == 0x000C70, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FMax_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_StructMemberSet_Alpha_ImplicitCast_1) == 0x000C78, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_StructMemberSet_Alpha_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000C80, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000C88, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000C90, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FMax_A_ImplicitCast_1) == 0x000C98, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FMax_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FMax_B_ImplicitCast) == 0x000CA0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FMax_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_CamClip_ImplicitCast) == 0x000CA8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_CamClip_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000CB0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Array_Set_Item_ImplicitCast) == 0x000CB8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Array_Set_Item_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_RecallDissolve_ImplicitCast) == 0x000CC0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_RecallDissolve_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000CC8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_FeedBlendoutTime_ImplicitCast) == 0x000CD0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_FeedBlendoutTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000CD4, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000CD8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000CE0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_AttachViewPitch_ImplicitCast) == 0x000CE8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_AttachViewPitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Abs_A_ImplicitCast) == 0x000CF0, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_Select_Option_0_ImplicitCast) == 0x000CF8, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_SignOfFloat_A_ImplicitCast) == 0x000D00, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_SignOfFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x000D08, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000D10, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_CamClip_R_ImplicitCast) == 0x000D18, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_CamClip_R_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player, K2Node_VariableSet_CamClip_L_ImplicitCast) == 0x000D1C, "Member 'AnimBP_Player_C_ExecuteUbergraph_AnimBP_Player::K2Node_VariableSet_CamClip_L_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_LocomotionMain \ +static_assert(alignof(AnimBP_Player_C_LocomotionMain) == 0x000008, "Wrong alignment on AnimBP_Player_C_LocomotionMain"); \ +static_assert(sizeof(AnimBP_Player_C_LocomotionMain) == 0x000010, "Wrong size on AnimBP_Player_C_LocomotionMain"); \ +static_assert(offsetof(AnimBP_Player_C_LocomotionMain, LocomotionMain_0) == 0x000000, "Member 'AnimBP_Player_C_LocomotionMain::LocomotionMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E \ +static_assert(alignof(AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E) == 0x000004, "Wrong alignment on AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(sizeof(AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E) == 0x000008, "Wrong size on AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(offsetof(AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E, NotifyName) == 0x000000, "Member 'AnimBP_Player_C_OnBlendOut_F29EA73B4154A487C8A3148C8D6B793E::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E \ +static_assert(alignof(AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E) == 0x000004, "Wrong alignment on AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(sizeof(AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E) == 0x000008, "Wrong size on AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(offsetof(AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E, NotifyName) == 0x000000, "Member 'AnimBP_Player_C_OnCompleted_F29EA73B4154A487C8A3148C8D6B793E::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E \ +static_assert(alignof(AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E) == 0x000004, "Wrong alignment on AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(sizeof(AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E) == 0x000008, "Wrong size on AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(offsetof(AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E, NotifyName) == 0x000000, "Member 'AnimBP_Player_C_OnInterrupted_F29EA73B4154A487C8A3148C8D6B793E::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E \ +static_assert(alignof(AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E) == 0x000004, "Wrong alignment on AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(sizeof(AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E) == 0x000008, "Wrong size on AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(offsetof(AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E, NotifyName) == 0x000000, "Member 'AnimBP_Player_C_OnNotifyBegin_F29EA73B4154A487C8A3148C8D6B793E::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E \ +static_assert(alignof(AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E) == 0x000004, "Wrong alignment on AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(sizeof(AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E) == 0x000008, "Wrong size on AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E"); \ +static_assert(offsetof(AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E, NotifyName) == 0x000000, "Member 'AnimBP_Player_C_OnNotifyEnd_F29EA73B4154A487C8A3148C8D6B793E::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_RampClamp \ +static_assert(alignof(AnimBP_Player_C_RampClamp) == 0x000008, "Wrong alignment on AnimBP_Player_C_RampClamp"); \ +static_assert(sizeof(AnimBP_Player_C_RampClamp) == 0x000058, "Wrong size on AnimBP_Player_C_RampClamp"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, AngleDegrees) == 0x000000, "Member 'AnimBP_Player_C_RampClamp::AngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, Threshold) == 0x000008, "Member 'AnimBP_Player_C_RampClamp::Threshold' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, ReturnValue) == 0x000010, "Member 'AnimBP_Player_C_RampClamp::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, Negative) == 0x000018, "Member 'AnimBP_Player_C_RampClamp::Negative' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_ClampAngle_ReturnValue) == 0x000020, "Member 'AnimBP_Player_C_RampClamp::CallFunc_ClampAngle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Abs_ReturnValue) == 0x000030, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000038, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000040, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Lerp_ReturnValue) == 0x000048, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_RampClamp, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'AnimBP_Player_C_RampClamp::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_UpdateAim \ +static_assert(alignof(AnimBP_Player_C_UpdateAim) == 0x000010, "Wrong alignment on AnimBP_Player_C_UpdateAim"); \ +static_assert(sizeof(AnimBP_Player_C_UpdateAim) == 0x000610, "Wrong size on AnimBP_Player_C_UpdateAim"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, Temp_bool_Variable) == 0x000000, "Member 'AnimBP_Player_C_UpdateAim::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetUpVector_ReturnValue) == 0x000008, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000020, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll) == 0x000038, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch) == 0x00003C, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw) == 0x000040, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeTransform_ReturnValue_1) == 0x0000C0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetPlayerController_ReturnValue) == 0x000120, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, K2Node_Select_Default) == 0x000128, "Member 'AnimBP_Player_C_UpdateAim::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetControlRotation_ReturnValue) == 0x000130, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000148, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue) == 0x000150, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_ReturnValue) == 0x000168, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll_1) == 0x000170, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch_1) == 0x000174, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw_1) == 0x000178, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_ReturnValue) == 0x000180, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_Output) == 0x000198, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_Output' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_ReturnValue_1) == 0x0001A0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_Output_1) == 0x0001A8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_Output_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetPlayerController_ReturnValue_1) == 0x0001B0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_ReturnValue_2) == 0x0001B8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_1) == 0x0001C0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_TransformRotation_ReturnValue) == 0x0001D8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_TransformRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetOwningComponent_ReturnValue) == 0x0001F0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll_2) == 0x0001F8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch_2) == 0x0001FC, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw_2) == 0x000200, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_IsValid_ReturnValue) == 0x000204, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_2) == 0x000208, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetSocketTransform_ReturnValue) == 0x000220, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakTransform_Location) == 0x000280, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakTransform_Rotation) == 0x000298, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakTransform_Scale) == 0x0002B0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll_3) == 0x0002C8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch_3) == 0x0002CC, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw_3) == 0x0002D0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetRightVector_ReturnValue) == 0x0002D8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0002F0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_NegateVector_ReturnValue) == 0x0002F8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000310, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetUpVector_ReturnValue_1) == 0x000318, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, Temp_bool_Variable_1) == 0x000330, "Member 'AnimBP_Player_C_UpdateAim::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000338, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeTransform_ReturnValue_2) == 0x000350, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, K2Node_Select_Default_1) == 0x0003B0, "Member 'AnimBP_Player_C_UpdateAim::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue_1) == 0x0003B8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MapRangeClamped_ReturnValue) == 0x0003D0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll_4) == 0x0003D8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch_4) == 0x0003DC, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw_4) == 0x0003E0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0003E8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_Output_2) == 0x0003F0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_Output_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_ReturnValue_3) == 0x0003F8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_ReturnValue_4) == 0x000400, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_3) == 0x000408, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_TransformRotation_ReturnValue_1) == 0x000420, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_TransformRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000438, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue) == 0x000440, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_World_Rotator_to_Bone_Rotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeTransform_ReturnValue_3) == 0x000460, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeTransform_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetDeltaSeconds_ReturnValue) == 0x0004C0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue_2) == 0x0004C8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Roll_5) == 0x0004E0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Roll_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Pitch_5) == 0x0004E4, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Pitch_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_BreakRotator_Yaw_5) == 0x0004E8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_BreakRotator_Yaw_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0004F0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_RInterpTo_ReturnValue) == 0x0004F8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_RampClamp_ReturnValue) == 0x000510, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_RampClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000518, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000520, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000528, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_RampClamp_ReturnValue_1) == 0x000530, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_RampClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000538, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000540, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_GetControlRotation_ReturnValue_1) == 0x000548, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x000560, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x000568, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_4) == 0x000570, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, K2Node_Select_Option_0_ImplicitCast) == 0x000588, "Member 'AnimBP_Player_C_UpdateAim::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000590, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000598, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0005A0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_angle_ImplicitCast) == 0x0005A8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_angle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_angle_ImplicitCast_1) == 0x0005B0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_angle_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0005B8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0005BC, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, K2Node_Select_Option_0_ImplicitCast_1) == 0x0005C0, "Member 'AnimBP_Player_C_UpdateAim::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x0005C8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x0005D0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_360to180rot_angle_ImplicitCast_2) == 0x0005D8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_360to180rot_angle_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_FClamp_Value_ImplicitCast) == 0x0005E0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Yaw_ImplicitCast_1) == 0x0005E8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Yaw_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Pitch_ImplicitCast_1) == 0x0005EC, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Pitch_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0005F0, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0005F8, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Yaw_ImplicitCast_2) == 0x000600, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Yaw_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_UpdateAim, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x000604, "Member 'AnimBP_Player_C_UpdateAim::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_C_World_Rotator_to_Bone_Rotator \ +static_assert(alignof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator) == 0x000008, "Wrong alignment on AnimBP_Player_C_World_Rotator_to_Bone_Rotator"); \ +static_assert(sizeof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator) == 0x000090, "Wrong size on AnimBP_Player_C_World_Rotator_to_Bone_Rotator"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, InputPin) == 0x000000, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::InputPin' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, ReturnValue) == 0x000018, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, CallFunc_GetForwardVector_ReturnValue) == 0x000030, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, CallFunc_GetUpVector_ReturnValue) == 0x000048, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, CallFunc_NegateVector_ReturnValue) == 0x000060, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_C_World_Rotator_to_Bone_Rotator, CallFunc_MakeRotFromZY_ReturnValue) == 0x000078, "Member 'AnimBP_Player_C_World_Rotator_to_Bone_Rotator::CallFunc_MakeRotFromZY_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Player_C \ +static_assert(alignof(UAnimBP_Player_C) == 0x000010, "Wrong alignment on UAnimBP_Player_C"); \ +static_assert(sizeof(UAnimBP_Player_C) == 0x003000, "Wrong size on UAnimBP_Player_C"); \ +static_assert(offsetof(UAnimBP_Player_C, UberGraphFrame) == 0x0003A0, "Member 'UAnimBP_Player_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, __AnimBlueprintMutables) == 0x0003A8, "Member 'UAnimBP_Player_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimBlueprintExtension_PropertyAccess) == 0x000410, "Member 'UAnimBP_Player_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimBlueprintExtension_Base) == 0x000418, "Member 'UAnimBP_Player_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Root_3) == 0x000420, "Member 'UAnimBP_Player_C::AnimGraphNode_Root_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SaveCachedPose_4) == 0x000440, "Member 'UAnimBP_Player_C::AnimGraphNode_SaveCachedPose_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_7) == 0x0004C0, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SaveCachedPose_3) == 0x0004E8, "Member 'UAnimBP_Player_C::AnimGraphNode_SaveCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_6) == 0x000568, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LinkedAnimLayer_2) == 0x000590, "Member 'UAnimBP_Player_C::AnimGraphNode_LinkedAnimLayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend_5) == 0x000658, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_6) == 0x000748, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_5) == 0x000790, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LinkedAnimLayer_1) == 0x0007B8, "Member 'UAnimBP_Player_C::AnimGraphNode_LinkedAnimLayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_5) == 0x000880, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_TransitionResult_1) == 0x0008C8, "Member 'UAnimBP_Player_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_TransitionResult) == 0x0008F0, "Member 'UAnimBP_Player_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequencePlayer_4) == 0x000918, "Member 'UAnimBP_Player_C::AnimGraphNode_SequencePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_StateResult_1) == 0x000960, "Member 'UAnimBP_Player_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequencePlayer_3) == 0x000980, "Member 'UAnimBP_Player_C::AnimGraphNode_SequencePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_TwoWayBlend) == 0x0009C8, "Member 'UAnimBP_Player_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_PoseSnapshot_1) == 0x000A90, "Member 'UAnimBP_Player_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_StateResult) == 0x000B20, "Member 'UAnimBP_Player_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_StateMachine) == 0x000B40, "Member 'UAnimBP_Player_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Root_2) == 0x000C08, "Member 'UAnimBP_Player_C::AnimGraphNode_Root_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_13) == 0x000C28, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_12) == 0x000D50, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_4) == 0x000E78, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LinkedInputPose) == 0x000EC0, "Member 'UAnimBP_Player_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_3) == 0x000F78, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LinkedAnimLayer) == 0x000FC0, "Member 'UAnimBP_Player_C::AnimGraphNode_LinkedAnimLayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SaveCachedPose_2) == 0x001088, "Member 'UAnimBP_Player_C::AnimGraphNode_SaveCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_4) == 0x001108, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool_5) == 0x001130, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_2) == 0x001178, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LinkedAnimGraph) == 0x0011C0, "Member 'UAnimBP_Player_C::AnimGraphNode_LinkedAnimGraph' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool_4) == 0x001278, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace_5) == 0x0012C0, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace_5) == 0x0012E0, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_11) == 0x001300, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace_4) == 0x001428, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace_4) == 0x001448, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Root_1) == 0x001468, "Member 'UAnimBP_Player_C::AnimGraphNode_Root_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Root) == 0x001488, "Member 'UAnimBP_Player_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_10) == 0x0014A8, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequencePlayer_2) == 0x0015D0, "Member 'UAnimBP_Player_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendBoneByChannel) == 0x001618, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendBoneByChannel' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequenceEvaluator) == 0x001680, "Member 'UAnimBP_Player_C::AnimGraphNode_SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend_4) == 0x0016C0, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequencePlayer_1) == 0x0017B0, "Member 'UAnimBP_Player_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_PoseSnapshot) == 0x0017F8, "Member 'UAnimBP_Player_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool_3) == 0x001888, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_9) == 0x0018D0, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace_3) == 0x0019F8, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace_3) == 0x001A18, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SaveCachedPose_1) == 0x001A38, "Member 'UAnimBP_Player_C::AnimGraphNode_SaveCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_8) == 0x001AB8, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_3) == 0x001BE0, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_2) == 0x001C08, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend_3) == 0x001C30, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot_1) == 0x001D20, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_Slot) == 0x001D68, "Member 'UAnimBP_Player_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SequencePlayer) == 0x001DB0, "Member 'UAnimBP_Player_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend_2) == 0x001DF8, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool_2) == 0x001EE8, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_7) == 0x001F30, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace_2) == 0x002058, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace_2) == 0x002078, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_6) == 0x002098, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool_1) == 0x0021C0, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_SaveCachedPose) == 0x002208, "Member 'UAnimBP_Player_C::AnimGraphNode_SaveCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose_1) == 0x002288, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_UseCachedPose) == 0x0022B0, "Member 'UAnimBP_Player_C::AnimGraphNode_UseCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_5) == 0x0022D8, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace_1) == 0x002400, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace_1) == 0x002420, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalRefPose) == 0x002440, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalRefPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendListByBool) == 0x002450, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendListByBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_4) == 0x002498, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LocalToComponentSpace) == 0x0025C0, "Member 'UAnimBP_Player_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ComponentToLocalSpace) == 0x0025E0, "Member 'UAnimBP_Player_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend_1) == 0x002600, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendSpacePlayer_2) == 0x0026F0, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendSpacePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendSpacePlayer_1) == 0x002760, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendSpacePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_BlendSpacePlayer) == 0x0027D0, "Member 'UAnimBP_Player_C::AnimGraphNode_BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_3) == 0x002840, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_2) == 0x002968, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone_1) == 0x002A90, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_ModifyBone) == 0x002BB8, "Member 'UAnimBP_Player_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AnimGraphNode_LayeredBoneBlend) == 0x002CE0, "Member 'UAnimBP_Player_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, __CustomProperty_FocalPoint_A1E58ADA40FFC63BE96028B52D63A48B) == 0x002DD0, "Member 'UAnimBP_Player_C::__CustomProperty_FocalPoint_A1E58ADA40FFC63BE96028B52D63A48B' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, __CustomProperty_IgnoreInstantBlendInIf0_A1E58ADA40FFC63BE96028B52D63A48B) == 0x002DE8, "Member 'UAnimBP_Player_C::__CustomProperty_IgnoreInstantBlendInIf0_A1E58ADA40FFC63BE96028B52D63A48B' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, __CustomProperty_EndRotationRefSocket_A1E58ADA40FFC63BE96028B52D63A48B) == 0x002DEC, "Member 'UAnimBP_Player_C::__CustomProperty_EndRotationRefSocket_A1E58ADA40FFC63BE96028B52D63A48B' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Direction) == 0x002DF8, "Member 'UAnimBP_Player_C::Direction' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Velocity) == 0x002E00, "Member 'UAnimBP_Player_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Speed) == 0x002E18, "Member 'UAnimBP_Player_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, bIsFalling) == 0x002E20, "Member 'UAnimBP_Player_C::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, ControlRotation) == 0x002E28, "Member 'UAnimBP_Player_C::ControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, RelativeControlRotation) == 0x002E40, "Member 'UAnimBP_Player_C::RelativeControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, HardLandSpeedThreshold) == 0x002E58, "Member 'UAnimBP_Player_C::HardLandSpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, CutsceneEndRotSocket) == 0x002E60, "Member 'UAnimBP_Player_C::CutsceneEndRotSocket' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, bIsInCombat) == 0x002E68, "Member 'UAnimBP_Player_C::bIsInCombat' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Is_Crouched) == 0x002E69, "Member 'UAnimBP_Player_C::Is_Crouched' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, LagRotation) == 0x002E70, "Member 'UAnimBP_Player_C::LagRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, RelativeLagRotation) == 0x002E88, "Member 'UAnimBP_Player_C::RelativeLagRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, LagClamp) == 0x002EA0, "Member 'UAnimBP_Player_C::LagClamp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, DashDip) == 0x002EA8, "Member 'UAnimBP_Player_C::DashDip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, RecallDissolve) == 0x002EB0, "Member 'UAnimBP_Player_C::RecallDissolve' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Anim_Dip) == 0x002EB8, "Member 'UAnimBP_Player_C::Anim_Dip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, HeadStabilizer) == 0x002EBC, "Member 'UAnimBP_Player_C::HeadStabilizer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Blade_Override) == 0x002EC0, "Member 'UAnimBP_Player_C::Blade_Override' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, ForcedStabilise) == 0x002EC4, "Member 'UAnimBP_Player_C::ForcedStabilise' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Wall_Climbing) == 0x002EC5, "Member 'UAnimBP_Player_C::Wall_Climbing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Prowling) == 0x002EC6, "Member 'UAnimBP_Player_C::Prowling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, FeedSnapshot) == 0x002EC8, "Member 'UAnimBP_Player_C::FeedSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, bIsInFeed) == 0x002F00, "Member 'UAnimBP_Player_C::bIsInFeed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, FeedBlendoutTime) == 0x002F04, "Member 'UAnimBP_Player_C::FeedBlendoutTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, ObjectClimbing) == 0x002F08, "Member 'UAnimBP_Player_C::ObjectClimbing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, HeadBoneControlRotation) == 0x002F10, "Member 'UAnimBP_Player_C::HeadBoneControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AttachRotation) == 0x002F28, "Member 'UAnimBP_Player_C::AttachRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AttachViewYaw) == 0x002F40, "Member 'UAnimBP_Player_C::AttachViewYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AttachViewPitch) == 0x002F48, "Member 'UAnimBP_Player_C::AttachViewPitch' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, UpperBodySlotActive) == 0x002F50, "Member 'UAnimBP_Player_C::UpperBodySlotActive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AttachedMontageBlendTime) == 0x002F54, "Member 'UAnimBP_Player_C::AttachedMontageBlendTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Climb_Idle_BS) == 0x002F58, "Member 'UAnimBP_Player_C::Climb_Idle_BS' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Climb_Move_BS) == 0x002F60, "Member 'UAnimBP_Player_C::Climb_Move_BS' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Climb_Hanging) == 0x002F68, "Member 'UAnimBP_Player_C::Climb_Hanging' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AudioComponent) == 0x002F70, "Member 'UAnimBP_Player_C::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, CamClip) == 0x002F78, "Member 'UAnimBP_Player_C::CamClip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, CamClip_L) == 0x002F7C, "Member 'UAnimBP_Player_C::CamClip_L' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, CamClip_R) == 0x002F80, "Member 'UAnimBP_Player_C::CamClip_R' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, LegsHidden) == 0x002F84, "Member 'UAnimBP_Player_C::LegsHidden' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, AtttchLookLoc) == 0x002F88, "Member 'UAnimBP_Player_C::AtttchLookLoc' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, GunOut) == 0x002FA0, "Member 'UAnimBP_Player_C::GunOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, ArmRecoil) == 0x002FA8, "Member 'UAnimBP_Player_C::ArmRecoil' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, ArmRecoilInterp) == 0x002FC0, "Member 'UAnimBP_Player_C::ArmRecoilInterp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, RecoilRot) == 0x002FD8, "Member 'UAnimBP_Player_C::RecoilRot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, MainCamStabiliser) == 0x002FF0, "Member 'UAnimBP_Player_C::MainCamStabiliser' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_C, Camstabilizingproperty) == 0x002FF8, "Member 'UAnimBP_Player_C::Camstabilizingproperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassStoredActorsContainer \ +static_assert(alignof(FMassStoredActorsContainer) == 0x000008, "Wrong alignment on FMassStoredActorsContainer"); \ +static_assert(sizeof(FMassStoredActorsContainer) == 0x000010, "Wrong size on FMassStoredActorsContainer"); \ +static_assert(offsetof(FMassStoredActorsContainer, Container) == 0x000000, "Member 'FMassStoredActorsContainer::Container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassLWIManagerSharedFragment \ +static_assert(alignof(FMassLWIManagerSharedFragment) == 0x000008, "Wrong alignment on FMassLWIManagerSharedFragment"); \ +static_assert(sizeof(FMassLWIManagerSharedFragment) == 0x000028, "Wrong size on FMassLWIManagerSharedFragment"); \ +static_assert(offsetof(FMassLWIManagerSharedFragment, LWIManager) == 0x000000, "Member 'FMassLWIManagerSharedFragment::LWIManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLWIClientActorSpawnerSubsystem \ +static_assert(alignof(UMassLWIClientActorSpawnerSubsystem) == 0x000008, "Wrong alignment on UMassLWIClientActorSpawnerSubsystem"); \ +static_assert(sizeof(UMassLWIClientActorSpawnerSubsystem) == 0x000140, "Wrong size on UMassLWIClientActorSpawnerSubsystem"); \ +static_assert(offsetof(UMassLWIClientActorSpawnerSubsystem, PendingActors) == 0x0000F0, "Member 'UMassLWIClientActorSpawnerSubsystem::PendingActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMassLWIConfigActor \ +static_assert(alignof(AMassLWIConfigActor) == 0x000008, "Wrong alignment on AMassLWIConfigActor"); \ +static_assert(sizeof(AMassLWIConfigActor) == 0x000320, "Wrong size on AMassLWIConfigActor"); \ +static_assert(offsetof(AMassLWIConfigActor, DefaultConfig) == 0x000298, "Member 'AMassLWIConfigActor::DefaultConfig' has a wrong offset!"); \ +static_assert(offsetof(AMassLWIConfigActor, PerClassConfigs) == 0x0002C8, "Member 'AMassLWIConfigActor::PerClassConfigs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMassLWIRepresentationSubsystem \ +static_assert(alignof(UMassLWIRepresentationSubsystem) == 0x000008, "Wrong alignment on UMassLWIRepresentationSubsystem"); \ +static_assert(sizeof(UMassLWIRepresentationSubsystem) == 0x0000C8, "Wrong size on UMassLWIRepresentationSubsystem"); \ + +#define DUMPER7_ASSERTS_AMassLWIStaticMeshManager \ +static_assert(alignof(AMassLWIStaticMeshManager) == 0x000008, "Wrong alignment on AMassLWIStaticMeshManager"); \ +static_assert(sizeof(AMassLWIStaticMeshManager) == 0x000408, "Wrong size on AMassLWIStaticMeshManager"); \ + +#define DUMPER7_ASSERTS_UMassLWIVisualizationTrait \ +static_assert(alignof(UMassLWIVisualizationTrait) == 0x000010, "Wrong alignment on UMassLWIVisualizationTrait"); \ +static_assert(sizeof(UMassLWIVisualizationTrait) == 0x000140, "Wrong size on UMassLWIVisualizationTrait"); \ + +#define DUMPER7_ASSERTS_UMassLWISubsystem \ +static_assert(alignof(UMassLWISubsystem) == 0x000008, "Wrong alignment on UMassLWISubsystem"); \ +static_assert(sizeof(UMassLWISubsystem) == 0x0000E8, "Wrong size on UMassLWISubsystem"); \ +static_assert(offsetof(UMassLWISubsystem, RegisteredManagers) == 0x000030, "Member 'UMassLWISubsystem::RegisteredManagers' has a wrong offset!"); \ +static_assert(offsetof(UMassLWISubsystem, DefaultConfig) == 0x000050, "Member 'UMassLWISubsystem::DefaultConfig' has a wrong offset!"); \ +static_assert(offsetof(UMassLWISubsystem, LWISpawnerSubsystem) == 0x0000D0, "Member 'UMassLWISubsystem::LWISpawnerSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionBackInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_StaticMesh_C_BndEvt__BP_TransitionDoor_StaticMesh_TransitionFrontInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh \ +static_assert(alignof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh) == 0x000008, "Wrong alignment on BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh"); \ +static_assert(sizeof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh) == 0x000038, "Wrong size on BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, EntryPoint) == 0x000000, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, Temp_object_Variable) == 0x000008, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x000018, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000020, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh, K2Node_MakeArray_Array) == 0x000028, "Member 'BP_TransitionDoor_StaticMesh_C_ExecuteUbergraph_BP_TransitionDoor_StaticMesh::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionDoor_StaticMesh_C \ +static_assert(alignof(ABP_TransitionDoor_StaticMesh_C) == 0x000008, "Wrong alignment on ABP_TransitionDoor_StaticMesh_C"); \ +static_assert(sizeof(ABP_TransitionDoor_StaticMesh_C) == 0x000418, "Wrong size on ABP_TransitionDoor_StaticMesh_C"); \ +static_assert(offsetof(ABP_TransitionDoor_StaticMesh_C, UberGraphFrame_BP_TransitionDoor_StaticMesh_C) == 0x000400, "Member 'ABP_TransitionDoor_StaticMesh_C::UberGraphFrame_BP_TransitionDoor_StaticMesh_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_StaticMesh_C, InteractionPromptMover) == 0x000408, "Member 'ABP_TransitionDoor_StaticMesh_C::InteractionPromptMover' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_StaticMesh_C, DoorMesh) == 0x000410, "Member 'ABP_TransitionDoor_StaticMesh_C::DoorMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPointIndexes \ +static_assert(alignof(FPointIndexes) == 0x000008, "Wrong alignment on FPointIndexes"); \ +static_assert(sizeof(FPointIndexes) == 0x000010, "Wrong size on FPointIndexes"); \ +static_assert(offsetof(FPointIndexes, SampleIndexes) == 0x000000, "Member 'FPointIndexes::SampleIndexes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniEvent \ +static_assert(alignof(FHoudiniEvent) == 0x000008, "Wrong alignment on FHoudiniEvent"); \ +static_assert(sizeof(FHoudiniEvent) == 0x000070, "Wrong size on FHoudiniEvent"); \ +static_assert(offsetof(FHoudiniEvent, Position) == 0x000000, "Member 'FHoudiniEvent::Position' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Normal) == 0x000018, "Member 'FHoudiniEvent::Normal' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Impulse) == 0x000030, "Member 'FHoudiniEvent::Impulse' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Velocity) == 0x000038, "Member 'FHoudiniEvent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, POINTID) == 0x000050, "Member 'FHoudiniEvent::POINTID' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Time) == 0x000054, "Member 'FHoudiniEvent::Time' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, LIFE) == 0x000058, "Member 'FHoudiniEvent::LIFE' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Color) == 0x00005C, "Member 'FHoudiniEvent::Color' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent, Type) == 0x00006C, "Member 'FHoudiniEvent::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetAttributeIndexInArrayFromString \ +static_assert(alignof(HoudiniPointCache_GetAttributeIndexInArrayFromString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetAttributeIndexInArrayFromString"); \ +static_assert(sizeof(HoudiniPointCache_GetAttributeIndexInArrayFromString) == 0x000028, "Wrong size on HoudiniPointCache_GetAttributeIndexInArrayFromString"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexInArrayFromString, InAttribute) == 0x000000, "Member 'HoudiniPointCache_GetAttributeIndexInArrayFromString::InAttribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexInArrayFromString, InAttributeArray) == 0x000010, "Member 'HoudiniPointCache_GetAttributeIndexInArrayFromString::InAttributeArray' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexInArrayFromString, OutAttributeIndex) == 0x000020, "Member 'HoudiniPointCache_GetAttributeIndexInArrayFromString::OutAttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexInArrayFromString, ReturnValue) == 0x000024, "Member 'HoudiniPointCache_GetAttributeIndexInArrayFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_SetUseCustomCSVTitleRow \ +static_assert(alignof(HoudiniPointCache_SetUseCustomCSVTitleRow) == 0x000001, "Wrong alignment on HoudiniPointCache_SetUseCustomCSVTitleRow"); \ +static_assert(sizeof(HoudiniPointCache_SetUseCustomCSVTitleRow) == 0x000001, "Wrong size on HoudiniPointCache_SetUseCustomCSVTitleRow"); \ +static_assert(offsetof(HoudiniPointCache_SetUseCustomCSVTitleRow, bInUseCustomCSVTitleRow) == 0x000000, "Member 'HoudiniPointCache_SetUseCustomCSVTitleRow::bInUseCustomCSVTitleRow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetAttributeIndexFromString \ +static_assert(alignof(HoudiniPointCache_GetAttributeIndexFromString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetAttributeIndexFromString"); \ +static_assert(sizeof(HoudiniPointCache_GetAttributeIndexFromString) == 0x000018, "Wrong size on HoudiniPointCache_GetAttributeIndexFromString"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexFromString, Attribute) == 0x000000, "Member 'HoudiniPointCache_GetAttributeIndexFromString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexFromString, AttributeIndex) == 0x000010, "Member 'HoudiniPointCache_GetAttributeIndexFromString::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetAttributeIndexFromString, ReturnValue) == 0x000014, "Member 'HoudiniPointCache_GetAttributeIndexFromString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetColorValue \ +static_assert(alignof(HoudiniPointCache_GetColorValue) == 0x000004, "Wrong alignment on HoudiniPointCache_GetColorValue"); \ +static_assert(sizeof(HoudiniPointCache_GetColorValue) == 0x000018, "Wrong size on HoudiniPointCache_GetColorValue"); \ +static_assert(offsetof(HoudiniPointCache_GetColorValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetColorValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetColorValue, Value) == 0x000004, "Member 'HoudiniPointCache_GetColorValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetColorValue, ReturnValue) == 0x000014, "Member 'HoudiniPointCache_GetColorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetFloatSampleData \ +static_assert(alignof(HoudiniPointCache_GetFloatSampleData) == 0x000008, "Wrong alignment on HoudiniPointCache_GetFloatSampleData"); \ +static_assert(sizeof(HoudiniPointCache_GetFloatSampleData) == 0x000010, "Wrong size on HoudiniPointCache_GetFloatSampleData"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatSampleData, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetFloatSampleData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetFloatValue \ +static_assert(alignof(HoudiniPointCache_GetFloatValue) == 0x000004, "Wrong alignment on HoudiniPointCache_GetFloatValue"); \ +static_assert(sizeof(HoudiniPointCache_GetFloatValue) == 0x000010, "Wrong size on HoudiniPointCache_GetFloatValue"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetFloatValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValue, attrIndex) == 0x000004, "Member 'HoudiniPointCache_GetFloatValue::attrIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValue, Value) == 0x000008, "Member 'HoudiniPointCache_GetFloatValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValue, ReturnValue) == 0x00000C, "Member 'HoudiniPointCache_GetFloatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetFloatValueForString \ +static_assert(alignof(HoudiniPointCache_GetFloatValueForString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetFloatValueForString"); \ +static_assert(sizeof(HoudiniPointCache_GetFloatValueForString) == 0x000020, "Wrong size on HoudiniPointCache_GetFloatValueForString"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValueForString, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetFloatValueForString::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValueForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetFloatValueForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValueForString, Value) == 0x000018, "Member 'HoudiniPointCache_GetFloatValueForString::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetFloatValueForString, ReturnValue) == 0x00001C, "Member 'HoudiniPointCache_GetFloatValueForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetImpulseValue \ +static_assert(alignof(HoudiniPointCache_GetImpulseValue) == 0x000004, "Wrong alignment on HoudiniPointCache_GetImpulseValue"); \ +static_assert(sizeof(HoudiniPointCache_GetImpulseValue) == 0x00000C, "Wrong size on HoudiniPointCache_GetImpulseValue"); \ +static_assert(offsetof(HoudiniPointCache_GetImpulseValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetImpulseValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetImpulseValue, Value) == 0x000004, "Member 'HoudiniPointCache_GetImpulseValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetImpulseValue, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetImpulseValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetLastPointIDToSpawnAtTime \ +static_assert(alignof(HoudiniPointCache_GetLastPointIDToSpawnAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetLastPointIDToSpawnAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetLastPointIDToSpawnAtTime) == 0x00000C, "Wrong size on HoudiniPointCache_GetLastPointIDToSpawnAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetLastPointIDToSpawnAtTime, Time) == 0x000000, "Member 'HoudiniPointCache_GetLastPointIDToSpawnAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetLastPointIDToSpawnAtTime, lastID) == 0x000004, "Member 'HoudiniPointCache_GetLastPointIDToSpawnAtTime::lastID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetLastPointIDToSpawnAtTime, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetLastPointIDToSpawnAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetLastSampleIndexAtTime \ +static_assert(alignof(HoudiniPointCache_GetLastSampleIndexAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetLastSampleIndexAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetLastSampleIndexAtTime) == 0x00000C, "Wrong size on HoudiniPointCache_GetLastSampleIndexAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetLastSampleIndexAtTime, desiredTime) == 0x000000, "Member 'HoudiniPointCache_GetLastSampleIndexAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetLastSampleIndexAtTime, lastSampleIndex) == 0x000004, "Member 'HoudiniPointCache_GetLastSampleIndexAtTime::lastSampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetLastSampleIndexAtTime, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetLastSampleIndexAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetLifeValues \ +static_assert(alignof(HoudiniPointCache_GetLifeValues) == 0x000008, "Wrong alignment on HoudiniPointCache_GetLifeValues"); \ +static_assert(sizeof(HoudiniPointCache_GetLifeValues) == 0x000010, "Wrong size on HoudiniPointCache_GetLifeValues"); \ +static_assert(offsetof(HoudiniPointCache_GetLifeValues, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetLifeValues::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetNormalValue \ +static_assert(alignof(HoudiniPointCache_GetNormalValue) == 0x000008, "Wrong alignment on HoudiniPointCache_GetNormalValue"); \ +static_assert(sizeof(HoudiniPointCache_GetNormalValue) == 0x000028, "Wrong size on HoudiniPointCache_GetNormalValue"); \ +static_assert(offsetof(HoudiniPointCache_GetNormalValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetNormalValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetNormalValue, Value) == 0x000008, "Member 'HoudiniPointCache_GetNormalValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetNormalValue, ReturnValue) == 0x000020, "Member 'HoudiniPointCache_GetNormalValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetNumberOfAttributes \ +static_assert(alignof(HoudiniPointCache_GetNumberOfAttributes) == 0x000004, "Wrong alignment on HoudiniPointCache_GetNumberOfAttributes"); \ +static_assert(sizeof(HoudiniPointCache_GetNumberOfAttributes) == 0x000004, "Wrong size on HoudiniPointCache_GetNumberOfAttributes"); \ +static_assert(offsetof(HoudiniPointCache_GetNumberOfAttributes, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetNumberOfAttributes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetNumberOfPoints \ +static_assert(alignof(HoudiniPointCache_GetNumberOfPoints) == 0x000004, "Wrong alignment on HoudiniPointCache_GetNumberOfPoints"); \ +static_assert(sizeof(HoudiniPointCache_GetNumberOfPoints) == 0x000004, "Wrong size on HoudiniPointCache_GetNumberOfPoints"); \ +static_assert(offsetof(HoudiniPointCache_GetNumberOfPoints, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetNumberOfPoints::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetNumberOfSamples \ +static_assert(alignof(HoudiniPointCache_GetNumberOfSamples) == 0x000004, "Wrong alignment on HoudiniPointCache_GetNumberOfSamples"); \ +static_assert(sizeof(HoudiniPointCache_GetNumberOfSamples) == 0x000004, "Wrong size on HoudiniPointCache_GetNumberOfSamples"); \ +static_assert(offsetof(HoudiniPointCache_GetNumberOfSamples, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetNumberOfSamples::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointFloatValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointFloatValueAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointFloatValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointFloatValueAtTime) == 0x000014, "Wrong size on HoudiniPointCache_GetPointFloatValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointFloatValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointFloatValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointFloatValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointFloatValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointFloatValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointFloatValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointFloatValueAtTime, Value) == 0x00000C, "Member 'HoudiniPointCache_GetPointFloatValueAtTime::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointFloatValueAtTime, ReturnValue) == 0x000010, "Member 'HoudiniPointCache_GetPointFloatValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointIDsToSpawnAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointIDsToSpawnAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointIDsToSpawnAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointIDsToSpawnAtTime) == 0x000020, "Wrong size on HoudiniPointCache_GetPointIDsToSpawnAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, desiredTime) == 0x000000, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, MinID) == 0x000004, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::MinID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, MaxID) == 0x000008, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::MaxID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, Count) == 0x00000C, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::Count' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, LastSpawnedPointID) == 0x000010, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::LastSpawnedPointID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, LastSpawnTime) == 0x000014, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::LastSpawnTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, LastSpawnTimeRequest) == 0x000018, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::LastSpawnTimeRequest' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointIDsToSpawnAtTime, ReturnValue) == 0x00001C, "Member 'HoudiniPointCache_GetPointIDsToSpawnAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointInt32ValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointInt32ValueAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointInt32ValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointInt32ValueAtTime) == 0x000014, "Wrong size on HoudiniPointCache_GetPointInt32ValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointInt32ValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointInt32ValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointInt32ValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointInt32ValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointInt32ValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointInt32ValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointInt32ValueAtTime, Value) == 0x00000C, "Member 'HoudiniPointCache_GetPointInt32ValueAtTime::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointInt32ValueAtTime, ReturnValue) == 0x000010, "Member 'HoudiniPointCache_GetPointInt32ValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointLife \ +static_assert(alignof(HoudiniPointCache_GetPointLife) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointLife"); \ +static_assert(sizeof(HoudiniPointCache_GetPointLife) == 0x00000C, "Wrong size on HoudiniPointCache_GetPointLife"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLife, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointLife::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLife, Value) == 0x000004, "Member 'HoudiniPointCache_GetPointLife::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLife, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetPointLife::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointLifeAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointLifeAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointLifeAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointLifeAtTime) == 0x000010, "Wrong size on HoudiniPointCache_GetPointLifeAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLifeAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointLifeAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLifeAtTime, desiredTime) == 0x000004, "Member 'HoudiniPointCache_GetPointLifeAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLifeAtTime, Value) == 0x000008, "Member 'HoudiniPointCache_GetPointLifeAtTime::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointLifeAtTime, ReturnValue) == 0x00000C, "Member 'HoudiniPointCache_GetPointLifeAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointPositionAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointPositionAtTime) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointPositionAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointPositionAtTime) == 0x000028, "Wrong size on HoudiniPointCache_GetPointPositionAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointPositionAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointPositionAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointPositionAtTime, desiredTime) == 0x000004, "Member 'HoudiniPointCache_GetPointPositionAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointPositionAtTime, Vector) == 0x000008, "Member 'HoudiniPointCache_GetPointPositionAtTime::Vector' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointPositionAtTime, ReturnValue) == 0x000020, "Member 'HoudiniPointCache_GetPointPositionAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointQuatValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointQuatValueAtTime) == 0x000010, "Wrong alignment on HoudiniPointCache_GetPointQuatValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointQuatValueAtTime) == 0x000040, "Wrong size on HoudiniPointCache_GetPointQuatValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, Quat) == 0x000010, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::Quat' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, DoHoudiniToUnrealConversion) == 0x000030, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::DoHoudiniToUnrealConversion' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTime, ReturnValue) == 0x000031, "Member 'HoudiniPointCache_GetPointQuatValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointQuatValueAtTimeForString \ +static_assert(alignof(HoudiniPointCache_GetPointQuatValueAtTimeForString) == 0x000010, "Wrong alignment on HoudiniPointCache_GetPointQuatValueAtTimeForString"); \ +static_assert(sizeof(HoudiniPointCache_GetPointQuatValueAtTimeForString) == 0x000050, "Wrong size on HoudiniPointCache_GetPointQuatValueAtTimeForString"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, desiredTime) == 0x000018, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, Quat) == 0x000020, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::Quat' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, DoHoudiniToUnrealConversion) == 0x000040, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::DoHoudiniToUnrealConversion' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointQuatValueAtTimeForString, ReturnValue) == 0x000041, "Member 'HoudiniPointCache_GetPointQuatValueAtTimeForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointType \ +static_assert(alignof(HoudiniPointCache_GetPointType) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointType"); \ +static_assert(sizeof(HoudiniPointCache_GetPointType) == 0x00000C, "Wrong size on HoudiniPointCache_GetPointType"); \ +static_assert(offsetof(HoudiniPointCache_GetPointType, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointType::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointType, Value) == 0x000004, "Member 'HoudiniPointCache_GetPointType::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointType, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetPointType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointTypes \ +static_assert(alignof(HoudiniPointCache_GetPointTypes) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointTypes"); \ +static_assert(sizeof(HoudiniPointCache_GetPointTypes) == 0x000010, "Wrong size on HoudiniPointCache_GetPointTypes"); \ +static_assert(offsetof(HoudiniPointCache_GetPointTypes, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetPointTypes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointValueAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetPointValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointValueAtTime) == 0x000014, "Wrong size on HoudiniPointCache_GetPointValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTime, Value) == 0x00000C, "Member 'HoudiniPointCache_GetPointValueAtTime::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTime, ReturnValue) == 0x000010, "Member 'HoudiniPointCache_GetPointValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointValueAtTimeForString \ +static_assert(alignof(HoudiniPointCache_GetPointValueAtTimeForString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointValueAtTimeForString"); \ +static_assert(sizeof(HoudiniPointCache_GetPointValueAtTimeForString) == 0x000028, "Wrong size on HoudiniPointCache_GetPointValueAtTimeForString"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTimeForString, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointValueAtTimeForString::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTimeForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetPointValueAtTimeForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTimeForString, desiredTime) == 0x000018, "Member 'HoudiniPointCache_GetPointValueAtTimeForString::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTimeForString, Value) == 0x00001C, "Member 'HoudiniPointCache_GetPointValueAtTimeForString::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueAtTimeForString, ReturnValue) == 0x000020, "Member 'HoudiniPointCache_GetPointValueAtTimeForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointValueIndexes \ +static_assert(alignof(HoudiniPointCache_GetPointValueIndexes) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointValueIndexes"); \ +static_assert(sizeof(HoudiniPointCache_GetPointValueIndexes) == 0x000010, "Wrong size on HoudiniPointCache_GetPointValueIndexes"); \ +static_assert(offsetof(HoudiniPointCache_GetPointValueIndexes, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetPointValueIndexes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointVector4ValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointVector4ValueAtTime) == 0x000010, "Wrong alignment on HoudiniPointCache_GetPointVector4ValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointVector4ValueAtTime) == 0x000040, "Wrong size on HoudiniPointCache_GetPointVector4ValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointVector4ValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointVector4ValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointVector4ValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTime, Vector) == 0x000010, "Member 'HoudiniPointCache_GetPointVector4ValueAtTime::Vector' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTime, ReturnValue) == 0x000030, "Member 'HoudiniPointCache_GetPointVector4ValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointVector4ValueAtTimeForString \ +static_assert(alignof(HoudiniPointCache_GetPointVector4ValueAtTimeForString) == 0x000010, "Wrong alignment on HoudiniPointCache_GetPointVector4ValueAtTimeForString"); \ +static_assert(sizeof(HoudiniPointCache_GetPointVector4ValueAtTimeForString) == 0x000050, "Wrong size on HoudiniPointCache_GetPointVector4ValueAtTimeForString"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTimeForString, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointVector4ValueAtTimeForString::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTimeForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetPointVector4ValueAtTimeForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTimeForString, desiredTime) == 0x000018, "Member 'HoudiniPointCache_GetPointVector4ValueAtTimeForString::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTimeForString, Vector) == 0x000020, "Member 'HoudiniPointCache_GetPointVector4ValueAtTimeForString::Vector' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVector4ValueAtTimeForString, ReturnValue) == 0x000040, "Member 'HoudiniPointCache_GetPointVector4ValueAtTimeForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointVectorValueAtTime \ +static_assert(alignof(HoudiniPointCache_GetPointVectorValueAtTime) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointVectorValueAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetPointVectorValueAtTime) == 0x000030, "Wrong size on HoudiniPointCache_GetPointVectorValueAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, AttributeIndex) == 0x000004, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::AttributeIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, desiredTime) == 0x000008, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, Vector) == 0x000010, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::Vector' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, DoSwap) == 0x000028, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::DoSwap' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, DoScale) == 0x000029, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::DoScale' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTime, ReturnValue) == 0x00002A, "Member 'HoudiniPointCache_GetPointVectorValueAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPointVectorValueAtTimeForString \ +static_assert(alignof(HoudiniPointCache_GetPointVectorValueAtTimeForString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPointVectorValueAtTimeForString"); \ +static_assert(sizeof(HoudiniPointCache_GetPointVectorValueAtTimeForString) == 0x000040, "Wrong size on HoudiniPointCache_GetPointVectorValueAtTimeForString"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, desiredTime) == 0x000018, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, Vector) == 0x000020, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::Vector' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, DoSwap) == 0x000038, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::DoSwap' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, DoScale) == 0x000039, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::DoScale' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPointVectorValueAtTimeForString, ReturnValue) == 0x00003A, "Member 'HoudiniPointCache_GetPointVectorValueAtTimeForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetPositionValue \ +static_assert(alignof(HoudiniPointCache_GetPositionValue) == 0x000008, "Wrong alignment on HoudiniPointCache_GetPositionValue"); \ +static_assert(sizeof(HoudiniPointCache_GetPositionValue) == 0x000028, "Wrong size on HoudiniPointCache_GetPositionValue"); \ +static_assert(offsetof(HoudiniPointCache_GetPositionValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetPositionValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPositionValue, Value) == 0x000008, "Member 'HoudiniPointCache_GetPositionValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetPositionValue, ReturnValue) == 0x000020, "Member 'HoudiniPointCache_GetPositionValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetQuatValue \ +static_assert(alignof(HoudiniPointCache_GetQuatValue) == 0x000010, "Wrong alignment on HoudiniPointCache_GetQuatValue"); \ +static_assert(sizeof(HoudiniPointCache_GetQuatValue) == 0x000040, "Wrong size on HoudiniPointCache_GetQuatValue"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetQuatValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValue, attrIndex) == 0x000004, "Member 'HoudiniPointCache_GetQuatValue::attrIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValue, Value) == 0x000010, "Member 'HoudiniPointCache_GetQuatValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValue, DoHoudiniToUnrealConversion) == 0x000030, "Member 'HoudiniPointCache_GetQuatValue::DoHoudiniToUnrealConversion' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValue, ReturnValue) == 0x000031, "Member 'HoudiniPointCache_GetQuatValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetQuatValueForString \ +static_assert(alignof(HoudiniPointCache_GetQuatValueForString) == 0x000010, "Wrong alignment on HoudiniPointCache_GetQuatValueForString"); \ +static_assert(sizeof(HoudiniPointCache_GetQuatValueForString) == 0x000050, "Wrong size on HoudiniPointCache_GetQuatValueForString"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValueForString, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetQuatValueForString::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValueForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetQuatValueForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValueForString, Value) == 0x000020, "Member 'HoudiniPointCache_GetQuatValueForString::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValueForString, DoHoudiniToUnrealConversion) == 0x000040, "Member 'HoudiniPointCache_GetQuatValueForString::DoHoudiniToUnrealConversion' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetQuatValueForString, ReturnValue) == 0x000041, "Member 'HoudiniPointCache_GetQuatValueForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetSampleIndexesForPointAtTime \ +static_assert(alignof(HoudiniPointCache_GetSampleIndexesForPointAtTime) == 0x000004, "Wrong alignment on HoudiniPointCache_GetSampleIndexesForPointAtTime"); \ +static_assert(sizeof(HoudiniPointCache_GetSampleIndexesForPointAtTime) == 0x000018, "Wrong size on HoudiniPointCache_GetSampleIndexesForPointAtTime"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, POINTID) == 0x000000, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::POINTID' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, desiredTime) == 0x000004, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::desiredTime' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, PrevSampleIndex) == 0x000008, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::PrevSampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, NextSampleIndex) == 0x00000C, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::NextSampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, PrevWeight) == 0x000010, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::PrevWeight' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetSampleIndexesForPointAtTime, ReturnValue) == 0x000014, "Member 'HoudiniPointCache_GetSampleIndexesForPointAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetSpawnTimes \ +static_assert(alignof(HoudiniPointCache_GetSpawnTimes) == 0x000008, "Wrong alignment on HoudiniPointCache_GetSpawnTimes"); \ +static_assert(sizeof(HoudiniPointCache_GetSpawnTimes) == 0x000010, "Wrong size on HoudiniPointCache_GetSpawnTimes"); \ +static_assert(offsetof(HoudiniPointCache_GetSpawnTimes, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetSpawnTimes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetSpecialAttributeIndexes \ +static_assert(alignof(HoudiniPointCache_GetSpecialAttributeIndexes) == 0x000008, "Wrong alignment on HoudiniPointCache_GetSpecialAttributeIndexes"); \ +static_assert(sizeof(HoudiniPointCache_GetSpecialAttributeIndexes) == 0x000010, "Wrong size on HoudiniPointCache_GetSpecialAttributeIndexes"); \ +static_assert(offsetof(HoudiniPointCache_GetSpecialAttributeIndexes, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetSpecialAttributeIndexes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetTimeValue \ +static_assert(alignof(HoudiniPointCache_GetTimeValue) == 0x000004, "Wrong alignment on HoudiniPointCache_GetTimeValue"); \ +static_assert(sizeof(HoudiniPointCache_GetTimeValue) == 0x00000C, "Wrong size on HoudiniPointCache_GetTimeValue"); \ +static_assert(offsetof(HoudiniPointCache_GetTimeValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetTimeValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetTimeValue, Value) == 0x000004, "Member 'HoudiniPointCache_GetTimeValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetTimeValue, ReturnValue) == 0x000008, "Member 'HoudiniPointCache_GetTimeValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetUseCustomCSVTitleRow \ +static_assert(alignof(HoudiniPointCache_GetUseCustomCSVTitleRow) == 0x000001, "Wrong alignment on HoudiniPointCache_GetUseCustomCSVTitleRow"); \ +static_assert(sizeof(HoudiniPointCache_GetUseCustomCSVTitleRow) == 0x000001, "Wrong size on HoudiniPointCache_GetUseCustomCSVTitleRow"); \ +static_assert(offsetof(HoudiniPointCache_GetUseCustomCSVTitleRow, ReturnValue) == 0x000000, "Member 'HoudiniPointCache_GetUseCustomCSVTitleRow::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetVector4Value \ +static_assert(alignof(HoudiniPointCache_GetVector4Value) == 0x000010, "Wrong alignment on HoudiniPointCache_GetVector4Value"); \ +static_assert(sizeof(HoudiniPointCache_GetVector4Value) == 0x000040, "Wrong size on HoudiniPointCache_GetVector4Value"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4Value, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetVector4Value::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4Value, attrIndex) == 0x000004, "Member 'HoudiniPointCache_GetVector4Value::attrIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4Value, Value) == 0x000010, "Member 'HoudiniPointCache_GetVector4Value::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4Value, ReturnValue) == 0x000030, "Member 'HoudiniPointCache_GetVector4Value::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetVector4ValueForString \ +static_assert(alignof(HoudiniPointCache_GetVector4ValueForString) == 0x000010, "Wrong alignment on HoudiniPointCache_GetVector4ValueForString"); \ +static_assert(sizeof(HoudiniPointCache_GetVector4ValueForString) == 0x000050, "Wrong size on HoudiniPointCache_GetVector4ValueForString"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4ValueForString, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetVector4ValueForString::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4ValueForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetVector4ValueForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4ValueForString, Value) == 0x000020, "Member 'HoudiniPointCache_GetVector4ValueForString::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVector4ValueForString, ReturnValue) == 0x000040, "Member 'HoudiniPointCache_GetVector4ValueForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetVectorValue \ +static_assert(alignof(HoudiniPointCache_GetVectorValue) == 0x000008, "Wrong alignment on HoudiniPointCache_GetVectorValue"); \ +static_assert(sizeof(HoudiniPointCache_GetVectorValue) == 0x000028, "Wrong size on HoudiniPointCache_GetVectorValue"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetVectorValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, attrIndex) == 0x000004, "Member 'HoudiniPointCache_GetVectorValue::attrIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, Value) == 0x000008, "Member 'HoudiniPointCache_GetVectorValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, DoSwap) == 0x000020, "Member 'HoudiniPointCache_GetVectorValue::DoSwap' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, DoScale) == 0x000021, "Member 'HoudiniPointCache_GetVectorValue::DoScale' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValue, ReturnValue) == 0x000022, "Member 'HoudiniPointCache_GetVectorValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetVectorValueForString \ +static_assert(alignof(HoudiniPointCache_GetVectorValueForString) == 0x000008, "Wrong alignment on HoudiniPointCache_GetVectorValueForString"); \ +static_assert(sizeof(HoudiniPointCache_GetVectorValueForString) == 0x000038, "Wrong size on HoudiniPointCache_GetVectorValueForString"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetVectorValueForString::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, Attribute) == 0x000008, "Member 'HoudiniPointCache_GetVectorValueForString::Attribute' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, Value) == 0x000018, "Member 'HoudiniPointCache_GetVectorValueForString::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, DoSwap) == 0x000030, "Member 'HoudiniPointCache_GetVectorValueForString::DoSwap' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, DoScale) == 0x000031, "Member 'HoudiniPointCache_GetVectorValueForString::DoScale' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVectorValueForString, ReturnValue) == 0x000032, "Member 'HoudiniPointCache_GetVectorValueForString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HoudiniPointCache_GetVelocityValue \ +static_assert(alignof(HoudiniPointCache_GetVelocityValue) == 0x000008, "Wrong alignment on HoudiniPointCache_GetVelocityValue"); \ +static_assert(sizeof(HoudiniPointCache_GetVelocityValue) == 0x000028, "Wrong size on HoudiniPointCache_GetVelocityValue"); \ +static_assert(offsetof(HoudiniPointCache_GetVelocityValue, SampleIndex) == 0x000000, "Member 'HoudiniPointCache_GetVelocityValue::SampleIndex' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVelocityValue, Value) == 0x000008, "Member 'HoudiniPointCache_GetVelocityValue::Value' has a wrong offset!"); \ +static_assert(offsetof(HoudiniPointCache_GetVelocityValue, ReturnValue) == 0x000020, "Member 'HoudiniPointCache_GetVelocityValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoudiniPointCache \ +static_assert(alignof(UHoudiniPointCache) == 0x000008, "Wrong alignment on UHoudiniPointCache"); \ +static_assert(sizeof(UHoudiniPointCache) == 0x0000E8, "Wrong size on UHoudiniPointCache"); \ +static_assert(offsetof(UHoudiniPointCache, Filename) == 0x000028, "Member 'UHoudiniPointCache::Filename' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, NumberOfSamples) == 0x000038, "Member 'UHoudiniPointCache::NumberOfSamples' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, NumberOfAttributes) == 0x00003C, "Member 'UHoudiniPointCache::NumberOfAttributes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, NumberOfPoints) == 0x000040, "Member 'UHoudiniPointCache::NumberOfPoints' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, NumberOfFrames) == 0x000044, "Member 'UHoudiniPointCache::NumberOfFrames' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, FirstFrame) == 0x000048, "Member 'UHoudiniPointCache::FirstFrame' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, LastFrame) == 0x00004C, "Member 'UHoudiniPointCache::LastFrame' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, MinSampleTime) == 0x000050, "Member 'UHoudiniPointCache::MinSampleTime' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, MaxSampleTime) == 0x000054, "Member 'UHoudiniPointCache::MaxSampleTime' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, SourceCSVTitleRow) == 0x000058, "Member 'UHoudiniPointCache::SourceCSVTitleRow' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, AttributeArray) == 0x000068, "Member 'UHoudiniPointCache::AttributeArray' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, FloatSampleData) == 0x000080, "Member 'UHoudiniPointCache::FloatSampleData' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, SpawnTimes) == 0x000090, "Member 'UHoudiniPointCache::SpawnTimes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, LifeValues) == 0x0000A0, "Member 'UHoudiniPointCache::LifeValues' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, PointTypes) == 0x0000B0, "Member 'UHoudiniPointCache::PointTypes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, SpecialAttributeIndexes) == 0x0000C0, "Member 'UHoudiniPointCache::SpecialAttributeIndexes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, PointValueIndexes) == 0x0000D0, "Member 'UHoudiniPointCache::PointValueIndexes' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, UseCustomCSVTitleRow) == 0x0000E0, "Member 'UHoudiniPointCache::UseCustomCSVTitleRow' has a wrong offset!"); \ +static_assert(offsetof(UHoudiniPointCache, FileType) == 0x0000E1, "Member 'UHoudiniPointCache::FileType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceHoudini \ +static_assert(alignof(UNiagaraDataInterfaceHoudini) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceHoudini"); \ +static_assert(sizeof(UNiagaraDataInterfaceHoudini) == 0x000040, "Wrong size on UNiagaraDataInterfaceHoudini"); \ +static_assert(offsetof(UNiagaraDataInterfaceHoudini, HoudiniPointCacheAsset) == 0x000038, "Member 'UNiagaraDataInterfaceHoudini::HoudiniPointCacheAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites \ +static_assert(alignof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites) == 0x000008, "Wrong alignment on NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites"); \ +static_assert(sizeof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites) == 0x000040, "Wrong size on NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, EntryPoint) == 0x000000, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000018, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000024, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, K2Node_Event_InAutomata) == 0x000030, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites, K2Node_Event_InState) == 0x000038, "Member 'NightclubBlockAbilites_C_ExecuteUbergraph_NightclubBlockAbilites::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NightclubBlockAbilites_C_ReceiveExecute \ +static_assert(alignof(NightclubBlockAbilites_C_ReceiveExecute) == 0x000008, "Wrong alignment on NightclubBlockAbilites_C_ReceiveExecute"); \ +static_assert(sizeof(NightclubBlockAbilites_C_ReceiveExecute) == 0x000010, "Wrong size on NightclubBlockAbilites_C_ReceiveExecute"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'NightclubBlockAbilites_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NightclubBlockAbilites_C_ReceiveExecute, InState) == 0x000008, "Member 'NightclubBlockAbilites_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNightclubBlockAbilites_C \ +static_assert(alignof(UNightclubBlockAbilites_C) == 0x000008, "Wrong alignment on UNightclubBlockAbilites_C"); \ +static_assert(sizeof(UNightclubBlockAbilites_C) == 0x0000B0, "Wrong size on UNightclubBlockAbilites_C"); \ +static_assert(offsetof(UNightclubBlockAbilites_C, UberGraphFrame) == 0x000088, "Member 'UNightclubBlockAbilites_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UNightclubBlockAbilites_C, Ability_Tag) == 0x000090, "Member 'UNightclubBlockAbilites_C::Ability_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Knocked_Wallsplat_C \ +static_assert(alignof(UCameraShake_Knocked_Wallsplat_C) == 0x000010, "Wrong alignment on UCameraShake_Knocked_Wallsplat_C"); \ +static_assert(sizeof(UCameraShake_Knocked_Wallsplat_C) == 0x000230, "Wrong size on UCameraShake_Knocked_Wallsplat_C"); \ + +#define DUMPER7_ASSERTS_UDualShockExternalEndpointSettings \ +static_assert(alignof(UDualShockExternalEndpointSettings) == 0x000008, "Wrong alignment on UDualShockExternalEndpointSettings"); \ +static_assert(sizeof(UDualShockExternalEndpointSettings) == 0x000030, "Wrong size on UDualShockExternalEndpointSettings"); \ +static_assert(offsetof(UDualShockExternalEndpointSettings, ControllerIndex) == 0x000028, "Member 'UDualShockExternalEndpointSettings::ControllerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDualShockSoundfieldEndpointSettings \ +static_assert(alignof(UDualShockSoundfieldEndpointSettings) == 0x000008, "Wrong alignment on UDualShockSoundfieldEndpointSettings"); \ +static_assert(sizeof(UDualShockSoundfieldEndpointSettings) == 0x000030, "Wrong size on UDualShockSoundfieldEndpointSettings"); \ +static_assert(offsetof(UDualShockSoundfieldEndpointSettings, ControllerIndex) == 0x000028, "Member 'UDualShockSoundfieldEndpointSettings::ControllerIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDualShockSpatializationSettings \ +static_assert(alignof(UDualShockSpatializationSettings) == 0x000008, "Wrong alignment on UDualShockSpatializationSettings"); \ +static_assert(sizeof(UDualShockSpatializationSettings) == 0x000038, "Wrong size on UDualShockSpatializationSettings"); \ +static_assert(offsetof(UDualShockSpatializationSettings, Spread) == 0x000028, "Member 'UDualShockSpatializationSettings::Spread' has a wrong offset!"); \ +static_assert(offsetof(UDualShockSpatializationSettings, Priority) == 0x00002C, "Member 'UDualShockSpatializationSettings::Priority' has a wrong offset!"); \ +static_assert(offsetof(UDualShockSpatializationSettings, PassThrough) == 0x000030, "Member 'UDualShockSpatializationSettings::PassThrough' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoVec2ParameterChange \ +static_assert(alignof(FGizmoVec2ParameterChange) == 0x000008, "Wrong alignment on FGizmoVec2ParameterChange"); \ +static_assert(sizeof(FGizmoVec2ParameterChange) == 0x000020, "Wrong size on FGizmoVec2ParameterChange"); \ +static_assert(offsetof(FGizmoVec2ParameterChange, InitialValue) == 0x000000, "Member 'FGizmoVec2ParameterChange::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FGizmoVec2ParameterChange, CurrentValue) == 0x000010, "Member 'FGizmoVec2ParameterChange::CurrentValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoElementColorAttribute \ +static_assert(alignof(FGizmoElementColorAttribute) == 0x000004, "Wrong alignment on FGizmoElementColorAttribute"); \ +static_assert(sizeof(FGizmoElementColorAttribute) == 0x000014, "Wrong size on FGizmoElementColorAttribute"); \ +static_assert(offsetof(FGizmoElementColorAttribute, Value) == 0x000000, "Member 'FGizmoElementColorAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementColorAttribute, bHasValue) == 0x000010, "Member 'FGizmoElementColorAttribute::bHasValue' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementColorAttribute, bOverridesChildState) == 0x000011, "Member 'FGizmoElementColorAttribute::bOverridesChildState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoElementMaterialAttribute \ +static_assert(alignof(FGizmoElementMaterialAttribute) == 0x000004, "Wrong alignment on FGizmoElementMaterialAttribute"); \ +static_assert(sizeof(FGizmoElementMaterialAttribute) == 0x00000C, "Wrong size on FGizmoElementMaterialAttribute"); \ +static_assert(offsetof(FGizmoElementMaterialAttribute, Value) == 0x000000, "Member 'FGizmoElementMaterialAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMaterialAttribute, bOverridesChildState) == 0x000008, "Member 'FGizmoElementMaterialAttribute::bOverridesChildState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoElementMeshRenderStateAttributes \ +static_assert(alignof(FGizmoElementMeshRenderStateAttributes) == 0x000004, "Wrong alignment on FGizmoElementMeshRenderStateAttributes"); \ +static_assert(sizeof(FGizmoElementMeshRenderStateAttributes) == 0x000060, "Wrong size on FGizmoElementMeshRenderStateAttributes"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, Material) == 0x000000, "Member 'FGizmoElementMeshRenderStateAttributes::Material' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, HoverMaterial) == 0x00000C, "Member 'FGizmoElementMeshRenderStateAttributes::HoverMaterial' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, InteractMaterial) == 0x000018, "Member 'FGizmoElementMeshRenderStateAttributes::InteractMaterial' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, VertexColor) == 0x000024, "Member 'FGizmoElementMeshRenderStateAttributes::VertexColor' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, HoverVertexColor) == 0x000038, "Member 'FGizmoElementMeshRenderStateAttributes::HoverVertexColor' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementMeshRenderStateAttributes, InteractVertexColor) == 0x00004C, "Member 'FGizmoElementMeshRenderStateAttributes::InteractVertexColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoElementLineRenderStateAttributes \ +static_assert(alignof(FGizmoElementLineRenderStateAttributes) == 0x000004, "Wrong alignment on FGizmoElementLineRenderStateAttributes"); \ +static_assert(sizeof(FGizmoElementLineRenderStateAttributes) == 0x00003C, "Wrong size on FGizmoElementLineRenderStateAttributes"); \ +static_assert(offsetof(FGizmoElementLineRenderStateAttributes, LineColor) == 0x000000, "Member 'FGizmoElementLineRenderStateAttributes::LineColor' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementLineRenderStateAttributes, HoverLineColor) == 0x000014, "Member 'FGizmoElementLineRenderStateAttributes::HoverLineColor' has a wrong offset!"); \ +static_assert(offsetof(FGizmoElementLineRenderStateAttributes, InteractLineColor) == 0x000028, "Member 'FGizmoElementLineRenderStateAttributes::InteractLineColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGizmoFloatParameterChange \ +static_assert(alignof(FGizmoFloatParameterChange) == 0x000004, "Wrong alignment on FGizmoFloatParameterChange"); \ +static_assert(sizeof(FGizmoFloatParameterChange) == 0x000008, "Wrong size on FGizmoFloatParameterChange"); \ +static_assert(offsetof(FGizmoFloatParameterChange, InitialValue) == 0x000000, "Member 'FGizmoFloatParameterChange::InitialValue' has a wrong offset!"); \ +static_assert(offsetof(FGizmoFloatParameterChange, CurrentValue) == 0x000004, "Member 'FGizmoFloatParameterChange::CurrentValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBrushStampData \ +static_assert(alignof(FBrushStampData) == 0x000008, "Wrong alignment on FBrushStampData"); \ +static_assert(sizeof(FBrushStampData) == 0x000128, "Wrong size on FBrushStampData"); \ + +#define DUMPER7_ASSERTS_FBehaviorInfo \ +static_assert(alignof(FBehaviorInfo) == 0x000008, "Wrong alignment on FBehaviorInfo"); \ +static_assert(sizeof(FBehaviorInfo) == 0x000020, "Wrong size on FBehaviorInfo"); \ +static_assert(offsetof(FBehaviorInfo, Behavior) == 0x000000, "Member 'FBehaviorInfo::Behavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputRayHit \ +static_assert(alignof(FInputRayHit) == 0x000008, "Wrong alignment on FInputRayHit"); \ +static_assert(sizeof(FInputRayHit) == 0x000040, "Wrong size on FInputRayHit"); \ +static_assert(offsetof(FInputRayHit, bHit) == 0x000000, "Member 'FInputRayHit::bHit' has a wrong offset!"); \ +static_assert(offsetof(FInputRayHit, HitDepth) == 0x000008, "Member 'FInputRayHit::HitDepth' has a wrong offset!"); \ +static_assert(offsetof(FInputRayHit, HitNormal) == 0x000010, "Member 'FInputRayHit::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(FInputRayHit, bHasHitNormal) == 0x000028, "Member 'FInputRayHit::bHasHitNormal' has a wrong offset!"); \ +static_assert(offsetof(FInputRayHit, HitIdentifier) == 0x00002C, "Member 'FInputRayHit::HitIdentifier' has a wrong offset!"); \ +static_assert(offsetof(FInputRayHit, HitObject) == 0x000038, "Member 'FInputRayHit::HitObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInputDeviceRay \ +static_assert(alignof(FInputDeviceRay) == 0x000008, "Wrong alignment on FInputDeviceRay"); \ +static_assert(sizeof(FInputDeviceRay) == 0x000048, "Wrong size on FInputDeviceRay"); \ +static_assert(offsetof(FInputDeviceRay, WorldRay) == 0x000000, "Member 'FInputDeviceRay::WorldRay' has a wrong offset!"); \ +static_assert(offsetof(FInputDeviceRay, bHas2D) == 0x000030, "Member 'FInputDeviceRay::bHas2D' has a wrong offset!"); \ +static_assert(offsetof(FInputDeviceRay, ScreenPosition) == 0x000038, "Member 'FInputDeviceRay::ScreenPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActiveGizmo \ +static_assert(alignof(FActiveGizmo) == 0x000008, "Wrong alignment on FActiveGizmo"); \ +static_assert(sizeof(FActiveGizmo) == 0x000030, "Wrong size on FActiveGizmo"); \ +static_assert(offsetof(FActiveGizmo, Gizmo) == 0x000000, "Member 'FActiveGizmo::Gizmo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveTool \ +static_assert(alignof(UInteractiveTool) == 0x000008, "Wrong alignment on UInteractiveTool"); \ +static_assert(sizeof(UInteractiveTool) == 0x0000A0, "Wrong size on UInteractiveTool"); \ +static_assert(offsetof(UInteractiveTool, InputBehaviors) == 0x000060, "Member 'UInteractiveTool::InputBehaviors' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveTool, ToolPropertyObjects) == 0x000068, "Member 'UInteractiveTool::ToolPropertyObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClickDragTool \ +static_assert(alignof(UClickDragTool) == 0x000008, "Wrong alignment on UClickDragTool"); \ +static_assert(sizeof(UClickDragTool) == 0x0000A8, "Wrong size on UClickDragTool"); \ + +#define DUMPER7_ASSERTS_IAssetBackedTarget \ +static_assert(alignof(IAssetBackedTarget) == 0x000001, "Wrong alignment on IAssetBackedTarget"); \ +static_assert(sizeof(IAssetBackedTarget) == 0x000001, "Wrong size on IAssetBackedTarget"); \ + +#define DUMPER7_ASSERTS_GizmoBaseComponent_UpdateHoverState \ +static_assert(alignof(GizmoBaseComponent_UpdateHoverState) == 0x000001, "Wrong alignment on GizmoBaseComponent_UpdateHoverState"); \ +static_assert(sizeof(GizmoBaseComponent_UpdateHoverState) == 0x000001, "Wrong size on GizmoBaseComponent_UpdateHoverState"); \ +static_assert(offsetof(GizmoBaseComponent_UpdateHoverState, bHoveringIn) == 0x000000, "Member 'GizmoBaseComponent_UpdateHoverState::bHoveringIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoBaseComponent_UpdateWorldLocalState \ +static_assert(alignof(GizmoBaseComponent_UpdateWorldLocalState) == 0x000001, "Wrong alignment on GizmoBaseComponent_UpdateWorldLocalState"); \ +static_assert(sizeof(GizmoBaseComponent_UpdateWorldLocalState) == 0x000001, "Wrong size on GizmoBaseComponent_UpdateWorldLocalState"); \ +static_assert(offsetof(GizmoBaseComponent_UpdateWorldLocalState, bWorldIn) == 0x000000, "Member 'GizmoBaseComponent_UpdateWorldLocalState::bWorldIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoBaseComponent \ +static_assert(alignof(UGizmoBaseComponent) == 0x000010, "Wrong alignment on UGizmoBaseComponent"); \ +static_assert(sizeof(UGizmoBaseComponent) == 0x0005A0, "Wrong size on UGizmoBaseComponent"); \ +static_assert(offsetof(UGizmoBaseComponent, Color) == 0x000570, "Member 'UGizmoBaseComponent::Color' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBaseComponent, HoverSizeMultiplier) == 0x000580, "Member 'UGizmoBaseComponent::HoverSizeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBaseComponent, PixelHitDistanceThreshold) == 0x000584, "Member 'UGizmoBaseComponent::PixelHitDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBaseComponent, GizmoViewContext) == 0x000590, "Member 'UGizmoBaseComponent::GizmoViewContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractionMechanic \ +static_assert(alignof(UInteractionMechanic) == 0x000008, "Wrong alignment on UInteractionMechanic"); \ +static_assert(sizeof(UInteractionMechanic) == 0x000030, "Wrong size on UInteractionMechanic"); \ + +#define DUMPER7_ASSERTS_UInteractiveCommandArguments \ +static_assert(alignof(UInteractiveCommandArguments) == 0x000008, "Wrong alignment on UInteractiveCommandArguments"); \ +static_assert(sizeof(UInteractiveCommandArguments) == 0x000030, "Wrong size on UInteractiveCommandArguments"); \ + +#define DUMPER7_ASSERTS_UInteractiveCommandResult \ +static_assert(alignof(UInteractiveCommandResult) == 0x000008, "Wrong alignment on UInteractiveCommandResult"); \ +static_assert(sizeof(UInteractiveCommandResult) == 0x000028, "Wrong size on UInteractiveCommandResult"); \ + +#define DUMPER7_ASSERTS_USingleClickTool \ +static_assert(alignof(USingleClickTool) == 0x000008, "Wrong alignment on USingleClickTool"); \ +static_assert(sizeof(USingleClickTool) == 0x0000A8, "Wrong size on USingleClickTool"); \ + +#define DUMPER7_ASSERTS_UInteractiveCommand \ +static_assert(alignof(UInteractiveCommand) == 0x000008, "Wrong alignment on UInteractiveCommand"); \ +static_assert(sizeof(UInteractiveCommand) == 0x000028, "Wrong size on UInteractiveCommand"); \ + +#define DUMPER7_ASSERTS_UInteractiveGizmoBuilder \ +static_assert(alignof(UInteractiveGizmoBuilder) == 0x000008, "Wrong alignment on UInteractiveGizmoBuilder"); \ +static_assert(sizeof(UInteractiveGizmoBuilder) == 0x000028, "Wrong size on UInteractiveGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolBuilder \ +static_assert(alignof(UInteractiveToolBuilder) == 0x000008, "Wrong alignment on UInteractiveToolBuilder"); \ +static_assert(sizeof(UInteractiveToolBuilder) == 0x000028, "Wrong size on UInteractiveToolBuilder"); \ + +#define DUMPER7_ASSERTS_IToolContextTransactionProvider \ +static_assert(alignof(IToolContextTransactionProvider) == 0x000001, "Wrong alignment on IToolContextTransactionProvider"); \ +static_assert(sizeof(IToolContextTransactionProvider) == 0x000001, "Wrong size on IToolContextTransactionProvider"); \ + +#define DUMPER7_ASSERTS_AInternalToolFrameworkActor \ +static_assert(alignof(AInternalToolFrameworkActor) == 0x000008, "Wrong alignment on AInternalToolFrameworkActor"); \ +static_assert(sizeof(AInternalToolFrameworkActor) == 0x0002A0, "Wrong size on AInternalToolFrameworkActor"); \ +static_assert(offsetof(AInternalToolFrameworkActor, bIsSelectableInEditor) == 0x000298, "Member 'AInternalToolFrameworkActor::bIsSelectableInEditor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IToolFrameworkComponent \ +static_assert(alignof(IToolFrameworkComponent) == 0x000001, "Wrong alignment on IToolFrameworkComponent"); \ +static_assert(sizeof(IToolFrameworkComponent) == 0x000001, "Wrong size on IToolFrameworkComponent"); \ + +#define DUMPER7_ASSERTS_IInteractiveToolCameraFocusAPI \ +static_assert(alignof(IInteractiveToolCameraFocusAPI) == 0x000001, "Wrong alignment on IInteractiveToolCameraFocusAPI"); \ +static_assert(sizeof(IInteractiveToolCameraFocusAPI) == 0x000001, "Wrong size on IInteractiveToolCameraFocusAPI"); \ + +#define DUMPER7_ASSERTS_UToolTargetManager \ +static_assert(alignof(UToolTargetManager) == 0x000008, "Wrong alignment on UToolTargetManager"); \ +static_assert(sizeof(UToolTargetManager) == 0x000040, "Wrong size on UToolTargetManager"); \ +static_assert(offsetof(UToolTargetManager, Factories) == 0x000030, "Member 'UToolTargetManager::Factories' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInteractiveToolNestedAcceptCancelAPI \ +static_assert(alignof(IInteractiveToolNestedAcceptCancelAPI) == 0x000001, "Wrong alignment on IInteractiveToolNestedAcceptCancelAPI"); \ +static_assert(sizeof(IInteractiveToolNestedAcceptCancelAPI) == 0x000001, "Wrong size on IInteractiveToolNestedAcceptCancelAPI"); \ + +#define DUMPER7_ASSERTS_IInteractiveToolExclusiveToolAPI \ +static_assert(alignof(IInteractiveToolExclusiveToolAPI) == 0x000001, "Wrong alignment on IInteractiveToolExclusiveToolAPI"); \ +static_assert(sizeof(IInteractiveToolExclusiveToolAPI) == 0x000001, "Wrong size on IInteractiveToolExclusiveToolAPI"); \ + +#define DUMPER7_ASSERTS_IInteractiveToolEditorGizmoAPI \ +static_assert(alignof(IInteractiveToolEditorGizmoAPI) == 0x000001, "Wrong alignment on IInteractiveToolEditorGizmoAPI"); \ +static_assert(sizeof(IInteractiveToolEditorGizmoAPI) == 0x000001, "Wrong size on IInteractiveToolEditorGizmoAPI"); \ + +#define DUMPER7_ASSERTS_IMaterialProvider \ +static_assert(alignof(IMaterialProvider) == 0x000001, "Wrong alignment on IMaterialProvider"); \ +static_assert(sizeof(IMaterialProvider) == 0x000001, "Wrong size on IMaterialProvider"); \ + +#define DUMPER7_ASSERTS_IMeshDescriptionCommitter \ +static_assert(alignof(IMeshDescriptionCommitter) == 0x000001, "Wrong alignment on IMeshDescriptionCommitter"); \ +static_assert(sizeof(IMeshDescriptionCommitter) == 0x000001, "Wrong size on IMeshDescriptionCommitter"); \ + +#define DUMPER7_ASSERTS_IMeshDescriptionProvider \ +static_assert(alignof(IMeshDescriptionProvider) == 0x000001, "Wrong alignment on IMeshDescriptionProvider"); \ +static_assert(sizeof(IMeshDescriptionProvider) == 0x000001, "Wrong size on IMeshDescriptionProvider"); \ + +#define DUMPER7_ASSERTS_USelectionSet \ +static_assert(alignof(USelectionSet) == 0x000008, "Wrong alignment on USelectionSet"); \ +static_assert(sizeof(USelectionSet) == 0x000040, "Wrong size on USelectionSet"); \ + +#define DUMPER7_ASSERTS_UGizmoBaseVec2ParameterSource \ +static_assert(alignof(UGizmoBaseVec2ParameterSource) == 0x000008, "Wrong alignment on UGizmoBaseVec2ParameterSource"); \ +static_assert(sizeof(UGizmoBaseVec2ParameterSource) == 0x000048, "Wrong size on UGizmoBaseVec2ParameterSource"); \ + +#define DUMPER7_ASSERTS_UGizmoLocalVec2ParameterSource \ +static_assert(alignof(UGizmoLocalVec2ParameterSource) == 0x000008, "Wrong alignment on UGizmoLocalVec2ParameterSource"); \ +static_assert(sizeof(UGizmoLocalVec2ParameterSource) == 0x000078, "Wrong size on UGizmoLocalVec2ParameterSource"); \ +static_assert(offsetof(UGizmoLocalVec2ParameterSource, Value) == 0x000048, "Member 'UGizmoLocalVec2ParameterSource::Value' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLocalVec2ParameterSource, LastChange) == 0x000058, "Member 'UGizmoLocalVec2ParameterSource::LastChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoBaseFloatParameterSource \ +static_assert(alignof(UGizmoBaseFloatParameterSource) == 0x000008, "Wrong alignment on UGizmoBaseFloatParameterSource"); \ +static_assert(sizeof(UGizmoBaseFloatParameterSource) == 0x000048, "Wrong size on UGizmoBaseFloatParameterSource"); \ + +#define DUMPER7_ASSERTS_UGizmoAxisTranslationParameterSource \ +static_assert(alignof(UGizmoAxisTranslationParameterSource) == 0x000010, "Wrong alignment on UGizmoAxisTranslationParameterSource"); \ +static_assert(sizeof(UGizmoAxisTranslationParameterSource) == 0x000190, "Wrong size on UGizmoAxisTranslationParameterSource"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, AxisSource) == 0x0000D0, "Member 'UGizmoAxisTranslationParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, TransformSource) == 0x0000E0, "Member 'UGizmoAxisTranslationParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, Parameter) == 0x0000F0, "Member 'UGizmoAxisTranslationParameterSource::Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, LastChange) == 0x0000F4, "Member 'UGizmoAxisTranslationParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, CurTranslationAxis) == 0x000100, "Member 'UGizmoAxisTranslationParameterSource::CurTranslationAxis' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, CurTranslationOrigin) == 0x000118, "Member 'UGizmoAxisTranslationParameterSource::CurTranslationOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisTranslationParameterSource, InitialTransform) == 0x000130, "Member 'UGizmoAxisTranslationParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToolTarget \ +static_assert(alignof(UToolTarget) == 0x000008, "Wrong alignment on UToolTarget"); \ +static_assert(sizeof(UToolTarget) == 0x000028, "Wrong size on UToolTarget"); \ + +#define DUMPER7_ASSERTS_UPrimitiveComponentToolTarget \ +static_assert(alignof(UPrimitiveComponentToolTarget) == 0x000008, "Wrong alignment on UPrimitiveComponentToolTarget"); \ +static_assert(sizeof(UPrimitiveComponentToolTarget) == 0x000038, "Wrong size on UPrimitiveComponentToolTarget"); \ + +#define DUMPER7_ASSERTS_UGizmoPlaneTranslationParameterSource \ +static_assert(alignof(UGizmoPlaneTranslationParameterSource) == 0x000010, "Wrong alignment on UGizmoPlaneTranslationParameterSource"); \ +static_assert(sizeof(UGizmoPlaneTranslationParameterSource) == 0x000220, "Wrong size on UGizmoPlaneTranslationParameterSource"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, AxisSource) == 0x000110, "Member 'UGizmoPlaneTranslationParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, TransformSource) == 0x000120, "Member 'UGizmoPlaneTranslationParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, Parameter) == 0x000130, "Member 'UGizmoPlaneTranslationParameterSource::Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, LastChange) == 0x000140, "Member 'UGizmoPlaneTranslationParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, CurTranslationOrigin) == 0x000160, "Member 'UGizmoPlaneTranslationParameterSource::CurTranslationOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, CurTranslationNormal) == 0x000178, "Member 'UGizmoPlaneTranslationParameterSource::CurTranslationNormal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, CurTranslationAxisX) == 0x000190, "Member 'UGizmoPlaneTranslationParameterSource::CurTranslationAxisX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, CurTranslationAxisY) == 0x0001A8, "Member 'UGizmoPlaneTranslationParameterSource::CurTranslationAxisY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneTranslationParameterSource, InitialTransform) == 0x0001C0, "Member 'UGizmoPlaneTranslationParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoAxisRotationParameterSource \ +static_assert(alignof(UGizmoAxisRotationParameterSource) == 0x000010, "Wrong alignment on UGizmoAxisRotationParameterSource"); \ +static_assert(sizeof(UGizmoAxisRotationParameterSource) == 0x000190, "Wrong size on UGizmoAxisRotationParameterSource"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, AxisSource) == 0x0000D0, "Member 'UGizmoAxisRotationParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, TransformSource) == 0x0000E0, "Member 'UGizmoAxisRotationParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, Angle) == 0x0000F0, "Member 'UGizmoAxisRotationParameterSource::Angle' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, LastChange) == 0x0000F4, "Member 'UGizmoAxisRotationParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, CurRotationAxis) == 0x000100, "Member 'UGizmoAxisRotationParameterSource::CurRotationAxis' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, CurRotationOrigin) == 0x000118, "Member 'UGizmoAxisRotationParameterSource::CurRotationOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisRotationParameterSource, InitialTransform) == 0x000130, "Member 'UGizmoAxisRotationParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiSelectionTool \ +static_assert(alignof(UMultiSelectionTool) == 0x000008, "Wrong alignment on UMultiSelectionTool"); \ +static_assert(sizeof(UMultiSelectionTool) == 0x0000B8, "Wrong size on UMultiSelectionTool"); \ +static_assert(offsetof(UMultiSelectionTool, Targets) == 0x0000A8, "Member 'UMultiSelectionTool::Targets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoUniformScaleParameterSource \ +static_assert(alignof(UGizmoUniformScaleParameterSource) == 0x000010, "Wrong alignment on UGizmoUniformScaleParameterSource"); \ +static_assert(sizeof(UGizmoUniformScaleParameterSource) == 0x000160, "Wrong size on UGizmoUniformScaleParameterSource"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, AxisSource) == 0x000048, "Member 'UGizmoUniformScaleParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, TransformSource) == 0x000058, "Member 'UGizmoUniformScaleParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, ScaleMultiplier) == 0x000068, "Member 'UGizmoUniformScaleParameterSource::ScaleMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, Parameter) == 0x000070, "Member 'UGizmoUniformScaleParameterSource::Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, LastChange) == 0x000080, "Member 'UGizmoUniformScaleParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, CurScaleOrigin) == 0x0000A0, "Member 'UGizmoUniformScaleParameterSource::CurScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, CurScaleNormal) == 0x0000B8, "Member 'UGizmoUniformScaleParameterSource::CurScaleNormal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, CurScaleAxisX) == 0x0000D0, "Member 'UGizmoUniformScaleParameterSource::CurScaleAxisX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, CurScaleAxisY) == 0x0000E8, "Member 'UGizmoUniformScaleParameterSource::CurScaleAxisY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoUniformScaleParameterSource, InitialTransform) == 0x000100, "Member 'UGizmoUniformScaleParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoAxisScaleParameterSource \ +static_assert(alignof(UGizmoAxisScaleParameterSource) == 0x000010, "Wrong alignment on UGizmoAxisScaleParameterSource"); \ +static_assert(sizeof(UGizmoAxisScaleParameterSource) == 0x000110, "Wrong size on UGizmoAxisScaleParameterSource"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, AxisSource) == 0x000048, "Member 'UGizmoAxisScaleParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, TransformSource) == 0x000058, "Member 'UGizmoAxisScaleParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, ScaleMultiplier) == 0x000068, "Member 'UGizmoAxisScaleParameterSource::ScaleMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, bClampToZero) == 0x00006C, "Member 'UGizmoAxisScaleParameterSource::bClampToZero' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, Parameter) == 0x000070, "Member 'UGizmoAxisScaleParameterSource::Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, LastChange) == 0x000074, "Member 'UGizmoAxisScaleParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, CurScaleAxis) == 0x000080, "Member 'UGizmoAxisScaleParameterSource::CurScaleAxis' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, CurScaleOrigin) == 0x000098, "Member 'UGizmoAxisScaleParameterSource::CurScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisScaleParameterSource, InitialTransform) == 0x0000B0, "Member 'UGizmoAxisScaleParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoPlaneScaleParameterSource \ +static_assert(alignof(UGizmoPlaneScaleParameterSource) == 0x000010, "Wrong alignment on UGizmoPlaneScaleParameterSource"); \ +static_assert(sizeof(UGizmoPlaneScaleParameterSource) == 0x0001B0, "Wrong size on UGizmoPlaneScaleParameterSource"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, AxisSource) == 0x000090, "Member 'UGizmoPlaneScaleParameterSource::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, TransformSource) == 0x0000A0, "Member 'UGizmoPlaneScaleParameterSource::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, ScaleMultiplier) == 0x0000B0, "Member 'UGizmoPlaneScaleParameterSource::ScaleMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, bUseEqualScaling) == 0x0000B4, "Member 'UGizmoPlaneScaleParameterSource::bUseEqualScaling' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, bClampToZero) == 0x0000B5, "Member 'UGizmoPlaneScaleParameterSource::bClampToZero' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, Parameter) == 0x0000B8, "Member 'UGizmoPlaneScaleParameterSource::Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, LastChange) == 0x0000C8, "Member 'UGizmoPlaneScaleParameterSource::LastChange' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, CurScaleOrigin) == 0x0000E8, "Member 'UGizmoPlaneScaleParameterSource::CurScaleOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, CurScaleNormal) == 0x000100, "Member 'UGizmoPlaneScaleParameterSource::CurScaleNormal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, CurScaleAxisX) == 0x000118, "Member 'UGizmoPlaneScaleParameterSource::CurScaleAxisX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, CurScaleAxisY) == 0x000130, "Member 'UGizmoPlaneScaleParameterSource::CurScaleAxisY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoPlaneScaleParameterSource, InitialTransform) == 0x000150, "Member 'UGizmoPlaneScaleParameterSource::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IPhysicsDataSource \ +static_assert(alignof(IPhysicsDataSource) == 0x000001, "Wrong alignment on IPhysicsDataSource"); \ +static_assert(sizeof(IPhysicsDataSource) == 0x000001, "Wrong size on IPhysicsDataSource"); \ + +#define DUMPER7_ASSERTS_IPrimitiveComponentBackedTarget \ +static_assert(alignof(IPrimitiveComponentBackedTarget) == 0x000001, "Wrong alignment on IPrimitiveComponentBackedTarget"); \ +static_assert(sizeof(IPrimitiveComponentBackedTarget) == 0x000001, "Wrong size on IPrimitiveComponentBackedTarget"); \ + +#define DUMPER7_ASSERTS_ISkeletalMeshBackedTarget \ +static_assert(alignof(ISkeletalMeshBackedTarget) == 0x000001, "Wrong alignment on ISkeletalMeshBackedTarget"); \ +static_assert(sizeof(ISkeletalMeshBackedTarget) == 0x000001, "Wrong size on ISkeletalMeshBackedTarget"); \ + +#define DUMPER7_ASSERTS_IStaticMeshBackedTarget \ +static_assert(alignof(IStaticMeshBackedTarget) == 0x000001, "Wrong alignment on IStaticMeshBackedTarget"); \ +static_assert(sizeof(IStaticMeshBackedTarget) == 0x000001, "Wrong size on IStaticMeshBackedTarget"); \ + +#define DUMPER7_ASSERTS_UInputBehavior \ +static_assert(alignof(UInputBehavior) == 0x000008, "Wrong alignment on UInputBehavior"); \ +static_assert(sizeof(UInputBehavior) == 0x000030, "Wrong size on UInputBehavior"); \ + +#define DUMPER7_ASSERTS_UToolTargetFactory \ +static_assert(alignof(UToolTargetFactory) == 0x000008, "Wrong alignment on UToolTargetFactory"); \ +static_assert(sizeof(UToolTargetFactory) == 0x000028, "Wrong size on UToolTargetFactory"); \ + +#define DUMPER7_ASSERTS_UPrimitiveComponentToolTargetFactory \ +static_assert(alignof(UPrimitiveComponentToolTargetFactory) == 0x000008, "Wrong alignment on UPrimitiveComponentToolTargetFactory"); \ +static_assert(sizeof(UPrimitiveComponentToolTargetFactory) == 0x000028, "Wrong size on UPrimitiveComponentToolTargetFactory"); \ + +#define DUMPER7_ASSERTS_UAnyButtonInputBehavior \ +static_assert(alignof(UAnyButtonInputBehavior) == 0x000008, "Wrong alignment on UAnyButtonInputBehavior"); \ +static_assert(sizeof(UAnyButtonInputBehavior) == 0x000080, "Wrong size on UAnyButtonInputBehavior"); \ + +#define DUMPER7_ASSERTS_UClickDragInputBehavior \ +static_assert(alignof(UClickDragInputBehavior) == 0x000008, "Wrong alignment on UClickDragInputBehavior"); \ +static_assert(sizeof(UClickDragInputBehavior) == 0x000140, "Wrong size on UClickDragInputBehavior"); \ +static_assert(offsetof(UClickDragInputBehavior, bUpdateModifiersDuringDrag) == 0x000120, "Member 'UClickDragInputBehavior::bUpdateModifiersDuringDrag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalClickDragInputBehavior \ +static_assert(alignof(ULocalClickDragInputBehavior) == 0x000008, "Wrong alignment on ULocalClickDragInputBehavior"); \ +static_assert(sizeof(ULocalClickDragInputBehavior) == 0x000280, "Wrong size on ULocalClickDragInputBehavior"); \ + +#define DUMPER7_ASSERTS_UKeyAsModifierInputBehavior \ +static_assert(alignof(UKeyAsModifierInputBehavior) == 0x000008, "Wrong alignment on UKeyAsModifierInputBehavior"); \ +static_assert(sizeof(UKeyAsModifierInputBehavior) == 0x000098, "Wrong size on UKeyAsModifierInputBehavior"); \ + +#define DUMPER7_ASSERTS_UMouseHoverBehavior \ +static_assert(alignof(UMouseHoverBehavior) == 0x000008, "Wrong alignment on UMouseHoverBehavior"); \ +static_assert(sizeof(UMouseHoverBehavior) == 0x000098, "Wrong size on UMouseHoverBehavior"); \ + +#define DUMPER7_ASSERTS_ULocalMouseHoverBehavior \ +static_assert(alignof(ULocalMouseHoverBehavior) == 0x000008, "Wrong alignment on ULocalMouseHoverBehavior"); \ +static_assert(sizeof(ULocalMouseHoverBehavior) == 0x0001E0, "Wrong size on ULocalMouseHoverBehavior"); \ + +#define DUMPER7_ASSERTS_UMouseWheelInputBehavior \ +static_assert(alignof(UMouseWheelInputBehavior) == 0x000008, "Wrong alignment on UMouseWheelInputBehavior"); \ +static_assert(sizeof(UMouseWheelInputBehavior) == 0x000130, "Wrong size on UMouseWheelInputBehavior"); \ + +#define DUMPER7_ASSERTS_UMultiClickSequenceInputBehavior \ +static_assert(alignof(UMultiClickSequenceInputBehavior) == 0x000008, "Wrong alignment on UMultiClickSequenceInputBehavior"); \ +static_assert(sizeof(UMultiClickSequenceInputBehavior) == 0x000130, "Wrong size on UMultiClickSequenceInputBehavior"); \ + +#define DUMPER7_ASSERTS_USingleClickInputBehavior \ +static_assert(alignof(USingleClickInputBehavior) == 0x000008, "Wrong alignment on USingleClickInputBehavior"); \ +static_assert(sizeof(USingleClickInputBehavior) == 0x000130, "Wrong size on USingleClickInputBehavior"); \ +static_assert(offsetof(USingleClickInputBehavior, HitTestOnRelease) == 0x0000C0, "Member 'USingleClickInputBehavior::HitTestOnRelease' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalSingleClickInputBehavior \ +static_assert(alignof(ULocalSingleClickInputBehavior) == 0x000008, "Wrong alignment on ULocalSingleClickInputBehavior"); \ +static_assert(sizeof(ULocalSingleClickInputBehavior) == 0x000200, "Wrong size on ULocalSingleClickInputBehavior"); \ + +#define DUMPER7_ASSERTS_UInteractiveGizmo \ +static_assert(alignof(UInteractiveGizmo) == 0x000008, "Wrong alignment on UInteractiveGizmo"); \ +static_assert(sizeof(UInteractiveGizmo) == 0x000038, "Wrong size on UInteractiveGizmo"); \ +static_assert(offsetof(UInteractiveGizmo, InputBehaviors) == 0x000030, "Member 'UInteractiveGizmo::InputBehaviors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombinedTransformGizmo \ +static_assert(alignof(UCombinedTransformGizmo) == 0x000010, "Wrong alignment on UCombinedTransformGizmo"); \ +static_assert(sizeof(UCombinedTransformGizmo) == 0x0003A0, "Wrong size on UCombinedTransformGizmo"); \ +static_assert(offsetof(UCombinedTransformGizmo, ActiveTarget) == 0x000038, "Member 'UCombinedTransformGizmo::ActiveTarget' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bSnapToWorldGrid) == 0x000040, "Member 'UCombinedTransformGizmo::bSnapToWorldGrid' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bGridSizeIsExplicit) == 0x000044, "Member 'UCombinedTransformGizmo::bGridSizeIsExplicit' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, ExplicitGridSize) == 0x000048, "Member 'UCombinedTransformGizmo::ExplicitGridSize' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bRotationGridSizeIsExplicit) == 0x000060, "Member 'UCombinedTransformGizmo::bRotationGridSizeIsExplicit' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, ExplicitRotationGridSize) == 0x000068, "Member 'UCombinedTransformGizmo::ExplicitRotationGridSize' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bSnapToWorldRotGrid) == 0x000080, "Member 'UCombinedTransformGizmo::bSnapToWorldRotGrid' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bUseContextCoordinateSystem) == 0x000081, "Member 'UCombinedTransformGizmo::bUseContextCoordinateSystem' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, CurrentCoordinateSystem) == 0x000084, "Member 'UCombinedTransformGizmo::CurrentCoordinateSystem' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, bUseContextGizmoMode) == 0x000088, "Member 'UCombinedTransformGizmo::bUseContextGizmoMode' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, ActiveGizmoMode) == 0x000089, "Member 'UCombinedTransformGizmo::ActiveGizmoMode' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, ActiveComponents) == 0x0001B0, "Member 'UCombinedTransformGizmo::ActiveComponents' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, ActiveGizmos) == 0x0001C0, "Member 'UCombinedTransformGizmo::ActiveGizmos' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, CameraAxisSource) == 0x000220, "Member 'UCombinedTransformGizmo::CameraAxisSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, AxisXSource) == 0x000228, "Member 'UCombinedTransformGizmo::AxisXSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, AxisYSource) == 0x000230, "Member 'UCombinedTransformGizmo::AxisYSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, AxisZSource) == 0x000238, "Member 'UCombinedTransformGizmo::AxisZSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, UnitAxisXSource) == 0x000240, "Member 'UCombinedTransformGizmo::UnitAxisXSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, UnitAxisYSource) == 0x000248, "Member 'UCombinedTransformGizmo::UnitAxisYSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, UnitAxisZSource) == 0x000250, "Member 'UCombinedTransformGizmo::UnitAxisZSource' has a wrong offset!"); \ +static_assert(offsetof(UCombinedTransformGizmo, StateTarget) == 0x000258, "Member 'UCombinedTransformGizmo::StateTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URepositionableTransformGizmo \ +static_assert(alignof(URepositionableTransformGizmo) == 0x000010, "Wrong alignment on URepositionableTransformGizmo"); \ +static_assert(sizeof(URepositionableTransformGizmo) == 0x000440, "Wrong size on URepositionableTransformGizmo"); \ +static_assert(offsetof(URepositionableTransformGizmo, RepositionStateTarget) == 0x000430, "Member 'URepositionableTransformGizmo::RepositionStateTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USingleClickOrDragInputBehavior \ +static_assert(alignof(USingleClickOrDragInputBehavior) == 0x000008, "Wrong alignment on USingleClickOrDragInputBehavior"); \ +static_assert(sizeof(USingleClickOrDragInputBehavior) == 0x000180, "Wrong size on USingleClickOrDragInputBehavior"); \ +static_assert(offsetof(USingleClickOrDragInputBehavior, bBeginDragIfClickTargetNotHit) == 0x000120, "Member 'USingleClickOrDragInputBehavior::bBeginDragIfClickTargetNotHit' has a wrong offset!"); \ +static_assert(offsetof(USingleClickOrDragInputBehavior, ClickDistanceThreshold) == 0x000124, "Member 'USingleClickOrDragInputBehavior::ClickDistanceThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USingleKeyCaptureBehavior \ +static_assert(alignof(USingleKeyCaptureBehavior) == 0x000008, "Wrong alignment on USingleKeyCaptureBehavior"); \ +static_assert(sizeof(USingleKeyCaptureBehavior) == 0x000110, "Wrong size on USingleKeyCaptureBehavior"); \ + +#define DUMPER7_ASSERTS_IWidgetBaseBehavior \ +static_assert(alignof(IWidgetBaseBehavior) == 0x000001, "Wrong alignment on IWidgetBaseBehavior"); \ +static_assert(sizeof(IWidgetBaseBehavior) == 0x000001, "Wrong size on IWidgetBaseBehavior"); \ + +#define DUMPER7_ASSERTS_UAxisAngleGizmoBuilder \ +static_assert(alignof(UAxisAngleGizmoBuilder) == 0x000008, "Wrong alignment on UAxisAngleGizmoBuilder"); \ +static_assert(sizeof(UAxisAngleGizmoBuilder) == 0x000028, "Wrong size on UAxisAngleGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UGizmoNilStateTarget \ +static_assert(alignof(UGizmoNilStateTarget) == 0x000008, "Wrong alignment on UGizmoNilStateTarget"); \ +static_assert(sizeof(UGizmoNilStateTarget) == 0x000030, "Wrong size on UGizmoNilStateTarget"); \ + +#define DUMPER7_ASSERTS_UAxisAngleGizmo \ +static_assert(alignof(UAxisAngleGizmo) == 0x000010, "Wrong alignment on UAxisAngleGizmo"); \ +static_assert(sizeof(UAxisAngleGizmo) == 0x0001D0, "Wrong size on UAxisAngleGizmo"); \ +static_assert(offsetof(UAxisAngleGizmo, AxisSource) == 0x000048, "Member 'UAxisAngleGizmo::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, AngleSource) == 0x000058, "Member 'UAxisAngleGizmo::AngleSource' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, HitTarget) == 0x000068, "Member 'UAxisAngleGizmo::HitTarget' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, StateTarget) == 0x000078, "Member 'UAxisAngleGizmo::StateTarget' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, MouseBehavior) == 0x000088, "Member 'UAxisAngleGizmo::MouseBehavior' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, bInInteraction) == 0x000110, "Member 'UAxisAngleGizmo::bInInteraction' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, RotationOrigin) == 0x000118, "Member 'UAxisAngleGizmo::RotationOrigin' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, RotationAxis) == 0x000130, "Member 'UAxisAngleGizmo::RotationAxis' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, RotationPlaneX) == 0x000148, "Member 'UAxisAngleGizmo::RotationPlaneX' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, RotationPlaneY) == 0x000160, "Member 'UAxisAngleGizmo::RotationPlaneY' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, InteractionStartPoint) == 0x000178, "Member 'UAxisAngleGizmo::InteractionStartPoint' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, InteractionCurPoint) == 0x000190, "Member 'UAxisAngleGizmo::InteractionCurPoint' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, InteractionStartAngle) == 0x0001A8, "Member 'UAxisAngleGizmo::InteractionStartAngle' has a wrong offset!"); \ +static_assert(offsetof(UAxisAngleGizmo, InteractionCurAngle) == 0x0001AC, "Member 'UAxisAngleGizmo::InteractionCurAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlanePositionGizmo \ +static_assert(alignof(UPlanePositionGizmo) == 0x000010, "Wrong alignment on UPlanePositionGizmo"); \ +static_assert(sizeof(UPlanePositionGizmo) == 0x000270, "Wrong size on UPlanePositionGizmo"); \ +static_assert(offsetof(UPlanePositionGizmo, AxisSource) == 0x000048, "Member 'UPlanePositionGizmo::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, ParameterSource) == 0x000058, "Member 'UPlanePositionGizmo::ParameterSource' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, HitTarget) == 0x000068, "Member 'UPlanePositionGizmo::HitTarget' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, StateTarget) == 0x000078, "Member 'UPlanePositionGizmo::StateTarget' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, MouseBehavior) == 0x000088, "Member 'UPlanePositionGizmo::MouseBehavior' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, bEnableSignedAxis) == 0x000090, "Member 'UPlanePositionGizmo::bEnableSignedAxis' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, bFlipX) == 0x000091, "Member 'UPlanePositionGizmo::bFlipX' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, bFlipY) == 0x000092, "Member 'UPlanePositionGizmo::bFlipY' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, bInInteraction) == 0x000120, "Member 'UPlanePositionGizmo::bInInteraction' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionOrigin) == 0x000128, "Member 'UPlanePositionGizmo::InteractionOrigin' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionNormal) == 0x000140, "Member 'UPlanePositionGizmo::InteractionNormal' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionAxisX) == 0x000158, "Member 'UPlanePositionGizmo::InteractionAxisX' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionAxisY) == 0x000170, "Member 'UPlanePositionGizmo::InteractionAxisY' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionStartPoint) == 0x000188, "Member 'UPlanePositionGizmo::InteractionStartPoint' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionCurPoint) == 0x0001A0, "Member 'UPlanePositionGizmo::InteractionCurPoint' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionStartParameter) == 0x0001B8, "Member 'UPlanePositionGizmo::InteractionStartParameter' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, InteractionCurParameter) == 0x0001C8, "Member 'UPlanePositionGizmo::InteractionCurParameter' has a wrong offset!"); \ +static_assert(offsetof(UPlanePositionGizmo, ParameterSigns) == 0x0001D8, "Member 'UPlanePositionGizmo::ParameterSigns' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAxisPositionGizmoBuilder \ +static_assert(alignof(UAxisPositionGizmoBuilder) == 0x000008, "Wrong alignment on UAxisPositionGizmoBuilder"); \ +static_assert(sizeof(UAxisPositionGizmoBuilder) == 0x000028, "Wrong size on UAxisPositionGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UAxisPositionGizmo \ +static_assert(alignof(UAxisPositionGizmo) == 0x000010, "Wrong alignment on UAxisPositionGizmo"); \ +static_assert(sizeof(UAxisPositionGizmo) == 0x0001C0, "Wrong size on UAxisPositionGizmo"); \ +static_assert(offsetof(UAxisPositionGizmo, AxisSource) == 0x000048, "Member 'UAxisPositionGizmo::AxisSource' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, ParameterSource) == 0x000058, "Member 'UAxisPositionGizmo::ParameterSource' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, GizmoViewContext) == 0x000068, "Member 'UAxisPositionGizmo::GizmoViewContext' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, HitTarget) == 0x000070, "Member 'UAxisPositionGizmo::HitTarget' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, StateTarget) == 0x000080, "Member 'UAxisPositionGizmo::StateTarget' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, MouseBehavior) == 0x000090, "Member 'UAxisPositionGizmo::MouseBehavior' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, bEnableSignedAxis) == 0x000098, "Member 'UAxisPositionGizmo::bEnableSignedAxis' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, bInInteraction) == 0x000121, "Member 'UAxisPositionGizmo::bInInteraction' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionOrigin) == 0x000128, "Member 'UAxisPositionGizmo::InteractionOrigin' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionAxis) == 0x000140, "Member 'UAxisPositionGizmo::InteractionAxis' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionStartPoint) == 0x000158, "Member 'UAxisPositionGizmo::InteractionStartPoint' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionCurPoint) == 0x000170, "Member 'UAxisPositionGizmo::InteractionCurPoint' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionStartParameter) == 0x000188, "Member 'UAxisPositionGizmo::InteractionStartParameter' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, InteractionCurParameter) == 0x00018C, "Member 'UAxisPositionGizmo::InteractionCurParameter' has a wrong offset!"); \ +static_assert(offsetof(UAxisPositionGizmo, ParameterSign) == 0x000190, "Member 'UAxisPositionGizmo::ParameterSign' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoConstantAxisSource \ +static_assert(alignof(UGizmoConstantAxisSource) == 0x000008, "Wrong alignment on UGizmoConstantAxisSource"); \ +static_assert(sizeof(UGizmoConstantAxisSource) == 0x000060, "Wrong size on UGizmoConstantAxisSource"); \ +static_assert(offsetof(UGizmoConstantAxisSource, Origin) == 0x000030, "Member 'UGizmoConstantAxisSource::Origin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoConstantAxisSource, Direction) == 0x000048, "Member 'UGizmoConstantAxisSource::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoConstantFrameAxisSource \ +static_assert(alignof(UGizmoConstantFrameAxisSource) == 0x000008, "Wrong alignment on UGizmoConstantFrameAxisSource"); \ +static_assert(sizeof(UGizmoConstantFrameAxisSource) == 0x000090, "Wrong size on UGizmoConstantFrameAxisSource"); \ +static_assert(offsetof(UGizmoConstantFrameAxisSource, Origin) == 0x000030, "Member 'UGizmoConstantFrameAxisSource::Origin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoConstantFrameAxisSource, Direction) == 0x000048, "Member 'UGizmoConstantFrameAxisSource::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoConstantFrameAxisSource, TangentX) == 0x000060, "Member 'UGizmoConstantFrameAxisSource::TangentX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoConstantFrameAxisSource, TangentY) == 0x000078, "Member 'UGizmoConstantFrameAxisSource::TangentY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoWorldAxisSource \ +static_assert(alignof(UGizmoWorldAxisSource) == 0x000008, "Wrong alignment on UGizmoWorldAxisSource"); \ +static_assert(sizeof(UGizmoWorldAxisSource) == 0x000050, "Wrong size on UGizmoWorldAxisSource"); \ +static_assert(offsetof(UGizmoWorldAxisSource, Origin) == 0x000030, "Member 'UGizmoWorldAxisSource::Origin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoWorldAxisSource, AxisIndex) == 0x000048, "Member 'UGizmoWorldAxisSource::AxisIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoComponentAxisSource \ +static_assert(alignof(UGizmoComponentAxisSource) == 0x000008, "Wrong alignment on UGizmoComponentAxisSource"); \ +static_assert(sizeof(UGizmoComponentAxisSource) == 0x000040, "Wrong size on UGizmoComponentAxisSource"); \ +static_assert(offsetof(UGizmoComponentAxisSource, Component) == 0x000030, "Member 'UGizmoComponentAxisSource::Component' has a wrong offset!"); \ +static_assert(offsetof(UGizmoComponentAxisSource, AxisIndex) == 0x000038, "Member 'UGizmoComponentAxisSource::AxisIndex' has a wrong offset!"); \ +static_assert(offsetof(UGizmoComponentAxisSource, bLocalAxes) == 0x00003C, "Member 'UGizmoComponentAxisSource::bLocalAxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrushStampIndicatorBuilder \ +static_assert(alignof(UBrushStampIndicatorBuilder) == 0x000008, "Wrong alignment on UBrushStampIndicatorBuilder"); \ +static_assert(sizeof(UBrushStampIndicatorBuilder) == 0x000028, "Wrong size on UBrushStampIndicatorBuilder"); \ + +#define DUMPER7_ASSERTS_UBrushStampIndicator \ +static_assert(alignof(UBrushStampIndicator) == 0x000008, "Wrong alignment on UBrushStampIndicator"); \ +static_assert(sizeof(UBrushStampIndicator) == 0x0000D8, "Wrong size on UBrushStampIndicator"); \ +static_assert(offsetof(UBrushStampIndicator, bVisible) == 0x000038, "Member 'UBrushStampIndicator::bVisible' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, brushRadius) == 0x00003C, "Member 'UBrushStampIndicator::brushRadius' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, BrushFalloff) == 0x000040, "Member 'UBrushStampIndicator::BrushFalloff' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, BrushPosition) == 0x000048, "Member 'UBrushStampIndicator::BrushPosition' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, BrushNormal) == 0x000060, "Member 'UBrushStampIndicator::BrushNormal' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, bDrawIndicatorLines) == 0x000078, "Member 'UBrushStampIndicator::bDrawIndicatorLines' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, bDrawRadiusCircle) == 0x000079, "Member 'UBrushStampIndicator::bDrawRadiusCircle' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, SampleStepCount) == 0x00007C, "Member 'UBrushStampIndicator::SampleStepCount' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, LineColor) == 0x000080, "Member 'UBrushStampIndicator::LineColor' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, LineThickness) == 0x000090, "Member 'UBrushStampIndicator::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, bDepthTested) == 0x000094, "Member 'UBrushStampIndicator::bDepthTested' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, bDrawSecondaryLines) == 0x000095, "Member 'UBrushStampIndicator::bDrawSecondaryLines' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, SecondaryLineThickness) == 0x000098, "Member 'UBrushStampIndicator::SecondaryLineThickness' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, SecondaryLineColor) == 0x00009C, "Member 'UBrushStampIndicator::SecondaryLineColor' has a wrong offset!"); \ +static_assert(offsetof(UBrushStampIndicator, AttachedComponent) == 0x0000B0, "Member 'UBrushStampIndicator::AttachedComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGizmoActor \ +static_assert(alignof(AGizmoActor) == 0x000008, "Wrong alignment on AGizmoActor"); \ +static_assert(sizeof(AGizmoActor) == 0x0002A0, "Wrong size on AGizmoActor"); \ + +#define DUMPER7_ASSERTS_ACombinedTransformGizmoActor \ +static_assert(alignof(ACombinedTransformGizmoActor) == 0x000008, "Wrong alignment on ACombinedTransformGizmoActor"); \ +static_assert(sizeof(ACombinedTransformGizmoActor) == 0x000328, "Wrong size on ACombinedTransformGizmoActor"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateX) == 0x0002A0, "Member 'ACombinedTransformGizmoActor::TranslateX' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateY) == 0x0002A8, "Member 'ACombinedTransformGizmoActor::TranslateY' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateZ) == 0x0002B0, "Member 'ACombinedTransformGizmoActor::TranslateZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateYZ) == 0x0002B8, "Member 'ACombinedTransformGizmoActor::TranslateYZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateXZ) == 0x0002C0, "Member 'ACombinedTransformGizmoActor::TranslateXZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, TranslateXY) == 0x0002C8, "Member 'ACombinedTransformGizmoActor::TranslateXY' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, RotateX) == 0x0002D0, "Member 'ACombinedTransformGizmoActor::RotateX' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, RotateY) == 0x0002D8, "Member 'ACombinedTransformGizmoActor::RotateY' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, RotateZ) == 0x0002E0, "Member 'ACombinedTransformGizmoActor::RotateZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, RotationSphere) == 0x0002E8, "Member 'ACombinedTransformGizmoActor::RotationSphere' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, UniformScale) == 0x0002F0, "Member 'ACombinedTransformGizmoActor::UniformScale' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, AxisScaleX) == 0x0002F8, "Member 'ACombinedTransformGizmoActor::AxisScaleX' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, AxisScaleY) == 0x000300, "Member 'ACombinedTransformGizmoActor::AxisScaleY' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, AxisScaleZ) == 0x000308, "Member 'ACombinedTransformGizmoActor::AxisScaleZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, PlaneScaleYZ) == 0x000310, "Member 'ACombinedTransformGizmoActor::PlaneScaleYZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, PlaneScaleXZ) == 0x000318, "Member 'ACombinedTransformGizmoActor::PlaneScaleXZ' has a wrong offset!"); \ +static_assert(offsetof(ACombinedTransformGizmoActor, PlaneScaleXY) == 0x000320, "Member 'ACombinedTransformGizmoActor::PlaneScaleXY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombinedTransformGizmoBuilder \ +static_assert(alignof(UCombinedTransformGizmoBuilder) == 0x000008, "Wrong alignment on UCombinedTransformGizmoBuilder"); \ +static_assert(sizeof(UCombinedTransformGizmoBuilder) == 0x0000F0, "Wrong size on UCombinedTransformGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UGizmoArrowComponent \ +static_assert(alignof(UGizmoArrowComponent) == 0x000010, "Wrong alignment on UGizmoArrowComponent"); \ +static_assert(sizeof(UGizmoArrowComponent) == 0x0005D0, "Wrong size on UGizmoArrowComponent"); \ +static_assert(offsetof(UGizmoArrowComponent, Direction) == 0x0005A0, "Member 'UGizmoArrowComponent::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoArrowComponent, Gap) == 0x0005B8, "Member 'UGizmoArrowComponent::Gap' has a wrong offset!"); \ +static_assert(offsetof(UGizmoArrowComponent, Length) == 0x0005BC, "Member 'UGizmoArrowComponent::Length' has a wrong offset!"); \ +static_assert(offsetof(UGizmoArrowComponent, Thickness) == 0x0005C0, "Member 'UGizmoArrowComponent::Thickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoBoxComponent \ +static_assert(alignof(UGizmoBoxComponent) == 0x000010, "Wrong alignment on UGizmoBoxComponent"); \ +static_assert(sizeof(UGizmoBoxComponent) == 0x000600, "Wrong size on UGizmoBoxComponent"); \ +static_assert(offsetof(UGizmoBoxComponent, Origin) == 0x0005A0, "Member 'UGizmoBoxComponent::Origin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBoxComponent, Rotation) == 0x0005C0, "Member 'UGizmoBoxComponent::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBoxComponent, Dimensions) == 0x0005E0, "Member 'UGizmoBoxComponent::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBoxComponent, LineThickness) == 0x0005F8, "Member 'UGizmoBoxComponent::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBoxComponent, bRemoveHiddenLines) == 0x0005FC, "Member 'UGizmoBoxComponent::bRemoveHiddenLines' has a wrong offset!"); \ +static_assert(offsetof(UGizmoBoxComponent, bEnableAxisFlip) == 0x0005FD, "Member 'UGizmoBoxComponent::bEnableAxisFlip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoCircleComponent \ +static_assert(alignof(UGizmoCircleComponent) == 0x000010, "Wrong alignment on UGizmoCircleComponent"); \ +static_assert(sizeof(UGizmoCircleComponent) == 0x0005D0, "Wrong size on UGizmoCircleComponent"); \ +static_assert(offsetof(UGizmoCircleComponent, Normal) == 0x0005A0, "Member 'UGizmoCircleComponent::Normal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, Radius) == 0x0005B8, "Member 'UGizmoCircleComponent::Radius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, Thickness) == 0x0005BC, "Member 'UGizmoCircleComponent::Thickness' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, NumSides) == 0x0005C0, "Member 'UGizmoCircleComponent::NumSides' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, bViewAligned) == 0x0005C4, "Member 'UGizmoCircleComponent::bViewAligned' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, bDrawFullCircle) == 0x0005C5, "Member 'UGizmoCircleComponent::bDrawFullCircle' has a wrong offset!"); \ +static_assert(offsetof(UGizmoCircleComponent, bOnlyAllowFrontFacingHits) == 0x0005C6, "Member 'UGizmoCircleComponent::bOnlyAllowFrontFacingHits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementBase \ +static_assert(alignof(UGizmoElementBase) == 0x000008, "Wrong alignment on UGizmoElementBase"); \ +static_assert(sizeof(UGizmoElementBase) == 0x000108, "Wrong size on UGizmoElementBase"); \ +static_assert(offsetof(UGizmoElementBase, bEnabled) == 0x000028, "Member 'UGizmoElementBase::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, bEnabledForPerspectiveProjection) == 0x000029, "Member 'UGizmoElementBase::bEnabledForPerspectiveProjection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, bEnabledForOrthographicProjection) == 0x00002A, "Member 'UGizmoElementBase::bEnabledForOrthographicProjection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, bEnabledForDefaultState) == 0x00002B, "Member 'UGizmoElementBase::bEnabledForDefaultState' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, bEnabledForHoveringState) == 0x00002C, "Member 'UGizmoElementBase::bEnabledForHoveringState' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, bEnabledForInteractingState) == 0x00002D, "Member 'UGizmoElementBase::bEnabledForInteractingState' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, PartIdentifier) == 0x000030, "Member 'UGizmoElementBase::PartIdentifier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, MeshRenderAttributes) == 0x000034, "Member 'UGizmoElementBase::MeshRenderAttributes' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ElementState) == 0x000094, "Member 'UGizmoElementBase::ElementState' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ElementInteractionState) == 0x000098, "Member 'UGizmoElementBase::ElementInteractionState' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewDependentType) == 0x00009C, "Member 'UGizmoElementBase::ViewDependentType' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewDependentAxis) == 0x0000A0, "Member 'UGizmoElementBase::ViewDependentAxis' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewDependentAngleTol) == 0x0000B8, "Member 'UGizmoElementBase::ViewDependentAngleTol' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewDependentAxialMaxCosAngleTol) == 0x0000BC, "Member 'UGizmoElementBase::ViewDependentAxialMaxCosAngleTol' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewDependentPlanarMinCosAngleTol) == 0x0000C0, "Member 'UGizmoElementBase::ViewDependentPlanarMinCosAngleTol' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewAlignType) == 0x0000C4, "Member 'UGizmoElementBase::ViewAlignType' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewAlignAxis) == 0x0000C8, "Member 'UGizmoElementBase::ViewAlignAxis' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewAlignNormal) == 0x0000E0, "Member 'UGizmoElementBase::ViewAlignNormal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewAlignAxialAngleTol) == 0x0000F8, "Member 'UGizmoElementBase::ViewAlignAxialAngleTol' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, ViewAlignAxialMaxCosAngleTol) == 0x0000FC, "Member 'UGizmoElementBase::ViewAlignAxialMaxCosAngleTol' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBase, PixelHitDistanceThreshold) == 0x000100, "Member 'UGizmoElementBase::PixelHitDistanceThreshold' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementLineBase \ +static_assert(alignof(UGizmoElementLineBase) == 0x000008, "Wrong alignment on UGizmoElementLineBase"); \ +static_assert(sizeof(UGizmoElementLineBase) == 0x000158, "Wrong size on UGizmoElementLineBase"); \ +static_assert(offsetof(UGizmoElementLineBase, LineRenderAttributes) == 0x000108, "Member 'UGizmoElementLineBase::LineRenderAttributes' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementLineBase, LineThickness) == 0x000144, "Member 'UGizmoElementLineBase::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementLineBase, bScreenSpaceLine) == 0x000148, "Member 'UGizmoElementLineBase::bScreenSpaceLine' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementLineBase, HoverLineThicknessMultiplier) == 0x00014C, "Member 'UGizmoElementLineBase::HoverLineThicknessMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementLineBase, InteractLineThicknessMultiplier) == 0x000150, "Member 'UGizmoElementLineBase::InteractLineThicknessMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementCircleBase \ +static_assert(alignof(UGizmoElementCircleBase) == 0x000008, "Wrong alignment on UGizmoElementCircleBase"); \ +static_assert(sizeof(UGizmoElementCircleBase) == 0x0001C8, "Wrong size on UGizmoElementCircleBase"); \ +static_assert(offsetof(UGizmoElementCircleBase, Center) == 0x000158, "Member 'UGizmoElementCircleBase::Center' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, Axis0) == 0x000170, "Member 'UGizmoElementCircleBase::Axis0' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, Axis1) == 0x000188, "Member 'UGizmoElementCircleBase::Axis1' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, Radius) == 0x0001A0, "Member 'UGizmoElementCircleBase::Radius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, NumSegments) == 0x0001A8, "Member 'UGizmoElementCircleBase::NumSegments' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, PartialType) == 0x0001AC, "Member 'UGizmoElementCircleBase::PartialType' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, PartialStartAngle) == 0x0001B0, "Member 'UGizmoElementCircleBase::PartialStartAngle' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, PartialEndAngle) == 0x0001B8, "Member 'UGizmoElementCircleBase::PartialEndAngle' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircleBase, PartialViewDependentMaxCosTol) == 0x0001C0, "Member 'UGizmoElementCircleBase::PartialViewDependentMaxCosTol' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementArc \ +static_assert(alignof(UGizmoElementArc) == 0x000008, "Wrong alignment on UGizmoElementArc"); \ +static_assert(sizeof(UGizmoElementArc) == 0x0001D0, "Wrong size on UGizmoElementArc"); \ +static_assert(offsetof(UGizmoElementArc, InnerRadius) == 0x0001C8, "Member 'UGizmoElementArc::InnerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementArrow \ +static_assert(alignof(UGizmoElementArrow) == 0x000008, "Wrong alignment on UGizmoElementArrow"); \ +static_assert(sizeof(UGizmoElementArrow) == 0x000188, "Wrong size on UGizmoElementArrow"); \ +static_assert(offsetof(UGizmoElementArrow, CylinderElement) == 0x000110, "Member 'UGizmoElementArrow::CylinderElement' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, ConeElement) == 0x000118, "Member 'UGizmoElementArrow::ConeElement' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, BoxElement) == 0x000120, "Member 'UGizmoElementArrow::BoxElement' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, base) == 0x000128, "Member 'UGizmoElementArrow::base' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, Direction) == 0x000140, "Member 'UGizmoElementArrow::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, SideDirection) == 0x000158, "Member 'UGizmoElementArrow::SideDirection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, BodyLength) == 0x000170, "Member 'UGizmoElementArrow::BodyLength' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, BodyRadius) == 0x000174, "Member 'UGizmoElementArrow::BodyRadius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, HeadLength) == 0x000178, "Member 'UGizmoElementArrow::HeadLength' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, HeadRadius) == 0x00017C, "Member 'UGizmoElementArrow::HeadRadius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, NumSides) == 0x000180, "Member 'UGizmoElementArrow::NumSides' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementArrow, HeadType) == 0x000184, "Member 'UGizmoElementArrow::HeadType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementBox \ +static_assert(alignof(UGizmoElementBox) == 0x000008, "Wrong alignment on UGizmoElementBox"); \ +static_assert(sizeof(UGizmoElementBox) == 0x000168, "Wrong size on UGizmoElementBox"); \ +static_assert(offsetof(UGizmoElementBox, Center) == 0x000108, "Member 'UGizmoElementBox::Center' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBox, Dimensions) == 0x000120, "Member 'UGizmoElementBox::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBox, UpDirection) == 0x000138, "Member 'UGizmoElementBox::UpDirection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementBox, SideDirection) == 0x000150, "Member 'UGizmoElementBox::SideDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementCircle \ +static_assert(alignof(UGizmoElementCircle) == 0x000008, "Wrong alignment on UGizmoElementCircle"); \ +static_assert(sizeof(UGizmoElementCircle) == 0x0001D0, "Wrong size on UGizmoElementCircle"); \ +static_assert(offsetof(UGizmoElementCircle, bDrawMesh) == 0x0001C8, "Member 'UGizmoElementCircle::bDrawMesh' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircle, bDrawLine) == 0x0001C9, "Member 'UGizmoElementCircle::bDrawLine' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircle, bHitMesh) == 0x0001CA, "Member 'UGizmoElementCircle::bHitMesh' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCircle, bHitLine) == 0x0001CB, "Member 'UGizmoElementCircle::bHitLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementCone \ +static_assert(alignof(UGizmoElementCone) == 0x000008, "Wrong alignment on UGizmoElementCone"); \ +static_assert(sizeof(UGizmoElementCone) == 0x000148, "Wrong size on UGizmoElementCone"); \ +static_assert(offsetof(UGizmoElementCone, Origin) == 0x000108, "Member 'UGizmoElementCone::Origin' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCone, Direction) == 0x000120, "Member 'UGizmoElementCone::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCone, Height) == 0x000138, "Member 'UGizmoElementCone::Height' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCone, Radius) == 0x00013C, "Member 'UGizmoElementCone::Radius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCone, NumSides) == 0x000140, "Member 'UGizmoElementCone::NumSides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementCylinder \ +static_assert(alignof(UGizmoElementCylinder) == 0x000008, "Wrong alignment on UGizmoElementCylinder"); \ +static_assert(sizeof(UGizmoElementCylinder) == 0x000148, "Wrong size on UGizmoElementCylinder"); \ +static_assert(offsetof(UGizmoElementCylinder, base) == 0x000108, "Member 'UGizmoElementCylinder::base' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCylinder, Direction) == 0x000120, "Member 'UGizmoElementCylinder::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCylinder, Height) == 0x000138, "Member 'UGizmoElementCylinder::Height' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCylinder, Radius) == 0x00013C, "Member 'UGizmoElementCylinder::Radius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementCylinder, NumSides) == 0x000140, "Member 'UGizmoElementCylinder::NumSides' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementGroup \ +static_assert(alignof(UGizmoElementGroup) == 0x000008, "Wrong alignment on UGizmoElementGroup"); \ +static_assert(sizeof(UGizmoElementGroup) == 0x000170, "Wrong size on UGizmoElementGroup"); \ +static_assert(offsetof(UGizmoElementGroup, bConstantScale) == 0x000158, "Member 'UGizmoElementGroup::bConstantScale' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementGroup, bHitOwner) == 0x000159, "Member 'UGizmoElementGroup::bHitOwner' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementGroup, Elements) == 0x000160, "Member 'UGizmoElementGroup::Elements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementHitTarget \ +static_assert(alignof(UGizmoElementHitTarget) == 0x000010, "Wrong alignment on UGizmoElementHitTarget"); \ +static_assert(sizeof(UGizmoElementHitTarget) == 0x000090, "Wrong size on UGizmoElementHitTarget"); \ +static_assert(offsetof(UGizmoElementHitTarget, GizmoElement) == 0x000030, "Member 'UGizmoElementHitTarget::GizmoElement' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementHitTarget, GizmoViewContext) == 0x000038, "Member 'UGizmoElementHitTarget::GizmoViewContext' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementHitTarget, GizmoTransformProxy) == 0x000040, "Member 'UGizmoElementHitTarget::GizmoTransformProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementHitMultiTarget \ +static_assert(alignof(UGizmoElementHitMultiTarget) == 0x000010, "Wrong alignment on UGizmoElementHitMultiTarget"); \ +static_assert(sizeof(UGizmoElementHitMultiTarget) == 0x000090, "Wrong size on UGizmoElementHitMultiTarget"); \ +static_assert(offsetof(UGizmoElementHitMultiTarget, GizmoElement) == 0x000030, "Member 'UGizmoElementHitMultiTarget::GizmoElement' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementHitMultiTarget, GizmoViewContext) == 0x000038, "Member 'UGizmoElementHitMultiTarget::GizmoViewContext' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementHitMultiTarget, GizmoTransformProxy) == 0x000040, "Member 'UGizmoElementHitMultiTarget::GizmoTransformProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementRectangle \ +static_assert(alignof(UGizmoElementRectangle) == 0x000008, "Wrong alignment on UGizmoElementRectangle"); \ +static_assert(sizeof(UGizmoElementRectangle) == 0x0001B0, "Wrong size on UGizmoElementRectangle"); \ +static_assert(offsetof(UGizmoElementRectangle, Center) == 0x000158, "Member 'UGizmoElementRectangle::Center' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, Width) == 0x000170, "Member 'UGizmoElementRectangle::Width' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, Height) == 0x000174, "Member 'UGizmoElementRectangle::Height' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, UpDirection) == 0x000178, "Member 'UGizmoElementRectangle::UpDirection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, SideDirection) == 0x000190, "Member 'UGizmoElementRectangle::SideDirection' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, bDrawMesh) == 0x0001A8, "Member 'UGizmoElementRectangle::bDrawMesh' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, bDrawLine) == 0x0001A9, "Member 'UGizmoElementRectangle::bDrawLine' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, bHitMesh) == 0x0001AA, "Member 'UGizmoElementRectangle::bHitMesh' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementRectangle, bHitLine) == 0x0001AB, "Member 'UGizmoElementRectangle::bHitLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoElementTorus \ +static_assert(alignof(UGizmoElementTorus) == 0x000008, "Wrong alignment on UGizmoElementTorus"); \ +static_assert(sizeof(UGizmoElementTorus) == 0x0001D8, "Wrong size on UGizmoElementTorus"); \ +static_assert(offsetof(UGizmoElementTorus, InnerRadius) == 0x0001C8, "Member 'UGizmoElementTorus::InnerRadius' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementTorus, NumInnerSlices) == 0x0001D0, "Member 'UGizmoElementTorus::NumInnerSlices' has a wrong offset!"); \ +static_assert(offsetof(UGizmoElementTorus, bEndCaps) == 0x0001D4, "Member 'UGizmoElementTorus::bEndCaps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoTransformSource_SetTransform \ +static_assert(alignof(GizmoTransformSource_SetTransform) == 0x000010, "Wrong alignment on GizmoTransformSource_SetTransform"); \ +static_assert(sizeof(GizmoTransformSource_SetTransform) == 0x000060, "Wrong size on GizmoTransformSource_SetTransform"); \ +static_assert(offsetof(GizmoTransformSource_SetTransform, NewTransform) == 0x000000, "Member 'GizmoTransformSource_SetTransform::NewTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoTransformSource_GetTransform \ +static_assert(alignof(GizmoTransformSource_GetTransform) == 0x000010, "Wrong alignment on GizmoTransformSource_GetTransform"); \ +static_assert(sizeof(GizmoTransformSource_GetTransform) == 0x000060, "Wrong size on GizmoTransformSource_GetTransform"); \ +static_assert(offsetof(GizmoTransformSource_GetTransform, ReturnValue) == 0x000000, "Member 'GizmoTransformSource_GetTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoTransformSource \ +static_assert(alignof(IGizmoTransformSource) == 0x000001, "Wrong alignment on IGizmoTransformSource"); \ +static_assert(sizeof(IGizmoTransformSource) == 0x000001, "Wrong size on IGizmoTransformSource"); \ + +#define DUMPER7_ASSERTS_GizmoAxisSource_GetDirection \ +static_assert(alignof(GizmoAxisSource_GetDirection) == 0x000008, "Wrong alignment on GizmoAxisSource_GetDirection"); \ +static_assert(sizeof(GizmoAxisSource_GetDirection) == 0x000018, "Wrong size on GizmoAxisSource_GetDirection"); \ +static_assert(offsetof(GizmoAxisSource_GetDirection, ReturnValue) == 0x000000, "Member 'GizmoAxisSource_GetDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoAxisSource_GetOrigin \ +static_assert(alignof(GizmoAxisSource_GetOrigin) == 0x000008, "Wrong alignment on GizmoAxisSource_GetOrigin"); \ +static_assert(sizeof(GizmoAxisSource_GetOrigin) == 0x000018, "Wrong size on GizmoAxisSource_GetOrigin"); \ +static_assert(offsetof(GizmoAxisSource_GetOrigin, ReturnValue) == 0x000000, "Member 'GizmoAxisSource_GetOrigin::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoAxisSource_GetTangentVectors \ +static_assert(alignof(GizmoAxisSource_GetTangentVectors) == 0x000008, "Wrong alignment on GizmoAxisSource_GetTangentVectors"); \ +static_assert(sizeof(GizmoAxisSource_GetTangentVectors) == 0x000030, "Wrong size on GizmoAxisSource_GetTangentVectors"); \ +static_assert(offsetof(GizmoAxisSource_GetTangentVectors, TangentXOut) == 0x000000, "Member 'GizmoAxisSource_GetTangentVectors::TangentXOut' has a wrong offset!"); \ +static_assert(offsetof(GizmoAxisSource_GetTangentVectors, TangentYOut) == 0x000018, "Member 'GizmoAxisSource_GetTangentVectors::TangentYOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoAxisSource_HasTangentVectors \ +static_assert(alignof(GizmoAxisSource_HasTangentVectors) == 0x000001, "Wrong alignment on GizmoAxisSource_HasTangentVectors"); \ +static_assert(sizeof(GizmoAxisSource_HasTangentVectors) == 0x000001, "Wrong size on GizmoAxisSource_HasTangentVectors"); \ +static_assert(offsetof(GizmoAxisSource_HasTangentVectors, ReturnValue) == 0x000000, "Member 'GizmoAxisSource_HasTangentVectors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoAxisSource \ +static_assert(alignof(IGizmoAxisSource) == 0x000001, "Wrong alignment on IGizmoAxisSource"); \ +static_assert(sizeof(IGizmoAxisSource) == 0x000001, "Wrong size on IGizmoAxisSource"); \ + +#define DUMPER7_ASSERTS_GizmoClickTarget_UpdateHoverState \ +static_assert(alignof(GizmoClickTarget_UpdateHoverState) == 0x000001, "Wrong alignment on GizmoClickTarget_UpdateHoverState"); \ +static_assert(sizeof(GizmoClickTarget_UpdateHoverState) == 0x000001, "Wrong size on GizmoClickTarget_UpdateHoverState"); \ +static_assert(offsetof(GizmoClickTarget_UpdateHoverState, bHovering) == 0x000000, "Member 'GizmoClickTarget_UpdateHoverState::bHovering' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoClickTarget_UpdateInteractingState \ +static_assert(alignof(GizmoClickTarget_UpdateInteractingState) == 0x000001, "Wrong alignment on GizmoClickTarget_UpdateInteractingState"); \ +static_assert(sizeof(GizmoClickTarget_UpdateInteractingState) == 0x000001, "Wrong size on GizmoClickTarget_UpdateInteractingState"); \ +static_assert(offsetof(GizmoClickTarget_UpdateInteractingState, bInteracting) == 0x000000, "Member 'GizmoClickTarget_UpdateInteractingState::bInteracting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoClickTarget \ +static_assert(alignof(IGizmoClickTarget) == 0x000001, "Wrong alignment on IGizmoClickTarget"); \ +static_assert(sizeof(IGizmoClickTarget) == 0x000001, "Wrong size on IGizmoClickTarget"); \ + +#define DUMPER7_ASSERTS_GizmoClickMultiTarget_UpdateHittableState \ +static_assert(alignof(GizmoClickMultiTarget_UpdateHittableState) == 0x000004, "Wrong alignment on GizmoClickMultiTarget_UpdateHittableState"); \ +static_assert(sizeof(GizmoClickMultiTarget_UpdateHittableState) == 0x000008, "Wrong size on GizmoClickMultiTarget_UpdateHittableState"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateHittableState, bHittable) == 0x000000, "Member 'GizmoClickMultiTarget_UpdateHittableState::bHittable' has a wrong offset!"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateHittableState, InPartIdentifier) == 0x000004, "Member 'GizmoClickMultiTarget_UpdateHittableState::InPartIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoClickMultiTarget_UpdateHoverState \ +static_assert(alignof(GizmoClickMultiTarget_UpdateHoverState) == 0x000004, "Wrong alignment on GizmoClickMultiTarget_UpdateHoverState"); \ +static_assert(sizeof(GizmoClickMultiTarget_UpdateHoverState) == 0x000008, "Wrong size on GizmoClickMultiTarget_UpdateHoverState"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateHoverState, bHovering) == 0x000000, "Member 'GizmoClickMultiTarget_UpdateHoverState::bHovering' has a wrong offset!"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateHoverState, InPartIdentifier) == 0x000004, "Member 'GizmoClickMultiTarget_UpdateHoverState::InPartIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoClickMultiTarget_UpdateInteractingState \ +static_assert(alignof(GizmoClickMultiTarget_UpdateInteractingState) == 0x000004, "Wrong alignment on GizmoClickMultiTarget_UpdateInteractingState"); \ +static_assert(sizeof(GizmoClickMultiTarget_UpdateInteractingState) == 0x000008, "Wrong size on GizmoClickMultiTarget_UpdateInteractingState"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateInteractingState, bInteracting) == 0x000000, "Member 'GizmoClickMultiTarget_UpdateInteractingState::bInteracting' has a wrong offset!"); \ +static_assert(offsetof(GizmoClickMultiTarget_UpdateInteractingState, InPartIdentifier) == 0x000004, "Member 'GizmoClickMultiTarget_UpdateInteractingState::InPartIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoClickMultiTarget \ +static_assert(alignof(IGizmoClickMultiTarget) == 0x000001, "Wrong alignment on IGizmoClickMultiTarget"); \ +static_assert(sizeof(IGizmoClickMultiTarget) == 0x000001, "Wrong size on IGizmoClickMultiTarget"); \ + +#define DUMPER7_ASSERTS_IGizmoRenderTarget \ +static_assert(alignof(IGizmoRenderTarget) == 0x000001, "Wrong alignment on IGizmoRenderTarget"); \ +static_assert(sizeof(IGizmoRenderTarget) == 0x000001, "Wrong size on IGizmoRenderTarget"); \ + +#define DUMPER7_ASSERTS_GizmoRenderMultiTarget_UpdateVisibilityState \ +static_assert(alignof(GizmoRenderMultiTarget_UpdateVisibilityState) == 0x000004, "Wrong alignment on GizmoRenderMultiTarget_UpdateVisibilityState"); \ +static_assert(sizeof(GizmoRenderMultiTarget_UpdateVisibilityState) == 0x000008, "Wrong size on GizmoRenderMultiTarget_UpdateVisibilityState"); \ +static_assert(offsetof(GizmoRenderMultiTarget_UpdateVisibilityState, bVisible) == 0x000000, "Member 'GizmoRenderMultiTarget_UpdateVisibilityState::bVisible' has a wrong offset!"); \ +static_assert(offsetof(GizmoRenderMultiTarget_UpdateVisibilityState, InPartIdentifier) == 0x000004, "Member 'GizmoRenderMultiTarget_UpdateVisibilityState::InPartIdentifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoRenderMultiTarget \ +static_assert(alignof(IGizmoRenderMultiTarget) == 0x000001, "Wrong alignment on IGizmoRenderMultiTarget"); \ +static_assert(sizeof(IGizmoRenderMultiTarget) == 0x000001, "Wrong size on IGizmoRenderMultiTarget"); \ + +#define DUMPER7_ASSERTS_IGizmoStateTarget \ +static_assert(alignof(IGizmoStateTarget) == 0x000001, "Wrong alignment on IGizmoStateTarget"); \ +static_assert(sizeof(IGizmoStateTarget) == 0x000001, "Wrong size on IGizmoStateTarget"); \ + +#define DUMPER7_ASSERTS_GizmoFloatParameterSource_SetParameter \ +static_assert(alignof(GizmoFloatParameterSource_SetParameter) == 0x000004, "Wrong alignment on GizmoFloatParameterSource_SetParameter"); \ +static_assert(sizeof(GizmoFloatParameterSource_SetParameter) == 0x000004, "Wrong size on GizmoFloatParameterSource_SetParameter"); \ +static_assert(offsetof(GizmoFloatParameterSource_SetParameter, NewValue) == 0x000000, "Member 'GizmoFloatParameterSource_SetParameter::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoFloatParameterSource_GetParameter \ +static_assert(alignof(GizmoFloatParameterSource_GetParameter) == 0x000004, "Wrong alignment on GizmoFloatParameterSource_GetParameter"); \ +static_assert(sizeof(GizmoFloatParameterSource_GetParameter) == 0x000004, "Wrong size on GizmoFloatParameterSource_GetParameter"); \ +static_assert(offsetof(GizmoFloatParameterSource_GetParameter, ReturnValue) == 0x000000, "Member 'GizmoFloatParameterSource_GetParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoFloatParameterSource \ +static_assert(alignof(IGizmoFloatParameterSource) == 0x000001, "Wrong alignment on IGizmoFloatParameterSource"); \ +static_assert(sizeof(IGizmoFloatParameterSource) == 0x000001, "Wrong size on IGizmoFloatParameterSource"); \ + +#define DUMPER7_ASSERTS_GizmoVec2ParameterSource_SetParameter \ +static_assert(alignof(GizmoVec2ParameterSource_SetParameter) == 0x000008, "Wrong alignment on GizmoVec2ParameterSource_SetParameter"); \ +static_assert(sizeof(GizmoVec2ParameterSource_SetParameter) == 0x000010, "Wrong size on GizmoVec2ParameterSource_SetParameter"); \ +static_assert(offsetof(GizmoVec2ParameterSource_SetParameter, NewValue) == 0x000000, "Member 'GizmoVec2ParameterSource_SetParameter::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GizmoVec2ParameterSource_GetParameter \ +static_assert(alignof(GizmoVec2ParameterSource_GetParameter) == 0x000008, "Wrong alignment on GizmoVec2ParameterSource_GetParameter"); \ +static_assert(sizeof(GizmoVec2ParameterSource_GetParameter) == 0x000010, "Wrong size on GizmoVec2ParameterSource_GetParameter"); \ +static_assert(offsetof(GizmoVec2ParameterSource_GetParameter, ReturnValue) == 0x000000, "Member 'GizmoVec2ParameterSource_GetParameter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IGizmoVec2ParameterSource \ +static_assert(alignof(IGizmoVec2ParameterSource) == 0x000001, "Wrong alignment on IGizmoVec2ParameterSource"); \ +static_assert(sizeof(IGizmoVec2ParameterSource) == 0x000001, "Wrong size on IGizmoVec2ParameterSource"); \ + +#define DUMPER7_ASSERTS_UGizmoLineHandleComponent \ +static_assert(alignof(UGizmoLineHandleComponent) == 0x000010, "Wrong alignment on UGizmoLineHandleComponent"); \ +static_assert(sizeof(UGizmoLineHandleComponent) == 0x0005E0, "Wrong size on UGizmoLineHandleComponent"); \ +static_assert(offsetof(UGizmoLineHandleComponent, Normal) == 0x0005A0, "Member 'UGizmoLineHandleComponent::Normal' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLineHandleComponent, HandleSize) == 0x0005B8, "Member 'UGizmoLineHandleComponent::HandleSize' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLineHandleComponent, Thickness) == 0x0005BC, "Member 'UGizmoLineHandleComponent::Thickness' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLineHandleComponent, Direction) == 0x0005C0, "Member 'UGizmoLineHandleComponent::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLineHandleComponent, Length) == 0x0005D8, "Member 'UGizmoLineHandleComponent::Length' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLineHandleComponent, bImageScale) == 0x0005DC, "Member 'UGizmoLineHandleComponent::bImageScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoRectangleComponent \ +static_assert(alignof(UGizmoRectangleComponent) == 0x000010, "Wrong alignment on UGizmoRectangleComponent"); \ +static_assert(sizeof(UGizmoRectangleComponent) == 0x0005F0, "Wrong size on UGizmoRectangleComponent"); \ +static_assert(offsetof(UGizmoRectangleComponent, DirectionX) == 0x0005A0, "Member 'UGizmoRectangleComponent::DirectionX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, DirectionY) == 0x0005B8, "Member 'UGizmoRectangleComponent::DirectionY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, bOrientYAccordingToCamera) == 0x0005D0, "Member 'UGizmoRectangleComponent::bOrientYAccordingToCamera' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, OffsetX) == 0x0005D4, "Member 'UGizmoRectangleComponent::OffsetX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, OffsetY) == 0x0005D8, "Member 'UGizmoRectangleComponent::OffsetY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, LengthX) == 0x0005DC, "Member 'UGizmoRectangleComponent::LengthX' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, LengthY) == 0x0005E0, "Member 'UGizmoRectangleComponent::LengthY' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, Thickness) == 0x0005E4, "Member 'UGizmoRectangleComponent::Thickness' has a wrong offset!"); \ +static_assert(offsetof(UGizmoRectangleComponent, SegmentFlags) == 0x0005E8, "Member 'UGizmoRectangleComponent::SegmentFlags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoViewContext \ +static_assert(alignof(UGizmoViewContext) == 0x000008, "Wrong alignment on UGizmoViewContext"); \ +static_assert(sizeof(UGizmoViewContext) == 0x0001E0, "Wrong size on UGizmoViewContext"); \ + +#define DUMPER7_ASSERTS_UGizmoLambdaHitTarget \ +static_assert(alignof(UGizmoLambdaHitTarget) == 0x000008, "Wrong alignment on UGizmoLambdaHitTarget"); \ +static_assert(sizeof(UGizmoLambdaHitTarget) == 0x0000F0, "Wrong size on UGizmoLambdaHitTarget"); \ + +#define DUMPER7_ASSERTS_UGizmoComponentHitTarget \ +static_assert(alignof(UGizmoComponentHitTarget) == 0x000010, "Wrong alignment on UGizmoComponentHitTarget"); \ +static_assert(sizeof(UGizmoComponentHitTarget) == 0x000100, "Wrong size on UGizmoComponentHitTarget"); \ +static_assert(offsetof(UGizmoComponentHitTarget, Component) == 0x000030, "Member 'UGizmoComponentHitTarget::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIntervalGizmoActor \ +static_assert(alignof(AIntervalGizmoActor) == 0x000008, "Wrong alignment on AIntervalGizmoActor"); \ +static_assert(sizeof(AIntervalGizmoActor) == 0x0002B8, "Wrong size on AIntervalGizmoActor"); \ +static_assert(offsetof(AIntervalGizmoActor, UpIntervalComponent) == 0x0002A0, "Member 'AIntervalGizmoActor::UpIntervalComponent' has a wrong offset!"); \ +static_assert(offsetof(AIntervalGizmoActor, DownIntervalComponent) == 0x0002A8, "Member 'AIntervalGizmoActor::DownIntervalComponent' has a wrong offset!"); \ +static_assert(offsetof(AIntervalGizmoActor, ForwardIntervalComponent) == 0x0002B0, "Member 'AIntervalGizmoActor::ForwardIntervalComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIntervalGizmoBuilder \ +static_assert(alignof(UIntervalGizmoBuilder) == 0x000008, "Wrong alignment on UIntervalGizmoBuilder"); \ +static_assert(sizeof(UIntervalGizmoBuilder) == 0x0000C0, "Wrong size on UIntervalGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UIntervalGizmo \ +static_assert(alignof(UIntervalGizmo) == 0x000010, "Wrong alignment on UIntervalGizmo"); \ +static_assert(sizeof(UIntervalGizmo) == 0x000200, "Wrong size on UIntervalGizmo"); \ +static_assert(offsetof(UIntervalGizmo, StateTarget) == 0x000038, "Member 'UIntervalGizmo::StateTarget' has a wrong offset!"); \ +static_assert(offsetof(UIntervalGizmo, TransformProxy) == 0x000098, "Member 'UIntervalGizmo::TransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UIntervalGizmo, ActiveComponents) == 0x0000A0, "Member 'UIntervalGizmo::ActiveComponents' has a wrong offset!"); \ +static_assert(offsetof(UIntervalGizmo, ActiveGizmos) == 0x0000B0, "Member 'UIntervalGizmo::ActiveGizmos' has a wrong offset!"); \ +static_assert(offsetof(UIntervalGizmo, AxisYSource) == 0x0000D8, "Member 'UIntervalGizmo::AxisYSource' has a wrong offset!"); \ +static_assert(offsetof(UIntervalGizmo, AxisZSource) == 0x0000E0, "Member 'UIntervalGizmo::AxisZSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoAxisIntervalParameterSource \ +static_assert(alignof(UGizmoAxisIntervalParameterSource) == 0x000008, "Wrong alignment on UGizmoAxisIntervalParameterSource"); \ +static_assert(sizeof(UGizmoAxisIntervalParameterSource) == 0x000060, "Wrong size on UGizmoAxisIntervalParameterSource"); \ +static_assert(offsetof(UGizmoAxisIntervalParameterSource, FloatParameterSource) == 0x000048, "Member 'UGizmoAxisIntervalParameterSource::FloatParameterSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisIntervalParameterSource, MinParameter) == 0x000058, "Member 'UGizmoAxisIntervalParameterSource::MinParameter' has a wrong offset!"); \ +static_assert(offsetof(UGizmoAxisIntervalParameterSource, MaxParameter) == 0x00005C, "Member 'UGizmoAxisIntervalParameterSource::MaxParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoLocalFloatParameterSource \ +static_assert(alignof(UGizmoLocalFloatParameterSource) == 0x000008, "Wrong alignment on UGizmoLocalFloatParameterSource"); \ +static_assert(sizeof(UGizmoLocalFloatParameterSource) == 0x000058, "Wrong size on UGizmoLocalFloatParameterSource"); \ +static_assert(offsetof(UGizmoLocalFloatParameterSource, Value) == 0x000048, "Member 'UGizmoLocalFloatParameterSource::Value' has a wrong offset!"); \ +static_assert(offsetof(UGizmoLocalFloatParameterSource, LastChange) == 0x00004C, "Member 'UGizmoLocalFloatParameterSource::LastChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlanePositionGizmoBuilder \ +static_assert(alignof(UPlanePositionGizmoBuilder) == 0x000008, "Wrong alignment on UPlanePositionGizmoBuilder"); \ +static_assert(sizeof(UPlanePositionGizmoBuilder) == 0x000028, "Wrong size on UPlanePositionGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_URepositionableTransformGizmoBuilder \ +static_assert(alignof(URepositionableTransformGizmoBuilder) == 0x000008, "Wrong alignment on URepositionableTransformGizmoBuilder"); \ +static_assert(sizeof(URepositionableTransformGizmoBuilder) == 0x0000F0, "Wrong size on URepositionableTransformGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UScalableSphereGizmoBuilder \ +static_assert(alignof(UScalableSphereGizmoBuilder) == 0x000008, "Wrong alignment on UScalableSphereGizmoBuilder"); \ +static_assert(sizeof(UScalableSphereGizmoBuilder) == 0x000028, "Wrong size on UScalableSphereGizmoBuilder"); \ + +#define DUMPER7_ASSERTS_UScalableSphereGizmo \ +static_assert(alignof(UScalableSphereGizmo) == 0x000010, "Wrong alignment on UScalableSphereGizmo"); \ +static_assert(sizeof(UScalableSphereGizmo) == 0x000100, "Wrong size on UScalableSphereGizmo"); \ +static_assert(offsetof(UScalableSphereGizmo, HitErrorThreshold) == 0x000080, "Member 'UScalableSphereGizmo::HitErrorThreshold' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, TransactionDescription) == 0x000088, "Member 'UScalableSphereGizmo::TransactionDescription' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, Radius) == 0x0000A0, "Member 'UScalableSphereGizmo::Radius' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, bIsHovering) == 0x0000A4, "Member 'UScalableSphereGizmo::bIsHovering' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, bIsDragging) == 0x0000A5, "Member 'UScalableSphereGizmo::bIsDragging' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, ActiveTarget) == 0x0000A8, "Member 'UScalableSphereGizmo::ActiveTarget' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, ActiveAxis) == 0x0000B0, "Member 'UScalableSphereGizmo::ActiveAxis' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, DragStartWorldPosition) == 0x0000C8, "Member 'UScalableSphereGizmo::DragStartWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, DragCurrentPositionProjected) == 0x0000E0, "Member 'UScalableSphereGizmo::DragCurrentPositionProjected' has a wrong offset!"); \ +static_assert(offsetof(UScalableSphereGizmo, InteractionStartParameter) == 0x0000F8, "Member 'UScalableSphereGizmo::InteractionStartParameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UScalableSphereGizmoInputBehavior \ +static_assert(alignof(UScalableSphereGizmoInputBehavior) == 0x000008, "Wrong alignment on UScalableSphereGizmoInputBehavior"); \ +static_assert(sizeof(UScalableSphereGizmoInputBehavior) == 0x0000D0, "Wrong size on UScalableSphereGizmoInputBehavior"); \ + +#define DUMPER7_ASSERTS_UGizmoLambdaStateTarget \ +static_assert(alignof(UGizmoLambdaStateTarget) == 0x000008, "Wrong alignment on UGizmoLambdaStateTarget"); \ +static_assert(sizeof(UGizmoLambdaStateTarget) == 0x0000B0, "Wrong size on UGizmoLambdaStateTarget"); \ + +#define DUMPER7_ASSERTS_UGizmoObjectModifyStateTarget \ +static_assert(alignof(UGizmoObjectModifyStateTarget) == 0x000008, "Wrong alignment on UGizmoObjectModifyStateTarget"); \ +static_assert(sizeof(UGizmoObjectModifyStateTarget) == 0x000060, "Wrong size on UGizmoObjectModifyStateTarget"); \ +static_assert(offsetof(UGizmoObjectModifyStateTarget, TransactionManager) == 0x000050, "Member 'UGizmoObjectModifyStateTarget::TransactionManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoTransformChangeStateTarget \ +static_assert(alignof(UGizmoTransformChangeStateTarget) == 0x000010, "Wrong alignment on UGizmoTransformChangeStateTarget"); \ +static_assert(sizeof(UGizmoTransformChangeStateTarget) == 0x000140, "Wrong size on UGizmoTransformChangeStateTarget"); \ +static_assert(offsetof(UGizmoTransformChangeStateTarget, TransactionManager) == 0x000050, "Member 'UGizmoTransformChangeStateTarget::TransactionManager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombinedTransformGizmoContextObject \ +static_assert(alignof(UCombinedTransformGizmoContextObject) == 0x000008, "Wrong alignment on UCombinedTransformGizmoContextObject"); \ +static_assert(sizeof(UCombinedTransformGizmoContextObject) == 0x000058, "Wrong size on UCombinedTransformGizmoContextObject"); \ + +#define DUMPER7_ASSERTS_UTransformProxy \ +static_assert(alignof(UTransformProxy) == 0x000010, "Wrong alignment on UTransformProxy"); \ +static_assert(sizeof(UTransformProxy) == 0x0001B0, "Wrong size on UTransformProxy"); \ +static_assert(offsetof(UTransformProxy, bRotatePerObject) == 0x0000D0, "Member 'UTransformProxy::bRotatePerObject' has a wrong offset!"); \ +static_assert(offsetof(UTransformProxy, bSetPivotMode) == 0x0000D1, "Member 'UTransformProxy::bSetPivotMode' has a wrong offset!"); \ +static_assert(offsetof(UTransformProxy, SharedTransform) == 0x0000F0, "Member 'UTransformProxy::SharedTransform' has a wrong offset!"); \ +static_assert(offsetof(UTransformProxy, InitialSharedTransform) == 0x000150, "Member 'UTransformProxy::InitialSharedTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoBaseTransformSource \ +static_assert(alignof(UGizmoBaseTransformSource) == 0x000008, "Wrong alignment on UGizmoBaseTransformSource"); \ +static_assert(sizeof(UGizmoBaseTransformSource) == 0x000048, "Wrong size on UGizmoBaseTransformSource"); \ + +#define DUMPER7_ASSERTS_UGizmoComponentWorldTransformSource \ +static_assert(alignof(UGizmoComponentWorldTransformSource) == 0x000008, "Wrong alignment on UGizmoComponentWorldTransformSource"); \ +static_assert(sizeof(UGizmoComponentWorldTransformSource) == 0x000058, "Wrong size on UGizmoComponentWorldTransformSource"); \ +static_assert(offsetof(UGizmoComponentWorldTransformSource, Component) == 0x000048, "Member 'UGizmoComponentWorldTransformSource::Component' has a wrong offset!"); \ +static_assert(offsetof(UGizmoComponentWorldTransformSource, bModifyComponentOnTransform) == 0x000050, "Member 'UGizmoComponentWorldTransformSource::bModifyComponentOnTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoScaledTransformSource \ +static_assert(alignof(UGizmoScaledTransformSource) == 0x000010, "Wrong alignment on UGizmoScaledTransformSource"); \ +static_assert(sizeof(UGizmoScaledTransformSource) == 0x0000E0, "Wrong size on UGizmoScaledTransformSource"); \ +static_assert(offsetof(UGizmoScaledTransformSource, ChildTransformSource) == 0x000048, "Member 'UGizmoScaledTransformSource::ChildTransformSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoTransformProxyTransformSource \ +static_assert(alignof(UGizmoTransformProxyTransformSource) == 0x000008, "Wrong alignment on UGizmoTransformProxyTransformSource"); \ +static_assert(sizeof(UGizmoTransformProxyTransformSource) == 0x000070, "Wrong size on UGizmoTransformProxyTransformSource"); \ +static_assert(offsetof(UGizmoTransformProxyTransformSource, Proxy) == 0x000048, "Member 'UGizmoTransformProxyTransformSource::Proxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGizmoScaledAndUnscaledTransformSources \ +static_assert(alignof(UGizmoScaledAndUnscaledTransformSources) == 0x000008, "Wrong alignment on UGizmoScaledAndUnscaledTransformSources"); \ +static_assert(sizeof(UGizmoScaledAndUnscaledTransformSources) == 0x000068, "Wrong size on UGizmoScaledAndUnscaledTransformSources"); \ +static_assert(offsetof(UGizmoScaledAndUnscaledTransformSources, ScaledTransformSource) == 0x000048, "Member 'UGizmoScaledAndUnscaledTransformSources::ScaledTransformSource' has a wrong offset!"); \ +static_assert(offsetof(UGizmoScaledAndUnscaledTransformSources, UnscaledTransformSource) == 0x000058, "Member 'UGizmoScaledAndUnscaledTransformSources::UnscaledTransformSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolPropertySet \ +static_assert(alignof(UInteractiveToolPropertySet) == 0x000008, "Wrong alignment on UInteractiveToolPropertySet"); \ +static_assert(sizeof(UInteractiveToolPropertySet) == 0x0000A8, "Wrong size on UInteractiveToolPropertySet"); \ +static_assert(offsetof(UInteractiveToolPropertySet, CachedPropertiesMap) == 0x000038, "Member 'UInteractiveToolPropertySet::CachedPropertiesMap' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolPropertySet, bIsPropertySetEnabled) == 0x000088, "Member 'UInteractiveToolPropertySet::bIsPropertySetEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrushBaseProperties \ +static_assert(alignof(UBrushBaseProperties) == 0x000008, "Wrong alignment on UBrushBaseProperties"); \ +static_assert(sizeof(UBrushBaseProperties) == 0x0000C0, "Wrong size on UBrushBaseProperties"); \ +static_assert(offsetof(UBrushBaseProperties, brushSize) == 0x0000A8, "Member 'UBrushBaseProperties::brushSize' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, bSpecifyRadius) == 0x0000AC, "Member 'UBrushBaseProperties::bSpecifyRadius' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, brushRadius) == 0x0000B0, "Member 'UBrushBaseProperties::brushRadius' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, BrushStrength) == 0x0000B4, "Member 'UBrushBaseProperties::BrushStrength' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, BrushFalloffAmount) == 0x0000B8, "Member 'UBrushBaseProperties::BrushFalloffAmount' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, bShowStrength) == 0x0000BC, "Member 'UBrushBaseProperties::bShowStrength' has a wrong offset!"); \ +static_assert(offsetof(UBrushBaseProperties, bShowFalloff) == 0x0000BD, "Member 'UBrushBaseProperties::bShowFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBrushAdjusterInputBehavior \ +static_assert(alignof(UBrushAdjusterInputBehavior) == 0x000008, "Wrong alignment on UBrushAdjusterInputBehavior"); \ +static_assert(sizeof(UBrushAdjusterInputBehavior) == 0x0000D0, "Wrong size on UBrushAdjusterInputBehavior"); \ + +#define DUMPER7_ASSERTS_USingleSelectionTool \ +static_assert(alignof(USingleSelectionTool) == 0x000008, "Wrong alignment on USingleSelectionTool"); \ +static_assert(sizeof(USingleSelectionTool) == 0x0000B0, "Wrong size on USingleSelectionTool"); \ +static_assert(offsetof(USingleSelectionTool, Target) == 0x0000A8, "Member 'USingleSelectionTool::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshSurfacePointTool \ +static_assert(alignof(UMeshSurfacePointTool) == 0x000008, "Wrong alignment on UMeshSurfacePointTool"); \ +static_assert(sizeof(UMeshSurfacePointTool) == 0x000108, "Wrong size on UMeshSurfacePointTool"); \ +static_assert(offsetof(UMeshSurfacePointTool, TargetWorld) == 0x000100, "Member 'UMeshSurfacePointTool::TargetWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseBrushTool \ +static_assert(alignof(UBaseBrushTool) == 0x000008, "Wrong alignment on UBaseBrushTool"); \ +static_assert(sizeof(UBaseBrushTool) == 0x000290, "Wrong size on UBaseBrushTool"); \ +static_assert(offsetof(UBaseBrushTool, BrushProperties) == 0x000108, "Member 'UBaseBrushTool::BrushProperties' has a wrong offset!"); \ +static_assert(offsetof(UBaseBrushTool, bInBrushStroke) == 0x000110, "Member 'UBaseBrushTool::bInBrushStroke' has a wrong offset!"); \ +static_assert(offsetof(UBaseBrushTool, WorldToLocalScale) == 0x000114, "Member 'UBaseBrushTool::WorldToLocalScale' has a wrong offset!"); \ +static_assert(offsetof(UBaseBrushTool, LastBrushStamp) == 0x000118, "Member 'UBaseBrushTool::LastBrushStamp' has a wrong offset!"); \ +static_assert(offsetof(UBaseBrushTool, PropertyClass) == 0x000250, "Member 'UBaseBrushTool::PropertyClass' has a wrong offset!"); \ +static_assert(offsetof(UBaseBrushTool, BrushStampIndicator) == 0x000278, "Member 'UBaseBrushTool::BrushStampIndicator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClickDragToolBuilder \ +static_assert(alignof(UClickDragToolBuilder) == 0x000008, "Wrong alignment on UClickDragToolBuilder"); \ +static_assert(sizeof(UClickDragToolBuilder) == 0x000028, "Wrong size on UClickDragToolBuilder"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolWithToolTargetsBuilder \ +static_assert(alignof(UInteractiveToolWithToolTargetsBuilder) == 0x000008, "Wrong alignment on UInteractiveToolWithToolTargetsBuilder"); \ +static_assert(sizeof(UInteractiveToolWithToolTargetsBuilder) == 0x000028, "Wrong size on UInteractiveToolWithToolTargetsBuilder"); \ + +#define DUMPER7_ASSERTS_UMeshSurfacePointToolBuilder \ +static_assert(alignof(UMeshSurfacePointToolBuilder) == 0x000008, "Wrong alignment on UMeshSurfacePointToolBuilder"); \ +static_assert(sizeof(UMeshSurfacePointToolBuilder) == 0x000030, "Wrong size on UMeshSurfacePointToolBuilder"); \ + +#define DUMPER7_ASSERTS_USingleClickToolBuilder \ +static_assert(alignof(USingleClickToolBuilder) == 0x000008, "Wrong alignment on USingleClickToolBuilder"); \ +static_assert(sizeof(USingleClickToolBuilder) == 0x000028, "Wrong size on USingleClickToolBuilder"); \ + +#define DUMPER7_ASSERTS_UContextObjectStore \ +static_assert(alignof(UContextObjectStore) == 0x000008, "Wrong alignment on UContextObjectStore"); \ +static_assert(sizeof(UContextObjectStore) == 0x000038, "Wrong size on UContextObjectStore"); \ +static_assert(offsetof(UContextObjectStore, ContextObjects) == 0x000028, "Member 'UContextObjectStore::ContextObjects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInputBehaviorSet \ +static_assert(alignof(UInputBehaviorSet) == 0x000008, "Wrong alignment on UInputBehaviorSet"); \ +static_assert(sizeof(UInputBehaviorSet) == 0x000038, "Wrong size on UInputBehaviorSet"); \ +static_assert(offsetof(UInputBehaviorSet, Behaviors) == 0x000028, "Member 'UInputBehaviorSet::Behaviors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInputBehaviorSource \ +static_assert(alignof(IInputBehaviorSource) == 0x000001, "Wrong alignment on IInputBehaviorSource"); \ +static_assert(sizeof(IInputBehaviorSource) == 0x000001, "Wrong size on IInputBehaviorSource"); \ + +#define DUMPER7_ASSERTS_ULocalInputBehaviorSource \ +static_assert(alignof(ULocalInputBehaviorSource) == 0x000008, "Wrong alignment on ULocalInputBehaviorSource"); \ +static_assert(sizeof(ULocalInputBehaviorSource) == 0x000070, "Wrong size on ULocalInputBehaviorSource"); \ + +#define DUMPER7_ASSERTS_UInputRouter \ +static_assert(alignof(UInputRouter) == 0x000008, "Wrong alignment on UInputRouter"); \ +static_assert(sizeof(UInputRouter) == 0x000190, "Wrong size on UInputRouter"); \ +static_assert(offsetof(UInputRouter, bAutoInvalidateOnHover) == 0x000028, "Member 'UInputRouter::bAutoInvalidateOnHover' has a wrong offset!"); \ +static_assert(offsetof(UInputRouter, bAutoInvalidateOnCapture) == 0x000029, "Member 'UInputRouter::bAutoInvalidateOnCapture' has a wrong offset!"); \ +static_assert(offsetof(UInputRouter, ActiveInputBehaviors) == 0x000038, "Member 'UInputRouter::ActiveInputBehaviors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveGizmoManager \ +static_assert(alignof(UInteractiveGizmoManager) == 0x000008, "Wrong alignment on UInteractiveGizmoManager"); \ +static_assert(sizeof(UInteractiveGizmoManager) == 0x0000C0, "Wrong size on UInteractiveGizmoManager"); \ +static_assert(offsetof(UInteractiveGizmoManager, ActiveGizmos) == 0x000030, "Member 'UInteractiveGizmoManager::ActiveGizmos' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveGizmoManager, GizmoBuilders) == 0x000058, "Member 'UInteractiveGizmoManager::GizmoBuilders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolManager \ +static_assert(alignof(UInteractiveToolManager) == 0x000008, "Wrong alignment on UInteractiveToolManager"); \ +static_assert(sizeof(UInteractiveToolManager) == 0x000198, "Wrong size on UInteractiveToolManager"); \ +static_assert(offsetof(UInteractiveToolManager, ActiveLeftTool) == 0x000058, "Member 'UInteractiveToolManager::ActiveLeftTool' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolManager, ActiveRightTool) == 0x000060, "Member 'UInteractiveToolManager::ActiveRightTool' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolManager, ToolBuilders) == 0x0000E8, "Member 'UInteractiveToolManager::ToolBuilders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolsContext \ +static_assert(alignof(UInteractiveToolsContext) == 0x000010, "Wrong alignment on UInteractiveToolsContext"); \ +static_assert(sizeof(UInteractiveToolsContext) == 0x000330, "Wrong size on UInteractiveToolsContext"); \ +static_assert(offsetof(UInteractiveToolsContext, InputRouter) == 0x000058, "Member 'UInteractiveToolsContext::InputRouter' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolsContext, TargetManager) == 0x000060, "Member 'UInteractiveToolsContext::TargetManager' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolsContext, ToolManager) == 0x000068, "Member 'UInteractiveToolsContext::ToolManager' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolsContext, GizmoManager) == 0x000070, "Member 'UInteractiveToolsContext::GizmoManager' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolsContext, ContextObjectStore) == 0x000078, "Member 'UInteractiveToolsContext::ContextObjectStore' has a wrong offset!"); \ +static_assert(offsetof(UInteractiveToolsContext, ToolManagerClass) == 0x000300, "Member 'UInteractiveToolsContext::ToolManagerClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USceneSnappingManager \ +static_assert(alignof(USceneSnappingManager) == 0x000008, "Wrong alignment on USceneSnappingManager"); \ +static_assert(sizeof(USceneSnappingManager) == 0x000028, "Wrong size on USceneSnappingManager"); \ + +#define DUMPER7_ASSERTS_UMeshSelectionSet \ +static_assert(alignof(UMeshSelectionSet) == 0x000008, "Wrong alignment on UMeshSelectionSet"); \ +static_assert(sizeof(UMeshSelectionSet) == 0x000080, "Wrong size on UMeshSelectionSet"); \ +static_assert(offsetof(UMeshSelectionSet, Vertices) == 0x000040, "Member 'UMeshSelectionSet::Vertices' has a wrong offset!"); \ +static_assert(offsetof(UMeshSelectionSet, Edges) == 0x000050, "Member 'UMeshSelectionSet::Edges' has a wrong offset!"); \ +static_assert(offsetof(UMeshSelectionSet, Faces) == 0x000060, "Member 'UMeshSelectionSet::Faces' has a wrong offset!"); \ +static_assert(offsetof(UMeshSelectionSet, Groups) == 0x000070, "Member 'UMeshSelectionSet::Groups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCollectionParams \ +static_assert(alignof(FMovieSceneGeometryCollectionParams) == 0x000008, "Wrong alignment on FMovieSceneGeometryCollectionParams"); \ +static_assert(sizeof(FMovieSceneGeometryCollectionParams) == 0x000038, "Wrong size on FMovieSceneGeometryCollectionParams"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionParams, GeometryCollectionCache) == 0x000008, "Member 'FMovieSceneGeometryCollectionParams::GeometryCollectionCache' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionParams, StartFrameOffset) == 0x000028, "Member 'FMovieSceneGeometryCollectionParams::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionParams, EndFrameOffset) == 0x00002C, "Member 'FMovieSceneGeometryCollectionParams::EndFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionParams, PlayRate) == 0x000030, "Member 'FMovieSceneGeometryCollectionParams::PlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCollectionSectionTemplateParameters \ +static_assert(alignof(FMovieSceneGeometryCollectionSectionTemplateParameters) == 0x000008, "Wrong alignment on FMovieSceneGeometryCollectionSectionTemplateParameters"); \ +static_assert(sizeof(FMovieSceneGeometryCollectionSectionTemplateParameters) == 0x000040, "Wrong size on FMovieSceneGeometryCollectionSectionTemplateParameters"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionSectionTemplateParameters, SectionStartTime) == 0x000038, "Member 'FMovieSceneGeometryCollectionSectionTemplateParameters::SectionStartTime' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionSectionTemplateParameters, SectionEndTime) == 0x00003C, "Member 'FMovieSceneGeometryCollectionSectionTemplateParameters::SectionEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneGeometryCollectionSectionTemplate \ +static_assert(alignof(FMovieSceneGeometryCollectionSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneGeometryCollectionSectionTemplate"); \ +static_assert(sizeof(FMovieSceneGeometryCollectionSectionTemplate) == 0x000060, "Wrong size on FMovieSceneGeometryCollectionSectionTemplate"); \ +static_assert(offsetof(FMovieSceneGeometryCollectionSectionTemplate, Params) == 0x000020, "Member 'FMovieSceneGeometryCollectionSectionTemplate::Params' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGeometryCollectionSection \ +static_assert(alignof(UMovieSceneGeometryCollectionSection) == 0x000008, "Wrong alignment on UMovieSceneGeometryCollectionSection"); \ +static_assert(sizeof(UMovieSceneGeometryCollectionSection) == 0x000128, "Wrong size on UMovieSceneGeometryCollectionSection"); \ +static_assert(offsetof(UMovieSceneGeometryCollectionSection, Params_0) == 0x0000F0, "Member 'UMovieSceneGeometryCollectionSection::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneGeometryCollectionTrack \ +static_assert(alignof(UMovieSceneGeometryCollectionTrack) == 0x000008, "Wrong alignment on UMovieSceneGeometryCollectionTrack"); \ +static_assert(sizeof(UMovieSceneGeometryCollectionTrack) == 0x0000B0, "Wrong size on UMovieSceneGeometryCollectionTrack"); \ +static_assert(offsetof(UMovieSceneGeometryCollectionTrack, AnimationSections) == 0x0000A0, "Member 'UMovieSceneGeometryCollectionTrack::AnimationSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URecomputeUVsToolProperties \ +static_assert(alignof(URecomputeUVsToolProperties) == 0x000008, "Wrong alignment on URecomputeUVsToolProperties"); \ +static_assert(sizeof(URecomputeUVsToolProperties) == 0x0000E0, "Wrong size on URecomputeUVsToolProperties"); \ +static_assert(offsetof(URecomputeUVsToolProperties, bEnablePolygroupSupport) == 0x0000A8, "Member 'URecomputeUVsToolProperties::bEnablePolygroupSupport' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, IslandGeneration) == 0x0000AC, "Member 'URecomputeUVsToolProperties::IslandGeneration' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, UnwrapType) == 0x0000B0, "Member 'URecomputeUVsToolProperties::UnwrapType' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, AutoRotation) == 0x0000B4, "Member 'URecomputeUVsToolProperties::AutoRotation' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, bPreserveIrregularity) == 0x0000B8, "Member 'URecomputeUVsToolProperties::bPreserveIrregularity' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, SmoothingSteps) == 0x0000BC, "Member 'URecomputeUVsToolProperties::SmoothingSteps' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, SmoothingAlpha) == 0x0000C0, "Member 'URecomputeUVsToolProperties::SmoothingAlpha' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, MergingDistortionThreshold) == 0x0000C4, "Member 'URecomputeUVsToolProperties::MergingDistortionThreshold' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, MergingAngleThreshold) == 0x0000C8, "Member 'URecomputeUVsToolProperties::MergingAngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, LayoutType) == 0x0000CC, "Member 'URecomputeUVsToolProperties::LayoutType' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, TextureResolution) == 0x0000D0, "Member 'URecomputeUVsToolProperties::TextureResolution' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, NormalizeScale) == 0x0000D4, "Member 'URecomputeUVsToolProperties::NormalizeScale' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, bEnableUDIMLayout) == 0x0000D8, "Member 'URecomputeUVsToolProperties::bEnableUDIMLayout' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsToolProperties, bUDIMCVAREnabled) == 0x0000D9, "Member 'URecomputeUVsToolProperties::bUDIMCVAREnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVLayoutProperties \ +static_assert(alignof(UUVLayoutProperties) == 0x000008, "Wrong alignment on UUVLayoutProperties"); \ +static_assert(sizeof(UUVLayoutProperties) == 0x0000D0, "Wrong size on UUVLayoutProperties"); \ +static_assert(offsetof(UUVLayoutProperties, LayoutType) == 0x0000A8, "Member 'UUVLayoutProperties::LayoutType' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, TextureResolution) == 0x0000AC, "Member 'UUVLayoutProperties::TextureResolution' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, Scale) == 0x0000B0, "Member 'UUVLayoutProperties::Scale' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, Translation) == 0x0000B8, "Member 'UUVLayoutProperties::Translation' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, bAllowFlips) == 0x0000C8, "Member 'UUVLayoutProperties::bAllowFlips' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, bEnableUDIMLayout) == 0x0000C9, "Member 'UUVLayoutProperties::bEnableUDIMLayout' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutProperties, bUDIMCVAREnabled) == 0x0000CA, "Member 'UUVLayoutProperties::bUDIMCVAREnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URecomputeUVsOpFactory \ +static_assert(alignof(URecomputeUVsOpFactory) == 0x000010, "Wrong alignment on URecomputeUVsOpFactory"); \ +static_assert(sizeof(URecomputeUVsOpFactory) == 0x000140, "Wrong size on URecomputeUVsOpFactory"); \ +static_assert(offsetof(URecomputeUVsOpFactory, Settings) == 0x000030, "Member 'URecomputeUVsOpFactory::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVLayoutOperatorFactory \ +static_assert(alignof(UUVLayoutOperatorFactory) == 0x000010, "Wrong alignment on UUVLayoutOperatorFactory"); \ +static_assert(sizeof(UUVLayoutOperatorFactory) == 0x0001A0, "Wrong size on UUVLayoutOperatorFactory"); \ +static_assert(offsetof(UUVLayoutOperatorFactory, Settings) == 0x000030, "Member 'UUVLayoutOperatorFactory::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Dashjump_C \ +static_assert(alignof(UCameraShake_Dashjump_C) == 0x000010, "Wrong alignment on UCameraShake_Dashjump_C"); \ +static_assert(sizeof(UCameraShake_Dashjump_C) == 0x000230, "Wrong size on UCameraShake_Dashjump_C"); \ + +#define DUMPER7_ASSERTS_FDynamicMeshChangeInfo \ +static_assert(alignof(FDynamicMeshChangeInfo) == 0x000008, "Wrong alignment on FDynamicMeshChangeInfo"); \ +static_assert(sizeof(FDynamicMeshChangeInfo) == 0x000020, "Wrong size on FDynamicMeshChangeInfo"); \ +static_assert(offsetof(FDynamicMeshChangeInfo, Type) == 0x000000, "Member 'FDynamicMeshChangeInfo::Type' has a wrong offset!"); \ +static_assert(offsetof(FDynamicMeshChangeInfo, Flags) == 0x000001, "Member 'FDynamicMeshChangeInfo::Flags' has a wrong offset!"); \ +static_assert(offsetof(FDynamicMeshChangeInfo, bIsRevertChange) == 0x000002, "Member 'FDynamicMeshChangeInfo::bIsRevertChange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IMeshCommandChangeTarget \ +static_assert(alignof(IMeshCommandChangeTarget) == 0x000001, "Wrong alignment on IMeshCommandChangeTarget"); \ +static_assert(sizeof(IMeshCommandChangeTarget) == 0x000001, "Wrong size on IMeshCommandChangeTarget"); \ + +#define DUMPER7_ASSERTS_IMeshReplacementCommandChangeTarget \ +static_assert(alignof(IMeshReplacementCommandChangeTarget) == 0x000001, "Wrong alignment on IMeshReplacementCommandChangeTarget"); \ +static_assert(sizeof(IMeshReplacementCommandChangeTarget) == 0x000001, "Wrong size on IMeshReplacementCommandChangeTarget"); \ + +#define DUMPER7_ASSERTS_IMeshVertexCommandChangeTarget \ +static_assert(alignof(IMeshVertexCommandChangeTarget) == 0x000001, "Wrong alignment on IMeshVertexCommandChangeTarget"); \ +static_assert(sizeof(IMeshVertexCommandChangeTarget) == 0x000001, "Wrong size on IMeshVertexCommandChangeTarget"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetDynamicMesh \ +static_assert(alignof(BaseDynamicMeshComponent_GetDynamicMesh) == 0x000008, "Wrong alignment on BaseDynamicMeshComponent_GetDynamicMesh"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetDynamicMesh) == 0x000008, "Wrong size on BaseDynamicMeshComponent_GetDynamicMesh"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetDynamicMesh, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetDynamicMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetColorOverrideMode \ +static_assert(alignof(BaseDynamicMeshComponent_SetColorOverrideMode) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetColorOverrideMode"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetColorOverrideMode) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetColorOverrideMode"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetColorOverrideMode, NewMode) == 0x000000, "Member 'BaseDynamicMeshComponent_SetColorOverrideMode::NewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetConstantOverrideColor \ +static_assert(alignof(BaseDynamicMeshComponent_SetConstantOverrideColor) == 0x000004, "Wrong alignment on BaseDynamicMeshComponent_SetConstantOverrideColor"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetConstantOverrideColor) == 0x000004, "Wrong size on BaseDynamicMeshComponent_SetConstantOverrideColor"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetConstantOverrideColor, NewColor) == 0x000000, "Member 'BaseDynamicMeshComponent_SetConstantOverrideColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetEnableFlatShading \ +static_assert(alignof(BaseDynamicMeshComponent_SetEnableFlatShading) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetEnableFlatShading"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetEnableFlatShading) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetEnableFlatShading"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetEnableFlatShading, bEnable) == 0x000000, "Member 'BaseDynamicMeshComponent_SetEnableFlatShading::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetEnableRaytracing \ +static_assert(alignof(BaseDynamicMeshComponent_SetEnableRaytracing) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetEnableRaytracing"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetEnableRaytracing) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetEnableRaytracing"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetEnableRaytracing, bSetEnabled) == 0x000000, "Member 'BaseDynamicMeshComponent_SetEnableRaytracing::bSetEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetEnableWireframeRenderPass \ +static_assert(alignof(BaseDynamicMeshComponent_SetEnableWireframeRenderPass) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetEnableWireframeRenderPass"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetEnableWireframeRenderPass) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetEnableWireframeRenderPass"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetEnableWireframeRenderPass, bEnable) == 0x000000, "Member 'BaseDynamicMeshComponent_SetEnableWireframeRenderPass::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetOverrideRenderMaterial \ +static_assert(alignof(BaseDynamicMeshComponent_SetOverrideRenderMaterial) == 0x000008, "Wrong alignment on BaseDynamicMeshComponent_SetOverrideRenderMaterial"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetOverrideRenderMaterial) == 0x000008, "Wrong size on BaseDynamicMeshComponent_SetOverrideRenderMaterial"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetOverrideRenderMaterial, Material) == 0x000000, "Member 'BaseDynamicMeshComponent_SetOverrideRenderMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetSecondaryBuffersVisibility \ +static_assert(alignof(BaseDynamicMeshComponent_SetSecondaryBuffersVisibility) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetSecondaryBuffersVisibility"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetSecondaryBuffersVisibility) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetSecondaryBuffersVisibility"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetSecondaryBuffersVisibility, bSetVisible) == 0x000000, "Member 'BaseDynamicMeshComponent_SetSecondaryBuffersVisibility::bSetVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetSecondaryRenderMaterial \ +static_assert(alignof(BaseDynamicMeshComponent_SetSecondaryRenderMaterial) == 0x000008, "Wrong alignment on BaseDynamicMeshComponent_SetSecondaryRenderMaterial"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetSecondaryRenderMaterial) == 0x000008, "Wrong size on BaseDynamicMeshComponent_SetSecondaryRenderMaterial"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetSecondaryRenderMaterial, Material) == 0x000000, "Member 'BaseDynamicMeshComponent_SetSecondaryRenderMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetShadowsEnabled \ +static_assert(alignof(BaseDynamicMeshComponent_SetShadowsEnabled) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetShadowsEnabled"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetShadowsEnabled) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetShadowsEnabled"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetShadowsEnabled, bEnabled) == 0x000000, "Member 'BaseDynamicMeshComponent_SetShadowsEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode \ +static_assert(alignof(BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode, NewMode) == 0x000000, "Member 'BaseDynamicMeshComponent_SetVertexColorSpaceTransformMode::NewMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_SetViewModeOverridesEnabled \ +static_assert(alignof(BaseDynamicMeshComponent_SetViewModeOverridesEnabled) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_SetViewModeOverridesEnabled"); \ +static_assert(sizeof(BaseDynamicMeshComponent_SetViewModeOverridesEnabled) == 0x000001, "Wrong size on BaseDynamicMeshComponent_SetViewModeOverridesEnabled"); \ +static_assert(offsetof(BaseDynamicMeshComponent_SetViewModeOverridesEnabled, bEnabled) == 0x000000, "Member 'BaseDynamicMeshComponent_SetViewModeOverridesEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetColorOverrideMode \ +static_assert(alignof(BaseDynamicMeshComponent_GetColorOverrideMode) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetColorOverrideMode"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetColorOverrideMode) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetColorOverrideMode"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetColorOverrideMode, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetColorOverrideMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetConstantOverrideColor \ +static_assert(alignof(BaseDynamicMeshComponent_GetConstantOverrideColor) == 0x000004, "Wrong alignment on BaseDynamicMeshComponent_GetConstantOverrideColor"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetConstantOverrideColor) == 0x000004, "Wrong size on BaseDynamicMeshComponent_GetConstantOverrideColor"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetConstantOverrideColor, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetConstantOverrideColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetEnableRaytracing \ +static_assert(alignof(BaseDynamicMeshComponent_GetEnableRaytracing) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetEnableRaytracing"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetEnableRaytracing) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetEnableRaytracing"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetEnableRaytracing, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetEnableRaytracing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetEnableWireframeRenderPass \ +static_assert(alignof(BaseDynamicMeshComponent_GetEnableWireframeRenderPass) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetEnableWireframeRenderPass"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetEnableWireframeRenderPass) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetEnableWireframeRenderPass"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetEnableWireframeRenderPass, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetEnableWireframeRenderPass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetFlatShadingEnabled \ +static_assert(alignof(BaseDynamicMeshComponent_GetFlatShadingEnabled) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetFlatShadingEnabled"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetFlatShadingEnabled) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetFlatShadingEnabled"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetFlatShadingEnabled, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetFlatShadingEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetOverrideRenderMaterial \ +static_assert(alignof(BaseDynamicMeshComponent_GetOverrideRenderMaterial) == 0x000008, "Wrong alignment on BaseDynamicMeshComponent_GetOverrideRenderMaterial"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetOverrideRenderMaterial) == 0x000010, "Wrong size on BaseDynamicMeshComponent_GetOverrideRenderMaterial"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetOverrideRenderMaterial, MaterialIndex) == 0x000000, "Member 'BaseDynamicMeshComponent_GetOverrideRenderMaterial::MaterialIndex' has a wrong offset!"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetOverrideRenderMaterial, ReturnValue) == 0x000008, "Member 'BaseDynamicMeshComponent_GetOverrideRenderMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetSecondaryBuffersVisibility \ +static_assert(alignof(BaseDynamicMeshComponent_GetSecondaryBuffersVisibility) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetSecondaryBuffersVisibility"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetSecondaryBuffersVisibility) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetSecondaryBuffersVisibility"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetSecondaryBuffersVisibility, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetSecondaryBuffersVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetSecondaryRenderMaterial \ +static_assert(alignof(BaseDynamicMeshComponent_GetSecondaryRenderMaterial) == 0x000008, "Wrong alignment on BaseDynamicMeshComponent_GetSecondaryRenderMaterial"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetSecondaryRenderMaterial) == 0x000008, "Wrong size on BaseDynamicMeshComponent_GetSecondaryRenderMaterial"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetSecondaryRenderMaterial, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetSecondaryRenderMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetShadowsEnabled \ +static_assert(alignof(BaseDynamicMeshComponent_GetShadowsEnabled) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetShadowsEnabled"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetShadowsEnabled) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetShadowsEnabled"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetShadowsEnabled, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetShadowsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode \ +static_assert(alignof(BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetVertexColorSpaceTransformMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_GetViewModeOverridesEnabled \ +static_assert(alignof(BaseDynamicMeshComponent_GetViewModeOverridesEnabled) == 0x000001, "Wrong alignment on BaseDynamicMeshComponent_GetViewModeOverridesEnabled"); \ +static_assert(sizeof(BaseDynamicMeshComponent_GetViewModeOverridesEnabled) == 0x000001, "Wrong size on BaseDynamicMeshComponent_GetViewModeOverridesEnabled"); \ +static_assert(offsetof(BaseDynamicMeshComponent_GetViewModeOverridesEnabled, ReturnValue) == 0x000000, "Member 'BaseDynamicMeshComponent_GetViewModeOverridesEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BaseDynamicMeshComponent_HasOverrideRenderMaterial \ +static_assert(alignof(BaseDynamicMeshComponent_HasOverrideRenderMaterial) == 0x000004, "Wrong alignment on BaseDynamicMeshComponent_HasOverrideRenderMaterial"); \ +static_assert(sizeof(BaseDynamicMeshComponent_HasOverrideRenderMaterial) == 0x000008, "Wrong size on BaseDynamicMeshComponent_HasOverrideRenderMaterial"); \ +static_assert(offsetof(BaseDynamicMeshComponent_HasOverrideRenderMaterial, K) == 0x000000, "Member 'BaseDynamicMeshComponent_HasOverrideRenderMaterial::K' has a wrong offset!"); \ +static_assert(offsetof(BaseDynamicMeshComponent_HasOverrideRenderMaterial, ReturnValue) == 0x000004, "Member 'BaseDynamicMeshComponent_HasOverrideRenderMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseDynamicMeshComponent \ +static_assert(alignof(UBaseDynamicMeshComponent) == 0x000010, "Wrong alignment on UBaseDynamicMeshComponent"); \ +static_assert(sizeof(UBaseDynamicMeshComponent) == 0x000610, "Wrong size on UBaseDynamicMeshComponent"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, bExplicitShowWireframe) == 0x0005C8, "Member 'UBaseDynamicMeshComponent::bExplicitShowWireframe' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, WireframeColor) == 0x0005CC, "Member 'UBaseDynamicMeshComponent::WireframeColor' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, ColorMode) == 0x0005DC, "Member 'UBaseDynamicMeshComponent::ColorMode' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, ConstantColor) == 0x0005E0, "Member 'UBaseDynamicMeshComponent::ConstantColor' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, ColorSpaceMode) == 0x0005E4, "Member 'UBaseDynamicMeshComponent::ColorSpaceMode' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, bEnableFlatShading) == 0x0005E5, "Member 'UBaseDynamicMeshComponent::bEnableFlatShading' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, bEnableViewModeOverrides) == 0x0005E6, "Member 'UBaseDynamicMeshComponent::bEnableViewModeOverrides' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, OverrideRenderMaterial) == 0x0005E8, "Member 'UBaseDynamicMeshComponent::OverrideRenderMaterial' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, SecondaryRenderMaterial) == 0x0005F0, "Member 'UBaseDynamicMeshComponent::SecondaryRenderMaterial' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, bEnableRayTracing) == 0x0005F9, "Member 'UBaseDynamicMeshComponent::bEnableRayTracing' has a wrong offset!"); \ +static_assert(offsetof(UBaseDynamicMeshComponent, BaseMaterials) == 0x000600, "Member 'UBaseDynamicMeshComponent::BaseMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_ConfigureMaterialSet \ +static_assert(alignof(DynamicMeshComponent_ConfigureMaterialSet) == 0x000008, "Wrong alignment on DynamicMeshComponent_ConfigureMaterialSet"); \ +static_assert(sizeof(DynamicMeshComponent_ConfigureMaterialSet) == 0x000010, "Wrong size on DynamicMeshComponent_ConfigureMaterialSet"); \ +static_assert(offsetof(DynamicMeshComponent_ConfigureMaterialSet, NewMaterialSet) == 0x000000, "Member 'DynamicMeshComponent_ConfigureMaterialSet::NewMaterialSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_NotifyMeshVertexAttributesModified \ +static_assert(alignof(DynamicMeshComponent_NotifyMeshVertexAttributesModified) == 0x000001, "Wrong alignment on DynamicMeshComponent_NotifyMeshVertexAttributesModified"); \ +static_assert(sizeof(DynamicMeshComponent_NotifyMeshVertexAttributesModified) == 0x000004, "Wrong size on DynamicMeshComponent_NotifyMeshVertexAttributesModified"); \ +static_assert(offsetof(DynamicMeshComponent_NotifyMeshVertexAttributesModified, bPositions) == 0x000000, "Member 'DynamicMeshComponent_NotifyMeshVertexAttributesModified::bPositions' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_NotifyMeshVertexAttributesModified, bNormals) == 0x000001, "Member 'DynamicMeshComponent_NotifyMeshVertexAttributesModified::bNormals' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_NotifyMeshVertexAttributesModified, bUVs) == 0x000002, "Member 'DynamicMeshComponent_NotifyMeshVertexAttributesModified::bUVs' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_NotifyMeshVertexAttributesModified, bColors) == 0x000003, "Member 'DynamicMeshComponent_NotifyMeshVertexAttributesModified::bColors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled \ +static_assert(alignof(DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled) == 0x000001, "Wrong alignment on DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled"); \ +static_assert(sizeof(DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled) == 0x000002, "Wrong size on DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled"); \ +static_assert(offsetof(DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled, bEnabled) == 0x000000, "Member 'DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled, bImmediateUpdate) == 0x000001, "Member 'DynamicMeshComponent_SetComplexAsSimpleCollisionEnabled::bImmediateUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled \ +static_assert(alignof(DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled) == 0x000001, "Wrong alignment on DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled"); \ +static_assert(sizeof(DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled) == 0x000002, "Wrong size on DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled"); \ +static_assert(offsetof(DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled, bEnabled) == 0x000000, "Member 'DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled, bImmediateUpdate) == 0x000001, "Member 'DynamicMeshComponent_SetDeferredCollisionUpdatesEnabled::bImmediateUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_SetDynamicMesh \ +static_assert(alignof(DynamicMeshComponent_SetDynamicMesh) == 0x000008, "Wrong alignment on DynamicMeshComponent_SetDynamicMesh"); \ +static_assert(sizeof(DynamicMeshComponent_SetDynamicMesh) == 0x000008, "Wrong size on DynamicMeshComponent_SetDynamicMesh"); \ +static_assert(offsetof(DynamicMeshComponent_SetDynamicMesh, NewMesh) == 0x000000, "Member 'DynamicMeshComponent_SetDynamicMesh::NewMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_SetTangentsType \ +static_assert(alignof(DynamicMeshComponent_SetTangentsType) == 0x000001, "Wrong alignment on DynamicMeshComponent_SetTangentsType"); \ +static_assert(sizeof(DynamicMeshComponent_SetTangentsType) == 0x000001, "Wrong size on DynamicMeshComponent_SetTangentsType"); \ +static_assert(offsetof(DynamicMeshComponent_SetTangentsType, NewTangentsType) == 0x000000, "Member 'DynamicMeshComponent_SetTangentsType::NewTangentsType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_UpdateCollision \ +static_assert(alignof(DynamicMeshComponent_UpdateCollision) == 0x000001, "Wrong alignment on DynamicMeshComponent_UpdateCollision"); \ +static_assert(sizeof(DynamicMeshComponent_UpdateCollision) == 0x000001, "Wrong size on DynamicMeshComponent_UpdateCollision"); \ +static_assert(offsetof(DynamicMeshComponent_UpdateCollision, bOnlyIfPending) == 0x000000, "Member 'DynamicMeshComponent_UpdateCollision::bOnlyIfPending' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_ValidateMaterialSlots \ +static_assert(alignof(DynamicMeshComponent_ValidateMaterialSlots) == 0x000001, "Wrong alignment on DynamicMeshComponent_ValidateMaterialSlots"); \ +static_assert(sizeof(DynamicMeshComponent_ValidateMaterialSlots) == 0x000003, "Wrong size on DynamicMeshComponent_ValidateMaterialSlots"); \ +static_assert(offsetof(DynamicMeshComponent_ValidateMaterialSlots, bCreateIfMissing) == 0x000000, "Member 'DynamicMeshComponent_ValidateMaterialSlots::bCreateIfMissing' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_ValidateMaterialSlots, bDeleteExtraSlots) == 0x000001, "Member 'DynamicMeshComponent_ValidateMaterialSlots::bDeleteExtraSlots' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshComponent_ValidateMaterialSlots, ReturnValue) == 0x000002, "Member 'DynamicMeshComponent_ValidateMaterialSlots::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_GetTangentsType \ +static_assert(alignof(DynamicMeshComponent_GetTangentsType) == 0x000001, "Wrong alignment on DynamicMeshComponent_GetTangentsType"); \ +static_assert(sizeof(DynamicMeshComponent_GetTangentsType) == 0x000001, "Wrong size on DynamicMeshComponent_GetTangentsType"); \ +static_assert(offsetof(DynamicMeshComponent_GetTangentsType, ReturnValue) == 0x000000, "Member 'DynamicMeshComponent_GetTangentsType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshComponent_GetTangentsTypePure \ +static_assert(alignof(DynamicMeshComponent_GetTangentsTypePure) == 0x000001, "Wrong alignment on DynamicMeshComponent_GetTangentsTypePure"); \ +static_assert(sizeof(DynamicMeshComponent_GetTangentsTypePure) == 0x000001, "Wrong size on DynamicMeshComponent_GetTangentsTypePure"); \ +static_assert(offsetof(DynamicMeshComponent_GetTangentsTypePure, ReturnValue) == 0x000000, "Member 'DynamicMeshComponent_GetTangentsTypePure::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicMeshComponent \ +static_assert(alignof(UDynamicMeshComponent) == 0x000010, "Wrong alignment on UDynamicMeshComponent"); \ +static_assert(sizeof(UDynamicMeshComponent) == 0x000870, "Wrong size on UDynamicMeshComponent"); \ +static_assert(offsetof(UDynamicMeshComponent, MeshObject) == 0x000618, "Member 'UDynamicMeshComponent::MeshObject' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, TangentsType) == 0x000750, "Member 'UDynamicMeshComponent::TangentsType' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, CollisionType) == 0x000790, "Member 'UDynamicMeshComponent::CollisionType' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, bUseAsyncCooking) == 0x000791, "Member 'UDynamicMeshComponent::bUseAsyncCooking' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, bEnableComplexCollision) == 0x000792, "Member 'UDynamicMeshComponent::bEnableComplexCollision' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, bDeferCollisionUpdates) == 0x000793, "Member 'UDynamicMeshComponent::bDeferCollisionUpdates' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, MeshBodySetup) == 0x000798, "Member 'UDynamicMeshComponent::MeshBodySetup' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, AggGeom) == 0x0007D8, "Member 'UDynamicMeshComponent::AggGeom' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshComponent, AsyncBodySetupQueue) == 0x000850, "Member 'UDynamicMeshComponent::AsyncBodySetupQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshActor_AllocateComputeMesh \ +static_assert(alignof(DynamicMeshActor_AllocateComputeMesh) == 0x000008, "Wrong alignment on DynamicMeshActor_AllocateComputeMesh"); \ +static_assert(sizeof(DynamicMeshActor_AllocateComputeMesh) == 0x000008, "Wrong size on DynamicMeshActor_AllocateComputeMesh"); \ +static_assert(offsetof(DynamicMeshActor_AllocateComputeMesh, ReturnValue) == 0x000000, "Member 'DynamicMeshActor_AllocateComputeMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshActor_GetComputeMeshPool \ +static_assert(alignof(DynamicMeshActor_GetComputeMeshPool) == 0x000008, "Wrong alignment on DynamicMeshActor_GetComputeMeshPool"); \ +static_assert(sizeof(DynamicMeshActor_GetComputeMeshPool) == 0x000008, "Wrong size on DynamicMeshActor_GetComputeMeshPool"); \ +static_assert(offsetof(DynamicMeshActor_GetComputeMeshPool, ReturnValue) == 0x000000, "Member 'DynamicMeshActor_GetComputeMeshPool::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshActor_ReleaseComputeMesh \ +static_assert(alignof(DynamicMeshActor_ReleaseComputeMesh) == 0x000008, "Wrong alignment on DynamicMeshActor_ReleaseComputeMesh"); \ +static_assert(sizeof(DynamicMeshActor_ReleaseComputeMesh) == 0x000010, "Wrong size on DynamicMeshActor_ReleaseComputeMesh"); \ +static_assert(offsetof(DynamicMeshActor_ReleaseComputeMesh, Mesh) == 0x000000, "Member 'DynamicMeshActor_ReleaseComputeMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(DynamicMeshActor_ReleaseComputeMesh, ReturnValue) == 0x000008, "Member 'DynamicMeshActor_ReleaseComputeMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshActor_GetDynamicMeshComponent \ +static_assert(alignof(DynamicMeshActor_GetDynamicMeshComponent) == 0x000008, "Wrong alignment on DynamicMeshActor_GetDynamicMeshComponent"); \ +static_assert(sizeof(DynamicMeshActor_GetDynamicMeshComponent) == 0x000008, "Wrong size on DynamicMeshActor_GetDynamicMeshComponent"); \ +static_assert(offsetof(DynamicMeshActor_GetDynamicMeshComponent, ReturnValue) == 0x000000, "Member 'DynamicMeshActor_GetDynamicMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADynamicMeshActor \ +static_assert(alignof(ADynamicMeshActor) == 0x000008, "Wrong alignment on ADynamicMeshActor"); \ +static_assert(sizeof(ADynamicMeshActor) == 0x0002B0, "Wrong size on ADynamicMeshActor"); \ +static_assert(offsetof(ADynamicMeshActor, DynamicMeshComponent) == 0x000298, "Member 'ADynamicMeshActor::DynamicMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(ADynamicMeshActor, bEnableComputeMeshPool) == 0x0002A0, "Member 'ADynamicMeshActor::bEnableComputeMeshPool' has a wrong offset!"); \ +static_assert(offsetof(ADynamicMeshActor, DynamicMeshPool) == 0x0002A8, "Member 'ADynamicMeshActor::DynamicMeshPool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicMeshGenerator \ +static_assert(alignof(UDynamicMeshGenerator) == 0x000008, "Wrong alignment on UDynamicMeshGenerator"); \ +static_assert(sizeof(UDynamicMeshGenerator) == 0x000028, "Wrong size on UDynamicMeshGenerator"); \ + +#define DUMPER7_ASSERTS_DynamicMesh_Reset \ +static_assert(alignof(DynamicMesh_Reset) == 0x000008, "Wrong alignment on DynamicMesh_Reset"); \ +static_assert(sizeof(DynamicMesh_Reset) == 0x000008, "Wrong size on DynamicMesh_Reset"); \ +static_assert(offsetof(DynamicMesh_Reset, ReturnValue) == 0x000000, "Member 'DynamicMesh_Reset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMesh_ResetToCube \ +static_assert(alignof(DynamicMesh_ResetToCube) == 0x000008, "Wrong alignment on DynamicMesh_ResetToCube"); \ +static_assert(sizeof(DynamicMesh_ResetToCube) == 0x000008, "Wrong size on DynamicMesh_ResetToCube"); \ +static_assert(offsetof(DynamicMesh_ResetToCube, ReturnValue) == 0x000000, "Member 'DynamicMesh_ResetToCube::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMesh_GetTriangleCount \ +static_assert(alignof(DynamicMesh_GetTriangleCount) == 0x000004, "Wrong alignment on DynamicMesh_GetTriangleCount"); \ +static_assert(sizeof(DynamicMesh_GetTriangleCount) == 0x000004, "Wrong size on DynamicMesh_GetTriangleCount"); \ +static_assert(offsetof(DynamicMesh_GetTriangleCount, ReturnValue) == 0x000000, "Member 'DynamicMesh_GetTriangleCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMesh_IsEmpty \ +static_assert(alignof(DynamicMesh_IsEmpty) == 0x000001, "Wrong alignment on DynamicMesh_IsEmpty"); \ +static_assert(sizeof(DynamicMesh_IsEmpty) == 0x000001, "Wrong size on DynamicMesh_IsEmpty"); \ +static_assert(offsetof(DynamicMesh_IsEmpty, ReturnValue) == 0x000000, "Member 'DynamicMesh_IsEmpty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicMesh \ +static_assert(alignof(UDynamicMesh) == 0x000008, "Wrong alignment on UDynamicMesh"); \ +static_assert(sizeof(UDynamicMesh) == 0x0000B0, "Wrong size on UDynamicMesh"); \ +static_assert(offsetof(UDynamicMesh, MeshModifiedBPEvent) == 0x000070, "Member 'UDynamicMesh::MeshModifiedBPEvent' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMesh, MeshGenerator) == 0x0000A0, "Member 'UDynamicMesh::MeshGenerator' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMesh, bEnableMeshGenerator) == 0x0000A8, "Member 'UDynamicMesh::bEnableMeshGenerator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshPool_RequestMesh \ +static_assert(alignof(DynamicMeshPool_RequestMesh) == 0x000008, "Wrong alignment on DynamicMeshPool_RequestMesh"); \ +static_assert(sizeof(DynamicMeshPool_RequestMesh) == 0x000008, "Wrong size on DynamicMeshPool_RequestMesh"); \ +static_assert(offsetof(DynamicMeshPool_RequestMesh, ReturnValue) == 0x000000, "Member 'DynamicMeshPool_RequestMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DynamicMeshPool_ReturnMesh \ +static_assert(alignof(DynamicMeshPool_ReturnMesh) == 0x000008, "Wrong alignment on DynamicMeshPool_ReturnMesh"); \ +static_assert(sizeof(DynamicMeshPool_ReturnMesh) == 0x000008, "Wrong size on DynamicMeshPool_ReturnMesh"); \ +static_assert(offsetof(DynamicMeshPool_ReturnMesh, Mesh) == 0x000000, "Member 'DynamicMeshPool_ReturnMesh::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicMeshPool \ +static_assert(alignof(UDynamicMeshPool) == 0x000008, "Wrong alignment on UDynamicMeshPool"); \ +static_assert(sizeof(UDynamicMeshPool) == 0x000048, "Wrong size on UDynamicMeshPool"); \ +static_assert(offsetof(UDynamicMeshPool, CachedMeshes) == 0x000028, "Member 'UDynamicMeshPool::CachedMeshes' has a wrong offset!"); \ +static_assert(offsetof(UDynamicMeshPool, AllCreatedMeshes) == 0x000038, "Member 'UDynamicMeshPool::AllCreatedMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMoviePipelineDLSSSetting \ +static_assert(alignof(UMoviePipelineDLSSSetting) == 0x000008, "Wrong alignment on UMoviePipelineDLSSSetting"); \ +static_assert(sizeof(UMoviePipelineDLSSSetting) == 0x000050, "Wrong size on UMoviePipelineDLSSSetting"); \ +static_assert(offsetof(UMoviePipelineDLSSSetting, DLSSQuality) == 0x000048, "Member 'UMoviePipelineDLSSSetting::DLSSQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModelingToolsAxisFilter \ +static_assert(alignof(FModelingToolsAxisFilter) == 0x000001, "Wrong alignment on FModelingToolsAxisFilter"); \ +static_assert(sizeof(FModelingToolsAxisFilter) == 0x000003, "Wrong size on FModelingToolsAxisFilter"); \ +static_assert(offsetof(FModelingToolsAxisFilter, bAxisX) == 0x000000, "Member 'FModelingToolsAxisFilter::bAxisX' has a wrong offset!"); \ +static_assert(offsetof(FModelingToolsAxisFilter, bAxisY) == 0x000001, "Member 'FModelingToolsAxisFilter::bAxisY' has a wrong offset!"); \ +static_assert(offsetof(FModelingToolsAxisFilter, bAxisZ) == 0x000002, "Member 'FModelingToolsAxisFilter::bAxisZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModelingToolsColorChannelFilter \ +static_assert(alignof(FModelingToolsColorChannelFilter) == 0x000001, "Wrong alignment on FModelingToolsColorChannelFilter"); \ +static_assert(sizeof(FModelingToolsColorChannelFilter) == 0x000004, "Wrong size on FModelingToolsColorChannelFilter"); \ +static_assert(offsetof(FModelingToolsColorChannelFilter, bRed) == 0x000000, "Member 'FModelingToolsColorChannelFilter::bRed' has a wrong offset!"); \ +static_assert(offsetof(FModelingToolsColorChannelFilter, bGreen) == 0x000001, "Member 'FModelingToolsColorChannelFilter::bGreen' has a wrong offset!"); \ +static_assert(offsetof(FModelingToolsColorChannelFilter, bBlue) == 0x000002, "Member 'FModelingToolsColorChannelFilter::bBlue' has a wrong offset!"); \ +static_assert(offsetof(FModelingToolsColorChannelFilter, bAlpha) == 0x000003, "Member 'FModelingToolsColorChannelFilter::bAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRenderableTriangleVertex \ +static_assert(alignof(FRenderableTriangleVertex) == 0x000008, "Wrong alignment on FRenderableTriangleVertex"); \ +static_assert(sizeof(FRenderableTriangleVertex) == 0x000048, "Wrong size on FRenderableTriangleVertex"); \ +static_assert(offsetof(FRenderableTriangleVertex, Position) == 0x000000, "Member 'FRenderableTriangleVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangleVertex, UV) == 0x000018, "Member 'FRenderableTriangleVertex::UV' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangleVertex, Normal) == 0x000028, "Member 'FRenderableTriangleVertex::Normal' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangleVertex, Color) == 0x000040, "Member 'FRenderableTriangleVertex::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRenderableTriangle \ +static_assert(alignof(FRenderableTriangle) == 0x000008, "Wrong alignment on FRenderableTriangle"); \ +static_assert(sizeof(FRenderableTriangle) == 0x0000E0, "Wrong size on FRenderableTriangle"); \ +static_assert(offsetof(FRenderableTriangle, Material) == 0x000000, "Member 'FRenderableTriangle::Material' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangle, Vertex0) == 0x000008, "Member 'FRenderableTriangle::Vertex0' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangle, Vertex1) == 0x000050, "Member 'FRenderableTriangle::Vertex1' has a wrong offset!"); \ +static_assert(offsetof(FRenderableTriangle, Vertex2) == 0x000098, "Member 'FRenderableTriangle::Vertex2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateMeshObjectParams \ +static_assert(alignof(FCreateMeshObjectParams) == 0x000010, "Wrong alignment on FCreateMeshObjectParams"); \ +static_assert(sizeof(FCreateMeshObjectParams) == 0x000670, "Wrong size on FCreateMeshObjectParams"); \ +static_assert(offsetof(FCreateMeshObjectParams, SourceComponent) == 0x000000, "Member 'FCreateMeshObjectParams::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, TypeHint) == 0x000008, "Member 'FCreateMeshObjectParams::TypeHint' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, TypeHintClass) == 0x000010, "Member 'FCreateMeshObjectParams::TypeHintClass' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, TypeHintExtended) == 0x000018, "Member 'FCreateMeshObjectParams::TypeHintExtended' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, TargetWorld) == 0x000020, "Member 'FCreateMeshObjectParams::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, Transform) == 0x000030, "Member 'FCreateMeshObjectParams::Transform' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, BaseName) == 0x000090, "Member 'FCreateMeshObjectParams::BaseName' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, Materials) == 0x0000A0, "Member 'FCreateMeshObjectParams::Materials' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, AssetMaterials) == 0x0000B0, "Member 'FCreateMeshObjectParams::AssetMaterials' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bEnableCollision) == 0x0000C0, "Member 'FCreateMeshObjectParams::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, CollisionMode) == 0x0000C1, "Member 'FCreateMeshObjectParams::CollisionMode' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bEnableRaytracingSupport) == 0x000120, "Member 'FCreateMeshObjectParams::bEnableRaytracingSupport' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bGenerateLightmapUVs) == 0x000121, "Member 'FCreateMeshObjectParams::bGenerateLightmapUVs' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bEnableRecomputeNormals) == 0x000122, "Member 'FCreateMeshObjectParams::bEnableRecomputeNormals' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bEnableRecomputeTangents) == 0x000123, "Member 'FCreateMeshObjectParams::bEnableRecomputeTangents' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, bEnableNanite) == 0x000124, "Member 'FCreateMeshObjectParams::bEnableNanite' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, NaniteProxyTrianglePercent) == 0x000128, "Member 'FCreateMeshObjectParams::NaniteProxyTrianglePercent' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectParams, NaniteSettings) == 0x000130, "Member 'FCreateMeshObjectParams::NaniteSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateMeshObjectResult \ +static_assert(alignof(FCreateMeshObjectResult) == 0x000008, "Wrong alignment on FCreateMeshObjectResult"); \ +static_assert(sizeof(FCreateMeshObjectResult) == 0x000020, "Wrong size on FCreateMeshObjectResult"); \ +static_assert(offsetof(FCreateMeshObjectResult, ResultCode) == 0x000000, "Member 'FCreateMeshObjectResult::ResultCode' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectResult, NewActor) == 0x000008, "Member 'FCreateMeshObjectResult::NewActor' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectResult, NewComponent) == 0x000010, "Member 'FCreateMeshObjectResult::NewComponent' has a wrong offset!"); \ +static_assert(offsetof(FCreateMeshObjectResult, NewAsset) == 0x000018, "Member 'FCreateMeshObjectResult::NewAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateTextureObjectParams \ +static_assert(alignof(FCreateTextureObjectParams) == 0x000008, "Wrong alignment on FCreateTextureObjectParams"); \ +static_assert(sizeof(FCreateTextureObjectParams) == 0x000030, "Wrong size on FCreateTextureObjectParams"); \ +static_assert(offsetof(FCreateTextureObjectParams, TypeHintExtended) == 0x000000, "Member 'FCreateTextureObjectParams::TypeHintExtended' has a wrong offset!"); \ +static_assert(offsetof(FCreateTextureObjectParams, TargetWorld) == 0x000008, "Member 'FCreateTextureObjectParams::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(FCreateTextureObjectParams, StoreRelativeToObject) == 0x000010, "Member 'FCreateTextureObjectParams::StoreRelativeToObject' has a wrong offset!"); \ +static_assert(offsetof(FCreateTextureObjectParams, BaseName) == 0x000018, "Member 'FCreateTextureObjectParams::BaseName' has a wrong offset!"); \ +static_assert(offsetof(FCreateTextureObjectParams, GeneratedTransientTexture) == 0x000028, "Member 'FCreateTextureObjectParams::GeneratedTransientTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateTextureObjectResult \ +static_assert(alignof(FCreateTextureObjectResult) == 0x000008, "Wrong alignment on FCreateTextureObjectResult"); \ +static_assert(sizeof(FCreateTextureObjectResult) == 0x000010, "Wrong size on FCreateTextureObjectResult"); \ +static_assert(offsetof(FCreateTextureObjectResult, ResultCode) == 0x000000, "Member 'FCreateTextureObjectResult::ResultCode' has a wrong offset!"); \ +static_assert(offsetof(FCreateTextureObjectResult, NewAsset) == 0x000008, "Member 'FCreateTextureObjectResult::NewAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateMaterialObjectParams \ +static_assert(alignof(FCreateMaterialObjectParams) == 0x000008, "Wrong alignment on FCreateMaterialObjectParams"); \ +static_assert(sizeof(FCreateMaterialObjectParams) == 0x000028, "Wrong size on FCreateMaterialObjectParams"); \ +static_assert(offsetof(FCreateMaterialObjectParams, TargetWorld) == 0x000000, "Member 'FCreateMaterialObjectParams::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(FCreateMaterialObjectParams, StoreRelativeToObject) == 0x000008, "Member 'FCreateMaterialObjectParams::StoreRelativeToObject' has a wrong offset!"); \ +static_assert(offsetof(FCreateMaterialObjectParams, BaseName) == 0x000010, "Member 'FCreateMaterialObjectParams::BaseName' has a wrong offset!"); \ +static_assert(offsetof(FCreateMaterialObjectParams, MaterialToDuplicate) == 0x000020, "Member 'FCreateMaterialObjectParams::MaterialToDuplicate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateMaterialObjectResult \ +static_assert(alignof(FCreateMaterialObjectResult) == 0x000008, "Wrong alignment on FCreateMaterialObjectResult"); \ +static_assert(sizeof(FCreateMaterialObjectResult) == 0x000010, "Wrong size on FCreateMaterialObjectResult"); \ +static_assert(offsetof(FCreateMaterialObjectResult, ResultCode) == 0x000000, "Member 'FCreateMaterialObjectResult::ResultCode' has a wrong offset!"); \ +static_assert(offsetof(FCreateMaterialObjectResult, NewAsset) == 0x000008, "Member 'FCreateMaterialObjectResult::NewAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateActorParams \ +static_assert(alignof(FCreateActorParams) == 0x000010, "Wrong alignment on FCreateActorParams"); \ +static_assert(sizeof(FCreateActorParams) == 0x000090, "Wrong size on FCreateActorParams"); \ +static_assert(offsetof(FCreateActorParams, TargetWorld) == 0x000000, "Member 'FCreateActorParams::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(FCreateActorParams, BaseName) == 0x000008, "Member 'FCreateActorParams::BaseName' has a wrong offset!"); \ +static_assert(offsetof(FCreateActorParams, Transform) == 0x000020, "Member 'FCreateActorParams::Transform' has a wrong offset!"); \ +static_assert(offsetof(FCreateActorParams, TemplateActor) == 0x000080, "Member 'FCreateActorParams::TemplateActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateActorResult \ +static_assert(alignof(FCreateActorResult) == 0x000008, "Wrong alignment on FCreateActorResult"); \ +static_assert(sizeof(FCreateActorResult) == 0x000010, "Wrong size on FCreateActorResult"); \ +static_assert(offsetof(FCreateActorResult, ResultCode) == 0x000000, "Member 'FCreateActorResult::ResultCode' has a wrong offset!"); \ +static_assert(offsetof(FCreateActorResult, NewActor) == 0x000008, "Member 'FCreateActorResult::NewActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshTopologySelectionMechanic \ +static_assert(alignof(UMeshTopologySelectionMechanic) == 0x000010, "Wrong alignment on UMeshTopologySelectionMechanic"); \ +static_assert(sizeof(UMeshTopologySelectionMechanic) == 0x000AF0, "Wrong size on UMeshTopologySelectionMechanic"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, Properties) == 0x000078, "Member 'UMeshTopologySelectionMechanic::Properties' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, HoverBehavior) == 0x0000E0, "Member 'UMeshTopologySelectionMechanic::HoverBehavior' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, ClickOrDragBehavior) == 0x0000E8, "Member 'UMeshTopologySelectionMechanic::ClickOrDragBehavior' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, MarqueeMechanic) == 0x0000F0, "Member 'UMeshTopologySelectionMechanic::MarqueeMechanic' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, PreviewGeometryActor) == 0x0006C0, "Member 'UMeshTopologySelectionMechanic::PreviewGeometryActor' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, DrawnTriangleSetComponent) == 0x0006C8, "Member 'UMeshTopologySelectionMechanic::DrawnTriangleSetComponent' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanic, HighlightedFaceMaterial) == 0x000720, "Member 'UMeshTopologySelectionMechanic::HighlightedFaceMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBoundarySelectionMechanic \ +static_assert(alignof(UBoundarySelectionMechanic) == 0x000010, "Wrong alignment on UBoundarySelectionMechanic"); \ +static_assert(sizeof(UBoundarySelectionMechanic) == 0x000AF0, "Wrong size on UBoundarySelectionMechanic"); \ + +#define DUMPER7_ASSERTS_IDynamicMeshCommitter \ +static_assert(alignof(IDynamicMeshCommitter) == 0x000001, "Wrong alignment on IDynamicMeshCommitter"); \ +static_assert(sizeof(IDynamicMeshCommitter) == 0x000001, "Wrong size on IDynamicMeshCommitter"); \ + +#define DUMPER7_ASSERTS_IDynamicMeshProvider \ +static_assert(alignof(IDynamicMeshProvider) == 0x000001, "Wrong alignment on IDynamicMeshProvider"); \ +static_assert(sizeof(IDynamicMeshProvider) == 0x000001, "Wrong size on IDynamicMeshProvider"); \ + +#define DUMPER7_ASSERTS_IPersistentDynamicMeshSource \ +static_assert(alignof(IPersistentDynamicMeshSource) == 0x000001, "Wrong alignment on IPersistentDynamicMeshSource"); \ +static_assert(sizeof(IPersistentDynamicMeshSource) == 0x000001, "Wrong size on IPersistentDynamicMeshSource"); \ + +#define DUMPER7_ASSERTS_UGeometrySelectionVisualizationProperties \ +static_assert(alignof(UGeometrySelectionVisualizationProperties) == 0x000008, "Wrong alignment on UGeometrySelectionVisualizationProperties"); \ +static_assert(sizeof(UGeometrySelectionVisualizationProperties) == 0x000108, "Wrong size on UGeometrySelectionVisualizationProperties"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bEnableShowTriangleROIBorder) == 0x0000A8, "Member 'UGeometrySelectionVisualizationProperties::bEnableShowTriangleROIBorder' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bEnableShowEdgeSelectionVertices) == 0x0000A9, "Member 'UGeometrySelectionVisualizationProperties::bEnableShowEdgeSelectionVertices' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, SelectionElementType) == 0x0000AA, "Member 'UGeometrySelectionVisualizationProperties::SelectionElementType' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, SelectionTopologyType) == 0x0000AB, "Member 'UGeometrySelectionVisualizationProperties::SelectionTopologyType' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bShowSelection) == 0x0000AC, "Member 'UGeometrySelectionVisualizationProperties::bShowSelection' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bShowTriangleROIBorder) == 0x0000AD, "Member 'UGeometrySelectionVisualizationProperties::bShowTriangleROIBorder' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bShowHidden) == 0x0000AE, "Member 'UGeometrySelectionVisualizationProperties::bShowHidden' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, bShowEdgeSelectionVertices) == 0x0000AF, "Member 'UGeometrySelectionVisualizationProperties::bShowEdgeSelectionVertices' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, LineThickness) == 0x0000B0, "Member 'UGeometrySelectionVisualizationProperties::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, PointSize) == 0x0000B4, "Member 'UGeometrySelectionVisualizationProperties::PointSize' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, DepthBias) == 0x0000B8, "Member 'UGeometrySelectionVisualizationProperties::DepthBias' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, FaceColor) == 0x0000BC, "Member 'UGeometrySelectionVisualizationProperties::FaceColor' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, LineColor) == 0x0000C0, "Member 'UGeometrySelectionVisualizationProperties::LineColor' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, PointColor) == 0x0000C4, "Member 'UGeometrySelectionVisualizationProperties::PointColor' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, TriangleROIBorderColor) == 0x0000C8, "Member 'UGeometrySelectionVisualizationProperties::TriangleROIBorderColor' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, TriangleMaterial) == 0x0000D0, "Member 'UGeometrySelectionVisualizationProperties::TriangleMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, LineMaterial) == 0x0000D8, "Member 'UGeometrySelectionVisualizationProperties::LineMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, PointMaterial) == 0x0000E0, "Member 'UGeometrySelectionVisualizationProperties::PointMaterial' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, TriangleMaterialShowingHidden) == 0x0000E8, "Member 'UGeometrySelectionVisualizationProperties::TriangleMaterialShowingHidden' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, LineMaterialShowingHidden) == 0x0000F0, "Member 'UGeometrySelectionVisualizationProperties::LineMaterialShowingHidden' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionVisualizationProperties, PointMaterialShowingHidden) == 0x0000F8, "Member 'UGeometrySelectionVisualizationProperties::PointMaterialShowingHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractiveToolActivity \ +static_assert(alignof(UInteractiveToolActivity) == 0x000008, "Wrong alignment on UInteractiveToolActivity"); \ +static_assert(sizeof(UInteractiveToolActivity) == 0x000030, "Wrong size on UInteractiveToolActivity"); \ + +#define DUMPER7_ASSERTS_IToolActivityHost \ +static_assert(alignof(IToolActivityHost) == 0x000001, "Wrong alignment on IToolActivityHost"); \ +static_assert(sizeof(IToolActivityHost) == 0x000001, "Wrong size on IToolActivityHost"); \ + +#define DUMPER7_ASSERTS_UMeshTopologySelectionMechanicProperties \ +static_assert(alignof(UMeshTopologySelectionMechanicProperties) == 0x000008, "Wrong alignment on UMeshTopologySelectionMechanicProperties"); \ +static_assert(sizeof(UMeshTopologySelectionMechanicProperties) == 0x0000C0, "Wrong size on UMeshTopologySelectionMechanicProperties"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectVertices) == 0x0000A8, "Member 'UMeshTopologySelectionMechanicProperties::bSelectVertices' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectEdges) == 0x0000A9, "Member 'UMeshTopologySelectionMechanicProperties::bSelectEdges' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectFaces) == 0x0000AA, "Member 'UMeshTopologySelectionMechanicProperties::bSelectFaces' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectEdgeLoops) == 0x0000AB, "Member 'UMeshTopologySelectionMechanicProperties::bSelectEdgeLoops' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectEdgeRings) == 0x0000AC, "Member 'UMeshTopologySelectionMechanicProperties::bSelectEdgeRings' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bHitBackFaces) == 0x0000AD, "Member 'UMeshTopologySelectionMechanicProperties::bHitBackFaces' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bEnableMarquee) == 0x0000AE, "Member 'UMeshTopologySelectionMechanicProperties::bEnableMarquee' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bMarqueeIgnoreOcclusion) == 0x0000AF, "Member 'UMeshTopologySelectionMechanicProperties::bMarqueeIgnoreOcclusion' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bPreferProjectedElement) == 0x0000B0, "Member 'UMeshTopologySelectionMechanicProperties::bPreferProjectedElement' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bSelectDownRay) == 0x0000B1, "Member 'UMeshTopologySelectionMechanicProperties::bSelectDownRay' has a wrong offset!"); \ +static_assert(offsetof(UMeshTopologySelectionMechanicProperties, bIgnoreOcclusion) == 0x0000B2, "Member 'UMeshTopologySelectionMechanicProperties::bIgnoreOcclusion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometrySelectionEditCommandArguments \ +static_assert(alignof(UGeometrySelectionEditCommandArguments) == 0x000008, "Wrong alignment on UGeometrySelectionEditCommandArguments"); \ +static_assert(sizeof(UGeometrySelectionEditCommandArguments) == 0x000050, "Wrong size on UGeometrySelectionEditCommandArguments"); \ + +#define DUMPER7_ASSERTS_UGeometrySelectionEditCommandResult \ +static_assert(alignof(UGeometrySelectionEditCommandResult) == 0x000008, "Wrong alignment on UGeometrySelectionEditCommandResult"); \ +static_assert(sizeof(UGeometrySelectionEditCommandResult) == 0x0000A0, "Wrong size on UGeometrySelectionEditCommandResult"); \ + +#define DUMPER7_ASSERTS_UGeometrySelectionEditCommand \ +static_assert(alignof(UGeometrySelectionEditCommand) == 0x000008, "Wrong alignment on UGeometrySelectionEditCommand"); \ +static_assert(sizeof(UGeometrySelectionEditCommand) == 0x000028, "Wrong size on UGeometrySelectionEditCommand"); \ + +#define DUMPER7_ASSERTS_UVoxelProperties \ +static_assert(alignof(UVoxelProperties) == 0x000008, "Wrong alignment on UVoxelProperties"); \ +static_assert(sizeof(UVoxelProperties) == 0x0000C0, "Wrong size on UVoxelProperties"); \ +static_assert(offsetof(UVoxelProperties, VoxelCount) == 0x0000A8, "Member 'UVoxelProperties::VoxelCount' has a wrong offset!"); \ +static_assert(offsetof(UVoxelProperties, bAutoSimplify) == 0x0000AC, "Member 'UVoxelProperties::bAutoSimplify' has a wrong offset!"); \ +static_assert(offsetof(UVoxelProperties, bRemoveInternalSurfaces) == 0x0000AD, "Member 'UVoxelProperties::bRemoveInternalSurfaces' has a wrong offset!"); \ +static_assert(offsetof(UVoxelProperties, SimplifyMaxErrorFactor) == 0x0000B0, "Member 'UVoxelProperties::SimplifyMaxErrorFactor' has a wrong offset!"); \ +static_assert(offsetof(UVoxelProperties, CubeRootMinComponentVolume) == 0x0000B8, "Member 'UVoxelProperties::CubeRootMinComponentVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiSelectionMeshEditingToolBuilder \ +static_assert(alignof(UMultiSelectionMeshEditingToolBuilder) == 0x000008, "Wrong alignment on UMultiSelectionMeshEditingToolBuilder"); \ +static_assert(sizeof(UMultiSelectionMeshEditingToolBuilder) == 0x000028, "Wrong size on UMultiSelectionMeshEditingToolBuilder"); \ + +#define DUMPER7_ASSERTS_UBaseCreateFromSelectedToolBuilder \ +static_assert(alignof(UBaseCreateFromSelectedToolBuilder) == 0x000008, "Wrong alignment on UBaseCreateFromSelectedToolBuilder"); \ +static_assert(sizeof(UBaseCreateFromSelectedToolBuilder) == 0x000028, "Wrong size on UBaseCreateFromSelectedToolBuilder"); \ + +#define DUMPER7_ASSERTS_UOnAcceptHandleSourcesPropertiesBase \ +static_assert(alignof(UOnAcceptHandleSourcesPropertiesBase) == 0x000008, "Wrong alignment on UOnAcceptHandleSourcesPropertiesBase"); \ +static_assert(sizeof(UOnAcceptHandleSourcesPropertiesBase) == 0x0000A8, "Wrong size on UOnAcceptHandleSourcesPropertiesBase"); \ + +#define DUMPER7_ASSERTS_UOnAcceptHandleSourcesProperties \ +static_assert(alignof(UOnAcceptHandleSourcesProperties) == 0x000008, "Wrong alignment on UOnAcceptHandleSourcesProperties"); \ +static_assert(sizeof(UOnAcceptHandleSourcesProperties) == 0x0000B0, "Wrong size on UOnAcceptHandleSourcesProperties"); \ +static_assert(offsetof(UOnAcceptHandleSourcesProperties, HandleInputs) == 0x0000A8, "Member 'UOnAcceptHandleSourcesProperties::HandleInputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseCreateFromSelectedHandleSourceProperties \ +static_assert(alignof(UBaseCreateFromSelectedHandleSourceProperties) == 0x000008, "Wrong alignment on UBaseCreateFromSelectedHandleSourceProperties"); \ +static_assert(sizeof(UBaseCreateFromSelectedHandleSourceProperties) == 0x0000D8, "Wrong size on UBaseCreateFromSelectedHandleSourceProperties"); \ +static_assert(offsetof(UBaseCreateFromSelectedHandleSourceProperties, OutputWriteTo) == 0x0000B0, "Member 'UBaseCreateFromSelectedHandleSourceProperties::OutputWriteTo' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedHandleSourceProperties, OutputNewName) == 0x0000B8, "Member 'UBaseCreateFromSelectedHandleSourceProperties::OutputNewName' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedHandleSourceProperties, OutputExistingName) == 0x0000C8, "Member 'UBaseCreateFromSelectedHandleSourceProperties::OutputExistingName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTransformInputsToolProperties \ +static_assert(alignof(UTransformInputsToolProperties) == 0x000008, "Wrong alignment on UTransformInputsToolProperties"); \ +static_assert(sizeof(UTransformInputsToolProperties) == 0x0000B0, "Wrong size on UTransformInputsToolProperties"); \ +static_assert(offsetof(UTransformInputsToolProperties, bShowTransformGizmo) == 0x0000A8, "Member 'UTransformInputsToolProperties::bShowTransformGizmo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiSelectionMeshEditingTool \ +static_assert(alignof(UMultiSelectionMeshEditingTool) == 0x000008, "Wrong alignment on UMultiSelectionMeshEditingTool"); \ +static_assert(sizeof(UMultiSelectionMeshEditingTool) == 0x0000C0, "Wrong size on UMultiSelectionMeshEditingTool"); \ +static_assert(offsetof(UMultiSelectionMeshEditingTool, TargetWorld) == 0x0000B8, "Member 'UMultiSelectionMeshEditingTool::TargetWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseCreateFromSelectedTool \ +static_assert(alignof(UBaseCreateFromSelectedTool) == 0x000008, "Wrong alignment on UBaseCreateFromSelectedTool"); \ +static_assert(sizeof(UBaseCreateFromSelectedTool) == 0x000108, "Wrong size on UBaseCreateFromSelectedTool"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, TransformProperties) == 0x0000C8, "Member 'UBaseCreateFromSelectedTool::TransformProperties' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, OutputTypeProperties) == 0x0000D0, "Member 'UBaseCreateFromSelectedTool::OutputTypeProperties' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, HandleSourcesProperties) == 0x0000D8, "Member 'UBaseCreateFromSelectedTool::HandleSourcesProperties' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, Preview) == 0x0000E0, "Member 'UBaseCreateFromSelectedTool::Preview' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, TransformProxies) == 0x0000E8, "Member 'UBaseCreateFromSelectedTool::TransformProxies' has a wrong offset!"); \ +static_assert(offsetof(UBaseCreateFromSelectedTool, TransformGizmos) == 0x0000F8, "Member 'UBaseCreateFromSelectedTool::TransformGizmos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseMeshProcessingToolBuilder \ +static_assert(alignof(UBaseMeshProcessingToolBuilder) == 0x000008, "Wrong alignment on UBaseMeshProcessingToolBuilder"); \ +static_assert(sizeof(UBaseMeshProcessingToolBuilder) == 0x000028, "Wrong size on UBaseMeshProcessingToolBuilder"); \ + +#define DUMPER7_ASSERTS_UBaseMeshProcessingTool \ +static_assert(alignof(UBaseMeshProcessingTool) == 0x000010, "Wrong alignment on UBaseMeshProcessingTool"); \ +static_assert(sizeof(UBaseMeshProcessingTool) == 0x000410, "Wrong size on UBaseMeshProcessingTool"); \ +static_assert(offsetof(UBaseMeshProcessingTool, Preview) == 0x0000D0, "Member 'UBaseMeshProcessingTool::Preview' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBaseVoxelTool \ +static_assert(alignof(UBaseVoxelTool) == 0x000008, "Wrong alignment on UBaseVoxelTool"); \ +static_assert(sizeof(UBaseVoxelTool) == 0x000120, "Wrong size on UBaseVoxelTool"); \ +static_assert(offsetof(UBaseVoxelTool, VoxProperties) == 0x000108, "Member 'UBaseVoxelTool::VoxProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshSurfacePointMeshEditingToolBuilder \ +static_assert(alignof(UMeshSurfacePointMeshEditingToolBuilder) == 0x000008, "Wrong alignment on UMeshSurfacePointMeshEditingToolBuilder"); \ +static_assert(sizeof(UMeshSurfacePointMeshEditingToolBuilder) == 0x000030, "Wrong size on UMeshSurfacePointMeshEditingToolBuilder"); \ + +#define DUMPER7_ASSERTS_USingleSelectionMeshEditingToolBuilder \ +static_assert(alignof(USingleSelectionMeshEditingToolBuilder) == 0x000008, "Wrong alignment on USingleSelectionMeshEditingToolBuilder"); \ +static_assert(sizeof(USingleSelectionMeshEditingToolBuilder) == 0x000028, "Wrong size on USingleSelectionMeshEditingToolBuilder"); \ + +#define DUMPER7_ASSERTS_USingleSelectionMeshEditingTool \ +static_assert(alignof(USingleSelectionMeshEditingTool) == 0x000008, "Wrong alignment on USingleSelectionMeshEditingTool"); \ +static_assert(sizeof(USingleSelectionMeshEditingTool) == 0x0000C0, "Wrong size on USingleSelectionMeshEditingTool"); \ +static_assert(offsetof(USingleSelectionMeshEditingTool, TargetWorld) == 0x0000B0, "Member 'USingleSelectionMeshEditingTool::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(USingleSelectionMeshEditingTool, InputSelection) == 0x0000B8, "Member 'USingleSelectionMeshEditingTool::InputSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USingleTargetWithSelectionToolBuilder \ +static_assert(alignof(USingleTargetWithSelectionToolBuilder) == 0x000008, "Wrong alignment on USingleTargetWithSelectionToolBuilder"); \ +static_assert(sizeof(USingleTargetWithSelectionToolBuilder) == 0x000028, "Wrong size on USingleTargetWithSelectionToolBuilder"); \ + +#define DUMPER7_ASSERTS_USingleTargetWithSelectionTool \ +static_assert(alignof(USingleTargetWithSelectionTool) == 0x000008, "Wrong alignment on USingleTargetWithSelectionTool"); \ +static_assert(sizeof(USingleTargetWithSelectionTool) == 0x000128, "Wrong size on USingleTargetWithSelectionTool"); \ +static_assert(offsetof(USingleTargetWithSelectionTool, TargetWorld) == 0x0000B0, "Member 'USingleTargetWithSelectionTool::TargetWorld' has a wrong offset!"); \ +static_assert(offsetof(USingleTargetWithSelectionTool, GeometrySelectionVizProperties) == 0x000118, "Member 'USingleTargetWithSelectionTool::GeometrySelectionVizProperties' has a wrong offset!"); \ +static_assert(offsetof(USingleTargetWithSelectionTool, GeometrySelectionViz) == 0x000120, "Member 'USingleTargetWithSelectionTool::GeometrySelectionViz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDynamicMeshReplacementChangeTarget \ +static_assert(alignof(UDynamicMeshReplacementChangeTarget) == 0x000008, "Wrong alignment on UDynamicMeshReplacementChangeTarget"); \ +static_assert(sizeof(UDynamicMeshReplacementChangeTarget) == 0x000058, "Wrong size on UDynamicMeshReplacementChangeTarget"); \ + +#define DUMPER7_ASSERTS_OctreeDynamicMeshComponent_SetDynamicMesh \ +static_assert(alignof(OctreeDynamicMeshComponent_SetDynamicMesh) == 0x000008, "Wrong alignment on OctreeDynamicMeshComponent_SetDynamicMesh"); \ +static_assert(sizeof(OctreeDynamicMeshComponent_SetDynamicMesh) == 0x000008, "Wrong size on OctreeDynamicMeshComponent_SetDynamicMesh"); \ +static_assert(offsetof(OctreeDynamicMeshComponent_SetDynamicMesh, NewMesh) == 0x000000, "Member 'OctreeDynamicMeshComponent_SetDynamicMesh::NewMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOctreeDynamicMeshComponent \ +static_assert(alignof(UOctreeDynamicMeshComponent) == 0x000010, "Wrong alignment on UOctreeDynamicMeshComponent"); \ +static_assert(sizeof(UOctreeDynamicMeshComponent) == 0x000730, "Wrong size on UOctreeDynamicMeshComponent"); \ +static_assert(offsetof(UOctreeDynamicMeshComponent, MeshObject) == 0x000670, "Member 'UOctreeDynamicMeshComponent::MeshObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULineSetComponent \ +static_assert(alignof(ULineSetComponent) == 0x000010, "Wrong alignment on ULineSetComponent"); \ +static_assert(sizeof(ULineSetComponent) == 0x000630, "Wrong size on ULineSetComponent"); \ +static_assert(offsetof(ULineSetComponent, LineMaterial) == 0x0005A8, "Member 'ULineSetComponent::LineMaterial' has a wrong offset!"); \ +static_assert(offsetof(ULineSetComponent, Bounds) == 0x0005B0, "Member 'ULineSetComponent::Bounds' has a wrong offset!"); \ +static_assert(offsetof(ULineSetComponent, bBoundsDirty) == 0x0005E8, "Member 'ULineSetComponent::bBoundsDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshElementsVisualizerProperties \ +static_assert(alignof(UMeshElementsVisualizerProperties) == 0x000008, "Wrong alignment on UMeshElementsVisualizerProperties"); \ +static_assert(sizeof(UMeshElementsVisualizerProperties) == 0x0000D8, "Wrong size on UMeshElementsVisualizerProperties"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bVisible) == 0x0000A8, "Member 'UMeshElementsVisualizerProperties::bVisible' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowWireframe) == 0x0000A9, "Member 'UMeshElementsVisualizerProperties::bShowWireframe' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowBorders) == 0x0000AA, "Member 'UMeshElementsVisualizerProperties::bShowBorders' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowUVSeams) == 0x0000AB, "Member 'UMeshElementsVisualizerProperties::bShowUVSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowNormalSeams) == 0x0000AC, "Member 'UMeshElementsVisualizerProperties::bShowNormalSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowTangentSeams) == 0x0000AD, "Member 'UMeshElementsVisualizerProperties::bShowTangentSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bShowColorSeams) == 0x0000AE, "Member 'UMeshElementsVisualizerProperties::bShowColorSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, ThicknessScale) == 0x0000B0, "Member 'UMeshElementsVisualizerProperties::ThicknessScale' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, WireframeColor) == 0x0000B4, "Member 'UMeshElementsVisualizerProperties::WireframeColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, BoundaryEdgeColor) == 0x0000B8, "Member 'UMeshElementsVisualizerProperties::BoundaryEdgeColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, UVSeamColor) == 0x0000BC, "Member 'UMeshElementsVisualizerProperties::UVSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, NormalSeamColor) == 0x0000C0, "Member 'UMeshElementsVisualizerProperties::NormalSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, TangentSeamColor) == 0x0000C4, "Member 'UMeshElementsVisualizerProperties::TangentSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, ColorSeamColor) == 0x0000C8, "Member 'UMeshElementsVisualizerProperties::ColorSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, DepthBias) == 0x0000CC, "Member 'UMeshElementsVisualizerProperties::DepthBias' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizerProperties, bAdjustDepthBiasUsingMeshSize) == 0x0000D0, "Member 'UMeshElementsVisualizerProperties::bAdjustDepthBiasUsingMeshSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_AddLineSet \ +static_assert(alignof(PreviewGeometry_AddLineSet) == 0x000008, "Wrong alignment on PreviewGeometry_AddLineSet"); \ +static_assert(sizeof(PreviewGeometry_AddLineSet) == 0x000018, "Wrong size on PreviewGeometry_AddLineSet"); \ +static_assert(offsetof(PreviewGeometry_AddLineSet, LineSetIdentifier) == 0x000000, "Member 'PreviewGeometry_AddLineSet::LineSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_AddLineSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_AddLineSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_AddPointSet \ +static_assert(alignof(PreviewGeometry_AddPointSet) == 0x000008, "Wrong alignment on PreviewGeometry_AddPointSet"); \ +static_assert(sizeof(PreviewGeometry_AddPointSet) == 0x000018, "Wrong size on PreviewGeometry_AddPointSet"); \ +static_assert(offsetof(PreviewGeometry_AddPointSet, PointSetIdentifier) == 0x000000, "Member 'PreviewGeometry_AddPointSet::PointSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_AddPointSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_AddPointSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_AddTriangleSet \ +static_assert(alignof(PreviewGeometry_AddTriangleSet) == 0x000008, "Wrong alignment on PreviewGeometry_AddTriangleSet"); \ +static_assert(sizeof(PreviewGeometry_AddTriangleSet) == 0x000018, "Wrong size on PreviewGeometry_AddTriangleSet"); \ +static_assert(offsetof(PreviewGeometry_AddTriangleSet, TriangleSetIdentifier) == 0x000000, "Member 'PreviewGeometry_AddTriangleSet::TriangleSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_AddTriangleSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_AddTriangleSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_CreateInWorld \ +static_assert(alignof(PreviewGeometry_CreateInWorld) == 0x000010, "Wrong alignment on PreviewGeometry_CreateInWorld"); \ +static_assert(sizeof(PreviewGeometry_CreateInWorld) == 0x000070, "Wrong size on PreviewGeometry_CreateInWorld"); \ +static_assert(offsetof(PreviewGeometry_CreateInWorld, World) == 0x000000, "Member 'PreviewGeometry_CreateInWorld::World' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_CreateInWorld, WithTransform) == 0x000010, "Member 'PreviewGeometry_CreateInWorld::WithTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_FindLineSet \ +static_assert(alignof(PreviewGeometry_FindLineSet) == 0x000008, "Wrong alignment on PreviewGeometry_FindLineSet"); \ +static_assert(sizeof(PreviewGeometry_FindLineSet) == 0x000018, "Wrong size on PreviewGeometry_FindLineSet"); \ +static_assert(offsetof(PreviewGeometry_FindLineSet, LineSetIdentifier) == 0x000000, "Member 'PreviewGeometry_FindLineSet::LineSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_FindLineSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_FindLineSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_FindPointSet \ +static_assert(alignof(PreviewGeometry_FindPointSet) == 0x000008, "Wrong alignment on PreviewGeometry_FindPointSet"); \ +static_assert(sizeof(PreviewGeometry_FindPointSet) == 0x000018, "Wrong size on PreviewGeometry_FindPointSet"); \ +static_assert(offsetof(PreviewGeometry_FindPointSet, PointSetIdentifier) == 0x000000, "Member 'PreviewGeometry_FindPointSet::PointSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_FindPointSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_FindPointSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_FindTriangleSet \ +static_assert(alignof(PreviewGeometry_FindTriangleSet) == 0x000008, "Wrong alignment on PreviewGeometry_FindTriangleSet"); \ +static_assert(sizeof(PreviewGeometry_FindTriangleSet) == 0x000018, "Wrong size on PreviewGeometry_FindTriangleSet"); \ +static_assert(offsetof(PreviewGeometry_FindTriangleSet, TriangleSetIdentifier) == 0x000000, "Member 'PreviewGeometry_FindTriangleSet::TriangleSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_FindTriangleSet, ReturnValue) == 0x000010, "Member 'PreviewGeometry_FindTriangleSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_RemoveAllLineSets \ +static_assert(alignof(PreviewGeometry_RemoveAllLineSets) == 0x000001, "Wrong alignment on PreviewGeometry_RemoveAllLineSets"); \ +static_assert(sizeof(PreviewGeometry_RemoveAllLineSets) == 0x000001, "Wrong size on PreviewGeometry_RemoveAllLineSets"); \ +static_assert(offsetof(PreviewGeometry_RemoveAllLineSets, bDestroy) == 0x000000, "Member 'PreviewGeometry_RemoveAllLineSets::bDestroy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_RemoveAllPointSets \ +static_assert(alignof(PreviewGeometry_RemoveAllPointSets) == 0x000001, "Wrong alignment on PreviewGeometry_RemoveAllPointSets"); \ +static_assert(sizeof(PreviewGeometry_RemoveAllPointSets) == 0x000001, "Wrong size on PreviewGeometry_RemoveAllPointSets"); \ +static_assert(offsetof(PreviewGeometry_RemoveAllPointSets, bDestroy) == 0x000000, "Member 'PreviewGeometry_RemoveAllPointSets::bDestroy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_RemoveLineSet \ +static_assert(alignof(PreviewGeometry_RemoveLineSet) == 0x000008, "Wrong alignment on PreviewGeometry_RemoveLineSet"); \ +static_assert(sizeof(PreviewGeometry_RemoveLineSet) == 0x000018, "Wrong size on PreviewGeometry_RemoveLineSet"); \ +static_assert(offsetof(PreviewGeometry_RemoveLineSet, LineSetIdentifier) == 0x000000, "Member 'PreviewGeometry_RemoveLineSet::LineSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_RemoveLineSet, bDestroy) == 0x000010, "Member 'PreviewGeometry_RemoveLineSet::bDestroy' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_RemoveLineSet, ReturnValue) == 0x000011, "Member 'PreviewGeometry_RemoveLineSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_RemovePointSet \ +static_assert(alignof(PreviewGeometry_RemovePointSet) == 0x000008, "Wrong alignment on PreviewGeometry_RemovePointSet"); \ +static_assert(sizeof(PreviewGeometry_RemovePointSet) == 0x000018, "Wrong size on PreviewGeometry_RemovePointSet"); \ +static_assert(offsetof(PreviewGeometry_RemovePointSet, PointSetIdentifier) == 0x000000, "Member 'PreviewGeometry_RemovePointSet::PointSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_RemovePointSet, bDestroy) == 0x000010, "Member 'PreviewGeometry_RemovePointSet::bDestroy' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_RemovePointSet, ReturnValue) == 0x000011, "Member 'PreviewGeometry_RemovePointSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetAllLineSetsMaterial \ +static_assert(alignof(PreviewGeometry_SetAllLineSetsMaterial) == 0x000008, "Wrong alignment on PreviewGeometry_SetAllLineSetsMaterial"); \ +static_assert(sizeof(PreviewGeometry_SetAllLineSetsMaterial) == 0x000008, "Wrong size on PreviewGeometry_SetAllLineSetsMaterial"); \ +static_assert(offsetof(PreviewGeometry_SetAllLineSetsMaterial, Material) == 0x000000, "Member 'PreviewGeometry_SetAllLineSetsMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetAllPointSetsMaterial \ +static_assert(alignof(PreviewGeometry_SetAllPointSetsMaterial) == 0x000008, "Wrong alignment on PreviewGeometry_SetAllPointSetsMaterial"); \ +static_assert(sizeof(PreviewGeometry_SetAllPointSetsMaterial) == 0x000008, "Wrong size on PreviewGeometry_SetAllPointSetsMaterial"); \ +static_assert(offsetof(PreviewGeometry_SetAllPointSetsMaterial, Material) == 0x000000, "Member 'PreviewGeometry_SetAllPointSetsMaterial::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetLineSetMaterial \ +static_assert(alignof(PreviewGeometry_SetLineSetMaterial) == 0x000008, "Wrong alignment on PreviewGeometry_SetLineSetMaterial"); \ +static_assert(sizeof(PreviewGeometry_SetLineSetMaterial) == 0x000020, "Wrong size on PreviewGeometry_SetLineSetMaterial"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetMaterial, LineSetIdentifier) == 0x000000, "Member 'PreviewGeometry_SetLineSetMaterial::LineSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetMaterial, NewMaterial) == 0x000010, "Member 'PreviewGeometry_SetLineSetMaterial::NewMaterial' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetMaterial, ReturnValue) == 0x000018, "Member 'PreviewGeometry_SetLineSetMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetLineSetVisibility \ +static_assert(alignof(PreviewGeometry_SetLineSetVisibility) == 0x000008, "Wrong alignment on PreviewGeometry_SetLineSetVisibility"); \ +static_assert(sizeof(PreviewGeometry_SetLineSetVisibility) == 0x000018, "Wrong size on PreviewGeometry_SetLineSetVisibility"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetVisibility, LineSetIdentifier) == 0x000000, "Member 'PreviewGeometry_SetLineSetVisibility::LineSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetVisibility, bVisible) == 0x000010, "Member 'PreviewGeometry_SetLineSetVisibility::bVisible' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetLineSetVisibility, ReturnValue) == 0x000011, "Member 'PreviewGeometry_SetLineSetVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetPointSetMaterial \ +static_assert(alignof(PreviewGeometry_SetPointSetMaterial) == 0x000008, "Wrong alignment on PreviewGeometry_SetPointSetMaterial"); \ +static_assert(sizeof(PreviewGeometry_SetPointSetMaterial) == 0x000020, "Wrong size on PreviewGeometry_SetPointSetMaterial"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetMaterial, PointSetIdentifier) == 0x000000, "Member 'PreviewGeometry_SetPointSetMaterial::PointSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetMaterial, NewMaterial) == 0x000010, "Member 'PreviewGeometry_SetPointSetMaterial::NewMaterial' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetMaterial, ReturnValue) == 0x000018, "Member 'PreviewGeometry_SetPointSetMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_SetPointSetVisibility \ +static_assert(alignof(PreviewGeometry_SetPointSetVisibility) == 0x000008, "Wrong alignment on PreviewGeometry_SetPointSetVisibility"); \ +static_assert(sizeof(PreviewGeometry_SetPointSetVisibility) == 0x000018, "Wrong size on PreviewGeometry_SetPointSetVisibility"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetVisibility, PointSetIdentifier) == 0x000000, "Member 'PreviewGeometry_SetPointSetVisibility::PointSetIdentifier' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetVisibility, bVisible) == 0x000010, "Member 'PreviewGeometry_SetPointSetVisibility::bVisible' has a wrong offset!"); \ +static_assert(offsetof(PreviewGeometry_SetPointSetVisibility, ReturnValue) == 0x000011, "Member 'PreviewGeometry_SetPointSetVisibility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PreviewGeometry_GetActor \ +static_assert(alignof(PreviewGeometry_GetActor) == 0x000008, "Wrong alignment on PreviewGeometry_GetActor"); \ +static_assert(sizeof(PreviewGeometry_GetActor) == 0x000008, "Wrong size on PreviewGeometry_GetActor"); \ +static_assert(offsetof(PreviewGeometry_GetActor, ReturnValue) == 0x000000, "Member 'PreviewGeometry_GetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPreviewGeometry \ +static_assert(alignof(UPreviewGeometry) == 0x000008, "Wrong alignment on UPreviewGeometry"); \ +static_assert(sizeof(UPreviewGeometry) == 0x000120, "Wrong size on UPreviewGeometry"); \ +static_assert(offsetof(UPreviewGeometry, ParentActor) == 0x000028, "Member 'UPreviewGeometry::ParentActor' has a wrong offset!"); \ +static_assert(offsetof(UPreviewGeometry, TriangleSets) == 0x000030, "Member 'UPreviewGeometry::TriangleSets' has a wrong offset!"); \ +static_assert(offsetof(UPreviewGeometry, LineSets) == 0x000080, "Member 'UPreviewGeometry::LineSets' has a wrong offset!"); \ +static_assert(offsetof(UPreviewGeometry, PointSets) == 0x0000D0, "Member 'UPreviewGeometry::PointSets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshElementsVisualizer \ +static_assert(alignof(UMeshElementsVisualizer) == 0x000008, "Wrong alignment on UMeshElementsVisualizer"); \ +static_assert(sizeof(UMeshElementsVisualizer) == 0x000148, "Wrong size on UMeshElementsVisualizer"); \ +static_assert(offsetof(UMeshElementsVisualizer, Settings) == 0x000120, "Member 'UMeshElementsVisualizer::Settings' has a wrong offset!"); \ +static_assert(offsetof(UMeshElementsVisualizer, WireframeComponent) == 0x000128, "Member 'UMeshElementsVisualizer::WireframeComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshWireframeComponent \ +static_assert(alignof(UMeshWireframeComponent) == 0x000010, "Wrong alignment on UMeshWireframeComponent"); \ +static_assert(sizeof(UMeshWireframeComponent) == 0x000650, "Wrong size on UMeshWireframeComponent"); \ +static_assert(offsetof(UMeshWireframeComponent, LineDepthBias) == 0x0005A8, "Member 'UMeshWireframeComponent::LineDepthBias' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, LineDepthBiasSizeScale) == 0x0005AC, "Member 'UMeshWireframeComponent::LineDepthBiasSizeScale' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, ThicknessScale) == 0x0005B0, "Member 'UMeshWireframeComponent::ThicknessScale' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableWireframe) == 0x0005B4, "Member 'UMeshWireframeComponent::bEnableWireframe' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, WireframeColor) == 0x0005B8, "Member 'UMeshWireframeComponent::WireframeColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, WireframeThickness) == 0x0005BC, "Member 'UMeshWireframeComponent::WireframeThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableBoundaryEdges) == 0x0005C0, "Member 'UMeshWireframeComponent::bEnableBoundaryEdges' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, BoundaryEdgeColor) == 0x0005C4, "Member 'UMeshWireframeComponent::BoundaryEdgeColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, BoundaryEdgeThickness) == 0x0005C8, "Member 'UMeshWireframeComponent::BoundaryEdgeThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableUVSeams) == 0x0005CC, "Member 'UMeshWireframeComponent::bEnableUVSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, UVSeamColor) == 0x0005D0, "Member 'UMeshWireframeComponent::UVSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, UVSeamThickness) == 0x0005D4, "Member 'UMeshWireframeComponent::UVSeamThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableNormalSeams) == 0x0005D8, "Member 'UMeshWireframeComponent::bEnableNormalSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, NormalSeamColor) == 0x0005DC, "Member 'UMeshWireframeComponent::NormalSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, NormalSeamThickness) == 0x0005E0, "Member 'UMeshWireframeComponent::NormalSeamThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableTangentSeams) == 0x0005E4, "Member 'UMeshWireframeComponent::bEnableTangentSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, TangentSeamColor) == 0x0005E8, "Member 'UMeshWireframeComponent::TangentSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, TangentSeamThickness) == 0x0005EC, "Member 'UMeshWireframeComponent::TangentSeamThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, bEnableColorSeams) == 0x0005F0, "Member 'UMeshWireframeComponent::bEnableColorSeams' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, ColorSeamColor) == 0x0005F4, "Member 'UMeshWireframeComponent::ColorSeamColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, ColorSeamThickness) == 0x0005F8, "Member 'UMeshWireframeComponent::ColorSeamThickness' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, LineMaterial) == 0x000600, "Member 'UMeshWireframeComponent::LineMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMeshWireframeComponent, LocalBounds) == 0x000608, "Member 'UMeshWireframeComponent::LocalBounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPointSetComponent \ +static_assert(alignof(UPointSetComponent) == 0x000010, "Wrong alignment on UPointSetComponent"); \ +static_assert(sizeof(UPointSetComponent) == 0x000630, "Wrong size on UPointSetComponent"); \ +static_assert(offsetof(UPointSetComponent, PointMaterial) == 0x0005A8, "Member 'UPointSetComponent::PointMaterial' has a wrong offset!"); \ +static_assert(offsetof(UPointSetComponent, Bounds) == 0x0005B0, "Member 'UPointSetComponent::Bounds' has a wrong offset!"); \ +static_assert(offsetof(UPointSetComponent, bBoundsDirty) == 0x0005E8, "Member 'UPointSetComponent::bBoundsDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPreviewMesh \ +static_assert(alignof(UPreviewMesh) == 0x000010, "Wrong alignment on UPreviewMesh"); \ +static_assert(sizeof(UPreviewMesh) == 0x000140, "Wrong size on UPreviewMesh"); \ +static_assert(offsetof(UPreviewMesh, bBuildSpatialDataStructure) == 0x000040, "Member 'UPreviewMesh::bBuildSpatialDataStructure' has a wrong offset!"); \ +static_assert(offsetof(UPreviewMesh, DynamicMeshComponent) == 0x000050, "Member 'UPreviewMesh::DynamicMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditPreviewMesh \ +static_assert(alignof(UPolyEditPreviewMesh) == 0x000010, "Wrong alignment on UPolyEditPreviewMesh"); \ +static_assert(sizeof(UPolyEditPreviewMesh) == 0x000550, "Wrong size on UPolyEditPreviewMesh"); \ + +#define DUMPER7_ASSERTS_APreviewGeometryActor \ +static_assert(alignof(APreviewGeometryActor) == 0x000008, "Wrong alignment on APreviewGeometryActor"); \ +static_assert(sizeof(APreviewGeometryActor) == 0x0002A0, "Wrong size on APreviewGeometryActor"); \ + +#define DUMPER7_ASSERTS_UTriangleSetComponent \ +static_assert(alignof(UTriangleSetComponent) == 0x000010, "Wrong alignment on UTriangleSetComponent"); \ +static_assert(sizeof(UTriangleSetComponent) == 0x0006B0, "Wrong size on UTriangleSetComponent"); \ +static_assert(offsetof(UTriangleSetComponent, Bounds) == 0x0005A8, "Member 'UTriangleSetComponent::Bounds' has a wrong offset!"); \ +static_assert(offsetof(UTriangleSetComponent, bBoundsDirty) == 0x0005E0, "Member 'UTriangleSetComponent::bBoundsDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVLayoutPreviewProperties \ +static_assert(alignof(UUVLayoutPreviewProperties) == 0x000008, "Wrong alignment on UUVLayoutPreviewProperties"); \ +static_assert(sizeof(UUVLayoutPreviewProperties) == 0x0000D0, "Wrong size on UUVLayoutPreviewProperties"); \ +static_assert(offsetof(UUVLayoutPreviewProperties, bEnabled) == 0x0000A8, "Member 'UUVLayoutPreviewProperties::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreviewProperties, Side) == 0x0000AC, "Member 'UUVLayoutPreviewProperties::Side' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreviewProperties, Scale) == 0x0000B0, "Member 'UUVLayoutPreviewProperties::Scale' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreviewProperties, Offset) == 0x0000B8, "Member 'UUVLayoutPreviewProperties::Offset' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreviewProperties, bShowWireframe) == 0x0000C8, "Member 'UUVLayoutPreviewProperties::bShowWireframe' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVLayoutPreview \ +static_assert(alignof(UUVLayoutPreview) == 0x000010, "Wrong alignment on UUVLayoutPreview"); \ +static_assert(sizeof(UUVLayoutPreview) == 0x000170, "Wrong size on UUVLayoutPreview"); \ +static_assert(offsetof(UUVLayoutPreview, Settings) == 0x000028, "Member 'UUVLayoutPreview::Settings' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreview, PreviewMesh) == 0x000030, "Member 'UUVLayoutPreview::PreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreview, MeshElementsVisualizer) == 0x000038, "Member 'UUVLayoutPreview::MeshElementsVisualizer' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreview, TriangleComponent) == 0x000040, "Member 'UUVLayoutPreview::TriangleComponent' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreview, bShowBackingRectangle) == 0x000048, "Member 'UUVLayoutPreview::bShowBackingRectangle' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutPreview, BackingRectangleMaterial) == 0x000050, "Member 'UUVLayoutPreview::BackingRectangleMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCollectSurfacePathMechanic \ +static_assert(alignof(UCollectSurfacePathMechanic) == 0x000008, "Wrong alignment on UCollectSurfacePathMechanic"); \ +static_assert(sizeof(UCollectSurfacePathMechanic) == 0x0005C0, "Wrong size on UCollectSurfacePathMechanic"); \ + +#define DUMPER7_ASSERTS_UCollisionPrimitivesMechanic \ +static_assert(alignof(UCollisionPrimitivesMechanic) == 0x000010, "Wrong alignment on UCollisionPrimitivesMechanic"); \ +static_assert(sizeof(UCollisionPrimitivesMechanic) == 0x000560, "Wrong size on UCollisionPrimitivesMechanic"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, PreviewGeometry) == 0x000240, "Member 'UCollisionPrimitivesMechanic::PreviewGeometry' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, DrawnPrimitiveEdges) == 0x000248, "Member 'UCollisionPrimitivesMechanic::DrawnPrimitiveEdges' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, TranslateTransformProxy) == 0x0003A0, "Member 'UCollisionPrimitivesMechanic::TranslateTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, SphereTransformProxy) == 0x0003A8, "Member 'UCollisionPrimitivesMechanic::SphereTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, BoxTransformProxy) == 0x0003B0, "Member 'UCollisionPrimitivesMechanic::BoxTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, CapsuleTransformProxy) == 0x0003B8, "Member 'UCollisionPrimitivesMechanic::CapsuleTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, FullTransformProxy) == 0x0003C0, "Member 'UCollisionPrimitivesMechanic::FullTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, CurrentActiveProxy) == 0x0003C8, "Member 'UCollisionPrimitivesMechanic::CurrentActiveProxy' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, TranslateTransformGizmo) == 0x0003D0, "Member 'UCollisionPrimitivesMechanic::TranslateTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, SphereTransformGizmo) == 0x0003D8, "Member 'UCollisionPrimitivesMechanic::SphereTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, BoxTransformGizmo) == 0x0003E0, "Member 'UCollisionPrimitivesMechanic::BoxTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, CapsuleTransformGizmo) == 0x0003E8, "Member 'UCollisionPrimitivesMechanic::CapsuleTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, FullTransformGizmo) == 0x0003F0, "Member 'UCollisionPrimitivesMechanic::FullTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UCollisionPrimitivesMechanic, MarqueeMechanic) == 0x000448, "Member 'UCollisionPrimitivesMechanic::MarqueeMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UConstructionPlaneMechanic \ +static_assert(alignof(UConstructionPlaneMechanic) == 0x000010, "Wrong alignment on UConstructionPlaneMechanic"); \ +static_assert(sizeof(UConstructionPlaneMechanic) == 0x0000F0, "Wrong size on UConstructionPlaneMechanic"); \ +static_assert(offsetof(UConstructionPlaneMechanic, PlaneTransformGizmo) == 0x0000C8, "Member 'UConstructionPlaneMechanic::PlaneTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UConstructionPlaneMechanic, PlaneTransformProxy) == 0x0000D0, "Member 'UConstructionPlaneMechanic::PlaneTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UConstructionPlaneMechanic, ClickToSetPlaneBehavior) == 0x0000E0, "Member 'UConstructionPlaneMechanic::ClickToSetPlaneBehavior' has a wrong offset!"); \ +static_assert(offsetof(UConstructionPlaneMechanic, MiddleClickToSetGizmoBehavior) == 0x0000E8, "Member 'UConstructionPlaneMechanic::MiddleClickToSetGizmoBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCurveControlPointsMechanic \ +static_assert(alignof(UCurveControlPointsMechanic) == 0x000010, "Wrong alignment on UCurveControlPointsMechanic"); \ +static_assert(sizeof(UCurveControlPointsMechanic) == 0x000680, "Wrong size on UCurveControlPointsMechanic"); \ +static_assert(offsetof(UCurveControlPointsMechanic, ClickBehavior) == 0x000040, "Member 'UCurveControlPointsMechanic::ClickBehavior' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, HoverBehavior) == 0x000048, "Member 'UCurveControlPointsMechanic::HoverBehavior' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, PreviewGeometryActor) == 0x0004E8, "Member 'UCurveControlPointsMechanic::PreviewGeometryActor' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, DrawnControlPoints) == 0x0004F0, "Member 'UCurveControlPointsMechanic::DrawnControlPoints' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, DrawnControlSegments) == 0x0004F8, "Member 'UCurveControlPointsMechanic::DrawnControlSegments' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, PreviewPoint) == 0x000500, "Member 'UCurveControlPointsMechanic::PreviewPoint' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, PreviewSegment) == 0x000508, "Member 'UCurveControlPointsMechanic::PreviewSegment' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, PointTransformProxy) == 0x000588, "Member 'UCurveControlPointsMechanic::PointTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UCurveControlPointsMechanic, PointTransformGizmo) == 0x000590, "Member 'UCurveControlPointsMechanic::PointTransformGizmo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDragAlignmentMechanic \ +static_assert(alignof(UDragAlignmentMechanic) == 0x000008, "Wrong alignment on UDragAlignmentMechanic"); \ +static_assert(sizeof(UDragAlignmentMechanic) == 0x000270, "Wrong size on UDragAlignmentMechanic"); \ + +#define DUMPER7_ASSERTS_UDragAlignmentInteraction \ +static_assert(alignof(UDragAlignmentInteraction) == 0x000008, "Wrong alignment on UDragAlignmentInteraction"); \ +static_assert(sizeof(UDragAlignmentInteraction) == 0x0002D0, "Wrong size on UDragAlignmentInteraction"); \ + +#define DUMPER7_ASSERTS_ULatticeControlPointsMechanic \ +static_assert(alignof(ULatticeControlPointsMechanic) == 0x000010, "Wrong alignment on ULatticeControlPointsMechanic"); \ +static_assert(sizeof(ULatticeControlPointsMechanic) == 0x000500, "Wrong size on ULatticeControlPointsMechanic"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, PreviewGeometryActor) == 0x000220, "Member 'ULatticeControlPointsMechanic::PreviewGeometryActor' has a wrong offset!"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, DrawnControlPoints) == 0x000228, "Member 'ULatticeControlPointsMechanic::DrawnControlPoints' has a wrong offset!"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, DrawnLatticeEdges) == 0x000230, "Member 'ULatticeControlPointsMechanic::DrawnLatticeEdges' has a wrong offset!"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, PointTransformProxy) == 0x0002E0, "Member 'ULatticeControlPointsMechanic::PointTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, PointTransformGizmo) == 0x0002E8, "Member 'ULatticeControlPointsMechanic::PointTransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(ULatticeControlPointsMechanic, MarqueeMechanic) == 0x000348, "Member 'ULatticeControlPointsMechanic::MarqueeMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlaneDistanceFromHitMechanic \ +static_assert(alignof(UPlaneDistanceFromHitMechanic) == 0x000008, "Wrong alignment on UPlaneDistanceFromHitMechanic"); \ +static_assert(sizeof(UPlaneDistanceFromHitMechanic) == 0x000510, "Wrong size on UPlaneDistanceFromHitMechanic"); \ + +#define DUMPER7_ASSERTS_UPolyLassoMarqueeMechanic \ +static_assert(alignof(UPolyLassoMarqueeMechanic) == 0x000010, "Wrong alignment on UPolyLassoMarqueeMechanic"); \ +static_assert(sizeof(UPolyLassoMarqueeMechanic) == 0x0001D0, "Wrong size on UPolyLassoMarqueeMechanic"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, SpacingTolerance) == 0x000088, "Member 'UPolyLassoMarqueeMechanic::SpacingTolerance' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, LineThickness) == 0x00008C, "Member 'UPolyLassoMarqueeMechanic::LineThickness' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, LineColor) == 0x000090, "Member 'UPolyLassoMarqueeMechanic::LineColor' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, ClosedColor) == 0x0000A0, "Member 'UPolyLassoMarqueeMechanic::ClosedColor' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, bEnableFreehandPolygons) == 0x0000B0, "Member 'UPolyLassoMarqueeMechanic::bEnableFreehandPolygons' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, bEnableMultiClickPolygons) == 0x0000B1, "Member 'UPolyLassoMarqueeMechanic::bEnableMultiClickPolygons' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, ClickDragBehavior) == 0x0000B8, "Member 'UPolyLassoMarqueeMechanic::ClickDragBehavior' has a wrong offset!"); \ +static_assert(offsetof(UPolyLassoMarqueeMechanic, HoverBehavior) == 0x0000C0, "Member 'UPolyLassoMarqueeMechanic::HoverBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URectangleMarqueeMechanic \ +static_assert(alignof(URectangleMarqueeMechanic) == 0x000010, "Wrong alignment on URectangleMarqueeMechanic"); \ +static_assert(sizeof(URectangleMarqueeMechanic) == 0x000220, "Wrong size on URectangleMarqueeMechanic"); \ +static_assert(offsetof(URectangleMarqueeMechanic, bUseExternalClickDragBehavior) == 0x000038, "Member 'URectangleMarqueeMechanic::bUseExternalClickDragBehavior' has a wrong offset!"); \ +static_assert(offsetof(URectangleMarqueeMechanic, bUseExternalUpdateCameraState) == 0x000039, "Member 'URectangleMarqueeMechanic::bUseExternalUpdateCameraState' has a wrong offset!"); \ +static_assert(offsetof(URectangleMarqueeMechanic, OnDragRectangleChangedDeferredThreshold) == 0x000080, "Member 'URectangleMarqueeMechanic::OnDragRectangleChangedDeferredThreshold' has a wrong offset!"); \ +static_assert(offsetof(URectangleMarqueeMechanic, ClickDragBehavior) == 0x0000D0, "Member 'URectangleMarqueeMechanic::ClickDragBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URectangleMarqueeInteraction \ +static_assert(alignof(URectangleMarqueeInteraction) == 0x000008, "Wrong alignment on URectangleMarqueeInteraction"); \ +static_assert(sizeof(URectangleMarqueeInteraction) == 0x000210, "Wrong size on URectangleMarqueeInteraction"); \ + +#define DUMPER7_ASSERTS_USpaceCurveDeformationMechanicPropertySet \ +static_assert(alignof(USpaceCurveDeformationMechanicPropertySet) == 0x000008, "Wrong alignment on USpaceCurveDeformationMechanicPropertySet"); \ +static_assert(sizeof(USpaceCurveDeformationMechanicPropertySet) == 0x0000B8, "Wrong size on USpaceCurveDeformationMechanicPropertySet"); \ +static_assert(offsetof(USpaceCurveDeformationMechanicPropertySet, TransformMode) == 0x0000A8, "Member 'USpaceCurveDeformationMechanicPropertySet::TransformMode' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanicPropertySet, TransformOrigin) == 0x0000AC, "Member 'USpaceCurveDeformationMechanicPropertySet::TransformOrigin' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanicPropertySet, Softness) == 0x0000B0, "Member 'USpaceCurveDeformationMechanicPropertySet::Softness' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanicPropertySet, SoftFalloff) == 0x0000B4, "Member 'USpaceCurveDeformationMechanicPropertySet::SoftFalloff' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpaceCurveDeformationMechanic \ +static_assert(alignof(USpaceCurveDeformationMechanic) == 0x000010, "Wrong alignment on USpaceCurveDeformationMechanic"); \ +static_assert(sizeof(USpaceCurveDeformationMechanic) == 0x0002D0, "Wrong size on USpaceCurveDeformationMechanic"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, ClickBehavior) == 0x000040, "Member 'USpaceCurveDeformationMechanic::ClickBehavior' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, HoverBehavior) == 0x000048, "Member 'USpaceCurveDeformationMechanic::HoverBehavior' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, TransformProperties) == 0x000068, "Member 'USpaceCurveDeformationMechanic::TransformProperties' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, PreviewGeometryActor) == 0x000168, "Member 'USpaceCurveDeformationMechanic::PreviewGeometryActor' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, RenderPoints) == 0x000170, "Member 'USpaceCurveDeformationMechanic::RenderPoints' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, RenderSegments) == 0x000178, "Member 'USpaceCurveDeformationMechanic::RenderSegments' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, PointTransformProxy) == 0x0001B8, "Member 'USpaceCurveDeformationMechanic::PointTransformProxy' has a wrong offset!"); \ +static_assert(offsetof(USpaceCurveDeformationMechanic, PointTransformGizmo) == 0x0001C0, "Member 'USpaceCurveDeformationMechanic::PointTransformGizmo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpatialCurveDistanceMechanic \ +static_assert(alignof(USpatialCurveDistanceMechanic) == 0x000008, "Wrong alignment on USpatialCurveDistanceMechanic"); \ +static_assert(sizeof(USpatialCurveDistanceMechanic) == 0x000410, "Wrong size on USpatialCurveDistanceMechanic"); \ + +#define DUMPER7_ASSERTS_UMeshOpPreviewWithBackgroundCompute \ +static_assert(alignof(UMeshOpPreviewWithBackgroundCompute) == 0x000008, "Wrong alignment on UMeshOpPreviewWithBackgroundCompute"); \ +static_assert(sizeof(UMeshOpPreviewWithBackgroundCompute) == 0x0000B8, "Wrong size on UMeshOpPreviewWithBackgroundCompute"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, PreviewMesh) == 0x000058, "Member 'UMeshOpPreviewWithBackgroundCompute::PreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, StandardMaterials) == 0x000060, "Member 'UMeshOpPreviewWithBackgroundCompute::StandardMaterials' has a wrong offset!"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, OverrideMaterial) == 0x000070, "Member 'UMeshOpPreviewWithBackgroundCompute::OverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, WorkingMaterial) == 0x000078, "Member 'UMeshOpPreviewWithBackgroundCompute::WorkingMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, SecondaryMaterial) == 0x000080, "Member 'UMeshOpPreviewWithBackgroundCompute::SecondaryMaterial' has a wrong offset!"); \ +static_assert(offsetof(UMeshOpPreviewWithBackgroundCompute, PreviewWorld) == 0x000088, "Member 'UMeshOpPreviewWithBackgroundCompute::PreviewWorld' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModelingComponentsSettings \ +static_assert(alignof(UModelingComponentsSettings) == 0x000008, "Wrong alignment on UModelingComponentsSettings"); \ +static_assert(sizeof(UModelingComponentsSettings) == 0x000040, "Wrong size on UModelingComponentsSettings"); \ +static_assert(offsetof(UModelingComponentsSettings, bEnableRayTracingWhileEditing) == 0x000038, "Member 'UModelingComponentsSettings::bEnableRayTracingWhileEditing' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsSettings, bEnableRayTracing) == 0x000039, "Member 'UModelingComponentsSettings::bEnableRayTracing' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsSettings, bGenerateLightmapUVs) == 0x00003A, "Member 'UModelingComponentsSettings::bGenerateLightmapUVs' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsSettings, bEnableCollision) == 0x00003B, "Member 'UModelingComponentsSettings::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsSettings, CollisionMode) == 0x00003C, "Member 'UModelingComponentsSettings::CollisionMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModelingComponentsEditorSettings \ +static_assert(alignof(UModelingComponentsEditorSettings) == 0x000008, "Wrong alignment on UModelingComponentsEditorSettings"); \ +static_assert(sizeof(UModelingComponentsEditorSettings) == 0x000050, "Wrong size on UModelingComponentsEditorSettings"); \ +static_assert(offsetof(UModelingComponentsEditorSettings, GridMode) == 0x000038, "Member 'UModelingComponentsEditorSettings::GridMode' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsEditorSettings, NumGridLines) == 0x00003C, "Member 'UModelingComponentsEditorSettings::NumGridLines' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsEditorSettings, GridSpacing) == 0x000040, "Member 'UModelingComponentsEditorSettings::GridSpacing' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsEditorSettings, GridScale) == 0x000044, "Member 'UModelingComponentsEditorSettings::GridScale' has a wrong offset!"); \ +static_assert(offsetof(UModelingComponentsEditorSettings, GridSize) == 0x000048, "Member 'UModelingComponentsEditorSettings::GridSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModelingObjectsCreationAPI_CreateMaterialObject \ +static_assert(alignof(ModelingObjectsCreationAPI_CreateMaterialObject) == 0x000008, "Wrong alignment on ModelingObjectsCreationAPI_CreateMaterialObject"); \ +static_assert(sizeof(ModelingObjectsCreationAPI_CreateMaterialObject) == 0x000038, "Wrong size on ModelingObjectsCreationAPI_CreateMaterialObject"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateMaterialObject, CreateMaterialParams) == 0x000000, "Member 'ModelingObjectsCreationAPI_CreateMaterialObject::CreateMaterialParams' has a wrong offset!"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateMaterialObject, ReturnValue) == 0x000028, "Member 'ModelingObjectsCreationAPI_CreateMaterialObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModelingObjectsCreationAPI_CreateMeshObject \ +static_assert(alignof(ModelingObjectsCreationAPI_CreateMeshObject) == 0x000010, "Wrong alignment on ModelingObjectsCreationAPI_CreateMeshObject"); \ +static_assert(sizeof(ModelingObjectsCreationAPI_CreateMeshObject) == 0x000690, "Wrong size on ModelingObjectsCreationAPI_CreateMeshObject"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateMeshObject, CreateMeshParams) == 0x000000, "Member 'ModelingObjectsCreationAPI_CreateMeshObject::CreateMeshParams' has a wrong offset!"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateMeshObject, ReturnValue) == 0x000670, "Member 'ModelingObjectsCreationAPI_CreateMeshObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModelingObjectsCreationAPI_CreateNewActor \ +static_assert(alignof(ModelingObjectsCreationAPI_CreateNewActor) == 0x000010, "Wrong alignment on ModelingObjectsCreationAPI_CreateNewActor"); \ +static_assert(sizeof(ModelingObjectsCreationAPI_CreateNewActor) == 0x0000A0, "Wrong size on ModelingObjectsCreationAPI_CreateNewActor"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateNewActor, CreateActorParams) == 0x000000, "Member 'ModelingObjectsCreationAPI_CreateNewActor::CreateActorParams' has a wrong offset!"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateNewActor, ReturnValue) == 0x000090, "Member 'ModelingObjectsCreationAPI_CreateNewActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModelingObjectsCreationAPI_CreateTextureObject \ +static_assert(alignof(ModelingObjectsCreationAPI_CreateTextureObject) == 0x000008, "Wrong alignment on ModelingObjectsCreationAPI_CreateTextureObject"); \ +static_assert(sizeof(ModelingObjectsCreationAPI_CreateTextureObject) == 0x000040, "Wrong size on ModelingObjectsCreationAPI_CreateTextureObject"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateTextureObject, CreateTexParams) == 0x000000, "Member 'ModelingObjectsCreationAPI_CreateTextureObject::CreateTexParams' has a wrong offset!"); \ +static_assert(offsetof(ModelingObjectsCreationAPI_CreateTextureObject, ReturnValue) == 0x000030, "Member 'ModelingObjectsCreationAPI_CreateTextureObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModelingObjectsCreationAPI \ +static_assert(alignof(UModelingObjectsCreationAPI) == 0x000008, "Wrong alignment on UModelingObjectsCreationAPI"); \ +static_assert(sizeof(UModelingObjectsCreationAPI) == 0x000028, "Wrong size on UModelingObjectsCreationAPI"); \ + +#define DUMPER7_ASSERTS_APreviewMeshActor \ +static_assert(alignof(APreviewMeshActor) == 0x000008, "Wrong alignment on APreviewMeshActor"); \ +static_assert(sizeof(APreviewMeshActor) == 0x0002A0, "Wrong size on APreviewMeshActor"); \ + +#define DUMPER7_ASSERTS_CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc \ +static_assert(alignof(CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc) == 0x000008, "Wrong alignment on CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc"); \ +static_assert(sizeof(CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc) == 0x000010, "Wrong size on CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc"); \ +static_assert(offsetof(CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc, ReturnValue) == 0x000000, "Member 'CreateMeshObjectTypeProperties_GetOutputTypeNamesFunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CreateMeshObjectTypeProperties_GetCurrentCreateMeshType \ +static_assert(alignof(CreateMeshObjectTypeProperties_GetCurrentCreateMeshType) == 0x000001, "Wrong alignment on CreateMeshObjectTypeProperties_GetCurrentCreateMeshType"); \ +static_assert(sizeof(CreateMeshObjectTypeProperties_GetCurrentCreateMeshType) == 0x000001, "Wrong size on CreateMeshObjectTypeProperties_GetCurrentCreateMeshType"); \ +static_assert(offsetof(CreateMeshObjectTypeProperties_GetCurrentCreateMeshType, ReturnValue) == 0x000000, "Member 'CreateMeshObjectTypeProperties_GetCurrentCreateMeshType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CreateMeshObjectTypeProperties_ShouldShowPropertySet \ +static_assert(alignof(CreateMeshObjectTypeProperties_ShouldShowPropertySet) == 0x000001, "Wrong alignment on CreateMeshObjectTypeProperties_ShouldShowPropertySet"); \ +static_assert(sizeof(CreateMeshObjectTypeProperties_ShouldShowPropertySet) == 0x000001, "Wrong size on CreateMeshObjectTypeProperties_ShouldShowPropertySet"); \ +static_assert(offsetof(CreateMeshObjectTypeProperties_ShouldShowPropertySet, ReturnValue) == 0x000000, "Member 'CreateMeshObjectTypeProperties_ShouldShowPropertySet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCreateMeshObjectTypeProperties \ +static_assert(alignof(UCreateMeshObjectTypeProperties) == 0x000008, "Wrong alignment on UCreateMeshObjectTypeProperties"); \ +static_assert(sizeof(UCreateMeshObjectTypeProperties) == 0x0000D8, "Wrong size on UCreateMeshObjectTypeProperties"); \ +static_assert(offsetof(UCreateMeshObjectTypeProperties, OutputType) == 0x0000A8, "Member 'UCreateMeshObjectTypeProperties::OutputType' has a wrong offset!"); \ +static_assert(offsetof(UCreateMeshObjectTypeProperties, VolumeType) == 0x0000B8, "Member 'UCreateMeshObjectTypeProperties::VolumeType' has a wrong offset!"); \ +static_assert(offsetof(UCreateMeshObjectTypeProperties, OutputTypeNamesList) == 0x0000C0, "Member 'UCreateMeshObjectTypeProperties::OutputTypeNamesList' has a wrong offset!"); \ +static_assert(offsetof(UCreateMeshObjectTypeProperties, bShowVolumeList) == 0x0000D0, "Member 'UCreateMeshObjectTypeProperties::bShowVolumeList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOnAcceptHandleSourcesPropertiesSingle \ +static_assert(alignof(UOnAcceptHandleSourcesPropertiesSingle) == 0x000008, "Wrong alignment on UOnAcceptHandleSourcesPropertiesSingle"); \ +static_assert(sizeof(UOnAcceptHandleSourcesPropertiesSingle) == 0x0000B0, "Wrong size on UOnAcceptHandleSourcesPropertiesSingle"); \ +static_assert(offsetof(UOnAcceptHandleSourcesPropertiesSingle, HandleInputs) == 0x0000A8, "Member 'UOnAcceptHandleSourcesPropertiesSingle::HandleInputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PolygroupLayersProperties_GetGroupLayersFunc \ +static_assert(alignof(PolygroupLayersProperties_GetGroupLayersFunc) == 0x000008, "Wrong alignment on PolygroupLayersProperties_GetGroupLayersFunc"); \ +static_assert(sizeof(PolygroupLayersProperties_GetGroupLayersFunc) == 0x000010, "Wrong size on PolygroupLayersProperties_GetGroupLayersFunc"); \ +static_assert(offsetof(PolygroupLayersProperties_GetGroupLayersFunc, ReturnValue) == 0x000000, "Member 'PolygroupLayersProperties_GetGroupLayersFunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolygroupLayersProperties \ +static_assert(alignof(UPolygroupLayersProperties) == 0x000008, "Wrong alignment on UPolygroupLayersProperties"); \ +static_assert(sizeof(UPolygroupLayersProperties) == 0x0000C0, "Wrong size on UPolygroupLayersProperties"); \ +static_assert(offsetof(UPolygroupLayersProperties, ActiveGroupLayer) == 0x0000A8, "Member 'UPolygroupLayersProperties::ActiveGroupLayer' has a wrong offset!"); \ +static_assert(offsetof(UPolygroupLayersProperties, GroupLayersList) == 0x0000B0, "Member 'UPolygroupLayersProperties::GroupLayersList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WeightMapSetProperties_GetWeightMapsFunc \ +static_assert(alignof(WeightMapSetProperties_GetWeightMapsFunc) == 0x000008, "Wrong alignment on WeightMapSetProperties_GetWeightMapsFunc"); \ +static_assert(sizeof(WeightMapSetProperties_GetWeightMapsFunc) == 0x000010, "Wrong size on WeightMapSetProperties_GetWeightMapsFunc"); \ +static_assert(offsetof(WeightMapSetProperties_GetWeightMapsFunc, ReturnValue) == 0x000000, "Member 'WeightMapSetProperties_GetWeightMapsFunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWeightMapSetProperties \ +static_assert(alignof(UWeightMapSetProperties) == 0x000008, "Wrong alignment on UWeightMapSetProperties"); \ +static_assert(sizeof(UWeightMapSetProperties) == 0x0000C8, "Wrong size on UWeightMapSetProperties"); \ +static_assert(offsetof(UWeightMapSetProperties, WeightMap) == 0x0000A8, "Member 'UWeightMapSetProperties::WeightMap' has a wrong offset!"); \ +static_assert(offsetof(UWeightMapSetProperties, WeightMapsList) == 0x0000B0, "Member 'UWeightMapSetProperties::WeightMapsList' has a wrong offset!"); \ +static_assert(offsetof(UWeightMapSetProperties, bInvertWeightMap) == 0x0000C0, "Member 'UWeightMapSetProperties::bInvertWeightMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometrySelectionManager \ +static_assert(alignof(UGeometrySelectionManager) == 0x000008, "Wrong alignment on UGeometrySelectionManager"); \ +static_assert(sizeof(UGeometrySelectionManager) == 0x000288, "Wrong size on UGeometrySelectionManager"); \ +static_assert(offsetof(UGeometrySelectionManager, SelectionArguments) == 0x000050, "Member 'UGeometrySelectionManager::SelectionArguments' has a wrong offset!"); \ +static_assert(offsetof(UGeometrySelectionManager, ToolsContext) == 0x000060, "Member 'UGeometrySelectionManager::ToolsContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPersistentMeshSelection \ +static_assert(alignof(UPersistentMeshSelection) == 0x000008, "Wrong alignment on UPersistentMeshSelection"); \ +static_assert(sizeof(UPersistentMeshSelection) == 0x000088, "Wrong size on UPersistentMeshSelection"); \ + +#define DUMPER7_ASSERTS_UPersistentMeshSelectionManager \ +static_assert(alignof(UPersistentMeshSelectionManager) == 0x000008, "Wrong alignment on UPersistentMeshSelectionManager"); \ +static_assert(sizeof(UPersistentMeshSelectionManager) == 0x000040, "Wrong size on UPersistentMeshSelectionManager"); \ +static_assert(offsetof(UPersistentMeshSelectionManager, ParentContext) == 0x000028, "Member 'UPersistentMeshSelectionManager::ParentContext' has a wrong offset!"); \ +static_assert(offsetof(UPersistentMeshSelectionManager, ActiveSelection) == 0x000030, "Member 'UPersistentMeshSelectionManager::ActiveSelection' has a wrong offset!"); \ +static_assert(offsetof(UPersistentMeshSelectionManager, SelectionDisplay) == 0x000038, "Member 'UPersistentMeshSelectionManager::SelectionDisplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolygonSelectionMechanicProperties \ +static_assert(alignof(UPolygonSelectionMechanicProperties) == 0x000008, "Wrong alignment on UPolygonSelectionMechanicProperties"); \ +static_assert(sizeof(UPolygonSelectionMechanicProperties) == 0x0000C0, "Wrong size on UPolygonSelectionMechanicProperties"); \ + +#define DUMPER7_ASSERTS_UPolygonSelectionMechanic \ +static_assert(alignof(UPolygonSelectionMechanic) == 0x000010, "Wrong alignment on UPolygonSelectionMechanic"); \ +static_assert(sizeof(UPolygonSelectionMechanic) == 0x000B00, "Wrong size on UPolygonSelectionMechanic"); \ +static_assert(offsetof(UPolygonSelectionMechanic, Properties_PolygonSelectionMechanic) == 0x000AF0, "Member 'UPolygonSelectionMechanic::Properties_PolygonSelectionMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModelingSceneSnappingManager \ +static_assert(alignof(UModelingSceneSnappingManager) == 0x000008, "Wrong alignment on UModelingSceneSnappingManager"); \ +static_assert(sizeof(UModelingSceneSnappingManager) == 0x000150, "Wrong size on UModelingSceneSnappingManager"); \ +static_assert(offsetof(UModelingSceneSnappingManager, ParentContext) == 0x000028, "Member 'UModelingSceneSnappingManager::ParentContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMultiTransformer \ +static_assert(alignof(UMultiTransformer) == 0x000010, "Wrong alignment on UMultiTransformer"); \ +static_assert(sizeof(UMultiTransformer) == 0x0001B0, "Wrong size on UMultiTransformer"); \ +static_assert(offsetof(UMultiTransformer, GizmoManager) == 0x000088, "Member 'UMultiTransformer::GizmoManager' has a wrong offset!"); \ +static_assert(offsetof(UMultiTransformer, TransformGizmo) == 0x000100, "Member 'UMultiTransformer::TransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UMultiTransformer, TransformProxy) == 0x000108, "Member 'UMultiTransformer::TransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UMultiTransformer, DragAlignmentMechanic) == 0x000110, "Member 'UMultiTransformer::DragAlignmentMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditActivityContext \ +static_assert(alignof(UPolyEditActivityContext) == 0x000010, "Wrong alignment on UPolyEditActivityContext"); \ +static_assert(sizeof(UPolyEditActivityContext) == 0x000120, "Wrong size on UPolyEditActivityContext"); \ +static_assert(offsetof(UPolyEditActivityContext, CommonProperties) == 0x000028, "Member 'UPolyEditActivityContext::CommonProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditActivityContext, Preview) == 0x000040, "Member 'UPolyEditActivityContext::Preview' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditActivityContext, SelectionMechanic) == 0x000070, "Member 'UPolyEditActivityContext::SelectionMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAddPrimitiveToolBuilder \ +static_assert(alignof(UAddPrimitiveToolBuilder) == 0x000008, "Wrong alignment on UAddPrimitiveToolBuilder"); \ +static_assert(sizeof(UAddPrimitiveToolBuilder) == 0x000030, "Wrong size on UAddPrimitiveToolBuilder"); \ + +#define DUMPER7_ASSERTS_UProceduralShapeToolProperties \ +static_assert(alignof(UProceduralShapeToolProperties) == 0x000008, "Wrong alignment on UProceduralShapeToolProperties"); \ +static_assert(sizeof(UProceduralShapeToolProperties) == 0x0000B8, "Wrong size on UProceduralShapeToolProperties"); \ +static_assert(offsetof(UProceduralShapeToolProperties, PolygroupMode) == 0x0000A8, "Member 'UProceduralShapeToolProperties::PolygroupMode' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, TargetSurface) == 0x0000A9, "Member 'UProceduralShapeToolProperties::TargetSurface' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, PivotLocation) == 0x0000AA, "Member 'UProceduralShapeToolProperties::PivotLocation' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, Rotation) == 0x0000AC, "Member 'UProceduralShapeToolProperties::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, bAlignToNormal) == 0x0000B0, "Member 'UProceduralShapeToolProperties::bAlignToNormal' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, bShowGizmo) == 0x0000B1, "Member 'UProceduralShapeToolProperties::bShowGizmo' has a wrong offset!"); \ +static_assert(offsetof(UProceduralShapeToolProperties, bShowGizmoOptions) == 0x0000B2, "Member 'UProceduralShapeToolProperties::bShowGizmoOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralBoxToolProperties \ +static_assert(alignof(UProceduralBoxToolProperties) == 0x000008, "Wrong alignment on UProceduralBoxToolProperties"); \ +static_assert(sizeof(UProceduralBoxToolProperties) == 0x0000D0, "Wrong size on UProceduralBoxToolProperties"); \ +static_assert(offsetof(UProceduralBoxToolProperties, Width) == 0x0000B8, "Member 'UProceduralBoxToolProperties::Width' has a wrong offset!"); \ +static_assert(offsetof(UProceduralBoxToolProperties, Depth) == 0x0000BC, "Member 'UProceduralBoxToolProperties::Depth' has a wrong offset!"); \ +static_assert(offsetof(UProceduralBoxToolProperties, Height) == 0x0000C0, "Member 'UProceduralBoxToolProperties::Height' has a wrong offset!"); \ +static_assert(offsetof(UProceduralBoxToolProperties, WidthSubdivisions) == 0x0000C4, "Member 'UProceduralBoxToolProperties::WidthSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralBoxToolProperties, DepthSubdivisions) == 0x0000C8, "Member 'UProceduralBoxToolProperties::DepthSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralBoxToolProperties, HeightSubdivisions) == 0x0000CC, "Member 'UProceduralBoxToolProperties::HeightSubdivisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralRectangleToolProperties \ +static_assert(alignof(UProceduralRectangleToolProperties) == 0x000008, "Wrong alignment on UProceduralRectangleToolProperties"); \ +static_assert(sizeof(UProceduralRectangleToolProperties) == 0x0000D8, "Wrong size on UProceduralRectangleToolProperties"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, RectangleType) == 0x0000B8, "Member 'UProceduralRectangleToolProperties::RectangleType' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, Width) == 0x0000BC, "Member 'UProceduralRectangleToolProperties::Width' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, Depth) == 0x0000C0, "Member 'UProceduralRectangleToolProperties::Depth' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, WidthSubdivisions) == 0x0000C4, "Member 'UProceduralRectangleToolProperties::WidthSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, DepthSubdivisions) == 0x0000C8, "Member 'UProceduralRectangleToolProperties::DepthSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, bMaintainDimension) == 0x0000CC, "Member 'UProceduralRectangleToolProperties::bMaintainDimension' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, CornerRadius) == 0x0000D0, "Member 'UProceduralRectangleToolProperties::CornerRadius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralRectangleToolProperties, CornerSlices) == 0x0000D4, "Member 'UProceduralRectangleToolProperties::CornerSlices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolBuilder \ +static_assert(alignof(UEditMeshPolygonsToolBuilder) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolBuilder"); \ +static_assert(sizeof(UEditMeshPolygonsToolBuilder) == 0x000030, "Wrong size on UEditMeshPolygonsToolBuilder"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsActionModeToolBuilder \ +static_assert(alignof(UEditMeshPolygonsActionModeToolBuilder) == 0x000008, "Wrong alignment on UEditMeshPolygonsActionModeToolBuilder"); \ +static_assert(sizeof(UEditMeshPolygonsActionModeToolBuilder) == 0x000038, "Wrong size on UEditMeshPolygonsActionModeToolBuilder"); \ + +#define DUMPER7_ASSERTS_UProceduralDiscToolProperties \ +static_assert(alignof(UProceduralDiscToolProperties) == 0x000008, "Wrong alignment on UProceduralDiscToolProperties"); \ +static_assert(sizeof(UProceduralDiscToolProperties) == 0x0000D0, "Wrong size on UProceduralDiscToolProperties"); \ +static_assert(offsetof(UProceduralDiscToolProperties, DiscType) == 0x0000B8, "Member 'UProceduralDiscToolProperties::DiscType' has a wrong offset!"); \ +static_assert(offsetof(UProceduralDiscToolProperties, Radius) == 0x0000BC, "Member 'UProceduralDiscToolProperties::Radius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralDiscToolProperties, RadialSlices) == 0x0000C0, "Member 'UProceduralDiscToolProperties::RadialSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralDiscToolProperties, RadialSubdivisions) == 0x0000C4, "Member 'UProceduralDiscToolProperties::RadialSubdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralDiscToolProperties, HoleRadius) == 0x0000C8, "Member 'UProceduralDiscToolProperties::HoleRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolActionPropertySet \ +static_assert(alignof(UEditMeshPolygonsToolActionPropertySet) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolActionPropertySet"); \ +static_assert(sizeof(UEditMeshPolygonsToolActionPropertySet) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolActionPropertySet"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolEdgeActions \ +static_assert(alignof(UEditMeshPolygonsToolEdgeActions) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolEdgeActions"); \ +static_assert(sizeof(UEditMeshPolygonsToolEdgeActions) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolEdgeActions"); \ + +#define DUMPER7_ASSERTS_UProceduralTorusToolProperties \ +static_assert(alignof(UProceduralTorusToolProperties) == 0x000008, "Wrong alignment on UProceduralTorusToolProperties"); \ +static_assert(sizeof(UProceduralTorusToolProperties) == 0x0000C8, "Wrong size on UProceduralTorusToolProperties"); \ +static_assert(offsetof(UProceduralTorusToolProperties, MajorRadius) == 0x0000B8, "Member 'UProceduralTorusToolProperties::MajorRadius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralTorusToolProperties, MinorRadius) == 0x0000BC, "Member 'UProceduralTorusToolProperties::MinorRadius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralTorusToolProperties, MajorSlices) == 0x0000C0, "Member 'UProceduralTorusToolProperties::MajorSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralTorusToolProperties, MinorSlices) == 0x0000C4, "Member 'UProceduralTorusToolProperties::MinorSlices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralCylinderToolProperties \ +static_assert(alignof(UProceduralCylinderToolProperties) == 0x000008, "Wrong alignment on UProceduralCylinderToolProperties"); \ +static_assert(sizeof(UProceduralCylinderToolProperties) == 0x0000C8, "Wrong size on UProceduralCylinderToolProperties"); \ +static_assert(offsetof(UProceduralCylinderToolProperties, Radius) == 0x0000B8, "Member 'UProceduralCylinderToolProperties::Radius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralCylinderToolProperties, Height) == 0x0000BC, "Member 'UProceduralCylinderToolProperties::Height' has a wrong offset!"); \ +static_assert(offsetof(UProceduralCylinderToolProperties, RadialSlices) == 0x0000C0, "Member 'UProceduralCylinderToolProperties::RadialSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralCylinderToolProperties, HeightSubdivisions) == 0x0000C4, "Member 'UProceduralCylinderToolProperties::HeightSubdivisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralConeToolProperties \ +static_assert(alignof(UProceduralConeToolProperties) == 0x000008, "Wrong alignment on UProceduralConeToolProperties"); \ +static_assert(sizeof(UProceduralConeToolProperties) == 0x0000C8, "Wrong size on UProceduralConeToolProperties"); \ +static_assert(offsetof(UProceduralConeToolProperties, Radius) == 0x0000B8, "Member 'UProceduralConeToolProperties::Radius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralConeToolProperties, Height) == 0x0000BC, "Member 'UProceduralConeToolProperties::Height' has a wrong offset!"); \ +static_assert(offsetof(UProceduralConeToolProperties, RadialSlices) == 0x0000C0, "Member 'UProceduralConeToolProperties::RadialSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralConeToolProperties, HeightSubdivisions) == 0x0000C4, "Member 'UProceduralConeToolProperties::HeightSubdivisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralArrowToolProperties \ +static_assert(alignof(UProceduralArrowToolProperties) == 0x000008, "Wrong alignment on UProceduralArrowToolProperties"); \ +static_assert(sizeof(UProceduralArrowToolProperties) == 0x0000D0, "Wrong size on UProceduralArrowToolProperties"); \ +static_assert(offsetof(UProceduralArrowToolProperties, ShaftRadius) == 0x0000B8, "Member 'UProceduralArrowToolProperties::ShaftRadius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralArrowToolProperties, ShaftHeight) == 0x0000BC, "Member 'UProceduralArrowToolProperties::ShaftHeight' has a wrong offset!"); \ +static_assert(offsetof(UProceduralArrowToolProperties, HeadRadius) == 0x0000C0, "Member 'UProceduralArrowToolProperties::HeadRadius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralArrowToolProperties, HeadHeight) == 0x0000C4, "Member 'UProceduralArrowToolProperties::HeadHeight' has a wrong offset!"); \ +static_assert(offsetof(UProceduralArrowToolProperties, RadialSlices) == 0x0000C8, "Member 'UProceduralArrowToolProperties::RadialSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralArrowToolProperties, HeightSubdivisions) == 0x0000CC, "Member 'UProceduralArrowToolProperties::HeightSubdivisions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditTopologyProperties \ +static_assert(alignof(UPolyEditTopologyProperties) == 0x000008, "Wrong alignment on UPolyEditTopologyProperties"); \ +static_assert(sizeof(UPolyEditTopologyProperties) == 0x0000C0, "Wrong size on UPolyEditTopologyProperties"); \ +static_assert(offsetof(UPolyEditTopologyProperties, bAddExtraCorners) == 0x0000B0, "Member 'UPolyEditTopologyProperties::bAddExtraCorners' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditTopologyProperties, ExtraCornerAngleThresholdDegrees) == 0x0000B8, "Member 'UPolyEditTopologyProperties::ExtraCornerAngleThresholdDegrees' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralSphereToolProperties \ +static_assert(alignof(UProceduralSphereToolProperties) == 0x000008, "Wrong alignment on UProceduralSphereToolProperties"); \ +static_assert(sizeof(UProceduralSphereToolProperties) == 0x0000D0, "Wrong size on UProceduralSphereToolProperties"); \ +static_assert(offsetof(UProceduralSphereToolProperties, Radius) == 0x0000B8, "Member 'UProceduralSphereToolProperties::Radius' has a wrong offset!"); \ +static_assert(offsetof(UProceduralSphereToolProperties, SubdivisionType) == 0x0000BC, "Member 'UProceduralSphereToolProperties::SubdivisionType' has a wrong offset!"); \ +static_assert(offsetof(UProceduralSphereToolProperties, Subdivisions) == 0x0000C0, "Member 'UProceduralSphereToolProperties::Subdivisions' has a wrong offset!"); \ +static_assert(offsetof(UProceduralSphereToolProperties, HorizontalSlices) == 0x0000C4, "Member 'UProceduralSphereToolProperties::HorizontalSlices' has a wrong offset!"); \ +static_assert(offsetof(UProceduralSphereToolProperties, VerticalSlices) == 0x0000C8, "Member 'UProceduralSphereToolProperties::VerticalSlices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralStairsToolProperties \ +static_assert(alignof(UProceduralStairsToolProperties) == 0x000008, "Wrong alignment on UProceduralStairsToolProperties"); \ +static_assert(sizeof(UProceduralStairsToolProperties) == 0x0000D8, "Wrong size on UProceduralStairsToolProperties"); \ +static_assert(offsetof(UProceduralStairsToolProperties, StairsType) == 0x0000B8, "Member 'UProceduralStairsToolProperties::StairsType' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, NumSteps) == 0x0000BC, "Member 'UProceduralStairsToolProperties::NumSteps' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, StepWidth) == 0x0000C0, "Member 'UProceduralStairsToolProperties::StepWidth' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, StepHeight) == 0x0000C4, "Member 'UProceduralStairsToolProperties::StepHeight' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, StepDepth) == 0x0000C8, "Member 'UProceduralStairsToolProperties::StepDepth' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, CurveAngle) == 0x0000CC, "Member 'UProceduralStairsToolProperties::CurveAngle' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, SpiralAngle) == 0x0000D0, "Member 'UProceduralStairsToolProperties::SpiralAngle' has a wrong offset!"); \ +static_assert(offsetof(UProceduralStairsToolProperties, InnerRadius) == 0x0000D4, "Member 'UProceduralStairsToolProperties::InnerRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAddPrimitiveTool \ +static_assert(alignof(UAddPrimitiveTool) == 0x000008, "Wrong alignment on UAddPrimitiveTool"); \ +static_assert(sizeof(UAddPrimitiveTool) == 0x000140, "Wrong size on UAddPrimitiveTool"); \ +static_assert(offsetof(UAddPrimitiveTool, OutputTypeProperties) == 0x0000C0, "Member 'UAddPrimitiveTool::OutputTypeProperties' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, ShapeSettings) == 0x0000C8, "Member 'UAddPrimitiveTool::ShapeSettings' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, MaterialProperties) == 0x0000D0, "Member 'UAddPrimitiveTool::MaterialProperties' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, PreviewMesh) == 0x0000D8, "Member 'UAddPrimitiveTool::PreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, Gizmo) == 0x0000E0, "Member 'UAddPrimitiveTool::Gizmo' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, DragAlignmentMechanic) == 0x0000E8, "Member 'UAddPrimitiveTool::DragAlignmentMechanic' has a wrong offset!"); \ +static_assert(offsetof(UAddPrimitiveTool, AssetName) == 0x0000F0, "Member 'UAddPrimitiveTool::AssetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolEdgeActions_Triangles \ +static_assert(alignof(UEditMeshPolygonsToolEdgeActions_Triangles) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolEdgeActions_Triangles"); \ +static_assert(sizeof(UEditMeshPolygonsToolEdgeActions_Triangles) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolEdgeActions_Triangles"); \ + +#define DUMPER7_ASSERTS_UAddBoxPrimitiveTool \ +static_assert(alignof(UAddBoxPrimitiveTool) == 0x000008, "Wrong alignment on UAddBoxPrimitiveTool"); \ +static_assert(sizeof(UAddBoxPrimitiveTool) == 0x000140, "Wrong size on UAddBoxPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddCylinderPrimitiveTool \ +static_assert(alignof(UAddCylinderPrimitiveTool) == 0x000008, "Wrong alignment on UAddCylinderPrimitiveTool"); \ +static_assert(sizeof(UAddCylinderPrimitiveTool) == 0x000140, "Wrong size on UAddCylinderPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddConePrimitiveTool \ +static_assert(alignof(UAddConePrimitiveTool) == 0x000008, "Wrong alignment on UAddConePrimitiveTool"); \ +static_assert(sizeof(UAddConePrimitiveTool) == 0x000140, "Wrong size on UAddConePrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolActions_Triangles \ +static_assert(alignof(UEditMeshPolygonsToolActions_Triangles) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolActions_Triangles"); \ +static_assert(sizeof(UEditMeshPolygonsToolActions_Triangles) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolActions_Triangles"); \ + +#define DUMPER7_ASSERTS_UAddRectanglePrimitiveTool \ +static_assert(alignof(UAddRectanglePrimitiveTool) == 0x000008, "Wrong alignment on UAddRectanglePrimitiveTool"); \ +static_assert(sizeof(UAddRectanglePrimitiveTool) == 0x000140, "Wrong size on UAddRectanglePrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddDiscPrimitiveTool \ +static_assert(alignof(UAddDiscPrimitiveTool) == 0x000008, "Wrong alignment on UAddDiscPrimitiveTool"); \ +static_assert(sizeof(UAddDiscPrimitiveTool) == 0x000140, "Wrong size on UAddDiscPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsTool \ +static_assert(alignof(UEditMeshPolygonsTool) == 0x000010, "Wrong alignment on UEditMeshPolygonsTool"); \ +static_assert(sizeof(UEditMeshPolygonsTool) == 0x000880, "Wrong size on UEditMeshPolygonsTool"); \ +static_assert(offsetof(UEditMeshPolygonsTool, Preview) == 0x000148, "Member 'UEditMeshPolygonsTool::Preview' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, CommonProps) == 0x000150, "Member 'UEditMeshPolygonsTool::CommonProps' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, EditActions) == 0x000158, "Member 'UEditMeshPolygonsTool::EditActions' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, EditActions_Triangles) == 0x000160, "Member 'UEditMeshPolygonsTool::EditActions_Triangles' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, EditEdgeActions) == 0x000168, "Member 'UEditMeshPolygonsTool::EditEdgeActions' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, EditEdgeActions_Triangles) == 0x000170, "Member 'UEditMeshPolygonsTool::EditEdgeActions_Triangles' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, EditUVActions) == 0x000178, "Member 'UEditMeshPolygonsTool::EditUVActions' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, CancelAction) == 0x000180, "Member 'UEditMeshPolygonsTool::CancelAction' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, AcceptCancelAction) == 0x000188, "Member 'UEditMeshPolygonsTool::AcceptCancelAction' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, TopologyProperties) == 0x000190, "Member 'UEditMeshPolygonsTool::TopologyProperties' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, ExtrudeActivity) == 0x000198, "Member 'UEditMeshPolygonsTool::ExtrudeActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, InsetOutsetActivity) == 0x0001A0, "Member 'UEditMeshPolygonsTool::InsetOutsetActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, CutFacesActivity) == 0x0001A8, "Member 'UEditMeshPolygonsTool::CutFacesActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, PlanarProjectionUVActivity) == 0x0001B0, "Member 'UEditMeshPolygonsTool::PlanarProjectionUVActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, InsertEdgeActivity) == 0x0001B8, "Member 'UEditMeshPolygonsTool::InsertEdgeActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, InsertEdgeLoopActivity) == 0x0001C0, "Member 'UEditMeshPolygonsTool::InsertEdgeLoopActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, BevelEdgeActivity) == 0x0001C8, "Member 'UEditMeshPolygonsTool::BevelEdgeActivity' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, ActivityContext) == 0x000208, "Member 'UEditMeshPolygonsTool::ActivityContext' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, SelectionMechanic) == 0x000210, "Member 'UEditMeshPolygonsTool::SelectionMechanic' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, DragAlignmentMechanic) == 0x000218, "Member 'UEditMeshPolygonsTool::DragAlignmentMechanic' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, TransformGizmo) == 0x000220, "Member 'UEditMeshPolygonsTool::TransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UEditMeshPolygonsTool, TransformProxy) == 0x000228, "Member 'UEditMeshPolygonsTool::TransformProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAddTorusPrimitiveTool \ +static_assert(alignof(UAddTorusPrimitiveTool) == 0x000008, "Wrong alignment on UAddTorusPrimitiveTool"); \ +static_assert(sizeof(UAddTorusPrimitiveTool) == 0x000140, "Wrong size on UAddTorusPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddArrowPrimitiveTool \ +static_assert(alignof(UAddArrowPrimitiveTool) == 0x000008, "Wrong alignment on UAddArrowPrimitiveTool"); \ +static_assert(sizeof(UAddArrowPrimitiveTool) == 0x000140, "Wrong size on UAddArrowPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddSpherePrimitiveTool \ +static_assert(alignof(UAddSpherePrimitiveTool) == 0x000008, "Wrong alignment on UAddSpherePrimitiveTool"); \ +static_assert(sizeof(UAddSpherePrimitiveTool) == 0x000140, "Wrong size on UAddSpherePrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UAddStairsPrimitiveTool \ +static_assert(alignof(UAddStairsPrimitiveTool) == 0x000008, "Wrong alignment on UAddStairsPrimitiveTool"); \ +static_assert(sizeof(UAddStairsPrimitiveTool) == 0x000140, "Wrong size on UAddStairsPrimitiveTool"); \ + +#define DUMPER7_ASSERTS_UPolyEditOffsetProperties \ +static_assert(alignof(UPolyEditOffsetProperties) == 0x000008, "Wrong alignment on UPolyEditOffsetProperties"); \ +static_assert(sizeof(UPolyEditOffsetProperties) == 0x0000D8, "Wrong size on UPolyEditOffsetProperties"); \ +static_assert(offsetof(UPolyEditOffsetProperties, DistanceMode) == 0x0000A8, "Member 'UPolyEditOffsetProperties::DistanceMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, Distance) == 0x0000B0, "Member 'UPolyEditOffsetProperties::Distance' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, DirectionMode) == 0x0000B8, "Member 'UPolyEditOffsetProperties::DirectionMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, MaxDistanceScaleFactor) == 0x0000C0, "Member 'UPolyEditOffsetProperties::MaxDistanceScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, bShellsToSolids) == 0x0000C8, "Member 'UPolyEditOffsetProperties::bShellsToSolids' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, MeasureDirection) == 0x0000CC, "Member 'UPolyEditOffsetProperties::MeasureDirection' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditOffsetProperties, bUseColinearityForSettingBorderGroups) == 0x0000D0, "Member 'UPolyEditOffsetProperties::bUseColinearityForSettingBorderGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombineMeshesToolBuilder \ +static_assert(alignof(UCombineMeshesToolBuilder) == 0x000008, "Wrong alignment on UCombineMeshesToolBuilder"); \ +static_assert(sizeof(UCombineMeshesToolBuilder) == 0x000030, "Wrong size on UCombineMeshesToolBuilder"); \ + +#define DUMPER7_ASSERTS_UCombineMeshesToolProperties \ +static_assert(alignof(UCombineMeshesToolProperties) == 0x000008, "Wrong alignment on UCombineMeshesToolProperties"); \ +static_assert(sizeof(UCombineMeshesToolProperties) == 0x0000D0, "Wrong size on UCombineMeshesToolProperties"); \ +static_assert(offsetof(UCombineMeshesToolProperties, bIsDuplicateMode) == 0x0000A8, "Member 'UCombineMeshesToolProperties::bIsDuplicateMode' has a wrong offset!"); \ +static_assert(offsetof(UCombineMeshesToolProperties, OutputWriteTo) == 0x0000AC, "Member 'UCombineMeshesToolProperties::OutputWriteTo' has a wrong offset!"); \ +static_assert(offsetof(UCombineMeshesToolProperties, OutputNewName) == 0x0000B0, "Member 'UCombineMeshesToolProperties::OutputNewName' has a wrong offset!"); \ +static_assert(offsetof(UCombineMeshesToolProperties, OutputExistingName) == 0x0000C0, "Member 'UCombineMeshesToolProperties::OutputExistingName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExistingMeshMaterialProperties_GetUVChannelNamesFunc \ +static_assert(alignof(ExistingMeshMaterialProperties_GetUVChannelNamesFunc) == 0x000008, "Wrong alignment on ExistingMeshMaterialProperties_GetUVChannelNamesFunc"); \ +static_assert(sizeof(ExistingMeshMaterialProperties_GetUVChannelNamesFunc) == 0x000010, "Wrong size on ExistingMeshMaterialProperties_GetUVChannelNamesFunc"); \ +static_assert(offsetof(ExistingMeshMaterialProperties_GetUVChannelNamesFunc, ReturnValue) == 0x000000, "Member 'ExistingMeshMaterialProperties_GetUVChannelNamesFunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UExistingMeshMaterialProperties \ +static_assert(alignof(UExistingMeshMaterialProperties) == 0x000008, "Wrong alignment on UExistingMeshMaterialProperties"); \ +static_assert(sizeof(UExistingMeshMaterialProperties) == 0x0000E0, "Wrong size on UExistingMeshMaterialProperties"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, MaterialMode) == 0x0000A8, "Member 'UExistingMeshMaterialProperties::MaterialMode' has a wrong offset!"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, CheckerDensity) == 0x0000AC, "Member 'UExistingMeshMaterialProperties::CheckerDensity' has a wrong offset!"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, OverrideMaterial) == 0x0000B0, "Member 'UExistingMeshMaterialProperties::OverrideMaterial' has a wrong offset!"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, UVChannel) == 0x0000B8, "Member 'UExistingMeshMaterialProperties::UVChannel' has a wrong offset!"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, UVChannelNamesList) == 0x0000C8, "Member 'UExistingMeshMaterialProperties::UVChannelNamesList' has a wrong offset!"); \ +static_assert(offsetof(UExistingMeshMaterialProperties, CheckerMaterial) == 0x0000D8, "Member 'UExistingMeshMaterialProperties::CheckerMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombineMeshesTool \ +static_assert(alignof(UCombineMeshesTool) == 0x000008, "Wrong alignment on UCombineMeshesTool"); \ +static_assert(sizeof(UCombineMeshesTool) == 0x0000E8, "Wrong size on UCombineMeshesTool"); \ +static_assert(offsetof(UCombineMeshesTool, BasicProperties) == 0x0000C8, "Member 'UCombineMeshesTool::BasicProperties' has a wrong offset!"); \ +static_assert(offsetof(UCombineMeshesTool, OutputTypeProperties) == 0x0000D0, "Member 'UCombineMeshesTool::OutputTypeProperties' has a wrong offset!"); \ +static_assert(offsetof(UCombineMeshesTool, HandleSourceProperties) == 0x0000D8, "Member 'UCombineMeshesTool::HandleSourceProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDeleteGeometrySelectionCommand \ +static_assert(alignof(UDeleteGeometrySelectionCommand) == 0x000008, "Wrong alignment on UDeleteGeometrySelectionCommand"); \ +static_assert(sizeof(UDeleteGeometrySelectionCommand) == 0x000028, "Wrong size on UDeleteGeometrySelectionCommand"); \ + +#define DUMPER7_ASSERTS_UDisconnectGeometrySelectionCommand \ +static_assert(alignof(UDisconnectGeometrySelectionCommand) == 0x000008, "Wrong alignment on UDisconnectGeometrySelectionCommand"); \ +static_assert(sizeof(UDisconnectGeometrySelectionCommand) == 0x000028, "Wrong size on UDisconnectGeometrySelectionCommand"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand \ +static_assert(alignof(UModifyGeometrySelectionCommand) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand_Invert \ +static_assert(alignof(UModifyGeometrySelectionCommand_Invert) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand_Invert"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand_Invert) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand_Invert"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand_ExpandToConnected \ +static_assert(alignof(UModifyGeometrySelectionCommand_ExpandToConnected) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand_ExpandToConnected"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand_ExpandToConnected) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand_ExpandToConnected"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand_InvertConnected \ +static_assert(alignof(UModifyGeometrySelectionCommand_InvertConnected) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand_InvertConnected"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand_InvertConnected) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand_InvertConnected"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand_Expand \ +static_assert(alignof(UModifyGeometrySelectionCommand_Expand) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand_Expand"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand_Expand) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand_Expand"); \ + +#define DUMPER7_ASSERTS_UPolyEditCutFacesActivity \ +static_assert(alignof(UPolyEditCutFacesActivity) == 0x000010, "Wrong alignment on UPolyEditCutFacesActivity"); \ +static_assert(sizeof(UPolyEditCutFacesActivity) == 0x0000C0, "Wrong size on UPolyEditCutFacesActivity"); \ +static_assert(offsetof(UPolyEditCutFacesActivity, CutProperties) == 0x000040, "Member 'UPolyEditCutFacesActivity::CutProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCutFacesActivity, EditPreview) == 0x000048, "Member 'UPolyEditCutFacesActivity::EditPreview' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCutFacesActivity, SurfacePathMechanic) == 0x000050, "Member 'UPolyEditCutFacesActivity::SurfacePathMechanic' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCutFacesActivity, ActivityContext) == 0x000058, "Member 'UPolyEditCutFacesActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModifyGeometrySelectionCommand_Contract \ +static_assert(alignof(UModifyGeometrySelectionCommand_Contract) == 0x000008, "Wrong alignment on UModifyGeometrySelectionCommand_Contract"); \ +static_assert(sizeof(UModifyGeometrySelectionCommand_Contract) == 0x000028, "Wrong size on UModifyGeometrySelectionCommand_Contract"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolActions \ +static_assert(alignof(UEditMeshPolygonsToolActions) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolActions"); \ +static_assert(sizeof(UEditMeshPolygonsToolActions) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolActions"); \ + +#define DUMPER7_ASSERTS_URetriangulateGeometrySelectionCommand \ +static_assert(alignof(URetriangulateGeometrySelectionCommand) == 0x000008, "Wrong alignment on URetriangulateGeometrySelectionCommand"); \ +static_assert(sizeof(URetriangulateGeometrySelectionCommand) == 0x000028, "Wrong size on URetriangulateGeometrySelectionCommand"); \ + +#define DUMPER7_ASSERTS_UCSGMeshesToolProperties \ +static_assert(alignof(UCSGMeshesToolProperties) == 0x000008, "Wrong alignment on UCSGMeshesToolProperties"); \ +static_assert(sizeof(UCSGMeshesToolProperties) == 0x0000D0, "Wrong size on UCSGMeshesToolProperties"); \ +static_assert(offsetof(UCSGMeshesToolProperties, Operation) == 0x0000A8, "Member 'UCSGMeshesToolProperties::Operation' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, bTryFixHoles) == 0x0000A9, "Member 'UCSGMeshesToolProperties::bTryFixHoles' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, bTryCollapseEdges) == 0x0000AA, "Member 'UCSGMeshesToolProperties::bTryCollapseEdges' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, WindingThreshold) == 0x0000AC, "Member 'UCSGMeshesToolProperties::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, bShowNewBoundaries) == 0x0000B0, "Member 'UCSGMeshesToolProperties::bShowNewBoundaries' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, bShowSubtractedMesh) == 0x0000B1, "Member 'UCSGMeshesToolProperties::bShowSubtractedMesh' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, SubtractedMeshOpacity) == 0x0000B4, "Member 'UCSGMeshesToolProperties::SubtractedMeshOpacity' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, SubtractedMeshColor) == 0x0000B8, "Member 'UCSGMeshesToolProperties::SubtractedMeshColor' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesToolProperties, bUseFirstMeshMaterials) == 0x0000C8, "Member 'UCSGMeshesToolProperties::bUseFirstMeshMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTrimMeshesToolProperties \ +static_assert(alignof(UTrimMeshesToolProperties) == 0x000008, "Wrong alignment on UTrimMeshesToolProperties"); \ +static_assert(sizeof(UTrimMeshesToolProperties) == 0x0000C8, "Wrong size on UTrimMeshesToolProperties"); \ +static_assert(offsetof(UTrimMeshesToolProperties, WhichMesh) == 0x0000A8, "Member 'UTrimMeshesToolProperties::WhichMesh' has a wrong offset!"); \ +static_assert(offsetof(UTrimMeshesToolProperties, TrimSide) == 0x0000A9, "Member 'UTrimMeshesToolProperties::TrimSide' has a wrong offset!"); \ +static_assert(offsetof(UTrimMeshesToolProperties, WindingThreshold) == 0x0000AC, "Member 'UTrimMeshesToolProperties::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UTrimMeshesToolProperties, bShowTrimmingMesh) == 0x0000B0, "Member 'UTrimMeshesToolProperties::bShowTrimmingMesh' has a wrong offset!"); \ +static_assert(offsetof(UTrimMeshesToolProperties, OpacityOfTrimmingMesh) == 0x0000B4, "Member 'UTrimMeshesToolProperties::OpacityOfTrimmingMesh' has a wrong offset!"); \ +static_assert(offsetof(UTrimMeshesToolProperties, ColorOfTrimmingMesh) == 0x0000B8, "Member 'UTrimMeshesToolProperties::ColorOfTrimmingMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsSelectionModeToolBuilder \ +static_assert(alignof(UEditMeshPolygonsSelectionModeToolBuilder) == 0x000008, "Wrong alignment on UEditMeshPolygonsSelectionModeToolBuilder"); \ +static_assert(sizeof(UEditMeshPolygonsSelectionModeToolBuilder) == 0x000038, "Wrong size on UEditMeshPolygonsSelectionModeToolBuilder"); \ + +#define DUMPER7_ASSERTS_UCSGMeshesTool \ +static_assert(alignof(UCSGMeshesTool) == 0x000008, "Wrong alignment on UCSGMeshesTool"); \ +static_assert(sizeof(UCSGMeshesTool) == 0x000160, "Wrong size on UCSGMeshesTool"); \ +static_assert(offsetof(UCSGMeshesTool, CSGProperties) == 0x000108, "Member 'UCSGMeshesTool::CSGProperties' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesTool, TrimProperties) == 0x000110, "Member 'UCSGMeshesTool::TrimProperties' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesTool, OriginalMeshPreviews) == 0x000128, "Member 'UCSGMeshesTool::OriginalMeshPreviews' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesTool, PreviewsGhostMaterial) == 0x000138, "Member 'UCSGMeshesTool::PreviewsGhostMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCSGMeshesTool, DrawnLineSet) == 0x000140, "Member 'UCSGMeshesTool::DrawnLineSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCSGMeshesToolBuilder \ +static_assert(alignof(UCSGMeshesToolBuilder) == 0x000008, "Wrong alignment on UCSGMeshesToolBuilder"); \ +static_assert(sizeof(UCSGMeshesToolBuilder) == 0x000030, "Wrong size on UCSGMeshesToolBuilder"); \ + +#define DUMPER7_ASSERTS_UCutMeshWithMeshToolProperties \ +static_assert(alignof(UCutMeshWithMeshToolProperties) == 0x000008, "Wrong alignment on UCutMeshWithMeshToolProperties"); \ +static_assert(sizeof(UCutMeshWithMeshToolProperties) == 0x0000B8, "Wrong size on UCutMeshWithMeshToolProperties"); \ +static_assert(offsetof(UCutMeshWithMeshToolProperties, bTryFixHoles) == 0x0000A8, "Member 'UCutMeshWithMeshToolProperties::bTryFixHoles' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshToolProperties, bTryCollapseEdges) == 0x0000A9, "Member 'UCutMeshWithMeshToolProperties::bTryCollapseEdges' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshToolProperties, WindingThreshold) == 0x0000AC, "Member 'UCutMeshWithMeshToolProperties::WindingThreshold' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshToolProperties, bShowNewBoundaries) == 0x0000B0, "Member 'UCutMeshWithMeshToolProperties::bShowNewBoundaries' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshToolProperties, bUseFirstMeshMaterials) == 0x0000B1, "Member 'UCutMeshWithMeshToolProperties::bUseFirstMeshMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolUVActions \ +static_assert(alignof(UEditMeshPolygonsToolUVActions) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolUVActions"); \ +static_assert(sizeof(UEditMeshPolygonsToolUVActions) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolUVActions"); \ + +#define DUMPER7_ASSERTS_UCutMeshWithMeshTool \ +static_assert(alignof(UCutMeshWithMeshTool) == 0x000008, "Wrong alignment on UCutMeshWithMeshTool"); \ +static_assert(sizeof(UCutMeshWithMeshTool) == 0x000380, "Wrong size on UCutMeshWithMeshTool"); \ +static_assert(offsetof(UCutMeshWithMeshTool, CutProperties) == 0x000108, "Member 'UCutMeshWithMeshTool::CutProperties' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshTool, IntersectPreviewMesh) == 0x000110, "Member 'UCutMeshWithMeshTool::IntersectPreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UCutMeshWithMeshTool, DrawnLineSet) == 0x000138, "Member 'UCutMeshWithMeshTool::DrawnLineSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditInsertEdgeLoopActivity \ +static_assert(alignof(UPolyEditInsertEdgeLoopActivity) == 0x000010, "Wrong alignment on UPolyEditInsertEdgeLoopActivity"); \ +static_assert(sizeof(UPolyEditInsertEdgeLoopActivity) == 0x000400, "Wrong size on UPolyEditInsertEdgeLoopActivity"); \ +static_assert(offsetof(UPolyEditInsertEdgeLoopActivity, Settings) == 0x000048, "Member 'UPolyEditInsertEdgeLoopActivity::Settings' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsertEdgeLoopActivity, ActivityContext) == 0x000050, "Member 'UPolyEditInsertEdgeLoopActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCutMeshWithMeshToolBuilder \ +static_assert(alignof(UCutMeshWithMeshToolBuilder) == 0x000008, "Wrong alignment on UCutMeshWithMeshToolBuilder"); \ +static_assert(sizeof(UCutMeshWithMeshToolBuilder) == 0x000028, "Wrong size on UCutMeshWithMeshToolBuilder"); \ + +#define DUMPER7_ASSERTS_UDrawAndRevolveToolBuilder \ +static_assert(alignof(UDrawAndRevolveToolBuilder) == 0x000008, "Wrong alignment on UDrawAndRevolveToolBuilder"); \ +static_assert(sizeof(UDrawAndRevolveToolBuilder) == 0x000028, "Wrong size on UDrawAndRevolveToolBuilder"); \ + +#define DUMPER7_ASSERTS_URevolveProperties \ +static_assert(alignof(URevolveProperties) == 0x000008, "Wrong alignment on URevolveProperties"); \ +static_assert(sizeof(URevolveProperties) == 0x000118, "Wrong size on URevolveProperties"); \ +static_assert(offsetof(URevolveProperties, RevolveDegreesClamped) == 0x0000A8, "Member 'URevolveProperties::RevolveDegreesClamped' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, RevolveDegrees) == 0x0000B0, "Member 'URevolveProperties::RevolveDegrees' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, RevolveDegreesOffset) == 0x0000B8, "Member 'URevolveProperties::RevolveDegreesOffset' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, StepsMaxDegrees) == 0x0000C0, "Member 'URevolveProperties::StepsMaxDegrees' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, bExplicitSteps) == 0x0000C8, "Member 'URevolveProperties::bExplicitSteps' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, NumExplicitSteps) == 0x0000CC, "Member 'URevolveProperties::NumExplicitSteps' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, HeightOffsetPerDegree) == 0x0000D0, "Member 'URevolveProperties::HeightOffsetPerDegree' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, bReverseRevolutionDirection) == 0x0000D8, "Member 'URevolveProperties::bReverseRevolutionDirection' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, bFlipMesh) == 0x0000D9, "Member 'URevolveProperties::bFlipMesh' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, bSharpNormals) == 0x0000DA, "Member 'URevolveProperties::bSharpNormals' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, SharpNormalsDegreeThreshold) == 0x0000E0, "Member 'URevolveProperties::SharpNormalsDegreeThreshold' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, bPathAtMidpointOfStep) == 0x0000E8, "Member 'URevolveProperties::bPathAtMidpointOfStep' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, PolygroupMode) == 0x0000E9, "Member 'URevolveProperties::PolygroupMode' has a wrong offset!"); \ +static_assert(offsetof(URevolveProperties, QuadSplitMode) == 0x0000EA, "Member 'URevolveProperties::QuadSplitMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URevolveToolProperties \ +static_assert(alignof(URevolveToolProperties) == 0x000008, "Wrong alignment on URevolveToolProperties"); \ +static_assert(sizeof(URevolveToolProperties) == 0x000158, "Wrong size on URevolveToolProperties"); \ +static_assert(offsetof(URevolveToolProperties, CapFillMode) == 0x000118, "Member 'URevolveToolProperties::CapFillMode' has a wrong offset!"); \ +static_assert(offsetof(URevolveToolProperties, bClosePathToAxis) == 0x000119, "Member 'URevolveToolProperties::bClosePathToAxis' has a wrong offset!"); \ +static_assert(offsetof(URevolveToolProperties, DrawPlaneOrigin) == 0x000120, "Member 'URevolveToolProperties::DrawPlaneOrigin' has a wrong offset!"); \ +static_assert(offsetof(URevolveToolProperties, DrawPlaneOrientation) == 0x000138, "Member 'URevolveToolProperties::DrawPlaneOrientation' has a wrong offset!"); \ +static_assert(offsetof(URevolveToolProperties, bEnableSnapping) == 0x000150, "Member 'URevolveToolProperties::bEnableSnapping' has a wrong offset!"); \ +static_assert(offsetof(URevolveToolProperties, bAllowedToEditDrawPlane) == 0x000151, "Member 'URevolveToolProperties::bAllowedToEditDrawPlane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolCancelAction \ +static_assert(alignof(UEditMeshPolygonsToolCancelAction) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolCancelAction"); \ +static_assert(sizeof(UEditMeshPolygonsToolCancelAction) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolCancelAction"); \ + +#define DUMPER7_ASSERTS_URevolveOperatorFactory \ +static_assert(alignof(URevolveOperatorFactory) == 0x000008, "Wrong alignment on URevolveOperatorFactory"); \ +static_assert(sizeof(URevolveOperatorFactory) == 0x000038, "Wrong size on URevolveOperatorFactory"); \ +static_assert(offsetof(URevolveOperatorFactory, RevolveTool) == 0x000030, "Member 'URevolveOperatorFactory::RevolveTool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawAndRevolveTool \ +static_assert(alignof(UDrawAndRevolveTool) == 0x000010, "Wrong alignment on UDrawAndRevolveTool"); \ +static_assert(sizeof(UDrawAndRevolveTool) == 0x000170, "Wrong size on UDrawAndRevolveTool"); \ +static_assert(offsetof(UDrawAndRevolveTool, ControlPointsMechanic) == 0x000138, "Member 'UDrawAndRevolveTool::ControlPointsMechanic' has a wrong offset!"); \ +static_assert(offsetof(UDrawAndRevolveTool, PlaneMechanic) == 0x000140, "Member 'UDrawAndRevolveTool::PlaneMechanic' has a wrong offset!"); \ +static_assert(offsetof(UDrawAndRevolveTool, OutputTypeProperties) == 0x000148, "Member 'UDrawAndRevolveTool::OutputTypeProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawAndRevolveTool, Settings) == 0x000150, "Member 'UDrawAndRevolveTool::Settings' has a wrong offset!"); \ +static_assert(offsetof(UDrawAndRevolveTool, MaterialProperties) == 0x000158, "Member 'UDrawAndRevolveTool::MaterialProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawAndRevolveTool, Preview) == 0x000160, "Member 'UDrawAndRevolveTool::Preview' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawPolygonToolBuilder \ +static_assert(alignof(UDrawPolygonToolBuilder) == 0x000008, "Wrong alignment on UDrawPolygonToolBuilder"); \ +static_assert(sizeof(UDrawPolygonToolBuilder) == 0x000028, "Wrong size on UDrawPolygonToolBuilder"); \ + +#define DUMPER7_ASSERTS_UDrawPolygonToolStandardProperties \ +static_assert(alignof(UDrawPolygonToolStandardProperties) == 0x000008, "Wrong alignment on UDrawPolygonToolStandardProperties"); \ +static_assert(sizeof(UDrawPolygonToolStandardProperties) == 0x0000C0, "Wrong size on UDrawPolygonToolStandardProperties"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, PolygonDrawMode) == 0x0000A8, "Member 'UDrawPolygonToolStandardProperties::PolygonDrawMode' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, bAllowSelfIntersections) == 0x0000A9, "Member 'UDrawPolygonToolStandardProperties::bAllowSelfIntersections' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, FeatureSizeRatio) == 0x0000AC, "Member 'UDrawPolygonToolStandardProperties::FeatureSizeRatio' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, RadialSlices) == 0x0000B0, "Member 'UDrawPolygonToolStandardProperties::RadialSlices' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, Distance) == 0x0000B4, "Member 'UDrawPolygonToolStandardProperties::Distance' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, bShowGridGizmo) == 0x0000B8, "Member 'UDrawPolygonToolStandardProperties::bShowGridGizmo' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, ExtrudeMode) == 0x0000B9, "Member 'UDrawPolygonToolStandardProperties::ExtrudeMode' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolStandardProperties, ExtrudeHeight) == 0x0000BC, "Member 'UDrawPolygonToolStandardProperties::ExtrudeHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawPolygonToolSnapProperties \ +static_assert(alignof(UDrawPolygonToolSnapProperties) == 0x000008, "Wrong alignment on UDrawPolygonToolSnapProperties"); \ +static_assert(sizeof(UDrawPolygonToolSnapProperties) == 0x0000B8, "Wrong size on UDrawPolygonToolSnapProperties"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bEnableSnapping) == 0x0000A8, "Member 'UDrawPolygonToolSnapProperties::bEnableSnapping' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToWorldGrid) == 0x0000A9, "Member 'UDrawPolygonToolSnapProperties::bSnapToWorldGrid' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToVertices) == 0x0000AA, "Member 'UDrawPolygonToolSnapProperties::bSnapToVertices' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToEdges) == 0x0000AB, "Member 'UDrawPolygonToolSnapProperties::bSnapToEdges' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToAxes) == 0x0000AC, "Member 'UDrawPolygonToolSnapProperties::bSnapToAxes' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToLengths) == 0x0000AD, "Member 'UDrawPolygonToolSnapProperties::bSnapToLengths' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, bSnapToSurfaces) == 0x0000AE, "Member 'UDrawPolygonToolSnapProperties::bSnapToSurfaces' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonToolSnapProperties, SnapToSurfacesOffset) == 0x0000B0, "Member 'UDrawPolygonToolSnapProperties::SnapToSurfacesOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDrawPolygonTool \ +static_assert(alignof(UDrawPolygonTool) == 0x000010, "Wrong alignment on UDrawPolygonTool"); \ +static_assert(sizeof(UDrawPolygonTool) == 0x000560, "Wrong size on UDrawPolygonTool"); \ +static_assert(offsetof(UDrawPolygonTool, OutputTypeProperties) == 0x0000A8, "Member 'UDrawPolygonTool::OutputTypeProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, PolygonProperties) == 0x0000B0, "Member 'UDrawPolygonTool::PolygonProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, SnapProperties) == 0x0000B8, "Member 'UDrawPolygonTool::SnapProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, MaterialProperties) == 0x0000C0, "Member 'UDrawPolygonTool::MaterialProperties' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, PreviewMesh) == 0x000160, "Member 'UDrawPolygonTool::PreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, HeightMechanic) == 0x000538, "Member 'UDrawPolygonTool::HeightMechanic' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, DragAlignmentMechanic) == 0x000540, "Member 'UDrawPolygonTool::DragAlignmentMechanic' has a wrong offset!"); \ +static_assert(offsetof(UDrawPolygonTool, PlaneMechanic) == 0x000548, "Member 'UDrawPolygonTool::PlaneMechanic' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditCommonProperties \ +static_assert(alignof(UPolyEditCommonProperties) == 0x000008, "Wrong alignment on UPolyEditCommonProperties"); \ +static_assert(sizeof(UPolyEditCommonProperties) == 0x0000B8, "Wrong size on UPolyEditCommonProperties"); \ +static_assert(offsetof(UPolyEditCommonProperties, bShowWireframe) == 0x0000A8, "Member 'UPolyEditCommonProperties::bShowWireframe' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCommonProperties, bShowSelectableCorners) == 0x0000A9, "Member 'UPolyEditCommonProperties::bShowSelectableCorners' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCommonProperties, bGizmoVisible) == 0x0000AA, "Member 'UPolyEditCommonProperties::bGizmoVisible' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCommonProperties, LocalFrameMode) == 0x0000AC, "Member 'UPolyEditCommonProperties::LocalFrameMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCommonProperties, bLockRotation) == 0x0000B0, "Member 'UPolyEditCommonProperties::bLockRotation' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCommonProperties, bLocalCoordSystem) == 0x0000B1, "Member 'UPolyEditCommonProperties::bLocalCoordSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEditMeshPolygonsToolAcceptCancelAction \ +static_assert(alignof(UEditMeshPolygonsToolAcceptCancelAction) == 0x000008, "Wrong alignment on UEditMeshPolygonsToolAcceptCancelAction"); \ +static_assert(sizeof(UEditMeshPolygonsToolAcceptCancelAction) == 0x0000B0, "Wrong size on UEditMeshPolygonsToolAcceptCancelAction"); \ + +#define DUMPER7_ASSERTS_UNewMeshMaterialProperties \ +static_assert(alignof(UNewMeshMaterialProperties) == 0x000008, "Wrong alignment on UNewMeshMaterialProperties"); \ +static_assert(sizeof(UNewMeshMaterialProperties) == 0x0000B8, "Wrong size on UNewMeshMaterialProperties"); \ +static_assert(offsetof(UNewMeshMaterialProperties, Material) == 0x0000A8, "Member 'UNewMeshMaterialProperties::Material' has a wrong offset!"); \ +static_assert(offsetof(UNewMeshMaterialProperties, UVScale) == 0x0000B0, "Member 'UNewMeshMaterialProperties::UVScale' has a wrong offset!"); \ +static_assert(offsetof(UNewMeshMaterialProperties, bWorldSpaceUVScale) == 0x0000B4, "Member 'UNewMeshMaterialProperties::bWorldSpaceUVScale' has a wrong offset!"); \ +static_assert(offsetof(UNewMeshMaterialProperties, bShowWireframe) == 0x0000B5, "Member 'UNewMeshMaterialProperties::bShowWireframe' has a wrong offset!"); \ +static_assert(offsetof(UNewMeshMaterialProperties, bShowExtendedOptions) == 0x0000B6, "Member 'UNewMeshMaterialProperties::bShowExtendedOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshEditingViewProperties \ +static_assert(alignof(UMeshEditingViewProperties) == 0x000008, "Wrong alignment on UMeshEditingViewProperties"); \ +static_assert(sizeof(UMeshEditingViewProperties) == 0x0000F8, "Wrong size on UMeshEditingViewProperties"); \ +static_assert(offsetof(UMeshEditingViewProperties, bShowWireframe) == 0x0000A8, "Member 'UMeshEditingViewProperties::bShowWireframe' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, MaterialMode) == 0x0000AC, "Member 'UMeshEditingViewProperties::MaterialMode' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, bFlatShading) == 0x0000B0, "Member 'UMeshEditingViewProperties::bFlatShading' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, Color) == 0x0000B4, "Member 'UMeshEditingViewProperties::Color' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, Image) == 0x0000C8, "Member 'UMeshEditingViewProperties::Image' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, Opacity) == 0x0000D0, "Member 'UMeshEditingViewProperties::Opacity' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, TransparentMaterialColor) == 0x0000D8, "Member 'UMeshEditingViewProperties::TransparentMaterialColor' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, bTwoSided) == 0x0000E8, "Member 'UMeshEditingViewProperties::bTwoSided' has a wrong offset!"); \ +static_assert(offsetof(UMeshEditingViewProperties, CustomMaterial) == 0x0000EC, "Member 'UMeshEditingViewProperties::CustomMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MeshUVChannelProperties_GetUVChannelNamesFunc \ +static_assert(alignof(MeshUVChannelProperties_GetUVChannelNamesFunc) == 0x000008, "Wrong alignment on MeshUVChannelProperties_GetUVChannelNamesFunc"); \ +static_assert(sizeof(MeshUVChannelProperties_GetUVChannelNamesFunc) == 0x000010, "Wrong size on MeshUVChannelProperties_GetUVChannelNamesFunc"); \ +static_assert(offsetof(MeshUVChannelProperties_GetUVChannelNamesFunc, ReturnValue) == 0x000000, "Member 'MeshUVChannelProperties_GetUVChannelNamesFunc::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMeshUVChannelProperties \ +static_assert(alignof(UMeshUVChannelProperties) == 0x000008, "Wrong alignment on UMeshUVChannelProperties"); \ +static_assert(sizeof(UMeshUVChannelProperties) == 0x0000C8, "Wrong size on UMeshUVChannelProperties"); \ +static_assert(offsetof(UMeshUVChannelProperties, UVChannel) == 0x0000A8, "Member 'UMeshUVChannelProperties::UVChannel' has a wrong offset!"); \ +static_assert(offsetof(UMeshUVChannelProperties, UVChannelNamesList) == 0x0000B8, "Member 'UMeshUVChannelProperties::UVChannelNamesList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URecomputeUVsToolBuilder \ +static_assert(alignof(URecomputeUVsToolBuilder) == 0x000008, "Wrong alignment on URecomputeUVsToolBuilder"); \ +static_assert(sizeof(URecomputeUVsToolBuilder) == 0x000028, "Wrong size on URecomputeUVsToolBuilder"); \ + +#define DUMPER7_ASSERTS_URecomputeUVsTool \ +static_assert(alignof(URecomputeUVsTool) == 0x000008, "Wrong alignment on URecomputeUVsTool"); \ +static_assert(sizeof(URecomputeUVsTool) == 0x000120, "Wrong size on URecomputeUVsTool"); \ +static_assert(offsetof(URecomputeUVsTool, UVChannelProperties) == 0x0000C0, "Member 'URecomputeUVsTool::UVChannelProperties' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, Settings) == 0x0000C8, "Member 'URecomputeUVsTool::Settings' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, PolygroupLayerProperties) == 0x0000D0, "Member 'URecomputeUVsTool::PolygroupLayerProperties' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, MaterialSettings) == 0x0000D8, "Member 'URecomputeUVsTool::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, bCreateUVLayoutViewOnSetup) == 0x0000E0, "Member 'URecomputeUVsTool::bCreateUVLayoutViewOnSetup' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, UVLayoutView) == 0x0000E8, "Member 'URecomputeUVsTool::UVLayoutView' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, RecomputeUVsOpFactory) == 0x0000F0, "Member 'URecomputeUVsTool::RecomputeUVsOpFactory' has a wrong offset!"); \ +static_assert(offsetof(URecomputeUVsTool, Preview) == 0x0000F8, "Member 'URecomputeUVsTool::Preview' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditBevelEdgeProperties \ +static_assert(alignof(UPolyEditBevelEdgeProperties) == 0x000008, "Wrong alignment on UPolyEditBevelEdgeProperties"); \ +static_assert(sizeof(UPolyEditBevelEdgeProperties) == 0x0000B0, "Wrong size on UPolyEditBevelEdgeProperties"); \ +static_assert(offsetof(UPolyEditBevelEdgeProperties, BevelDistance) == 0x0000A8, "Member 'UPolyEditBevelEdgeProperties::BevelDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditBevelEdgeActivity \ +static_assert(alignof(UPolyEditBevelEdgeActivity) == 0x000008, "Wrong alignment on UPolyEditBevelEdgeActivity"); \ +static_assert(sizeof(UPolyEditBevelEdgeActivity) == 0x000140, "Wrong size on UPolyEditBevelEdgeActivity"); \ +static_assert(offsetof(UPolyEditBevelEdgeActivity, BevelProperties) == 0x000038, "Member 'UPolyEditBevelEdgeActivity::BevelProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditBevelEdgeActivity, ActivityContext) == 0x000040, "Member 'UPolyEditBevelEdgeActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditCutProperties \ +static_assert(alignof(UPolyEditCutProperties) == 0x000008, "Wrong alignment on UPolyEditCutProperties"); \ +static_assert(sizeof(UPolyEditCutProperties) == 0x0000B0, "Wrong size on UPolyEditCutProperties"); \ +static_assert(offsetof(UPolyEditCutProperties, Orientation) == 0x0000A8, "Member 'UPolyEditCutProperties::Orientation' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditCutProperties, bSnapToVertices) == 0x0000AC, "Member 'UPolyEditCutProperties::bSnapToVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditExtrudeProperties \ +static_assert(alignof(UPolyEditExtrudeProperties) == 0x000008, "Wrong alignment on UPolyEditExtrudeProperties"); \ +static_assert(sizeof(UPolyEditExtrudeProperties) == 0x0000D8, "Wrong size on UPolyEditExtrudeProperties"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, DistanceMode) == 0x0000A8, "Member 'UPolyEditExtrudeProperties::DistanceMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, Distance) == 0x0000B0, "Member 'UPolyEditExtrudeProperties::Distance' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, Direction) == 0x0000B8, "Member 'UPolyEditExtrudeProperties::Direction' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, MeasureDirection) == 0x0000BC, "Member 'UPolyEditExtrudeProperties::MeasureDirection' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, bShellsToSolids) == 0x0000C0, "Member 'UPolyEditExtrudeProperties::bShellsToSolids' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, DirectionMode) == 0x0000C4, "Member 'UPolyEditExtrudeProperties::DirectionMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, MaxDistanceScaleFactor) == 0x0000C8, "Member 'UPolyEditExtrudeProperties::MaxDistanceScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeProperties, bUseColinearityForSettingBorderGroups) == 0x0000D0, "Member 'UPolyEditExtrudeProperties::bUseColinearityForSettingBorderGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditPushPullProperties \ +static_assert(alignof(UPolyEditPushPullProperties) == 0x000008, "Wrong alignment on UPolyEditPushPullProperties"); \ +static_assert(sizeof(UPolyEditPushPullProperties) == 0x0000D8, "Wrong size on UPolyEditPushPullProperties"); \ +static_assert(offsetof(UPolyEditPushPullProperties, DistanceMode) == 0x0000A8, "Member 'UPolyEditPushPullProperties::DistanceMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, Distance) == 0x0000B0, "Member 'UPolyEditPushPullProperties::Distance' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, DirectionMode) == 0x0000B8, "Member 'UPolyEditPushPullProperties::DirectionMode' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, MaxDistanceScaleFactor) == 0x0000C0, "Member 'UPolyEditPushPullProperties::MaxDistanceScaleFactor' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, bShellsToSolids) == 0x0000C8, "Member 'UPolyEditPushPullProperties::bShellsToSolids' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, MeasureDirection) == 0x0000CC, "Member 'UPolyEditPushPullProperties::MeasureDirection' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPushPullProperties, bUseColinearityForSettingBorderGroups) == 0x0000D0, "Member 'UPolyEditPushPullProperties::bUseColinearityForSettingBorderGroups' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditExtrudeActivity \ +static_assert(alignof(UPolyEditExtrudeActivity) == 0x000008, "Wrong alignment on UPolyEditExtrudeActivity"); \ +static_assert(sizeof(UPolyEditExtrudeActivity) == 0x0001D0, "Wrong size on UPolyEditExtrudeActivity"); \ +static_assert(offsetof(UPolyEditExtrudeActivity, ExtrudeProperties) == 0x000050, "Member 'UPolyEditExtrudeActivity::ExtrudeProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeActivity, OffsetProperties) == 0x000058, "Member 'UPolyEditExtrudeActivity::OffsetProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeActivity, PushPullProperties) == 0x000060, "Member 'UPolyEditExtrudeActivity::PushPullProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeActivity, ExtrudeHeightMechanic) == 0x000068, "Member 'UPolyEditExtrudeActivity::ExtrudeHeightMechanic' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditExtrudeActivity, ActivityContext) == 0x000070, "Member 'UPolyEditExtrudeActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGroupEdgeInsertionProperties \ +static_assert(alignof(UGroupEdgeInsertionProperties) == 0x000008, "Wrong alignment on UGroupEdgeInsertionProperties"); \ +static_assert(sizeof(UGroupEdgeInsertionProperties) == 0x0000B8, "Wrong size on UGroupEdgeInsertionProperties"); \ +static_assert(offsetof(UGroupEdgeInsertionProperties, InsertionMode) == 0x0000A8, "Member 'UGroupEdgeInsertionProperties::InsertionMode' has a wrong offset!"); \ +static_assert(offsetof(UGroupEdgeInsertionProperties, bContinuousInsertion) == 0x0000AC, "Member 'UGroupEdgeInsertionProperties::bContinuousInsertion' has a wrong offset!"); \ +static_assert(offsetof(UGroupEdgeInsertionProperties, VertexTolerance) == 0x0000B0, "Member 'UGroupEdgeInsertionProperties::VertexTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditInsertEdgeActivity \ +static_assert(alignof(UPolyEditInsertEdgeActivity) == 0x000010, "Wrong alignment on UPolyEditInsertEdgeActivity"); \ +static_assert(sizeof(UPolyEditInsertEdgeActivity) == 0x000470, "Wrong size on UPolyEditInsertEdgeActivity"); \ +static_assert(offsetof(UPolyEditInsertEdgeActivity, Settings) == 0x000048, "Member 'UPolyEditInsertEdgeActivity::Settings' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsertEdgeActivity, ActivityContext) == 0x000050, "Member 'UPolyEditInsertEdgeActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEdgeLoopInsertionProperties \ +static_assert(alignof(UEdgeLoopInsertionProperties) == 0x000008, "Wrong alignment on UEdgeLoopInsertionProperties"); \ +static_assert(sizeof(UEdgeLoopInsertionProperties) == 0x0000D8, "Wrong size on UEdgeLoopInsertionProperties"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, PositionMode) == 0x0000A8, "Member 'UEdgeLoopInsertionProperties::PositionMode' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, InsertionMode) == 0x0000AC, "Member 'UEdgeLoopInsertionProperties::InsertionMode' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, NumLoops) == 0x0000B0, "Member 'UEdgeLoopInsertionProperties::NumLoops' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, ProportionOffset) == 0x0000B8, "Member 'UEdgeLoopInsertionProperties::ProportionOffset' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, DistanceOffset) == 0x0000C0, "Member 'UEdgeLoopInsertionProperties::DistanceOffset' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, bInteractive) == 0x0000C8, "Member 'UEdgeLoopInsertionProperties::bInteractive' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, bFlipOffsetDirection) == 0x0000C9, "Member 'UEdgeLoopInsertionProperties::bFlipOffsetDirection' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, bHighlightProblemGroups) == 0x0000CA, "Member 'UEdgeLoopInsertionProperties::bHighlightProblemGroups' has a wrong offset!"); \ +static_assert(offsetof(UEdgeLoopInsertionProperties, VertexTolerance) == 0x0000D0, "Member 'UEdgeLoopInsertionProperties::VertexTolerance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditInsetOutsetProperties \ +static_assert(alignof(UPolyEditInsetOutsetProperties) == 0x000008, "Wrong alignment on UPolyEditInsetOutsetProperties"); \ +static_assert(sizeof(UPolyEditInsetOutsetProperties) == 0x0000B8, "Wrong size on UPolyEditInsetOutsetProperties"); \ +static_assert(offsetof(UPolyEditInsetOutsetProperties, Softness) == 0x0000A8, "Member 'UPolyEditInsetOutsetProperties::Softness' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetProperties, bBoundaryOnly) == 0x0000AC, "Member 'UPolyEditInsetOutsetProperties::bBoundaryOnly' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetProperties, AreaScale) == 0x0000B0, "Member 'UPolyEditInsetOutsetProperties::AreaScale' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetProperties, bReproject) == 0x0000B4, "Member 'UPolyEditInsetOutsetProperties::bReproject' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetProperties, bOutset) == 0x0000B5, "Member 'UPolyEditInsetOutsetProperties::bOutset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditInsetOutsetActivity \ +static_assert(alignof(UPolyEditInsetOutsetActivity) == 0x000008, "Wrong alignment on UPolyEditInsetOutsetActivity"); \ +static_assert(sizeof(UPolyEditInsetOutsetActivity) == 0x000070, "Wrong size on UPolyEditInsetOutsetActivity"); \ +static_assert(offsetof(UPolyEditInsetOutsetActivity, Settings) == 0x000040, "Member 'UPolyEditInsetOutsetActivity::Settings' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetActivity, EditPreview) == 0x000050, "Member 'UPolyEditInsetOutsetActivity::EditPreview' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetActivity, CurveDistMechanic) == 0x000058, "Member 'UPolyEditInsetOutsetActivity::CurveDistMechanic' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditInsetOutsetActivity, ActivityContext) == 0x000060, "Member 'UPolyEditInsetOutsetActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditSetUVProperties \ +static_assert(alignof(UPolyEditSetUVProperties) == 0x000008, "Wrong alignment on UPolyEditSetUVProperties"); \ +static_assert(sizeof(UPolyEditSetUVProperties) == 0x0000B0, "Wrong size on UPolyEditSetUVProperties"); \ +static_assert(offsetof(UPolyEditSetUVProperties, bShowMaterial) == 0x0000A8, "Member 'UPolyEditSetUVProperties::bShowMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPolyEditPlanarProjectionUVActivity \ +static_assert(alignof(UPolyEditPlanarProjectionUVActivity) == 0x000010, "Wrong alignment on UPolyEditPlanarProjectionUVActivity"); \ +static_assert(sizeof(UPolyEditPlanarProjectionUVActivity) == 0x0000F0, "Wrong size on UPolyEditPlanarProjectionUVActivity"); \ +static_assert(offsetof(UPolyEditPlanarProjectionUVActivity, SetUVProperties) == 0x000040, "Member 'UPolyEditPlanarProjectionUVActivity::SetUVProperties' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPlanarProjectionUVActivity, EditPreview) == 0x000048, "Member 'UPolyEditPlanarProjectionUVActivity::EditPreview' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPlanarProjectionUVActivity, SurfacePathMechanic) == 0x000050, "Member 'UPolyEditPlanarProjectionUVActivity::SurfacePathMechanic' has a wrong offset!"); \ +static_assert(offsetof(UPolyEditPlanarProjectionUVActivity, ActivityContext) == 0x000058, "Member 'UPolyEditPlanarProjectionUVActivity::ActivityContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVLayoutToolBuilder \ +static_assert(alignof(UUVLayoutToolBuilder) == 0x000008, "Wrong alignment on UUVLayoutToolBuilder"); \ +static_assert(sizeof(UUVLayoutToolBuilder) == 0x000028, "Wrong size on UUVLayoutToolBuilder"); \ + +#define DUMPER7_ASSERTS_UUVLayoutTool \ +static_assert(alignof(UUVLayoutTool) == 0x000010, "Wrong alignment on UUVLayoutTool"); \ +static_assert(sizeof(UUVLayoutTool) == 0x000170, "Wrong size on UUVLayoutTool"); \ +static_assert(offsetof(UUVLayoutTool, UVChannelProperties) == 0x0000C0, "Member 'UUVLayoutTool::UVChannelProperties' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutTool, BasicProperties) == 0x0000C8, "Member 'UUVLayoutTool::BasicProperties' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutTool, MaterialSettings) == 0x0000D0, "Member 'UUVLayoutTool::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutTool, Previews) == 0x0000D8, "Member 'UUVLayoutTool::Previews' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutTool, Factories) == 0x0000E8, "Member 'UUVLayoutTool::Factories' has a wrong offset!"); \ +static_assert(offsetof(UUVLayoutTool, UVLayoutView) == 0x000160, "Member 'UUVLayoutTool::UVLayoutView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVProjectionToolBuilder \ +static_assert(alignof(UUVProjectionToolBuilder) == 0x000008, "Wrong alignment on UUVProjectionToolBuilder"); \ +static_assert(sizeof(UUVProjectionToolBuilder) == 0x000028, "Wrong size on UUVProjectionToolBuilder"); \ + +#define DUMPER7_ASSERTS_UUVProjectionToolEditActions \ +static_assert(alignof(UUVProjectionToolEditActions) == 0x000008, "Wrong alignment on UUVProjectionToolEditActions"); \ +static_assert(sizeof(UUVProjectionToolEditActions) == 0x0000B0, "Wrong size on UUVProjectionToolEditActions"); \ + +#define DUMPER7_ASSERTS_UUVProjectionToolProperties \ +static_assert(alignof(UUVProjectionToolProperties) == 0x000010, "Wrong alignment on UUVProjectionToolProperties"); \ +static_assert(sizeof(UUVProjectionToolProperties) == 0x000190, "Wrong size on UUVProjectionToolProperties"); \ +static_assert(offsetof(UUVProjectionToolProperties, ProjectionType) == 0x0000A8, "Member 'UUVProjectionToolProperties::ProjectionType' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, Dimensions) == 0x0000B0, "Member 'UUVProjectionToolProperties::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, bProportionalDimensions) == 0x0000C8, "Member 'UUVProjectionToolProperties::bProportionalDimensions' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, Initialization) == 0x0000CC, "Member 'UUVProjectionToolProperties::Initialization' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, CylinderSplitAngle) == 0x0000D0, "Member 'UUVProjectionToolProperties::CylinderSplitAngle' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, ExpMapNormalBlending) == 0x0000D4, "Member 'UUVProjectionToolProperties::ExpMapNormalBlending' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, ExpMapSmoothingSteps) == 0x0000D8, "Member 'UUVProjectionToolProperties::ExpMapSmoothingSteps' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, ExpMapSmoothingAlpha) == 0x0000DC, "Member 'UUVProjectionToolProperties::ExpMapSmoothingAlpha' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, Rotation) == 0x0000E0, "Member 'UUVProjectionToolProperties::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, Scale) == 0x0000E8, "Member 'UUVProjectionToolProperties::Scale' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, Translation) == 0x0000F8, "Member 'UUVProjectionToolProperties::Translation' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, SavedDimensions) == 0x000108, "Member 'UUVProjectionToolProperties::SavedDimensions' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, bSavedProportionalDimensions) == 0x000120, "Member 'UUVProjectionToolProperties::bSavedProportionalDimensions' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionToolProperties, SavedTransform) == 0x000130, "Member 'UUVProjectionToolProperties::SavedTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVProjectionOperatorFactory \ +static_assert(alignof(UUVProjectionOperatorFactory) == 0x000008, "Wrong alignment on UUVProjectionOperatorFactory"); \ +static_assert(sizeof(UUVProjectionOperatorFactory) == 0x000038, "Wrong size on UUVProjectionOperatorFactory"); \ +static_assert(offsetof(UUVProjectionOperatorFactory, Tool) == 0x000030, "Member 'UUVProjectionOperatorFactory::Tool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUVProjectionTool \ +static_assert(alignof(UUVProjectionTool) == 0x000010, "Wrong alignment on UUVProjectionTool"); \ +static_assert(sizeof(UUVProjectionTool) == 0x0004E0, "Wrong size on UUVProjectionTool"); \ +static_assert(offsetof(UUVProjectionTool, UVChannelProperties) == 0x000128, "Member 'UUVProjectionTool::UVChannelProperties' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, BasicProperties) == 0x000130, "Member 'UUVProjectionTool::BasicProperties' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, EditActions) == 0x000138, "Member 'UUVProjectionTool::EditActions' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, MaterialSettings) == 0x000140, "Member 'UUVProjectionTool::MaterialSettings' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, Preview) == 0x000148, "Member 'UUVProjectionTool::Preview' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, CheckerMaterial) == 0x000150, "Member 'UUVProjectionTool::CheckerMaterial' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, TransformGizmo) == 0x000158, "Member 'UUVProjectionTool::TransformGizmo' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, TransformProxy) == 0x000160, "Member 'UUVProjectionTool::TransformProxy' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, OperatorFactory) == 0x000168, "Member 'UUVProjectionTool::OperatorFactory' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, EdgeRenderer) == 0x000170, "Member 'UUVProjectionTool::EdgeRenderer' has a wrong offset!"); \ +static_assert(offsetof(UUVProjectionTool, ClickToSetPlaneBehavior) == 0x0004C8, "Member 'UUVProjectionTool::ClickToSetPlaneBehavior' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_GetDeepDVCIntensity \ +static_assert(alignof(StreamlineLibraryDeepDVC_GetDeepDVCIntensity) == 0x000004, "Wrong alignment on StreamlineLibraryDeepDVC_GetDeepDVCIntensity"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_GetDeepDVCIntensity) == 0x000004, "Wrong size on StreamlineLibraryDeepDVC_GetDeepDVCIntensity"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_GetDeepDVCIntensity, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_GetDeepDVCIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_GetDeepDVCMode \ +static_assert(alignof(StreamlineLibraryDeepDVC_GetDeepDVCMode) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_GetDeepDVCMode"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_GetDeepDVCMode) == 0x000001, "Wrong size on StreamlineLibraryDeepDVC_GetDeepDVCMode"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_GetDeepDVCMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_GetDeepDVCMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost \ +static_assert(alignof(StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost) == 0x000004, "Wrong alignment on StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost) == 0x000004, "Wrong size on StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_GetDeepDVCSaturationBoost::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode \ +static_assert(alignof(StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode) == 0x000001, "Wrong size on StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_GetDefaultDeepDVCMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes \ +static_assert(alignof(StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes) == 0x000008, "Wrong alignment on StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes) == 0x000010, "Wrong size on StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_GetSupportedDeepDVCModes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_IsDeepDVCModeSupported \ +static_assert(alignof(StreamlineLibraryDeepDVC_IsDeepDVCModeSupported) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_IsDeepDVCModeSupported"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_IsDeepDVCModeSupported) == 0x000002, "Wrong size on StreamlineLibraryDeepDVC_IsDeepDVCModeSupported"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_IsDeepDVCModeSupported, DeepDVCMode) == 0x000000, "Member 'StreamlineLibraryDeepDVC_IsDeepDVCModeSupported::DeepDVCMode' has a wrong offset!"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_IsDeepDVCModeSupported, ReturnValue) == 0x000001, "Member 'StreamlineLibraryDeepDVC_IsDeepDVCModeSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_IsDeepDVCSupported \ +static_assert(alignof(StreamlineLibraryDeepDVC_IsDeepDVCSupported) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_IsDeepDVCSupported"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_IsDeepDVCSupported) == 0x000001, "Wrong size on StreamlineLibraryDeepDVC_IsDeepDVCSupported"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_IsDeepDVCSupported, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_IsDeepDVCSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_QueryDeepDVCSupport \ +static_assert(alignof(StreamlineLibraryDeepDVC_QueryDeepDVCSupport) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_QueryDeepDVCSupport"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_QueryDeepDVCSupport) == 0x000001, "Wrong size on StreamlineLibraryDeepDVC_QueryDeepDVCSupport"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_QueryDeepDVCSupport, ReturnValue) == 0x000000, "Member 'StreamlineLibraryDeepDVC_QueryDeepDVCSupport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_SetDeepDVCIntensity \ +static_assert(alignof(StreamlineLibraryDeepDVC_SetDeepDVCIntensity) == 0x000004, "Wrong alignment on StreamlineLibraryDeepDVC_SetDeepDVCIntensity"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_SetDeepDVCIntensity) == 0x000004, "Wrong size on StreamlineLibraryDeepDVC_SetDeepDVCIntensity"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_SetDeepDVCIntensity, Intensity) == 0x000000, "Member 'StreamlineLibraryDeepDVC_SetDeepDVCIntensity::Intensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_SetDeepDVCMode \ +static_assert(alignof(StreamlineLibraryDeepDVC_SetDeepDVCMode) == 0x000001, "Wrong alignment on StreamlineLibraryDeepDVC_SetDeepDVCMode"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_SetDeepDVCMode) == 0x000001, "Wrong size on StreamlineLibraryDeepDVC_SetDeepDVCMode"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_SetDeepDVCMode, DeepDVCMode) == 0x000000, "Member 'StreamlineLibraryDeepDVC_SetDeepDVCMode::DeepDVCMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost \ +static_assert(alignof(StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost) == 0x000004, "Wrong alignment on StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost"); \ +static_assert(sizeof(StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost) == 0x000004, "Wrong size on StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost"); \ +static_assert(offsetof(StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost, Intensity) == 0x000000, "Member 'StreamlineLibraryDeepDVC_SetDeepDVCSaturationBoost::Intensity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStreamlineLibraryDeepDVC \ +static_assert(alignof(UStreamlineLibraryDeepDVC) == 0x000008, "Wrong alignment on UStreamlineLibraryDeepDVC"); \ +static_assert(sizeof(UStreamlineLibraryDeepDVC) == 0x000028, "Wrong size on UStreamlineLibraryDeepDVC"); \ + +#define DUMPER7_ASSERTS_NISLibrary_GetDefaultNISMode \ +static_assert(alignof(NISLibrary_GetDefaultNISMode) == 0x000001, "Wrong alignment on NISLibrary_GetDefaultNISMode"); \ +static_assert(sizeof(NISLibrary_GetDefaultNISMode) == 0x000001, "Wrong size on NISLibrary_GetDefaultNISMode"); \ +static_assert(offsetof(NISLibrary_GetDefaultNISMode, ReturnValue) == 0x000000, "Member 'NISLibrary_GetDefaultNISMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_GetNISRecommendedScreenPercentage \ +static_assert(alignof(NISLibrary_GetNISRecommendedScreenPercentage) == 0x000004, "Wrong alignment on NISLibrary_GetNISRecommendedScreenPercentage"); \ +static_assert(sizeof(NISLibrary_GetNISRecommendedScreenPercentage) == 0x000008, "Wrong size on NISLibrary_GetNISRecommendedScreenPercentage"); \ +static_assert(offsetof(NISLibrary_GetNISRecommendedScreenPercentage, NISMode) == 0x000000, "Member 'NISLibrary_GetNISRecommendedScreenPercentage::NISMode' has a wrong offset!"); \ +static_assert(offsetof(NISLibrary_GetNISRecommendedScreenPercentage, ReturnValue) == 0x000004, "Member 'NISLibrary_GetNISRecommendedScreenPercentage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_GetNISScreenPercentageRange \ +static_assert(alignof(NISLibrary_GetNISScreenPercentageRange) == 0x000004, "Wrong alignment on NISLibrary_GetNISScreenPercentageRange"); \ +static_assert(sizeof(NISLibrary_GetNISScreenPercentageRange) == 0x000008, "Wrong size on NISLibrary_GetNISScreenPercentageRange"); \ +static_assert(offsetof(NISLibrary_GetNISScreenPercentageRange, MinScreenPercentage) == 0x000000, "Member 'NISLibrary_GetNISScreenPercentageRange::MinScreenPercentage' has a wrong offset!"); \ +static_assert(offsetof(NISLibrary_GetNISScreenPercentageRange, MaxScreenPercentage) == 0x000004, "Member 'NISLibrary_GetNISScreenPercentageRange::MaxScreenPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_GetSupportedNISModes \ +static_assert(alignof(NISLibrary_GetSupportedNISModes) == 0x000008, "Wrong alignment on NISLibrary_GetSupportedNISModes"); \ +static_assert(sizeof(NISLibrary_GetSupportedNISModes) == 0x000010, "Wrong size on NISLibrary_GetSupportedNISModes"); \ +static_assert(offsetof(NISLibrary_GetSupportedNISModes, ReturnValue) == 0x000000, "Member 'NISLibrary_GetSupportedNISModes::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_IsNISModeSupported \ +static_assert(alignof(NISLibrary_IsNISModeSupported) == 0x000001, "Wrong alignment on NISLibrary_IsNISModeSupported"); \ +static_assert(sizeof(NISLibrary_IsNISModeSupported) == 0x000002, "Wrong size on NISLibrary_IsNISModeSupported"); \ +static_assert(offsetof(NISLibrary_IsNISModeSupported, NISMode) == 0x000000, "Member 'NISLibrary_IsNISModeSupported::NISMode' has a wrong offset!"); \ +static_assert(offsetof(NISLibrary_IsNISModeSupported, ReturnValue) == 0x000001, "Member 'NISLibrary_IsNISModeSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_IsNISSupported \ +static_assert(alignof(NISLibrary_IsNISSupported) == 0x000001, "Wrong alignment on NISLibrary_IsNISSupported"); \ +static_assert(sizeof(NISLibrary_IsNISSupported) == 0x000001, "Wrong size on NISLibrary_IsNISSupported"); \ +static_assert(offsetof(NISLibrary_IsNISSupported, ReturnValue) == 0x000000, "Member 'NISLibrary_IsNISSupported::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_SetNISCustomScreenPercentage \ +static_assert(alignof(NISLibrary_SetNISCustomScreenPercentage) == 0x000004, "Wrong alignment on NISLibrary_SetNISCustomScreenPercentage"); \ +static_assert(sizeof(NISLibrary_SetNISCustomScreenPercentage) == 0x000004, "Wrong size on NISLibrary_SetNISCustomScreenPercentage"); \ +static_assert(offsetof(NISLibrary_SetNISCustomScreenPercentage, CustomScreenPercentage) == 0x000000, "Member 'NISLibrary_SetNISCustomScreenPercentage::CustomScreenPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_SetNISMode \ +static_assert(alignof(NISLibrary_SetNISMode) == 0x000001, "Wrong alignment on NISLibrary_SetNISMode"); \ +static_assert(sizeof(NISLibrary_SetNISMode) == 0x000001, "Wrong size on NISLibrary_SetNISMode"); \ +static_assert(offsetof(NISLibrary_SetNISMode, NISMode) == 0x000000, "Member 'NISLibrary_SetNISMode::NISMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NISLibrary_SetNISSharpness \ +static_assert(alignof(NISLibrary_SetNISSharpness) == 0x000004, "Wrong alignment on NISLibrary_SetNISSharpness"); \ +static_assert(sizeof(NISLibrary_SetNISSharpness) == 0x000004, "Wrong size on NISLibrary_SetNISSharpness"); \ +static_assert(offsetof(NISLibrary_SetNISSharpness, Sharpness) == 0x000000, "Member 'NISLibrary_SetNISSharpness::Sharpness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNISLibrary \ +static_assert(alignof(UNISLibrary) == 0x000008, "Wrong alignment on UNISLibrary"); \ +static_assert(sizeof(UNISLibrary) == 0x000028, "Wrong size on UNISLibrary"); \ + +#define DUMPER7_ASSERTS_ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings \ +static_assert(alignof(ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings) == 0x000008, "Wrong alignment on ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings"); \ +static_assert(sizeof(ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings) == 0x000018, "Wrong size on ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings"); \ +static_assert(offsetof(ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings, EntryPoint) == 0x000000, "Member 'ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000008, "Member 'ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'ST_Evaluator_MovementSettings_C_ExecuteUbergraph_ST_Evaluator_MovementSettings::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UST_Evaluator_MovementSettings_C \ +static_assert(alignof(UST_Evaluator_MovementSettings_C) == 0x000008, "Wrong alignment on UST_Evaluator_MovementSettings_C"); \ +static_assert(sizeof(UST_Evaluator_MovementSettings_C) == 0x000060, "Wrong size on UST_Evaluator_MovementSettings_C"); \ +static_assert(offsetof(UST_Evaluator_MovementSettings_C, UberGraphFrame) == 0x000048, "Member 'UST_Evaluator_MovementSettings_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UST_Evaluator_MovementSettings_C, Context) == 0x000050, "Member 'UST_Evaluator_MovementSettings_C::Context' has a wrong offset!"); \ +static_assert(offsetof(UST_Evaluator_MovementSettings_C, MovementSetData) == 0x000058, "Member 'UST_Evaluator_MovementSettings_C::MovementSetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFSR3MoviePipelineSettings \ +static_assert(alignof(UFSR3MoviePipelineSettings) == 0x000008, "Wrong alignment on UFSR3MoviePipelineSettings"); \ +static_assert(sizeof(UFSR3MoviePipelineSettings) == 0x000050, "Wrong size on UFSR3MoviePipelineSettings"); \ +static_assert(offsetof(UFSR3MoviePipelineSettings, FSR3Quality) == 0x000048, "Member 'UFSR3MoviePipelineSettings::FSR3Quality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGlyphMeshParameters \ +static_assert(alignof(FGlyphMeshParameters) == 0x000004, "Wrong alignment on FGlyphMeshParameters"); \ +static_assert(sizeof(FGlyphMeshParameters) == 0x000018, "Wrong size on FGlyphMeshParameters"); \ +static_assert(offsetof(FGlyphMeshParameters, Extrude) == 0x000000, "Member 'FGlyphMeshParameters::Extrude' has a wrong offset!"); \ +static_assert(offsetof(FGlyphMeshParameters, Bevel) == 0x000004, "Member 'FGlyphMeshParameters::Bevel' has a wrong offset!"); \ +static_assert(offsetof(FGlyphMeshParameters, BevelType) == 0x000008, "Member 'FGlyphMeshParameters::BevelType' has a wrong offset!"); \ +static_assert(offsetof(FGlyphMeshParameters, BevelSegments) == 0x00000C, "Member 'FGlyphMeshParameters::BevelSegments' has a wrong offset!"); \ +static_assert(offsetof(FGlyphMeshParameters, bOutline) == 0x000010, "Member 'FGlyphMeshParameters::bOutline' has a wrong offset!"); \ +static_assert(offsetof(FGlyphMeshParameters, OutlineExpand) == 0x000014, "Member 'FGlyphMeshParameters::OutlineExpand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedFontMeshes \ +static_assert(alignof(FCachedFontMeshes) == 0x000008, "Wrong alignment on FCachedFontMeshes"); \ +static_assert(sizeof(FCachedFontMeshes) == 0x000060, "Wrong size on FCachedFontMeshes"); \ +static_assert(offsetof(FCachedFontMeshes, Glyphs) == 0x000000, "Member 'FCachedFontMeshes::Glyphs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCachedFontData \ +static_assert(alignof(FCachedFontData) == 0x000008, "Wrong alignment on FCachedFontData"); \ +static_assert(sizeof(FCachedFontData) == 0x0000E8, "Wrong size on FCachedFontData"); \ +static_assert(offsetof(FCachedFontData, Font) == 0x000000, "Member 'FCachedFontData::Font' has a wrong offset!"); \ +static_assert(offsetof(FCachedFontData, Meshes) == 0x000008, "Member 'FCachedFontData::Meshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AText3DActor \ +static_assert(alignof(AText3DActor) == 0x000008, "Wrong alignment on AText3DActor"); \ +static_assert(sizeof(AText3DActor) == 0x0002A0, "Wrong size on AText3DActor"); \ +static_assert(offsetof(AText3DActor, Text3DComponent) == 0x000298, "Member 'AText3DActor::Text3DComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetLocationDistance \ +static_assert(alignof(Text3DCharacterTransform_SetLocationDistance) == 0x000008, "Wrong alignment on Text3DCharacterTransform_SetLocationDistance"); \ +static_assert(sizeof(Text3DCharacterTransform_SetLocationDistance) == 0x000018, "Wrong size on Text3DCharacterTransform_SetLocationDistance"); \ +static_assert(offsetof(Text3DCharacterTransform_SetLocationDistance, Distance) == 0x000000, "Member 'Text3DCharacterTransform_SetLocationDistance::Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetLocationEnabled \ +static_assert(alignof(Text3DCharacterTransform_SetLocationEnabled) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetLocationEnabled"); \ +static_assert(sizeof(Text3DCharacterTransform_SetLocationEnabled) == 0x000001, "Wrong size on Text3DCharacterTransform_SetLocationEnabled"); \ +static_assert(offsetof(Text3DCharacterTransform_SetLocationEnabled, bEnabled) == 0x000000, "Member 'Text3DCharacterTransform_SetLocationEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetLocationOrder \ +static_assert(alignof(Text3DCharacterTransform_SetLocationOrder) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetLocationOrder"); \ +static_assert(sizeof(Text3DCharacterTransform_SetLocationOrder) == 0x000001, "Wrong size on Text3DCharacterTransform_SetLocationOrder"); \ +static_assert(offsetof(Text3DCharacterTransform_SetLocationOrder, Order) == 0x000000, "Member 'Text3DCharacterTransform_SetLocationOrder::Order' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetLocationProgress \ +static_assert(alignof(Text3DCharacterTransform_SetLocationProgress) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetLocationProgress"); \ +static_assert(sizeof(Text3DCharacterTransform_SetLocationProgress) == 0x000004, "Wrong size on Text3DCharacterTransform_SetLocationProgress"); \ +static_assert(offsetof(Text3DCharacterTransform_SetLocationProgress, Progress) == 0x000000, "Member 'Text3DCharacterTransform_SetLocationProgress::Progress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetLocationRange \ +static_assert(alignof(Text3DCharacterTransform_SetLocationRange) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetLocationRange"); \ +static_assert(sizeof(Text3DCharacterTransform_SetLocationRange) == 0x000004, "Wrong size on Text3DCharacterTransform_SetLocationRange"); \ +static_assert(offsetof(Text3DCharacterTransform_SetLocationRange, Range) == 0x000000, "Member 'Text3DCharacterTransform_SetLocationRange::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateBegin \ +static_assert(alignof(Text3DCharacterTransform_SetRotateBegin) == 0x000008, "Wrong alignment on Text3DCharacterTransform_SetRotateBegin"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateBegin) == 0x000018, "Wrong size on Text3DCharacterTransform_SetRotateBegin"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateBegin, Value) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateBegin::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateEnabled \ +static_assert(alignof(Text3DCharacterTransform_SetRotateEnabled) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetRotateEnabled"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateEnabled) == 0x000001, "Wrong size on Text3DCharacterTransform_SetRotateEnabled"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateEnabled, bEnabled) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateEnd \ +static_assert(alignof(Text3DCharacterTransform_SetRotateEnd) == 0x000008, "Wrong alignment on Text3DCharacterTransform_SetRotateEnd"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateEnd) == 0x000018, "Wrong size on Text3DCharacterTransform_SetRotateEnd"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateEnd, Value) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateEnd::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateOrder \ +static_assert(alignof(Text3DCharacterTransform_SetRotateOrder) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetRotateOrder"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateOrder) == 0x000001, "Wrong size on Text3DCharacterTransform_SetRotateOrder"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateOrder, Order) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateOrder::Order' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateProgress \ +static_assert(alignof(Text3DCharacterTransform_SetRotateProgress) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetRotateProgress"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateProgress) == 0x000004, "Wrong size on Text3DCharacterTransform_SetRotateProgress"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateProgress, Progress) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateProgress::Progress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetRotateRange \ +static_assert(alignof(Text3DCharacterTransform_SetRotateRange) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetRotateRange"); \ +static_assert(sizeof(Text3DCharacterTransform_SetRotateRange) == 0x000004, "Wrong size on Text3DCharacterTransform_SetRotateRange"); \ +static_assert(offsetof(Text3DCharacterTransform_SetRotateRange, Range) == 0x000000, "Member 'Text3DCharacterTransform_SetRotateRange::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleBegin \ +static_assert(alignof(Text3DCharacterTransform_SetScaleBegin) == 0x000008, "Wrong alignment on Text3DCharacterTransform_SetScaleBegin"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleBegin) == 0x000018, "Wrong size on Text3DCharacterTransform_SetScaleBegin"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleBegin, Value) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleBegin::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleEnabled \ +static_assert(alignof(Text3DCharacterTransform_SetScaleEnabled) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetScaleEnabled"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleEnabled) == 0x000001, "Wrong size on Text3DCharacterTransform_SetScaleEnabled"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleEnabled, bEnabled) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleEnabled::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleEnd \ +static_assert(alignof(Text3DCharacterTransform_SetScaleEnd) == 0x000008, "Wrong alignment on Text3DCharacterTransform_SetScaleEnd"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleEnd) == 0x000018, "Wrong size on Text3DCharacterTransform_SetScaleEnd"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleEnd, Value) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleEnd::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleOrder \ +static_assert(alignof(Text3DCharacterTransform_SetScaleOrder) == 0x000001, "Wrong alignment on Text3DCharacterTransform_SetScaleOrder"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleOrder) == 0x000001, "Wrong size on Text3DCharacterTransform_SetScaleOrder"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleOrder, Order) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleOrder::Order' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleProgress \ +static_assert(alignof(Text3DCharacterTransform_SetScaleProgress) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetScaleProgress"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleProgress) == 0x000004, "Wrong size on Text3DCharacterTransform_SetScaleProgress"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleProgress, Progress) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleProgress::Progress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DCharacterTransform_SetScaleRange \ +static_assert(alignof(Text3DCharacterTransform_SetScaleRange) == 0x000004, "Wrong alignment on Text3DCharacterTransform_SetScaleRange"); \ +static_assert(sizeof(Text3DCharacterTransform_SetScaleRange) == 0x000004, "Wrong size on Text3DCharacterTransform_SetScaleRange"); \ +static_assert(offsetof(Text3DCharacterTransform_SetScaleRange, Range) == 0x000000, "Member 'Text3DCharacterTransform_SetScaleRange::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UText3DCharacterTransform \ +static_assert(alignof(UText3DCharacterTransform) == 0x000010, "Wrong alignment on UText3DCharacterTransform"); \ +static_assert(sizeof(UText3DCharacterTransform) == 0x000350, "Wrong size on UText3DCharacterTransform"); \ +static_assert(offsetof(UText3DCharacterTransform, bLocationEnabled) == 0x0002A0, "Member 'UText3DCharacterTransform::bLocationEnabled' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, LocationProgress) == 0x0002A4, "Member 'UText3DCharacterTransform::LocationProgress' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, LocationOrder) == 0x0002A8, "Member 'UText3DCharacterTransform::LocationOrder' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, LocationRange) == 0x0002AC, "Member 'UText3DCharacterTransform::LocationRange' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, LocationDistance) == 0x0002B0, "Member 'UText3DCharacterTransform::LocationDistance' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, bScaleEnabled) == 0x0002C8, "Member 'UText3DCharacterTransform::bScaleEnabled' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, ScaleProgress) == 0x0002CC, "Member 'UText3DCharacterTransform::ScaleProgress' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, ScaleOrder) == 0x0002D0, "Member 'UText3DCharacterTransform::ScaleOrder' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, ScaleRange) == 0x0002D4, "Member 'UText3DCharacterTransform::ScaleRange' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, ScaleBegin) == 0x0002D8, "Member 'UText3DCharacterTransform::ScaleBegin' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, ScaleEnd) == 0x0002F0, "Member 'UText3DCharacterTransform::ScaleEnd' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, bRotateEnabled) == 0x000308, "Member 'UText3DCharacterTransform::bRotateEnabled' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, RotateProgress) == 0x00030C, "Member 'UText3DCharacterTransform::RotateProgress' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, RotateOrder) == 0x000310, "Member 'UText3DCharacterTransform::RotateOrder' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, RotateRange) == 0x000314, "Member 'UText3DCharacterTransform::RotateRange' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, RotateBegin) == 0x000318, "Member 'UText3DCharacterTransform::RotateBegin' has a wrong offset!"); \ +static_assert(offsetof(UText3DCharacterTransform, RotateEnd) == 0x000330, "Member 'UText3DCharacterTransform::RotateEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetBounds \ +static_assert(alignof(Text3DComponent_GetBounds) == 0x000008, "Wrong alignment on Text3DComponent_GetBounds"); \ +static_assert(sizeof(Text3DComponent_GetBounds) == 0x000030, "Wrong size on Text3DComponent_GetBounds"); \ +static_assert(offsetof(Text3DComponent_GetBounds, Origin) == 0x000000, "Member 'Text3DComponent_GetBounds::Origin' has a wrong offset!"); \ +static_assert(offsetof(Text3DComponent_GetBounds, BoxExtent) == 0x000018, "Member 'Text3DComponent_GetBounds::BoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetGlyphCount \ +static_assert(alignof(Text3DComponent_GetGlyphCount) == 0x000004, "Wrong alignment on Text3DComponent_GetGlyphCount"); \ +static_assert(sizeof(Text3DComponent_GetGlyphCount) == 0x000004, "Wrong size on Text3DComponent_GetGlyphCount"); \ +static_assert(offsetof(Text3DComponent_GetGlyphCount, ReturnValue) == 0x000000, "Member 'Text3DComponent_GetGlyphCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetGlyphKerningComponent \ +static_assert(alignof(Text3DComponent_GetGlyphKerningComponent) == 0x000008, "Wrong alignment on Text3DComponent_GetGlyphKerningComponent"); \ +static_assert(sizeof(Text3DComponent_GetGlyphKerningComponent) == 0x000010, "Wrong size on Text3DComponent_GetGlyphKerningComponent"); \ +static_assert(offsetof(Text3DComponent_GetGlyphKerningComponent, Index_0) == 0x000000, "Member 'Text3DComponent_GetGlyphKerningComponent::Index_0' has a wrong offset!"); \ +static_assert(offsetof(Text3DComponent_GetGlyphKerningComponent, ReturnValue) == 0x000008, "Member 'Text3DComponent_GetGlyphKerningComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetGlyphKerningComponents \ +static_assert(alignof(Text3DComponent_GetGlyphKerningComponents) == 0x000008, "Wrong alignment on Text3DComponent_GetGlyphKerningComponents"); \ +static_assert(sizeof(Text3DComponent_GetGlyphKerningComponents) == 0x000010, "Wrong size on Text3DComponent_GetGlyphKerningComponents"); \ +static_assert(offsetof(Text3DComponent_GetGlyphKerningComponents, ReturnValue) == 0x000000, "Member 'Text3DComponent_GetGlyphKerningComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetGlyphMeshComponent \ +static_assert(alignof(Text3DComponent_GetGlyphMeshComponent) == 0x000008, "Wrong alignment on Text3DComponent_GetGlyphMeshComponent"); \ +static_assert(sizeof(Text3DComponent_GetGlyphMeshComponent) == 0x000010, "Wrong size on Text3DComponent_GetGlyphMeshComponent"); \ +static_assert(offsetof(Text3DComponent_GetGlyphMeshComponent, Index_0) == 0x000000, "Member 'Text3DComponent_GetGlyphMeshComponent::Index_0' has a wrong offset!"); \ +static_assert(offsetof(Text3DComponent_GetGlyphMeshComponent, ReturnValue) == 0x000008, "Member 'Text3DComponent_GetGlyphMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetGlyphMeshComponents \ +static_assert(alignof(Text3DComponent_GetGlyphMeshComponents) == 0x000008, "Wrong alignment on Text3DComponent_GetGlyphMeshComponents"); \ +static_assert(sizeof(Text3DComponent_GetGlyphMeshComponents) == 0x000010, "Wrong size on Text3DComponent_GetGlyphMeshComponents"); \ +static_assert(offsetof(Text3DComponent_GetGlyphMeshComponents, ReturnValue) == 0x000000, "Member 'Text3DComponent_GetGlyphMeshComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetTextScale \ +static_assert(alignof(Text3DComponent_GetTextScale) == 0x000008, "Wrong alignment on Text3DComponent_GetTextScale"); \ +static_assert(sizeof(Text3DComponent_GetTextScale) == 0x000018, "Wrong size on Text3DComponent_GetTextScale"); \ +static_assert(offsetof(Text3DComponent_GetTextScale, ReturnValue) == 0x000000, "Member 'Text3DComponent_GetTextScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetBackMaterial \ +static_assert(alignof(Text3DComponent_SetBackMaterial) == 0x000008, "Wrong alignment on Text3DComponent_SetBackMaterial"); \ +static_assert(sizeof(Text3DComponent_SetBackMaterial) == 0x000008, "Wrong size on Text3DComponent_SetBackMaterial"); \ +static_assert(offsetof(Text3DComponent_SetBackMaterial, Value) == 0x000000, "Member 'Text3DComponent_SetBackMaterial::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetBevel \ +static_assert(alignof(Text3DComponent_SetBevel) == 0x000004, "Wrong alignment on Text3DComponent_SetBevel"); \ +static_assert(sizeof(Text3DComponent_SetBevel) == 0x000004, "Wrong size on Text3DComponent_SetBevel"); \ +static_assert(offsetof(Text3DComponent_SetBevel, Value) == 0x000000, "Member 'Text3DComponent_SetBevel::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetBevelMaterial \ +static_assert(alignof(Text3DComponent_SetBevelMaterial) == 0x000008, "Wrong alignment on Text3DComponent_SetBevelMaterial"); \ +static_assert(sizeof(Text3DComponent_SetBevelMaterial) == 0x000008, "Wrong size on Text3DComponent_SetBevelMaterial"); \ +static_assert(offsetof(Text3DComponent_SetBevelMaterial, Value) == 0x000000, "Member 'Text3DComponent_SetBevelMaterial::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetBevelSegments \ +static_assert(alignof(Text3DComponent_SetBevelSegments) == 0x000004, "Wrong alignment on Text3DComponent_SetBevelSegments"); \ +static_assert(sizeof(Text3DComponent_SetBevelSegments) == 0x000004, "Wrong size on Text3DComponent_SetBevelSegments"); \ +static_assert(offsetof(Text3DComponent_SetBevelSegments, Value) == 0x000000, "Member 'Text3DComponent_SetBevelSegments::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetBevelType \ +static_assert(alignof(Text3DComponent_SetBevelType) == 0x000001, "Wrong alignment on Text3DComponent_SetBevelType"); \ +static_assert(sizeof(Text3DComponent_SetBevelType) == 0x000001, "Wrong size on Text3DComponent_SetBevelType"); \ +static_assert(offsetof(Text3DComponent_SetBevelType, Value) == 0x000000, "Member 'Text3DComponent_SetBevelType::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetCastShadow \ +static_assert(alignof(Text3DComponent_SetCastShadow) == 0x000001, "Wrong alignment on Text3DComponent_SetCastShadow"); \ +static_assert(sizeof(Text3DComponent_SetCastShadow) == 0x000001, "Wrong size on Text3DComponent_SetCastShadow"); \ +static_assert(offsetof(Text3DComponent_SetCastShadow, NewCastShadow) == 0x000000, "Member 'Text3DComponent_SetCastShadow::NewCastShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetExtrude \ +static_assert(alignof(Text3DComponent_SetExtrude) == 0x000004, "Wrong alignment on Text3DComponent_SetExtrude"); \ +static_assert(sizeof(Text3DComponent_SetExtrude) == 0x000004, "Wrong size on Text3DComponent_SetExtrude"); \ +static_assert(offsetof(Text3DComponent_SetExtrude, Value) == 0x000000, "Member 'Text3DComponent_SetExtrude::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetExtrudeMaterial \ +static_assert(alignof(Text3DComponent_SetExtrudeMaterial) == 0x000008, "Wrong alignment on Text3DComponent_SetExtrudeMaterial"); \ +static_assert(sizeof(Text3DComponent_SetExtrudeMaterial) == 0x000008, "Wrong size on Text3DComponent_SetExtrudeMaterial"); \ +static_assert(offsetof(Text3DComponent_SetExtrudeMaterial, Value) == 0x000000, "Member 'Text3DComponent_SetExtrudeMaterial::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetFont \ +static_assert(alignof(Text3DComponent_SetFont) == 0x000008, "Wrong alignment on Text3DComponent_SetFont"); \ +static_assert(sizeof(Text3DComponent_SetFont) == 0x000008, "Wrong size on Text3DComponent_SetFont"); \ +static_assert(offsetof(Text3DComponent_SetFont, InFont) == 0x000000, "Member 'Text3DComponent_SetFont::InFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetFreeze \ +static_assert(alignof(Text3DComponent_SetFreeze) == 0x000001, "Wrong alignment on Text3DComponent_SetFreeze"); \ +static_assert(sizeof(Text3DComponent_SetFreeze) == 0x000001, "Wrong size on Text3DComponent_SetFreeze"); \ +static_assert(offsetof(Text3DComponent_SetFreeze, bFreeze) == 0x000000, "Member 'Text3DComponent_SetFreeze::bFreeze' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetFrontMaterial \ +static_assert(alignof(Text3DComponent_SetFrontMaterial) == 0x000008, "Wrong alignment on Text3DComponent_SetFrontMaterial"); \ +static_assert(sizeof(Text3DComponent_SetFrontMaterial) == 0x000008, "Wrong size on Text3DComponent_SetFrontMaterial"); \ +static_assert(offsetof(Text3DComponent_SetFrontMaterial, Value) == 0x000000, "Member 'Text3DComponent_SetFrontMaterial::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetHasMaxHeight \ +static_assert(alignof(Text3DComponent_SetHasMaxHeight) == 0x000001, "Wrong alignment on Text3DComponent_SetHasMaxHeight"); \ +static_assert(sizeof(Text3DComponent_SetHasMaxHeight) == 0x000001, "Wrong size on Text3DComponent_SetHasMaxHeight"); \ +static_assert(offsetof(Text3DComponent_SetHasMaxHeight, Value) == 0x000000, "Member 'Text3DComponent_SetHasMaxHeight::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetHasMaxWidth \ +static_assert(alignof(Text3DComponent_SetHasMaxWidth) == 0x000001, "Wrong alignment on Text3DComponent_SetHasMaxWidth"); \ +static_assert(sizeof(Text3DComponent_SetHasMaxWidth) == 0x000001, "Wrong size on Text3DComponent_SetHasMaxWidth"); \ +static_assert(offsetof(Text3DComponent_SetHasMaxWidth, Value) == 0x000000, "Member 'Text3DComponent_SetHasMaxWidth::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetHasOutline \ +static_assert(alignof(Text3DComponent_SetHasOutline) == 0x000001, "Wrong alignment on Text3DComponent_SetHasOutline"); \ +static_assert(sizeof(Text3DComponent_SetHasOutline) == 0x000001, "Wrong size on Text3DComponent_SetHasOutline"); \ +static_assert(offsetof(Text3DComponent_SetHasOutline, bValue) == 0x000000, "Member 'Text3DComponent_SetHasOutline::bValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetHorizontalAlignment \ +static_assert(alignof(Text3DComponent_SetHorizontalAlignment) == 0x000001, "Wrong alignment on Text3DComponent_SetHorizontalAlignment"); \ +static_assert(sizeof(Text3DComponent_SetHorizontalAlignment) == 0x000001, "Wrong size on Text3DComponent_SetHorizontalAlignment"); \ +static_assert(offsetof(Text3DComponent_SetHorizontalAlignment, Value) == 0x000000, "Member 'Text3DComponent_SetHorizontalAlignment::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetKerning \ +static_assert(alignof(Text3DComponent_SetKerning) == 0x000004, "Wrong alignment on Text3DComponent_SetKerning"); \ +static_assert(sizeof(Text3DComponent_SetKerning) == 0x000004, "Wrong size on Text3DComponent_SetKerning"); \ +static_assert(offsetof(Text3DComponent_SetKerning, Value) == 0x000000, "Member 'Text3DComponent_SetKerning::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetLineSpacing \ +static_assert(alignof(Text3DComponent_SetLineSpacing) == 0x000004, "Wrong alignment on Text3DComponent_SetLineSpacing"); \ +static_assert(sizeof(Text3DComponent_SetLineSpacing) == 0x000004, "Wrong size on Text3DComponent_SetLineSpacing"); \ +static_assert(offsetof(Text3DComponent_SetLineSpacing, Value) == 0x000000, "Member 'Text3DComponent_SetLineSpacing::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetMaxHeight \ +static_assert(alignof(Text3DComponent_SetMaxHeight) == 0x000004, "Wrong alignment on Text3DComponent_SetMaxHeight"); \ +static_assert(sizeof(Text3DComponent_SetMaxHeight) == 0x000004, "Wrong size on Text3DComponent_SetMaxHeight"); \ +static_assert(offsetof(Text3DComponent_SetMaxHeight, Value) == 0x000000, "Member 'Text3DComponent_SetMaxHeight::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetMaxWidth \ +static_assert(alignof(Text3DComponent_SetMaxWidth) == 0x000004, "Wrong alignment on Text3DComponent_SetMaxWidth"); \ +static_assert(sizeof(Text3DComponent_SetMaxWidth) == 0x000004, "Wrong size on Text3DComponent_SetMaxWidth"); \ +static_assert(offsetof(Text3DComponent_SetMaxWidth, Value) == 0x000000, "Member 'Text3DComponent_SetMaxWidth::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetOutlineExpand \ +static_assert(alignof(Text3DComponent_SetOutlineExpand) == 0x000004, "Wrong alignment on Text3DComponent_SetOutlineExpand"); \ +static_assert(sizeof(Text3DComponent_SetOutlineExpand) == 0x000004, "Wrong size on Text3DComponent_SetOutlineExpand"); \ +static_assert(offsetof(Text3DComponent_SetOutlineExpand, Value) == 0x000000, "Member 'Text3DComponent_SetOutlineExpand::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetScaleProportionally \ +static_assert(alignof(Text3DComponent_SetScaleProportionally) == 0x000001, "Wrong alignment on Text3DComponent_SetScaleProportionally"); \ +static_assert(sizeof(Text3DComponent_SetScaleProportionally) == 0x000001, "Wrong size on Text3DComponent_SetScaleProportionally"); \ +static_assert(offsetof(Text3DComponent_SetScaleProportionally, Value) == 0x000000, "Member 'Text3DComponent_SetScaleProportionally::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetText \ +static_assert(alignof(Text3DComponent_SetText) == 0x000008, "Wrong alignment on Text3DComponent_SetText"); \ +static_assert(sizeof(Text3DComponent_SetText) == 0x000018, "Wrong size on Text3DComponent_SetText"); \ +static_assert(offsetof(Text3DComponent_SetText, Value) == 0x000000, "Member 'Text3DComponent_SetText::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetVerticalAlignment \ +static_assert(alignof(Text3DComponent_SetVerticalAlignment) == 0x000001, "Wrong alignment on Text3DComponent_SetVerticalAlignment"); \ +static_assert(sizeof(Text3DComponent_SetVerticalAlignment) == 0x000001, "Wrong size on Text3DComponent_SetVerticalAlignment"); \ +static_assert(offsetof(Text3DComponent_SetVerticalAlignment, Value) == 0x000000, "Member 'Text3DComponent_SetVerticalAlignment::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_SetWordSpacing \ +static_assert(alignof(Text3DComponent_SetWordSpacing) == 0x000004, "Wrong alignment on Text3DComponent_SetWordSpacing"); \ +static_assert(sizeof(Text3DComponent_SetWordSpacing) == 0x000004, "Wrong size on Text3DComponent_SetWordSpacing"); \ +static_assert(offsetof(Text3DComponent_SetWordSpacing, Value) == 0x000000, "Member 'Text3DComponent_SetWordSpacing::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Text3DComponent_GetFormattedText \ +static_assert(alignof(Text3DComponent_GetFormattedText) == 0x000008, "Wrong alignment on Text3DComponent_GetFormattedText"); \ +static_assert(sizeof(Text3DComponent_GetFormattedText) == 0x000018, "Wrong size on Text3DComponent_GetFormattedText"); \ +static_assert(offsetof(Text3DComponent_GetFormattedText, ReturnValue) == 0x000000, "Member 'Text3DComponent_GetFormattedText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UText3DComponent \ +static_assert(alignof(UText3DComponent) == 0x000010, "Wrong alignment on UText3DComponent"); \ +static_assert(sizeof(UText3DComponent) == 0x0003E0, "Wrong size on UText3DComponent"); \ +static_assert(offsetof(UText3DComponent, bRefreshOnChange) == 0x0002A0, "Member 'UText3DComponent::bRefreshOnChange' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, Text) == 0x0002A8, "Member 'UText3DComponent::Text' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, Extrude) == 0x0002C0, "Member 'UText3DComponent::Extrude' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, Bevel) == 0x0002C4, "Member 'UText3DComponent::Bevel' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, BevelType) == 0x0002C8, "Member 'UText3DComponent::BevelType' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, BevelSegments) == 0x0002CC, "Member 'UText3DComponent::BevelSegments' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, bOutline) == 0x0002D0, "Member 'UText3DComponent::bOutline' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, OutlineExpand) == 0x0002D4, "Member 'UText3DComponent::OutlineExpand' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, FrontMaterial) == 0x0002D8, "Member 'UText3DComponent::FrontMaterial' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, BevelMaterial) == 0x0002E0, "Member 'UText3DComponent::BevelMaterial' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, ExtrudeMaterial) == 0x0002E8, "Member 'UText3DComponent::ExtrudeMaterial' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, BackMaterial) == 0x0002F0, "Member 'UText3DComponent::BackMaterial' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, Font) == 0x0002F8, "Member 'UText3DComponent::Font' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, HorizontalAlignment) == 0x000300, "Member 'UText3DComponent::HorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, VerticalAlignment) == 0x000301, "Member 'UText3DComponent::VerticalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, Kerning) == 0x000304, "Member 'UText3DComponent::Kerning' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, LineSpacing) == 0x000308, "Member 'UText3DComponent::LineSpacing' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, WordSpacing) == 0x00030C, "Member 'UText3DComponent::WordSpacing' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, bHasMaxWidth) == 0x000310, "Member 'UText3DComponent::bHasMaxWidth' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, MaxWidth) == 0x000314, "Member 'UText3DComponent::MaxWidth' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, bHasMaxHeight) == 0x000318, "Member 'UText3DComponent::bHasMaxHeight' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, MaxHeight) == 0x00031C, "Member 'UText3DComponent::MaxHeight' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, bScaleProportionally) == 0x000320, "Member 'UText3DComponent::bScaleProportionally' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, bCastShadow) == 0x000321, "Member 'UText3DComponent::bCastShadow' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, TextRoot) == 0x000328, "Member 'UText3DComponent::TextRoot' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, TextGeneratedDelegate) == 0x000330, "Member 'UText3DComponent::TextGeneratedDelegate' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, CharacterKernings) == 0x0003B8, "Member 'UText3DComponent::CharacterKernings' has a wrong offset!"); \ +static_assert(offsetof(UText3DComponent, CharacterMeshes) == 0x0003C8, "Member 'UText3DComponent::CharacterMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UText3DEngineSubsystem \ +static_assert(alignof(UText3DEngineSubsystem) == 0x000008, "Wrong alignment on UText3DEngineSubsystem"); \ +static_assert(sizeof(UText3DEngineSubsystem) == 0x000098, "Wrong size on UText3DEngineSubsystem"); \ +static_assert(offsetof(UText3DEngineSubsystem, DefaultMaterial) == 0x000030, "Member 'UText3DEngineSubsystem::DefaultMaterial' has a wrong offset!"); \ +static_assert(offsetof(UText3DEngineSubsystem, CachedFonts) == 0x000038, "Member 'UText3DEngineSubsystem::CachedFonts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer \ +static_assert(alignof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer) == 0x000008, "Wrong alignment on CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer"); \ +static_assert(sizeof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer) == 0x000068, "Wrong size on CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, EntryPoint) == 0x000000, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, K2Node_Event_InState) == 0x000010, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, K2Node_CustomEvent_Enemy) == 0x000018, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000028, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, K2Node_CreateDelegate_OutputDelegate) == 0x000034, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000048, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000058, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000060, "Member 'CheckEnemiesSeenPlayer_C_ExecuteUbergraph_CheckEnemiesSeenPlayer::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event \ +static_assert(alignof(CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong alignment on CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(sizeof(CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong size on CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event, Enemy) == 0x000000, "Member 'CheckEnemiesSeenPlayer_C_OnEnemyDetectedPlayer_Event::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemiesSeenPlayer_C_ReceiveExecute \ +static_assert(alignof(CheckEnemiesSeenPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckEnemiesSeenPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(CheckEnemiesSeenPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on CheckEnemiesSeenPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckEnemiesSeenPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemiesSeenPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckEnemiesSeenPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckEnemiesSeenPlayer_C \ +static_assert(alignof(UCheckEnemiesSeenPlayer_C) == 0x000008, "Wrong alignment on UCheckEnemiesSeenPlayer_C"); \ +static_assert(sizeof(UCheckEnemiesSeenPlayer_C) == 0x0000A0, "Wrong size on UCheckEnemiesSeenPlayer_C"); \ +static_assert(offsetof(UCheckEnemiesSeenPlayer_C, UberGraphFrame) == 0x000088, "Member 'UCheckEnemiesSeenPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesSeenPlayer_C, Tagged_Enmies_In_Combat) == 0x000090, "Member 'UCheckEnemiesSeenPlayer_C::Tagged_Enmies_In_Combat' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemiesSeenPlayer_C, Update_Objective) == 0x000098, "Member 'UCheckEnemiesSeenPlayer_C::Update_Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntMargin \ +static_assert(alignof(FIntMargin) == 0x000004, "Wrong alignment on FIntMargin"); \ +static_assert(sizeof(FIntMargin) == 0x000010, "Wrong size on FIntMargin"); \ +static_assert(offsetof(FIntMargin, Left) == 0x000000, "Member 'FIntMargin::Left' has a wrong offset!"); \ +static_assert(offsetof(FIntMargin, Top) == 0x000004, "Member 'FIntMargin::Top' has a wrong offset!"); \ +static_assert(offsetof(FIntMargin, Right) == 0x000008, "Member 'FIntMargin::Right' has a wrong offset!"); \ +static_assert(offsetof(FIntMargin, Bottom) == 0x00000C, "Member 'FIntMargin::Bottom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteDrawCallRecord \ +static_assert(alignof(FSpriteDrawCallRecord) == 0x000010, "Wrong alignment on FSpriteDrawCallRecord"); \ +static_assert(sizeof(FSpriteDrawCallRecord) == 0x000140, "Wrong size on FSpriteDrawCallRecord"); \ +static_assert(offsetof(FSpriteDrawCallRecord, destination) == 0x000000, "Member 'FSpriteDrawCallRecord::destination' has a wrong offset!"); \ +static_assert(offsetof(FSpriteDrawCallRecord, BaseTexture) == 0x000018, "Member 'FSpriteDrawCallRecord::BaseTexture' has a wrong offset!"); \ +static_assert(offsetof(FSpriteDrawCallRecord, Color) == 0x000050, "Member 'FSpriteDrawCallRecord::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteGeometryShape \ +static_assert(alignof(FSpriteGeometryShape) == 0x000008, "Wrong alignment on FSpriteGeometryShape"); \ +static_assert(sizeof(FSpriteGeometryShape) == 0x000040, "Wrong size on FSpriteGeometryShape"); \ +static_assert(offsetof(FSpriteGeometryShape, ShapeType) == 0x000000, "Member 'FSpriteGeometryShape::ShapeType' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryShape, Vertices) == 0x000008, "Member 'FSpriteGeometryShape::Vertices' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryShape, BoxSize) == 0x000018, "Member 'FSpriteGeometryShape::BoxSize' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryShape, BoxPosition) == 0x000028, "Member 'FSpriteGeometryShape::BoxPosition' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryShape, Rotation) == 0x000038, "Member 'FSpriteGeometryShape::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryShape, bNegativeWinding) == 0x00003C, "Member 'FSpriteGeometryShape::bNegativeWinding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteGeometryCollection \ +static_assert(alignof(FSpriteGeometryCollection) == 0x000008, "Wrong alignment on FSpriteGeometryCollection"); \ +static_assert(sizeof(FSpriteGeometryCollection) == 0x000030, "Wrong size on FSpriteGeometryCollection"); \ +static_assert(offsetof(FSpriteGeometryCollection, Shapes) == 0x000000, "Member 'FSpriteGeometryCollection::Shapes' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, GeometryType) == 0x000010, "Member 'FSpriteGeometryCollection::GeometryType' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, PixelsPerSubdivisionX) == 0x000014, "Member 'FSpriteGeometryCollection::PixelsPerSubdivisionX' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, PixelsPerSubdivisionY) == 0x000018, "Member 'FSpriteGeometryCollection::PixelsPerSubdivisionY' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, bAvoidVertexMerging) == 0x00001C, "Member 'FSpriteGeometryCollection::bAvoidVertexMerging' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, AlphaThreshold) == 0x000020, "Member 'FSpriteGeometryCollection::AlphaThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, DetailAmount) == 0x000024, "Member 'FSpriteGeometryCollection::DetailAmount' has a wrong offset!"); \ +static_assert(offsetof(FSpriteGeometryCollection, SimplifyEpsilon) == 0x000028, "Member 'FSpriteGeometryCollection::SimplifyEpsilon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteAssetInitParameters \ +static_assert(alignof(FSpriteAssetInitParameters) == 0x000008, "Wrong alignment on FSpriteAssetInitParameters"); \ +static_assert(sizeof(FSpriteAssetInitParameters) == 0x000040, "Wrong size on FSpriteAssetInitParameters"); \ + +#define DUMPER7_ASSERTS_FPaperFlipbookKeyFrame \ +static_assert(alignof(FPaperFlipbookKeyFrame) == 0x000008, "Wrong alignment on FPaperFlipbookKeyFrame"); \ +static_assert(sizeof(FPaperFlipbookKeyFrame) == 0x000010, "Wrong size on FPaperFlipbookKeyFrame"); \ +static_assert(offsetof(FPaperFlipbookKeyFrame, Sprite) == 0x000000, "Member 'FPaperFlipbookKeyFrame::Sprite' has a wrong offset!"); \ +static_assert(offsetof(FPaperFlipbookKeyFrame, FrameRun) == 0x000008, "Member 'FPaperFlipbookKeyFrame::FrameRun' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSpriteInstanceData \ +static_assert(alignof(FSpriteInstanceData) == 0x000010, "Wrong alignment on FSpriteInstanceData"); \ +static_assert(sizeof(FSpriteInstanceData) == 0x000090, "Wrong size on FSpriteInstanceData"); \ +static_assert(offsetof(FSpriteInstanceData, Transform) == 0x000000, "Member 'FSpriteInstanceData::Transform' has a wrong offset!"); \ +static_assert(offsetof(FSpriteInstanceData, SourceSprite) == 0x000080, "Member 'FSpriteInstanceData::SourceSprite' has a wrong offset!"); \ +static_assert(offsetof(FSpriteInstanceData, VertexColor) == 0x000088, "Member 'FSpriteInstanceData::VertexColor' has a wrong offset!"); \ +static_assert(offsetof(FSpriteInstanceData, MaterialIndex) == 0x00008C, "Member 'FSpriteInstanceData::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperSpriteSocket \ +static_assert(alignof(FPaperSpriteSocket) == 0x000010, "Wrong alignment on FPaperSpriteSocket"); \ +static_assert(sizeof(FPaperSpriteSocket) == 0x000070, "Wrong size on FPaperSpriteSocket"); \ +static_assert(offsetof(FPaperSpriteSocket, LocalTransform) == 0x000000, "Member 'FPaperSpriteSocket::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteSocket, SocketName) == 0x000060, "Member 'FPaperSpriteSocket::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperSpriteAtlasSlot \ +static_assert(alignof(FPaperSpriteAtlasSlot) == 0x000008, "Wrong alignment on FPaperSpriteAtlasSlot"); \ +static_assert(sizeof(FPaperSpriteAtlasSlot) == 0x000040, "Wrong size on FPaperSpriteAtlasSlot"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, SpriteRef) == 0x000000, "Member 'FPaperSpriteAtlasSlot::SpriteRef' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, AtlasIndex) == 0x000028, "Member 'FPaperSpriteAtlasSlot::AtlasIndex' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, X) == 0x00002C, "Member 'FPaperSpriteAtlasSlot::X' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, Y) == 0x000030, "Member 'FPaperSpriteAtlasSlot::Y' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, Width) == 0x000034, "Member 'FPaperSpriteAtlasSlot::Width' has a wrong offset!"); \ +static_assert(offsetof(FPaperSpriteAtlasSlot, Height) == 0x000038, "Member 'FPaperSpriteAtlasSlot::Height' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperTileInfo \ +static_assert(alignof(FPaperTileInfo) == 0x000008, "Wrong alignment on FPaperTileInfo"); \ +static_assert(sizeof(FPaperTileInfo) == 0x000010, "Wrong size on FPaperTileInfo"); \ +static_assert(offsetof(FPaperTileInfo, TileSet) == 0x000000, "Member 'FPaperTileInfo::TileSet' has a wrong offset!"); \ +static_assert(offsetof(FPaperTileInfo, PackedTileIndex) == 0x000008, "Member 'FPaperTileInfo::PackedTileIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperTileMetadata \ +static_assert(alignof(FPaperTileMetadata) == 0x000008, "Wrong alignment on FPaperTileMetadata"); \ +static_assert(sizeof(FPaperTileMetadata) == 0x000040, "Wrong size on FPaperTileMetadata"); \ +static_assert(offsetof(FPaperTileMetadata, UserDataName) == 0x000000, "Member 'FPaperTileMetadata::UserDataName' has a wrong offset!"); \ +static_assert(offsetof(FPaperTileMetadata, CollisionData) == 0x000008, "Member 'FPaperTileMetadata::CollisionData' has a wrong offset!"); \ +static_assert(offsetof(FPaperTileMetadata, TerrainMembership) == 0x000038, "Member 'FPaperTileMetadata::TerrainMembership' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperTileSetTerrain \ +static_assert(alignof(FPaperTileSetTerrain) == 0x000008, "Wrong alignment on FPaperTileSetTerrain"); \ +static_assert(sizeof(FPaperTileSetTerrain) == 0x000018, "Wrong size on FPaperTileSetTerrain"); \ +static_assert(offsetof(FPaperTileSetTerrain, TerrainName) == 0x000000, "Member 'FPaperTileSetTerrain::TerrainName' has a wrong offset!"); \ +static_assert(offsetof(FPaperTileSetTerrain, CenterTileIndex) == 0x000010, "Member 'FPaperTileSetTerrain::CenterTileIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPaperTerrainMaterialRule \ +static_assert(alignof(FPaperTerrainMaterialRule) == 0x000008, "Wrong alignment on FPaperTerrainMaterialRule"); \ +static_assert(sizeof(FPaperTerrainMaterialRule) == 0x000038, "Wrong size on FPaperTerrainMaterialRule"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, StartCap) == 0x000000, "Member 'FPaperTerrainMaterialRule::StartCap' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, Body) == 0x000008, "Member 'FPaperTerrainMaterialRule::Body' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, EndCap) == 0x000018, "Member 'FPaperTerrainMaterialRule::EndCap' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, MinimumAngle) == 0x000020, "Member 'FPaperTerrainMaterialRule::MinimumAngle' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, MaximumAngle) == 0x000024, "Member 'FPaperTerrainMaterialRule::MaximumAngle' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, bEnableCollision) == 0x000028, "Member 'FPaperTerrainMaterialRule::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, CollisionOffset) == 0x00002C, "Member 'FPaperTerrainMaterialRule::CollisionOffset' has a wrong offset!"); \ +static_assert(offsetof(FPaperTerrainMaterialRule, DrawOrder) == 0x000030, "Member 'FPaperTerrainMaterialRule::DrawOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperCharacter \ +static_assert(alignof(APaperCharacter) == 0x000010, "Wrong alignment on APaperCharacter"); \ +static_assert(sizeof(APaperCharacter) == 0x000680, "Wrong size on APaperCharacter"); \ +static_assert(offsetof(APaperCharacter, Sprite) == 0x000678, "Member 'APaperCharacter::Sprite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetKeyFrameIndexAtTime \ +static_assert(alignof(PaperFlipbook_GetKeyFrameIndexAtTime) == 0x000004, "Wrong alignment on PaperFlipbook_GetKeyFrameIndexAtTime"); \ +static_assert(sizeof(PaperFlipbook_GetKeyFrameIndexAtTime) == 0x00000C, "Wrong size on PaperFlipbook_GetKeyFrameIndexAtTime"); \ +static_assert(offsetof(PaperFlipbook_GetKeyFrameIndexAtTime, Time) == 0x000000, "Member 'PaperFlipbook_GetKeyFrameIndexAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_GetKeyFrameIndexAtTime, bClampToEnds) == 0x000004, "Member 'PaperFlipbook_GetKeyFrameIndexAtTime::bClampToEnds' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_GetKeyFrameIndexAtTime, ReturnValue) == 0x000008, "Member 'PaperFlipbook_GetKeyFrameIndexAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetNumFrames \ +static_assert(alignof(PaperFlipbook_GetNumFrames) == 0x000004, "Wrong alignment on PaperFlipbook_GetNumFrames"); \ +static_assert(sizeof(PaperFlipbook_GetNumFrames) == 0x000004, "Wrong size on PaperFlipbook_GetNumFrames"); \ +static_assert(offsetof(PaperFlipbook_GetNumFrames, ReturnValue) == 0x000000, "Member 'PaperFlipbook_GetNumFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetNumKeyFrames \ +static_assert(alignof(PaperFlipbook_GetNumKeyFrames) == 0x000004, "Wrong alignment on PaperFlipbook_GetNumKeyFrames"); \ +static_assert(sizeof(PaperFlipbook_GetNumKeyFrames) == 0x000004, "Wrong size on PaperFlipbook_GetNumKeyFrames"); \ +static_assert(offsetof(PaperFlipbook_GetNumKeyFrames, ReturnValue) == 0x000000, "Member 'PaperFlipbook_GetNumKeyFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetSpriteAtFrame \ +static_assert(alignof(PaperFlipbook_GetSpriteAtFrame) == 0x000008, "Wrong alignment on PaperFlipbook_GetSpriteAtFrame"); \ +static_assert(sizeof(PaperFlipbook_GetSpriteAtFrame) == 0x000010, "Wrong size on PaperFlipbook_GetSpriteAtFrame"); \ +static_assert(offsetof(PaperFlipbook_GetSpriteAtFrame, FrameIndex) == 0x000000, "Member 'PaperFlipbook_GetSpriteAtFrame::FrameIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_GetSpriteAtFrame, ReturnValue) == 0x000008, "Member 'PaperFlipbook_GetSpriteAtFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetSpriteAtTime \ +static_assert(alignof(PaperFlipbook_GetSpriteAtTime) == 0x000008, "Wrong alignment on PaperFlipbook_GetSpriteAtTime"); \ +static_assert(sizeof(PaperFlipbook_GetSpriteAtTime) == 0x000010, "Wrong size on PaperFlipbook_GetSpriteAtTime"); \ +static_assert(offsetof(PaperFlipbook_GetSpriteAtTime, Time) == 0x000000, "Member 'PaperFlipbook_GetSpriteAtTime::Time' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_GetSpriteAtTime, bClampToEnds) == 0x000004, "Member 'PaperFlipbook_GetSpriteAtTime::bClampToEnds' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_GetSpriteAtTime, ReturnValue) == 0x000008, "Member 'PaperFlipbook_GetSpriteAtTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_GetTotalDuration \ +static_assert(alignof(PaperFlipbook_GetTotalDuration) == 0x000004, "Wrong alignment on PaperFlipbook_GetTotalDuration"); \ +static_assert(sizeof(PaperFlipbook_GetTotalDuration) == 0x000004, "Wrong size on PaperFlipbook_GetTotalDuration"); \ +static_assert(offsetof(PaperFlipbook_GetTotalDuration, ReturnValue) == 0x000000, "Member 'PaperFlipbook_GetTotalDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbook_IsValidKeyFrameIndex \ +static_assert(alignof(PaperFlipbook_IsValidKeyFrameIndex) == 0x000004, "Wrong alignment on PaperFlipbook_IsValidKeyFrameIndex"); \ +static_assert(sizeof(PaperFlipbook_IsValidKeyFrameIndex) == 0x000008, "Wrong size on PaperFlipbook_IsValidKeyFrameIndex"); \ +static_assert(offsetof(PaperFlipbook_IsValidKeyFrameIndex, Index_0) == 0x000000, "Member 'PaperFlipbook_IsValidKeyFrameIndex::Index_0' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbook_IsValidKeyFrameIndex, ReturnValue) == 0x000004, "Member 'PaperFlipbook_IsValidKeyFrameIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperFlipbook \ +static_assert(alignof(UPaperFlipbook) == 0x000008, "Wrong alignment on UPaperFlipbook"); \ +static_assert(sizeof(UPaperFlipbook) == 0x000050, "Wrong size on UPaperFlipbook"); \ +static_assert(offsetof(UPaperFlipbook, FramesPerSecond) == 0x000028, "Member 'UPaperFlipbook::FramesPerSecond' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbook, KeyFrames) == 0x000030, "Member 'UPaperFlipbook::KeyFrames' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbook, DefaultMaterial) == 0x000040, "Member 'UPaperFlipbook::DefaultMaterial' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbook, CollisionSource) == 0x000048, "Member 'UPaperFlipbook::CollisionSource' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperFlipbookActor \ +static_assert(alignof(APaperFlipbookActor) == 0x000008, "Wrong alignment on APaperFlipbookActor"); \ +static_assert(sizeof(APaperFlipbookActor) == 0x0002A0, "Wrong size on APaperFlipbookActor"); \ +static_assert(offsetof(APaperFlipbookActor, RenderComponent) == 0x000298, "Member 'APaperFlipbookActor::RenderComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetFlipbook \ +static_assert(alignof(PaperFlipbookComponent_GetFlipbook) == 0x000008, "Wrong alignment on PaperFlipbookComponent_GetFlipbook"); \ +static_assert(sizeof(PaperFlipbookComponent_GetFlipbook) == 0x000008, "Wrong size on PaperFlipbookComponent_GetFlipbook"); \ +static_assert(offsetof(PaperFlipbookComponent_GetFlipbook, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetFlipbook::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_OnRep_SourceFlipbook \ +static_assert(alignof(PaperFlipbookComponent_OnRep_SourceFlipbook) == 0x000008, "Wrong alignment on PaperFlipbookComponent_OnRep_SourceFlipbook"); \ +static_assert(sizeof(PaperFlipbookComponent_OnRep_SourceFlipbook) == 0x000008, "Wrong size on PaperFlipbookComponent_OnRep_SourceFlipbook"); \ +static_assert(offsetof(PaperFlipbookComponent_OnRep_SourceFlipbook, OldFlipbook) == 0x000000, "Member 'PaperFlipbookComponent_OnRep_SourceFlipbook::OldFlipbook' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetFlipbook \ +static_assert(alignof(PaperFlipbookComponent_SetFlipbook) == 0x000008, "Wrong alignment on PaperFlipbookComponent_SetFlipbook"); \ +static_assert(sizeof(PaperFlipbookComponent_SetFlipbook) == 0x000010, "Wrong size on PaperFlipbookComponent_SetFlipbook"); \ +static_assert(offsetof(PaperFlipbookComponent_SetFlipbook, NewFlipbook) == 0x000000, "Member 'PaperFlipbookComponent_SetFlipbook::NewFlipbook' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbookComponent_SetFlipbook, ReturnValue) == 0x000008, "Member 'PaperFlipbookComponent_SetFlipbook::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetLooping \ +static_assert(alignof(PaperFlipbookComponent_SetLooping) == 0x000001, "Wrong alignment on PaperFlipbookComponent_SetLooping"); \ +static_assert(sizeof(PaperFlipbookComponent_SetLooping) == 0x000001, "Wrong size on PaperFlipbookComponent_SetLooping"); \ +static_assert(offsetof(PaperFlipbookComponent_SetLooping, bNewLooping) == 0x000000, "Member 'PaperFlipbookComponent_SetLooping::bNewLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetNewTime \ +static_assert(alignof(PaperFlipbookComponent_SetNewTime) == 0x000004, "Wrong alignment on PaperFlipbookComponent_SetNewTime"); \ +static_assert(sizeof(PaperFlipbookComponent_SetNewTime) == 0x000004, "Wrong size on PaperFlipbookComponent_SetNewTime"); \ +static_assert(offsetof(PaperFlipbookComponent_SetNewTime, NewTime) == 0x000000, "Member 'PaperFlipbookComponent_SetNewTime::NewTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetPlaybackPosition \ +static_assert(alignof(PaperFlipbookComponent_SetPlaybackPosition) == 0x000004, "Wrong alignment on PaperFlipbookComponent_SetPlaybackPosition"); \ +static_assert(sizeof(PaperFlipbookComponent_SetPlaybackPosition) == 0x000008, "Wrong size on PaperFlipbookComponent_SetPlaybackPosition"); \ +static_assert(offsetof(PaperFlipbookComponent_SetPlaybackPosition, NewPosition) == 0x000000, "Member 'PaperFlipbookComponent_SetPlaybackPosition::NewPosition' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbookComponent_SetPlaybackPosition, bFireEvents) == 0x000004, "Member 'PaperFlipbookComponent_SetPlaybackPosition::bFireEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetPlaybackPositionInFrames \ +static_assert(alignof(PaperFlipbookComponent_SetPlaybackPositionInFrames) == 0x000004, "Wrong alignment on PaperFlipbookComponent_SetPlaybackPositionInFrames"); \ +static_assert(sizeof(PaperFlipbookComponent_SetPlaybackPositionInFrames) == 0x000008, "Wrong size on PaperFlipbookComponent_SetPlaybackPositionInFrames"); \ +static_assert(offsetof(PaperFlipbookComponent_SetPlaybackPositionInFrames, NewFramePosition) == 0x000000, "Member 'PaperFlipbookComponent_SetPlaybackPositionInFrames::NewFramePosition' has a wrong offset!"); \ +static_assert(offsetof(PaperFlipbookComponent_SetPlaybackPositionInFrames, bFireEvents) == 0x000004, "Member 'PaperFlipbookComponent_SetPlaybackPositionInFrames::bFireEvents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetPlayRate \ +static_assert(alignof(PaperFlipbookComponent_SetPlayRate) == 0x000004, "Wrong alignment on PaperFlipbookComponent_SetPlayRate"); \ +static_assert(sizeof(PaperFlipbookComponent_SetPlayRate) == 0x000004, "Wrong size on PaperFlipbookComponent_SetPlayRate"); \ +static_assert(offsetof(PaperFlipbookComponent_SetPlayRate, NewRate) == 0x000000, "Member 'PaperFlipbookComponent_SetPlayRate::NewRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_SetSpriteColor \ +static_assert(alignof(PaperFlipbookComponent_SetSpriteColor) == 0x000004, "Wrong alignment on PaperFlipbookComponent_SetSpriteColor"); \ +static_assert(sizeof(PaperFlipbookComponent_SetSpriteColor) == 0x000010, "Wrong size on PaperFlipbookComponent_SetSpriteColor"); \ +static_assert(offsetof(PaperFlipbookComponent_SetSpriteColor, NewColor) == 0x000000, "Member 'PaperFlipbookComponent_SetSpriteColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetFlipbookFramerate \ +static_assert(alignof(PaperFlipbookComponent_GetFlipbookFramerate) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetFlipbookFramerate"); \ +static_assert(sizeof(PaperFlipbookComponent_GetFlipbookFramerate) == 0x000004, "Wrong size on PaperFlipbookComponent_GetFlipbookFramerate"); \ +static_assert(offsetof(PaperFlipbookComponent_GetFlipbookFramerate, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetFlipbookFramerate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetFlipbookLength \ +static_assert(alignof(PaperFlipbookComponent_GetFlipbookLength) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetFlipbookLength"); \ +static_assert(sizeof(PaperFlipbookComponent_GetFlipbookLength) == 0x000004, "Wrong size on PaperFlipbookComponent_GetFlipbookLength"); \ +static_assert(offsetof(PaperFlipbookComponent_GetFlipbookLength, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetFlipbookLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetFlipbookLengthInFrames \ +static_assert(alignof(PaperFlipbookComponent_GetFlipbookLengthInFrames) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetFlipbookLengthInFrames"); \ +static_assert(sizeof(PaperFlipbookComponent_GetFlipbookLengthInFrames) == 0x000004, "Wrong size on PaperFlipbookComponent_GetFlipbookLengthInFrames"); \ +static_assert(offsetof(PaperFlipbookComponent_GetFlipbookLengthInFrames, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetFlipbookLengthInFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetPlaybackPosition \ +static_assert(alignof(PaperFlipbookComponent_GetPlaybackPosition) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetPlaybackPosition"); \ +static_assert(sizeof(PaperFlipbookComponent_GetPlaybackPosition) == 0x000004, "Wrong size on PaperFlipbookComponent_GetPlaybackPosition"); \ +static_assert(offsetof(PaperFlipbookComponent_GetPlaybackPosition, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetPlaybackPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetPlaybackPositionInFrames \ +static_assert(alignof(PaperFlipbookComponent_GetPlaybackPositionInFrames) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetPlaybackPositionInFrames"); \ +static_assert(sizeof(PaperFlipbookComponent_GetPlaybackPositionInFrames) == 0x000004, "Wrong size on PaperFlipbookComponent_GetPlaybackPositionInFrames"); \ +static_assert(offsetof(PaperFlipbookComponent_GetPlaybackPositionInFrames, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetPlaybackPositionInFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetPlayRate \ +static_assert(alignof(PaperFlipbookComponent_GetPlayRate) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetPlayRate"); \ +static_assert(sizeof(PaperFlipbookComponent_GetPlayRate) == 0x000004, "Wrong size on PaperFlipbookComponent_GetPlayRate"); \ +static_assert(offsetof(PaperFlipbookComponent_GetPlayRate, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetPlayRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_GetSpriteColor \ +static_assert(alignof(PaperFlipbookComponent_GetSpriteColor) == 0x000004, "Wrong alignment on PaperFlipbookComponent_GetSpriteColor"); \ +static_assert(sizeof(PaperFlipbookComponent_GetSpriteColor) == 0x000010, "Wrong size on PaperFlipbookComponent_GetSpriteColor"); \ +static_assert(offsetof(PaperFlipbookComponent_GetSpriteColor, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_GetSpriteColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_IsLooping \ +static_assert(alignof(PaperFlipbookComponent_IsLooping) == 0x000001, "Wrong alignment on PaperFlipbookComponent_IsLooping"); \ +static_assert(sizeof(PaperFlipbookComponent_IsLooping) == 0x000001, "Wrong size on PaperFlipbookComponent_IsLooping"); \ +static_assert(offsetof(PaperFlipbookComponent_IsLooping, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_IsLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_IsPlaying \ +static_assert(alignof(PaperFlipbookComponent_IsPlaying) == 0x000001, "Wrong alignment on PaperFlipbookComponent_IsPlaying"); \ +static_assert(sizeof(PaperFlipbookComponent_IsPlaying) == 0x000001, "Wrong size on PaperFlipbookComponent_IsPlaying"); \ +static_assert(offsetof(PaperFlipbookComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperFlipbookComponent_IsReversing \ +static_assert(alignof(PaperFlipbookComponent_IsReversing) == 0x000001, "Wrong alignment on PaperFlipbookComponent_IsReversing"); \ +static_assert(sizeof(PaperFlipbookComponent_IsReversing) == 0x000001, "Wrong size on PaperFlipbookComponent_IsReversing"); \ +static_assert(offsetof(PaperFlipbookComponent_IsReversing, ReturnValue) == 0x000000, "Member 'PaperFlipbookComponent_IsReversing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperFlipbookComponent \ +static_assert(alignof(UPaperFlipbookComponent) == 0x000010, "Wrong alignment on UPaperFlipbookComponent"); \ +static_assert(sizeof(UPaperFlipbookComponent) == 0x0005F0, "Wrong size on UPaperFlipbookComponent"); \ +static_assert(offsetof(UPaperFlipbookComponent, SourceFlipbook) == 0x0005A8, "Member 'UPaperFlipbookComponent::SourceFlipbook' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, Material) == 0x0005B0, "Member 'UPaperFlipbookComponent::Material' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, PlayRate) == 0x0005B8, "Member 'UPaperFlipbookComponent::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, AccumulatedTime) == 0x0005C0, "Member 'UPaperFlipbookComponent::AccumulatedTime' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, CachedFrameIndex) == 0x0005C4, "Member 'UPaperFlipbookComponent::CachedFrameIndex' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, SpriteColor) == 0x0005C8, "Member 'UPaperFlipbookComponent::SpriteColor' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, CachedBodySetup) == 0x0005D8, "Member 'UPaperFlipbookComponent::CachedBodySetup' has a wrong offset!"); \ +static_assert(offsetof(UPaperFlipbookComponent, OnFinishedPlaying) == 0x0005E0, "Member 'UPaperFlipbookComponent::OnFinishedPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperGroupedSpriteActor \ +static_assert(alignof(APaperGroupedSpriteActor) == 0x000008, "Wrong alignment on APaperGroupedSpriteActor"); \ +static_assert(sizeof(APaperGroupedSpriteActor) == 0x0002A0, "Wrong size on APaperGroupedSpriteActor"); \ +static_assert(offsetof(APaperGroupedSpriteActor, RenderComponent) == 0x000298, "Member 'APaperGroupedSpriteActor::RenderComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_AddInstance \ +static_assert(alignof(PaperGroupedSpriteComponent_AddInstance) == 0x000010, "Wrong alignment on PaperGroupedSpriteComponent_AddInstance"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_AddInstance) == 0x000080, "Wrong size on PaperGroupedSpriteComponent_AddInstance"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_AddInstance, Transform) == 0x000000, "Member 'PaperGroupedSpriteComponent_AddInstance::Transform' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_AddInstance, Sprite) == 0x000060, "Member 'PaperGroupedSpriteComponent_AddInstance::Sprite' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_AddInstance, bWorldSpace) == 0x000068, "Member 'PaperGroupedSpriteComponent_AddInstance::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_AddInstance, Color) == 0x00006C, "Member 'PaperGroupedSpriteComponent_AddInstance::Color' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_AddInstance, ReturnValue) == 0x00007C, "Member 'PaperGroupedSpriteComponent_AddInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_RemoveInstance \ +static_assert(alignof(PaperGroupedSpriteComponent_RemoveInstance) == 0x000004, "Wrong alignment on PaperGroupedSpriteComponent_RemoveInstance"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_RemoveInstance) == 0x000008, "Wrong size on PaperGroupedSpriteComponent_RemoveInstance"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_RemoveInstance, InstanceIndex) == 0x000000, "Member 'PaperGroupedSpriteComponent_RemoveInstance::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_RemoveInstance, ReturnValue) == 0x000004, "Member 'PaperGroupedSpriteComponent_RemoveInstance::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_SortInstancesAlongAxis \ +static_assert(alignof(PaperGroupedSpriteComponent_SortInstancesAlongAxis) == 0x000008, "Wrong alignment on PaperGroupedSpriteComponent_SortInstancesAlongAxis"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_SortInstancesAlongAxis) == 0x000018, "Wrong size on PaperGroupedSpriteComponent_SortInstancesAlongAxis"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_SortInstancesAlongAxis, WorldSpaceSortAxis) == 0x000000, "Member 'PaperGroupedSpriteComponent_SortInstancesAlongAxis::WorldSpaceSortAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_UpdateInstanceColor \ +static_assert(alignof(PaperGroupedSpriteComponent_UpdateInstanceColor) == 0x000004, "Wrong alignment on PaperGroupedSpriteComponent_UpdateInstanceColor"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_UpdateInstanceColor) == 0x000018, "Wrong size on PaperGroupedSpriteComponent_UpdateInstanceColor"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceColor, InstanceIndex) == 0x000000, "Member 'PaperGroupedSpriteComponent_UpdateInstanceColor::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceColor, NewInstanceColor) == 0x000004, "Member 'PaperGroupedSpriteComponent_UpdateInstanceColor::NewInstanceColor' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceColor, bMarkRenderStateDirty) == 0x000014, "Member 'PaperGroupedSpriteComponent_UpdateInstanceColor::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceColor, ReturnValue) == 0x000015, "Member 'PaperGroupedSpriteComponent_UpdateInstanceColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_UpdateInstanceTransform \ +static_assert(alignof(PaperGroupedSpriteComponent_UpdateInstanceTransform) == 0x000010, "Wrong alignment on PaperGroupedSpriteComponent_UpdateInstanceTransform"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_UpdateInstanceTransform) == 0x000080, "Wrong size on PaperGroupedSpriteComponent_UpdateInstanceTransform"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, InstanceIndex) == 0x000000, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, NewInstanceTransform) == 0x000010, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::NewInstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, bWorldSpace) == 0x000070, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, bMarkRenderStateDirty) == 0x000071, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::bMarkRenderStateDirty' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, bTeleport) == 0x000072, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::bTeleport' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_UpdateInstanceTransform, ReturnValue) == 0x000073, "Member 'PaperGroupedSpriteComponent_UpdateInstanceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_GetInstanceCount \ +static_assert(alignof(PaperGroupedSpriteComponent_GetInstanceCount) == 0x000004, "Wrong alignment on PaperGroupedSpriteComponent_GetInstanceCount"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_GetInstanceCount) == 0x000004, "Wrong size on PaperGroupedSpriteComponent_GetInstanceCount"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_GetInstanceCount, ReturnValue) == 0x000000, "Member 'PaperGroupedSpriteComponent_GetInstanceCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperGroupedSpriteComponent_GetInstanceTransform \ +static_assert(alignof(PaperGroupedSpriteComponent_GetInstanceTransform) == 0x000010, "Wrong alignment on PaperGroupedSpriteComponent_GetInstanceTransform"); \ +static_assert(sizeof(PaperGroupedSpriteComponent_GetInstanceTransform) == 0x000080, "Wrong size on PaperGroupedSpriteComponent_GetInstanceTransform"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_GetInstanceTransform, InstanceIndex) == 0x000000, "Member 'PaperGroupedSpriteComponent_GetInstanceTransform::InstanceIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_GetInstanceTransform, OutInstanceTransform) == 0x000010, "Member 'PaperGroupedSpriteComponent_GetInstanceTransform::OutInstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_GetInstanceTransform, bWorldSpace) == 0x000070, "Member 'PaperGroupedSpriteComponent_GetInstanceTransform::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(PaperGroupedSpriteComponent_GetInstanceTransform, ReturnValue) == 0x000071, "Member 'PaperGroupedSpriteComponent_GetInstanceTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperGroupedSpriteComponent \ +static_assert(alignof(UPaperGroupedSpriteComponent) == 0x000010, "Wrong alignment on UPaperGroupedSpriteComponent"); \ +static_assert(sizeof(UPaperGroupedSpriteComponent) == 0x0005E0, "Wrong size on UPaperGroupedSpriteComponent"); \ +static_assert(offsetof(UPaperGroupedSpriteComponent, InstanceMaterials) == 0x0005A8, "Member 'UPaperGroupedSpriteComponent::InstanceMaterials' has a wrong offset!"); \ +static_assert(offsetof(UPaperGroupedSpriteComponent, PerInstanceSpriteData) == 0x0005B8, "Member 'UPaperGroupedSpriteComponent::PerInstanceSpriteData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperRuntimeSettings \ +static_assert(alignof(UPaperRuntimeSettings) == 0x000008, "Wrong alignment on UPaperRuntimeSettings"); \ +static_assert(sizeof(UPaperRuntimeSettings) == 0x000030, "Wrong size on UPaperRuntimeSettings"); \ +static_assert(offsetof(UPaperRuntimeSettings, bEnableSpriteAtlasGroups) == 0x000028, "Member 'UPaperRuntimeSettings::bEnableSpriteAtlasGroups' has a wrong offset!"); \ +static_assert(offsetof(UPaperRuntimeSettings, bEnableTerrainSplineEditing) == 0x000029, "Member 'UPaperRuntimeSettings::bEnableTerrainSplineEditing' has a wrong offset!"); \ +static_assert(offsetof(UPaperRuntimeSettings, bResizeSpriteDataToMatchTextures) == 0x00002A, "Member 'UPaperRuntimeSettings::bResizeSpriteDataToMatchTextures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperSprite \ +static_assert(alignof(UPaperSprite) == 0x000008, "Wrong alignment on UPaperSprite"); \ +static_assert(sizeof(UPaperSprite) == 0x0000B8, "Wrong size on UPaperSprite"); \ +static_assert(offsetof(UPaperSprite, AdditionalSourceTextures) == 0x000038, "Member 'UPaperSprite::AdditionalSourceTextures' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, BakedSourceUV) == 0x000048, "Member 'UPaperSprite::BakedSourceUV' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, BakedSourceDimension) == 0x000058, "Member 'UPaperSprite::BakedSourceDimension' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, BakedSourceTexture) == 0x000068, "Member 'UPaperSprite::BakedSourceTexture' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, DefaultMaterial) == 0x000070, "Member 'UPaperSprite::DefaultMaterial' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, AlternateMaterial) == 0x000078, "Member 'UPaperSprite::AlternateMaterial' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, Sockets) == 0x000080, "Member 'UPaperSprite::Sockets' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, SpriteCollisionDomain) == 0x000090, "Member 'UPaperSprite::SpriteCollisionDomain' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, PixelsPerUnrealUnit) == 0x000094, "Member 'UPaperSprite::PixelsPerUnrealUnit' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, BodySetup) == 0x000098, "Member 'UPaperSprite::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, AlternateMaterialSplitIndex) == 0x0000A0, "Member 'UPaperSprite::AlternateMaterialSplitIndex' has a wrong offset!"); \ +static_assert(offsetof(UPaperSprite, BakedRenderData) == 0x0000A8, "Member 'UPaperSprite::BakedRenderData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperSpriteActor \ +static_assert(alignof(APaperSpriteActor) == 0x000008, "Wrong alignment on APaperSpriteActor"); \ +static_assert(sizeof(APaperSpriteActor) == 0x0002A0, "Wrong size on APaperSpriteActor"); \ +static_assert(offsetof(APaperSpriteActor, RenderComponent) == 0x000298, "Member 'APaperSpriteActor::RenderComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperSpriteAtlas \ +static_assert(alignof(UPaperSpriteAtlas) == 0x000008, "Wrong alignment on UPaperSpriteAtlas"); \ +static_assert(sizeof(UPaperSpriteAtlas) == 0x000028, "Wrong size on UPaperSpriteAtlas"); \ + +#define DUMPER7_ASSERTS_PaperSpriteBlueprintLibrary_MakeBrushFromSprite \ +static_assert(alignof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite) == 0x000010, "Wrong alignment on PaperSpriteBlueprintLibrary_MakeBrushFromSprite"); \ +static_assert(sizeof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite) == 0x0000E0, "Wrong size on PaperSpriteBlueprintLibrary_MakeBrushFromSprite"); \ +static_assert(offsetof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite, Sprite) == 0x000000, "Member 'PaperSpriteBlueprintLibrary_MakeBrushFromSprite::Sprite' has a wrong offset!"); \ +static_assert(offsetof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite, Width) == 0x000008, "Member 'PaperSpriteBlueprintLibrary_MakeBrushFromSprite::Width' has a wrong offset!"); \ +static_assert(offsetof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite, Height) == 0x00000C, "Member 'PaperSpriteBlueprintLibrary_MakeBrushFromSprite::Height' has a wrong offset!"); \ +static_assert(offsetof(PaperSpriteBlueprintLibrary_MakeBrushFromSprite, ReturnValue) == 0x000010, "Member 'PaperSpriteBlueprintLibrary_MakeBrushFromSprite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperSpriteBlueprintLibrary \ +static_assert(alignof(UPaperSpriteBlueprintLibrary) == 0x000008, "Wrong alignment on UPaperSpriteBlueprintLibrary"); \ +static_assert(sizeof(UPaperSpriteBlueprintLibrary) == 0x000028, "Wrong size on UPaperSpriteBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_PaperSpriteComponent_GetSprite \ +static_assert(alignof(PaperSpriteComponent_GetSprite) == 0x000008, "Wrong alignment on PaperSpriteComponent_GetSprite"); \ +static_assert(sizeof(PaperSpriteComponent_GetSprite) == 0x000008, "Wrong size on PaperSpriteComponent_GetSprite"); \ +static_assert(offsetof(PaperSpriteComponent_GetSprite, ReturnValue) == 0x000000, "Member 'PaperSpriteComponent_GetSprite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperSpriteComponent_SetSprite \ +static_assert(alignof(PaperSpriteComponent_SetSprite) == 0x000008, "Wrong alignment on PaperSpriteComponent_SetSprite"); \ +static_assert(sizeof(PaperSpriteComponent_SetSprite) == 0x000010, "Wrong size on PaperSpriteComponent_SetSprite"); \ +static_assert(offsetof(PaperSpriteComponent_SetSprite, NewSprite) == 0x000000, "Member 'PaperSpriteComponent_SetSprite::NewSprite' has a wrong offset!"); \ +static_assert(offsetof(PaperSpriteComponent_SetSprite, ReturnValue) == 0x000008, "Member 'PaperSpriteComponent_SetSprite::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperSpriteComponent_SetSpriteColor \ +static_assert(alignof(PaperSpriteComponent_SetSpriteColor) == 0x000004, "Wrong alignment on PaperSpriteComponent_SetSpriteColor"); \ +static_assert(sizeof(PaperSpriteComponent_SetSpriteColor) == 0x000010, "Wrong size on PaperSpriteComponent_SetSpriteColor"); \ +static_assert(offsetof(PaperSpriteComponent_SetSpriteColor, NewColor) == 0x000000, "Member 'PaperSpriteComponent_SetSpriteColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperSpriteComponent \ +static_assert(alignof(UPaperSpriteComponent) == 0x000010, "Wrong alignment on UPaperSpriteComponent"); \ +static_assert(sizeof(UPaperSpriteComponent) == 0x0005D0, "Wrong size on UPaperSpriteComponent"); \ +static_assert(offsetof(UPaperSpriteComponent, SourceSprite) == 0x0005A8, "Member 'UPaperSpriteComponent::SourceSprite' has a wrong offset!"); \ +static_assert(offsetof(UPaperSpriteComponent, MaterialOverride) == 0x0005B0, "Member 'UPaperSpriteComponent::MaterialOverride' has a wrong offset!"); \ +static_assert(offsetof(UPaperSpriteComponent, SpriteColor) == 0x0005B8, "Member 'UPaperSpriteComponent::SpriteColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTileLayer \ +static_assert(alignof(UPaperTileLayer) == 0x000008, "Wrong alignment on UPaperTileLayer"); \ +static_assert(sizeof(UPaperTileLayer) == 0x000098, "Wrong size on UPaperTileLayer"); \ +static_assert(offsetof(UPaperTileLayer, LayerName) == 0x000028, "Member 'UPaperTileLayer::LayerName' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, LayerWidth) == 0x000040, "Member 'UPaperTileLayer::LayerWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, LayerHeight) == 0x000044, "Member 'UPaperTileLayer::LayerHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, CollisionThicknessOverride) == 0x00004C, "Member 'UPaperTileLayer::CollisionThicknessOverride' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, CollisionOffsetOverride) == 0x000050, "Member 'UPaperTileLayer::CollisionOffsetOverride' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, LayerColor) == 0x000054, "Member 'UPaperTileLayer::LayerColor' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, AllocatedWidth) == 0x000064, "Member 'UPaperTileLayer::AllocatedWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, AllocatedHeight) == 0x000068, "Member 'UPaperTileLayer::AllocatedHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, AllocatedCells) == 0x000070, "Member 'UPaperTileLayer::AllocatedCells' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, TileSet) == 0x000080, "Member 'UPaperTileLayer::TileSet' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileLayer, AllocatedGrid) == 0x000088, "Member 'UPaperTileLayer::AllocatedGrid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTileMap \ +static_assert(alignof(UPaperTileMap) == 0x000008, "Wrong alignment on UPaperTileMap"); \ +static_assert(sizeof(UPaperTileMap) == 0x0000A8, "Wrong size on UPaperTileMap"); \ +static_assert(offsetof(UPaperTileMap, MapWidth) == 0x000028, "Member 'UPaperTileMap::MapWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, MapHeight) == 0x00002C, "Member 'UPaperTileMap::MapHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, TileWidth) == 0x000030, "Member 'UPaperTileMap::TileWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, TileHeight) == 0x000034, "Member 'UPaperTileMap::TileHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, PixelsPerUnrealUnit) == 0x000038, "Member 'UPaperTileMap::PixelsPerUnrealUnit' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, SeparationPerTileX) == 0x00003C, "Member 'UPaperTileMap::SeparationPerTileX' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, SeparationPerTileY) == 0x000040, "Member 'UPaperTileMap::SeparationPerTileY' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, SeparationPerLayer) == 0x000044, "Member 'UPaperTileMap::SeparationPerLayer' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, SelectedTileSet) == 0x000048, "Member 'UPaperTileMap::SelectedTileSet' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, Material) == 0x000070, "Member 'UPaperTileMap::Material' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, TileLayers) == 0x000078, "Member 'UPaperTileMap::TileLayers' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, CollisionThickness) == 0x000088, "Member 'UPaperTileMap::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, SpriteCollisionDomain) == 0x00008C, "Member 'UPaperTileMap::SpriteCollisionDomain' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, ProjectionMode) == 0x00008D, "Member 'UPaperTileMap::ProjectionMode' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, HexSideLength) == 0x000090, "Member 'UPaperTileMap::HexSideLength' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, BodySetup) == 0x000098, "Member 'UPaperTileMap::BodySetup' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMap, LayerNameIndex) == 0x0000A0, "Member 'UPaperTileMap::LayerNameIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperTileMapActor \ +static_assert(alignof(APaperTileMapActor) == 0x000008, "Wrong alignment on APaperTileMapActor"); \ +static_assert(sizeof(APaperTileMapActor) == 0x0002A0, "Wrong size on APaperTileMapActor"); \ +static_assert(offsetof(APaperTileMapActor, RenderComponent) == 0x000298, "Member 'APaperTileMapActor::RenderComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_AddNewLayer \ +static_assert(alignof(PaperTileMapComponent_AddNewLayer) == 0x000008, "Wrong alignment on PaperTileMapComponent_AddNewLayer"); \ +static_assert(sizeof(PaperTileMapComponent_AddNewLayer) == 0x000008, "Wrong size on PaperTileMapComponent_AddNewLayer"); \ +static_assert(offsetof(PaperTileMapComponent_AddNewLayer, ReturnValue) == 0x000000, "Member 'PaperTileMapComponent_AddNewLayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_CreateNewTileMap \ +static_assert(alignof(PaperTileMapComponent_CreateNewTileMap) == 0x000004, "Wrong alignment on PaperTileMapComponent_CreateNewTileMap"); \ +static_assert(sizeof(PaperTileMapComponent_CreateNewTileMap) == 0x000018, "Wrong size on PaperTileMapComponent_CreateNewTileMap"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, MapWidth_0) == 0x000000, "Member 'PaperTileMapComponent_CreateNewTileMap::MapWidth_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, MapHeight_0) == 0x000004, "Member 'PaperTileMapComponent_CreateNewTileMap::MapHeight_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, TileWidth_0) == 0x000008, "Member 'PaperTileMapComponent_CreateNewTileMap::TileWidth_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, TileHeight_0) == 0x00000C, "Member 'PaperTileMapComponent_CreateNewTileMap::TileHeight_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, PixelsPerUnrealUnit) == 0x000010, "Member 'PaperTileMapComponent_CreateNewTileMap::PixelsPerUnrealUnit' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_CreateNewTileMap, bCreateLayer) == 0x000014, "Member 'PaperTileMapComponent_CreateNewTileMap::bCreateLayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetMapSize \ +static_assert(alignof(PaperTileMapComponent_GetMapSize) == 0x000004, "Wrong alignment on PaperTileMapComponent_GetMapSize"); \ +static_assert(sizeof(PaperTileMapComponent_GetMapSize) == 0x00000C, "Wrong size on PaperTileMapComponent_GetMapSize"); \ +static_assert(offsetof(PaperTileMapComponent_GetMapSize, MapWidth_0) == 0x000000, "Member 'PaperTileMapComponent_GetMapSize::MapWidth_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetMapSize, MapHeight_0) == 0x000004, "Member 'PaperTileMapComponent_GetMapSize::MapHeight_0' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetMapSize, NumLayers) == 0x000008, "Member 'PaperTileMapComponent_GetMapSize::NumLayers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_ResizeMap \ +static_assert(alignof(PaperTileMapComponent_ResizeMap) == 0x000004, "Wrong alignment on PaperTileMapComponent_ResizeMap"); \ +static_assert(sizeof(PaperTileMapComponent_ResizeMap) == 0x000008, "Wrong size on PaperTileMapComponent_ResizeMap"); \ +static_assert(offsetof(PaperTileMapComponent_ResizeMap, NewWidthInTiles) == 0x000000, "Member 'PaperTileMapComponent_ResizeMap::NewWidthInTiles' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_ResizeMap, NewHeightInTiles) == 0x000004, "Member 'PaperTileMapComponent_ResizeMap::NewHeightInTiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetDefaultCollisionThickness \ +static_assert(alignof(PaperTileMapComponent_SetDefaultCollisionThickness) == 0x000004, "Wrong alignment on PaperTileMapComponent_SetDefaultCollisionThickness"); \ +static_assert(sizeof(PaperTileMapComponent_SetDefaultCollisionThickness) == 0x000008, "Wrong size on PaperTileMapComponent_SetDefaultCollisionThickness"); \ +static_assert(offsetof(PaperTileMapComponent_SetDefaultCollisionThickness, Thickness) == 0x000000, "Member 'PaperTileMapComponent_SetDefaultCollisionThickness::Thickness' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetDefaultCollisionThickness, bRebuildCollision) == 0x000004, "Member 'PaperTileMapComponent_SetDefaultCollisionThickness::bRebuildCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetLayerCollision \ +static_assert(alignof(PaperTileMapComponent_SetLayerCollision) == 0x000004, "Wrong alignment on PaperTileMapComponent_SetLayerCollision"); \ +static_assert(sizeof(PaperTileMapComponent_SetLayerCollision) == 0x000018, "Wrong size on PaperTileMapComponent_SetLayerCollision"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, Layer) == 0x000000, "Member 'PaperTileMapComponent_SetLayerCollision::Layer' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, bHasCollision) == 0x000004, "Member 'PaperTileMapComponent_SetLayerCollision::bHasCollision' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, bOverrideThickness) == 0x000005, "Member 'PaperTileMapComponent_SetLayerCollision::bOverrideThickness' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, CustomThickness) == 0x000008, "Member 'PaperTileMapComponent_SetLayerCollision::CustomThickness' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, bOverrideOffset) == 0x00000C, "Member 'PaperTileMapComponent_SetLayerCollision::bOverrideOffset' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, CustomOffset) == 0x000010, "Member 'PaperTileMapComponent_SetLayerCollision::CustomOffset' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerCollision, bRebuildCollision) == 0x000014, "Member 'PaperTileMapComponent_SetLayerCollision::bRebuildCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetLayerColor \ +static_assert(alignof(PaperTileMapComponent_SetLayerColor) == 0x000004, "Wrong alignment on PaperTileMapComponent_SetLayerColor"); \ +static_assert(sizeof(PaperTileMapComponent_SetLayerColor) == 0x000014, "Wrong size on PaperTileMapComponent_SetLayerColor"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerColor, NewColor) == 0x000000, "Member 'PaperTileMapComponent_SetLayerColor::NewColor' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetLayerColor, Layer) == 0x000010, "Member 'PaperTileMapComponent_SetLayerColor::Layer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetTile \ +static_assert(alignof(PaperTileMapComponent_SetTile) == 0x000008, "Wrong alignment on PaperTileMapComponent_SetTile"); \ +static_assert(sizeof(PaperTileMapComponent_SetTile) == 0x000020, "Wrong size on PaperTileMapComponent_SetTile"); \ +static_assert(offsetof(PaperTileMapComponent_SetTile, X) == 0x000000, "Member 'PaperTileMapComponent_SetTile::X' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetTile, Y) == 0x000004, "Member 'PaperTileMapComponent_SetTile::Y' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetTile, Layer) == 0x000008, "Member 'PaperTileMapComponent_SetTile::Layer' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetTile, NewValue) == 0x000010, "Member 'PaperTileMapComponent_SetTile::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetTileMap \ +static_assert(alignof(PaperTileMapComponent_SetTileMap) == 0x000008, "Wrong alignment on PaperTileMapComponent_SetTileMap"); \ +static_assert(sizeof(PaperTileMapComponent_SetTileMap) == 0x000010, "Wrong size on PaperTileMapComponent_SetTileMap"); \ +static_assert(offsetof(PaperTileMapComponent_SetTileMap, NewTileMap) == 0x000000, "Member 'PaperTileMapComponent_SetTileMap::NewTileMap' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_SetTileMap, ReturnValue) == 0x000008, "Member 'PaperTileMapComponent_SetTileMap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_SetTileMapColor \ +static_assert(alignof(PaperTileMapComponent_SetTileMapColor) == 0x000004, "Wrong alignment on PaperTileMapComponent_SetTileMapColor"); \ +static_assert(sizeof(PaperTileMapComponent_SetTileMapColor) == 0x000010, "Wrong size on PaperTileMapComponent_SetTileMapColor"); \ +static_assert(offsetof(PaperTileMapComponent_SetTileMapColor, NewColor) == 0x000000, "Member 'PaperTileMapComponent_SetTileMapColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetLayerColor \ +static_assert(alignof(PaperTileMapComponent_GetLayerColor) == 0x000004, "Wrong alignment on PaperTileMapComponent_GetLayerColor"); \ +static_assert(sizeof(PaperTileMapComponent_GetLayerColor) == 0x000014, "Wrong size on PaperTileMapComponent_GetLayerColor"); \ +static_assert(offsetof(PaperTileMapComponent_GetLayerColor, Layer) == 0x000000, "Member 'PaperTileMapComponent_GetLayerColor::Layer' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetLayerColor, ReturnValue) == 0x000004, "Member 'PaperTileMapComponent_GetLayerColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetTile \ +static_assert(alignof(PaperTileMapComponent_GetTile) == 0x000008, "Wrong alignment on PaperTileMapComponent_GetTile"); \ +static_assert(sizeof(PaperTileMapComponent_GetTile) == 0x000020, "Wrong size on PaperTileMapComponent_GetTile"); \ +static_assert(offsetof(PaperTileMapComponent_GetTile, X) == 0x000000, "Member 'PaperTileMapComponent_GetTile::X' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTile, Y) == 0x000004, "Member 'PaperTileMapComponent_GetTile::Y' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTile, Layer) == 0x000008, "Member 'PaperTileMapComponent_GetTile::Layer' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTile, ReturnValue) == 0x000010, "Member 'PaperTileMapComponent_GetTile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetTileCenterPosition \ +static_assert(alignof(PaperTileMapComponent_GetTileCenterPosition) == 0x000008, "Wrong alignment on PaperTileMapComponent_GetTileCenterPosition"); \ +static_assert(sizeof(PaperTileMapComponent_GetTileCenterPosition) == 0x000028, "Wrong size on PaperTileMapComponent_GetTileCenterPosition"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCenterPosition, TileX) == 0x000000, "Member 'PaperTileMapComponent_GetTileCenterPosition::TileX' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCenterPosition, TileY) == 0x000004, "Member 'PaperTileMapComponent_GetTileCenterPosition::TileY' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCenterPosition, LayerIndex) == 0x000008, "Member 'PaperTileMapComponent_GetTileCenterPosition::LayerIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCenterPosition, bWorldSpace) == 0x00000C, "Member 'PaperTileMapComponent_GetTileCenterPosition::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCenterPosition, ReturnValue) == 0x000010, "Member 'PaperTileMapComponent_GetTileCenterPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetTileCornerPosition \ +static_assert(alignof(PaperTileMapComponent_GetTileCornerPosition) == 0x000008, "Wrong alignment on PaperTileMapComponent_GetTileCornerPosition"); \ +static_assert(sizeof(PaperTileMapComponent_GetTileCornerPosition) == 0x000028, "Wrong size on PaperTileMapComponent_GetTileCornerPosition"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCornerPosition, TileX) == 0x000000, "Member 'PaperTileMapComponent_GetTileCornerPosition::TileX' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCornerPosition, TileY) == 0x000004, "Member 'PaperTileMapComponent_GetTileCornerPosition::TileY' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCornerPosition, LayerIndex) == 0x000008, "Member 'PaperTileMapComponent_GetTileCornerPosition::LayerIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCornerPosition, bWorldSpace) == 0x00000C, "Member 'PaperTileMapComponent_GetTileCornerPosition::bWorldSpace' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileCornerPosition, ReturnValue) == 0x000010, "Member 'PaperTileMapComponent_GetTileCornerPosition::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetTileMapColor \ +static_assert(alignof(PaperTileMapComponent_GetTileMapColor) == 0x000004, "Wrong alignment on PaperTileMapComponent_GetTileMapColor"); \ +static_assert(sizeof(PaperTileMapComponent_GetTileMapColor) == 0x000010, "Wrong size on PaperTileMapComponent_GetTileMapColor"); \ +static_assert(offsetof(PaperTileMapComponent_GetTileMapColor, ReturnValue) == 0x000000, "Member 'PaperTileMapComponent_GetTileMapColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_GetTilePolygon \ +static_assert(alignof(PaperTileMapComponent_GetTilePolygon) == 0x000008, "Wrong alignment on PaperTileMapComponent_GetTilePolygon"); \ +static_assert(sizeof(PaperTileMapComponent_GetTilePolygon) == 0x000020, "Wrong size on PaperTileMapComponent_GetTilePolygon"); \ +static_assert(offsetof(PaperTileMapComponent_GetTilePolygon, TileX) == 0x000000, "Member 'PaperTileMapComponent_GetTilePolygon::TileX' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTilePolygon, TileY) == 0x000004, "Member 'PaperTileMapComponent_GetTilePolygon::TileY' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTilePolygon, Points) == 0x000008, "Member 'PaperTileMapComponent_GetTilePolygon::Points' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTilePolygon, LayerIndex) == 0x000018, "Member 'PaperTileMapComponent_GetTilePolygon::LayerIndex' has a wrong offset!"); \ +static_assert(offsetof(PaperTileMapComponent_GetTilePolygon, bWorldSpace) == 0x00001C, "Member 'PaperTileMapComponent_GetTilePolygon::bWorldSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTileMapComponent_OwnsTileMap \ +static_assert(alignof(PaperTileMapComponent_OwnsTileMap) == 0x000001, "Wrong alignment on PaperTileMapComponent_OwnsTileMap"); \ +static_assert(sizeof(PaperTileMapComponent_OwnsTileMap) == 0x000001, "Wrong size on PaperTileMapComponent_OwnsTileMap"); \ +static_assert(offsetof(PaperTileMapComponent_OwnsTileMap, ReturnValue) == 0x000000, "Member 'PaperTileMapComponent_OwnsTileMap::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTileMapComponent \ +static_assert(alignof(UPaperTileMapComponent) == 0x000010, "Wrong alignment on UPaperTileMapComponent"); \ +static_assert(sizeof(UPaperTileMapComponent) == 0x000600, "Wrong size on UPaperTileMapComponent"); \ +static_assert(offsetof(UPaperTileMapComponent, MapWidth) == 0x0005A8, "Member 'UPaperTileMapComponent::MapWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, MapHeight) == 0x0005AC, "Member 'UPaperTileMapComponent::MapHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, TileWidth) == 0x0005B0, "Member 'UPaperTileMapComponent::TileWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, TileHeight) == 0x0005B4, "Member 'UPaperTileMapComponent::TileHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, DefaultLayerTileSet) == 0x0005B8, "Member 'UPaperTileMapComponent::DefaultLayerTileSet' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, Material) == 0x0005C0, "Member 'UPaperTileMapComponent::Material' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, TileLayers) == 0x0005C8, "Member 'UPaperTileMapComponent::TileLayers' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, TileMapColor) == 0x0005D8, "Member 'UPaperTileMapComponent::TileMapColor' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, UseSingleLayerIndex) == 0x0005E8, "Member 'UPaperTileMapComponent::UseSingleLayerIndex' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, bUseSingleLayer) == 0x0005EC, "Member 'UPaperTileMapComponent::bUseSingleLayer' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileMapComponent, TileMap) == 0x0005F0, "Member 'UPaperTileMapComponent::TileMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTileSet \ +static_assert(alignof(UPaperTileSet) == 0x000008, "Wrong alignment on UPaperTileSet"); \ +static_assert(sizeof(UPaperTileSet) == 0x0000A8, "Wrong size on UPaperTileSet"); \ +static_assert(offsetof(UPaperTileSet, TileSize) == 0x000028, "Member 'UPaperTileSet::TileSize' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, TileSheet) == 0x000030, "Member 'UPaperTileSet::TileSheet' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, AdditionalSourceTextures) == 0x000038, "Member 'UPaperTileSet::AdditionalSourceTextures' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, BorderMargin) == 0x000048, "Member 'UPaperTileSet::BorderMargin' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, PerTileSpacing) == 0x000058, "Member 'UPaperTileSet::PerTileSpacing' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, DrawingOffset) == 0x000060, "Member 'UPaperTileSet::DrawingOffset' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, WidthInTiles) == 0x000068, "Member 'UPaperTileSet::WidthInTiles' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, HeightInTiles) == 0x00006C, "Member 'UPaperTileSet::HeightInTiles' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, AllocatedWidth) == 0x000070, "Member 'UPaperTileSet::AllocatedWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, AllocatedHeight) == 0x000074, "Member 'UPaperTileSet::AllocatedHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, PerTileData) == 0x000078, "Member 'UPaperTileSet::PerTileData' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, Terrains) == 0x000088, "Member 'UPaperTileSet::Terrains' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, TileWidth) == 0x000098, "Member 'UPaperTileSet::TileWidth' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, TileHeight) == 0x00009C, "Member 'UPaperTileSet::TileHeight' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, Margin) == 0x0000A0, "Member 'UPaperTileSet::Margin' has a wrong offset!"); \ +static_assert(offsetof(UPaperTileSet, Spacing) == 0x0000A4, "Member 'UPaperTileSet::Spacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionSpriteTextureSampler \ +static_assert(alignof(UMaterialExpressionSpriteTextureSampler) == 0x000008, "Wrong alignment on UMaterialExpressionSpriteTextureSampler"); \ +static_assert(sizeof(UMaterialExpressionSpriteTextureSampler) == 0x000260, "Wrong size on UMaterialExpressionSpriteTextureSampler"); \ +static_assert(offsetof(UMaterialExpressionSpriteTextureSampler, bSampleAdditionalTextures) == 0x000240, "Member 'UMaterialExpressionSpriteTextureSampler::bSampleAdditionalTextures' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpriteTextureSampler, AdditionalSlotIndex) == 0x000244, "Member 'UMaterialExpressionSpriteTextureSampler::AdditionalSlotIndex' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionSpriteTextureSampler, SlotDisplayName) == 0x000248, "Member 'UMaterialExpressionSpriteTextureSampler::SlotDisplayName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APaperTerrainActor \ +static_assert(alignof(APaperTerrainActor) == 0x000008, "Wrong alignment on APaperTerrainActor"); \ +static_assert(sizeof(APaperTerrainActor) == 0x0002B0, "Wrong size on APaperTerrainActor"); \ +static_assert(offsetof(APaperTerrainActor, DummyRoot) == 0x000298, "Member 'APaperTerrainActor::DummyRoot' has a wrong offset!"); \ +static_assert(offsetof(APaperTerrainActor, SplineComponent) == 0x0002A0, "Member 'APaperTerrainActor::SplineComponent' has a wrong offset!"); \ +static_assert(offsetof(APaperTerrainActor, RenderComponent) == 0x0002A8, "Member 'APaperTerrainActor::RenderComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PaperTerrainComponent_SetTerrainColor \ +static_assert(alignof(PaperTerrainComponent_SetTerrainColor) == 0x000004, "Wrong alignment on PaperTerrainComponent_SetTerrainColor"); \ +static_assert(sizeof(PaperTerrainComponent_SetTerrainColor) == 0x000010, "Wrong size on PaperTerrainComponent_SetTerrainColor"); \ +static_assert(offsetof(PaperTerrainComponent_SetTerrainColor, NewColor) == 0x000000, "Member 'PaperTerrainComponent_SetTerrainColor::NewColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTerrainComponent \ +static_assert(alignof(UPaperTerrainComponent) == 0x000010, "Wrong alignment on UPaperTerrainComponent"); \ +static_assert(sizeof(UPaperTerrainComponent) == 0x0005D0, "Wrong size on UPaperTerrainComponent"); \ +static_assert(offsetof(UPaperTerrainComponent, TerrainMaterial) == 0x000570, "Member 'UPaperTerrainComponent::TerrainMaterial' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, bClosedSpline) == 0x000578, "Member 'UPaperTerrainComponent::bClosedSpline' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, bFilledSpline) == 0x000579, "Member 'UPaperTerrainComponent::bFilledSpline' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, AssociatedSpline) == 0x000580, "Member 'UPaperTerrainComponent::AssociatedSpline' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, RandomSeed) == 0x000588, "Member 'UPaperTerrainComponent::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, SegmentOverlapAmount) == 0x00058C, "Member 'UPaperTerrainComponent::SegmentOverlapAmount' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, TerrainColor) == 0x000590, "Member 'UPaperTerrainComponent::TerrainColor' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, ReparamStepsPerSegment) == 0x0005A0, "Member 'UPaperTerrainComponent::ReparamStepsPerSegment' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, SpriteCollisionDomain) == 0x0005A4, "Member 'UPaperTerrainComponent::SpriteCollisionDomain' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, CollisionThickness) == 0x0005A8, "Member 'UPaperTerrainComponent::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainComponent, CachedBodySetup) == 0x0005B0, "Member 'UPaperTerrainComponent::CachedBodySetup' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTerrainMaterial \ +static_assert(alignof(UPaperTerrainMaterial) == 0x000008, "Wrong alignment on UPaperTerrainMaterial"); \ +static_assert(sizeof(UPaperTerrainMaterial) == 0x000048, "Wrong size on UPaperTerrainMaterial"); \ +static_assert(offsetof(UPaperTerrainMaterial, Rules) == 0x000030, "Member 'UPaperTerrainMaterial::Rules' has a wrong offset!"); \ +static_assert(offsetof(UPaperTerrainMaterial, InteriorFill) == 0x000040, "Member 'UPaperTerrainMaterial::InteriorFill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPaperTerrainSplineComponent \ +static_assert(alignof(UPaperTerrainSplineComponent) == 0x000010, "Wrong alignment on UPaperTerrainSplineComponent"); \ +static_assert(sizeof(UPaperTerrainSplineComponent) == 0x000680, "Wrong size on UPaperTerrainSplineComponent"); \ + +#define DUMPER7_ASSERTS_TileMapBlueprintLibrary_BreakTile \ +static_assert(alignof(TileMapBlueprintLibrary_BreakTile) == 0x000008, "Wrong alignment on TileMapBlueprintLibrary_BreakTile"); \ +static_assert(sizeof(TileMapBlueprintLibrary_BreakTile) == 0x000028, "Wrong size on TileMapBlueprintLibrary_BreakTile"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, Tile) == 0x000000, "Member 'TileMapBlueprintLibrary_BreakTile::Tile' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, TileIndex) == 0x000010, "Member 'TileMapBlueprintLibrary_BreakTile::TileIndex' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, TileSet) == 0x000018, "Member 'TileMapBlueprintLibrary_BreakTile::TileSet' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, bFlipH) == 0x000020, "Member 'TileMapBlueprintLibrary_BreakTile::bFlipH' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, bFlipV) == 0x000021, "Member 'TileMapBlueprintLibrary_BreakTile::bFlipV' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_BreakTile, bFlipD) == 0x000022, "Member 'TileMapBlueprintLibrary_BreakTile::bFlipD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileMapBlueprintLibrary_GetTileTransform \ +static_assert(alignof(TileMapBlueprintLibrary_GetTileTransform) == 0x000010, "Wrong alignment on TileMapBlueprintLibrary_GetTileTransform"); \ +static_assert(sizeof(TileMapBlueprintLibrary_GetTileTransform) == 0x000070, "Wrong size on TileMapBlueprintLibrary_GetTileTransform"); \ +static_assert(offsetof(TileMapBlueprintLibrary_GetTileTransform, Tile) == 0x000000, "Member 'TileMapBlueprintLibrary_GetTileTransform::Tile' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_GetTileTransform, ReturnValue) == 0x000010, "Member 'TileMapBlueprintLibrary_GetTileTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileMapBlueprintLibrary_GetTileUserData \ +static_assert(alignof(TileMapBlueprintLibrary_GetTileUserData) == 0x000008, "Wrong alignment on TileMapBlueprintLibrary_GetTileUserData"); \ +static_assert(sizeof(TileMapBlueprintLibrary_GetTileUserData) == 0x000018, "Wrong size on TileMapBlueprintLibrary_GetTileUserData"); \ +static_assert(offsetof(TileMapBlueprintLibrary_GetTileUserData, Tile) == 0x000000, "Member 'TileMapBlueprintLibrary_GetTileUserData::Tile' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_GetTileUserData, ReturnValue) == 0x000010, "Member 'TileMapBlueprintLibrary_GetTileUserData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TileMapBlueprintLibrary_MakeTile \ +static_assert(alignof(TileMapBlueprintLibrary_MakeTile) == 0x000008, "Wrong alignment on TileMapBlueprintLibrary_MakeTile"); \ +static_assert(sizeof(TileMapBlueprintLibrary_MakeTile) == 0x000028, "Wrong size on TileMapBlueprintLibrary_MakeTile"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, TileIndex) == 0x000000, "Member 'TileMapBlueprintLibrary_MakeTile::TileIndex' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, TileSet) == 0x000008, "Member 'TileMapBlueprintLibrary_MakeTile::TileSet' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, bFlipH) == 0x000010, "Member 'TileMapBlueprintLibrary_MakeTile::bFlipH' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, bFlipV) == 0x000011, "Member 'TileMapBlueprintLibrary_MakeTile::bFlipV' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, bFlipD) == 0x000012, "Member 'TileMapBlueprintLibrary_MakeTile::bFlipD' has a wrong offset!"); \ +static_assert(offsetof(TileMapBlueprintLibrary_MakeTile, ReturnValue) == 0x000018, "Member 'TileMapBlueprintLibrary_MakeTile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTileMapBlueprintLibrary \ +static_assert(alignof(UTileMapBlueprintLibrary) == 0x000008, "Wrong alignment on UTileMapBlueprintLibrary"); \ +static_assert(sizeof(UTileMapBlueprintLibrary) == 0x000028, "Wrong size on UTileMapBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_AnimationCompressionLibraryDatabase_GetVisualFidelity \ +static_assert(alignof(AnimationCompressionLibraryDatabase_GetVisualFidelity) == 0x000008, "Wrong alignment on AnimationCompressionLibraryDatabase_GetVisualFidelity"); \ +static_assert(sizeof(AnimationCompressionLibraryDatabase_GetVisualFidelity) == 0x000010, "Wrong size on AnimationCompressionLibraryDatabase_GetVisualFidelity"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_GetVisualFidelity, DatabaseAsset) == 0x000000, "Member 'AnimationCompressionLibraryDatabase_GetVisualFidelity::DatabaseAsset' has a wrong offset!"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_GetVisualFidelity, ReturnValue) == 0x000008, "Member 'AnimationCompressionLibraryDatabase_GetVisualFidelity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationCompressionLibraryDatabase_SetVisualFidelity \ +static_assert(alignof(AnimationCompressionLibraryDatabase_SetVisualFidelity) == 0x000008, "Wrong alignment on AnimationCompressionLibraryDatabase_SetVisualFidelity"); \ +static_assert(sizeof(AnimationCompressionLibraryDatabase_SetVisualFidelity) == 0x000030, "Wrong size on AnimationCompressionLibraryDatabase_SetVisualFidelity"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_SetVisualFidelity, WorldContextObject) == 0x000000, "Member 'AnimationCompressionLibraryDatabase_SetVisualFidelity::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_SetVisualFidelity, LatentInfo) == 0x000008, "Member 'AnimationCompressionLibraryDatabase_SetVisualFidelity::LatentInfo' has a wrong offset!"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_SetVisualFidelity, DatabaseAsset) == 0x000020, "Member 'AnimationCompressionLibraryDatabase_SetVisualFidelity::DatabaseAsset' has a wrong offset!"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_SetVisualFidelity, Result) == 0x000028, "Member 'AnimationCompressionLibraryDatabase_SetVisualFidelity::Result' has a wrong offset!"); \ +static_assert(offsetof(AnimationCompressionLibraryDatabase_SetVisualFidelity, VisualFidelity) == 0x000029, "Member 'AnimationCompressionLibraryDatabase_SetVisualFidelity::VisualFidelity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationCompressionLibraryDatabase \ +static_assert(alignof(UAnimationCompressionLibraryDatabase) == 0x000008, "Wrong alignment on UAnimationCompressionLibraryDatabase"); \ +static_assert(sizeof(UAnimationCompressionLibraryDatabase) == 0x000168, "Wrong size on UAnimationCompressionLibraryDatabase"); \ +static_assert(offsetof(UAnimationCompressionLibraryDatabase, CookedCompressedBytes) == 0x000028, "Member 'UAnimationCompressionLibraryDatabase::CookedCompressedBytes' has a wrong offset!"); \ +static_assert(offsetof(UAnimationCompressionLibraryDatabase, CookedAnimSequenceMappings) == 0x000038, "Member 'UAnimationCompressionLibraryDatabase::CookedAnimSequenceMappings' has a wrong offset!"); \ +static_assert(offsetof(UAnimationCompressionLibraryDatabase, MaxStreamRequestSizeKB) == 0x000160, "Member 'UAnimationCompressionLibraryDatabase::MaxStreamRequestSizeKB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec_ACLBase \ +static_assert(alignof(UAnimBoneCompressionCodec_ACLBase) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec_ACLBase"); \ +static_assert(sizeof(UAnimBoneCompressionCodec_ACLBase) == 0x000038, "Wrong size on UAnimBoneCompressionCodec_ACLBase"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec_ACL \ +static_assert(alignof(UAnimBoneCompressionCodec_ACL) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec_ACL"); \ +static_assert(sizeof(UAnimBoneCompressionCodec_ACL) == 0x000038, "Wrong size on UAnimBoneCompressionCodec_ACL"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec_ACLCustom \ +static_assert(alignof(UAnimBoneCompressionCodec_ACLCustom) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec_ACLCustom"); \ +static_assert(sizeof(UAnimBoneCompressionCodec_ACLCustom) == 0x000038, "Wrong size on UAnimBoneCompressionCodec_ACLCustom"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec_ACLDatabase \ +static_assert(alignof(UAnimBoneCompressionCodec_ACLDatabase) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec_ACLDatabase"); \ +static_assert(sizeof(UAnimBoneCompressionCodec_ACLDatabase) == 0x000040, "Wrong size on UAnimBoneCompressionCodec_ACLDatabase"); \ +static_assert(offsetof(UAnimBoneCompressionCodec_ACLDatabase, DatabaseAsset) == 0x000038, "Member 'UAnimBoneCompressionCodec_ACLDatabase::DatabaseAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBoneCompressionCodec_ACLSafe \ +static_assert(alignof(UAnimBoneCompressionCodec_ACLSafe) == 0x000008, "Wrong alignment on UAnimBoneCompressionCodec_ACLSafe"); \ +static_assert(sizeof(UAnimBoneCompressionCodec_ACLSafe) == 0x000038, "Wrong size on UAnimBoneCompressionCodec_ACLSafe"); \ + +#define DUMPER7_ASSERTS_UAnimCurveCompressionCodec_ACL \ +static_assert(alignof(UAnimCurveCompressionCodec_ACL) == 0x000008, "Wrong alignment on UAnimCurveCompressionCodec_ACL"); \ +static_assert(sizeof(UAnimCurveCompressionCodec_ACL) == 0x000038, "Wrong size on UAnimCurveCompressionCodec_ACL"); \ + +#define DUMPER7_ASSERTS_FTargetChainFKSettings \ +static_assert(alignof(FTargetChainFKSettings) == 0x000004, "Wrong alignment on FTargetChainFKSettings"); \ +static_assert(sizeof(FTargetChainFKSettings) == 0x000018, "Wrong size on FTargetChainFKSettings"); \ +static_assert(offsetof(FTargetChainFKSettings, EnableFK) == 0x000000, "Member 'FTargetChainFKSettings::EnableFK' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, RotationMode) == 0x000001, "Member 'FTargetChainFKSettings::RotationMode' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, RotationAlpha) == 0x000004, "Member 'FTargetChainFKSettings::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, TranslationMode) == 0x000008, "Member 'FTargetChainFKSettings::TranslationMode' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, TranslationAlpha) == 0x00000C, "Member 'FTargetChainFKSettings::TranslationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, PoleVectorMatching) == 0x000010, "Member 'FTargetChainFKSettings::PoleVectorMatching' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainFKSettings, PoleVectorOffset) == 0x000014, "Member 'FTargetChainFKSettings::PoleVectorOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTargetChainIKSettings \ +static_assert(alignof(FTargetChainIKSettings) == 0x000008, "Wrong alignment on FTargetChainIKSettings"); \ +static_assert(sizeof(FTargetChainIKSettings) == 0x000078, "Wrong size on FTargetChainIKSettings"); \ +static_assert(offsetof(FTargetChainIKSettings, EnableIK) == 0x000000, "Member 'FTargetChainIKSettings::EnableIK' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, BlendToSource) == 0x000004, "Member 'FTargetChainIKSettings::BlendToSource' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, BlendToSourceWeights) == 0x000008, "Member 'FTargetChainIKSettings::BlendToSourceWeights' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, StaticOffset) == 0x000020, "Member 'FTargetChainIKSettings::StaticOffset' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, StaticLocalOffset) == 0x000038, "Member 'FTargetChainIKSettings::StaticLocalOffset' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, StaticRotationOffset) == 0x000050, "Member 'FTargetChainIKSettings::StaticRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, ScaleVertical) == 0x000068, "Member 'FTargetChainIKSettings::ScaleVertical' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, Extension) == 0x00006C, "Member 'FTargetChainIKSettings::Extension' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainIKSettings, bAffectedByIKWarping) == 0x000070, "Member 'FTargetChainIKSettings::bAffectedByIKWarping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTargetChainSpeedPlantSettings \ +static_assert(alignof(FTargetChainSpeedPlantSettings) == 0x000004, "Wrong alignment on FTargetChainSpeedPlantSettings"); \ +static_assert(sizeof(FTargetChainSpeedPlantSettings) == 0x000018, "Wrong size on FTargetChainSpeedPlantSettings"); \ +static_assert(offsetof(FTargetChainSpeedPlantSettings, EnableSpeedPlanting) == 0x000000, "Member 'FTargetChainSpeedPlantSettings::EnableSpeedPlanting' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSpeedPlantSettings, SpeedCurveName) == 0x000004, "Member 'FTargetChainSpeedPlantSettings::SpeedCurveName' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSpeedPlantSettings, SpeedThreshold) == 0x00000C, "Member 'FTargetChainSpeedPlantSettings::SpeedThreshold' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSpeedPlantSettings, UnplantStiffness) == 0x000010, "Member 'FTargetChainSpeedPlantSettings::UnplantStiffness' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSpeedPlantSettings, UnplantCriticalDamping) == 0x000014, "Member 'FTargetChainSpeedPlantSettings::UnplantCriticalDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTargetChainSettings \ +static_assert(alignof(FTargetChainSettings) == 0x000008, "Wrong alignment on FTargetChainSettings"); \ +static_assert(sizeof(FTargetChainSettings) == 0x0000A8, "Wrong size on FTargetChainSettings"); \ +static_assert(offsetof(FTargetChainSettings, FK) == 0x000000, "Member 'FTargetChainSettings::FK' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSettings, IK) == 0x000018, "Member 'FTargetChainSettings::IK' has a wrong offset!"); \ +static_assert(offsetof(FTargetChainSettings, SpeedPlanting) == 0x000090, "Member 'FTargetChainSettings::SpeedPlanting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTargetRootSettings \ +static_assert(alignof(FTargetRootSettings) == 0x000008, "Wrong alignment on FTargetRootSettings"); \ +static_assert(sizeof(FTargetRootSettings) == 0x000068, "Wrong size on FTargetRootSettings"); \ +static_assert(offsetof(FTargetRootSettings, RotationAlpha) == 0x000000, "Member 'FTargetRootSettings::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, TranslationAlpha) == 0x000004, "Member 'FTargetRootSettings::TranslationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, BlendToSource) == 0x000008, "Member 'FTargetRootSettings::BlendToSource' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, BlendToSourceWeights) == 0x000010, "Member 'FTargetRootSettings::BlendToSourceWeights' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, ScaleHorizontal) == 0x000028, "Member 'FTargetRootSettings::ScaleHorizontal' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, ScaleVertical) == 0x00002C, "Member 'FTargetRootSettings::ScaleVertical' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, TranslationOffset) == 0x000030, "Member 'FTargetRootSettings::TranslationOffset' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, RotationOffset) == 0x000048, "Member 'FTargetRootSettings::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, AffectIKHorizontal) == 0x000060, "Member 'FTargetRootSettings::AffectIKHorizontal' has a wrong offset!"); \ +static_assert(offsetof(FTargetRootSettings, AffectIKVertical) == 0x000064, "Member 'FTargetRootSettings::AffectIKVertical' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRetargetGlobalSettings \ +static_assert(alignof(FRetargetGlobalSettings) == 0x000004, "Wrong alignment on FRetargetGlobalSettings"); \ +static_assert(sizeof(FRetargetGlobalSettings) == 0x000020, "Wrong size on FRetargetGlobalSettings"); \ +static_assert(offsetof(FRetargetGlobalSettings, bEnableRoot) == 0x000000, "Member 'FRetargetGlobalSettings::bEnableRoot' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, bEnableFK) == 0x000001, "Member 'FRetargetGlobalSettings::bEnableFK' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, bEnableIK) == 0x000002, "Member 'FRetargetGlobalSettings::bEnableIK' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, bWarping) == 0x000003, "Member 'FRetargetGlobalSettings::bWarping' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, DirectionSource) == 0x000004, "Member 'FRetargetGlobalSettings::DirectionSource' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, ForwardDirection) == 0x000008, "Member 'FRetargetGlobalSettings::ForwardDirection' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, DirectionChain) == 0x00000C, "Member 'FRetargetGlobalSettings::DirectionChain' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, WarpForwards) == 0x000014, "Member 'FRetargetGlobalSettings::WarpForwards' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, SidewaysOffset) == 0x000018, "Member 'FRetargetGlobalSettings::SidewaysOffset' has a wrong offset!"); \ +static_assert(offsetof(FRetargetGlobalSettings, WarpSplay) == 0x00001C, "Member 'FRetargetGlobalSettings::WarpSplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRetargetProfile \ +static_assert(alignof(FRetargetProfile) == 0x000008, "Wrong alignment on FRetargetProfile"); \ +static_assert(sizeof(FRetargetProfile) == 0x000108, "Wrong size on FRetargetProfile"); \ +static_assert(offsetof(FRetargetProfile, bApplyTargetRetargetPose) == 0x000000, "Member 'FRetargetProfile::bApplyTargetRetargetPose' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, TargetRetargetPoseName) == 0x000004, "Member 'FRetargetProfile::TargetRetargetPoseName' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, bApplySourceRetargetPose) == 0x00000C, "Member 'FRetargetProfile::bApplySourceRetargetPose' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, SourceRetargetPoseName) == 0x000010, "Member 'FRetargetProfile::SourceRetargetPoseName' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, bApplyChainSettings) == 0x000018, "Member 'FRetargetProfile::bApplyChainSettings' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, ChainSettings) == 0x000020, "Member 'FRetargetProfile::ChainSettings' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, bApplyRootSettings) == 0x000070, "Member 'FRetargetProfile::bApplyRootSettings' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, RootSettings) == 0x000078, "Member 'FRetargetProfile::RootSettings' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, bApplyGlobalSettings) == 0x0000E0, "Member 'FRetargetProfile::bApplyGlobalSettings' has a wrong offset!"); \ +static_assert(offsetof(FRetargetProfile, GlobalSettings) == 0x0000E4, "Member 'FRetargetProfile::GlobalSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIKRigGoal \ +static_assert(alignof(FIKRigGoal) == 0x000010, "Wrong alignment on FIKRigGoal"); \ +static_assert(sizeof(FIKRigGoal) == 0x0000A0, "Wrong size on FIKRigGoal"); \ +static_assert(offsetof(FIKRigGoal, Name) == 0x000000, "Member 'FIKRigGoal::Name' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, TransformSource) == 0x000008, "Member 'FIKRigGoal::TransformSource' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, SourceBone) == 0x00000C, "Member 'FIKRigGoal::SourceBone' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, Position) == 0x000020, "Member 'FIKRigGoal::Position' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, Rotation) == 0x000038, "Member 'FIKRigGoal::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, PositionAlpha) == 0x000050, "Member 'FIKRigGoal::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, RotationAlpha) == 0x000054, "Member 'FIKRigGoal::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, PositionSpace) == 0x000058, "Member 'FIKRigGoal::PositionSpace' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, RotationSpace) == 0x000059, "Member 'FIKRigGoal::RotationSpace' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, FinalBlendedPosition) == 0x000060, "Member 'FIKRigGoal::FinalBlendedPosition' has a wrong offset!"); \ +static_assert(offsetof(FIKRigGoal, FinalBlendedRotation) == 0x000080, "Member 'FIKRigGoal::FinalBlendedRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_IKRig \ +static_assert(alignof(FAnimNode_IKRig) == 0x000008, "Wrong alignment on FAnimNode_IKRig"); \ +static_assert(sizeof(FAnimNode_IKRig) == 0x0001E0, "Wrong size on FAnimNode_IKRig"); \ +static_assert(offsetof(FAnimNode_IKRig, Source) == 0x000058, "Member 'FAnimNode_IKRig::Source' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, RigDefinitionAsset) == 0x000068, "Member 'FAnimNode_IKRig::RigDefinitionAsset' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, Goals) == 0x000070, "Member 'FAnimNode_IKRig::Goals' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, bStartFromRefPose) == 0x000080, "Member 'FAnimNode_IKRig::bStartFromRefPose' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, AlphaInputType) == 0x000081, "Member 'FAnimNode_IKRig::AlphaInputType' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, bAlphaBoolEnabled) == 0x000082, "Member 'FAnimNode_IKRig::bAlphaBoolEnabled' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, alpha) == 0x000084, "Member 'FAnimNode_IKRig::alpha' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, AlphaScaleBias) == 0x000088, "Member 'FAnimNode_IKRig::AlphaScaleBias' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, AlphaBoolBlend) == 0x000090, "Member 'FAnimNode_IKRig::AlphaBoolBlend' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, AlphaCurveName) == 0x0000D8, "Member 'FAnimNode_IKRig::AlphaCurveName' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, AlphaScaleBiasClamp) == 0x0000E0, "Member 'FAnimNode_IKRig::AlphaScaleBiasClamp' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, IKRigProcessor) == 0x000110, "Member 'FAnimNode_IKRig::IKRigProcessor' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_IKRig, ActualAlpha) == 0x0001D8, "Member 'FAnimNode_IKRig::ActualAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimNode_RetargetPoseFromMesh \ +static_assert(alignof(FAnimNode_RetargetPoseFromMesh) == 0x000008, "Wrong alignment on FAnimNode_RetargetPoseFromMesh"); \ +static_assert(sizeof(FAnimNode_RetargetPoseFromMesh) == 0x0001D8, "Wrong size on FAnimNode_RetargetPoseFromMesh"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, SourceMeshComponent) == 0x000010, "Member 'FAnimNode_RetargetPoseFromMesh::SourceMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, bUseAttachedParent) == 0x000018, "Member 'FAnimNode_RetargetPoseFromMesh::bUseAttachedParent' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, IKRetargeterAsset) == 0x000020, "Member 'FAnimNode_RetargetPoseFromMesh::IKRetargeterAsset' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, CustomRetargetProfile) == 0x000028, "Member 'FAnimNode_RetargetPoseFromMesh::CustomRetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, bSuppressWarnings) == 0x000130, "Member 'FAnimNode_RetargetPoseFromMesh::bSuppressWarnings' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, bCopyCurves) == 0x000131, "Member 'FAnimNode_RetargetPoseFromMesh::bCopyCurves' has a wrong offset!"); \ +static_assert(offsetof(FAnimNode_RetargetPoseFromMesh, Processor) == 0x000138, "Member 'FAnimNode_RetargetPoseFromMesh::Processor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRetargetChainMap \ +static_assert(alignof(FRetargetChainMap) == 0x000004, "Wrong alignment on FRetargetChainMap"); \ +static_assert(sizeof(FRetargetChainMap) == 0x000010, "Wrong size on FRetargetChainMap"); \ +static_assert(offsetof(FRetargetChainMap, SourceChain) == 0x000000, "Member 'FRetargetChainMap::SourceChain' has a wrong offset!"); \ +static_assert(offsetof(FRetargetChainMap, TargetChain) == 0x000008, "Member 'FRetargetChainMap::TargetChain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIKRetargetPose \ +static_assert(alignof(FIKRetargetPose) == 0x000008, "Wrong alignment on FIKRetargetPose"); \ +static_assert(sizeof(FIKRetargetPose) == 0x000068, "Wrong size on FIKRetargetPose"); \ +static_assert(offsetof(FIKRetargetPose, RootTranslationOffset) == 0x000000, "Member 'FIKRetargetPose::RootTranslationOffset' has a wrong offset!"); \ +static_assert(offsetof(FIKRetargetPose, BoneRotationOffsets) == 0x000018, "Member 'FIKRetargetPose::BoneRotationOffsets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIKRigGoalContainer \ +static_assert(alignof(FIKRigGoalContainer) == 0x000008, "Wrong alignment on FIKRigGoalContainer"); \ +static_assert(sizeof(FIKRigGoalContainer) == 0x000010, "Wrong size on FIKRigGoalContainer"); \ + +#define DUMPER7_ASSERTS_FBoneChain \ +static_assert(alignof(FBoneChain) == 0x000004, "Wrong alignment on FBoneChain"); \ +static_assert(sizeof(FBoneChain) == 0x000030, "Wrong size on FBoneChain"); \ +static_assert(offsetof(FBoneChain, ChainName) == 0x000000, "Member 'FBoneChain::ChainName' has a wrong offset!"); \ +static_assert(offsetof(FBoneChain, StartBone) == 0x000008, "Member 'FBoneChain::StartBone' has a wrong offset!"); \ +static_assert(offsetof(FBoneChain, EndBone) == 0x000018, "Member 'FBoneChain::EndBone' has a wrong offset!"); \ +static_assert(offsetof(FBoneChain, IKGoalName) == 0x000028, "Member 'FBoneChain::IKGoalName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRetargetDefinition \ +static_assert(alignof(FRetargetDefinition) == 0x000008, "Wrong alignment on FRetargetDefinition"); \ +static_assert(sizeof(FRetargetDefinition) == 0x000018, "Wrong size on FRetargetDefinition"); \ +static_assert(offsetof(FRetargetDefinition, RootBone) == 0x000000, "Member 'FRetargetDefinition::RootBone' has a wrong offset!"); \ +static_assert(offsetof(FRetargetDefinition, BoneChains) == 0x000008, "Member 'FRetargetDefinition::BoneChains' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGoalBone \ +static_assert(alignof(FGoalBone) == 0x000004, "Wrong alignment on FGoalBone"); \ +static_assert(sizeof(FGoalBone) == 0x000010, "Wrong size on FGoalBone"); \ + +#define DUMPER7_ASSERTS_FIKRigInputSkeleton \ +static_assert(alignof(FIKRigInputSkeleton) == 0x000008, "Wrong alignment on FIKRigInputSkeleton"); \ +static_assert(sizeof(FIKRigInputSkeleton) == 0x000038, "Wrong size on FIKRigInputSkeleton"); \ + +#define DUMPER7_ASSERTS_FIKRigSkeleton \ +static_assert(alignof(FIKRigSkeleton) == 0x000008, "Wrong alignment on FIKRigSkeleton"); \ +static_assert(sizeof(FIKRigSkeleton) == 0x000070, "Wrong size on FIKRigSkeleton"); \ +static_assert(offsetof(FIKRigSkeleton, BoneNames) == 0x000000, "Member 'FIKRigSkeleton::BoneNames' has a wrong offset!"); \ +static_assert(offsetof(FIKRigSkeleton, ParentIndices) == 0x000010, "Member 'FIKRigSkeleton::ParentIndices' has a wrong offset!"); \ +static_assert(offsetof(FIKRigSkeleton, ExcludedBones) == 0x000020, "Member 'FIKRigSkeleton::ExcludedBones' has a wrong offset!"); \ +static_assert(offsetof(FIKRigSkeleton, CurrentPoseGlobal) == 0x000030, "Member 'FIKRigSkeleton::CurrentPoseGlobal' has a wrong offset!"); \ +static_assert(offsetof(FIKRigSkeleton, CurrentPoseLocal) == 0x000040, "Member 'FIKRigSkeleton::CurrentPoseLocal' has a wrong offset!"); \ +static_assert(offsetof(FIKRigSkeleton, RefPoseGlobal) == 0x000050, "Member 'FIKRigSkeleton::RefPoseGlobal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLimbSolverSettings \ +static_assert(alignof(FLimbSolverSettings) == 0x000004, "Wrong alignment on FLimbSolverSettings"); \ +static_assert(sizeof(FLimbSolverSettings) == 0x000024, "Wrong size on FLimbSolverSettings"); \ +static_assert(offsetof(FLimbSolverSettings, ReachPrecision) == 0x000000, "Member 'FLimbSolverSettings::ReachPrecision' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, HingeRotationAxis) == 0x000004, "Member 'FLimbSolverSettings::HingeRotationAxis' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, MaxIterations) == 0x000008, "Member 'FLimbSolverSettings::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, bEnableLimit) == 0x00000C, "Member 'FLimbSolverSettings::bEnableLimit' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, MinRotationAngle) == 0x000010, "Member 'FLimbSolverSettings::MinRotationAngle' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, bAveragePull) == 0x000014, "Member 'FLimbSolverSettings::bAveragePull' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, PullDistribution) == 0x000018, "Member 'FLimbSolverSettings::PullDistribution' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, ReachStepAlpha) == 0x00001C, "Member 'FLimbSolverSettings::ReachStepAlpha' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, bEnableTwistCorrection) == 0x000020, "Member 'FLimbSolverSettings::bEnableTwistCorrection' has a wrong offset!"); \ +static_assert(offsetof(FLimbSolverSettings, EndBoneForwardAxis) == 0x000021, "Member 'FLimbSolverSettings::EndBoneForwardAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLimbLink \ +static_assert(alignof(FLimbLink) == 0x000008, "Wrong alignment on FLimbLink"); \ +static_assert(sizeof(FLimbLink) == 0x000068, "Wrong size on FLimbLink"); \ + +#define DUMPER7_ASSERTS_FLimbSolver \ +static_assert(alignof(FLimbSolver) == 0x000008, "Wrong alignment on FLimbSolver"); \ +static_assert(sizeof(FLimbSolver) == 0x000018, "Wrong size on FLimbSolver"); \ + +#define DUMPER7_ASSERTS_IKGoalCreatorInterface_AddIKGoals \ +static_assert(alignof(IKGoalCreatorInterface_AddIKGoals) == 0x000008, "Wrong alignment on IKGoalCreatorInterface_AddIKGoals"); \ +static_assert(sizeof(IKGoalCreatorInterface_AddIKGoals) == 0x000050, "Wrong size on IKGoalCreatorInterface_AddIKGoals"); \ +static_assert(offsetof(IKGoalCreatorInterface_AddIKGoals, OutGoals) == 0x000000, "Member 'IKGoalCreatorInterface_AddIKGoals::OutGoals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IIKGoalCreatorInterface \ +static_assert(alignof(IIKGoalCreatorInterface) == 0x000001, "Wrong alignment on IIKGoalCreatorInterface"); \ +static_assert(sizeof(IIKGoalCreatorInterface) == 0x000001, "Wrong size on IIKGoalCreatorInterface"); \ + +#define DUMPER7_ASSERTS_IKRigComponent_SetIKRigGoal \ +static_assert(alignof(IKRigComponent_SetIKRigGoal) == 0x000010, "Wrong alignment on IKRigComponent_SetIKRigGoal"); \ +static_assert(sizeof(IKRigComponent_SetIKRigGoal) == 0x0000A0, "Wrong size on IKRigComponent_SetIKRigGoal"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoal, Goal) == 0x000000, "Member 'IKRigComponent_SetIKRigGoal::Goal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRigComponent_SetIKRigGoalPositionAndRotation \ +static_assert(alignof(IKRigComponent_SetIKRigGoalPositionAndRotation) == 0x000010, "Wrong alignment on IKRigComponent_SetIKRigGoalPositionAndRotation"); \ +static_assert(sizeof(IKRigComponent_SetIKRigGoalPositionAndRotation) == 0x000050, "Wrong size on IKRigComponent_SetIKRigGoalPositionAndRotation"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalPositionAndRotation, GoalName) == 0x000000, "Member 'IKRigComponent_SetIKRigGoalPositionAndRotation::GoalName' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalPositionAndRotation, Position) == 0x000008, "Member 'IKRigComponent_SetIKRigGoalPositionAndRotation::Position' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalPositionAndRotation, Rotation) == 0x000020, "Member 'IKRigComponent_SetIKRigGoalPositionAndRotation::Rotation' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalPositionAndRotation, PositionAlpha) == 0x000040, "Member 'IKRigComponent_SetIKRigGoalPositionAndRotation::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalPositionAndRotation, RotationAlpha) == 0x000044, "Member 'IKRigComponent_SetIKRigGoalPositionAndRotation::RotationAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRigComponent_SetIKRigGoalTransform \ +static_assert(alignof(IKRigComponent_SetIKRigGoalTransform) == 0x000010, "Wrong alignment on IKRigComponent_SetIKRigGoalTransform"); \ +static_assert(sizeof(IKRigComponent_SetIKRigGoalTransform) == 0x000080, "Wrong size on IKRigComponent_SetIKRigGoalTransform"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalTransform, GoalName) == 0x000000, "Member 'IKRigComponent_SetIKRigGoalTransform::GoalName' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalTransform, Transform) == 0x000010, "Member 'IKRigComponent_SetIKRigGoalTransform::Transform' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalTransform, PositionAlpha) == 0x000070, "Member 'IKRigComponent_SetIKRigGoalTransform::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(IKRigComponent_SetIKRigGoalTransform, RotationAlpha) == 0x000074, "Member 'IKRigComponent_SetIKRigGoalTransform::RotationAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigComponent \ +static_assert(alignof(UIKRigComponent) == 0x000008, "Wrong alignment on UIKRigComponent"); \ +static_assert(sizeof(UIKRigComponent) == 0x0000B8, "Wrong size on UIKRigComponent"); \ + +#define DUMPER7_ASSERTS_URetargetChainSettings \ +static_assert(alignof(URetargetChainSettings) == 0x000008, "Wrong alignment on URetargetChainSettings"); \ +static_assert(sizeof(URetargetChainSettings) == 0x0000E0, "Wrong size on URetargetChainSettings"); \ +static_assert(offsetof(URetargetChainSettings, SourceChain) == 0x000028, "Member 'URetargetChainSettings::SourceChain' has a wrong offset!"); \ +static_assert(offsetof(URetargetChainSettings, TargetChain) == 0x000030, "Member 'URetargetChainSettings::TargetChain' has a wrong offset!"); \ +static_assert(offsetof(URetargetChainSettings, Settings) == 0x000038, "Member 'URetargetChainSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URetargetRootSettings \ +static_assert(alignof(URetargetRootSettings) == 0x000008, "Wrong alignment on URetargetRootSettings"); \ +static_assert(sizeof(URetargetRootSettings) == 0x000090, "Wrong size on URetargetRootSettings"); \ +static_assert(offsetof(URetargetRootSettings, Settings) == 0x000028, "Member 'URetargetRootSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRetargetGlobalSettings \ +static_assert(alignof(UIKRetargetGlobalSettings) == 0x000008, "Wrong alignment on UIKRetargetGlobalSettings"); \ +static_assert(sizeof(UIKRetargetGlobalSettings) == 0x000048, "Wrong size on UIKRetargetGlobalSettings"); \ +static_assert(offsetof(UIKRetargetGlobalSettings, Settings) == 0x000028, "Member 'UIKRetargetGlobalSettings::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetChainSettingsFromRetargetAsset \ +static_assert(alignof(IKRetargeter_GetChainSettingsFromRetargetAsset) == 0x000008, "Wrong alignment on IKRetargeter_GetChainSettingsFromRetargetAsset"); \ +static_assert(sizeof(IKRetargeter_GetChainSettingsFromRetargetAsset) == 0x0000C0, "Wrong size on IKRetargeter_GetChainSettingsFromRetargetAsset"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetAsset, RetargetAsset) == 0x000000, "Member 'IKRetargeter_GetChainSettingsFromRetargetAsset::RetargetAsset' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetAsset, TargetChainName) == 0x000008, "Member 'IKRetargeter_GetChainSettingsFromRetargetAsset::TargetChainName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetAsset, OptionalProfileName) == 0x000010, "Member 'IKRetargeter_GetChainSettingsFromRetargetAsset::OptionalProfileName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetAsset, ReturnValue) == 0x000018, "Member 'IKRetargeter_GetChainSettingsFromRetargetAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetChainSettingsFromRetargetProfile \ +static_assert(alignof(IKRetargeter_GetChainSettingsFromRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_GetChainSettingsFromRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_GetChainSettingsFromRetargetProfile) == 0x0001B8, "Wrong size on IKRetargeter_GetChainSettingsFromRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_GetChainSettingsFromRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetProfile, TargetChainName) == 0x000108, "Member 'IKRetargeter_GetChainSettingsFromRetargetProfile::TargetChainName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainSettingsFromRetargetProfile, ReturnValue) == 0x000110, "Member 'IKRetargeter_GetChainSettingsFromRetargetProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetChainUsingGoalFromRetargetAsset \ +static_assert(alignof(IKRetargeter_GetChainUsingGoalFromRetargetAsset) == 0x000008, "Wrong alignment on IKRetargeter_GetChainUsingGoalFromRetargetAsset"); \ +static_assert(sizeof(IKRetargeter_GetChainUsingGoalFromRetargetAsset) == 0x0000B8, "Wrong size on IKRetargeter_GetChainUsingGoalFromRetargetAsset"); \ +static_assert(offsetof(IKRetargeter_GetChainUsingGoalFromRetargetAsset, RetargetAsset) == 0x000000, "Member 'IKRetargeter_GetChainUsingGoalFromRetargetAsset::RetargetAsset' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainUsingGoalFromRetargetAsset, IKGoalName) == 0x000008, "Member 'IKRetargeter_GetChainUsingGoalFromRetargetAsset::IKGoalName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetChainUsingGoalFromRetargetAsset, ReturnValue) == 0x000010, "Member 'IKRetargeter_GetChainUsingGoalFromRetargetAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetGlobalSettingsFromRetargetAsset \ +static_assert(alignof(IKRetargeter_GetGlobalSettingsFromRetargetAsset) == 0x000008, "Wrong alignment on IKRetargeter_GetGlobalSettingsFromRetargetAsset"); \ +static_assert(sizeof(IKRetargeter_GetGlobalSettingsFromRetargetAsset) == 0x000030, "Wrong size on IKRetargeter_GetGlobalSettingsFromRetargetAsset"); \ +static_assert(offsetof(IKRetargeter_GetGlobalSettingsFromRetargetAsset, RetargetAsset) == 0x000000, "Member 'IKRetargeter_GetGlobalSettingsFromRetargetAsset::RetargetAsset' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetGlobalSettingsFromRetargetAsset, OptionalProfileName) == 0x000008, "Member 'IKRetargeter_GetGlobalSettingsFromRetargetAsset::OptionalProfileName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetGlobalSettingsFromRetargetAsset, OutSettings) == 0x000010, "Member 'IKRetargeter_GetGlobalSettingsFromRetargetAsset::OutSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetGlobalSettingsFromRetargetProfile \ +static_assert(alignof(IKRetargeter_GetGlobalSettingsFromRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_GetGlobalSettingsFromRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_GetGlobalSettingsFromRetargetProfile) == 0x000128, "Wrong size on IKRetargeter_GetGlobalSettingsFromRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_GetGlobalSettingsFromRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_GetGlobalSettingsFromRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetGlobalSettingsFromRetargetProfile, ReturnValue) == 0x000108, "Member 'IKRetargeter_GetGlobalSettingsFromRetargetProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetRootSettingsFromRetargetAsset \ +static_assert(alignof(IKRetargeter_GetRootSettingsFromRetargetAsset) == 0x000008, "Wrong alignment on IKRetargeter_GetRootSettingsFromRetargetAsset"); \ +static_assert(sizeof(IKRetargeter_GetRootSettingsFromRetargetAsset) == 0x000078, "Wrong size on IKRetargeter_GetRootSettingsFromRetargetAsset"); \ +static_assert(offsetof(IKRetargeter_GetRootSettingsFromRetargetAsset, RetargetAsset) == 0x000000, "Member 'IKRetargeter_GetRootSettingsFromRetargetAsset::RetargetAsset' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetRootSettingsFromRetargetAsset, OptionalProfileName) == 0x000008, "Member 'IKRetargeter_GetRootSettingsFromRetargetAsset::OptionalProfileName' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetRootSettingsFromRetargetAsset, OutSettings) == 0x000010, "Member 'IKRetargeter_GetRootSettingsFromRetargetAsset::OutSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_GetRootSettingsFromRetargetProfile \ +static_assert(alignof(IKRetargeter_GetRootSettingsFromRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_GetRootSettingsFromRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_GetRootSettingsFromRetargetProfile) == 0x000170, "Wrong size on IKRetargeter_GetRootSettingsFromRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_GetRootSettingsFromRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_GetRootSettingsFromRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_GetRootSettingsFromRetargetProfile, ReturnValue) == 0x000108, "Member 'IKRetargeter_GetRootSettingsFromRetargetProfile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetChainFKSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetChainFKSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetChainFKSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetChainFKSettingsInRetargetProfile) == 0x000128, "Wrong size on IKRetargeter_SetChainFKSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetChainFKSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetChainFKSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainFKSettingsInRetargetProfile, FKSettings) == 0x000108, "Member 'IKRetargeter_SetChainFKSettingsInRetargetProfile::FKSettings' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainFKSettingsInRetargetProfile, TargetChainName) == 0x000120, "Member 'IKRetargeter_SetChainFKSettingsInRetargetProfile::TargetChainName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetChainIKSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetChainIKSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetChainIKSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetChainIKSettingsInRetargetProfile) == 0x000188, "Wrong size on IKRetargeter_SetChainIKSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetChainIKSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetChainIKSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainIKSettingsInRetargetProfile, IKSettings) == 0x000108, "Member 'IKRetargeter_SetChainIKSettingsInRetargetProfile::IKSettings' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainIKSettingsInRetargetProfile, TargetChainName) == 0x000180, "Member 'IKRetargeter_SetChainIKSettingsInRetargetProfile::TargetChainName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetChainSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetChainSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetChainSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetChainSettingsInRetargetProfile) == 0x0001B8, "Wrong size on IKRetargeter_SetChainSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetChainSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetChainSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainSettingsInRetargetProfile, ChainSettings_0) == 0x000108, "Member 'IKRetargeter_SetChainSettingsInRetargetProfile::ChainSettings_0' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainSettingsInRetargetProfile, TargetChainName) == 0x0001B0, "Member 'IKRetargeter_SetChainSettingsInRetargetProfile::TargetChainName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile) == 0x000128, "Wrong size on IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile, SpeedPlantSettings) == 0x000108, "Member 'IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile::SpeedPlantSettings' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile, TargetChainName) == 0x000120, "Member 'IKRetargeter_SetChainSpeedPlantSettingsInRetargetProfile::TargetChainName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetGlobalSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetGlobalSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetGlobalSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetGlobalSettingsInRetargetProfile) == 0x000128, "Wrong size on IKRetargeter_SetGlobalSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetGlobalSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetGlobalSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetGlobalSettingsInRetargetProfile, GlobalSettings_0) == 0x000108, "Member 'IKRetargeter_SetGlobalSettingsInRetargetProfile::GlobalSettings_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IKRetargeter_SetRootSettingsInRetargetProfile \ +static_assert(alignof(IKRetargeter_SetRootSettingsInRetargetProfile) == 0x000008, "Wrong alignment on IKRetargeter_SetRootSettingsInRetargetProfile"); \ +static_assert(sizeof(IKRetargeter_SetRootSettingsInRetargetProfile) == 0x000170, "Wrong size on IKRetargeter_SetRootSettingsInRetargetProfile"); \ +static_assert(offsetof(IKRetargeter_SetRootSettingsInRetargetProfile, RetargetProfile) == 0x000000, "Member 'IKRetargeter_SetRootSettingsInRetargetProfile::RetargetProfile' has a wrong offset!"); \ +static_assert(offsetof(IKRetargeter_SetRootSettingsInRetargetProfile, RootSettings_0) == 0x000108, "Member 'IKRetargeter_SetRootSettingsInRetargetProfile::RootSettings_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRetargeter \ +static_assert(alignof(UIKRetargeter) == 0x000008, "Wrong alignment on UIKRetargeter"); \ +static_assert(sizeof(UIKRetargeter) == 0x000208, "Wrong size on UIKRetargeter"); \ +static_assert(offsetof(UIKRetargeter, SourceIKRigAsset) == 0x000028, "Member 'UIKRetargeter::SourceIKRigAsset' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, TargetIKRigAsset) == 0x000050, "Member 'UIKRetargeter::TargetIKRigAsset' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, ChainMapping) == 0x000078, "Member 'UIKRetargeter::ChainMapping' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, ChainSettings) == 0x000088, "Member 'UIKRetargeter::ChainSettings' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, RootSettings) == 0x000098, "Member 'UIKRetargeter::RootSettings' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, GlobalSettings) == 0x0000A0, "Member 'UIKRetargeter::GlobalSettings' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, Profiles) == 0x0000A8, "Member 'UIKRetargeter::Profiles' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, CurrentProfile) == 0x0000F8, "Member 'UIKRetargeter::CurrentProfile' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, SourceRetargetPoses) == 0x000100, "Member 'UIKRetargeter::SourceRetargetPoses' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, TargetRetargetPoses) == 0x000150, "Member 'UIKRetargeter::TargetRetargetPoses' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, CurrentSourceRetargetPose) == 0x0001A0, "Member 'UIKRetargeter::CurrentSourceRetargetPose' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, CurrentTargetRetargetPose) == 0x0001A8, "Member 'UIKRetargeter::CurrentTargetRetargetPose' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, RetargetPoses) == 0x0001B0, "Member 'UIKRetargeter::RetargetPoses' has a wrong offset!"); \ +static_assert(offsetof(UIKRetargeter, CurrentRetargetPose) == 0x000200, "Member 'UIKRetargeter::CurrentRetargetPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRetargetProcessor \ +static_assert(alignof(UIKRetargetProcessor) == 0x000010, "Wrong alignment on UIKRetargetProcessor"); \ +static_assert(sizeof(UIKRetargetProcessor) == 0x000370, "Wrong size on UIKRetargetProcessor"); \ +static_assert(offsetof(UIKRetargetProcessor, IKRigProcessor) == 0x000170, "Member 'UIKRetargetProcessor::IKRigProcessor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigEffectorGoal \ +static_assert(alignof(UIKRigEffectorGoal) == 0x000010, "Wrong alignment on UIKRigEffectorGoal"); \ +static_assert(sizeof(UIKRigEffectorGoal) == 0x000100, "Wrong size on UIKRigEffectorGoal"); \ +static_assert(offsetof(UIKRigEffectorGoal, GoalName) == 0x000028, "Member 'UIKRigEffectorGoal::GoalName' has a wrong offset!"); \ +static_assert(offsetof(UIKRigEffectorGoal, BoneName) == 0x000030, "Member 'UIKRigEffectorGoal::BoneName' has a wrong offset!"); \ +static_assert(offsetof(UIKRigEffectorGoal, PositionAlpha) == 0x000038, "Member 'UIKRigEffectorGoal::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRigEffectorGoal, RotationAlpha) == 0x00003C, "Member 'UIKRigEffectorGoal::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRigEffectorGoal, CurrentTransform) == 0x000040, "Member 'UIKRigEffectorGoal::CurrentTransform' has a wrong offset!"); \ +static_assert(offsetof(UIKRigEffectorGoal, InitialTransform) == 0x0000A0, "Member 'UIKRigEffectorGoal::InitialTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigDefinition \ +static_assert(alignof(UIKRigDefinition) == 0x000008, "Wrong alignment on UIKRigDefinition"); \ +static_assert(sizeof(UIKRigDefinition) == 0x000100, "Wrong size on UIKRigDefinition"); \ +static_assert(offsetof(UIKRigDefinition, PreviewSkeletalMesh) == 0x000030, "Member 'UIKRigDefinition::PreviewSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UIKRigDefinition, Skeleton) == 0x000058, "Member 'UIKRigDefinition::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(UIKRigDefinition, Goals) == 0x0000C8, "Member 'UIKRigDefinition::Goals' has a wrong offset!"); \ +static_assert(offsetof(UIKRigDefinition, Solvers) == 0x0000D8, "Member 'UIKRigDefinition::Solvers' has a wrong offset!"); \ +static_assert(offsetof(UIKRigDefinition, RetargetDefinition) == 0x0000E8, "Member 'UIKRigDefinition::RetargetDefinition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigProcessor \ +static_assert(alignof(UIKRigProcessor) == 0x000008, "Wrong alignment on UIKRigProcessor"); \ +static_assert(sizeof(UIKRigProcessor) == 0x000148, "Wrong size on UIKRigProcessor"); \ +static_assert(offsetof(UIKRigProcessor, Solvers) == 0x000060, "Member 'UIKRigProcessor::Solvers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigSolver \ +static_assert(alignof(UIKRigSolver) == 0x000008, "Wrong alignment on UIKRigSolver"); \ +static_assert(sizeof(UIKRigSolver) == 0x000030, "Wrong size on UIKRigSolver"); \ +static_assert(offsetof(UIKRigSolver, bIsEnabled) == 0x000028, "Member 'UIKRigSolver::bIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_BodyMoverEffector \ +static_assert(alignof(UIKRig_BodyMoverEffector) == 0x000008, "Wrong alignment on UIKRig_BodyMoverEffector"); \ +static_assert(sizeof(UIKRig_BodyMoverEffector) == 0x000040, "Wrong size on UIKRig_BodyMoverEffector"); \ +static_assert(offsetof(UIKRig_BodyMoverEffector, GoalName) == 0x000028, "Member 'UIKRig_BodyMoverEffector::GoalName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMoverEffector, BoneName) == 0x000030, "Member 'UIKRig_BodyMoverEffector::BoneName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMoverEffector, InfluenceMultiplier) == 0x000038, "Member 'UIKRig_BodyMoverEffector::InfluenceMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_BodyMover \ +static_assert(alignof(UIKRig_BodyMover) == 0x000008, "Wrong alignment on UIKRig_BodyMover"); \ +static_assert(sizeof(UIKRig_BodyMover) == 0x000080, "Wrong size on UIKRig_BodyMover"); \ +static_assert(offsetof(UIKRig_BodyMover, RootBone) == 0x000030, "Member 'UIKRig_BodyMover::RootBone' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionAlpha) == 0x000038, "Member 'UIKRig_BodyMover::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionPositiveX) == 0x00003C, "Member 'UIKRig_BodyMover::PositionPositiveX' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionNegativeX) == 0x000040, "Member 'UIKRig_BodyMover::PositionNegativeX' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionPositiveY) == 0x000044, "Member 'UIKRig_BodyMover::PositionPositiveY' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionNegativeY) == 0x000048, "Member 'UIKRig_BodyMover::PositionNegativeY' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionPositiveZ) == 0x00004C, "Member 'UIKRig_BodyMover::PositionPositiveZ' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, PositionNegativeZ) == 0x000050, "Member 'UIKRig_BodyMover::PositionNegativeZ' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, RotationAlpha) == 0x000054, "Member 'UIKRig_BodyMover::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, RotateXAlpha) == 0x000058, "Member 'UIKRig_BodyMover::RotateXAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, RotateYAlpha) == 0x00005C, "Member 'UIKRig_BodyMover::RotateYAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, RotateZAlpha) == 0x000060, "Member 'UIKRig_BodyMover::RotateZAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_BodyMover, Effectors) == 0x000068, "Member 'UIKRig_BodyMover::Effectors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_LimbEffector \ +static_assert(alignof(UIKRig_LimbEffector) == 0x000008, "Wrong alignment on UIKRig_LimbEffector"); \ +static_assert(sizeof(UIKRig_LimbEffector) == 0x000038, "Wrong size on UIKRig_LimbEffector"); \ +static_assert(offsetof(UIKRig_LimbEffector, GoalName) == 0x000028, "Member 'UIKRig_LimbEffector::GoalName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbEffector, BoneName) == 0x000030, "Member 'UIKRig_LimbEffector::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_LimbSolver \ +static_assert(alignof(UIKRig_LimbSolver) == 0x000008, "Wrong alignment on UIKRig_LimbSolver"); \ +static_assert(sizeof(UIKRig_LimbSolver) == 0x000090, "Wrong size on UIKRig_LimbSolver"); \ +static_assert(offsetof(UIKRig_LimbSolver, RootName) == 0x000030, "Member 'UIKRig_LimbSolver::RootName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, ReachPrecision) == 0x000038, "Member 'UIKRig_LimbSolver::ReachPrecision' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, HingeRotationAxis) == 0x00003C, "Member 'UIKRig_LimbSolver::HingeRotationAxis' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, MaxIterations) == 0x000040, "Member 'UIKRig_LimbSolver::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, bEnableLimit) == 0x000044, "Member 'UIKRig_LimbSolver::bEnableLimit' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, MinRotationAngle) == 0x000048, "Member 'UIKRig_LimbSolver::MinRotationAngle' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, bAveragePull) == 0x00004C, "Member 'UIKRig_LimbSolver::bAveragePull' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, PullDistribution) == 0x000050, "Member 'UIKRig_LimbSolver::PullDistribution' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, ReachStepAlpha) == 0x000054, "Member 'UIKRig_LimbSolver::ReachStepAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, bEnableTwistCorrection) == 0x000058, "Member 'UIKRig_LimbSolver::bEnableTwistCorrection' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, EndBoneForwardAxis) == 0x000059, "Member 'UIKRig_LimbSolver::EndBoneForwardAxis' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_LimbSolver, Effector) == 0x000060, "Member 'UIKRig_LimbSolver::Effector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_FBIKEffector \ +static_assert(alignof(UIKRig_FBIKEffector) == 0x000008, "Wrong alignment on UIKRig_FBIKEffector"); \ +static_assert(sizeof(UIKRig_FBIKEffector) == 0x000048, "Wrong size on UIKRig_FBIKEffector"); \ +static_assert(offsetof(UIKRig_FBIKEffector, GoalName) == 0x000028, "Member 'UIKRig_FBIKEffector::GoalName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKEffector, BoneName) == 0x000030, "Member 'UIKRig_FBIKEffector::BoneName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKEffector, StrengthAlpha) == 0x000038, "Member 'UIKRig_FBIKEffector::StrengthAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKEffector, PullChainAlpha) == 0x00003C, "Member 'UIKRig_FBIKEffector::PullChainAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKEffector, PinRotation) == 0x000040, "Member 'UIKRig_FBIKEffector::PinRotation' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKEffector, IndexInSolver) == 0x000044, "Member 'UIKRig_FBIKEffector::IndexInSolver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_FBIKBoneSettings \ +static_assert(alignof(UIKRig_FBIKBoneSettings) == 0x000008, "Wrong alignment on UIKRig_FBIKBoneSettings"); \ +static_assert(sizeof(UIKRig_FBIKBoneSettings) == 0x000078, "Wrong size on UIKRig_FBIKBoneSettings"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, bone) == 0x000028, "Member 'UIKRig_FBIKBoneSettings::bone' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, RotationStiffness) == 0x000030, "Member 'UIKRig_FBIKBoneSettings::RotationStiffness' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, PositionStiffness) == 0x000034, "Member 'UIKRig_FBIKBoneSettings::PositionStiffness' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, X) == 0x000038, "Member 'UIKRig_FBIKBoneSettings::X' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MinX) == 0x00003C, "Member 'UIKRig_FBIKBoneSettings::MinX' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MaxX) == 0x000040, "Member 'UIKRig_FBIKBoneSettings::MaxX' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, Y) == 0x000044, "Member 'UIKRig_FBIKBoneSettings::Y' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MinY) == 0x000048, "Member 'UIKRig_FBIKBoneSettings::MinY' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MaxY) == 0x00004C, "Member 'UIKRig_FBIKBoneSettings::MaxY' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, Z) == 0x000050, "Member 'UIKRig_FBIKBoneSettings::Z' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MinZ) == 0x000054, "Member 'UIKRig_FBIKBoneSettings::MinZ' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, MaxZ) == 0x000058, "Member 'UIKRig_FBIKBoneSettings::MaxZ' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, bUsePreferredAngles) == 0x00005C, "Member 'UIKRig_FBIKBoneSettings::bUsePreferredAngles' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_FBIKBoneSettings, PreferredAngles) == 0x000060, "Member 'UIKRig_FBIKBoneSettings::PreferredAngles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRigFBIKSolver \ +static_assert(alignof(UIKRigFBIKSolver) == 0x000008, "Wrong alignment on UIKRigFBIKSolver"); \ +static_assert(sizeof(UIKRigFBIKSolver) == 0x000100, "Wrong size on UIKRigFBIKSolver"); \ +static_assert(offsetof(UIKRigFBIKSolver, RootBone) == 0x000030, "Member 'UIKRigFBIKSolver::RootBone' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, Iterations) == 0x000038, "Member 'UIKRigFBIKSolver::Iterations' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, MassMultiplier) == 0x00003C, "Member 'UIKRigFBIKSolver::MassMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, bAllowStretch) == 0x000040, "Member 'UIKRigFBIKSolver::bAllowStretch' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, RootBehavior) == 0x000041, "Member 'UIKRigFBIKSolver::RootBehavior' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, PrePullRootSettings) == 0x000044, "Member 'UIKRigFBIKSolver::PrePullRootSettings' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, PullChainAlpha) == 0x000064, "Member 'UIKRigFBIKSolver::PullChainAlpha' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, MaxAngle) == 0x000068, "Member 'UIKRigFBIKSolver::MaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, OverRelaxation) == 0x00006C, "Member 'UIKRigFBIKSolver::OverRelaxation' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, bStartSolveFromInputPose) == 0x000070, "Member 'UIKRigFBIKSolver::bStartSolveFromInputPose' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, Effectors) == 0x000078, "Member 'UIKRigFBIKSolver::Effectors' has a wrong offset!"); \ +static_assert(offsetof(UIKRigFBIKSolver, BoneSettings) == 0x000088, "Member 'UIKRigFBIKSolver::BoneSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_PoleSolverEffector \ +static_assert(alignof(UIKRig_PoleSolverEffector) == 0x000008, "Wrong alignment on UIKRig_PoleSolverEffector"); \ +static_assert(sizeof(UIKRig_PoleSolverEffector) == 0x000040, "Wrong size on UIKRig_PoleSolverEffector"); \ +static_assert(offsetof(UIKRig_PoleSolverEffector, GoalName) == 0x000028, "Member 'UIKRig_PoleSolverEffector::GoalName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_PoleSolverEffector, BoneName) == 0x000030, "Member 'UIKRig_PoleSolverEffector::BoneName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_PoleSolverEffector, alpha) == 0x000038, "Member 'UIKRig_PoleSolverEffector::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_PoleSolver \ +static_assert(alignof(UIKRig_PoleSolver) == 0x000008, "Wrong alignment on UIKRig_PoleSolver"); \ +static_assert(sizeof(UIKRig_PoleSolver) == 0x000068, "Wrong size on UIKRig_PoleSolver"); \ +static_assert(offsetof(UIKRig_PoleSolver, RootName) == 0x000030, "Member 'UIKRig_PoleSolver::RootName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_PoleSolver, EndName) == 0x000038, "Member 'UIKRig_PoleSolver::EndName' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_PoleSolver, Effector) == 0x000040, "Member 'UIKRig_PoleSolver::Effector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_SetTransformEffector \ +static_assert(alignof(UIKRig_SetTransformEffector) == 0x000008, "Wrong alignment on UIKRig_SetTransformEffector"); \ +static_assert(sizeof(UIKRig_SetTransformEffector) == 0x000030, "Wrong size on UIKRig_SetTransformEffector"); \ +static_assert(offsetof(UIKRig_SetTransformEffector, bEnablePosition) == 0x000028, "Member 'UIKRig_SetTransformEffector::bEnablePosition' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_SetTransformEffector, bEnableRotation) == 0x000029, "Member 'UIKRig_SetTransformEffector::bEnableRotation' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_SetTransformEffector, alpha) == 0x00002C, "Member 'UIKRig_SetTransformEffector::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIKRig_SetTransform \ +static_assert(alignof(UIKRig_SetTransform) == 0x000008, "Wrong alignment on UIKRig_SetTransform"); \ +static_assert(sizeof(UIKRig_SetTransform) == 0x000050, "Wrong size on UIKRig_SetTransform"); \ +static_assert(offsetof(UIKRig_SetTransform, Goal) == 0x000030, "Member 'UIKRig_SetTransform::Goal' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_SetTransform, RootBone) == 0x000038, "Member 'UIKRig_SetTransform::RootBone' has a wrong offset!"); \ +static_assert(offsetof(UIKRig_SetTransform, Effector) == 0x000040, "Member 'UIKRig_SetTransform::Effector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTemplateSectionPropertyScale \ +static_assert(alignof(FTemplateSectionPropertyScale) == 0x000008, "Wrong alignment on FTemplateSectionPropertyScale"); \ +static_assert(sizeof(FTemplateSectionPropertyScale) == 0x000138, "Wrong size on FTemplateSectionPropertyScale"); \ +static_assert(offsetof(FTemplateSectionPropertyScale, ObjectBinding) == 0x000000, "Member 'FTemplateSectionPropertyScale::ObjectBinding' has a wrong offset!"); \ +static_assert(offsetof(FTemplateSectionPropertyScale, PropertyBinding) == 0x000010, "Member 'FTemplateSectionPropertyScale::PropertyBinding' has a wrong offset!"); \ +static_assert(offsetof(FTemplateSectionPropertyScale, PropertyScaleType) == 0x000024, "Member 'FTemplateSectionPropertyScale::PropertyScaleType' has a wrong offset!"); \ +static_assert(offsetof(FTemplateSectionPropertyScale, FloatChannel) == 0x000028, "Member 'FTemplateSectionPropertyScale::FloatChannel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTemplateSequenceBindingOverrideData \ +static_assert(alignof(FTemplateSequenceBindingOverrideData) == 0x000004, "Wrong alignment on FTemplateSequenceBindingOverrideData"); \ +static_assert(sizeof(FTemplateSequenceBindingOverrideData) == 0x00000C, "Wrong size on FTemplateSequenceBindingOverrideData"); \ +static_assert(offsetof(FTemplateSequenceBindingOverrideData, Object) == 0x000000, "Member 'FTemplateSequenceBindingOverrideData::Object' has a wrong offset!"); \ +static_assert(offsetof(FTemplateSequenceBindingOverrideData, bOverridesDefault) == 0x000008, "Member 'FTemplateSequenceBindingOverrideData::bOverridesDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTemplateSequence \ +static_assert(alignof(UTemplateSequence) == 0x000008, "Wrong alignment on UTemplateSequence"); \ +static_assert(sizeof(UTemplateSequence) == 0x0000E8, "Wrong size on UTemplateSequence"); \ +static_assert(offsetof(UTemplateSequence, MovieScene) == 0x000068, "Member 'UTemplateSequence::MovieScene' has a wrong offset!"); \ +static_assert(offsetof(UTemplateSequence, BoundActorClass) == 0x000070, "Member 'UTemplateSequence::BoundActorClass' has a wrong offset!"); \ +static_assert(offsetof(UTemplateSequence, BoundActorComponents) == 0x000098, "Member 'UTemplateSequence::BoundActorComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationSequence \ +static_assert(alignof(UCameraAnimationSequence) == 0x000008, "Wrong alignment on UCameraAnimationSequence"); \ +static_assert(sizeof(UCameraAnimationSequence) == 0x0000E8, "Wrong size on UCameraAnimationSequence"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationSequenceCameraStandIn \ +static_assert(alignof(UCameraAnimationSequenceCameraStandIn) == 0x000010, "Wrong alignment on UCameraAnimationSequenceCameraStandIn"); \ +static_assert(sizeof(UCameraAnimationSequenceCameraStandIn) == 0x000840, "Wrong size on UCameraAnimationSequenceCameraStandIn"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, FieldOfView) == 0x000028, "Member 'UCameraAnimationSequenceCameraStandIn::FieldOfView' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, AspectRatio) == 0x000030, "Member 'UCameraAnimationSequenceCameraStandIn::AspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, PostProcessSettings) == 0x000040, "Member 'UCameraAnimationSequenceCameraStandIn::PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, PostProcessBlendWeight) == 0x000730, "Member 'UCameraAnimationSequenceCameraStandIn::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, Filmback) == 0x000734, "Member 'UCameraAnimationSequenceCameraStandIn::Filmback' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, LensSettings) == 0x000740, "Member 'UCameraAnimationSequenceCameraStandIn::LensSettings' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, FocusSettings) == 0x000760, "Member 'UCameraAnimationSequenceCameraStandIn::FocusSettings' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, CurrentFocalLength) == 0x0007C0, "Member 'UCameraAnimationSequenceCameraStandIn::CurrentFocalLength' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, CurrentAperture) == 0x0007C4, "Member 'UCameraAnimationSequenceCameraStandIn::CurrentAperture' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequenceCameraStandIn, CurrentFocusDistance) == 0x0007C8, "Member 'UCameraAnimationSequenceCameraStandIn::CurrentFocusDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationSequencePlayer \ +static_assert(alignof(UCameraAnimationSequencePlayer) == 0x000008, "Wrong alignment on UCameraAnimationSequencePlayer"); \ +static_assert(sizeof(UCameraAnimationSequencePlayer) == 0x000398, "Wrong size on UCameraAnimationSequencePlayer"); \ +static_assert(offsetof(UCameraAnimationSequencePlayer, BoundObjectOverride) == 0x000298, "Member 'UCameraAnimationSequencePlayer::BoundObjectOverride' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequencePlayer, Sequence) == 0x0002A0, "Member 'UCameraAnimationSequencePlayer::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationSequencePlayer, RootTemplateInstance) == 0x0002A8, "Member 'UCameraAnimationSequencePlayer::RootTemplateInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationSpawnableSystem \ +static_assert(alignof(UCameraAnimationSpawnableSystem) == 0x000008, "Wrong alignment on UCameraAnimationSpawnableSystem"); \ +static_assert(sizeof(UCameraAnimationSpawnableSystem) == 0x000040, "Wrong size on UCameraAnimationSpawnableSystem"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationBoundObjectInstantiator \ +static_assert(alignof(UCameraAnimationBoundObjectInstantiator) == 0x000008, "Wrong alignment on UCameraAnimationBoundObjectInstantiator"); \ +static_assert(sizeof(UCameraAnimationBoundObjectInstantiator) == 0x000040, "Wrong size on UCameraAnimationBoundObjectInstantiator"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationEntitySystemLinker \ +static_assert(alignof(UCameraAnimationEntitySystemLinker) == 0x000008, "Wrong alignment on UCameraAnimationEntitySystemLinker"); \ +static_assert(sizeof(UCameraAnimationEntitySystemLinker) == 0x000738, "Wrong size on UCameraAnimationEntitySystemLinker"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationSequenceSubsystem \ +static_assert(alignof(UCameraAnimationSequenceSubsystem) == 0x000008, "Wrong alignment on UCameraAnimationSequenceSubsystem"); \ +static_assert(sizeof(UCameraAnimationSequenceSubsystem) == 0x000048, "Wrong size on UCameraAnimationSequenceSubsystem"); \ +static_assert(offsetof(UCameraAnimationSequenceSubsystem, Linker) == 0x000030, "Member 'UCameraAnimationSequenceSubsystem::Linker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTemplateSequenceSection \ +static_assert(alignof(UTemplateSequenceSection) == 0x000008, "Wrong alignment on UTemplateSequenceSection"); \ +static_assert(sizeof(UTemplateSequenceSection) == 0x000148, "Wrong size on UTemplateSequenceSection"); \ +static_assert(offsetof(UTemplateSequenceSection, PropertyScales) == 0x000138, "Member 'UTemplateSequenceSection::PropertyScales' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequenceCameraShakePattern \ +static_assert(alignof(USequenceCameraShakePattern) == 0x000008, "Wrong alignment on USequenceCameraShakePattern"); \ +static_assert(sizeof(USequenceCameraShakePattern) == 0x000078, "Wrong size on USequenceCameraShakePattern"); \ +static_assert(offsetof(USequenceCameraShakePattern, Sequence) == 0x000028, "Member 'USequenceCameraShakePattern::Sequence' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, PlayRate) == 0x000030, "Member 'USequenceCameraShakePattern::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, Scale) == 0x000034, "Member 'USequenceCameraShakePattern::Scale' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, BlendInTime) == 0x000038, "Member 'USequenceCameraShakePattern::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, BlendOutTime) == 0x00003C, "Member 'USequenceCameraShakePattern::BlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, RandomSegmentDuration) == 0x000040, "Member 'USequenceCameraShakePattern::RandomSegmentDuration' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, bRandomSegment) == 0x000044, "Member 'USequenceCameraShakePattern::bRandomSegment' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, Player) == 0x000048, "Member 'USequenceCameraShakePattern::Player' has a wrong offset!"); \ +static_assert(offsetof(USequenceCameraShakePattern, CameraStandIn) == 0x000050, "Member 'USequenceCameraShakePattern::CameraStandIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTemplateSequenceSystem \ +static_assert(alignof(UTemplateSequenceSystem) == 0x000008, "Wrong alignment on UTemplateSequenceSystem"); \ +static_assert(sizeof(UTemplateSequenceSystem) == 0x0000B0, "Wrong size on UTemplateSequenceSystem"); \ + +#define DUMPER7_ASSERTS_UTemplateSequencePropertyScalingInstantiatorSystem \ +static_assert(alignof(UTemplateSequencePropertyScalingInstantiatorSystem) == 0x000008, "Wrong alignment on UTemplateSequencePropertyScalingInstantiatorSystem"); \ +static_assert(sizeof(UTemplateSequencePropertyScalingInstantiatorSystem) == 0x000098, "Wrong size on UTemplateSequencePropertyScalingInstantiatorSystem"); \ + +#define DUMPER7_ASSERTS_UTemplateSequencePropertyScalingEvaluatorSystem \ +static_assert(alignof(UTemplateSequencePropertyScalingEvaluatorSystem) == 0x000008, "Wrong alignment on UTemplateSequencePropertyScalingEvaluatorSystem"); \ +static_assert(sizeof(UTemplateSequencePropertyScalingEvaluatorSystem) == 0x000090, "Wrong size on UTemplateSequencePropertyScalingEvaluatorSystem"); \ + +#define DUMPER7_ASSERTS_TemplateSequenceActor_SetBinding \ +static_assert(alignof(TemplateSequenceActor_SetBinding) == 0x000008, "Wrong alignment on TemplateSequenceActor_SetBinding"); \ +static_assert(sizeof(TemplateSequenceActor_SetBinding) == 0x000010, "Wrong size on TemplateSequenceActor_SetBinding"); \ +static_assert(offsetof(TemplateSequenceActor_SetBinding, Actor) == 0x000000, "Member 'TemplateSequenceActor_SetBinding::Actor' has a wrong offset!"); \ +static_assert(offsetof(TemplateSequenceActor_SetBinding, bOverridesDefault) == 0x000008, "Member 'TemplateSequenceActor_SetBinding::bOverridesDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TemplateSequenceActor_SetSequence \ +static_assert(alignof(TemplateSequenceActor_SetSequence) == 0x000008, "Wrong alignment on TemplateSequenceActor_SetSequence"); \ +static_assert(sizeof(TemplateSequenceActor_SetSequence) == 0x000008, "Wrong size on TemplateSequenceActor_SetSequence"); \ +static_assert(offsetof(TemplateSequenceActor_SetSequence, InSequence) == 0x000000, "Member 'TemplateSequenceActor_SetSequence::InSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TemplateSequenceActor_GetSequence \ +static_assert(alignof(TemplateSequenceActor_GetSequence) == 0x000008, "Wrong alignment on TemplateSequenceActor_GetSequence"); \ +static_assert(sizeof(TemplateSequenceActor_GetSequence) == 0x000008, "Wrong size on TemplateSequenceActor_GetSequence"); \ +static_assert(offsetof(TemplateSequenceActor_GetSequence, ReturnValue) == 0x000000, "Member 'TemplateSequenceActor_GetSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TemplateSequenceActor_GetSequencePlayer \ +static_assert(alignof(TemplateSequenceActor_GetSequencePlayer) == 0x000008, "Wrong alignment on TemplateSequenceActor_GetSequencePlayer"); \ +static_assert(sizeof(TemplateSequenceActor_GetSequencePlayer) == 0x000008, "Wrong size on TemplateSequenceActor_GetSequencePlayer"); \ +static_assert(offsetof(TemplateSequenceActor_GetSequencePlayer, ReturnValue) == 0x000000, "Member 'TemplateSequenceActor_GetSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TemplateSequenceActor_LoadSequence \ +static_assert(alignof(TemplateSequenceActor_LoadSequence) == 0x000008, "Wrong alignment on TemplateSequenceActor_LoadSequence"); \ +static_assert(sizeof(TemplateSequenceActor_LoadSequence) == 0x000008, "Wrong size on TemplateSequenceActor_LoadSequence"); \ +static_assert(offsetof(TemplateSequenceActor_LoadSequence, ReturnValue) == 0x000000, "Member 'TemplateSequenceActor_LoadSequence::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATemplateSequenceActor \ +static_assert(alignof(ATemplateSequenceActor) == 0x000008, "Wrong alignment on ATemplateSequenceActor"); \ +static_assert(sizeof(ATemplateSequenceActor) == 0x0002F8, "Wrong size on ATemplateSequenceActor"); \ +static_assert(offsetof(ATemplateSequenceActor, PlaybackSettings) == 0x0002A0, "Member 'ATemplateSequenceActor::PlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(ATemplateSequenceActor, SequencePlayer) == 0x0002C0, "Member 'ATemplateSequenceActor::SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(ATemplateSequenceActor, TemplateSequence) == 0x0002C8, "Member 'ATemplateSequenceActor::TemplateSequence' has a wrong offset!"); \ +static_assert(offsetof(ATemplateSequenceActor, BindingOverride) == 0x0002E8, "Member 'ATemplateSequenceActor::BindingOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TemplateSequencePlayer_CreateTemplateSequencePlayer \ +static_assert(alignof(TemplateSequencePlayer_CreateTemplateSequencePlayer) == 0x000008, "Wrong alignment on TemplateSequencePlayer_CreateTemplateSequencePlayer"); \ +static_assert(sizeof(TemplateSequencePlayer_CreateTemplateSequencePlayer) == 0x000040, "Wrong size on TemplateSequencePlayer_CreateTemplateSequencePlayer"); \ +static_assert(offsetof(TemplateSequencePlayer_CreateTemplateSequencePlayer, WorldContextObject) == 0x000000, "Member 'TemplateSequencePlayer_CreateTemplateSequencePlayer::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(TemplateSequencePlayer_CreateTemplateSequencePlayer, TemplateSequence) == 0x000008, "Member 'TemplateSequencePlayer_CreateTemplateSequencePlayer::TemplateSequence' has a wrong offset!"); \ +static_assert(offsetof(TemplateSequencePlayer_CreateTemplateSequencePlayer, Settings) == 0x000010, "Member 'TemplateSequencePlayer_CreateTemplateSequencePlayer::Settings' has a wrong offset!"); \ +static_assert(offsetof(TemplateSequencePlayer_CreateTemplateSequencePlayer, OutActor) == 0x000030, "Member 'TemplateSequencePlayer_CreateTemplateSequencePlayer::OutActor' has a wrong offset!"); \ +static_assert(offsetof(TemplateSequencePlayer_CreateTemplateSequencePlayer, ReturnValue) == 0x000038, "Member 'TemplateSequencePlayer_CreateTemplateSequencePlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTemplateSequencePlayer \ +static_assert(alignof(UTemplateSequencePlayer) == 0x000008, "Wrong alignment on UTemplateSequencePlayer"); \ +static_assert(sizeof(UTemplateSequencePlayer) == 0x0004D0, "Wrong size on UTemplateSequencePlayer"); \ + +#define DUMPER7_ASSERTS_SequenceCameraShakeTestUtil_GetCameraCachePOV \ +static_assert(alignof(SequenceCameraShakeTestUtil_GetCameraCachePOV) == 0x000010, "Wrong alignment on SequenceCameraShakeTestUtil_GetCameraCachePOV"); \ +static_assert(sizeof(SequenceCameraShakeTestUtil_GetCameraCachePOV) == 0x0007E0, "Wrong size on SequenceCameraShakeTestUtil_GetCameraCachePOV"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetCameraCachePOV, PlayerController) == 0x000000, "Member 'SequenceCameraShakeTestUtil_GetCameraCachePOV::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetCameraCachePOV, ReturnValue) == 0x000010, "Member 'SequenceCameraShakeTestUtil_GetCameraCachePOV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV \ +static_assert(alignof(SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV) == 0x000010, "Wrong alignment on SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV"); \ +static_assert(sizeof(SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV) == 0x0007E0, "Wrong size on SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV, PlayerController) == 0x000000, "Member 'SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV, ReturnValue) == 0x000010, "Member 'SequenceCameraShakeTestUtil_GetLastFrameCameraCachePOV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SequenceCameraShakeTestUtil_GetPostProcessBlendCache \ +static_assert(alignof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache) == 0x000010, "Wrong alignment on SequenceCameraShakeTestUtil_GetPostProcessBlendCache"); \ +static_assert(sizeof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache) == 0x000710, "Wrong size on SequenceCameraShakeTestUtil_GetPostProcessBlendCache"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache, PlayerController) == 0x000000, "Member 'SequenceCameraShakeTestUtil_GetPostProcessBlendCache::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache, PPIndex) == 0x000008, "Member 'SequenceCameraShakeTestUtil_GetPostProcessBlendCache::PPIndex' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache, OutPPSettings) == 0x000010, "Member 'SequenceCameraShakeTestUtil_GetPostProcessBlendCache::OutPPSettings' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache, OutPPBlendWeight) == 0x000700, "Member 'SequenceCameraShakeTestUtil_GetPostProcessBlendCache::OutPPBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(SequenceCameraShakeTestUtil_GetPostProcessBlendCache, ReturnValue) == 0x000704, "Member 'SequenceCameraShakeTestUtil_GetPostProcessBlendCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USequenceCameraShakeTestUtil \ +static_assert(alignof(USequenceCameraShakeTestUtil) == 0x000008, "Wrong alignment on USequenceCameraShakeTestUtil"); \ +static_assert(sizeof(USequenceCameraShakeTestUtil) == 0x000028, "Wrong size on USequenceCameraShakeTestUtil"); \ + +#define DUMPER7_ASSERTS_UTemplateSequenceTrack \ +static_assert(alignof(UTemplateSequenceTrack) == 0x000008, "Wrong alignment on UTemplateSequenceTrack"); \ +static_assert(sizeof(UTemplateSequenceTrack) == 0x0000A8, "Wrong size on UTemplateSequenceTrack"); \ + +#define DUMPER7_ASSERTS_WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen \ +static_assert(alignof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen) == 0x000008, "Wrong alignment on WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen"); \ +static_assert(sizeof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen) == 0x0000D0, "Wrong size on WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, EntryPoint) == 0x000000, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_DynamicCast_AsWBP_Map_Icon_Legend_Widget) == 0x000008, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_DynamicCast_AsWBP_Map_Icon_Legend_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable) == 0x000024, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_1) == 0x000044, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000058, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_2) == 0x000060, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_3) == 0x000070, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_4) == 0x000080, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_5) == 0x000090, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_6) == 0x0000A0, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, Temp_delegate_Variable_7) == 0x0000B0, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::Temp_delegate_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_Event_InFocusEvent_1) == 0x0000C0, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_Event_InFocusEvent_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen, K2Node_Event_InFocusEvent) == 0x0000C8, "Member 'WBP_MapScreen_C_ExecuteUbergraph_WBP_MapScreen::K2Node_Event_InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapScreen_C_GetFormattedText \ +static_assert(alignof(WBP_MapScreen_C_GetFormattedText) == 0x000008, "Wrong alignment on WBP_MapScreen_C_GetFormattedText"); \ +static_assert(sizeof(WBP_MapScreen_C_GetFormattedText) == 0x000088, "Wrong size on WBP_MapScreen_C_GetFormattedText"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, AchivementTag) == 0x000000, "Member 'WBP_MapScreen_C_GetFormattedText::AchivementTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, ReturnValue) == 0x000008, "Member 'WBP_MapScreen_C_GetFormattedText::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_GetXPComponent_ReturnValue) == 0x000020, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_GetXPComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_GetAchievementCounterData_OutTotalToFind) == 0x000028, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_GetAchievementCounterData_OutTotalToFind' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_GetAchievementCounterData_OutFoundCount) == 0x00002C, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_GetAchievementCounterData_OutFoundCount' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_Conv_IntToString_ReturnValue) == 0x000030, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_Conv_IntToString_ReturnValue_1) == 0x000040, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_Conv_IntToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_Concat_StrStr_ReturnValue) == 0x000050, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000060, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_GetFormattedText, CallFunc_Conv_StringToText_ReturnValue) == 0x000070, "Member 'WBP_MapScreen_C_GetFormattedText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapScreen_C_OnAddedToFocusPath \ +static_assert(alignof(WBP_MapScreen_C_OnAddedToFocusPath) == 0x000004, "Wrong alignment on WBP_MapScreen_C_OnAddedToFocusPath"); \ +static_assert(sizeof(WBP_MapScreen_C_OnAddedToFocusPath) == 0x000008, "Wrong size on WBP_MapScreen_C_OnAddedToFocusPath"); \ +static_assert(offsetof(WBP_MapScreen_C_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'WBP_MapScreen_C_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapScreen_C_OnFocusLost \ +static_assert(alignof(WBP_MapScreen_C_OnFocusLost) == 0x000004, "Wrong alignment on WBP_MapScreen_C_OnFocusLost"); \ +static_assert(sizeof(WBP_MapScreen_C_OnFocusLost) == 0x000008, "Wrong size on WBP_MapScreen_C_OnFocusLost"); \ +static_assert(offsetof(WBP_MapScreen_C_OnFocusLost, InFocusEvent) == 0x000000, "Member 'WBP_MapScreen_C_OnFocusLost::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapScreen_C_UpdateAchivementCounters \ +static_assert(alignof(WBP_MapScreen_C_UpdateAchivementCounters) == 0x000008, "Wrong alignment on WBP_MapScreen_C_UpdateAchivementCounters"); \ +static_assert(sizeof(WBP_MapScreen_C_UpdateAchivementCounters) == 0x000048, "Wrong size on WBP_MapScreen_C_UpdateAchivementCounters"); \ +static_assert(offsetof(WBP_MapScreen_C_UpdateAchivementCounters, CallFunc_GetFormattedText_ReturnValue) == 0x000000, "Member 'WBP_MapScreen_C_UpdateAchivementCounters::CallFunc_GetFormattedText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_UpdateAchivementCounters, CallFunc_GetFormattedText_ReturnValue_1) == 0x000018, "Member 'WBP_MapScreen_C_UpdateAchivementCounters::CallFunc_GetFormattedText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapScreen_C_UpdateAchivementCounters, CallFunc_GetFormattedText_ReturnValue_2) == 0x000030, "Member 'WBP_MapScreen_C_UpdateAchivementCounters::CallFunc_GetFormattedText_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MapScreen_C \ +static_assert(alignof(UWBP_MapScreen_C) == 0x000008, "Wrong alignment on UWBP_MapScreen_C"); \ +static_assert(sizeof(UWBP_MapScreen_C) == 0x000568, "Wrong size on UWBP_MapScreen_C"); \ +static_assert(offsetof(UWBP_MapScreen_C, UberGraphFrame) == 0x000518, "Member 'UWBP_MapScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, CamarillaIcon) == 0x000520, "Member 'UWBP_MapScreen_C::CamarillaIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, CamarillaText) == 0x000528, "Member 'UWBP_MapScreen_C::CamarillaText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, CameraIcon) == 0x000530, "Member 'UWBP_MapScreen_C::CameraIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, CameraText) == 0x000538, "Member 'UWBP_MapScreen_C::CameraText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, DivLine) == 0x000540, "Member 'UWBP_MapScreen_C::DivLine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, GrafittiIcon) == 0x000548, "Member 'UWBP_MapScreen_C::GrafittiIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, GrafittiIText) == 0x000550, "Member 'UWBP_MapScreen_C::GrafittiIText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, MapInputsLegend) == 0x000558, "Member 'UWBP_MapScreen_C::MapInputsLegend' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapScreen_C, PT_Menu_TabID) == 0x000560, "Member 'UWBP_MapScreen_C::PT_Menu_TabID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFOscillator \ +static_assert(alignof(FFOscillator) == 0x000004, "Wrong alignment on FFOscillator"); \ +static_assert(sizeof(FFOscillator) == 0x00000C, "Wrong size on FFOscillator"); \ +static_assert(offsetof(FFOscillator, Amplitude) == 0x000000, "Member 'FFOscillator::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FFOscillator, Frequency) == 0x000004, "Member 'FFOscillator::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FFOscillator, InitialOffset) == 0x000008, "Member 'FFOscillator::InitialOffset' has a wrong offset!"); \ +static_assert(offsetof(FFOscillator, Waveform) == 0x000009, "Member 'FFOscillator::Waveform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FROscillator \ +static_assert(alignof(FROscillator) == 0x000004, "Wrong alignment on FROscillator"); \ +static_assert(sizeof(FROscillator) == 0x000024, "Wrong size on FROscillator"); \ +static_assert(offsetof(FROscillator, Pitch) == 0x000000, "Member 'FROscillator::Pitch' has a wrong offset!"); \ +static_assert(offsetof(FROscillator, Yaw) == 0x00000C, "Member 'FROscillator::Yaw' has a wrong offset!"); \ +static_assert(offsetof(FROscillator, Roll) == 0x000018, "Member 'FROscillator::Roll' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVOscillator \ +static_assert(alignof(FVOscillator) == 0x000004, "Wrong alignment on FVOscillator"); \ +static_assert(sizeof(FVOscillator) == 0x000024, "Wrong size on FVOscillator"); \ +static_assert(offsetof(FVOscillator, X) == 0x000000, "Member 'FVOscillator::X' has a wrong offset!"); \ +static_assert(offsetof(FVOscillator, Y) == 0x00000C, "Member 'FVOscillator::Y' has a wrong offset!"); \ +static_assert(offsetof(FVOscillator, Z) == 0x000018, "Member 'FVOscillator::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraAnimationParams \ +static_assert(alignof(FCameraAnimationParams) == 0x000008, "Wrong alignment on FCameraAnimationParams"); \ +static_assert(sizeof(FCameraAnimationParams) == 0x000048, "Wrong size on FCameraAnimationParams"); \ +static_assert(offsetof(FCameraAnimationParams, PlayRate) == 0x000000, "Member 'FCameraAnimationParams::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, Scale) == 0x000004, "Member 'FCameraAnimationParams::Scale' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, EaseInType) == 0x000008, "Member 'FCameraAnimationParams::EaseInType' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, EaseInDuration) == 0x00000C, "Member 'FCameraAnimationParams::EaseInDuration' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, EaseOutType) == 0x000010, "Member 'FCameraAnimationParams::EaseOutType' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, EaseOutDuration) == 0x000014, "Member 'FCameraAnimationParams::EaseOutDuration' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, bLoop) == 0x000018, "Member 'FCameraAnimationParams::bLoop' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, StartOffset) == 0x00001C, "Member 'FCameraAnimationParams::StartOffset' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, bRandomStartTime) == 0x000020, "Member 'FCameraAnimationParams::bRandomStartTime' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, DurationOverride) == 0x000024, "Member 'FCameraAnimationParams::DurationOverride' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, PlaySpace) == 0x000028, "Member 'FCameraAnimationParams::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(FCameraAnimationParams, UserPlaySpaceRot) == 0x000030, "Member 'FCameraAnimationParams::UserPlaySpaceRot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCameraAnimationHandle \ +static_assert(alignof(FCameraAnimationHandle) == 0x000002, "Wrong alignment on FCameraAnimationHandle"); \ +static_assert(sizeof(FCameraAnimationHandle) == 0x000004, "Wrong size on FCameraAnimationHandle"); \ + +#define DUMPER7_ASSERTS_FActiveCameraAnimationInfo \ +static_assert(alignof(FActiveCameraAnimationInfo) == 0x000008, "Wrong alignment on FActiveCameraAnimationInfo"); \ +static_assert(sizeof(FActiveCameraAnimationInfo) == 0x000078, "Wrong size on FActiveCameraAnimationInfo"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, Sequence) == 0x000000, "Member 'FActiveCameraAnimationInfo::Sequence' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, Params) == 0x000008, "Member 'FActiveCameraAnimationInfo::Params' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, Handle) == 0x000050, "Member 'FActiveCameraAnimationInfo::Handle' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, Player) == 0x000058, "Member 'FActiveCameraAnimationInfo::Player' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, CameraStandIn) == 0x000060, "Member 'FActiveCameraAnimationInfo::CameraStandIn' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, EaseInCurrentTime) == 0x000068, "Member 'FActiveCameraAnimationInfo::EaseInCurrentTime' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, EaseOutCurrentTime) == 0x00006C, "Member 'FActiveCameraAnimationInfo::EaseOutCurrentTime' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, bIsEasingIn) == 0x000070, "Member 'FActiveCameraAnimationInfo::bIsEasingIn' has a wrong offset!"); \ +static_assert(offsetof(FActiveCameraAnimationInfo, bIsEasingOut) == 0x000071, "Member 'FActiveCameraAnimationInfo::bIsEasingOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerlinNoiseShaker \ +static_assert(alignof(FPerlinNoiseShaker) == 0x000004, "Wrong alignment on FPerlinNoiseShaker"); \ +static_assert(sizeof(FPerlinNoiseShaker) == 0x000008, "Wrong size on FPerlinNoiseShaker"); \ +static_assert(offsetof(FPerlinNoiseShaker, Amplitude) == 0x000000, "Member 'FPerlinNoiseShaker::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FPerlinNoiseShaker, Frequency) == 0x000004, "Member 'FPerlinNoiseShaker::Frequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWaveOscillator \ +static_assert(alignof(FWaveOscillator) == 0x000004, "Wrong alignment on FWaveOscillator"); \ +static_assert(sizeof(FWaveOscillator) == 0x00000C, "Wrong size on FWaveOscillator"); \ +static_assert(offsetof(FWaveOscillator, Amplitude) == 0x000000, "Member 'FWaveOscillator::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FWaveOscillator, Frequency) == 0x000004, "Member 'FWaveOscillator::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FWaveOscillator, InitialOffsetType) == 0x000008, "Member 'FWaveOscillator::InitialOffsetType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_StartLegacyCameraShake \ +static_assert(alignof(LegacyCameraShake_StartLegacyCameraShake) == 0x000008, "Wrong alignment on LegacyCameraShake_StartLegacyCameraShake"); \ +static_assert(sizeof(LegacyCameraShake_StartLegacyCameraShake) == 0x000038, "Wrong size on LegacyCameraShake_StartLegacyCameraShake"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, PlayerCameraManager) == 0x000000, "Member 'LegacyCameraShake_StartLegacyCameraShake::PlayerCameraManager' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, ShakeClass) == 0x000008, "Member 'LegacyCameraShake_StartLegacyCameraShake::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, Scale) == 0x000010, "Member 'LegacyCameraShake_StartLegacyCameraShake::Scale' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, PlaySpace) == 0x000014, "Member 'LegacyCameraShake_StartLegacyCameraShake::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, UserPlaySpaceRot) == 0x000018, "Member 'LegacyCameraShake_StartLegacyCameraShake::UserPlaySpaceRot' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShake, ReturnValue) == 0x000030, "Member 'LegacyCameraShake_StartLegacyCameraShake::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_StartLegacyCameraShakeFromSource \ +static_assert(alignof(LegacyCameraShake_StartLegacyCameraShakeFromSource) == 0x000008, "Wrong alignment on LegacyCameraShake_StartLegacyCameraShakeFromSource"); \ +static_assert(sizeof(LegacyCameraShake_StartLegacyCameraShakeFromSource) == 0x000040, "Wrong size on LegacyCameraShake_StartLegacyCameraShakeFromSource"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, PlayerCameraManager) == 0x000000, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::PlayerCameraManager' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, ShakeClass) == 0x000008, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::ShakeClass' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, SourceComponent) == 0x000010, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::SourceComponent' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, Scale) == 0x000018, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::Scale' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, PlaySpace) == 0x00001C, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::PlaySpace' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, UserPlaySpaceRot) == 0x000020, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::UserPlaySpaceRot' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_StartLegacyCameraShakeFromSource, ReturnValue) == 0x000038, "Member 'LegacyCameraShake_StartLegacyCameraShakeFromSource::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_BlueprintUpdateCameraShake \ +static_assert(alignof(LegacyCameraShake_BlueprintUpdateCameraShake) == 0x000010, "Wrong alignment on LegacyCameraShake_BlueprintUpdateCameraShake"); \ +static_assert(sizeof(LegacyCameraShake_BlueprintUpdateCameraShake) == 0x000FB0, "Wrong size on LegacyCameraShake_BlueprintUpdateCameraShake"); \ +static_assert(offsetof(LegacyCameraShake_BlueprintUpdateCameraShake, DeltaTime) == 0x000000, "Member 'LegacyCameraShake_BlueprintUpdateCameraShake::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_BlueprintUpdateCameraShake, alpha) == 0x000004, "Member 'LegacyCameraShake_BlueprintUpdateCameraShake::alpha' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_BlueprintUpdateCameraShake, POV) == 0x000010, "Member 'LegacyCameraShake_BlueprintUpdateCameraShake::POV' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShake_BlueprintUpdateCameraShake, ModifiedPOV) == 0x0007E0, "Member 'LegacyCameraShake_BlueprintUpdateCameraShake::ModifiedPOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_ReceivePlayShake \ +static_assert(alignof(LegacyCameraShake_ReceivePlayShake) == 0x000004, "Wrong alignment on LegacyCameraShake_ReceivePlayShake"); \ +static_assert(sizeof(LegacyCameraShake_ReceivePlayShake) == 0x000004, "Wrong size on LegacyCameraShake_ReceivePlayShake"); \ +static_assert(offsetof(LegacyCameraShake_ReceivePlayShake, Scale) == 0x000000, "Member 'LegacyCameraShake_ReceivePlayShake::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_ReceiveStopShake \ +static_assert(alignof(LegacyCameraShake_ReceiveStopShake) == 0x000001, "Wrong alignment on LegacyCameraShake_ReceiveStopShake"); \ +static_assert(sizeof(LegacyCameraShake_ReceiveStopShake) == 0x000001, "Wrong size on LegacyCameraShake_ReceiveStopShake"); \ +static_assert(offsetof(LegacyCameraShake_ReceiveStopShake, bImmediately) == 0x000000, "Member 'LegacyCameraShake_ReceiveStopShake::bImmediately' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShake_ReceiveIsFinished \ +static_assert(alignof(LegacyCameraShake_ReceiveIsFinished) == 0x000001, "Wrong alignment on LegacyCameraShake_ReceiveIsFinished"); \ +static_assert(sizeof(LegacyCameraShake_ReceiveIsFinished) == 0x000001, "Wrong size on LegacyCameraShake_ReceiveIsFinished"); \ +static_assert(offsetof(LegacyCameraShake_ReceiveIsFinished, ReturnValue) == 0x000000, "Member 'LegacyCameraShake_ReceiveIsFinished::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULegacyCameraShake \ +static_assert(alignof(ULegacyCameraShake) == 0x000010, "Wrong alignment on ULegacyCameraShake"); \ +static_assert(sizeof(ULegacyCameraShake) == 0x0001F0, "Wrong size on ULegacyCameraShake"); \ +static_assert(offsetof(ULegacyCameraShake, OscillationDuration) == 0x0000D8, "Member 'ULegacyCameraShake::OscillationDuration' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, OscillationBlendInTime) == 0x0000DC, "Member 'ULegacyCameraShake::OscillationBlendInTime' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, OscillationBlendOutTime) == 0x0000E0, "Member 'ULegacyCameraShake::OscillationBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, RotOscillation) == 0x0000E4, "Member 'ULegacyCameraShake::RotOscillation' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, LocOscillation) == 0x000108, "Member 'ULegacyCameraShake::LocOscillation' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, FOVOscillation) == 0x00012C, "Member 'ULegacyCameraShake::FOVOscillation' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, AnimPlayRate) == 0x000138, "Member 'ULegacyCameraShake::AnimPlayRate' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, AnimScale) == 0x00013C, "Member 'ULegacyCameraShake::AnimScale' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, AnimBlendInTime) == 0x000140, "Member 'ULegacyCameraShake::AnimBlendInTime' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, AnimBlendOutTime) == 0x000144, "Member 'ULegacyCameraShake::AnimBlendOutTime' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, RandomAnimSegmentDuration) == 0x000148, "Member 'ULegacyCameraShake::RandomAnimSegmentDuration' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, AnimSequence) == 0x000150, "Member 'ULegacyCameraShake::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, OscillatorTimeRemaining) == 0x00015C, "Member 'ULegacyCameraShake::OscillatorTimeRemaining' has a wrong offset!"); \ +static_assert(offsetof(ULegacyCameraShake, SequenceShakePattern) == 0x0001D0, "Member 'ULegacyCameraShake::SequenceShakePattern' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULegacyCameraShakePattern \ +static_assert(alignof(ULegacyCameraShakePattern) == 0x000008, "Wrong alignment on ULegacyCameraShakePattern"); \ +static_assert(sizeof(ULegacyCameraShakePattern) == 0x000028, "Wrong size on ULegacyCameraShakePattern"); \ + +#define DUMPER7_ASSERTS_LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake \ +static_assert(alignof(LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake) == 0x000008, "Wrong alignment on LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake"); \ +static_assert(sizeof(LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake) == 0x000010, "Wrong size on LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake"); \ +static_assert(offsetof(LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake, CameraShake) == 0x000000, "Member 'LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake::CameraShake' has a wrong offset!"); \ +static_assert(offsetof(LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake, ReturnValue) == 0x000008, "Member 'LegacyCameraShakeFunctionLibrary_Conv_LegacyCameraShake::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULegacyCameraShakeFunctionLibrary \ +static_assert(alignof(ULegacyCameraShakeFunctionLibrary) == 0x000008, "Wrong alignment on ULegacyCameraShakeFunctionLibrary"); \ +static_assert(sizeof(ULegacyCameraShakeFunctionLibrary) == 0x000028, "Wrong size on ULegacyCameraShakeFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_GetCameraAnimationCameraModifier \ +static_assert(alignof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifier) == 0x000008, "Wrong alignment on CameraAnimationCameraModifier_GetCameraAnimationCameraModifier"); \ +static_assert(sizeof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifier) == 0x000018, "Wrong size on CameraAnimationCameraModifier_GetCameraAnimationCameraModifier"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifier, WorldContextObject) == 0x000000, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifier::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifier, PlayerIndex) == 0x000008, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifier::PlayerIndex' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifier, ReturnValue) == 0x000010, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID \ +static_assert(alignof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID) == 0x000008, "Wrong alignment on CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID"); \ +static_assert(sizeof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID) == 0x000018, "Wrong size on CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID, WorldContextObject) == 0x000000, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID, ControllerId) == 0x000008, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID::ControllerId' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID, ReturnValue) == 0x000010, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController \ +static_assert(alignof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController) == 0x000008, "Wrong alignment on CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController"); \ +static_assert(sizeof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController) == 0x000010, "Wrong size on CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController, PlayerController) == 0x000000, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController, ReturnValue) == 0x000008, "Member 'CameraAnimationCameraModifier_GetCameraAnimationCameraModifierFromPlayerController::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_PlayCameraAnimation \ +static_assert(alignof(CameraAnimationCameraModifier_PlayCameraAnimation) == 0x000008, "Wrong alignment on CameraAnimationCameraModifier_PlayCameraAnimation"); \ +static_assert(sizeof(CameraAnimationCameraModifier_PlayCameraAnimation) == 0x000058, "Wrong size on CameraAnimationCameraModifier_PlayCameraAnimation"); \ +static_assert(offsetof(CameraAnimationCameraModifier_PlayCameraAnimation, Sequence) == 0x000000, "Member 'CameraAnimationCameraModifier_PlayCameraAnimation::Sequence' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_PlayCameraAnimation, Params_0) == 0x000008, "Member 'CameraAnimationCameraModifier_PlayCameraAnimation::Params_0' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_PlayCameraAnimation, ReturnValue) == 0x000050, "Member 'CameraAnimationCameraModifier_PlayCameraAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_StopAllCameraAnimations \ +static_assert(alignof(CameraAnimationCameraModifier_StopAllCameraAnimations) == 0x000001, "Wrong alignment on CameraAnimationCameraModifier_StopAllCameraAnimations"); \ +static_assert(sizeof(CameraAnimationCameraModifier_StopAllCameraAnimations) == 0x000001, "Wrong size on CameraAnimationCameraModifier_StopAllCameraAnimations"); \ +static_assert(offsetof(CameraAnimationCameraModifier_StopAllCameraAnimations, bImmediate) == 0x000000, "Member 'CameraAnimationCameraModifier_StopAllCameraAnimations::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_StopAllCameraAnimationsOf \ +static_assert(alignof(CameraAnimationCameraModifier_StopAllCameraAnimationsOf) == 0x000008, "Wrong alignment on CameraAnimationCameraModifier_StopAllCameraAnimationsOf"); \ +static_assert(sizeof(CameraAnimationCameraModifier_StopAllCameraAnimationsOf) == 0x000010, "Wrong size on CameraAnimationCameraModifier_StopAllCameraAnimationsOf"); \ +static_assert(offsetof(CameraAnimationCameraModifier_StopAllCameraAnimationsOf, Sequence) == 0x000000, "Member 'CameraAnimationCameraModifier_StopAllCameraAnimationsOf::Sequence' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_StopAllCameraAnimationsOf, bImmediate) == 0x000008, "Member 'CameraAnimationCameraModifier_StopAllCameraAnimationsOf::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_StopCameraAnimation \ +static_assert(alignof(CameraAnimationCameraModifier_StopCameraAnimation) == 0x000002, "Wrong alignment on CameraAnimationCameraModifier_StopCameraAnimation"); \ +static_assert(sizeof(CameraAnimationCameraModifier_StopCameraAnimation) == 0x000006, "Wrong size on CameraAnimationCameraModifier_StopCameraAnimation"); \ +static_assert(offsetof(CameraAnimationCameraModifier_StopCameraAnimation, Handle) == 0x000000, "Member 'CameraAnimationCameraModifier_StopCameraAnimation::Handle' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_StopCameraAnimation, bImmediate) == 0x000004, "Member 'CameraAnimationCameraModifier_StopCameraAnimation::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CameraAnimationCameraModifier_IsCameraAnimationActive \ +static_assert(alignof(CameraAnimationCameraModifier_IsCameraAnimationActive) == 0x000002, "Wrong alignment on CameraAnimationCameraModifier_IsCameraAnimationActive"); \ +static_assert(sizeof(CameraAnimationCameraModifier_IsCameraAnimationActive) == 0x000006, "Wrong size on CameraAnimationCameraModifier_IsCameraAnimationActive"); \ +static_assert(offsetof(CameraAnimationCameraModifier_IsCameraAnimationActive, Handle) == 0x000000, "Member 'CameraAnimationCameraModifier_IsCameraAnimationActive::Handle' has a wrong offset!"); \ +static_assert(offsetof(CameraAnimationCameraModifier_IsCameraAnimationActive, ReturnValue) == 0x000004, "Member 'CameraAnimationCameraModifier_IsCameraAnimationActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraAnimationCameraModifier \ +static_assert(alignof(UCameraAnimationCameraModifier) == 0x000008, "Wrong alignment on UCameraAnimationCameraModifier"); \ +static_assert(sizeof(UCameraAnimationCameraModifier) == 0x000060, "Wrong size on UCameraAnimationCameraModifier"); \ +static_assert(offsetof(UCameraAnimationCameraModifier, ActiveAnimations) == 0x000048, "Member 'UCameraAnimationCameraModifier::ActiveAnimations' has a wrong offset!"); \ +static_assert(offsetof(UCameraAnimationCameraModifier, NextInstanceSerialNumber) == 0x000058, "Member 'UCameraAnimationCameraModifier::NextInstanceSerialNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier \ +static_assert(alignof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier) == 0x000008, "Wrong alignment on GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier"); \ +static_assert(sizeof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier) == 0x000010, "Wrong size on GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier, PlayerCameraManager) == 0x000000, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier::PlayerCameraManager' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier, ReturnValue) == 0x000008, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraAnimationCameraModifier::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace \ +static_assert(alignof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace) == 0x000001, "Wrong alignment on GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace"); \ +static_assert(sizeof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace) == 0x000002, "Wrong size on GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace, CameraShakePlaySpace) == 0x000000, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace::CameraShakePlaySpace' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace, ReturnValue) == 0x000001, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraAnimationPlaySpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace \ +static_assert(alignof(GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace) == 0x000001, "Wrong alignment on GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace"); \ +static_assert(sizeof(GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace) == 0x000002, "Wrong size on GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace, CameraAnimationPlaySpace) == 0x000000, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace::CameraAnimationPlaySpace' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace, ReturnValue) == 0x000001, "Member 'GameplayCamerasFunctionLibrary_Conv_CameraShakePlaySpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCamerasFunctionLibrary \ +static_assert(alignof(UGameplayCamerasFunctionLibrary) == 0x000008, "Wrong alignment on UGameplayCamerasFunctionLibrary"); \ +static_assert(sizeof(UGameplayCamerasFunctionLibrary) == 0x000028, "Wrong size on UGameplayCamerasFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_UCompositeCameraShakePattern \ +static_assert(alignof(UCompositeCameraShakePattern) == 0x000008, "Wrong alignment on UCompositeCameraShakePattern"); \ +static_assert(sizeof(UCompositeCameraShakePattern) == 0x000038, "Wrong size on UCompositeCameraShakePattern"); \ +static_assert(offsetof(UCompositeCameraShakePattern, ChildPatterns) == 0x000028, "Member 'UCompositeCameraShakePattern::ChildPatterns' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDefaultCameraShakeBase \ +static_assert(alignof(UDefaultCameraShakeBase) == 0x000010, "Wrong alignment on UDefaultCameraShakeBase"); \ +static_assert(sizeof(UDefaultCameraShakeBase) == 0x0000E0, "Wrong size on UDefaultCameraShakeBase"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasSubsystem_PlayCameraAnimation \ +static_assert(alignof(GameplayCamerasSubsystem_PlayCameraAnimation) == 0x000008, "Wrong alignment on GameplayCamerasSubsystem_PlayCameraAnimation"); \ +static_assert(sizeof(GameplayCamerasSubsystem_PlayCameraAnimation) == 0x000060, "Wrong size on GameplayCamerasSubsystem_PlayCameraAnimation"); \ +static_assert(offsetof(GameplayCamerasSubsystem_PlayCameraAnimation, PlayerController) == 0x000000, "Member 'GameplayCamerasSubsystem_PlayCameraAnimation::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_PlayCameraAnimation, Sequence) == 0x000008, "Member 'GameplayCamerasSubsystem_PlayCameraAnimation::Sequence' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_PlayCameraAnimation, Params_0) == 0x000010, "Member 'GameplayCamerasSubsystem_PlayCameraAnimation::Params_0' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_PlayCameraAnimation, ReturnValue) == 0x000058, "Member 'GameplayCamerasSubsystem_PlayCameraAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasSubsystem_StopAllCameraAnimations \ +static_assert(alignof(GameplayCamerasSubsystem_StopAllCameraAnimations) == 0x000008, "Wrong alignment on GameplayCamerasSubsystem_StopAllCameraAnimations"); \ +static_assert(sizeof(GameplayCamerasSubsystem_StopAllCameraAnimations) == 0x000010, "Wrong size on GameplayCamerasSubsystem_StopAllCameraAnimations"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopAllCameraAnimations, PlayerController) == 0x000000, "Member 'GameplayCamerasSubsystem_StopAllCameraAnimations::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopAllCameraAnimations, bImmediate) == 0x000008, "Member 'GameplayCamerasSubsystem_StopAllCameraAnimations::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasSubsystem_StopAllCameraAnimationsOf \ +static_assert(alignof(GameplayCamerasSubsystem_StopAllCameraAnimationsOf) == 0x000008, "Wrong alignment on GameplayCamerasSubsystem_StopAllCameraAnimationsOf"); \ +static_assert(sizeof(GameplayCamerasSubsystem_StopAllCameraAnimationsOf) == 0x000018, "Wrong size on GameplayCamerasSubsystem_StopAllCameraAnimationsOf"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopAllCameraAnimationsOf, PlayerController) == 0x000000, "Member 'GameplayCamerasSubsystem_StopAllCameraAnimationsOf::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopAllCameraAnimationsOf, Sequence) == 0x000008, "Member 'GameplayCamerasSubsystem_StopAllCameraAnimationsOf::Sequence' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopAllCameraAnimationsOf, bImmediate) == 0x000010, "Member 'GameplayCamerasSubsystem_StopAllCameraAnimationsOf::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasSubsystem_StopCameraAnimation \ +static_assert(alignof(GameplayCamerasSubsystem_StopCameraAnimation) == 0x000008, "Wrong alignment on GameplayCamerasSubsystem_StopCameraAnimation"); \ +static_assert(sizeof(GameplayCamerasSubsystem_StopCameraAnimation) == 0x000010, "Wrong size on GameplayCamerasSubsystem_StopCameraAnimation"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopCameraAnimation, PlayerController) == 0x000000, "Member 'GameplayCamerasSubsystem_StopCameraAnimation::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopCameraAnimation, Handle) == 0x000008, "Member 'GameplayCamerasSubsystem_StopCameraAnimation::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_StopCameraAnimation, bImmediate) == 0x00000C, "Member 'GameplayCamerasSubsystem_StopCameraAnimation::bImmediate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayCamerasSubsystem_IsCameraAnimationActive \ +static_assert(alignof(GameplayCamerasSubsystem_IsCameraAnimationActive) == 0x000008, "Wrong alignment on GameplayCamerasSubsystem_IsCameraAnimationActive"); \ +static_assert(sizeof(GameplayCamerasSubsystem_IsCameraAnimationActive) == 0x000010, "Wrong size on GameplayCamerasSubsystem_IsCameraAnimationActive"); \ +static_assert(offsetof(GameplayCamerasSubsystem_IsCameraAnimationActive, PlayerController) == 0x000000, "Member 'GameplayCamerasSubsystem_IsCameraAnimationActive::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_IsCameraAnimationActive, Handle) == 0x000008, "Member 'GameplayCamerasSubsystem_IsCameraAnimationActive::Handle' has a wrong offset!"); \ +static_assert(offsetof(GameplayCamerasSubsystem_IsCameraAnimationActive, ReturnValue) == 0x00000C, "Member 'GameplayCamerasSubsystem_IsCameraAnimationActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayCamerasSubsystem \ +static_assert(alignof(UGameplayCamerasSubsystem) == 0x000008, "Wrong alignment on UGameplayCamerasSubsystem"); \ +static_assert(sizeof(UGameplayCamerasSubsystem) == 0x000030, "Wrong size on UGameplayCamerasSubsystem"); \ + +#define DUMPER7_ASSERTS_USimpleCameraShakePattern \ +static_assert(alignof(USimpleCameraShakePattern) == 0x000008, "Wrong alignment on USimpleCameraShakePattern"); \ +static_assert(sizeof(USimpleCameraShakePattern) == 0x000058, "Wrong size on USimpleCameraShakePattern"); \ +static_assert(offsetof(USimpleCameraShakePattern, Duration) == 0x000028, "Member 'USimpleCameraShakePattern::Duration' has a wrong offset!"); \ +static_assert(offsetof(USimpleCameraShakePattern, BlendInTime) == 0x00002C, "Member 'USimpleCameraShakePattern::BlendInTime' has a wrong offset!"); \ +static_assert(offsetof(USimpleCameraShakePattern, BlendOutTime) == 0x000030, "Member 'USimpleCameraShakePattern::BlendOutTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPerlinNoiseCameraShakePattern \ +static_assert(alignof(UPerlinNoiseCameraShakePattern) == 0x000008, "Wrong alignment on UPerlinNoiseCameraShakePattern"); \ +static_assert(sizeof(UPerlinNoiseCameraShakePattern) == 0x0000D8, "Wrong size on UPerlinNoiseCameraShakePattern"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, LocationAmplitudeMultiplier) == 0x000058, "Member 'UPerlinNoiseCameraShakePattern::LocationAmplitudeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, LocationFrequencyMultiplier) == 0x00005C, "Member 'UPerlinNoiseCameraShakePattern::LocationFrequencyMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, X) == 0x000060, "Member 'UPerlinNoiseCameraShakePattern::X' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, Y) == 0x000068, "Member 'UPerlinNoiseCameraShakePattern::Y' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, Z) == 0x000070, "Member 'UPerlinNoiseCameraShakePattern::Z' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, RotationAmplitudeMultiplier) == 0x000078, "Member 'UPerlinNoiseCameraShakePattern::RotationAmplitudeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, RotationFrequencyMultiplier) == 0x00007C, "Member 'UPerlinNoiseCameraShakePattern::RotationFrequencyMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, Pitch) == 0x000080, "Member 'UPerlinNoiseCameraShakePattern::Pitch' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, Yaw) == 0x000088, "Member 'UPerlinNoiseCameraShakePattern::Yaw' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, Roll) == 0x000090, "Member 'UPerlinNoiseCameraShakePattern::Roll' has a wrong offset!"); \ +static_assert(offsetof(UPerlinNoiseCameraShakePattern, FOV) == 0x000098, "Member 'UPerlinNoiseCameraShakePattern::FOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTestCameraShake \ +static_assert(alignof(UTestCameraShake) == 0x000010, "Wrong alignment on UTestCameraShake"); \ +static_assert(sizeof(UTestCameraShake) == 0x0000E0, "Wrong size on UTestCameraShake"); \ + +#define DUMPER7_ASSERTS_UConstantCameraShakePattern \ +static_assert(alignof(UConstantCameraShakePattern) == 0x000008, "Wrong alignment on UConstantCameraShakePattern"); \ +static_assert(sizeof(UConstantCameraShakePattern) == 0x000088, "Wrong size on UConstantCameraShakePattern"); \ +static_assert(offsetof(UConstantCameraShakePattern, LocationOffset) == 0x000058, "Member 'UConstantCameraShakePattern::LocationOffset' has a wrong offset!"); \ +static_assert(offsetof(UConstantCameraShakePattern, RotationOffset) == 0x000070, "Member 'UConstantCameraShakePattern::RotationOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWaveOscillatorCameraShakePattern \ +static_assert(alignof(UWaveOscillatorCameraShakePattern) == 0x000008, "Wrong alignment on UWaveOscillatorCameraShakePattern"); \ +static_assert(sizeof(UWaveOscillatorCameraShakePattern) == 0x0000F8, "Wrong size on UWaveOscillatorCameraShakePattern"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, LocationAmplitudeMultiplier) == 0x000058, "Member 'UWaveOscillatorCameraShakePattern::LocationAmplitudeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, LocationFrequencyMultiplier) == 0x00005C, "Member 'UWaveOscillatorCameraShakePattern::LocationFrequencyMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, X) == 0x000060, "Member 'UWaveOscillatorCameraShakePattern::X' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, Y) == 0x00006C, "Member 'UWaveOscillatorCameraShakePattern::Y' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, Z) == 0x000078, "Member 'UWaveOscillatorCameraShakePattern::Z' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, RotationAmplitudeMultiplier) == 0x000084, "Member 'UWaveOscillatorCameraShakePattern::RotationAmplitudeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, RotationFrequencyMultiplier) == 0x000088, "Member 'UWaveOscillatorCameraShakePattern::RotationFrequencyMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, Pitch) == 0x00008C, "Member 'UWaveOscillatorCameraShakePattern::Pitch' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, Yaw) == 0x000098, "Member 'UWaveOscillatorCameraShakePattern::Yaw' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, Roll) == 0x0000A4, "Member 'UWaveOscillatorCameraShakePattern::Roll' has a wrong offset!"); \ +static_assert(offsetof(UWaveOscillatorCameraShakePattern, FOV) == 0x0000B0, "Member 'UWaveOscillatorCameraShakePattern::FOV' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOodleNetworkTrainerCommandlet \ +static_assert(alignof(UOodleNetworkTrainerCommandlet) == 0x000008, "Wrong alignment on UOodleNetworkTrainerCommandlet"); \ +static_assert(sizeof(UOodleNetworkTrainerCommandlet) == 0x0000A0, "Wrong size on UOodleNetworkTrainerCommandlet"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, bCompressionTest) == 0x000080, "Member 'UOodleNetworkTrainerCommandlet::bCompressionTest' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, bWriteV5Dictionaries) == 0x000081, "Member 'UOodleNetworkTrainerCommandlet::bWriteV5Dictionaries' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, HashTableSize) == 0x000084, "Member 'UOodleNetworkTrainerCommandlet::HashTableSize' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, DictionarySize) == 0x000088, "Member 'UOodleNetworkTrainerCommandlet::DictionarySize' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, DictionaryTrials) == 0x00008C, "Member 'UOodleNetworkTrainerCommandlet::DictionaryTrials' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, TrialRandomness) == 0x000090, "Member 'UOodleNetworkTrainerCommandlet::TrialRandomness' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, TrialGenerations) == 0x000094, "Member 'UOodleNetworkTrainerCommandlet::TrialGenerations' has a wrong offset!"); \ +static_assert(offsetof(UOodleNetworkTrainerCommandlet, bNoTrials) == 0x000098, "Member 'UOodleNetworkTrainerCommandlet::bNoTrials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationSetup \ +static_assert(alignof(FAnimationSetup) == 0x000008, "Wrong alignment on FAnimationSetup"); \ +static_assert(sizeof(FAnimationSetup) == 0x000018, "Wrong size on FAnimationSetup"); \ +static_assert(offsetof(FAnimationSetup, AnimSequence) == 0x000000, "Member 'FAnimationSetup::AnimSequence' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSetup, AnimBlueprint) == 0x000008, "Member 'FAnimationSetup::AnimBlueprint' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSetup, NumRandomizedInstances) == 0x000010, "Member 'FAnimationSetup::NumRandomizedInstances' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSetup, Enabled) == 0x000014, "Member 'FAnimationSetup::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationStateEntry \ +static_assert(alignof(FAnimationStateEntry) == 0x000008, "Wrong alignment on FAnimationStateEntry"); \ +static_assert(sizeof(FAnimationStateEntry) == 0x000030, "Wrong size on FAnimationStateEntry"); \ +static_assert(offsetof(FAnimationStateEntry, State) == 0x000000, "Member 'FAnimationStateEntry::State' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, AnimationSetups) == 0x000008, "Member 'FAnimationStateEntry::AnimationSetups' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, bOnDemand) == 0x000018, "Member 'FAnimationStateEntry::bOnDemand' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, bAdditive) == 0x000019, "Member 'FAnimationStateEntry::bAdditive' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, BlendTime) == 0x00001C, "Member 'FAnimationStateEntry::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, bReturnToPreviousState) == 0x000020, "Member 'FAnimationStateEntry::bReturnToPreviousState' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, bSetNextState) == 0x000021, "Member 'FAnimationStateEntry::bSetNextState' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, NextState) == 0x000022, "Member 'FAnimationStateEntry::NextState' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, MaximumNumberOfConcurrentInstances) == 0x000024, "Member 'FAnimationStateEntry::MaximumNumberOfConcurrentInstances' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, WiggleTimePercentage) == 0x000028, "Member 'FAnimationStateEntry::WiggleTimePercentage' has a wrong offset!"); \ +static_assert(offsetof(FAnimationStateEntry, bRequiresCurves) == 0x00002C, "Member 'FAnimationStateEntry::bRequiresCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerSkeletonAnimationSharingSetup \ +static_assert(alignof(FPerSkeletonAnimationSharingSetup) == 0x000008, "Wrong alignment on FPerSkeletonAnimationSharingSetup"); \ +static_assert(sizeof(FPerSkeletonAnimationSharingSetup) == 0x000038, "Wrong size on FPerSkeletonAnimationSharingSetup"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, Skeleton) == 0x000000, "Member 'FPerSkeletonAnimationSharingSetup::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, SkeletalMesh) == 0x000008, "Member 'FPerSkeletonAnimationSharingSetup::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, BlendAnimBlueprint) == 0x000010, "Member 'FPerSkeletonAnimationSharingSetup::BlendAnimBlueprint' has a wrong offset!"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, AdditiveAnimBlueprint) == 0x000018, "Member 'FPerSkeletonAnimationSharingSetup::AdditiveAnimBlueprint' has a wrong offset!"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, StateProcessorClass) == 0x000020, "Member 'FPerSkeletonAnimationSharingSetup::StateProcessorClass' has a wrong offset!"); \ +static_assert(offsetof(FPerSkeletonAnimationSharingSetup, AnimationStates) == 0x000028, "Member 'FPerSkeletonAnimationSharingSetup::AnimationStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAnimationSharingScalability \ +static_assert(alignof(FAnimationSharingScalability) == 0x000004, "Wrong alignment on FAnimationSharingScalability"); \ +static_assert(sizeof(FAnimationSharingScalability) == 0x000010, "Wrong size on FAnimationSharingScalability"); \ +static_assert(offsetof(FAnimationSharingScalability, UseBlendTransitions) == 0x000000, "Member 'FAnimationSharingScalability::UseBlendTransitions' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSharingScalability, BlendSignificanceValue) == 0x000004, "Member 'FAnimationSharingScalability::BlendSignificanceValue' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSharingScalability, MaximumNumberConcurrentBlends) == 0x000008, "Member 'FAnimationSharingScalability::MaximumNumberConcurrentBlends' has a wrong offset!"); \ +static_assert(offsetof(FAnimationSharingScalability, TickSignificanceValue) == 0x00000C, "Member 'FAnimationSharingScalability::TickSignificanceValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTickAnimationSharingFunction \ +static_assert(alignof(FTickAnimationSharingFunction) == 0x000008, "Wrong alignment on FTickAnimationSharingFunction"); \ +static_assert(sizeof(FTickAnimationSharingFunction) == 0x000030, "Wrong size on FTickAnimationSharingFunction"); \ + +#define DUMPER7_ASSERTS_AnimationSharingStateProcessor_GetAnimationStateEnum \ +static_assert(alignof(AnimationSharingStateProcessor_GetAnimationStateEnum) == 0x000008, "Wrong alignment on AnimationSharingStateProcessor_GetAnimationStateEnum"); \ +static_assert(sizeof(AnimationSharingStateProcessor_GetAnimationStateEnum) == 0x000008, "Wrong size on AnimationSharingStateProcessor_GetAnimationStateEnum"); \ +static_assert(offsetof(AnimationSharingStateProcessor_GetAnimationStateEnum, ReturnValue) == 0x000000, "Member 'AnimationSharingStateProcessor_GetAnimationStateEnum::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationSharingStateProcessor_ProcessActorState \ +static_assert(alignof(AnimationSharingStateProcessor_ProcessActorState) == 0x000008, "Wrong alignment on AnimationSharingStateProcessor_ProcessActorState"); \ +static_assert(sizeof(AnimationSharingStateProcessor_ProcessActorState) == 0x000018, "Wrong size on AnimationSharingStateProcessor_ProcessActorState"); \ +static_assert(offsetof(AnimationSharingStateProcessor_ProcessActorState, OutState) == 0x000000, "Member 'AnimationSharingStateProcessor_ProcessActorState::OutState' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingStateProcessor_ProcessActorState, InActor) == 0x000008, "Member 'AnimationSharingStateProcessor_ProcessActorState::InActor' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingStateProcessor_ProcessActorState, CurrentState) == 0x000010, "Member 'AnimationSharingStateProcessor_ProcessActorState::CurrentState' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingStateProcessor_ProcessActorState, OnDemandState) == 0x000011, "Member 'AnimationSharingStateProcessor_ProcessActorState::OnDemandState' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingStateProcessor_ProcessActorState, bShouldProcess) == 0x000012, "Member 'AnimationSharingStateProcessor_ProcessActorState::bShouldProcess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationSharingStateProcessor \ +static_assert(alignof(UAnimationSharingStateProcessor) == 0x000008, "Wrong alignment on UAnimationSharingStateProcessor"); \ +static_assert(sizeof(UAnimationSharingStateProcessor) == 0x000050, "Wrong size on UAnimationSharingStateProcessor"); \ +static_assert(offsetof(UAnimationSharingStateProcessor, AnimationStateEnum) == 0x000028, "Member 'UAnimationSharingStateProcessor::AnimationStateEnum' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimSharingStateInstance_GetInstancedActors \ +static_assert(alignof(AnimSharingStateInstance_GetInstancedActors) == 0x000008, "Wrong alignment on AnimSharingStateInstance_GetInstancedActors"); \ +static_assert(sizeof(AnimSharingStateInstance_GetInstancedActors) == 0x000010, "Wrong size on AnimSharingStateInstance_GetInstancedActors"); \ +static_assert(offsetof(AnimSharingStateInstance_GetInstancedActors, Actors) == 0x000000, "Member 'AnimSharingStateInstance_GetInstancedActors::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSharingStateInstance \ +static_assert(alignof(UAnimSharingStateInstance) == 0x000010, "Wrong alignment on UAnimSharingStateInstance"); \ +static_assert(sizeof(UAnimSharingStateInstance) == 0x000370, "Wrong size on UAnimSharingStateInstance"); \ +static_assert(offsetof(UAnimSharingStateInstance, AnimationToPlay) == 0x000348, "Member 'UAnimSharingStateInstance::AnimationToPlay' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingStateInstance, PermutationTimeOffset) == 0x000350, "Member 'UAnimSharingStateInstance::PermutationTimeOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingStateInstance, PlayRate) == 0x000354, "Member 'UAnimSharingStateInstance::PlayRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingStateInstance, bStateBool) == 0x000358, "Member 'UAnimSharingStateInstance::bStateBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingStateInstance, Instance) == 0x000360, "Member 'UAnimSharingStateInstance::Instance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSharingTransitionInstance \ +static_assert(alignof(UAnimSharingTransitionInstance) == 0x000010, "Wrong alignment on UAnimSharingTransitionInstance"); \ +static_assert(sizeof(UAnimSharingTransitionInstance) == 0x000360, "Wrong size on UAnimSharingTransitionInstance"); \ +static_assert(offsetof(UAnimSharingTransitionInstance, FromComponent) == 0x000348, "Member 'UAnimSharingTransitionInstance::FromComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingTransitionInstance, ToComponent) == 0x000350, "Member 'UAnimSharingTransitionInstance::ToComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingTransitionInstance, BlendTime) == 0x000358, "Member 'UAnimSharingTransitionInstance::BlendTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingTransitionInstance, bBlendBool) == 0x00035C, "Member 'UAnimSharingTransitionInstance::bBlendBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSharingAdditiveInstance \ +static_assert(alignof(UAnimSharingAdditiveInstance) == 0x000010, "Wrong alignment on UAnimSharingAdditiveInstance"); \ +static_assert(sizeof(UAnimSharingAdditiveInstance) == 0x000360, "Wrong size on UAnimSharingAdditiveInstance"); \ +static_assert(offsetof(UAnimSharingAdditiveInstance, BaseComponent) == 0x000348, "Member 'UAnimSharingAdditiveInstance::BaseComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingAdditiveInstance, AdditiveAnimation) == 0x000350, "Member 'UAnimSharingAdditiveInstance::AdditiveAnimation' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingAdditiveInstance, alpha) == 0x000358, "Member 'UAnimSharingAdditiveInstance::alpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingAdditiveInstance, bStateBool) == 0x00035C, "Member 'UAnimSharingAdditiveInstance::bStateBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimSharingInstance \ +static_assert(alignof(UAnimSharingInstance) == 0x000008, "Wrong alignment on UAnimSharingInstance"); \ +static_assert(sizeof(UAnimSharingInstance) == 0x000120, "Wrong size on UAnimSharingInstance"); \ +static_assert(offsetof(UAnimSharingInstance, RegisteredActors) == 0x000028, "Member 'UAnimSharingInstance::RegisteredActors' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingInstance, StateProcessor) == 0x000088, "Member 'UAnimSharingInstance::StateProcessor' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingInstance, UsedAnimationSequences) == 0x0000C8, "Member 'UAnimSharingInstance::UsedAnimationSequences' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingInstance, StateEnum) == 0x0000E8, "Member 'UAnimSharingInstance::StateEnum' has a wrong offset!"); \ +static_assert(offsetof(UAnimSharingInstance, SharingActor) == 0x0000F0, "Member 'UAnimSharingInstance::SharingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationSharingManager_AnimationSharingEnabled \ +static_assert(alignof(AnimationSharingManager_AnimationSharingEnabled) == 0x000001, "Wrong alignment on AnimationSharingManager_AnimationSharingEnabled"); \ +static_assert(sizeof(AnimationSharingManager_AnimationSharingEnabled) == 0x000001, "Wrong size on AnimationSharingManager_AnimationSharingEnabled"); \ +static_assert(offsetof(AnimationSharingManager_AnimationSharingEnabled, ReturnValue) == 0x000000, "Member 'AnimationSharingManager_AnimationSharingEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationSharingManager_CreateAnimationSharingManager \ +static_assert(alignof(AnimationSharingManager_CreateAnimationSharingManager) == 0x000008, "Wrong alignment on AnimationSharingManager_CreateAnimationSharingManager"); \ +static_assert(sizeof(AnimationSharingManager_CreateAnimationSharingManager) == 0x000018, "Wrong size on AnimationSharingManager_CreateAnimationSharingManager"); \ +static_assert(offsetof(AnimationSharingManager_CreateAnimationSharingManager, WorldContextObject) == 0x000000, "Member 'AnimationSharingManager_CreateAnimationSharingManager::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingManager_CreateAnimationSharingManager, Setup) == 0x000008, "Member 'AnimationSharingManager_CreateAnimationSharingManager::Setup' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingManager_CreateAnimationSharingManager, ReturnValue) == 0x000010, "Member 'AnimationSharingManager_CreateAnimationSharingManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationSharingManager_GetAnimationSharingManager \ +static_assert(alignof(AnimationSharingManager_GetAnimationSharingManager) == 0x000008, "Wrong alignment on AnimationSharingManager_GetAnimationSharingManager"); \ +static_assert(sizeof(AnimationSharingManager_GetAnimationSharingManager) == 0x000010, "Wrong size on AnimationSharingManager_GetAnimationSharingManager"); \ +static_assert(offsetof(AnimationSharingManager_GetAnimationSharingManager, WorldContextObject) == 0x000000, "Member 'AnimationSharingManager_GetAnimationSharingManager::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingManager_GetAnimationSharingManager, ReturnValue) == 0x000008, "Member 'AnimationSharingManager_GetAnimationSharingManager::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimationSharingManager_RegisterActorWithSkeletonBP \ +static_assert(alignof(AnimationSharingManager_RegisterActorWithSkeletonBP) == 0x000008, "Wrong alignment on AnimationSharingManager_RegisterActorWithSkeletonBP"); \ +static_assert(sizeof(AnimationSharingManager_RegisterActorWithSkeletonBP) == 0x000010, "Wrong size on AnimationSharingManager_RegisterActorWithSkeletonBP"); \ +static_assert(offsetof(AnimationSharingManager_RegisterActorWithSkeletonBP, InActor) == 0x000000, "Member 'AnimationSharingManager_RegisterActorWithSkeletonBP::InActor' has a wrong offset!"); \ +static_assert(offsetof(AnimationSharingManager_RegisterActorWithSkeletonBP, SharingSkeleton) == 0x000008, "Member 'AnimationSharingManager_RegisterActorWithSkeletonBP::SharingSkeleton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationSharingManager \ +static_assert(alignof(UAnimationSharingManager) == 0x000008, "Wrong alignment on UAnimationSharingManager"); \ +static_assert(sizeof(UAnimationSharingManager) == 0x000088, "Wrong size on UAnimationSharingManager"); \ +static_assert(offsetof(UAnimationSharingManager, Skeletons) == 0x000028, "Member 'UAnimationSharingManager::Skeletons' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSharingManager, PerSkeletonData) == 0x000038, "Member 'UAnimationSharingManager::PerSkeletonData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimationSharingSetup \ +static_assert(alignof(UAnimationSharingSetup) == 0x000008, "Wrong alignment on UAnimationSharingSetup"); \ +static_assert(sizeof(UAnimationSharingSetup) == 0x000048, "Wrong size on UAnimationSharingSetup"); \ +static_assert(offsetof(UAnimationSharingSetup, SkeletonSetups) == 0x000028, "Member 'UAnimationSharingSetup::SkeletonSetups' has a wrong offset!"); \ +static_assert(offsetof(UAnimationSharingSetup, ScalabilitySettings) == 0x000038, "Member 'UAnimationSharingSetup::ScalabilitySettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMyPluginStruct \ +static_assert(alignof(FMyPluginStruct) == 0x000008, "Wrong alignment on FMyPluginStruct"); \ +static_assert(sizeof(FMyPluginStruct) == 0x000010, "Wrong size on FMyPluginStruct"); \ +static_assert(offsetof(FMyPluginStruct, TestString) == 0x000000, "Member 'FMyPluginStruct::TestString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMyPluginObject \ +static_assert(alignof(UMyPluginObject) == 0x000008, "Wrong alignment on UMyPluginObject"); \ +static_assert(sizeof(UMyPluginObject) == 0x000038, "Wrong size on UMyPluginObject"); \ +static_assert(offsetof(UMyPluginObject, MyStruct) == 0x000028, "Member 'UMyPluginObject::MyStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioCurveSourceComponent \ +static_assert(alignof(UAudioCurveSourceComponent) == 0x000010, "Wrong alignment on UAudioCurveSourceComponent"); \ +static_assert(sizeof(UAudioCurveSourceComponent) == 0x000CC0, "Wrong size on UAudioCurveSourceComponent"); \ +static_assert(offsetof(UAudioCurveSourceComponent, CurveSourceBindingName) == 0x000C80, "Member 'UAudioCurveSourceComponent::CurveSourceBindingName' has a wrong offset!"); \ +static_assert(offsetof(UAudioCurveSourceComponent, CurveSyncOffset) == 0x000C88, "Member 'UAudioCurveSourceComponent::CurveSyncOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFunctionCaller \ +static_assert(alignof(FFunctionCaller) == 0x000004, "Wrong alignment on FFunctionCaller"); \ +static_assert(sizeof(FFunctionCaller) == 0x000008, "Wrong size on FFunctionCaller"); \ +static_assert(offsetof(FFunctionCaller, FunctionName) == 0x000000, "Member 'FFunctionCaller::FunctionName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCapturedPropSegment \ +static_assert(alignof(FCapturedPropSegment) == 0x000008, "Wrong alignment on FCapturedPropSegment"); \ +static_assert(sizeof(FCapturedPropSegment) == 0x000028, "Wrong size on FCapturedPropSegment"); \ +static_assert(offsetof(FCapturedPropSegment, PropertyName) == 0x000000, "Member 'FCapturedPropSegment::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FCapturedPropSegment, PropertyIndex) == 0x000010, "Member 'FCapturedPropSegment::PropertyIndex' has a wrong offset!"); \ +static_assert(offsetof(FCapturedPropSegment, ComponentName) == 0x000018, "Member 'FCapturedPropSegment::ComponentName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVariantDependency \ +static_assert(alignof(FVariantDependency) == 0x000008, "Wrong alignment on FVariantDependency"); \ +static_assert(sizeof(FVariantDependency) == 0x000058, "Wrong size on FVariantDependency"); \ +static_assert(offsetof(FVariantDependency, VariantSet) == 0x000000, "Member 'FVariantDependency::VariantSet' has a wrong offset!"); \ +static_assert(offsetof(FVariantDependency, Variant) == 0x000028, "Member 'FVariantDependency::Variant' has a wrong offset!"); \ +static_assert(offsetof(FVariantDependency, bEnabled) == 0x000050, "Member 'FVariantDependency::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSets_GetNumVariantSets \ +static_assert(alignof(LevelVariantSets_GetNumVariantSets) == 0x000004, "Wrong alignment on LevelVariantSets_GetNumVariantSets"); \ +static_assert(sizeof(LevelVariantSets_GetNumVariantSets) == 0x000004, "Wrong size on LevelVariantSets_GetNumVariantSets"); \ +static_assert(offsetof(LevelVariantSets_GetNumVariantSets, ReturnValue) == 0x000000, "Member 'LevelVariantSets_GetNumVariantSets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSets_GetVariantSet \ +static_assert(alignof(LevelVariantSets_GetVariantSet) == 0x000008, "Wrong alignment on LevelVariantSets_GetVariantSet"); \ +static_assert(sizeof(LevelVariantSets_GetVariantSet) == 0x000010, "Wrong size on LevelVariantSets_GetVariantSet"); \ +static_assert(offsetof(LevelVariantSets_GetVariantSet, VariantSetIndex) == 0x000000, "Member 'LevelVariantSets_GetVariantSet::VariantSetIndex' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSets_GetVariantSet, ReturnValue) == 0x000008, "Member 'LevelVariantSets_GetVariantSet::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSets_GetVariantSetByName \ +static_assert(alignof(LevelVariantSets_GetVariantSetByName) == 0x000008, "Wrong alignment on LevelVariantSets_GetVariantSetByName"); \ +static_assert(sizeof(LevelVariantSets_GetVariantSetByName) == 0x000018, "Wrong size on LevelVariantSets_GetVariantSetByName"); \ +static_assert(offsetof(LevelVariantSets_GetVariantSetByName, VariantSetName) == 0x000000, "Member 'LevelVariantSets_GetVariantSetByName::VariantSetName' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSets_GetVariantSetByName, ReturnValue) == 0x000010, "Member 'LevelVariantSets_GetVariantSetByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelVariantSets \ +static_assert(alignof(ULevelVariantSets) == 0x000008, "Wrong alignment on ULevelVariantSets"); \ +static_assert(sizeof(ULevelVariantSets) == 0x000090, "Wrong size on ULevelVariantSets"); \ +static_assert(offsetof(ULevelVariantSets, DirectorClass) == 0x000028, "Member 'ULevelVariantSets::DirectorClass' has a wrong offset!"); \ +static_assert(offsetof(ULevelVariantSets, VariantSets) == 0x000030, "Member 'ULevelVariantSets::VariantSets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSetsActor_GetLevelVariantSets \ +static_assert(alignof(LevelVariantSetsActor_GetLevelVariantSets) == 0x000008, "Wrong alignment on LevelVariantSetsActor_GetLevelVariantSets"); \ +static_assert(sizeof(LevelVariantSetsActor_GetLevelVariantSets) == 0x000010, "Wrong size on LevelVariantSetsActor_GetLevelVariantSets"); \ +static_assert(offsetof(LevelVariantSetsActor_GetLevelVariantSets, bLoad) == 0x000000, "Member 'LevelVariantSetsActor_GetLevelVariantSets::bLoad' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSetsActor_GetLevelVariantSets, ReturnValue) == 0x000008, "Member 'LevelVariantSetsActor_GetLevelVariantSets::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSetsActor_SetLevelVariantSets \ +static_assert(alignof(LevelVariantSetsActor_SetLevelVariantSets) == 0x000008, "Wrong alignment on LevelVariantSetsActor_SetLevelVariantSets"); \ +static_assert(sizeof(LevelVariantSetsActor_SetLevelVariantSets) == 0x000008, "Wrong size on LevelVariantSetsActor_SetLevelVariantSets"); \ +static_assert(offsetof(LevelVariantSetsActor_SetLevelVariantSets, InVariantSets) == 0x000000, "Member 'LevelVariantSetsActor_SetLevelVariantSets::InVariantSets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSetsActor_SwitchOnVariantByIndex \ +static_assert(alignof(LevelVariantSetsActor_SwitchOnVariantByIndex) == 0x000004, "Wrong alignment on LevelVariantSetsActor_SwitchOnVariantByIndex"); \ +static_assert(sizeof(LevelVariantSetsActor_SwitchOnVariantByIndex) == 0x00000C, "Wrong size on LevelVariantSetsActor_SwitchOnVariantByIndex"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByIndex, VariantSetIndex) == 0x000000, "Member 'LevelVariantSetsActor_SwitchOnVariantByIndex::VariantSetIndex' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByIndex, VariantIndex) == 0x000004, "Member 'LevelVariantSetsActor_SwitchOnVariantByIndex::VariantIndex' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByIndex, ReturnValue) == 0x000008, "Member 'LevelVariantSetsActor_SwitchOnVariantByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LevelVariantSetsActor_SwitchOnVariantByName \ +static_assert(alignof(LevelVariantSetsActor_SwitchOnVariantByName) == 0x000008, "Wrong alignment on LevelVariantSetsActor_SwitchOnVariantByName"); \ +static_assert(sizeof(LevelVariantSetsActor_SwitchOnVariantByName) == 0x000028, "Wrong size on LevelVariantSetsActor_SwitchOnVariantByName"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByName, VariantSetName) == 0x000000, "Member 'LevelVariantSetsActor_SwitchOnVariantByName::VariantSetName' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByName, VariantName) == 0x000010, "Member 'LevelVariantSetsActor_SwitchOnVariantByName::VariantName' has a wrong offset!"); \ +static_assert(offsetof(LevelVariantSetsActor_SwitchOnVariantByName, ReturnValue) == 0x000020, "Member 'LevelVariantSetsActor_SwitchOnVariantByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALevelVariantSetsActor \ +static_assert(alignof(ALevelVariantSetsActor) == 0x000008, "Wrong alignment on ALevelVariantSetsActor"); \ +static_assert(sizeof(ALevelVariantSetsActor) == 0x000308, "Wrong size on ALevelVariantSetsActor"); \ +static_assert(offsetof(ALevelVariantSetsActor, LevelVariantSets) == 0x000298, "Member 'ALevelVariantSetsActor::LevelVariantSets' has a wrong offset!"); \ +static_assert(offsetof(ALevelVariantSetsActor, DirectorInstances) == 0x0002B8, "Member 'ALevelVariantSetsActor::DirectorInstances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULevelVariantSetsFunctionDirector \ +static_assert(alignof(ULevelVariantSetsFunctionDirector) == 0x000008, "Wrong alignment on ULevelVariantSetsFunctionDirector"); \ +static_assert(sizeof(ULevelVariantSetsFunctionDirector) == 0x000040, "Wrong size on ULevelVariantSetsFunctionDirector"); \ + +#define DUMPER7_ASSERTS_PropertyValue_GetFullDisplayString \ +static_assert(alignof(PropertyValue_GetFullDisplayString) == 0x000008, "Wrong alignment on PropertyValue_GetFullDisplayString"); \ +static_assert(sizeof(PropertyValue_GetFullDisplayString) == 0x000010, "Wrong size on PropertyValue_GetFullDisplayString"); \ +static_assert(offsetof(PropertyValue_GetFullDisplayString, ReturnValue) == 0x000000, "Member 'PropertyValue_GetFullDisplayString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyValue_GetPropertyTooltip \ +static_assert(alignof(PropertyValue_GetPropertyTooltip) == 0x000008, "Wrong alignment on PropertyValue_GetPropertyTooltip"); \ +static_assert(sizeof(PropertyValue_GetPropertyTooltip) == 0x000018, "Wrong size on PropertyValue_GetPropertyTooltip"); \ +static_assert(offsetof(PropertyValue_GetPropertyTooltip, ReturnValue) == 0x000000, "Member 'PropertyValue_GetPropertyTooltip::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PropertyValue_HasRecordedData \ +static_assert(alignof(PropertyValue_HasRecordedData) == 0x000001, "Wrong alignment on PropertyValue_HasRecordedData"); \ +static_assert(sizeof(PropertyValue_HasRecordedData) == 0x000001, "Wrong size on PropertyValue_HasRecordedData"); \ +static_assert(offsetof(PropertyValue_HasRecordedData, ReturnValue) == 0x000000, "Member 'PropertyValue_HasRecordedData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPropertyValue \ +static_assert(alignof(UPropertyValue) == 0x000008, "Wrong alignment on UPropertyValue"); \ +static_assert(sizeof(UPropertyValue) == 0x0001B8, "Wrong size on UPropertyValue"); \ +static_assert(offsetof(UPropertyValue, Properties) == 0x000088, "Member 'UPropertyValue::Properties' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, PropertyIndices) == 0x000098, "Member 'UPropertyValue::PropertyIndices' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, CapturedPropSegments) == 0x0000A8, "Member 'UPropertyValue::CapturedPropSegments' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, FullDisplayString) == 0x0000B8, "Member 'UPropertyValue::FullDisplayString' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, PropertySetterName) == 0x0000C8, "Member 'UPropertyValue::PropertySetterName' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, PropertySetterParameterDefaults) == 0x0000D0, "Member 'UPropertyValue::PropertySetterParameterDefaults' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, bHasRecordedData) == 0x000120, "Member 'UPropertyValue::bHasRecordedData' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, LeafPropertyClass) == 0x000128, "Member 'UPropertyValue::LeafPropertyClass' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, ValueBytes) == 0x000138, "Member 'UPropertyValue::ValueBytes' has a wrong offset!"); \ +static_assert(offsetof(UPropertyValue, PropCategory) == 0x000148, "Member 'UPropertyValue::PropCategory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPropertyValueTransform \ +static_assert(alignof(UPropertyValueTransform) == 0x000008, "Wrong alignment on UPropertyValueTransform"); \ +static_assert(sizeof(UPropertyValueTransform) == 0x0001B8, "Wrong size on UPropertyValueTransform"); \ + +#define DUMPER7_ASSERTS_UPropertyValueVisibility \ +static_assert(alignof(UPropertyValueVisibility) == 0x000008, "Wrong alignment on UPropertyValueVisibility"); \ +static_assert(sizeof(UPropertyValueVisibility) == 0x0001B8, "Wrong size on UPropertyValueVisibility"); \ + +#define DUMPER7_ASSERTS_UPropertyValueColor \ +static_assert(alignof(UPropertyValueColor) == 0x000008, "Wrong alignment on UPropertyValueColor"); \ +static_assert(sizeof(UPropertyValueColor) == 0x0001B8, "Wrong size on UPropertyValueColor"); \ + +#define DUMPER7_ASSERTS_UPropertyValueMaterial \ +static_assert(alignof(UPropertyValueMaterial) == 0x000008, "Wrong alignment on UPropertyValueMaterial"); \ +static_assert(sizeof(UPropertyValueMaterial) == 0x0001B8, "Wrong size on UPropertyValueMaterial"); \ + +#define DUMPER7_ASSERTS_UPropertyValueOption \ +static_assert(alignof(UPropertyValueOption) == 0x000008, "Wrong alignment on UPropertyValueOption"); \ +static_assert(sizeof(UPropertyValueOption) == 0x0001B8, "Wrong size on UPropertyValueOption"); \ + +#define DUMPER7_ASSERTS_UPropertyValueSoftObject \ +static_assert(alignof(UPropertyValueSoftObject) == 0x000008, "Wrong alignment on UPropertyValueSoftObject"); \ +static_assert(sizeof(UPropertyValueSoftObject) == 0x0001B8, "Wrong size on UPropertyValueSoftObject"); \ + +#define DUMPER7_ASSERTS_SwitchActor_SelectOption \ +static_assert(alignof(SwitchActor_SelectOption) == 0x000004, "Wrong alignment on SwitchActor_SelectOption"); \ +static_assert(sizeof(SwitchActor_SelectOption) == 0x000004, "Wrong size on SwitchActor_SelectOption"); \ +static_assert(offsetof(SwitchActor_SelectOption, OptionIndex) == 0x000000, "Member 'SwitchActor_SelectOption::OptionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SwitchActor_GetOptions \ +static_assert(alignof(SwitchActor_GetOptions) == 0x000008, "Wrong alignment on SwitchActor_GetOptions"); \ +static_assert(sizeof(SwitchActor_GetOptions) == 0x000010, "Wrong size on SwitchActor_GetOptions"); \ +static_assert(offsetof(SwitchActor_GetOptions, ReturnValue) == 0x000000, "Member 'SwitchActor_GetOptions::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SwitchActor_GetSelectedOption \ +static_assert(alignof(SwitchActor_GetSelectedOption) == 0x000004, "Wrong alignment on SwitchActor_GetSelectedOption"); \ +static_assert(sizeof(SwitchActor_GetSelectedOption) == 0x000004, "Wrong size on SwitchActor_GetSelectedOption"); \ +static_assert(offsetof(SwitchActor_GetSelectedOption, ReturnValue) == 0x000000, "Member 'SwitchActor_GetSelectedOption::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ASwitchActor \ +static_assert(alignof(ASwitchActor) == 0x000008, "Wrong alignment on ASwitchActor"); \ +static_assert(sizeof(ASwitchActor) == 0x0002C0, "Wrong size on ASwitchActor"); \ +static_assert(offsetof(ASwitchActor, SceneComponent) == 0x0002B0, "Member 'ASwitchActor::SceneComponent' has a wrong offset!"); \ +static_assert(offsetof(ASwitchActor, LastSelectedOption) == 0x0002B8, "Member 'ASwitchActor::LastSelectedOption' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_AddDependency \ +static_assert(alignof(Variant_AddDependency) == 0x000008, "Wrong alignment on Variant_AddDependency"); \ +static_assert(sizeof(Variant_AddDependency) == 0x000060, "Wrong size on Variant_AddDependency"); \ +static_assert(offsetof(Variant_AddDependency, Dependency) == 0x000000, "Member 'Variant_AddDependency::Dependency' has a wrong offset!"); \ +static_assert(offsetof(Variant_AddDependency, ReturnValue) == 0x000058, "Member 'Variant_AddDependency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_DeleteDependency \ +static_assert(alignof(Variant_DeleteDependency) == 0x000004, "Wrong alignment on Variant_DeleteDependency"); \ +static_assert(sizeof(Variant_DeleteDependency) == 0x000004, "Wrong size on Variant_DeleteDependency"); \ +static_assert(offsetof(Variant_DeleteDependency, Index_0) == 0x000000, "Member 'Variant_DeleteDependency::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetActor \ +static_assert(alignof(Variant_GetActor) == 0x000008, "Wrong alignment on Variant_GetActor"); \ +static_assert(sizeof(Variant_GetActor) == 0x000010, "Wrong size on Variant_GetActor"); \ +static_assert(offsetof(Variant_GetActor, ActorIndex) == 0x000000, "Member 'Variant_GetActor::ActorIndex' has a wrong offset!"); \ +static_assert(offsetof(Variant_GetActor, ReturnValue) == 0x000008, "Member 'Variant_GetActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetDependency \ +static_assert(alignof(Variant_GetDependency) == 0x000008, "Wrong alignment on Variant_GetDependency"); \ +static_assert(sizeof(Variant_GetDependency) == 0x000060, "Wrong size on Variant_GetDependency"); \ +static_assert(offsetof(Variant_GetDependency, Index_0) == 0x000000, "Member 'Variant_GetDependency::Index_0' has a wrong offset!"); \ +static_assert(offsetof(Variant_GetDependency, ReturnValue) == 0x000008, "Member 'Variant_GetDependency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetDependents \ +static_assert(alignof(Variant_GetDependents) == 0x000008, "Wrong alignment on Variant_GetDependents"); \ +static_assert(sizeof(Variant_GetDependents) == 0x000020, "Wrong size on Variant_GetDependents"); \ +static_assert(offsetof(Variant_GetDependents, LevelVariantSets) == 0x000000, "Member 'Variant_GetDependents::LevelVariantSets' has a wrong offset!"); \ +static_assert(offsetof(Variant_GetDependents, bOnlyEnabledDependencies) == 0x000008, "Member 'Variant_GetDependents::bOnlyEnabledDependencies' has a wrong offset!"); \ +static_assert(offsetof(Variant_GetDependents, ReturnValue) == 0x000010, "Member 'Variant_GetDependents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetNumActors \ +static_assert(alignof(Variant_GetNumActors) == 0x000004, "Wrong alignment on Variant_GetNumActors"); \ +static_assert(sizeof(Variant_GetNumActors) == 0x000004, "Wrong size on Variant_GetNumActors"); \ +static_assert(offsetof(Variant_GetNumActors, ReturnValue) == 0x000000, "Member 'Variant_GetNumActors::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetNumDependencies \ +static_assert(alignof(Variant_GetNumDependencies) == 0x000004, "Wrong alignment on Variant_GetNumDependencies"); \ +static_assert(sizeof(Variant_GetNumDependencies) == 0x000004, "Wrong size on Variant_GetNumDependencies"); \ +static_assert(offsetof(Variant_GetNumDependencies, ReturnValue) == 0x000000, "Member 'Variant_GetNumDependencies::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetParent \ +static_assert(alignof(Variant_GetParent) == 0x000008, "Wrong alignment on Variant_GetParent"); \ +static_assert(sizeof(Variant_GetParent) == 0x000008, "Wrong size on Variant_GetParent"); \ +static_assert(offsetof(Variant_GetParent, ReturnValue) == 0x000000, "Member 'Variant_GetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetThumbnail \ +static_assert(alignof(Variant_GetThumbnail) == 0x000008, "Wrong alignment on Variant_GetThumbnail"); \ +static_assert(sizeof(Variant_GetThumbnail) == 0x000008, "Wrong size on Variant_GetThumbnail"); \ +static_assert(offsetof(Variant_GetThumbnail, ReturnValue) == 0x000000, "Member 'Variant_GetThumbnail::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_IsActive \ +static_assert(alignof(Variant_IsActive) == 0x000001, "Wrong alignment on Variant_IsActive"); \ +static_assert(sizeof(Variant_IsActive) == 0x000001, "Wrong size on Variant_IsActive"); \ +static_assert(offsetof(Variant_IsActive, ReturnValue) == 0x000000, "Member 'Variant_IsActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_SetDependency \ +static_assert(alignof(Variant_SetDependency) == 0x000008, "Wrong alignment on Variant_SetDependency"); \ +static_assert(sizeof(Variant_SetDependency) == 0x000060, "Wrong size on Variant_SetDependency"); \ +static_assert(offsetof(Variant_SetDependency, Index_0) == 0x000000, "Member 'Variant_SetDependency::Index_0' has a wrong offset!"); \ +static_assert(offsetof(Variant_SetDependency, Dependency) == 0x000008, "Member 'Variant_SetDependency::Dependency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_SetDisplayText \ +static_assert(alignof(Variant_SetDisplayText) == 0x000008, "Wrong alignment on Variant_SetDisplayText"); \ +static_assert(sizeof(Variant_SetDisplayText) == 0x000018, "Wrong size on Variant_SetDisplayText"); \ +static_assert(offsetof(Variant_SetDisplayText, NewDisplayText) == 0x000000, "Member 'Variant_SetDisplayText::NewDisplayText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_SetThumbnailFromCamera \ +static_assert(alignof(Variant_SetThumbnailFromCamera) == 0x000010, "Wrong alignment on Variant_SetThumbnailFromCamera"); \ +static_assert(sizeof(Variant_SetThumbnailFromCamera) == 0x000080, "Wrong size on Variant_SetThumbnailFromCamera"); \ +static_assert(offsetof(Variant_SetThumbnailFromCamera, WorldContextObject) == 0x000000, "Member 'Variant_SetThumbnailFromCamera::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(Variant_SetThumbnailFromCamera, CameraTransform) == 0x000010, "Member 'Variant_SetThumbnailFromCamera::CameraTransform' has a wrong offset!"); \ +static_assert(offsetof(Variant_SetThumbnailFromCamera, FOVDegrees) == 0x000070, "Member 'Variant_SetThumbnailFromCamera::FOVDegrees' has a wrong offset!"); \ +static_assert(offsetof(Variant_SetThumbnailFromCamera, MinZ) == 0x000074, "Member 'Variant_SetThumbnailFromCamera::MinZ' has a wrong offset!"); \ +static_assert(offsetof(Variant_SetThumbnailFromCamera, Gamma) == 0x000078, "Member 'Variant_SetThumbnailFromCamera::Gamma' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_SetThumbnailFromFile \ +static_assert(alignof(Variant_SetThumbnailFromFile) == 0x000008, "Wrong alignment on Variant_SetThumbnailFromFile"); \ +static_assert(sizeof(Variant_SetThumbnailFromFile) == 0x000010, "Wrong size on Variant_SetThumbnailFromFile"); \ +static_assert(offsetof(Variant_SetThumbnailFromFile, FilePath) == 0x000000, "Member 'Variant_SetThumbnailFromFile::FilePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_SetThumbnailFromTexture \ +static_assert(alignof(Variant_SetThumbnailFromTexture) == 0x000008, "Wrong alignment on Variant_SetThumbnailFromTexture"); \ +static_assert(sizeof(Variant_SetThumbnailFromTexture) == 0x000008, "Wrong size on Variant_SetThumbnailFromTexture"); \ +static_assert(offsetof(Variant_SetThumbnailFromTexture, NewThumbnail) == 0x000000, "Member 'Variant_SetThumbnailFromTexture::NewThumbnail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Variant_GetDisplayText \ +static_assert(alignof(Variant_GetDisplayText) == 0x000008, "Wrong alignment on Variant_GetDisplayText"); \ +static_assert(sizeof(Variant_GetDisplayText) == 0x000018, "Wrong size on Variant_GetDisplayText"); \ +static_assert(offsetof(Variant_GetDisplayText, ReturnValue) == 0x000000, "Member 'Variant_GetDisplayText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVariant \ +static_assert(alignof(UVariant) == 0x000008, "Wrong alignment on UVariant"); \ +static_assert(sizeof(UVariant) == 0x000080, "Wrong size on UVariant"); \ +static_assert(offsetof(UVariant, Dependencies) == 0x000028, "Member 'UVariant::Dependencies' has a wrong offset!"); \ +static_assert(offsetof(UVariant, DisplayText) == 0x000038, "Member 'UVariant::DisplayText' has a wrong offset!"); \ +static_assert(offsetof(UVariant, ObjectBindings) == 0x000068, "Member 'UVariant::ObjectBindings' has a wrong offset!"); \ +static_assert(offsetof(UVariant, Thumbnail) == 0x000078, "Member 'UVariant::Thumbnail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVariantObjectBinding \ +static_assert(alignof(UVariantObjectBinding) == 0x000008, "Wrong alignment on UVariantObjectBinding"); \ +static_assert(sizeof(UVariantObjectBinding) == 0x000090, "Wrong size on UVariantObjectBinding"); \ +static_assert(offsetof(UVariantObjectBinding, CachedActorLabel) == 0x000028, "Member 'UVariantObjectBinding::CachedActorLabel' has a wrong offset!"); \ +static_assert(offsetof(UVariantObjectBinding, ObjectPtr) == 0x000038, "Member 'UVariantObjectBinding::ObjectPtr' has a wrong offset!"); \ +static_assert(offsetof(UVariantObjectBinding, LazyObjectPtr) == 0x000058, "Member 'UVariantObjectBinding::LazyObjectPtr' has a wrong offset!"); \ +static_assert(offsetof(UVariantObjectBinding, CapturedProperties) == 0x000070, "Member 'UVariantObjectBinding::CapturedProperties' has a wrong offset!"); \ +static_assert(offsetof(UVariantObjectBinding, FunctionCallers) == 0x000080, "Member 'UVariantObjectBinding::FunctionCallers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetParent \ +static_assert(alignof(VariantSet_GetParent) == 0x000008, "Wrong alignment on VariantSet_GetParent"); \ +static_assert(sizeof(VariantSet_GetParent) == 0x000008, "Wrong size on VariantSet_GetParent"); \ +static_assert(offsetof(VariantSet_GetParent, ReturnValue) == 0x000000, "Member 'VariantSet_GetParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetThumbnail \ +static_assert(alignof(VariantSet_GetThumbnail) == 0x000008, "Wrong alignment on VariantSet_GetThumbnail"); \ +static_assert(sizeof(VariantSet_GetThumbnail) == 0x000008, "Wrong size on VariantSet_GetThumbnail"); \ +static_assert(offsetof(VariantSet_GetThumbnail, ReturnValue) == 0x000000, "Member 'VariantSet_GetThumbnail::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetVariant \ +static_assert(alignof(VariantSet_GetVariant) == 0x000008, "Wrong alignment on VariantSet_GetVariant"); \ +static_assert(sizeof(VariantSet_GetVariant) == 0x000010, "Wrong size on VariantSet_GetVariant"); \ +static_assert(offsetof(VariantSet_GetVariant, VariantIndex) == 0x000000, "Member 'VariantSet_GetVariant::VariantIndex' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_GetVariant, ReturnValue) == 0x000008, "Member 'VariantSet_GetVariant::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetVariantByName \ +static_assert(alignof(VariantSet_GetVariantByName) == 0x000008, "Wrong alignment on VariantSet_GetVariantByName"); \ +static_assert(sizeof(VariantSet_GetVariantByName) == 0x000018, "Wrong size on VariantSet_GetVariantByName"); \ +static_assert(offsetof(VariantSet_GetVariantByName, VariantName) == 0x000000, "Member 'VariantSet_GetVariantByName::VariantName' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_GetVariantByName, ReturnValue) == 0x000010, "Member 'VariantSet_GetVariantByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_SetDisplayText \ +static_assert(alignof(VariantSet_SetDisplayText) == 0x000008, "Wrong alignment on VariantSet_SetDisplayText"); \ +static_assert(sizeof(VariantSet_SetDisplayText) == 0x000018, "Wrong size on VariantSet_SetDisplayText"); \ +static_assert(offsetof(VariantSet_SetDisplayText, NewDisplayText) == 0x000000, "Member 'VariantSet_SetDisplayText::NewDisplayText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_SetThumbnailFromCamera \ +static_assert(alignof(VariantSet_SetThumbnailFromCamera) == 0x000010, "Wrong alignment on VariantSet_SetThumbnailFromCamera"); \ +static_assert(sizeof(VariantSet_SetThumbnailFromCamera) == 0x000080, "Wrong size on VariantSet_SetThumbnailFromCamera"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromCamera, WorldContextObject) == 0x000000, "Member 'VariantSet_SetThumbnailFromCamera::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromCamera, CameraTransform) == 0x000010, "Member 'VariantSet_SetThumbnailFromCamera::CameraTransform' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromCamera, FOVDegrees) == 0x000070, "Member 'VariantSet_SetThumbnailFromCamera::FOVDegrees' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromCamera, MinZ) == 0x000074, "Member 'VariantSet_SetThumbnailFromCamera::MinZ' has a wrong offset!"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromCamera, Gamma) == 0x000078, "Member 'VariantSet_SetThumbnailFromCamera::Gamma' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_SetThumbnailFromFile \ +static_assert(alignof(VariantSet_SetThumbnailFromFile) == 0x000008, "Wrong alignment on VariantSet_SetThumbnailFromFile"); \ +static_assert(sizeof(VariantSet_SetThumbnailFromFile) == 0x000010, "Wrong size on VariantSet_SetThumbnailFromFile"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromFile, FilePath) == 0x000000, "Member 'VariantSet_SetThumbnailFromFile::FilePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_SetThumbnailFromTexture \ +static_assert(alignof(VariantSet_SetThumbnailFromTexture) == 0x000008, "Wrong alignment on VariantSet_SetThumbnailFromTexture"); \ +static_assert(sizeof(VariantSet_SetThumbnailFromTexture) == 0x000008, "Wrong size on VariantSet_SetThumbnailFromTexture"); \ +static_assert(offsetof(VariantSet_SetThumbnailFromTexture, NewThumbnail) == 0x000000, "Member 'VariantSet_SetThumbnailFromTexture::NewThumbnail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetDisplayText \ +static_assert(alignof(VariantSet_GetDisplayText) == 0x000008, "Wrong alignment on VariantSet_GetDisplayText"); \ +static_assert(sizeof(VariantSet_GetDisplayText) == 0x000018, "Wrong size on VariantSet_GetDisplayText"); \ +static_assert(offsetof(VariantSet_GetDisplayText, ReturnValue) == 0x000000, "Member 'VariantSet_GetDisplayText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VariantSet_GetNumVariants \ +static_assert(alignof(VariantSet_GetNumVariants) == 0x000004, "Wrong alignment on VariantSet_GetNumVariants"); \ +static_assert(sizeof(VariantSet_GetNumVariants) == 0x000004, "Wrong size on VariantSet_GetNumVariants"); \ +static_assert(offsetof(VariantSet_GetNumVariants, ReturnValue) == 0x000000, "Member 'VariantSet_GetNumVariants::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVariantSet \ +static_assert(alignof(UVariantSet) == 0x000008, "Wrong alignment on UVariantSet"); \ +static_assert(sizeof(UVariantSet) == 0x000078, "Wrong size on UVariantSet"); \ +static_assert(offsetof(UVariantSet, DisplayText) == 0x000028, "Member 'UVariantSet::DisplayText' has a wrong offset!"); \ +static_assert(offsetof(UVariantSet, bExpanded) == 0x000058, "Member 'UVariantSet::bExpanded' has a wrong offset!"); \ +static_assert(offsetof(UVariantSet, Variants) == 0x000060, "Member 'UVariantSet::Variants' has a wrong offset!"); \ +static_assert(offsetof(UVariantSet, Thumbnail) == 0x000070, "Member 'UVariantSet::Thumbnail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_ConvertManualPointToWorld \ +static_assert(alignof(BP_EQSDefendZone_C_ConvertManualPointToWorld) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_ConvertManualPointToWorld"); \ +static_assert(sizeof(BP_EQSDefendZone_C_ConvertManualPointToWorld) == 0x000090, "Wrong size on BP_EQSDefendZone_C_ConvertManualPointToWorld"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, Vector) == 0x000000, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::Vector' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, Point_0) == 0x000018, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::Point_0' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, CallFunc_K2_GetComponentRotation_ReturnValue) == 0x000030, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::CallFunc_K2_GetComponentRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000048, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000060, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ConvertManualPointToWorld, CallFunc_Add_VectorVector_ReturnValue) == 0x000078, "Member 'BP_EQSDefendZone_C_ConvertManualPointToWorld::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone \ +static_assert(alignof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone) == 0x000010, "Wrong alignment on BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone"); \ +static_assert(sizeof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone) == 0x000890, "Wrong size on BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, EntryPoint) == 0x000000, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable_2) == 0x00001C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable_2) == 0x000020, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable_3) == 0x000024, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_2) == 0x000028, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_3) == 0x00002C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_bool_True_if_break_was_hit_Variable) == 0x000030, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable_3) == 0x000034, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Not_PreBool_ReturnValue) == 0x000038, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable_4) == 0x00003C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Variable) == 0x000040, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_4) == 0x000044, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000048, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_5) == 0x000050, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000060, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_X) == 0x000078, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Y) == 0x000080, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Z) == 0x000088, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetScaledBoxExtent_ReturnValue_1) == 0x000090, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetScaledBoxExtent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_X_1) == 0x0000B0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Y_1) == 0x0000B8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Z_1) == 0x0000C0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000C8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000D0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000D8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable_4) == 0x0000E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue) == 0x0000E4, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Greater_IntInt_ReturnValue) == 0x0000E8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentRotation_ReturnValue) == 0x0000F0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000108, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentRotation_ReturnValue_1) == 0x000120, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_1) == 0x000138, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00013C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000140, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Not_PreBool_ReturnValue_1) == 0x000158, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CreateDelegate_OutputDelegate) == 0x00015C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000170, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_6) == 0x000178, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Loop_Counter_Variable_5) == 0x00017C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item) == 0x000180, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_ConvertManualPointToWorld_Point) == 0x000198, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_ConvertManualPointToWorld_Point' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_7) == 0x0001B0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_2) == 0x0001B4, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_3) == 0x0001B8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue) == 0x0001BC, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Greater_IntInt_ReturnValue_1) == 0x0001BD, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x0001BE, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Array_Index_Variable_5) == 0x0001C0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Variable_1) == 0x0001C4, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x0001C8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_8) == 0x0001D0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0001D8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0001E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0001E8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001F0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001F8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000200, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_FFloor_ReturnValue) == 0x000208, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_FFloor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_FFloor_ReturnValue_1) == 0x00020C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_FFloor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000210, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_LessEqual_IntInt_ReturnValue_1) == 0x000211, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_LessEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Variable_2) == 0x000214, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x000218, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000220, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_FFloor_ReturnValue_2) == 0x000228, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_FFloor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000230, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_IntInt_ReturnValue) == 0x000238, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_MakeVector_ReturnValue) == 0x000240, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000258, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_VectorVector_ReturnValue) == 0x000270, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_9) == 0x000288, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_RandomisePointLocationInBounds_Point) == 0x000290, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_RandomisePointLocationInBounds_Point' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item_1) == 0x0002A8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_4) == 0x0002D0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x0002D4, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_1) == 0x0002D5, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_AddUnique_ReturnValue) == 0x0002D8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x0002E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakTransform_Location) == 0x000340, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakTransform_Rotation) == 0x000358, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakTransform_Scale) == 0x000370, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_SetActorTransform_SweepHitResult) == 0x000388, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_SetActorTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_SetActorTransform_ReturnValue) == 0x000470, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_SetActorTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_MakeTransform_ReturnValue) == 0x000480, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_SetWorldTransform_SweepHitResult) == 0x0004E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_SetWorldTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Variable_3) == 0x0005C8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetAllActorsOfClass_OutActors) == 0x0005D0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item_2) == 0x0005E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_5) == 0x0005E8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x0005F0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_2) == 0x000618, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_AddUnique_ReturnValue_1) == 0x00061C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000620, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsPointInsideZone_ReturnValue) == 0x000638, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsPointInsideZone_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item_3) == 0x000640, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_6) == 0x000668, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000670, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_3) == 0x000678, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_DynamicCast_AsWrestler_AISpawner) == 0x000680, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_DynamicCast_AsWrestler_AISpawner' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_DynamicCast_bSuccess) == 0x000688, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000690, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0006A8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0006B0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValid_ReturnValue) == 0x0006C8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0006D0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentLocation_ReturnValue_2) == 0x0006E8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_MakeVector_ReturnValue_1) == 0x000700, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentRotation_ReturnValue_2) == 0x000718, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000730, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_K2_GetComponentLocation_ReturnValue_3) == 0x000748, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_K2_GetComponentLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_X_2) == 0x000760, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Y_2) == 0x000768, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BreakVector_Z_2) == 0x000770, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_FMax_ReturnValue) == 0x000778, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CreateDelegate_OutputDelegate_1) == 0x000780, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000790, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000798, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValid_ReturnValue_1) == 0x0007A0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Divide_DoubleDouble_ReturnValue_3) == 0x0007A8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Divide_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_FFloor_ReturnValue_3) == 0x0007B0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_FFloor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Multiply_IntInt_ReturnValue_1) == 0x0007B4, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Multiply_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_IsEmpty_ReturnValue) == 0x0007B8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_LessEqual_IntInt_ReturnValue_2) == 0x0007B9, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_LessEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item_4) == 0x0007C0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_7) == 0x0007D8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_4) == 0x0007DC, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CustomEvent_Debug) == 0x0007DD, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CustomEvent_Debug' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetScaledBoxExtent_ReturnValue_2) == 0x0007E0, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetScaledBoxExtent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CreateDelegate_OutputDelegate_2) == 0x0007F8, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CustomEvent_Enemy) == 0x000808, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_CustomEvent_Spawner) == 0x000810, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_CustomEvent_Spawner' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValid_ReturnValue_2) == 0x000818, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_GetComponentByClass_ReturnValue) == 0x000820, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValid_ReturnValue_3) == 0x000828, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_IsValid_ReturnValue_4) == 0x000829, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Get_Item_5) == 0x000830, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_LoadAsset_Blocking_ReturnValue_1) == 0x000858, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_LoadAsset_Blocking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_8) == 0x000860, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_DynamicCast_AsWrestler_AISpawner_1) == 0x000868, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_DynamicCast_AsWrestler_AISpawner_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, K2Node_DynamicCast_bSuccess_1) == 0x000870, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_5) == 0x000871, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000872, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_BooleanAND_ReturnValue) == 0x000873, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, Temp_int_Variable_4) == 0x000874, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Less_IntInt_ReturnValue_6) == 0x000878, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Add_IntInt_ReturnValue_10) == 0x00087C, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Add_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_Array_Length_ReturnValue_9) == 0x000880, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_Array_Length_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000884, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone, CallFunc_DrawDebugSphere_Radius_ImplicitCast) == 0x000888, "Member 'BP_EQSDefendZone_C_ExecuteUbergraph_BP_EQSDefendZone::CallFunc_DrawDebugSphere_Radius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_Get_Enabled \ +static_assert(alignof(BP_EQSDefendZone_C_Get_Enabled) == 0x000001, "Wrong alignment on BP_EQSDefendZone_C_Get_Enabled"); \ +static_assert(sizeof(BP_EQSDefendZone_C_Get_Enabled) == 0x000001, "Wrong size on BP_EQSDefendZone_C_Get_Enabled"); \ +static_assert(offsetof(BP_EQSDefendZone_C_Get_Enabled, Enabled_0) == 0x000000, "Member 'BP_EQSDefendZone_C_Get_Enabled::Enabled_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_GetPointsExcludeHysteresis \ +static_assert(alignof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_GetPointsExcludeHysteresis"); \ +static_assert(sizeof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis) == 0x000058, "Wrong size on BP_EQSDefendZone_C_GetPointsExcludeHysteresis"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, Points_0) == 0x000000, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::Points_0' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, TmpPoints) == 0x000010, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::TmpPoints' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, Temp_int_Array_Index_Variable) == 0x000020, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_IsPointInsideZone_ReturnValue) == 0x000048, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_IsPointInsideZone_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_GetPointsExcludeHysteresis, CallFunc_Array_Add_ReturnValue) == 0x000054, "Member 'BP_EQSDefendZone_C_GetPointsExcludeHysteresis::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_IsInQueryResponseRange \ +static_assert(alignof(BP_EQSDefendZone_C_IsInQueryResponseRange) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_IsInQueryResponseRange"); \ +static_assert(sizeof(BP_EQSDefendZone_C_IsInQueryResponseRange) == 0x0000A0, "Wrong size on BP_EQSDefendZone_C_IsInQueryResponseRange"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, Vector) == 0x000000, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::Vector' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, ReturnValue) == 0x000018, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000020, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_BreakVector_X) == 0x000038, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_BreakVector_Y) == 0x000040, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_BreakVector_Z) == 0x000048, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000050, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_FMax_ReturnValue) == 0x000068, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000070, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000088, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_VSize_ReturnValue) == 0x000090, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsInQueryResponseRange, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_EQSDefendZone_C_IsInQueryResponseRange::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_IsPointInsideZone \ +static_assert(alignof(BP_EQSDefendZone_C_IsPointInsideZone) == 0x000010, "Wrong alignment on BP_EQSDefendZone_C_IsPointInsideZone"); \ +static_assert(sizeof(BP_EQSDefendZone_C_IsPointInsideZone) == 0x0001D0, "Wrong size on BP_EQSDefendZone_C_IsPointInsideZone"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, Point_0) == 0x000000, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::Point_0' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, ExtentMultiplier) == 0x000018, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::ExtentMultiplier' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, IncludeHysteresis) == 0x00001C, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::IncludeHysteresis' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, ReturnValue) == 0x00001D, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, Add) == 0x000020, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::Add' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000028, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000040, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000A0, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakTransform_Location) == 0x0000B8, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakTransform_Rotation) == 0x0000D0, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakTransform_Scale) == 0x0000E8, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000100, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_MakeTransform_ReturnValue) == 0x000120, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakVector_X) == 0x000180, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakVector_Y) == 0x000188, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_BreakVector_Z) == 0x000190, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000198, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001A0, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_MakeVector_ReturnValue) == 0x0001A8, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_IsPointInBoxWithTransform_ReturnValue) == 0x0001C0, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_IsPointInBoxWithTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_IsPointInsideZone, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0001C8, "Member 'BP_EQSDefendZone_C_IsPointInsideZone::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_OnEnemySpawned \ +static_assert(alignof(BP_EQSDefendZone_C_OnEnemySpawned) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_OnEnemySpawned"); \ +static_assert(sizeof(BP_EQSDefendZone_C_OnEnemySpawned) == 0x000010, "Wrong size on BP_EQSDefendZone_C_OnEnemySpawned"); \ +static_assert(offsetof(BP_EQSDefendZone_C_OnEnemySpawned, Enemy) == 0x000000, "Member 'BP_EQSDefendZone_C_OnEnemySpawned::Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_OnEnemySpawned, Spawner) == 0x000008, "Member 'BP_EQSDefendZone_C_OnEnemySpawned::Spawner' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_ProjectAndStorePoint \ +static_assert(alignof(BP_EQSDefendZone_C_ProjectAndStorePoint) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_ProjectAndStorePoint"); \ +static_assert(sizeof(BP_EQSDefendZone_C_ProjectAndStorePoint) == 0x000068, "Wrong size on BP_EQSDefendZone_C_ProjectAndStorePoint"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, Point_0) == 0x000000, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::Point_0' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000020, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation) == 0x000040, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_K2_ProjectPointToNavigation_ReturnValue) == 0x000058, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_K2_ProjectPointToNavigation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_Array_Add_ReturnValue) == 0x00005C, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_ProjectAndStorePoint, CallFunc_IsPointInsideZone_ReturnValue) == 0x000060, "Member 'BP_EQSDefendZone_C_ProjectAndStorePoint::CallFunc_IsPointInsideZone_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_RandomisePointLocationInBounds \ +static_assert(alignof(BP_EQSDefendZone_C_RandomisePointLocationInBounds) == 0x000008, "Wrong alignment on BP_EQSDefendZone_C_RandomisePointLocationInBounds"); \ +static_assert(sizeof(BP_EQSDefendZone_C_RandomisePointLocationInBounds) == 0x000060, "Wrong size on BP_EQSDefendZone_C_RandomisePointLocationInBounds"); \ +static_assert(offsetof(BP_EQSDefendZone_C_RandomisePointLocationInBounds, Vector) == 0x000000, "Member 'BP_EQSDefendZone_C_RandomisePointLocationInBounds::Vector' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_RandomisePointLocationInBounds, Point_0) == 0x000018, "Member 'BP_EQSDefendZone_C_RandomisePointLocationInBounds::Point_0' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_RandomisePointLocationInBounds, CallFunc_MakeVector_ReturnValue) == 0x000030, "Member 'BP_EQSDefendZone_C_RandomisePointLocationInBounds::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_RandomisePointLocationInBounds, CallFunc_RandomPointInBoundingBox_ReturnValue) == 0x000048, "Member 'BP_EQSDefendZone_C_RandomisePointLocationInBounds::CallFunc_RandomPointInBoundingBox_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_Set_Enabled \ +static_assert(alignof(BP_EQSDefendZone_C_Set_Enabled) == 0x000001, "Wrong alignment on BP_EQSDefendZone_C_Set_Enabled"); \ +static_assert(sizeof(BP_EQSDefendZone_C_Set_Enabled) == 0x000001, "Wrong size on BP_EQSDefendZone_C_Set_Enabled"); \ +static_assert(offsetof(BP_EQSDefendZone_C_Set_Enabled, Enabled_0) == 0x000000, "Member 'BP_EQSDefendZone_C_Set_Enabled::Enabled_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_UserConstructionScript \ +static_assert(alignof(BP_EQSDefendZone_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_EQSDefendZone_C_UserConstructionScript"); \ +static_assert(sizeof(BP_EQSDefendZone_C_UserConstructionScript) == 0x0000C0, "Wrong size on BP_EQSDefendZone_C_UserConstructionScript"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_EQSDefendZone_C_UserConstructionScript::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_EQSDefendZone_C_UserConstructionScript::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue) == 0x00000C, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_Array_Get_Item) == 0x000010, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue) == 0x000030, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EQSDefendZone_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x0000B0, "Member 'BP_EQSDefendZone_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EQSDefendZone_C_WidgetGeneratePoints \ +static_assert(alignof(BP_EQSDefendZone_C_WidgetGeneratePoints) == 0x000001, "Wrong alignment on BP_EQSDefendZone_C_WidgetGeneratePoints"); \ +static_assert(sizeof(BP_EQSDefendZone_C_WidgetGeneratePoints) == 0x000001, "Wrong size on BP_EQSDefendZone_C_WidgetGeneratePoints"); \ +static_assert(offsetof(BP_EQSDefendZone_C_WidgetGeneratePoints, Debug_0) == 0x000000, "Member 'BP_EQSDefendZone_C_WidgetGeneratePoints::Debug_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EQSDefendZone_C \ +static_assert(alignof(ABP_EQSDefendZone_C) == 0x000010, "Wrong alignment on ABP_EQSDefendZone_C"); \ +static_assert(sizeof(ABP_EQSDefendZone_C) == 0x0003E0, "Wrong size on ABP_EQSDefendZone_C"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, UberGraphFrame) == 0x0002B0, "Member 'ABP_EQSDefendZone_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, EQSVolume) == 0x0002B8, "Member 'ABP_EQSDefendZone_C::EQSVolume' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Billboard) == 0x0002C0, "Member 'ABP_EQSDefendZone_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Scene) == 0x0002C8, "Member 'ABP_EQSDefendZone_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Debug) == 0x0002D0, "Member 'ABP_EQSDefendZone_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Enabled) == 0x0002D1, "Member 'ABP_EQSDefendZone_C::Enabled' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, QueryResponseRange) == 0x0002D8, "Member 'ABP_EQSDefendZone_C::QueryResponseRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, AutoGenerateOnMove) == 0x0002E0, "Member 'ABP_EQSDefendZone_C::AutoGenerateOnMove' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, GeneratePointsInHysteresis) == 0x0002E1, "Member 'ABP_EQSDefendZone_C::GeneratePointsInHysteresis' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, HysteresisExtent) == 0x0002E8, "Member 'ABP_EQSDefendZone_C::HysteresisExtent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, ScatterPoints) == 0x0002F0, "Member 'ABP_EQSDefendZone_C::ScatterPoints' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, OnlyUseManualPoints) == 0x0002F1, "Member 'ABP_EQSDefendZone_C::OnlyUseManualPoints' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, PointOffset) == 0x0002F8, "Member 'ABP_EQSDefendZone_C::PointOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, ScatterRadius) == 0x000300, "Member 'ABP_EQSDefendZone_C::ScatterRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Point) == 0x000308, "Member 'ABP_EQSDefendZone_C::Point' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, RetryCount) == 0x000320, "Member 'ABP_EQSDefendZone_C::RetryCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, VerticalTestStep) == 0x000328, "Member 'ABP_EQSDefendZone_C::VerticalTestStep' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, ManualDefendPoints) == 0x000330, "Member 'ABP_EQSDefendZone_C::ManualDefendPoints' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Spawners) == 0x000340, "Member 'ABP_EQSDefendZone_C::Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, Additive) == 0x000350, "Member 'ABP_EQSDefendZone_C::Additive' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, ValidSpawners) == 0x000358, "Member 'ABP_EQSDefendZone_C::ValidSpawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, WorldTransformTemp) == 0x000370, "Member 'ABP_EQSDefendZone_C::WorldTransformTemp' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, OptimalPointCount) == 0x0003D0, "Member 'ABP_EQSDefendZone_C::OptimalPointCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_EQSDefendZone_C, HandledSpawnerCount) == 0x0003D4, "Member 'ABP_EQSDefendZone_C::HandledSpawnerCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithImportInfo \ +static_assert(alignof(FDatasmithImportInfo) == 0x000001, "Wrong alignment on FDatasmithImportInfo"); \ +static_assert(sizeof(FDatasmithImportInfo) == 0x000001, "Wrong size on FDatasmithImportInfo"); \ + +#define DUMPER7_ASSERTS_FDatasmithCameraLookatTrackingSettingsTemplate \ +static_assert(alignof(FDatasmithCameraLookatTrackingSettingsTemplate) == 0x000008, "Wrong alignment on FDatasmithCameraLookatTrackingSettingsTemplate"); \ +static_assert(sizeof(FDatasmithCameraLookatTrackingSettingsTemplate) == 0x000030, "Wrong size on FDatasmithCameraLookatTrackingSettingsTemplate"); \ +static_assert(offsetof(FDatasmithCameraLookatTrackingSettingsTemplate, ActorToTrack) == 0x000008, "Member 'FDatasmithCameraLookatTrackingSettingsTemplate::ActorToTrack' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithCameraFilmbackSettingsTemplate \ +static_assert(alignof(FDatasmithCameraFilmbackSettingsTemplate) == 0x000004, "Wrong alignment on FDatasmithCameraFilmbackSettingsTemplate"); \ +static_assert(sizeof(FDatasmithCameraFilmbackSettingsTemplate) == 0x000008, "Wrong size on FDatasmithCameraFilmbackSettingsTemplate"); \ +static_assert(offsetof(FDatasmithCameraFilmbackSettingsTemplate, SensorWidth) == 0x000000, "Member 'FDatasmithCameraFilmbackSettingsTemplate::SensorWidth' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithCameraFilmbackSettingsTemplate, SensorHeight) == 0x000004, "Member 'FDatasmithCameraFilmbackSettingsTemplate::SensorHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithCameraLensSettingsTemplate \ +static_assert(alignof(FDatasmithCameraLensSettingsTemplate) == 0x000004, "Wrong alignment on FDatasmithCameraLensSettingsTemplate"); \ +static_assert(sizeof(FDatasmithCameraLensSettingsTemplate) == 0x000004, "Wrong size on FDatasmithCameraLensSettingsTemplate"); \ +static_assert(offsetof(FDatasmithCameraLensSettingsTemplate, MaxFStop) == 0x000000, "Member 'FDatasmithCameraLensSettingsTemplate::MaxFStop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithCameraFocusSettingsTemplate \ +static_assert(alignof(FDatasmithCameraFocusSettingsTemplate) == 0x000004, "Wrong alignment on FDatasmithCameraFocusSettingsTemplate"); \ +static_assert(sizeof(FDatasmithCameraFocusSettingsTemplate) == 0x000008, "Wrong size on FDatasmithCameraFocusSettingsTemplate"); \ +static_assert(offsetof(FDatasmithCameraFocusSettingsTemplate, FocusMethod) == 0x000000, "Member 'FDatasmithCameraFocusSettingsTemplate::FocusMethod' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithCameraFocusSettingsTemplate, ManualFocusDistance) == 0x000004, "Member 'FDatasmithCameraFocusSettingsTemplate::ManualFocusDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithPostProcessSettingsTemplate \ +static_assert(alignof(FDatasmithPostProcessSettingsTemplate) == 0x000010, "Wrong alignment on FDatasmithPostProcessSettingsTemplate"); \ +static_assert(sizeof(FDatasmithPostProcessSettingsTemplate) == 0x000040, "Wrong size on FDatasmithPostProcessSettingsTemplate"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, WhiteTemp) == 0x000008, "Member 'FDatasmithPostProcessSettingsTemplate::WhiteTemp' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, VignetteIntensity) == 0x00000C, "Member 'FDatasmithPostProcessSettingsTemplate::VignetteIntensity' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, ColorSaturation) == 0x000010, "Member 'FDatasmithPostProcessSettingsTemplate::ColorSaturation' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, AutoExposureMethod) == 0x000030, "Member 'FDatasmithPostProcessSettingsTemplate::AutoExposureMethod' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, CameraISO) == 0x000034, "Member 'FDatasmithPostProcessSettingsTemplate::CameraISO' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, CameraShutterSpeed) == 0x000038, "Member 'FDatasmithPostProcessSettingsTemplate::CameraShutterSpeed' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithPostProcessSettingsTemplate, DepthOfFieldFstop) == 0x00003C, "Member 'FDatasmithPostProcessSettingsTemplate::DepthOfFieldFstop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithAssetImportOptions \ +static_assert(alignof(FDatasmithAssetImportOptions) == 0x000004, "Wrong alignment on FDatasmithAssetImportOptions"); \ +static_assert(sizeof(FDatasmithAssetImportOptions) == 0x000008, "Wrong size on FDatasmithAssetImportOptions"); \ +static_assert(offsetof(FDatasmithAssetImportOptions, PackagePath) == 0x000000, "Member 'FDatasmithAssetImportOptions::PackagePath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithStaticMeshImportOptions \ +static_assert(alignof(FDatasmithStaticMeshImportOptions) == 0x000001, "Wrong alignment on FDatasmithStaticMeshImportOptions"); \ +static_assert(sizeof(FDatasmithStaticMeshImportOptions) == 0x000004, "Wrong size on FDatasmithStaticMeshImportOptions"); \ +static_assert(offsetof(FDatasmithStaticMeshImportOptions, MinLightmapResolution) == 0x000000, "Member 'FDatasmithStaticMeshImportOptions::MinLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithStaticMeshImportOptions, MaxLightmapResolution) == 0x000001, "Member 'FDatasmithStaticMeshImportOptions::MaxLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithStaticMeshImportOptions, bGenerateLightmapUVs) == 0x000002, "Member 'FDatasmithStaticMeshImportOptions::bGenerateLightmapUVs' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithStaticMeshImportOptions, bRemoveDegenerates) == 0x000003, "Member 'FDatasmithStaticMeshImportOptions::bRemoveDegenerates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithReimportOptions \ +static_assert(alignof(FDatasmithReimportOptions) == 0x000001, "Wrong alignment on FDatasmithReimportOptions"); \ +static_assert(sizeof(FDatasmithReimportOptions) == 0x000002, "Wrong size on FDatasmithReimportOptions"); \ +static_assert(offsetof(FDatasmithReimportOptions, bUpdateActors) == 0x000000, "Member 'FDatasmithReimportOptions::bUpdateActors' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithReimportOptions, bRespawnDeletedActors) == 0x000001, "Member 'FDatasmithReimportOptions::bRespawnDeletedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithImportBaseOptions \ +static_assert(alignof(FDatasmithImportBaseOptions) == 0x000004, "Wrong alignment on FDatasmithImportBaseOptions"); \ +static_assert(sizeof(FDatasmithImportBaseOptions) == 0x000014, "Wrong size on FDatasmithImportBaseOptions"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, SceneHandling) == 0x000000, "Member 'FDatasmithImportBaseOptions::SceneHandling' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, bIncludeGeometry) == 0x000001, "Member 'FDatasmithImportBaseOptions::bIncludeGeometry' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, bIncludeMaterial) == 0x000002, "Member 'FDatasmithImportBaseOptions::bIncludeMaterial' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, bIncludeLight) == 0x000003, "Member 'FDatasmithImportBaseOptions::bIncludeLight' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, bIncludeCamera) == 0x000004, "Member 'FDatasmithImportBaseOptions::bIncludeCamera' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, bIncludeAnimation) == 0x000005, "Member 'FDatasmithImportBaseOptions::bIncludeAnimation' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, AssetOptions) == 0x000008, "Member 'FDatasmithImportBaseOptions::AssetOptions' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithImportBaseOptions, StaticMeshOptions) == 0x000010, "Member 'FDatasmithImportBaseOptions::StaticMeshOptions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithTessellationOptions \ +static_assert(alignof(FDatasmithTessellationOptions) == 0x000004, "Wrong alignment on FDatasmithTessellationOptions"); \ +static_assert(sizeof(FDatasmithTessellationOptions) == 0x000010, "Wrong size on FDatasmithTessellationOptions"); \ +static_assert(offsetof(FDatasmithTessellationOptions, ChordTolerance) == 0x000000, "Member 'FDatasmithTessellationOptions::ChordTolerance' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithTessellationOptions, MaxEdgeLength) == 0x000004, "Member 'FDatasmithTessellationOptions::MaxEdgeLength' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithTessellationOptions, NormalTolerance) == 0x000008, "Member 'FDatasmithTessellationOptions::NormalTolerance' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithTessellationOptions, StitchingTechnique) == 0x00000C, "Member 'FDatasmithTessellationOptions::StitchingTechnique' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithRetessellationOptions \ +static_assert(alignof(FDatasmithRetessellationOptions) == 0x000004, "Wrong alignment on FDatasmithRetessellationOptions"); \ +static_assert(sizeof(FDatasmithRetessellationOptions) == 0x000014, "Wrong size on FDatasmithRetessellationOptions"); \ +static_assert(offsetof(FDatasmithRetessellationOptions, RetessellationRule) == 0x000010, "Member 'FDatasmithRetessellationOptions::RetessellationRule' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithStaticParameterSetTemplate \ +static_assert(alignof(FDatasmithStaticParameterSetTemplate) == 0x000008, "Wrong alignment on FDatasmithStaticParameterSetTemplate"); \ +static_assert(sizeof(FDatasmithStaticParameterSetTemplate) == 0x000050, "Wrong size on FDatasmithStaticParameterSetTemplate"); \ +static_assert(offsetof(FDatasmithStaticParameterSetTemplate, StaticSwitchParameters) == 0x000000, "Member 'FDatasmithStaticParameterSetTemplate::StaticSwitchParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithMeshBuildSettingsTemplate \ +static_assert(alignof(FDatasmithMeshBuildSettingsTemplate) == 0x000004, "Wrong alignment on FDatasmithMeshBuildSettingsTemplate"); \ +static_assert(sizeof(FDatasmithMeshBuildSettingsTemplate) == 0x000010, "Wrong size on FDatasmithMeshBuildSettingsTemplate"); \ +static_assert(offsetof(FDatasmithMeshBuildSettingsTemplate, MinLightmapResolution) == 0x000004, "Member 'FDatasmithMeshBuildSettingsTemplate::MinLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithMeshBuildSettingsTemplate, SrcLightmapIndex) == 0x000008, "Member 'FDatasmithMeshBuildSettingsTemplate::SrcLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithMeshBuildSettingsTemplate, DstLightmapIndex) == 0x00000C, "Member 'FDatasmithMeshBuildSettingsTemplate::DstLightmapIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithStaticMaterialTemplate \ +static_assert(alignof(FDatasmithStaticMaterialTemplate) == 0x000008, "Wrong alignment on FDatasmithStaticMaterialTemplate"); \ +static_assert(sizeof(FDatasmithStaticMaterialTemplate) == 0x000010, "Wrong size on FDatasmithStaticMaterialTemplate"); \ +static_assert(offsetof(FDatasmithStaticMaterialTemplate, MaterialSlotName) == 0x000000, "Member 'FDatasmithStaticMaterialTemplate::MaterialSlotName' has a wrong offset!"); \ +static_assert(offsetof(FDatasmithStaticMaterialTemplate, MaterialInterface) == 0x000008, "Member 'FDatasmithStaticMaterialTemplate::MaterialInterface' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithMeshSectionInfoTemplate \ +static_assert(alignof(FDatasmithMeshSectionInfoTemplate) == 0x000004, "Wrong alignment on FDatasmithMeshSectionInfoTemplate"); \ +static_assert(sizeof(FDatasmithMeshSectionInfoTemplate) == 0x000004, "Wrong size on FDatasmithMeshSectionInfoTemplate"); \ +static_assert(offsetof(FDatasmithMeshSectionInfoTemplate, MaterialIndex) == 0x000000, "Member 'FDatasmithMeshSectionInfoTemplate::MaterialIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDatasmithMeshSectionInfoMapTemplate \ +static_assert(alignof(FDatasmithMeshSectionInfoMapTemplate) == 0x000008, "Wrong alignment on FDatasmithMeshSectionInfoMapTemplate"); \ +static_assert(sizeof(FDatasmithMeshSectionInfoMapTemplate) == 0x000050, "Wrong size on FDatasmithMeshSectionInfoMapTemplate"); \ +static_assert(offsetof(FDatasmithMeshSectionInfoMapTemplate, Map) == 0x000000, "Member 'FDatasmithMeshSectionInfoMapTemplate::Map' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithObjectTemplate \ +static_assert(alignof(UDatasmithObjectTemplate) == 0x000008, "Wrong alignment on UDatasmithObjectTemplate"); \ +static_assert(sizeof(UDatasmithObjectTemplate) == 0x000030, "Wrong size on UDatasmithObjectTemplate"); \ + +#define DUMPER7_ASSERTS_UDatasmithActorTemplate \ +static_assert(alignof(UDatasmithActorTemplate) == 0x000008, "Wrong alignment on UDatasmithActorTemplate"); \ +static_assert(sizeof(UDatasmithActorTemplate) == 0x0000D0, "Wrong size on UDatasmithActorTemplate"); \ +static_assert(offsetof(UDatasmithActorTemplate, Layers) == 0x000030, "Member 'UDatasmithActorTemplate::Layers' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithActorTemplate, Tags) == 0x000080, "Member 'UDatasmithActorTemplate::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithAdditionalData \ +static_assert(alignof(UDatasmithAdditionalData) == 0x000008, "Wrong alignment on UDatasmithAdditionalData"); \ +static_assert(sizeof(UDatasmithAdditionalData) == 0x000028, "Wrong size on UDatasmithAdditionalData"); \ + +#define DUMPER7_ASSERTS_ADatasmithAreaLightActor \ +static_assert(alignof(ADatasmithAreaLightActor) == 0x000008, "Wrong alignment on ADatasmithAreaLightActor"); \ +static_assert(sizeof(ADatasmithAreaLightActor) == 0x000310, "Wrong size on ADatasmithAreaLightActor"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Mobility) == 0x000298, "Member 'ADatasmithAreaLightActor::Mobility' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, LightType) == 0x000299, "Member 'ADatasmithAreaLightActor::LightType' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, LightShape) == 0x00029A, "Member 'ADatasmithAreaLightActor::LightShape' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Dimensions) == 0x0002A0, "Member 'ADatasmithAreaLightActor::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Intensity) == 0x0002B0, "Member 'ADatasmithAreaLightActor::Intensity' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, IntensityUnits) == 0x0002B4, "Member 'ADatasmithAreaLightActor::IntensityUnits' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Color) == 0x0002B8, "Member 'ADatasmithAreaLightActor::Color' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Temperature) == 0x0002C8, "Member 'ADatasmithAreaLightActor::Temperature' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, IESTexture) == 0x0002D0, "Member 'ADatasmithAreaLightActor::IESTexture' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, bUseIESBrightness) == 0x0002D8, "Member 'ADatasmithAreaLightActor::bUseIESBrightness' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, IESBrightnessScale) == 0x0002DC, "Member 'ADatasmithAreaLightActor::IESBrightnessScale' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, Rotation) == 0x0002E0, "Member 'ADatasmithAreaLightActor::Rotation' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, SourceRadius) == 0x0002F8, "Member 'ADatasmithAreaLightActor::SourceRadius' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, SourceLength) == 0x0002FC, "Member 'ADatasmithAreaLightActor::SourceLength' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, AttenuationRadius) == 0x000300, "Member 'ADatasmithAreaLightActor::AttenuationRadius' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, SpotlightInnerAngle) == 0x000304, "Member 'ADatasmithAreaLightActor::SpotlightInnerAngle' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithAreaLightActor, SpotlightOuterAngle) == 0x000308, "Member 'ADatasmithAreaLightActor::SpotlightOuterAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithAreaLightActorTemplate \ +static_assert(alignof(UDatasmithAreaLightActorTemplate) == 0x000008, "Wrong alignment on UDatasmithAreaLightActorTemplate"); \ +static_assert(sizeof(UDatasmithAreaLightActorTemplate) == 0x0000C0, "Wrong size on UDatasmithAreaLightActorTemplate"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, LightType) == 0x000030, "Member 'UDatasmithAreaLightActorTemplate::LightType' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, LightShape) == 0x000031, "Member 'UDatasmithAreaLightActorTemplate::LightShape' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, Dimensions) == 0x000038, "Member 'UDatasmithAreaLightActorTemplate::Dimensions' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, Color) == 0x000048, "Member 'UDatasmithAreaLightActorTemplate::Color' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, Intensity) == 0x000058, "Member 'UDatasmithAreaLightActorTemplate::Intensity' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, IntensityUnits) == 0x00005C, "Member 'UDatasmithAreaLightActorTemplate::IntensityUnits' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, Temperature) == 0x000060, "Member 'UDatasmithAreaLightActorTemplate::Temperature' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, IESTexture) == 0x000068, "Member 'UDatasmithAreaLightActorTemplate::IESTexture' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, bUseIESBrightness) == 0x000090, "Member 'UDatasmithAreaLightActorTemplate::bUseIESBrightness' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, IESBrightnessScale) == 0x000094, "Member 'UDatasmithAreaLightActorTemplate::IESBrightnessScale' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, Rotation) == 0x000098, "Member 'UDatasmithAreaLightActorTemplate::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, SourceRadius) == 0x0000B0, "Member 'UDatasmithAreaLightActorTemplate::SourceRadius' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, SourceLength) == 0x0000B4, "Member 'UDatasmithAreaLightActorTemplate::SourceLength' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithAreaLightActorTemplate, AttenuationRadius) == 0x0000B8, "Member 'UDatasmithAreaLightActorTemplate::AttenuationRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithAssetImportData \ +static_assert(alignof(UDatasmithAssetImportData) == 0x000008, "Wrong alignment on UDatasmithAssetImportData"); \ +static_assert(sizeof(UDatasmithAssetImportData) == 0x000028, "Wrong size on UDatasmithAssetImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithStaticMeshImportData \ +static_assert(alignof(UDatasmithStaticMeshImportData) == 0x000008, "Wrong alignment on UDatasmithStaticMeshImportData"); \ +static_assert(sizeof(UDatasmithStaticMeshImportData) == 0x000028, "Wrong size on UDatasmithStaticMeshImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithStaticMeshCADImportData \ +static_assert(alignof(UDatasmithStaticMeshCADImportData) == 0x000008, "Wrong alignment on UDatasmithStaticMeshCADImportData"); \ +static_assert(sizeof(UDatasmithStaticMeshCADImportData) == 0x000028, "Wrong size on UDatasmithStaticMeshCADImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithSceneImportData \ +static_assert(alignof(UDatasmithSceneImportData) == 0x000008, "Wrong alignment on UDatasmithSceneImportData"); \ +static_assert(sizeof(UDatasmithSceneImportData) == 0x000028, "Wrong size on UDatasmithSceneImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithTranslatedSceneImportData \ +static_assert(alignof(UDatasmithTranslatedSceneImportData) == 0x000008, "Wrong alignment on UDatasmithTranslatedSceneImportData"); \ +static_assert(sizeof(UDatasmithTranslatedSceneImportData) == 0x000028, "Wrong size on UDatasmithTranslatedSceneImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithCADImportSceneData \ +static_assert(alignof(UDatasmithCADImportSceneData) == 0x000008, "Wrong alignment on UDatasmithCADImportSceneData"); \ +static_assert(sizeof(UDatasmithCADImportSceneData) == 0x000028, "Wrong size on UDatasmithCADImportSceneData"); \ + +#define DUMPER7_ASSERTS_UDatasmithMDLSceneImportData \ +static_assert(alignof(UDatasmithMDLSceneImportData) == 0x000008, "Wrong alignment on UDatasmithMDLSceneImportData"); \ +static_assert(sizeof(UDatasmithMDLSceneImportData) == 0x000028, "Wrong size on UDatasmithMDLSceneImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithGLTFSceneImportData \ +static_assert(alignof(UDatasmithGLTFSceneImportData) == 0x000008, "Wrong alignment on UDatasmithGLTFSceneImportData"); \ +static_assert(sizeof(UDatasmithGLTFSceneImportData) == 0x000070, "Wrong size on UDatasmithGLTFSceneImportData"); \ +static_assert(offsetof(UDatasmithGLTFSceneImportData, Generator) == 0x000028, "Member 'UDatasmithGLTFSceneImportData::Generator' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithGLTFSceneImportData, Version) == 0x000038, "Member 'UDatasmithGLTFSceneImportData::Version' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithGLTFSceneImportData, Author) == 0x000040, "Member 'UDatasmithGLTFSceneImportData::Author' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithGLTFSceneImportData, License) == 0x000050, "Member 'UDatasmithGLTFSceneImportData::License' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithGLTFSceneImportData, Source) == 0x000060, "Member 'UDatasmithGLTFSceneImportData::Source' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithStaticMeshGLTFImportData \ +static_assert(alignof(UDatasmithStaticMeshGLTFImportData) == 0x000008, "Wrong alignment on UDatasmithStaticMeshGLTFImportData"); \ +static_assert(sizeof(UDatasmithStaticMeshGLTFImportData) == 0x000038, "Wrong size on UDatasmithStaticMeshGLTFImportData"); \ +static_assert(offsetof(UDatasmithStaticMeshGLTFImportData, SourceMeshName) == 0x000028, "Member 'UDatasmithStaticMeshGLTFImportData::SourceMeshName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithFBXSceneImportData \ +static_assert(alignof(UDatasmithFBXSceneImportData) == 0x000008, "Wrong alignment on UDatasmithFBXSceneImportData"); \ +static_assert(sizeof(UDatasmithFBXSceneImportData) == 0x000048, "Wrong size on UDatasmithFBXSceneImportData"); \ +static_assert(offsetof(UDatasmithFBXSceneImportData, bGenerateLightmapUVs) == 0x000028, "Member 'UDatasmithFBXSceneImportData::bGenerateLightmapUVs' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithFBXSceneImportData, TexturesDir) == 0x000030, "Member 'UDatasmithFBXSceneImportData::TexturesDir' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithFBXSceneImportData, IntermediateSerialization) == 0x000040, "Member 'UDatasmithFBXSceneImportData::IntermediateSerialization' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithFBXSceneImportData, bColorizeMaterials) == 0x000041, "Member 'UDatasmithFBXSceneImportData::bColorizeMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithDeltaGenAssetImportData \ +static_assert(alignof(UDatasmithDeltaGenAssetImportData) == 0x000008, "Wrong alignment on UDatasmithDeltaGenAssetImportData"); \ +static_assert(sizeof(UDatasmithDeltaGenAssetImportData) == 0x000028, "Wrong size on UDatasmithDeltaGenAssetImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithDeltaGenSceneImportData \ +static_assert(alignof(UDatasmithDeltaGenSceneImportData) == 0x000008, "Wrong alignment on UDatasmithDeltaGenSceneImportData"); \ +static_assert(sizeof(UDatasmithDeltaGenSceneImportData) == 0x000090, "Wrong size on UDatasmithDeltaGenSceneImportData"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bMergeNodes) == 0x000048, "Member 'UDatasmithDeltaGenSceneImportData::bMergeNodes' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bOptimizeDuplicatedNodes) == 0x000049, "Member 'UDatasmithDeltaGenSceneImportData::bOptimizeDuplicatedNodes' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bRemoveInvisibleNodes) == 0x00004A, "Member 'UDatasmithDeltaGenSceneImportData::bRemoveInvisibleNodes' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bSimplifyNodeHierarchy) == 0x00004B, "Member 'UDatasmithDeltaGenSceneImportData::bSimplifyNodeHierarchy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bImportVar) == 0x00004C, "Member 'UDatasmithDeltaGenSceneImportData::bImportVar' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, VarPath) == 0x000050, "Member 'UDatasmithDeltaGenSceneImportData::VarPath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bImportPos) == 0x000060, "Member 'UDatasmithDeltaGenSceneImportData::bImportPos' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, PosPath) == 0x000068, "Member 'UDatasmithDeltaGenSceneImportData::PosPath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, bImportTml) == 0x000078, "Member 'UDatasmithDeltaGenSceneImportData::bImportTml' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDeltaGenSceneImportData, TmlPath) == 0x000080, "Member 'UDatasmithDeltaGenSceneImportData::TmlPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithVREDAssetImportData \ +static_assert(alignof(UDatasmithVREDAssetImportData) == 0x000008, "Wrong alignment on UDatasmithVREDAssetImportData"); \ +static_assert(sizeof(UDatasmithVREDAssetImportData) == 0x000028, "Wrong size on UDatasmithVREDAssetImportData"); \ + +#define DUMPER7_ASSERTS_UDatasmithVREDSceneImportData \ +static_assert(alignof(UDatasmithVREDSceneImportData) == 0x000008, "Wrong alignment on UDatasmithVREDSceneImportData"); \ +static_assert(sizeof(UDatasmithVREDSceneImportData) == 0x0000A8, "Wrong size on UDatasmithVREDSceneImportData"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bMergeNodes) == 0x000048, "Member 'UDatasmithVREDSceneImportData::bMergeNodes' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bOptimizeDuplicatedNodes) == 0x000049, "Member 'UDatasmithVREDSceneImportData::bOptimizeDuplicatedNodes' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bImportMats) == 0x00004A, "Member 'UDatasmithVREDSceneImportData::bImportMats' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, MatsPath) == 0x000050, "Member 'UDatasmithVREDSceneImportData::MatsPath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bImportVar) == 0x000060, "Member 'UDatasmithVREDSceneImportData::bImportVar' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bCleanVar) == 0x000061, "Member 'UDatasmithVREDSceneImportData::bCleanVar' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, VarPath) == 0x000068, "Member 'UDatasmithVREDSceneImportData::VarPath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bImportLightInfo) == 0x000078, "Member 'UDatasmithVREDSceneImportData::bImportLightInfo' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, LightInfoPath) == 0x000080, "Member 'UDatasmithVREDSceneImportData::LightInfoPath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, bImportClipInfo) == 0x000090, "Member 'UDatasmithVREDSceneImportData::bImportClipInfo' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithVREDSceneImportData, ClipInfoPath) == 0x000098, "Member 'UDatasmithVREDSceneImportData::ClipInfoPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithAssetUserData \ +static_assert(alignof(UDatasmithAssetUserData) == 0x000008, "Wrong alignment on UDatasmithAssetUserData"); \ +static_assert(sizeof(UDatasmithAssetUserData) == 0x000078, "Wrong size on UDatasmithAssetUserData"); \ +static_assert(offsetof(UDatasmithAssetUserData, MetaData) == 0x000028, "Member 'UDatasmithAssetUserData::MetaData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithCineCameraActorTemplate \ +static_assert(alignof(UDatasmithCineCameraActorTemplate) == 0x000008, "Wrong alignment on UDatasmithCineCameraActorTemplate"); \ +static_assert(sizeof(UDatasmithCineCameraActorTemplate) == 0x000060, "Wrong size on UDatasmithCineCameraActorTemplate"); \ +static_assert(offsetof(UDatasmithCineCameraActorTemplate, LookatTrackingSettings) == 0x000030, "Member 'UDatasmithCineCameraActorTemplate::LookatTrackingSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithCineCameraComponentTemplate \ +static_assert(alignof(UDatasmithCineCameraComponentTemplate) == 0x000010, "Wrong alignment on UDatasmithCineCameraComponentTemplate"); \ +static_assert(sizeof(UDatasmithCineCameraComponentTemplate) == 0x000090, "Wrong size on UDatasmithCineCameraComponentTemplate"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, FilmbackSettings) == 0x000030, "Member 'UDatasmithCineCameraComponentTemplate::FilmbackSettings' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, LensSettings) == 0x000038, "Member 'UDatasmithCineCameraComponentTemplate::LensSettings' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, FocusSettings) == 0x00003C, "Member 'UDatasmithCineCameraComponentTemplate::FocusSettings' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, CurrentFocalLength) == 0x000044, "Member 'UDatasmithCineCameraComponentTemplate::CurrentFocalLength' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, CurrentAperture) == 0x000048, "Member 'UDatasmithCineCameraComponentTemplate::CurrentAperture' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithCineCameraComponentTemplate, PostProcessSettings) == 0x000050, "Member 'UDatasmithCineCameraComponentTemplate::PostProcessSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DatasmithContentBlueprintLibrary_GetDatasmithUserData \ +static_assert(alignof(DatasmithContentBlueprintLibrary_GetDatasmithUserData) == 0x000008, "Wrong alignment on DatasmithContentBlueprintLibrary_GetDatasmithUserData"); \ +static_assert(sizeof(DatasmithContentBlueprintLibrary_GetDatasmithUserData) == 0x000010, "Wrong size on DatasmithContentBlueprintLibrary_GetDatasmithUserData"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserData, Object) == 0x000000, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserData::Object' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserData, ReturnValue) == 0x000008, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue \ +static_assert(alignof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue) == 0x000008, "Wrong alignment on DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue"); \ +static_assert(sizeof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue) == 0x000038, "Wrong size on DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue, Object) == 0x000000, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue::Object' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue, StringToMatch) == 0x000008, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue::StringToMatch' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue, OutKeys) == 0x000018, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue::OutKeys' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue, OutValues) == 0x000028, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataKeysAndValuesForValue::OutValues' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey \ +static_assert(alignof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey) == 0x000008, "Wrong alignment on DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey"); \ +static_assert(sizeof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey) == 0x000028, "Wrong size on DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey, Object) == 0x000000, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey::Object' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey, Key) == 0x000008, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey::Key' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey, bPartialMatchKey) == 0x000010, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey::bPartialMatchKey' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey, ReturnValue) == 0x000018, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValueForKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey \ +static_assert(alignof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey) == 0x000008, "Wrong alignment on DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey"); \ +static_assert(sizeof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey) == 0x000028, "Wrong size on DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey, Object) == 0x000000, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey::Object' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey, Key) == 0x000008, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey::Key' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey, bPartialMatchKey) == 0x000010, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey::bPartialMatchKey' has a wrong offset!"); \ +static_assert(offsetof(DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey, ReturnValue) == 0x000018, "Member 'DatasmithContentBlueprintLibrary_GetDatasmithUserDataValuesForKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithContentBlueprintLibrary \ +static_assert(alignof(UDatasmithContentBlueprintLibrary) == 0x000008, "Wrong alignment on UDatasmithContentBlueprintLibrary"); \ +static_assert(sizeof(UDatasmithContentBlueprintLibrary) == 0x000028, "Wrong size on UDatasmithContentBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UDatasmithCustomActionBase \ +static_assert(alignof(UDatasmithCustomActionBase) == 0x000008, "Wrong alignment on UDatasmithCustomActionBase"); \ +static_assert(sizeof(UDatasmithCustomActionBase) == 0x000030, "Wrong size on UDatasmithCustomActionBase"); \ + +#define DUMPER7_ASSERTS_UDatasmithDecalComponentTemplate \ +static_assert(alignof(UDatasmithDecalComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithDecalComponentTemplate"); \ +static_assert(sizeof(UDatasmithDecalComponentTemplate) == 0x000058, "Wrong size on UDatasmithDecalComponentTemplate"); \ +static_assert(offsetof(UDatasmithDecalComponentTemplate, SortOrder) == 0x000030, "Member 'UDatasmithDecalComponentTemplate::SortOrder' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDecalComponentTemplate, DecalSize) == 0x000038, "Member 'UDatasmithDecalComponentTemplate::DecalSize' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithDecalComponentTemplate, Material) == 0x000050, "Member 'UDatasmithDecalComponentTemplate::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DatasmithImportedSequencesActor_PlayLevelSequence \ +static_assert(alignof(DatasmithImportedSequencesActor_PlayLevelSequence) == 0x000008, "Wrong alignment on DatasmithImportedSequencesActor_PlayLevelSequence"); \ +static_assert(sizeof(DatasmithImportedSequencesActor_PlayLevelSequence) == 0x000008, "Wrong size on DatasmithImportedSequencesActor_PlayLevelSequence"); \ +static_assert(offsetof(DatasmithImportedSequencesActor_PlayLevelSequence, SequenceToPlay) == 0x000000, "Member 'DatasmithImportedSequencesActor_PlayLevelSequence::SequenceToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADatasmithImportedSequencesActor \ +static_assert(alignof(ADatasmithImportedSequencesActor) == 0x000008, "Wrong alignment on ADatasmithImportedSequencesActor"); \ +static_assert(sizeof(ADatasmithImportedSequencesActor) == 0x0002A8, "Wrong size on ADatasmithImportedSequencesActor"); \ +static_assert(offsetof(ADatasmithImportedSequencesActor, ImportedSequences) == 0x000298, "Member 'ADatasmithImportedSequencesActor::ImportedSequences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithOptionsBase \ +static_assert(alignof(UDatasmithOptionsBase) == 0x000008, "Wrong alignment on UDatasmithOptionsBase"); \ +static_assert(sizeof(UDatasmithOptionsBase) == 0x000028, "Wrong size on UDatasmithOptionsBase"); \ + +#define DUMPER7_ASSERTS_UDatasmithCommonTessellationOptions \ +static_assert(alignof(UDatasmithCommonTessellationOptions) == 0x000008, "Wrong alignment on UDatasmithCommonTessellationOptions"); \ +static_assert(sizeof(UDatasmithCommonTessellationOptions) == 0x000038, "Wrong size on UDatasmithCommonTessellationOptions"); \ +static_assert(offsetof(UDatasmithCommonTessellationOptions, Options) == 0x000028, "Member 'UDatasmithCommonTessellationOptions::Options' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithImportOptions \ +static_assert(alignof(UDatasmithImportOptions) == 0x000008, "Wrong alignment on UDatasmithImportOptions"); \ +static_assert(sizeof(UDatasmithImportOptions) == 0x000090, "Wrong size on UDatasmithImportOptions"); \ +static_assert(offsetof(UDatasmithImportOptions, SearchPackagePolicy) == 0x000028, "Member 'UDatasmithImportOptions::SearchPackagePolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, MaterialConflictPolicy) == 0x000029, "Member 'UDatasmithImportOptions::MaterialConflictPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, TextureConflictPolicy) == 0x00002A, "Member 'UDatasmithImportOptions::TextureConflictPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, StaticMeshActorImportPolicy) == 0x00002B, "Member 'UDatasmithImportOptions::StaticMeshActorImportPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, LightImportPolicy) == 0x00002C, "Member 'UDatasmithImportOptions::LightImportPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, CameraImportPolicy) == 0x00002D, "Member 'UDatasmithImportOptions::CameraImportPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, OtherActorImportPolicy) == 0x00002E, "Member 'UDatasmithImportOptions::OtherActorImportPolicy' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, MaterialQuality) == 0x00002F, "Member 'UDatasmithImportOptions::MaterialQuality' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, BaseOptions) == 0x000030, "Member 'UDatasmithImportOptions::BaseOptions' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, ReimportOptions) == 0x000044, "Member 'UDatasmithImportOptions::ReimportOptions' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, Filename) == 0x000048, "Member 'UDatasmithImportOptions::Filename' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, FilePath) == 0x000058, "Member 'UDatasmithImportOptions::FilePath' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithImportOptions, SourceUri) == 0x000068, "Member 'UDatasmithImportOptions::SourceUri' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithLandscapeTemplate \ +static_assert(alignof(UDatasmithLandscapeTemplate) == 0x000008, "Wrong alignment on UDatasmithLandscapeTemplate"); \ +static_assert(sizeof(UDatasmithLandscapeTemplate) == 0x000040, "Wrong size on UDatasmithLandscapeTemplate"); \ +static_assert(offsetof(UDatasmithLandscapeTemplate, LandscapeMaterial) == 0x000030, "Member 'UDatasmithLandscapeTemplate::LandscapeMaterial' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLandscapeTemplate, StaticLightingLOD) == 0x000038, "Member 'UDatasmithLandscapeTemplate::StaticLightingLOD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithLightComponentTemplate \ +static_assert(alignof(UDatasmithLightComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithLightComponentTemplate"); \ +static_assert(sizeof(UDatasmithLightComponentTemplate) == 0x000068, "Wrong size on UDatasmithLightComponentTemplate"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, Intensity) == 0x000038, "Member 'UDatasmithLightComponentTemplate::Intensity' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, Temperature) == 0x00003C, "Member 'UDatasmithLightComponentTemplate::Temperature' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, IESBrightnessScale) == 0x000040, "Member 'UDatasmithLightComponentTemplate::IESBrightnessScale' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, LightColor) == 0x000044, "Member 'UDatasmithLightComponentTemplate::LightColor' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, LightFunctionMaterial) == 0x000058, "Member 'UDatasmithLightComponentTemplate::LightFunctionMaterial' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithLightComponentTemplate, IESTexture) == 0x000060, "Member 'UDatasmithLightComponentTemplate::IESTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithMaterialInstanceTemplate \ +static_assert(alignof(UDatasmithMaterialInstanceTemplate) == 0x000008, "Wrong alignment on UDatasmithMaterialInstanceTemplate"); \ +static_assert(sizeof(UDatasmithMaterialInstanceTemplate) == 0x000198, "Wrong size on UDatasmithMaterialInstanceTemplate"); \ +static_assert(offsetof(UDatasmithMaterialInstanceTemplate, ParentMaterial) == 0x000030, "Member 'UDatasmithMaterialInstanceTemplate::ParentMaterial' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithMaterialInstanceTemplate, ScalarParameterValues) == 0x000058, "Member 'UDatasmithMaterialInstanceTemplate::ScalarParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithMaterialInstanceTemplate, VectorParameterValues) == 0x0000A8, "Member 'UDatasmithMaterialInstanceTemplate::VectorParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithMaterialInstanceTemplate, TextureParameterValues) == 0x0000F8, "Member 'UDatasmithMaterialInstanceTemplate::TextureParameterValues' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithMaterialInstanceTemplate, StaticParameters) == 0x000148, "Member 'UDatasmithMaterialInstanceTemplate::StaticParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithPointLightComponentTemplate \ +static_assert(alignof(UDatasmithPointLightComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithPointLightComponentTemplate"); \ +static_assert(sizeof(UDatasmithPointLightComponentTemplate) == 0x000040, "Wrong size on UDatasmithPointLightComponentTemplate"); \ +static_assert(offsetof(UDatasmithPointLightComponentTemplate, IntensityUnits) == 0x000030, "Member 'UDatasmithPointLightComponentTemplate::IntensityUnits' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithPointLightComponentTemplate, SourceRadius) == 0x000034, "Member 'UDatasmithPointLightComponentTemplate::SourceRadius' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithPointLightComponentTemplate, SourceLength) == 0x000038, "Member 'UDatasmithPointLightComponentTemplate::SourceLength' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithPointLightComponentTemplate, AttenuationRadius) == 0x00003C, "Member 'UDatasmithPointLightComponentTemplate::AttenuationRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithPostProcessVolumeTemplate \ +static_assert(alignof(UDatasmithPostProcessVolumeTemplate) == 0x000010, "Wrong alignment on UDatasmithPostProcessVolumeTemplate"); \ +static_assert(sizeof(UDatasmithPostProcessVolumeTemplate) == 0x000080, "Wrong size on UDatasmithPostProcessVolumeTemplate"); \ +static_assert(offsetof(UDatasmithPostProcessVolumeTemplate, Settings) == 0x000030, "Member 'UDatasmithPostProcessVolumeTemplate::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithScene \ +static_assert(alignof(UDatasmithScene) == 0x000008, "Wrong alignment on UDatasmithScene"); \ +static_assert(sizeof(UDatasmithScene) == 0x000030, "Wrong size on UDatasmithScene"); \ + +#define DUMPER7_ASSERTS_ADatasmithSceneActor \ +static_assert(alignof(ADatasmithSceneActor) == 0x000008, "Wrong alignment on ADatasmithSceneActor"); \ +static_assert(sizeof(ADatasmithSceneActor) == 0x0002F0, "Wrong size on ADatasmithSceneActor"); \ +static_assert(offsetof(ADatasmithSceneActor, Scene) == 0x000298, "Member 'ADatasmithSceneActor::Scene' has a wrong offset!"); \ +static_assert(offsetof(ADatasmithSceneActor, RelatedActors) == 0x0002A0, "Member 'ADatasmithSceneActor::RelatedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithSceneComponentTemplate \ +static_assert(alignof(UDatasmithSceneComponentTemplate) == 0x000010, "Wrong alignment on UDatasmithSceneComponentTemplate"); \ +static_assert(sizeof(UDatasmithSceneComponentTemplate) == 0x000120, "Wrong size on UDatasmithSceneComponentTemplate"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, RelativeTransform) == 0x000030, "Member 'UDatasmithSceneComponentTemplate::RelativeTransform' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, Mobility) == 0x000090, "Member 'UDatasmithSceneComponentTemplate::Mobility' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, AttachParent) == 0x000098, "Member 'UDatasmithSceneComponentTemplate::AttachParent' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, bVisible) == 0x0000C0, "Member 'UDatasmithSceneComponentTemplate::bVisible' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, bCastShadow) == 0x0000C1, "Member 'UDatasmithSceneComponentTemplate::bCastShadow' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSceneComponentTemplate, Tags) == 0x0000C8, "Member 'UDatasmithSceneComponentTemplate::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithSkyLightComponentTemplate \ +static_assert(alignof(UDatasmithSkyLightComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithSkyLightComponentTemplate"); \ +static_assert(sizeof(UDatasmithSkyLightComponentTemplate) == 0x000040, "Wrong size on UDatasmithSkyLightComponentTemplate"); \ +static_assert(offsetof(UDatasmithSkyLightComponentTemplate, SourceType) == 0x000030, "Member 'UDatasmithSkyLightComponentTemplate::SourceType' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSkyLightComponentTemplate, CubemapResolution) == 0x000034, "Member 'UDatasmithSkyLightComponentTemplate::CubemapResolution' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSkyLightComponentTemplate, Cubemap) == 0x000038, "Member 'UDatasmithSkyLightComponentTemplate::Cubemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithSpotLightComponentTemplate \ +static_assert(alignof(UDatasmithSpotLightComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithSpotLightComponentTemplate"); \ +static_assert(sizeof(UDatasmithSpotLightComponentTemplate) == 0x000038, "Wrong size on UDatasmithSpotLightComponentTemplate"); \ +static_assert(offsetof(UDatasmithSpotLightComponentTemplate, InnerConeAngle) == 0x000030, "Member 'UDatasmithSpotLightComponentTemplate::InnerConeAngle' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithSpotLightComponentTemplate, OuterConeAngle) == 0x000034, "Member 'UDatasmithSpotLightComponentTemplate::OuterConeAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithStaticMeshComponentTemplate \ +static_assert(alignof(UDatasmithStaticMeshComponentTemplate) == 0x000008, "Wrong alignment on UDatasmithStaticMeshComponentTemplate"); \ +static_assert(sizeof(UDatasmithStaticMeshComponentTemplate) == 0x000048, "Wrong size on UDatasmithStaticMeshComponentTemplate"); \ +static_assert(offsetof(UDatasmithStaticMeshComponentTemplate, StaticMesh) == 0x000030, "Member 'UDatasmithStaticMeshComponentTemplate::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithStaticMeshComponentTemplate, OverrideMaterials) == 0x000038, "Member 'UDatasmithStaticMeshComponentTemplate::OverrideMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDatasmithStaticMeshTemplate \ +static_assert(alignof(UDatasmithStaticMeshTemplate) == 0x000008, "Wrong alignment on UDatasmithStaticMeshTemplate"); \ +static_assert(sizeof(UDatasmithStaticMeshTemplate) == 0x0000A8, "Wrong size on UDatasmithStaticMeshTemplate"); \ +static_assert(offsetof(UDatasmithStaticMeshTemplate, SectionInfoMap) == 0x000030, "Member 'UDatasmithStaticMeshTemplate::SectionInfoMap' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithStaticMeshTemplate, LightMapCoordinateIndex) == 0x000080, "Member 'UDatasmithStaticMeshTemplate::LightMapCoordinateIndex' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithStaticMeshTemplate, LightMapResolution) == 0x000084, "Member 'UDatasmithStaticMeshTemplate::LightMapResolution' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithStaticMeshTemplate, BuildSettings) == 0x000088, "Member 'UDatasmithStaticMeshTemplate::BuildSettings' has a wrong offset!"); \ +static_assert(offsetof(UDatasmithStaticMeshTemplate, StaticMaterials) == 0x000098, "Member 'UDatasmithStaticMeshTemplate::StaticMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGLTFExportMessages \ +static_assert(alignof(FGLTFExportMessages) == 0x000008, "Wrong alignment on FGLTFExportMessages"); \ +static_assert(sizeof(FGLTFExportMessages) == 0x000030, "Wrong size on FGLTFExportMessages"); \ +static_assert(offsetof(FGLTFExportMessages, Suggestions) == 0x000000, "Member 'FGLTFExportMessages::Suggestions' has a wrong offset!"); \ +static_assert(offsetof(FGLTFExportMessages, Warnings) == 0x000010, "Member 'FGLTFExportMessages::Warnings' has a wrong offset!"); \ +static_assert(offsetof(FGLTFExportMessages, Errors) == 0x000020, "Member 'FGLTFExportMessages::Errors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGLTFOverrideMaterialBakeSettings \ +static_assert(alignof(FGLTFOverrideMaterialBakeSettings) == 0x000001, "Wrong alignment on FGLTFOverrideMaterialBakeSettings"); \ +static_assert(sizeof(FGLTFOverrideMaterialBakeSettings) == 0x000006, "Wrong size on FGLTFOverrideMaterialBakeSettings"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, bOverrideSize) == 0x000000, "Member 'FGLTFOverrideMaterialBakeSettings::bOverrideSize' has a wrong offset!"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, Size) == 0x000001, "Member 'FGLTFOverrideMaterialBakeSettings::Size' has a wrong offset!"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, bOverrideFilter) == 0x000002, "Member 'FGLTFOverrideMaterialBakeSettings::bOverrideFilter' has a wrong offset!"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, Filter) == 0x000003, "Member 'FGLTFOverrideMaterialBakeSettings::Filter' has a wrong offset!"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, bOverrideTiling) == 0x000004, "Member 'FGLTFOverrideMaterialBakeSettings::bOverrideTiling' has a wrong offset!"); \ +static_assert(offsetof(FGLTFOverrideMaterialBakeSettings, Tiling) == 0x000005, "Member 'FGLTFOverrideMaterialBakeSettings::Tiling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGLTFExportOptions \ +static_assert(alignof(UGLTFExportOptions) == 0x000008, "Wrong alignment on UGLTFExportOptions"); \ +static_assert(sizeof(UGLTFExportOptions) == 0x0000A0, "Wrong size on UGLTFExportOptions"); \ +static_assert(offsetof(UGLTFExportOptions, ExportUniformScale) == 0x000028, "Member 'UGLTFExportOptions::ExportUniformScale' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportPreviewMesh) == 0x00002C, "Member 'UGLTFExportOptions::bExportPreviewMesh' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bSkipNearDefaultValues) == 0x00002D, "Member 'UGLTFExportOptions::bSkipNearDefaultValues' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bIncludeCopyrightNotice) == 0x00002E, "Member 'UGLTFExportOptions::bIncludeCopyrightNotice' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportProxyMaterials) == 0x00002F, "Member 'UGLTFExportOptions::bExportProxyMaterials' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportUnlitMaterials) == 0x000030, "Member 'UGLTFExportOptions::bExportUnlitMaterials' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportClearCoatMaterials) == 0x000031, "Member 'UGLTFExportOptions::bExportClearCoatMaterials' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportEmissiveStrength) == 0x000032, "Member 'UGLTFExportOptions::bExportEmissiveStrength' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, BakeMaterialInputs) == 0x000033, "Member 'UGLTFExportOptions::BakeMaterialInputs' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, DefaultMaterialBakeSize) == 0x000034, "Member 'UGLTFExportOptions::DefaultMaterialBakeSize' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, DefaultMaterialBakeFilter) == 0x000035, "Member 'UGLTFExportOptions::DefaultMaterialBakeFilter' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, DefaultMaterialBakeTiling) == 0x000036, "Member 'UGLTFExportOptions::DefaultMaterialBakeTiling' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, DefaultInputBakeSettings) == 0x000038, "Member 'UGLTFExportOptions::DefaultInputBakeSettings' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, DefaultLevelOfDetail) == 0x000088, "Member 'UGLTFExportOptions::DefaultLevelOfDetail' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportVertexColors) == 0x00008C, "Member 'UGLTFExportOptions::bExportVertexColors' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportVertexSkinWeights) == 0x00008D, "Member 'UGLTFExportOptions::bExportVertexSkinWeights' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bUseMeshQuantization) == 0x00008E, "Member 'UGLTFExportOptions::bUseMeshQuantization' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportLevelSequences) == 0x00008F, "Member 'UGLTFExportOptions::bExportLevelSequences' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportAnimationSequences) == 0x000090, "Member 'UGLTFExportOptions::bExportAnimationSequences' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, TextureImageFormat) == 0x000091, "Member 'UGLTFExportOptions::TextureImageFormat' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, TextureImageQuality) == 0x000094, "Member 'UGLTFExportOptions::TextureImageQuality' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportTextureTransforms) == 0x000098, "Member 'UGLTFExportOptions::bExportTextureTransforms' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bAdjustNormalmaps) == 0x000099, "Member 'UGLTFExportOptions::bAdjustNormalmaps' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportHiddenInGame) == 0x00009A, "Member 'UGLTFExportOptions::bExportHiddenInGame' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportLights) == 0x00009B, "Member 'UGLTFExportOptions::bExportLights' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, bExportCameras) == 0x00009C, "Member 'UGLTFExportOptions::bExportCameras' has a wrong offset!"); \ +static_assert(offsetof(UGLTFExportOptions, ExportMaterialVariants) == 0x00009D, "Member 'UGLTFExportOptions::ExportMaterialVariants' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GLTFExporter_ExportToGLTF \ +static_assert(alignof(GLTFExporter_ExportToGLTF) == 0x000008, "Wrong alignment on GLTFExporter_ExportToGLTF"); \ +static_assert(sizeof(GLTFExporter_ExportToGLTF) == 0x0000A8, "Wrong size on GLTFExporter_ExportToGLTF"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, Object) == 0x000000, "Member 'GLTFExporter_ExportToGLTF::Object' has a wrong offset!"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, FilePath) == 0x000008, "Member 'GLTFExporter_ExportToGLTF::FilePath' has a wrong offset!"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, Options) == 0x000018, "Member 'GLTFExporter_ExportToGLTF::Options' has a wrong offset!"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, SelectedActors) == 0x000020, "Member 'GLTFExporter_ExportToGLTF::SelectedActors' has a wrong offset!"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, OutMessages) == 0x000070, "Member 'GLTFExporter_ExportToGLTF::OutMessages' has a wrong offset!"); \ +static_assert(offsetof(GLTFExporter_ExportToGLTF, ReturnValue) == 0x0000A0, "Member 'GLTFExporter_ExportToGLTF::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGLTFExporter \ +static_assert(alignof(UGLTFExporter) == 0x000008, "Wrong alignment on UGLTFExporter"); \ +static_assert(sizeof(UGLTFExporter) == 0x000078, "Wrong size on UGLTFExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFAnimSequenceExporter \ +static_assert(alignof(UGLTFAnimSequenceExporter) == 0x000008, "Wrong alignment on UGLTFAnimSequenceExporter"); \ +static_assert(sizeof(UGLTFAnimSequenceExporter) == 0x000078, "Wrong size on UGLTFAnimSequenceExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFLevelExporter \ +static_assert(alignof(UGLTFLevelExporter) == 0x000008, "Wrong alignment on UGLTFLevelExporter"); \ +static_assert(sizeof(UGLTFLevelExporter) == 0x000078, "Wrong size on UGLTFLevelExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFLevelSequenceExporter \ +static_assert(alignof(UGLTFLevelSequenceExporter) == 0x000008, "Wrong alignment on UGLTFLevelSequenceExporter"); \ +static_assert(sizeof(UGLTFLevelSequenceExporter) == 0x000078, "Wrong size on UGLTFLevelSequenceExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFLevelVariantSetsExporter \ +static_assert(alignof(UGLTFLevelVariantSetsExporter) == 0x000008, "Wrong alignment on UGLTFLevelVariantSetsExporter"); \ +static_assert(sizeof(UGLTFLevelVariantSetsExporter) == 0x000078, "Wrong size on UGLTFLevelVariantSetsExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFMaterialExporter \ +static_assert(alignof(UGLTFMaterialExporter) == 0x000008, "Wrong alignment on UGLTFMaterialExporter"); \ +static_assert(sizeof(UGLTFMaterialExporter) == 0x000078, "Wrong size on UGLTFMaterialExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFSkeletalMeshExporter \ +static_assert(alignof(UGLTFSkeletalMeshExporter) == 0x000008, "Wrong alignment on UGLTFSkeletalMeshExporter"); \ +static_assert(sizeof(UGLTFSkeletalMeshExporter) == 0x000078, "Wrong size on UGLTFSkeletalMeshExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFStaticMeshExporter \ +static_assert(alignof(UGLTFStaticMeshExporter) == 0x000008, "Wrong alignment on UGLTFStaticMeshExporter"); \ +static_assert(sizeof(UGLTFStaticMeshExporter) == 0x000078, "Wrong size on UGLTFStaticMeshExporter"); \ + +#define DUMPER7_ASSERTS_UGLTFProxyOptions \ +static_assert(alignof(UGLTFProxyOptions) == 0x000008, "Wrong alignment on UGLTFProxyOptions"); \ +static_assert(sizeof(UGLTFProxyOptions) == 0x000080, "Wrong size on UGLTFProxyOptions"); \ +static_assert(offsetof(UGLTFProxyOptions, bBakeMaterialInputs) == 0x000028, "Member 'UGLTFProxyOptions::bBakeMaterialInputs' has a wrong offset!"); \ +static_assert(offsetof(UGLTFProxyOptions, DefaultMaterialBakeSize) == 0x000029, "Member 'UGLTFProxyOptions::DefaultMaterialBakeSize' has a wrong offset!"); \ +static_assert(offsetof(UGLTFProxyOptions, DefaultMaterialBakeFilter) == 0x00002A, "Member 'UGLTFProxyOptions::DefaultMaterialBakeFilter' has a wrong offset!"); \ +static_assert(offsetof(UGLTFProxyOptions, DefaultMaterialBakeTiling) == 0x00002B, "Member 'UGLTFProxyOptions::DefaultMaterialBakeTiling' has a wrong offset!"); \ +static_assert(offsetof(UGLTFProxyOptions, DefaultInputBakeSettings) == 0x000030, "Member 'UGLTFProxyOptions::DefaultInputBakeSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGLTFMaterialExportOptions \ +static_assert(alignof(UGLTFMaterialExportOptions) == 0x000008, "Wrong alignment on UGLTFMaterialExportOptions"); \ +static_assert(sizeof(UGLTFMaterialExportOptions) == 0x000088, "Wrong size on UGLTFMaterialExportOptions"); \ +static_assert(offsetof(UGLTFMaterialExportOptions, Proxy) == 0x000028, "Member 'UGLTFMaterialExportOptions::Proxy' has a wrong offset!"); \ +static_assert(offsetof(UGLTFMaterialExportOptions, Default) == 0x000030, "Member 'UGLTFMaterialExportOptions::Default' has a wrong offset!"); \ +static_assert(offsetof(UGLTFMaterialExportOptions, Inputs) == 0x000038, "Member 'UGLTFMaterialExportOptions::Inputs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USelectedFileMenuFont_C \ +static_assert(alignof(USelectedFileMenuFont_C) == 0x000010, "Wrong alignment on USelectedFileMenuFont_C"); \ +static_assert(sizeof(USelectedFileMenuFont_C) == 0x0001B0, "Wrong size on USelectedFileMenuFont_C"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_Apply_Unseen_Aura_Materials_ \ +static_assert(alignof(BP_Phyre_C_Apply_Unseen_Aura_Materials_) == 0x000008, "Wrong alignment on BP_Phyre_C_Apply_Unseen_Aura_Materials_"); \ +static_assert(sizeof(BP_Phyre_C_Apply_Unseen_Aura_Materials_) == 0x000058, "Wrong size on BP_Phyre_C_Apply_Unseen_Aura_Materials_"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000010, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, K2Node_DynamicCast_AsMaterial_Instance) == 0x000018, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::K2Node_DynamicCast_AsMaterial_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, Temp_int_Variable) == 0x000024, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000028, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Less_IntInt_ReturnValue) == 0x000044, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_GetNumMaterials_ReturnValue) == 0x000048, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_GetNumMaterials_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_Add_IntInt_ReturnValue_1) == 0x00004C, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_Apply_Unseen_Aura_Materials_, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000050, "Member 'BP_Phyre_C_Apply_Unseen_Aura_Materials_::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_ApplyCap \ +static_assert(alignof(BP_Phyre_C_ApplyCap) == 0x000008, "Wrong alignment on BP_Phyre_C_ApplyCap"); \ +static_assert(sizeof(BP_Phyre_C_ApplyCap) == 0x000068, "Wrong size on BP_Phyre_C_ApplyCap"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, HairData) == 0x000000, "Member 'BP_Phyre_C_ApplyCap::HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_GetGameInstance_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_ApplyCap::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_GetCapVector_ReturnValue) == 0x000010, "Member 'BP_Phyre_C_ApplyCap::CallFunc_GetCapVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000028, "Member 'BP_Phyre_C_ApplyCap::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_Phyre_C_ApplyCap::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_Conv_VectorToLinearColor_ReturnValue) == 0x000034, "Member 'BP_Phyre_C_ApplyCap::CallFunc_Conv_VectorToLinearColor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_GetPlayerVariant_ReturnValue) == 0x000044, "Member 'BP_Phyre_C_ApplyCap::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, K2Node_SwitchEnum_CmpSuccess) == 0x000045, "Member 'BP_Phyre_C_ApplyCap::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_GetMaterial_ReturnValue) == 0x000048, "Member 'BP_Phyre_C_ApplyCap::CallFunc_GetMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_GetMaterial_ReturnValue_1) == 0x000050, "Member 'BP_Phyre_C_ApplyCap::CallFunc_GetMaterial_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000058, "Member 'BP_Phyre_C_ApplyCap::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyCap, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x000060, "Member 'BP_Phyre_C_ApplyCap::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_ApplyEyeParticles \ +static_assert(alignof(BP_Phyre_C_ApplyEyeParticles) == 0x000008, "Wrong alignment on BP_Phyre_C_ApplyEyeParticles"); \ +static_assert(sizeof(BP_Phyre_C_ApplyEyeParticles) == 0x000028, "Wrong size on BP_Phyre_C_ApplyEyeParticles"); \ +static_assert(offsetof(BP_Phyre_C_ApplyEyeParticles, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000000, "Member 'BP_Phyre_C_ApplyEyeParticles::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyEyeParticles, K2Node_DynamicCast_AsNiagara_System) == 0x000008, "Member 'BP_Phyre_C_ApplyEyeParticles::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyEyeParticles, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'BP_Phyre_C_ApplyEyeParticles::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyEyeParticles, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000018, "Member 'BP_Phyre_C_ApplyEyeParticles::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ApplyEyeParticles, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000020, "Member 'BP_Phyre_C_ApplyEyeParticles::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_CheckForBanuCostume \ +static_assert(alignof(BP_Phyre_C_CheckForBanuCostume) == 0x000008, "Wrong alignment on BP_Phyre_C_CheckForBanuCostume"); \ +static_assert(sizeof(BP_Phyre_C_CheckForBanuCostume) == 0x000058, "Wrong size on BP_Phyre_C_CheckForBanuCostume"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CostumeTag) == 0x000000, "Member 'BP_Phyre_C_CheckForBanuCostume::CostumeTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CheckTag) == 0x000008, "Member 'BP_Phyre_C_CheckForBanuCostume::CheckTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, HairData) == 0x000010, "Member 'BP_Phyre_C_CheckForBanuCostume::HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, HairToOverride) == 0x000018, "Member 'BP_Phyre_C_CheckForBanuCostume::HairToOverride' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_GetPlayerHairData_Data) == 0x000028, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_GetPlayerHairData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000030, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_GetPlayerHairDataWithID_HairData) == 0x000038, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_GetPlayerHairDataWithID_HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_GetPlayerHairDataWithID_HairData_1) == 0x000040, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_GetPlayerHairDataWithID_HairData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x000048, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CheckForBanuCostume, CallFunc_GetPlayerCostumeData_Data) == 0x000050, "Member 'BP_Phyre_C_CheckForBanuCostume::CallFunc_GetPlayerCostumeData_Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_CopyOverlayFromManager \ +static_assert(alignof(BP_Phyre_C_CopyOverlayFromManager) == 0x000008, "Wrong alignment on BP_Phyre_C_CopyOverlayFromManager"); \ +static_assert(sizeof(BP_Phyre_C_CopyOverlayFromManager) == 0x000070, "Wrong size on BP_Phyre_C_CopyOverlayFromManager"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, OverlayManager) == 0x000000, "Member 'BP_Phyre_C_CopyOverlayFromManager::OverlayManager' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_Phyre_C_CopyOverlayFromManager::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, Temp_bool_True_if_break_was_hit_Variable) == 0x000010, "Member 'BP_Phyre_C_CopyOverlayFromManager::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, Temp_int_Array_Index_Variable) == 0x000014, "Member 'BP_Phyre_C_CopyOverlayFromManager::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_GetAttachedActors_OutActors) == 0x000028, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, K2Node_DynamicCast_AsBPI_Player_Overlays) == 0x000048, "Member 'BP_Phyre_C_CopyOverlayFromManager::K2Node_DynamicCast_AsBPI_Player_Overlays' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_Phyre_C_CopyOverlayFromManager::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_Array_Length_ReturnValue) == 0x00005C, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_ReturnOverlayManager_Manager) == 0x000060, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_ReturnOverlayManager_Manager' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_BooleanAND_ReturnValue) == 0x000069, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_CopyOverlayFromManager, CallFunc_IsValid_ReturnValue_1) == 0x00006A, "Member 'BP_Phyre_C_CopyOverlayFromManager::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE \ +static_assert(alignof(BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE) == 0x000008, "Wrong alignment on BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE"); \ +static_assert(sizeof(BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE) == 0x0000B0, "Wrong size on BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE"); \ +static_assert(offsetof(BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE, Payload) == 0x000000, "Member 'BP_Phyre_C_EventReceived_0272D8DC4DDE01E50E7E0EB523B663BE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_ExecuteUbergraph_BP_Phyre \ +static_assert(alignof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre) == 0x000008, "Wrong alignment on BP_Phyre_C_ExecuteUbergraph_BP_Phyre"); \ +static_assert(sizeof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre) == 0x000450, "Wrong size on BP_Phyre_C_ExecuteUbergraph_BP_Phyre"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, EntryPoint) == 0x000000, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CustomEvent_Loaded) == 0x000008, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_object_Variable) == 0x000010, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_bool_Variable) == 0x000018, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_AddComponentByClass_ReturnValue) == 0x000020, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_AddComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CustomEvent_Payload) == 0x000028, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000D8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x0000E0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CreateDelegate_OutputDelegate) == 0x0000E8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue) == 0x0000F8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000100, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_1) == 0x000108, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000110, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_1) == 0x000118, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasTag_ReturnValue) == 0x000119, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x00011C, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x000124, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasTag_ReturnValue_1) == 0x00012C, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_int_Loop_Counter_Variable) == 0x000130, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_Add_IntInt_ReturnValue) == 0x000134, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_int_Array_Index_Variable) == 0x000138, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_InCostume) == 0x000140, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_InCostume' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_2) == 0x000148, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_object_Variable_1) == 0x000150, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyCostume_Player_CastInput) == 0x000158, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyCostume_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyCostume_Player_CastInput_1) == 0x000168, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyCostume_Player_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000178, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_MakeLiteralGameplayTag_ReturnValue_3) == 0x000180, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_MakeLiteralGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000188, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_DynamicCast_bSuccess) == 0x000198, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasClanPerk_ReturnValue) == 0x000199, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x00019A, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_bool_Variable_1) == 0x00019B, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0001A0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CustomEvent_Loaded_1) == 0x0001A8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0001B0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_3) == 0x0001B8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_object_Variable_2) == 0x0001C0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CustomEvent_Loaded_2) == 0x0001C8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CustomEvent_Loaded_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_InHair) == 0x0001D0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_InHair' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_CheckForBanuCostume_HairToOverride) == 0x0001D8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_CheckForBanuCostume_HairToOverride' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_4) == 0x0001E0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyHair_Player_CastInput) == 0x0001E8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyHair_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_CostumeTage) == 0x0001F8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_CostumeTage' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_CheckForBanuCostume_HairToOverride_1) == 0x000200, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_CheckForBanuCostume_HairToOverride_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_object_Variable_3) == 0x000208, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyHair_Player_CastInput_1) == 0x000210, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyHair_Player_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CreateDelegate_OutputDelegate_1) == 0x000220, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CustomEvent_Loaded_3) == 0x000230, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CustomEvent_Loaded_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, Temp_struct_Variable) == 0x000238, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_MakeStruct_LinearColor) == 0x0002E8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_MakeStruct_LinearColor' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CreateDelegate_OutputDelegate_2) == 0x0002F8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_MakeStruct_LinearColor_1) == 0x000308, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_MakeStruct_LinearColor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_LinearColorLerp_ReturnValue) == 0x000318, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_LinearColorLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000328, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000350, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_2) == 0x000358, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_5) == 0x000360, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasTag_ReturnValue_2) == 0x000361, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_InMakeUp) == 0x000368, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_InMakeUp' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyHair_Player_CastInput_2) == 0x000370, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyHair_Player_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000380, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CreateDelegate_OutputDelegate_3) == 0x000388, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_3) == 0x000398, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_IsValid_ReturnValue_6) == 0x0003A0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_PiercingAsset) == 0x0003A8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_PiercingAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_MakeLiteralGameplayTag_ReturnValue_4) == 0x0003B0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_MakeLiteralGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasTag_ReturnValue_3) == 0x0003B8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003BC, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_Event_EyesAsset) == 0x0003D0, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_Event_EyesAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyEyes_Player_CastInput) == 0x0003D8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyEyes_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyPiercing_Player_CastInput) == 0x0003E8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyPiercing_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_ApplyMakeUp_Player_CastInput) == 0x0003F8, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_ApplyMakeUp_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000408, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000410, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x000418, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000420, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, K2Node_DynamicCast_bSuccess_1) == 0x000430, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000431, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_GetMaterials_ReturnValue) == 0x000438, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_GetMaterials_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_Array_Length_ReturnValue) == 0x000448, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_ExecuteUbergraph_BP_Phyre, CallFunc_Less_IntInt_ReturnValue) == 0x00044C, "Member 'BP_Phyre_C_ExecuteUbergraph_BP_Phyre::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_Force_MidLong_Hair \ +static_assert(alignof(BP_Phyre_C_Force_MidLong_Hair) == 0x000008, "Wrong alignment on BP_Phyre_C_Force_MidLong_Hair"); \ +static_assert(sizeof(BP_Phyre_C_Force_MidLong_Hair) == 0x000010, "Wrong size on BP_Phyre_C_Force_MidLong_Hair"); \ +static_assert(offsetof(BP_Phyre_C_Force_MidLong_Hair, CallFunc_ApplyHair_Player_CastInput) == 0x000000, "Member 'BP_Phyre_C_Force_MidLong_Hair::CallFunc_ApplyHair_Player_CastInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetAudioCharacterComp \ +static_assert(alignof(BP_Phyre_C_GetAudioCharacterComp) == 0x000008, "Wrong alignment on BP_Phyre_C_GetAudioCharacterComp"); \ +static_assert(sizeof(BP_Phyre_C_GetAudioCharacterComp) == 0x000008, "Wrong size on BP_Phyre_C_GetAudioCharacterComp"); \ +static_assert(offsetof(BP_Phyre_C_GetAudioCharacterComp, AudioCharacterComponent_0) == 0x000000, "Member 'BP_Phyre_C_GetAudioCharacterComp::AudioCharacterComponent_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetGlassesSkeletalMesh \ +static_assert(alignof(BP_Phyre_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_GetGlassesSkeletalMesh"); \ +static_assert(sizeof(BP_Phyre_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong size on BP_Phyre_C_GetGlassesSkeletalMesh"); \ +static_assert(offsetof(BP_Phyre_C_GetGlassesSkeletalMesh, GlassesSM) == 0x000000, "Member 'BP_Phyre_C_GetGlassesSkeletalMesh::GlassesSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetHairMesh \ +static_assert(alignof(BP_Phyre_C_GetHairMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_GetHairMesh"); \ +static_assert(sizeof(BP_Phyre_C_GetHairMesh) == 0x000008, "Wrong size on BP_Phyre_C_GetHairMesh"); \ +static_assert(offsetof(BP_Phyre_C_GetHairMesh, HairMesh) == 0x000000, "Member 'BP_Phyre_C_GetHairMesh::HairMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetHeadSkeletalMesh \ +static_assert(alignof(BP_Phyre_C_GetHeadSkeletalMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_GetHeadSkeletalMesh"); \ +static_assert(sizeof(BP_Phyre_C_GetHeadSkeletalMesh) == 0x000008, "Wrong size on BP_Phyre_C_GetHeadSkeletalMesh"); \ +static_assert(offsetof(BP_Phyre_C_GetHeadSkeletalMesh, Head) == 0x000000, "Member 'BP_Phyre_C_GetHeadSkeletalMesh::Head' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetMesh \ +static_assert(alignof(BP_Phyre_C_GetMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_GetMesh"); \ +static_assert(sizeof(BP_Phyre_C_GetMesh) == 0x000008, "Wrong size on BP_Phyre_C_GetMesh"); \ +static_assert(offsetof(BP_Phyre_C_GetMesh, Mesh) == 0x000000, "Member 'BP_Phyre_C_GetMesh::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_GetPiercingSkeletalMesh \ +static_assert(alignof(BP_Phyre_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_GetPiercingSkeletalMesh"); \ +static_assert(sizeof(BP_Phyre_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong size on BP_Phyre_C_GetPiercingSkeletalMesh"); \ +static_assert(offsetof(BP_Phyre_C_GetPiercingSkeletalMesh, PeircingSM) == 0x000000, "Member 'BP_Phyre_C_GetPiercingSkeletalMesh::PeircingSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC \ +static_assert(alignof(BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC) == 0x000008, "Wrong alignment on BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC"); \ +static_assert(sizeof(BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC) == 0x000008, "Wrong size on BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC"); \ +static_assert(offsetof(BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC, Loaded) == 0x000000, "Member 'BP_Phyre_C_OnLoaded_08C7A3E344AA750C8D627C9FCC9651FC::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F \ +static_assert(alignof(BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F) == 0x000008, "Wrong alignment on BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F"); \ +static_assert(sizeof(BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F) == 0x000008, "Wrong size on BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F"); \ +static_assert(offsetof(BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F, Loaded) == 0x000000, "Member 'BP_Phyre_C_OnLoaded_0C86CEAB4E960B1BE2A1DCB52FBD849F::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5 \ +static_assert(alignof(BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5) == 0x000008, "Wrong alignment on BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5"); \ +static_assert(sizeof(BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5) == 0x000008, "Wrong size on BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5"); \ +static_assert(offsetof(BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5, Loaded) == 0x000000, "Member 'BP_Phyre_C_OnLoaded_181EC2144BAFF1B8E6FCF7984CA969C5::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE \ +static_assert(alignof(BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE) == 0x000008, "Wrong alignment on BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE"); \ +static_assert(sizeof(BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE) == 0x000008, "Wrong size on BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE"); \ +static_assert(offsetof(BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE, Loaded) == 0x000000, "Member 'BP_Phyre_C_OnLoaded_2056D9854E345649489D6EBA8B7CCDCE::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_RefreshHair \ +static_assert(alignof(BP_Phyre_C_RefreshHair) == 0x000004, "Wrong alignment on BP_Phyre_C_RefreshHair"); \ +static_assert(sizeof(BP_Phyre_C_RefreshHair) == 0x000008, "Wrong size on BP_Phyre_C_RefreshHair"); \ +static_assert(offsetof(BP_Phyre_C_RefreshHair, CostumeTage) == 0x000000, "Member 'BP_Phyre_C_RefreshHair::CostumeTage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SelectMesh \ +static_assert(alignof(BP_Phyre_C_SelectMesh) == 0x000008, "Wrong alignment on BP_Phyre_C_SelectMesh"); \ +static_assert(sizeof(BP_Phyre_C_SelectMesh) == 0x0000C0, "Wrong size on BP_Phyre_C_SelectMesh"); \ +static_assert(offsetof(BP_Phyre_C_SelectMesh, CostumeDef) == 0x000000, "Member 'BP_Phyre_C_SelectMesh::CostumeDef' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SelectMesh, Mesh) == 0x0000A0, "Member 'BP_Phyre_C_SelectMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SelectMesh, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000A8, "Member 'BP_Phyre_C_SelectMesh::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SelectMesh, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x0000B0, "Member 'BP_Phyre_C_SelectMesh::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SelectMesh, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'BP_Phyre_C_SelectMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetHairAnimation \ +static_assert(alignof(BP_Phyre_C_SetHairAnimation) == 0x000008, "Wrong alignment on BP_Phyre_C_SetHairAnimation"); \ +static_assert(sizeof(BP_Phyre_C_SetHairAnimation) == 0x000010, "Wrong size on BP_Phyre_C_SetHairAnimation"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, HairData) == 0x000000, "Member 'BP_Phyre_C_SetHairAnimation::HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, CallFunc_GetAnimationType_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetHairAnimation::CallFunc_GetAnimationType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'BP_Phyre_C_SetHairAnimation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, K2Node_SwitchEnum_CmpSuccess) == 0x00000A, "Member 'BP_Phyre_C_SetHairAnimation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, CallFunc_IsValid_ReturnValue_1) == 0x00000B, "Member 'BP_Phyre_C_SetHairAnimation::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetHairAnimation, CallFunc_IsValid_ReturnValue_2) == 0x00000C, "Member 'BP_Phyre_C_SetHairAnimation::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpCostume \ +static_assert(alignof(BP_Phyre_C_SetUpCostume) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpCostume"); \ +static_assert(sizeof(BP_Phyre_C_SetUpCostume) == 0x000010, "Wrong size on BP_Phyre_C_SetUpCostume"); \ +static_assert(offsetof(BP_Phyre_C_SetUpCostume, CallFunc_GetPlayerCostumeData_Data) == 0x000000, "Member 'BP_Phyre_C_SetUpCostume::CallFunc_GetPlayerCostumeData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpCostume, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetUpCostume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpEyes \ +static_assert(alignof(BP_Phyre_C_SetUpEyes) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpEyes"); \ +static_assert(sizeof(BP_Phyre_C_SetUpEyes) == 0x000010, "Wrong size on BP_Phyre_C_SetUpEyes"); \ +static_assert(offsetof(BP_Phyre_C_SetUpEyes, CallFunc_GetPlayerEyesData_EyesData) == 0x000000, "Member 'BP_Phyre_C_SetUpEyes::CallFunc_GetPlayerEyesData_EyesData' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpEyes, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetUpEyes::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpHair \ +static_assert(alignof(BP_Phyre_C_SetUpHair) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpHair"); \ +static_assert(sizeof(BP_Phyre_C_SetUpHair) == 0x000010, "Wrong size on BP_Phyre_C_SetUpHair"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHair, CallFunc_GetPlayerHairData_Data) == 0x000000, "Member 'BP_Phyre_C_SetUpHair::CallFunc_GetPlayerHairData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHair, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetUpHair::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpHead \ +static_assert(alignof(BP_Phyre_C_SetUpHead) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpHead"); \ +static_assert(sizeof(BP_Phyre_C_SetUpHead) == 0x000018, "Wrong size on BP_Phyre_C_SetUpHead"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHead, CallFunc_GetGameInstance_ReturnValue) == 0x000000, "Member 'BP_Phyre_C_SetUpHead::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHead, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000008, "Member 'BP_Phyre_C_SetUpHead::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHead, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'BP_Phyre_C_SetUpHead::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHead, CallFunc_GetPlayerVariant_ReturnValue) == 0x000011, "Member 'BP_Phyre_C_SetUpHead::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpHead, K2Node_SwitchEnum_CmpSuccess) == 0x000012, "Member 'BP_Phyre_C_SetUpHead::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpMakeUp \ +static_assert(alignof(BP_Phyre_C_SetUpMakeUp) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpMakeUp"); \ +static_assert(sizeof(BP_Phyre_C_SetUpMakeUp) == 0x000010, "Wrong size on BP_Phyre_C_SetUpMakeUp"); \ +static_assert(offsetof(BP_Phyre_C_SetUpMakeUp, CallFunc_GetPlayerMakeUpData_Data) == 0x000000, "Member 'BP_Phyre_C_SetUpMakeUp::CallFunc_GetPlayerMakeUpData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpMakeUp, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetUpMakeUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SetUpPiercing \ +static_assert(alignof(BP_Phyre_C_SetUpPiercing) == 0x000008, "Wrong alignment on BP_Phyre_C_SetUpPiercing"); \ +static_assert(sizeof(BP_Phyre_C_SetUpPiercing) == 0x000010, "Wrong size on BP_Phyre_C_SetUpPiercing"); \ +static_assert(offsetof(BP_Phyre_C_SetUpPiercing, CallFunc_GetPlayerPiercingData_Data) == 0x000000, "Member 'BP_Phyre_C_SetUpPiercing::CallFunc_GetPlayerPiercingData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Phyre_C_SetUpPiercing, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Phyre_C_SetUpPiercing::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SwitchPlayerCostume \ +static_assert(alignof(BP_Phyre_C_SwitchPlayerCostume) == 0x000008, "Wrong alignment on BP_Phyre_C_SwitchPlayerCostume"); \ +static_assert(sizeof(BP_Phyre_C_SwitchPlayerCostume) == 0x000008, "Wrong size on BP_Phyre_C_SwitchPlayerCostume"); \ +static_assert(offsetof(BP_Phyre_C_SwitchPlayerCostume, InCostume) == 0x000000, "Member 'BP_Phyre_C_SwitchPlayerCostume::InCostume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SwitchPlayerEyes \ +static_assert(alignof(BP_Phyre_C_SwitchPlayerEyes) == 0x000008, "Wrong alignment on BP_Phyre_C_SwitchPlayerEyes"); \ +static_assert(sizeof(BP_Phyre_C_SwitchPlayerEyes) == 0x000008, "Wrong size on BP_Phyre_C_SwitchPlayerEyes"); \ +static_assert(offsetof(BP_Phyre_C_SwitchPlayerEyes, EyesAsset) == 0x000000, "Member 'BP_Phyre_C_SwitchPlayerEyes::EyesAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SwitchPlayerHair \ +static_assert(alignof(BP_Phyre_C_SwitchPlayerHair) == 0x000008, "Wrong alignment on BP_Phyre_C_SwitchPlayerHair"); \ +static_assert(sizeof(BP_Phyre_C_SwitchPlayerHair) == 0x000008, "Wrong size on BP_Phyre_C_SwitchPlayerHair"); \ +static_assert(offsetof(BP_Phyre_C_SwitchPlayerHair, InHair) == 0x000000, "Member 'BP_Phyre_C_SwitchPlayerHair::InHair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SwitchPlayerMakeUp \ +static_assert(alignof(BP_Phyre_C_SwitchPlayerMakeUp) == 0x000008, "Wrong alignment on BP_Phyre_C_SwitchPlayerMakeUp"); \ +static_assert(sizeof(BP_Phyre_C_SwitchPlayerMakeUp) == 0x000008, "Wrong size on BP_Phyre_C_SwitchPlayerMakeUp"); \ +static_assert(offsetof(BP_Phyre_C_SwitchPlayerMakeUp, InMakeUp) == 0x000000, "Member 'BP_Phyre_C_SwitchPlayerMakeUp::InMakeUp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_SwitchPlayerPiercing \ +static_assert(alignof(BP_Phyre_C_SwitchPlayerPiercing) == 0x000008, "Wrong alignment on BP_Phyre_C_SwitchPlayerPiercing"); \ +static_assert(sizeof(BP_Phyre_C_SwitchPlayerPiercing) == 0x000008, "Wrong size on BP_Phyre_C_SwitchPlayerPiercing"); \ +static_assert(offsetof(BP_Phyre_C_SwitchPlayerPiercing, PiercingAsset) == 0x000000, "Member 'BP_Phyre_C_SwitchPlayerPiercing::PiercingAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Phyre_C_UserConstructionScript \ +static_assert(alignof(BP_Phyre_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Phyre_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Phyre_C_UserConstructionScript) == 0x000008, "Wrong size on BP_Phyre_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Phyre_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_Phyre_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_C \ +static_assert(alignof(ABP_Phyre_C) == 0x000008, "Wrong alignment on ABP_Phyre_C"); \ +static_assert(sizeof(ABP_Phyre_C) == 0x0004D0, "Wrong size on ABP_Phyre_C"); \ +static_assert(offsetof(ABP_Phyre_C, UberGraphFrame_BP_Phyre_C) == 0x000388, "Member 'ABP_Phyre_C::UberGraphFrame_BP_Phyre_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Piercing) == 0x000390, "Member 'ABP_Phyre_C::Piercing' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Glasses) == 0x000398, "Member 'ABP_Phyre_C::Glasses' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Costume) == 0x0003A0, "Member 'ABP_Phyre_C::Costume' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Hair) == 0x0003A8, "Member 'ABP_Phyre_C::Hair' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Wrinkles) == 0x0003B0, "Member 'ABP_Phyre_C::Wrinkles' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Timeline_Emission_6F9E0AA3489ED84E268094BC58801FAE) == 0x0003B8, "Member 'ABP_Phyre_C::Timeline_Emission_6F9E0AA3489ED84E268094BC58801FAE' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Timeline__Direction_6F9E0AA3489ED84E268094BC58801FAE) == 0x0003BC, "Member 'ABP_Phyre_C::Timeline__Direction_6F9E0AA3489ED84E268094BC58801FAE' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Timeline) == 0x0003C0, "Member 'ABP_Phyre_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Tag_Container) == 0x0003C8, "Member 'ABP_Phyre_C::Tag_Container' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Ability_Spec_Handle) == 0x0003E8, "Member 'ABP_Phyre_C::Ability_Spec_Handle' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, GhostMesh) == 0x0003F0, "Member 'ABP_Phyre_C::GhostMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, ForceCostume) == 0x0003F8, "Member 'ABP_Phyre_C::ForceCostume' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, Costume_Data) == 0x000400, "Member 'ABP_Phyre_C::Costume_Data' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, HorrificEyes) == 0x000408, "Member 'ABP_Phyre_C::HorrificEyes' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, LevelTag) == 0x000430, "Member 'ABP_Phyre_C::LevelTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, TagToCheck) == 0x000438, "Member 'ABP_Phyre_C::TagToCheck' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, UnseenAuraMat) == 0x000440, "Member 'ABP_Phyre_C::UnseenAuraMat' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, UnseenAuraHairMat) == 0x000468, "Member 'ABP_Phyre_C::UnseenAuraHairMat' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, ResetMatsTimer) == 0x000490, "Member 'ABP_Phyre_C::ResetMatsTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, SKMats) == 0x000498, "Member 'ABP_Phyre_C::SKMats' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, CostimeMats) == 0x0004A8, "Member 'ABP_Phyre_C::CostimeMats' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, HorrificEyesMaterial) == 0x0004B8, "Member 'ABP_Phyre_C::HorrificEyesMaterial' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, HorrificEyes_MID) == 0x0004C0, "Member 'ABP_Phyre_C::HorrificEyes_MID' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, ForceMidLongHair) == 0x0004C8, "Member 'ABP_Phyre_C::ForceMidLongHair' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_C, IsCostumePhyre) == 0x0004C9, "Member 'ABP_Phyre_C::IsCostumePhyre' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot \ +static_assert(alignof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot) == 0x000008, "Wrong alignment on AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot"); \ +static_assert(sizeof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot) == 0x000028, "Wrong size on AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot"); \ +static_assert(offsetof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot, ScreenshotName) == 0x000000, "Member 'AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot::ScreenshotName' has a wrong offset!"); \ +static_assert(offsetof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot, MaxGlobalError) == 0x000010, "Member 'AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot::MaxGlobalError' has a wrong offset!"); \ +static_assert(offsetof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot, MaxLocalError) == 0x000014, "Member 'AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot::MaxLocalError' has a wrong offset!"); \ +static_assert(offsetof(AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot, MapNameOverride) == 0x000018, "Member 'AutomationUtilsBlueprintLibrary_TakeGameplayAutomationScreenshot::MapNameOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAutomationUtilsBlueprintLibrary \ +static_assert(alignof(UAutomationUtilsBlueprintLibrary) == 0x000008, "Wrong alignment on UAutomationUtilsBlueprintLibrary"); \ +static_assert(sizeof(UAutomationUtilsBlueprintLibrary) == 0x000028, "Wrong size on UAutomationUtilsBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_TCR_BoundActionButton_C_UpdateStyleOnInputMethod \ +static_assert(alignof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod) == 0x000010, "Wrong alignment on TCR_BoundActionButton_C_UpdateStyleOnInputMethod"); \ +static_assert(sizeof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod) == 0x0000E0, "Wrong size on TCR_BoundActionButton_C_UpdateStyleOnInputMethod"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, InputType) == 0x000000, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::InputType' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_bool_Variable) == 0x000001, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_byte_Variable) == 0x000002, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_byte_Variable_1) == 0x000003, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_byte_Variable_2) == 0x000004, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_bool_Variable_1) == 0x000005, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_bool_Variable_2) == 0x000006, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_bool_Variable_3) == 0x000007, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, Temp_bool_Variable_4) == 0x000008, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, K2Node_Select_Default) == 0x000009, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, K2Node_Select_Default_1) == 0x00000A, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_UpdateStyleOnInputMethod, K2Node_MakeStruct_SlateBrush) == 0x000010, "Member 'TCR_BoundActionButton_C_UpdateStyleOnInputMethod::K2Node_MakeStruct_SlateBrush' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_BoundActionButton_C_PreConstruct \ +static_assert(alignof(TCR_BoundActionButton_C_PreConstruct) == 0x000001, "Wrong alignment on TCR_BoundActionButton_C_PreConstruct"); \ +static_assert(sizeof(TCR_BoundActionButton_C_PreConstruct) == 0x000001, "Wrong size on TCR_BoundActionButton_C_PreConstruct"); \ +static_assert(offsetof(TCR_BoundActionButton_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'TCR_BoundActionButton_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_BoundActionButton_C_Input_Method_Changed \ +static_assert(alignof(TCR_BoundActionButton_C_Input_Method_Changed) == 0x000001, "Wrong alignment on TCR_BoundActionButton_C_Input_Method_Changed"); \ +static_assert(sizeof(TCR_BoundActionButton_C_Input_Method_Changed) == 0x000001, "Wrong size on TCR_BoundActionButton_C_Input_Method_Changed"); \ +static_assert(offsetof(TCR_BoundActionButton_C_Input_Method_Changed, bNewInputType) == 0x000000, "Member 'TCR_BoundActionButton_C_Input_Method_Changed::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton \ +static_assert(alignof(TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton) == 0x000004, "Wrong alignment on TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton"); \ +static_assert(sizeof(TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton) == 0x000008, "Wrong size on TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton"); \ +static_assert(offsetof(TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton, EntryPoint) == 0x000000, "Member 'TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton, K2Node_CustomEvent_bNewInputType) == 0x000004, "Member 'TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton, K2Node_Event_IsDesignTime) == 0x000005, "Member 'TCR_BoundActionButton_C_ExecuteUbergraph_TCR_BoundActionButton::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_BoundActionButton_C \ +static_assert(alignof(UTCR_BoundActionButton_C) == 0x000010, "Wrong alignment on UTCR_BoundActionButton_C"); \ +static_assert(sizeof(UTCR_BoundActionButton_C) == 0x0015C0, "Wrong size on UTCR_BoundActionButton_C"); \ +static_assert(offsetof(UTCR_BoundActionButton_C, UberGraphFrame) == 0x0015B0, "Member 'UTCR_BoundActionButton_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_BoundActionButton_C, ButtonBorder) == 0x0015B8, "Member 'UTCR_BoundActionButton_C::ButtonBorder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCacheEventBase \ +static_assert(alignof(FCacheEventBase) == 0x000008, "Wrong alignment on FCacheEventBase"); \ +static_assert(sizeof(FCacheEventBase) == 0x000008, "Wrong size on FCacheEventBase"); \ + +#define DUMPER7_ASSERTS_FEnableStateEvent \ +static_assert(alignof(FEnableStateEvent) == 0x000008, "Wrong alignment on FEnableStateEvent"); \ +static_assert(sizeof(FEnableStateEvent) == 0x000010, "Wrong size on FEnableStateEvent"); \ +static_assert(offsetof(FEnableStateEvent, Index) == 0x000008, "Member 'FEnableStateEvent::Index' has a wrong offset!"); \ +static_assert(offsetof(FEnableStateEvent, bEnable) == 0x00000C, "Member 'FEnableStateEvent::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBreakingEvent \ +static_assert(alignof(FBreakingEvent) == 0x000008, "Wrong alignment on FBreakingEvent"); \ +static_assert(sizeof(FBreakingEvent) == 0x000090, "Wrong size on FBreakingEvent"); \ +static_assert(offsetof(FBreakingEvent, Index) == 0x000008, "Member 'FBreakingEvent::Index' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, Location) == 0x000010, "Member 'FBreakingEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, Velocity) == 0x000028, "Member 'FBreakingEvent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, AngularVelocity) == 0x000040, "Member 'FBreakingEvent::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, MASS) == 0x000058, "Member 'FBreakingEvent::MASS' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, BoundingBoxMin) == 0x000060, "Member 'FBreakingEvent::BoundingBoxMin' has a wrong offset!"); \ +static_assert(offsetof(FBreakingEvent, BoundingBoxMax) == 0x000078, "Member 'FBreakingEvent::BoundingBoxMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollisionEvent \ +static_assert(alignof(FCollisionEvent) == 0x000008, "Wrong alignment on FCollisionEvent"); \ +static_assert(sizeof(FCollisionEvent) == 0x0000F0, "Wrong size on FCollisionEvent"); \ +static_assert(offsetof(FCollisionEvent, Location) == 0x000008, "Member 'FCollisionEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, AccumulatedImpulse) == 0x000020, "Member 'FCollisionEvent::AccumulatedImpulse' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, Normal) == 0x000038, "Member 'FCollisionEvent::Normal' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, Velocity1) == 0x000050, "Member 'FCollisionEvent::Velocity1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, Velocity2) == 0x000068, "Member 'FCollisionEvent::Velocity2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, DeltaVelocity1) == 0x000080, "Member 'FCollisionEvent::DeltaVelocity1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, DeltaVelocity2) == 0x000098, "Member 'FCollisionEvent::DeltaVelocity2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, AngularVelocity1) == 0x0000B0, "Member 'FCollisionEvent::AngularVelocity1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, AngularVelocity2) == 0x0000C8, "Member 'FCollisionEvent::AngularVelocity2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, Mass1) == 0x0000E0, "Member 'FCollisionEvent::Mass1' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, Mass2) == 0x0000E4, "Member 'FCollisionEvent::Mass2' has a wrong offset!"); \ +static_assert(offsetof(FCollisionEvent, PenetrationDepth) == 0x0000E8, "Member 'FCollisionEvent::PenetrationDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTrailingEvent \ +static_assert(alignof(FTrailingEvent) == 0x000008, "Wrong alignment on FTrailingEvent"); \ +static_assert(sizeof(FTrailingEvent) == 0x000088, "Wrong size on FTrailingEvent"); \ +static_assert(offsetof(FTrailingEvent, Index) == 0x000008, "Member 'FTrailingEvent::Index' has a wrong offset!"); \ +static_assert(offsetof(FTrailingEvent, Location) == 0x000010, "Member 'FTrailingEvent::Location' has a wrong offset!"); \ +static_assert(offsetof(FTrailingEvent, Velocity) == 0x000028, "Member 'FTrailingEvent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FTrailingEvent, AngularVelocity) == 0x000040, "Member 'FTrailingEvent::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FTrailingEvent, BoundingBoxMin) == 0x000058, "Member 'FTrailingEvent::BoundingBoxMin' has a wrong offset!"); \ +static_assert(offsetof(FTrailingEvent, BoundingBoxMax) == 0x000070, "Member 'FTrailingEvent::BoundingBoxMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCacheEventTrack \ +static_assert(alignof(FCacheEventTrack) == 0x000008, "Wrong alignment on FCacheEventTrack"); \ +static_assert(sizeof(FCacheEventTrack) == 0x000038, "Wrong size on FCacheEventTrack"); \ +static_assert(offsetof(FCacheEventTrack, Name) == 0x000000, "Member 'FCacheEventTrack::Name' has a wrong offset!"); \ +static_assert(offsetof(FCacheEventTrack, Struct) == 0x000008, "Member 'FCacheEventTrack::Struct' has a wrong offset!"); \ +static_assert(offsetof(FCacheEventTrack, TimeStamps) == 0x000010, "Member 'FCacheEventTrack::TimeStamps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FObservedComponent \ +static_assert(alignof(FObservedComponent) == 0x000010, "Wrong alignment on FObservedComponent"); \ +static_assert(sizeof(FObservedComponent) == 0x000170, "Wrong size on FObservedComponent"); \ +static_assert(offsetof(FObservedComponent, CacheName) == 0x000000, "Member 'FObservedComponent::CacheName' has a wrong offset!"); \ +static_assert(offsetof(FObservedComponent, ComponentRef) == 0x000008, "Member 'FObservedComponent::ComponentRef' has a wrong offset!"); \ +static_assert(offsetof(FObservedComponent, SoftComponentRef) == 0x000030, "Member 'FObservedComponent::SoftComponentRef' has a wrong offset!"); \ +static_assert(offsetof(FObservedComponent, bIsSimulating) == 0x000078, "Member 'FObservedComponent::bIsSimulating' has a wrong offset!"); \ +static_assert(offsetof(FObservedComponent, bPlaybackEnabled) == 0x000079, "Member 'FObservedComponent::bPlaybackEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FParticleTransformTrack \ +static_assert(alignof(FParticleTransformTrack) == 0x000008, "Wrong alignment on FParticleTransformTrack"); \ +static_assert(sizeof(FParticleTransformTrack) == 0x000048, "Wrong size on FParticleTransformTrack"); \ +static_assert(offsetof(FParticleTransformTrack, RawTransformTrack) == 0x000000, "Member 'FParticleTransformTrack::RawTransformTrack' has a wrong offset!"); \ +static_assert(offsetof(FParticleTransformTrack, BeginOffset) == 0x000030, "Member 'FParticleTransformTrack::BeginOffset' has a wrong offset!"); \ +static_assert(offsetof(FParticleTransformTrack, bDeactivateOnEnd) == 0x000034, "Member 'FParticleTransformTrack::bDeactivateOnEnd' has a wrong offset!"); \ +static_assert(offsetof(FParticleTransformTrack, KeyTimestamps) == 0x000038, "Member 'FParticleTransformTrack::KeyTimestamps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPerParticleCacheData \ +static_assert(alignof(FPerParticleCacheData) == 0x000008, "Wrong alignment on FPerParticleCacheData"); \ +static_assert(sizeof(FPerParticleCacheData) == 0x000098, "Wrong size on FPerParticleCacheData"); \ +static_assert(offsetof(FPerParticleCacheData, TransformData) == 0x000000, "Member 'FPerParticleCacheData::TransformData' has a wrong offset!"); \ +static_assert(offsetof(FPerParticleCacheData, CurveData) == 0x000048, "Member 'FPerParticleCacheData::CurveData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCacheSpawnableTemplate \ +static_assert(alignof(FCacheSpawnableTemplate) == 0x000010, "Wrong alignment on FCacheSpawnableTemplate"); \ +static_assert(sizeof(FCacheSpawnableTemplate) == 0x0000D0, "Wrong size on FCacheSpawnableTemplate"); \ +static_assert(offsetof(FCacheSpawnableTemplate, DuplicatedTemplate) == 0x000000, "Member 'FCacheSpawnableTemplate::DuplicatedTemplate' has a wrong offset!"); \ +static_assert(offsetof(FCacheSpawnableTemplate, InitialTransform) == 0x000010, "Member 'FCacheSpawnableTemplate::InitialTransform' has a wrong offset!"); \ +static_assert(offsetof(FCacheSpawnableTemplate, ComponentTransform) == 0x000070, "Member 'FCacheSpawnableTemplate::ComponentTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRichCurves \ +static_assert(alignof(FRichCurves) == 0x000008, "Wrong alignment on FRichCurves"); \ +static_assert(sizeof(FRichCurves) == 0x000010, "Wrong size on FRichCurves"); \ +static_assert(offsetof(FRichCurves, RichCurves) == 0x000000, "Member 'FRichCurves::RichCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompressedRichCurves \ +static_assert(alignof(FCompressedRichCurves) == 0x000008, "Wrong alignment on FCompressedRichCurves"); \ +static_assert(sizeof(FCompressedRichCurves) == 0x000010, "Wrong size on FCompressedRichCurves"); \ +static_assert(offsetof(FCompressedRichCurves, CompressedRichCurves) == 0x000000, "Member 'FCompressedRichCurves::CompressedRichCurves' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneChaosCacheParams \ +static_assert(alignof(FMovieSceneChaosCacheParams) == 0x000008, "Wrong alignment on FMovieSceneChaosCacheParams"); \ +static_assert(sizeof(FMovieSceneChaosCacheParams) == 0x000028, "Wrong size on FMovieSceneChaosCacheParams"); \ +static_assert(offsetof(FMovieSceneChaosCacheParams, CacheCollection) == 0x000020, "Member 'FMovieSceneChaosCacheParams::CacheCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneChaosCacheSectionTemplateParameters \ +static_assert(alignof(FMovieSceneChaosCacheSectionTemplateParameters) == 0x000008, "Wrong alignment on FMovieSceneChaosCacheSectionTemplateParameters"); \ +static_assert(sizeof(FMovieSceneChaosCacheSectionTemplateParameters) == 0x000030, "Wrong size on FMovieSceneChaosCacheSectionTemplateParameters"); \ +static_assert(offsetof(FMovieSceneChaosCacheSectionTemplateParameters, ChaosCacheParams) == 0x000008, "Member 'FMovieSceneChaosCacheSectionTemplateParameters::ChaosCacheParams' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneChaosCacheSectionTemplate \ +static_assert(alignof(FMovieSceneChaosCacheSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneChaosCacheSectionTemplate"); \ +static_assert(sizeof(FMovieSceneChaosCacheSectionTemplate) == 0x000050, "Wrong size on FMovieSceneChaosCacheSectionTemplate"); \ +static_assert(offsetof(FMovieSceneChaosCacheSectionTemplate, Params) == 0x000020, "Member 'FMovieSceneChaosCacheSectionTemplate::Params' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosCacheCollection \ +static_assert(alignof(UChaosCacheCollection) == 0x000008, "Wrong alignment on UChaosCacheCollection"); \ +static_assert(sizeof(UChaosCacheCollection) == 0x000038, "Wrong size on UChaosCacheCollection"); \ +static_assert(offsetof(UChaosCacheCollection, Caches) == 0x000028, "Member 'UChaosCacheCollection::Caches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_EnablePlayback \ +static_assert(alignof(ChaosCacheManager_EnablePlayback) == 0x000004, "Wrong alignment on ChaosCacheManager_EnablePlayback"); \ +static_assert(sizeof(ChaosCacheManager_EnablePlayback) == 0x000008, "Wrong size on ChaosCacheManager_EnablePlayback"); \ +static_assert(offsetof(ChaosCacheManager_EnablePlayback, Index_0) == 0x000000, "Member 'ChaosCacheManager_EnablePlayback::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ChaosCacheManager_EnablePlayback, bEnable) == 0x000004, "Member 'ChaosCacheManager_EnablePlayback::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_EnablePlaybackByCache \ +static_assert(alignof(ChaosCacheManager_EnablePlaybackByCache) == 0x000004, "Wrong alignment on ChaosCacheManager_EnablePlaybackByCache"); \ +static_assert(sizeof(ChaosCacheManager_EnablePlaybackByCache) == 0x00000C, "Wrong size on ChaosCacheManager_EnablePlaybackByCache"); \ +static_assert(offsetof(ChaosCacheManager_EnablePlaybackByCache, InCacheName) == 0x000000, "Member 'ChaosCacheManager_EnablePlaybackByCache::InCacheName' has a wrong offset!"); \ +static_assert(offsetof(ChaosCacheManager_EnablePlaybackByCache, bEnable) == 0x000008, "Member 'ChaosCacheManager_EnablePlaybackByCache::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_ResetSingleTransform \ +static_assert(alignof(ChaosCacheManager_ResetSingleTransform) == 0x000004, "Wrong alignment on ChaosCacheManager_ResetSingleTransform"); \ +static_assert(sizeof(ChaosCacheManager_ResetSingleTransform) == 0x000004, "Wrong size on ChaosCacheManager_ResetSingleTransform"); \ +static_assert(offsetof(ChaosCacheManager_ResetSingleTransform, InIndex) == 0x000000, "Member 'ChaosCacheManager_ResetSingleTransform::InIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_SetCacheCollection \ +static_assert(alignof(ChaosCacheManager_SetCacheCollection) == 0x000008, "Wrong alignment on ChaosCacheManager_SetCacheCollection"); \ +static_assert(sizeof(ChaosCacheManager_SetCacheCollection) == 0x000008, "Wrong size on ChaosCacheManager_SetCacheCollection"); \ +static_assert(offsetof(ChaosCacheManager_SetCacheCollection, InCacheCollection) == 0x000000, "Member 'ChaosCacheManager_SetCacheCollection::InCacheCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_SetStartTime \ +static_assert(alignof(ChaosCacheManager_SetStartTime) == 0x000004, "Wrong alignment on ChaosCacheManager_SetStartTime"); \ +static_assert(sizeof(ChaosCacheManager_SetStartTime) == 0x000004, "Wrong size on ChaosCacheManager_SetStartTime"); \ +static_assert(offsetof(ChaosCacheManager_SetStartTime, InStartTime) == 0x000000, "Member 'ChaosCacheManager_SetStartTime::InStartTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_TriggerComponent \ +static_assert(alignof(ChaosCacheManager_TriggerComponent) == 0x000008, "Wrong alignment on ChaosCacheManager_TriggerComponent"); \ +static_assert(sizeof(ChaosCacheManager_TriggerComponent) == 0x000008, "Wrong size on ChaosCacheManager_TriggerComponent"); \ +static_assert(offsetof(ChaosCacheManager_TriggerComponent, InComponent) == 0x000000, "Member 'ChaosCacheManager_TriggerComponent::InComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosCacheManager_TriggerComponentByCache \ +static_assert(alignof(ChaosCacheManager_TriggerComponentByCache) == 0x000004, "Wrong alignment on ChaosCacheManager_TriggerComponentByCache"); \ +static_assert(sizeof(ChaosCacheManager_TriggerComponentByCache) == 0x000008, "Wrong size on ChaosCacheManager_TriggerComponentByCache"); \ +static_assert(offsetof(ChaosCacheManager_TriggerComponentByCache, InCacheName) == 0x000000, "Member 'ChaosCacheManager_TriggerComponentByCache::InCacheName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AChaosCacheManager \ +static_assert(alignof(AChaosCacheManager) == 0x000008, "Wrong alignment on AChaosCacheManager"); \ +static_assert(sizeof(AChaosCacheManager) == 0x000348, "Wrong size on AChaosCacheManager"); \ +static_assert(offsetof(AChaosCacheManager, CacheCollection) == 0x000298, "Member 'AChaosCacheManager::CacheCollection' has a wrong offset!"); \ +static_assert(offsetof(AChaosCacheManager, CacheMode) == 0x0002A0, "Member 'AChaosCacheManager::CacheMode' has a wrong offset!"); \ +static_assert(offsetof(AChaosCacheManager, StartMode) == 0x0002A1, "Member 'AChaosCacheManager::StartMode' has a wrong offset!"); \ +static_assert(offsetof(AChaosCacheManager, StartTime) == 0x0002A4, "Member 'AChaosCacheManager::StartTime' has a wrong offset!"); \ +static_assert(offsetof(AChaosCacheManager, ObservedComponents) == 0x0002B0, "Member 'AChaosCacheManager::ObservedComponents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AChaosCachePlayer \ +static_assert(alignof(AChaosCachePlayer) == 0x000008, "Wrong alignment on AChaosCachePlayer"); \ +static_assert(sizeof(AChaosCachePlayer) == 0x000348, "Wrong size on AChaosCachePlayer"); \ + +#define DUMPER7_ASSERTS_UChaosCache \ +static_assert(alignof(UChaosCache) == 0x000010, "Wrong alignment on UChaosCache"); \ +static_assert(sizeof(UChaosCache) == 0x000360, "Wrong size on UChaosCache"); \ +static_assert(offsetof(UChaosCache, RecordedDuration) == 0x000028, "Member 'UChaosCache::RecordedDuration' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, NumRecordedFrames) == 0x00002C, "Member 'UChaosCache::NumRecordedFrames' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, TrackToParticle) == 0x000030, "Member 'UChaosCache::TrackToParticle' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, ParticleTracks) == 0x000040, "Member 'UChaosCache::ParticleTracks' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, ChannelCurveToParticle) == 0x000050, "Member 'UChaosCache::ChannelCurveToParticle' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, ChannelsTracks) == 0x000060, "Member 'UChaosCache::ChannelsTracks' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, CompressedChannelsTracks) == 0x0000B0, "Member 'UChaosCache::CompressedChannelsTracks' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, CurveData) == 0x000100, "Member 'UChaosCache::CurveData' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, NamedTransformTracks) == 0x000150, "Member 'UChaosCache::NamedTransformTracks' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, bCompressChannels) == 0x0001A0, "Member 'UChaosCache::bCompressChannels' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, ChannelsCompressionErrorThreshold) == 0x0001A4, "Member 'UChaosCache::ChannelsCompressionErrorThreshold' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, ChannelsCompressionSampleRate) == 0x0001A8, "Member 'UChaosCache::ChannelsCompressionSampleRate' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, EventTracks) == 0x0001B0, "Member 'UChaosCache::EventTracks' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, Spawnable) == 0x000200, "Member 'UChaosCache::Spawnable' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, AdapterGuid) == 0x0002D0, "Member 'UChaosCache::AdapterGuid' has a wrong offset!"); \ +static_assert(offsetof(UChaosCache, Version) == 0x0002E0, "Member 'UChaosCache::Version' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneChaosCacheSection \ +static_assert(alignof(UMovieSceneChaosCacheSection) == 0x000008, "Wrong alignment on UMovieSceneChaosCacheSection"); \ +static_assert(sizeof(UMovieSceneChaosCacheSection) == 0x000120, "Wrong size on UMovieSceneChaosCacheSection"); \ +static_assert(offsetof(UMovieSceneChaosCacheSection, Params_0) == 0x0000F8, "Member 'UMovieSceneChaosCacheSection::Params_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneChaosCacheTrack \ +static_assert(alignof(UMovieSceneChaosCacheTrack) == 0x000008, "Wrong alignment on UMovieSceneChaosCacheTrack"); \ +static_assert(sizeof(UMovieSceneChaosCacheTrack) == 0x0000B0, "Wrong size on UMovieSceneChaosCacheTrack"); \ +static_assert(offsetof(UMovieSceneChaosCacheTrack, AnimationSections) == 0x0000A0, "Member 'UMovieSceneChaosCacheTrack::AnimationSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosClothWeightedValue \ +static_assert(alignof(FChaosClothWeightedValue) == 0x000004, "Wrong alignment on FChaosClothWeightedValue"); \ +static_assert(sizeof(FChaosClothWeightedValue) == 0x000008, "Wrong size on FChaosClothWeightedValue"); \ +static_assert(offsetof(FChaosClothWeightedValue, Low) == 0x000000, "Member 'FChaosClothWeightedValue::Low' has a wrong offset!"); \ +static_assert(offsetof(FChaosClothWeightedValue, High) == 0x000004, "Member 'FChaosClothWeightedValue::High' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosClothConfig \ +static_assert(alignof(UChaosClothConfig) == 0x000008, "Wrong alignment on UChaosClothConfig"); \ +static_assert(sizeof(UChaosClothConfig) == 0x000118, "Wrong size on UChaosClothConfig"); \ +static_assert(offsetof(UChaosClothConfig, MassMode) == 0x000028, "Member 'UChaosClothConfig::MassMode' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, UniformMass) == 0x00002C, "Member 'UChaosClothConfig::UniformMass' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, TotalMass) == 0x000030, "Member 'UChaosClothConfig::TotalMass' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, Density) == 0x000034, "Member 'UChaosClothConfig::Density' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, MinPerParticleMass) == 0x000038, "Member 'UChaosClothConfig::MinPerParticleMass' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, EdgeStiffnessWeighted) == 0x00003C, "Member 'UChaosClothConfig::EdgeStiffnessWeighted' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, BendingStiffnessWeighted) == 0x000044, "Member 'UChaosClothConfig::BendingStiffnessWeighted' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseBendingElements) == 0x00004C, "Member 'UChaosClothConfig::bUseBendingElements' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, BucklingRatio) == 0x000050, "Member 'UChaosClothConfig::BucklingRatio' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, BucklingStiffnessWeighted) == 0x000054, "Member 'UChaosClothConfig::BucklingStiffnessWeighted' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, AreaStiffnessWeighted) == 0x00005C, "Member 'UChaosClothConfig::AreaStiffnessWeighted' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, VolumeStiffness) == 0x000064, "Member 'UChaosClothConfig::VolumeStiffness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, TetherStiffness) == 0x000068, "Member 'UChaosClothConfig::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, TetherScale) == 0x000070, "Member 'UChaosClothConfig::TetherScale' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseGeodesicDistance) == 0x000078, "Member 'UChaosClothConfig::bUseGeodesicDistance' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, ShapeTargetStiffness) == 0x00007C, "Member 'UChaosClothConfig::ShapeTargetStiffness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, CollisionThickness) == 0x000080, "Member 'UChaosClothConfig::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, FrictionCoefficient) == 0x000084, "Member 'UChaosClothConfig::FrictionCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseCCD) == 0x000088, "Member 'UChaosClothConfig::bUseCCD' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseSelfCollisions) == 0x000089, "Member 'UChaosClothConfig::bUseSelfCollisions' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, SelfCollisionThickness) == 0x00008C, "Member 'UChaosClothConfig::SelfCollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, SelfCollisionFriction) == 0x000090, "Member 'UChaosClothConfig::SelfCollisionFriction' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseSelfIntersections) == 0x000094, "Member 'UChaosClothConfig::bUseSelfIntersections' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseLegacyBackstop) == 0x000095, "Member 'UChaosClothConfig::bUseLegacyBackstop' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, DampingCoefficient) == 0x000098, "Member 'UChaosClothConfig::DampingCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, LocalDampingCoefficient) == 0x00009C, "Member 'UChaosClothConfig::LocalDampingCoefficient' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUsePointBasedWindModel) == 0x0000A0, "Member 'UChaosClothConfig::bUsePointBasedWindModel' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, Drag) == 0x0000A4, "Member 'UChaosClothConfig::Drag' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, Lift) == 0x0000AC, "Member 'UChaosClothConfig::Lift' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseGravityOverride) == 0x0000B4, "Member 'UChaosClothConfig::bUseGravityOverride' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, GravityScale) == 0x0000B8, "Member 'UChaosClothConfig::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, Gravity) == 0x0000C0, "Member 'UChaosClothConfig::Gravity' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, Pressure) == 0x0000D8, "Member 'UChaosClothConfig::Pressure' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, AnimDriveStiffness) == 0x0000E0, "Member 'UChaosClothConfig::AnimDriveStiffness' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, AnimDriveDamping) == 0x0000E8, "Member 'UChaosClothConfig::AnimDriveDamping' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, LinearVelocityScale) == 0x0000F0, "Member 'UChaosClothConfig::LinearVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, AngularVelocityScale) == 0x000108, "Member 'UChaosClothConfig::AngularVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, FictitiousAngularScale) == 0x00010C, "Member 'UChaosClothConfig::FictitiousAngularScale' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseTetrahedralConstraints) == 0x000110, "Member 'UChaosClothConfig::bUseTetrahedralConstraints' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseThinShellVolumeConstraints) == 0x000111, "Member 'UChaosClothConfig::bUseThinShellVolumeConstraints' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothConfig, bUseContinuousCollisionDetection) == 0x000112, "Member 'UChaosClothConfig::bUseContinuousCollisionDetection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosClothSharedSimConfig \ +static_assert(alignof(UChaosClothSharedSimConfig) == 0x000008, "Wrong alignment on UChaosClothSharedSimConfig"); \ +static_assert(sizeof(UChaosClothSharedSimConfig) == 0x000038, "Wrong size on UChaosClothSharedSimConfig"); \ +static_assert(offsetof(UChaosClothSharedSimConfig, IterationCount) == 0x000028, "Member 'UChaosClothSharedSimConfig::IterationCount' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothSharedSimConfig, MaxIterationCount) == 0x00002C, "Member 'UChaosClothSharedSimConfig::MaxIterationCount' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothSharedSimConfig, SubdivisionCount) == 0x000030, "Member 'UChaosClothSharedSimConfig::SubdivisionCount' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothSharedSimConfig, bUseLocalSpaceSimulation) == 0x000034, "Member 'UChaosClothSharedSimConfig::bUseLocalSpaceSimulation' has a wrong offset!"); \ +static_assert(offsetof(UChaosClothSharedSimConfig, bUseXPBDConstraints) == 0x000035, "Member 'UChaosClothSharedSimConfig::bUseXPBDConstraints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosClothingSimulationFactory \ +static_assert(alignof(UChaosClothingSimulationFactory) == 0x000008, "Wrong alignment on UChaosClothingSimulationFactory"); \ +static_assert(sizeof(UChaosClothingSimulationFactory) == 0x000028, "Wrong size on UChaosClothingSimulationFactory"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_ResetAndTeleport \ +static_assert(alignof(ChaosClothingInteractor_ResetAndTeleport) == 0x000001, "Wrong alignment on ChaosClothingInteractor_ResetAndTeleport"); \ +static_assert(sizeof(ChaosClothingInteractor_ResetAndTeleport) == 0x000002, "Wrong size on ChaosClothingInteractor_ResetAndTeleport"); \ +static_assert(offsetof(ChaosClothingInteractor_ResetAndTeleport, bReset) == 0x000000, "Member 'ChaosClothingInteractor_ResetAndTeleport::bReset' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_ResetAndTeleport, bTeleport) == 0x000001, "Member 'ChaosClothingInteractor_ResetAndTeleport::bTeleport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetAerodynamics \ +static_assert(alignof(ChaosClothingInteractor_SetAerodynamics) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetAerodynamics"); \ +static_assert(sizeof(ChaosClothingInteractor_SetAerodynamics) == 0x000020, "Wrong size on ChaosClothingInteractor_SetAerodynamics"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAerodynamics, DragCoefficient) == 0x000000, "Member 'ChaosClothingInteractor_SetAerodynamics::DragCoefficient' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAerodynamics, LiftCoefficient) == 0x000004, "Member 'ChaosClothingInteractor_SetAerodynamics::LiftCoefficient' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAerodynamics, WindVelocity) == 0x000008, "Member 'ChaosClothingInteractor_SetAerodynamics::WindVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetAnimDrive \ +static_assert(alignof(ChaosClothingInteractor_SetAnimDrive) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetAnimDrive"); \ +static_assert(sizeof(ChaosClothingInteractor_SetAnimDrive) == 0x000020, "Wrong size on ChaosClothingInteractor_SetAnimDrive"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAnimDrive, AnimDriveStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetAnimDrive::AnimDriveStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAnimDrive, AnimDriveDamping) == 0x000010, "Member 'ChaosClothingInteractor_SetAnimDrive::AnimDriveDamping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetAnimDriveLinear \ +static_assert(alignof(ChaosClothingInteractor_SetAnimDriveLinear) == 0x000004, "Wrong alignment on ChaosClothingInteractor_SetAnimDriveLinear"); \ +static_assert(sizeof(ChaosClothingInteractor_SetAnimDriveLinear) == 0x000004, "Wrong size on ChaosClothingInteractor_SetAnimDriveLinear"); \ +static_assert(offsetof(ChaosClothingInteractor_SetAnimDriveLinear, AnimDriveStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetAnimDriveLinear::AnimDriveStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetBackstop \ +static_assert(alignof(ChaosClothingInteractor_SetBackstop) == 0x000001, "Wrong alignment on ChaosClothingInteractor_SetBackstop"); \ +static_assert(sizeof(ChaosClothingInteractor_SetBackstop) == 0x000001, "Wrong size on ChaosClothingInteractor_SetBackstop"); \ +static_assert(offsetof(ChaosClothingInteractor_SetBackstop, bEnabled) == 0x000000, "Member 'ChaosClothingInteractor_SetBackstop::bEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetCollision \ +static_assert(alignof(ChaosClothingInteractor_SetCollision) == 0x000004, "Wrong alignment on ChaosClothingInteractor_SetCollision"); \ +static_assert(sizeof(ChaosClothingInteractor_SetCollision) == 0x000010, "Wrong size on ChaosClothingInteractor_SetCollision"); \ +static_assert(offsetof(ChaosClothingInteractor_SetCollision, CollisionThickness) == 0x000000, "Member 'ChaosClothingInteractor_SetCollision::CollisionThickness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetCollision, FrictionCoefficient) == 0x000004, "Member 'ChaosClothingInteractor_SetCollision::FrictionCoefficient' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetCollision, bUseCCD) == 0x000008, "Member 'ChaosClothingInteractor_SetCollision::bUseCCD' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetCollision, SelfCollisionThickness) == 0x00000C, "Member 'ChaosClothingInteractor_SetCollision::SelfCollisionThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetDamping \ +static_assert(alignof(ChaosClothingInteractor_SetDamping) == 0x000004, "Wrong alignment on ChaosClothingInteractor_SetDamping"); \ +static_assert(sizeof(ChaosClothingInteractor_SetDamping) == 0x000008, "Wrong size on ChaosClothingInteractor_SetDamping"); \ +static_assert(offsetof(ChaosClothingInteractor_SetDamping, DampingCoefficient) == 0x000000, "Member 'ChaosClothingInteractor_SetDamping::DampingCoefficient' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetDamping, LocalDampingCoefficient) == 0x000004, "Member 'ChaosClothingInteractor_SetDamping::LocalDampingCoefficient' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetGravity \ +static_assert(alignof(ChaosClothingInteractor_SetGravity) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetGravity"); \ +static_assert(sizeof(ChaosClothingInteractor_SetGravity) == 0x000020, "Wrong size on ChaosClothingInteractor_SetGravity"); \ +static_assert(offsetof(ChaosClothingInteractor_SetGravity, GravityScale) == 0x000000, "Member 'ChaosClothingInteractor_SetGravity::GravityScale' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetGravity, bIsGravityOverridden) == 0x000004, "Member 'ChaosClothingInteractor_SetGravity::bIsGravityOverridden' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetGravity, GravityOverride) == 0x000008, "Member 'ChaosClothingInteractor_SetGravity::GravityOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetLongRangeAttachment \ +static_assert(alignof(ChaosClothingInteractor_SetLongRangeAttachment) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetLongRangeAttachment"); \ +static_assert(sizeof(ChaosClothingInteractor_SetLongRangeAttachment) == 0x000020, "Wrong size on ChaosClothingInteractor_SetLongRangeAttachment"); \ +static_assert(offsetof(ChaosClothingInteractor_SetLongRangeAttachment, TetherStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetLongRangeAttachment::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetLongRangeAttachment, TetherScale) == 0x000010, "Member 'ChaosClothingInteractor_SetLongRangeAttachment::TetherScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetLongRangeAttachmentLinear \ +static_assert(alignof(ChaosClothingInteractor_SetLongRangeAttachmentLinear) == 0x000004, "Wrong alignment on ChaosClothingInteractor_SetLongRangeAttachmentLinear"); \ +static_assert(sizeof(ChaosClothingInteractor_SetLongRangeAttachmentLinear) == 0x000008, "Wrong size on ChaosClothingInteractor_SetLongRangeAttachmentLinear"); \ +static_assert(offsetof(ChaosClothingInteractor_SetLongRangeAttachmentLinear, TetherStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetLongRangeAttachmentLinear::TetherStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetLongRangeAttachmentLinear, TetherScale) == 0x000004, "Member 'ChaosClothingInteractor_SetLongRangeAttachmentLinear::TetherScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetMaterial \ +static_assert(alignof(ChaosClothingInteractor_SetMaterial) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetMaterial"); \ +static_assert(sizeof(ChaosClothingInteractor_SetMaterial) == 0x000030, "Wrong size on ChaosClothingInteractor_SetMaterial"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterial, EdgeStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetMaterial::EdgeStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterial, BendingStiffness) == 0x000010, "Member 'ChaosClothingInteractor_SetMaterial::BendingStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterial, AreaStiffness) == 0x000020, "Member 'ChaosClothingInteractor_SetMaterial::AreaStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetMaterialLinear \ +static_assert(alignof(ChaosClothingInteractor_SetMaterialLinear) == 0x000004, "Wrong alignment on ChaosClothingInteractor_SetMaterialLinear"); \ +static_assert(sizeof(ChaosClothingInteractor_SetMaterialLinear) == 0x00000C, "Wrong size on ChaosClothingInteractor_SetMaterialLinear"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterialLinear, EdgeStiffness) == 0x000000, "Member 'ChaosClothingInteractor_SetMaterialLinear::EdgeStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterialLinear, BendingStiffness) == 0x000004, "Member 'ChaosClothingInteractor_SetMaterialLinear::BendingStiffness' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetMaterialLinear, AreaStiffness) == 0x000008, "Member 'ChaosClothingInteractor_SetMaterialLinear::AreaStiffness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetPressure \ +static_assert(alignof(ChaosClothingInteractor_SetPressure) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetPressure"); \ +static_assert(sizeof(ChaosClothingInteractor_SetPressure) == 0x000010, "Wrong size on ChaosClothingInteractor_SetPressure"); \ +static_assert(offsetof(ChaosClothingInteractor_SetPressure, Pressure) == 0x000000, "Member 'ChaosClothingInteractor_SetPressure::Pressure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetVelocityScale \ +static_assert(alignof(ChaosClothingInteractor_SetVelocityScale) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetVelocityScale"); \ +static_assert(sizeof(ChaosClothingInteractor_SetVelocityScale) == 0x000020, "Wrong size on ChaosClothingInteractor_SetVelocityScale"); \ +static_assert(offsetof(ChaosClothingInteractor_SetVelocityScale, LinearVelocityScale) == 0x000000, "Member 'ChaosClothingInteractor_SetVelocityScale::LinearVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetVelocityScale, AngularVelocityScale) == 0x000018, "Member 'ChaosClothingInteractor_SetVelocityScale::AngularVelocityScale' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetVelocityScale, FictitiousAngularScale) == 0x00001C, "Member 'ChaosClothingInteractor_SetVelocityScale::FictitiousAngularScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChaosClothingInteractor_SetWind \ +static_assert(alignof(ChaosClothingInteractor_SetWind) == 0x000008, "Wrong alignment on ChaosClothingInteractor_SetWind"); \ +static_assert(sizeof(ChaosClothingInteractor_SetWind) == 0x000040, "Wrong size on ChaosClothingInteractor_SetWind"); \ +static_assert(offsetof(ChaosClothingInteractor_SetWind, Drag) == 0x000000, "Member 'ChaosClothingInteractor_SetWind::Drag' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetWind, Lift) == 0x000010, "Member 'ChaosClothingInteractor_SetWind::Lift' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetWind, AirDensity) == 0x000020, "Member 'ChaosClothingInteractor_SetWind::AirDensity' has a wrong offset!"); \ +static_assert(offsetof(ChaosClothingInteractor_SetWind, WindVelocity) == 0x000028, "Member 'ChaosClothingInteractor_SetWind::WindVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChaosClothingInteractor \ +static_assert(alignof(UChaosClothingInteractor) == 0x000008, "Wrong alignment on UChaosClothingInteractor"); \ +static_assert(sizeof(UChaosClothingInteractor) == 0x000050, "Wrong size on UChaosClothingInteractor"); \ + +#define DUMPER7_ASSERTS_UChaosClothingSimulationInteractor \ +static_assert(alignof(UChaosClothingSimulationInteractor) == 0x000008, "Wrong alignment on UChaosClothingSimulationInteractor"); \ +static_assert(sizeof(UChaosClothingSimulationInteractor) == 0x0000B0, "Wrong size on UChaosClothingSimulationInteractor"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTakeSection \ +static_assert(alignof(UMovieSceneTakeSection) == 0x000008, "Wrong alignment on UMovieSceneTakeSection"); \ +static_assert(sizeof(UMovieSceneTakeSection) == 0x000710, "Wrong size on UMovieSceneTakeSection"); \ +static_assert(offsetof(UMovieSceneTakeSection, HoursCurve) == 0x0000F0, "Member 'UMovieSceneTakeSection::HoursCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSection, MinutesCurve) == 0x0001F0, "Member 'UMovieSceneTakeSection::MinutesCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSection, SecondsCurve) == 0x0002F0, "Member 'UMovieSceneTakeSection::SecondsCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSection, FramesCurve) == 0x0003F0, "Member 'UMovieSceneTakeSection::FramesCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSection, SubFramesCurve) == 0x0004F0, "Member 'UMovieSceneTakeSection::SubFramesCurve' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSection, Slate) == 0x000600, "Member 'UMovieSceneTakeSection::Slate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTakeSettings \ +static_assert(alignof(UMovieSceneTakeSettings) == 0x000008, "Wrong alignment on UMovieSceneTakeSettings"); \ +static_assert(sizeof(UMovieSceneTakeSettings) == 0x000088, "Wrong size on UMovieSceneTakeSettings"); \ +static_assert(offsetof(UMovieSceneTakeSettings, HoursName) == 0x000028, "Member 'UMovieSceneTakeSettings::HoursName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSettings, MinutesName) == 0x000038, "Member 'UMovieSceneTakeSettings::MinutesName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSettings, SecondsName) == 0x000048, "Member 'UMovieSceneTakeSettings::SecondsName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSettings, FramesName) == 0x000058, "Member 'UMovieSceneTakeSettings::FramesName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSettings, SubFramesName) == 0x000068, "Member 'UMovieSceneTakeSettings::SubFramesName' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneTakeSettings, SlateName) == 0x000078, "Member 'UMovieSceneTakeSettings::SlateName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneTakeTrack \ +static_assert(alignof(UMovieSceneTakeTrack) == 0x000008, "Wrong alignment on UMovieSceneTakeTrack"); \ +static_assert(sizeof(UMovieSceneTakeTrack) == 0x0000A8, "Wrong size on UMovieSceneTakeTrack"); \ +static_assert(offsetof(UMovieSceneTakeTrack, Sections) == 0x000098, "Member 'UMovieSceneTakeTrack::Sections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyDetectorHelper_C_DetectPlayer \ +static_assert(alignof(BP_EnemyDetectorHelper_C_DetectPlayer) == 0x000008, "Wrong alignment on BP_EnemyDetectorHelper_C_DetectPlayer"); \ +static_assert(sizeof(BP_EnemyDetectorHelper_C_DetectPlayer) == 0x000050, "Wrong size on BP_EnemyDetectorHelper_C_DetectPlayer"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000020, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000041, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_IsValid_ReturnValue) == 0x000042, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_DetectPlayer, CallFunc_GetAIController_ReturnValue) == 0x000048, "Member 'BP_EnemyDetectorHelper_C_DetectPlayer::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper \ +static_assert(alignof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper) == 0x000008, "Wrong alignment on BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper"); \ +static_assert(sizeof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper) == 0x0001C8, "Wrong size on BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, EntryPoint) == 0x000000, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_bool_Variable) == 0x000004, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_bool_Variable_1) == 0x000005, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Array_Index_Variable_1) == 0x000014, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Loop_Counter_Variable_1) == 0x000018, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Add_IntInt_ReturnValue_1) == 0x00001C, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Array_Index_Variable_2) == 0x000020, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Loop_Counter_Variable_2) == 0x000024, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Add_IntInt_ReturnValue_2) == 0x000028, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Loop_Counter_Variable_3) == 0x000038, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000040, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Add_IntInt_ReturnValue_3) == 0x000050, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Length_ReturnValue) == 0x000054, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000068, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000070, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000081, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, K2Node_CreateDelegate_OutputDelegate) == 0x000084, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000098, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0000A0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0000A8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x0000B0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x0000B8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, Temp_int_Array_Index_Variable_3) == 0x0000C0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x0000C8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Get_Item) == 0x0000D8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Get_Item_1) == 0x0000E0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsValid_ReturnValue) == 0x0000E8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsValid_ReturnValue_1) == 0x0000E9, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetAIController_ReturnValue) == 0x0000F0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetAIController_ReturnValue_1) == 0x0000F8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Length_ReturnValue_1) == 0x000100, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Less_IntInt_ReturnValue_1) == 0x000104, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000108, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue_4) == 0x000110, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsAwareOfActor_ReturnValue) == 0x000118, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetAllEnemiesAlive_ReturnValue_1) == 0x000120, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetAllEnemiesAlive_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Get_Item_2) == 0x000130, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Length_ReturnValue_2) == 0x000138, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsValid_ReturnValue_2) == 0x00013C, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Less_IntInt_ReturnValue_2) == 0x00013D, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetAIController_ReturnValue_2) == 0x000140, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsAwareOfActor_ReturnValue_1) == 0x000148, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsAwareOfActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x00014C, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Greater_IntInt_ReturnValue) == 0x000150, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetWorldSubsystem_ReturnValue_5) == 0x000158, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetWorldSubsystem_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1) == 0x000160, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000164, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000168, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000170, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000178, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, K2Node_DynamicCast_bSuccess_1) == 0x000188, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue_1) == 0x000190, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0001A0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Get_Item_3) == 0x0001A8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_IsValid_ReturnValue_3) == 0x0001B0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_GetAIController_ReturnValue_3) == 0x0001B8, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Array_Length_ReturnValue_3) == 0x0001C0, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper, CallFunc_Less_IntInt_ReturnValue_3) == 0x0001C4, "Member 'BP_EnemyDetectorHelper_C_ExecuteUbergraph_BP_EnemyDetectorHelper::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemyDetectorHelper_C \ +static_assert(alignof(ABP_EnemyDetectorHelper_C) == 0x000008, "Wrong alignment on ABP_EnemyDetectorHelper_C"); \ +static_assert(sizeof(ABP_EnemyDetectorHelper_C) == 0x0002B8, "Wrong size on ABP_EnemyDetectorHelper_C"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, UberGraphFrame) == 0x000298, "Member 'ABP_EnemyDetectorHelper_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_EnemyDetectorHelper_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, Enable) == 0x0002A8, "Member 'ABP_EnemyDetectorHelper_C::Enable' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, RequiresAwareness) == 0x0002A9, "Member 'ABP_EnemyDetectorHelper_C::RequiresAwareness' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, Requires_Tag) == 0x0002AA, "Member 'ABP_EnemyDetectorHelper_C::Requires_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyDetectorHelper_C, Enemy_Tag) == 0x0002AC, "Member 'ABP_EnemyDetectorHelper_C::Enemy_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_PunchImpact_Light_C \ +static_assert(alignof(UCameraShake_PunchImpact_Light_C) == 0x000010, "Wrong alignment on UCameraShake_PunchImpact_Light_C"); \ +static_assert(sizeof(UCameraShake_PunchImpact_Light_C) == 0x000230, "Wrong size on UCameraShake_PunchImpact_Light_C"); \ + +#define DUMPER7_ASSERTS_FAudioInputDeviceInfo \ +static_assert(alignof(FAudioInputDeviceInfo) == 0x000008, "Wrong alignment on FAudioInputDeviceInfo"); \ +static_assert(sizeof(FAudioInputDeviceInfo) == 0x000030, "Wrong size on FAudioInputDeviceInfo"); \ +static_assert(offsetof(FAudioInputDeviceInfo, DeviceName) == 0x000000, "Member 'FAudioInputDeviceInfo::DeviceName' has a wrong offset!"); \ +static_assert(offsetof(FAudioInputDeviceInfo, DeviceID) == 0x000010, "Member 'FAudioInputDeviceInfo::DeviceID' has a wrong offset!"); \ +static_assert(offsetof(FAudioInputDeviceInfo, InputChannels) == 0x000020, "Member 'FAudioInputDeviceInfo::InputChannels' has a wrong offset!"); \ +static_assert(offsetof(FAudioInputDeviceInfo, PreferredSampleRate) == 0x000024, "Member 'FAudioInputDeviceInfo::PreferredSampleRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAudioCaptureDeviceInfo \ +static_assert(alignof(FAudioCaptureDeviceInfo) == 0x000004, "Wrong alignment on FAudioCaptureDeviceInfo"); \ +static_assert(sizeof(FAudioCaptureDeviceInfo) == 0x000010, "Wrong size on FAudioCaptureDeviceInfo"); \ +static_assert(offsetof(FAudioCaptureDeviceInfo, DeviceName) == 0x000000, "Member 'FAudioCaptureDeviceInfo::DeviceName' has a wrong offset!"); \ +static_assert(offsetof(FAudioCaptureDeviceInfo, NumInputChannels) == 0x000008, "Member 'FAudioCaptureDeviceInfo::NumInputChannels' has a wrong offset!"); \ +static_assert(offsetof(FAudioCaptureDeviceInfo, SampleRate) == 0x00000C, "Member 'FAudioCaptureDeviceInfo::SampleRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioCapture_GetAudioCaptureDeviceInfo \ +static_assert(alignof(AudioCapture_GetAudioCaptureDeviceInfo) == 0x000004, "Wrong alignment on AudioCapture_GetAudioCaptureDeviceInfo"); \ +static_assert(sizeof(AudioCapture_GetAudioCaptureDeviceInfo) == 0x000014, "Wrong size on AudioCapture_GetAudioCaptureDeviceInfo"); \ +static_assert(offsetof(AudioCapture_GetAudioCaptureDeviceInfo, OutInfo) == 0x000000, "Member 'AudioCapture_GetAudioCaptureDeviceInfo::OutInfo' has a wrong offset!"); \ +static_assert(offsetof(AudioCapture_GetAudioCaptureDeviceInfo, ReturnValue) == 0x000010, "Member 'AudioCapture_GetAudioCaptureDeviceInfo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioCapture_IsCapturingAudio \ +static_assert(alignof(AudioCapture_IsCapturingAudio) == 0x000001, "Wrong alignment on AudioCapture_IsCapturingAudio"); \ +static_assert(sizeof(AudioCapture_IsCapturingAudio) == 0x000001, "Wrong size on AudioCapture_IsCapturingAudio"); \ +static_assert(offsetof(AudioCapture_IsCapturingAudio, ReturnValue) == 0x000000, "Member 'AudioCapture_IsCapturingAudio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioCapture \ +static_assert(alignof(UAudioCapture) == 0x000008, "Wrong alignment on UAudioCapture"); \ +static_assert(sizeof(UAudioCapture) == 0x0000B0, "Wrong size on UAudioCapture"); \ + +#define DUMPER7_ASSERTS_AudioCaptureFunctionLibrary_CreateAudioCapture \ +static_assert(alignof(AudioCaptureFunctionLibrary_CreateAudioCapture) == 0x000008, "Wrong alignment on AudioCaptureFunctionLibrary_CreateAudioCapture"); \ +static_assert(sizeof(AudioCaptureFunctionLibrary_CreateAudioCapture) == 0x000008, "Wrong size on AudioCaptureFunctionLibrary_CreateAudioCapture"); \ +static_assert(offsetof(AudioCaptureFunctionLibrary_CreateAudioCapture, ReturnValue) == 0x000000, "Member 'AudioCaptureFunctionLibrary_CreateAudioCapture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioCaptureFunctionLibrary \ +static_assert(alignof(UAudioCaptureFunctionLibrary) == 0x000008, "Wrong alignment on UAudioCaptureFunctionLibrary"); \ +static_assert(sizeof(UAudioCaptureFunctionLibrary) == 0x000028, "Wrong size on UAudioCaptureFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString \ +static_assert(alignof(AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString) == 0x000008, "Wrong alignment on AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString"); \ +static_assert(sizeof(AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString) == 0x000040, "Wrong size on AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString"); \ +static_assert(offsetof(AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString, Info) == 0x000000, "Member 'AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString::Info' has a wrong offset!"); \ +static_assert(offsetof(AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString, ReturnValue) == 0x000030, "Member 'AudioCaptureBlueprintLibrary_Conv_AudioInputDeviceInfoToString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices \ +static_assert(alignof(AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices) == 0x000008, "Wrong alignment on AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices"); \ +static_assert(sizeof(AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices) == 0x000018, "Wrong size on AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices"); \ +static_assert(offsetof(AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices, WorldContextObject) == 0x000000, "Member 'AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices, OnObtainDevicesEvent) == 0x000008, "Member 'AudioCaptureBlueprintLibrary_GetAvailableAudioInputDevices::OnObtainDevicesEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioCaptureBlueprintLibrary \ +static_assert(alignof(UAudioCaptureBlueprintLibrary) == 0x000008, "Wrong alignment on UAudioCaptureBlueprintLibrary"); \ +static_assert(sizeof(UAudioCaptureBlueprintLibrary) == 0x000028, "Wrong size on UAudioCaptureBlueprintLibrary"); \ + +#define DUMPER7_ASSERTS_UAudioCaptureComponent \ +static_assert(alignof(UAudioCaptureComponent) == 0x000010, "Wrong alignment on UAudioCaptureComponent"); \ +static_assert(sizeof(UAudioCaptureComponent) == 0x0009C0, "Wrong size on UAudioCaptureComponent"); \ +static_assert(offsetof(UAudioCaptureComponent, JitterLatencyFrames) == 0x000900, "Member 'UAudioCaptureComponent::JitterLatencyFrames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProcMeshTangent \ +static_assert(alignof(FProcMeshTangent) == 0x000008, "Wrong alignment on FProcMeshTangent"); \ +static_assert(sizeof(FProcMeshTangent) == 0x000020, "Wrong size on FProcMeshTangent"); \ +static_assert(offsetof(FProcMeshTangent, TangentX) == 0x000000, "Member 'FProcMeshTangent::TangentX' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshTangent, bFlipTangentY) == 0x000018, "Member 'FProcMeshTangent::bFlipTangentY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProcMeshVertex \ +static_assert(alignof(FProcMeshVertex) == 0x000008, "Wrong alignment on FProcMeshVertex"); \ +static_assert(sizeof(FProcMeshVertex) == 0x000098, "Wrong size on FProcMeshVertex"); \ +static_assert(offsetof(FProcMeshVertex, Position) == 0x000000, "Member 'FProcMeshVertex::Position' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, Normal) == 0x000018, "Member 'FProcMeshVertex::Normal' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, Tangent) == 0x000030, "Member 'FProcMeshVertex::Tangent' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, Color) == 0x000050, "Member 'FProcMeshVertex::Color' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, UV0) == 0x000058, "Member 'FProcMeshVertex::UV0' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, UV1) == 0x000068, "Member 'FProcMeshVertex::UV1' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, UV2) == 0x000078, "Member 'FProcMeshVertex::UV2' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshVertex, UV3) == 0x000088, "Member 'FProcMeshVertex::UV3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProcMeshSection \ +static_assert(alignof(FProcMeshSection) == 0x000008, "Wrong alignment on FProcMeshSection"); \ +static_assert(sizeof(FProcMeshSection) == 0x000060, "Wrong size on FProcMeshSection"); \ +static_assert(offsetof(FProcMeshSection, ProcVertexBuffer) == 0x000000, "Member 'FProcMeshSection::ProcVertexBuffer' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshSection, ProcIndexBuffer) == 0x000010, "Member 'FProcMeshSection::ProcIndexBuffer' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshSection, SectionLocalBox) == 0x000020, "Member 'FProcMeshSection::SectionLocalBox' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshSection, bEnableCollision) == 0x000058, "Member 'FProcMeshSection::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(FProcMeshSection, bSectionVisible) == 0x000059, "Member 'FProcMeshSection::bSectionVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_CalculateTangentsForMesh \ +static_assert(alignof(KismetProceduralMeshLibrary_CalculateTangentsForMesh) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_CalculateTangentsForMesh"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_CalculateTangentsForMesh) == 0x000050, "Wrong size on KismetProceduralMeshLibrary_CalculateTangentsForMesh"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CalculateTangentsForMesh, Vertices) == 0x000000, "Member 'KismetProceduralMeshLibrary_CalculateTangentsForMesh::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CalculateTangentsForMesh, Triangles) == 0x000010, "Member 'KismetProceduralMeshLibrary_CalculateTangentsForMesh::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CalculateTangentsForMesh, UVs) == 0x000020, "Member 'KismetProceduralMeshLibrary_CalculateTangentsForMesh::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CalculateTangentsForMesh, Normals) == 0x000030, "Member 'KismetProceduralMeshLibrary_CalculateTangentsForMesh::Normals' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CalculateTangentsForMesh, Tangents) == 0x000040, "Member 'KismetProceduralMeshLibrary_CalculateTangentsForMesh::Tangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_ConvertQuadToTriangles \ +static_assert(alignof(KismetProceduralMeshLibrary_ConvertQuadToTriangles) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_ConvertQuadToTriangles"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_ConvertQuadToTriangles) == 0x000020, "Wrong size on KismetProceduralMeshLibrary_ConvertQuadToTriangles"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_ConvertQuadToTriangles, Triangles) == 0x000000, "Member 'KismetProceduralMeshLibrary_ConvertQuadToTriangles::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_ConvertQuadToTriangles, Vert0) == 0x000010, "Member 'KismetProceduralMeshLibrary_ConvertQuadToTriangles::Vert0' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_ConvertQuadToTriangles, Vert1) == 0x000014, "Member 'KismetProceduralMeshLibrary_ConvertQuadToTriangles::Vert1' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_ConvertQuadToTriangles, Vert2) == 0x000018, "Member 'KismetProceduralMeshLibrary_ConvertQuadToTriangles::Vert2' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_ConvertQuadToTriangles, Vert3) == 0x00001C, "Member 'KismetProceduralMeshLibrary_ConvertQuadToTriangles::Vert3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent \ +static_assert(alignof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent) == 0x000020, "Wrong size on KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent, StaticMeshComponent) == 0x000000, "Member 'KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent, LODIndex) == 0x000008, "Member 'KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent, ProcMeshComponent) == 0x000010, "Member 'KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent::ProcMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent, bCreateCollision) == 0x000018, "Member 'KismetProceduralMeshLibrary_CopyProceduralMeshFromStaticMeshComponent::bCreateCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_CreateGridMeshSplit \ +static_assert(alignof(KismetProceduralMeshLibrary_CreateGridMeshSplit) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_CreateGridMeshSplit"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_CreateGridMeshSplit) == 0x000050, "Wrong size on KismetProceduralMeshLibrary_CreateGridMeshSplit"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, NumX) == 0x000000, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::NumX' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, NumY) == 0x000004, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::NumY' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, Triangles) == 0x000008, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, Vertices) == 0x000018, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, UVs) == 0x000028, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, UV1s) == 0x000038, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::UV1s' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshSplit, GridSpacing) == 0x000048, "Member 'KismetProceduralMeshLibrary_CreateGridMeshSplit::GridSpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_CreateGridMeshTriangles \ +static_assert(alignof(KismetProceduralMeshLibrary_CreateGridMeshTriangles) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_CreateGridMeshTriangles"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_CreateGridMeshTriangles) == 0x000020, "Wrong size on KismetProceduralMeshLibrary_CreateGridMeshTriangles"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshTriangles, NumX) == 0x000000, "Member 'KismetProceduralMeshLibrary_CreateGridMeshTriangles::NumX' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshTriangles, NumY) == 0x000004, "Member 'KismetProceduralMeshLibrary_CreateGridMeshTriangles::NumY' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshTriangles, bWinding) == 0x000008, "Member 'KismetProceduralMeshLibrary_CreateGridMeshTriangles::bWinding' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshTriangles, Triangles) == 0x000010, "Member 'KismetProceduralMeshLibrary_CreateGridMeshTriangles::Triangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_CreateGridMeshWelded \ +static_assert(alignof(KismetProceduralMeshLibrary_CreateGridMeshWelded) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_CreateGridMeshWelded"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_CreateGridMeshWelded) == 0x000040, "Wrong size on KismetProceduralMeshLibrary_CreateGridMeshWelded"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, NumX) == 0x000000, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::NumX' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, NumY) == 0x000004, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::NumY' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, Triangles) == 0x000008, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, Vertices) == 0x000018, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, UVs) == 0x000028, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_CreateGridMeshWelded, GridSpacing) == 0x000038, "Member 'KismetProceduralMeshLibrary_CreateGridMeshWelded::GridSpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_GenerateBoxMesh \ +static_assert(alignof(KismetProceduralMeshLibrary_GenerateBoxMesh) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_GenerateBoxMesh"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_GenerateBoxMesh) == 0x000068, "Wrong size on KismetProceduralMeshLibrary_GenerateBoxMesh"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, BoxRadius) == 0x000000, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::BoxRadius' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, Vertices) == 0x000018, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, Triangles) == 0x000028, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, Normals) == 0x000038, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::Normals' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, UVs) == 0x000048, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GenerateBoxMesh, Tangents) == 0x000058, "Member 'KismetProceduralMeshLibrary_GenerateBoxMesh::Tangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_GetSectionFromProceduralMesh \ +static_assert(alignof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_GetSectionFromProceduralMesh"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh) == 0x000060, "Wrong size on KismetProceduralMeshLibrary_GetSectionFromProceduralMesh"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, InProcMesh) == 0x000000, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::InProcMesh' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, SectionIndex) == 0x000008, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, Vertices) == 0x000010, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, Triangles) == 0x000020, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, Normals) == 0x000030, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::Normals' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, UVs) == 0x000040, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromProceduralMesh, Tangents) == 0x000050, "Member 'KismetProceduralMeshLibrary_GetSectionFromProceduralMesh::Tangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_GetSectionFromStaticMesh \ +static_assert(alignof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_GetSectionFromStaticMesh"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh) == 0x000060, "Wrong size on KismetProceduralMeshLibrary_GetSectionFromStaticMesh"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, InMesh) == 0x000000, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::InMesh' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, LODIndex) == 0x000008, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::LODIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, SectionIndex) == 0x00000C, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, Vertices) == 0x000010, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::Vertices' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, Triangles) == 0x000020, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::Triangles' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, Normals) == 0x000030, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::Normals' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, UVs) == 0x000040, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::UVs' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_GetSectionFromStaticMesh, Tangents) == 0x000050, "Member 'KismetProceduralMeshLibrary_GetSectionFromStaticMesh::Tangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KismetProceduralMeshLibrary_SliceProceduralMesh \ +static_assert(alignof(KismetProceduralMeshLibrary_SliceProceduralMesh) == 0x000008, "Wrong alignment on KismetProceduralMeshLibrary_SliceProceduralMesh"); \ +static_assert(sizeof(KismetProceduralMeshLibrary_SliceProceduralMesh) == 0x000058, "Wrong size on KismetProceduralMeshLibrary_SliceProceduralMesh"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, InProcMesh) == 0x000000, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::InProcMesh' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, PlanePosition) == 0x000008, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::PlanePosition' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, PlaneNormal) == 0x000020, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::PlaneNormal' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, bCreateOtherHalf) == 0x000038, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::bCreateOtherHalf' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, OutOtherHalfProcMesh) == 0x000040, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::OutOtherHalfProcMesh' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, CapOption) == 0x000048, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::CapOption' has a wrong offset!"); \ +static_assert(offsetof(KismetProceduralMeshLibrary_SliceProceduralMesh, CapMaterial) == 0x000050, "Member 'KismetProceduralMeshLibrary_SliceProceduralMesh::CapMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKismetProceduralMeshLibrary \ +static_assert(alignof(UKismetProceduralMeshLibrary) == 0x000008, "Wrong alignment on UKismetProceduralMeshLibrary"); \ +static_assert(sizeof(UKismetProceduralMeshLibrary) == 0x000028, "Wrong size on UKismetProceduralMeshLibrary"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_AddCollisionConvexMesh \ +static_assert(alignof(ProceduralMeshComponent_AddCollisionConvexMesh) == 0x000008, "Wrong alignment on ProceduralMeshComponent_AddCollisionConvexMesh"); \ +static_assert(sizeof(ProceduralMeshComponent_AddCollisionConvexMesh) == 0x000010, "Wrong size on ProceduralMeshComponent_AddCollisionConvexMesh"); \ +static_assert(offsetof(ProceduralMeshComponent_AddCollisionConvexMesh, ConvexVerts) == 0x000000, "Member 'ProceduralMeshComponent_AddCollisionConvexMesh::ConvexVerts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_ClearMeshSection \ +static_assert(alignof(ProceduralMeshComponent_ClearMeshSection) == 0x000004, "Wrong alignment on ProceduralMeshComponent_ClearMeshSection"); \ +static_assert(sizeof(ProceduralMeshComponent_ClearMeshSection) == 0x000004, "Wrong size on ProceduralMeshComponent_ClearMeshSection"); \ +static_assert(offsetof(ProceduralMeshComponent_ClearMeshSection, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_ClearMeshSection::SectionIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_CreateMeshSection \ +static_assert(alignof(ProceduralMeshComponent_CreateMeshSection) == 0x000008, "Wrong alignment on ProceduralMeshComponent_CreateMeshSection"); \ +static_assert(sizeof(ProceduralMeshComponent_CreateMeshSection) == 0x000070, "Wrong size on ProceduralMeshComponent_CreateMeshSection"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_CreateMeshSection::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, Vertices) == 0x000008, "Member 'ProceduralMeshComponent_CreateMeshSection::Vertices' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, Triangles) == 0x000018, "Member 'ProceduralMeshComponent_CreateMeshSection::Triangles' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, Normals) == 0x000028, "Member 'ProceduralMeshComponent_CreateMeshSection::Normals' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, UV0) == 0x000038, "Member 'ProceduralMeshComponent_CreateMeshSection::UV0' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, VertexColors) == 0x000048, "Member 'ProceduralMeshComponent_CreateMeshSection::VertexColors' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, Tangents) == 0x000058, "Member 'ProceduralMeshComponent_CreateMeshSection::Tangents' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection, bCreateCollision) == 0x000068, "Member 'ProceduralMeshComponent_CreateMeshSection::bCreateCollision' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_CreateMeshSection_LinearColor \ +static_assert(alignof(ProceduralMeshComponent_CreateMeshSection_LinearColor) == 0x000008, "Wrong alignment on ProceduralMeshComponent_CreateMeshSection_LinearColor"); \ +static_assert(sizeof(ProceduralMeshComponent_CreateMeshSection_LinearColor) == 0x0000A0, "Wrong size on ProceduralMeshComponent_CreateMeshSection_LinearColor"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, Vertices) == 0x000008, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::Vertices' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, Triangles) == 0x000018, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::Triangles' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, Normals) == 0x000028, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::Normals' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, UV0) == 0x000038, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::UV0' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, UV1) == 0x000048, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::UV1' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, UV2) == 0x000058, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::UV2' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, UV3) == 0x000068, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::UV3' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, VertexColors) == 0x000078, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::VertexColors' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, Tangents) == 0x000088, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::Tangents' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, bCreateCollision) == 0x000098, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::bCreateCollision' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_CreateMeshSection_LinearColor, bSRGBConversion) == 0x000099, "Member 'ProceduralMeshComponent_CreateMeshSection_LinearColor::bSRGBConversion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_SetMeshSectionVisible \ +static_assert(alignof(ProceduralMeshComponent_SetMeshSectionVisible) == 0x000004, "Wrong alignment on ProceduralMeshComponent_SetMeshSectionVisible"); \ +static_assert(sizeof(ProceduralMeshComponent_SetMeshSectionVisible) == 0x000008, "Wrong size on ProceduralMeshComponent_SetMeshSectionVisible"); \ +static_assert(offsetof(ProceduralMeshComponent_SetMeshSectionVisible, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_SetMeshSectionVisible::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_SetMeshSectionVisible, bNewVisibility) == 0x000004, "Member 'ProceduralMeshComponent_SetMeshSectionVisible::bNewVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_UpdateMeshSection \ +static_assert(alignof(ProceduralMeshComponent_UpdateMeshSection) == 0x000008, "Wrong alignment on ProceduralMeshComponent_UpdateMeshSection"); \ +static_assert(sizeof(ProceduralMeshComponent_UpdateMeshSection) == 0x000058, "Wrong size on ProceduralMeshComponent_UpdateMeshSection"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_UpdateMeshSection::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, Vertices) == 0x000008, "Member 'ProceduralMeshComponent_UpdateMeshSection::Vertices' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, Normals) == 0x000018, "Member 'ProceduralMeshComponent_UpdateMeshSection::Normals' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, UV0) == 0x000028, "Member 'ProceduralMeshComponent_UpdateMeshSection::UV0' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, VertexColors) == 0x000038, "Member 'ProceduralMeshComponent_UpdateMeshSection::VertexColors' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection, Tangents) == 0x000048, "Member 'ProceduralMeshComponent_UpdateMeshSection::Tangents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_UpdateMeshSection_LinearColor \ +static_assert(alignof(ProceduralMeshComponent_UpdateMeshSection_LinearColor) == 0x000008, "Wrong alignment on ProceduralMeshComponent_UpdateMeshSection_LinearColor"); \ +static_assert(sizeof(ProceduralMeshComponent_UpdateMeshSection_LinearColor) == 0x000090, "Wrong size on ProceduralMeshComponent_UpdateMeshSection_LinearColor"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, Vertices) == 0x000008, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::Vertices' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, Normals) == 0x000018, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::Normals' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, UV0) == 0x000028, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::UV0' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, UV1) == 0x000038, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::UV1' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, UV2) == 0x000048, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::UV2' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, UV3) == 0x000058, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::UV3' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, VertexColors) == 0x000068, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::VertexColors' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, Tangents) == 0x000078, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::Tangents' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_UpdateMeshSection_LinearColor, bSRGBConversion) == 0x000088, "Member 'ProceduralMeshComponent_UpdateMeshSection_LinearColor::bSRGBConversion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_GetNumSections \ +static_assert(alignof(ProceduralMeshComponent_GetNumSections) == 0x000004, "Wrong alignment on ProceduralMeshComponent_GetNumSections"); \ +static_assert(sizeof(ProceduralMeshComponent_GetNumSections) == 0x000004, "Wrong size on ProceduralMeshComponent_GetNumSections"); \ +static_assert(offsetof(ProceduralMeshComponent_GetNumSections, ReturnValue) == 0x000000, "Member 'ProceduralMeshComponent_GetNumSections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProceduralMeshComponent_IsMeshSectionVisible \ +static_assert(alignof(ProceduralMeshComponent_IsMeshSectionVisible) == 0x000004, "Wrong alignment on ProceduralMeshComponent_IsMeshSectionVisible"); \ +static_assert(sizeof(ProceduralMeshComponent_IsMeshSectionVisible) == 0x000008, "Wrong size on ProceduralMeshComponent_IsMeshSectionVisible"); \ +static_assert(offsetof(ProceduralMeshComponent_IsMeshSectionVisible, SectionIndex) == 0x000000, "Member 'ProceduralMeshComponent_IsMeshSectionVisible::SectionIndex' has a wrong offset!"); \ +static_assert(offsetof(ProceduralMeshComponent_IsMeshSectionVisible, ReturnValue) == 0x000004, "Member 'ProceduralMeshComponent_IsMeshSectionVisible::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProceduralMeshComponent \ +static_assert(alignof(UProceduralMeshComponent) == 0x000010, "Wrong alignment on UProceduralMeshComponent"); \ +static_assert(sizeof(UProceduralMeshComponent) == 0x000630, "Wrong size on UProceduralMeshComponent"); \ +static_assert(offsetof(UProceduralMeshComponent, bUseComplexAsSimpleCollision) == 0x0005B0, "Member 'UProceduralMeshComponent::bUseComplexAsSimpleCollision' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, bUseAsyncCooking) == 0x0005B1, "Member 'UProceduralMeshComponent::bUseAsyncCooking' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, ProcMeshBodySetup) == 0x0005B8, "Member 'UProceduralMeshComponent::ProcMeshBodySetup' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, ProcMeshSections) == 0x0005C0, "Member 'UProceduralMeshComponent::ProcMeshSections' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, CollisionConvexElems) == 0x0005D0, "Member 'UProceduralMeshComponent::CollisionConvexElems' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, LocalBounds) == 0x0005E0, "Member 'UProceduralMeshComponent::LocalBounds' has a wrong offset!"); \ +static_assert(offsetof(UProceduralMeshComponent, AsyncBodySetupQueue) == 0x000618, "Member 'UProceduralMeshComponent::AsyncBodySetupQueue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ADataflowActor \ +static_assert(alignof(ADataflowActor) == 0x000008, "Wrong alignment on ADataflowActor"); \ +static_assert(sizeof(ADataflowActor) == 0x0002A0, "Wrong size on ADataflowActor"); \ +static_assert(offsetof(ADataflowActor, DataflowComponent) == 0x000298, "Member 'ADataflowActor::DataflowComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDataflowComponent \ +static_assert(alignof(UDataflowComponent) == 0x000010, "Wrong alignment on UDataflowComponent"); \ +static_assert(sizeof(UDataflowComponent) == 0x0006B0, "Wrong size on UDataflowComponent"); \ + +#define DUMPER7_ASSERTS_FChaosDestructionEvent \ +static_assert(alignof(FChaosDestructionEvent) == 0x000008, "Wrong alignment on FChaosDestructionEvent"); \ +static_assert(sizeof(FChaosDestructionEvent) == 0x000078, "Wrong size on FChaosDestructionEvent"); \ +static_assert(offsetof(FChaosDestructionEvent, Position) == 0x000000, "Member 'FChaosDestructionEvent::Position' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, Normal) == 0x000018, "Member 'FChaosDestructionEvent::Normal' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, Velocity) == 0x000030, "Member 'FChaosDestructionEvent::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, AngularVelocity) == 0x000048, "Member 'FChaosDestructionEvent::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, ExtentMin) == 0x000060, "Member 'FChaosDestructionEvent::ExtentMin' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, ExtentMax) == 0x000064, "Member 'FChaosDestructionEvent::ExtentMax' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, ParticleID) == 0x000068, "Member 'FChaosDestructionEvent::ParticleID' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, Time) == 0x00006C, "Member 'FChaosDestructionEvent::Time' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent, Type) == 0x000070, "Member 'FChaosDestructionEvent::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceChaosDestruction \ +static_assert(alignof(UNiagaraDataInterfaceChaosDestruction) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceChaosDestruction"); \ +static_assert(sizeof(UNiagaraDataInterfaceChaosDestruction) == 0x000348, "Wrong size on UNiagaraDataInterfaceChaosDestruction"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, ChaosSolverActorSet) == 0x000038, "Member 'UNiagaraDataInterfaceChaosDestruction::ChaosSolverActorSet' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DataSourceType) == 0x000088, "Member 'UNiagaraDataInterfaceChaosDestruction::DataSourceType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DataProcessFrequency) == 0x00008C, "Member 'UNiagaraDataInterfaceChaosDestruction::DataProcessFrequency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, MaxNumberOfDataEntriesToSpawn) == 0x000090, "Member 'UNiagaraDataInterfaceChaosDestruction::MaxNumberOfDataEntriesToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DoSpawn) == 0x000094, "Member 'UNiagaraDataInterfaceChaosDestruction::DoSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpawnMultiplierMinMax) == 0x000098, "Member 'UNiagaraDataInterfaceChaosDestruction::SpawnMultiplierMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpawnChance) == 0x0000A8, "Member 'UNiagaraDataInterfaceChaosDestruction::SpawnChance' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, ImpulseToSpawnMinMax) == 0x0000B0, "Member 'UNiagaraDataInterfaceChaosDestruction::ImpulseToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpeedToSpawnMinMax) == 0x0000C0, "Member 'UNiagaraDataInterfaceChaosDestruction::SpeedToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, MassToSpawnMinMax) == 0x0000D0, "Member 'UNiagaraDataInterfaceChaosDestruction::MassToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, ExtentMinToSpawnMinMax) == 0x0000E0, "Member 'UNiagaraDataInterfaceChaosDestruction::ExtentMinToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, ExtentMaxToSpawnMinMax) == 0x0000F0, "Member 'UNiagaraDataInterfaceChaosDestruction::ExtentMaxToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, VolumeToSpawnMinMax) == 0x000100, "Member 'UNiagaraDataInterfaceChaosDestruction::VolumeToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SolverTimeToSpawnMinMax) == 0x000110, "Member 'UNiagaraDataInterfaceChaosDestruction::SolverTimeToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SurfaceTypeToSpawn) == 0x000120, "Member 'UNiagaraDataInterfaceChaosDestruction::SurfaceTypeToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationFilteringMode) == 0x000124, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationFilteringMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationXToSpawn) == 0x000125, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationXToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationXToSpawnMinMax) == 0x000128, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationXToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationYToSpawn) == 0x000138, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationYToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationYToSpawnMinMax) == 0x000140, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationYToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationZToSpawn) == 0x000150, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationZToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LocationZToSpawnMinMax) == 0x000158, "Member 'UNiagaraDataInterfaceChaosDestruction::LocationZToSpawnMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, TrailMinSpeedToSpawn) == 0x000168, "Member 'UNiagaraDataInterfaceChaosDestruction::TrailMinSpeedToSpawn' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DataSortingType) == 0x00016C, "Member 'UNiagaraDataInterfaceChaosDestruction::DataSortingType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, bGetExternalCollisionData) == 0x00016D, "Member 'UNiagaraDataInterfaceChaosDestruction::bGetExternalCollisionData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DoSpatialHash) == 0x00016E, "Member 'UNiagaraDataInterfaceChaosDestruction::DoSpatialHash' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpatialHashVolumeMin) == 0x000170, "Member 'UNiagaraDataInterfaceChaosDestruction::SpatialHashVolumeMin' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpatialHashVolumeMax) == 0x000188, "Member 'UNiagaraDataInterfaceChaosDestruction::SpatialHashVolumeMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpatialHashVolumeCellSize) == 0x0001A0, "Member 'UNiagaraDataInterfaceChaosDestruction::SpatialHashVolumeCellSize' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, MaxDataPerCell) == 0x0001B8, "Member 'UNiagaraDataInterfaceChaosDestruction::MaxDataPerCell' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, bApplyMaterialsFilter) == 0x0001BC, "Member 'UNiagaraDataInterfaceChaosDestruction::bApplyMaterialsFilter' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, ChaosBreakingMaterialSet) == 0x0001C0, "Member 'UNiagaraDataInterfaceChaosDestruction::ChaosBreakingMaterialSet' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, bGetExternalBreakingData) == 0x000210, "Member 'UNiagaraDataInterfaceChaosDestruction::bGetExternalBreakingData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, bGetExternalTrailingData) == 0x000211, "Member 'UNiagaraDataInterfaceChaosDestruction::bGetExternalTrailingData' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, RandomPositionMagnitudeMinMax) == 0x000218, "Member 'UNiagaraDataInterfaceChaosDestruction::RandomPositionMagnitudeMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, InheritedVelocityMultiplier) == 0x000228, "Member 'UNiagaraDataInterfaceChaosDestruction::InheritedVelocityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, RandomVelocityGenerationType) == 0x00022C, "Member 'UNiagaraDataInterfaceChaosDestruction::RandomVelocityGenerationType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, RandomVelocityMagnitudeMinMax) == 0x000230, "Member 'UNiagaraDataInterfaceChaosDestruction::RandomVelocityMagnitudeMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SpreadAngleMax) == 0x000240, "Member 'UNiagaraDataInterfaceChaosDestruction::SpreadAngleMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, VelocityOffsetMin) == 0x000248, "Member 'UNiagaraDataInterfaceChaosDestruction::VelocityOffsetMin' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, VelocityOffsetMax) == 0x000260, "Member 'UNiagaraDataInterfaceChaosDestruction::VelocityOffsetMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, FinalVelocityMagnitudeMinMax) == 0x000278, "Member 'UNiagaraDataInterfaceChaosDestruction::FinalVelocityMagnitudeMinMax' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, MaxLatency) == 0x000288, "Member 'UNiagaraDataInterfaceChaosDestruction::MaxLatency' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, DebugType) == 0x00028C, "Member 'UNiagaraDataInterfaceChaosDestruction::DebugType' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LastSpawnedPointID) == 0x000290, "Member 'UNiagaraDataInterfaceChaosDestruction::LastSpawnedPointID' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, LastSpawnTime) == 0x000294, "Member 'UNiagaraDataInterfaceChaosDestruction::LastSpawnTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, SolverTime) == 0x0002A8, "Member 'UNiagaraDataInterfaceChaosDestruction::SolverTime' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraDataInterfaceChaosDestruction, TimeStampOfLastProcessedData) == 0x0002AC, "Member 'UNiagaraDataInterfaceChaosDestruction::TimeStampOfLastProcessedData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfaceGeometryCollection \ +static_assert(alignof(UNiagaraDataInterfaceGeometryCollection) == 0x000008, "Wrong alignment on UNiagaraDataInterfaceGeometryCollection"); \ +static_assert(sizeof(UNiagaraDataInterfaceGeometryCollection) == 0x000040, "Wrong size on UNiagaraDataInterfaceGeometryCollection"); \ +static_assert(offsetof(UNiagaraDataInterfaceGeometryCollection, GeometryCollectionActor) == 0x000038, "Member 'UNiagaraDataInterfaceGeometryCollection::GeometryCollectionActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNiagaraDataInterfacePhysicsField \ +static_assert(alignof(UNiagaraDataInterfacePhysicsField) == 0x000008, "Wrong alignment on UNiagaraDataInterfacePhysicsField"); \ +static_assert(sizeof(UNiagaraDataInterfacePhysicsField) == 0x000038, "Wrong size on UNiagaraDataInterfacePhysicsField"); \ + +#define DUMPER7_ASSERTS_LocalizableMessageLibrary_Conv_LocalizableMessageToText \ +static_assert(alignof(LocalizableMessageLibrary_Conv_LocalizableMessageToText) == 0x000008, "Wrong alignment on LocalizableMessageLibrary_Conv_LocalizableMessageToText"); \ +static_assert(sizeof(LocalizableMessageLibrary_Conv_LocalizableMessageToText) == 0x000050, "Wrong size on LocalizableMessageLibrary_Conv_LocalizableMessageToText"); \ +static_assert(offsetof(LocalizableMessageLibrary_Conv_LocalizableMessageToText, WorldContextObject) == 0x000000, "Member 'LocalizableMessageLibrary_Conv_LocalizableMessageToText::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(LocalizableMessageLibrary_Conv_LocalizableMessageToText, Message) == 0x000008, "Member 'LocalizableMessageLibrary_Conv_LocalizableMessageToText::Message' has a wrong offset!"); \ +static_assert(offsetof(LocalizableMessageLibrary_Conv_LocalizableMessageToText, ReturnValue) == 0x000038, "Member 'LocalizableMessageLibrary_Conv_LocalizableMessageToText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalizableMessageLibrary_IsEmpty_LocalizableMessage \ +static_assert(alignof(LocalizableMessageLibrary_IsEmpty_LocalizableMessage) == 0x000008, "Wrong alignment on LocalizableMessageLibrary_IsEmpty_LocalizableMessage"); \ +static_assert(sizeof(LocalizableMessageLibrary_IsEmpty_LocalizableMessage) == 0x000038, "Wrong size on LocalizableMessageLibrary_IsEmpty_LocalizableMessage"); \ +static_assert(offsetof(LocalizableMessageLibrary_IsEmpty_LocalizableMessage, Message) == 0x000000, "Member 'LocalizableMessageLibrary_IsEmpty_LocalizableMessage::Message' has a wrong offset!"); \ +static_assert(offsetof(LocalizableMessageLibrary_IsEmpty_LocalizableMessage, ReturnValue) == 0x000030, "Member 'LocalizableMessageLibrary_IsEmpty_LocalizableMessage::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocalizableMessageLibrary_Reset_LocalizableMessage \ +static_assert(alignof(LocalizableMessageLibrary_Reset_LocalizableMessage) == 0x000008, "Wrong alignment on LocalizableMessageLibrary_Reset_LocalizableMessage"); \ +static_assert(sizeof(LocalizableMessageLibrary_Reset_LocalizableMessage) == 0x000030, "Wrong size on LocalizableMessageLibrary_Reset_LocalizableMessage"); \ +static_assert(offsetof(LocalizableMessageLibrary_Reset_LocalizableMessage, Message) == 0x000000, "Member 'LocalizableMessageLibrary_Reset_LocalizableMessage::Message' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocalizableMessageLibrary \ +static_assert(alignof(ULocalizableMessageLibrary) == 0x000008, "Wrong alignment on ULocalizableMessageLibrary"); \ +static_assert(sizeof(ULocalizableMessageLibrary) == 0x000028, "Wrong size on ULocalizableMessageLibrary"); \ + +#define DUMPER7_ASSERTS_FTrackRenderData \ +static_assert(alignof(FTrackRenderData) == 0x000010, "Wrong alignment on FTrackRenderData"); \ +static_assert(sizeof(FTrackRenderData) == 0x0000C0, "Wrong size on FTrackRenderData"); \ + +#define DUMPER7_ASSERTS_FGeometryCacheMeshBatchInfo \ +static_assert(alignof(FGeometryCacheMeshBatchInfo) == 0x000004, "Wrong alignment on FGeometryCacheMeshBatchInfo"); \ +static_assert(sizeof(FGeometryCacheMeshBatchInfo) == 0x00000C, "Wrong size on FGeometryCacheMeshBatchInfo"); \ + +#define DUMPER7_ASSERTS_FGeometryCacheVertexInfo \ +static_assert(alignof(FGeometryCacheVertexInfo) == 0x000001, "Wrong alignment on FGeometryCacheVertexInfo"); \ +static_assert(sizeof(FGeometryCacheVertexInfo) == 0x000009, "Wrong size on FGeometryCacheVertexInfo"); \ + +#define DUMPER7_ASSERTS_FGeometryCacheMeshData \ +static_assert(alignof(FGeometryCacheMeshData) == 0x000008, "Wrong alignment on FGeometryCacheMeshData"); \ +static_assert(sizeof(FGeometryCacheMeshData) == 0x0000C8, "Wrong size on FGeometryCacheMeshData"); \ + +#define DUMPER7_ASSERTS_FNiagaraGeometryCacheMICOverride \ +static_assert(alignof(FNiagaraGeometryCacheMICOverride) == 0x000008, "Wrong alignment on FNiagaraGeometryCacheMICOverride"); \ +static_assert(sizeof(FNiagaraGeometryCacheMICOverride) == 0x000010, "Wrong size on FNiagaraGeometryCacheMICOverride"); \ +static_assert(offsetof(FNiagaraGeometryCacheMICOverride, OriginalMaterial) == 0x000000, "Member 'FNiagaraGeometryCacheMICOverride::OriginalMaterial' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGeometryCacheMICOverride, ReplacementMaterial) == 0x000008, "Member 'FNiagaraGeometryCacheMICOverride::ReplacementMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNiagaraGeometryCacheReference \ +static_assert(alignof(FNiagaraGeometryCacheReference) == 0x000008, "Wrong alignment on FNiagaraGeometryCacheReference"); \ +static_assert(sizeof(FNiagaraGeometryCacheReference) == 0x000048, "Wrong size on FNiagaraGeometryCacheReference"); \ +static_assert(offsetof(FNiagaraGeometryCacheReference, GeometryCache) == 0x000000, "Member 'FNiagaraGeometryCacheReference::GeometryCache' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGeometryCacheReference, GeometryCacheUserParamBinding) == 0x000008, "Member 'FNiagaraGeometryCacheReference::GeometryCacheUserParamBinding' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGeometryCacheReference, OverrideMaterials) == 0x000028, "Member 'FNiagaraGeometryCacheReference::OverrideMaterials' has a wrong offset!"); \ +static_assert(offsetof(FNiagaraGeometryCacheReference, MICOverrideMaterials) == 0x000038, "Member 'FNiagaraGeometryCacheReference::MICOverrideMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCache \ +static_assert(alignof(UGeometryCache) == 0x000008, "Wrong alignment on UGeometryCache"); \ +static_assert(sizeof(UGeometryCache) == 0x000090, "Wrong size on UGeometryCache"); \ +static_assert(offsetof(UGeometryCache, Materials) == 0x000030, "Member 'UGeometryCache::Materials' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, MaterialSlotNames) == 0x000040, "Member 'UGeometryCache::MaterialSlotNames' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, Tracks) == 0x000050, "Member 'UGeometryCache::Tracks' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, AssetUserData) == 0x000060, "Member 'UGeometryCache::AssetUserData' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, StartFrame) == 0x000080, "Member 'UGeometryCache::StartFrame' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, EndFrame) == 0x000084, "Member 'UGeometryCache::EndFrame' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCache, Hash) == 0x000088, "Member 'UGeometryCache::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheActor_GetGeometryCacheComponent \ +static_assert(alignof(GeometryCacheActor_GetGeometryCacheComponent) == 0x000008, "Wrong alignment on GeometryCacheActor_GetGeometryCacheComponent"); \ +static_assert(sizeof(GeometryCacheActor_GetGeometryCacheComponent) == 0x000008, "Wrong size on GeometryCacheActor_GetGeometryCacheComponent"); \ +static_assert(offsetof(GeometryCacheActor_GetGeometryCacheComponent, ReturnValue) == 0x000000, "Member 'GeometryCacheActor_GetGeometryCacheComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGeometryCacheActor \ +static_assert(alignof(AGeometryCacheActor) == 0x000008, "Wrong alignment on AGeometryCacheActor"); \ +static_assert(sizeof(AGeometryCacheActor) == 0x0002A0, "Wrong size on AGeometryCacheActor"); \ +static_assert(offsetof(AGeometryCacheActor, GeometryCacheComponent) == 0x000298, "Member 'AGeometryCacheActor::GeometryCacheComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheCodecBase \ +static_assert(alignof(UGeometryCacheCodecBase) == 0x000008, "Wrong alignment on UGeometryCacheCodecBase"); \ +static_assert(sizeof(UGeometryCacheCodecBase) == 0x000038, "Wrong size on UGeometryCacheCodecBase"); \ +static_assert(offsetof(UGeometryCacheCodecBase, TopologyRanges) == 0x000028, "Member 'UGeometryCacheCodecBase::TopologyRanges' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheCodecRaw \ +static_assert(alignof(UGeometryCacheCodecRaw) == 0x000008, "Wrong alignment on UGeometryCacheCodecRaw"); \ +static_assert(sizeof(UGeometryCacheCodecRaw) == 0x000040, "Wrong size on UGeometryCacheCodecRaw"); \ +static_assert(offsetof(UGeometryCacheCodecRaw, DummyProperty) == 0x000038, "Member 'UGeometryCacheCodecRaw::DummyProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheCodecV1 \ +static_assert(alignof(UGeometryCacheCodecV1) == 0x000008, "Wrong alignment on UGeometryCacheCodecV1"); \ +static_assert(sizeof(UGeometryCacheCodecV1) == 0x000040, "Wrong size on UGeometryCacheCodecV1"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetExtrapolateFrames \ +static_assert(alignof(GeometryCacheComponent_SetExtrapolateFrames) == 0x000001, "Wrong alignment on GeometryCacheComponent_SetExtrapolateFrames"); \ +static_assert(sizeof(GeometryCacheComponent_SetExtrapolateFrames) == 0x000001, "Wrong size on GeometryCacheComponent_SetExtrapolateFrames"); \ +static_assert(offsetof(GeometryCacheComponent_SetExtrapolateFrames, bNewExtrapolating) == 0x000000, "Member 'GeometryCacheComponent_SetExtrapolateFrames::bNewExtrapolating' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetGeometryCache \ +static_assert(alignof(GeometryCacheComponent_SetGeometryCache) == 0x000008, "Wrong alignment on GeometryCacheComponent_SetGeometryCache"); \ +static_assert(sizeof(GeometryCacheComponent_SetGeometryCache) == 0x000010, "Wrong size on GeometryCacheComponent_SetGeometryCache"); \ +static_assert(offsetof(GeometryCacheComponent_SetGeometryCache, NewGeomCache) == 0x000000, "Member 'GeometryCacheComponent_SetGeometryCache::NewGeomCache' has a wrong offset!"); \ +static_assert(offsetof(GeometryCacheComponent_SetGeometryCache, ReturnValue) == 0x000008, "Member 'GeometryCacheComponent_SetGeometryCache::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetLooping \ +static_assert(alignof(GeometryCacheComponent_SetLooping) == 0x000001, "Wrong alignment on GeometryCacheComponent_SetLooping"); \ +static_assert(sizeof(GeometryCacheComponent_SetLooping) == 0x000001, "Wrong size on GeometryCacheComponent_SetLooping"); \ +static_assert(offsetof(GeometryCacheComponent_SetLooping, bNewLooping) == 0x000000, "Member 'GeometryCacheComponent_SetLooping::bNewLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetMotionVectorScale \ +static_assert(alignof(GeometryCacheComponent_SetMotionVectorScale) == 0x000004, "Wrong alignment on GeometryCacheComponent_SetMotionVectorScale"); \ +static_assert(sizeof(GeometryCacheComponent_SetMotionVectorScale) == 0x000004, "Wrong size on GeometryCacheComponent_SetMotionVectorScale"); \ +static_assert(offsetof(GeometryCacheComponent_SetMotionVectorScale, NewMotionVectorScale) == 0x000000, "Member 'GeometryCacheComponent_SetMotionVectorScale::NewMotionVectorScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetOverrideWireframeColor \ +static_assert(alignof(GeometryCacheComponent_SetOverrideWireframeColor) == 0x000001, "Wrong alignment on GeometryCacheComponent_SetOverrideWireframeColor"); \ +static_assert(sizeof(GeometryCacheComponent_SetOverrideWireframeColor) == 0x000001, "Wrong size on GeometryCacheComponent_SetOverrideWireframeColor"); \ +static_assert(offsetof(GeometryCacheComponent_SetOverrideWireframeColor, bOverride) == 0x000000, "Member 'GeometryCacheComponent_SetOverrideWireframeColor::bOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetPlaybackSpeed \ +static_assert(alignof(GeometryCacheComponent_SetPlaybackSpeed) == 0x000004, "Wrong alignment on GeometryCacheComponent_SetPlaybackSpeed"); \ +static_assert(sizeof(GeometryCacheComponent_SetPlaybackSpeed) == 0x000004, "Wrong size on GeometryCacheComponent_SetPlaybackSpeed"); \ +static_assert(offsetof(GeometryCacheComponent_SetPlaybackSpeed, NewPlaybackSpeed) == 0x000000, "Member 'GeometryCacheComponent_SetPlaybackSpeed::NewPlaybackSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetStartTimeOffset \ +static_assert(alignof(GeometryCacheComponent_SetStartTimeOffset) == 0x000004, "Wrong alignment on GeometryCacheComponent_SetStartTimeOffset"); \ +static_assert(sizeof(GeometryCacheComponent_SetStartTimeOffset) == 0x000004, "Wrong size on GeometryCacheComponent_SetStartTimeOffset"); \ +static_assert(offsetof(GeometryCacheComponent_SetStartTimeOffset, NewStartTimeOffset) == 0x000000, "Member 'GeometryCacheComponent_SetStartTimeOffset::NewStartTimeOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_SetWireframeOverrideColor \ +static_assert(alignof(GeometryCacheComponent_SetWireframeOverrideColor) == 0x000004, "Wrong alignment on GeometryCacheComponent_SetWireframeOverrideColor"); \ +static_assert(sizeof(GeometryCacheComponent_SetWireframeOverrideColor) == 0x000010, "Wrong size on GeometryCacheComponent_SetWireframeOverrideColor"); \ +static_assert(offsetof(GeometryCacheComponent_SetWireframeOverrideColor, Color) == 0x000000, "Member 'GeometryCacheComponent_SetWireframeOverrideColor::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_TickAtThisTime \ +static_assert(alignof(GeometryCacheComponent_TickAtThisTime) == 0x000004, "Wrong alignment on GeometryCacheComponent_TickAtThisTime"); \ +static_assert(sizeof(GeometryCacheComponent_TickAtThisTime) == 0x000008, "Wrong size on GeometryCacheComponent_TickAtThisTime"); \ +static_assert(offsetof(GeometryCacheComponent_TickAtThisTime, Time) == 0x000000, "Member 'GeometryCacheComponent_TickAtThisTime::Time' has a wrong offset!"); \ +static_assert(offsetof(GeometryCacheComponent_TickAtThisTime, bInIsRunning) == 0x000004, "Member 'GeometryCacheComponent_TickAtThisTime::bInIsRunning' has a wrong offset!"); \ +static_assert(offsetof(GeometryCacheComponent_TickAtThisTime, bInBackwards) == 0x000005, "Member 'GeometryCacheComponent_TickAtThisTime::bInBackwards' has a wrong offset!"); \ +static_assert(offsetof(GeometryCacheComponent_TickAtThisTime, bInIsLooping) == 0x000006, "Member 'GeometryCacheComponent_TickAtThisTime::bInIsLooping' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetAnimationTime \ +static_assert(alignof(GeometryCacheComponent_GetAnimationTime) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetAnimationTime"); \ +static_assert(sizeof(GeometryCacheComponent_GetAnimationTime) == 0x000004, "Wrong size on GeometryCacheComponent_GetAnimationTime"); \ +static_assert(offsetof(GeometryCacheComponent_GetAnimationTime, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetAnimationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetDuration \ +static_assert(alignof(GeometryCacheComponent_GetDuration) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetDuration"); \ +static_assert(sizeof(GeometryCacheComponent_GetDuration) == 0x000004, "Wrong size on GeometryCacheComponent_GetDuration"); \ +static_assert(offsetof(GeometryCacheComponent_GetDuration, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetMotionVectorScale \ +static_assert(alignof(GeometryCacheComponent_GetMotionVectorScale) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetMotionVectorScale"); \ +static_assert(sizeof(GeometryCacheComponent_GetMotionVectorScale) == 0x000004, "Wrong size on GeometryCacheComponent_GetMotionVectorScale"); \ +static_assert(offsetof(GeometryCacheComponent_GetMotionVectorScale, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetMotionVectorScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetNumberOfFrames \ +static_assert(alignof(GeometryCacheComponent_GetNumberOfFrames) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetNumberOfFrames"); \ +static_assert(sizeof(GeometryCacheComponent_GetNumberOfFrames) == 0x000004, "Wrong size on GeometryCacheComponent_GetNumberOfFrames"); \ +static_assert(offsetof(GeometryCacheComponent_GetNumberOfFrames, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetNumberOfFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetOverrideWireframeColor \ +static_assert(alignof(GeometryCacheComponent_GetOverrideWireframeColor) == 0x000001, "Wrong alignment on GeometryCacheComponent_GetOverrideWireframeColor"); \ +static_assert(sizeof(GeometryCacheComponent_GetOverrideWireframeColor) == 0x000001, "Wrong size on GeometryCacheComponent_GetOverrideWireframeColor"); \ +static_assert(offsetof(GeometryCacheComponent_GetOverrideWireframeColor, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetOverrideWireframeColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetPlaybackDirection \ +static_assert(alignof(GeometryCacheComponent_GetPlaybackDirection) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetPlaybackDirection"); \ +static_assert(sizeof(GeometryCacheComponent_GetPlaybackDirection) == 0x000004, "Wrong size on GeometryCacheComponent_GetPlaybackDirection"); \ +static_assert(offsetof(GeometryCacheComponent_GetPlaybackDirection, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetPlaybackDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetPlaybackSpeed \ +static_assert(alignof(GeometryCacheComponent_GetPlaybackSpeed) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetPlaybackSpeed"); \ +static_assert(sizeof(GeometryCacheComponent_GetPlaybackSpeed) == 0x000004, "Wrong size on GeometryCacheComponent_GetPlaybackSpeed"); \ +static_assert(offsetof(GeometryCacheComponent_GetPlaybackSpeed, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetPlaybackSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetStartTimeOffset \ +static_assert(alignof(GeometryCacheComponent_GetStartTimeOffset) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetStartTimeOffset"); \ +static_assert(sizeof(GeometryCacheComponent_GetStartTimeOffset) == 0x000004, "Wrong size on GeometryCacheComponent_GetStartTimeOffset"); \ +static_assert(offsetof(GeometryCacheComponent_GetStartTimeOffset, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetStartTimeOffset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_GetWireframeOverrideColor \ +static_assert(alignof(GeometryCacheComponent_GetWireframeOverrideColor) == 0x000004, "Wrong alignment on GeometryCacheComponent_GetWireframeOverrideColor"); \ +static_assert(sizeof(GeometryCacheComponent_GetWireframeOverrideColor) == 0x000010, "Wrong size on GeometryCacheComponent_GetWireframeOverrideColor"); \ +static_assert(offsetof(GeometryCacheComponent_GetWireframeOverrideColor, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_GetWireframeOverrideColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_IsExtrapolatingFrames \ +static_assert(alignof(GeometryCacheComponent_IsExtrapolatingFrames) == 0x000001, "Wrong alignment on GeometryCacheComponent_IsExtrapolatingFrames"); \ +static_assert(sizeof(GeometryCacheComponent_IsExtrapolatingFrames) == 0x000001, "Wrong size on GeometryCacheComponent_IsExtrapolatingFrames"); \ +static_assert(offsetof(GeometryCacheComponent_IsExtrapolatingFrames, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_IsExtrapolatingFrames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_IsLooping \ +static_assert(alignof(GeometryCacheComponent_IsLooping) == 0x000001, "Wrong alignment on GeometryCacheComponent_IsLooping"); \ +static_assert(sizeof(GeometryCacheComponent_IsLooping) == 0x000001, "Wrong size on GeometryCacheComponent_IsLooping"); \ +static_assert(offsetof(GeometryCacheComponent_IsLooping, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_IsLooping::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_IsPlaying \ +static_assert(alignof(GeometryCacheComponent_IsPlaying) == 0x000001, "Wrong alignment on GeometryCacheComponent_IsPlaying"); \ +static_assert(sizeof(GeometryCacheComponent_IsPlaying) == 0x000001, "Wrong size on GeometryCacheComponent_IsPlaying"); \ +static_assert(offsetof(GeometryCacheComponent_IsPlaying, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_IsPlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheComponent_IsPlayingReversed \ +static_assert(alignof(GeometryCacheComponent_IsPlayingReversed) == 0x000001, "Wrong alignment on GeometryCacheComponent_IsPlayingReversed"); \ +static_assert(sizeof(GeometryCacheComponent_IsPlayingReversed) == 0x000001, "Wrong size on GeometryCacheComponent_IsPlayingReversed"); \ +static_assert(offsetof(GeometryCacheComponent_IsPlayingReversed, ReturnValue) == 0x000000, "Member 'GeometryCacheComponent_IsPlayingReversed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheComponent \ +static_assert(alignof(UGeometryCacheComponent) == 0x000010, "Wrong alignment on UGeometryCacheComponent"); \ +static_assert(sizeof(UGeometryCacheComponent) == 0x000630, "Wrong size on UGeometryCacheComponent"); \ +static_assert(offsetof(UGeometryCacheComponent, GeometryCache) == 0x0005A8, "Member 'UGeometryCacheComponent::GeometryCache' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, bRunning) == 0x0005B0, "Member 'UGeometryCacheComponent::bRunning' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, bLooping) == 0x0005B1, "Member 'UGeometryCacheComponent::bLooping' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, bExtrapolateFrames) == 0x0005B2, "Member 'UGeometryCacheComponent::bExtrapolateFrames' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, StartTimeOffset) == 0x0005B4, "Member 'UGeometryCacheComponent::StartTimeOffset' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, PlaybackSpeed) == 0x0005B8, "Member 'UGeometryCacheComponent::PlaybackSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, MotionVectorScale) == 0x0005BC, "Member 'UGeometryCacheComponent::MotionVectorScale' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, NumTracks) == 0x0005C0, "Member 'UGeometryCacheComponent::NumTracks' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, ElapsedTime) == 0x0005C4, "Member 'UGeometryCacheComponent::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, Duration) == 0x000614, "Member 'UGeometryCacheComponent::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, bManualTick) == 0x000618, "Member 'UGeometryCacheComponent::bManualTick' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, bOverrideWireframeColor) == 0x000619, "Member 'UGeometryCacheComponent::bOverrideWireframeColor' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheComponent, WireframeOverrideColor) == 0x00061C, "Member 'UGeometryCacheComponent::WireframeOverrideColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheTrack \ +static_assert(alignof(UGeometryCacheTrack) == 0x000008, "Wrong alignment on UGeometryCacheTrack"); \ +static_assert(sizeof(UGeometryCacheTrack) == 0x000058, "Wrong size on UGeometryCacheTrack"); \ +static_assert(offsetof(UGeometryCacheTrack, Duration) == 0x000028, "Member 'UGeometryCacheTrack::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheTrack_FlipbookAnimation_AddMeshSample \ +static_assert(alignof(GeometryCacheTrack_FlipbookAnimation_AddMeshSample) == 0x000008, "Wrong alignment on GeometryCacheTrack_FlipbookAnimation_AddMeshSample"); \ +static_assert(sizeof(GeometryCacheTrack_FlipbookAnimation_AddMeshSample) == 0x0000D0, "Wrong size on GeometryCacheTrack_FlipbookAnimation_AddMeshSample"); \ +static_assert(offsetof(GeometryCacheTrack_FlipbookAnimation_AddMeshSample, MeshData) == 0x000000, "Member 'GeometryCacheTrack_FlipbookAnimation_AddMeshSample::MeshData' has a wrong offset!"); \ +static_assert(offsetof(GeometryCacheTrack_FlipbookAnimation_AddMeshSample, SampleTime) == 0x0000C8, "Member 'GeometryCacheTrack_FlipbookAnimation_AddMeshSample::SampleTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheTrack_FlipbookAnimation \ +static_assert(alignof(UGeometryCacheTrack_FlipbookAnimation) == 0x000008, "Wrong alignment on UGeometryCacheTrack_FlipbookAnimation"); \ +static_assert(sizeof(UGeometryCacheTrack_FlipbookAnimation) == 0x000080, "Wrong size on UGeometryCacheTrack_FlipbookAnimation"); \ +static_assert(offsetof(UGeometryCacheTrack_FlipbookAnimation, NumMeshSamples) == 0x000058, "Member 'UGeometryCacheTrack_FlipbookAnimation::NumMeshSamples' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheTrackStreamable \ +static_assert(alignof(UGeometryCacheTrackStreamable) == 0x000008, "Wrong alignment on UGeometryCacheTrackStreamable"); \ +static_assert(sizeof(UGeometryCacheTrackStreamable) == 0x0000D8, "Wrong size on UGeometryCacheTrackStreamable"); \ +static_assert(offsetof(UGeometryCacheTrackStreamable, Codec) == 0x000058, "Member 'UGeometryCacheTrackStreamable::Codec' has a wrong offset!"); \ +static_assert(offsetof(UGeometryCacheTrackStreamable, StartSampleTime) == 0x0000C8, "Member 'UGeometryCacheTrackStreamable::StartSampleTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GeometryCacheTrack_TransformAnimation_SetMesh \ +static_assert(alignof(GeometryCacheTrack_TransformAnimation_SetMesh) == 0x000008, "Wrong alignment on GeometryCacheTrack_TransformAnimation_SetMesh"); \ +static_assert(sizeof(GeometryCacheTrack_TransformAnimation_SetMesh) == 0x0000C8, "Wrong size on GeometryCacheTrack_TransformAnimation_SetMesh"); \ +static_assert(offsetof(GeometryCacheTrack_TransformAnimation_SetMesh, NewMeshData) == 0x000000, "Member 'GeometryCacheTrack_TransformAnimation_SetMesh::NewMeshData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheTrack_TransformAnimation \ +static_assert(alignof(UGeometryCacheTrack_TransformAnimation) == 0x000008, "Wrong alignment on UGeometryCacheTrack_TransformAnimation"); \ +static_assert(sizeof(UGeometryCacheTrack_TransformAnimation) == 0x000120, "Wrong size on UGeometryCacheTrack_TransformAnimation"); \ + +#define DUMPER7_ASSERTS_GeometryCacheTrack_TransformGroupAnimation_SetMesh \ +static_assert(alignof(GeometryCacheTrack_TransformGroupAnimation_SetMesh) == 0x000008, "Wrong alignment on GeometryCacheTrack_TransformGroupAnimation_SetMesh"); \ +static_assert(sizeof(GeometryCacheTrack_TransformGroupAnimation_SetMesh) == 0x0000C8, "Wrong size on GeometryCacheTrack_TransformGroupAnimation_SetMesh"); \ +static_assert(offsetof(GeometryCacheTrack_TransformGroupAnimation_SetMesh, NewMeshData) == 0x000000, "Member 'GeometryCacheTrack_TransformGroupAnimation_SetMesh::NewMeshData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGeometryCacheTrack_TransformGroupAnimation \ +static_assert(alignof(UGeometryCacheTrack_TransformGroupAnimation) == 0x000008, "Wrong alignment on UGeometryCacheTrack_TransformGroupAnimation"); \ +static_assert(sizeof(UGeometryCacheTrack_TransformGroupAnimation) == 0x000120, "Wrong size on UGeometryCacheTrack_TransformGroupAnimation"); \ + +#define DUMPER7_ASSERTS_UNiagaraGeometryCacheRendererProperties \ +static_assert(alignof(UNiagaraGeometryCacheRendererProperties) == 0x000008, "Wrong alignment on UNiagaraGeometryCacheRendererProperties"); \ +static_assert(sizeof(UNiagaraGeometryCacheRendererProperties) == 0x0002E8, "Wrong size on UNiagaraGeometryCacheRendererProperties"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, GeometryCaches) == 0x0000C0, "Member 'UNiagaraGeometryCacheRendererProperties::GeometryCaches' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, SourceMode) == 0x0000D0, "Member 'UNiagaraGeometryCacheRendererProperties::SourceMode' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, bIsLooping) == 0x0000D1, "Member 'UNiagaraGeometryCacheRendererProperties::bIsLooping' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, ComponentCountLimit) == 0x0000D4, "Member 'UNiagaraGeometryCacheRendererProperties::ComponentCountLimit' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, PositionBinding) == 0x0000D8, "Member 'UNiagaraGeometryCacheRendererProperties::PositionBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, RotationBinding) == 0x000110, "Member 'UNiagaraGeometryCacheRendererProperties::RotationBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, ScaleBinding) == 0x000148, "Member 'UNiagaraGeometryCacheRendererProperties::ScaleBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, ElapsedTimeBinding) == 0x000180, "Member 'UNiagaraGeometryCacheRendererProperties::ElapsedTimeBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, EnabledBinding) == 0x0001B8, "Member 'UNiagaraGeometryCacheRendererProperties::EnabledBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, ArrayIndexBinding) == 0x0001F0, "Member 'UNiagaraGeometryCacheRendererProperties::ArrayIndexBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, RendererVisibilityTagBinding) == 0x000228, "Member 'UNiagaraGeometryCacheRendererProperties::RendererVisibilityTagBinding' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, RendererVisibility) == 0x000260, "Member 'UNiagaraGeometryCacheRendererProperties::RendererVisibility' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, bAssignComponentsOnParticleID) == 0x000264, "Member 'UNiagaraGeometryCacheRendererProperties::bAssignComponentsOnParticleID' has a wrong offset!"); \ +static_assert(offsetof(UNiagaraGeometryCacheRendererProperties, MaterialParameters) == 0x000268, "Member 'UNiagaraGeometryCacheRendererProperties::MaterialParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangePipelinePropertyStatePerContext \ +static_assert(alignof(FInterchangePipelinePropertyStatePerContext) == 0x000001, "Wrong alignment on FInterchangePipelinePropertyStatePerContext"); \ +static_assert(sizeof(FInterchangePipelinePropertyStatePerContext) == 0x000001, "Wrong size on FInterchangePipelinePropertyStatePerContext"); \ +static_assert(offsetof(FInterchangePipelinePropertyStatePerContext, bVisible) == 0x000000, "Member 'FInterchangePipelinePropertyStatePerContext::bVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangePipelinePropertyStates \ +static_assert(alignof(FInterchangePipelinePropertyStates) == 0x000001, "Wrong alignment on FInterchangePipelinePropertyStates"); \ +static_assert(sizeof(FInterchangePipelinePropertyStates) == 0x000003, "Wrong size on FInterchangePipelinePropertyStates"); \ +static_assert(offsetof(FInterchangePipelinePropertyStates, bLocked) == 0x000000, "Member 'FInterchangePipelinePropertyStates::bLocked' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelinePropertyStates, ImportStates) == 0x000001, "Member 'FInterchangePipelinePropertyStates::ImportStates' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelinePropertyStates, ReimportStates) == 0x000002, "Member 'FInterchangePipelinePropertyStates::ReimportStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeUserDefinedAttributeInfo \ +static_assert(alignof(FInterchangeUserDefinedAttributeInfo) == 0x000008, "Wrong alignment on FInterchangeUserDefinedAttributeInfo"); \ +static_assert(sizeof(FInterchangeUserDefinedAttributeInfo) == 0x000030, "Wrong size on FInterchangeUserDefinedAttributeInfo"); \ +static_assert(offsetof(FInterchangeUserDefinedAttributeInfo, Name) == 0x000000, "Member 'FInterchangeUserDefinedAttributeInfo::Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBase_GetFactoryClass \ +static_assert(alignof(InterchangeFactoryBase_GetFactoryClass) == 0x000008, "Wrong alignment on InterchangeFactoryBase_GetFactoryClass"); \ +static_assert(sizeof(InterchangeFactoryBase_GetFactoryClass) == 0x000008, "Wrong size on InterchangeFactoryBase_GetFactoryClass"); \ +static_assert(offsetof(InterchangeFactoryBase_GetFactoryClass, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBase_GetFactoryClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeFactoryBase \ +static_assert(alignof(UInterchangeFactoryBase) == 0x000008, "Wrong alignment on UInterchangeFactoryBase"); \ +static_assert(sizeof(UInterchangeFactoryBase) == 0x000030, "Wrong size on UInterchangeFactoryBase"); \ +static_assert(offsetof(UInterchangeFactoryBase, Results) == 0x000028, "Member 'UInterchangeFactoryBase::Results' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceData_SetFilename \ +static_assert(alignof(InterchangeSourceData_SetFilename) == 0x000008, "Wrong alignment on InterchangeSourceData_SetFilename"); \ +static_assert(sizeof(InterchangeSourceData_SetFilename) == 0x000018, "Wrong size on InterchangeSourceData_SetFilename"); \ +static_assert(offsetof(InterchangeSourceData_SetFilename, InFilename) == 0x000000, "Member 'InterchangeSourceData_SetFilename::InFilename' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceData_SetFilename, ReturnValue) == 0x000010, "Member 'InterchangeSourceData_SetFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceData_GetFilename \ +static_assert(alignof(InterchangeSourceData_GetFilename) == 0x000008, "Wrong alignment on InterchangeSourceData_GetFilename"); \ +static_assert(sizeof(InterchangeSourceData_GetFilename) == 0x000010, "Wrong size on InterchangeSourceData_GetFilename"); \ +static_assert(offsetof(InterchangeSourceData_GetFilename, ReturnValue) == 0x000000, "Member 'InterchangeSourceData_GetFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSourceData \ +static_assert(alignof(UInterchangeSourceData) == 0x000008, "Wrong alignment on UInterchangeSourceData"); \ +static_assert(sizeof(UInterchangeSourceData) == 0x000050, "Wrong size on UInterchangeSourceData"); \ +static_assert(offsetof(UInterchangeSourceData, Filename) == 0x000028, "Member 'UInterchangeSourceData::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeWriterBase \ +static_assert(alignof(UInterchangeWriterBase) == 0x000008, "Wrong alignment on UInterchangeWriterBase"); \ +static_assert(sizeof(UInterchangeWriterBase) == 0x000028, "Wrong size on UInterchangeWriterBase"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_FindOrAddPropertyStates \ +static_assert(alignof(InterchangePipelineBase_FindOrAddPropertyStates) == 0x000004, "Wrong alignment on InterchangePipelineBase_FindOrAddPropertyStates"); \ +static_assert(sizeof(InterchangePipelineBase_FindOrAddPropertyStates) == 0x00000C, "Wrong size on InterchangePipelineBase_FindOrAddPropertyStates"); \ +static_assert(offsetof(InterchangePipelineBase_FindOrAddPropertyStates, PropertyPath) == 0x000000, "Member 'InterchangePipelineBase_FindOrAddPropertyStates::PropertyPath' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_FindOrAddPropertyStates, ReturnValue) == 0x000008, "Member 'InterchangePipelineBase_FindOrAddPropertyStates::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedCanExecuteOnAnyThread \ +static_assert(alignof(InterchangePipelineBase_ScriptedCanExecuteOnAnyThread) == 0x000001, "Wrong alignment on InterchangePipelineBase_ScriptedCanExecuteOnAnyThread"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedCanExecuteOnAnyThread) == 0x000002, "Wrong size on InterchangePipelineBase_ScriptedCanExecuteOnAnyThread"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedCanExecuteOnAnyThread, PipelineTask) == 0x000000, "Member 'InterchangePipelineBase_ScriptedCanExecuteOnAnyThread::PipelineTask' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedCanExecuteOnAnyThread, ReturnValue) == 0x000001, "Member 'InterchangePipelineBase_ScriptedCanExecuteOnAnyThread::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedExecuteExportPipeline \ +static_assert(alignof(InterchangePipelineBase_ScriptedExecuteExportPipeline) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedExecuteExportPipeline"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedExecuteExportPipeline) == 0x000008, "Wrong size on InterchangePipelineBase_ScriptedExecuteExportPipeline"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecuteExportPipeline, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineBase_ScriptedExecuteExportPipeline::BaseNodeContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedExecutePipeline \ +static_assert(alignof(InterchangePipelineBase_ScriptedExecutePipeline) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedExecutePipeline"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedExecutePipeline) == 0x000018, "Wrong size on InterchangePipelineBase_ScriptedExecutePipeline"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePipeline, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineBase_ScriptedExecutePipeline::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePipeline, SourceDatas) == 0x000008, "Member 'InterchangePipelineBase_ScriptedExecutePipeline::SourceDatas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedExecutePostFactoryPipeline \ +static_assert(alignof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedExecutePostFactoryPipeline"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline) == 0x000028, "Wrong size on InterchangePipelineBase_ScriptedExecutePostFactoryPipeline"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineBase_ScriptedExecutePostFactoryPipeline::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline, FactoryNodeKey) == 0x000008, "Member 'InterchangePipelineBase_ScriptedExecutePostFactoryPipeline::FactoryNodeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline, CreatedAsset) == 0x000018, "Member 'InterchangePipelineBase_ScriptedExecutePostFactoryPipeline::CreatedAsset' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostFactoryPipeline, bIsAReimport) == 0x000020, "Member 'InterchangePipelineBase_ScriptedExecutePostFactoryPipeline::bIsAReimport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedExecutePostImportPipeline \ +static_assert(alignof(InterchangePipelineBase_ScriptedExecutePostImportPipeline) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedExecutePostImportPipeline"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedExecutePostImportPipeline) == 0x000028, "Wrong size on InterchangePipelineBase_ScriptedExecutePostImportPipeline"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostImportPipeline, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineBase_ScriptedExecutePostImportPipeline::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostImportPipeline, FactoryNodeKey) == 0x000008, "Member 'InterchangePipelineBase_ScriptedExecutePostImportPipeline::FactoryNodeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostImportPipeline, CreatedAsset) == 0x000018, "Member 'InterchangePipelineBase_ScriptedExecutePostImportPipeline::CreatedAsset' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePostImportPipeline, bIsAReimport) == 0x000020, "Member 'InterchangePipelineBase_ScriptedExecutePostImportPipeline::bIsAReimport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedExecutePreImportPipeline \ +static_assert(alignof(InterchangePipelineBase_ScriptedExecutePreImportPipeline) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedExecutePreImportPipeline"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedExecutePreImportPipeline) == 0x000018, "Wrong size on InterchangePipelineBase_ScriptedExecutePreImportPipeline"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePreImportPipeline, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineBase_ScriptedExecutePreImportPipeline::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedExecutePreImportPipeline, SourceDatas) == 0x000008, "Member 'InterchangePipelineBase_ScriptedExecutePreImportPipeline::SourceDatas' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_ScriptedSetReimportSourceIndex \ +static_assert(alignof(InterchangePipelineBase_ScriptedSetReimportSourceIndex) == 0x000008, "Wrong alignment on InterchangePipelineBase_ScriptedSetReimportSourceIndex"); \ +static_assert(sizeof(InterchangePipelineBase_ScriptedSetReimportSourceIndex) == 0x000010, "Wrong size on InterchangePipelineBase_ScriptedSetReimportSourceIndex"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedSetReimportSourceIndex, ReimportObjectClass) == 0x000000, "Member 'InterchangePipelineBase_ScriptedSetReimportSourceIndex::ReimportObjectClass' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_ScriptedSetReimportSourceIndex, SourceFileIndex) == 0x000008, "Member 'InterchangePipelineBase_ScriptedSetReimportSourceIndex::SourceFileIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineBase_DoesPropertyStatesExist \ +static_assert(alignof(InterchangePipelineBase_DoesPropertyStatesExist) == 0x000004, "Wrong alignment on InterchangePipelineBase_DoesPropertyStatesExist"); \ +static_assert(sizeof(InterchangePipelineBase_DoesPropertyStatesExist) == 0x00000C, "Wrong size on InterchangePipelineBase_DoesPropertyStatesExist"); \ +static_assert(offsetof(InterchangePipelineBase_DoesPropertyStatesExist, PropertyPath) == 0x000000, "Member 'InterchangePipelineBase_DoesPropertyStatesExist::PropertyPath' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineBase_DoesPropertyStatesExist, ReturnValue) == 0x000008, "Member 'InterchangePipelineBase_DoesPropertyStatesExist::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePipelineBase \ +static_assert(alignof(UInterchangePipelineBase) == 0x000008, "Wrong alignment on UInterchangePipelineBase"); \ +static_assert(sizeof(UInterchangePipelineBase) == 0x0000E8, "Wrong size on UInterchangePipelineBase"); \ +static_assert(offsetof(UInterchangePipelineBase, Results) == 0x000030, "Member 'UInterchangePipelineBase::Results' has a wrong offset!"); \ +static_assert(offsetof(UInterchangePipelineBase, PropertiesStates) == 0x000038, "Member 'UInterchangePipelineBase::PropertiesStates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResult \ +static_assert(alignof(UInterchangeResult) == 0x000008, "Wrong alignment on UInterchangeResult"); \ +static_assert(sizeof(UInterchangeResult) == 0x000060, "Wrong size on UInterchangeResult"); \ +static_assert(offsetof(UInterchangeResult, SourceAssetName) == 0x000028, "Member 'UInterchangeResult::SourceAssetName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeResult, DestinationAssetName) == 0x000038, "Member 'UInterchangeResult::DestinationAssetName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeResult, AssetType) == 0x000048, "Member 'UInterchangeResult::AssetType' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeResult, InterchangeKey) == 0x000050, "Member 'UInterchangeResult::InterchangeKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultSuccess \ +static_assert(alignof(UInterchangeResultSuccess) == 0x000008, "Wrong alignment on UInterchangeResultSuccess"); \ +static_assert(sizeof(UInterchangeResultSuccess) == 0x000060, "Wrong size on UInterchangeResultSuccess"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultWarning \ +static_assert(alignof(UInterchangeResultWarning) == 0x000008, "Wrong alignment on UInterchangeResultWarning"); \ +static_assert(sizeof(UInterchangeResultWarning) == 0x000060, "Wrong size on UInterchangeResultWarning"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultError \ +static_assert(alignof(UInterchangeResultError) == 0x000008, "Wrong alignment on UInterchangeResultError"); \ +static_assert(sizeof(UInterchangeResultError) == 0x000060, "Wrong size on UInterchangeResultError"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultWarning_Generic \ +static_assert(alignof(UInterchangeResultWarning_Generic) == 0x000008, "Wrong alignment on UInterchangeResultWarning_Generic"); \ +static_assert(sizeof(UInterchangeResultWarning_Generic) == 0x000078, "Wrong size on UInterchangeResultWarning_Generic"); \ +static_assert(offsetof(UInterchangeResultWarning_Generic, Text) == 0x000060, "Member 'UInterchangeResultWarning_Generic::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultError_Generic \ +static_assert(alignof(UInterchangeResultError_Generic) == 0x000008, "Wrong alignment on UInterchangeResultError_Generic"); \ +static_assert(sizeof(UInterchangeResultError_Generic) == 0x000078, "Wrong size on UInterchangeResultError_Generic"); \ +static_assert(offsetof(UInterchangeResultError_Generic, Text) == 0x000060, "Member 'UInterchangeResultError_Generic::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultError_ReimportFail \ +static_assert(alignof(UInterchangeResultError_ReimportFail) == 0x000008, "Wrong alignment on UInterchangeResultError_ReimportFail"); \ +static_assert(sizeof(UInterchangeResultError_ReimportFail) == 0x000060, "Wrong size on UInterchangeResultError_ReimportFail"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultDisplay_Generic \ +static_assert(alignof(UInterchangeResultDisplay_Generic) == 0x000008, "Wrong alignment on UInterchangeResultDisplay_Generic"); \ +static_assert(sizeof(UInterchangeResultDisplay_Generic) == 0x000078, "Wrong size on UInterchangeResultDisplay_Generic"); \ +static_assert(offsetof(UInterchangeResultDisplay_Generic, Text) == 0x000060, "Member 'UInterchangeResultDisplay_Generic::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultsContainer \ +static_assert(alignof(UInterchangeResultsContainer) == 0x000008, "Wrong alignment on UInterchangeResultsContainer"); \ +static_assert(sizeof(UInterchangeResultsContainer) == 0x000060, "Wrong size on UInterchangeResultsContainer"); \ +static_assert(offsetof(UInterchangeResultsContainer, Results) == 0x000050, "Member 'UInterchangeResultsContainer::Results' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTranslatorBase \ +static_assert(alignof(UInterchangeTranslatorBase) == 0x000008, "Wrong alignment on UInterchangeTranslatorBase"); \ +static_assert(sizeof(UInterchangeTranslatorBase) == 0x000038, "Wrong size on UInterchangeTranslatorBase"); \ +static_assert(offsetof(UInterchangeTranslatorBase, Results) == 0x000028, "Member 'UInterchangeTranslatorBase::Results' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeTranslatorBase, SourceData) == 0x000030, "Member 'UInterchangeTranslatorBase::SourceData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddBooleanAttribute \ +static_assert(alignof(InterchangeBaseNode_AddBooleanAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddBooleanAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddBooleanAttribute) == 0x000018, "Wrong size on InterchangeBaseNode_AddBooleanAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddBooleanAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddBooleanAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddBooleanAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddBooleanAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddBooleanAttribute, ReturnValue) == 0x000011, "Member 'InterchangeBaseNode_AddBooleanAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddDoubleAttribute \ +static_assert(alignof(InterchangeBaseNode_AddDoubleAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddDoubleAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddDoubleAttribute) == 0x000020, "Wrong size on InterchangeBaseNode_AddDoubleAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddDoubleAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddDoubleAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddDoubleAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddDoubleAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddDoubleAttribute, ReturnValue) == 0x000018, "Member 'InterchangeBaseNode_AddDoubleAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddFloatAttribute \ +static_assert(alignof(InterchangeBaseNode_AddFloatAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddFloatAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddFloatAttribute) == 0x000018, "Wrong size on InterchangeBaseNode_AddFloatAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddFloatAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddFloatAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddFloatAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddFloatAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddFloatAttribute, ReturnValue) == 0x000014, "Member 'InterchangeBaseNode_AddFloatAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddGuidAttribute \ +static_assert(alignof(InterchangeBaseNode_AddGuidAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddGuidAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddGuidAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_AddGuidAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddGuidAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddGuidAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddGuidAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddGuidAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddGuidAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_AddGuidAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddInt32Attribute \ +static_assert(alignof(InterchangeBaseNode_AddInt32Attribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddInt32Attribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddInt32Attribute) == 0x000018, "Wrong size on InterchangeBaseNode_AddInt32Attribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddInt32Attribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddInt32Attribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddInt32Attribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddInt32Attribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddInt32Attribute, ReturnValue) == 0x000014, "Member 'InterchangeBaseNode_AddInt32Attribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddLinearColorAttribute \ +static_assert(alignof(InterchangeBaseNode_AddLinearColorAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddLinearColorAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddLinearColorAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_AddLinearColorAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddLinearColorAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddLinearColorAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddLinearColorAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddLinearColorAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddLinearColorAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_AddLinearColorAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddStringAttribute \ +static_assert(alignof(InterchangeBaseNode_AddStringAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddStringAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddStringAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_AddStringAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddStringAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddStringAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddStringAttribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddStringAttribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddStringAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_AddStringAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddVector2Attribute \ +static_assert(alignof(InterchangeBaseNode_AddVector2Attribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddVector2Attribute"); \ +static_assert(sizeof(InterchangeBaseNode_AddVector2Attribute) == 0x000020, "Wrong size on InterchangeBaseNode_AddVector2Attribute"); \ +static_assert(offsetof(InterchangeBaseNode_AddVector2Attribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_AddVector2Attribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddVector2Attribute, Value) == 0x000010, "Member 'InterchangeBaseNode_AddVector2Attribute::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddVector2Attribute, ReturnValue) == 0x000018, "Member 'InterchangeBaseNode_AddVector2Attribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_InitializeNode \ +static_assert(alignof(InterchangeBaseNode_InitializeNode) == 0x000008, "Wrong alignment on InterchangeBaseNode_InitializeNode"); \ +static_assert(sizeof(InterchangeBaseNode_InitializeNode) == 0x000028, "Wrong size on InterchangeBaseNode_InitializeNode"); \ +static_assert(offsetof(InterchangeBaseNode_InitializeNode, UniqueID) == 0x000000, "Member 'InterchangeBaseNode_InitializeNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_InitializeNode, DisplayLabel) == 0x000010, "Member 'InterchangeBaseNode_InitializeNode::DisplayLabel' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_InitializeNode, NodeContainerType) == 0x000020, "Member 'InterchangeBaseNode_InitializeNode::NodeContainerType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_RemoveAttribute \ +static_assert(alignof(InterchangeBaseNode_RemoveAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_RemoveAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_RemoveAttribute) == 0x000018, "Wrong size on InterchangeBaseNode_RemoveAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_RemoveAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_RemoveAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_RemoveAttribute, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_RemoveAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_SetAssetName \ +static_assert(alignof(InterchangeBaseNode_SetAssetName) == 0x000008, "Wrong alignment on InterchangeBaseNode_SetAssetName"); \ +static_assert(sizeof(InterchangeBaseNode_SetAssetName) == 0x000018, "Wrong size on InterchangeBaseNode_SetAssetName"); \ +static_assert(offsetof(InterchangeBaseNode_SetAssetName, AssetName) == 0x000000, "Member 'InterchangeBaseNode_SetAssetName::AssetName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_SetAssetName, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_SetAssetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_SetDisplayLabel \ +static_assert(alignof(InterchangeBaseNode_SetDisplayLabel) == 0x000008, "Wrong alignment on InterchangeBaseNode_SetDisplayLabel"); \ +static_assert(sizeof(InterchangeBaseNode_SetDisplayLabel) == 0x000018, "Wrong size on InterchangeBaseNode_SetDisplayLabel"); \ +static_assert(offsetof(InterchangeBaseNode_SetDisplayLabel, DisplayName) == 0x000000, "Member 'InterchangeBaseNode_SetDisplayLabel::DisplayName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_SetDisplayLabel, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_SetDisplayLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_SetEnabled \ +static_assert(alignof(InterchangeBaseNode_SetEnabled) == 0x000001, "Wrong alignment on InterchangeBaseNode_SetEnabled"); \ +static_assert(sizeof(InterchangeBaseNode_SetEnabled) == 0x000002, "Wrong size on InterchangeBaseNode_SetEnabled"); \ +static_assert(offsetof(InterchangeBaseNode_SetEnabled, bIsEnabled) == 0x000000, "Member 'InterchangeBaseNode_SetEnabled::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_SetEnabled, ReturnValue) == 0x000001, "Member 'InterchangeBaseNode_SetEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_SetParentUid \ +static_assert(alignof(InterchangeBaseNode_SetParentUid) == 0x000008, "Wrong alignment on InterchangeBaseNode_SetParentUid"); \ +static_assert(sizeof(InterchangeBaseNode_SetParentUid) == 0x000018, "Wrong size on InterchangeBaseNode_SetParentUid"); \ +static_assert(offsetof(InterchangeBaseNode_SetParentUid, ParentUid) == 0x000000, "Member 'InterchangeBaseNode_SetParentUid::ParentUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_SetParentUid, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_SetParentUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_AddTargetNodeUid \ +static_assert(alignof(InterchangeBaseNode_AddTargetNodeUid) == 0x000008, "Wrong alignment on InterchangeBaseNode_AddTargetNodeUid"); \ +static_assert(sizeof(InterchangeBaseNode_AddTargetNodeUid) == 0x000018, "Wrong size on InterchangeBaseNode_AddTargetNodeUid"); \ +static_assert(offsetof(InterchangeBaseNode_AddTargetNodeUid, AssetUid) == 0x000000, "Member 'InterchangeBaseNode_AddTargetNodeUid::AssetUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_AddTargetNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_AddTargetNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetAssetName \ +static_assert(alignof(InterchangeBaseNode_GetAssetName) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetAssetName"); \ +static_assert(sizeof(InterchangeBaseNode_GetAssetName) == 0x000010, "Wrong size on InterchangeBaseNode_GetAssetName"); \ +static_assert(offsetof(InterchangeBaseNode_GetAssetName, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetAssetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetBooleanAttribute \ +static_assert(alignof(InterchangeBaseNode_GetBooleanAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetBooleanAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetBooleanAttribute) == 0x000018, "Wrong size on InterchangeBaseNode_GetBooleanAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetBooleanAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetBooleanAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetBooleanAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetBooleanAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetBooleanAttribute, ReturnValue) == 0x000011, "Member 'InterchangeBaseNode_GetBooleanAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetDisplayLabel \ +static_assert(alignof(InterchangeBaseNode_GetDisplayLabel) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetDisplayLabel"); \ +static_assert(sizeof(InterchangeBaseNode_GetDisplayLabel) == 0x000010, "Wrong size on InterchangeBaseNode_GetDisplayLabel"); \ +static_assert(offsetof(InterchangeBaseNode_GetDisplayLabel, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetDisplayLabel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetDoubleAttribute \ +static_assert(alignof(InterchangeBaseNode_GetDoubleAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetDoubleAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetDoubleAttribute) == 0x000020, "Wrong size on InterchangeBaseNode_GetDoubleAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetDoubleAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetDoubleAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetDoubleAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetDoubleAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetDoubleAttribute, ReturnValue) == 0x000018, "Member 'InterchangeBaseNode_GetDoubleAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetFloatAttribute \ +static_assert(alignof(InterchangeBaseNode_GetFloatAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetFloatAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetFloatAttribute) == 0x000018, "Wrong size on InterchangeBaseNode_GetFloatAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetFloatAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetFloatAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetFloatAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetFloatAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetFloatAttribute, ReturnValue) == 0x000014, "Member 'InterchangeBaseNode_GetFloatAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetGuidAttribute \ +static_assert(alignof(InterchangeBaseNode_GetGuidAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetGuidAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetGuidAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_GetGuidAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetGuidAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetGuidAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetGuidAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetGuidAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetGuidAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_GetGuidAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetInt32Attribute \ +static_assert(alignof(InterchangeBaseNode_GetInt32Attribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetInt32Attribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetInt32Attribute) == 0x000018, "Wrong size on InterchangeBaseNode_GetInt32Attribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetInt32Attribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetInt32Attribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetInt32Attribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetInt32Attribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetInt32Attribute, ReturnValue) == 0x000014, "Member 'InterchangeBaseNode_GetInt32Attribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetLinearColorAttribute \ +static_assert(alignof(InterchangeBaseNode_GetLinearColorAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetLinearColorAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetLinearColorAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_GetLinearColorAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetLinearColorAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetLinearColorAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetLinearColorAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetLinearColorAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetLinearColorAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_GetLinearColorAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetNodeContainerType \ +static_assert(alignof(InterchangeBaseNode_GetNodeContainerType) == 0x000001, "Wrong alignment on InterchangeBaseNode_GetNodeContainerType"); \ +static_assert(sizeof(InterchangeBaseNode_GetNodeContainerType) == 0x000001, "Wrong size on InterchangeBaseNode_GetNodeContainerType"); \ +static_assert(offsetof(InterchangeBaseNode_GetNodeContainerType, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetNodeContainerType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetParentUid \ +static_assert(alignof(InterchangeBaseNode_GetParentUid) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetParentUid"); \ +static_assert(sizeof(InterchangeBaseNode_GetParentUid) == 0x000010, "Wrong size on InterchangeBaseNode_GetParentUid"); \ +static_assert(offsetof(InterchangeBaseNode_GetParentUid, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetParentUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetStringAttribute \ +static_assert(alignof(InterchangeBaseNode_GetStringAttribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetStringAttribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetStringAttribute) == 0x000028, "Wrong size on InterchangeBaseNode_GetStringAttribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetStringAttribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetStringAttribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetStringAttribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetStringAttribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetStringAttribute, ReturnValue) == 0x000020, "Member 'InterchangeBaseNode_GetStringAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetTargetNodeCount \ +static_assert(alignof(InterchangeBaseNode_GetTargetNodeCount) == 0x000004, "Wrong alignment on InterchangeBaseNode_GetTargetNodeCount"); \ +static_assert(sizeof(InterchangeBaseNode_GetTargetNodeCount) == 0x000004, "Wrong size on InterchangeBaseNode_GetTargetNodeCount"); \ +static_assert(offsetof(InterchangeBaseNode_GetTargetNodeCount, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetTargetNodeCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetTargetNodeUids \ +static_assert(alignof(InterchangeBaseNode_GetTargetNodeUids) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetTargetNodeUids"); \ +static_assert(sizeof(InterchangeBaseNode_GetTargetNodeUids) == 0x000010, "Wrong size on InterchangeBaseNode_GetTargetNodeUids"); \ +static_assert(offsetof(InterchangeBaseNode_GetTargetNodeUids, OutTargetAssets) == 0x000000, "Member 'InterchangeBaseNode_GetTargetNodeUids::OutTargetAssets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetUniqueID \ +static_assert(alignof(InterchangeBaseNode_GetUniqueID) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetUniqueID"); \ +static_assert(sizeof(InterchangeBaseNode_GetUniqueID) == 0x000010, "Wrong size on InterchangeBaseNode_GetUniqueID"); \ +static_assert(offsetof(InterchangeBaseNode_GetUniqueID, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_GetUniqueID::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_GetVector2Attribute \ +static_assert(alignof(InterchangeBaseNode_GetVector2Attribute) == 0x000008, "Wrong alignment on InterchangeBaseNode_GetVector2Attribute"); \ +static_assert(sizeof(InterchangeBaseNode_GetVector2Attribute) == 0x000020, "Wrong size on InterchangeBaseNode_GetVector2Attribute"); \ +static_assert(offsetof(InterchangeBaseNode_GetVector2Attribute, NodeAttributeKey) == 0x000000, "Member 'InterchangeBaseNode_GetVector2Attribute::NodeAttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetVector2Attribute, OutValue) == 0x000010, "Member 'InterchangeBaseNode_GetVector2Attribute::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_GetVector2Attribute, ReturnValue) == 0x000018, "Member 'InterchangeBaseNode_GetVector2Attribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_IsEnabled \ +static_assert(alignof(InterchangeBaseNode_IsEnabled) == 0x000001, "Wrong alignment on InterchangeBaseNode_IsEnabled"); \ +static_assert(sizeof(InterchangeBaseNode_IsEnabled) == 0x000001, "Wrong size on InterchangeBaseNode_IsEnabled"); \ +static_assert(offsetof(InterchangeBaseNode_IsEnabled, ReturnValue) == 0x000000, "Member 'InterchangeBaseNode_IsEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNode_RemoveTargetNodeUid \ +static_assert(alignof(InterchangeBaseNode_RemoveTargetNodeUid) == 0x000008, "Wrong alignment on InterchangeBaseNode_RemoveTargetNodeUid"); \ +static_assert(sizeof(InterchangeBaseNode_RemoveTargetNodeUid) == 0x000018, "Wrong size on InterchangeBaseNode_RemoveTargetNodeUid"); \ +static_assert(offsetof(InterchangeBaseNode_RemoveTargetNodeUid, AssetUid) == 0x000000, "Member 'InterchangeBaseNode_RemoveTargetNodeUid::AssetUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNode_RemoveTargetNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeBaseNode_RemoveTargetNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeBaseNode \ +static_assert(alignof(UInterchangeBaseNode) == 0x000008, "Wrong alignment on UInterchangeBaseNode"); \ +static_assert(sizeof(UInterchangeBaseNode) == 0x000060, "Wrong size on UInterchangeBaseNode"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_AddNode \ +static_assert(alignof(InterchangeBaseNodeContainer_AddNode) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_AddNode"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_AddNode) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_AddNode"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_AddNode, Node) == 0x000000, "Member 'InterchangeBaseNodeContainer_AddNode::Node' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_AddNode, ReturnValue) == 0x000008, "Member 'InterchangeBaseNodeContainer_AddNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetNodeChildren \ +static_assert(alignof(InterchangeBaseNodeContainer_GetNodeChildren) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetNodeChildren"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetNodeChildren) == 0x000020, "Wrong size on InterchangeBaseNodeContainer_GetNodeChildren"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildren, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetNodeChildren::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildren, ChildIndex) == 0x000010, "Member 'InterchangeBaseNodeContainer_GetNodeChildren::ChildIndex' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildren, ReturnValue) == 0x000018, "Member 'InterchangeBaseNodeContainer_GetNodeChildren::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_LoadFromFile \ +static_assert(alignof(InterchangeBaseNodeContainer_LoadFromFile) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_LoadFromFile"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_LoadFromFile) == 0x000010, "Wrong size on InterchangeBaseNodeContainer_LoadFromFile"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_LoadFromFile, Filename) == 0x000000, "Member 'InterchangeBaseNodeContainer_LoadFromFile::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_ReplaceNode \ +static_assert(alignof(InterchangeBaseNodeContainer_ReplaceNode) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_ReplaceNode"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_ReplaceNode) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_ReplaceNode"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_ReplaceNode, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_ReplaceNode::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_ReplaceNode, NewNode) == 0x000010, "Member 'InterchangeBaseNodeContainer_ReplaceNode::NewNode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_SaveToFile \ +static_assert(alignof(InterchangeBaseNodeContainer_SaveToFile) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_SaveToFile"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_SaveToFile) == 0x000010, "Wrong size on InterchangeBaseNodeContainer_SaveToFile"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_SaveToFile, Filename) == 0x000000, "Member 'InterchangeBaseNodeContainer_SaveToFile::Filename' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_SetNodeParentUid \ +static_assert(alignof(InterchangeBaseNodeContainer_SetNodeParentUid) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_SetNodeParentUid"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_SetNodeParentUid) == 0x000028, "Wrong size on InterchangeBaseNodeContainer_SetNodeParentUid"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_SetNodeParentUid, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_SetNodeParentUid::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_SetNodeParentUid, NewParentNodeUid) == 0x000010, "Member 'InterchangeBaseNodeContainer_SetNodeParentUid::NewParentNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_SetNodeParentUid, ReturnValue) == 0x000020, "Member 'InterchangeBaseNodeContainer_SetNodeParentUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetFactoryNode \ +static_assert(alignof(InterchangeBaseNodeContainer_GetFactoryNode) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetFactoryNode"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetFactoryNode) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_GetFactoryNode"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetFactoryNode, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetFactoryNode::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetFactoryNode, ReturnValue) == 0x000010, "Member 'InterchangeBaseNodeContainer_GetFactoryNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetNode \ +static_assert(alignof(InterchangeBaseNodeContainer_GetNode) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetNode"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetNode) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_GetNode"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNode, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetNode::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNode, ReturnValue) == 0x000010, "Member 'InterchangeBaseNodeContainer_GetNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetNodeChildrenCount \ +static_assert(alignof(InterchangeBaseNodeContainer_GetNodeChildrenCount) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetNodeChildrenCount"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetNodeChildrenCount) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_GetNodeChildrenCount"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildrenCount, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetNodeChildrenCount::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildrenCount, ReturnValue) == 0x000010, "Member 'InterchangeBaseNodeContainer_GetNodeChildrenCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetNodeChildrenUids \ +static_assert(alignof(InterchangeBaseNodeContainer_GetNodeChildrenUids) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetNodeChildrenUids"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetNodeChildrenUids) == 0x000020, "Wrong size on InterchangeBaseNodeContainer_GetNodeChildrenUids"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildrenUids, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetNodeChildrenUids::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodeChildrenUids, ReturnValue) == 0x000010, "Member 'InterchangeBaseNodeContainer_GetNodeChildrenUids::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetNodes \ +static_assert(alignof(InterchangeBaseNodeContainer_GetNodes) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetNodes"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetNodes) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_GetNodes"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodes, ClassNode) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetNodes::ClassNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetNodes, OutNodes) == 0x000008, "Member 'InterchangeBaseNodeContainer_GetNodes::OutNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_GetRoots \ +static_assert(alignof(InterchangeBaseNodeContainer_GetRoots) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_GetRoots"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_GetRoots) == 0x000010, "Wrong size on InterchangeBaseNodeContainer_GetRoots"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_GetRoots, RootNodes) == 0x000000, "Member 'InterchangeBaseNodeContainer_GetRoots::RootNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseNodeContainer_IsNodeUidValid \ +static_assert(alignof(InterchangeBaseNodeContainer_IsNodeUidValid) == 0x000008, "Wrong alignment on InterchangeBaseNodeContainer_IsNodeUidValid"); \ +static_assert(sizeof(InterchangeBaseNodeContainer_IsNodeUidValid) == 0x000018, "Wrong size on InterchangeBaseNodeContainer_IsNodeUidValid"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_IsNodeUidValid, NodeUniqueID) == 0x000000, "Member 'InterchangeBaseNodeContainer_IsNodeUidValid::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseNodeContainer_IsNodeUidValid, ReturnValue) == 0x000010, "Member 'InterchangeBaseNodeContainer_IsNodeUidValid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeBaseNodeContainer \ +static_assert(alignof(UInterchangeBaseNodeContainer) == 0x000008, "Wrong alignment on UInterchangeBaseNodeContainer"); \ +static_assert(sizeof(UInterchangeBaseNodeContainer) == 0x0000C8, "Wrong size on UInterchangeBaseNodeContainer"); \ +static_assert(offsetof(UInterchangeBaseNodeContainer, Nodes) == 0x000028, "Member 'UInterchangeBaseNodeContainer::Nodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_AddFactoryDependencyUid \ +static_assert(alignof(InterchangeFactoryBaseNode_AddFactoryDependencyUid) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_AddFactoryDependencyUid"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_AddFactoryDependencyUid) == 0x000018, "Wrong size on InterchangeFactoryBaseNode_AddFactoryDependencyUid"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_AddFactoryDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeFactoryBaseNode_AddFactoryDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_AddFactoryDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeFactoryBaseNode_AddFactoryDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_RemoveFactoryDependencyUid \ +static_assert(alignof(InterchangeFactoryBaseNode_RemoveFactoryDependencyUid) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_RemoveFactoryDependencyUid"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_RemoveFactoryDependencyUid) == 0x000018, "Wrong size on InterchangeFactoryBaseNode_RemoveFactoryDependencyUid"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_RemoveFactoryDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeFactoryBaseNode_RemoveFactoryDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_RemoveFactoryDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeFactoryBaseNode_RemoveFactoryDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_SetCustomReferenceObject \ +static_assert(alignof(InterchangeFactoryBaseNode_SetCustomReferenceObject) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_SetCustomReferenceObject"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_SetCustomReferenceObject) == 0x000028, "Wrong size on InterchangeFactoryBaseNode_SetCustomReferenceObject"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetCustomReferenceObject, AttributeValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_SetCustomReferenceObject::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetCustomReferenceObject, ReturnValue) == 0x000020, "Member 'InterchangeFactoryBaseNode_SetCustomReferenceObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_SetCustomSubPath \ +static_assert(alignof(InterchangeFactoryBaseNode_SetCustomSubPath) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_SetCustomSubPath"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_SetCustomSubPath) == 0x000018, "Wrong size on InterchangeFactoryBaseNode_SetCustomSubPath"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetCustomSubPath, AttributeValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_SetCustomSubPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetCustomSubPath, ReturnValue) == 0x000010, "Member 'InterchangeFactoryBaseNode_SetCustomSubPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_SetForceNodeReimport \ +static_assert(alignof(InterchangeFactoryBaseNode_SetForceNodeReimport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_SetForceNodeReimport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_SetForceNodeReimport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_SetForceNodeReimport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetForceNodeReimport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_SetForceNodeReimport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_SetReimportStrategyFlags \ +static_assert(alignof(InterchangeFactoryBaseNode_SetReimportStrategyFlags) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_SetReimportStrategyFlags"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_SetReimportStrategyFlags) == 0x000002, "Wrong size on InterchangeFactoryBaseNode_SetReimportStrategyFlags"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetReimportStrategyFlags, ReimportStrategyFlags) == 0x000000, "Member 'InterchangeFactoryBaseNode_SetReimportStrategyFlags::ReimportStrategyFlags' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetReimportStrategyFlags, ReturnValue) == 0x000001, "Member 'InterchangeFactoryBaseNode_SetReimportStrategyFlags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_SetSkipNodeImport \ +static_assert(alignof(InterchangeFactoryBaseNode_SetSkipNodeImport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_SetSkipNodeImport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_SetSkipNodeImport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_SetSkipNodeImport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_SetSkipNodeImport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_SetSkipNodeImport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_UnsetForceNodeReimport \ +static_assert(alignof(InterchangeFactoryBaseNode_UnsetForceNodeReimport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_UnsetForceNodeReimport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_UnsetForceNodeReimport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_UnsetForceNodeReimport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_UnsetForceNodeReimport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_UnsetForceNodeReimport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_UnsetSkipNodeImport \ +static_assert(alignof(InterchangeFactoryBaseNode_UnsetSkipNodeImport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_UnsetSkipNodeImport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_UnsetSkipNodeImport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_UnsetSkipNodeImport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_UnsetSkipNodeImport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_UnsetSkipNodeImport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetCustomReferenceObject \ +static_assert(alignof(InterchangeFactoryBaseNode_GetCustomReferenceObject) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_GetCustomReferenceObject"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetCustomReferenceObject) == 0x000028, "Wrong size on InterchangeFactoryBaseNode_GetCustomReferenceObject"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetCustomReferenceObject, AttributeValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetCustomReferenceObject::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetCustomReferenceObject, ReturnValue) == 0x000020, "Member 'InterchangeFactoryBaseNode_GetCustomReferenceObject::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetCustomSubPath \ +static_assert(alignof(InterchangeFactoryBaseNode_GetCustomSubPath) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_GetCustomSubPath"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetCustomSubPath) == 0x000018, "Wrong size on InterchangeFactoryBaseNode_GetCustomSubPath"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetCustomSubPath, AttributeValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetCustomSubPath::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetCustomSubPath, ReturnValue) == 0x000010, "Member 'InterchangeFactoryBaseNode_GetCustomSubPath::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetFactoryDependencies \ +static_assert(alignof(InterchangeFactoryBaseNode_GetFactoryDependencies) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_GetFactoryDependencies"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetFactoryDependencies) == 0x000010, "Wrong size on InterchangeFactoryBaseNode_GetFactoryDependencies"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetFactoryDependencies, OutDependencies) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetFactoryDependencies::OutDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetFactoryDependenciesCount \ +static_assert(alignof(InterchangeFactoryBaseNode_GetFactoryDependenciesCount) == 0x000004, "Wrong alignment on InterchangeFactoryBaseNode_GetFactoryDependenciesCount"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetFactoryDependenciesCount) == 0x000004, "Wrong size on InterchangeFactoryBaseNode_GetFactoryDependenciesCount"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetFactoryDependenciesCount, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetFactoryDependenciesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetFactoryDependency \ +static_assert(alignof(InterchangeFactoryBaseNode_GetFactoryDependency) == 0x000008, "Wrong alignment on InterchangeFactoryBaseNode_GetFactoryDependency"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetFactoryDependency) == 0x000018, "Wrong size on InterchangeFactoryBaseNode_GetFactoryDependency"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetFactoryDependency, Index_0) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetFactoryDependency::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetFactoryDependency, OutDependency) == 0x000008, "Member 'InterchangeFactoryBaseNode_GetFactoryDependency::OutDependency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_GetReimportStrategyFlags \ +static_assert(alignof(InterchangeFactoryBaseNode_GetReimportStrategyFlags) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_GetReimportStrategyFlags"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_GetReimportStrategyFlags) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_GetReimportStrategyFlags"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_GetReimportStrategyFlags, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_GetReimportStrategyFlags::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_ShouldForceNodeReimport \ +static_assert(alignof(InterchangeFactoryBaseNode_ShouldForceNodeReimport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_ShouldForceNodeReimport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_ShouldForceNodeReimport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_ShouldForceNodeReimport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_ShouldForceNodeReimport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_ShouldForceNodeReimport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFactoryBaseNode_ShouldSkipNodeImport \ +static_assert(alignof(InterchangeFactoryBaseNode_ShouldSkipNodeImport) == 0x000001, "Wrong alignment on InterchangeFactoryBaseNode_ShouldSkipNodeImport"); \ +static_assert(sizeof(InterchangeFactoryBaseNode_ShouldSkipNodeImport) == 0x000001, "Wrong size on InterchangeFactoryBaseNode_ShouldSkipNodeImport"); \ +static_assert(offsetof(InterchangeFactoryBaseNode_ShouldSkipNodeImport, ReturnValue) == 0x000000, "Member 'InterchangeFactoryBaseNode_ShouldSkipNodeImport::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeFactoryBaseNode \ +static_assert(alignof(UInterchangeFactoryBaseNode) == 0x000008, "Wrong alignment on UInterchangeFactoryBaseNode"); \ +static_assert(sizeof(UInterchangeFactoryBaseNode) == 0x000140, "Wrong size on UInterchangeFactoryBaseNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_InitializeSourceNode \ +static_assert(alignof(InterchangeSourceNode_InitializeSourceNode) == 0x000008, "Wrong alignment on InterchangeSourceNode_InitializeSourceNode"); \ +static_assert(sizeof(InterchangeSourceNode_InitializeSourceNode) == 0x000020, "Wrong size on InterchangeSourceNode_InitializeSourceNode"); \ +static_assert(offsetof(InterchangeSourceNode_InitializeSourceNode, UniqueID) == 0x000000, "Member 'InterchangeSourceNode_InitializeSourceNode::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_InitializeSourceNode, DisplayLabel) == 0x000010, "Member 'InterchangeSourceNode_InitializeSourceNode::DisplayLabel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomAnimatedTimeEnd \ +static_assert(alignof(InterchangeSourceNode_SetCustomAnimatedTimeEnd) == 0x000008, "Wrong alignment on InterchangeSourceNode_SetCustomAnimatedTimeEnd"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomAnimatedTimeEnd) == 0x000010, "Wrong size on InterchangeSourceNode_SetCustomAnimatedTimeEnd"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomAnimatedTimeEnd, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomAnimatedTimeEnd::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomAnimatedTimeEnd, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_SetCustomAnimatedTimeEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomAnimatedTimeStart \ +static_assert(alignof(InterchangeSourceNode_SetCustomAnimatedTimeStart) == 0x000008, "Wrong alignment on InterchangeSourceNode_SetCustomAnimatedTimeStart"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomAnimatedTimeStart) == 0x000010, "Wrong size on InterchangeSourceNode_SetCustomAnimatedTimeStart"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomAnimatedTimeStart, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomAnimatedTimeStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomAnimatedTimeStart, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_SetCustomAnimatedTimeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomImportUnusedMaterial \ +static_assert(alignof(InterchangeSourceNode_SetCustomImportUnusedMaterial) == 0x000001, "Wrong alignment on InterchangeSourceNode_SetCustomImportUnusedMaterial"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomImportUnusedMaterial) == 0x000002, "Wrong size on InterchangeSourceNode_SetCustomImportUnusedMaterial"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomImportUnusedMaterial, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomImportUnusedMaterial::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomImportUnusedMaterial, ReturnValue) == 0x000001, "Member 'InterchangeSourceNode_SetCustomImportUnusedMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomSourceFrameRateDenominator \ +static_assert(alignof(InterchangeSourceNode_SetCustomSourceFrameRateDenominator) == 0x000004, "Wrong alignment on InterchangeSourceNode_SetCustomSourceFrameRateDenominator"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomSourceFrameRateDenominator) == 0x000008, "Wrong size on InterchangeSourceNode_SetCustomSourceFrameRateDenominator"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceFrameRateDenominator, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomSourceFrameRateDenominator::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceFrameRateDenominator, ReturnValue) == 0x000004, "Member 'InterchangeSourceNode_SetCustomSourceFrameRateDenominator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomSourceFrameRateNumerator \ +static_assert(alignof(InterchangeSourceNode_SetCustomSourceFrameRateNumerator) == 0x000004, "Wrong alignment on InterchangeSourceNode_SetCustomSourceFrameRateNumerator"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomSourceFrameRateNumerator) == 0x000008, "Wrong size on InterchangeSourceNode_SetCustomSourceFrameRateNumerator"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceFrameRateNumerator, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomSourceFrameRateNumerator::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceFrameRateNumerator, ReturnValue) == 0x000004, "Member 'InterchangeSourceNode_SetCustomSourceFrameRateNumerator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomSourceTimelineEnd \ +static_assert(alignof(InterchangeSourceNode_SetCustomSourceTimelineEnd) == 0x000008, "Wrong alignment on InterchangeSourceNode_SetCustomSourceTimelineEnd"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomSourceTimelineEnd) == 0x000010, "Wrong size on InterchangeSourceNode_SetCustomSourceTimelineEnd"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceTimelineEnd, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomSourceTimelineEnd::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceTimelineEnd, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_SetCustomSourceTimelineEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_SetCustomSourceTimelineStart \ +static_assert(alignof(InterchangeSourceNode_SetCustomSourceTimelineStart) == 0x000008, "Wrong alignment on InterchangeSourceNode_SetCustomSourceTimelineStart"); \ +static_assert(sizeof(InterchangeSourceNode_SetCustomSourceTimelineStart) == 0x000010, "Wrong size on InterchangeSourceNode_SetCustomSourceTimelineStart"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceTimelineStart, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_SetCustomSourceTimelineStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_SetCustomSourceTimelineStart, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_SetCustomSourceTimelineStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomAnimatedTimeEnd \ +static_assert(alignof(InterchangeSourceNode_GetCustomAnimatedTimeEnd) == 0x000008, "Wrong alignment on InterchangeSourceNode_GetCustomAnimatedTimeEnd"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomAnimatedTimeEnd) == 0x000010, "Wrong size on InterchangeSourceNode_GetCustomAnimatedTimeEnd"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomAnimatedTimeEnd, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomAnimatedTimeEnd::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomAnimatedTimeEnd, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_GetCustomAnimatedTimeEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomAnimatedTimeStart \ +static_assert(alignof(InterchangeSourceNode_GetCustomAnimatedTimeStart) == 0x000008, "Wrong alignment on InterchangeSourceNode_GetCustomAnimatedTimeStart"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomAnimatedTimeStart) == 0x000010, "Wrong size on InterchangeSourceNode_GetCustomAnimatedTimeStart"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomAnimatedTimeStart, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomAnimatedTimeStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomAnimatedTimeStart, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_GetCustomAnimatedTimeStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomImportUnusedMaterial \ +static_assert(alignof(InterchangeSourceNode_GetCustomImportUnusedMaterial) == 0x000001, "Wrong alignment on InterchangeSourceNode_GetCustomImportUnusedMaterial"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomImportUnusedMaterial) == 0x000002, "Wrong size on InterchangeSourceNode_GetCustomImportUnusedMaterial"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomImportUnusedMaterial, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomImportUnusedMaterial::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomImportUnusedMaterial, ReturnValue) == 0x000001, "Member 'InterchangeSourceNode_GetCustomImportUnusedMaterial::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomSourceFrameRateDenominator \ +static_assert(alignof(InterchangeSourceNode_GetCustomSourceFrameRateDenominator) == 0x000004, "Wrong alignment on InterchangeSourceNode_GetCustomSourceFrameRateDenominator"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomSourceFrameRateDenominator) == 0x000008, "Wrong size on InterchangeSourceNode_GetCustomSourceFrameRateDenominator"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceFrameRateDenominator, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomSourceFrameRateDenominator::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceFrameRateDenominator, ReturnValue) == 0x000004, "Member 'InterchangeSourceNode_GetCustomSourceFrameRateDenominator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomSourceFrameRateNumerator \ +static_assert(alignof(InterchangeSourceNode_GetCustomSourceFrameRateNumerator) == 0x000004, "Wrong alignment on InterchangeSourceNode_GetCustomSourceFrameRateNumerator"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomSourceFrameRateNumerator) == 0x000008, "Wrong size on InterchangeSourceNode_GetCustomSourceFrameRateNumerator"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceFrameRateNumerator, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomSourceFrameRateNumerator::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceFrameRateNumerator, ReturnValue) == 0x000004, "Member 'InterchangeSourceNode_GetCustomSourceFrameRateNumerator::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomSourceTimelineEnd \ +static_assert(alignof(InterchangeSourceNode_GetCustomSourceTimelineEnd) == 0x000008, "Wrong alignment on InterchangeSourceNode_GetCustomSourceTimelineEnd"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomSourceTimelineEnd) == 0x000010, "Wrong size on InterchangeSourceNode_GetCustomSourceTimelineEnd"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceTimelineEnd, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomSourceTimelineEnd::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceTimelineEnd, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_GetCustomSourceTimelineEnd::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSourceNode_GetCustomSourceTimelineStart \ +static_assert(alignof(InterchangeSourceNode_GetCustomSourceTimelineStart) == 0x000008, "Wrong alignment on InterchangeSourceNode_GetCustomSourceTimelineStart"); \ +static_assert(sizeof(InterchangeSourceNode_GetCustomSourceTimelineStart) == 0x000010, "Wrong size on InterchangeSourceNode_GetCustomSourceTimelineStart"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceTimelineStart, AttributeValue) == 0x000000, "Member 'InterchangeSourceNode_GetCustomSourceTimelineStart::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSourceNode_GetCustomSourceTimelineStart, ReturnValue) == 0x000008, "Member 'InterchangeSourceNode_GetCustomSourceTimelineStart::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSourceNode \ +static_assert(alignof(UInterchangeSourceNode) == 0x000008, "Wrong alignment on UInterchangeSourceNode"); \ +static_assert(sizeof(UInterchangeSourceNode) == 0x0000D0, "Wrong size on UInterchangeSourceNode"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean, Value) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean, PayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Boolean::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double, Value) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double, PayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Double::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float, Value) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float, PayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString) == 0x000040, "Wrong size on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString, Value) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString, PayloadKey) == 0x000028, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString, ReturnValue) == 0x000038, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_FString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32 \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32, Value) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32::Value' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32, PayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_CreateUserDefinedAttribute_Int32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute) == 0x000018, "Wrong size on InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute, InterchangeSourceNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute::InterchangeSourceNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute, InterchangeDestinationNode) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute::InterchangeDestinationNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute, bAddSourceNodeName) == 0x000010, "Member 'InterchangeUserDefinedAttributesAPI_DuplicateAllUserDefinedAttribute::bAddSourceNodeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean, OutValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean, OutPayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean::OutPayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Boolean::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double, OutValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double, OutPayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double::OutPayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Double::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float, OutValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float, OutPayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float::OutPayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Float::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString) == 0x000040, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString, OutValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString, OutPayloadKey) == 0x000028, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString::OutPayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString, ReturnValue) == 0x000038, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_FString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32 \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32) == 0x000038, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32, OutValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32::OutValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32, OutPayloadKey) == 0x000020, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32::OutPayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32, ReturnValue) == 0x000030, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttribute_Int32::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos) == 0x000018, "Wrong size on InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos, UserDefinedAttributeInfos) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_GetUserDefinedAttributeInfos::UserDefinedAttributeInfos' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute \ +static_assert(alignof(InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute) == 0x000008, "Wrong alignment on InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute"); \ +static_assert(sizeof(InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute) == 0x000020, "Wrong size on InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute, InterchangeNode) == 0x000000, "Member 'InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute, UserDefinedAttributeName) == 0x000008, "Member 'InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute::UserDefinedAttributeName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute, ReturnValue) == 0x000018, "Member 'InterchangeUserDefinedAttributesAPI_RemoveUserDefinedAttribute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeUserDefinedAttributesAPI \ +static_assert(alignof(UInterchangeUserDefinedAttributesAPI) == 0x000008, "Wrong alignment on UInterchangeUserDefinedAttributesAPI"); \ +static_assert(sizeof(UInterchangeUserDefinedAttributesAPI) == 0x000028, "Wrong size on UInterchangeUserDefinedAttributesAPI"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction \ +static_assert(alignof(BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction, Active) == 0x000000, "Member 'BP_TelekinesisInteractable_C_Activate_Crosshair_Reaction::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils \ +static_assert(alignof(BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'BP_TelekinesisInteractable_C_Assign_Clue_Type_Stencils::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_CanInteract \ +static_assert(alignof(BP_TelekinesisInteractable_C_CanInteract) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_CanInteract"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_CanInteract) == 0x000002, "Wrong size on BP_TelekinesisInteractable_C_CanInteract"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_CanInteract::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CanInteract, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'BP_TelekinesisInteractable_C_CanInteract::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_CanPull \ +static_assert(alignof(BP_TelekinesisInteractable_C_CanPull) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_CanPull"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_CanPull) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_CanPull"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_CheckIfNarrativeMode \ +static_assert(alignof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_CheckIfNarrativeMode"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode) == 0x000018, "Wrong size on BP_TelekinesisInteractable_C_CheckIfNarrativeMode"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode, InNarrativeMode) == 0x000000, "Member 'BP_TelekinesisInteractable_C_CheckIfNarrativeMode::InNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000008, "Member 'BP_TelekinesisInteractable_C_CheckIfNarrativeMode::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode, CallFunc_GetNarrativeModeEnabled_ReturnValue) == 0x000010, "Member 'BP_TelekinesisInteractable_C_CheckIfNarrativeMode::CallFunc_GetNarrativeModeEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_CheckIfNarrativeMode, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'BP_TelekinesisInteractable_C_CheckIfNarrativeMode::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable \ +static_assert(alignof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable) == 0x000138, "Wrong size on BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, EntryPoint) == 0x000000, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_SwitchEnum_CmpSuccess) == 0x000004, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Variable) == 0x000008, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Variable_1) == 0x000014, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Loop_Counter_Variable_1) == 0x000020, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Add_IntInt_ReturnValue_2) == 0x000024, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Add_IntInt_ReturnValue_3) == 0x000028, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_bool_True_if_break_was_hit_Variable) == 0x00002C, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Array_Index_Variable_1) == 0x000030, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Not_PreBool_ReturnValue) == 0x000034, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Array_Index_Variable_2) == 0x000038, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_Event_InDuration_1) == 0x00003C, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_Event_InDuration) == 0x000040, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_Event_InItemState) == 0x000044, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_SwitchEnum_CmpSuccess_1) == 0x000045, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_Event_bInVisible) == 0x000046, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_VisionFadeOutBegin_self_CastInput) == 0x000048, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_VisionFadeOutBegin_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000058, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000068, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Get_Item) == 0x000078, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Length_ReturnValue) == 0x000080, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Less_IntInt_ReturnValue) == 0x000084, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Get_Item_1) == 0x000088, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Length_ReturnValue_1) == 0x000090, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Less_IntInt_ReturnValue_1) == 0x000094, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_CustomEvent_Active) == 0x000095, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_CustomEvent_Active' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_K2_GetComponentsByClass_ReturnValue_2) == 0x000098, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_K2_GetComponentsByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, Temp_int_Loop_Counter_Variable_2) == 0x0000A8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Get_Item_2) == 0x0000B0, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Add_IntInt_ReturnValue_4) == 0x0000B8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Get_Item_3) == 0x0000C0, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Length_ReturnValue_2) == 0x0000C8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000CC, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Length_ReturnValue_3) == 0x0000D0, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Less_IntInt_ReturnValue_3) == 0x0000D4, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_GetAllActorsOfClass_OutActors) == 0x0000D8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Get_Item_4) == 0x0000E8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Length_ReturnValue_4) == 0x0000F0, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Less_IntInt_ReturnValue_4) == 0x0000F4, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_BooleanAND_ReturnValue) == 0x0000F5, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_GetDistanceTo_ReturnValue) == 0x0000F8, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000FC, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000100, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_Array_Contains_ReturnValue) == 0x000128, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, K2Node_SwitchEnum_CmpSuccess_2) == 0x000129, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000130, "Member 'BP_TelekinesisInteractable_C_ExecuteUbergraph_BP_TelekinesisInteractable::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetAudioComponent \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetAudioComponent"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetAudioComponent) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetAudioComponent"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetClueDataAsset \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetCurrentAmmo \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_TelekinesisInteractable_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_TelekinesisInteractable_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetDataAsset \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetDataAsset"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetDataAsset) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetDataAsset"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetDebugString \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetDebugString) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetDebugString"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetDebugString) == 0x000010, "Wrong size on BP_TelekinesisInteractable_C_GetDebugString"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetHandleLocation \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetHandleLocation"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetHandleLocation) == 0x000018, "Wrong size on BP_TelekinesisInteractable_C_GetHandleLocation"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetInteractAnimation \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetInteractObjective \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetInteractObjective"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetInteractObjective) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetInteractObjective"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetItemState \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetItemState) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_GetItemState"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetItemState) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_GetItemState"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetMeshComponent \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetMeshComponent"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetMeshComponent) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetMeshComponent"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetPointAxis \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetPointAxis"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetPointAxis) == 0x000030, "Wrong size on BP_TelekinesisInteractable_C_GetPointAxis"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetScoreBias \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_TelekinesisInteractable_C_GetScoreBias"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetScoreBias) == 0x000004, "Wrong size on BP_TelekinesisInteractable_C_GetScoreBias"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetThrowableComponent \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetThrowableOrientation \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetThrowableOrientation) == 0x000050, "Wrong size on BP_TelekinesisInteractable_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_TelekinesisInteractable_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableOrientation, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000020, "Member 'BP_TelekinesisInteractable_C_GetThrowableOrientation::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableOrientation, CallFunc_ComposeRotators_ReturnValue) == 0x000038, "Member 'BP_TelekinesisInteractable_C_GetThrowableOrientation::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetThrowableType \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_GetThrowableType"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetThrowableType) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_GetThrowableType"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_IsExplosive \ +static_assert(alignof(BP_TelekinesisInteractable_C_IsExplosive) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_IsExplosive"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_IsExplosive) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_IsExplosive"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_IsPointed \ +static_assert(alignof(BP_TelekinesisInteractable_C_IsPointed) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_IsPointed"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_IsPointed) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_IsPointed"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_IsThrowable \ +static_assert(alignof(BP_TelekinesisInteractable_C_IsThrowable) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_IsThrowable"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_IsThrowable) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_IsThrowable"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_Set_Clue_Overlay \ +static_assert(alignof(BP_TelekinesisInteractable_C_Set_Clue_Overlay) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_Set_Clue_Overlay"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_Set_Clue_Overlay) == 0x000048, "Wrong size on BP_TelekinesisInteractable_C_Set_Clue_Overlay"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, Stencil_Value) == 0x000000, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::Stencil_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, Material) == 0x000008, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::Material' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000010, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, Temp_int_Array_Index_Variable) == 0x000018, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000028, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_Clue_Overlay, CallFunc_Less_IntInt_ReturnValue) == 0x000044, "Member 'BP_TelekinesisInteractable_C_Set_Clue_Overlay::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state \ +static_assert(alignof(BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state) == 0x000018, "Wrong size on BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state, A) == 0x000000, "Member 'BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state::A' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state, CallFunc_VisionFadeOutBegin_self_CastInput) == 0x000008, "Member 'BP_TelekinesisInteractable_C_Set_vision_visilibity_from_item_state::CallFunc_VisionFadeOutBegin_self_CastInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_SetInternalProperty \ +static_assert(alignof(BP_TelekinesisInteractable_C_SetInternalProperty) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_SetInternalProperty"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_SetInternalProperty) == 0x000010, "Wrong size on BP_TelekinesisInteractable_C_SetInternalProperty"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_SetInternalProperty, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_SetInternalProperty::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_SetInternalProperty, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_TelekinesisInteractable_C_SetInternalProperty::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_SetItemState \ +static_assert(alignof(BP_TelekinesisInteractable_C_SetItemState) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_SetItemState"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_SetItemState) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_SetItemState"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_SetItemState, InItemState) == 0x000000, "Member 'BP_TelekinesisInteractable_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_SetVisionVisibility \ +static_assert(alignof(BP_TelekinesisInteractable_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_TelekinesisInteractable_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_VisionFadeInBegin \ +static_assert(alignof(BP_TelekinesisInteractable_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_TelekinesisInteractable_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_TelekinesisInteractable_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_TelekinesisInteractable_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_VisionFadeOutBegin \ +static_assert(alignof(BP_TelekinesisInteractable_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_TelekinesisInteractable_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_TelekinesisInteractable_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_TelekinesisInteractable_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_TelekinesisInteractable_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_C_GetTargetType \ +static_assert(alignof(BP_TelekinesisInteractable_C_GetTargetType) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_C_GetTargetType"); \ +static_assert(sizeof(BP_TelekinesisInteractable_C_GetTargetType) == 0x000001, "Wrong size on BP_TelekinesisInteractable_C_GetTargetType"); \ +static_assert(offsetof(BP_TelekinesisInteractable_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TelekinesisInteractable_C \ +static_assert(alignof(ABP_TelekinesisInteractable_C) == 0x000008, "Wrong alignment on ABP_TelekinesisInteractable_C"); \ +static_assert(sizeof(ABP_TelekinesisInteractable_C) == 0x000368, "Wrong size on ABP_TelekinesisInteractable_C"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, UberGraphFrame) == 0x000298, "Member 'ABP_TelekinesisInteractable_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, ReactiveCrosshairOverride) == 0x0002A0, "Member 'ABP_TelekinesisInteractable_C::ReactiveCrosshairOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, WrestlerCrosshairReact) == 0x0002A8, "Member 'ABP_TelekinesisInteractable_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, WrestlerHeightenedSensesClue) == 0x0002B0, "Member 'ABP_TelekinesisInteractable_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, HeraAudio) == 0x0002B8, "Member 'ABP_TelekinesisInteractable_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Static_Mesh_Component) == 0x0002C0, "Member 'ABP_TelekinesisInteractable_C::Static_Mesh_Component' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, HeraMissionActor) == 0x0002C8, "Member 'ABP_TelekinesisInteractable_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, ItemState) == 0x0002D0, "Member 'ABP_TelekinesisInteractable_C::ItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Interact_Sequence) == 0x0002D8, "Member 'ABP_TelekinesisInteractable_C::Interact_Sequence' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, InteractObjective) == 0x0002E0, "Member 'ABP_TelekinesisInteractable_C::InteractObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, OrientationOffset) == 0x0002E8, "Member 'ABP_TelekinesisInteractable_C::OrientationOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, OnlyOnceInteraction) == 0x000300, "Member 'ABP_TelekinesisInteractable_C::OnlyOnceInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Ak_Event_Loop) == 0x000308, "Member 'ABP_TelekinesisInteractable_C::Ak_Event_Loop' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Ak_Event_Loop_Stop) == 0x000310, "Member 'ABP_TelekinesisInteractable_C::Ak_Event_Loop_Stop' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Ak_Event_Pull) == 0x000318, "Member 'ABP_TelekinesisInteractable_C::Ak_Event_Pull' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Ak_Event_PrePull) == 0x000320, "Member 'ABP_TelekinesisInteractable_C::Ak_Event_PrePull' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Ak_Event_Pull_Secondary) == 0x000328, "Member 'ABP_TelekinesisInteractable_C::Ak_Event_Pull_Secondary' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Heightened_Senses_material) == 0x000330, "Member 'ABP_TelekinesisInteractable_C::Heightened_Senses_material' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, Clue_Type_Selection) == 0x000338, "Member 'ABP_TelekinesisInteractable_C::Clue_Type_Selection' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, HS_Dynamic_Material) == 0x000340, "Member 'ABP_TelekinesisInteractable_C::HS_Dynamic_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, On_TK_Interact) == 0x000348, "Member 'ABP_TelekinesisInteractable_C::On_TK_Interact' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, ClearDynamicMaterial) == 0x000358, "Member 'ABP_TelekinesisInteractable_C::ClearDynamicMaterial' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_C, InNarrative) == 0x000360, "Member 'ABP_TelekinesisInteractable_C::InNarrative' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatOverrideDataflowNode \ +static_assert(alignof(FFloatOverrideDataflowNode) == 0x000008, "Wrong alignment on FFloatOverrideDataflowNode"); \ +static_assert(sizeof(FFloatOverrideDataflowNode) == 0x000100, "Wrong size on FFloatOverrideDataflowNode"); \ +static_assert(offsetof(FFloatOverrideDataflowNode, PropertyName) == 0x0000E8, "Member 'FFloatOverrideDataflowNode::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(FFloatOverrideDataflowNode, KeyName) == 0x0000F0, "Member 'FFloatOverrideDataflowNode::KeyName' has a wrong offset!"); \ +static_assert(offsetof(FFloatOverrideDataflowNode, ValueOut) == 0x0000F8, "Member 'FFloatOverrideDataflowNode::ValueOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSelectionSetDataflowNode \ +static_assert(alignof(FSelectionSetDataflowNode) == 0x000008, "Wrong alignment on FSelectionSetDataflowNode"); \ +static_assert(sizeof(FSelectionSetDataflowNode) == 0x000108, "Wrong size on FSelectionSetDataflowNode"); \ +static_assert(offsetof(FSelectionSetDataflowNode, Indices) == 0x0000E8, "Member 'FSelectionSetDataflowNode::Indices' has a wrong offset!"); \ +static_assert(offsetof(FSelectionSetDataflowNode, IndicesOut) == 0x0000F8, "Member 'FSelectionSetDataflowNode::IndicesOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetSkeletalMeshDataflowNode \ +static_assert(alignof(FGetSkeletalMeshDataflowNode) == 0x000008, "Wrong alignment on FGetSkeletalMeshDataflowNode"); \ +static_assert(sizeof(FGetSkeletalMeshDataflowNode) == 0x0000F8, "Wrong size on FGetSkeletalMeshDataflowNode"); \ +static_assert(offsetof(FGetSkeletalMeshDataflowNode, SkeletalMesh) == 0x0000E8, "Member 'FGetSkeletalMeshDataflowNode::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FGetSkeletalMeshDataflowNode, PropertyName) == 0x0000F0, "Member 'FGetSkeletalMeshDataflowNode::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetSkeletonDataflowNode \ +static_assert(alignof(FGetSkeletonDataflowNode) == 0x000008, "Wrong alignment on FGetSkeletonDataflowNode"); \ +static_assert(sizeof(FGetSkeletonDataflowNode) == 0x0000F8, "Wrong size on FGetSkeletonDataflowNode"); \ +static_assert(offsetof(FGetSkeletonDataflowNode, Skeleton) == 0x0000E8, "Member 'FGetSkeletonDataflowNode::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(FGetSkeletonDataflowNode, PropertyName) == 0x0000F0, "Member 'FGetSkeletonDataflowNode::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshBoneDataflowNode \ +static_assert(alignof(FSkeletalMeshBoneDataflowNode) == 0x000008, "Wrong alignment on FSkeletalMeshBoneDataflowNode"); \ +static_assert(sizeof(FSkeletalMeshBoneDataflowNode) == 0x000108, "Wrong size on FSkeletalMeshBoneDataflowNode"); \ +static_assert(offsetof(FSkeletalMeshBoneDataflowNode, BoneName) == 0x0000E8, "Member 'FSkeletalMeshBoneDataflowNode::BoneName' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBoneDataflowNode, SkeletalMesh) == 0x0000F0, "Member 'FSkeletalMeshBoneDataflowNode::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBoneDataflowNode, BoneIndexOut) == 0x0000F8, "Member 'FSkeletalMeshBoneDataflowNode::BoneIndexOut' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshBoneDataflowNode, PropertyName) == 0x0000FC, "Member 'FSkeletalMeshBoneDataflowNode::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletalMeshReferenceTransformDataflowNode \ +static_assert(alignof(FSkeletalMeshReferenceTransformDataflowNode) == 0x000010, "Wrong alignment on FSkeletalMeshReferenceTransformDataflowNode"); \ +static_assert(sizeof(FSkeletalMeshReferenceTransformDataflowNode) == 0x000160, "Wrong size on FSkeletalMeshReferenceTransformDataflowNode"); \ +static_assert(offsetof(FSkeletalMeshReferenceTransformDataflowNode, SkeletalMeshIn) == 0x0000E8, "Member 'FSkeletalMeshReferenceTransformDataflowNode::SkeletalMeshIn' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshReferenceTransformDataflowNode, BoneIndexIn) == 0x0000F0, "Member 'FSkeletalMeshReferenceTransformDataflowNode::BoneIndexIn' has a wrong offset!"); \ +static_assert(offsetof(FSkeletalMeshReferenceTransformDataflowNode, TransformOut) == 0x000100, "Member 'FSkeletalMeshReferenceTransformDataflowNode::TransformOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetStaticMeshDataflowNode \ +static_assert(alignof(FGetStaticMeshDataflowNode) == 0x000008, "Wrong alignment on FGetStaticMeshDataflowNode"); \ +static_assert(sizeof(FGetStaticMeshDataflowNode) == 0x0000F8, "Wrong size on FGetStaticMeshDataflowNode"); \ +static_assert(offsetof(FGetStaticMeshDataflowNode, StaticMesh) == 0x0000E8, "Member 'FGetStaticMeshDataflowNode::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FGetStaticMeshDataflowNode, PropertyName) == 0x0000F0, "Member 'FGetStaticMeshDataflowNode::PropertyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeAnimationPayLoadKey \ +static_assert(alignof(FInterchangeAnimationPayLoadKey) == 0x000008, "Wrong alignment on FInterchangeAnimationPayLoadKey"); \ +static_assert(sizeof(FInterchangeAnimationPayLoadKey) == 0x000018, "Wrong size on FInterchangeAnimationPayLoadKey"); \ +static_assert(offsetof(FInterchangeAnimationPayLoadKey, UniqueID) == 0x000000, "Member 'FInterchangeAnimationPayLoadKey::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeAnimationPayLoadKey, Type) == 0x000010, "Member 'FInterchangeAnimationPayLoadKey::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeMeshPayLoadKey \ +static_assert(alignof(FInterchangeMeshPayLoadKey) == 0x000008, "Wrong alignment on FInterchangeMeshPayLoadKey"); \ +static_assert(sizeof(FInterchangeMeshPayLoadKey) == 0x000018, "Wrong size on FInterchangeMeshPayLoadKey"); \ +static_assert(offsetof(FInterchangeMeshPayLoadKey, UniqueID) == 0x000000, "Member 'FInterchangeMeshPayLoadKey::UniqueID' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshPayLoadKey, Type) == 0x000010, "Member 'FInterchangeMeshPayLoadKey::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid, AnimationTrackUid) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid::AnimationTrackUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetNode_AddCustomAnimationTrackUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid, AnimationTrackUid) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid::AnimationTrackUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetNode_RemoveCustomAnimationTrackUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_SetCustomFrameRate \ +static_assert(alignof(InterchangeAnimationTrackSetNode_SetCustomFrameRate) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetNode_SetCustomFrameRate"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_SetCustomFrameRate) == 0x000008, "Wrong size on InterchangeAnimationTrackSetNode_SetCustomFrameRate"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_SetCustomFrameRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_SetCustomFrameRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_SetCustomFrameRate, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetNode_SetCustomFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid \ +static_assert(alignof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid, Index_0) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid, OutAnimationTrackUid) == 0x000008, "Member 'InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUid::OutAnimationTrackUid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount \ +static_assert(alignof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount) == 0x000004, "Wrong size on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount, ReturnValue) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids \ +static_assert(alignof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids) == 0x000010, "Wrong size on InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids, OutAnimationTrackUids) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_GetCustomAnimationTrackUids::OutAnimationTrackUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetNode_GetCustomFrameRate \ +static_assert(alignof(InterchangeAnimationTrackSetNode_GetCustomFrameRate) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetNode_GetCustomFrameRate"); \ +static_assert(sizeof(InterchangeAnimationTrackSetNode_GetCustomFrameRate) == 0x000008, "Wrong size on InterchangeAnimationTrackSetNode_GetCustomFrameRate"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomFrameRate, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetNode_GetCustomFrameRate::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetNode_GetCustomFrameRate, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetNode_GetCustomFrameRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackSetNode \ +static_assert(alignof(UInterchangeAnimationTrackSetNode) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackSetNode"); \ +static_assert(sizeof(UInterchangeAnimationTrackSetNode) == 0x000090, "Wrong size on UInterchangeAnimationTrackSetNode"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackBaseNode_SetCustomCompletionMode \ +static_assert(alignof(InterchangeAnimationTrackBaseNode_SetCustomCompletionMode) == 0x000004, "Wrong alignment on InterchangeAnimationTrackBaseNode_SetCustomCompletionMode"); \ +static_assert(sizeof(InterchangeAnimationTrackBaseNode_SetCustomCompletionMode) == 0x000008, "Wrong size on InterchangeAnimationTrackBaseNode_SetCustomCompletionMode"); \ +static_assert(offsetof(InterchangeAnimationTrackBaseNode_SetCustomCompletionMode, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackBaseNode_SetCustomCompletionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackBaseNode_SetCustomCompletionMode, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackBaseNode_SetCustomCompletionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackBaseNode_GetCustomCompletionMode \ +static_assert(alignof(InterchangeAnimationTrackBaseNode_GetCustomCompletionMode) == 0x000004, "Wrong alignment on InterchangeAnimationTrackBaseNode_GetCustomCompletionMode"); \ +static_assert(sizeof(InterchangeAnimationTrackBaseNode_GetCustomCompletionMode) == 0x000008, "Wrong size on InterchangeAnimationTrackBaseNode_GetCustomCompletionMode"); \ +static_assert(offsetof(InterchangeAnimationTrackBaseNode_GetCustomCompletionMode, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackBaseNode_GetCustomCompletionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackBaseNode_GetCustomCompletionMode, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackBaseNode_GetCustomCompletionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackBaseNode \ +static_assert(alignof(UInterchangeAnimationTrackBaseNode) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackBaseNode"); \ +static_assert(sizeof(UInterchangeAnimationTrackBaseNode) == 0x000070, "Wrong size on UInterchangeAnimationTrackBaseNode"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_SetCustomDuration \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_SetCustomDuration) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_SetCustomDuration"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_SetCustomDuration) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_SetCustomDuration"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomDuration, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomDuration::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomDuration, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomTimeScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetInstanceNode_SetCustomTrackSetDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_GetCustomDuration \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_GetCustomDuration) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_GetCustomDuration"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_GetCustomDuration) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_GetCustomDuration"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomDuration, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomDuration::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomDuration, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomStartFrame::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale) == 0x000004, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale) == 0x000008, "Wrong size on InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomTimeScale::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid \ +static_assert(alignof(InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid"); \ +static_assert(sizeof(InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid) == 0x000018, "Wrong size on InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackSetInstanceNode_GetCustomTrackSetDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackSetInstanceNode \ +static_assert(alignof(UInterchangeAnimationTrackSetInstanceNode) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackSetInstanceNode"); \ +static_assert(sizeof(UInterchangeAnimationTrackSetInstanceNode) == 0x0000B0, "Wrong size on UInterchangeAnimationTrackSetInstanceNode"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_SetCustomActorDependencyUid \ +static_assert(alignof(InterchangeAnimationTrackNode_SetCustomActorDependencyUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackNode_SetCustomActorDependencyUid"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_SetCustomActorDependencyUid) == 0x000018, "Wrong size on InterchangeAnimationTrackNode_SetCustomActorDependencyUid"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomActorDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeAnimationTrackNode_SetCustomActorDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomActorDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackNode_SetCustomActorDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey \ +static_assert(alignof(InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey) == 0x000008, "Wrong alignment on InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey) == 0x000018, "Wrong size on InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey, InUniqueId) == 0x000000, "Member 'InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey::InUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey, InType) == 0x000010, "Member 'InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey::InType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey, ReturnValue) == 0x000011, "Member 'InterchangeAnimationTrackNode_SetCustomAnimationPayloadKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_SetCustomFrameCount \ +static_assert(alignof(InterchangeAnimationTrackNode_SetCustomFrameCount) == 0x000004, "Wrong alignment on InterchangeAnimationTrackNode_SetCustomFrameCount"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_SetCustomFrameCount) == 0x000008, "Wrong size on InterchangeAnimationTrackNode_SetCustomFrameCount"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomFrameCount, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackNode_SetCustomFrameCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomFrameCount, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackNode_SetCustomFrameCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_SetCustomTargetedProperty \ +static_assert(alignof(InterchangeAnimationTrackNode_SetCustomTargetedProperty) == 0x000004, "Wrong alignment on InterchangeAnimationTrackNode_SetCustomTargetedProperty"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_SetCustomTargetedProperty) == 0x000008, "Wrong size on InterchangeAnimationTrackNode_SetCustomTargetedProperty"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomTargetedProperty, TargetedProperty) == 0x000000, "Member 'InterchangeAnimationTrackNode_SetCustomTargetedProperty::TargetedProperty' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_SetCustomTargetedProperty, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackNode_SetCustomTargetedProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_GetCustomActorDependencyUid \ +static_assert(alignof(InterchangeAnimationTrackNode_GetCustomActorDependencyUid) == 0x000008, "Wrong alignment on InterchangeAnimationTrackNode_GetCustomActorDependencyUid"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_GetCustomActorDependencyUid) == 0x000018, "Wrong size on InterchangeAnimationTrackNode_GetCustomActorDependencyUid"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomActorDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeAnimationTrackNode_GetCustomActorDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomActorDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeAnimationTrackNode_GetCustomActorDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey \ +static_assert(alignof(InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey) == 0x000008, "Wrong alignment on InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey) == 0x000020, "Wrong size on InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey, AnimationPayLoadKey) == 0x000000, "Member 'InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey::AnimationPayLoadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey, ReturnValue) == 0x000018, "Member 'InterchangeAnimationTrackNode_GetCustomAnimationPayloadKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_GetCustomFrameCount \ +static_assert(alignof(InterchangeAnimationTrackNode_GetCustomFrameCount) == 0x000004, "Wrong alignment on InterchangeAnimationTrackNode_GetCustomFrameCount"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_GetCustomFrameCount) == 0x000008, "Wrong size on InterchangeAnimationTrackNode_GetCustomFrameCount"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomFrameCount, AttributeValue) == 0x000000, "Member 'InterchangeAnimationTrackNode_GetCustomFrameCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomFrameCount, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackNode_GetCustomFrameCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAnimationTrackNode_GetCustomTargetedProperty \ +static_assert(alignof(InterchangeAnimationTrackNode_GetCustomTargetedProperty) == 0x000004, "Wrong alignment on InterchangeAnimationTrackNode_GetCustomTargetedProperty"); \ +static_assert(sizeof(InterchangeAnimationTrackNode_GetCustomTargetedProperty) == 0x000008, "Wrong size on InterchangeAnimationTrackNode_GetCustomTargetedProperty"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomTargetedProperty, TargetedProperty) == 0x000000, "Member 'InterchangeAnimationTrackNode_GetCustomTargetedProperty::TargetedProperty' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAnimationTrackNode_GetCustomTargetedProperty, ReturnValue) == 0x000004, "Member 'InterchangeAnimationTrackNode_GetCustomTargetedProperty::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackNode \ +static_assert(alignof(UInterchangeAnimationTrackNode) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackNode"); \ +static_assert(sizeof(UInterchangeAnimationTrackNode) == 0x0000C0, "Wrong size on UInterchangeAnimationTrackNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTransformAnimationTrackNode_SetCustomUsedChannels \ +static_assert(alignof(InterchangeTransformAnimationTrackNode_SetCustomUsedChannels) == 0x000004, "Wrong alignment on InterchangeTransformAnimationTrackNode_SetCustomUsedChannels"); \ +static_assert(sizeof(InterchangeTransformAnimationTrackNode_SetCustomUsedChannels) == 0x000008, "Wrong size on InterchangeTransformAnimationTrackNode_SetCustomUsedChannels"); \ +static_assert(offsetof(InterchangeTransformAnimationTrackNode_SetCustomUsedChannels, AttributeValue) == 0x000000, "Member 'InterchangeTransformAnimationTrackNode_SetCustomUsedChannels::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTransformAnimationTrackNode_SetCustomUsedChannels, ReturnValue) == 0x000004, "Member 'InterchangeTransformAnimationTrackNode_SetCustomUsedChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTransformAnimationTrackNode_GetCustomUsedChannels \ +static_assert(alignof(InterchangeTransformAnimationTrackNode_GetCustomUsedChannels) == 0x000004, "Wrong alignment on InterchangeTransformAnimationTrackNode_GetCustomUsedChannels"); \ +static_assert(sizeof(InterchangeTransformAnimationTrackNode_GetCustomUsedChannels) == 0x000008, "Wrong size on InterchangeTransformAnimationTrackNode_GetCustomUsedChannels"); \ +static_assert(offsetof(InterchangeTransformAnimationTrackNode_GetCustomUsedChannels, AttributeValue) == 0x000000, "Member 'InterchangeTransformAnimationTrackNode_GetCustomUsedChannels::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTransformAnimationTrackNode_GetCustomUsedChannels, ReturnValue) == 0x000004, "Member 'InterchangeTransformAnimationTrackNode_GetCustomUsedChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTransformAnimationTrackNode \ +static_assert(alignof(UInterchangeTransformAnimationTrackNode) == 0x000008, "Wrong alignment on UInterchangeTransformAnimationTrackNode"); \ +static_assert(sizeof(UInterchangeTransformAnimationTrackNode) == 0x0000D0, "Wrong size on UInterchangeTransformAnimationTrackNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid) == 0x000028, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid, MorphTargetNodeUid) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid::MorphTargetNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid, InUniqueId) == 0x000010, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid::InUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid, InType) == 0x000020, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid::InType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid, ReturnValue) == 0x000021, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForMorphTargetNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid) == 0x000028, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid, SceneNodeUid) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid::SceneNodeUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid, InUniqueId) == 0x000010, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid::InUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid, InType) == 0x000020, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid::InType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid, ReturnValue) == 0x000021, "Member 'InterchangeSkeletalAnimationTrackNode_SetAnimationPayloadKeyForSceneNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate, SampleRate) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationSampleRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime, StartTime) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime::StartTime' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime, StopTime) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime::StopTime' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomAnimationStopTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid) == 0x000018, "Wrong size on InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalAnimationTrackNode_SetCustomSkeletonNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate, SampleRate) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationSampleRate::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime, StartTime) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime::StartTime' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStartTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime) == 0x000010, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime, StopTime) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime::StopTime' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime, ReturnValue) == 0x000008, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomAnimationStopTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid) == 0x000018, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid, AttributeValue) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid, ReturnValue) == 0x000010, "Member 'InterchangeSkeletalAnimationTrackNode_GetCustomSkeletonNodeUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys) == 0x0000A0, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys, OutMorphTargetNodeAnimationPayloadKeyUids) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys::OutMorphTargetNodeAnimationPayloadKeyUids' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys, OutMorphTargetNodeAnimationPayloadKeyTypes) == 0x000050, "Member 'InterchangeSkeletalAnimationTrackNode_GetMorphTargetNodeAnimationPayloadKeys::OutMorphTargetNodeAnimationPayloadKeyTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys \ +static_assert(alignof(InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys) == 0x000008, "Wrong alignment on InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys"); \ +static_assert(sizeof(InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys) == 0x0000A0, "Wrong size on InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys, OutSceneNodeAnimationPayloadKeyUids) == 0x000000, "Member 'InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys::OutSceneNodeAnimationPayloadKeyUids' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys, OutSceneNodeAnimationPayloadKeyTypes) == 0x000050, "Member 'InterchangeSkeletalAnimationTrackNode_GetSceneNodeAnimationPayloadKeys::OutSceneNodeAnimationPayloadKeyTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletalAnimationTrackNode \ +static_assert(alignof(UInterchangeSkeletalAnimationTrackNode) == 0x000008, "Wrong alignment on UInterchangeSkeletalAnimationTrackNode"); \ +static_assert(sizeof(UInterchangeSkeletalAnimationTrackNode) == 0x000290, "Wrong size on UInterchangeSkeletalAnimationTrackNode"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_SetCustomEnableDepthOfField \ +static_assert(alignof(InterchangePhysicalCameraNode_SetCustomEnableDepthOfField) == 0x000001, "Wrong alignment on InterchangePhysicalCameraNode_SetCustomEnableDepthOfField"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_SetCustomEnableDepthOfField) == 0x000002, "Wrong size on InterchangePhysicalCameraNode_SetCustomEnableDepthOfField"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomEnableDepthOfField, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_SetCustomEnableDepthOfField::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomEnableDepthOfField, ReturnValue) == 0x000001, "Member 'InterchangePhysicalCameraNode_SetCustomEnableDepthOfField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_SetCustomFocalLength \ +static_assert(alignof(InterchangePhysicalCameraNode_SetCustomFocalLength) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_SetCustomFocalLength"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_SetCustomFocalLength) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_SetCustomFocalLength"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomFocalLength, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_SetCustomFocalLength::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomFocalLength, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_SetCustomFocalLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_SetCustomSensorHeight \ +static_assert(alignof(InterchangePhysicalCameraNode_SetCustomSensorHeight) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_SetCustomSensorHeight"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_SetCustomSensorHeight) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_SetCustomSensorHeight"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomSensorHeight, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_SetCustomSensorHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomSensorHeight, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_SetCustomSensorHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_SetCustomSensorWidth \ +static_assert(alignof(InterchangePhysicalCameraNode_SetCustomSensorWidth) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_SetCustomSensorWidth"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_SetCustomSensorWidth) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_SetCustomSensorWidth"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomSensorWidth, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_SetCustomSensorWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_SetCustomSensorWidth, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_SetCustomSensorWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_GetCustomEnableDepthOfField \ +static_assert(alignof(InterchangePhysicalCameraNode_GetCustomEnableDepthOfField) == 0x000001, "Wrong alignment on InterchangePhysicalCameraNode_GetCustomEnableDepthOfField"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_GetCustomEnableDepthOfField) == 0x000002, "Wrong size on InterchangePhysicalCameraNode_GetCustomEnableDepthOfField"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomEnableDepthOfField, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_GetCustomEnableDepthOfField::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomEnableDepthOfField, ReturnValue) == 0x000001, "Member 'InterchangePhysicalCameraNode_GetCustomEnableDepthOfField::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_GetCustomFocalLength \ +static_assert(alignof(InterchangePhysicalCameraNode_GetCustomFocalLength) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_GetCustomFocalLength"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_GetCustomFocalLength) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_GetCustomFocalLength"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomFocalLength, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_GetCustomFocalLength::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomFocalLength, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_GetCustomFocalLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_GetCustomSensorHeight \ +static_assert(alignof(InterchangePhysicalCameraNode_GetCustomSensorHeight) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_GetCustomSensorHeight"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_GetCustomSensorHeight) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_GetCustomSensorHeight"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomSensorHeight, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_GetCustomSensorHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomSensorHeight, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_GetCustomSensorHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePhysicalCameraNode_GetCustomSensorWidth \ +static_assert(alignof(InterchangePhysicalCameraNode_GetCustomSensorWidth) == 0x000004, "Wrong alignment on InterchangePhysicalCameraNode_GetCustomSensorWidth"); \ +static_assert(sizeof(InterchangePhysicalCameraNode_GetCustomSensorWidth) == 0x000008, "Wrong size on InterchangePhysicalCameraNode_GetCustomSensorWidth"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomSensorWidth, AttributeValue) == 0x000000, "Member 'InterchangePhysicalCameraNode_GetCustomSensorWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePhysicalCameraNode_GetCustomSensorWidth, ReturnValue) == 0x000004, "Member 'InterchangePhysicalCameraNode_GetCustomSensorWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePhysicalCameraNode \ +static_assert(alignof(UInterchangePhysicalCameraNode) == 0x000008, "Wrong alignment on UInterchangePhysicalCameraNode"); \ +static_assert(sizeof(UInterchangePhysicalCameraNode) == 0x0000A0, "Wrong size on UInterchangePhysicalCameraNode"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomAspectRatio \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomAspectRatio) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_SetCustomAspectRatio"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomAspectRatio) == 0x000008, "Wrong size on InterchangeStandardCameraNode_SetCustomAspectRatio"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomAspectRatio, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomAspectRatio::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomAspectRatio, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_SetCustomAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomFarClipPlane \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomFarClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_SetCustomFarClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomFarClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraNode_SetCustomFarClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomFarClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomFarClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomFarClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_SetCustomFarClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomFieldOfView \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomFieldOfView) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_SetCustomFieldOfView"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomFieldOfView) == 0x000008, "Wrong size on InterchangeStandardCameraNode_SetCustomFieldOfView"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomFieldOfView, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomFieldOfView::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomFieldOfView, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_SetCustomFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomNearClipPlane \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomNearClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_SetCustomNearClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomNearClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraNode_SetCustomNearClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomNearClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomNearClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomNearClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_SetCustomNearClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomProjectionMode \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomProjectionMode) == 0x000001, "Wrong alignment on InterchangeStandardCameraNode_SetCustomProjectionMode"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomProjectionMode) == 0x000002, "Wrong size on InterchangeStandardCameraNode_SetCustomProjectionMode"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomProjectionMode, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomProjectionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomProjectionMode, ReturnValue) == 0x000001, "Member 'InterchangeStandardCameraNode_SetCustomProjectionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_SetCustomWidth \ +static_assert(alignof(InterchangeStandardCameraNode_SetCustomWidth) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_SetCustomWidth"); \ +static_assert(sizeof(InterchangeStandardCameraNode_SetCustomWidth) == 0x000008, "Wrong size on InterchangeStandardCameraNode_SetCustomWidth"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomWidth, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_SetCustomWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_SetCustomWidth, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_SetCustomWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomAspectRatio \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomAspectRatio) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_GetCustomAspectRatio"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomAspectRatio) == 0x000008, "Wrong size on InterchangeStandardCameraNode_GetCustomAspectRatio"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomAspectRatio, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomAspectRatio::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomAspectRatio, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_GetCustomAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomFarClipPlane \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomFarClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_GetCustomFarClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomFarClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraNode_GetCustomFarClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomFarClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomFarClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomFarClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_GetCustomFarClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomFieldOfView \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomFieldOfView) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_GetCustomFieldOfView"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomFieldOfView) == 0x000008, "Wrong size on InterchangeStandardCameraNode_GetCustomFieldOfView"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomFieldOfView, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomFieldOfView::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomFieldOfView, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_GetCustomFieldOfView::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomNearClipPlane \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomNearClipPlane) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_GetCustomNearClipPlane"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomNearClipPlane) == 0x000008, "Wrong size on InterchangeStandardCameraNode_GetCustomNearClipPlane"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomNearClipPlane, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomNearClipPlane::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomNearClipPlane, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_GetCustomNearClipPlane::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomProjectionMode \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomProjectionMode) == 0x000001, "Wrong alignment on InterchangeStandardCameraNode_GetCustomProjectionMode"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomProjectionMode) == 0x000002, "Wrong size on InterchangeStandardCameraNode_GetCustomProjectionMode"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomProjectionMode, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomProjectionMode::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomProjectionMode, ReturnValue) == 0x000001, "Member 'InterchangeStandardCameraNode_GetCustomProjectionMode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeStandardCameraNode_GetCustomWidth \ +static_assert(alignof(InterchangeStandardCameraNode_GetCustomWidth) == 0x000004, "Wrong alignment on InterchangeStandardCameraNode_GetCustomWidth"); \ +static_assert(sizeof(InterchangeStandardCameraNode_GetCustomWidth) == 0x000008, "Wrong size on InterchangeStandardCameraNode_GetCustomWidth"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomWidth, AttributeValue) == 0x000000, "Member 'InterchangeStandardCameraNode_GetCustomWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeStandardCameraNode_GetCustomWidth, ReturnValue) == 0x000004, "Member 'InterchangeStandardCameraNode_GetCustomWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeStandardCameraNode \ +static_assert(alignof(UInterchangeStandardCameraNode) == 0x000008, "Wrong alignment on UInterchangeStandardCameraNode"); \ +static_assert(sizeof(UInterchangeStandardCameraNode) == 0x0000C0, "Wrong size on UInterchangeStandardCameraNode"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_SetCustomIntensity \ +static_assert(alignof(InterchangeBaseLightNode_SetCustomIntensity) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_SetCustomIntensity"); \ +static_assert(sizeof(InterchangeBaseLightNode_SetCustomIntensity) == 0x000008, "Wrong size on InterchangeBaseLightNode_SetCustomIntensity"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomIntensity, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_SetCustomIntensity::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomIntensity, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightNode_SetCustomIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_SetCustomLightColor \ +static_assert(alignof(InterchangeBaseLightNode_SetCustomLightColor) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_SetCustomLightColor"); \ +static_assert(sizeof(InterchangeBaseLightNode_SetCustomLightColor) == 0x000014, "Wrong size on InterchangeBaseLightNode_SetCustomLightColor"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomLightColor, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_SetCustomLightColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomLightColor, ReturnValue) == 0x000010, "Member 'InterchangeBaseLightNode_SetCustomLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_SetCustomTemperature \ +static_assert(alignof(InterchangeBaseLightNode_SetCustomTemperature) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_SetCustomTemperature"); \ +static_assert(sizeof(InterchangeBaseLightNode_SetCustomTemperature) == 0x000008, "Wrong size on InterchangeBaseLightNode_SetCustomTemperature"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_SetCustomTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomTemperature, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightNode_SetCustomTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_SetCustomUseTemperature \ +static_assert(alignof(InterchangeBaseLightNode_SetCustomUseTemperature) == 0x000001, "Wrong alignment on InterchangeBaseLightNode_SetCustomUseTemperature"); \ +static_assert(sizeof(InterchangeBaseLightNode_SetCustomUseTemperature) == 0x000002, "Wrong size on InterchangeBaseLightNode_SetCustomUseTemperature"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomUseTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_SetCustomUseTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_SetCustomUseTemperature, ReturnValue) == 0x000001, "Member 'InterchangeBaseLightNode_SetCustomUseTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_GetCustomIntensity \ +static_assert(alignof(InterchangeBaseLightNode_GetCustomIntensity) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_GetCustomIntensity"); \ +static_assert(sizeof(InterchangeBaseLightNode_GetCustomIntensity) == 0x000008, "Wrong size on InterchangeBaseLightNode_GetCustomIntensity"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomIntensity, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_GetCustomIntensity::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomIntensity, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightNode_GetCustomIntensity::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_GetCustomLightColor \ +static_assert(alignof(InterchangeBaseLightNode_GetCustomLightColor) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_GetCustomLightColor"); \ +static_assert(sizeof(InterchangeBaseLightNode_GetCustomLightColor) == 0x000014, "Wrong size on InterchangeBaseLightNode_GetCustomLightColor"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomLightColor, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_GetCustomLightColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomLightColor, ReturnValue) == 0x000010, "Member 'InterchangeBaseLightNode_GetCustomLightColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_GetCustomTemperature \ +static_assert(alignof(InterchangeBaseLightNode_GetCustomTemperature) == 0x000004, "Wrong alignment on InterchangeBaseLightNode_GetCustomTemperature"); \ +static_assert(sizeof(InterchangeBaseLightNode_GetCustomTemperature) == 0x000008, "Wrong size on InterchangeBaseLightNode_GetCustomTemperature"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_GetCustomTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomTemperature, ReturnValue) == 0x000004, "Member 'InterchangeBaseLightNode_GetCustomTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeBaseLightNode_GetCustomUseTemperature \ +static_assert(alignof(InterchangeBaseLightNode_GetCustomUseTemperature) == 0x000001, "Wrong alignment on InterchangeBaseLightNode_GetCustomUseTemperature"); \ +static_assert(sizeof(InterchangeBaseLightNode_GetCustomUseTemperature) == 0x000002, "Wrong size on InterchangeBaseLightNode_GetCustomUseTemperature"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomUseTemperature, AttributeValue) == 0x000000, "Member 'InterchangeBaseLightNode_GetCustomUseTemperature::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeBaseLightNode_GetCustomUseTemperature, ReturnValue) == 0x000001, "Member 'InterchangeBaseLightNode_GetCustomUseTemperature::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeBaseLightNode \ +static_assert(alignof(UInterchangeBaseLightNode) == 0x000008, "Wrong alignment on UInterchangeBaseLightNode"); \ +static_assert(sizeof(UInterchangeBaseLightNode) == 0x0000A0, "Wrong size on UInterchangeBaseLightNode"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_SetCustomAttenuationRadius \ +static_assert(alignof(InterchangeLightNode_SetCustomAttenuationRadius) == 0x000004, "Wrong alignment on InterchangeLightNode_SetCustomAttenuationRadius"); \ +static_assert(sizeof(InterchangeLightNode_SetCustomAttenuationRadius) == 0x000008, "Wrong size on InterchangeLightNode_SetCustomAttenuationRadius"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomAttenuationRadius, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_SetCustomAttenuationRadius::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomAttenuationRadius, ReturnValue) == 0x000004, "Member 'InterchangeLightNode_SetCustomAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_SetCustomIESTexture \ +static_assert(alignof(InterchangeLightNode_SetCustomIESTexture) == 0x000008, "Wrong alignment on InterchangeLightNode_SetCustomIESTexture"); \ +static_assert(sizeof(InterchangeLightNode_SetCustomIESTexture) == 0x000018, "Wrong size on InterchangeLightNode_SetCustomIESTexture"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomIESTexture, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_SetCustomIESTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomIESTexture, ReturnValue) == 0x000010, "Member 'InterchangeLightNode_SetCustomIESTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_SetCustomIntensityUnits \ +static_assert(alignof(InterchangeLightNode_SetCustomIntensityUnits) == 0x000001, "Wrong alignment on InterchangeLightNode_SetCustomIntensityUnits"); \ +static_assert(sizeof(InterchangeLightNode_SetCustomIntensityUnits) == 0x000002, "Wrong size on InterchangeLightNode_SetCustomIntensityUnits"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomIntensityUnits, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_SetCustomIntensityUnits::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_SetCustomIntensityUnits, ReturnValue) == 0x000001, "Member 'InterchangeLightNode_SetCustomIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_GetCustomAttenuationRadius \ +static_assert(alignof(InterchangeLightNode_GetCustomAttenuationRadius) == 0x000004, "Wrong alignment on InterchangeLightNode_GetCustomAttenuationRadius"); \ +static_assert(sizeof(InterchangeLightNode_GetCustomAttenuationRadius) == 0x000008, "Wrong size on InterchangeLightNode_GetCustomAttenuationRadius"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomAttenuationRadius, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_GetCustomAttenuationRadius::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomAttenuationRadius, ReturnValue) == 0x000004, "Member 'InterchangeLightNode_GetCustomAttenuationRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_GetCustomIESTexture \ +static_assert(alignof(InterchangeLightNode_GetCustomIESTexture) == 0x000008, "Wrong alignment on InterchangeLightNode_GetCustomIESTexture"); \ +static_assert(sizeof(InterchangeLightNode_GetCustomIESTexture) == 0x000018, "Wrong size on InterchangeLightNode_GetCustomIESTexture"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomIESTexture, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_GetCustomIESTexture::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomIESTexture, ReturnValue) == 0x000010, "Member 'InterchangeLightNode_GetCustomIESTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeLightNode_GetCustomIntensityUnits \ +static_assert(alignof(InterchangeLightNode_GetCustomIntensityUnits) == 0x000001, "Wrong alignment on InterchangeLightNode_GetCustomIntensityUnits"); \ +static_assert(sizeof(InterchangeLightNode_GetCustomIntensityUnits) == 0x000002, "Wrong size on InterchangeLightNode_GetCustomIntensityUnits"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomIntensityUnits, AttributeValue) == 0x000000, "Member 'InterchangeLightNode_GetCustomIntensityUnits::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeLightNode_GetCustomIntensityUnits, ReturnValue) == 0x000001, "Member 'InterchangeLightNode_GetCustomIntensityUnits::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeLightNode \ +static_assert(alignof(UInterchangeLightNode) == 0x000008, "Wrong alignment on UInterchangeLightNode"); \ +static_assert(sizeof(UInterchangeLightNode) == 0x0000D0, "Wrong size on UInterchangeLightNode"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightNode_SetCustomLightFalloffExponent \ +static_assert(alignof(InterchangePointLightNode_SetCustomLightFalloffExponent) == 0x000004, "Wrong alignment on InterchangePointLightNode_SetCustomLightFalloffExponent"); \ +static_assert(sizeof(InterchangePointLightNode_SetCustomLightFalloffExponent) == 0x000008, "Wrong size on InterchangePointLightNode_SetCustomLightFalloffExponent"); \ +static_assert(offsetof(InterchangePointLightNode_SetCustomLightFalloffExponent, AttributeValue) == 0x000000, "Member 'InterchangePointLightNode_SetCustomLightFalloffExponent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightNode_SetCustomLightFalloffExponent, ReturnValue) == 0x000004, "Member 'InterchangePointLightNode_SetCustomLightFalloffExponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightNode_SetCustomUseInverseSquaredFalloff \ +static_assert(alignof(InterchangePointLightNode_SetCustomUseInverseSquaredFalloff) == 0x000001, "Wrong alignment on InterchangePointLightNode_SetCustomUseInverseSquaredFalloff"); \ +static_assert(sizeof(InterchangePointLightNode_SetCustomUseInverseSquaredFalloff) == 0x000002, "Wrong size on InterchangePointLightNode_SetCustomUseInverseSquaredFalloff"); \ +static_assert(offsetof(InterchangePointLightNode_SetCustomUseInverseSquaredFalloff, AttributeValue) == 0x000000, "Member 'InterchangePointLightNode_SetCustomUseInverseSquaredFalloff::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightNode_SetCustomUseInverseSquaredFalloff, ReturnValue) == 0x000001, "Member 'InterchangePointLightNode_SetCustomUseInverseSquaredFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightNode_GetCustomLightFalloffExponent \ +static_assert(alignof(InterchangePointLightNode_GetCustomLightFalloffExponent) == 0x000004, "Wrong alignment on InterchangePointLightNode_GetCustomLightFalloffExponent"); \ +static_assert(sizeof(InterchangePointLightNode_GetCustomLightFalloffExponent) == 0x000008, "Wrong size on InterchangePointLightNode_GetCustomLightFalloffExponent"); \ +static_assert(offsetof(InterchangePointLightNode_GetCustomLightFalloffExponent, AttributeValue) == 0x000000, "Member 'InterchangePointLightNode_GetCustomLightFalloffExponent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightNode_GetCustomLightFalloffExponent, ReturnValue) == 0x000004, "Member 'InterchangePointLightNode_GetCustomLightFalloffExponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePointLightNode_GetCustomUseInverseSquaredFalloff \ +static_assert(alignof(InterchangePointLightNode_GetCustomUseInverseSquaredFalloff) == 0x000001, "Wrong alignment on InterchangePointLightNode_GetCustomUseInverseSquaredFalloff"); \ +static_assert(sizeof(InterchangePointLightNode_GetCustomUseInverseSquaredFalloff) == 0x000002, "Wrong size on InterchangePointLightNode_GetCustomUseInverseSquaredFalloff"); \ +static_assert(offsetof(InterchangePointLightNode_GetCustomUseInverseSquaredFalloff, AttributeValue) == 0x000000, "Member 'InterchangePointLightNode_GetCustomUseInverseSquaredFalloff::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangePointLightNode_GetCustomUseInverseSquaredFalloff, ReturnValue) == 0x000001, "Member 'InterchangePointLightNode_GetCustomUseInverseSquaredFalloff::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePointLightNode \ +static_assert(alignof(UInterchangePointLightNode) == 0x000008, "Wrong alignment on UInterchangePointLightNode"); \ +static_assert(sizeof(UInterchangePointLightNode) == 0x0000F0, "Wrong size on UInterchangePointLightNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightNode_SetCustomInnerConeAngle \ +static_assert(alignof(InterchangeSpotLightNode_SetCustomInnerConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightNode_SetCustomInnerConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightNode_SetCustomInnerConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightNode_SetCustomInnerConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightNode_SetCustomInnerConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightNode_SetCustomInnerConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightNode_SetCustomInnerConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightNode_SetCustomInnerConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightNode_SetCustomOuterConeAngle \ +static_assert(alignof(InterchangeSpotLightNode_SetCustomOuterConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightNode_SetCustomOuterConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightNode_SetCustomOuterConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightNode_SetCustomOuterConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightNode_SetCustomOuterConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightNode_SetCustomOuterConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightNode_SetCustomOuterConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightNode_SetCustomOuterConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightNode_GetCustomInnerConeAngle \ +static_assert(alignof(InterchangeSpotLightNode_GetCustomInnerConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightNode_GetCustomInnerConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightNode_GetCustomInnerConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightNode_GetCustomInnerConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightNode_GetCustomInnerConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightNode_GetCustomInnerConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightNode_GetCustomInnerConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightNode_GetCustomInnerConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSpotLightNode_GetCustomOuterConeAngle \ +static_assert(alignof(InterchangeSpotLightNode_GetCustomOuterConeAngle) == 0x000004, "Wrong alignment on InterchangeSpotLightNode_GetCustomOuterConeAngle"); \ +static_assert(sizeof(InterchangeSpotLightNode_GetCustomOuterConeAngle) == 0x000008, "Wrong size on InterchangeSpotLightNode_GetCustomOuterConeAngle"); \ +static_assert(offsetof(InterchangeSpotLightNode_GetCustomOuterConeAngle, AttributeValue) == 0x000000, "Member 'InterchangeSpotLightNode_GetCustomOuterConeAngle::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSpotLightNode_GetCustomOuterConeAngle, ReturnValue) == 0x000004, "Member 'InterchangeSpotLightNode_GetCustomOuterConeAngle::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSpotLightNode \ +static_assert(alignof(UInterchangeSpotLightNode) == 0x000008, "Wrong alignment on UInterchangeSpotLightNode"); \ +static_assert(sizeof(UInterchangeSpotLightNode) == 0x000110, "Wrong size on UInterchangeSpotLightNode"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightNode_SetCustomSourceHeight \ +static_assert(alignof(InterchangeRectLightNode_SetCustomSourceHeight) == 0x000004, "Wrong alignment on InterchangeRectLightNode_SetCustomSourceHeight"); \ +static_assert(sizeof(InterchangeRectLightNode_SetCustomSourceHeight) == 0x000008, "Wrong size on InterchangeRectLightNode_SetCustomSourceHeight"); \ +static_assert(offsetof(InterchangeRectLightNode_SetCustomSourceHeight, AttributeValue) == 0x000000, "Member 'InterchangeRectLightNode_SetCustomSourceHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightNode_SetCustomSourceHeight, ReturnValue) == 0x000004, "Member 'InterchangeRectLightNode_SetCustomSourceHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightNode_SetCustomSourceWidth \ +static_assert(alignof(InterchangeRectLightNode_SetCustomSourceWidth) == 0x000004, "Wrong alignment on InterchangeRectLightNode_SetCustomSourceWidth"); \ +static_assert(sizeof(InterchangeRectLightNode_SetCustomSourceWidth) == 0x000008, "Wrong size on InterchangeRectLightNode_SetCustomSourceWidth"); \ +static_assert(offsetof(InterchangeRectLightNode_SetCustomSourceWidth, AttributeValue) == 0x000000, "Member 'InterchangeRectLightNode_SetCustomSourceWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightNode_SetCustomSourceWidth, ReturnValue) == 0x000004, "Member 'InterchangeRectLightNode_SetCustomSourceWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightNode_GetCustomSourceHeight \ +static_assert(alignof(InterchangeRectLightNode_GetCustomSourceHeight) == 0x000004, "Wrong alignment on InterchangeRectLightNode_GetCustomSourceHeight"); \ +static_assert(sizeof(InterchangeRectLightNode_GetCustomSourceHeight) == 0x000008, "Wrong size on InterchangeRectLightNode_GetCustomSourceHeight"); \ +static_assert(offsetof(InterchangeRectLightNode_GetCustomSourceHeight, AttributeValue) == 0x000000, "Member 'InterchangeRectLightNode_GetCustomSourceHeight::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightNode_GetCustomSourceHeight, ReturnValue) == 0x000004, "Member 'InterchangeRectLightNode_GetCustomSourceHeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeRectLightNode_GetCustomSourceWidth \ +static_assert(alignof(InterchangeRectLightNode_GetCustomSourceWidth) == 0x000004, "Wrong alignment on InterchangeRectLightNode_GetCustomSourceWidth"); \ +static_assert(sizeof(InterchangeRectLightNode_GetCustomSourceWidth) == 0x000008, "Wrong size on InterchangeRectLightNode_GetCustomSourceWidth"); \ +static_assert(offsetof(InterchangeRectLightNode_GetCustomSourceWidth, AttributeValue) == 0x000000, "Member 'InterchangeRectLightNode_GetCustomSourceWidth::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeRectLightNode_GetCustomSourceWidth, ReturnValue) == 0x000004, "Member 'InterchangeRectLightNode_GetCustomSourceWidth::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeRectLightNode \ +static_assert(alignof(UInterchangeRectLightNode) == 0x000008, "Wrong alignment on UInterchangeRectLightNode"); \ +static_assert(sizeof(UInterchangeRectLightNode) == 0x0000F0, "Wrong size on UInterchangeRectLightNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeDirectionalLightNode \ +static_assert(alignof(UInterchangeDirectionalLightNode) == 0x000008, "Wrong alignment on UInterchangeDirectionalLightNode"); \ +static_assert(sizeof(UInterchangeDirectionalLightNode) == 0x0000A0, "Wrong size on UInterchangeDirectionalLightNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_SetCustombFlipGreenChannel \ +static_assert(alignof(InterchangeTextureNode_SetCustombFlipGreenChannel) == 0x000001, "Wrong alignment on InterchangeTextureNode_SetCustombFlipGreenChannel"); \ +static_assert(sizeof(InterchangeTextureNode_SetCustombFlipGreenChannel) == 0x000002, "Wrong size on InterchangeTextureNode_SetCustombFlipGreenChannel"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustombFlipGreenChannel, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_SetCustombFlipGreenChannel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustombFlipGreenChannel, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_SetCustombFlipGreenChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_SetCustomFilter \ +static_assert(alignof(InterchangeTextureNode_SetCustomFilter) == 0x000001, "Wrong alignment on InterchangeTextureNode_SetCustomFilter"); \ +static_assert(sizeof(InterchangeTextureNode_SetCustomFilter) == 0x000002, "Wrong size on InterchangeTextureNode_SetCustomFilter"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustomFilter, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_SetCustomFilter::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustomFilter, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_SetCustomFilter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_SetCustomSRGB \ +static_assert(alignof(InterchangeTextureNode_SetCustomSRGB) == 0x000001, "Wrong alignment on InterchangeTextureNode_SetCustomSRGB"); \ +static_assert(sizeof(InterchangeTextureNode_SetCustomSRGB) == 0x000002, "Wrong size on InterchangeTextureNode_SetCustomSRGB"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustomSRGB, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_SetCustomSRGB::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_SetCustomSRGB, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_SetCustomSRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_SetPayLoadKey \ +static_assert(alignof(InterchangeTextureNode_SetPayLoadKey) == 0x000008, "Wrong alignment on InterchangeTextureNode_SetPayLoadKey"); \ +static_assert(sizeof(InterchangeTextureNode_SetPayLoadKey) == 0x000010, "Wrong size on InterchangeTextureNode_SetPayLoadKey"); \ +static_assert(offsetof(InterchangeTextureNode_SetPayLoadKey, PayloadKey) == 0x000000, "Member 'InterchangeTextureNode_SetPayLoadKey::PayloadKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_GetCustombFlipGreenChannel \ +static_assert(alignof(InterchangeTextureNode_GetCustombFlipGreenChannel) == 0x000001, "Wrong alignment on InterchangeTextureNode_GetCustombFlipGreenChannel"); \ +static_assert(sizeof(InterchangeTextureNode_GetCustombFlipGreenChannel) == 0x000002, "Wrong size on InterchangeTextureNode_GetCustombFlipGreenChannel"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustombFlipGreenChannel, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_GetCustombFlipGreenChannel::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustombFlipGreenChannel, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_GetCustombFlipGreenChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_GetCustomFilter \ +static_assert(alignof(InterchangeTextureNode_GetCustomFilter) == 0x000001, "Wrong alignment on InterchangeTextureNode_GetCustomFilter"); \ +static_assert(sizeof(InterchangeTextureNode_GetCustomFilter) == 0x000002, "Wrong size on InterchangeTextureNode_GetCustomFilter"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustomFilter, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_GetCustomFilter::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustomFilter, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_GetCustomFilter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTextureNode_GetCustomSRGB \ +static_assert(alignof(InterchangeTextureNode_GetCustomSRGB) == 0x000001, "Wrong alignment on InterchangeTextureNode_GetCustomSRGB"); \ +static_assert(sizeof(InterchangeTextureNode_GetCustomSRGB) == 0x000002, "Wrong size on InterchangeTextureNode_GetCustomSRGB"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustomSRGB, AttributeValue) == 0x000000, "Member 'InterchangeTextureNode_GetCustomSRGB::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTextureNode_GetCustomSRGB, ReturnValue) == 0x000001, "Member 'InterchangeTextureNode_GetCustomSRGB::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureNode \ +static_assert(alignof(UInterchangeTextureNode) == 0x000008, "Wrong alignment on UInterchangeTextureNode"); \ +static_assert(sizeof(UInterchangeTextureNode) == 0x000090, "Wrong size on UInterchangeTextureNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTexture2DArrayNode \ +static_assert(alignof(UInterchangeTexture2DArrayNode) == 0x000008, "Wrong alignment on UInterchangeTexture2DArrayNode"); \ +static_assert(sizeof(UInterchangeTexture2DArrayNode) == 0x000090, "Wrong size on UInterchangeTexture2DArrayNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureCubeArrayNode \ +static_assert(alignof(UInterchangeTextureCubeArrayNode) == 0x000008, "Wrong alignment on UInterchangeTextureCubeArrayNode"); \ +static_assert(sizeof(UInterchangeTextureCubeArrayNode) == 0x000090, "Wrong size on UInterchangeTextureCubeArrayNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureCubeNode \ +static_assert(alignof(UInterchangeTextureCubeNode) == 0x000008, "Wrong alignment on UInterchangeTextureCubeNode"); \ +static_assert(sizeof(UInterchangeTextureCubeNode) == 0x000090, "Wrong size on UInterchangeTextureCubeNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureLightProfileNode \ +static_assert(alignof(UInterchangeTextureLightProfileNode) == 0x000008, "Wrong alignment on UInterchangeTextureLightProfileNode"); \ +static_assert(sizeof(UInterchangeTextureLightProfileNode) == 0x000090, "Wrong size on UInterchangeTextureLightProfileNode"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_AddCustomDependencyUid \ +static_assert(alignof(InterchangeVariantSetNode_AddCustomDependencyUid) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_AddCustomDependencyUid"); \ +static_assert(sizeof(InterchangeVariantSetNode_AddCustomDependencyUid) == 0x000018, "Wrong size on InterchangeVariantSetNode_AddCustomDependencyUid"); \ +static_assert(offsetof(InterchangeVariantSetNode_AddCustomDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeVariantSetNode_AddCustomDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_AddCustomDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_AddCustomDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_RemoveCustomDependencyUid \ +static_assert(alignof(InterchangeVariantSetNode_RemoveCustomDependencyUid) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_RemoveCustomDependencyUid"); \ +static_assert(sizeof(InterchangeVariantSetNode_RemoveCustomDependencyUid) == 0x000018, "Wrong size on InterchangeVariantSetNode_RemoveCustomDependencyUid"); \ +static_assert(offsetof(InterchangeVariantSetNode_RemoveCustomDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeVariantSetNode_RemoveCustomDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_RemoveCustomDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_RemoveCustomDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_SetCustomDisplayText \ +static_assert(alignof(InterchangeVariantSetNode_SetCustomDisplayText) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_SetCustomDisplayText"); \ +static_assert(sizeof(InterchangeVariantSetNode_SetCustomDisplayText) == 0x000018, "Wrong size on InterchangeVariantSetNode_SetCustomDisplayText"); \ +static_assert(offsetof(InterchangeVariantSetNode_SetCustomDisplayText, AttributeValue) == 0x000000, "Member 'InterchangeVariantSetNode_SetCustomDisplayText::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_SetCustomDisplayText, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_SetCustomDisplayText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_SetCustomVariantsPayloadKey \ +static_assert(alignof(InterchangeVariantSetNode_SetCustomVariantsPayloadKey) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_SetCustomVariantsPayloadKey"); \ +static_assert(sizeof(InterchangeVariantSetNode_SetCustomVariantsPayloadKey) == 0x000018, "Wrong size on InterchangeVariantSetNode_SetCustomVariantsPayloadKey"); \ +static_assert(offsetof(InterchangeVariantSetNode_SetCustomVariantsPayloadKey, PayloadKey) == 0x000000, "Member 'InterchangeVariantSetNode_SetCustomVariantsPayloadKey::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_SetCustomVariantsPayloadKey, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_SetCustomVariantsPayloadKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_GetCustomDependencyUid \ +static_assert(alignof(InterchangeVariantSetNode_GetCustomDependencyUid) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_GetCustomDependencyUid"); \ +static_assert(sizeof(InterchangeVariantSetNode_GetCustomDependencyUid) == 0x000018, "Wrong size on InterchangeVariantSetNode_GetCustomDependencyUid"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDependencyUid, Index_0) == 0x000000, "Member 'InterchangeVariantSetNode_GetCustomDependencyUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDependencyUid, OutDependencyUid) == 0x000008, "Member 'InterchangeVariantSetNode_GetCustomDependencyUid::OutDependencyUid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_GetCustomDependencyUidCount \ +static_assert(alignof(InterchangeVariantSetNode_GetCustomDependencyUidCount) == 0x000004, "Wrong alignment on InterchangeVariantSetNode_GetCustomDependencyUidCount"); \ +static_assert(sizeof(InterchangeVariantSetNode_GetCustomDependencyUidCount) == 0x000004, "Wrong size on InterchangeVariantSetNode_GetCustomDependencyUidCount"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDependencyUidCount, ReturnValue) == 0x000000, "Member 'InterchangeVariantSetNode_GetCustomDependencyUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_GetCustomDependencyUids \ +static_assert(alignof(InterchangeVariantSetNode_GetCustomDependencyUids) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_GetCustomDependencyUids"); \ +static_assert(sizeof(InterchangeVariantSetNode_GetCustomDependencyUids) == 0x000010, "Wrong size on InterchangeVariantSetNode_GetCustomDependencyUids"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDependencyUids, OutDependencyUids) == 0x000000, "Member 'InterchangeVariantSetNode_GetCustomDependencyUids::OutDependencyUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_GetCustomDisplayText \ +static_assert(alignof(InterchangeVariantSetNode_GetCustomDisplayText) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_GetCustomDisplayText"); \ +static_assert(sizeof(InterchangeVariantSetNode_GetCustomDisplayText) == 0x000018, "Wrong size on InterchangeVariantSetNode_GetCustomDisplayText"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDisplayText, AttributeValue) == 0x000000, "Member 'InterchangeVariantSetNode_GetCustomDisplayText::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomDisplayText, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_GetCustomDisplayText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeVariantSetNode_GetCustomVariantsPayloadKey \ +static_assert(alignof(InterchangeVariantSetNode_GetCustomVariantsPayloadKey) == 0x000008, "Wrong alignment on InterchangeVariantSetNode_GetCustomVariantsPayloadKey"); \ +static_assert(sizeof(InterchangeVariantSetNode_GetCustomVariantsPayloadKey) == 0x000018, "Wrong size on InterchangeVariantSetNode_GetCustomVariantsPayloadKey"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomVariantsPayloadKey, PayloadKey) == 0x000000, "Member 'InterchangeVariantSetNode_GetCustomVariantsPayloadKey::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeVariantSetNode_GetCustomVariantsPayloadKey, ReturnValue) == 0x000010, "Member 'InterchangeVariantSetNode_GetCustomVariantsPayloadKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeVariantSetNode \ +static_assert(alignof(UInterchangeVariantSetNode) == 0x000008, "Wrong alignment on UInterchangeVariantSetNode"); \ +static_assert(sizeof(UInterchangeVariantSetNode) == 0x0000A0, "Wrong size on UInterchangeVariantSetNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsNode_AddCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsNode_AddCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsNode_AddCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsNode_AddCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsNode_AddCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_AddCustomVariantSetUid, VariantUid) == 0x000000, "Member 'InterchangeSceneVariantSetsNode_AddCustomVariantSetUid::VariantUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_AddCustomVariantSetUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneVariantSetsNode_AddCustomVariantSetUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid, VariantUid) == 0x000000, "Member 'InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid::VariantUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneVariantSetsNode_RemoveCustomVariantSetUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsNode_GetCustomVariantSetUid \ +static_assert(alignof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUid) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsNode_GetCustomVariantSetUid"); \ +static_assert(sizeof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUid) == 0x000018, "Wrong size on InterchangeSceneVariantSetsNode_GetCustomVariantSetUid"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUid, Index_0) == 0x000000, "Member 'InterchangeSceneVariantSetsNode_GetCustomVariantSetUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUid, OutVariantUid) == 0x000008, "Member 'InterchangeSceneVariantSetsNode_GetCustomVariantSetUid::OutVariantUid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount \ +static_assert(alignof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount) == 0x000004, "Wrong alignment on InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount"); \ +static_assert(sizeof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount) == 0x000004, "Wrong size on InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount, ReturnValue) == 0x000000, "Member 'InterchangeSceneVariantSetsNode_GetCustomVariantSetUidCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneVariantSetsNode_GetCustomVariantSetUids \ +static_assert(alignof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUids) == 0x000008, "Wrong alignment on InterchangeSceneVariantSetsNode_GetCustomVariantSetUids"); \ +static_assert(sizeof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUids) == 0x000010, "Wrong size on InterchangeSceneVariantSetsNode_GetCustomVariantSetUids"); \ +static_assert(offsetof(InterchangeSceneVariantSetsNode_GetCustomVariantSetUids, OutVariantUids) == 0x000000, "Member 'InterchangeSceneVariantSetsNode_GetCustomVariantSetUids::OutVariantUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneVariantSetsNode \ +static_assert(alignof(UInterchangeSceneVariantSetsNode) == 0x000008, "Wrong alignment on UInterchangeSceneVariantSetsNode"); \ +static_assert(sizeof(UInterchangeSceneVariantSetsNode) == 0x000080, "Wrong size on UInterchangeSceneVariantSetsNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeVolumeTextureNode \ +static_assert(alignof(UInterchangeVolumeTextureNode) == 0x000008, "Wrong alignment on UInterchangeVolumeTextureNode"); \ +static_assert(sizeof(UInterchangeVolumeTextureNode) == 0x000090, "Wrong size on UInterchangeVolumeTextureNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_AddScalarParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_AddScalarParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_AddScalarParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_AddScalarParameterValue) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_AddScalarParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddScalarParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_AddScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddScalarParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_AddScalarParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddScalarParameterValue, ReturnValue) == 0x000014, "Member 'InterchangeMaterialInstanceNode_AddScalarParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue, ReturnValue) == 0x000011, "Member 'InterchangeMaterialInstanceNode_AddStaticSwitchParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_AddTextureParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_AddTextureParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_AddTextureParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_AddTextureParameterValue) == 0x000028, "Wrong size on InterchangeMaterialInstanceNode_AddTextureParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddTextureParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_AddTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddTextureParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_AddTextureParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddTextureParameterValue, ReturnValue) == 0x000020, "Member 'InterchangeMaterialInstanceNode_AddTextureParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_AddVectorParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_AddVectorParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_AddVectorParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_AddVectorParameterValue) == 0x000028, "Wrong size on InterchangeMaterialInstanceNode_AddVectorParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddVectorParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_AddVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddVectorParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_AddVectorParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_AddVectorParameterValue, ReturnValue) == 0x000020, "Member 'InterchangeMaterialInstanceNode_AddVectorParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_GetCustomParent \ +static_assert(alignof(InterchangeMaterialInstanceNode_GetCustomParent) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_GetCustomParent"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_GetCustomParent) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_GetCustomParent"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetCustomParent, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceNode_GetCustomParent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetCustomParent, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_GetCustomParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_GetScalarParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_GetScalarParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_GetScalarParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_GetScalarParameterValue) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_GetScalarParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetScalarParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_GetScalarParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetScalarParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_GetScalarParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetScalarParameterValue, ReturnValue) == 0x000014, "Member 'InterchangeMaterialInstanceNode_GetScalarParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue, ReturnValue) == 0x000011, "Member 'InterchangeMaterialInstanceNode_GetStaticSwitchParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_GetTextureParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_GetTextureParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_GetTextureParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_GetTextureParameterValue) == 0x000028, "Wrong size on InterchangeMaterialInstanceNode_GetTextureParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetTextureParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_GetTextureParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetTextureParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_GetTextureParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetTextureParameterValue, ReturnValue) == 0x000020, "Member 'InterchangeMaterialInstanceNode_GetTextureParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_GetVectorParameterValue \ +static_assert(alignof(InterchangeMaterialInstanceNode_GetVectorParameterValue) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_GetVectorParameterValue"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_GetVectorParameterValue) == 0x000028, "Wrong size on InterchangeMaterialInstanceNode_GetVectorParameterValue"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetVectorParameterValue, ParameterName) == 0x000000, "Member 'InterchangeMaterialInstanceNode_GetVectorParameterValue::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetVectorParameterValue, AttributeValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_GetVectorParameterValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_GetVectorParameterValue, ReturnValue) == 0x000020, "Member 'InterchangeMaterialInstanceNode_GetVectorParameterValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMaterialInstanceNode_SetCustomParent \ +static_assert(alignof(InterchangeMaterialInstanceNode_SetCustomParent) == 0x000008, "Wrong alignment on InterchangeMaterialInstanceNode_SetCustomParent"); \ +static_assert(sizeof(InterchangeMaterialInstanceNode_SetCustomParent) == 0x000018, "Wrong size on InterchangeMaterialInstanceNode_SetCustomParent"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_SetCustomParent, AttributeValue) == 0x000000, "Member 'InterchangeMaterialInstanceNode_SetCustomParent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMaterialInstanceNode_SetCustomParent, ReturnValue) == 0x000010, "Member 'InterchangeMaterialInstanceNode_SetCustomParent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialInstanceNode \ +static_assert(alignof(UInterchangeMaterialInstanceNode) == 0x000008, "Wrong alignment on UInterchangeMaterialInstanceNode"); \ +static_assert(sizeof(UInterchangeMaterialInstanceNode) == 0x000070, "Wrong size on UInterchangeMaterialInstanceNode"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_RemoveMorphTargetDependencyUid \ +static_assert(alignof(InterchangeMeshNode_RemoveMorphTargetDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_RemoveMorphTargetDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_RemoveMorphTargetDependencyUid) == 0x000018, "Wrong size on InterchangeMeshNode_RemoveMorphTargetDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveMorphTargetDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_RemoveMorphTargetDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveMorphTargetDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_RemoveMorphTargetDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_RemoveSceneInstanceUid \ +static_assert(alignof(InterchangeMeshNode_RemoveSceneInstanceUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_RemoveSceneInstanceUid"); \ +static_assert(sizeof(InterchangeMeshNode_RemoveSceneInstanceUid) == 0x000018, "Wrong size on InterchangeMeshNode_RemoveSceneInstanceUid"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSceneInstanceUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_RemoveSceneInstanceUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSceneInstanceUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_RemoveSceneInstanceUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_RemoveSkeletonDependencyUid \ +static_assert(alignof(InterchangeMeshNode_RemoveSkeletonDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_RemoveSkeletonDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_RemoveSkeletonDependencyUid) == 0x000018, "Wrong size on InterchangeMeshNode_RemoveSkeletonDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSkeletonDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_RemoveSkeletonDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSkeletonDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_RemoveSkeletonDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_RemoveSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshNode_RemoveSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_RemoveSlotMaterialDependencyUid) == 0x000018, "Wrong size on InterchangeMeshNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshNode_RemoveSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_RemoveSlotMaterialDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_RemoveSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomBoundingBox \ +static_assert(alignof(InterchangeMeshNode_SetCustomBoundingBox) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetCustomBoundingBox"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomBoundingBox) == 0x000040, "Wrong size on InterchangeMeshNode_SetCustomBoundingBox"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomBoundingBox, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomBoundingBox::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomBoundingBox, ReturnValue) == 0x000038, "Member 'InterchangeMeshNode_SetCustomBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomHasSmoothGroup \ +static_assert(alignof(InterchangeMeshNode_SetCustomHasSmoothGroup) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetCustomHasSmoothGroup"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomHasSmoothGroup) == 0x000002, "Wrong size on InterchangeMeshNode_SetCustomHasSmoothGroup"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasSmoothGroup, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomHasSmoothGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasSmoothGroup, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetCustomHasSmoothGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomHasVertexBinormal \ +static_assert(alignof(InterchangeMeshNode_SetCustomHasVertexBinormal) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetCustomHasVertexBinormal"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomHasVertexBinormal) == 0x000002, "Wrong size on InterchangeMeshNode_SetCustomHasVertexBinormal"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexBinormal, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomHasVertexBinormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexBinormal, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetCustomHasVertexBinormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomHasVertexColor \ +static_assert(alignof(InterchangeMeshNode_SetCustomHasVertexColor) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetCustomHasVertexColor"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomHasVertexColor) == 0x000002, "Wrong size on InterchangeMeshNode_SetCustomHasVertexColor"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexColor, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomHasVertexColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexColor, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetCustomHasVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomHasVertexNormal \ +static_assert(alignof(InterchangeMeshNode_SetCustomHasVertexNormal) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetCustomHasVertexNormal"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomHasVertexNormal) == 0x000002, "Wrong size on InterchangeMeshNode_SetCustomHasVertexNormal"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexNormal, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomHasVertexNormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexNormal, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetCustomHasVertexNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomHasVertexTangent \ +static_assert(alignof(InterchangeMeshNode_SetCustomHasVertexTangent) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetCustomHasVertexTangent"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomHasVertexTangent) == 0x000002, "Wrong size on InterchangeMeshNode_SetCustomHasVertexTangent"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexTangent, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomHasVertexTangent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomHasVertexTangent, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetCustomHasVertexTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomPolygonCount \ +static_assert(alignof(InterchangeMeshNode_SetCustomPolygonCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_SetCustomPolygonCount"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomPolygonCount) == 0x000008, "Wrong size on InterchangeMeshNode_SetCustomPolygonCount"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomPolygonCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomPolygonCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomPolygonCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_SetCustomPolygonCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomUVCount \ +static_assert(alignof(InterchangeMeshNode_SetCustomUVCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_SetCustomUVCount"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomUVCount) == 0x000008, "Wrong size on InterchangeMeshNode_SetCustomUVCount"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomUVCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomUVCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomUVCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_SetCustomUVCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetCustomVertexCount \ +static_assert(alignof(InterchangeMeshNode_SetCustomVertexCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_SetCustomVertexCount"); \ +static_assert(sizeof(InterchangeMeshNode_SetCustomVertexCount) == 0x000008, "Wrong size on InterchangeMeshNode_SetCustomVertexCount"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomVertexCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_SetCustomVertexCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetCustomVertexCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_SetCustomVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetMorphTarget \ +static_assert(alignof(InterchangeMeshNode_SetMorphTarget) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetMorphTarget"); \ +static_assert(sizeof(InterchangeMeshNode_SetMorphTarget) == 0x000002, "Wrong size on InterchangeMeshNode_SetMorphTarget"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTarget, bIsMorphTarget) == 0x000000, "Member 'InterchangeMeshNode_SetMorphTarget::bIsMorphTarget' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTarget, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetMorphTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetMorphTargetDependencyUid \ +static_assert(alignof(InterchangeMeshNode_SetMorphTargetDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetMorphTargetDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_SetMorphTargetDependencyUid) == 0x000018, "Wrong size on InterchangeMeshNode_SetMorphTargetDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTargetDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_SetMorphTargetDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTargetDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_SetMorphTargetDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetMorphTargetName \ +static_assert(alignof(InterchangeMeshNode_SetMorphTargetName) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetMorphTargetName"); \ +static_assert(sizeof(InterchangeMeshNode_SetMorphTargetName) == 0x000018, "Wrong size on InterchangeMeshNode_SetMorphTargetName"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTargetName, MorphTargetName) == 0x000000, "Member 'InterchangeMeshNode_SetMorphTargetName::MorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetMorphTargetName, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_SetMorphTargetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetPayLoadKey \ +static_assert(alignof(InterchangeMeshNode_SetPayLoadKey) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetPayLoadKey"); \ +static_assert(sizeof(InterchangeMeshNode_SetPayLoadKey) == 0x000018, "Wrong size on InterchangeMeshNode_SetPayLoadKey"); \ +static_assert(offsetof(InterchangeMeshNode_SetPayLoadKey, PayloadKey) == 0x000000, "Member 'InterchangeMeshNode_SetPayLoadKey::PayloadKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetPayLoadKey, PayloadType) == 0x000010, "Member 'InterchangeMeshNode_SetPayLoadKey::PayloadType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetSceneInstanceUid \ +static_assert(alignof(InterchangeMeshNode_SetSceneInstanceUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetSceneInstanceUid"); \ +static_assert(sizeof(InterchangeMeshNode_SetSceneInstanceUid) == 0x000018, "Wrong size on InterchangeMeshNode_SetSceneInstanceUid"); \ +static_assert(offsetof(InterchangeMeshNode_SetSceneInstanceUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_SetSceneInstanceUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetSceneInstanceUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_SetSceneInstanceUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetSkeletonDependencyUid \ +static_assert(alignof(InterchangeMeshNode_SetSkeletonDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetSkeletonDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_SetSkeletonDependencyUid) == 0x000018, "Wrong size on InterchangeMeshNode_SetSkeletonDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_SetSkeletonDependencyUid, DependencyUid) == 0x000000, "Member 'InterchangeMeshNode_SetSkeletonDependencyUid::DependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetSkeletonDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_SetSkeletonDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetSkinnedMesh \ +static_assert(alignof(InterchangeMeshNode_SetSkinnedMesh) == 0x000001, "Wrong alignment on InterchangeMeshNode_SetSkinnedMesh"); \ +static_assert(sizeof(InterchangeMeshNode_SetSkinnedMesh) == 0x000002, "Wrong size on InterchangeMeshNode_SetSkinnedMesh"); \ +static_assert(offsetof(InterchangeMeshNode_SetSkinnedMesh, bIsSkinnedMesh) == 0x000000, "Member 'InterchangeMeshNode_SetSkinnedMesh::bIsSkinnedMesh' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetSkinnedMesh, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_SetSkinnedMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_SetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshNode_SetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_SetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_SetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshNode_SetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_SetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshNode_SetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetSlotMaterialDependencyUid, MaterialDependencyUid) == 0x000010, "Member 'InterchangeMeshNode_SetSlotMaterialDependencyUid::MaterialDependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_SetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshNode_SetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomBoundingBox \ +static_assert(alignof(InterchangeMeshNode_GetCustomBoundingBox) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetCustomBoundingBox"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomBoundingBox) == 0x000040, "Wrong size on InterchangeMeshNode_GetCustomBoundingBox"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomBoundingBox, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomBoundingBox::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomBoundingBox, ReturnValue) == 0x000038, "Member 'InterchangeMeshNode_GetCustomBoundingBox::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomHasSmoothGroup \ +static_assert(alignof(InterchangeMeshNode_GetCustomHasSmoothGroup) == 0x000001, "Wrong alignment on InterchangeMeshNode_GetCustomHasSmoothGroup"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomHasSmoothGroup) == 0x000002, "Wrong size on InterchangeMeshNode_GetCustomHasSmoothGroup"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasSmoothGroup, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomHasSmoothGroup::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasSmoothGroup, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_GetCustomHasSmoothGroup::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomHasVertexBinormal \ +static_assert(alignof(InterchangeMeshNode_GetCustomHasVertexBinormal) == 0x000001, "Wrong alignment on InterchangeMeshNode_GetCustomHasVertexBinormal"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomHasVertexBinormal) == 0x000002, "Wrong size on InterchangeMeshNode_GetCustomHasVertexBinormal"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexBinormal, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomHasVertexBinormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexBinormal, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_GetCustomHasVertexBinormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomHasVertexColor \ +static_assert(alignof(InterchangeMeshNode_GetCustomHasVertexColor) == 0x000001, "Wrong alignment on InterchangeMeshNode_GetCustomHasVertexColor"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomHasVertexColor) == 0x000002, "Wrong size on InterchangeMeshNode_GetCustomHasVertexColor"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexColor, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomHasVertexColor::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexColor, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_GetCustomHasVertexColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomHasVertexNormal \ +static_assert(alignof(InterchangeMeshNode_GetCustomHasVertexNormal) == 0x000001, "Wrong alignment on InterchangeMeshNode_GetCustomHasVertexNormal"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomHasVertexNormal) == 0x000002, "Wrong size on InterchangeMeshNode_GetCustomHasVertexNormal"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexNormal, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomHasVertexNormal::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexNormal, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_GetCustomHasVertexNormal::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomHasVertexTangent \ +static_assert(alignof(InterchangeMeshNode_GetCustomHasVertexTangent) == 0x000001, "Wrong alignment on InterchangeMeshNode_GetCustomHasVertexTangent"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomHasVertexTangent) == 0x000002, "Wrong size on InterchangeMeshNode_GetCustomHasVertexTangent"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexTangent, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomHasVertexTangent::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomHasVertexTangent, ReturnValue) == 0x000001, "Member 'InterchangeMeshNode_GetCustomHasVertexTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomPolygonCount \ +static_assert(alignof(InterchangeMeshNode_GetCustomPolygonCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetCustomPolygonCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomPolygonCount) == 0x000008, "Wrong size on InterchangeMeshNode_GetCustomPolygonCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomPolygonCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomPolygonCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomPolygonCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_GetCustomPolygonCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomUVCount \ +static_assert(alignof(InterchangeMeshNode_GetCustomUVCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetCustomUVCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomUVCount) == 0x000008, "Wrong size on InterchangeMeshNode_GetCustomUVCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomUVCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomUVCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomUVCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_GetCustomUVCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetCustomVertexCount \ +static_assert(alignof(InterchangeMeshNode_GetCustomVertexCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetCustomVertexCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetCustomVertexCount) == 0x000008, "Wrong size on InterchangeMeshNode_GetCustomVertexCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomVertexCount, AttributeValue) == 0x000000, "Member 'InterchangeMeshNode_GetCustomVertexCount::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetCustomVertexCount, ReturnValue) == 0x000004, "Member 'InterchangeMeshNode_GetCustomVertexCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetMorphTargetDependeciesCount \ +static_assert(alignof(InterchangeMeshNode_GetMorphTargetDependeciesCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetMorphTargetDependeciesCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetMorphTargetDependeciesCount) == 0x000004, "Wrong size on InterchangeMeshNode_GetMorphTargetDependeciesCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetDependeciesCount, ReturnValue) == 0x000000, "Member 'InterchangeMeshNode_GetMorphTargetDependeciesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetMorphTargetDependencies \ +static_assert(alignof(InterchangeMeshNode_GetMorphTargetDependencies) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetMorphTargetDependencies"); \ +static_assert(sizeof(InterchangeMeshNode_GetMorphTargetDependencies) == 0x000010, "Wrong size on InterchangeMeshNode_GetMorphTargetDependencies"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetDependencies, OutDependencies) == 0x000000, "Member 'InterchangeMeshNode_GetMorphTargetDependencies::OutDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetMorphTargetDependency \ +static_assert(alignof(InterchangeMeshNode_GetMorphTargetDependency) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetMorphTargetDependency"); \ +static_assert(sizeof(InterchangeMeshNode_GetMorphTargetDependency) == 0x000018, "Wrong size on InterchangeMeshNode_GetMorphTargetDependency"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetDependency, Index_0) == 0x000000, "Member 'InterchangeMeshNode_GetMorphTargetDependency::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetDependency, OutDependency) == 0x000008, "Member 'InterchangeMeshNode_GetMorphTargetDependency::OutDependency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetMorphTargetName \ +static_assert(alignof(InterchangeMeshNode_GetMorphTargetName) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetMorphTargetName"); \ +static_assert(sizeof(InterchangeMeshNode_GetMorphTargetName) == 0x000018, "Wrong size on InterchangeMeshNode_GetMorphTargetName"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetName, OutMorphTargetName) == 0x000000, "Member 'InterchangeMeshNode_GetMorphTargetName::OutMorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetMorphTargetName, ReturnValue) == 0x000010, "Member 'InterchangeMeshNode_GetMorphTargetName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSceneInstanceUid \ +static_assert(alignof(InterchangeMeshNode_GetSceneInstanceUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSceneInstanceUid"); \ +static_assert(sizeof(InterchangeMeshNode_GetSceneInstanceUid) == 0x000018, "Wrong size on InterchangeMeshNode_GetSceneInstanceUid"); \ +static_assert(offsetof(InterchangeMeshNode_GetSceneInstanceUid, Index_0) == 0x000000, "Member 'InterchangeMeshNode_GetSceneInstanceUid::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetSceneInstanceUid, OutDependency) == 0x000008, "Member 'InterchangeMeshNode_GetSceneInstanceUid::OutDependency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSceneInstanceUids \ +static_assert(alignof(InterchangeMeshNode_GetSceneInstanceUids) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSceneInstanceUids"); \ +static_assert(sizeof(InterchangeMeshNode_GetSceneInstanceUids) == 0x000010, "Wrong size on InterchangeMeshNode_GetSceneInstanceUids"); \ +static_assert(offsetof(InterchangeMeshNode_GetSceneInstanceUids, OutDependencies) == 0x000000, "Member 'InterchangeMeshNode_GetSceneInstanceUids::OutDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSceneInstanceUidsCount \ +static_assert(alignof(InterchangeMeshNode_GetSceneInstanceUidsCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetSceneInstanceUidsCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetSceneInstanceUidsCount) == 0x000004, "Wrong size on InterchangeMeshNode_GetSceneInstanceUidsCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetSceneInstanceUidsCount, ReturnValue) == 0x000000, "Member 'InterchangeMeshNode_GetSceneInstanceUidsCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSkeletonDependeciesCount \ +static_assert(alignof(InterchangeMeshNode_GetSkeletonDependeciesCount) == 0x000004, "Wrong alignment on InterchangeMeshNode_GetSkeletonDependeciesCount"); \ +static_assert(sizeof(InterchangeMeshNode_GetSkeletonDependeciesCount) == 0x000004, "Wrong size on InterchangeMeshNode_GetSkeletonDependeciesCount"); \ +static_assert(offsetof(InterchangeMeshNode_GetSkeletonDependeciesCount, ReturnValue) == 0x000000, "Member 'InterchangeMeshNode_GetSkeletonDependeciesCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSkeletonDependencies \ +static_assert(alignof(InterchangeMeshNode_GetSkeletonDependencies) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSkeletonDependencies"); \ +static_assert(sizeof(InterchangeMeshNode_GetSkeletonDependencies) == 0x000010, "Wrong size on InterchangeMeshNode_GetSkeletonDependencies"); \ +static_assert(offsetof(InterchangeMeshNode_GetSkeletonDependencies, OutDependencies) == 0x000000, "Member 'InterchangeMeshNode_GetSkeletonDependencies::OutDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSkeletonDependency \ +static_assert(alignof(InterchangeMeshNode_GetSkeletonDependency) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSkeletonDependency"); \ +static_assert(sizeof(InterchangeMeshNode_GetSkeletonDependency) == 0x000018, "Wrong size on InterchangeMeshNode_GetSkeletonDependency"); \ +static_assert(offsetof(InterchangeMeshNode_GetSkeletonDependency, Index_0) == 0x000000, "Member 'InterchangeMeshNode_GetSkeletonDependency::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetSkeletonDependency, OutDependency) == 0x000008, "Member 'InterchangeMeshNode_GetSkeletonDependency::OutDependency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSlotMaterialDependencies \ +static_assert(alignof(InterchangeMeshNode_GetSlotMaterialDependencies) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSlotMaterialDependencies"); \ +static_assert(sizeof(InterchangeMeshNode_GetSlotMaterialDependencies) == 0x000050, "Wrong size on InterchangeMeshNode_GetSlotMaterialDependencies"); \ +static_assert(offsetof(InterchangeMeshNode_GetSlotMaterialDependencies, OutMaterialDependencies) == 0x000000, "Member 'InterchangeMeshNode_GetSlotMaterialDependencies::OutMaterialDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_GetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeMeshNode_GetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeMeshNode_GetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeMeshNode_GetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeMeshNode_GetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeMeshNode_GetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeMeshNode_GetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetSlotMaterialDependencyUid, OutMaterialDependency) == 0x000010, "Member 'InterchangeMeshNode_GetSlotMaterialDependencyUid::OutMaterialDependency' has a wrong offset!"); \ +static_assert(offsetof(InterchangeMeshNode_GetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeMeshNode_GetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_IsMorphTarget \ +static_assert(alignof(InterchangeMeshNode_IsMorphTarget) == 0x000001, "Wrong alignment on InterchangeMeshNode_IsMorphTarget"); \ +static_assert(sizeof(InterchangeMeshNode_IsMorphTarget) == 0x000001, "Wrong size on InterchangeMeshNode_IsMorphTarget"); \ +static_assert(offsetof(InterchangeMeshNode_IsMorphTarget, ReturnValue) == 0x000000, "Member 'InterchangeMeshNode_IsMorphTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeMeshNode_IsSkinnedMesh \ +static_assert(alignof(InterchangeMeshNode_IsSkinnedMesh) == 0x000001, "Wrong alignment on InterchangeMeshNode_IsSkinnedMesh"); \ +static_assert(sizeof(InterchangeMeshNode_IsSkinnedMesh) == 0x000001, "Wrong size on InterchangeMeshNode_IsSkinnedMesh"); \ +static_assert(offsetof(InterchangeMeshNode_IsSkinnedMesh, ReturnValue) == 0x000000, "Member 'InterchangeMeshNode_IsSkinnedMesh::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMeshNode \ +static_assert(alignof(UInterchangeMeshNode) == 0x000008, "Wrong alignment on UInterchangeMeshNode"); \ +static_assert(sizeof(UInterchangeMeshNode) == 0x0001E8, "Wrong size on UInterchangeMeshNode"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_AddSpecializedType \ +static_assert(alignof(InterchangeSceneNode_AddSpecializedType) == 0x000008, "Wrong alignment on InterchangeSceneNode_AddSpecializedType"); \ +static_assert(sizeof(InterchangeSceneNode_AddSpecializedType) == 0x000018, "Wrong size on InterchangeSceneNode_AddSpecializedType"); \ +static_assert(offsetof(InterchangeSceneNode_AddSpecializedType, SpecializedType) == 0x000000, "Member 'InterchangeSceneNode_AddSpecializedType::SpecializedType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_AddSpecializedType, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_AddSpecializedType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_RemoveSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeSceneNode_RemoveSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeSceneNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeSceneNode_RemoveSlotMaterialDependencyUid) == 0x000018, "Wrong size on InterchangeSceneNode_RemoveSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeSceneNode_RemoveSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeSceneNode_RemoveSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_RemoveSlotMaterialDependencyUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_RemoveSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_RemoveSpecializedType \ +static_assert(alignof(InterchangeSceneNode_RemoveSpecializedType) == 0x000008, "Wrong alignment on InterchangeSceneNode_RemoveSpecializedType"); \ +static_assert(sizeof(InterchangeSceneNode_RemoveSpecializedType) == 0x000018, "Wrong size on InterchangeSceneNode_RemoveSpecializedType"); \ +static_assert(offsetof(InterchangeSceneNode_RemoveSpecializedType, SpecializedType) == 0x000000, "Member 'InterchangeSceneNode_RemoveSpecializedType::SpecializedType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_RemoveSpecializedType, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_RemoveSpecializedType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomAnimationAssetUidToPlay \ +static_assert(alignof(InterchangeSceneNode_SetCustomAnimationAssetUidToPlay) == 0x000008, "Wrong alignment on InterchangeSceneNode_SetCustomAnimationAssetUidToPlay"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomAnimationAssetUidToPlay) == 0x000018, "Wrong size on InterchangeSceneNode_SetCustomAnimationAssetUidToPlay"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomAnimationAssetUidToPlay, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_SetCustomAnimationAssetUidToPlay::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomAnimationAssetUidToPlay, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_SetCustomAnimationAssetUidToPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomAssetInstanceUid \ +static_assert(alignof(InterchangeSceneNode_SetCustomAssetInstanceUid) == 0x000008, "Wrong alignment on InterchangeSceneNode_SetCustomAssetInstanceUid"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomAssetInstanceUid) == 0x000018, "Wrong size on InterchangeSceneNode_SetCustomAssetInstanceUid"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomAssetInstanceUid, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_SetCustomAssetInstanceUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomAssetInstanceUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_SetCustomAssetInstanceUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomBindPoseLocalTransform \ +static_assert(alignof(InterchangeSceneNode_SetCustomBindPoseLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_SetCustomBindPoseLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomBindPoseLocalTransform) == 0x000080, "Wrong size on InterchangeSceneNode_SetCustomBindPoseLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomBindPoseLocalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_SetCustomBindPoseLocalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomBindPoseLocalTransform, AttributeValue) == 0x000010, "Member 'InterchangeSceneNode_SetCustomBindPoseLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomBindPoseLocalTransform, bResetCache) == 0x000070, "Member 'InterchangeSceneNode_SetCustomBindPoseLocalTransform::bResetCache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomBindPoseLocalTransform, ReturnValue) == 0x000071, "Member 'InterchangeSceneNode_SetCustomBindPoseLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomGeometricTransform \ +static_assert(alignof(InterchangeSceneNode_SetCustomGeometricTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_SetCustomGeometricTransform"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomGeometricTransform) == 0x000070, "Wrong size on InterchangeSceneNode_SetCustomGeometricTransform"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomGeometricTransform, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_SetCustomGeometricTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomGeometricTransform, ReturnValue) == 0x000060, "Member 'InterchangeSceneNode_SetCustomGeometricTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomLocalTransform \ +static_assert(alignof(InterchangeSceneNode_SetCustomLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_SetCustomLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomLocalTransform) == 0x000080, "Wrong size on InterchangeSceneNode_SetCustomLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomLocalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_SetCustomLocalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomLocalTransform, AttributeValue) == 0x000010, "Member 'InterchangeSceneNode_SetCustomLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomLocalTransform, bResetCache) == 0x000070, "Member 'InterchangeSceneNode_SetCustomLocalTransform::bResetCache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomLocalTransform, ReturnValue) == 0x000071, "Member 'InterchangeSceneNode_SetCustomLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetCustomTimeZeroLocalTransform \ +static_assert(alignof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_SetCustomTimeZeroLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform) == 0x000080, "Wrong size on InterchangeSceneNode_SetCustomTimeZeroLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_SetCustomTimeZeroLocalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform, AttributeValue) == 0x000010, "Member 'InterchangeSceneNode_SetCustomTimeZeroLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform, bResetCache) == 0x000070, "Member 'InterchangeSceneNode_SetCustomTimeZeroLocalTransform::bResetCache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetCustomTimeZeroLocalTransform, ReturnValue) == 0x000071, "Member 'InterchangeSceneNode_SetCustomTimeZeroLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetMorphTargetCurveWeight \ +static_assert(alignof(InterchangeSceneNode_SetMorphTargetCurveWeight) == 0x000008, "Wrong alignment on InterchangeSceneNode_SetMorphTargetCurveWeight"); \ +static_assert(sizeof(InterchangeSceneNode_SetMorphTargetCurveWeight) == 0x000018, "Wrong size on InterchangeSceneNode_SetMorphTargetCurveWeight"); \ +static_assert(offsetof(InterchangeSceneNode_SetMorphTargetCurveWeight, MorphTargetName) == 0x000000, "Member 'InterchangeSceneNode_SetMorphTargetCurveWeight::MorphTargetName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetMorphTargetCurveWeight, Weight) == 0x000010, "Member 'InterchangeSceneNode_SetMorphTargetCurveWeight::Weight' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetMorphTargetCurveWeight, ReturnValue) == 0x000014, "Member 'InterchangeSceneNode_SetMorphTargetCurveWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_SetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeSceneNode_SetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeSceneNode_SetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeSceneNode_SetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeSceneNode_SetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeSceneNode_SetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeSceneNode_SetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetSlotMaterialDependencyUid, MaterialDependencyUid) == 0x000010, "Member 'InterchangeSceneNode_SetSlotMaterialDependencyUid::MaterialDependencyUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_SetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeSceneNode_SetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomAnimationAssetUidToPlay \ +static_assert(alignof(InterchangeSceneNode_GetCustomAnimationAssetUidToPlay) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetCustomAnimationAssetUidToPlay"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomAnimationAssetUidToPlay) == 0x000018, "Wrong size on InterchangeSceneNode_GetCustomAnimationAssetUidToPlay"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomAnimationAssetUidToPlay, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomAnimationAssetUidToPlay::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomAnimationAssetUidToPlay, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_GetCustomAnimationAssetUidToPlay::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomAssetInstanceUid \ +static_assert(alignof(InterchangeSceneNode_GetCustomAssetInstanceUid) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetCustomAssetInstanceUid"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomAssetInstanceUid) == 0x000018, "Wrong size on InterchangeSceneNode_GetCustomAssetInstanceUid"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomAssetInstanceUid, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomAssetInstanceUid::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomAssetInstanceUid, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_GetCustomAssetInstanceUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomBindPoseGlobalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomBindPoseGlobalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform) == 0x0000E0, "Wrong size on InterchangeSceneNode_GetCustomBindPoseGlobalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_GetCustomBindPoseGlobalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform, GlobalOffsetTransform) == 0x000010, "Member 'InterchangeSceneNode_GetCustomBindPoseGlobalTransform::GlobalOffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform, AttributeValue) == 0x000070, "Member 'InterchangeSceneNode_GetCustomBindPoseGlobalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform, bForceRecache) == 0x0000D0, "Member 'InterchangeSceneNode_GetCustomBindPoseGlobalTransform::bForceRecache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseGlobalTransform, ReturnValue) == 0x0000D1, "Member 'InterchangeSceneNode_GetCustomBindPoseGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomBindPoseLocalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomBindPoseLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomBindPoseLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomBindPoseLocalTransform) == 0x000070, "Wrong size on InterchangeSceneNode_GetCustomBindPoseLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseLocalTransform, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomBindPoseLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomBindPoseLocalTransform, ReturnValue) == 0x000060, "Member 'InterchangeSceneNode_GetCustomBindPoseLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomGeometricTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomGeometricTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomGeometricTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomGeometricTransform) == 0x000070, "Wrong size on InterchangeSceneNode_GetCustomGeometricTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGeometricTransform, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomGeometricTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGeometricTransform, ReturnValue) == 0x000060, "Member 'InterchangeSceneNode_GetCustomGeometricTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomGlobalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomGlobalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomGlobalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomGlobalTransform) == 0x0000E0, "Wrong size on InterchangeSceneNode_GetCustomGlobalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGlobalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_GetCustomGlobalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGlobalTransform, GlobalOffsetTransform) == 0x000010, "Member 'InterchangeSceneNode_GetCustomGlobalTransform::GlobalOffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGlobalTransform, AttributeValue) == 0x000070, "Member 'InterchangeSceneNode_GetCustomGlobalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGlobalTransform, bForceRecache) == 0x0000D0, "Member 'InterchangeSceneNode_GetCustomGlobalTransform::bForceRecache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomGlobalTransform, ReturnValue) == 0x0000D1, "Member 'InterchangeSceneNode_GetCustomGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomLocalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomLocalTransform) == 0x000070, "Wrong size on InterchangeSceneNode_GetCustomLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomLocalTransform, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomLocalTransform, ReturnValue) == 0x000060, "Member 'InterchangeSceneNode_GetCustomLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomTimeZeroGlobalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomTimeZeroGlobalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform) == 0x0000E0, "Wrong size on InterchangeSceneNode_GetCustomTimeZeroGlobalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform, BaseNodeContainer) == 0x000000, "Member 'InterchangeSceneNode_GetCustomTimeZeroGlobalTransform::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform, GlobalOffsetTransform) == 0x000010, "Member 'InterchangeSceneNode_GetCustomTimeZeroGlobalTransform::GlobalOffsetTransform' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform, AttributeValue) == 0x000070, "Member 'InterchangeSceneNode_GetCustomTimeZeroGlobalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform, bForceRecache) == 0x0000D0, "Member 'InterchangeSceneNode_GetCustomTimeZeroGlobalTransform::bForceRecache' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroGlobalTransform, ReturnValue) == 0x0000D1, "Member 'InterchangeSceneNode_GetCustomTimeZeroGlobalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetCustomTimeZeroLocalTransform \ +static_assert(alignof(InterchangeSceneNode_GetCustomTimeZeroLocalTransform) == 0x000010, "Wrong alignment on InterchangeSceneNode_GetCustomTimeZeroLocalTransform"); \ +static_assert(sizeof(InterchangeSceneNode_GetCustomTimeZeroLocalTransform) == 0x000070, "Wrong size on InterchangeSceneNode_GetCustomTimeZeroLocalTransform"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroLocalTransform, AttributeValue) == 0x000000, "Member 'InterchangeSceneNode_GetCustomTimeZeroLocalTransform::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetCustomTimeZeroLocalTransform, ReturnValue) == 0x000060, "Member 'InterchangeSceneNode_GetCustomTimeZeroLocalTransform::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetMorphTargetCurveWeights \ +static_assert(alignof(InterchangeSceneNode_GetMorphTargetCurveWeights) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetMorphTargetCurveWeights"); \ +static_assert(sizeof(InterchangeSceneNode_GetMorphTargetCurveWeights) == 0x000050, "Wrong size on InterchangeSceneNode_GetMorphTargetCurveWeights"); \ +static_assert(offsetof(InterchangeSceneNode_GetMorphTargetCurveWeights, OutMorphTargetCurveWeights) == 0x000000, "Member 'InterchangeSceneNode_GetMorphTargetCurveWeights::OutMorphTargetCurveWeights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetSlotMaterialDependencies \ +static_assert(alignof(InterchangeSceneNode_GetSlotMaterialDependencies) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetSlotMaterialDependencies"); \ +static_assert(sizeof(InterchangeSceneNode_GetSlotMaterialDependencies) == 0x000050, "Wrong size on InterchangeSceneNode_GetSlotMaterialDependencies"); \ +static_assert(offsetof(InterchangeSceneNode_GetSlotMaterialDependencies, OutMaterialDependencies) == 0x000000, "Member 'InterchangeSceneNode_GetSlotMaterialDependencies::OutMaterialDependencies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetSlotMaterialDependencyUid \ +static_assert(alignof(InterchangeSceneNode_GetSlotMaterialDependencyUid) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetSlotMaterialDependencyUid"); \ +static_assert(sizeof(InterchangeSceneNode_GetSlotMaterialDependencyUid) == 0x000028, "Wrong size on InterchangeSceneNode_GetSlotMaterialDependencyUid"); \ +static_assert(offsetof(InterchangeSceneNode_GetSlotMaterialDependencyUid, SlotName) == 0x000000, "Member 'InterchangeSceneNode_GetSlotMaterialDependencyUid::SlotName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetSlotMaterialDependencyUid, OutMaterialDependency) == 0x000010, "Member 'InterchangeSceneNode_GetSlotMaterialDependencyUid::OutMaterialDependency' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetSlotMaterialDependencyUid, ReturnValue) == 0x000020, "Member 'InterchangeSceneNode_GetSlotMaterialDependencyUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetSpecializedType \ +static_assert(alignof(InterchangeSceneNode_GetSpecializedType) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetSpecializedType"); \ +static_assert(sizeof(InterchangeSceneNode_GetSpecializedType) == 0x000018, "Wrong size on InterchangeSceneNode_GetSpecializedType"); \ +static_assert(offsetof(InterchangeSceneNode_GetSpecializedType, Index_0) == 0x000000, "Member 'InterchangeSceneNode_GetSpecializedType::Index_0' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_GetSpecializedType, OutSpecializedType) == 0x000008, "Member 'InterchangeSceneNode_GetSpecializedType::OutSpecializedType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetSpecializedTypeCount \ +static_assert(alignof(InterchangeSceneNode_GetSpecializedTypeCount) == 0x000004, "Wrong alignment on InterchangeSceneNode_GetSpecializedTypeCount"); \ +static_assert(sizeof(InterchangeSceneNode_GetSpecializedTypeCount) == 0x000004, "Wrong size on InterchangeSceneNode_GetSpecializedTypeCount"); \ +static_assert(offsetof(InterchangeSceneNode_GetSpecializedTypeCount, ReturnValue) == 0x000000, "Member 'InterchangeSceneNode_GetSpecializedTypeCount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_GetSpecializedTypes \ +static_assert(alignof(InterchangeSceneNode_GetSpecializedTypes) == 0x000008, "Wrong alignment on InterchangeSceneNode_GetSpecializedTypes"); \ +static_assert(sizeof(InterchangeSceneNode_GetSpecializedTypes) == 0x000010, "Wrong size on InterchangeSceneNode_GetSpecializedTypes"); \ +static_assert(offsetof(InterchangeSceneNode_GetSpecializedTypes, OutSpecializedTypes) == 0x000000, "Member 'InterchangeSceneNode_GetSpecializedTypes::OutSpecializedTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeSceneNode_IsSpecializedTypeContains \ +static_assert(alignof(InterchangeSceneNode_IsSpecializedTypeContains) == 0x000008, "Wrong alignment on InterchangeSceneNode_IsSpecializedTypeContains"); \ +static_assert(sizeof(InterchangeSceneNode_IsSpecializedTypeContains) == 0x000018, "Wrong size on InterchangeSceneNode_IsSpecializedTypeContains"); \ +static_assert(offsetof(InterchangeSceneNode_IsSpecializedTypeContains, SpecializedType) == 0x000000, "Member 'InterchangeSceneNode_IsSpecializedTypeContains::SpecializedType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeSceneNode_IsSpecializedTypeContains, ReturnValue) == 0x000010, "Member 'InterchangeSceneNode_IsSpecializedTypeContains::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneNode \ +static_assert(alignof(UInterchangeSceneNode) == 0x000008, "Wrong alignment on UInterchangeSceneNode"); \ +static_assert(sizeof(UInterchangeSceneNode) == 0x000320, "Wrong size on UInterchangeSceneNode"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_ConnectDefaultOuputToInput \ +static_assert(alignof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_ConnectDefaultOuputToInput"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput) == 0x000030, "Wrong size on InterchangeShaderPortsAPI_ConnectDefaultOuputToInput"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_ConnectDefaultOuputToInput::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput, InputName) == 0x000008, "Member 'InterchangeShaderPortsAPI_ConnectDefaultOuputToInput::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput, ExpressionUid) == 0x000018, "Member 'InterchangeShaderPortsAPI_ConnectDefaultOuputToInput::ExpressionUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectDefaultOuputToInput, ReturnValue) == 0x000028, "Member 'InterchangeShaderPortsAPI_ConnectDefaultOuputToInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_ConnectOuputToInputByIndex \ +static_assert(alignof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_ConnectOuputToInputByIndex"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex) == 0x000030, "Wrong size on InterchangeShaderPortsAPI_ConnectOuputToInputByIndex"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByIndex::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex, InputName) == 0x000008, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByIndex::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex, ExpressionUid) == 0x000018, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByIndex::ExpressionUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex, OutputIndex) == 0x000028, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByIndex::OutputIndex' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByIndex, ReturnValue) == 0x00002C, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_ConnectOuputToInputByName \ +static_assert(alignof(InterchangeShaderPortsAPI_ConnectOuputToInputByName) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_ConnectOuputToInputByName"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_ConnectOuputToInputByName) == 0x000040, "Wrong size on InterchangeShaderPortsAPI_ConnectOuputToInputByName"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByName, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByName::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByName, InputName) == 0x000008, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByName::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByName, ExpressionUid) == 0x000018, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByName::ExpressionUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByName, OutputName) == 0x000028, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByName::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_ConnectOuputToInputByName, ReturnValue) == 0x000038, "Member 'InterchangeShaderPortsAPI_ConnectOuputToInputByName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_GatherInputs \ +static_assert(alignof(InterchangeShaderPortsAPI_GatherInputs) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_GatherInputs"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_GatherInputs) == 0x000018, "Wrong size on InterchangeShaderPortsAPI_GatherInputs"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GatherInputs, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_GatherInputs::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GatherInputs, OutInputNames) == 0x000008, "Member 'InterchangeShaderPortsAPI_GatherInputs::OutInputNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_GetInputConnection \ +static_assert(alignof(InterchangeShaderPortsAPI_GetInputConnection) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_GetInputConnection"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_GetInputConnection) == 0x000040, "Wrong size on InterchangeShaderPortsAPI_GetInputConnection"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GetInputConnection, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_GetInputConnection::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GetInputConnection, InputName) == 0x000008, "Member 'InterchangeShaderPortsAPI_GetInputConnection::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GetInputConnection, OutExpressionUid) == 0x000018, "Member 'InterchangeShaderPortsAPI_GetInputConnection::OutExpressionUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GetInputConnection, OutputName) == 0x000028, "Member 'InterchangeShaderPortsAPI_GetInputConnection::OutputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_GetInputConnection, ReturnValue) == 0x000038, "Member 'InterchangeShaderPortsAPI_GetInputConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_HasInput \ +static_assert(alignof(InterchangeShaderPortsAPI_HasInput) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_HasInput"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_HasInput) == 0x000018, "Wrong size on InterchangeShaderPortsAPI_HasInput"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_HasInput, InterchangeNode) == 0x000000, "Member 'InterchangeShaderPortsAPI_HasInput::InterchangeNode' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_HasInput, InInputName) == 0x000008, "Member 'InterchangeShaderPortsAPI_HasInput::InInputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_HasInput, ReturnValue) == 0x000010, "Member 'InterchangeShaderPortsAPI_HasInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_IsAnInput \ +static_assert(alignof(InterchangeShaderPortsAPI_IsAnInput) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_IsAnInput"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_IsAnInput) == 0x000018, "Wrong size on InterchangeShaderPortsAPI_IsAnInput"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_IsAnInput, AttributeKey) == 0x000000, "Member 'InterchangeShaderPortsAPI_IsAnInput::AttributeKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_IsAnInput, ReturnValue) == 0x000010, "Member 'InterchangeShaderPortsAPI_IsAnInput::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_MakeInputConnectionKey \ +static_assert(alignof(InterchangeShaderPortsAPI_MakeInputConnectionKey) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_MakeInputConnectionKey"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_MakeInputConnectionKey) == 0x000020, "Wrong size on InterchangeShaderPortsAPI_MakeInputConnectionKey"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputConnectionKey, InputName) == 0x000000, "Member 'InterchangeShaderPortsAPI_MakeInputConnectionKey::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputConnectionKey, ReturnValue) == 0x000010, "Member 'InterchangeShaderPortsAPI_MakeInputConnectionKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_MakeInputName \ +static_assert(alignof(InterchangeShaderPortsAPI_MakeInputName) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_MakeInputName"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_MakeInputName) == 0x000020, "Wrong size on InterchangeShaderPortsAPI_MakeInputName"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputName, InputKey) == 0x000000, "Member 'InterchangeShaderPortsAPI_MakeInputName::InputKey' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputName, ReturnValue) == 0x000010, "Member 'InterchangeShaderPortsAPI_MakeInputName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderPortsAPI_MakeInputValueKey \ +static_assert(alignof(InterchangeShaderPortsAPI_MakeInputValueKey) == 0x000008, "Wrong alignment on InterchangeShaderPortsAPI_MakeInputValueKey"); \ +static_assert(sizeof(InterchangeShaderPortsAPI_MakeInputValueKey) == 0x000020, "Wrong size on InterchangeShaderPortsAPI_MakeInputValueKey"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputValueKey, InputName) == 0x000000, "Member 'InterchangeShaderPortsAPI_MakeInputValueKey::InputName' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderPortsAPI_MakeInputValueKey, ReturnValue) == 0x000010, "Member 'InterchangeShaderPortsAPI_MakeInputValueKey::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeShaderPortsAPI \ +static_assert(alignof(UInterchangeShaderPortsAPI) == 0x000008, "Wrong alignment on UInterchangeShaderPortsAPI"); \ +static_assert(sizeof(UInterchangeShaderPortsAPI) == 0x000028, "Wrong size on UInterchangeShaderPortsAPI"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderNode_SetCustomShaderType \ +static_assert(alignof(InterchangeShaderNode_SetCustomShaderType) == 0x000008, "Wrong alignment on InterchangeShaderNode_SetCustomShaderType"); \ +static_assert(sizeof(InterchangeShaderNode_SetCustomShaderType) == 0x000018, "Wrong size on InterchangeShaderNode_SetCustomShaderType"); \ +static_assert(offsetof(InterchangeShaderNode_SetCustomShaderType, AttributeValue) == 0x000000, "Member 'InterchangeShaderNode_SetCustomShaderType::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderNode_SetCustomShaderType, ReturnValue) == 0x000010, "Member 'InterchangeShaderNode_SetCustomShaderType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderNode_GetCustomShaderType \ +static_assert(alignof(InterchangeShaderNode_GetCustomShaderType) == 0x000008, "Wrong alignment on InterchangeShaderNode_GetCustomShaderType"); \ +static_assert(sizeof(InterchangeShaderNode_GetCustomShaderType) == 0x000018, "Wrong size on InterchangeShaderNode_GetCustomShaderType"); \ +static_assert(offsetof(InterchangeShaderNode_GetCustomShaderType, AttributeValue) == 0x000000, "Member 'InterchangeShaderNode_GetCustomShaderType::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderNode_GetCustomShaderType, ReturnValue) == 0x000010, "Member 'InterchangeShaderNode_GetCustomShaderType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeShaderNode \ +static_assert(alignof(UInterchangeShaderNode) == 0x000008, "Wrong alignment on UInterchangeShaderNode"); \ +static_assert(sizeof(UInterchangeShaderNode) == 0x000070, "Wrong size on UInterchangeShaderNode"); \ + +#define DUMPER7_ASSERTS_InterchangeFunctionCallShaderNode_SetCustomMaterialFunction \ +static_assert(alignof(InterchangeFunctionCallShaderNode_SetCustomMaterialFunction) == 0x000008, "Wrong alignment on InterchangeFunctionCallShaderNode_SetCustomMaterialFunction"); \ +static_assert(sizeof(InterchangeFunctionCallShaderNode_SetCustomMaterialFunction) == 0x000018, "Wrong size on InterchangeFunctionCallShaderNode_SetCustomMaterialFunction"); \ +static_assert(offsetof(InterchangeFunctionCallShaderNode_SetCustomMaterialFunction, AttributeValue) == 0x000000, "Member 'InterchangeFunctionCallShaderNode_SetCustomMaterialFunction::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFunctionCallShaderNode_SetCustomMaterialFunction, ReturnValue) == 0x000010, "Member 'InterchangeFunctionCallShaderNode_SetCustomMaterialFunction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFunctionCallShaderNode_GetCustomMaterialFunction \ +static_assert(alignof(InterchangeFunctionCallShaderNode_GetCustomMaterialFunction) == 0x000008, "Wrong alignment on InterchangeFunctionCallShaderNode_GetCustomMaterialFunction"); \ +static_assert(sizeof(InterchangeFunctionCallShaderNode_GetCustomMaterialFunction) == 0x000018, "Wrong size on InterchangeFunctionCallShaderNode_GetCustomMaterialFunction"); \ +static_assert(offsetof(InterchangeFunctionCallShaderNode_GetCustomMaterialFunction, AttributeValue) == 0x000000, "Member 'InterchangeFunctionCallShaderNode_GetCustomMaterialFunction::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFunctionCallShaderNode_GetCustomMaterialFunction, ReturnValue) == 0x000010, "Member 'InterchangeFunctionCallShaderNode_GetCustomMaterialFunction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeFunctionCallShaderNode \ +static_assert(alignof(UInterchangeFunctionCallShaderNode) == 0x000008, "Wrong alignment on UInterchangeFunctionCallShaderNode"); \ +static_assert(sizeof(UInterchangeFunctionCallShaderNode) == 0x000080, "Wrong size on UInterchangeFunctionCallShaderNode"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_SetCustomIsAShaderFunction \ +static_assert(alignof(InterchangeShaderGraphNode_SetCustomIsAShaderFunction) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_SetCustomIsAShaderFunction"); \ +static_assert(sizeof(InterchangeShaderGraphNode_SetCustomIsAShaderFunction) == 0x000002, "Wrong size on InterchangeShaderGraphNode_SetCustomIsAShaderFunction"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomIsAShaderFunction, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_SetCustomIsAShaderFunction::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomIsAShaderFunction, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_SetCustomIsAShaderFunction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue \ +static_assert(alignof(InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue) == 0x000004, "Wrong alignment on InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue"); \ +static_assert(sizeof(InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue) == 0x000008, "Wrong size on InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue, bAddApplyDelegate) == 0x000004, "Member 'InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue::bAddApplyDelegate' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue, ReturnValue) == 0x000005, "Member 'InterchangeShaderGraphNode_SetCustomOpacityMaskClipValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_SetCustomScreenSpaceReflections \ +static_assert(alignof(InterchangeShaderGraphNode_SetCustomScreenSpaceReflections) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_SetCustomScreenSpaceReflections"); \ +static_assert(sizeof(InterchangeShaderGraphNode_SetCustomScreenSpaceReflections) == 0x000002, "Wrong size on InterchangeShaderGraphNode_SetCustomScreenSpaceReflections"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomScreenSpaceReflections, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_SetCustomScreenSpaceReflections::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomScreenSpaceReflections, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_SetCustomScreenSpaceReflections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_SetCustomTwoSided \ +static_assert(alignof(InterchangeShaderGraphNode_SetCustomTwoSided) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_SetCustomTwoSided"); \ +static_assert(sizeof(InterchangeShaderGraphNode_SetCustomTwoSided) == 0x000002, "Wrong size on InterchangeShaderGraphNode_SetCustomTwoSided"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_SetCustomTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomTwoSided, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_SetCustomTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_SetCustomTwoSidedTransmission \ +static_assert(alignof(InterchangeShaderGraphNode_SetCustomTwoSidedTransmission) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_SetCustomTwoSidedTransmission"); \ +static_assert(sizeof(InterchangeShaderGraphNode_SetCustomTwoSidedTransmission) == 0x000002, "Wrong size on InterchangeShaderGraphNode_SetCustomTwoSidedTransmission"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomTwoSidedTransmission, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_SetCustomTwoSidedTransmission::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_SetCustomTwoSidedTransmission, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_SetCustomTwoSidedTransmission::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_GetCustomIsAShaderFunction \ +static_assert(alignof(InterchangeShaderGraphNode_GetCustomIsAShaderFunction) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_GetCustomIsAShaderFunction"); \ +static_assert(sizeof(InterchangeShaderGraphNode_GetCustomIsAShaderFunction) == 0x000002, "Wrong size on InterchangeShaderGraphNode_GetCustomIsAShaderFunction"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomIsAShaderFunction, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_GetCustomIsAShaderFunction::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomIsAShaderFunction, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_GetCustomIsAShaderFunction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue \ +static_assert(alignof(InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue) == 0x000004, "Wrong alignment on InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue"); \ +static_assert(sizeof(InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue) == 0x000008, "Wrong size on InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue, ReturnValue) == 0x000004, "Member 'InterchangeShaderGraphNode_GetCustomOpacityMaskClipValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_GetCustomScreenSpaceReflections \ +static_assert(alignof(InterchangeShaderGraphNode_GetCustomScreenSpaceReflections) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_GetCustomScreenSpaceReflections"); \ +static_assert(sizeof(InterchangeShaderGraphNode_GetCustomScreenSpaceReflections) == 0x000002, "Wrong size on InterchangeShaderGraphNode_GetCustomScreenSpaceReflections"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomScreenSpaceReflections, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_GetCustomScreenSpaceReflections::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomScreenSpaceReflections, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_GetCustomScreenSpaceReflections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_GetCustomTwoSided \ +static_assert(alignof(InterchangeShaderGraphNode_GetCustomTwoSided) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_GetCustomTwoSided"); \ +static_assert(sizeof(InterchangeShaderGraphNode_GetCustomTwoSided) == 0x000002, "Wrong size on InterchangeShaderGraphNode_GetCustomTwoSided"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomTwoSided, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_GetCustomTwoSided::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomTwoSided, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_GetCustomTwoSided::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeShaderGraphNode_GetCustomTwoSidedTransmission \ +static_assert(alignof(InterchangeShaderGraphNode_GetCustomTwoSidedTransmission) == 0x000001, "Wrong alignment on InterchangeShaderGraphNode_GetCustomTwoSidedTransmission"); \ +static_assert(sizeof(InterchangeShaderGraphNode_GetCustomTwoSidedTransmission) == 0x000002, "Wrong size on InterchangeShaderGraphNode_GetCustomTwoSidedTransmission"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomTwoSidedTransmission, AttributeValue) == 0x000000, "Member 'InterchangeShaderGraphNode_GetCustomTwoSidedTransmission::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeShaderGraphNode_GetCustomTwoSidedTransmission, ReturnValue) == 0x000001, "Member 'InterchangeShaderGraphNode_GetCustomTwoSidedTransmission::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeShaderGraphNode \ +static_assert(alignof(UInterchangeShaderGraphNode) == 0x000008, "Wrong alignment on UInterchangeShaderGraphNode"); \ +static_assert(sizeof(UInterchangeShaderGraphNode) == 0x0000C0, "Wrong size on UInterchangeShaderGraphNode"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DNode_SetCustomWrapU \ +static_assert(alignof(InterchangeTexture2DNode_SetCustomWrapU) == 0x000001, "Wrong alignment on InterchangeTexture2DNode_SetCustomWrapU"); \ +static_assert(sizeof(InterchangeTexture2DNode_SetCustomWrapU) == 0x000002, "Wrong size on InterchangeTexture2DNode_SetCustomWrapU"); \ +static_assert(offsetof(InterchangeTexture2DNode_SetCustomWrapU, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DNode_SetCustomWrapU::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DNode_SetCustomWrapU, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DNode_SetCustomWrapU::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DNode_SetCustomWrapV \ +static_assert(alignof(InterchangeTexture2DNode_SetCustomWrapV) == 0x000001, "Wrong alignment on InterchangeTexture2DNode_SetCustomWrapV"); \ +static_assert(sizeof(InterchangeTexture2DNode_SetCustomWrapV) == 0x000002, "Wrong size on InterchangeTexture2DNode_SetCustomWrapV"); \ +static_assert(offsetof(InterchangeTexture2DNode_SetCustomWrapV, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DNode_SetCustomWrapV::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DNode_SetCustomWrapV, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DNode_SetCustomWrapV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DNode_GetCustomWrapU \ +static_assert(alignof(InterchangeTexture2DNode_GetCustomWrapU) == 0x000001, "Wrong alignment on InterchangeTexture2DNode_GetCustomWrapU"); \ +static_assert(sizeof(InterchangeTexture2DNode_GetCustomWrapU) == 0x000002, "Wrong size on InterchangeTexture2DNode_GetCustomWrapU"); \ +static_assert(offsetof(InterchangeTexture2DNode_GetCustomWrapU, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DNode_GetCustomWrapU::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DNode_GetCustomWrapU, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DNode_GetCustomWrapU::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DNode_GetCustomWrapV \ +static_assert(alignof(InterchangeTexture2DNode_GetCustomWrapV) == 0x000001, "Wrong alignment on InterchangeTexture2DNode_GetCustomWrapV"); \ +static_assert(sizeof(InterchangeTexture2DNode_GetCustomWrapV) == 0x000002, "Wrong size on InterchangeTexture2DNode_GetCustomWrapV"); \ +static_assert(offsetof(InterchangeTexture2DNode_GetCustomWrapV, AttributeValue) == 0x000000, "Member 'InterchangeTexture2DNode_GetCustomWrapV::AttributeValue' has a wrong offset!"); \ +static_assert(offsetof(InterchangeTexture2DNode_GetCustomWrapV, ReturnValue) == 0x000001, "Member 'InterchangeTexture2DNode_GetCustomWrapV::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeTexture2DNode_GetSourceBlocks \ +static_assert(alignof(InterchangeTexture2DNode_GetSourceBlocks) == 0x000008, "Wrong alignment on InterchangeTexture2DNode_GetSourceBlocks"); \ +static_assert(sizeof(InterchangeTexture2DNode_GetSourceBlocks) == 0x000050, "Wrong size on InterchangeTexture2DNode_GetSourceBlocks"); \ +static_assert(offsetof(InterchangeTexture2DNode_GetSourceBlocks, ReturnValue) == 0x000000, "Member 'InterchangeTexture2DNode_GetSourceBlocks::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeTexture2DNode \ +static_assert(alignof(UInterchangeTexture2DNode) == 0x000008, "Wrong alignment on UInterchangeTexture2DNode"); \ +static_assert(sizeof(UInterchangeTexture2DNode) == 0x000128, "Wrong size on UInterchangeTexture2DNode"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureBlurNode \ +static_assert(alignof(UInterchangeTextureBlurNode) == 0x000008, "Wrong alignment on UInterchangeTextureBlurNode"); \ +static_assert(sizeof(UInterchangeTextureBlurNode) == 0x000128, "Wrong size on UInterchangeTextureBlurNode"); \ + +#define DUMPER7_ASSERTS_GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen \ +static_assert(alignof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen) == 0x000008, "Wrong alignment on GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen"); \ +static_assert(sizeof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen) == 0x000088, "Wrong size on GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, EntryPoint) == 0x000000, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, K2Node_CustomEvent_bMatchesComparison) == 0x000014, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::K2Node_CustomEvent_bMatchesComparison' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, K2Node_CustomEvent_CurrentValue) == 0x000018, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, K2Node_CreateDelegate_OutputDelegate_1) == 0x00001C, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, Temp_real_Variable) == 0x00002C, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, Temp_bool_Variable) == 0x000030, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000038, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_WaitDelay_ReturnValue) == 0x000040, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000048, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_GetFloatAttribute_ReturnValue) == 0x00004C, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000054, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, K2Node_Event_bWasCancelled) == 0x00005C, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_WaitForAttributeChangeThreshold_ReturnValue) == 0x000068, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_WaitForAttributeChangeThreshold_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000074, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000078, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen, CallFunc_WaitForAttributeChangeThreshold_ComparisonValue_ImplicitCast) == 0x000080, "Member 'GA_StunRegen_C_ExecuteUbergraph_GA_StunRegen::CallFunc_WaitForAttributeChangeThreshold_ComparisonValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_StunRegen_C_K2_OnEndAbility \ +static_assert(alignof(GA_StunRegen_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_StunRegen_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_StunRegen_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_StunRegen_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_StunRegen_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_StunRegen_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882 \ +static_assert(alignof(GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882) == 0x000004, "Wrong alignment on GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882"); \ +static_assert(sizeof(GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882) == 0x000008, "Wrong size on GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882"); \ +static_assert(offsetof(GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882, bMatchesComparison) == 0x000000, "Member 'GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882::bMatchesComparison' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882, CurrentValue) == 0x000004, "Member 'GA_StunRegen_C_OnChange_DB04709C4653B2B5995279BDFE15D882::CurrentValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_StunRegen_C_SetStunRegenStartValue \ +static_assert(alignof(GA_StunRegen_C_SetStunRegenStartValue) == 0x000008, "Wrong alignment on GA_StunRegen_C_SetStunRegenStartValue"); \ +static_assert(sizeof(GA_StunRegen_C_SetStunRegenStartValue) == 0x000038, "Wrong size on GA_StunRegen_C_SetStunRegenStartValue"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000000, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000010, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_GetFloatAttribute_ReturnValue) == 0x000014, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000018, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x00001C, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000020, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000028, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_SetStunRegenStartValue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000030, "Member 'GA_StunRegen_C_SetStunRegenStartValue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_StunRegen_C_K2_CanActivateAbility \ +static_assert(alignof(GA_StunRegen_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_StunRegen_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_StunRegen_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_StunRegen_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_StunRegen_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_StunRegen_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_StunRegen_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_StunRegen_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_StunRegen_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_StunRegen_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_StunRegen_C \ +static_assert(alignof(UGA_StunRegen_C) == 0x000008, "Wrong alignment on UGA_StunRegen_C"); \ +static_assert(sizeof(UGA_StunRegen_C) == 0x0006D8, "Wrong size on UGA_StunRegen_C"); \ +static_assert(offsetof(UGA_StunRegen_C, UberGraphFrame) == 0x000668, "Member 'UGA_StunRegen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, StunDuration) == 0x000670, "Member 'UGA_StunRegen_C::StunDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, StunRegenDelay) == 0x000678, "Member 'UGA_StunRegen_C::StunRegenDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, StunRegenTag) == 0x000680, "Member 'UGA_StunRegen_C::StunRegenTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, StunRegenPause) == 0x0006A0, "Member 'UGA_StunRegen_C::StunRegenPause' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, StunRegenStartDelay) == 0x0006A8, "Member 'UGA_StunRegen_C::StunRegenStartDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, NewVar) == 0x0006B0, "Member 'UGA_StunRegen_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UGA_StunRegen_C, RecoverStunFraction) == 0x0006D0, "Member 'UGA_StunRegen_C::RecoverStunFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeFilePickerParameters \ +static_assert(alignof(FInterchangeFilePickerParameters) == 0x000008, "Wrong alignment on FInterchangeFilePickerParameters"); \ +static_assert(sizeof(FInterchangeFilePickerParameters) == 0x000030, "Wrong size on FInterchangeFilePickerParameters"); \ +static_assert(offsetof(FInterchangeFilePickerParameters, bAllowMultipleFiles) == 0x000000, "Member 'FInterchangeFilePickerParameters::bAllowMultipleFiles' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeFilePickerParameters, Title) == 0x000008, "Member 'FInterchangeFilePickerParameters::Title' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeFilePickerParameters, DefaultPath) == 0x000020, "Member 'FInterchangeFilePickerParameters::DefaultPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeStackInfo \ +static_assert(alignof(FInterchangeStackInfo) == 0x000008, "Wrong alignment on FInterchangeStackInfo"); \ +static_assert(sizeof(FInterchangeStackInfo) == 0x000018, "Wrong size on FInterchangeStackInfo"); \ +static_assert(offsetof(FInterchangeStackInfo, StackName) == 0x000000, "Member 'FInterchangeStackInfo::StackName' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeStackInfo, Pipelines) == 0x000008, "Member 'FInterchangeStackInfo::Pipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeTranslatorPipelines \ +static_assert(alignof(FInterchangeTranslatorPipelines) == 0x000008, "Wrong alignment on FInterchangeTranslatorPipelines"); \ +static_assert(sizeof(FInterchangeTranslatorPipelines) == 0x000038, "Wrong size on FInterchangeTranslatorPipelines"); \ +static_assert(offsetof(FInterchangeTranslatorPipelines, Translator) == 0x000000, "Member 'FInterchangeTranslatorPipelines::Translator' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeTranslatorPipelines, Pipelines) == 0x000028, "Member 'FInterchangeTranslatorPipelines::Pipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangePipelineStack \ +static_assert(alignof(FInterchangePipelineStack) == 0x000008, "Wrong alignment on FInterchangePipelineStack"); \ +static_assert(sizeof(FInterchangePipelineStack) == 0x000020, "Wrong size on FInterchangePipelineStack"); \ +static_assert(offsetof(FInterchangePipelineStack, Pipelines) == 0x000000, "Member 'FInterchangePipelineStack::Pipelines' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelineStack, PerTranslatorPipelines) == 0x000010, "Member 'FInterchangePipelineStack::PerTranslatorPipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeImportSettings \ +static_assert(alignof(FInterchangeImportSettings) == 0x000008, "Wrong alignment on FInterchangeImportSettings"); \ +static_assert(sizeof(FInterchangeImportSettings) == 0x000088, "Wrong size on FInterchangeImportSettings"); \ +static_assert(offsetof(FInterchangeImportSettings, PipelineStacks) == 0x000000, "Member 'FInterchangeImportSettings::PipelineStacks' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeImportSettings, DefaultPipelineStack) == 0x000050, "Member 'FInterchangeImportSettings::DefaultPipelineStack' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeImportSettings, PipelineConfigurationDialogClass) == 0x000058, "Member 'FInterchangeImportSettings::PipelineConfigurationDialogClass' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeImportSettings, bShowPipelineStacksConfigurationDialog) == 0x000080, "Member 'FInterchangeImportSettings::bShowPipelineStacksConfigurationDialog' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeContentImportSettings \ +static_assert(alignof(FInterchangeContentImportSettings) == 0x000008, "Wrong alignment on FInterchangeContentImportSettings"); \ +static_assert(sizeof(FInterchangeContentImportSettings) == 0x000128, "Wrong size on FInterchangeContentImportSettings"); \ +static_assert(offsetof(FInterchangeContentImportSettings, DefaultPipelineStackOverride) == 0x000088, "Member 'FInterchangeContentImportSettings::DefaultPipelineStackOverride' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeContentImportSettings, ShowPipelineStacksConfigurationDialogOverride) == 0x0000D8, "Member 'FInterchangeContentImportSettings::ShowPipelineStacksConfigurationDialogOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyData \ +static_assert(alignof(FPropertyData) == 0x000008, "Wrong alignment on FPropertyData"); \ +static_assert(sizeof(FPropertyData) == 0x000018, "Wrong size on FPropertyData"); \ + +#define DUMPER7_ASSERTS_FImportAssetParameters \ +static_assert(alignof(FImportAssetParameters) == 0x000008, "Wrong alignment on FImportAssetParameters"); \ +static_assert(sizeof(FImportAssetParameters) == 0x0000A0, "Wrong size on FImportAssetParameters"); \ +static_assert(offsetof(FImportAssetParameters, ReimportAsset) == 0x000000, "Member 'FImportAssetParameters::ReimportAsset' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, ReimportSourceIndex) == 0x000008, "Member 'FImportAssetParameters::ReimportSourceIndex' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, bIsAutomated) == 0x00000C, "Member 'FImportAssetParameters::bIsAutomated' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, bFollowRedirectors) == 0x00000D, "Member 'FImportAssetParameters::bFollowRedirectors' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, OverridePipelines) == 0x000010, "Member 'FImportAssetParameters::OverridePipelines' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, OnAssetDone) == 0x000020, "Member 'FImportAssetParameters::OnAssetDone' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, OnAssetsImportDone) == 0x000040, "Member 'FImportAssetParameters::OnAssetsImportDone' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, OnSceneObjectDone) == 0x000060, "Member 'FImportAssetParameters::OnSceneObjectDone' has a wrong offset!"); \ +static_assert(offsetof(FImportAssetParameters, OnSceneImportDone) == 0x000080, "Member 'FImportAssetParameters::OnSceneImportDone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeBlueprintPipelineBase \ +static_assert(alignof(UInterchangeBlueprintPipelineBase) == 0x000008, "Wrong alignment on UInterchangeBlueprintPipelineBase"); \ +static_assert(sizeof(UInterchangeBlueprintPipelineBase) == 0x0000A8, "Wrong size on UInterchangeBlueprintPipelineBase"); \ + +#define DUMPER7_ASSERTS_InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType \ +static_assert(alignof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType) == 0x000008, "Wrong alignment on InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType"); \ +static_assert(sizeof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType) == 0x000050, "Wrong size on InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType, TranslatorAssetType) == 0x000000, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType::TranslatorAssetType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType, Parameters) == 0x000008, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType::Parameters' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType, OutFilenames) == 0x000038, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType::OutFilenames' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType, ReturnValue) == 0x000048, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorAssetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType \ +static_assert(alignof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType) == 0x000008, "Wrong alignment on InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType"); \ +static_assert(sizeof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType) == 0x000050, "Wrong size on InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType, TranslatorType) == 0x000000, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType::TranslatorType' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType, Parameters) == 0x000008, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType::Parameters' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType, OutFilenames) == 0x000038, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType::OutFilenames' has a wrong offset!"); \ +static_assert(offsetof(InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType, ReturnValue) == 0x000048, "Member 'InterchangeFilePickerBase_ScriptedFilePickerForTranslatorType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeFilePickerBase \ +static_assert(alignof(UInterchangeFilePickerBase) == 0x000008, "Wrong alignment on UInterchangeFilePickerBase"); \ +static_assert(sizeof(UInterchangeFilePickerBase) == 0x000028, "Wrong size on UInterchangeFilePickerBase"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog \ +static_assert(alignof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog) == 0x000008, "Wrong alignment on InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog"); \ +static_assert(sizeof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog) == 0x000030, "Wrong size on InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog, PipelineStacks) == 0x000000, "Member 'InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog::PipelineStacks' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog, OutPipelines) == 0x000010, "Member 'InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog::OutPipelines' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog, SourceData) == 0x000020, "Member 'InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog::SourceData' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog, ReturnValue) == 0x000028, "Member 'InterchangePipelineConfigurationBase_ScriptedShowPipelineConfigurationDialog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog \ +static_assert(alignof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog) == 0x000008, "Wrong alignment on InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog"); \ +static_assert(sizeof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog) == 0x000030, "Wrong size on InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog, PipelineStacks) == 0x000000, "Member 'InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog::PipelineStacks' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog, OutPipelines) == 0x000010, "Member 'InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog::OutPipelines' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog, SourceData) == 0x000020, "Member 'InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog::SourceData' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog, ReturnValue) == 0x000028, "Member 'InterchangePipelineConfigurationBase_ScriptedShowReimportPipelineConfigurationDialog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog \ +static_assert(alignof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog) == 0x000008, "Wrong alignment on InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog"); \ +static_assert(sizeof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog) == 0x000030, "Wrong size on InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog, PipelineStacks) == 0x000000, "Member 'InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog::PipelineStacks' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog, OutPipelines) == 0x000010, "Member 'InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog::OutPipelines' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog, SourceData) == 0x000020, "Member 'InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog::SourceData' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog, ReturnValue) == 0x000028, "Member 'InterchangePipelineConfigurationBase_ScriptedShowScenePipelineConfigurationDialog::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePipelineConfigurationBase \ +static_assert(alignof(UInterchangePipelineConfigurationBase) == 0x000008, "Wrong alignment on UInterchangePipelineConfigurationBase"); \ +static_assert(sizeof(UInterchangePipelineConfigurationBase) == 0x000028, "Wrong size on UInterchangePipelineConfigurationBase"); \ + +#define DUMPER7_ASSERTS_UInterchangeProjectSettings \ +static_assert(alignof(UInterchangeProjectSettings) == 0x000008, "Wrong alignment on UInterchangeProjectSettings"); \ +static_assert(sizeof(UInterchangeProjectSettings) == 0x000240, "Wrong size on UInterchangeProjectSettings"); \ +static_assert(offsetof(UInterchangeProjectSettings, ContentImportSettings) == 0x000038, "Member 'UInterchangeProjectSettings::ContentImportSettings' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeProjectSettings, SceneImportSettings) == 0x000160, "Member 'UInterchangeProjectSettings::SceneImportSettings' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeProjectSettings, FilePickerClass) == 0x0001E8, "Member 'UInterchangeProjectSettings::FilePickerClass' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeProjectSettings, bStaticMeshUseSmoothEdgesIfSmoothingInformationIsMissing) == 0x000210, "Member 'UInterchangeProjectSettings::bStaticMeshUseSmoothEdgesIfSmoothingInformationIsMissing' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeProjectSettings, GenericPipelineClass) == 0x000218, "Member 'UInterchangeProjectSettings::GenericPipelineClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePythonPipelineBase \ +static_assert(alignof(UInterchangePythonPipelineBase) == 0x000008, "Wrong alignment on UInterchangePythonPipelineBase"); \ +static_assert(sizeof(UInterchangePythonPipelineBase) == 0x0000E8, "Wrong size on UInterchangePythonPipelineBase"); \ + +#define DUMPER7_ASSERTS_UInterchangePythonPipelineAsset \ +static_assert(alignof(UInterchangePythonPipelineAsset) == 0x000008, "Wrong alignment on UInterchangePythonPipelineAsset"); \ +static_assert(sizeof(UInterchangePythonPipelineAsset) == 0x000068, "Wrong size on UInterchangePythonPipelineAsset"); \ +static_assert(offsetof(UInterchangePythonPipelineAsset, PythonClass) == 0x000028, "Member 'UInterchangePythonPipelineAsset::PythonClass' has a wrong offset!"); \ +static_assert(offsetof(UInterchangePythonPipelineAsset, GeneratedPipeline) == 0x000050, "Member 'UInterchangePythonPipelineAsset::GeneratedPipeline' has a wrong offset!"); \ +static_assert(offsetof(UInterchangePythonPipelineAsset, JsonDefaultProperties) == 0x000058, "Member 'UInterchangePythonPipelineAsset::JsonDefaultProperties' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneImportAsset \ +static_assert(alignof(UInterchangeSceneImportAsset) == 0x000008, "Wrong alignment on UInterchangeSceneImportAsset"); \ +static_assert(sizeof(UInterchangeSceneImportAsset) == 0x000030, "Wrong size on UInterchangeSceneImportAsset"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_GetNodeContainer \ +static_assert(alignof(InterchangeAssetImportData_GetNodeContainer) == 0x000008, "Wrong alignment on InterchangeAssetImportData_GetNodeContainer"); \ +static_assert(sizeof(InterchangeAssetImportData_GetNodeContainer) == 0x000008, "Wrong size on InterchangeAssetImportData_GetNodeContainer"); \ +static_assert(offsetof(InterchangeAssetImportData_GetNodeContainer, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_GetNodeContainer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_GetNumberOfPipelines \ +static_assert(alignof(InterchangeAssetImportData_GetNumberOfPipelines) == 0x000004, "Wrong alignment on InterchangeAssetImportData_GetNumberOfPipelines"); \ +static_assert(sizeof(InterchangeAssetImportData_GetNumberOfPipelines) == 0x000004, "Wrong size on InterchangeAssetImportData_GetNumberOfPipelines"); \ +static_assert(offsetof(InterchangeAssetImportData_GetNumberOfPipelines, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_GetNumberOfPipelines::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_GetPipelines \ +static_assert(alignof(InterchangeAssetImportData_GetPipelines) == 0x000008, "Wrong alignment on InterchangeAssetImportData_GetPipelines"); \ +static_assert(sizeof(InterchangeAssetImportData_GetPipelines) == 0x000010, "Wrong size on InterchangeAssetImportData_GetPipelines"); \ +static_assert(offsetof(InterchangeAssetImportData_GetPipelines, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_GetPipelines::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_GetStoredFactoryNode \ +static_assert(alignof(InterchangeAssetImportData_GetStoredFactoryNode) == 0x000008, "Wrong alignment on InterchangeAssetImportData_GetStoredFactoryNode"); \ +static_assert(sizeof(InterchangeAssetImportData_GetStoredFactoryNode) == 0x000018, "Wrong size on InterchangeAssetImportData_GetStoredFactoryNode"); \ +static_assert(offsetof(InterchangeAssetImportData_GetStoredFactoryNode, InNodeUniqueId) == 0x000000, "Member 'InterchangeAssetImportData_GetStoredFactoryNode::InNodeUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAssetImportData_GetStoredFactoryNode, ReturnValue) == 0x000010, "Member 'InterchangeAssetImportData_GetStoredFactoryNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_GetStoredNode \ +static_assert(alignof(InterchangeAssetImportData_GetStoredNode) == 0x000008, "Wrong alignment on InterchangeAssetImportData_GetStoredNode"); \ +static_assert(sizeof(InterchangeAssetImportData_GetStoredNode) == 0x000018, "Wrong size on InterchangeAssetImportData_GetStoredNode"); \ +static_assert(offsetof(InterchangeAssetImportData_GetStoredNode, InNodeUniqueId) == 0x000000, "Member 'InterchangeAssetImportData_GetStoredNode::InNodeUniqueId' has a wrong offset!"); \ +static_assert(offsetof(InterchangeAssetImportData_GetStoredNode, ReturnValue) == 0x000010, "Member 'InterchangeAssetImportData_GetStoredNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_ScriptExtractDisplayLabels \ +static_assert(alignof(InterchangeAssetImportData_ScriptExtractDisplayLabels) == 0x000008, "Wrong alignment on InterchangeAssetImportData_ScriptExtractDisplayLabels"); \ +static_assert(sizeof(InterchangeAssetImportData_ScriptExtractDisplayLabels) == 0x000010, "Wrong size on InterchangeAssetImportData_ScriptExtractDisplayLabels"); \ +static_assert(offsetof(InterchangeAssetImportData_ScriptExtractDisplayLabels, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_ScriptExtractDisplayLabels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_ScriptExtractFilenames \ +static_assert(alignof(InterchangeAssetImportData_ScriptExtractFilenames) == 0x000008, "Wrong alignment on InterchangeAssetImportData_ScriptExtractFilenames"); \ +static_assert(sizeof(InterchangeAssetImportData_ScriptExtractFilenames) == 0x000010, "Wrong size on InterchangeAssetImportData_ScriptExtractFilenames"); \ +static_assert(offsetof(InterchangeAssetImportData_ScriptExtractFilenames, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_ScriptExtractFilenames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_ScriptGetFirstFilename \ +static_assert(alignof(InterchangeAssetImportData_ScriptGetFirstFilename) == 0x000008, "Wrong alignment on InterchangeAssetImportData_ScriptGetFirstFilename"); \ +static_assert(sizeof(InterchangeAssetImportData_ScriptGetFirstFilename) == 0x000010, "Wrong size on InterchangeAssetImportData_ScriptGetFirstFilename"); \ +static_assert(offsetof(InterchangeAssetImportData_ScriptGetFirstFilename, ReturnValue) == 0x000000, "Member 'InterchangeAssetImportData_ScriptGetFirstFilename::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_SetNodeContainer \ +static_assert(alignof(InterchangeAssetImportData_SetNodeContainer) == 0x000008, "Wrong alignment on InterchangeAssetImportData_SetNodeContainer"); \ +static_assert(sizeof(InterchangeAssetImportData_SetNodeContainer) == 0x000008, "Wrong size on InterchangeAssetImportData_SetNodeContainer"); \ +static_assert(offsetof(InterchangeAssetImportData_SetNodeContainer, InNodeContainer) == 0x000000, "Member 'InterchangeAssetImportData_SetNodeContainer::InNodeContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeAssetImportData_SetPipelines \ +static_assert(alignof(InterchangeAssetImportData_SetPipelines) == 0x000008, "Wrong alignment on InterchangeAssetImportData_SetPipelines"); \ +static_assert(sizeof(InterchangeAssetImportData_SetPipelines) == 0x000010, "Wrong size on InterchangeAssetImportData_SetPipelines"); \ +static_assert(offsetof(InterchangeAssetImportData_SetPipelines, InPipelines) == 0x000000, "Member 'InterchangeAssetImportData_SetPipelines::InPipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAssetImportData \ +static_assert(alignof(UInterchangeAssetImportData) == 0x000008, "Wrong alignment on UInterchangeAssetImportData"); \ +static_assert(sizeof(UInterchangeAssetImportData) == 0x0000B0, "Wrong size on UInterchangeAssetImportData"); \ +static_assert(offsetof(UInterchangeAssetImportData, SceneImportAsset) == 0x000028, "Member 'UInterchangeAssetImportData::SceneImportAsset' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeAssetImportData, NodeUniqueID) == 0x000048, "Member 'UInterchangeAssetImportData::NodeUniqueID' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeAssetImportData, NodeContainer) == 0x000058, "Member 'UInterchangeAssetImportData::NodeContainer' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeAssetImportData, Pipelines) == 0x000060, "Member 'UInterchangeAssetImportData::Pipelines' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeAssetImportData, TransientNodeContainer) == 0x000070, "Member 'UInterchangeAssetImportData::TransientNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeAssetImportData, TransientPipelines) == 0x000078, "Member 'UInterchangeAssetImportData::TransientPipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineStackOverride_AddBlueprintPipeline \ +static_assert(alignof(InterchangePipelineStackOverride_AddBlueprintPipeline) == 0x000008, "Wrong alignment on InterchangePipelineStackOverride_AddBlueprintPipeline"); \ +static_assert(sizeof(InterchangePipelineStackOverride_AddBlueprintPipeline) == 0x000008, "Wrong size on InterchangePipelineStackOverride_AddBlueprintPipeline"); \ +static_assert(offsetof(InterchangePipelineStackOverride_AddBlueprintPipeline, PipelineBase) == 0x000000, "Member 'InterchangePipelineStackOverride_AddBlueprintPipeline::PipelineBase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineStackOverride_AddPipeline \ +static_assert(alignof(InterchangePipelineStackOverride_AddPipeline) == 0x000008, "Wrong alignment on InterchangePipelineStackOverride_AddPipeline"); \ +static_assert(sizeof(InterchangePipelineStackOverride_AddPipeline) == 0x000008, "Wrong size on InterchangePipelineStackOverride_AddPipeline"); \ +static_assert(offsetof(InterchangePipelineStackOverride_AddPipeline, PipelineBase) == 0x000000, "Member 'InterchangePipelineStackOverride_AddPipeline::PipelineBase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineStackOverride_AddPythonPipeline \ +static_assert(alignof(InterchangePipelineStackOverride_AddPythonPipeline) == 0x000008, "Wrong alignment on InterchangePipelineStackOverride_AddPythonPipeline"); \ +static_assert(sizeof(InterchangePipelineStackOverride_AddPythonPipeline) == 0x000008, "Wrong size on InterchangePipelineStackOverride_AddPythonPipeline"); \ +static_assert(offsetof(InterchangePipelineStackOverride_AddPythonPipeline, PipelineBase) == 0x000000, "Member 'InterchangePipelineStackOverride_AddPythonPipeline::PipelineBase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePipelineStackOverride \ +static_assert(alignof(UInterchangePipelineStackOverride) == 0x000008, "Wrong alignment on UInterchangePipelineStackOverride"); \ +static_assert(sizeof(UInterchangePipelineStackOverride) == 0x000038, "Wrong size on UInterchangePipelineStackOverride"); \ +static_assert(offsetof(UInterchangePipelineStackOverride, OverridePipelines) == 0x000028, "Member 'UInterchangePipelineStackOverride::OverridePipelines' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_CreateSourceData \ +static_assert(alignof(InterchangeManager_CreateSourceData) == 0x000008, "Wrong alignment on InterchangeManager_CreateSourceData"); \ +static_assert(sizeof(InterchangeManager_CreateSourceData) == 0x000018, "Wrong size on InterchangeManager_CreateSourceData"); \ +static_assert(offsetof(InterchangeManager_CreateSourceData, InFilename) == 0x000000, "Member 'InterchangeManager_CreateSourceData::InFilename' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_CreateSourceData, ReturnValue) == 0x000010, "Member 'InterchangeManager_CreateSourceData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_GetInterchangeManagerScripted \ +static_assert(alignof(InterchangeManager_GetInterchangeManagerScripted) == 0x000008, "Wrong alignment on InterchangeManager_GetInterchangeManagerScripted"); \ +static_assert(sizeof(InterchangeManager_GetInterchangeManagerScripted) == 0x000008, "Wrong size on InterchangeManager_GetInterchangeManagerScripted"); \ +static_assert(offsetof(InterchangeManager_GetInterchangeManagerScripted, ReturnValue) == 0x000000, "Member 'InterchangeManager_GetInterchangeManagerScripted::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_ExportAsset \ +static_assert(alignof(InterchangeManager_ExportAsset) == 0x000008, "Wrong alignment on InterchangeManager_ExportAsset"); \ +static_assert(sizeof(InterchangeManager_ExportAsset) == 0x000010, "Wrong size on InterchangeManager_ExportAsset"); \ +static_assert(offsetof(InterchangeManager_ExportAsset, Asset) == 0x000000, "Member 'InterchangeManager_ExportAsset::Asset' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ExportAsset, bIsAutomated) == 0x000008, "Member 'InterchangeManager_ExportAsset::bIsAutomated' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ExportAsset, ReturnValue) == 0x000009, "Member 'InterchangeManager_ExportAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_ExportScene \ +static_assert(alignof(InterchangeManager_ExportScene) == 0x000008, "Wrong alignment on InterchangeManager_ExportScene"); \ +static_assert(sizeof(InterchangeManager_ExportScene) == 0x000010, "Wrong size on InterchangeManager_ExportScene"); \ +static_assert(offsetof(InterchangeManager_ExportScene, World) == 0x000000, "Member 'InterchangeManager_ExportScene::World' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ExportScene, bIsAutomated) == 0x000008, "Member 'InterchangeManager_ExportScene::bIsAutomated' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ExportScene, ReturnValue) == 0x000009, "Member 'InterchangeManager_ExportScene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_ImportAsset \ +static_assert(alignof(InterchangeManager_ImportAsset) == 0x000008, "Wrong alignment on InterchangeManager_ImportAsset"); \ +static_assert(sizeof(InterchangeManager_ImportAsset) == 0x0000C0, "Wrong size on InterchangeManager_ImportAsset"); \ +static_assert(offsetof(InterchangeManager_ImportAsset, ContentPath) == 0x000000, "Member 'InterchangeManager_ImportAsset::ContentPath' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportAsset, SourceData) == 0x000010, "Member 'InterchangeManager_ImportAsset::SourceData' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportAsset, ImportAssetParameters) == 0x000018, "Member 'InterchangeManager_ImportAsset::ImportAssetParameters' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportAsset, ReturnValue) == 0x0000B8, "Member 'InterchangeManager_ImportAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_ImportScene \ +static_assert(alignof(InterchangeManager_ImportScene) == 0x000008, "Wrong alignment on InterchangeManager_ImportScene"); \ +static_assert(sizeof(InterchangeManager_ImportScene) == 0x0000C0, "Wrong size on InterchangeManager_ImportScene"); \ +static_assert(offsetof(InterchangeManager_ImportScene, ContentPath) == 0x000000, "Member 'InterchangeManager_ImportScene::ContentPath' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportScene, SourceData) == 0x000010, "Member 'InterchangeManager_ImportScene::SourceData' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportScene, ImportAssetParameters) == 0x000018, "Member 'InterchangeManager_ImportScene::ImportAssetParameters' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_ImportScene, ReturnValue) == 0x0000B8, "Member 'InterchangeManager_ImportScene::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangeManager_GetRegisteredFactoryClass \ +static_assert(alignof(InterchangeManager_GetRegisteredFactoryClass) == 0x000008, "Wrong alignment on InterchangeManager_GetRegisteredFactoryClass"); \ +static_assert(sizeof(InterchangeManager_GetRegisteredFactoryClass) == 0x000010, "Wrong size on InterchangeManager_GetRegisteredFactoryClass"); \ +static_assert(offsetof(InterchangeManager_GetRegisteredFactoryClass, ClassToMake) == 0x000000, "Member 'InterchangeManager_GetRegisteredFactoryClass::ClassToMake' has a wrong offset!"); \ +static_assert(offsetof(InterchangeManager_GetRegisteredFactoryClass, ReturnValue) == 0x000008, "Member 'InterchangeManager_GetRegisteredFactoryClass::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeManager \ +static_assert(alignof(UInterchangeManager) == 0x000010, "Wrong alignment on UInterchangeManager"); \ +static_assert(sizeof(UInterchangeManager) == 0x0001E0, "Wrong size on UInterchangeManager"); \ +static_assert(offsetof(UInterchangeManager, RegisteredTranslatorsClass) == 0x0000D8, "Member 'UInterchangeManager::RegisteredTranslatorsClass' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeManager, RegisteredFactoryClasses) == 0x000128, "Member 'UInterchangeManager::RegisteredFactoryClasses' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeManager, RegisteredWriters) == 0x000178, "Member 'UInterchangeManager::RegisteredWriters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMeshUtilities \ +static_assert(alignof(UInterchangeMeshUtilities) == 0x000008, "Wrong alignment on UInterchangeMeshUtilities"); \ +static_assert(sizeof(UInterchangeMeshUtilities) == 0x000028, "Wrong size on UInterchangeMeshUtilities"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleButton_C \ +static_assert(alignof(UCommonTextStyleButton_C) == 0x000010, "Wrong alignment on UCommonTextStyleButton_C"); \ +static_assert(sizeof(UCommonTextStyleButton_C) == 0x0001B0, "Wrong size on UCommonTextStyleButton_C"); \ + +#define DUMPER7_ASSERTS_AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor \ +static_assert(alignof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor) == 0x000008, "Wrong alignment on AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor"); \ +static_assert(sizeof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor) == 0x000040, "Wrong size on AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, EntryPoint) == 0x000000, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, Temp_delegate_Variable) == 0x000004, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, K2Node_Event_InAutomata) == 0x000018, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, K2Node_Event_InState) == 0x000020, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000028, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, K2Node_DynamicCast_AsHera_Audio_Ambient) == 0x000030, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::K2Node_DynamicCast_AsHera_Audio_Ambient' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, CallFunc_IsValid_ReturnValue_1) == 0x00003A, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor, CallFunc_IsValid_ReturnValue_2) == 0x00003B, "Member 'AudioPostEventActor_C_ExecuteUbergraph_AudioPostEventActor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioPostEventActor_C_ReceiveExecute \ +static_assert(alignof(AudioPostEventActor_C_ReceiveExecute) == 0x000008, "Wrong alignment on AudioPostEventActor_C_ReceiveExecute"); \ +static_assert(sizeof(AudioPostEventActor_C_ReceiveExecute) == 0x000010, "Wrong size on AudioPostEventActor_C_ReceiveExecute"); \ +static_assert(offsetof(AudioPostEventActor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AudioPostEventActor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventActor_C_ReceiveExecute, InState) == 0x000008, "Member 'AudioPostEventActor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioPostEventActor_C \ +static_assert(alignof(UAudioPostEventActor_C) == 0x000008, "Wrong alignment on UAudioPostEventActor_C"); \ +static_assert(sizeof(UAudioPostEventActor_C) == 0x0000C0, "Wrong size on UAudioPostEventActor_C"); \ +static_assert(offsetof(UAudioPostEventActor_C, UberGraphFrame) == 0x000088, "Member 'UAudioPostEventActor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAudioPostEventActor_C, HeraAudioAmbient) == 0x000090, "Member 'UAudioPostEventActor_C::HeraAudioAmbient' has a wrong offset!"); \ +static_assert(offsetof(UAudioPostEventActor_C, Stop_Event) == 0x0000B8, "Member 'UAudioPostEventActor_C::Stop_Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_Crouch_NonCombat_Endless_C \ +static_assert(alignof(UGA_Additive_Crouch_NonCombat_Endless_C) == 0x000008, "Wrong alignment on UGA_Additive_Crouch_NonCombat_Endless_C"); \ +static_assert(sizeof(UGA_Additive_Crouch_NonCombat_Endless_C) == 0x000698, "Wrong size on UGA_Additive_Crouch_NonCombat_Endless_C"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultMeshWarning \ +static_assert(alignof(UInterchangeResultMeshWarning) == 0x000008, "Wrong alignment on UInterchangeResultMeshWarning"); \ +static_assert(sizeof(UInterchangeResultMeshWarning) == 0x000070, "Wrong size on UInterchangeResultMeshWarning"); \ +static_assert(offsetof(UInterchangeResultMeshWarning, MeshName) == 0x000060, "Member 'UInterchangeResultMeshWarning::MeshName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultTextureWarning \ +static_assert(alignof(UInterchangeResultTextureWarning) == 0x000008, "Wrong alignment on UInterchangeResultTextureWarning"); \ +static_assert(sizeof(UInterchangeResultTextureWarning) == 0x000070, "Wrong size on UInterchangeResultTextureWarning"); \ +static_assert(offsetof(UInterchangeResultTextureWarning, TextureName) == 0x000060, "Member 'UInterchangeResultTextureWarning::TextureName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultMeshError \ +static_assert(alignof(UInterchangeResultMeshError) == 0x000008, "Wrong alignment on UInterchangeResultMeshError"); \ +static_assert(sizeof(UInterchangeResultMeshError) == 0x000070, "Wrong size on UInterchangeResultMeshError"); \ +static_assert(offsetof(UInterchangeResultMeshError, MeshName) == 0x000060, "Member 'UInterchangeResultMeshError::MeshName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultMeshWarning_Generic \ +static_assert(alignof(UInterchangeResultMeshWarning_Generic) == 0x000008, "Wrong alignment on UInterchangeResultMeshWarning_Generic"); \ +static_assert(sizeof(UInterchangeResultMeshWarning_Generic) == 0x000088, "Wrong size on UInterchangeResultMeshWarning_Generic"); \ +static_assert(offsetof(UInterchangeResultMeshWarning_Generic, Text) == 0x000070, "Member 'UInterchangeResultMeshWarning_Generic::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultMeshError_Generic \ +static_assert(alignof(UInterchangeResultMeshError_Generic) == 0x000008, "Wrong alignment on UInterchangeResultMeshError_Generic"); \ +static_assert(sizeof(UInterchangeResultMeshError_Generic) == 0x000088, "Wrong size on UInterchangeResultMeshError_Generic"); \ +static_assert(offsetof(UInterchangeResultMeshError_Generic, Text) == 0x000070, "Member 'UInterchangeResultMeshError_Generic::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultMeshWarning_TooManyUVs \ +static_assert(alignof(UInterchangeResultMeshWarning_TooManyUVs) == 0x000008, "Wrong alignment on UInterchangeResultMeshWarning_TooManyUVs"); \ +static_assert(sizeof(UInterchangeResultMeshWarning_TooManyUVs) == 0x000078, "Wrong size on UInterchangeResultMeshWarning_TooManyUVs"); \ +static_assert(offsetof(UInterchangeResultMeshWarning_TooManyUVs, ExcessUVs) == 0x000070, "Member 'UInterchangeResultMeshWarning_TooManyUVs::ExcessUVs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeResultTextureWarning_TextureFileDoNotExist \ +static_assert(alignof(UInterchangeResultTextureWarning_TextureFileDoNotExist) == 0x000008, "Wrong alignment on UInterchangeResultTextureWarning_TextureFileDoNotExist"); \ +static_assert(sizeof(UInterchangeResultTextureWarning_TextureFileDoNotExist) == 0x000098, "Wrong size on UInterchangeResultTextureWarning_TextureFileDoNotExist"); \ +static_assert(offsetof(UInterchangeResultTextureWarning_TextureFileDoNotExist, Text) == 0x000070, "Member 'UInterchangeResultTextureWarning_TextureFileDoNotExist::Text' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeResultTextureWarning_TextureFileDoNotExist, MaterialName) == 0x000088, "Member 'UInterchangeResultTextureWarning_TextureFileDoNotExist::MaterialName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IInterchangeAnimationPayloadInterface \ +static_assert(alignof(IInterchangeAnimationPayloadInterface) == 0x000001, "Wrong alignment on IInterchangeAnimationPayloadInterface"); \ +static_assert(sizeof(IInterchangeAnimationPayloadInterface) == 0x000001, "Wrong size on IInterchangeAnimationPayloadInterface"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimationTrackSetFactory \ +static_assert(alignof(UInterchangeAnimationTrackSetFactory) == 0x000008, "Wrong alignment on UInterchangeAnimationTrackSetFactory"); \ +static_assert(sizeof(UInterchangeAnimationTrackSetFactory) == 0x000038, "Wrong size on UInterchangeAnimationTrackSetFactory"); \ + +#define DUMPER7_ASSERTS_IInterchangeBlockedTexturePayloadInterface \ +static_assert(alignof(IInterchangeBlockedTexturePayloadInterface) == 0x000001, "Wrong alignment on IInterchangeBlockedTexturePayloadInterface"); \ +static_assert(sizeof(IInterchangeBlockedTexturePayloadInterface) == 0x000001, "Wrong size on IInterchangeBlockedTexturePayloadInterface"); \ + +#define DUMPER7_ASSERTS_UInterchangeActorFactory \ +static_assert(alignof(UInterchangeActorFactory) == 0x000008, "Wrong alignment on UInterchangeActorFactory"); \ +static_assert(sizeof(UInterchangeActorFactory) == 0x000030, "Wrong size on UInterchangeActorFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeLightActorFactory \ +static_assert(alignof(UInterchangeLightActorFactory) == 0x000008, "Wrong alignment on UInterchangeLightActorFactory"); \ +static_assert(sizeof(UInterchangeLightActorFactory) == 0x000030, "Wrong size on UInterchangeLightActorFactory"); \ + +#define DUMPER7_ASSERTS_IInterchangeMeshPayloadInterface \ +static_assert(alignof(IInterchangeMeshPayloadInterface) == 0x000001, "Wrong alignment on IInterchangeMeshPayloadInterface"); \ +static_assert(sizeof(IInterchangeMeshPayloadInterface) == 0x000001, "Wrong size on IInterchangeMeshPayloadInterface"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneImportAssetFactory \ +static_assert(alignof(UInterchangeSceneImportAssetFactory) == 0x000008, "Wrong alignment on UInterchangeSceneImportAssetFactory"); \ +static_assert(sizeof(UInterchangeSceneImportAssetFactory) == 0x000030, "Wrong size on UInterchangeSceneImportAssetFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeSceneVariantSetsFactory \ +static_assert(alignof(UInterchangeSceneVariantSetsFactory) == 0x000008, "Wrong alignment on UInterchangeSceneVariantSetsFactory"); \ +static_assert(sizeof(UInterchangeSceneVariantSetsFactory) == 0x000038, "Wrong size on UInterchangeSceneVariantSetsFactory"); \ + +#define DUMPER7_ASSERTS_IInterchangeSlicedTexturePayloadInterface \ +static_assert(alignof(IInterchangeSlicedTexturePayloadInterface) == 0x000001, "Wrong alignment on IInterchangeSlicedTexturePayloadInterface"); \ +static_assert(sizeof(IInterchangeSlicedTexturePayloadInterface) == 0x000001, "Wrong size on IInterchangeSlicedTexturePayloadInterface"); \ + +#define DUMPER7_ASSERTS_IInterchangeTextureLightProfilePayloadInterface \ +static_assert(alignof(IInterchangeTextureLightProfilePayloadInterface) == 0x000001, "Wrong alignment on IInterchangeTextureLightProfilePayloadInterface"); \ +static_assert(sizeof(IInterchangeTextureLightProfilePayloadInterface) == 0x000001, "Wrong size on IInterchangeTextureLightProfilePayloadInterface"); \ + +#define DUMPER7_ASSERTS_IInterchangeTexturePayloadInterface \ +static_assert(alignof(IInterchangeTexturePayloadInterface) == 0x000001, "Wrong alignment on IInterchangeTexturePayloadInterface"); \ +static_assert(sizeof(IInterchangeTexturePayloadInterface) == 0x000001, "Wrong size on IInterchangeTexturePayloadInterface"); \ + +#define DUMPER7_ASSERTS_IInterchangeVariantSetPayloadInterface \ +static_assert(alignof(IInterchangeVariantSetPayloadInterface) == 0x000001, "Wrong alignment on IInterchangeVariantSetPayloadInterface"); \ +static_assert(sizeof(IInterchangeVariantSetPayloadInterface) == 0x000001, "Wrong size on IInterchangeVariantSetPayloadInterface"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXRamp4 \ +static_assert(alignof(UMaterialExpressionMaterialXRamp4) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXRamp4"); \ +static_assert(sizeof(UMaterialExpressionMaterialXRamp4) == 0x000180, "Wrong size on UMaterialExpressionMaterialXRamp4"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXRamp4::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, A) == 0x0000D8, "Member 'UMaterialExpressionMaterialXRamp4::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, B) == 0x000100, "Member 'UMaterialExpressionMaterialXRamp4::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, C) == 0x000128, "Member 'UMaterialExpressionMaterialXRamp4::C' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, D) == 0x000150, "Member 'UMaterialExpressionMaterialXRamp4::D' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRamp4, ConstCoordinate) == 0x000178, "Member 'UMaterialExpressionMaterialXRamp4::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeAnimSequenceFactory \ +static_assert(alignof(UInterchangeAnimSequenceFactory) == 0x000008, "Wrong alignment on UInterchangeAnimSequenceFactory"); \ +static_assert(sizeof(UInterchangeAnimSequenceFactory) == 0x000030, "Wrong size on UInterchangeAnimSequenceFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeFbxTranslator \ +static_assert(alignof(UInterchangeFbxTranslator) == 0x000008, "Wrong alignment on UInterchangeFbxTranslator"); \ +static_assert(sizeof(UInterchangeFbxTranslator) == 0x000058, "Wrong size on UInterchangeFbxTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeGLTFTranslator \ +static_assert(alignof(UInterchangeGLTFTranslator) == 0x000008, "Wrong alignment on UInterchangeGLTFTranslator"); \ +static_assert(sizeof(UInterchangeGLTFTranslator) == 0x000278, "Wrong size on UInterchangeGLTFTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialXTranslator \ +static_assert(alignof(UInterchangeMaterialXTranslator) == 0x000008, "Wrong alignment on UInterchangeMaterialXTranslator"); \ +static_assert(sizeof(UInterchangeMaterialXTranslator) == 0x000040, "Wrong size on UInterchangeMaterialXTranslator"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXAppend3Vector \ +static_assert(alignof(UMaterialExpressionMaterialXAppend3Vector) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXAppend3Vector"); \ +static_assert(sizeof(UMaterialExpressionMaterialXAppend3Vector) == 0x000128, "Wrong size on UMaterialExpressionMaterialXAppend3Vector"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend3Vector, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXAppend3Vector::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend3Vector, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXAppend3Vector::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend3Vector, C) == 0x000100, "Member 'UMaterialExpressionMaterialXAppend3Vector::C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXAppend4Vector \ +static_assert(alignof(UMaterialExpressionMaterialXAppend4Vector) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXAppend4Vector"); \ +static_assert(sizeof(UMaterialExpressionMaterialXAppend4Vector) == 0x000150, "Wrong size on UMaterialExpressionMaterialXAppend4Vector"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend4Vector, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXAppend4Vector::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend4Vector, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXAppend4Vector::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend4Vector, C) == 0x000100, "Member 'UMaterialExpressionMaterialXAppend4Vector::C' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXAppend4Vector, D) == 0x000128, "Member 'UMaterialExpressionMaterialXAppend4Vector::D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXBurn \ +static_assert(alignof(UMaterialExpressionMaterialXBurn) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXBurn"); \ +static_assert(sizeof(UMaterialExpressionMaterialXBurn) == 0x000130, "Wrong size on UMaterialExpressionMaterialXBurn"); \ +static_assert(offsetof(UMaterialExpressionMaterialXBurn, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXBurn::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXBurn, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXBurn::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXBurn, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXBurn::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXBurn, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXBurn::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXDifference \ +static_assert(alignof(UMaterialExpressionMaterialXDifference) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXDifference"); \ +static_assert(sizeof(UMaterialExpressionMaterialXDifference) == 0x000130, "Wrong size on UMaterialExpressionMaterialXDifference"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDifference, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXDifference::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDifference, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXDifference::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDifference, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXDifference::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDifference, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXDifference::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXDisjointOver \ +static_assert(alignof(UMaterialExpressionMaterialXDisjointOver) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXDisjointOver"); \ +static_assert(sizeof(UMaterialExpressionMaterialXDisjointOver) == 0x000130, "Wrong size on UMaterialExpressionMaterialXDisjointOver"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDisjointOver, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXDisjointOver::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDisjointOver, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXDisjointOver::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDisjointOver, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXDisjointOver::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDisjointOver, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXDisjointOver::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXDodge \ +static_assert(alignof(UMaterialExpressionMaterialXDodge) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXDodge"); \ +static_assert(sizeof(UMaterialExpressionMaterialXDodge) == 0x000130, "Wrong size on UMaterialExpressionMaterialXDodge"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDodge, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXDodge::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDodge, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXDodge::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDodge, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXDodge::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXDodge, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXDodge::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXFractal3D \ +static_assert(alignof(UMaterialExpressionMaterialXFractal3D) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXFractal3D"); \ +static_assert(sizeof(UMaterialExpressionMaterialXFractal3D) == 0x0001A8, "Wrong size on UMaterialExpressionMaterialXFractal3D"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Position) == 0x0000B0, "Member 'UMaterialExpressionMaterialXFractal3D::Position' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Amplitude) == 0x0000D8, "Member 'UMaterialExpressionMaterialXFractal3D::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, ConstAmplitude) == 0x000100, "Member 'UMaterialExpressionMaterialXFractal3D::ConstAmplitude' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Octaves) == 0x000108, "Member 'UMaterialExpressionMaterialXFractal3D::Octaves' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, ConstOctaves) == 0x000130, "Member 'UMaterialExpressionMaterialXFractal3D::ConstOctaves' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Lacunarity) == 0x000138, "Member 'UMaterialExpressionMaterialXFractal3D::Lacunarity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, ConstLacunarity) == 0x000160, "Member 'UMaterialExpressionMaterialXFractal3D::ConstLacunarity' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Diminish) == 0x000168, "Member 'UMaterialExpressionMaterialXFractal3D::Diminish' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, ConstDiminish) == 0x000190, "Member 'UMaterialExpressionMaterialXFractal3D::ConstDiminish' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Scale) == 0x000194, "Member 'UMaterialExpressionMaterialXFractal3D::Scale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, bTurbulence) == 0x000198, "Member 'UMaterialExpressionMaterialXFractal3D::bTurbulence' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, Levels) == 0x00019C, "Member 'UMaterialExpressionMaterialXFractal3D::Levels' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, OutputMin) == 0x0001A0, "Member 'UMaterialExpressionMaterialXFractal3D::OutputMin' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXFractal3D, OutputMax) == 0x0001A4, "Member 'UMaterialExpressionMaterialXFractal3D::OutputMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXIn \ +static_assert(alignof(UMaterialExpressionMaterialXIn) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXIn"); \ +static_assert(sizeof(UMaterialExpressionMaterialXIn) == 0x000130, "Wrong size on UMaterialExpressionMaterialXIn"); \ +static_assert(offsetof(UMaterialExpressionMaterialXIn, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXIn::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXIn, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXIn::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXIn, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXIn::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXIn, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXIn::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXLuminance \ +static_assert(alignof(UMaterialExpressionMaterialXLuminance) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXLuminance"); \ +static_assert(sizeof(UMaterialExpressionMaterialXLuminance) == 0x0000F0, "Wrong size on UMaterialExpressionMaterialXLuminance"); \ +static_assert(offsetof(UMaterialExpressionMaterialXLuminance, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXLuminance::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXLuminance, LuminanceFactors) == 0x0000D8, "Member 'UMaterialExpressionMaterialXLuminance::LuminanceFactors' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXLuminance, LuminanceMode) == 0x0000E8, "Member 'UMaterialExpressionMaterialXLuminance::LuminanceMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXMask \ +static_assert(alignof(UMaterialExpressionMaterialXMask) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXMask"); \ +static_assert(sizeof(UMaterialExpressionMaterialXMask) == 0x000130, "Wrong size on UMaterialExpressionMaterialXMask"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMask, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXMask::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMask, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXMask::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMask, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXMask::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMask, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXMask::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXMatte \ +static_assert(alignof(UMaterialExpressionMaterialXMatte) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXMatte"); \ +static_assert(sizeof(UMaterialExpressionMaterialXMatte) == 0x000130, "Wrong size on UMaterialExpressionMaterialXMatte"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMatte, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXMatte::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMatte, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXMatte::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMatte, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXMatte::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMatte, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXMatte::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXMinus \ +static_assert(alignof(UMaterialExpressionMaterialXMinus) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXMinus"); \ +static_assert(sizeof(UMaterialExpressionMaterialXMinus) == 0x000130, "Wrong size on UMaterialExpressionMaterialXMinus"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMinus, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXMinus::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMinus, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXMinus::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMinus, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXMinus::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXMinus, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXMinus::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXOut \ +static_assert(alignof(UMaterialExpressionMaterialXOut) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXOut"); \ +static_assert(sizeof(UMaterialExpressionMaterialXOut) == 0x000130, "Wrong size on UMaterialExpressionMaterialXOut"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOut, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXOut::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOut, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXOut::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOut, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXOut::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOut, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXOut::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXOver \ +static_assert(alignof(UMaterialExpressionMaterialXOver) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXOver"); \ +static_assert(sizeof(UMaterialExpressionMaterialXOver) == 0x000130, "Wrong size on UMaterialExpressionMaterialXOver"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOver, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXOver::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOver, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXOver::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOver, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXOver::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOver, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXOver::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXOverlay \ +static_assert(alignof(UMaterialExpressionMaterialXOverlay) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXOverlay"); \ +static_assert(sizeof(UMaterialExpressionMaterialXOverlay) == 0x000130, "Wrong size on UMaterialExpressionMaterialXOverlay"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOverlay, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXOverlay::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOverlay, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXOverlay::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOverlay, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXOverlay::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXOverlay, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXOverlay::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXPlace2D \ +static_assert(alignof(UMaterialExpressionMaterialXPlace2D) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXPlace2D"); \ +static_assert(sizeof(UMaterialExpressionMaterialXPlace2D) == 0x000180, "Wrong size on UMaterialExpressionMaterialXPlace2D"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXPlace2D::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, Pivot) == 0x0000D8, "Member 'UMaterialExpressionMaterialXPlace2D::Pivot' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, Scale) == 0x000100, "Member 'UMaterialExpressionMaterialXPlace2D::Scale' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, Offset) == 0x000128, "Member 'UMaterialExpressionMaterialXPlace2D::Offset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, RotationAngle) == 0x000150, "Member 'UMaterialExpressionMaterialXPlace2D::RotationAngle' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, ConstRotationAngle) == 0x000178, "Member 'UMaterialExpressionMaterialXPlace2D::ConstRotationAngle' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlace2D, ConstCoordinate) == 0x00017C, "Member 'UMaterialExpressionMaterialXPlace2D::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXPlus \ +static_assert(alignof(UMaterialExpressionMaterialXPlus) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXPlus"); \ +static_assert(sizeof(UMaterialExpressionMaterialXPlus) == 0x000130, "Wrong size on UMaterialExpressionMaterialXPlus"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlus, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXPlus::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlus, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXPlus::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlus, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXPlus::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPlus, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXPlus::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXPremult \ +static_assert(alignof(UMaterialExpressionMaterialXPremult) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXPremult"); \ +static_assert(sizeof(UMaterialExpressionMaterialXPremult) == 0x0000D8, "Wrong size on UMaterialExpressionMaterialXPremult"); \ +static_assert(offsetof(UMaterialExpressionMaterialXPremult, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXPremult::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXRampLeftRight \ +static_assert(alignof(UMaterialExpressionMaterialXRampLeftRight) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXRampLeftRight"); \ +static_assert(sizeof(UMaterialExpressionMaterialXRampLeftRight) == 0x000130, "Wrong size on UMaterialExpressionMaterialXRampLeftRight"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampLeftRight, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXRampLeftRight::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampLeftRight, A) == 0x0000D8, "Member 'UMaterialExpressionMaterialXRampLeftRight::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampLeftRight, B) == 0x000100, "Member 'UMaterialExpressionMaterialXRampLeftRight::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampLeftRight, ConstCoordinate) == 0x000128, "Member 'UMaterialExpressionMaterialXRampLeftRight::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXRampTopBottom \ +static_assert(alignof(UMaterialExpressionMaterialXRampTopBottom) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXRampTopBottom"); \ +static_assert(sizeof(UMaterialExpressionMaterialXRampTopBottom) == 0x000130, "Wrong size on UMaterialExpressionMaterialXRampTopBottom"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampTopBottom, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXRampTopBottom::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampTopBottom, A) == 0x0000D8, "Member 'UMaterialExpressionMaterialXRampTopBottom::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampTopBottom, B) == 0x000100, "Member 'UMaterialExpressionMaterialXRampTopBottom::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRampTopBottom, ConstCoordinate) == 0x000128, "Member 'UMaterialExpressionMaterialXRampTopBottom::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXRemap \ +static_assert(alignof(UMaterialExpressionMaterialXRemap) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXRemap"); \ +static_assert(sizeof(UMaterialExpressionMaterialXRemap) == 0x000188, "Wrong size on UMaterialExpressionMaterialXRemap"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXRemap::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, InputLow) == 0x0000D8, "Member 'UMaterialExpressionMaterialXRemap::InputLow' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, InputHigh) == 0x000100, "Member 'UMaterialExpressionMaterialXRemap::InputHigh' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, TargetLow) == 0x000128, "Member 'UMaterialExpressionMaterialXRemap::TargetLow' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, TargetHigh) == 0x000150, "Member 'UMaterialExpressionMaterialXRemap::TargetHigh' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, InputLowDefault) == 0x000178, "Member 'UMaterialExpressionMaterialXRemap::InputLowDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, InputHighDefault) == 0x00017C, "Member 'UMaterialExpressionMaterialXRemap::InputHighDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, TargetLowDefault) == 0x000180, "Member 'UMaterialExpressionMaterialXRemap::TargetLowDefault' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRemap, TargetHighDefault) == 0x000184, "Member 'UMaterialExpressionMaterialXRemap::TargetHighDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXRotate2D \ +static_assert(alignof(UMaterialExpressionMaterialXRotate2D) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXRotate2D"); \ +static_assert(sizeof(UMaterialExpressionMaterialXRotate2D) == 0x000108, "Wrong size on UMaterialExpressionMaterialXRotate2D"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRotate2D, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXRotate2D::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRotate2D, RotationAngle) == 0x0000D8, "Member 'UMaterialExpressionMaterialXRotate2D::RotationAngle' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXRotate2D, ConstRotationAngle) == 0x000100, "Member 'UMaterialExpressionMaterialXRotate2D::ConstRotationAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXScreen \ +static_assert(alignof(UMaterialExpressionMaterialXScreen) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXScreen"); \ +static_assert(sizeof(UMaterialExpressionMaterialXScreen) == 0x000130, "Wrong size on UMaterialExpressionMaterialXScreen"); \ +static_assert(offsetof(UMaterialExpressionMaterialXScreen, A) == 0x0000B0, "Member 'UMaterialExpressionMaterialXScreen::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXScreen, B) == 0x0000D8, "Member 'UMaterialExpressionMaterialXScreen::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXScreen, alpha) == 0x000100, "Member 'UMaterialExpressionMaterialXScreen::alpha' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXScreen, ConstAlpha) == 0x000128, "Member 'UMaterialExpressionMaterialXScreen::ConstAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXSplitLeftRight \ +static_assert(alignof(UMaterialExpressionMaterialXSplitLeftRight) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXSplitLeftRight"); \ +static_assert(sizeof(UMaterialExpressionMaterialXSplitLeftRight) == 0x000158, "Wrong size on UMaterialExpressionMaterialXSplitLeftRight"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXSplitLeftRight::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, A) == 0x0000D8, "Member 'UMaterialExpressionMaterialXSplitLeftRight::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, B) == 0x000100, "Member 'UMaterialExpressionMaterialXSplitLeftRight::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, Center) == 0x000128, "Member 'UMaterialExpressionMaterialXSplitLeftRight::Center' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, ConstCenter) == 0x000150, "Member 'UMaterialExpressionMaterialXSplitLeftRight::ConstCenter' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitLeftRight, ConstCoordinate) == 0x000154, "Member 'UMaterialExpressionMaterialXSplitLeftRight::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXSplitTopBottom \ +static_assert(alignof(UMaterialExpressionMaterialXSplitTopBottom) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXSplitTopBottom"); \ +static_assert(sizeof(UMaterialExpressionMaterialXSplitTopBottom) == 0x000158, "Wrong size on UMaterialExpressionMaterialXSplitTopBottom"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, Coordinates) == 0x0000B0, "Member 'UMaterialExpressionMaterialXSplitTopBottom::Coordinates' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, A) == 0x0000D8, "Member 'UMaterialExpressionMaterialXSplitTopBottom::A' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, B) == 0x000100, "Member 'UMaterialExpressionMaterialXSplitTopBottom::B' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, Center) == 0x000128, "Member 'UMaterialExpressionMaterialXSplitTopBottom::Center' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, ConstCenter) == 0x000150, "Member 'UMaterialExpressionMaterialXSplitTopBottom::ConstCenter' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSplitTopBottom, ConstCoordinate) == 0x000154, "Member 'UMaterialExpressionMaterialXSplitTopBottom::ConstCoordinate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXSwizzle \ +static_assert(alignof(UMaterialExpressionMaterialXSwizzle) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXSwizzle"); \ +static_assert(sizeof(UMaterialExpressionMaterialXSwizzle) == 0x0000E8, "Wrong size on UMaterialExpressionMaterialXSwizzle"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSwizzle, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXSwizzle::Input' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXSwizzle, Channels) == 0x0000D8, "Member 'UMaterialExpressionMaterialXSwizzle::Channels' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXTextureSampleParameterBlur \ +static_assert(alignof(UMaterialExpressionMaterialXTextureSampleParameterBlur) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXTextureSampleParameterBlur"); \ +static_assert(sizeof(UMaterialExpressionMaterialXTextureSampleParameterBlur) == 0x000250, "Wrong size on UMaterialExpressionMaterialXTextureSampleParameterBlur"); \ +static_assert(offsetof(UMaterialExpressionMaterialXTextureSampleParameterBlur, KernelSize) == 0x000240, "Member 'UMaterialExpressionMaterialXTextureSampleParameterBlur::KernelSize' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXTextureSampleParameterBlur, FilterSize) == 0x000244, "Member 'UMaterialExpressionMaterialXTextureSampleParameterBlur::FilterSize' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXTextureSampleParameterBlur, FilterOffset) == 0x000248, "Member 'UMaterialExpressionMaterialXTextureSampleParameterBlur::FilterOffset' has a wrong offset!"); \ +static_assert(offsetof(UMaterialExpressionMaterialXTextureSampleParameterBlur, Filter) == 0x00024C, "Member 'UMaterialExpressionMaterialXTextureSampleParameterBlur::Filter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialExpressionMaterialXUnpremult \ +static_assert(alignof(UMaterialExpressionMaterialXUnpremult) == 0x000008, "Wrong alignment on UMaterialExpressionMaterialXUnpremult"); \ +static_assert(sizeof(UMaterialExpressionMaterialXUnpremult) == 0x0000D8, "Wrong size on UMaterialExpressionMaterialXUnpremult"); \ +static_assert(offsetof(UMaterialExpressionMaterialXUnpremult, Input) == 0x0000B0, "Member 'UMaterialExpressionMaterialXUnpremult::Input' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialFactory \ +static_assert(alignof(UInterchangeMaterialFactory) == 0x000008, "Wrong alignment on UInterchangeMaterialFactory"); \ +static_assert(sizeof(UInterchangeMaterialFactory) == 0x000038, "Wrong size on UInterchangeMaterialFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialFunctionFactory \ +static_assert(alignof(UInterchangeMaterialFunctionFactory) == 0x000008, "Wrong alignment on UInterchangeMaterialFunctionFactory"); \ +static_assert(sizeof(UInterchangeMaterialFunctionFactory) == 0x000038, "Wrong size on UInterchangeMaterialFunctionFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeOBJTranslator \ +static_assert(alignof(UInterchangeOBJTranslator) == 0x000008, "Wrong alignment on UInterchangeOBJTranslator"); \ +static_assert(sizeof(UInterchangeOBJTranslator) == 0x000050, "Wrong size on UInterchangeOBJTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangePhysicsAssetFactory \ +static_assert(alignof(UInterchangePhysicsAssetFactory) == 0x000008, "Wrong alignment on UInterchangePhysicsAssetFactory"); \ +static_assert(sizeof(UInterchangePhysicsAssetFactory) == 0x000030, "Wrong size on UInterchangePhysicsAssetFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletalMeshFactory \ +static_assert(alignof(UInterchangeSkeletalMeshFactory) == 0x000008, "Wrong alignment on UInterchangeSkeletalMeshFactory"); \ +static_assert(sizeof(UInterchangeSkeletalMeshFactory) == 0x000060, "Wrong size on UInterchangeSkeletalMeshFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletonFactory \ +static_assert(alignof(UInterchangeSkeletonFactory) == 0x000008, "Wrong alignment on UInterchangeSkeletonFactory"); \ +static_assert(sizeof(UInterchangeSkeletonFactory) == 0x000030, "Wrong size on UInterchangeSkeletonFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeStaticMeshFactory \ +static_assert(alignof(UInterchangeStaticMeshFactory) == 0x000008, "Wrong alignment on UInterchangeStaticMeshFactory"); \ +static_assert(sizeof(UInterchangeStaticMeshFactory) == 0x000048, "Wrong size on UInterchangeStaticMeshFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeCineCameraActorFactory \ +static_assert(alignof(UInterchangeCineCameraActorFactory) == 0x000008, "Wrong alignment on UInterchangeCineCameraActorFactory"); \ +static_assert(sizeof(UInterchangeCineCameraActorFactory) == 0x000030, "Wrong size on UInterchangeCineCameraActorFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeCameraActorFactory \ +static_assert(alignof(UInterchangeCameraActorFactory) == 0x000008, "Wrong alignment on UInterchangeCameraActorFactory"); \ +static_assert(sizeof(UInterchangeCameraActorFactory) == 0x000030, "Wrong size on UInterchangeCameraActorFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeSkeletalMeshActorFactory \ +static_assert(alignof(UInterchangeSkeletalMeshActorFactory) == 0x000008, "Wrong alignment on UInterchangeSkeletalMeshActorFactory"); \ +static_assert(sizeof(UInterchangeSkeletalMeshActorFactory) == 0x000030, "Wrong size on UInterchangeSkeletalMeshActorFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeStaticMeshActorFactory \ +static_assert(alignof(UInterchangeStaticMeshActorFactory) == 0x000008, "Wrong alignment on UInterchangeStaticMeshActorFactory"); \ +static_assert(sizeof(UInterchangeStaticMeshActorFactory) == 0x000030, "Wrong size on UInterchangeStaticMeshActorFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeDDSTranslator \ +static_assert(alignof(UInterchangeDDSTranslator) == 0x000008, "Wrong alignment on UInterchangeDDSTranslator"); \ +static_assert(sizeof(UInterchangeDDSTranslator) == 0x000048, "Wrong size on UInterchangeDDSTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeIESTranslator \ +static_assert(alignof(UInterchangeIESTranslator) == 0x000008, "Wrong alignment on UInterchangeIESTranslator"); \ +static_assert(sizeof(UInterchangeIESTranslator) == 0x000040, "Wrong size on UInterchangeIESTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeImageWrapperTranslator \ +static_assert(alignof(UInterchangeImageWrapperTranslator) == 0x000008, "Wrong alignment on UInterchangeImageWrapperTranslator"); \ +static_assert(sizeof(UInterchangeImageWrapperTranslator) == 0x000048, "Wrong size on UInterchangeImageWrapperTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeJPGTranslator \ +static_assert(alignof(UInterchangeJPGTranslator) == 0x000008, "Wrong alignment on UInterchangeJPGTranslator"); \ +static_assert(sizeof(UInterchangeJPGTranslator) == 0x000040, "Wrong size on UInterchangeJPGTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangePCXTranslator \ +static_assert(alignof(UInterchangePCXTranslator) == 0x000008, "Wrong alignment on UInterchangePCXTranslator"); \ +static_assert(sizeof(UInterchangePCXTranslator) == 0x000040, "Wrong size on UInterchangePCXTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangePSDTranslator \ +static_assert(alignof(UInterchangePSDTranslator) == 0x000008, "Wrong alignment on UInterchangePSDTranslator"); \ +static_assert(sizeof(UInterchangePSDTranslator) == 0x000040, "Wrong size on UInterchangePSDTranslator"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureFactory \ +static_assert(alignof(UInterchangeTextureFactory) == 0x000008, "Wrong alignment on UInterchangeTextureFactory"); \ +static_assert(sizeof(UInterchangeTextureFactory) == 0x0000C0, "Wrong size on UInterchangeTextureFactory"); \ + +#define DUMPER7_ASSERTS_UInterchangeTextureWriter \ +static_assert(alignof(UInterchangeTextureWriter) == 0x000008, "Wrong alignment on UInterchangeTextureWriter"); \ +static_assert(sizeof(UInterchangeTextureWriter) == 0x000028, "Wrong size on UInterchangeTextureWriter"); \ + +#define DUMPER7_ASSERTS_FInterchangeLodSceneNodeContainer \ +static_assert(alignof(FInterchangeLodSceneNodeContainer) == 0x000008, "Wrong alignment on FInterchangeLodSceneNodeContainer"); \ +static_assert(sizeof(FInterchangeLodSceneNodeContainer) == 0x000010, "Wrong size on FInterchangeLodSceneNodeContainer"); \ +static_assert(offsetof(FInterchangeLodSceneNodeContainer, SceneNodes) == 0x000000, "Member 'FInterchangeLodSceneNodeContainer::SceneNodes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeMeshInstance \ +static_assert(alignof(FInterchangeMeshInstance) == 0x000008, "Wrong alignment on FInterchangeMeshInstance"); \ +static_assert(sizeof(FInterchangeMeshInstance) == 0x000080, "Wrong size on FInterchangeMeshInstance"); \ +static_assert(offsetof(FInterchangeMeshInstance, MeshInstanceUid) == 0x000000, "Member 'FInterchangeMeshInstance::MeshInstanceUid' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, LodGroupNode) == 0x000010, "Member 'FInterchangeMeshInstance::LodGroupNode' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, bReferenceSkinnedMesh) == 0x000018, "Member 'FInterchangeMeshInstance::bReferenceSkinnedMesh' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, bReferenceMorphTarget) == 0x000019, "Member 'FInterchangeMeshInstance::bReferenceMorphTarget' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, bHasMorphTargets) == 0x00001A, "Member 'FInterchangeMeshInstance::bHasMorphTargets' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, SceneNodePerLodIndex) == 0x000020, "Member 'FInterchangeMeshInstance::SceneNodePerLodIndex' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshInstance, ReferencingMeshGeometryUids) == 0x000070, "Member 'FInterchangeMeshInstance::ReferencingMeshGeometryUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeMeshGeometry \ +static_assert(alignof(FInterchangeMeshGeometry) == 0x000008, "Wrong alignment on FInterchangeMeshGeometry"); \ +static_assert(sizeof(FInterchangeMeshGeometry) == 0x000038, "Wrong size on FInterchangeMeshGeometry"); \ +static_assert(offsetof(FInterchangeMeshGeometry, MeshUid) == 0x000000, "Member 'FInterchangeMeshGeometry::MeshUid' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshGeometry, MeshNode) == 0x000010, "Member 'FInterchangeMeshGeometry::MeshNode' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshGeometry, ReferencingMeshInstanceUids) == 0x000018, "Member 'FInterchangeMeshGeometry::ReferencingMeshInstanceUids' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeMeshGeometry, AttachedSocketUids) == 0x000028, "Member 'FInterchangeMeshGeometry::AttachedSocketUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangePipelineMeshesUtilitiesContext \ +static_assert(alignof(FInterchangePipelineMeshesUtilitiesContext) == 0x000001, "Wrong alignment on FInterchangePipelineMeshesUtilitiesContext"); \ +static_assert(sizeof(FInterchangePipelineMeshesUtilitiesContext) == 0x000005, "Wrong size on FInterchangePipelineMeshesUtilitiesContext"); \ +static_assert(offsetof(FInterchangePipelineMeshesUtilitiesContext, bConvertStaticMeshToSkeletalMesh) == 0x000000, "Member 'FInterchangePipelineMeshesUtilitiesContext::bConvertStaticMeshToSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelineMeshesUtilitiesContext, bConvertSkeletalMeshToStaticMesh) == 0x000001, "Member 'FInterchangePipelineMeshesUtilitiesContext::bConvertSkeletalMeshToStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelineMeshesUtilitiesContext, bConvertStaticsWithMorphTargetsToSkeletals) == 0x000002, "Member 'FInterchangePipelineMeshesUtilitiesContext::bConvertStaticsWithMorphTargetsToSkeletals' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelineMeshesUtilitiesContext, bImportMeshesInBoneHierarchy) == 0x000003, "Member 'FInterchangePipelineMeshesUtilitiesContext::bImportMeshesInBoneHierarchy' has a wrong offset!"); \ +static_assert(offsetof(FInterchangePipelineMeshesUtilitiesContext, bQueryGeometryOnlyIfNoInstance) == 0x000004, "Member 'FInterchangePipelineMeshesUtilitiesContext::bQueryGeometryOnlyIfNoInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericCommonMeshesProperties \ +static_assert(alignof(UInterchangeGenericCommonMeshesProperties) == 0x000008, "Wrong alignment on UInterchangeGenericCommonMeshesProperties"); \ +static_assert(sizeof(UInterchangeGenericCommonMeshesProperties) == 0x0000F8, "Wrong size on UInterchangeGenericCommonMeshesProperties"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, ForceAllMeshAsType) == 0x0000E8, "Member 'UInterchangeGenericCommonMeshesProperties::ForceAllMeshAsType' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bImportLods) == 0x0000E9, "Member 'UInterchangeGenericCommonMeshesProperties::bImportLods' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bBakeMeshes) == 0x0000EA, "Member 'UInterchangeGenericCommonMeshesProperties::bBakeMeshes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, VertexColorImportOption) == 0x0000EB, "Member 'UInterchangeGenericCommonMeshesProperties::VertexColorImportOption' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, VertexOverrideColor) == 0x0000EC, "Member 'UInterchangeGenericCommonMeshesProperties::VertexOverrideColor' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bRecomputeNormals) == 0x0000F0, "Member 'UInterchangeGenericCommonMeshesProperties::bRecomputeNormals' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bRecomputeTangents) == 0x0000F1, "Member 'UInterchangeGenericCommonMeshesProperties::bRecomputeTangents' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bUseMikkTSpace) == 0x0000F2, "Member 'UInterchangeGenericCommonMeshesProperties::bUseMikkTSpace' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bComputeWeightedNormals) == 0x0000F3, "Member 'UInterchangeGenericCommonMeshesProperties::bComputeWeightedNormals' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bUseHighPrecisionTangentBasis) == 0x0000F4, "Member 'UInterchangeGenericCommonMeshesProperties::bUseHighPrecisionTangentBasis' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bUseFullPrecisionUVs) == 0x0000F5, "Member 'UInterchangeGenericCommonMeshesProperties::bUseFullPrecisionUVs' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bUseBackwardsCompatibleF16TruncUVs) == 0x0000F6, "Member 'UInterchangeGenericCommonMeshesProperties::bUseBackwardsCompatibleF16TruncUVs' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonMeshesProperties, bRemoveDegenerates) == 0x0000F7, "Member 'UInterchangeGenericCommonMeshesProperties::bRemoveDegenerates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties \ +static_assert(alignof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties) == 0x000008, "Wrong alignment on UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties"); \ +static_assert(sizeof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties) == 0x0000F8, "Wrong size on UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties"); \ +static_assert(offsetof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties, bImportOnlyAnimations) == 0x0000E8, "Member 'UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties::bImportOnlyAnimations' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties, Skeleton) == 0x0000EC, "Member 'UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties, bImportMeshesInBoneHierarchy) == 0x0000F4, "Member 'UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties::bImportMeshesInBoneHierarchy' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties, bUseT0AsRefPose) == 0x0000F5, "Member 'UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties::bUseT0AsRefPose' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties, bConvertStaticsWithMorphTargetsToSkeletals) == 0x0000F6, "Member 'UInterchangeGenericCommonSkeletalMeshesAndAnimationsProperties::bConvertStaticsWithMorphTargetsToSkeletals' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGLTFPipelineSettings \ +static_assert(alignof(UGLTFPipelineSettings) == 0x000008, "Wrong alignment on UGLTFPipelineSettings"); \ +static_assert(sizeof(UGLTFPipelineSettings) == 0x000090, "Wrong size on UGLTFPipelineSettings"); \ +static_assert(offsetof(UGLTFPipelineSettings, MaterialParents) == 0x000038, "Member 'UGLTFPipelineSettings::MaterialParents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGLTFPipeline \ +static_assert(alignof(UInterchangeGLTFPipeline) == 0x000008, "Wrong alignment on UInterchangeGLTFPipeline"); \ +static_assert(sizeof(UInterchangeGLTFPipeline) == 0x0000F8, "Wrong size on UInterchangeGLTFPipeline"); \ +static_assert(offsetof(UInterchangeGLTFPipeline, bUseGLTFMaterialInstanceLibrary) == 0x0000F0, "Member 'UInterchangeGLTFPipeline::bUseGLTFMaterialInstanceLibrary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMaterialXPipelineSettings \ +static_assert(alignof(UMaterialXPipelineSettings) == 0x000008, "Wrong alignment on UMaterialXPipelineSettings"); \ +static_assert(sizeof(UMaterialXPipelineSettings) == 0x000088, "Wrong size on UMaterialXPipelineSettings"); \ +static_assert(offsetof(UMaterialXPipelineSettings, PredefinedSurfaceShaders) == 0x000038, "Member 'UMaterialXPipelineSettings::PredefinedSurfaceShaders' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeMaterialXPipeline \ +static_assert(alignof(UInterchangeMaterialXPipeline) == 0x000008, "Wrong alignment on UInterchangeMaterialXPipeline"); \ +static_assert(sizeof(UInterchangeMaterialXPipeline) == 0x0000F0, "Wrong size on UInterchangeMaterialXPipeline"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericAnimationPipeline \ +static_assert(alignof(UInterchangeGenericAnimationPipeline) == 0x000008, "Wrong alignment on UInterchangeGenericAnimationPipeline"); \ +static_assert(sizeof(UInterchangeGenericAnimationPipeline) == 0x000158, "Wrong size on UInterchangeGenericAnimationPipeline"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, CommonSkeletalMeshesAndAnimationsProperties) == 0x0000E8, "Member 'UInterchangeGenericAnimationPipeline::CommonSkeletalMeshesAndAnimationsProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, CommonMeshesProperties) == 0x0000F0, "Member 'UInterchangeGenericAnimationPipeline::CommonMeshesProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bImportAnimations) == 0x0000F8, "Member 'UInterchangeGenericAnimationPipeline::bImportAnimations' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bImportBoneTracks) == 0x0000F9, "Member 'UInterchangeGenericAnimationPipeline::bImportBoneTracks' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, AnimationRange) == 0x0000FA, "Member 'UInterchangeGenericAnimationPipeline::AnimationRange' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, FrameImportRange) == 0x0000FC, "Member 'UInterchangeGenericAnimationPipeline::FrameImportRange' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bUse30HzToBakeBoneAnimation) == 0x000104, "Member 'UInterchangeGenericAnimationPipeline::bUse30HzToBakeBoneAnimation' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, CustomBoneAnimationSampleRate) == 0x000108, "Member 'UInterchangeGenericAnimationPipeline::CustomBoneAnimationSampleRate' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bSnapToClosestFrameBoundary) == 0x00010C, "Member 'UInterchangeGenericAnimationPipeline::bSnapToClosestFrameBoundary' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bImportCustomAttribute) == 0x00010D, "Member 'UInterchangeGenericAnimationPipeline::bImportCustomAttribute' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bAddCurveMetadataToSkeleton) == 0x00010E, "Member 'UInterchangeGenericAnimationPipeline::bAddCurveMetadataToSkeleton' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bSetMaterialDriveParameterOnCustomAttribute) == 0x00010F, "Member 'UInterchangeGenericAnimationPipeline::bSetMaterialDriveParameterOnCustomAttribute' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, MaterialCurveSuffixes) == 0x000110, "Member 'UInterchangeGenericAnimationPipeline::MaterialCurveSuffixes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bRemoveCurveRedundantKeys) == 0x000120, "Member 'UInterchangeGenericAnimationPipeline::bRemoveCurveRedundantKeys' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bDoNotImportCurveWithZero) == 0x000121, "Member 'UInterchangeGenericAnimationPipeline::bDoNotImportCurveWithZero' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bDeleteExistingNonCurveCustomAttributes) == 0x000122, "Member 'UInterchangeGenericAnimationPipeline::bDeleteExistingNonCurveCustomAttributes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bDeleteExistingCustomAttributeCurves) == 0x000123, "Member 'UInterchangeGenericAnimationPipeline::bDeleteExistingCustomAttributeCurves' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bDeleteExistingMorphTargetCurves) == 0x000124, "Member 'UInterchangeGenericAnimationPipeline::bDeleteExistingMorphTargetCurves' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, SourceAnimationName) == 0x000128, "Member 'UInterchangeGenericAnimationPipeline::SourceAnimationName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAnimationPipeline, bSceneImport) == 0x000138, "Member 'UInterchangeGenericAnimationPipeline::bSceneImport' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericAssetsPipeline \ +static_assert(alignof(UInterchangeGenericAssetsPipeline) == 0x000008, "Wrong alignment on UInterchangeGenericAssetsPipeline"); \ +static_assert(sizeof(UInterchangeGenericAssetsPipeline) == 0x000178, "Wrong size on UInterchangeGenericAssetsPipeline"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, ReimportStrategy) == 0x0000E8, "Member 'UInterchangeGenericAssetsPipeline::ReimportStrategy' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, bUseSourceNameForAsset) == 0x0000E9, "Member 'UInterchangeGenericAssetsPipeline::bUseSourceNameForAsset' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, AssetName) == 0x0000F0, "Member 'UInterchangeGenericAssetsPipeline::AssetName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, ImportOffsetTranslation) == 0x000100, "Member 'UInterchangeGenericAssetsPipeline::ImportOffsetTranslation' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, ImportOffsetRotation) == 0x000118, "Member 'UInterchangeGenericAssetsPipeline::ImportOffsetRotation' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, ImportOffsetUniformScale) == 0x000130, "Member 'UInterchangeGenericAssetsPipeline::ImportOffsetUniformScale' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, CommonMeshesProperties) == 0x000138, "Member 'UInterchangeGenericAssetsPipeline::CommonMeshesProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, CommonSkeletalMeshesAndAnimationsProperties) == 0x000140, "Member 'UInterchangeGenericAssetsPipeline::CommonSkeletalMeshesAndAnimationsProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, MeshPipeline) == 0x000148, "Member 'UInterchangeGenericAssetsPipeline::MeshPipeline' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, AnimationPipeline) == 0x000150, "Member 'UInterchangeGenericAssetsPipeline::AnimationPipeline' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericAssetsPipeline, MaterialPipeline) == 0x000158, "Member 'UInterchangeGenericAssetsPipeline::MaterialPipeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericMaterialPipeline \ +static_assert(alignof(UInterchangeGenericMaterialPipeline) == 0x000008, "Wrong alignment on UInterchangeGenericMaterialPipeline"); \ +static_assert(sizeof(UInterchangeGenericMaterialPipeline) == 0x000180, "Wrong size on UInterchangeGenericMaterialPipeline"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, bImportMaterials) == 0x0000E8, "Member 'UInterchangeGenericMaterialPipeline::bImportMaterials' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, AssetName) == 0x0000F0, "Member 'UInterchangeGenericMaterialPipeline::AssetName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, MaterialImport) == 0x000100, "Member 'UInterchangeGenericMaterialPipeline::MaterialImport' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, ParentMaterial) == 0x000108, "Member 'UInterchangeGenericMaterialPipeline::ParentMaterial' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, TexturePipeline) == 0x000128, "Member 'UInterchangeGenericMaterialPipeline::TexturePipeline' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMaterialPipeline, BaseNodeContainer) == 0x000130, "Member 'UInterchangeGenericMaterialPipeline::BaseNodeContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericMeshPipeline \ +static_assert(alignof(UInterchangeGenericMeshPipeline) == 0x000008, "Wrong alignment on UInterchangeGenericMeshPipeline"); \ +static_assert(sizeof(UInterchangeGenericMeshPipeline) == 0x0001B8, "Wrong size on UInterchangeGenericMeshPipeline"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, CommonMeshesProperties) == 0x0000E8, "Member 'UInterchangeGenericMeshPipeline::CommonMeshesProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, CommonSkeletalMeshesAndAnimationsProperties) == 0x0000F0, "Member 'UInterchangeGenericMeshPipeline::CommonSkeletalMeshesAndAnimationsProperties' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bImportStaticMeshes) == 0x0000F8, "Member 'UInterchangeGenericMeshPipeline::bImportStaticMeshes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bCombineStaticMeshes) == 0x0000F9, "Member 'UInterchangeGenericMeshPipeline::bCombineStaticMeshes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, LODGroup) == 0x0000FC, "Member 'UInterchangeGenericMeshPipeline::LODGroup' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bImportCollision) == 0x000104, "Member 'UInterchangeGenericMeshPipeline::bImportCollision' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bImportCollisionAccordingToMeshName) == 0x000105, "Member 'UInterchangeGenericMeshPipeline::bImportCollisionAccordingToMeshName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bOneConvexHullPerUCX) == 0x000106, "Member 'UInterchangeGenericMeshPipeline::bOneConvexHullPerUCX' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bBuildNanite) == 0x000107, "Member 'UInterchangeGenericMeshPipeline::bBuildNanite' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bBuildReversedIndexBuffer) == 0x000108, "Member 'UInterchangeGenericMeshPipeline::bBuildReversedIndexBuffer' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bGenerateLightmapUVs) == 0x000109, "Member 'UInterchangeGenericMeshPipeline::bGenerateLightmapUVs' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bGenerateDistanceFieldAsIfTwoSided) == 0x00010A, "Member 'UInterchangeGenericMeshPipeline::bGenerateDistanceFieldAsIfTwoSided' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bSupportFaceRemap) == 0x00010B, "Member 'UInterchangeGenericMeshPipeline::bSupportFaceRemap' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, MinLightmapResolution) == 0x00010C, "Member 'UInterchangeGenericMeshPipeline::MinLightmapResolution' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, SrcLightmapIndex) == 0x000110, "Member 'UInterchangeGenericMeshPipeline::SrcLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, DstLightmapIndex) == 0x000114, "Member 'UInterchangeGenericMeshPipeline::DstLightmapIndex' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, BuildScale3D) == 0x000118, "Member 'UInterchangeGenericMeshPipeline::BuildScale3D' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, DistanceFieldResolutionScale) == 0x000130, "Member 'UInterchangeGenericMeshPipeline::DistanceFieldResolutionScale' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, DistanceFieldReplacementMesh) == 0x000134, "Member 'UInterchangeGenericMeshPipeline::DistanceFieldReplacementMesh' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, MaxLumenMeshCards) == 0x00013C, "Member 'UInterchangeGenericMeshPipeline::MaxLumenMeshCards' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bImportSkeletalMeshes) == 0x000140, "Member 'UInterchangeGenericMeshPipeline::bImportSkeletalMeshes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, SkeletalMeshImportContentType) == 0x000141, "Member 'UInterchangeGenericMeshPipeline::SkeletalMeshImportContentType' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, LastSkeletalMeshImportContentType) == 0x000142, "Member 'UInterchangeGenericMeshPipeline::LastSkeletalMeshImportContentType' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bCombineSkeletalMeshes) == 0x000143, "Member 'UInterchangeGenericMeshPipeline::bCombineSkeletalMeshes' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bImportMorphTargets) == 0x000144, "Member 'UInterchangeGenericMeshPipeline::bImportMorphTargets' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bUpdateSkeletonReferencePose) == 0x000145, "Member 'UInterchangeGenericMeshPipeline::bUpdateSkeletonReferencePose' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bCreatePhysicsAsset) == 0x000146, "Member 'UInterchangeGenericMeshPipeline::bCreatePhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, PhysicsAsset) == 0x000148, "Member 'UInterchangeGenericMeshPipeline::PhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, bUseHighPrecisionSkinWeights) == 0x000150, "Member 'UInterchangeGenericMeshPipeline::bUseHighPrecisionSkinWeights' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, ThresholdPosition) == 0x000154, "Member 'UInterchangeGenericMeshPipeline::ThresholdPosition' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, ThresholdTangentNormal) == 0x000158, "Member 'UInterchangeGenericMeshPipeline::ThresholdTangentNormal' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, ThresholdUV) == 0x00015C, "Member 'UInterchangeGenericMeshPipeline::ThresholdUV' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, MorphThresholdPosition) == 0x000160, "Member 'UInterchangeGenericMeshPipeline::MorphThresholdPosition' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericMeshPipeline, BoneInfluenceLimit) == 0x000164, "Member 'UInterchangeGenericMeshPipeline::BoneInfluenceLimit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericLevelPipeline \ +static_assert(alignof(UInterchangeGenericLevelPipeline) == 0x000008, "Wrong alignment on UInterchangeGenericLevelPipeline"); \ +static_assert(sizeof(UInterchangeGenericLevelPipeline) == 0x0000F8, "Wrong size on UInterchangeGenericLevelPipeline"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, ReimportPropertyStrategy) == 0x0000E8, "Member 'UInterchangeGenericLevelPipeline::ReimportPropertyStrategy' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, bDeleteMissingActors) == 0x0000E9, "Member 'UInterchangeGenericLevelPipeline::bDeleteMissingActors' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, bForceReimportDeletedActors) == 0x0000EA, "Member 'UInterchangeGenericLevelPipeline::bForceReimportDeletedActors' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, bForceReimportDeletedAssets) == 0x0000EB, "Member 'UInterchangeGenericLevelPipeline::bForceReimportDeletedAssets' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, bDeleteMissingAssets) == 0x0000EC, "Member 'UInterchangeGenericLevelPipeline::bDeleteMissingAssets' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericLevelPipeline, bUsePhysicalInsteadOfStandardPerspectiveCamera) == 0x0000ED, "Member 'UInterchangeGenericLevelPipeline::bUsePhysicalInsteadOfStandardPerspectiveCamera' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangeGenericTexturePipeline \ +static_assert(alignof(UInterchangeGenericTexturePipeline) == 0x000008, "Wrong alignment on UInterchangeGenericTexturePipeline"); \ +static_assert(sizeof(UInterchangeGenericTexturePipeline) == 0x000140, "Wrong size on UInterchangeGenericTexturePipeline"); \ +static_assert(offsetof(UInterchangeGenericTexturePipeline, bImportTextures) == 0x0000E8, "Member 'UInterchangeGenericTexturePipeline::bImportTextures' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericTexturePipeline, AssetName) == 0x0000F0, "Member 'UInterchangeGenericTexturePipeline::AssetName' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericTexturePipeline, bAllowNonPowerOfTwo) == 0x000100, "Member 'UInterchangeGenericTexturePipeline::bAllowNonPowerOfTwo' has a wrong offset!"); \ +static_assert(offsetof(UInterchangeGenericTexturePipeline, BaseNodeContainer) == 0x000108, "Member 'UInterchangeGenericTexturePipeline::BaseNodeContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities \ +static_assert(alignof(InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities, BaseNodeContainer) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities::BaseNodeContainer' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities, ReturnValue) == 0x000008, "Member 'InterchangePipelineMeshesUtilities_CreateInterchangePipelineMeshesUtilities::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllMeshGeometry \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllMeshGeometry) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllMeshGeometry"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllMeshGeometry) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllMeshGeometry"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllMeshGeometry, MeshGeometryUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllMeshGeometry::MeshGeometryUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced, MeshGeometryUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllMeshGeometryNotInstanced::MeshGeometryUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids, MeshInstanceUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllMeshInstanceUids::MeshInstanceUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid) == 0x000020, "Wrong size on InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid, MeshGeometryUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid::MeshGeometryUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid, MeshInstanceUids) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_GetAllMeshInstanceUidsUsingMeshGeometryUid::MeshInstanceUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry, MeshGeometryUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllSkinnedMeshGeometry::MeshGeometryUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance, MeshInstanceUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllSkinnedMeshInstance::MeshInstanceUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry, MeshGeometryUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllStaticMeshGeometry::MeshGeometryUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance) == 0x000010, "Wrong size on InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance, MeshInstanceUids) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetAllStaticMeshInstance::MeshInstanceUids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetMeshGeometryByUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetMeshGeometryByUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetMeshGeometryByUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetMeshGeometryByUid) == 0x000048, "Wrong size on InterchangePipelineMeshesUtilities_GetMeshGeometryByUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshGeometryByUid, MeshGeometryUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetMeshGeometryByUid::MeshGeometryUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshGeometryByUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_GetMeshGeometryByUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid) == 0x000020, "Wrong size on InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid, MeshGeometryUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid::MeshGeometryUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_GetMeshGeometrySkeletonRootUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetMeshInstanceByUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetMeshInstanceByUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetMeshInstanceByUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetMeshInstanceByUid) == 0x000090, "Wrong size on InterchangePipelineMeshesUtilities_GetMeshInstanceByUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshInstanceByUid, MeshInstanceUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetMeshInstanceByUid::MeshInstanceUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshInstanceByUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_GetMeshInstanceByUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid) == 0x000020, "Wrong size on InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid, MeshInstanceUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid::MeshInstanceUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_GetMeshInstanceSkeletonRootUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid) == 0x000018, "Wrong size on InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid, MeshGeometryUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid::MeshGeometryUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_IsValidMeshGeometryUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid \ +static_assert(alignof(InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid) == 0x000008, "Wrong alignment on InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid) == 0x000018, "Wrong size on InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid, MeshInstanceUid) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid::MeshInstanceUid' has a wrong offset!"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid, ReturnValue) == 0x000010, "Member 'InterchangePipelineMeshesUtilities_IsValidMeshInstanceUid::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InterchangePipelineMeshesUtilities_SetContext \ +static_assert(alignof(InterchangePipelineMeshesUtilities_SetContext) == 0x000001, "Wrong alignment on InterchangePipelineMeshesUtilities_SetContext"); \ +static_assert(sizeof(InterchangePipelineMeshesUtilities_SetContext) == 0x000005, "Wrong size on InterchangePipelineMeshesUtilities_SetContext"); \ +static_assert(offsetof(InterchangePipelineMeshesUtilities_SetContext, Context) == 0x000000, "Member 'InterchangePipelineMeshesUtilities_SetContext::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInterchangePipelineMeshesUtilities \ +static_assert(alignof(UInterchangePipelineMeshesUtilities) == 0x000008, "Wrong alignment on UInterchangePipelineMeshesUtilities"); \ +static_assert(sizeof(UInterchangePipelineMeshesUtilities) == 0x000128, "Wrong size on UInterchangePipelineMeshesUtilities"); \ + +#define DUMPER7_ASSERTS_UImgMediaPlaybackComponent \ +static_assert(alignof(UImgMediaPlaybackComponent) == 0x000008, "Wrong alignment on UImgMediaPlaybackComponent"); \ +static_assert(sizeof(UImgMediaPlaybackComponent) == 0x0000C8, "Wrong size on UImgMediaPlaybackComponent"); \ +static_assert(offsetof(UImgMediaPlaybackComponent, LODBias) == 0x0000A0, "Member 'UImgMediaPlaybackComponent::LODBias' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UImgMediaSettings \ +static_assert(alignof(UImgMediaSettings) == 0x000008, "Wrong alignment on UImgMediaSettings"); \ +static_assert(sizeof(UImgMediaSettings) == 0x000068, "Wrong size on UImgMediaSettings"); \ +static_assert(offsetof(UImgMediaSettings, DefaultFrameRate) == 0x000028, "Member 'UImgMediaSettings::DefaultFrameRate' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, BandwidthThrottlingEnabled) == 0x000030, "Member 'UImgMediaSettings::BandwidthThrottlingEnabled' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, CacheBehindPercentage) == 0x000034, "Member 'UImgMediaSettings::CacheBehindPercentage' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, CacheSizeGB) == 0x000038, "Member 'UImgMediaSettings::CacheSizeGB' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, CacheThreads) == 0x00003C, "Member 'UImgMediaSettings::CacheThreads' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, CacheThreadStackSizeKB) == 0x000040, "Member 'UImgMediaSettings::CacheThreadStackSizeKB' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, GlobalCacheSizeGB) == 0x000044, "Member 'UImgMediaSettings::GlobalCacheSizeGB' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, UseGlobalCache) == 0x000048, "Member 'UImgMediaSettings::UseGlobalCache' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, ExrDecoderThreads) == 0x00004C, "Member 'UImgMediaSettings::ExrDecoderThreads' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, DefaultProxy) == 0x000050, "Member 'UImgMediaSettings::DefaultProxy' has a wrong offset!"); \ +static_assert(offsetof(UImgMediaSettings, UseDefaultProxy) == 0x000060, "Member 'UImgMediaSettings::UseDefaultProxy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneMediaPlayerPropertySectionTemplate \ +static_assert(alignof(FMovieSceneMediaPlayerPropertySectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneMediaPlayerPropertySectionTemplate"); \ +static_assert(sizeof(FMovieSceneMediaPlayerPropertySectionTemplate) == 0x000048, "Wrong size on FMovieSceneMediaPlayerPropertySectionTemplate"); \ +static_assert(offsetof(FMovieSceneMediaPlayerPropertySectionTemplate, MediaSource) == 0x000038, "Member 'FMovieSceneMediaPlayerPropertySectionTemplate::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaPlayerPropertySectionTemplate, SectionStartFrame) == 0x000040, "Member 'FMovieSceneMediaPlayerPropertySectionTemplate::SectionStartFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaPlayerPropertySectionTemplate, bLoop) == 0x000044, "Member 'FMovieSceneMediaPlayerPropertySectionTemplate::bLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneMediaSectionParams \ +static_assert(alignof(FMovieSceneMediaSectionParams) == 0x000008, "Wrong alignment on FMovieSceneMediaSectionParams"); \ +static_assert(sizeof(FMovieSceneMediaSectionParams) == 0x000160, "Wrong size on FMovieSceneMediaSectionParams"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaSoundComponent) == 0x000000, "Member 'FMovieSceneMediaSectionParams::MediaSoundComponent' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaSource) == 0x000008, "Member 'FMovieSceneMediaSectionParams::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaSourceProxy) == 0x000010, "Member 'FMovieSceneMediaSectionParams::MediaSourceProxy' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaSourceProxyIndex) == 0x000028, "Member 'FMovieSceneMediaSectionParams::MediaSourceProxyIndex' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaTexture) == 0x000030, "Member 'FMovieSceneMediaSectionParams::MediaTexture' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, MediaPlayer) == 0x000038, "Member 'FMovieSceneMediaSectionParams::MediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, SectionStartFrame) == 0x000040, "Member 'FMovieSceneMediaSectionParams::SectionStartFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, SectionEndFrame) == 0x000044, "Member 'FMovieSceneMediaSectionParams::SectionEndFrame' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, bLooping) == 0x000048, "Member 'FMovieSceneMediaSectionParams::bLooping' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, StartFrameOffset) == 0x00004C, "Member 'FMovieSceneMediaSectionParams::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionParams, ProxyTextureBlend) == 0x000050, "Member 'FMovieSceneMediaSectionParams::ProxyTextureBlend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMovieSceneMediaSectionTemplate \ +static_assert(alignof(FMovieSceneMediaSectionTemplate) == 0x000008, "Wrong alignment on FMovieSceneMediaSectionTemplate"); \ +static_assert(sizeof(FMovieSceneMediaSectionTemplate) == 0x000188, "Wrong size on FMovieSceneMediaSectionTemplate"); \ +static_assert(offsetof(FMovieSceneMediaSectionTemplate, Params) == 0x000020, "Member 'FMovieSceneMediaSectionTemplate::Params' has a wrong offset!"); \ +static_assert(offsetof(FMovieSceneMediaSectionTemplate, MediaSection) == 0x000180, "Member 'FMovieSceneMediaSectionTemplate::MediaSection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMediaPlayerPropertySection \ +static_assert(alignof(UMovieSceneMediaPlayerPropertySection) == 0x000008, "Wrong alignment on UMovieSceneMediaPlayerPropertySection"); \ +static_assert(sizeof(UMovieSceneMediaPlayerPropertySection) == 0x000100, "Wrong size on UMovieSceneMediaPlayerPropertySection"); \ +static_assert(offsetof(UMovieSceneMediaPlayerPropertySection, MediaSource) == 0x0000F0, "Member 'UMovieSceneMediaPlayerPropertySection::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaPlayerPropertySection, bLoop) == 0x0000F8, "Member 'UMovieSceneMediaPlayerPropertySection::bLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMediaPlayerPropertyTrack \ +static_assert(alignof(UMovieSceneMediaPlayerPropertyTrack) == 0x000008, "Wrong alignment on UMovieSceneMediaPlayerPropertyTrack"); \ +static_assert(sizeof(UMovieSceneMediaPlayerPropertyTrack) == 0x0000D0, "Wrong size on UMovieSceneMediaPlayerPropertyTrack"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMediaSection \ +static_assert(alignof(UMovieSceneMediaSection) == 0x000008, "Wrong alignment on UMovieSceneMediaSection"); \ +static_assert(sizeof(UMovieSceneMediaSection) == 0x000250, "Wrong size on UMovieSceneMediaSection"); \ +static_assert(offsetof(UMovieSceneMediaSection, MediaSource) == 0x0000F0, "Member 'UMovieSceneMediaSection::MediaSource' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, MediaSourceProxyIndex) == 0x0000F8, "Member 'UMovieSceneMediaSection::MediaSourceProxyIndex' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, bLooping) == 0x0000FC, "Member 'UMovieSceneMediaSection::bLooping' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, StartFrameOffset) == 0x000100, "Member 'UMovieSceneMediaSection::StartFrameOffset' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, MediaTexture) == 0x000108, "Member 'UMovieSceneMediaSection::MediaTexture' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, MediaSoundComponent) == 0x000110, "Member 'UMovieSceneMediaSection::MediaSoundComponent' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, bUseExternalMediaPlayer) == 0x000118, "Member 'UMovieSceneMediaSection::bUseExternalMediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, ExternalMediaPlayer) == 0x000120, "Member 'UMovieSceneMediaSection::ExternalMediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, CacheSettings) == 0x000128, "Member 'UMovieSceneMediaSection::CacheSettings' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, TextureIndex) == 0x000130, "Member 'UMovieSceneMediaSection::TextureIndex' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, bHasMediaPlayerProxy) == 0x000134, "Member 'UMovieSceneMediaSection::bHasMediaPlayerProxy' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, ChannelCanPlayerBeOpen) == 0x000138, "Member 'UMovieSceneMediaSection::ChannelCanPlayerBeOpen' has a wrong offset!"); \ +static_assert(offsetof(UMovieSceneMediaSection, MediaSourceProxyBindingID) == 0x000238, "Member 'UMovieSceneMediaSection::MediaSourceProxyBindingID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMovieSceneMediaTrack \ +static_assert(alignof(UMovieSceneMediaTrack) == 0x000008, "Wrong alignment on UMovieSceneMediaTrack"); \ +static_assert(sizeof(UMovieSceneMediaTrack) == 0x0000B0, "Wrong size on UMovieSceneMediaTrack"); \ +static_assert(offsetof(UMovieSceneMediaTrack, MediaSections) == 0x0000A0, "Member 'UMovieSceneMediaTrack::MediaSections' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDSK_Informant_C \ +static_assert(alignof(UPD_STS_MDSK_Informant_C) == 0x000008, "Wrong alignment on UPD_STS_MDSK_Informant_C"); \ +static_assert(sizeof(UPD_STS_MDSK_Informant_C) == 0x000058, "Wrong size on UPD_STS_MDSK_Informant_C"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_EventReceived_D9C77C3D434AECD4756344BB5123087B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_EventReceived_F585CEC144FAAB87B4B3DD9BDD40283C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base) == 0x000A18, "Wrong size on GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, EntryPoint) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_8) == 0x000004, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_8) == 0x000010, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_7) == 0x0000D0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_7) == 0x0000D8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_6) == 0x000198, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_6) == 0x0001A0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_5) == 0x000260, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_5) == 0x000268, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, Temp_struct_Variable) == 0x000328, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, Temp_struct_Variable_1) == 0x0003D8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003F0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_4) == 0x000400, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_4) == 0x000408, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_3) == 0x0004B8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_3) == 0x0004C0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000570, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_2) == 0x000580, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_2) == 0x000588, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x000638, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_1) == 0x000648, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_1) == 0x000650, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x000700, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag) == 0x000710, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData) == 0x000718, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x0007C8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, Temp_struct_Variable_2) == 0x0007D8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, Temp_struct_Variable_3) == 0x000888, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x000890, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_WaitDelay_ReturnValue) == 0x0008A0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_IsValid_ReturnValue) == 0x0008A8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetMontage_ReturnValue) == 0x0008B0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0008B8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0008C0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetObjectClass_ReturnValue) == 0x0008C8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_EqualEqual_ClassClass_ReturnValue) == 0x0008D0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_EqualEqual_ClassClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_IsValid_ReturnValue_1) == 0x0008D1, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetActorOfClass_ReturnValue) == 0x0008D8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_CharacterDamaged) == 0x0008E0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_CharacterDamaged' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetMontage_ReturnValue_1) == 0x0008E8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x0008F0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_IsValid_ReturnValue_2) == 0x0008F8, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000900, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000908, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000910, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000928, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetController_ReturnValue) == 0x000930, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventTag_9) == 0x000938, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CustomEvent_EventData_9) == 0x000940, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, CallFunc_GetFacingRotation_ReturnValue) == 0x0009F0, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::CallFunc_GetFacingRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base, K2Node_CreateDelegate_OutputDelegate_11) == 0x000A08, "Member 'GA_Enemy_Taunt_Base_C_ExecuteUbergraph_GA_Enemy_Taunt_Base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_GetFacingRotation \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_GetFacingRotation) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_GetFacingRotation"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_GetFacingRotation) == 0x0000D8, "Wrong size on GA_Enemy_Taunt_Base_C_GetFacingRotation"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, ReturnValue) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000040, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000058, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000060, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000078, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_BreakRotator_Roll) == 0x000090, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_BreakRotator_Pitch) == 0x000094, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_BreakRotator_Yaw) == 0x000098, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_MakeRotator_ReturnValue) == 0x0000A0, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_RInterpTo_ReturnValue) == 0x0000B8, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_GetFacingRotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0000D0, "Member 'GA_Enemy_Taunt_Base_C_GetFacingRotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnBlendOut_D9C77C3D434AECD4756344BB5123087B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnBlendOut_F585CEC144FAAB87B4B3DD9BDD40283C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnCancelled_D9C77C3D434AECD4756344BB5123087B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnCancelled_F585CEC144FAAB87B4B3DD9BDD40283C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnCharacterDamaged \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnCharacterDamaged) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnCharacterDamaged"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnCharacterDamaged) == 0x000008, "Wrong size on GA_Enemy_Taunt_Base_C_OnCharacterDamaged"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCharacterDamaged, CharacterDamaged) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnCharacterDamaged::CharacterDamaged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnCompleted_D9C77C3D434AECD4756344BB5123087B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnCompleted_F585CEC144FAAB87B4B3DD9BDD40283C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnInterrupted_D9C77C3D434AECD4756344BB5123087B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C \ +static_assert(alignof(GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x000008, "Wrong alignment on GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(sizeof(GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C) == 0x0000B8, "Wrong size on GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C, EventTag) == 0x000000, "Member 'GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C, EventData) == 0x000008, "Member 'GA_Enemy_Taunt_Base_C_OnInterrupted_F585CEC144FAAB87B4B3DD9BDD40283C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Taunt_Base_C \ +static_assert(alignof(UGA_Enemy_Taunt_Base_C) == 0x000008, "Wrong alignment on UGA_Enemy_Taunt_Base_C"); \ +static_assert(sizeof(UGA_Enemy_Taunt_Base_C) == 0x000690, "Wrong size on UGA_Enemy_Taunt_Base_C"); \ +static_assert(offsetof(UGA_Enemy_Taunt_Base_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Taunt_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Taunt_Base_C, Ysabella) == 0x000670, "Member 'UGA_Enemy_Taunt_Base_C::Ysabella' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Taunt_Base_C, AimRotation) == 0x000678, "Member 'UGA_Enemy_Taunt_Base_C::AimRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AMediaPlate \ +static_assert(alignof(AMediaPlate) == 0x000008, "Wrong alignment on AMediaPlate"); \ +static_assert(sizeof(AMediaPlate) == 0x0002A8, "Wrong size on AMediaPlate"); \ +static_assert(offsetof(AMediaPlate, MediaPlateComponent) == 0x000298, "Member 'AMediaPlate::MediaPlateComponent' has a wrong offset!"); \ +static_assert(offsetof(AMediaPlate, StaticMeshComponent) == 0x0002A0, "Member 'AMediaPlate::StaticMeshComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaPlateAssetUserData \ +static_assert(alignof(UMediaPlateAssetUserData) == 0x000008, "Wrong alignment on UMediaPlateAssetUserData"); \ +static_assert(sizeof(UMediaPlateAssetUserData) == 0x000038, "Wrong size on UMediaPlateAssetUserData"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetLetterboxAspectRatio \ +static_assert(alignof(MediaPlateComponent_GetLetterboxAspectRatio) == 0x000004, "Wrong alignment on MediaPlateComponent_GetLetterboxAspectRatio"); \ +static_assert(sizeof(MediaPlateComponent_GetLetterboxAspectRatio) == 0x000004, "Wrong size on MediaPlateComponent_GetLetterboxAspectRatio"); \ +static_assert(offsetof(MediaPlateComponent_GetLetterboxAspectRatio, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_GetLetterboxAspectRatio::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetLoop \ +static_assert(alignof(MediaPlateComponent_GetLoop) == 0x000001, "Wrong alignment on MediaPlateComponent_GetLoop"); \ +static_assert(sizeof(MediaPlateComponent_GetLoop) == 0x000001, "Wrong size on MediaPlateComponent_GetLoop"); \ +static_assert(offsetof(MediaPlateComponent_GetLoop, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_GetLoop::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetMediaPlayer \ +static_assert(alignof(MediaPlateComponent_GetMediaPlayer) == 0x000008, "Wrong alignment on MediaPlateComponent_GetMediaPlayer"); \ +static_assert(sizeof(MediaPlateComponent_GetMediaPlayer) == 0x000008, "Wrong size on MediaPlateComponent_GetMediaPlayer"); \ +static_assert(offsetof(MediaPlateComponent_GetMediaPlayer, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_GetMediaPlayer::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetMediaTexture \ +static_assert(alignof(MediaPlateComponent_GetMediaTexture) == 0x000008, "Wrong alignment on MediaPlateComponent_GetMediaTexture"); \ +static_assert(sizeof(MediaPlateComponent_GetMediaTexture) == 0x000010, "Wrong size on MediaPlateComponent_GetMediaTexture"); \ +static_assert(offsetof(MediaPlateComponent_GetMediaTexture, Index_0) == 0x000000, "Member 'MediaPlateComponent_GetMediaTexture::Index_0' has a wrong offset!"); \ +static_assert(offsetof(MediaPlateComponent_GetMediaTexture, ReturnValue) == 0x000008, "Member 'MediaPlateComponent_GetMediaTexture::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_OnMediaOpened \ +static_assert(alignof(MediaPlateComponent_OnMediaOpened) == 0x000008, "Wrong alignment on MediaPlateComponent_OnMediaOpened"); \ +static_assert(sizeof(MediaPlateComponent_OnMediaOpened) == 0x000010, "Wrong size on MediaPlateComponent_OnMediaOpened"); \ +static_assert(offsetof(MediaPlateComponent_OnMediaOpened, DeviceUrl) == 0x000000, "Member 'MediaPlateComponent_OnMediaOpened::DeviceUrl' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_Rewind \ +static_assert(alignof(MediaPlateComponent_Rewind) == 0x000001, "Wrong alignment on MediaPlateComponent_Rewind"); \ +static_assert(sizeof(MediaPlateComponent_Rewind) == 0x000001, "Wrong size on MediaPlateComponent_Rewind"); \ +static_assert(offsetof(MediaPlateComponent_Rewind, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_Rewind::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_Seek \ +static_assert(alignof(MediaPlateComponent_Seek) == 0x000008, "Wrong alignment on MediaPlateComponent_Seek"); \ +static_assert(sizeof(MediaPlateComponent_Seek) == 0x000010, "Wrong size on MediaPlateComponent_Seek"); \ +static_assert(offsetof(MediaPlateComponent_Seek, Time) == 0x000000, "Member 'MediaPlateComponent_Seek::Time' has a wrong offset!"); \ +static_assert(offsetof(MediaPlateComponent_Seek, ReturnValue) == 0x000008, "Member 'MediaPlateComponent_Seek::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_SetIsAspectRatioAuto \ +static_assert(alignof(MediaPlateComponent_SetIsAspectRatioAuto) == 0x000001, "Wrong alignment on MediaPlateComponent_SetIsAspectRatioAuto"); \ +static_assert(sizeof(MediaPlateComponent_SetIsAspectRatioAuto) == 0x000001, "Wrong size on MediaPlateComponent_SetIsAspectRatioAuto"); \ +static_assert(offsetof(MediaPlateComponent_SetIsAspectRatioAuto, bInIsAspectRatioAuto) == 0x000000, "Member 'MediaPlateComponent_SetIsAspectRatioAuto::bInIsAspectRatioAuto' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_SetLetterboxAspectRatio \ +static_assert(alignof(MediaPlateComponent_SetLetterboxAspectRatio) == 0x000004, "Wrong alignment on MediaPlateComponent_SetLetterboxAspectRatio"); \ +static_assert(sizeof(MediaPlateComponent_SetLetterboxAspectRatio) == 0x000004, "Wrong size on MediaPlateComponent_SetLetterboxAspectRatio"); \ +static_assert(offsetof(MediaPlateComponent_SetLetterboxAspectRatio, AspectRatio) == 0x000000, "Member 'MediaPlateComponent_SetLetterboxAspectRatio::AspectRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_SetLoop \ +static_assert(alignof(MediaPlateComponent_SetLoop) == 0x000001, "Wrong alignment on MediaPlateComponent_SetLoop"); \ +static_assert(sizeof(MediaPlateComponent_SetLoop) == 0x000001, "Wrong size on MediaPlateComponent_SetLoop"); \ +static_assert(offsetof(MediaPlateComponent_SetLoop, bInLoop) == 0x000000, "Member 'MediaPlateComponent_SetLoop::bInLoop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_SetMeshRange \ +static_assert(alignof(MediaPlateComponent_SetMeshRange) == 0x000008, "Wrong alignment on MediaPlateComponent_SetMeshRange"); \ +static_assert(sizeof(MediaPlateComponent_SetMeshRange) == 0x000010, "Wrong size on MediaPlateComponent_SetMeshRange"); \ +static_assert(offsetof(MediaPlateComponent_SetMeshRange, InMeshRange) == 0x000000, "Member 'MediaPlateComponent_SetMeshRange::InMeshRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_SetPlayOnlyWhenVisible \ +static_assert(alignof(MediaPlateComponent_SetPlayOnlyWhenVisible) == 0x000001, "Wrong alignment on MediaPlateComponent_SetPlayOnlyWhenVisible"); \ +static_assert(sizeof(MediaPlateComponent_SetPlayOnlyWhenVisible) == 0x000001, "Wrong size on MediaPlateComponent_SetPlayOnlyWhenVisible"); \ +static_assert(offsetof(MediaPlateComponent_SetPlayOnlyWhenVisible, bInPlayOnlyWhenVisible) == 0x000000, "Member 'MediaPlateComponent_SetPlayOnlyWhenVisible::bInPlayOnlyWhenVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetIsAspectRatioAuto \ +static_assert(alignof(MediaPlateComponent_GetIsAspectRatioAuto) == 0x000001, "Wrong alignment on MediaPlateComponent_GetIsAspectRatioAuto"); \ +static_assert(sizeof(MediaPlateComponent_GetIsAspectRatioAuto) == 0x000001, "Wrong size on MediaPlateComponent_GetIsAspectRatioAuto"); \ +static_assert(offsetof(MediaPlateComponent_GetIsAspectRatioAuto, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_GetIsAspectRatioAuto::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_GetMeshRange \ +static_assert(alignof(MediaPlateComponent_GetMeshRange) == 0x000008, "Wrong alignment on MediaPlateComponent_GetMeshRange"); \ +static_assert(sizeof(MediaPlateComponent_GetMeshRange) == 0x000010, "Wrong size on MediaPlateComponent_GetMeshRange"); \ +static_assert(offsetof(MediaPlateComponent_GetMeshRange, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_GetMeshRange::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MediaPlateComponent_IsMediaPlatePlaying \ +static_assert(alignof(MediaPlateComponent_IsMediaPlatePlaying) == 0x000001, "Wrong alignment on MediaPlateComponent_IsMediaPlatePlaying"); \ +static_assert(sizeof(MediaPlateComponent_IsMediaPlatePlaying) == 0x000001, "Wrong size on MediaPlateComponent_IsMediaPlatePlaying"); \ +static_assert(offsetof(MediaPlateComponent_IsMediaPlatePlaying, ReturnValue) == 0x000000, "Member 'MediaPlateComponent_IsMediaPlatePlaying::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMediaPlateComponent \ +static_assert(alignof(UMediaPlateComponent) == 0x000008, "Wrong alignment on UMediaPlateComponent"); \ +static_assert(sizeof(UMediaPlateComponent) == 0x000168, "Wrong size on UMediaPlateComponent"); \ +static_assert(offsetof(UMediaPlateComponent, bPlayOnOpen) == 0x0000A8, "Member 'UMediaPlateComponent::bPlayOnOpen' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bAutoPlay) == 0x0000A9, "Member 'UMediaPlateComponent::bAutoPlay' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bEnableAudio) == 0x0000AA, "Member 'UMediaPlateComponent::bEnableAudio' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, StartTime) == 0x0000AC, "Member 'UMediaPlateComponent::StartTime' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, SoundComponent) == 0x0000B0, "Member 'UMediaPlateComponent::SoundComponent' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, StaticMeshComponent) == 0x0000B8, "Member 'UMediaPlateComponent::StaticMeshComponent' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, Letterboxes) == 0x0000C0, "Member 'UMediaPlateComponent::Letterboxes' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MediaPlaylist) == 0x0000D0, "Member 'UMediaPlateComponent::MediaPlaylist' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, PlaylistIndex) == 0x0000D8, "Member 'UMediaPlateComponent::PlaylistIndex' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, CacheSettings) == 0x0000DC, "Member 'UMediaPlateComponent::CacheSettings' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bIsMediaPlatePlaying) == 0x0000E4, "Member 'UMediaPlateComponent::bIsMediaPlatePlaying' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bPlayOnlyWhenVisible) == 0x0000EC, "Member 'UMediaPlateComponent::bPlayOnlyWhenVisible' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bLoop) == 0x0000ED, "Member 'UMediaPlateComponent::bLoop' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, VisibleMipsTilesCalculations) == 0x0000EE, "Member 'UMediaPlateComponent::VisibleMipsTilesCalculations' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MipMapBias) == 0x0000F0, "Member 'UMediaPlateComponent::MipMapBias' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bIsAspectRatioAuto) == 0x0000F4, "Member 'UMediaPlateComponent::bIsAspectRatioAuto' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, bEnableMipMapUpscaling) == 0x0000F5, "Member 'UMediaPlateComponent::bEnableMipMapUpscaling' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MipLevelToUpscale) == 0x0000F8, "Member 'UMediaPlateComponent::MipLevelToUpscale' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, LetterboxAspectRatio) == 0x0000FC, "Member 'UMediaPlateComponent::LetterboxAspectRatio' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MeshRange) == 0x000108, "Member 'UMediaPlateComponent::MeshRange' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MediaTextures) == 0x000118, "Member 'UMediaPlateComponent::MediaTextures' has a wrong offset!"); \ +static_assert(offsetof(UMediaPlateComponent, MediaPlayer) == 0x000128, "Member 'UMediaPlateComponent::MediaPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTcpMessagingSettings \ +static_assert(alignof(UTcpMessagingSettings) == 0x000008, "Wrong alignment on UTcpMessagingSettings"); \ +static_assert(sizeof(UTcpMessagingSettings) == 0x000060, "Wrong size on UTcpMessagingSettings"); \ +static_assert(offsetof(UTcpMessagingSettings, EnableTransport) == 0x000028, "Member 'UTcpMessagingSettings::EnableTransport' has a wrong offset!"); \ +static_assert(offsetof(UTcpMessagingSettings, ListenEndpoint) == 0x000030, "Member 'UTcpMessagingSettings::ListenEndpoint' has a wrong offset!"); \ +static_assert(offsetof(UTcpMessagingSettings, ConnectToEndpoints) == 0x000040, "Member 'UTcpMessagingSettings::ConnectToEndpoints' has a wrong offset!"); \ +static_assert(offsetof(UTcpMessagingSettings, ConnectionRetryDelay) == 0x000050, "Member 'UTcpMessagingSettings::ConnectionRetryDelay' has a wrong offset!"); \ +static_assert(offsetof(UTcpMessagingSettings, ConnectionRetryPeriod) == 0x000054, "Member 'UTcpMessagingSettings::ConnectionRetryPeriod' has a wrong offset!"); \ +static_assert(offsetof(UTcpMessagingSettings, bStopServiceWhenAppDeactivates) == 0x000058, "Member 'UTcpMessagingSettings::bStopServiceWhenAppDeactivates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorSequenceObjectReference \ +static_assert(alignof(FActorSequenceObjectReference) == 0x000008, "Wrong alignment on FActorSequenceObjectReference"); \ +static_assert(sizeof(FActorSequenceObjectReference) == 0x000028, "Wrong size on FActorSequenceObjectReference"); \ +static_assert(offsetof(FActorSequenceObjectReference, Type) == 0x000000, "Member 'FActorSequenceObjectReference::Type' has a wrong offset!"); \ +static_assert(offsetof(FActorSequenceObjectReference, ActorId) == 0x000004, "Member 'FActorSequenceObjectReference::ActorId' has a wrong offset!"); \ +static_assert(offsetof(FActorSequenceObjectReference, PathToComponent) == 0x000018, "Member 'FActorSequenceObjectReference::PathToComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorSequenceObjectReferences \ +static_assert(alignof(FActorSequenceObjectReferences) == 0x000008, "Wrong alignment on FActorSequenceObjectReferences"); \ +static_assert(sizeof(FActorSequenceObjectReferences) == 0x000010, "Wrong size on FActorSequenceObjectReferences"); \ +static_assert(offsetof(FActorSequenceObjectReferences, Array) == 0x000000, "Member 'FActorSequenceObjectReferences::Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FActorSequenceObjectReferenceMap \ +static_assert(alignof(FActorSequenceObjectReferenceMap) == 0x000008, "Wrong alignment on FActorSequenceObjectReferenceMap"); \ +static_assert(sizeof(FActorSequenceObjectReferenceMap) == 0x000020, "Wrong size on FActorSequenceObjectReferenceMap"); \ +static_assert(offsetof(FActorSequenceObjectReferenceMap, BindingIds) == 0x000000, "Member 'FActorSequenceObjectReferenceMap::BindingIds' has a wrong offset!"); \ +static_assert(offsetof(FActorSequenceObjectReferenceMap, References) == 0x000010, "Member 'FActorSequenceObjectReferenceMap::References' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorSequence \ +static_assert(alignof(UActorSequence) == 0x000008, "Wrong alignment on UActorSequence"); \ +static_assert(sizeof(UActorSequence) == 0x000090, "Wrong size on UActorSequence"); \ +static_assert(offsetof(UActorSequence, MovieScene) == 0x000068, "Member 'UActorSequence::MovieScene' has a wrong offset!"); \ +static_assert(offsetof(UActorSequence, ObjectReferences) == 0x000070, "Member 'UActorSequence::ObjectReferences' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorSequenceComponent \ +static_assert(alignof(UActorSequenceComponent) == 0x000008, "Wrong alignment on UActorSequenceComponent"); \ +static_assert(sizeof(UActorSequenceComponent) == 0x0000D0, "Wrong size on UActorSequenceComponent"); \ +static_assert(offsetof(UActorSequenceComponent, PlaybackSettings) == 0x0000A0, "Member 'UActorSequenceComponent::PlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(UActorSequenceComponent, Sequence) == 0x0000C0, "Member 'UActorSequenceComponent::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UActorSequenceComponent, SequencePlayer) == 0x0000C8, "Member 'UActorSequenceComponent::SequencePlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActorSequencePlayer \ +static_assert(alignof(UActorSequencePlayer) == 0x000008, "Wrong alignment on UActorSequencePlayer"); \ +static_assert(sizeof(UActorSequencePlayer) == 0x0004C8, "Wrong size on UActorSequencePlayer"); \ + +#define DUMPER7_ASSERTS_AArchVisCharacter \ +static_assert(alignof(AArchVisCharacter) == 0x000010, "Wrong alignment on AArchVisCharacter"); \ +static_assert(sizeof(AArchVisCharacter) == 0x0006E0, "Wrong size on AArchVisCharacter"); \ +static_assert(offsetof(AArchVisCharacter, LookUpAxisName) == 0x000678, "Member 'AArchVisCharacter::LookUpAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, LookUpAtRateAxisName) == 0x000688, "Member 'AArchVisCharacter::LookUpAtRateAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, TurnAxisName) == 0x000698, "Member 'AArchVisCharacter::TurnAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, TurnAtRateAxisName) == 0x0006A8, "Member 'AArchVisCharacter::TurnAtRateAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, MoveForwardAxisName) == 0x0006B8, "Member 'AArchVisCharacter::MoveForwardAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, MoveRightAxisName) == 0x0006C8, "Member 'AArchVisCharacter::MoveRightAxisName' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, MouseSensitivityScale_Pitch) == 0x0006D8, "Member 'AArchVisCharacter::MouseSensitivityScale_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AArchVisCharacter, MouseSensitivityScale_Yaw) == 0x0006DC, "Member 'AArchVisCharacter::MouseSensitivityScale_Yaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UArchVisCharMovementComponent \ +static_assert(alignof(UArchVisCharMovementComponent) == 0x000010, "Wrong alignment on UArchVisCharMovementComponent"); \ +static_assert(sizeof(UArchVisCharMovementComponent) == 0x000FE0, "Wrong size on UArchVisCharMovementComponent"); \ +static_assert(offsetof(UArchVisCharMovementComponent, RotationalAcceleration) == 0x000F48, "Member 'UArchVisCharMovementComponent::RotationalAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, RotationalDeceleration) == 0x000F60, "Member 'UArchVisCharMovementComponent::RotationalDeceleration' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, MaxRotationalVelocity) == 0x000F78, "Member 'UArchVisCharMovementComponent::MaxRotationalVelocity' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, MinPitch) == 0x000F90, "Member 'UArchVisCharMovementComponent::MinPitch' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, MaxPitch) == 0x000F94, "Member 'UArchVisCharMovementComponent::MaxPitch' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, WalkingFriction) == 0x000F98, "Member 'UArchVisCharMovementComponent::WalkingFriction' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, WalkingSpeed) == 0x000F9C, "Member 'UArchVisCharMovementComponent::WalkingSpeed' has a wrong offset!"); \ +static_assert(offsetof(UArchVisCharMovementComponent, WalkingAcceleration) == 0x000FA0, "Member 'UArchVisCharMovementComponent::WalkingAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_CollectionExists \ +static_assert(alignof(AssetTagsSubsystem_CollectionExists) == 0x000004, "Wrong alignment on AssetTagsSubsystem_CollectionExists"); \ +static_assert(sizeof(AssetTagsSubsystem_CollectionExists) == 0x00000C, "Wrong size on AssetTagsSubsystem_CollectionExists"); \ +static_assert(offsetof(AssetTagsSubsystem_CollectionExists, Name_0) == 0x000000, "Member 'AssetTagsSubsystem_CollectionExists::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_CollectionExists, ReturnValue) == 0x000008, "Member 'AssetTagsSubsystem_CollectionExists::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_GetAssetsInCollection \ +static_assert(alignof(AssetTagsSubsystem_GetAssetsInCollection) == 0x000008, "Wrong alignment on AssetTagsSubsystem_GetAssetsInCollection"); \ +static_assert(sizeof(AssetTagsSubsystem_GetAssetsInCollection) == 0x000018, "Wrong size on AssetTagsSubsystem_GetAssetsInCollection"); \ +static_assert(offsetof(AssetTagsSubsystem_GetAssetsInCollection, Name_0) == 0x000000, "Member 'AssetTagsSubsystem_GetAssetsInCollection::Name_0' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_GetAssetsInCollection, ReturnValue) == 0x000008, "Member 'AssetTagsSubsystem_GetAssetsInCollection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_GetCollections \ +static_assert(alignof(AssetTagsSubsystem_GetCollections) == 0x000008, "Wrong alignment on AssetTagsSubsystem_GetCollections"); \ +static_assert(sizeof(AssetTagsSubsystem_GetCollections) == 0x000010, "Wrong size on AssetTagsSubsystem_GetCollections"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollections, ReturnValue) == 0x000000, "Member 'AssetTagsSubsystem_GetCollections::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_GetCollectionsContainingAsset \ +static_assert(alignof(AssetTagsSubsystem_GetCollectionsContainingAsset) == 0x000008, "Wrong alignment on AssetTagsSubsystem_GetCollectionsContainingAsset"); \ +static_assert(sizeof(AssetTagsSubsystem_GetCollectionsContainingAsset) == 0x000018, "Wrong size on AssetTagsSubsystem_GetCollectionsContainingAsset"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAsset, AssetPathName) == 0x000000, "Member 'AssetTagsSubsystem_GetCollectionsContainingAsset::AssetPathName' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAsset, ReturnValue) == 0x000008, "Member 'AssetTagsSubsystem_GetCollectionsContainingAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_GetCollectionsContainingAssetData \ +static_assert(alignof(AssetTagsSubsystem_GetCollectionsContainingAssetData) == 0x000008, "Wrong alignment on AssetTagsSubsystem_GetCollectionsContainingAssetData"); \ +static_assert(sizeof(AssetTagsSubsystem_GetCollectionsContainingAssetData) == 0x000078, "Wrong size on AssetTagsSubsystem_GetCollectionsContainingAssetData"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAssetData, AssetData) == 0x000000, "Member 'AssetTagsSubsystem_GetCollectionsContainingAssetData::AssetData' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAssetData, ReturnValue) == 0x000068, "Member 'AssetTagsSubsystem_GetCollectionsContainingAssetData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_GetCollectionsContainingAssetPtr \ +static_assert(alignof(AssetTagsSubsystem_GetCollectionsContainingAssetPtr) == 0x000008, "Wrong alignment on AssetTagsSubsystem_GetCollectionsContainingAssetPtr"); \ +static_assert(sizeof(AssetTagsSubsystem_GetCollectionsContainingAssetPtr) == 0x000018, "Wrong size on AssetTagsSubsystem_GetCollectionsContainingAssetPtr"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAssetPtr, AssetPtr) == 0x000000, "Member 'AssetTagsSubsystem_GetCollectionsContainingAssetPtr::AssetPtr' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_GetCollectionsContainingAssetPtr, ReturnValue) == 0x000008, "Member 'AssetTagsSubsystem_GetCollectionsContainingAssetPtr::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AssetTagsSubsystem_K2_GetCollectionsContainingAsset \ +static_assert(alignof(AssetTagsSubsystem_K2_GetCollectionsContainingAsset) == 0x000008, "Wrong alignment on AssetTagsSubsystem_K2_GetCollectionsContainingAsset"); \ +static_assert(sizeof(AssetTagsSubsystem_K2_GetCollectionsContainingAsset) == 0x000030, "Wrong size on AssetTagsSubsystem_K2_GetCollectionsContainingAsset"); \ +static_assert(offsetof(AssetTagsSubsystem_K2_GetCollectionsContainingAsset, AssetPath) == 0x000000, "Member 'AssetTagsSubsystem_K2_GetCollectionsContainingAsset::AssetPath' has a wrong offset!"); \ +static_assert(offsetof(AssetTagsSubsystem_K2_GetCollectionsContainingAsset, ReturnValue) == 0x000020, "Member 'AssetTagsSubsystem_K2_GetCollectionsContainingAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAssetTagsSubsystem \ +static_assert(alignof(UAssetTagsSubsystem) == 0x000008, "Wrong alignment on UAssetTagsSubsystem"); \ +static_assert(sizeof(UAssetTagsSubsystem) == 0x000030, "Wrong size on UAssetTagsSubsystem"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore) == 0x000090, "Wrong size on BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, DefendZoneComp) == 0x000018, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::DefendZoneComp' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000040, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000050, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000058, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000078, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000088, "Member 'BP_WrestlerTaskScore_HasBackupWeapon_C_GetScore::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_HasBackupWeapon_C \ +static_assert(alignof(UBP_WrestlerTaskScore_HasBackupWeapon_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_HasBackupWeapon_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_HasBackupWeapon_C) == 0x000030, "Wrong size on UBP_WrestlerTaskScore_HasBackupWeapon_C"); \ + +#define DUMPER7_ASSERTS_ACableActor \ +static_assert(alignof(ACableActor) == 0x000008, "Wrong alignment on ACableActor"); \ +static_assert(sizeof(ACableActor) == 0x0002A0, "Wrong size on ACableActor"); \ +static_assert(offsetof(ACableActor, CableComponent) == 0x000298, "Member 'ACableActor::CableComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CableComponent_SetAttachEndTo \ +static_assert(alignof(CableComponent_SetAttachEndTo) == 0x000008, "Wrong alignment on CableComponent_SetAttachEndTo"); \ +static_assert(sizeof(CableComponent_SetAttachEndTo) == 0x000018, "Wrong size on CableComponent_SetAttachEndTo"); \ +static_assert(offsetof(CableComponent_SetAttachEndTo, Actor) == 0x000000, "Member 'CableComponent_SetAttachEndTo::Actor' has a wrong offset!"); \ +static_assert(offsetof(CableComponent_SetAttachEndTo, ComponentProperty) == 0x000008, "Member 'CableComponent_SetAttachEndTo::ComponentProperty' has a wrong offset!"); \ +static_assert(offsetof(CableComponent_SetAttachEndTo, SocketName) == 0x000010, "Member 'CableComponent_SetAttachEndTo::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CableComponent_SetAttachEndToComponent \ +static_assert(alignof(CableComponent_SetAttachEndToComponent) == 0x000008, "Wrong alignment on CableComponent_SetAttachEndToComponent"); \ +static_assert(sizeof(CableComponent_SetAttachEndToComponent) == 0x000010, "Wrong size on CableComponent_SetAttachEndToComponent"); \ +static_assert(offsetof(CableComponent_SetAttachEndToComponent, Component) == 0x000000, "Member 'CableComponent_SetAttachEndToComponent::Component' has a wrong offset!"); \ +static_assert(offsetof(CableComponent_SetAttachEndToComponent, SocketName) == 0x000008, "Member 'CableComponent_SetAttachEndToComponent::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CableComponent_GetAttachedActor \ +static_assert(alignof(CableComponent_GetAttachedActor) == 0x000008, "Wrong alignment on CableComponent_GetAttachedActor"); \ +static_assert(sizeof(CableComponent_GetAttachedActor) == 0x000008, "Wrong size on CableComponent_GetAttachedActor"); \ +static_assert(offsetof(CableComponent_GetAttachedActor, ReturnValue) == 0x000000, "Member 'CableComponent_GetAttachedActor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CableComponent_GetAttachedComponent \ +static_assert(alignof(CableComponent_GetAttachedComponent) == 0x000008, "Wrong alignment on CableComponent_GetAttachedComponent"); \ +static_assert(sizeof(CableComponent_GetAttachedComponent) == 0x000008, "Wrong size on CableComponent_GetAttachedComponent"); \ +static_assert(offsetof(CableComponent_GetAttachedComponent, ReturnValue) == 0x000000, "Member 'CableComponent_GetAttachedComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CableComponent_GetCableParticleLocations \ +static_assert(alignof(CableComponent_GetCableParticleLocations) == 0x000008, "Wrong alignment on CableComponent_GetCableParticleLocations"); \ +static_assert(sizeof(CableComponent_GetCableParticleLocations) == 0x000010, "Wrong size on CableComponent_GetCableParticleLocations"); \ +static_assert(offsetof(CableComponent_GetCableParticleLocations, Locations) == 0x000000, "Member 'CableComponent_GetCableParticleLocations::Locations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCableComponent \ +static_assert(alignof(UCableComponent) == 0x000010, "Wrong alignment on UCableComponent"); \ +static_assert(sizeof(UCableComponent) == 0x000660, "Wrong size on UCableComponent"); \ +static_assert(offsetof(UCableComponent, bAttachStart) == 0x0005A8, "Member 'UCableComponent::bAttachStart' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bAttachEnd) == 0x0005A9, "Member 'UCableComponent::bAttachEnd' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, AttachEndTo) == 0x0005B0, "Member 'UCableComponent::AttachEndTo' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, AttachEndToSocketName) == 0x0005D8, "Member 'UCableComponent::AttachEndToSocketName' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, EndLocation) == 0x0005E0, "Member 'UCableComponent::EndLocation' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, CableLength) == 0x0005F8, "Member 'UCableComponent::CableLength' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, NumSegments) == 0x0005FC, "Member 'UCableComponent::NumSegments' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, SubstepTime) == 0x000600, "Member 'UCableComponent::SubstepTime' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, SolverIterations) == 0x000604, "Member 'UCableComponent::SolverIterations' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bEnableStiffness) == 0x000608, "Member 'UCableComponent::bEnableStiffness' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bUseSubstepping) == 0x000609, "Member 'UCableComponent::bUseSubstepping' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bSkipCableUpdateWhenNotVisible) == 0x00060A, "Member 'UCableComponent::bSkipCableUpdateWhenNotVisible' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bSkipCableUpdateWhenNotOwnerRecentlyRendered) == 0x00060B, "Member 'UCableComponent::bSkipCableUpdateWhenNotOwnerRecentlyRendered' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, bEnableCollision) == 0x00060C, "Member 'UCableComponent::bEnableCollision' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, CollisionFriction) == 0x000610, "Member 'UCableComponent::CollisionFriction' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, CableForce) == 0x000618, "Member 'UCableComponent::CableForce' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, CableGravityScale) == 0x000630, "Member 'UCableComponent::CableGravityScale' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, CableWidth) == 0x000634, "Member 'UCableComponent::CableWidth' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, NumSides) == 0x000638, "Member 'UCableComponent::NumSides' has a wrong offset!"); \ +static_assert(offsetof(UCableComponent, TileMaterial) == 0x00063C, "Member 'UCableComponent::TileMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirBrujah_C_CanPull \ +static_assert(alignof(BP_ElixirBrujah_C_CanPull) == 0x000001, "Wrong alignment on BP_ElixirBrujah_C_CanPull"); \ +static_assert(sizeof(BP_ElixirBrujah_C_CanPull) == 0x000001, "Wrong size on BP_ElixirBrujah_C_CanPull"); \ +static_assert(offsetof(BP_ElixirBrujah_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_ElixirBrujah_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah \ +static_assert(alignof(BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah) == 0x000004, "Wrong alignment on BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah"); \ +static_assert(sizeof(BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah) == 0x000008, "Wrong size on BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah"); \ +static_assert(offsetof(BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah, EntryPoint) == 0x000000, "Member 'BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_ElixirBrujah_C_ExecuteUbergraph_BP_ElixirBrujah::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ElixirBrujah_C \ +static_assert(alignof(ABP_ElixirBrujah_C) == 0x000008, "Wrong alignment on ABP_ElixirBrujah_C"); \ +static_assert(sizeof(ABP_ElixirBrujah_C) == 0x0003F0, "Wrong size on ABP_ElixirBrujah_C"); \ +static_assert(offsetof(ABP_ElixirBrujah_C, UberGraphFrame_BP_ElixirBrujah_C) == 0x0003E8, "Member 'ABP_ElixirBrujah_C::UberGraphFrame_BP_ElixirBrujah_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCustomMeshTriangle \ +static_assert(alignof(FCustomMeshTriangle) == 0x000008, "Wrong alignment on FCustomMeshTriangle"); \ +static_assert(sizeof(FCustomMeshTriangle) == 0x000048, "Wrong size on FCustomMeshTriangle"); \ +static_assert(offsetof(FCustomMeshTriangle, Vertex0) == 0x000000, "Member 'FCustomMeshTriangle::Vertex0' has a wrong offset!"); \ +static_assert(offsetof(FCustomMeshTriangle, Vertex1) == 0x000018, "Member 'FCustomMeshTriangle::Vertex1' has a wrong offset!"); \ +static_assert(offsetof(FCustomMeshTriangle, Vertex2) == 0x000030, "Member 'FCustomMeshTriangle::Vertex2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CustomMeshComponent_AddCustomMeshTriangles \ +static_assert(alignof(CustomMeshComponent_AddCustomMeshTriangles) == 0x000008, "Wrong alignment on CustomMeshComponent_AddCustomMeshTriangles"); \ +static_assert(sizeof(CustomMeshComponent_AddCustomMeshTriangles) == 0x000010, "Wrong size on CustomMeshComponent_AddCustomMeshTriangles"); \ +static_assert(offsetof(CustomMeshComponent_AddCustomMeshTriangles, Triangles) == 0x000000, "Member 'CustomMeshComponent_AddCustomMeshTriangles::Triangles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CustomMeshComponent_SetCustomMeshTriangles \ +static_assert(alignof(CustomMeshComponent_SetCustomMeshTriangles) == 0x000008, "Wrong alignment on CustomMeshComponent_SetCustomMeshTriangles"); \ +static_assert(sizeof(CustomMeshComponent_SetCustomMeshTriangles) == 0x000018, "Wrong size on CustomMeshComponent_SetCustomMeshTriangles"); \ +static_assert(offsetof(CustomMeshComponent_SetCustomMeshTriangles, Triangles) == 0x000000, "Member 'CustomMeshComponent_SetCustomMeshTriangles::Triangles' has a wrong offset!"); \ +static_assert(offsetof(CustomMeshComponent_SetCustomMeshTriangles, ReturnValue) == 0x000010, "Member 'CustomMeshComponent_SetCustomMeshTriangles::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCustomMeshComponent \ +static_assert(alignof(UCustomMeshComponent) == 0x000010, "Wrong alignment on UCustomMeshComponent"); \ +static_assert(sizeof(UCustomMeshComponent) == 0x0005C0, "Wrong size on UCustomMeshComponent"); \ + +#define DUMPER7_ASSERTS_FLocationServicesData \ +static_assert(alignof(FLocationServicesData) == 0x000004, "Wrong alignment on FLocationServicesData"); \ +static_assert(sizeof(FLocationServicesData) == 0x000018, "Wrong size on FLocationServicesData"); \ +static_assert(offsetof(FLocationServicesData, Timestamp) == 0x000000, "Member 'FLocationServicesData::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(FLocationServicesData, Longitude) == 0x000004, "Member 'FLocationServicesData::Longitude' has a wrong offset!"); \ +static_assert(offsetof(FLocationServicesData, Latitude) == 0x000008, "Member 'FLocationServicesData::Latitude' has a wrong offset!"); \ +static_assert(offsetof(FLocationServicesData, HorizontalAccuracy) == 0x00000C, "Member 'FLocationServicesData::HorizontalAccuracy' has a wrong offset!"); \ +static_assert(offsetof(FLocationServicesData, VerticalAccuracy) == 0x000010, "Member 'FLocationServicesData::VerticalAccuracy' has a wrong offset!"); \ +static_assert(offsetof(FLocationServicesData, Altitude) == 0x000014, "Member 'FLocationServicesData::Altitude' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_AreLocationServicesEnabled \ +static_assert(alignof(LocationServices_AreLocationServicesEnabled) == 0x000001, "Wrong alignment on LocationServices_AreLocationServicesEnabled"); \ +static_assert(sizeof(LocationServices_AreLocationServicesEnabled) == 0x000001, "Wrong size on LocationServices_AreLocationServicesEnabled"); \ +static_assert(offsetof(LocationServices_AreLocationServicesEnabled, ReturnValue) == 0x000000, "Member 'LocationServices_AreLocationServicesEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_GetLastKnownLocation \ +static_assert(alignof(LocationServices_GetLastKnownLocation) == 0x000004, "Wrong alignment on LocationServices_GetLastKnownLocation"); \ +static_assert(sizeof(LocationServices_GetLastKnownLocation) == 0x000018, "Wrong size on LocationServices_GetLastKnownLocation"); \ +static_assert(offsetof(LocationServices_GetLastKnownLocation, ReturnValue) == 0x000000, "Member 'LocationServices_GetLastKnownLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_GetLocationServicesImpl \ +static_assert(alignof(LocationServices_GetLocationServicesImpl) == 0x000008, "Wrong alignment on LocationServices_GetLocationServicesImpl"); \ +static_assert(sizeof(LocationServices_GetLocationServicesImpl) == 0x000008, "Wrong size on LocationServices_GetLocationServicesImpl"); \ +static_assert(offsetof(LocationServices_GetLocationServicesImpl, ReturnValue) == 0x000000, "Member 'LocationServices_GetLocationServicesImpl::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_InitLocationServices \ +static_assert(alignof(LocationServices_InitLocationServices) == 0x000004, "Wrong alignment on LocationServices_InitLocationServices"); \ +static_assert(sizeof(LocationServices_InitLocationServices) == 0x000010, "Wrong size on LocationServices_InitLocationServices"); \ +static_assert(offsetof(LocationServices_InitLocationServices, Accuracy) == 0x000000, "Member 'LocationServices_InitLocationServices::Accuracy' has a wrong offset!"); \ +static_assert(offsetof(LocationServices_InitLocationServices, UpdateFrequency) == 0x000004, "Member 'LocationServices_InitLocationServices::UpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(LocationServices_InitLocationServices, MinDistanceFilter) == 0x000008, "Member 'LocationServices_InitLocationServices::MinDistanceFilter' has a wrong offset!"); \ +static_assert(offsetof(LocationServices_InitLocationServices, ReturnValue) == 0x00000C, "Member 'LocationServices_InitLocationServices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_IsLocationAccuracyAvailable \ +static_assert(alignof(LocationServices_IsLocationAccuracyAvailable) == 0x000001, "Wrong alignment on LocationServices_IsLocationAccuracyAvailable"); \ +static_assert(sizeof(LocationServices_IsLocationAccuracyAvailable) == 0x000002, "Wrong size on LocationServices_IsLocationAccuracyAvailable"); \ +static_assert(offsetof(LocationServices_IsLocationAccuracyAvailable, Accuracy) == 0x000000, "Member 'LocationServices_IsLocationAccuracyAvailable::Accuracy' has a wrong offset!"); \ +static_assert(offsetof(LocationServices_IsLocationAccuracyAvailable, ReturnValue) == 0x000001, "Member 'LocationServices_IsLocationAccuracyAvailable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_StartLocationServices \ +static_assert(alignof(LocationServices_StartLocationServices) == 0x000001, "Wrong alignment on LocationServices_StartLocationServices"); \ +static_assert(sizeof(LocationServices_StartLocationServices) == 0x000001, "Wrong size on LocationServices_StartLocationServices"); \ +static_assert(offsetof(LocationServices_StartLocationServices, ReturnValue) == 0x000000, "Member 'LocationServices_StartLocationServices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LocationServices_StopLocationServices \ +static_assert(alignof(LocationServices_StopLocationServices) == 0x000001, "Wrong alignment on LocationServices_StopLocationServices"); \ +static_assert(sizeof(LocationServices_StopLocationServices) == 0x000001, "Wrong size on LocationServices_StopLocationServices"); \ +static_assert(offsetof(LocationServices_StopLocationServices, ReturnValue) == 0x000000, "Member 'LocationServices_StopLocationServices::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULocationServices \ +static_assert(alignof(ULocationServices) == 0x000008, "Wrong alignment on ULocationServices"); \ +static_assert(sizeof(ULocationServices) == 0x000028, "Wrong size on ULocationServices"); \ + +#define DUMPER7_ASSERTS_ULocationServicesImpl \ +static_assert(alignof(ULocationServicesImpl) == 0x000008, "Wrong alignment on ULocationServicesImpl"); \ +static_assert(sizeof(ULocationServicesImpl) == 0x000038, "Wrong size on ULocationServicesImpl"); \ +static_assert(offsetof(ULocationServicesImpl, OnLocationChanged) == 0x000028, "Member 'ULocationServicesImpl::OnLocationChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD \ +static_assert(alignof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD) == 0x000008, "Wrong alignment on HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD"); \ +static_assert(sizeof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD) == 0x000030, "Wrong size on HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, EntryPoint) == 0x000000, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, K2Node_DynamicCast_AsHera_HUD) == 0x000010, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, K2Node_Event_InAutomata) == 0x000020, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD, K2Node_Event_InState) == 0x000028, "Member 'HidePlayerHUD_C_ExecuteUbergraph_HidePlayerHUD::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HidePlayerHUD_C_ReceiveExecute \ +static_assert(alignof(HidePlayerHUD_C_ReceiveExecute) == 0x000008, "Wrong alignment on HidePlayerHUD_C_ReceiveExecute"); \ +static_assert(sizeof(HidePlayerHUD_C_ReceiveExecute) == 0x000010, "Wrong size on HidePlayerHUD_C_ReceiveExecute"); \ +static_assert(offsetof(HidePlayerHUD_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'HidePlayerHUD_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HidePlayerHUD_C_ReceiveExecute, InState) == 0x000008, "Member 'HidePlayerHUD_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHidePlayerHUD_C \ +static_assert(alignof(UHidePlayerHUD_C) == 0x000008, "Wrong alignment on UHidePlayerHUD_C"); \ +static_assert(sizeof(UHidePlayerHUD_C) == 0x000090, "Wrong size on UHidePlayerHUD_C"); \ +static_assert(offsetof(UHidePlayerHUD_C, UberGraphFrame) == 0x000088, "Member 'UHidePlayerHUD_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobileInstalledContent_GetDiskFreeSpace \ +static_assert(alignof(MobileInstalledContent_GetDiskFreeSpace) == 0x000004, "Wrong alignment on MobileInstalledContent_GetDiskFreeSpace"); \ +static_assert(sizeof(MobileInstalledContent_GetDiskFreeSpace) == 0x000004, "Wrong size on MobileInstalledContent_GetDiskFreeSpace"); \ +static_assert(offsetof(MobileInstalledContent_GetDiskFreeSpace, ReturnValue) == 0x000000, "Member 'MobileInstalledContent_GetDiskFreeSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobileInstalledContent_GetInstalledContentSize \ +static_assert(alignof(MobileInstalledContent_GetInstalledContentSize) == 0x000004, "Wrong alignment on MobileInstalledContent_GetInstalledContentSize"); \ +static_assert(sizeof(MobileInstalledContent_GetInstalledContentSize) == 0x000004, "Wrong size on MobileInstalledContent_GetInstalledContentSize"); \ +static_assert(offsetof(MobileInstalledContent_GetInstalledContentSize, ReturnValue) == 0x000000, "Member 'MobileInstalledContent_GetInstalledContentSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobileInstalledContent_Mount \ +static_assert(alignof(MobileInstalledContent_Mount) == 0x000008, "Wrong alignment on MobileInstalledContent_Mount"); \ +static_assert(sizeof(MobileInstalledContent_Mount) == 0x000020, "Wrong size on MobileInstalledContent_Mount"); \ +static_assert(offsetof(MobileInstalledContent_Mount, PakOrder) == 0x000000, "Member 'MobileInstalledContent_Mount::PakOrder' has a wrong offset!"); \ +static_assert(offsetof(MobileInstalledContent_Mount, MountPoint) == 0x000008, "Member 'MobileInstalledContent_Mount::MountPoint' has a wrong offset!"); \ +static_assert(offsetof(MobileInstalledContent_Mount, ReturnValue) == 0x000018, "Member 'MobileInstalledContent_Mount::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMobileInstalledContent \ +static_assert(alignof(UMobileInstalledContent) == 0x000008, "Wrong alignment on UMobileInstalledContent"); \ +static_assert(sizeof(UMobileInstalledContent) == 0x000048, "Wrong size on UMobileInstalledContent"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetDownloadSize \ +static_assert(alignof(MobilePendingContent_GetDownloadSize) == 0x000004, "Wrong alignment on MobilePendingContent_GetDownloadSize"); \ +static_assert(sizeof(MobilePendingContent_GetDownloadSize) == 0x000004, "Wrong size on MobilePendingContent_GetDownloadSize"); \ +static_assert(offsetof(MobilePendingContent_GetDownloadSize, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetDownloadSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetDownloadSpeed \ +static_assert(alignof(MobilePendingContent_GetDownloadSpeed) == 0x000004, "Wrong alignment on MobilePendingContent_GetDownloadSpeed"); \ +static_assert(sizeof(MobilePendingContent_GetDownloadSpeed) == 0x000004, "Wrong size on MobilePendingContent_GetDownloadSpeed"); \ +static_assert(offsetof(MobilePendingContent_GetDownloadSpeed, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetDownloadSpeed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetDownloadStatusText \ +static_assert(alignof(MobilePendingContent_GetDownloadStatusText) == 0x000008, "Wrong alignment on MobilePendingContent_GetDownloadStatusText"); \ +static_assert(sizeof(MobilePendingContent_GetDownloadStatusText) == 0x000018, "Wrong size on MobilePendingContent_GetDownloadStatusText"); \ +static_assert(offsetof(MobilePendingContent_GetDownloadStatusText, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetDownloadStatusText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetInstallProgress \ +static_assert(alignof(MobilePendingContent_GetInstallProgress) == 0x000004, "Wrong alignment on MobilePendingContent_GetInstallProgress"); \ +static_assert(sizeof(MobilePendingContent_GetInstallProgress) == 0x000004, "Wrong size on MobilePendingContent_GetInstallProgress"); \ +static_assert(offsetof(MobilePendingContent_GetInstallProgress, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetInstallProgress::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetRequiredDiskSpace \ +static_assert(alignof(MobilePendingContent_GetRequiredDiskSpace) == 0x000004, "Wrong alignment on MobilePendingContent_GetRequiredDiskSpace"); \ +static_assert(sizeof(MobilePendingContent_GetRequiredDiskSpace) == 0x000004, "Wrong size on MobilePendingContent_GetRequiredDiskSpace"); \ +static_assert(offsetof(MobilePendingContent_GetRequiredDiskSpace, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetRequiredDiskSpace::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_GetTotalDownloadedSize \ +static_assert(alignof(MobilePendingContent_GetTotalDownloadedSize) == 0x000004, "Wrong alignment on MobilePendingContent_GetTotalDownloadedSize"); \ +static_assert(sizeof(MobilePendingContent_GetTotalDownloadedSize) == 0x000004, "Wrong size on MobilePendingContent_GetTotalDownloadedSize"); \ +static_assert(offsetof(MobilePendingContent_GetTotalDownloadedSize, ReturnValue) == 0x000000, "Member 'MobilePendingContent_GetTotalDownloadedSize::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePendingContent_StartInstall \ +static_assert(alignof(MobilePendingContent_StartInstall) == 0x000004, "Wrong alignment on MobilePendingContent_StartInstall"); \ +static_assert(sizeof(MobilePendingContent_StartInstall) == 0x000020, "Wrong size on MobilePendingContent_StartInstall"); \ +static_assert(offsetof(MobilePendingContent_StartInstall, OnSucceeded) == 0x000000, "Member 'MobilePendingContent_StartInstall::OnSucceeded' has a wrong offset!"); \ +static_assert(offsetof(MobilePendingContent_StartInstall, OnFailed) == 0x000010, "Member 'MobilePendingContent_StartInstall::OnFailed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMobilePendingContent \ +static_assert(alignof(UMobilePendingContent) == 0x000008, "Wrong alignment on UMobilePendingContent"); \ +static_assert(sizeof(UMobilePendingContent) == 0x000088, "Wrong size on UMobilePendingContent"); \ + +#define DUMPER7_ASSERTS_MobilePatchingLibrary_GetActiveDeviceProfileName \ +static_assert(alignof(MobilePatchingLibrary_GetActiveDeviceProfileName) == 0x000008, "Wrong alignment on MobilePatchingLibrary_GetActiveDeviceProfileName"); \ +static_assert(sizeof(MobilePatchingLibrary_GetActiveDeviceProfileName) == 0x000010, "Wrong size on MobilePatchingLibrary_GetActiveDeviceProfileName"); \ +static_assert(offsetof(MobilePatchingLibrary_GetActiveDeviceProfileName, ReturnValue) == 0x000000, "Member 'MobilePatchingLibrary_GetActiveDeviceProfileName::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePatchingLibrary_GetInstalledContent \ +static_assert(alignof(MobilePatchingLibrary_GetInstalledContent) == 0x000008, "Wrong alignment on MobilePatchingLibrary_GetInstalledContent"); \ +static_assert(sizeof(MobilePatchingLibrary_GetInstalledContent) == 0x000018, "Wrong size on MobilePatchingLibrary_GetInstalledContent"); \ +static_assert(offsetof(MobilePatchingLibrary_GetInstalledContent, InstallDirectory) == 0x000000, "Member 'MobilePatchingLibrary_GetInstalledContent::InstallDirectory' has a wrong offset!"); \ +static_assert(offsetof(MobilePatchingLibrary_GetInstalledContent, ReturnValue) == 0x000010, "Member 'MobilePatchingLibrary_GetInstalledContent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePatchingLibrary_GetSupportedPlatformNames \ +static_assert(alignof(MobilePatchingLibrary_GetSupportedPlatformNames) == 0x000008, "Wrong alignment on MobilePatchingLibrary_GetSupportedPlatformNames"); \ +static_assert(sizeof(MobilePatchingLibrary_GetSupportedPlatformNames) == 0x000010, "Wrong size on MobilePatchingLibrary_GetSupportedPlatformNames"); \ +static_assert(offsetof(MobilePatchingLibrary_GetSupportedPlatformNames, ReturnValue) == 0x000000, "Member 'MobilePatchingLibrary_GetSupportedPlatformNames::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePatchingLibrary_HasActiveWiFiConnection \ +static_assert(alignof(MobilePatchingLibrary_HasActiveWiFiConnection) == 0x000001, "Wrong alignment on MobilePatchingLibrary_HasActiveWiFiConnection"); \ +static_assert(sizeof(MobilePatchingLibrary_HasActiveWiFiConnection) == 0x000001, "Wrong size on MobilePatchingLibrary_HasActiveWiFiConnection"); \ +static_assert(offsetof(MobilePatchingLibrary_HasActiveWiFiConnection, ReturnValue) == 0x000000, "Member 'MobilePatchingLibrary_HasActiveWiFiConnection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_MobilePatchingLibrary_RequestContent \ +static_assert(alignof(MobilePatchingLibrary_RequestContent) == 0x000008, "Wrong alignment on MobilePatchingLibrary_RequestContent"); \ +static_assert(sizeof(MobilePatchingLibrary_RequestContent) == 0x000050, "Wrong size on MobilePatchingLibrary_RequestContent"); \ +static_assert(offsetof(MobilePatchingLibrary_RequestContent, RemoteManifestURL) == 0x000000, "Member 'MobilePatchingLibrary_RequestContent::RemoteManifestURL' has a wrong offset!"); \ +static_assert(offsetof(MobilePatchingLibrary_RequestContent, CloudURL) == 0x000010, "Member 'MobilePatchingLibrary_RequestContent::CloudURL' has a wrong offset!"); \ +static_assert(offsetof(MobilePatchingLibrary_RequestContent, InstallDirectory) == 0x000020, "Member 'MobilePatchingLibrary_RequestContent::InstallDirectory' has a wrong offset!"); \ +static_assert(offsetof(MobilePatchingLibrary_RequestContent, OnSucceeded) == 0x000030, "Member 'MobilePatchingLibrary_RequestContent::OnSucceeded' has a wrong offset!"); \ +static_assert(offsetof(MobilePatchingLibrary_RequestContent, OnFailed) == 0x000040, "Member 'MobilePatchingLibrary_RequestContent::OnFailed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMobilePatchingLibrary \ +static_assert(alignof(UMobilePatchingLibrary) == 0x000008, "Wrong alignment on UMobilePatchingLibrary"); \ +static_assert(sizeof(UMobilePatchingLibrary) == 0x000028, "Wrong size on UMobilePatchingLibrary"); \ + +#define DUMPER7_ASSERTS_FResonanceAudioReverbPluginSettings \ +static_assert(alignof(FResonanceAudioReverbPluginSettings) == 0x000010, "Wrong alignment on FResonanceAudioReverbPluginSettings"); \ +static_assert(sizeof(FResonanceAudioReverbPluginSettings) == 0x000070, "Wrong size on FResonanceAudioReverbPluginSettings"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, bEnableRoomEffects) == 0x000000, "Member 'FResonanceAudioReverbPluginSettings::bEnableRoomEffects' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, bGetTransformFromAudioVolume) == 0x000001, "Member 'FResonanceAudioReverbPluginSettings::bGetTransformFromAudioVolume' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, RoomPosition) == 0x000008, "Member 'FResonanceAudioReverbPluginSettings::RoomPosition' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, RoomRotation) == 0x000020, "Member 'FResonanceAudioReverbPluginSettings::RoomRotation' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, RoomDimensions) == 0x000040, "Member 'FResonanceAudioReverbPluginSettings::RoomDimensions' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, LeftWallMaterial) == 0x000058, "Member 'FResonanceAudioReverbPluginSettings::LeftWallMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, RightWallMaterial) == 0x000059, "Member 'FResonanceAudioReverbPluginSettings::RightWallMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, FloorMaterial) == 0x00005A, "Member 'FResonanceAudioReverbPluginSettings::FloorMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, CeilingMaterial) == 0x00005B, "Member 'FResonanceAudioReverbPluginSettings::CeilingMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, FrontWallMaterial) == 0x00005C, "Member 'FResonanceAudioReverbPluginSettings::FrontWallMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, BackWallMaterial) == 0x00005D, "Member 'FResonanceAudioReverbPluginSettings::BackWallMaterial' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, ReflectionScalar) == 0x000060, "Member 'FResonanceAudioReverbPluginSettings::ReflectionScalar' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, ReverbGain) == 0x000064, "Member 'FResonanceAudioReverbPluginSettings::ReverbGain' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, ReverbTimeModifier) == 0x000068, "Member 'FResonanceAudioReverbPluginSettings::ReverbTimeModifier' has a wrong offset!"); \ +static_assert(offsetof(FResonanceAudioReverbPluginSettings, ReverbBrightness) == 0x00006C, "Member 'FResonanceAudioReverbPluginSettings::ReverbBrightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UResonanceAudioSoundfieldSettings \ +static_assert(alignof(UResonanceAudioSoundfieldSettings) == 0x000008, "Wrong alignment on UResonanceAudioSoundfieldSettings"); \ +static_assert(sizeof(UResonanceAudioSoundfieldSettings) == 0x000030, "Wrong size on UResonanceAudioSoundfieldSettings"); \ +static_assert(offsetof(UResonanceAudioSoundfieldSettings, RenderMode) == 0x000028, "Member 'UResonanceAudioSoundfieldSettings::RenderMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset \ +static_assert(alignof(ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset) == 0x000008, "Wrong alignment on ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset"); \ +static_assert(sizeof(ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset) == 0x000008, "Wrong size on ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset"); \ +static_assert(offsetof(ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset, ReturnValue) == 0x000000, "Member 'ResonanceAudioBlueprintFunctionLibrary_GetGlobalReverbPreset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset \ +static_assert(alignof(ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset) == 0x000008, "Wrong alignment on ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset"); \ +static_assert(sizeof(ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset) == 0x000008, "Wrong size on ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset"); \ +static_assert(offsetof(ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset, InPreset) == 0x000000, "Member 'ResonanceAudioBlueprintFunctionLibrary_SetGlobalReverbPreset::InPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UResonanceAudioBlueprintFunctionLibrary \ +static_assert(alignof(UResonanceAudioBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on UResonanceAudioBlueprintFunctionLibrary"); \ +static_assert(sizeof(UResonanceAudioBlueprintFunctionLibrary) == 0x000028, "Wrong size on UResonanceAudioBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_AResonanceAudioDirectivityVisualizer \ +static_assert(alignof(AResonanceAudioDirectivityVisualizer) == 0x000008, "Wrong alignment on AResonanceAudioDirectivityVisualizer"); \ +static_assert(sizeof(AResonanceAudioDirectivityVisualizer) == 0x000318, "Wrong size on AResonanceAudioDirectivityVisualizer"); \ +static_assert(offsetof(AResonanceAudioDirectivityVisualizer, Material) == 0x000308, "Member 'AResonanceAudioDirectivityVisualizer::Material' has a wrong offset!"); \ +static_assert(offsetof(AResonanceAudioDirectivityVisualizer, Settings) == 0x000310, "Member 'AResonanceAudioDirectivityVisualizer::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetEnableRoomEffects \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetEnableRoomEffects) == 0x000001, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetEnableRoomEffects"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetEnableRoomEffects) == 0x000001, "Wrong size on ResonanceAudioReverbPluginPreset_SetEnableRoomEffects"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetEnableRoomEffects, bInEnableRoomEffects) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetEnableRoomEffects::bInEnableRoomEffects' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetReflectionScalar \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetReflectionScalar) == 0x000004, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetReflectionScalar"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetReflectionScalar) == 0x000004, "Wrong size on ResonanceAudioReverbPluginPreset_SetReflectionScalar"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetReflectionScalar, InReflectionScalar) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetReflectionScalar::InReflectionScalar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetReverbBrightness \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetReverbBrightness) == 0x000004, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetReverbBrightness"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetReverbBrightness) == 0x000004, "Wrong size on ResonanceAudioReverbPluginPreset_SetReverbBrightness"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetReverbBrightness, InReverbBrightness) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetReverbBrightness::InReverbBrightness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetReverbGain \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetReverbGain) == 0x000004, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetReverbGain"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetReverbGain) == 0x000004, "Wrong size on ResonanceAudioReverbPluginPreset_SetReverbGain"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetReverbGain, InReverbGain) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetReverbGain::InReverbGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetReverbTimeModifier \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetReverbTimeModifier) == 0x000004, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetReverbTimeModifier"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetReverbTimeModifier) == 0x000004, "Wrong size on ResonanceAudioReverbPluginPreset_SetReverbTimeModifier"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetReverbTimeModifier, InReverbTimeModifier) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetReverbTimeModifier::InReverbTimeModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetRoomDimensions \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetRoomDimensions) == 0x000008, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetRoomDimensions"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetRoomDimensions) == 0x000018, "Wrong size on ResonanceAudioReverbPluginPreset_SetRoomDimensions"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetRoomDimensions, InDimensions) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetRoomDimensions::InDimensions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetRoomMaterials \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetRoomMaterials) == 0x000008, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetRoomMaterials"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetRoomMaterials) == 0x000010, "Wrong size on ResonanceAudioReverbPluginPreset_SetRoomMaterials"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetRoomMaterials, InMaterials) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetRoomMaterials::InMaterials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetRoomPosition \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetRoomPosition) == 0x000008, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetRoomPosition"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetRoomPosition) == 0x000018, "Wrong size on ResonanceAudioReverbPluginPreset_SetRoomPosition"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetRoomPosition, InPosition) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetRoomPosition::InPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioReverbPluginPreset_SetRoomRotation \ +static_assert(alignof(ResonanceAudioReverbPluginPreset_SetRoomRotation) == 0x000010, "Wrong alignment on ResonanceAudioReverbPluginPreset_SetRoomRotation"); \ +static_assert(sizeof(ResonanceAudioReverbPluginPreset_SetRoomRotation) == 0x000020, "Wrong size on ResonanceAudioReverbPluginPreset_SetRoomRotation"); \ +static_assert(offsetof(ResonanceAudioReverbPluginPreset_SetRoomRotation, InRotation) == 0x000000, "Member 'ResonanceAudioReverbPluginPreset_SetRoomRotation::InRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UResonanceAudioReverbPluginPreset \ +static_assert(alignof(UResonanceAudioReverbPluginPreset) == 0x000010, "Wrong alignment on UResonanceAudioReverbPluginPreset"); \ +static_assert(sizeof(UResonanceAudioReverbPluginPreset) == 0x000170, "Wrong size on UResonanceAudioReverbPluginPreset"); \ +static_assert(offsetof(UResonanceAudioReverbPluginPreset, Settings) == 0x000100, "Member 'UResonanceAudioReverbPluginPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UResonanceAudioSettings \ +static_assert(alignof(UResonanceAudioSettings) == 0x000008, "Wrong alignment on UResonanceAudioSettings"); \ +static_assert(sizeof(UResonanceAudioSettings) == 0x000090, "Wrong size on UResonanceAudioSettings"); \ +static_assert(offsetof(UResonanceAudioSettings, OutputSubmix) == 0x000028, "Member 'UResonanceAudioSettings::OutputSubmix' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSettings, QualityMode) == 0x000048, "Member 'UResonanceAudioSettings::QualityMode' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSettings, GlobalReverbPreset) == 0x000050, "Member 'UResonanceAudioSettings::GlobalReverbPreset' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSettings, GlobalSourcePreset) == 0x000070, "Member 'UResonanceAudioSettings::GlobalSourcePreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity \ +static_assert(alignof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity) == 0x000004, "Wrong alignment on ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity"); \ +static_assert(sizeof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity) == 0x000008, "Wrong size on ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity"); \ +static_assert(offsetof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity, InPattern) == 0x000000, "Member 'ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity::InPattern' has a wrong offset!"); \ +static_assert(offsetof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity, InSharpness) == 0x000004, "Member 'ResonanceAudioSpatializationSourceSettings_SetSoundSourceDirectivity::InSharpness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread \ +static_assert(alignof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread) == 0x000004, "Wrong alignment on ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread"); \ +static_assert(sizeof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread) == 0x000004, "Wrong size on ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread"); \ +static_assert(offsetof(ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread, InSpread) == 0x000000, "Member 'ResonanceAudioSpatializationSourceSettings_SetSoundSourceSpread::InSpread' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UResonanceAudioSpatializationSourceSettings \ +static_assert(alignof(UResonanceAudioSpatializationSourceSettings) == 0x000008, "Wrong alignment on UResonanceAudioSpatializationSourceSettings"); \ +static_assert(sizeof(UResonanceAudioSpatializationSourceSettings) == 0x000050, "Wrong size on UResonanceAudioSpatializationSourceSettings"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, SpatializationMethod) == 0x000028, "Member 'UResonanceAudioSpatializationSourceSettings::SpatializationMethod' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, Pattern) == 0x00002C, "Member 'UResonanceAudioSpatializationSourceSettings::Pattern' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, Sharpness) == 0x000030, "Member 'UResonanceAudioSpatializationSourceSettings::Sharpness' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, bToggleVisualization) == 0x000034, "Member 'UResonanceAudioSpatializationSourceSettings::bToggleVisualization' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, Scale) == 0x000038, "Member 'UResonanceAudioSpatializationSourceSettings::Scale' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, Spread) == 0x00003C, "Member 'UResonanceAudioSpatializationSourceSettings::Spread' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, Rolloff) == 0x000040, "Member 'UResonanceAudioSpatializationSourceSettings::Rolloff' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, MinDistance) == 0x000044, "Member 'UResonanceAudioSpatializationSourceSettings::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(UResonanceAudioSpatializationSourceSettings, MaxDistance) == 0x000048, "Member 'UResonanceAudioSpatializationSourceSettings::MaxDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAmbisonicsEncodingSettings \ +static_assert(alignof(UAmbisonicsEncodingSettings) == 0x000008, "Wrong alignment on UAmbisonicsEncodingSettings"); \ +static_assert(sizeof(UAmbisonicsEncodingSettings) == 0x000030, "Wrong size on UAmbisonicsEncodingSettings"); \ +static_assert(offsetof(UAmbisonicsEncodingSettings, AmbisonicsOrder) == 0x000028, "Member 'UAmbisonicsEncodingSettings::AmbisonicsOrder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_OnSettingAssigned \ +static_assert(alignof(W_SettingsListEntry_Action_C_OnSettingAssigned) == 0x000008, "Wrong alignment on W_SettingsListEntry_Action_C_OnSettingAssigned"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_OnSettingAssigned) == 0x000018, "Wrong size on W_SettingsListEntry_Action_C_OnSettingAssigned"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnSettingAssigned, ActionText) == 0x000000, "Member 'W_SettingsListEntry_Action_C_OnSettingAssigned::ActionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_OnRemovedFromFocusPath \ +static_assert(alignof(W_SettingsListEntry_Action_C_OnRemovedFromFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Action_C_OnRemovedFromFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_OnRemovedFromFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Action_C_OnRemovedFromFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnRemovedFromFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Action_C_OnRemovedFromFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_OnFocusReceived \ +static_assert(alignof(W_SettingsListEntry_Action_C_OnFocusReceived) == 0x000008, "Wrong alignment on W_SettingsListEntry_Action_C_OnFocusReceived"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_OnFocusReceived) == 0x0001B0, "Wrong size on W_SettingsListEntry_Action_C_OnFocusReceived"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Action_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'W_SettingsListEntry_Action_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Action_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'W_SettingsListEntry_Action_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_OnAddedToFocusPath \ +static_assert(alignof(W_SettingsListEntry_Action_C_OnAddedToFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Action_C_OnAddedToFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_OnAddedToFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Action_C_OnAddedToFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Action_C_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Action_C_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action \ +static_assert(alignof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action) == 0x000008, "Wrong alignment on W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action"); \ +static_assert(sizeof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action) == 0x000050, "Wrong size on W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, EntryPoint) == 0x000000, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, K2Node_Event_ActionText) == 0x000008, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::K2Node_Event_ActionText' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, K2Node_DynamicCast_AsTCR_Common_Button) == 0x000020, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::K2Node_DynamicCast_AsTCR_Common_Button' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, Temp_delegate_Variable) == 0x00002C, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, K2Node_Event_InFocusEvent_1) == 0x00003C, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::K2Node_Event_InFocusEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action, K2Node_Event_InFocusEvent) == 0x000044, "Member 'W_SettingsListEntry_Action_C_ExecuteUbergraph_W_SettingsListEntry_Action::K2Node_Event_InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Action_C \ +static_assert(alignof(UW_SettingsListEntry_Action_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_Action_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Action_C) == 0x000358, "Wrong size on UW_SettingsListEntry_Action_C"); \ +static_assert(offsetof(UW_SettingsListEntry_Action_C, UberGraphFrame) == 0x000338, "Member 'UW_SettingsListEntry_Action_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Action_C, FocusBar) == 0x000340, "Member 'UW_SettingsListEntry_Action_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Action_C, FocusBorder) == 0x000348, "Member 'UW_SettingsListEntry_Action_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Action_C, FocusOffsetLine) == 0x000350, "Member 'UW_SettingsListEntry_Action_C::FocusOffsetLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent \ +static_assert(alignof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent) == 0x000008, "Wrong alignment on NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent"); \ +static_assert(sizeof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent) == 0x000568, "Wrong size on NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, EntryPoint) == 0x000000, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable) == 0x000004, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable_1) == 0x000005, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_real_Variable) == 0x000008, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_int_Array_Index_Variable) == 0x000018, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00001C, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Event_DeltaSeconds) == 0x000020, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_IntInt_ReturnValue_1) == 0x000024, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_int_Variable) == 0x000028, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Greater_IntInt_ReturnValue) == 0x00002C, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable_2) == 0x00002D, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Array_Add_ReturnValue) == 0x000030, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetOwner_ReturnValue) == 0x000038, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000040, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_MakeArray_Array) == 0x000048, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetOwner_ReturnValue_1) == 0x000058, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_DynamicCast_AsWrestler_Character) == 0x000060, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_IsValid_ReturnValue_1) == 0x00006A, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x00006C, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeVector_ReturnValue) == 0x000070, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000088, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeVector_ReturnValue_1) == 0x0000B8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000D0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000D8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0000F0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_byte_Variable) == 0x0000F4, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x0000F8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetOwner_ReturnValue_2) == 0x000100, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_MakeArray_Array_1) == 0x000108, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000118, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000120, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000138, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_byte_Variable_1) == 0x000150, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000158, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x000170, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable_3) == 0x000174, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000178, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000180, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000188, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable_4) == 0x000190, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue_3) == 0x000198, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Select_Default) == 0x0001A0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue_4) == 0x0001A8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_IntToDouble_ReturnValue_5) == 0x0001B0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_IntToDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001B8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001C8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0001D0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeRotator_ReturnValue) == 0x0001D8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Array_Get_Item) == 0x0001F0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x0001F8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000210, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000228, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000240, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Array_Length_ReturnValue) == 0x000258, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000260, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Less_IntInt_ReturnValue) == 0x000278, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_byte_Variable_2) == 0x000279, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_byte_Variable_3) == 0x00027A, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_RemoveActiveEffectsWithTags_ReturnValue) == 0x00027C, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_RemoveActiveEffectsWithTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeOutgoingSpec_ReturnValue) == 0x000280, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeOutgoingSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000290, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue) == 0x0002A0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_int_Variable_1) == 0x0002A8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_DoubleToString_ReturnValue) == 0x0002B0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Left_ReturnValue) == 0x0002C0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Left_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0002D0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Concat_StrStr_ReturnValue) == 0x0002D8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Add_IntInt_ReturnValue_2) == 0x0002E8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetRealDeltaTime_ReturnValue_2) == 0x0002EC, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetRealDeltaTime_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_FInterpTo_Constant_ReturnValue) == 0x0002F0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_OutHit) == 0x0002F8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_ReturnValue) == 0x0003E0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_GetOwner_ReturnValue_3) == 0x0003E8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_GetOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, Temp_bool_Variable_5) == 0x0003F0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_DynamicCast_AsCharacter) == 0x0003F8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_DynamicCast_bSuccess_1) == 0x000400, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Select_Default_1) == 0x000401, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_IsCrouching_ReturnValue) == 0x000402, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_OutHit_1) == 0x000408, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_ReturnValue_1) == 0x0004F0, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Select_Default_2) == 0x0004F8, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Select_Default_3) == 0x000500, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000508, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, K2Node_Select_Default_4) == 0x000510, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000518, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_FClamp_ReturnValue) == 0x000520, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeVector_Z_ImplicitCast) == 0x000528, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000530, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000538, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000540, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_DrawTime_ImplicitCast) == 0x000548, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_DrawTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_DrawTime_ImplicitCast_1) == 0x00054C, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_DrawTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000550, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x000554, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000558, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_Radius_ImplicitCast) == 0x000560, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent, CallFunc_SphereTraceSingle_Radius_ImplicitCast_1) == 0x000564, "Member 'NoticeableProximityComponent_C_ExecuteUbergraph_NoticeableProximityComponent::CallFunc_SphereTraceSingle_Radius_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NoticeableProximityComponent_C_ReceiveTick \ +static_assert(alignof(NoticeableProximityComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on NoticeableProximityComponent_C_ReceiveTick"); \ +static_assert(sizeof(NoticeableProximityComponent_C_ReceiveTick) == 0x000004, "Wrong size on NoticeableProximityComponent_C_ReceiveTick"); \ +static_assert(offsetof(NoticeableProximityComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'NoticeableProximityComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNoticeableProximityComponent_C \ +static_assert(alignof(UNoticeableProximityComponent_C) == 0x000008, "Wrong alignment on UNoticeableProximityComponent_C"); \ +static_assert(sizeof(UNoticeableProximityComponent_C) == 0x000140, "Wrong size on UNoticeableProximityComponent_C"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UNoticeableProximityComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Probe_Range) == 0x0000A8, "Member 'UNoticeableProximityComponent_C::Probe_Range' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Vertical_Probe_Range) == 0x0000B0, "Member 'UNoticeableProximityComponent_C::Vertical_Probe_Range' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Probe_Radius) == 0x0000B8, "Member 'UNoticeableProximityComponent_C::Probe_Radius' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Min_Hide_Multiplier) == 0x0000C0, "Member 'UNoticeableProximityComponent_C::Min_Hide_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Vertical_Probe_Bonus) == 0x0000C8, "Member 'UNoticeableProximityComponent_C::Vertical_Probe_Bonus' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Radial_Probe_Bonus) == 0x0000D0, "Member 'UNoticeableProximityComponent_C::Radial_Probe_Bonus' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Radial_Probe_Count) == 0x0000D8, "Member 'UNoticeableProximityComponent_C::Radial_Probe_Count' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Hide_Interp_Speed) == 0x0000E0, "Member 'UNoticeableProximityComponent_C::Hide_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Trace_Channel) == 0x0000E8, "Member 'UNoticeableProximityComponent_C::Trace_Channel' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Debug_Trace) == 0x0000E9, "Member 'UNoticeableProximityComponent_C::Debug_Trace' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Current_Probe_Index) == 0x0000EC, "Member 'UNoticeableProximityComponent_C::Current_Probe_Index' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Probe_Results) == 0x0000F0, "Member 'UNoticeableProximityComponent_C::Probe_Results' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Parent_Capsule) == 0x000100, "Member 'UNoticeableProximityComponent_C::Parent_Capsule' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Current_Hide_Multiplier) == 0x000108, "Member 'UNoticeableProximityComponent_C::Current_Hide_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Ability_System_Component) == 0x000110, "Member 'UNoticeableProximityComponent_C::Ability_System_Component' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Debug_Text) == 0x000118, "Member 'UNoticeableProximityComponent_C::Debug_Text' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Interpolated_Hide_Multiplier) == 0x000120, "Member 'UNoticeableProximityComponent_C::Interpolated_Hide_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Min_Hide_Multiplier_Uncrouched) == 0x000128, "Member 'UNoticeableProximityComponent_C::Min_Hide_Multiplier_Uncrouched' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, Crouching) == 0x000130, "Member 'UNoticeableProximityComponent_C::Crouching' has a wrong offset!"); \ +static_assert(offsetof(UNoticeableProximityComponent_C, UncrouchNerf) == 0x000138, "Member 'UNoticeableProximityComponent_C::UncrouchNerf' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSynth1PatchCable \ +static_assert(alignof(FSynth1PatchCable) == 0x000004, "Wrong alignment on FSynth1PatchCable"); \ +static_assert(sizeof(FSynth1PatchCable) == 0x000008, "Wrong size on FSynth1PatchCable"); \ +static_assert(offsetof(FSynth1PatchCable, Depth) == 0x000000, "Member 'FSynth1PatchCable::Depth' has a wrong offset!"); \ +static_assert(offsetof(FSynth1PatchCable, destination) == 0x000004, "Member 'FSynth1PatchCable::destination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPatchId \ +static_assert(alignof(FPatchId) == 0x000004, "Wrong alignment on FPatchId"); \ +static_assert(sizeof(FPatchId) == 0x000004, "Wrong size on FPatchId"); \ +static_assert(offsetof(FPatchId, ID) == 0x000000, "Member 'FPatchId::ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEpicSynth1Patch \ +static_assert(alignof(FEpicSynth1Patch) == 0x000008, "Wrong alignment on FEpicSynth1Patch"); \ +static_assert(sizeof(FEpicSynth1Patch) == 0x000018, "Wrong size on FEpicSynth1Patch"); \ +static_assert(offsetof(FEpicSynth1Patch, PatchSource) == 0x000000, "Member 'FEpicSynth1Patch::PatchSource' has a wrong offset!"); \ +static_assert(offsetof(FEpicSynth1Patch, PatchCables) == 0x000008, "Member 'FEpicSynth1Patch::PatchCables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModularSynthPreset \ +static_assert(alignof(FModularSynthPreset) == 0x000008, "Wrong alignment on FModularSynthPreset"); \ +static_assert(sizeof(FModularSynthPreset) == 0x0000E0, "Wrong size on FModularSynthPreset"); \ +static_assert(offsetof(FModularSynthPreset, Osc1Type) == 0x00000C, "Member 'FModularSynthPreset::Osc1Type' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc1Gain) == 0x000010, "Member 'FModularSynthPreset::Osc1Gain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc1Octave) == 0x000014, "Member 'FModularSynthPreset::Osc1Octave' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc1Semitones) == 0x000018, "Member 'FModularSynthPreset::Osc1Semitones' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc1Cents) == 0x00001C, "Member 'FModularSynthPreset::Osc1Cents' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc1PulseWidth) == 0x000020, "Member 'FModularSynthPreset::Osc1PulseWidth' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2Type) == 0x000024, "Member 'FModularSynthPreset::Osc2Type' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2Gain) == 0x000028, "Member 'FModularSynthPreset::Osc2Gain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2Octave) == 0x00002C, "Member 'FModularSynthPreset::Osc2Octave' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2Semitones) == 0x000030, "Member 'FModularSynthPreset::Osc2Semitones' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2Cents) == 0x000034, "Member 'FModularSynthPreset::Osc2Cents' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Osc2PulseWidth) == 0x000038, "Member 'FModularSynthPreset::Osc2PulseWidth' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Portamento) == 0x00003C, "Member 'FModularSynthPreset::Portamento' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Spread) == 0x000044, "Member 'FModularSynthPreset::Spread' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Pan) == 0x000048, "Member 'FModularSynthPreset::Pan' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO1Frequency) == 0x00004C, "Member 'FModularSynthPreset::LFO1Frequency' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO1Gain) == 0x000050, "Member 'FModularSynthPreset::LFO1Gain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO1Type) == 0x000054, "Member 'FModularSynthPreset::LFO1Type' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO1Mode) == 0x000055, "Member 'FModularSynthPreset::LFO1Mode' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO1PatchType) == 0x000056, "Member 'FModularSynthPreset::LFO1PatchType' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO2Frequency) == 0x000058, "Member 'FModularSynthPreset::LFO2Frequency' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO2Gain) == 0x00005C, "Member 'FModularSynthPreset::LFO2Gain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO2Type) == 0x000060, "Member 'FModularSynthPreset::LFO2Type' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO2Mode) == 0x000061, "Member 'FModularSynthPreset::LFO2Mode' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, LFO2PatchType) == 0x000062, "Member 'FModularSynthPreset::LFO2PatchType' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, GainDb) == 0x000064, "Member 'FModularSynthPreset::GainDb' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, AttackTime) == 0x000068, "Member 'FModularSynthPreset::AttackTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, DecayTime) == 0x00006C, "Member 'FModularSynthPreset::DecayTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, SustainGain) == 0x000070, "Member 'FModularSynthPreset::SustainGain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ReleaseTime) == 0x000074, "Member 'FModularSynthPreset::ReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModEnvPatchType) == 0x000078, "Member 'FModularSynthPreset::ModEnvPatchType' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModEnvBiasPatchType) == 0x000079, "Member 'FModularSynthPreset::ModEnvBiasPatchType' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModulationEnvelopeDepth) == 0x000080, "Member 'FModularSynthPreset::ModulationEnvelopeDepth' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModulationEnvelopeAttackTime) == 0x000084, "Member 'FModularSynthPreset::ModulationEnvelopeAttackTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModulationEnvelopeDecayTime) == 0x000088, "Member 'FModularSynthPreset::ModulationEnvelopeDecayTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModulationEnvelopeSustainGain) == 0x00008C, "Member 'FModularSynthPreset::ModulationEnvelopeSustainGain' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ModulationEnvelopeReleaseTime) == 0x000090, "Member 'FModularSynthPreset::ModulationEnvelopeReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, FilterFrequency) == 0x000098, "Member 'FModularSynthPreset::FilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, FilterQ) == 0x00009C, "Member 'FModularSynthPreset::FilterQ' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, FilterType) == 0x0000A0, "Member 'FModularSynthPreset::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, FilterAlgorithm) == 0x0000A1, "Member 'FModularSynthPreset::FilterAlgorithm' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, StereoDelayMode) == 0x0000A8, "Member 'FModularSynthPreset::StereoDelayMode' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, StereoDelayTime) == 0x0000AC, "Member 'FModularSynthPreset::StereoDelayTime' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, StereoDelayFeedback) == 0x0000B0, "Member 'FModularSynthPreset::StereoDelayFeedback' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, StereoDelayWetlevel) == 0x0000B4, "Member 'FModularSynthPreset::StereoDelayWetlevel' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, StereoDelayRatio) == 0x0000B8, "Member 'FModularSynthPreset::StereoDelayRatio' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ChorusDepth) == 0x0000C0, "Member 'FModularSynthPreset::ChorusDepth' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ChorusFeedback) == 0x0000C4, "Member 'FModularSynthPreset::ChorusFeedback' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, ChorusFrequency) == 0x0000C8, "Member 'FModularSynthPreset::ChorusFrequency' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPreset, Patches) == 0x0000D0, "Member 'FModularSynthPreset::Patches' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FModularSynthPresetBankEntry \ +static_assert(alignof(FModularSynthPresetBankEntry) == 0x000008, "Wrong alignment on FModularSynthPresetBankEntry"); \ +static_assert(sizeof(FModularSynthPresetBankEntry) == 0x0000F0, "Wrong size on FModularSynthPresetBankEntry"); \ +static_assert(offsetof(FModularSynthPresetBankEntry, PresetName) == 0x000000, "Member 'FModularSynthPresetBankEntry::PresetName' has a wrong offset!"); \ +static_assert(offsetof(FModularSynthPresetBankEntry, Preset) == 0x000010, "Member 'FModularSynthPresetBankEntry::Preset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectBitCrusherBaseSettings \ +static_assert(alignof(FSourceEffectBitCrusherBaseSettings) == 0x000004, "Wrong alignment on FSourceEffectBitCrusherBaseSettings"); \ +static_assert(sizeof(FSourceEffectBitCrusherBaseSettings) == 0x000008, "Wrong size on FSourceEffectBitCrusherBaseSettings"); \ +static_assert(offsetof(FSourceEffectBitCrusherBaseSettings, SampleRate) == 0x000000, "Member 'FSourceEffectBitCrusherBaseSettings::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectBitCrusherBaseSettings, BitDepth) == 0x000004, "Member 'FSourceEffectBitCrusherBaseSettings::BitDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectBitCrusherSettings \ +static_assert(alignof(FSourceEffectBitCrusherSettings) == 0x000008, "Wrong alignment on FSourceEffectBitCrusherSettings"); \ +static_assert(sizeof(FSourceEffectBitCrusherSettings) == 0x0000C0, "Wrong size on FSourceEffectBitCrusherSettings"); \ +static_assert(offsetof(FSourceEffectBitCrusherSettings, CrushedSampleRate) == 0x000000, "Member 'FSourceEffectBitCrusherSettings::CrushedSampleRate' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectBitCrusherSettings, SampleRateModulation) == 0x000008, "Member 'FSourceEffectBitCrusherSettings::SampleRateModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectBitCrusherSettings, CrushedBits) == 0x000060, "Member 'FSourceEffectBitCrusherSettings::CrushedBits' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectBitCrusherSettings, BitModulation) == 0x000068, "Member 'FSourceEffectBitCrusherSettings::BitModulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectChorusBaseSettings \ +static_assert(alignof(FSourceEffectChorusBaseSettings) == 0x000004, "Wrong alignment on FSourceEffectChorusBaseSettings"); \ +static_assert(sizeof(FSourceEffectChorusBaseSettings) == 0x000018, "Wrong size on FSourceEffectChorusBaseSettings"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, Depth) == 0x000000, "Member 'FSourceEffectChorusBaseSettings::Depth' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, Frequency) == 0x000004, "Member 'FSourceEffectChorusBaseSettings::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, Feedback) == 0x000008, "Member 'FSourceEffectChorusBaseSettings::Feedback' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, WetLevel) == 0x00000C, "Member 'FSourceEffectChorusBaseSettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, DryLevel) == 0x000010, "Member 'FSourceEffectChorusBaseSettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusBaseSettings, Spread) == 0x000014, "Member 'FSourceEffectChorusBaseSettings::Spread' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectChorusSettings \ +static_assert(alignof(FSourceEffectChorusSettings) == 0x000008, "Wrong alignment on FSourceEffectChorusSettings"); \ +static_assert(sizeof(FSourceEffectChorusSettings) == 0x000228, "Wrong size on FSourceEffectChorusSettings"); \ +static_assert(offsetof(FSourceEffectChorusSettings, Depth) == 0x000000, "Member 'FSourceEffectChorusSettings::Depth' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, Frequency) == 0x000004, "Member 'FSourceEffectChorusSettings::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, Feedback) == 0x000008, "Member 'FSourceEffectChorusSettings::Feedback' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, WetLevel) == 0x00000C, "Member 'FSourceEffectChorusSettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, DryLevel) == 0x000010, "Member 'FSourceEffectChorusSettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, Spread) == 0x000014, "Member 'FSourceEffectChorusSettings::Spread' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, DepthModulation) == 0x000018, "Member 'FSourceEffectChorusSettings::DepthModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, FrequencyModulation) == 0x000070, "Member 'FSourceEffectChorusSettings::FrequencyModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, FeedbackModulation) == 0x0000C8, "Member 'FSourceEffectChorusSettings::FeedbackModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, WetModulation) == 0x000120, "Member 'FSourceEffectChorusSettings::WetModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, DryModulation) == 0x000178, "Member 'FSourceEffectChorusSettings::DryModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectChorusSettings, SpreadModulation) == 0x0001D0, "Member 'FSourceEffectChorusSettings::SpreadModulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectConvolutionReverbSettings \ +static_assert(alignof(FSourceEffectConvolutionReverbSettings) == 0x000004, "Wrong alignment on FSourceEffectConvolutionReverbSettings"); \ +static_assert(sizeof(FSourceEffectConvolutionReverbSettings) == 0x000010, "Wrong size on FSourceEffectConvolutionReverbSettings"); \ +static_assert(offsetof(FSourceEffectConvolutionReverbSettings, NormalizationVolumeDb) == 0x000000, "Member 'FSourceEffectConvolutionReverbSettings::NormalizationVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectConvolutionReverbSettings, WetVolumeDb) == 0x000004, "Member 'FSourceEffectConvolutionReverbSettings::WetVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectConvolutionReverbSettings, DryVolumeDb) == 0x000008, "Member 'FSourceEffectConvolutionReverbSettings::DryVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectConvolutionReverbSettings, bBypass) == 0x00000C, "Member 'FSourceEffectConvolutionReverbSettings::bBypass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectDynamicsProcessorSettings \ +static_assert(alignof(FSourceEffectDynamicsProcessorSettings) == 0x000004, "Wrong alignment on FSourceEffectDynamicsProcessorSettings"); \ +static_assert(sizeof(FSourceEffectDynamicsProcessorSettings) == 0x000028, "Wrong size on FSourceEffectDynamicsProcessorSettings"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, DynamicsProcessorType) == 0x000000, "Member 'FSourceEffectDynamicsProcessorSettings::DynamicsProcessorType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, PeakMode) == 0x000001, "Member 'FSourceEffectDynamicsProcessorSettings::PeakMode' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, LookAheadMsec) == 0x000004, "Member 'FSourceEffectDynamicsProcessorSettings::LookAheadMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, AttackTimeMsec) == 0x000008, "Member 'FSourceEffectDynamicsProcessorSettings::AttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, ReleaseTimeMsec) == 0x00000C, "Member 'FSourceEffectDynamicsProcessorSettings::ReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, ThresholdDb) == 0x000010, "Member 'FSourceEffectDynamicsProcessorSettings::ThresholdDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, Ratio) == 0x000014, "Member 'FSourceEffectDynamicsProcessorSettings::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, KneeBandwidthDb) == 0x000018, "Member 'FSourceEffectDynamicsProcessorSettings::KneeBandwidthDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, InputGainDb) == 0x00001C, "Member 'FSourceEffectDynamicsProcessorSettings::InputGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectDynamicsProcessorSettings, OutputGainDb) == 0x000020, "Member 'FSourceEffectDynamicsProcessorSettings::OutputGainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectEnvelopeFollowerSettings \ +static_assert(alignof(FSourceEffectEnvelopeFollowerSettings) == 0x000004, "Wrong alignment on FSourceEffectEnvelopeFollowerSettings"); \ +static_assert(sizeof(FSourceEffectEnvelopeFollowerSettings) == 0x00000C, "Wrong size on FSourceEffectEnvelopeFollowerSettings"); \ +static_assert(offsetof(FSourceEffectEnvelopeFollowerSettings, AttackTime) == 0x000000, "Member 'FSourceEffectEnvelopeFollowerSettings::AttackTime' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectEnvelopeFollowerSettings, ReleaseTime) == 0x000004, "Member 'FSourceEffectEnvelopeFollowerSettings::ReleaseTime' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectEnvelopeFollowerSettings, PeakMode) == 0x000008, "Member 'FSourceEffectEnvelopeFollowerSettings::PeakMode' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectEnvelopeFollowerSettings, bIsAnalogMode) == 0x000009, "Member 'FSourceEffectEnvelopeFollowerSettings::bIsAnalogMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectEQBand \ +static_assert(alignof(FSourceEffectEQBand) == 0x000004, "Wrong alignment on FSourceEffectEQBand"); \ +static_assert(sizeof(FSourceEffectEQBand) == 0x000010, "Wrong size on FSourceEffectEQBand"); \ +static_assert(offsetof(FSourceEffectEQBand, Frequency) == 0x000000, "Member 'FSourceEffectEQBand::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectEQBand, Bandwidth) == 0x000004, "Member 'FSourceEffectEQBand::Bandwidth' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectEQBand, GainDb) == 0x000008, "Member 'FSourceEffectEQBand::GainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectEQSettings \ +static_assert(alignof(FSourceEffectEQSettings) == 0x000008, "Wrong alignment on FSourceEffectEQSettings"); \ +static_assert(sizeof(FSourceEffectEQSettings) == 0x000010, "Wrong size on FSourceEffectEQSettings"); \ +static_assert(offsetof(FSourceEffectEQSettings, EQBands) == 0x000000, "Member 'FSourceEffectEQSettings::EQBands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectFilterAudioBusModulationSettings \ +static_assert(alignof(FSourceEffectFilterAudioBusModulationSettings) == 0x000008, "Wrong alignment on FSourceEffectFilterAudioBusModulationSettings"); \ +static_assert(sizeof(FSourceEffectFilterAudioBusModulationSettings) == 0x000028, "Wrong size on FSourceEffectFilterAudioBusModulationSettings"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, AudioBus) == 0x000000, "Member 'FSourceEffectFilterAudioBusModulationSettings::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, EnvelopeFollowerAttackTimeMsec) == 0x000008, "Member 'FSourceEffectFilterAudioBusModulationSettings::EnvelopeFollowerAttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, EnvelopeFollowerReleaseTimeMsec) == 0x00000C, "Member 'FSourceEffectFilterAudioBusModulationSettings::EnvelopeFollowerReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, EnvelopeGainMultiplier) == 0x000010, "Member 'FSourceEffectFilterAudioBusModulationSettings::EnvelopeGainMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, FilterParam) == 0x000014, "Member 'FSourceEffectFilterAudioBusModulationSettings::FilterParam' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, MinFrequencyModulation) == 0x000018, "Member 'FSourceEffectFilterAudioBusModulationSettings::MinFrequencyModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, MaxFrequencyModulation) == 0x00001C, "Member 'FSourceEffectFilterAudioBusModulationSettings::MaxFrequencyModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, MinResonanceModulation) == 0x000020, "Member 'FSourceEffectFilterAudioBusModulationSettings::MinResonanceModulation' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterAudioBusModulationSettings, MaxResonanceModulation) == 0x000024, "Member 'FSourceEffectFilterAudioBusModulationSettings::MaxResonanceModulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectFilterSettings \ +static_assert(alignof(FSourceEffectFilterSettings) == 0x000008, "Wrong alignment on FSourceEffectFilterSettings"); \ +static_assert(sizeof(FSourceEffectFilterSettings) == 0x000020, "Wrong size on FSourceEffectFilterSettings"); \ +static_assert(offsetof(FSourceEffectFilterSettings, FilterCircuit) == 0x000000, "Member 'FSourceEffectFilterSettings::FilterCircuit' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterSettings, FilterType) == 0x000001, "Member 'FSourceEffectFilterSettings::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterSettings, CutoffFrequency) == 0x000004, "Member 'FSourceEffectFilterSettings::CutoffFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterSettings, FilterQ) == 0x000008, "Member 'FSourceEffectFilterSettings::FilterQ' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFilterSettings, AudioBusModulation) == 0x000010, "Member 'FSourceEffectFilterSettings::AudioBusModulation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectFoldbackDistortionSettings \ +static_assert(alignof(FSourceEffectFoldbackDistortionSettings) == 0x000004, "Wrong alignment on FSourceEffectFoldbackDistortionSettings"); \ +static_assert(sizeof(FSourceEffectFoldbackDistortionSettings) == 0x00000C, "Wrong size on FSourceEffectFoldbackDistortionSettings"); \ +static_assert(offsetof(FSourceEffectFoldbackDistortionSettings, InputGainDb) == 0x000000, "Member 'FSourceEffectFoldbackDistortionSettings::InputGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFoldbackDistortionSettings, ThresholdDb) == 0x000004, "Member 'FSourceEffectFoldbackDistortionSettings::ThresholdDb' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectFoldbackDistortionSettings, OutputGainDb) == 0x000008, "Member 'FSourceEffectFoldbackDistortionSettings::OutputGainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectMidSideSpreaderSettings \ +static_assert(alignof(FSourceEffectMidSideSpreaderSettings) == 0x000004, "Wrong alignment on FSourceEffectMidSideSpreaderSettings"); \ +static_assert(sizeof(FSourceEffectMidSideSpreaderSettings) == 0x000008, "Wrong size on FSourceEffectMidSideSpreaderSettings"); \ +static_assert(offsetof(FSourceEffectMidSideSpreaderSettings, SpreadAmount) == 0x000000, "Member 'FSourceEffectMidSideSpreaderSettings::SpreadAmount' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMidSideSpreaderSettings, InputMode) == 0x000004, "Member 'FSourceEffectMidSideSpreaderSettings::InputMode' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMidSideSpreaderSettings, OutputMode) == 0x000005, "Member 'FSourceEffectMidSideSpreaderSettings::OutputMode' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMidSideSpreaderSettings, bEqualPower) == 0x000006, "Member 'FSourceEffectMidSideSpreaderSettings::bEqualPower' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectIndividualFilterSettings \ +static_assert(alignof(FSourceEffectIndividualFilterSettings) == 0x000004, "Wrong alignment on FSourceEffectIndividualFilterSettings"); \ +static_assert(sizeof(FSourceEffectIndividualFilterSettings) == 0x00000C, "Wrong size on FSourceEffectIndividualFilterSettings"); \ +static_assert(offsetof(FSourceEffectIndividualFilterSettings, FilterCircuit) == 0x000000, "Member 'FSourceEffectIndividualFilterSettings::FilterCircuit' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectIndividualFilterSettings, FilterType) == 0x000001, "Member 'FSourceEffectIndividualFilterSettings::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectIndividualFilterSettings, CutoffFrequency) == 0x000004, "Member 'FSourceEffectIndividualFilterSettings::CutoffFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectIndividualFilterSettings, FilterQ) == 0x000008, "Member 'FSourceEffectIndividualFilterSettings::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectMotionFilterModulationSettings \ +static_assert(alignof(FSourceEffectMotionFilterModulationSettings) == 0x000008, "Wrong alignment on FSourceEffectMotionFilterModulationSettings"); \ +static_assert(sizeof(FSourceEffectMotionFilterModulationSettings) == 0x000040, "Wrong size on FSourceEffectMotionFilterModulationSettings"); \ +static_assert(offsetof(FSourceEffectMotionFilterModulationSettings, ModulationSource) == 0x000000, "Member 'FSourceEffectMotionFilterModulationSettings::ModulationSource' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterModulationSettings, ModulationInputRange) == 0x000008, "Member 'FSourceEffectMotionFilterModulationSettings::ModulationInputRange' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterModulationSettings, ModulationOutputMinimumRange) == 0x000018, "Member 'FSourceEffectMotionFilterModulationSettings::ModulationOutputMinimumRange' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterModulationSettings, ModulationOutputMaximumRange) == 0x000028, "Member 'FSourceEffectMotionFilterModulationSettings::ModulationOutputMaximumRange' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterModulationSettings, UpdateEaseMS) == 0x000038, "Member 'FSourceEffectMotionFilterModulationSettings::UpdateEaseMS' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectMotionFilterSettings \ +static_assert(alignof(FSourceEffectMotionFilterSettings) == 0x000008, "Wrong alignment on FSourceEffectMotionFilterSettings"); \ +static_assert(sizeof(FSourceEffectMotionFilterSettings) == 0x000078, "Wrong size on FSourceEffectMotionFilterSettings"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, MotionFilterTopology) == 0x000000, "Member 'FSourceEffectMotionFilterSettings::MotionFilterTopology' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, MotionFilterMix) == 0x000004, "Member 'FSourceEffectMotionFilterSettings::MotionFilterMix' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, FilterASettings) == 0x000008, "Member 'FSourceEffectMotionFilterSettings::FilterASettings' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, FilterBSettings) == 0x000014, "Member 'FSourceEffectMotionFilterSettings::FilterBSettings' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, ModulationMappings) == 0x000020, "Member 'FSourceEffectMotionFilterSettings::ModulationMappings' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectMotionFilterSettings, DryVolumeDb) == 0x000070, "Member 'FSourceEffectMotionFilterSettings::DryVolumeDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectPannerSettings \ +static_assert(alignof(FSourceEffectPannerSettings) == 0x000004, "Wrong alignment on FSourceEffectPannerSettings"); \ +static_assert(sizeof(FSourceEffectPannerSettings) == 0x000008, "Wrong size on FSourceEffectPannerSettings"); \ +static_assert(offsetof(FSourceEffectPannerSettings, Spread) == 0x000000, "Member 'FSourceEffectPannerSettings::Spread' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectPannerSettings, Pan) == 0x000004, "Member 'FSourceEffectPannerSettings::Pan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectPhaserSettings \ +static_assert(alignof(FSourceEffectPhaserSettings) == 0x000004, "Wrong alignment on FSourceEffectPhaserSettings"); \ +static_assert(sizeof(FSourceEffectPhaserSettings) == 0x000010, "Wrong size on FSourceEffectPhaserSettings"); \ +static_assert(offsetof(FSourceEffectPhaserSettings, WetLevel) == 0x000000, "Member 'FSourceEffectPhaserSettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectPhaserSettings, Frequency) == 0x000004, "Member 'FSourceEffectPhaserSettings::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectPhaserSettings, Feedback) == 0x000008, "Member 'FSourceEffectPhaserSettings::Feedback' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectPhaserSettings, LFOType) == 0x00000C, "Member 'FSourceEffectPhaserSettings::LFOType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectPhaserSettings, UseQuadraturePhase) == 0x00000D, "Member 'FSourceEffectPhaserSettings::UseQuadraturePhase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectRingModulationSettings \ +static_assert(alignof(FSourceEffectRingModulationSettings) == 0x000008, "Wrong alignment on FSourceEffectRingModulationSettings"); \ +static_assert(sizeof(FSourceEffectRingModulationSettings) == 0x000020, "Wrong size on FSourceEffectRingModulationSettings"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, ModulatorType) == 0x000000, "Member 'FSourceEffectRingModulationSettings::ModulatorType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, Frequency) == 0x000004, "Member 'FSourceEffectRingModulationSettings::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, Depth) == 0x000008, "Member 'FSourceEffectRingModulationSettings::Depth' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, DryLevel) == 0x00000C, "Member 'FSourceEffectRingModulationSettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, WetLevel) == 0x000010, "Member 'FSourceEffectRingModulationSettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectRingModulationSettings, AudioBusModulator) == 0x000018, "Member 'FSourceEffectRingModulationSettings::AudioBusModulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectSimpleDelaySettings \ +static_assert(alignof(FSourceEffectSimpleDelaySettings) == 0x000004, "Wrong alignment on FSourceEffectSimpleDelaySettings"); \ +static_assert(sizeof(FSourceEffectSimpleDelaySettings) == 0x000018, "Wrong size on FSourceEffectSimpleDelaySettings"); \ +static_assert(offsetof(FSourceEffectSimpleDelaySettings, SpeedOfSound) == 0x000000, "Member 'FSourceEffectSimpleDelaySettings::SpeedOfSound' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectSimpleDelaySettings, DelayAmount) == 0x000004, "Member 'FSourceEffectSimpleDelaySettings::DelayAmount' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectSimpleDelaySettings, DryAmount) == 0x000008, "Member 'FSourceEffectSimpleDelaySettings::DryAmount' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectSimpleDelaySettings, WetAmount) == 0x00000C, "Member 'FSourceEffectSimpleDelaySettings::WetAmount' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectSimpleDelaySettings, Feedback) == 0x000010, "Member 'FSourceEffectSimpleDelaySettings::Feedback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectStereoDelaySettings \ +static_assert(alignof(FSourceEffectStereoDelaySettings) == 0x000004, "Wrong alignment on FSourceEffectStereoDelaySettings"); \ +static_assert(sizeof(FSourceEffectStereoDelaySettings) == 0x000024, "Wrong size on FSourceEffectStereoDelaySettings"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, DelayMode) == 0x000000, "Member 'FSourceEffectStereoDelaySettings::DelayMode' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, DelayTimeMsec) == 0x000004, "Member 'FSourceEffectStereoDelaySettings::DelayTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, Feedback) == 0x000008, "Member 'FSourceEffectStereoDelaySettings::Feedback' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, DelayRatio) == 0x00000C, "Member 'FSourceEffectStereoDelaySettings::DelayRatio' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, WetLevel) == 0x000010, "Member 'FSourceEffectStereoDelaySettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, DryLevel) == 0x000014, "Member 'FSourceEffectStereoDelaySettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, bFilterEnabled) == 0x000018, "Member 'FSourceEffectStereoDelaySettings::bFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, FilterType) == 0x000019, "Member 'FSourceEffectStereoDelaySettings::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, FilterFrequency) == 0x00001C, "Member 'FSourceEffectStereoDelaySettings::FilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectStereoDelaySettings, FilterQ) == 0x000020, "Member 'FSourceEffectStereoDelaySettings::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSourceEffectWaveShaperSettings \ +static_assert(alignof(FSourceEffectWaveShaperSettings) == 0x000004, "Wrong alignment on FSourceEffectWaveShaperSettings"); \ +static_assert(sizeof(FSourceEffectWaveShaperSettings) == 0x000008, "Wrong size on FSourceEffectWaveShaperSettings"); \ +static_assert(offsetof(FSourceEffectWaveShaperSettings, Amount) == 0x000000, "Member 'FSourceEffectWaveShaperSettings::Amount' has a wrong offset!"); \ +static_assert(offsetof(FSourceEffectWaveShaperSettings, OutputGainDb) == 0x000004, "Member 'FSourceEffectWaveShaperSettings::OutputGainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectConvolutionReverbSettings \ +static_assert(alignof(FSubmixEffectConvolutionReverbSettings) == 0x000008, "Wrong alignment on FSubmixEffectConvolutionReverbSettings"); \ +static_assert(sizeof(FSubmixEffectConvolutionReverbSettings) == 0x000030, "Wrong size on FSubmixEffectConvolutionReverbSettings"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, NormalizationVolumeDb) == 0x000000, "Member 'FSubmixEffectConvolutionReverbSettings::NormalizationVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, WetVolumeDb) == 0x000004, "Member 'FSubmixEffectConvolutionReverbSettings::WetVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, DryVolumeDb) == 0x000008, "Member 'FSubmixEffectConvolutionReverbSettings::DryVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, bBypass) == 0x00000C, "Member 'FSubmixEffectConvolutionReverbSettings::bBypass' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, bMixInputChannelFormatToImpulseResponseFormat) == 0x00000D, "Member 'FSubmixEffectConvolutionReverbSettings::bMixInputChannelFormatToImpulseResponseFormat' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, bMixReverbOutputToOutputChannelFormat) == 0x00000E, "Member 'FSubmixEffectConvolutionReverbSettings::bMixReverbOutputToOutputChannelFormat' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, SurroundRearChannelBleedDb) == 0x000010, "Member 'FSubmixEffectConvolutionReverbSettings::SurroundRearChannelBleedDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, bInvertRearChannelBleedPhase) == 0x000014, "Member 'FSubmixEffectConvolutionReverbSettings::bInvertRearChannelBleedPhase' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, bSurroundRearChannelFlip) == 0x000015, "Member 'FSubmixEffectConvolutionReverbSettings::bSurroundRearChannelFlip' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, SurroundRearChannelBleedAmount) == 0x000018, "Member 'FSubmixEffectConvolutionReverbSettings::SurroundRearChannelBleedAmount' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, ImpulseResponse) == 0x000020, "Member 'FSubmixEffectConvolutionReverbSettings::ImpulseResponse' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectConvolutionReverbSettings, AllowHardwareAcceleration) == 0x000028, "Member 'FSubmixEffectConvolutionReverbSettings::AllowHardwareAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectDelaySettings \ +static_assert(alignof(FSubmixEffectDelaySettings) == 0x000004, "Wrong alignment on FSubmixEffectDelaySettings"); \ +static_assert(sizeof(FSubmixEffectDelaySettings) == 0x00000C, "Wrong size on FSubmixEffectDelaySettings"); \ +static_assert(offsetof(FSubmixEffectDelaySettings, MaximumDelayLength) == 0x000000, "Member 'FSubmixEffectDelaySettings::MaximumDelayLength' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDelaySettings, InterpolationTime) == 0x000004, "Member 'FSubmixEffectDelaySettings::InterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectDelaySettings, DelayLength) == 0x000008, "Member 'FSubmixEffectDelaySettings::DelayLength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectFilterSettings \ +static_assert(alignof(FSubmixEffectFilterSettings) == 0x000004, "Wrong alignment on FSubmixEffectFilterSettings"); \ +static_assert(sizeof(FSubmixEffectFilterSettings) == 0x00000C, "Wrong size on FSubmixEffectFilterSettings"); \ +static_assert(offsetof(FSubmixEffectFilterSettings, FilterType) == 0x000000, "Member 'FSubmixEffectFilterSettings::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFilterSettings, FilterAlgorithm) == 0x000001, "Member 'FSubmixEffectFilterSettings::FilterAlgorithm' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFilterSettings, FilterFrequency) == 0x000004, "Member 'FSubmixEffectFilterSettings::FilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFilterSettings, FilterQ) == 0x000008, "Member 'FSubmixEffectFilterSettings::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectFlexiverbSettings \ +static_assert(alignof(FSubmixEffectFlexiverbSettings) == 0x000004, "Wrong alignment on FSubmixEffectFlexiverbSettings"); \ +static_assert(sizeof(FSubmixEffectFlexiverbSettings) == 0x000010, "Wrong size on FSubmixEffectFlexiverbSettings"); \ +static_assert(offsetof(FSubmixEffectFlexiverbSettings, PreDelay) == 0x000000, "Member 'FSubmixEffectFlexiverbSettings::PreDelay' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFlexiverbSettings, DecayTime) == 0x000004, "Member 'FSubmixEffectFlexiverbSettings::DecayTime' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFlexiverbSettings, RoomDampening) == 0x000008, "Member 'FSubmixEffectFlexiverbSettings::RoomDampening' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectFlexiverbSettings, Complexity) == 0x00000C, "Member 'FSubmixEffectFlexiverbSettings::Complexity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDynamicsBandSettings \ +static_assert(alignof(FDynamicsBandSettings) == 0x000004, "Wrong alignment on FDynamicsBandSettings"); \ +static_assert(sizeof(FDynamicsBandSettings) == 0x000020, "Wrong size on FDynamicsBandSettings"); \ +static_assert(offsetof(FDynamicsBandSettings, CrossoverTopFrequency) == 0x000000, "Member 'FDynamicsBandSettings::CrossoverTopFrequency' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, AttackTimeMsec) == 0x000004, "Member 'FDynamicsBandSettings::AttackTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, ReleaseTimeMsec) == 0x000008, "Member 'FDynamicsBandSettings::ReleaseTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, ThresholdDb) == 0x00000C, "Member 'FDynamicsBandSettings::ThresholdDb' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, Ratio) == 0x000010, "Member 'FDynamicsBandSettings::Ratio' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, KneeBandwidthDb) == 0x000014, "Member 'FDynamicsBandSettings::KneeBandwidthDb' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, InputGainDb) == 0x000018, "Member 'FDynamicsBandSettings::InputGainDb' has a wrong offset!"); \ +static_assert(offsetof(FDynamicsBandSettings, OutputGainDb) == 0x00001C, "Member 'FDynamicsBandSettings::OutputGainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectMultibandCompressorSettings \ +static_assert(alignof(FSubmixEffectMultibandCompressorSettings) == 0x000008, "Wrong alignment on FSubmixEffectMultibandCompressorSettings"); \ +static_assert(sizeof(FSubmixEffectMultibandCompressorSettings) == 0x000038, "Wrong size on FSubmixEffectMultibandCompressorSettings"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, DynamicsProcessorType) == 0x000000, "Member 'FSubmixEffectMultibandCompressorSettings::DynamicsProcessorType' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, PeakMode) == 0x000001, "Member 'FSubmixEffectMultibandCompressorSettings::PeakMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, LinkMode) == 0x000002, "Member 'FSubmixEffectMultibandCompressorSettings::LinkMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, LookAheadMsec) == 0x000004, "Member 'FSubmixEffectMultibandCompressorSettings::LookAheadMsec' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, bAnalogMode) == 0x000008, "Member 'FSubmixEffectMultibandCompressorSettings::bAnalogMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, bFourPole) == 0x000009, "Member 'FSubmixEffectMultibandCompressorSettings::bFourPole' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, bBypass) == 0x00000A, "Member 'FSubmixEffectMultibandCompressorSettings::bBypass' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, KeySource) == 0x00000B, "Member 'FSubmixEffectMultibandCompressorSettings::KeySource' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, ExternalAudioBus) == 0x000010, "Member 'FSubmixEffectMultibandCompressorSettings::ExternalAudioBus' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, ExternalSubmix) == 0x000018, "Member 'FSubmixEffectMultibandCompressorSettings::ExternalSubmix' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, KeyGainDb) == 0x000020, "Member 'FSubmixEffectMultibandCompressorSettings::KeyGainDb' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, bKeyAudition) == 0x000024, "Member 'FSubmixEffectMultibandCompressorSettings::bKeyAudition' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectMultibandCompressorSettings, Bands) == 0x000028, "Member 'FSubmixEffectMultibandCompressorSettings::Bands' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectStereoDelaySettings \ +static_assert(alignof(FSubmixEffectStereoDelaySettings) == 0x000004, "Wrong alignment on FSubmixEffectStereoDelaySettings"); \ +static_assert(sizeof(FSubmixEffectStereoDelaySettings) == 0x000024, "Wrong size on FSubmixEffectStereoDelaySettings"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, DelayMode) == 0x000000, "Member 'FSubmixEffectStereoDelaySettings::DelayMode' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, DelayTimeMsec) == 0x000004, "Member 'FSubmixEffectStereoDelaySettings::DelayTimeMsec' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, Feedback) == 0x000008, "Member 'FSubmixEffectStereoDelaySettings::Feedback' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, DelayRatio) == 0x00000C, "Member 'FSubmixEffectStereoDelaySettings::DelayRatio' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, WetLevel) == 0x000010, "Member 'FSubmixEffectStereoDelaySettings::WetLevel' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, DryLevel) == 0x000014, "Member 'FSubmixEffectStereoDelaySettings::DryLevel' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, bFilterEnabled) == 0x000018, "Member 'FSubmixEffectStereoDelaySettings::bFilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, FilterType) == 0x000019, "Member 'FSubmixEffectStereoDelaySettings::FilterType' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, FilterFrequency) == 0x00001C, "Member 'FSubmixEffectStereoDelaySettings::FilterFrequency' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoDelaySettings, FilterQ) == 0x000020, "Member 'FSubmixEffectStereoDelaySettings::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectStereoToQuadSettings \ +static_assert(alignof(FSubmixEffectStereoToQuadSettings) == 0x000004, "Wrong alignment on FSubmixEffectStereoToQuadSettings"); \ +static_assert(sizeof(FSubmixEffectStereoToQuadSettings) == 0x000008, "Wrong size on FSubmixEffectStereoToQuadSettings"); \ +static_assert(offsetof(FSubmixEffectStereoToQuadSettings, bFlipChannels) == 0x000000, "Member 'FSubmixEffectStereoToQuadSettings::bFlipChannels' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectStereoToQuadSettings, RearChannelGain) == 0x000004, "Member 'FSubmixEffectStereoToQuadSettings::RearChannelGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTapDelayInfo \ +static_assert(alignof(FTapDelayInfo) == 0x000004, "Wrong alignment on FTapDelayInfo"); \ +static_assert(sizeof(FTapDelayInfo) == 0x000018, "Wrong size on FTapDelayInfo"); \ +static_assert(offsetof(FTapDelayInfo, TapLineMode) == 0x000000, "Member 'FTapDelayInfo::TapLineMode' has a wrong offset!"); \ +static_assert(offsetof(FTapDelayInfo, DelayLength) == 0x000004, "Member 'FTapDelayInfo::DelayLength' has a wrong offset!"); \ +static_assert(offsetof(FTapDelayInfo, Gain) == 0x000008, "Member 'FTapDelayInfo::Gain' has a wrong offset!"); \ +static_assert(offsetof(FTapDelayInfo, OutputChannel) == 0x00000C, "Member 'FTapDelayInfo::OutputChannel' has a wrong offset!"); \ +static_assert(offsetof(FTapDelayInfo, PanInDegrees) == 0x000010, "Member 'FTapDelayInfo::PanInDegrees' has a wrong offset!"); \ +static_assert(offsetof(FTapDelayInfo, TapId) == 0x000014, "Member 'FTapDelayInfo::TapId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubmixEffectTapDelaySettings \ +static_assert(alignof(FSubmixEffectTapDelaySettings) == 0x000008, "Wrong alignment on FSubmixEffectTapDelaySettings"); \ +static_assert(sizeof(FSubmixEffectTapDelaySettings) == 0x000018, "Wrong size on FSubmixEffectTapDelaySettings"); \ +static_assert(offsetof(FSubmixEffectTapDelaySettings, MaximumDelayLength) == 0x000000, "Member 'FSubmixEffectTapDelaySettings::MaximumDelayLength' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectTapDelaySettings, InterpolationTime) == 0x000004, "Member 'FSubmixEffectTapDelaySettings::InterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(FSubmixEffectTapDelaySettings, Taps) == 0x000008, "Member 'FSubmixEffectTapDelaySettings::Taps' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSynth2DSliderStyle \ +static_assert(alignof(FSynth2DSliderStyle) == 0x000010, "Wrong alignment on FSynth2DSliderStyle"); \ +static_assert(sizeof(FSynth2DSliderStyle) == 0x000430, "Wrong size on FSynth2DSliderStyle"); \ +static_assert(offsetof(FSynth2DSliderStyle, NormalThumbImage) == 0x000010, "Member 'FSynth2DSliderStyle::NormalThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FSynth2DSliderStyle, DisabledThumbImage) == 0x0000E0, "Member 'FSynth2DSliderStyle::DisabledThumbImage' has a wrong offset!"); \ +static_assert(offsetof(FSynth2DSliderStyle, NormalBarImage) == 0x0001B0, "Member 'FSynth2DSliderStyle::NormalBarImage' has a wrong offset!"); \ +static_assert(offsetof(FSynth2DSliderStyle, DisabledBarImage) == 0x000280, "Member 'FSynth2DSliderStyle::DisabledBarImage' has a wrong offset!"); \ +static_assert(offsetof(FSynth2DSliderStyle, BackgroundImage) == 0x000350, "Member 'FSynth2DSliderStyle::BackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(FSynth2DSliderStyle, BarThickness) == 0x000420, "Member 'FSynth2DSliderStyle::BarThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSynthKnobStyle \ +static_assert(alignof(FSynthKnobStyle) == 0x000010, "Wrong alignment on FSynthKnobStyle"); \ +static_assert(sizeof(FSynthKnobStyle) == 0x000360, "Wrong size on FSynthKnobStyle"); \ +static_assert(offsetof(FSynthKnobStyle, LargeKnob) == 0x000010, "Member 'FSynthKnobStyle::LargeKnob' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, LargeKnobOverlay) == 0x0000E0, "Member 'FSynthKnobStyle::LargeKnobOverlay' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, MediumKnob) == 0x0001B0, "Member 'FSynthKnobStyle::MediumKnob' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, MediumKnobOverlay) == 0x000280, "Member 'FSynthKnobStyle::MediumKnobOverlay' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, MinValueAngle) == 0x000350, "Member 'FSynthKnobStyle::MinValueAngle' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, MaxValueAngle) == 0x000354, "Member 'FSynthKnobStyle::MaxValueAngle' has a wrong offset!"); \ +static_assert(offsetof(FSynthKnobStyle, KnobSize) == 0x000358, "Member 'FSynthKnobStyle::KnobSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSynthSlateStyle \ +static_assert(alignof(FSynthSlateStyle) == 0x000008, "Wrong alignment on FSynthSlateStyle"); \ +static_assert(sizeof(FSynthSlateStyle) == 0x000010, "Wrong size on FSynthSlateStyle"); \ +static_assert(offsetof(FSynthSlateStyle, SizeType) == 0x000008, "Member 'FSynthSlateStyle::SizeType' has a wrong offset!"); \ +static_assert(offsetof(FSynthSlateStyle, ColorStyle) == 0x000009, "Member 'FSynthSlateStyle::ColorStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioImpulseResponse \ +static_assert(alignof(UAudioImpulseResponse) == 0x000008, "Wrong alignment on UAudioImpulseResponse"); \ +static_assert(sizeof(UAudioImpulseResponse) == 0x000058, "Wrong size on UAudioImpulseResponse"); \ +static_assert(offsetof(UAudioImpulseResponse, ImpulseResponse) == 0x000028, "Member 'UAudioImpulseResponse::ImpulseResponse' has a wrong offset!"); \ +static_assert(offsetof(UAudioImpulseResponse, NumChannels) == 0x000038, "Member 'UAudioImpulseResponse::NumChannels' has a wrong offset!"); \ +static_assert(offsetof(UAudioImpulseResponse, SampleRate) == 0x00003C, "Member 'UAudioImpulseResponse::SampleRate' has a wrong offset!"); \ +static_assert(offsetof(UAudioImpulseResponse, NormalizationVolumeDb) == 0x000040, "Member 'UAudioImpulseResponse::NormalizationVolumeDb' has a wrong offset!"); \ +static_assert(offsetof(UAudioImpulseResponse, bTrueStereo) == 0x000044, "Member 'UAudioImpulseResponse::bTrueStereo' has a wrong offset!"); \ +static_assert(offsetof(UAudioImpulseResponse, IRData) == 0x000048, "Member 'UAudioImpulseResponse::IRData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModularSynthPresetBank \ +static_assert(alignof(UModularSynthPresetBank) == 0x000008, "Wrong alignment on UModularSynthPresetBank"); \ +static_assert(sizeof(UModularSynthPresetBank) == 0x000038, "Wrong size on UModularSynthPresetBank"); \ +static_assert(offsetof(UModularSynthPresetBank, Presets) == 0x000028, "Member 'UModularSynthPresetBank::Presets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthLibrary_AddModularSynthPresetToBankAsset \ +static_assert(alignof(ModularSynthLibrary_AddModularSynthPresetToBankAsset) == 0x000008, "Wrong alignment on ModularSynthLibrary_AddModularSynthPresetToBankAsset"); \ +static_assert(sizeof(ModularSynthLibrary_AddModularSynthPresetToBankAsset) == 0x0000F8, "Wrong size on ModularSynthLibrary_AddModularSynthPresetToBankAsset"); \ +static_assert(offsetof(ModularSynthLibrary_AddModularSynthPresetToBankAsset, InBank) == 0x000000, "Member 'ModularSynthLibrary_AddModularSynthPresetToBankAsset::InBank' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthLibrary_AddModularSynthPresetToBankAsset, Preset) == 0x000008, "Member 'ModularSynthLibrary_AddModularSynthPresetToBankAsset::Preset' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthLibrary_AddModularSynthPresetToBankAsset, PresetName) == 0x0000E8, "Member 'ModularSynthLibrary_AddModularSynthPresetToBankAsset::PresetName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModularSynthLibrary \ +static_assert(alignof(UModularSynthLibrary) == 0x000008, "Wrong alignment on UModularSynthLibrary"); \ +static_assert(sizeof(UModularSynthLibrary) == 0x000028, "Wrong size on UModularSynthLibrary"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_CreatePatch \ +static_assert(alignof(ModularSynthComponent_CreatePatch) == 0x000008, "Wrong alignment on ModularSynthComponent_CreatePatch"); \ +static_assert(sizeof(ModularSynthComponent_CreatePatch) == 0x000020, "Wrong size on ModularSynthComponent_CreatePatch"); \ +static_assert(offsetof(ModularSynthComponent_CreatePatch, PatchSource) == 0x000000, "Member 'ModularSynthComponent_CreatePatch::PatchSource' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_CreatePatch, PatchCables) == 0x000008, "Member 'ModularSynthComponent_CreatePatch::PatchCables' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_CreatePatch, bEnableByDefault) == 0x000018, "Member 'ModularSynthComponent_CreatePatch::bEnableByDefault' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_CreatePatch, ReturnValue) == 0x00001C, "Member 'ModularSynthComponent_CreatePatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_NoteOff \ +static_assert(alignof(ModularSynthComponent_NoteOff) == 0x000004, "Wrong alignment on ModularSynthComponent_NoteOff"); \ +static_assert(sizeof(ModularSynthComponent_NoteOff) == 0x000008, "Wrong size on ModularSynthComponent_NoteOff"); \ +static_assert(offsetof(ModularSynthComponent_NoteOff, Note) == 0x000000, "Member 'ModularSynthComponent_NoteOff::Note' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_NoteOff, bAllNotesOff) == 0x000004, "Member 'ModularSynthComponent_NoteOff::bAllNotesOff' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_NoteOff, bKillAllNotes) == 0x000005, "Member 'ModularSynthComponent_NoteOff::bKillAllNotes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_NoteOn \ +static_assert(alignof(ModularSynthComponent_NoteOn) == 0x000004, "Wrong alignment on ModularSynthComponent_NoteOn"); \ +static_assert(sizeof(ModularSynthComponent_NoteOn) == 0x00000C, "Wrong size on ModularSynthComponent_NoteOn"); \ +static_assert(offsetof(ModularSynthComponent_NoteOn, Note) == 0x000000, "Member 'ModularSynthComponent_NoteOn::Note' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_NoteOn, Velocity) == 0x000004, "Member 'ModularSynthComponent_NoteOn::Velocity' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_NoteOn, Duration) == 0x000008, "Member 'ModularSynthComponent_NoteOn::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetAttackTime \ +static_assert(alignof(ModularSynthComponent_SetAttackTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetAttackTime"); \ +static_assert(sizeof(ModularSynthComponent_SetAttackTime) == 0x000004, "Wrong size on ModularSynthComponent_SetAttackTime"); \ +static_assert(offsetof(ModularSynthComponent_SetAttackTime, AttackTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetAttackTime::AttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetChorusDepth \ +static_assert(alignof(ModularSynthComponent_SetChorusDepth) == 0x000004, "Wrong alignment on ModularSynthComponent_SetChorusDepth"); \ +static_assert(sizeof(ModularSynthComponent_SetChorusDepth) == 0x000004, "Wrong size on ModularSynthComponent_SetChorusDepth"); \ +static_assert(offsetof(ModularSynthComponent_SetChorusDepth, Depth) == 0x000000, "Member 'ModularSynthComponent_SetChorusDepth::Depth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetChorusEnabled \ +static_assert(alignof(ModularSynthComponent_SetChorusEnabled) == 0x000001, "Wrong alignment on ModularSynthComponent_SetChorusEnabled"); \ +static_assert(sizeof(ModularSynthComponent_SetChorusEnabled) == 0x000001, "Wrong size on ModularSynthComponent_SetChorusEnabled"); \ +static_assert(offsetof(ModularSynthComponent_SetChorusEnabled, EnableChorus) == 0x000000, "Member 'ModularSynthComponent_SetChorusEnabled::EnableChorus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetChorusFeedback \ +static_assert(alignof(ModularSynthComponent_SetChorusFeedback) == 0x000004, "Wrong alignment on ModularSynthComponent_SetChorusFeedback"); \ +static_assert(sizeof(ModularSynthComponent_SetChorusFeedback) == 0x000004, "Wrong size on ModularSynthComponent_SetChorusFeedback"); \ +static_assert(offsetof(ModularSynthComponent_SetChorusFeedback, Feedback) == 0x000000, "Member 'ModularSynthComponent_SetChorusFeedback::Feedback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetChorusFrequency \ +static_assert(alignof(ModularSynthComponent_SetChorusFrequency) == 0x000004, "Wrong alignment on ModularSynthComponent_SetChorusFrequency"); \ +static_assert(sizeof(ModularSynthComponent_SetChorusFrequency) == 0x000004, "Wrong size on ModularSynthComponent_SetChorusFrequency"); \ +static_assert(offsetof(ModularSynthComponent_SetChorusFrequency, Frequency) == 0x000000, "Member 'ModularSynthComponent_SetChorusFrequency::Frequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetDecayTime \ +static_assert(alignof(ModularSynthComponent_SetDecayTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetDecayTime"); \ +static_assert(sizeof(ModularSynthComponent_SetDecayTime) == 0x000004, "Wrong size on ModularSynthComponent_SetDecayTime"); \ +static_assert(offsetof(ModularSynthComponent_SetDecayTime, DecayTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetDecayTime::DecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetEnableLegato \ +static_assert(alignof(ModularSynthComponent_SetEnableLegato) == 0x000001, "Wrong alignment on ModularSynthComponent_SetEnableLegato"); \ +static_assert(sizeof(ModularSynthComponent_SetEnableLegato) == 0x000001, "Wrong size on ModularSynthComponent_SetEnableLegato"); \ +static_assert(offsetof(ModularSynthComponent_SetEnableLegato, LegatoEnabled) == 0x000000, "Member 'ModularSynthComponent_SetEnableLegato::LegatoEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetEnablePatch \ +static_assert(alignof(ModularSynthComponent_SetEnablePatch) == 0x000004, "Wrong alignment on ModularSynthComponent_SetEnablePatch"); \ +static_assert(sizeof(ModularSynthComponent_SetEnablePatch) == 0x000008, "Wrong size on ModularSynthComponent_SetEnablePatch"); \ +static_assert(offsetof(ModularSynthComponent_SetEnablePatch, PatchId) == 0x000000, "Member 'ModularSynthComponent_SetEnablePatch::PatchId' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetEnablePatch, bIsEnabled) == 0x000004, "Member 'ModularSynthComponent_SetEnablePatch::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetEnablePatch, ReturnValue) == 0x000005, "Member 'ModularSynthComponent_SetEnablePatch::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetEnablePolyphony \ +static_assert(alignof(ModularSynthComponent_SetEnablePolyphony) == 0x000001, "Wrong alignment on ModularSynthComponent_SetEnablePolyphony"); \ +static_assert(sizeof(ModularSynthComponent_SetEnablePolyphony) == 0x000001, "Wrong size on ModularSynthComponent_SetEnablePolyphony"); \ +static_assert(offsetof(ModularSynthComponent_SetEnablePolyphony, bEnablePolyphony) == 0x000000, "Member 'ModularSynthComponent_SetEnablePolyphony::bEnablePolyphony' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetEnableRetrigger \ +static_assert(alignof(ModularSynthComponent_SetEnableRetrigger) == 0x000001, "Wrong alignment on ModularSynthComponent_SetEnableRetrigger"); \ +static_assert(sizeof(ModularSynthComponent_SetEnableRetrigger) == 0x000001, "Wrong size on ModularSynthComponent_SetEnableRetrigger"); \ +static_assert(offsetof(ModularSynthComponent_SetEnableRetrigger, RetriggerEnabled) == 0x000000, "Member 'ModularSynthComponent_SetEnableRetrigger::RetriggerEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetEnableUnison \ +static_assert(alignof(ModularSynthComponent_SetEnableUnison) == 0x000001, "Wrong alignment on ModularSynthComponent_SetEnableUnison"); \ +static_assert(sizeof(ModularSynthComponent_SetEnableUnison) == 0x000001, "Wrong size on ModularSynthComponent_SetEnableUnison"); \ +static_assert(offsetof(ModularSynthComponent_SetEnableUnison, EnableUnison) == 0x000000, "Member 'ModularSynthComponent_SetEnableUnison::EnableUnison' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterAlgorithm \ +static_assert(alignof(ModularSynthComponent_SetFilterAlgorithm) == 0x000001, "Wrong alignment on ModularSynthComponent_SetFilterAlgorithm"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterAlgorithm) == 0x000001, "Wrong size on ModularSynthComponent_SetFilterAlgorithm"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterAlgorithm, FilterAlgorithm) == 0x000000, "Member 'ModularSynthComponent_SetFilterAlgorithm::FilterAlgorithm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterFrequency \ +static_assert(alignof(ModularSynthComponent_SetFilterFrequency) == 0x000004, "Wrong alignment on ModularSynthComponent_SetFilterFrequency"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterFrequency) == 0x000004, "Wrong size on ModularSynthComponent_SetFilterFrequency"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterFrequency, FilterFrequencyHz) == 0x000000, "Member 'ModularSynthComponent_SetFilterFrequency::FilterFrequencyHz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterFrequencyMod \ +static_assert(alignof(ModularSynthComponent_SetFilterFrequencyMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetFilterFrequencyMod"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterFrequencyMod) == 0x000004, "Wrong size on ModularSynthComponent_SetFilterFrequencyMod"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterFrequencyMod, FilterFrequencyHz) == 0x000000, "Member 'ModularSynthComponent_SetFilterFrequencyMod::FilterFrequencyHz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterQ \ +static_assert(alignof(ModularSynthComponent_SetFilterQ) == 0x000004, "Wrong alignment on ModularSynthComponent_SetFilterQ"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterQ) == 0x000004, "Wrong size on ModularSynthComponent_SetFilterQ"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterQ, FilterQ) == 0x000000, "Member 'ModularSynthComponent_SetFilterQ::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterQMod \ +static_assert(alignof(ModularSynthComponent_SetFilterQMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetFilterQMod"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterQMod) == 0x000004, "Wrong size on ModularSynthComponent_SetFilterQMod"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterQMod, FilterQ) == 0x000000, "Member 'ModularSynthComponent_SetFilterQMod::FilterQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetFilterType \ +static_assert(alignof(ModularSynthComponent_SetFilterType) == 0x000001, "Wrong alignment on ModularSynthComponent_SetFilterType"); \ +static_assert(sizeof(ModularSynthComponent_SetFilterType) == 0x000001, "Wrong size on ModularSynthComponent_SetFilterType"); \ +static_assert(offsetof(ModularSynthComponent_SetFilterType, FilterType) == 0x000000, "Member 'ModularSynthComponent_SetFilterType::FilterType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetGainDb \ +static_assert(alignof(ModularSynthComponent_SetGainDb) == 0x000004, "Wrong alignment on ModularSynthComponent_SetGainDb"); \ +static_assert(sizeof(ModularSynthComponent_SetGainDb) == 0x000004, "Wrong size on ModularSynthComponent_SetGainDb"); \ +static_assert(offsetof(ModularSynthComponent_SetGainDb, GainDb) == 0x000000, "Member 'ModularSynthComponent_SetGainDb::GainDb' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOFrequency \ +static_assert(alignof(ModularSynthComponent_SetLFOFrequency) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOFrequency"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOFrequency) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOFrequency"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOFrequency, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOFrequency::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOFrequency, FrequencyHz) == 0x000004, "Member 'ModularSynthComponent_SetLFOFrequency::FrequencyHz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOFrequencyMod \ +static_assert(alignof(ModularSynthComponent_SetLFOFrequencyMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOFrequencyMod"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOFrequencyMod) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOFrequencyMod"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOFrequencyMod, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOFrequencyMod::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOFrequencyMod, FrequencyModHz) == 0x000004, "Member 'ModularSynthComponent_SetLFOFrequencyMod::FrequencyModHz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOGain \ +static_assert(alignof(ModularSynthComponent_SetLFOGain) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOGain"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOGain) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOGain"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOGain, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOGain::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOGain, Gain) == 0x000004, "Member 'ModularSynthComponent_SetLFOGain::Gain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOGainMod \ +static_assert(alignof(ModularSynthComponent_SetLFOGainMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOGainMod"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOGainMod) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOGainMod"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOGainMod, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOGainMod::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOGainMod, GainMod) == 0x000004, "Member 'ModularSynthComponent_SetLFOGainMod::GainMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOMode \ +static_assert(alignof(ModularSynthComponent_SetLFOMode) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOMode"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOMode) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOMode"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOMode, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOMode::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOMode, LFOMode) == 0x000004, "Member 'ModularSynthComponent_SetLFOMode::LFOMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOPatch \ +static_assert(alignof(ModularSynthComponent_SetLFOPatch) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOPatch"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOPatch) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOPatch"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOPatch, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOPatch::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOPatch, LFOPatchType) == 0x000004, "Member 'ModularSynthComponent_SetLFOPatch::LFOPatchType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetLFOType \ +static_assert(alignof(ModularSynthComponent_SetLFOType) == 0x000004, "Wrong alignment on ModularSynthComponent_SetLFOType"); \ +static_assert(sizeof(ModularSynthComponent_SetLFOType) == 0x000008, "Wrong size on ModularSynthComponent_SetLFOType"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOType, LFOIndex) == 0x000000, "Member 'ModularSynthComponent_SetLFOType::LFOIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetLFOType, LFOType) == 0x000004, "Member 'ModularSynthComponent_SetLFOType::LFOType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvAttackTime \ +static_assert(alignof(ModularSynthComponent_SetModEnvAttackTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetModEnvAttackTime"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvAttackTime) == 0x000004, "Wrong size on ModularSynthComponent_SetModEnvAttackTime"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvAttackTime, AttackTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetModEnvAttackTime::AttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvBiasInvert \ +static_assert(alignof(ModularSynthComponent_SetModEnvBiasInvert) == 0x000001, "Wrong alignment on ModularSynthComponent_SetModEnvBiasInvert"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvBiasInvert) == 0x000001, "Wrong size on ModularSynthComponent_SetModEnvBiasInvert"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvBiasInvert, bInvert) == 0x000000, "Member 'ModularSynthComponent_SetModEnvBiasInvert::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvBiasPatch \ +static_assert(alignof(ModularSynthComponent_SetModEnvBiasPatch) == 0x000001, "Wrong alignment on ModularSynthComponent_SetModEnvBiasPatch"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvBiasPatch) == 0x000001, "Wrong size on ModularSynthComponent_SetModEnvBiasPatch"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvBiasPatch, InPatchType) == 0x000000, "Member 'ModularSynthComponent_SetModEnvBiasPatch::InPatchType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvDecayTime \ +static_assert(alignof(ModularSynthComponent_SetModEnvDecayTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetModEnvDecayTime"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvDecayTime) == 0x000004, "Wrong size on ModularSynthComponent_SetModEnvDecayTime"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvDecayTime, DecayTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetModEnvDecayTime::DecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvDepth \ +static_assert(alignof(ModularSynthComponent_SetModEnvDepth) == 0x000004, "Wrong alignment on ModularSynthComponent_SetModEnvDepth"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvDepth) == 0x000004, "Wrong size on ModularSynthComponent_SetModEnvDepth"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvDepth, Depth) == 0x000000, "Member 'ModularSynthComponent_SetModEnvDepth::Depth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvInvert \ +static_assert(alignof(ModularSynthComponent_SetModEnvInvert) == 0x000001, "Wrong alignment on ModularSynthComponent_SetModEnvInvert"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvInvert) == 0x000001, "Wrong size on ModularSynthComponent_SetModEnvInvert"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvInvert, bInvert) == 0x000000, "Member 'ModularSynthComponent_SetModEnvInvert::bInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvPatch \ +static_assert(alignof(ModularSynthComponent_SetModEnvPatch) == 0x000001, "Wrong alignment on ModularSynthComponent_SetModEnvPatch"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvPatch) == 0x000001, "Wrong size on ModularSynthComponent_SetModEnvPatch"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvPatch, InPatchType) == 0x000000, "Member 'ModularSynthComponent_SetModEnvPatch::InPatchType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvReleaseTime \ +static_assert(alignof(ModularSynthComponent_SetModEnvReleaseTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetModEnvReleaseTime"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvReleaseTime) == 0x000004, "Wrong size on ModularSynthComponent_SetModEnvReleaseTime"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvReleaseTime, Release) == 0x000000, "Member 'ModularSynthComponent_SetModEnvReleaseTime::Release' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetModEnvSustainGain \ +static_assert(alignof(ModularSynthComponent_SetModEnvSustainGain) == 0x000004, "Wrong alignment on ModularSynthComponent_SetModEnvSustainGain"); \ +static_assert(sizeof(ModularSynthComponent_SetModEnvSustainGain) == 0x000004, "Wrong size on ModularSynthComponent_SetModEnvSustainGain"); \ +static_assert(offsetof(ModularSynthComponent_SetModEnvSustainGain, SustainGain) == 0x000000, "Member 'ModularSynthComponent_SetModEnvSustainGain::SustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscCents \ +static_assert(alignof(ModularSynthComponent_SetOscCents) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscCents"); \ +static_assert(sizeof(ModularSynthComponent_SetOscCents) == 0x000008, "Wrong size on ModularSynthComponent_SetOscCents"); \ +static_assert(offsetof(ModularSynthComponent_SetOscCents, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscCents::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscCents, Cents) == 0x000004, "Member 'ModularSynthComponent_SetOscCents::Cents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscFrequencyMod \ +static_assert(alignof(ModularSynthComponent_SetOscFrequencyMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscFrequencyMod"); \ +static_assert(sizeof(ModularSynthComponent_SetOscFrequencyMod) == 0x000008, "Wrong size on ModularSynthComponent_SetOscFrequencyMod"); \ +static_assert(offsetof(ModularSynthComponent_SetOscFrequencyMod, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscFrequencyMod::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscFrequencyMod, OscFreqMod) == 0x000004, "Member 'ModularSynthComponent_SetOscFrequencyMod::OscFreqMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscGain \ +static_assert(alignof(ModularSynthComponent_SetOscGain) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscGain"); \ +static_assert(sizeof(ModularSynthComponent_SetOscGain) == 0x000008, "Wrong size on ModularSynthComponent_SetOscGain"); \ +static_assert(offsetof(ModularSynthComponent_SetOscGain, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscGain::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscGain, OscGain) == 0x000004, "Member 'ModularSynthComponent_SetOscGain::OscGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscGainMod \ +static_assert(alignof(ModularSynthComponent_SetOscGainMod) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscGainMod"); \ +static_assert(sizeof(ModularSynthComponent_SetOscGainMod) == 0x000008, "Wrong size on ModularSynthComponent_SetOscGainMod"); \ +static_assert(offsetof(ModularSynthComponent_SetOscGainMod, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscGainMod::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscGainMod, OscGainMod) == 0x000004, "Member 'ModularSynthComponent_SetOscGainMod::OscGainMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscOctave \ +static_assert(alignof(ModularSynthComponent_SetOscOctave) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscOctave"); \ +static_assert(sizeof(ModularSynthComponent_SetOscOctave) == 0x000008, "Wrong size on ModularSynthComponent_SetOscOctave"); \ +static_assert(offsetof(ModularSynthComponent_SetOscOctave, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscOctave::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscOctave, Octave) == 0x000004, "Member 'ModularSynthComponent_SetOscOctave::Octave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscPulsewidth \ +static_assert(alignof(ModularSynthComponent_SetOscPulsewidth) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscPulsewidth"); \ +static_assert(sizeof(ModularSynthComponent_SetOscPulsewidth) == 0x000008, "Wrong size on ModularSynthComponent_SetOscPulsewidth"); \ +static_assert(offsetof(ModularSynthComponent_SetOscPulsewidth, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscPulsewidth::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscPulsewidth, Pulsewidth) == 0x000004, "Member 'ModularSynthComponent_SetOscPulsewidth::Pulsewidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscSemitones \ +static_assert(alignof(ModularSynthComponent_SetOscSemitones) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscSemitones"); \ +static_assert(sizeof(ModularSynthComponent_SetOscSemitones) == 0x000008, "Wrong size on ModularSynthComponent_SetOscSemitones"); \ +static_assert(offsetof(ModularSynthComponent_SetOscSemitones, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscSemitones::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscSemitones, Semitones) == 0x000004, "Member 'ModularSynthComponent_SetOscSemitones::Semitones' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscSync \ +static_assert(alignof(ModularSynthComponent_SetOscSync) == 0x000001, "Wrong alignment on ModularSynthComponent_SetOscSync"); \ +static_assert(sizeof(ModularSynthComponent_SetOscSync) == 0x000001, "Wrong size on ModularSynthComponent_SetOscSync"); \ +static_assert(offsetof(ModularSynthComponent_SetOscSync, bIsSynced) == 0x000000, "Member 'ModularSynthComponent_SetOscSync::bIsSynced' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetOscType \ +static_assert(alignof(ModularSynthComponent_SetOscType) == 0x000004, "Wrong alignment on ModularSynthComponent_SetOscType"); \ +static_assert(sizeof(ModularSynthComponent_SetOscType) == 0x000008, "Wrong size on ModularSynthComponent_SetOscType"); \ +static_assert(offsetof(ModularSynthComponent_SetOscType, OscIndex) == 0x000000, "Member 'ModularSynthComponent_SetOscType::OscIndex' has a wrong offset!"); \ +static_assert(offsetof(ModularSynthComponent_SetOscType, OscType) == 0x000004, "Member 'ModularSynthComponent_SetOscType::OscType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetPan \ +static_assert(alignof(ModularSynthComponent_SetPan) == 0x000004, "Wrong alignment on ModularSynthComponent_SetPan"); \ +static_assert(sizeof(ModularSynthComponent_SetPan) == 0x000004, "Wrong size on ModularSynthComponent_SetPan"); \ +static_assert(offsetof(ModularSynthComponent_SetPan, Pan) == 0x000000, "Member 'ModularSynthComponent_SetPan::Pan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetPitchBend \ +static_assert(alignof(ModularSynthComponent_SetPitchBend) == 0x000004, "Wrong alignment on ModularSynthComponent_SetPitchBend"); \ +static_assert(sizeof(ModularSynthComponent_SetPitchBend) == 0x000004, "Wrong size on ModularSynthComponent_SetPitchBend"); \ +static_assert(offsetof(ModularSynthComponent_SetPitchBend, PitchBend) == 0x000000, "Member 'ModularSynthComponent_SetPitchBend::PitchBend' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetPortamento \ +static_assert(alignof(ModularSynthComponent_SetPortamento) == 0x000004, "Wrong alignment on ModularSynthComponent_SetPortamento"); \ +static_assert(sizeof(ModularSynthComponent_SetPortamento) == 0x000004, "Wrong size on ModularSynthComponent_SetPortamento"); \ +static_assert(offsetof(ModularSynthComponent_SetPortamento, Portamento) == 0x000000, "Member 'ModularSynthComponent_SetPortamento::Portamento' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetReleaseTime \ +static_assert(alignof(ModularSynthComponent_SetReleaseTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetReleaseTime"); \ +static_assert(sizeof(ModularSynthComponent_SetReleaseTime) == 0x000004, "Wrong size on ModularSynthComponent_SetReleaseTime"); \ +static_assert(offsetof(ModularSynthComponent_SetReleaseTime, ReleaseTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetReleaseTime::ReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetSpread \ +static_assert(alignof(ModularSynthComponent_SetSpread) == 0x000004, "Wrong alignment on ModularSynthComponent_SetSpread"); \ +static_assert(sizeof(ModularSynthComponent_SetSpread) == 0x000004, "Wrong size on ModularSynthComponent_SetSpread"); \ +static_assert(offsetof(ModularSynthComponent_SetSpread, Spread) == 0x000000, "Member 'ModularSynthComponent_SetSpread::Spread' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayFeedback \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayFeedback) == 0x000004, "Wrong alignment on ModularSynthComponent_SetStereoDelayFeedback"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayFeedback) == 0x000004, "Wrong size on ModularSynthComponent_SetStereoDelayFeedback"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayFeedback, DelayFeedback) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayFeedback::DelayFeedback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayIsEnabled \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayIsEnabled) == 0x000001, "Wrong alignment on ModularSynthComponent_SetStereoDelayIsEnabled"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayIsEnabled) == 0x000001, "Wrong size on ModularSynthComponent_SetStereoDelayIsEnabled"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayIsEnabled, StereoDelayEnabled) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayIsEnabled::StereoDelayEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayMode \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayMode) == 0x000001, "Wrong alignment on ModularSynthComponent_SetStereoDelayMode"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayMode) == 0x000001, "Wrong size on ModularSynthComponent_SetStereoDelayMode"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayMode, StereoDelayMode) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayMode::StereoDelayMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayRatio \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayRatio) == 0x000004, "Wrong alignment on ModularSynthComponent_SetStereoDelayRatio"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayRatio) == 0x000004, "Wrong size on ModularSynthComponent_SetStereoDelayRatio"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayRatio, DelayRatio) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayRatio::DelayRatio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayTime \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayTime) == 0x000004, "Wrong alignment on ModularSynthComponent_SetStereoDelayTime"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayTime) == 0x000004, "Wrong size on ModularSynthComponent_SetStereoDelayTime"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayTime, DelayTimeMsec) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayTime::DelayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetStereoDelayWetlevel \ +static_assert(alignof(ModularSynthComponent_SetStereoDelayWetlevel) == 0x000004, "Wrong alignment on ModularSynthComponent_SetStereoDelayWetlevel"); \ +static_assert(sizeof(ModularSynthComponent_SetStereoDelayWetlevel) == 0x000004, "Wrong size on ModularSynthComponent_SetStereoDelayWetlevel"); \ +static_assert(offsetof(ModularSynthComponent_SetStereoDelayWetlevel, DelayWetlevel) == 0x000000, "Member 'ModularSynthComponent_SetStereoDelayWetlevel::DelayWetlevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetSustainGain \ +static_assert(alignof(ModularSynthComponent_SetSustainGain) == 0x000004, "Wrong alignment on ModularSynthComponent_SetSustainGain"); \ +static_assert(sizeof(ModularSynthComponent_SetSustainGain) == 0x000004, "Wrong size on ModularSynthComponent_SetSustainGain"); \ +static_assert(offsetof(ModularSynthComponent_SetSustainGain, SustainGain) == 0x000000, "Member 'ModularSynthComponent_SetSustainGain::SustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModularSynthComponent_SetSynthPreset \ +static_assert(alignof(ModularSynthComponent_SetSynthPreset) == 0x000008, "Wrong alignment on ModularSynthComponent_SetSynthPreset"); \ +static_assert(sizeof(ModularSynthComponent_SetSynthPreset) == 0x0000E0, "Wrong size on ModularSynthComponent_SetSynthPreset"); \ +static_assert(offsetof(ModularSynthComponent_SetSynthPreset, SynthPreset) == 0x000000, "Member 'ModularSynthComponent_SetSynthPreset::SynthPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModularSynthComponent \ +static_assert(alignof(UModularSynthComponent) == 0x000010, "Wrong alignment on UModularSynthComponent"); \ +static_assert(sizeof(UModularSynthComponent) == 0x000FD0, "Wrong size on UModularSynthComponent"); \ +static_assert(offsetof(UModularSynthComponent, VoiceCount) == 0x000900, "Member 'UModularSynthComponent::VoiceCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetBitModulator \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetBitModulator) == 0x000008, "Wrong alignment on SourceEffectBitCrusherPreset_SetBitModulator"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetBitModulator) == 0x000008, "Wrong size on SourceEffectBitCrusherPreset_SetBitModulator"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetBitModulator, Modulator) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetBitModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetBitModulators \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetBitModulators) == 0x000008, "Wrong alignment on SourceEffectBitCrusherPreset_SetBitModulators"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetBitModulators) == 0x000050, "Wrong size on SourceEffectBitCrusherPreset_SetBitModulators"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetBitModulators, InModulators) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetBitModulators::InModulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetBits \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetBits) == 0x000004, "Wrong alignment on SourceEffectBitCrusherPreset_SetBits"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetBits) == 0x000004, "Wrong size on SourceEffectBitCrusherPreset_SetBits"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetBits, Bits) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetBits::Bits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetModulationSettings \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetModulationSettings) == 0x000008, "Wrong alignment on SourceEffectBitCrusherPreset_SetModulationSettings"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetModulationSettings) == 0x0000C0, "Wrong size on SourceEffectBitCrusherPreset_SetModulationSettings"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetModulationSettings, ModulationSettings) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetModulationSettings::ModulationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetSampleRate \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetSampleRate) == 0x000004, "Wrong alignment on SourceEffectBitCrusherPreset_SetSampleRate"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetSampleRate) == 0x000004, "Wrong size on SourceEffectBitCrusherPreset_SetSampleRate"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetSampleRate, SampleRate) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetSampleRate::SampleRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetSampleRateModulator \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetSampleRateModulator) == 0x000008, "Wrong alignment on SourceEffectBitCrusherPreset_SetSampleRateModulator"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetSampleRateModulator) == 0x000008, "Wrong size on SourceEffectBitCrusherPreset_SetSampleRateModulator"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetSampleRateModulator, Modulator) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetSampleRateModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetSampleRateModulators \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetSampleRateModulators) == 0x000008, "Wrong alignment on SourceEffectBitCrusherPreset_SetSampleRateModulators"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetSampleRateModulators) == 0x000050, "Wrong size on SourceEffectBitCrusherPreset_SetSampleRateModulators"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetSampleRateModulators, InModulators) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetSampleRateModulators::InModulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectBitCrusherPreset_SetSettings \ +static_assert(alignof(SourceEffectBitCrusherPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectBitCrusherPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectBitCrusherPreset_SetSettings) == 0x000008, "Wrong size on SourceEffectBitCrusherPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectBitCrusherPreset_SetSettings, Settings_0) == 0x000000, "Member 'SourceEffectBitCrusherPreset_SetSettings::Settings_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectBitCrusherPreset \ +static_assert(alignof(USourceEffectBitCrusherPreset) == 0x000008, "Wrong alignment on USourceEffectBitCrusherPreset"); \ +static_assert(sizeof(USourceEffectBitCrusherPreset) == 0x000210, "Wrong size on USourceEffectBitCrusherPreset"); \ +static_assert(offsetof(USourceEffectBitCrusherPreset, Settings) == 0x000150, "Member 'USourceEffectBitCrusherPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDepth \ +static_assert(alignof(SourceEffectChorusPreset_SetDepth) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetDepth"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDepth) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetDepth"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDepth, Depth) == 0x000000, "Member 'SourceEffectChorusPreset_SetDepth::Depth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDepthModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetDepthModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetDepthModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDepthModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetDepthModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDepthModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetDepthModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDepthModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetDepthModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetDepthModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDepthModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetDepthModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDepthModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetDepthModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDry \ +static_assert(alignof(SourceEffectChorusPreset_SetDry) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetDry"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDry) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetDry"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDry, DryAmount) == 0x000000, "Member 'SourceEffectChorusPreset_SetDry::DryAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDryModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetDryModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetDryModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDryModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetDryModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDryModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetDryModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetDryModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetDryModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetDryModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetDryModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetDryModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetDryModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetDryModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFeedback \ +static_assert(alignof(SourceEffectChorusPreset_SetFeedback) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetFeedback"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFeedback) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetFeedback"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFeedback, Feedback) == 0x000000, "Member 'SourceEffectChorusPreset_SetFeedback::Feedback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFeedbackModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetFeedbackModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetFeedbackModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFeedbackModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetFeedbackModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFeedbackModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetFeedbackModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFeedbackModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetFeedbackModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetFeedbackModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFeedbackModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetFeedbackModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFeedbackModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetFeedbackModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFrequency \ +static_assert(alignof(SourceEffectChorusPreset_SetFrequency) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetFrequency"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFrequency) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetFrequency"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFrequency, Frequency) == 0x000000, "Member 'SourceEffectChorusPreset_SetFrequency::Frequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFrequencyModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetFrequencyModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetFrequencyModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFrequencyModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetFrequencyModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFrequencyModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetFrequencyModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetFrequencyModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetFrequencyModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetFrequencyModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetFrequencyModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetFrequencyModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetFrequencyModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetFrequencyModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetModulationSettings \ +static_assert(alignof(SourceEffectChorusPreset_SetModulationSettings) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetModulationSettings"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetModulationSettings) == 0x000228, "Wrong size on SourceEffectChorusPreset_SetModulationSettings"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetModulationSettings, ModulationSettings) == 0x000000, "Member 'SourceEffectChorusPreset_SetModulationSettings::ModulationSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetSettings \ +static_assert(alignof(SourceEffectChorusPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetSettings) == 0x000018, "Wrong size on SourceEffectChorusPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetSettings, Settings_0) == 0x000000, "Member 'SourceEffectChorusPreset_SetSettings::Settings_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetSpread \ +static_assert(alignof(SourceEffectChorusPreset_SetSpread) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetSpread"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetSpread) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetSpread"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetSpread, Spread) == 0x000000, "Member 'SourceEffectChorusPreset_SetSpread::Spread' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetSpreadModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetSpreadModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetSpreadModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetSpreadModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetSpreadModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetSpreadModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetSpreadModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetSpreadModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetSpreadModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetSpreadModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetSpreadModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetSpreadModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetSpreadModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetSpreadModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetWet \ +static_assert(alignof(SourceEffectChorusPreset_SetWet) == 0x000004, "Wrong alignment on SourceEffectChorusPreset_SetWet"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetWet) == 0x000004, "Wrong size on SourceEffectChorusPreset_SetWet"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetWet, WetAmount) == 0x000000, "Member 'SourceEffectChorusPreset_SetWet::WetAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetWetModulator \ +static_assert(alignof(SourceEffectChorusPreset_SetWetModulator) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetWetModulator"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetWetModulator) == 0x000008, "Wrong size on SourceEffectChorusPreset_SetWetModulator"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetWetModulator, Modulator) == 0x000000, "Member 'SourceEffectChorusPreset_SetWetModulator::Modulator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectChorusPreset_SetWetModulators \ +static_assert(alignof(SourceEffectChorusPreset_SetWetModulators) == 0x000008, "Wrong alignment on SourceEffectChorusPreset_SetWetModulators"); \ +static_assert(sizeof(SourceEffectChorusPreset_SetWetModulators) == 0x000050, "Wrong size on SourceEffectChorusPreset_SetWetModulators"); \ +static_assert(offsetof(SourceEffectChorusPreset_SetWetModulators, Modulators) == 0x000000, "Member 'SourceEffectChorusPreset_SetWetModulators::Modulators' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectChorusPreset \ +static_assert(alignof(USourceEffectChorusPreset) == 0x000008, "Wrong alignment on USourceEffectChorusPreset"); \ +static_assert(sizeof(USourceEffectChorusPreset) == 0x0004E0, "Wrong size on USourceEffectChorusPreset"); \ +static_assert(offsetof(USourceEffectChorusPreset, Settings) == 0x0002B8, "Member 'USourceEffectChorusPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectConvolutionReverbPreset_SetImpulseResponse \ +static_assert(alignof(SourceEffectConvolutionReverbPreset_SetImpulseResponse) == 0x000008, "Wrong alignment on SourceEffectConvolutionReverbPreset_SetImpulseResponse"); \ +static_assert(sizeof(SourceEffectConvolutionReverbPreset_SetImpulseResponse) == 0x000008, "Wrong size on SourceEffectConvolutionReverbPreset_SetImpulseResponse"); \ +static_assert(offsetof(SourceEffectConvolutionReverbPreset_SetImpulseResponse, InImpulseResponse) == 0x000000, "Member 'SourceEffectConvolutionReverbPreset_SetImpulseResponse::InImpulseResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectConvolutionReverbPreset_SetSettings \ +static_assert(alignof(SourceEffectConvolutionReverbPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectConvolutionReverbPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectConvolutionReverbPreset_SetSettings) == 0x000010, "Wrong size on SourceEffectConvolutionReverbPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectConvolutionReverbPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectConvolutionReverbPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectConvolutionReverbPreset \ +static_assert(alignof(USourceEffectConvolutionReverbPreset) == 0x000008, "Wrong alignment on USourceEffectConvolutionReverbPreset"); \ +static_assert(sizeof(USourceEffectConvolutionReverbPreset) == 0x0000C0, "Wrong size on USourceEffectConvolutionReverbPreset"); \ +static_assert(offsetof(USourceEffectConvolutionReverbPreset, ImpulseResponse) == 0x000068, "Member 'USourceEffectConvolutionReverbPreset::ImpulseResponse' has a wrong offset!"); \ +static_assert(offsetof(USourceEffectConvolutionReverbPreset, Settings) == 0x000070, "Member 'USourceEffectConvolutionReverbPreset::Settings' has a wrong offset!"); \ +static_assert(offsetof(USourceEffectConvolutionReverbPreset, BlockSize) == 0x000080, "Member 'USourceEffectConvolutionReverbPreset::BlockSize' has a wrong offset!"); \ +static_assert(offsetof(USourceEffectConvolutionReverbPreset, bEnableHardwareAcceleration) == 0x000081, "Member 'USourceEffectConvolutionReverbPreset::bEnableHardwareAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectDynamicsProcessorPreset_SetSettings \ +static_assert(alignof(SourceEffectDynamicsProcessorPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectDynamicsProcessorPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectDynamicsProcessorPreset_SetSettings) == 0x000028, "Wrong size on SourceEffectDynamicsProcessorPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectDynamicsProcessorPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectDynamicsProcessorPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectDynamicsProcessorPreset \ +static_assert(alignof(USourceEffectDynamicsProcessorPreset) == 0x000008, "Wrong alignment on USourceEffectDynamicsProcessorPreset"); \ +static_assert(sizeof(USourceEffectDynamicsProcessorPreset) == 0x0000E0, "Wrong size on USourceEffectDynamicsProcessorPreset"); \ +static_assert(offsetof(USourceEffectDynamicsProcessorPreset, Settings) == 0x0000B8, "Member 'USourceEffectDynamicsProcessorPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnvelopeFollowerListener \ +static_assert(alignof(UEnvelopeFollowerListener) == 0x000008, "Wrong alignment on UEnvelopeFollowerListener"); \ +static_assert(sizeof(UEnvelopeFollowerListener) == 0x0000C0, "Wrong size on UEnvelopeFollowerListener"); \ +static_assert(offsetof(UEnvelopeFollowerListener, OnEnvelopeFollowerUpdate) == 0x0000A0, "Member 'UEnvelopeFollowerListener::OnEnvelopeFollowerUpdate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener \ +static_assert(alignof(SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener) == 0x000008, "Wrong alignment on SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener"); \ +static_assert(sizeof(SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener) == 0x000008, "Wrong size on SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener"); \ +static_assert(offsetof(SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener, EnvelopeFollowerListener) == 0x000000, "Member 'SourceEffectEnvelopeFollowerPreset_RegisterEnvelopeFollowerListener::EnvelopeFollowerListener' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectEnvelopeFollowerPreset_SetSettings \ +static_assert(alignof(SourceEffectEnvelopeFollowerPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectEnvelopeFollowerPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectEnvelopeFollowerPreset_SetSettings) == 0x00000C, "Wrong size on SourceEffectEnvelopeFollowerPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectEnvelopeFollowerPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectEnvelopeFollowerPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener \ +static_assert(alignof(SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener) == 0x000008, "Wrong alignment on SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener"); \ +static_assert(sizeof(SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener) == 0x000008, "Wrong size on SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener"); \ +static_assert(offsetof(SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener, EnvelopeFollowerListener) == 0x000000, "Member 'SourceEffectEnvelopeFollowerPreset_UnregisterEnvelopeFollowerListener::EnvelopeFollowerListener' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectEnvelopeFollowerPreset \ +static_assert(alignof(USourceEffectEnvelopeFollowerPreset) == 0x000008, "Wrong alignment on USourceEffectEnvelopeFollowerPreset"); \ +static_assert(sizeof(USourceEffectEnvelopeFollowerPreset) == 0x0000A8, "Wrong size on USourceEffectEnvelopeFollowerPreset"); \ +static_assert(offsetof(USourceEffectEnvelopeFollowerPreset, Settings) == 0x00009C, "Member 'USourceEffectEnvelopeFollowerPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectEQPreset_SetSettings \ +static_assert(alignof(SourceEffectEQPreset_SetSettings) == 0x000008, "Wrong alignment on SourceEffectEQPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectEQPreset_SetSettings) == 0x000010, "Wrong size on SourceEffectEQPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectEQPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectEQPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectEQPreset \ +static_assert(alignof(USourceEffectEQPreset) == 0x000008, "Wrong alignment on USourceEffectEQPreset"); \ +static_assert(sizeof(USourceEffectEQPreset) == 0x0000B0, "Wrong size on USourceEffectEQPreset"); \ +static_assert(offsetof(USourceEffectEQPreset, Settings) == 0x0000A0, "Member 'USourceEffectEQPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectFilterPreset_SetSettings \ +static_assert(alignof(SourceEffectFilterPreset_SetSettings) == 0x000008, "Wrong alignment on SourceEffectFilterPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectFilterPreset_SetSettings) == 0x000020, "Wrong size on SourceEffectFilterPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectFilterPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectFilterPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectFilterPreset \ +static_assert(alignof(USourceEffectFilterPreset) == 0x000008, "Wrong alignment on USourceEffectFilterPreset"); \ +static_assert(sizeof(USourceEffectFilterPreset) == 0x0000D0, "Wrong size on USourceEffectFilterPreset"); \ +static_assert(offsetof(USourceEffectFilterPreset, Settings) == 0x0000B0, "Member 'USourceEffectFilterPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectFoldbackDistortionPreset_SetSettings \ +static_assert(alignof(SourceEffectFoldbackDistortionPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectFoldbackDistortionPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectFoldbackDistortionPreset_SetSettings) == 0x00000C, "Wrong size on SourceEffectFoldbackDistortionPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectFoldbackDistortionPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectFoldbackDistortionPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectFoldbackDistortionPreset \ +static_assert(alignof(USourceEffectFoldbackDistortionPreset) == 0x000008, "Wrong alignment on USourceEffectFoldbackDistortionPreset"); \ +static_assert(sizeof(USourceEffectFoldbackDistortionPreset) == 0x0000A8, "Wrong size on USourceEffectFoldbackDistortionPreset"); \ +static_assert(offsetof(USourceEffectFoldbackDistortionPreset, Settings) == 0x00009C, "Member 'USourceEffectFoldbackDistortionPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectMidSideSpreaderPreset_SetSettings \ +static_assert(alignof(SourceEffectMidSideSpreaderPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectMidSideSpreaderPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectMidSideSpreaderPreset_SetSettings) == 0x000008, "Wrong size on SourceEffectMidSideSpreaderPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectMidSideSpreaderPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectMidSideSpreaderPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectMidSideSpreaderPreset \ +static_assert(alignof(USourceEffectMidSideSpreaderPreset) == 0x000008, "Wrong alignment on USourceEffectMidSideSpreaderPreset"); \ +static_assert(sizeof(USourceEffectMidSideSpreaderPreset) == 0x0000A0, "Wrong size on USourceEffectMidSideSpreaderPreset"); \ +static_assert(offsetof(USourceEffectMidSideSpreaderPreset, Settings) == 0x000098, "Member 'USourceEffectMidSideSpreaderPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectMotionFilterPreset_SetSettings \ +static_assert(alignof(SourceEffectMotionFilterPreset_SetSettings) == 0x000008, "Wrong alignment on SourceEffectMotionFilterPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectMotionFilterPreset_SetSettings) == 0x000078, "Wrong size on SourceEffectMotionFilterPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectMotionFilterPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectMotionFilterPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectMotionFilterPreset \ +static_assert(alignof(USourceEffectMotionFilterPreset) == 0x000008, "Wrong alignment on USourceEffectMotionFilterPreset"); \ +static_assert(sizeof(USourceEffectMotionFilterPreset) == 0x000180, "Wrong size on USourceEffectMotionFilterPreset"); \ +static_assert(offsetof(USourceEffectMotionFilterPreset, Settings) == 0x000108, "Member 'USourceEffectMotionFilterPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectPannerPreset_SetSettings \ +static_assert(alignof(SourceEffectPannerPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectPannerPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectPannerPreset_SetSettings) == 0x000008, "Wrong size on SourceEffectPannerPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectPannerPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectPannerPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectPannerPreset \ +static_assert(alignof(USourceEffectPannerPreset) == 0x000008, "Wrong alignment on USourceEffectPannerPreset"); \ +static_assert(sizeof(USourceEffectPannerPreset) == 0x0000A0, "Wrong size on USourceEffectPannerPreset"); \ +static_assert(offsetof(USourceEffectPannerPreset, Settings) == 0x000098, "Member 'USourceEffectPannerPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectPhaserPreset_SetSettings \ +static_assert(alignof(SourceEffectPhaserPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectPhaserPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectPhaserPreset_SetSettings) == 0x000010, "Wrong size on SourceEffectPhaserPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectPhaserPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectPhaserPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectPhaserPreset \ +static_assert(alignof(USourceEffectPhaserPreset) == 0x000008, "Wrong alignment on USourceEffectPhaserPreset"); \ +static_assert(sizeof(USourceEffectPhaserPreset) == 0x0000B0, "Wrong size on USourceEffectPhaserPreset"); \ +static_assert(offsetof(USourceEffectPhaserPreset, Settings) == 0x0000A0, "Member 'USourceEffectPhaserPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectRingModulationPreset_SetSettings \ +static_assert(alignof(SourceEffectRingModulationPreset_SetSettings) == 0x000008, "Wrong alignment on SourceEffectRingModulationPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectRingModulationPreset_SetSettings) == 0x000020, "Wrong size on SourceEffectRingModulationPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectRingModulationPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectRingModulationPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectRingModulationPreset \ +static_assert(alignof(USourceEffectRingModulationPreset) == 0x000008, "Wrong alignment on USourceEffectRingModulationPreset"); \ +static_assert(sizeof(USourceEffectRingModulationPreset) == 0x0000D0, "Wrong size on USourceEffectRingModulationPreset"); \ +static_assert(offsetof(USourceEffectRingModulationPreset, Settings) == 0x0000B0, "Member 'USourceEffectRingModulationPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectSimpleDelayPreset_SetSettings \ +static_assert(alignof(SourceEffectSimpleDelayPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectSimpleDelayPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectSimpleDelayPreset_SetSettings) == 0x000018, "Wrong size on SourceEffectSimpleDelayPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectSimpleDelayPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectSimpleDelayPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectSimpleDelayPreset \ +static_assert(alignof(USourceEffectSimpleDelayPreset) == 0x000008, "Wrong alignment on USourceEffectSimpleDelayPreset"); \ +static_assert(sizeof(USourceEffectSimpleDelayPreset) == 0x0000C0, "Wrong size on USourceEffectSimpleDelayPreset"); \ +static_assert(offsetof(USourceEffectSimpleDelayPreset, Settings) == 0x0000A8, "Member 'USourceEffectSimpleDelayPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectStereoDelayPreset_SetSettings \ +static_assert(alignof(SourceEffectStereoDelayPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectStereoDelayPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectStereoDelayPreset_SetSettings) == 0x000024, "Wrong size on SourceEffectStereoDelayPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectStereoDelayPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectStereoDelayPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectStereoDelayPreset \ +static_assert(alignof(USourceEffectStereoDelayPreset) == 0x000008, "Wrong alignment on USourceEffectStereoDelayPreset"); \ +static_assert(sizeof(USourceEffectStereoDelayPreset) == 0x0000D8, "Wrong size on USourceEffectStereoDelayPreset"); \ +static_assert(offsetof(USourceEffectStereoDelayPreset, Settings) == 0x0000B4, "Member 'USourceEffectStereoDelayPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SourceEffectWaveShaperPreset_SetSettings \ +static_assert(alignof(SourceEffectWaveShaperPreset_SetSettings) == 0x000004, "Wrong alignment on SourceEffectWaveShaperPreset_SetSettings"); \ +static_assert(sizeof(SourceEffectWaveShaperPreset_SetSettings) == 0x000008, "Wrong size on SourceEffectWaveShaperPreset_SetSettings"); \ +static_assert(offsetof(SourceEffectWaveShaperPreset_SetSettings, InSettings) == 0x000000, "Member 'SourceEffectWaveShaperPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USourceEffectWaveShaperPreset \ +static_assert(alignof(USourceEffectWaveShaperPreset) == 0x000008, "Wrong alignment on USourceEffectWaveShaperPreset"); \ +static_assert(sizeof(USourceEffectWaveShaperPreset) == 0x0000A0, "Wrong size on USourceEffectWaveShaperPreset"); \ +static_assert(offsetof(USourceEffectWaveShaperPreset, Settings) == 0x000098, "Member 'USourceEffectWaveShaperPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectConvolutionReverbPreset_SetImpulseResponse \ +static_assert(alignof(SubmixEffectConvolutionReverbPreset_SetImpulseResponse) == 0x000008, "Wrong alignment on SubmixEffectConvolutionReverbPreset_SetImpulseResponse"); \ +static_assert(sizeof(SubmixEffectConvolutionReverbPreset_SetImpulseResponse) == 0x000008, "Wrong size on SubmixEffectConvolutionReverbPreset_SetImpulseResponse"); \ +static_assert(offsetof(SubmixEffectConvolutionReverbPreset_SetImpulseResponse, InImpulseResponse) == 0x000000, "Member 'SubmixEffectConvolutionReverbPreset_SetImpulseResponse::InImpulseResponse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectConvolutionReverbPreset_SetSettings \ +static_assert(alignof(SubmixEffectConvolutionReverbPreset_SetSettings) == 0x000008, "Wrong alignment on SubmixEffectConvolutionReverbPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectConvolutionReverbPreset_SetSettings) == 0x000030, "Wrong size on SubmixEffectConvolutionReverbPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectConvolutionReverbPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectConvolutionReverbPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectConvolutionReverbPreset \ +static_assert(alignof(USubmixEffectConvolutionReverbPreset) == 0x000008, "Wrong alignment on USubmixEffectConvolutionReverbPreset"); \ +static_assert(sizeof(USubmixEffectConvolutionReverbPreset) == 0x000100, "Wrong size on USubmixEffectConvolutionReverbPreset"); \ +static_assert(offsetof(USubmixEffectConvolutionReverbPreset, ImpulseResponse) == 0x000068, "Member 'USubmixEffectConvolutionReverbPreset::ImpulseResponse' has a wrong offset!"); \ +static_assert(offsetof(USubmixEffectConvolutionReverbPreset, Settings) == 0x000070, "Member 'USubmixEffectConvolutionReverbPreset::Settings' has a wrong offset!"); \ +static_assert(offsetof(USubmixEffectConvolutionReverbPreset, BlockSize) == 0x0000A0, "Member 'USubmixEffectConvolutionReverbPreset::BlockSize' has a wrong offset!"); \ +static_assert(offsetof(USubmixEffectConvolutionReverbPreset, bEnableHardwareAcceleration) == 0x0000A1, "Member 'USubmixEffectConvolutionReverbPreset::bEnableHardwareAcceleration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayStatics_SetDelayLength \ +static_assert(alignof(SubmixEffectDelayStatics_SetDelayLength) == 0x000004, "Wrong alignment on SubmixEffectDelayStatics_SetDelayLength"); \ +static_assert(sizeof(SubmixEffectDelayStatics_SetDelayLength) == 0x00001C, "Wrong size on SubmixEffectDelayStatics_SetDelayLength"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetDelayLength, DelaySettings) == 0x000000, "Member 'SubmixEffectDelayStatics_SetDelayLength::DelaySettings' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetDelayLength, DelayLength) == 0x00000C, "Member 'SubmixEffectDelayStatics_SetDelayLength::DelayLength' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetDelayLength, ReturnValue) == 0x000010, "Member 'SubmixEffectDelayStatics_SetDelayLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayStatics_SetInterpolationTime \ +static_assert(alignof(SubmixEffectDelayStatics_SetInterpolationTime) == 0x000004, "Wrong alignment on SubmixEffectDelayStatics_SetInterpolationTime"); \ +static_assert(sizeof(SubmixEffectDelayStatics_SetInterpolationTime) == 0x00001C, "Wrong size on SubmixEffectDelayStatics_SetInterpolationTime"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetInterpolationTime, DelaySettings) == 0x000000, "Member 'SubmixEffectDelayStatics_SetInterpolationTime::DelaySettings' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetInterpolationTime, InterpolationTime) == 0x00000C, "Member 'SubmixEffectDelayStatics_SetInterpolationTime::InterpolationTime' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetInterpolationTime, ReturnValue) == 0x000010, "Member 'SubmixEffectDelayStatics_SetInterpolationTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayStatics_SetMaximumDelayLength \ +static_assert(alignof(SubmixEffectDelayStatics_SetMaximumDelayLength) == 0x000004, "Wrong alignment on SubmixEffectDelayStatics_SetMaximumDelayLength"); \ +static_assert(sizeof(SubmixEffectDelayStatics_SetMaximumDelayLength) == 0x00001C, "Wrong size on SubmixEffectDelayStatics_SetMaximumDelayLength"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetMaximumDelayLength, DelaySettings) == 0x000000, "Member 'SubmixEffectDelayStatics_SetMaximumDelayLength::DelaySettings' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetMaximumDelayLength, MaximumDelayLength) == 0x00000C, "Member 'SubmixEffectDelayStatics_SetMaximumDelayLength::MaximumDelayLength' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectDelayStatics_SetMaximumDelayLength, ReturnValue) == 0x000010, "Member 'SubmixEffectDelayStatics_SetMaximumDelayLength::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectDelayStatics \ +static_assert(alignof(USubmixEffectDelayStatics) == 0x000008, "Wrong alignment on USubmixEffectDelayStatics"); \ +static_assert(sizeof(USubmixEffectDelayStatics) == 0x000028, "Wrong size on USubmixEffectDelayStatics"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayPreset_SetDefaultSettings \ +static_assert(alignof(SubmixEffectDelayPreset_SetDefaultSettings) == 0x000004, "Wrong alignment on SubmixEffectDelayPreset_SetDefaultSettings"); \ +static_assert(sizeof(SubmixEffectDelayPreset_SetDefaultSettings) == 0x00000C, "Wrong size on SubmixEffectDelayPreset_SetDefaultSettings"); \ +static_assert(offsetof(SubmixEffectDelayPreset_SetDefaultSettings, InSettings) == 0x000000, "Member 'SubmixEffectDelayPreset_SetDefaultSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayPreset_SetDelay \ +static_assert(alignof(SubmixEffectDelayPreset_SetDelay) == 0x000004, "Wrong alignment on SubmixEffectDelayPreset_SetDelay"); \ +static_assert(sizeof(SubmixEffectDelayPreset_SetDelay) == 0x000004, "Wrong size on SubmixEffectDelayPreset_SetDelay"); \ +static_assert(offsetof(SubmixEffectDelayPreset_SetDelay, Length) == 0x000000, "Member 'SubmixEffectDelayPreset_SetDelay::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayPreset_SetInterpolationTime \ +static_assert(alignof(SubmixEffectDelayPreset_SetInterpolationTime) == 0x000004, "Wrong alignment on SubmixEffectDelayPreset_SetInterpolationTime"); \ +static_assert(sizeof(SubmixEffectDelayPreset_SetInterpolationTime) == 0x000004, "Wrong size on SubmixEffectDelayPreset_SetInterpolationTime"); \ +static_assert(offsetof(SubmixEffectDelayPreset_SetInterpolationTime, Time) == 0x000000, "Member 'SubmixEffectDelayPreset_SetInterpolationTime::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayPreset_SetSettings \ +static_assert(alignof(SubmixEffectDelayPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectDelayPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectDelayPreset_SetSettings) == 0x00000C, "Wrong size on SubmixEffectDelayPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectDelayPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectDelayPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectDelayPreset_GetMaxDelayInMilliseconds \ +static_assert(alignof(SubmixEffectDelayPreset_GetMaxDelayInMilliseconds) == 0x000004, "Wrong alignment on SubmixEffectDelayPreset_GetMaxDelayInMilliseconds"); \ +static_assert(sizeof(SubmixEffectDelayPreset_GetMaxDelayInMilliseconds) == 0x000004, "Wrong size on SubmixEffectDelayPreset_GetMaxDelayInMilliseconds"); \ +static_assert(offsetof(SubmixEffectDelayPreset_GetMaxDelayInMilliseconds, ReturnValue) == 0x000000, "Member 'SubmixEffectDelayPreset_GetMaxDelayInMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectDelayPreset \ +static_assert(alignof(USubmixEffectDelayPreset) == 0x000008, "Wrong alignment on USubmixEffectDelayPreset"); \ +static_assert(sizeof(USubmixEffectDelayPreset) == 0x0000B8, "Wrong size on USubmixEffectDelayPreset"); \ +static_assert(offsetof(USubmixEffectDelayPreset, Settings) == 0x00009C, "Member 'USubmixEffectDelayPreset::Settings' has a wrong offset!"); \ +static_assert(offsetof(USubmixEffectDelayPreset, DynamicSettings) == 0x0000A8, "Member 'USubmixEffectDelayPreset::DynamicSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterAlgorithm \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterAlgorithm) == 0x000001, "Wrong alignment on SubmixEffectFilterPreset_SetFilterAlgorithm"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterAlgorithm) == 0x000001, "Wrong size on SubmixEffectFilterPreset_SetFilterAlgorithm"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterAlgorithm, InAlgorithm) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterAlgorithm::InAlgorithm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterCutoffFrequency \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterCutoffFrequency) == 0x000004, "Wrong alignment on SubmixEffectFilterPreset_SetFilterCutoffFrequency"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterCutoffFrequency) == 0x000004, "Wrong size on SubmixEffectFilterPreset_SetFilterCutoffFrequency"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterCutoffFrequency, InFrequency) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterCutoffFrequency::InFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod) == 0x000004, "Wrong alignment on SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod) == 0x000004, "Wrong size on SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod, InFrequency) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterCutoffFrequencyMod::InFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterQ \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterQ) == 0x000004, "Wrong alignment on SubmixEffectFilterPreset_SetFilterQ"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterQ) == 0x000004, "Wrong size on SubmixEffectFilterPreset_SetFilterQ"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterQ, InQ) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterQ::InQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterQMod \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterQMod) == 0x000004, "Wrong alignment on SubmixEffectFilterPreset_SetFilterQMod"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterQMod) == 0x000004, "Wrong size on SubmixEffectFilterPreset_SetFilterQMod"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterQMod, InQ) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterQMod::InQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetFilterType \ +static_assert(alignof(SubmixEffectFilterPreset_SetFilterType) == 0x000001, "Wrong alignment on SubmixEffectFilterPreset_SetFilterType"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetFilterType) == 0x000001, "Wrong size on SubmixEffectFilterPreset_SetFilterType"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetFilterType, InType) == 0x000000, "Member 'SubmixEffectFilterPreset_SetFilterType::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFilterPreset_SetSettings \ +static_assert(alignof(SubmixEffectFilterPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectFilterPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectFilterPreset_SetSettings) == 0x00000C, "Wrong size on SubmixEffectFilterPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectFilterPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectFilterPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectFilterPreset \ +static_assert(alignof(USubmixEffectFilterPreset) == 0x000008, "Wrong alignment on USubmixEffectFilterPreset"); \ +static_assert(sizeof(USubmixEffectFilterPreset) == 0x0000A8, "Wrong size on USubmixEffectFilterPreset"); \ +static_assert(offsetof(USubmixEffectFilterPreset, Settings) == 0x00009C, "Member 'USubmixEffectFilterPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectFlexiverbPreset_SetSettings \ +static_assert(alignof(SubmixEffectFlexiverbPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectFlexiverbPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectFlexiverbPreset_SetSettings) == 0x000010, "Wrong size on SubmixEffectFlexiverbPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectFlexiverbPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectFlexiverbPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectFlexiverbPreset \ +static_assert(alignof(USubmixEffectFlexiverbPreset) == 0x000008, "Wrong alignment on USubmixEffectFlexiverbPreset"); \ +static_assert(sizeof(USubmixEffectFlexiverbPreset) == 0x0000B0, "Wrong size on USubmixEffectFlexiverbPreset"); \ +static_assert(offsetof(USubmixEffectFlexiverbPreset, Settings) == 0x0000A0, "Member 'USubmixEffectFlexiverbPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectMultibandCompressorPreset_SetAudioBus \ +static_assert(alignof(SubmixEffectMultibandCompressorPreset_SetAudioBus) == 0x000008, "Wrong alignment on SubmixEffectMultibandCompressorPreset_SetAudioBus"); \ +static_assert(sizeof(SubmixEffectMultibandCompressorPreset_SetAudioBus) == 0x000008, "Wrong size on SubmixEffectMultibandCompressorPreset_SetAudioBus"); \ +static_assert(offsetof(SubmixEffectMultibandCompressorPreset_SetAudioBus, AudioBus) == 0x000000, "Member 'SubmixEffectMultibandCompressorPreset_SetAudioBus::AudioBus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectMultibandCompressorPreset_SetExternalSubmix \ +static_assert(alignof(SubmixEffectMultibandCompressorPreset_SetExternalSubmix) == 0x000008, "Wrong alignment on SubmixEffectMultibandCompressorPreset_SetExternalSubmix"); \ +static_assert(sizeof(SubmixEffectMultibandCompressorPreset_SetExternalSubmix) == 0x000008, "Wrong size on SubmixEffectMultibandCompressorPreset_SetExternalSubmix"); \ +static_assert(offsetof(SubmixEffectMultibandCompressorPreset_SetExternalSubmix, Submix) == 0x000000, "Member 'SubmixEffectMultibandCompressorPreset_SetExternalSubmix::Submix' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectMultibandCompressorPreset_SetSettings \ +static_assert(alignof(SubmixEffectMultibandCompressorPreset_SetSettings) == 0x000008, "Wrong alignment on SubmixEffectMultibandCompressorPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectMultibandCompressorPreset_SetSettings) == 0x000038, "Wrong size on SubmixEffectMultibandCompressorPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectMultibandCompressorPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectMultibandCompressorPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectMultibandCompressorPreset \ +static_assert(alignof(USubmixEffectMultibandCompressorPreset) == 0x000008, "Wrong alignment on USubmixEffectMultibandCompressorPreset"); \ +static_assert(sizeof(USubmixEffectMultibandCompressorPreset) == 0x000100, "Wrong size on USubmixEffectMultibandCompressorPreset"); \ +static_assert(offsetof(USubmixEffectMultibandCompressorPreset, Settings) == 0x0000C8, "Member 'USubmixEffectMultibandCompressorPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectStereoDelayPreset_SetSettings \ +static_assert(alignof(SubmixEffectStereoDelayPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectStereoDelayPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectStereoDelayPreset_SetSettings) == 0x000024, "Wrong size on SubmixEffectStereoDelayPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectStereoDelayPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectStereoDelayPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectStereoDelayPreset \ +static_assert(alignof(USubmixEffectStereoDelayPreset) == 0x000008, "Wrong alignment on USubmixEffectStereoDelayPreset"); \ +static_assert(sizeof(USubmixEffectStereoDelayPreset) == 0x0000D8, "Wrong size on USubmixEffectStereoDelayPreset"); \ +static_assert(offsetof(USubmixEffectStereoDelayPreset, Settings) == 0x0000B4, "Member 'USubmixEffectStereoDelayPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectStereoToQuadPreset_SetSettings \ +static_assert(alignof(SubmixEffectStereoToQuadPreset_SetSettings) == 0x000004, "Wrong alignment on SubmixEffectStereoToQuadPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectStereoToQuadPreset_SetSettings) == 0x000008, "Wrong size on SubmixEffectStereoToQuadPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectStereoToQuadPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectStereoToQuadPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectStereoToQuadPreset \ +static_assert(alignof(USubmixEffectStereoToQuadPreset) == 0x000008, "Wrong alignment on USubmixEffectStereoToQuadPreset"); \ +static_assert(sizeof(USubmixEffectStereoToQuadPreset) == 0x0000A0, "Wrong size on USubmixEffectStereoToQuadPreset"); \ +static_assert(offsetof(USubmixEffectStereoToQuadPreset, Settings) == 0x000098, "Member 'USubmixEffectStereoToQuadPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_AddTap \ +static_assert(alignof(SubmixEffectTapDelayPreset_AddTap) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_AddTap"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_AddTap) == 0x000004, "Wrong size on SubmixEffectTapDelayPreset_AddTap"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_AddTap, TapId) == 0x000000, "Member 'SubmixEffectTapDelayPreset_AddTap::TapId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds \ +static_assert(alignof(SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds) == 0x000004, "Wrong size on SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds, ReturnValue) == 0x000000, "Member 'SubmixEffectTapDelayPreset_GetMaxDelayInMilliseconds::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_GetTap \ +static_assert(alignof(SubmixEffectTapDelayPreset_GetTap) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_GetTap"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_GetTap) == 0x00001C, "Wrong size on SubmixEffectTapDelayPreset_GetTap"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_GetTap, TapId) == 0x000000, "Member 'SubmixEffectTapDelayPreset_GetTap::TapId' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_GetTap, TapInfo) == 0x000004, "Member 'SubmixEffectTapDelayPreset_GetTap::TapInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_GetTapIds \ +static_assert(alignof(SubmixEffectTapDelayPreset_GetTapIds) == 0x000008, "Wrong alignment on SubmixEffectTapDelayPreset_GetTapIds"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_GetTapIds) == 0x000010, "Wrong size on SubmixEffectTapDelayPreset_GetTapIds"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_GetTapIds, TapIds) == 0x000000, "Member 'SubmixEffectTapDelayPreset_GetTapIds::TapIds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_RemoveTap \ +static_assert(alignof(SubmixEffectTapDelayPreset_RemoveTap) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_RemoveTap"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_RemoveTap) == 0x000004, "Wrong size on SubmixEffectTapDelayPreset_RemoveTap"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_RemoveTap, TapId) == 0x000000, "Member 'SubmixEffectTapDelayPreset_RemoveTap::TapId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_SetInterpolationTime \ +static_assert(alignof(SubmixEffectTapDelayPreset_SetInterpolationTime) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_SetInterpolationTime"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_SetInterpolationTime) == 0x000004, "Wrong size on SubmixEffectTapDelayPreset_SetInterpolationTime"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_SetInterpolationTime, Time) == 0x000000, "Member 'SubmixEffectTapDelayPreset_SetInterpolationTime::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_SetSettings \ +static_assert(alignof(SubmixEffectTapDelayPreset_SetSettings) == 0x000008, "Wrong alignment on SubmixEffectTapDelayPreset_SetSettings"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_SetSettings) == 0x000018, "Wrong size on SubmixEffectTapDelayPreset_SetSettings"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_SetSettings, InSettings) == 0x000000, "Member 'SubmixEffectTapDelayPreset_SetSettings::InSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SubmixEffectTapDelayPreset_SetTap \ +static_assert(alignof(SubmixEffectTapDelayPreset_SetTap) == 0x000004, "Wrong alignment on SubmixEffectTapDelayPreset_SetTap"); \ +static_assert(sizeof(SubmixEffectTapDelayPreset_SetTap) == 0x00001C, "Wrong size on SubmixEffectTapDelayPreset_SetTap"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_SetTap, TapId) == 0x000000, "Member 'SubmixEffectTapDelayPreset_SetTap::TapId' has a wrong offset!"); \ +static_assert(offsetof(SubmixEffectTapDelayPreset_SetTap, TapInfo) == 0x000004, "Member 'SubmixEffectTapDelayPreset_SetTap::TapInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USubmixEffectTapDelayPreset \ +static_assert(alignof(USubmixEffectTapDelayPreset) == 0x000008, "Wrong alignment on USubmixEffectTapDelayPreset"); \ +static_assert(sizeof(USubmixEffectTapDelayPreset) == 0x0000D8, "Wrong size on USubmixEffectTapDelayPreset"); \ +static_assert(offsetof(USubmixEffectTapDelayPreset, Settings) == 0x0000A8, "Member 'USubmixEffectTapDelayPreset::Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_NoteOff \ +static_assert(alignof(GranularSynth_NoteOff) == 0x000004, "Wrong alignment on GranularSynth_NoteOff"); \ +static_assert(sizeof(GranularSynth_NoteOff) == 0x000008, "Wrong size on GranularSynth_NoteOff"); \ +static_assert(offsetof(GranularSynth_NoteOff, Note) == 0x000000, "Member 'GranularSynth_NoteOff::Note' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_NoteOff, bKill) == 0x000004, "Member 'GranularSynth_NoteOff::bKill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_NoteOn \ +static_assert(alignof(GranularSynth_NoteOn) == 0x000004, "Wrong alignment on GranularSynth_NoteOn"); \ +static_assert(sizeof(GranularSynth_NoteOn) == 0x00000C, "Wrong size on GranularSynth_NoteOn"); \ +static_assert(offsetof(GranularSynth_NoteOn, Note) == 0x000000, "Member 'GranularSynth_NoteOn::Note' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_NoteOn, Velocity) == 0x000004, "Member 'GranularSynth_NoteOn::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_NoteOn, Duration) == 0x000008, "Member 'GranularSynth_NoteOn::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetAttackTime \ +static_assert(alignof(GranularSynth_SetAttackTime) == 0x000004, "Wrong alignment on GranularSynth_SetAttackTime"); \ +static_assert(sizeof(GranularSynth_SetAttackTime) == 0x000004, "Wrong size on GranularSynth_SetAttackTime"); \ +static_assert(offsetof(GranularSynth_SetAttackTime, AttackTimeMsec) == 0x000000, "Member 'GranularSynth_SetAttackTime::AttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetDecayTime \ +static_assert(alignof(GranularSynth_SetDecayTime) == 0x000004, "Wrong alignment on GranularSynth_SetDecayTime"); \ +static_assert(sizeof(GranularSynth_SetDecayTime) == 0x000004, "Wrong size on GranularSynth_SetDecayTime"); \ +static_assert(offsetof(GranularSynth_SetDecayTime, DecayTimeMsec) == 0x000000, "Member 'GranularSynth_SetDecayTime::DecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainDuration \ +static_assert(alignof(GranularSynth_SetGrainDuration) == 0x000008, "Wrong alignment on GranularSynth_SetGrainDuration"); \ +static_assert(sizeof(GranularSynth_SetGrainDuration) == 0x000018, "Wrong size on GranularSynth_SetGrainDuration"); \ +static_assert(offsetof(GranularSynth_SetGrainDuration, BaseDurationMsec) == 0x000000, "Member 'GranularSynth_SetGrainDuration::BaseDurationMsec' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetGrainDuration, DurationRange) == 0x000008, "Member 'GranularSynth_SetGrainDuration::DurationRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainEnvelopeType \ +static_assert(alignof(GranularSynth_SetGrainEnvelopeType) == 0x000001, "Wrong alignment on GranularSynth_SetGrainEnvelopeType"); \ +static_assert(sizeof(GranularSynth_SetGrainEnvelopeType) == 0x000001, "Wrong size on GranularSynth_SetGrainEnvelopeType"); \ +static_assert(offsetof(GranularSynth_SetGrainEnvelopeType, EnvelopeType) == 0x000000, "Member 'GranularSynth_SetGrainEnvelopeType::EnvelopeType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainPan \ +static_assert(alignof(GranularSynth_SetGrainPan) == 0x000008, "Wrong alignment on GranularSynth_SetGrainPan"); \ +static_assert(sizeof(GranularSynth_SetGrainPan) == 0x000018, "Wrong size on GranularSynth_SetGrainPan"); \ +static_assert(offsetof(GranularSynth_SetGrainPan, BasePan) == 0x000000, "Member 'GranularSynth_SetGrainPan::BasePan' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetGrainPan, PanRange) == 0x000008, "Member 'GranularSynth_SetGrainPan::PanRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainPitch \ +static_assert(alignof(GranularSynth_SetGrainPitch) == 0x000008, "Wrong alignment on GranularSynth_SetGrainPitch"); \ +static_assert(sizeof(GranularSynth_SetGrainPitch) == 0x000018, "Wrong size on GranularSynth_SetGrainPitch"); \ +static_assert(offsetof(GranularSynth_SetGrainPitch, BasePitch) == 0x000000, "Member 'GranularSynth_SetGrainPitch::BasePitch' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetGrainPitch, PitchRange) == 0x000008, "Member 'GranularSynth_SetGrainPitch::PitchRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainProbability \ +static_assert(alignof(GranularSynth_SetGrainProbability) == 0x000004, "Wrong alignment on GranularSynth_SetGrainProbability"); \ +static_assert(sizeof(GranularSynth_SetGrainProbability) == 0x000004, "Wrong size on GranularSynth_SetGrainProbability"); \ +static_assert(offsetof(GranularSynth_SetGrainProbability, InGrainProbability) == 0x000000, "Member 'GranularSynth_SetGrainProbability::InGrainProbability' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainsPerSecond \ +static_assert(alignof(GranularSynth_SetGrainsPerSecond) == 0x000004, "Wrong alignment on GranularSynth_SetGrainsPerSecond"); \ +static_assert(sizeof(GranularSynth_SetGrainsPerSecond) == 0x000004, "Wrong size on GranularSynth_SetGrainsPerSecond"); \ +static_assert(offsetof(GranularSynth_SetGrainsPerSecond, InGrainsPerSecond) == 0x000000, "Member 'GranularSynth_SetGrainsPerSecond::InGrainsPerSecond' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetGrainVolume \ +static_assert(alignof(GranularSynth_SetGrainVolume) == 0x000008, "Wrong alignment on GranularSynth_SetGrainVolume"); \ +static_assert(sizeof(GranularSynth_SetGrainVolume) == 0x000018, "Wrong size on GranularSynth_SetGrainVolume"); \ +static_assert(offsetof(GranularSynth_SetGrainVolume, BaseVolume) == 0x000000, "Member 'GranularSynth_SetGrainVolume::BaseVolume' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetGrainVolume, VolumeRange) == 0x000008, "Member 'GranularSynth_SetGrainVolume::VolumeRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetPlaybackSpeed \ +static_assert(alignof(GranularSynth_SetPlaybackSpeed) == 0x000004, "Wrong alignment on GranularSynth_SetPlaybackSpeed"); \ +static_assert(sizeof(GranularSynth_SetPlaybackSpeed) == 0x000004, "Wrong size on GranularSynth_SetPlaybackSpeed"); \ +static_assert(offsetof(GranularSynth_SetPlaybackSpeed, InPlayheadRate) == 0x000000, "Member 'GranularSynth_SetPlaybackSpeed::InPlayheadRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetPlayheadTime \ +static_assert(alignof(GranularSynth_SetPlayheadTime) == 0x000004, "Wrong alignment on GranularSynth_SetPlayheadTime"); \ +static_assert(sizeof(GranularSynth_SetPlayheadTime) == 0x00000C, "Wrong size on GranularSynth_SetPlayheadTime"); \ +static_assert(offsetof(GranularSynth_SetPlayheadTime, InPositionSec) == 0x000000, "Member 'GranularSynth_SetPlayheadTime::InPositionSec' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetPlayheadTime, LerpTimeSec) == 0x000004, "Member 'GranularSynth_SetPlayheadTime::LerpTimeSec' has a wrong offset!"); \ +static_assert(offsetof(GranularSynth_SetPlayheadTime, SeekType) == 0x000008, "Member 'GranularSynth_SetPlayheadTime::SeekType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetReleaseTimeMsec \ +static_assert(alignof(GranularSynth_SetReleaseTimeMsec) == 0x000004, "Wrong alignment on GranularSynth_SetReleaseTimeMsec"); \ +static_assert(sizeof(GranularSynth_SetReleaseTimeMsec) == 0x000004, "Wrong size on GranularSynth_SetReleaseTimeMsec"); \ +static_assert(offsetof(GranularSynth_SetReleaseTimeMsec, ReleaseTimeMsec) == 0x000000, "Member 'GranularSynth_SetReleaseTimeMsec::ReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetScrubMode \ +static_assert(alignof(GranularSynth_SetScrubMode) == 0x000001, "Wrong alignment on GranularSynth_SetScrubMode"); \ +static_assert(sizeof(GranularSynth_SetScrubMode) == 0x000001, "Wrong size on GranularSynth_SetScrubMode"); \ +static_assert(offsetof(GranularSynth_SetScrubMode, bScrubMode) == 0x000000, "Member 'GranularSynth_SetScrubMode::bScrubMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetSoundWave \ +static_assert(alignof(GranularSynth_SetSoundWave) == 0x000008, "Wrong alignment on GranularSynth_SetSoundWave"); \ +static_assert(sizeof(GranularSynth_SetSoundWave) == 0x000008, "Wrong size on GranularSynth_SetSoundWave"); \ +static_assert(offsetof(GranularSynth_SetSoundWave, InSoundWave) == 0x000000, "Member 'GranularSynth_SetSoundWave::InSoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_SetSustainGain \ +static_assert(alignof(GranularSynth_SetSustainGain) == 0x000004, "Wrong alignment on GranularSynth_SetSustainGain"); \ +static_assert(sizeof(GranularSynth_SetSustainGain) == 0x000004, "Wrong size on GranularSynth_SetSustainGain"); \ +static_assert(offsetof(GranularSynth_SetSustainGain, SustainGain) == 0x000000, "Member 'GranularSynth_SetSustainGain::SustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_GetCurrentPlayheadTime \ +static_assert(alignof(GranularSynth_GetCurrentPlayheadTime) == 0x000004, "Wrong alignment on GranularSynth_GetCurrentPlayheadTime"); \ +static_assert(sizeof(GranularSynth_GetCurrentPlayheadTime) == 0x000004, "Wrong size on GranularSynth_GetCurrentPlayheadTime"); \ +static_assert(offsetof(GranularSynth_GetCurrentPlayheadTime, ReturnValue) == 0x000000, "Member 'GranularSynth_GetCurrentPlayheadTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_GetSampleDuration \ +static_assert(alignof(GranularSynth_GetSampleDuration) == 0x000004, "Wrong alignment on GranularSynth_GetSampleDuration"); \ +static_assert(sizeof(GranularSynth_GetSampleDuration) == 0x000004, "Wrong size on GranularSynth_GetSampleDuration"); \ +static_assert(offsetof(GranularSynth_GetSampleDuration, ReturnValue) == 0x000000, "Member 'GranularSynth_GetSampleDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GranularSynth_IsLoaded \ +static_assert(alignof(GranularSynth_IsLoaded) == 0x000001, "Wrong alignment on GranularSynth_IsLoaded"); \ +static_assert(sizeof(GranularSynth_IsLoaded) == 0x000001, "Wrong size on GranularSynth_IsLoaded"); \ +static_assert(offsetof(GranularSynth_IsLoaded, ReturnValue) == 0x000000, "Member 'GranularSynth_IsLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGranularSynth \ +static_assert(alignof(UGranularSynth) == 0x000010, "Wrong alignment on UGranularSynth"); \ +static_assert(sizeof(UGranularSynth) == 0x000CE0, "Wrong size on UGranularSynth"); \ +static_assert(offsetof(UGranularSynth, GranulatedSoundWave) == 0x000900, "Member 'UGranularSynth::GranulatedSoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UMonoWaveTableSynthPreset \ +static_assert(alignof(UMonoWaveTableSynthPreset) == 0x000008, "Wrong alignment on UMonoWaveTableSynthPreset"); \ +static_assert(sizeof(UMonoWaveTableSynthPreset) == 0x000170, "Wrong size on UMonoWaveTableSynthPreset"); \ +static_assert(offsetof(UMonoWaveTableSynthPreset, PresetName) == 0x000028, "Member 'UMonoWaveTableSynthPreset::PresetName' has a wrong offset!"); \ +static_assert(offsetof(UMonoWaveTableSynthPreset, LockKeyframesToGrid) == 0x00003C, "Member 'UMonoWaveTableSynthPreset::LockKeyframesToGrid' has a wrong offset!"); \ +static_assert(offsetof(UMonoWaveTableSynthPreset, WaveTableResolution) == 0x000040, "Member 'UMonoWaveTableSynthPreset::WaveTableResolution' has a wrong offset!"); \ +static_assert(offsetof(UMonoWaveTableSynthPreset, WaveTable) == 0x000048, "Member 'UMonoWaveTableSynthPreset::WaveTable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_GetCurveTangent \ +static_assert(alignof(SynthComponentMonoWaveTable_GetCurveTangent) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_GetCurveTangent"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_GetCurveTangent) == 0x000008, "Wrong size on SynthComponentMonoWaveTable_GetCurveTangent"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetCurveTangent, TableIndex) == 0x000000, "Member 'SynthComponentMonoWaveTable_GetCurveTangent::TableIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetCurveTangent, ReturnValue) == 0x000004, "Member 'SynthComponentMonoWaveTable_GetCurveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_GetNumTableEntries \ +static_assert(alignof(SynthComponentMonoWaveTable_GetNumTableEntries) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_GetNumTableEntries"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_GetNumTableEntries) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_GetNumTableEntries"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetNumTableEntries, ReturnValue) == 0x000000, "Member 'SynthComponentMonoWaveTable_GetNumTableEntries::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_NoteOff \ +static_assert(alignof(SynthComponentMonoWaveTable_NoteOff) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_NoteOff"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_NoteOff) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_NoteOff"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_NoteOff, InMidiNote) == 0x000000, "Member 'SynthComponentMonoWaveTable_NoteOff::InMidiNote' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_NoteOn \ +static_assert(alignof(SynthComponentMonoWaveTable_NoteOn) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_NoteOn"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_NoteOn) == 0x000008, "Wrong size on SynthComponentMonoWaveTable_NoteOn"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_NoteOn, InMidiNote) == 0x000000, "Member 'SynthComponentMonoWaveTable_NoteOn::InMidiNote' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_NoteOn, InVelocity) == 0x000004, "Member 'SynthComponentMonoWaveTable_NoteOn::InVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_RefreshWaveTable \ +static_assert(alignof(SynthComponentMonoWaveTable_RefreshWaveTable) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_RefreshWaveTable"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_RefreshWaveTable) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_RefreshWaveTable"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_RefreshWaveTable, Index_0) == 0x000000, "Member 'SynthComponentMonoWaveTable_RefreshWaveTable::Index_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime, InAttackTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeAttackTime::InAttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeBiasDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert, bInBiasInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeBiasInvert::bInBiasInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime, InDecayTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeDecayTime::InDecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeInvert, bInInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeInvert::bInInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime, InReleaseTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeReleaseTime::InReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain \ +static_assert(alignof(SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain, InSustainGain) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetAmpEnvelopeSustainGain::InSustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetCurveInterpolationType \ +static_assert(alignof(SynthComponentMonoWaveTable_SetCurveInterpolationType) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetCurveInterpolationType"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetCurveInterpolationType) == 0x00000C, "Wrong size on SynthComponentMonoWaveTable_SetCurveInterpolationType"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveInterpolationType, InterpolationType) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetCurveInterpolationType::InterpolationType' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveInterpolationType, TableIndex) == 0x000004, "Member 'SynthComponentMonoWaveTable_SetCurveInterpolationType::TableIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveInterpolationType, ReturnValue) == 0x000008, "Member 'SynthComponentMonoWaveTable_SetCurveInterpolationType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetCurveTangent \ +static_assert(alignof(SynthComponentMonoWaveTable_SetCurveTangent) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetCurveTangent"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetCurveTangent) == 0x00000C, "Wrong size on SynthComponentMonoWaveTable_SetCurveTangent"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveTangent, TableIndex) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetCurveTangent::TableIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveTangent, InNewTangent) == 0x000004, "Member 'SynthComponentMonoWaveTable_SetCurveTangent::InNewTangent' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveTangent, ReturnValue) == 0x000008, "Member 'SynthComponentMonoWaveTable_SetCurveTangent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetCurveValue \ +static_assert(alignof(SynthComponentMonoWaveTable_SetCurveValue) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetCurveValue"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetCurveValue) == 0x000010, "Wrong size on SynthComponentMonoWaveTable_SetCurveValue"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveValue, TableIndex) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetCurveValue::TableIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveValue, KeyframeIndex) == 0x000004, "Member 'SynthComponentMonoWaveTable_SetCurveValue::KeyframeIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveValue, NewValue) == 0x000008, "Member 'SynthComponentMonoWaveTable_SetCurveValue::NewValue' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetCurveValue, ReturnValue) == 0x00000C, "Member 'SynthComponentMonoWaveTable_SetCurveValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime, InAttackTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeAttackTime::InAttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeBiasDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert, bInBiasInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeBiasInvert::bInBiasInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeInvert, bInInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeInvert::bInInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime, InDecayTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopenDecayTime::InDecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime, InReleaseTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeReleaseTime::InReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain, InSustainGain) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFilterEnvelopeSustainGain::InSustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFrequency \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFrequency) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFrequency"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFrequency) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFrequency"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFrequency, FrequencyHz) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFrequency::FrequencyHz' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFrequencyPitchBend \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFrequencyPitchBend) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFrequencyPitchBend"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFrequencyPitchBend) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFrequencyPitchBend"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFrequencyPitchBend, FrequencyOffsetCents) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFrequencyPitchBend::FrequencyOffsetCents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetFrequencyWithMidiNote \ +static_assert(alignof(SynthComponentMonoWaveTable_SetFrequencyWithMidiNote) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetFrequencyWithMidiNote"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetFrequencyWithMidiNote) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetFrequencyWithMidiNote"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetFrequencyWithMidiNote, InMidiNote) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetFrequencyWithMidiNote::InMidiNote' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetLowPassFilterResonance \ +static_assert(alignof(SynthComponentMonoWaveTable_SetLowPassFilterResonance) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetLowPassFilterResonance"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetLowPassFilterResonance) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetLowPassFilterResonance"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetLowPassFilterResonance, InNewQ) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetLowPassFilterResonance::InNewQ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime, InAttackTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeAttackTime::InAttackTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeBiasDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert, bInBiasInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeBiasInvert::bInBiasInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime, InDecayTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeDecayTime::InDecayTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeDepth, InDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeDepth::InDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeInvert \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeInvert) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeInvert"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeInvert) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeInvert"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeInvert, bInInvert) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeInvert::bInInvert' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime, InReleaseTimeMsec) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeReleaseTime::InReleaseTimeMsec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain, InSustainGain) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPositionEnvelopeSustainGain::InSustainGain' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPosLfoDepth \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPosLfoDepth) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPosLfoDepth"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPosLfoDepth) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPosLfoDepth"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPosLfoDepth, InLfoDepth) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPosLfoDepth::InLfoDepth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPosLfoFrequency \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPosLfoFrequency) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetPosLfoFrequency"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPosLfoFrequency) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetPosLfoFrequency"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPosLfoFrequency, InLfoFrequency) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPosLfoFrequency::InLfoFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetPosLfoType \ +static_assert(alignof(SynthComponentMonoWaveTable_SetPosLfoType) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetPosLfoType"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetPosLfoType) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetPosLfoType"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetPosLfoType, InLfoType) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetPosLfoType::InLfoType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetSustainPedalState \ +static_assert(alignof(SynthComponentMonoWaveTable_SetSustainPedalState) == 0x000001, "Wrong alignment on SynthComponentMonoWaveTable_SetSustainPedalState"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetSustainPedalState) == 0x000001, "Wrong size on SynthComponentMonoWaveTable_SetSustainPedalState"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetSustainPedalState, InSustainPedalState) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetSustainPedalState::InSustainPedalState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_SetWaveTablePosition \ +static_assert(alignof(SynthComponentMonoWaveTable_SetWaveTablePosition) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_SetWaveTablePosition"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_SetWaveTablePosition) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_SetWaveTablePosition"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_SetWaveTablePosition, InPosition) == 0x000000, "Member 'SynthComponentMonoWaveTable_SetWaveTablePosition::InPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_GetKeyFrameValuesForTable \ +static_assert(alignof(SynthComponentMonoWaveTable_GetKeyFrameValuesForTable) == 0x000008, "Wrong alignment on SynthComponentMonoWaveTable_GetKeyFrameValuesForTable"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_GetKeyFrameValuesForTable) == 0x000018, "Wrong size on SynthComponentMonoWaveTable_GetKeyFrameValuesForTable"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetKeyFrameValuesForTable, TableIndex) == 0x000000, "Member 'SynthComponentMonoWaveTable_GetKeyFrameValuesForTable::TableIndex' has a wrong offset!"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetKeyFrameValuesForTable, ReturnValue) == 0x000008, "Member 'SynthComponentMonoWaveTable_GetKeyFrameValuesForTable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentMonoWaveTable_GetMaxTableIndex \ +static_assert(alignof(SynthComponentMonoWaveTable_GetMaxTableIndex) == 0x000004, "Wrong alignment on SynthComponentMonoWaveTable_GetMaxTableIndex"); \ +static_assert(sizeof(SynthComponentMonoWaveTable_GetMaxTableIndex) == 0x000004, "Wrong size on SynthComponentMonoWaveTable_GetMaxTableIndex"); \ +static_assert(offsetof(SynthComponentMonoWaveTable_GetMaxTableIndex, ReturnValue) == 0x000000, "Member 'SynthComponentMonoWaveTable_GetMaxTableIndex::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthComponentMonoWaveTable \ +static_assert(alignof(USynthComponentMonoWaveTable) == 0x000010, "Wrong alignment on USynthComponentMonoWaveTable"); \ +static_assert(sizeof(USynthComponentMonoWaveTable) == 0x001050, "Wrong size on USynthComponentMonoWaveTable"); \ +static_assert(offsetof(USynthComponentMonoWaveTable, OnTableAltered) == 0x000900, "Member 'USynthComponentMonoWaveTable::OnTableAltered' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentMonoWaveTable, OnNumTablesChanged) == 0x000910, "Member 'USynthComponentMonoWaveTable::OnNumTablesChanged' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentMonoWaveTable, CurrentPreset) == 0x000920, "Member 'USynthComponentMonoWaveTable::CurrentPreset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentToneGenerator_SetFrequency \ +static_assert(alignof(SynthComponentToneGenerator_SetFrequency) == 0x000004, "Wrong alignment on SynthComponentToneGenerator_SetFrequency"); \ +static_assert(sizeof(SynthComponentToneGenerator_SetFrequency) == 0x000004, "Wrong size on SynthComponentToneGenerator_SetFrequency"); \ +static_assert(offsetof(SynthComponentToneGenerator_SetFrequency, InFrequency) == 0x000000, "Member 'SynthComponentToneGenerator_SetFrequency::InFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthComponentToneGenerator_SetVolume \ +static_assert(alignof(SynthComponentToneGenerator_SetVolume) == 0x000004, "Wrong alignment on SynthComponentToneGenerator_SetVolume"); \ +static_assert(sizeof(SynthComponentToneGenerator_SetVolume) == 0x000004, "Wrong size on SynthComponentToneGenerator_SetVolume"); \ +static_assert(offsetof(SynthComponentToneGenerator_SetVolume, InVolume) == 0x000000, "Member 'SynthComponentToneGenerator_SetVolume::InVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthComponentToneGenerator \ +static_assert(alignof(USynthComponentToneGenerator) == 0x000010, "Wrong alignment on USynthComponentToneGenerator"); \ +static_assert(sizeof(USynthComponentToneGenerator) == 0x0009F0, "Wrong size on USynthComponentToneGenerator"); \ +static_assert(offsetof(USynthComponentToneGenerator, Frequency) == 0x000900, "Member 'USynthComponentToneGenerator::Frequency' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentToneGenerator, Volume) == 0x000904, "Member 'USynthComponentToneGenerator::Volume' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentToneGenerator, DistanceAttenuationCurve) == 0x000908, "Member 'USynthComponentToneGenerator::DistanceAttenuationCurve' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentToneGenerator, DistanceRange) == 0x000990, "Member 'USynthComponentToneGenerator::DistanceRange' has a wrong offset!"); \ +static_assert(offsetof(USynthComponentToneGenerator, AttenuationDbAtMaxRange) == 0x0009A0, "Member 'USynthComponentToneGenerator::AttenuationDbAtMaxRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_SeekToTime \ +static_assert(alignof(SynthSamplePlayer_SeekToTime) == 0x000004, "Wrong alignment on SynthSamplePlayer_SeekToTime"); \ +static_assert(sizeof(SynthSamplePlayer_SeekToTime) == 0x000008, "Wrong size on SynthSamplePlayer_SeekToTime"); \ +static_assert(offsetof(SynthSamplePlayer_SeekToTime, TimeSec) == 0x000000, "Member 'SynthSamplePlayer_SeekToTime::TimeSec' has a wrong offset!"); \ +static_assert(offsetof(SynthSamplePlayer_SeekToTime, SeekType) == 0x000004, "Member 'SynthSamplePlayer_SeekToTime::SeekType' has a wrong offset!"); \ +static_assert(offsetof(SynthSamplePlayer_SeekToTime, bWrap) == 0x000005, "Member 'SynthSamplePlayer_SeekToTime::bWrap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_SetPitch \ +static_assert(alignof(SynthSamplePlayer_SetPitch) == 0x000004, "Wrong alignment on SynthSamplePlayer_SetPitch"); \ +static_assert(sizeof(SynthSamplePlayer_SetPitch) == 0x000008, "Wrong size on SynthSamplePlayer_SetPitch"); \ +static_assert(offsetof(SynthSamplePlayer_SetPitch, InPitch) == 0x000000, "Member 'SynthSamplePlayer_SetPitch::InPitch' has a wrong offset!"); \ +static_assert(offsetof(SynthSamplePlayer_SetPitch, TimeSec) == 0x000004, "Member 'SynthSamplePlayer_SetPitch::TimeSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_SetScrubMode \ +static_assert(alignof(SynthSamplePlayer_SetScrubMode) == 0x000001, "Wrong alignment on SynthSamplePlayer_SetScrubMode"); \ +static_assert(sizeof(SynthSamplePlayer_SetScrubMode) == 0x000001, "Wrong size on SynthSamplePlayer_SetScrubMode"); \ +static_assert(offsetof(SynthSamplePlayer_SetScrubMode, bScrubMode) == 0x000000, "Member 'SynthSamplePlayer_SetScrubMode::bScrubMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_SetScrubTimeWidth \ +static_assert(alignof(SynthSamplePlayer_SetScrubTimeWidth) == 0x000004, "Wrong alignment on SynthSamplePlayer_SetScrubTimeWidth"); \ +static_assert(sizeof(SynthSamplePlayer_SetScrubTimeWidth) == 0x000004, "Wrong size on SynthSamplePlayer_SetScrubTimeWidth"); \ +static_assert(offsetof(SynthSamplePlayer_SetScrubTimeWidth, InScrubTimeWidthSec) == 0x000000, "Member 'SynthSamplePlayer_SetScrubTimeWidth::InScrubTimeWidthSec' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_SetSoundWave \ +static_assert(alignof(SynthSamplePlayer_SetSoundWave) == 0x000008, "Wrong alignment on SynthSamplePlayer_SetSoundWave"); \ +static_assert(sizeof(SynthSamplePlayer_SetSoundWave) == 0x000008, "Wrong size on SynthSamplePlayer_SetSoundWave"); \ +static_assert(offsetof(SynthSamplePlayer_SetSoundWave, InSoundWave) == 0x000000, "Member 'SynthSamplePlayer_SetSoundWave::InSoundWave' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_GetCurrentPlaybackProgressPercent \ +static_assert(alignof(SynthSamplePlayer_GetCurrentPlaybackProgressPercent) == 0x000004, "Wrong alignment on SynthSamplePlayer_GetCurrentPlaybackProgressPercent"); \ +static_assert(sizeof(SynthSamplePlayer_GetCurrentPlaybackProgressPercent) == 0x000004, "Wrong size on SynthSamplePlayer_GetCurrentPlaybackProgressPercent"); \ +static_assert(offsetof(SynthSamplePlayer_GetCurrentPlaybackProgressPercent, ReturnValue) == 0x000000, "Member 'SynthSamplePlayer_GetCurrentPlaybackProgressPercent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_GetCurrentPlaybackProgressTime \ +static_assert(alignof(SynthSamplePlayer_GetCurrentPlaybackProgressTime) == 0x000004, "Wrong alignment on SynthSamplePlayer_GetCurrentPlaybackProgressTime"); \ +static_assert(sizeof(SynthSamplePlayer_GetCurrentPlaybackProgressTime) == 0x000004, "Wrong size on SynthSamplePlayer_GetCurrentPlaybackProgressTime"); \ +static_assert(offsetof(SynthSamplePlayer_GetCurrentPlaybackProgressTime, ReturnValue) == 0x000000, "Member 'SynthSamplePlayer_GetCurrentPlaybackProgressTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_GetSampleDuration \ +static_assert(alignof(SynthSamplePlayer_GetSampleDuration) == 0x000004, "Wrong alignment on SynthSamplePlayer_GetSampleDuration"); \ +static_assert(sizeof(SynthSamplePlayer_GetSampleDuration) == 0x000004, "Wrong size on SynthSamplePlayer_GetSampleDuration"); \ +static_assert(offsetof(SynthSamplePlayer_GetSampleDuration, ReturnValue) == 0x000000, "Member 'SynthSamplePlayer_GetSampleDuration::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthSamplePlayer_IsLoaded \ +static_assert(alignof(SynthSamplePlayer_IsLoaded) == 0x000001, "Wrong alignment on SynthSamplePlayer_IsLoaded"); \ +static_assert(sizeof(SynthSamplePlayer_IsLoaded) == 0x000001, "Wrong size on SynthSamplePlayer_IsLoaded"); \ +static_assert(offsetof(SynthSamplePlayer_IsLoaded, ReturnValue) == 0x000000, "Member 'SynthSamplePlayer_IsLoaded::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthSamplePlayer \ +static_assert(alignof(USynthSamplePlayer) == 0x000010, "Wrong alignment on USynthSamplePlayer"); \ +static_assert(sizeof(USynthSamplePlayer) == 0x000A30, "Wrong size on USynthSamplePlayer"); \ +static_assert(offsetof(USynthSamplePlayer, SoundWave) == 0x000900, "Member 'USynthSamplePlayer::SoundWave' has a wrong offset!"); \ +static_assert(offsetof(USynthSamplePlayer, OnSampleLoaded) == 0x000908, "Member 'USynthSamplePlayer::OnSampleLoaded' has a wrong offset!"); \ +static_assert(offsetof(USynthSamplePlayer, OnSamplePlaybackProgress) == 0x000918, "Member 'USynthSamplePlayer::OnSamplePlaybackProgress' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency \ +static_assert(alignof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency) == 0x000004, "Wrong alignment on SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency"); \ +static_assert(sizeof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency) == 0x000018, "Wrong size on SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, InLogFrequencyValue) == 0x000000, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::InLogFrequencyValue' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, InDomainMin) == 0x000004, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::InDomainMin' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, InDomainMax) == 0x000008, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::InDomainMax' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, InRangeMin) == 0x00000C, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::InRangeMin' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, InRangeMax) == 0x000010, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::InRangeMax' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency, ReturnValue) == 0x000014, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLinearFrequency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency \ +static_assert(alignof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency) == 0x000004, "Wrong alignment on SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency"); \ +static_assert(sizeof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency) == 0x000018, "Wrong size on SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, InLinearValue) == 0x000000, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::InLinearValue' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, InDomainMin) == 0x000004, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::InDomainMin' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, InDomainMax) == 0x000008, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::InDomainMax' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, InRangeMin) == 0x00000C, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::InRangeMin' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, InRangeMax) == 0x000010, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::InRangeMax' has a wrong offset!"); \ +static_assert(offsetof(SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency, ReturnValue) == 0x000014, "Member 'SynthesisUtilitiesBlueprintFunctionLibrary_GetLogFrequency::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthesisUtilitiesBlueprintFunctionLibrary \ +static_assert(alignof(USynthesisUtilitiesBlueprintFunctionLibrary) == 0x000008, "Wrong alignment on USynthesisUtilitiesBlueprintFunctionLibrary"); \ +static_assert(sizeof(USynthesisUtilitiesBlueprintFunctionLibrary) == 0x000028, "Wrong size on USynthesisUtilitiesBlueprintFunctionLibrary"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_SetIndentHandle \ +static_assert(alignof(Synth2DSlider_SetIndentHandle) == 0x000001, "Wrong alignment on Synth2DSlider_SetIndentHandle"); \ +static_assert(sizeof(Synth2DSlider_SetIndentHandle) == 0x000001, "Wrong size on Synth2DSlider_SetIndentHandle"); \ +static_assert(offsetof(Synth2DSlider_SetIndentHandle, InValue) == 0x000000, "Member 'Synth2DSlider_SetIndentHandle::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_SetLocked \ +static_assert(alignof(Synth2DSlider_SetLocked) == 0x000001, "Wrong alignment on Synth2DSlider_SetLocked"); \ +static_assert(sizeof(Synth2DSlider_SetLocked) == 0x000001, "Wrong size on Synth2DSlider_SetLocked"); \ +static_assert(offsetof(Synth2DSlider_SetLocked, InValue) == 0x000000, "Member 'Synth2DSlider_SetLocked::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_SetSliderHandleColor \ +static_assert(alignof(Synth2DSlider_SetSliderHandleColor) == 0x000004, "Wrong alignment on Synth2DSlider_SetSliderHandleColor"); \ +static_assert(sizeof(Synth2DSlider_SetSliderHandleColor) == 0x000010, "Wrong size on Synth2DSlider_SetSliderHandleColor"); \ +static_assert(offsetof(Synth2DSlider_SetSliderHandleColor, InValue) == 0x000000, "Member 'Synth2DSlider_SetSliderHandleColor::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_SetStepSize \ +static_assert(alignof(Synth2DSlider_SetStepSize) == 0x000004, "Wrong alignment on Synth2DSlider_SetStepSize"); \ +static_assert(sizeof(Synth2DSlider_SetStepSize) == 0x000004, "Wrong size on Synth2DSlider_SetStepSize"); \ +static_assert(offsetof(Synth2DSlider_SetStepSize, InValue) == 0x000000, "Member 'Synth2DSlider_SetStepSize::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_SetValue \ +static_assert(alignof(Synth2DSlider_SetValue) == 0x000008, "Wrong alignment on Synth2DSlider_SetValue"); \ +static_assert(sizeof(Synth2DSlider_SetValue) == 0x000010, "Wrong size on Synth2DSlider_SetValue"); \ +static_assert(offsetof(Synth2DSlider_SetValue, InValue) == 0x000000, "Member 'Synth2DSlider_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Synth2DSlider_GetValue \ +static_assert(alignof(Synth2DSlider_GetValue) == 0x000008, "Wrong alignment on Synth2DSlider_GetValue"); \ +static_assert(sizeof(Synth2DSlider_GetValue) == 0x000010, "Wrong size on Synth2DSlider_GetValue"); \ +static_assert(offsetof(Synth2DSlider_GetValue, ReturnValue) == 0x000000, "Member 'Synth2DSlider_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynth2DSlider \ +static_assert(alignof(USynth2DSlider) == 0x000010, "Wrong alignment on USynth2DSlider"); \ +static_assert(sizeof(USynth2DSlider) == 0x000670, "Wrong size on USynth2DSlider"); \ +static_assert(offsetof(USynth2DSlider, ValueX) == 0x000180, "Member 'USynth2DSlider::ValueX' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, ValueY) == 0x000184, "Member 'USynth2DSlider::ValueY' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, ValueXDelegate) == 0x000188, "Member 'USynth2DSlider::ValueXDelegate' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, ValueYDelegate) == 0x000198, "Member 'USynth2DSlider::ValueYDelegate' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, WidgetStyle) == 0x0001B0, "Member 'USynth2DSlider::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, SliderHandleColor) == 0x0005E0, "Member 'USynth2DSlider::SliderHandleColor' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, IndentHandle) == 0x0005F0, "Member 'USynth2DSlider::IndentHandle' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, Locked) == 0x0005F1, "Member 'USynth2DSlider::Locked' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, StepSize) == 0x0005F4, "Member 'USynth2DSlider::StepSize' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, IsFocusable) == 0x0005F8, "Member 'USynth2DSlider::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnMouseCaptureBegin) == 0x000600, "Member 'USynth2DSlider::OnMouseCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnMouseCaptureEnd) == 0x000610, "Member 'USynth2DSlider::OnMouseCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnControllerCaptureBegin) == 0x000620, "Member 'USynth2DSlider::OnControllerCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnControllerCaptureEnd) == 0x000630, "Member 'USynth2DSlider::OnControllerCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnValueChangedX) == 0x000640, "Member 'USynth2DSlider::OnValueChangedX' has a wrong offset!"); \ +static_assert(offsetof(USynth2DSlider, OnValueChangedY) == 0x000650, "Member 'USynth2DSlider::OnValueChangedY' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthKnob_SetLocked \ +static_assert(alignof(SynthKnob_SetLocked) == 0x000001, "Wrong alignment on SynthKnob_SetLocked"); \ +static_assert(sizeof(SynthKnob_SetLocked) == 0x000001, "Wrong size on SynthKnob_SetLocked"); \ +static_assert(offsetof(SynthKnob_SetLocked, InValue) == 0x000000, "Member 'SynthKnob_SetLocked::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthKnob_SetStepSize \ +static_assert(alignof(SynthKnob_SetStepSize) == 0x000004, "Wrong alignment on SynthKnob_SetStepSize"); \ +static_assert(sizeof(SynthKnob_SetStepSize) == 0x000004, "Wrong size on SynthKnob_SetStepSize"); \ +static_assert(offsetof(SynthKnob_SetStepSize, InValue) == 0x000000, "Member 'SynthKnob_SetStepSize::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthKnob_SetValue \ +static_assert(alignof(SynthKnob_SetValue) == 0x000004, "Wrong alignment on SynthKnob_SetValue"); \ +static_assert(sizeof(SynthKnob_SetValue) == 0x000004, "Wrong size on SynthKnob_SetValue"); \ +static_assert(offsetof(SynthKnob_SetValue, InValue) == 0x000000, "Member 'SynthKnob_SetValue::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SynthKnob_GetValue \ +static_assert(alignof(SynthKnob_GetValue) == 0x000004, "Wrong alignment on SynthKnob_GetValue"); \ +static_assert(sizeof(SynthKnob_GetValue) == 0x000004, "Wrong size on SynthKnob_GetValue"); \ +static_assert(offsetof(SynthKnob_GetValue, ReturnValue) == 0x000000, "Member 'SynthKnob_GetValue::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USynthKnob \ +static_assert(alignof(USynthKnob) == 0x000010, "Wrong alignment on USynthKnob"); \ +static_assert(sizeof(USynthKnob) == 0x0005B0, "Wrong size on USynthKnob"); \ +static_assert(offsetof(USynthKnob, Value) == 0x000180, "Member 'USynthKnob::Value' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, StepSize) == 0x000184, "Member 'USynthKnob::StepSize' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, MouseSpeed) == 0x000188, "Member 'USynthKnob::MouseSpeed' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, MouseFineTuneSpeed) == 0x00018C, "Member 'USynthKnob::MouseFineTuneSpeed' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, ParameterName) == 0x000198, "Member 'USynthKnob::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, ParameterUnits) == 0x0001B0, "Member 'USynthKnob::ParameterUnits' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, ValueDelegate) == 0x0001C8, "Member 'USynthKnob::ValueDelegate' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, WidgetStyle) == 0x0001E0, "Member 'USynthKnob::WidgetStyle' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, Locked) == 0x000540, "Member 'USynthKnob::Locked' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, IsFocusable) == 0x000541, "Member 'USynthKnob::IsFocusable' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, OnMouseCaptureBegin) == 0x000548, "Member 'USynthKnob::OnMouseCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, OnMouseCaptureEnd) == 0x000558, "Member 'USynthKnob::OnMouseCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, OnControllerCaptureBegin) == 0x000568, "Member 'USynthKnob::OnControllerCaptureBegin' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, OnControllerCaptureEnd) == 0x000578, "Member 'USynthKnob::OnControllerCaptureEnd' has a wrong offset!"); \ +static_assert(offsetof(USynthKnob, OnValueChanged) == 0x000588, "Member 'USynthKnob::OnValueChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzerAssetBase \ +static_assert(alignof(UAudioAnalyzerAssetBase) == 0x000008, "Wrong alignment on UAudioAnalyzerAssetBase"); \ +static_assert(sizeof(UAudioAnalyzerAssetBase) == 0x000028, "Wrong size on UAudioAnalyzerAssetBase"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzerSettings \ +static_assert(alignof(UAudioAnalyzerSettings) == 0x000008, "Wrong alignment on UAudioAnalyzerSettings"); \ +static_assert(sizeof(UAudioAnalyzerSettings) == 0x000028, "Wrong size on UAudioAnalyzerSettings"); \ + +#define DUMPER7_ASSERTS_AudioAnalyzer_StartAnalyzing \ +static_assert(alignof(AudioAnalyzer_StartAnalyzing) == 0x000008, "Wrong alignment on AudioAnalyzer_StartAnalyzing"); \ +static_assert(sizeof(AudioAnalyzer_StartAnalyzing) == 0x000010, "Wrong size on AudioAnalyzer_StartAnalyzing"); \ +static_assert(offsetof(AudioAnalyzer_StartAnalyzing, WorldContextObject) == 0x000000, "Member 'AudioAnalyzer_StartAnalyzing::WorldContextObject' has a wrong offset!"); \ +static_assert(offsetof(AudioAnalyzer_StartAnalyzing, AudioBusToAnalyze) == 0x000008, "Member 'AudioAnalyzer_StartAnalyzing::AudioBusToAnalyze' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioAnalyzer_StopAnalyzing \ +static_assert(alignof(AudioAnalyzer_StopAnalyzing) == 0x000008, "Wrong alignment on AudioAnalyzer_StopAnalyzing"); \ +static_assert(sizeof(AudioAnalyzer_StopAnalyzing) == 0x000008, "Wrong size on AudioAnalyzer_StopAnalyzing"); \ +static_assert(offsetof(AudioAnalyzer_StopAnalyzing, WorldContextObject) == 0x000000, "Member 'AudioAnalyzer_StopAnalyzing::WorldContextObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzer \ +static_assert(alignof(UAudioAnalyzer) == 0x000008, "Wrong alignment on UAudioAnalyzer"); \ +static_assert(sizeof(UAudioAnalyzer) == 0x000090, "Wrong size on UAudioAnalyzer"); \ +static_assert(offsetof(UAudioAnalyzer, AudioBus) == 0x000028, "Member 'UAudioAnalyzer::AudioBus' has a wrong offset!"); \ +static_assert(offsetof(UAudioAnalyzer, AudioAnalyzerSubsystem) == 0x000038, "Member 'UAudioAnalyzer::AudioAnalyzerSubsystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzerNRTSettings \ +static_assert(alignof(UAudioAnalyzerNRTSettings) == 0x000008, "Wrong alignment on UAudioAnalyzerNRTSettings"); \ +static_assert(sizeof(UAudioAnalyzerNRTSettings) == 0x000028, "Wrong size on UAudioAnalyzerNRTSettings"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzerNRT \ +static_assert(alignof(UAudioAnalyzerNRT) == 0x000008, "Wrong alignment on UAudioAnalyzerNRT"); \ +static_assert(sizeof(UAudioAnalyzerNRT) == 0x000078, "Wrong size on UAudioAnalyzerNRT"); \ +static_assert(offsetof(UAudioAnalyzerNRT, Sound) == 0x000028, "Member 'UAudioAnalyzerNRT::Sound' has a wrong offset!"); \ +static_assert(offsetof(UAudioAnalyzerNRT, DurationInSeconds) == 0x000030, "Member 'UAudioAnalyzerNRT::DurationInSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioAnalyzerSubsystem \ +static_assert(alignof(UAudioAnalyzerSubsystem) == 0x000008, "Wrong alignment on UAudioAnalyzerSubsystem"); \ +static_assert(sizeof(UAudioAnalyzerSubsystem) == 0x000050, "Wrong size on UAudioAnalyzerSubsystem"); \ +static_assert(offsetof(UAudioAnalyzerSubsystem, AudioAnalyzers) == 0x000030, "Member 'UAudioAnalyzerSubsystem::AudioAnalyzers' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_GetAllChannels \ +static_assert(alignof(TraceUtilLibrary_GetAllChannels) == 0x000008, "Wrong alignment on TraceUtilLibrary_GetAllChannels"); \ +static_assert(sizeof(TraceUtilLibrary_GetAllChannels) == 0x000010, "Wrong size on TraceUtilLibrary_GetAllChannels"); \ +static_assert(offsetof(TraceUtilLibrary_GetAllChannels, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_GetAllChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_GetEnabledChannels \ +static_assert(alignof(TraceUtilLibrary_GetEnabledChannels) == 0x000008, "Wrong alignment on TraceUtilLibrary_GetEnabledChannels"); \ +static_assert(sizeof(TraceUtilLibrary_GetEnabledChannels) == 0x000010, "Wrong size on TraceUtilLibrary_GetEnabledChannels"); \ +static_assert(offsetof(TraceUtilLibrary_GetEnabledChannels, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_GetEnabledChannels::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_IsChannelEnabled \ +static_assert(alignof(TraceUtilLibrary_IsChannelEnabled) == 0x000008, "Wrong alignment on TraceUtilLibrary_IsChannelEnabled"); \ +static_assert(sizeof(TraceUtilLibrary_IsChannelEnabled) == 0x000018, "Wrong size on TraceUtilLibrary_IsChannelEnabled"); \ +static_assert(offsetof(TraceUtilLibrary_IsChannelEnabled, ChannelName) == 0x000000, "Member 'TraceUtilLibrary_IsChannelEnabled::ChannelName' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_IsChannelEnabled, ReturnValue) == 0x000010, "Member 'TraceUtilLibrary_IsChannelEnabled::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_IsTracing \ +static_assert(alignof(TraceUtilLibrary_IsTracing) == 0x000001, "Wrong alignment on TraceUtilLibrary_IsTracing"); \ +static_assert(sizeof(TraceUtilLibrary_IsTracing) == 0x000001, "Wrong size on TraceUtilLibrary_IsTracing"); \ +static_assert(offsetof(TraceUtilLibrary_IsTracing, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_IsTracing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_PauseTracing \ +static_assert(alignof(TraceUtilLibrary_PauseTracing) == 0x000001, "Wrong alignment on TraceUtilLibrary_PauseTracing"); \ +static_assert(sizeof(TraceUtilLibrary_PauseTracing) == 0x000001, "Wrong size on TraceUtilLibrary_PauseTracing"); \ +static_assert(offsetof(TraceUtilLibrary_PauseTracing, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_PauseTracing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_ResumeTracing \ +static_assert(alignof(TraceUtilLibrary_ResumeTracing) == 0x000001, "Wrong alignment on TraceUtilLibrary_ResumeTracing"); \ +static_assert(sizeof(TraceUtilLibrary_ResumeTracing) == 0x000001, "Wrong size on TraceUtilLibrary_ResumeTracing"); \ +static_assert(offsetof(TraceUtilLibrary_ResumeTracing, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_ResumeTracing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_StartTraceSendTo \ +static_assert(alignof(TraceUtilLibrary_StartTraceSendTo) == 0x000008, "Wrong alignment on TraceUtilLibrary_StartTraceSendTo"); \ +static_assert(sizeof(TraceUtilLibrary_StartTraceSendTo) == 0x000028, "Wrong size on TraceUtilLibrary_StartTraceSendTo"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceSendTo, Target) == 0x000000, "Member 'TraceUtilLibrary_StartTraceSendTo::Target' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceSendTo, Channels) == 0x000010, "Member 'TraceUtilLibrary_StartTraceSendTo::Channels' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceSendTo, ReturnValue) == 0x000020, "Member 'TraceUtilLibrary_StartTraceSendTo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_StartTraceToFile \ +static_assert(alignof(TraceUtilLibrary_StartTraceToFile) == 0x000008, "Wrong alignment on TraceUtilLibrary_StartTraceToFile"); \ +static_assert(sizeof(TraceUtilLibrary_StartTraceToFile) == 0x000028, "Wrong size on TraceUtilLibrary_StartTraceToFile"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceToFile, Filename) == 0x000000, "Member 'TraceUtilLibrary_StartTraceToFile::Filename' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceToFile, Channels) == 0x000010, "Member 'TraceUtilLibrary_StartTraceToFile::Channels' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_StartTraceToFile, ReturnValue) == 0x000020, "Member 'TraceUtilLibrary_StartTraceToFile::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_StopTracing \ +static_assert(alignof(TraceUtilLibrary_StopTracing) == 0x000001, "Wrong alignment on TraceUtilLibrary_StopTracing"); \ +static_assert(sizeof(TraceUtilLibrary_StopTracing) == 0x000001, "Wrong size on TraceUtilLibrary_StopTracing"); \ +static_assert(offsetof(TraceUtilLibrary_StopTracing, ReturnValue) == 0x000000, "Member 'TraceUtilLibrary_StopTracing::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_ToggleChannel \ +static_assert(alignof(TraceUtilLibrary_ToggleChannel) == 0x000008, "Wrong alignment on TraceUtilLibrary_ToggleChannel"); \ +static_assert(sizeof(TraceUtilLibrary_ToggleChannel) == 0x000018, "Wrong size on TraceUtilLibrary_ToggleChannel"); \ +static_assert(offsetof(TraceUtilLibrary_ToggleChannel, ChannelName) == 0x000000, "Member 'TraceUtilLibrary_ToggleChannel::ChannelName' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_ToggleChannel, Enabled) == 0x000010, "Member 'TraceUtilLibrary_ToggleChannel::Enabled' has a wrong offset!"); \ +static_assert(offsetof(TraceUtilLibrary_ToggleChannel, ReturnValue) == 0x000011, "Member 'TraceUtilLibrary_ToggleChannel::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_TraceBookmark \ +static_assert(alignof(TraceUtilLibrary_TraceBookmark) == 0x000008, "Wrong alignment on TraceUtilLibrary_TraceBookmark"); \ +static_assert(sizeof(TraceUtilLibrary_TraceBookmark) == 0x000010, "Wrong size on TraceUtilLibrary_TraceBookmark"); \ +static_assert(offsetof(TraceUtilLibrary_TraceBookmark, Name_0) == 0x000000, "Member 'TraceUtilLibrary_TraceBookmark::Name_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_TraceMarkRegionEnd \ +static_assert(alignof(TraceUtilLibrary_TraceMarkRegionEnd) == 0x000008, "Wrong alignment on TraceUtilLibrary_TraceMarkRegionEnd"); \ +static_assert(sizeof(TraceUtilLibrary_TraceMarkRegionEnd) == 0x000010, "Wrong size on TraceUtilLibrary_TraceMarkRegionEnd"); \ +static_assert(offsetof(TraceUtilLibrary_TraceMarkRegionEnd, Name_0) == 0x000000, "Member 'TraceUtilLibrary_TraceMarkRegionEnd::Name_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TraceUtilLibrary_TraceMarkRegionStart \ +static_assert(alignof(TraceUtilLibrary_TraceMarkRegionStart) == 0x000008, "Wrong alignment on TraceUtilLibrary_TraceMarkRegionStart"); \ +static_assert(sizeof(TraceUtilLibrary_TraceMarkRegionStart) == 0x000010, "Wrong size on TraceUtilLibrary_TraceMarkRegionStart"); \ +static_assert(offsetof(TraceUtilLibrary_TraceMarkRegionStart, Name_0) == 0x000000, "Member 'TraceUtilLibrary_TraceMarkRegionStart::Name_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTraceUtilLibrary \ +static_assert(alignof(UTraceUtilLibrary) == 0x000008, "Wrong alignment on UTraceUtilLibrary"); \ +static_assert(sizeof(UTraceUtilLibrary) == 0x000028, "Wrong size on UTraceUtilLibrary"); \ + +#define DUMPER7_ASSERTS_EQC_BehindQuerier_C_ProvideSingleLocation \ +static_assert(alignof(EQC_BehindQuerier_C_ProvideSingleLocation) == 0x000008, "Wrong alignment on EQC_BehindQuerier_C_ProvideSingleLocation"); \ +static_assert(sizeof(EQC_BehindQuerier_C_ProvideSingleLocation) == 0x0000A0, "Wrong size on EQC_BehindQuerier_C_ProvideSingleLocation"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, QuerierObject) == 0x000000, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, QuerierActor) == 0x000008, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, ResultingLocation) == 0x000010, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::ResultingLocation' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, CallFunc_GetActorForwardVector_ReturnValue) == 0x000058, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000070, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_BehindQuerier_C_ProvideSingleLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x000088, "Member 'EQC_BehindQuerier_C_ProvideSingleLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEQC_BehindQuerier_C \ +static_assert(alignof(UEQC_BehindQuerier_C) == 0x000008, "Wrong alignment on UEQC_BehindQuerier_C"); \ +static_assert(sizeof(UEQC_BehindQuerier_C) == 0x000030, "Wrong size on UEQC_BehindQuerier_C"); \ + +#define DUMPER7_ASSERTS_FClosestPhysicsObjectResult \ +static_assert(alignof(FClosestPhysicsObjectResult) == 0x000008, "Wrong alignment on FClosestPhysicsObjectResult"); \ +static_assert(sizeof(FClosestPhysicsObjectResult) == 0x000028, "Wrong size on FClosestPhysicsObjectResult"); \ + +#define DUMPER7_ASSERTS_FSolverCollisionFilterSettings \ +static_assert(alignof(FSolverCollisionFilterSettings) == 0x000004, "Wrong alignment on FSolverCollisionFilterSettings"); \ +static_assert(sizeof(FSolverCollisionFilterSettings) == 0x000010, "Wrong size on FSolverCollisionFilterSettings"); \ +static_assert(offsetof(FSolverCollisionFilterSettings, FilterEnabled) == 0x000000, "Member 'FSolverCollisionFilterSettings::FilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionFilterSettings, MinMass) == 0x000004, "Member 'FSolverCollisionFilterSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionFilterSettings, MinSpeed) == 0x000008, "Member 'FSolverCollisionFilterSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionFilterSettings, MinImpulse) == 0x00000C, "Member 'FSolverCollisionFilterSettings::MinImpulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverBreakingFilterSettings \ +static_assert(alignof(FSolverBreakingFilterSettings) == 0x000004, "Wrong alignment on FSolverBreakingFilterSettings"); \ +static_assert(sizeof(FSolverBreakingFilterSettings) == 0x000010, "Wrong size on FSolverBreakingFilterSettings"); \ +static_assert(offsetof(FSolverBreakingFilterSettings, FilterEnabled) == 0x000000, "Member 'FSolverBreakingFilterSettings::FilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingFilterSettings, MinMass) == 0x000004, "Member 'FSolverBreakingFilterSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingFilterSettings, MinSpeed) == 0x000008, "Member 'FSolverBreakingFilterSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingFilterSettings, MinVolume) == 0x00000C, "Member 'FSolverBreakingFilterSettings::MinVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverTrailingFilterSettings \ +static_assert(alignof(FSolverTrailingFilterSettings) == 0x000004, "Wrong alignment on FSolverTrailingFilterSettings"); \ +static_assert(sizeof(FSolverTrailingFilterSettings) == 0x000010, "Wrong size on FSolverTrailingFilterSettings"); \ +static_assert(offsetof(FSolverTrailingFilterSettings, FilterEnabled) == 0x000000, "Member 'FSolverTrailingFilterSettings::FilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingFilterSettings, MinMass) == 0x000004, "Member 'FSolverTrailingFilterSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingFilterSettings, MinSpeed) == 0x000008, "Member 'FSolverTrailingFilterSettings::MinSpeed' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingFilterSettings, MinVolume) == 0x00000C, "Member 'FSolverTrailingFilterSettings::MinVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosSolverConfiguration \ +static_assert(alignof(FChaosSolverConfiguration) == 0x000004, "Wrong alignment on FChaosSolverConfiguration"); \ +static_assert(sizeof(FChaosSolverConfiguration) == 0x000068, "Wrong size on FChaosSolverConfiguration"); \ +static_assert(offsetof(FChaosSolverConfiguration, PositionIterations) == 0x000000, "Member 'FChaosSolverConfiguration::PositionIterations' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, VelocityIterations) == 0x000004, "Member 'FChaosSolverConfiguration::VelocityIterations' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, ProjectionIterations) == 0x000008, "Member 'FChaosSolverConfiguration::ProjectionIterations' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, CollisionMarginFraction) == 0x00000C, "Member 'FChaosSolverConfiguration::CollisionMarginFraction' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, CollisionMarginMax) == 0x000010, "Member 'FChaosSolverConfiguration::CollisionMarginMax' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, CollisionCullDistance) == 0x000014, "Member 'FChaosSolverConfiguration::CollisionCullDistance' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, CollisionMaxPushOutVelocity) == 0x000018, "Member 'FChaosSolverConfiguration::CollisionMaxPushOutVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, ClusterConnectionFactor) == 0x00001C, "Member 'FChaosSolverConfiguration::ClusterConnectionFactor' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, ClusterUnionConnectionType) == 0x000020, "Member 'FChaosSolverConfiguration::ClusterUnionConnectionType' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, bGenerateCollisionData) == 0x000021, "Member 'FChaosSolverConfiguration::bGenerateCollisionData' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, CollisionFilterSettings) == 0x000024, "Member 'FChaosSolverConfiguration::CollisionFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, bGenerateBreakData) == 0x000034, "Member 'FChaosSolverConfiguration::bGenerateBreakData' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, BreakingFilterSettings) == 0x000038, "Member 'FChaosSolverConfiguration::BreakingFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, bGenerateTrailingData) == 0x000048, "Member 'FChaosSolverConfiguration::bGenerateTrailingData' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, TrailingFilterSettings) == 0x00004C, "Member 'FChaosSolverConfiguration::TrailingFilterSettings' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, Iterations) == 0x00005C, "Member 'FChaosSolverConfiguration::Iterations' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, PushOutIterations) == 0x000060, "Member 'FChaosSolverConfiguration::PushOutIterations' has a wrong offset!"); \ +static_assert(offsetof(FChaosSolverConfiguration, bGenerateContactGraph) == 0x000064, "Member 'FChaosSolverConfiguration::bGenerateContactGraph' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FManagedArrayCollection \ +static_assert(alignof(FManagedArrayCollection) == 0x000008, "Wrong alignment on FManagedArrayCollection"); \ +static_assert(sizeof(FManagedArrayCollection) == 0x0000B0, "Wrong size on FManagedArrayCollection"); \ + +#define DUMPER7_ASSERTS_FSolverCollisionData \ +static_assert(alignof(FSolverCollisionData) == 0x000008, "Wrong alignment on FSolverCollisionData"); \ +static_assert(sizeof(FSolverCollisionData) == 0x0000C0, "Wrong size on FSolverCollisionData"); \ +static_assert(offsetof(FSolverCollisionData, Location) == 0x000000, "Member 'FSolverCollisionData::Location' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, AccumulatedImpulse) == 0x000018, "Member 'FSolverCollisionData::AccumulatedImpulse' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, Normal) == 0x000030, "Member 'FSolverCollisionData::Normal' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, Velocity1) == 0x000048, "Member 'FSolverCollisionData::Velocity1' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, Velocity2) == 0x000060, "Member 'FSolverCollisionData::Velocity2' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, AngularVelocity1) == 0x000078, "Member 'FSolverCollisionData::AngularVelocity1' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, AngularVelocity2) == 0x000090, "Member 'FSolverCollisionData::AngularVelocity2' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, Mass1) == 0x0000A8, "Member 'FSolverCollisionData::Mass1' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, Mass2) == 0x0000AC, "Member 'FSolverCollisionData::Mass2' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, ParticleIndex) == 0x0000B0, "Member 'FSolverCollisionData::ParticleIndex' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, LevelsetIndex) == 0x0000B4, "Member 'FSolverCollisionData::LevelsetIndex' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, ParticleIndexMesh) == 0x0000B8, "Member 'FSolverCollisionData::ParticleIndexMesh' has a wrong offset!"); \ +static_assert(offsetof(FSolverCollisionData, LevelsetIndexMesh) == 0x0000BC, "Member 'FSolverCollisionData::LevelsetIndexMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverBreakingData \ +static_assert(alignof(FSolverBreakingData) == 0x000008, "Wrong alignment on FSolverBreakingData"); \ +static_assert(sizeof(FSolverBreakingData) == 0x000058, "Wrong size on FSolverBreakingData"); \ +static_assert(offsetof(FSolverBreakingData, Location) == 0x000000, "Member 'FSolverBreakingData::Location' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingData, Velocity) == 0x000018, "Member 'FSolverBreakingData::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingData, AngularVelocity) == 0x000030, "Member 'FSolverBreakingData::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingData, MASS) == 0x000048, "Member 'FSolverBreakingData::MASS' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingData, ParticleIndex) == 0x00004C, "Member 'FSolverBreakingData::ParticleIndex' has a wrong offset!"); \ +static_assert(offsetof(FSolverBreakingData, ParticleIndexMesh) == 0x000050, "Member 'FSolverBreakingData::ParticleIndexMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverTrailingData \ +static_assert(alignof(FSolverTrailingData) == 0x000008, "Wrong alignment on FSolverTrailingData"); \ +static_assert(sizeof(FSolverTrailingData) == 0x000058, "Wrong size on FSolverTrailingData"); \ +static_assert(offsetof(FSolverTrailingData, Location) == 0x000000, "Member 'FSolverTrailingData::Location' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingData, Velocity) == 0x000018, "Member 'FSolverTrailingData::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingData, AngularVelocity) == 0x000030, "Member 'FSolverTrailingData::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingData, MASS) == 0x000048, "Member 'FSolverTrailingData::MASS' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingData, ParticleIndex) == 0x00004C, "Member 'FSolverTrailingData::ParticleIndex' has a wrong offset!"); \ +static_assert(offsetof(FSolverTrailingData, ParticleIndexMesh) == 0x000050, "Member 'FSolverTrailingData::ParticleIndexMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRecordedFrame \ +static_assert(alignof(FRecordedFrame) == 0x000008, "Wrong alignment on FRecordedFrame"); \ +static_assert(sizeof(FRecordedFrame) == 0x0000B8, "Wrong size on FRecordedFrame"); \ +static_assert(offsetof(FRecordedFrame, Transforms) == 0x000000, "Member 'FRecordedFrame::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, TransformIndices) == 0x000010, "Member 'FRecordedFrame::TransformIndices' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, PreviousTransformIndices) == 0x000020, "Member 'FRecordedFrame::PreviousTransformIndices' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, DisabledFlags) == 0x000030, "Member 'FRecordedFrame::DisabledFlags' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, Collisions) == 0x000040, "Member 'FRecordedFrame::Collisions' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, Breakings) == 0x000050, "Member 'FRecordedFrame::Breakings' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, Trailings) == 0x000060, "Member 'FRecordedFrame::Trailings' has a wrong offset!"); \ +static_assert(offsetof(FRecordedFrame, Timestamp) == 0x0000B0, "Member 'FRecordedFrame::Timestamp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRecordedTransformTrack \ +static_assert(alignof(FRecordedTransformTrack) == 0x000008, "Wrong alignment on FRecordedTransformTrack"); \ +static_assert(sizeof(FRecordedTransformTrack) == 0x000010, "Wrong size on FRecordedTransformTrack"); \ +static_assert(offsetof(FRecordedTransformTrack, Records) == 0x000000, "Member 'FRecordedTransformTrack::Records' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverRemovalFilterSettings \ +static_assert(alignof(FSolverRemovalFilterSettings) == 0x000004, "Wrong alignment on FSolverRemovalFilterSettings"); \ +static_assert(sizeof(FSolverRemovalFilterSettings) == 0x00000C, "Wrong size on FSolverRemovalFilterSettings"); \ +static_assert(offsetof(FSolverRemovalFilterSettings, FilterEnabled) == 0x000000, "Member 'FSolverRemovalFilterSettings::FilterEnabled' has a wrong offset!"); \ +static_assert(offsetof(FSolverRemovalFilterSettings, MinMass) == 0x000004, "Member 'FSolverRemovalFilterSettings::MinMass' has a wrong offset!"); \ +static_assert(offsetof(FSolverRemovalFilterSettings, MinVolume) == 0x000008, "Member 'FSolverRemovalFilterSettings::MinVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_Fade_C_ExecuteUbergraph_WBP_Fade \ +static_assert(alignof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade) == 0x000008, "Wrong alignment on WBP_Fade_C_ExecuteUbergraph_WBP_Fade"); \ +static_assert(sizeof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade) == 0x000028, "Wrong size on WBP_Fade_C_ExecuteUbergraph_WBP_Fade"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, EntryPoint) == 0x000000, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, K2Node_Event_InFadeDirection) == 0x000004, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::K2Node_Event_InFadeDirection' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, K2Node_Event_InNewOpacity) == 0x000008, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::K2Node_Event_InNewOpacity' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000018, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_ExecuteUbergraph_WBP_Fade, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000020, "Member 'WBP_Fade_C_ExecuteUbergraph_WBP_Fade::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_Fade_C_OnFadeOpacityChanged \ +static_assert(alignof(WBP_Fade_C_OnFadeOpacityChanged) == 0x000004, "Wrong alignment on WBP_Fade_C_OnFadeOpacityChanged"); \ +static_assert(sizeof(WBP_Fade_C_OnFadeOpacityChanged) == 0x000008, "Wrong size on WBP_Fade_C_OnFadeOpacityChanged"); \ +static_assert(offsetof(WBP_Fade_C_OnFadeOpacityChanged, InFadeDirection) == 0x000000, "Member 'WBP_Fade_C_OnFadeOpacityChanged::InFadeDirection' has a wrong offset!"); \ +static_assert(offsetof(WBP_Fade_C_OnFadeOpacityChanged, InNewOpacity) == 0x000004, "Member 'WBP_Fade_C_OnFadeOpacityChanged::InNewOpacity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_Fade_C \ +static_assert(alignof(UWBP_Fade_C) == 0x000008, "Wrong alignment on UWBP_Fade_C"); \ +static_assert(sizeof(UWBP_Fade_C) == 0x0002F8, "Wrong size on UWBP_Fade_C"); \ +static_assert(offsetof(UWBP_Fade_C, UberGraphFrame) == 0x0002F0, "Member 'UWBP_Fade_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlatformRuntimeAudioCompressionOverrides \ +static_assert(alignof(FPlatformRuntimeAudioCompressionOverrides) == 0x000004, "Wrong alignment on FPlatformRuntimeAudioCompressionOverrides"); \ +static_assert(sizeof(FPlatformRuntimeAudioCompressionOverrides) == 0x000010, "Wrong size on FPlatformRuntimeAudioCompressionOverrides"); \ +static_assert(offsetof(FPlatformRuntimeAudioCompressionOverrides, bOverrideCompressionTimes) == 0x000000, "Member 'FPlatformRuntimeAudioCompressionOverrides::bOverrideCompressionTimes' has a wrong offset!"); \ +static_assert(offsetof(FPlatformRuntimeAudioCompressionOverrides, DurationThreshold) == 0x000004, "Member 'FPlatformRuntimeAudioCompressionOverrides::DurationThreshold' has a wrong offset!"); \ +static_assert(offsetof(FPlatformRuntimeAudioCompressionOverrides, MaxNumRandomBranches) == 0x000008, "Member 'FPlatformRuntimeAudioCompressionOverrides::MaxNumRandomBranches' has a wrong offset!"); \ +static_assert(offsetof(FPlatformRuntimeAudioCompressionOverrides, SoundCueQualityIndex) == 0x00000C, "Member 'FPlatformRuntimeAudioCompressionOverrides::SoundCueQualityIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_BeginOverlap \ +static_assert(alignof(InteractionPromptMover_C_BeginOverlap) == 0x000008, "Wrong alignment on InteractionPromptMover_C_BeginOverlap"); \ +static_assert(sizeof(InteractionPromptMover_C_BeginOverlap) == 0x000010, "Wrong size on InteractionPromptMover_C_BeginOverlap"); \ +static_assert(offsetof(InteractionPromptMover_C_BeginOverlap, OverlappedActor) == 0x000000, "Member 'InteractionPromptMover_C_BeginOverlap::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_BeginOverlap, OtherActor) == 0x000008, "Member 'InteractionPromptMover_C_BeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_EndOverlap \ +static_assert(alignof(InteractionPromptMover_C_EndOverlap) == 0x000008, "Wrong alignment on InteractionPromptMover_C_EndOverlap"); \ +static_assert(sizeof(InteractionPromptMover_C_EndOverlap) == 0x000010, "Wrong size on InteractionPromptMover_C_EndOverlap"); \ +static_assert(offsetof(InteractionPromptMover_C_EndOverlap, OverlappedActor) == 0x000000, "Member 'InteractionPromptMover_C_EndOverlap::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_EndOverlap, OtherActor) == 0x000008, "Member 'InteractionPromptMover_C_EndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover \ +static_assert(alignof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover) == 0x000010, "Wrong alignment on InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover"); \ +static_assert(sizeof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover) == 0x000B00, "Wrong size on InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, EntryPoint) == 0x000000, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_bool_Variable) == 0x00000C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Array_Index_Variable) == 0x000010, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Array_Index_Variable_1) == 0x000014, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Loop_Counter_Variable_1) == 0x000018, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Add_IntInt_ReturnValue_1) == 0x00001C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Array_Index_Variable_2) == 0x000020, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Loop_Counter_Variable_2) == 0x000024, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Add_IntInt_ReturnValue_2) == 0x000028, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Array_Index_Variable_3) == 0x00002C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_Event_DeltaSeconds) == 0x000030, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000038, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000040, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Loop_Counter_Variable_3) == 0x000048, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Add_IntInt_ReturnValue_3) == 0x000050, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetOwner_ReturnValue) == 0x000058, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item) == 0x000060, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Length_ReturnValue_1) == 0x000068, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CreateDelegate_OutputDelegate) == 0x00006C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Less_IntInt_ReturnValue) == 0x00007C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CreateDelegate_OutputDelegate_1) == 0x000080, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_OverlappedActor_1) == 0x000090, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_OverlappedActor_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_OtherActor_1) == 0x000098, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000A0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_OverlappedActor) == 0x0000A8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_OtherActor) == 0x0000B0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x0000B8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Loop_Counter_Variable_4) == 0x0000BC, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000C0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Add_IntInt_ReturnValue_4) == 0x0000C4, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x0000D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_1) == 0x000130, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_1) == 0x000150, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_TransformLocation_ReturnValue) == 0x0001B0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_TransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_2) == 0x0001C8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x0001D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Length_ReturnValue_2) == 0x0002B8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x0002C0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Less_IntInt_ReturnValue_2) == 0x0002C8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0002E8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetCameraRotation_ReturnValue) == 0x0002F0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_2) == 0x000310, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakRotator_Roll) == 0x000370, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakRotator_Pitch) == 0x000374, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakRotator_Yaw) == 0x000378, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_GetCameraLocation_ReturnValue) == 0x000380, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MapRangeClamped_ReturnValue) == 0x000398, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_3) == 0x0003A0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_3) == 0x000400, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X) == 0x000418, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y) == 0x000420, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z) == 0x000428, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_4) == 0x000430, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_1) == 0x000448, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_1) == 0x000450, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_1) == 0x000458, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000460, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_InverseTransformLocation_ReturnValue) == 0x000478, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_4) == 0x000490, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_2) == 0x0004F0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_2) == 0x0004F8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_2) == 0x000500, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_InverseTransformLocation_ReturnValue_1) == 0x000508, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_InverseTransformLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue) == 0x000520, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_3) == 0x000538, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_3) == 0x000540, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_3) == 0x000548, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_1) == 0x000550, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_5) == 0x000570, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Vector_Distance2D_ReturnValue) == 0x0005D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Vector_Distance2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_InverseTransformLocation_ReturnValue_2) == 0x0005D8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_InverseTransformLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_4) == 0x0005F0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_4) == 0x0005F8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_4) == 0x000600, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000608, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000610, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentToWorld_ReturnValue_6) == 0x000620, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentToWorld_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_FClamp_ReturnValue) == 0x000680, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_2) == 0x000688, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_3) == 0x0006A0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_TransformLocation_ReturnValue_1) == 0x0006B8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_TransformLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_TransformLocation_ReturnValue_2) == 0x0006D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_TransformLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_SetWorldLocation_SweepHitResult_1) == 0x0006E8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_SetWorldLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_ClosedInteractionPoints) == 0x0007D0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_ClosedInteractionPoints' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_OpenInteractionPoints) == 0x0007E0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_OpenInteractionPoints' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_4) == 0x0007F0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_TransformLocation_ReturnValue_3) == 0x000808, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_TransformLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_5) == 0x000820, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Length_ReturnValue_3) == 0x000828, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Less_IntInt_ReturnValue_3) == 0x00082C, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_5) == 0x000830, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_5) == 0x000838, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_5) == 0x000840, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_5) == 0x000848, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_CustomEvent_IsOpen) == 0x000860, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_CustomEvent_IsOpen' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000868, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_6) == 0x000950, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_7) == 0x000958, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Length_ReturnValue_4) == 0x000970, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_X_6) == 0x000978, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_X_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Y_6) == 0x000980, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Y_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_BreakVector_Z_6) == 0x000988, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_BreakVector_Z_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Less_IntInt_ReturnValue_4) == 0x000990, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, K2Node_Select_Default) == 0x000998, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, Temp_int_Array_Index_Variable_4) == 0x0009A0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MakeVector_ReturnValue_6) == 0x0009A8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MakeVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Get_Item_8) == 0x0009C0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Get_Item_8' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x0009C8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000AB0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Add_ReturnValue) == 0x000AC8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_InverseTransformLocation_ReturnValue_3) == 0x000AD0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_InverseTransformLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Add_ReturnValue_1) == 0x000AE8, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_Array_Add_ReturnValue_2) == 0x000AEC, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000AF0, "Member 'InteractionPromptMover_C_ExecuteUbergraph_InteractionPromptMover::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_Close \ +static_assert(alignof(InteractionPromptMover_C_Close) == 0x000001, "Wrong alignment on InteractionPromptMover_C_Close"); \ +static_assert(sizeof(InteractionPromptMover_C_Close) == 0x000001, "Wrong size on InteractionPromptMover_C_Close"); \ +static_assert(offsetof(InteractionPromptMover_C_Close, IsOpen) == 0x000000, "Member 'InteractionPromptMover_C_Close::IsOpen' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_ReceiveTick \ +static_assert(alignof(InteractionPromptMover_C_ReceiveTick) == 0x000004, "Wrong alignment on InteractionPromptMover_C_ReceiveTick"); \ +static_assert(sizeof(InteractionPromptMover_C_ReceiveTick) == 0x000004, "Wrong size on InteractionPromptMover_C_ReceiveTick"); \ +static_assert(offsetof(InteractionPromptMover_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'InteractionPromptMover_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_InteractionPromptMover_C_Setup \ +static_assert(alignof(InteractionPromptMover_C_Setup) == 0x000008, "Wrong alignment on InteractionPromptMover_C_Setup"); \ +static_assert(sizeof(InteractionPromptMover_C_Setup) == 0x000020, "Wrong size on InteractionPromptMover_C_Setup"); \ +static_assert(offsetof(InteractionPromptMover_C_Setup, ClosedInteractionPoints_0) == 0x000000, "Member 'InteractionPromptMover_C_Setup::ClosedInteractionPoints_0' has a wrong offset!"); \ +static_assert(offsetof(InteractionPromptMover_C_Setup, OpenInteractionPoints_0) == 0x000010, "Member 'InteractionPromptMover_C_Setup::OpenInteractionPoints_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInteractionPromptMover_C \ +static_assert(alignof(UInteractionPromptMover_C) == 0x000010, "Wrong alignment on UInteractionPromptMover_C"); \ +static_assert(sizeof(UInteractionPromptMover_C) == 0x000340, "Wrong size on UInteractionPromptMover_C"); \ +static_assert(offsetof(UInteractionPromptMover_C, UberGraphFrame) == 0x0002A0, "Member 'UInteractionPromptMover_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, ClosedInteractionPoints) == 0x0002A8, "Member 'UInteractionPromptMover_C::ClosedInteractionPoints' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, StartingInteractionPointOrigins) == 0x0002B8, "Member 'UInteractionPromptMover_C::StartingInteractionPointOrigins' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, CurrentInteractionPointOrigins) == 0x0002C8, "Member 'UInteractionPromptMover_C::CurrentInteractionPointOrigins' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, CurrentInteractionPoint) == 0x0002D8, "Member 'UInteractionPromptMover_C::CurrentInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, Array_Index) == 0x0002E0, "Member 'UInteractionPromptMover_C::Array_Index' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, MinZ) == 0x0002E8, "Member 'UInteractionPromptMover_C::MinZ' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, MaxZ) == 0x0002F0, "Member 'UInteractionPromptMover_C::MaxZ' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, MinY) == 0x0002F8, "Member 'UInteractionPromptMover_C::MinY' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, MaxY) == 0x000300, "Member 'UInteractionPromptMover_C::MaxY' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, OpenInteractionPoints) == 0x000308, "Member 'UInteractionPromptMover_C::OpenInteractionPoints' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, OpenDoorInteractionHeight) == 0x000318, "Member 'UInteractionPromptMover_C::OpenDoorInteractionHeight' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, Is_Open) == 0x000320, "Member 'UInteractionPromptMover_C::Is_Open' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, StartingInteractionPointOriginsRelative) == 0x000328, "Member 'UInteractionPromptMover_C::StartingInteractionPointOriginsRelative' has a wrong offset!"); \ +static_assert(offsetof(UInteractionPromptMover_C, ShowDebugLine) == 0x000338, "Member 'UInteractionPromptMover_C::ShowDebugLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Machete_C \ +static_assert(alignof(UBP_WeaponInstance_Machete_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Machete_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Machete_C) == 0x0000F0, "Wrong size on UBP_WeaponInstance_Machete_C"); \ + +#define DUMPER7_ASSERTS_FJoinabilitySettings \ +static_assert(alignof(FJoinabilitySettings) == 0x000004, "Wrong alignment on FJoinabilitySettings"); \ +static_assert(sizeof(FJoinabilitySettings) == 0x000014, "Wrong size on FJoinabilitySettings"); \ +static_assert(offsetof(FJoinabilitySettings, SessionName) == 0x000000, "Member 'FJoinabilitySettings::SessionName' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, bPublicSearchable) == 0x000008, "Member 'FJoinabilitySettings::bPublicSearchable' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, bAllowInvites) == 0x000009, "Member 'FJoinabilitySettings::bAllowInvites' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, bJoinViaPresence) == 0x00000A, "Member 'FJoinabilitySettings::bJoinViaPresence' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, bJoinViaPresenceFriendsOnly) == 0x00000B, "Member 'FJoinabilitySettings::bJoinViaPresenceFriendsOnly' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, MaxPlayers) == 0x00000C, "Member 'FJoinabilitySettings::MaxPlayers' has a wrong offset!"); \ +static_assert(offsetof(FJoinabilitySettings, MaxPartySize) == 0x000010, "Member 'FJoinabilitySettings::MaxPartySize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniqueNetIdWrapper \ +static_assert(alignof(FUniqueNetIdWrapper) == 0x000001, "Wrong alignment on FUniqueNetIdWrapper"); \ +static_assert(sizeof(FUniqueNetIdWrapper) == 0x000001, "Wrong size on FUniqueNetIdWrapper"); \ + +#define DUMPER7_ASSERTS_UGA_LockMovementSupport_C \ +static_assert(alignof(UGA_LockMovementSupport_C) == 0x000008, "Wrong alignment on UGA_LockMovementSupport_C"); \ +static_assert(sizeof(UGA_LockMovementSupport_C) == 0x000668, "Wrong size on UGA_LockMovementSupport_C"); \ + +#define DUMPER7_ASSERTS_FMediaPlayerTrackOptions \ +static_assert(alignof(FMediaPlayerTrackOptions) == 0x000004, "Wrong alignment on FMediaPlayerTrackOptions"); \ +static_assert(sizeof(FMediaPlayerTrackOptions) == 0x00001C, "Wrong size on FMediaPlayerTrackOptions"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Audio) == 0x000000, "Member 'FMediaPlayerTrackOptions::Audio' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Caption) == 0x000004, "Member 'FMediaPlayerTrackOptions::Caption' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, MetaData) == 0x000008, "Member 'FMediaPlayerTrackOptions::MetaData' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Script) == 0x00000C, "Member 'FMediaPlayerTrackOptions::Script' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Subtitle) == 0x000010, "Member 'FMediaPlayerTrackOptions::Subtitle' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Text) == 0x000014, "Member 'FMediaPlayerTrackOptions::Text' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerTrackOptions, Video) == 0x000018, "Member 'FMediaPlayerTrackOptions::Video' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMediaPlayerOptions \ +static_assert(alignof(FMediaPlayerOptions) == 0x000008, "Wrong alignment on FMediaPlayerOptions"); \ +static_assert(sizeof(FMediaPlayerOptions) == 0x000030, "Wrong size on FMediaPlayerOptions"); \ +static_assert(offsetof(FMediaPlayerOptions, Tracks) == 0x000000, "Member 'FMediaPlayerOptions::Tracks' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerOptions, SeekTime) == 0x000020, "Member 'FMediaPlayerOptions::SeekTime' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerOptions, PlayOnOpen) == 0x000028, "Member 'FMediaPlayerOptions::PlayOnOpen' has a wrong offset!"); \ +static_assert(offsetof(FMediaPlayerOptions, Loop) == 0x000029, "Member 'FMediaPlayerOptions::Loop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile \ +static_assert(alignof(WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile) == 0x000004, "Wrong alignment on WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile"); \ +static_assert(sizeof(WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile) == 0x000040, "Wrong size on WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile, EntryPoint) == 0x000000, "Member 'WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_TokenDebugTile_C_ExecuteUbergraph_WBP_TokenDebugTile::K2Node_Event_InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TokenDebugTile_C_GetColor \ +static_assert(alignof(WBP_TokenDebugTile_C_GetColor) == 0x000004, "Wrong alignment on WBP_TokenDebugTile_C_GetColor"); \ +static_assert(sizeof(WBP_TokenDebugTile_C_GetColor) == 0x000010, "Wrong size on WBP_TokenDebugTile_C_GetColor"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_GetColor, ReturnValue) == 0x000000, "Member 'WBP_TokenDebugTile_C_GetColor::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TokenDebugTile_C_GetText \ +static_assert(alignof(WBP_TokenDebugTile_C_GetText) == 0x000008, "Wrong alignment on WBP_TokenDebugTile_C_GetText"); \ +static_assert(sizeof(WBP_TokenDebugTile_C_GetText) == 0x000018, "Wrong size on WBP_TokenDebugTile_C_GetText"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_GetText, ReturnValue) == 0x000000, "Member 'WBP_TokenDebugTile_C_GetText::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TokenDebugTile_C_Tick \ +static_assert(alignof(WBP_TokenDebugTile_C_Tick) == 0x000004, "Wrong alignment on WBP_TokenDebugTile_C_Tick"); \ +static_assert(sizeof(WBP_TokenDebugTile_C_Tick) == 0x00003C, "Wrong size on WBP_TokenDebugTile_C_Tick"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_TokenDebugTile_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TokenDebugTile_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_TokenDebugTile_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TokenDebugTile_C \ +static_assert(alignof(UWBP_TokenDebugTile_C) == 0x000008, "Wrong alignment on UWBP_TokenDebugTile_C"); \ +static_assert(sizeof(UWBP_TokenDebugTile_C) == 0x000368, "Wrong size on UWBP_TokenDebugTile_C"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_TokenDebugTile_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, ColorToken) == 0x0002D0, "Member 'UWBP_TokenDebugTile_C::ColorToken' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, Handicap) == 0x0002D8, "Member 'UWBP_TokenDebugTile_C::Handicap' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, Score) == 0x0002E0, "Member 'UWBP_TokenDebugTile_C::Score' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, Text) == 0x0002E8, "Member 'UWBP_TokenDebugTile_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, TextLogo) == 0x0002F0, "Member 'UWBP_TokenDebugTile_C::TextLogo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, TileText) == 0x0002F8, "Member 'UWBP_TokenDebugTile_C::TileText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, Color) == 0x000310, "Member 'UWBP_TokenDebugTile_C::Color' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, LogoText) == 0x000320, "Member 'UWBP_TokenDebugTile_C::LogoText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, HandicapText) == 0x000338, "Member 'UWBP_TokenDebugTile_C::HandicapText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TokenDebugTile_C, ScoreText) == 0x000350, "Member 'UWBP_TokenDebugTile_C::ScoreText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MouseCursor_C \ +static_assert(alignof(UWBP_MouseCursor_C) == 0x000008, "Wrong alignment on UWBP_MouseCursor_C"); \ +static_assert(sizeof(UWBP_MouseCursor_C) == 0x0002C8, "Wrong size on UWBP_MouseCursor_C"); \ +static_assert(offsetof(UWBP_MouseCursor_C, Image_91) == 0x0002C0, "Member 'UWBP_MouseCursor_C::Image_91' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C \ +static_assert(alignof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C) == 0x000008, "Wrong alignment on ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C"); \ +static_assert(sizeof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C) == 0x000310, "Wrong size on ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C"); \ +static_assert(offsetof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C, SpotLight) == 0x0002E8, "Member 'ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C, HeraAudioMass) == 0x0002F0, "Member 'ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C::HeraAudioMass' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C, PointLight___Main) == 0x0002F8, "Member 'ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C::PointLight___Main' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C, SM_Bulb_Bare_01) == 0x000300, "Member 'ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C::SM_Bulb_Bare_01' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C, PointLight) == 0x000308, "Member 'ABPC_lightceiling_bulb_02_PreEscape_01_Generated_C::PointLight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A \ +static_assert(alignof(GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A) == 0x000008, "Wrong alignment on GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(sizeof(GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A) == 0x0000B8, "Wrong size on GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(offsetof(GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A, EventTag) == 0x000000, "Member 'GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A, EventData) == 0x000008, "Member 'GA_Dance_C_EventReceived_890FF18842E69BE7F272F08C8161B76A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B \ +static_assert(alignof(GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B) == 0x000008, "Wrong alignment on GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(sizeof(GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B) == 0x0000B8, "Wrong size on GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(offsetof(GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B, EventTag) == 0x000000, "Member 'GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B, EventData) == 0x000008, "Member 'GA_Dance_C_EventReceived_E6E797914E9EBD441D312CAF78867B1B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_ExecuteUbergraph_GA_Dance \ +static_assert(alignof(GA_Dance_C_ExecuteUbergraph_GA_Dance) == 0x000008, "Wrong alignment on GA_Dance_C_ExecuteUbergraph_GA_Dance"); \ +static_assert(sizeof(GA_Dance_C_ExecuteUbergraph_GA_Dance) == 0x000988, "Wrong size on GA_Dance_C_ExecuteUbergraph_GA_Dance"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, EntryPoint) == 0x000000, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_Array_Random_OutItem) == 0x000008, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_Array_Random_OutIndex) == 0x000010, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000028, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_9) == 0x000030, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_9) == 0x000038, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_IsValid_ReturnValue) == 0x0000E8, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000EC, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_8) == 0x0000FC, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_8) == 0x000108, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_7) == 0x0001B8, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_7) == 0x0001C0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_6) == 0x000280, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_6) == 0x000288, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_3) == 0x000338, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_5) == 0x000348, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_5) == 0x000350, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_4) == 0x000400, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, Temp_struct_Variable) == 0x000410, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, Temp_struct_Variable_1) == 0x0004C0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_4) == 0x0004C8, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_4) == 0x0004D0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_5) == 0x000580, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_6) == 0x000590, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_3) == 0x0005A0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_3) == 0x0005A8, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_2) == 0x000658, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_2) == 0x000660, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_7) == 0x000710, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_8) == 0x000720, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag_1) == 0x000730, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData_1) == 0x000738, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventTag) == 0x0007E8, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CustomEvent_EventData) == 0x0007F0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_CreateDelegate_OutputDelegate_9) == 0x0008A0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, Temp_struct_Variable_2) == 0x0008B0, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, Temp_struct_Variable_3) == 0x000960, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, K2Node_Event_bWasCancelled) == 0x000968, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_GetMontage_ReturnValue) == 0x000970, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x000978, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_ExecuteUbergraph_GA_Dance, CallFunc_IsValid_ReturnValue_1) == 0x000980, "Member 'GA_Dance_C_ExecuteUbergraph_GA_Dance::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_K2_OnEndAbility \ +static_assert(alignof(GA_Dance_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Dance_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Dance_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Dance_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Dance_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Dance_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A \ +static_assert(alignof(GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A) == 0x000008, "Wrong alignment on GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(sizeof(GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A) == 0x0000B8, "Wrong size on GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(offsetof(GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A, EventTag) == 0x000000, "Member 'GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A, EventData) == 0x000008, "Member 'GA_Dance_C_OnBlendOut_890FF18842E69BE7F272F08C8161B76A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B \ +static_assert(alignof(GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B) == 0x000008, "Wrong alignment on GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(sizeof(GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B) == 0x0000B8, "Wrong size on GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(offsetof(GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B, EventTag) == 0x000000, "Member 'GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B, EventData) == 0x000008, "Member 'GA_Dance_C_OnBlendOut_E6E797914E9EBD441D312CAF78867B1B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A \ +static_assert(alignof(GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A) == 0x000008, "Wrong alignment on GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(sizeof(GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A) == 0x0000B8, "Wrong size on GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(offsetof(GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A, EventTag) == 0x000000, "Member 'GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A, EventData) == 0x000008, "Member 'GA_Dance_C_OnCancelled_890FF18842E69BE7F272F08C8161B76A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B \ +static_assert(alignof(GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B) == 0x000008, "Wrong alignment on GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(sizeof(GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B) == 0x0000B8, "Wrong size on GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(offsetof(GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B, EventTag) == 0x000000, "Member 'GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B, EventData) == 0x000008, "Member 'GA_Dance_C_OnCancelled_E6E797914E9EBD441D312CAF78867B1B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A \ +static_assert(alignof(GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A) == 0x000008, "Wrong alignment on GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(sizeof(GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A) == 0x0000B8, "Wrong size on GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(offsetof(GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A, EventTag) == 0x000000, "Member 'GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A, EventData) == 0x000008, "Member 'GA_Dance_C_OnCompleted_890FF18842E69BE7F272F08C8161B76A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B \ +static_assert(alignof(GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B) == 0x000008, "Wrong alignment on GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(sizeof(GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B) == 0x0000B8, "Wrong size on GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(offsetof(GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B, EventTag) == 0x000000, "Member 'GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B, EventData) == 0x000008, "Member 'GA_Dance_C_OnCompleted_E6E797914E9EBD441D312CAF78867B1B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A \ +static_assert(alignof(GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A) == 0x000008, "Wrong alignment on GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(sizeof(GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A) == 0x0000B8, "Wrong size on GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A"); \ +static_assert(offsetof(GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A, EventTag) == 0x000000, "Member 'GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A, EventData) == 0x000008, "Member 'GA_Dance_C_OnInterrupted_890FF18842E69BE7F272F08C8161B76A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B \ +static_assert(alignof(GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B) == 0x000008, "Wrong alignment on GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(sizeof(GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B) == 0x0000B8, "Wrong size on GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B"); \ +static_assert(offsetof(GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B, EventTag) == 0x000000, "Member 'GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B, EventData) == 0x000008, "Member 'GA_Dance_C_OnInterrupted_E6E797914E9EBD441D312CAF78867B1B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Dance_C \ +static_assert(alignof(UGA_Dance_C) == 0x000008, "Wrong alignment on UGA_Dance_C"); \ +static_assert(sizeof(UGA_Dance_C) == 0x000680, "Wrong size on UGA_Dance_C"); \ +static_assert(offsetof(UGA_Dance_C, UberGraphFrame) == 0x000668, "Member 'UGA_Dance_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Dance_C, AwakenMontage) == 0x000670, "Member 'UGA_Dance_C::AwakenMontage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_DamageType_HeavyPunch_C \ +static_assert(alignof(UBP_DamageType_HeavyPunch_C) == 0x000008, "Wrong alignment on UBP_DamageType_HeavyPunch_C"); \ +static_assert(sizeof(UBP_DamageType_HeavyPunch_C) == 0x000040, "Wrong size on UBP_DamageType_HeavyPunch_C"); \ + +#define DUMPER7_ASSERTS_FControlRigSplineImpl \ +static_assert(alignof(FControlRigSplineImpl) == 0x000008, "Wrong alignment on FControlRigSplineImpl"); \ +static_assert(sizeof(FControlRigSplineImpl) == 0x000068, "Wrong size on FControlRigSplineImpl"); \ + +#define DUMPER7_ASSERTS_FControlRigSpline \ +static_assert(alignof(FControlRigSpline) == 0x000008, "Wrong alignment on FControlRigSpline"); \ +static_assert(sizeof(FControlRigSpline) == 0x000018, "Wrong size on FControlRigSpline"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ControlRigSplineBase \ +static_assert(alignof(FRigUnit_ControlRigSplineBase) == 0x000008, "Wrong alignment on FRigUnit_ControlRigSplineBase"); \ +static_assert(sizeof(FRigUnit_ControlRigSplineBase) == 0x000008, "Wrong size on FRigUnit_ControlRigSplineBase"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ControlRigSplineFromPoints \ +static_assert(alignof(FRigUnit_ControlRigSplineFromPoints) == 0x000008, "Wrong alignment on FRigUnit_ControlRigSplineFromPoints"); \ +static_assert(sizeof(FRigUnit_ControlRigSplineFromPoints) == 0x000040, "Wrong size on FRigUnit_ControlRigSplineFromPoints"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, Points) == 0x000008, "Member 'FRigUnit_ControlRigSplineFromPoints::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, SplineMode) == 0x000018, "Member 'FRigUnit_ControlRigSplineFromPoints::SplineMode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, bClosed) == 0x000019, "Member 'FRigUnit_ControlRigSplineFromPoints::bClosed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, SamplesPerSegment) == 0x00001C, "Member 'FRigUnit_ControlRigSplineFromPoints::SamplesPerSegment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, Compression) == 0x000020, "Member 'FRigUnit_ControlRigSplineFromPoints::Compression' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, Stretch) == 0x000024, "Member 'FRigUnit_ControlRigSplineFromPoints::Stretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromPoints, Spline) == 0x000028, "Member 'FRigUnit_ControlRigSplineFromPoints::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ControlRigSplineFromTransforms \ +static_assert(alignof(FRigUnit_ControlRigSplineFromTransforms) == 0x000008, "Wrong alignment on FRigUnit_ControlRigSplineFromTransforms"); \ +static_assert(sizeof(FRigUnit_ControlRigSplineFromTransforms) == 0x000040, "Wrong size on FRigUnit_ControlRigSplineFromTransforms"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, Transforms) == 0x000008, "Member 'FRigUnit_ControlRigSplineFromTransforms::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, SplineMode) == 0x000018, "Member 'FRigUnit_ControlRigSplineFromTransforms::SplineMode' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, bClosed) == 0x000019, "Member 'FRigUnit_ControlRigSplineFromTransforms::bClosed' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, SamplesPerSegment) == 0x00001C, "Member 'FRigUnit_ControlRigSplineFromTransforms::SamplesPerSegment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, Compression) == 0x000020, "Member 'FRigUnit_ControlRigSplineFromTransforms::Compression' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, Stretch) == 0x000024, "Member 'FRigUnit_ControlRigSplineFromTransforms::Stretch' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ControlRigSplineFromTransforms, Spline) == 0x000028, "Member 'FRigUnit_ControlRigSplineFromTransforms::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetSplinePoints \ +static_assert(alignof(FRigUnit_SetSplinePoints) == 0x000010, "Wrong alignment on FRigUnit_SetSplinePoints"); \ +static_assert(sizeof(FRigUnit_SetSplinePoints) == 0x000190, "Wrong size on FRigUnit_SetSplinePoints"); \ +static_assert(offsetof(FRigUnit_SetSplinePoints, Points) == 0x000160, "Member 'FRigUnit_SetSplinePoints::Points' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSplinePoints, Spline) == 0x000170, "Member 'FRigUnit_SetSplinePoints::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SetSplineTransforms \ +static_assert(alignof(FRigUnit_SetSplineTransforms) == 0x000010, "Wrong alignment on FRigUnit_SetSplineTransforms"); \ +static_assert(sizeof(FRigUnit_SetSplineTransforms) == 0x000190, "Wrong size on FRigUnit_SetSplineTransforms"); \ +static_assert(offsetof(FRigUnit_SetSplineTransforms, Transforms) == 0x000160, "Member 'FRigUnit_SetSplineTransforms::Transforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SetSplineTransforms, Spline) == 0x000170, "Member 'FRigUnit_SetSplineTransforms::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PositionFromControlRigSpline \ +static_assert(alignof(FRigUnit_PositionFromControlRigSpline) == 0x000008, "Wrong alignment on FRigUnit_PositionFromControlRigSpline"); \ +static_assert(sizeof(FRigUnit_PositionFromControlRigSpline) == 0x000040, "Wrong size on FRigUnit_PositionFromControlRigSpline"); \ +static_assert(offsetof(FRigUnit_PositionFromControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_PositionFromControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionFromControlRigSpline, U) == 0x000020, "Member 'FRigUnit_PositionFromControlRigSpline::U' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PositionFromControlRigSpline, Position) == 0x000028, "Member 'FRigUnit_PositionFromControlRigSpline::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TransformFromControlRigSpline \ +static_assert(alignof(FRigUnit_TransformFromControlRigSpline) == 0x000010, "Wrong alignment on FRigUnit_TransformFromControlRigSpline"); \ +static_assert(sizeof(FRigUnit_TransformFromControlRigSpline) == 0x0000A0, "Wrong size on FRigUnit_TransformFromControlRigSpline"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_TransformFromControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline, UpVector) == 0x000020, "Member 'FRigUnit_TransformFromControlRigSpline::UpVector' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline, Roll) == 0x000038, "Member 'FRigUnit_TransformFromControlRigSpline::Roll' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline, U) == 0x00003C, "Member 'FRigUnit_TransformFromControlRigSpline::U' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline, Transform) == 0x000040, "Member 'FRigUnit_TransformFromControlRigSpline::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TransformFromControlRigSpline2 \ +static_assert(alignof(FRigUnit_TransformFromControlRigSpline2) == 0x000010, "Wrong alignment on FRigUnit_TransformFromControlRigSpline2"); \ +static_assert(sizeof(FRigUnit_TransformFromControlRigSpline2) == 0x0000C0, "Wrong size on FRigUnit_TransformFromControlRigSpline2"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline2, Spline) == 0x000008, "Member 'FRigUnit_TransformFromControlRigSpline2::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline2, U) == 0x000020, "Member 'FRigUnit_TransformFromControlRigSpline2::U' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline2, PrimaryAxis) == 0x000028, "Member 'FRigUnit_TransformFromControlRigSpline2::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline2, SecondaryAxis) == 0x000040, "Member 'FRigUnit_TransformFromControlRigSpline2::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TransformFromControlRigSpline2, Transform) == 0x000060, "Member 'FRigUnit_TransformFromControlRigSpline2::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_TangentFromControlRigSpline \ +static_assert(alignof(FRigUnit_TangentFromControlRigSpline) == 0x000008, "Wrong alignment on FRigUnit_TangentFromControlRigSpline"); \ +static_assert(sizeof(FRigUnit_TangentFromControlRigSpline) == 0x000040, "Wrong size on FRigUnit_TangentFromControlRigSpline"); \ +static_assert(offsetof(FRigUnit_TangentFromControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_TangentFromControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TangentFromControlRigSpline, U) == 0x000020, "Member 'FRigUnit_TangentFromControlRigSpline::U' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_TangentFromControlRigSpline, Tangent) == 0x000028, "Member 'FRigUnit_TangentFromControlRigSpline::Tangent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_DrawControlRigSpline \ +static_assert(alignof(FRigUnit_DrawControlRigSpline) == 0x000010, "Wrong alignment on FRigUnit_DrawControlRigSpline"); \ +static_assert(sizeof(FRigUnit_DrawControlRigSpline) == 0x000190, "Wrong size on FRigUnit_DrawControlRigSpline"); \ +static_assert(offsetof(FRigUnit_DrawControlRigSpline, Spline) == 0x000160, "Member 'FRigUnit_DrawControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawControlRigSpline, Color) == 0x000178, "Member 'FRigUnit_DrawControlRigSpline::Color' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawControlRigSpline, Thickness) == 0x000188, "Member 'FRigUnit_DrawControlRigSpline::Thickness' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_DrawControlRigSpline, Detail) == 0x00018C, "Member 'FRigUnit_DrawControlRigSpline::Detail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetLengthControlRigSpline \ +static_assert(alignof(FRigUnit_GetLengthControlRigSpline) == 0x000008, "Wrong alignment on FRigUnit_GetLengthControlRigSpline"); \ +static_assert(sizeof(FRigUnit_GetLengthControlRigSpline) == 0x000028, "Wrong size on FRigUnit_GetLengthControlRigSpline"); \ +static_assert(offsetof(FRigUnit_GetLengthControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_GetLengthControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetLengthControlRigSpline, Length) == 0x000020, "Member 'FRigUnit_GetLengthControlRigSpline::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_GetLengthAtParamControlRigSpline \ +static_assert(alignof(FRigUnit_GetLengthAtParamControlRigSpline) == 0x000008, "Wrong alignment on FRigUnit_GetLengthAtParamControlRigSpline"); \ +static_assert(sizeof(FRigUnit_GetLengthAtParamControlRigSpline) == 0x000028, "Wrong size on FRigUnit_GetLengthAtParamControlRigSpline"); \ +static_assert(offsetof(FRigUnit_GetLengthAtParamControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_GetLengthAtParamControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetLengthAtParamControlRigSpline, U) == 0x000020, "Member 'FRigUnit_GetLengthAtParamControlRigSpline::U' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_GetLengthAtParamControlRigSpline, Length) == 0x000024, "Member 'FRigUnit_GetLengthAtParamControlRigSpline::Length' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToSplineCurve \ +static_assert(alignof(FRigUnit_FitChainToSplineCurve) == 0x000010, "Wrong alignment on FRigUnit_FitChainToSplineCurve"); \ +static_assert(sizeof(FRigUnit_FitChainToSplineCurve) == 0x000330, "Wrong size on FRigUnit_FitChainToSplineCurve"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Items) == 0x000160, "Member 'FRigUnit_FitChainToSplineCurve::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Spline) == 0x000170, "Member 'FRigUnit_FitChainToSplineCurve::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Alignment) == 0x000188, "Member 'FRigUnit_FitChainToSplineCurve::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Minimum) == 0x00018C, "Member 'FRigUnit_FitChainToSplineCurve::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Maximum) == 0x000190, "Member 'FRigUnit_FitChainToSplineCurve::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, SamplingPrecision) == 0x000194, "Member 'FRigUnit_FitChainToSplineCurve::SamplingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, PrimaryAxis) == 0x000198, "Member 'FRigUnit_FitChainToSplineCurve::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, SecondaryAxis) == 0x0001B0, "Member 'FRigUnit_FitChainToSplineCurve::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, PoleVectorPosition) == 0x0001C8, "Member 'FRigUnit_FitChainToSplineCurve::PoleVectorPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Rotations) == 0x0001E0, "Member 'FRigUnit_FitChainToSplineCurve::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, RotationEaseType) == 0x0001F0, "Member 'FRigUnit_FitChainToSplineCurve::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, Weight) == 0x0001F4, "Member 'FRigUnit_FitChainToSplineCurve::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, bPropagateToChildren) == 0x0001F8, "Member 'FRigUnit_FitChainToSplineCurve::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, DebugSettings) == 0x000200, "Member 'FRigUnit_FitChainToSplineCurve::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurve, WorkData) == 0x000290, "Member 'FRigUnit_FitChainToSplineCurve::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitChainToSplineCurveItemArray \ +static_assert(alignof(FRigUnit_FitChainToSplineCurveItemArray) == 0x000010, "Wrong alignment on FRigUnit_FitChainToSplineCurveItemArray"); \ +static_assert(sizeof(FRigUnit_FitChainToSplineCurveItemArray) == 0x000330, "Wrong size on FRigUnit_FitChainToSplineCurveItemArray"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Items) == 0x000160, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Spline) == 0x000170, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Alignment) == 0x000188, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Minimum) == 0x00018C, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Maximum) == 0x000190, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, SamplingPrecision) == 0x000194, "Member 'FRigUnit_FitChainToSplineCurveItemArray::SamplingPrecision' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, PrimaryAxis) == 0x000198, "Member 'FRigUnit_FitChainToSplineCurveItemArray::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, SecondaryAxis) == 0x0001B0, "Member 'FRigUnit_FitChainToSplineCurveItemArray::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, PoleVectorPosition) == 0x0001C8, "Member 'FRigUnit_FitChainToSplineCurveItemArray::PoleVectorPosition' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Rotations) == 0x0001E0, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Rotations' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, RotationEaseType) == 0x0001F0, "Member 'FRigUnit_FitChainToSplineCurveItemArray::RotationEaseType' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, Weight) == 0x0001F4, "Member 'FRigUnit_FitChainToSplineCurveItemArray::Weight' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, bPropagateToChildren) == 0x0001F8, "Member 'FRigUnit_FitChainToSplineCurveItemArray::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, DebugSettings) == 0x000200, "Member 'FRigUnit_FitChainToSplineCurveItemArray::DebugSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitChainToSplineCurveItemArray, WorkData) == 0x000290, "Member 'FRigUnit_FitChainToSplineCurveItemArray::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SplineConstraint_WorkData \ +static_assert(alignof(FRigUnit_SplineConstraint_WorkData) == 0x000008, "Wrong alignment on FRigUnit_SplineConstraint_WorkData"); \ +static_assert(sizeof(FRigUnit_SplineConstraint_WorkData) == 0x000038, "Wrong size on FRigUnit_SplineConstraint_WorkData"); \ +static_assert(offsetof(FRigUnit_SplineConstraint_WorkData, ChainLength) == 0x000000, "Member 'FRigUnit_SplineConstraint_WorkData::ChainLength' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint_WorkData, ItemTransforms) == 0x000008, "Member 'FRigUnit_SplineConstraint_WorkData::ItemTransforms' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint_WorkData, ItemSegments) == 0x000018, "Member 'FRigUnit_SplineConstraint_WorkData::ItemSegments' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint_WorkData, CachedItems) == 0x000028, "Member 'FRigUnit_SplineConstraint_WorkData::CachedItems' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_SplineConstraint \ +static_assert(alignof(FRigUnit_SplineConstraint) == 0x000010, "Wrong alignment on FRigUnit_SplineConstraint"); \ +static_assert(sizeof(FRigUnit_SplineConstraint) == 0x000210, "Wrong size on FRigUnit_SplineConstraint"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, Items) == 0x000160, "Member 'FRigUnit_SplineConstraint::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, Spline) == 0x000170, "Member 'FRigUnit_SplineConstraint::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, Alignment) == 0x000188, "Member 'FRigUnit_SplineConstraint::Alignment' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, Minimum) == 0x00018C, "Member 'FRigUnit_SplineConstraint::Minimum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, Maximum) == 0x000190, "Member 'FRigUnit_SplineConstraint::Maximum' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, PrimaryAxis) == 0x000198, "Member 'FRigUnit_SplineConstraint::PrimaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, SecondaryAxis) == 0x0001B0, "Member 'FRigUnit_SplineConstraint::SecondaryAxis' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, bPropagateToChildren) == 0x0001C8, "Member 'FRigUnit_SplineConstraint::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_SplineConstraint, WorkData) == 0x0001D0, "Member 'FRigUnit_SplineConstraint::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitSplineCurveToChain \ +static_assert(alignof(FRigUnit_FitSplineCurveToChain) == 0x000010, "Wrong alignment on FRigUnit_FitSplineCurveToChain"); \ +static_assert(sizeof(FRigUnit_FitSplineCurveToChain) == 0x000190, "Wrong size on FRigUnit_FitSplineCurveToChain"); \ +static_assert(offsetof(FRigUnit_FitSplineCurveToChain, Items) == 0x000160, "Member 'FRigUnit_FitSplineCurveToChain::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitSplineCurveToChain, Spline) == 0x000170, "Member 'FRigUnit_FitSplineCurveToChain::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FitSplineCurveToChainItemArray \ +static_assert(alignof(FRigUnit_FitSplineCurveToChainItemArray) == 0x000010, "Wrong alignment on FRigUnit_FitSplineCurveToChainItemArray"); \ +static_assert(sizeof(FRigUnit_FitSplineCurveToChainItemArray) == 0x000190, "Wrong size on FRigUnit_FitSplineCurveToChainItemArray"); \ +static_assert(offsetof(FRigUnit_FitSplineCurveToChainItemArray, Items) == 0x000160, "Member 'FRigUnit_FitSplineCurveToChainItemArray::Items' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FitSplineCurveToChainItemArray, Spline) == 0x000170, "Member 'FRigUnit_FitSplineCurveToChainItemArray::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ClosestParameterFromControlRigSpline \ +static_assert(alignof(FRigUnit_ClosestParameterFromControlRigSpline) == 0x000008, "Wrong alignment on FRigUnit_ClosestParameterFromControlRigSpline"); \ +static_assert(sizeof(FRigUnit_ClosestParameterFromControlRigSpline) == 0x000040, "Wrong size on FRigUnit_ClosestParameterFromControlRigSpline"); \ +static_assert(offsetof(FRigUnit_ClosestParameterFromControlRigSpline, Spline) == 0x000008, "Member 'FRigUnit_ClosestParameterFromControlRigSpline::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ClosestParameterFromControlRigSpline, Position) == 0x000020, "Member 'FRigUnit_ClosestParameterFromControlRigSpline::Position' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ClosestParameterFromControlRigSpline, U) == 0x000038, "Member 'FRigUnit_ClosestParameterFromControlRigSpline::U' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_ParameterAtPercentage \ +static_assert(alignof(FRigUnit_ParameterAtPercentage) == 0x000008, "Wrong alignment on FRigUnit_ParameterAtPercentage"); \ +static_assert(sizeof(FRigUnit_ParameterAtPercentage) == 0x000028, "Wrong size on FRigUnit_ParameterAtPercentage"); \ +static_assert(offsetof(FRigUnit_ParameterAtPercentage, Spline) == 0x000008, "Member 'FRigUnit_ParameterAtPercentage::Spline' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParameterAtPercentage, Percentage) == 0x000020, "Member 'FRigUnit_ParameterAtPercentage::Percentage' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_ParameterAtPercentage, U) == 0x000024, "Member 'FRigUnit_ParameterAtPercentage::U' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPBIKBoneSetting \ +static_assert(alignof(FPBIKBoneSetting) == 0x000008, "Wrong alignment on FPBIKBoneSetting"); \ +static_assert(sizeof(FPBIKBoneSetting) == 0x000050, "Wrong size on FPBIKBoneSetting"); \ +static_assert(offsetof(FPBIKBoneSetting, bone) == 0x000000, "Member 'FPBIKBoneSetting::bone' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, RotationStiffness) == 0x000008, "Member 'FPBIKBoneSetting::RotationStiffness' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, PositionStiffness) == 0x00000C, "Member 'FPBIKBoneSetting::PositionStiffness' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, X) == 0x000010, "Member 'FPBIKBoneSetting::X' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MinX) == 0x000014, "Member 'FPBIKBoneSetting::MinX' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MaxX) == 0x000018, "Member 'FPBIKBoneSetting::MaxX' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, Y) == 0x00001C, "Member 'FPBIKBoneSetting::Y' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MinY) == 0x000020, "Member 'FPBIKBoneSetting::MinY' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MaxY) == 0x000024, "Member 'FPBIKBoneSetting::MaxY' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, Z) == 0x000028, "Member 'FPBIKBoneSetting::Z' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MinZ) == 0x00002C, "Member 'FPBIKBoneSetting::MinZ' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, MaxZ) == 0x000030, "Member 'FPBIKBoneSetting::MaxZ' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, bUsePreferredAngles) == 0x000034, "Member 'FPBIKBoneSetting::bUsePreferredAngles' has a wrong offset!"); \ +static_assert(offsetof(FPBIKBoneSetting, PreferredAngles) == 0x000038, "Member 'FPBIKBoneSetting::PreferredAngles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRootPrePullSettings \ +static_assert(alignof(FRootPrePullSettings) == 0x000004, "Wrong alignment on FRootPrePullSettings"); \ +static_assert(sizeof(FRootPrePullSettings) == 0x000020, "Wrong size on FRootPrePullSettings"); \ +static_assert(offsetof(FRootPrePullSettings, RotationAlpha) == 0x000000, "Member 'FRootPrePullSettings::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, RotationAlphaX) == 0x000004, "Member 'FRootPrePullSettings::RotationAlphaX' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, RotationAlphaY) == 0x000008, "Member 'FRootPrePullSettings::RotationAlphaY' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, RotationAlphaZ) == 0x00000C, "Member 'FRootPrePullSettings::RotationAlphaZ' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, PositionAlpha) == 0x000010, "Member 'FRootPrePullSettings::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, PositionAlphaX) == 0x000014, "Member 'FRootPrePullSettings::PositionAlphaX' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, PositionAlphaY) == 0x000018, "Member 'FRootPrePullSettings::PositionAlphaY' has a wrong offset!"); \ +static_assert(offsetof(FRootPrePullSettings, PositionAlphaZ) == 0x00001C, "Member 'FRootPrePullSettings::PositionAlphaZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPBIKSolverSettings \ +static_assert(alignof(FPBIKSolverSettings) == 0x000004, "Wrong alignment on FPBIKSolverSettings"); \ +static_assert(sizeof(FPBIKSolverSettings) == 0x00003C, "Wrong size on FPBIKSolverSettings"); \ +static_assert(offsetof(FPBIKSolverSettings, Iterations) == 0x000000, "Member 'FPBIKSolverSettings::Iterations' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, MassMultiplier) == 0x000004, "Member 'FPBIKSolverSettings::MassMultiplier' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, bAllowStretch) == 0x000008, "Member 'FPBIKSolverSettings::bAllowStretch' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, RootBehavior) == 0x000009, "Member 'FPBIKSolverSettings::RootBehavior' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, PrePullRootSettings) == 0x00000C, "Member 'FPBIKSolverSettings::PrePullRootSettings' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, GlobalPullChainAlpha) == 0x00002C, "Member 'FPBIKSolverSettings::GlobalPullChainAlpha' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, MaxAngle) == 0x000030, "Member 'FPBIKSolverSettings::MaxAngle' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, OverRelaxation) == 0x000034, "Member 'FPBIKSolverSettings::OverRelaxation' has a wrong offset!"); \ +static_assert(offsetof(FPBIKSolverSettings, bStartSolveFromInputPose) == 0x000038, "Member 'FPBIKSolverSettings::bStartSolveFromInputPose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPBIKSolver \ +static_assert(alignof(FPBIKSolver) == 0x000008, "Wrong alignment on FPBIKSolver"); \ +static_assert(sizeof(FPBIKSolver) == 0x000068, "Wrong size on FPBIKSolver"); \ + +#define DUMPER7_ASSERTS_FPBIKDebug \ +static_assert(alignof(FPBIKDebug) == 0x000004, "Wrong alignment on FPBIKDebug"); \ +static_assert(sizeof(FPBIKDebug) == 0x000008, "Wrong size on FPBIKDebug"); \ +static_assert(offsetof(FPBIKDebug, DrawScale) == 0x000000, "Member 'FPBIKDebug::DrawScale' has a wrong offset!"); \ +static_assert(offsetof(FPBIKDebug, bDrawDebug) == 0x000004, "Member 'FPBIKDebug::bDrawDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPBIKEffector \ +static_assert(alignof(FPBIKEffector) == 0x000010, "Wrong alignment on FPBIKEffector"); \ +static_assert(sizeof(FPBIKEffector) == 0x000090, "Wrong size on FPBIKEffector"); \ +static_assert(offsetof(FPBIKEffector, bone) == 0x000000, "Member 'FPBIKEffector::bone' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, Transform) == 0x000010, "Member 'FPBIKEffector::Transform' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, PositionAlpha) == 0x000070, "Member 'FPBIKEffector::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, RotationAlpha) == 0x000074, "Member 'FPBIKEffector::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, StrengthAlpha) == 0x000078, "Member 'FPBIKEffector::StrengthAlpha' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, PullChainAlpha) == 0x00007C, "Member 'FPBIKEffector::PullChainAlpha' has a wrong offset!"); \ +static_assert(offsetof(FPBIKEffector, PinRotation) == 0x000080, "Member 'FPBIKEffector::PinRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPBIKWorkData \ +static_assert(alignof(FPBIKWorkData) == 0x000008, "Wrong alignment on FPBIKWorkData"); \ +static_assert(sizeof(FPBIKWorkData) == 0x000090, "Wrong size on FPBIKWorkData"); \ +static_assert(offsetof(FPBIKWorkData, bNeedsInit) == 0x000000, "Member 'FPBIKWorkData::bNeedsInit' has a wrong offset!"); \ +static_assert(offsetof(FPBIKWorkData, HashInitializedWith) == 0x000004, "Member 'FPBIKWorkData::HashInitializedWith' has a wrong offset!"); \ +static_assert(offsetof(FPBIKWorkData, BoneSettingToSolverBoneIndex) == 0x000008, "Member 'FPBIKWorkData::BoneSettingToSolverBoneIndex' has a wrong offset!"); \ +static_assert(offsetof(FPBIKWorkData, SolverBoneToElementIndex) == 0x000018, "Member 'FPBIKWorkData::SolverBoneToElementIndex' has a wrong offset!"); \ +static_assert(offsetof(FPBIKWorkData, Solver) == 0x000028, "Member 'FPBIKWorkData::Solver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_PBIK \ +static_assert(alignof(FRigUnit_PBIK) == 0x000010, "Wrong alignment on FRigUnit_PBIK"); \ +static_assert(sizeof(FRigUnit_PBIK) == 0x000280, "Wrong size on FRigUnit_PBIK"); \ +static_assert(offsetof(FRigUnit_PBIK, Root) == 0x000160, "Member 'FRigUnit_PBIK::Root' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, Effectors) == 0x000168, "Member 'FRigUnit_PBIK::Effectors' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, EffectorSolverIndices) == 0x000178, "Member 'FRigUnit_PBIK::EffectorSolverIndices' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, BoneSettings) == 0x000188, "Member 'FRigUnit_PBIK::BoneSettings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, ExcludedBones) == 0x000198, "Member 'FRigUnit_PBIK::ExcludedBones' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, Settings) == 0x0001A8, "Member 'FRigUnit_PBIK::Settings' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, Debug) == 0x0001E4, "Member 'FRigUnit_PBIK::Debug' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_PBIK, WorkData) == 0x0001F0, "Member 'FRigUnit_PBIK::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Feed_Source_C \ +static_assert(alignof(UGE_Feed_Source_C) == 0x000008, "Wrong alignment on UGE_Feed_Source_C"); \ +static_assert(sizeof(UGE_Feed_Source_C) == 0x000A70, "Wrong size on UGE_Feed_Source_C"); \ + +#define DUMPER7_ASSERTS_FFBIKBoneLimit \ +static_assert(alignof(FFBIKBoneLimit) == 0x000008, "Wrong alignment on FFBIKBoneLimit"); \ +static_assert(sizeof(FFBIKBoneLimit) == 0x000020, "Wrong size on FFBIKBoneLimit"); \ +static_assert(offsetof(FFBIKBoneLimit, LimitType_X) == 0x000000, "Member 'FFBIKBoneLimit::LimitType_X' has a wrong offset!"); \ +static_assert(offsetof(FFBIKBoneLimit, LimitType_Y) == 0x000001, "Member 'FFBIKBoneLimit::LimitType_Y' has a wrong offset!"); \ +static_assert(offsetof(FFBIKBoneLimit, LimitType_Z) == 0x000002, "Member 'FFBIKBoneLimit::LimitType_Z' has a wrong offset!"); \ +static_assert(offsetof(FFBIKBoneLimit, Limit) == 0x000008, "Member 'FFBIKBoneLimit::Limit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFBIKConstraintOption \ +static_assert(alignof(FFBIKConstraintOption) == 0x000008, "Wrong alignment on FFBIKConstraintOption"); \ +static_assert(sizeof(FFBIKConstraintOption) == 0x0000A0, "Wrong size on FFBIKConstraintOption"); \ +static_assert(offsetof(FFBIKConstraintOption, Item) == 0x000000, "Member 'FFBIKConstraintOption::Item' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, bEnabled) == 0x00000C, "Member 'FFBIKConstraintOption::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, bUseStiffness) == 0x00000D, "Member 'FFBIKConstraintOption::bUseStiffness' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, LinearStiffness) == 0x000010, "Member 'FFBIKConstraintOption::LinearStiffness' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, AngularStiffness) == 0x000028, "Member 'FFBIKConstraintOption::AngularStiffness' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, bUseAngularLimit) == 0x000040, "Member 'FFBIKConstraintOption::bUseAngularLimit' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, AngularLimit) == 0x000048, "Member 'FFBIKConstraintOption::AngularLimit' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, bUsePoleVector) == 0x000068, "Member 'FFBIKConstraintOption::bUsePoleVector' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, PoleVectorOption) == 0x000069, "Member 'FFBIKConstraintOption::PoleVectorOption' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, PoleVector) == 0x000070, "Member 'FFBIKConstraintOption::PoleVector' has a wrong offset!"); \ +static_assert(offsetof(FFBIKConstraintOption, OffsetRotation) == 0x000088, "Member 'FFBIKConstraintOption::OffsetRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMotionProcessInput \ +static_assert(alignof(FMotionProcessInput) == 0x000001, "Wrong alignment on FMotionProcessInput"); \ +static_assert(sizeof(FMotionProcessInput) == 0x000002, "Wrong size on FMotionProcessInput"); \ +static_assert(offsetof(FMotionProcessInput, bForceEffectorRotationTarget) == 0x000000, "Member 'FMotionProcessInput::bForceEffectorRotationTarget' has a wrong offset!"); \ +static_assert(offsetof(FMotionProcessInput, bOnlyApplyWhenReachedToTarget) == 0x000001, "Member 'FMotionProcessInput::bOnlyApplyWhenReachedToTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFBIKDebugOption \ +static_assert(alignof(FFBIKDebugOption) == 0x000010, "Wrong alignment on FFBIKDebugOption"); \ +static_assert(sizeof(FFBIKDebugOption) == 0x000080, "Wrong size on FFBIKDebugOption"); \ +static_assert(offsetof(FFBIKDebugOption, bDrawDebugHierarchy) == 0x000000, "Member 'FFBIKDebugOption::bDrawDebugHierarchy' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, bColorAngularMotionStrength) == 0x000001, "Member 'FFBIKDebugOption::bColorAngularMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, bColorLinearMotionStrength) == 0x000002, "Member 'FFBIKDebugOption::bColorLinearMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, bDrawDebugAxes) == 0x000003, "Member 'FFBIKDebugOption::bDrawDebugAxes' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, bDrawDebugEffector) == 0x000004, "Member 'FFBIKDebugOption::bDrawDebugEffector' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, bDrawDebugConstraints) == 0x000005, "Member 'FFBIKDebugOption::bDrawDebugConstraints' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, DrawWorldOffset) == 0x000010, "Member 'FFBIKDebugOption::DrawWorldOffset' has a wrong offset!"); \ +static_assert(offsetof(FFBIKDebugOption, DrawSize) == 0x000070, "Member 'FFBIKDebugOption::DrawSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSolverInput \ +static_assert(alignof(FSolverInput) == 0x000004, "Wrong alignment on FSolverInput"); \ +static_assert(sizeof(FSolverInput) == 0x000024, "Wrong size on FSolverInput"); \ +static_assert(offsetof(FSolverInput, LinearMotionStrength) == 0x000000, "Member 'FSolverInput::LinearMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, MinLinearMotionStrength) == 0x000004, "Member 'FSolverInput::MinLinearMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, AngularMotionStrength) == 0x000008, "Member 'FSolverInput::AngularMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, MinAngularMotionStrength) == 0x00000C, "Member 'FSolverInput::MinAngularMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, DefaultTargetClamp) == 0x000010, "Member 'FSolverInput::DefaultTargetClamp' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, Precision) == 0x000014, "Member 'FSolverInput::Precision' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, Damping) == 0x000018, "Member 'FSolverInput::Damping' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, MaxIterations) == 0x00001C, "Member 'FSolverInput::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(FSolverInput, bUseJacobianTranspose) == 0x000020, "Member 'FSolverInput::bUseJacobianTranspose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFBIKEndEffector \ +static_assert(alignof(FFBIKEndEffector) == 0x000010, "Wrong alignment on FFBIKEndEffector"); \ +static_assert(sizeof(FFBIKEndEffector) == 0x000060, "Wrong size on FFBIKEndEffector"); \ +static_assert(offsetof(FFBIKEndEffector, Item) == 0x000000, "Member 'FFBIKEndEffector::Item' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, Position) == 0x000010, "Member 'FFBIKEndEffector::Position' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, PositionAlpha) == 0x000028, "Member 'FFBIKEndEffector::PositionAlpha' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, PositionDepth) == 0x00002C, "Member 'FFBIKEndEffector::PositionDepth' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, Rotation) == 0x000030, "Member 'FFBIKEndEffector::Rotation' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, RotationAlpha) == 0x000050, "Member 'FFBIKEndEffector::RotationAlpha' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, RotationDepth) == 0x000054, "Member 'FFBIKEndEffector::RotationDepth' has a wrong offset!"); \ +static_assert(offsetof(FFBIKEndEffector, Pull) == 0x000058, "Member 'FFBIKEndEffector::Pull' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FullbodyIK_WorkData \ +static_assert(alignof(FRigUnit_FullbodyIK_WorkData) == 0x000008, "Wrong alignment on FRigUnit_FullbodyIK_WorkData"); \ +static_assert(sizeof(FRigUnit_FullbodyIK_WorkData) == 0x000198, "Wrong size on FRigUnit_FullbodyIK_WorkData"); \ + +#define DUMPER7_ASSERTS_FRigUnit_FullbodyIK \ +static_assert(alignof(FRigUnit_FullbodyIK) == 0x000010, "Wrong alignment on FRigUnit_FullbodyIK"); \ +static_assert(sizeof(FRigUnit_FullbodyIK) == 0x0003E0, "Wrong size on FRigUnit_FullbodyIK"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, Root) == 0x000160, "Member 'FRigUnit_FullbodyIK::Root' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, Effectors) == 0x000170, "Member 'FRigUnit_FullbodyIK::Effectors' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, Constraints) == 0x000180, "Member 'FRigUnit_FullbodyIK::Constraints' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, SolverProperty) == 0x000190, "Member 'FRigUnit_FullbodyIK::SolverProperty' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, MotionProperty) == 0x0001B4, "Member 'FRigUnit_FullbodyIK::MotionProperty' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, bPropagateToChildren) == 0x0001B6, "Member 'FRigUnit_FullbodyIK::bPropagateToChildren' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, DebugOption) == 0x0001C0, "Member 'FRigUnit_FullbodyIK::DebugOption' has a wrong offset!"); \ +static_assert(offsetof(FRigUnit_FullbodyIK, WorkData) == 0x000240, "Member 'FRigUnit_FullbodyIK::WorkData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetFloatArrayElementDataflowNode \ +static_assert(alignof(FGetFloatArrayElementDataflowNode) == 0x000008, "Wrong alignment on FGetFloatArrayElementDataflowNode"); \ +static_assert(sizeof(FGetFloatArrayElementDataflowNode) == 0x000108, "Wrong size on FGetFloatArrayElementDataflowNode"); \ +static_assert(offsetof(FGetFloatArrayElementDataflowNode, Index) == 0x0000E8, "Member 'FGetFloatArrayElementDataflowNode::Index' has a wrong offset!"); \ +static_assert(offsetof(FGetFloatArrayElementDataflowNode, FloatArray) == 0x0000F0, "Member 'FGetFloatArrayElementDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FGetFloatArrayElementDataflowNode, FloatValue) == 0x000100, "Member 'FGetFloatArrayElementDataflowNode::FloatValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatArrayToIntArrayDataflowNode \ +static_assert(alignof(FFloatArrayToIntArrayDataflowNode) == 0x000008, "Wrong alignment on FFloatArrayToIntArrayDataflowNode"); \ +static_assert(sizeof(FFloatArrayToIntArrayDataflowNode) == 0x000110, "Wrong size on FFloatArrayToIntArrayDataflowNode"); \ +static_assert(offsetof(FFloatArrayToIntArrayDataflowNode, Function) == 0x0000E8, "Member 'FFloatArrayToIntArrayDataflowNode::Function' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayToIntArrayDataflowNode, FloatArray) == 0x0000F0, "Member 'FFloatArrayToIntArrayDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayToIntArrayDataflowNode, IntArray) == 0x000100, "Member 'FFloatArrayToIntArrayDataflowNode::IntArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArcTanDataflowNode \ +static_assert(alignof(FArcTanDataflowNode) == 0x000008, "Wrong alignment on FArcTanDataflowNode"); \ +static_assert(sizeof(FArcTanDataflowNode) == 0x0000F0, "Wrong size on FArcTanDataflowNode"); \ +static_assert(offsetof(FArcTanDataflowNode, float_0) == 0x0000E8, "Member 'FArcTanDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FArcTanDataflowNode, ReturnValue) == 0x0000EC, "Member 'FArcTanDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetArrayElementDataflowNode \ +static_assert(alignof(FGetArrayElementDataflowNode) == 0x000008, "Wrong alignment on FGetArrayElementDataflowNode"); \ +static_assert(sizeof(FGetArrayElementDataflowNode) == 0x000118, "Wrong size on FGetArrayElementDataflowNode"); \ +static_assert(offsetof(FGetArrayElementDataflowNode, Index) == 0x0000E8, "Member 'FGetArrayElementDataflowNode::Index' has a wrong offset!"); \ +static_assert(offsetof(FGetArrayElementDataflowNode, Points) == 0x0000F0, "Member 'FGetArrayElementDataflowNode::Points' has a wrong offset!"); \ +static_assert(offsetof(FGetArrayElementDataflowNode, Point) == 0x000100, "Member 'FGetArrayElementDataflowNode::Point' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetNumArrayElementsDataflowNode \ +static_assert(alignof(FGetNumArrayElementsDataflowNode) == 0x000008, "Wrong alignment on FGetNumArrayElementsDataflowNode"); \ +static_assert(sizeof(FGetNumArrayElementsDataflowNode) == 0x000130, "Wrong size on FGetNumArrayElementsDataflowNode"); \ +static_assert(offsetof(FGetNumArrayElementsDataflowNode, FloatArray) == 0x0000E8, "Member 'FGetNumArrayElementsDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FGetNumArrayElementsDataflowNode, IntArray) == 0x0000F8, "Member 'FGetNumArrayElementsDataflowNode::IntArray' has a wrong offset!"); \ +static_assert(offsetof(FGetNumArrayElementsDataflowNode, Points) == 0x000108, "Member 'FGetNumArrayElementsDataflowNode::Points' has a wrong offset!"); \ +static_assert(offsetof(FGetNumArrayElementsDataflowNode, Vector3fArray) == 0x000118, "Member 'FGetNumArrayElementsDataflowNode::Vector3fArray' has a wrong offset!"); \ +static_assert(offsetof(FGetNumArrayElementsDataflowNode, NumElements) == 0x000128, "Member 'FGetNumArrayElementsDataflowNode::NumElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomFloatDataflowNode \ +static_assert(alignof(FRandomFloatDataflowNode) == 0x000008, "Wrong alignment on FRandomFloatDataflowNode"); \ +static_assert(sizeof(FRandomFloatDataflowNode) == 0x0000F8, "Wrong size on FRandomFloatDataflowNode"); \ +static_assert(offsetof(FRandomFloatDataflowNode, bDeterministic) == 0x0000E8, "Member 'FRandomFloatDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatDataflowNode, RandomSeed) == 0x0000EC, "Member 'FRandomFloatDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatDataflowNode, ReturnValue) == 0x0000F0, "Member 'FRandomFloatDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolArrayToFaceSelectionDataflowNode \ +static_assert(alignof(FBoolArrayToFaceSelectionDataflowNode) == 0x000008, "Wrong alignment on FBoolArrayToFaceSelectionDataflowNode"); \ +static_assert(sizeof(FBoolArrayToFaceSelectionDataflowNode) == 0x000118, "Wrong size on FBoolArrayToFaceSelectionDataflowNode"); \ +static_assert(offsetof(FBoolArrayToFaceSelectionDataflowNode, BoolAttributeData) == 0x0000E8, "Member 'FBoolArrayToFaceSelectionDataflowNode::BoolAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FBoolArrayToFaceSelectionDataflowNode, FaceSelection) == 0x0000F8, "Member 'FBoolArrayToFaceSelectionDataflowNode::FaceSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatArrayToVertexSelectionDataflowNode \ +static_assert(alignof(FFloatArrayToVertexSelectionDataflowNode) == 0x000008, "Wrong alignment on FFloatArrayToVertexSelectionDataflowNode"); \ +static_assert(sizeof(FFloatArrayToVertexSelectionDataflowNode) == 0x000120, "Wrong size on FFloatArrayToVertexSelectionDataflowNode"); \ +static_assert(offsetof(FFloatArrayToVertexSelectionDataflowNode, FloatArray) == 0x0000E8, "Member 'FFloatArrayToVertexSelectionDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayToVertexSelectionDataflowNode, Operation) == 0x0000F8, "Member 'FFloatArrayToVertexSelectionDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayToVertexSelectionDataflowNode, Threshold) == 0x0000FC, "Member 'FFloatArrayToVertexSelectionDataflowNode::Threshold' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayToVertexSelectionDataflowNode, VertexSelection) == 0x000100, "Member 'FFloatArrayToVertexSelectionDataflowNode::VertexSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDotProductDataflowNode \ +static_assert(alignof(FDotProductDataflowNode) == 0x000008, "Wrong alignment on FDotProductDataflowNode"); \ +static_assert(sizeof(FDotProductDataflowNode) == 0x000120, "Wrong size on FDotProductDataflowNode"); \ +static_assert(offsetof(FDotProductDataflowNode, VectorA) == 0x0000E8, "Member 'FDotProductDataflowNode::VectorA' has a wrong offset!"); \ +static_assert(offsetof(FDotProductDataflowNode, VectorB) == 0x000100, "Member 'FDotProductDataflowNode::VectorB' has a wrong offset!"); \ +static_assert(offsetof(FDotProductDataflowNode, ReturnValue) == 0x000118, "Member 'FDotProductDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatArrayNormalizeDataflowNode \ +static_assert(alignof(FFloatArrayNormalizeDataflowNode) == 0x000008, "Wrong alignment on FFloatArrayNormalizeDataflowNode"); \ +static_assert(sizeof(FFloatArrayNormalizeDataflowNode) == 0x000130, "Wrong size on FFloatArrayNormalizeDataflowNode"); \ +static_assert(offsetof(FFloatArrayNormalizeDataflowNode, InFloatArray) == 0x0000E8, "Member 'FFloatArrayNormalizeDataflowNode::InFloatArray' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayNormalizeDataflowNode, Selection) == 0x0000F8, "Member 'FFloatArrayNormalizeDataflowNode::Selection' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayNormalizeDataflowNode, MinRange) == 0x000118, "Member 'FFloatArrayNormalizeDataflowNode::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayNormalizeDataflowNode, MaxRange) == 0x00011C, "Member 'FFloatArrayNormalizeDataflowNode::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayNormalizeDataflowNode, OutFloatArray) == 0x000120, "Member 'FFloatArrayNormalizeDataflowNode::OutFloatArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorArrayNormalizeDataflowNode \ +static_assert(alignof(FVectorArrayNormalizeDataflowNode) == 0x000008, "Wrong alignment on FVectorArrayNormalizeDataflowNode"); \ +static_assert(sizeof(FVectorArrayNormalizeDataflowNode) == 0x000130, "Wrong size on FVectorArrayNormalizeDataflowNode"); \ +static_assert(offsetof(FVectorArrayNormalizeDataflowNode, InVectorArray) == 0x0000E8, "Member 'FVectorArrayNormalizeDataflowNode::InVectorArray' has a wrong offset!"); \ +static_assert(offsetof(FVectorArrayNormalizeDataflowNode, Selection) == 0x0000F8, "Member 'FVectorArrayNormalizeDataflowNode::Selection' has a wrong offset!"); \ +static_assert(offsetof(FVectorArrayNormalizeDataflowNode, Magnitude) == 0x000118, "Member 'FVectorArrayNormalizeDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FVectorArrayNormalizeDataflowNode, OutVectorArray) == 0x000120, "Member 'FVectorArrayNormalizeDataflowNode::OutVectorArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArcCosDataflowNode \ +static_assert(alignof(FArcCosDataflowNode) == 0x000008, "Wrong alignment on FArcCosDataflowNode"); \ +static_assert(sizeof(FArcCosDataflowNode) == 0x0000F0, "Wrong size on FArcCosDataflowNode"); \ +static_assert(offsetof(FArcCosDataflowNode, float_0) == 0x0000E8, "Member 'FArcCosDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FArcCosDataflowNode, ReturnValue) == 0x0000EC, "Member 'FArcCosDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUnionIntArraysDataflowNode \ +static_assert(alignof(FUnionIntArraysDataflowNode) == 0x000008, "Wrong alignment on FUnionIntArraysDataflowNode"); \ +static_assert(sizeof(FUnionIntArraysDataflowNode) == 0x000118, "Wrong size on FUnionIntArraysDataflowNode"); \ +static_assert(offsetof(FUnionIntArraysDataflowNode, InArray1) == 0x0000E8, "Member 'FUnionIntArraysDataflowNode::InArray1' has a wrong offset!"); \ +static_assert(offsetof(FUnionIntArraysDataflowNode, InArray2) == 0x0000F8, "Member 'FUnionIntArraysDataflowNode::InArray2' has a wrong offset!"); \ +static_assert(offsetof(FUnionIntArraysDataflowNode, OutArray) == 0x000108, "Member 'FUnionIntArraysDataflowNode::OutArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRemoveFloatArrayElementDataflowNode \ +static_assert(alignof(FRemoveFloatArrayElementDataflowNode) == 0x000008, "Wrong alignment on FRemoveFloatArrayElementDataflowNode"); \ +static_assert(sizeof(FRemoveFloatArrayElementDataflowNode) == 0x000100, "Wrong size on FRemoveFloatArrayElementDataflowNode"); \ +static_assert(offsetof(FRemoveFloatArrayElementDataflowNode, Index) == 0x0000E8, "Member 'FRemoveFloatArrayElementDataflowNode::Index' has a wrong offset!"); \ +static_assert(offsetof(FRemoveFloatArrayElementDataflowNode, bPreserveOrder) == 0x0000EC, "Member 'FRemoveFloatArrayElementDataflowNode::bPreserveOrder' has a wrong offset!"); \ +static_assert(offsetof(FRemoveFloatArrayElementDataflowNode, FloatArray) == 0x0000F0, "Member 'FRemoveFloatArrayElementDataflowNode::FloatArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDistanceDataflowNode \ +static_assert(alignof(FDistanceDataflowNode) == 0x000008, "Wrong alignment on FDistanceDataflowNode"); \ +static_assert(sizeof(FDistanceDataflowNode) == 0x000120, "Wrong size on FDistanceDataflowNode"); \ +static_assert(offsetof(FDistanceDataflowNode, PointA) == 0x0000E8, "Member 'FDistanceDataflowNode::PointA' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDataflowNode, PointB) == 0x000100, "Member 'FDistanceDataflowNode::PointB' has a wrong offset!"); \ +static_assert(offsetof(FDistanceDataflowNode, ReturnValue) == 0x000118, "Member 'FDistanceDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatArrayComputeStatisticsDataflowNode \ +static_assert(alignof(FFloatArrayComputeStatisticsDataflowNode) == 0x000008, "Wrong alignment on FFloatArrayComputeStatisticsDataflowNode"); \ +static_assert(sizeof(FFloatArrayComputeStatisticsDataflowNode) == 0x000130, "Wrong size on FFloatArrayComputeStatisticsDataflowNode"); \ +static_assert(offsetof(FFloatArrayComputeStatisticsDataflowNode, FloatArray) == 0x0000E8, "Member 'FFloatArrayComputeStatisticsDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayComputeStatisticsDataflowNode, TransformSelection) == 0x0000F8, "Member 'FFloatArrayComputeStatisticsDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayComputeStatisticsDataflowNode, OperationName) == 0x000118, "Member 'FFloatArrayComputeStatisticsDataflowNode::OperationName' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayComputeStatisticsDataflowNode, Value) == 0x00011C, "Member 'FFloatArrayComputeStatisticsDataflowNode::Value' has a wrong offset!"); \ +static_assert(offsetof(FFloatArrayComputeStatisticsDataflowNode, Indices) == 0x000120, "Member 'FFloatArrayComputeStatisticsDataflowNode::Indices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGeometryCollectionTerminalDataflowNode \ +static_assert(alignof(FGeometryCollectionTerminalDataflowNode) == 0x000008, "Wrong alignment on FGeometryCollectionTerminalDataflowNode"); \ +static_assert(sizeof(FGeometryCollectionTerminalDataflowNode) == 0x0001B8, "Wrong size on FGeometryCollectionTerminalDataflowNode"); \ +static_assert(offsetof(FGeometryCollectionTerminalDataflowNode, Collection) == 0x0000E8, "Member 'FGeometryCollectionTerminalDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionTerminalDataflowNode, Materials) == 0x000198, "Member 'FGeometryCollectionTerminalDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FGeometryCollectionTerminalDataflowNode, InstancedMeshes) == 0x0001A8, "Member 'FGeometryCollectionTerminalDataflowNode::InstancedMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoxToMeshDataflowNode \ +static_assert(alignof(FBoxToMeshDataflowNode) == 0x000008, "Wrong alignment on FBoxToMeshDataflowNode"); \ +static_assert(sizeof(FBoxToMeshDataflowNode) == 0x000130, "Wrong size on FBoxToMeshDataflowNode"); \ +static_assert(offsetof(FBoxToMeshDataflowNode, Box) == 0x0000E8, "Member 'FBoxToMeshDataflowNode::Box' has a wrong offset!"); \ +static_assert(offsetof(FBoxToMeshDataflowNode, Mesh) == 0x000120, "Member 'FBoxToMeshDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FBoxToMeshDataflowNode, TriangleCount) == 0x000128, "Member 'FBoxToMeshDataflowNode::TriangleCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetGeometryCollectionAssetDataflowNode \ +static_assert(alignof(FGetGeometryCollectionAssetDataflowNode) == 0x000008, "Wrong alignment on FGetGeometryCollectionAssetDataflowNode"); \ +static_assert(sizeof(FGetGeometryCollectionAssetDataflowNode) == 0x0000F0, "Wrong size on FGetGeometryCollectionAssetDataflowNode"); \ +static_assert(offsetof(FGetGeometryCollectionAssetDataflowNode, Asset) == 0x0000E8, "Member 'FGetGeometryCollectionAssetDataflowNode::Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetGeometryCollectionSourcesDataflowNode \ +static_assert(alignof(FGetGeometryCollectionSourcesDataflowNode) == 0x000008, "Wrong alignment on FGetGeometryCollectionSourcesDataflowNode"); \ +static_assert(sizeof(FGetGeometryCollectionSourcesDataflowNode) == 0x000100, "Wrong size on FGetGeometryCollectionSourcesDataflowNode"); \ +static_assert(offsetof(FGetGeometryCollectionSourcesDataflowNode, Asset) == 0x0000E8, "Member 'FGetGeometryCollectionSourcesDataflowNode::Asset' has a wrong offset!"); \ +static_assert(offsetof(FGetGeometryCollectionSourcesDataflowNode, Sources) == 0x0000F0, "Member 'FGetGeometryCollectionSourcesDataflowNode::Sources' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomUnitVectorDataflowNode \ +static_assert(alignof(FRandomUnitVectorDataflowNode) == 0x000008, "Wrong alignment on FRandomUnitVectorDataflowNode"); \ +static_assert(sizeof(FRandomUnitVectorDataflowNode) == 0x000108, "Wrong size on FRandomUnitVectorDataflowNode"); \ +static_assert(offsetof(FRandomUnitVectorDataflowNode, bDeterministic) == 0x0000E8, "Member 'FRandomUnitVectorDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorDataflowNode, RandomSeed) == 0x0000EC, "Member 'FRandomUnitVectorDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorDataflowNode, ReturnValue) == 0x0000F0, "Member 'FRandomUnitVectorDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateGeometryCollectionFromSourcesDataflowNode \ +static_assert(alignof(FCreateGeometryCollectionFromSourcesDataflowNode) == 0x000008, "Wrong alignment on FCreateGeometryCollectionFromSourcesDataflowNode"); \ +static_assert(sizeof(FCreateGeometryCollectionFromSourcesDataflowNode) == 0x0001C8, "Wrong size on FCreateGeometryCollectionFromSourcesDataflowNode"); \ +static_assert(offsetof(FCreateGeometryCollectionFromSourcesDataflowNode, Sources) == 0x0000E8, "Member 'FCreateGeometryCollectionFromSourcesDataflowNode::Sources' has a wrong offset!"); \ +static_assert(offsetof(FCreateGeometryCollectionFromSourcesDataflowNode, Collection) == 0x0000F8, "Member 'FCreateGeometryCollectionFromSourcesDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCreateGeometryCollectionFromSourcesDataflowNode, Materials) == 0x0001A8, "Member 'FCreateGeometryCollectionFromSourcesDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FCreateGeometryCollectionFromSourcesDataflowNode, InstancedMeshes) == 0x0001B8, "Member 'FCreateGeometryCollectionFromSourcesDataflowNode::InstancedMeshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialFalloffFieldDataflowNode \ +static_assert(alignof(FRadialFalloffFieldDataflowNode) == 0x000008, "Wrong alignment on FRadialFalloffFieldDataflowNode"); \ +static_assert(sizeof(FRadialFalloffFieldDataflowNode) == 0x0001B0, "Wrong size on FRadialFalloffFieldDataflowNode"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FRadialFalloffFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FRadialFalloffFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, Sphere) == 0x000118, "Member 'FRadialFalloffFieldDataflowNode::Sphere' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, Translation) == 0x000138, "Member 'FRadialFalloffFieldDataflowNode::Translation' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, Magnitude) == 0x000150, "Member 'FRadialFalloffFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, MinRange) == 0x000154, "Member 'FRadialFalloffFieldDataflowNode::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, MaxRange) == 0x000158, "Member 'FRadialFalloffFieldDataflowNode::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, Default) == 0x00015C, "Member 'FRadialFalloffFieldDataflowNode::Default' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, FalloffType) == 0x000160, "Member 'FRadialFalloffFieldDataflowNode::FalloffType' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, FieldFloatResult) == 0x000168, "Member 'FRadialFalloffFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, FieldRemap) == 0x000178, "Member 'FRadialFalloffFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, FieldSelectionMask) == 0x000188, "Member 'FRadialFalloffFieldDataflowNode::FieldSelectionMask' has a wrong offset!"); \ +static_assert(offsetof(FRadialFalloffFieldDataflowNode, NumSamplePositions) == 0x0001A8, "Member 'FRadialFalloffFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNormalizeDataflowNode \ +static_assert(alignof(FNormalizeDataflowNode) == 0x000008, "Wrong alignment on FNormalizeDataflowNode"); \ +static_assert(sizeof(FNormalizeDataflowNode) == 0x000120, "Wrong size on FNormalizeDataflowNode"); \ +static_assert(offsetof(FNormalizeDataflowNode, VectorA) == 0x0000E8, "Member 'FNormalizeDataflowNode::VectorA' has a wrong offset!"); \ +static_assert(offsetof(FNormalizeDataflowNode, Tolerance) == 0x000100, "Member 'FNormalizeDataflowNode::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(FNormalizeDataflowNode, ReturnValue) == 0x000108, "Member 'FNormalizeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoxFalloffFieldDataflowNode \ +static_assert(alignof(FBoxFalloffFieldDataflowNode) == 0x000010, "Wrong alignment on FBoxFalloffFieldDataflowNode"); \ +static_assert(sizeof(FBoxFalloffFieldDataflowNode) == 0x000210, "Wrong size on FBoxFalloffFieldDataflowNode"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FBoxFalloffFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FBoxFalloffFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, Box) == 0x000118, "Member 'FBoxFalloffFieldDataflowNode::Box' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, Transform) == 0x000150, "Member 'FBoxFalloffFieldDataflowNode::Transform' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, Magnitude) == 0x0001B0, "Member 'FBoxFalloffFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, MinRange) == 0x0001B4, "Member 'FBoxFalloffFieldDataflowNode::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, MaxRange) == 0x0001B8, "Member 'FBoxFalloffFieldDataflowNode::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, Default) == 0x0001BC, "Member 'FBoxFalloffFieldDataflowNode::Default' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, FalloffType) == 0x0001C0, "Member 'FBoxFalloffFieldDataflowNode::FalloffType' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, FieldFloatResult) == 0x0001C8, "Member 'FBoxFalloffFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, FieldRemap) == 0x0001D8, "Member 'FBoxFalloffFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, FieldSelectionMask) == 0x0001E8, "Member 'FBoxFalloffFieldDataflowNode::FieldSelectionMask' has a wrong offset!"); \ +static_assert(offsetof(FBoxFalloffFieldDataflowNode, NumSamplePositions) == 0x000208, "Member 'FBoxFalloffFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlaneFalloffFieldDataflowNode \ +static_assert(alignof(FPlaneFalloffFieldDataflowNode) == 0x000008, "Wrong alignment on FPlaneFalloffFieldDataflowNode"); \ +static_assert(sizeof(FPlaneFalloffFieldDataflowNode) == 0x0001C8, "Wrong size on FPlaneFalloffFieldDataflowNode"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FPlaneFalloffFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FPlaneFalloffFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Position) == 0x000118, "Member 'FPlaneFalloffFieldDataflowNode::Position' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Normal) == 0x000130, "Member 'FPlaneFalloffFieldDataflowNode::Normal' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Distance) == 0x000148, "Member 'FPlaneFalloffFieldDataflowNode::Distance' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Translation) == 0x000150, "Member 'FPlaneFalloffFieldDataflowNode::Translation' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Magnitude) == 0x000168, "Member 'FPlaneFalloffFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, MinRange) == 0x00016C, "Member 'FPlaneFalloffFieldDataflowNode::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, MaxRange) == 0x000170, "Member 'FPlaneFalloffFieldDataflowNode::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, Default) == 0x000174, "Member 'FPlaneFalloffFieldDataflowNode::Default' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, FalloffType) == 0x000178, "Member 'FPlaneFalloffFieldDataflowNode::FalloffType' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, FieldFloatResult) == 0x000180, "Member 'FPlaneFalloffFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, FieldRemap) == 0x000190, "Member 'FPlaneFalloffFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, FieldSelectionMask) == 0x0001A0, "Member 'FPlaneFalloffFieldDataflowNode::FieldSelectionMask' has a wrong offset!"); \ +static_assert(offsetof(FPlaneFalloffFieldDataflowNode, NumSamplePositions) == 0x0001C0, "Member 'FPlaneFalloffFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMathConstantsDataflowNode \ +static_assert(alignof(FMathConstantsDataflowNode) == 0x000008, "Wrong alignment on FMathConstantsDataflowNode"); \ +static_assert(sizeof(FMathConstantsDataflowNode) == 0x0000F0, "Wrong size on FMathConstantsDataflowNode"); \ +static_assert(offsetof(FMathConstantsDataflowNode, Constant) == 0x0000E8, "Member 'FMathConstantsDataflowNode::Constant' has a wrong offset!"); \ +static_assert(offsetof(FMathConstantsDataflowNode, ReturnValue) == 0x0000EC, "Member 'FMathConstantsDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialIntMaskFieldDataflowNode \ +static_assert(alignof(FRadialIntMaskFieldDataflowNode) == 0x000008, "Wrong alignment on FRadialIntMaskFieldDataflowNode"); \ +static_assert(sizeof(FRadialIntMaskFieldDataflowNode) == 0x000188, "Wrong size on FRadialIntMaskFieldDataflowNode"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FRadialIntMaskFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FRadialIntMaskFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, Sphere) == 0x000118, "Member 'FRadialIntMaskFieldDataflowNode::Sphere' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, Translation) == 0x000138, "Member 'FRadialIntMaskFieldDataflowNode::Translation' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, InteriorValue) == 0x000150, "Member 'FRadialIntMaskFieldDataflowNode::InteriorValue' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, ExteriorValue) == 0x000154, "Member 'FRadialIntMaskFieldDataflowNode::ExteriorValue' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, SetMaskConditionType) == 0x000158, "Member 'FRadialIntMaskFieldDataflowNode::SetMaskConditionType' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, FieldIntResult) == 0x000160, "Member 'FRadialIntMaskFieldDataflowNode::FieldIntResult' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, FieldRemap) == 0x000170, "Member 'FRadialIntMaskFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FRadialIntMaskFieldDataflowNode, NumSamplePositions) == 0x000180, "Member 'FRadialIntMaskFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniformScalarFieldDataflowNode \ +static_assert(alignof(FUniformScalarFieldDataflowNode) == 0x000008, "Wrong alignment on FUniformScalarFieldDataflowNode"); \ +static_assert(sizeof(FUniformScalarFieldDataflowNode) == 0x000148, "Wrong size on FUniformScalarFieldDataflowNode"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FUniformScalarFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FUniformScalarFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, Magnitude) == 0x000118, "Member 'FUniformScalarFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, FieldFloatResult) == 0x000120, "Member 'FUniformScalarFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, FieldRemap) == 0x000130, "Member 'FUniformScalarFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FUniformScalarFieldDataflowNode, NumSamplePositions) == 0x000140, "Member 'FUniformScalarFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetMeshDataDataflowNode \ +static_assert(alignof(FGetMeshDataDataflowNode) == 0x000008, "Wrong alignment on FGetMeshDataDataflowNode"); \ +static_assert(sizeof(FGetMeshDataDataflowNode) == 0x000100, "Wrong size on FGetMeshDataDataflowNode"); \ +static_assert(offsetof(FGetMeshDataDataflowNode, Mesh) == 0x0000E8, "Member 'FGetMeshDataDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FGetMeshDataDataflowNode, VertexCount) == 0x0000F0, "Member 'FGetMeshDataDataflowNode::VertexCount' has a wrong offset!"); \ +static_assert(offsetof(FGetMeshDataDataflowNode, EdgeCount) == 0x0000F4, "Member 'FGetMeshDataDataflowNode::EdgeCount' has a wrong offset!"); \ +static_assert(offsetof(FGetMeshDataDataflowNode, TriangleCount) == 0x0000F8, "Member 'FGetMeshDataDataflowNode::TriangleCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniformVectorFieldDataflowNode \ +static_assert(alignof(FUniformVectorFieldDataflowNode) == 0x000008, "Wrong alignment on FUniformVectorFieldDataflowNode"); \ +static_assert(sizeof(FUniformVectorFieldDataflowNode) == 0x000160, "Wrong size on FUniformVectorFieldDataflowNode"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FUniformVectorFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FUniformVectorFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, Magnitude) == 0x000118, "Member 'FUniformVectorFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, Direction) == 0x000120, "Member 'FUniformVectorFieldDataflowNode::Direction' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, FieldVectorResult) == 0x000138, "Member 'FUniformVectorFieldDataflowNode::FieldVectorResult' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, FieldRemap) == 0x000148, "Member 'FUniformVectorFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FUniformVectorFieldDataflowNode, NumSamplePositions) == 0x000158, "Member 'FUniformVectorFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialVectorFieldDataflowNode \ +static_assert(alignof(FRadialVectorFieldDataflowNode) == 0x000008, "Wrong alignment on FRadialVectorFieldDataflowNode"); \ +static_assert(sizeof(FRadialVectorFieldDataflowNode) == 0x000160, "Wrong size on FRadialVectorFieldDataflowNode"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FRadialVectorFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FRadialVectorFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, Magnitude) == 0x000118, "Member 'FRadialVectorFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, Position) == 0x000120, "Member 'FRadialVectorFieldDataflowNode::Position' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, FieldVectorResult) == 0x000138, "Member 'FRadialVectorFieldDataflowNode::FieldVectorResult' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, FieldRemap) == 0x000148, "Member 'FRadialVectorFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FRadialVectorFieldDataflowNode, NumSamplePositions) == 0x000158, "Member 'FRadialVectorFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshToCollectionDataflowNode \ +static_assert(alignof(FMeshToCollectionDataflowNode) == 0x000008, "Wrong alignment on FMeshToCollectionDataflowNode"); \ +static_assert(sizeof(FMeshToCollectionDataflowNode) == 0x0001A0, "Wrong size on FMeshToCollectionDataflowNode"); \ +static_assert(offsetof(FMeshToCollectionDataflowNode, Mesh) == 0x0000E8, "Member 'FMeshToCollectionDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FMeshToCollectionDataflowNode, Collection) == 0x0000F0, "Member 'FMeshToCollectionDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomVectorFieldDataflowNode \ +static_assert(alignof(FRandomVectorFieldDataflowNode) == 0x000008, "Wrong alignment on FRandomVectorFieldDataflowNode"); \ +static_assert(sizeof(FRandomVectorFieldDataflowNode) == 0x000148, "Wrong size on FRandomVectorFieldDataflowNode"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FRandomVectorFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FRandomVectorFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, Magnitude) == 0x000118, "Member 'FRandomVectorFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, FieldVectorResult) == 0x000120, "Member 'FRandomVectorFieldDataflowNode::FieldVectorResult' has a wrong offset!"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, FieldRemap) == 0x000130, "Member 'FRandomVectorFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FRandomVectorFieldDataflowNode, NumSamplePositions) == 0x000140, "Member 'FRandomVectorFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNoiseFieldDataflowNode \ +static_assert(alignof(FNoiseFieldDataflowNode) == 0x000010, "Wrong alignment on FNoiseFieldDataflowNode"); \ +static_assert(sizeof(FNoiseFieldDataflowNode) == 0x0001B0, "Wrong size on FNoiseFieldDataflowNode"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FNoiseFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FNoiseFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, MinRange) == 0x000118, "Member 'FNoiseFieldDataflowNode::MinRange' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, MaxRange) == 0x00011C, "Member 'FNoiseFieldDataflowNode::MaxRange' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, Transform) == 0x000120, "Member 'FNoiseFieldDataflowNode::Transform' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, FieldFloatResult) == 0x000180, "Member 'FNoiseFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, FieldRemap) == 0x000190, "Member 'FNoiseFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FNoiseFieldDataflowNode, NumSamplePositions) == 0x0001A0, "Member 'FNoiseFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadiansToDegreesDataflowNode \ +static_assert(alignof(FRadiansToDegreesDataflowNode) == 0x000008, "Wrong alignment on FRadiansToDegreesDataflowNode"); \ +static_assert(sizeof(FRadiansToDegreesDataflowNode) == 0x0000F0, "Wrong size on FRadiansToDegreesDataflowNode"); \ +static_assert(offsetof(FRadiansToDegreesDataflowNode, Radians) == 0x0000E8, "Member 'FRadiansToDegreesDataflowNode::Radians' has a wrong offset!"); \ +static_assert(offsetof(FRadiansToDegreesDataflowNode, Degrees) == 0x0000EC, "Member 'FRadiansToDegreesDataflowNode::Degrees' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniformIntegerFieldDataflowNode \ +static_assert(alignof(FUniformIntegerFieldDataflowNode) == 0x000008, "Wrong alignment on FUniformIntegerFieldDataflowNode"); \ +static_assert(sizeof(FUniformIntegerFieldDataflowNode) == 0x000148, "Wrong size on FUniformIntegerFieldDataflowNode"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FUniformIntegerFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FUniformIntegerFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, Magnitude) == 0x000118, "Member 'FUniformIntegerFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, FieldIntResult) == 0x000120, "Member 'FUniformIntegerFieldDataflowNode::FieldIntResult' has a wrong offset!"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, FieldRemap) == 0x000130, "Member 'FUniformIntegerFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FUniformIntegerFieldDataflowNode, NumSamplePositions) == 0x000140, "Member 'FUniformIntegerFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWaveScalarFieldDataflowNode \ +static_assert(alignof(FWaveScalarFieldDataflowNode) == 0x000008, "Wrong alignment on FWaveScalarFieldDataflowNode"); \ +static_assert(sizeof(FWaveScalarFieldDataflowNode) == 0x000188, "Wrong size on FWaveScalarFieldDataflowNode"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, SamplePositions) == 0x0000E8, "Member 'FWaveScalarFieldDataflowNode::SamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, SampleIndices) == 0x0000F8, "Member 'FWaveScalarFieldDataflowNode::SampleIndices' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, Magnitude) == 0x000118, "Member 'FWaveScalarFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, Position) == 0x000120, "Member 'FWaveScalarFieldDataflowNode::Position' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, Translation) == 0x000138, "Member 'FWaveScalarFieldDataflowNode::Translation' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, Wavelength) == 0x000150, "Member 'FWaveScalarFieldDataflowNode::Wavelength' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, Period) == 0x000154, "Member 'FWaveScalarFieldDataflowNode::Period' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, FunctionType) == 0x000158, "Member 'FWaveScalarFieldDataflowNode::FunctionType' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, FalloffType) == 0x000159, "Member 'FWaveScalarFieldDataflowNode::FalloffType' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, FieldFloatResult) == 0x000160, "Member 'FWaveScalarFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, FieldRemap) == 0x000170, "Member 'FWaveScalarFieldDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FWaveScalarFieldDataflowNode, NumSamplePositions) == 0x000180, "Member 'FWaveScalarFieldDataflowNode::NumSamplePositions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionInSphereDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionInSphereDataflowNode) == 0x000010, "Wrong alignment on FCollectionTransformSelectionInSphereDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionInSphereDataflowNode) == 0x000250, "Wrong size on FCollectionTransformSelectionInSphereDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionInSphereDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, Sphere) == 0x000198, "Member 'FCollectionTransformSelectionInSphereDataflowNode::Sphere' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, Transform) == 0x0001C0, "Member 'FCollectionTransformSelectionInSphereDataflowNode::Transform' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, Type) == 0x000220, "Member 'FCollectionTransformSelectionInSphereDataflowNode::Type' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, bAllVerticesMustContainedInSphere) == 0x000221, "Member 'FCollectionTransformSelectionInSphereDataflowNode::bAllVerticesMustContainedInSphere' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInSphereDataflowNode, TransformSelection) == 0x000228, "Member 'FCollectionTransformSelectionInSphereDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSumScalarFieldDataflowNode \ +static_assert(alignof(FSumScalarFieldDataflowNode) == 0x000008, "Wrong alignment on FSumScalarFieldDataflowNode"); \ +static_assert(sizeof(FSumScalarFieldDataflowNode) == 0x000150, "Wrong size on FSumScalarFieldDataflowNode"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldFloatLeft) == 0x0000E8, "Member 'FSumScalarFieldDataflowNode::FieldFloatLeft' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldRemapLeft) == 0x0000F8, "Member 'FSumScalarFieldDataflowNode::FieldRemapLeft' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldFloatRight) == 0x000108, "Member 'FSumScalarFieldDataflowNode::FieldFloatRight' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldRemapRight) == 0x000118, "Member 'FSumScalarFieldDataflowNode::FieldRemapRight' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, Magnitude) == 0x000128, "Member 'FSumScalarFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, Operation) == 0x00012C, "Member 'FSumScalarFieldDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, bSwapInputs) == 0x00012D, "Member 'FSumScalarFieldDataflowNode::bSwapInputs' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldFloatResult) == 0x000130, "Member 'FSumScalarFieldDataflowNode::FieldFloatResult' has a wrong offset!"); \ +static_assert(offsetof(FSumScalarFieldDataflowNode, FieldRemap) == 0x000140, "Member 'FSumScalarFieldDataflowNode::FieldRemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSumVectorFieldDataflowNode \ +static_assert(alignof(FSumVectorFieldDataflowNode) == 0x000008, "Wrong alignment on FSumVectorFieldDataflowNode"); \ +static_assert(sizeof(FSumVectorFieldDataflowNode) == 0x000170, "Wrong size on FSumVectorFieldDataflowNode"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldFloat) == 0x0000E8, "Member 'FSumVectorFieldDataflowNode::FieldFloat' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldFloatRemap) == 0x0000F8, "Member 'FSumVectorFieldDataflowNode::FieldFloatRemap' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldVectorLeft) == 0x000108, "Member 'FSumVectorFieldDataflowNode::FieldVectorLeft' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldRemapLeft) == 0x000118, "Member 'FSumVectorFieldDataflowNode::FieldRemapLeft' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldVectorRight) == 0x000128, "Member 'FSumVectorFieldDataflowNode::FieldVectorRight' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldRemapRight) == 0x000138, "Member 'FSumVectorFieldDataflowNode::FieldRemapRight' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, Magnitude) == 0x000148, "Member 'FSumVectorFieldDataflowNode::Magnitude' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, Operation) == 0x00014C, "Member 'FSumVectorFieldDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, bSwapVectorInputs) == 0x00014D, "Member 'FSumVectorFieldDataflowNode::bSwapVectorInputs' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldVectorResult) == 0x000150, "Member 'FSumVectorFieldDataflowNode::FieldVectorResult' has a wrong offset!"); \ +static_assert(offsetof(FSumVectorFieldDataflowNode, FieldRemap) == 0x000160, "Member 'FSumVectorFieldDataflowNode::FieldRemap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpandVectorDataflowNode \ +static_assert(alignof(FExpandVectorDataflowNode) == 0x000008, "Wrong alignment on FExpandVectorDataflowNode"); \ +static_assert(sizeof(FExpandVectorDataflowNode) == 0x000110, "Wrong size on FExpandVectorDataflowNode"); \ +static_assert(offsetof(FExpandVectorDataflowNode, Vector) == 0x0000E8, "Member 'FExpandVectorDataflowNode::Vector' has a wrong offset!"); \ +static_assert(offsetof(FExpandVectorDataflowNode, X) == 0x000100, "Member 'FExpandVectorDataflowNode::X' has a wrong offset!"); \ +static_assert(offsetof(FExpandVectorDataflowNode, Y) == 0x000104, "Member 'FExpandVectorDataflowNode::Y' has a wrong offset!"); \ +static_assert(offsetof(FExpandVectorDataflowNode, Z) == 0x000108, "Member 'FExpandVectorDataflowNode::Z' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFieldMakeDenseFloatArrayDataflowNode \ +static_assert(alignof(FFieldMakeDenseFloatArrayDataflowNode) == 0x000008, "Wrong alignment on FFieldMakeDenseFloatArrayDataflowNode"); \ +static_assert(sizeof(FFieldMakeDenseFloatArrayDataflowNode) == 0x000120, "Wrong size on FFieldMakeDenseFloatArrayDataflowNode"); \ +static_assert(offsetof(FFieldMakeDenseFloatArrayDataflowNode, FieldFloatInput) == 0x0000E8, "Member 'FFieldMakeDenseFloatArrayDataflowNode::FieldFloatInput' has a wrong offset!"); \ +static_assert(offsetof(FFieldMakeDenseFloatArrayDataflowNode, FieldRemap) == 0x0000F8, "Member 'FFieldMakeDenseFloatArrayDataflowNode::FieldRemap' has a wrong offset!"); \ +static_assert(offsetof(FFieldMakeDenseFloatArrayDataflowNode, NumSamplePositions) == 0x000108, "Member 'FFieldMakeDenseFloatArrayDataflowNode::NumSamplePositions' has a wrong offset!"); \ +static_assert(offsetof(FFieldMakeDenseFloatArrayDataflowNode, Default) == 0x00010C, "Member 'FFieldMakeDenseFloatArrayDataflowNode::Default' has a wrong offset!"); \ +static_assert(offsetof(FFieldMakeDenseFloatArrayDataflowNode, FieldFloatResult) == 0x000110, "Member 'FFieldMakeDenseFloatArrayDataflowNode::FieldFloatResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAddMaterialToCollectionDataflowNode \ +static_assert(alignof(FAddMaterialToCollectionDataflowNode) == 0x000008, "Wrong alignment on FAddMaterialToCollectionDataflowNode"); \ +static_assert(sizeof(FAddMaterialToCollectionDataflowNode) == 0x0001E0, "Wrong size on FAddMaterialToCollectionDataflowNode"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FAddMaterialToCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, FaceSelection) == 0x000198, "Member 'FAddMaterialToCollectionDataflowNode::FaceSelection' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, Materials) == 0x0001B8, "Member 'FAddMaterialToCollectionDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, OutsideMaterial) == 0x0001C8, "Member 'FAddMaterialToCollectionDataflowNode::OutsideMaterial' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, InsideMaterial) == 0x0001D0, "Member 'FAddMaterialToCollectionDataflowNode::InsideMaterial' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, bAssignOutsideMaterial) == 0x0001D8, "Member 'FAddMaterialToCollectionDataflowNode::bAssignOutsideMaterial' has a wrong offset!"); \ +static_assert(offsetof(FAddMaterialToCollectionDataflowNode, bAssignInsideMaterial) == 0x0001D9, "Member 'FAddMaterialToCollectionDataflowNode::bAssignInsideMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionFaceSelectionCustomDataflowNode \ +static_assert(alignof(FCollectionFaceSelectionCustomDataflowNode) == 0x000008, "Wrong alignment on FCollectionFaceSelectionCustomDataflowNode"); \ +static_assert(sizeof(FCollectionFaceSelectionCustomDataflowNode) == 0x0001C8, "Wrong size on FCollectionFaceSelectionCustomDataflowNode"); \ +static_assert(offsetof(FCollectionFaceSelectionCustomDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionFaceSelectionCustomDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionFaceSelectionCustomDataflowNode, FaceIndicies) == 0x000198, "Member 'FCollectionFaceSelectionCustomDataflowNode::FaceIndicies' has a wrong offset!"); \ +static_assert(offsetof(FCollectionFaceSelectionCustomDataflowNode, FaceSelection) == 0x0001A8, "Member 'FCollectionFaceSelectionCustomDataflowNode::FaceSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReAssignMaterialInCollectionDataflowNode \ +static_assert(alignof(FReAssignMaterialInCollectionDataflowNode) == 0x000008, "Wrong alignment on FReAssignMaterialInCollectionDataflowNode"); \ +static_assert(sizeof(FReAssignMaterialInCollectionDataflowNode) == 0x0001D8, "Wrong size on FReAssignMaterialInCollectionDataflowNode"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FReAssignMaterialInCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, FaceSelection) == 0x000198, "Member 'FReAssignMaterialInCollectionDataflowNode::FaceSelection' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, Materials) == 0x0001B8, "Member 'FReAssignMaterialInCollectionDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, OutsideMaterialIdx) == 0x0001C8, "Member 'FReAssignMaterialInCollectionDataflowNode::OutsideMaterialIdx' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, InsideMaterialIdx) == 0x0001CC, "Member 'FReAssignMaterialInCollectionDataflowNode::InsideMaterialIdx' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, bAssignOutsideMaterial) == 0x0001D0, "Member 'FReAssignMaterialInCollectionDataflowNode::bAssignOutsideMaterial' has a wrong offset!"); \ +static_assert(offsetof(FReAssignMaterialInCollectionDataflowNode, bAssignInsideMaterial) == 0x0001D1, "Member 'FReAssignMaterialInCollectionDataflowNode::bAssignInsideMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaterialsInfoDataflowNode \ +static_assert(alignof(FMaterialsInfoDataflowNode) == 0x000008, "Wrong alignment on FMaterialsInfoDataflowNode"); \ +static_assert(sizeof(FMaterialsInfoDataflowNode) == 0x000108, "Wrong size on FMaterialsInfoDataflowNode"); \ +static_assert(offsetof(FMaterialsInfoDataflowNode, Materials) == 0x0000E8, "Member 'FMaterialsInfoDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FMaterialsInfoDataflowNode, String) == 0x0000F8, "Member 'FMaterialsInfoDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionByVolumeDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionByVolumeDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionByVolumeDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionByVolumeDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionByVolumeDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, VolumeMin) == 0x000198, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::VolumeMin' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, VolumeMax) == 0x00019C, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::VolumeMax' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, RangeSetting) == 0x0001A0, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::RangeSetting' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, bInclusive) == 0x0001A1, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::bInclusive' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByVolumeDataflowNode, TransformSelection) == 0x0001A8, "Member 'FCollectionTransformSelectionByVolumeDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetMaterialFromMaterialsArrayDataflowNode \ +static_assert(alignof(FGetMaterialFromMaterialsArrayDataflowNode) == 0x000008, "Wrong alignment on FGetMaterialFromMaterialsArrayDataflowNode"); \ +static_assert(sizeof(FGetMaterialFromMaterialsArrayDataflowNode) == 0x000108, "Wrong size on FGetMaterialFromMaterialsArrayDataflowNode"); \ +static_assert(offsetof(FGetMaterialFromMaterialsArrayDataflowNode, Materials) == 0x0000E8, "Member 'FGetMaterialFromMaterialsArrayDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FGetMaterialFromMaterialsArrayDataflowNode, Material) == 0x0000F8, "Member 'FGetMaterialFromMaterialsArrayDataflowNode::Material' has a wrong offset!"); \ +static_assert(offsetof(FGetMaterialFromMaterialsArrayDataflowNode, MaterialIdx) == 0x000100, "Member 'FGetMaterialFromMaterialsArrayDataflowNode::MaterialIdx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetMaterialInMaterialsArrayDataflowNode \ +static_assert(alignof(FSetMaterialInMaterialsArrayDataflowNode) == 0x000008, "Wrong alignment on FSetMaterialInMaterialsArrayDataflowNode"); \ +static_assert(sizeof(FSetMaterialInMaterialsArrayDataflowNode) == 0x000108, "Wrong size on FSetMaterialInMaterialsArrayDataflowNode"); \ +static_assert(offsetof(FSetMaterialInMaterialsArrayDataflowNode, Materials) == 0x0000E8, "Member 'FSetMaterialInMaterialsArrayDataflowNode::Materials' has a wrong offset!"); \ +static_assert(offsetof(FSetMaterialInMaterialsArrayDataflowNode, Material) == 0x0000F8, "Member 'FSetMaterialInMaterialsArrayDataflowNode::Material' has a wrong offset!"); \ +static_assert(offsetof(FSetMaterialInMaterialsArrayDataflowNode, Operation) == 0x000100, "Member 'FSetMaterialInMaterialsArrayDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FSetMaterialInMaterialsArrayDataflowNode, MaterialIdx) == 0x000104, "Member 'FSetMaterialInMaterialsArrayDataflowNode::MaterialIdx' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetBoxLengthsDataflowNode \ +static_assert(alignof(FGetBoxLengthsDataflowNode) == 0x000008, "Wrong alignment on FGetBoxLengthsDataflowNode"); \ +static_assert(sizeof(FGetBoxLengthsDataflowNode) == 0x000110, "Wrong size on FGetBoxLengthsDataflowNode"); \ +static_assert(offsetof(FGetBoxLengthsDataflowNode, Boxes) == 0x0000E8, "Member 'FGetBoxLengthsDataflowNode::Boxes' has a wrong offset!"); \ +static_assert(offsetof(FGetBoxLengthsDataflowNode, Lengths) == 0x0000F8, "Member 'FGetBoxLengthsDataflowNode::Lengths' has a wrong offset!"); \ +static_assert(offsetof(FGetBoxLengthsDataflowNode, MeasurementMethod) == 0x000108, "Member 'FGetBoxLengthsDataflowNode::MeasurementMethod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeMaterialDataflowNode \ +static_assert(alignof(FMakeMaterialDataflowNode) == 0x000008, "Wrong alignment on FMakeMaterialDataflowNode"); \ +static_assert(sizeof(FMakeMaterialDataflowNode) == 0x0000F8, "Wrong size on FMakeMaterialDataflowNode"); \ +static_assert(offsetof(FMakeMaterialDataflowNode, InMaterial) == 0x0000E8, "Member 'FMakeMaterialDataflowNode::InMaterial' has a wrong offset!"); \ +static_assert(offsetof(FMakeMaterialDataflowNode, Material) == 0x0000F0, "Member 'FMakeMaterialDataflowNode::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeMaterialsArrayDataflowNode \ +static_assert(alignof(FMakeMaterialsArrayDataflowNode) == 0x000008, "Wrong alignment on FMakeMaterialsArrayDataflowNode"); \ +static_assert(sizeof(FMakeMaterialsArrayDataflowNode) == 0x0000F8, "Wrong size on FMakeMaterialsArrayDataflowNode"); \ +static_assert(offsetof(FMakeMaterialsArrayDataflowNode, Materials) == 0x0000E8, "Member 'FMakeMaterialsArrayDataflowNode::Materials' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBakeTransformsInCollectionDataflowNode \ +static_assert(alignof(FBakeTransformsInCollectionDataflowNode) == 0x000008, "Wrong alignment on FBakeTransformsInCollectionDataflowNode"); \ +static_assert(sizeof(FBakeTransformsInCollectionDataflowNode) == 0x000198, "Wrong size on FBakeTransformsInCollectionDataflowNode"); \ +static_assert(offsetof(FBakeTransformsInCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FBakeTransformsInCollectionDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCloseGeometryOnCollectionDataflowNode \ +static_assert(alignof(FCloseGeometryOnCollectionDataflowNode) == 0x000008, "Wrong alignment on FCloseGeometryOnCollectionDataflowNode"); \ +static_assert(sizeof(FCloseGeometryOnCollectionDataflowNode) == 0x000198, "Wrong size on FCloseGeometryOnCollectionDataflowNode"); \ +static_assert(offsetof(FCloseGeometryOnCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FCloseGeometryOnCollectionDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSkeletonToCollectionDataflowNode \ +static_assert(alignof(FSkeletonToCollectionDataflowNode) == 0x000008, "Wrong alignment on FSkeletonToCollectionDataflowNode"); \ +static_assert(sizeof(FSkeletonToCollectionDataflowNode) == 0x0001A0, "Wrong size on FSkeletonToCollectionDataflowNode"); \ +static_assert(offsetof(FSkeletonToCollectionDataflowNode, Skeleton) == 0x0000E8, "Member 'FSkeletonToCollectionDataflowNode::Skeleton' has a wrong offset!"); \ +static_assert(offsetof(FSkeletonToCollectionDataflowNode, Collection) == 0x0000F0, "Member 'FSkeletonToCollectionDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHashStringDataflowNode \ +static_assert(alignof(FHashStringDataflowNode) == 0x000008, "Wrong alignment on FHashStringDataflowNode"); \ +static_assert(sizeof(FHashStringDataflowNode) == 0x000100, "Wrong size on FHashStringDataflowNode"); \ +static_assert(offsetof(FHashStringDataflowNode, String) == 0x0000E8, "Member 'FHashStringDataflowNode::String' has a wrong offset!"); \ +static_assert(offsetof(FHashStringDataflowNode, Hash) == 0x0000F8, "Member 'FHashStringDataflowNode::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataflowConvexDecompositionSettings \ +static_assert(alignof(FDataflowConvexDecompositionSettings) == 0x000004, "Wrong alignment on FDataflowConvexDecompositionSettings"); \ +static_assert(sizeof(FDataflowConvexDecompositionSettings) == 0x000018, "Wrong size on FDataflowConvexDecompositionSettings"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, MinSizeToDecompose) == 0x000000, "Member 'FDataflowConvexDecompositionSettings::MinSizeToDecompose' has a wrong offset!"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, MaxGeoToHullVolumeRatioToDecompose) == 0x000004, "Member 'FDataflowConvexDecompositionSettings::MaxGeoToHullVolumeRatioToDecompose' has a wrong offset!"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, ErrorTolerance) == 0x000008, "Member 'FDataflowConvexDecompositionSettings::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, MaxHullsPerGeometry) == 0x00000C, "Member 'FDataflowConvexDecompositionSettings::MaxHullsPerGeometry' has a wrong offset!"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, MinThicknessTolerance) == 0x000010, "Member 'FDataflowConvexDecompositionSettings::MinThicknessTolerance' has a wrong offset!"); \ +static_assert(offsetof(FDataflowConvexDecompositionSettings, NumAdditionalSplits) == 0x000014, "Member 'FDataflowConvexDecompositionSettings::NumAdditionalSplits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeDataflowConvexDecompositionSettingsNode \ +static_assert(alignof(FMakeDataflowConvexDecompositionSettingsNode) == 0x000008, "Wrong alignment on FMakeDataflowConvexDecompositionSettingsNode"); \ +static_assert(sizeof(FMakeDataflowConvexDecompositionSettingsNode) == 0x000118, "Wrong size on FMakeDataflowConvexDecompositionSettingsNode"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, MinSizeToDecompose) == 0x0000E8, "Member 'FMakeDataflowConvexDecompositionSettingsNode::MinSizeToDecompose' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, MaxGeoToHullVolumeRatioToDecompose) == 0x0000EC, "Member 'FMakeDataflowConvexDecompositionSettingsNode::MaxGeoToHullVolumeRatioToDecompose' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, ErrorTolerance) == 0x0000F0, "Member 'FMakeDataflowConvexDecompositionSettingsNode::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, MaxHullsPerGeometry) == 0x0000F4, "Member 'FMakeDataflowConvexDecompositionSettingsNode::MaxHullsPerGeometry' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, MinThicknessTolerance) == 0x0000F8, "Member 'FMakeDataflowConvexDecompositionSettingsNode::MinThicknessTolerance' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, NumAdditionalSplits) == 0x0000FC, "Member 'FMakeDataflowConvexDecompositionSettingsNode::NumAdditionalSplits' has a wrong offset!"); \ +static_assert(offsetof(FMakeDataflowConvexDecompositionSettingsNode, DecompositionSettings) == 0x000100, "Member 'FMakeDataflowConvexDecompositionSettingsNode::DecompositionSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLogStringDataflowNode \ +static_assert(alignof(FLogStringDataflowNode) == 0x000008, "Wrong alignment on FLogStringDataflowNode"); \ +static_assert(sizeof(FLogStringDataflowNode) == 0x000100, "Wrong size on FLogStringDataflowNode"); \ +static_assert(offsetof(FLogStringDataflowNode, bPrintToLog) == 0x0000E8, "Member 'FLogStringDataflowNode::bPrintToLog' has a wrong offset!"); \ +static_assert(offsetof(FLogStringDataflowNode, String) == 0x0000F0, "Member 'FLogStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateLeafConvexHullsDataflowNode \ +static_assert(alignof(FCreateLeafConvexHullsDataflowNode) == 0x000008, "Wrong alignment on FCreateLeafConvexHullsDataflowNode"); \ +static_assert(sizeof(FCreateLeafConvexHullsDataflowNode) == 0x0001E0, "Wrong size on FCreateLeafConvexHullsDataflowNode"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, Collection) == 0x0000E8, "Member 'FCreateLeafConvexHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, OptionalSelectionFilter) == 0x000198, "Member 'FCreateLeafConvexHullsDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, GenerateMethod) == 0x0001B8, "Member 'FCreateLeafConvexHullsDataflowNode::GenerateMethod' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, IntersectIfComputedIsSmallerByFactor) == 0x0001BC, "Member 'FCreateLeafConvexHullsDataflowNode::IntersectIfComputedIsSmallerByFactor' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, MinExternalVolumeToIntersect) == 0x0001C0, "Member 'FCreateLeafConvexHullsDataflowNode::MinExternalVolumeToIntersect' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, SimplificationDistanceThreshold) == 0x0001C4, "Member 'FCreateLeafConvexHullsDataflowNode::SimplificationDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FCreateLeafConvexHullsDataflowNode, ConvexDecompositionSettings) == 0x0001C8, "Member 'FCreateLeafConvexHullsDataflowNode::ConvexDecompositionSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSimplifyConvexHullsDataflowNode \ +static_assert(alignof(FSimplifyConvexHullsDataflowNode) == 0x000008, "Wrong alignment on FSimplifyConvexHullsDataflowNode"); \ +static_assert(sizeof(FSimplifyConvexHullsDataflowNode) == 0x0001D0, "Wrong size on FSimplifyConvexHullsDataflowNode"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, Collection) == 0x0000E8, "Member 'FSimplifyConvexHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, OptionalSelectionFilter) == 0x000198, "Member 'FSimplifyConvexHullsDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, SimplifyMethod) == 0x0001B8, "Member 'FSimplifyConvexHullsDataflowNode::SimplifyMethod' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, SimplificationAngleThreshold) == 0x0001BC, "Member 'FSimplifyConvexHullsDataflowNode::SimplificationAngleThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, SimplificationDistanceThreshold) == 0x0001C0, "Member 'FSimplifyConvexHullsDataflowNode::SimplificationDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, MinTargetTriangleCount) == 0x0001C4, "Member 'FSimplifyConvexHullsDataflowNode::MinTargetTriangleCount' has a wrong offset!"); \ +static_assert(offsetof(FSimplifyConvexHullsDataflowNode, bUseExistingVertices) == 0x0001C8, "Member 'FSimplifyConvexHullsDataflowNode::bUseExistingVertices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetCentroidsFromCollectionDataflowNode \ +static_assert(alignof(FGetCentroidsFromCollectionDataflowNode) == 0x000008, "Wrong alignment on FGetCentroidsFromCollectionDataflowNode"); \ +static_assert(sizeof(FGetCentroidsFromCollectionDataflowNode) == 0x0001C8, "Wrong size on FGetCentroidsFromCollectionDataflowNode"); \ +static_assert(offsetof(FGetCentroidsFromCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FGetCentroidsFromCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetCentroidsFromCollectionDataflowNode, TransformSelection) == 0x000198, "Member 'FGetCentroidsFromCollectionDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FGetCentroidsFromCollectionDataflowNode, Centroids) == 0x0001B8, "Member 'FGetCentroidsFromCollectionDataflowNode::Centroids' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCreateNonOverlappingConvexHullsDataflowNode \ +static_assert(alignof(FCreateNonOverlappingConvexHullsDataflowNode) == 0x000008, "Wrong alignment on FCreateNonOverlappingConvexHullsDataflowNode"); \ +static_assert(sizeof(FCreateNonOverlappingConvexHullsDataflowNode) == 0x0001B0, "Wrong size on FCreateNonOverlappingConvexHullsDataflowNode"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, Collection) == 0x0000E8, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, CanExceedFraction) == 0x000198, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::CanExceedFraction' has a wrong offset!"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, SimplificationDistanceThreshold) == 0x00019C, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::SimplificationDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, OverlapRemovalMethod) == 0x0001A0, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::OverlapRemovalMethod' has a wrong offset!"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, OverlapRemovalShrinkPercent) == 0x0001A4, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::OverlapRemovalShrinkPercent' has a wrong offset!"); \ +static_assert(offsetof(FCreateNonOverlappingConvexHullsDataflowNode, CanRemoveFraction) == 0x0001A8, "Member 'FCreateNonOverlappingConvexHullsDataflowNode::CanRemoveFraction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDataflowSphereCovering \ +static_assert(alignof(FDataflowSphereCovering) == 0x000008, "Wrong alignment on FDataflowSphereCovering"); \ +static_assert(sizeof(FDataflowSphereCovering) == 0x000020, "Wrong size on FDataflowSphereCovering"); \ + +#define DUMPER7_ASSERTS_FSetAnchorStateDataflowNode \ +static_assert(alignof(FSetAnchorStateDataflowNode) == 0x000008, "Wrong alignment on FSetAnchorStateDataflowNode"); \ +static_assert(sizeof(FSetAnchorStateDataflowNode) == 0x0001C0, "Wrong size on FSetAnchorStateDataflowNode"); \ +static_assert(offsetof(FSetAnchorStateDataflowNode, AnchorState) == 0x0000E8, "Member 'FSetAnchorStateDataflowNode::AnchorState' has a wrong offset!"); \ +static_assert(offsetof(FSetAnchorStateDataflowNode, bSetNotSelectedBonesToOppositeState) == 0x0000E9, "Member 'FSetAnchorStateDataflowNode::bSetNotSelectedBonesToOppositeState' has a wrong offset!"); \ +static_assert(offsetof(FSetAnchorStateDataflowNode, Collection) == 0x0000F0, "Member 'FSetAnchorStateDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSetAnchorStateDataflowNode, TransformSelection) == 0x0001A0, "Member 'FSetAnchorStateDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGenerateClusterConvexHullsFromLeafHullsDataflowNode \ +static_assert(alignof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode) == 0x000008, "Wrong alignment on FGenerateClusterConvexHullsFromLeafHullsDataflowNode"); \ +static_assert(sizeof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode) == 0x000210, "Wrong size on FGenerateClusterConvexHullsFromLeafHullsDataflowNode"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, Collection) == 0x0000E8, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, SphereCovering) == 0x000198, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::SphereCovering' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, ConvexCount) == 0x0001B8, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::ConvexCount' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, ErrorTolerance) == 0x0001C0, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, bPreferExternalCollisionShapes) == 0x0001C8, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::bPreferExternalCollisionShapes' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, AllowMerges) == 0x0001C9, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::AllowMerges' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, OptionalSelectionFilter) == 0x0001D0, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, bProtectNegativeSpace) == 0x0001F0, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::bProtectNegativeSpace' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, TargetNumSamples) == 0x0001F4, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::TargetNumSamples' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, MinSampleSpacing) == 0x0001F8, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::MinSampleSpacing' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, NegativeSpaceTolerance) == 0x000200, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::NegativeSpaceTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromLeafHullsDataflowNode, MinRadius) == 0x000208, "Member 'FGenerateClusterConvexHullsFromLeafHullsDataflowNode::MinRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGenerateClusterConvexHullsFromChildrenHullsDataflowNode \ +static_assert(alignof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode) == 0x000008, "Wrong alignment on FGenerateClusterConvexHullsFromChildrenHullsDataflowNode"); \ +static_assert(sizeof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode) == 0x000210, "Wrong size on FGenerateClusterConvexHullsFromChildrenHullsDataflowNode"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, Collection) == 0x0000E8, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, SphereCovering) == 0x000198, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::SphereCovering' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, ConvexCount) == 0x0001B8, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::ConvexCount' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, ErrorTolerance) == 0x0001C0, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, bPreferExternalCollisionShapes) == 0x0001C8, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::bPreferExternalCollisionShapes' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, OptionalSelectionFilter) == 0x0001D0, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, bProtectNegativeSpace) == 0x0001F0, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::bProtectNegativeSpace' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, TargetNumSamples) == 0x0001F4, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::TargetNumSamples' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, MinSampleSpacing) == 0x0001F8, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::MinSampleSpacing' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, NegativeSpaceTolerance) == 0x000200, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::NegativeSpaceTolerance' has a wrong offset!"); \ +static_assert(offsetof(FGenerateClusterConvexHullsFromChildrenHullsDataflowNode, MinRadius) == 0x000208, "Member 'FGenerateClusterConvexHullsFromChildrenHullsDataflowNode::MinRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompareIntDataflowNode \ +static_assert(alignof(FCompareIntDataflowNode) == 0x000008, "Wrong alignment on FCompareIntDataflowNode"); \ +static_assert(sizeof(FCompareIntDataflowNode) == 0x0000F8, "Wrong size on FCompareIntDataflowNode"); \ +static_assert(offsetof(FCompareIntDataflowNode, Operation) == 0x0000E8, "Member 'FCompareIntDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FCompareIntDataflowNode, IntA) == 0x0000EC, "Member 'FCompareIntDataflowNode::IntA' has a wrong offset!"); \ +static_assert(offsetof(FCompareIntDataflowNode, IntB) == 0x0000F0, "Member 'FCompareIntDataflowNode::IntB' has a wrong offset!"); \ +static_assert(offsetof(FCompareIntDataflowNode, Result) == 0x0000F4, "Member 'FCompareIntDataflowNode::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMergeConvexHullsDataflowNode \ +static_assert(alignof(FMergeConvexHullsDataflowNode) == 0x000008, "Wrong alignment on FMergeConvexHullsDataflowNode"); \ +static_assert(sizeof(FMergeConvexHullsDataflowNode) == 0x000208, "Wrong size on FMergeConvexHullsDataflowNode"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, Collection) == 0x0000E8, "Member 'FMergeConvexHullsDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, SphereCovering) == 0x000198, "Member 'FMergeConvexHullsDataflowNode::SphereCovering' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, MaxConvexCount) == 0x0001B8, "Member 'FMergeConvexHullsDataflowNode::MaxConvexCount' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, ErrorTolerance) == 0x0001C0, "Member 'FMergeConvexHullsDataflowNode::ErrorTolerance' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, OptionalSelectionFilter) == 0x0001C8, "Member 'FMergeConvexHullsDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, bProtectNegativeSpace) == 0x0001E8, "Member 'FMergeConvexHullsDataflowNode::bProtectNegativeSpace' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, TargetNumSamples) == 0x0001EC, "Member 'FMergeConvexHullsDataflowNode::TargetNumSamples' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, MinSampleSpacing) == 0x0001F0, "Member 'FMergeConvexHullsDataflowNode::MinSampleSpacing' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, NegativeSpaceTolerance) == 0x0001F8, "Member 'FMergeConvexHullsDataflowNode::NegativeSpaceTolerance' has a wrong offset!"); \ +static_assert(offsetof(FMergeConvexHullsDataflowNode, MinRadius) == 0x000200, "Member 'FMergeConvexHullsDataflowNode::MinRadius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUpdateVolumeAttributesDataflowNode \ +static_assert(alignof(FUpdateVolumeAttributesDataflowNode) == 0x000008, "Wrong alignment on FUpdateVolumeAttributesDataflowNode"); \ +static_assert(sizeof(FUpdateVolumeAttributesDataflowNode) == 0x000198, "Wrong size on FUpdateVolumeAttributesDataflowNode"); \ +static_assert(offsetof(FUpdateVolumeAttributesDataflowNode, Collection) == 0x0000E8, "Member 'FUpdateVolumeAttributesDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetBoundingBoxesFromCollectionDataflowNode \ +static_assert(alignof(FGetBoundingBoxesFromCollectionDataflowNode) == 0x000008, "Wrong alignment on FGetBoundingBoxesFromCollectionDataflowNode"); \ +static_assert(sizeof(FGetBoundingBoxesFromCollectionDataflowNode) == 0x0001C8, "Wrong size on FGetBoundingBoxesFromCollectionDataflowNode"); \ +static_assert(offsetof(FGetBoundingBoxesFromCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FGetBoundingBoxesFromCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetBoundingBoxesFromCollectionDataflowNode, TransformSelection) == 0x000198, "Member 'FGetBoundingBoxesFromCollectionDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FGetBoundingBoxesFromCollectionDataflowNode, BoundingBoxes) == 0x0001B8, "Member 'FGetBoundingBoxesFromCollectionDataflowNode::BoundingBoxes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetConvexHullVolumeDataflowNode \ +static_assert(alignof(FGetConvexHullVolumeDataflowNode) == 0x000008, "Wrong alignment on FGetConvexHullVolumeDataflowNode"); \ +static_assert(sizeof(FGetConvexHullVolumeDataflowNode) == 0x0001C0, "Wrong size on FGetConvexHullVolumeDataflowNode"); \ +static_assert(offsetof(FGetConvexHullVolumeDataflowNode, Collection) == 0x0000E8, "Member 'FGetConvexHullVolumeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetConvexHullVolumeDataflowNode, TransformSelection) == 0x000198, "Member 'FGetConvexHullVolumeDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FGetConvexHullVolumeDataflowNode, Volume) == 0x0001B8, "Member 'FGetConvexHullVolumeDataflowNode::Volume' has a wrong offset!"); \ +static_assert(offsetof(FGetConvexHullVolumeDataflowNode, bSumChildrenForClustersWithoutHulls) == 0x0001BC, "Member 'FGetConvexHullVolumeDataflowNode::bSumChildrenForClustersWithoutHulls' has a wrong offset!"); \ +static_assert(offsetof(FGetConvexHullVolumeDataflowNode, bVolumeOfUnion) == 0x0001BD, "Member 'FGetConvexHullVolumeDataflowNode::bVolumeOfUnion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAutoClusterDataflowNode \ +static_assert(alignof(FAutoClusterDataflowNode) == 0x000008, "Wrong alignment on FAutoClusterDataflowNode"); \ +static_assert(sizeof(FAutoClusterDataflowNode) == 0x0001E0, "Wrong size on FAutoClusterDataflowNode"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterSizeMethod) == 0x0000E8, "Member 'FAutoClusterDataflowNode::ClusterSizeMethod' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterSites) == 0x0000EC, "Member 'FAutoClusterDataflowNode::ClusterSites' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterFraction) == 0x0000F0, "Member 'FAutoClusterDataflowNode::ClusterFraction' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, SiteSize) == 0x0000F4, "Member 'FAutoClusterDataflowNode::SiteSize' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterGridWidth) == 0x0000F8, "Member 'FAutoClusterDataflowNode::ClusterGridWidth' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterGridDepth) == 0x0000FC, "Member 'FAutoClusterDataflowNode::ClusterGridDepth' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, ClusterGridHeight) == 0x000100, "Member 'FAutoClusterDataflowNode::ClusterGridHeight' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, DriftIterations) == 0x000104, "Member 'FAutoClusterDataflowNode::DriftIterations' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, MinimumSize) == 0x000108, "Member 'FAutoClusterDataflowNode::MinimumSize' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, AutoCluster) == 0x00010C, "Member 'FAutoClusterDataflowNode::AutoCluster' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, EnforceSiteParameters) == 0x00010D, "Member 'FAutoClusterDataflowNode::EnforceSiteParameters' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, AvoidIsolated) == 0x00010E, "Member 'FAutoClusterDataflowNode::AvoidIsolated' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, Collection) == 0x000110, "Member 'FAutoClusterDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FAutoClusterDataflowNode, TransformSelection) == 0x0001C0, "Member 'FAutoClusterDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetSchemaDataflowNode \ +static_assert(alignof(FGetSchemaDataflowNode) == 0x000008, "Wrong alignment on FGetSchemaDataflowNode"); \ +static_assert(sizeof(FGetSchemaDataflowNode) == 0x0001A8, "Wrong size on FGetSchemaDataflowNode"); \ +static_assert(offsetof(FGetSchemaDataflowNode, Collection) == 0x0000E8, "Member 'FGetSchemaDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetSchemaDataflowNode, String) == 0x000198, "Member 'FGetSchemaDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterFlattenDataflowNode \ +static_assert(alignof(FClusterFlattenDataflowNode) == 0x000008, "Wrong alignment on FClusterFlattenDataflowNode"); \ +static_assert(sizeof(FClusterFlattenDataflowNode) == 0x000198, "Wrong size on FClusterFlattenDataflowNode"); \ +static_assert(offsetof(FClusterFlattenDataflowNode, Collection) == 0x0000E8, "Member 'FClusterFlattenDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterUnclusterDataflowNode \ +static_assert(alignof(FClusterUnclusterDataflowNode) == 0x000008, "Wrong alignment on FClusterUnclusterDataflowNode"); \ +static_assert(sizeof(FClusterUnclusterDataflowNode) == 0x0001B8, "Wrong size on FClusterUnclusterDataflowNode"); \ +static_assert(offsetof(FClusterUnclusterDataflowNode, Collection) == 0x0000E8, "Member 'FClusterUnclusterDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FClusterUnclusterDataflowNode, TransformSelection) == 0x000198, "Member 'FClusterUnclusterDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSelectionToVertexListDataflowNode \ +static_assert(alignof(FSelectionToVertexListDataflowNode) == 0x000008, "Wrong alignment on FSelectionToVertexListDataflowNode"); \ +static_assert(sizeof(FSelectionToVertexListDataflowNode) == 0x000118, "Wrong size on FSelectionToVertexListDataflowNode"); \ +static_assert(offsetof(FSelectionToVertexListDataflowNode, VertexSelection) == 0x0000E8, "Member 'FSelectionToVertexListDataflowNode::VertexSelection' has a wrong offset!"); \ +static_assert(offsetof(FSelectionToVertexListDataflowNode, VertexList) == 0x000108, "Member 'FSelectionToVertexListDataflowNode::VertexList' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterDataflowNode \ +static_assert(alignof(FClusterDataflowNode) == 0x000008, "Wrong alignment on FClusterDataflowNode"); \ +static_assert(sizeof(FClusterDataflowNode) == 0x0001B8, "Wrong size on FClusterDataflowNode"); \ +static_assert(offsetof(FClusterDataflowNode, Collection) == 0x0000E8, "Member 'FClusterDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FClusterDataflowNode, TransformSelection) == 0x000198, "Member 'FClusterDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClusterMergeDataflowNode \ +static_assert(alignof(FClusterMergeDataflowNode) == 0x000008, "Wrong alignment on FClusterMergeDataflowNode"); \ +static_assert(sizeof(FClusterMergeDataflowNode) == 0x0001B8, "Wrong size on FClusterMergeDataflowNode"); \ +static_assert(offsetof(FClusterMergeDataflowNode, Collection) == 0x0000E8, "Member 'FClusterMergeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FClusterMergeDataflowNode, TransformSelection) == 0x000198, "Member 'FClusterMergeDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionSetPivotDataflowNode \ +static_assert(alignof(FCollectionSetPivotDataflowNode) == 0x000010, "Wrong alignment on FCollectionSetPivotDataflowNode"); \ +static_assert(sizeof(FCollectionSetPivotDataflowNode) == 0x000200, "Wrong size on FCollectionSetPivotDataflowNode"); \ +static_assert(offsetof(FCollectionSetPivotDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionSetPivotDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionSetPivotDataflowNode, Transform) == 0x0001A0, "Member 'FCollectionSetPivotDataflowNode::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVectorToStringDataflowNode \ +static_assert(alignof(FVectorToStringDataflowNode) == 0x000008, "Wrong alignment on FVectorToStringDataflowNode"); \ +static_assert(sizeof(FVectorToStringDataflowNode) == 0x000110, "Wrong size on FVectorToStringDataflowNode"); \ +static_assert(offsetof(FVectorToStringDataflowNode, Vector) == 0x0000E8, "Member 'FVectorToStringDataflowNode::Vector' has a wrong offset!"); \ +static_assert(offsetof(FVectorToStringDataflowNode, String) == 0x000100, "Member 'FVectorToStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatToStringDataflowNode \ +static_assert(alignof(FFloatToStringDataflowNode) == 0x000008, "Wrong alignment on FFloatToStringDataflowNode"); \ +static_assert(sizeof(FFloatToStringDataflowNode) == 0x000100, "Wrong size on FFloatToStringDataflowNode"); \ +static_assert(offsetof(FFloatToStringDataflowNode, float_0) == 0x0000E8, "Member 'FFloatToStringDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFloatToStringDataflowNode, String) == 0x0000F0, "Member 'FFloatToStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchDataflowNode \ +static_assert(alignof(FBranchDataflowNode) == 0x000008, "Wrong alignment on FBranchDataflowNode"); \ +static_assert(sizeof(FBranchDataflowNode) == 0x000108, "Wrong size on FBranchDataflowNode"); \ +static_assert(offsetof(FBranchDataflowNode, MeshA) == 0x0000E8, "Member 'FBranchDataflowNode::MeshA' has a wrong offset!"); \ +static_assert(offsetof(FBranchDataflowNode, MeshB) == 0x0000F0, "Member 'FBranchDataflowNode::MeshB' has a wrong offset!"); \ +static_assert(offsetof(FBranchDataflowNode, bCondition) == 0x0000F8, "Member 'FBranchDataflowNode::bCondition' has a wrong offset!"); \ +static_assert(offsetof(FBranchDataflowNode, Mesh) == 0x000100, "Member 'FBranchDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntToStringDataflowNode \ +static_assert(alignof(FIntToStringDataflowNode) == 0x000008, "Wrong alignment on FIntToStringDataflowNode"); \ +static_assert(sizeof(FIntToStringDataflowNode) == 0x000100, "Wrong size on FIntToStringDataflowNode"); \ +static_assert(offsetof(FIntToStringDataflowNode, Int) == 0x0000E8, "Member 'FIntToStringDataflowNode::Int' has a wrong offset!"); \ +static_assert(offsetof(FIntToStringDataflowNode, String) == 0x0000F0, "Member 'FIntToStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolToStringDataflowNode \ +static_assert(alignof(FBoolToStringDataflowNode) == 0x000008, "Wrong alignment on FBoolToStringDataflowNode"); \ +static_assert(sizeof(FBoolToStringDataflowNode) == 0x000100, "Wrong size on FBoolToStringDataflowNode"); \ +static_assert(offsetof(FBoolToStringDataflowNode, Bool) == 0x0000E8, "Member 'FBoolToStringDataflowNode::Bool' has a wrong offset!"); \ +static_assert(offsetof(FBoolToStringDataflowNode, String) == 0x0000F0, "Member 'FBoolToStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLerpDataflowNode \ +static_assert(alignof(FLerpDataflowNode) == 0x000008, "Wrong alignment on FLerpDataflowNode"); \ +static_assert(sizeof(FLerpDataflowNode) == 0x0000F8, "Wrong size on FLerpDataflowNode"); \ +static_assert(offsetof(FLerpDataflowNode, A) == 0x0000E8, "Member 'FLerpDataflowNode::A' has a wrong offset!"); \ +static_assert(offsetof(FLerpDataflowNode, B) == 0x0000EC, "Member 'FLerpDataflowNode::B' has a wrong offset!"); \ +static_assert(offsetof(FLerpDataflowNode, alpha) == 0x0000F0, "Member 'FLerpDataflowNode::alpha' has a wrong offset!"); \ +static_assert(offsetof(FLerpDataflowNode, ReturnValue) == 0x0000F4, "Member 'FLerpDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntToFloatDataflowNode \ +static_assert(alignof(FIntToFloatDataflowNode) == 0x000008, "Wrong alignment on FIntToFloatDataflowNode"); \ +static_assert(sizeof(FIntToFloatDataflowNode) == 0x0000F0, "Wrong size on FIntToFloatDataflowNode"); \ +static_assert(offsetof(FIntToFloatDataflowNode, Int) == 0x0000E8, "Member 'FIntToFloatDataflowNode::Int' has a wrong offset!"); \ +static_assert(offsetof(FIntToFloatDataflowNode, float_0) == 0x0000EC, "Member 'FIntToFloatDataflowNode::float_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntToDoubleDataflowNode \ +static_assert(alignof(FIntToDoubleDataflowNode) == 0x000008, "Wrong alignment on FIntToDoubleDataflowNode"); \ +static_assert(sizeof(FIntToDoubleDataflowNode) == 0x0000F8, "Wrong size on FIntToDoubleDataflowNode"); \ +static_assert(offsetof(FIntToDoubleDataflowNode, Int) == 0x0000E8, "Member 'FIntToDoubleDataflowNode::Int' has a wrong offset!"); \ +static_assert(offsetof(FIntToDoubleDataflowNode, Double) == 0x0000F0, "Member 'FIntToDoubleDataflowNode::Double' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionAllDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionAllDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionAllDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionAllDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionAllDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionAllDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionAllDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionAllDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionTransformSelectionAllDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatToDoubleDataflowNode \ +static_assert(alignof(FFloatToDoubleDataflowNode) == 0x000008, "Wrong alignment on FFloatToDoubleDataflowNode"); \ +static_assert(sizeof(FFloatToDoubleDataflowNode) == 0x0000F8, "Wrong size on FFloatToDoubleDataflowNode"); \ +static_assert(offsetof(FFloatToDoubleDataflowNode, float_0) == 0x0000E8, "Member 'FFloatToDoubleDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFloatToDoubleDataflowNode, Double) == 0x0000F0, "Member 'FFloatToDoubleDataflowNode::Double' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloatToIntDataflowNode \ +static_assert(alignof(FFloatToIntDataflowNode) == 0x000008, "Wrong alignment on FFloatToIntDataflowNode"); \ +static_assert(sizeof(FFloatToIntDataflowNode) == 0x0000F8, "Wrong size on FFloatToIntDataflowNode"); \ +static_assert(offsetof(FFloatToIntDataflowNode, Function) == 0x0000E8, "Member 'FFloatToIntDataflowNode::Function' has a wrong offset!"); \ +static_assert(offsetof(FFloatToIntDataflowNode, float_0) == 0x0000EC, "Member 'FFloatToIntDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFloatToIntDataflowNode, Int) == 0x0000F0, "Member 'FFloatToIntDataflowNode::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArcSinDataflowNode \ +static_assert(alignof(FArcSinDataflowNode) == 0x000008, "Wrong alignment on FArcSinDataflowNode"); \ +static_assert(sizeof(FArcSinDataflowNode) == 0x0000F0, "Wrong size on FArcSinDataflowNode"); \ +static_assert(offsetof(FArcSinDataflowNode, float_0) == 0x0000E8, "Member 'FArcSinDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FArcSinDataflowNode, ReturnValue) == 0x0000EC, "Member 'FArcSinDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIntToBoolDataflowNode \ +static_assert(alignof(FIntToBoolDataflowNode) == 0x000008, "Wrong alignment on FIntToBoolDataflowNode"); \ +static_assert(sizeof(FIntToBoolDataflowNode) == 0x0000F0, "Wrong size on FIntToBoolDataflowNode"); \ +static_assert(offsetof(FIntToBoolDataflowNode, Int) == 0x0000E8, "Member 'FIntToBoolDataflowNode::Int' has a wrong offset!"); \ +static_assert(offsetof(FIntToBoolDataflowNode, Bool) == 0x0000EC, "Member 'FIntToBoolDataflowNode::Bool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoolToIntDataflowNode \ +static_assert(alignof(FBoolToIntDataflowNode) == 0x000008, "Wrong alignment on FBoolToIntDataflowNode"); \ +static_assert(sizeof(FBoolToIntDataflowNode) == 0x0000F0, "Wrong size on FBoolToIntDataflowNode"); \ +static_assert(offsetof(FBoolToIntDataflowNode, Bool) == 0x0000E8, "Member 'FBoolToIntDataflowNode::Bool' has a wrong offset!"); \ +static_assert(offsetof(FBoolToIntDataflowNode, Int) == 0x0000EC, "Member 'FBoolToIntDataflowNode::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLogDataflowNode \ +static_assert(alignof(FLogDataflowNode) == 0x000008, "Wrong alignment on FLogDataflowNode"); \ +static_assert(sizeof(FLogDataflowNode) == 0x0000F8, "Wrong size on FLogDataflowNode"); \ +static_assert(offsetof(FLogDataflowNode, base) == 0x0000E8, "Member 'FLogDataflowNode::base' has a wrong offset!"); \ +static_assert(offsetof(FLogDataflowNode, A) == 0x0000EC, "Member 'FLogDataflowNode::A' has a wrong offset!"); \ +static_assert(offsetof(FLogDataflowNode, ReturnValue) == 0x0000F0, "Member 'FLogDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FConvexHullToMeshDataflowNode \ +static_assert(alignof(FConvexHullToMeshDataflowNode) == 0x000008, "Wrong alignment on FConvexHullToMeshDataflowNode"); \ +static_assert(sizeof(FConvexHullToMeshDataflowNode) == 0x0001C0, "Wrong size on FConvexHullToMeshDataflowNode"); \ +static_assert(offsetof(FConvexHullToMeshDataflowNode, Collection) == 0x0000E8, "Member 'FConvexHullToMeshDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FConvexHullToMeshDataflowNode, OptionalSelectionFilter) == 0x000198, "Member 'FConvexHullToMeshDataflowNode::OptionalSelectionFilter' has a wrong offset!"); \ +static_assert(offsetof(FConvexHullToMeshDataflowNode, Mesh) == 0x0001B8, "Member 'FConvexHullToMeshDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSphereCoveringToMeshDataflowNode \ +static_assert(alignof(FSphereCoveringToMeshDataflowNode) == 0x000008, "Wrong alignment on FSphereCoveringToMeshDataflowNode"); \ +static_assert(sizeof(FSphereCoveringToMeshDataflowNode) == 0x000118, "Wrong size on FSphereCoveringToMeshDataflowNode"); \ +static_assert(offsetof(FSphereCoveringToMeshDataflowNode, SphereCovering) == 0x0000E8, "Member 'FSphereCoveringToMeshDataflowNode::SphereCovering' has a wrong offset!"); \ +static_assert(offsetof(FSphereCoveringToMeshDataflowNode, VerticesAlongEachSide) == 0x000108, "Member 'FSphereCoveringToMeshDataflowNode::VerticesAlongEachSide' has a wrong offset!"); \ +static_assert(offsetof(FSphereCoveringToMeshDataflowNode, Mesh) == 0x000110, "Member 'FSphereCoveringToMeshDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetBoolOverrideFromAssetDataflowNode \ +static_assert(alignof(FGetBoolOverrideFromAssetDataflowNode) == 0x000008, "Wrong alignment on FGetBoolOverrideFromAssetDataflowNode"); \ +static_assert(sizeof(FGetBoolOverrideFromAssetDataflowNode) == 0x000110, "Wrong size on FGetBoolOverrideFromAssetDataflowNode"); \ +static_assert(offsetof(FGetBoolOverrideFromAssetDataflowNode, Bool) == 0x000108, "Member 'FGetBoolOverrideFromAssetDataflowNode::Bool' has a wrong offset!"); \ +static_assert(offsetof(FGetBoolOverrideFromAssetDataflowNode, BoolDefault) == 0x000109, "Member 'FGetBoolOverrideFromAssetDataflowNode::BoolDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshToOBJStringDebugDataflowNode \ +static_assert(alignof(FMeshToOBJStringDebugDataflowNode) == 0x000008, "Wrong alignment on FMeshToOBJStringDebugDataflowNode"); \ +static_assert(sizeof(FMeshToOBJStringDebugDataflowNode) == 0x000108, "Wrong size on FMeshToOBJStringDebugDataflowNode"); \ +static_assert(offsetof(FMeshToOBJStringDebugDataflowNode, Mesh) == 0x0000E8, "Member 'FMeshToOBJStringDebugDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FMeshToOBJStringDebugDataflowNode, bInvertFaces) == 0x0000F0, "Member 'FMeshToOBJStringDebugDataflowNode::bInvertFaces' has a wrong offset!"); \ +static_assert(offsetof(FMeshToOBJStringDebugDataflowNode, StringOBJ) == 0x0000F8, "Member 'FMeshToOBJStringDebugDataflowNode::StringOBJ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWriteStringToFile \ +static_assert(alignof(FWriteStringToFile) == 0x000008, "Wrong alignment on FWriteStringToFile"); \ +static_assert(sizeof(FWriteStringToFile) == 0x000108, "Wrong size on FWriteStringToFile"); \ +static_assert(offsetof(FWriteStringToFile, FilePath) == 0x0000E8, "Member 'FWriteStringToFile::FilePath' has a wrong offset!"); \ +static_assert(offsetof(FWriteStringToFile, FileContents) == 0x0000F8, "Member 'FWriteStringToFile::FileContents' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionFromIndexArrayDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionFromIndexArrayDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionFromIndexArrayDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionFromIndexArrayDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionFromIndexArrayDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionFromIndexArrayDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionFromIndexArrayDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionFromIndexArrayDataflowNode, BoneIndices) == 0x000198, "Member 'FCollectionTransformSelectionFromIndexArrayDataflowNode::BoneIndices' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionFromIndexArrayDataflowNode, TransformSelection) == 0x0001A8, "Member 'FCollectionTransformSelectionFromIndexArrayDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPruneInCollectionDataflowNode \ +static_assert(alignof(FPruneInCollectionDataflowNode) == 0x000008, "Wrong alignment on FPruneInCollectionDataflowNode"); \ +static_assert(sizeof(FPruneInCollectionDataflowNode) == 0x0001B8, "Wrong size on FPruneInCollectionDataflowNode"); \ +static_assert(offsetof(FPruneInCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FPruneInCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FPruneInCollectionDataflowNode, TransformSelection) == 0x000198, "Member 'FPruneInCollectionDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetVisibilityInCollectionDataflowNode \ +static_assert(alignof(FSetVisibilityInCollectionDataflowNode) == 0x000008, "Wrong alignment on FSetVisibilityInCollectionDataflowNode"); \ +static_assert(sizeof(FSetVisibilityInCollectionDataflowNode) == 0x0001E0, "Wrong size on FSetVisibilityInCollectionDataflowNode"); \ +static_assert(offsetof(FSetVisibilityInCollectionDataflowNode, Visibility) == 0x0000E8, "Member 'FSetVisibilityInCollectionDataflowNode::Visibility' has a wrong offset!"); \ +static_assert(offsetof(FSetVisibilityInCollectionDataflowNode, Collection) == 0x0000F0, "Member 'FSetVisibilityInCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSetVisibilityInCollectionDataflowNode, TransformSelection) == 0x0001A0, "Member 'FSetVisibilityInCollectionDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FSetVisibilityInCollectionDataflowNode, FaceSelection) == 0x0001C0, "Member 'FSetVisibilityInCollectionDataflowNode::FaceSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionInfoDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionInfoDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionInfoDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionInfoDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionInfoDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionInfoDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionInfoDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInfoDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionInfoDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInfoDataflowNode, String) == 0x0001B8, "Member 'FCollectionTransformSelectionInfoDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMergeInCollectionDataflowNode \ +static_assert(alignof(FMergeInCollectionDataflowNode) == 0x000008, "Wrong alignment on FMergeInCollectionDataflowNode"); \ +static_assert(sizeof(FMergeInCollectionDataflowNode) == 0x0001B8, "Wrong size on FMergeInCollectionDataflowNode"); \ +static_assert(offsetof(FMergeInCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FMergeInCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FMergeInCollectionDataflowNode, TransformSelection) == 0x000198, "Member 'FMergeInCollectionDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FUniformScatterPointsDataflowNode \ +static_assert(alignof(FUniformScatterPointsDataflowNode) == 0x000008, "Wrong alignment on FUniformScatterPointsDataflowNode"); \ +static_assert(sizeof(FUniformScatterPointsDataflowNode) == 0x000140, "Wrong size on FUniformScatterPointsDataflowNode"); \ +static_assert(offsetof(FUniformScatterPointsDataflowNode, MinNumberOfPoints) == 0x0000E8, "Member 'FUniformScatterPointsDataflowNode::MinNumberOfPoints' has a wrong offset!"); \ +static_assert(offsetof(FUniformScatterPointsDataflowNode, MaxNumberOfPoints) == 0x0000EC, "Member 'FUniformScatterPointsDataflowNode::MaxNumberOfPoints' has a wrong offset!"); \ +static_assert(offsetof(FUniformScatterPointsDataflowNode, RandomSeed) == 0x0000F0, "Member 'FUniformScatterPointsDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FUniformScatterPointsDataflowNode, BoundingBox) == 0x0000F8, "Member 'FUniformScatterPointsDataflowNode::BoundingBox' has a wrong offset!"); \ +static_assert(offsetof(FUniformScatterPointsDataflowNode, Points) == 0x000130, "Member 'FUniformScatterPointsDataflowNode::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetFloatOverrideFromAssetDataflowNode \ +static_assert(alignof(FGetFloatOverrideFromAssetDataflowNode) == 0x000008, "Wrong alignment on FGetFloatOverrideFromAssetDataflowNode"); \ +static_assert(sizeof(FGetFloatOverrideFromAssetDataflowNode) == 0x000110, "Wrong size on FGetFloatOverrideFromAssetDataflowNode"); \ +static_assert(offsetof(FGetFloatOverrideFromAssetDataflowNode, float_0) == 0x000108, "Member 'FGetFloatOverrideFromAssetDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FGetFloatOverrideFromAssetDataflowNode, FloatDefault) == 0x00010C, "Member 'FGetFloatOverrideFromAssetDataflowNode::FloatDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRadialScatterPointsDataflowNode \ +static_assert(alignof(FRadialScatterPointsDataflowNode) == 0x000008, "Wrong alignment on FRadialScatterPointsDataflowNode"); \ +static_assert(sizeof(FRadialScatterPointsDataflowNode) == 0x000140, "Wrong size on FRadialScatterPointsDataflowNode"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, Center) == 0x0000E8, "Member 'FRadialScatterPointsDataflowNode::Center' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, Normal) == 0x000100, "Member 'FRadialScatterPointsDataflowNode::Normal' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, Radius) == 0x000118, "Member 'FRadialScatterPointsDataflowNode::Radius' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, AngularSteps) == 0x00011C, "Member 'FRadialScatterPointsDataflowNode::AngularSteps' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, RadialSteps) == 0x000120, "Member 'FRadialScatterPointsDataflowNode::RadialSteps' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, AngleOffset) == 0x000124, "Member 'FRadialScatterPointsDataflowNode::AngleOffset' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, Variability) == 0x000128, "Member 'FRadialScatterPointsDataflowNode::Variability' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, RandomSeed) == 0x00012C, "Member 'FRadialScatterPointsDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FRadialScatterPointsDataflowNode, Points) == 0x000130, "Member 'FRadialScatterPointsDataflowNode::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FVoronoiFractureDataflowNode \ +static_assert(alignof(FVoronoiFractureDataflowNode) == 0x000008, "Wrong alignment on FVoronoiFractureDataflowNode"); \ +static_assert(sizeof(FVoronoiFractureDataflowNode) == 0x0001F8, "Wrong size on FVoronoiFractureDataflowNode"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Collection) == 0x0000E8, "Member 'FVoronoiFractureDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Points) == 0x000198, "Member 'FVoronoiFractureDataflowNode::Points' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, TransformSelection) == 0x0001A8, "Member 'FVoronoiFractureDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, RandomSeed) == 0x0001C8, "Member 'FVoronoiFractureDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, ChanceToFracture) == 0x0001CC, "Member 'FVoronoiFractureDataflowNode::ChanceToFracture' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, GroupFracture) == 0x0001D0, "Member 'FVoronoiFractureDataflowNode::GroupFracture' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Grout) == 0x0001D4, "Member 'FVoronoiFractureDataflowNode::Grout' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Amplitude) == 0x0001D8, "Member 'FVoronoiFractureDataflowNode::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Frequency) == 0x0001DC, "Member 'FVoronoiFractureDataflowNode::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Persistence) == 0x0001E0, "Member 'FVoronoiFractureDataflowNode::Persistence' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, Lacunarity) == 0x0001E4, "Member 'FVoronoiFractureDataflowNode::Lacunarity' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, OctaveNumber) == 0x0001E8, "Member 'FVoronoiFractureDataflowNode::OctaveNumber' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, PointSpacing) == 0x0001EC, "Member 'FVoronoiFractureDataflowNode::PointSpacing' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, AddSamplesForCollision) == 0x0001F0, "Member 'FVoronoiFractureDataflowNode::AddSamplesForCollision' has a wrong offset!"); \ +static_assert(offsetof(FVoronoiFractureDataflowNode, CollisionSampleSpacing) == 0x0001F4, "Member 'FVoronoiFractureDataflowNode::CollisionSampleSpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionRootDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionRootDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionRootDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionRootDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionRootDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionRootDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionRootDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionRootDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionTransformSelectionRootDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPlaneCutterDataflowNode \ +static_assert(alignof(FPlaneCutterDataflowNode) == 0x000008, "Wrong alignment on FPlaneCutterDataflowNode"); \ +static_assert(sizeof(FPlaneCutterDataflowNode) == 0x000220, "Wrong size on FPlaneCutterDataflowNode"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Collection) == 0x0000E8, "Member 'FPlaneCutterDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, BoundingBox) == 0x000198, "Member 'FPlaneCutterDataflowNode::BoundingBox' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, TransformSelection) == 0x0001D0, "Member 'FPlaneCutterDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, NumPlanes) == 0x0001F0, "Member 'FPlaneCutterDataflowNode::NumPlanes' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, RandomSeed) == 0x0001F4, "Member 'FPlaneCutterDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Grout) == 0x0001F8, "Member 'FPlaneCutterDataflowNode::Grout' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Amplitude) == 0x0001FC, "Member 'FPlaneCutterDataflowNode::Amplitude' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Frequency) == 0x000200, "Member 'FPlaneCutterDataflowNode::Frequency' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Persistence) == 0x000204, "Member 'FPlaneCutterDataflowNode::Persistence' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, Lacunarity) == 0x000208, "Member 'FPlaneCutterDataflowNode::Lacunarity' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, OctaveNumber) == 0x00020C, "Member 'FPlaneCutterDataflowNode::OctaveNumber' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, PointSpacing) == 0x000210, "Member 'FPlaneCutterDataflowNode::PointSpacing' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, AddSamplesForCollision) == 0x000214, "Member 'FPlaneCutterDataflowNode::AddSamplesForCollision' has a wrong offset!"); \ +static_assert(offsetof(FPlaneCutterDataflowNode, CollisionSampleSpacing) == 0x000218, "Member 'FPlaneCutterDataflowNode::CollisionSampleSpacing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExplodedViewDataflowNode \ +static_assert(alignof(FExplodedViewDataflowNode) == 0x000008, "Wrong alignment on FExplodedViewDataflowNode"); \ +static_assert(sizeof(FExplodedViewDataflowNode) == 0x0001B8, "Wrong size on FExplodedViewDataflowNode"); \ +static_assert(offsetof(FExplodedViewDataflowNode, Collection) == 0x0000E8, "Member 'FExplodedViewDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FExplodedViewDataflowNode, UniformScale) == 0x000198, "Member 'FExplodedViewDataflowNode::UniformScale' has a wrong offset!"); \ +static_assert(offsetof(FExplodedViewDataflowNode, Scale) == 0x0001A0, "Member 'FExplodedViewDataflowNode::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionLeafDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionLeafDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionLeafDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionLeafDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionLeafDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionLeafDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionLeafDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionLeafDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionTransformSelectionLeafDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeLiteralStringDataflowNode \ +static_assert(alignof(FMakeLiteralStringDataflowNode) == 0x000008, "Wrong alignment on FMakeLiteralStringDataflowNode"); \ +static_assert(sizeof(FMakeLiteralStringDataflowNode) == 0x000108, "Wrong size on FMakeLiteralStringDataflowNode"); \ +static_assert(offsetof(FMakeLiteralStringDataflowNode, Value) == 0x0000E8, "Member 'FMakeLiteralStringDataflowNode::Value' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralStringDataflowNode, String) == 0x0000F8, "Member 'FMakeLiteralStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakePointsDataflowNode \ +static_assert(alignof(FMakePointsDataflowNode) == 0x000008, "Wrong alignment on FMakePointsDataflowNode"); \ +static_assert(sizeof(FMakePointsDataflowNode) == 0x000108, "Wrong size on FMakePointsDataflowNode"); \ +static_assert(offsetof(FMakePointsDataflowNode, Point) == 0x0000E8, "Member 'FMakePointsDataflowNode::Point' has a wrong offset!"); \ +static_assert(offsetof(FMakePointsDataflowNode, Points) == 0x0000F8, "Member 'FMakePointsDataflowNode::Points' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionByPercentageDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionByPercentageDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionByPercentageDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionByPercentageDataflowNode) == 0x000118, "Wrong size on FCollectionTransformSelectionByPercentageDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionByPercentageDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionByPercentageDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByPercentageDataflowNode, Percentage) == 0x000108, "Member 'FCollectionTransformSelectionByPercentageDataflowNode::Percentage' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByPercentageDataflowNode, bDeterministic) == 0x00010C, "Member 'FCollectionTransformSelectionByPercentageDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByPercentageDataflowNode, RandomSeed) == 0x000110, "Member 'FCollectionTransformSelectionByPercentageDataflowNode::RandomSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeBoxDataflowNode \ +static_assert(alignof(FMakeBoxDataflowNode) == 0x000008, "Wrong alignment on FMakeBoxDataflowNode"); \ +static_assert(sizeof(FMakeBoxDataflowNode) == 0x000188, "Wrong size on FMakeBoxDataflowNode"); \ +static_assert(offsetof(FMakeBoxDataflowNode, DataType) == 0x0000E8, "Member 'FMakeBoxDataflowNode::DataType' has a wrong offset!"); \ +static_assert(offsetof(FMakeBoxDataflowNode, Min) == 0x0000F0, "Member 'FMakeBoxDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FMakeBoxDataflowNode, Max) == 0x000108, "Member 'FMakeBoxDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FMakeBoxDataflowNode, Center) == 0x000120, "Member 'FMakeBoxDataflowNode::Center' has a wrong offset!"); \ +static_assert(offsetof(FMakeBoxDataflowNode, Size) == 0x000138, "Member 'FMakeBoxDataflowNode::Size' has a wrong offset!"); \ +static_assert(offsetof(FMakeBoxDataflowNode, Box) == 0x000150, "Member 'FMakeBoxDataflowNode::Box' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeSphereDataflowNode \ +static_assert(alignof(FMakeSphereDataflowNode) == 0x000008, "Wrong alignment on FMakeSphereDataflowNode"); \ +static_assert(sizeof(FMakeSphereDataflowNode) == 0x000128, "Wrong size on FMakeSphereDataflowNode"); \ +static_assert(offsetof(FMakeSphereDataflowNode, Center) == 0x0000E8, "Member 'FMakeSphereDataflowNode::Center' has a wrong offset!"); \ +static_assert(offsetof(FMakeSphereDataflowNode, Radius) == 0x000100, "Member 'FMakeSphereDataflowNode::Radius' has a wrong offset!"); \ +static_assert(offsetof(FMakeSphereDataflowNode, Sphere) == 0x000108, "Member 'FMakeSphereDataflowNode::Sphere' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionInvertDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionInvertDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionInvertDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionInvertDataflowNode) == 0x000108, "Wrong size on FCollectionTransformSelectionInvertDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionInvertDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionInvertDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeLiteralFloatDataflowNode \ +static_assert(alignof(FMakeLiteralFloatDataflowNode) == 0x000008, "Wrong alignment on FMakeLiteralFloatDataflowNode"); \ +static_assert(sizeof(FMakeLiteralFloatDataflowNode) == 0x0000F0, "Wrong size on FMakeLiteralFloatDataflowNode"); \ +static_assert(offsetof(FMakeLiteralFloatDataflowNode, Value) == 0x0000E8, "Member 'FMakeLiteralFloatDataflowNode::Value' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralFloatDataflowNode, float_0) == 0x0000EC, "Member 'FMakeLiteralFloatDataflowNode::float_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeLiteralIntDataflowNode \ +static_assert(alignof(FMakeLiteralIntDataflowNode) == 0x000008, "Wrong alignment on FMakeLiteralIntDataflowNode"); \ +static_assert(sizeof(FMakeLiteralIntDataflowNode) == 0x0000F0, "Wrong size on FMakeLiteralIntDataflowNode"); \ +static_assert(offsetof(FMakeLiteralIntDataflowNode, Value) == 0x0000E8, "Member 'FMakeLiteralIntDataflowNode::Value' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralIntDataflowNode, Int) == 0x0000EC, "Member 'FMakeLiteralIntDataflowNode::Int' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionTargetLevelDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionTargetLevelDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionTargetLevelDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionTargetLevelDataflowNode) == 0x0001C0, "Wrong size on FCollectionTransformSelectionTargetLevelDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionTargetLevelDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionTargetLevelDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionTargetLevelDataflowNode, TargetLevel) == 0x000198, "Member 'FCollectionTransformSelectionTargetLevelDataflowNode::TargetLevel' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionTargetLevelDataflowNode, bSkipEmbedded) == 0x00019C, "Member 'FCollectionTransformSelectionTargetLevelDataflowNode::bSkipEmbedded' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionTargetLevelDataflowNode, TransformSelection) == 0x0001A0, "Member 'FCollectionTransformSelectionTargetLevelDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeLiteralBoolDataflowNode \ +static_assert(alignof(FMakeLiteralBoolDataflowNode) == 0x000008, "Wrong alignment on FMakeLiteralBoolDataflowNode"); \ +static_assert(sizeof(FMakeLiteralBoolDataflowNode) == 0x0000F0, "Wrong size on FMakeLiteralBoolDataflowNode"); \ +static_assert(offsetof(FMakeLiteralBoolDataflowNode, Value) == 0x0000E8, "Member 'FMakeLiteralBoolDataflowNode::Value' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralBoolDataflowNode, Bool) == 0x0000E9, "Member 'FMakeLiteralBoolDataflowNode::Bool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeLiteralVectorDataflowNode \ +static_assert(alignof(FMakeLiteralVectorDataflowNode) == 0x000008, "Wrong alignment on FMakeLiteralVectorDataflowNode"); \ +static_assert(sizeof(FMakeLiteralVectorDataflowNode) == 0x000110, "Wrong size on FMakeLiteralVectorDataflowNode"); \ +static_assert(offsetof(FMakeLiteralVectorDataflowNode, X) == 0x0000E8, "Member 'FMakeLiteralVectorDataflowNode::X' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralVectorDataflowNode, Y) == 0x0000EC, "Member 'FMakeLiteralVectorDataflowNode::Y' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralVectorDataflowNode, Z) == 0x0000F0, "Member 'FMakeLiteralVectorDataflowNode::Z' has a wrong offset!"); \ +static_assert(offsetof(FMakeLiteralVectorDataflowNode, Vector) == 0x0000F8, "Member 'FMakeLiteralVectorDataflowNode::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionByIntAttrDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionByIntAttrDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionByIntAttrDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionByIntAttrDataflowNode) == 0x0001E8, "Wrong size on FCollectionTransformSelectionByIntAttrDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, GroupName) == 0x000198, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, AttrName) == 0x0001A8, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::AttrName' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, Min) == 0x0001B8, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, Max) == 0x0001BC, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, RangeSetting) == 0x0001C0, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::RangeSetting' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, bInclusive) == 0x0001C1, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::bInclusive' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByIntAttrDataflowNode, TransformSelection) == 0x0001C8, "Member 'FCollectionTransformSelectionByIntAttrDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeTransformDataflowNode \ +static_assert(alignof(FMakeTransformDataflowNode) == 0x000010, "Wrong alignment on FMakeTransformDataflowNode"); \ +static_assert(sizeof(FMakeTransformDataflowNode) == 0x000190, "Wrong size on FMakeTransformDataflowNode"); \ +static_assert(offsetof(FMakeTransformDataflowNode, InTranslation) == 0x0000E8, "Member 'FMakeTransformDataflowNode::InTranslation' has a wrong offset!"); \ +static_assert(offsetof(FMakeTransformDataflowNode, InRotation) == 0x000100, "Member 'FMakeTransformDataflowNode::InRotation' has a wrong offset!"); \ +static_assert(offsetof(FMakeTransformDataflowNode, InScale) == 0x000118, "Member 'FMakeTransformDataflowNode::InScale' has a wrong offset!"); \ +static_assert(offsetof(FMakeTransformDataflowNode, OutTransform) == 0x000130, "Member 'FMakeTransformDataflowNode::OutTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMakeQuaternionDataflowNode \ +static_assert(alignof(FMakeQuaternionDataflowNode) == 0x000010, "Wrong alignment on FMakeQuaternionDataflowNode"); \ +static_assert(sizeof(FMakeQuaternionDataflowNode) == 0x000120, "Wrong size on FMakeQuaternionDataflowNode"); \ +static_assert(offsetof(FMakeQuaternionDataflowNode, X) == 0x0000E8, "Member 'FMakeQuaternionDataflowNode::X' has a wrong offset!"); \ +static_assert(offsetof(FMakeQuaternionDataflowNode, Y) == 0x0000EC, "Member 'FMakeQuaternionDataflowNode::Y' has a wrong offset!"); \ +static_assert(offsetof(FMakeQuaternionDataflowNode, Z) == 0x0000F0, "Member 'FMakeQuaternionDataflowNode::Z' has a wrong offset!"); \ +static_assert(offsetof(FMakeQuaternionDataflowNode, W) == 0x0000F4, "Member 'FMakeQuaternionDataflowNode::W' has a wrong offset!"); \ +static_assert(offsetof(FMakeQuaternionDataflowNode, Quaternion) == 0x000100, "Member 'FMakeQuaternionDataflowNode::Quaternion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSelectFloatArrayIndicesInRangeDataflowNode \ +static_assert(alignof(FSelectFloatArrayIndicesInRangeDataflowNode) == 0x000008, "Wrong alignment on FSelectFloatArrayIndicesInRangeDataflowNode"); \ +static_assert(sizeof(FSelectFloatArrayIndicesInRangeDataflowNode) == 0x000118, "Wrong size on FSelectFloatArrayIndicesInRangeDataflowNode"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, Values) == 0x0000E8, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::Values' has a wrong offset!"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, Min) == 0x0000F8, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, Max) == 0x0000FC, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, RangeSetting) == 0x000100, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::RangeSetting' has a wrong offset!"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, bInclusive) == 0x000101, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::bInclusive' has a wrong offset!"); \ +static_assert(offsetof(FSelectFloatArrayIndicesInRangeDataflowNode, Indices) == 0x000108, "Member 'FSelectFloatArrayIndicesInRangeDataflowNode::Indices' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAddDataflowNode \ +static_assert(alignof(FAddDataflowNode) == 0x000008, "Wrong alignment on FAddDataflowNode"); \ +static_assert(sizeof(FAddDataflowNode) == 0x0000F8, "Wrong size on FAddDataflowNode"); \ +static_assert(offsetof(FAddDataflowNode, FloatA) == 0x0000E8, "Member 'FAddDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FAddDataflowNode, FloatB) == 0x0000EC, "Member 'FAddDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FAddDataflowNode, ReturnValue) == 0x0000F0, "Member 'FAddDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSubtractDataflowNode \ +static_assert(alignof(FSubtractDataflowNode) == 0x000008, "Wrong alignment on FSubtractDataflowNode"); \ +static_assert(sizeof(FSubtractDataflowNode) == 0x0000F8, "Wrong size on FSubtractDataflowNode"); \ +static_assert(offsetof(FSubtractDataflowNode, FloatA) == 0x0000E8, "Member 'FSubtractDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FSubtractDataflowNode, FloatB) == 0x0000EC, "Member 'FSubtractDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FSubtractDataflowNode, ReturnValue) == 0x0000F0, "Member 'FSubtractDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionSiblingsDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionSiblingsDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionSiblingsDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionSiblingsDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionSiblingsDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionSiblingsDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionSiblingsDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionSiblingsDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionSiblingsDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMultiplyDataflowNode \ +static_assert(alignof(FMultiplyDataflowNode) == 0x000008, "Wrong alignment on FMultiplyDataflowNode"); \ +static_assert(sizeof(FMultiplyDataflowNode) == 0x0000F8, "Wrong size on FMultiplyDataflowNode"); \ +static_assert(offsetof(FMultiplyDataflowNode, FloatA) == 0x0000E8, "Member 'FMultiplyDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FMultiplyDataflowNode, FloatB) == 0x0000EC, "Member 'FMultiplyDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FMultiplyDataflowNode, ReturnValue) == 0x0000F0, "Member 'FMultiplyDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSafeDivideDataflowNode \ +static_assert(alignof(FSafeDivideDataflowNode) == 0x000008, "Wrong alignment on FSafeDivideDataflowNode"); \ +static_assert(sizeof(FSafeDivideDataflowNode) == 0x0000F8, "Wrong size on FSafeDivideDataflowNode"); \ +static_assert(offsetof(FSafeDivideDataflowNode, FloatA) == 0x0000E8, "Member 'FSafeDivideDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FSafeDivideDataflowNode, FloatB) == 0x0000EC, "Member 'FSafeDivideDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FSafeDivideDataflowNode, ReturnValue) == 0x0000F0, "Member 'FSafeDivideDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDivideDataflowNode \ +static_assert(alignof(FDivideDataflowNode) == 0x000008, "Wrong alignment on FDivideDataflowNode"); \ +static_assert(sizeof(FDivideDataflowNode) == 0x0000F8, "Wrong size on FDivideDataflowNode"); \ + +#define DUMPER7_ASSERTS_FDivisionDataflowNode \ +static_assert(alignof(FDivisionDataflowNode) == 0x000008, "Wrong alignment on FDivisionDataflowNode"); \ +static_assert(sizeof(FDivisionDataflowNode) == 0x0000F8, "Wrong size on FDivisionDataflowNode"); \ +static_assert(offsetof(FDivisionDataflowNode, Dividend) == 0x0000E8, "Member 'FDivisionDataflowNode::Dividend' has a wrong offset!"); \ +static_assert(offsetof(FDivisionDataflowNode, Divisor) == 0x0000EC, "Member 'FDivisionDataflowNode::Divisor' has a wrong offset!"); \ +static_assert(offsetof(FDivisionDataflowNode, Remainder) == 0x0000F0, "Member 'FDivisionDataflowNode::Remainder' has a wrong offset!"); \ +static_assert(offsetof(FDivisionDataflowNode, ReturnValue) == 0x0000F4, "Member 'FDivisionDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSafeReciprocalDataflowNode \ +static_assert(alignof(FSafeReciprocalDataflowNode) == 0x000008, "Wrong alignment on FSafeReciprocalDataflowNode"); \ +static_assert(sizeof(FSafeReciprocalDataflowNode) == 0x0000F0, "Wrong size on FSafeReciprocalDataflowNode"); \ +static_assert(offsetof(FSafeReciprocalDataflowNode, float_0) == 0x0000E8, "Member 'FSafeReciprocalDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FSafeReciprocalDataflowNode, ReturnValue) == 0x0000EC, "Member 'FSafeReciprocalDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSquareDataflowNode \ +static_assert(alignof(FSquareDataflowNode) == 0x000008, "Wrong alignment on FSquareDataflowNode"); \ +static_assert(sizeof(FSquareDataflowNode) == 0x0000F0, "Wrong size on FSquareDataflowNode"); \ +static_assert(offsetof(FSquareDataflowNode, float_0) == 0x0000E8, "Member 'FSquareDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FSquareDataflowNode, ReturnValue) == 0x0000EC, "Member 'FSquareDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSquareRootDataflowNode \ +static_assert(alignof(FSquareRootDataflowNode) == 0x000008, "Wrong alignment on FSquareRootDataflowNode"); \ +static_assert(sizeof(FSquareRootDataflowNode) == 0x0000F0, "Wrong size on FSquareRootDataflowNode"); \ +static_assert(offsetof(FSquareRootDataflowNode, float_0) == 0x0000E8, "Member 'FSquareRootDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FSquareRootDataflowNode, ReturnValue) == 0x0000EC, "Member 'FSquareRootDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInverseSqrtDataflowNode \ +static_assert(alignof(FInverseSqrtDataflowNode) == 0x000008, "Wrong alignment on FInverseSqrtDataflowNode"); \ +static_assert(sizeof(FInverseSqrtDataflowNode) == 0x0000F0, "Wrong size on FInverseSqrtDataflowNode"); \ +static_assert(offsetof(FInverseSqrtDataflowNode, float_0) == 0x0000E8, "Member 'FInverseSqrtDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FInverseSqrtDataflowNode, ReturnValue) == 0x0000EC, "Member 'FInverseSqrtDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCubeDataflowNode \ +static_assert(alignof(FCubeDataflowNode) == 0x000008, "Wrong alignment on FCubeDataflowNode"); \ +static_assert(sizeof(FCubeDataflowNode) == 0x0000F0, "Wrong size on FCubeDataflowNode"); \ +static_assert(offsetof(FCubeDataflowNode, float_0) == 0x0000E8, "Member 'FCubeDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FCubeDataflowNode, ReturnValue) == 0x0000EC, "Member 'FCubeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNegateDataflowNode \ +static_assert(alignof(FNegateDataflowNode) == 0x000008, "Wrong alignment on FNegateDataflowNode"); \ +static_assert(sizeof(FNegateDataflowNode) == 0x0000F0, "Wrong size on FNegateDataflowNode"); \ +static_assert(offsetof(FNegateDataflowNode, float_0) == 0x0000E8, "Member 'FNegateDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FNegateDataflowNode, ReturnValue) == 0x0000EC, "Member 'FNegateDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAbsDataflowNode \ +static_assert(alignof(FAbsDataflowNode) == 0x000008, "Wrong alignment on FAbsDataflowNode"); \ +static_assert(sizeof(FAbsDataflowNode) == 0x0000F0, "Wrong size on FAbsDataflowNode"); \ +static_assert(offsetof(FAbsDataflowNode, float_0) == 0x0000E8, "Member 'FAbsDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FAbsDataflowNode, ReturnValue) == 0x0000EC, "Member 'FAbsDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFloorDataflowNode \ +static_assert(alignof(FFloorDataflowNode) == 0x000008, "Wrong alignment on FFloorDataflowNode"); \ +static_assert(sizeof(FFloorDataflowNode) == 0x0000F0, "Wrong size on FFloorDataflowNode"); \ +static_assert(offsetof(FFloorDataflowNode, float_0) == 0x0000E8, "Member 'FFloorDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFloorDataflowNode, ReturnValue) == 0x0000EC, "Member 'FFloorDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCeilDataflowNode \ +static_assert(alignof(FCeilDataflowNode) == 0x000008, "Wrong alignment on FCeilDataflowNode"); \ +static_assert(sizeof(FCeilDataflowNode) == 0x0000F0, "Wrong size on FCeilDataflowNode"); \ +static_assert(offsetof(FCeilDataflowNode, float_0) == 0x0000E8, "Member 'FCeilDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FCeilDataflowNode, ReturnValue) == 0x0000EC, "Member 'FCeilDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRoundDataflowNode \ +static_assert(alignof(FRoundDataflowNode) == 0x000008, "Wrong alignment on FRoundDataflowNode"); \ +static_assert(sizeof(FRoundDataflowNode) == 0x0000F0, "Wrong size on FRoundDataflowNode"); \ +static_assert(offsetof(FRoundDataflowNode, float_0) == 0x0000E8, "Member 'FRoundDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FRoundDataflowNode, ReturnValue) == 0x0000EC, "Member 'FRoundDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTruncDataflowNode \ +static_assert(alignof(FTruncDataflowNode) == 0x000008, "Wrong alignment on FTruncDataflowNode"); \ +static_assert(sizeof(FTruncDataflowNode) == 0x0000F0, "Wrong size on FTruncDataflowNode"); \ +static_assert(offsetof(FTruncDataflowNode, float_0) == 0x0000E8, "Member 'FTruncDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FTruncDataflowNode, ReturnValue) == 0x0000EC, "Member 'FTruncDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFracDataflowNode \ +static_assert(alignof(FFracDataflowNode) == 0x000008, "Wrong alignment on FFracDataflowNode"); \ +static_assert(sizeof(FFracDataflowNode) == 0x0000F0, "Wrong size on FFracDataflowNode"); \ +static_assert(offsetof(FFracDataflowNode, float_0) == 0x0000E8, "Member 'FFracDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFracDataflowNode, ReturnValue) == 0x0000EC, "Member 'FFracDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMinDataflowNode \ +static_assert(alignof(FMinDataflowNode) == 0x000008, "Wrong alignment on FMinDataflowNode"); \ +static_assert(sizeof(FMinDataflowNode) == 0x0000F8, "Wrong size on FMinDataflowNode"); \ +static_assert(offsetof(FMinDataflowNode, FloatA) == 0x0000E8, "Member 'FMinDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FMinDataflowNode, FloatB) == 0x0000EC, "Member 'FMinDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FMinDataflowNode, ReturnValue) == 0x0000F0, "Member 'FMinDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMaxDataflowNode \ +static_assert(alignof(FMaxDataflowNode) == 0x000008, "Wrong alignment on FMaxDataflowNode"); \ +static_assert(sizeof(FMaxDataflowNode) == 0x0000F8, "Wrong size on FMaxDataflowNode"); \ +static_assert(offsetof(FMaxDataflowNode, FloatA) == 0x0000E8, "Member 'FMaxDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FMaxDataflowNode, FloatB) == 0x0000EC, "Member 'FMaxDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FMaxDataflowNode, ReturnValue) == 0x0000F0, "Member 'FMaxDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMin3DataflowNode \ +static_assert(alignof(FMin3DataflowNode) == 0x000008, "Wrong alignment on FMin3DataflowNode"); \ +static_assert(sizeof(FMin3DataflowNode) == 0x0000F8, "Wrong size on FMin3DataflowNode"); \ +static_assert(offsetof(FMin3DataflowNode, FloatA) == 0x0000E8, "Member 'FMin3DataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FMin3DataflowNode, FloatB) == 0x0000EC, "Member 'FMin3DataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FMin3DataflowNode, FloatC) == 0x0000F0, "Member 'FMin3DataflowNode::FloatC' has a wrong offset!"); \ +static_assert(offsetof(FMin3DataflowNode, ReturnValue) == 0x0000F4, "Member 'FMin3DataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMax3DataflowNode \ +static_assert(alignof(FMax3DataflowNode) == 0x000008, "Wrong alignment on FMax3DataflowNode"); \ +static_assert(sizeof(FMax3DataflowNode) == 0x0000F8, "Wrong size on FMax3DataflowNode"); \ +static_assert(offsetof(FMax3DataflowNode, FloatA) == 0x0000E8, "Member 'FMax3DataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FMax3DataflowNode, FloatB) == 0x0000EC, "Member 'FMax3DataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FMax3DataflowNode, FloatC) == 0x0000F0, "Member 'FMax3DataflowNode::FloatC' has a wrong offset!"); \ +static_assert(offsetof(FMax3DataflowNode, ReturnValue) == 0x0000F4, "Member 'FMax3DataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSignDataflowNode \ +static_assert(alignof(FSignDataflowNode) == 0x000008, "Wrong alignment on FSignDataflowNode"); \ +static_assert(sizeof(FSignDataflowNode) == 0x0000F0, "Wrong size on FSignDataflowNode"); \ +static_assert(offsetof(FSignDataflowNode, float_0) == 0x0000E8, "Member 'FSignDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FSignDataflowNode, ReturnValue) == 0x0000EC, "Member 'FSignDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FClampDataflowNode \ +static_assert(alignof(FClampDataflowNode) == 0x000008, "Wrong alignment on FClampDataflowNode"); \ +static_assert(sizeof(FClampDataflowNode) == 0x0000F8, "Wrong size on FClampDataflowNode"); \ +static_assert(offsetof(FClampDataflowNode, float_0) == 0x0000E8, "Member 'FClampDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FClampDataflowNode, Min) == 0x0000EC, "Member 'FClampDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FClampDataflowNode, Max) == 0x0000F0, "Member 'FClampDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FClampDataflowNode, ReturnValue) == 0x0000F4, "Member 'FClampDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FFitDataflowNode \ +static_assert(alignof(FFitDataflowNode) == 0x000008, "Wrong alignment on FFitDataflowNode"); \ +static_assert(sizeof(FFitDataflowNode) == 0x000100, "Wrong size on FFitDataflowNode"); \ +static_assert(offsetof(FFitDataflowNode, float_0) == 0x0000E8, "Member 'FFitDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FFitDataflowNode, OldMin) == 0x0000EC, "Member 'FFitDataflowNode::OldMin' has a wrong offset!"); \ +static_assert(offsetof(FFitDataflowNode, OldMax) == 0x0000F0, "Member 'FFitDataflowNode::OldMax' has a wrong offset!"); \ +static_assert(offsetof(FFitDataflowNode, NewMin) == 0x0000F4, "Member 'FFitDataflowNode::NewMin' has a wrong offset!"); \ +static_assert(offsetof(FFitDataflowNode, NewMax) == 0x0000F8, "Member 'FFitDataflowNode::NewMax' has a wrong offset!"); \ +static_assert(offsetof(FFitDataflowNode, ReturnValue) == 0x0000FC, "Member 'FFitDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEFitDataflowNode \ +static_assert(alignof(FEFitDataflowNode) == 0x000008, "Wrong alignment on FEFitDataflowNode"); \ +static_assert(sizeof(FEFitDataflowNode) == 0x000100, "Wrong size on FEFitDataflowNode"); \ +static_assert(offsetof(FEFitDataflowNode, float_0) == 0x0000E8, "Member 'FEFitDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FEFitDataflowNode, OldMin) == 0x0000EC, "Member 'FEFitDataflowNode::OldMin' has a wrong offset!"); \ +static_assert(offsetof(FEFitDataflowNode, OldMax) == 0x0000F0, "Member 'FEFitDataflowNode::OldMax' has a wrong offset!"); \ +static_assert(offsetof(FEFitDataflowNode, NewMin) == 0x0000F4, "Member 'FEFitDataflowNode::NewMin' has a wrong offset!"); \ +static_assert(offsetof(FEFitDataflowNode, NewMax) == 0x0000F8, "Member 'FEFitDataflowNode::NewMax' has a wrong offset!"); \ +static_assert(offsetof(FEFitDataflowNode, ReturnValue) == 0x0000FC, "Member 'FEFitDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPowDataflowNode \ +static_assert(alignof(FPowDataflowNode) == 0x000008, "Wrong alignment on FPowDataflowNode"); \ +static_assert(sizeof(FPowDataflowNode) == 0x0000F8, "Wrong size on FPowDataflowNode"); \ +static_assert(offsetof(FPowDataflowNode, base) == 0x0000E8, "Member 'FPowDataflowNode::base' has a wrong offset!"); \ +static_assert(offsetof(FPowDataflowNode, Exp) == 0x0000EC, "Member 'FPowDataflowNode::Exp' has a wrong offset!"); \ +static_assert(offsetof(FPowDataflowNode, ReturnValue) == 0x0000F0, "Member 'FPowDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLogeDataflowNode \ +static_assert(alignof(FLogeDataflowNode) == 0x000008, "Wrong alignment on FLogeDataflowNode"); \ +static_assert(sizeof(FLogeDataflowNode) == 0x0000F0, "Wrong size on FLogeDataflowNode"); \ +static_assert(offsetof(FLogeDataflowNode, A) == 0x0000E8, "Member 'FLogeDataflowNode::A' has a wrong offset!"); \ +static_assert(offsetof(FLogeDataflowNode, ReturnValue) == 0x0000EC, "Member 'FLogeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWrapDataflowNode \ +static_assert(alignof(FWrapDataflowNode) == 0x000008, "Wrong alignment on FWrapDataflowNode"); \ +static_assert(sizeof(FWrapDataflowNode) == 0x0000F8, "Wrong size on FWrapDataflowNode"); \ +static_assert(offsetof(FWrapDataflowNode, float_0) == 0x0000E8, "Member 'FWrapDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FWrapDataflowNode, Min) == 0x0000EC, "Member 'FWrapDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FWrapDataflowNode, Max) == 0x0000F0, "Member 'FWrapDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FWrapDataflowNode, ReturnValue) == 0x0000F4, "Member 'FWrapDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpDataflowNode \ +static_assert(alignof(FExpDataflowNode) == 0x000008, "Wrong alignment on FExpDataflowNode"); \ +static_assert(sizeof(FExpDataflowNode) == 0x0000F0, "Wrong size on FExpDataflowNode"); \ +static_assert(offsetof(FExpDataflowNode, float_0) == 0x0000E8, "Member 'FExpDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FExpDataflowNode, ReturnValue) == 0x0000EC, "Member 'FExpDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSinDataflowNode \ +static_assert(alignof(FSinDataflowNode) == 0x000008, "Wrong alignment on FSinDataflowNode"); \ +static_assert(sizeof(FSinDataflowNode) == 0x0000F0, "Wrong size on FSinDataflowNode"); \ +static_assert(offsetof(FSinDataflowNode, float_0) == 0x0000E8, "Member 'FSinDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FSinDataflowNode, ReturnValue) == 0x0000EC, "Member 'FSinDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCosDataflowNode \ +static_assert(alignof(FCosDataflowNode) == 0x000008, "Wrong alignment on FCosDataflowNode"); \ +static_assert(sizeof(FCosDataflowNode) == 0x0000F0, "Wrong size on FCosDataflowNode"); \ +static_assert(offsetof(FCosDataflowNode, float_0) == 0x0000E8, "Member 'FCosDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FCosDataflowNode, ReturnValue) == 0x0000EC, "Member 'FCosDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTanDataflowNode \ +static_assert(alignof(FTanDataflowNode) == 0x000008, "Wrong alignment on FTanDataflowNode"); \ +static_assert(sizeof(FTanDataflowNode) == 0x0000F0, "Wrong size on FTanDataflowNode"); \ +static_assert(offsetof(FTanDataflowNode, float_0) == 0x0000E8, "Member 'FTanDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FTanDataflowNode, ReturnValue) == 0x0000EC, "Member 'FTanDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FArcTan2DataflowNode \ +static_assert(alignof(FArcTan2DataflowNode) == 0x000008, "Wrong alignment on FArcTan2DataflowNode"); \ +static_assert(sizeof(FArcTan2DataflowNode) == 0x0000F8, "Wrong size on FArcTan2DataflowNode"); \ +static_assert(offsetof(FArcTan2DataflowNode, Y) == 0x0000E8, "Member 'FArcTan2DataflowNode::Y' has a wrong offset!"); \ +static_assert(offsetof(FArcTan2DataflowNode, X) == 0x0000EC, "Member 'FArcTan2DataflowNode::X' has a wrong offset!"); \ +static_assert(offsetof(FArcTan2DataflowNode, ReturnValue) == 0x0000F0, "Member 'FArcTan2DataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FNormalizeToRangeDataflowNode \ +static_assert(alignof(FNormalizeToRangeDataflowNode) == 0x000008, "Wrong alignment on FNormalizeToRangeDataflowNode"); \ +static_assert(sizeof(FNormalizeToRangeDataflowNode) == 0x0000F8, "Wrong size on FNormalizeToRangeDataflowNode"); \ +static_assert(offsetof(FNormalizeToRangeDataflowNode, float_0) == 0x0000E8, "Member 'FNormalizeToRangeDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FNormalizeToRangeDataflowNode, RangeMin) == 0x0000EC, "Member 'FNormalizeToRangeDataflowNode::RangeMin' has a wrong offset!"); \ +static_assert(offsetof(FNormalizeToRangeDataflowNode, RangeMax) == 0x0000F0, "Member 'FNormalizeToRangeDataflowNode::RangeMax' has a wrong offset!"); \ +static_assert(offsetof(FNormalizeToRangeDataflowNode, ReturnValue) == 0x0000F4, "Member 'FNormalizeToRangeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FScaleVectorDataflowNode \ +static_assert(alignof(FScaleVectorDataflowNode) == 0x000008, "Wrong alignment on FScaleVectorDataflowNode"); \ +static_assert(sizeof(FScaleVectorDataflowNode) == 0x000120, "Wrong size on FScaleVectorDataflowNode"); \ +static_assert(offsetof(FScaleVectorDataflowNode, Vector) == 0x0000E8, "Member 'FScaleVectorDataflowNode::Vector' has a wrong offset!"); \ +static_assert(offsetof(FScaleVectorDataflowNode, Scale) == 0x000100, "Member 'FScaleVectorDataflowNode::Scale' has a wrong offset!"); \ +static_assert(offsetof(FScaleVectorDataflowNode, ScaledVector) == 0x000108, "Member 'FScaleVectorDataflowNode::ScaledVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCrossProductDataflowNode \ +static_assert(alignof(FCrossProductDataflowNode) == 0x000008, "Wrong alignment on FCrossProductDataflowNode"); \ +static_assert(sizeof(FCrossProductDataflowNode) == 0x000130, "Wrong size on FCrossProductDataflowNode"); \ +static_assert(offsetof(FCrossProductDataflowNode, VectorA) == 0x0000E8, "Member 'FCrossProductDataflowNode::VectorA' has a wrong offset!"); \ +static_assert(offsetof(FCrossProductDataflowNode, VectorB) == 0x000100, "Member 'FCrossProductDataflowNode::VectorB' has a wrong offset!"); \ +static_assert(offsetof(FCrossProductDataflowNode, ReturnValue) == 0x000118, "Member 'FCrossProductDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLengthDataflowNode \ +static_assert(alignof(FLengthDataflowNode) == 0x000008, "Wrong alignment on FLengthDataflowNode"); \ +static_assert(sizeof(FLengthDataflowNode) == 0x000108, "Wrong size on FLengthDataflowNode"); \ +static_assert(offsetof(FLengthDataflowNode, Vector) == 0x0000E8, "Member 'FLengthDataflowNode::Vector' has a wrong offset!"); \ +static_assert(offsetof(FLengthDataflowNode, ReturnValue) == 0x000100, "Member 'FLengthDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FIsNearlyZeroDataflowNode \ +static_assert(alignof(FIsNearlyZeroDataflowNode) == 0x000008, "Wrong alignment on FIsNearlyZeroDataflowNode"); \ +static_assert(sizeof(FIsNearlyZeroDataflowNode) == 0x0000F0, "Wrong size on FIsNearlyZeroDataflowNode"); \ +static_assert(offsetof(FIsNearlyZeroDataflowNode, float_0) == 0x0000E8, "Member 'FIsNearlyZeroDataflowNode::float_0' has a wrong offset!"); \ +static_assert(offsetof(FIsNearlyZeroDataflowNode, ReturnValue) == 0x0000EC, "Member 'FIsNearlyZeroDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomFloatInRangeDataflowNode \ +static_assert(alignof(FRandomFloatInRangeDataflowNode) == 0x000008, "Wrong alignment on FRandomFloatInRangeDataflowNode"); \ +static_assert(sizeof(FRandomFloatInRangeDataflowNode) == 0x000100, "Wrong size on FRandomFloatInRangeDataflowNode"); \ +static_assert(offsetof(FRandomFloatInRangeDataflowNode, bDeterministic) == 0x0000E8, "Member 'FRandomFloatInRangeDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatInRangeDataflowNode, RandomSeed) == 0x0000EC, "Member 'FRandomFloatInRangeDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatInRangeDataflowNode, Min) == 0x0000F0, "Member 'FRandomFloatInRangeDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatInRangeDataflowNode, Max) == 0x0000F4, "Member 'FRandomFloatInRangeDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FRandomFloatInRangeDataflowNode, ReturnValue) == 0x0000F8, "Member 'FRandomFloatInRangeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRandomUnitVectorInConeDataflowNode \ +static_assert(alignof(FRandomUnitVectorInConeDataflowNode) == 0x000008, "Wrong alignment on FRandomUnitVectorInConeDataflowNode"); \ +static_assert(sizeof(FRandomUnitVectorInConeDataflowNode) == 0x000128, "Wrong size on FRandomUnitVectorInConeDataflowNode"); \ +static_assert(offsetof(FRandomUnitVectorInConeDataflowNode, bDeterministic) == 0x0000E8, "Member 'FRandomUnitVectorInConeDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorInConeDataflowNode, RandomSeed) == 0x0000EC, "Member 'FRandomUnitVectorInConeDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorInConeDataflowNode, ConeDirection) == 0x0000F0, "Member 'FRandomUnitVectorInConeDataflowNode::ConeDirection' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorInConeDataflowNode, ConeHalfAngle) == 0x000108, "Member 'FRandomUnitVectorInConeDataflowNode::ConeHalfAngle' has a wrong offset!"); \ +static_assert(offsetof(FRandomUnitVectorInConeDataflowNode, ReturnValue) == 0x000110, "Member 'FRandomUnitVectorInConeDataflowNode::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FDegreesToRadiansDataflowNode \ +static_assert(alignof(FDegreesToRadiansDataflowNode) == 0x000008, "Wrong alignment on FDegreesToRadiansDataflowNode"); \ +static_assert(sizeof(FDegreesToRadiansDataflowNode) == 0x0000F0, "Wrong size on FDegreesToRadiansDataflowNode"); \ +static_assert(offsetof(FDegreesToRadiansDataflowNode, Degrees) == 0x0000E8, "Member 'FDegreesToRadiansDataflowNode::Degrees' has a wrong offset!"); \ +static_assert(offsetof(FDegreesToRadiansDataflowNode, Radians) == 0x0000EC, "Member 'FDegreesToRadiansDataflowNode::Radians' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPointsToMeshDataflowNode \ +static_assert(alignof(FPointsToMeshDataflowNode) == 0x000008, "Wrong alignment on FPointsToMeshDataflowNode"); \ +static_assert(sizeof(FPointsToMeshDataflowNode) == 0x000108, "Wrong size on FPointsToMeshDataflowNode"); \ +static_assert(offsetof(FPointsToMeshDataflowNode, Points) == 0x0000E8, "Member 'FPointsToMeshDataflowNode::Points' has a wrong offset!"); \ +static_assert(offsetof(FPointsToMeshDataflowNode, Mesh) == 0x0000F8, "Member 'FPointsToMeshDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FPointsToMeshDataflowNode, TriangleCount) == 0x000100, "Member 'FPointsToMeshDataflowNode::TriangleCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshInfoDataflowNode \ +static_assert(alignof(FMeshInfoDataflowNode) == 0x000008, "Wrong alignment on FMeshInfoDataflowNode"); \ +static_assert(sizeof(FMeshInfoDataflowNode) == 0x000100, "Wrong size on FMeshInfoDataflowNode"); \ +static_assert(offsetof(FMeshInfoDataflowNode, Mesh) == 0x0000E8, "Member 'FMeshInfoDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FMeshInfoDataflowNode, InfoString) == 0x0000F0, "Member 'FMeshInfoDataflowNode::InfoString' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionToMeshDataflowNode \ +static_assert(alignof(FCollectionToMeshDataflowNode) == 0x000008, "Wrong alignment on FCollectionToMeshDataflowNode"); \ +static_assert(sizeof(FCollectionToMeshDataflowNode) == 0x0001A8, "Wrong size on FCollectionToMeshDataflowNode"); \ +static_assert(offsetof(FCollectionToMeshDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionToMeshDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionToMeshDataflowNode, bCenterPivot) == 0x000198, "Member 'FCollectionToMeshDataflowNode::bCenterPivot' has a wrong offset!"); \ +static_assert(offsetof(FCollectionToMeshDataflowNode, Mesh) == 0x0001A0, "Member 'FCollectionToMeshDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStaticMeshToMeshDataflowNode \ +static_assert(alignof(FStaticMeshToMeshDataflowNode) == 0x000008, "Wrong alignment on FStaticMeshToMeshDataflowNode"); \ +static_assert(sizeof(FStaticMeshToMeshDataflowNode) == 0x000100, "Wrong size on FStaticMeshToMeshDataflowNode"); \ +static_assert(offsetof(FStaticMeshToMeshDataflowNode, StaticMesh) == 0x0000E8, "Member 'FStaticMeshToMeshDataflowNode::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshToMeshDataflowNode, bUseHiRes) == 0x0000F0, "Member 'FStaticMeshToMeshDataflowNode::bUseHiRes' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshToMeshDataflowNode, LODLevel) == 0x0000F4, "Member 'FStaticMeshToMeshDataflowNode::LODLevel' has a wrong offset!"); \ +static_assert(offsetof(FStaticMeshToMeshDataflowNode, Mesh) == 0x0000F8, "Member 'FStaticMeshToMeshDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshAppendDataflowNode \ +static_assert(alignof(FMeshAppendDataflowNode) == 0x000008, "Wrong alignment on FMeshAppendDataflowNode"); \ +static_assert(sizeof(FMeshAppendDataflowNode) == 0x000100, "Wrong size on FMeshAppendDataflowNode"); \ +static_assert(offsetof(FMeshAppendDataflowNode, Mesh1) == 0x0000E8, "Member 'FMeshAppendDataflowNode::Mesh1' has a wrong offset!"); \ +static_assert(offsetof(FMeshAppendDataflowNode, Mesh2) == 0x0000F0, "Member 'FMeshAppendDataflowNode::Mesh2' has a wrong offset!"); \ +static_assert(offsetof(FMeshAppendDataflowNode, Mesh) == 0x0000F8, "Member 'FMeshAppendDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshBooleanDataflowNode \ +static_assert(alignof(FMeshBooleanDataflowNode) == 0x000008, "Wrong alignment on FMeshBooleanDataflowNode"); \ +static_assert(sizeof(FMeshBooleanDataflowNode) == 0x000108, "Wrong size on FMeshBooleanDataflowNode"); \ +static_assert(offsetof(FMeshBooleanDataflowNode, Operation) == 0x0000E8, "Member 'FMeshBooleanDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FMeshBooleanDataflowNode, Mesh1) == 0x0000F0, "Member 'FMeshBooleanDataflowNode::Mesh1' has a wrong offset!"); \ +static_assert(offsetof(FMeshBooleanDataflowNode, Mesh2) == 0x0000F8, "Member 'FMeshBooleanDataflowNode::Mesh2' has a wrong offset!"); \ +static_assert(offsetof(FMeshBooleanDataflowNode, Mesh) == 0x000100, "Member 'FMeshBooleanDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMeshCopyToPointsDataflowNode \ +static_assert(alignof(FMeshCopyToPointsDataflowNode) == 0x000008, "Wrong alignment on FMeshCopyToPointsDataflowNode"); \ +static_assert(sizeof(FMeshCopyToPointsDataflowNode) == 0x000110, "Wrong size on FMeshCopyToPointsDataflowNode"); \ +static_assert(offsetof(FMeshCopyToPointsDataflowNode, Points) == 0x0000E8, "Member 'FMeshCopyToPointsDataflowNode::Points' has a wrong offset!"); \ +static_assert(offsetof(FMeshCopyToPointsDataflowNode, MeshToCopy) == 0x0000F8, "Member 'FMeshCopyToPointsDataflowNode::MeshToCopy' has a wrong offset!"); \ +static_assert(offsetof(FMeshCopyToPointsDataflowNode, Scale) == 0x000100, "Member 'FMeshCopyToPointsDataflowNode::Scale' has a wrong offset!"); \ +static_assert(offsetof(FMeshCopyToPointsDataflowNode, Mesh) == 0x000108, "Member 'FMeshCopyToPointsDataflowNode::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetCollectionFromAssetDataflowNode \ +static_assert(alignof(FGetCollectionFromAssetDataflowNode) == 0x000008, "Wrong alignment on FGetCollectionFromAssetDataflowNode"); \ +static_assert(sizeof(FGetCollectionFromAssetDataflowNode) == 0x0001A0, "Wrong size on FGetCollectionFromAssetDataflowNode"); \ +static_assert(offsetof(FGetCollectionFromAssetDataflowNode, CollectionAsset) == 0x0000E8, "Member 'FGetCollectionFromAssetDataflowNode::CollectionAsset' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionFromAssetDataflowNode, Collection) == 0x0000F0, "Member 'FGetCollectionFromAssetDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAppendCollectionAssetsDataflowNode \ +static_assert(alignof(FAppendCollectionAssetsDataflowNode) == 0x000008, "Wrong alignment on FAppendCollectionAssetsDataflowNode"); \ +static_assert(sizeof(FAppendCollectionAssetsDataflowNode) == 0x000268, "Wrong size on FAppendCollectionAssetsDataflowNode"); \ +static_assert(offsetof(FAppendCollectionAssetsDataflowNode, Collection1) == 0x0000E8, "Member 'FAppendCollectionAssetsDataflowNode::Collection1' has a wrong offset!"); \ +static_assert(offsetof(FAppendCollectionAssetsDataflowNode, Collection2) == 0x000198, "Member 'FAppendCollectionAssetsDataflowNode::Collection2' has a wrong offset!"); \ +static_assert(offsetof(FAppendCollectionAssetsDataflowNode, GeometryGroupGuidsOut1) == 0x000248, "Member 'FAppendCollectionAssetsDataflowNode::GeometryGroupGuidsOut1' has a wrong offset!"); \ +static_assert(offsetof(FAppendCollectionAssetsDataflowNode, GeometryGroupGuidsOut2) == 0x000258, "Member 'FAppendCollectionAssetsDataflowNode::GeometryGroupGuidsOut2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPrintStringDataflowNode \ +static_assert(alignof(FPrintStringDataflowNode) == 0x000008, "Wrong alignment on FPrintStringDataflowNode"); \ +static_assert(sizeof(FPrintStringDataflowNode) == 0x000108, "Wrong size on FPrintStringDataflowNode"); \ +static_assert(offsetof(FPrintStringDataflowNode, bPrintToScreen) == 0x0000E8, "Member 'FPrintStringDataflowNode::bPrintToScreen' has a wrong offset!"); \ +static_assert(offsetof(FPrintStringDataflowNode, bPrintToLog) == 0x0000E9, "Member 'FPrintStringDataflowNode::bPrintToLog' has a wrong offset!"); \ +static_assert(offsetof(FPrintStringDataflowNode, Color) == 0x0000EC, "Member 'FPrintStringDataflowNode::Color' has a wrong offset!"); \ +static_assert(offsetof(FPrintStringDataflowNode, Duration) == 0x0000F0, "Member 'FPrintStringDataflowNode::Duration' has a wrong offset!"); \ +static_assert(offsetof(FPrintStringDataflowNode, String) == 0x0000F8, "Member 'FPrintStringDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBoundingBoxDataflowNode \ +static_assert(alignof(FBoundingBoxDataflowNode) == 0x000008, "Wrong alignment on FBoundingBoxDataflowNode"); \ +static_assert(sizeof(FBoundingBoxDataflowNode) == 0x0001D0, "Wrong size on FBoundingBoxDataflowNode"); \ +static_assert(offsetof(FBoundingBoxDataflowNode, Collection) == 0x0000E8, "Member 'FBoundingBoxDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FBoundingBoxDataflowNode, BoundingBox) == 0x000198, "Member 'FBoundingBoxDataflowNode::BoundingBox' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FExpandBoundingBoxDataflowNode \ +static_assert(alignof(FExpandBoundingBoxDataflowNode) == 0x000008, "Wrong alignment on FExpandBoundingBoxDataflowNode"); \ +static_assert(sizeof(FExpandBoundingBoxDataflowNode) == 0x000188, "Wrong size on FExpandBoundingBoxDataflowNode"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, BoundingBox) == 0x0000E8, "Member 'FExpandBoundingBoxDataflowNode::BoundingBox' has a wrong offset!"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, Min) == 0x000120, "Member 'FExpandBoundingBoxDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, Max) == 0x000138, "Member 'FExpandBoundingBoxDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, Center) == 0x000150, "Member 'FExpandBoundingBoxDataflowNode::Center' has a wrong offset!"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, HalfExtents) == 0x000168, "Member 'FExpandBoundingBoxDataflowNode::HalfExtents' has a wrong offset!"); \ +static_assert(offsetof(FExpandBoundingBoxDataflowNode, Volume) == 0x000180, "Member 'FExpandBoundingBoxDataflowNode::Volume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStringAppendDataflowNode \ +static_assert(alignof(FStringAppendDataflowNode) == 0x000008, "Wrong alignment on FStringAppendDataflowNode"); \ +static_assert(sizeof(FStringAppendDataflowNode) == 0x000118, "Wrong size on FStringAppendDataflowNode"); \ +static_assert(offsetof(FStringAppendDataflowNode, String1) == 0x0000E8, "Member 'FStringAppendDataflowNode::String1' has a wrong offset!"); \ +static_assert(offsetof(FStringAppendDataflowNode, String2) == 0x0000F8, "Member 'FStringAppendDataflowNode::String2' has a wrong offset!"); \ +static_assert(offsetof(FStringAppendDataflowNode, String) == 0x000108, "Member 'FStringAppendDataflowNode::String' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHashVectorDataflowNode \ +static_assert(alignof(FHashVectorDataflowNode) == 0x000008, "Wrong alignment on FHashVectorDataflowNode"); \ +static_assert(sizeof(FHashVectorDataflowNode) == 0x000108, "Wrong size on FHashVectorDataflowNode"); \ +static_assert(offsetof(FHashVectorDataflowNode, Vector) == 0x0000E8, "Member 'FHashVectorDataflowNode::Vector' has a wrong offset!"); \ +static_assert(offsetof(FHashVectorDataflowNode, Hash) == 0x000100, "Member 'FHashVectorDataflowNode::Hash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetRootIndexFromCollectionDataflowNode \ +static_assert(alignof(FGetRootIndexFromCollectionDataflowNode) == 0x000008, "Wrong alignment on FGetRootIndexFromCollectionDataflowNode"); \ +static_assert(sizeof(FGetRootIndexFromCollectionDataflowNode) == 0x0001A0, "Wrong size on FGetRootIndexFromCollectionDataflowNode"); \ +static_assert(offsetof(FGetRootIndexFromCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FGetRootIndexFromCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetRootIndexFromCollectionDataflowNode, RootIndex) == 0x000198, "Member 'FGetRootIndexFromCollectionDataflowNode::RootIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformCollectionDataflowNode \ +static_assert(alignof(FTransformCollectionDataflowNode) == 0x000008, "Wrong alignment on FTransformCollectionDataflowNode"); \ +static_assert(sizeof(FTransformCollectionDataflowNode) == 0x000228, "Wrong size on FTransformCollectionDataflowNode"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, Collection) == 0x0000E8, "Member 'FTransformCollectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, Translate) == 0x000198, "Member 'FTransformCollectionDataflowNode::Translate' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, RotationOrder) == 0x0001B0, "Member 'FTransformCollectionDataflowNode::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, Rotate) == 0x0001B8, "Member 'FTransformCollectionDataflowNode::Rotate' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, Scale) == 0x0001D0, "Member 'FTransformCollectionDataflowNode::Scale' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, UniformScale) == 0x0001E8, "Member 'FTransformCollectionDataflowNode::UniformScale' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, RotatePivot) == 0x0001F0, "Member 'FTransformCollectionDataflowNode::RotatePivot' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, ScalePivot) == 0x000208, "Member 'FTransformCollectionDataflowNode::ScalePivot' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionDataflowNode, bInvertTransformation) == 0x000220, "Member 'FTransformCollectionDataflowNode::bInvertTransformation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformMeshDataflowNode \ +static_assert(alignof(FTransformMeshDataflowNode) == 0x000008, "Wrong alignment on FTransformMeshDataflowNode"); \ +static_assert(sizeof(FTransformMeshDataflowNode) == 0x000180, "Wrong size on FTransformMeshDataflowNode"); \ +static_assert(offsetof(FTransformMeshDataflowNode, Mesh) == 0x0000E8, "Member 'FTransformMeshDataflowNode::Mesh' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, Translate) == 0x0000F0, "Member 'FTransformMeshDataflowNode::Translate' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, RotationOrder) == 0x000108, "Member 'FTransformMeshDataflowNode::RotationOrder' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, Rotate) == 0x000110, "Member 'FTransformMeshDataflowNode::Rotate' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, Scale) == 0x000128, "Member 'FTransformMeshDataflowNode::Scale' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, UniformScale) == 0x000140, "Member 'FTransformMeshDataflowNode::UniformScale' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, RotatePivot) == 0x000148, "Member 'FTransformMeshDataflowNode::RotatePivot' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, ScalePivot) == 0x000160, "Member 'FTransformMeshDataflowNode::ScalePivot' has a wrong offset!"); \ +static_assert(offsetof(FTransformMeshDataflowNode, bInvertTransformation) == 0x000178, "Member 'FTransformMeshDataflowNode::bInvertTransformation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCompareFloatDataflowNode \ +static_assert(alignof(FCompareFloatDataflowNode) == 0x000008, "Wrong alignment on FCompareFloatDataflowNode"); \ +static_assert(sizeof(FCompareFloatDataflowNode) == 0x0000F8, "Wrong size on FCompareFloatDataflowNode"); \ +static_assert(offsetof(FCompareFloatDataflowNode, Operation) == 0x0000E8, "Member 'FCompareFloatDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FCompareFloatDataflowNode, FloatA) == 0x0000EC, "Member 'FCompareFloatDataflowNode::FloatA' has a wrong offset!"); \ +static_assert(offsetof(FCompareFloatDataflowNode, FloatB) == 0x0000F0, "Member 'FCompareFloatDataflowNode::FloatB' has a wrong offset!"); \ +static_assert(offsetof(FCompareFloatDataflowNode, Result) == 0x0000F4, "Member 'FCompareFloatDataflowNode::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FBranchCollectionDataflowNode \ +static_assert(alignof(FBranchCollectionDataflowNode) == 0x000008, "Wrong alignment on FBranchCollectionDataflowNode"); \ +static_assert(sizeof(FBranchCollectionDataflowNode) == 0x000300, "Wrong size on FBranchCollectionDataflowNode"); \ +static_assert(offsetof(FBranchCollectionDataflowNode, TrueCollection) == 0x0000E8, "Member 'FBranchCollectionDataflowNode::TrueCollection' has a wrong offset!"); \ +static_assert(offsetof(FBranchCollectionDataflowNode, FalseCollection) == 0x000198, "Member 'FBranchCollectionDataflowNode::FalseCollection' has a wrong offset!"); \ +static_assert(offsetof(FBranchCollectionDataflowNode, bCondition) == 0x000248, "Member 'FBranchCollectionDataflowNode::bCondition' has a wrong offset!"); \ +static_assert(offsetof(FBranchCollectionDataflowNode, ChosenCollection) == 0x000250, "Member 'FBranchCollectionDataflowNode::ChosenCollection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FRemoveOnBreakDataflowNode \ +static_assert(alignof(FRemoveOnBreakDataflowNode) == 0x000008, "Wrong alignment on FRemoveOnBreakDataflowNode"); \ +static_assert(sizeof(FRemoveOnBreakDataflowNode) == 0x0001D0, "Wrong size on FRemoveOnBreakDataflowNode"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, Collection) == 0x0000E8, "Member 'FRemoveOnBreakDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, TransformSelection) == 0x000198, "Member 'FRemoveOnBreakDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, bEnabledRemoval) == 0x0001B8, "Member 'FRemoveOnBreakDataflowNode::bEnabledRemoval' has a wrong offset!"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, PostBreakTimer) == 0x0001BC, "Member 'FRemoveOnBreakDataflowNode::PostBreakTimer' has a wrong offset!"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, RemovalTimer) == 0x0001C4, "Member 'FRemoveOnBreakDataflowNode::RemovalTimer' has a wrong offset!"); \ +static_assert(offsetof(FRemoveOnBreakDataflowNode, bClusterCrumbling) == 0x0001CC, "Member 'FRemoveOnBreakDataflowNode::bClusterCrumbling' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FProximityDataflowNode \ +static_assert(alignof(FProximityDataflowNode) == 0x000008, "Wrong alignment on FProximityDataflowNode"); \ +static_assert(sizeof(FProximityDataflowNode) == 0x0001A8, "Wrong size on FProximityDataflowNode"); \ +static_assert(offsetof(FProximityDataflowNode, ProximityMethod) == 0x0000E8, "Member 'FProximityDataflowNode::ProximityMethod' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, DistanceThreshold) == 0x0000EC, "Member 'FProximityDataflowNode::DistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, ContactThreshold) == 0x0000F0, "Member 'FProximityDataflowNode::ContactThreshold' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, FilterContactMethod) == 0x0000F4, "Member 'FProximityDataflowNode::FilterContactMethod' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, bUseAsConnectionGraph) == 0x0000F5, "Member 'FProximityDataflowNode::bUseAsConnectionGraph' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, ContactAreaMethod) == 0x0000F6, "Member 'FProximityDataflowNode::ContactAreaMethod' has a wrong offset!"); \ +static_assert(offsetof(FProximityDataflowNode, Collection) == 0x0000F8, "Member 'FProximityDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAddCustomCollectionAttributeDataflowNode \ +static_assert(alignof(FAddCustomCollectionAttributeDataflowNode) == 0x000008, "Wrong alignment on FAddCustomCollectionAttributeDataflowNode"); \ +static_assert(sizeof(FAddCustomCollectionAttributeDataflowNode) == 0x0001C8, "Wrong size on FAddCustomCollectionAttributeDataflowNode"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, Collection) == 0x0000E8, "Member 'FAddCustomCollectionAttributeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, GroupName) == 0x000198, "Member 'FAddCustomCollectionAttributeDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, CustomGroupName) == 0x0001A0, "Member 'FAddCustomCollectionAttributeDataflowNode::CustomGroupName' has a wrong offset!"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, AttrName) == 0x0001B0, "Member 'FAddCustomCollectionAttributeDataflowNode::AttrName' has a wrong offset!"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, CustomAttributeType) == 0x0001C0, "Member 'FAddCustomCollectionAttributeDataflowNode::CustomAttributeType' has a wrong offset!"); \ +static_assert(offsetof(FAddCustomCollectionAttributeDataflowNode, NumElements) == 0x0001C4, "Member 'FAddCustomCollectionAttributeDataflowNode::NumElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetNumElementsInCollectionGroupDataflowNode \ +static_assert(alignof(FGetNumElementsInCollectionGroupDataflowNode) == 0x000008, "Wrong alignment on FGetNumElementsInCollectionGroupDataflowNode"); \ +static_assert(sizeof(FGetNumElementsInCollectionGroupDataflowNode) == 0x0001B8, "Wrong size on FGetNumElementsInCollectionGroupDataflowNode"); \ +static_assert(offsetof(FGetNumElementsInCollectionGroupDataflowNode, Collection) == 0x0000E8, "Member 'FGetNumElementsInCollectionGroupDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetNumElementsInCollectionGroupDataflowNode, GroupName) == 0x000198, "Member 'FGetNumElementsInCollectionGroupDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FGetNumElementsInCollectionGroupDataflowNode, CustomGroupName) == 0x0001A0, "Member 'FGetNumElementsInCollectionGroupDataflowNode::CustomGroupName' has a wrong offset!"); \ +static_assert(offsetof(FGetNumElementsInCollectionGroupDataflowNode, NumElements) == 0x0001B0, "Member 'FGetNumElementsInCollectionGroupDataflowNode::NumElements' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetCollectionAttributeDataTypedDataflowNode \ +static_assert(alignof(FGetCollectionAttributeDataTypedDataflowNode) == 0x000008, "Wrong alignment on FGetCollectionAttributeDataTypedDataflowNode"); \ +static_assert(sizeof(FGetCollectionAttributeDataTypedDataflowNode) == 0x000230, "Wrong size on FGetCollectionAttributeDataTypedDataflowNode"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, Collection) == 0x0000E8, "Member 'FGetCollectionAttributeDataTypedDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, GroupName) == 0x000198, "Member 'FGetCollectionAttributeDataTypedDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, CustomGroupName) == 0x0001A0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::CustomGroupName' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, AttrName) == 0x0001B0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::AttrName' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, BoolAttributeData) == 0x0001C0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::BoolAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, FloatAttributeData) == 0x0001D0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::FloatAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, DoubleAttributeData) == 0x0001E0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::DoubleAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, Int32AttributeData) == 0x0001F0, "Member 'FGetCollectionAttributeDataTypedDataflowNode::Int32AttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, StringAttributeData) == 0x000200, "Member 'FGetCollectionAttributeDataTypedDataflowNode::StringAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, Vector3fAttributeData) == 0x000210, "Member 'FGetCollectionAttributeDataTypedDataflowNode::Vector3fAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FGetCollectionAttributeDataTypedDataflowNode, Vector3dAttributeData) == 0x000220, "Member 'FGetCollectionAttributeDataTypedDataflowNode::Vector3dAttributeData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetCollectionAttributeDataTypedDataflowNode \ +static_assert(alignof(FSetCollectionAttributeDataTypedDataflowNode) == 0x000008, "Wrong alignment on FSetCollectionAttributeDataTypedDataflowNode"); \ +static_assert(sizeof(FSetCollectionAttributeDataTypedDataflowNode) == 0x000230, "Wrong size on FSetCollectionAttributeDataTypedDataflowNode"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, Collection) == 0x0000E8, "Member 'FSetCollectionAttributeDataTypedDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, GroupName) == 0x000198, "Member 'FSetCollectionAttributeDataTypedDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, CustomGroupName) == 0x0001A0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::CustomGroupName' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, AttrName) == 0x0001B0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::AttrName' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, BoolAttributeData) == 0x0001C0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::BoolAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, FloatAttributeData) == 0x0001D0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::FloatAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, DoubleAttributeData) == 0x0001E0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::DoubleAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, Int32AttributeData) == 0x0001F0, "Member 'FSetCollectionAttributeDataTypedDataflowNode::Int32AttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, StringAttributeData) == 0x000200, "Member 'FSetCollectionAttributeDataTypedDataflowNode::StringAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, Vector3fAttributeData) == 0x000210, "Member 'FSetCollectionAttributeDataTypedDataflowNode::Vector3fAttributeData' has a wrong offset!"); \ +static_assert(offsetof(FSetCollectionAttributeDataTypedDataflowNode, Vector3dAttributeData) == 0x000220, "Member 'FSetCollectionAttributeDataTypedDataflowNode::Vector3dAttributeData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetVertexColorInCollectionFromVertexSelectionDataflowNode \ +static_assert(alignof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode) == 0x000008, "Wrong alignment on FSetVertexColorInCollectionFromVertexSelectionDataflowNode"); \ +static_assert(sizeof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode) == 0x0001D8, "Wrong size on FSetVertexColorInCollectionFromVertexSelectionDataflowNode"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode, Collection) == 0x0000E8, "Member 'FSetVertexColorInCollectionFromVertexSelectionDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode, VertexSelection) == 0x000198, "Member 'FSetVertexColorInCollectionFromVertexSelectionDataflowNode::VertexSelection' has a wrong offset!"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode, SelectedColor) == 0x0001B8, "Member 'FSetVertexColorInCollectionFromVertexSelectionDataflowNode::SelectedColor' has a wrong offset!"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromVertexSelectionDataflowNode, NonSelectedColor) == 0x0001C8, "Member 'FSetVertexColorInCollectionFromVertexSelectionDataflowNode::NonSelectedColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSetVertexColorInCollectionFromFloatArrayDataflowNode \ +static_assert(alignof(FSetVertexColorInCollectionFromFloatArrayDataflowNode) == 0x000008, "Wrong alignment on FSetVertexColorInCollectionFromFloatArrayDataflowNode"); \ +static_assert(sizeof(FSetVertexColorInCollectionFromFloatArrayDataflowNode) == 0x0001B0, "Wrong size on FSetVertexColorInCollectionFromFloatArrayDataflowNode"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromFloatArrayDataflowNode, Collection) == 0x0000E8, "Member 'FSetVertexColorInCollectionFromFloatArrayDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromFloatArrayDataflowNode, FloatArray) == 0x000198, "Member 'FSetVertexColorInCollectionFromFloatArrayDataflowNode::FloatArray' has a wrong offset!"); \ +static_assert(offsetof(FSetVertexColorInCollectionFromFloatArrayDataflowNode, Scale) == 0x0001A8, "Member 'FSetVertexColorInCollectionFromFloatArrayDataflowNode::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMultiplyTransformDataflowNode \ +static_assert(alignof(FMultiplyTransformDataflowNode) == 0x000010, "Wrong alignment on FMultiplyTransformDataflowNode"); \ +static_assert(sizeof(FMultiplyTransformDataflowNode) == 0x000210, "Wrong size on FMultiplyTransformDataflowNode"); \ +static_assert(offsetof(FMultiplyTransformDataflowNode, InLeftTransform) == 0x0000F0, "Member 'FMultiplyTransformDataflowNode::InLeftTransform' has a wrong offset!"); \ +static_assert(offsetof(FMultiplyTransformDataflowNode, InRightTransform) == 0x000150, "Member 'FMultiplyTransformDataflowNode::InRightTransform' has a wrong offset!"); \ +static_assert(offsetof(FMultiplyTransformDataflowNode, OutTransform) == 0x0001B0, "Member 'FMultiplyTransformDataflowNode::OutTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInvertTransformDataflowNode \ +static_assert(alignof(FInvertTransformDataflowNode) == 0x000010, "Wrong alignment on FInvertTransformDataflowNode"); \ +static_assert(sizeof(FInvertTransformDataflowNode) == 0x0001B0, "Wrong size on FInvertTransformDataflowNode"); \ +static_assert(offsetof(FInvertTransformDataflowNode, InTransform) == 0x0000F0, "Member 'FInvertTransformDataflowNode::InTransform' has a wrong offset!"); \ +static_assert(offsetof(FInvertTransformDataflowNode, OutTransform) == 0x000150, "Member 'FInvertTransformDataflowNode::OutTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetIntOverrideFromAssetDataflowNode \ +static_assert(alignof(FGetIntOverrideFromAssetDataflowNode) == 0x000008, "Wrong alignment on FGetIntOverrideFromAssetDataflowNode"); \ +static_assert(sizeof(FGetIntOverrideFromAssetDataflowNode) == 0x000110, "Wrong size on FGetIntOverrideFromAssetDataflowNode"); \ +static_assert(offsetof(FGetIntOverrideFromAssetDataflowNode, Int) == 0x000108, "Member 'FGetIntOverrideFromAssetDataflowNode::Int' has a wrong offset!"); \ +static_assert(offsetof(FGetIntOverrideFromAssetDataflowNode, IntDefault) == 0x00010C, "Member 'FGetIntOverrideFromAssetDataflowNode::IntDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FGetStringOverrideFromAssetDataflowNode \ +static_assert(alignof(FGetStringOverrideFromAssetDataflowNode) == 0x000008, "Wrong alignment on FGetStringOverrideFromAssetDataflowNode"); \ +static_assert(sizeof(FGetStringOverrideFromAssetDataflowNode) == 0x000128, "Wrong size on FGetStringOverrideFromAssetDataflowNode"); \ +static_assert(offsetof(FGetStringOverrideFromAssetDataflowNode, String) == 0x000108, "Member 'FGetStringOverrideFromAssetDataflowNode::String' has a wrong offset!"); \ +static_assert(offsetof(FGetStringOverrideFromAssetDataflowNode, StringDefault) == 0x000118, "Member 'FGetStringOverrideFromAssetDataflowNode::StringDefault' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionSetOperationDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionSetOperationDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionSetOperationDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionSetOperationDataflowNode) == 0x000150, "Wrong size on FCollectionTransformSelectionSetOperationDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionSetOperationDataflowNode, Operation) == 0x0000E8, "Member 'FCollectionTransformSelectionSetOperationDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionSetOperationDataflowNode, TransformSelectionA) == 0x0000F0, "Member 'FCollectionTransformSelectionSetOperationDataflowNode::TransformSelectionA' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionSetOperationDataflowNode, TransformSelectionB) == 0x000110, "Member 'FCollectionTransformSelectionSetOperationDataflowNode::TransformSelectionB' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionSetOperationDataflowNode, TransformSelection) == 0x000130, "Member 'FCollectionTransformSelectionSetOperationDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionNoneDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionNoneDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionNoneDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionNoneDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionNoneDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionNoneDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionNoneDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionNoneDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionTransformSelectionNoneDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionRandomDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionRandomDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionRandomDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionRandomDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionRandomDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionRandomDataflowNode, bDeterministic) == 0x0000E8, "Member 'FCollectionTransformSelectionRandomDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionRandomDataflowNode, RandomSeed) == 0x0000EC, "Member 'FCollectionTransformSelectionRandomDataflowNode::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionRandomDataflowNode, RandomThreshold) == 0x0000F0, "Member 'FCollectionTransformSelectionRandomDataflowNode::RandomThreshold' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionRandomDataflowNode, Collection) == 0x0000F8, "Member 'FCollectionTransformSelectionRandomDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionRandomDataflowNode, TransformSelection) == 0x0001A8, "Member 'FCollectionTransformSelectionRandomDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionCustomDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionCustomDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionCustomDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionCustomDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionCustomDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionCustomDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionCustomDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionCustomDataflowNode, BoneIndicies) == 0x000198, "Member 'FCollectionTransformSelectionCustomDataflowNode::BoneIndicies' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionCustomDataflowNode, TransformSelection) == 0x0001A8, "Member 'FCollectionTransformSelectionCustomDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionParentDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionParentDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionParentDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionParentDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionParentDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionParentDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionParentDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionParentDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionParentDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionChildrenDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionChildrenDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionChildrenDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionChildrenDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionChildrenDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionChildrenDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionChildrenDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionChildrenDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionChildrenDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionLevelDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionLevelDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionLevelDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionLevelDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionLevelDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionLevelDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionLevelDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionLevelDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionLevelDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionContactDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionContactDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionContactDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionContactDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionContactDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionContactDataflowNode, TransformSelection) == 0x0000E8, "Member 'FCollectionTransformSelectionContactDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionContactDataflowNode, Collection) == 0x000108, "Member 'FCollectionTransformSelectionContactDataflowNode::Collection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionClusterDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionClusterDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionClusterDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionClusterDataflowNode) == 0x0001B8, "Wrong size on FCollectionTransformSelectionClusterDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionClusterDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionClusterDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionClusterDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionTransformSelectionClusterDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionBySizeDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionBySizeDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionBySizeDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionBySizeDataflowNode) == 0x0001C8, "Wrong size on FCollectionTransformSelectionBySizeDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionBySizeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, SizeMin) == 0x000198, "Member 'FCollectionTransformSelectionBySizeDataflowNode::SizeMin' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, SizeMax) == 0x00019C, "Member 'FCollectionTransformSelectionBySizeDataflowNode::SizeMax' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, RangeSetting) == 0x0001A0, "Member 'FCollectionTransformSelectionBySizeDataflowNode::RangeSetting' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, bInclusive) == 0x0001A1, "Member 'FCollectionTransformSelectionBySizeDataflowNode::bInclusive' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, bUseRelativeSize) == 0x0001A2, "Member 'FCollectionTransformSelectionBySizeDataflowNode::bUseRelativeSize' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionBySizeDataflowNode, TransformSelection) == 0x0001A8, "Member 'FCollectionTransformSelectionBySizeDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionInBoxDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionInBoxDataflowNode) == 0x000010, "Wrong alignment on FCollectionTransformSelectionInBoxDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionInBoxDataflowNode) == 0x000260, "Wrong size on FCollectionTransformSelectionInBoxDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionInBoxDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, Box) == 0x000198, "Member 'FCollectionTransformSelectionInBoxDataflowNode::Box' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, Transform) == 0x0001D0, "Member 'FCollectionTransformSelectionInBoxDataflowNode::Transform' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, Type) == 0x000230, "Member 'FCollectionTransformSelectionInBoxDataflowNode::Type' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, bAllVerticesMustContainedInBox) == 0x000231, "Member 'FCollectionTransformSelectionInBoxDataflowNode::bAllVerticesMustContainedInBox' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionInBoxDataflowNode, TransformSelection) == 0x000238, "Member 'FCollectionTransformSelectionInBoxDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionTransformSelectionByFloatAttrDataflowNode \ +static_assert(alignof(FCollectionTransformSelectionByFloatAttrDataflowNode) == 0x000008, "Wrong alignment on FCollectionTransformSelectionByFloatAttrDataflowNode"); \ +static_assert(sizeof(FCollectionTransformSelectionByFloatAttrDataflowNode) == 0x0001E8, "Wrong size on FCollectionTransformSelectionByFloatAttrDataflowNode"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, GroupName) == 0x000198, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, AttrName) == 0x0001A8, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::AttrName' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, Min) == 0x0001B8, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::Min' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, Max) == 0x0001BC, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::Max' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, RangeSetting) == 0x0001C0, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::RangeSetting' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, bInclusive) == 0x0001C1, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::bInclusive' has a wrong offset!"); \ +static_assert(offsetof(FCollectionTransformSelectionByFloatAttrDataflowNode, TransformSelection) == 0x0001C8, "Member 'FCollectionTransformSelectionByFloatAttrDataflowNode::TransformSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionVertexSelectionCustomDataflowNode \ +static_assert(alignof(FCollectionVertexSelectionCustomDataflowNode) == 0x000008, "Wrong alignment on FCollectionVertexSelectionCustomDataflowNode"); \ +static_assert(sizeof(FCollectionVertexSelectionCustomDataflowNode) == 0x0001C8, "Wrong size on FCollectionVertexSelectionCustomDataflowNode"); \ +static_assert(offsetof(FCollectionVertexSelectionCustomDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionVertexSelectionCustomDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionCustomDataflowNode, VertexIndicies) == 0x000198, "Member 'FCollectionVertexSelectionCustomDataflowNode::VertexIndicies' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionCustomDataflowNode, VertexSelection) == 0x0001A8, "Member 'FCollectionVertexSelectionCustomDataflowNode::VertexSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionSelectionConvertDataflowNode \ +static_assert(alignof(FCollectionSelectionConvertDataflowNode) == 0x000008, "Wrong alignment on FCollectionSelectionConvertDataflowNode"); \ +static_assert(sizeof(FCollectionSelectionConvertDataflowNode) == 0x000200, "Wrong size on FCollectionSelectionConvertDataflowNode"); \ +static_assert(offsetof(FCollectionSelectionConvertDataflowNode, Collection) == 0x0000E8, "Member 'FCollectionSelectionConvertDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionSelectionConvertDataflowNode, TransformSelection) == 0x000198, "Member 'FCollectionSelectionConvertDataflowNode::TransformSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionSelectionConvertDataflowNode, FaceSelection) == 0x0001B8, "Member 'FCollectionSelectionConvertDataflowNode::FaceSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionSelectionConvertDataflowNode, VertexSelection) == 0x0001D8, "Member 'FCollectionSelectionConvertDataflowNode::VertexSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionSelectionConvertDataflowNode, bAllElementsMustBeSelected) == 0x0001F8, "Member 'FCollectionSelectionConvertDataflowNode::bAllElementsMustBeSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionFaceSelectionInvertDataflowNode \ +static_assert(alignof(FCollectionFaceSelectionInvertDataflowNode) == 0x000008, "Wrong alignment on FCollectionFaceSelectionInvertDataflowNode"); \ +static_assert(sizeof(FCollectionFaceSelectionInvertDataflowNode) == 0x000108, "Wrong size on FCollectionFaceSelectionInvertDataflowNode"); \ +static_assert(offsetof(FCollectionFaceSelectionInvertDataflowNode, FaceSelection) == 0x0000E8, "Member 'FCollectionFaceSelectionInvertDataflowNode::FaceSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionVertexSelectionByPercentageDataflowNode \ +static_assert(alignof(FCollectionVertexSelectionByPercentageDataflowNode) == 0x000008, "Wrong alignment on FCollectionVertexSelectionByPercentageDataflowNode"); \ +static_assert(sizeof(FCollectionVertexSelectionByPercentageDataflowNode) == 0x000118, "Wrong size on FCollectionVertexSelectionByPercentageDataflowNode"); \ +static_assert(offsetof(FCollectionVertexSelectionByPercentageDataflowNode, VertexSelection) == 0x0000E8, "Member 'FCollectionVertexSelectionByPercentageDataflowNode::VertexSelection' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionByPercentageDataflowNode, Percentage) == 0x000108, "Member 'FCollectionVertexSelectionByPercentageDataflowNode::Percentage' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionByPercentageDataflowNode, bDeterministic) == 0x00010C, "Member 'FCollectionVertexSelectionByPercentageDataflowNode::bDeterministic' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionByPercentageDataflowNode, RandomSeed) == 0x000110, "Member 'FCollectionVertexSelectionByPercentageDataflowNode::RandomSeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FCollectionVertexSelectionSetOperationDataflowNode \ +static_assert(alignof(FCollectionVertexSelectionSetOperationDataflowNode) == 0x000008, "Wrong alignment on FCollectionVertexSelectionSetOperationDataflowNode"); \ +static_assert(sizeof(FCollectionVertexSelectionSetOperationDataflowNode) == 0x000150, "Wrong size on FCollectionVertexSelectionSetOperationDataflowNode"); \ +static_assert(offsetof(FCollectionVertexSelectionSetOperationDataflowNode, Operation) == 0x0000E8, "Member 'FCollectionVertexSelectionSetOperationDataflowNode::Operation' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionSetOperationDataflowNode, VertexSelectionA) == 0x0000F0, "Member 'FCollectionVertexSelectionSetOperationDataflowNode::VertexSelectionA' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionSetOperationDataflowNode, VertexSelectionB) == 0x000110, "Member 'FCollectionVertexSelectionSetOperationDataflowNode::VertexSelectionB' has a wrong offset!"); \ +static_assert(offsetof(FCollectionVertexSelectionSetOperationDataflowNode, VertexSelection) == 0x000130, "Member 'FCollectionVertexSelectionSetOperationDataflowNode::VertexSelection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FTransformCollectionAttributeDataflowNode \ +static_assert(alignof(FTransformCollectionAttributeDataflowNode) == 0x000010, "Wrong alignment on FTransformCollectionAttributeDataflowNode"); \ +static_assert(sizeof(FTransformCollectionAttributeDataflowNode) == 0x000280, "Wrong size on FTransformCollectionAttributeDataflowNode"); \ +static_assert(offsetof(FTransformCollectionAttributeDataflowNode, Collection) == 0x0000E8, "Member 'FTransformCollectionAttributeDataflowNode::Collection' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionAttributeDataflowNode, TransformIn) == 0x0001A0, "Member 'FTransformCollectionAttributeDataflowNode::TransformIn' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionAttributeDataflowNode, LocalTransform) == 0x000200, "Member 'FTransformCollectionAttributeDataflowNode::LocalTransform' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionAttributeDataflowNode, GroupName) == 0x000260, "Member 'FTransformCollectionAttributeDataflowNode::GroupName' has a wrong offset!"); \ +static_assert(offsetof(FTransformCollectionAttributeDataflowNode, AttributeName) == 0x000270, "Member 'FTransformCollectionAttributeDataflowNode::AttributeName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempText_C_ExecuteUbergraph_WBP_TempText \ +static_assert(alignof(WBP_TempText_C_ExecuteUbergraph_WBP_TempText) == 0x000004, "Wrong alignment on WBP_TempText_C_ExecuteUbergraph_WBP_TempText"); \ +static_assert(sizeof(WBP_TempText_C_ExecuteUbergraph_WBP_TempText) == 0x000004, "Wrong size on WBP_TempText_C_ExecuteUbergraph_WBP_TempText"); \ +static_assert(offsetof(WBP_TempText_C_ExecuteUbergraph_WBP_TempText, EntryPoint) == 0x000000, "Member 'WBP_TempText_C_ExecuteUbergraph_WBP_TempText::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempText_C_SetText \ +static_assert(alignof(WBP_TempText_C_SetText) == 0x000008, "Wrong alignment on WBP_TempText_C_SetText"); \ +static_assert(sizeof(WBP_TempText_C_SetText) == 0x0000B8, "Wrong size on WBP_TempText_C_SetText"); \ +static_assert(offsetof(WBP_TempText_C_SetText, TextBox) == 0x000000, "Member 'WBP_TempText_C_SetText::TextBox' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, Text_0) == 0x000008, "Member 'WBP_TempText_C_SetText::Text_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, SizeMod) == 0x000010, "Member 'WBP_TempText_C_SetText::SizeMod' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, Font) == 0x000018, "Member 'WBP_TempText_C_SetText::Font' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_GetProperty_ReturnValue) == 0x000070, "Member 'WBP_TempText_C_SetText::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_IsEmpty_ReturnValue) == 0x000080, "Member 'WBP_TempText_C_SetText::CallFunc_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_Conv_StringToText_ReturnValue) == 0x000088, "Member 'WBP_TempText_C_SetText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_GetProperty_ReturnValue_1) == 0x0000A0, "Member 'WBP_TempText_C_SetText::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_Add_IntInt_ReturnValue) == 0x0000A4, "Member 'WBP_TempText_C_SetText::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000A8, "Member 'WBP_TempText_C_SetText::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempText_C_SetText, K2Node_SetFieldsInStruct_Size_ImplicitCast) == 0x0000B0, "Member 'WBP_TempText_C_SetText::K2Node_SetFieldsInStruct_Size_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TempText_C \ +static_assert(alignof(UWBP_TempText_C) == 0x000008, "Wrong alignment on UWBP_TempText_C"); \ +static_assert(sizeof(UWBP_TempText_C) == 0x0002F8, "Wrong size on UWBP_TempText_C"); \ +static_assert(offsetof(UWBP_TempText_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_TempText_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempText_C, TextBlock) == 0x0002D0, "Member 'UWBP_TempText_C::TextBlock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempText_C, Title) == 0x0002D8, "Member 'UWBP_TempText_C::Title' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempText_C, TitleText) == 0x0002E0, "Member 'UWBP_TempText_C::TitleText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempText_C, Text) == 0x0002E8, "Member 'UWBP_TempText_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempText_C, Text_Size) == 0x0002F0, "Member 'UWBP_TempText_C::Text_Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeCurveKey \ +static_assert(alignof(FInterchangeCurveKey) == 0x000004, "Wrong alignment on FInterchangeCurveKey"); \ +static_assert(sizeof(FInterchangeCurveKey) == 0x00001C, "Wrong size on FInterchangeCurveKey"); \ +static_assert(offsetof(FInterchangeCurveKey, InterpMode) == 0x000000, "Member 'FInterchangeCurveKey::InterpMode' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, TangentMode) == 0x000001, "Member 'FInterchangeCurveKey::TangentMode' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, TangentWeightMode) == 0x000002, "Member 'FInterchangeCurveKey::TangentWeightMode' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, Time) == 0x000004, "Member 'FInterchangeCurveKey::Time' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, Value) == 0x000008, "Member 'FInterchangeCurveKey::Value' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, ArriveTangent) == 0x00000C, "Member 'FInterchangeCurveKey::ArriveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, ArriveTangentWeight) == 0x000010, "Member 'FInterchangeCurveKey::ArriveTangentWeight' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, LeaveTangent) == 0x000014, "Member 'FInterchangeCurveKey::LeaveTangent' has a wrong offset!"); \ +static_assert(offsetof(FInterchangeCurveKey, LeaveTangentWeight) == 0x000018, "Member 'FInterchangeCurveKey::LeaveTangentWeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeCurve \ +static_assert(alignof(FInterchangeCurve) == 0x000008, "Wrong alignment on FInterchangeCurve"); \ +static_assert(sizeof(FInterchangeCurve) == 0x000010, "Wrong size on FInterchangeCurve"); \ +static_assert(offsetof(FInterchangeCurve, Keys) == 0x000000, "Member 'FInterchangeCurve::Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FInterchangeStepCurve \ +static_assert(alignof(FInterchangeStepCurve) == 0x000008, "Wrong alignment on FInterchangeStepCurve"); \ +static_assert(sizeof(FInterchangeStepCurve) == 0x000070, "Wrong size on FInterchangeStepCurve"); \ +static_assert(offsetof(FInterchangeStepCurve, KeyTimes) == 0x000000, "Member 'FInterchangeStepCurve::KeyTimes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies \ +static_assert(alignof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies) == 0x000008, "Wrong alignment on KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies"); \ +static_assert(sizeof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies) == 0x000060, "Wrong size on KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, EntryPoint) == 0x000000, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, Temp_int_Array_Index_Variable) == 0x000010, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000020, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, K2Node_Event_InAutomata) == 0x000030, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, K2Node_Event_InState) == 0x000038, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, Temp_int_Loop_Counter_Variable) == 0x000040, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_Array_Get_Item) == 0x000048, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_Add_IntInt_ReturnValue) == 0x000054, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies, CallFunc_Less_IntInt_ReturnValue) == 0x00005C, "Member 'KillAllEnemies_C_ExecuteUbergraph_KillAllEnemies::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllEnemies_C_ReceiveExecute \ +static_assert(alignof(KillAllEnemies_C_ReceiveExecute) == 0x000008, "Wrong alignment on KillAllEnemies_C_ReceiveExecute"); \ +static_assert(sizeof(KillAllEnemies_C_ReceiveExecute) == 0x000010, "Wrong size on KillAllEnemies_C_ReceiveExecute"); \ +static_assert(offsetof(KillAllEnemies_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'KillAllEnemies_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemies_C_ReceiveExecute, InState) == 0x000008, "Member 'KillAllEnemies_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKillAllEnemies_C \ +static_assert(alignof(UKillAllEnemies_C) == 0x000008, "Wrong alignment on UKillAllEnemies_C"); \ +static_assert(sizeof(UKillAllEnemies_C) == 0x0000A0, "Wrong size on UKillAllEnemies_C"); \ +static_assert(offsetof(UKillAllEnemies_C, UberGraphFrame) == 0x000088, "Member 'UKillAllEnemies_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UKillAllEnemies_C, Cache) == 0x000090, "Member 'UKillAllEnemies_C::Cache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_TKPullFatigue_C \ +static_assert(alignof(UGE_TKPullFatigue_C) == 0x000008, "Wrong alignment on UGE_TKPullFatigue_C"); \ +static_assert(sizeof(UGE_TKPullFatigue_C) == 0x000A70, "Wrong size on UGE_TKPullFatigue_C"); \ + +#define DUMPER7_ASSERTS_FEngineServicePing \ +static_assert(alignof(FEngineServicePing) == 0x000001, "Wrong alignment on FEngineServicePing"); \ +static_assert(sizeof(FEngineServicePing) == 0x000001, "Wrong size on FEngineServicePing"); \ + +#define DUMPER7_ASSERTS_FEngineServicePong \ +static_assert(alignof(FEngineServicePong) == 0x000008, "Wrong alignment on FEngineServicePong"); \ +static_assert(sizeof(FEngineServicePong) == 0x000050, "Wrong size on FEngineServicePong"); \ +static_assert(offsetof(FEngineServicePong, CurrentLevel) == 0x000000, "Member 'FEngineServicePong::CurrentLevel' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, EngineVersion) == 0x000010, "Member 'FEngineServicePong::EngineVersion' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, HasBegunPlay) == 0x000014, "Member 'FEngineServicePong::HasBegunPlay' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, InstanceId) == 0x000018, "Member 'FEngineServicePong::InstanceId' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, InstanceType) == 0x000028, "Member 'FEngineServicePong::InstanceType' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, SessionId) == 0x000038, "Member 'FEngineServicePong::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FEngineServicePong, WorldTimeSeconds) == 0x000048, "Member 'FEngineServicePong::WorldTimeSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineServiceAuthDeny \ +static_assert(alignof(FEngineServiceAuthDeny) == 0x000008, "Wrong alignment on FEngineServiceAuthDeny"); \ +static_assert(sizeof(FEngineServiceAuthDeny) == 0x000020, "Wrong size on FEngineServiceAuthDeny"); \ +static_assert(offsetof(FEngineServiceAuthDeny, UserName) == 0x000000, "Member 'FEngineServiceAuthDeny::UserName' has a wrong offset!"); \ +static_assert(offsetof(FEngineServiceAuthDeny, UserToDeny) == 0x000010, "Member 'FEngineServiceAuthDeny::UserToDeny' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineServiceAuthGrant \ +static_assert(alignof(FEngineServiceAuthGrant) == 0x000008, "Wrong alignment on FEngineServiceAuthGrant"); \ +static_assert(sizeof(FEngineServiceAuthGrant) == 0x000020, "Wrong size on FEngineServiceAuthGrant"); \ +static_assert(offsetof(FEngineServiceAuthGrant, UserName) == 0x000000, "Member 'FEngineServiceAuthGrant::UserName' has a wrong offset!"); \ +static_assert(offsetof(FEngineServiceAuthGrant, UserToGrant) == 0x000010, "Member 'FEngineServiceAuthGrant::UserToGrant' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineServiceExecuteCommand \ +static_assert(alignof(FEngineServiceExecuteCommand) == 0x000008, "Wrong alignment on FEngineServiceExecuteCommand"); \ +static_assert(sizeof(FEngineServiceExecuteCommand) == 0x000020, "Wrong size on FEngineServiceExecuteCommand"); \ +static_assert(offsetof(FEngineServiceExecuteCommand, Command) == 0x000000, "Member 'FEngineServiceExecuteCommand::Command' has a wrong offset!"); \ +static_assert(offsetof(FEngineServiceExecuteCommand, UserName) == 0x000010, "Member 'FEngineServiceExecuteCommand::UserName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineServiceTerminate \ +static_assert(alignof(FEngineServiceTerminate) == 0x000008, "Wrong alignment on FEngineServiceTerminate"); \ +static_assert(sizeof(FEngineServiceTerminate) == 0x000010, "Wrong size on FEngineServiceTerminate"); \ +static_assert(offsetof(FEngineServiceTerminate, UserName) == 0x000000, "Member 'FEngineServiceTerminate::UserName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FEngineServiceNotification \ +static_assert(alignof(FEngineServiceNotification) == 0x000008, "Wrong alignment on FEngineServiceNotification"); \ +static_assert(sizeof(FEngineServiceNotification) == 0x000018, "Wrong size on FEngineServiceNotification"); \ +static_assert(offsetof(FEngineServiceNotification, Text) == 0x000000, "Member 'FEngineServiceNotification::Text' has a wrong offset!"); \ +static_assert(offsetof(FEngineServiceNotification, TimeSeconds) == 0x000010, "Member 'FEngineServiceNotification::TimeSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search \ +static_assert(alignof(GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search) == 0x000004, "Wrong alignment on GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search"); \ +static_assert(sizeof(GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search) == 0x000004, "Wrong size on GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search"); \ +static_assert(offsetof(GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Police_Search_C_ExecuteUbergraph_GA_Patrol_Action_Police_Search::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Police_Search_C \ +static_assert(alignof(UGA_Patrol_Action_Police_Search_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Police_Search_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Police_Search_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Police_Search_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Police_Search_C, UberGraphFrame_GA_Patrol_Action_Police_Search_C) == 0x000690, "Member 'UGA_Patrol_Action_Police_Search_C::UberGraphFrame_GA_Patrol_Action_Police_Search_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerNumericTestStruct \ +static_assert(alignof(FStructSerializerNumericTestStruct) == 0x000008, "Wrong alignment on FStructSerializerNumericTestStruct"); \ +static_assert(sizeof(FStructSerializerNumericTestStruct) == 0x000030, "Wrong size on FStructSerializerNumericTestStruct"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, Int8) == 0x000000, "Member 'FStructSerializerNumericTestStruct::Int8' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, Int16) == 0x000002, "Member 'FStructSerializerNumericTestStruct::Int16' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, int32_0) == 0x000004, "Member 'FStructSerializerNumericTestStruct::int32_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, Int64) == 0x000008, "Member 'FStructSerializerNumericTestStruct::Int64' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, uint8_0) == 0x000010, "Member 'FStructSerializerNumericTestStruct::uint8_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, UInt16) == 0x000012, "Member 'FStructSerializerNumericTestStruct::UInt16' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, uint32_0) == 0x000014, "Member 'FStructSerializerNumericTestStruct::uint32_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, UInt64) == 0x000018, "Member 'FStructSerializerNumericTestStruct::UInt64' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, float_0) == 0x000020, "Member 'FStructSerializerNumericTestStruct::float_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNumericTestStruct, Double) == 0x000028, "Member 'FStructSerializerNumericTestStruct::Double' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerBooleanTestStruct \ +static_assert(alignof(FStructSerializerBooleanTestStruct) == 0x000001, "Wrong alignment on FStructSerializerBooleanTestStruct"); \ +static_assert(sizeof(FStructSerializerBooleanTestStruct) == 0x000003, "Wrong size on FStructSerializerBooleanTestStruct"); \ +static_assert(offsetof(FStructSerializerBooleanTestStruct, BoolFalse) == 0x000000, "Member 'FStructSerializerBooleanTestStruct::BoolFalse' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBooleanTestStruct, BoolTrue) == 0x000001, "Member 'FStructSerializerBooleanTestStruct::BoolTrue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerObjectTestStruct \ +static_assert(alignof(FStructSerializerObjectTestStruct) == 0x000008, "Wrong alignment on FStructSerializerObjectTestStruct"); \ +static_assert(sizeof(FStructSerializerObjectTestStruct) == 0x0000C0, "Wrong size on FStructSerializerObjectTestStruct"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, RawClass) == 0x000000, "Member 'FStructSerializerObjectTestStruct::RawClass' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, WrappedClass) == 0x000008, "Member 'FStructSerializerObjectTestStruct::WrappedClass' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, SubClass) == 0x000010, "Member 'FStructSerializerObjectTestStruct::SubClass' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, SoftClass) == 0x000018, "Member 'FStructSerializerObjectTestStruct::SoftClass' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, RawObject) == 0x000040, "Member 'FStructSerializerObjectTestStruct::RawObject' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, WrappedObject) == 0x000048, "Member 'FStructSerializerObjectTestStruct::WrappedObject' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, WeakObject) == 0x000050, "Member 'FStructSerializerObjectTestStruct::WeakObject' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, SoftObject) == 0x000058, "Member 'FStructSerializerObjectTestStruct::SoftObject' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, ClassPath) == 0x000080, "Member 'FStructSerializerObjectTestStruct::ClassPath' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerObjectTestStruct, ObjectPath) == 0x0000A0, "Member 'FStructSerializerObjectTestStruct::ObjectPath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerBuiltinTestStruct \ +static_assert(alignof(FStructSerializerBuiltinTestStruct) == 0x000010, "Wrong alignment on FStructSerializerBuiltinTestStruct"); \ +static_assert(sizeof(FStructSerializerBuiltinTestStruct) == 0x0000D0, "Wrong size on FStructSerializerBuiltinTestStruct"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Guid) == 0x000000, "Member 'FStructSerializerBuiltinTestStruct::Guid' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Name) == 0x000010, "Member 'FStructSerializerBuiltinTestStruct::Name' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, String) == 0x000018, "Member 'FStructSerializerBuiltinTestStruct::String' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Text) == 0x000028, "Member 'FStructSerializerBuiltinTestStruct::Text' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Vector) == 0x000040, "Member 'FStructSerializerBuiltinTestStruct::Vector' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Vector4) == 0x000060, "Member 'FStructSerializerBuiltinTestStruct::Vector4' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Rotator) == 0x000080, "Member 'FStructSerializerBuiltinTestStruct::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Quat) == 0x0000A0, "Member 'FStructSerializerBuiltinTestStruct::Quat' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerBuiltinTestStruct, Color) == 0x0000C0, "Member 'FStructSerializerBuiltinTestStruct::Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerLWCTypesTest \ +static_assert(alignof(FStructSerializerLWCTypesTest) == 0x000010, "Wrong alignment on FStructSerializerLWCTypesTest"); \ +static_assert(sizeof(FStructSerializerLWCTypesTest) == 0x000360, "Wrong size on FStructSerializerLWCTypesTest"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Vector) == 0x000000, "Member 'FStructSerializerLWCTypesTest::Vector' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Vector2D) == 0x000018, "Member 'FStructSerializerLWCTypesTest::Vector2D' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Vector4) == 0x000030, "Member 'FStructSerializerLWCTypesTest::Vector4' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Matrix) == 0x000050, "Member 'FStructSerializerLWCTypesTest::Matrix' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Plane) == 0x0000D0, "Member 'FStructSerializerLWCTypesTest::Plane' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Quat) == 0x0000F0, "Member 'FStructSerializerLWCTypesTest::Quat' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Rotator) == 0x000110, "Member 'FStructSerializerLWCTypesTest::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Transform) == 0x000130, "Member 'FStructSerializerLWCTypesTest::Transform' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Box) == 0x000190, "Member 'FStructSerializerLWCTypesTest::Box' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Box2D) == 0x0001C8, "Member 'FStructSerializerLWCTypesTest::Box2D' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, BoxSphereBounds) == 0x0001F0, "Member 'FStructSerializerLWCTypesTest::BoxSphereBounds' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, OrientedBox) == 0x000228, "Member 'FStructSerializerLWCTypesTest::OrientedBox' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, float_0) == 0x0002A0, "Member 'FStructSerializerLWCTypesTest::float_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, Double) == 0x0002A8, "Member 'FStructSerializerLWCTypesTest::Double' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, VectorArray) == 0x0002B0, "Member 'FStructSerializerLWCTypesTest::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, StrToVec) == 0x0002C0, "Member 'FStructSerializerLWCTypesTest::StrToVec' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerLWCTypesTest, VectorSet) == 0x000310, "Member 'FStructSerializerLWCTypesTest::VectorSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FOrientedBoxFloat \ +static_assert(alignof(FOrientedBoxFloat) == 0x000004, "Wrong alignment on FOrientedBoxFloat"); \ +static_assert(sizeof(FOrientedBoxFloat) == 0x00003C, "Wrong size on FOrientedBoxFloat"); \ +static_assert(offsetof(FOrientedBoxFloat, Center) == 0x000000, "Member 'FOrientedBoxFloat::Center' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, AxisX) == 0x00000C, "Member 'FOrientedBoxFloat::AxisX' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, AxisY) == 0x000018, "Member 'FOrientedBoxFloat::AxisY' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, AxisZ) == 0x000024, "Member 'FOrientedBoxFloat::AxisZ' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, ExtentX) == 0x000030, "Member 'FOrientedBoxFloat::ExtentX' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, ExtentY) == 0x000034, "Member 'FOrientedBoxFloat::ExtentY' has a wrong offset!"); \ +static_assert(offsetof(FOrientedBoxFloat, ExtentZ) == 0x000038, "Member 'FOrientedBoxFloat::ExtentZ' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerNonLWCTypesTest \ +static_assert(alignof(FStructSerializerNonLWCTypesTest) == 0x000010, "Wrong alignment on FStructSerializerNonLWCTypesTest"); \ +static_assert(sizeof(FStructSerializerNonLWCTypesTest) == 0x000220, "Wrong size on FStructSerializerNonLWCTypesTest"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Vector) == 0x000000, "Member 'FStructSerializerNonLWCTypesTest::Vector' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Vector2D) == 0x00000C, "Member 'FStructSerializerNonLWCTypesTest::Vector2D' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Vector4) == 0x000020, "Member 'FStructSerializerNonLWCTypesTest::Vector4' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Matrix) == 0x000030, "Member 'FStructSerializerNonLWCTypesTest::Matrix' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Plane) == 0x000070, "Member 'FStructSerializerNonLWCTypesTest::Plane' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Quat) == 0x000080, "Member 'FStructSerializerNonLWCTypesTest::Quat' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Rotator) == 0x000090, "Member 'FStructSerializerNonLWCTypesTest::Rotator' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Transform) == 0x0000A0, "Member 'FStructSerializerNonLWCTypesTest::Transform' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Box) == 0x0000D0, "Member 'FStructSerializerNonLWCTypesTest::Box' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Box2D) == 0x0000EC, "Member 'FStructSerializerNonLWCTypesTest::Box2D' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, BoxSphereBounds) == 0x000100, "Member 'FStructSerializerNonLWCTypesTest::BoxSphereBounds' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, OrientedBox) == 0x00011C, "Member 'FStructSerializerNonLWCTypesTest::OrientedBox' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, float_0) == 0x000158, "Member 'FStructSerializerNonLWCTypesTest::float_0' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, Double) == 0x000160, "Member 'FStructSerializerNonLWCTypesTest::Double' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, VectorArray) == 0x000168, "Member 'FStructSerializerNonLWCTypesTest::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, StrToVec) == 0x000178, "Member 'FStructSerializerNonLWCTypesTest::StrToVec' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerNonLWCTypesTest, VectorSet) == 0x0001C8, "Member 'FStructSerializerNonLWCTypesTest::VectorSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerByteArray \ +static_assert(alignof(FStructSerializerByteArray) == 0x000008, "Wrong alignment on FStructSerializerByteArray"); \ +static_assert(sizeof(FStructSerializerByteArray) == 0x000038, "Wrong size on FStructSerializerByteArray"); \ +static_assert(offsetof(FStructSerializerByteArray, Dummy1) == 0x000000, "Member 'FStructSerializerByteArray::Dummy1' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerByteArray, ByteArray) == 0x000008, "Member 'FStructSerializerByteArray::ByteArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerByteArray, Dummy2) == 0x000018, "Member 'FStructSerializerByteArray::Dummy2' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerByteArray, Int8Array) == 0x000020, "Member 'FStructSerializerByteArray::Int8Array' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerByteArray, Dummy3) == 0x000030, "Member 'FStructSerializerByteArray::Dummy3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerArrayTestStruct \ +static_assert(alignof(FStructSerializerArrayTestStruct) == 0x000008, "Wrong alignment on FStructSerializerArrayTestStruct"); \ +static_assert(sizeof(FStructSerializerArrayTestStruct) == 0x000060, "Wrong size on FStructSerializerArrayTestStruct"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, Int32Array) == 0x000000, "Member 'FStructSerializerArrayTestStruct::Int32Array' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, ByteArray) == 0x000010, "Member 'FStructSerializerArrayTestStruct::ByteArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, StaticSingleElement) == 0x000020, "Member 'FStructSerializerArrayTestStruct::StaticSingleElement' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, StaticInt32Array) == 0x000024, "Member 'FStructSerializerArrayTestStruct::StaticInt32Array' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, StaticFloatArray) == 0x000030, "Member 'FStructSerializerArrayTestStruct::StaticFloatArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, VectorArray) == 0x000040, "Member 'FStructSerializerArrayTestStruct::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerArrayTestStruct, StructArray) == 0x000050, "Member 'FStructSerializerArrayTestStruct::StructArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerMapTestStruct \ +static_assert(alignof(FStructSerializerMapTestStruct) == 0x000008, "Wrong alignment on FStructSerializerMapTestStruct"); \ +static_assert(sizeof(FStructSerializerMapTestStruct) == 0x000140, "Wrong size on FStructSerializerMapTestStruct"); \ +static_assert(offsetof(FStructSerializerMapTestStruct, IntToStr) == 0x000000, "Member 'FStructSerializerMapTestStruct::IntToStr' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerMapTestStruct, StrToStr) == 0x000050, "Member 'FStructSerializerMapTestStruct::StrToStr' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerMapTestStruct, StrToVec) == 0x0000A0, "Member 'FStructSerializerMapTestStruct::StrToVec' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerMapTestStruct, StrToStruct) == 0x0000F0, "Member 'FStructSerializerMapTestStruct::StrToStruct' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerSetTestStruct \ +static_assert(alignof(FStructSerializerSetTestStruct) == 0x000008, "Wrong alignment on FStructSerializerSetTestStruct"); \ +static_assert(sizeof(FStructSerializerSetTestStruct) == 0x000140, "Wrong size on FStructSerializerSetTestStruct"); \ +static_assert(offsetof(FStructSerializerSetTestStruct, StrSet) == 0x000000, "Member 'FStructSerializerSetTestStruct::StrSet' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerSetTestStruct, IntSet) == 0x000050, "Member 'FStructSerializerSetTestStruct::IntSet' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerSetTestStruct, NameSet) == 0x0000A0, "Member 'FStructSerializerSetTestStruct::NameSet' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerSetTestStruct, StructSet) == 0x0000F0, "Member 'FStructSerializerSetTestStruct::StructSet' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStructSerializerTestStruct \ +static_assert(alignof(FStructSerializerTestStruct) == 0x000010, "Wrong alignment on FStructSerializerTestStruct"); \ +static_assert(sizeof(FStructSerializerTestStruct) == 0x000810, "Wrong size on FStructSerializerTestStruct"); \ +static_assert(offsetof(FStructSerializerTestStruct, Numerics) == 0x000000, "Member 'FStructSerializerTestStruct::Numerics' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Booleans) == 0x000030, "Member 'FStructSerializerTestStruct::Booleans' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Objects) == 0x000038, "Member 'FStructSerializerTestStruct::Objects' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Builtins) == 0x000100, "Member 'FStructSerializerTestStruct::Builtins' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Arrays) == 0x0001D0, "Member 'FStructSerializerTestStruct::Arrays' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Maps) == 0x000230, "Member 'FStructSerializerTestStruct::Maps' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, Sets) == 0x000370, "Member 'FStructSerializerTestStruct::Sets' has a wrong offset!"); \ +static_assert(offsetof(FStructSerializerTestStruct, LWCTypes) == 0x0004B0, "Member 'FStructSerializerTestStruct::LWCTypes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSessionServicePing \ +static_assert(alignof(FSessionServicePing) == 0x000008, "Wrong alignment on FSessionServicePing"); \ +static_assert(sizeof(FSessionServicePing) == 0x000010, "Wrong size on FSessionServicePing"); \ +static_assert(offsetof(FSessionServicePing, UserName) == 0x000000, "Member 'FSessionServicePing::UserName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSessionServicePong \ +static_assert(alignof(FSessionServicePong) == 0x000008, "Wrong alignment on FSessionServicePong"); \ +static_assert(sizeof(FSessionServicePong) == 0x000090, "Wrong size on FSessionServicePong"); \ +static_assert(offsetof(FSessionServicePong, Authorized) == 0x000000, "Member 'FSessionServicePong::Authorized' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, BuildDate) == 0x000008, "Member 'FSessionServicePong::BuildDate' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, DeviceName) == 0x000018, "Member 'FSessionServicePong::DeviceName' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, InstanceId) == 0x000028, "Member 'FSessionServicePong::InstanceId' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, InstanceName) == 0x000038, "Member 'FSessionServicePong::InstanceName' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, PlatformName) == 0x000048, "Member 'FSessionServicePong::PlatformName' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, SessionId) == 0x000058, "Member 'FSessionServicePong::SessionId' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, SessionName) == 0x000068, "Member 'FSessionServicePong::SessionName' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, SessionOwner) == 0x000078, "Member 'FSessionServicePong::SessionOwner' has a wrong offset!"); \ +static_assert(offsetof(FSessionServicePong, Standalone) == 0x000088, "Member 'FSessionServicePong::Standalone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSessionServiceLog \ +static_assert(alignof(FSessionServiceLog) == 0x000008, "Wrong alignment on FSessionServiceLog"); \ +static_assert(sizeof(FSessionServiceLog) == 0x000038, "Wrong size on FSessionServiceLog"); \ +static_assert(offsetof(FSessionServiceLog, Category) == 0x000000, "Member 'FSessionServiceLog::Category' has a wrong offset!"); \ +static_assert(offsetof(FSessionServiceLog, Data) == 0x000008, "Member 'FSessionServiceLog::Data' has a wrong offset!"); \ +static_assert(offsetof(FSessionServiceLog, InstanceId) == 0x000018, "Member 'FSessionServiceLog::InstanceId' has a wrong offset!"); \ +static_assert(offsetof(FSessionServiceLog, TimeSeconds) == 0x000028, "Member 'FSessionServiceLog::TimeSeconds' has a wrong offset!"); \ +static_assert(offsetof(FSessionServiceLog, Verbosity) == 0x000030, "Member 'FSessionServiceLog::Verbosity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSessionServiceLogSubscribe \ +static_assert(alignof(FSessionServiceLogSubscribe) == 0x000001, "Wrong alignment on FSessionServiceLogSubscribe"); \ +static_assert(sizeof(FSessionServiceLogSubscribe) == 0x000001, "Wrong size on FSessionServiceLogSubscribe"); \ + +#define DUMPER7_ASSERTS_FSessionServiceLogUnsubscribe \ +static_assert(alignof(FSessionServiceLogUnsubscribe) == 0x000001, "Wrong alignment on FSessionServiceLogUnsubscribe"); \ +static_assert(sizeof(FSessionServiceLogUnsubscribe) == 0x000001, "Wrong size on FSessionServiceLogUnsubscribe"); \ + +#define DUMPER7_ASSERTS_UBP_ToggleActorVisibilityKeyframe_C \ +static_assert(alignof(UBP_ToggleActorVisibilityKeyframe_C) == 0x000008, "Wrong alignment on UBP_ToggleActorVisibilityKeyframe_C"); \ +static_assert(sizeof(UBP_ToggleActorVisibilityKeyframe_C) == 0x000038, "Wrong size on UBP_ToggleActorVisibilityKeyframe_C"); \ +static_assert(offsetof(UBP_ToggleActorVisibilityKeyframe_C, ActorVisibility) == 0x000030, "Member 'UBP_ToggleActorVisibilityKeyframe_C::ActorVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetCarouselNavigationButtonStyle \ +static_assert(alignof(FWidgetCarouselNavigationButtonStyle) == 0x000010, "Wrong alignment on FWidgetCarouselNavigationButtonStyle"); \ +static_assert(sizeof(FWidgetCarouselNavigationButtonStyle) == 0x0005A0, "Wrong size on FWidgetCarouselNavigationButtonStyle"); \ +static_assert(offsetof(FWidgetCarouselNavigationButtonStyle, InnerButtonStyle) == 0x000010, "Member 'FWidgetCarouselNavigationButtonStyle::InnerButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWidgetCarouselNavigationButtonStyle, NavigationButtonLeftImage) == 0x000400, "Member 'FWidgetCarouselNavigationButtonStyle::NavigationButtonLeftImage' has a wrong offset!"); \ +static_assert(offsetof(FWidgetCarouselNavigationButtonStyle, NavigationButtonRightImage) == 0x0004D0, "Member 'FWidgetCarouselNavigationButtonStyle::NavigationButtonRightImage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FWidgetCarouselNavigationBarStyle \ +static_assert(alignof(FWidgetCarouselNavigationBarStyle) == 0x000010, "Wrong alignment on FWidgetCarouselNavigationBarStyle"); \ +static_assert(sizeof(FWidgetCarouselNavigationBarStyle) == 0x000CB0, "Wrong size on FWidgetCarouselNavigationBarStyle"); \ +static_assert(offsetof(FWidgetCarouselNavigationBarStyle, HighlightBrush) == 0x000010, "Member 'FWidgetCarouselNavigationBarStyle::HighlightBrush' has a wrong offset!"); \ +static_assert(offsetof(FWidgetCarouselNavigationBarStyle, LeftButtonStyle) == 0x0000E0, "Member 'FWidgetCarouselNavigationBarStyle::LeftButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWidgetCarouselNavigationBarStyle, CenterButtonStyle) == 0x0004D0, "Member 'FWidgetCarouselNavigationBarStyle::CenterButtonStyle' has a wrong offset!"); \ +static_assert(offsetof(FWidgetCarouselNavigationBarStyle, RightButtonStyle) == 0x0008C0, "Member 'FWidgetCarouselNavigationBarStyle::RightButtonStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FMassEntityDialogueInfo \ +static_assert(alignof(FMassEntityDialogueInfo) == 0x000008, "Wrong alignment on FMassEntityDialogueInfo"); \ +static_assert(sizeof(FMassEntityDialogueInfo) == 0x000048, "Wrong size on FMassEntityDialogueInfo"); \ +static_assert(offsetof(FMassEntityDialogueInfo, DialogueInfo) == 0x000040, "Member 'FMassEntityDialogueInfo::DialogueInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature \ +static_assert(alignof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature) == 0x000010, "Wrong size on BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature, WakingComponent) == 0x000000, "Member 'BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature::WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_2_ComponentWakeSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature \ +static_assert(alignof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature) == 0x000010, "Wrong size on BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature, SleepingComponent) == 0x000000, "Member 'BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature::SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_ThrowableWeapon_C_BndEvt__BP_ThrowableWeapon_SkeletalMesh_K2Node_ComponentBoundEvent_3_ComponentSleepSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_CanInteract \ +static_assert(alignof(BP_ThrowableWeapon_C_CanInteract) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_CanInteract"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_CanInteract) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_CanInteract"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_CanPull \ +static_assert(alignof(BP_ThrowableWeapon_C_CanPull) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_CanPull"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_CanPull) == 0x000002, "Wrong size on BP_ThrowableWeapon_C_CanPull"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_CanPull::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_CanPull, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'BP_ThrowableWeapon_C_CanPull::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_DeadBodyTransfer \ +static_assert(alignof(BP_ThrowableWeapon_C_DeadBodyTransfer) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_DeadBodyTransfer"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_DeadBodyTransfer) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_DeadBodyTransfer"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_DeadBodyTransfer, DestroyedActor) == 0x000000, "Member 'BP_ThrowableWeapon_C_DeadBodyTransfer::DestroyedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon \ +static_assert(alignof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon) == 0x000010, "Wrong alignment on BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon) == 0x0010F0, "Wrong size on BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, EntryPoint) == 0x000000, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable) == 0x000004, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_1) == 0x000005, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_class_Variable) == 0x000008, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_class_Variable_1) == 0x000010, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_delegate_Variable) == 0x000018, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_delegate_Variable_1) == 0x000028, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_delegate_Variable_2) == 0x000038, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_2) == 0x000048, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate) == 0x00004C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_1) == 0x00005C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_2) == 0x00006C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_3) == 0x00007C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable) == 0x000080, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable_1) == 0x000084, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_3) == 0x000088, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_4) == 0x000098, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_4) == 0x0000A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_5) == 0x0000A9, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable_2) == 0x0000B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable_3) == 0x0000B8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_6) == 0x0000C0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default) == 0x0000C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable_4) == 0x0000D0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_object_Variable) == 0x0000D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_IsClosed_Variable) == 0x0000E8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_IntInt_ReturnValue) == 0x0000E9, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Has_Been_Initd_Variable) == 0x0000EA, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_IsClosed_Variable_1) == 0x0000EB, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Has_Been_Initd_Variable_1) == 0x0000EC, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000F0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Has_Been_Initd_Variable_2) == 0x000108, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000110, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_bInVisible) == 0x000128, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_InDuration_1) == 0x00012C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_InDuration) == 0x000130, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_Origin) == 0x000138, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_Direction) == 0x000150, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_Strength) == 0x000168, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Event_Tag) == 0x00016C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_name_Variable) == 0x000174, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000180, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000198, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_VSize_ReturnValue) == 0x0001B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_NotifyName) == 0x0001B8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomUnitVector_ReturnValue) == 0x0001C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001E0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetCenterOfMass_ReturnValue) == 0x0001F8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000210, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsAnySimulatingPhysics_ReturnValue) == 0x000228, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsAnySimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Add_VectorVector_ReturnValue) == 0x000230, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default_1) == 0x000248, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000260, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue) == 0x000278, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000280, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000288, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeVector_ReturnValue) == 0x000290, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomUnitVector_ReturnValue_1) == 0x0002A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetActorForwardVector_ReturnValue) == 0x0002C0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_5) == 0x0002D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x0002E8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x0002F0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue) == 0x000308, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000310, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue) == 0x000328, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000330, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000348, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000360, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000378, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetSocketTransform_ReturnValue) == 0x000390, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Location) == 0x0003F0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Rotation) == 0x000408, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Scale) == 0x000420, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000438, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakRotator_Roll) == 0x000440, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakRotator_Pitch) == 0x000444, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakRotator_Yaw) == 0x000448, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomUnitVector_ReturnValue_2) == 0x000450, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetForwardVector_ReturnValue) == 0x000468, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000480, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_IsClosed_Variable_2) == 0x000481, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Subtract_IntInt_ReturnValue) == 0x000484, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_NotifyName_1) == 0x000488, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_IntInt_ReturnValue_2) == 0x000490, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeArray_Array) == 0x000498, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0004A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0004B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004B4, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0004C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_4) == 0x0004D0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_5) == 0x0004D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_6) == 0x0004E0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_ReturnValue) == 0x0004E8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetSocketTransform_ReturnValue_1) == 0x000500, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetSocketTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000560, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Location_1) == 0x000568, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Rotation_1) == 0x000580, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Scale_1) == 0x000598, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_ComposeRotators_ReturnValue) == 0x0005B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeArray_Array_1) == 0x0005C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeStruct_RangedProjectileParams) == 0x0005D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeStruct_RangedProjectileParams' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_FClamp_ReturnValue) == 0x000638, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_NotifyName_2) == 0x000640, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000648, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000650, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000668, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000670, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x000688, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BooleanOR_ReturnValue) == 0x0006A0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0006A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0006C0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetActorRightVector_ReturnValue) == 0x0006C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_7) == 0x0006E0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0006F0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x0006F8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x000710, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x000718, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_1) == 0x000730, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetSocketTransform_ReturnValue_2) == 0x000740, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetSocketTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Location_2) == 0x0007A0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Location_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Rotation_2) == 0x0007B8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Rotation_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BreakTransform_Scale_2) == 0x0007D0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BreakTransform_Scale_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_NotifyName_3) == 0x0007E8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_InSplitSecond_IsInSS) == 0x0007F0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_InSplitSecond_IsInSS' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_InSplitSecond_IsInSS_1) == 0x0007F1, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_InSplitSecond_IsInSS_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0007F8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default_2) == 0x000800, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_InSplitSecond_IsInSS_2) == 0x000808, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_InSplitSecond_IsInSS_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_7) == 0x000810, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_ReturnValue_8) == 0x000818, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_ReturnValue_1) == 0x000820, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeTransform_ReturnValue) == 0x000840, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_AddActorLocalTransform_SweepHitResult) == 0x0008A0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_AddActorLocalTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValidClass_ReturnValue) == 0x000988, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_8) == 0x00098C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValidClass_ReturnValue_1) == 0x00099C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValidClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MapRangeClamped_ReturnValue) == 0x0009A0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0009A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_ReturnValue_2) == 0x0009B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_ComponentBoundEvent_WakingComponent) == 0x0009C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_ComponentBoundEvent_WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_ComponentBoundEvent_BoneName_1) == 0x0009D0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_ComponentBoundEvent_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeStruct_RangedProjectileParams_1) == 0x0009D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeStruct_RangedProjectileParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_ComponentBoundEvent_SleepingComponent) == 0x000A38, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_ComponentBoundEvent_SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_ComponentBoundEvent_BoneName) == 0x000A40, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_ComponentBoundEvent_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000A48, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000A50, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_bSuccess) == 0x000A60, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_2) == 0x000A61, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000A62, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000A68, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000A70, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_3) == 0x000A78, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_NotifyName_4) == 0x000A7C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_int_Variable) == 0x000A84, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000A88, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Add_IntInt_ReturnValue) == 0x000A8C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000A90, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000AA8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValidClass_ReturnValue_2) == 0x000AB0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValidClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CreateDelegate_OutputDelegate_9) == 0x000AB4, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_DestroyedActor_1) == 0x000AC8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_DestroyedActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetRelativeTransform_ReturnValue) == 0x000AD0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetRelativeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_DestroyedActor) == 0x000B30, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_DestroyedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_4) == 0x000B38, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetUpVector_ReturnValue) == 0x000B40, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetComponentBounds_Origin) == 0x000B58, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetComponentBounds_BoxExtent) == 0x000B70, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetComponentBounds_SphereRadius) == 0x000B88, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000B90, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_7) == 0x000B98, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x000BB0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_AddWorldOffset_SweepHitResult) == 0x000BC8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_AddWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Not_PreBool_ReturnValue) == 0x000CB0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x000CB8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BooleanAND_ReturnValue) == 0x000CC0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_8) == 0x000CC8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_8) == 0x000CE0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_7) == 0x000CF8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000D00, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_8) == 0x000D18, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeArray_Array_2) == 0x000D20, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeArray_Array_3) == 0x000D30, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetClassDisplayName_ReturnValue) == 0x000D40, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetClassDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Contains_ReturnValue) == 0x000D50, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default_3) == 0x000D54, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_CustomEvent_Muted) == 0x000D58, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_CustomEvent_Muted' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_9) == 0x000D60, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_10) == 0x000D68, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000D70, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1) == 0x000D78, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_5) == 0x000D80, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_6) == 0x000D81, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_7) == 0x000D82, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_8) == 0x000D83, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_IntInt_ReturnValue_3) == 0x000D84, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_11) == 0x000D88, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000D90, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_9) == 0x000D98, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000DA0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeOutgoingSpec_ReturnValue) == 0x000DA8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeOutgoingSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000DB8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SpawnRangedProjectile_ReturnValue) == 0x000DC0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SpawnRangedProjectile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000DC8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_AsWrestler_Projectile_Base) == 0x000DD0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_AsWrestler_Projectile_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_bSuccess_1) == 0x000DD8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000DE0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_FClamp_ReturnValue_1) == 0x000DE8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_real_Variable_5) == 0x000DF0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetPlayerPawn_ReturnValue_12) == 0x000DF8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetPlayerPawn_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000E00, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_bSuccess_2) == 0x000E10, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BooleanOR_ReturnValue_1) == 0x000E11, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000E12, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsSimulatingPhysics_ReturnValue) == 0x000E13, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsSimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_bool_Variable_7) == 0x000E14, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, Temp_int_Variable_1) == 0x000E18, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default_4) == 0x000E1C, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Greater_IntInt_ReturnValue_4) == 0x000E20, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Greater_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_ReturnValue_9) == 0x000E28, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_VectorVector_ReturnValue_9) == 0x000E40, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetProperty_ReturnValue) == 0x000E58, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000E60, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000E68, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SpawnRangedProjectile_ReturnValue_1) == 0x000E70, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SpawnRangedProjectile_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_AsWrestler_Projectile_Base_1) == 0x000E78, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_AsWrestler_Projectile_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_DynamicCast_bSuccess_3) == 0x000E80, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Default_5) == 0x000E88, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SetDuration_ReturnValue) == 0x000E90, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SetDuration_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue) == 0x000EA0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000EA8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetTransform_ReturnValue) == 0x000EB0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000F10, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_FinishSpawningActor_ReturnValue) == 0x000F18, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_MakeArray_Array_4) == 0x000F20, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000F30, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_SetRelativeTransform_SweepHitResult) == 0x000F48, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_SetRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SphereOverlapActors_OutActors) == 0x001030, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SphereOverlapActors_ReturnValue) == 0x001040, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Array_Get_Item) == 0x001048, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_10) == 0x001050, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_GetComponentByClass_ReturnValue) == 0x001058, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_IsValid_ReturnValue_11) == 0x001060, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_K2_AttachToComponent_ReturnValue) == 0x001061, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001068, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x001070, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x001078, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Delay_Duration_ImplicitCast) == 0x001080, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_Max_ImplicitCast) == 0x001088, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_Max_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_Max_ImplicitCast_1) == 0x001090, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_Max_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RandomFloatInRange_Max_ImplicitCast_2) == 0x001098, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RandomFloatInRange_Max_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0010A0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0010A8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0010AC, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0010B0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_Select_Option_0_ImplicitCast) == 0x0010B4, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, K2Node_VariableSet_Projectile_Damage_ImplicitCast) == 0x0010B8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::K2Node_VariableSet_Projectile_Damage_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_RealTimeDelay_Duration_ImplicitCast) == 0x0010BC, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_RealTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x0010C0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Yaw_ImplicitCast_1) == 0x0010C4, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Yaw_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x0010C8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_MakeRotator_Pitch_ImplicitCast_1) == 0x0010D0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_MakeRotator_Pitch_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0010D8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2) == 0x0010E0, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon, CallFunc_SetDuration_Duration_ImplicitCast) == 0x0010E8, "Member 'BP_ThrowableWeapon_C_ExecuteUbergraph_BP_ThrowableWeapon::CallFunc_SetDuration_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetAudioComponent \ +static_assert(alignof(BP_ThrowableWeapon_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetAudioComponent"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetAudioComponent) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetAudioComponent"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetClueDataAsset \ +static_assert(alignof(BP_ThrowableWeapon_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetCurrentAmmo \ +static_assert(alignof(BP_ThrowableWeapon_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_ThrowableWeapon_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetDataAsset \ +static_assert(alignof(BP_ThrowableWeapon_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetDataAsset"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetDataAsset) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetDataAsset"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetHandleLocation \ +static_assert(alignof(BP_ThrowableWeapon_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetHandleLocation"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetHandleLocation) == 0x000018, "Wrong size on BP_ThrowableWeapon_C_GetHandleLocation"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetInteractAnimation \ +static_assert(alignof(BP_ThrowableWeapon_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetInteractObjective \ +static_assert(alignof(BP_ThrowableWeapon_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetInteractObjective"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetInteractObjective) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetInteractObjective"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetMeshComponent \ +static_assert(alignof(BP_ThrowableWeapon_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetMeshComponent"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetMeshComponent) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetMeshComponent"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetPointAxis \ +static_assert(alignof(BP_ThrowableWeapon_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetPointAxis"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetPointAxis) == 0x000098, "Wrong size on BP_ThrowableWeapon_C_GetPointAxis"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetPointAxis, Temp_bool_Variable) == 0x000030, "Member 'BP_ThrowableWeapon_C_GetPointAxis::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetPointAxis, K2Node_MakeStruct_WrestlerPointAxis) == 0x000038, "Member 'BP_ThrowableWeapon_C_GetPointAxis::K2Node_MakeStruct_WrestlerPointAxis' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetPointAxis, K2Node_Select_Default) == 0x000068, "Member 'BP_ThrowableWeapon_C_GetPointAxis::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetScoreBias \ +static_assert(alignof(BP_ThrowableWeapon_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_GetScoreBias"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetScoreBias) == 0x000030, "Wrong size on BP_ThrowableWeapon_C_GetScoreBias"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_bool_Variable) == 0x000004, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_real_Variable) == 0x000008, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_real_Variable_1) == 0x00000C, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_bool_Variable_1) == 0x000010, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_real_Variable_2) == 0x000014, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_bool_Variable_2) == 0x000018, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, Temp_real_Variable_3) == 0x00001C, "Member 'BP_ThrowableWeapon_C_GetScoreBias::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, K2Node_Select_Default) == 0x000020, "Member 'BP_ThrowableWeapon_C_GetScoreBias::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, K2Node_Select_Default_1) == 0x000024, "Member 'BP_ThrowableWeapon_C_GetScoreBias::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, CallFunc_Greater_IntInt_ReturnValue) == 0x000028, "Member 'BP_ThrowableWeapon_C_GetScoreBias::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetScoreBias, K2Node_Select_Default_2) == 0x00002C, "Member 'BP_ThrowableWeapon_C_GetScoreBias::K2Node_Select_Default_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetThrowableComponent \ +static_assert(alignof(BP_ThrowableWeapon_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetThrowableOrientation \ +static_assert(alignof(BP_ThrowableWeapon_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_ThrowableWeapon_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_ThrowableWeapon_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetThrowableType \ +static_assert(alignof(BP_ThrowableWeapon_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_GetThrowableType"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetThrowableType) == 0x000002, "Wrong size on BP_ThrowableWeapon_C_GetThrowableType"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetThrowableType, CallFunc_MakeLiteralByte_ReturnValue) == 0x000001, "Member 'BP_ThrowableWeapon_C_GetThrowableType::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_InSplitSecond \ +static_assert(alignof(BP_ThrowableWeapon_C_InSplitSecond) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_InSplitSecond"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_InSplitSecond) == 0x000028, "Wrong size on BP_ThrowableWeapon_C_InSplitSecond"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, IsInSS) == 0x000000, "Member 'BP_ThrowableWeapon_C_InSplitSecond::IsInSS' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, Temp_bool_Variable) == 0x000001, "Member 'BP_ThrowableWeapon_C_InSplitSecond::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_ThrowableWeapon_C_InSplitSecond::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'BP_ThrowableWeapon_C_InSplitSecond::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_ThrowableWeapon_C_InSplitSecond::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_InSplitSecond, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000021, "Member 'BP_ThrowableWeapon_C_InSplitSecond::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_IsExplosive \ +static_assert(alignof(BP_ThrowableWeapon_C_IsExplosive) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_IsExplosive"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_IsExplosive) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_IsExplosive"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_IsPointed \ +static_assert(alignof(BP_ThrowableWeapon_C_IsPointed) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_IsPointed"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_IsPointed) == 0x000003, "Wrong size on BP_ThrowableWeapon_C_IsPointed"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_IsPointed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_IsPointed, CallFunc_Greater_IntInt_ReturnValue) == 0x000001, "Member 'BP_ThrowableWeapon_C_IsPointed::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_IsPointed, CallFunc_BooleanOR_ReturnValue) == 0x000002, "Member 'BP_ThrowableWeapon_C_IsPointed::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_IsThrowable \ +static_assert(alignof(BP_ThrowableWeapon_C_IsThrowable) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_IsThrowable"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_IsThrowable) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_IsThrowable"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_MovableInteract \ +static_assert(alignof(BP_ThrowableWeapon_C_MovableInteract) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_MovableInteract"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_MovableInteract) == 0x000040, "Wrong size on BP_ThrowableWeapon_C_MovableInteract"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_MovableInteract, Origin) == 0x000000, "Member 'BP_ThrowableWeapon_C_MovableInteract::Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_MovableInteract, Direction) == 0x000018, "Member 'BP_ThrowableWeapon_C_MovableInteract::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_MovableInteract, Strength) == 0x000030, "Member 'BP_ThrowableWeapon_C_MovableInteract::Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_MovableInteract, Tag) == 0x000034, "Member 'BP_ThrowableWeapon_C_MovableInteract::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_MuteWeapon \ +static_assert(alignof(BP_ThrowableWeapon_C_MuteWeapon) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_MuteWeapon"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_MuteWeapon) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_MuteWeapon"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_MuteWeapon, Muted) == 0x000000, "Member 'BP_ThrowableWeapon_C_MuteWeapon::Muted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D \ +static_assert(alignof(BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D, NotifyName) == 0x000000, "Member 'BP_ThrowableWeapon_C_OnBlendOut_8E5D10784529953EB2F8EDB7022A1D6D::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D \ +static_assert(alignof(BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D, NotifyName) == 0x000000, "Member 'BP_ThrowableWeapon_C_OnCompleted_8E5D10784529953EB2F8EDB7022A1D6D::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D \ +static_assert(alignof(BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D, NotifyName) == 0x000000, "Member 'BP_ThrowableWeapon_C_OnInterrupted_8E5D10784529953EB2F8EDB7022A1D6D::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D \ +static_assert(alignof(BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D, NotifyName) == 0x000000, "Member 'BP_ThrowableWeapon_C_OnNotifyBegin_8E5D10784529953EB2F8EDB7022A1D6D::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D \ +static_assert(alignof(BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D, NotifyName) == 0x000000, "Member 'BP_ThrowableWeapon_C_OnNotifyEnd_8E5D10784529953EB2F8EDB7022A1D6D::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_ParentGone \ +static_assert(alignof(BP_ThrowableWeapon_C_ParentGone) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_ParentGone"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_ParentGone) == 0x000008, "Wrong size on BP_ThrowableWeapon_C_ParentGone"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_ParentGone, DestroyedActor) == 0x000000, "Member 'BP_ThrowableWeapon_C_ParentGone::DestroyedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_Set_Loaded_Tags \ +static_assert(alignof(BP_ThrowableWeapon_C_Set_Loaded_Tags) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_Set_Loaded_Tags"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_Set_Loaded_Tags) == 0x000018, "Wrong size on BP_ThrowableWeapon_C_Set_Loaded_Tags"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_Set_Loaded_Tags, Loaded) == 0x000000, "Member 'BP_ThrowableWeapon_C_Set_Loaded_Tags::Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_Set_Loaded_Tags, K2Node_MakeArray_Array) == 0x000008, "Member 'BP_ThrowableWeapon_C_Set_Loaded_Tags::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_SetVisionVisibility \ +static_assert(alignof(BP_ThrowableWeapon_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_ThrowableWeapon_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_UserConstructionScript \ +static_assert(alignof(BP_ThrowableWeapon_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_UserConstructionScript"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_UserConstructionScript) == 0x000018, "Wrong size on BP_ThrowableWeapon_C_UserConstructionScript"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_UserConstructionScript, CallFunc_RandomFloatInRange_ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_UserConstructionScript::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000008, "Member 'BP_ThrowableWeapon_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_UserConstructionScript, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000010, "Member 'BP_ThrowableWeapon_C_UserConstructionScript::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_VisionFadeInBegin \ +static_assert(alignof(BP_ThrowableWeapon_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_ThrowableWeapon_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_ThrowableWeapon_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_VisionFadeOutBegin \ +static_assert(alignof(BP_ThrowableWeapon_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_ThrowableWeapon_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_ThrowableWeapon_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_ThrowableWeapon_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableWeapon_C_GetTargetType \ +static_assert(alignof(BP_ThrowableWeapon_C_GetTargetType) == 0x000001, "Wrong alignment on BP_ThrowableWeapon_C_GetTargetType"); \ +static_assert(sizeof(BP_ThrowableWeapon_C_GetTargetType) == 0x000001, "Wrong size on BP_ThrowableWeapon_C_GetTargetType"); \ +static_assert(offsetof(BP_ThrowableWeapon_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_ThrowableWeapon_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableWeapon_C \ +static_assert(alignof(ABP_ThrowableWeapon_C) == 0x000010, "Wrong alignment on ABP_ThrowableWeapon_C"); \ +static_assert(sizeof(ABP_ThrowableWeapon_C) == 0x000440, "Wrong size on ABP_ThrowableWeapon_C"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, UberGraphFrame) == 0x000298, "Member 'ABP_ThrowableWeapon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, WrestlerHeightenedSensesClue) == 0x0002A0, "Member 'ABP_ThrowableWeapon_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, HeraAudio) == 0x0002A8, "Member 'ABP_ThrowableWeapon_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, SkeletalMesh) == 0x0002B0, "Member 'ABP_ThrowableWeapon_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, WeaponMesh) == 0x0002B8, "Member 'ABP_ThrowableWeapon_C::WeaponMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, InitialLaunch) == 0x0002C0, "Member 'ABP_ThrowableWeapon_C::InitialLaunch' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Firing) == 0x0002C1, "Member 'ABP_ThrowableWeapon_C::Firing' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, RangedWepInstanceClass) == 0x0002C8, "Member 'ABP_ThrowableWeapon_C::RangedWepInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, MeleeWepInstanceClass) == 0x0002D0, "Member 'ABP_ThrowableWeapon_C::MeleeWepInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Ammo) == 0x0002D8, "Member 'ABP_ThrowableWeapon_C::Ammo' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Projectile_Damage) == 0x0002DC, "Member 'ABP_ThrowableWeapon_C::Projectile_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Infinite_Ammo) == 0x0002E0, "Member 'ABP_ThrowableWeapon_C::Infinite_Ammo' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Source_Material) == 0x0002E8, "Member 'ABP_ThrowableWeapon_C::Source_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Heighten_Senee_Meterial) == 0x0002F0, "Member 'ABP_ThrowableWeapon_C::Heighten_Senee_Meterial' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, GunTypeAudioSwitchMap) == 0x0002F8, "Member 'ABP_ThrowableWeapon_C::GunTypeAudioSwitchMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Throwable_Data_Asset) == 0x000348, "Member 'ABP_ThrowableWeapon_C::Throwable_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, PointedMelee) == 0x000350, "Member 'ABP_ThrowableWeapon_C::PointedMelee' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, MeleeAxes) == 0x000358, "Member 'ABP_ThrowableWeapon_C::MeleeAxes' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, ThrowRot) == 0x000388, "Member 'ABP_ThrowableWeapon_C::ThrowRot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, StartSimulated) == 0x0003A0, "Member 'ABP_ThrowableWeapon_C::StartSimulated' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, BodyEmbed) == 0x0003A1, "Member 'ABP_ThrowableWeapon_C::BodyEmbed' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, AttachSocket) == 0x0003A4, "Member 'ABP_ThrowableWeapon_C::AttachSocket' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, RelPosition) == 0x0003B0, "Member 'ABP_ThrowableWeapon_C::RelPosition' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, AttachActor) == 0x000410, "Member 'ABP_ThrowableWeapon_C::AttachActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Held) == 0x000418, "Member 'ABP_ThrowableWeapon_C::Held' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Embeddable) == 0x000419, "Member 'ABP_ThrowableWeapon_C::Embeddable' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Silenced) == 0x00041A, "Member 'ABP_ThrowableWeapon_C::Silenced' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, MuteTask) == 0x000420, "Member 'ABP_ThrowableWeapon_C::MuteTask' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, UnmuteTask) == 0x000428, "Member 'ABP_ThrowableWeapon_C::UnmuteTask' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, ManualFire) == 0x000430, "Member 'ABP_ThrowableWeapon_C::ManualFire' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableWeapon_C, Difficulty) == 0x000438, "Member 'ABP_ThrowableWeapon_C::Difficulty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FReplicatedAgentPathData \ +static_assert(alignof(FReplicatedAgentPathData) == 0x000008, "Wrong alignment on FReplicatedAgentPathData"); \ +static_assert(sizeof(FReplicatedAgentPathData) == 0x000068, "Wrong size on FReplicatedAgentPathData"); \ +static_assert(offsetof(FReplicatedAgentPathData, PathRequest) == 0x000000, "Member 'FReplicatedAgentPathData::PathRequest' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, LaneHandle) == 0x000048, "Member 'FReplicatedAgentPathData::LaneHandle' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, ActionServerStartTime) == 0x000050, "Member 'FReplicatedAgentPathData::ActionServerStartTime' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, DistanceAlongLane) == 0x000058, "Member 'FReplicatedAgentPathData::DistanceAlongLane' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, LaneLength) == 0x00005C, "Member 'FReplicatedAgentPathData::LaneLength' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, DesiredSpeed) == 0x000060, "Member 'FReplicatedAgentPathData::DesiredSpeed' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, ActionID) == 0x000062, "Member 'FReplicatedAgentPathData::ActionID' has a wrong offset!"); \ +static_assert(offsetof(FReplicatedAgentPathData, Action) == 0x000064, "Member 'FReplicatedAgentPathData::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWID_Revolver_C \ +static_assert(alignof(UWID_Revolver_C) == 0x000010, "Wrong alignment on UWID_Revolver_C"); \ +static_assert(sizeof(UWID_Revolver_C) == 0x0000D0, "Wrong size on UWID_Revolver_C"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessageParameterEntry \ +static_assert(alignof(FLocalizableMessageParameterEntry) == 0x000008, "Wrong alignment on FLocalizableMessageParameterEntry"); \ +static_assert(sizeof(FLocalizableMessageParameterEntry) == 0x000020, "Wrong size on FLocalizableMessageParameterEntry"); \ +static_assert(offsetof(FLocalizableMessageParameterEntry, Key) == 0x000000, "Member 'FLocalizableMessageParameterEntry::Key' has a wrong offset!"); \ +static_assert(offsetof(FLocalizableMessageParameterEntry, Value) == 0x000010, "Member 'FLocalizableMessageParameterEntry::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessage \ +static_assert(alignof(FLocalizableMessage) == 0x000008, "Wrong alignment on FLocalizableMessage"); \ +static_assert(sizeof(FLocalizableMessage) == 0x000030, "Wrong size on FLocalizableMessage"); \ +static_assert(offsetof(FLocalizableMessage, Key) == 0x000000, "Member 'FLocalizableMessage::Key' has a wrong offset!"); \ +static_assert(offsetof(FLocalizableMessage, DefaultText) == 0x000010, "Member 'FLocalizableMessage::DefaultText' has a wrong offset!"); \ +static_assert(offsetof(FLocalizableMessage, Substitutions) == 0x000020, "Member 'FLocalizableMessage::Substitutions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessageParameterInt \ +static_assert(alignof(FLocalizableMessageParameterInt) == 0x000008, "Wrong alignment on FLocalizableMessageParameterInt"); \ +static_assert(sizeof(FLocalizableMessageParameterInt) == 0x000008, "Wrong size on FLocalizableMessageParameterInt"); \ +static_assert(offsetof(FLocalizableMessageParameterInt, Value) == 0x000000, "Member 'FLocalizableMessageParameterInt::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessageParameterFloat \ +static_assert(alignof(FLocalizableMessageParameterFloat) == 0x000008, "Wrong alignment on FLocalizableMessageParameterFloat"); \ +static_assert(sizeof(FLocalizableMessageParameterFloat) == 0x000008, "Wrong size on FLocalizableMessageParameterFloat"); \ +static_assert(offsetof(FLocalizableMessageParameterFloat, Value) == 0x000000, "Member 'FLocalizableMessageParameterFloat::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessageParameterString \ +static_assert(alignof(FLocalizableMessageParameterString) == 0x000008, "Wrong alignment on FLocalizableMessageParameterString"); \ +static_assert(sizeof(FLocalizableMessageParameterString) == 0x000010, "Wrong size on FLocalizableMessageParameterString"); \ +static_assert(offsetof(FLocalizableMessageParameterString, Value) == 0x000000, "Member 'FLocalizableMessageParameterString::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FLocalizableMessageParameterMessage \ +static_assert(alignof(FLocalizableMessageParameterMessage) == 0x000008, "Wrong alignment on FLocalizableMessageParameterMessage"); \ +static_assert(sizeof(FLocalizableMessageParameterMessage) == 0x000030, "Wrong size on FLocalizableMessageParameterMessage"); \ +static_assert(offsetof(FLocalizableMessageParameterMessage, Value) == 0x000000, "Member 'FLocalizableMessageParameterMessage::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDmgTypeBP_Environmental_C \ +static_assert(alignof(UDmgTypeBP_Environmental_C) == 0x000008, "Wrong alignment on UDmgTypeBP_Environmental_C"); \ +static_assert(sizeof(UDmgTypeBP_Environmental_C) == 0x000040, "Wrong size on UDmgTypeBP_Environmental_C"); \ + +#define DUMPER7_ASSERTS_UBP_CommonUIRichTextIconSet_C \ +static_assert(alignof(UBP_CommonUIRichTextIconSet_C) == 0x000008, "Wrong alignment on UBP_CommonUIRichTextIconSet_C"); \ +static_assert(sizeof(UBP_CommonUIRichTextIconSet_C) == 0x000030, "Wrong size on UBP_CommonUIRichTextIconSet_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleButton_Disabled_C \ +static_assert(alignof(UCommonTextStyleButton_Disabled_C) == 0x000010, "Wrong alignment on UCommonTextStyleButton_Disabled_C"); \ +static_assert(sizeof(UCommonTextStyleButton_Disabled_C) == 0x0001B0, "Wrong size on UCommonTextStyleButton_Disabled_C"); \ + +#define DUMPER7_ASSERTS_ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask \ +static_assert(alignof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask) == 0x000008, "Wrong alignment on ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask"); \ +static_assert(sizeof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask) == 0x000030, "Wrong size on ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, EntryPoint) == 0x000000, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, K2Node_Event_InAutomata) == 0x000010, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, K2Node_Event_InState) == 0x000018, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, K2Node_DynamicCast_AsBP_Throwable_Kill_Volume) == 0x000020, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::K2Node_DynamicCast_AsBP_Throwable_Kill_Volume' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ThrowableKillVolumeTask_C_ExecuteUbergraph_ThrowableKillVolumeTask::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ThrowableKillVolumeTask_C_ReceiveExecute \ +static_assert(alignof(ThrowableKillVolumeTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on ThrowableKillVolumeTask_C_ReceiveExecute"); \ +static_assert(sizeof(ThrowableKillVolumeTask_C_ReceiveExecute) == 0x000010, "Wrong size on ThrowableKillVolumeTask_C_ReceiveExecute"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ThrowableKillVolumeTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ThrowableKillVolumeTask_C_ReceiveExecute, InState) == 0x000008, "Member 'ThrowableKillVolumeTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UThrowableKillVolumeTask_C \ +static_assert(alignof(UThrowableKillVolumeTask_C) == 0x000008, "Wrong alignment on UThrowableKillVolumeTask_C"); \ +static_assert(sizeof(UThrowableKillVolumeTask_C) == 0x0000B8, "Wrong size on UThrowableKillVolumeTask_C"); \ +static_assert(offsetof(UThrowableKillVolumeTask_C, UberGraphFrame) == 0x000088, "Member 'UThrowableKillVolumeTask_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UThrowableKillVolumeTask_C, ThrowableKillVolume) == 0x000090, "Member 'UThrowableKillVolumeTask_C::ThrowableKillVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WGT_TokenDebug_C_CreateHeadBanner \ +static_assert(alignof(WGT_TokenDebug_C_CreateHeadBanner) == 0x000008, "Wrong alignment on WGT_TokenDebug_C_CreateHeadBanner"); \ +static_assert(sizeof(WGT_TokenDebug_C_CreateHeadBanner) == 0x000020, "Wrong size on WGT_TokenDebug_C_CreateHeadBanner"); \ +static_assert(offsetof(WGT_TokenDebug_C_CreateHeadBanner, List) == 0x000000, "Member 'WGT_TokenDebug_C_CreateHeadBanner::List' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_CreateHeadBanner, Text) == 0x000008, "Member 'WGT_TokenDebug_C_CreateHeadBanner::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WGT_TokenDebug_C_CreateTokensWidgetList \ +static_assert(alignof(WGT_TokenDebug_C_CreateTokensWidgetList) == 0x000008, "Wrong alignment on WGT_TokenDebug_C_CreateTokensWidgetList"); \ +static_assert(sizeof(WGT_TokenDebug_C_CreateTokensWidgetList) == 0x000010, "Wrong size on WGT_TokenDebug_C_CreateTokensWidgetList"); \ +static_assert(offsetof(WGT_TokenDebug_C_CreateTokensWidgetList, List) == 0x000000, "Member 'WGT_TokenDebug_C_CreateTokensWidgetList::List' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug \ +static_assert(alignof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug) == 0x000010, "Wrong alignment on WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug"); \ +static_assert(sizeof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug) == 0x000480, "Wrong size on WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, EntryPoint) == 0x000000, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_MakeLiteralText_ReturnValue) == 0x000008, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_MakeLiteralText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_text_Variable) == 0x000020, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_text_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_text_Variable_1) == 0x000038, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_text_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_text_Variable_2) == 0x000050, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_text_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_MakeTransform_ReturnValue) == 0x000070, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000D0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Concat_StrStr_ReturnValue) == 0x0000D8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetTokenManager_ReturnValue) == 0x0000E8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetTokenManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000F0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetActorsScore_ReturnValue) == 0x000100, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetActorsScore_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetActorsHandicap_ReturnValue) == 0x000150, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetActorsHandicap_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Array_Index_Variable) == 0x0001A0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_text_Variable_3) == 0x0001A8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_text_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Event_MyGeometry) == 0x0001C0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Event_InDeltaTime) == 0x0001F8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Array_Index_Variable_1) == 0x0001FC, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Loop_Counter_Variable) == 0x000200, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Loop_Counter_Variable_1) == 0x000204, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Add_IntInt_ReturnValue) == 0x000208, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Add_IntInt_ReturnValue_1) == 0x00020C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_byte_Variable) == 0x000210, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Array_Index_Variable_2) == 0x000214, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetPlayerController_ReturnValue) == 0x000218, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_real_Variable) == 0x000220, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Create_ReturnValue) == 0x000228, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_real_Variable_1) == 0x000230, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_AddChildToVerticalBox_ReturnValue) == 0x000238, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_AddChildToVerticalBox_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_real_Variable_2) == 0x000240, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_LastIndex_ReturnValue) == 0x000244, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Clamp_ReturnValue) == 0x000248, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Clamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_real_Variable_3) == 0x00024C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Event_IsDesignTime) == 0x000250, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Keys_Keys) == 0x000258, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_byte_Variable_1) == 0x000268, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Get_Item) == 0x000270, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Length_ReturnValue) == 0x000278, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_struct_Variable) == 0x00027C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_Value) == 0x000290, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_ReturnValue) == 0x000298, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetController_ReturnValue) == 0x0002A0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002A8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetComponentByClass_ReturnValue) == 0x0002C0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0002C8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetHeldToken_ReturnValue) == 0x0002D0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetHeldToken_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0002D8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_IsValid_ReturnValue) == 0x0002F0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetTokenState_ReturnValue) == 0x0002F1, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetTokenState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Select_Default) == 0x0002F4, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Select_Default_1) == 0x0002F8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_struct_Variable_1) == 0x000310, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_struct_Variable_2) == 0x000320, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_CustomEvent_List_1) == 0x000330, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_CustomEvent_List_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Get_Item_1) == 0x000340, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Length_ReturnValue_1) == 0x000348, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Less_IntInt_ReturnValue) == 0x00034C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_GetAllActorsOfClass_OutActors) == 0x000350, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_CustomEvent_List) == 0x000360, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_CustomEvent_List' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_CustomEvent_Text) == 0x000368, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_CustomEvent_Text' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_AddComponentByClass_ReturnValue) == 0x000380, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_AddComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_MakeStruct_Color) == 0x000388, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_MakeStruct_Color' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_struct_Variable_3) == 0x00038C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_Value_1) == 0x00039C, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_ReturnValue_1) == 0x0003A0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_DoubleToString_ReturnValue) == 0x0003A8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0003B8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_Value_2) == 0x0003C8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_ReturnValue_2) == 0x0003D0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_StringToText_ReturnValue) == 0x0003D8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_Value_3) == 0x0003F0, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Find_ReturnValue_3) == 0x0003F4, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_byte_Variable_2) == 0x0003F5, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_DoubleToString_ReturnValue_1) == 0x0003F8, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_DoubleToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000408, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, K2Node_Select_Default_2) == 0x000418, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_StringToText_ReturnValue_1) == 0x000428, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, Temp_int_Loop_Counter_Variable_2) == 0x000440, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Map_Values_Values) == 0x000448, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Get_Item_2) == 0x000458, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Array_Length_ReturnValue_2) == 0x000460, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Less_IntInt_ReturnValue_1) == 0x000464, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Less_IntInt_ReturnValue_2) == 0x000465, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Add_IntInt_ReturnValue_2) == 0x000468, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_DoubleToString_InDouble_ImplicitCast) == 0x000470, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_DoubleToString_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug, CallFunc_Conv_DoubleToString_InDouble_ImplicitCast_1) == 0x000478, "Member 'WGT_TokenDebug_C_ExecuteUbergraph_WGT_TokenDebug::CallFunc_Conv_DoubleToString_InDouble_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WGT_TokenDebug_C_PreConstruct \ +static_assert(alignof(WGT_TokenDebug_C_PreConstruct) == 0x000001, "Wrong alignment on WGT_TokenDebug_C_PreConstruct"); \ +static_assert(sizeof(WGT_TokenDebug_C_PreConstruct) == 0x000001, "Wrong size on WGT_TokenDebug_C_PreConstruct"); \ +static_assert(offsetof(WGT_TokenDebug_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WGT_TokenDebug_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WGT_TokenDebug_C_Tick \ +static_assert(alignof(WGT_TokenDebug_C_Tick) == 0x000004, "Wrong alignment on WGT_TokenDebug_C_Tick"); \ +static_assert(sizeof(WGT_TokenDebug_C_Tick) == 0x00003C, "Wrong size on WGT_TokenDebug_C_Tick"); \ +static_assert(offsetof(WGT_TokenDebug_C_Tick, MyGeometry) == 0x000000, "Member 'WGT_TokenDebug_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WGT_TokenDebug_C_Tick, InDeltaTime) == 0x000038, "Member 'WGT_TokenDebug_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWGT_TokenDebug_C \ +static_assert(alignof(UWGT_TokenDebug_C) == 0x000008, "Wrong alignment on UWGT_TokenDebug_C"); \ +static_assert(sizeof(UWGT_TokenDebug_C) == 0x0003B0, "Wrong size on UWGT_TokenDebug_C"); \ +static_assert(offsetof(UWGT_TokenDebug_C, UberGraphFrame) == 0x0002C8, "Member 'UWGT_TokenDebug_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, VericalBox) == 0x0002D0, "Member 'UWGT_TokenDebug_C::VericalBox' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, TextRender) == 0x0002D8, "Member 'UWGT_TokenDebug_C::TextRender' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, Elements) == 0x0002E0, "Member 'UWGT_TokenDebug_C::Elements' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, Character) == 0x000330, "Member 'UWGT_TokenDebug_C::Character' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, ListOfNames) == 0x000338, "Member 'UWGT_TokenDebug_C::ListOfNames' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, NewVar) == 0x000348, "Member 'UWGT_TokenDebug_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, Enemy) == 0x000350, "Member 'UWGT_TokenDebug_C::Enemy' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, WidgetComponentList) == 0x000358, "Member 'UWGT_TokenDebug_C::WidgetComponentList' has a wrong offset!"); \ +static_assert(offsetof(UWGT_TokenDebug_C, NewVar_0) == 0x0003A8, "Member 'UWGT_TokenDebug_C::NewVar_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_TokenStealingController_C \ +static_assert(alignof(UBP_TokenStealingController_C) == 0x000008, "Wrong alignment on UBP_TokenStealingController_C"); \ +static_assert(sizeof(UBP_TokenStealingController_C) == 0x0000A8, "Wrong size on UBP_TokenStealingController_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock \ +static_assert(alignof(GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock) == 0x000004, "Wrong alignment on GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock"); \ +static_assert(sizeof(GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock) == 0x000004, "Wrong size on GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock"); \ +static_assert(offsetof(GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Picking_Lock_C_ExecuteUbergraph_GA_Patrol_Action_Picking_Lock::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Picking_Lock_C \ +static_assert(alignof(UGA_Patrol_Action_Picking_Lock_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Picking_Lock_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Picking_Lock_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Picking_Lock_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Picking_Lock_C, UberGraphFrame_GA_Patrol_Action_Picking_Lock_C) == 0x000690, "Member 'UGA_Patrol_Action_Picking_Lock_C::UberGraphFrame_GA_Patrol_Action_Picking_Lock_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStruct_KnockBackParameters \ +static_assert(alignof(FStruct_KnockBackParameters) == 0x000008, "Wrong alignment on FStruct_KnockBackParameters"); \ +static_assert(sizeof(FStruct_KnockBackParameters) == 0x000040, "Wrong size on FStruct_KnockBackParameters"); \ +static_assert(offsetof(FStruct_KnockBackParameters, VerticalKnockBack_3_09B45EDF43D94545EE3802B274343D54) == 0x000000, "Member 'FStruct_KnockBackParameters::VerticalKnockBack_3_09B45EDF43D94545EE3802B274343D54' has a wrong offset!"); \ +static_assert(offsetof(FStruct_KnockBackParameters, HorizontalKnockback_6_1DC2FB994099331BD08FE18170621EC1) == 0x000008, "Member 'FStruct_KnockBackParameters::HorizontalKnockback_6_1DC2FB994099331BD08FE18170621EC1' has a wrong offset!"); \ +static_assert(offsetof(FStruct_KnockBackParameters, Direction_16_E35983BC465EC0AEDEF424A8E9DC5624) == 0x000010, "Member 'FStruct_KnockBackParameters::Direction_16_E35983BC465EC0AEDEF424A8E9DC5624' has a wrong offset!"); \ +static_assert(offsetof(FStruct_KnockBackParameters, GravityScale_14_E328B6324299E6C7F99264B758723652) == 0x000028, "Member 'FStruct_KnockBackParameters::GravityScale_14_E328B6324299E6C7F99264B758723652' has a wrong offset!"); \ +static_assert(offsetof(FStruct_KnockBackParameters, BoostAmount_19_C55DAA4F4C1C49C7CAE81E86AB8DD325) == 0x000030, "Member 'FStruct_KnockBackParameters::BoostAmount_19_C55DAA4F4C1C49C7CAE81E86AB8DD325' has a wrong offset!"); \ +static_assert(offsetof(FStruct_KnockBackParameters, BoostDecay_23_BD339DE640A6090F2955FDA566075908) == 0x000038, "Member 'FStruct_KnockBackParameters::BoostDecay_23_BD339DE640A6090F2955FDA566075908' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task \ +static_assert(alignof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task) == 0x000008, "Wrong alignment on ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task"); \ +static_assert(sizeof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task) == 0x000038, "Wrong size on ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, EntryPoint) == 0x000000, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, K2Node_Event_InAutomata) == 0x000008, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, K2Node_Event_InState) == 0x000010, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000020, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, CallFunc_GetComponentByClass_ReturnValue) == 0x000028, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'ChangeSpeciesTag_Task_C_ExecuteUbergraph_ChangeSpeciesTag_Task::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeSpeciesTag_Task_C_ReceiveExecute \ +static_assert(alignof(ChangeSpeciesTag_Task_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeSpeciesTag_Task_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeSpeciesTag_Task_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeSpeciesTag_Task_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeSpeciesTag_Task_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeSpeciesTag_Task_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeSpeciesTag_Task_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeSpeciesTag_Task_C \ +static_assert(alignof(UChangeSpeciesTag_Task_C) == 0x000008, "Wrong alignment on UChangeSpeciesTag_Task_C"); \ +static_assert(sizeof(UChangeSpeciesTag_Task_C) == 0x0000C0, "Wrong size on UChangeSpeciesTag_Task_C"); \ +static_assert(offsetof(UChangeSpeciesTag_Task_C, UberGraphFrame) == 0x000088, "Member 'UChangeSpeciesTag_Task_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeSpeciesTag_Task_C, TargetActor) == 0x000090, "Member 'UChangeSpeciesTag_Task_C::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UChangeSpeciesTag_Task_C, SpeciesTag) == 0x0000B8, "Member 'UChangeSpeciesTag_Task_C::SpeciesTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_KnockParams_C \ +static_assert(alignof(UBP_KnockParams_C) == 0x000008, "Wrong alignment on UBP_KnockParams_C"); \ +static_assert(sizeof(UBP_KnockParams_C) == 0x000068, "Wrong size on UBP_KnockParams_C"); \ +static_assert(offsetof(UBP_KnockParams_C, Knockback) == 0x000028, "Member 'UBP_KnockParams_C::Knockback' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph \ +static_assert(alignof(GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph) == 0x000004, "Wrong alignment on GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph"); \ +static_assert(sizeof(GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph) == 0x000004, "Wrong size on GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph"); \ +static_assert(offsetof(GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Photograph_C_ExecuteUbergraph_GA_Patrol_Action_Photograph::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Photograph_C \ +static_assert(alignof(UGA_Patrol_Action_Photograph_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Photograph_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Photograph_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Photograph_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Photograph_C, UberGraphFrame_GA_Patrol_Action_Photograph_C) == 0x000690, "Member 'UGA_Patrol_Action_Photograph_C::UberGraphFrame_GA_Patrol_Action_Photograph_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_AddActionToMemory \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_AddActionToMemory) == 0x000004, "Wrong alignment on WrestlerReactionMemoryComponent_C_AddActionToMemory"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_AddActionToMemory) == 0x000010, "Wrong size on WrestlerReactionMemoryComponent_C_AddActionToMemory"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_AddActionToMemory, Action) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_AddActionToMemory::Action' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_AddActionToMemory, CallFunc_Array_Add_ReturnValue) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_AddActionToMemory::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_AddActionToMemory, CallFunc_Array_Length_ReturnValue) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_AddActionToMemory::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_AddActionToMemory, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00000C, "Member 'WrestlerReactionMemoryComponent_C_AddActionToMemory::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_CheckCombatState \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_CheckCombatState) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_CheckCombatState"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_CheckCombatState) == 0x000020, "Wrong size on WrestlerReactionMemoryComponent_C_CheckCombatState"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_CheckCombatState, Return) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_CheckCombatState::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_CheckCombatState, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_CheckCombatState::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_CheckCombatState, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_CheckCombatState::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_CheckCombatState, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_CheckCombatState::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_CheckCombatState, CallFunc_AIHasStateTag_ReturnValue) == 0x000019, "Member 'WrestlerReactionMemoryComponent_C_CheckCombatState::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction) == 0x000038, "Wrong size on WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, Tag) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, Action) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::Action' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_HasTag_ReturnValue) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_HasTag_ReturnValue_1) == 0x000031, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_HasTag_ReturnValue_2) == 0x000032, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_HasTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_HasTag_ReturnValue_3) == 0x000033, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_HasTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction, CallFunc_HasTag_ReturnValue_4) == 0x000034, "Member 'WrestlerReactionMemoryComponent_C_ConvertReactionTagToAction::CallFunc_HasTag_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent) == 0x000068, "Wrong size on WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, EntryPoint) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_K2_SetTimer_ReturnValue) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_K2_SetTimer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_K2_IsValidTimerHandle_ReturnValue) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_K2_IsValidTimerHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_GetOwner_ReturnValue) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, K2Node_Event_DeltaSeconds) == 0x00002C, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, K2Node_Event_EndPlayReason) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_K2_IsValidTimerHandle_ReturnValue_1) == 0x000031, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_K2_IsValidTimerHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_K2_SetTimer_ReturnValue_1) == 0x000038, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_K2_SetTimer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000040, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_GetAIController_ReturnValue) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_IsValid_ReturnValue_1) == 0x000059, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_AIHasStateTag_ReturnValue) == 0x00005A, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_K2_SetTimer_Time_ImplicitCast) == 0x00005C, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_K2_SetTimer_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_ExecuteUbergraph_WrestlerReactionMemoryComponent::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_ForgetOldestAction \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_ForgetOldestAction) == 0x000004, "Wrong alignment on WrestlerReactionMemoryComponent_C_ForgetOldestAction"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_ForgetOldestAction) == 0x000008, "Wrong size on WrestlerReactionMemoryComponent_C_ForgetOldestAction"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ForgetOldestAction, CallFunc_Array_Length_ReturnValue) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_ForgetOldestAction::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ForgetOldestAction, CallFunc_Greater_IntInt_ReturnValue) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_ForgetOldestAction::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetActionCountFromTag \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag) == 0x000004, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetActionCountFromTag"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag) == 0x000014, "Wrong size on WrestlerReactionMemoryComponent_C_GetActionCountFromTag"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag, Tag) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetActionCountFromTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag, Count) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_GetActionCountFromTag::Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag, CallFunc_ConvertReactionTagToAction_Action) == 0x00000C, "Member 'WrestlerReactionMemoryComponent_C_GetActionCountFromTag::CallFunc_ConvertReactionTagToAction_Action' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetActionCountFromTag, CallFunc_GetSpecificActionCount_Count) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_GetActionCountFromTag::CallFunc_GetSpecificActionCount_Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetHPAsPercentage \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetHPAsPercentage"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage) == 0x000040, "Wrong size on WrestlerReactionMemoryComponent_C_GetHPAsPercentage"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, HealthPercentage) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::HealthPercentage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000009, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_GetFloatAttribute_ReturnValue) == 0x00000C, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000014, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_BooleanAND_ReturnValue) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetHPAsPercentage, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000038, "Member 'WrestlerReactionMemoryComponent_C_GetHPAsPercentage::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetLastXActions \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetLastXActions) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetLastXActions"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetLastXActions) == 0x000050, "Wrong size on WrestlerReactionMemoryComponent_C_GetLastXActions"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, Count) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, Reactions) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::Reactions' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, A) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::A' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, Temp_int_Variable) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Array_Get_Item) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Subtract_IntInt_ReturnValue) == 0x000038, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x00003C, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Clamp_ReturnValue) == 0x000040, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Clamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Clamp_ReturnValue_1) == 0x000044, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Clamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetLastXActions, CallFunc_Array_Add_ReturnValue) == 0x00004C, "Member 'WrestlerReactionMemoryComponent_C_GetLastXActions::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetMostCommon3Actions \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetMostCommon3Actions"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions) == 0x000068, "Wrong size on WrestlerReactionMemoryComponent_C_GetMostCommon3Actions"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, Return) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, MostCommonAction) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::MostCommonAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, SecondAction) == 0x000014, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::SecondAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, ThirdAction) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::ThirdAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, TmpCount) == 0x00001C, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::TmpCount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, ThirdActionCount) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::ThirdActionCount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, SecondActionCount) == 0x000024, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::SecondActionCount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, FirstActionCount) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::FirstActionCount' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, Top3PlayerActions) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::Top3PlayerActions' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, Temp_int_Array_Index_Variable) == 0x000040, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, Temp_int_Loop_Counter_Variable) == 0x000044, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Add_IntInt_ReturnValue) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Array_Get_Item) == 0x00004C, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_GetSpecificActionCount_Count) == 0x000058, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_GetSpecificActionCount_Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Greater_IntInt_ReturnValue) == 0x00005C, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Greater_IntInt_ReturnValue_1) == 0x00005D, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Add_IntInt_ReturnValue_1) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetMostCommon3Actions, CallFunc_Greater_IntInt_ReturnValue_2) == 0x000064, "Member 'WrestlerReactionMemoryComponent_C_GetMostCommon3Actions::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetPriorityActor \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetPriorityActor) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetPriorityActor"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetPriorityActor) == 0x000028, "Wrong size on WrestlerReactionMemoryComponent_C_GetPriorityActor"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, Return) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_GetAIController_ReturnValue) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_IsValid_ReturnValue_1) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_GetTargetActor_ReturnValue) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetPriorityActor, CallFunc_IsValid_ReturnValue_2) == 0x000021, "Member 'WrestlerReactionMemoryComponent_C_GetPriorityActor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetReactionMemory \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetReactionMemory) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetReactionMemory"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetReactionMemory) == 0x000010, "Wrong size on WrestlerReactionMemoryComponent_C_GetReactionMemory"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetReactionMemory, Memory) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetReactionMemory::Memory' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_GetSpecificActionCount \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount) == 0x000004, "Wrong alignment on WrestlerReactionMemoryComponent_C_GetSpecificActionCount"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount) == 0x00002C, "Wrong size on WrestlerReactionMemoryComponent_C_GetSpecificActionCount"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, Action) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::Action' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, Count) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, I) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::I' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, Temp_int_Variable) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_Array_Get_Item) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_Array_Length_ReturnValue) == 0x00001C, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_Less_IntInt_ReturnValue) == 0x000021, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_GetSpecificActionCount, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_GetSpecificActionCount::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_ReceiveEndPlay \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on WrestlerReactionMemoryComponent_C_ReceiveEndPlay"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_ReceiveEndPlay) == 0x000001, "Wrong size on WrestlerReactionMemoryComponent_C_ReceiveEndPlay"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_ReceiveTick \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerReactionMemoryComponent_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerReactionMemoryComponent_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_RecordIncomingAction \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_RecordIncomingAction) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_RecordIncomingAction"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_RecordIncomingAction) == 0x000070, "Wrong size on WrestlerReactionMemoryComponent_C_RecordIncomingAction"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, EventTag) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::EventTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_GetDebugStringFromGameplayTag_ReturnValue) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_GetDebugStringFromGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_Concat_StrStr_ReturnValue) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000038, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_ConvertReactionTagToAction_Action) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_ConvertReactionTagToAction_Action' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000049, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordIncomingAction, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_RecordIncomingAction::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction) == 0x0001B0, "Wrong size on WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_1) == 0x000001, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_2) == 0x000002, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_3) == 0x000003, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_4) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_IsValid_ReturnValue) == 0x000005, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_CheckCombatState_Return) == 0x000006, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_CheckCombatState_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000038, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_2) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_3) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x000068, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_4) == 0x000078, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000079, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00007A, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5) == 0x000080, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_5) == 0x000090, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_6) == 0x000098, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, K2Node_DynamicCast_bSuccess_6) == 0x0000A8, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0000A9, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0000AA, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B0, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_GetVelocity_ReturnValue) == 0x0000C8, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_GetPriorityActor_Return) == 0x0000E0, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_GetPriorityActor_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_VSize_ReturnValue) == 0x0000E8, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_5) == 0x0000F1, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_GetOwner_ReturnValue) == 0x0000F8, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000100, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000118, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000130, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_VSize_ReturnValue_1) == 0x000150, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000158, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000159, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000160, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000180, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000188, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x0001A8, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction, Temp_bool_Variable_6) == 0x0001A9, "Member 'WrestlerReactionMemoryComponent_C_RecordTargetCurrentAction::Temp_bool_Variable_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_SuggestEnemyAction \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_SuggestEnemyAction"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction) == 0x000150, "Wrong size on WrestlerReactionMemoryComponent_C_SuggestEnemyAction"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, SuggestedActions) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::SuggestedActions' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, DebugString2) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::DebugString2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, DebugString) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::DebugString' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, SuggestionArray) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::SuggestionArray' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Suggested) == 0x000040, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Suggested' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Array_Index_Variable) == 0x000044, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Array_Index_Variable_1) == 0x000048, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Loop_Counter_Variable) == 0x00004C, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Array_Index_Variable_2) == 0x000054, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetSpecificActionCount_Count) == 0x000058, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetSpecificActionCount_Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetSpecificActionCount_Count_1) == 0x00005C, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetSpecificActionCount_Count_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Loop_Counter_Variable_1) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Len_ReturnValue) == 0x000064, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Len_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Add_IntInt_ReturnValue_1) == 0x000068, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Greater_IntInt_ReturnValue) == 0x00006C, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Get_Item) == 0x00006D, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue) == 0x000070, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue) == 0x000080, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000090, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000A0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue_3) == 0x0000B0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Length_ReturnValue) == 0x0000C0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, Temp_int_Loop_Counter_Variable_2) == 0x0000C4, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_AddUnique_ReturnValue) == 0x0000C8, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Less_IntInt_ReturnValue) == 0x0000CC, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000D0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetHPAsPercentage_HealthPercentage) == 0x0000D8, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetHPAsPercentage_HealthPercentage' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Add_IntInt_ReturnValue_3) == 0x0000E4, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0000E8, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x0000E9, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_BooleanOR_ReturnValue) == 0x0000EA, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GreaterEqual_IntInt_ReturnValue_2) == 0x0000EB, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GreaterEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetMostCommon3Actions_Return) == 0x0000F0, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetMostCommon3Actions_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetMostCommon3Actions_MostCommonAction) == 0x000100, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetMostCommon3Actions_MostCommonAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetMostCommon3Actions_SecondAction) == 0x000104, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetMostCommon3Actions_SecondAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetMostCommon3Actions_ThirdAction) == 0x000108, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetMostCommon3Actions_ThirdAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Length_ReturnValue_1) == 0x00010C, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Get_Item_1) == 0x000110, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Less_IntInt_ReturnValue_1) == 0x000111, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, K2Node_SwitchEnum_CmpSuccess) == 0x000112, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Get_Item_2) == 0x000113, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Array_Length_ReturnValue_2) == 0x000114, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue_1) == 0x000118, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Less_IntInt_ReturnValue_2) == 0x000128, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000130, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestEnemyAction, CallFunc_Concat_StrStr_ReturnValue_5) == 0x000140, "Member 'WrestlerReactionMemoryComponent_C_SuggestEnemyAction::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerReactionMemoryComponent_C_SuggestTargetProfile \ +static_assert(alignof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile) == 0x000008, "Wrong alignment on WrestlerReactionMemoryComponent_C_SuggestTargetProfile"); \ +static_assert(sizeof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile) == 0x000090, "Wrong size on WrestlerReactionMemoryComponent_C_SuggestTargetProfile"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, PlayerProfile) == 0x000000, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::PlayerProfile' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, Profile) == 0x000001, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::Profile' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, Passive) == 0x000004, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::Passive' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, AggressiveInterrupt) == 0x000008, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::AggressiveInterrupt' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, AggressiveHeavy) == 0x00000C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::AggressiveHeavy' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, AggressiveMedium) == 0x000010, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::AggressiveMedium' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, AggressiveLight) == 0x000014, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::AggressiveLight' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, Temp_int_Array_Index_Variable) == 0x000018, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Subtract_IntInt_ReturnValue) == 0x00001C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Greater_IntInt_ReturnValue) == 0x000024, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Greater_IntInt_ReturnValue_1) == 0x00002C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x00002D, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue) == 0x000030, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Concat_StrStr_ReturnValue) == 0x000040, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetSpecificActionCount_Count) == 0x000050, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetSpecificActionCount_Count' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetSpecificActionCount_Count_1) == 0x000054, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetSpecificActionCount_Count_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, Temp_int_Loop_Counter_Variable) == 0x000058, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00005C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Add_IntInt_ReturnValue_2) == 0x000060, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x000064, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue_2) == 0x000065, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue_3) == 0x000066, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue_4) == 0x000067, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetMostCommon3Actions_Return) == 0x000068, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetMostCommon3Actions_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetMostCommon3Actions_MostCommonAction) == 0x000078, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetMostCommon3Actions_MostCommonAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetMostCommon3Actions_SecondAction) == 0x00007C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetMostCommon3Actions_SecondAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GetMostCommon3Actions_ThirdAction) == 0x000080, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GetMostCommon3Actions_ThirdAction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_GreaterEqual_IntInt_ReturnValue_5) == 0x000084, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_GreaterEqual_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Array_Get_Item) == 0x000085, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, K2Node_SwitchEnum_CmpSuccess) == 0x000086, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Array_Length_ReturnValue) == 0x000088, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerReactionMemoryComponent_C_SuggestTargetProfile, CallFunc_Less_IntInt_ReturnValue) == 0x00008C, "Member 'WrestlerReactionMemoryComponent_C_SuggestTargetProfile::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerReactionMemoryComponent_C \ +static_assert(alignof(UWrestlerReactionMemoryComponent_C) == 0x000008, "Wrong alignment on UWrestlerReactionMemoryComponent_C"); \ +static_assert(sizeof(UWrestlerReactionMemoryComponent_C) == 0x0001A8, "Wrong size on UWrestlerReactionMemoryComponent_C"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UWrestlerReactionMemoryComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, MemoryLength) == 0x0000A8, "Member 'UWrestlerReactionMemoryComponent_C::MemoryLength' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, ForgetRate) == 0x0000AC, "Member 'UWrestlerReactionMemoryComponent_C::ForgetRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, ForgetfulnessTimer) == 0x0000B0, "Member 'UWrestlerReactionMemoryComponent_C::ForgetfulnessTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, PrintDebugStrings) == 0x0000B8, "Member 'UWrestlerReactionMemoryComponent_C::PrintDebugStrings' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, LightAttackActionTags) == 0x0000C0, "Member 'UWrestlerReactionMemoryComponent_C::LightAttackActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, MediumAttackActionTags) == 0x0000E0, "Member 'UWrestlerReactionMemoryComponent_C::MediumAttackActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, HeavyAttackActionTags) == 0x000100, "Member 'UWrestlerReactionMemoryComponent_C::HeavyAttackActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, CounterActionTags) == 0x000120, "Member 'UWrestlerReactionMemoryComponent_C::CounterActionTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, LightAttackThreshold) == 0x000140, "Member 'UWrestlerReactionMemoryComponent_C::LightAttackThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, HeavyAttackThreshold) == 0x000144, "Member 'UWrestlerReactionMemoryComponent_C::HeavyAttackThreshold' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, ActionRecordingTimer) == 0x000148, "Member 'UWrestlerReactionMemoryComponent_C::ActionRecordingTimer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, ActionMemory) == 0x000150, "Member 'UWrestlerReactionMemoryComponent_C::ActionMemory' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, TargetStateRecordInterval) == 0x000160, "Member 'UWrestlerReactionMemoryComponent_C::TargetStateRecordInterval' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, ActionsToTestForSuggestion) == 0x000168, "Member 'UWrestlerReactionMemoryComponent_C::ActionsToTestForSuggestion' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, OnActionAddedToMemory) == 0x000178, "Member 'UWrestlerReactionMemoryComponent_C::OnActionAddedToMemory' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, OwningAI) == 0x000188, "Member 'UWrestlerReactionMemoryComponent_C::OwningAI' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, PriorityActor) == 0x000190, "Member 'UWrestlerReactionMemoryComponent_C::PriorityActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, HasBeenInCombat) == 0x000198, "Member 'UWrestlerReactionMemoryComponent_C::HasBeenInCombat' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerReactionMemoryComponent_C, CombatDelta) == 0x0001A0, "Member 'UWrestlerReactionMemoryComponent_C::CombatDelta' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in \ +static_assert(alignof(GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in) == 0x000004, "Wrong alignment on GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in"); \ +static_assert(sizeof(GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in) == 0x000004, "Wrong size on GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in"); \ +static_assert(offsetof(GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Police_Break_in_C_ExecuteUbergraph_GA_Patrol_Action_Police_Break_in::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Police_Break_in_C \ +static_assert(alignof(UGA_Patrol_Action_Police_Break_in_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Police_Break_in_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Police_Break_in_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Police_Break_in_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Police_Break_in_C, UberGraphFrame_GA_Patrol_Action_Police_Break_in_C) == 0x000690, "Member 'UGA_Patrol_Action_Police_Break_in_C::UberGraphFrame_GA_Patrol_Action_Police_Break_in_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake \ +static_assert(alignof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake) == 0x000008, "Wrong alignment on WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake"); \ +static_assert(sizeof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake) == 0x0000B0, "Wrong size on WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, EntryPoint) == 0x000000, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_MapRangeClamped_ReturnValue) == 0x000010, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_Event_Scale) == 0x000018, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_Event_Scale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, Temp_bool_Has_Been_Initd_Variable) == 0x00001C, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, Temp_bool_IsClosed_Variable) == 0x00001D, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000028, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_FOscillator) == 0x000030, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_FOscillator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_FOscillator_1) == 0x00003C, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_FOscillator_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000048, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_FOscillator_2) == 0x000050, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_FOscillator_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_ROscillator) == 0x00005C, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_ROscillator' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000080, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000088, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000090, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_Amplitude_ImplicitCast) == 0x000098, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_Amplitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_Amplitude_ImplicitCast_1) == 0x00009C, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_Amplitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2) == 0x0000A0, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake, K2Node_MakeStruct_Amplitude_ImplicitCast_2) == 0x0000A8, "Member 'WrestlerCameraShake_C_ExecuteUbergraph_WrestlerCameraShake::K2Node_MakeStruct_Amplitude_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCameraShake_C_ReceivePlayShake \ +static_assert(alignof(WrestlerCameraShake_C_ReceivePlayShake) == 0x000004, "Wrong alignment on WrestlerCameraShake_C_ReceivePlayShake"); \ +static_assert(sizeof(WrestlerCameraShake_C_ReceivePlayShake) == 0x000004, "Wrong size on WrestlerCameraShake_C_ReceivePlayShake"); \ +static_assert(offsetof(WrestlerCameraShake_C_ReceivePlayShake, Scale) == 0x000000, "Member 'WrestlerCameraShake_C_ReceivePlayShake::Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCameraShake_C \ +static_assert(alignof(UWrestlerCameraShake_C) == 0x000010, "Wrong alignment on UWrestlerCameraShake_C"); \ +static_assert(sizeof(UWrestlerCameraShake_C) == 0x000230, "Wrong size on UWrestlerCameraShake_C"); \ +static_assert(offsetof(UWrestlerCameraShake_C, UberGraphFrame) == 0x0001F0, "Member 'UWrestlerCameraShake_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraShake_C, MainScale) == 0x0001F8, "Member 'UWrestlerCameraShake_C::MainScale' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraShake_C, BaseRot) == 0x000200, "Member 'UWrestlerCameraShake_C::BaseRot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCameraShake_C, Property) == 0x000228, "Member 'UWrestlerCameraShake_C::Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Explosion_sharp_C \ +static_assert(alignof(UCameraShake_Explosion_sharp_C) == 0x000010, "Wrong alignment on UCameraShake_Explosion_sharp_C"); \ +static_assert(sizeof(UCameraShake_Explosion_sharp_C) == 0x000230, "Wrong size on UCameraShake_Explosion_sharp_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Gunshot_player_C \ +static_assert(alignof(UCameraShake_Gunshot_player_C) == 0x000010, "Wrong alignment on UCameraShake_Gunshot_player_C"); \ +static_assert(sizeof(UCameraShake_Gunshot_player_C) == 0x000230, "Wrong size on UCameraShake_Gunshot_player_C"); \ + +#define DUMPER7_ASSERTS_UGE_GlideStartDelay_C \ +static_assert(alignof(UGE_GlideStartDelay_C) == 0x000008, "Wrong alignment on UGE_GlideStartDelay_C"); \ +static_assert(sizeof(UGE_GlideStartDelay_C) == 0x000A70, "Wrong size on UGE_GlideStartDelay_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_gunshot_stoppedtime_C \ +static_assert(alignof(UCameraShake_gunshot_stoppedtime_C) == 0x000010, "Wrong alignment on UCameraShake_gunshot_stoppedtime_C"); \ +static_assert(sizeof(UCameraShake_gunshot_stoppedtime_C) == 0x000230, "Wrong size on UCameraShake_gunshot_stoppedtime_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore) == 0x000030, "Wrong size on BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_IsPlayerControlled_ReturnValue) == 0x000014, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_IsPlayerControlled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_SuggestTargetProfile_PlayerProfile) == 0x000021, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_SuggestTargetProfile_PlayerProfile' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_Array_Find_ReturnValue) == 0x000024, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore, CallFunc_NotEqual_IntInt_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_SuggestedTargetProfile_C_GetScore::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_SuggestedTargetProfile_C \ +static_assert(alignof(UBP_WrestlerTaskScore_SuggestedTargetProfile_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_SuggestedTargetProfile_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_SuggestedTargetProfile_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_SuggestedTargetProfile_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_SuggestedTargetProfile_C, SpecifiedPlayerProfiles) == 0x000030, "Member 'UBP_WrestlerTaskScore_SuggestedTargetProfile_C::SpecifiedPlayerProfiles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USecondaryAbilityUnlocked_C \ +static_assert(alignof(USecondaryAbilityUnlocked_C) == 0x000010, "Wrong alignment on USecondaryAbilityUnlocked_C"); \ +static_assert(sizeof(USecondaryAbilityUnlocked_C) == 0x0007B0, "Wrong size on USecondaryAbilityUnlocked_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore) == 0x0000F0, "Wrong size on BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Count) == 0x000014, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Count' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Temp_byte_Variable) == 0x000018, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000028, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_SwitchEnum_CmpSuccess) == 0x000039, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_GetAIController_ReturnValue_1) == 0x000040, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_GetEnemySubsystem_ReturnValue) == 0x000048, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_GetEnemySubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000050, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_DynamicCast_bSuccess_1) == 0x000060, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_K2_GetAllEnemiesInCombat_ReturnValue) == 0x000068, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_K2_GetAllEnemiesInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_GetGameTeamId_ReturnValue) == 0x000078, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Array_Length_ReturnValue) == 0x00007C, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000080, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Temp_int_Variable) == 0x000098, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Temp_int_Loop_Counter_Variable) == 0x00009C, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Less_IntInt_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Add_IntInt_ReturnValue) == 0x0000A4, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Temp_int_Array_Index_Variable) == 0x0000A8, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Array_Get_Item) == 0x0000B0, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0000B8, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x0000B9, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000C0, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Vector_Distance_ReturnValue) == 0x0000D8, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, Temp_byte_Variable_1) == 0x0000E0, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, K2Node_SwitchEnum_CmpSuccess_1) == 0x0000E1, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_InRange_IntInt_ReturnValue) == 0x0000E2, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_InRange_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000E4, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerTaskScore_EnemiesCloseToTargetCount_C_GetScore::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C \ +static_assert(alignof(UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C, MaxDistanceFromPlayer) == 0x000030, "Member 'UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C::MaxDistanceFromPlayer' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C, MinCount) == 0x000038, "Member 'UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C::MinCount' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C, MaxCount) == 0x00003C, "Member 'UBP_WrestlerTaskScore_EnemiesCloseToTargetCount_C::MaxCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SingleMapInputLegend_C_SetFontInfo \ +static_assert(alignof(WBP_SingleMapInputLegend_C_SetFontInfo) == 0x000008, "Wrong alignment on WBP_SingleMapInputLegend_C_SetFontInfo"); \ +static_assert(sizeof(WBP_SingleMapInputLegend_C_SetFontInfo) == 0x000058, "Wrong size on WBP_SingleMapInputLegend_C_SetFontInfo"); \ +static_assert(offsetof(WBP_SingleMapInputLegend_C_SetFontInfo, InFontInfo) == 0x000000, "Member 'WBP_SingleMapInputLegend_C_SetFontInfo::InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend \ +static_assert(alignof(WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend) == 0x000008, "Wrong alignment on WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend"); \ +static_assert(sizeof(WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend) == 0x000060, "Wrong size on WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend"); \ +static_assert(offsetof(WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend, EntryPoint) == 0x000000, "Member 'WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend, K2Node_CustomEvent_InFontInfo) == 0x000008, "Member 'WBP_SingleMapInputLegend_C_ExecuteUbergraph_WBP_SingleMapInputLegend::K2Node_CustomEvent_InFontInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SingleMapInputLegend_C \ +static_assert(alignof(UWBP_SingleMapInputLegend_C) == 0x000008, "Wrong alignment on UWBP_SingleMapInputLegend_C"); \ +static_assert(sizeof(UWBP_SingleMapInputLegend_C) == 0x000308, "Wrong size on UWBP_SingleMapInputLegend_C"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_SingleMapInputLegend_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, InputIcon) == 0x0002D0, "Member 'UWBP_SingleMapInputLegend_C::InputIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, InputText) == 0x0002D8, "Member 'UWBP_SingleMapInputLegend_C::InputText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, LegendSpacer) == 0x0002E0, "Member 'UWBP_SingleMapInputLegend_C::LegendSpacer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, InputTextToDisplay) == 0x0002E8, "Member 'UWBP_SingleMapInputLegend_C::InputTextToDisplay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleMapInputLegend_C, InputIconToDisplay) == 0x000300, "Member 'UWBP_SingleMapInputLegend_C::InputIconToDisplay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_AgentMultiTag_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_AgentMultiTag_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore) == 0x000070, "Wrong size on BP_WrestlerTaskScore_AgentMultiTag_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, PriorityActor) == 0x000014, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::PriorityActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CachedActor) == 0x000020, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CachedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, Match) == 0x000028, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::Match' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, Temp_bool_True_if_break_was_hit_Variable) == 0x000029, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, Temp_int_Array_Index_Variable) == 0x00002C, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_Not_PreBool_ReturnValue) == 0x000030, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_Add_IntInt_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000040, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000048, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, Temp_bool_Variable) == 0x000059, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_Array_Get_Item) == 0x00005C, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000068, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_Less_IntInt_ReturnValue) == 0x000069, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AgentMultiTag_C_GetScore, CallFunc_BooleanAND_ReturnValue) == 0x00006A, "Member 'BP_WrestlerTaskScore_AgentMultiTag_C_GetScore::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_AgentMultiTag_C \ +static_assert(alignof(UBP_WrestlerTaskScore_AgentMultiTag_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_AgentMultiTag_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_AgentMultiTag_C) == 0x000048, "Wrong size on UBP_WrestlerTaskScore_AgentMultiTag_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_AgentMultiTag_C, CheckPlayer) == 0x000030, "Member 'UBP_WrestlerTaskScore_AgentMultiTag_C::CheckPlayer' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_AgentMultiTag_C, Tags) == 0x000038, "Member 'UBP_WrestlerTaskScore_AgentMultiTag_C::Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore) == 0x0000C8, "Wrong size on BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_GetRangedWeapon_ReturnValue) == 0x000050, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_GetRangedWeapon_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_VSize_ReturnValue) == 0x000078, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_InRange_FloatFloat_ReturnValue) == 0x000088, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_InRange_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_MapRangeClamped_ReturnValue) == 0x000098, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x0000A0, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_InRange_FloatFloat_Max_ImplicitCast) == 0x0000A8, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_InRange_FloatFloat_Max_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000B0, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_InRange_FloatFloat_Min_ImplicitCast) == 0x0000B8, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_InRange_FloatFloat_Min_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0000C0, "Member 'BP_WrestlerTaskScore_TargetInWeaponRange_C_GetScore::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_TargetInWeaponRange_C \ +static_assert(alignof(UBP_WrestlerTaskScore_TargetInWeaponRange_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_TargetInWeaponRange_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_TargetInWeaponRange_C) == 0x000050, "Wrong size on UBP_WrestlerTaskScore_TargetInWeaponRange_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_TargetInWeaponRange_C, MinRangeScoreMultiplier) == 0x000030, "Member 'UBP_WrestlerTaskScore_TargetInWeaponRange_C::MinRangeScoreMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_TargetInWeaponRange_C, MaxRangeScoreMultiplier) == 0x000038, "Member 'UBP_WrestlerTaskScore_TargetInWeaponRange_C::MaxRangeScoreMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_TargetInWeaponRange_C, MinRangeMultiplier) == 0x000040, "Member 'UBP_WrestlerTaskScore_TargetInWeaponRange_C::MinRangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_TargetInWeaponRange_C, MaxRangeMultiplier) == 0x000048, "Member 'UBP_WrestlerTaskScore_TargetInWeaponRange_C::MaxRangeMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_EnemyDashFX_C \ +static_assert(alignof(UAN_EnemyDashFX_C) == 0x000008, "Wrong alignment on UAN_EnemyDashFX_C"); \ +static_assert(sizeof(UAN_EnemyDashFX_C) == 0x000040, "Wrong size on UAN_EnemyDashFX_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore) == 0x0000B0, "Wrong size on BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CachedDist) == 0x000018, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CachedDist' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000040, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_X) == 0x000058, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_Y) == 0x000060, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_Z) == 0x000068, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_X_1) == 0x000070, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_Y_1) == 0x000078, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BreakVector_Z_1) == 0x000080, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000088, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_Abs_ReturnValue) == 0x000090, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000099, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_BooleanOR_ReturnValue) == 0x00009A, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, CallFunc_MapRangeClamped_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x0000A8, "Member 'BP_WrestlerTaskScore_DistanceFromTarget_Z_C_GetScore::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_DistanceFromTarget_Z_C \ +static_assert(alignof(UBP_WrestlerTaskScore_DistanceFromTarget_Z_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_DistanceFromTarget_Z_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_DistanceFromTarget_Z_C) == 0x000048, "Wrong size on UBP_WrestlerTaskScore_DistanceFromTarget_Z_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_DistanceFromTarget_Z_C, MinZoffset) == 0x000030, "Member 'UBP_WrestlerTaskScore_DistanceFromTarget_Z_C::MinZoffset' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_DistanceFromTarget_Z_C, MaxZoffset) == 0x000038, "Member 'UBP_WrestlerTaskScore_DistanceFromTarget_Z_C::MaxZoffset' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_DistanceFromTarget_Z_C, SingleDirection) == 0x000040, "Member 'UBP_WrestlerTaskScore_DistanceFromTarget_Z_C::SingleDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuLayout_C_Show_Hide_Backrground \ +static_assert(alignof(TCR_RPGMenuLayout_C_Show_Hide_Backrground) == 0x000001, "Wrong alignment on TCR_RPGMenuLayout_C_Show_Hide_Backrground"); \ +static_assert(sizeof(TCR_RPGMenuLayout_C_Show_Hide_Backrground) == 0x000001, "Wrong size on TCR_RPGMenuLayout_C_Show_Hide_Backrground"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_Show_Hide_Backrground, Hide) == 0x000000, "Member 'TCR_RPGMenuLayout_C_Show_Hide_Backrground::Hide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout \ +static_assert(alignof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout) == 0x000008, "Wrong alignment on TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout"); \ +static_assert(sizeof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout) == 0x000028, "Wrong size on TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout, EntryPoint) == 0x000000, "Member 'TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout, CallFunc_IsDebug_ReturnValue) == 0x000004, "Member 'TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout::CallFunc_IsDebug_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout, CallFunc_BooleanOR_ReturnValue) == 0x000005, "Member 'TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout, CallFunc_GetVersionInfo_ReturnValue) == 0x000008, "Member 'TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout::CallFunc_GetVersionInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout, CallFunc_GetVersionDate_ReturnValue) == 0x000018, "Member 'TCR_RPGMenuLayout_C_ExecuteUbergraph_TCR_RPGMenuLayout::CallFunc_GetVersionDate_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_RPGMenuLayout_C \ +static_assert(alignof(UTCR_RPGMenuLayout_C) == 0x000008, "Wrong alignment on UTCR_RPGMenuLayout_C"); \ +static_assert(sizeof(UTCR_RPGMenuLayout_C) == 0x000530, "Wrong size on UTCR_RPGMenuLayout_C"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, UberGraphFrame) == 0x0004D0, "Member 'UTCR_RPGMenuLayout_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Background) == 0x0004D8, "Member 'UTCR_RPGMenuLayout_C::Background' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, BlackBar_Left) == 0x0004E0, "Member 'UTCR_RPGMenuLayout_C::BlackBar_Left' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, BlackBar_Right) == 0x0004E8, "Member 'UTCR_RPGMenuLayout_C::BlackBar_Right' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, BlackBg) == 0x0004F0, "Member 'UTCR_RPGMenuLayout_C::BlackBg' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Content_Buttons) == 0x0004F8, "Member 'UTCR_RPGMenuLayout_C::Content_Buttons' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Content_Right) == 0x000500, "Member 'UTCR_RPGMenuLayout_C::Content_Right' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Content_Top) == 0x000508, "Member 'UTCR_RPGMenuLayout_C::Content_Top' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, date) == 0x000510, "Member 'UTCR_RPGMenuLayout_C::date' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Gradient) == 0x000518, "Member 'UTCR_RPGMenuLayout_C::Gradient' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, Version) == 0x000520, "Member 'UTCR_RPGMenuLayout_C::Version' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuLayout_C, ShowDebug) == 0x000528, "Member 'UTCR_RPGMenuLayout_C::ShowDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_DistanceThreshold_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_DistanceThreshold_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore) == 0x000068, "Wrong size on BP_WrestlerTaskScore_DistanceThreshold_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, Temp_bool_Variable) == 0x000014, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000030, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000050, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_Square_ReturnValue) == 0x000058, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000060, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000061, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_DistanceThreshold_C_GetScore, K2Node_Select_Default) == 0x000062, "Member 'BP_WrestlerTaskScore_DistanceThreshold_C_GetScore::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_DistanceThreshold_C \ +static_assert(alignof(UBP_WrestlerTaskScore_DistanceThreshold_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_DistanceThreshold_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_DistanceThreshold_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_DistanceThreshold_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_DistanceThreshold_C, Distance) == 0x000030, "Member 'UBP_WrestlerTaskScore_DistanceThreshold_C::Distance' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_DistanceThreshold_C, LessThan) == 0x000038, "Member 'UBP_WrestlerTaskScore_DistanceThreshold_C::LessThan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_TargetInLOS_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_TargetInLOS_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore) == 0x000030, "Wrong size on BP_WrestlerTaskScore_TargetInLOS_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, CallFunc_GetBlackboard_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, CallFunc_MakeLiteralName_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetInLOS_C_GetScore, CallFunc_GetValueAsBool_ReturnValue) == 0x000029, "Member 'BP_WrestlerTaskScore_TargetInLOS_C_GetScore::CallFunc_GetValueAsBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_TargetInLOS_C \ +static_assert(alignof(UBP_WrestlerTaskScore_TargetInLOS_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_TargetInLOS_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_TargetInLOS_C) == 0x000030, "Wrong size on UBP_WrestlerTaskScore_TargetInLOS_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_AmmoCount_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_AmmoCount_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_AmmoCount_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_AmmoCount_C_GetScore) == 0x000060, "Wrong size on BP_WrestlerTaskScore_AmmoCount_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000014, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GetFloatAttribute_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x00001C, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000020, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GetRangedWeapon_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GetRangedWeapon_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000048, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000049, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000050, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_AmmoCount_C_GetScore, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000058, "Member 'BP_WrestlerTaskScore_AmmoCount_C_GetScore::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_AmmoCount_C \ +static_assert(alignof(UBP_WrestlerTaskScore_AmmoCount_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_AmmoCount_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_AmmoCount_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_AmmoCount_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_AmmoCount_C, CheckHigher) == 0x000030, "Member 'UBP_WrestlerTaskScore_AmmoCount_C::CheckHigher' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_AmmoCount_C, TargetAmmoPercentage) == 0x000038, "Member 'UBP_WrestlerTaskScore_AmmoCount_C::TargetAmmoPercentage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore) == 0x000028, "Wrong size on BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C_GetScore::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C \ +static_assert(alignof(UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C) == 0x000038, "Wrong size on UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C, Timeout) == 0x000030, "Member 'UBP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_C::Timeout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_PunchImpact_Heavy_C \ +static_assert(alignof(UCameraShake_PunchImpact_Heavy_C) == 0x000010, "Wrong alignment on UCameraShake_PunchImpact_Heavy_C"); \ +static_assert(sizeof(UCameraShake_PunchImpact_Heavy_C) == 0x000230, "Wrong size on UCameraShake_PunchImpact_Heavy_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore) == 0x000048, "Wrong size on BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_GetEnemySubsystem_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_GetEnemySubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_K2_GetNumberOfEnemiesInCombat_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_K2_GetNumberOfEnemiesInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_NormalizeToRange_ReturnValue) == 0x000038, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000040, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000041, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000044, "Member 'BP_WrestlerTaskScore_EnemiesInCombatCount_C_GetScore::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_EnemiesInCombatCount_C \ +static_assert(alignof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_EnemiesInCombatCount_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_EnemiesInCombatCount_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C, Filter_Mode) == 0x000030, "Member 'UBP_WrestlerTaskScore_EnemiesInCombatCount_C::Filter_Mode' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C, PreferLess) == 0x000031, "Member 'UBP_WrestlerTaskScore_EnemiesInCombatCount_C::PreferLess' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C, Filter_Threshold) == 0x000034, "Member 'UBP_WrestlerTaskScore_EnemiesInCombatCount_C::Filter_Threshold' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_EnemiesInCombatCount_C, Target_Count) == 0x000038, "Member 'UBP_WrestlerTaskScore_EnemiesInCombatCount_C::Target_Count' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_IsPathStraight_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_IsPathStraight_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore) == 0x000030, "Wrong size on BP_WrestlerTaskScore_IsPathStraight_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, CallFunc_GetBlackboard_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, CallFunc_MakeLiteralName_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IsPathStraight_C_GetScore, CallFunc_GetValueAsBool_ReturnValue) == 0x000029, "Member 'BP_WrestlerTaskScore_IsPathStraight_C_GetScore::CallFunc_GetValueAsBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_IsPathStraight_C \ +static_assert(alignof(UBP_WrestlerTaskScore_IsPathStraight_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_IsPathStraight_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_IsPathStraight_C) == 0x000030, "Wrong size on UBP_WrestlerTaskScore_IsPathStraight_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore) == 0x000058, "Wrong size on BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_GetSpecificActionCount_Count) == 0x000038, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_GetSpecificActionCount_Count' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00003C, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000040, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, CallFunc_MapRangeClamped_ReturnValue) == 0x000048, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000050, "Member 'BP_WrestlerTaskScore_SeenActionNumberTimes_C_GetScore::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_SeenActionNumberTimes_C \ +static_assert(alignof(UBP_WrestlerTaskScore_SeenActionNumberTimes_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_SeenActionNumberTimes_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_SeenActionNumberTimes_C) == 0x000040, "Wrong size on UBP_WrestlerTaskScore_SeenActionNumberTimes_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_SeenActionNumberTimes_C, SpecifiedPlayerAction) == 0x000030, "Member 'UBP_WrestlerTaskScore_SeenActionNumberTimes_C::SpecifiedPlayerAction' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_SeenActionNumberTimes_C, MinimumCount) == 0x000034, "Member 'UBP_WrestlerTaskScore_SeenActionNumberTimes_C::MinimumCount' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_SeenActionNumberTimes_C, DesiredCount) == 0x000038, "Member 'UBP_WrestlerTaskScore_SeenActionNumberTimes_C::DesiredCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore) == 0x000038, "Wrong size on BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, CallFunc_GetTargetActor_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter) == 0x000028, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, CallFunc_K2_GetPlayerCharacterFromActor_OutPins) == 0x000030, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::CallFunc_K2_GetPlayerCharacterFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore, K2Node_SwitchEnum_CmpSuccess) == 0x000031, "Member 'BP_WrestlerTaskScore_TargetIsPlayer_C_GetScore::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_TargetIsPlayer_C \ +static_assert(alignof(UBP_WrestlerTaskScore_TargetIsPlayer_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_TargetIsPlayer_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_TargetIsPlayer_C) == 0x000030, "Wrong size on UBP_WrestlerTaskScore_TargetIsPlayer_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_BehindTarget_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_BehindTarget_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_BehindTarget_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_BehindTarget_C_GetScore) == 0x000058, "Wrong size on BP_WrestlerTaskScore_BehindTarget_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, CallFunc_GetActorForwardVector_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, CallFunc_Dot_VectorVector_ReturnValue) == 0x000048, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_BehindTarget_C_GetScore, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_WrestlerTaskScore_BehindTarget_C_GetScore::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_BehindTarget_C \ +static_assert(alignof(UBP_WrestlerTaskScore_BehindTarget_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_BehindTarget_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_BehindTarget_C) == 0x000038, "Wrong size on UBP_WrestlerTaskScore_BehindTarget_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_BehindTarget_C, DotLowValue) == 0x000030, "Member 'UBP_WrestlerTaskScore_BehindTarget_C::DotLowValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_AddDefendZone \ +static_assert(alignof(WrestlerDefendZoneComponent_C_AddDefendZone) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_AddDefendZone"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_AddDefendZone) == 0x000010, "Wrong size on WrestlerDefendZoneComponent_C_AddDefendZone"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZone, DefendZone) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_AddDefendZone::DefendZone' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZone, CallFunc_Array_AddUnique_ReturnValue) == 0x000008, "Member 'WrestlerDefendZoneComponent_C_AddDefendZone::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_AddDefendZones \ +static_assert(alignof(WrestlerDefendZoneComponent_C_AddDefendZones) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_AddDefendZones"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_AddDefendZones) == 0x000038, "Wrong size on WrestlerDefendZoneComponent_C_AddDefendZones"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, DefendZones_0) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::DefendZones_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, CallFunc_Array_Length_ReturnValue) == 0x000010, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, Temp_int_Array_Index_Variable) == 0x000014, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, CallFunc_Array_Get_Item) == 0x000020, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_AddDefendZones, CallFunc_Array_AddUnique_ReturnValue) == 0x000030, "Member 'WrestlerDefendZoneComponent_C_AddDefendZones::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_GetDefendZones \ +static_assert(alignof(WrestlerDefendZoneComponent_C_GetDefendZones) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_GetDefendZones"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_GetDefendZones) == 0x000010, "Wrong size on WrestlerDefendZoneComponent_C_GetDefendZones"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_GetDefendZones, ReturnValue) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_GetDefendZones::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_HasDefendZones \ +static_assert(alignof(WrestlerDefendZoneComponent_C_HasDefendZones) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_HasDefendZones"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_HasDefendZones) == 0x000028, "Wrong size on WrestlerDefendZoneComponent_C_HasDefendZones"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, ReturnValue) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, Temp_bool_Variable) == 0x000001, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, CallFunc_GetOwner_ReturnValue) == 0x000008, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000021, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_HasDefendZones, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000022, "Member 'WrestlerDefendZoneComponent_C_HasDefendZones::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_IsPointInOwnedZone \ +static_assert(alignof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_IsPointInOwnedZone"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone) == 0x000048, "Wrong size on WrestlerDefendZoneComponent_C_IsPointInOwnedZone"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, Point) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, ExtentMultiplier) == 0x000018, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::ExtentMultiplier' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, IncludeHysteresis) == 0x00001C, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::IncludeHysteresis' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, ReturnValue) == 0x00001D, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, Inside) == 0x00001E, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::Inside' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, Temp_bool_True_if_break_was_hit_Variable) == 0x00001F, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, Temp_int_Array_Index_Variable) == 0x000020, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_Not_PreBool_ReturnValue) == 0x000024, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_Array_Get_Item) == 0x000030, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_IsPointInsideZone_ReturnValue) == 0x000038, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_IsPointInsideZone_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_Array_Length_ReturnValue) == 0x00003C, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_IsPointInOwnedZone, CallFunc_BooleanAND_ReturnValue) == 0x000041, "Member 'WrestlerDefendZoneComponent_C_IsPointInOwnedZone::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_RemoveDefendZone \ +static_assert(alignof(WrestlerDefendZoneComponent_C_RemoveDefendZone) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_RemoveDefendZone"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_RemoveDefendZone) == 0x000010, "Wrong size on WrestlerDefendZoneComponent_C_RemoveDefendZone"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZone, DefendZone) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZone::DefendZone' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZone, Return) == 0x000008, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZone::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZone, CallFunc_Array_RemoveItem_ReturnValue) == 0x000009, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZone::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDefendZoneComponent_C_RemoveDefendZones \ +static_assert(alignof(WrestlerDefendZoneComponent_C_RemoveDefendZones) == 0x000008, "Wrong alignment on WrestlerDefendZoneComponent_C_RemoveDefendZones"); \ +static_assert(sizeof(WrestlerDefendZoneComponent_C_RemoveDefendZones) == 0x000038, "Wrong size on WrestlerDefendZoneComponent_C_RemoveDefendZones"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, DefendZones_0) == 0x000000, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::DefendZones_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, Return) == 0x000010, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, CallFunc_Array_Length_ReturnValue) == 0x000014, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, Temp_int_Array_Index_Variable) == 0x000018, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, CallFunc_Array_Get_Item) == 0x000020, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDefendZoneComponent_C_RemoveDefendZones, CallFunc_Array_RemoveItem_ReturnValue) == 0x000030, "Member 'WrestlerDefendZoneComponent_C_RemoveDefendZones::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDefendZoneComponent_C \ +static_assert(alignof(UWrestlerDefendZoneComponent_C) == 0x000008, "Wrong alignment on UWrestlerDefendZoneComponent_C"); \ +static_assert(sizeof(UWrestlerDefendZoneComponent_C) == 0x0000D0, "Wrong size on UWrestlerDefendZoneComponent_C"); \ +static_assert(offsetof(UWrestlerDefendZoneComponent_C, DefendZoneExemptionTags) == 0x0000B0, "Member 'UWrestlerDefendZoneComponent_C::DefendZoneExemptionTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_IndefendZone_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_IndefendZone_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_IndefendZone_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_IndefendZone_C_GetScore) == 0x000110, "Wrong size on BP_WrestlerTaskScore_IndefendZone_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, DefendZoneComp) == 0x000018, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::DefendZoneComp' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_IsValid_ReturnValue_1) == 0x000041, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000048, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_MakeLiteralName_ReturnValue) == 0x000060, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000068, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetAIController_ReturnValue) == 0x000080, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_BooleanAND_ReturnValue) == 0x000088, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetBlackboard_ReturnValue) == 0x000090, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetValueAsVector_ReturnValue) == 0x000098, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetValueAsVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x0000B0, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0000C8, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000E0, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000F0, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_IsPointInOwnedZone_ReturnValue) == 0x000108, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_IsPointInOwnedZone_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_IsPointInOwnedZone_ReturnValue_1) == 0x000109, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_IsPointInOwnedZone_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_BooleanAND_ReturnValue_1) == 0x00010A, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_IsValid_ReturnValue_2) == 0x00010B, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_IndefendZone_C_GetScore, CallFunc_HasDefendZones_ReturnValue) == 0x00010C, "Member 'BP_WrestlerTaskScore_IndefendZone_C_GetScore::CallFunc_HasDefendZones_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_IndefendZone_C \ +static_assert(alignof(UBP_WrestlerTaskScore_IndefendZone_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_IndefendZone_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_IndefendZone_C) == 0x000048, "Wrong size on UBP_WrestlerTaskScore_IndefendZone_C"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_IndefendZone_C, CheckTargetInZone) == 0x000030, "Member 'UBP_WrestlerTaskScore_IndefendZone_C::CheckTargetInZone' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_IndefendZone_C, ExemptIfTargetBlocking) == 0x000031, "Member 'UBP_WrestlerTaskScore_IndefendZone_C::ExemptIfTargetBlocking' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_IndefendZone_C, TargetBlockThreshold) == 0x000038, "Member 'UBP_WrestlerTaskScore_IndefendZone_C::TargetBlockThreshold' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_IndefendZone_C, Extent_Multiplier) == 0x000040, "Member 'UBP_WrestlerTaskScore_IndefendZone_C::Extent_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(UBP_WrestlerTaskScore_IndefendZone_C, TargetExtentMultiplier) == 0x000044, "Member 'UBP_WrestlerTaskScore_IndefendZone_C::TargetExtentMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Tolly_C \ +static_assert(alignof(ABP_Tolly_C) == 0x000008, "Wrong alignment on ABP_Tolly_C"); \ +static_assert(sizeof(ABP_Tolly_C) == 0x000388, "Wrong size on ABP_Tolly_C"); \ + +#define DUMPER7_ASSERTS_FstructWeaponSwap \ +static_assert(alignof(FstructWeaponSwap) == 0x000008, "Wrong alignment on FstructWeaponSwap"); \ +static_assert(sizeof(FstructWeaponSwap) == 0x000060, "Wrong size on FstructWeaponSwap"); \ +static_assert(offsetof(FstructWeaponSwap, WeaponDefinition_2_119FE01A48DA540DE0D6028DEE010BAA) == 0x000000, "Member 'FstructWeaponSwap::WeaponDefinition_2_119FE01A48DA540DE0D6028DEE010BAA' has a wrong offset!"); \ +static_assert(offsetof(FstructWeaponSwap, AnimationSet_9_3A5470FC45291BBD8074EEBDEA4DA783) == 0x000008, "Member 'FstructWeaponSwap::AnimationSet_9_3A5470FC45291BBD8074EEBDEA4DA783' has a wrong offset!"); \ +static_assert(offsetof(FstructWeaponSwap, MovementSet_8_6543B54E43AC13B117266D8B7C79574E) == 0x000030, "Member 'FstructWeaponSwap::MovementSet_8_6543B54E43AC13B117266D8B7C79574E' has a wrong offset!"); \ +static_assert(offsetof(FstructWeaponSwap, TaskCollectionOverrideName_12_F4A9B977443127BC8C0A669CB0F903C1) == 0x000058, "Member 'FstructWeaponSwap::TaskCollectionOverrideName_12_F4A9B977443127BC8C0A669CB0F903C1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Weapon::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Weapon::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Weapon::FAnimBlueprintGeneratedConstantData) == 0x000110, "Wrong size on ABP_Weapon::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __NameProperty_10) == 0x000004, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__NameProperty_10' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __StructProperty_11) == 0x000010, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__StructProperty_11' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __BoolProperty_12) == 0x000030, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__BoolProperty_12' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __FloatProperty_13) == 0x000034, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__FloatProperty_13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __StructProperty_14) == 0x000038, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__StructProperty_14' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __FloatProperty_15) == 0x000064, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__FloatProperty_15' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __BoolProperty_16) == 0x000068, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__BoolProperty_16' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __EnumProperty_17) == 0x000069, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__EnumProperty_17' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __ByteProperty_18) == 0x00006A, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__ByteProperty_18' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, __NameProperty_19) == 0x00006C, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::__NameProperty_19' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000078, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000F8, "Member 'ABP_Weapon::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(ABP_Weapon::FAnimBlueprintGeneratedMutableData) == 0x000001, "Wrong alignment on ABP_Weapon::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(ABP_Weapon::FAnimBlueprintGeneratedMutableData) == 0x000001, "Wrong size on ABP_Weapon::FAnimBlueprintGeneratedMutableData"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon_C_AnimGraph \ +static_assert(alignof(ABP_Weapon_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Weapon_C_AnimGraph"); \ +static_assert(sizeof(ABP_Weapon_C_AnimGraph) == 0x000010, "Wrong size on ABP_Weapon_C_AnimGraph"); \ +static_assert(offsetof(ABP_Weapon_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'ABP_Weapon_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon_C_Base_Animation_Change \ +static_assert(alignof(ABP_Weapon_C_Base_Animation_Change) == 0x000008, "Wrong alignment on ABP_Weapon_C_Base_Animation_Change"); \ +static_assert(sizeof(ABP_Weapon_C_Base_Animation_Change) == 0x000008, "Wrong size on ABP_Weapon_C_Base_Animation_Change"); \ +static_assert(offsetof(ABP_Weapon_C_Base_Animation_Change, ANIM) == 0x000000, "Member 'ABP_Weapon_C_Base_Animation_Change::ANIM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon \ +static_assert(alignof(ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon) == 0x000008, "Wrong alignment on ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon"); \ +static_assert(sizeof(ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon) == 0x000018, "Wrong size on ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon"); \ +static_assert(offsetof(ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon, EntryPoint) == 0x000000, "Member 'ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon, K2Node_CustomEvent_Anim) == 0x000008, "Member 'ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon::K2Node_CustomEvent_Anim' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'ABP_Weapon_C_ExecuteUbergraph_ABP_Weapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Weapon_C \ +static_assert(alignof(UABP_Weapon_C) == 0x000010, "Wrong alignment on UABP_Weapon_C"); \ +static_assert(sizeof(UABP_Weapon_C) == 0x000420, "Wrong size on UABP_Weapon_C"); \ +static_assert(offsetof(UABP_Weapon_C, UberGraphFrame) == 0x000350, "Member 'UABP_Weapon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Weapon_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Weapon_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Weapon_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, AnimGraphNode_Slot) == 0x000388, "Member 'UABP_Weapon_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, AnimGraphNode_SequencePlayer) == 0x0003D0, "Member 'UABP_Weapon_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UABP_Weapon_C, Base_Anim) == 0x000418, "Member 'UABP_Weapon_C::Base_Anim' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_ApplyHit \ +static_assert(alignof(WrestlerProjectile_base_C_ApplyHit) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_ApplyHit"); \ +static_assert(sizeof(WrestlerProjectile_base_C_ApplyHit) == 0x000D30, "Wrong size on WrestlerProjectile_base_C_ApplyHit"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Hit) == 0x000000, "Member 'WrestlerProjectile_base_C_ApplyHit::Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Close_Hit) == 0x0000E8, "Member 'WrestlerProjectile_base_C_ApplyHit::Close_Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Hit_Actor) == 0x0000F0, "Member 'WrestlerProjectile_base_C_ApplyHit::Hit_Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable) == 0x0000F8, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_1) == 0x0000F9, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_2) == 0x0000FA, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_SpawnObject_ReturnValue) == 0x000100, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_3) == 0x000108, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_4) == 0x000109, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_5) == 0x00010A, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_delegate_Variable) == 0x00010C, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_6) == 0x00011C, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_real_Variable) == 0x000120, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue) == 0x000128, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetActorForwardVector_ReturnValue) == 0x000130, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_NegateVector_ReturnValue) == 0x000148, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetPlayerPawn_ReturnValue) == 0x000160, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000168, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_GameplayEventData) == 0x000170, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000220, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000228, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_7) == 0x000230, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000231, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_GameplayEventData_1) == 0x000238, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit) == 0x0002E8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002E9, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time) == 0x0002EC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance) == 0x0002F0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location) == 0x0002F8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint) == 0x000310, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal) == 0x000328, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal) == 0x000340, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat) == 0x000358, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor) == 0x000360, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent) == 0x000368, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName) == 0x000370, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName) == 0x000378, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem) == 0x000380, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex) == 0x000384, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex) == 0x000388, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart) == 0x000390, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd) == 0x0003A8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0003C0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0003C1, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time_1) == 0x0003C4, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance_1) == 0x0003C8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location_1) == 0x0003D0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint_1) == 0x0003E8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal_1) == 0x000400, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000418, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat_1) == 0x000430, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor_1) == 0x000438, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent_1) == 0x000440, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName_1) == 0x000448, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName_1) == 0x000450, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem_1) == 0x000458, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex_1) == 0x00045C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex_1) == 0x000460, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart_1) == 0x000468, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd_1) == 0x000480, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000498, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess) == 0x0004A8, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit_2) == 0x0004A9, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap_2) == 0x0004AA, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time_2) == 0x0004AC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance_2) == 0x0004B0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location_2) == 0x0004B8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint_2) == 0x0004D0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal_2) == 0x0004E8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal_2) == 0x000500, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat_2) == 0x000518, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor_2) == 0x000520, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent_2) == 0x000528, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName_2) == 0x000530, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName_2) == 0x000538, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem_2) == 0x000540, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex_2) == 0x000544, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex_2) == 0x000548, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart_2) == 0x000550, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd_2) == 0x000568, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000580, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000588, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess_1) == 0x000598, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0005A0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0005B8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005C0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetDamageAmount_ReturnValue) == 0x0005D8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetDamageAmount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeArray_Array) == 0x0005E0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetObjectClass_ReturnValue) == 0x0005F0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_RangedProjectileParams) == 0x0005F8, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_RangedProjectileParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsWrestler_Mass_Actor) == 0x000658, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsWrestler_Mass_Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess_2) == 0x000660, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_SpawnRangedProjectile_ReturnValue) == 0x000668, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_SpawnRangedProjectile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_1) == 0x000670, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_8) == 0x000671, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_9) == 0x000672, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000678, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000690, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess_3) == 0x0006A0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x0006A8, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess_4) == 0x0006B8, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0006B9, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0006BA, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x0006C0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit_3) == 0x000700, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap_3) == 0x000701, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time_3) == 0x000704, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance_3) == 0x000708, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location_3) == 0x000710, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint_3) == 0x000728, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal_3) == 0x000740, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal_3) == 0x000758, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat_3) == 0x000770, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor_3) == 0x000778, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent_3) == 0x000780, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName_3) == 0x000788, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName_3) == 0x000790, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem_3) == 0x000798, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex_3) == 0x00079C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex_3) == 0x0007A0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart_3) == 0x0007A8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd_3) == 0x0007C0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_2) == 0x0007D8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetDistanceTo_ReturnValue) == 0x0007DC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_3) == 0x0007E0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0007E1, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BooleanAND_ReturnValue) == 0x0007E2, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Was_Hit_Headshot__Headshot_) == 0x0007E3, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Was_Hit_Headshot__Headshot_' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default) == 0x0007E4, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_4) == 0x0007EC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_ApplyDamageParams) == 0x0007F0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000818, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000820, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetAIController_ReturnValue) == 0x000848, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000850, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000858, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_DynamicCast_bSuccess_5) == 0x000868, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_5) == 0x000869, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x00086A, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x00086B, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetFloatAttribute_ReturnValue) == 0x00086C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000870, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000874, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000878, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000880, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_byte_Variable) == 0x000898, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000899, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Was_Hit_Headshot__Headshot__1) == 0x00089A, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Was_Hit_Headshot__Headshot__1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BooleanAND_ReturnValue_1) == 0x00089B, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_1) == 0x00089C, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_2) == 0x0008A4, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0008B0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0008D0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetDamageAmount_ReturnValue_1) == 0x0008D8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetDamageAmount_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetDamageAmount_ReturnValue_2) == 0x0008DC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetDamageAmount_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_ApplyDamageParams_2) == 0x0008E0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_ApplyDamageParams_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_WillBeLethal_Lethal) == 0x000908, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_WillBeLethal_Lethal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit_4) == 0x000909, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap_4) == 0x00090A, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time_4) == 0x00090C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance_4) == 0x000910, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location_4) == 0x000918, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint_4) == 0x000930, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal_4) == 0x000948, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal_4) == 0x000960, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat_4) == 0x000978, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor_4) == 0x000980, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent_4) == 0x000988, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName_4) == 0x000990, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName_4) == 0x000998, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem_4) == 0x0009A0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex_4) == 0x0009A4, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex_4) == 0x0009A8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart_4) == 0x0009B0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd_4) == 0x0009C8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_3) == 0x0009E0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_VLerp_ReturnValue) == 0x0009E8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Normal_ReturnValue) == 0x000A00, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000A18, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bBlockingHit_5) == 0x000AF0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bBlockingHit_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_bInitialOverlap_5) == 0x000AF1, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_bInitialOverlap_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Time_5) == 0x000AF4, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Time_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Distance_5) == 0x000AF8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Distance_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Location_5) == 0x000B00, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Location_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactPoint_5) == 0x000B18, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactPoint_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_Normal_5) == 0x000B30, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_Normal_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ImpactNormal_5) == 0x000B48, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ImpactNormal_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_PhysMat_5) == 0x000B60, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_PhysMat_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitActor_5) == 0x000B68, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitActor_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitComponent_5) == 0x000B70, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitComponent_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitBoneName_5) == 0x000B78, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitBoneName_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_BoneName_5) == 0x000B80, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_BoneName_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_HitItem_5) == 0x000B88, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_HitItem_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_ElementIndex_5) == 0x000B8C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_ElementIndex_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_FaceIndex_5) == 0x000B90, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_FaceIndex_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceStart_5) == 0x000B98, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceStart_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_BreakHitResult_TraceEnd_5) == 0x000BB0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_BreakHitResult_TraceEnd_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x000BC8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000BE0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_ApplyMovableForceAtLocation_ReturnValue) == 0x000BF8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_ApplyMovableForceAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_ApplyPointDamage_ReturnValue) == 0x000C08, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_ApplyPointDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_GetComponentByClass_ReturnValue) == 0x000C10, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_real_Variable_1) == 0x000C18, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_IsValid_ReturnValue_6) == 0x000C1C, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, Temp_bool_Variable_10) == 0x000C1D, "Member 'WrestlerProjectile_base_C_ApplyHit::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_4) == 0x000C20, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_5) == 0x000C24, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_GameplayEventData_2) == 0x000C28, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000CD8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000CE0, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Default_6) == 0x000CE8, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_K2_ApplyDamage_ReturnValue_2) == 0x000CEC, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_K2_ApplyDamage_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_MakeStruct_Speed_ImplicitCast) == 0x000CF0, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_MakeStruct_Speed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000CF8, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000D00, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1) == 0x000D08, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000D10, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000D18, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000D20, "Member 'WrestlerProjectile_base_C_ApplyHit::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Option_0_ImplicitCast) == 0x000D28, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ApplyHit, K2Node_Select_Option_1_ImplicitCast) == 0x000D2C, "Member 'WrestlerProjectile_base_C_ApplyHit::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_base_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_base_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_base_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_base_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_base_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_DamageMass \ +static_assert(alignof(WrestlerProjectile_base_C_DamageMass) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_DamageMass"); \ +static_assert(sizeof(WrestlerProjectile_base_C_DamageMass) == 0x000008, "Wrong size on WrestlerProjectile_base_C_DamageMass"); \ +static_assert(offsetof(WrestlerProjectile_base_C_DamageMass, Actor) == 0x000000, "Member 'WrestlerProjectile_base_C_DamageMass::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_Enemy_Penetration \ +static_assert(alignof(WrestlerProjectile_base_C_Enemy_Penetration) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_Enemy_Penetration"); \ +static_assert(sizeof(WrestlerProjectile_base_C_Enemy_Penetration) == 0x0000E0, "Wrong size on WrestlerProjectile_base_C_Enemy_Penetration"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, Penetrated_Actor) == 0x000000, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::Penetrated_Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000010, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_Subtract_IntInt_ReturnValue) == 0x000028, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_GetDamageAmount_ReturnValue) == 0x000048, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_GetDamageAmount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_Greater_IntInt_ReturnValue) == 0x00004C, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, K2Node_MakeArray_Array) == 0x000050, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_GetObjectClass_ReturnValue) == 0x000060, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, K2Node_MakeStruct_RangedProjectileParams) == 0x000068, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::K2Node_MakeStruct_RangedProjectileParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_SpawnRangedProjectile_ReturnValue) == 0x0000C8, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_SpawnRangedProjectile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, K2Node_DynamicCast_AsWrestler_Projectile_Base) == 0x0000D0, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::K2Node_DynamicCast_AsWrestler_Projectile_Base' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, CallFunc_IsValid_ReturnValue) == 0x0000D9, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Enemy_Penetration, K2Node_MakeStruct_Speed_ImplicitCast) == 0x0000DC, "Member 'WrestlerProjectile_base_C_Enemy_Penetration::K2Node_MakeStruct_Speed_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base \ +static_assert(alignof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base) == 0x000010, "Wrong alignment on WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base"); \ +static_assert(sizeof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base) == 0x000440, "Wrong size on WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue) == 0x000018, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_Event_DeltaSeconds) == 0x000020, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetMainListenerTransform_ReturnValue) == 0x000030, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetMainListenerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000090, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_BreakTransform_Location) == 0x0000A8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_BreakTransform_Rotation) == 0x0000C0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_BreakTransform_Scale) == 0x0000D8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0000F0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetInstigator_ReturnValue) == 0x0000F8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetInstigator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000100, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetAudioRangedWeaponFlyby_ReturnValue) == 0x000118, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetAudioRangedWeaponFlyby_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, Temp_bool_Has_Been_Initd_Variable) == 0x000120, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_IsValid_ReturnValue) == 0x000121, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_Event_OutHit) == 0x000128, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_Event_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000210, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, Temp_bool_Variable) == 0x000228, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000230, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000248, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000260, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_DynamicCast_bSuccess) == 0x000270, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000278, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000290, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Add_VectorVector_ReturnValue) == 0x000298, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_FindClosestPointOnSegment_ReturnValue) == 0x0002B0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_FindClosestPointOnSegment_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_IsValid_ReturnValue_1) == 0x0002C8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Vector_Distance_ReturnValue) == 0x0002D0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0002D8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetInstigator_ReturnValue_1) == 0x0002E0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetInstigator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetPlayerPawn_ReturnValue) == 0x0002E8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetDistanceTo_ReturnValue) == 0x0002F0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_CustomEvent_actor_1) == 0x0002F8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_CustomEvent_actor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_CustomEvent_Tag) == 0x000300, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_CustomEvent_Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_CustomEvent_Data) == 0x000308, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_CustomEvent_Data' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0003B8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_IsValid_ReturnValue_2) == 0x0003B9, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, Temp_delegate_Variable) == 0x0003BC, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_CustomEvent_actor) == 0x0003D0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_CustomEvent_actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0003D8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetMassEntityHandle_ReturnValue) == 0x0003E0, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetDamageAmount_ReturnValue) == 0x0003E4, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetDamageAmount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, K2Node_MakeStruct_ApplyDamageParams) == 0x0003E8, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, Temp_bool_IsClosed_Variable) == 0x000410, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetMassEntityActor_OutActor) == 0x000418, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetMassEntityActor_OutActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetMassEntityActor_ReturnValue) == 0x000420, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetMassEntityActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000421, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GetComponentByClass_ReturnValue) == 0x000428, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_IsValid_ReturnValue_3) == 0x000430, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_IsValid_ReturnValue_4) == 0x000431, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_BooleanAND_ReturnValue) == 0x000432, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Array_Contains_ReturnValue) == 0x000433, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_Array_RemoveItem_ReturnValue) == 0x000434, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000438, "Member 'WrestlerProjectile_base_C_ExecuteUbergraph_WrestlerProjectile_base::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_ReceiveTick \ +static_assert(alignof(WrestlerProjectile_base_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerProjectile_base_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerProjectile_base_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerProjectile_base_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerProjectile_base_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerProjectile_base_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_SplitSecondProjectile \ +static_assert(alignof(WrestlerProjectile_base_C_SplitSecondProjectile) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_SplitSecondProjectile"); \ +static_assert(sizeof(WrestlerProjectile_base_C_SplitSecondProjectile) == 0x000038, "Wrong size on WrestlerProjectile_base_C_SplitSecondProjectile"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, InSS) == 0x000000, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::InSS' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, Temp_bool_Variable) == 0x000001, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, CallFunc_GetInstigator_ReturnValue) == 0x000028, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::CallFunc_GetInstigator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000031, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_SplitSecondProjectile, CallFunc_BooleanAND_ReturnValue) == 0x000032, "Member 'WrestlerProjectile_base_C_SplitSecondProjectile::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_StaggerEvent \ +static_assert(alignof(WrestlerProjectile_base_C_StaggerEvent) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_StaggerEvent"); \ +static_assert(sizeof(WrestlerProjectile_base_C_StaggerEvent) == 0x0000C0, "Wrong size on WrestlerProjectile_base_C_StaggerEvent"); \ +static_assert(offsetof(WrestlerProjectile_base_C_StaggerEvent, Actor) == 0x000000, "Member 'WrestlerProjectile_base_C_StaggerEvent::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_StaggerEvent, Tag) == 0x000008, "Member 'WrestlerProjectile_base_C_StaggerEvent::Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_StaggerEvent, Data) == 0x000010, "Member 'WrestlerProjectile_base_C_StaggerEvent::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_TestForRicochet \ +static_assert(alignof(WrestlerProjectile_base_C_TestForRicochet) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_TestForRicochet"); \ +static_assert(sizeof(WrestlerProjectile_base_C_TestForRicochet) == 0x0003D8, "Wrong size on WrestlerProjectile_base_C_TestForRicochet"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, Hit) == 0x000000, "Member 'WrestlerProjectile_base_C_TestForRicochet::Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_bBlockingHit) == 0x0000E8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_bInitialOverlap) == 0x0000E9, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Time) == 0x0000EC, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Distance) == 0x0000F0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Location) == 0x0000F8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ImpactPoint) == 0x000110, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Normal) == 0x000128, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ImpactNormal) == 0x000140, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_PhysMat) == 0x000158, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitActor) == 0x000160, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitComponent) == 0x000168, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitBoneName) == 0x000170, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_BoneName) == 0x000178, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitItem) == 0x000180, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ElementIndex) == 0x000184, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_FaceIndex) == 0x000188, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_TraceStart) == 0x000190, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_TraceEnd) == 0x0001A8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0001C0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0001C1, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Time_1) == 0x0001C4, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Distance_1) == 0x0001C8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Location_1) == 0x0001D0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ImpactPoint_1) == 0x0001E8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_Normal_1) == 0x000200, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000218, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_PhysMat_1) == 0x000230, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitActor_1) == 0x000238, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitComponent_1) == 0x000240, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitBoneName_1) == 0x000248, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_BoneName_1) == 0x000250, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_HitItem_1) == 0x000258, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_ElementIndex_1) == 0x00025C, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_FaceIndex_1) == 0x000260, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_TraceStart_1) == 0x000268, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BreakHitResult_TraceEnd_1) == 0x000280, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_Add_VectorVector_ReturnValue) == 0x000298, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetDamageAmount_ReturnValue) == 0x0002B0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetDamageAmount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetActorForwardVector_ReturnValue) == 0x0002B8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetReflectionVector_ReturnValue) == 0x0002D0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetReflectionVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetObjectClass_ReturnValue) == 0x0002E8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0002F0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, K2Node_MakeStruct_RangedProjectileParams) == 0x000308, "Member 'WrestlerProjectile_base_C_TestForRicochet::K2Node_MakeStruct_RangedProjectileParams' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000368, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_SpawnRangedProjectile_ReturnValue) == 0x000370, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_SpawnRangedProjectile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000378, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, Temp_delegate_Variable) == 0x000390, "Member 'WrestlerProjectile_base_C_TestForRicochet::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_NegateVector_ReturnValue) == 0x0003A0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_Dot_VectorVector_ReturnValue) == 0x0003B8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0003C0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x0003C8, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0003C9, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_BooleanAND_ReturnValue) == 0x0003CA, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, K2Node_MakeStruct_Speed_ImplicitCast) == 0x0003CC, "Member 'WrestlerProjectile_base_C_TestForRicochet::K2Node_MakeStruct_Speed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_TestForRicochet, CallFunc_RandomBoolWithWeight_Weight_ImplicitCast) == 0x0003D0, "Member 'WrestlerProjectile_base_C_TestForRicochet::CallFunc_RandomBoolWithWeight_Weight_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_Was_Hit_Headshot_ \ +static_assert(alignof(WrestlerProjectile_base_C_Was_Hit_Headshot_) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_Was_Hit_Headshot_"); \ +static_assert(sizeof(WrestlerProjectile_base_C_Was_Hit_Headshot_) == 0x000228, "Wrong size on WrestlerProjectile_base_C_Was_Hit_Headshot_"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, Hit) == 0x000000, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, TargetActor) == 0x0000E8, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, Headshot_) == 0x0000F0, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::Headshot_' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_bBlockingHit) == 0x0000F1, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_bInitialOverlap) == 0x0000F2, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_Time) == 0x0000F4, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_Distance) == 0x0000F8, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_Location) == 0x000100, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_ImpactPoint) == 0x000118, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_Normal) == 0x000130, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_ImpactNormal) == 0x000148, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_PhysMat) == 0x000160, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_HitActor) == 0x000168, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_HitComponent) == 0x000170, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_HitBoneName) == 0x000178, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_BoneName) == 0x000180, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_HitItem) == 0x000188, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_ElementIndex) == 0x00018C, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_FaceIndex) == 0x000190, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_TraceStart) == 0x000198, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakHitResult_TraceEnd) == 0x0001B0, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0001C8, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_X) == 0x0001E0, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_Y) == 0x0001E8, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_Z) == 0x0001F0, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_X_1) == 0x0001F8, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_Y_1) == 0x000200, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_BreakVector_Z_1) == 0x000208, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_GetPlayerPawn_ReturnValue) == 0x000210, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000218, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000220, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_Was_Hit_Headshot_, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000221, "Member 'WrestlerProjectile_base_C_Was_Hit_Headshot_::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_base_C_WillBeLethal \ +static_assert(alignof(WrestlerProjectile_base_C_WillBeLethal) == 0x000008, "Wrong alignment on WrestlerProjectile_base_C_WillBeLethal"); \ +static_assert(sizeof(WrestlerProjectile_base_C_WillBeLethal) == 0x0001E0, "Wrong size on WrestlerProjectile_base_C_WillBeLethal"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, HitActor) == 0x000000, "Member 'WrestlerProjectile_base_C_WillBeLethal::HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Hit) == 0x000008, "Member 'WrestlerProjectile_base_C_WillBeLethal::Hit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Lethal) == 0x0000F0, "Member 'WrestlerProjectile_base_C_WillBeLethal::Lethal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable) == 0x0000F1, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F8, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000110, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_bSuccess_1) == 0x000120, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000121, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000122, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000128, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_bSuccess_2) == 0x000138, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_IsValid_ReturnValue) == 0x000139, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x00013A, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x00013B, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetFloatAttribute_ReturnValue) == 0x00013C, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000140, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000144, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetAIController_ReturnValue) == 0x000148, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000150, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_DynamicCast_bSuccess_3) == 0x000160, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_IsValid_ReturnValue_1) == 0x000161, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_real_Variable) == 0x000164, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable_1) == 0x000168, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable_2) == 0x000169, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_byte_Variable) == 0x00016A, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00016B, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable_3) == 0x00016C, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Was_Hit_Headshot__Headshot_) == 0x00016D, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Was_Hit_Headshot__Headshot_' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_GetDamageAmount_ReturnValue) == 0x000170, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_GetDamageAmount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable_4) == 0x000174, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_Select_Default) == 0x000178, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, Temp_bool_Variable_5) == 0x00017C, "Member 'WrestlerProjectile_base_C_WillBeLethal::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_Select_Default_1) == 0x000180, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000188, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000190, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_Select_Default_2) == 0x000198, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x00019C, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001A0, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0001A8, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x0001B0, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0001B8, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001C0, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0001C8, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_Select_Option_0_ImplicitCast) == 0x0001D0, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, K2Node_Select_Option_1_ImplicitCast) == 0x0001D4, "Member 'WrestlerProjectile_base_C_WillBeLethal::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_base_C_WillBeLethal, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x0001D8, "Member 'WrestlerProjectile_base_C_WillBeLethal::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_base_C \ +static_assert(alignof(AWrestlerProjectile_base_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_base_C"); \ +static_assert(sizeof(AWrestlerProjectile_base_C) == 0x000410, "Wrong size on AWrestlerProjectile_base_C"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, UberGraphFrame) == 0x000300, "Member 'AWrestlerProjectile_base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, HeraAudio) == 0x000308, "Member 'AWrestlerProjectile_base_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Root) == 0x000310, "Member 'AWrestlerProjectile_base_C::Root' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Projectile_Speed) == 0x000318, "Member 'AWrestlerProjectile_base_C::Projectile_Speed' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Trace_Channel) == 0x000320, "Member 'AWrestlerProjectile_base_C::Trace_Channel' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Trace_Complex) == 0x000321, "Member 'AWrestlerProjectile_base_C::Trace_Complex' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Actors_to_Ignore) == 0x000328, "Member 'AWrestlerProjectile_base_C::Actors_to_Ignore' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Gravity_Scale) == 0x000338, "Member 'AWrestlerProjectile_base_C::Gravity_Scale' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, WhizBy_Distance) == 0x000340, "Member 'AWrestlerProjectile_base_C::WhizBy_Distance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, WhizByEvent) == 0x000348, "Member 'AWrestlerProjectile_base_C::WhizByEvent' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Hit_Cue_Tag) == 0x000350, "Member 'AWrestlerProjectile_base_C::Hit_Cue_Tag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, StartPoint) == 0x000358, "Member 'AWrestlerProjectile_base_C::StartPoint' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Can_Ricochet) == 0x000370, "Member 'AWrestlerProjectile_base_C::Can_Ricochet' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, RicochetChance) == 0x000378, "Member 'AWrestlerProjectile_base_C::RicochetChance' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, MaxRicochetAngle) == 0x000380, "Member 'AWrestlerProjectile_base_C::MaxRicochetAngle' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Close_Range_Threshold) == 0x000388, "Member 'AWrestlerProjectile_base_C::Close_Range_Threshold' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, AttackTag) == 0x000390, "Member 'AWrestlerProjectile_base_C::AttackTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, AttackTag_Close) == 0x000398, "Member 'AWrestlerProjectile_base_C::AttackTag_Close' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, MoveableForce) == 0x0003A0, "Member 'AWrestlerProjectile_base_C::MoveableForce' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, WhizByAudioThreshold) == 0x0003A8, "Member 'AWrestlerProjectile_base_C::WhizByAudioThreshold' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, HeadShotMultiplier) == 0x0003B0, "Member 'AWrestlerProjectile_base_C::HeadShotMultiplier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, DeathTag) == 0x0003B8, "Member 'AWrestlerProjectile_base_C::DeathTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, HeadshotDeathTag) == 0x0003C0, "Member 'AWrestlerProjectile_base_C::HeadshotDeathTag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, EnemiesToPenetrate) == 0x0003C8, "Member 'AWrestlerProjectile_base_C::EnemiesToPenetrate' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Vertical_Knock_Back) == 0x0003D0, "Member 'AWrestlerProjectile_base_C::Vertical_Knock_Back' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Horizontal_Knockback) == 0x0003D8, "Member 'AWrestlerProjectile_base_C::Horizontal_Knockback' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Vampire_Damage_Multiplier) == 0x0003E0, "Member 'AWrestlerProjectile_base_C::Vampire_Damage_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, In_SS) == 0x0003E4, "Member 'AWrestlerProjectile_base_C::In_SS' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Damage_Type_Tag) == 0x0003E8, "Member 'AWrestlerProjectile_base_C::Damage_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Unbirthed_Damage_Multiplier) == 0x0003F0, "Member 'AWrestlerProjectile_base_C::Unbirthed_Damage_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, GunOwner) == 0x0003F8, "Member 'AWrestlerProjectile_base_C::GunOwner' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, AttachedToMassEntity) == 0x000400, "Member 'AWrestlerProjectile_base_C::AttachedToMassEntity' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_base_C, Splatterchance) == 0x000408, "Member 'AWrestlerProjectile_base_C::Splatterchance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_Bullet_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_Bullet_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_Bullet_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_Bullet_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet \ +static_assert(alignof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet) == 0x000008, "Wrong alignment on WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet) == 0x000358, "Wrong size on WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, Temp_bool_IsClosed_Variable) == 0x000011, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, K2Node_Event_OutHit) == 0x000018, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::K2Node_Event_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_bBlockingHit) == 0x000100, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_bInitialOverlap) == 0x000101, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_Time) == 0x000104, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_Distance) == 0x000108, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_Location) == 0x000110, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_ImpactPoint) == 0x000128, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_Normal) == 0x000140, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_ImpactNormal) == 0x000158, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_PhysMat) == 0x000170, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_HitActor) == 0x000178, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_HitComponent) == 0x000180, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_HitBoneName) == 0x000188, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_BoneName) == 0x000190, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_HitItem) == 0x000198, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_ElementIndex) == 0x00019C, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_FaceIndex) == 0x0001A0, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_TraceStart) == 0x0001A8, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakHitResult_TraceEnd) == 0x0001C0, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0001D8, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0002C0, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_RandomFloatInRange_ReturnValue) == 0x0002C8, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_MakeVector_ReturnValue) == 0x0002D0, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, K2Node_Event_DeltaSeconds) == 0x0002E8, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002F0, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_Vector_Distance_ReturnValue) == 0x000308, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000310, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakVector_X) == 0x000318, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakVector_Y) == 0x000320, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_BreakVector_Z) == 0x000328, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_FClamp_ReturnValue) == 0x000330, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_MakeVector_ReturnValue_1) == 0x000338, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000350, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet, CallFunc_IsValid_ReturnValue) == 0x000351, "Member 'WrestlerProjectile_Bullet_C_ExecuteUbergraph_WrestlerProjectile_Bullet::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_C_ReceiveTick \ +static_assert(alignof(WrestlerProjectile_Bullet_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerProjectile_Bullet_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerProjectile_Bullet_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerProjectile_Bullet_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_Bullet_C \ +static_assert(alignof(AWrestlerProjectile_Bullet_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_Bullet_C"); \ +static_assert(sizeof(AWrestlerProjectile_Bullet_C) == 0x000428, "Wrong size on AWrestlerProjectile_Bullet_C"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_C, UberGraphFrame_WrestlerProjectile_Bullet_C) == 0x000410, "Member 'AWrestlerProjectile_Bullet_C::UberGraphFrame_WrestlerProjectile_Bullet_C' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_C, NS_Bullet_trail) == 0x000418, "Member 'AWrestlerProjectile_Bullet_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_C, SM_Tracer) == 0x000420, "Member 'AWrestlerProjectile_Bullet_C::SM_Tracer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ActiveQuestData_C_SetObjectiveData \ +static_assert(alignof(WBP_ActiveQuestData_C_SetObjectiveData) == 0x000008, "Wrong alignment on WBP_ActiveQuestData_C_SetObjectiveData"); \ +static_assert(sizeof(WBP_ActiveQuestData_C_SetObjectiveData) == 0x000028, "Wrong size on WBP_ActiveQuestData_C_SetObjectiveData"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_SetObjectiveData, InObjectiveText) == 0x000000, "Member 'WBP_ActiveQuestData_C_SetObjectiveData::InObjectiveText' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_SetObjectiveData, InOptionalObjectiveTexts) == 0x000018, "Member 'WBP_ActiveQuestData_C_SetObjectiveData::InOptionalObjectiveTexts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData \ +static_assert(alignof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData) == 0x000008, "Wrong alignment on WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData"); \ +static_assert(sizeof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData) == 0x000040, "Wrong size on WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, EntryPoint) == 0x000000, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, K2Node_Event_InObjectiveText) == 0x000008, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::K2Node_Event_InObjectiveText' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, K2Node_Event_InOptionalObjectiveTexts) == 0x000020, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::K2Node_Event_InOptionalObjectiveTexts' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, Temp_int_Loop_Counter_Variable) == 0x000030, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'WBP_ActiveQuestData_C_ExecuteUbergraph_WBP_ActiveQuestData::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ActiveQuestData_C \ +static_assert(alignof(UWBP_ActiveQuestData_C) == 0x000008, "Wrong alignment on UWBP_ActiveQuestData_C"); \ +static_assert(sizeof(UWBP_ActiveQuestData_C) == 0x000428, "Wrong size on UWBP_ActiveQuestData_C"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, UberGraphFrame) == 0x000328, "Member 'UWBP_ActiveQuestData_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, QuestIcon) == 0x000330, "Member 'UWBP_ActiveQuestData_C::QuestIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, WidgetPanel) == 0x000338, "Member 'UWBP_ActiveQuestData_C::WidgetPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, ObjectiveFont) == 0x000340, "Member 'UWBP_ActiveQuestData_C::ObjectiveFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, OptionalObjectiveFont) == 0x000398, "Member 'UWBP_ActiveQuestData_C::OptionalObjectiveFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, DividerHorizontalOffset) == 0x0003F0, "Member 'UWBP_ActiveQuestData_C::DividerHorizontalOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, QuestTitleExample) == 0x0003F8, "Member 'UWBP_ActiveQuestData_C::QuestTitleExample' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ActiveQuestData_C, QuestObjectiveExample) == 0x000410, "Member 'UWBP_ActiveQuestData_C::QuestObjectiveExample' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_ActivateSpline \ +static_assert(alignof(BP_Audio_SplineRTPC_C_ActivateSpline) == 0x000001, "Wrong alignment on BP_Audio_SplineRTPC_C_ActivateSpline"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_ActivateSpline) == 0x000003, "Wrong size on BP_Audio_SplineRTPC_C_ActivateSpline"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ActivateSpline, Active) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_ActivateSpline::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ActivateSpline, IsActive) == 0x000001, "Member 'BP_Audio_SplineRTPC_C_ActivateSpline::IsActive' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ActivateSpline, CallFunc_Validate_IsValid) == 0x000002, "Member 'BP_Audio_SplineRTPC_C_ActivateSpline::CallFunc_Validate_IsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_EvaluateInterpolation \ +static_assert(alignof(BP_Audio_SplineRTPC_C_EvaluateInterpolation) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_EvaluateInterpolation"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_EvaluateInterpolation) == 0x000040, "Wrong size on BP_Audio_SplineRTPC_C_EvaluateInterpolation"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, Index_0) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::Index_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, Progress) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, Interpolation) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_GetNumberOfSplinePoints_ReturnValue) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_GetNumberOfSplinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_Subtract_IntInt_ReturnValue) == 0x00002C, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000030, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000034, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_EvaluateInterpolation, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x000038, "Member 'BP_Audio_SplineRTPC_C_EvaluateInterpolation::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC \ +static_assert(alignof(BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC) == 0x000004, "Wrong alignment on BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC) == 0x00000C, "Wrong size on BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC, EntryPoint) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC, CallFunc_Validate_IsValid) == 0x000004, "Member 'BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC::CallFunc_Validate_IsValid' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC, K2Node_Event_DeltaSeconds) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_ExecuteUbergraph_BP_Audio_SplineRTPC::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_GetProgressAlongSpline \ +static_assert(alignof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_GetProgressAlongSpline"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline) == 0x000080, "Wrong size on BP_Audio_SplineRTPC_C_GetProgressAlongSpline"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, Index_0) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::Index_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, Progress) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_FTrunc_ReturnValue) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_Fraction_ReturnValue) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_Fraction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_FindInputKeyClosestToWorldLocation_ReturnValue) == 0x000040, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_FindInputKeyClosestToWorldLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_Vector_Distance_ReturnValue) == 0x000048, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_GetLocationAtSplineInputKey_ReturnValue) == 0x000050, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_GetLocationAtSplineInputKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, CallFunc_GetDistanceAlongSplineAtSplineInputKey_ReturnValue) == 0x000068, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::CallFunc_GetDistanceAlongSplineAtSplineInputKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, K2Node_VariableSet_ClosestLocationKey_ImplicitCast) == 0x000070, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::K2Node_VariableSet_ClosestLocationKey_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProgressAlongSpline, K2Node_VariableSet_DistAlongSpline_ImplicitCast) == 0x000078, "Member 'BP_Audio_SplineRTPC_C_GetProgressAlongSpline::K2Node_VariableSet_DistAlongSpline_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_GetProjectedPosition \ +static_assert(alignof(BP_Audio_SplineRTPC_C_GetProjectedPosition) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_GetProjectedPosition"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_GetProjectedPosition) == 0x000048, "Wrong size on BP_Audio_SplineRTPC_C_GetProjectedPosition"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProjectedPosition, Projection) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_GetProjectedPosition::Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProjectedPosition, Position) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_GetProjectedPosition::Position' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProjectedPosition, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_GetProjectedPosition::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProjectedPosition, CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_GetProjectedPosition::CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetProjectedPosition, CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast) == 0x000040, "Member 'BP_Audio_SplineRTPC_C_GetProjectedPosition::CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_GetSplineValues \ +static_assert(alignof(BP_Audio_SplineRTPC_C_GetSplineValues) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_GetSplineValues"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_GetSplineValues) == 0x0000A8, "Wrong size on BP_Audio_SplineRTPC_C_GetSplineValues"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Index_0) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Index_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Occlusion) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Spread) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Projection) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, OcclusionModifier) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::OcclusionModifier' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Temp_int_Array_Index_Variable) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_GetProperty_ReturnValue) == 0x000054, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_IsValid_ReturnValue) == 0x000055, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, Temp_int_Loop_Counter_Variable) == 0x000058, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_BooleanAND_ReturnValue) == 0x00005C, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Less_IntInt_ReturnValue) == 0x00005D, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Add_IntInt_ReturnValue) == 0x000060, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Subtract_IntInt_ReturnValue) == 0x000064, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000068, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000070, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Array_IsValidIndex_ReturnValue) == 0x000078, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Array_IsValidIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_BooleanAND_ReturnValue_1) == 0x000079, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_BreakVector_X) == 0x000080, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_BreakVector_Y) == 0x000088, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_BreakVector_Z) == 0x000090, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000098, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_GetSplineValues, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0000A0, "Member 'BP_Audio_SplineRTPC_C_GetSplineValues::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_ReceiveTick \ +static_assert(alignof(BP_Audio_SplineRTPC_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_Audio_SplineRTPC_C_ReceiveTick"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_ReceiveTick) == 0x000004, "Wrong size on BP_Audio_SplineRTPC_C_ReceiveTick"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_UpdateDistanceModifier \ +static_assert(alignof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_UpdateDistanceModifier"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier) == 0x000070, "Wrong size on BP_Audio_SplineRTPC_C_UpdateDistanceModifier"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, Emitter) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::Emitter' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_GetNumberOfSplinePoints_ReturnValue) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_GetNumberOfSplinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_GetLocationAtSplinePoint_ReturnValue) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_GetLocationAtSplinePoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_Subtract_IntInt_ReturnValue) == 0x000040, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_GetLocationAtSplinePoint_ReturnValue_1) == 0x000048, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_GetLocationAtSplinePoint_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000060, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast) == 0x000064, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateDistanceModifier, K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast_1) == 0x000068, "Member 'BP_Audio_SplineRTPC_C_UpdateDistanceModifier::K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_UpdateSpline \ +static_assert(alignof(BP_Audio_SplineRTPC_C_UpdateSpline) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_UpdateSpline"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_UpdateSpline) == 0x000070, "Wrong size on BP_Audio_SplineRTPC_C_UpdateSpline"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, EmitterLocation) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::EmitterLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, Spread) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, Interpolation) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_GetProgressAlongSpline_Index) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_GetProgressAlongSpline_Index' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_GetProgressAlongSpline_Progress) == 0x000030, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_GetProgressAlongSpline_Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_UpdateSplineValues_Occlusion) == 0x000038, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_UpdateSplineValues_Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_UpdateSplineValues_Spread) == 0x000040, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_UpdateSplineValues_Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_UpdateSplineValues_Projection) == 0x000048, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_UpdateSplineValues_Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_EvaluateInterpolation_Interpolation) == 0x000050, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_EvaluateInterpolation_Interpolation' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSpline, CallFunc_GetProjectedPosition_Position) == 0x000058, "Member 'BP_Audio_SplineRTPC_C_UpdateSpline::CallFunc_GetProjectedPosition_Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_UpdateSplineValues \ +static_assert(alignof(BP_Audio_SplineRTPC_C_UpdateSplineValues) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_UpdateSplineValues"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_UpdateSplineValues) == 0x0000E8, "Wrong size on BP_Audio_SplineRTPC_C_UpdateSplineValues"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, Index_0) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::Index_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, Progress) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, Occlusion) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, Spread) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, Projection) == 0x000020, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, EndValue_Projection) == 0x000028, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::EndValue_Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, StartValue_Projection) == 0x000030, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::StartValue_Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, EndValue_Spread) == 0x000038, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::EndValue_Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, StartValue_Spread) == 0x000040, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::StartValue_Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, EndValue_Occlusion) == 0x000048, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::EndValue_Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, StartValue_Occlusion) == 0x000050, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::StartValue_Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000060, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000070, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000078, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Occlusion) == 0x000088, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Occlusion' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Spread) == 0x000090, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Projection) == 0x000098, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Projection' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0000A0, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000A8, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0000B0, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Add_IntInt_ReturnValue) == 0x0000B8, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Occlusion_1) == 0x0000C0, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Occlusion_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Spread_1) == 0x0000C8, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Spread_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_GetSplineValues_Projection_1) == 0x0000D0, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_GetSplineValues_Projection_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_Array_IsValidIndex_ReturnValue) == 0x0000D8, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_Array_IsValidIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x0000DC, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_UpdateSplineValues, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1) == 0x0000E0, "Member 'BP_Audio_SplineRTPC_C_UpdateSplineValues::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_SplineRTPC_C_Validate \ +static_assert(alignof(BP_Audio_SplineRTPC_C_Validate) == 0x000008, "Wrong alignment on BP_Audio_SplineRTPC_C_Validate"); \ +static_assert(sizeof(BP_Audio_SplineRTPC_C_Validate) == 0x000020, "Wrong size on BP_Audio_SplineRTPC_C_Validate"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, IsValid) == 0x000000, "Member 'BP_Audio_SplineRTPC_C_Validate::IsValid' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_GetSplineLength_ReturnValue) == 0x00000C, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_GetSplineLength_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_GetNumberOfSplinePoints_ReturnValue) == 0x000010, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_GetNumberOfSplinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000014, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000015, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_BooleanAND_ReturnValue) == 0x000016, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, CallFunc_BooleanAND_ReturnValue_1) == 0x000017, "Member 'BP_Audio_SplineRTPC_C_Validate::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_SplineRTPC_C_Validate, K2Node_VariableSet_SplineLength_ImplicitCast) == 0x000018, "Member 'BP_Audio_SplineRTPC_C_Validate::K2Node_VariableSet_SplineLength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Audio_SplineRTPC_C \ +static_assert(alignof(ABP_Audio_SplineRTPC_C) == 0x000008, "Wrong alignment on ABP_Audio_SplineRTPC_C"); \ +static_assert(sizeof(ABP_Audio_SplineRTPC_C) == 0x000358, "Wrong size on ABP_Audio_SplineRTPC_C"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, UberGraphFrame) == 0x000298, "Member 'ABP_Audio_SplineRTPC_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, Spline) == 0x0002A0, "Member 'ABP_Audio_SplineRTPC_C::Spline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_Audio_SplineRTPC_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, ClosestLocationKey) == 0x0002B0, "Member 'ABP_Audio_SplineRTPC_C::ClosestLocationKey' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, SplineTag) == 0x0002B8, "Member 'ABP_Audio_SplineRTPC_C::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, RTPC) == 0x0002C0, "Member 'ABP_Audio_SplineRTPC_C::RTPC' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, SplineValues) == 0x0002C8, "Member 'ABP_Audio_SplineRTPC_C::SplineValues' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, ModifierData) == 0x0002D8, "Member 'ABP_Audio_SplineRTPC_C::ModifierData' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, OverridePanning) == 0x0002E8, "Member 'ABP_Audio_SplineRTPC_C::OverridePanning' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, OverrideSpread) == 0x0002E9, "Member 'ABP_Audio_SplineRTPC_C::OverrideSpread' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, OverrideDistance) == 0x0002EA, "Member 'ABP_Audio_SplineRTPC_C::OverrideDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, SplineLength) == 0x0002F0, "Member 'ABP_Audio_SplineRTPC_C::SplineLength' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, DistAlongSpline) == 0x0002F8, "Member 'ABP_Audio_SplineRTPC_C::DistAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, EntryThreshold) == 0x000300, "Member 'ABP_Audio_SplineRTPC_C::EntryThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, ExitThreshold) == 0x000308, "Member 'ABP_Audio_SplineRTPC_C::ExitThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, InterpStart) == 0x000310, "Member 'ABP_Audio_SplineRTPC_C::InterpStart' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, InterpEnd) == 0x000311, "Member 'ABP_Audio_SplineRTPC_C::InterpEnd' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, SideRoomModifier) == 0x000318, "Member 'ABP_Audio_SplineRTPC_C::SideRoomModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, EnableProgress) == 0x000320, "Member 'ABP_Audio_SplineRTPC_C::EnableProgress' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, ListenerToClosestPoint) == 0x000328, "Member 'ABP_Audio_SplineRTPC_C::ListenerToClosestPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, ClosestPointLocation) == 0x000330, "Member 'ABP_Audio_SplineRTPC_C::ClosestPointLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, DistModifierFlipThreshold) == 0x000348, "Member 'ABP_Audio_SplineRTPC_C::DistModifierFlipThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, IsPerimeterSpline) == 0x000350, "Member 'ABP_Audio_SplineRTPC_C::IsPerimeterSpline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_SplineRTPC_C, Debug) == 0x000351, "Member 'ABP_Audio_SplineRTPC_C::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_MeleeWeaponInstance_Base_C \ +static_assert(alignof(UBP_MeleeWeaponInstance_Base_C) == 0x000008, "Wrong alignment on UBP_MeleeWeaponInstance_Base_C"); \ +static_assert(sizeof(UBP_MeleeWeaponInstance_Base_C) == 0x0000F0, "Wrong size on UBP_MeleeWeaponInstance_Base_C"); \ +static_assert(offsetof(UBP_MeleeWeaponInstance_Base_C, MeleeWeaponSwitch) == 0x0000A0, "Member 'UBP_MeleeWeaponInstance_Base_C::MeleeWeaponSwitch' has a wrong offset!"); \ +static_assert(offsetof(UBP_MeleeWeaponInstance_Base_C, Throwable_Data_Asset) == 0x0000A8, "Member 'UBP_MeleeWeaponInstance_Base_C::Throwable_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(UBP_MeleeWeaponInstance_Base_C, Pointed) == 0x0000B0, "Member 'UBP_MeleeWeaponInstance_Base_C::Pointed' has a wrong offset!"); \ +static_assert(offsetof(UBP_MeleeWeaponInstance_Base_C, PointAxis) == 0x0000B8, "Member 'UBP_MeleeWeaponInstance_Base_C::PointAxis' has a wrong offset!"); \ +static_assert(offsetof(UBP_MeleeWeaponInstance_Base_C, Embeddable) == 0x0000E8, "Member 'UBP_MeleeWeaponInstance_Base_C::Embeddable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate \ +static_assert(alignof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate) == 0x000008, "Wrong alignment on BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate"); \ +static_assert(sizeof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate) == 0x0000F0, "Wrong size on BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, EntryPoint) == 0x000000, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x000008, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_MakeStruct_MovieSceneSequencePlayToParams) == 0x000031, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_MakeStruct_MovieSceneSequencePlayToParams' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1) == 0x000038, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_Event_InPlayStatus) == 0x000060, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_Event_InPlayStatus' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0000A0, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_DynamicCast_AsLevel_Sequence_Actor) == 0x0000A8, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_DynamicCast_AsLevel_Sequence_Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_GetSequencePlayer_ReturnValue) == 0x0000B8, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000C0, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_DynamicCast_AsBP_Base_Dialogue_Character) == 0x0000C8, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_DynamicCast_AsBP_Base_Dialogue_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_DynamicCast_bSuccess_1) == 0x0000D0, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, K2Node_MakeArray_Array) == 0x0000D8, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_IsValid_ReturnValue_1) == 0x0000E8, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate, CallFunc_BooleanAND_ReturnValue) == 0x0000E9, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_BeginDominate::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint \ +static_assert(alignof(BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint) == 0x000008, "Wrong alignment on BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint"); \ +static_assert(sizeof(BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint) == 0x000040, "Wrong size on BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_VFX_HeraDialogueEvent_BeginDominate_C_OnBegin_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_VFX_HeraDialogueEvent_BeginDominate_C \ +static_assert(alignof(UBP_VFX_HeraDialogueEvent_BeginDominate_C) == 0x000008, "Wrong alignment on UBP_VFX_HeraDialogueEvent_BeginDominate_C"); \ +static_assert(sizeof(UBP_VFX_HeraDialogueEvent_BeginDominate_C) == 0x0000D0, "Wrong size on UBP_VFX_HeraDialogueEvent_BeginDominate_C"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_BeginDominate_C, UberGraphFrame) == 0x000068, "Member 'UBP_VFX_HeraDialogueEvent_BeginDominate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_BeginDominate_C, Sequence) == 0x000070, "Member 'UBP_VFX_HeraDialogueEvent_BeginDominate_C::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_BeginDominate_C, LoadedSequence) == 0x000098, "Member 'UBP_VFX_HeraDialogueEvent_BeginDominate_C::LoadedSequence' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_BeginDominate_C, Character) == 0x0000A0, "Member 'UBP_VFX_HeraDialogueEvent_BeginDominate_C::Character' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_BeginDominate_C, LoadedCharacter) == 0x0000C8, "Member 'UBP_VFX_HeraDialogueEvent_BeginDominate_C::LoadedCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_RangedWeaponInstance_Base_C \ +static_assert(alignof(UBP_RangedWeaponInstance_Base_C) == 0x000008, "Wrong alignment on UBP_RangedWeaponInstance_Base_C"); \ +static_assert(sizeof(UBP_RangedWeaponInstance_Base_C) == 0x000240, "Wrong size on UBP_RangedWeaponInstance_Base_C"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_Ammo) == 0x000200, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_Ammo' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_Damage) == 0x000208, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_Damage' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_FireRate) == 0x000210, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_FireRate' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_Muzzleflash) == 0x000218, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_Muzzleflash' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_FireMontage) == 0x000220, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_FireMontage' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, PlayerWield_Fire_Sound) == 0x000228, "Member 'UBP_RangedWeaponInstance_Base_C::PlayerWield_Fire_Sound' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, WeaponTypeAudioSwitch) == 0x000230, "Member 'UBP_RangedWeaponInstance_Base_C::WeaponTypeAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(UBP_RangedWeaponInstance_Base_C, Throwable_Data_Asset) == 0x000238, "Member 'UBP_RangedWeaponInstance_Base_C::Throwable_Data_Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BlockTargeting_variable_C \ +static_assert(alignof(UGE_BlockTargeting_variable_C) == 0x000008, "Wrong alignment on UGE_BlockTargeting_variable_C"); \ +static_assert(sizeof(UGE_BlockTargeting_variable_C) == 0x000A70, "Wrong size on UGE_BlockTargeting_variable_C"); \ + +#define DUMPER7_ASSERTS_UCommonArrowButtonRight_C \ +static_assert(alignof(UCommonArrowButtonRight_C) == 0x000010, "Wrong alignment on UCommonArrowButtonRight_C"); \ +static_assert(sizeof(UCommonArrowButtonRight_C) == 0x0007B0, "Wrong size on UCommonArrowButtonRight_C"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_ExecuteUbergraph_BP_Weapon \ +static_assert(alignof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon) == 0x000010, "Wrong alignment on BP_Weapon_C_ExecuteUbergraph_BP_Weapon"); \ +static_assert(sizeof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon) == 0x0009A0, "Wrong size on BP_Weapon_C_ExecuteUbergraph_BP_Weapon"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, EntryPoint) == 0x000000, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_NotifyName_2) == 0x000004, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CreateDelegate_OutputDelegate) == 0x00000C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_NotifyName_1) == 0x00001C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CreateDelegate_OutputDelegate_1) == 0x000024, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_NotifyName) == 0x000034, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CreateDelegate_OutputDelegate_2) == 0x00003C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, Temp_name_Variable) == 0x00004C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetObjectClass_ReturnValue) == 0x000058, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_FClamp_ReturnValue) == 0x000060, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000068, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetOwner_ReturnValue) == 0x000080, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_MakeArray_Array) == 0x000088, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_Time) == 0x000098, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_Width) == 0x0000A0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_Width' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_DisableonEnd) == 0x0000A8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_DisableonEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_BigLaserColour) == 0x0000AC, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_BigLaserColour' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_AddLocalRotation_SweepHitResult) == 0x0000C0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_AddLocalRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_NotifyName_3) == 0x0001A8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001B0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue) == 0x0001C0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetWeaponAimTransform_ReturnValue) == 0x0001D0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetWeaponAimTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakTransform_Location) == 0x000230, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakTransform_Rotation) == 0x000248, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakTransform_Scale) == 0x000260, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetForwardVector_ReturnValue) == 0x000278, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetOwner_ReturnValue_1) == 0x000290, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x000298, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_1) == 0x0002A0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_2) == 0x0002A1, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_AsPawn) == 0x0002A8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_bSuccess) == 0x0002B0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetComponentByClass_ReturnValue) == 0x0002B8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_3) == 0x0002C0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetForwardVector_ReturnValue_1) == 0x0002C8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0002E0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetFirstInstanceOfType_ReturnValue) == 0x0002F8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetFirstInstanceOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetFirstInstanceOfType_ReturnValue_1) == 0x000300, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetFirstInstanceOfType_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_4) == 0x000308, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_5) == 0x000309, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_AsBP_Ranged_Weapon_Instance_Base) == 0x000310, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_AsBP_Ranged_Weapon_Instance_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_bSuccess_1) == 0x000318, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_AsBP_Melee_Weapon_Instance_Base) == 0x000320, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_AsBP_Melee_Weapon_Instance_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_bSuccess_2) == 0x000328, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetObjectClass_ReturnValue_1) == 0x000330, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000338, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000350, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetSocketTransform_ReturnValue) == 0x000360, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_6) == 0x0003C0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0003C8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_FinishSpawningActor_ReturnValue) == 0x0003D0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003D8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetActorForwardVector_ReturnValue) == 0x0003E8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_MakeVector_ReturnValue) == 0x000400, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Dot_VectorVector_ReturnValue) == 0x000418, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000420, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000428, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_MakeVector_ReturnValue_1) == 0x000430, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_CustomEvent_NotifyName_4) == 0x000448, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_SetWorldRotation_SweepHitResult) == 0x000450, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_SetWorldRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000538, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000550, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Add_VectorVector_ReturnValue) == 0x000568, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_LineTraceSingle_OutHit) == 0x000580, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_LineTraceSingle_ReturnValue) == 0x000668, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_bBlockingHit) == 0x000669, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_bInitialOverlap) == 0x00066A, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_Time) == 0x00066C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_Distance) == 0x000670, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_Location) == 0x000678, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_ImpactPoint) == 0x000690, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_Normal) == 0x0006A8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_ImpactNormal) == 0x0006C0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_PhysMat) == 0x0006D8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_HitActor) == 0x0006E0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_HitComponent) == 0x0006E8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_HitBoneName) == 0x0006F0, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_BoneName) == 0x0006F8, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_HitItem) == 0x000700, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_ElementIndex) == 0x000704, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_FaceIndex) == 0x000708, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_TraceStart) == 0x000710, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_BreakHitResult_TraceEnd) == 0x000728, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000740, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_MakeVector_ReturnValue_2) == 0x000748, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_MakeVector_ReturnValue_3) == 0x000760, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000778, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000860, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_GetOwner_ReturnValue_2) == 0x000948, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_IsValid_ReturnValue_7) == 0x000950, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000958, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_DynamicCast_bSuccess_3) == 0x000960, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000968, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000978, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000979, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_Event_DeltaSeconds) == 0x00097C, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_Event_NewCollisionMode_1) == 0x000980, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_Event_NewCollisionMode_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_Event_bRightSide_1) == 0x000981, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_Event_bRightSide_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_Event_NewCollisionMode) == 0x000982, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_Event_NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, K2Node_Event_bRightSide) == 0x000983, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::K2Node_Event_bRightSide' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_FClamp_Value_ImplicitCast) == 0x000988, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_MakeVector_X_ImplicitCast) == 0x000990, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_MakeVector_X_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ExecuteUbergraph_BP_Weapon, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000998, "Member 'BP_Weapon_C_ExecuteUbergraph_BP_Weapon::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_LaserFlash \ +static_assert(alignof(BP_Weapon_C_LaserFlash) == 0x000008, "Wrong alignment on BP_Weapon_C_LaserFlash"); \ +static_assert(sizeof(BP_Weapon_C_LaserFlash) == 0x000028, "Wrong size on BP_Weapon_C_LaserFlash"); \ +static_assert(offsetof(BP_Weapon_C_LaserFlash, Time) == 0x000000, "Member 'BP_Weapon_C_LaserFlash::Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_LaserFlash, Width) == 0x000008, "Member 'BP_Weapon_C_LaserFlash::Width' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_LaserFlash, DisableonEnd) == 0x000010, "Member 'BP_Weapon_C_LaserFlash::DisableonEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_LaserFlash, BigLaserColour) == 0x000014, "Member 'BP_Weapon_C_LaserFlash::BigLaserColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC \ +static_assert(alignof(BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC) == 0x000004, "Wrong alignment on BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(sizeof(BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC) == 0x000008, "Wrong size on BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(offsetof(BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC, NotifyName) == 0x000000, "Member 'BP_Weapon_C_OnBlendOut_2A549BAA4A254A4441120FA176ECFEDC::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC \ +static_assert(alignof(BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC) == 0x000004, "Wrong alignment on BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(sizeof(BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC) == 0x000008, "Wrong size on BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(offsetof(BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC, NotifyName) == 0x000000, "Member 'BP_Weapon_C_OnCompleted_2A549BAA4A254A4441120FA176ECFEDC::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC \ +static_assert(alignof(BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC) == 0x000004, "Wrong alignment on BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(sizeof(BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC) == 0x000008, "Wrong size on BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(offsetof(BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC, NotifyName) == 0x000000, "Member 'BP_Weapon_C_OnInterrupted_2A549BAA4A254A4441120FA176ECFEDC::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC \ +static_assert(alignof(BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC) == 0x000004, "Wrong alignment on BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(sizeof(BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC) == 0x000008, "Wrong size on BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(offsetof(BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC, NotifyName) == 0x000000, "Member 'BP_Weapon_C_OnNotifyBegin_2A549BAA4A254A4441120FA176ECFEDC::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC \ +static_assert(alignof(BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC) == 0x000004, "Wrong alignment on BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(sizeof(BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC) == 0x000008, "Wrong size on BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC"); \ +static_assert(offsetof(BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC, NotifyName) == 0x000000, "Member 'BP_Weapon_C_OnNotifyEnd_2A549BAA4A254A4441120FA176ECFEDC::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_ReceiveTick \ +static_assert(alignof(BP_Weapon_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_Weapon_C_ReceiveTick"); \ +static_assert(sizeof(BP_Weapon_C_ReceiveTick) == 0x000004, "Wrong size on BP_Weapon_C_ReceiveTick"); \ +static_assert(offsetof(BP_Weapon_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_Weapon_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_ReportMeleeHitGameplayEvent \ +static_assert(alignof(BP_Weapon_C_ReportMeleeHitGameplayEvent) == 0x000008, "Wrong alignment on BP_Weapon_C_ReportMeleeHitGameplayEvent"); \ +static_assert(sizeof(BP_Weapon_C_ReportMeleeHitGameplayEvent) == 0x000218, "Wrong size on BP_Weapon_C_ReportMeleeHitGameplayEvent"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, OverlappedComponent_) == 0x000000, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::OverlappedComponent_' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, OtherActor) == 0x000008, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, HitResult) == 0x000010, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::HitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_GetOwner_ReturnValue) == 0x0000F8, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000100, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000108, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, K2Node_DynamicCast_bSuccess) == 0x000110, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000111, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_BooleanOR_ReturnValue) == 0x000112, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, K2Node_MakeStruct_GameplayTargetDataFilter) == 0x000118, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::K2Node_MakeStruct_GameplayTargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_SelectString_ReturnValue) == 0x000138, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_MakeFilterHandle_ReturnValue) == 0x000148, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_MakeFilterHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_OutPins) == 0x000158, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_ReturnValue) == 0x000160, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_ReportMeleeHitGameplayEvent, K2Node_SwitchEnum_CmpSuccess) == 0x000210, "Member 'BP_Weapon_C_ReportMeleeHitGameplayEvent::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_SetMeleeCollision \ +static_assert(alignof(BP_Weapon_C_SetMeleeCollision) == 0x000001, "Wrong alignment on BP_Weapon_C_SetMeleeCollision"); \ +static_assert(sizeof(BP_Weapon_C_SetMeleeCollision) == 0x000002, "Wrong size on BP_Weapon_C_SetMeleeCollision"); \ +static_assert(offsetof(BP_Weapon_C_SetMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_Weapon_C_SetMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_SetMeleeCollision, bRightSide) == 0x000001, "Member 'BP_Weapon_C_SetMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Weapon_C_SetSecondaryMeleeCollision \ +static_assert(alignof(BP_Weapon_C_SetSecondaryMeleeCollision) == 0x000001, "Wrong alignment on BP_Weapon_C_SetSecondaryMeleeCollision"); \ +static_assert(sizeof(BP_Weapon_C_SetSecondaryMeleeCollision) == 0x000002, "Wrong size on BP_Weapon_C_SetSecondaryMeleeCollision"); \ +static_assert(offsetof(BP_Weapon_C_SetSecondaryMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_Weapon_C_SetSecondaryMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Weapon_C_SetSecondaryMeleeCollision, bRightSide) == 0x000001, "Member 'BP_Weapon_C_SetSecondaryMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon_C \ +static_assert(alignof(ABP_Weapon_C) == 0x000008, "Wrong alignment on ABP_Weapon_C"); \ +static_assert(sizeof(ABP_Weapon_C) == 0x0003B8, "Wrong size on ABP_Weapon_C"); \ +static_assert(offsetof(ABP_Weapon_C, UberGraphFrame) == 0x000298, "Member 'ABP_Weapon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, SpotLight) == 0x0002A0, "Member 'ABP_Weapon_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, SkeletalMesh) == 0x0002A8, "Member 'ABP_Weapon_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Laser) == 0x0002B0, "Member 'ABP_Weapon_C::Laser' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, StaticMesh) == 0x0002B8, "Member 'ABP_Weapon_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, DefaultSceneRoot) == 0x0002C0, "Member 'ABP_Weapon_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Unholster_NewTrack_0_CD119DD74D568D9441FACE87B98F39F7) == 0x0002C8, "Member 'ABP_Weapon_C::Unholster_NewTrack_0_CD119DD74D568D9441FACE87B98F39F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Unholster__Direction_CD119DD74D568D9441FACE87B98F39F7) == 0x0002CC, "Member 'ABP_Weapon_C::Unholster__Direction_CD119DD74D568D9441FACE87B98F39F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Unholster) == 0x0002D0, "Member 'ABP_Weapon_C::Unholster' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Debug) == 0x0002D8, "Member 'ABP_Weapon_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, LaserRange) == 0x0002E0, "Member 'ABP_Weapon_C::LaserRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, LaserWobble) == 0x0002E8, "Member 'ABP_Weapon_C::LaserWobble' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, LaserWobbleScale) == 0x000300, "Member 'ABP_Weapon_C::LaserWobbleScale' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, LaserWidth) == 0x000308, "Member 'ABP_Weapon_C::LaserWidth' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, LaserColour) == 0x000310, "Member 'ABP_Weapon_C::LaserColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, RangedWeaponInstance) == 0x000320, "Member 'ABP_Weapon_C::RangedWeaponInstance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Ranged_Weapon_Instance_Class) == 0x000328, "Member 'ABP_Weapon_C::Ranged_Weapon_Instance_Class' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, FireMontage) == 0x000330, "Member 'ABP_Weapon_C::FireMontage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, CamshakeRadius) == 0x000338, "Member 'ABP_Weapon_C::CamshakeRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, CamshakeClass) == 0x000340, "Member 'ABP_Weapon_C::CamshakeClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Spawn_Throwable) == 0x000348, "Member 'ABP_Weapon_C::Spawn_Throwable' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, MeleeWeaponInstance) == 0x000350, "Member 'ABP_Weapon_C::MeleeWeaponInstance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, MeleeWeaponInstanceClass) == 0x000358, "Member 'ABP_Weapon_C::MeleeWeaponInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Damage_Type_Tag) == 0x000360, "Member 'ABP_Weapon_C::Damage_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, TagsForOwner) == 0x000368, "Member 'ABP_Weapon_C::TagsForOwner' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, Actor_Type) == 0x000388, "Member 'ABP_Weapon_C::Actor_Type' has a wrong offset!"); \ +static_assert(offsetof(ABP_Weapon_C, HasLaser) == 0x0003B0, "Member 'ABP_Weapon_C::HasLaser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature \ +static_assert(alignof(BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x000004, "Wrong alignment on BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x00000C, "Wrong size on BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, Intensity) == 0x000000, "Member 'BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, ReactionTag) == 0x000004, "Member 'BP_FireEscape_C_BndEvt__BikeBPTest_Resonate_Reaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::ReactionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature \ +static_assert(alignof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000118, "Wrong size on BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, HitComponent) == 0x000000, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, NormalImpulse) == 0x000018, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, Hit) == 0x000030, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_Customizable_StaticMesh1_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature \ +static_assert(alignof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature) == 0x000118, "Wrong size on BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature, HitComponent) == 0x000000, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature, NormalImpulse) == 0x000018, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature, Hit) == 0x000030, "Member 'BP_FireEscape_C_BndEvt__BP_fireEscape_4x4_InstancedStaticMesh_K2Node_ComponentBoundEvent_2_ComponentHitSignature__DelegateSignature::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_FireEscape_C_BndEvt__BP_FireEscape_MantleTrigger_K2Node_ComponentBoundEvent_3_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape \ +static_assert(alignof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape) == 0x000008, "Wrong alignment on BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape"); \ +static_assert(sizeof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape) == 0x0004E8, "Wrong size on BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, EntryPoint) == 0x000000, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000010, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000018, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherActor_2) == 0x000020, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherComp_2) == 0x000028, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherComp_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000030, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_bFromSweep) == 0x000034, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_SweepResult) == 0x000038, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_MakeArray_Array) == 0x000120, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000130, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_HitComponent_1) == 0x000140, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000148, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000150, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_NormalImpulse_1) == 0x000158, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_NormalImpulse_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_Hit_1) == 0x000170, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_Hit_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_HitComponent) == 0x000258, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherActor) == 0x000260, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_OtherComp) == 0x000268, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_NormalImpulse) == 0x000270, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_Hit) == 0x000288, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_Damage) == 0x000370, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_DamageType) == 0x000378, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_HitLocation) == 0x000380, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_HitNormal) == 0x000398, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_HitComponent) == 0x0003B0, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_BoneName) == 0x0003B8, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_ShotFromDirection) == 0x0003C0, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_InstigatedBy) == 0x0003D8, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_DamageCauser) == 0x0003E0, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_Event_HitInfo) == 0x0003E8, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_Event_HitInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_Intensity) == 0x0004D0, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, K2Node_ComponentBoundEvent_ReactionTag) == 0x0004D4, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::K2Node_ComponentBoundEvent_ReactionTag' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, Temp_bool_Has_Been_Initd_Variable) == 0x0004DC, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0004DD, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, Temp_bool_IsClosed_Variable) == 0x0004DE, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0004E0, "Member 'BP_FireEscape_C_ExecuteUbergraph_BP_FireEscape::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_Generate \ +static_assert(alignof(BP_FireEscape_C_Generate) == 0x000010, "Wrong alignment on BP_FireEscape_C_Generate"); \ +static_assert(sizeof(BP_FireEscape_C_Generate) == 0x0009D0, "Wrong size on BP_FireEscape_C_Generate"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, LadderMesh) == 0x000000, "Member 'BP_FireEscape_C_Generate::LadderMesh' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, Temp_int_Variable) == 0x000008, "Member 'BP_FireEscape_C_Generate::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000010, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, Temp_int_Variable_1) == 0x00001C, "Member 'BP_FireEscape_C_Generate::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000020, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue) == 0x000030, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin) == 0x000068, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent) == 0x000080, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius) == 0x000098, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X) == 0x0000A0, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y) == 0x0000A8, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z) == 0x0000B0, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_1) == 0x0000B8, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_1) == 0x0000F8, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_1) == 0x000110, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_1) == 0x000128, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_1) == 0x000130, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_1) == 0x000138, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_1) == 0x000140, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000148, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000150, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000158, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_2) == 0x000160, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_2) == 0x000198, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_2) == 0x0001B0, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_2) == 0x0001C8, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue_3) == 0x0001D0, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_2) == 0x0001D8, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_2) == 0x0001E0, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_2) == 0x0001E8, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetLadderMesh_Mesh) == 0x0001F0, "Member 'BP_FireEscape_C_Generate::CallFunc_GetLadderMesh_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0001F8, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_SetStaticMesh_ReturnValue) == 0x000200, "Member 'BP_FireEscape_C_Generate::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_IntInt_ReturnValue) == 0x000204, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Less_IntInt_ReturnValue) == 0x000208, "Member 'BP_FireEscape_C_Generate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, Temp_int_Loop_Counter_Variable) == 0x00020C, "Member 'BP_FireEscape_C_Generate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000210, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000214, "Member 'BP_FireEscape_C_Generate::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_IsValid_ReturnValue) == 0x000215, "Member 'BP_FireEscape_C_Generate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_3) == 0x000218, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_3) == 0x000250, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_3) == 0x000268, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_3) == 0x000280, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_3) == 0x000288, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_3) == 0x000290, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_3) == 0x000298, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0002A0, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetChildrenComponents_Children) == 0x0002A8, "Member 'BP_FireEscape_C_Generate::CallFunc_GetChildrenComponents_Children' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0002B8, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Array_Length_ReturnValue) == 0x0002C0, "Member 'BP_FireEscape_C_Generate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x0002C4, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, Temp_bool_Variable) == 0x0002C8, "Member 'BP_FireEscape_C_Generate::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Max_ReturnValue) == 0x0002CC, "Member 'BP_FireEscape_C_Generate::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0002D0, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, Temp_int_Array_Index_Variable) == 0x0002E8, "Member 'BP_FireEscape_C_Generate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Array_Get_Item) == 0x0002F0, "Member 'BP_FireEscape_C_Generate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue) == 0x0002F8, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_4) == 0x000310, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000348, "Member 'BP_FireEscape_C_Generate::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_4) == 0x000350, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_4) == 0x000368, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_4) == 0x000380, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_4) == 0x000388, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_4) == 0x000390, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_4) == 0x000398, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0003A0, "Member 'BP_FireEscape_C_Generate::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0003A8, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0003B0, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0003B8, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue_4) == 0x0003C0, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_5) == 0x0003C8, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000400, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_5) == 0x000408, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_5) == 0x000420, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_5) == 0x000438, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_5) == 0x000440, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_5) == 0x000448, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_5) == 0x000450, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000458, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x000460, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_SetStaticMesh_ReturnValue_1) == 0x000468, "Member 'BP_FireEscape_C_Generate::CallFunc_SetStaticMesh_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000470, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_SetStaticMesh_ReturnValue_2) == 0x000478, "Member 'BP_FireEscape_C_Generate::CallFunc_SetStaticMesh_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000480, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_1) == 0x000488, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x0004A0, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x0004A8, "Member 'BP_FireEscape_C_Generate::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000590, "Member 'BP_FireEscape_C_Generate::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_2) == 0x000598, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_3) == 0x0005B0, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_4) == 0x0005C8, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x0005E0, "Member 'BP_FireEscape_C_Generate::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Divide_VectorVector_ReturnValue) == 0x0006C8, "Member 'BP_FireEscape_C_Generate::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_K2_SetRelativeLocation_SweepHitResult_2) == 0x0006E0, "Member 'BP_FireEscape_C_Generate::CallFunc_K2_SetRelativeLocation_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Conv_IntToDouble_ReturnValue_5) == 0x0007C8, "Member 'BP_FireEscape_C_Generate::CallFunc_Conv_IntToDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue_4) == 0x0007D0, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x0007D8, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_GetBounds_ReturnValue_6) == 0x0007E0, "Member 'BP_FireEscape_C_Generate::CallFunc_GetBounds_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000818, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_Origin_6) == 0x000820, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_Origin_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_BoxExtent_6) == 0x000838, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_BoxExtent_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakBoxSphereBounds_SphereRadius_6) == 0x000850, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakBoxSphereBounds_SphereRadius_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Add_DoubleDouble_ReturnValue_5) == 0x000858, "Member 'BP_FireEscape_C_Generate::CallFunc_Add_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_X_6) == 0x000860, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_X_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Y_6) == 0x000868, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Y_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_BreakVector_Z_6) == 0x000870, "Member 'BP_FireEscape_C_Generate::CallFunc_BreakVector_Z_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, K2Node_Select_Default) == 0x000878, "Member 'BP_FireEscape_C_Generate::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x000880, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_5) == 0x000888, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeTransform_ReturnValue) == 0x0008A0, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_DoubleDouble_ReturnValue_5) == 0x000900, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_AddComponent_ReturnValue) == 0x000908, "Member 'BP_FireEscape_C_Generate::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Multiply_DoubleDouble_ReturnValue_9) == 0x000910, "Member 'BP_FireEscape_C_Generate::CallFunc_Multiply_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_IsValid_ReturnValue_1) == 0x000918, "Member 'BP_FireEscape_C_Generate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeVector_ReturnValue_6) == 0x000920, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_MakeTransform_ReturnValue_1) == 0x000940, "Member 'BP_FireEscape_C_Generate::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0009A0, "Member 'BP_FireEscape_C_Generate::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_AddInstance_ReturnValue) == 0x0009A4, "Member 'BP_FireEscape_C_Generate::CallFunc_AddInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_AddInstance_ReturnValue_1) == 0x0009A8, "Member 'BP_FireEscape_C_Generate::CallFunc_AddInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, K2Node_DynamicCast_AsBP_Fire_Escape_Rung) == 0x0009B0, "Member 'BP_FireEscape_C_Generate::K2Node_DynamicCast_AsBP_Fire_Escape_Rung' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, K2Node_DynamicCast_bSuccess) == 0x0009B8, "Member 'BP_FireEscape_C_Generate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_Subtract_IntInt_ReturnValue_3) == 0x0009BC, "Member 'BP_FireEscape_C_Generate::CallFunc_Subtract_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_Generate, CallFunc_LessEqual_IntInt_ReturnValue_1) == 0x0009C0, "Member 'BP_FireEscape_C_Generate::CallFunc_LessEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_GetAudioSwitch \ +static_assert(alignof(BP_FireEscape_C_GetAudioSwitch) == 0x000008, "Wrong alignment on BP_FireEscape_C_GetAudioSwitch"); \ +static_assert(sizeof(BP_FireEscape_C_GetAudioSwitch) == 0x000008, "Wrong size on BP_FireEscape_C_GetAudioSwitch"); \ +static_assert(offsetof(BP_FireEscape_C_GetAudioSwitch, AudioSwitch_0) == 0x000000, "Member 'BP_FireEscape_C_GetAudioSwitch::AudioSwitch_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_GetLadderMesh \ +static_assert(alignof(BP_FireEscape_C_GetLadderMesh) == 0x000008, "Wrong alignment on BP_FireEscape_C_GetLadderMesh"); \ +static_assert(sizeof(BP_FireEscape_C_GetLadderMesh) == 0x000050, "Wrong size on BP_FireEscape_C_GetLadderMesh"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, Mesh) == 0x000000, "Member 'BP_FireEscape_C_GetLadderMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, CallFunc_Map_Find_Value) == 0x000008, "Member 'BP_FireEscape_C_GetLadderMesh::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, CallFunc_Map_Find_ReturnValue) == 0x000030, "Member 'BP_FireEscape_C_GetLadderMesh::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000038, "Member 'BP_FireEscape_C_GetLadderMesh::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, K2Node_DynamicCast_AsStatic_Mesh) == 0x000040, "Member 'BP_FireEscape_C_GetLadderMesh::K2Node_DynamicCast_AsStatic_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_GetLadderMesh, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'BP_FireEscape_C_GetLadderMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_ReceivePointDamage \ +static_assert(alignof(BP_FireEscape_C_ReceivePointDamage) == 0x000008, "Wrong alignment on BP_FireEscape_C_ReceivePointDamage"); \ +static_assert(sizeof(BP_FireEscape_C_ReceivePointDamage) == 0x000160, "Wrong size on BP_FireEscape_C_ReceivePointDamage"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, Damage) == 0x000000, "Member 'BP_FireEscape_C_ReceivePointDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, DamageType) == 0x000008, "Member 'BP_FireEscape_C_ReceivePointDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, HitLocation) == 0x000010, "Member 'BP_FireEscape_C_ReceivePointDamage::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, HitNormal) == 0x000028, "Member 'BP_FireEscape_C_ReceivePointDamage::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, HitComponent) == 0x000040, "Member 'BP_FireEscape_C_ReceivePointDamage::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, BoneName) == 0x000048, "Member 'BP_FireEscape_C_ReceivePointDamage::BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, ShotFromDirection) == 0x000050, "Member 'BP_FireEscape_C_ReceivePointDamage::ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, InstigatedBy) == 0x000068, "Member 'BP_FireEscape_C_ReceivePointDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, DamageCauser) == 0x000070, "Member 'BP_FireEscape_C_ReceivePointDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_ReceivePointDamage, HitInfo) == 0x000078, "Member 'BP_FireEscape_C_ReceivePointDamage::HitInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FireEscape_C_SnapToTop \ +static_assert(alignof(BP_FireEscape_C_SnapToTop) == 0x000008, "Wrong alignment on BP_FireEscape_C_SnapToTop"); \ +static_assert(sizeof(BP_FireEscape_C_SnapToTop) == 0x0004A0, "Wrong size on BP_FireEscape_C_SnapToTop"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000000, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_X) == 0x000030, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Y) == 0x000038, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Z) == 0x000040, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_X_1) == 0x000048, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Y_1) == 0x000050, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Z_1) == 0x000058, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000060, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000068, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000080, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue) == 0x000098, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Vector_Up_ReturnValue) == 0x0000B0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000C8, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000E0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000F8, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000110, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000128, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000140, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_X_2) == 0x000158, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Y_2) == 0x000160, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Z_2) == 0x000168, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000170, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000188, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, Temp_object_Variable) == 0x0001A0, "Member 'BP_FireEscape_C_SnapToTop::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_CapsuleTraceSingle_OutHit) == 0x0001B0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000298, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_bBlockingHit) == 0x000299, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_bInitialOverlap) == 0x00029A, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_Time) == 0x00029C, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_Distance) == 0x0002A0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_Location) == 0x0002A8, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_ImpactPoint) == 0x0002C0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_Normal) == 0x0002D8, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_ImpactNormal) == 0x0002F0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_PhysMat) == 0x000308, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_HitActor) == 0x000310, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_HitComponent) == 0x000318, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_HitBoneName) == 0x000320, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_BoneName) == 0x000328, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_HitItem) == 0x000330, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_ElementIndex) == 0x000334, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_FaceIndex) == 0x000338, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_TraceStart) == 0x000340, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakHitResult_TraceEnd) == 0x000358, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_X_3) == 0x000370, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Y_3) == 0x000378, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_BreakVector_Z_3) == 0x000380, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000388, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000390, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_MakeVector_ReturnValue) == 0x000398, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0003B0, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FireEscape_C_SnapToTop, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000498, "Member 'BP_FireEscape_C_SnapToTop::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_FireEscape_C \ +static_assert(alignof(ABP_FireEscape_C) == 0x000008, "Wrong alignment on ABP_FireEscape_C"); \ +static_assert(sizeof(ABP_FireEscape_C) == 0x0003C8, "Wrong size on ABP_FireEscape_C"); \ +static_assert(offsetof(ABP_FireEscape_C, UberGraphFrame) == 0x000298, "Member 'ABP_FireEscape_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, MantleTrigger) == 0x0002A0, "Member 'ABP_FireEscape_C::MantleTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, BottomRamp) == 0x0002A8, "Member 'ABP_FireEscape_C::BottomRamp' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, HeraAudioMass_ClimbableFireEscape_Bottom) == 0x0002B0, "Member 'ABP_FireEscape_C::HeraAudioMass_ClimbableFireEscape_Bottom' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, HeraAudioMass_ClimbableFireEscape_Top_0) == 0x0002B8, "Member 'ABP_FireEscape_C::HeraAudioMass_ClimbableFireEscape_Top_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, topladder) == 0x0002C0, "Member 'ABP_FireEscape_C::topladder' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, WrestlerHeightenedSensesClue) == 0x0002C8, "Member 'ABP_FireEscape_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, GroundLimitArrow2) == 0x0002D0, "Member 'ABP_FireEscape_C::GroundLimitArrow2' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, GroundLimitArrow1) == 0x0002D8, "Member 'ABP_FireEscape_C::GroundLimitArrow1' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Scene) == 0x0002E0, "Member 'ABP_FireEscape_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Cube) == 0x0002E8, "Member 'ABP_FireEscape_C::Cube' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, InstancedStaticMesh1) == 0x0002F0, "Member 'ABP_FireEscape_C::InstancedStaticMesh1' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, topfloor) == 0x0002F8, "Member 'ABP_FireEscape_C::topfloor' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Resonate_Reaction) == 0x000300, "Member 'ABP_FireEscape_C::Resonate_Reaction' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, InstancedStaticMesh) == 0x000308, "Member 'ABP_FireEscape_C::InstancedStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, GameplayTagLand) == 0x000310, "Member 'ABP_FireEscape_C::GameplayTagLand' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, ImpactEvent) == 0x000318, "Member 'ABP_FireEscape_C::ImpactEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, ResonanceEvent) == 0x000320, "Member 'ABP_FireEscape_C::ResonanceEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Floors) == 0x000328, "Member 'ABP_FireEscape_C::Floors' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Offset) == 0x000330, "Member 'ABP_FireEscape_C::Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, CollisionCube) == 0x000338, "Member 'ABP_FireEscape_C::CollisionCube' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Instance) == 0x000340, "Member 'ABP_FireEscape_C::Instance' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, LadderType) == 0x000348, "Member 'ABP_FireEscape_C::LadderType' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, AddEndPiece) == 0x000349, "Member 'ABP_FireEscape_C::AddEndPiece' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, Other_Actor) == 0x000350, "Member 'ABP_FireEscape_C::Other_Actor' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, TopOverride) == 0x000358, "Member 'ABP_FireEscape_C::TopOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, LadderMeshes) == 0x000360, "Member 'ABP_FireEscape_C::LadderMeshes' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, ClimbableAudioSwitch) == 0x0003B0, "Member 'ABP_FireEscape_C::ClimbableAudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, AudioSwitch) == 0x0003B8, "Member 'ABP_FireEscape_C::AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(ABP_FireEscape_C, CanGrabFromUnderneath) == 0x0003C0, "Member 'ABP_FireEscape_C::CanGrabFromUnderneath' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent \ +static_assert(alignof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent) == 0x000010, "Wrong alignment on WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent) == 0x0002B0, "Wrong size on WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, EntryPoint) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_BreakTransform_Location) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_BreakTransform_Rotation) == 0x000020, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_BreakTransform_Scale) == 0x000038, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_MakeTransform_ReturnValue_1) == 0x0000B0, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000110, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x000118, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_FinishSpawningActor_ReturnValue) == 0x000120, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x000128, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetCurrentWeapon_CurrentWeapon) == 0x000130, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetCurrentWeapon_CurrentWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetOwner_ReturnValue) == 0x000138, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_IsValid_ReturnValue) == 0x000140, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000148, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_DynamicCast_bSuccess) == 0x000150, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetEnemyTypeName_ReturnValue) == 0x000154, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetObjectClass_ReturnValue) == 0x000160, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000168, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue_1) == 0x000190, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_MakeStruct_structWeaponSwap) == 0x0001B8, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_MakeStruct_structWeaponSwap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_IsValid_ReturnValue_1) == 0x000218, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetObjectClass_ReturnValue_1) == 0x000220, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetObjectClass_ReturnValue_2) == 0x000228, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetObjectClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_ClassDynamicCast_AsBP_Ranged_Weapon_Instance_Base) == 0x000230, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_ClassDynamicCast_AsBP_Ranged_Weapon_Instance_Base' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_ClassDynamicCast_bSuccess) == 0x000238, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, K2Node_Event_EndPlayReason) == 0x000239, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_IsValid_ReturnValue_2) == 0x00023A, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetTransform_ReturnValue) == 0x000240, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x0002A0, "Member 'WrestlerWeaponStowComponent_C_ExecuteUbergraph_WrestlerWeaponStowComponent::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_GetCurrentWeapon \ +static_assert(alignof(WrestlerWeaponStowComponent_C_GetCurrentWeapon) == 0x000008, "Wrong alignment on WrestlerWeaponStowComponent_C_GetCurrentWeapon"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_GetCurrentWeapon) == 0x000070, "Wrong size on WrestlerWeaponStowComponent_C_GetCurrentWeapon"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CurrentWeapon) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CurrentWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, Weapon) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::Weapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, Temp_bool_True_if_break_was_hit_Variable) == 0x000010, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, Temp_int_Array_Index_Variable) == 0x000014, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_GetOwner_ReturnValue) == 0x000028, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_GetAttachedActors_OutActors) == 0x000030, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_Array_Get_Item) == 0x000048, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000058, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_BooleanAND_ReturnValue) == 0x000061, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetCurrentWeapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000068, "Member 'WrestlerWeaponStowComponent_C_GetCurrentWeapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_GetInitialWeaponInfos \ +static_assert(alignof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos) == 0x000008, "Wrong alignment on WrestlerWeaponStowComponent_C_GetInitialWeaponInfos"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos) == 0x000070, "Wrong size on WrestlerWeaponStowComponent_C_GetInitialWeaponInfos"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos, Weapon) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_GetInitialWeaponInfos::Weapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos, WeaponInfos) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_GetInitialWeaponInfos::WeaponInfos' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos, Return) == 0x000068, "Member 'WrestlerWeaponStowComponent_C_GetInitialWeaponInfos::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetInitialWeaponInfos, CallFunc_IsValidClass_ReturnValue) == 0x000069, "Member 'WrestlerWeaponStowComponent_C_GetInitialWeaponInfos::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_GetOverrideWeapon \ +static_assert(alignof(WrestlerWeaponStowComponent_C_GetOverrideWeapon) == 0x000008, "Wrong alignment on WrestlerWeaponStowComponent_C_GetOverrideWeapon"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_GetOverrideWeapon) == 0x000010, "Wrong size on WrestlerWeaponStowComponent_C_GetOverrideWeapon"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetOverrideWeapon, Weapon) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_GetOverrideWeapon::Weapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetOverrideWeapon, Return) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_GetOverrideWeapon::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetOverrideWeapon, CallFunc_IsValidClass_ReturnValue) == 0x000009, "Member 'WrestlerWeaponStowComponent_C_GetOverrideWeapon::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_GetWeaponEquipped \ +static_assert(alignof(WrestlerWeaponStowComponent_C_GetWeaponEquipped) == 0x000001, "Wrong alignment on WrestlerWeaponStowComponent_C_GetWeaponEquipped"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_GetWeaponEquipped) == 0x000001, "Wrong size on WrestlerWeaponStowComponent_C_GetWeaponEquipped"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_GetWeaponEquipped, IsInitial) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_GetWeaponEquipped::IsInitial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_ReceiveEndPlay \ +static_assert(alignof(WrestlerWeaponStowComponent_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on WrestlerWeaponStowComponent_C_ReceiveEndPlay"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_ReceiveEndPlay) == 0x000001, "Wrong size on WrestlerWeaponStowComponent_C_ReceiveEndPlay"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_SetOverrideWeapon \ +static_assert(alignof(WrestlerWeaponStowComponent_C_SetOverrideWeapon) == 0x000008, "Wrong alignment on WrestlerWeaponStowComponent_C_SetOverrideWeapon"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_SetOverrideWeapon) == 0x000050, "Wrong size on WrestlerWeaponStowComponent_C_SetOverrideWeapon"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, WeaponActor) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::WeaponActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, Return) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000010, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, CallFunc_GetObjectClass_ReturnValue) == 0x000020, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, CallFunc_GetObjectClass_ReturnValue_1) == 0x000030, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, K2Node_ClassDynamicCast_AsBP_Ranged_Weapon_Instance_Base) == 0x000038, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::K2Node_ClassDynamicCast_AsBP_Ranged_Weapon_Instance_Base' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, K2Node_ClassDynamicCast_bSuccess) == 0x000040, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_SetOverrideWeapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000048, "Member 'WrestlerWeaponStowComponent_C_SetOverrideWeapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerWeaponStowComponent_C_Stow_Weapon \ +static_assert(alignof(WrestlerWeaponStowComponent_C_Stow_Weapon) == 0x000010, "Wrong alignment on WrestlerWeaponStowComponent_C_Stow_Weapon"); \ +static_assert(sizeof(WrestlerWeaponStowComponent_C_Stow_Weapon) == 0x0000D0, "Wrong size on WrestlerWeaponStowComponent_C_Stow_Weapon"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, IsOverrideWeapon) == 0x000000, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::IsOverrideWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, WeaponToStowClass) == 0x000008, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::WeaponToStowClass' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_MakeTransform_ReturnValue) == 0x000020, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_GetCurrentWeapon_CurrentWeapon) == 0x000080, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_GetCurrentWeapon_CurrentWeapon' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000088, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_FinishSpawningActor_ReturnValue) == 0x000090, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_GetDisplayName_ReturnValue) == 0x000098, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, K2Node_SwitchString_CmpSuccess) == 0x0000A8, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::K2Node_SwitchString_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_GetOwner_ReturnValue) == 0x0000B0, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_GetComponentByClass_ReturnValue) == 0x0000B8, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0000C0, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerWeaponStowComponent_C_Stow_Weapon, CallFunc_K2_AttachToComponent_ReturnValue_1) == 0x0000C1, "Member 'WrestlerWeaponStowComponent_C_Stow_Weapon::CallFunc_K2_AttachToComponent_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerWeaponStowComponent_C \ +static_assert(alignof(UWrestlerWeaponStowComponent_C) == 0x000010, "Wrong alignment on UWrestlerWeaponStowComponent_C"); \ +static_assert(sizeof(UWrestlerWeaponStowComponent_C) == 0x0001B0, "Wrong size on UWrestlerWeaponStowComponent_C"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UWrestlerWeaponStowComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, InitialWeaponClass) == 0x0000A8, "Member 'UWrestlerWeaponStowComponent_C::InitialWeaponClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, OverrideWeaponClass) == 0x0000B0, "Member 'UWrestlerWeaponStowComponent_C::OverrideWeaponClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, InitialWeaponInfos) == 0x0000B8, "Member 'UWrestlerWeaponStowComponent_C::InitialWeaponInfos' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, InitialWeaponEquipped) == 0x000118, "Member 'UWrestlerWeaponStowComponent_C::InitialWeaponEquipped' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, CurrentWeaponMesh) == 0x000120, "Member 'UWrestlerWeaponStowComponent_C::CurrentWeaponMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, StowedWeapon) == 0x000128, "Member 'UWrestlerWeaponStowComponent_C::StowedWeapon' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, InitialRangedWeaponInstanceClass) == 0x000130, "Member 'UWrestlerWeaponStowComponent_C::InitialRangedWeaponInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, OverrideRangedWeaponInstanceClass) == 0x000138, "Member 'UWrestlerWeaponStowComponent_C::OverrideRangedWeaponInstanceClass' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, DroppedWeaponSkeletalMesh) == 0x000140, "Member 'UWrestlerWeaponStowComponent_C::DroppedWeaponSkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerWeaponStowComponent_C, DroppedWeaponTransform) == 0x000150, "Member 'UWrestlerWeaponStowComponent_C::DroppedWeaponTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage \ +static_assert(alignof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage) == 0x000008, "Wrong alignment on TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage"); \ +static_assert(sizeof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage) == 0x0000A0, "Wrong size on TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, EntryPoint) == 0x000000, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, Temp_bool_True_if_break_was_hit_Variable) == 0x000010, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, Temp_int_Array_Index_Variable) == 0x000014, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, K2Node_Event_InAutomata) == 0x000020, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, K2Node_Event_InState) == 0x000028, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, Temp_int_Loop_Counter_Variable) == 0x000030, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000038, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000048, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Array_Get_Item) == 0x000050, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_IsValid_ReturnValue_1) == 0x000059, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_FindAllAbilitiesWithTags_OutAbilityHandles) == 0x000060, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_FindAllAbilitiesWithTags_OutAbilityHandles' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Array_Length_ReturnValue) == 0x000074, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_GetGameplayAbilityFromSpecHandle_bIsInstance) == 0x000078, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_GetGameplayAbilityFromSpecHandle_bIsInstance' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_GetGameplayAbilityFromSpecHandle_ReturnValue) == 0x000080, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_GetGameplayAbilityFromSpecHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_Less_IntInt_ReturnValue) == 0x000088, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, K2Node_DynamicCast_AsWrestler_Gameplay_Ability_Ysabella_Stage_Presence) == 0x000090, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::K2Node_DynamicCast_AsWrestler_Gameplay_Ability_Ysabella_Stage_Presence' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, K2Node_DynamicCast_bSuccess) == 0x000098, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage, CallFunc_BooleanAND_ReturnValue) == 0x000099, "Member 'TriggerYsabella_Off_Stage_C_ExecuteUbergraph_TriggerYsabella_Off_Stage::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerYsabella_Off_Stage_C_ReceiveExecute \ +static_assert(alignof(TriggerYsabella_Off_Stage_C_ReceiveExecute) == 0x000008, "Wrong alignment on TriggerYsabella_Off_Stage_C_ReceiveExecute"); \ +static_assert(sizeof(TriggerYsabella_Off_Stage_C_ReceiveExecute) == 0x000010, "Wrong size on TriggerYsabella_Off_Stage_C_ReceiveExecute"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TriggerYsabella_Off_Stage_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_Off_Stage_C_ReceiveExecute, InState) == 0x000008, "Member 'TriggerYsabella_Off_Stage_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTriggerYsabella_Off_Stage_C \ +static_assert(alignof(UTriggerYsabella_Off_Stage_C) == 0x000008, "Wrong alignment on UTriggerYsabella_Off_Stage_C"); \ +static_assert(sizeof(UTriggerYsabella_Off_Stage_C) == 0x000098, "Wrong size on UTriggerYsabella_Off_Stage_C"); \ +static_assert(offsetof(UTriggerYsabella_Off_Stage_C, UberGraphFrame) == 0x000088, "Member 'UTriggerYsabella_Off_Stage_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTriggerYsabella_Off_Stage_C, In_Tag) == 0x000090, "Member 'UTriggerYsabella_Off_Stage_C::In_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore \ +static_assert(alignof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore) == 0x000008, "Wrong alignment on BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore"); \ +static_assert(sizeof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore) == 0x000028, "Wrong size on BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, InAgent) == 0x000000, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::InAgent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, InTargetPawn) == 0x000008, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::InTargetPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, ReturnValue) == 0x000010, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore, CallFunc_GetWeaponEquipped_IsInitial) == 0x000021, "Member 'BP_WrestlerTaskScore_InitialWeaponEquipped_C_GetScore::CallFunc_GetWeaponEquipped_IsInitial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerTaskScore_InitialWeaponEquipped_C \ +static_assert(alignof(UBP_WrestlerTaskScore_InitialWeaponEquipped_C) == 0x000008, "Wrong alignment on UBP_WrestlerTaskScore_InitialWeaponEquipped_C"); \ +static_assert(sizeof(UBP_WrestlerTaskScore_InitialWeaponEquipped_C) == 0x000030, "Wrong size on UBP_WrestlerTaskScore_InitialWeaponEquipped_C"); \ + +#define DUMPER7_ASSERTS_AN_SetObjective_C_Received_Notify \ +static_assert(alignof(AN_SetObjective_C_Received_Notify) == 0x000008, "Wrong alignment on AN_SetObjective_C_Received_Notify"); \ +static_assert(sizeof(AN_SetObjective_C_Received_Notify) == 0x000050, "Wrong size on AN_SetObjective_C_Received_Notify"); \ +static_assert(offsetof(AN_SetObjective_C_Received_Notify, MeshComp) == 0x000000, "Member 'AN_SetObjective_C_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_SetObjective_C_Received_Notify, Animation) == 0x000008, "Member 'AN_SetObjective_C_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_SetObjective_C_Received_Notify, EventReference) == 0x000010, "Member 'AN_SetObjective_C_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_SetObjective_C_Received_Notify, ReturnValue) == 0x000040, "Member 'AN_SetObjective_C_Received_Notify::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_SetObjective_C_Received_Notify, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000048, "Member 'AN_SetObjective_C_Received_Notify::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_SetObjective_C \ +static_assert(alignof(UAN_SetObjective_C) == 0x000008, "Wrong alignment on UAN_SetObjective_C"); \ +static_assert(sizeof(UAN_SetObjective_C) == 0x000040, "Wrong size on UAN_SetObjective_C"); \ +static_assert(offsetof(UAN_SetObjective_C, Objective) == 0x000038, "Member 'UAN_SetObjective_C::Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_DynamicPairedSmartObjectActor_C \ +static_assert(alignof(ABP_DynamicPairedSmartObjectActor_C) == 0x000008, "Wrong alignment on ABP_DynamicPairedSmartObjectActor_C"); \ +static_assert(sizeof(ABP_DynamicPairedSmartObjectActor_C) == 0x0002A8, "Wrong size on ABP_DynamicPairedSmartObjectActor_C"); \ +static_assert(offsetof(ABP_DynamicPairedSmartObjectActor_C, WrestlerSmartObject) == 0x000298, "Member 'ABP_DynamicPairedSmartObjectActor_C::WrestlerSmartObject' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicPairedSmartObjectActor_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_DynamicPairedSmartObjectActor_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FHoudiniEvent_SWC \ +static_assert(alignof(FHoudiniEvent_SWC) == 0x000004, "Wrong alignment on FHoudiniEvent_SWC"); \ +static_assert(sizeof(FHoudiniEvent_SWC) == 0x000048, "Wrong size on FHoudiniEvent_SWC"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Position) == 0x000000, "Member 'FHoudiniEvent_SWC::Position' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Normal) == 0x00000C, "Member 'FHoudiniEvent_SWC::Normal' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Impulse) == 0x000018, "Member 'FHoudiniEvent_SWC::Impulse' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Velocity) == 0x00001C, "Member 'FHoudiniEvent_SWC::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, POINTID) == 0x000028, "Member 'FHoudiniEvent_SWC::POINTID' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Time) == 0x00002C, "Member 'FHoudiniEvent_SWC::Time' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, LIFE) == 0x000030, "Member 'FHoudiniEvent_SWC::LIFE' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Color) == 0x000034, "Member 'FHoudiniEvent_SWC::Color' has a wrong offset!"); \ +static_assert(offsetof(FHoudiniEvent_SWC, Type) == 0x000044, "Member 'FHoudiniEvent_SWC::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FChaosDestructionEvent_SWC \ +static_assert(alignof(FChaosDestructionEvent_SWC) == 0x000004, "Wrong alignment on FChaosDestructionEvent_SWC"); \ +static_assert(sizeof(FChaosDestructionEvent_SWC) == 0x000044, "Wrong size on FChaosDestructionEvent_SWC"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, Position) == 0x000000, "Member 'FChaosDestructionEvent_SWC::Position' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, Normal) == 0x00000C, "Member 'FChaosDestructionEvent_SWC::Normal' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, Velocity) == 0x000018, "Member 'FChaosDestructionEvent_SWC::Velocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, AngularVelocity) == 0x000024, "Member 'FChaosDestructionEvent_SWC::AngularVelocity' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, ExtentMin) == 0x000030, "Member 'FChaosDestructionEvent_SWC::ExtentMin' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, ExtentMax) == 0x000034, "Member 'FChaosDestructionEvent_SWC::ExtentMax' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, ParticleID) == 0x000038, "Member 'FChaosDestructionEvent_SWC::ParticleID' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, Time) == 0x00003C, "Member 'FChaosDestructionEvent_SWC::Time' has a wrong offset!"); \ +static_assert(offsetof(FChaosDestructionEvent_SWC, Type) == 0x000040, "Member 'FChaosDestructionEvent_SWC::Type' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FPropertyBag_3789f30405c46e70 \ +static_assert(alignof(FPropertyBag_3789f30405c46e70) == 0x000008, "Wrong alignment on FPropertyBag_3789f30405c46e70"); \ +static_assert(sizeof(FPropertyBag_3789f30405c46e70) == 0x000008, "Wrong size on FPropertyBag_3789f30405c46e70"); \ +static_assert(offsetof(FPropertyBag_3789f30405c46e70, StimuliPriorities) == 0x000000, "Member 'FPropertyBag_3789f30405c46e70::StimuliPriorities' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerViewportClient_C \ +static_assert(alignof(UBP_WrestlerViewportClient_C) == 0x000008, "Wrong alignment on UBP_WrestlerViewportClient_C"); \ +static_assert(sizeof(UBP_WrestlerViewportClient_C) == 0x000400, "Wrong size on UBP_WrestlerViewportClient_C"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityAcquired_C \ +static_assert(alignof(UActiveAbilityAcquired_C) == 0x000010, "Wrong alignment on UActiveAbilityAcquired_C"); \ +static_assert(sizeof(UActiveAbilityAcquired_C) == 0x0007B0, "Wrong size on UActiveAbilityAcquired_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler) == 0x000110, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, Component) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::Component' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, ThisMaterial) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::ThisMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, MASS) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::MASS' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, Velocity) == 0x000018, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::Velocity' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, ImpulseNormal) == 0x000030, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::ImpulseNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, Location) == 0x000048, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::Location' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, OtherMaterial) == 0x000060, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::OtherMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, Actor) == 0x000068, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, Temp_object_Variable) == 0x000070, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_VSize_ReturnValue) == 0x000080, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_FClamp_ReturnValue) == 0x000090, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_GetOwner_ReturnValue) == 0x000098, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x0000A0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_GetAudioComponent_AudioComponent) == 0x0000B8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_IsValid_ReturnValue_2) == 0x0000C0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_IsValid_ReturnValue_3) == 0x0000C1, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0000C8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, K2Node_DynamicCast_bSuccess_1) == 0x0000D8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_VSize_ReturnValue_1) == 0x0000E0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_FClamp_ReturnValue_1) == 0x0000F0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_GetOwner_ReturnValue_1) == 0x0000F8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_DoesImplementInterface_ReturnValue) == 0x000100, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_PostImpactHeraAudio_Impulse_ImplicitCast) == 0x000104, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_PostImpactHeraAudio_Impulse_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler, CallFunc_PostImpactHeraCharacterAudio_Impulse_ImplicitCast) == 0x000108, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioCollisionHandler::CallFunc_PostImpactHeraCharacterAudio_Impulse_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler) == 0x000038, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, SlidingMaterial) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::SlidingMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, CallFunc_IsValid_ReturnValue_1) == 0x000011, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, Temp_delegate_Variable) == 0x000014, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, CallFunc_GetAudioComponentFromActor_AudioComponent) == 0x000028, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::CallFunc_GetAudioComponentFromActor_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler, CallFunc_IsValid_ReturnValue_2) == 0x000030, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideEndHandler::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler) == 0x0000B0, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, SlidingInfo) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, WorldLocation) == 0x000058, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, Impulse) == 0x000070, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::Impulse' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, CallFunc_GetAudioComponentFromActor_AudioComponent) == 0x000088, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::CallFunc_GetAudioComponentFromActor_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, CallFunc_VSize_ReturnValue) == 0x000090, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, CallFunc_IsValid_ReturnValue) == 0x000098, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, CallFunc_IsValid_ReturnValue_1) == 0x000099, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, Temp_delegate_Variable) == 0x00009C, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x0000AC, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideStartHandler::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler) == 0x0000F0, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, SlidingInfo) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, WorldLocation) == 0x000058, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_VSize_ReturnValue) == 0x000078, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_VSize_ReturnValue_1) == 0x000080, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_DoesImplementInterface_ReturnValue) == 0x000088, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x000090, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, K2Node_DynamicCast_bSuccess) == 0x0000A0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_GetAudioComponent_AudioComponent) == 0x0000A8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, Temp_object_Variable) == 0x0000B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_IsValid_ReturnValue_1) == 0x0000B8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0000C0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, K2Node_DynamicCast_bSuccess_1) == 0x0000D0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0000D8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x0000E0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x0000E4, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler, CallFunc_SetRTPC_InValue_ImplicitCast_2) == 0x0000E8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_AudioSlideUpdateHandler::CallFunc_SetRTPC_InValue_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler) == 0x0002D8, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, EntryPoint) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_ContactPair) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_ContactPair' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingActor_2) == 0x0000E8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherActor_2) == 0x0000F0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingInfo_1) == 0x0000F8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingInfo_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherInfo_1) == 0x000148, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherInfo_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_WorldLocation_1) == 0x000198, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_WorldLocation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_Impulse_1) == 0x0001B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_Impulse_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingActor_1) == 0x0001C8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherActor_1) == 0x0001D0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingMaterial) == 0x0001D8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherMaterial) == 0x0001E0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingActor) == 0x0001E8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherActor) == 0x0001F0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_SlidingInfo) == 0x0001F8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_OtherInfo) == 0x000248, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_OtherInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_WorldLocation) == 0x000298, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, K2Node_Event_Impulse) == 0x0002B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::K2Node_Event_Impulse' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, CallFunc_AudioCollisionHandler_Mass_ImplicitCast) == 0x0002C8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::CallFunc_AudioCollisionHandler_Mass_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler, CallFunc_AudioCollisionHandler_Mass_ImplicitCast_1) == 0x0002D0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_ExecuteUbergraph_BP_WrestlerPhysicsCollisionHandler::CallFunc_AudioCollisionHandler_Mass_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor) == 0x000078, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, Actor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, AudioComponent) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, Temp_object_Variable) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_GetAudioComponentDefault_OutExecBranches) == 0x000019, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_GetAudioComponentDefault_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_GetAudioComponentDefault_ReturnValue) == 0x000020, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_GetAudioComponentDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, K2Node_SwitchEnum_CmpSuccess) == 0x000028, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000030, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x000048, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000060, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_GetAudioComponent_AudioComponent) == 0x000068, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor, CallFunc_DoesImplementInterface_ReturnValue) == 0x000070, "Member 'BP_WrestlerPhysicsCollisionHandler_C_GetAudioComponentFromActor::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_OnImpact \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_OnImpact) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_OnImpact"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_OnImpact) == 0x0000E0, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_OnImpact"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnImpact, ContactPair) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnImpact::ContactPair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd) == 0x000020, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd, OtherActor) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd, SlidingMaterial) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd::SlidingMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd, OtherMaterial) == 0x000018, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideEnd::OtherMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart) == 0x0000E0, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, OtherActor) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, SlidingInfo) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, OtherInfo) == 0x000060, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::OtherInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, WorldLocation) == 0x0000B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart, Impulse) == 0x0000C8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideStart::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate) == 0x0000E0, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, SlidingActor) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::SlidingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, OtherActor) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, SlidingInfo) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::SlidingInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, OtherInfo) == 0x000060, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::OtherInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, WorldLocation) == 0x0000B0, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::WorldLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate, Impulse) == 0x0000C8, "Member 'BP_WrestlerPhysicsCollisionHandler_C_OnRollSlideUpdate::Impulse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio) == 0x000048, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, Impulse) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::Impulse' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, AudioComponent) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, ThisMaterial) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::ThisMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, OtherMaterial) == 0x000018, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::OtherMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x000021, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x000028, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio, Temp_delegate_Variable) == 0x000034, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraAudio::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio \ +static_assert(alignof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio) == 0x000008, "Wrong alignment on BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio"); \ +static_assert(sizeof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio) == 0x000048, "Wrong size on BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, Impulse) == 0x000000, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::Impulse' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, AudioCharacterComponent) == 0x000008, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::AudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, ThisMaterial) == 0x000010, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::ThisMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, OtherMaterial) == 0x000018, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::OtherMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, Temp_delegate_Variable) == 0x000020, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x000031, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x000038, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio, K2Node_SwitchEnum_CmpSuccess) == 0x000040, "Member 'BP_WrestlerPhysicsCollisionHandler_C_PostImpactHeraCharacterAudio::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerPhysicsCollisionHandler_C \ +static_assert(alignof(UBP_WrestlerPhysicsCollisionHandler_C) == 0x000008, "Wrong alignment on UBP_WrestlerPhysicsCollisionHandler_C"); \ +static_assert(sizeof(UBP_WrestlerPhysicsCollisionHandler_C) == 0x000098, "Wrong size on UBP_WrestlerPhysicsCollisionHandler_C"); \ +static_assert(offsetof(UBP_WrestlerPhysicsCollisionHandler_C, UberGraphFrame) == 0x000090, "Member 'UBP_WrestlerPhysicsCollisionHandler_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver \ +static_assert(alignof(GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver) == 0x000004, "Wrong alignment on GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver"); \ +static_assert(sizeof(GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver) == 0x000004, "Wrong size on GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver"); \ +static_assert(offsetof(GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_PeekOver_C_ExecuteUbergraph_GA_Patrol_Action_PeekOver::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_PeekOver_C \ +static_assert(alignof(UGA_Patrol_Action_PeekOver_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_PeekOver_C"); \ +static_assert(sizeof(UGA_Patrol_Action_PeekOver_C) == 0x000698, "Wrong size on UGA_Patrol_Action_PeekOver_C"); \ +static_assert(offsetof(UGA_Patrol_Action_PeekOver_C, UberGraphFrame_GA_Patrol_Action_PeekOver_C) == 0x000690, "Member 'UGA_Patrol_Action_PeekOver_C::UberGraphFrame_GA_Patrol_Action_PeekOver_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction \ +static_assert(alignof(GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction) == 0x000004, "Wrong alignment on GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction"); \ +static_assert(sizeof(GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction) == 0x000008, "Wrong size on GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction, K2Node_Event_bWasCancelled) == 0x000004, "Member 'GA_EnemyDeadBodyReaction_C_ExecuteUbergraph_GA_EnemyDeadBodyReaction::K2Node_Event_bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyDeadBodyReaction_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyDeadBodyReaction_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyDeadBodyReaction_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyDeadBodyReaction_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyDeadBodyReaction_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyDeadBodyReaction_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location \ +static_assert(alignof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location) == 0x000008, "Wrong alignment on GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location"); \ +static_assert(sizeof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location) == 0x000070, "Wrong size on GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, Location) == 0x000000, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000018, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_Get_Look_Target_Location_Location) == 0x000020, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_Get_Look_Target_Location_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_GetAIController_ReturnValue) == 0x000038, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_GetSeenActorByTag_ReturnValue) == 0x000048, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_GetSeenActorByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'GA_EnemyDeadBodyReaction_C_Get_Look_Target_Location::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyDeadBodyReaction_C \ +static_assert(alignof(UGA_EnemyDeadBodyReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyDeadBodyReaction_C"); \ +static_assert(sizeof(UGA_EnemyDeadBodyReaction_C) == 0x000700, "Wrong size on UGA_EnemyDeadBodyReaction_C"); \ +static_assert(offsetof(UGA_EnemyDeadBodyReaction_C, UberGraphFrame_GA_EnemyDeadBodyReaction_C) == 0x0006D8, "Member 'UGA_EnemyDeadBodyReaction_C::UberGraphFrame_GA_EnemyDeadBodyReaction_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyDeadBodyReaction_C, AbilityEndedEvent) == 0x0006E0, "Member 'UGA_EnemyDeadBodyReaction_C::AbilityEndedEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerGlobalData_C \ +static_assert(alignof(UBP_WrestlerGlobalData_C) == 0x000008, "Wrong alignment on UBP_WrestlerGlobalData_C"); \ +static_assert(sizeof(UBP_WrestlerGlobalData_C) == 0x000068, "Wrong size on UBP_WrestlerGlobalData_C"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Shot_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_Shot_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_Shot_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_Shot_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_Shot_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_Shot_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot \ +static_assert(alignof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot) == 0x000008, "Wrong alignment on WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot"); \ +static_assert(sizeof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot) == 0x0002D8, "Wrong size on WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, K2Node_Event_OutHit) == 0x000008, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::K2Node_Event_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_bBlockingHit) == 0x0000F0, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_bInitialOverlap) == 0x0000F1, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_Time) == 0x0000F4, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_Distance) == 0x0000F8, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_Location) == 0x000100, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_ImpactPoint) == 0x000118, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_Normal) == 0x000130, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_ImpactNormal) == 0x000148, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_PhysMat) == 0x000160, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_HitActor) == 0x000168, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_HitComponent) == 0x000170, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_HitBoneName) == 0x000178, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_BoneName) == 0x000180, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_HitItem) == 0x000188, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_ElementIndex) == 0x00018C, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_FaceIndex) == 0x000190, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_TraceStart) == 0x000198, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_BreakHitResult_TraceEnd) == 0x0001B0, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0001C8, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0002B0, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_RandomFloatInRange_ReturnValue) == 0x0002B8, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot, CallFunc_MakeVector_ReturnValue) == 0x0002C0, "Member 'WrestlerProjectile_Shot_C_ExecuteUbergraph_WrestlerProjectile_Shot::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_Shot_C \ +static_assert(alignof(AWrestlerProjectile_Shot_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_Shot_C"); \ +static_assert(sizeof(AWrestlerProjectile_Shot_C) == 0x000428, "Wrong size on AWrestlerProjectile_Shot_C"); \ +static_assert(offsetof(AWrestlerProjectile_Shot_C, UberGraphFrame_WrestlerProjectile_Shot_C) == 0x000410, "Member 'AWrestlerProjectile_Shot_C::UberGraphFrame_WrestlerProjectile_Shot_C' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Shot_C, NS_Bullet_trail) == 0x000418, "Member 'AWrestlerProjectile_Shot_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Shot_C, SM_Tracer) == 0x000420, "Member 'AWrestlerProjectile_Shot_C::SM_Tracer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerGameInstance_C \ +static_assert(alignof(UBP_WrestlerGameInstance_C) == 0x000008, "Wrong alignment on UBP_WrestlerGameInstance_C"); \ +static_assert(sizeof(UBP_WrestlerGameInstance_C) == 0x000278, "Wrong size on UBP_WrestlerGameInstance_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy \ +static_assert(alignof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy"); \ +static_assert(sizeof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy) == 0x0000E0, "Wrong size on GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000010, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, K2Node_Event_EventData) == 0x000028, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy, CallFunc_GetPlayerController_ReturnValue) == 0x0000D8, "Member 'GA_PlayerHitReact_Heavy_C_ExecuteUbergraph_GA_PlayerHitReact_Heavy::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_Heavy_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_Heavy_C \ +static_assert(alignof(UGA_PlayerHitReact_Heavy_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_Heavy_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_Heavy_C) == 0x0007A0, "Wrong size on UGA_PlayerHitReact_Heavy_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_Heavy_C, UberGraphFrame_GA_PlayerHitReact_Heavy_C) == 0x000798, "Member 'UGA_PlayerHitReact_Heavy_C::UberGraphFrame_GA_PlayerHitReact_Heavy_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP \ +static_assert(alignof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP) == 0x000008, "Wrong alignment on SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP"); \ +static_assert(sizeof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP) == 0x000140, "Wrong size on SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, EntryPoint) == 0x000000, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, CallFunc_GetBoundActor_ReturnValue) == 0x000008, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::CallFunc_GetBoundActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x000010, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_AsPawn) == 0x000038, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, CallFunc_GetController_ReturnValue) == 0x000048, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000050, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, CallFunc_GetFrameInput_ReturnValue) == 0x000060, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::CallFunc_GetFrameInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1) == 0x0000E8, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, CallFunc_GetBoundActor_ReturnValue_1) == 0x000110, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::CallFunc_GetBoundActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, CallFunc_GetBoundActor_ReturnValue_2) == 0x000118, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::CallFunc_GetBoundActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_AsBP_Pro_Escape_Guard) == 0x000120, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_AsBP_Pro_Escape_Guard' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_bSuccess_2) == 0x000128, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_AsBP_Pro_Escape_Guard_1) == 0x000130, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_AsBP_Pro_Escape_Guard_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP, K2Node_DynamicCast_bSuccess_3) == 0x000138, "Member 'SEQ_ProEscape_First_Feed_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_First_Feed_DirectorBP::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USEQ_ProEscape_First_Feed_DirectorBP_C \ +static_assert(alignof(USEQ_ProEscape_First_Feed_DirectorBP_C) == 0x000008, "Wrong alignment on USEQ_ProEscape_First_Feed_DirectorBP_C"); \ +static_assert(sizeof(USEQ_ProEscape_First_Feed_DirectorBP_C) == 0x000048, "Wrong size on USEQ_ProEscape_First_Feed_DirectorBP_C"); \ +static_assert(offsetof(USEQ_ProEscape_First_Feed_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USEQ_ProEscape_First_Feed_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USEQ_ProEscape_First_Feed_DirectorBP_C, PressedFeed) == 0x000040, "Member 'USEQ_ProEscape_First_Feed_DirectorBP_C::PressedFeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard \ +static_assert(alignof(BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard) == 0x000004, "Wrong alignment on BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard"); \ +static_assert(sizeof(BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard) == 0x000004, "Wrong size on BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard"); \ +static_assert(offsetof(BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard, EntryPoint) == 0x000000, "Member 'BP_ProEscapeGuard_C_ExecuteUbergraph_BP_ProEscapeGuard::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ProEscapeGuard_C \ +static_assert(alignof(ABP_ProEscapeGuard_C) == 0x000008, "Wrong alignment on ABP_ProEscapeGuard_C"); \ +static_assert(sizeof(ABP_ProEscapeGuard_C) == 0x000360, "Wrong size on ABP_ProEscapeGuard_C"); \ +static_assert(offsetof(ABP_ProEscapeGuard_C, UberGraphFrame) == 0x000340, "Member 'ABP_ProEscapeGuard_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ProEscapeGuard_C, HeraMissionActor) == 0x000348, "Member 'ABP_ProEscapeGuard_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_ProEscapeGuard_C, FeedReadyObjective) == 0x000350, "Member 'ABP_ProEscapeGuard_C::FeedReadyObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_ProEscapeGuard_C, FeedDoneObjective) == 0x000358, "Member 'ABP_ProEscapeGuard_C::FeedDoneObjective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_HealthRegen_C \ +static_assert(alignof(UGE_HealthRegen_C) == 0x000008, "Wrong alignment on UGE_HealthRegen_C"); \ +static_assert(sizeof(UGE_HealthRegen_C) == 0x000A70, "Wrong size on UGE_HealthRegen_C"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_BanuPassive \ +static_assert(alignof(BP_MixController_C_BanuPassive) == 0x000001, "Wrong alignment on BP_MixController_C_BanuPassive"); \ +static_assert(sizeof(BP_MixController_C_BanuPassive) == 0x000001, "Wrong size on BP_MixController_C_BanuPassive"); \ +static_assert(offsetof(BP_MixController_C_BanuPassive, Active) == 0x000000, "Member 'BP_MixController_C_BanuPassive::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Blink \ +static_assert(alignof(BP_MixController_C_Blink) == 0x000001, "Wrong alignment on BP_MixController_C_Blink"); \ +static_assert(sizeof(BP_MixController_C_Blink) == 0x000001, "Wrong size on BP_MixController_C_Blink"); \ +static_assert(offsetof(BP_MixController_C_Blink, Active) == 0x000000, "Member 'BP_MixController_C_Blink::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_BrujahuPassive \ +static_assert(alignof(BP_MixController_C_BrujahuPassive) == 0x000001, "Wrong alignment on BP_MixController_C_BrujahuPassive"); \ +static_assert(sizeof(BP_MixController_C_BrujahuPassive) == 0x000001, "Wrong size on BP_MixController_C_BrujahuPassive"); \ +static_assert(offsetof(BP_MixController_C_BrujahuPassive, Active) == 0x000000, "Member 'BP_MixController_C_BrujahuPassive::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Charge \ +static_assert(alignof(BP_MixController_C_Charge) == 0x000001, "Wrong alignment on BP_MixController_C_Charge"); \ +static_assert(sizeof(BP_MixController_C_Charge) == 0x000001, "Wrong size on BP_MixController_C_Charge"); \ +static_assert(offsetof(BP_MixController_C_Charge, Active) == 0x000000, "Member 'BP_MixController_C_Charge::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Combat_State \ +static_assert(alignof(BP_MixController_C_Combat_State) == 0x000004, "Wrong alignment on BP_MixController_C_Combat_State"); \ +static_assert(sizeof(BP_MixController_C_Combat_State) == 0x000034, "Wrong size on BP_MixController_C_Combat_State"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, New_Value) == 0x000000, "Member 'BP_MixController_C_Combat_State::New_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, PreviousBattleState) == 0x000004, "Member 'BP_MixController_C_Combat_State::PreviousBattleState' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, Temp_delegate_Variable) == 0x000008, "Member 'BP_MixController_C_Combat_State::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_Conv_IntToByte_ReturnValue) == 0x000018, "Member 'BP_MixController_C_Combat_State::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, Temp_delegate_Variable_1) == 0x00001C, "Member 'BP_MixController_C_Combat_State::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_GetValidValue_ReturnValue) == 0x00002C, "Member 'BP_MixController_C_Combat_State::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_Conv_IntToByte_ReturnValue_1) == 0x00002D, "Member 'BP_MixController_C_Combat_State::CallFunc_Conv_IntToByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00002E, "Member 'BP_MixController_C_Combat_State::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_GetValidValue_ReturnValue_1) == 0x00002F, "Member 'BP_MixController_C_Combat_State::CallFunc_GetValidValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Combat_State, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000030, "Member 'BP_MixController_C_Combat_State::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_CombatFeed \ +static_assert(alignof(BP_MixController_C_CombatFeed) == 0x000001, "Wrong alignment on BP_MixController_C_CombatFeed"); \ +static_assert(sizeof(BP_MixController_C_CombatFeed) == 0x000001, "Wrong size on BP_MixController_C_CombatFeed"); \ +static_assert(offsetof(BP_MixController_C_CombatFeed, Active) == 0x000000, "Member 'BP_MixController_C_CombatFeed::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Cutscene \ +static_assert(alignof(BP_MixController_C_Cutscene) == 0x000004, "Wrong alignment on BP_MixController_C_Cutscene"); \ +static_assert(sizeof(BP_MixController_C_Cutscene) == 0x000030, "Wrong size on BP_MixController_C_Cutscene"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, CutsceneType_0) == 0x000000, "Member 'BP_MixController_C_Cutscene::CutsceneType_0' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable) == 0x000004, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, CallFunc_Conv_IntToByte_ReturnValue) == 0x000008, "Member 'BP_MixController_C_Cutscene::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, CallFunc_GetValidValue_ReturnValue) == 0x000009, "Member 'BP_MixController_C_Cutscene::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable_1) == 0x00000C, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable_2) == 0x000010, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable_3) == 0x000014, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable_4) == 0x000018, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_real_Variable_5) == 0x00001C, "Member 'BP_MixController_C_Cutscene::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'BP_MixController_C_Cutscene::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, CallFunc_GetProperty_ReturnValue) == 0x000024, "Member 'BP_MixController_C_Cutscene::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, Temp_byte_Variable) == 0x000028, "Member 'BP_MixController_C_Cutscene::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Cutscene, K2Node_Select_Default) == 0x00002C, "Member 'BP_MixController_C_Cutscene::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Dead \ +static_assert(alignof(BP_MixController_C_Dead) == 0x000001, "Wrong alignment on BP_MixController_C_Dead"); \ +static_assert(sizeof(BP_MixController_C_Dead) == 0x000001, "Wrong size on BP_MixController_C_Dead"); \ +static_assert(offsetof(BP_MixController_C_Dead, Bool) == 0x000000, "Member 'BP_MixController_C_Dead::Bool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Dialogue_State \ +static_assert(alignof(BP_MixController_C_Dialogue_State) == 0x000004, "Wrong alignment on BP_MixController_C_Dialogue_State"); \ +static_assert(sizeof(BP_MixController_C_Dialogue_State) == 0x00000C, "Wrong size on BP_MixController_C_Dialogue_State"); \ +static_assert(offsetof(BP_MixController_C_Dialogue_State, DialogueState) == 0x000000, "Member 'BP_MixController_C_Dialogue_State::DialogueState' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Dialogue_State, CallFunc_Conv_IntToByte_ReturnValue) == 0x000004, "Member 'BP_MixController_C_Dialogue_State::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Dialogue_State, CallFunc_GetValidValue_ReturnValue) == 0x000005, "Member 'BP_MixController_C_Dialogue_State::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Dialogue_State, K2Node_SwitchEnum_CmpSuccess) == 0x000006, "Member 'BP_MixController_C_Dialogue_State::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_Dialogue_State, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_MixController_C_Dialogue_State::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_EarthShock \ +static_assert(alignof(BP_MixController_C_EarthShock) == 0x000001, "Wrong alignment on BP_MixController_C_EarthShock"); \ +static_assert(sizeof(BP_MixController_C_EarthShock) == 0x000001, "Wrong size on BP_MixController_C_EarthShock"); \ +static_assert(offsetof(BP_MixController_C_EarthShock, Active) == 0x000000, "Member 'BP_MixController_C_EarthShock::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_ExecuteUbergraph_BP_MixController \ +static_assert(alignof(BP_MixController_C_ExecuteUbergraph_BP_MixController) == 0x000008, "Wrong alignment on BP_MixController_C_ExecuteUbergraph_BP_MixController"); \ +static_assert(sizeof(BP_MixController_C_ExecuteUbergraph_BP_MixController) == 0x000510, "Wrong size on BP_MixController_C_ExecuteUbergraph_BP_MixController"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, EntryPoint) == 0x000000, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_byte_Variable) == 0x00000C, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Variable) == 0x000010, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable) == 0x000018, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable_1) == 0x000020, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable_2) == 0x000028, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Variable_1) == 0x000030, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable_3) == 0x000038, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable_4) == 0x000040, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_real_Variable_5) == 0x000048, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_bool_Variable) == 0x000050, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_byte_Variable_1) == 0x000051, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_byte_Variable_2) == 0x000052, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_byte_Variable_3) == 0x000053, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_object_Variable) == 0x000058, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_object_Variable_1) == 0x000060, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_object_Variable_2) == 0x000068, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_51) == 0x000070, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_51' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_51) == 0x000078, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_51' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_GetPostFeedEffectDuration_Duration) == 0x000080, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_GetPostFeedEffectDuration_Duration' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_byte_Variable_4) == 0x000088, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_50) == 0x000090, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_50' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_50) == 0x000098, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_50' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_49) == 0x0000A0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_49' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_49) == 0x0000A8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_49' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_48) == 0x0000B0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_48' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_48) == 0x0000B8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_48' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_47) == 0x0000C0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_47' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_47) == 0x0000C8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_47' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_46) == 0x0000D0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_46' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_46) == 0x0000D8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_46' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_45) == 0x0000E0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_45' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_45) == 0x0000E8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_45' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_44) == 0x0000F0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_44' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_44) == 0x0000F8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_44' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_43) == 0x000100, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_43' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_43) == 0x000108, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_43' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_42) == 0x000110, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_42' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_42) == 0x000118, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_42' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_41) == 0x000120, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_41' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_41) == 0x000128, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_41' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_40) == 0x000130, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_40' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_40) == 0x000138, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_40' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000140, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_39) == 0x000148, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_39' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_39) == 0x000150, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_39' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000158, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_38) == 0x000160, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_38' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_38) == 0x000168, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_38' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000170, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_37) == 0x000178, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_37' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_37) == 0x000180, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_37' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000188, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_36) == 0x000190, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_36' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_36) == 0x000198, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_36' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_35) == 0x0001A0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_35' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_35) == 0x0001A8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_35' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Event_PropertyStorage) == 0x0001B0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Event_PropertyStorage' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_34) == 0x0001B8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_34' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_34) == 0x0001C0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_34' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_33) == 0x0001C8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_33' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_33) == 0x0001D0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_33' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_32) == 0x0001D8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_32' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_32) == 0x0001E0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_32' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_31) == 0x0001E8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_31' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_31) == 0x0001F0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_31' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_30) == 0x0001F8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_30' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_30) == 0x000200, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_30' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_29) == 0x000208, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_29' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_29) == 0x000210, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_29' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_28) == 0x000218, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_28' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_28) == 0x000220, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_28' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_27) == 0x000228, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_27' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_27) == 0x000230, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_27' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_26) == 0x000238, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_26' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_26) == 0x000240, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_26' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Variable_2) == 0x000244, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_string_Variable) == 0x000248, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_string_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_25) == 0x000258, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_25' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_25) == 0x000260, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_25' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_24) == 0x000268, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_24' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_24) == 0x000270, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_24' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_23) == 0x000278, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_23' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_23) == 0x000280, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_23' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_22) == 0x000288, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_22' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_22) == 0x000290, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default) == 0x000294, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default_1) == 0x000298, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_21) == 0x0002A0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_21' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_21) == 0x0002A8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_20) == 0x0002B0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_20' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_20) == 0x0002B8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default_2) == 0x0002C0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default_3) == 0x0002C8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_19) == 0x0002D0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_19) == 0x0002D8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_MapRangeClamped_ReturnValue) == 0x0002E0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Array_Length_ReturnValue) == 0x0002E8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Less_IntInt_ReturnValue) == 0x0002EC, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Array_Index_Variable) == 0x0002F0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Array_Get_Item) == 0x0002F8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_18) == 0x000308, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_18) == 0x000310, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_17) == 0x000318, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_17) == 0x000320, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000328, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000330, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_string_Variable_1) == 0x000338, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_string_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_string_Variable_2) == 0x000348, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_string_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_GetProperty_ReturnValue) == 0x000358, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_16) == 0x000360, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_16) == 0x000368, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Not_PreBool_ReturnValue) == 0x00036C, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000370, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_15) == 0x000378, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_15) == 0x000380, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_14) == 0x000388, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_14) == 0x000390, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_13) == 0x000398, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_13) == 0x0003A0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_12) == 0x0003A8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_12) == 0x0003B0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_11) == 0x0003B8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_11) == 0x0003C0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_10) == 0x0003C8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_10) == 0x0003D0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_9) == 0x0003D8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_9) == 0x0003E0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x0003E8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_8) == 0x0003F0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_8) == 0x0003F8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_7) == 0x000400, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_7) == 0x000408, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000410, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Conv_IntToByte_ReturnValue) == 0x000418, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_6) == 0x000420, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_6) == 0x000428, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_GetValidValue_ReturnValue) == 0x000429, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_5) == 0x000430, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_5) == 0x000438, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x000440, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default_4) == 0x000448, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_4) == 0x000450, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_4) == 0x000458, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, Temp_int_Variable_3) == 0x00045C, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000460, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_Select_Default_5) == 0x000468, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_3) == 0x000478, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_3) == 0x000480, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_2) == 0x000488, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_2) == 0x000490, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property_1) == 0x000498, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue_1) == 0x0004A0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_Property) == 0x0004A8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, K2Node_HeraPropertyBoundEvent_NewValue) == 0x0004B0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::K2Node_HeraPropertyBoundEvent_NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Delay_Duration_ImplicitCast) == 0x0004B4, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0004B8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0004C0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2) == 0x0004C8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3) == 0x0004D0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_HealthChanged_NewValue_ImplicitCast) == 0x0004D8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_HealthChanged_NewValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_HeightenedSensesTimeRemaining_Time_Remaining_ImplicitCast) == 0x0004E0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_HeightenedSensesTimeRemaining_Time_Remaining_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x0004E8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_4) == 0x0004F0, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_5) == 0x0004F8, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000500, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ExecuteUbergraph_BP_MixController, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_6) == 0x000508, "Member 'BP_MixController_C_ExecuteUbergraph_BP_MixController::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Falling \ +static_assert(alignof(BP_MixController_C_Falling) == 0x000001, "Wrong alignment on BP_MixController_C_Falling"); \ +static_assert(sizeof(BP_MixController_C_Falling) == 0x000001, "Wrong size on BP_MixController_C_Falling"); \ +static_assert(offsetof(BP_MixController_C_Falling, Active) == 0x000000, "Member 'BP_MixController_C_Falling::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_GetPostFeedEffectDuration \ +static_assert(alignof(BP_MixController_C_GetPostFeedEffectDuration) == 0x000008, "Wrong alignment on BP_MixController_C_GetPostFeedEffectDuration"); \ +static_assert(sizeof(BP_MixController_C_GetPostFeedEffectDuration) == 0x000040, "Wrong size on BP_MixController_C_GetPostFeedEffectDuration"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, Duration) == 0x000000, "Member 'BP_MixController_C_GetPostFeedEffectDuration::Duration' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, DurationMax) == 0x000008, "Member 'BP_MixController_C_GetPostFeedEffectDuration::DurationMax' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, DurationMin) == 0x000010, "Member 'BP_MixController_C_GetPostFeedEffectDuration::DurationMin' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000018, "Member 'BP_MixController_C_GetPostFeedEffectDuration::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, CallFunc_GetProperty_ReturnValue) == 0x000020, "Member 'BP_MixController_C_GetPostFeedEffectDuration::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_MixController_C_GetPostFeedEffectDuration::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_MixController_C_GetPostFeedEffectDuration::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_GetPostFeedEffectDuration, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000038, "Member 'BP_MixController_C_GetPostFeedEffectDuration::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Gliding \ +static_assert(alignof(BP_MixController_C_Gliding) == 0x000001, "Wrong alignment on BP_MixController_C_Gliding"); \ +static_assert(sizeof(BP_MixController_C_Gliding) == 0x000001, "Wrong size on BP_MixController_C_Gliding"); \ +static_assert(offsetof(BP_MixController_C_Gliding, Active) == 0x000000, "Member 'BP_MixController_C_Gliding::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_HealthChanged \ +static_assert(alignof(BP_MixController_C_HealthChanged) == 0x000008, "Wrong alignment on BP_MixController_C_HealthChanged"); \ +static_assert(sizeof(BP_MixController_C_HealthChanged) == 0x000040, "Wrong size on BP_MixController_C_HealthChanged"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, NewValue) == 0x000000, "Member 'BP_MixController_C_HealthChanged::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, IsNotLowHealth) == 0x000008, "Member 'BP_MixController_C_HealthChanged::IsNotLowHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, PreviousHealth) == 0x000010, "Member 'BP_MixController_C_HealthChanged::PreviousHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, Temp_delegate_Variable) == 0x000018, "Member 'BP_MixController_C_HealthChanged::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, Temp_delegate_Variable_1) == 0x000028, "Member 'BP_MixController_C_HealthChanged::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_MixController_C_HealthChanged::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HealthChanged, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000039, "Member 'BP_MixController_C_HealthChanged::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_HeightenedSensesTimeRemaining \ +static_assert(alignof(BP_MixController_C_HeightenedSensesTimeRemaining) == 0x000008, "Wrong alignment on BP_MixController_C_HeightenedSensesTimeRemaining"); \ +static_assert(sizeof(BP_MixController_C_HeightenedSensesTimeRemaining) == 0x000010, "Wrong size on BP_MixController_C_HeightenedSensesTimeRemaining"); \ +static_assert(offsetof(BP_MixController_C_HeightenedSensesTimeRemaining, Time_Remaining) == 0x000000, "Member 'BP_MixController_C_HeightenedSensesTimeRemaining::Time_Remaining' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_HeightenedSensesTimeRemaining, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000008, "Member 'BP_MixController_C_HeightenedSensesTimeRemaining::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_LightningStrike \ +static_assert(alignof(BP_MixController_C_LightningStrike) == 0x000001, "Wrong alignment on BP_MixController_C_LightningStrike"); \ +static_assert(sizeof(BP_MixController_C_LightningStrike) == 0x000001, "Wrong size on BP_MixController_C_LightningStrike"); \ +static_assert(offsetof(BP_MixController_C_LightningStrike, Active) == 0x000000, "Member 'BP_MixController_C_LightningStrike::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_MalkSprint \ +static_assert(alignof(BP_MixController_C_MalkSprint) == 0x000001, "Wrong alignment on BP_MixController_C_MalkSprint"); \ +static_assert(sizeof(BP_MixController_C_MalkSprint) == 0x000001, "Wrong size on BP_MixController_C_MalkSprint"); \ +static_assert(offsetof(BP_MixController_C_MalkSprint, Active) == 0x000000, "Member 'BP_MixController_C_MalkSprint::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_MaskOfThousandFaces \ +static_assert(alignof(BP_MixController_C_MaskOfThousandFaces) == 0x000004, "Wrong alignment on BP_MixController_C_MaskOfThousandFaces"); \ +static_assert(sizeof(BP_MixController_C_MaskOfThousandFaces) == 0x000014, "Wrong size on BP_MixController_C_MaskOfThousandFaces"); \ +static_assert(offsetof(BP_MixController_C_MaskOfThousandFaces, Active) == 0x000000, "Member 'BP_MixController_C_MaskOfThousandFaces::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MaskOfThousandFaces, Temp_delegate_Variable) == 0x000004, "Member 'BP_MixController_C_MaskOfThousandFaces::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Masquerade_Level \ +static_assert(alignof(BP_MixController_C_Masquerade_Level) == 0x000004, "Wrong alignment on BP_MixController_C_Masquerade_Level"); \ +static_assert(sizeof(BP_MixController_C_Masquerade_Level) == 0x000004, "Wrong size on BP_MixController_C_Masquerade_Level"); \ +static_assert(offsetof(BP_MixController_C_Masquerade_Level, Masq_Level) == 0x000000, "Member 'BP_MixController_C_Masquerade_Level::Masq_Level' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_MenuID \ +static_assert(alignof(BP_MixController_C_MenuID) == 0x000004, "Wrong alignment on BP_MixController_C_MenuID"); \ +static_assert(sizeof(BP_MixController_C_MenuID) == 0x0000A0, "Wrong size on BP_MixController_C_MenuID"); \ +static_assert(offsetof(BP_MixController_C_MenuID, NewMenuID) == 0x000000, "Member 'BP_MixController_C_MenuID::NewMenuID' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable) == 0x000004, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, CallFunc_Conv_IntToByte_ReturnValue) == 0x000014, "Member 'BP_MixController_C_MenuID::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, CallFunc_GetValidValue_ReturnValue) == 0x000015, "Member 'BP_MixController_C_MenuID::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_1) == 0x000018, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, K2Node_SwitchEnum_CmpSuccess) == 0x000028, "Member 'BP_MixController_C_MenuID::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_2) == 0x00002C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_3) == 0x00003C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_4) == 0x00004C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_5) == 0x00005C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_6) == 0x00006C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_7) == 0x00007C, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, CallFunc_NotEqual_IntInt_ReturnValue) == 0x00008C, "Member 'BP_MixController_C_MenuID::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_MenuID, Temp_delegate_Variable_8) == 0x000090, "Member 'BP_MixController_C_MenuID::Temp_delegate_Variable_8' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnInitialise \ +static_assert(alignof(BP_MixController_C_OnInitialise) == 0x000008, "Wrong alignment on BP_MixController_C_OnInitialise"); \ +static_assert(sizeof(BP_MixController_C_OnInitialise) == 0x000008, "Wrong size on BP_MixController_C_OnInitialise"); \ +static_assert(offsetof(BP_MixController_C_OnInitialise, PropertyStorage) == 0x000000, "Member 'BP_MixController_C_OnInitialise::PropertyStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_MasqueradeLevelProperty::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_MassConversationStart \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_MassConversationStart) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_MassConversationStart"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_MassConversationStart) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_MassConversationStart"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_MassConversationStart, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_MassConversationStart::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_MassConversationStart, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_MassConversationStart::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_BanuPassive::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Blink \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Blink) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Blink"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Blink) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Blink"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Blink, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Blink::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Blink, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Blink::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_BrujahPassive::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Charge \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Charge) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Charge"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Charge) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Charge"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Charge, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Charge::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Charge, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Charge::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_CombatFeed::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Earthshock::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_LightningStrike::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_MalkSprint::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_MaskOfAThousandFaces::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Possession \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Possession) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Possession"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Possession) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Possession"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Possession, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Possession::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Possession, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Possession::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PostFeedEffect::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Hold::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_PsychicProjection_Inside::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_SplitSecond::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_StealthFeed::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Targeting::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_Telekinesis::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_UnseenAura::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_ABL_VampiricVision::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Audio_TransitionHelper::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Dead::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Combat_Player_Taken_Damage::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_GameState_Paused \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_GameState_Paused) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_GameState_Paused"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_GameState_Paused) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_GameState_Paused"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_GameState_Paused, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_GameState_Paused::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_GameState_Paused, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_GameState_Paused::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Player_Falling \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Player_Falling) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Player_Falling"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Player_Falling) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Player_Falling"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Falling, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Falling::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Falling, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Falling::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Player_Gliding \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Player_Gliding) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Player_Gliding"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Player_Gliding) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Player_Gliding"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Gliding, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Gliding::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Gliding, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Gliding::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Player_Sliding \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Player_Sliding) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Player_Sliding"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Player_Sliding) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Player_Sliding"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Sliding, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Sliding::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_Sliding, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_Sliding::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Player_VampireSprint::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PB_Pref_MonoAudio::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_ABL_HeightenedSensesTimeRemaining::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Player_Health \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Player_Health) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Player_Health"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Player_Health) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Player_Health"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Player_Health, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Player_Health::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Player_Health, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Player_Health::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_AudioBalance::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VibrationAmount::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeDialogue::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMain::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeMusic::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_Ambient::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PF_Pref_VolumeSFX_UI::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Audio_CutsceneState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Audio_DialogueState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Combat_PriorityEnemyState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_GamepadType \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_GamepadType) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_GamepadType"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_GamepadType) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_GamepadType"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_GamepadType, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_GamepadType::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_GamepadType, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_GamepadType::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_GameState_MenuID::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_DialogueBoost::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_DynamicRange::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlHigh::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_FrequencyControlLow::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PI_Pref_PanningRule::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_SabbatIC::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA \ +static_assert(alignof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA) == 0x000008, "Wrong alignment on BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA"); \ +static_assert(sizeof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA) == 0x000010, "Wrong size on BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA, Property) == 0x000000, "Member 'BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA, NewValue) == 0x000008, "Member 'BP_MixController_C_OnPropertyChanged_PT_Mix_Transient_StrickTA::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Possession \ +static_assert(alignof(BP_MixController_C_Possession) == 0x000001, "Wrong alignment on BP_MixController_C_Possession"); \ +static_assert(sizeof(BP_MixController_C_Possession) == 0x000001, "Wrong size on BP_MixController_C_Possession"); \ +static_assert(offsetof(BP_MixController_C_Possession, NewParam) == 0x000000, "Member 'BP_MixController_C_Possession::NewParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_PostFeedEffect \ +static_assert(alignof(BP_MixController_C_PostFeedEffect) == 0x000001, "Wrong alignment on BP_MixController_C_PostFeedEffect"); \ +static_assert(sizeof(BP_MixController_C_PostFeedEffect) == 0x000001, "Wrong size on BP_MixController_C_PostFeedEffect"); \ +static_assert(offsetof(BP_MixController_C_PostFeedEffect, Active) == 0x000000, "Member 'BP_MixController_C_PostFeedEffect::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_PsychicProjectionHold \ +static_assert(alignof(BP_MixController_C_PsychicProjectionHold) == 0x000001, "Wrong alignment on BP_MixController_C_PsychicProjectionHold"); \ +static_assert(sizeof(BP_MixController_C_PsychicProjectionHold) == 0x000001, "Wrong size on BP_MixController_C_PsychicProjectionHold"); \ +static_assert(offsetof(BP_MixController_C_PsychicProjectionHold, Active) == 0x000000, "Member 'BP_MixController_C_PsychicProjectionHold::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_PsychicProjectionInside \ +static_assert(alignof(BP_MixController_C_PsychicProjectionInside) == 0x000001, "Wrong alignment on BP_MixController_C_PsychicProjectionInside"); \ +static_assert(sizeof(BP_MixController_C_PsychicProjectionInside) == 0x000001, "Wrong size on BP_MixController_C_PsychicProjectionInside"); \ +static_assert(offsetof(BP_MixController_C_PsychicProjectionInside, Active) == 0x000000, "Member 'BP_MixController_C_PsychicProjectionInside::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_ResolveGameState \ +static_assert(alignof(BP_MixController_C_ResolveGameState) == 0x000001, "Wrong alignment on BP_MixController_C_ResolveGameState"); \ +static_assert(sizeof(BP_MixController_C_ResolveGameState) == 0x000006, "Wrong size on BP_MixController_C_ResolveGameState"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'BP_MixController_C_ResolveGameState::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'BP_MixController_C_ResolveGameState::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'BP_MixController_C_ResolveGameState::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, CallFunc_Not_PreBool_ReturnValue_1) == 0x000003, "Member 'BP_MixController_C_ResolveGameState::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, CallFunc_Not_PreBool_ReturnValue_2) == 0x000004, "Member 'BP_MixController_C_ResolveGameState::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_ResolveGameState, CallFunc_BooleanAND_ReturnValue_1) == 0x000005, "Member 'BP_MixController_C_ResolveGameState::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_SetPreference \ +static_assert(alignof(BP_MixController_C_SetPreference) == 0x000008, "Wrong alignment on BP_MixController_C_SetPreference"); \ +static_assert(sizeof(BP_MixController_C_SetPreference) == 0x000018, "Wrong size on BP_MixController_C_SetPreference"); \ +static_assert(offsetof(BP_MixController_C_SetPreference, RTPC) == 0x000000, "Member 'BP_MixController_C_SetPreference::RTPC' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_SetPreference, Value) == 0x000008, "Member 'BP_MixController_C_SetPreference::Value' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_SetPreference, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000010, "Member 'BP_MixController_C_SetPreference::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Sliding \ +static_assert(alignof(BP_MixController_C_Sliding) == 0x000001, "Wrong alignment on BP_MixController_C_Sliding"); \ +static_assert(sizeof(BP_MixController_C_Sliding) == 0x000001, "Wrong size on BP_MixController_C_Sliding"); \ +static_assert(offsetof(BP_MixController_C_Sliding, Active) == 0x000000, "Member 'BP_MixController_C_Sliding::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_SplitSecond \ +static_assert(alignof(BP_MixController_C_SplitSecond) == 0x000001, "Wrong alignment on BP_MixController_C_SplitSecond"); \ +static_assert(sizeof(BP_MixController_C_SplitSecond) == 0x000001, "Wrong size on BP_MixController_C_SplitSecond"); \ +static_assert(offsetof(BP_MixController_C_SplitSecond, Active) == 0x000000, "Member 'BP_MixController_C_SplitSecond::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_StealthFeed \ +static_assert(alignof(BP_MixController_C_StealthFeed) == 0x000008, "Wrong alignment on BP_MixController_C_StealthFeed"); \ +static_assert(sizeof(BP_MixController_C_StealthFeed) == 0x000028, "Wrong size on BP_MixController_C_StealthFeed"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, Active) == 0x000000, "Member 'BP_MixController_C_StealthFeed::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'BP_MixController_C_StealthFeed::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_MixController_C_StealthFeed::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_GetProperty_ReturnValue_1) == 0x00000C, "Member 'BP_MixController_C_StealthFeed::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_MixController_C_StealthFeed::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_BooleanAND_ReturnValue) == 0x000011, "Member 'BP_MixController_C_StealthFeed::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000018, "Member 'BP_MixController_C_StealthFeed::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MixController_C_StealthFeed, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000020, "Member 'BP_MixController_C_StealthFeed::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_TakeDamage \ +static_assert(alignof(BP_MixController_C_TakeDamage) == 0x000001, "Wrong alignment on BP_MixController_C_TakeDamage"); \ +static_assert(sizeof(BP_MixController_C_TakeDamage) == 0x000001, "Wrong size on BP_MixController_C_TakeDamage"); \ +static_assert(offsetof(BP_MixController_C_TakeDamage, Active) == 0x000000, "Member 'BP_MixController_C_TakeDamage::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_Targeting \ +static_assert(alignof(BP_MixController_C_Targeting) == 0x000001, "Wrong alignment on BP_MixController_C_Targeting"); \ +static_assert(sizeof(BP_MixController_C_Targeting) == 0x000001, "Wrong size on BP_MixController_C_Targeting"); \ +static_assert(offsetof(BP_MixController_C_Targeting, Active) == 0x000000, "Member 'BP_MixController_C_Targeting::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_UnseenAura \ +static_assert(alignof(BP_MixController_C_UnseenAura) == 0x000001, "Wrong alignment on BP_MixController_C_UnseenAura"); \ +static_assert(sizeof(BP_MixController_C_UnseenAura) == 0x000001, "Wrong size on BP_MixController_C_UnseenAura"); \ +static_assert(offsetof(BP_MixController_C_UnseenAura, Active) == 0x000000, "Member 'BP_MixController_C_UnseenAura::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_VampireSprint \ +static_assert(alignof(BP_MixController_C_VampireSprint) == 0x000001, "Wrong alignment on BP_MixController_C_VampireSprint"); \ +static_assert(sizeof(BP_MixController_C_VampireSprint) == 0x000001, "Wrong size on BP_MixController_C_VampireSprint"); \ +static_assert(offsetof(BP_MixController_C_VampireSprint, Active) == 0x000000, "Member 'BP_MixController_C_VampireSprint::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MixController_C_VampiricVision \ +static_assert(alignof(BP_MixController_C_VampiricVision) == 0x000001, "Wrong alignment on BP_MixController_C_VampiricVision"); \ +static_assert(sizeof(BP_MixController_C_VampiricVision) == 0x000001, "Wrong size on BP_MixController_C_VampiricVision"); \ +static_assert(offsetof(BP_MixController_C_VampiricVision, Active) == 0x000000, "Member 'BP_MixController_C_VampiricVision::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_MixController_C \ +static_assert(alignof(UBP_MixController_C) == 0x000008, "Wrong alignment on UBP_MixController_C"); \ +static_assert(sizeof(UBP_MixController_C) == 0x0000B8, "Wrong size on UBP_MixController_C"); \ +static_assert(offsetof(UBP_MixController_C, UberGraphFrame) == 0x000038, "Member 'UBP_MixController_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, BloodLevel) == 0x000040, "Member 'UBP_MixController_C::BloodLevel' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, Health) == 0x000048, "Member 'UBP_MixController_C::Health' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, PB_ABL_PostFeedEffect) == 0x000050, "Member 'UBP_MixController_C::PB_ABL_PostFeedEffect' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, PF_ABL_FeedBloodGained) == 0x000058, "Member 'UBP_MixController_C::PF_ABL_FeedBloodGained' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, MonoBusses) == 0x000060, "Member 'UBP_MixController_C::MonoBusses' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, IsAudioPaused) == 0x000070, "Member 'UBP_MixController_C::IsAudioPaused' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, LowHealthThreshold) == 0x000078, "Member 'UBP_MixController_C::LowHealthThreshold' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, HasBeenBattle) == 0x000080, "Member 'UBP_MixController_C::HasBeenBattle' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, IsInUI) == 0x000081, "Member 'UBP_MixController_C::IsInUI' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, IsInCutscene) == 0x000082, "Member 'UBP_MixController_C::IsInCutscene' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, CutsceneType) == 0x000083, "Member 'UBP_MixController_C::CutsceneType' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, ExitLowHealthThreshold) == 0x000088, "Member 'UBP_MixController_C::ExitLowHealthThreshold' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, IsLowHealth) == 0x000090, "Member 'UBP_MixController_C::IsLowHealth' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, InPauseMenu) == 0x000091, "Member 'UBP_MixController_C::InPauseMenu' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, AudioMixDebugHeraProperty) == 0x000098, "Member 'UBP_MixController_C::AudioMixDebugHeraProperty' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, Global_Audio_Events) == 0x0000A0, "Member 'UBP_MixController_C::Global_Audio_Events' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, TransitionHelper) == 0x0000B0, "Member 'UBP_MixController_C::TransitionHelper' has a wrong offset!"); \ +static_assert(offsetof(UBP_MixController_C, TK_Bool) == 0x0000B1, "Member 'UBP_MixController_C::TK_Bool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Combat_Scenario \ +static_assert(alignof(BP_MusicController_C_Combat_Scenario) == 0x000004, "Wrong alignment on BP_MusicController_C_Combat_Scenario"); \ +static_assert(sizeof(BP_MusicController_C_Combat_Scenario) == 0x000018, "Wrong size on BP_MusicController_C_Combat_Scenario"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, Tag) == 0x000000, "Member 'BP_MusicController_C_Combat_Scenario::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x000009, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2) == 0x00000A, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3) == 0x00000B, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4) == 0x00000C, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5) == 0x00000D, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6) == 0x00000E, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7) == 0x00000F, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8) == 0x000010, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9) == 0x000011, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10) == 0x000012, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11) == 0x000013, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12) == 0x000014, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13) == 0x000015, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14) == 0x000016, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15) == 0x000017, "Member 'BP_MusicController_C_Combat_Scenario::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Combat_Scenario_Hub \ +static_assert(alignof(BP_MusicController_C_Combat_Scenario_Hub) == 0x000008, "Wrong alignment on BP_MusicController_C_Combat_Scenario_Hub"); \ +static_assert(sizeof(BP_MusicController_C_Combat_Scenario_Hub) == 0x000080, "Wrong size on BP_MusicController_C_Combat_Scenario_Hub"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, NumberOfOverlappedVolumes) == 0x000000, "Member 'BP_MusicController_C_Combat_Scenario_Hub::NumberOfOverlappedVolumes' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, ClanTrainerActive) == 0x000004, "Member 'BP_MusicController_C_Combat_Scenario_Hub::ClanTrainerActive' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, ClanTrainerType) == 0x000008, "Member 'BP_MusicController_C_Combat_Scenario_Hub::ClanTrainerType' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, InsideOndaTriggerBox_0) == 0x000010, "Member 'BP_MusicController_C_Combat_Scenario_Hub::InsideOndaTriggerBox_0' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000011, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000018, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_EqualEqual_BoolBool_ReturnValue) == 0x000020, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_EqualEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000021, "Member 'BP_MusicController_C_Combat_Scenario_Hub::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_EqualEqual_BoolBool_ReturnValue_1) == 0x000022, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_EqualEqual_BoolBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_BooleanAND_ReturnValue) == 0x000023, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_NotEqual_BoolBool_ReturnValue_1) == 0x000024, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_NotEqual_BoolBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000028, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x000030, "Member 'BP_MusicController_C_Combat_Scenario_Hub::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x000038, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetGameTimeInSeconds_ReturnValue_3) == 0x000048, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetGameTimeInSeconds_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2) == 0x000051, "Member 'BP_MusicController_C_Combat_Scenario_Hub::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetGameTimeInSeconds_ReturnValue_4) == 0x000058, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetGameTimeInSeconds_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetProperty_ReturnValue) == 0x000069, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_Greater_IntInt_ReturnValue) == 0x00006A, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetProperty_ReturnValue_1) == 0x00006B, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00006C, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, K2Node_MultiGate_FirstRun) == 0x00006D, "Member 'BP_MusicController_C_Combat_Scenario_Hub::K2Node_MultiGate_FirstRun' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, K2Node_MultiGate_Data) == 0x000070, "Member 'BP_MusicController_C_Combat_Scenario_Hub::K2Node_MultiGate_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, K2Node_MultiGate_ScratchBool) == 0x000074, "Member 'BP_MusicController_C_Combat_Scenario_Hub::K2Node_MultiGate_ScratchBool' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, K2Node_MultiGate_ScratchIndex) == 0x000078, "Member 'BP_MusicController_C_Combat_Scenario_Hub::K2Node_MultiGate_ScratchIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetProperty_ReturnValue_2) == 0x00007C, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Combat_Scenario_Hub, CallFunc_GetProperty_ReturnValue_3) == 0x00007D, "Member 'BP_MusicController_C_Combat_Scenario_Hub::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_CombatState \ +static_assert(alignof(BP_MusicController_C_CombatState) == 0x000004, "Wrong alignment on BP_MusicController_C_CombatState"); \ +static_assert(sizeof(BP_MusicController_C_CombatState) == 0x000008, "Wrong size on BP_MusicController_C_CombatState"); \ +static_assert(offsetof(BP_MusicController_C_CombatState, NewCombatMusicState) == 0x000000, "Member 'BP_MusicController_C_CombatState::NewCombatMusicState' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CombatState, CallFunc_Conv_IntToByte_ReturnValue) == 0x000004, "Member 'BP_MusicController_C_CombatState::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CombatState, CallFunc_GetValidValue_ReturnValue) == 0x000005, "Member 'BP_MusicController_C_CombatState::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CombatState, K2Node_SwitchEnum_CmpSuccess) == 0x000006, "Member 'BP_MusicController_C_CombatState::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Conversation \ +static_assert(alignof(BP_MusicController_C_Conversation) == 0x000004, "Wrong alignment on BP_MusicController_C_Conversation"); \ +static_assert(sizeof(BP_MusicController_C_Conversation) == 0x00001C, "Wrong size on BP_MusicController_C_Conversation"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, Tag) == 0x000000, "Member 'BP_MusicController_C_Conversation::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_Conversation::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_Conversation::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x00000A, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x00000B, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2) == 0x00000C, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3) == 0x00000D, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4) == 0x00000E, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5) == 0x00000F, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6) == 0x000010, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7) == 0x000011, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8) == 0x000012, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9) == 0x000013, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10) == 0x000014, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11) == 0x000015, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12) == 0x000016, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13) == 0x000017, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14) == 0x000018, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Conversation, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15) == 0x000019, "Member 'BP_MusicController_C_Conversation::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Cutscenes \ +static_assert(alignof(BP_MusicController_C_Cutscenes) == 0x000004, "Wrong alignment on BP_MusicController_C_Cutscenes"); \ +static_assert(sizeof(BP_MusicController_C_Cutscenes) == 0x00001C, "Wrong size on BP_MusicController_C_Cutscenes"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, Tag) == 0x000000, "Member 'BP_MusicController_C_Cutscenes::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, bIsCutsceneStart) == 0x000008, "Member 'BP_MusicController_C_Cutscenes::bIsCutsceneStart' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000009, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x00000A, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2) == 0x00000B, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3) == 0x00000C, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4) == 0x00000D, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5) == 0x00000E, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6) == 0x00000F, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7) == 0x000010, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8) == 0x000011, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9) == 0x000012, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10) == 0x000013, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11) == 0x000014, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12) == 0x000015, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13) == 0x000016, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14) == 0x000017, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15) == 0x000018, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_16) == 0x000019, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Cutscenes, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_17) == 0x00001A, "Member 'BP_MusicController_C_Cutscenes::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_17' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_CutsceneState \ +static_assert(alignof(BP_MusicController_C_CutsceneState) == 0x000004, "Wrong alignment on BP_MusicController_C_CutsceneState"); \ +static_assert(sizeof(BP_MusicController_C_CutsceneState) == 0x000008, "Wrong size on BP_MusicController_C_CutsceneState"); \ +static_assert(offsetof(BP_MusicController_C_CutsceneState, CutsceneState_0) == 0x000000, "Member 'BP_MusicController_C_CutsceneState::CutsceneState_0' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CutsceneState, CallFunc_Conv_IntToByte_ReturnValue) == 0x000004, "Member 'BP_MusicController_C_CutsceneState::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CutsceneState, CallFunc_GetValidValue_ReturnValue) == 0x000005, "Member 'BP_MusicController_C_CutsceneState::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_CutsceneState, K2Node_SwitchEnum_CmpSuccess) == 0x000006, "Member 'BP_MusicController_C_CutsceneState::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Dialogue_State \ +static_assert(alignof(BP_MusicController_C_Dialogue_State) == 0x000004, "Wrong alignment on BP_MusicController_C_Dialogue_State"); \ +static_assert(sizeof(BP_MusicController_C_Dialogue_State) == 0x000010, "Wrong size on BP_MusicController_C_Dialogue_State"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, DialogueState) == 0x000000, "Member 'BP_MusicController_C_Dialogue_State::DialogueState' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_Conv_IntToByte_ReturnValue) == 0x000004, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_Conv_IntToByte_ReturnValue_1) == 0x000005, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_Conv_IntToByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_GetValidValue_ReturnValue) == 0x000006, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_GetValidValue_ReturnValue_1) == 0x000007, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_GetValidValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, K2Node_SwitchEnum_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_Dialogue_State::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, K2Node_SwitchEnum_CmpSuccess_1) == 0x000009, "Member 'BP_MusicController_C_Dialogue_State::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_Conv_IntToByte_ReturnValue_2) == 0x00000A, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_Conv_IntToByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, CallFunc_GetValidValue_ReturnValue_2) == 0x00000B, "Member 'BP_MusicController_C_Dialogue_State::CallFunc_GetValidValue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Dialogue_State, K2Node_SwitchEnum_CmpSuccess_2) == 0x00000C, "Member 'BP_MusicController_C_Dialogue_State::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_ExecuteUbergraph_BP_MusicController \ +static_assert(alignof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController) == 0x000008, "Wrong alignment on BP_MusicController_C_ExecuteUbergraph_BP_MusicController"); \ +static_assert(sizeof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController) == 0x000C68, "Wrong size on BP_MusicController_C_ExecuteUbergraph_BP_MusicController"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, EntryPoint) == 0x000000, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_61) == 0x000008, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_61' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_61) == 0x000010, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_61' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_60) == 0x000018, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_60' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_60) == 0x000020, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_60' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_Event_PropertyStorage) == 0x000028, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_Event_PropertyStorage' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_59) == 0x000030, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_59' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_59) == 0x000038, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_59' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_58) == 0x000040, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_58' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_58) == 0x000048, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_58' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_57) == 0x000050, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_57' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_57) == 0x000058, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_57' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_56) == 0x000060, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_56' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_56) == 0x000068, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_56' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_55) == 0x000070, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_55' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_55) == 0x000078, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_55' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_54) == 0x000080, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_54' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_54) == 0x000088, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_54' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_CustomEvent_CallbackType) == 0x000090, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_CustomEvent_CallbackType' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_CustomEvent_CallbackInfo) == 0x000098, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_CustomEvent_CallbackInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_53) == 0x0000A0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_53' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_53) == 0x0000A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_53' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_52) == 0x0000B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_52' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_52) == 0x0000B8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_52' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_51) == 0x0000C0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_51' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_51) == 0x0000C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_51' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_50) == 0x0000D0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_50' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_50) == 0x0000D8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_50' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_49) == 0x0000E0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_49' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_49) == 0x0000E8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_49' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_48) == 0x0000F0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_48' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_48) == 0x0000F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_48' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_47) == 0x000100, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_47' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_47) == 0x000108, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_47' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_46) == 0x000110, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_46' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_46) == 0x000118, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_46' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_45) == 0x000120, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_45' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_45) == 0x000128, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_45' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_44) == 0x000130, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_44' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_44) == 0x000138, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_44' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_43) == 0x000140, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_43' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_43) == 0x000148, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_43' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_42) == 0x000150, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_42' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_42) == 0x000158, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_42' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_41) == 0x000160, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_41' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_41) == 0x000168, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_41' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_40) == 0x000170, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_40' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_40) == 0x000178, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_40' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_39) == 0x000180, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_39' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_39) == 0x000188, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_39' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_38) == 0x000190, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_38' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_38) == 0x000198, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_38' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_37) == 0x0001A0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_37' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_37) == 0x0001A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_37' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_36) == 0x0001B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_36' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_36) == 0x0001B8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_36' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_35) == 0x0001C0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_35' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_35) == 0x0001C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_35' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_34) == 0x0001D0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_34' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_34) == 0x0001D8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_34' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_33) == 0x0001E0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_33' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_33) == 0x0001E8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_33' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_32) == 0x0001F0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_32' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_32) == 0x0001F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_32' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_31) == 0x000200, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_31' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_31) == 0x000208, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_31' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_30) == 0x000210, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_30' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_30) == 0x000218, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_30' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_29) == 0x000220, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_29' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_29) == 0x000228, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_29' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_28) == 0x000230, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_28' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_28) == 0x000238, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_28' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_27) == 0x000240, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_27' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_27) == 0x000248, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_27' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, Temp_bool_Has_Been_Initd_Variable) == 0x000250, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000251, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_MatchesTag_ReturnValue) == 0x000252, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_BooleanAND_ReturnValue) == 0x000253, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_26) == 0x000258, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_26' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_26) == 0x000260, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_26' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_25) == 0x000268, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_25' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_25) == 0x000270, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_25' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_24) == 0x000278, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_24' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_24) == 0x000280, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_24' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_IntToByte_ReturnValue) == 0x000281, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_23) == 0x000288, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_23' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_23) == 0x000290, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_23' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetValidValue_ReturnValue) == 0x000291, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_22) == 0x000298, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_22' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_22) == 0x0002A0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_SwitchEnum_CmpSuccess) == 0x0002A1, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Sting_PlayerDetected_NewParam) == 0x0002A2, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Sting_PlayerDetected_NewParam' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_21) == 0x0002A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_21' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_21) == 0x0002B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_20) == 0x0002B8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_20' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_20) == 0x0002C0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_19) == 0x0002C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_19) == 0x0002D0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_18) == 0x0002D8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_18) == 0x0002E0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_17) == 0x0002E8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_17) == 0x0002F0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_16) == 0x0002F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_16) == 0x000300, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_15) == 0x000308, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_15) == 0x000310, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_14) == 0x000318, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_14) == 0x000320, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_13) == 0x000328, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_13) == 0x000330, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_12) == 0x000338, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_12) == 0x000340, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, Temp_bool_IsClosed_Variable) == 0x000348, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_11) == 0x000350, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_11) == 0x000358, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_10) == 0x000360, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_10) == 0x000368, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_9) == 0x000370, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_9) == 0x000378, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, Temp_bool_IsClosed_Variable_1) == 0x000380, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_8) == 0x000388, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_8) == 0x000390, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_7) == 0x000398, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_7) == 0x0003A0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, Temp_delegate_Variable) == 0x0003A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_6) == 0x0003B8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_6) == 0x0003C0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_5) == 0x0003C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_5) == 0x0003D0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetProperty_ReturnValue) == 0x0003D4, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0003D8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_4) == 0x0003E0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_4) == 0x0003E8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_3) == 0x0003F0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_3) == 0x0003F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_2) == 0x000400, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_2) == 0x000408, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property_1) == 0x000410, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue_1) == 0x000418, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_BooleanAND_ReturnValue_1) == 0x000419, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x00041A, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, Temp_bool_Has_Been_Initd_Variable_1) == 0x00041B, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_EqualEqual_BoolBool_ReturnValue) == 0x00041C, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_EqualEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_BooleanNAND_ReturnValue) == 0x00041D, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_BooleanNAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetTagName_ReturnValue) == 0x000420, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetTagName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetTagName_ReturnValue_1) == 0x000428, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetTagName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_NameToText_ReturnValue) == 0x000430, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_NameToText_ReturnValue_1) == 0x000448, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_NameToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData) == 0x000460, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_1) == 0x0004B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue) == 0x000500, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_1) == 0x000518, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_2) == 0x000530, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_3) == 0x000580, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_2) == 0x0005D0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetProperty_ReturnValue_1) == 0x0005E8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_4) == 0x0005F0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_3) == 0x000640, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_5) == 0x000658, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_IntToInt64_ReturnValue) == 0x0006A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_IntToInt64_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_IntToByte_ReturnValue_1) == 0x0006B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_IntToByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_6) == 0x0006B8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetValidValue_ReturnValue_1) == 0x000708, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetValidValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetProperty_ReturnValue_2) == 0x00070C, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetEnumeratorName_ReturnValue) == 0x000714, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetEnumeratorName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetTagName_ReturnValue_2) == 0x00071C, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetTagName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_NameToText_ReturnValue_2) == 0x000728, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_NameToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_NameToText_ReturnValue_3) == 0x000740, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_NameToText_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_7) == 0x000758, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_8) == 0x0007A8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_4) == 0x0007F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_5) == 0x000810, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_9) == 0x000828, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_10) == 0x000878, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_6) == 0x0008C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_7) == 0x0008E0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_11) == 0x0008F8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_12) == 0x000948, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_8) == 0x000998, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_9) == 0x0009B0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_13) == 0x0009C8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_14) == 0x000A18, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_10) == 0x000A68, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetProperty_ReturnValue_3) == 0x000A80, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_15) == 0x000A88, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_11) == 0x000AD8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_16) == 0x000AF0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetProperty_ReturnValue_4) == 0x000B40, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetProperty_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_Property) == 0x000B48, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_HeraPropertyBoundEvent_NewValue) == 0x000B50, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_HeraPropertyBoundEvent_NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_GetTagName_ReturnValue_3) == 0x000B54, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_GetTagName_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_NameToText_ReturnValue_4) == 0x000B60, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_NameToText_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_17) == 0x000B78, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Conv_BoolToText_ReturnValue_12) == 0x000BC8, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Conv_BoolToText_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_CreateDelegate_OutputDelegate) == 0x000BE0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeStruct_FormatArgumentData_18) == 0x000BF0, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeStruct_FormatArgumentData_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, K2Node_MakeArray_Array) == 0x000C40, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_ExecuteUbergraph_BP_MusicController, CallFunc_Format_ReturnValue) == 0x000C50, "Member 'BP_MusicController_C_ExecuteUbergraph_BP_MusicController::CallFunc_Format_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Gliding \ +static_assert(alignof(BP_MusicController_C_Gliding) == 0x000001, "Wrong alignment on BP_MusicController_C_Gliding"); \ +static_assert(sizeof(BP_MusicController_C_Gliding) == 0x000001, "Wrong size on BP_MusicController_C_Gliding"); \ +static_assert(offsetof(BP_MusicController_C_Gliding, Active) == 0x000000, "Member 'BP_MusicController_C_Gliding::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_HandleMusicCallback \ +static_assert(alignof(BP_MusicController_C_HandleMusicCallback) == 0x000008, "Wrong alignment on BP_MusicController_C_HandleMusicCallback"); \ +static_assert(sizeof(BP_MusicController_C_HandleMusicCallback) == 0x000028, "Wrong size on BP_MusicController_C_HandleMusicCallback"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, CallbackType) == 0x000000, "Member 'BP_MusicController_C_HandleMusicCallback::CallbackType' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, CallbackInfo) == 0x000008, "Member 'BP_MusicController_C_HandleMusicCallback::CallbackInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'BP_MusicController_C_HandleMusicCallback::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, K2Node_DynamicCast_AsAk_Music_Sync_Callback_Info) == 0x000018, "Member 'BP_MusicController_C_HandleMusicCallback::K2Node_DynamicCast_AsAk_Music_Sync_Callback_Info' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_MusicController_C_HandleMusicCallback::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_HandleMusicCallback, K2Node_SwitchString_CmpSuccess) == 0x000021, "Member 'BP_MusicController_C_HandleMusicCallback::K2Node_SwitchString_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_InitialiseInGameStates \ +static_assert(alignof(BP_MusicController_C_InitialiseInGameStates) == 0x000004, "Wrong alignment on BP_MusicController_C_InitialiseInGameStates"); \ +static_assert(sizeof(BP_MusicController_C_InitialiseInGameStates) == 0x000010, "Wrong size on BP_MusicController_C_InitialiseInGameStates"); \ +static_assert(offsetof(BP_MusicController_C_InitialiseInGameStates, Temp_delegate_Variable) == 0x000000, "Member 'BP_MusicController_C_InitialiseInGameStates::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Location___Set_Music_CoreLocation \ +static_assert(alignof(BP_MusicController_C_Location___Set_Music_CoreLocation) == 0x000008, "Wrong alignment on BP_MusicController_C_Location___Set_Music_CoreLocation"); \ +static_assert(sizeof(BP_MusicController_C_Location___Set_Music_CoreLocation) == 0x000028, "Wrong size on BP_MusicController_C_Location___Set_Music_CoreLocation"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_GetProperty_ReturnValue) == 0x000000, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, K2Node_MakeArray_Array) == 0x000008, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_Conv_IntToByte_ReturnValue) == 0x000018, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000019, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_GetValidValue_ReturnValue) == 0x00001A, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_BooleanAND_ReturnValue) == 0x00001B, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_Array_Find_ReturnValue) == 0x00001C, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_NotEqual_IntInt_ReturnValue) == 0x000020, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_CoreLocation, CallFunc_BooleanAND_ReturnValue_1) == 0x000021, "Member 'BP_MusicController_C_Location___Set_Music_CoreLocation::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Location___Set_Music_InGame \ +static_assert(alignof(BP_MusicController_C_Location___Set_Music_InGame) == 0x000001, "Wrong alignment on BP_MusicController_C_Location___Set_Music_InGame"); \ +static_assert(sizeof(BP_MusicController_C_Location___Set_Music_InGame) == 0x000001, "Wrong size on BP_MusicController_C_Location___Set_Music_InGame"); \ +static_assert(offsetof(BP_MusicController_C_Location___Set_Music_InGame, WipeCoreLocationState) == 0x000000, "Member 'BP_MusicController_C_Location___Set_Music_InGame::WipeCoreLocationState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_MasqueradeLevelChanged_Music \ +static_assert(alignof(BP_MusicController_C_MasqueradeLevelChanged_Music) == 0x000004, "Wrong alignment on BP_MusicController_C_MasqueradeLevelChanged_Music"); \ +static_assert(sizeof(BP_MusicController_C_MasqueradeLevelChanged_Music) == 0x00002C, "Wrong size on BP_MusicController_C_MasqueradeLevelChanged_Music"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, NewLevel) == 0x000000, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::NewLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, Decrease) == 0x000004, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::Decrease' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, Increase) == 0x000005, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::Increase' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, CallFunc_GetProperty_ReturnValue) == 0x000006, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, CallFunc_GetProperty_ReturnValue_1) == 0x000007, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, Temp_delegate_Variable) == 0x000008, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, Temp_delegate_Variable_1) == 0x000018, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, CallFunc_Greater_IntInt_ReturnValue) == 0x000029, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Music, K2Node_SwitchInteger_CmpSuccess) == 0x00002A, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Music::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_MasqueradeLevelChanged_Stings \ +static_assert(alignof(BP_MusicController_C_MasqueradeLevelChanged_Stings) == 0x000004, "Wrong alignment on BP_MusicController_C_MasqueradeLevelChanged_Stings"); \ +static_assert(sizeof(BP_MusicController_C_MasqueradeLevelChanged_Stings) == 0x000050, "Wrong size on BP_MusicController_C_MasqueradeLevelChanged_Stings"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, NewLevel) == 0x000000, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::NewLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, PreviousMasqueradeLevel) == 0x000004, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::PreviousMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Decrease) == 0x000008, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Decrease' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Increase) == 0x000009, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Increase' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Temp_delegate_Variable) == 0x00000C, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Temp_delegate_Variable_1) == 0x00001C, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Temp_delegate_Variable_2) == 0x00002C, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, Temp_delegate_Variable_3) == 0x00003C, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, K2Node_SwitchInteger_CmpSuccess) == 0x00004C, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, CallFunc_Less_IntInt_ReturnValue) == 0x00004D, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MasqueradeLevelChanged_Stings, CallFunc_Greater_IntInt_ReturnValue) == 0x00004E, "Member 'BP_MusicController_C_MasqueradeLevelChanged_Stings::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_MenuID \ +static_assert(alignof(BP_MusicController_C_MenuID) == 0x000008, "Wrong alignment on BP_MusicController_C_MenuID"); \ +static_assert(sizeof(BP_MusicController_C_MenuID) == 0x000030, "Wrong size on BP_MusicController_C_MenuID"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, NewMenuID) == 0x000000, "Member 'BP_MusicController_C_MenuID::NewMenuID' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, Timer_AllowsTabIDFirst) == 0x000008, "Member 'BP_MusicController_C_MenuID::Timer_AllowsTabIDFirst' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, PB_Music_SkipCutscene) == 0x000010, "Member 'BP_MusicController_C_MenuID::PB_Music_SkipCutscene' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_GetProperty_ReturnValue) == 0x000018, "Member 'BP_MusicController_C_MenuID::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_IsGamePaused_ReturnValue) == 0x000019, "Member 'BP_MusicController_C_MenuID::CallFunc_IsGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_GetProperty_ReturnValue_1) == 0x00001A, "Member 'BP_MusicController_C_MenuID::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00001B, "Member 'BP_MusicController_C_MenuID::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, Temp_delegate_Variable) == 0x00001C, "Member 'BP_MusicController_C_MenuID::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_Conv_IntToByte_ReturnValue) == 0x00002C, "Member 'BP_MusicController_C_MenuID::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, CallFunc_GetValidValue_ReturnValue) == 0x00002D, "Member 'BP_MusicController_C_MenuID::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MenuID, K2Node_SwitchEnum_CmpSuccess) == 0x00002E, "Member 'BP_MusicController_C_MenuID::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_MenuTabID \ +static_assert(alignof(BP_MusicController_C_MenuTabID) == 0x000004, "Wrong alignment on BP_MusicController_C_MenuTabID"); \ +static_assert(sizeof(BP_MusicController_C_MenuTabID) == 0x000008, "Wrong size on BP_MusicController_C_MenuTabID"); \ +static_assert(offsetof(BP_MusicController_C_MenuTabID, Tag) == 0x000000, "Member 'BP_MusicController_C_MenuTabID::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_MusicCallback \ +static_assert(alignof(BP_MusicController_C_MusicCallback) == 0x000008, "Wrong alignment on BP_MusicController_C_MusicCallback"); \ +static_assert(sizeof(BP_MusicController_C_MusicCallback) == 0x000010, "Wrong size on BP_MusicController_C_MusicCallback"); \ +static_assert(offsetof(BP_MusicController_C_MusicCallback, CallbackType) == 0x000000, "Member 'BP_MusicController_C_MusicCallback::CallbackType' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_MusicCallback, CallbackInfo) == 0x000008, "Member 'BP_MusicController_C_MusicCallback::CallbackInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_NumTrackedEnemies \ +static_assert(alignof(BP_MusicController_C_NumTrackedEnemies) == 0x000004, "Wrong alignment on BP_MusicController_C_NumTrackedEnemies"); \ +static_assert(sizeof(BP_MusicController_C_NumTrackedEnemies) == 0x000008, "Wrong size on BP_MusicController_C_NumTrackedEnemies"); \ +static_assert(offsetof(BP_MusicController_C_NumTrackedEnemies, NewValue) == 0x000000, "Member 'BP_MusicController_C_NumTrackedEnemies::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_NumTrackedEnemies, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000004, "Member 'BP_MusicController_C_NumTrackedEnemies::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_NumTrackedEnemies, CallFunc_Greater_IntInt_ReturnValue) == 0x000005, "Member 'BP_MusicController_C_NumTrackedEnemies::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_NumTrackedEnemies, CallFunc_BooleanAND_ReturnValue) == 0x000006, "Member 'BP_MusicController_C_NumTrackedEnemies::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_NumTrackedEnemies, CallFunc_BooleanAND_ReturnValue_1) == 0x000007, "Member 'BP_MusicController_C_NumTrackedEnemies::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnInitialise \ +static_assert(alignof(BP_MusicController_C_OnInitialise) == 0x000008, "Wrong alignment on BP_MusicController_C_OnInitialise"); \ +static_assert(sizeof(BP_MusicController_C_OnInitialise) == 0x000008, "Wrong size on BP_MusicController_C_OnInitialise"); \ +static_assert(offsetof(BP_MusicController_C_OnInitialise, PropertyStorage) == 0x000000, "Member 'BP_MusicController_C_OnInitialise::PropertyStorage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_GameState_MenuID::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_BOL_MUS_Onda_TriggerBox::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_MasqueradeLevelProperty::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PaintingCheck \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PaintingCheck) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PaintingCheck"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PaintingCheck) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PaintingCheck"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PaintingCheck, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PaintingCheck::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PaintingCheck, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PaintingCheck::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatFeed::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_CombatKill::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthFeed::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_StealthKill::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_ABL_VampiricVision::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Enemy_Alerted::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Dead::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Combat_Player_Detected::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_ClanTrainerActive::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_Debug_FlipFlop::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Music_ReloadLastCheckpoint::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PB_Player_Gliding::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_CutsceneState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_DialogueState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Audio_MasqueradeLevelChanged::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreBullyScore::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreEmpathScore::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_CNV_PhyreSageScore::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Combat_DynamicCombat_BoxesOverlapped::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_CombatState::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_NumTrackedEnemies::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PI_Music_StrickTA_NightclubLevel::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Menu_TabID::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_ClanTrainerCombatScenario::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_CombatScenario::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Cutscene::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_BloodSisters::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_CigaretteGirl::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinBT::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinEscape::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_FinSR::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01 \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB01::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02 \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB02::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03 \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_HB03::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Mother::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_PrinceOfSeattle::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProCamHQ::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProEscape::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_ProLou::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Regicide::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatAD::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatCH::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SabbatIC::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_SecretKeeper::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_Sire::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickBW::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickDD::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickGS::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickNR::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_StrickTA::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_QuestEvent_TestQuest::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_Conversation::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_SabbatAD::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickBW::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_Music_Transient_StrickTA::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_PlayerLocation::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuest::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic \ +static_assert(alignof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic) == 0x000008, "Wrong alignment on BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic"); \ +static_assert(sizeof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic) == 0x000010, "Wrong size on BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic, Property) == 0x000000, "Member 'BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic::Property' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic, NewValue) == 0x000008, "Member 'BP_MusicController_C_OnPropertyChanged_PT_QuestProgress_ActiveQuestMusic::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Player_Dead \ +static_assert(alignof(BP_MusicController_C_Player_Dead) == 0x000004, "Wrong alignment on BP_MusicController_C_Player_Dead"); \ +static_assert(sizeof(BP_MusicController_C_Player_Dead) == 0x00001C, "Wrong size on BP_MusicController_C_Player_Dead"); \ +static_assert(offsetof(BP_MusicController_C_Player_Dead, IsDead) == 0x000000, "Member 'BP_MusicController_C_Player_Dead::IsDead' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Dead, PreviousMasqueradeLevel) == 0x000004, "Member 'BP_MusicController_C_Player_Dead::PreviousMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Dead, Decrease) == 0x000008, "Member 'BP_MusicController_C_Player_Dead::Decrease' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Dead, Increase) == 0x000009, "Member 'BP_MusicController_C_Player_Dead::Increase' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Dead, Temp_delegate_Variable) == 0x00000C, "Member 'BP_MusicController_C_Player_Dead::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Player_Locaton \ +static_assert(alignof(BP_MusicController_C_Player_Locaton) == 0x000004, "Wrong alignment on BP_MusicController_C_Player_Locaton"); \ +static_assert(sizeof(BP_MusicController_C_Player_Locaton) == 0x000034, "Wrong size on BP_MusicController_C_Player_Locaton"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTag) == 0x000000, "Member 'BP_MusicController_C_Player_Locaton::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_1) == 0x00000A, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x00000B, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2) == 0x00000C, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_2) == 0x00000D, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_3) == 0x00000E, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_4) == 0x00000F, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3) == 0x000010, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_5) == 0x000011, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4) == 0x000012, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_6) == 0x000013, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5) == 0x000014, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6) == 0x000015, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_7) == 0x000016, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_8) == 0x000017, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7) == 0x000018, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_9) == 0x000019, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_10) == 0x00001A, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_11) == 0x00001B, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8) == 0x00001C, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_12) == 0x00001D, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_13) == 0x00001E, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9) == 0x00001F, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_14) == 0x000020, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10) == 0x000021, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_15) == 0x000022, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_16) == 0x000023, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11) == 0x000024, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_17) == 0x000025, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_18) == 0x000026, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_19) == 0x000027, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12) == 0x000028, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13) == 0x000029, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_20) == 0x00002A, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_21) == 0x00002B, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14) == 0x00002C, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, CallFunc_GetProperty_ReturnValue_22) == 0x00002D, "Member 'BP_MusicController_C_Player_Locaton::CallFunc_GetProperty_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15) == 0x00002E, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_15' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_16) == 0x00002F, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_16' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_17) == 0x000030, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_17' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_18) == 0x000031, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_18' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_19) == 0x000032, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_19' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Player_Locaton, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_20) == 0x000033, "Member 'BP_MusicController_C_Player_Locaton::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_20' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Quest_Event_Fin_BT \ +static_assert(alignof(BP_MusicController_C_Quest_Event_Fin_BT) == 0x000004, "Wrong alignment on BP_MusicController_C_Quest_Event_Fin_BT"); \ +static_assert(sizeof(BP_MusicController_C_Quest_Event_Fin_BT) == 0x00000C, "Wrong size on BP_MusicController_C_Quest_Event_Fin_BT"); \ +static_assert(offsetof(BP_MusicController_C_Quest_Event_Fin_BT, Tag) == 0x000000, "Member 'BP_MusicController_C_Quest_Event_Fin_BT::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Quest_Event_Fin_BT, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_Quest_Event_Fin_BT::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Quest_Event_Fin_BT, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_Quest_Event_Fin_BT::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Quest_Event_HB03 \ +static_assert(alignof(BP_MusicController_C_Quest_Event_HB03) == 0x000004, "Wrong alignment on BP_MusicController_C_Quest_Event_HB03"); \ +static_assert(sizeof(BP_MusicController_C_Quest_Event_HB03) == 0x00000C, "Wrong size on BP_MusicController_C_Quest_Event_HB03"); \ +static_assert(offsetof(BP_MusicController_C_Quest_Event_HB03, Tag) == 0x000000, "Member 'BP_MusicController_C_Quest_Event_HB03::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Quest_Event_HB03, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_Quest_Event_HB03::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_FinEscape \ +static_assert(alignof(BP_MusicController_C_QuestEvent_FinEscape) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_FinEscape"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_FinEscape) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_FinEscape"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinEscape, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_FinEscape::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinEscape, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_FinEscape::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinEscape, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_FinEscape::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_FinSR \ +static_assert(alignof(BP_MusicController_C_QuestEvent_FinSR) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_FinSR"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_FinSR) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_FinSR"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinSR, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_FinSR::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinSR, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_FinSR::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_FinSR, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_FinSR::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_HB01 \ +static_assert(alignof(BP_MusicController_C_QuestEvent_HB01) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_HB01"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_HB01) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_HB01"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB01, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_HB01::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB01, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_HB01::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB01, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_HB01::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_HB02 \ +static_assert(alignof(BP_MusicController_C_QuestEvent_HB02) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_HB02"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_HB02) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_HB02"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB02, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_HB02::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB02, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_HB02::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_HB02, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_HB02::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDBloodSisters \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDBloodSisters) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDBloodSisters"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDBloodSisters) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDBloodSisters"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDBloodSisters, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDBloodSisters::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDBloodSisters, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDBloodSisters::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDBloodSisters, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDBloodSisters::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDCigaretteGirl \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDCigaretteGirl) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDCigaretteGirl"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDCigaretteGirl) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDCigaretteGirl"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDCigaretteGirl, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDCigaretteGirl::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDCigaretteGirl, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDCigaretteGirl::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDCigaretteGirl, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDCigaretteGirl::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDMother \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDMother) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDMother"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDMother) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDMother"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDMother, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDMother::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDMother, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDMother::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDMother, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDMother::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDPrinceOfSeattle \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDPrinceOfSeattle) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDPrinceOfSeattle"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDPrinceOfSeattle) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDPrinceOfSeattle"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDPrinceOfSeattle, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDPrinceOfSeattle::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDPrinceOfSeattle, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDPrinceOfSeattle::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDPrinceOfSeattle, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDPrinceOfSeattle::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDRegicide \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDRegicide) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDRegicide"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDRegicide) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDRegicide"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDRegicide, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDRegicide::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDRegicide, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDRegicide::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDRegicide, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDRegicide::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDSecretKeeper \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDSecretKeeper) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDSecretKeeper"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDSecretKeeper) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDSecretKeeper"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSecretKeeper, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDSecretKeeper::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSecretKeeper, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDSecretKeeper::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSecretKeeper, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDSecretKeeper::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_MDSire \ +static_assert(alignof(BP_MusicController_C_QuestEvent_MDSire) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_MDSire"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_MDSire) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_MDSire"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSire, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_MDSire::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSire, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_MDSire::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_MDSire, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_MDSire::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_ProCamHQ \ +static_assert(alignof(BP_MusicController_C_QuestEvent_ProCamHQ) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_ProCamHQ"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_ProCamHQ) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_ProCamHQ"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProCamHQ, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_ProCamHQ::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProCamHQ, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_ProCamHQ::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProCamHQ, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_ProCamHQ::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProCamHQ, CallFunc_GetProperty_ReturnValue) == 0x00000A, "Member 'BP_MusicController_C_QuestEvent_ProCamHQ::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_ProEscape \ +static_assert(alignof(BP_MusicController_C_QuestEvent_ProEscape) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_ProEscape"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_ProEscape) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_ProEscape"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProEscape, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_ProEscape::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProEscape, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_ProEscape::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProEscape, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_ProEscape::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_ProLou \ +static_assert(alignof(BP_MusicController_C_QuestEvent_ProLou) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_ProLou"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_ProLou) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_ProLou"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProLou, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_ProLou::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProLou, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_ProLou::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_ProLou, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_ProLou::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_Retrigger \ +static_assert(alignof(BP_MusicController_C_QuestEvent_Retrigger) == 0x000001, "Wrong alignment on BP_MusicController_C_QuestEvent_Retrigger"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_Retrigger) == 0x000001, "Wrong size on BP_MusicController_C_QuestEvent_Retrigger"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_Retrigger, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_Retrigger::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_SabbatAD \ +static_assert(alignof(BP_MusicController_C_QuestEvent_SabbatAD) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_SabbatAD"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_SabbatAD) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_SabbatAD"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatAD, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_SabbatAD::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatAD, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_SabbatAD::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatAD, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_SabbatAD::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_SabbatCH \ +static_assert(alignof(BP_MusicController_C_QuestEvent_SabbatCH) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_SabbatCH"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_SabbatCH) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_SabbatCH"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatCH, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_SabbatCH::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatCH, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_SabbatCH::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatCH, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_SabbatCH::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_SabbatIC \ +static_assert(alignof(BP_MusicController_C_QuestEvent_SabbatIC) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_SabbatIC"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_SabbatIC) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_SabbatIC"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatIC, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_SabbatIC::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatIC, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_SabbatIC::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_SabbatIC, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_SabbatIC::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickBW \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickBW) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickBW"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickBW) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_StrickBW"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickBW, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickBW::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickBW, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickBW::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickBW, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_StrickBW::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickDD \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickDD) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickDD"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickDD) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_StrickDD"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickDD, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickDD::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickDD, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickDD::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickDD, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_StrickDD::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickGS \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickGS) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickGS"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickGS) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_StrickGS"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickGS, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickGS::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickGS, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickGS::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickGS, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_StrickGS::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickNR \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickNR) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickNR"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickNR) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_StrickNR"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickNR::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickNR::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_StrickNR::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount) == 0x000008, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount) == 0x000030, "Wrong size on BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, TrackedEnemies) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::TrackedEnemies' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_Subtract_IntInt_ReturnValue) == 0x000004, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_GetTagName_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_GetTagName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000010, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_Conv_NameToString_ReturnValue) == 0x000018, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x000028, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount, CallFunc_SetRTPCValue_Value_ImplicitCast) == 0x00002C, "Member 'BP_MusicController_C_QuestEvent_StrickNR_TrackKillCount::CallFunc_SetRTPCValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickTA \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickTA) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickTA"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickTA) == 0x000018, "Wrong size on BP_MusicController_C_QuestEvent_StrickTA"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickTA::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickTA::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, CallFunc_GetProperty_ReturnValue) == 0x000009, "Member 'BP_MusicController_C_QuestEvent_StrickTA::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x00000C, "Member 'BP_MusicController_C_QuestEvent_StrickTA::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1) == 0x000010, "Member 'BP_MusicController_C_QuestEvent_StrickTA::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2) == 0x000014, "Member 'BP_MusicController_C_QuestEvent_StrickTA::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel) == 0x000004, "Wrong size on BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel, Level) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickTA_NightclubLevel::Level' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck \ +static_assert(alignof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck) == 0x000054, "Wrong size on BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, NewValue) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, PreviousPaintingState) == 0x000004, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::PreviousPaintingState' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, Temp_delegate_Variable) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000018, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, Temp_delegate_Variable_1) == 0x00001C, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, CallFunc_Less_IntInt_ReturnValue) == 0x00002C, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, CallFunc_BooleanAND_ReturnValue) == 0x00002D, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, CallFunc_Greater_IntInt_ReturnValue) == 0x00002E, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, Temp_delegate_Variable_2) == 0x000030, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, Temp_delegate_Variable_3) == 0x000040, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck, K2Node_SwitchInteger_CmpSuccess) == 0x000050, "Member 'BP_MusicController_C_QuestEvent_StrickTA_PaintingCheck::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_QuestEvent_TestQuest \ +static_assert(alignof(BP_MusicController_C_QuestEvent_TestQuest) == 0x000004, "Wrong alignment on BP_MusicController_C_QuestEvent_TestQuest"); \ +static_assert(sizeof(BP_MusicController_C_QuestEvent_TestQuest) == 0x00000C, "Wrong size on BP_MusicController_C_QuestEvent_TestQuest"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_TestQuest, Tag) == 0x000000, "Member 'BP_MusicController_C_QuestEvent_TestQuest::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_QuestEvent_TestQuest, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_QuestEvent_TestQuest::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_ReloadFromCheckpoint \ +static_assert(alignof(BP_MusicController_C_ReloadFromCheckpoint) == 0x000001, "Wrong alignment on BP_MusicController_C_ReloadFromCheckpoint"); \ +static_assert(sizeof(BP_MusicController_C_ReloadFromCheckpoint) == 0x000001, "Wrong size on BP_MusicController_C_ReloadFromCheckpoint"); \ +static_assert(offsetof(BP_MusicController_C_ReloadFromCheckpoint, Condition) == 0x000000, "Member 'BP_MusicController_C_ReloadFromCheckpoint::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveQuest \ +static_assert(alignof(BP_MusicController_C_SetActiveQuest) == 0x000004, "Wrong alignment on BP_MusicController_C_SetActiveQuest"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveQuest) == 0x00000C, "Wrong size on BP_MusicController_C_SetActiveQuest"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest, Tag) == 0x000000, "Member 'BP_MusicController_C_SetActiveQuest::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'BP_MusicController_C_SetActiveQuest::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveQuest_Old \ +static_assert(alignof(BP_MusicController_C_SetActiveQuest_Old) == 0x000004, "Wrong alignment on BP_MusicController_C_SetActiveQuest_Old"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveQuest_Old) == 0x00001C, "Wrong size on BP_MusicController_C_SetActiveQuest_Old"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest_Old, Tag) == 0x000000, "Member 'BP_MusicController_C_SetActiveQuest_Old::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest_Old, Temp_delegate_Variable) == 0x000008, "Member 'BP_MusicController_C_SetActiveQuest_Old::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest_Old, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000018, "Member 'BP_MusicController_C_SetActiveQuest_Old::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest_Old, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000019, "Member 'BP_MusicController_C_SetActiveQuest_Old::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveQuest_Old, CallFunc_BooleanAND_ReturnValue) == 0x00001A, "Member 'BP_MusicController_C_SetActiveQuest_Old::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveState_Combat \ +static_assert(alignof(BP_MusicController_C_SetActiveState_Combat) == 0x000001, "Wrong alignment on BP_MusicController_C_SetActiveState_Combat"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveState_Combat) == 0x000002, "Wrong size on BP_MusicController_C_SetActiveState_Combat"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Combat, Active) == 0x000000, "Member 'BP_MusicController_C_SetActiveState_Combat::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Combat, ExitOnLastKill) == 0x000001, "Member 'BP_MusicController_C_SetActiveState_Combat::ExitOnLastKill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveState_Conversation \ +static_assert(alignof(BP_MusicController_C_SetActiveState_Conversation) == 0x000001, "Wrong alignment on BP_MusicController_C_SetActiveState_Conversation"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveState_Conversation) == 0x000001, "Wrong size on BP_MusicController_C_SetActiveState_Conversation"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Conversation, Active) == 0x000000, "Member 'BP_MusicController_C_SetActiveState_Conversation::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveState_Cutscene \ +static_assert(alignof(BP_MusicController_C_SetActiveState_Cutscene) == 0x000001, "Wrong alignment on BP_MusicController_C_SetActiveState_Cutscene"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveState_Cutscene) == 0x000001, "Wrong size on BP_MusicController_C_SetActiveState_Cutscene"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Cutscene, Active) == 0x000000, "Member 'BP_MusicController_C_SetActiveState_Cutscene::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveState_Masquerade \ +static_assert(alignof(BP_MusicController_C_SetActiveState_Masquerade) == 0x000001, "Wrong alignment on BP_MusicController_C_SetActiveState_Masquerade"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveState_Masquerade) == 0x000001, "Wrong size on BP_MusicController_C_SetActiveState_Masquerade"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Masquerade, Active) == 0x000000, "Member 'BP_MusicController_C_SetActiveState_Masquerade::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetActiveState_Quest \ +static_assert(alignof(BP_MusicController_C_SetActiveState_Quest) == 0x000001, "Wrong alignment on BP_MusicController_C_SetActiveState_Quest"); \ +static_assert(sizeof(BP_MusicController_C_SetActiveState_Quest) == 0x000001, "Wrong size on BP_MusicController_C_SetActiveState_Quest"); \ +static_assert(offsetof(BP_MusicController_C_SetActiveState_Quest, Active) == 0x000000, "Member 'BP_MusicController_C_SetActiveState_Quest::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_SetObjective \ +static_assert(alignof(BP_MusicController_C_SetObjective) == 0x000008, "Wrong alignment on BP_MusicController_C_SetObjective"); \ +static_assert(sizeof(BP_MusicController_C_SetObjective) == 0x000020, "Wrong size on BP_MusicController_C_SetObjective"); \ +static_assert(offsetof(BP_MusicController_C_SetObjective, Objective) == 0x000000, "Member 'BP_MusicController_C_SetObjective::Objective' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetObjective, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_SetObjective::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetObjective, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000010, "Member 'BP_MusicController_C_SetObjective::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_SetObjective, CallFunc_IsValid_ReturnValue_1) == 0x000018, "Member 'BP_MusicController_C_SetObjective::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_EnemyAlerted \ +static_assert(alignof(BP_MusicController_C_Sting_EnemyAlerted) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_EnemyAlerted"); \ +static_assert(sizeof(BP_MusicController_C_Sting_EnemyAlerted) == 0x000014, "Wrong size on BP_MusicController_C_Sting_EnemyAlerted"); \ +static_assert(offsetof(BP_MusicController_C_Sting_EnemyAlerted, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_EnemyAlerted::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_EnemyAlerted, PreviousFeedValue) == 0x000001, "Member 'BP_MusicController_C_Sting_EnemyAlerted::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_EnemyAlerted, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_EnemyAlerted::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_FeedCombat \ +static_assert(alignof(BP_MusicController_C_Sting_FeedCombat) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_FeedCombat"); \ +static_assert(sizeof(BP_MusicController_C_Sting_FeedCombat) == 0x000028, "Wrong size on BP_MusicController_C_Sting_FeedCombat"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_FeedCombat::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, PreviousFeedValue) == 0x000001, "Member 'BP_MusicController_C_Sting_FeedCombat::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_FeedCombat::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_MusicController_C_Sting_FeedCombat::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, CallFunc_GetProperty_ReturnValue) == 0x000024, "Member 'BP_MusicController_C_Sting_FeedCombat::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedCombat, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000025, "Member 'BP_MusicController_C_Sting_FeedCombat::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_FeedKill_Combat \ +static_assert(alignof(BP_MusicController_C_Sting_FeedKill_Combat) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_FeedKill_Combat"); \ +static_assert(sizeof(BP_MusicController_C_Sting_FeedKill_Combat) == 0x000014, "Wrong size on BP_MusicController_C_Sting_FeedKill_Combat"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Combat, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_FeedKill_Combat::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Combat, PreviousFeedValue) == 0x000001, "Member 'BP_MusicController_C_Sting_FeedKill_Combat::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Combat, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_FeedKill_Combat::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_FeedKill_Stealth \ +static_assert(alignof(BP_MusicController_C_Sting_FeedKill_Stealth) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_FeedKill_Stealth"); \ +static_assert(sizeof(BP_MusicController_C_Sting_FeedKill_Stealth) == 0x000014, "Wrong size on BP_MusicController_C_Sting_FeedKill_Stealth"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Stealth, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_FeedKill_Stealth::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Stealth, PreviousFeedValue) == 0x000001, "Member 'BP_MusicController_C_Sting_FeedKill_Stealth::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedKill_Stealth, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_FeedKill_Stealth::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_FeedStealth \ +static_assert(alignof(BP_MusicController_C_Sting_FeedStealth) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_FeedStealth"); \ +static_assert(sizeof(BP_MusicController_C_Sting_FeedStealth) == 0x000028, "Wrong size on BP_MusicController_C_Sting_FeedStealth"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_FeedStealth::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, PreviousFeedValue) == 0x000001, "Member 'BP_MusicController_C_Sting_FeedStealth::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_FeedStealth::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_MusicController_C_Sting_FeedStealth::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, CallFunc_GetProperty_ReturnValue) == 0x000024, "Member 'BP_MusicController_C_Sting_FeedStealth::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_FeedStealth, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000025, "Member 'BP_MusicController_C_Sting_FeedStealth::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_Sting_PlayerDetected \ +static_assert(alignof(BP_MusicController_C_Sting_PlayerDetected) == 0x000004, "Wrong alignment on BP_MusicController_C_Sting_PlayerDetected"); \ +static_assert(sizeof(BP_MusicController_C_Sting_PlayerDetected) == 0x000014, "Wrong size on BP_MusicController_C_Sting_PlayerDetected"); \ +static_assert(offsetof(BP_MusicController_C_Sting_PlayerDetected, NewValue) == 0x000000, "Member 'BP_MusicController_C_Sting_PlayerDetected::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_PlayerDetected, NewParam) == 0x000001, "Member 'BP_MusicController_C_Sting_PlayerDetected::NewParam' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_PlayerDetected, PreviousFeedValue) == 0x000002, "Member 'BP_MusicController_C_Sting_PlayerDetected::PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_Sting_PlayerDetected, Temp_delegate_Variable) == 0x000004, "Member 'BP_MusicController_C_Sting_PlayerDetected::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_TransientEvent_SabbatAD \ +static_assert(alignof(BP_MusicController_C_TransientEvent_SabbatAD) == 0x000004, "Wrong alignment on BP_MusicController_C_TransientEvent_SabbatAD"); \ +static_assert(sizeof(BP_MusicController_C_TransientEvent_SabbatAD) == 0x00002C, "Wrong size on BP_MusicController_C_TransientEvent_SabbatAD"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_SabbatAD, Tag) == 0x000000, "Member 'BP_MusicController_C_TransientEvent_SabbatAD::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_SabbatAD, Temp_delegate_Variable) == 0x000008, "Member 'BP_MusicController_C_TransientEvent_SabbatAD::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_SabbatAD, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000018, "Member 'BP_MusicController_C_TransientEvent_SabbatAD::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_SabbatAD, Temp_delegate_Variable_1) == 0x00001C, "Member 'BP_MusicController_C_TransientEvent_SabbatAD::Temp_delegate_Variable_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_TransientEvent_StrickBW \ +static_assert(alignof(BP_MusicController_C_TransientEvent_StrickBW) == 0x000004, "Wrong alignment on BP_MusicController_C_TransientEvent_StrickBW"); \ +static_assert(sizeof(BP_MusicController_C_TransientEvent_StrickBW) == 0x00000C, "Wrong size on BP_MusicController_C_TransientEvent_StrickBW"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickBW, NewTag) == 0x000000, "Member 'BP_MusicController_C_TransientEvent_StrickBW::NewTag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickBW, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000008, "Member 'BP_MusicController_C_TransientEvent_StrickBW::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_TransientEvent_StrickTA \ +static_assert(alignof(BP_MusicController_C_TransientEvent_StrickTA) == 0x000004, "Wrong alignment on BP_MusicController_C_TransientEvent_StrickTA"); \ +static_assert(sizeof(BP_MusicController_C_TransientEvent_StrickTA) == 0x00004C, "Wrong size on BP_MusicController_C_TransientEvent_StrickTA"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, Tag) == 0x000000, "Member 'BP_MusicController_C_TransientEvent_StrickTA::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, Temp_delegate_Variable) == 0x000008, "Member 'BP_MusicController_C_TransientEvent_StrickTA::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000018, "Member 'BP_MusicController_C_TransientEvent_StrickTA::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, Temp_delegate_Variable_1) == 0x00001C, "Member 'BP_MusicController_C_TransientEvent_StrickTA::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, Temp_delegate_Variable_2) == 0x00002C, "Member 'BP_MusicController_C_TransientEvent_StrickTA::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_TransientEvent_StrickTA, Temp_delegate_Variable_3) == 0x00003C, "Member 'BP_MusicController_C_TransientEvent_StrickTA::Temp_delegate_Variable_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MusicController_C_VampiricVision \ +static_assert(alignof(BP_MusicController_C_VampiricVision) == 0x000004, "Wrong alignment on BP_MusicController_C_VampiricVision"); \ +static_assert(sizeof(BP_MusicController_C_VampiricVision) == 0x00000C, "Wrong size on BP_MusicController_C_VampiricVision"); \ +static_assert(offsetof(BP_MusicController_C_VampiricVision, Active) == 0x000000, "Member 'BP_MusicController_C_VampiricVision::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_VampiricVision, InterpTime_Off) == 0x000004, "Member 'BP_MusicController_C_VampiricVision::InterpTime_Off' has a wrong offset!"); \ +static_assert(offsetof(BP_MusicController_C_VampiricVision, InterpTime_On) == 0x000008, "Member 'BP_MusicController_C_VampiricVision::InterpTime_On' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_MusicController_C \ +static_assert(alignof(UBP_MusicController_C) == 0x000008, "Wrong alignment on UBP_MusicController_C"); \ +static_assert(sizeof(UBP_MusicController_C) == 0x0001D0, "Wrong size on UBP_MusicController_C"); \ +static_assert(offsetof(UBP_MusicController_C, UberGraphFrame) == 0x000038, "Member 'UBP_MusicController_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_Cutscene) == 0x000040, "Member 'UBP_MusicController_C::ActiveState_Cutscene' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_Conversation) == 0x000041, "Member 'UBP_MusicController_C::ActiveState_Conversation' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_Masquerade) == 0x000042, "Member 'UBP_MusicController_C::ActiveState_Masquerade' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_Combat) == 0x000043, "Member 'UBP_MusicController_C::ActiveState_Combat' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_Quest) == 0x000044, "Member 'UBP_MusicController_C::ActiveState_Quest' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, CurrentQuestTag) == 0x000048, "Member 'UBP_MusicController_C::CurrentQuestTag' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, CurrentQuestEventTag) == 0x000050, "Member 'UBP_MusicController_C::CurrentQuestEventTag' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Prop_QuestEvent_StrickGS) == 0x000058, "Member 'UBP_MusicController_C::Prop_QuestEvent_StrickGS' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Prop_ActiveQuest) == 0x000060, "Member 'UBP_MusicController_C::Prop_ActiveQuest' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ExitCombatOnLastKill) == 0x000068, "Member 'UBP_MusicController_C::ExitCombatOnLastKill' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, TA_Occlusion_Exterior) == 0x000070, "Member 'UBP_MusicController_C::TA_Occlusion_Exterior' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, TA_Occlusion_Garage) == 0x000078, "Member 'UBP_MusicController_C::TA_Occlusion_Garage' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, TA_Occlusion_Apartments) == 0x000080, "Member 'UBP_MusicController_C::TA_Occlusion_Apartments' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, TA_Occlusion_Penthouse) == 0x000088, "Member 'UBP_MusicController_C::TA_Occlusion_Penthouse' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_LastEnemyKilled) == 0x000090, "Member 'UBP_MusicController_C::Objective_LastEnemyKilled' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_ConversationFinished) == 0x000098, "Member 'UBP_MusicController_C::Objective_ConversationFinished' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_CutsceneMusicExit) == 0x0000A0, "Member 'UBP_MusicController_C::Objective_CutsceneMusicExit' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_ConversationContinue) == 0x0000A8, "Member 'UBP_MusicController_C::Objective_ConversationContinue' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_MusicExit) == 0x0000B0, "Member 'UBP_MusicController_C::Objective_MusicExit' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PrevDialogueState) == 0x0000B8, "Member 'UBP_MusicController_C::PrevDialogueState' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PrevNumTrackedEnemies) == 0x0000BC, "Member 'UBP_MusicController_C::PrevNumTrackedEnemies' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Prop_PreviousFeedValue) == 0x0000C0, "Member 'UBP_MusicController_C::Prop_PreviousFeedValue' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_CoreLocation) == 0x0000C8, "Member 'UBP_MusicController_C::ActiveState_CoreLocation' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, IsCombat) == 0x0000C9, "Member 'UBP_MusicController_C::IsCombat' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, WasCombat) == 0x0000CA, "Member 'UBP_MusicController_C::WasCombat' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_UI) == 0x0000CB, "Member 'UBP_MusicController_C::ActiveState_UI' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_CanTriggerFinSR) == 0x0000D0, "Member 'UBP_MusicController_C::PB_CanTriggerFinSR' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PrevMasqueradeLevel) == 0x0000D8, "Member 'UBP_MusicController_C::PrevMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, IsPlayingMasqueradeLoop) == 0x0000DC, "Member 'UBP_MusicController_C::IsPlayingMasqueradeLoop' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, AllowCoreLocation) == 0x0000E0, "Member 'UBP_MusicController_C::AllowCoreLocation' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ActiveState_CombatHub) == 0x0000E8, "Member 'UBP_MusicController_C::ActiveState_CombatHub' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_Player_Inside) == 0x0000F0, "Member 'UBP_MusicController_C::PB_Player_Inside' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_Makom) == 0x0000F8, "Member 'UBP_MusicController_C::PG_Makom' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_Dutchman) == 0x000100, "Member 'UBP_MusicController_C::PG_Dutchman' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_HoleInTheWall) == 0x000108, "Member 'UBP_MusicController_C::PG_HoleInTheWall' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, MO_Fletcher) == 0x000110, "Member 'UBP_MusicController_C::MO_Fletcher' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ExteriorCoreLocation) == 0x000118, "Member 'UBP_MusicController_C::ExteriorCoreLocation' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_Music_ExitToMainMenu) == 0x000120, "Member 'UBP_MusicController_C::PB_Music_ExitToMainMenu' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_Jukebox_Active) == 0x000128, "Member 'UBP_MusicController_C::PB_Jukebox_Active' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Objective_ConversationStart) == 0x000130, "Member 'UBP_MusicController_C::Objective_ConversationStart' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_ConversationStart) == 0x000138, "Member 'UBP_MusicController_C::PB_ConversationStart' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, CurrentCombatState) == 0x000140, "Member 'UBP_MusicController_C::CurrentCombatState' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, CombatType) == 0x000148, "Member 'UBP_MusicController_C::CombatType' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PI_NumberOfOverlappedActors) == 0x000150, "Member 'UBP_MusicController_C::PI_NumberOfOverlappedActors' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_Music_ReloadLastCheckpoint) == 0x000158, "Member 'UBP_MusicController_C::PB_Music_ReloadLastCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PB_Debug_DynamicCombatCanInterruptTraversal) == 0x000160, "Member 'UBP_MusicController_C::PB_Debug_DynamicCombatCanInterruptTraversal' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, LastTimeCombatHubDisabled) == 0x000168, "Member 'UBP_MusicController_C::LastTimeCombatHubDisabled' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Clan_Trainer_Mission_Active) == 0x000170, "Member 'UBP_MusicController_C::Clan_Trainer_Mission_Active' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Clan_Trainer_Type) == 0x000174, "Member 'UBP_MusicController_C::Clan_Trainer_Type' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, LastTimeClanTrainerCombatDisabled) == 0x000180, "Member 'UBP_MusicController_C::LastTimeClanTrainerCombatDisabled' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ClanTrainerMusicSetToNone) == 0x000188, "Member 'UBP_MusicController_C::ClanTrainerMusicSetToNone' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ClanTrainerType_ExclNone) == 0x00018C, "Member 'UBP_MusicController_C::ClanTrainerType_ExclNone' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ClanTrainerMusicPlaying) == 0x000194, "Member 'UBP_MusicController_C::ClanTrainerMusicPlaying' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, Dynamic_Hub_Combat_Music_Playing) == 0x000195, "Member 'UBP_MusicController_C::Dynamic_Hub_Combat_Music_Playing' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ClanTrainerCooldownMusicPlaying) == 0x000196, "Member 'UBP_MusicController_C::ClanTrainerCooldownMusicPlaying' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, WasInsideOndaTriggerBox) == 0x000197, "Member 'UBP_MusicController_C::WasInsideOndaTriggerBox' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, InsideOndaTriggerBox) == 0x000198, "Member 'UBP_MusicController_C::InsideOndaTriggerBox' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PT_PlayerLocation) == 0x0001A0, "Member 'UBP_MusicController_C::PT_PlayerLocation' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_WakeTheDeadCafe) == 0x0001A8, "Member 'UBP_MusicController_C::PG_WakeTheDeadCafe' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_Glacier) == 0x0001B0, "Member 'UBP_MusicController_C::PG_Glacier' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, PG_AuroraPawn) == 0x0001B8, "Member 'UBP_MusicController_C::PG_AuroraPawn' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, ProEscape_LiftFall_IsPlaying) == 0x0001C0, "Member 'UBP_MusicController_C::ProEscape_LiftFall_IsPlaying' has a wrong offset!"); \ +static_assert(offsetof(UBP_MusicController_C, IsSabbatADHubCombat) == 0x0001C8, "Member 'UBP_MusicController_C::IsSabbatADHubCombat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerWaypoint_C \ +static_assert(alignof(ABP_WrestlerWaypoint_C) == 0x000008, "Wrong alignment on ABP_WrestlerWaypoint_C"); \ +static_assert(sizeof(ABP_WrestlerWaypoint_C) == 0x000390, "Wrong size on ABP_WrestlerWaypoint_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleSubtitle_C \ +static_assert(alignof(UCommonTextStyleSubtitle_C) == 0x000010, "Wrong alignment on UCommonTextStyleSubtitle_C"); \ +static_assert(sizeof(UCommonTextStyleSubtitle_C) == 0x0001B0, "Wrong size on UCommonTextStyleSubtitle_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleLargeSubtitle_C \ +static_assert(alignof(UCommonTextStyleLargeSubtitle_C) == 0x000010, "Wrong alignment on UCommonTextStyleLargeSubtitle_C"); \ +static_assert(sizeof(UCommonTextStyleLargeSubtitle_C) == 0x0001B0, "Wrong size on UCommonTextStyleLargeSubtitle_C"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_OldPhotos_C \ +static_assert(alignof(ABP_CodexItem_OldPhotos_C) == 0x000008, "Wrong alignment on ABP_CodexItem_OldPhotos_C"); \ +static_assert(sizeof(ABP_CodexItem_OldPhotos_C) == 0x000438, "Wrong size on ABP_CodexItem_OldPhotos_C"); \ + +#define DUMPER7_ASSERTS_UBP_CommonUIInputData_C \ +static_assert(alignof(UBP_CommonUIInputData_C) == 0x000008, "Wrong alignment on UBP_CommonUIInputData_C"); \ +static_assert(sizeof(UBP_CommonUIInputData_C) == 0x000080, "Wrong size on UBP_CommonUIInputData_C"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_WaterDrip_C_UserConstructionScript \ +static_assert(alignof(BP_StaticFX_WaterDrip_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_StaticFX_WaterDrip_C_UserConstructionScript"); \ +static_assert(sizeof(BP_StaticFX_WaterDrip_C_UserConstructionScript) == 0x000190, "Wrong size on BP_StaticFX_WaterDrip_C_UserConstructionScript"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue) == 0x000018, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000030, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000048, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast) == 0x000130, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_1) == 0x000134, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_2) == 0x000138, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_3) == 0x00013C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_4) == 0x000140, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_5) == 0x000144, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_6) == 0x000148, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_6' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_7) == 0x00014C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_7' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_8) == 0x000150, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_8' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_9) == 0x000154, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_9' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_10) == 0x000158, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_10' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_11) == 0x00015C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_11' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_12) == 0x000160, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_12' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_13) == 0x000164, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_13' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_14) == 0x000168, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_14' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_15) == 0x00016C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_15' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_16) == 0x000170, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_16' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_17) == 0x000174, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_17' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_18) == 0x000178, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_18' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_19) == 0x00017C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_19' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_20) == 0x000180, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_20' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_21) == 0x000184, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_21' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_22) == 0x000188, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_22' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_23) == 0x00018C, "Member 'BP_StaticFX_WaterDrip_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_23' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip \ +static_assert(alignof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip) == 0x000008, "Wrong alignment on BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip"); \ +static_assert(sizeof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip) == 0x000260, "Wrong size on BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, EntryPoint) == 0x000000, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, Temp_delegate_Variable) == 0x000004, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000040, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, Temp_object_Variable) == 0x000078, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_LineTraceSingle_OutHit) == 0x000088, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_LineTraceSingle_ReturnValue) == 0x000170, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_bBlockingHit) == 0x000171, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_bInitialOverlap) == 0x000172, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_Time) == 0x000174, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_Distance) == 0x000178, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_Location) == 0x000180, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_ImpactPoint) == 0x000198, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_Normal) == 0x0001B0, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_ImpactNormal) == 0x0001C8, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_PhysMat) == 0x0001E0, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_HitActor) == 0x0001E8, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_HitComponent) == 0x0001F0, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_HitBoneName) == 0x0001F8, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_BoneName) == 0x000200, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_HitItem) == 0x000208, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_ElementIndex) == 0x00020C, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_FaceIndex) == 0x000210, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_TraceStart) == 0x000218, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_BreakHitResult_TraceEnd) == 0x000230, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_IsValid_ReturnValue_1) == 0x000248, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x000249, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x000250, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip, K2Node_SwitchEnum_CmpSuccess) == 0x000258, "Member 'BP_StaticFX_WaterDrip_C_ExecuteUbergraph_BP_StaticFX_WaterDrip::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_WaterDrip_C \ +static_assert(alignof(ABP_StaticFX_WaterDrip_C) == 0x000008, "Wrong alignment on ABP_StaticFX_WaterDrip_C"); \ +static_assert(sizeof(ABP_StaticFX_WaterDrip_C) == 0x0004B0, "Wrong size on ABP_StaticFX_WaterDrip_C"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, UberGraphFrame_BP_StaticFX_WaterDrip_C) == 0x000310, "Member 'ABP_StaticFX_WaterDrip_C::UberGraphFrame_BP_StaticFX_WaterDrip_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, HeraAudio_Surface) == 0x000318, "Member 'ABP_StaticFX_WaterDrip_C::HeraAudio_Surface' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, HeraAudio_Source) == 0x000320, "Member 'ABP_StaticFX_WaterDrip_C::HeraAudio_Source' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Water_Ripples) == 0x000328, "Member 'ABP_StaticFX_WaterDrip_C::Water_Ripples' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_Mesh_Offset) == 0x000330, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_Mesh_Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Impact_Offset) == 0x000348, "Member 'ABP_StaticFX_WaterDrip_C::Impact_Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Splash_Mesh_Box_Location_Size) == 0x000360, "Member 'ABP_StaticFX_WaterDrip_C::Splash_Mesh_Box_Location_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Splash_Scale_Max) == 0x000378, "Member 'ABP_StaticFX_WaterDrip_C::Splash_Scale_Max' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Splash_Scale_Min) == 0x000380, "Member 'ABP_StaticFX_WaterDrip_C::Splash_Scale_Min' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, U_Tiling_MainFallingMesh) == 0x000388, "Member 'ABP_StaticFX_WaterDrip_C::U_Tiling_MainFallingMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, V_Tiling_MainFallingMesh) == 0x000390, "Member 'ABP_StaticFX_WaterDrip_C::V_Tiling_MainFallingMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Water_Falling_Mesh_Panning_U) == 0x000398, "Member 'ABP_StaticFX_WaterDrip_C::Water_Falling_Mesh_Panning_U' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Water_Falling_Mesh_Panning_V) == 0x0003A0, "Member 'ABP_StaticFX_WaterDrip_C::Water_Falling_Mesh_Panning_V' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Water_Falling_Mesh_Scale) == 0x0003A8, "Member 'ABP_StaticFX_WaterDrip_C::Water_Falling_Mesh_Scale' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Activate_Ripples) == 0x0003C0, "Member 'ABP_StaticFX_WaterDrip_C::Activate_Ripples' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Ripple_Scale_Min) == 0x0003C8, "Member 'ABP_StaticFX_WaterDrip_C::Ripple_Scale_Min' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Ripple_Scale_Max) == 0x0003D0, "Member 'ABP_StaticFX_WaterDrip_C::Ripple_Scale_Max' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Ripple_BoxLocation_Size) == 0x0003D8, "Member 'ABP_StaticFX_WaterDrip_C::Ripple_BoxLocation_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Ripple_SpawnRate) == 0x0003F0, "Member 'ABP_StaticFX_WaterDrip_C::Ripple_SpawnRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Ripple_SpawnProbability) == 0x0003F8, "Member 'ABP_StaticFX_WaterDrip_C::Ripple_SpawnProbability' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprites_SpawnRate) == 0x000400, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprites_SpawnRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprites_SpawnProbability) == 0x000408, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprites_SpawnProbability' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_Scale_Mult) == 0x000410, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_Scale_Mult' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_Lifetime_Mult) == 0x000418, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_Lifetime_Mult' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_SphereLocation_Radius) == 0x000420, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_SphereLocation_Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_BoxLocation_Size) == 0x000428, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_BoxLocation_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_ConeVelocity_Mult) == 0x000440, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_ConeVelocity_Mult' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, DropsFalling_SpawnRate_Mult) == 0x000448, "Member 'ABP_StaticFX_WaterDrip_C::DropsFalling_SpawnRate_Mult' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Water_Falling_Mesh_SpawnCount) == 0x000450, "Member 'ABP_StaticFX_WaterDrip_C::Water_Falling_Mesh_SpawnCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, ImpactSplash_General_SpawnProbability) == 0x000458, "Member 'ABP_StaticFX_WaterDrip_C::ImpactSplash_General_SpawnProbability' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Audio_Trace_Distance) == 0x000460, "Member 'ABP_StaticFX_WaterDrip_C::Audio_Trace_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Audio_Impact_Offset_Adjustment) == 0x000468, "Member 'ABP_StaticFX_WaterDrip_C::Audio_Impact_Offset_Adjustment' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, Emissive_Mult) == 0x000480, "Member 'ABP_StaticFX_WaterDrip_C::Emissive_Mult' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprite_CylinderLocation__Height) == 0x000488, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprite_CylinderLocation__Height' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprite_CylinderLocation__Radius) == 0x000490, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprite_CylinderLocation__Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprite__Size_Min) == 0x000498, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprite__Size_Min' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SplashSprite__Size_Max) == 0x0004A0, "Member 'ABP_StaticFX_WaterDrip_C::SplashSprite__Size_Max' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_WaterDrip_C, SFX_SourceEvent) == 0x0004A8, "Member 'ABP_StaticFX_WaterDrip_C::SFX_SourceEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABp_muiltiple_water_falling_01_C \ +static_assert(alignof(ABp_muiltiple_water_falling_01_C) == 0x000008, "Wrong alignment on ABp_muiltiple_water_falling_01_C"); \ +static_assert(sizeof(ABp_muiltiple_water_falling_01_C) == 0x000320, "Wrong size on ABp_muiltiple_water_falling_01_C"); \ +static_assert(offsetof(ABp_muiltiple_water_falling_01_C, NS_WaterRipples) == 0x000310, "Member 'ABp_muiltiple_water_falling_01_C::NS_WaterRipples' has a wrong offset!"); \ +static_assert(offsetof(ABp_muiltiple_water_falling_01_C, Activate_Ripples) == 0x000318, "Member 'ABp_muiltiple_water_falling_01_C::Activate_Ripples' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MenuSettingsTab_C_OnWidgetIndexChanged \ +static_assert(alignof(WBP_MenuSettingsTab_C_OnWidgetIndexChanged) == 0x000004, "Wrong alignment on WBP_MenuSettingsTab_C_OnWidgetIndexChanged"); \ +static_assert(sizeof(WBP_MenuSettingsTab_C_OnWidgetIndexChanged) == 0x000008, "Wrong size on WBP_MenuSettingsTab_C_OnWidgetIndexChanged"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_OnWidgetIndexChanged, OldIndex) == 0x000000, "Member 'WBP_MenuSettingsTab_C_OnWidgetIndexChanged::OldIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_OnWidgetIndexChanged, NewIndex) == 0x000004, "Member 'WBP_MenuSettingsTab_C_OnWidgetIndexChanged::NewIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded \ +static_assert(alignof(WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded) == 0x000008, "Wrong alignment on WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded"); \ +static_assert(sizeof(WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded) == 0x000018, "Wrong size on WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded, CallFunc_GetActiveWidget_ReturnValue) == 0x000000, "Member 'WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded::CallFunc_GetActiveWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded, K2Node_DynamicCast_AsWrestler_RPGMenu_Tab_Widget) == 0x000008, "Member 'WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded::K2Node_DynamicCast_AsWrestler_RPGMenu_Tab_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_MenuSettingsTab_C_OnInnerTabConfirmationEnded::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab \ +static_assert(alignof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab) == 0x000008, "Wrong alignment on WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab"); \ +static_assert(sizeof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab) == 0x000070, "Wrong size on WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, EntryPoint) == 0x000000, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, Temp_delegate_Variable) == 0x000014, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_ComponentBoundEvent_Button_1) == 0x000028, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_ComponentBoundEvent_Button) == 0x000030, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_Event_OldIndex) == 0x000038, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_Event_OldIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_Event_NewIndex) == 0x00003C, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_Event_NewIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000040, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_DynamicCast_AsTCR_RPGMenu_Layout) == 0x000048, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_DynamicCast_AsTCR_RPGMenu_Layout' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, CallFunc_GetActiveWidget_ReturnValue) == 0x000058, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::CallFunc_GetActiveWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_DynamicCast_AsWrestler_RPGMenu_Tab_Widget) == 0x000060, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_DynamicCast_AsWrestler_RPGMenu_Tab_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab, K2Node_DynamicCast_bSuccess_1) == 0x000068, "Member 'WBP_MenuSettingsTab_C_ExecuteUbergraph_WBP_MenuSettingsTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_RightAction_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_MenuSettingsTab_C_BndEvt__WBP_MenuSettingsTab_LeftAction_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MenuSettingsTab_C \ +static_assert(alignof(UWBP_MenuSettingsTab_C) == 0x000008, "Wrong alignment on UWBP_MenuSettingsTab_C"); \ +static_assert(sizeof(UWBP_MenuSettingsTab_C) == 0x000510, "Wrong size on UWBP_MenuSettingsTab_C"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, UberGraphFrame) == 0x000490, "Member 'UWBP_MenuSettingsTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, AccessibilitySettingsTab) == 0x000498, "Member 'UWBP_MenuSettingsTab_C::AccessibilitySettingsTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, AudioSettingsTab) == 0x0004A0, "Member 'UWBP_MenuSettingsTab_C::AudioSettingsTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, ControlsSettingsTab) == 0x0004A8, "Member 'UWBP_MenuSettingsTab_C::ControlsSettingsTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, DownAction) == 0x0004B0, "Member 'UWBP_MenuSettingsTab_C::DownAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, GameSettingsTab) == 0x0004B8, "Member 'UWBP_MenuSettingsTab_C::GameSettingsTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, PatternEnd) == 0x0004C0, "Member 'UWBP_MenuSettingsTab_C::PatternEnd' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, TCR_Accessibility) == 0x0004C8, "Member 'UWBP_MenuSettingsTab_C::TCR_Accessibility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, TCR_Audio) == 0x0004D0, "Member 'UWBP_MenuSettingsTab_C::TCR_Audio' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, TCR_Controls) == 0x0004D8, "Member 'UWBP_MenuSettingsTab_C::TCR_Controls' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, TCR_Gameplay) == 0x0004E0, "Member 'UWBP_MenuSettingsTab_C::TCR_Gameplay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, TCR_Video) == 0x0004E8, "Member 'UWBP_MenuSettingsTab_C::TCR_Video' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, UpAction) == 0x0004F0, "Member 'UWBP_MenuSettingsTab_C::UpAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, VideoSettingsTab) == 0x0004F8, "Member 'UWBP_MenuSettingsTab_C::VideoSettingsTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, CurrentActiveTab_0) == 0x000500, "Member 'UWBP_MenuSettingsTab_C::CurrentActiveTab_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MenuSettingsTab_C, RpgLayout) == 0x000508, "Member 'UWBP_MenuSettingsTab_C::RpgLayout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerInvisibleWall_Traversable_C \ +static_assert(alignof(AWrestlerInvisibleWall_Traversable_C) == 0x000008, "Wrong alignment on AWrestlerInvisibleWall_Traversable_C"); \ +static_assert(sizeof(AWrestlerInvisibleWall_Traversable_C) == 0x0002A0, "Wrong size on AWrestlerInvisibleWall_Traversable_C"); \ + +#define DUMPER7_ASSERTS_UWBP_MainQuestPoolWidget_C \ +static_assert(alignof(UWBP_MainQuestPoolWidget_C) == 0x000008, "Wrong alignment on UWBP_MainQuestPoolWidget_C"); \ +static_assert(sizeof(UWBP_MainQuestPoolWidget_C) == 0x000538, "Wrong size on UWBP_MainQuestPoolWidget_C"); \ + +#define DUMPER7_ASSERTS_UGE_Sprint_C \ +static_assert(alignof(UGE_Sprint_C) == 0x000008, "Wrong alignment on UGE_Sprint_C"); \ +static_assert(sizeof(UGE_Sprint_C) == 0x000A70, "Wrong size on UGE_Sprint_C"); \ + +#define DUMPER7_ASSERTS_AWrestlerInvisibleWall_C \ +static_assert(alignof(AWrestlerInvisibleWall_C) == 0x000008, "Wrong alignment on AWrestlerInvisibleWall_C"); \ +static_assert(sizeof(AWrestlerInvisibleWall_C) == 0x0002A0, "Wrong size on AWrestlerInvisibleWall_C"); \ +static_assert(offsetof(AWrestlerInvisibleWall_C, Cube) == 0x000298, "Member 'AWrestlerInvisibleWall_C::Cube' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleSubtitleCharacterNameMedium_C \ +static_assert(alignof(UCommonTextStyleSubtitleCharacterNameMedium_C) == 0x000010, "Wrong alignment on UCommonTextStyleSubtitleCharacterNameMedium_C"); \ +static_assert(sizeof(UCommonTextStyleSubtitleCharacterNameMedium_C) == 0x0001B0, "Wrong size on UCommonTextStyleSubtitleCharacterNameMedium_C"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerLightActor_C \ +static_assert(alignof(ABP_WrestlerLightActor_C) == 0x000008, "Wrong alignment on ABP_WrestlerLightActor_C"); \ +static_assert(sizeof(ABP_WrestlerLightActor_C) == 0x0002E8, "Wrong size on ABP_WrestlerLightActor_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleSubtitleCharacterNameLarge_C \ +static_assert(alignof(UCommonTextStyleSubtitleCharacterNameLarge_C) == 0x000010, "Wrong alignment on UCommonTextStyleSubtitleCharacterNameLarge_C"); \ +static_assert(sizeof(UCommonTextStyleSubtitleCharacterNameLarge_C) == 0x0001B0, "Wrong size on UCommonTextStyleSubtitleCharacterNameLarge_C"); \ + +#define DUMPER7_ASSERTS_UDialogueBottom_Controller_C \ +static_assert(alignof(UDialogueBottom_Controller_C) == 0x000010, "Wrong alignment on UDialogueBottom_Controller_C"); \ +static_assert(sizeof(UDialogueBottom_Controller_C) == 0x0007B0, "Wrong size on UDialogueBottom_Controller_C"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Blueprint_Set_Up \ +static_assert(alignof(BP_LightsStateManager_C_Blueprint_Set_Up) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_Blueprint_Set_Up"); \ +static_assert(sizeof(BP_LightsStateManager_C_Blueprint_Set_Up) == 0x000098, "Wrong size on BP_LightsStateManager_C_Blueprint_Set_Up"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, Blueprint_Actor) == 0x000008, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::Blueprint_Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Club_Light_02) == 0x000018, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Club_Light_02' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Club_Light) == 0x000028, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Club_Light' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Lightmaster) == 0x000038, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Lightmaster' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_2) == 0x000040, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Laser) == 0x000048, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Laser' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_3) == 0x000050, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Lightmaster_1) == 0x000058, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Lightmaster_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_4) == 0x000060, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Club_Light_02_1) == 0x000068, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Club_Light_02_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_5) == 0x000070, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Club_Light_1) == 0x000078, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Club_Light_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_6) == 0x000080, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_AsBP_Laser_1) == 0x000088, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_AsBP_Laser_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Blueprint_Set_Up, K2Node_DynamicCast_bSuccess_7) == 0x000090, "Member 'BP_LightsStateManager_C_Blueprint_Set_Up::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_LightsStateManager_C_BndEvt__BP_LightsStateManager_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_0_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager \ +static_assert(alignof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager"); \ +static_assert(sizeof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager) == 0x0000F0, "Wrong size on BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, EntryPoint) == 0x000000, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Add_IntInt_ReturnValue_2) == 0x000024, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Array_Index_Variable_1) == 0x000028, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, Temp_int_Array_Index_Variable_2) == 0x00002C, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_DynamicCast_AsActor) == 0x000060, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_CustomEvent_Item_State) == 0x00006A, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_CustomEvent_Item_State' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_SwitchEnum_CmpSuccess) == 0x00006B, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Length_ReturnValue_1) == 0x000098, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Less_IntInt_ReturnValue_1) == 0x00009C, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_Event_InItemState) == 0x00009D, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_ComponentBoundEvent_InItemState) == 0x00009E, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Get_Item_2) == 0x0000A0, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Array_Length_ReturnValue_2) == 0x0000C8, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000D0, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000D8, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_DynamicCast_AsActor_1) == 0x0000E0, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_DynamicCast_AsActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, K2Node_DynamicCast_bSuccess_1) == 0x0000E8, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager, CallFunc_IsValid_ReturnValue_1) == 0x0000E9, "Member 'BP_LightsStateManager_C_ExecuteUbergraph_BP_LightsStateManager::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_GetDebugString \ +static_assert(alignof(BP_LightsStateManager_C_GetDebugString) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_GetDebugString"); \ +static_assert(sizeof(BP_LightsStateManager_C_GetDebugString) == 0x000010, "Wrong size on BP_LightsStateManager_C_GetDebugString"); \ +static_assert(offsetof(BP_LightsStateManager_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_LightsStateManager_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_GetItemState \ +static_assert(alignof(BP_LightsStateManager_C_GetItemState) == 0x000001, "Wrong alignment on BP_LightsStateManager_C_GetItemState"); \ +static_assert(sizeof(BP_LightsStateManager_C_GetItemState) == 0x000001, "Wrong size on BP_LightsStateManager_C_GetItemState"); \ +static_assert(offsetof(BP_LightsStateManager_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_LightsStateManager_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Lights_SetUp \ +static_assert(alignof(BP_LightsStateManager_C_Lights_SetUp) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_Lights_SetUp"); \ +static_assert(sizeof(BP_LightsStateManager_C_Lights_SetUp) == 0x000048, "Wrong size on BP_LightsStateManager_C_Lights_SetUp"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, Input) == 0x000000, "Member 'BP_LightsStateManager_C_Lights_SetUp::Input' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, Item_State_0) == 0x000028, "Member 'BP_LightsStateManager_C_Lights_SetUp::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000030, "Member 'BP_LightsStateManager_C_Lights_SetUp::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, K2Node_DynamicCast_AsActor) == 0x000038, "Member 'BP_LightsStateManager_C_Lights_SetUp::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_LightsStateManager_C_Lights_SetUp::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Lights_SetUp, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'BP_LightsStateManager_C_Lights_SetUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Materials_SetUp \ +static_assert(alignof(BP_LightsStateManager_C_Materials_SetUp) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_Materials_SetUp"); \ +static_assert(sizeof(BP_LightsStateManager_C_Materials_SetUp) == 0x000050, "Wrong size on BP_LightsStateManager_C_Materials_SetUp"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_Materials_SetUp::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, Static_Mesh) == 0x000008, "Member 'BP_LightsStateManager_C_Materials_SetUp::Static_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_LightsStateManager_C_Materials_SetUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_IsValid_ReturnValue) == 0x000014, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000018, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, K2Node_SwitchEnum_CmpSuccess) == 0x000028, "Member 'BP_LightsStateManager_C_Materials_SetUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, Temp_int_Loop_Counter_Variable) == 0x00003C, "Member 'BP_LightsStateManager_C_Materials_SetUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Map_Find_Value) == 0x000040, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Map_Find_ReturnValue) == 0x000048, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Less_IntInt_ReturnValue) == 0x000049, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Materials_SetUp, CallFunc_Add_IntInt_ReturnValue) == 0x00004C, "Member 'BP_LightsStateManager_C_Materials_SetUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_PointLight_SetUp \ +static_assert(alignof(BP_LightsStateManager_C_PointLight_SetUp) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_PointLight_SetUp"); \ +static_assert(sizeof(BP_LightsStateManager_C_PointLight_SetUp) == 0x000048, "Wrong size on BP_LightsStateManager_C_PointLight_SetUp"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_PointLight_SetUp::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, Point_Light) == 0x000008, "Member 'BP_LightsStateManager_C_PointLight_SetUp::Point_Light' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000018, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, K2Node_SwitchEnum_CmpSuccess) == 0x00002C, "Member 'BP_LightsStateManager_C_PointLight_SetUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_LightsStateManager_C_PointLight_SetUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_LightsStateManager_C_PointLight_SetUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_PointLight_SetUp, CallFunc_Add_IntInt_ReturnValue) == 0x000044, "Member 'BP_LightsStateManager_C_PointLight_SetUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_RectLight_SetUp \ +static_assert(alignof(BP_LightsStateManager_C_RectLight_SetUp) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_RectLight_SetUp"); \ +static_assert(sizeof(BP_LightsStateManager_C_RectLight_SetUp) == 0x000048, "Wrong size on BP_LightsStateManager_C_RectLight_SetUp"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_RectLight_SetUp::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, Rect_Light) == 0x000008, "Member 'BP_LightsStateManager_C_RectLight_SetUp::Rect_Light' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000018, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, K2Node_SwitchEnum_CmpSuccess) == 0x00002C, "Member 'BP_LightsStateManager_C_RectLight_SetUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_LightsStateManager_C_RectLight_SetUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_LightsStateManager_C_RectLight_SetUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_RectLight_SetUp, CallFunc_Add_IntInt_ReturnValue) == 0x000044, "Member 'BP_LightsStateManager_C_RectLight_SetUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Save_Default_Values_as_Variable \ +static_assert(alignof(BP_LightsStateManager_C_Save_Default_Values_as_Variable) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_Save_Default_Values_as_Variable"); \ +static_assert(sizeof(BP_LightsStateManager_C_Save_Default_Values_as_Variable) == 0x000138, "Wrong size on BP_LightsStateManager_C_Save_Default_Values_as_Variable"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Array_Index_Variable_2) == 0x000018, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Loop_Counter_Variable_3) == 0x000024, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Loop_Counter_Variable_4) == 0x000028, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Add_IntInt_ReturnValue_3) == 0x00002C, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Add_IntInt_ReturnValue_4) == 0x000030, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Array_Index_Variable_3) == 0x000034, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, Temp_int_Array_Index_Variable_4) == 0x000038, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Length_ReturnValue) == 0x00003C, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000070, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, K2Node_DynamicCast_AsActor) == 0x000078, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000088, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_IsValid_ReturnValue) == 0x000098, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Get_Item_1) == 0x0000A0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Length_ReturnValue_1) == 0x0000A8, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000AC, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x0000B0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Get_Item_2) == 0x0000C0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Length_ReturnValue_2) == 0x0000C8, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_GetMaterial_ReturnValue) == 0x0000D0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_GetMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000D8, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_K2_GetComponentsByClass_ReturnValue_2) == 0x0000E0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_K2_GetComponentsByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_K2_GetComponentsByClass_ReturnValue_3) == 0x0000F0, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_K2_GetComponentsByClass_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Get_Item_3) == 0x000100, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Get_Item_4) == 0x000108, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Length_ReturnValue_3) == 0x000110, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Array_Length_ReturnValue_4) == 0x000114, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Less_IntInt_ReturnValue_3) == 0x000118, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Less_IntInt_ReturnValue_4) == 0x000119, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Map_Add_Value_ImplicitCast) == 0x000120, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Map_Add_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Map_Add_Value_ImplicitCast_1) == 0x000128, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Map_Add_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Save_Default_Values_as_Variable, CallFunc_Map_Add_Value_ImplicitCast_2) == 0x000130, "Member 'BP_LightsStateManager_C_Save_Default_Values_as_Variable::CallFunc_Map_Add_Value_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_SetItemState \ +static_assert(alignof(BP_LightsStateManager_C_SetItemState) == 0x000001, "Wrong alignment on BP_LightsStateManager_C_SetItemState"); \ +static_assert(sizeof(BP_LightsStateManager_C_SetItemState) == 0x000001, "Wrong size on BP_LightsStateManager_C_SetItemState"); \ +static_assert(offsetof(BP_LightsStateManager_C_SetItemState, InItemState) == 0x000000, "Member 'BP_LightsStateManager_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Spotlight_SetUp \ +static_assert(alignof(BP_LightsStateManager_C_Spotlight_SetUp) == 0x000008, "Wrong alignment on BP_LightsStateManager_C_Spotlight_SetUp"); \ +static_assert(sizeof(BP_LightsStateManager_C_Spotlight_SetUp) == 0x000048, "Wrong size on BP_LightsStateManager_C_Spotlight_SetUp"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::Item_State_0' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, SpotLight) == 0x000008, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000018, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, K2Node_SwitchEnum_CmpSuccess) == 0x00002C, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LightsStateManager_C_Spotlight_SetUp, CallFunc_Add_IntInt_ReturnValue) == 0x000044, "Member 'BP_LightsStateManager_C_Spotlight_SetUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LightsStateManager_C_Update_State \ +static_assert(alignof(BP_LightsStateManager_C_Update_State) == 0x000001, "Wrong alignment on BP_LightsStateManager_C_Update_State"); \ +static_assert(sizeof(BP_LightsStateManager_C_Update_State) == 0x000001, "Wrong size on BP_LightsStateManager_C_Update_State"); \ +static_assert(offsetof(BP_LightsStateManager_C_Update_State, Item_State_0) == 0x000000, "Member 'BP_LightsStateManager_C_Update_State::Item_State_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_LightsStateManager_C \ +static_assert(alignof(ABP_LightsStateManager_C) == 0x000008, "Wrong alignment on ABP_LightsStateManager_C"); \ +static_assert(sizeof(ABP_LightsStateManager_C) == 0x000418, "Wrong size on ABP_LightsStateManager_C"); \ +static_assert(offsetof(ABP_LightsStateManager_C, UberGraphFrame) == 0x000298, "Member 'ABP_LightsStateManager_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, WrestlerPersistenceComponentItemState) == 0x0002A0, "Member 'ABP_LightsStateManager_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, Billboard) == 0x0002A8, "Member 'ABP_LightsStateManager_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, Item_State) == 0x0002B0, "Member 'ABP_LightsStateManager_C::Item_State' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, Lights) == 0x0002B8, "Member 'ABP_LightsStateManager_C::Lights' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, SpotlightMap) == 0x0002C8, "Member 'ABP_LightsStateManager_C::SpotlightMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, PointLightMap) == 0x000318, "Member 'ABP_LightsStateManager_C::PointLightMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, RectLightMap) == 0x000368, "Member 'ABP_LightsStateManager_C::RectLightMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, MaterialMap) == 0x0003B8, "Member 'ABP_LightsStateManager_C::MaterialMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_LightsStateManager_C, Active) == 0x000408, "Member 'ABP_LightsStateManager_C::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleSubtitleCharacterName_C \ +static_assert(alignof(UCommonTextStyleSubtitleCharacterName_C) == 0x000010, "Wrong alignment on UCommonTextStyleSubtitleCharacterName_C"); \ +static_assert(sizeof(UCommonTextStyleSubtitleCharacterName_C) == 0x0001B0, "Wrong size on UCommonTextStyleSubtitleCharacterName_C"); \ + +#define DUMPER7_ASSERTS_FStruct_ReactionData \ +static_assert(alignof(FStruct_ReactionData) == 0x000008, "Wrong alignment on FStruct_ReactionData"); \ +static_assert(sizeof(FStruct_ReactionData) == 0x000058, "Wrong size on FStruct_ReactionData"); \ +static_assert(offsetof(FStruct_ReactionData, DefaultReaction_2_9B434AD4495B819003EDC6B0E5361756) == 0x000000, "Member 'FStruct_ReactionData::DefaultReaction_2_9B434AD4495B819003EDC6B0E5361756' has a wrong offset!"); \ +static_assert(offsetof(FStruct_ReactionData, ToleranceReaction_5_72CE781743389F55C597B8BFF2E6B12F) == 0x000008, "Member 'FStruct_ReactionData::ToleranceReaction_5_72CE781743389F55C597B8BFF2E6B12F' has a wrong offset!"); \ +static_assert(offsetof(FStruct_ReactionData, ToleranceCount_8_1C8C458345FF38BFB93659812F6B0CC0) == 0x000010, "Member 'FStruct_ReactionData::ToleranceCount_8_1C8C458345FF38BFB93659812F6B0CC0' has a wrong offset!"); \ +static_assert(offsetof(FStruct_ReactionData, ToleranceTags_11_EF14CCE046F8041E373D08B54C200183) == 0x000018, "Member 'FStruct_ReactionData::ToleranceTags_11_EF14CCE046F8041E373D08B54C200183' has a wrong offset!"); \ +static_assert(offsetof(FStruct_ReactionData, IntoleranceTags_14_E2B2D4AB487E712795FDE5BFACDFBAE6) == 0x000038, "Member 'FStruct_ReactionData::IntoleranceTags_14_E2B2D4AB487E712795FDE5BFACDFBAE6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP \ +static_assert(alignof(SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP) == 0x000004, "Wrong alignment on SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP"); \ +static_assert(sizeof(SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP) == 0x000004, "Wrong size on SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP"); \ +static_assert(offsetof(SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP, EntryPoint) == 0x000000, "Member 'SEQ_Intro_DirectorBP_C_ExecuteUbergraph_SEQ_Intro_DirectorBP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USEQ_Intro_DirectorBP_C \ +static_assert(alignof(USEQ_Intro_DirectorBP_C) == 0x000008, "Wrong alignment on USEQ_Intro_DirectorBP_C"); \ +static_assert(sizeof(USEQ_Intro_DirectorBP_C) == 0x000040, "Wrong size on USEQ_Intro_DirectorBP_C"); \ +static_assert(offsetof(USEQ_Intro_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USEQ_Intro_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Dash_C_OnRemoveAudio \ +static_assert(alignof(GC_Dash_C_OnRemoveAudio) == 0x000008, "Wrong alignment on GC_Dash_C_OnRemoveAudio"); \ +static_assert(sizeof(GC_Dash_C_OnRemoveAudio) == 0x0000F8, "Wrong size on GC_Dash_C_OnRemoveAudio"); \ +static_assert(offsetof(GC_Dash_C_OnRemoveAudio, Character) == 0x000000, "Member 'GC_Dash_C_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'GC_Dash_C_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnRemoveAudio, Parameters) == 0x000010, "Member 'GC_Dash_C_OnRemoveAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnRemoveAudio, Temp_delegate_Variable) == 0x0000E8, "Member 'GC_Dash_C_OnRemoveAudio::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Dash_C_OnActiveAudio \ +static_assert(alignof(GC_Dash_C_OnActiveAudio) == 0x000008, "Wrong alignment on GC_Dash_C_OnActiveAudio"); \ +static_assert(sizeof(GC_Dash_C_OnActiveAudio) == 0x000128, "Wrong size on GC_Dash_C_OnActiveAudio"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, Character) == 0x000000, "Member 'GC_Dash_C_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, AudioComponent) == 0x000008, "Member 'GC_Dash_C_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, Parameters) == 0x000010, "Member 'GC_Dash_C_OnActiveAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x0000E8, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_BreakVector_X) == 0x000100, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_BreakVector_Y) == 0x000108, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_BreakVector_Z) == 0x000110, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_Abs_ReturnValue) == 0x000118, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActiveAudio, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000120, "Member 'GC_Dash_C_OnActiveAudio::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Dash_C_OnActive \ +static_assert(alignof(GC_Dash_C_OnActive) == 0x000010, "Wrong alignment on GC_Dash_C_OnActive"); \ +static_assert(sizeof(GC_Dash_C_OnActive) == 0x000290, "Wrong size on GC_Dash_C_OnActive"); \ +static_assert(offsetof(GC_Dash_C_OnActive, MyTarget) == 0x000000, "Member 'GC_Dash_C_OnActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, Parameters) == 0x000008, "Member 'GC_Dash_C_OnActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, ReturnValue) == 0x0000E0, "Member 'GC_Dash_C_OnActive::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_MakeTransform_ReturnValue) == 0x0000F0, "Member 'GC_Dash_C_OnActive::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000150, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000154, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000158, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000170, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000178, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000180, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x0001A0, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_Location) == 0x0001C0, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_Normal) == 0x0001D8, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0001F0, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0001F8, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x000200, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x000208, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x000210, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x000214, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x000218, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x000220, "Member 'GC_Dash_C_OnActive::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000228, "Member 'GC_Dash_C_OnActive::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, K2Node_DynamicCast_bSuccess) == 0x000238, "Member 'GC_Dash_C_OnActive::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, Temp_object_Variable) == 0x000240, "Member 'GC_Dash_C_OnActive::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000248, "Member 'GC_Dash_C_OnActive::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000250, "Member 'GC_Dash_C_OnActive::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_FinishSpawningActor_ReturnValue) == 0x000258, "Member 'GC_Dash_C_OnActive::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000260, "Member 'GC_Dash_C_OnActive::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, Temp_name_Variable) == 0x000268, "Member 'GC_Dash_C_OnActive::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000270, "Member 'GC_Dash_C_OnActive::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000278, "Member 'GC_Dash_C_OnActive::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, K2Node_DynamicCast_AsCM_Dash_PP) == 0x000280, "Member 'GC_Dash_C_OnActive::K2Node_DynamicCast_AsCM_Dash_PP' has a wrong offset!"); \ +static_assert(offsetof(GC_Dash_C_OnActive, K2Node_DynamicCast_bSuccess_1) == 0x000288, "Member 'GC_Dash_C_OnActive::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Dash_C \ +static_assert(alignof(AGC_Dash_C) == 0x000008, "Wrong alignment on AGC_Dash_C"); \ +static_assert(sizeof(AGC_Dash_C) == 0x000328, "Wrong size on AGC_Dash_C"); \ +static_assert(offsetof(AGC_Dash_C, DefaultSceneRoot) == 0x000308, "Member 'AGC_Dash_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Dash_C, Target) == 0x000310, "Member 'AGC_Dash_C::Target' has a wrong offset!"); \ +static_assert(offsetof(AGC_Dash_C, PP) == 0x000318, "Member 'AGC_Dash_C::PP' has a wrong offset!"); \ +static_assert(offsetof(AGC_Dash_C, dash) == 0x000320, "Member 'AGC_Dash_C::dash' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AcidicTouchActivate_C_ApplyDissolveMaterial \ +static_assert(alignof(BP_AcidicTouchActivate_C_ApplyDissolveMaterial) == 0x000008, "Wrong alignment on BP_AcidicTouchActivate_C_ApplyDissolveMaterial"); \ +static_assert(sizeof(BP_AcidicTouchActivate_C_ApplyDissolveMaterial) == 0x000010, "Wrong size on BP_AcidicTouchActivate_C_ApplyDissolveMaterial"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyDissolveMaterial, self2) == 0x000000, "Member 'BP_AcidicTouchActivate_C_ApplyDissolveMaterial::self2' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyDissolveMaterial, Dissolve_0) == 0x000008, "Member 'BP_AcidicTouchActivate_C_ApplyDissolveMaterial::Dissolve_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AcidicTouchActivate_C_ApplyFXMaterials \ +static_assert(alignof(BP_AcidicTouchActivate_C_ApplyFXMaterials) == 0x000008, "Wrong alignment on BP_AcidicTouchActivate_C_ApplyFXMaterials"); \ +static_assert(sizeof(BP_AcidicTouchActivate_C_ApplyFXMaterials) == 0x000018, "Wrong size on BP_AcidicTouchActivate_C_ApplyFXMaterials"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyFXMaterials, self2) == 0x000000, "Member 'BP_AcidicTouchActivate_C_ApplyFXMaterials::self2' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyFXMaterials, Erode) == 0x000008, "Member 'BP_AcidicTouchActivate_C_ApplyFXMaterials::Erode' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyFXMaterials, Dissolve_0) == 0x00000C, "Member 'BP_AcidicTouchActivate_C_ApplyFXMaterials::Dissolve_0' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyFXMaterials, Opacity) == 0x000010, "Member 'BP_AcidicTouchActivate_C_ApplyFXMaterials::Opacity' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ApplyFXMaterials, WPO) == 0x000014, "Member 'BP_AcidicTouchActivate_C_ApplyFXMaterials::WPO' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate \ +static_assert(alignof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate) == 0x000008, "Wrong alignment on BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate"); \ +static_assert(sizeof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate) == 0x000070, "Wrong size on BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, EntryPoint) == 0x000000, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_IsValid_ReturnValue) == 0x000024, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_FMin_ReturnValue) == 0x000028, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, Temp_int_Loop_Counter_Variable_1) == 0x000030, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_IsValid_ReturnValue_1) == 0x000034, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Less_IntInt_ReturnValue) == 0x000035, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Add_IntInt_ReturnValue_1) == 0x000038, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Array_Get_Item_1) == 0x000040, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_IsValid_ReturnValue_2) == 0x000048, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_IsValid_ReturnValue_3) == 0x000049, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Array_Length_ReturnValue_1) == 0x00004C, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_Less_IntInt_ReturnValue_1) == 0x000050, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_FMin_B_ImplicitCast) == 0x000058, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_FMin_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_FMin_A_ImplicitCast) == 0x000060, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_FMin_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_ApplyFXMaterials_Dissolve_ImplicitCast) == 0x000068, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_ApplyFXMaterials_Dissolve_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate, CallFunc_ApplyFXMaterials_Dissolve_ImplicitCast_1) == 0x00006C, "Member 'BP_AcidicTouchActivate_C_ExecuteUbergraph_BP_AcidicTouchActivate::CallFunc_ApplyFXMaterials_Dissolve_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AcidicTouchActivate_C_RemoveFXMaterials \ +static_assert(alignof(BP_AcidicTouchActivate_C_RemoveFXMaterials) == 0x000008, "Wrong alignment on BP_AcidicTouchActivate_C_RemoveFXMaterials"); \ +static_assert(sizeof(BP_AcidicTouchActivate_C_RemoveFXMaterials) == 0x000008, "Wrong size on BP_AcidicTouchActivate_C_RemoveFXMaterials"); \ +static_assert(offsetof(BP_AcidicTouchActivate_C_RemoveFXMaterials, self2) == 0x000000, "Member 'BP_AcidicTouchActivate_C_RemoveFXMaterials::self2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AcidicTouchActivate_C \ +static_assert(alignof(ABP_AcidicTouchActivate_C) == 0x000008, "Wrong alignment on ABP_AcidicTouchActivate_C"); \ +static_assert(sizeof(ABP_AcidicTouchActivate_C) == 0x000328, "Wrong size on ABP_AcidicTouchActivate_C"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, UberGraphFrame) == 0x000298, "Member 'ABP_AcidicTouchActivate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_AcidicTouchActivate_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_Dissolve_B3838E594F9D3FF059EF66B31088D88F) == 0x0002A8, "Member 'ABP_AcidicTouchActivate_C::Timeline_Dissolve_B3838E594F9D3FF059EF66B31088D88F' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline__Direction_B3838E594F9D3FF059EF66B31088D88F) == 0x0002AC, "Member 'ABP_AcidicTouchActivate_C::Timeline__Direction_B3838E594F9D3FF059EF66B31088D88F' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline) == 0x0002B0, "Member 'ABP_AcidicTouchActivate_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3_WPO_9863BE3443D73BC39022CC845204468B) == 0x0002B8, "Member 'ABP_AcidicTouchActivate_C::Timeline_3_WPO_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3_OpacMask_9863BE3443D73BC39022CC845204468B) == 0x0002BC, "Member 'ABP_AcidicTouchActivate_C::Timeline_3_OpacMask_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3_Dissolve_9863BE3443D73BC39022CC845204468B) == 0x0002C0, "Member 'ABP_AcidicTouchActivate_C::Timeline_3_Dissolve_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3_erode_9863BE3443D73BC39022CC845204468B) == 0x0002C4, "Member 'ABP_AcidicTouchActivate_C::Timeline_3_erode_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3_scale_9863BE3443D73BC39022CC845204468B) == 0x0002C8, "Member 'ABP_AcidicTouchActivate_C::Timeline_3_scale_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3__Direction_9863BE3443D73BC39022CC845204468B) == 0x0002CC, "Member 'ABP_AcidicTouchActivate_C::Timeline_3__Direction_9863BE3443D73BC39022CC845204468B' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Timeline_3) == 0x0002D0, "Member 'ABP_AcidicTouchActivate_C::Timeline_3' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, DissolveLocation) == 0x0002D8, "Member 'ABP_AcidicTouchActivate_C::DissolveLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, DissolveRadius) == 0x0002F0, "Member 'ABP_AcidicTouchActivate_C::DissolveRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Dissolve) == 0x0002F8, "Member 'ABP_AcidicTouchActivate_C::Dissolve' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, DissolveFX) == 0x000300, "Member 'ABP_AcidicTouchActivate_C::DissolveFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, TargetVFX) == 0x000308, "Member 'ABP_AcidicTouchActivate_C::TargetVFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Enemy) == 0x000310, "Member 'ABP_AcidicTouchActivate_C::Enemy' has a wrong offset!"); \ +static_assert(offsetof(ABP_AcidicTouchActivate_C, Character) == 0x000320, "Member 'ABP_AcidicTouchActivate_C::Character' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Dash_PP_C_Play \ +static_assert(alignof(CM_Dash_PP_C_Play) == 0x000008, "Wrong alignment on CM_Dash_PP_C_Play"); \ +static_assert(sizeof(CM_Dash_PP_C_Play) == 0x000018, "Wrong size on CM_Dash_PP_C_Play"); \ +static_assert(offsetof(CM_Dash_PP_C_Play, DashDir) == 0x000000, "Member 'CM_Dash_PP_C_Play::DashDir' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP \ +static_assert(alignof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP) == 0x000008, "Wrong alignment on CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP"); \ +static_assert(sizeof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP) == 0x000030, "Wrong size on CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP"); \ +static_assert(offsetof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP, EntryPoint) == 0x000000, "Member 'CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP, K2Node_CustomEvent_DashDir) == 0x000008, "Member 'CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP::K2Node_CustomEvent_DashDir' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000020, "Member 'CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000028, "Member 'CM_Dash_PP_C_ExecuteUbergraph_CM_Dash_PP::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Dash_PP_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_Dash_PP_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_Dash_PP_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_Dash_PP_C_BlueprintModifyPostProcess) == 0x000E50, "Wrong size on CM_Dash_PP_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_BreakVector_X) == 0x000E00, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_BreakVector_Y) == 0x000E08, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_BreakVector_Z) == 0x000E10, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_GetProperty_ReturnValue) == 0x000E18, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_ReturnValue) == 0x000E1C, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000E20, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000E28, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000E2C, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast_1) == 0x000E30, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000E38, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast_2) == 0x000E40, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_Dash_PP_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000E48, "Member 'CM_Dash_PP_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Dash_PP_C \ +static_assert(alignof(UCM_Dash_PP_C) == 0x000010, "Wrong alignment on UCM_Dash_PP_C"); \ +static_assert(sizeof(UCM_Dash_PP_C) == 0x0007C0, "Wrong size on UCM_Dash_PP_C"); \ +static_assert(offsetof(UCM_Dash_PP_C, UberGraphFrame) == 0x000778, "Member 'UCM_Dash_PP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_Dash_PP_C, Dash_Dir) == 0x000780, "Member 'UCM_Dash_PP_C::Dash_Dir' has a wrong offset!"); \ +static_assert(offsetof(UCM_Dash_PP_C, AlphaCurve) == 0x000798, "Member 'UCM_Dash_PP_C::AlphaCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_Dash_PP_C, FXDir) == 0x0007A0, "Member 'UCM_Dash_PP_C::FXDir' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Niagara_TimeIndepenent_C_UserConstructionScript \ +static_assert(alignof(BP_Niagara_TimeIndepenent_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_Niagara_TimeIndepenent_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Niagara_TimeIndepenent_C_UserConstructionScript) == 0x000002, "Wrong size on BP_Niagara_TimeIndepenent_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_Niagara_TimeIndepenent_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000001, "Member 'BP_Niagara_TimeIndepenent_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Niagara_TimeIndepenent_C_ReceiveTick \ +static_assert(alignof(BP_Niagara_TimeIndepenent_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_Niagara_TimeIndepenent_C_ReceiveTick"); \ +static_assert(sizeof(BP_Niagara_TimeIndepenent_C_ReceiveTick) == 0x000004, "Wrong size on BP_Niagara_TimeIndepenent_C_ReceiveTick"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_Niagara_TimeIndepenent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent \ +static_assert(alignof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent) == 0x000008, "Wrong alignment on BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent"); \ +static_assert(sizeof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent) == 0x000030, "Wrong size on BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, EntryPoint) == 0x000000, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, CallFunc_GetCurrentTimeDilation_ReturnValue) == 0x000004, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::CallFunc_GetCurrentTimeDilation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, K2Node_ComponentBoundEvent_PSystem) == 0x000008, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::K2Node_ComponentBoundEvent_PSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, K2Node_Event_DeltaSeconds) == 0x000018, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent, CallFunc_SetCustomTimeDilation_Dilation_ImplicitCast) == 0x000028, "Member 'BP_Niagara_TimeIndepenent_C_ExecuteUbergraph_BP_Niagara_TimeIndepenent::CallFunc_SetCustomTimeDilation_Dilation_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature \ +static_assert(alignof(BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature) == 0x000008, "Wrong alignment on BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature"); \ +static_assert(sizeof(BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature) == 0x000008, "Wrong size on BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature"); \ +static_assert(offsetof(BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature, PSystem) == 0x000000, "Member 'BP_Niagara_TimeIndepenent_C_BndEvt__BP_Niagara_TimeIndepenent_NiagaraComponent_K2Node_ComponentBoundEvent_0_OnNiagaraSystemFinished__DelegateSignature::PSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Niagara_TimeIndepenent_C \ +static_assert(alignof(ABP_Niagara_TimeIndepenent_C) == 0x000008, "Wrong alignment on ABP_Niagara_TimeIndepenent_C"); \ +static_assert(sizeof(ABP_Niagara_TimeIndepenent_C) == 0x0002D0, "Wrong size on ABP_Niagara_TimeIndepenent_C"); \ +static_assert(offsetof(ABP_Niagara_TimeIndepenent_C, UberGraphFrame) == 0x0002A8, "Member 'ABP_Niagara_TimeIndepenent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Niagara_TimeIndepenent_C, AutoDestroy) == 0x0002B0, "Member 'ABP_Niagara_TimeIndepenent_C::AutoDestroy' has a wrong offset!"); \ +static_assert(offsetof(ABP_Niagara_TimeIndepenent_C, System) == 0x0002B8, "Member 'ABP_Niagara_TimeIndepenent_C::System' has a wrong offset!"); \ +static_assert(offsetof(ABP_Niagara_TimeIndepenent_C, AutoAttachComponent) == 0x0002C0, "Member 'ABP_Niagara_TimeIndepenent_C::AutoAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Niagara_TimeIndepenent_C, SocketName) == 0x0002C8, "Member 'ABP_Niagara_TimeIndepenent_C::SocketName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03 \ +static_assert(alignof(BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03) == 0x000004, "Wrong alignment on BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03"); \ +static_assert(sizeof(BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03) == 0x000004, "Wrong size on BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03"); \ +static_assert(offsetof(BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03, EntryPoint) == 0x000000, "Member 'BP_lightutility_torch_03_C_ExecuteUbergraph_BP_lightutility_torch_03::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_torch_03_C \ +static_assert(alignof(ABP_lightutility_torch_03_C) == 0x000008, "Wrong alignment on ABP_lightutility_torch_03_C"); \ +static_assert(sizeof(ABP_lightutility_torch_03_C) == 0x0007B8, "Wrong size on ABP_lightutility_torch_03_C"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, UberGraphFrame_BP_lightutility_torch_03_C) == 0x000788, "Member 'ABP_lightutility_torch_03_C::UberGraphFrame_BP_lightutility_torch_03_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, SpotLight___Main1) == 0x000790, "Member 'ABP_lightutility_torch_03_C::SpotLight___Main1' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, SpotLight___Main) == 0x000798, "Member 'ABP_lightutility_torch_03_C::SpotLight___Main' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, SM_EmissiveSphere) == 0x0007A0, "Member 'ABP_lightutility_torch_03_C::SM_EmissiveSphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, SM_Flashlight_01) == 0x0007A8, "Member 'ABP_lightutility_torch_03_C::SM_Flashlight_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_torch_03_C, PointLight___Bounce) == 0x0007B0, "Member 'ABP_lightutility_torch_03_C::PointLight___Bounce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueRight_Controller_C \ +static_assert(alignof(UDialogueRight_Controller_C) == 0x000010, "Wrong alignment on UDialogueRight_Controller_C"); \ +static_assert(sizeof(UDialogueRight_Controller_C) == 0x0007B0, "Wrong size on UDialogueRight_Controller_C"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11 \ +static_assert(alignof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11) == 0x0000B0, "Wrong size on WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11, Payload) == 0x000000, "Member 'WBP_ConsumablesHUDWidgetMK_C_EventReceived_1E6CAC5E463152FF9D588190C68D7E11::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A \ +static_assert(alignof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A) == 0x0000B0, "Wrong size on WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A, Payload) == 0x000000, "Member 'WBP_ConsumablesHUDWidgetMK_C_EventReceived_A688D79F44353C88DAB0468B26AA1D0A::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK \ +static_assert(alignof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK) == 0x000448, "Wrong size on WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, EntryPoint) == 0x000000, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CustomEvent_Payload) == 0x000008, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_struct_Variable) == 0x0000B8, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_byte_Variable) == 0x000168, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_byte_Variable_1) == 0x000169, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_byte_Variable_2) == 0x00016A, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_byte_Variable_3) == 0x00016B, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_bool_Variable) == 0x00016C, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CreateDelegate_OutputDelegate) == 0x000170, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CreateDelegate_OutputDelegate_1) == 0x000180, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetPlayerPawn_ReturnValue) == 0x000190, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000198, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001A0, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_IsValid_ReturnValue) == 0x0001B0, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x0001B8, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_IsValid_ReturnValue_1) == 0x0001C0, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_PlayAnimation_ReturnValue) == 0x0001C8, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_PlayAnimation_ReturnValue_1) == 0x0001D0, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetPlayerController_ReturnValue) == 0x0001D8, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0001E0, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_bSuccess) == 0x0001E8, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001EC, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_Value) == 0x000200, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_ReturnValue) == 0x000208, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_Value_1) == 0x000210, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_ReturnValue_1) == 0x000218, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetProperty_ReturnValue) == 0x00021C, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetProperty_ReturnValue_1) == 0x000220, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Greater_IntInt_ReturnValue) == 0x000224, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000225, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000228, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x000230, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_Value_2) == 0x000238, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_ReturnValue_2) == 0x000240, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_Value_3) == 0x000248, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Map_Find_ReturnValue_3) == 0x000250, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetProperty_ReturnValue_2) == 0x000254, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetProperty_ReturnValue_3) == 0x000258, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Greater_IntInt_ReturnValue_2) == 0x00025C, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Greater_IntInt_ReturnValue_3) == 0x00025D, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Greater_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Conv_BoolToDouble_ReturnValue_2) == 0x000260, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Conv_BoolToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_Conv_BoolToDouble_ReturnValue_3) == 0x000268, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_Conv_BoolToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, Temp_struct_Variable_1) == 0x000270, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_IsPlayerFabien_Return) == 0x000320, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000328, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000330, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_bSuccess_1) == 0x000340, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000341, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000348, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000350, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_CustomEvent_Payload_1) == 0x000358, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_IsValid_ReturnValue_2) == 0x000408, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_IsPlayerFabien_Return_1) == 0x000409, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetHud_ReturnValue) == 0x000410, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_GetHUDWidget_ReturnValue) == 0x000418, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_AsWBP_Main_HUD_VS) == 0x000420, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_AsWBP_Main_HUD_VS' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, K2Node_DynamicCast_bSuccess_2) == 0x000428, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast) == 0x00042C, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_1) == 0x000430, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_2) == 0x000434, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_3) == 0x000438, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_4) == 0x00043C, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_5) == 0x000440, "Member 'WBP_ConsumablesHUDWidgetMK_C_ExecuteUbergraph_WBP_ConsumablesHUDWidgetMK::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidgetMK_C_InitSlots \ +static_assert(alignof(WBP_ConsumablesHUDWidgetMK_C_InitSlots) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidgetMK_C_InitSlots"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidgetMK_C_InitSlots) == 0x000048, "Wrong size on WBP_ConsumablesHUDWidgetMK_C_InitSlots"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, CallFunc_GetAllChildren_ReturnValue) == 0x000010, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, K2Node_DynamicCast_AsWrestler_Consumables_HUDSlot_Widget) == 0x000038, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::K2Node_DynamicCast_AsWrestler_Consumables_HUDSlot_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_InitSlots, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_ConsumablesHUDWidgetMK_C_InitSlots::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien \ +static_assert(alignof(WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien) == 0x000001, "Wrong alignment on WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien) == 0x000001, "Wrong size on WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien, InVisibility) == 0x000000, "Member 'WBP_ConsumablesHUDWidgetMK_C_UpdateSlotsFabien::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConsumablesHUDWidgetMK_C \ +static_assert(alignof(UWBP_ConsumablesHUDWidgetMK_C) == 0x000008, "Wrong alignment on UWBP_ConsumablesHUDWidgetMK_C"); \ +static_assert(sizeof(UWBP_ConsumablesHUDWidgetMK_C) == 0x0003E8, "Wrong size on UWBP_ConsumablesHUDWidgetMK_C"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, UberGraphFrame) == 0x000338, "Member 'UWBP_ConsumablesHUDWidgetMK_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, Hide) == 0x000340, "Member 'UWBP_ConsumablesHUDWidgetMK_C::Hide' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, Bg_Brujah) == 0x000348, "Member 'UWBP_ConsumablesHUDWidgetMK_C::Bg_Brujah' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, Bg_Ventrue) == 0x000350, "Member 'UWBP_ConsumablesHUDWidgetMK_C::Bg_Ventrue' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, BloodSlot) == 0x000358, "Member 'UWBP_ConsumablesHUDWidgetMK_C::BloodSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, BloodSlot_Fabien) == 0x000360, "Member 'UWBP_ConsumablesHUDWidgetMK_C::BloodSlot_Fabien' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, Box) == 0x000368, "Member 'UWBP_ConsumablesHUDWidgetMK_C::Box' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, BrujahSlot) == 0x000370, "Member 'UWBP_ConsumablesHUDWidgetMK_C::BrujahSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, ButtonBox) == 0x000378, "Member 'UWBP_ConsumablesHUDWidgetMK_C::ButtonBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, HealthSlot) == 0x000380, "Member 'UWBP_ConsumablesHUDWidgetMK_C::HealthSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMBloodAction) == 0x000388, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMBloodAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMBrujahAction) == 0x000390, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMBrujahAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMButton01) == 0x000398, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMButton01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMButton02) == 0x0003A0, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMButton02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMButton03) == 0x0003A8, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMButton03' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMButton04) == 0x0003B0, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMButton04' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMHealthAction) == 0x0003B8, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMHealthAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, KMVentureAction) == 0x0003C0, "Member 'UWBP_ConsumablesHUDWidgetMK_C::KMVentureAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, SlotSwitcher1) == 0x0003C8, "Member 'UWBP_ConsumablesHUDWidgetMK_C::SlotSwitcher1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, SlotSwitcher2) == 0x0003D0, "Member 'UWBP_ConsumablesHUDWidgetMK_C::SlotSwitcher2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, TelekinesisSlot) == 0x0003D8, "Member 'UWBP_ConsumablesHUDWidgetMK_C::TelekinesisSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidgetMK_C, VentrueSlot) == 0x0003E0, "Member 'UWBP_ConsumablesHUDWidgetMK_C::VentrueSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_DebugPrint \ +static_assert(alignof(WBP_DialogueText_C_DebugPrint) == 0x000008, "Wrong alignment on WBP_DialogueText_C_DebugPrint"); \ +static_assert(sizeof(WBP_DialogueText_C_DebugPrint) == 0x000020, "Wrong size on WBP_DialogueText_C_DebugPrint"); \ +static_assert(offsetof(WBP_DialogueText_C_DebugPrint, Container) == 0x000000, "Member 'WBP_DialogueText_C_DebugPrint::Container' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_DebugPrint, Content) == 0x000010, "Member 'WBP_DialogueText_C_DebugPrint::Content' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText \ +static_assert(alignof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText) == 0x000008, "Wrong alignment on WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText"); \ +static_assert(sizeof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText) == 0x0001F0, "Wrong size on WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, EntryPoint) == 0x000000, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_MakeStruct_Margin) == 0x000004, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_MakeStruct_Margin' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_StoryText) == 0x000018, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_StoryText' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_TotalTime) == 0x000028, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_TotalTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_GetDesiredSize_ReturnValue) == 0x000030, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_GetDesiredSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_BreakVector2D_X) == 0x000040, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_BreakVector2D_Y) == 0x000048, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Conv_StringToText_ReturnValue) == 0x000050, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_ContainerSize) == 0x000068, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_ContainerSize' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_withReset) == 0x000078, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_withReset' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_BreakVector2D_X_1) == 0x000080, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_BreakVector2D_Y_1) == 0x000088, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000090, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_Container) == 0x000098, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_Container' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CustomEvent_Content) == 0x0000A8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CustomEvent_Content' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Conv_Vector2dToString_ReturnValue) == 0x0000B8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Conv_Vector2dToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Conv_Vector2dToString_ReturnValue_1) == 0x0000C8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Conv_Vector2dToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue) == 0x0000D8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000E8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000F8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000108, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_GetFloatValue_ReturnValue) == 0x000110, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000114, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000115, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000118, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_CreateDelegate_OutputDelegate) == 0x000120, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_MakeStruct_Margin_1) == 0x000130, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_MakeStruct_Margin_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_MakeStruct_Margin_2) == 0x000140, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_MakeStruct_Margin_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Abs_ReturnValue) == 0x000150, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000158, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000160, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000168, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000178, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000180, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000190, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0001A0, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Conv_DoubleToString_ReturnValue_1) == 0x0001A8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Conv_DoubleToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0001B8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0001C8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0001D0, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_K2_SetTimerDelegate_Time_ImplicitCast) == 0x0001D4, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_K2_SetTimerDelegate_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x0001D8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001E0, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, K2Node_MakeStruct_Top_ImplicitCast) == 0x0001E8, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::K2Node_MakeStruct_Top_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText, CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast) == 0x0001EC, "Member 'WBP_DialogueText_C_ExecuteUbergraph_WBP_DialogueText::CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_GetTextBlock \ +static_assert(alignof(WBP_DialogueText_C_GetTextBlock) == 0x000008, "Wrong alignment on WBP_DialogueText_C_GetTextBlock"); \ +static_assert(sizeof(WBP_DialogueText_C_GetTextBlock) == 0x000008, "Wrong size on WBP_DialogueText_C_GetTextBlock"); \ +static_assert(offsetof(WBP_DialogueText_C_GetTextBlock, NewParam) == 0x000000, "Member 'WBP_DialogueText_C_GetTextBlock::NewParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_ScrollStoryText \ +static_assert(alignof(WBP_DialogueText_C_ScrollStoryText) == 0x000008, "Wrong alignment on WBP_DialogueText_C_ScrollStoryText"); \ +static_assert(sizeof(WBP_DialogueText_C_ScrollStoryText) == 0x000018, "Wrong size on WBP_DialogueText_C_ScrollStoryText"); \ +static_assert(offsetof(WBP_DialogueText_C_ScrollStoryText, ContainerSize) == 0x000000, "Member 'WBP_DialogueText_C_ScrollStoryText::ContainerSize' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_ScrollStoryText, withReset) == 0x000010, "Member 'WBP_DialogueText_C_ScrollStoryText::withReset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_SetDialogueTextStyle \ +static_assert(alignof(WBP_DialogueText_C_SetDialogueTextStyle) == 0x000008, "Wrong alignment on WBP_DialogueText_C_SetDialogueTextStyle"); \ +static_assert(sizeof(WBP_DialogueText_C_SetDialogueTextStyle) == 0x000070, "Wrong size on WBP_DialogueText_C_SetDialogueTextStyle"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, Selection) == 0x000000, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::Selection' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, alpha) == 0x000008, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::alpha' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, Brush) == 0x000010, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::Brush' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetSubtitleStyle_ReturnValue) == 0x000018, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetSubtitleStyle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, K2Node_MakeStruct_LinearColor) == 0x000020, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::K2Node_MakeStruct_LinearColor' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetObjectClass_ReturnValue) == 0x000038, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, K2Node_SwitchInteger_CmpSuccess) == 0x000040, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetSubtitleStyle_ReturnValue_1) == 0x000048, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetSubtitleStyle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetSubtitleStyle_ReturnValue_2) == 0x000050, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetSubtitleStyle_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetObjectClass_ReturnValue_1) == 0x000058, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_GetObjectClass_ReturnValue_2) == 0x000060, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_GetObjectClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_IsValid_ReturnValue_1) == 0x000068, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, CallFunc_IsValid_ReturnValue_2) == 0x000069, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetDialogueTextStyle, K2Node_MakeStruct_A_ImplicitCast) == 0x00006C, "Member 'WBP_DialogueText_C_SetDialogueTextStyle::K2Node_MakeStruct_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueText_C_SetStoryText \ +static_assert(alignof(WBP_DialogueText_C_SetStoryText) == 0x000008, "Wrong alignment on WBP_DialogueText_C_SetStoryText"); \ +static_assert(sizeof(WBP_DialogueText_C_SetStoryText) == 0x000018, "Wrong size on WBP_DialogueText_C_SetStoryText"); \ +static_assert(offsetof(WBP_DialogueText_C_SetStoryText, StoryText) == 0x000000, "Member 'WBP_DialogueText_C_SetStoryText::StoryText' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueText_C_SetStoryText, TotalTime) == 0x000010, "Member 'WBP_DialogueText_C_SetStoryText::TotalTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DialogueText_C \ +static_assert(alignof(UWBP_DialogueText_C) == 0x000008, "Wrong alignment on UWBP_DialogueText_C"); \ +static_assert(sizeof(UWBP_DialogueText_C) == 0x000318, "Wrong size on UWBP_DialogueText_C"); \ +static_assert(offsetof(UWBP_DialogueText_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_DialogueText_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, Border) == 0x0002C8, "Member 'UWBP_DialogueText_C::Border' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, DialogueText) == 0x0002D0, "Member 'UWBP_DialogueText_C::DialogueText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, SizeBox) == 0x0002D8, "Member 'UWBP_DialogueText_C::SizeBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, TopScrollAmount) == 0x0002E0, "Member 'UWBP_DialogueText_C::TopScrollAmount' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, ScrollCurve) == 0x0002E8, "Member 'UWBP_DialogueText_C::ScrollCurve' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, ScrollTimeDelta) == 0x0002F0, "Member 'UWBP_DialogueText_C::ScrollTimeDelta' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, ScrollTimer) == 0x0002F8, "Member 'UWBP_DialogueText_C::ScrollTimer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, ScrollTimeElapsed) == 0x000300, "Member 'UWBP_DialogueText_C::ScrollTimeElapsed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, Total_Time) == 0x000308, "Member 'UWBP_DialogueText_C::Total_Time' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueText_C, ScrollFactor) == 0x000310, "Member 'UWBP_DialogueText_C::ScrollFactor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Telekinesis_Cooldown_C \ +static_assert(alignof(UGE_Telekinesis_Cooldown_C) == 0x000008, "Wrong alignment on UGE_Telekinesis_Cooldown_C"); \ +static_assert(sizeof(UGE_Telekinesis_Cooldown_C) == 0x000A70, "Wrong size on UGE_Telekinesis_Cooldown_C"); \ + +#define DUMPER7_ASSERTS_GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth \ +static_assert(alignof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth) == 0x000008, "Wrong alignment on GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth"); \ +static_assert(sizeof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth) == 0x000220, "Wrong size on GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, EntryPoint) == 0x000000, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, Temp_int_Variable) == 0x000004, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, Temp_byte_Variable) == 0x000008, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000010, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0000E8, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_K2_CommitAbility_ReturnValue) == 0x0000F0, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_GetPlayerState_ReturnValue) == 0x0000F8, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000100, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_IsPlayerFabien_Return) == 0x000109, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x000110, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0001E8, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0001F0, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000210, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_IsPlayerFabien_Return_1) == 0x000211, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, Temp_byte_Variable_1) == 0x000212, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_GetProperty_ReturnValue) == 0x000214, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_Add_IntInt_ReturnValue) == 0x000218, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, Temp_bool_Variable) == 0x00021C, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, K2Node_Select_Default) == 0x00021D, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth, CallFunc_UpdateConsumable_ReturnValue) == 0x00021E, "Member 'GA_ElixirHealth_C_ExecuteUbergraph_GA_ElixirHealth::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirHealth_C_BelowMaxHealth \ +static_assert(alignof(GA_ElixirHealth_C_BelowMaxHealth) == 0x000008, "Wrong alignment on GA_ElixirHealth_C_BelowMaxHealth"); \ +static_assert(sizeof(GA_ElixirHealth_C_BelowMaxHealth) == 0x000038, "Wrong size on GA_ElixirHealth_C_BelowMaxHealth"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, ReturnValue) == 0x000000, "Member 'GA_ElixirHealth_C_BelowMaxHealth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000010, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x000014, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1) == 0x000018, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1) == 0x00001C, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_BooleanAND_ReturnValue) == 0x000020, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000021, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_BooleanAND_ReturnValue_1) == 0x000022, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000028, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000030, "Member 'GA_ElixirHealth_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirHealth_C_IsNotKeyboardTargeting \ +static_assert(alignof(GA_ElixirHealth_C_IsNotKeyboardTargeting) == 0x000008, "Wrong alignment on GA_ElixirHealth_C_IsNotKeyboardTargeting"); \ +static_assert(sizeof(GA_ElixirHealth_C_IsNotKeyboardTargeting) == 0x000040, "Wrong size on GA_ElixirHealth_C_IsNotKeyboardTargeting"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, ReturnValue) == 0x000000, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_GetPlayerController_ReturnValue) == 0x000010, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000030, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_IsInputMethodActive_ReturnValue) == 0x000038, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_BooleanAND_ReturnValue) == 0x000039, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_IsNotKeyboardTargeting, CallFunc_Not_PreBool_ReturnValue) == 0x00003A, "Member 'GA_ElixirHealth_C_IsNotKeyboardTargeting::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirHealth_C_K2_CanActivateAbility \ +static_assert(alignof(GA_ElixirHealth_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_ElixirHealth_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_ElixirHealth_C_K2_CanActivateAbility) == 0x000188, "Wrong size on GA_ElixirHealth_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, Temp_byte_Variable) == 0x000071, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_RelevantTags) == 0x000078, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_ReturnValue) == 0x000098, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0000A0, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_IsNotKeyboardTargeting_ReturnValue) == 0x0000A8, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_IsNotKeyboardTargeting_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000B0, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000C0, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, Temp_byte_Variable_1) == 0x0000C1, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x0000C2, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetPlayerState_ReturnValue) == 0x0000C8, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D0, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x0000D8, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000E0, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000E8, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000F8, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_IsPlayerFabien_Return) == 0x0000F9, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Map_Find_Value) == 0x000100, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Map_Find_ReturnValue) == 0x000108, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetProperty_ReturnValue) == 0x00010C, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BelowMaxHealth_ReturnValue) == 0x000110, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BelowMaxHealth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Greater_IntInt_ReturnValue) == 0x000111, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000118, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000120, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000128, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000138, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000139, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetPlayerController_ReturnValue) == 0x000140, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000148, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetPlayerState_ReturnValue_1) == 0x000150, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetPlayerState_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_IsInputMethodActive_ReturnValue) == 0x000158, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game_1) == 0x000160, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess_1) == 0x000168, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x000169, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x00016A, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Map_Find_Value_1) == 0x000170, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Map_Find_ReturnValue_1) == 0x000178, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_GetProperty_ReturnValue_1) == 0x00017C, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000180, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_3) == 0x000181, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_4) == 0x000182, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirHealth_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_5) == 0x000183, "Member 'GA_ElixirHealth_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_ElixirHealth_C \ +static_assert(alignof(UGA_ElixirHealth_C) == 0x000008, "Wrong alignment on UGA_ElixirHealth_C"); \ +static_assert(sizeof(UGA_ElixirHealth_C) == 0x000688, "Wrong size on UGA_ElixirHealth_C"); \ +static_assert(offsetof(UGA_ElixirHealth_C, UberGraphFrame) == 0x000668, "Member 'UGA_ElixirHealth_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirHealth_C, Gameplay_Cue_Tag) == 0x000670, "Member 'UGA_ElixirHealth_C::Gameplay_Cue_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirHealth_C, Gameplay_Cue_Tag_Fabien) == 0x000678, "Member 'UGA_ElixirHealth_C::Gameplay_Cue_Tag_Fabien' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirHealth_C, HealthCounter) == 0x000680, "Member 'UGA_ElixirHealth_C::HealthCounter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify) == 0x000028, "Wrong size on AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify, Temp_delegate_Variable) == 0x000018, "Member 'AN_Audio_SwitchPostEvent_C_OnCharacterAudioNotify::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_SwitchPostEvent_C \ +static_assert(alignof(UAN_Audio_SwitchPostEvent_C) == 0x000008, "Wrong alignment on UAN_Audio_SwitchPostEvent_C"); \ +static_assert(sizeof(UAN_Audio_SwitchPostEvent_C) == 0x000058, "Wrong size on UAN_Audio_SwitchPostEvent_C"); \ +static_assert(offsetof(UAN_Audio_SwitchPostEvent_C, SWITCH) == 0x000050, "Member 'UAN_Audio_SwitchPostEvent_C::SWITCH' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PointLight_Dialogue_Fill_C \ +static_assert(alignof(ABP_PointLight_Dialogue_Fill_C) == 0x000008, "Wrong alignment on ABP_PointLight_Dialogue_Fill_C"); \ +static_assert(sizeof(ABP_PointLight_Dialogue_Fill_C) == 0x0002B0, "Wrong size on ABP_PointLight_Dialogue_Fill_C"); \ + +#define DUMPER7_ASSERTS_UDialogButton_PC_C \ +static_assert(alignof(UDialogButton_PC_C) == 0x000010, "Wrong alignment on UDialogButton_PC_C"); \ +static_assert(sizeof(UDialogButton_PC_C) == 0x0007B0, "Wrong size on UDialogButton_PC_C"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_AudioSelect \ +static_assert(alignof(WBP_DialogueButton_C_AudioSelect) == 0x000004, "Wrong alignment on WBP_DialogueButton_C_AudioSelect"); \ +static_assert(sizeof(WBP_DialogueButton_C_AudioSelect) == 0x000048, "Wrong size on WBP_DialogueButton_C_AudioSelect"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, Choice_Index) == 0x000000, "Member 'WBP_DialogueButton_C_AudioSelect::Choice_Index' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, Temp_delegate_Variable) == 0x000004, "Member 'WBP_DialogueButton_C_AudioSelect::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, K2Node_SwitchInteger_CmpSuccess) == 0x000014, "Member 'WBP_DialogueButton_C_AudioSelect::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, Temp_delegate_Variable_1) == 0x000018, "Member 'WBP_DialogueButton_C_AudioSelect::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, Temp_delegate_Variable_2) == 0x000028, "Member 'WBP_DialogueButton_C_AudioSelect::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_AudioSelect, Temp_delegate_Variable_3) == 0x000038, "Member 'WBP_DialogueButton_C_AudioSelect::Temp_delegate_Variable_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton \ +static_assert(alignof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton) == 0x000008, "Wrong alignment on WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton"); \ +static_assert(sizeof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton) == 0x0000B0, "Wrong size on WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, EntryPoint) == 0x000000, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000008, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_GetCurrentInputType_ReturnValue) == 0x000020, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_GetChoiceIndex_ReturnValue) == 0x000024, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_GetChoiceIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_GetChoiceIndex_ReturnValue_1) == 0x000028, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_GetChoiceIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_MakeStruct_SlateColor) == 0x00002C, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_MakeStruct_SlateColor' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_Event_IsDesignTime) == 0x000040, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_GetText_ReturnValue) == 0x000048, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_SlotAsGridSlot_ReturnValue) == 0x000060, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_SlotAsGridSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_SlotAsGridSlot_ReturnValue_1) == 0x000068, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_SlotAsGridSlot_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, CallFunc_SlotAsGridSlot_ReturnValue_2) == 0x000070, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::CallFunc_SlotAsGridSlot_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_MakeStruct_SlateColor_1) == 0x000078, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_MakeStruct_SlateColor_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_CustomEvent_Button) == 0x000090, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_CustomEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton, K2Node_MakeStruct_SlateColor_2) == 0x000098, "Member 'WBP_DialogueButton_C_ExecuteUbergraph_WBP_DialogueButton::K2Node_MakeStruct_SlateColor_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_OnButtonClickedCallback_Event \ +static_assert(alignof(WBP_DialogueButton_C_OnButtonClickedCallback_Event) == 0x000008, "Wrong alignment on WBP_DialogueButton_C_OnButtonClickedCallback_Event"); \ +static_assert(sizeof(WBP_DialogueButton_C_OnButtonClickedCallback_Event) == 0x000008, "Wrong size on WBP_DialogueButton_C_OnButtonClickedCallback_Event"); \ +static_assert(offsetof(WBP_DialogueButton_C_OnButtonClickedCallback_Event, Button_0) == 0x000000, "Member 'WBP_DialogueButton_C_OnButtonClickedCallback_Event::Button_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_OnPressedIcon \ +static_assert(alignof(WBP_DialogueButton_C_OnPressedIcon) == 0x000004, "Wrong alignment on WBP_DialogueButton_C_OnPressedIcon"); \ +static_assert(sizeof(WBP_DialogueButton_C_OnPressedIcon) == 0x00000C, "Wrong size on WBP_DialogueButton_C_OnPressedIcon"); \ +static_assert(offsetof(WBP_DialogueButton_C_OnPressedIcon, IsGamepad) == 0x000000, "Member 'WBP_DialogueButton_C_OnPressedIcon::IsGamepad' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_OnPressedIcon, ChoiceIndex) == 0x000004, "Member 'WBP_DialogueButton_C_OnPressedIcon::ChoiceIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_DialogueButton_C_OnPressedIcon, K2Node_SwitchInteger_CmpSuccess) == 0x000008, "Member 'WBP_DialogueButton_C_OnPressedIcon::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_PlayControllerAnim \ +static_assert(alignof(WBP_DialogueButton_C_PlayControllerAnim) == 0x000008, "Wrong alignment on WBP_DialogueButton_C_PlayControllerAnim"); \ +static_assert(sizeof(WBP_DialogueButton_C_PlayControllerAnim) == 0x000008, "Wrong size on WBP_DialogueButton_C_PlayControllerAnim"); \ +static_assert(offsetof(WBP_DialogueButton_C_PlayControllerAnim, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_DialogueButton_C_PlayControllerAnim::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_PlayKBMAnim \ +static_assert(alignof(WBP_DialogueButton_C_PlayKBMAnim) == 0x000008, "Wrong alignment on WBP_DialogueButton_C_PlayKBMAnim"); \ +static_assert(sizeof(WBP_DialogueButton_C_PlayKBMAnim) == 0x000008, "Wrong size on WBP_DialogueButton_C_PlayKBMAnim"); \ +static_assert(offsetof(WBP_DialogueButton_C_PlayKBMAnim, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_DialogueButton_C_PlayKBMAnim::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_PreConstruct \ +static_assert(alignof(WBP_DialogueButton_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_DialogueButton_C_PreConstruct"); \ +static_assert(sizeof(WBP_DialogueButton_C_PreConstruct) == 0x000001, "Wrong size on WBP_DialogueButton_C_PreConstruct"); \ +static_assert(offsetof(WBP_DialogueButton_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_DialogueButton_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DialogueButton_C_SetArrowIcon \ +static_assert(alignof(WBP_DialogueButton_C_SetArrowIcon) == 0x000008, "Wrong alignment on WBP_DialogueButton_C_SetArrowIcon"); \ +static_assert(sizeof(WBP_DialogueButton_C_SetArrowIcon) == 0x000008, "Wrong size on WBP_DialogueButton_C_SetArrowIcon"); \ +static_assert(offsetof(WBP_DialogueButton_C_SetArrowIcon, InTexture) == 0x000000, "Member 'WBP_DialogueButton_C_SetArrowIcon::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DialogueButton_C \ +static_assert(alignof(UWBP_DialogueButton_C) == 0x000010, "Wrong alignment on UWBP_DialogueButton_C"); \ +static_assert(sizeof(UWBP_DialogueButton_C) == 0x001500, "Wrong size on UWBP_DialogueButton_C"); \ +static_assert(offsetof(UWBP_DialogueButton_C, UberGraphFrame) == 0x001460, "Member 'UWBP_DialogueButton_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, OnControllerPressedAnim) == 0x001468, "Member 'UWBP_DialogueButton_C::OnControllerPressedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, OnKBMPressedAnim) == 0x001470, "Member 'UWBP_DialogueButton_C::OnKBMPressedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, ArrowIcon) == 0x001478, "Member 'UWBP_DialogueButton_C::ArrowIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, Image_141) == 0x001480, "Member 'UWBP_DialogueButton_C::Image_141' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, Selection) == 0x001488, "Member 'UWBP_DialogueButton_C::Selection' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, SelectionIcon) == 0x001490, "Member 'UWBP_DialogueButton_C::SelectionIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, Text) == 0x001498, "Member 'UWBP_DialogueButton_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, TextGrid) == 0x0014A0, "Member 'UWBP_DialogueButton_C::TextGrid' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, Label) == 0x0014A8, "Member 'UWBP_DialogueButton_C::Label' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, ArrowIconTexture) == 0x0014C0, "Member 'UWBP_DialogueButton_C::ArrowIconTexture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, TextBoxHorzAlignment) == 0x0014C8, "Member 'UWBP_DialogueButton_C::TextBoxHorzAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, DialogIconColumn) == 0x0014CC, "Member 'UWBP_DialogueButton_C::DialogIconColumn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, TextColumn) == 0x0014D0, "Member 'UWBP_DialogueButton_C::TextColumn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, TextPadding) == 0x0014D4, "Member 'UWBP_DialogueButton_C::TextPadding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DialogueButton_C, TextGridPadding) == 0x0014E4, "Member 'UWBP_DialogueButton_C::TextGridPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_SetFocuseVisuals \ +static_assert(alignof(W_SettingsListEntry_Input_C_SetFocuseVisuals) == 0x000001, "Wrong alignment on W_SettingsListEntry_Input_C_SetFocuseVisuals"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_SetFocuseVisuals) == 0x000001, "Wrong size on W_SettingsListEntry_Input_C_SetFocuseVisuals"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_SetFocuseVisuals, CallFunc_IsRemappable_ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Input_C_SetFocuseVisuals::CallFunc_IsRemappable_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnValueChanged_1 \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnValueChanged_1) == 0x000004, "Wrong alignment on W_SettingsListEntry_Input_C_OnValueChanged_1"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnValueChanged_1) == 0x000004, "Wrong size on W_SettingsListEntry_Input_C_OnValueChanged_1"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnValueChanged_1, InValue) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnValueChanged_1::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnRemovedFromFocusPath \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnRemovedFromFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Input_C_OnRemovedFromFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnRemovedFromFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Input_C_OnRemovedFromFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnRemovedFromFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnRemovedFromFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnMouseLeave \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnMouseLeave) == 0x000008, "Wrong alignment on W_SettingsListEntry_Input_C_OnMouseLeave"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnMouseLeave) == 0x000078, "Wrong size on W_SettingsListEntry_Input_C_OnMouseLeave"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnMouseLeave, MouseEvent) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnMouseEnter \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnMouseEnter) == 0x000008, "Wrong alignment on W_SettingsListEntry_Input_C_OnMouseEnter"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnMouseEnter) == 0x0000B0, "Wrong size on W_SettingsListEntry_Input_C_OnMouseEnter"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'W_SettingsListEntry_Input_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnInputChanged \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnInputChanged) == 0x000001, "Wrong alignment on W_SettingsListEntry_Input_C_OnInputChanged"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnInputChanged) == 0x000001, "Wrong size on W_SettingsListEntry_Input_C_OnInputChanged"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnFocusReceived \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnFocusReceived) == 0x000008, "Wrong alignment on W_SettingsListEntry_Input_C_OnFocusReceived"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnFocusReceived) == 0x0001B0, "Wrong size on W_SettingsListEntry_Input_C_OnFocusReceived"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'W_SettingsListEntry_Input_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Input_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'W_SettingsListEntry_Input_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnDefaultValueChanged_1 \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnDefaultValueChanged_1) == 0x000004, "Wrong alignment on W_SettingsListEntry_Input_C_OnDefaultValueChanged_1"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnDefaultValueChanged_1) == 0x000004, "Wrong size on W_SettingsListEntry_Input_C_OnDefaultValueChanged_1"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnDefaultValueChanged_1, InDefaultValue) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnDefaultValueChanged_1::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_OnAddedToFocusPath \ +static_assert(alignof(W_SettingsListEntry_Input_C_OnAddedToFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Input_C_OnAddedToFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_OnAddedToFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Input_C_OnAddedToFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Input_C_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Input_C_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input \ +static_assert(alignof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input) == 0x000008, "Wrong alignment on W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input"); \ +static_assert(sizeof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input) == 0x000198, "Wrong size on W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, EntryPoint) == 0x000000, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_MyGeometry) == 0x000008, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_MouseEvent_1) == 0x000040, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_MouseEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, Temp_delegate_Variable) == 0x0000B8, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_MouseEvent) == 0x0000C8, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_CreateDelegate_OutputDelegate) == 0x000140, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_InValue) == 0x000150, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_InValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_InDefaultValue) == 0x000154, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_InDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000158, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_BooleanAND_ReturnValue) == 0x000159, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_Create_ReturnValue) == 0x000160, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_InCurrentInputType) == 0x000168, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_SwitchEnum_CmpSuccess) == 0x000169, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_InFocusEvent_1) == 0x00016C, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_InFocusEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_Event_InFocusEvent) == 0x000174, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_Event_InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_IsRemappable_ReturnValue) == 0x00017C, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_IsRemappable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_IsPlatformPC_ReturnValue) == 0x00017D, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_IsPlatformPC_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_VariableSet_PreviousValue_ImplicitCast) == 0x000180, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_VariableSet_PreviousValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, CallFunc_NotEqual_DoubleDouble_A_ImplicitCast) == 0x000188, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::CallFunc_NotEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input, K2Node_VariableSet_DefaultValue_ImplicitCast) == 0x000190, "Member 'W_SettingsListEntry_Input_C_ExecuteUbergraph_W_SettingsListEntry_Input::K2Node_VariableSet_DefaultValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Input_C \ +static_assert(alignof(UW_SettingsListEntry_Input_C) == 0x000010, "Wrong alignment on UW_SettingsListEntry_Input_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Input_C) == 0x000520, "Wrong size on UW_SettingsListEntry_Input_C"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, UberGraphFrame) == 0x000450, "Member 'UW_SettingsListEntry_Input_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, FocusBar) == 0x000458, "Member 'UW_SettingsListEntry_Input_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, FocusBorder) == 0x000460, "Member 'UW_SettingsListEntry_Input_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, FocusOffsetLine) == 0x000468, "Member 'UW_SettingsListEntry_Input_C::FocusOffsetLine' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, PreviousValue) == 0x000470, "Member 'UW_SettingsListEntry_Input_C::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, DefaultValue) == 0x000478, "Member 'UW_SettingsListEntry_Input_C::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, HoverEvent) == 0x000480, "Member 'UW_SettingsListEntry_Input_C::HoverEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, DefaultEvent) == 0x000488, "Member 'UW_SettingsListEntry_Input_C::DefaultEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, MinEvent) == 0x000490, "Member 'UW_SettingsListEntry_Input_C::MinEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, MaxEvent) == 0x000498, "Member 'UW_SettingsListEntry_Input_C::MaxEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, IncreaseEvent) == 0x0004A0, "Member 'UW_SettingsListEntry_Input_C::IncreaseEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, DecreaseEvent) == 0x0004A8, "Member 'UW_SettingsListEntry_Input_C::DecreaseEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, SliderRTPC) == 0x0004B0, "Member 'UW_SettingsListEntry_Input_C::SliderRTPC' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, PreviewLoopsPlayEvents) == 0x0004B8, "Member 'UW_SettingsListEntry_Input_C::PreviewLoopsPlayEvents' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, PreviewLoopsStopEvent) == 0x000508, "Member 'UW_SettingsListEntry_Input_C::PreviewLoopsStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, IsPlayingFocusAudio) == 0x000510, "Member 'UW_SettingsListEntry_Input_C::IsPlayingFocusAudio' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, bCanPlayAudio) == 0x000511, "Member 'UW_SettingsListEntry_Input_C::bCanPlayAudio' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Input_C, RemapWidget) == 0x000518, "Member 'UW_SettingsListEntry_Input_C::RemapWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_HeraDialogRig_C_BndEvt__BP_HeraDialogRig_StartDialogueInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_HeraDialogRig_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig \ +static_assert(alignof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig"); \ +static_assert(sizeof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig) == 0x000020, "Wrong size on BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, EntryPoint) == 0x000000, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, K2Node_CustomEvent_ItemState) == 0x000004, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::K2Node_CustomEvent_ItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, K2Node_SwitchEnum_CmpSuccess) == 0x000005, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, K2Node_ComponentBoundEvent_InItemState) == 0x000006, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000008, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, K2Node_Event_InItemState) == 0x000010, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000018, "Member 'BP_HeraDialogRig_C_ExecuteUbergraph_BP_HeraDialogRig::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_GetDebugString \ +static_assert(alignof(BP_HeraDialogRig_C_GetDebugString) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_GetDebugString"); \ +static_assert(sizeof(BP_HeraDialogRig_C_GetDebugString) == 0x000010, "Wrong size on BP_HeraDialogRig_C_GetDebugString"); \ +static_assert(offsetof(BP_HeraDialogRig_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_HeraDialogRig_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_GetInteractableData \ +static_assert(alignof(BP_HeraDialogRig_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_GetInteractableData"); \ +static_assert(sizeof(BP_HeraDialogRig_C_GetInteractableData) == 0x000018, "Wrong size on BP_HeraDialogRig_C_GetInteractableData"); \ +static_assert(offsetof(BP_HeraDialogRig_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_HeraDialogRig_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_GetItemState \ +static_assert(alignof(BP_HeraDialogRig_C_GetItemState) == 0x000001, "Wrong alignment on BP_HeraDialogRig_C_GetItemState"); \ +static_assert(sizeof(BP_HeraDialogRig_C_GetItemState) == 0x000001, "Wrong size on BP_HeraDialogRig_C_GetItemState"); \ +static_assert(offsetof(BP_HeraDialogRig_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_HeraDialogRig_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_Override_Lighting_Channel_0 \ +static_assert(alignof(BP_HeraDialogRig_C_Override_Lighting_Channel_0) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_Override_Lighting_Channel_0"); \ +static_assert(sizeof(BP_HeraDialogRig_C_Override_Lighting_Channel_0) == 0x0000A0, "Wrong size on BP_HeraDialogRig_C_Override_Lighting_Channel_0"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, Channel_0_State) == 0x000000, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::Channel_0_State' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_GetAttachedActors_OutActors) == 0x000018, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_GetAttachedActors_OutActors_1) == 0x000038, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_GetAttachedActors_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Array_Get_Item_1) == 0x000050, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, K2Node_DynamicCast_AsBP_Point_Light_Dialogue_Fill) == 0x000058, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::K2Node_DynamicCast_AsBP_Point_Light_Dialogue_Fill' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Array_Length_ReturnValue_1) == 0x000064, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, K2Node_DynamicCast_AsBP_Base_Dialogue_Character) == 0x000068, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::K2Node_DynamicCast_AsBP_Base_Dialogue_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_GetComponentByClass_ReturnValue) == 0x000078, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, Temp_int_Loop_Counter_Variable_1) == 0x000084, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_GetDisplayName_ReturnValue) == 0x000088, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Less_IntInt_ReturnValue_1) == 0x000098, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_EqualEqual_StriStri_ReturnValue) == 0x000099, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_EqualEqual_StriStri_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_Override_Lighting_Channel_0, CallFunc_Add_IntInt_ReturnValue_1) == 0x00009C, "Member 'BP_HeraDialogRig_C_Override_Lighting_Channel_0::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_RestoreDIalogueDataFromCache \ +static_assert(alignof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache) == 0x000008, "Wrong alignment on BP_HeraDialogRig_C_RestoreDIalogueDataFromCache"); \ +static_assert(sizeof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache) == 0x0000B8, "Wrong size on BP_HeraDialogRig_C_RestoreDIalogueDataFromCache"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, Prefixes) == 0x000000, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::Prefixes' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, K2Node_MakeArray_Array) == 0x000010, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000020, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000028, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetPathName_ReturnValue) == 0x000038, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetPathName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetPathName_ReturnValue_1) == 0x000048, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetPathName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_Concat_StrStr_ReturnValue) == 0x000058, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_Conv_StringToName_ReturnValue) == 0x000068, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_Conv_StringToName_ReturnValue_1) == 0x000070, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_Conv_StringToName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetDialogueAbilityFromCache_OutDialogueData) == 0x000078, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetDialogueAbilityFromCache_OutDialogueData' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetDialogueAbilityFromCache_ReturnValue) == 0x000080, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetDialogueAbilityFromCache_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_GetGameplayTag_ReturnValue) == 0x000084, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_GetGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000090, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_RestoreDIalogueDataFromCache, CallFunc_HasGameplayTag_ReturnValue) == 0x0000B0, "Member 'BP_HeraDialogRig_C_RestoreDIalogueDataFromCache::CallFunc_HasGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_SetItemState \ +static_assert(alignof(BP_HeraDialogRig_C_SetItemState) == 0x000001, "Wrong alignment on BP_HeraDialogRig_C_SetItemState"); \ +static_assert(sizeof(BP_HeraDialogRig_C_SetItemState) == 0x000001, "Wrong size on BP_HeraDialogRig_C_SetItemState"); \ +static_assert(offsetof(BP_HeraDialogRig_C_SetItemState, InItemState) == 0x000000, "Member 'BP_HeraDialogRig_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_UpdateItemState \ +static_assert(alignof(BP_HeraDialogRig_C_UpdateItemState) == 0x000001, "Wrong alignment on BP_HeraDialogRig_C_UpdateItemState"); \ +static_assert(sizeof(BP_HeraDialogRig_C_UpdateItemState) == 0x000001, "Wrong size on BP_HeraDialogRig_C_UpdateItemState"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UpdateItemState, ItemState_0) == 0x000000, "Member 'BP_HeraDialogRig_C_UpdateItemState::ItemState_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeraDialogRig_C_UserConstructionScript \ +static_assert(alignof(BP_HeraDialogRig_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_HeraDialogRig_C_UserConstructionScript"); \ +static_assert(sizeof(BP_HeraDialogRig_C_UserConstructionScript) == 0x0002F0, "Wrong size on BP_HeraDialogRig_C_UserConstructionScript"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Location) == 0x000000, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Rotation) == 0x000018, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Scale) == 0x000030, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000048, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000060, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector2D_X) == 0x0000C0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector2D_Y) == 0x0000C8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector2D_X_1) == 0x0000D0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector2D_Y_1) == 0x0000D8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Location_1) == 0x0000E0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Rotation_1) == 0x0000F8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakTransform_Scale_1) == 0x000110, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_Divide_VectorFloat_ReturnValue) == 0x000128, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_Divide_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector_X) == 0x000140, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector_Y) == 0x000148, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_BreakVector_Z) == 0x000150, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_1) == 0x000160, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_K2_SetRelativeTransform_SweepHitResult) == 0x0001C8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_K2_SetRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_FClamp_ReturnValue) == 0x0002B0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0002B8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0002C0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_FClamp_ReturnValue_1) == 0x0002C8, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_MakeVector2D_ReturnValue) == 0x0002D0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_SetCapsuleSize_InRadius_ImplicitCast) == 0x0002E0, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_SetCapsuleSize_InRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeraDialogRig_C_UserConstructionScript, CallFunc_SetCapsuleSize_InHalfHeight_ImplicitCast) == 0x0002E4, "Member 'BP_HeraDialogRig_C_UserConstructionScript::CallFunc_SetCapsuleSize_InHalfHeight_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_HeraDialogRig_C \ +static_assert(alignof(ABP_HeraDialogRig_C) == 0x000010, "Wrong alignment on ABP_HeraDialogRig_C"); \ +static_assert(sizeof(ABP_HeraDialogRig_C) == 0x000510, "Wrong size on ABP_HeraDialogRig_C"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, UberGraphFrame) == 0x000460, "Member 'ABP_HeraDialogRig_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, PersistentItemState) == 0x000468, "Member 'ABP_HeraDialogRig_C::PersistentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, WrestlerInteractionPoint) == 0x000470, "Member 'ABP_HeraDialogRig_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, InteractionCapsule) == 0x000478, "Member 'ABP_HeraDialogRig_C::InteractionCapsule' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, CapsuleSize) == 0x000480, "Member 'ABP_HeraDialogRig_C::CapsuleSize' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, TransformWidgetScale) == 0x000490, "Member 'ABP_HeraDialogRig_C::TransformWidgetScale' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, CapsuleTransform) == 0x0004A0, "Member 'ABP_HeraDialogRig_C::CapsuleTransform' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, ItemState) == 0x000500, "Member 'ABP_HeraDialogRig_C::ItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, ShouldSetUsed) == 0x000501, "Member 'ABP_HeraDialogRig_C::ShouldSetUsed' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeraDialogRig_C, LoadedState) == 0x000502, "Member 'ABP_HeraDialogRig_C::LoadedState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GlowHS_C_ExecuteUbergraph_GlowHS \ +static_assert(alignof(GlowHS_C_ExecuteUbergraph_GlowHS) == 0x000008, "Wrong alignment on GlowHS_C_ExecuteUbergraph_GlowHS"); \ +static_assert(sizeof(GlowHS_C_ExecuteUbergraph_GlowHS) == 0x000070, "Wrong size on GlowHS_C_ExecuteUbergraph_GlowHS"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, EntryPoint) == 0x000000, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, K2Node_Event_InAutomata) == 0x000008, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, K2Node_Event_InState) == 0x000010, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, CallFunc_Array_Get_Item) == 0x000020, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, K2Node_DynamicCast_AsBP_Telekinesis_Interactable) == 0x000060, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::K2Node_DynamicCast_AsBP_Telekinesis_Interactable' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ExecuteUbergraph_GlowHS, CallFunc_Add_IntInt_ReturnValue) == 0x00006C, "Member 'GlowHS_C_ExecuteUbergraph_GlowHS::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GlowHS_C_ReceiveExecute \ +static_assert(alignof(GlowHS_C_ReceiveExecute) == 0x000008, "Wrong alignment on GlowHS_C_ReceiveExecute"); \ +static_assert(sizeof(GlowHS_C_ReceiveExecute) == 0x000010, "Wrong size on GlowHS_C_ReceiveExecute"); \ +static_assert(offsetof(GlowHS_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'GlowHS_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GlowHS_C_ReceiveExecute, InState) == 0x000008, "Member 'GlowHS_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGlowHS_C \ +static_assert(alignof(UGlowHS_C) == 0x000008, "Wrong alignment on UGlowHS_C"); \ +static_assert(sizeof(UGlowHS_C) == 0x0000A0, "Wrong size on UGlowHS_C"); \ +static_assert(offsetof(UGlowHS_C, UberGraphFrame) == 0x000088, "Member 'UGlowHS_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGlowHS_C, Actor) == 0x000090, "Member 'UGlowHS_C::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_TriggerAllAnimations \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations) == 0x000008, "Wrong alignment on WBP_MalkavianAbilityTree_C_TriggerAllAnimations"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations) == 0x000060, "Wrong size on WBP_MalkavianAbilityTree_C_TriggerAllAnimations"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, MainAbilities) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::MainAbilities' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_GetAllChildren_ReturnValue) == 0x000020, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, K2Node_DynamicCast_AsWrestler_Ability_Node_Widget) == 0x000048, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::K2Node_DynamicCast_AsWrestler_Ability_Node_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_GetClanValPosition_ReturnValue) == 0x000054, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_GetClanValPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000058, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000059, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_TriggerAllAnimations, CallFunc_BooleanAND_ReturnValue) == 0x00005A, "Member 'WBP_MalkavianAbilityTree_C_TriggerAllAnimations::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_PreConstruct \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_MalkavianAbilityTree_C_PreConstruct"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_PreConstruct) == 0x000001, "Wrong size on WBP_MalkavianAbilityTree_C_PreConstruct"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_PlayTierAnimation \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_PlayTierAnimation) == 0x000001, "Wrong alignment on WBP_MalkavianAbilityTree_C_PlayTierAnimation"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_PlayTierAnimation) == 0x000001, "Wrong size on WBP_MalkavianAbilityTree_C_PlayTierAnimation"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_PlayTierAnimation, InClanType) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_PlayTierAnimation::InClanType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_IsUnlocked \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_IsUnlocked) == 0x000008, "Wrong alignment on WBP_MalkavianAbilityTree_C_IsUnlocked"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_IsUnlocked) == 0x000018, "Wrong size on WBP_MalkavianAbilityTree_C_IsUnlocked"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsUnlocked, OutUnlocked) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_IsUnlocked::OutUnlocked' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsUnlocked, CallFunc_GetFocusedNode_ReturnValue) == 0x000008, "Member 'WBP_MalkavianAbilityTree_C_IsUnlocked::CallFunc_GetFocusedNode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsUnlocked, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WBP_MalkavianAbilityTree_C_IsUnlocked::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsUnlocked, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000011, "Member 'WBP_MalkavianAbilityTree_C_IsUnlocked::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_IsAcquired \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_IsAcquired) == 0x000008, "Wrong alignment on WBP_MalkavianAbilityTree_C_IsAcquired"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_IsAcquired) == 0x000018, "Wrong size on WBP_MalkavianAbilityTree_C_IsAcquired"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsAcquired, OutAcquired) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_IsAcquired::OutAcquired' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsAcquired, CallFunc_GetFocusedNode_ReturnValue) == 0x000008, "Member 'WBP_MalkavianAbilityTree_C_IsAcquired::CallFunc_GetFocusedNode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_IsAcquired, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000010, "Member 'WBP_MalkavianAbilityTree_C_IsAcquired::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree \ +static_assert(alignof(WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree) == 0x000004, "Wrong alignment on WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree"); \ +static_assert(sizeof(WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree) == 0x000008, "Wrong size on WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree, EntryPoint) == 0x000000, "Member 'WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_MalkavianAbilityTree_C_ExecuteUbergraph_WBP_MalkavianAbilityTree::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MalkavianAbilityTree_C \ +static_assert(alignof(UWBP_MalkavianAbilityTree_C) == 0x000008, "Wrong alignment on UWBP_MalkavianAbilityTree_C"); \ +static_assert(sizeof(UWBP_MalkavianAbilityTree_C) == 0x000570, "Wrong size on UWBP_MalkavianAbilityTree_C"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, UberGraphFrame) == 0x0004B0, "Member 'UWBP_MalkavianAbilityTree_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, OnTreeShowcase) == 0x0004B8, "Member 'UWBP_MalkavianAbilityTree_C::OnTreeShowcase' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Affect_Main) == 0x0004C0, "Member 'UWBP_MalkavianAbilityTree_C::Affect_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, BG_Shine) == 0x0004C8, "Member 'UWBP_MalkavianAbilityTree_C::BG_Shine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Mastery_Main) == 0x0004D0, "Member 'UWBP_MalkavianAbilityTree_C::Mastery_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Passive) == 0x0004D8, "Member 'UWBP_MalkavianAbilityTree_C::Passive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Pattern) == 0x0004E0, "Member 'UWBP_MalkavianAbilityTree_C::Pattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Pattern_1) == 0x0004E8, "Member 'UWBP_MalkavianAbilityTree_C::Pattern_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Pattern_2) == 0x0004F0, "Member 'UWBP_MalkavianAbilityTree_C::Pattern_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Pattern_3) == 0x0004F8, "Member 'UWBP_MalkavianAbilityTree_C::Pattern_3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Relocate_Main) == 0x000500, "Member 'UWBP_MalkavianAbilityTree_C::Relocate_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Strike_Main) == 0x000508, "Member 'UWBP_MalkavianAbilityTree_C::Strike_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, Clan) == 0x000510, "Member 'UWBP_MalkavianAbilityTree_C::Clan' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, PlayerClan) == 0x000518, "Member 'UWBP_MalkavianAbilityTree_C::PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MalkavianAbilityTree_C, ClanAudioPreviewTree) == 0x000520, "Member 'UWBP_MalkavianAbilityTree_C::ClanAudioPreviewTree' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleMainBody_C \ +static_assert(alignof(UCommonTextStyleMainBody_C) == 0x000010, "Wrong alignment on UCommonTextStyleMainBody_C"); \ +static_assert(sizeof(UCommonTextStyleMainBody_C) == 0x0001B0, "Wrong size on UCommonTextStyleMainBody_C"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateTriggerText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateTriggerText) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateTriggerText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateTriggerText) == 0x000080, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateTriggerText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, InCurrentAbilityType) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::InCurrentAbilityType' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_1) == 0x000020, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_2) == 0x000030, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_3) == 0x000040, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_4) == 0x000050, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_4' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_5) == 0x000060, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_5' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTriggerText, K2Node_MakeStruct_DataTableRowHandle_6) == 0x000070, "Member 'TCR_AbilityTooltipWidget_C_UpdateTriggerText::K2Node_MakeStruct_DataTableRowHandle_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals) == 0x000008, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals, InFocusedWidget) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateTooltipWidgetVisuals::InFocusedWidget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdatePanelText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdatePanelText) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdatePanelText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdatePanelText) == 0x000028, "Wrong size on TCR_AbilityTooltipWidget_C_UpdatePanelText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, InAbility) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::InAbility' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_IsPlayerFabien_Return) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_Not_PreBool_ReturnValue) == 0x000009, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, K2Node_SwitchEnum_CmpSuccess) == 0x00000A, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00000B, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x00000C, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_BooleanAND_ReturnValue) == 0x00000D, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_BooleanOR_ReturnValue) == 0x00000E, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_GetClanValue_ReturnValue) == 0x000010, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_IsAbilityMain_ReturnValue) == 0x000014, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_IsAbilityMain_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdatePanelText, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000020, "Member 'TCR_AbilityTooltipWidget_C_UpdatePanelText::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateFabienPassive \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateFabienPassive"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive) == 0x000010, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateFabienPassive"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive, InAbility) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateFabienPassive::InAbility' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_UpdateFabienPassive::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive, CallFunc_IsPlayerFabien_Return) == 0x000009, "Member 'TCR_AbilityTooltipWidget_C_UpdateFabienPassive::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateFabienPassive, CallFunc_BooleanAND_ReturnValue) == 0x00000A, "Member 'TCR_AbilityTooltipWidget_C_UpdateFabienPassive::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon) == 0x000001, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon) == 0x000002, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon, InInput) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon::InInput' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'TCR_AbilityTooltipWidget_C_UpdateExtraMouseIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateClanTrainerText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateClanTrainerText) == 0x000004, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateClanTrainerText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateClanTrainerText) == 0x000008, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateClanTrainerText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateClanTrainerText, InClanValue) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateClanTrainerText::InClanValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateClanTrainerText, K2Node_SwitchInteger_CmpSuccess) == 0x000004, "Member 'TCR_AbilityTooltipWidget_C_UpdateClanTrainerText::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_UpdateAffinityPanel \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_UpdateAffinityPanel"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel) == 0x000090, "Wrong size on TCR_AbilityTooltipWidget_C_UpdateAffinityPanel"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, InAbility) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::InAbility' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, Temp_int_Array_Index_Variable) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_GetAbilityDisciplines_ReturnValue) == 0x000010, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_GetAbilityDisciplines_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Array_Get_Item) == 0x000020, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Greater_IntInt_ReturnValue) == 0x000028, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000029, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_GetAbilityDisciplines_ReturnValue_1) == 0x000030, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_GetAbilityDisciplines_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Array_Get_Item_1) == 0x000040, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000041, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Array_Length_ReturnValue_1) == 0x000044, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, Temp_int_Loop_Counter_Variable) == 0x000048, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_IsPlayerFabien_Return) == 0x000054, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, Temp_byte_Variable) == 0x000055, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, Temp_byte_Variable_1) == 0x000056, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, Temp_bool_Variable) == 0x000057, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, K2Node_Select_Default) == 0x000058, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_GetChildAt_ReturnValue) == 0x000060, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, K2Node_DynamicCast_AsSize_Box) == 0x000068, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::K2Node_DynamicCast_AsSize_Box' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, CallFunc_GetChildAt_ReturnValue_1) == 0x000078, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, K2Node_DynamicCast_AsWBP_Clan_Select_Discipline_Slot) == 0x000080, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::K2Node_DynamicCast_AsWBP_Clan_Select_Discipline_Slot' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_UpdateAffinityPanel, K2Node_DynamicCast_bSuccess_1) == 0x000088, "Member 'TCR_AbilityTooltipWidget_C_UpdateAffinityPanel::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_SwitchCostBG \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_SwitchCostBG) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_SwitchCostBG"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_SwitchCostBG) == 0x000060, "Wrong size on TCR_AbilityTooltipWidget_C_SwitchCostBG"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, InAbilityNode) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::InAbilityNode' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_bool_Variable) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, CallFunc_IsAbilityCostModified_ReturnValue) == 0x000009, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::CallFunc_IsAbilityCostModified_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_byte_Variable) == 0x00000A, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, K2Node_SwitchEnum_CmpSuccess) == 0x00000B, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_byte_Variable_1) == 0x00000C, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, K2Node_Select_Default) == 0x00000D, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_text_Variable) == 0x000010, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_text_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_text_Variable_1) == 0x000028, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_text_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, Temp_bool_Variable_1) == 0x000040, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchCostBG, K2Node_Select_Default_1) == 0x000048, "Member 'TCR_AbilityTooltipWidget_C_SwitchCostBG::K2Node_Select_Default_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText) == 0x000001, "Wrong alignment on TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText) == 0x000002, "Wrong size on TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText, InType) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText::InType' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'TCR_AbilityTooltipWidget_C_SwitchAbilityTypeText::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_SetPerkLockedText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_SetPerkLockedText) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_SetPerkLockedText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_SetPerkLockedText) == 0x000010, "Wrong size on TCR_AbilityTooltipWidget_C_SetPerkLockedText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SetPerkLockedText, InPerk) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_SetPerkLockedText::InPerk' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SetPerkLockedText, CallFunc_GetClanValue_ReturnValue) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_SetPerkLockedText::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SetPerkLockedText, K2Node_SwitchInteger_CmpSuccess) == 0x00000C, "Member 'TCR_AbilityTooltipWidget_C_SetPerkLockedText::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_SetAbilityLockedText \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_SetAbilityLockedText) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_SetAbilityLockedText"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_SetAbilityLockedText) == 0x000010, "Wrong size on TCR_AbilityTooltipWidget_C_SetAbilityLockedText"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SetAbilityLockedText, InAbility) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_SetAbilityLockedText::InAbility' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_SetAbilityLockedText, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_SetAbilityLockedText::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_Set_Loc_Text \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_Set_Loc_Text) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_Set_Loc_Text"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_Set_Loc_Text) == 0x0000C0, "Wrong size on TCR_AbilityTooltipWidget_C_Set_Loc_Text"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, LocText) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::LocText' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, HorizontalBox) == 0x000018, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::HorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, newText) == 0x000020, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::newText' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, LocalHBox) == 0x000038, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::LocalHBox' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_GetChildAt_ReturnValue) == 0x000040, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_GetChildAt_ReturnValue_1) == 0x000048, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Conv_TextToString_ReturnValue) == 0x000050, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Split_LeftS) == 0x000060, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Split_RightS) == 0x000070, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Split_ReturnValue) == 0x000080, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_IsEmpty_ReturnValue) == 0x000081, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Conv_StringToText_ReturnValue) == 0x000088, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_Conv_StringToText_ReturnValue_1) == 0x0000A0, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x0000B8, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_Set_Loc_Text, CallFunc_BooleanOR_ReturnValue) == 0x0000B9, "Member 'TCR_AbilityTooltipWidget_C_Set_Loc_Text::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_PlayClip_BP \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_PlayClip_BP) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_PlayClip_BP"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_PlayClip_BP) == 0x000010, "Wrong size on TCR_AbilityTooltipWidget_C_PlayClip_BP"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_PlayClip_BP, InMediaSource) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_PlayClip_BP::InMediaSource' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_PlayClip_BP, IsPerk) == 0x000008, "Member 'TCR_AbilityTooltipWidget_C_PlayClip_BP::IsPerk' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_PlayClip_BP, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'TCR_AbilityTooltipWidget_C_PlayClip_BP::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event) == 0x000001, "Wrong alignment on TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event) == 0x000001, "Wrong size on TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event, bNewInputType) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_OnInputMethodChanged_Event::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget \ +static_assert(alignof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget) == 0x000008, "Wrong alignment on TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget"); \ +static_assert(sizeof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget) == 0x000098, "Wrong size on TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, EntryPoint) == 0x000000, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, K2Node_Event_InFocusedWidget) == 0x000028, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::K2Node_Event_InFocusedWidget' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, K2Node_CustomEvent_bNewInputType) == 0x000030, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000038, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_GetCurrentInputType_ReturnValue) == 0x000040, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_Set_Loc_Text_NewText) == 0x000048, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_Set_Loc_Text_NewText' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_Set_Loc_Text_NewText_1) == 0x000060, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_Set_Loc_Text_NewText_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_Set_Loc_Text_NewText_2) == 0x000078, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_Set_Loc_Text_NewText_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget, CallFunc_GetLocalPlayerSubsystem_ReturnValue_1) == 0x000090, "Member 'TCR_AbilityTooltipWidget_C_ExecuteUbergraph_TCR_AbilityTooltipWidget::CallFunc_GetLocalPlayerSubsystem_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_AbilityTooltipWidget_C \ +static_assert(alignof(UTCR_AbilityTooltipWidget_C) == 0x000008, "Wrong alignment on UTCR_AbilityTooltipWidget_C"); \ +static_assert(sizeof(UTCR_AbilityTooltipWidget_C) == 0x000518, "Wrong size on UTCR_AbilityTooltipWidget_C"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, UberGraphFrame) == 0x000370, "Member 'UTCR_AbilityTooltipWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, AbilityTriggerIcon) == 0x000378, "Member 'UTCR_AbilityTooltipWidget_C::AbilityTriggerIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, AcquireAbilityText) == 0x000380, "Member 'UTCR_AbilityTooltipWidget_C::AcquireAbilityText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, AffinitiesPanel) == 0x000388, "Member 'UTCR_AbilityTooltipWidget_C::AffinitiesPanel' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, AquireHorizontalBox) == 0x000390, "Member 'UTCR_AbilityTooltipWidget_C::AquireHorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, AW_Equip) == 0x000398, "Member 'UTCR_AbilityTooltipWidget_C::AW_Equip' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, BGblack) == 0x0003A0, "Member 'UTCR_AbilityTooltipWidget_C::BGblack' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ClanDisciplines) == 0x0003A8, "Member 'UTCR_AbilityTooltipWidget_C::ClanDisciplines' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ClanModifier) == 0x0003B0, "Member 'UTCR_AbilityTooltipWidget_C::ClanModifier' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ClanTrainerName) == 0x0003B8, "Member 'UTCR_AbilityTooltipWidget_C::ClanTrainerName' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ComboIcon) == 0x0003C0, "Member 'UTCR_AbilityTooltipWidget_C::ComboIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Cost_Header) == 0x0003C8, "Member 'UTCR_AbilityTooltipWidget_C::Cost_Header' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, CostBg) == 0x0003D0, "Member 'UTCR_AbilityTooltipWidget_C::CostBg' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, CostBG_Overlay) == 0x0003D8, "Member 'UTCR_AbilityTooltipWidget_C::CostBG_Overlay' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, CostOutline) == 0x0003E0, "Member 'UTCR_AbilityTooltipWidget_C::CostOutline' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Discipline1) == 0x0003E8, "Member 'UTCR_AbilityTooltipWidget_C::Discipline1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Discipline2) == 0x0003F0, "Member 'UTCR_AbilityTooltipWidget_C::Discipline2' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Discipline3) == 0x0003F8, "Member 'UTCR_AbilityTooltipWidget_C::Discipline3' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Divider) == 0x000400, "Member 'UTCR_AbilityTooltipWidget_C::Divider' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Divider_1) == 0x000408, "Member 'UTCR_AbilityTooltipWidget_C::Divider_1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, EquipAbilityText) == 0x000410, "Member 'UTCR_AbilityTooltipWidget_C::EquipAbilityText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, EquipHorizontalBox) == 0x000418, "Member 'UTCR_AbilityTooltipWidget_C::EquipHorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, EquipPressText) == 0x000420, "Member 'UTCR_AbilityTooltipWidget_C::EquipPressText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, EquipPressText_1) == 0x000428, "Member 'UTCR_AbilityTooltipWidget_C::EquipPressText_1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ExtraMouseInput) == 0x000430, "Member 'UTCR_AbilityTooltipWidget_C::ExtraMouseInput' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Frame) == 0x000438, "Member 'UTCR_AbilityTooltipWidget_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, HoldAcquireText) == 0x000440, "Member 'UTCR_AbilityTooltipWidget_C::HoldAcquireText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, HoldAcquireText_1) == 0x000448, "Member 'UTCR_AbilityTooltipWidget_C::HoldAcquireText_1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Image_1) == 0x000450, "Member 'UTCR_AbilityTooltipWidget_C::Image_1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Image_2) == 0x000458, "Member 'UTCR_AbilityTooltipWidget_C::Image_2' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Image_199) == 0x000460, "Member 'UTCR_AbilityTooltipWidget_C::Image_199' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, LockedAbilityText) == 0x000468, "Member 'UTCR_AbilityTooltipWidget_C::LockedAbilityText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Overlay_Cost) == 0x000470, "Member 'UTCR_AbilityTooltipWidget_C::Overlay_Cost' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, Overlay_Image) == 0x000478, "Member 'UTCR_AbilityTooltipWidget_C::Overlay_Image' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ReducedCostIcon) == 0x000480, "Member 'UTCR_AbilityTooltipWidget_C::ReducedCostIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ResonanceCost) == 0x000488, "Member 'UTCR_AbilityTooltipWidget_C::ResonanceCost' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TextBlock_4) == 0x000490, "Member 'UTCR_AbilityTooltipWidget_C::TextBlock_4' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TextSwitcher) == 0x000498, "Member 'UTCR_AbilityTooltipWidget_C::TextSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TriggerHorizontalBox) == 0x0004A0, "Member 'UTCR_AbilityTooltipWidget_C::TriggerHorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TriggerText) == 0x0004A8, "Member 'UTCR_AbilityTooltipWidget_C::TriggerText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TriggerText_1) == 0x0004B0, "Member 'UTCR_AbilityTooltipWidget_C::TriggerText_1' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, TriggerVBox) == 0x0004B8, "Member 'UTCR_AbilityTooltipWidget_C::TriggerVBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, UnavailableText) == 0x0004C0, "Member 'UTCR_AbilityTooltipWidget_C::UnavailableText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, UnlockDefault) == 0x0004C8, "Member 'UTCR_AbilityTooltipWidget_C::UnlockDefault' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, UnlockMouse) == 0x0004D0, "Member 'UTCR_AbilityTooltipWidget_C::UnlockMouse' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, UnlockSubtext) == 0x0004D8, "Member 'UTCR_AbilityTooltipWidget_C::UnlockSubtext' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, MediaPlayer) == 0x0004E0, "Member 'UTCR_AbilityTooltipWidget_C::MediaPlayer' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, ClanTrainerName_0) == 0x0004E8, "Member 'UTCR_AbilityTooltipWidget_C::ClanTrainerName_0' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, IsPreview) == 0x0004F0, "Member 'UTCR_AbilityTooltipWidget_C::IsPreview' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, CurrentFocusedAbility) == 0x0004F8, "Member 'UTCR_AbilityTooltipWidget_C::CurrentFocusedAbility' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityTooltipWidget_C, PressText) == 0x000500, "Member 'UTCR_AbilityTooltipWidget_C::PressText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull \ +static_assert(alignof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull) == 0x000640, "Wrong size on GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, EntryPoint) == 0x000000, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_object_Variable) == 0x000008, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsBP_Throwable_Weapon) == 0x000010, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsBP_Throwable_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValidClass_ReturnValue) == 0x000019, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_Greater_IntInt_ReturnValue) == 0x00001A, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue) == 0x00001B, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable) == 0x00001C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_1) == 0x00002C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_2) == 0x00003C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_3) == 0x00004C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_4) == 0x00005C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_5) == 0x00006C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_MyTarget) == 0x000080, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_EventType) == 0x000088, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_EventType' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_Parameters_2) == 0x000090, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_Parameters_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000168, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000170, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000174, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000178, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000190, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000198, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x0001A0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x0001C0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_Location) == 0x0001E0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_Normal) == 0x0001F8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_Instigator) == 0x000210, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x000218, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x000220, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x000228, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x000230, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x000234, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x000238, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x000240, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000241, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess) == 0x000242, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_DeltaSeconds) == 0x000244, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetOwner_ReturnValue) == 0x000248, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_1) == 0x000250, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000258, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_6) == 0x000270, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_7) == 0x000280, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_2) == 0x000290, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_8) == 0x000294, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0002A8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_1) == 0x0002B8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_3) == 0x0002B9, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetTargetType_ReturnValue) == 0x0002BA, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetVelocity_ReturnValue) == 0x0002C0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0002D8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_VSize_ReturnValue) == 0x0002F0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_Vector_Distance_ReturnValue) == 0x0002F8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_FClamp_ReturnValue) == 0x000300, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000308, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_Character_1) == 0x000310, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_Character_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_AudioComponent_1) == 0x000318, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_AudioComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_Parameters_1) == 0x000320, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_Parameters_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_9) == 0x0003F8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_Character) == 0x000408, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_AudioComponent) == 0x000410, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_Event_Parameters) == 0x000418, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_Event_Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_4) == 0x0004F0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_OutExecBranches) == 0x0004F1, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_ReturnValue) == 0x0004F8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess_1) == 0x000500, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_byte_Variable) == 0x000501, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_5) == 0x000502, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess_2) == 0x000503, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_object_Variable_1) == 0x000508, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_OutExecBranches_1) == 0x000510, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_OutExecBranches_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_ReturnValue_1) == 0x000518, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_6) == 0x000520, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess_3) == 0x000521, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000528, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_2) == 0x000538, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x000540, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_3) == 0x000550, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000558, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000560, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_delegate_Variable_10) == 0x000568, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_delegate_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_7) == 0x000578, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_OutExecBranches_2) == 0x000579, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_OutExecBranches_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_ReturnValue_2) == 0x000580, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess_4) == 0x000588, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, Temp_object_Variable_2) == 0x000590, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000598, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetOwner_ReturnValue_1) == 0x0005A0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_MakeArray_Array) == 0x0005A8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_8) == 0x0005B8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x0005C0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_4) == 0x0005C8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetDialogueInfo_ReturnValue) == 0x0005D0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x0005D8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_5) == 0x0005E8, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_MakeArray_Array_1) == 0x0005F0, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioComponent_AudioComponent) == 0x000600, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_AsHera_Audio_Character_Interface_2) == 0x000608, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_AsHera_Audio_Character_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_6) == 0x000618, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_9) == 0x000619, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000620, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, K2Node_VariableSet_InitialDistance_ImplicitCast) == 0x000628, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::K2Node_VariableSet_InitialDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000630, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_SetRTPCValue_Value_ImplicitCast) == 0x000638, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_SetRTPCValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull, CallFunc_SetRTPCValue_Value_ImplicitCast_1) == 0x00063C, "Member 'GC_Telekinesis_Pull_C_ExecuteUbergraph_GC_Telekinesis_Pull::CallFunc_SetRTPCValue_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_K2_HandleGameplayCue \ +static_assert(alignof(GC_Telekinesis_Pull_C_K2_HandleGameplayCue) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_K2_HandleGameplayCue"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_K2_HandleGameplayCue) == 0x0000E8, "Wrong size on GC_Telekinesis_Pull_C_K2_HandleGameplayCue"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_K2_HandleGameplayCue, MyTarget) == 0x000000, "Member 'GC_Telekinesis_Pull_C_K2_HandleGameplayCue::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_K2_HandleGameplayCue, EventType) == 0x000008, "Member 'GC_Telekinesis_Pull_C_K2_HandleGameplayCue::EventType' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_K2_HandleGameplayCue, Parameters) == 0x000010, "Member 'GC_Telekinesis_Pull_C_K2_HandleGameplayCue::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_OnActiveAudio \ +static_assert(alignof(GC_Telekinesis_Pull_C_OnActiveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_OnActiveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_OnActiveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Pull_C_OnActiveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnActiveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Pull_C_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnActiveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Pull_C_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnActiveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Pull_C_OnActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_OnRemove \ +static_assert(alignof(GC_Telekinesis_Pull_C_OnRemove) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_OnRemove"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_OnRemove) == 0x0000E8, "Wrong size on GC_Telekinesis_Pull_C_OnRemove"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemove, MyTarget) == 0x000000, "Member 'GC_Telekinesis_Pull_C_OnRemove::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemove, Parameters) == 0x000008, "Member 'GC_Telekinesis_Pull_C_OnRemove::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemove, ReturnValue) == 0x0000E0, "Member 'GC_Telekinesis_Pull_C_OnRemove::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemove, CallFunc_IsValid_ReturnValue) == 0x0000E1, "Member 'GC_Telekinesis_Pull_C_OnRemove::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_OnRemoveAudio \ +static_assert(alignof(GC_Telekinesis_Pull_C_OnRemoveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_OnRemoveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_OnRemoveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Pull_C_OnRemoveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemoveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Pull_C_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Pull_C_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_OnRemoveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Pull_C_OnRemoveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_ReceiveTick \ +static_assert(alignof(GC_Telekinesis_Pull_C_ReceiveTick) == 0x000004, "Wrong alignment on GC_Telekinesis_Pull_C_ReceiveTick"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_ReceiveTick) == 0x000004, "Wrong size on GC_Telekinesis_Pull_C_ReceiveTick"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'GC_Telekinesis_Pull_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Pull_C_SpawnParticleAttached \ +static_assert(alignof(GC_Telekinesis_Pull_C_SpawnParticleAttached) == 0x000008, "Wrong alignment on GC_Telekinesis_Pull_C_SpawnParticleAttached"); \ +static_assert(sizeof(GC_Telekinesis_Pull_C_SpawnParticleAttached) == 0x000048, "Wrong size on GC_Telekinesis_Pull_C_SpawnParticleAttached"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_GetOwner_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000008, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000018, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_GetThrowableType_ReturnValue) == 0x000029, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_GetThrowableType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_GetValidValue_ReturnValue) == 0x00002A, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_Map_Find_Value) == 0x000030, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_Map_Find_ReturnValue) == 0x000038, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Pull_C_SpawnParticleAttached, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000040, "Member 'GC_Telekinesis_Pull_C_SpawnParticleAttached::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_Pull_C \ +static_assert(alignof(AGC_Telekinesis_Pull_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_Pull_C"); \ +static_assert(sizeof(AGC_Telekinesis_Pull_C) == 0x000428, "Wrong size on AGC_Telekinesis_Pull_C"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, UberGraphFrame) == 0x000308, "Member 'AGC_Telekinesis_Pull_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, DefaultSceneRoot) == 0x000310, "Member 'AGC_Telekinesis_Pull_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Target) == 0x000318, "Member 'AGC_Telekinesis_Pull_C::Target' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, InitialDistance) == 0x000320, "Member 'AGC_Telekinesis_Pull_C::InitialDistance' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, ThrowableTypes) == 0x000328, "Member 'AGC_Telekinesis_Pull_C::ThrowableTypes' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Spawned_System_Attached) == 0x000378, "Member 'AGC_Telekinesis_Pull_C::Spawned_System_Attached' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, SpawnedAudio) == 0x000380, "Member 'AGC_Telekinesis_Pull_C::SpawnedAudio' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, AudioThrowableTypes) == 0x000388, "Member 'AGC_Telekinesis_Pull_C::AudioThrowableTypes' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Player_Audio_Component) == 0x0003D8, "Member 'AGC_Telekinesis_Pull_C::Player_Audio_Component' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Pull_Item_Event) == 0x0003E0, "Member 'AGC_Telekinesis_Pull_C::Pull_Item_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Pull_Enemy_Event) == 0x0003E8, "Member 'AGC_Telekinesis_Pull_C::Pull_Enemy_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Pull_Body_Event) == 0x0003F0, "Member 'AGC_Telekinesis_Pull_C::Pull_Body_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Pull_Interactable_Event) == 0x0003F8, "Member 'AGC_Telekinesis_Pull_C::Pull_Interactable_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Pull_NoItem_Event) == 0x000400, "Member 'AGC_Telekinesis_Pull_C::Pull_NoItem_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Hold_NoItem_Event) == 0x000408, "Member 'AGC_Telekinesis_Pull_C::Hold_NoItem_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Hold_NoItem_Stop_Event) == 0x000410, "Member 'AGC_Telekinesis_Pull_C::Hold_NoItem_Stop_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, Release_NoItem_Event) == 0x000418, "Member 'AGC_Telekinesis_Pull_C::Release_NoItem_Event' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Pull_C, In_Prompt) == 0x000420, "Member 'AGC_Telekinesis_Pull_C::In_Prompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInput_KBM_C \ +static_assert(alignof(UCommonInput_KBM_C) == 0x000008, "Wrong alignment on UCommonInput_KBM_C"); \ +static_assert(sizeof(UCommonInput_KBM_C) == 0x000100, "Wrong size on UCommonInput_KBM_C"); \ + +#define DUMPER7_ASSERTS_SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState \ +static_assert(alignof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState) == 0x000008, "Wrong alignment on SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState"); \ +static_assert(sizeof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState) == 0x000040, "Wrong size on SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, EntryPoint) == 0x000000, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, K2Node_Event_InAutomata) == 0x000008, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, K2Node_Event_InState) == 0x000010, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, CallFunc_GetGameMode_ReturnValue) == 0x000020, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, K2Node_DynamicCast_AsBP_Wrestler_Game_Mode_in_Game) == 0x000028, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::K2Node_DynamicCast_AsBP_Wrestler_Game_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000038, "Member 'SetMasqueradeState_C_ExecuteUbergraph_SetMasqueradeState::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetMasqueradeState_C_ReceiveExecute \ +static_assert(alignof(SetMasqueradeState_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetMasqueradeState_C_ReceiveExecute"); \ +static_assert(sizeof(SetMasqueradeState_C_ReceiveExecute) == 0x000010, "Wrong size on SetMasqueradeState_C_ReceiveExecute"); \ +static_assert(offsetof(SetMasqueradeState_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetMasqueradeState_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeState_C_ReceiveExecute, InState) == 0x000008, "Member 'SetMasqueradeState_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetMasqueradeState_C \ +static_assert(alignof(USetMasqueradeState_C) == 0x000008, "Wrong alignment on USetMasqueradeState_C"); \ +static_assert(sizeof(USetMasqueradeState_C) == 0x000098, "Wrong size on USetMasqueradeState_C"); \ +static_assert(offsetof(USetMasqueradeState_C, UberGraphFrame) == 0x000088, "Member 'USetMasqueradeState_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetMasqueradeState_C, DesiredState) == 0x000090, "Member 'USetMasqueradeState_C::DesiredState' has a wrong offset!"); \ +static_assert(offsetof(USetMasqueradeState_C, QuestTimerTimedOut) == 0x000091, "Member 'USetMasqueradeState_C::QuestTimerTimedOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_Counter \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_Counter) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_Counter"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_Counter) == 0x0000B0, "Wrong size on GA_Ysabella_BlurredMomentum_C_Counter"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_Counter, Event) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_Counter::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004) == 0x0000B0, "Wrong size on GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004, Payload) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_EventReceived_09DE45074BD59311C0471DA71DA1D004::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5) == 0x0000B0, "Wrong size on GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5, Payload) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_EventReceived_9D0D9D0B4AEFF31B2E5F8C8BCBA62ED5::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6) == 0x0000B0, "Wrong size on GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6, Payload) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_EventReceived_B73F20B245A8CBC261DA4BADB7E31AB6::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum) == 0x000010, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum) == 0x000980, "Wrong size on GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, EntryPoint) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_CreateTimeDilation_Handle) == 0x000030, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate) == 0x000034, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitDelay_ReturnValue) == 0x000048, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_1) == 0x000050, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_bool_Variable) == 0x000061, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_real_Variable) == 0x000064, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_real_Variable_1) == 0x000068, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CustomEvent_Payload_1) == 0x000070, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_2) == 0x000120, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_struct_Variable) == 0x000130, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0001E0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_1) == 0x0001E8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001EC, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CustomEvent_Payload) == 0x000200, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_struct_Variable_1) == 0x0002B0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000360, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_2) == 0x000368, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_4) == 0x00036C, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitDelay_ReturnValue_1) == 0x000380, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000388, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_3) == 0x000389, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_bool_IsClosed_Variable) == 0x00038A, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_bool_Has_Been_Initd_Variable) == 0x00038B, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_int_Variable) == 0x00038C, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_5) == 0x000390, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0003A0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CustomEvent_Event) == 0x0003A8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CustomEvent_Event' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000458, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitGameplayEvent_ReturnValue_2) == 0x000460, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitGameplayEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_K2_GiveAbility_ReturnValue) == 0x000468, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_K2_GiveAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_K2_GiveAbility_ReturnValue_1) == 0x00046C, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_K2_GiveAbility_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_K2_GiveAbility_ReturnValue_2) == 0x000470, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_K2_GiveAbility_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_4) == 0x000474, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000478, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000480, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_Event_bWasCancelled) == 0x000481, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000488, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000490, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000491, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000498, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0004A0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0004A8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0004B0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitForAttributeChange_ReturnValue) == 0x0004B8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitForAttributeChange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x0004C0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_5) == 0x0004C1, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, Temp_struct_Variable_2) == 0x0004C8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitDelay_ReturnValue_2) == 0x000578, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_6) == 0x000580, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000588, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetPlayerPawn_ReturnValue) == 0x000590, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_MakeStruct_GameplayEventData) == 0x000598, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000648, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000650, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetTransform_ReturnValue) == 0x000660, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0006C0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_FinishSpawningActor_ReturnValue) == 0x0006C8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0006D0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0006D8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0007B0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetCurrentMontage_ReturnValue) == 0x0007B8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetCurrentMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_7) == 0x0007C0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0007C8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0007D8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BooleanOR_ReturnValue) == 0x0007D9, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x0007E0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BooleanOR_ReturnValue_1) == 0x0007E8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAIController_ReturnValue) == 0x0007F0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0007F8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CustomEvent_Payload_2) == 0x000800, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsAwareOfActor_ReturnValue) == 0x0008B0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x0008B8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0008C0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitDelay_ReturnValue_3) == 0x0008C8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x0008D0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1) == 0x0008D8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_IsValid_ReturnValue_8) == 0x0008E0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x0008E8, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0008F0, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000900, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_Select_Default) == 0x000904, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_6) == 0x000908, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x000918, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000920, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000940, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000950, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_Add_IntInt_ReturnValue) == 0x000954, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_Subtract_IntInt_ReturnValue) == 0x000958, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_Clamp_ReturnValue) == 0x00095C, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_Clamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, K2Node_CreateDelegate_OutputDelegate_7) == 0x000960, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000970, "Member 'GA_Ysabella_BlurredMomentum_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Ysabella_BlurredMomentum_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ysabella_BlurredMomentum_C \ +static_assert(alignof(UGA_Ysabella_BlurredMomentum_C) == 0x000008, "Wrong alignment on UGA_Ysabella_BlurredMomentum_C"); \ +static_assert(sizeof(UGA_Ysabella_BlurredMomentum_C) == 0x0006E0, "Wrong size on UGA_Ysabella_BlurredMomentum_C"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ysabella_BlurredMomentum_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, GapDuration) == 0x000670, "Member 'UGA_Ysabella_BlurredMomentum_C::GapDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, Active) == 0x000674, "Member 'UGA_Ysabella_BlurredMomentum_C::Active' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, ActiveTags) == 0x000678, "Member 'UGA_Ysabella_BlurredMomentum_C::ActiveTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, Effect) == 0x000698, "Member 'UGA_Ysabella_BlurredMomentum_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, AfterImageManager) == 0x0006A0, "Member 'UGA_Ysabella_BlurredMomentum_C::AfterImageManager' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, BlockTags) == 0x0006A8, "Member 'UGA_Ysabella_BlurredMomentum_C::BlockTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, Wobbled) == 0x0006C8, "Member 'UGA_Ysabella_BlurredMomentum_C::Wobbled' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, Lost_After_Time) == 0x0006C9, "Member 'UGA_Ysabella_BlurredMomentum_C::Lost_After_Time' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, TimeTilLost) == 0x0006D0, "Member 'UGA_Ysabella_BlurredMomentum_C::TimeTilLost' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_C, Hits) == 0x0006D8, "Member 'UGA_Ysabella_BlurredMomentum_C::Hits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonInput_PS5_C \ +static_assert(alignof(UCommonInput_PS5_C) == 0x000008, "Wrong alignment on UCommonInput_PS5_C"); \ +static_assert(sizeof(UCommonInput_PS5_C) == 0x000100, "Wrong size on UCommonInput_PS5_C"); \ + +#define DUMPER7_ASSERTS_UCommonInput_XSX_C \ +static_assert(alignof(UCommonInput_XSX_C) == 0x000008, "Wrong alignment on UCommonInput_XSX_C"); \ +static_assert(sizeof(UCommonInput_XSX_C) == 0x000100, "Wrong size on UCommonInput_XSX_C"); \ + +#define DUMPER7_ASSERTS_UCommonInput_PS4_C \ +static_assert(alignof(UCommonInput_PS4_C) == 0x000008, "Wrong alignment on UCommonInput_PS4_C"); \ +static_assert(sizeof(UCommonInput_PS4_C) == 0x000100, "Wrong size on UCommonInput_PS4_C"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_CastNameArrayToStringArray \ +static_assert(alignof(BF_EditorScriptUtils_C_CastNameArrayToStringArray) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_CastNameArrayToStringArray"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_CastNameArrayToStringArray) == 0x000070, "Wrong size on BF_EditorScriptUtils_C_CastNameArrayToStringArray"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, NameArray) == 0x000000, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::NameArray' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, __WorldContext) == 0x000010, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, StringArray) == 0x000018, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::StringArray' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, OutputArray) == 0x000028, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::OutputArray' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, Temp_int_Array_Index_Variable) == 0x00003C, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, Temp_int_Loop_Counter_Variable) == 0x000040, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Array_Get_Item) == 0x000044, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Conv_NameToString_ReturnValue) == 0x000050, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Add_IntInt_ReturnValue) == 0x000064, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_CastNameArrayToStringArray, CallFunc_Array_Add_ReturnValue) == 0x000068, "Member 'BF_EditorScriptUtils_C_CastNameArrayToStringArray::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_GetActorType \ +static_assert(alignof(BF_EditorScriptUtils_C_GetActorType) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_GetActorType"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_GetActorType) == 0x000058, "Wrong size on BF_EditorScriptUtils_C_GetActorType"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, Actor) == 0x000000, "Member 'BF_EditorScriptUtils_C_GetActorType::Actor' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, AssetType_Required) == 0x000008, "Member 'BF_EditorScriptUtils_C_GetActorType::AssetType_Required' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, __WorldContext) == 0x000018, "Member 'BF_EditorScriptUtils_C_GetActorType::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, ValidAsset) == 0x000020, "Member 'BF_EditorScriptUtils_C_GetActorType::ValidAsset' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, AssetType_Actual) == 0x000028, "Member 'BF_EditorScriptUtils_C_GetActorType::AssetType_Actual' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, CallFunc_GetObjectClass_ReturnValue) == 0x000038, "Member 'BF_EditorScriptUtils_C_GetActorType::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, CallFunc_GetClassDisplayName_ReturnValue) == 0x000040, "Member 'BF_EditorScriptUtils_C_GetActorType::CallFunc_GetClassDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetActorType, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x000050, "Member 'BF_EditorScriptUtils_C_GetActorType::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_GetAssetType \ +static_assert(alignof(BF_EditorScriptUtils_C_GetAssetType) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_GetAssetType"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_GetAssetType) == 0x0000C8, "Wrong size on BF_EditorScriptUtils_C_GetAssetType"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, Asset) == 0x000000, "Member 'BF_EditorScriptUtils_C_GetAssetType::Asset' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, AssetType_Required) == 0x000008, "Member 'BF_EditorScriptUtils_C_GetAssetType::AssetType_Required' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, __WorldContext) == 0x000018, "Member 'BF_EditorScriptUtils_C_GetAssetType::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, ValidAsset) == 0x000020, "Member 'BF_EditorScriptUtils_C_GetAssetType::ValidAsset' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, AssetType_Actual) == 0x000028, "Member 'BF_EditorScriptUtils_C_GetAssetType::AssetType_Actual' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_CreateAssetData_ReturnValue) == 0x000038, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_CreateAssetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_GetClass_ReturnValue) == 0x0000A0, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_GetClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_IsUAsset_ReturnValue) == 0x0000A8, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_IsUAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_GetClassDisplayName_ReturnValue) == 0x0000B0, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_GetClassDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x0000C0, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_GetAssetType, CallFunc_BooleanAND_ReturnValue) == 0x0000C1, "Member 'BF_EditorScriptUtils_C_GetAssetType::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_OutputLogFile \ +static_assert(alignof(BF_EditorScriptUtils_C_OutputLogFile) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_OutputLogFile"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_OutputLogFile) == 0x000028, "Wrong size on BF_EditorScriptUtils_C_OutputLogFile"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_OutputLogFile, StringLines) == 0x000000, "Member 'BF_EditorScriptUtils_C_OutputLogFile::StringLines' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_OutputLogFile, FullFilePath) == 0x000010, "Member 'BF_EditorScriptUtils_C_OutputLogFile::FullFilePath' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_OutputLogFile, __WorldContext) == 0x000020, "Member 'BF_EditorScriptUtils_C_OutputLogFile::__WorldContext' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_PrintAllObjectProperties \ +static_assert(alignof(BF_EditorScriptUtils_C_PrintAllObjectProperties) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_PrintAllObjectProperties"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_PrintAllObjectProperties) == 0x0001A8, "Wrong size on BF_EditorScriptUtils_C_PrintAllObjectProperties"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, Object) == 0x000000, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::Object' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, __WorldContext) == 0x000008, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_GetAllPublicFloatProperties_ReturnValue) == 0x000010, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_GetAllPublicFloatProperties_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, Temp_int_Array_Index_Variable) == 0x000060, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Map_Values_Values) == 0x000068, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Map_Keys_Keys) == 0x000078, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, K2Node_MakeStruct_FormatArgumentData) == 0x000088, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Array_Get_Item) == 0x0000D8, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Array_Length_ReturnValue) == 0x0000E8, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Conv_StringToText_ReturnValue) == 0x0000F0, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, Temp_int_Loop_Counter_Variable) == 0x000108, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, K2Node_MakeStruct_FormatArgumentData_1) == 0x000110, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, K2Node_MakeArray_Array) == 0x000160, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Less_IntInt_ReturnValue) == 0x000170, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Format_ReturnValue) == 0x000178, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Conv_TextToString_ReturnValue) == 0x000190, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintAllObjectProperties, CallFunc_Add_IntInt_ReturnValue) == 0x0001A0, "Member 'BF_EditorScriptUtils_C_PrintAllObjectProperties::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_PrintTime \ +static_assert(alignof(BF_EditorScriptUtils_C_PrintTime) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_PrintTime"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_PrintTime) == 0x0000A8, "Wrong size on BF_EditorScriptUtils_C_PrintTime"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, __WorldContext) == 0x000000, "Member 'BF_EditorScriptUtils_C_PrintTime::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_GetTimeOfDay_ReturnValue) == 0x000008, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_GetTimeOfDay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_BreakTimespan_Days) == 0x000010, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_BreakTimespan_Days' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_BreakTimespan_Hours) == 0x000014, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_BreakTimespan_Hours' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_BreakTimespan_Minutes) == 0x000018, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_BreakTimespan_Minutes' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_BreakTimespan_Seconds) == 0x00001C, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_BreakTimespan_Seconds' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_BreakTimespan_Milliseconds) == 0x000020, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_BreakTimespan_Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Conv_IntToString_ReturnValue) == 0x000028, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Conv_IntToString_ReturnValue_1) == 0x000038, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Conv_IntToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Concat_StrStr_ReturnValue) == 0x000048, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Conv_IntToString_ReturnValue_2) == 0x000058, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Conv_IntToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000068, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000078, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000088, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_PrintTime, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000098, "Member 'BF_EditorScriptUtils_C_PrintTime::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_EditorScriptUtils_C_StringArraysCompare \ +static_assert(alignof(BF_EditorScriptUtils_C_StringArraysCompare) == 0x000008, "Wrong alignment on BF_EditorScriptUtils_C_StringArraysCompare"); \ +static_assert(sizeof(BF_EditorScriptUtils_C_StringArraysCompare) == 0x0000B8, "Wrong size on BF_EditorScriptUtils_C_StringArraysCompare"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, A) == 0x000000, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::A' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, B) == 0x000010, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::B' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, __WorldContext) == 0x000020, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Commonalities) == 0x000028, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Commonalities' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CommonParams) == 0x000030, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CommonParams' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, OutCommonParams) == 0x000040, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::OutCommonParams' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, OutCommonalities) == 0x000050, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::OutCommonalities' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Temp_int_Variable) == 0x000054, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Array_Length_ReturnValue_1) == 0x00005C, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Temp_int_Loop_Counter_Variable) == 0x000060, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Temp_int_Array_Index_Variable) == 0x000064, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Array_Get_Item) == 0x000070, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Add_IntInt_ReturnValue) == 0x000080, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Temp_int_Loop_Counter_Variable_1) == 0x000084, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Less_IntInt_ReturnValue_1) == 0x000088, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Add_IntInt_ReturnValue_1) == 0x00008C, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, Temp_int_Array_Index_Variable_1) == 0x000090, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Array_Get_Item_1) == 0x000098, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_EqualEqual_StriStri_ReturnValue) == 0x0000A8, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_EqualEqual_StriStri_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Array_Add_ReturnValue) == 0x0000AC, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_EditorScriptUtils_C_StringArraysCompare, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000B0, "Member 'BF_EditorScriptUtils_C_StringArraysCompare::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBF_EditorScriptUtils_C \ +static_assert(alignof(UBF_EditorScriptUtils_C) == 0x000008, "Wrong alignment on UBF_EditorScriptUtils_C"); \ +static_assert(sizeof(UBF_EditorScriptUtils_C) == 0x000028, "Wrong size on UBF_EditorScriptUtils_C"); \ + +#define DUMPER7_ASSERTS_CM_WallClimb_C_BlueprintModifyCamera \ +static_assert(alignof(CM_WallClimb_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_WallClimb_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_WallClimb_C_BlueprintModifyCamera) == 0x000230, "Wrong size on CM_WallClimb_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_WallClimb_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_WallClimb_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_WallClimb_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_WallClimb_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_WallClimb_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_WallClimb_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_WallClimb_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000078, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetActorForwardVector_ReturnValue) == 0x000080, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_EvaluateCurve_Wave) == 0x000098, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_EvaluateCurve_Wave' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000A0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x0000B8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000C0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetActorUpVector_ReturnValue) == 0x0000D8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetActorUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_EvaluateCurve_Wave_1) == 0x000108, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_EvaluateCurve_Wave_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_EvaluateCurve_Wave_2) == 0x000110, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_EvaluateCurve_Wave_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000118, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_ReturnValue) == 0x000130, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000148, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_ComposeRotators_ReturnValue) == 0x000160, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000178, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000190, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000198, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x0001A0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue) == 0x0001A8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0001B0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue_1) == 0x0001B8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x0001C0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x0001C8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0001D0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0001D8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue_2) == 0x0001E0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0001E8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001F0, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001F8, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000200, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000208, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue) == 0x000210, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000218, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x000220, "Member 'CM_WallClimb_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000224, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000228, "Member 'CM_WallClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WallClimb_C_EvaluateCurve \ +static_assert(alignof(CM_WallClimb_C_EvaluateCurve) == 0x000008, "Wrong alignment on CM_WallClimb_C_EvaluateCurve"); \ +static_assert(sizeof(CM_WallClimb_C_EvaluateCurve) == 0x000080, "Wrong size on CM_WallClimb_C_EvaluateCurve"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, TimeOffset) == 0x000000, "Member 'CM_WallClimb_C_EvaluateCurve::TimeOffset' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, TimeMultiplier) == 0x000008, "Member 'CM_WallClimb_C_EvaluateCurve::TimeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, Scale) == 0x000010, "Member 'CM_WallClimb_C_EvaluateCurve::Scale' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, WaveOffset) == 0x000018, "Member 'CM_WallClimb_C_EvaluateCurve::WaveOffset' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, Wave) == 0x000020, "Member 'CM_WallClimb_C_EvaluateCurve::Wave' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000028, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000030, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000038, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000040, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_GetFloatValue_ReturnValue) == 0x000048, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000058, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000060, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000068, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000070, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WallClimb_C_EvaluateCurve, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000078, "Member 'CM_WallClimb_C_EvaluateCurve::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WallClimb_C_SetStartTimes \ +static_assert(alignof(CM_WallClimb_C_SetStartTimes) == 0x000008, "Wrong alignment on CM_WallClimb_C_SetStartTimes"); \ +static_assert(sizeof(CM_WallClimb_C_SetStartTimes) == 0x000008, "Wrong size on CM_WallClimb_C_SetStartTimes"); \ +static_assert(offsetof(CM_WallClimb_C_SetStartTimes, BoostStartTime_0) == 0x000000, "Member 'CM_WallClimb_C_SetStartTimes::BoostStartTime_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WallClimb_C_UpdateVelocity \ +static_assert(alignof(CM_WallClimb_C_UpdateVelocity) == 0x000008, "Wrong alignment on CM_WallClimb_C_UpdateVelocity"); \ +static_assert(sizeof(CM_WallClimb_C_UpdateVelocity) == 0x000008, "Wrong size on CM_WallClimb_C_UpdateVelocity"); \ +static_assert(offsetof(CM_WallClimb_C_UpdateVelocity, NewParam) == 0x000000, "Member 'CM_WallClimb_C_UpdateVelocity::NewParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WallClimb_C \ +static_assert(alignof(UCM_WallClimb_C) == 0x000008, "Wrong alignment on UCM_WallClimb_C"); \ +static_assert(sizeof(UCM_WallClimb_C) == 0x0000D0, "Wrong size on UCM_WallClimb_C"); \ +static_assert(offsetof(UCM_WallClimb_C, BoostFOV) == 0x0000A0, "Member 'UCM_WallClimb_C::BoostFOV' has a wrong offset!"); \ +static_assert(offsetof(UCM_WallClimb_C, BoostStartTime) == 0x0000A8, "Member 'UCM_WallClimb_C::BoostStartTime' has a wrong offset!"); \ +static_assert(offsetof(UCM_WallClimb_C, BoostPitch) == 0x0000B0, "Member 'UCM_WallClimb_C::BoostPitch' has a wrong offset!"); \ +static_assert(offsetof(UCM_WallClimb_C, Velocity) == 0x0000B8, "Member 'UCM_WallClimb_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UCM_WallClimb_C, NewVar) == 0x0000C0, "Member 'UCM_WallClimb_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UCM_WallClimb_C, MenuBool) == 0x0000C8, "Member 'UCM_WallClimb_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_WallClimbCooldown_C \ +static_assert(alignof(UGE_WallClimbCooldown_C) == 0x000008, "Wrong alignment on UGE_WallClimbCooldown_C"); \ +static_assert(sizeof(UGE_WallClimbCooldown_C) == 0x000A70, "Wrong size on UGE_WallClimbCooldown_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleConfirm_Selected_C \ +static_assert(alignof(UCommonTextStyleConfirm_Selected_C) == 0x000010, "Wrong alignment on UCommonTextStyleConfirm_Selected_C"); \ +static_assert(sizeof(UCommonTextStyleConfirm_Selected_C) == 0x0001B0, "Wrong size on UCommonTextStyleConfirm_Selected_C"); \ + +#define DUMPER7_ASSERTS_BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet \ +static_assert(alignof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet) == 0x000008, "Wrong alignment on BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet"); \ +static_assert(sizeof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet) == 0x000118, "Wrong size on BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, EntryPoint) == 0x000000, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000018, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors) == 0x000060, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_bool_Has_Been_Initd_Variable) == 0x000070, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_bool_IsClosed_Variable) == 0x000071, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_RandomFloatInRange_ReturnValue) == 0x000078, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000080, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, K2Node_Event_DeltaSeconds) == 0x000088, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Array_Length_ReturnValue) == 0x00008C, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_int_Loop_Counter_Variable) == 0x000090, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Less_IntInt_ReturnValue) == 0x000094, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Add_IntInt_ReturnValue) == 0x000098, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_int_Variable) == 0x00009C, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x0000A0, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_GetDisplayName_ReturnValue) == 0x0000A8, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000B8, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Concat_StrStr_ReturnValue) == 0x0000C0, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Array_Length_ReturnValue_1) == 0x0000D0, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, Temp_int_Array_Index_Variable) == 0x0000D4, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Conv_IntToString_ReturnValue) == 0x0000D8, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Array_Get_Item) == 0x0000E8, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000F0, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000100, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet, CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast) == 0x000110, "Member 'BP_EnemeySafetyNet_C_ExecuteUbergraph_BP_EnemeySafetyNet::CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemeySafetyNet_C_ProcessEnemy \ +static_assert(alignof(BP_EnemeySafetyNet_C_ProcessEnemy) == 0x000010, "Wrong alignment on BP_EnemeySafetyNet_C_ProcessEnemy"); \ +static_assert(sizeof(BP_EnemeySafetyNet_C_ProcessEnemy) == 0x000580, "Wrong size on BP_EnemeySafetyNet_C_ProcessEnemy"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, NPC) == 0x000000, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::NPC' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetDisplayName_ReturnValue) == 0x000008, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue) == 0x000018, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToString_ReturnValue) == 0x000028, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000038, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000050, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToString_ReturnValue_1) == 0x000060, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000070, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetDisplayName_ReturnValue_1) == 0x000080, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetDisplayName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000090, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0000A0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000B0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToString_ReturnValue_2) == 0x0000B8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetCameraRotation_ReturnValue) == 0x0000C8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_6) == 0x0000E0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetCameraLocation_ReturnValue) == 0x0000F0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_7) == 0x000108, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_MakeTransform_ReturnValue) == 0x000120, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetTransformAxisVector_ReturnValue) == 0x000180, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetTransformAxisVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000198, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0001B0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0001C8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Normal_ReturnValue) == 0x0001E0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Dot_VectorVector_ReturnValue) == 0x0001F8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000200, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_DegAcos_ReturnValue) == 0x000218, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000220, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000238, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation) == 0x000240, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_ProjectPointToNavigation_ReturnValue) == 0x000258, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_ProjectPointToNavigation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, Temp_bool_Variable) == 0x000259, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Not_PreBool_ReturnValue) == 0x00025A, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_FindPathToLocationSynchronously_ReturnValue) == 0x000260, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_FindPathToLocationSynchronously_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000268, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetPathLength_ReturnValue) == 0x000280, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetPathLength_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000288, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000290, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_EqualEqual_VectorVector_ReturnValue) == 0x000298, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_EqualEqual_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetCameraRotation_ReturnValue_1) == 0x0002A0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetCameraLocation_ReturnValue_1) == 0x0002B8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_MakeTransform_ReturnValue_1) == 0x0002D0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000330, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000340, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetTransformAxisVector_ReturnValue_1) == 0x000348, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetTransformAxisVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Not_PreBool_ReturnValue_1) == 0x000360, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000368, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000378, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_IsValid_ReturnValue) == 0x000379, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Not_PreBool_ReturnValue_2) == 0x00037A, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_BooleanAND_ReturnValue) == 0x00037B, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000380, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Normal_ReturnValue_1) == 0x000398, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0003B0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_DegAcos_ReturnValue_1) == 0x0003B8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_DegAcos_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0003C0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0003C8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, Temp_int_Variable) == 0x0003CC, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToString_ReturnValue_3) == 0x0003D0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToString_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x0003E0, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_8) == 0x0003E8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_MapRangeClamped_ReturnValue) == 0x0003F8, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Concat_StrStr_ReturnValue_9) == 0x000400, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Concat_StrStr_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_VLerp_ReturnValue) == 0x000410, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1) == 0x000428, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_ProjectPointToNavigation_ReturnValue_1) == 0x000440, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_ProjectPointToNavigation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_Add_IntInt_ReturnValue) == 0x000444, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000448, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_BooleanAND_ReturnValue_1) == 0x000449, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000450, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000538, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000540, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_WasRecentlyRendered_ReturnValue) == 0x000558, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_WasRecentlyRendered_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_FindPathToActorSynchronously_ReturnValue) == 0x000560, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_FindPathToActorSynchronously_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_GetPathLength_ReturnValue_1) == 0x000568, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_GetPathLength_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000570, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ProcessEnemy, CallFunc_VLerp_Alpha_ImplicitCast) == 0x000574, "Member 'BP_EnemeySafetyNet_C_ProcessEnemy::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemeySafetyNet_C_ReceiveTick \ +static_assert(alignof(BP_EnemeySafetyNet_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_EnemeySafetyNet_C_ReceiveTick"); \ +static_assert(sizeof(BP_EnemeySafetyNet_C_ReceiveTick) == 0x000004, "Wrong size on BP_EnemeySafetyNet_C_ReceiveTick"); \ +static_assert(offsetof(BP_EnemeySafetyNet_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_EnemeySafetyNet_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemeySafetyNet_C \ +static_assert(alignof(ABP_EnemeySafetyNet_C) == 0x000008, "Wrong alignment on ABP_EnemeySafetyNet_C"); \ +static_assert(sizeof(ABP_EnemeySafetyNet_C) == 0x000348, "Wrong size on ABP_EnemeySafetyNet_C"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, UberGraphFrame) == 0x000298, "Member 'ABP_EnemeySafetyNet_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, Sphere) == 0x0002A0, "Member 'ABP_EnemeySafetyNet_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, Billboard) == 0x0002A8, "Member 'ABP_EnemeySafetyNet_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, Scene) == 0x0002B0, "Member 'ABP_EnemeySafetyNet_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, EnemiesToDie) == 0x0002B8, "Member 'ABP_EnemeySafetyNet_C::EnemiesToDie' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, CurrentEnemyInArray) == 0x0002C8, "Member 'ABP_EnemeySafetyNet_C::CurrentEnemyInArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, SafetyNetTimer) == 0x0002D0, "Member 'ABP_EnemeySafetyNet_C::SafetyNetTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, Projected_Location) == 0x0002D8, "Member 'ABP_EnemeySafetyNet_C::Projected_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, Spawners) == 0x0002F0, "Member 'ABP_EnemeySafetyNet_C::Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, IsActive) == 0x0002F8, "Member 'ABP_EnemeySafetyNet_C::IsActive' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, NPC_has_any_of_these_Tags) == 0x000300, "Member 'ABP_EnemeySafetyNet_C::NPC_has_any_of_these_Tags' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, PathStartPoint) == 0x000320, "Member 'ABP_EnemeySafetyNet_C::PathStartPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, MaxIterations) == 0x000338, "Member 'ABP_EnemeySafetyNet_C::MaxIterations' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, CurrentNumNPCProcessed) == 0x00033C, "Member 'ABP_EnemeySafetyNet_C::CurrentNumNPCProcessed' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, MaxNPCProcessedPerFrame) == 0x000340, "Member 'ABP_EnemeySafetyNet_C::MaxNPCProcessedPerFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemeySafetyNet_C, ForceDisable) == 0x000344, "Member 'ABP_EnemeySafetyNet_C::ForceDisable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Crouch_C \ +static_assert(alignof(UGE_Crouch_C) == 0x000008, "Wrong alignment on UGE_Crouch_C"); \ +static_assert(sizeof(UGE_Crouch_C) == 0x000A70, "Wrong size on UGE_Crouch_C"); \ + +#define DUMPER7_ASSERTS_UGE_sprintStumbleBlocker_C \ +static_assert(alignof(UGE_sprintStumbleBlocker_C) == 0x000008, "Wrong alignment on UGE_sprintStumbleBlocker_C"); \ +static_assert(sizeof(UGE_sprintStumbleBlocker_C) == 0x000A70, "Wrong size on UGE_sprintStumbleBlocker_C"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerPunch_Hit_C \ +static_assert(alignof(UGE_PlayerPunch_Hit_C) == 0x000008, "Wrong alignment on UGE_PlayerPunch_Hit_C"); \ +static_assert(sizeof(UGE_PlayerPunch_Hit_C) == 0x000A70, "Wrong size on UGE_PlayerPunch_Hit_C"); \ + +#define DUMPER7_ASSERTS_UGE_Cooldown_kick_F_C \ +static_assert(alignof(UGE_Cooldown_kick_F_C) == 0x000008, "Wrong alignment on UGE_Cooldown_kick_F_C"); \ +static_assert(sizeof(UGE_Cooldown_kick_F_C) == 0x000A70, "Wrong size on UGE_Cooldown_kick_F_C"); \ + +#define DUMPER7_ASSERTS_UGE_ComboDash_Cooldown_C \ +static_assert(alignof(UGE_ComboDash_Cooldown_C) == 0x000008, "Wrong alignment on UGE_ComboDash_Cooldown_C"); \ +static_assert(sizeof(UGE_ComboDash_Cooldown_C) == 0x000A70, "Wrong size on UGE_ComboDash_Cooldown_C"); \ + +#define DUMPER7_ASSERTS_UGE_WallJumpDelay_C \ +static_assert(alignof(UGE_WallJumpDelay_C) == 0x000008, "Wrong alignment on UGE_WallJumpDelay_C"); \ +static_assert(sizeof(UGE_WallJumpDelay_C) == 0x000A70, "Wrong size on UGE_WallJumpDelay_C"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_CatBurglar_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_CatBurglar_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_CatBurglar_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_CatBurglar_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_CatBurglar_C"); \ + +#define DUMPER7_ASSERTS_UBP_WallClimbShake2_C \ +static_assert(alignof(UBP_WallClimbShake2_C) == 0x000010, "Wrong alignment on UBP_WallClimbShake2_C"); \ +static_assert(sizeof(UBP_WallClimbShake2_C) == 0x0000E0, "Wrong size on UBP_WallClimbShake2_C"); \ + +#define DUMPER7_ASSERTS_UGE_VampireSprint_C \ +static_assert(alignof(UGE_VampireSprint_C) == 0x000008, "Wrong alignment on UGE_VampireSprint_C"); \ +static_assert(sizeof(UGE_VampireSprint_C) == 0x000A70, "Wrong size on UGE_VampireSprint_C"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_CacheData \ +static_assert(alignof(GA_Ma_Feed_C_CacheData) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_CacheData"); \ +static_assert(sizeof(GA_Ma_Feed_C_CacheData) == 0x0000F8, "Wrong size on GA_Ma_Feed_C_CacheData"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, GameplayEventData) == 0x000000, "Member 'GA_Ma_Feed_C_CacheData::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_AsHera_Dialogue_Info) == 0x0000B0, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_AsHera_Dialogue_Info' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_AsWrestler_Dialogue_Rig) == 0x0000C0, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_AsWrestler_Dialogue_Rig' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_bSuccess_1) == 0x0000C8, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, CallFunc_GetPlayerController_ReturnValue) == 0x0000D0, "Member 'GA_Ma_Feed_C_CacheData::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, CallFunc_IsValid_ReturnValue) == 0x0000D8, "Member 'GA_Ma_Feed_C_CacheData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, CallFunc_IsValid_ReturnValue_1) == 0x0000D9, "Member 'GA_Ma_Feed_C_CacheData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x0000E0, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CacheData, K2Node_DynamicCast_bSuccess_2) == 0x0000F0, "Member 'GA_Ma_Feed_C_CacheData::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_CleanUp \ +static_assert(alignof(GA_Ma_Feed_C_CleanUp) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_CleanUp"); \ +static_assert(sizeof(GA_Ma_Feed_C_CleanUp) == 0x000018, "Wrong size on GA_Ma_Feed_C_CleanUp"); \ +static_assert(offsetof(GA_Ma_Feed_C_CleanUp, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000000, "Member 'GA_Ma_Feed_C_CleanUp::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_CleanUp, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_Ma_Feed_C_CleanUp::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed \ +static_assert(alignof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed"); \ +static_assert(sizeof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed) == 0x000120, "Wrong size on GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, EntryPoint) == 0x000000, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, K2Node_Event_EventData) == 0x000010, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_WrestlerTaskStartDialogue_ReturnValue) == 0x0000C8, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_WrestlerTaskStartDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, K2Node_CreateDelegate_OutputDelegate) == 0x0000D0, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_IsValid_ReturnValue) == 0x0000E0, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000E4, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000F8, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, Temp_delegate_Variable) == 0x000100, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_K2_CommitAbilityCost_ReturnValue) == 0x000110, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_K2_CommitAbilityCost_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_Delay_Duration_ImplicitCast) == 0x000114, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed, CallFunc_Delay_Duration_ImplicitCast_1) == 0x000118, "Member 'GA_Ma_Feed_C_ExecuteUbergraph_GA_Ma_Feed::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_Fade_Camera \ +static_assert(alignof(GA_Ma_Feed_C_Fade_Camera) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_Fade_Camera"); \ +static_assert(sizeof(GA_Ma_Feed_C_Fade_Camera) == 0x000038, "Wrong size on GA_Ma_Feed_C_Fade_Camera"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, FromAlpha) == 0x000000, "Member 'GA_Ma_Feed_C_Fade_Camera::FromAlpha' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, ToAlpha) == 0x000008, "Member 'GA_Ma_Feed_C_Fade_Camera::ToAlpha' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, Duration) == 0x000010, "Member 'GA_Ma_Feed_C_Fade_Camera::Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, Hold) == 0x000018, "Member 'GA_Ma_Feed_C_Fade_Camera::Hold' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_Not_PreBool_ReturnValue) == 0x000019, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_GetPlayerController_ReturnValue) == 0x000020, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_IsValid_ReturnValue_1) == 0x000029, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_StartCameraFade_Duration_ImplicitCast) == 0x00002C, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_StartCameraFade_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_StartCameraFade_ToAlpha_ImplicitCast) == 0x000030, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_StartCameraFade_ToAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_Fade_Camera, CallFunc_StartCameraFade_FromAlpha_ImplicitCast) == 0x000034, "Member 'GA_Ma_Feed_C_Fade_Camera::CallFunc_StartCameraFade_FromAlpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_HandleAchievements \ +static_assert(alignof(GA_Ma_Feed_C_HandleAchievements) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_HandleAchievements"); \ +static_assert(sizeof(GA_Ma_Feed_C_HandleAchievements) == 0x000058, "Wrong size on GA_Ma_Feed_C_HandleAchievements"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, Temp_int_Array_Index_Variable) == 0x000000, "Member 'GA_Ma_Feed_C_HandleAchievements::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'GA_Ma_Feed_C_HandleAchievements::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Array_Get_Item) == 0x00000C, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Array_Length_ReturnValue) == 0x000014, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Map_Find_Value) == 0x000018, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Less_IntInt_ReturnValue) == 0x000021, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Map_Find_Value_1) == 0x000028, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_HandleAchievements, CallFunc_Map_Find_ReturnValue_1) == 0x000050, "Member 'GA_Ma_Feed_C_HandleAchievements::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Ma_Feed_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Ma_Feed_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Ma_Feed_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Ma_Feed_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Ma_Feed_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Feed_C_GenerateSequenceBindings \ +static_assert(alignof(GA_Ma_Feed_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_Ma_Feed_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_Ma_Feed_C_GenerateSequenceBindings) == 0x0000E8, "Wrong size on GA_Ma_Feed_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, TargetActor) == 0x000000, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000008, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, Temp_bool_Variable) == 0x000018, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000028, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000038, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000040, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, CallFunc_GetSkeleton_ReturnValue) == 0x000058, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::CallFunc_GetSkeleton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding_1) == 0x000060, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000078, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000080, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000088, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_Select_Default) == 0x000098, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding_2) == 0x0000B0, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeArray_Array_2) == 0x0000C8, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Feed_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x0000D8, "Member 'GA_Ma_Feed_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ma_Feed_C \ +static_assert(alignof(UGA_Ma_Feed_C) == 0x000008, "Wrong alignment on UGA_Ma_Feed_C"); \ +static_assert(sizeof(UGA_Ma_Feed_C) == 0x000760, "Wrong size on UGA_Ma_Feed_C"); \ +static_assert(offsetof(UGA_Ma_Feed_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ma_Feed_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, Instigator) == 0x000670, "Member 'UGA_Ma_Feed_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FeedTarget) == 0x000678, "Member 'UGA_Ma_Feed_C::FeedTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, TargetDialogueRig) == 0x000680, "Member 'UGA_Ma_Feed_C::TargetDialogueRig' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, Dialogue_Info) == 0x000688, "Member 'UGA_Ma_Feed_C::Dialogue_Info' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FadeDuration) == 0x000690, "Member 'UGA_Ma_Feed_C::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FeedTriggerProperty) == 0x000698, "Member 'UGA_Ma_Feed_C::FeedTriggerProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FeederTags) == 0x0006A0, "Member 'UGA_Ma_Feed_C::FeederTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FeederAchievementProperty) == 0x0006B0, "Member 'UGA_Ma_Feed_C::FeederAchievementProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, FeederCommonBlood) == 0x000700, "Member 'UGA_Ma_Feed_C::FeederCommonBlood' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, OriginalIntroParams) == 0x000708, "Member 'UGA_Ma_Feed_C::OriginalIntroParams' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, HardCut) == 0x000730, "Member 'UGA_Ma_Feed_C::HardCut' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Feed_C, HasFed) == 0x000758, "Member 'UGA_Ma_Feed_C::HasFed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_WalkSpeed_C \ +static_assert(alignof(UGE_WalkSpeed_C) == 0x000008, "Wrong alignment on UGE_WalkSpeed_C"); \ +static_assert(sizeof(UGE_WalkSpeed_C) == 0x000A70, "Wrong size on UGE_WalkSpeed_C"); \ + +#define DUMPER7_ASSERTS_UBP_Shake_Swipe_C \ +static_assert(alignof(UBP_Shake_Swipe_C) == 0x000010, "Wrong alignment on UBP_Shake_Swipe_C"); \ +static_assert(sizeof(UBP_Shake_Swipe_C) == 0x0000E0, "Wrong size on UBP_Shake_Swipe_C"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Unarmed_C \ +static_assert(alignof(UBP_WeaponInstance_Unarmed_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Unarmed_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Unarmed_C) == 0x0000F0, "Wrong size on UBP_WeaponInstance_Unarmed_C"); \ + +#define DUMPER7_ASSERTS_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff \ +static_assert(alignof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff) == 0x000008, "Wrong alignment on Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff"); \ +static_assert(sizeof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff) == 0x000070, "Wrong size on Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, EntryPoint) == 0x000000, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_Array_Length_ReturnValue) == 0x000008, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_Less_IntInt_ReturnValue) == 0x000010, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, Temp_int_Array_Index_Variable) == 0x000014, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_Array_Get_Item) == 0x000018, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000040, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Nightclub_TV) == 0x000048, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Nightclub_TV' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, K2Node_Event_InAutomata) == 0x000058, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, K2Node_Event_InState) == 0x000060, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ExecuteUbergraph_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute \ +static_assert(alignof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute) == 0x000008, "Wrong alignment on Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute"); \ +static_assert(sizeof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute) == 0x000010, "Wrong size on Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute, InState) == 0x000008, "Member 'Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C \ +static_assert(alignof(UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C) == 0x000008, "Wrong alignment on UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C"); \ +static_assert(sizeof(UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C) == 0x0000A8, "Wrong size on UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C"); \ +static_assert(offsetof(UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C, UberGraphFrame) == 0x000088, "Member 'UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C, Turn_on) == 0x000090, "Member 'UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C::Turn_on' has a wrong offset!"); \ +static_assert(offsetof(UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C, NewVar) == 0x000098, "Member 'UTurn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_C::NewVar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy \ +static_assert(alignof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy) == 0x000008, "Wrong alignment on UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy"); \ +static_assert(sizeof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy) == 0x000070, "Wrong size on UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, EntryPoint) == 0x000000, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, Temp_int_Array_Index_Variable) == 0x000004, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, K2Node_Event_InAutomata) == 0x000008, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, K2Node_Event_InState) == 0x000010, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_Array_Get_Item) == 0x000020, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, K2Node_DynamicCast_AsBP_Hide_Enemy) == 0x000058, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::K2Node_DynamicCast_AsBP_Hide_Enemy' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'UnhideEnemy_C_ExecuteUbergraph_UnhideEnemy::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnhideEnemy_C_ReceiveExecute \ +static_assert(alignof(UnhideEnemy_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnhideEnemy_C_ReceiveExecute"); \ +static_assert(sizeof(UnhideEnemy_C_ReceiveExecute) == 0x000010, "Wrong size on UnhideEnemy_C_ReceiveExecute"); \ +static_assert(offsetof(UnhideEnemy_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnhideEnemy_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnhideEnemy_C_ReceiveExecute, InState) == 0x000008, "Member 'UnhideEnemy_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnhideEnemy_C \ +static_assert(alignof(UUnhideEnemy_C) == 0x000008, "Wrong alignment on UUnhideEnemy_C"); \ +static_assert(sizeof(UUnhideEnemy_C) == 0x0000A8, "Wrong size on UUnhideEnemy_C"); \ +static_assert(offsetof(UUnhideEnemy_C, UberGraphFrame) == 0x000088, "Member 'UUnhideEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UUnhideEnemy_C, EnemyPreSpawn) == 0x000090, "Member 'UUnhideEnemy_C::EnemyPreSpawn' has a wrong offset!"); \ +static_assert(offsetof(UUnhideEnemy_C, In_Objective) == 0x0000A0, "Member 'UUnhideEnemy_C::In_Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerPunch_Base_C \ +static_assert(alignof(UGE_PlayerPunch_Base_C) == 0x000008, "Wrong alignment on UGE_PlayerPunch_Base_C"); \ +static_assert(sizeof(UGE_PlayerPunch_Base_C) == 0x000A70, "Wrong size on UGE_PlayerPunch_Base_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_PunchImpact_Sharp_C \ +static_assert(alignof(UCameraShake_PunchImpact_Sharp_C) == 0x000010, "Wrong alignment on UCameraShake_PunchImpact_Sharp_C"); \ +static_assert(sizeof(UCameraShake_PunchImpact_Sharp_C) == 0x000230, "Wrong size on UCameraShake_PunchImpact_Sharp_C"); \ + +#define DUMPER7_ASSERTS_UGE_Player_CounterHit_C \ +static_assert(alignof(UGE_Player_CounterHit_C) == 0x000008, "Wrong alignment on UGE_Player_CounterHit_C"); \ +static_assert(sizeof(UGE_Player_CounterHit_C) == 0x000A70, "Wrong size on UGE_Player_CounterHit_C"); \ + +#define DUMPER7_ASSERTS_BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05 \ +static_assert(alignof(BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05) == 0x000004, "Wrong alignment on BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05"); \ +static_assert(sizeof(BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05) == 0x000004, "Wrong size on BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05"); \ +static_assert(offsetof(BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05, EntryPoint) == 0x000000, "Member 'BPC_lightutility_cage_01_warehouse_05_C_ExecuteUbergraph_BPC_lightutility_cage_01_warehouse_05::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPC_lightutility_cage_01_warehouse_05_C \ +static_assert(alignof(ABPC_lightutility_cage_01_warehouse_05_C) == 0x000008, "Wrong alignment on ABPC_lightutility_cage_01_warehouse_05_C"); \ +static_assert(sizeof(ABPC_lightutility_cage_01_warehouse_05_C) == 0x0007D8, "Wrong size on ABPC_lightutility_cage_01_warehouse_05_C"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, UberGraphFrame_BPC_lightutility_cage_01_warehouse_05_C) == 0x0007A8, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::UberGraphFrame_BPC_lightutility_cage_01_warehouse_05_C' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, Timeline_Flicker_Colour_F963CEA646303DF3294C9E9BA769B0DB) == 0x0007B0, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::Timeline_Flicker_Colour_F963CEA646303DF3294C9E9BA769B0DB' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, Timeline_Flicker_Emissive_F963CEA646303DF3294C9E9BA769B0DB) == 0x0007C0, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::Timeline_Flicker_Emissive_F963CEA646303DF3294C9E9BA769B0DB' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, Timeline_Flicker_F963CEA646303DF3294C9E9BA769B0DB) == 0x0007C4, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::Timeline_Flicker_F963CEA646303DF3294C9E9BA769B0DB' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, Timeline__Direction_F963CEA646303DF3294C9E9BA769B0DB) == 0x0007C8, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::Timeline__Direction_F963CEA646303DF3294C9E9BA769B0DB' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lightutility_cage_01_warehouse_05_C, Timeline) == 0x0007D0, "Member 'ABPC_lightutility_cage_01_warehouse_05_C::Timeline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base \ +static_assert(alignof(BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base) == 0x000004, "Wrong alignment on BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base"); \ +static_assert(sizeof(BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base) == 0x000008, "Wrong size on BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base"); \ +static_assert(offsetof(BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base, EntryPoint) == 0x000000, "Member 'BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base, CallFunc_IsValid_ReturnValue_1) == 0x000005, "Member 'BP_NewClueTrailClue_Base_C_ExecuteUbergraph_BP_NewClueTrailClue_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrailClue_Base_C_UserConstructionScript \ +static_assert(alignof(BP_NewClueTrailClue_Base_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_NewClueTrailClue_Base_C_UserConstructionScript"); \ +static_assert(sizeof(BP_NewClueTrailClue_Base_C_UserConstructionScript) == 0x000002, "Wrong size on BP_NewClueTrailClue_Base_C_UserConstructionScript"); \ +static_assert(offsetof(BP_NewClueTrailClue_Base_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_NewClueTrailClue_Base_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrailClue_Base_C_UserConstructionScript, CallFunc_IsValid_ReturnValue_1) == 0x000001, "Member 'BP_NewClueTrailClue_Base_C_UserConstructionScript::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_NewClueTrailClue_Base_C \ +static_assert(alignof(ABP_NewClueTrailClue_Base_C) == 0x000008, "Wrong alignment on ABP_NewClueTrailClue_Base_C"); \ +static_assert(sizeof(ABP_NewClueTrailClue_Base_C) == 0x0002C8, "Wrong size on ABP_NewClueTrailClue_Base_C"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, UberGraphFrame) == 0x000298, "Member 'ABP_NewClueTrailClue_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, Billboard) == 0x0002A0, "Member 'ABP_NewClueTrailClue_Base_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, Scene) == 0x0002A8, "Member 'ABP_NewClueTrailClue_Base_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, Decal) == 0x0002B0, "Member 'ABP_NewClueTrailClue_Base_C::Decal' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, HS_Mat) == 0x0002B8, "Member 'ABP_NewClueTrailClue_Base_C::HS_Mat' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrailClue_Base_C, No_HS_Mat) == 0x0002C0, "Member 'ABP_NewClueTrailClue_Base_C::No_HS_Mat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerWeaponManager_C_AddAmmo \ +static_assert(alignof(WrestlerPlayerWeaponManager_C_AddAmmo) == 0x000004, "Wrong alignment on WrestlerPlayerWeaponManager_C_AddAmmo"); \ +static_assert(sizeof(WrestlerPlayerWeaponManager_C_AddAmmo) == 0x000038, "Wrong size on WrestlerPlayerWeaponManager_C_AddAmmo"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, AmmoTag) == 0x000000, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::AmmoTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, Ammo) == 0x000008, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::Ammo' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, Filled) == 0x00000C, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::Filled' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, FillBlocked) == 0x00000D, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::FillBlocked' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_Value) == 0x000010, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_ReturnValue) == 0x000014, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_Value_1) == 0x000018, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_ReturnValue_1) == 0x00001C, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_Value_2) == 0x000024, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_ReturnValue_2) == 0x000028, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000029, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_Value_3) == 0x00002C, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Map_Find_ReturnValue_3) == 0x000030, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x000031, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_AddAmmo, CallFunc_Min_ReturnValue) == 0x000034, "Member 'WrestlerPlayerWeaponManager_C_AddAmmo::CallFunc_Min_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerWeaponManager_C_CanCollect \ +static_assert(alignof(WrestlerPlayerWeaponManager_C_CanCollect) == 0x000004, "Wrong alignment on WrestlerPlayerWeaponManager_C_CanCollect"); \ +static_assert(sizeof(WrestlerPlayerWeaponManager_C_CanCollect) == 0x00001C, "Wrong size on WrestlerPlayerWeaponManager_C_CanCollect"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, AmmoType) == 0x000000, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::AmmoType' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CanCollect_0) == 0x000008, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CanCollect_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, AmmoFull) == 0x000009, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::AmmoFull' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CallFunc_Map_Find_Value) == 0x00000C, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CallFunc_Map_Find_ReturnValue) == 0x000010, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CallFunc_Map_Find_Value_1) == 0x000014, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CallFunc_Map_Find_ReturnValue_1) == 0x000018, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_CanCollect, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000019, "Member 'WrestlerPlayerWeaponManager_C_CanCollect::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerPlayerWeaponManager_C_DeductAmmo \ +static_assert(alignof(WrestlerPlayerWeaponManager_C_DeductAmmo) == 0x000004, "Wrong alignment on WrestlerPlayerWeaponManager_C_DeductAmmo"); \ +static_assert(sizeof(WrestlerPlayerWeaponManager_C_DeductAmmo) == 0x000018, "Wrong size on WrestlerPlayerWeaponManager_C_DeductAmmo"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_DeductAmmo, AmmoTag) == 0x000000, "Member 'WrestlerPlayerWeaponManager_C_DeductAmmo::AmmoTag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_DeductAmmo, CallFunc_Map_Find_Value) == 0x000008, "Member 'WrestlerPlayerWeaponManager_C_DeductAmmo::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_DeductAmmo, CallFunc_Map_Find_ReturnValue) == 0x00000C, "Member 'WrestlerPlayerWeaponManager_C_DeductAmmo::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_DeductAmmo, CallFunc_Subtract_IntInt_ReturnValue) == 0x000010, "Member 'WrestlerPlayerWeaponManager_C_DeductAmmo::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerPlayerWeaponManager_C_DeductAmmo, CallFunc_Max_ReturnValue) == 0x000014, "Member 'WrestlerPlayerWeaponManager_C_DeductAmmo::CallFunc_Max_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerPlayerWeaponManager_C \ +static_assert(alignof(UWrestlerPlayerWeaponManager_C) == 0x000008, "Wrong alignment on UWrestlerPlayerWeaponManager_C"); \ +static_assert(sizeof(UWrestlerPlayerWeaponManager_C) == 0x000140, "Wrong size on UWrestlerPlayerWeaponManager_C"); \ +static_assert(offsetof(UWrestlerPlayerWeaponManager_C, AmmoMap) == 0x0000A0, "Member 'UWrestlerPlayerWeaponManager_C::AmmoMap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerPlayerWeaponManager_C, MaxAmmoMap) == 0x0000F0, "Member 'UWrestlerPlayerWeaponManager_C::MaxAmmoMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BR_lightningstrikes_smallDamage_C \ +static_assert(alignof(UGE_BR_lightningstrikes_smallDamage_C) == 0x000008, "Wrong alignment on UGE_BR_lightningstrikes_smallDamage_C"); \ +static_assert(sizeof(UGE_BR_lightningstrikes_smallDamage_C) == 0x000A70, "Wrong size on UGE_BR_lightningstrikes_smallDamage_C"); \ + +#define DUMPER7_ASSERTS_BP_CopTorchSpawner_C_Attach_torch_to_rag_doll \ +static_assert(alignof(BP_CopTorchSpawner_C_Attach_torch_to_rag_doll) == 0x000008, "Wrong alignment on BP_CopTorchSpawner_C_Attach_torch_to_rag_doll"); \ +static_assert(sizeof(BP_CopTorchSpawner_C_Attach_torch_to_rag_doll) == 0x000008, "Wrong size on BP_CopTorchSpawner_C_Attach_torch_to_rag_doll"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_Attach_torch_to_rag_doll, DeadBodyActor) == 0x000000, "Member 'BP_CopTorchSpawner_C_Attach_torch_to_rag_doll::DeadBodyActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner \ +static_assert(alignof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner) == 0x000010, "Wrong alignment on BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner"); \ +static_assert(sizeof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner) == 0x0000D0, "Wrong size on BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, EntryPoint) == 0x000000, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, K2Node_CustomEvent_Enemy) == 0x000018, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000020, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, K2Node_CustomEvent_DeadBodyActor) == 0x000090, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::K2Node_CustomEvent_DeadBodyActor' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000098, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_K2_GetRootComponent_ReturnValue) == 0x0000A0, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000A8, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000B0, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner, CallFunc_K2_AttachToComponent_ReturnValue_1) == 0x0000C0, "Member 'BP_CopTorchSpawner_C_ExecuteUbergraph_BP_CopTorchSpawner::CallFunc_K2_AttachToComponent_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CopTorchSpawner_C_SpawnAndAttachTorch \ +static_assert(alignof(BP_CopTorchSpawner_C_SpawnAndAttachTorch) == 0x000008, "Wrong alignment on BP_CopTorchSpawner_C_SpawnAndAttachTorch"); \ +static_assert(sizeof(BP_CopTorchSpawner_C_SpawnAndAttachTorch) == 0x000008, "Wrong size on BP_CopTorchSpawner_C_SpawnAndAttachTorch"); \ +static_assert(offsetof(BP_CopTorchSpawner_C_SpawnAndAttachTorch, Enemy) == 0x000000, "Member 'BP_CopTorchSpawner_C_SpawnAndAttachTorch::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CopTorchSpawner_C \ +static_assert(alignof(ABP_CopTorchSpawner_C) == 0x000008, "Wrong alignment on ABP_CopTorchSpawner_C"); \ +static_assert(sizeof(ABP_CopTorchSpawner_C) == 0x0002C0, "Wrong size on ABP_CopTorchSpawner_C"); \ +static_assert(offsetof(ABP_CopTorchSpawner_C, UberGraphFrame) == 0x000298, "Member 'ABP_CopTorchSpawner_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CopTorchSpawner_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_CopTorchSpawner_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_CopTorchSpawner_C, Cop_Spawners) == 0x0002A8, "Member 'ABP_CopTorchSpawner_C::Cop_Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_CopTorchSpawner_C, Use_Volumetric_Shadows) == 0x0002B0, "Member 'ABP_CopTorchSpawner_C::Use_Volumetric_Shadows' has a wrong offset!"); \ +static_assert(offsetof(ABP_CopTorchSpawner_C, Torch) == 0x0002B8, "Member 'ABP_CopTorchSpawner_C::Torch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_Lightningbullet_C \ +static_assert(alignof(UWBP_Lightningbullet_C) == 0x000008, "Wrong alignment on UWBP_Lightningbullet_C"); \ +static_assert(sizeof(UWBP_Lightningbullet_C) == 0x0002C8, "Wrong size on UWBP_Lightningbullet_C"); \ +static_assert(offsetof(UWBP_Lightningbullet_C, Image_0) == 0x0002C0, "Member 'UWBP_Lightningbullet_C::Image_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Lightning_targeting_slowdown_C \ +static_assert(alignof(UGE_Lightning_targeting_slowdown_C) == 0x000008, "Wrong alignment on UGE_Lightning_targeting_slowdown_C"); \ +static_assert(sizeof(UGE_Lightning_targeting_slowdown_C) == 0x000A70, "Wrong size on UGE_Lightning_targeting_slowdown_C"); \ + +#define DUMPER7_ASSERTS_UPD_MOTF_MDM_Guru_C \ +static_assert(alignof(UPD_MOTF_MDM_Guru_C) == 0x000008, "Wrong alignment on UPD_MOTF_MDM_Guru_C"); \ +static_assert(sizeof(UPD_MOTF_MDM_Guru_C) == 0x000058, "Wrong size on UPD_MOTF_MDM_Guru_C"); \ + +#define DUMPER7_ASSERTS_WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock \ +static_assert(alignof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock) == 0x000008, "Wrong alignment on WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock"); \ +static_assert(sizeof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock) == 0x000208, "Wrong size on WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, EntryPoint) == 0x000000, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, Temp_bool_Has_Been_Initd_Variable) == 0x000005, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, Temp_bool_IsClosed_Variable) == 0x000006, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_MakeVector2D_ReturnValue) == 0x000010, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000020, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000028, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x000030, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue_4) == 0x000038, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_RandomFloatInRange_ReturnValue_5) == 0x000040, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_RandomFloatInRange_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_MakeVector2D_ReturnValue_1) == 0x000048, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, K2Node_Event_MyGeometry) == 0x000058, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, K2Node_Event_InDeltaTime) == 0x000090, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_GetPlayerController_ReturnValue) == 0x000098, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_PlayAnimation_ReturnValue) == 0x0000A0, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x0000A8, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_PlayAnimation_ReturnValue_1) == 0x0000B0, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_LockLocation_ReturnValue) == 0x0000B8, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_LockLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_ProjectWorldToScreen_OutScreenPosition) == 0x0000D0, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_ProjectWorldToScreen_OutScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_ProjectWorldToScreen_ReturnValue) == 0x0000E0, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_ProjectWorldToScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_ScreenToViewport_ViewportPosition) == 0x0000E8, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_ScreenToViewport_ViewportPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_PlayAnimation_ReturnValue_2) == 0x0000F8, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_LockLocation_ReturnValue_1) == 0x000100, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_LockLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_GetPlayerController_ReturnValue_1) == 0x000118, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000120, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_IsValid_ReturnValue_1) == 0x0001F8, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_SetOpacity_InOpacity_ImplicitCast) == 0x0001FC, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_SetOpacity_InOpacity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock, CallFunc_SetRenderTransformAngle_Angle_ImplicitCast) == 0x000200, "Member 'WBP_LightningLock_C_ExecuteUbergraph_WBP_LightningLock::CallFunc_SetRenderTransformAngle_Angle_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_LightningLock_C_LockLocation \ +static_assert(alignof(WBP_LightningLock_C_LockLocation) == 0x000008, "Wrong alignment on WBP_LightningLock_C_LockLocation"); \ +static_assert(sizeof(WBP_LightningLock_C_LockLocation) == 0x000048, "Wrong size on WBP_LightningLock_C_LockLocation"); \ +static_assert(offsetof(WBP_LightningLock_C_LockLocation, ReturnValue) == 0x000000, "Member 'WBP_LightningLock_C_LockLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_LockLocation, CallFunc_GetSocketLocation_ReturnValue) == 0x000018, "Member 'WBP_LightningLock_C_LockLocation::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_LockLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x000030, "Member 'WBP_LightningLock_C_LockLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_LightningLock_C_SetupLock \ +static_assert(alignof(WBP_LightningLock_C_SetupLock) == 0x000008, "Wrong alignment on WBP_LightningLock_C_SetupLock"); \ +static_assert(sizeof(WBP_LightningLock_C_SetupLock) == 0x000128, "Wrong size on WBP_LightningLock_C_SetupLock"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, Temp_name_Variable) == 0x000000, "Member 'WBP_LightningLock_C_SetupLock::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, Temp_name_Variable_1) == 0x000008, "Member 'WBP_LightningLock_C_SetupLock::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomBool_ReturnValue) == 0x000010, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomFloatInRange_ReturnValue) == 0x000018, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomUnitVector_ReturnValue) == 0x000020, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000038, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000050, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000058, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000070, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, Temp_bool_Variable) == 0x000088, "Member 'WBP_LightningLock_C_SetupLock::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomUnitVector_ReturnValue_1) == 0x000090, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000A8, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, K2Node_Select_Default) == 0x0000C0, "Member 'WBP_LightningLock_C_SetupLock::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomBool_ReturnValue_1) == 0x0000C8, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x0000D0, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000D8, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomUnitVector_ReturnValue_2) == 0x0000F0, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_RandomBool_ReturnValue_2) == 0x000108, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_RandomBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_SetupLock, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000110, "Member 'WBP_LightningLock_C_SetupLock::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_LightningLock_C_Tick \ +static_assert(alignof(WBP_LightningLock_C_Tick) == 0x000004, "Wrong alignment on WBP_LightningLock_C_Tick"); \ +static_assert(sizeof(WBP_LightningLock_C_Tick) == 0x00003C, "Wrong size on WBP_LightningLock_C_Tick"); \ +static_assert(offsetof(WBP_LightningLock_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_LightningLock_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_LightningLock_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_LightningLock_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_LightningLock_C \ +static_assert(alignof(UWBP_LightningLock_C) == 0x000008, "Wrong alignment on UWBP_LightningLock_C"); \ +static_assert(sizeof(UWBP_LightningLock_C) == 0x000340, "Wrong size on UWBP_LightningLock_C"); \ +static_assert(offsetof(UWBP_LightningLock_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_LightningLock_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LastLock) == 0x0002D0, "Member 'UWBP_LightningLock_C::LastLock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, Hit) == 0x0002D8, "Member 'UWBP_LightningLock_C::Hit' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, Lock) == 0x0002E0, "Member 'UWBP_LightningLock_C::Lock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, Cross) == 0x0002E8, "Member 'UWBP_LightningLock_C::Cross' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LockBorder) == 0x0002F0, "Member 'UWBP_LightningLock_C::LockBorder' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, Target) == 0x0002F8, "Member 'UWBP_LightningLock_C::Target' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LockOffset) == 0x000300, "Member 'UWBP_LightningLock_C::LockOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LockSocket) == 0x000318, "Member 'UWBP_LightningLock_C::LockSocket' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LastLock_) == 0x000320, "Member 'UWBP_LightningLock_C::LastLock_' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LightningLock_C, LockLocationVector) == 0x000328, "Member 'UWBP_LightningLock_C::LockLocationVector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BR_Lightningstrikes_C_Decrease \ +static_assert(alignof(WBP_BR_Lightningstrikes_C_Decrease) == 0x000001, "Wrong alignment on WBP_BR_Lightningstrikes_C_Decrease"); \ +static_assert(sizeof(WBP_BR_Lightningstrikes_C_Decrease) == 0x000001, "Wrong size on WBP_BR_Lightningstrikes_C_Decrease"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_Decrease, Fired) == 0x000000, "Member 'WBP_BR_Lightningstrikes_C_Decrease::Fired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes \ +static_assert(alignof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes) == 0x000008, "Wrong alignment on WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes"); \ +static_assert(sizeof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes) == 0x000028, "Wrong size on WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, EntryPoint) == 0x000000, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, Temp_bool_Variable) == 0x000004, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, CallFunc_Not_PreBool_ReturnValue) == 0x000005, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, K2Node_Event_IsDesignTime) == 0x000006, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, K2Node_CustomEvent_Fired) == 0x000007, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::K2Node_CustomEvent_Fired' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000008, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, CallFunc_FFloor_ReturnValue) == 0x000018, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::CallFunc_FFloor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, Temp_bool_Variable_1) == 0x00001C, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes, K2Node_Select_Default) == 0x000020, "Member 'WBP_BR_Lightningstrikes_C_ExecuteUbergraph_WBP_BR_Lightningstrikes::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BR_Lightningstrikes_C_PreConstruct \ +static_assert(alignof(WBP_BR_Lightningstrikes_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_BR_Lightningstrikes_C_PreConstruct"); \ +static_assert(sizeof(WBP_BR_Lightningstrikes_C_PreConstruct) == 0x000001, "Wrong size on WBP_BR_Lightningstrikes_C_PreConstruct"); \ +static_assert(offsetof(WBP_BR_Lightningstrikes_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_BR_Lightningstrikes_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BR_Lightningstrikes_C \ +static_assert(alignof(UWBP_BR_Lightningstrikes_C) == 0x000008, "Wrong alignment on UWBP_BR_Lightningstrikes_C"); \ +static_assert(sizeof(UWBP_BR_Lightningstrikes_C) == 0x0002E0, "Wrong size on UWBP_BR_Lightningstrikes_C"); \ +static_assert(offsetof(UWBP_BR_Lightningstrikes_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_BR_Lightningstrikes_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_Lightningstrikes_C, Ammo_Left) == 0x0002C8, "Member 'UWBP_BR_Lightningstrikes_C::Ammo_Left' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_Lightningstrikes_C, Ammo_Right) == 0x0002D0, "Member 'UWBP_BR_Lightningstrikes_C::Ammo_Right' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BR_Lightningstrikes_C, Ammo) == 0x0002D8, "Member 'UWBP_BR_Lightningstrikes_C::Ammo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_feeddeathPreventer_C \ +static_assert(alignof(UGE_feeddeathPreventer_C) == 0x000008, "Wrong alignment on UGE_feeddeathPreventer_C"); \ +static_assert(sizeof(UGE_feeddeathPreventer_C) == 0x000A70, "Wrong size on UGE_feeddeathPreventer_C"); \ + +#define DUMPER7_ASSERTS_UGE_Feed_DamageVuln_C \ +static_assert(alignof(UGE_Feed_DamageVuln_C) == 0x000008, "Wrong alignment on UGE_Feed_DamageVuln_C"); \ +static_assert(sizeof(UGE_Feed_DamageVuln_C) == 0x000A70, "Wrong size on UGE_Feed_DamageVuln_C"); \ + +#define DUMPER7_ASSERTS_UGE_SuppressBarks_FeedReact_C \ +static_assert(alignof(UGE_SuppressBarks_FeedReact_C) == 0x000008, "Wrong alignment on UGE_SuppressBarks_FeedReact_C"); \ +static_assert(sizeof(UGE_SuppressBarks_FeedReact_C) == 0x000A70, "Wrong size on UGE_SuppressBarks_FeedReact_C"); \ + +#define DUMPER7_ASSERTS_BP_FeedReticle_C_DebugCheckHiddenCVAR \ +static_assert(alignof(BP_FeedReticle_C_DebugCheckHiddenCVAR) == 0x000008, "Wrong alignment on BP_FeedReticle_C_DebugCheckHiddenCVAR"); \ +static_assert(sizeof(BP_FeedReticle_C_DebugCheckHiddenCVAR) == 0x000028, "Wrong size on BP_FeedReticle_C_DebugCheckHiddenCVAR"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWidget_ReturnValue) == 0x000008, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000010, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000018, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_DebugCheckHiddenCVAR, CallFunc_IsPackagedForDistribution_ReturnValue) == 0x000021, "Member 'BP_FeedReticle_C_DebugCheckHiddenCVAR::CallFunc_IsPackagedForDistribution_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle \ +static_assert(alignof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle) == 0x000008, "Wrong alignment on BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle"); \ +static_assert(sizeof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle) == 0x000028, "Wrong size on BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, EntryPoint) == 0x000000, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, CallFunc_GetWidget_ReturnValue) == 0x000008, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::CallFunc_GetWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, Temp_bool_Variable) == 0x000010, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, Temp_byte_Variable) == 0x000011, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, Temp_byte_Variable_1) == 0x000012, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, K2Node_Select_Default) == 0x000013, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, CallFunc_Not_PreBool_ReturnValue) == 0x000014, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, K2Node_Event_bNewValue) == 0x000015, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::K2Node_Event_bNewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, K2Node_Event_DeltaSeconds) == 0x000018, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle, CallFunc_GetWidget_ReturnValue_1) == 0x000020, "Member 'BP_FeedReticle_C_ExecuteUbergraph_BP_FeedReticle::CallFunc_GetWidget_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FeedReticle_C_OnTargetingAnActor \ +static_assert(alignof(BP_FeedReticle_C_OnTargetingAnActor) == 0x000001, "Wrong alignment on BP_FeedReticle_C_OnTargetingAnActor"); \ +static_assert(sizeof(BP_FeedReticle_C_OnTargetingAnActor) == 0x000001, "Wrong size on BP_FeedReticle_C_OnTargetingAnActor"); \ +static_assert(offsetof(BP_FeedReticle_C_OnTargetingAnActor, bNewValue) == 0x000000, "Member 'BP_FeedReticle_C_OnTargetingAnActor::bNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FeedReticle_C_ReceiveTick \ +static_assert(alignof(BP_FeedReticle_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_FeedReticle_C_ReceiveTick"); \ +static_assert(sizeof(BP_FeedReticle_C_ReceiveTick) == 0x000004, "Wrong size on BP_FeedReticle_C_ReceiveTick"); \ +static_assert(offsetof(BP_FeedReticle_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_FeedReticle_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_FeedReticle_C \ +static_assert(alignof(ABP_FeedReticle_C) == 0x000008, "Wrong alignment on ABP_FeedReticle_C"); \ +static_assert(sizeof(ABP_FeedReticle_C) == 0x0002E8, "Wrong size on ABP_FeedReticle_C"); \ +static_assert(offsetof(ABP_FeedReticle_C, UberGraphFrame) == 0x0002C8, "Member 'ABP_FeedReticle_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_FeedReticle_C, Widget) == 0x0002D0, "Member 'ABP_FeedReticle_C::Widget' has a wrong offset!"); \ +static_assert(offsetof(ABP_FeedReticle_C, Root) == 0x0002D8, "Member 'ABP_FeedReticle_C::Root' has a wrong offset!"); \ +static_assert(offsetof(ABP_FeedReticle_C, Targeting) == 0x0002E0, "Member 'ABP_FeedReticle_C::Targeting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_WrestlerStealthFeed_C \ +static_assert(alignof(ATA_WrestlerStealthFeed_C) == 0x000010, "Wrong alignment on ATA_WrestlerStealthFeed_C"); \ +static_assert(sizeof(ATA_WrestlerStealthFeed_C) == 0x0004B0, "Wrong size on ATA_WrestlerStealthFeed_C"); \ +static_assert(offsetof(ATA_WrestlerStealthFeed_C, DefaultSceneRoot) == 0x0004A0, "Member 'ATA_WrestlerStealthFeed_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327 \ +static_assert(alignof(GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(sizeof(GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327) == 0x0000B8, "Wrong size on GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(offsetof(GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327, EventTag) == 0x000000, "Member 'GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327, EventData) == 0x000008, "Member 'GA_EnemyTraverse_C_EventReceived_DBD375914988D565DFF789AD8FCEA327::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse \ +static_assert(alignof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse"); \ +static_assert(sizeof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse) == 0x0005C8, "Wrong size on GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, EntryPoint) == 0x000000, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000008, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventTag_4) == 0x000024, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventData_4) == 0x000030, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventTag_3) == 0x0000E0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventData_3) == 0x0000E8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_1) == 0x000198, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001A8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventTag_2) == 0x0001B8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventData_2) == 0x0001C0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventTag_1) == 0x000270, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventData_1) == 0x000278, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_3) == 0x000328, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_4) == 0x000338, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventTag) == 0x000348, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CustomEvent_EventData) == 0x000350, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, Temp_struct_Variable) == 0x000400, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, Temp_struct_Variable_1) == 0x0004B0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004B8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004C8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004D8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0004E8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0004F0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_IsValid_ReturnValue_1) == 0x0004F8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_Event_EventData) == 0x000500, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_GetTraversalMontage_ReturnValue) == 0x0005B0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_GetTraversalMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, K2Node_Event_bWasCancelled) == 0x0005B8, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0005C0, "Member 'GA_EnemyTraverse_C_ExecuteUbergraph_GA_EnemyTraverse::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_GetTraversalMontage \ +static_assert(alignof(GA_EnemyTraverse_C_GetTraversalMontage) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_GetTraversalMontage"); \ +static_assert(sizeof(GA_EnemyTraverse_C_GetTraversalMontage) == 0x000240, "Wrong size on GA_EnemyTraverse_C_GetTraversalMontage"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, GameplayEventData) == 0x000000, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, ReturnValue) == 0x0000B0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, StyleTag) == 0x0000B8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::StyleTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Distance) == 0x0000C0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable) == 0x0000C4, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_1) == 0x0000C5, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_Abs_ReturnValue) == 0x0000C8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x0000D0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_Array_Get_Item) == 0x0000E0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_2) == 0x0000E8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x0000E9, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_3) == 0x0000EA, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_4) == 0x0000EB, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage) == 0x0000F0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_1) == 0x0000F8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_5) == 0x000100, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_2) == 0x000108, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_3) == 0x000110, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_6) == 0x000118, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_4) == 0x000120, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_5) == 0x000128, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_6) == 0x000130, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_7) == 0x000138, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_8) == 0x000140, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_7) == 0x000148, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_9) == 0x000150, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_10) == 0x000158, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_11) == 0x000160, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_TryGetMontage_Montage_12) == 0x000168, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_TryGetMontage_Montage_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_8) == 0x000170, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000171, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000172, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_2) == 0x000173, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default) == 0x000178, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_3) == 0x000180, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_4) == 0x000181, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_5) == 0x000182, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_1) == 0x000188, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_2) == 0x000190, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_3) == 0x000198, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_4) == 0x0001A0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, Temp_bool_Variable_9) == 0x0001A8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_6) == 0x0001A9, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_5) == 0x0001B0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_7) == 0x0001B8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_8) == 0x0001B9, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_ReturnValue_9) == 0x0001BA, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_6) == 0x0001C0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_7) == 0x0001C8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_8) == 0x0001D0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_Select_Default_9) == 0x0001D8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_Select_Default_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_Abs_A_ImplicitCast) == 0x0001E0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, K2Node_VariableSet_Distance_ImplicitCast) == 0x0001E8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::K2Node_VariableSet_Distance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0001F0, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1) == 0x0001F8, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_2) == 0x000200, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_3) == 0x000208, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_4) == 0x000210, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_5) == 0x000218, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_6) == 0x000220, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_7) == 0x000228, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_8) == 0x000230, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_GetTraversalMontage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_9) == 0x000238, "Member 'GA_EnemyTraverse_C_GetTraversalMontage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_9' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyTraverse_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyTraverse_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyTraverse_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyTraverse_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyTraverse_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyTraverse_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyTraverse_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327 \ +static_assert(alignof(GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(sizeof(GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327) == 0x0000B8, "Wrong size on GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327, EventTag) == 0x000000, "Member 'GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327, EventData) == 0x000008, "Member 'GA_EnemyTraverse_C_OnBlendOut_DBD375914988D565DFF789AD8FCEA327::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327 \ +static_assert(alignof(GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(sizeof(GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327) == 0x0000B8, "Wrong size on GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327, EventTag) == 0x000000, "Member 'GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327, EventData) == 0x000008, "Member 'GA_EnemyTraverse_C_OnCancelled_DBD375914988D565DFF789AD8FCEA327::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327 \ +static_assert(alignof(GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(sizeof(GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327) == 0x0000B8, "Wrong size on GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327, EventTag) == 0x000000, "Member 'GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327, EventData) == 0x000008, "Member 'GA_EnemyTraverse_C_OnCompleted_DBD375914988D565DFF789AD8FCEA327::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327 \ +static_assert(alignof(GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(sizeof(GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327) == 0x0000B8, "Wrong size on GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327, EventTag) == 0x000000, "Member 'GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327, EventData) == 0x000008, "Member 'GA_EnemyTraverse_C_OnInterrupted_DBD375914988D565DFF789AD8FCEA327::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyTraverse_C_TryGetMontage \ +static_assert(alignof(GA_EnemyTraverse_C_TryGetMontage) == 0x000008, "Wrong alignment on GA_EnemyTraverse_C_TryGetMontage"); \ +static_assert(sizeof(GA_EnemyTraverse_C_TryGetMontage) == 0x000028, "Wrong size on GA_EnemyTraverse_C_TryGetMontage"); \ +static_assert(offsetof(GA_EnemyTraverse_C_TryGetMontage, Anim_Tag) == 0x000000, "Member 'GA_EnemyTraverse_C_TryGetMontage::Anim_Tag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_TryGetMontage, FallbackMontage) == 0x000008, "Member 'GA_EnemyTraverse_C_TryGetMontage::FallbackMontage' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_TryGetMontage, Montage_0) == 0x000010, "Member 'GA_EnemyTraverse_C_TryGetMontage::Montage_0' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_TryGetMontage, CallFunc_GetMontageByTag_ReturnValue) == 0x000018, "Member 'GA_EnemyTraverse_C_TryGetMontage::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyTraverse_C_TryGetMontage, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_EnemyTraverse_C_TryGetMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyTraverse_C \ +static_assert(alignof(UGA_EnemyTraverse_C) == 0x000008, "Wrong alignment on UGA_EnemyTraverse_C"); \ +static_assert(sizeof(UGA_EnemyTraverse_C) == 0x000678, "Wrong size on UGA_EnemyTraverse_C"); \ +static_assert(offsetof(UGA_EnemyTraverse_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyTraverse_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyTraverse_C, Montage_to_Play) == 0x000670, "Member 'UGA_EnemyTraverse_C::Montage_to_Play' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_WrestlerCombatFeed_C \ +static_assert(alignof(ATA_WrestlerCombatFeed_C) == 0x000010, "Wrong alignment on ATA_WrestlerCombatFeed_C"); \ +static_assert(sizeof(ATA_WrestlerCombatFeed_C) == 0x0004B0, "Wrong size on ATA_WrestlerCombatFeed_C"); \ +static_assert(offsetof(ATA_WrestlerCombatFeed_C, DefaultSceneRoot) == 0x0004A0, "Member 'ATA_WrestlerCombatFeed_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_FeedProof_C \ +static_assert(alignof(UGE_FeedProof_C) == 0x000008, "Wrong alignment on UGE_FeedProof_C"); \ +static_assert(sizeof(UGE_FeedProof_C) == 0x000A70, "Wrong size on UGE_FeedProof_C"); \ + +#define DUMPER7_ASSERTS_UGE_Feed_Visibility_C \ +static_assert(alignof(UGE_Feed_Visibility_C) == 0x000008, "Wrong alignment on UGE_Feed_Visibility_C"); \ +static_assert(sizeof(UGE_Feed_Visibility_C) == 0x000A70, "Wrong size on UGE_Feed_Visibility_C"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_CacheRotationTypes \ +static_assert(alignof(GA_FeedReact_C_CacheRotationTypes) == 0x000008, "Wrong alignment on GA_FeedReact_C_CacheRotationTypes"); \ +static_assert(sizeof(GA_FeedReact_C_CacheRotationTypes) == 0x000008, "Wrong size on GA_FeedReact_C_CacheRotationTypes"); \ +static_assert(offsetof(GA_FeedReact_C_CacheRotationTypes, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_FeedReact_C_CacheRotationTypes::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_CinematicLightingChannel \ +static_assert(alignof(GA_FeedReact_C_CinematicLightingChannel) == 0x000008, "Wrong alignment on GA_FeedReact_C_CinematicLightingChannel"); \ +static_assert(sizeof(GA_FeedReact_C_CinematicLightingChannel) == 0x000060, "Wrong size on GA_FeedReact_C_CinematicLightingChannel"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, Enable) == 0x000000, "Member 'GA_FeedReact_C_CinematicLightingChannel::Enable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GA_FeedReact_C_CinematicLightingChannel::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_GetComponentByClass_ReturnValue) == 0x000028, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000038, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_Array_Get_Item) == 0x000048, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, Temp_int_Loop_Counter_Variable) == 0x000054, "Member 'GA_FeedReact_C_CinematicLightingChannel::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_CinematicLightingChannel, CallFunc_Add_IntInt_ReturnValue) == 0x00005C, "Member 'GA_FeedReact_C_CinematicLightingChannel::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448 \ +static_assert(alignof(GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448) == 0x000008, "Wrong alignment on GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448"); \ +static_assert(sizeof(GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448) == 0x0000B0, "Wrong size on GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448"); \ +static_assert(offsetof(GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448, Payload) == 0x000000, "Member 'GA_FeedReact_C_EventReceived_1DAB941945C55D65BB72BA93C8006448::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA \ +static_assert(alignof(GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA) == 0x000008, "Wrong alignment on GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA"); \ +static_assert(sizeof(GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA) == 0x0000B0, "Wrong size on GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA"); \ +static_assert(offsetof(GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA, Payload) == 0x000000, "Member 'GA_FeedReact_C_EventReceived_A09F0A504A386C12CBEDEE90967B68FA::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE \ +static_assert(alignof(GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE) == 0x000008, "Wrong alignment on GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE"); \ +static_assert(sizeof(GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE) == 0x0000B0, "Wrong size on GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE"); \ +static_assert(offsetof(GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE, Payload) == 0x000000, "Member 'GA_FeedReact_C_EventReceived_E7DD443645BED4ABF87B7D9626EC6FAE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact \ +static_assert(alignof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact) == 0x000008, "Wrong alignment on GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact"); \ +static_assert(sizeof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact) == 0x000668, "Wrong size on GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, EntryPoint) == 0x000000, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CustomEvent_Payload) == 0x000010, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_struct_Variable) == 0x0000D0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000180, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_IsValid_ReturnValue) == 0x000188, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_MakeStruct_ApplyDamageParams) == 0x000190, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0001B8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x0001C0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_IsValid_ReturnValue_1) == 0x0001C8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_struct_Variable_1) == 0x0001D0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_WaitGameplayEvent_ReturnValue_2) == 0x000280, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_WaitGameplayEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_bool_IsClosed_Variable) == 0x000288, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_IsValid_ReturnValue_2) == 0x000289, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_bool_Has_Been_Initd_Variable) == 0x00028A, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_struct_Variable_2) == 0x000290, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000340, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_Event_bWasCancelled) == 0x000348, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000350, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_DynamicCast_bSuccess) == 0x000360, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000368, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000370, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_IsValid_ReturnValue_3) == 0x000371, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CustomEvent_Payload_1) == 0x000378, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000428, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000448, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000450, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000458, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CustomEvent_Payload_2) == 0x000460, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAIController_ReturnValue) == 0x000510, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000518, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CreateDelegate_OutputDelegate_1) == 0x000520, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000530, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000538, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000540, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000548, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000550, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x000558, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000560, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000568, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x000570, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAIController_ReturnValue_1) == 0x000578, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetPlayerPawn_ReturnValue) == 0x000580, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000588, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000590, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000598, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x0005A0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetFloatAttribute_ReturnValue) == 0x0005A4, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x0005A8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x0005AC, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0005B0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0005B8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0005C0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_RemoveActiveGameplayEffect_ReturnValue) == 0x0005C8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_RemoveActiveGameplayEffect_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAIController_ReturnValue_2) == 0x0005D0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0005D8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x0005E0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x0005E8, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_bool_Variable) == 0x0005F0, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, K2Node_CreateDelegate_OutputDelegate_2) == 0x0005F4, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000608, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_Add_IntInt_ReturnValue) == 0x000610, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, Temp_int_Variable) == 0x000614, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000618, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000620, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000624, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetMassEntityHandle_ReturnValue) == 0x00062C, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_IsValid_ReturnValue_4) == 0x00062D, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000630, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000640, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000648, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000650, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000658, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000660, "Member 'GA_FeedReact_C_ExecuteUbergraph_GA_FeedReact::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_K2_OnEndAbility \ +static_assert(alignof(GA_FeedReact_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_FeedReact_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_FeedReact_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_FeedReact_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_FeedReact_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_FeedReact_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_SetSensesEnabled \ +static_assert(alignof(GA_FeedReact_C_SetSensesEnabled) == 0x000008, "Wrong alignment on GA_FeedReact_C_SetSensesEnabled"); \ +static_assert(sizeof(GA_FeedReact_C_SetSensesEnabled) == 0x000058, "Wrong size on GA_FeedReact_C_SetSensesEnabled"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, Enabled) == 0x000000, "Member 'GA_FeedReact_C_SetSensesEnabled::Enabled' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, Perception_component) == 0x000008, "Member 'GA_FeedReact_C_SetSensesEnabled::Perception_component' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_FeedReact_C_SetSensesEnabled::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'GA_FeedReact_C_SetSensesEnabled::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_Array_Get_Item) == 0x000028, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_GetAIController_ReturnValue) == 0x000038, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_IsValid_ReturnValue_1) == 0x000044, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_Less_IntInt_ReturnValue) == 0x000045, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_GetAIPerceptionComponent_ReturnValue) == 0x000048, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_GetAIPerceptionComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_SetSensesEnabled, CallFunc_IsValid_ReturnValue_2) == 0x000050, "Member 'GA_FeedReact_C_SetSensesEnabled::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_ToggleCharacterMovement \ +static_assert(alignof(GA_FeedReact_C_ToggleCharacterMovement) == 0x000008, "Wrong alignment on GA_FeedReact_C_ToggleCharacterMovement"); \ +static_assert(sizeof(GA_FeedReact_C_ToggleCharacterMovement) == 0x000030, "Wrong size on GA_FeedReact_C_ToggleCharacterMovement"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, bEnabled) == 0x000000, "Member 'GA_FeedReact_C_ToggleCharacterMovement::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, Temp_bool_Variable) == 0x000001, "Member 'GA_FeedReact_C_ToggleCharacterMovement::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, Temp_byte_Variable) == 0x000002, "Member 'GA_FeedReact_C_ToggleCharacterMovement::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, Temp_byte_Variable_1) == 0x000010, "Member 'GA_FeedReact_C_ToggleCharacterMovement::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000014, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_GetMassEntityHandle_ReturnValue) == 0x00001C, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, K2Node_Select_Default) == 0x00001D, "Member 'GA_FeedReact_C_ToggleCharacterMovement::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_IsValid_ReturnValue) == 0x00001E, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleCharacterMovement, CallFunc_IsValid_ReturnValue_1) == 0x000028, "Member 'GA_FeedReact_C_ToggleCharacterMovement::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_ToggleControllerRotation \ +static_assert(alignof(GA_FeedReact_C_ToggleControllerRotation) == 0x000008, "Wrong alignment on GA_FeedReact_C_ToggleControllerRotation"); \ +static_assert(sizeof(GA_FeedReact_C_ToggleControllerRotation) == 0x000058, "Wrong size on GA_FeedReact_C_ToggleControllerRotation"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, bEnable) == 0x000000, "Member 'GA_FeedReact_C_ToggleControllerRotation::bEnable' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000010, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetMassEntityHandle_ReturnValue) == 0x000018, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000020, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000028, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetMassEntityHandle_OutEntityHandle_1) == 0x000030, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetMassEntityHandle_OutEntityHandle_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetMassEntityHandle_ReturnValue_1) == 0x000038, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetMassEntityHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_IsValid_ReturnValue_1) == 0x000039, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000040, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000048, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_ToggleControllerRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000050, "Member 'GA_FeedReact_C_ToggleControllerRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedReact_C_DoesActorHaveHealth \ +static_assert(alignof(GA_FeedReact_C_DoesActorHaveHealth) == 0x000008, "Wrong alignment on GA_FeedReact_C_DoesActorHaveHealth"); \ +static_assert(sizeof(GA_FeedReact_C_DoesActorHaveHealth) == 0x000020, "Wrong size on GA_FeedReact_C_DoesActorHaveHealth"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, Actor) == 0x000000, "Member 'GA_FeedReact_C_DoesActorHaveHealth::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, ReturnValue) == 0x000008, "Member 'GA_FeedReact_C_DoesActorHaveHealth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000009, "Member 'GA_FeedReact_C_DoesActorHaveHealth::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, CallFunc_GetFloatAttribute_ReturnValue) == 0x00000C, "Member 'GA_FeedReact_C_DoesActorHaveHealth::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000010, "Member 'GA_FeedReact_C_DoesActorHaveHealth::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedReact_C_DoesActorHaveHealth, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000018, "Member 'GA_FeedReact_C_DoesActorHaveHealth::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_FeedReact_C \ +static_assert(alignof(UGA_FeedReact_C) == 0x000008, "Wrong alignment on UGA_FeedReact_C"); \ +static_assert(sizeof(UGA_FeedReact_C) == 0x0006E8, "Wrong size on UGA_FeedReact_C"); \ +static_assert(offsetof(UGA_FeedReact_C, UberGraphFrame) == 0x000668, "Member 'UGA_FeedReact_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, bCachedUseControllerDesiredRotation) == 0x000670, "Member 'UGA_FeedReact_C::bCachedUseControllerDesiredRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, bCachedUseControllerRotationYaw) == 0x000671, "Member 'UGA_FeedReact_C::bCachedUseControllerRotationYaw' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, Gameplay_Tags) == 0x000678, "Member 'UGA_FeedReact_C::Gameplay_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, DelayTask) == 0x000698, "Member 'UGA_FeedReact_C::DelayTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, Sense_Classes) == 0x0006A0, "Member 'UGA_FeedReact_C::Sense_Classes' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, DetectionTags) == 0x0006B0, "Member 'UGA_FeedReact_C::DetectionTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, Deathprevention) == 0x0006D0, "Member 'UGA_FeedReact_C::Deathprevention' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, Suppressor) == 0x0006D8, "Member 'UGA_FeedReact_C::Suppressor' has a wrong offset!"); \ +static_assert(offsetof(UGA_FeedReact_C, Hitreacts) == 0x0006E0, "Member 'UGA_FeedReact_C::Hitreacts' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_GrantFeedReact_C \ +static_assert(alignof(UGE_GrantFeedReact_C) == 0x000008, "Wrong alignment on UGE_GrantFeedReact_C"); \ +static_assert(sizeof(UGE_GrantFeedReact_C) == 0x000A70, "Wrong size on UGE_GrantFeedReact_C"); \ + +#define DUMPER7_ASSERTS_UGE_Feed_Target_C \ +static_assert(alignof(UGE_Feed_Target_C) == 0x000008, "Wrong alignment on UGE_Feed_Target_C"); \ +static_assert(sizeof(UGE_Feed_Target_C) == 0x000A70, "Wrong size on UGE_Feed_Target_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_viewpunch_C \ +static_assert(alignof(UCameraShake_viewpunch_C) == 0x000010, "Wrong alignment on UCameraShake_viewpunch_C"); \ +static_assert(sizeof(UCameraShake_viewpunch_C) == 0x000230, "Wrong size on UCameraShake_viewpunch_C"); \ + +#define DUMPER7_ASSERTS_BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia \ +static_assert(alignof(BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia) == 0x000004, "Wrong alignment on BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia"); \ +static_assert(sizeof(BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia) == 0x000004, "Wrong size on BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia"); \ +static_assert(offsetof(BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia, EntryPoint) == 0x000000, "Member 'BP_PostProcessVolume_Sepia_C_ExecuteUbergraph_BP_PostProcessVolume_Sepia::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PostProcessVolume_Sepia_C \ +static_assert(alignof(ABP_PostProcessVolume_Sepia_C) == 0x000008, "Wrong alignment on ABP_PostProcessVolume_Sepia_C"); \ +static_assert(sizeof(ABP_PostProcessVolume_Sepia_C) == 0x0002B8, "Wrong size on ABP_PostProcessVolume_Sepia_C"); \ +static_assert(offsetof(ABP_PostProcessVolume_Sepia_C, UberGraphFrame) == 0x000298, "Member 'ABP_PostProcessVolume_Sepia_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_PostProcessVolume_Sepia_C, PostProcess) == 0x0002A0, "Member 'ABP_PostProcessVolume_Sepia_C::PostProcess' has a wrong offset!"); \ +static_assert(offsetof(ABP_PostProcessVolume_Sepia_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_PostProcessVolume_Sepia_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_PostProcessVolume_Sepia_C, Preview) == 0x0002B0, "Member 'ABP_PostProcessVolume_Sepia_C::Preview' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base \ +static_assert(alignof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base) == 0x000BE8, "Wrong size on GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, EntryPoint) == 0x000000, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000004, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000018, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000028, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_bool_Variable) == 0x000038, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_struct_Variable) == 0x00003C, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000048, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000060, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000070, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000080, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000090, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000A0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_ReturnValue) == 0x0000B0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_SpawnObject_ReturnValue) == 0x0000B8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue) == 0x0000C0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetComponentByClass_ReturnValue) == 0x0000C8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000D0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsWalking_ReturnValue) == 0x0000E0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_ReturnValue_1) == 0x0000E8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x0000F0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_1) == 0x000100, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x000104, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Is_Lunge_Targeted_Targeted) == 0x000114, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Is_Lunge_Targeted_Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_11) == 0x000118, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_int_Loop_Counter_Variable) == 0x000128, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Is_Lunge_Targeted_Targeted_1) == 0x00012C, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Is_Lunge_Targeted_Targeted_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_IntInt_ReturnValue) == 0x000130, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_12) == 0x000134, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000148, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000150, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_DynamicCast_bSuccess) == 0x000160, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_ReturnValue_2) == 0x000168, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_2) == 0x000170, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_Event_bWasCancelled) == 0x000171, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000178, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000180, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_DynamicCast_bSuccess_1) == 0x000190, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_ReturnValue_3) == 0x000198, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_3) == 0x0001A0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0001A8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x0001B0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001D8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_CreateTimeDilation_Handle) == 0x0001DC, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Array_IsEmpty_ReturnValue) == 0x0001E0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_Event_Payload_1) == 0x0001E8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_Event_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_TraceEnvironmentHit_ReturnValue) == 0x000298, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_TraceEnvironmentHit_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_Event_Payload) == 0x000380, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_Event_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x000430, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_AbilityTargetDataFromHitResult_ReturnValue) == 0x000438, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_AbilityTargetDataFromHitResult_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_bBlockingHit) == 0x000460, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_bInitialOverlap) == 0x000461, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_Time) == 0x000464, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_Distance) == 0x000468, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_Location) == 0x000470, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_ImpactPoint) == 0x000488, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_Normal) == 0x0004A0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_ImpactNormal) == 0x0004B8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_PhysMat) == 0x0004D0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_HitActor) == 0x0004D8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_HitComponent) == 0x0004E0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_HitBoneName) == 0x0004E8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_BoneName) == 0x0004F0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_HitItem) == 0x0004F8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_ElementIndex) == 0x0004FC, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_FaceIndex) == 0x000500, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_TraceStart) == 0x000508, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakHitResult_TraceEnd) == 0x000520, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_ReturnValue_4) == 0x000538, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_4) == 0x000540, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000548, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_Select_Default) == 0x000550, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Array_Length_ReturnValue) == 0x000558, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Less_IntInt_ReturnValue) == 0x00055C, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue) == 0x000560, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_13) == 0x000568, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x000578, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000580, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_5) == 0x000588, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_6) == 0x000589, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_2) == 0x000590, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WrestlerAimAssistToSocket_ReturnValue_1) == 0x000598, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WrestlerAimAssistToSocket_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_3) == 0x0005A0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x0005A8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_7) == 0x0005B0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_8) == 0x0005B1, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_4) == 0x0005B8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_TraceEnemyHits_ReturnValue) == 0x0005C0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_TraceEnemyHits_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_9) == 0x0005D0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetValidEventData_ReturnValue) == 0x0005D8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetValidEventData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetContextFromOwner_ReturnValue) == 0x0005E8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetContextFromOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetHitImpactCue_GameplayCueTag) == 0x000600, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetHitImpactCue_GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000608, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_int_Array_Index_Variable) == 0x000610, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000618, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Array_Get_Item) == 0x000630, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_MakeStruct_GameplayEventData) == 0x0006E0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyEffectContainer_ReturnValue) == 0x000790, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyEffectContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_5) == 0x0007A0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0007A8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_10) == 0x0007B0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_14) == 0x0007B4, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsFalling_ReturnValue) == 0x0007C4, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0007C8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetVelocity_ReturnValue) == 0x0007D0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_NegateVector_ReturnValue) == 0x0007E8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_VectorVector_ReturnValue) == 0x000800, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPunchTarget_ReturnValue_6) == 0x000818, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPunchTarget_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000820, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000838, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000840, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000858, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_X) == 0x000870, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_Y) == 0x000878, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_Z) == 0x000880, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x000888, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_MakeVector_ReturnValue) == 0x000890, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Normal_ReturnValue) == 0x0008A8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0008C0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0008D8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_11) == 0x0008F0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0008F8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_bool_Variable_1) == 0x000910, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1) == 0x000918, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_12) == 0x000920, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_Event_EventData) == 0x000928, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPlayerController_ReturnValue) == 0x0009D8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetControlRotation_ReturnValue) == 0x0009E0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0009F8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetForwardVector_ReturnValue) == 0x000A10, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000A28, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_15) == 0x000A40, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_X_1) == 0x000A50, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_Y_1) == 0x000A58, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_BreakVector_Z_1) == 0x000A60, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_MakeVector_ReturnValue_1) == 0x000A68, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000A80, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_bool_Variable_2) == 0x000A88, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000A90, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000AA8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2) == 0x000AC0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, Temp_struct_Variable_1) == 0x000AC8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_13) == 0x000AE0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000AE8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000AF0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_16) == 0x000B08, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000B18, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CustomEvent_DestinationReached) == 0x000B20, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CustomEvent_TimedOut) == 0x000B21, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CustomEvent_FinalTargetLocation) == 0x000B28, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetActorForwardVector_ReturnValue) == 0x000B40, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000B58, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000B70, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Add_VectorVector_ReturnValue_4) == 0x000B88, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_14) == 0x000BA0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3) == 0x000BA8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_IsValid_ReturnValue_15) == 0x000BB0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, K2Node_CreateDelegate_OutputDelegate_17) == 0x000BB4, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_GetPlayerController_ReturnValue_1) == 0x000BC8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000BD0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x000BD4, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000BD8, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000BE0, "Member 'GA_PlayerPunch_Base_C_ExecuteUbergraph_GA_PlayerPunch_Base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_GetHitImpactCue \ +static_assert(alignof(GA_PlayerPunch_Base_C_GetHitImpactCue) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_GetHitImpactCue"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_GetHitImpactCue) == 0x000038, "Wrong size on GA_PlayerPunch_Base_C_GetHitImpactCue"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, GameplayCueTag) == 0x000000, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000020, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'GA_PlayerPunch_Base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_Is_Lunge_Targeted \ +static_assert(alignof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_Is_Lunge_Targeted"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted) == 0x000110, "Wrong size on GA_PlayerPunch_Base_C_Is_Lunge_Targeted"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, Targeted) == 0x000000, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000010, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000048, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetPlayerController_ReturnValue) == 0x000050, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000058, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetControlRotation_ReturnValue) == 0x000070, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000088, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetForwardVector_ReturnValue) == 0x0000A0, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000B8, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0000C0, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_FClamp_ReturnValue) == 0x0000C8, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000D0, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_Vector_Distance_ReturnValue) == 0x0000F0, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000100, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000101, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue) == 0x000102, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000108, "Member 'GA_PlayerPunch_Base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerPunch_Base_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerPunch_Base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerPunch_Base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerPunch_Base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerPunch_Base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9 \ +static_assert(alignof(GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9) == 0x000020, "Wrong size on GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9, DestinationReached) == 0x000000, "Member 'GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9, TimedOut) == 0x000001, "Member 'GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9, FinalTargetLocation) == 0x000008, "Member 'GA_PlayerPunch_Base_C_OnFinished_F22D22E1486F4F14D641709D3CA00EF9::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_OnFistHitEnd \ +static_assert(alignof(GA_PlayerPunch_Base_C_OnFistHitEnd) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_OnFistHitEnd"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_OnFistHitEnd) == 0x0000B0, "Wrong size on GA_PlayerPunch_Base_C_OnFistHitEnd"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_OnFistHitEnd, Payload) == 0x000000, "Member 'GA_PlayerPunch_Base_C_OnFistHitEnd::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_OnFistHitStart \ +static_assert(alignof(GA_PlayerPunch_Base_C_OnFistHitStart) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_OnFistHitStart"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_OnFistHitStart) == 0x0000B0, "Wrong size on GA_PlayerPunch_Base_C_OnFistHitStart"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_OnFistHitStart, Payload) == 0x000000, "Member 'GA_PlayerPunch_Base_C_OnFistHitStart::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Base_C_PlayMoveToGameplayCue \ +static_assert(alignof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue) == 0x000008, "Wrong alignment on GA_PlayerPunch_Base_C_PlayMoveToGameplayCue"); \ +static_assert(sizeof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue) == 0x000050, "Wrong size on GA_PlayerPunch_Base_C_PlayMoveToGameplayCue"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, Activation_Distance) == 0x000000, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::Activation_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_Square_ReturnValue) == 0x000010, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_MakeEffectContext_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_MakeEffectContext_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000040, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000044, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'GA_PlayerPunch_Base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Base_C \ +static_assert(alignof(UGA_PlayerPunch_Base_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Base_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Base_C) == 0x000948, "Wrong size on UGA_PlayerPunch_Base_C"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, UberGraphFrame) == 0x000690, "Member 'UGA_PlayerPunch_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, ImpactShake) == 0x000698, "Member 'UGA_PlayerPunch_Base_C::ImpactShake' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Impact_Shake_Scale) == 0x0006A0, "Member 'UGA_PlayerPunch_Base_C::Impact_Shake_Scale' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeDelay) == 0x0006A4, "Member 'UGA_PlayerPunch_Base_C::LungeDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeRange) == 0x0006A8, "Member 'UGA_PlayerPunch_Base_C::LungeRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeDuration) == 0x0006AC, "Member 'UGA_PlayerPunch_Base_C::LungeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeRangeTargeted) == 0x0006B0, "Member 'UGA_PlayerPunch_Base_C::LungeRangeTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeDurationTargeted) == 0x0006B4, "Member 'UGA_PlayerPunch_Base_C::LungeDurationTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeAssistStrength) == 0x0006B8, "Member 'UGA_PlayerPunch_Base_C::LungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, PreLungeAssistStrength) == 0x0006BC, "Member 'UGA_PlayerPunch_Base_C::PreLungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, LungeMaxAngle) == 0x0006C0, "Member 'UGA_PlayerPunch_Base_C::LungeMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Buffer_Delay) == 0x0006C8, "Member 'UGA_PlayerPunch_Base_C::Buffer_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, ComboDelay) == 0x0006D0, "Member 'UGA_PlayerPunch_Base_C::ComboDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Impact_section) == 0x0006D8, "Member 'UGA_PlayerPunch_Base_C::Impact_section' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Bounceback_Distance) == 0x0006E0, "Member 'UGA_PlayerPunch_Base_C::Bounceback_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Hitfreeze_Duration) == 0x0006E8, "Member 'UGA_PlayerPunch_Base_C::Hitfreeze_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Multi_Hit) == 0x0006EC, "Member 'UGA_PlayerPunch_Base_C::Multi_Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, EnvironmentHitResult) == 0x0006F0, "Member 'UGA_PlayerPunch_Base_C::EnvironmentHitResult' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, TimeDilator) == 0x0007D8, "Member 'UGA_PlayerPunch_Base_C::TimeDilator' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, EnemyHitsEventData) == 0x0007E0, "Member 'UGA_PlayerPunch_Base_C::EnemyHitsEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, HitEventTag) == 0x0007F0, "Member 'UGA_PlayerPunch_Base_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, RightPunch) == 0x0007F8, "Member 'UGA_PlayerPunch_Base_C::RightPunch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, PunchImpactCueTag) == 0x0007FC, "Member 'UGA_PlayerPunch_Base_C::PunchImpactCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, MoveToForceAsyncTask) == 0x000808, "Member 'UGA_PlayerPunch_Base_C::MoveToForceAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, HitResponseTag) == 0x000810, "Member 'UGA_PlayerPunch_Base_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, HitEventData) == 0x000818, "Member 'UGA_PlayerPunch_Base_C::HitEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, MoveToCueTag) == 0x0008C8, "Member 'UGA_PlayerPunch_Base_C::MoveToCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, PunchCancelledGameplayCueTag) == 0x0008D0, "Member 'UGA_PlayerPunch_Base_C::PunchCancelledGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, PunchBlockCueTag) == 0x0008D8, "Member 'UGA_PlayerPunch_Base_C::PunchBlockCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, ImpactCueToPlay) == 0x0008E0, "Member 'UGA_PlayerPunch_Base_C::ImpactCueToPlay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Environment_Damage) == 0x0008E8, "Member 'UGA_PlayerPunch_Base_C::Environment_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, NoiseRadius) == 0x0008EC, "Member 'UGA_PlayerPunch_Base_C::NoiseRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Knockback) == 0x0008F0, "Member 'UGA_PlayerPunch_Base_C::Knockback' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Base_C, Hangloc) == 0x000930, "Member 'UGA_PlayerPunch_Base_C::Hangloc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect \ +static_assert(alignof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect) == 0x000008, "Wrong alignment on GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect"); \ +static_assert(sizeof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect) == 0x000128, "Wrong size on GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, EntryPoint) == 0x000000, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_WaitDelay_ReturnValue) == 0x000018, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000028, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAIController_ReturnValue) == 0x000030, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetPlayerPawn_ReturnValue) == 0x000038, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000040, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_IsDetectingActor_ReturnValue) == 0x000048, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000050, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000070, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000078, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000080, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0000A0, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0000A8, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x0000B0, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D0, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x0000D8, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000E0, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000F0, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000F8, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, K2Node_Event_bWasCancelled) == 0x000100, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000108, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000110, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_GetAIController_ReturnValue_1) == 0x000118, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect, CallFunc_IsDetectingActor_ReturnValue_1) == 0x000120, "Member 'GA_Reaction_Detect_C_ExecuteUbergraph_GA_Reaction_Detect::CallFunc_IsDetectingActor_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Detect_C_K2_OnEndAbility \ +static_assert(alignof(GA_Reaction_Detect_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Reaction_Detect_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Reaction_Detect_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Reaction_Detect_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Reaction_Detect_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Detect_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Reaction_Detect_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Reaction_Detect_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Reaction_Detect_C_K2_CanActivateAbility) == 0x000108, "Wrong size on GA_Reaction_Detect_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_Get_Look_Target_Location_Location) == 0x000078, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_Get_Look_Target_Location_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000090, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_GetActorForwardVector_ReturnValue) == 0x000098, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B0, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000C8, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000D8, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000E0, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000F8, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Detect_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000100, "Member 'GA_Reaction_Detect_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Reaction_Detect_C \ +static_assert(alignof(UGA_Reaction_Detect_C) == 0x000008, "Wrong alignment on UGA_Reaction_Detect_C"); \ +static_assert(sizeof(UGA_Reaction_Detect_C) == 0x0006E8, "Wrong size on UGA_Reaction_Detect_C"); \ +static_assert(offsetof(UGA_Reaction_Detect_C, UberGraphFrame_GA_Reaction_Detect_C) == 0x0006D8, "Member 'UGA_Reaction_Detect_C::UberGraphFrame_GA_Reaction_Detect_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_Reaction_Detect_C, PB_Player_Detected) == 0x0006E0, "Member 'UGA_Reaction_Detect_C::PB_Player_Detected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_AttachStart_C \ +static_assert(alignof(UCameraShake_AttachStart_C) == 0x000010, "Wrong alignment on UCameraShake_AttachStart_C"); \ +static_assert(sizeof(UCameraShake_AttachStart_C) == 0x000230, "Wrong size on UCameraShake_AttachStart_C"); \ + +#define DUMPER7_ASSERTS_UGE_HeavySlowdown_C \ +static_assert(alignof(UGE_HeavySlowdown_C) == 0x000008, "Wrong alignment on UGE_HeavySlowdown_C"); \ +static_assert(sizeof(UGE_HeavySlowdown_C) == 0x000A70, "Wrong size on UGE_HeavySlowdown_C"); \ + +#define DUMPER7_ASSERTS_UGE_TelekinesisHit_MasqueradeBreach_C \ +static_assert(alignof(UGE_TelekinesisHit_MasqueradeBreach_C) == 0x000008, "Wrong alignment on UGE_TelekinesisHit_MasqueradeBreach_C"); \ +static_assert(sizeof(UGE_TelekinesisHit_MasqueradeBreach_C) == 0x000A70, "Wrong size on UGE_TelekinesisHit_MasqueradeBreach_C"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03 \ +static_assert(alignof(BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03) == 0x000004, "Wrong alignment on BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03"); \ +static_assert(sizeof(BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03) == 0x000004, "Wrong size on BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03"); \ +static_assert(offsetof(BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03, EntryPoint) == 0x000000, "Member 'BP_lightutility_cage_03_C_ExecuteUbergraph_BP_lightutility_cage_03::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_cage_03_C \ +static_assert(alignof(ABP_lightutility_cage_03_C) == 0x000008, "Wrong alignment on ABP_lightutility_cage_03_C"); \ +static_assert(sizeof(ABP_lightutility_cage_03_C) == 0x0007A0, "Wrong size on ABP_lightutility_cage_03_C"); \ +static_assert(offsetof(ABP_lightutility_cage_03_C, UberGraphFrame_BP_lightutility_cage_03_C) == 0x000788, "Member 'ABP_lightutility_cage_03_C::UberGraphFrame_BP_lightutility_cage_03_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_03_C, SpotLight___Main) == 0x000790, "Member 'ABP_lightutility_cage_03_C::SpotLight___Main' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_03_C, sm_light_caged_simple) == 0x000798, "Member 'ABP_lightutility_cage_03_C::sm_light_caged_simple' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerPunch_NoHit_C \ +static_assert(alignof(UGE_PlayerPunch_NoHit_C) == 0x000008, "Wrong alignment on UGE_PlayerPunch_NoHit_C"); \ +static_assert(sizeof(UGE_PlayerPunch_NoHit_C) == 0x000A70, "Wrong size on UGE_PlayerPunch_NoHit_C"); \ + +#define DUMPER7_ASSERTS_WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer \ +static_assert(alignof(WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer) == 0x000008, "Wrong alignment on WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer"); \ +static_assert(sizeof(WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer) == 0x000010, "Wrong size on WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer"); \ +static_assert(offsetof(WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer, EntryPoint) == 0x000000, "Member 'WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'WrestlerInvisibleWall_IgnorePlayer_C_ExecuteUbergraph_WrestlerInvisibleWall_IgnorePlayer::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerInvisibleWall_IgnorePlayer_C \ +static_assert(alignof(AWrestlerInvisibleWall_IgnorePlayer_C) == 0x000008, "Wrong alignment on AWrestlerInvisibleWall_IgnorePlayer_C"); \ +static_assert(sizeof(AWrestlerInvisibleWall_IgnorePlayer_C) == 0x0002A8, "Wrong size on AWrestlerInvisibleWall_IgnorePlayer_C"); \ +static_assert(offsetof(AWrestlerInvisibleWall_IgnorePlayer_C, UberGraphFrame) == 0x0002A0, "Member 'AWrestlerInvisibleWall_IgnorePlayer_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled \ +static_assert(alignof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled) == 0x000008, "Wrong alignment on SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled"); \ +static_assert(sizeof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled) == 0x0000D0, "Wrong size on SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, EntryPoint) == 0x000000, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, Temp_int_Array_Index_Variable) == 0x000004, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_Event_InAutomata) == 0x000018, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_Event_InState) == 0x000020, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Array_Get_Item) == 0x000028, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_DynamicCast_AsWrestler_Mass_Fleeing_Volume) == 0x000060, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_DynamicCast_AsWrestler_Mass_Fleeing_Volume' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, Temp_int_Loop_Counter_Variable_1) == 0x00006C, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Add_IntInt_ReturnValue_1) == 0x000074, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Array_Length_ReturnValue_1) == 0x0000A8, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000B0, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000B8, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_DynamicCast_AsWrestler_Mass_Fleeing_Volume_1) == 0x0000C0, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_DynamicCast_AsWrestler_Mass_Fleeing_Volume_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, K2Node_DynamicCast_bSuccess_1) == 0x0000C8, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled, CallFunc_IsValid_ReturnValue_1) == 0x0000C9, "Member 'SetFleeingVolumeEnabled_C_ExecuteUbergraph_SetFleeingVolumeEnabled::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetFleeingVolumeEnabled_C_ReceiveExecute \ +static_assert(alignof(SetFleeingVolumeEnabled_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetFleeingVolumeEnabled_C_ReceiveExecute"); \ +static_assert(sizeof(SetFleeingVolumeEnabled_C_ReceiveExecute) == 0x000010, "Wrong size on SetFleeingVolumeEnabled_C_ReceiveExecute"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetFleeingVolumeEnabled_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetFleeingVolumeEnabled_C_ReceiveExecute, InState) == 0x000008, "Member 'SetFleeingVolumeEnabled_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetFleeingVolumeEnabled_C \ +static_assert(alignof(USetFleeingVolumeEnabled_C) == 0x000008, "Wrong alignment on USetFleeingVolumeEnabled_C"); \ +static_assert(sizeof(USetFleeingVolumeEnabled_C) == 0x0000A8, "Wrong size on USetFleeingVolumeEnabled_C"); \ +static_assert(offsetof(USetFleeingVolumeEnabled_C, UberGraphFrame) == 0x000088, "Member 'USetFleeingVolumeEnabled_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetFleeingVolumeEnabled_C, bEnable) == 0x000090, "Member 'USetFleeingVolumeEnabled_C::bEnable' has a wrong offset!"); \ +static_assert(offsetof(USetFleeingVolumeEnabled_C, FleeingVolumes) == 0x000098, "Member 'USetFleeingVolumeEnabled_C::FleeingVolumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PunchDecay_C \ +static_assert(alignof(UGE_PunchDecay_C) == 0x000008, "Wrong alignment on UGE_PunchDecay_C"); \ +static_assert(sizeof(UGE_PunchDecay_C) == 0x000A70, "Wrong size on UGE_PunchDecay_C"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_EnemySalvo_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_EnemySalvo_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_EnemySalvo_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_EnemySalvo_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_EnemySalvo_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_EnemySalvo_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo \ +static_assert(alignof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo) == 0x000010, "Wrong alignment on WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo"); \ +static_assert(sizeof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo) == 0x000710, "Wrong size on WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_delegate_Variable) == 0x000004, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_delegate_Variable_1) == 0x000014, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, K2Node_Event_OutHit) == 0x000028, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::K2Node_Event_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_bBlockingHit) == 0x000110, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_bInitialOverlap) == 0x000111, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_Time) == 0x000114, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_Distance) == 0x000118, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_Location) == 0x000120, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_ImpactPoint) == 0x000138, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_Normal) == 0x000150, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_ImpactNormal) == 0x000168, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_PhysMat) == 0x000180, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_HitActor) == 0x000188, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_HitComponent) == 0x000190, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_HitBoneName) == 0x000198, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_BoneName) == 0x0001A0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_HitItem) == 0x0001A8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_ElementIndex) == 0x0001AC, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_FaceIndex) == 0x0001B0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_TraceStart) == 0x0001B8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakHitResult_TraceEnd) == 0x0001D0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x0001E8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x0001F0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0001F8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0002E0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, K2Node_SwitchEnum_CmpSuccess) == 0x0002E1, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, K2Node_Event_DeltaSeconds) == 0x0002E4, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0002E8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0002F0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_MakeRotator_ReturnValue) == 0x0002F8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_AddLocalRotation_SweepHitResult) == 0x000310, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_AddLocalRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0003F8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetMainListenerTransform_ReturnValue) == 0x000410, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetMainListenerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Location) == 0x000470, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Rotation) == 0x000488, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Scale) == 0x0004A0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0004B8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0004D0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x0004E8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Normal_ReturnValue) == 0x000500, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetPlayerPawn_ReturnValue) == 0x000518, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000520, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000538, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_delegate_Variable_2) == 0x00053C, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_delegate_Variable_3) == 0x00054C, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000560, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Subtract_VectorVector_ReturnValue_2) == 0x000578, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Subtract_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Subtract_VectorVector_ReturnValue_3) == 0x000590, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Subtract_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_bool_Has_Been_Initd_Variable) == 0x0005A8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Dot_VectorVector_ReturnValue) == 0x0005B0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_bool_IsClosed_Variable) == 0x0005B8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetMainListenerTransform_ReturnValue_1) == 0x0005C0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetMainListenerTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Location_1) == 0x000620, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Rotation_1) == 0x000638, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_BreakTransform_Scale_1) == 0x000650, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_RandomFloatInRange_ReturnValue) == 0x000668, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000670, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, Temp_delegate_Variable_4) == 0x000678, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000688, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_IsValid_ReturnValue) == 0x000690, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_GetCameraLocation_ReturnValue) == 0x000698, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0006B0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Square_ReturnValue) == 0x0006C8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x0006D0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Square_ReturnValue_1) == 0x0006D8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Square_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_MapRangeClamped_ReturnValue) == 0x0006E0, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0006E8, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000700, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000704, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x000708, "Member 'WrestlerProjectile_EnemySalvo_C_ExecuteUbergraph_WrestlerProjectile_EnemySalvo::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_EnemySalvo_C_ReceiveTick \ +static_assert(alignof(WrestlerProjectile_EnemySalvo_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerProjectile_EnemySalvo_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerProjectile_EnemySalvo_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerProjectile_EnemySalvo_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerProjectile_EnemySalvo_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerProjectile_EnemySalvo_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_EnemySalvo_C \ +static_assert(alignof(AWrestlerProjectile_EnemySalvo_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_EnemySalvo_C"); \ +static_assert(sizeof(AWrestlerProjectile_EnemySalvo_C) == 0x000468, "Wrong size on AWrestlerProjectile_EnemySalvo_C"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, UberGraphFrame_WrestlerProjectile_EnemySalvo_C) == 0x000410, "Member 'AWrestlerProjectile_EnemySalvo_C::UberGraphFrame_WrestlerProjectile_EnemySalvo_C' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, Aura) == 0x000418, "Member 'AWrestlerProjectile_EnemySalvo_C::Aura' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, NS_Bullet_trail) == 0x000420, "Member 'AWrestlerProjectile_EnemySalvo_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, SM_Tracer) == 0x000428, "Member 'AWrestlerProjectile_EnemySalvo_C::SM_Tracer' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, ActorPreviousLocation) == 0x000430, "Member 'AWrestlerProjectile_EnemySalvo_C::ActorPreviousLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, ListenerPreviousLocation) == 0x000448, "Member 'AWrestlerProjectile_EnemySalvo_C::ListenerPreviousLocation' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_EnemySalvo_C, PB_Combat_Player_Take_Damage) == 0x000460, "Member 'AWrestlerProjectile_EnemySalvo_C::PB_Combat_Player_Take_Damage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_TogglePlayerHandCollision_C_Received_NotifyBegin \ +static_assert(alignof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_TogglePlayerHandCollision_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin) == 0x000070, "Wrong size on AN_TogglePlayerHandCollision_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, K2Node_DynamicCast_AsWrestler_Melee_Collision_Interface) == 0x000058, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::K2Node_DynamicCast_AsWrestler_Melee_Collision_Interface' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyBegin, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyBegin::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_TogglePlayerHandCollision_C_Received_NotifyEnd \ +static_assert(alignof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_TogglePlayerHandCollision_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd) == 0x000068, "Wrong size on AN_TogglePlayerHandCollision_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, K2Node_DynamicCast_AsWrestler_Melee_Collision_Interface) == 0x000050, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::K2Node_DynamicCast_AsWrestler_Melee_Collision_Interface' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_TogglePlayerHandCollision_C_Received_NotifyEnd, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'AN_TogglePlayerHandCollision_C_Received_NotifyEnd::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_TogglePlayerHandCollision_C \ +static_assert(alignof(UAN_TogglePlayerHandCollision_C) == 0x000008, "Wrong alignment on UAN_TogglePlayerHandCollision_C"); \ +static_assert(sizeof(UAN_TogglePlayerHandCollision_C) == 0x000038, "Wrong size on UAN_TogglePlayerHandCollision_C"); \ +static_assert(offsetof(UAN_TogglePlayerHandCollision_C, RightHand) == 0x000030, "Member 'UAN_TogglePlayerHandCollision_C::RightHand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_Bark_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_Bark_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_Bark_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_Bark_C_OnCharacterAudioNotify) == 0x000160, "Wrong size on AN_Audio_Bark_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue) == 0x000020, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000028, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_Conv_ObjectToText_ReturnValue) == 0x000038, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_GetDialogueInfo_ReturnValue) == 0x000050, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_MakeStruct_FormatArgumentData) == 0x000058, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_MakeArray_Array) == 0x0000A8, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_MakeArray_Array_1) == 0x0000B8, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_GetTagName_ReturnValue) == 0x0000C8, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_GetTagName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_Conv_NameToText_ReturnValue) == 0x0000D0, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_MakeStruct_FormatArgumentData_1) == 0x0000E8, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, K2Node_MakeArray_Array_2) == 0x000138, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Bark_C_OnCharacterAudioNotify, CallFunc_Format_ReturnValue) == 0x000148, "Member 'AN_Audio_Bark_C_OnCharacterAudioNotify::CallFunc_Format_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_Bark_C \ +static_assert(alignof(UAN_Audio_Bark_C) == 0x000008, "Wrong alignment on UAN_Audio_Bark_C"); \ +static_assert(sizeof(UAN_Audio_Bark_C) == 0x000060, "Wrong size on UAN_Audio_Bark_C"); \ +static_assert(offsetof(UAN_Audio_Bark_C, In_Prompt) == 0x000050, "Member 'UAN_Audio_Bark_C::In_Prompt' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_Bark_C, Debug) == 0x000058, "Member 'UAN_Audio_Bark_C::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_BindMontageEvents \ +static_assert(alignof(GA_Punch_Base_Alt_C_BindMontageEvents) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_BindMontageEvents"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_BindMontageEvents) == 0x000008, "Wrong size on GA_Punch_Base_Alt_C_BindMontageEvents"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_BindMontageEvents, InputPin) == 0x000000, "Member 'GA_Punch_Base_Alt_C_BindMontageEvents::InputPin' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_BP_OnHitTarget \ +static_assert(alignof(GA_Punch_Base_Alt_C_BP_OnHitTarget) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_BP_OnHitTarget"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_BP_OnHitTarget) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_BP_OnHitTarget"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_BP_OnHitTarget, InEventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_BP_OnHitTarget::InEventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_BP_OnHitTarget, InEventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_BP_OnHitTarget::InEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0 \ +static_assert(alignof(GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0, EventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0, EventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_EventReceived_0EC14BB0451DDB6B85DC84A11538F6A0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE \ +static_assert(alignof(GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE) == 0x0000B0, "Wrong size on GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE, Payload) == 0x000000, "Member 'GA_Punch_Base_Alt_C_EventReceived_41D2360140E0A7AA7FB11BA9318B3BFE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460 \ +static_assert(alignof(GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460) == 0x0000B0, "Wrong size on GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460, Payload) == 0x000000, "Member 'GA_Punch_Base_Alt_C_EventReceived_4E48AA6F457C6CDC38C5E1A8F4CE6460::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_ExecuteHitImpactCue \ +static_assert(alignof(GA_Punch_Base_Alt_C_ExecuteHitImpactCue) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_ExecuteHitImpactCue"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_ExecuteHitImpactCue) == 0x000028, "Wrong size on GA_Punch_Base_Alt_C_ExecuteHitImpactCue"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteHitImpactCue, TargetData) == 0x000000, "Member 'GA_Punch_Base_Alt_C_ExecuteHitImpactCue::TargetData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt \ +static_assert(alignof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt) == 0x000BF0, "Wrong size on GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, EntryPoint) == 0x000000, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventTag_2) == 0x000004, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventData_2) == 0x000010, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventTag_1) == 0x0000C0, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventData_1) == 0x0000C8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventTag) == 0x000188, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventData) == 0x000190, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable) == 0x000250, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable_1) == 0x000300, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_Payload_1) == 0x000308, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_2) == 0x0003B8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable_2) == 0x0003C8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_3) == 0x000478, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_OutHit) == 0x000488, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable_3) == 0x000570, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_4) == 0x000658, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_Payload) == 0x000668, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable_4) == 0x000718, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_5) == 0x0007C8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_6) == 0x0007D8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_DestinationReached) == 0x0007E8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_TimedOut) == 0x0007E9, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_FinalTargetLocation) == 0x0007F0, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_7) == 0x000808, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_struct_Variable_5) == 0x000818, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_bool_Variable) == 0x000830, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, Temp_bool_Variable_1) == 0x000831, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_Event_InEventTag) == 0x000834, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_Event_InEventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_Event_InEventData) == 0x000840, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_Event_InEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_8) == 0x0008F0, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_9) == 0x000900, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue) == 0x000910, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetMontage_ReturnValue) == 0x000918, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000920, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_1) == 0x000928, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000930, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000938, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000940, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000948, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_2) == 0x000950, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_3) == 0x000951, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventTag_4) == 0x000954, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventData_4) == 0x000960, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_4) == 0x000A10, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_FistHitDetect_ReturnValue) == 0x000A18, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_FistHitDetect_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_5) == 0x000A20, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000A28, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000A30, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_Event_bWasCancelled) == 0x000A38, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_MakeHitEventDataFromLineTrace_ReturnValue) == 0x000A40, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_MakeHitEventDataFromLineTrace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000AF0, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_6) == 0x000AF8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsActorInMoveToRange_ReturnValue) == 0x000AF9, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsActorInMoveToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x000B00, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_7) == 0x000B08, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CreateDelegate_OutputDelegate_10) == 0x000B0C, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_8) == 0x000B1C, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_ShouldFlinch_ReturnValue) == 0x000B1D, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_ShouldFlinch_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_9) == 0x000B1E, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventTag_3) == 0x000B20, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, K2Node_CustomEvent_EventData_3) == 0x000B28, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsStunned_IsStunned) == 0x000BD8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsStunned_IsStunned' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x000BE0, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_10) == 0x000BE8, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt, CallFunc_IsValid_ReturnValue_11) == 0x000BE9, "Member 'GA_Punch_Base_Alt_C_ExecuteUbergraph_GA_Punch_Base_Alt::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetOwningController \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetOwningController) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetOwningController"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetOwningController) == 0x000028, "Wrong size on GA_Punch_Base_Alt_C_GetOwningController"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningController, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetOwningController::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningController, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_GetOwningController::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningController, K2Node_DynamicCast_AsPawn) == 0x000010, "Member 'GA_Punch_Base_Alt_C_GetOwningController::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningController, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Punch_Base_Alt_C_GetOwningController::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningController, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_Punch_Base_Alt_C_GetOwningController::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetOwningWrestlerController \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetOwningWrestlerController) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetOwningWrestlerController"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetOwningWrestlerController) == 0x000020, "Wrong size on GA_Punch_Base_Alt_C_GetOwningWrestlerController"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningWrestlerController, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetOwningWrestlerController::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningWrestlerController, CallFunc_GetOwningController_ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_GetOwningWrestlerController::CallFunc_GetOwningController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningWrestlerController, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000010, "Member 'GA_Punch_Base_Alt_C_GetOwningWrestlerController::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetOwningWrestlerController, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Punch_Base_Alt_C_GetOwningWrestlerController::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetPunchImpulseDirection \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetPunchImpulseDirection"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection) == 0x000068, "Wrong size on GA_Punch_Base_Alt_C_GetPunchImpulseDirection"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetPunchImpulseDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_Punch_Base_Alt_C_GetPunchImpulseDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection, CallFunc_GetActorRightVector_ReturnValue) == 0x000020, "Member 'GA_Punch_Base_Alt_C_GetPunchImpulseDirection::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection, CallFunc_NegateVector_ReturnValue) == 0x000038, "Member 'GA_Punch_Base_Alt_C_GetPunchImpulseDirection::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchImpulseDirection, CallFunc_SelectVector_ReturnValue) == 0x000050, "Member 'GA_Punch_Base_Alt_C_GetPunchImpulseDirection::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetSocketName \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetSocketName) == 0x000004, "Wrong alignment on GA_Punch_Base_Alt_C_GetSocketName"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetSocketName) == 0x00000C, "Wrong size on GA_Punch_Base_Alt_C_GetSocketName"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetSocketName, bIsRight) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetSocketName::bIsRight' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetSocketName, OutName) == 0x000004, "Member 'GA_Punch_Base_Alt_C_GetSocketName::OutName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetTargetFilter \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetTargetFilter) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetTargetFilter"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetTargetFilter) == 0x000048, "Wrong size on GA_Punch_Base_Alt_C_GetTargetFilter"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetFilter, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetTargetFilter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetFilter, K2Node_MakeStruct_GameplayTargetDataFilter) == 0x000010, "Member 'GA_Punch_Base_Alt_C_GetTargetFilter::K2Node_MakeStruct_GameplayTargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetFilter, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_Punch_Base_Alt_C_GetTargetFilter::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetFilter, CallFunc_MakeFilterHandle_ReturnValue) == 0x000038, "Member 'GA_Punch_Base_Alt_C_GetTargetFilter::CallFunc_MakeFilterHandle_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetTargetVelocity \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetTargetVelocity) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetTargetVelocity"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetTargetVelocity) == 0x000028, "Wrong size on GA_Punch_Base_Alt_C_GetTargetVelocity"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetVelocity, CallFunc_GetVelocity_ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetTargetVelocity::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetTargetVelocity, CallFunc_Conv_VectorToString_ReturnValue) == 0x000018, "Member 'GA_Punch_Base_Alt_C_GetTargetVelocity::CallFunc_Conv_VectorToString_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_IsStunned \ +static_assert(alignof(GA_Punch_Base_Alt_C_IsStunned) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_IsStunned"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_IsStunned) == 0x000020, "Wrong size on GA_Punch_Base_Alt_C_IsStunned"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsStunned, IsStunned_0) == 0x000000, "Member 'GA_Punch_Base_Alt_C_IsStunned::IsStunned_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsStunned, Temp_bool_Variable) == 0x000001, "Member 'GA_Punch_Base_Alt_C_IsStunned::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsStunned, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000008, "Member 'GA_Punch_Base_Alt_C_IsStunned::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsStunned, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Punch_Base_Alt_C_IsStunned::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsStunned, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000019, "Member 'GA_Punch_Base_Alt_C_IsStunned::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_K2_OnEndAbility \ +static_assert(alignof(GA_Punch_Base_Alt_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Punch_Base_Alt_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Punch_Base_Alt_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Punch_Base_Alt_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0, EventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0, EventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_OnBlendOut_0EC14BB0451DDB6B85DC84A11538F6A0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0, EventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0, EventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_OnCancelled_0EC14BB0451DDB6B85DC84A11538F6A0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0, EventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0, EventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_OnCompleted_0EC14BB0451DDB6B85DC84A11538F6A0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710) == 0x000020, "Wrong size on GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710, DestinationReached) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710, TimedOut) == 0x000001, "Member 'GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710, FinalTargetLocation) == 0x000008, "Member 'GA_Punch_Base_Alt_C_OnFinished_F012628648D6989368E90FAD4E72F710::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10) == 0x0000E8, "Wrong size on GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10, OutHit) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnHit_F235190444647F92C91408B67DCB2A10::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0 \ +static_assert(alignof(GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0, EventTag) == 0x000000, "Member 'GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0, EventData) == 0x000008, "Member 'GA_Punch_Base_Alt_C_OnInterrupted_0EC14BB0451DDB6B85DC84A11538F6A0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_PlayMoveToGameplayCue \ +static_assert(alignof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_PlayMoveToGameplayCue"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue) == 0x000060, "Wrong size on GA_Punch_Base_Alt_C_PlayMoveToGameplayCue"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, MoveToCue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::MoveToCue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, Actor) == 0x000008, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, Activation_Distance) == 0x000010, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::Activation_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_Square_ReturnValue) == 0x000018, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000028, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000030, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_MakeEffectContext_ReturnValue) == 0x000038, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_MakeEffectContext_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000050, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000058, "Member 'GA_Punch_Base_Alt_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_SendGameplayEventsToTargets \ +static_assert(alignof(GA_Punch_Base_Alt_C_SendGameplayEventsToTargets) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_SendGameplayEventsToTargets"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_SendGameplayEventsToTargets) == 0x0000B8, "Wrong size on GA_Punch_Base_Alt_C_SendGameplayEventsToTargets"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SendGameplayEventsToTargets, GameplayEventData) == 0x000000, "Member 'GA_Punch_Base_Alt_C_SendGameplayEventsToTargets::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SendGameplayEventsToTargets, EventTag) == 0x0000B0, "Member 'GA_Punch_Base_Alt_C_SendGameplayEventsToTargets::EventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_SetPunchTarget \ +static_assert(alignof(GA_Punch_Base_Alt_C_SetPunchTarget) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_SetPunchTarget"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_SetPunchTarget) == 0x000018, "Wrong size on GA_Punch_Base_Alt_C_SetPunchTarget"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SetPunchTarget, CallFunc_K2_TargetActor_OutPins) == 0x000000, "Member 'GA_Punch_Base_Alt_C_SetPunchTarget::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SetPunchTarget, CallFunc_K2_TargetActor_ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_SetPunchTarget::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SetPunchTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'GA_Punch_Base_Alt_C_SetPunchTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_ShouldFlinch \ +static_assert(alignof(GA_Punch_Base_Alt_C_ShouldFlinch) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_ShouldFlinch"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_ShouldFlinch) == 0x000028, "Wrong size on GA_Punch_Base_Alt_C_ShouldFlinch"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ShouldFlinch, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_ShouldFlinch::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ShouldFlinch, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_ShouldFlinch::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ShouldFlinch, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Punch_Base_Alt_C_ShouldFlinch::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ShouldFlinch, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Punch_Base_Alt_C_ShouldFlinch::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_ShouldFlinch, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'GA_Punch_Base_Alt_C_ShouldFlinch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_SpawnCancelledCue \ +static_assert(alignof(GA_Punch_Base_Alt_C_SpawnCancelledCue) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_SpawnCancelledCue"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_SpawnCancelledCue) == 0x000018, "Wrong size on GA_Punch_Base_Alt_C_SpawnCancelledCue"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_SpawnCancelledCue, CallFunc_GetContextFromOwner_ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_SpawnCancelledCue::CallFunc_GetContextFromOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_GetPunchTarget \ +static_assert(alignof(GA_Punch_Base_Alt_C_GetPunchTarget) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_GetPunchTarget"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_GetPunchTarget) == 0x000010, "Wrong size on GA_Punch_Base_Alt_C_GetPunchTarget"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchTarget, ReturnValue) == 0x000000, "Member 'GA_Punch_Base_Alt_C_GetPunchTarget::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_GetPunchTarget, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_GetPunchTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_IsActorInMoveToRange \ +static_assert(alignof(GA_Punch_Base_Alt_C_IsActorInMoveToRange) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_IsActorInMoveToRange"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_IsActorInMoveToRange) == 0x000068, "Wrong size on GA_Punch_Base_Alt_C_IsActorInMoveToRange"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, Actor) == 0x000000, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, ReturnValue) == 0x000008, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000048, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_Square_ReturnValue) == 0x000050, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_IsActorInMoveToRange, CallFunc_Square_A_ImplicitCast) == 0x000060, "Member 'GA_Punch_Base_Alt_C_IsActorInMoveToRange::CallFunc_Square_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Punch_Base_Alt_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Punch_Base_Alt_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Punch_Base_Alt_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Punch_Base_Alt_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_Punch_Base_Alt_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Punch_Base_Alt_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Punch_Base_Alt_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Punch_Base_Alt_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Punch_Base_Alt_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Punch_Base_Alt_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Punch_Base_Alt_C \ +static_assert(alignof(UGA_Punch_Base_Alt_C) == 0x000008, "Wrong alignment on UGA_Punch_Base_Alt_C"); \ +static_assert(sizeof(UGA_Punch_Base_Alt_C) == 0x0008E0, "Wrong size on UGA_Punch_Base_Alt_C"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, UberGraphFrame) == 0x000678, "Member 'UGA_Punch_Base_Alt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, RightPunch) == 0x000680, "Member 'UGA_Punch_Base_Alt_C::RightPunch' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, PunchMontageStartSection) == 0x000684, "Member 'UGA_Punch_Base_Alt_C::PunchMontageStartSection' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, MoveToGameplayCueTag) == 0x00068C, "Member 'UGA_Punch_Base_Alt_C::MoveToGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, Move_to_Data) == 0x000698, "Member 'UGA_Punch_Base_Alt_C::Move_to_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, PunchTarget) == 0x000720, "Member 'UGA_Punch_Base_Alt_C::PunchTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, PunchCancelledGameplayCueTag) == 0x000728, "Member 'UGA_Punch_Base_Alt_C::PunchCancelledGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, HitResponseTag) == 0x000730, "Member 'UGA_Punch_Base_Alt_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, In_Event_Data) == 0x000738, "Member 'UGA_Punch_Base_Alt_C::In_Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, WaitReleaseAsyncTask) == 0x0007E8, "Member 'UGA_Punch_Base_Alt_C::WaitReleaseAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, bShouldEnemyDodge) == 0x0007F0, "Member 'UGA_Punch_Base_Alt_C::bShouldEnemyDodge' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, FlinchResponseTag) == 0x0007F4, "Member 'UGA_Punch_Base_Alt_C::FlinchResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, FistHitDetectAsyncTask) == 0x000800, "Member 'UGA_Punch_Base_Alt_C::FistHitDetectAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, Gameplay_Ability_Target_Data_Handle) == 0x000808, "Member 'UGA_Punch_Base_Alt_C::Gameplay_Ability_Target_Data_Handle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, HitEventTag) == 0x000830, "Member 'UGA_Punch_Base_Alt_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, Target_Data) == 0x000838, "Member 'UGA_Punch_Base_Alt_C::Target_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, HandSocketName) == 0x000860, "Member 'UGA_Punch_Base_Alt_C::HandSocketName' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, AimAssistAsyncTask) == 0x000868, "Member 'UGA_Punch_Base_Alt_C::AimAssistAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, FlinchReactionTags) == 0x000870, "Member 'UGA_Punch_Base_Alt_C::FlinchReactionTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, ControlRotAsyncTask) == 0x000890, "Member 'UGA_Punch_Base_Alt_C::ControlRotAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, Hit_Component) == 0x000898, "Member 'UGA_Punch_Base_Alt_C::Hit_Component' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, EnemyHit) == 0x0008A0, "Member 'UGA_Punch_Base_Alt_C::EnemyHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, OverlapEventData) == 0x0008A8, "Member 'UGA_Punch_Base_Alt_C::OverlapEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, MoveAsyncTask) == 0x0008D0, "Member 'UGA_Punch_Base_Alt_C::MoveAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Punch_Base_Alt_C, Gameplay_Cue_Tag) == 0x0008D8, "Member 'UGA_Punch_Base_Alt_C::Gameplay_Cue_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig \ +static_assert(alignof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig) == 0x000008, "Wrong alignment on SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig"); \ +static_assert(sizeof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig) == 0x000020, "Wrong size on SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig, EntryPoint) == 0x000000, "Member 'SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig, K2Node_Event_InAutomata) == 0x000008, "Member 'SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig, K2Node_Event_InState) == 0x000010, "Member 'SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig, CallFunc_GetActorOfClass_ReturnValue) == 0x000018, "Member 'SetDynamicCombatConfig_C_ExecuteUbergraph_SetDynamicCombatConfig::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetDynamicCombatConfig_C_ReceiveExecute \ +static_assert(alignof(SetDynamicCombatConfig_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetDynamicCombatConfig_C_ReceiveExecute"); \ +static_assert(sizeof(SetDynamicCombatConfig_C_ReceiveExecute) == 0x000010, "Wrong size on SetDynamicCombatConfig_C_ReceiveExecute"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetDynamicCombatConfig_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetDynamicCombatConfig_C_ReceiveExecute, InState) == 0x000008, "Member 'SetDynamicCombatConfig_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetDynamicCombatConfig_C \ +static_assert(alignof(USetDynamicCombatConfig_C) == 0x000008, "Wrong alignment on USetDynamicCombatConfig_C"); \ +static_assert(sizeof(USetDynamicCombatConfig_C) == 0x000098, "Wrong size on USetDynamicCombatConfig_C"); \ +static_assert(offsetof(USetDynamicCombatConfig_C, UberGraphFrame) == 0x000088, "Member 'USetDynamicCombatConfig_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetDynamicCombatConfig_C, Level_Data_Asset) == 0x000090, "Member 'USetDynamicCombatConfig_C::Level_Data_Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Gaurd_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Gaurd_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Gaurd_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Gaurd_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Gaurd_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy \ +static_assert(alignof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy) == 0x000008, "Wrong alignment on GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy"); \ +static_assert(sizeof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy) == 0x000030, "Wrong size on GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy, EntryPoint) == 0x000000, "Member 'GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000004, "Member 'GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Heavy_C_ExecuteUbergraph_GA_PlayerPunch_Heavy::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Heavy_C \ +static_assert(alignof(UGA_PlayerPunch_Heavy_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Heavy_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Heavy_C) == 0x000950, "Wrong size on UGA_PlayerPunch_Heavy_C"); \ +static_assert(offsetof(UGA_PlayerPunch_Heavy_C, UberGraphFrame_GA_PlayerPunch_Heavy_C) == 0x000948, "Member 'UGA_PlayerPunch_Heavy_C::UberGraphFrame_GA_PlayerPunch_Heavy_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState \ +static_assert(alignof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState) == 0x000008, "Wrong alignment on ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState"); \ +static_assert(sizeof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState) == 0x000058, "Wrong size on ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState, EntryPoint) == 0x000000, "Member 'ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState, K2Node_Event_Transition) == 0x000004, "Member 'ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState::K2Node_Event_Transition' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState, CallFunc_GetAnimInstance_ReturnValue) == 0x000038, "Member 'ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState, K2Node_DynamicCast_AsWrestler_Anim_Interface) == 0x000040, "Member 'ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState::K2Node_DynamicCast_AsWrestler_Anim_Interface' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'ST_Task_SetAnimState_C_ExecuteUbergraph_ST_Task_SetAnimState::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ST_Task_SetAnimState_C_GetAnimInstance \ +static_assert(alignof(ST_Task_SetAnimState_C_GetAnimInstance) == 0x000008, "Wrong alignment on ST_Task_SetAnimState_C_GetAnimInstance"); \ +static_assert(sizeof(ST_Task_SetAnimState_C_GetAnimInstance) == 0x000020, "Wrong size on ST_Task_SetAnimState_C_GetAnimInstance"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_GetAnimInstance, ReturnValue) == 0x000000, "Member 'ST_Task_SetAnimState_C_GetAnimInstance::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_GetAnimInstance, K2Node_DynamicCast_AsCharacter) == 0x000008, "Member 'ST_Task_SetAnimState_C_GetAnimInstance::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_GetAnimInstance, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'ST_Task_SetAnimState_C_GetAnimInstance::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_GetAnimInstance, CallFunc_GetAnimInstance_ReturnValue) == 0x000018, "Member 'ST_Task_SetAnimState_C_GetAnimInstance::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ST_Task_SetAnimState_C_ReceiveLatentEnterState \ +static_assert(alignof(ST_Task_SetAnimState_C_ReceiveLatentEnterState) == 0x000002, "Wrong alignment on ST_Task_SetAnimState_C_ReceiveLatentEnterState"); \ +static_assert(sizeof(ST_Task_SetAnimState_C_ReceiveLatentEnterState) == 0x00002E, "Wrong size on ST_Task_SetAnimState_C_ReceiveLatentEnterState"); \ +static_assert(offsetof(ST_Task_SetAnimState_C_ReceiveLatentEnterState, Transition) == 0x000000, "Member 'ST_Task_SetAnimState_C_ReceiveLatentEnterState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UST_Task_SetAnimState_C \ +static_assert(alignof(UST_Task_SetAnimState_C) == 0x000008, "Wrong alignment on UST_Task_SetAnimState_C"); \ +static_assert(sizeof(UST_Task_SetAnimState_C) == 0x000060, "Wrong size on UST_Task_SetAnimState_C"); \ +static_assert(offsetof(UST_Task_SetAnimState_C, UberGraphFrame) == 0x000048, "Member 'UST_Task_SetAnimState_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UST_Task_SetAnimState_C, Context) == 0x000050, "Member 'UST_Task_SetAnimState_C::Context' has a wrong offset!"); \ +static_assert(offsetof(UST_Task_SetAnimState_C, NewState) == 0x000058, "Member 'UST_Task_SetAnimState_C::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_SuppressBarks_EffortOnly_C \ +static_assert(alignof(UGE_SuppressBarks_EffortOnly_C) == 0x000008, "Wrong alignment on UGE_SuppressBarks_EffortOnly_C"); \ +static_assert(sizeof(UGE_SuppressBarks_EffortOnly_C) == 0x000A70, "Wrong size on UGE_SuppressBarks_EffortOnly_C"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetBlendWeight \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetBlendWeight) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetBlendWeight"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetBlendWeight) == 0x000010, "Wrong size on CM_WrestlerCameraModifier_C_GetBlendWeight"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetBlendWeight, ReturnValue) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetBlendWeight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetBlendWeight, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000008, "Member 'CM_WrestlerCameraModifier_C_GetBlendWeight::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetCharacterViewTarget \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetCharacterViewTarget"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget) == 0x000020, "Wrong size on CM_WrestlerCameraModifier_C_GetCharacterViewTarget"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget, ReturnValue) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTarget::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget, CallFunc_GetViewTarget_ReturnValue) == 0x000008, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTarget::CallFunc_GetViewTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget, K2Node_DynamicCast_AsCharacter) == 0x000010, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTarget::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTarget, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue) == 0x000030, "Wrong size on CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, CurveName) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::CurveName' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, ReturnValue) == 0x000008, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, CallFunc_GetCharacterViewTargetMesh_returnValue) == 0x000010, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::CallFunc_GetCharacterViewTargetMesh_returnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, CallFunc_GetAnimInstance_ReturnValue) == 0x000018, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, CallFunc_GetCurveValue_ReturnValue) == 0x000020, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::CallFunc_GetCurveValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000028, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetAnimCurveValue::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh) == 0x000010, "Wrong size on CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh, ReturnValue) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh, CallFunc_GetCharacterViewTarget_returnValue) == 0x000008, "Member 'CM_WrestlerCameraModifier_C_GetCharacterViewTargetMesh::CallFunc_GetCharacterViewTarget_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent) == 0x000018, "Wrong size on CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent, ReturnValue) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent, CallFunc_GetViewTarget_ReturnValue) == 0x000008, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent::CallFunc_GetViewTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAbilitySystemComponent::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetViewTargetAttribute \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetViewTargetAttribute"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute) == 0x000060, "Wrong size on CM_WrestlerCameraModifier_C_GetViewTargetAttribute"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, Attribute) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::Attribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, bSuccessfullyFoundAttribute) == 0x000038, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, ReturnValue) == 0x000040, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, CallFunc_GetViewTargetAbilitySystemComponent_ReturnValue) == 0x000048, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::CallFunc_GetViewTargetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000050, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x000054, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttribute, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000058, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttribute::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase \ +static_assert(alignof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase) == 0x000060, "Wrong size on CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, Attribute) == 0x000000, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::Attribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, bSuccessfullyFoundAttribute) == 0x000038, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, ReturnValue) == 0x000040, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, CallFunc_GetViewTargetAbilitySystemComponent_ReturnValue) == 0x000048, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::CallFunc_GetViewTargetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000050, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_ReturnValue) == 0x000054, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000058, "Member 'CM_WrestlerCameraModifier_C_GetViewTargetAttributeBase::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WrestlerCameraModifier_C \ +static_assert(alignof(UCM_WrestlerCameraModifier_C) == 0x000008, "Wrong alignment on UCM_WrestlerCameraModifier_C"); \ +static_assert(sizeof(UCM_WrestlerCameraModifier_C) == 0x000050, "Wrong size on UCM_WrestlerCameraModifier_C"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_C, MenuBool) == 0x000048, "Member 'UCM_WrestlerCameraModifier_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning \ +static_assert(alignof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning) == 0x000010, "Wrong alignment on BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning"); \ +static_assert(sizeof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning) == 0x000090, "Wrong size on BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning"); \ +static_assert(offsetof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning, EntryPoint) == 0x000000, "Member 'BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x000020, "Member 'BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000080, "Member 'BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning, CallFunc_FinishSpawningActor_ReturnValue) == 0x000088, "Member 'BP_Explosion_Burning_C_ExecuteUbergraph_BP_Explosion_Burning::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Explosion_Burning_C \ +static_assert(alignof(ABP_Explosion_Burning_C) == 0x000008, "Wrong alignment on ABP_Explosion_Burning_C"); \ +static_assert(sizeof(ABP_Explosion_Burning_C) == 0x000428, "Wrong size on ABP_Explosion_Burning_C"); \ +static_assert(offsetof(ABP_Explosion_Burning_C, UberGraphFrame_BP_Explosion_Burning_C) == 0x000420, "Member 'ABP_Explosion_Burning_C::UberGraphFrame_BP_Explosion_Burning_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight \ +static_assert(alignof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight) == 0x000008, "Wrong alignment on STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight"); \ +static_assert(sizeof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight) == 0x0000C0, "Wrong size on STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, EntryPoint) == 0x000000, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, K2Node_Event_Transition_1) == 0x000004, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::K2Node_Event_Transition_1' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, K2Node_CreateDelegate_OutputDelegate) == 0x000034, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, K2Node_Event_Transition) == 0x000044, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::K2Node_Event_Transition' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000078, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000088, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, CallFunc_GetAIController_ReturnValue) == 0x0000A0, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight, CallFunc_GetLastSensedLocation_ReturnValue) == 0x0000A8, "Member 'STT_CombatSight_C_ExecuteUbergraph_STT_CombatSight::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_CombatSight_C_ReceiveExitState \ +static_assert(alignof(STT_CombatSight_C_ReceiveExitState) == 0x000002, "Wrong alignment on STT_CombatSight_C_ReceiveExitState"); \ +static_assert(sizeof(STT_CombatSight_C_ReceiveExitState) == 0x00002E, "Wrong size on STT_CombatSight_C_ReceiveExitState"); \ +static_assert(offsetof(STT_CombatSight_C_ReceiveExitState, Transition) == 0x000000, "Member 'STT_CombatSight_C_ReceiveExitState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_CombatSight_C_ReceiveLatentEnterState \ +static_assert(alignof(STT_CombatSight_C_ReceiveLatentEnterState) == 0x000002, "Wrong alignment on STT_CombatSight_C_ReceiveLatentEnterState"); \ +static_assert(sizeof(STT_CombatSight_C_ReceiveLatentEnterState) == 0x00002E, "Wrong size on STT_CombatSight_C_ReceiveLatentEnterState"); \ +static_assert(offsetof(STT_CombatSight_C_ReceiveLatentEnterState, Transition) == 0x000000, "Member 'STT_CombatSight_C_ReceiveLatentEnterState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USTT_CombatSight_C \ +static_assert(alignof(USTT_CombatSight_C) == 0x000008, "Wrong alignment on USTT_CombatSight_C"); \ +static_assert(sizeof(USTT_CombatSight_C) == 0x000068, "Wrong size on USTT_CombatSight_C"); \ +static_assert(offsetof(USTT_CombatSight_C, UberGraphFrame) == 0x000048, "Member 'USTT_CombatSight_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USTT_CombatSight_C, Timer) == 0x000050, "Member 'USTT_CombatSight_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(USTT_CombatSight_C, Context) == 0x000058, "Member 'USTT_CombatSight_C::Context' has a wrong offset!"); \ +static_assert(offsetof(USTT_CombatSight_C, UpdateRate) == 0x000060, "Member 'USTT_CombatSight_C::UpdateRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02 \ +static_assert(alignof(GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02) == 0x000004, "Wrong alignment on GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02"); \ +static_assert(sizeof(GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02) == 0x000004, "Wrong size on GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02"); \ +static_assert(offsetof(GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_WallLearn_02_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_02::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_WallLearn_02_C \ +static_assert(alignof(UGA_Patrol_Action_WallLearn_02_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_WallLearn_02_C"); \ +static_assert(sizeof(UGA_Patrol_Action_WallLearn_02_C) == 0x000698, "Wrong size on UGA_Patrol_Action_WallLearn_02_C"); \ +static_assert(offsetof(UGA_Patrol_Action_WallLearn_02_C, UberGraphFrame_GA_Patrol_Action_WallLearn_02_C) == 0x000690, "Member 'UGA_Patrol_Action_WallLearn_02_C::UberGraphFrame_GA_Patrol_Action_WallLearn_02_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride \ +static_assert(alignof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride) == 0x000008, "Wrong alignment on ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride"); \ +static_assert(sizeof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride) == 0x000070, "Wrong size on ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, EntryPoint) == 0x000000, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_GetReactionDistance_ReturnValue) == 0x000004, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_GetReactionDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_GetOwner_ReturnValue) == 0x000008, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_GetOwner_ReturnValue_1) == 0x000028, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_GetComponentByClass_ReturnValue) == 0x000030, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_GetMinReactionDistance_ReturnValue) == 0x00003C, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_GetMinReactionDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SelectFloat_ReturnValue) == 0x000040, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SelectFloat_ReturnValue_1) == 0x000048, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SelectFloat_B_ImplicitCast) == 0x000050, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SelectFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_DrawDebugSphere_Radius_ImplicitCast) == 0x000058, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_DrawDebugSphere_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_DrawDebugSphere_Radius_ImplicitCast_1) == 0x00005C, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_DrawDebugSphere_Radius_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SelectFloat_B_ImplicitCast_1) == 0x000060, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SelectFloat_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SetReactionDistance_InNewMinDistance_ImplicitCast) == 0x000068, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SetReactionDistance_InNewMinDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride, CallFunc_SetReactionDistance_InNewMaxDistance_ImplicitCast) == 0x00006C, "Member 'ReactiveCrosshairOverride_C_ExecuteUbergraph_ReactiveCrosshairOverride::CallFunc_SetReactionDistance_InNewMaxDistance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReactiveCrosshairOverride_C \ +static_assert(alignof(UReactiveCrosshairOverride_C) == 0x000008, "Wrong alignment on UReactiveCrosshairOverride_C"); \ +static_assert(sizeof(UReactiveCrosshairOverride_C) == 0x0000D8, "Wrong size on UReactiveCrosshairOverride_C"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, UberGraphFrame) == 0x0000A0, "Member 'UReactiveCrosshairOverride_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, Override_MinDistance) == 0x0000A8, "Member 'UReactiveCrosshairOverride_C::Override_MinDistance' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, MinDistance) == 0x0000B0, "Member 'UReactiveCrosshairOverride_C::MinDistance' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, Override_MaxDistance) == 0x0000B8, "Member 'UReactiveCrosshairOverride_C::Override_MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, MaxDistance) == 0x0000C0, "Member 'UReactiveCrosshairOverride_C::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, Debug_Duration) == 0x0000C8, "Member 'UReactiveCrosshairOverride_C::Debug_Duration' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairOverride_C, CosshairReactComponent) == 0x0000D0, "Member 'UReactiveCrosshairOverride_C::CosshairReactComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded \ +static_assert(alignof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded) == 0x000008, "Wrong alignment on CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded"); \ +static_assert(sizeof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded) == 0x000060, "Wrong size on CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, EntryPoint) == 0x000000, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, K2Node_Event_InAutomata) == 0x000018, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, K2Node_Event_InState) == 0x000020, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000038, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_Array_Get_Item) == 0x000048, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000050, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ExecuteUbergraph_CheckTaggedEnemyIfTagIsAdded::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute \ +static_assert(alignof(CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute"); \ +static_assert(sizeof(CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute) == 0x000010, "Wrong size on CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckTaggedEnemyIfTagIsAdded_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckTaggedEnemyIfTagIsAdded_C \ +static_assert(alignof(UCheckTaggedEnemyIfTagIsAdded_C) == 0x000008, "Wrong alignment on UCheckTaggedEnemyIfTagIsAdded_C"); \ +static_assert(sizeof(UCheckTaggedEnemyIfTagIsAdded_C) == 0x0000A8, "Wrong size on UCheckTaggedEnemyIfTagIsAdded_C"); \ +static_assert(offsetof(UCheckTaggedEnemyIfTagIsAdded_C, UberGraphFrame) == 0x000088, "Member 'UCheckTaggedEnemyIfTagIsAdded_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckTaggedEnemyIfTagIsAdded_C, Find_Enemy_With_Tag) == 0x000090, "Member 'UCheckTaggedEnemyIfTagIsAdded_C::Find_Enemy_With_Tag' has a wrong offset!"); \ +static_assert(offsetof(UCheckTaggedEnemyIfTagIsAdded_C, Trigger_When_Tag_Is_added) == 0x000098, "Member 'UCheckTaggedEnemyIfTagIsAdded_C::Trigger_When_Tag_Is_added' has a wrong offset!"); \ +static_assert(offsetof(UCheckTaggedEnemyIfTagIsAdded_C, Update_Objective_) == 0x0000A0, "Member 'UCheckTaggedEnemyIfTagIsAdded_C::Update_Objective_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_WrestlerStealthFeed_Kill_C \ +static_assert(alignof(ATA_WrestlerStealthFeed_Kill_C) == 0x000010, "Wrong alignment on ATA_WrestlerStealthFeed_Kill_C"); \ +static_assert(sizeof(ATA_WrestlerStealthFeed_Kill_C) == 0x0004B0, "Wrong size on ATA_WrestlerStealthFeed_Kill_C"); \ + +#define DUMPER7_ASSERTS_UGE_BloodHeal_Cost_C \ +static_assert(alignof(UGE_BloodHeal_Cost_C) == 0x000008, "Wrong alignment on UGE_BloodHeal_Cost_C"); \ +static_assert(sizeof(UGE_BloodHeal_Cost_C) == 0x000A70, "Wrong size on UGE_BloodHeal_Cost_C"); \ + +#define DUMPER7_ASSERTS_GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact \ +static_assert(alignof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact) == 0x000008, "Wrong alignment on GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact"); \ +static_assert(sizeof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact) == 0x0001E0, "Wrong size on GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, EntryPoint) == 0x000000, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_1) == 0x000038, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_2) == 0x000048, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_3) == 0x000058, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_4) == 0x000068, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_5) == 0x000078, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_CreateDelegate_OutputDelegate_6) == 0x000088, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000098, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_IsValid_ReturnValue) == 0x0000A0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, K2Node_Event_bWasCancelled) == 0x0000A1, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000A8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0000B0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0000D0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0000E8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000F0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000108, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000120, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000138, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_BreakRotator_Roll) == 0x000140, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_BreakRotator_Pitch) == 0x000144, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_BreakRotator_Yaw) == 0x000148, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_MakeRotator_ReturnValue) == 0x000150, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000168, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000170, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000178, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000190, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000198, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0001A0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetMassEntityHandle_ReturnValue) == 0x0001A8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x0001B0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetMassEntityHandle_OutEntityHandle_1) == 0x0001B8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetMassEntityHandle_OutEntityHandle_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetMassEntityHandle_ReturnValue_1) == 0x0001C0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetMassEntityHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_GetMontage_ReturnValue) == 0x0001C8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0001D0, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact, CallFunc_IsValid_ReturnValue_1) == 0x0001D8, "Member 'GA_FeedCancelReact_C_ExecuteUbergraph_GA_FeedCancelReact::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FeedCancelReact_C_K2_OnEndAbility \ +static_assert(alignof(GA_FeedCancelReact_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_FeedCancelReact_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_FeedCancelReact_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_FeedCancelReact_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_FeedCancelReact_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_FeedCancelReact_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_FeedCancelReact_C \ +static_assert(alignof(UGA_FeedCancelReact_C) == 0x000008, "Wrong alignment on UGA_FeedCancelReact_C"); \ +static_assert(sizeof(UGA_FeedCancelReact_C) == 0x000670, "Wrong size on UGA_FeedCancelReact_C"); \ +static_assert(offsetof(UGA_FeedCancelReact_C, UberGraphFrame) == 0x000668, "Member 'UGA_FeedCancelReact_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_PostEvent_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_PostEvent_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_PostEvent_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_PostEvent_C_OnCharacterAudioNotify) == 0x000168, "Wrong size on AN_Audio_PostEvent_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, Temp_delegate_Variable) == 0x000018, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_Conv_ObjectToText_ReturnValue) == 0x000028, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000040, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, K2Node_MakeStruct_FormatArgumentData) == 0x000058, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x0000A8, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_GetDisplayName_ReturnValue) == 0x0000B0, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_Contains_ReturnValue) == 0x0000C0, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_Conv_ObjectToText_ReturnValue_1) == 0x0000C8, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_Conv_ObjectToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, K2Node_MakeStruct_FormatArgumentData_1) == 0x0000E0, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, K2Node_MakeArray_Array) == 0x000130, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_Format_ReturnValue) == 0x000140, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_OnCharacterAudioNotify, CallFunc_Conv_TextToString_ReturnValue) == 0x000158, "Member 'AN_Audio_PostEvent_C_OnCharacterAudioNotify::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_PostEvent_C_Received_Notify \ +static_assert(alignof(AN_Audio_PostEvent_C_Received_Notify) == 0x000008, "Wrong alignment on AN_Audio_PostEvent_C_Received_Notify"); \ +static_assert(sizeof(AN_Audio_PostEvent_C_Received_Notify) == 0x000230, "Wrong size on AN_Audio_PostEvent_C_Received_Notify"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, MeshComp) == 0x000000, "Member 'AN_Audio_PostEvent_C_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, Animation) == 0x000008, "Member 'AN_Audio_PostEvent_C_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, EventReference) == 0x000010, "Member 'AN_Audio_PostEvent_C_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, ReturnValue) == 0x000040, "Member 'AN_Audio_PostEvent_C_Received_Notify::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Conv_ObjectToText_ReturnValue) == 0x000048, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData) == 0x000060, "Member 'AN_Audio_PostEvent_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_GetOwner_ReturnValue) == 0x0000B0, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_GetDisplayName_ReturnValue) == 0x0000B8, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Contains_ReturnValue) == 0x0000C8, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Conv_NameToText_ReturnValue) == 0x0000D0, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Conv_ObjectToText_ReturnValue_1) == 0x0000E8, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Conv_ObjectToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_1) == 0x000100, "Member 'AN_Audio_PostEvent_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_2) == 0x000150, "Member 'AN_Audio_PostEvent_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Conv_BoolToText_ReturnValue) == 0x0001A0, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Conv_BoolToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_3) == 0x0001B8, "Member 'AN_Audio_PostEvent_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, K2Node_MakeArray_Array) == 0x000208, "Member 'AN_Audio_PostEvent_C_Received_Notify::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_PostEvent_C_Received_Notify, CallFunc_Format_ReturnValue) == 0x000218, "Member 'AN_Audio_PostEvent_C_Received_Notify::CallFunc_Format_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_PostEvent_C \ +static_assert(alignof(UAN_Audio_PostEvent_C) == 0x000008, "Wrong alignment on UAN_Audio_PostEvent_C"); \ +static_assert(sizeof(UAN_Audio_PostEvent_C) == 0x000070, "Wrong size on UAN_Audio_PostEvent_C"); \ +static_assert(offsetof(UAN_Audio_PostEvent_C, Force_Post) == 0x000050, "Member 'UAN_Audio_PostEvent_C::Force_Post' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_PostEvent_C, Debug2D) == 0x000051, "Member 'UAN_Audio_PostEvent_C::Debug2D' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_PostEvent_C, DebugFilter) == 0x000052, "Member 'UAN_Audio_PostEvent_C::DebugFilter' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_PostEvent_C, ActorNameFilter) == 0x000058, "Member 'UAN_Audio_PostEvent_C::ActorNameFilter' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_PostEvent_C, Debug3D) == 0x000068, "Member 'UAN_Audio_PostEvent_C::Debug3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Light_right_C \ +static_assert(alignof(UGA_PlayerPunch_Light_right_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Light_right_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Light_right_C) == 0x000948, "Wrong size on UGA_PlayerPunch_Light_right_C"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Light_left_C \ +static_assert(alignof(UGA_PlayerPunch_Light_left_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Light_left_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Light_left_C) == 0x000948, "Wrong size on UGA_PlayerPunch_Light_left_C"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Light_left_followup_C \ +static_assert(alignof(UGA_PlayerPunch_Light_left_followup_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Light_left_followup_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Light_left_followup_C) == 0x000948, "Wrong size on UGA_PlayerPunch_Light_left_followup_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing \ +static_assert(alignof(GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing) == 0x000004, "Wrong alignment on GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing"); \ +static_assert(sizeof(GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing) == 0x000004, "Wrong size on GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing"); \ +static_assert(offsetof(GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Shovelhead_Standing_C_ExecuteUbergraph_GA_Patrol_Action_Shovelhead_Standing::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Shovelhead_Standing_C \ +static_assert(alignof(UGA_Patrol_Action_Shovelhead_Standing_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Shovelhead_Standing_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Shovelhead_Standing_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Shovelhead_Standing_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Shovelhead_Standing_C, UberGraphFrame_GA_Patrol_Action_Shovelhead_Standing_C) == 0x000690, "Member 'UGA_Patrol_Action_Shovelhead_Standing_C::UberGraphFrame_GA_Patrol_Action_Shovelhead_Standing_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange \ +static_assert(alignof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange) == 0x000008, "Wrong alignment on WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange"); \ +static_assert(sizeof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange) == 0x0001B8, "Wrong size on WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, ReturnValue) == 0x000000, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, Temp_bool_Variable) == 0x000001, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GetCameraRotation_ReturnValue) == 0x000010, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GetCameraLocation_ReturnValue) == 0x000028, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GetForwardVector_ReturnValue) == 0x000040, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_Not_PreBool_ReturnValue) == 0x000058, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000078, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000098, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_IsValid_ReturnValue) == 0x000099, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, Temp_object_Variable) == 0x0000A0, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_LineTraceSingle_OutHit) == 0x0000B0, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_LineTraceSingle_ReturnValue) == 0x000198, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0001A0, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, K2Node_DynamicCast_bSuccess) == 0x0001B0, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_Not_PreBool_ReturnValue_1) == 0x0001B1, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0001B2, "Member 'WBP_EnemyHealthBar_C_CanShowHealthBarOnStunChange::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar \ +static_assert(alignof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar) == 0x000008, "Wrong alignment on WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar"); \ +static_assert(sizeof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar) == 0x0000E0, "Wrong size on WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, EntryPoint) == 0x000000, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_GetGlobalTimeDilation_ReturnValue) == 0x000004, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_GetGlobalTimeDilation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, K2Node_CustomEvent_CurrentValue) == 0x000014, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, K2Node_CustomEvent_MaxValue) == 0x000018, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, K2Node_CustomEvent_HasNoFeedTag) == 0x00001C, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::K2Node_CustomEvent_HasNoFeedTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000020, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_FClamp_ReturnValue) == 0x000028, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000030, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, Temp_bool_IsClosed_Variable) == 0x000031, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000034, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000038, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000040, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, Temp_byte_Variable) == 0x000041, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_PlayAnimation_ReturnValue) == 0x000048, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, Temp_byte_Variable_1) == 0x000050, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000051, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_CanShowHealthBarOnStunChange_ReturnValue) == 0x000052, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_CanShowHealthBarOnStunChange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000058, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000060, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, Temp_bool_Variable) == 0x000068, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, K2Node_Select_Default) == 0x000069, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000070, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x000078, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000080, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000088, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x000090, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000098, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0000A0, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0000A8, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, K2Node_VariableSet_DelayBarTarget_ImplicitCast) == 0x0000B0, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::K2Node_VariableSet_DelayBarTarget_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000B8, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x0000C0, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1) == 0x0000C8, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1) == 0x0000D0, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_1) == 0x0000D8, "Member 'WBP_EnemyHealthBar_C_ExecuteUbergraph_WBP_EnemyHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemyHealthBar_C_InitHealthbar \ +static_assert(alignof(WBP_EnemyHealthBar_C_InitHealthbar) == 0x000008, "Wrong alignment on WBP_EnemyHealthBar_C_InitHealthbar"); \ +static_assert(sizeof(WBP_EnemyHealthBar_C_InitHealthbar) == 0x0000A0, "Wrong size on WBP_EnemyHealthBar_C_InitHealthbar"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, InTargetActor) == 0x000000, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, InStunThreshold) == 0x000008, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::InStunThreshold' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_MapRangeClamped_ReturnValue) == 0x000010, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000018, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_ReturnValue) == 0x00001C, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_MakeVector2D_ReturnValue) == 0x000020, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000030, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000034, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000038, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2) == 0x000040, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_ReturnValue_2) == 0x000044, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3) == 0x000050, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_GetFloatAttribute_ReturnValue_3) == 0x000054, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_GetFloatAttribute_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000060, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000068, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000070, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, K2Node_VariableSet_MaxHealth_ImplicitCast) == 0x000078, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::K2Node_VariableSet_MaxHealth_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1) == 0x000080, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000088, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000090, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_InitHealthbar, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000098, "Member 'WBP_EnemyHealthBar_C_InitHealthbar::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemyHealthBar_C_OnStunChanged_Event \ +static_assert(alignof(WBP_EnemyHealthBar_C_OnStunChanged_Event) == 0x000004, "Wrong alignment on WBP_EnemyHealthBar_C_OnStunChanged_Event"); \ +static_assert(sizeof(WBP_EnemyHealthBar_C_OnStunChanged_Event) == 0x00000C, "Wrong size on WBP_EnemyHealthBar_C_OnStunChanged_Event"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_OnStunChanged_Event, CurrentValue) == 0x000000, "Member 'WBP_EnemyHealthBar_C_OnStunChanged_Event::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_OnStunChanged_Event, MaxValue) == 0x000004, "Member 'WBP_EnemyHealthBar_C_OnStunChanged_Event::MaxValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_OnStunChanged_Event, HasNoFeedTag) == 0x000008, "Member 'WBP_EnemyHealthBar_C_OnStunChanged_Event::HasNoFeedTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemyHealthBar_C_UpdateHealthBar \ +static_assert(alignof(WBP_EnemyHealthBar_C_UpdateHealthBar) == 0x000008, "Wrong alignment on WBP_EnemyHealthBar_C_UpdateHealthBar"); \ +static_assert(sizeof(WBP_EnemyHealthBar_C_UpdateHealthBar) == 0x000030, "Wrong size on WBP_EnemyHealthBar_C_UpdateHealthBar"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_UpdateHealthBar, InCurrentHealth) == 0x000000, "Member 'WBP_EnemyHealthBar_C_UpdateHealthBar::InCurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_UpdateHealthBar, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'WBP_EnemyHealthBar_C_UpdateHealthBar::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_UpdateHealthBar, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000018, "Member 'WBP_EnemyHealthBar_C_UpdateHealthBar::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_UpdateHealthBar, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000020, "Member 'WBP_EnemyHealthBar_C_UpdateHealthBar::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemyHealthBar_C_UpdateHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000028, "Member 'WBP_EnemyHealthBar_C_UpdateHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_EnemyHealthBar_C \ +static_assert(alignof(UWBP_EnemyHealthBar_C) == 0x000008, "Wrong alignment on UWBP_EnemyHealthBar_C"); \ +static_assert(sizeof(UWBP_EnemyHealthBar_C) == 0x000350, "Wrong size on UWBP_EnemyHealthBar_C"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_EnemyHealthBar_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, SparkFeed) == 0x0002C8, "Member 'UWBP_EnemyHealthBar_C::SparkFeed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, Fangs) == 0x0002D0, "Member 'UWBP_EnemyHealthBar_C::Fangs' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, FeedBar) == 0x0002D8, "Member 'UWBP_EnemyHealthBar_C::FeedBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, HealthBar) == 0x0002E0, "Member 'UWBP_EnemyHealthBar_C::HealthBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, HealthBar_Delayed) == 0x0002E8, "Member 'UWBP_EnemyHealthBar_C::HealthBar_Delayed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, HealthBarOverlay) == 0x0002F0, "Member 'UWBP_EnemyHealthBar_C::HealthBarOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, MainCanvas) == 0x0002F8, "Member 'UWBP_EnemyHealthBar_C::MainCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, Spark) == 0x000300, "Member 'UWBP_EnemyHealthBar_C::Spark' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, TargetActor) == 0x000308, "Member 'UWBP_EnemyHealthBar_C::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, MaxHealth) == 0x000310, "Member 'UWBP_EnemyHealthBar_C::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, Stun_Threshold) == 0x000318, "Member 'UWBP_EnemyHealthBar_C::Stun_Threshold' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, DelayBarTarget) == 0x000320, "Member 'UWBP_EnemyHealthBar_C::DelayBarTarget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, HideStunUpdateForTags) == 0x000328, "Member 'UWBP_EnemyHealthBar_C::HideStunUpdateForTags' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, Changing) == 0x000348, "Member 'UWBP_EnemyHealthBar_C::Changing' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemyHealthBar_C, Targeted) == 0x000349, "Member 'UWBP_EnemyHealthBar_C::Targeted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar \ +static_assert(alignof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar) == 0x000008, "Wrong alignment on WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar"); \ +static_assert(sizeof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar) == 0x0000C0, "Wrong size on WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, EntryPoint) == 0x000000, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_Event_MyGeometry) == 0x000004, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_CustomEvent_MaxHealth) == 0x000040, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_CustomEvent_MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000048, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000050, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_MapRangeClamped_ReturnValue) == 0x000058, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_CustomEvent_PhaseTag) == 0x000060, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_CustomEvent_PhaseTag' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_CustomEvent_BossName) == 0x000068, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_CustomEvent_BossName' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_Event_IsDesignTime) == 0x000080, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, K2Node_CustomEvent_Health) == 0x000088, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::K2Node_CustomEvent_Health' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000090, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000098, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0000A0, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x0000A8, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_1) == 0x0000AC, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_2) == 0x0000B0, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_3) == 0x0000B4, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_4) == 0x0000B8, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar, CallFunc_SetPercent_InPercent_ImplicitCast_5) == 0x0000BC, "Member 'WB_BossHealthBar_C_ExecuteUbergraph_WB_BossHealthBar::CallFunc_SetPercent_InPercent_ImplicitCast_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_Init_MaxHealth \ +static_assert(alignof(WB_BossHealthBar_C_Init_MaxHealth) == 0x000008, "Wrong alignment on WB_BossHealthBar_C_Init_MaxHealth"); \ +static_assert(sizeof(WB_BossHealthBar_C_Init_MaxHealth) == 0x000008, "Wrong size on WB_BossHealthBar_C_Init_MaxHealth"); \ +static_assert(offsetof(WB_BossHealthBar_C_Init_MaxHealth, MaxHealth_0) == 0x000000, "Member 'WB_BossHealthBar_C_Init_MaxHealth::MaxHealth_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_PreConstruct \ +static_assert(alignof(WB_BossHealthBar_C_PreConstruct) == 0x000001, "Wrong alignment on WB_BossHealthBar_C_PreConstruct"); \ +static_assert(sizeof(WB_BossHealthBar_C_PreConstruct) == 0x000001, "Wrong size on WB_BossHealthBar_C_PreConstruct"); \ +static_assert(offsetof(WB_BossHealthBar_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WB_BossHealthBar_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_Set_Health \ +static_assert(alignof(WB_BossHealthBar_C_Set_Health) == 0x000008, "Wrong alignment on WB_BossHealthBar_C_Set_Health"); \ +static_assert(sizeof(WB_BossHealthBar_C_Set_Health) == 0x000008, "Wrong size on WB_BossHealthBar_C_Set_Health"); \ +static_assert(offsetof(WB_BossHealthBar_C_Set_Health, Health_0) == 0x000000, "Member 'WB_BossHealthBar_C_Set_Health::Health_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_SetBossName \ +static_assert(alignof(WB_BossHealthBar_C_SetBossName) == 0x000008, "Wrong alignment on WB_BossHealthBar_C_SetBossName"); \ +static_assert(sizeof(WB_BossHealthBar_C_SetBossName) == 0x000018, "Wrong size on WB_BossHealthBar_C_SetBossName"); \ +static_assert(offsetof(WB_BossHealthBar_C_SetBossName, BossName_0) == 0x000000, "Member 'WB_BossHealthBar_C_SetBossName::BossName_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_SetPhase \ +static_assert(alignof(WB_BossHealthBar_C_SetPhase) == 0x000004, "Wrong alignment on WB_BossHealthBar_C_SetPhase"); \ +static_assert(sizeof(WB_BossHealthBar_C_SetPhase) == 0x000008, "Wrong size on WB_BossHealthBar_C_SetPhase"); \ +static_assert(offsetof(WB_BossHealthBar_C_SetPhase, PhaseTag_0) == 0x000000, "Member 'WB_BossHealthBar_C_SetPhase::PhaseTag_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WB_BossHealthBar_C_Tick \ +static_assert(alignof(WB_BossHealthBar_C_Tick) == 0x000004, "Wrong alignment on WB_BossHealthBar_C_Tick"); \ +static_assert(sizeof(WB_BossHealthBar_C_Tick) == 0x00003C, "Wrong size on WB_BossHealthBar_C_Tick"); \ +static_assert(offsetof(WB_BossHealthBar_C_Tick, MyGeometry) == 0x000000, "Member 'WB_BossHealthBar_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WB_BossHealthBar_C_Tick, InDeltaTime) == 0x000038, "Member 'WB_BossHealthBar_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWB_BossHealthBar_C \ +static_assert(alignof(UWB_BossHealthBar_C) == 0x000008, "Wrong alignment on UWB_BossHealthBar_C"); \ +static_assert(sizeof(UWB_BossHealthBar_C) == 0x000338, "Wrong size on UWB_BossHealthBar_C"); \ +static_assert(offsetof(UWB_BossHealthBar_C, UberGraphFrame) == 0x0002C0, "Member 'UWB_BossHealthBar_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, BossName) == 0x0002C8, "Member 'UWB_BossHealthBar_C::BossName' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P1) == 0x0002D0, "Member 'UWB_BossHealthBar_C::HealthBar_P1' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P1_lagging) == 0x0002D8, "Member 'UWB_BossHealthBar_C::HealthBar_P1_lagging' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P2) == 0x0002E0, "Member 'UWB_BossHealthBar_C::HealthBar_P2' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P2_lagging) == 0x0002E8, "Member 'UWB_BossHealthBar_C::HealthBar_P2_lagging' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P3) == 0x0002F0, "Member 'UWB_BossHealthBar_C::HealthBar_P3' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, HealthBar_P3_lagging) == 0x0002F8, "Member 'UWB_BossHealthBar_C::HealthBar_P3_lagging' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, Health) == 0x000300, "Member 'UWB_BossHealthBar_C::Health' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, MaxHealth) == 0x000308, "Member 'UWB_BossHealthBar_C::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, TargetHealth) == 0x000310, "Member 'UWB_BossHealthBar_C::TargetHealth' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, EnableTick) == 0x000318, "Member 'UWB_BossHealthBar_C::EnableTick' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, PhaseTag) == 0x00031C, "Member 'UWB_BossHealthBar_C::PhaseTag' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, PercentageSet) == 0x000328, "Member 'UWB_BossHealthBar_C::PercentageSet' has a wrong offset!"); \ +static_assert(offsetof(UWB_BossHealthBar_C, PercentageNoLag) == 0x000330, "Member 'UWB_BossHealthBar_C::PercentageNoLag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper \ +static_assert(alignof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper) == 0x000008, "Wrong alignment on BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper"); \ +static_assert(sizeof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper) == 0x000088, "Wrong size on BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, EntryPoint) == 0x000000, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000008, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, K2Node_DynamicCast_AsWrestler_AISpawner) == 0x000020, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::K2Node_DynamicCast_AsWrestler_AISpawner' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, K2Node_CustomEvent_Enemy) == 0x000030, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000038, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_GetComponentByClass_ReturnValue) == 0x000040, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_AssignHelper_Return) == 0x000049, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_AssignHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, K2Node_Event_DeltaSeconds) == 0x00004C, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000050, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_Not_PreBool_ReturnValue) == 0x000068, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000070, "Member 'BP_FocusHelper_C_ExecuteUbergraph_BP_FocusHelper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_GetFocusPoint \ +static_assert(alignof(BP_FocusHelper_C_GetFocusPoint) == 0x000008, "Wrong alignment on BP_FocusHelper_C_GetFocusPoint"); \ +static_assert(sizeof(BP_FocusHelper_C_GetFocusPoint) == 0x000030, "Wrong size on BP_FocusHelper_C_GetFocusPoint"); \ +static_assert(offsetof(BP_FocusHelper_C_GetFocusPoint, Return) == 0x000000, "Member 'BP_FocusHelper_C_GetFocusPoint::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_GetFocusPoint, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000018, "Member 'BP_FocusHelper_C_GetFocusPoint::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_GetOwningAI \ +static_assert(alignof(BP_FocusHelper_C_GetOwningAI) == 0x000008, "Wrong alignment on BP_FocusHelper_C_GetOwningAI"); \ +static_assert(sizeof(BP_FocusHelper_C_GetOwningAI) == 0x000008, "Wrong size on BP_FocusHelper_C_GetOwningAI"); \ +static_assert(offsetof(BP_FocusHelper_C_GetOwningAI, Return) == 0x000000, "Member 'BP_FocusHelper_C_GetOwningAI::Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_IsOwned \ +static_assert(alignof(BP_FocusHelper_C_IsOwned) == 0x000001, "Wrong alignment on BP_FocusHelper_C_IsOwned"); \ +static_assert(sizeof(BP_FocusHelper_C_IsOwned) == 0x000001, "Wrong size on BP_FocusHelper_C_IsOwned"); \ +static_assert(offsetof(BP_FocusHelper_C_IsOwned, Return) == 0x000000, "Member 'BP_FocusHelper_C_IsOwned::Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_ReceiveTick \ +static_assert(alignof(BP_FocusHelper_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_FocusHelper_C_ReceiveTick"); \ +static_assert(sizeof(BP_FocusHelper_C_ReceiveTick) == 0x000004, "Wrong size on BP_FocusHelper_C_ReceiveTick"); \ +static_assert(offsetof(BP_FocusHelper_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_FocusHelper_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_SetOwningAI \ +static_assert(alignof(BP_FocusHelper_C_SetOwningAI) == 0x000008, "Wrong alignment on BP_FocusHelper_C_SetOwningAI"); \ +static_assert(sizeof(BP_FocusHelper_C_SetOwningAI) == 0x000010, "Wrong size on BP_FocusHelper_C_SetOwningAI"); \ +static_assert(offsetof(BP_FocusHelper_C_SetOwningAI, OwningAI_0) == 0x000000, "Member 'BP_FocusHelper_C_SetOwningAI::OwningAI_0' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_SetOwningAI, Return) == 0x000008, "Member 'BP_FocusHelper_C_SetOwningAI::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_FocusHelper_C_SetOwningAI, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'BP_FocusHelper_C_SetOwningAI::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FocusHelper_C_Spawned \ +static_assert(alignof(BP_FocusHelper_C_Spawned) == 0x000008, "Wrong alignment on BP_FocusHelper_C_Spawned"); \ +static_assert(sizeof(BP_FocusHelper_C_Spawned) == 0x000008, "Wrong size on BP_FocusHelper_C_Spawned"); \ +static_assert(offsetof(BP_FocusHelper_C_Spawned, Enemy) == 0x000000, "Member 'BP_FocusHelper_C_Spawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_FocusHelper_C \ +static_assert(alignof(ABP_FocusHelper_C) == 0x000008, "Wrong alignment on ABP_FocusHelper_C"); \ +static_assert(sizeof(ABP_FocusHelper_C) == 0x0002F8, "Wrong size on ABP_FocusHelper_C"); \ +static_assert(offsetof(ABP_FocusHelper_C, UberGraphFrame) == 0x000298, "Member 'ABP_FocusHelper_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, Billboard) == 0x0002A0, "Member 'ABP_FocusHelper_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, FocusPoint) == 0x0002A8, "Member 'ABP_FocusHelper_C::FocusPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, DefaultSceneRoot) == 0x0002B0, "Member 'ABP_FocusHelper_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, Owned) == 0x0002B8, "Member 'ABP_FocusHelper_C::Owned' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, OwningAI) == 0x0002C0, "Member 'ABP_FocusHelper_C::OwningAI' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, AssignedSpawner) == 0x0002C8, "Member 'ABP_FocusHelper_C::AssignedSpawner' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, PermissibleStates) == 0x0002F0, "Member 'ABP_FocusHelper_C::PermissibleStates' has a wrong offset!"); \ +static_assert(offsetof(ABP_FocusHelper_C, Debug) == 0x0002F1, "Member 'ABP_FocusHelper_C::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_CommonButton_C_UpdateTextStyle \ +static_assert(alignof(TCR_CommonButton_C_UpdateTextStyle) == 0x000008, "Wrong alignment on TCR_CommonButton_C_UpdateTextStyle"); \ +static_assert(sizeof(TCR_CommonButton_C_UpdateTextStyle) == 0x000018, "Wrong size on TCR_CommonButton_C_UpdateTextStyle"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateTextStyle, K2Node_MakeStruct_Margin) == 0x000000, "Member 'TCR_CommonButton_C_UpdateTextStyle::K2Node_MakeStruct_Margin' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateTextStyle, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000010, "Member 'TCR_CommonButton_C_UpdateTextStyle::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_CommonButton_C_UpdateButtonText \ +static_assert(alignof(TCR_CommonButton_C_UpdateButtonText) == 0x000008, "Wrong alignment on TCR_CommonButton_C_UpdateButtonText"); \ +static_assert(sizeof(TCR_CommonButton_C_UpdateButtonText) == 0x000018, "Wrong size on TCR_CommonButton_C_UpdateButtonText"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonText, InText) == 0x000000, "Member 'TCR_CommonButton_C_UpdateButtonText::InText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_CommonButton_C_UpdateButtonStyles \ +static_assert(alignof(TCR_CommonButton_C_UpdateButtonStyles) == 0x000008, "Wrong alignment on TCR_CommonButton_C_UpdateButtonStyles"); \ +static_assert(sizeof(TCR_CommonButton_C_UpdateButtonStyles) == 0x0000C0, "Wrong size on TCR_CommonButton_C_UpdateButtonStyles"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_real_Variable) == 0x000000, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_real_Variable_1) == 0x000004, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_bool_Variable) == 0x000008, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_byte_Variable) == 0x000009, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_byte_Variable_1) == 0x00000A, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, CallFunc_SlotAsWidgetSwitcherSlot_ReturnValue) == 0x000010, "Member 'TCR_CommonButton_C_UpdateButtonStyles::CallFunc_SlotAsWidgetSwitcherSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000018, "Member 'TCR_CommonButton_C_UpdateButtonStyles::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, CallFunc_SlotAsHorizontalBoxSlot_ReturnValue) == 0x000020, "Member 'TCR_CommonButton_C_UpdateButtonStyles::CallFunc_SlotAsHorizontalBoxSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, Temp_bool_Variable_1) == 0x000028, "Member 'TCR_CommonButton_C_UpdateButtonStyles::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Margin) == 0x00002C, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Margin' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Margin_1) == 0x00003C, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Margin_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_Select_Default) == 0x00004C, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, CallFunc_MakeVector2D_ReturnValue) == 0x000050, "Member 'TCR_CommonButton_C_UpdateButtonStyles::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_WidgetTransform) == 0x000060, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_WidgetTransform' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_Select_Default_1) == 0x000098, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Bottom_ImplicitCast) == 0x00009C, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Bottom_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Top_ImplicitCast) == 0x0000A0, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Top_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Left_ImplicitCast) == 0x0000A4, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Left_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Right_ImplicitCast) == 0x0000A8, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Right_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Left_ImplicitCast_1) == 0x0000AC, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Left_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, K2Node_MakeStruct_Right_ImplicitCast_1) == 0x0000B0, "Member 'TCR_CommonButton_C_UpdateButtonStyles::K2Node_MakeStruct_Right_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_UpdateButtonStyles, CallFunc_MakeVector2D_X_ImplicitCast) == 0x0000B8, "Member 'TCR_CommonButton_C_UpdateButtonStyles::CallFunc_MakeVector2D_X_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_CommonButton_C_PreConstruct \ +static_assert(alignof(TCR_CommonButton_C_PreConstruct) == 0x000001, "Wrong alignment on TCR_CommonButton_C_PreConstruct"); \ +static_assert(sizeof(TCR_CommonButton_C_PreConstruct) == 0x000001, "Wrong size on TCR_CommonButton_C_PreConstruct"); \ +static_assert(offsetof(TCR_CommonButton_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'TCR_CommonButton_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton \ +static_assert(alignof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton) == 0x000008, "Wrong alignment on TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton"); \ +static_assert(sizeof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton) == 0x000038, "Wrong size on TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton"); \ +static_assert(offsetof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton, EntryPoint) == 0x000000, "Member 'TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton, Temp_delegate_Variable) == 0x000004, "Member 'TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton, K2Node_Event_InText) == 0x000018, "Member 'TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton::K2Node_Event_InText' has a wrong offset!"); \ +static_assert(offsetof(TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton, K2Node_Event_IsDesignTime) == 0x000030, "Member 'TCR_CommonButton_C_ExecuteUbergraph_TCR_CommonButton::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_CommonButton_C \ +static_assert(alignof(UTCR_CommonButton_C) == 0x000010, "Wrong alignment on UTCR_CommonButton_C"); \ +static_assert(sizeof(UTCR_CommonButton_C) == 0x001860, "Wrong size on UTCR_CommonButton_C"); \ +static_assert(offsetof(UTCR_CommonButton_C, UberGraphFrame) == 0x0015A0, "Member 'UTCR_CommonButton_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, ButtonBorder) == 0x0015A8, "Member 'UTCR_CommonButton_C::ButtonBorder' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, ButtonTextBlock) == 0x0015B0, "Member 'UTCR_CommonButton_C::ButtonTextBlock' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, Icon) == 0x0015B8, "Member 'UTCR_CommonButton_C::Icon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, IconOverlay) == 0x0015C0, "Member 'UTCR_CommonButton_C::IconOverlay' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, SpacerLeft) == 0x0015C8, "Member 'UTCR_CommonButton_C::SpacerLeft' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, SpacerRight) == 0x0015D0, "Member 'UTCR_CommonButton_C::SpacerRight' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextIconSwitcher) == 0x0015D8, "Member 'UTCR_CommonButton_C::TextIconSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextOverlay) == 0x0015E0, "Member 'UTCR_CommonButton_C::TextOverlay' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, Font) == 0x0015E8, "Member 'UTCR_CommonButton_C::Font' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextCase) == 0x001640, "Member 'UTCR_CommonButton_C::TextCase' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, ButtonBorderBrush) == 0x001650, "Member 'UTCR_CommonButton_C::ButtonBorderBrush' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, UseScaleChangeSpacers) == 0x001720, "Member 'UTCR_CommonButton_C::UseScaleChangeSpacers' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, HitTestPadding_X) == 0x001728, "Member 'UTCR_CommonButton_C::HitTestPadding_X' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, HitTestPadding_Y) == 0x001730, "Member 'UTCR_CommonButton_C::HitTestPadding_Y' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, InputPadding) == 0x001738, "Member 'UTCR_CommonButton_C::InputPadding' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, InputHorzAlignment) == 0x001748, "Member 'UTCR_CommonButton_C::InputHorzAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, InputVertAlignment) == 0x001749, "Member 'UTCR_CommonButton_C::InputVertAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, UseIconOverride) == 0x00174A, "Member 'UTCR_CommonButton_C::UseIconOverride' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, IconBrush) == 0x001750, "Member 'UTCR_CommonButton_C::IconBrush' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextLeftRightPadding) == 0x001820, "Member 'UTCR_CommonButton_C::TextLeftRightPadding' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, FlipIconXDimension) == 0x001828, "Member 'UTCR_CommonButton_C::FlipIconXDimension' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, OnButtonFocused) == 0x001830, "Member 'UTCR_CommonButton_C::OnButtonFocused' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, OnButtonUnfocused) == 0x001840, "Member 'UTCR_CommonButton_C::OnButtonUnfocused' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextPaddingLeft) == 0x001850, "Member 'UTCR_CommonButton_C::TextPaddingLeft' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextPaddingTop) == 0x001854, "Member 'UTCR_CommonButton_C::TextPaddingTop' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextPaddingRight) == 0x001858, "Member 'UTCR_CommonButton_C::TextPaddingRight' has a wrong offset!"); \ +static_assert(offsetof(UTCR_CommonButton_C, TextPaddingBottom) == 0x00185C, "Member 'UTCR_CommonButton_C::TextPaddingBottom' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_AssignHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_AssignHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_AssignHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_AssignHelper) == 0x000020, "Wrong size on WrestlerFocusHelperComponent_C_AssignHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_AssignHelper, Helper) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_AssignHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_AssignHelper, Return) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_AssignHelper::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_AssignHelper, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerFocusHelperComponent_C_AssignHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_AssignHelper, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_AssignHelper::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_AssignHelper, CallFunc_SetOwningAI_Return) == 0x000018, "Member 'WrestlerFocusHelperComponent_C_AssignHelper::CallFunc_SetOwningAI_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_CheckAngleFromHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_CheckAngleFromHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper) == 0x0000A0, "Wrong size on WrestlerFocusHelperComponent_C_CheckAngleFromHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, Helper) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, Return) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_GetFocusPoint_Return) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_GetOwner_ReturnValue) == 0x000028, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_GetActorForwardVector_ReturnValue) == 0x000048, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_FindLookAtRotation_ReturnValue) == 0x000060, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_GetForwardVector_ReturnValue) == 0x000078, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckAngleFromHelper, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000098, "Member 'WrestlerFocusHelperComponent_C_CheckAngleFromHelper::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_CheckDistanceFromHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_CheckDistanceFromHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper) == 0x000070, "Wrong size on WrestlerFocusHelperComponent_C_CheckDistanceFromHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, Helper) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, Return) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_GetFocusPoint_Return) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_GetOwner_ReturnValue) == 0x000028, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000048, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_VSize_ReturnValue) == 0x000060, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_CheckDistanceFromHelper, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000068, "Member 'WrestlerFocusHelperComponent_C_CheckDistanceFromHelper::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_ClearHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_ClearHelper) == 0x000001, "Wrong alignment on WrestlerFocusHelperComponent_C_ClearHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_ClearHelper) == 0x000001, "Wrong size on WrestlerFocusHelperComponent_C_ClearHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ClearHelper, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_ClearHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent \ +static_assert(alignof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent) == 0x000070, "Wrong size on WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, EntryPoint) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetAssignedHelper_Helper) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetAssignedHelper_Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetAssignedHelper_Return) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetAssignedHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_HasLOSToHelper_Return) == 0x000011, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_HasLOSToHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetOwningAI_Return) == 0x000018, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetOwningAI_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, K2Node_Event_DeltaSeconds) == 0x000020, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_CheckDistanceFromHelper_Return) == 0x000024, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_CheckDistanceFromHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_CheckAngleFromHelper_Return) == 0x000025, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_CheckAngleFromHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_IsValid_ReturnValue) == 0x000026, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetFocusPoint_Return) == 0x000028, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetOwner_ReturnValue) == 0x000040, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetOwner_ReturnValue_1) == 0x000048, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000050, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_GetAIController_ReturnValue) == 0x000058, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_IsValid_ReturnValue_1) == 0x000060, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000064, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent, CallFunc_AIHasStateTag_ReturnValue) == 0x00006C, "Member 'WrestlerFocusHelperComponent_C_ExecuteUbergraph_WrestlerFocusHelperComponent::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper) == 0x0000D0, "Wrong size on WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, EnemyIsSearching) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::EnemyIsSearching' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, Helper) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, Distance) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, Temp_int_Array_Index_Variable) == 0x000018, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, Temp_bool_True_if_break_was_hit_Variable) == 0x00001C, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Not_PreBool_ReturnValue) == 0x00001D, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000020, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_GetOwner_ReturnValue) == 0x000028, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_GetAIController_ReturnValue) == 0x000030, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_IsValid_ReturnValue_1) == 0x000039, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_AssignHelper_Return) == 0x00003A, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_AssignHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_AIHasStateTag_ReturnValue) == 0x00003B, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, Temp_int_Loop_Counter_Variable) == 0x00003C, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_GetAllActorsOfClass_OutActors) == 0x000048, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_GetOwner_ReturnValue_1) == 0x000058, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Array_Get_Item) == 0x000060, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000068, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_HasLOSToHelper_Return) == 0x000080, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_HasLOSToHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_CheckAngleFromHelper_Return) == 0x000081, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_CheckAngleFromHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_CheckDistanceFromHelper_Return) == 0x000082, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_CheckDistanceFromHelper_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_IsOwned_Return) == 0x000083, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_IsOwned_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_GetFocusPoint_Return) == 0x000088, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000A0, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, K2Node_SwitchEnum_CmpSuccess) == 0x0000B8, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_VSize_ReturnValue) == 0x0000C0, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Array_Length_ReturnValue) == 0x0000C8, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000CC, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_Less_IntInt_ReturnValue) == 0x0000CD, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper, CallFunc_BooleanAND_ReturnValue) == 0x0000CE, "Member 'WrestlerFocusHelperComponent_C_GetAndAssignClosestFocusHelper::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_GetAssignedHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_GetAssignedHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_GetAssignedHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_GetAssignedHelper) == 0x000010, "Wrong size on WrestlerFocusHelperComponent_C_GetAssignedHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAssignedHelper, Helper) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_GetAssignedHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAssignedHelper, Return) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_GetAssignedHelper::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetAssignedHelper, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerFocusHelperComponent_C_GetAssignedHelper::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_GetFocusPoint \ +static_assert(alignof(WrestlerFocusHelperComponent_C_GetFocusPoint) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_GetFocusPoint"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_GetFocusPoint) == 0x000040, "Wrong size on WrestlerFocusHelperComponent_C_GetFocusPoint"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetFocusPoint, Vector) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_GetFocusPoint::Vector' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetFocusPoint, Return) == 0x000018, "Member 'WrestlerFocusHelperComponent_C_GetFocusPoint::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetFocusPoint, CallFunc_GetFocusPoint_Return) == 0x000020, "Member 'WrestlerFocusHelperComponent_C_GetFocusPoint::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_GetFocusPoint, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'WrestlerFocusHelperComponent_C_GetFocusPoint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_HasLOSToHelper \ +static_assert(alignof(WrestlerFocusHelperComponent_C_HasLOSToHelper) == 0x000008, "Wrong alignment on WrestlerFocusHelperComponent_C_HasLOSToHelper"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_HasLOSToHelper) == 0x000148, "Wrong size on WrestlerFocusHelperComponent_C_HasLOSToHelper"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, Helper) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::Helper' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, Return) == 0x000008, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_GetFocusPoint_Return) == 0x000018, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_GetFocusPoint_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, K2Node_MakeArray_Array) == 0x000030, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_LineTraceSingle_OutHit) == 0x000058, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_LineTraceSingle_ReturnValue) == 0x000140, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_HasLOSToHelper, CallFunc_Not_PreBool_ReturnValue) == 0x000141, "Member 'WrestlerFocusHelperComponent_C_HasLOSToHelper::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerFocusHelperComponent_C_ReceiveTick \ +static_assert(alignof(WrestlerFocusHelperComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerFocusHelperComponent_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerFocusHelperComponent_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerFocusHelperComponent_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerFocusHelperComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerFocusHelperComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerFocusHelperComponent_C \ +static_assert(alignof(UWrestlerFocusHelperComponent_C) == 0x000008, "Wrong alignment on UWrestlerFocusHelperComponent_C"); \ +static_assert(sizeof(UWrestlerFocusHelperComponent_C) == 0x0000C8, "Wrong size on UWrestlerFocusHelperComponent_C"); \ +static_assert(offsetof(UWrestlerFocusHelperComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UWrestlerFocusHelperComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFocusHelperComponent_C, AssignedHelper) == 0x0000A8, "Member 'UWrestlerFocusHelperComponent_C::AssignedHelper' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFocusHelperComponent_C, MaximumHelperDistance) == 0x0000B0, "Member 'UWrestlerFocusHelperComponent_C::MaximumHelperDistance' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFocusHelperComponent_C, MaximumHelperDot) == 0x0000B8, "Member 'UWrestlerFocusHelperComponent_C::MaximumHelperDot' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerFocusHelperComponent_C, Debug) == 0x0000C0, "Member 'UWrestlerFocusHelperComponent_C::Debug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor \ +static_assert(alignof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor) == 0x000008, "Wrong alignment on OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor"); \ +static_assert(sizeof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor) == 0x000068, "Wrong size on OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, EntryPoint) == 0x000000, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, Temp_int_Array_Index_Variable) == 0x000004, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, K2Node_Event_InAutomata) == 0x000010, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, K2Node_Event_InState) == 0x000018, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_Array_Get_Item) == 0x000020, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000048, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_IsValid_ReturnValue) == 0x000054, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, CallFunc_Less_IntInt_ReturnValue) == 0x000055, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, K2Node_DynamicCast_AsBP_Basic_Door_Base) == 0x000058, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::K2Node_DynamicCast_AsBP_Basic_Door_Base' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'OpenOrCloseBasicDoor_C_ExecuteUbergraph_OpenOrCloseBasicDoor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_OpenOrCloseBasicDoor_C_ReceiveExecute \ +static_assert(alignof(OpenOrCloseBasicDoor_C_ReceiveExecute) == 0x000008, "Wrong alignment on OpenOrCloseBasicDoor_C_ReceiveExecute"); \ +static_assert(sizeof(OpenOrCloseBasicDoor_C_ReceiveExecute) == 0x000010, "Wrong size on OpenOrCloseBasicDoor_C_ReceiveExecute"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'OpenOrCloseBasicDoor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(OpenOrCloseBasicDoor_C_ReceiveExecute, InState) == 0x000008, "Member 'OpenOrCloseBasicDoor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOpenOrCloseBasicDoor_C \ +static_assert(alignof(UOpenOrCloseBasicDoor_C) == 0x000008, "Wrong alignment on UOpenOrCloseBasicDoor_C"); \ +static_assert(sizeof(UOpenOrCloseBasicDoor_C) == 0x0000A8, "Wrong size on UOpenOrCloseBasicDoor_C"); \ +static_assert(offsetof(UOpenOrCloseBasicDoor_C, UberGraphFrame) == 0x000088, "Member 'UOpenOrCloseBasicDoor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UOpenOrCloseBasicDoor_C, IsOpen) == 0x000090, "Member 'UOpenOrCloseBasicDoor_C::IsOpen' has a wrong offset!"); \ +static_assert(offsetof(UOpenOrCloseBasicDoor_C, OpenFromFront) == 0x000091, "Member 'UOpenOrCloseBasicDoor_C::OpenFromFront' has a wrong offset!"); \ +static_assert(offsetof(UOpenOrCloseBasicDoor_C, Doors) == 0x000098, "Member 'UOpenOrCloseBasicDoor_C::Doors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_GameplayEvent_C_Received_NotifyBegin \ +static_assert(alignof(AN_GameplayEvent_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_GameplayEvent_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_GameplayEvent_C_Received_NotifyBegin) == 0x000058, "Wrong size on AN_GameplayEvent_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_GameplayEvent_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_GameplayEvent_C_Received_NotifyEnd \ +static_assert(alignof(AN_GameplayEvent_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_GameplayEvent_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_GameplayEvent_C_Received_NotifyEnd) == 0x000050, "Wrong size on AN_GameplayEvent_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_GameplayEvent_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_GameplayEvent_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_GameplayEvent_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_GameplayEvent_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_GameplayEvent_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_GameplayEvent_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_GameplayEvent_C \ +static_assert(alignof(UAN_GameplayEvent_C) == 0x000008, "Wrong alignment on UAN_GameplayEvent_C"); \ +static_assert(sizeof(UAN_GameplayEvent_C) == 0x000040, "Wrong size on UAN_GameplayEvent_C"); \ +static_assert(offsetof(UAN_GameplayEvent_C, StartEvent) == 0x000030, "Member 'UAN_GameplayEvent_C::StartEvent' has a wrong offset!"); \ +static_assert(offsetof(UAN_GameplayEvent_C, EndEvent) == 0x000038, "Member 'UAN_GameplayEvent_C::EndEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_CameraShake_C_Received_Notify \ +static_assert(alignof(AN_CameraShake_C_Received_Notify) == 0x000008, "Wrong alignment on AN_CameraShake_C_Received_Notify"); \ +static_assert(sizeof(AN_CameraShake_C_Received_Notify) == 0x000050, "Wrong size on AN_CameraShake_C_Received_Notify"); \ +static_assert(offsetof(AN_CameraShake_C_Received_Notify, MeshComp) == 0x000000, "Member 'AN_CameraShake_C_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_CameraShake_C_Received_Notify, Animation) == 0x000008, "Member 'AN_CameraShake_C_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_CameraShake_C_Received_Notify, EventReference) == 0x000010, "Member 'AN_CameraShake_C_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_CameraShake_C_Received_Notify, ReturnValue) == 0x000040, "Member 'AN_CameraShake_C_Received_Notify::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_CameraShake_C_Received_Notify, CallFunc_GetPlayerController_ReturnValue) == 0x000048, "Member 'AN_CameraShake_C_Received_Notify::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_CameraShake_C \ +static_assert(alignof(UAN_CameraShake_C) == 0x000008, "Wrong alignment on UAN_CameraShake_C"); \ +static_assert(sizeof(UAN_CameraShake_C) == 0x000048, "Wrong size on UAN_CameraShake_C"); \ +static_assert(offsetof(UAN_CameraShake_C, Shake_Class) == 0x000038, "Member 'UAN_CameraShake_C::Shake_Class' has a wrong offset!"); \ +static_assert(offsetof(UAN_CameraShake_C, Shake_Scale) == 0x000040, "Member 'UAN_CameraShake_C::Shake_Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe \ +static_assert(alignof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe) == 0x000008, "Wrong alignment on GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe"); \ +static_assert(sizeof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe) == 0x000078, "Wrong size on GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, EntryPoint) == 0x000000, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000010, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, K2Node_Event_bWasCancelled) == 0x000021, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000028, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000030, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000048, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000050, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000058, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000060, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000068, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000069, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_Delay_Duration_ImplicitCast) == 0x00006C, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe, CallFunc_Delay_Duration_ImplicitCast_1) == 0x000070, "Member 'GA_Player_CounterSwipe_C_ExecuteUbergraph_GA_Player_CounterSwipe::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_CounterSwipe_C_K2_OnEndAbility \ +static_assert(alignof(GA_Player_CounterSwipe_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Player_CounterSwipe_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Player_CounterSwipe_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Player_CounterSwipe_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Player_CounterSwipe_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Player_CounterSwipe_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_CounterSwipe_C \ +static_assert(alignof(UGA_Player_CounterSwipe_C) == 0x000008, "Wrong alignment on UGA_Player_CounterSwipe_C"); \ +static_assert(sizeof(UGA_Player_CounterSwipe_C) == 0x000920, "Wrong size on UGA_Player_CounterSwipe_C"); \ +static_assert(offsetof(UGA_Player_CounterSwipe_C, UberGraphFrame_GA_Player_CounterSwipe_C) == 0x0008E0, "Member 'UGA_Player_CounterSwipe_C::UberGraphFrame_GA_Player_CounterSwipe_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterSwipe_C, Buffer_Delay) == 0x0008E8, "Member 'UGA_Player_CounterSwipe_C::Buffer_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterSwipe_C, Combo_Delay) == 0x0008F0, "Member 'UGA_Player_CounterSwipe_C::Combo_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterSwipe_C, Counter_Duration) == 0x0008F8, "Member 'UGA_Player_CounterSwipe_C::Counter_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterSwipe_C, Counter_Tag) == 0x000900, "Member 'UGA_Player_CounterSwipe_C::Counter_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_EnemyAIDebug_C \ +static_assert(alignof(UWBP_EnemyAIDebug_C) == 0x000008, "Wrong alignment on UWBP_EnemyAIDebug_C"); \ +static_assert(sizeof(UWBP_EnemyAIDebug_C) == 0x0002F0, "Wrong size on UWBP_EnemyAIDebug_C"); \ + +#define DUMPER7_ASSERTS_GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit \ +static_assert(alignof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit) == 0x000008, "Wrong alignment on GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit"); \ +static_assert(sizeof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit) == 0x000648, "Wrong size on GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, EntryPoint) == 0x000000, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000048, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_SpawnObject_ReturnValue) == 0x000050, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_4) == 0x00005C, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_5) == 0x00006C, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_WaitRealDelay_ReturnValue) == 0x000080, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000088, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_CreateTimeDilation_Handle) == 0x0000B0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_IsValid_ReturnValue_1) == 0x0000B4, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0000B8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_Event_EventData) == 0x0000C0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_HasTag_ReturnValue) == 0x000170, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000178, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000190, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetActorForwardVector_ReturnValue) == 0x000198, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_6) == 0x0001B0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001C0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0001D8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0001F0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_Add_VectorVector_ReturnValue) == 0x0001F8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000210, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_DynamicCast_bSuccess) == 0x000220, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x000228, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_IsValid_ReturnValue_2) == 0x000230, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_Event_bWasCancelled) == 0x000231, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000238, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetActorInfo_ReturnValue) == 0x000240, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_ActorTimeDelay_ReturnValue) == 0x000288, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_IsValid_ReturnValue_3) == 0x000290, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetActorInfo_ReturnValue_1) == 0x000298, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetActorInfo_ReturnValue_2) == 0x0002E0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000328, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetControlRotation_ReturnValue) == 0x000330, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000348, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_DynamicCast_bSuccess_1) == 0x000358, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000360, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000378, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000380, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_CreateDelegate_OutputDelegate_7) == 0x000398, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_IsValid_ReturnValue_4) == 0x0003A8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0003B0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0003C8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0003E0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_MakeStruct_GameplayEventData) == 0x0003F8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_RLerp_ReturnValue) == 0x0004A8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x0004C0, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x0004E8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0004F8, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000510, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000528, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000568, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000570, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, K2Node_MakeStruct_GameplayEventData_1) == 0x000578, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000628, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000638, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit, CallFunc_GetPlayerController_ReturnValue) == 0x000640, "Member 'GA_Player_CounterHit_C_ExecuteUbergraph_GA_Player_CounterHit::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Player_CounterHit_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_CounterHit_C_K2_OnEndAbility \ +static_assert(alignof(GA_Player_CounterHit_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Player_CounterHit_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Player_CounterHit_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Player_CounterHit_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Player_CounterHit_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Player_CounterHit_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_CounterHit_C \ +static_assert(alignof(UGA_Player_CounterHit_C) == 0x000008, "Wrong alignment on UGA_Player_CounterHit_C"); \ +static_assert(sizeof(UGA_Player_CounterHit_C) == 0x000680, "Wrong size on UGA_Player_CounterHit_C"); \ +static_assert(offsetof(UGA_Player_CounterHit_C, UberGraphFrame) == 0x000668, "Member 'UGA_Player_CounterHit_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterHit_C, ComboDelay) == 0x000670, "Member 'UGA_Player_CounterHit_C::ComboDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_CounterHit_C, HitTarget) == 0x000678, "Member 'UGA_Player_CounterHit_C::HitTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget \ +static_assert(alignof(WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget) == 0x000004, "Wrong alignment on WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget"); \ +static_assert(sizeof(WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget) == 0x000008, "Wrong size on WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget"); \ +static_assert(offsetof(WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget, EntryPoint) == 0x000000, "Member 'WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget, K2Node_Event_DeltaSeconds) == 0x000004, "Member 'WCBP_AIDebugWidget_C_ExecuteUbergraph_WCBP_AIDebugWidget::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WCBP_AIDebugWidget_C_ReceiveTick \ +static_assert(alignof(WCBP_AIDebugWidget_C_ReceiveTick) == 0x000004, "Wrong alignment on WCBP_AIDebugWidget_C_ReceiveTick"); \ +static_assert(sizeof(WCBP_AIDebugWidget_C_ReceiveTick) == 0x000004, "Wrong size on WCBP_AIDebugWidget_C_ReceiveTick"); \ +static_assert(offsetof(WCBP_AIDebugWidget_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WCBP_AIDebugWidget_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWCBP_AIDebugWidget_C \ +static_assert(alignof(UWCBP_AIDebugWidget_C) == 0x000010, "Wrong alignment on UWCBP_AIDebugWidget_C"); \ +static_assert(sizeof(UWCBP_AIDebugWidget_C) == 0x000750, "Wrong size on UWCBP_AIDebugWidget_C"); \ +static_assert(offsetof(UWCBP_AIDebugWidget_C, UberGraphFrame) == 0x000740, "Member 'UWCBP_AIDebugWidget_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Prowl_C \ +static_assert(alignof(UGE_Prowl_C) == 0x000008, "Wrong alignment on UGE_Prowl_C"); \ +static_assert(sizeof(UGE_Prowl_C) == 0x000A70, "Wrong size on UGE_Prowl_C"); \ + +#define DUMPER7_ASSERTS_UGE_Instakill_C \ +static_assert(alignof(UGE_Instakill_C) == 0x000008, "Wrong alignment on UGE_Instakill_C"); \ +static_assert(sizeof(UGE_Instakill_C) == 0x000A70, "Wrong size on UGE_Instakill_C"); \ + +#define DUMPER7_ASSERTS_UGE_initialPause_C \ +static_assert(alignof(UGE_initialPause_C) == 0x000008, "Wrong alignment on UGE_initialPause_C"); \ +static_assert(sizeof(UGE_initialPause_C) == 0x000A70, "Wrong size on UGE_initialPause_C"); \ + +#define DUMPER7_ASSERTS_UBP_CoffinSight_Medium_C \ +static_assert(alignof(UBP_CoffinSight_Medium_C) == 0x000008, "Wrong alignment on UBP_CoffinSight_Medium_C"); \ +static_assert(sizeof(UBP_CoffinSight_Medium_C) == 0x0000A0, "Wrong size on UBP_CoffinSight_Medium_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B) == 0x0000B0, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B, Payload) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_848AE6934A4990611DD113AB8261B86B::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789 \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789) == 0x0000B0, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789, Payload) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_EventReceived_F406062C49D700FB1B3CA0B46E209789::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost) == 0x001080, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable) == 0x000021, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_struct_Variable) == 0x000028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate) == 0x000040, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CustomEvent_WaitingTime) == 0x000050, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_real_Variable) == 0x000054, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable_1) == 0x000061, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_struct_Variable_1) == 0x000068, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_object_Variable) == 0x000080, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_object_Variable_1) == 0x000088, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_delegate_Variable) == 0x000090, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000A0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CustomEvent_Payload) == 0x0000B0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_struct_Variable_2) == 0x000160, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000210, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_1) == 0x000218, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_2) == 0x00021C, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WaitDelay_ReturnValue) == 0x000230, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_3) == 0x000238, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_2) == 0x000248, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WaitDelay_ReturnValue_1) == 0x000250, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_4) == 0x000258, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_3) == 0x000268, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_ActorTimeDelay_ReturnValue) == 0x000270, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_5) == 0x000278, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_4) == 0x000288, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000290, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable_2) == 0x000298, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_5) == 0x000299, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable_3) == 0x00029A, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable_4) == 0x00029B, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Variable_5) == 0x00029C, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_real_Variable_1) == 0x0002A0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_real_Variable_2) == 0x0002A8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_IsClosed_Variable) == 0x0002B0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default) == 0x0002B8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Has_Been_Initd_Variable) == 0x0002C0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Event_bWasCancelled) == 0x0002C1, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0002C4, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0002D0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0002D8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0002E0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002E8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue) == 0x0002F8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000310, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_NegateVector_ReturnValue) == 0x000318, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000330, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000370, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetVelocity_ReturnValue) == 0x000378, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000390, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_X) == 0x0003A8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Y) == 0x0003B0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Z) == 0x0003B8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_IsClosed_Variable_1) == 0x0003C0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeVector_ReturnValue) == 0x0003C8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Divide_VectorVector_ReturnValue) == 0x0003E0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Has_Been_Initd_Variable_1) == 0x0003F8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_IsClosed_Variable_2) == 0x0003F9, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000400, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000408, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsFalling_ReturnValue) == 0x000410, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_6) == 0x000411, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default_1) == 0x000418, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000430, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Dot_VectorVector_ReturnValue) == 0x000448, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SpawnObject_ReturnValue) == 0x000450, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000458, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default_2) == 0x000460, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000478, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000480, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000488, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetVelocity_ReturnValue_1) == 0x0004A0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Normal_ReturnValue) == 0x0004B8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsWalking_ReturnValue) == 0x0004D0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Vector_SlerpNormals_ReturnValue) == 0x0004D8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Vector_SlerpNormals_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x0004F0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetControlRotation_ReturnValue) == 0x0004F8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetForwardVector_ReturnValue) == 0x000510, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x000528, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000530, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_FClamp_ReturnValue) == 0x000538, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsWalking_ReturnValue_1) == 0x000540, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsWalking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000548, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue) == 0x000550, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_1) == 0x000558, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_2) == 0x000560, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_3) == 0x000568, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default_3) == 0x000570, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default_4) == 0x000578, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetPlayerController_ReturnValue) == 0x000580, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetPlayerController_ReturnValue_1) == 0x000588, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_4) == 0x000590, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_5) == 0x000598, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x0005A0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0005A8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0005C0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Dot_VectorVector_ReturnValue_2) == 0x0005C8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Dot_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_FClamp_ReturnValue_1) == 0x0005D0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0005D8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0005E0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0005E8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CustomEvent_Enable) == 0x0005F0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CustomEvent_Enable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_AsCM_Vsprint) == 0x0005F8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_AsCM_Vsprint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_bSuccess) == 0x000600, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_7) == 0x000601, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_7) == 0x000604, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_8) == 0x000614, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_9) == 0x000615, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000618, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue_4) == 0x000620, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Dot_VectorVector_ReturnValue_3) == 0x000638, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Dot_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MapRangeClamped_ReturnValue) == 0x000640, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_FClamp_ReturnValue_2) == 0x000648, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MomentumValue_ReturnValue) == 0x000650, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MomentumValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MomentumValue_ReturnValue_1) == 0x000658, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MomentumValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_MakeStruct_GameplayEventData) == 0x000660, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000710, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000711, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000718, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsValid_ReturnValue_10) == 0x000720, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000728, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_struct_Variable_3) == 0x000800, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_8) == 0x0008B0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetDebugStringFromGameplayTag_ReturnValue) == 0x0008C0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetDebugStringFromGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_MakeStruct_GameplayEventData_1) == 0x0008D0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorInfo_ReturnValue) == 0x000980, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorInfo_ReturnValue_1) == 0x0009C8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000A10, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_bSuccess_1) == 0x000A20, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000A28, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x000A30, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_DynamicCast_bSuccess_2) == 0x000A40, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000A48, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000A50, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000A58, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000A68, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsFalling_ReturnValue_1) == 0x000A69, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CustomEvent_Sprinting) == 0x000A6A, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CustomEvent_Sprinting' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000A6B, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x000A6C, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, Temp_bool_Has_Been_Initd_Variable_2) == 0x000A6D, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000A70, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000A78, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000A88, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x000A90, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetMovementComponent_ReturnValue) == 0x000A98, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetMovementComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetActorForwardVector_ReturnValue_5) == 0x000AA0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetActorForwardVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000AB8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000AC0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000AD0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetCurrentLevelName_ReturnValue) == 0x000AD8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetCurrentLevelName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SuperJumpAlpha_Alpha) == 0x000AE8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SuperJumpAlpha_Alpha' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Contains_ReturnValue) == 0x000AF0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_6) == 0x000AF8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_7) == 0x000B00, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SuperJumpAlpha_Alpha_1) == 0x000B08, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SuperJumpAlpha_Alpha_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SuperJumpAlpha_Alpha_2) == 0x000B10, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SuperJumpAlpha_Alpha_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_FClamp_ReturnValue_3) == 0x000B18, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_FClamp_ReturnValue_4) == 0x000B20, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_FClamp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000B28, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000B30, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000B38, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x000B40, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SuperJumpAlpha_Alpha_3) == 0x000C18, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SuperJumpAlpha_Alpha_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CustomEvent_Payload_1) == 0x000C20, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Lerp_ReturnValue_8) == 0x000CD0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Lerp_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000CD8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000CF0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000D08, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_X_1) == 0x000D10, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Y_1) == 0x000D18, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Z_1) == 0x000D20, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeVector_ReturnValue_1) == 0x000D28, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000D40, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000D48, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000D50, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000D60, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetPlayerPawn_ReturnValue) == 0x000D68, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000D70, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000D78, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000D80, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_CreateDelegate_OutputDelegate_9) == 0x000D98, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_10) == 0x000DA8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000DB0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasTag_ReturnValue) == 0x000DD0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x000DD4, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000DE0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeGameplayCueParameters_ReturnValue_2) == 0x000DE8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeGameplayCueParameters_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000EC0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeGameplayCueParameters_ReturnValue_3) == 0x000EC8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeGameplayCueParameters_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsCharacter_ReturnValue_11) == 0x000FA0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsCharacter_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000FA8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000FB0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000FC0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsWalking_ReturnValue_2) == 0x000FC1, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsWalking_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_IsWalking_ReturnValue_3) == 0x000FC2, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_IsWalking_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Not_PreBool_ReturnValue) == 0x000FC3, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000FC8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_self_CastInput_5) == 0x000FD0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_self_CastInput_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000FE0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_Select_Default_5) == 0x000FE8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000FF0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000FF8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001010, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_X_2) == 0x001028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Y_2) == 0x001030, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_BreakVector_Z_2) == 0x001038, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeVector_ReturnValue_2) == 0x001040, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x001058, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x00105C, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x001060, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_ClientStartCameraShake_Scale_ImplicitCast) == 0x001064, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_ClientStartCameraShake_Scale_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_ClientStartCameraShake_Scale_ImplicitCast_1) == 0x001068, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_ClientStartCameraShake_Scale_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x001070, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x001078, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint_Boost::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue) == 0x000038, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue, CallFunc_GetActorForwardVector_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue, CallFunc_Dot_VectorVector_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue, CallFunc_FClamp_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_MomentumValue::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F) == 0x000004, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F) == 0x000004, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_OnControlCueProcess_2F0ECF9F4538323415DBE880261BAE6F::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_Speedbark \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_Speedbark"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark) == 0x0000C8, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_Speedbark"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, Enemy) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::Enemy' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_IsDetectingActor_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, K2Node_MakeArray_Array) == 0x000030, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetDialogueInfo_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, K2Node_MakeArray_Array_1) == 0x000068, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000078, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000080, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_K2_GetAllEnemiesAware_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_K2_GetAllEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_IsValid_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_Array_Random_OutItem) == 0x0000B8, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_Array_Random_OutIndex) == 0x0000C0, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_Speedbark, CallFunc_Array_IsEmpty_ReturnValue) == 0x0000C4, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_Speedbark::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha) == 0x000058, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, alpha) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::alpha' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_BreakVector_X) == 0x000028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_BreakVector_Y) == 0x000030, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_BreakVector_Z) == 0x000038, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_MapRangeClamped_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000050, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_SuperJumpAlpha::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier) == 0x000001, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier) == 0x000001, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier, Enable) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ToggleCamModifier::Enable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal) == 0x000001, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal) == 0x000001, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal, Sprinting) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_ToggleTraversal::Sprinting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha) == 0x000098, "Wrong size on GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_GetVelocity_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_BreakVector_X) == 0x000040, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_BreakVector_Y) == 0x000048, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_BreakVector_Z) == 0x000050, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_MakeVector_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_Divide_VectorVector_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_VSize_ReturnValue) == 0x000088, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha, CallFunc_FClamp_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_VampireSprint_Boost_C_VelocityAlpha::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_VampireSprint_Boost_C \ +static_assert(alignof(UGA_PlayerMovement_VampireSprint_Boost_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_VampireSprint_Boost_C"); \ +static_assert(sizeof(UGA_PlayerMovement_VampireSprint_Boost_C) == 0x0006E8, "Wrong size on UGA_PlayerMovement_VampireSprint_Boost_C"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Effect) == 0x000670, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Friction_Cache) == 0x000678, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Friction_Cache' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Accel_Cache) == 0x00067C, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Accel_Cache' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Momentum) == 0x000680, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Momentum' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, TopSpeed) == 0x000698, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::TopSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Braking_Friction_Cache) == 0x0006A0, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Braking_Friction_Cache' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, Jump_Strength) == 0x0006A8, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::Jump_Strength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, CamModifier) == 0x0006B0, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::CamModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, MomentumRate) == 0x0006B8, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::MomentumRate' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, InHub) == 0x0006BC, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::InHub' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, KnockDown_Ignore_Tags) == 0x0006C0, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::KnockDown_Ignore_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_Boost_C, CachedCue) == 0x0006E0, "Member 'UGA_PlayerMovement_VampireSprint_Boost_C::CachedCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FSSquadLocaiton \ +static_assert(alignof(FSSquadLocaiton) == 0x000008, "Wrong alignment on FSSquadLocaiton"); \ +static_assert(sizeof(FSSquadLocaiton) == 0x000020, "Wrong size on FSSquadLocaiton"); \ +static_assert(offsetof(FSSquadLocaiton, Location_2_5F086FAD4CA68670C71E57BFF8C51E01) == 0x000000, "Member 'FSSquadLocaiton::Location_2_5F086FAD4CA68670C71E57BFF8C51E01' has a wrong offset!"); \ +static_assert(offsetof(FSSquadLocaiton, Reserved_5_017DB61E45503022BC2EA3888958DFC5) == 0x000018, "Member 'FSSquadLocaiton::Reserved_5_017DB61E45503022BC2EA3888958DFC5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_FS_NPC_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_FS_NPC_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify) == 0x0001F0, "Wrong size on AN_Audio_FS_NPC_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, WrestlerCharacter) == 0x000018, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::WrestlerCharacter' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, AudioComp) == 0x000020, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::AudioComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, SocketFName) == 0x000028, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::SocketFName' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue) == 0x000030, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, Temp_delegate_Variable) == 0x000038, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_OutExecBranches) == 0x000048, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_ReturnValue) == 0x000050, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, Temp_delegate_Variable_1) == 0x000058, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess) == 0x000068, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_OutExecBranches_1) == 0x000069, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_OutExecBranches_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_ReturnValue_1) == 0x000070, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue_1) == 0x000078, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000080, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess_1) == 0x000098, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A0, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000B8, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetSurfaceParameters_OutParams) == 0x0000D0, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetSurfaceParameters_OutParams' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_GetSurfaceParameters_OutExecBranches) == 0x000108, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_GetSurfaceParameters_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess_2) == 0x000109, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000110, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_NPC_C_OnCharacterAudioNotify, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0001E8, "Member 'AN_Audio_FS_NPC_C_OnCharacterAudioNotify::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_FS_NPC_C \ +static_assert(alignof(UAN_Audio_FS_NPC_C) == 0x000008, "Wrong alignment on UAN_Audio_FS_NPC_C"); \ +static_assert(sizeof(UAN_Audio_FS_NPC_C) == 0x000050, "Wrong size on UAN_Audio_FS_NPC_C"); \ + +#define DUMPER7_ASSERTS_FST_LampDamageLightVars \ +static_assert(alignof(FST_LampDamageLightVars) == 0x000008, "Wrong alignment on FST_LampDamageLightVars"); \ +static_assert(sizeof(FST_LampDamageLightVars) == 0x000010, "Wrong size on FST_LampDamageLightVars"); \ +static_assert(offsetof(FST_LampDamageLightVars, LightComponent_16_E7DA5DDF468E1492B55CE6BC3D7B60EA) == 0x000000, "Member 'FST_LampDamageLightVars::LightComponent_16_E7DA5DDF468E1492B55CE6BC3D7B60EA' has a wrong offset!"); \ +static_assert(offsetof(FST_LampDamageLightVars, LightIntensity_17_295795D246B9110B97C0C989740D36C5) == 0x000008, "Member 'FST_LampDamageLightVars::LightIntensity_17_295795D246B9110B97C0C989740D36C5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerVampireSprint_C_BlueprintModifyCamera \ +static_assert(alignof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_WrestlerVampireSprint_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera) == 0x000120, "Wrong size on CM_WrestlerVampireSprint_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000080, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000088, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_IsMovingOnGround_ReturnValue) == 0x000089, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_IsMovingOnGround_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetFloatValue_ReturnValue) == 0x00008C, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000090, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000098, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000A8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetFloatValue_ReturnValue_1) == 0x0000B0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetFloatValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000B8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000C8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000D0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000D8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_SelectFloat_ReturnValue) == 0x0000E0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Lerp_ReturnValue) == 0x0000E8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000F0, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0000F8, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x000100, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000108, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000110, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerVampireSprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000118, "Member 'CM_WrestlerVampireSprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WrestlerVampireSprint_C \ +static_assert(alignof(UCM_WrestlerVampireSprint_C) == 0x000008, "Wrong alignment on UCM_WrestlerVampireSprint_C"); \ +static_assert(sizeof(UCM_WrestlerVampireSprint_C) == 0x0000D0, "Wrong size on UCM_WrestlerVampireSprint_C"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, NewVar) == 0x0000A0, "Member 'UCM_WrestlerVampireSprint_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, NewVar_0) == 0x0000A8, "Member 'UCM_WrestlerVampireSprint_C::NewVar_0' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, Curve) == 0x0000B0, "Member 'UCM_WrestlerVampireSprint_C::Curve' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, Curve_0) == 0x0000B8, "Member 'UCM_WrestlerVampireSprint_C::Curve_0' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, NewVar_1) == 0x0000C0, "Member 'UCM_WrestlerVampireSprint_C::NewVar_1' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerVampireSprint_C, MenuBool) == 0x0000C8, "Member 'UCM_WrestlerVampireSprint_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyPatrolRoute_C_UserConstructionScript \ +static_assert(alignof(BP_EnemyPatrolRoute_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_EnemyPatrolRoute_C_UserConstructionScript"); \ +static_assert(sizeof(BP_EnemyPatrolRoute_C_UserConstructionScript) == 0x000028, "Wrong size on BP_EnemyPatrolRoute_C_UserConstructionScript"); \ +static_assert(offsetof(BP_EnemyPatrolRoute_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue) == 0x000000, "Member 'BP_EnemyPatrolRoute_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyPatrolRoute_C_UserConstructionScript, CallFunc_Conv_StringToText_ReturnValue) == 0x000010, "Member 'BP_EnemyPatrolRoute_C_UserConstructionScript::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemyPatrolRoute_C \ +static_assert(alignof(ABP_EnemyPatrolRoute_C) == 0x000008, "Wrong alignment on ABP_EnemyPatrolRoute_C"); \ +static_assert(sizeof(ABP_EnemyPatrolRoute_C) == 0x0002F8, "Wrong size on ABP_EnemyPatrolRoute_C"); \ +static_assert(offsetof(ABP_EnemyPatrolRoute_C, TextRender) == 0x0002C8, "Member 'ABP_EnemyPatrolRoute_C::TextRender' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyPatrolRoute_C, Scene) == 0x0002D0, "Member 'ABP_EnemyPatrolRoute_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyPatrolRoute_C, Billboard) == 0x0002D8, "Member 'ABP_EnemyPatrolRoute_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyPatrolRoute_C, PatrolRouteName) == 0x0002E0, "Member 'ABP_EnemyPatrolRoute_C::PatrolRouteName' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyPatrolRoute_C, PatrolRouteColour) == 0x0002F0, "Member 'ABP_EnemyPatrolRoute_C::PatrolRouteColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul \ +static_assert(alignof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul) == 0x000008, "Wrong alignment on AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul"); \ +static_assert(sizeof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul) == 0x0002C0, "Wrong size on AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, EntryPoint) == 0x000000, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_bool_IsClosed_Variable) == 0x000012, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_bool_Variable) == 0x000020, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_int_Loop_Counter_Variable_1) == 0x000024, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_Event_DeltaSeconds) == 0x00002C, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetControlRotation_ReturnValue) == 0x000030, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetForwardVector_ReturnValue) == 0x000048, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue) == 0x000060, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000068, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000080, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetViewTarget_ReturnValue) == 0x000098, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetViewTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetDisplayName_ReturnValue) == 0x0000B8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Concat_StrStr_ReturnValue) == 0x0000C8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_1) == 0x0000D8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_2) == 0x0000E0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetDisplayName_ReturnValue_1) == 0x0000E8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetDisplayName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000F8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000110, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_3) == 0x000120, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000128, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetActorForwardVector_ReturnValue) == 0x000138, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000150, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Multiply_VectorFloat_ReturnValue_1) == 0x000160, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Multiply_VectorFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000178, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000188, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetViewTarget_ReturnValue_1) == 0x0001A0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetViewTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_4) == 0x0001A8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_IsValid_ReturnValue_1) == 0x0001B0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_IsValid_ReturnValue_2) == 0x0001B1, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_BooleanAND_ReturnValue) == 0x0001B2, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_5) == 0x0001B8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, Temp_int_Array_Index_Variable_1) == 0x0001C0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_IsValid_ReturnValue_3) == 0x0001C4, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_RunEQSQuery_ReturnValue) == 0x0001C8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_RunEQSQuery_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_CreateDelegate_OutputDelegate) == 0x0001D0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_CustomEvent_QueryInstance) == 0x0001E0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_CustomEvent_QueryInstance' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_CustomEvent_QueryStatus) == 0x0001E8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_CustomEvent_QueryStatus' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_SwitchEnum_CmpSuccess) == 0x0001E9, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetQueryResultsAsLocations_ResultLocations) == 0x0001F0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetQueryResultsAsLocations_ResultLocations' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_GetQueryResultsAsLocations_ReturnValue) == 0x000200, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_GetQueryResultsAsLocations_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Array_Get_Item) == 0x000208, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Array_Get_Item_1) == 0x000220, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_MakeStruct_SSquadLocaiton) == 0x000238, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_MakeStruct_SSquadLocaiton' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_MakeStruct_SSquadLocaiton_1) == 0x000258, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_MakeStruct_SSquadLocaiton_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Array_Length_ReturnValue) == 0x000278, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Array_Length_ReturnValue_1) == 0x00027C, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Less_IntInt_ReturnValue) == 0x000280, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Less_IntInt_ReturnValue_1) == 0x000281, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_CreateDelegate_OutputDelegate_1) == 0x000284, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_Array_Add_ReturnValue) == 0x000294, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000298, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_GetPawn_ReturnValue_6) == 0x0002A0, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_GetPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0002A8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, K2Node_DynamicCast_bSuccess) == 0x0002B8, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0002B9, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul, CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast) == 0x0002BC, "Member 'AIC_MinorGhoul_C_ExecuteUbergraph_AIC_MinorGhoul::CallFunc_K2_SetTimerDelegate_InitialStartDelay_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIC_MinorGhoul_C_FillSquadLocations \ +static_assert(alignof(AIC_MinorGhoul_C_FillSquadLocations) == 0x000008, "Wrong alignment on AIC_MinorGhoul_C_FillSquadLocations"); \ +static_assert(sizeof(AIC_MinorGhoul_C_FillSquadLocations) == 0x000010, "Wrong size on AIC_MinorGhoul_C_FillSquadLocations"); \ +static_assert(offsetof(AIC_MinorGhoul_C_FillSquadLocations, QueryInstance) == 0x000000, "Member 'AIC_MinorGhoul_C_FillSquadLocations::QueryInstance' has a wrong offset!"); \ +static_assert(offsetof(AIC_MinorGhoul_C_FillSquadLocations, QueryStatus) == 0x000008, "Member 'AIC_MinorGhoul_C_FillSquadLocations::QueryStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AIC_MinorGhoul_C_ReceiveTick \ +static_assert(alignof(AIC_MinorGhoul_C_ReceiveTick) == 0x000004, "Wrong alignment on AIC_MinorGhoul_C_ReceiveTick"); \ +static_assert(sizeof(AIC_MinorGhoul_C_ReceiveTick) == 0x000004, "Wrong size on AIC_MinorGhoul_C_ReceiveTick"); \ +static_assert(offsetof(AIC_MinorGhoul_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'AIC_MinorGhoul_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AAIC_MinorGhoul_C \ +static_assert(alignof(AAIC_MinorGhoul_C) == 0x000008, "Wrong alignment on AAIC_MinorGhoul_C"); \ +static_assert(sizeof(AAIC_MinorGhoul_C) == 0x0005D8, "Wrong size on AAIC_MinorGhoul_C"); \ +static_assert(offsetof(AAIC_MinorGhoul_C, UberGraphFrame) == 0x0005B0, "Member 'AAIC_MinorGhoul_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AAIC_MinorGhoul_C, Debug) == 0x0005B8, "Member 'AAIC_MinorGhoul_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(AAIC_MinorGhoul_C, EQSQueryResultsAroundSelf) == 0x0005C0, "Member 'AAIC_MinorGhoul_C::EQSQueryResultsAroundSelf' has a wrong offset!"); \ +static_assert(offsetof(AAIC_MinorGhoul_C, SquadLocations) == 0x0005C8, "Member 'AAIC_MinorGhoul_C::SquadLocations' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue \ +static_assert(alignof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue) == 0x000008, "Wrong alignment on ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue"); \ +static_assert(sizeof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue) == 0x000048, "Wrong size on ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, EntryPoint) == 0x000000, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_Event_InAutomata) == 0x000008, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_Event_InState) == 0x000010, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000018, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_DynamicCast_AsWrestler_Character) == 0x000020, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000030, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'ProcessControlCue_C_ExecuteUbergraph_ProcessControlCue::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProcessControlCue_C_ReceiveExecute \ +static_assert(alignof(ProcessControlCue_C_ReceiveExecute) == 0x000008, "Wrong alignment on ProcessControlCue_C_ReceiveExecute"); \ +static_assert(sizeof(ProcessControlCue_C_ReceiveExecute) == 0x000010, "Wrong size on ProcessControlCue_C_ReceiveExecute"); \ +static_assert(offsetof(ProcessControlCue_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ProcessControlCue_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ProcessControlCue_C_ReceiveExecute, InState) == 0x000008, "Member 'ProcessControlCue_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProcessControlCue_C \ +static_assert(alignof(UProcessControlCue_C) == 0x000008, "Wrong alignment on UProcessControlCue_C"); \ +static_assert(sizeof(UProcessControlCue_C) == 0x000098, "Wrong size on UProcessControlCue_C"); \ +static_assert(offsetof(UProcessControlCue_C, UberGraphFrame) == 0x000088, "Member 'UProcessControlCue_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UProcessControlCue_C, ControlCue) == 0x000090, "Member 'UProcessControlCue_C::ControlCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Feed_ReceiveBlood_C \ +static_assert(alignof(UGE_Feed_ReceiveBlood_C) == 0x000008, "Wrong alignment on UGE_Feed_ReceiveBlood_C"); \ +static_assert(sizeof(UGE_Feed_ReceiveBlood_C) == 0x000A70, "Wrong size on UGE_Feed_ReceiveBlood_C"); \ + +#define DUMPER7_ASSERTS_FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent \ +static_assert(alignof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent) == 0x000008, "Wrong alignment on FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent"); \ +static_assert(sizeof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent) == 0x000470, "Wrong size on FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, EntryPoint) == 0x000000, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable) == 0x000004, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable_1) == 0x000018, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_real_Variable) == 0x000020, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_real_Variable_1) == 0x000028, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable_2) == 0x000038, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_Select_Default) == 0x000040, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_True_if_break_was_hit_Variable) == 0x000048, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_int_Array_Index_Variable) == 0x00004C, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Not_PreBool_ReturnValue) == 0x000050, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable_3) == 0x000051, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_Event_DeltaSeconds) == 0x000054, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_RandomFloatInRange_ReturnValue) == 0x000058, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue) == 0x000060, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsCharacter) == 0x000068, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_IsWalking_ReturnValue) == 0x000071, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_X) == 0x000080, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Y) == 0x000088, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Z) == 0x000090, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_1) == 0x000098, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MakeVector_ReturnValue) == 0x0000A0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000B8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess_1) == 0x0000C8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_VSize_ReturnValue) == 0x0000D0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000D8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0000D9, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable_4) == 0x0000DA, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetComponentTickInterval_ReturnValue) == 0x0000DC, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetComponentTickInterval_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetComponentTickInterval_ReturnValue_1) == 0x0000E0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetComponentTickInterval_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Radius_Multiplier_ReturnValue) == 0x0000E8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Radius_Multiplier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_2) == 0x0000F0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000F8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000110, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FClamp_ReturnValue) == 0x000118, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FMax_ReturnValue) == 0x000120, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000128, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_X_1) == 0x000130, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Y_1) == 0x000138, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Z_1) == 0x000140, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000148, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MakeVector_ReturnValue_1) == 0x000150, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FClamp_ReturnValue_1) == 0x000168, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_VSize_ReturnValue_1) == 0x000170, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MapRangeClamped_ReturnValue) == 0x000178, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_3) == 0x000180, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Radius_Multiplier_ReturnValue_1) == 0x000188, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Radius_Multiplier_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000190, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetComponentTickInterval_ReturnValue_2) == 0x0001A8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetComponentTickInterval_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0001B0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_X_2) == 0x0001B8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Y_2) == 0x0001C0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Z_2) == 0x0001C8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MakeVector_ReturnValue_2) == 0x0001D0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FMax_ReturnValue_1) == 0x0001E8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_VSize_ReturnValue_2) == 0x0001F0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_VSize_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0001F8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000200, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FInterpTo_Constant_ReturnValue_1) == 0x000208, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FInterpTo_Constant_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_LinearColorLerpUsingHSV_ReturnValue) == 0x000210, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_LinearColorLerpUsingHSV_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_4) == 0x000220, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000228, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess_2) == 0x000238, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_5) == 0x000240, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000248, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000250, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess_3) == 0x000260, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000261, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_CustomEvent_Hit) == 0x000268, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_CustomEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_6) == 0x000350, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000358, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess_4) == 0x000368, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_X_3) == 0x000370, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Y_3) == 0x000378, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BreakVector_Z_3) == 0x000380, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000388, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000390, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000398, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_7) == 0x0003A0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_8) == 0x0003A8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0003B0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_K2_GetNumberOfEnemiesDetectingPlayer_ReturnValue) == 0x0003C8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_K2_GetNumberOfEnemiesDetectingPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Greater_IntInt_ReturnValue) == 0x0003CC, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x0003D0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_bool_Variable_5) == 0x0003D4, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Greater_IntInt_ReturnValue_1) == 0x0003D5, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BooleanAND_ReturnValue) == 0x0003D6, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_GetOwner_ReturnValue_9) == 0x0003D8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_GetOwner_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, Temp_int_Loop_Counter_Variable) == 0x0003E0, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x0003E8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, K2Node_DynamicCast_bSuccess_5) == 0x0003F8, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Add_IntInt_ReturnValue) == 0x0003FC, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Map_Keys_Keys) == 0x000400, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Map_Values_Values) == 0x000410, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Array_Get_Item) == 0x000420, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Array_Get_Item_1) == 0x000428, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000430, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Array_Length_ReturnValue) == 0x000434, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Less_IntInt_ReturnValue) == 0x000438, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_BooleanAND_ReturnValue_1) == 0x000439, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_RealTimeDelay_Duration_ImplicitCast) == 0x00043C, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_RealTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000440, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000448, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_1) == 0x000450, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_WrestlerReportNoiseEvent_InLoudness_ImplicitCast) == 0x000458, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_WrestlerReportNoiseEvent_InLoudness_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast) == 0x00045C, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_DrawDebugSphere_Radius_ImplicitCast) == 0x000460, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_DrawDebugSphere_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_LinearColorLerpUsingHSV_Alpha_ImplicitCast) == 0x000464, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_LinearColorLerpUsingHSV_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent, CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast_1) == 0x000468, "Member 'FootstepNoiseComponent_C_ExecuteUbergraph_FootstepNoiseComponent::CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FootstepNoiseComponent_C_Landed \ +static_assert(alignof(FootstepNoiseComponent_C_Landed) == 0x000008, "Wrong alignment on FootstepNoiseComponent_C_Landed"); \ +static_assert(sizeof(FootstepNoiseComponent_C_Landed) == 0x0000E8, "Wrong size on FootstepNoiseComponent_C_Landed"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Landed, Hit) == 0x000000, "Member 'FootstepNoiseComponent_C_Landed::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FootstepNoiseComponent_C_Radius_Multiplier \ +static_assert(alignof(FootstepNoiseComponent_C_Radius_Multiplier) == 0x000008, "Wrong alignment on FootstepNoiseComponent_C_Radius_Multiplier"); \ +static_assert(sizeof(FootstepNoiseComponent_C_Radius_Multiplier) == 0x000068, "Wrong size on FootstepNoiseComponent_C_Radius_Multiplier"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, ReturnValue) == 0x000000, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_BreakVector_X) == 0x000008, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_BreakVector_Y) == 0x000010, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_BreakVector_Z) == 0x000018, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_FClamp_ReturnValue) == 0x000020, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_VSize_ReturnValue) == 0x000040, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_FClamp_ReturnValue_1) == 0x000048, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000050, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_FClamp_ReturnValue_2) == 0x000058, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FootstepNoiseComponent_C_Radius_Multiplier, CallFunc_FClamp_Value_ImplicitCast) == 0x000060, "Member 'FootstepNoiseComponent_C_Radius_Multiplier::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FootstepNoiseComponent_C_ReceiveTick \ +static_assert(alignof(FootstepNoiseComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on FootstepNoiseComponent_C_ReceiveTick"); \ +static_assert(sizeof(FootstepNoiseComponent_C_ReceiveTick) == 0x000004, "Wrong size on FootstepNoiseComponent_C_ReceiveTick"); \ +static_assert(offsetof(FootstepNoiseComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'FootstepNoiseComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFootstepNoiseComponent_C \ +static_assert(alignof(UFootstepNoiseComponent_C) == 0x000008, "Wrong alignment on UFootstepNoiseComponent_C"); \ +static_assert(sizeof(UFootstepNoiseComponent_C) == 0x000140, "Wrong size on UFootstepNoiseComponent_C"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UFootstepNoiseComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, NoiseBuildup) == 0x0000A8, "Member 'UFootstepNoiseComponent_C::NoiseBuildup' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, MovementComponent) == 0x0000B0, "Member 'UFootstepNoiseComponent_C::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, BuildupRate) == 0x0000B8, "Member 'UFootstepNoiseComponent_C::BuildupRate' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Noise_Radius) == 0x0000C0, "Member 'UFootstepNoiseComponent_C::Noise_Radius' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Noise_Loudness) == 0x0000C8, "Member 'UFootstepNoiseComponent_C::Noise_Loudness' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Base_Radius) == 0x0000D0, "Member 'UFootstepNoiseComponent_C::Base_Radius' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Radius_Map) == 0x0000D8, "Member 'UFootstepNoiseComponent_C::Radius_Map' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Draw_Debug) == 0x000128, "Member 'UFootstepNoiseComponent_C::Draw_Debug' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, DecayRate) == 0x000130, "Member 'UFootstepNoiseComponent_C::DecayRate' has a wrong offset!"); \ +static_assert(offsetof(UFootstepNoiseComponent_C, Enabled) == 0x000138, "Member 'UFootstepNoiseComponent_C::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData) == 0x000140, "Wrong size on AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __NameProperty_48) == 0x000004, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__NameProperty_48' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __NameProperty_49) == 0x00000C, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__NameProperty_49' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __StructProperty_50) == 0x000018, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__StructProperty_50' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __StructProperty_51) == 0x000038, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__StructProperty_51' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __BlendProfile_52) == 0x000058, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__BlendProfile_52' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __CurveFloat_53) == 0x000060, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__CurveFloat_53' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __BoolProperty_54) == 0x000068, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__BoolProperty_54' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __EnumProperty_55) == 0x000069, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__EnumProperty_55' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __EnumProperty_56) == 0x00006A, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__EnumProperty_56' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __ArrayProperty_57) == 0x000070, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__ArrayProperty_57' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, __StructProperty_58) == 0x000080, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::__StructProperty_58' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x0000A0, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_NodeRelevancy) == 0x000120, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_NodeRelevancy' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000128, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData) == 0x000038, "Wrong size on AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData, __ArrayProperty) == 0x000008, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData::__ArrayProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData, __BoolProperty_0) == 0x000018, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData::__BoolProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData, __ArrayProperty_1) == 0x000020, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData::__ArrayProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData, __BoolProperty_2) == 0x000030, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData::__BoolProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData, __BoolProperty_3) == 0x000031, "Member 'AnimBP_CinematicBlend::FAnimBlueprintGeneratedMutableData::__BoolProperty_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_AnimGraph \ +static_assert(alignof(AnimBP_CinematicBlend_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_AnimGraph) == 0x000020, "Wrong size on AnimBP_CinematicBlend_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_AnimGraph, InPose) == 0x000000, "Member 'AnimBP_CinematicBlend_C_AnimGraph::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_AnimGraph, AnimGraph_0) == 0x000010, "Member 'AnimBP_CinematicBlend_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_BlueprintUpdateAnimation \ +static_assert(alignof(AnimBP_CinematicBlend_C_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_CinematicBlend_C_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimBP_CinematicBlend_C_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimBP_CinematicBlend_C_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend \ +static_assert(alignof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend) == 0x000010, "Wrong alignment on AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend) == 0x000F00, "Wrong size on AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, EntryPoint) == 0x000000, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetTransform_ReturnValue) == 0x000010, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000070, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location) == 0x000078, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation) == 0x000090, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale) == 0x0000A8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_NegateRotator_ReturnValue) == 0x0000C0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_NegateRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, K2Node_Event_DeltaTimeX) == 0x0000D8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::K2Node_Event_DeltaTimeX' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetOwningComponent_ReturnValue) == 0x0000E0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000E8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000100, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetOwningComponent_ReturnValue_1) == 0x000160, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetOwningComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetOwningComponent_ReturnValue_2) == 0x000168, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetOwningComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSnapshotBoneId_Array_Index) == 0x000170, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSnapshotBoneId_Array_Index' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Array_Get_Item) == 0x000180, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_1) == 0x0001E0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_1) == 0x0001F8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_1) == 0x000210, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x000228, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000240, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TransformLocation_ReturnValue) == 0x000258, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_1) == 0x000270, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000288, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSnapshotBoneId_Array_Index_1) == 0x000290, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSnapshotBoneId_Array_Index_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000298, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetOwningComponent_ReturnValue_3) == 0x0002B0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetOwningComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0002B8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Add_VectorVector_ReturnValue) == 0x0002D0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_NegateRotator_ReturnValue_1) == 0x0002E8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_NegateRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_InverseTransformLocation_ReturnValue) == 0x000300, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Vector_Up_ReturnValue) == 0x000318, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSocketLocation_ReturnValue) == 0x000330, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSocketLocation_ReturnValue_1) == 0x000348, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000360, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BooleanOR_ReturnValue) == 0x000378, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x000380, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetComponentByClass_ReturnValue) == 0x000388, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_3) == 0x000390, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_ComputeFloorDist_FloorResult) == 0x000398, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_ComputeFloorDist_FloorResult' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000490, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeVector_ReturnValue) == 0x000498, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeVector_ReturnValue_1) == 0x0004B0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Subtract_VectorVector_ReturnValue_2) == 0x0004C8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Subtract_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_4) == 0x0004E0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0004E8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0005D0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0005D1, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_SetActorLocation_SweepHitResult_1) == 0x0005D8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_SetActorLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_K2_SetActorLocation_ReturnValue_1) == 0x0006C0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_K2_SetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetController_ReturnValue) == 0x0006C8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_IsValid_ReturnValue) == 0x0006D0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_IsValid_ReturnValue_1) == 0x0006D1, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetOwningComponent_ReturnValue_4) == 0x0006D8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetOwningComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetBoneName_ReturnValue) == 0x0006E0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetBoneName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSocketRotation_ReturnValue) == 0x0006E8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSocketRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Conv_RotatorToVector_ReturnValue_1) == 0x000700, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Conv_RotatorToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakVector_X) == 0x000718, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakVector_Y) == 0x000720, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakVector_Z) == 0x000728, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_NegateRotator_ReturnValue_2) == 0x000730, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_NegateRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeVector_ReturnValue_2) == 0x000748, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_ComposeRotators_ReturnValue) == 0x000760, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000778, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, K2Node_Event_InNewValue) == 0x000790, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::K2Node_Event_InNewValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_5) == 0x000810, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetController_ReturnValue_1) == 0x000818, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_IsValid_ReturnValue_2) == 0x000820, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_2) == 0x000828, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_2) == 0x000840, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_2) == 0x000858, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Not_PreBool_ReturnValue) == 0x000870, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BooleanOR_ReturnValue_1) == 0x000871, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_6) == 0x000878, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSnapshotBoneId_Array_Index_2) == 0x000880, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSnapshotBoneId_Array_Index_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetTransform_ReturnValue_1) == 0x000890, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_3) == 0x0008F0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_3) == 0x000908, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_3) == 0x000920, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Array_Get_Item_1) == 0x000940, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_4) == 0x0009A0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_4) == 0x0009B8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_4) == 0x0009D0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Array_Get_Item_2) == 0x0009F0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetUpVector_ReturnValue) == 0x000A50, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_5) == 0x000A68, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_5) == 0x000A80, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_5) == 0x000A98, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_2) == 0x000AB0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Conv_RotatorToVector_ReturnValue_2) == 0x000AC8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Conv_RotatorToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_3) == 0x000AE0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_4) == 0x000AF8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000B10, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_5) == 0x000B28, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeTransform_ReturnValue) == 0x000B40, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Vector_Down_ReturnValue) == 0x000BA0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Vector_Down_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeRotFromZY_ReturnValue) == 0x000BB8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeRotFromZY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeTransform_ReturnValue_1) == 0x000BD0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_TryGetPawnOwner_ReturnValue_7) == 0x000C30, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_TryGetPawnOwner_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetTransform_ReturnValue_2) == 0x000C40, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_6) == 0x000CA0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_6) == 0x000CB8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_6) == 0x000CD0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetSnapshotBoneId_Array_Index_3) == 0x000CE8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetSnapshotBoneId_Array_Index_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Array_Get_Item_3) == 0x000CF0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Location_7) == 0x000D50, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Location_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Rotation_7) == 0x000D68, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Rotation_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_BreakTransform_Scale_7) == 0x000D80, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_BreakTransform_Scale_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GetUpVector_ReturnValue_1) == 0x000D98, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GetUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Vector_Down_ReturnValue_1) == 0x000DB0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Vector_Down_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_6) == 0x000DC8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeRotFromZY_ReturnValue_1) == 0x000DE0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeRotFromZY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_GreaterGreater_VectorRotator_ReturnValue_7) == 0x000DF8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_GreaterGreater_VectorRotator_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeTransform_ReturnValue_2) == 0x000E10, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000E70, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_MakeTransform_ReturnValue_3) == 0x000E90, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_MakeTransform_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000EF0, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000EF8, "Member 'AnimBP_CinematicBlend_C_ExecuteUbergraph_AnimBP_CinematicBlend::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_GetSnapshotBoneId \ +static_assert(alignof(AnimBP_CinematicBlend_C_GetSnapshotBoneId) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend_C_GetSnapshotBoneId"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_GetSnapshotBoneId) == 0x000068, "Wrong size on AnimBP_CinematicBlend_C_GetSnapshotBoneId"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, Snapshot) == 0x000000, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::Snapshot' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, BoneName) == 0x000038, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, Array_Index_0) == 0x000040, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::Array_Index_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, Temp_int_Array_Index_Variable) == 0x000044, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, CallFunc_Array_Get_Item) == 0x00004C, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000054, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, Temp_int_Loop_Counter_Variable) == 0x000058, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, CallFunc_Less_IntInt_ReturnValue) == 0x00005C, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_GetSnapshotBoneId, CallFunc_Add_IntInt_ReturnValue) == 0x000060, "Member 'AnimBP_CinematicBlend_C_GetSnapshotBoneId::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_SequenceDataChanged \ +static_assert(alignof(AnimBP_CinematicBlend_C_SequenceDataChanged) == 0x000010, "Wrong alignment on AnimBP_CinematicBlend_C_SequenceDataChanged"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_SequenceDataChanged) == 0x000080, "Wrong size on AnimBP_CinematicBlend_C_SequenceDataChanged"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_SequenceDataChanged, InNewValue) == 0x000000, "Member 'AnimBP_CinematicBlend_C_SequenceDataChanged::InNewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_SetStartBlendInFalse \ +static_assert(alignof(AnimBP_CinematicBlend_C_SetStartBlendInFalse) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend_C_SetStartBlendInFalse"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_SetStartBlendInFalse) == 0x000020, "Wrong size on AnimBP_CinematicBlend_C_SetStartBlendInFalse"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_SetStartBlendInFalse, Context) == 0x000000, "Member 'AnimBP_CinematicBlend_C_SetStartBlendInFalse::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_SetStartBlendInFalse, Node) == 0x000010, "Member 'AnimBP_CinematicBlend_C_SetStartBlendInFalse::Node' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_CinematicBlend_C_SetStartBlendOutFalse \ +static_assert(alignof(AnimBP_CinematicBlend_C_SetStartBlendOutFalse) == 0x000008, "Wrong alignment on AnimBP_CinematicBlend_C_SetStartBlendOutFalse"); \ +static_assert(sizeof(AnimBP_CinematicBlend_C_SetStartBlendOutFalse) == 0x000020, "Wrong size on AnimBP_CinematicBlend_C_SetStartBlendOutFalse"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_SetStartBlendOutFalse, Context) == 0x000000, "Member 'AnimBP_CinematicBlend_C_SetStartBlendOutFalse::Context' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_CinematicBlend_C_SetStartBlendOutFalse, Node) == 0x000010, "Member 'AnimBP_CinematicBlend_C_SetStartBlendOutFalse::Node' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_CinematicBlend_C \ +static_assert(alignof(UAnimBP_CinematicBlend_C) == 0x000010, "Wrong alignment on UAnimBP_CinematicBlend_C"); \ +static_assert(sizeof(UAnimBP_CinematicBlend_C) == 0x000B00, "Wrong size on UAnimBP_CinematicBlend_C"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, UberGraphFrame) == 0x000380, "Member 'UAnimBP_CinematicBlend_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, __AnimBlueprintMutables) == 0x000388, "Member 'UAnimBP_CinematicBlend_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimBlueprintExtension_PropertyAccess) == 0x0003C0, "Member 'UAnimBP_CinematicBlend_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimBlueprintExtension_NodeRelevancy) == 0x0003C8, "Member 'UAnimBP_CinematicBlend_C::AnimBlueprintExtension_NodeRelevancy' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimBlueprintExtension_Base) == 0x000470, "Member 'UAnimBP_CinematicBlend_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_Root) == 0x000478, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_PoseSnapshot_1) == 0x000498, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_BlendListByBool_2) == 0x000528, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_BlendListByBool_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_PoseSnapshot) == 0x000570, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_BlendListByBool_1) == 0x000600, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_BlendListByBool_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_SaveCachedPose_2) == 0x000648, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_SaveCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_UseCachedPose_3) == 0x0006C8, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_UseCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_SaveCachedPose_1) == 0x0006F0, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_SaveCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_LinkedInputPose) == 0x000770, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_UseCachedPose_2) == 0x000828, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_UseCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_BlendListByBool) == 0x000850, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_BlendListByBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_UseCachedPose_1) == 0x000898, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_UseCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_SaveCachedPose) == 0x0008C0, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_SaveCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, AnimGraphNode_UseCachedPose) == 0x000940, "Member 'UAnimBP_CinematicBlend_C::AnimGraphNode_UseCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, InCutscene) == 0x000968, "Member 'UAnimBP_CinematicBlend_C::InCutscene' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendOutStartLocation) == 0x000970, "Member 'UAnimBP_CinematicBlend_C::BlendOutStartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendOutStartRotation) == 0x000988, "Member 'UAnimBP_CinematicBlend_C::BlendOutStartRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, RootName) == 0x0009A0, "Member 'UAnimBP_CinematicBlend_C::RootName' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, CanOffsetPose) == 0x0009A8, "Member 'UAnimBP_CinematicBlend_C::CanOffsetPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendInStartPose) == 0x0009B0, "Member 'UAnimBP_CinematicBlend_C::BlendInStartPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, StartBlendIn) == 0x0009E8, "Member 'UAnimBP_CinematicBlend_C::StartBlendIn' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, StartBlendOut) == 0x0009E9, "Member 'UAnimBP_CinematicBlend_C::StartBlendOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendInStartLocation) == 0x0009F0, "Member 'UAnimBP_CinematicBlend_C::BlendInStartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendInStartRotation) == 0x000A08, "Member 'UAnimBP_CinematicBlend_C::BlendInStartRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, Array_Index) == 0x000A20, "Member 'UAnimBP_CinematicBlend_C::Array_Index' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendOutStartPose) == 0x000A28, "Member 'UAnimBP_CinematicBlend_C::BlendOutStartPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendOutDuration) == 0x000A60, "Member 'UAnimBP_CinematicBlend_C::BlendOutDuration' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendInDuration) == 0x000A64, "Member 'UAnimBP_CinematicBlend_C::BlendInDuration' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, EndRotationRefSocket) == 0x000A68, "Member 'UAnimBP_CinematicBlend_C::EndRotationRefSocket' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, IgnoreInstantBlendInIf0) == 0x000A70, "Member 'UAnimBP_CinematicBlend_C::IgnoreInstantBlendInIf0' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, RotationOffset) == 0x000A78, "Member 'UAnimBP_CinematicBlend_C::RotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendingComponent) == 0x000A90, "Member 'UAnimBP_CinematicBlend_C::BlendingComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, BlendoutBuffer) == 0x000A98, "Member 'UAnimBP_CinematicBlend_C::BlendoutBuffer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, PoseBuffer) == 0x000AB0, "Member 'UAnimBP_CinematicBlend_C::PoseBuffer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_CinematicBlend_C, RotationBuffer) == 0x000AE8, "Member 'UAnimBP_CinematicBlend_C::RotationBuffer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_Climbable_Surface_C_GetAudioSwitch \ +static_assert(alignof(BPI_Climbable_Surface_C_GetAudioSwitch) == 0x000008, "Wrong alignment on BPI_Climbable_Surface_C_GetAudioSwitch"); \ +static_assert(sizeof(BPI_Climbable_Surface_C_GetAudioSwitch) == 0x000008, "Wrong size on BPI_Climbable_Surface_C_GetAudioSwitch"); \ +static_assert(offsetof(BPI_Climbable_Surface_C_GetAudioSwitch, AudioSwitch) == 0x000000, "Member 'BPI_Climbable_Surface_C_GetAudioSwitch::AudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_Climbable_Surface_C \ +static_assert(alignof(IBPI_Climbable_Surface_C) == 0x000001, "Wrong alignment on IBPI_Climbable_Surface_C"); \ +static_assert(sizeof(IBPI_Climbable_Surface_C) == 0x000001, "Wrong size on IBPI_Climbable_Surface_C"); \ + +#define DUMPER7_ASSERTS_AN_ToggleGameplayTags_C_Received_NotifyBegin \ +static_assert(alignof(AN_ToggleGameplayTags_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_ToggleGameplayTags_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_ToggleGameplayTags_C_Received_NotifyBegin) == 0x000060, "Wrong size on AN_ToggleGameplayTags_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyBegin, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000058, "Member 'AN_ToggleGameplayTags_C_Received_NotifyBegin::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_ToggleGameplayTags_C_Received_NotifyEnd \ +static_assert(alignof(AN_ToggleGameplayTags_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_ToggleGameplayTags_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_ToggleGameplayTags_C_Received_NotifyEnd) == 0x000058, "Wrong size on AN_ToggleGameplayTags_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleGameplayTags_C_Received_NotifyEnd, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000050, "Member 'AN_ToggleGameplayTags_C_Received_NotifyEnd::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_ToggleGameplayTags_C \ +static_assert(alignof(UAN_ToggleGameplayTags_C) == 0x000008, "Wrong alignment on UAN_ToggleGameplayTags_C"); \ +static_assert(sizeof(UAN_ToggleGameplayTags_C) == 0x000050, "Wrong size on UAN_ToggleGameplayTags_C"); \ +static_assert(offsetof(UAN_ToggleGameplayTags_C, Gameplay_Tags) == 0x000030, "Member 'UAN_ToggleGameplayTags_C::Gameplay_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirVentrue_C_CanPull \ +static_assert(alignof(BP_ElixirVentrue_C_CanPull) == 0x000001, "Wrong alignment on BP_ElixirVentrue_C_CanPull"); \ +static_assert(sizeof(BP_ElixirVentrue_C_CanPull) == 0x000001, "Wrong size on BP_ElixirVentrue_C_CanPull"); \ +static_assert(offsetof(BP_ElixirVentrue_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_ElixirVentrue_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue \ +static_assert(alignof(BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue) == 0x000004, "Wrong alignment on BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue"); \ +static_assert(sizeof(BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue) == 0x000008, "Wrong size on BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue"); \ +static_assert(offsetof(BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue, EntryPoint) == 0x000000, "Member 'BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_ElixirVentrue_C_ExecuteUbergraph_BP_ElixirVentrue::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ElixirVentrue_C \ +static_assert(alignof(ABP_ElixirVentrue_C) == 0x000008, "Wrong alignment on ABP_ElixirVentrue_C"); \ +static_assert(sizeof(ABP_ElixirVentrue_C) == 0x0003F0, "Wrong size on ABP_ElixirVentrue_C"); \ +static_assert(offsetof(ABP_ElixirVentrue_C, UberGraphFrame_BP_ElixirVentrue_C) == 0x0003E8, "Member 'ABP_ElixirVentrue_C::UberGraphFrame_BP_ElixirVentrue_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess) == 0x000750, "Wrong size on CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_IsValid_ReturnValue) == 0x000700, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetProperty_ReturnValue) == 0x000701, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetBlendWeight_returnValue) == 0x000708, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetBlendWeight_returnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_IsValid_ReturnValue_1) == 0x000710, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetBlendWeight_returnValue_1) == 0x000718, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetBlendWeight_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000720, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x000721, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetBlendWeight_returnValue_2) == 0x000728, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetBlendWeight_returnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetBlendWeight_returnValue_3) == 0x000730, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetBlendWeight_returnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_GetBlendWeight_returnValue_4) == 0x000738, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_GetBlendWeight_returnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast) == 0x000740, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast_1) == 0x000744, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast_2) == 0x000748, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x00074C, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial \ +static_assert(alignof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial) == 0x000008, "Wrong alignment on CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial"); \ +static_assert(sizeof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial) == 0x000040, "Wrong size on CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial, K2Node_MakeStruct_WeightedBlendable) == 0x000008, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial::K2Node_MakeStruct_WeightedBlendable' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial, K2Node_MakeArray_Array) == 0x000018, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000028, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial, K2Node_MakeStruct_WeightedBlendables) == 0x000030, "Member 'CM_WrestlerCameraModifier_PPMaterial_C_InitialisePostProcessMaterial::K2Node_MakeStruct_WeightedBlendables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WrestlerCameraModifier_PPMaterial_C \ +static_assert(alignof(UCM_WrestlerCameraModifier_PPMaterial_C) == 0x000010, "Wrong alignment on UCM_WrestlerCameraModifier_PPMaterial_C"); \ +static_assert(sizeof(UCM_WrestlerCameraModifier_PPMaterial_C) == 0x000780, "Wrong size on UCM_WrestlerCameraModifier_PPMaterial_C"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, PostProcessMaterial) == 0x000050, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::PostProcessMaterial' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, PostProcessMID) == 0x000058, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::PostProcessMID' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, PostProcessSettings) == 0x000060, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, AlphaInComplete) == 0x000750, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::AlphaInComplete' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, AlphaOutComplete) == 0x000760, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::AlphaOutComplete' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerCameraModifier_PPMaterial_C, CallDelegates) == 0x000770, "Member 'UCM_WrestlerCameraModifier_PPMaterial_C::CallDelegates' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction \ +static_assert(alignof(GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction) == 0x000004, "Wrong alignment on GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction"); \ +static_assert(sizeof(GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction) == 0x000004, "Wrong size on GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction"); \ +static_assert(offsetof(GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyFoundPlayerReaction_C_ExecuteUbergraph_GA_EnemyFoundPlayerReaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyFoundPlayerReaction_C \ +static_assert(alignof(UGA_EnemyFoundPlayerReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyFoundPlayerReaction_C"); \ +static_assert(sizeof(UGA_EnemyFoundPlayerReaction_C) == 0x0006E0, "Wrong size on UGA_EnemyFoundPlayerReaction_C"); \ +static_assert(offsetof(UGA_EnemyFoundPlayerReaction_C, UberGraphFrame_GA_EnemyFoundPlayerReaction_C) == 0x0006D8, "Member 'UGA_EnemyFoundPlayerReaction_C::UberGraphFrame_GA_EnemyFoundPlayerReaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEmotionComponent_C_Emote \ +static_assert(alignof(WrestlerEmotionComponent_C_Emote) == 0x000008, "Wrong alignment on WrestlerEmotionComponent_C_Emote"); \ +static_assert(sizeof(WrestlerEmotionComponent_C_Emote) == 0x000018, "Wrong size on WrestlerEmotionComponent_C_Emote"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_Emote, Emotion) == 0x000000, "Member 'WrestlerEmotionComponent_C_Emote::Emotion' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_Emote, Strength) == 0x000008, "Member 'WrestlerEmotionComponent_C_Emote::Strength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_Emote, Duration) == 0x000010, "Member 'WrestlerEmotionComponent_C_Emote::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent \ +static_assert(alignof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent) == 0x000008, "Wrong alignment on WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent"); \ +static_assert(sizeof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent) == 0x000030, "Wrong size on WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, EntryPoint) == 0x000000, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, K2Node_CustomEvent_Emotion) == 0x000004, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::K2Node_CustomEvent_Emotion' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, K2Node_CustomEvent_Strength) == 0x000008, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::K2Node_CustomEvent_Strength' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, K2Node_CustomEvent_Duration) == 0x000010, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::K2Node_CustomEvent_Duration' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x00001C, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, CallFunc_RetriggerableDelay_Duration_ImplicitCast_1) == 0x000020, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::CallFunc_RetriggerableDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, CallFunc_RetriggerableDelay_Duration_ImplicitCast_2) == 0x000024, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::CallFunc_RetriggerableDelay_Duration_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent, CallFunc_RetriggerableDelay_Duration_ImplicitCast_3) == 0x000028, "Member 'WrestlerEmotionComponent_C_ExecuteUbergraph_WrestlerEmotionComponent::CallFunc_RetriggerableDelay_Duration_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerEmotionComponent_C \ +static_assert(alignof(UWrestlerEmotionComponent_C) == 0x000008, "Wrong alignment on UWrestlerEmotionComponent_C"); \ +static_assert(sizeof(UWrestlerEmotionComponent_C) == 0x0000C8, "Wrong size on UWrestlerEmotionComponent_C"); \ +static_assert(offsetof(UWrestlerEmotionComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UWrestlerEmotionComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEmotionComponent_C, Pain_Alpha) == 0x0000A8, "Member 'UWrestlerEmotionComponent_C::Pain_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEmotionComponent_C, Anger_Alpha) == 0x0000B0, "Member 'UWrestlerEmotionComponent_C::Anger_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEmotionComponent_C, Fear_Alpha) == 0x0000B8, "Member 'UWrestlerEmotionComponent_C::Fear_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerEmotionComponent_C, Happiness_Alpha) == 0x0000C0, "Member 'UWrestlerEmotionComponent_C::Happiness_Alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness \ +static_assert(alignof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness) == 0x000008, "Wrong alignment on STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness"); \ +static_assert(sizeof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness) == 0x000090, "Wrong size on STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, EntryPoint) == 0x000000, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_GetAIController_ReturnValue) == 0x000008, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, K2Node_Event_Transition_1) == 0x000010, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::K2Node_Event_Transition_1' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, K2Node_Event_Transition) == 0x00003E, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::K2Node_Event_Transition' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_BreakVector2D_X) == 0x000070, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_BreakVector2D_Y) == 0x000078, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_RandomFloatInRange_ReturnValue) == 0x000080, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x000088, "Member 'STT_ResetAwareness_C_ExecuteUbergraph_STT_ResetAwareness::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_ResetAwareness_C_ReceiveExitState \ +static_assert(alignof(STT_ResetAwareness_C_ReceiveExitState) == 0x000002, "Wrong alignment on STT_ResetAwareness_C_ReceiveExitState"); \ +static_assert(sizeof(STT_ResetAwareness_C_ReceiveExitState) == 0x00002E, "Wrong size on STT_ResetAwareness_C_ReceiveExitState"); \ +static_assert(offsetof(STT_ResetAwareness_C_ReceiveExitState, Transition) == 0x000000, "Member 'STT_ResetAwareness_C_ReceiveExitState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_ResetAwareness_C_ReceiveLatentEnterState \ +static_assert(alignof(STT_ResetAwareness_C_ReceiveLatentEnterState) == 0x000002, "Wrong alignment on STT_ResetAwareness_C_ReceiveLatentEnterState"); \ +static_assert(sizeof(STT_ResetAwareness_C_ReceiveLatentEnterState) == 0x00002E, "Wrong size on STT_ResetAwareness_C_ReceiveLatentEnterState"); \ +static_assert(offsetof(STT_ResetAwareness_C_ReceiveLatentEnterState, Transition) == 0x000000, "Member 'STT_ResetAwareness_C_ReceiveLatentEnterState::Transition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USTT_ResetAwareness_C \ +static_assert(alignof(USTT_ResetAwareness_C) == 0x000008, "Wrong alignment on USTT_ResetAwareness_C"); \ +static_assert(sizeof(USTT_ResetAwareness_C) == 0x000070, "Wrong size on USTT_ResetAwareness_C"); \ +static_assert(offsetof(USTT_ResetAwareness_C, UberGraphFrame) == 0x000048, "Member 'USTT_ResetAwareness_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USTT_ResetAwareness_C, Context) == 0x000050, "Member 'USTT_ResetAwareness_C::Context' has a wrong offset!"); \ +static_assert(offsetof(USTT_ResetAwareness_C, Duration) == 0x000058, "Member 'USTT_ResetAwareness_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(USTT_ResetAwareness_C, Primed) == 0x000068, "Member 'USTT_ResetAwareness_C::Primed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_StartTimer_C_ReceiveEnterState \ +static_assert(alignof(STT_StartTimer_C_ReceiveEnterState) == 0x000002, "Wrong alignment on STT_StartTimer_C_ReceiveEnterState"); \ +static_assert(sizeof(STT_StartTimer_C_ReceiveEnterState) == 0x000030, "Wrong size on STT_StartTimer_C_ReceiveEnterState"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveEnterState, Transition) == 0x000000, "Member 'STT_StartTimer_C_ReceiveEnterState::Transition' has a wrong offset!"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveEnterState, ReturnValue) == 0x00002E, "Member 'STT_StartTimer_C_ReceiveEnterState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_STT_StartTimer_C_ReceiveTick \ +static_assert(alignof(STT_StartTimer_C_ReceiveTick) == 0x000008, "Wrong alignment on STT_StartTimer_C_ReceiveTick"); \ +static_assert(sizeof(STT_StartTimer_C_ReceiveTick) == 0x000018, "Wrong size on STT_StartTimer_C_ReceiveTick"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveTick, DeltaTime) == 0x000000, "Member 'STT_StartTimer_C_ReceiveTick::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveTick, ReturnValue) == 0x000004, "Member 'STT_StartTimer_C_ReceiveTick::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveTick, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'STT_StartTimer_C_ReceiveTick::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(STT_StartTimer_C_ReceiveTick, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000010, "Member 'STT_StartTimer_C_ReceiveTick::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USTT_StartTimer_C \ +static_assert(alignof(USTT_StartTimer_C) == 0x000008, "Wrong alignment on USTT_StartTimer_C"); \ +static_assert(sizeof(USTT_StartTimer_C) == 0x000058, "Wrong size on USTT_StartTimer_C"); \ +static_assert(offsetof(USTT_StartTimer_C, Timer) == 0x000048, "Member 'USTT_StartTimer_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(USTT_StartTimer_C, Context) == 0x000050, "Member 'USTT_StartTimer_C::Context' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin \ +static_assert(alignof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin) == 0x000008, "Wrong alignment on AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin"); \ +static_assert(sizeof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin) == 0x000068, "Wrong size on AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, MeshComponent) == 0x000008, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, Animation) == 0x000010, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, TotalDuration) == 0x000018, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_delegate_Variable) == 0x000028, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Map_Values_Values) == 0x000038, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Map_Keys_Keys) == 0x000048, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Array_Get_Item) == 0x000058, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Less_IntInt_ReturnValue) == 0x000064, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd \ +static_assert(alignof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd) == 0x000008, "Wrong alignment on AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd"); \ +static_assert(sizeof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd) == 0x000068, "Wrong size on AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, MeshComponent) == 0x000008, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, Animation) == 0x000010, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_int_Array_Index_Variable) == 0x000018, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_delegate_Variable) == 0x000024, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Map_Values_Values) == 0x000038, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Map_Keys_Keys) == 0x000048, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Array_Get_Item) == 0x000058, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Less_IntInt_ReturnValue) == 0x000064, "Member 'AN_Audio_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_LoopPostEvent_C \ +static_assert(alignof(UAN_Audio_LoopPostEvent_C) == 0x000008, "Wrong alignment on UAN_Audio_LoopPostEvent_C"); \ +static_assert(sizeof(UAN_Audio_LoopPostEvent_C) == 0x000080, "Wrong size on UAN_Audio_LoopPostEvent_C"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C \ +static_assert(alignof(BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C) == 0x000008, "Wrong alignment on BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C) == 0x0000B0, "Wrong size on BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C, Payload) == 0x000000, "Member 'BP_Throwable_Bolt_C_EventReceived_B36E01794084C227A26AAE853A20E24C::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt \ +static_assert(alignof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt) == 0x000010, "Wrong alignment on BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt) == 0x000970, "Wrong size on BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, EntryPoint) == 0x000000, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_object_Variable) == 0x000008, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_Variable) == 0x000030, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_Variable_1) == 0x000031, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Not_PreBool_ReturnValue) == 0x000032, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_Variable_2) == 0x000033, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_object_Variable_1) == 0x000038, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Not_PreBool_ReturnValue_1) == 0x000040, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_delegate_Variable) == 0x000044, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CustomEvent_Loaded_1) == 0x000058, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_object_Variable_2) == 0x000060, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CustomEvent_Loaded) == 0x000068, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_object_Variable_3) == 0x000070, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_IsClosed_Variable) == 0x000078, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_Has_Been_Initd_Variable) == 0x000079, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_int_Loop_Counter_Variable) == 0x00007C, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Add_IntInt_ReturnValue) == 0x000080, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_int_Array_Index_Variable) == 0x000084, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000088, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CreateDelegate_OutputDelegate) == 0x0000A0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000B0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetPlaybackPosition_ReturnValue) == 0x0000C8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetPlaybackPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_NormalizeToRange_ReturnValue) == 0x0000D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000D8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000F0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000108, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Add_VectorVector_ReturnValue) == 0x000120, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x000140, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAttachParent_ReturnValue) == 0x0001A0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAttachParent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0001A8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue) == 0x0001B0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_FinishSpawningActor_ReturnValue) == 0x0001B8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetForwardVector_ReturnValue) == 0x0001C0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001D8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_MakeArray_Array) == 0x0001F0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000200, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000218, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_delegate_Variable_1) == 0x000230, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000240, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000258, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x000270, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x000358, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_bBlockingHit) == 0x000359, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_bInitialOverlap) == 0x00035A, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_Time) == 0x00035C, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_Distance) == 0x000360, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_Location) == 0x000368, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_ImpactPoint) == 0x000380, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_Normal) == 0x000398, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_ImpactNormal) == 0x0003B0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_PhysMat) == 0x0003C8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_HitActor) == 0x0003D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_HitComponent) == 0x0003D8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_HitBoneName) == 0x0003E0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_BoneName) == 0x0003E8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_HitItem) == 0x0003F0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_ElementIndex) == 0x0003F4, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_FaceIndex) == 0x0003F8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_TraceStart) == 0x000400, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BreakHitResult_TraceEnd) == 0x000418, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000430, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAttachParent_ReturnValue_1) == 0x000438, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAttachParent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_1) == 0x000440, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetOwner_ReturnValue) == 0x000448, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_2) == 0x000450, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsCharacter) == 0x000458, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess) == 0x000460, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000468, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_1) == 0x000478, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000480, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000488, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetPlayerPawn_ReturnValue) == 0x000490, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000498, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_MakeStruct_ApplyDamageParams) == 0x0004A0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0004C8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0004D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetInstigator_ReturnValue) == 0x0004E8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetInstigator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAttachParentActor_ReturnValue) == 0x0004F0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0004F8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetMassEntityHandle_ReturnValue) == 0x000500, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_Has_Been_Initd_Variable_1) == 0x000501, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAttachParent_ReturnValue_2) == 0x000508, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAttachParent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_3) == 0x000510, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetOwner_ReturnValue_1) == 0x000518, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000520, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_2) == 0x000530, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_4) == 0x000531, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000538, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_5) == 0x000540, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000544, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000550, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_MakeArray_Array_1) == 0x000570, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000580, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000588, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0005A0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_MakeArray_Array_2) == 0x0005A8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0005B8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SphereOverlapActors_OutActors) == 0x0005C0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SphereOverlapActors_ReturnValue) == 0x0005D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Array_Get_Item) == 0x0005D8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Array_Length_ReturnValue) == 0x0005E0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x0005E8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_3) == 0x0005F8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Less_IntInt_ReturnValue) == 0x0005F9, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0005FA, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000600, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_4) == 0x000610, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_6) == 0x000611, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000612, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_struct_Variable) == 0x000618, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0006C8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_MakeStruct_GameplayEventData) == 0x0006E0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000790, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000798, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, Temp_bool_IsClosed_Variable_1) == 0x000799, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetAttachParent_ReturnValue_3) == 0x0007A0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetAttachParent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_7) == 0x0007A8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_GetOwner_ReturnValue_2) == 0x0007B0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_IsValid_ReturnValue_8) == 0x0007B8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x0007B9, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BooleanAND_ReturnValue) == 0x0007BA, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CreateDelegate_OutputDelegate_1) == 0x0007BC, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_BooleanAND_ReturnValue_1) == 0x0007CC, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CustomEvent_Payload) == 0x0007D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000880, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000898, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_RandomFloatInRange_ReturnValue) == 0x0008B0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_MakeRotator_ReturnValue) == 0x0008B8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x0008D0, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0008E8, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000900, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsMaterial_Instance) == 0x000908, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsMaterial_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_5) == 0x000910, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000918, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x000920, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_AsNiagara_System) == 0x000928, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_DynamicCast_bSuccess_6) == 0x000930, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000938, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, K2Node_CreateDelegate_OutputDelegate_2) == 0x000940, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_NormalizeToRange_Value_ImplicitCast) == 0x000950, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_NormalizeToRange_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000958, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000960, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000968, "Member 'BP_Throwable_Bolt_C_ExecuteUbergraph_BP_Throwable_Bolt::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_GetPointAxis \ +static_assert(alignof(BP_Throwable_Bolt_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_Throwable_Bolt_C_GetPointAxis"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_GetPointAxis) == 0x000060, "Wrong size on BP_Throwable_Bolt_C_GetPointAxis"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_Throwable_Bolt_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_GetPointAxis, K2Node_MakeStruct_WrestlerPointAxis) == 0x000030, "Member 'BP_Throwable_Bolt_C_GetPointAxis::K2Node_MakeStruct_WrestlerPointAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_IsPointed \ +static_assert(alignof(BP_Throwable_Bolt_C_IsPointed) == 0x000001, "Wrong alignment on BP_Throwable_Bolt_C_IsPointed"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_IsPointed) == 0x000001, "Wrong size on BP_Throwable_Bolt_C_IsPointed"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_Throwable_Bolt_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_IsThrowable \ +static_assert(alignof(BP_Throwable_Bolt_C_IsThrowable) == 0x000001, "Wrong alignment on BP_Throwable_Bolt_C_IsThrowable"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_IsThrowable) == 0x000001, "Wrong size on BP_Throwable_Bolt_C_IsThrowable"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_Throwable_Bolt_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB \ +static_assert(alignof(BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB) == 0x000008, "Wrong alignment on BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB) == 0x000008, "Wrong size on BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB, Loaded) == 0x000000, "Member 'BP_Throwable_Bolt_C_OnLoaded_CA3597AD4C4D043F3BB681BEC1739EDB::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC \ +static_assert(alignof(BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC) == 0x000008, "Wrong alignment on BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC) == 0x000008, "Wrong size on BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC, Loaded) == 0x000000, "Member 'BP_Throwable_Bolt_C_OnLoaded_F08667EF4B764ED6F9B8D7B182DEEABC::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bolt_C_UpdateMassAttachment \ +static_assert(alignof(BP_Throwable_Bolt_C_UpdateMassAttachment) == 0x000010, "Wrong alignment on BP_Throwable_Bolt_C_UpdateMassAttachment"); \ +static_assert(sizeof(BP_Throwable_Bolt_C_UpdateMassAttachment) == 0x000370, "Wrong size on BP_Throwable_Bolt_C_UpdateMassAttachment"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, NewAttachActor) == 0x000000, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::NewAttachActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, Temp_bool_True_if_break_was_hit_Variable) == 0x000008, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_Not_PreBool_ReturnValue) == 0x000010, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000014, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_ReturnValue) == 0x00001C, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_IsValid_ReturnValue) == 0x00001D, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_IsValid_ReturnValue_1) == 0x000028, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, Temp_int_Loop_Counter_Variable) == 0x00002C, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, Temp_object_Variable) == 0x000030, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, K2Node_MakeArray_Array) == 0x000048, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetAttachParentActor_ReturnValue) == 0x000058, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_OutEntityHandle_1) == 0x000060, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_OutEntityHandle_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_ReturnValue_1) == 0x000068, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityTransform_OutTransform) == 0x000070, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityTransform_OutTransform' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityTransform_ReturnValue) == 0x0000D0, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_AreMassEntitiesSame_ReturnValue) == 0x0000D1, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_AreMassEntitiesSame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_BreakTransform_Location) == 0x0000D8, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_BreakTransform_Rotation) == 0x0000F0, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_BreakTransform_Scale) == 0x000108, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_SphereOverlapActors_OutActors) == 0x000120, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_SphereOverlapActors_ReturnValue) == 0x000130, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_K2_SetActorLocationAndRotation_SweepHitResult) == 0x000138, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_K2_SetActorLocationAndRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_K2_SetActorLocationAndRotation_ReturnValue) == 0x000220, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_K2_SetActorLocationAndRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_Array_Get_Item) == 0x000228, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_Array_Length_ReturnValue) == 0x000230, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000238, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, K2Node_DynamicCast_bSuccess) == 0x000240, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_Less_IntInt_ReturnValue) == 0x000241, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_BooleanAND_ReturnValue) == 0x000242, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_OutEntityHandle_2) == 0x000244, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_OutEntityHandle_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_GetMassEntityHandle_ReturnValue_2) == 0x00024C, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_GetMassEntityHandle_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_FindClosestBone_K2_BoneLocation) == 0x000250, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_FindClosestBone_K2_BoneLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_FindClosestBone_K2_ReturnValue) == 0x000268, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_FindClosestBone_K2_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_AreMassEntitiesSame_ReturnValue_1) == 0x000270, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_AreMassEntitiesSame_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000271, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000278, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_Bolt_C_UpdateMassAttachment, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000360, "Member 'BP_Throwable_Bolt_C_UpdateMassAttachment::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Throwable_Bolt_C \ +static_assert(alignof(ABP_Throwable_Bolt_C) == 0x000008, "Wrong alignment on ABP_Throwable_Bolt_C"); \ +static_assert(sizeof(ABP_Throwable_Bolt_C) == 0x0003A8, "Wrong size on ABP_Throwable_Bolt_C"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, UberGraphFrame_BP_Throwable_Bolt_C) == 0x000318, "Member 'ABP_Throwable_Bolt_C::UberGraphFrame_BP_Throwable_Bolt_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, AbilitySystem) == 0x000320, "Member 'ABP_Throwable_Bolt_C::AbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, PointLight) == 0x000328, "Member 'ABP_Throwable_Bolt_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, NS_Bullet_trail) == 0x000330, "Member 'ABP_Throwable_Bolt_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, Beepline_LightFlash_F63F40364359EE8DB38F43869A45FC13) == 0x000338, "Member 'ABP_Throwable_Bolt_C::Beepline_LightFlash_F63F40364359EE8DB38F43869A45FC13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, Beepline__Direction_F63F40364359EE8DB38F43869A45FC13) == 0x00033C, "Member 'ABP_Throwable_Bolt_C::Beepline__Direction_F63F40364359EE8DB38F43869A45FC13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, Beepline) == 0x000340, "Member 'ABP_Throwable_Bolt_C::Beepline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, Attached_To_Entity_Handle) == 0x000348, "Member 'ABP_Throwable_Bolt_C::Attached_To_Entity_Handle' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, Mass_Attach) == 0x000350, "Member 'ABP_Throwable_Bolt_C::Mass_Attach' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, GoreDecal) == 0x000358, "Member 'ABP_Throwable_Bolt_C::GoreDecal' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bolt_C, GoreVFX) == 0x000380, "Member 'ABP_Throwable_Bolt_C::GoreVFX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning \ +static_assert(alignof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning) == 0x000008, "Wrong alignment on WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning"); \ +static_assert(sizeof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning) == 0x000138, "Wrong size on WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, EntryPoint) == 0x000000, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, Temp_bool_Variable) == 0x000004, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, Temp_real_Variable) == 0x000008, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, Temp_real_Variable_1) == 0x00000C, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, K2Node_Select_Default) == 0x000010, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, K2Node_Event_MyGeometry) == 0x000014, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, K2Node_Event_InDeltaTime) == 0x00004C, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Conv_DoubleToVector2D_ReturnValue) == 0x000050, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Conv_DoubleToVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_PlayAnimation_ReturnValue) == 0x000068, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_IsValid_ReturnValue_1) == 0x000071, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Get_Warning_Angle_ReturnValue_Yaw) == 0x000074, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Get_Warning_Angle_ReturnValue_Yaw' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Get_Warning_Angle_ReturnValue_Yaw_1) == 0x000078, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Get_Warning_Angle_ReturnValue_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Abs_ReturnValue) == 0x000080, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_NormalizeToRange_ReturnValue) == 0x000088, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Get_Warning_Range_ReturnValue) == 0x000090, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Get_Warning_Range_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Lerp_ReturnValue) == 0x000098, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_MakeVector2D_ReturnValue) == 0x0000A0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000B0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, Temp_bool_Variable_1) == 0x0000C0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_GetPlayerController_ReturnValue) == 0x0000D0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_GetHud_ReturnValue) == 0x0000E0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_FClamp_ReturnValue) == 0x0000F0, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_LinearColorLerp_ReturnValue) == 0x0000F8, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_LinearColorLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, Temp_real_Variable_2) == 0x000108, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, K2Node_Select_Default_1) == 0x00010C, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Conv_DoubleToVector2D_InDouble_ImplicitCast) == 0x000110, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Conv_DoubleToVector2D_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000118, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Abs_A_ImplicitCast) == 0x000120, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, K2Node_Select_Option_0_ImplicitCast) == 0x000128, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_Delay_Duration_ImplicitCast) == 0x00012C, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning, CallFunc_LinearColorLerp_Alpha_ImplicitCast) == 0x000130, "Member 'WBP_AttackWarning_C_ExecuteUbergraph_WBP_AttackWarning::CallFunc_LinearColorLerp_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AttackWarning_C_Get_Warning_Angle \ +static_assert(alignof(WBP_AttackWarning_C_Get_Warning_Angle) == 0x000008, "Wrong alignment on WBP_AttackWarning_C_Get_Warning_Angle"); \ +static_assert(sizeof(WBP_AttackWarning_C_Get_Warning_Angle) == 0x0000B8, "Wrong size on WBP_AttackWarning_C_Get_Warning_Angle"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, ReturnValue_Yaw) == 0x000000, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::ReturnValue_Yaw' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000010, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000018, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000048, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000060, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000078, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000090, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_BreakRotator_Roll) == 0x0000A8, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_BreakRotator_Pitch) == 0x0000AC, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Angle, CallFunc_BreakRotator_Yaw) == 0x0000B0, "Member 'WBP_AttackWarning_C_Get_Warning_Angle::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AttackWarning_C_Get_Warning_Range \ +static_assert(alignof(WBP_AttackWarning_C_Get_Warning_Range) == 0x000008, "Wrong alignment on WBP_AttackWarning_C_Get_Warning_Range"); \ +static_assert(sizeof(WBP_AttackWarning_C_Get_Warning_Range) == 0x000058, "Wrong size on WBP_AttackWarning_C_Get_Warning_Range"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, ReturnValue) == 0x000000, "Member 'WBP_AttackWarning_C_Get_Warning_Range::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_Vector_Distance_ReturnValue) == 0x000040, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000048, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Get_Warning_Range, CallFunc_FClamp_ReturnValue) == 0x000050, "Member 'WBP_AttackWarning_C_Get_Warning_Range::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AttackWarning_C_Tick \ +static_assert(alignof(WBP_AttackWarning_C_Tick) == 0x000004, "Wrong alignment on WBP_AttackWarning_C_Tick"); \ +static_assert(sizeof(WBP_AttackWarning_C_Tick) == 0x00003C, "Wrong size on WBP_AttackWarning_C_Tick"); \ +static_assert(offsetof(WBP_AttackWarning_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_AttackWarning_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AttackWarning_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_AttackWarning_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AttackWarning_C \ +static_assert(alignof(UWBP_AttackWarning_C) == 0x000008, "Wrong alignment on UWBP_AttackWarning_C"); \ +static_assert(sizeof(UWBP_AttackWarning_C) == 0x000318, "Wrong size on UWBP_AttackWarning_C"); \ +static_assert(offsetof(UWBP_AttackWarning_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_AttackWarning_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, Flash) == 0x0002D0, "Member 'UWBP_AttackWarning_C::Flash' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, ArrowBase) == 0x0002D8, "Member 'UWBP_AttackWarning_C::ArrowBase' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, ArrowImage) == 0x0002E0, "Member 'UWBP_AttackWarning_C::ArrowImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, RotatorBox) == 0x0002E8, "Member 'UWBP_AttackWarning_C::RotatorBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, Enemy_Actor) == 0x0002F0, "Member 'UWBP_AttackWarning_C::Enemy_Actor' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, Range) == 0x0002F8, "Member 'UWBP_AttackWarning_C::Range' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, MaxDuration) == 0x000300, "Member 'UWBP_AttackWarning_C::MaxDuration' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, ActiveDuration) == 0x000308, "Member 'UWBP_AttackWarning_C::ActiveDuration' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AttackWarning_C, EnemyInvisible) == 0x000310, "Member 'UWBP_AttackWarning_C::EnemyInvisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD \ +static_assert(alignof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD) == 0x000008, "Wrong alignment on ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD"); \ +static_assert(sizeof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD) == 0x000048, "Wrong size on ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, EntryPoint) == 0x000000, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_Event_InAutomata) == 0x000008, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_Event_InState) == 0x000010, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, CallFunc_GetHud_ReturnValue) == 0x000018, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_DynamicCast_AsWrestler_HUDIn_Game) == 0x000020, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_DynamicCast_AsWrestler_HUDIn_Game' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, CallFunc_GetSlotWidget_ReturnValue) == 0x000030, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_DynamicCast_AsWBP_Player_HUD) == 0x000038, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_DynamicCast_AsWBP_Player_HUD' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'ShowHideConsumableHUD_C_ExecuteUbergraph_ShowHideConsumableHUD::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowHideConsumableHUD_C_ReceiveExecute \ +static_assert(alignof(ShowHideConsumableHUD_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowHideConsumableHUD_C_ReceiveExecute"); \ +static_assert(sizeof(ShowHideConsumableHUD_C_ReceiveExecute) == 0x000010, "Wrong size on ShowHideConsumableHUD_C_ReceiveExecute"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowHideConsumableHUD_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideConsumableHUD_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowHideConsumableHUD_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowHideConsumableHUD_C \ +static_assert(alignof(UShowHideConsumableHUD_C) == 0x000008, "Wrong alignment on UShowHideConsumableHUD_C"); \ +static_assert(sizeof(UShowHideConsumableHUD_C) == 0x000098, "Wrong size on UShowHideConsumableHUD_C"); \ +static_assert(offsetof(UShowHideConsumableHUD_C, UberGraphFrame) == 0x000088, "Member 'UShowHideConsumableHUD_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowHideConsumableHUD_C, bShowConsumables) == 0x000090, "Member 'UShowHideConsumableHUD_C::bShowConsumables' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPDA_Throwable_Data_C \ +static_assert(alignof(UPDA_Throwable_Data_C) == 0x000008, "Wrong alignment on UPDA_Throwable_Data_C"); \ +static_assert(sizeof(UPDA_Throwable_Data_C) == 0x000040, "Wrong size on UPDA_Throwable_Data_C"); \ +static_assert(offsetof(UPDA_Throwable_Data_C, Meshes) == 0x000030, "Member 'UPDA_Throwable_Data_C::Meshes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TA_Interaction_C_ExecuteUbergraph_TA_Interaction \ +static_assert(alignof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction) == 0x000008, "Wrong alignment on TA_Interaction_C_ExecuteUbergraph_TA_Interaction"); \ +static_assert(sizeof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction) == 0x0000A0, "Wrong size on TA_Interaction_C_ExecuteUbergraph_TA_Interaction"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, EntryPoint) == 0x000000, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_GetPlayerPawn_ReturnValue) == 0x000038, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000040, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, K2Node_CreateDelegate_OutputDelegate_3) == 0x000048, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000060, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000068, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000078, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000080, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_WaitGameplayTagAddToActor_ReturnValue_1) == 0x000088, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_WaitGameplayTagAddToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1) == 0x000090, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_IsValid_ReturnValue_2) == 0x000098, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TA_Interaction_C_ExecuteUbergraph_TA_Interaction, CallFunc_IsValid_ReturnValue_3) == 0x000099, "Member 'TA_Interaction_C_ExecuteUbergraph_TA_Interaction::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_Interaction_C \ +static_assert(alignof(ATA_Interaction_C) == 0x000010, "Wrong alignment on ATA_Interaction_C"); \ +static_assert(sizeof(ATA_Interaction_C) == 0x000530, "Wrong size on ATA_Interaction_C"); \ +static_assert(offsetof(ATA_Interaction_C, UberGraphFrame) == 0x000520, "Member 'ATA_Interaction_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ATA_Interaction_C, DefaultSceneRoot) == 0x000528, "Member 'ATA_Interaction_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector \ +static_assert(alignof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector) == 0x000008, "Wrong alignment on GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector"); \ +static_assert(sizeof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector) == 0x000068, "Wrong size on GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, EntryPoint) == 0x000000, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, Temp_bool_Variable) == 0x000010, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000011, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x000012, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, Temp_bool_Variable_1) == 0x000013, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000020, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000031, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000038, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000040, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000058, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000060, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector, CallFunc_TryActivateAbilityByClass_ReturnValue_2) == 0x000061, "Member 'GA_LightningSelector_C_ExecuteUbergraph_GA_LightningSelector::CallFunc_TryActivateAbilityByClass_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_LightningSelector_C \ +static_assert(alignof(UGA_LightningSelector_C) == 0x000008, "Wrong alignment on UGA_LightningSelector_C"); \ +static_assert(sizeof(UGA_LightningSelector_C) == 0x000670, "Wrong size on UGA_LightningSelector_C"); \ +static_assert(offsetof(UGA_LightningSelector_C, UberGraphFrame) == 0x000668, "Member 'UGA_LightningSelector_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0 \ +static_assert(alignof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0) == 0x000040, "Wrong size on GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0, OldLocation) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0, OldVelocity) == 0x000020, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0::OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0, CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast) == 0x000038, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_0::CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1 \ +static_assert(alignof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1) == 0x000040, "Wrong size on GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1, OldLocation) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1, OldVelocity) == 0x000020, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1::OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1, CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast) == 0x000038, "Member 'GA_PlayerMovement_Attach_C_CREATEDELEGATE_PROXYFUNCTION_1::CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach \ +static_assert(alignof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach) == 0x0008B8, "Wrong size on GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_4) == 0x000044, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_5) == 0x00006C, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_6) == 0x00007C, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_7) == 0x00008C, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x0000A0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_1) == 0x0000A8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000AC, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_2) == 0x000108, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_3) == 0x000109, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_RemoveCameraModifier_ReturnValue) == 0x00010A, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000110, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_DynamicCast_AsWrestler_Camera_Modifier) == 0x000118, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_DynamicCast_AsWrestler_Camera_Modifier' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_DynamicCast_bSuccess) == 0x000120, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CustomEvent_DeltaSeconds) == 0x000128, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CustomEvent_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CustomEvent_NewVelocity) == 0x000130, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CustomEvent_NewVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CustomEvent_OldVelocity) == 0x000148, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CustomEvent_OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000160, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_9) == 0x000168, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000178, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_10) == 0x000180, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CustomEvent_Delta_Seconds) == 0x000190, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CustomEvent_Delta_Seconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_Event_bWasCancelled) == 0x000198, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CustomEvent_Mantle) == 0x000199, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CustomEvent_Mantle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0001A0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue_1) == 0x0001A8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetControlRotation_ReturnValue) == 0x0001F0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000208, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetMovementComponent_Character_Movement) == 0x000220, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetMovementComponent_Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue_2) == 0x000228, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_11) == 0x000270, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000280, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000298, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_ReturnValue_2) == 0x0002B0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_4) == 0x0002B8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_5) == 0x0002B9, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0002C0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetFloatValue_ReturnValue) == 0x0002C8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue_3) == 0x0002D0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_VLerp_ReturnValue) == 0x000318, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000330, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetControlRotation_ReturnValue_1) == 0x000348, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_MoveUpdatedComponent_OutHit) == 0x000360, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_MoveUpdatedComponent_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_MoveUpdatedComponent_ReturnValue) == 0x000448, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_MoveUpdatedComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Roll) == 0x00044C, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Pitch) == 0x000450, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Yaw) == 0x000454, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_NormalizedDeltaRotator_ReturnValue) == 0x000458, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_NormalizedDeltaRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Roll_1) == 0x000470, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Pitch_1) == 0x000474, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Yaw_1) == 0x000478, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Abs_ReturnValue) == 0x000480, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue_4) == 0x000488, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MapRangeClamped_ReturnValue) == 0x0004D0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_ReturnValue_3) == 0x0004D8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x0004E0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_6) == 0x0004F8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000500, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000508, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetFloatValue_ReturnValue_1) == 0x000520, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetFloatValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAttachActor_NewParam) == 0x000528, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAttachActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_RLerp_ReturnValue) == 0x000530, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000548, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_NormalizedDeltaRotator_ReturnValue_1) == 0x000560, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_NormalizedDeltaRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000578, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Roll_2) == 0x000590, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Pitch_2) == 0x000594, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_BreakRotator_Yaw_2) == 0x000598, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0005A0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0005A8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0005B0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetMovementComponent_Character_Movement_1) == 0x0005B8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetMovementComponent_Character_Movement_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MakeRotator_ReturnValue) == 0x0005C0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_MoveUpdatedComponent_OutHit_1) == 0x0005D8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_MoveUpdatedComponent_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_MoveUpdatedComponent_ReturnValue_1) == 0x0006C0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_MoveUpdatedComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_CommitAbility_ReturnValue) == 0x0006C1, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_CommitAbilityCooldown_ReturnValue) == 0x0006C2, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_CommitAbilityCooldown_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAttachActor_NewParam_1) == 0x0006C8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAttachActor_NewParam_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0006D0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0006E8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_12) == 0x0006F0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetTraversalComponent_ReturnValue) == 0x000700, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsAttached_ReturnValue) == 0x000708, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000710, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetTraversalComponent_ReturnValue_1) == 0x000718, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetTraversalComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000720, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetTraversalComponent_ReturnValue_2) == 0x000728, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetTraversalComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetPassiveTargetData_ReturnValue) == 0x000730, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000758, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetSingleActorFromTargetData_OutPins) == 0x000760, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetSingleActorFromTargetData_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_K2_GetSingleActorFromTargetData_ReturnValue) == 0x000768, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_K2_GetSingleActorFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_AttachTo_ReturnValue) == 0x000770, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_AttachTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_SwitchEnum_CmpSuccess) == 0x000771, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetActorInfo_ReturnValue_5) == 0x000778, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_DynamicCast_AsWrestler_Character) == 0x0007C0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_DynamicCast_bSuccess_1) == 0x0007C8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_IsValid_ReturnValue_7) == 0x0007C9, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0007D0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0007D8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_MakeArray_Array) == 0x0007E0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetDialogueInfo_ReturnValue) == 0x0007F0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_MakeArray_Array_1) == 0x0007F8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, K2Node_CreateDelegate_OutputDelegate_13) == 0x000808, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000818, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000820, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000828, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000830, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_Duration_ImplicitCast) == 0x000838, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000840, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000848, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000850, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_A_ImplicitCast_1) == 0x000858, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_A_ImplicitCast_2) == 0x000860, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Abs_A_ImplicitCast) == 0x000868, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_WrestlerTaskTick_Duration_ImplicitCast_1) == 0x000870, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_WrestlerTaskTick_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Divide_DoubleDouble_A_ImplicitCast_1) == 0x000878, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Divide_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_GetFloatValue_InTime_ImplicitCast_1) == 0x000880, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_GetFloatValue_InTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000888, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x000890, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Add_DoubleDouble_B_ImplicitCast_2) == 0x000898, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Add_DoubleDouble_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0008A0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0008A4, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0008A8, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0008B0, "Member 'GA_PlayerMovement_Attach_C_ExecuteUbergraph_GA_PlayerMovement_Attach::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_ExitAttach \ +static_assert(alignof(GA_PlayerMovement_Attach_C_ExitAttach) == 0x000001, "Wrong alignment on GA_PlayerMovement_Attach_C_ExitAttach"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_ExitAttach) == 0x000001, "Wrong size on GA_PlayerMovement_Attach_C_ExitAttach"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_ExitAttach, Mantle) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_ExitAttach::Mantle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_HandleMovement \ +static_assert(alignof(GA_PlayerMovement_Attach_C_HandleMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_HandleMovement"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_HandleMovement) == 0x000008, "Wrong size on GA_PlayerMovement_Attach_C_HandleMovement"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_HandleMovement, Delta_Seconds) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_HandleMovement::Delta_Seconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Attach_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Attach_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Attach_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_OnMovementUpdated \ +static_assert(alignof(GA_PlayerMovement_Attach_C_OnMovementUpdated) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_OnMovementUpdated"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_OnMovementUpdated) == 0x000038, "Wrong size on GA_PlayerMovement_Attach_C_OnMovementUpdated"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_OnMovementUpdated, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_OnMovementUpdated::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_OnMovementUpdated, NewVelocity) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_OnMovementUpdated::NewVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_OnMovementUpdated, OldVelocity) == 0x000020, "Member 'GA_PlayerMovement_Attach_C_OnMovementUpdated::OldVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_GetAttachActor \ +static_assert(alignof(GA_PlayerMovement_Attach_C_GetAttachActor) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_GetAttachActor"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_GetAttachActor) == 0x000020, "Wrong size on GA_PlayerMovement_Attach_C_GetAttachActor"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetAttachActor, NewParam) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_GetAttachActor::NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetAttachActor, CallFunc_GetTraversalComponent_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_GetAttachActor::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetAttachActor, CallFunc_GetAttachActor_OutAttachActor) == 0x000010, "Member 'GA_PlayerMovement_Attach_C_GetAttachActor::CallFunc_GetAttachActor_OutAttachActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetAttachActor, CallFunc_GetAttachActor_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Attach_C_GetAttachActor::CallFunc_GetAttachActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_GetMovementComponent \ +static_assert(alignof(GA_PlayerMovement_Attach_C_GetMovementComponent) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_GetMovementComponent"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_GetMovementComponent) == 0x000010, "Wrong size on GA_PlayerMovement_Attach_C_GetMovementComponent"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetMovementComponent, Character_Movement) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_GetMovementComponent::Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetMovementComponent, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_GetMovementComponent::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Attach_C_GetTraversalComponent \ +static_assert(alignof(GA_PlayerMovement_Attach_C_GetTraversalComponent) == 0x000008, "Wrong alignment on GA_PlayerMovement_Attach_C_GetTraversalComponent"); \ +static_assert(sizeof(GA_PlayerMovement_Attach_C_GetTraversalComponent) == 0x000018, "Wrong size on GA_PlayerMovement_Attach_C_GetTraversalComponent"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetTraversalComponent, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Attach_C_GetTraversalComponent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetTraversalComponent, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Attach_C_GetTraversalComponent::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Attach_C_GetTraversalComponent, CallFunc_GetTraversalComponent_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Attach_C_GetTraversalComponent::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Attach_C \ +static_assert(alignof(UGA_PlayerMovement_Attach_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Attach_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Attach_C) == 0x000738, "Wrong size on UGA_PlayerMovement_Attach_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Attach_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, LastAttachActor) == 0x000670, "Member 'UGA_PlayerMovement_Attach_C::LastAttachActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, ActiveBinds) == 0x000678, "Member 'UGA_PlayerMovement_Attach_C::ActiveBinds' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, AttachStartTime) == 0x000680, "Member 'UGA_PlayerMovement_Attach_C::AttachStartTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, StartLocation) == 0x000688, "Member 'UGA_PlayerMovement_Attach_C::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, StartRotation) == 0x0006A0, "Member 'UGA_PlayerMovement_Attach_C::StartRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, TargetLocation) == 0x0006B8, "Member 'UGA_PlayerMovement_Attach_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, TargetRotation) == 0x0006D0, "Member 'UGA_PlayerMovement_Attach_C::TargetRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, LastRotation) == 0x0006E8, "Member 'UGA_PlayerMovement_Attach_C::LastRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, SnapRotCurve) == 0x000700, "Member 'UGA_PlayerMovement_Attach_C::SnapRotCurve' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, SnapLocDuration) == 0x000708, "Member 'UGA_PlayerMovement_Attach_C::SnapLocDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, SnapLocCurve) == 0x000710, "Member 'UGA_PlayerMovement_Attach_C::SnapLocCurve' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, CameraModifier) == 0x000718, "Member 'UGA_PlayerMovement_Attach_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, Modifier_Class) == 0x000720, "Member 'UGA_PlayerMovement_Attach_C::Modifier_Class' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, Attached) == 0x000728, "Member 'UGA_PlayerMovement_Attach_C::Attached' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Attach_C, AttachEndTime) == 0x000730, "Member 'UGA_PlayerMovement_Attach_C::AttachEndTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityFunctionLibrary_C_IsPlayerFabien \ +static_assert(alignof(AbilityFunctionLibrary_C_IsPlayerFabien) == 0x000008, "Wrong alignment on AbilityFunctionLibrary_C_IsPlayerFabien"); \ +static_assert(sizeof(AbilityFunctionLibrary_C_IsPlayerFabien) == 0x000030, "Wrong size on AbilityFunctionLibrary_C_IsPlayerFabien"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, __WorldContext) == 0x000000, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, Return) == 0x000008, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::Return' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, CallFunc_GetPlayerState_ReturnValue) == 0x000010, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000018, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, CallFunc_GetProperty_ReturnValue) == 0x000024, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayerFabien, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x00002C, "Member 'AbilityFunctionLibrary_C_IsPlayerFabien::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityFunctionLibrary_C_IsPlayersBloodPipsFull \ +static_assert(alignof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull) == 0x000008, "Wrong alignment on AbilityFunctionLibrary_C_IsPlayersBloodPipsFull"); \ +static_assert(sizeof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull) == 0x0000A0, "Wrong size on AbilityFunctionLibrary_C_IsPlayersBloodPipsFull"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, __WorldContext) == 0x000000, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, ReturnValue) == 0x000008, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000010, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000018, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue) == 0x00001C, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000020, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000024, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2) == 0x000028, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_2) == 0x00002C, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3) == 0x000030, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_3) == 0x000034, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000038, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_4) == 0x000039, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_4' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_4) == 0x00003C, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_5) == 0x000040, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_5' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_5) == 0x000044, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_6) == 0x000049, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_6' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_6) == 0x00004C, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_7) == 0x000050, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_7' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GetFloatAttribute_ReturnValue_7) == 0x000054, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GetFloatAttribute_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2) == 0x000058, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3) == 0x000059, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_BooleanAND_ReturnValue) == 0x00005A, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_BooleanAND_ReturnValue_1) == 0x00005B, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_BooleanAND_ReturnValue_2) == 0x00005C, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast) == 0x000068, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_1) == 0x000070, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_1) == 0x000078, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_2) == 0x000080, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_2) == 0x000088, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_3) == 0x000090, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_IsPlayersBloodPipsFull, CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_3) == 0x000098, "Member 'AbilityFunctionLibrary_C_IsPlayersBloodPipsFull::CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityFunctionLibrary_C_ToggleCharacterMovement \ +static_assert(alignof(AbilityFunctionLibrary_C_ToggleCharacterMovement) == 0x000008, "Wrong alignment on AbilityFunctionLibrary_C_ToggleCharacterMovement"); \ +static_assert(sizeof(AbilityFunctionLibrary_C_ToggleCharacterMovement) == 0x000020, "Wrong size on AbilityFunctionLibrary_C_ToggleCharacterMovement"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, InCharacter) == 0x000000, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, bIsEnabled) == 0x000008, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, __WorldContext) == 0x000010, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, Temp_bool_Variable) == 0x000018, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, Temp_byte_Variable) == 0x00001A, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, Temp_byte_Variable_1) == 0x00001B, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterMovement, K2Node_Select_Default) == 0x00001C, "Member 'AbilityFunctionLibrary_C_ToggleCharacterMovement::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AbilityFunctionLibrary_C_ToggleCharacterRotation \ +static_assert(alignof(AbilityFunctionLibrary_C_ToggleCharacterRotation) == 0x000008, "Wrong alignment on AbilityFunctionLibrary_C_ToggleCharacterRotation"); \ +static_assert(sizeof(AbilityFunctionLibrary_C_ToggleCharacterRotation) == 0x000020, "Wrong size on AbilityFunctionLibrary_C_ToggleCharacterRotation"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, InCharacter) == 0x000000, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::InCharacter' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, bIsEnabled) == 0x000008, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, InUseDesiredRotationCache) == 0x000009, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::InUseDesiredRotationCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, InUseRotationYawCache) == 0x00000A, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::InUseRotationYawCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, __WorldContext) == 0x000010, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, OutUseDesiredRotationCache) == 0x000018, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::OutUseDesiredRotationCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, OutUseRotationYawCache) == 0x000019, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::OutUseRotationYawCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, bUseRotationYawCache) == 0x00001A, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::bUseRotationYawCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, bUseDesiredRotationCache) == 0x00001B, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::bUseDesiredRotationCache' has a wrong offset!"); \ +static_assert(offsetof(AbilityFunctionLibrary_C_ToggleCharacterRotation, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'AbilityFunctionLibrary_C_ToggleCharacterRotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAbilityFunctionLibrary_C \ +static_assert(alignof(UAbilityFunctionLibrary_C) == 0x000008, "Wrong alignment on UAbilityFunctionLibrary_C"); \ +static_assert(sizeof(UAbilityFunctionLibrary_C) == 0x000028, "Wrong size on UAbilityFunctionLibrary_C"); \ + +#define DUMPER7_ASSERTS_UCommonButtonNoStyle_C \ +static_assert(alignof(UCommonButtonNoStyle_C) == 0x000010, "Wrong alignment on UCommonButtonNoStyle_C"); \ +static_assert(sizeof(UCommonButtonNoStyle_C) == 0x0007B0, "Wrong size on UCommonButtonNoStyle_C"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature \ +static_assert(alignof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature) == 0x000010, "Wrong size on BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature, WakingComponent) == 0x000000, "Member 'BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature::WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature \ +static_assert(alignof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature) == 0x000010, "Wrong size on BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature, SleepingComponent) == 0x000000, "Member 'BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature::SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_Throwable_C_BndEvt__BP_Throwable_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature \ +static_assert(alignof(BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature) == 0x000001, "Wrong alignment on BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature) == 0x000001, "Wrong size on BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature, IsPersistantLevel) == 0x000000, "Member 'BP_Throwable_C_BndEvt__BP_Throwable_WrestlerPropControlComponet_K2Node_ComponentBoundEvent_4_OnLevelChangedSignature__DelegateSignature::IsPersistantLevel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_CanInteract \ +static_assert(alignof(BP_Throwable_C_CanInteract) == 0x000001, "Wrong alignment on BP_Throwable_C_CanInteract"); \ +static_assert(sizeof(BP_Throwable_C_CanInteract) == 0x000001, "Wrong size on BP_Throwable_C_CanInteract"); \ +static_assert(offsetof(BP_Throwable_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_CanPull \ +static_assert(alignof(BP_Throwable_C_CanPull) == 0x000001, "Wrong alignment on BP_Throwable_C_CanPull"); \ +static_assert(sizeof(BP_Throwable_C_CanPull) == 0x000001, "Wrong size on BP_Throwable_C_CanPull"); \ +static_assert(offsetof(BP_Throwable_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_CheckIfNarrativeMode \ +static_assert(alignof(BP_Throwable_C_CheckIfNarrativeMode) == 0x000008, "Wrong alignment on BP_Throwable_C_CheckIfNarrativeMode"); \ +static_assert(sizeof(BP_Throwable_C_CheckIfNarrativeMode) == 0x000018, "Wrong size on BP_Throwable_C_CheckIfNarrativeMode"); \ +static_assert(offsetof(BP_Throwable_C_CheckIfNarrativeMode, InNarrativeMode) == 0x000000, "Member 'BP_Throwable_C_CheckIfNarrativeMode::InNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_CheckIfNarrativeMode, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000008, "Member 'BP_Throwable_C_CheckIfNarrativeMode::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_CheckIfNarrativeMode, CallFunc_GetNarrativeModeEnabled_ReturnValue) == 0x000010, "Member 'BP_Throwable_C_CheckIfNarrativeMode::CallFunc_GetNarrativeModeEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_CheckIfNarrativeMode, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'BP_Throwable_C_CheckIfNarrativeMode::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_ExecuteUbergraph_BP_Throwable \ +static_assert(alignof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable) == 0x000008, "Wrong alignment on BP_Throwable_C_ExecuteUbergraph_BP_Throwable"); \ +static_assert(sizeof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable) == 0x000220, "Wrong size on BP_Throwable_C_ExecuteUbergraph_BP_Throwable"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, EntryPoint) == 0x000000, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_CustomEvent_Loaded) == 0x000008, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_GetDisplayName_ReturnValue) == 0x000010, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, Temp_object_Variable) == 0x000020, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_InDuration_1) == 0x000028, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_InDuration) == 0x00002C, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_Origin) == 0x000030, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_Direction) == 0x000048, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_Strength) == 0x000060, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_Tag) == 0x000064, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000070, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000088, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_VSize_ReturnValue) == 0x0000A0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_IsSimulatingPhysics_ReturnValue) == 0x0000A9, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_IsSimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_GetCenterOfMass_ReturnValue) == 0x0000B0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000C8, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Add_VectorVector_ReturnValue) == 0x0000E0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_IsValid_ReturnValue) == 0x0000F8, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_RandomUnitVector_ReturnValue) == 0x000100, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000118, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Event_bInVisible) == 0x000130, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Array_Get_Item) == 0x000138, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_CreateDelegate_OutputDelegate) == 0x000160, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_IsEditor_ReturnValue) == 0x000170, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_IsEditor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_ComponentBoundEvent_WakingComponent) == 0x000178, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_ComponentBoundEvent_WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_ComponentBoundEvent_BoneName_1) == 0x000180, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_ComponentBoundEvent_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_ComponentBoundEvent_SleepingComponent) == 0x000188, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_ComponentBoundEvent_SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_ComponentBoundEvent_BoneName) == 0x000190, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_ComponentBoundEvent_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_ComponentBoundEvent_IsPersistantLevel) == 0x000198, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_ComponentBoundEvent_IsPersistantLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_IsPlayerFabien_Return) == 0x000199, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_CheckIfNarrativeMode_InNarrativeMode) == 0x00019A, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_CheckIfNarrativeMode_InNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_CheckIfNarrativeMode_InNarrativeMode_1) == 0x00019B, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_CheckIfNarrativeMode_InNarrativeMode_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Array_IsValidIndex_ReturnValue) == 0x00019C, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Array_IsValidIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, Temp_bool_Variable) == 0x00019D, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, K2Node_Select_Default) == 0x0001A0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001B8, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Conv_IntToString_ReturnValue) == 0x0001D0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Concat_StrStr_ReturnValue) == 0x0001E0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0001F0, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000200, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000210, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_ExecuteUbergraph_BP_Throwable, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x000218, "Member 'BP_Throwable_C_ExecuteUbergraph_BP_Throwable::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetAudioComponent \ +static_assert(alignof(BP_Throwable_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_Throwable_C_GetAudioComponent"); \ +static_assert(sizeof(BP_Throwable_C_GetAudioComponent) == 0x000008, "Wrong size on BP_Throwable_C_GetAudioComponent"); \ +static_assert(offsetof(BP_Throwable_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_Throwable_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetClueDataAsset \ +static_assert(alignof(BP_Throwable_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_Throwable_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_Throwable_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_Throwable_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_Throwable_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetCurrentAmmo \ +static_assert(alignof(BP_Throwable_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_Throwable_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_Throwable_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_Throwable_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_Throwable_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetDataAsset \ +static_assert(alignof(BP_Throwable_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Throwable_C_GetDataAsset"); \ +static_assert(sizeof(BP_Throwable_C_GetDataAsset) == 0x000008, "Wrong size on BP_Throwable_C_GetDataAsset"); \ +static_assert(offsetof(BP_Throwable_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetHandleLocation \ +static_assert(alignof(BP_Throwable_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_Throwable_C_GetHandleLocation"); \ +static_assert(sizeof(BP_Throwable_C_GetHandleLocation) == 0x000018, "Wrong size on BP_Throwable_C_GetHandleLocation"); \ +static_assert(offsetof(BP_Throwable_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetInteractAnimation \ +static_assert(alignof(BP_Throwable_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_Throwable_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_Throwable_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_Throwable_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_Throwable_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetInteractObjective \ +static_assert(alignof(BP_Throwable_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_Throwable_C_GetInteractObjective"); \ +static_assert(sizeof(BP_Throwable_C_GetInteractObjective) == 0x000008, "Wrong size on BP_Throwable_C_GetInteractObjective"); \ +static_assert(offsetof(BP_Throwable_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetMeshComponent \ +static_assert(alignof(BP_Throwable_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Throwable_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Throwable_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Throwable_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Throwable_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetPointAxis \ +static_assert(alignof(BP_Throwable_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_Throwable_C_GetPointAxis"); \ +static_assert(sizeof(BP_Throwable_C_GetPointAxis) == 0x000030, "Wrong size on BP_Throwable_C_GetPointAxis"); \ +static_assert(offsetof(BP_Throwable_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetScoreBias \ +static_assert(alignof(BP_Throwable_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_Throwable_C_GetScoreBias"); \ +static_assert(sizeof(BP_Throwable_C_GetScoreBias) == 0x000004, "Wrong size on BP_Throwable_C_GetScoreBias"); \ +static_assert(offsetof(BP_Throwable_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetThrowableComponent \ +static_assert(alignof(BP_Throwable_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_Throwable_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_Throwable_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_Throwable_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_Throwable_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetThrowableOrientation \ +static_assert(alignof(BP_Throwable_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_Throwable_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_Throwable_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_Throwable_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_Throwable_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_Throwable_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_Throwable_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetThrowableType \ +static_assert(alignof(BP_Throwable_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_Throwable_C_GetThrowableType"); \ +static_assert(sizeof(BP_Throwable_C_GetThrowableType) == 0x000001, "Wrong size on BP_Throwable_C_GetThrowableType"); \ +static_assert(offsetof(BP_Throwable_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_IsExplosive \ +static_assert(alignof(BP_Throwable_C_IsExplosive) == 0x000001, "Wrong alignment on BP_Throwable_C_IsExplosive"); \ +static_assert(sizeof(BP_Throwable_C_IsExplosive) == 0x000001, "Wrong size on BP_Throwable_C_IsExplosive"); \ +static_assert(offsetof(BP_Throwable_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_IsPointed \ +static_assert(alignof(BP_Throwable_C_IsPointed) == 0x000001, "Wrong alignment on BP_Throwable_C_IsPointed"); \ +static_assert(sizeof(BP_Throwable_C_IsPointed) == 0x000001, "Wrong size on BP_Throwable_C_IsPointed"); \ +static_assert(offsetof(BP_Throwable_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_IsThrowable \ +static_assert(alignof(BP_Throwable_C_IsThrowable) == 0x000001, "Wrong alignment on BP_Throwable_C_IsThrowable"); \ +static_assert(sizeof(BP_Throwable_C_IsThrowable) == 0x000001, "Wrong size on BP_Throwable_C_IsThrowable"); \ +static_assert(offsetof(BP_Throwable_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_MovableInteract \ +static_assert(alignof(BP_Throwable_C_MovableInteract) == 0x000008, "Wrong alignment on BP_Throwable_C_MovableInteract"); \ +static_assert(sizeof(BP_Throwable_C_MovableInteract) == 0x000040, "Wrong size on BP_Throwable_C_MovableInteract"); \ +static_assert(offsetof(BP_Throwable_C_MovableInteract, Origin) == 0x000000, "Member 'BP_Throwable_C_MovableInteract::Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_MovableInteract, Direction) == 0x000018, "Member 'BP_Throwable_C_MovableInteract::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_MovableInteract, Strength) == 0x000030, "Member 'BP_Throwable_C_MovableInteract::Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_MovableInteract, Tag) == 0x000034, "Member 'BP_Throwable_C_MovableInteract::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6 \ +static_assert(alignof(BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6) == 0x000008, "Wrong alignment on BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6"); \ +static_assert(sizeof(BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6) == 0x000008, "Wrong size on BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6"); \ +static_assert(offsetof(BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6, Loaded) == 0x000000, "Member 'BP_Throwable_C_OnLoaded_743B11524582B1FF5463D886ABEEBEF6::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_PrepareMesh \ +static_assert(alignof(BP_Throwable_C_PrepareMesh) == 0x000008, "Wrong alignment on BP_Throwable_C_PrepareMesh"); \ +static_assert(sizeof(BP_Throwable_C_PrepareMesh) == 0x000030, "Wrong size on BP_Throwable_C_PrepareMesh"); \ +static_assert(offsetof(BP_Throwable_C_PrepareMesh, Object) == 0x000000, "Member 'BP_Throwable_C_PrepareMesh::Object' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_PrepareMesh, K2Node_DynamicCast_AsStatic_Mesh) == 0x000008, "Member 'BP_Throwable_C_PrepareMesh::K2Node_DynamicCast_AsStatic_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_PrepareMesh, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'BP_Throwable_C_PrepareMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_PrepareMesh, CallFunc_GetDisplayName_ReturnValue) == 0x000018, "Member 'BP_Throwable_C_PrepareMesh::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_PrepareMesh, CallFunc_SetStaticMesh_ReturnValue) == 0x000028, "Member 'BP_Throwable_C_PrepareMesh::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_SetVisionVisibility \ +static_assert(alignof(BP_Throwable_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_Throwable_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_Throwable_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_Throwable_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_Throwable_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_Throwable_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_UserConstructionScript \ +static_assert(alignof(BP_Throwable_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Throwable_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Throwable_C_UserConstructionScript) == 0x0000B8, "Wrong size on BP_Throwable_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Conv_IntToString_ReturnValue) == 0x000008, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue) == 0x000018, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000028, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Array_IsValidIndex_ReturnValue) == 0x000038, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Array_IsValidIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_IsPlayerFabien_Return) == 0x000039, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000040, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_RandomFloatInRange_ReturnValue) == 0x000048, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x000050, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_GetDisplayName_ReturnValue) == 0x000058, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_IsEditor_ReturnValue) == 0x000068, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_IsEditor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000070, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_Array_Get_Item) == 0x000080, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000A8, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Throwable_C_UserConstructionScript, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0000B0, "Member 'BP_Throwable_C_UserConstructionScript::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_VisionFadeInBegin \ +static_assert(alignof(BP_Throwable_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_Throwable_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_Throwable_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_Throwable_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_Throwable_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_Throwable_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_VisionFadeOutBegin \ +static_assert(alignof(BP_Throwable_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_Throwable_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_Throwable_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_Throwable_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_Throwable_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_Throwable_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_Throwable_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_Throwable_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_Throwable_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_Throwable_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_Throwable_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_C_GetTargetType \ +static_assert(alignof(BP_Throwable_C_GetTargetType) == 0x000001, "Wrong alignment on BP_Throwable_C_GetTargetType"); \ +static_assert(sizeof(BP_Throwable_C_GetTargetType) == 0x000001, "Wrong size on BP_Throwable_C_GetTargetType"); \ +static_assert(offsetof(BP_Throwable_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_Throwable_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Throwable_C \ +static_assert(alignof(ABP_Throwable_C) == 0x000008, "Wrong alignment on ABP_Throwable_C"); \ +static_assert(sizeof(ABP_Throwable_C) == 0x000318, "Wrong size on ABP_Throwable_C"); \ +static_assert(offsetof(ABP_Throwable_C, UberGraphFrame) == 0x0002A8, "Member 'ABP_Throwable_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, WrestlerPropControlComponet) == 0x0002B0, "Member 'ABP_Throwable_C::WrestlerPropControlComponet' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, HeraAudio) == 0x0002B8, "Member 'ABP_Throwable_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, ThrowableType) == 0x0002C0, "Member 'ABP_Throwable_C::ThrowableType' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, Props) == 0x0002C8, "Member 'ABP_Throwable_C::Props' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, MeshIndex) == 0x0002D8, "Member 'ABP_Throwable_C::MeshIndex' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, SelectedPropName) == 0x0002E0, "Member 'ABP_Throwable_C::SelectedPropName' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, HeightenedSenses_Material) == 0x0002F0, "Member 'ABP_Throwable_C::HeightenedSenses_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, PropsData) == 0x0002F8, "Member 'ABP_Throwable_C::PropsData' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, ThrowableTypeSwitch) == 0x000300, "Member 'ABP_Throwable_C::ThrowableTypeSwitch' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, ShowPurpleInHS) == 0x000308, "Member 'ABP_Throwable_C::ShowPurpleInHS' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, PlayerInteracted) == 0x000309, "Member 'ABP_Throwable_C::PlayerInteracted' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, HideOnStreaming) == 0x00030A, "Member 'ABP_Throwable_C::HideOnStreaming' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, Despawn) == 0x00030B, "Member 'ABP_Throwable_C::Despawn' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, InNarrative) == 0x00030C, "Member 'ABP_Throwable_C::InNarrative' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, StencilValue) == 0x000310, "Member 'ABP_Throwable_C::StencilValue' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_C, CustomDepthEnabled) == 0x000314, "Member 'ABP_Throwable_C::CustomDepthEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_Traversal_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_Traversal_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_Traversal_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_Traversal_C_OnCharacterAudioNotify) == 0x000648, "Wrong size on AN_Audio_Traversal_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, SocketName_0) == 0x000018, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::SocketName_0' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, HeraAudio) == 0x000020, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, AkComp) == 0x000028, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::AkComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_byte_Variable) == 0x000030, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable) == 0x000038, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_1) == 0x000040, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_2) == 0x000048, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_3) == 0x000050, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_4) == 0x000058, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_5) == 0x000060, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_6) == 0x000068, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_7) == 0x000070, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_8) == 0x000078, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_9) == 0x000080, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_10) == 0x000088, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_11) == 0x000090, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_12) == 0x000098, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_13) == 0x0000A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_14) == 0x0000A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_15) == 0x0000B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_16) == 0x0000B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_17) == 0x0000C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_18) == 0x0000C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_19) == 0x0000D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_20) == 0x0000D8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_20' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_21) == 0x0000E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_21' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_22) == 0x0000E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_22' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_23) == 0x0000F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_23' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_24) == 0x0000F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_24' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_25) == 0x000100, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_25' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_26) == 0x000108, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_26' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_27) == 0x000110, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_27' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_28) == 0x000118, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_28' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_29) == 0x000120, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_29' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_30) == 0x000128, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_30' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_31) == 0x000130, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_31' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_32) == 0x000138, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_32' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_33) == 0x000140, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_33' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_34) == 0x000148, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_34' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_35) == 0x000150, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_35' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_36) == 0x000158, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_36' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_37) == 0x000160, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_37' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_38) == 0x000168, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_38' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_39) == 0x000170, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_39' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_40) == 0x000178, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_40' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_41) == 0x000180, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_41' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_42) == 0x000188, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_42' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_43) == 0x000190, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_43' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_44) == 0x000198, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_44' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_45) == 0x0001A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_45' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_46) == 0x0001A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_46' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_47) == 0x0001B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_47' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_48) == 0x0001B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_48' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_49) == 0x0001C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_49' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_50) == 0x0001C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_50' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_51) == 0x0001D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_51' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_52) == 0x0001D8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_52' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_53) == 0x0001E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_53' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_54) == 0x0001E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_54' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_55) == 0x0001F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_55' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_56) == 0x0001F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_56' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_57) == 0x000200, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_57' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_58) == 0x000208, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_58' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_byte_Variable_1) == 0x000210, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_59) == 0x000218, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_59' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_60) == 0x000220, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_60' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_61) == 0x000228, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_61' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_62) == 0x000230, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_62' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_63) == 0x000238, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_63' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_64) == 0x000240, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_64' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_65) == 0x000248, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_65' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_66) == 0x000250, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_66' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_67) == 0x000258, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_67' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_68) == 0x000260, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_68' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_69) == 0x000268, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_69' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_70) == 0x000270, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_70' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_71) == 0x000278, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_71' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_72) == 0x000280, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_72' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_73) == 0x000288, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_73' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_74) == 0x000290, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_74' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_75) == 0x000298, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_75' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_76) == 0x0002A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_76' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_77) == 0x0002A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_77' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_78) == 0x0002B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_78' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_79) == 0x0002B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_79' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_80) == 0x0002C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_80' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_81) == 0x0002C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_81' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_82) == 0x0002D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_82' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_83) == 0x0002D8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_83' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_84) == 0x0002E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_84' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_85) == 0x0002E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_85' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_86) == 0x0002F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_86' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_87) == 0x0002F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_87' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_88) == 0x000300, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_88' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_89) == 0x000308, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_89' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_90) == 0x000310, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_90' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_91) == 0x000318, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_91' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_92) == 0x000320, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_92' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_93) == 0x000328, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_93' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_94) == 0x000330, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_94' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_95) == 0x000338, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_95' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_96) == 0x000340, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_96' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_97) == 0x000348, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_97' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_98) == 0x000350, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_98' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_99) == 0x000358, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_99' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_100) == 0x000360, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_100' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_101) == 0x000368, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_101' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_102) == 0x000370, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_102' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_103) == 0x000378, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_103' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_104) == 0x000380, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_104' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_105) == 0x000388, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_105' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_106) == 0x000390, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_106' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_107) == 0x000398, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_107' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_108) == 0x0003A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_108' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_109) == 0x0003A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_109' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_110) == 0x0003B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_110' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_111) == 0x0003B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_111' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_112) == 0x0003C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_112' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_113) == 0x0003C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_113' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_114) == 0x0003D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_114' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_115) == 0x0003D8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_115' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_116) == 0x0003E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_116' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_117) == 0x0003E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_117' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_byte_Variable_2) == 0x0003F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_118) == 0x0003F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_118' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_119) == 0x000400, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_119' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_120) == 0x000408, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_120' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_121) == 0x000410, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_121' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_122) == 0x000418, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_122' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_123) == 0x000420, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_123' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_124) == 0x000428, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_124' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_125) == 0x000430, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_125' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_126) == 0x000438, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_126' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_127) == 0x000440, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_127' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_128) == 0x000448, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_128' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_129) == 0x000450, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_129' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_130) == 0x000458, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_130' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_131) == 0x000460, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_131' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_132) == 0x000468, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_132' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_133) == 0x000470, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_133' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_134) == 0x000478, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_134' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_135) == 0x000480, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_135' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_136) == 0x000488, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_136' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_137) == 0x000490, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_137' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_138) == 0x000498, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_138' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_139) == 0x0004A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_139' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_140) == 0x0004A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_140' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_141) == 0x0004B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_141' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_142) == 0x0004B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_142' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_143) == 0x0004C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_143' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_144) == 0x0004C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_144' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_145) == 0x0004D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_145' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_146) == 0x0004D8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_146' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_147) == 0x0004E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_147' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_148) == 0x0004E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_148' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_149) == 0x0004F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_149' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_150) == 0x0004F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_150' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_151) == 0x000500, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_151' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_152) == 0x000508, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_152' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_153) == 0x000510, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_153' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_154) == 0x000518, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_154' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_155) == 0x000520, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_155' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_156) == 0x000528, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_156' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_157) == 0x000530, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_157' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_158) == 0x000538, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_158' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_159) == 0x000540, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_159' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_160) == 0x000548, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_160' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_161) == 0x000550, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_161' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_162) == 0x000558, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_162' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_163) == 0x000560, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_163' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_164) == 0x000568, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_164' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_165) == 0x000570, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_165' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_166) == 0x000578, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_166' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_167) == 0x000580, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_167' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_168) == 0x000588, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_168' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_169) == 0x000590, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_169' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_170) == 0x000598, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_170' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_171) == 0x0005A0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_171' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_172) == 0x0005A8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_172' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_173) == 0x0005B0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_173' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_174) == 0x0005B8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_174' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_175) == 0x0005C0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_175' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_object_Variable_176) == 0x0005C8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_object_Variable_176' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, Temp_delegate_Variable) == 0x0005D0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue) == 0x0005E0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x0005E8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_DynamicCast_bSuccess) == 0x0005F0, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetTraversalComponent_ReturnValue) == 0x0005F8, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_OutExecBranches) == 0x000600, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_ReturnValue) == 0x000608, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetMantleSurface_ReturnValue) == 0x000610, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetMantleSurface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess) == 0x000611, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_Select_Default) == 0x000618, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetVaultSurface_ReturnValue) == 0x000620, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetVaultSurface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_IsValid_ReturnValue) == 0x000621, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_Select_Default_1) == 0x000628, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_IsValid_ReturnValue_1) == 0x000630, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_GetWallClimbSurface_ReturnValue) == 0x000631, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_GetWallClimbSurface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, K2Node_Select_Default_2) == 0x000638, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_Traversal_C_OnCharacterAudioNotify, CallFunc_IsValid_ReturnValue_2) == 0x000640, "Member 'AN_Audio_Traversal_C_OnCharacterAudioNotify::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_Traversal_C \ +static_assert(alignof(UAN_Audio_Traversal_C) == 0x000008, "Wrong alignment on UAN_Audio_Traversal_C"); \ +static_assert(sizeof(UAN_Audio_Traversal_C) == 0x000068, "Wrong size on UAN_Audio_Traversal_C"); \ +static_assert(offsetof(UAN_Audio_Traversal_C, AudioHands) == 0x000050, "Member 'UAN_Audio_Traversal_C::AudioHands' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_Traversal_C, StopEvent) == 0x000060, "Member 'UAN_Audio_Traversal_C::StopEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge \ +static_assert(alignof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge) == 0x000008, "Wrong alignment on BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge"); \ +static_assert(sizeof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge) == 0x0000A0, "Wrong size on BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, EntryPoint) == 0x000000, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, K2Node_Event_bInVisible) == 0x000005, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, K2Node_Event_InDuration_1) == 0x000008, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, K2Node_Event_InDuration) == 0x00000C, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000010, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000028, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000040, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_RandomFloatInRange_ReturnValue) == 0x000058, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000078, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_Divide_VectorVector_ReturnValue) == 0x000080, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000098, "Member 'BP_BoostLedge_C_ExecuteUbergraph_BP_BoostLedge::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_GetClueDataAsset \ +static_assert(alignof(BP_BoostLedge_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_BoostLedge_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_BoostLedge_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_BoostLedge_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_BoostLedge_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_BoostLedge_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_BoostLedge_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_GetMeshComponent \ +static_assert(alignof(BP_BoostLedge_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_BoostLedge_C_GetMeshComponent"); \ +static_assert(sizeof(BP_BoostLedge_C_GetMeshComponent) == 0x000008, "Wrong size on BP_BoostLedge_C_GetMeshComponent"); \ +static_assert(offsetof(BP_BoostLedge_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_BoostLedge_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_SetVisionVisibility \ +static_assert(alignof(BP_BoostLedge_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_BoostLedge_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_BoostLedge_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_BoostLedge_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_BoostLedge_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_BoostLedge_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_SnapAboveFloor \ +static_assert(alignof(BP_BoostLedge_C_SnapAboveFloor) == 0x000008, "Wrong alignment on BP_BoostLedge_C_SnapAboveFloor"); \ +static_assert(sizeof(BP_BoostLedge_C_SnapAboveFloor) == 0x000420, "Wrong size on BP_BoostLedge_C_SnapAboveFloor"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, Temp_object_Variable) == 0x000000, "Member 'BP_BoostLedge_C_SnapAboveFloor::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Vector_Up_ReturnValue) == 0x000028, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000040, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000058, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000070, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_GetActorForwardVector_ReturnValue) == 0x000088, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000A0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000B8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_X) == 0x0000D0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_Y) == 0x0000D8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_Z) == 0x0000E0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue) == 0x0000E8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000100, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000118, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_CapsuleTraceSingle_OutHit) == 0x000130, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000218, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_bBlockingHit) == 0x000219, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_bInitialOverlap) == 0x00021A, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_Time) == 0x00021C, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_Distance) == 0x000220, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_Location) == 0x000228, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_ImpactPoint) == 0x000240, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_Normal) == 0x000258, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_ImpactNormal) == 0x000270, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_PhysMat) == 0x000288, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_HitActor) == 0x000290, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_HitComponent) == 0x000298, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_HitBoneName) == 0x0002A0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_BoneName) == 0x0002A8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_HitItem) == 0x0002B0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_ElementIndex) == 0x0002B4, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_FaceIndex) == 0x0002B8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_TraceStart) == 0x0002C0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakHitResult_TraceEnd) == 0x0002D8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_X_1) == 0x0002F0, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_Y_1) == 0x0002F8, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_BreakVector_Z_1) == 0x000300, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000308, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000310, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_MakeVector_ReturnValue) == 0x000318, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000330, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_SnapAboveFloor, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000418, "Member 'BP_BoostLedge_C_SnapAboveFloor::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection \ +static_assert(alignof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection) == 0x000008, "Wrong alignment on BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection"); \ +static_assert(sizeof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection) == 0x000058, "Wrong size on BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection"); \ +static_assert(offsetof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection, Character) == 0x000000, "Member 'BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection, Result) == 0x000008, "Member 'BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection::Result' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection, Location) == 0x000010, "Member 'BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection::Location' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection, Direction) == 0x000028, "Member 'BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection, LocalPawnLocation) == 0x000040, "Member 'BP_BoostLedge_C_TryGetCustomLedgeGrabLocationAndDirection::LocalPawnLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_UserConstructionScript \ +static_assert(alignof(BP_BoostLedge_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_BoostLedge_C_UserConstructionScript"); \ +static_assert(sizeof(BP_BoostLedge_C_UserConstructionScript) == 0x000068, "Wrong size on BP_BoostLedge_C_UserConstructionScript"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000008, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_BreakVector_X) == 0x000020, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_BreakVector_Y) == 0x000028, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_BreakVector_Z) == 0x000030, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_RandomFloatInRange_ReturnValue) == 0x000048, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_SetArrowLength_NewLength_ImplicitCast) == 0x000050, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_SetArrowLength_NewLength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_SetArrowLength_NewLength_ImplicitCast_1) == 0x000054, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_SetArrowLength_NewLength_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_SetArrowLength_NewLength_ImplicitCast_2) == 0x000058, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_SetArrowLength_NewLength_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_SetArrowLength_NewLength_ImplicitCast_3) == 0x00005C, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_SetArrowLength_NewLength_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_UserConstructionScript, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000060, "Member 'BP_BoostLedge_C_UserConstructionScript::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_VisionFadeInBegin \ +static_assert(alignof(BP_BoostLedge_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_BoostLedge_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_BoostLedge_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_BoostLedge_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_BoostLedge_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_BoostLedge_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_VisionFadeOutBegin \ +static_assert(alignof(BP_BoostLedge_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_BoostLedge_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_BoostLedge_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_BoostLedge_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_BoostLedge_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_BoostLedge_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_CanLedgeGrab \ +static_assert(alignof(BP_BoostLedge_C_CanLedgeGrab) == 0x000008, "Wrong alignment on BP_BoostLedge_C_CanLedgeGrab"); \ +static_assert(sizeof(BP_BoostLedge_C_CanLedgeGrab) == 0x000010, "Wrong size on BP_BoostLedge_C_CanLedgeGrab"); \ +static_assert(offsetof(BP_BoostLedge_C_CanLedgeGrab, Character) == 0x000000, "Member 'BP_BoostLedge_C_CanLedgeGrab::Character' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_CanLedgeGrab, Result) == 0x000008, "Member 'BP_BoostLedge_C_CanLedgeGrab::Result' has a wrong offset!"); \ +static_assert(offsetof(BP_BoostLedge_C_CanLedgeGrab, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'BP_BoostLedge_C_CanLedgeGrab::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BoostLedge_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_BoostLedge_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_BoostLedge_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_BoostLedge_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_BoostLedge_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_BoostLedge_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_BoostLedge_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BoostLedge_C \ +static_assert(alignof(ABP_BoostLedge_C) == 0x000010, "Wrong alignment on ABP_BoostLedge_C"); \ +static_assert(sizeof(ABP_BoostLedge_C) == 0x0003A0, "Wrong size on ABP_BoostLedge_C"); \ +static_assert(offsetof(ABP_BoostLedge_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_BoostLedge_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, WrestlerHeightenedSensesClue) == 0x0002A8, "Member 'ABP_BoostLedge_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, ForwardArrow) == 0x0002B0, "Member 'ABP_BoostLedge_C::ForwardArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, UpArrow) == 0x0002B8, "Member 'ABP_BoostLedge_C::UpArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, DownArrow) == 0x0002C0, "Member 'ABP_BoostLedge_C::DownArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, Scene) == 0x0002C8, "Member 'ABP_BoostLedge_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, DebugArrows) == 0x0002D0, "Member 'ABP_BoostLedge_C::DebugArrows' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, Collision) == 0x0002D8, "Member 'ABP_BoostLedge_C::Collision' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, DebugCube) == 0x0002E0, "Member 'ABP_BoostLedge_C::DebugCube' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, Root) == 0x0002E8, "Member 'ABP_BoostLedge_C::Root' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, BackwardArrow) == 0x0002F0, "Member 'ABP_BoostLedge_C::BackwardArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, LeftArrow) == 0x0002F8, "Member 'ABP_BoostLedge_C::LeftArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, RightArrow) == 0x000300, "Member 'ABP_BoostLedge_C::RightArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, BoostMultiplier) == 0x000308, "Member 'ABP_BoostLedge_C::BoostMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, HangAllSides) == 0x000310, "Member 'ABP_BoostLedge_C::HangAllSides' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, TempTransform) == 0x000320, "Member 'ABP_BoostLedge_C::TempTransform' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, OverrideHangLocation) == 0x000380, "Member 'ABP_BoostLedge_C::OverrideHangLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, HeightenedSenses_Material) == 0x000388, "Member 'ABP_BoostLedge_C::HeightenedSenses_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, XOffset) == 0x000390, "Member 'ABP_BoostLedge_C::XOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_BoostLedge_C, ZOffset) == 0x000398, "Member 'ABP_BoostLedge_C::ZOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood \ +static_assert(alignof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood) == 0x000010, "Wrong alignment on GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood"); \ +static_assert(sizeof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood) == 0x000430, "Wrong size on GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, EntryPoint) == 0x000000, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, Temp_bool_Variable) == 0x000020, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, Temp_int_Variable) == 0x000024, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, Temp_delegate_Variable) == 0x000028, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_CreateDelegate_OutputDelegate) == 0x000038, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_ActorTimeDelay_ReturnValue) == 0x000048, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_CreateDelegate_OutputDelegate_1) == 0x000050, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000068, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_ActorTimeDelay_ReturnValue_2) == 0x000078, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_ActorTimeDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_IsValid_ReturnValue_2) == 0x000080, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, Temp_int_Variable_1) == 0x000084, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, Temp_bool_Variable_1) == 0x000088, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Not_PreBool_ReturnValue) == 0x000089, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000090, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000098, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_MakeStruct_ApplyDamageParams) == 0x0000A0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000C8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0000E0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000E8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetTransform_ReturnValue) == 0x000100, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetAudioCharacterComponent_self_CastInput) == 0x000160, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetAudioCharacterComponent_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000170, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_BreakTransform_Location) == 0x000178, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_BreakTransform_Rotation) == 0x000190, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_BreakTransform_Scale) == 0x0001A8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Add_VectorVector_ReturnValue) == 0x0001C0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x0001D8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetFloatAttribute_ReturnValue) == 0x0001DC, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0001F8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_MakeTransform_ReturnValue) == 0x000200, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000260, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000268, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_FinishSpawningActor_ReturnValue) == 0x000270, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000278, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000280, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_MakeStruct_GameplayEventData) == 0x000290, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000340, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Add_IntInt_ReturnValue) == 0x000344, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_Select_Default) == 0x000348, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00034C, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000350, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000358, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000360, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x000370, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x000378, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x000388, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Conv_BoolToDouble_ReturnValue_2) == 0x000390, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Conv_BoolToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_CreateDelegate_OutputDelegate_2) == 0x000398, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x0003A8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_EqualEqual_IntInt_ReturnValue_3) == 0x0003B8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_EqualEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003BC, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_Conv_BoolToDouble_ReturnValue_3) == 0x0003D0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_Conv_BoolToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3) == 0x0003D8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x0003E8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_MapRangeClamped_ReturnValue) == 0x0003F0, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_ActorTimeDelay_ReturnValue_3) == 0x0003F8, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_ActorTimeDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_IsValid_ReturnValue_3) == 0x000400, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000408, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000410, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x000418, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1) == 0x00041C, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2) == 0x000420, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3) == 0x000424, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x000428, "Member 'GA_BoilingBlood_C_ExecuteUbergraph_GA_BoilingBlood::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_BoilingBlood_C \ +static_assert(alignof(UGA_BoilingBlood_C) == 0x000008, "Wrong alignment on UGA_BoilingBlood_C"); \ +static_assert(sizeof(UGA_BoilingBlood_C) == 0x000690, "Wrong size on UGA_BoilingBlood_C"); \ +static_assert(offsetof(UGA_BoilingBlood_C, UberGraphFrame) == 0x000668, "Member 'UGA_BoilingBlood_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_BoilingBlood_C, DamageSource) == 0x000670, "Member 'UGA_BoilingBlood_C::DamageSource' has a wrong offset!"); \ +static_assert(offsetof(UGA_BoilingBlood_C, BloodIndex) == 0x000678, "Member 'UGA_BoilingBlood_C::BloodIndex' has a wrong offset!"); \ +static_assert(offsetof(UGA_BoilingBlood_C, Boilrate) == 0x000680, "Member 'UGA_BoilingBlood_C::Boilrate' has a wrong offset!"); \ +static_assert(offsetof(UGA_BoilingBlood_C, BoilrateLow) == 0x000688, "Member 'UGA_BoilingBlood_C::BoilrateLow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPDA_EnemyAnimSet_C \ +static_assert(alignof(UPDA_EnemyAnimSet_C) == 0x000010, "Wrong alignment on UPDA_EnemyAnimSet_C"); \ +static_assert(sizeof(UPDA_EnemyAnimSet_C) == 0x0005A0, "Wrong size on UPDA_EnemyAnimSet_C"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, HeadLook_BlendSpace) == 0x000080, "Member 'UPDA_EnemyAnimSet_C::HeadLook_BlendSpace' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, RangedByDefault) == 0x000088, "Member 'UPDA_EnemyAnimSet_C::RangedByDefault' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Stunned) == 0x000090, "Member 'UPDA_EnemyAnimSet_C::Stunned' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, StunEnd) == 0x000098, "Member 'UPDA_EnemyAnimSet_C::StunEnd' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, RelaxedWepSocketAdjust) == 0x0000A0, "Member 'UPDA_EnemyAnimSet_C::RelaxedWepSocketAdjust' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Blending_Rule) == 0x000100, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Blending_Rule' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Look_alpha) == 0x000108, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Look_alpha' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Look_Interp_Speed) == 0x000110, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Look_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Look_Rot_Offset) == 0x000118, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Accel_Dip) == 0x000130, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Accel_Dip' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Accel_Lean) == 0x000138, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Accel_Lean' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Idle) == 0x000140, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Idle_Moving) == 0x000148, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Idle_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Blendspace) == 0x000150, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Blendspace' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, AlertWepSocketAdjust) == 0x000160, "Member 'UPDA_EnemyAnimSet_C::AlertWepSocketAdjust' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Blending_Rule) == 0x0001C0, "Member 'UPDA_EnemyAnimSet_C::Alert_Blending_Rule' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Look_Alpha) == 0x0001C8, "Member 'UPDA_EnemyAnimSet_C::Alert_Look_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Look_Interp_Speed) == 0x0001D0, "Member 'UPDA_EnemyAnimSet_C::Alert_Look_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Look_Rot_Offset) == 0x0001D8, "Member 'UPDA_EnemyAnimSet_C::Alert_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Accel_Dip) == 0x0001F0, "Member 'UPDA_EnemyAnimSet_C::Alert_Accel_Dip' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Accel_Lean) == 0x0001F8, "Member 'UPDA_EnemyAnimSet_C::Alert_Accel_Lean' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Idle) == 0x000200, "Member 'UPDA_EnemyAnimSet_C::Alert_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Idle_Moving) == 0x000208, "Member 'UPDA_EnemyAnimSet_C::Alert_Idle_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Blendspace) == 0x000210, "Member 'UPDA_EnemyAnimSet_C::Alert_Blendspace' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, RunningWepSocketAdjust) == 0x000220, "Member 'UPDA_EnemyAnimSet_C::RunningWepSocketAdjust' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Blending_Rule) == 0x000280, "Member 'UPDA_EnemyAnimSet_C::Running_Blending_Rule' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Look_Alpha) == 0x000288, "Member 'UPDA_EnemyAnimSet_C::Running_Look_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Look_Interp_Speed) == 0x000290, "Member 'UPDA_EnemyAnimSet_C::Running_Look_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Look_Rot_Offset) == 0x000298, "Member 'UPDA_EnemyAnimSet_C::Running_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Accel_Dip) == 0x0002B0, "Member 'UPDA_EnemyAnimSet_C::Running_Accel_Dip' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Accel_Lean) == 0x0002B8, "Member 'UPDA_EnemyAnimSet_C::Running_Accel_Lean' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Idle) == 0x0002C0, "Member 'UPDA_EnemyAnimSet_C::Running_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_UpperBody) == 0x0002C8, "Member 'UPDA_EnemyAnimSet_C::Running_UpperBody' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Blendspace) == 0x0002D0, "Member 'UPDA_EnemyAnimSet_C::Running_Blendspace' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, MeleeWepSocketAdjust) == 0x0002E0, "Member 'UPDA_EnemyAnimSet_C::MeleeWepSocketAdjust' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Blending_Rule) == 0x000340, "Member 'UPDA_EnemyAnimSet_C::Melee_Blending_Rule' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Look_Alpha) == 0x000348, "Member 'UPDA_EnemyAnimSet_C::Melee_Look_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Look_Interp_Speed) == 0x000350, "Member 'UPDA_EnemyAnimSet_C::Melee_Look_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Look_Rot_Offset) == 0x000358, "Member 'UPDA_EnemyAnimSet_C::Melee_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Attack_Look_Rot_Offset) == 0x000370, "Member 'UPDA_EnemyAnimSet_C::Melee_Attack_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Accel_Dip) == 0x000388, "Member 'UPDA_EnemyAnimSet_C::Melee_Accel_Dip' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Accel_Lean) == 0x000390, "Member 'UPDA_EnemyAnimSet_C::Melee_Accel_Lean' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Idle) == 0x000398, "Member 'UPDA_EnemyAnimSet_C::Melee_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Idle_Moving) == 0x0003A0, "Member 'UPDA_EnemyAnimSet_C::Melee_Idle_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Attacking) == 0x0003A8, "Member 'UPDA_EnemyAnimSet_C::Melee_Attacking' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Attack_Moving) == 0x0003B0, "Member 'UPDA_EnemyAnimSet_C::Melee_Attack_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Blendspace_Forward) == 0x0003B8, "Member 'UPDA_EnemyAnimSet_C::Melee_Blendspace_Forward' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Melee_Blendspace_Backward) == 0x0003C0, "Member 'UPDA_EnemyAnimSet_C::Melee_Blendspace_Backward' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, RangedWepSocketAdjust) == 0x0003D0, "Member 'UPDA_EnemyAnimSet_C::RangedWepSocketAdjust' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Blending_Rule) == 0x000430, "Member 'UPDA_EnemyAnimSet_C::Ranged_Blending_Rule' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Look_Alpha) == 0x000438, "Member 'UPDA_EnemyAnimSet_C::Ranged_Look_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Look_Interp_Speed) == 0x000440, "Member 'UPDA_EnemyAnimSet_C::Ranged_Look_Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Look_Rot_Offset) == 0x000448, "Member 'UPDA_EnemyAnimSet_C::Ranged_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Attack_Look_Rot_Offset) == 0x000460, "Member 'UPDA_EnemyAnimSet_C::Ranged_Attack_Look_Rot_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Accel_Dip) == 0x000478, "Member 'UPDA_EnemyAnimSet_C::Ranged_Accel_Dip' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Accel_Lean) == 0x000480, "Member 'UPDA_EnemyAnimSet_C::Ranged_Accel_Lean' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Idle) == 0x000488, "Member 'UPDA_EnemyAnimSet_C::Ranged_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Idle_Moving) == 0x000490, "Member 'UPDA_EnemyAnimSet_C::Ranged_Idle_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Attacking_Blendspace) == 0x000498, "Member 'UPDA_EnemyAnimSet_C::Ranged_Attacking_Blendspace' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Blendspace_Forward) == 0x0004A0, "Member 'UPDA_EnemyAnimSet_C::Ranged_Blendspace_Forward' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Ranged_Blendspace_Backward) == 0x0004A8, "Member 'UPDA_EnemyAnimSet_C::Ranged_Blendspace_Backward' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Patrolling_Eyelid_Offset) == 0x0004B0, "Member 'UPDA_EnemyAnimSet_C::Patrolling_Eyelid_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Investigating_Eyelid_Offset) == 0x0004B8, "Member 'UPDA_EnemyAnimSet_C::Investigating_Eyelid_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Combat_Eyelid_Offset) == 0x0004C0, "Member 'UPDA_EnemyAnimSet_C::Combat_Eyelid_Offset' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Blink_Frequency) == 0x0004C8, "Member 'UPDA_EnemyAnimSet_C::Blink_Frequency' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Falling) == 0x0004D8, "Member 'UPDA_EnemyAnimSet_C::Falling' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, GripOverridePose) == 0x0004E0, "Member 'UPDA_EnemyAnimSet_C::GripOverridePose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, FidgetStrength) == 0x0004E8, "Member 'UPDA_EnemyAnimSet_C::FidgetStrength' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Investigate_Idle) == 0x0004F0, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Investigate_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Investigate_Moving) == 0x0004F8, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Investigate_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Investigate_Idle) == 0x000500, "Member 'UPDA_EnemyAnimSet_C::Alert_Investigate_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Investigate_Moving) == 0x000508, "Member 'UPDA_EnemyAnimSet_C::Alert_Investigate_Moving' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Weapon_Pose) == 0x000510, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Relaxed_Investigate_Weapon_Pose) == 0x000518, "Member 'UPDA_EnemyAnimSet_C::Relaxed_Investigate_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Weapon_Pose) == 0x000520, "Member 'UPDA_EnemyAnimSet_C::Alert_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Alert_Investigate_Weapon_Pose) == 0x000528, "Member 'UPDA_EnemyAnimSet_C::Alert_Investigate_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Combat_Weapon_Pose) == 0x000530, "Member 'UPDA_EnemyAnimSet_C::Combat_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Attacking_Weapon_Pose) == 0x000538, "Member 'UPDA_EnemyAnimSet_C::Attacking_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Running_Weapon_Pose) == 0x000540, "Member 'UPDA_EnemyAnimSet_C::Running_Weapon_Pose' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Relaxed) == 0x000548, "Member 'UPDA_EnemyAnimSet_C::Face_Relaxed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Alert) == 0x000550, "Member 'UPDA_EnemyAnimSet_C::Face_Alert' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Combat) == 0x000558, "Member 'UPDA_EnemyAnimSet_C::Face_Combat' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Emote_Pain) == 0x000560, "Member 'UPDA_EnemyAnimSet_C::Face_Emote_Pain' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Emote_Fear) == 0x000568, "Member 'UPDA_EnemyAnimSet_C::Face_Emote_Fear' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Emote_Anger) == 0x000570, "Member 'UPDA_EnemyAnimSet_C::Face_Emote_Anger' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Face_Emote_Happy) == 0x000578, "Member 'UPDA_EnemyAnimSet_C::Face_Emote_Happy' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Grip2Handed) == 0x000580, "Member 'UPDA_EnemyAnimSet_C::Grip2Handed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, FidgetAdditive) == 0x000588, "Member 'UPDA_EnemyAnimSet_C::FidgetAdditive' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Fear_Idle) == 0x000590, "Member 'UPDA_EnemyAnimSet_C::Fear_Idle' has a wrong offset!"); \ +static_assert(offsetof(UPDA_EnemyAnimSet_C, Fear_Blendspace) == 0x000598, "Member 'UPDA_EnemyAnimSet_C::Fear_Blendspace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData) == 0x0002D0, "Wrong size on AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1266) == 0x000008, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1266' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1267) == 0x000018, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1267' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1268) == 0x000020, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1268' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1269) == 0x000028, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1269' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1270) == 0x000038, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1270' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1271) == 0x000040, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1271' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1272) == 0x000044, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1272' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1273) == 0x000048, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1273' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1274) == 0x000058, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1274' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ByteProperty_1275) == 0x000068, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ByteProperty_1275' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1276) == 0x000070, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1276' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1277) == 0x000080, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1277' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1278) == 0x000090, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1278' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1279) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1279' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1280) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1280' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1281) == 0x0000AC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1281' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1282) == 0x0000B4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1282' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1283) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1283' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1284) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1284' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1285) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1285' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1286) == 0x0000D4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1286' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1287) == 0x0000DC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1287' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1288) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1288' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1289) == 0x0000F0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1289' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1290) == 0x000100, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1290' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1291) == 0x000108, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1291' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1292) == 0x000110, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1292' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1293) == 0x000120, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1293' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1294) == 0x000128, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1294' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ByteProperty_1295) == 0x000129, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ByteProperty_1295' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1296) == 0x00012C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1296' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1297) == 0x000138, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1297' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1298) == 0x000148, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1298' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __IntProperty_1299) == 0x000150, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__IntProperty_1299' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1300) == 0x000154, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1300' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1301) == 0x000158, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1301' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1302) == 0x000168, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1302' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1303) == 0x000178, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1303' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1304) == 0x000180, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1304' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1305) == 0x000190, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1305' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_1306) == 0x0001A0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_1306' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __BoolProperty_1307) == 0x0001A4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__BoolProperty_1307' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_1308) == 0x0001A8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_1308' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_1309) == 0x0001D4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_1309' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1310) == 0x0001D8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1310' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ByteProperty_1311) == 0x0001D9, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ByteProperty_1311' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __BlendProfile_1312) == 0x0001E0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__BlendProfile_1312' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __CurveFloat_1313) == 0x0001E8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__CurveFloat_1313' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __BoolProperty_1314) == 0x0001F0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__BoolProperty_1314' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1315) == 0x0001F1, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1315' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_1316) == 0x0001F2, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_1316' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_1317) == 0x0001F8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_1317' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1318) == 0x000208, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1318' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_1319) == 0x000210, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_1319' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_1320) == 0x000218, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_1320' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000238, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0002B8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData) == 0x000128, "Wrong size on AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty) == 0x000004, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000008, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __ArrayProperty_1) == 0x000010, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__ArrayProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_2) == 0x000020, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_3) == 0x000024, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_4) == 0x000028, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_5) == 0x00002C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_6) == 0x000030, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_7) == 0x000034, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_8) == 0x000038, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_9) == 0x00003C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_10) == 0x000040, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_11) == 0x000044, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_12) == 0x000048, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_13) == 0x00004C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_14) == 0x000050, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_15) == 0x000054, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_16) == 0x000058, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __ArrayProperty_17) == 0x000060, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__ArrayProperty_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_18) == 0x000070, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_19) == 0x000071, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_20) == 0x000074, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_21) == 0x000078, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_21' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_22) == 0x00007C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_22' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_23) == 0x000080, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_23' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_24) == 0x000084, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_24' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_25) == 0x000088, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_25' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_26) == 0x00008C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_26' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_27) == 0x000090, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_27' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_28) == 0x000091, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_28' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_29) == 0x000094, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_29' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_30) == 0x000098, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_30' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_31) == 0x00009C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_31' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_32) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_32' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_33) == 0x0000A4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_33' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_34) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_34' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __ArrayProperty_35) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__ArrayProperty_35' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_36) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_36' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_37) == 0x0000C1, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_37' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_38) == 0x0000C2, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_38' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_39) == 0x0000C4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_39' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_40) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_40' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_41) == 0x0000CC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_41' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_42) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_42' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_43) == 0x0000D4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_43' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_44) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_44' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_45) == 0x0000DC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_45' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_46) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_46' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_47) == 0x0000E4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_47' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_48) == 0x0000E5, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_48' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_49) == 0x0000E6, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_49' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_50) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_50' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_51) == 0x0000EC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_51' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_52) == 0x0000F0, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_52' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_53) == 0x0000F4, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_53' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_54) == 0x0000F8, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_54' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_55) == 0x0000FC, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_55' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_56) == 0x0000FD, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_56' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_57) == 0x0000FE, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_57' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_58) == 0x0000FF, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_58' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_59) == 0x000100, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_59' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_60) == 0x000101, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_60' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_61) == 0x000102, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_61' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_62) == 0x000103, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_62' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_63) == 0x000104, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_63' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_64) == 0x000105, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_64' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_65) == 0x000106, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_65' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_66) == 0x000107, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_66' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_67) == 0x000108, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_67' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_68) == 0x00010C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_68' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_69) == 0x000110, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_69' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_70) == 0x000114, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_70' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_71) == 0x000115, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_71' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __ByteProperty_72) == 0x000116, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__ByteProperty_72' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_73) == 0x000118, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_73' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __FloatProperty_74) == 0x00011C, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__FloatProperty_74' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_75) == 0x000120, "Member 'AnimBP_SharedEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_75' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Aim_Twist \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Aim_Twist) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Aim_Twist"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Aim_Twist) == 0x0000F0, "Wrong size on AnimBP_SharedEnemy_USK_C_Aim_Twist"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Roll) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Pitch) == 0x00000C, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Yaw) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000014, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x000024, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_MakeRotator_ReturnValue) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Not_PreBool_ReturnValue) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Abs_ReturnValue) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Roll_1) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Pitch_1) == 0x000094, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BreakRotator_Yaw_1) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00009C, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_FClamp_ReturnValue) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Not_PreBool_ReturnValue_1) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x0000B1, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_EqualEqual_ByteByte_ReturnValue_3) == 0x0000B2, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_EqualEqual_ByteByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanAND_ReturnValue) == 0x0000B3, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanAND_ReturnValue_1) == 0x0000B4, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanOR_ReturnValue) == 0x0000B5, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Not_PreBool_ReturnValue_2) == 0x0000B6, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanAND_ReturnValue_2) == 0x0000B7, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_FInterpTo_ReturnValue) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanAND_ReturnValue_3) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_BooleanAND_ReturnValue_4) == 0x0000C1, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, K2Node_VariableSet_AimBaseYaw_ImplicitCast) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::K2Node_VariableSet_AimBaseYaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Aim_Twist, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_Aim_Twist::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_AnimGraph \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_SharedEnemy_USK_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation) == 0x000004, "Wrong size on AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation, DeltaTime) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_BlueprintThreadSafeUpdateAnimation::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_CalculateLegIK \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_CalculateLegIK) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_CalculateLegIK"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_CalculateLegIK) == 0x000808, "Wrong size on AnimBP_SharedEnemy_USK_C_CalculateLegIK"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, Delta) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::Delta' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, Footoffset) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::Footoffset' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, RightHit) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::RightHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, LeftHit) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::LeftHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000021, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000024, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_1) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_1) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_1) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_2) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_2) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_2) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_3) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_3) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_3) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_1) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Square_ReturnValue) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Square_ReturnValue_1) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Square_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_TryGetPawnOwner_ReturnValue) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000F0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000F8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetCameraLocation_ReturnValue) == 0x000110, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000128, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MapRangeClamped_ReturnValue) == 0x000130, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetOwningComponent_ReturnValue) == 0x000138, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetOwningComponent_ReturnValue_1) == 0x000140, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetOwningComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetSocketLocation_ReturnValue) == 0x000148, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_GetSocketLocation_ReturnValue_1) == 0x000160, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_4) == 0x000178, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_4) == 0x000180, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_4) == 0x000188, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_5) == 0x000190, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_5) == 0x000198, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_5) == 0x0001A0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FInterpTo_ReturnValue) == 0x0001A8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FInterpTo_ReturnValue_1) == 0x0001B0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_2) == 0x0001B8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_3) == 0x0001D0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_6) == 0x0001E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_6) == 0x0001F0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_6) == 0x0001F8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_7) == 0x000200, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_7) == 0x000208, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_7) == 0x000210, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_8) == 0x000218, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_8) == 0x000220, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_8) == 0x000228, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000230, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FMin_ReturnValue) == 0x000238, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FClamp_ReturnValue) == 0x000240, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000248, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FInterpTo_ReturnValue_2) == 0x000250, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LegtraceLocations_Start) == 0x000258, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LegtraceLocations_Start' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LegtraceLocations_End) == 0x000270, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LegtraceLocations_End' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_4) == 0x000288, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x0002A0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, K2Node_MakeArray_Array) == 0x0002A8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LineTraceSingle_OutHit) == 0x0002B8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LineTraceSingle_ReturnValue) == 0x0003A0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LegtraceLocations_Start_1) == 0x0003A8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LegtraceLocations_Start_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LegtraceLocations_End_1) == 0x0003C0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LegtraceLocations_End_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_bBlockingHit) == 0x0003D8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_bInitialOverlap) == 0x0003D9, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Time) == 0x0003DC, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Distance) == 0x0003E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Location) == 0x0003E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ImpactPoint) == 0x000400, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Normal) == 0x000418, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ImpactNormal) == 0x000430, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_PhysMat) == 0x000448, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitActor) == 0x000450, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitComponent) == 0x000458, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitBoneName) == 0x000460, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_BoneName) == 0x000468, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitItem) == 0x000470, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ElementIndex) == 0x000474, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_FaceIndex) == 0x000478, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_TraceStart) == 0x000480, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_TraceEnd) == 0x000498, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x0004B0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_VLerp_ReturnValue) == 0x0004B8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, K2Node_MakeArray_Array_1) == 0x0004D0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeRotFromZX_ReturnValue) == 0x0004E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeRotFromZX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LineTraceSingle_OutHit_1) == 0x0004F8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LineTraceSingle_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_LineTraceSingle_ReturnValue_1) == 0x0005E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_LineTraceSingle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_RInterpTo_ReturnValue) == 0x0005E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_bBlockingHit_1) == 0x000600, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x000601, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Time_1) == 0x000604, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Distance_1) == 0x000608, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Location_1) == 0x000610, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000628, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_Normal_1) == 0x000640, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000658, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_PhysMat_1) == 0x000670, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitActor_1) == 0x000678, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitComponent_1) == 0x000680, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitBoneName_1) == 0x000688, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_BoneName_1) == 0x000690, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_HitItem_1) == 0x000698, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_ElementIndex_1) == 0x00069C, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_FaceIndex_1) == 0x0006A0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_TraceStart_1) == 0x0006A8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakHitResult_TraceEnd_1) == 0x0006C0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_9) == 0x0006D8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_9) == 0x0006E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_9) == 0x0006E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_VLerp_ReturnValue_1) == 0x0006F0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_VLerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000708, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeRotFromZX_ReturnValue_1) == 0x000710, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeRotFromZX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FMax_ReturnValue) == 0x000728, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_RInterpTo_ReturnValue_1) == 0x000730, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FInterpTo_ReturnValue_3) == 0x000748, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FInterpTo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_5) == 0x000750, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_X_10) == 0x000768, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_X_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Y_10) == 0x000770, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Y_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_BreakVector_Z_10) == 0x000778, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_BreakVector_Z_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000780, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000788, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FMax_ReturnValue_1) == 0x000790, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_FInterpTo_ReturnValue_4) == 0x000798, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_FInterpTo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_NearlyEqual_FloatFloat_ReturnValue_1) == 0x0007A0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_NearlyEqual_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_MakeVector_ReturnValue_6) == 0x0007A8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_MakeVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x0007C0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_NearlyEqual_FloatFloat_ReturnValue_2) == 0x0007C8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_NearlyEqual_FloatFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0007CC, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_RInterpTo_DeltaTime_ImplicitCast_1) == 0x0007D0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_RInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x0007D8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, K2Node_VariableSet_Delta_ImplicitCast) == 0x0007E0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::K2Node_VariableSet_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x0007E8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x0007F0, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_1) == 0x0007F8, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_CalculateLegIK, CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1) == 0x000800, "Member 'AnimBP_SharedEnemy_USK_C_CalculateLegIK::CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805 \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805) == 0x0000B0, "Wrong size on AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805, Payload) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_EventReceived_6D406F9A416248B94DD3799C9D7D7805::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D) == 0x0000B0, "Wrong size on AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D, Payload) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_EventReceived_C65A91C24C79E9EED07D69843CD5CD1D::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722 \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722) == 0x0000B0, "Wrong size on AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722, Payload) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_EventReceived_D18173BC4A24B2F1F84777ADCEC4E722::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK) == 0x000010, "Wrong alignment on AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK) == 0x001020, "Wrong size on AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, EntryPoint) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue) == 0x000005, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Variable) == 0x000006, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_struct_Variable) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CustomEvent_Payload_2) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000168, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CreateDelegate_OutputDelegate) == 0x00016C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_1) == 0x00017C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Variable_1) == 0x00017D, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_2) == 0x00017E, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue) == 0x00017F, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_1) == 0x000180, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_struct_Variable_1) == 0x000188, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable) == 0x000238, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000239, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CustomEvent_Payload_1) == 0x000240, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CreateDelegate_OutputDelegate_1) == 0x0002F0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_3) == 0x000300, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_struct_Variable_2) == 0x000308, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_4) == 0x0003B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_2) == 0x0003B9, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CustomEvent_Payload) == 0x0003C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_3) == 0x000470, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_CreateDelegate_OutputDelegate_2) == 0x000474, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Roll) == 0x000484, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Pitch) == 0x000488, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Yaw) == 0x00048C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Variable_2) == 0x000490, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000498, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_ReturnValue) == 0x0004A0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_ReturnValue_1) == 0x0004B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_5) == 0x0004D0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x0004D1, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_3) == 0x0004D2, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Location) == 0x0004D8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Rotation) == 0x0004F0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Scale) == 0x000508, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_6) == 0x000520, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Location_1) == 0x000528, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Rotation_1) == 0x000540, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Scale_1) == 0x000558, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_7) == 0x000570, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_NegateRotator_ReturnValue) == 0x000578, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_NegateRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_4) == 0x000590, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000598, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_5) == 0x0005B0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_8) == 0x0005B1, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_6) == 0x0005B2, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0005B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_7) == 0x0005C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_ReturnValue_2) == 0x0005C8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetForwardVector_ReturnValue) == 0x0005E0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0005F8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000600, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000618, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_ReturnValue_3) == 0x000620, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_9) == 0x000638, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable_1) == 0x000639, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_4) == 0x00063A, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_OutValue) == 0x00063C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x000640, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanOR_ReturnValue) == 0x000641, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_10) == 0x000642, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_8) == 0x000643, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_9) == 0x000644, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_OutValue_1) == 0x000648, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_OutValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_ReturnValue_1) == 0x00064C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_5) == 0x00064D, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_Event_DeltaTimeX) == 0x000650, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_Event_DeltaTimeX' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_6) == 0x000654, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000658, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue) == 0x000660, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000668, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable_1) == 0x000670, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000678, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess) == 0x000688, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000689, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000690, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_1) == 0x0006A0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_1) == 0x0006A1, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0006A2, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloat_ReturnValue) == 0x0006A8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomBool_ReturnValue) == 0x0006B0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue) == 0x0006B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_7) == 0x0006C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0006C8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeVector2D_ReturnValue) == 0x0006D0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x0006E0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_2) == 0x0006E8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetAttachedActors_OutActors) == 0x0006F0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Array_Length_ReturnValue) == 0x000700, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_3) == 0x000708, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000710, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000718, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_3) == 0x000720, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_4) == 0x000721, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_5) == 0x000722, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_4) == 0x000728, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsCharacter) == 0x000730, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_2) == 0x000738, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsFalling_ReturnValue) == 0x000739, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_11) == 0x00073A, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerPawn_ReturnValue) == 0x000740, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_6) == 0x000748, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetDeltaSeconds_ReturnValue) == 0x00074C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000750, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetOwningActor_ReturnValue) == 0x000758, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetOwningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000760, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetMassSnapshotPose_ReturnValue) == 0x000768, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetMassSnapshotPose_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue) == 0x0007A0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsWrestler_Mass_Enemy_Character) == 0x0007A8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsWrestler_Mass_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_3) == 0x0007B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_Event_NewState) == 0x0007B9, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_Event_NewState' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_8) == 0x0007BA, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_10) == 0x0007BB, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_9) == 0x0007BC, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_11) == 0x0007BD, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x0007C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x0007C8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0007D0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_7) == 0x0007D8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0007E0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_5) == 0x0007F8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_6) == 0x000800, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000808, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x000820, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Vector_Distance_ReturnValue) == 0x000828, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MapRangeClamped_ReturnValue) == 0x000830, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_8) == 0x000838, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_9) == 0x000839, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_10) == 0x00083A, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable_2) == 0x00083B, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetOwningActor_ReturnValue_1) == 0x000840, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetOwningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000848, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_4) == 0x000850, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_ShouldApplyPlayerOffset_ReturnValue) == 0x000851, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_ShouldApplyPlayerOffset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_11) == 0x000852, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_int_Loop_Counter_Variable) == 0x000854, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector2D_X) == 0x000858, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector2D_Y) == 0x000860, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Less_IntInt_ReturnValue) == 0x000868, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue_4) == 0x000870, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_IntInt_ReturnValue) == 0x000878, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable_3) == 0x00087C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector2D_X_1) == 0x000880, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector2D_Y_1) == 0x000888, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000890, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000894, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000898, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0008A0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanOR_ReturnValue_1) == 0x0008A8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0008B0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_1) == 0x0008B8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0008C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Roll_1) == 0x0008C8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Pitch_1) == 0x0008CC, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Yaw_1) == 0x0008D0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0008D8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_ReturnValue_4) == 0x0008E0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x0008F8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_12) == 0x0008F9, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000900, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_2) == 0x000908, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable_2) == 0x000910, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000918, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_3) == 0x000920, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x000928, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Location_2) == 0x000930, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Location_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Rotation_2) == 0x000948, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Rotation_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakTransform_Scale_2) == 0x000960, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakTransform_Scale_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_X) == 0x000978, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_Y) == 0x000980, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_Z) == 0x000988, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000990, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_4) == 0x000998, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeVector_ReturnValue) == 0x0009A0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeTransform_ReturnValue) == 0x0009C0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000A20, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000A40, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_7) == 0x000A48, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetController_ReturnValue) == 0x000A50, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsWrestler_AIController) == 0x000A58, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsWrestler_AIController' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_5) == 0x000A60, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_AIHasStateTag_ReturnValue) == 0x000A61, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_8) == 0x000A68, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000A70, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_10) == 0x000A78, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000A80, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000A90, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000A98, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000AA8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_True_if_break_was_hit_Variable) == 0x000AA9, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable_4) == 0x000AAA, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_13) == 0x000AAB, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_12) == 0x000AAC, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_int_Array_Index_Variable) == 0x000AB0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Array_Get_Item) == 0x000AB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_AsBP_Weapon) == 0x000AC0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_DynamicCast_bSuccess_6) == 0x000AC8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Has_Been_Initd_Variable_5) == 0x000AC9, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Has_Been_Initd_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1) == 0x000ACA, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerController_ReturnValue) == 0x000AD0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetControlRotation_ReturnValue) == 0x000AD8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Roll_2) == 0x000AF0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Pitch_2) == 0x000AF4, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakRotator_Yaw_2) == 0x000AF8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000B00, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000B08, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_Select_Default) == 0x000B0C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeVector_ReturnValue_1) == 0x000B10, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Abs_ReturnValue) == 0x000B28, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotFromZY_ReturnValue) == 0x000B30, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotFromZY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000B48, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_5) == 0x000B50, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Lerp_ReturnValue) == 0x000B58, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000B60, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_6) == 0x000B68, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_14) == 0x000B70, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000B78, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_9) == 0x000B80, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x000B88, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetAbilitySystemComponent_ReturnValue_1) == 0x000B90, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Sin_ReturnValue) == 0x000B98, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000BA0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000BB0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_9) == 0x000BB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_10) == 0x000BC0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Abs_ReturnValue_1) == 0x000BC8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerController_ReturnValue_1) == 0x000BD0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_11) == 0x000BD8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetControlRotation_ReturnValue_1) == 0x000BE0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeVector_ReturnValue_2) == 0x000BF8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000C10, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_10) == 0x000C18, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_11) == 0x000C20, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000C28, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000C40, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000C58, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000C70, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetForwardVector_ReturnValue_1) == 0x000C88, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetRightVector_ReturnValue) == 0x000CA0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000CB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Dot_VectorVector_ReturnValue) == 0x000CD0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000CD8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_SignOfFloat_ReturnValue) == 0x000CF0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_X_1) == 0x000CF8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_Y_1) == 0x000D00, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BreakVector_Z_1) == 0x000D08, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Abs_ReturnValue_2) == 0x000D10, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Abs_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeVector_ReturnValue_3) == 0x000D18, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000D30, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Vector_Distance_ReturnValue_1) == 0x000D38, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_12) == 0x000D40, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000D48, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_ReturnValue_13) == 0x000D50, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_7) == 0x000D58, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000D60, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000D78, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_12) == 0x000D90, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_VLerp_ReturnValue) == 0x000D98, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable_3) == 0x000DB0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_13) == 0x000DB1, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_14) == 0x000DB2, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanOR_ReturnValue_2) == 0x000DB3, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_15) == 0x000DB4, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_13) == 0x000DB5, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_FClamp_ReturnValue_8) == 0x000DB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_FClamp_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_14) == 0x000DC0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x000DC8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x000DD0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000DD8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000DF0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000E08, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanOR_ReturnValue_3) == 0x000E20, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_VectorVector_ReturnValue) == 0x000E28, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_15) == 0x000E40, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000E48, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000E60, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable_4) == 0x000E78, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, Temp_bool_IsClosed_Variable_5) == 0x000E79, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::Temp_bool_IsClosed_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_RandomFloatInRange_ReturnValue_5) == 0x000E80, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_RandomFloatInRange_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_16) == 0x000E88, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetOwningComponent_ReturnValue) == 0x000E90, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetOwningComponent_ReturnValue_1) == 0x000E98, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetOwningComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetSocketLocation_ReturnValue) == 0x000EA0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetSocketLocation_ReturnValue_1) == 0x000EB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_OutValue_2) == 0x000ED0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_OutValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCurveValueWithDefault_ReturnValue_2) == 0x000ED4, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCurveValueWithDefault_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_11) == 0x000ED8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000EE0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetAbilitySystemComponent_ReturnValue_2) == 0x000EE8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetAbilitySystemComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000EF0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000F00, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetOwningComponent_ReturnValue_2) == 0x000F08, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetOwningComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_17) == 0x000F10, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_DoesSocketExist_ReturnValue) == 0x000F11, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_DoesSocketExist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_EqualEqual_ByteByte_ReturnValue_15) == 0x000F12, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_EqualEqual_ByteByte_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Not_PreBool_ReturnValue_18) == 0x000F13, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Not_PreBool_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_TryGetPawnOwner_ReturnValue_12) == 0x000F18, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_TryGetPawnOwner_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Square_ReturnValue) == 0x000F20, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000F28, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000F40, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetCameraLocation_ReturnValue) == 0x000F48, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000F60, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000F68, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000F70, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_16) == 0x000F78, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_IsValid_ReturnValue_12) == 0x000F79, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_17) == 0x000F7A, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_18) == 0x000F7B, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_BooleanAND_ReturnValue_19) == 0x000F7C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_BooleanAND_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_StructMemberSet_Alpha_ImplicitCast) == 0x000F80, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_StructMemberSet_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_StructMemberSet_Alpha_ImplicitCast_1) == 0x000F84, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_StructMemberSet_Alpha_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000F88, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000F90, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x000F94, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_StructMemberSet_Alpha_ImplicitCast_2) == 0x000F98, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_StructMemberSet_Alpha_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_StructMemberSet_Alpha_ImplicitCast_3) == 0x000F9C, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_StructMemberSet_Alpha_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000FA0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_Yaw_ImplicitCast_1) == 0x000FA4, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_Yaw_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_VariableSet_HeadStart_ImplicitCast) == 0x000FA8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_VariableSet_HeadStart_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000FB0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Delay_Duration_ImplicitCast) == 0x000FB8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000FC0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000FC8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_MakeRotator_Roll_ImplicitCast_2) == 0x000FD0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_MakeRotator_Roll_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000FD8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000FE0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, K2Node_Select_Option_1_ImplicitCast) == 0x000FE8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Abs_A_ImplicitCast) == 0x000FF0, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_VLerp_Alpha_ImplicitCast) == 0x000FF8, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001000, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Delay_Duration_ImplicitCast_1) == 0x001008, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x001010, "Member 'AnimBP_SharedEnemy_USK_C_ExecuteUbergraph_AnimBP_SharedEnemy_USK::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_ \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_) == 0x000098, "Wrong size on AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_MakeRotator_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_GetForwardVector_ReturnValue) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_GetCurrentVelocity__Safe_::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_GetMontage \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_GetMontage) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_GetMontage"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_GetMontage) == 0x000018, "Wrong size on AnimBP_SharedEnemy_USK_C_GetMontage"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetMontage, GameplayTag) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_GetMontage::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetMontage, ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_GetMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_GetMontage, CallFunc_GetMontageByTag_ReturnValue) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_GetMontage::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_IK_Socket \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_IK_Socket) == 0x000010, "Wrong alignment on AnimBP_SharedEnemy_USK_C_IK_Socket"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_IK_Socket) == 0x000160, "Wrong size on AnimBP_SharedEnemy_USK_C_IK_Socket"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_GetComponentByClass_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_GetSocketTransform_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_GetSocketTransform_ReturnValue_1) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_GetSocketTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_MakeRelativeTransform_ReturnValue) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_MakeRelativeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_IsValid_ReturnValue_1) == 0x000140, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_GetSkinnedAsset_ReturnValue) == 0x000148, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_GetSkinnedAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IK_Socket, CallFunc_IsValid_ReturnValue_2) == 0x000150, "Member 'AnimBP_SharedEnemy_USK_C_IK_Socket::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_IKSetup \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_IKSetup) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_IKSetup"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_IKSetup) == 0x000078, "Wrong size on AnimBP_SharedEnemy_USK_C_IKSetup"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, Temp_real_Variable) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, Temp_real_Variable_1) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, Temp_bool_Variable) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000014, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x00002C, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00002D, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, K2Node_Select_Default) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_ReturnValue_1) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_Current_ImplicitCast) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, K2Node_VariableSet_ArmIKAlpha_ImplicitCast) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::K2Node_VariableSet_ArmIKAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_FInterpTo_Current_ImplicitCast_1) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_FInterpTo_Current_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_IKSetup, K2Node_VariableSet_ArmIKAlpha_ImplicitCast_1) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_IKSetup::K2Node_VariableSet_ArmIKAlpha_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_LegtraceLocations \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_LegtraceLocations) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_LegtraceLocations"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_LegtraceLocations) == 0x000100, "Wrong size on AnimBP_SharedEnemy_USK_C_LegtraceLocations"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, RightFoot) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::RightFoot' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, Start) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::Start' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, End) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::End' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, Temp_name_Variable) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, Temp_name_Variable_1) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, Temp_bool_Variable) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_GetOwningComponent_ReturnValue) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_GetSocketLocation_ReturnValue) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, K2Node_Select_Default) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_X) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_Y) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_Z) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_GetSocketLocation_ReturnValue_1) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_X_1) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_Y_1) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_BreakVector_Z_1) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_MakeVector_ReturnValue) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_LegtraceLocations, CallFunc_MakeVector_ReturnValue_1) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_LegtraceLocations::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_PlayerCombatOffset \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_PlayerCombatOffset"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset) == 0x0000F0, "Wrong size on AnimBP_SharedEnemy_USK_C_PlayerCombatOffset"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, Offset) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::Offset' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Vector_Distance_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_BreakVector_X) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_BreakVector_Y) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_BreakVector_Z) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_MakeVector_ReturnValue) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_PlayerCombatOffset, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_PlayerCombatOffset::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset) == 0x000050, "Wrong size on AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_GetAnimationSet_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_GetAnimationSet_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, K2Node_DynamicCast_AsPDA_Enemy_Anim_Set) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::K2Node_DynamicCast_AsPDA_Enemy_Anim_Set' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, K2Node_DynamicCast_bSuccess_1) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_GetComponentByClass_ReturnValue) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_GetFirstInstanceOfType_ReturnValue) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_GetFirstInstanceOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset, CallFunc_IsValid_ReturnValue_1) == 0x000049, "Member 'AnimBP_SharedEnemy_USK_C_Set_Anim_Data_Asset::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_SetCurrentAnimState \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_SetCurrentAnimState) == 0x000001, "Wrong alignment on AnimBP_SharedEnemy_USK_C_SetCurrentAnimState"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_SetCurrentAnimState) == 0x000001, "Wrong size on AnimBP_SharedEnemy_USK_C_SetCurrentAnimState"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_SetCurrentAnimState, NewState) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_SetCurrentAnimState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Sort_State_Floats \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Sort_State_Floats"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats) == 0x000078, "Wrong size on AnimBP_SharedEnemy_USK_C_Sort_State_Floats"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Relaxed) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Relaxed' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Alert) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Alert' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Melee) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Melee' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Ranged) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Ranged' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Running) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Running' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Value) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Temp_bool_Variable) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Temp_bool_Variable_1) == 0x000031, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Temp_bool_Variable_2) == 0x000032, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Temp_bool_Variable_3) == 0x000033, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, Temp_byte_Variable) == 0x000034, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Default) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Default_1) == 0x00003C, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Default_2) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Default_3) == 0x000044, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Default_4) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_0_ImplicitCast) == 0x00004C, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_1_ImplicitCast) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_0_ImplicitCast_1) == 0x000054, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_0_ImplicitCast_2) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_0_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_MeleeCombat_ImplicitCast) == 0x00005C, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_MeleeCombat_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_1_ImplicitCast_1) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_1_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_MeleeRanged_ImplicitCast) == 0x000064, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_MeleeRanged_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_Select_Option_1_ImplicitCast_2) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_Select_Option_1_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Floats, K2Node_FunctionResult_Value_ImplicitCast) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Floats::K2Node_FunctionResult_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Sort_State_Rotators \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Sort_State_Rotators"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators) == 0x000110, "Wrong size on AnimBP_SharedEnemy_USK_C_Sort_State_Rotators"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Relaxed) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Relaxed' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Alert) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Alert' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Melee) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Melee' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Ranged) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Ranged' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Running) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Running' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Value) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Temp_bool_Variable) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Temp_bool_Variable_1) == 0x000091, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Temp_bool_Variable_2) == 0x000092, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Temp_bool_Variable_3) == 0x000093, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, Temp_byte_Variable) == 0x000094, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, K2Node_Select_Default) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, K2Node_Select_Default_1) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, K2Node_Select_Default_2) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, K2Node_Select_Default_3) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Sort_State_Rotators, K2Node_Select_Default_4) == 0x0000F8, "Member 'AnimBP_SharedEnemy_USK_C_Sort_State_Rotators::K2Node_Select_Default_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Update_Emotions \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Update_Emotions) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Update_Emotions"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Update_Emotions) == 0x0000E0, "Wrong size on AnimBP_SharedEnemy_USK_C_Update_Emotions"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetCameraLocation_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_IsSlotActive_ReturnValue) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_IsSlotActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Not_PreBool_ReturnValue) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_BooleanAND_ReturnValue) == 0x000042, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetCameraLocation_ReturnValue_1) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000081, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetIsSpeaking_ReturnValue) == 0x000082, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetIsSpeaking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000084, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, Temp_bool_Variable) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_GetComponentByClass_ReturnValue) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0000A9, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x0000AA, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue_4) == 0x0000AB, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_IsValid_ReturnValue_1) == 0x0000AC, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_FMax_ReturnValue) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_FMax_ReturnValue_1) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_FMax_ReturnValue_2) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_FMax_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_ReturnValue_5) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Emotions, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Emotions::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Update_Look_Angles \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Update_Look_Angles"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles) == 0x000168, "Wrong size on AnimBP_SharedEnemy_USK_C_Update_Look_Angles"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Sort_State_Floats_Value) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Sort_State_Floats_Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetForwardVector_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Add_VectorVector_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x00003C, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, Temp_bool_Variable) == 0x00003D, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, K2Node_Select_Default) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, Temp_bool_Variable_1) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000094, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, K2Node_Select_Default_1) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_BreakRotator_Roll) == 0x000100, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_BreakRotator_Pitch) == 0x000104, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_BreakRotator_Yaw) == 0x000108, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FClamp_ReturnValue) == 0x000110, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FClamp_ReturnValue_1) == 0x000118, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_ReturnValue) == 0x000120, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_ReturnValue_1) == 0x000128, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, K2Node_Select_Option_0_ImplicitCast) == 0x000130, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_InterpSpeed_ImplicitCast) == 0x000138, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_InterpSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_InterpSpeed_ImplicitCast_1) == 0x000140, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_InterpSpeed_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000148, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000150, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FClamp_Value_ImplicitCast) == 0x000158, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Look_Angles, CallFunc_FClamp_Value_ImplicitCast_1) == 0x000160, "Member 'AnimBP_SharedEnemy_USK_C_Update_Look_Angles::CallFunc_FClamp_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Update_Tagged \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Update_Tagged) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Update_Tagged"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Update_Tagged) == 0x0000E0, "Wrong size on AnimBP_SharedEnemy_USK_C_Update_Tagged"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, K2Node_DynamicCast_AsWrestler_Enemy_Controller) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::K2Node_DynamicCast_AsWrestler_Enemy_Controller' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_AIHasStateTag_ReturnValue) == 0x000032, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_Not_PreBool_ReturnValue) == 0x000079, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_5) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_self_CastInput_6) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_self_CastInput_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Update_Tagged, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_Update_Tagged::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose) == 0x000050, "Wrong size on AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, Temp_byte_Variable) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, Temp_bool_Variable) == 0x000001, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, Temp_bool_Variable_1) == 0x000002, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, Temp_bool_Variable_2) == 0x000003, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, Temp_bool_Variable_3) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_Select_Default) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_Select_Default_1) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_Select_Default_2) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_Select_Default_3) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_Select_Default_4) == 0x000030, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, CallFunc_GetAnimInstance_ReturnValue) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_DynamicCast_AsABP_Weapon) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_DynamicCast_AsABP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'AnimBP_SharedEnemy_USK_C_UpdateBaseWeaponPose::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_UpdateIsAlert \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_UpdateIsAlert"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert) == 0x000028, "Wrong size on AnimBP_SharedEnemy_USK_C_UpdateIsAlert"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, K2Node_DynamicCast_AsWrestler_Enemy_Controller) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::K2Node_DynamicCast_AsWrestler_Enemy_Controller' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateIsAlert, CallFunc_AIHasStateTag_ReturnValue) == 0x000021, "Member 'AnimBP_SharedEnemy_USK_C_UpdateIsAlert::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_UpdateSafeVariables \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables) == 0x000010, "Wrong alignment on AnimBP_SharedEnemy_USK_C_UpdateSafeVariables"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables) == 0x000A30, "Wrong size on AnimBP_SharedEnemy_USK_C_UpdateSafeVariables"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000009, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x00000A, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_3) == 0x00000B, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_4) == 0x00000C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_1) == 0x00000D, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_2) == 0x00000E, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_1) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_2) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_byte_Variable) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_5) == 0x000021, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_byte_Variable_1) == 0x000022, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_3) == 0x000023, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_4) == 0x000024, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_5) == 0x000025, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Quat_Rotator_ReturnValue) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Quat_Rotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_6) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_3) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_4) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Roll) == 0x0000B4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Pitch) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Yaw) == 0x0000BC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_7) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_5) == 0x0000CC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_8) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_6) == 0x0000D4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Location) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Rotation) == 0x000100, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Scale) == 0x000118, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_X) == 0x000130, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Y) == 0x000138, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Z) == 0x000140, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MapRangeClamped_ReturnValue) == 0x000148, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_VSize_ReturnValue) == 0x000150, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeVector_ReturnValue_1) == 0x000158, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_9) == 0x000170, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000178, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000180, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000188, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_1) == 0x000190, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_VSize_ReturnValue_1) == 0x000198, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Lerp_ReturnValue) == 0x0001A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurrentVelocity__Safe__ReturnValue) == 0x0001A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurrentVelocity__Safe__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0001C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_7) == 0x0001D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0001D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0001F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_8) == 0x000208, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurrentVelocity__Safe__ReturnValue_1) == 0x000210, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurrentVelocity__Safe__ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000228, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x00022C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000230, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_ReturnValue) == 0x000238, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_10) == 0x000240, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanAND_ReturnValue) == 0x000241, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_9) == 0x000248, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Sort_State_Floats_Value) == 0x000250, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Sort_State_Floats_Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_11) == 0x000258, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000260, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Not_PreBool_ReturnValue) == 0x000278, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000279, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanAND_ReturnValue_1) == 0x00027A, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanAND_ReturnValue_2) == 0x00027B, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000280, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_12) == 0x000288, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default) == 0x000290, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_2) == 0x000298, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0002A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_ReturnValue) == 0x0002B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_OutValue) == 0x0002C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x0002C4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0002C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_10) == 0x0002D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanAND_ReturnValue_3) == 0x0002D4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_11) == 0x0002D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_1) == 0x0002DC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_13) == 0x0002DD, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_12) == 0x0002E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_2) == 0x0002E4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_13) == 0x0002E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0002F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_OutValue_1) == 0x0002F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_OutValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_ReturnValue_1) == 0x0002FC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_3) == 0x000300, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000308, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_3) == 0x000310, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_2) == 0x000318, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_14) == 0x000320, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Lerp_ReturnValue_1) == 0x000328, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_ReturnValue_1) == 0x000330, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_4) == 0x000338, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_4) == 0x00033C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_14) == 0x000340, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_15) == 0x000344, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_15) == 0x000348, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_5) == 0x00034C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanAND_ReturnValue_4) == 0x000350, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_6) == 0x000358, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_ReturnValue_1) == 0x000360, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_5) == 0x000368, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x00036C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_7) == 0x000370, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000378, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_ReturnValue_2) == 0x000380, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000388, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x000390, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Sort_State_Floats_Value_1) == 0x000398, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Sort_State_Floats_Value_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_8) == 0x0003A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_9) == 0x0003B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Sort_State_Rotators_Value) == 0x0003D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Sort_State_Rotators_Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0003E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_3) == 0x0003F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_ReturnValue) == 0x0003F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_6) == 0x000410, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetForwardVector_ReturnValue) == 0x000418, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_7) == 0x000430, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Dot_VectorVector_ReturnValue) == 0x000438, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_RInterpTo_ReturnValue) == 0x000440, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x000458, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_9) == 0x000460, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_ReturnValue_1) == 0x000468, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_16) == 0x000480, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Sort_State_Floats_Value_2) == 0x000488, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Sort_State_Floats_Value_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_10) == 0x000490, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_17) == 0x000498, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_16) == 0x0004A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_10) == 0x0004A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_11) == 0x0004B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_12) == 0x0004B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0004C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_4) == 0x0004C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_13) == 0x0004D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_11) == 0x0004D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_ReturnValue_2) == 0x0004E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_18) == 0x0004E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x0004F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0004F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000500, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_14) == 0x000508, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_12) == 0x000510, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000518, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_17) == 0x000520, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_ReturnValue_2) == 0x000528, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_13) == 0x000540, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_8) == 0x000558, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_RInterpTo_ReturnValue_1) == 0x000560, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_15) == 0x000578, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_real_Variable_19) == 0x000580, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_real_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Roll_1) == 0x000584, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Pitch_1) == 0x000588, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Yaw_1) == 0x00058C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000590, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_PerlinNoise1D_ReturnValue) == 0x000598, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x00059C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_ReturnValue_3) == 0x0005A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1) == 0x0005A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_14) == 0x0005B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_16) == 0x0005B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetDeltaSeconds_ReturnValue_9) == 0x0005C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetDeltaSeconds_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_ReturnValue_3) == 0x0005C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_18) == 0x0005E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_6) == 0x0005E1, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_15) == 0x0005E4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_EqualEqual_ByteByte_ReturnValue_7) == 0x0005E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_EqualEqual_ByteByte_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_16) == 0x0005EC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanOR_ReturnValue) == 0x0005F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0005F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000610, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_ClampVectorSize_ReturnValue) == 0x000628, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeTransform_ReturnValue) == 0x000640, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Divide_VectorVector_ReturnValue) == 0x0006A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, Temp_bool_Variable_19) == 0x0006B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::Temp_bool_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0006C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0006D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_17) == 0x0006F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_X_1) == 0x0006F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Y_1) == 0x000700, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Z_1) == 0x000708, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_18) == 0x000710, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_X_2) == 0x000718, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Y_2) == 0x000720, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakVector_Z_2) == 0x000728, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanOR_ReturnValue_1) == 0x000730, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_17) == 0x000738, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanOR_ReturnValue_2) == 0x000740, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_ReturnValue_4) == 0x000748, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_RInterpTo_ReturnValue_2) == 0x000760, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_RInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_19) == 0x000778, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_VSize_ReturnValue_2) == 0x000780, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_VSize_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_20) == 0x000788, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_18) == 0x000790, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_ReturnValue_3) == 0x000798, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_19) == 0x0007A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_5) == 0x0007A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0007B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x0007B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_OutValue_2) == 0x0007C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_OutValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_ReturnValue_2) == 0x0007C4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_ReturnValue_6) == 0x0007C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2) == 0x0007D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeVector_ReturnValue_2) == 0x0007D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BooleanOR_ReturnValue_3) == 0x0007F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_VInterpTo_ReturnValue) == 0x0007F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x000810, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeTransform_ReturnValue_1) == 0x000820, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_ReturnValue_4) == 0x000880, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Location_1) == 0x000888, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Rotation_1) == 0x0008A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakTransform_Scale_1) == 0x0008B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_OutValue_3) == 0x0008D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_OutValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GetCurveValueWithDefault_ReturnValue_3) == 0x0008D4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GetCurveValueWithDefault_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_InverseTransformRotation_ReturnValue) == 0x0008D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_InverseTransformRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0008F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Roll_2) == 0x0008F4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Pitch_2) == 0x0008F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_BreakRotator_Yaw_2) == 0x0008FC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_ReturnValue_5) == 0x000900, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_ReturnValue_20) == 0x000908, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Default_21) == 0x000910, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Default_21' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_VInterpTo_ReturnValue_1) == 0x000918, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_VInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_ReturnValue_4) == 0x000930, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3) == 0x000938, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000939, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FClamp_Value_ImplicitCast) == 0x000940, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000948, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_VariableSet_GripOverrideAlpha_L_ImplicitCast) == 0x000950, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_VariableSet_GripOverrideAlpha_L_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Option_1_ImplicitCast) == 0x000954, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000958, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000960, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000968, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000970, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x000978, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000980, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Lerp_A_ImplicitCast) == 0x000988, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Lerp_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_DeltaTime_ImplicitCast_2) == 0x000990, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_DeltaTime_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_DeltaTime_ImplicitCast_3) == 0x000998, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_DeltaTime_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Yaw_ImplicitCast_1) == 0x0009A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Yaw_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0009A4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Yaw_ImplicitCast_2) == 0x0009A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Yaw_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0009AC, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_VariableSet_Accel_Lean_Amount_ImplicitCast) == 0x0009B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_VariableSet_Accel_Lean_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Yaw_ImplicitCast_3) == 0x0009B4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Yaw_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Pitch_ImplicitCast_1) == 0x0009B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Pitch_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0009C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0009C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Option_0_ImplicitCast) == 0x0009D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Abs_A_ImplicitCast) == 0x0009D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x0009E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_DeltaTime_ImplicitCast_4) == 0x0009E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_DeltaTime_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_FInterpTo_Current_ImplicitCast) == 0x0009F0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_FInterpTo_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x0009F8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Roll_ImplicitCast_2) == 0x000A00, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Roll_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_MakeRotator_Pitch_ImplicitCast_2) == 0x000A04, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_MakeRotator_Pitch_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000A08, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_VariableSet_GripOverrideAlpha_ImplicitCast) == 0x000A10, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_VariableSet_GripOverrideAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000A18, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000A20, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Option_0_ImplicitCast_1) == 0x000A28, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateSafeVariables, K2Node_Select_Option_1_ImplicitCast_1) == 0x000A2C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateSafeVariables::K2Node_Select_Option_1_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_UpdateStunned \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_UpdateStunned) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_UpdateStunned"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_UpdateStunned) == 0x000058, "Wrong size on AnimBP_SharedEnemy_USK_C_UpdateStunned"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateStunned, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000050, "Member 'AnimBP_SharedEnemy_USK_C_UpdateStunned::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_UpdateVelocity \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_UpdateVelocity) == 0x000008, "Wrong alignment on AnimBP_SharedEnemy_USK_C_UpdateVelocity"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_UpdateVelocity) == 0x000128, "Wrong size on AnimBP_SharedEnemy_USK_C_UpdateVelocity"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, Temp_bool_Variable) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, Temp_real_Variable) == 0x000004, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, Temp_bool_Variable_1) == 0x000008, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakVector_X) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakVector_Y) == 0x000018, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakVector_Z) == 0x000020, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_MakeVector_ReturnValue_1) == 0x000040, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_CalculateDirection_ReturnValue) == 0x000058, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_CalculateDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_VSize_ReturnValue) == 0x000060, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000068, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakRotator_Roll) == 0x00006C, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakRotator_Pitch) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BreakRotator_Yaw) == 0x000074, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000078, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_NormalizeToRange_ReturnValue) == 0x000080, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_FClamp_ReturnValue) == 0x000088, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_Lerp_ReturnValue) == 0x000090, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_NormalizeToRange_ReturnValue_1) == 0x000098, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_NormalizeToRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BooleanAND_ReturnValue) == 0x0000A0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_FClamp_ReturnValue_1) == 0x0000A8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_GetCurveValueWithDefault_OutValue) == 0x0000B0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x0000B4, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_Lerp_ReturnValue_1) == 0x0000B8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, K2Node_Select_Default) == 0x0000C8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_BooleanAND_ReturnValue_1) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_FInterpTo_Constant_ReturnValue) == 0x0000D8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, K2Node_Select_Default_1) == 0x0000E0, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_MakeRotator_ReturnValue) == 0x0000E8, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, K2Node_VariableSet_Velocity_Angle_ImplicitCast) == 0x000100, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::K2Node_VariableSet_Velocity_Angle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000108, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x000110, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000118, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_UpdateVelocity, K2Node_Select_Option_1_ImplicitCast) == 0x000120, "Member 'AnimBP_SharedEnemy_USK_C_UpdateVelocity::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform \ +static_assert(alignof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform) == 0x000010, "Wrong alignment on AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform"); \ +static_assert(sizeof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform) == 0x0000E0, "Wrong size on AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform, Socket_Name) == 0x000000, "Member 'AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform::Socket_Name' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform, Transform) == 0x000010, "Member 'AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform::Transform' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform, CallFunc_GetSocketTransform_ReturnValue) == 0x000070, "Member 'AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'AnimBP_SharedEnemy_USK_C_Weapon_Socket_Transform::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_SharedEnemy_USK_C \ +static_assert(alignof(UAnimBP_SharedEnemy_USK_C) == 0x000010, "Wrong alignment on UAnimBP_SharedEnemy_USK_C"); \ +static_assert(sizeof(UAnimBP_SharedEnemy_USK_C) == 0x007A80, "Wrong size on UAnimBP_SharedEnemy_USK_C"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, UberGraphFrame) == 0x000370, "Member 'UAnimBP_SharedEnemy_USK_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, __AnimBlueprintMutables) == 0x000378, "Member 'UAnimBP_SharedEnemy_USK_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimBlueprintExtension_PropertyAccess) == 0x0004A0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimBlueprintExtension_Base) == 0x0004A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_32) == 0x0004B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SaveCachedPose_1) == 0x0005D8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SaveCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_UseCachedPose_3) == 0x000658, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_UseCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_UseCachedPose_2) == 0x000680, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_UseCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_7) == 0x0006A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_16) == 0x000798, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_15) == 0x0007C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_14) == 0x0007E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_13) == 0x000810, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_12) == 0x000838, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_11) == 0x000860, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_10) == 0x000888, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_9) == 0x0008B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_8) == 0x0008D8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_7) == 0x000900, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_6) == 0x000928, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_35) == 0x000950, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_35' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_6) == 0x000998, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_14) == 0x000A88, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_29) == 0x000AF8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_13) == 0x000B40, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_34) == 0x000BB0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_34' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_28) == 0x000BF8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_10) == 0x000C40, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_12) == 0x000C60, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_33) == 0x000CD0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_33' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_27) == 0x000D18, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_9) == 0x000D60, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_11) == 0x000D80, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_26) == 0x000DF0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_10) == 0x000E38, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_32) == 0x000EA8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_9) == 0x000EF0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_25) == 0x000F60, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_24) == 0x000FA8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_8) == 0x000FF0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_5) == 0x001010, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_8) == 0x001038, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_7) == 0x0010A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_23) == 0x001118, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_31) == 0x001160, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_30) == 0x0011A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_22) == 0x0011F0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_21) == 0x001238, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_7) == 0x001280, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_6) == 0x0012A0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_29) == 0x001310, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_5) == 0x001358, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_28) == 0x0013C8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_20) == 0x001410, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_19) == 0x001458, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_18) == 0x0014A0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_6) == 0x0014E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_4) == 0x001508, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_3) == 0x001578, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_27) == 0x0015E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_26) == 0x001630, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_17) == 0x001678, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_16) == 0x0016C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_15) == 0x001708, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_5) == 0x001750, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateMachine_1) == 0x001770, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateMachine_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_7) == 0x001838, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_6) == 0x001880, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_5) == 0x0018C8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_31) == 0x0019B8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace_5) == 0x001AE0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace_5) == 0x001B00, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_30) == 0x001B20, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LookAt_3) == 0x001C50, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LookAt_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LookAt_2) == 0x001EA0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LookAt_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace_4) == 0x0020F0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace_4) == 0x002110, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_29) == 0x002130, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_28) == 0x002258, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_27) == 0x002380, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoBoneIK_4) == 0x0024B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoBoneIK_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoBoneIK_3) == 0x002730, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoBoneIK_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_26) == 0x0029B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BoneDrivenController_1) == 0x002AD8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BoneDrivenController_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BoneDrivenController) == 0x002C00, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BoneDrivenController' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_25) == 0x002D28, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_24) == 0x002E50, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_4) == 0x002F78, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_3) == 0x002FA0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_2) == 0x002FC8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult_1) == 0x002FF0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TransitionResult) == 0x003018, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_2) == 0x003040, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_4) == 0x0030B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_25) == 0x0030D0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ApplyMeshSpaceAdditive) == 0x003118, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ApplyMeshSpaceAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer_1) == 0x0031E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_24) == 0x003258, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_14) == 0x0032A0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_13) == 0x0032E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_23) == 0x003330, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_3) == 0x003378, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_22) == 0x003398, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_21) == 0x0033E0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_12) == 0x003428, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_11) == 0x003470, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_20) == 0x0034B8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_19) == 0x003500, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_10) == 0x003548, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_2) == 0x003590, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_18) == 0x0035B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_17) == 0x0035F8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_9) == 0x003640, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_8) == 0x003688, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_16) == 0x0036D0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_15) == 0x003718, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_7) == 0x003760, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult_1) == 0x0037A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_14) == 0x0037C8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_13) == 0x003810, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_6) == 0x003858, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_5) == 0x0038A0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_12) == 0x0038E8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_11) == 0x003930, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_4) == 0x003978, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateResult) == 0x0039C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_StateMachine) == 0x0039E0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_4) == 0x003AA8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_23) == 0x003B98, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace_3) == 0x003CC0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_22) == 0x003CE0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace_3) == 0x003E08, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_5) == 0x003E28, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_4) == 0x003E70, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_21) == 0x003EB8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_3) == 0x003FE0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_10) == 0x004028, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_3) == 0x004070, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace_2) == 0x0040B8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace_2) == 0x0040D8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendSpacePlayer) == 0x0040F8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoBoneIK_2) == 0x004170, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoBoneIK_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoBoneIK_1) == 0x0043F0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoBoneIK_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_20) == 0x004670, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_19) == 0x004798, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_9) == 0x0048C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_3) == 0x004908, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_18) == 0x0049F8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_17) == 0x004B20, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_16) == 0x004C48, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoBoneIK) == 0x004D70, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoBoneIK' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_15) == 0x004FF0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_8) == 0x005118, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_2) == 0x005160, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool_1) == 0x0051A8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_7) == 0x0051F0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_6) == 0x005238, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoWayBlend_1) == 0x005280, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByEnum) == 0x005348, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByEnum' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_5) == 0x005390, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_4) == 0x0053D8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_3) == 0x005420, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_2) == 0x005468, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalRefPose) == 0x0054B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalRefPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_2) == 0x0054C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_2) == 0x0055B0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace_1) == 0x0055F8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace_1) == 0x005618, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LinkedAnimGraph) == 0x005638, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LinkedAnimGraph' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend_1) == 0x0056F0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer_1) == 0x0057E0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_14) == 0x005828, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_UseCachedPose_1) == 0x005950, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_UseCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot_1) == 0x005978, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LayeredBoneBlend) == 0x0059C0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_UseCachedPose) == 0x005AB0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_UseCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SequencePlayer) == 0x005AD8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_BlendListByBool) == 0x005B20, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_BlendListByBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_13) == 0x005B68, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_12) == 0x005C90, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LookAt_1) == 0x005DC0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LookAt_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LookAt) == 0x006010, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LookAt' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_11) == 0x006260, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_PoseSnapshot) == 0x006388, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_TwoWayBlend) == 0x006418, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_LocalToComponentSpace) == 0x0064E0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace) == 0x006500, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_10) == 0x006520, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Slot) == 0x006648, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_SaveCachedPose) == 0x006690, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_SaveCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_Root) == 0x006710, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_9) == 0x006730, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_8) == 0x006858, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_7) == 0x006980, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_6) == 0x006AA8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_5) == 0x006BD0, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_4) == 0x006CF8, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_3) == 0x006E20, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_2) == 0x006F48, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone_1) == 0x007070, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimGraphNode_ModifyBone) == 0x007198, "Member 'UAnimBP_SharedEnemy_USK_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_50) == 0x0072C0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_50' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_49) == 0x0072D8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_49' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_48) == 0x0072F0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_48' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_47) == 0x007308, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_47' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_46) == 0x007309, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_46' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_45) == 0x007310, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_45' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_43) == 0x007328, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_43' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_42) == 0x007340, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_42' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_41) == 0x007358, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_41' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_40) == 0x007370, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_40' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_39) == 0x007378, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_39' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_38) == 0x007380, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_38' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_37) == 0x007388, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_37' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_36) == 0x007390, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_36' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_35) == 0x007398, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_35' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_34) == 0x0073A0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_34' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_33) == 0x0073A8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_33' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_32) == 0x0073B0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_31) == 0x0073B8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_30) == 0x0073C0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_29) == 0x0073C8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_28) == 0x0073D0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_27) == 0x0073D8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_26) == 0x0073E0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_25) == 0x0073E8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_24) == 0x0073F0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_23) == 0x0073F8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_22) == 0x007400, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_21) == 0x007408, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_20) == 0x007410, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_19) == 0x007411, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_18) == 0x007412, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_17) == 0x007413, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_16) == 0x007414, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_15) == 0x007415, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_14) == 0x007418, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_13) == 0x007420, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_12) == 0x007428, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_11) == 0x007430, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_10) == 0x007450, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_9) == 0x007470, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_8) == 0x007488, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_7) == 0x0074A0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_6) == 0x0074B8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_5) == 0x0074D0, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_4) == 0x0074E8, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_3) == 0x007500, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_2) == 0x007518, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess_1) == 0x007520, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, K2Node_PropertyAccess) == 0x007528, "Member 'UAnimBP_SharedEnemy_USK_C::K2Node_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, __CustomProperty_FocalPoint_040993AA4FED6094D7906AA5C4B80021) == 0x007540, "Member 'UAnimBP_SharedEnemy_USK_C::__CustomProperty_FocalPoint_040993AA4FED6094D7906AA5C4B80021' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, __CustomProperty_EndRotationRefSocket_040993AA4FED6094D7906AA5C4B80021) == 0x007558, "Member 'UAnimBP_SharedEnemy_USK_C::__CustomProperty_EndRotationRefSocket_040993AA4FED6094D7906AA5C4B80021' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Speed) == 0x007560, "Member 'UAnimBP_SharedEnemy_USK_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, FallSpeed) == 0x007568, "Member 'UAnimBP_SharedEnemy_USK_C::FallSpeed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Velocity_Angle) == 0x007570, "Member 'UAnimBP_SharedEnemy_USK_C::Velocity_Angle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsStunned) == 0x007578, "Member 'UAnimBP_SharedEnemy_USK_C::bIsStunned' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsMoving) == 0x007579, "Member 'UAnimBP_SharedEnemy_USK_C::bIsMoving' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LookYaw) == 0x007580, "Member 'UAnimBP_SharedEnemy_USK_C::LookYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LookPitch) == 0x007588, "Member 'UAnimBP_SharedEnemy_USK_C::LookPitch' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsKnocked) == 0x007590, "Member 'UAnimBP_SharedEnemy_USK_C::bIsKnocked' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsHeightened) == 0x007591, "Member 'UAnimBP_SharedEnemy_USK_C::bIsHeightened' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsAttacking) == 0x007592, "Member 'UAnimBP_SharedEnemy_USK_C::bIsAttacking' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsRunning) == 0x007593, "Member 'UAnimBP_SharedEnemy_USK_C::bIsRunning' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimSet) == 0x007598, "Member 'UAnimBP_SharedEnemy_USK_C::AnimSet' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bKnows_target_Position) == 0x0075A0, "Member 'UAnimBP_SharedEnemy_USK_C::bKnows_target_Position' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LookTargetLoc) == 0x0075A8, "Member 'UAnimBP_SharedEnemy_USK_C::LookTargetLoc' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, InvestigateTargetLoc) == 0x0075C0, "Member 'UAnimBP_SharedEnemy_USK_C::InvestigateTargetLoc' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Look_Alpha) == 0x0075D8, "Member 'UAnimBP_SharedEnemy_USK_C::Look_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Look_Alpha_Body) == 0x0075E0, "Member 'UAnimBP_SharedEnemy_USK_C::Look_Alpha_Body' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Look_Offset) == 0x0075E8, "Member 'UAnimBP_SharedEnemy_USK_C::Look_Offset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Glance_Angle) == 0x007600, "Member 'UAnimBP_SharedEnemy_USK_C::Glance_Angle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Glance_Rate) == 0x007608, "Member 'UAnimBP_SharedEnemy_USK_C::Glance_Rate' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Look_Body_Additive) == 0x007618, "Member 'UAnimBP_SharedEnemy_USK_C::Look_Body_Additive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, EyelidAdditive) == 0x007630, "Member 'UAnimBP_SharedEnemy_USK_C::EyelidAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Headstart) == 0x007638, "Member 'UAnimBP_SharedEnemy_USK_C::Headstart' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsGlancingRight) == 0x00763C, "Member 'UAnimBP_SharedEnemy_USK_C::bIsGlancingRight' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsTurning) == 0x00763D, "Member 'UAnimBP_SharedEnemy_USK_C::bIsTurning' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, StrafeForward) == 0x00763E, "Member 'UAnimBP_SharedEnemy_USK_C::StrafeForward' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AimYaw) == 0x007640, "Member 'UAnimBP_SharedEnemy_USK_C::AimYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Aim_Yaw_Hip_Blend) == 0x007648, "Member 'UAnimBP_SharedEnemy_USK_C::Aim_Yaw_Hip_Blend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Upper_Body_Alpha) == 0x007650, "Member 'UAnimBP_SharedEnemy_USK_C::Upper_Body_Alpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AimYawReset) == 0x007658, "Member 'UAnimBP_SharedEnemy_USK_C::AimYawReset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Aim_Yaw_Reset_Threshold) == 0x007660, "Member 'UAnimBP_SharedEnemy_USK_C::Aim_Yaw_Reset_Threshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AimBaseYaw) == 0x007668, "Member 'UAnimBP_SharedEnemy_USK_C::AimBaseYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AimPitch) == 0x007670, "Member 'UAnimBP_SharedEnemy_USK_C::AimPitch' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, CatchupVelocity) == 0x007678, "Member 'UAnimBP_SharedEnemy_USK_C::CatchupVelocity' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, CurrentRotation) == 0x007690, "Member 'UAnimBP_SharedEnemy_USK_C::CurrentRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, CatchupRate) == 0x0076A8, "Member 'UAnimBP_SharedEnemy_USK_C::CatchupRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AccelLean) == 0x0076B0, "Member 'UAnimBP_SharedEnemy_USK_C::AccelLean' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, bIsFalling) == 0x007710, "Member 'UAnimBP_SharedEnemy_USK_C::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LandingForce) == 0x007718, "Member 'UAnimBP_SharedEnemy_USK_C::LandingForce' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, WepSocketCorrection) == 0x007720, "Member 'UAnimBP_SharedEnemy_USK_C::WepSocketCorrection' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Accel_Clamp) == 0x007780, "Member 'UAnimBP_SharedEnemy_USK_C::Accel_Clamp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AccelDip) == 0x007788, "Member 'UAnimBP_SharedEnemy_USK_C::AccelDip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Accel_Lean_Amount) == 0x007790, "Member 'UAnimBP_SharedEnemy_USK_C::Accel_Lean_Amount' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, RangedEnemy) == 0x007794, "Member 'UAnimBP_SharedEnemy_USK_C::RangedEnemy' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, GlanceTimer) == 0x007798, "Member 'UAnimBP_SharedEnemy_USK_C::GlanceTimer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegIKAlpha) == 0x0077A0, "Member 'UAnimBP_SharedEnemy_USK_C::LegIKAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, StrafeSwitchSpeed) == 0x0077A4, "Member 'UAnimBP_SharedEnemy_USK_C::StrafeSwitchSpeed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, StrafeSwitchSafe) == 0x0077A8, "Member 'UAnimBP_SharedEnemy_USK_C::StrafeSwitchSafe' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, KnockTilt) == 0x0077B0, "Member 'UAnimBP_SharedEnemy_USK_C::KnockTilt' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, KnockTiltAlpha) == 0x0077C8, "Member 'UAnimBP_SharedEnemy_USK_C::KnockTiltAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, IsKnockedForwards) == 0x0077D0, "Member 'UAnimBP_SharedEnemy_USK_C::IsKnockedForwards' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Show_Preview_Arrows) == 0x0077D1, "Member 'UAnimBP_SharedEnemy_USK_C::Show_Preview_Arrows' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, GripOverrideAlpha) == 0x0077D4, "Member 'UAnimBP_SharedEnemy_USK_C::GripOverrideAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, MeshScale) == 0x0077D8, "Member 'UAnimBP_SharedEnemy_USK_C::MeshScale' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, HipYawRotation) == 0x0077E0, "Member 'UAnimBP_SharedEnemy_USK_C::HipYawRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, StrafeAngle) == 0x0077E8, "Member 'UAnimBP_SharedEnemy_USK_C::StrafeAngle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, JiggleOffset) == 0x0077F0, "Member 'UAnimBP_SharedEnemy_USK_C::JiggleOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, ArmIKAlpha) == 0x007800, "Member 'UAnimBP_SharedEnemy_USK_C::ArmIKAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, HandIKTarget) == 0x007810, "Member 'UAnimBP_SharedEnemy_USK_C::HandIKTarget' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Weapon) == 0x007870, "Member 'UAnimBP_SharedEnemy_USK_C::Weapon' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, IsInCombat) == 0x007878, "Member 'UAnimBP_SharedEnemy_USK_C::IsInCombat' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, EmoteStrength) == 0x007880, "Member 'UAnimBP_SharedEnemy_USK_C::EmoteStrength' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Emotion) == 0x007888, "Member 'UAnimBP_SharedEnemy_USK_C::Emotion' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, GripOverrideAlpha_L) == 0x00788C, "Member 'UAnimBP_SharedEnemy_USK_C::GripOverrideAlpha_L' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, RangedAiming) == 0x007890, "Member 'UAnimBP_SharedEnemy_USK_C::RangedAiming' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AimExtraYaw) == 0x007898, "Member 'UAnimBP_SharedEnemy_USK_C::AimExtraYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, playeraimrotation) == 0x0078A0, "Member 'UAnimBP_SharedEnemy_USK_C::playeraimrotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Posessed) == 0x0078B8, "Member 'UAnimBP_SharedEnemy_USK_C::Posessed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, PosessedHeadOffset) == 0x0078C0, "Member 'UAnimBP_SharedEnemy_USK_C::PosessedHeadOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, PosessedHeadRotation) == 0x0078D8, "Member 'UAnimBP_SharedEnemy_USK_C::PosessedHeadRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Sniping) == 0x0078F0, "Member 'UAnimBP_SharedEnemy_USK_C::Sniping' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, CombatOffset) == 0x0078F4, "Member 'UAnimBP_SharedEnemy_USK_C::CombatOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, CombatOffsetRange) == 0x0078F8, "Member 'UAnimBP_SharedEnemy_USK_C::CombatOffsetRange' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, PlayerPawn) == 0x007900, "Member 'UAnimBP_SharedEnemy_USK_C::PlayerPawn' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, ActiveCombatOffset) == 0x007908, "Member 'UAnimBP_SharedEnemy_USK_C::ActiveCombatOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, MassSwitchBlendAlpha) == 0x007920, "Member 'UAnimBP_SharedEnemy_USK_C::MassSwitchBlendAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Mass_Snapshot_Pose) == 0x007928, "Member 'UAnimBP_SharedEnemy_USK_C::Mass_Snapshot_Pose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, HasMassSnapshotPose) == 0x007960, "Member 'UAnimBP_SharedEnemy_USK_C::HasMassSnapshotPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, AnimState) == 0x007961, "Member 'UAnimBP_SharedEnemy_USK_C::AnimState' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, IdleOffset) == 0x007968, "Member 'UAnimBP_SharedEnemy_USK_C::IdleOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Idle_Speed) == 0x007970, "Member 'UAnimBP_SharedEnemy_USK_C::Idle_Speed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Oversized) == 0x007978, "Member 'UAnimBP_SharedEnemy_USK_C::Oversized' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Scalable) == 0x007979, "Member 'UAnimBP_SharedEnemy_USK_C::Scalable' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Afraid) == 0x00797A, "Member 'UAnimBP_SharedEnemy_USK_C::Afraid' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Speaking) == 0x00797B, "Member 'UAnimBP_SharedEnemy_USK_C::Speaking' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, JawJabber) == 0x007980, "Member 'UAnimBP_SharedEnemy_USK_C::JawJabber' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, EyeTarget) == 0x007998, "Member 'UAnimBP_SharedEnemy_USK_C::EyeTarget' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Looking) == 0x0079B0, "Member 'UAnimBP_SharedEnemy_USK_C::Looking' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, BodyBend) == 0x0079B8, "Member 'UAnimBP_SharedEnemy_USK_C::BodyBend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegtraceUp) == 0x0079C0, "Member 'UAnimBP_SharedEnemy_USK_C::LegtraceUp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegtraceDown) == 0x0079C8, "Member 'UAnimBP_SharedEnemy_USK_C::LegtraceDown' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegPlacementDip) == 0x0079D0, "Member 'UAnimBP_SharedEnemy_USK_C::LegPlacementDip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegPlacement_L) == 0x0079E8, "Member 'UAnimBP_SharedEnemy_USK_C::LegPlacement_L' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegPlacement_R) == 0x007A00, "Member 'UAnimBP_SharedEnemy_USK_C::LegPlacement_R' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegPlacement) == 0x007A18, "Member 'UAnimBP_SharedEnemy_USK_C::LegPlacement' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LegPlacementDistance) == 0x007A20, "Member 'UAnimBP_SharedEnemy_USK_C::LegPlacementDistance' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, LongLegs) == 0x007A28, "Member 'UAnimBP_SharedEnemy_USK_C::LongLegs' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, FootRotR) == 0x007A30, "Member 'UAnimBP_SharedEnemy_USK_C::FootRotR' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, FootRotL) == 0x007A48, "Member 'UAnimBP_SharedEnemy_USK_C::FootRotL' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, KnockTilting) == 0x007A60, "Member 'UAnimBP_SharedEnemy_USK_C::KnockTilting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, FlatFloor) == 0x007A61, "Member 'UAnimBP_SharedEnemy_USK_C::FlatFloor' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, FlatCount) == 0x007A68, "Member 'UAnimBP_SharedEnemy_USK_C::FlatCount' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, ShouldApplyPlayerOffset) == 0x007A70, "Member 'UAnimBP_SharedEnemy_USK_C::ShouldApplyPlayerOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_SharedEnemy_USK_C, Headless) == 0x007A71, "Member 'UAnimBP_SharedEnemy_USK_C::Headless' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery \ +static_assert(alignof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery) == 0x000008, "Wrong alignment on GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery"); \ +static_assert(sizeof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery) == 0x0004C0, "Wrong size on GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, Temp_bool_Variable) == 0x000039, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_CreateDelegate_OutputDelegate_1) == 0x00003C, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_WaitDelay_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000060, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000068, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_CommitAbility_ReturnValue) == 0x000080, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation) == 0x000088, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_ProjectPointToNavigation_ReturnValue) == 0x0000A0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_ProjectPointToNavigation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000A8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x0000B0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_CreateDelegate_OutputDelegate_2) == 0x0000BC, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0000D8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000E0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_VSize_ReturnValue) == 0x0000F8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000100, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_Event_bWasCancelled) == 0x000118, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000120, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000128, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000138, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_MoveDir_ReturnValue) == 0x000140, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_MoveDir_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_MoveDir_ReturnValue_1) == 0x000158, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_MoveDir_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000170, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Add_VectorVector_ReturnValue) == 0x000188, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001A0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001B8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0001D0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_MoveDir_ReturnValue_2) == 0x0001E8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_MoveDir_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_MakeStruct_GameplayEventData) == 0x000200, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0002B0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0002C8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0002E0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x0002E8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_MoveDir_ReturnValue_3) == 0x0003D0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_MoveDir_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x0003E8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_CreateDelegate_OutputDelegate_3) == 0x000400, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000410, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_VSize_ReturnValue_1) == 0x000428, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000430, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000438, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_Select_Default) == 0x000440, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000458, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000460, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1) == 0x000478, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_K2_ProjectPointToNavigation_ReturnValue_1) == 0x000490, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_K2_ProjectPointToNavigation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000498, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x0004A0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, K2Node_VariableSet_Speed_ImplicitCast) == 0x0004A8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::K2Node_VariableSet_Speed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x0004B0, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2) == 0x0004B8, "Member 'GA_EnemyReact_NavigationRecovery_C_ExecuteUbergraph_GA_EnemyReact_NavigationRecovery::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_NavigationRecovery_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_NavigationRecovery_C_MoveDir \ +static_assert(alignof(GA_EnemyReact_NavigationRecovery_C_MoveDir) == 0x000008, "Wrong alignment on GA_EnemyReact_NavigationRecovery_C_MoveDir"); \ +static_assert(sizeof(GA_EnemyReact_NavigationRecovery_C_MoveDir) == 0x000098, "Wrong size on GA_EnemyReact_NavigationRecovery_C_MoveDir"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, ReturnValue) == 0x000000, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_BreakVector_X) == 0x000050, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_BreakVector_Y) == 0x000058, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_BreakVector_Z) == 0x000060, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_MakeVector_ReturnValue) == 0x000068, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_NavigationRecovery_C_MoveDir, CallFunc_Normal_ReturnValue) == 0x000080, "Member 'GA_EnemyReact_NavigationRecovery_C_MoveDir::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_NavigationRecovery_C \ +static_assert(alignof(UGA_EnemyReact_NavigationRecovery_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_NavigationRecovery_C"); \ +static_assert(sizeof(UGA_EnemyReact_NavigationRecovery_C) == 0x000690, "Wrong size on UGA_EnemyReact_NavigationRecovery_C"); \ +static_assert(offsetof(UGA_EnemyReact_NavigationRecovery_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_NavigationRecovery_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_NavigationRecovery_C, GoalLocation) == 0x000670, "Member 'UGA_EnemyReact_NavigationRecovery_C::GoalLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_NavigationRecovery_C, TestLoop) == 0x000688, "Member 'UGA_EnemyReact_NavigationRecovery_C::TestLoop' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_NavigationRecovery_C, Speed) == 0x00068C, "Member 'UGA_EnemyReact_NavigationRecovery_C::Speed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Knocked_C_BlueprintModifyCamera \ +static_assert(alignof(CM_Knocked_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_Knocked_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_Knocked_C_BlueprintModifyCamera) == 0x0000F0, "Wrong size on CM_Knocked_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_Knocked_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_Knocked_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_Knocked_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_Knocked_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_Knocked_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_Knocked_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_Knocked_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_GetPlayerPawn_ReturnValue) == 0x000078, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000080, "Member 'CM_Knocked_C_BlueprintModifyCamera::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'CM_Knocked_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, Temp_bool_Variable) == 0x000091, "Member 'CM_Knocked_C_BlueprintModifyCamera::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000092, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_PerlinVector_ReturnValue) == 0x000098, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_PerlinVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0000B0, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue) == 0x0000D0, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_BlueprintModifyCamera, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0000E8, "Member 'CM_Knocked_C_BlueprintModifyCamera::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Knocked_C_PerlinVector \ +static_assert(alignof(CM_Knocked_C_PerlinVector) == 0x000008, "Wrong alignment on CM_Knocked_C_PerlinVector"); \ +static_assert(sizeof(CM_Knocked_C_PerlinVector) == 0x0000F8, "Wrong size on CM_Knocked_C_PerlinVector"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, Speed) == 0x000000, "Member 'CM_Knocked_C_PerlinVector::Speed' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, Strength) == 0x000018, "Member 'CM_Knocked_C_PerlinVector::Strength' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, ReturnValue) == 0x000030, "Member 'CM_Knocked_C_PerlinVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000048, "Member 'CM_Knocked_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_BreakVector_X) == 0x000050, "Member 'CM_Knocked_C_PerlinVector::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_BreakVector_Y) == 0x000058, "Member 'CM_Knocked_C_PerlinVector::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_BreakVector_Z) == 0x000060, "Member 'CM_Knocked_C_PerlinVector::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000068, "Member 'CM_Knocked_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'CM_Knocked_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000078, "Member 'CM_Knocked_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue) == 0x000080, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue_1) == 0x000084, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x000088, "Member 'CM_Knocked_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000090, "Member 'CM_Knocked_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue_2) == 0x000098, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_MakeVector_ReturnValue) == 0x0000A0, "Member 'CM_Knocked_C_PerlinVector::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B8, "Member 'CM_Knocked_C_PerlinVector::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast) == 0x0000D0, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast_1) == 0x0000D4, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_MakeVector_X_ImplicitCast) == 0x0000D8, "Member 'CM_Knocked_C_PerlinVector::CallFunc_MakeVector_X_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_MakeVector_Y_ImplicitCast) == 0x0000E0, "Member 'CM_Knocked_C_PerlinVector::CallFunc_MakeVector_Y_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast_2) == 0x0000E8, "Member 'CM_Knocked_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_Knocked_C_PerlinVector, CallFunc_MakeVector_Z_ImplicitCast) == 0x0000F0, "Member 'CM_Knocked_C_PerlinVector::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Knocked_C \ +static_assert(alignof(UCM_Knocked_C) == 0x000008, "Wrong alignment on UCM_Knocked_C"); \ +static_assert(sizeof(UCM_Knocked_C) == 0x0000A8, "Wrong size on UCM_Knocked_C"); \ +static_assert(offsetof(UCM_Knocked_C, MenuBool) == 0x0000A0, "Member 'UCM_Knocked_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_GetBehaviourActive \ +static_assert(alignof(WrestlerSniperComponent_C_GetBehaviourActive) == 0x000001, "Wrong alignment on WrestlerSniperComponent_C_GetBehaviourActive"); \ +static_assert(sizeof(WrestlerSniperComponent_C_GetBehaviourActive) == 0x000001, "Wrong size on WrestlerSniperComponent_C_GetBehaviourActive"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetBehaviourActive, Return) == 0x000000, "Member 'WrestlerSniperComponent_C_GetBehaviourActive::Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_GetLookTowardLocation \ +static_assert(alignof(WrestlerSniperComponent_C_GetLookTowardLocation) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_GetLookTowardLocation"); \ +static_assert(sizeof(WrestlerSniperComponent_C_GetLookTowardLocation) == 0x000038, "Wrong size on WrestlerSniperComponent_C_GetLookTowardLocation"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetLookTowardLocation, Return) == 0x000000, "Member 'WrestlerSniperComponent_C_GetLookTowardLocation::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetLookTowardLocation, CallFunc_GetPointMidSpline_Return) == 0x000018, "Member 'WrestlerSniperComponent_C_GetLookTowardLocation::CallFunc_GetPointMidSpline_Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetLookTowardLocation, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'WrestlerSniperComponent_C_GetLookTowardLocation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_GetSniperSpline \ +static_assert(alignof(WrestlerSniperComponent_C_GetSniperSpline) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_GetSniperSpline"); \ +static_assert(sizeof(WrestlerSniperComponent_C_GetSniperSpline) == 0x000010, "Wrong size on WrestlerSniperComponent_C_GetSniperSpline"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetSniperSpline, SniperSpline_0) == 0x000000, "Member 'WrestlerSniperComponent_C_GetSniperSpline::SniperSpline_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetSniperSpline, Valid) == 0x000008, "Member 'WrestlerSniperComponent_C_GetSniperSpline::Valid' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetSniperSpline, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerSniperComponent_C_GetSniperSpline::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_GetTargetingLocation \ +static_assert(alignof(WrestlerSniperComponent_C_GetTargetingLocation) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_GetTargetingLocation"); \ +static_assert(sizeof(WrestlerSniperComponent_C_GetTargetingLocation) == 0x000060, "Wrong size on WrestlerSniperComponent_C_GetTargetingLocation"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, TargetingLocation) == 0x000000, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::TargetingLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, CallFunc_GetOwner_ReturnValue) == 0x000018, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, CallFunc_GetAIController_ReturnValue) == 0x000020, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, CallFunc_GetTargetingLocation_TargetingLocation) == 0x000028, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::CallFunc_GetTargetingLocation_TargetingLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000040, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_GetTargetingLocation, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'WrestlerSniperComponent_C_GetTargetingLocation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_Is_Tracking_Target \ +static_assert(alignof(WrestlerSniperComponent_C_Is_Tracking_Target) == 0x000001, "Wrong alignment on WrestlerSniperComponent_C_Is_Tracking_Target"); \ +static_assert(sizeof(WrestlerSniperComponent_C_Is_Tracking_Target) == 0x000002, "Wrong size on WrestlerSniperComponent_C_Is_Tracking_Target"); \ +static_assert(offsetof(WrestlerSniperComponent_C_Is_Tracking_Target, Return) == 0x000000, "Member 'WrestlerSniperComponent_C_Is_Tracking_Target::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_Is_Tracking_Target, CallFunc_GetTrackingTarget_Return) == 0x000001, "Member 'WrestlerSniperComponent_C_Is_Tracking_Target::CallFunc_GetTrackingTarget_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_IsSplineOwned \ +static_assert(alignof(WrestlerSniperComponent_C_IsSplineOwned) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_IsSplineOwned"); \ +static_assert(sizeof(WrestlerSniperComponent_C_IsSplineOwned) == 0x000010, "Wrong size on WrestlerSniperComponent_C_IsSplineOwned"); \ +static_assert(offsetof(WrestlerSniperComponent_C_IsSplineOwned, SniperSpline_0) == 0x000000, "Member 'WrestlerSniperComponent_C_IsSplineOwned::SniperSpline_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_IsSplineOwned, Return) == 0x000008, "Member 'WrestlerSniperComponent_C_IsSplineOwned::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_IsSplineOwned, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'WrestlerSniperComponent_C_IsSplineOwned::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_SetBehaviourActive \ +static_assert(alignof(WrestlerSniperComponent_C_SetBehaviourActive) == 0x000001, "Wrong alignment on WrestlerSniperComponent_C_SetBehaviourActive"); \ +static_assert(sizeof(WrestlerSniperComponent_C_SetBehaviourActive) == 0x000001, "Wrong size on WrestlerSniperComponent_C_SetBehaviourActive"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetBehaviourActive, Active) == 0x000000, "Member 'WrestlerSniperComponent_C_SetBehaviourActive::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_SetCustomFocusEnabled \ +static_assert(alignof(WrestlerSniperComponent_C_SetCustomFocusEnabled) == 0x000001, "Wrong alignment on WrestlerSniperComponent_C_SetCustomFocusEnabled"); \ +static_assert(sizeof(WrestlerSniperComponent_C_SetCustomFocusEnabled) == 0x000001, "Wrong size on WrestlerSniperComponent_C_SetCustomFocusEnabled"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetCustomFocusEnabled, Enable) == 0x000000, "Member 'WrestlerSniperComponent_C_SetCustomFocusEnabled::Enable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_SetCustomFocusLocation \ +static_assert(alignof(WrestlerSniperComponent_C_SetCustomFocusLocation) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_SetCustomFocusLocation"); \ +static_assert(sizeof(WrestlerSniperComponent_C_SetCustomFocusLocation) == 0x000018, "Wrong size on WrestlerSniperComponent_C_SetCustomFocusLocation"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetCustomFocusLocation, Location) == 0x000000, "Member 'WrestlerSniperComponent_C_SetCustomFocusLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerSniperComponent_C_SetSniperSpline \ +static_assert(alignof(WrestlerSniperComponent_C_SetSniperSpline) == 0x000008, "Wrong alignment on WrestlerSniperComponent_C_SetSniperSpline"); \ +static_assert(sizeof(WrestlerSniperComponent_C_SetSniperSpline) == 0x000020, "Wrong size on WrestlerSniperComponent_C_SetSniperSpline"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetSniperSpline, SniperSpline_0) == 0x000000, "Member 'WrestlerSniperComponent_C_SetSniperSpline::SniperSpline_0' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetSniperSpline, Return) == 0x000008, "Member 'WrestlerSniperComponent_C_SetSniperSpline::Return' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetSniperSpline, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'WrestlerSniperComponent_C_SetSniperSpline::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerSniperComponent_C_SetSniperSpline, CallFunc_SetOwningAI_Return) == 0x000018, "Member 'WrestlerSniperComponent_C_SetSniperSpline::CallFunc_SetOwningAI_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerSniperComponent_C \ +static_assert(alignof(UWrestlerSniperComponent_C) == 0x000008, "Wrong alignment on UWrestlerSniperComponent_C"); \ +static_assert(sizeof(UWrestlerSniperComponent_C) == 0x0000E0, "Wrong size on UWrestlerSniperComponent_C"); \ +static_assert(offsetof(UWrestlerSniperComponent_C, SniperSpline) == 0x0000A0, "Member 'UWrestlerSniperComponent_C::SniperSpline' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSniperComponent_C, BehaviourActive) == 0x0000A8, "Member 'UWrestlerSniperComponent_C::BehaviourActive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSniperComponent_C, OnBehaviourUpdated) == 0x0000B0, "Member 'UWrestlerSniperComponent_C::OnBehaviourUpdated' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSniperComponent_C, FocusLocation) == 0x0000C0, "Member 'UWrestlerSniperComponent_C::FocusLocation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerSniperComponent_C, CustomFocusActive) == 0x0000D8, "Member 'UWrestlerSniperComponent_C::CustomFocusActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_Add_Attack_Warning \ +static_assert(alignof(BP_EnemyCharacterBase_C_Add_Attack_Warning) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_Add_Attack_Warning"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_Add_Attack_Warning) == 0x000010, "Wrong size on BP_EnemyCharacterBase_C_Add_Attack_Warning"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Add_Attack_Warning, Range) == 0x000000, "Member 'BP_EnemyCharacterBase_C_Add_Attack_Warning::Range' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Add_Attack_Warning, MaxDuration) == 0x000008, "Member 'BP_EnemyCharacterBase_C_Add_Attack_Warning::MaxDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_AddDamagingHit \ +static_assert(alignof(BP_EnemyCharacterBase_C_AddDamagingHit) == 0x000004, "Wrong alignment on BP_EnemyCharacterBase_C_AddDamagingHit"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_AddDamagingHit) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_AddDamagingHit"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AddDamagingHit, EventTag) == 0x000000, "Member 'BP_EnemyCharacterBase_C_AddDamagingHit::EventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_AssembleModularCharacter \ +static_assert(alignof(BP_EnemyCharacterBase_C_AssembleModularCharacter) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_AssembleModularCharacter"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_AssembleModularCharacter) == 0x000020, "Wrong size on BP_EnemyCharacterBase_C_AssembleModularCharacter"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_Greater_IntInt_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_Array_LastIndex_ReturnValue) == 0x00000C, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000010, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_AssembleModularCharacter, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_EnemyCharacterBase_C_AssembleModularCharacter::CallFunc_Array_Get_Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_CalculateFallDamage \ +static_assert(alignof(BP_EnemyCharacterBase_C_CalculateFallDamage) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_CalculateFallDamage"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_CalculateFallDamage) == 0x000070, "Wrong size on BP_EnemyCharacterBase_C_CalculateFallDamage"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Distance_Fallen) == 0x000000, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Distance_Fallen' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Damage) == 0x000008, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Temp_real_Variable) == 0x000010, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Temp_bool_Variable) == 0x000018, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000019, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00001A, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Temp_bool_Variable_1) == 0x00001B, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_BooleanOR_ReturnValue) == 0x00001C, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Temp_real_Variable_1) == 0x000020, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, Temp_bool_Variable_2) == 0x000029, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_MapRangeClamped_ReturnValue) == 0x000030, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, K2Node_Select_Default) == 0x000040, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, K2Node_Select_Default_1) == 0x000048, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, K2Node_Select_Default_2) == 0x000050, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000058, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CalculateFallDamage, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000068, "Member 'BP_EnemyCharacterBase_C_CalculateFallDamage::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_CheckObserved \ +static_assert(alignof(BP_EnemyCharacterBase_C_CheckObserved) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_CheckObserved"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_CheckObserved) == 0x0000A8, "Wrong size on BP_EnemyCharacterBase_C_CheckObserved"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, Observed) == 0x000000, "Member 'BP_EnemyCharacterBase_C_CheckObserved::Observed' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_GetControlRotation_ReturnValue) == 0x000028, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_GetPlayerPawn_ReturnValue) == 0x000040, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_GetForwardVector_ReturnValue) == 0x000048, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000068, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000080, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_Dot_VectorVector_ReturnValue) == 0x000098, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_CheckObserved, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'BP_EnemyCharacterBase_C_CheckObserved::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EndTelegraph \ +static_assert(alignof(BP_EnemyCharacterBase_C_EndTelegraph) == 0x000004, "Wrong alignment on BP_EnemyCharacterBase_C_EndTelegraph"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EndTelegraph) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_EndTelegraph"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EndTelegraph, InParamName) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EndTelegraph::InParamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0 \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_060B40BC49881E0D3F1A058EEF9D81B0::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6 \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_0A2D79F94AF499319D084EBF2CD9FFD6::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_306C49C349A8C06A859EB88EBE84994F::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_83278959435BF47E3A29639CC03853DE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399 \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_9C3C4C094F44077228BC8C9DA9AB7399::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342 \ +static_assert(alignof(BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342) == 0x0000B0, "Wrong size on BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342, Payload) == 0x000000, "Member 'BP_EnemyCharacterBase_C_EventReceived_C384F4F24A64941A56B55196947F8342::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase \ +static_assert(alignof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase) == 0x0025D8, "Wrong size on BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, EntryPoint) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000028, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue_1) == 0x000030, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_2) == 0x000038, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000048, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_AddToPlayerScreen_ReturnValue) == 0x000050, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_AddToPlayerScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue) == 0x000051, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Create_ReturnValue) == 0x000058, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000060, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_3) == 0x000068, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioComponent_OutExecBranches) == 0x000078, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioComponent_ReturnValue) == 0x000080, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000088, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetOwner_ReturnValue) == 0x000090, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_SwitchEnum_CmpSuccess) == 0x000098, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeArray_Array) == 0x0000A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_object_Variable) == 0x0000B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_object_Variable_1) == 0x0000C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_ByteByte_ReturnValue) == 0x0000D8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_IsClosed_Variable) == 0x0000D9, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_Has_Been_Initd_Variable) == 0x0000DA, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_IsClosed_Variable_1) == 0x0000DB, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_Has_Been_Initd_Variable_1) == 0x0000DC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload_4) == 0x0000E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_Has_Been_Initd_Variable_2) == 0x000190, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Loop_Counter_Variable) == 0x000194, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue) == 0x000198, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Array_Index_Variable) == 0x00019C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_NewCollisionMode_1) == 0x0001A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_NewCollisionMode_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_bRightSide_1) == 0x0001A1, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_bRightSide_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_NewCollisionMode) == 0x0001A2, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_bRightSide) == 0x0001A3, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_bRightSide' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_IsClosed_Variable_2) == 0x0001A4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_IsClosed_Variable_3) == 0x0001A5, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_bOutDebug) == 0x0001A6, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_bOutDebug' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_MoveSpeed) == 0x0001A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_MoveSpeed' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_RotationRate) == 0x0001B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_RotationRate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetBlackboard_ReturnValue) == 0x0001B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_4) == 0x0001C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetValueAsInt_ReturnValue) == 0x0001D8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetValueAsInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_EventTag) == 0x0001DC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue_1) == 0x0001E4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWidget_ReturnValue) == 0x0001E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_DynamicCast_AsWBP_Enemy_Health_Bar) == 0x0001F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_DynamicCast_AsWBP_Enemy_Health_Bar' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_DynamicCast_bSuccess) == 0x0001F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0001FC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000204, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_ReturnValue) == 0x000208, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x00020C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000210, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetBlackboard_ReturnValue_1) == 0x000218, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetBlackboard_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2) == 0x000220, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatAttribute_ReturnValue_2) == 0x000224, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatAttribute_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetBlackboard_ReturnValue_2) == 0x000228, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetBlackboard_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_1) == 0x000230, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue) == 0x000238, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000250, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000260, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000268, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Not_PreBool_ReturnValue) == 0x000350, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload) == 0x000358, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Array_Index_Variable_1) == 0x000408, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_Hit_1) == 0x000410, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_Hit_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetVelocity_ReturnValue) == 0x000508, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X) == 0x000520, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y) == 0x000528, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z) == 0x000530, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatValue_ReturnValue) == 0x000538, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_CalculateFallDamage_Damage) == 0x000540, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_CalculateFallDamage_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000548, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X_1) == 0x000560, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y_1) == 0x000568, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z_1) == 0x000570, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeStruct_ApplyDamageParams) == 0x000578, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0005A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Loop_Counter_Variable_1) == 0x0005A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0005AC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_IntInt_ReturnValue) == 0x0005B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0005B4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_CalculateFallDamage_Damage_1) == 0x0005B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_CalculateFallDamage_Damage_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0005C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0005C1, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_FMin_ReturnValue) == 0x0005C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0005D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0005E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation) == 0x0005F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ProjectPointToNavigation_ReturnValue) == 0x000608, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ProjectPointToNavigation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_6) == 0x00060C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000620, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue_2) == 0x000628, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_2) == 0x000630, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable) == 0x000638, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x0006E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue_2) == 0x0006EC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue_3) == 0x0006F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0006F4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x0006F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload_1) == 0x000700, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x0007B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_1) == 0x0007B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0007D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_7) == 0x0007E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_IntInt_ReturnValue_2) == 0x0007F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_CheckObserved_Observed) == 0x0007F9, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_CheckObserved_Observed' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsFalling_ReturnValue) == 0x0007FA, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000800, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000818, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000830, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Array_Index_Variable_2) == 0x000838, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Loop_Counter_Variable_2) == 0x00083C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_bool_Has_Been_Initd_Variable_3) == 0x000840, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue_4) == 0x000844, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000848, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAIController_ReturnValue) == 0x000850, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioComponent_OutExecBranches_1) == 0x000858, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioComponent_OutExecBranches_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioComponent_ReturnValue_1) == 0x000860, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000868, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000880, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_SwitchEnum_CmpSuccess_1) == 0x000898, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeRotFromX_ReturnValue) == 0x0008A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakRotator_Roll) == 0x0008B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakRotator_Pitch) == 0x0008BC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakRotator_Yaw) == 0x0008C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeRotator_ReturnValue) == 0x0008C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_MyComp) == 0x0008E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_MyComp' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_Other) == 0x0008E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_Other' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_OtherComp) == 0x0008F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_bSelfMoved) == 0x0008F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_bSelfMoved' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_HitLocation) == 0x000900, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_HitNormal) == 0x000918, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_NormalImpulse) == 0x000930, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_Hit) == 0x000948, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RInterpTo_Constant_ReturnValue) == 0x000A30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000A48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_CurrentValue) == 0x000A4C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_MaxValue) == 0x000A50, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetEnemyStatsDataAsset_ReturnValue) == 0x000A58, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetEnemyStatsDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000A60, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Length_ReturnValue) == 0x000A70, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Variable) == 0x000A74, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000A78, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000A90, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X_2) == 0x000AA8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y_2) == 0x000AB0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z_2) == 0x000AB8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetActorForwardVector_ReturnValue) == 0x000AC0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_2) == 0x000AD8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000AF0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Normal_ReturnValue) == 0x000AF8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000B10, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Dot_VectorVector_ReturnValue) == 0x000B18, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_FClamp_ReturnValue) == 0x000B20, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000B28, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAIController_ReturnValue_1) == 0x000B30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000B38, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000B40, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000B48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_AIHasStateTag_ReturnValue) == 0x000B50, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_3) == 0x000B58, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x000B70, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Duration) == 0x000C58, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Duration' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_3) == 0x000C60, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_AddComponentByClass_ReturnValue) == 0x000C68, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_AddComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000C70, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000C98, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000CA0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_8) == 0x000CA8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000CB8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue_3) == 0x000CC0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_FClamp_ReturnValue_1) == 0x000CC8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000CD0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_VLerp_ReturnValue) == 0x000CD8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_FClamp_ReturnValue_2) == 0x000CF0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000CF8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000D00, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayTagAddToActor_ReturnValue_1) == 0x000D18, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayTagAddToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_VSize_ReturnValue) == 0x000D20, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000D28, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_4) == 0x000D29, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000D30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_1) == 0x000D48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue) == 0x000D50, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_4) == 0x000D68, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000D80, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000D98, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000E80, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_9) == 0x000E84, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RandomUnitVector_ReturnValue) == 0x000E98, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000EB0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000EC8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000ED0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000EE8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1) == 0x000F00, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ProjectPointToNavigation_ReturnValue_1) == 0x000F18, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ProjectPointToNavigation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_5) == 0x000F19, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_10) == 0x000F1C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000F30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue_4) == 0x000F48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetDirectionUnitVector_ReturnValue_2) == 0x000F50, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetDirectionUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_OutFailureReason) == 0x000F68, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_OutFailureReason' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_TagFailure) == 0x000F70, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_TagFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_AbilityFailure) == 0x000F90, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_AbilityFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000F98, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAudioCharacterComponent_ReturnValue_3) == 0x000FA0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAudioCharacterComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetOwner_ReturnValue_1) == 0x000FA8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000FB0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsCrouching_ReturnValue) == 0x000FB1, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000FB2, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000FB3, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x000FB8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue) == 0x000FC0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Not_PreBool_ReturnValue_1) == 0x000FC1, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_6) == 0x000FC2, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanAND_ReturnValue) == 0x000FC3, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000FC8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000FE8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralDouble_ReturnValue) == 0x000FF0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_PrevMovementMode) == 0x000FF8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_NewMovementMode) == 0x000FF9, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_PrevCustomMode) == 0x000FFA, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_PrevCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_Event_NewCustomMode) == 0x000FFB, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_Event_NewCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_ReturnValue) == 0x001000, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x001008, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x001009, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanAND_ReturnValue_1) == 0x00100A, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x00100B, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue_1) == 0x00100C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x00100D, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x001010, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeStruct_ApplyDamageParams_2) == 0x001018, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeStruct_ApplyDamageParams_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x001040, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x001041, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetPlayerPawn_ReturnValue) == 0x001048, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_7) == 0x001050, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x001058, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x001070, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_4) == 0x001088, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasTag_ReturnValue) == 0x0010A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_object_Variable_2) == 0x0010A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ApplyDamage_ReturnValue_2) == 0x0010B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ApplyDamage_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleByProfile_OutHit) == 0x0010C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleByProfile_ReturnValue) == 0x0011A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1) == 0x0011AC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Array_Index_Variable_3) == 0x0011B4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Get_Item) == 0x0011B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0011C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Variable_1) == 0x0011C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_8) == 0x0011CC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetGameTimeSinceCreation_ReturnValue) == 0x0011D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetGameTimeSinceCreation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue_3) == 0x0011D8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0011E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_9) == 0x0011E1, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0011E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x001208, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x001210, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x001230, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable_1) == 0x001238, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable_2) == 0x0012E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWidget_ReturnValue_1) == 0x001398, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWidget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_DynamicCast_AsWBP_Enemy_Health_Bar_1) == 0x0013A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_DynamicCast_AsWBP_Enemy_Health_Bar_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_DynamicCast_bSuccess_1) == 0x0013A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x0013B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x0013D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RandomIntegerInRange_ReturnValue) == 0x0013D4, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_IntToByte_ReturnValue) == 0x0013D8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetComponentsByTag_ReturnValue) == 0x0013E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetComponentsByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Get_Item_1) == 0x0013F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Length_ReturnValue_1) == 0x0013F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Less_IntInt_ReturnValue) == 0x0013FC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_8) == 0x0013FD, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Get_Item_2) == 0x001400, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_10) == 0x001408, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Length_ReturnValue_2) == 0x00140C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x001410, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Max_ReturnValue) == 0x001414, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x001418, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x001430, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_9) == 0x001448, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x001450, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload_5) == 0x001468, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_10) == 0x001518, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload_2) == 0x001520, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_11) == 0x0015D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_11) == 0x0015E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0015E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetAIController_ReturnValue_2) == 0x0015F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_11) == 0x0015F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetTargetActor_ReturnValue) == 0x001600, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x001608, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Range) == 0x001610, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Range' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_MaxDuration) == 0x001618, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_MaxDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_12) == 0x001620, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Variable_2) == 0x001624, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_13) == 0x001628, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetTimeRange_MinTime) == 0x00162C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetTimeRange_MinTime' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetTimeRange_MaxTime) == 0x001630, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetTimeRange_MaxTime' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetTimerDelegate_ReturnValue_5) == 0x001638, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetTimerDelegate_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetTimerElapsedTimeHandle_ReturnValue) == 0x001640, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetTimerElapsedTimeHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_IsTimerActiveHandle_ReturnValue) == 0x001644, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_IsTimerActiveHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatValue_ReturnValue_1) == 0x001648, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_InParamName_1) == 0x00164C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_InParamName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_InParamName) == 0x001654, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_InParamName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_12) == 0x00165C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x001670, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue_4) == 0x001688, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_5) == 0x001690, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_14) == 0x0016A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LethalFallCheck_IsLethal) == 0x0016A9, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LethalFallCheck_IsLethal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable_3) == 0x0016B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CustomEvent_Payload_3) == 0x001760, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CustomEvent_Payload_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x001810, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X_3) == 0x001828, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y_3) == 0x001830, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z_3) == 0x001838, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeArray_Array_1) == 0x001840, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_FMax_ReturnValue) == 0x001850, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsFalling_ReturnValue_1) == 0x001858, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_12) == 0x001859, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X_4) == 0x001860, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y_4) == 0x001868, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z_4) == 0x001870, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasMatchingGameplayTag_ReturnValue_13) == 0x001878, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasMatchingGameplayTag_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Abs_ReturnValue) == 0x001880, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x001888, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_13) == 0x00188C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_VSizeSquared_ReturnValue) == 0x0018A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0018A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue_2) == 0x0018A9, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_2) == 0x0018AC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue_3) == 0x0018B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0018B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue_4) == 0x0018C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0018C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BooleanOR_ReturnValue_5) == 0x0018D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BooleanOR_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_5) == 0x0018D8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_10) == 0x0018F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x001908, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_3) == 0x001920, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleByProfile_OutHit_1) == 0x001928, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleByProfile_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleByProfile_ReturnValue_1) == 0x001A10, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleByProfile_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_6) == 0x001A18, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_VectorVector_ReturnValue_6) == 0x001A30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetActorLocation_SweepHitResult_1) == 0x001A48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetActorLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_SetActorLocation_ReturnValue_1) == 0x001B30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_SetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsWalking_ReturnValue) == 0x001B31, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_bBlockingHit) == 0x001B32, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_bInitialOverlap) == 0x001B33, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_Time) == 0x001B34, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_Distance) == 0x001B38, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_Location) == 0x001B40, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_ImpactPoint) == 0x001B58, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_Normal) == 0x001B70, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_ImpactNormal) == 0x001B88, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_PhysMat) == 0x001BA0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_HitActor) == 0x001BA8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_HitComponent) == 0x001BB0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_HitBoneName) == 0x001BB8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_BoneName) == 0x001BC0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_HitItem) == 0x001BC8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_ElementIndex) == 0x001BCC, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_FaceIndex) == 0x001BD0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_TraceStart) == 0x001BD8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakHitResult_TraceEnd) == 0x001BF0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x001C08, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x001C28, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_4) == 0x001C2C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x001C30, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_ByteByte_ReturnValue) == 0x001C38, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x001C40, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_7) == 0x001C48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_8) == 0x001C60, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorLocalOffset_SweepHitResult_1) == 0x001C78, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorLocalOffset_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorLocalOffset_SweepHitResult_2) == 0x001D60, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorLocalOffset_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x001E48, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_9) == 0x001E50, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_10) == 0x001E68, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorLocalOffset_SweepHitResult_3) == 0x001E80, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorLocalOffset_SweepHitResult_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorLocalOffset_SweepHitResult_4) == 0x001F68, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorLocalOffset_SweepHitResult_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_CreateDelegate_OutputDelegate_14) == 0x002050, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x002060, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_int_Loop_Counter_Variable_3) == 0x002064, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_MakeArray_Array_2) == 0x002068, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Less_IntInt_ReturnValue_1) == 0x002078, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_IntInt_ReturnValue_5) == 0x00207C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_11) == 0x002080, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_5) == 0x002098, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0020A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetWorldDeltaSeconds_ReturnValue_2) == 0x0020A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetWorldDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_11) == 0x0020B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0020C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_VectorVector_ReturnValue_2) == 0x0020E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0020F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x0021E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0021E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable_4) == 0x002200, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_WaitGameplayEventToActor_ReturnValue_5) == 0x0022B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_WaitGameplayEventToActor_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_IsValid_ReturnValue_15) == 0x0022B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, Temp_struct_Variable_5) == 0x0022C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_12) == 0x002370, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetOverlappingActors_OverlappingActors) == 0x002388, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x002398, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Get_Item_3) == 0x0023A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_GetActorLocation_ReturnValue_13) == 0x0023A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_GetActorLocation_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Array_Length_ReturnValue_3) == 0x0023C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetDirectionUnitVector_ReturnValue_3) == 0x0023C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetDirectionUnitVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Less_IntInt_ReturnValue_2) == 0x0023E0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_X_5) == 0x0023E8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Y_5) == 0x0023F0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_BreakVector_Z_5) == 0x0023F8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_ReturnValue_12) == 0x002400, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Normal_ReturnValue_1) == 0x002418, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x002430, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x002448, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x002460, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RInterpTo_Constant_InterpSpeed_ImplicitCast) == 0x002548, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RInterpTo_Constant_InterpSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x00254C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_CalculateFallDamage_Distance_Fallen_ImplicitCast) == 0x002550, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_CalculateFallDamage_Distance_Fallen_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x002554, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_Z_ImplicitCast) == 0x002558, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, K2Node_VariableSet_CachedCapsuleRadius_ImplicitCast) == 0x002560, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::K2Node_VariableSet_CachedCapsuleRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RInterpTo_Constant_DeltaTime_ImplicitCast) == 0x002568, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_InitHealthbar_InStunThreshold_ImplicitCast) == 0x002570, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_InitHealthbar_InStunThreshold_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x002578, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_VLerp_Alpha_ImplicitCast) == 0x00257C, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_Z_ImplicitCast_1) == 0x002580, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_Z_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_K2_ApplyDamage_Amount_ImplicitCast_1) == 0x002588, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_K2_ApplyDamage_Amount_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x002590, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Ledgeslip_Duration_ImplicitCast) == 0x002598, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Ledgeslip_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x0025A0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x0025A8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0025B0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_MakeVector_Z_ImplicitCast_2) == 0x0025B8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_MakeVector_Z_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0025C0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0025C8, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0025D0, "Member 'BP_EnemyCharacterBase_C_ExecuteUbergraph_BP_EnemyCharacterBase::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point \ +static_assert(alignof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point) == 0x0000E8, "Wrong size on BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, FocalLocation) == 0x000000, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::FocalLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, InterestTags) == 0x000018, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::InterestTags' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, Actor) == 0x000038, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CachedActors) == 0x000040, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CachedActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, ChosenActor) == 0x000050, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::ChosenActor' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, Temp_bool_True_if_break_was_hit_Variable) == 0x000058, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, Temp_int_Array_Index_Variable) == 0x00005C, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Not_PreBool_ReturnValue) == 0x000060, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Array_Random_OutItem) == 0x000068, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Array_Random_OutIndex) == 0x000070, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Array_Get_Item) == 0x000078, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000080, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000091, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Array_Length_ReturnValue) == 0x000094, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_IsValid_ReturnValue) == 0x000098, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, Temp_int_Loop_Counter_Variable) == 0x00009C, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Less_IntInt_ReturnValue) == 0x0000A0, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_Add_IntInt_ReturnValue) == 0x0000A4, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_BooleanAND_ReturnValue) == 0x0000A8, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, Temp_bool_Variable) == 0x0000A9, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, K2Node_MakeArray_Array) == 0x0000B0, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, K2Node_MakeArray_Array_1) == 0x0000C0, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_SphereOverlapActors_OutActors) == 0x0000D0, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point, CallFunc_SphereOverlapActors_ReturnValue) == 0x0000E0, "Member 'BP_EnemyCharacterBase_C_Get_Object_at_Focal_Point::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_GetPunchTargetDataFilter \ +static_assert(alignof(BP_EnemyCharacterBase_C_GetPunchTargetDataFilter) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_GetPunchTargetDataFilter"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_GetPunchTargetDataFilter) == 0x000040, "Wrong size on BP_EnemyCharacterBase_C_GetPunchTargetDataFilter"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_GetPunchTargetDataFilter, ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_GetPunchTargetDataFilter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_GetPunchTargetDataFilter, K2Node_MakeStruct_GameplayTargetDataFilter) == 0x000010, "Member 'BP_EnemyCharacterBase_C_GetPunchTargetDataFilter::K2Node_MakeStruct_GameplayTargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_GetPunchTargetDataFilter, CallFunc_MakeFilterHandle_ReturnValue) == 0x000030, "Member 'BP_EnemyCharacterBase_C_GetPunchTargetDataFilter::CallFunc_MakeFilterHandle_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_GetThrowableComponent \ +static_assert(alignof(BP_EnemyCharacterBase_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_InitializeHeightenedSenses \ +static_assert(alignof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_InitializeHeightenedSenses"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses) == 0x0000B8, "Wrong size on BP_EnemyCharacterBase_C_InitializeHeightenedSenses"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses, MPC) == 0x000000, "Member 'BP_EnemyCharacterBase_C_InitializeHeightenedSenses::MPC' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses, CharacterType) == 0x000008, "Member 'BP_EnemyCharacterBase_C_InitializeHeightenedSenses::CharacterType' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses, referencetableStencil) == 0x000018, "Member 'BP_EnemyCharacterBase_C_InitializeHeightenedSenses::referencetableStencil' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_InitializeHeightenedSenses, referencetableColor) == 0x000068, "Member 'BP_EnemyCharacterBase_C_InitializeHeightenedSenses::referencetableColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_IsInCombat \ +static_assert(alignof(BP_EnemyCharacterBase_C_IsInCombat) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_IsInCombat"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_IsInCombat) == 0x000001, "Wrong size on BP_EnemyCharacterBase_C_IsInCombat"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_IsInCombat, ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_IsInCombat::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_K2_OnMovementModeChanged \ +static_assert(alignof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_K2_OnMovementModeChanged"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged) == 0x000004, "Wrong size on BP_EnemyCharacterBase_C_K2_OnMovementModeChanged"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged, PrevMovementMode) == 0x000000, "Member 'BP_EnemyCharacterBase_C_K2_OnMovementModeChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged, NewMovementMode) == 0x000001, "Member 'BP_EnemyCharacterBase_C_K2_OnMovementModeChanged::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged, PrevCustomMode) == 0x000002, "Member 'BP_EnemyCharacterBase_C_K2_OnMovementModeChanged::PrevCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_K2_OnMovementModeChanged, NewCustomMode) == 0x000003, "Member 'BP_EnemyCharacterBase_C_K2_OnMovementModeChanged::NewCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_LedgeReset \ +static_assert(alignof(BP_EnemyCharacterBase_C_LedgeReset) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_LedgeReset"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_LedgeReset) == 0x0003C8, "Wrong size on BP_EnemyCharacterBase_C_LedgeReset"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000030, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_MakeVector_ReturnValue) == 0x000040, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_1) == 0x000070, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x000078, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_MakeVector_ReturnValue_1) == 0x000160, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, Temp_object_Variable) == 0x000178, "Member 'BP_EnemyCharacterBase_C_LedgeReset::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_VectorVector_ReturnValue) == 0x000188, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_LineTraceSingleByProfile_OutHit) == 0x0001A0, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_LineTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_LineTraceSingleByProfile_ReturnValue) == 0x000288, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_LineTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000290, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000378, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_BreakVector_X) == 0x000380, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_BreakVector_Y) == 0x000388, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_BreakVector_Z) == 0x000390, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Abs_ReturnValue) == 0x000398, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0003A0, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_BooleanOR_ReturnValue) == 0x0003A1, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_BooleanOR_ReturnValue_1) == 0x0003A2, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x0003A8, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0003B0, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x0003B8, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LedgeReset, CallFunc_MakeVector_Z_ImplicitCast) == 0x0003C0, "Member 'BP_EnemyCharacterBase_C_LedgeReset::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_Ledgeslip \ +static_assert(alignof(BP_EnemyCharacterBase_C_Ledgeslip) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_Ledgeslip"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_Ledgeslip) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_Ledgeslip"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_Ledgeslip, Duration) == 0x000000, "Member 'BP_EnemyCharacterBase_C_Ledgeslip::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_LethalFallCheck \ +static_assert(alignof(BP_EnemyCharacterBase_C_LethalFallCheck) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_LethalFallCheck"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_LethalFallCheck) == 0x0001D0, "Wrong size on BP_EnemyCharacterBase_C_LethalFallCheck"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, IsLethal) == 0x000000, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::IsLethal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, Temp_object_Variable) == 0x000008, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000018, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_MakeVector_ReturnValue) == 0x000038, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_MakeVector_ReturnValue_1) == 0x000070, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000088, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_GetVelocity_ReturnValue) == 0x0000A0, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_LineTraceSingle_OutHit) == 0x0000B8, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_LineTraceSingle_ReturnValue) == 0x0001A0, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_BreakVector_X) == 0x0001A8, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_BreakVector_Y) == 0x0001B0, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_BreakVector_Z) == 0x0001B8, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_LethalFallCheck, CallFunc_MakeVector_Z_ImplicitCast) == 0x0001C8, "Member 'BP_EnemyCharacterBase_C_LethalFallCheck::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_OnAbilityFailed \ +static_assert(alignof(BP_EnemyCharacterBase_C_OnAbilityFailed) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_OnAbilityFailed"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_OnAbilityFailed) == 0x000030, "Wrong size on BP_EnemyCharacterBase_C_OnAbilityFailed"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnAbilityFailed, OutFailureReason) == 0x000000, "Member 'BP_EnemyCharacterBase_C_OnAbilityFailed::OutFailureReason' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnAbilityFailed, TagFailure) == 0x000008, "Member 'BP_EnemyCharacterBase_C_OnAbilityFailed::TagFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnAbilityFailed, AbilityFailure) == 0x000028, "Member 'BP_EnemyCharacterBase_C_OnAbilityFailed::AbilityFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_OnLanded \ +static_assert(alignof(BP_EnemyCharacterBase_C_OnLanded) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_OnLanded"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_OnLanded) == 0x0000E8, "Wrong size on BP_EnemyCharacterBase_C_OnLanded"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnLanded, Hit) == 0x000000, "Member 'BP_EnemyCharacterBase_C_OnLanded::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_OnStunChanged_Event \ +static_assert(alignof(BP_EnemyCharacterBase_C_OnStunChanged_Event) == 0x000004, "Wrong alignment on BP_EnemyCharacterBase_C_OnStunChanged_Event"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_OnStunChanged_Event) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_OnStunChanged_Event"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnStunChanged_Event, CurrentValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_OnStunChanged_Event::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OnStunChanged_Event, MaxValue) == 0x000004, "Member 'BP_EnemyCharacterBase_C_OnStunChanged_Event::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_OverrideTargetViewPoint \ +static_assert(alignof(BP_EnemyCharacterBase_C_OverrideTargetViewPoint) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_OverrideTargetViewPoint"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_OverrideTargetViewPoint) == 0x000030, "Wrong size on BP_EnemyCharacterBase_C_OverrideTargetViewPoint"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OverrideTargetViewPoint, OutLocation) == 0x000000, "Member 'BP_EnemyCharacterBase_C_OverrideTargetViewPoint::OutLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_OverrideTargetViewPoint, OutRotation) == 0x000018, "Member 'BP_EnemyCharacterBase_C_OverrideTargetViewPoint::OutRotation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ReceiveHit \ +static_assert(alignof(BP_EnemyCharacterBase_C_ReceiveHit) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_ReceiveHit"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ReceiveHit) == 0x000150, "Wrong size on BP_EnemyCharacterBase_C_ReceiveHit"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, MyComp) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::MyComp' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, Other) == 0x000008, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::Other' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, OtherComp) == 0x000010, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, bSelfMoved) == 0x000018, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::bSelfMoved' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, HitLocation) == 0x000020, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, HitNormal) == 0x000038, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, NormalImpulse) == 0x000050, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReceiveHit, Hit) == 0x000068, "Member 'BP_EnemyCharacterBase_C_ReceiveHit::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent \ +static_assert(alignof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent) == 0x0001C8, "Wrong size on BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, OverlappedComponent) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, OtherActor) == 0x000008, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, Sweep) == 0x000010, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::Sweep' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, CallFunc_GetPunchTargetDataFilter_ReturnValue) == 0x0000F8, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::CallFunc_GetPunchTargetDataFilter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_OutPins) == 0x000108, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_ReturnValue) == 0x000110, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent, K2Node_SwitchEnum_CmpSuccess) == 0x0001C0, "Member 'BP_EnemyCharacterBase_C_ReportMeleeHitGameplayEvent::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetAudioSwitch \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetAudioSwitch) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_SetAudioSwitch"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetAudioSwitch) == 0x000030, "Wrong size on BP_EnemyCharacterBase_C_SetAudioSwitch"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000010, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000018, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_RandomFloatInRange_ReturnValue) == 0x000020, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAudioSwitch, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000028, "Member 'BP_EnemyCharacterBase_C_SetAudioSwitch::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetAvoidanceOptions \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetAvoidanceOptions) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_SetAvoidanceOptions"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetAvoidanceOptions) == 0x000030, "Wrong size on BP_EnemyCharacterBase_C_SetAvoidanceOptions"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAvoidanceOptions, CallFunc_GetOwnedGameplayTags_TagContainer) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetAvoidanceOptions::CallFunc_GetOwnedGameplayTags_TagContainer' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAvoidanceOptions, K2Node_MakeStruct_NavAvoidanceMask) == 0x000020, "Member 'BP_EnemyCharacterBase_C_SetAvoidanceOptions::K2Node_MakeStruct_NavAvoidanceMask' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAvoidanceOptions, CallFunc_HasTag_ReturnValue) == 0x000024, "Member 'BP_EnemyCharacterBase_C_SetAvoidanceOptions::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAvoidanceOptions, K2Node_MakeStruct_NavAvoidanceMask_1) == 0x000028, "Member 'BP_EnemyCharacterBase_C_SetAvoidanceOptions::K2Node_MakeStruct_NavAvoidanceMask_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetAvoidanceOptions, K2Node_MakeStruct_NavAvoidanceMask_2) == 0x00002C, "Member 'BP_EnemyCharacterBase_C_SetAvoidanceOptions::K2Node_MakeStruct_NavAvoidanceMask_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetHeightenedParticleColor \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetHeightenedParticleColor) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_SetHeightenedParticleColor"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetHeightenedParticleColor) == 0x000018, "Wrong size on BP_EnemyCharacterBase_C_SetHeightenedParticleColor"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetHeightenedParticleColor, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetHeightenedParticleColor::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetHeightenedParticleColor, CallFunc_GetAIController_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_SetHeightenedParticleColor::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetHeightenedParticleColor, CallFunc_AIHasStateTag_ReturnValue) == 0x000010, "Member 'BP_EnemyCharacterBase_C_SetHeightenedParticleColor::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetMeleeCollision \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetMeleeCollision) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_SetMeleeCollision"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetMeleeCollision) == 0x000002, "Wrong size on BP_EnemyCharacterBase_C_SetMeleeCollision"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetMeleeCollision, bRightSide) == 0x000001, "Member 'BP_EnemyCharacterBase_C_SetMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetPatrolRouteByName \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetPatrolRouteByName) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_SetPatrolRouteByName"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetPatrolRouteByName) == 0x000040, "Wrong size on BP_EnemyCharacterBase_C_SetPatrolRouteByName"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, InName) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::InName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, RequireRouteActive) == 0x000008, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::RequireRouteActive' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_GetAllActorsOfClassWithTag_OutActors) == 0x000010, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_GetAllActorsOfClassWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_Add_IntInt_ReturnValue) == 0x000030, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, Temp_bool_True_if_break_was_hit_Variable) == 0x000038, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_Less_IntInt_ReturnValue) == 0x000039, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_Not_PreBool_ReturnValue) == 0x00003A, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetPatrolRouteByName, CallFunc_BooleanAND_ReturnValue) == 0x00003B, "Member 'BP_EnemyCharacterBase_C_SetPatrolRouteByName::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision \ +static_assert(alignof(BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision) == 0x000002, "Wrong size on BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision, bRightSide) == 0x000001, "Member 'BP_EnemyCharacterBase_C_SetSecondaryMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_StartTelegraph \ +static_assert(alignof(BP_EnemyCharacterBase_C_StartTelegraph) == 0x000004, "Wrong alignment on BP_EnemyCharacterBase_C_StartTelegraph"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_StartTelegraph) == 0x000008, "Wrong size on BP_EnemyCharacterBase_C_StartTelegraph"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_StartTelegraph, InParamName) == 0x000000, "Member 'BP_EnemyCharacterBase_C_StartTelegraph::InParamName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ToggleDebug \ +static_assert(alignof(BP_EnemyCharacterBase_C_ToggleDebug) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_ToggleDebug"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ToggleDebug) == 0x000001, "Wrong size on BP_EnemyCharacterBase_C_ToggleDebug"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleDebug, bOutDebug) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ToggleDebug::bOutDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ToggleHeightenedSenses \ +static_assert(alignof(BP_EnemyCharacterBase_C_ToggleHeightenedSenses) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_ToggleHeightenedSenses"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ToggleHeightenedSenses) == 0x000002, "Wrong size on BP_EnemyCharacterBase_C_ToggleHeightenedSenses"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleHeightenedSenses, State) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ToggleHeightenedSenses::State' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleHeightenedSenses, ChangeColorOnly) == 0x000001, "Member 'BP_EnemyCharacterBase_C_ToggleHeightenedSenses::ChangeColorOnly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_ToggleUVGlow \ +static_assert(alignof(BP_EnemyCharacterBase_C_ToggleUVGlow) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_ToggleUVGlow"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_ToggleUVGlow) == 0x000068, "Wrong size on BP_EnemyCharacterBase_C_ToggleUVGlow"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, Temp_real_Variable) == 0x000000, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x00002C, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_Add_IntInt_ReturnValue) == 0x000030, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000038, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, Temp_int_Array_Index_Variable) == 0x000048, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_Array_Get_Item) == 0x000050, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, Temp_bool_Variable) == 0x000059, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, Temp_real_Variable_1) == 0x00005C, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_ToggleUVGlow, K2Node_Select_Default) == 0x000060, "Member 'BP_EnemyCharacterBase_C_ToggleUVGlow::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_TrackTarget \ +static_assert(alignof(BP_EnemyCharacterBase_C_TrackTarget) == 0x000008, "Wrong alignment on BP_EnemyCharacterBase_C_TrackTarget"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_TrackTarget) == 0x000010, "Wrong size on BP_EnemyCharacterBase_C_TrackTarget"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_TrackTarget, MoveSpeed) == 0x000000, "Member 'BP_EnemyCharacterBase_C_TrackTarget::MoveSpeed' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_TrackTarget, RotationRate) == 0x000008, "Member 'BP_EnemyCharacterBase_C_TrackTarget::RotationRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyCharacterBase_C_IsTargetable \ +static_assert(alignof(BP_EnemyCharacterBase_C_IsTargetable) == 0x000001, "Wrong alignment on BP_EnemyCharacterBase_C_IsTargetable"); \ +static_assert(sizeof(BP_EnemyCharacterBase_C_IsTargetable) == 0x000001, "Wrong size on BP_EnemyCharacterBase_C_IsTargetable"); \ +static_assert(offsetof(BP_EnemyCharacterBase_C_IsTargetable, ReturnValue) == 0x000000, "Member 'BP_EnemyCharacterBase_C_IsTargetable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemyCharacterBase_C \ +static_assert(alignof(ABP_EnemyCharacterBase_C) == 0x000010, "Wrong alignment on ABP_EnemyCharacterBase_C"); \ +static_assert(sizeof(ABP_EnemyCharacterBase_C) == 0x0010B0, "Wrong size on ABP_EnemyCharacterBase_C"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, UberGraphFrame) == 0x000E20, "Member 'ABP_EnemyCharacterBase_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, HeadCollider) == 0x000E28, "Member 'ABP_EnemyCharacterBase_C::HeadCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, FootstepNoiseComponent) == 0x000E30, "Member 'ABP_EnemyCharacterBase_C::FootstepNoiseComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerWeaponStowComponent) == 0x000E38, "Member 'ABP_EnemyCharacterBase_C::WrestlerWeaponStowComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerFocusHelperComponent) == 0x000E40, "Member 'ABP_EnemyCharacterBase_C::WrestlerFocusHelperComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerDefendZoneComponent) == 0x000E48, "Member 'ABP_EnemyCharacterBase_C::WrestlerDefendZoneComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerReactionMemoryComponent) == 0x000E50, "Member 'ABP_EnemyCharacterBase_C::WrestlerReactionMemoryComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerEnemyMoveInput) == 0x000E58, "Member 'ABP_EnemyCharacterBase_C::WrestlerEnemyMoveInput' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, PhysCollider) == 0x000E60, "Member 'ABP_EnemyCharacterBase_C::PhysCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerEmotionComponent) == 0x000E68, "Member 'ABP_EnemyCharacterBase_C::WrestlerEmotionComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, MotionWarping) == 0x000E70, "Member 'ABP_EnemyCharacterBase_C::MotionWarping' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, WrestlerModularCharacter) == 0x000E78, "Member 'ABP_EnemyCharacterBase_C::WrestlerModularCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Timeline_NewTrack_0_C3E9FAEF4B0B32B3F81D53907CED842F) == 0x000E80, "Member 'ABP_EnemyCharacterBase_C::Timeline_NewTrack_0_C3E9FAEF4B0B32B3F81D53907CED842F' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Timeline__Direction_C3E9FAEF4B0B32B3F81D53907CED842F) == 0x000E84, "Member 'ABP_EnemyCharacterBase_C::Timeline__Direction_C3E9FAEF4B0B32B3F81D53907CED842F' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Timeline) == 0x000E88, "Member 'ABP_EnemyCharacterBase_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StunThreshold) == 0x000E90, "Member 'ABP_EnemyCharacterBase_C::StunThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StateText) == 0x000E98, "Member 'ABP_EnemyCharacterBase_C::StateText' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StateTexture) == 0x000EB0, "Member 'ABP_EnemyCharacterBase_C::StateTexture' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Death_0) == 0x000EB8, "Member 'ABP_EnemyCharacterBase_C::Death_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Debug) == 0x000EC0, "Member 'ABP_EnemyCharacterBase_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, EscalationComp) == 0x000EC8, "Member 'ABP_EnemyCharacterBase_C::EscalationComp' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, PlayerActor) == 0x000ED0, "Member 'ABP_EnemyCharacterBase_C::PlayerActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, PlayerAbilitySystem) == 0x000ED8, "Member 'ABP_EnemyCharacterBase_C::PlayerAbilitySystem' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, ReceivedHitsName) == 0x000EE0, "Member 'ABP_EnemyCharacterBase_C::ReceivedHitsName' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, RegenDelay_AfterAttack) == 0x000EE8, "Member 'ABP_EnemyCharacterBase_C::RegenDelay_AfterAttack' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, RegenDelay_AfterStun) == 0x000EEC, "Member 'ABP_EnemyCharacterBase_C::RegenDelay_AfterStun' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, IsStunnedName) == 0x000EF0, "Member 'ABP_EnemyCharacterBase_C::IsStunnedName' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StunTag) == 0x000EF8, "Member 'ABP_EnemyCharacterBase_C::StunTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StunRegenDelayTimer) == 0x000F00, "Member 'ABP_EnemyCharacterBase_C::StunRegenDelayTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, StunRegenTags) == 0x000F08, "Member 'ABP_EnemyCharacterBase_C::StunRegenTags' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, TelegraphTimer) == 0x000F28, "Member 'ABP_EnemyCharacterBase_C::TelegraphTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, TelegraphParam) == 0x000F30, "Member 'ABP_EnemyCharacterBase_C::TelegraphParam' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, TelegraphCurve) == 0x000F38, "Member 'ABP_EnemyCharacterBase_C::TelegraphCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, DropTKObjectChance) == 0x000F40, "Member 'ABP_EnemyCharacterBase_C::DropTKObjectChance' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, CurrentAgentHealth) == 0x000F48, "Member 'ABP_EnemyCharacterBase_C::CurrentAgentHealth' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, AgentMaxHealth) == 0x000F50, "Member 'ABP_EnemyCharacterBase_C::AgentMaxHealth' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, AttackWarningUI) == 0x000F58, "Member 'ABP_EnemyCharacterBase_C::AttackWarningUI' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Debug_Widget_Component) == 0x000F60, "Member 'ABP_EnemyCharacterBase_C::Debug_Widget_Component' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Debug_UI_Z_offset) == 0x000F68, "Member 'ABP_EnemyCharacterBase_C::Debug_UI_Z_offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Heightened_VFX) == 0x000F70, "Member 'ABP_EnemyCharacterBase_C::Heightened_VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, HeightenedSensePassive) == 0x000F78, "Member 'ABP_EnemyCharacterBase_C::HeightenedSensePassive' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, HeightenedSenseAgressive) == 0x000F88, "Member 'ABP_EnemyCharacterBase_C::HeightenedSenseAgressive' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Heightened_VFX_Mat) == 0x000F98, "Member 'ABP_EnemyCharacterBase_C::Heightened_VFX_Mat' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, HeightenedSenseCharacterIsAlive) == 0x000FA0, "Member 'ABP_EnemyCharacterBase_C::HeightenedSenseCharacterIsAlive' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Heightened_Capture_) == 0x000FA8, "Member 'ABP_EnemyCharacterBase_C::Heightened_Capture_' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, NewVar) == 0x000FB0, "Member 'ABP_EnemyCharacterBase_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Feed_Sequence_Override) == 0x000FC0, "Member 'ABP_EnemyCharacterBase_C::Feed_Sequence_Override' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, FallMinimumHeight) == 0x000FC8, "Member 'ABP_EnemyCharacterBase_C::FallMinimumHeight' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, FallKillHeight) == 0x000FD0, "Member 'ABP_EnemyCharacterBase_C::FallKillHeight' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, FallApex) == 0x000FD8, "Member 'ABP_EnemyCharacterBase_C::FallApex' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, FallCurve) == 0x000FE0, "Member 'ABP_EnemyCharacterBase_C::FallCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, MinFallDamage) == 0x000FE8, "Member 'ABP_EnemyCharacterBase_C::MinFallDamage' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, MaxFallDamage) == 0x000FF0, "Member 'ABP_EnemyCharacterBase_C::MaxFallDamage' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, Fall_Kill_Damage) == 0x000FF8, "Member 'ABP_EnemyCharacterBase_C::Fall_Kill_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, NoiseMakerTimerHandle) == 0x001000, "Member 'ABP_EnemyCharacterBase_C::NoiseMakerTimerHandle' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, OffNavLoopCount) == 0x001008, "Member 'ABP_EnemyCharacterBase_C::OffNavLoopCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, OffNavRecoveryPosition) == 0x001010, "Member 'ABP_EnemyCharacterBase_C::OffNavRecoveryPosition' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, BlockedLoopCount) == 0x001028, "Member 'ABP_EnemyCharacterBase_C::BlockedLoopCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, IsBlocking) == 0x00102C, "Member 'ABP_EnemyCharacterBase_C::IsBlocking' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, CachedCapsuleRadius) == 0x001030, "Member 'ABP_EnemyCharacterBase_C::CachedCapsuleRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, NavSearchMultiplier) == 0x001038, "Member 'ABP_EnemyCharacterBase_C::NavSearchMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, HeldObject) == 0x001040, "Member 'ABP_EnemyCharacterBase_C::HeldObject' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, In_Prompt) == 0x001048, "Member 'ABP_EnemyCharacterBase_C::In_Prompt' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, CombatDelta) == 0x001050, "Member 'ABP_EnemyCharacterBase_C::CombatDelta' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, SafeFloor) == 0x001058, "Member 'ABP_EnemyCharacterBase_C::SafeFloor' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, AwarenessConfigs) == 0x001070, "Member 'ABP_EnemyCharacterBase_C::AwarenessConfigs' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, NoFeedTag) == 0x001080, "Member 'ABP_EnemyCharacterBase_C::NoFeedTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, CalculatedFallDamage) == 0x001088, "Member 'ABP_EnemyCharacterBase_C::CalculatedFallDamage' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, SpawnImmune) == 0x001090, "Member 'ABP_EnemyCharacterBase_C::SpawnImmune' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, DepenetrationSpeed) == 0x001094, "Member 'ABP_EnemyCharacterBase_C::DepenetrationSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, DepenCheckCount) == 0x001098, "Member 'ABP_EnemyCharacterBase_C::DepenCheckCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyCharacterBase_C, VFXClearout) == 0x0010A0, "Member 'ABP_EnemyCharacterBase_C::VFXClearout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap \ +static_assert(alignof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap) == 0x000008, "Wrong alignment on GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap"); \ +static_assert(sizeof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap) == 0x000168, "Wrong size on GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, EntryPoint) == 0x000000, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000008, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_TaskWaitDelay_ReturnValue) == 0x000018, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate) == 0x000020, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate_2) == 0x000044, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate_3) == 0x000054, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000068, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate_4) == 0x000070, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_IsValid_ReturnValue_1) == 0x000080, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_WaitDelay_ReturnValue) == 0x000088, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000090, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_IsValid_ReturnValue_2) == 0x0000A8, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_GetTarget_Target) == 0x0000B0, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_GetTarget_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, K2Node_CreateDelegate_OutputDelegate_5) == 0x0000B8, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_IsValid_ReturnValue_3) == 0x0000C8, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_IsValid_ReturnValue_4) == 0x0000C9, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D0, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000E8, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000F0, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000108, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000120, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_Add_VectorVector_ReturnValue) == 0x000138, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000150, "Member 'GA_FingerSnap_C_ExecuteUbergraph_GA_FingerSnap::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_FingerSnap_C_GetTarget \ +static_assert(alignof(GA_FingerSnap_C_GetTarget) == 0x000008, "Wrong alignment on GA_FingerSnap_C_GetTarget"); \ +static_assert(sizeof(GA_FingerSnap_C_GetTarget) == 0x0006C0, "Wrong size on GA_FingerSnap_C_GetTarget"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, Target_0) == 0x000000, "Member 'GA_FingerSnap_C_GetTarget::Target_0' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, Temp_object_Variable) == 0x000020, "Member 'GA_FingerSnap_C_GetTarget::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000030, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000048, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_MakeArray_Array) == 0x000058, "Member 'GA_FingerSnap_C_GetTarget::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetForwardVector_ReturnValue) == 0x000070, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000088, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000A0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Add_VectorVector_ReturnValue) == 0x0000B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0000D0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, Temp_object_Variable_1) == 0x0000D8, "Member 'GA_FingerSnap_C_GetTarget::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0000E8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0000F0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x0000F8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetComponentByClass_ReturnValue_2) == 0x000110, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetComponentByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000118, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_K2_GetComponentLocation_ReturnValue_2) == 0x000130, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_K2_GetComponentLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetForwardVector_ReturnValue_1) == 0x000148, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_MakeArray_Array_1) == 0x000160, "Member 'GA_FingerSnap_C_GetTarget::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000170, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000188, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001A0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0001B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x0001D0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x0002B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, Temp_object_Variable_2) == 0x0002C0, "Member 'GA_FingerSnap_C_GetTarget::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_bBlockingHit) == 0x0002D0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002D1, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Time) == 0x0002D4, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Distance) == 0x0002D8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Location) == 0x0002E0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ImpactPoint) == 0x0002F8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Normal) == 0x000310, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ImpactNormal) == 0x000328, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_PhysMat) == 0x000340, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitActor) == 0x000348, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitComponent) == 0x000350, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitBoneName) == 0x000358, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_BoneName) == 0x000360, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitItem) == 0x000368, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ElementIndex) == 0x00036C, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_FaceIndex) == 0x000370, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_TraceStart) == 0x000378, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_TraceEnd) == 0x000390, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_MakeArray_Array_2) == 0x0003A8, "Member 'GA_FingerSnap_C_GetTarget::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_IsValid_ReturnValue_1) == 0x0003B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0003C0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x0004A8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0004A9, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0004AA, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Time_1) == 0x0004AC, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Distance_1) == 0x0004B0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Location_1) == 0x0004B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ImpactPoint_1) == 0x0004D0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_Normal_1) == 0x0004E8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000500, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_PhysMat_1) == 0x000518, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitActor_1) == 0x000520, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitComponent_1) == 0x000528, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitBoneName_1) == 0x000530, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_BoneName_1) == 0x000538, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_HitItem_1) == 0x000540, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_ElementIndex_1) == 0x000544, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_FaceIndex_1) == 0x000548, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_TraceStart_1) == 0x000550, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_BreakHitResult_TraceEnd_1) == 0x000568, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000580, "Member 'GA_FingerSnap_C_GetTarget::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_DynamicCast_bSuccess) == 0x000588, "Member 'GA_FingerSnap_C_GetTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_IsValid_ReturnValue_2) == 0x000589, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000590, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x0005A8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_DynamicCast_AsBP_Enemy_Character_Base_1) == 0x0005C0, "Member 'GA_FingerSnap_C_GetTarget::K2Node_DynamicCast_AsBP_Enemy_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, K2Node_DynamicCast_bSuccess_1) == 0x0005C8, "Member 'GA_FingerSnap_C_GetTarget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_LineTraceSingleForObjects_OutHit_1) == 0x0005D0, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_LineTraceSingleForObjects_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_FingerSnap_C_GetTarget, CallFunc_LineTraceSingleForObjects_ReturnValue_1) == 0x0006B8, "Member 'GA_FingerSnap_C_GetTarget::CallFunc_LineTraceSingleForObjects_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_FingerSnap_C \ +static_assert(alignof(UGA_FingerSnap_C) == 0x000008, "Wrong alignment on UGA_FingerSnap_C"); \ +static_assert(sizeof(UGA_FingerSnap_C) == 0x000678, "Wrong size on UGA_FingerSnap_C"); \ +static_assert(offsetof(UGA_FingerSnap_C, UberGraphFrame) == 0x000668, "Member 'UGA_FingerSnap_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_FingerSnap_C, Target) == 0x000670, "Member 'UGA_FingerSnap_C::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_EventReceived_3A0D4AC7421846F6F6B2A6BAF77C756B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_EventReceived_50B6E3114486C65CC026D3B395A8BCA8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant) == 0x0018F0, "Wrong size on GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, EntryPoint) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_4) == 0x000044, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_5) == 0x000054, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_DestinationReached) == 0x000064, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_TimedOut) == 0x000065, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_FinalTargetLocation) == 0x000068, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_6) == 0x000080, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable) == 0x000090, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Variable) == 0x0000A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Variable_1) == 0x0000A9, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000AC, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_9) == 0x0000BC, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_9) == 0x0000C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_8) == 0x000178, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_8) == 0x000180, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_8) == 0x000230, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_7) == 0x000240, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_7) == 0x000248, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_9) == 0x0002F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_6) == 0x000308, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_6) == 0x000310, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_10) == 0x0003C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_5) == 0x0003D0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_5) == 0x0003D8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_11) == 0x000488, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_1) == 0x000498, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_2) == 0x000548, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000550, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_12) == 0x000558, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue) == 0x000568, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_4) == 0x00056C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_4) == 0x000578, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_3) == 0x000628, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_3) == 0x000630, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_13) == 0x0006E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_2) == 0x0006F0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_2) == 0x0006F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_14) == 0x0007A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag_1) == 0x0007B8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData_1) == 0x0007C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_15) == 0x000870, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventTag) == 0x000880, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_EventData) == 0x000888, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_16) == 0x000938, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_3) == 0x000948, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_4) == 0x0009F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x000A00, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_17) == 0x000A08, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_1) == 0x000A18, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Has_Been_Initd_Variable) == 0x000A19, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_IsClosed_Variable) == 0x000A1A, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue) == 0x000A20, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_2) == 0x000A28, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_18) == 0x000A2C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Variable_2) == 0x000A3C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_19) == 0x000A40, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000A50, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_int_Variable) == 0x000A54, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000A58, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Variable_3) == 0x000A59, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_5) == 0x000A60, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000A78, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_1) == 0x000A80, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_PlayAnimMontage_ReturnValue) == 0x000A88, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_PlayAnimMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_3) == 0x000A8C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_DestinationReached_1) == 0x000A8D, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_DestinationReached_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_TimedOut_1) == 0x000A8E, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_TimedOut_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_FinalTargetLocation_1) == 0x000A90, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_FinalTargetLocation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_int_Variable_1) == 0x000AA8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000AB0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_20) == 0x000AB8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000AC8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000AD0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_IntToString_ReturnValue) == 0x000AD8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_21) == 0x000AE8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_StringToName_ReturnValue) == 0x000AF8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_Event_bWasCancelled) == 0x000B00, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000B08, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_4) == 0x000B10, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_5) == 0x000B11, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_LessEqual_IntInt_ReturnValue_1) == 0x000B12, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_LessEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Subtract_IntInt_ReturnValue) == 0x000B14, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000B18, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_int_Variable_2) == 0x000B1C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_LessEqual_IntInt_ReturnValue_2) == 0x000B20, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_LessEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x000B24, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_22) == 0x000B28, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Subtract_IntInt_ReturnValue_3) == 0x000B38, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Subtract_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000B40, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000B48, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_InputtingAttack_ReturnValue) == 0x000B50, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_InputtingAttack_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_23) == 0x000B54, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_2) == 0x000B68, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_PlayAnimMontage_ReturnValue_1) == 0x000B70, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_PlayAnimMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_6) == 0x000B74, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000B78, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_3) == 0x000B80, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000B88, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_4) == 0x000B90, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_7) == 0x000B98, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_8) == 0x000B99, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector2D_X) == 0x000BA0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector2D_Y) == 0x000BA8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeVector_ReturnValue) == 0x000BB0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_LessEqual_IntInt_ReturnValue_3) == 0x000BC8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_LessEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000BD0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000BD8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000BE0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeStruct_GameplayEventData) == 0x000C08, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000CB8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000CC0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000CC8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_9) == 0x000CD0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_AbilityTargetDataFromActor_ReturnValue_1) == 0x000CD8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_AbilityTargetDataFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000D00, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeArray_Array) == 0x000D08, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeArray_Array_1) == 0x000D18, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000D28, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000D40, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue) == 0x000D48, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000D50, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetControlRotation_ReturnValue) == 0x000D68, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetForwardVector_ReturnValue) == 0x000D80, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_RandomUnitVector_ReturnValue) == 0x000D98, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000DB0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerPawn_ReturnValue) == 0x000DB8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000DC0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000DD8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue) == 0x000DF0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000E08, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000E20, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_1) == 0x000E38, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_10) == 0x000E40, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetControlRotation_ReturnValue_1) == 0x000E48, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000E60, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_2) == 0x000E78, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000E80, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetControlRotation_ReturnValue_2) == 0x000E98, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetControlRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_X) == 0x000EB0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Y) == 0x000EB8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Z) == 0x000EC0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeRotator_ReturnValue) == 0x000EC8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000EE0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000EF8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000F10, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_3) == 0x000F18, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000F20, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000F38, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeStruct_GameplayEventData_1) == 0x000F50, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x001000, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_RLerp_ReturnValue) == 0x001018, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x001030, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeArray_Array_2) == 0x001038, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_MakeArray_Array_3) == 0x001048, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeVector_ReturnValue_1) == 0x001058, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x001070, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_1) == 0x001078, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x001090, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_4) == 0x0010A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0010B0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetControlRotation_ReturnValue_3) == 0x0010C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetControlRotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetForwardVector_ReturnValue_1) == 0x0010E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0010F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x001110, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_3) == 0x001118, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_TargetActor_OutPins) == 0x001130, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_TargetActor_ReturnValue) == 0x001138, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x001140, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x001228, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_bBlockingHit) == 0x001229, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_bInitialOverlap) == 0x00122A, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Time) == 0x00122C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Distance) == 0x001230, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Location) == 0x001238, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ImpactPoint) == 0x001250, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Normal) == 0x001268, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ImpactNormal) == 0x001280, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_PhysMat) == 0x001298, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitActor) == 0x0012A0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitComponent) == 0x0012A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitBoneName) == 0x0012B0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_BoneName) == 0x0012B8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitItem) == 0x0012C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ElementIndex) == 0x0012C4, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_FaceIndex) == 0x0012C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_TraceStart) == 0x0012D0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_TraceEnd) == 0x0012E8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_SwitchEnum_CmpSuccess) == 0x001300, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_24) == 0x001304, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x001318, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x001330, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_4) == 0x001348, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x001360, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_SphereTraceSingleForObjects_OutHit_1) == 0x001368, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_SphereTraceSingleForObjects_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_SphereTraceSingleForObjects_ReturnValue_1) == 0x001450, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_SphereTraceSingleForObjects_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_bBlockingHit_1) == 0x001451, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x001452, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Time_1) == 0x001454, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Distance_1) == 0x001458, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Location_1) == 0x001460, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ImpactPoint_1) == 0x001478, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_Normal_1) == 0x001490, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ImpactNormal_1) == 0x0014A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_PhysMat_1) == 0x0014C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitActor_1) == 0x0014C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitComponent_1) == 0x0014D0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitBoneName_1) == 0x0014D8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_BoneName_1) == 0x0014E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_HitItem_1) == 0x0014E8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_ElementIndex_1) == 0x0014EC, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_FaceIndex_1) == 0x0014F0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_TraceStart_1) == 0x0014F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakHitResult_TraceEnd_1) == 0x001510, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_11) == 0x001528, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Is_Lunge_Targeted_Targeted) == 0x001529, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Is_Lunge_Targeted_Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x001530, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_12) == 0x001538, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_struct_Variable_6) == 0x001540, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_13) == 0x001558, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Create_ReturnValue) == 0x001560, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_5) == 0x001568, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetControlRotation_ReturnValue_4) == 0x001570, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetControlRotation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetForwardVector_ReturnValue_2) == 0x001588, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_bool_Variable_4) == 0x0015A0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0015A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0015C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_Select_Default) == 0x0015D8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_X_1) == 0x0015F0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Y_1) == 0x0015F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Z_1) == 0x001600, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ComposeRotators_ReturnValue) == 0x001608, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeVector_ReturnValue_2) == 0x001620, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_RInterpTo_ReturnValue) == 0x001638, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7) == 0x001650, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x001658, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_5) == 0x001670, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_5) == 0x001678, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x001690, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_14) == 0x001698, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_15) == 0x001699, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetPlayerController_ReturnValue_6) == 0x0016A0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetPlayerController_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x0016A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8) == 0x0016C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetActorForwardVector_ReturnValue) == 0x0016C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x0016E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x0016F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_6) == 0x001710, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x001728, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1) == 0x001730, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x001738, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_16) == 0x001750, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9) == 0x001758, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x001760, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x001778, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001790, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_VectorVector_ReturnValue_7) == 0x0017A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10) == 0x0017C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2) == 0x0017C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_TargetActor_OutPins_1) == 0x0017D0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_TargetActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_K2_TargetActor_ReturnValue_1) == 0x0017D8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_K2_TargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_SwitchEnum_CmpSuccess_1) == 0x0017E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_17) == 0x0017E1, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue_1) == 0x0017E8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Is_Lunge_Targeted_Targeted_1) == 0x0017F0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Is_Lunge_Targeted_Targeted_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_18) == 0x0017F1, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_19) == 0x0017F2, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0017F8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsFalling_ReturnValue) == 0x001800, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_X_2) == 0x001808, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Y_2) == 0x001810, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_BreakVector_Z_2) == 0x001818, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeVector_ReturnValue_3) == 0x001820, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_25) == 0x001838, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CreateDelegate_OutputDelegate_26) == 0x001848, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_int_Variable_3) == 0x001858, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, Temp_int_Variable_4) == 0x00185C, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11) == 0x001860, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_LessEqual_IntInt_ReturnValue_4) == 0x001868, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_LessEqual_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x001870, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_DynamicCast_bSuccess) == 0x001880, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12) == 0x001888, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x001890, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_DynamicCast_bSuccess_1) == 0x0018A0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_ReturnValue_6) == 0x0018A8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_IsValid_ReturnValue_20) == 0x0018B0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, K2Node_CustomEvent_End) == 0x0018B1, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::K2Node_CustomEvent_End' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0018B8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0018C0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Add_IntInt_ReturnValue) == 0x0018C4, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_PlayAnimMontage_InPlayRate_ImplicitCast) == 0x0018C8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_PlayAnimMontage_InPlayRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_Time_ImplicitCast) == 0x0018CC, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x0018D0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0018D4, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0018D8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0018DC, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0018E0, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant, CallFunc_Delay_Duration_ImplicitCast) == 0x0018E8, "Member 'GA_BR_Lightningstrikes_Constant_C_ExecuteUbergraph_GA_BR_Lightningstrikes_Constant::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_InputtingAttack \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_InputtingAttack"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack) == 0x000018, "Wrong size on GA_BR_Lightningstrikes_Constant_C_InputtingAttack"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, ReturnValue) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_IsInputKeyDown_ReturnValue) == 0x000010, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_IsInputKeyDown_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_IsInputKeyDown_ReturnValue_1) == 0x000011, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_IsInputKeyDown_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_IsInputKeyDown_ReturnValue_2) == 0x000012, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_IsInputKeyDown_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_BooleanOR_ReturnValue) == 0x000013, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_InputtingAttack, CallFunc_BooleanOR_ReturnValue_1) == 0x000014, "Member 'GA_BR_Lightningstrikes_Constant_C_InputtingAttack::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted) == 0x000100, "Wrong size on GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, Targeted) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetPlayerController_ReturnValue) == 0x000040, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000048, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetControlRotation_ReturnValue) == 0x000060, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetForwardVector_ReturnValue) == 0x000078, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000098, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0000B8, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000C8, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_Vector_Distance_ReturnValue) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000F1, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue) == 0x0000F2, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_Constant_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnBlendOut_3A0D4AC7421846F6F6B2A6BAF77C756B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnBlendOut_50B6E3114486C65CC026D3B395A8BCA8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCancelled_3A0D4AC7421846F6F6B2A6BAF77C756B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCancelled_50B6E3114486C65CC026D3B395A8BCA8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCompleted_3A0D4AC7421846F6F6B2A6BAF77C756B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnCompleted_50B6E3114486C65CC026D3B395A8BCA8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4) == 0x000020, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4, DestinationReached) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4, TimedOut) == 0x000001, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4, FinalTargetLocation) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_146204B74F5BB91FB6F6159EBD223DF4::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D) == 0x000020, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D, DestinationReached) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D, TimedOut) == 0x000001, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D, FinalTargetLocation) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnFinished_158DE95A4D2EBED181BD708CB107753D::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnInterrupted_3A0D4AC7421846F6F6B2A6BAF77C756B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8 \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_OnInterrupted_50B6E3114486C65CC026D3B395A8BCA8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_Ready_Pose \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_Ready_Pose) == 0x000001, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_Ready_Pose"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_Ready_Pose) == 0x000001, "Wrong size on GA_BR_Lightningstrikes_Constant_C_Ready_Pose"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_Ready_Pose, End) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_Ready_Pose::End' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_Constant_C_SpeedChange \ +static_assert(alignof(GA_BR_Lightningstrikes_Constant_C_SpeedChange) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_Constant_C_SpeedChange"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_Constant_C_SpeedChange) == 0x000028, "Wrong size on GA_BR_Lightningstrikes_Constant_C_SpeedChange"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_SpeedChange, Additive) == 0x000000, "Member 'GA_BR_Lightningstrikes_Constant_C_SpeedChange::Additive' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_SpeedChange, CallFunc_BreakVector2D_X) == 0x000008, "Member 'GA_BR_Lightningstrikes_Constant_C_SpeedChange::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_SpeedChange, CallFunc_BreakVector2D_Y) == 0x000010, "Member 'GA_BR_Lightningstrikes_Constant_C_SpeedChange::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_SpeedChange, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_BR_Lightningstrikes_Constant_C_SpeedChange::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_Constant_C_SpeedChange, CallFunc_FClamp_ReturnValue) == 0x000020, "Member 'GA_BR_Lightningstrikes_Constant_C_SpeedChange::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_BR_Lightningstrikes_Constant_C \ +static_assert(alignof(UGA_BR_Lightningstrikes_Constant_C) == 0x000008, "Wrong alignment on UGA_BR_Lightningstrikes_Constant_C"); \ +static_assert(sizeof(UGA_BR_Lightningstrikes_Constant_C) == 0x0007E0, "Wrong size on UGA_BR_Lightningstrikes_Constant_C"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, UberGraphFrame) == 0x000678, "Member 'UGA_BR_Lightningstrikes_Constant_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, PunchTarget) == 0x000680, "Member 'UGA_BR_Lightningstrikes_Constant_C::PunchTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, In_Event_Data) == 0x000688, "Member 'UGA_BR_Lightningstrikes_Constant_C::In_Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, HitEventTag) == 0x000738, "Member 'UGA_BR_Lightningstrikes_Constant_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, HitResponseTag) == 0x000740, "Member 'UGA_BR_Lightningstrikes_Constant_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Number_of_hits) == 0x000748, "Member 'UGA_BR_Lightningstrikes_Constant_C::Number_of_hits' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Current_strike) == 0x00074C, "Member 'UGA_BR_Lightningstrikes_Constant_C::Current_strike' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Hit_frequency) == 0x000750, "Member 'UGA_BR_Lightningstrikes_Constant_C::Hit_frequency' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeRange) == 0x000758, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeRangeTargeted) == 0x00075C, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeRangeTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeMaxAngle) == 0x000760, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeDuration) == 0x000768, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeDurationTargeted) == 0x00076C, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeDurationTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LungeAssistStrength) == 0x000770, "Member 'UGA_BR_Lightningstrikes_Constant_C::LungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Bounceback_Distance) == 0x000778, "Member 'UGA_BR_Lightningstrikes_Constant_C::Bounceback_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Hit) == 0x000780, "Member 'UGA_BR_Lightningstrikes_Constant_C::Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, ViewLocked) == 0x000781, "Member 'UGA_BR_Lightningstrikes_Constant_C::ViewLocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, ViewLockOffset) == 0x000788, "Member 'UGA_BR_Lightningstrikes_Constant_C::ViewLockOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, FlurryCount) == 0x0007A0, "Member 'UGA_BR_Lightningstrikes_Constant_C::FlurryCount' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Camera_Modifier) == 0x0007A8, "Member 'UGA_BR_Lightningstrikes_Constant_C::Camera_Modifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LastHit) == 0x0007B0, "Member 'UGA_BR_Lightningstrikes_Constant_C::LastHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, Ammo) == 0x0007B4, "Member 'UGA_BR_Lightningstrikes_Constant_C::Ammo' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, UI) == 0x0007B8, "Member 'UGA_BR_Lightningstrikes_Constant_C::UI' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, LastHitLeniency) == 0x0007C0, "Member 'UGA_BR_Lightningstrikes_Constant_C::LastHitLeniency' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, PressingAttack) == 0x0007C4, "Member 'UGA_BR_Lightningstrikes_Constant_C::PressingAttack' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, SpeedRamp) == 0x0007C8, "Member 'UGA_BR_Lightningstrikes_Constant_C::SpeedRamp' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_Constant_C, SpeedrampMinMax) == 0x0007D0, "Member 'UGA_BR_Lightningstrikes_Constant_C::SpeedrampMinMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_EventReceived_2CEE9FC54A53BBCE260107A5A5A88FC3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_EventReceived_40C800064DBD044FA97039BE2EE1A542::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes \ +static_assert(alignof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes) == 0x0017B0, "Wrong size on GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, EntryPoint) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_DestinationReached) == 0x000044, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_TimedOut) == 0x000045, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_FinalTargetLocation) == 0x000048, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_4) == 0x000060, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable) == 0x000070, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Variable) == 0x000088, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Variable_1) == 0x000089, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_5) == 0x00008C, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_9) == 0x00009C, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_9) == 0x0000A8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_8) == 0x000158, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_8) == 0x000160, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_6) == 0x000210, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_7) == 0x000220, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_7) == 0x000228, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_7) == 0x0002D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_6) == 0x0002E8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_6) == 0x0002F0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_8) == 0x0003A0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_5) == 0x0003B0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_5) == 0x0003B8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_9) == 0x000468, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_1) == 0x000478, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_2) == 0x000528, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000530, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_10) == 0x000538, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue) == 0x000548, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_4) == 0x00054C, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_4) == 0x000558, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_3) == 0x000608, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_3) == 0x000610, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_11) == 0x0006C0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_2) == 0x0006D0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_2) == 0x0006D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_12) == 0x000788, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag_1) == 0x000798, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData_1) == 0x0007A0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_13) == 0x000850, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventTag) == 0x000860, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_EventData) == 0x000868, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_14) == 0x000918, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_3) == 0x000928, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_4) == 0x0009D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x0009E0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_1) == 0x0009E8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_int_Variable) == 0x0009EC, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_15) == 0x0009F0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000A00, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000A08, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000A09, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_16) == 0x000A0C, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000A20, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000A28, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x000A50, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_AbilityTargetDataFromActor_ReturnValue_1) == 0x000A60, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_AbilityTargetDataFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000A88, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000A90, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeStruct_GameplayEventData) == 0x000A98, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000B48, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000B50, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_2) == 0x000B58, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000B60, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_AbilityTargetDataFromActor_ReturnValue_2) == 0x000B68, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_AbilityTargetDataFromActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeArray_Array) == 0x000B90, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeArray_Array_1) == 0x000BA0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000BB0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue) == 0x000BB8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000BC0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetControlRotation_ReturnValue) == 0x000BD8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetForwardVector_ReturnValue) == 0x000BF0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000C08, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_RandomUnitVector_ReturnValue) == 0x000C10, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_17) == 0x000C28, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000C38, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerPawn_ReturnValue) == 0x000C40, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000C48, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000C60, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue) == 0x000C78, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000C90, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000CA8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000CC0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_3) == 0x000CC1, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_1) == 0x000CC8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetControlRotation_ReturnValue_1) == 0x000CD0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_2) == 0x000CE8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetControlRotation_ReturnValue_2) == 0x000CF0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetControlRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000D08, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000D20, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000D28, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000D40, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_3) == 0x000D58, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000D60, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000D78, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeStruct_GameplayEventData_1) == 0x000D90, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_RLerp_ReturnValue) == 0x000E40, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000E58, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeArray_Array_2) == 0x000E60, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_MakeArray_Array_3) == 0x000E70, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x000E80, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_18) == 0x000E88, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000E98, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_4) == 0x000EB0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetControlRotation_ReturnValue_3) == 0x000EB8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetControlRotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x000ED0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetForwardVector_ReturnValue_1) == 0x000ED8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_TargetActor_OutPins) == 0x000EF0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_TargetActor_ReturnValue) == 0x000EF8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_SwitchEnum_CmpSuccess) == 0x000F00, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Variable_2) == 0x000F01, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeVector_ReturnValue) == 0x000F08, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000F20, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x000F38, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_4) == 0x000F40, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x000F48, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Variable_3) == 0x000F50, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_5) == 0x000F51, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Is_Lunge_Targeted_Targeted) == 0x000F52, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Is_Lunge_Targeted_Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_5) == 0x000F58, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_6) == 0x000F70, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000F78, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_5) == 0x000F90, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000F98, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetControlRotation_ReturnValue_4) == 0x000FB0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetControlRotation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000FC8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetForwardVector_ReturnValue_2) == 0x000FE0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x000FF8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x0010E0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0010E8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_bBlockingHit) == 0x001100, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_bInitialOverlap) == 0x001101, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Time) == 0x001104, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Distance) == 0x001108, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Location) == 0x001110, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ImpactPoint) == 0x001128, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Normal) == 0x001140, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ImpactNormal) == 0x001158, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_PhysMat) == 0x001170, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitActor) == 0x001178, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitComponent) == 0x001180, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitBoneName) == 0x001188, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_BoneName) == 0x001190, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitItem) == 0x001198, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ElementIndex) == 0x00119C, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_FaceIndex) == 0x0011A0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_TraceStart) == 0x0011A8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_TraceEnd) == 0x0011C0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0011D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_X) == 0x0011F0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Y) == 0x0011F8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Z) == 0x001200, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7) == 0x001208, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeVector_ReturnValue_1) == 0x001210, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x001228, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetPlayerController_ReturnValue_6) == 0x001240, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetPlayerController_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_3) == 0x001248, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x001260, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x001268, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_7) == 0x001280, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_DestinationReached_1) == 0x001281, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_DestinationReached_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_TimedOut_1) == 0x001282, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_TimedOut_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_FinalTargetLocation_1) == 0x001288, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_FinalTargetLocation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8) == 0x0012A0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetActorForwardVector_ReturnValue) == 0x0012A8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0012C0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x0012D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_4) == 0x0012F0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x001308, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1) == 0x001310, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x001318, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_8) == 0x001330, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CreateDelegate_OutputDelegate_19) == 0x001334, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9) == 0x001348, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x001350, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x001368, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x001380, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_5) == 0x001398, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10) == 0x0013B0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2) == 0x0013B8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_TargetActor_OutPins_1) == 0x0013C0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_TargetActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_K2_TargetActor_ReturnValue_1) == 0x0013C8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_K2_TargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_SwitchEnum_CmpSuccess_1) == 0x0013D0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_9) == 0x0013D1, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Is_Lunge_Targeted_Targeted_1) == 0x0013D2, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Is_Lunge_Targeted_Targeted_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue_1) == 0x0013D8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_10) == 0x0013E0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsValid_ReturnValue_11) == 0x0013E1, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0013E8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_IsFalling_ReturnValue) == 0x0013F0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_X_1) == 0x0013F8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Y_1) == 0x001400, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Z_1) == 0x001408, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeVector_ReturnValue_2) == 0x001410, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x001428, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x001440, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Has_Been_Initd_Variable) == 0x001458, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_X_2) == 0x001460, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Y_2) == 0x001468, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakVector_Z_2) == 0x001470, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeRotator_ReturnValue) == 0x001478, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_struct_Variable_6) == 0x001490, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_Variable_4) == 0x0014A8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11) == 0x0014B0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_Select_Default) == 0x0014B8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0014D0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_DynamicCast_bSuccess) == 0x0014E0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_ComposeRotators_ReturnValue) == 0x0014E8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_RInterpTo_ReturnValue) == 0x001500, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12) == 0x001518, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x001520, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_DynamicCast_bSuccess_1) == 0x001530, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeVector_ReturnValue_3) == 0x001538, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_6) == 0x001550, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_Event_bWasCancelled) == 0x001568, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, Temp_bool_IsClosed_Variable) == 0x001569, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, K2Node_CustomEvent_End) == 0x00156A, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::K2Node_CustomEvent_End' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x001570, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x001578, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x001580, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001598, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_VectorVector_ReturnValue_7) == 0x0015B0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_SphereTraceSingleForObjects_OutHit_1) == 0x0015C8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_SphereTraceSingleForObjects_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_SphereTraceSingleForObjects_ReturnValue_1) == 0x0016B0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_SphereTraceSingleForObjects_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Add_IntInt_ReturnValue) == 0x0016B4, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0016B8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0016B9, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Time_1) == 0x0016BC, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Distance_1) == 0x0016C0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Location_1) == 0x0016C8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ImpactPoint_1) == 0x0016E0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_Normal_1) == 0x0016F8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ImpactNormal_1) == 0x001710, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_PhysMat_1) == 0x001728, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitActor_1) == 0x001730, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitComponent_1) == 0x001738, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitBoneName_1) == 0x001740, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_BoneName_1) == 0x001748, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_HitItem_1) == 0x001750, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_ElementIndex_1) == 0x001754, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_FaceIndex_1) == 0x001758, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_TraceStart_1) == 0x001760, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_BreakHitResult_TraceEnd_1) == 0x001778, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x001790, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001798, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0017A0, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0017A4, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes, CallFunc_Delay_Duration_ImplicitCast) == 0x0017A8, "Member 'GA_BR_Lightningstrikes_C_ExecuteUbergraph_GA_BR_Lightningstrikes::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_Is_Lunge_Targeted \ +static_assert(alignof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_Is_Lunge_Targeted"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted) == 0x000100, "Wrong size on GA_BR_Lightningstrikes_C_Is_Lunge_Targeted"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, Targeted) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetPlayerController_ReturnValue) == 0x000040, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000048, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetControlRotation_ReturnValue) == 0x000060, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetForwardVector_ReturnValue) == 0x000078, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000098, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0000B8, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000C8, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_Vector_Distance_ReturnValue) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000F1, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue) == 0x0000F2, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_K2_OnEndAbility \ +static_assert(alignof(GA_BR_Lightningstrikes_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_BR_Lightningstrikes_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_BR_Lightningstrikes_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnBlendOut_2CEE9FC54A53BBCE260107A5A5A88FC3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnBlendOut_40C800064DBD044FA97039BE2EE1A542::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnCancelled_2CEE9FC54A53BBCE260107A5A5A88FC3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnCancelled_40C800064DBD044FA97039BE2EE1A542::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnCompleted_2CEE9FC54A53BBCE260107A5A5A88FC3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnCompleted_40C800064DBD044FA97039BE2EE1A542::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9) == 0x000020, "Wrong size on GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9, DestinationReached) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9, TimedOut) == 0x000001, "Member 'GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9, FinalTargetLocation) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnFinished_20E381204E17955E932CBAAD2955C1D9::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78) == 0x000020, "Wrong size on GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78, DestinationReached) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78, TimedOut) == 0x000001, "Member 'GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78, FinalTargetLocation) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnFinished_A24A9668469FC309F5B8AC9DDC343F78::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnInterrupted_2CEE9FC54A53BBCE260107A5A5A88FC3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542 \ +static_assert(alignof(GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_C_OnInterrupted_40C800064DBD044FA97039BE2EE1A542::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_C_Ready_Pose \ +static_assert(alignof(GA_BR_Lightningstrikes_C_Ready_Pose) == 0x000001, "Wrong alignment on GA_BR_Lightningstrikes_C_Ready_Pose"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_C_Ready_Pose) == 0x000001, "Wrong size on GA_BR_Lightningstrikes_C_Ready_Pose"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_C_Ready_Pose, End) == 0x000000, "Member 'GA_BR_Lightningstrikes_C_Ready_Pose::End' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_BR_Lightningstrikes_C \ +static_assert(alignof(UGA_BR_Lightningstrikes_C) == 0x000008, "Wrong alignment on UGA_BR_Lightningstrikes_C"); \ +static_assert(sizeof(UGA_BR_Lightningstrikes_C) == 0x0007B0, "Wrong size on UGA_BR_Lightningstrikes_C"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, UberGraphFrame) == 0x000678, "Member 'UGA_BR_Lightningstrikes_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, PunchTarget) == 0x000680, "Member 'UGA_BR_Lightningstrikes_C::PunchTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, In_Event_Data) == 0x000688, "Member 'UGA_BR_Lightningstrikes_C::In_Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, HitEventTag) == 0x000738, "Member 'UGA_BR_Lightningstrikes_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, HitResponseTag) == 0x000740, "Member 'UGA_BR_Lightningstrikes_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Number_of_hits) == 0x000748, "Member 'UGA_BR_Lightningstrikes_C::Number_of_hits' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Current_strike) == 0x00074C, "Member 'UGA_BR_Lightningstrikes_C::Current_strike' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Hit_frequency) == 0x000750, "Member 'UGA_BR_Lightningstrikes_C::Hit_frequency' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeRange) == 0x000758, "Member 'UGA_BR_Lightningstrikes_C::LungeRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeRangeTargeted) == 0x00075C, "Member 'UGA_BR_Lightningstrikes_C::LungeRangeTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeMaxAngle) == 0x000760, "Member 'UGA_BR_Lightningstrikes_C::LungeMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeDuration) == 0x000768, "Member 'UGA_BR_Lightningstrikes_C::LungeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeDurationTargeted) == 0x00076C, "Member 'UGA_BR_Lightningstrikes_C::LungeDurationTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, LungeAssistStrength) == 0x000770, "Member 'UGA_BR_Lightningstrikes_C::LungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Bounceback_Distance) == 0x000778, "Member 'UGA_BR_Lightningstrikes_C::Bounceback_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Hit) == 0x000780, "Member 'UGA_BR_Lightningstrikes_C::Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, ViewLocked) == 0x000781, "Member 'UGA_BR_Lightningstrikes_C::ViewLocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, ViewLockOffset) == 0x000788, "Member 'UGA_BR_Lightningstrikes_C::ViewLockOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, FlurryCount) == 0x0007A0, "Member 'UGA_BR_Lightningstrikes_C::FlurryCount' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_C, Camera_Modifier) == 0x0007A8, "Member 'UGA_BR_Lightningstrikes_C::Camera_Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GE_BlockTargeting__UGE_BlockTargeting_C \ +static_assert(alignof(GE_BlockTargeting::UGE_BlockTargeting_C) == 0x000008, "Wrong alignment on GE_BlockTargeting::UGE_BlockTargeting_C"); \ +static_assert(sizeof(GE_BlockTargeting::UGE_BlockTargeting_C) == 0x000A70, "Wrong size on GE_BlockTargeting::UGE_BlockTargeting_C"); \ + +#define DUMPER7_ASSERTS_UGE_PreAttack_C \ +static_assert(alignof(UGE_PreAttack_C) == 0x000008, "Wrong alignment on UGE_PreAttack_C"); \ +static_assert(sizeof(UGE_PreAttack_C) == 0x000A70, "Wrong size on UGE_PreAttack_C"); \ + +#define DUMPER7_ASSERTS_UGE_KissStats_C \ +static_assert(alignof(UGE_KissStats_C) == 0x000008, "Wrong alignment on UGE_KissStats_C"); \ +static_assert(sizeof(UGE_KissStats_C) == 0x000A70, "Wrong size on UGE_KissStats_C"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetAudioCharacterComp \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetAudioCharacterComp) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetAudioCharacterComp"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetAudioCharacterComp) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetAudioCharacterComp"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetAudioCharacterComp, AudioCharacterComponent) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetAudioCharacterComp::AudioCharacterComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh, GlassesSM) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetGlassesSkeletalMesh::GlassesSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetHairMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetHairMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetHairMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetHairMesh) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetHairMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetHairMesh, HairMesh) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetHairMesh::HairMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh, Head) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetHeadSkeletalMesh::Head' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetMesh) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetMesh, Mesh) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetMesh::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh, PeircingSM) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_GetPiercingSkeletalMesh::PeircingSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_RefreshHair \ +static_assert(alignof(BP_PlayerCostumeInterface_C_RefreshHair) == 0x000004, "Wrong alignment on BP_PlayerCostumeInterface_C_RefreshHair"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_RefreshHair) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_RefreshHair"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_RefreshHair, CostumeTage) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_RefreshHair::CostumeTage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SelectMesh \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SelectMesh) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SelectMesh"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SelectMesh) == 0x0000A8, "Wrong size on BP_PlayerCostumeInterface_C_SelectMesh"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SelectMesh, CostumeDef) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SelectMesh::CostumeDef' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SelectMesh, Mesh) == 0x0000A0, "Member 'BP_PlayerCostumeInterface_C_SelectMesh::Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SwitchPlayerCostume \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SwitchPlayerCostume) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SwitchPlayerCostume"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SwitchPlayerCostume) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_SwitchPlayerCostume"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SwitchPlayerCostume, InCostume) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SwitchPlayerCostume::InCostume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SwitchPlayerEyes \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SwitchPlayerEyes) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SwitchPlayerEyes"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SwitchPlayerEyes) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_SwitchPlayerEyes"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SwitchPlayerEyes, EyesAsset) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SwitchPlayerEyes::EyesAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SwitchPlayerHair \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SwitchPlayerHair) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SwitchPlayerHair"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SwitchPlayerHair) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_SwitchPlayerHair"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SwitchPlayerHair, InHair) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SwitchPlayerHair::InHair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp, InMakeUp) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SwitchPlayerMakeUp::InMakeUp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerCostumeInterface_C_SwitchPlayerPiercing \ +static_assert(alignof(BP_PlayerCostumeInterface_C_SwitchPlayerPiercing) == 0x000008, "Wrong alignment on BP_PlayerCostumeInterface_C_SwitchPlayerPiercing"); \ +static_assert(sizeof(BP_PlayerCostumeInterface_C_SwitchPlayerPiercing) == 0x000008, "Wrong size on BP_PlayerCostumeInterface_C_SwitchPlayerPiercing"); \ +static_assert(offsetof(BP_PlayerCostumeInterface_C_SwitchPlayerPiercing, PiercingAsset) == 0x000000, "Member 'BP_PlayerCostumeInterface_C_SwitchPlayerPiercing::PiercingAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBP_PlayerCostumeInterface_C \ +static_assert(alignof(IBP_PlayerCostumeInterface_C) == 0x000001, "Wrong alignment on IBP_PlayerCostumeInterface_C"); \ +static_assert(sizeof(IBP_PlayerCostumeInterface_C) == 0x000001, "Wrong size on IBP_PlayerCostumeInterface_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume) == 0x000140, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, Player) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CostumeData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CostumeData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, ApplyToProperty) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::ApplyToProperty' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, __WorldContext) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, Temp_int_Array_Index_Variable) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000038, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_GetMesh_Mesh) == 0x000048, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_GetMesh_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_GetAudioCharacterComp_AudioCharacterComponent) == 0x000050, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_GetAudioCharacterComp_AudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_IsValid_ReturnValue_2) == 0x000059, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_GetMaterialSlotNames_ReturnValue) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_GetMaterialSlotNames_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_Conv_InterfaceToObject_ReturnValue) == 0x000070, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_Conv_InterfaceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_Array_Get_Item) == 0x000078, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_GetCostumeDefForCurrentVariation_Costume) == 0x000080, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_GetCostumeDefForCurrentVariation_Costume' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_SelectMesh_Mesh) == 0x000120, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_SelectMesh_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_Array_Length_ReturnValue) == 0x000128, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_IsValid_ReturnValue_3) == 0x00012C, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, Temp_int_Loop_Counter_Variable) == 0x000130, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_Less_IntInt_ReturnValue) == 0x000134, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume, CallFunc_Add_IntInt_ReturnValue) == 0x000138, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyCostume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes) == 0x0000F8, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, Player) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, PiercingData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::PiercingData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, IsDefault) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::IsDefault' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, __WorldContext) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, EyesDataAsset) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::EyesDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, EyesTextureSoftPointer) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::EyesTextureSoftPointer' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_GetGameInstance_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000068, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_GetPlayerVariant_ReturnValue) == 0x000071, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000078, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_SwitchEnum_CmpSuccess) == 0x000081, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_Conv_InterfaceToObject_ReturnValue) == 0x000088, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_Conv_InterfaceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000090, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_bSuccess_2) == 0x0000A0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_GetEyesTexture_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_GetEyesTexture_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_GetHeadSkeletalMesh_Head) == 0x0000D0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_GetHeadSkeletalMesh_Head' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_IsValid_ReturnValue) == 0x0000D8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000E0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_AsMaterial_Instance) == 0x0000E8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_AsMaterial_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes, K2Node_DynamicCast_bSuccess_3) == 0x0000F0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyEyes::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_ApplyHair \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_ApplyHair"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair) == 0x000128, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_ApplyHair"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, Player) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, HairData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, ForcedHair) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::ForcedHair' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, __WorldContext) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, HairDataAsset) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::HairDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, HairSoftPointer) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::HairSoftPointer' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000068, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x000071, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_BooleanOR_ReturnValue) == 0x000072, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_BooleanOR_ReturnValue_1) == 0x000073, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_IsValid_ReturnValue) == 0x000074, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetHairMesh_HairMesh) == 0x000078, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetHairMesh_HairMesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_Conv_InterfaceToObject_ReturnValue) == 0x000080, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_Conv_InterfaceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetGameInstance_ReturnValue) == 0x000090, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000098, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_bSuccess_1) == 0x0000A0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetPlayerVariant_ReturnValue) == 0x0000A1, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetHairMaterial_ReturnValue) == 0x0000B0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetHairMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x0000D8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_bSuccess_2) == 0x0000E0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_LoadAsset_Blocking_ReturnValue_1) == 0x0000E8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_LoadAsset_Blocking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_AsMaterial_Instance) == 0x0000F0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_AsMaterial_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, K2Node_DynamicCast_bSuccess_3) == 0x0000F8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyHair, CallFunc_GetHairDefForCurrentVariation_hair) == 0x000100, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyHair::CallFunc_GetHairDefForCurrentVariation_hair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp) == 0x000128, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, Player) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, MakeUpData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::MakeUpData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, ForceDefault) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::ForceDefault' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, __WorldContext) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, MakeUpDataAsset) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::MakeUpDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, MakeUpSoftPointer) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::MakeUpSoftPointer' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetMakeUpMesh_ReturnValue) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetMakeUpMesh_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000088, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000090, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_bSuccess) == 0x000098, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x0000A0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_bSuccess_1) == 0x0000A8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetGameInstance_ReturnValue) == 0x0000B0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x0000B8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_bSuccess_2) == 0x0000C0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetPlayerVariant_ReturnValue) == 0x0000C1, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_SwitchEnum_CmpSuccess) == 0x0000C2, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetHeadSkeletalMesh_Head) == 0x0000C8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetHeadSkeletalMesh_Head' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetGlassesSkeletalMesh_GlassesSM) == 0x0000D0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetGlassesSkeletalMesh_GlassesSM' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_Conv_InterfaceToObject_ReturnValue) == 0x0000D8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_Conv_InterfaceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_IsValid_ReturnValue) == 0x0000E0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_GetMakeUpDefForCurrentVariation_MakeUp_Material) == 0x0000E8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_GetMakeUpDefForCurrentVariation_MakeUp_Material' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, CallFunc_LoadAsset_Blocking_ReturnValue_1) == 0x000110, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::CallFunc_LoadAsset_Blocking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_AsMaterial_Instance) == 0x000118, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_AsMaterial_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp, K2Node_DynamicCast_bSuccess_3) == 0x000120, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyMakeUp::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing) == 0x0000E8, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, Player) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, PiercingData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::PiercingData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, IsDefaultPhyre) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::IsDefaultPhyre' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, __WorldContext) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, PiercingDataAsset) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::PiercingDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, PiercingSoftPointer) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::PiercingSoftPointer' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_Conv_InterfaceToObject_ReturnValue) == 0x000070, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_Conv_InterfaceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_Conv_InterfaceToObject_ReturnValue_1) == 0x000078, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_Conv_InterfaceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000080, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_bSuccess_1) == 0x000090, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_GetPiercingSkeletalMesh_PeircingSM) == 0x000098, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_GetPiercingSkeletalMesh_PeircingSM' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_GetPiercingDefForCurrentVariation_Peircing_Mesh) == 0x0000A0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_GetPiercingDefForCurrentVariation_Peircing_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_IsValid_ReturnValue) == 0x0000C8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000D0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x0000D8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing, K2Node_DynamicCast_bSuccess_2) == 0x0000E0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_ApplyPiercing::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation) == 0x000178, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, Costume_Data) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::Costume_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, Costume) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::Costume' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, CostumeDefinition) == 0x0000B0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::CostumeDefinition' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, CallFunc_GetGameInstance_ReturnValue) == 0x0000B8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, CallFunc_IsValid_ReturnValue) == 0x0000C0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x0000C8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, K2Node_DynamicCast_bSuccess) == 0x0000D0, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, CallFunc_GetPlayerVariant_ReturnValue) == 0x0000D1, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation, CallFunc_GetCurrentOutfitData_ReturnValue) == 0x0000D8, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetCostumeDefForCurrentVariation::CallFunc_GetCurrentOutfitData_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation) == 0x000088, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, Hair_Data) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::Hair_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, Hair) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::Hair' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, CostumeDefinition) == 0x000038, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::CostumeDefinition' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, CallFunc_GetGameInstance_ReturnValue) == 0x000040, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000050, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, CallFunc_GetPlayerVariant_ReturnValue) == 0x000059, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation, CallFunc_GetHairVariant_ReturnValue) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetHairDefForCurrentVariation::CallFunc_GetHairVariant_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation) == 0x000080, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, MakeUp_Data) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::MakeUp_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, MakeUp_Material) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::MakeUp_Material' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, CallFunc_GetGameInstance_ReturnValue) == 0x000038, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000048, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, CallFunc_GetPlayerVariant_ReturnValue) == 0x000051, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation, CallFunc_GetMakeUpVariant_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetMakeUpDefForCurrentVariation::CallFunc_GetMakeUpVariant_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation) == 0x000080, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, Piercing_Data) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::Piercing_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, Peircing_Mesh) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::Peircing_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, CallFunc_GetGameInstance_ReturnValue) == 0x000038, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000048, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, CallFunc_GetPlayerVariant_ReturnValue) == 0x000051, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation, CallFunc_GetPiercingVariant_ReturnValue) == 0x000058, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPiercingDefForCurrentVariation::CallFunc_GetPiercingVariant_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData) == 0x000038, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, Data) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, CallFunc_GetCostumeDataAsset_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::CallFunc_GetCostumeDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData, CallFunc_IsValid_ReturnValue_2) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerCostumeData::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData) == 0x000038, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, EyesData) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::EyesData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, CallFunc_GetEyesDataAsset_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::CallFunc_GetEyesDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData, CallFunc_IsValid_ReturnValue_2) == 0x000031, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerEyesData::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData) == 0x000038, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, Data) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, CallFunc_GetHairDataAsset_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::CallFunc_GetHairDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData, CallFunc_IsValid_ReturnValue_2) == 0x000031, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairData::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID) == 0x000080, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, HairID) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::HairID' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, __WorldContext) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, HairData) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::HairData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_GetHairCollection_ReturnValue) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_GetHairCollection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_GetHairFromID_ReturnValue) == 0x000038, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_GetHairFromID_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_IsValid_ReturnValue_1) == 0x000060, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000068, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset) == 0x000070, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID, K2Node_DynamicCast_bSuccess) == 0x000078, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerHairDataWithID::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData) == 0x000038, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, Data) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, CallFunc_GetMakeUpDataAsset_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::CallFunc_GetMakeUpDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData, CallFunc_IsValid_ReturnValue_2) == 0x000031, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerMakeUpData::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData \ +static_assert(alignof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData) == 0x000008, "Wrong alignment on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData"); \ +static_assert(sizeof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData) == 0x000038, "Wrong size on BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, WorldContext) == 0x000000, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, __WorldContext) == 0x000008, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, Data) == 0x000010, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000018, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, CallFunc_GetPiercingDataAsset_ReturnValue) == 0x000028, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::CallFunc_GetPiercingDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData, CallFunc_IsValid_ReturnValue_2) == 0x000031, "Member 'BP_WrestlerCharacterFunctionLibrary_C_GetPlayerPiercingData::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerCharacterFunctionLibrary_C \ +static_assert(alignof(UBP_WrestlerCharacterFunctionLibrary_C) == 0x000008, "Wrong alignment on UBP_WrestlerCharacterFunctionLibrary_C"); \ +static_assert(sizeof(UBP_WrestlerCharacterFunctionLibrary_C) == 0x000028, "Wrong size on UBP_WrestlerCharacterFunctionLibrary_C"); \ + +#define DUMPER7_ASSERTS_UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement \ +static_assert(alignof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement) == 0x000008, "Wrong alignment on UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement"); \ +static_assert(sizeof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement) == 0x000020, "Wrong size on UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement, EntryPoint) == 0x000000, "Member 'UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement, K2Node_Event_InAutomata) == 0x000010, "Member 'UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement, K2Node_Event_InState) == 0x000018, "Member 'UnblockPlayerMovement_C_ExecuteUbergraph_UnblockPlayerMovement::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnblockPlayerMovement_C_ReceiveExecute \ +static_assert(alignof(UnblockPlayerMovement_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnblockPlayerMovement_C_ReceiveExecute"); \ +static_assert(sizeof(UnblockPlayerMovement_C_ReceiveExecute) == 0x000010, "Wrong size on UnblockPlayerMovement_C_ReceiveExecute"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnblockPlayerMovement_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnblockPlayerMovement_C_ReceiveExecute, InState) == 0x000008, "Member 'UnblockPlayerMovement_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnblockPlayerMovement_C \ +static_assert(alignof(UUnblockPlayerMovement_C) == 0x000008, "Wrong alignment on UUnblockPlayerMovement_C"); \ +static_assert(sizeof(UUnblockPlayerMovement_C) == 0x000090, "Wrong size on UUnblockPlayerMovement_C"); \ +static_assert(offsetof(UUnblockPlayerMovement_C, UberGraphFrame) == 0x000088, "Member 'UUnblockPlayerMovement_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities \ +static_assert(alignof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities) == 0x000008, "Wrong alignment on FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities"); \ +static_assert(sizeof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities) == 0x0000A8, "Wrong size on FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, EntryPoint) == 0x000000, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000010, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, K2Node_Event_InAutomata) == 0x000018, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, K2Node_Event_InState) == 0x000020, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_MakeOutgoingSpec_ReturnValue) == 0x000028, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_MakeOutgoingSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_MakeOutgoingSpec_ReturnValue_1) == 0x000038, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_MakeOutgoingSpec_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000048, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x000058, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x000068, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_BP_ApplyGameplayEffectSpecToTarget_ReturnValue) == 0x000078, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_BP_ApplyGameplayEffectSpecToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3) == 0x000080, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4) == 0x000090, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities, CallFunc_BP_ApplyGameplayEffectSpecToTarget_ReturnValue_1) == 0x0000A0, "Member 'FillPlayersHealthAndAbilities_C_ExecuteUbergraph_FillPlayersHealthAndAbilities::CallFunc_BP_ApplyGameplayEffectSpecToTarget_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FillPlayersHealthAndAbilities_C_ReceiveExecute \ +static_assert(alignof(FillPlayersHealthAndAbilities_C_ReceiveExecute) == 0x000008, "Wrong alignment on FillPlayersHealthAndAbilities_C_ReceiveExecute"); \ +static_assert(sizeof(FillPlayersHealthAndAbilities_C_ReceiveExecute) == 0x000010, "Wrong size on FillPlayersHealthAndAbilities_C_ReceiveExecute"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'FillPlayersHealthAndAbilities_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FillPlayersHealthAndAbilities_C_ReceiveExecute, InState) == 0x000008, "Member 'FillPlayersHealthAndAbilities_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFillPlayersHealthAndAbilities_C \ +static_assert(alignof(UFillPlayersHealthAndAbilities_C) == 0x000008, "Wrong alignment on UFillPlayersHealthAndAbilities_C"); \ +static_assert(sizeof(UFillPlayersHealthAndAbilities_C) == 0x000090, "Wrong size on UFillPlayersHealthAndAbilities_C"); \ +static_assert(offsetof(UFillPlayersHealthAndAbilities_C, UberGraphFrame) == 0x000088, "Member 'UFillPlayersHealthAndAbilities_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget \ +static_assert(alignof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget) == 0x000008, "Wrong alignment on WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget"); \ +static_assert(sizeof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget) == 0x0000C8, "Wrong size on WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, EntryPoint) == 0x000000, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, Temp_bool_Variable) == 0x000004, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, K2Node_Event_MyGeometry) == 0x000008, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, K2Node_Event_InDeltaTime) == 0x000040, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000048, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000059, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_IsValid_ReturnValue) == 0x00005A, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_GetPlayerController_ReturnValue) == 0x000060, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_PointerPosition_ReturnValue) == 0x000068, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_PointerPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_GetHud_ReturnValue) == 0x000080, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_ProjectWorldToScreen_OutScreenPosition) == 0x000088, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_ProjectWorldToScreen_OutScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_ProjectWorldToScreen_ReturnValue) == 0x000098, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_ProjectWorldToScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_BreakVector2D_X) == 0x0000A0, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_BreakVector2D_Y) == 0x0000A8, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget, CallFunc_MakeVector2D_ReturnValue) == 0x0000B8, "Member 'WBP_TKTarget_C_ExecuteUbergraph_WBP_TKTarget::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKTarget_C_PointerPosition \ +static_assert(alignof(WBP_TKTarget_C_PointerPosition) == 0x000008, "Wrong alignment on WBP_TKTarget_C_PointerPosition"); \ +static_assert(sizeof(WBP_TKTarget_C_PointerPosition) == 0x0000C8, "Wrong size on WBP_TKTarget_C_PointerPosition"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, ReturnValue) == 0x000000, "Member 'WBP_TKTarget_C_PointerPosition::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, Temp_bool_Variable) == 0x000018, "Member 'WBP_TKTarget_C_PointerPosition::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetActorBounds_Origin) == 0x000020, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetActorBounds_BoxExtent) == 0x000038, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetComponentBounds_Origin) == 0x000060, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetComponentBounds_BoxExtent) == 0x000078, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetComponentBounds_SphereRadius) == 0x000090, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_DoesSocketExist_ReturnValue) == 0x000094, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_DoesSocketExist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, CallFunc_GetSocketLocation_ReturnValue) == 0x000098, "Member 'WBP_TKTarget_C_PointerPosition::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_PointerPosition, K2Node_Select_Default) == 0x0000B0, "Member 'WBP_TKTarget_C_PointerPosition::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKTarget_C_Tick \ +static_assert(alignof(WBP_TKTarget_C_Tick) == 0x000004, "Wrong alignment on WBP_TKTarget_C_Tick"); \ +static_assert(sizeof(WBP_TKTarget_C_Tick) == 0x00003C, "Wrong size on WBP_TKTarget_C_Tick"); \ +static_assert(offsetof(WBP_TKTarget_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_TKTarget_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKTarget_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_TKTarget_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TKTarget_C \ +static_assert(alignof(UWBP_TKTarget_C) == 0x000008, "Wrong alignment on UWBP_TKTarget_C"); \ +static_assert(sizeof(UWBP_TKTarget_C) == 0x0002D8, "Wrong size on UWBP_TKTarget_C"); \ +static_assert(offsetof(UWBP_TKTarget_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_TKTarget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKTarget_C, Pointer) == 0x0002C8, "Member 'UWBP_TKTarget_C::Pointer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKTarget_C, TargetActor) == 0x0002D0, "Member 'UWBP_TKTarget_C::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer \ +static_assert(alignof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer) == 0x000008, "Wrong alignment on WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer"); \ +static_assert(sizeof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer) == 0x000068, "Wrong size on WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, EntryPoint) == 0x000000, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, K2Node_CustomEvent_Enemy) == 0x000008, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, Temp_int_Array_Index_Variable) == 0x000020, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, K2Node_Event_bInStatus) == 0x00002C, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_GetAllChildren_ReturnValue) == 0x000038, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_Array_Get_Item) == 0x000048, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, K2Node_DynamicCast_AsWBP_Awerness_Indicator) == 0x000058, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::K2Node_DynamicCast_AsWBP_Awerness_Indicator' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer, CallFunc_Less_IntInt_ReturnValue) == 0x000061, "Member 'WBP_EnemiesIndicatorsContainer_C_ExecuteUbergraph_WBP_EnemiesIndicatorsContainer::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event \ +static_assert(alignof(WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong alignment on WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(sizeof(WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong size on WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event, Enemy) == 0x000000, "Member 'WBP_EnemiesIndicatorsContainer_C_OnEnemyDetectedPlayer_Event::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemiesIndicatorsContainer_C_ToggleVisibility \ +static_assert(alignof(WBP_EnemiesIndicatorsContainer_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_EnemiesIndicatorsContainer_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_EnemiesIndicatorsContainer_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_EnemiesIndicatorsContainer_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_EnemiesIndicatorsContainer_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget \ +static_assert(alignof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget) == 0x000008, "Wrong alignment on WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget"); \ +static_assert(sizeof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget) == 0x000078, "Wrong size on WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, EnemyTransofrm) == 0x000000, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::EnemyTransofrm' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_bool_True_if_break_was_hit_Variable) == 0x000008, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000010, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Not_PreBool_ReturnValue) == 0x000019, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_bool_True_if_break_was_hit_Variable_1) == 0x000024, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_bool_True_if_break_was_hit_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_int_Array_Index_Variable) == 0x000028, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Not_PreBool_ReturnValue_1) == 0x00002C, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Array_Get_Item) == 0x000030, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Less_IntInt_ReturnValue) == 0x00003C, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_BooleanAND_ReturnValue) == 0x00003D, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, K2Node_DynamicCast_AsWBP_Awerness_Indicator) == 0x000040, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::K2Node_DynamicCast_AsWBP_Awerness_Indicator' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Array_Length_ReturnValue_1) == 0x00004C, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_int_Array_Index_Variable_1) == 0x000050, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, Temp_int_Loop_Counter_Variable_1) == 0x000054, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Array_Get_Item_1) == 0x000058, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Less_IntInt_ReturnValue_1) == 0x000060, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000061, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_BooleanAND_ReturnValue_1) == 0x000062, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, CallFunc_Add_IntInt_ReturnValue_1) == 0x000064, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget, K2Node_MakeArray_Array) == 0x000068, "Member 'WBP_EnemiesIndicatorsContainer_C_Update_Awerness_Widget::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_EnemiesIndicatorsContainer_C \ +static_assert(alignof(UWBP_EnemiesIndicatorsContainer_C) == 0x000008, "Wrong alignment on UWBP_EnemiesIndicatorsContainer_C"); \ +static_assert(sizeof(UWBP_EnemiesIndicatorsContainer_C) == 0x0005D8, "Wrong size on UWBP_EnemiesIndicatorsContainer_C"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, UberGraphFrame) == 0x000570, "Member 'UWBP_EnemiesIndicatorsContainer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_01) == 0x000578, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_02) == 0x000580, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_03) == 0x000588, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_03' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_04) == 0x000590, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_04' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_05) == 0x000598, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_05' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_06) == 0x0005A0, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_06' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_07) == 0x0005A8, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_07' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, AwernessIndicator_08) == 0x0005B0, "Member 'UWBP_EnemiesIndicatorsContainer_C::AwernessIndicator_08' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, CanvasPanel_51) == 0x0005B8, "Member 'UWBP_EnemiesIndicatorsContainer_C::CanvasPanel_51' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, EnemyHasIndicator) == 0x0005C0, "Member 'UWBP_EnemiesIndicatorsContainer_C::EnemyHasIndicator' has a wrong offset!"); \ +static_assert(offsetof(UWBP_EnemiesIndicatorsContainer_C, IndicatorArray) == 0x0005C8, "Member 'UWBP_EnemiesIndicatorsContainer_C::IndicatorArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BloodHeal_C \ +static_assert(alignof(UGE_BloodHeal_C) == 0x000008, "Wrong alignment on UGE_BloodHeal_C"); \ +static_assert(sizeof(UGE_BloodHeal_C) == 0x000A70, "Wrong size on UGE_BloodHeal_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Explosion_sharp_strong_C \ +static_assert(alignof(UCameraShake_Explosion_sharp_strong_C) == 0x000010, "Wrong alignment on UCameraShake_Explosion_sharp_strong_C"); \ +static_assert(sizeof(UCameraShake_Explosion_sharp_strong_C) == 0x000230, "Wrong size on UCameraShake_Explosion_sharp_strong_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Explosion_Rumble_strong_C \ +static_assert(alignof(UCameraShake_Explosion_Rumble_strong_C) == 0x000010, "Wrong alignment on UCameraShake_Explosion_Rumble_strong_C"); \ +static_assert(sizeof(UCameraShake_Explosion_Rumble_strong_C) == 0x000230, "Wrong size on UCameraShake_Explosion_Rumble_strong_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_Explosion_Rumble_C \ +static_assert(alignof(UCameraShake_Explosion_Rumble_C) == 0x000010, "Wrong alignment on UCameraShake_Explosion_Rumble_C"); \ +static_assert(sizeof(UCameraShake_Explosion_Rumble_C) == 0x000230, "Wrong size on UCameraShake_Explosion_Rumble_C"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_Event_Punch_Hit \ +static_assert(alignof(GA_Enemy_Attack_C_Event_Punch_Hit) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_Event_Punch_Hit"); \ +static_assert(sizeof(GA_Enemy_Attack_C_Event_Punch_Hit) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_Event_Punch_Hit"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Event_Punch_Hit, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_Event_Punch_Hit::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Event_Punch_Hit, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_Event_Punch_Hit::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF \ +static_assert(alignof(GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(sizeof(GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(offsetof(GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_EventReceived_37B10E3A434A66F6AAF6EAB395E082DF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8 \ +static_assert(alignof(GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8"); \ +static_assert(sizeof(GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8) == 0x0000B0, "Wrong size on GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8"); \ +static_assert(offsetof(GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8, Payload) == 0x000000, "Member 'GA_Enemy_Attack_C_EventReceived_62B123FA472BC8492A3CA4BE219ADEA8::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13 \ +static_assert(alignof(GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13"); \ +static_assert(sizeof(GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13) == 0x0000B0, "Wrong size on GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13"); \ +static_assert(offsetof(GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13, Payload) == 0x000000, "Member 'GA_Enemy_Attack_C_EventReceived_87B7E5084651A791FA92958DA28B2C13::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack \ +static_assert(alignof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack"); \ +static_assert(sizeof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack) == 0x001250, "Wrong size on GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, EntryPoint) == 0x000000, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeLiteralByte_ReturnValue) == 0x000004, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable) == 0x000008, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_Payload_1) == 0x000010, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable_1) == 0x0000D0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000180, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue) == 0x000188, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x000189, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable) == 0x00018A, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable_2) == 0x00018C, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_1) == 0x000194, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_2) == 0x000195, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable_3) == 0x000198, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_3) == 0x0001A0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_Payload) == 0x0001A8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_1) == 0x000258, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable_4) == 0x000268, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000318, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_1) == 0x000320, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_4) == 0x000321, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeVector_ReturnValue) == 0x000328, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000340, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_2) == 0x000358, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_3) == 0x000368, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_4) == 0x000378, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000388, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_5) == 0x000390, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_2) == 0x000391, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_bool_Variable_6) == 0x000392, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Event_bWasCancelled) == 0x000393, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_5) == 0x000394, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0003A8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag_1) == 0x0003B0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData_1) == 0x0003B8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetComponentByClass_ReturnValue) == 0x000468, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_3) == 0x000470, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000478, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000480, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_4) == 0x000488, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000489, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue) == 0x000490, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000498, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0004A0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x0004A8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0004B0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0004C0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004C4, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_PlayersViewAngle_ReturnValue) == 0x0004D8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_PlayersViewAngle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0004E0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0004E8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0004F0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetMontage_ReturnValue) == 0x0004F8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag_2) == 0x000500, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData_2) == 0x000508, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0005B8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_5) == 0x0005C0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_7) == 0x0005C4, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Event_EventTag) == 0x0005D4, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Event_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Event_EventData) == 0x0005E0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000690, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_bSuccess) == 0x000698, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0006A0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_bSuccess_1) == 0x0006B0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0006B8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0006C8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0006C9, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x0006D0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_bSuccess_2) == 0x0006E0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0006E1, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_MakeStruct_ApplyDamageParams) == 0x0006E8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000710, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasTag_ReturnValue) == 0x000711, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasTag_ReturnValue_1) == 0x000712, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BooleanAND_ReturnValue) == 0x000713, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetContextFromOwner_ReturnValue) == 0x000718, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetContextFromOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_MakeStruct_GameplayEventData) == 0x000730, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag_5) == 0x0007E0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData_5) == 0x0007E8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag_3) == 0x000898, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData_3) == 0x0008A0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag) == 0x000950, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData) == 0x000958, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000A08, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000A10, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Get_Damage_Type_Damage_Type_Tag) == 0x000A18, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Get_Damage_Type_Damage_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Select_Default) == 0x000A20, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000A28, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000A50, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_MakeStruct_ApplyDamageParams_2) == 0x000A58, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_MakeStruct_ApplyDamageParams_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000A80, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_ApplyDamage_ReturnValue_2) == 0x000A88, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_ApplyDamage_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000A90, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000AA8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000AB8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BooleanOR_ReturnValue) == 0x000AB9, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000AC0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000AC8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000AE0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000AE8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000B00, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Select_Default_1) == 0x000B18, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000B20, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_VLerp_ReturnValue) == 0x000B38, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000B50, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000B58, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAIController_ReturnValue) == 0x000C30, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000C38, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000C40, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000C48, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000C58, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000C59, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Not_PreBool_ReturnValue) == 0x000C5A, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_8) == 0x000C5C, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BooleanAND_ReturnValue_1) == 0x000C6C, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000C70, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000C78, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAIController_ReturnValue_1) == 0x000C80, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000C88, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetTargetActor_ReturnValue) == 0x000CA0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsValid_ReturnValue_6) == 0x000CA8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CreateDelegate_OutputDelegate_9) == 0x000CAC, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_IsDetectingActor_ReturnValue) == 0x000CBC, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000CC0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Vector_Distance_ReturnValue) == 0x000CD8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000CE0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000CE8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000CF0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000CF8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_bSuccess_3) == 0x000D08, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000D10, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x000D18, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000D20, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, Temp_struct_Variable_5) == 0x000D38, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000DE8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000DF0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000DF8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000E00, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000E18, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x000E30, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventTag_4) == 0x000E48, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_CustomEvent_EventData_4) == 0x000E50, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000F00, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000F18, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BreakRotator_Roll) == 0x000F30, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BreakRotator_Pitch) == 0x000F34, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_BreakRotator_Yaw) == 0x000F38, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000F40, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_MakeRotator_ReturnValue) == 0x000F48, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x000F60, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_RInterpTo_ReturnValue) == 0x000F78, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetActorRightVector_ReturnValue) == 0x000F90, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000FA8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_NegateVector_ReturnValue) == 0x000FB0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x000FC8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetPlayerPawn_ReturnValue_7) == 0x000FD0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetPlayerPawn_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetActorForwardVector_ReturnValue) == 0x000FD8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000FF0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_DynamicCast_bSuccess_4) == 0x001000, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x001008, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x001020, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x001028, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x001030, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetDirectionUnitVector_ReturnValue_2) == 0x001038, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetDirectionUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_NegateVector_ReturnValue_1) == 0x001050, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetActorRightVector_ReturnValue_1) == 0x001068, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetActorRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Dot_VectorVector_ReturnValue) == 0x001080, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x001088, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Add_DoubleDouble_ReturnValue) == 0x001090, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x001098, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_FClamp_ReturnValue) == 0x0010A0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0010A8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, K2Node_Select_Default_2) == 0x0010C0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x0010D8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Add_VectorVector_ReturnValue) == 0x0010E0, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetAIController_ReturnValue_2) == 0x0010F8, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Multiply_VectorVector_ReturnValue) == 0x001100, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_GetTargetActor_ReturnValue_1) == 0x001118, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_GetTargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001120, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x001138, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x001140, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x001158, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_Greater_DoubleDouble_B_ImplicitCast) == 0x001240, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_Greater_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_K2_DamageAllNonGASActors_EnvironmentDamage_ImplicitCast) == 0x001248, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_K2_DamageAllNonGASActors_EnvironmentDamage_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x00124C, "Member 'GA_Enemy_Attack_C_ExecuteUbergraph_GA_Enemy_Attack::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_Get_Damage_Type \ +static_assert(alignof(GA_Enemy_Attack_C_Get_Damage_Type) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_Get_Damage_Type"); \ +static_assert(sizeof(GA_Enemy_Attack_C_Get_Damage_Type) == 0x000050, "Wrong size on GA_Enemy_Attack_C_Get_Damage_Type"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, Damage_Type_Tag_0) == 0x000000, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::Damage_Type_Tag_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, CallFunc_GetAttachedActors_OutActors) == 0x000010, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, CallFunc_FilterArray_FilteredArray) == 0x000020, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::CallFunc_FilterArray_FilteredArray' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, CallFunc_Array_IsEmpty_ReturnValue) == 0x000030, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, CallFunc_Array_Get_Item) == 0x000038, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, K2Node_DynamicCast_AsBP_Weapon) == 0x000040, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_Get_Damage_Type, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'GA_Enemy_Attack_C_Get_Damage_Type::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Attack_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Attack_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Attack_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Attack_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Attack_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_MontageEventReceived \ +static_assert(alignof(GA_Enemy_Attack_C_MontageEventReceived) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_MontageEventReceived"); \ +static_assert(sizeof(GA_Enemy_Attack_C_MontageEventReceived) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_MontageEventReceived"); \ +static_assert(offsetof(GA_Enemy_Attack_C_MontageEventReceived, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_MontageEventReceived::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_MontageEventReceived, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_MontageEventReceived::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF \ +static_assert(alignof(GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(sizeof(GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_OnBlendOut_37B10E3A434A66F6AAF6EAB395E082DF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF \ +static_assert(alignof(GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(sizeof(GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_OnCancelled_37B10E3A434A66F6AAF6EAB395E082DF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF \ +static_assert(alignof(GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(sizeof(GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_OnCompleted_37B10E3A434A66F6AAF6EAB395E082DF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF \ +static_assert(alignof(GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(sizeof(GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF, EventTag) == 0x000000, "Member 'GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF, EventData) == 0x000008, "Member 'GA_Enemy_Attack_C_OnInterrupted_37B10E3A434A66F6AAF6EAB395E082DF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_PlayersViewAngle \ +static_assert(alignof(GA_Enemy_Attack_C_PlayersViewAngle) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_PlayersViewAngle"); \ +static_assert(sizeof(GA_Enemy_Attack_C_PlayersViewAngle) == 0x0000B8, "Wrong size on GA_Enemy_Attack_C_PlayersViewAngle"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, ReturnValue) == 0x000000, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetPlayerController_ReturnValue) == 0x000048, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000050, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetControlRotation_ReturnValue) == 0x000068, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_GetForwardVector_ReturnValue) == 0x000080, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_Dot_VectorVector_ReturnValue) == 0x000098, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_FClamp_ReturnValue) == 0x0000A0, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_PlayersViewAngle, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'GA_Enemy_Attack_C_PlayersViewAngle::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Attack_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Enemy_Attack_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Enemy_Attack_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Enemy_Attack_C_K2_CanActivateAbility) == 0x0000B0, "Wrong size on GA_Enemy_Attack_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_GetAIController_ReturnValue) == 0x000080, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000088, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_GetTargetActor_ReturnValue) == 0x000090, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000098, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000A8, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000A9, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Attack_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000AA, "Member 'GA_Enemy_Attack_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Attack_C \ +static_assert(alignof(UGA_Enemy_Attack_C) == 0x000008, "Wrong alignment on UGA_Enemy_Attack_C"); \ +static_assert(sizeof(UGA_Enemy_Attack_C) == 0x0006D8, "Wrong size on UGA_Enemy_Attack_C"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Attack_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, Counterable_Attack) == 0x000670, "Member 'UGA_Enemy_Attack_C::Counterable_Attack' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, TokenActiveDuration) == 0x000674, "Member 'UGA_Enemy_Attack_C::TokenActiveDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, ReactionEventTag) == 0x000678, "Member 'UGA_Enemy_Attack_C::ReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, PokeReactionEventTag) == 0x000680, "Member 'UGA_Enemy_Attack_C::PokeReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, PunchEnvironmentDamage) == 0x000688, "Member 'UGA_Enemy_Attack_C::PunchEnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, ImpactGameplayCueTag) == 0x000690, "Member 'UGA_Enemy_Attack_C::ImpactGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, Counter_Tags) == 0x000698, "Member 'UGA_Enemy_Attack_C::Counter_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, DamageTag) == 0x0006B8, "Member 'UGA_Enemy_Attack_C::DamageTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, HitTarget) == 0x0006C0, "Member 'UGA_Enemy_Attack_C::HitTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, Damage_Type_Tag) == 0x0006C8, "Member 'UGA_Enemy_Attack_C::Damage_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Attack_C, Noise_Range) == 0x0006D0, "Member 'UGA_Enemy_Attack_C::Noise_Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_CacheMantleType \ +static_assert(alignof(GA_Movement_Mantle_C_CacheMantleType) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_CacheMantleType"); \ +static_assert(sizeof(GA_Movement_Mantle_C_CacheMantleType) == 0x000020, "Wrong size on GA_Movement_Mantle_C_CacheMantleType"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CacheMantleType, CallFunc_MantleEndLoc_ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_CacheMantleType::CallFunc_MantleEndLoc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CacheMantleType, CallFunc_CalculateIsIntoCrouch_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_CacheMantleType::CallFunc_CalculateIsIntoCrouch_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CacheMantleType, CallFunc_CalculateIsWallClimbMantle_ReturnValue) == 0x000019, "Member 'GA_Movement_Mantle_C_CacheMantleType::CallFunc_CalculateIsWallClimbMantle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CacheMantleType, CallFunc_CalculateIsHighMantle_ReturnValue) == 0x00001A, "Member 'GA_Movement_Mantle_C_CacheMantleType::CallFunc_CalculateIsHighMantle_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160 \ +static_assert(alignof(GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(sizeof(GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160) == 0x0000B8, "Wrong size on GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(offsetof(GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160, EventTag) == 0x000000, "Member 'GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160, EventData) == 0x000008, "Member 'GA_Movement_Mantle_C_EventReceived_CCA4E4B24D1956F7BD2B428E08139160::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle \ +static_assert(alignof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle"); \ +static_assert(sizeof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle) == 0x000DE8, "Wrong size on GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, EntryPoint) == 0x000000, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000040, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_1) == 0x000058, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_ActorTimeDelay_ReturnValue) == 0x000068, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_2) == 0x000070, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_IsValid_ReturnValue_1) == 0x000080, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventTag_4) == 0x000084, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventData_4) == 0x000090, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventTag_3) == 0x000140, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventData_3) == 0x000148, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001F8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventTag_2) == 0x000208, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventData_2) == 0x000210, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002C0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventTag_1) == 0x0002D0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventData_1) == 0x0002D8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_5) == 0x000388, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventTag) == 0x000398, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CustomEvent_EventData) == 0x0003A0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_6) == 0x000450, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, Temp_struct_Variable) == 0x000460, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, Temp_struct_Variable_1) == 0x000510, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000518, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_7) == 0x000520, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_IsValid_ReturnValue_2) == 0x000530, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_8) == 0x000534, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_9) == 0x000544, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x000558, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, Temp_bool_Variable) == 0x000560, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_IsValid_ReturnValue_3) == 0x000561, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, Temp_struct_Variable_2) == 0x000568, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, Temp_struct_Variable_3) == 0x000580, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_Event_bWasCancelled) == 0x000598, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0005A0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_10) == 0x0005A8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0005B8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_DynamicCast_bSuccess) == 0x0005C8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0005D0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BooleanAND_ReturnValue) == 0x0005D8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0005E0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0005E8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x0005F0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0006D8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_AddActorWorldOffset_SweepHitResult_1) == 0x0006F0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_AddActorWorldOffset_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_AddLocalOffset_SweepHitResult) == 0x0007D8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_AddLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0008C0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0008C8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetActorForwardVector_ReturnValue) == 0x0008D0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_X) == 0x0008E8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Y) == 0x0008F0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Z) == 0x0008F8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000900, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetMovementComponent_ReturnValue) == 0x000918, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetMovementComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000920, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000930, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000938, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000940, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_CreateDelegate_OutputDelegate_11) == 0x000958, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_X_1) == 0x000968, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Y_1) == 0x000970, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Z_1) == 0x000978, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000980, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000988, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_X_2) == 0x000990, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Y_2) == 0x000998, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Z_2) == 0x0009A0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0009A8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_MakeVector_ReturnValue) == 0x0009B0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0009C8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_X_3) == 0x0009E0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Y_3) == 0x0009E8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BreakVector_Z_3) == 0x0009F0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0009F8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_MakeVector_ReturnValue_1) == 0x000A00, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000A18, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000A30, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000B18, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_OwnerDelta_ReturnValue) == 0x000B30, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_OwnerDelta_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Add_VectorVector_ReturnValue) == 0x000B38, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000B50, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000B68, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_OwnerDelta_ReturnValue_1) == 0x000B80, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_OwnerDelta_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000B88, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000B90, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, K2Node_Select_Default) == 0x000BA8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000BC0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000CA8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000CB0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000CC8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_K2_AddActorWorldOffset_SweepHitResult_2) == 0x000CE0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_K2_AddActorWorldOffset_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000DC8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BooleanAND_ReturnValue_1) == 0x000DC9, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_BooleanOR_ReturnValue) == 0x000DCA, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_OwnerDelta_ReturnValue_2) == 0x000DD0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_OwnerDelta_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_FInterpTo_ReturnValue) == 0x000DD8, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000DE0, "Member 'GA_Movement_Mantle_C_ExecuteUbergraph_GA_Movement_Mantle::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_K2_OnEndAbility \ +static_assert(alignof(GA_Movement_Mantle_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Movement_Mantle_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Movement_Mantle_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Movement_Mantle_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Movement_Mantle_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_MantleEndLoc \ +static_assert(alignof(GA_Movement_Mantle_C_MantleEndLoc) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_MantleEndLoc"); \ +static_assert(sizeof(GA_Movement_Mantle_C_MantleEndLoc) == 0x000080, "Wrong size on GA_Movement_Mantle_C_MantleEndLoc"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_MantleEndLoc::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, Temp_bool_Variable) == 0x000018, "Member 'GA_Movement_Mantle_C_MantleEndLoc::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000020, "Member 'GA_Movement_Mantle_C_MantleEndLoc::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000028, "Member 'GA_Movement_Mantle_C_MantleEndLoc::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, CallFunc_GetComponentByClass_ReturnValue) == 0x000030, "Member 'GA_Movement_Mantle_C_MantleEndLoc::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, CallFunc_GetMantleEndLocation_ReturnValue) == 0x000038, "Member 'GA_Movement_Mantle_C_MantleEndLoc::CallFunc_GetMantleEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000050, "Member 'GA_Movement_Mantle_C_MantleEndLoc::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_MantleEndLoc, K2Node_Select_Default) == 0x000068, "Member 'GA_Movement_Mantle_C_MantleEndLoc::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160 \ +static_assert(alignof(GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(sizeof(GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160) == 0x0000B8, "Wrong size on GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160, EventTag) == 0x000000, "Member 'GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160, EventData) == 0x000008, "Member 'GA_Movement_Mantle_C_OnBlendOut_CCA4E4B24D1956F7BD2B428E08139160::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160 \ +static_assert(alignof(GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(sizeof(GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160) == 0x0000B8, "Wrong size on GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160, EventTag) == 0x000000, "Member 'GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160, EventData) == 0x000008, "Member 'GA_Movement_Mantle_C_OnCancelled_CCA4E4B24D1956F7BD2B428E08139160::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160 \ +static_assert(alignof(GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(sizeof(GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160) == 0x0000B8, "Wrong size on GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160, EventTag) == 0x000000, "Member 'GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160, EventData) == 0x000008, "Member 'GA_Movement_Mantle_C_OnCompleted_CCA4E4B24D1956F7BD2B428E08139160::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160 \ +static_assert(alignof(GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(sizeof(GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160) == 0x0000B8, "Wrong size on GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160, EventTag) == 0x000000, "Member 'GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160, EventData) == 0x000008, "Member 'GA_Movement_Mantle_C_OnInterrupted_CCA4E4B24D1956F7BD2B428E08139160::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_OwnerDelta \ +static_assert(alignof(GA_Movement_Mantle_C_OwnerDelta) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_OwnerDelta"); \ +static_assert(sizeof(GA_Movement_Mantle_C_OwnerDelta) == 0x000028, "Wrong size on GA_Movement_Mantle_C_OwnerDelta"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OwnerDelta, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_OwnerDelta::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OwnerDelta, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Movement_Mantle_C_OwnerDelta::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OwnerDelta, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_OwnerDelta::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OwnerDelta, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_OwnerDelta::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_OwnerDelta, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'GA_Movement_Mantle_C_OwnerDelta::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_RecenterView \ +static_assert(alignof(GA_Movement_Mantle_C_RecenterView) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_RecenterView"); \ +static_assert(sizeof(GA_Movement_Mantle_C_RecenterView) == 0x000008, "Wrong size on GA_Movement_Mantle_C_RecenterView"); \ +static_assert(offsetof(GA_Movement_Mantle_C_RecenterView, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_RecenterView::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_CalculateIsHighMantle \ +static_assert(alignof(GA_Movement_Mantle_C_CalculateIsHighMantle) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_CalculateIsHighMantle"); \ +static_assert(sizeof(GA_Movement_Mantle_C_CalculateIsHighMantle) == 0x000088, "Wrong size on GA_Movement_Mantle_C_CalculateIsHighMantle"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_GetMantleEndLocation_ReturnValue) == 0x000030, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_GetMantleEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000048, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_BreakVector_X) == 0x000060, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_BreakVector_Y) == 0x000068, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_BreakVector_Z) == 0x000070, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_Abs_ReturnValue) == 0x000078, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsHighMantle, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000080, "Member 'GA_Movement_Mantle_C_CalculateIsHighMantle::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_CalculateIsIntoCrouch \ +static_assert(alignof(GA_Movement_Mantle_C_CalculateIsIntoCrouch) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_CalculateIsIntoCrouch"); \ +static_assert(sizeof(GA_Movement_Mantle_C_CalculateIsIntoCrouch) == 0x000020, "Wrong size on GA_Movement_Mantle_C_CalculateIsIntoCrouch"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsIntoCrouch, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_CalculateIsIntoCrouch::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsIntoCrouch, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Movement_Mantle_C_CalculateIsIntoCrouch::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsIntoCrouch, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_CalculateIsIntoCrouch::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsIntoCrouch, CallFunc_GetMantleIntoCrouch_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_CalculateIsIntoCrouch::CallFunc_GetMantleIntoCrouch_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_CalculateIsWallClimbMantle \ +static_assert(alignof(GA_Movement_Mantle_C_CalculateIsWallClimbMantle) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_CalculateIsWallClimbMantle"); \ +static_assert(sizeof(GA_Movement_Mantle_C_CalculateIsWallClimbMantle) == 0x000018, "Wrong size on GA_Movement_Mantle_C_CalculateIsWallClimbMantle"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsWallClimbMantle, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_CalculateIsWallClimbMantle::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsWallClimbMantle, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Movement_Mantle_C_CalculateIsWallClimbMantle::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_CalculateIsWallClimbMantle, CallFunc_GetIsWallClimbing_ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_CalculateIsWallClimbMantle::CallFunc_GetIsWallClimbing_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_GetTraversalComponent \ +static_assert(alignof(GA_Movement_Mantle_C_GetTraversalComponent) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_GetTraversalComponent"); \ +static_assert(sizeof(GA_Movement_Mantle_C_GetTraversalComponent) == 0x000018, "Wrong size on GA_Movement_Mantle_C_GetTraversalComponent"); \ +static_assert(offsetof(GA_Movement_Mantle_C_GetTraversalComponent, ReturnValue) == 0x000000, "Member 'GA_Movement_Mantle_C_GetTraversalComponent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_GetTraversalComponent, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Movement_Mantle_C_GetTraversalComponent::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_GetTraversalComponent, CallFunc_GetTraversalComponent_ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_GetTraversalComponent::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_IsInputTowardsLedge \ +static_assert(alignof(GA_Movement_Mantle_C_IsInputTowardsLedge) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_IsInputTowardsLedge"); \ +static_assert(sizeof(GA_Movement_Mantle_C_IsInputTowardsLedge) == 0x0000A0, "Wrong size on GA_Movement_Mantle_C_IsInputTowardsLedge"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, TraversalComponent) == 0x000000, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::TraversalComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, MovementComponent) == 0x000008, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, ReturnValue) == 0x000010, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_GetMantleEndLocation_ReturnValue) == 0x000018, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_GetMantleEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_GetLastInputVector_ReturnValue) == 0x000030, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_GetMantleStartLocation_ReturnValue) == 0x000048, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_GetMantleStartLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_Vector_Normal2D_ReturnValue) == 0x000078, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_IsInputTowardsLedge, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000098, "Member 'GA_Movement_Mantle_C_IsInputTowardsLedge::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Mantle_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Movement_Mantle_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Movement_Mantle_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Movement_Mantle_C_K2_CanActivateAbility) == 0x0000B0, "Wrong size on GA_Movement_Mantle_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_IsPlayerFabien_Return) == 0x000071, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000072, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, K2Node_DynamicCast_AsPawn_Movement_Component) == 0x000078, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::K2Node_DynamicCast_AsPawn_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000088, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_GetTraversalComponent_ReturnValue) == 0x000090, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000098, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000A8, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000A9, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_CanMantle_ReturnValue) == 0x0000AA, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_CanMantle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_IsInputTowardsLedge_ReturnValue) == 0x0000AB, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_IsInputTowardsLedge_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue) == 0x0000AC, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000AD, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Mantle_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x0000AE, "Member 'GA_Movement_Mantle_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Movement_Mantle_C \ +static_assert(alignof(UGA_Movement_Mantle_C) == 0x000008, "Wrong alignment on UGA_Movement_Mantle_C"); \ +static_assert(sizeof(UGA_Movement_Mantle_C) == 0x000708, "Wrong size on UGA_Movement_Mantle_C"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, UberGraphFrame) == 0x000668, "Member 'UGA_Movement_Mantle_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, LowMantleLerpDuration) == 0x000670, "Member 'UGA_Movement_Mantle_C::LowMantleLerpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, HighMantleLerpDuration) == 0x000678, "Member 'UGA_Movement_Mantle_C::HighMantleLerpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, HighMantleDuration) == 0x000680, "Member 'UGA_Movement_Mantle_C::HighMantleDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, LowMantleDuration) == 0x000688, "Member 'UGA_Movement_Mantle_C::LowMantleDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, HighMantleThreshold) == 0x000690, "Member 'UGA_Movement_Mantle_C::HighMantleThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, bIsHighMantle) == 0x000698, "Member 'UGA_Movement_Mantle_C::bIsHighMantle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, bIsWallClimbMantle) == 0x000699, "Member 'UGA_Movement_Mantle_C::bIsWallClimbMantle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, bRecenterViewOnHighMantle) == 0x00069A, "Member 'UGA_Movement_Mantle_C::bRecenterViewOnHighMantle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, bRecenterViewOnWallClimbMantle) == 0x00069B, "Member 'UGA_Movement_Mantle_C::bRecenterViewOnWallClimbMantle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, bIsIntoCrouch) == 0x00069C, "Member 'UGA_Movement_Mantle_C::bIsIntoCrouch' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, FinalMantleLoc) == 0x0006A0, "Member 'UGA_Movement_Mantle_C::FinalMantleLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, StartLoc) == 0x0006B8, "Member 'UGA_Movement_Mantle_C::StartLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, WasCrouching) == 0x0006D0, "Member 'UGA_Movement_Mantle_C::WasCrouching' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, MantleTask) == 0x0006D8, "Member 'UGA_Movement_Mantle_C::MantleTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, MeshPOS) == 0x0006E0, "Member 'UGA_Movement_Mantle_C::MeshPOS' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, ClimbSpeed) == 0x0006F8, "Member 'UGA_Movement_Mantle_C::ClimbSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Mantle_C, MaxClimbSpeed) == 0x000700, "Member 'UGA_Movement_Mantle_C::MaxClimbSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimLayerInterface_Player_C_CombatMain \ +static_assert(alignof(AnimLayerInterface_Player_C_CombatMain) == 0x000008, "Wrong alignment on AnimLayerInterface_Player_C_CombatMain"); \ +static_assert(sizeof(AnimLayerInterface_Player_C_CombatMain) == 0x000020, "Wrong size on AnimLayerInterface_Player_C_CombatMain"); \ +static_assert(offsetof(AnimLayerInterface_Player_C_CombatMain, InPose) == 0x000000, "Member 'AnimLayerInterface_Player_C_CombatMain::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimLayerInterface_Player_C_CombatMain, CombatMain_0) == 0x000010, "Member 'AnimLayerInterface_Player_C_CombatMain::CombatMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimLayerInterface_Player_C_LocomotionMain \ +static_assert(alignof(AnimLayerInterface_Player_C_LocomotionMain) == 0x000008, "Wrong alignment on AnimLayerInterface_Player_C_LocomotionMain"); \ +static_assert(sizeof(AnimLayerInterface_Player_C_LocomotionMain) == 0x000010, "Wrong size on AnimLayerInterface_Player_C_LocomotionMain"); \ +static_assert(offsetof(AnimLayerInterface_Player_C_LocomotionMain, LocomotionMain_0) == 0x000000, "Member 'AnimLayerInterface_Player_C_LocomotionMain::LocomotionMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IAnimLayerInterface_Player_C \ +static_assert(alignof(IAnimLayerInterface_Player_C) == 0x000001, "Wrong alignment on IAnimLayerInterface_Player_C"); \ +static_assert(sizeof(IAnimLayerInterface_Player_C) == 0x000001, "Wrong size on IAnimLayerInterface_Player_C"); \ + +#define DUMPER7_ASSERTS_BPI_HudActions_C_ApplyDamageHud \ +static_assert(alignof(BPI_HudActions_C_ApplyDamageHud) == 0x000008, "Wrong alignment on BPI_HudActions_C_ApplyDamageHud"); \ +static_assert(sizeof(BPI_HudActions_C_ApplyDamageHud) == 0x000030, "Wrong size on BPI_HudActions_C_ApplyDamageHud"); \ +static_assert(offsetof(BPI_HudActions_C_ApplyDamageHud, Instigator) == 0x000000, "Member 'BPI_HudActions_C_ApplyDamageHud::Instigator' has a wrong offset!"); \ +static_assert(offsetof(BPI_HudActions_C_ApplyDamageHud, Damage) == 0x000008, "Member 'BPI_HudActions_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(BPI_HudActions_C_ApplyDamageHud, Direction) == 0x000010, "Member 'BPI_HudActions_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(BPI_HudActions_C_ApplyDamageHud, Tag) == 0x000028, "Member 'BPI_HudActions_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_HudActions_C \ +static_assert(alignof(IBPI_HudActions_C) == 0x000001, "Wrong alignment on IBPI_HudActions_C"); \ +static_assert(sizeof(IBPI_HudActions_C) == 0x000001, "Wrong size on IBPI_HudActions_C"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_ApplyDamageHud \ +static_assert(alignof(WBP_HitReaction_C_ApplyDamageHud) == 0x000008, "Wrong alignment on WBP_HitReaction_C_ApplyDamageHud"); \ +static_assert(sizeof(WBP_HitReaction_C_ApplyDamageHud) == 0x000030, "Wrong size on WBP_HitReaction_C_ApplyDamageHud"); \ +static_assert(offsetof(WBP_HitReaction_C_ApplyDamageHud, Instigator) == 0x000000, "Member 'WBP_HitReaction_C_ApplyDamageHud::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ApplyDamageHud, Damage) == 0x000008, "Member 'WBP_HitReaction_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ApplyDamageHud, Direction) == 0x000010, "Member 'WBP_HitReaction_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ApplyDamageHud, Tag) == 0x000028, "Member 'WBP_HitReaction_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_CalculateHitAngle \ +static_assert(alignof(WBP_HitReaction_C_CalculateHitAngle) == 0x000008, "Wrong alignment on WBP_HitReaction_C_CalculateHitAngle"); \ +static_assert(sizeof(WBP_HitReaction_C_CalculateHitAngle) == 0x0000B0, "Wrong size on WBP_HitReaction_C_CalculateHitAngle"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, ReturnValue1) == 0x000000, "Member 'WBP_HitReaction_C_CalculateHitAngle::ReturnValue1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_GetOwningPlayer_ReturnValue) == 0x000008, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_GetHitLocation_returnValue) == 0x000010, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_GetHitLocation_returnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000028, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x000040, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000058, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000070, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_BreakVector_X) == 0x000088, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_BreakVector_Y) == 0x000090, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_BreakVector_Z) == 0x000098, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_DegAtan2_ReturnValue) == 0x0000A0, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_DegAtan2_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitAngle, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'WBP_HitReaction_C_CalculateHitAngle::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_CalculateHitUVLocation \ +static_assert(alignof(WBP_HitReaction_C_CalculateHitUVLocation) == 0x000008, "Wrong alignment on WBP_HitReaction_C_CalculateHitUVLocation"); \ +static_assert(sizeof(WBP_HitReaction_C_CalculateHitUVLocation) == 0x0000F0, "Wrong size on WBP_HitReaction_C_CalculateHitUVLocation"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, ReturnValue) == 0x000000, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetOwningPlayer_ReturnValue) == 0x000010, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetHitLocation_returnValue) == 0x000018, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetHitLocation_returnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000030, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x000048, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000060, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetRightVector_ReturnValue) == 0x000078, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_GetForwardVector_ReturnValue) == 0x000090, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000A8, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000B0, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_MakeVector2D_ReturnValue) == 0x0000C0, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_Add_Vector2DFloat_ReturnValue) == 0x0000D0, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_Add_Vector2DFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_CalculateHitUVLocation, CallFunc_Divide_Vector2DFloat_ReturnValue) == 0x0000E0, "Member 'WBP_HitReaction_C_CalculateHitUVLocation::CallFunc_Divide_Vector2DFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction \ +static_assert(alignof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction) == 0x000008, "Wrong alignment on WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction"); \ +static_assert(sizeof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction) == 0x0000D0, "Wrong size on WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, EntryPoint) == 0x000000, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_Instigator) == 0x000040, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_Damage) == 0x000048, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_Direction) == 0x000050, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_Event_Tag) == 0x000068, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000070, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_IsAnyAnimationPlaying_ReturnValue) == 0x000098, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_IsAnyAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_CalculateHitAngle_ReturnValue1) == 0x0000A0, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_CalculateHitAngle_ReturnValue1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_GetChildAt_ReturnValue) == 0x0000A8, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_DynamicCast_AsImage) == 0x0000B0, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_DynamicCast_AsImage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_IsValid_ReturnValue) == 0x0000B9, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_GetDynamicMaterial_ReturnValue) == 0x0000C0, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_GetDynamicMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0000C8, "Member 'WBP_HitReaction_C_ExecuteUbergraph_WBP_HitReaction::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_GetHitLocation \ +static_assert(alignof(WBP_HitReaction_C_GetHitLocation) == 0x000008, "Wrong alignment on WBP_HitReaction_C_GetHitLocation"); \ +static_assert(sizeof(WBP_HitReaction_C_GetHitLocation) == 0x0000E0, "Wrong size on WBP_HitReaction_C_GetHitLocation"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, ReturnValue) == 0x000000, "Member 'WBP_HitReaction_C_GetHitLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_GetActorForwardVector_ReturnValue) == 0x000038, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000050, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000068, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x000080, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000098, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000A0, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, K2Node_DynamicCast_AsActor) == 0x0000B8, "Member 'WBP_HitReaction_C_GetHitLocation::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, K2Node_DynamicCast_bSuccess) == 0x0000C0, "Member 'WBP_HitReaction_C_GetHitLocation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000C1, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_IsValid_ReturnValue) == 0x0000C2, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetHitLocation, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000C8, "Member 'WBP_HitReaction_C_GetHitLocation::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_GetViewportCentreAsWidgetPosition \ +static_assert(alignof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition) == 0x000008, "Wrong alignment on WBP_HitReaction_C_GetViewportCentreAsWidgetPosition"); \ +static_assert(sizeof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition) == 0x000090, "Wrong size on WBP_HitReaction_C_GetViewportCentreAsWidgetPosition"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, PlayerController) == 0x000000, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, ReturnValue) == 0x000008, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, CallFunc_GetPlayerScreenWidgetGeometry_ReturnValue) == 0x000018, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::CallFunc_GetPlayerScreenWidgetGeometry_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, CallFunc_GetLocalSize_ReturnValue) == 0x000050, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::CallFunc_GetLocalSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, CallFunc_LocalToViewport_PixelPosition) == 0x000060, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::CallFunc_LocalToViewport_PixelPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, CallFunc_LocalToViewport_ViewportPosition) == 0x000070, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::CallFunc_LocalToViewport_ViewportPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_GetViewportCentreAsWidgetPosition, CallFunc_Multiply_Vector2DFloat_ReturnValue) == 0x000080, "Member 'WBP_HitReaction_C_GetViewportCentreAsWidgetPosition::CallFunc_Multiply_Vector2DFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360 \ +static_assert(alignof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360) == 0x000010, "Wrong alignment on WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360"); \ +static_assert(sizeof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360) == 0x0001A0, "Wrong size on WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, PlayerController) == 0x000000, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, WorldPosition) == 0x000008, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, ReturnValue) == 0x000020, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, bInFrontOfPlayer) == 0x000030, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::bInFrontOfPlayer' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, Temp_bool_Variable) == 0x000031, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition) == 0x000038, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue) == 0x000048, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_MakeVector2D_ReturnValue) == 0x000050, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_DeprojectScreenToWorld_WorldPosition) == 0x000060, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_DeprojectScreenToWorld_WorldPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_DeprojectScreenToWorld_WorldDirection) == 0x000078, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_DeprojectScreenToWorld_WorldDirection' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_DeprojectScreenToWorld_ReturnValue) == 0x000090, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_DeprojectScreenToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_GetViewportSize_ReturnValue) == 0x000098, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_GetViewportSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_MakeRotFromX_ReturnValue) == 0x0000A8, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_MakeTransform_ReturnValue) == 0x0000C0, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_InverseTransformLocation_ReturnValue) == 0x000120, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_NegateVector_ReturnValue) == 0x000138, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_TransformLocation_ReturnValue) == 0x000150, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_TransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition_1) == 0x000168, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue_1) == 0x000178, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, CallFunc_Subtract_Vector2DVector2D_ReturnValue) == 0x000180, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::CallFunc_Subtract_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360, K2Node_Select_Default) == 0x000190, "Member 'WBP_HitReaction_C_ProjectWorldLocationToWidgetPosition360::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReaction_C_Tick \ +static_assert(alignof(WBP_HitReaction_C_Tick) == 0x000004, "Wrong alignment on WBP_HitReaction_C_Tick"); \ +static_assert(sizeof(WBP_HitReaction_C_Tick) == 0x00003C, "Wrong size on WBP_HitReaction_C_Tick"); \ +static_assert(offsetof(WBP_HitReaction_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_HitReaction_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReaction_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_HitReaction_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_HitReaction_C \ +static_assert(alignof(UWBP_HitReaction_C) == 0x000008, "Wrong alignment on UWBP_HitReaction_C"); \ +static_assert(sizeof(UWBP_HitReaction_C) == 0x000308, "Wrong size on UWBP_HitReaction_C"); \ +static_assert(offsetof(UWBP_HitReaction_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_HitReaction_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReaction_C, ImageSlot) == 0x0002C8, "Member 'UWBP_HitReaction_C::ImageSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReaction_C, HitInstigator) == 0x0002D0, "Member 'UWBP_HitReaction_C::HitInstigator' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReaction_C, HitAngle) == 0x0002F8, "Member 'UWBP_HitReaction_C::HitAngle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReaction_C, ImageMaterial) == 0x000300, "Member 'UWBP_HitReaction_C::ImageMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_VampiricVisionTag_C \ +static_assert(alignof(UGE_VampiricVisionTag_C) == 0x000008, "Wrong alignment on UGE_VampiricVisionTag_C"); \ +static_assert(sizeof(UGE_VampiricVisionTag_C) == 0x000A70, "Wrong size on UGE_VampiricVisionTag_C"); \ + +#define DUMPER7_ASSERTS_BP_NPC_DeafenVolume_C_DeafenOverlap \ +static_assert(alignof(BP_NPC_DeafenVolume_C_DeafenOverlap) == 0x000008, "Wrong alignment on BP_NPC_DeafenVolume_C_DeafenOverlap"); \ +static_assert(sizeof(BP_NPC_DeafenVolume_C_DeafenOverlap) == 0x000108, "Wrong size on BP_NPC_DeafenVolume_C_DeafenOverlap"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, OverlappedComponent) == 0x000000, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, OtherActor) == 0x000008, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, OtherComp) == 0x000010, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, OtherBodyIndex) == 0x000018, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, bFromSweep) == 0x00001C, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_DeafenOverlap, SweepResult) == 0x000020, "Member 'BP_NPC_DeafenVolume_C_DeafenOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume \ +static_assert(alignof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume) == 0x000008, "Wrong alignment on BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume"); \ +static_assert(sizeof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume) == 0x000398, "Wrong size on BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, EntryPoint) == 0x000000, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Array_Index_Variable_1) == 0x000018, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Loop_Counter_Variable_1) == 0x000028, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Add_IntInt_ReturnValue_1) == 0x00002C, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Array_Index_Variable_3) == 0x000030, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Loop_Counter_Variable_2) == 0x000034, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Add_IntInt_ReturnValue_2) == 0x000038, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Loop_Counter_Variable_3) == 0x00003C, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Add_IntInt_ReturnValue_3) == 0x000040, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_Enemy) == 0x000048, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000058, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000068, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Less_IntInt_ReturnValue) == 0x000069, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000070, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000090, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_AddUnique_ReturnValue) == 0x000094, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CreateDelegate_OutputDelegate_1) == 0x000098, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Get_Item) == 0x0000A8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Length_ReturnValue_1) == 0x0000B0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000B4, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OverlappedComponent_1) == 0x0000B8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherActor_1) == 0x0000C0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherComp_1) == 0x0000C8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherBodyIndex_1) == 0x0000D0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_bFromSweep_1) == 0x0000D4, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_bFromSweep_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_SweepResult_1) == 0x0000D8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_SweepResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Loop_Counter_Variable_4) == 0x0001C0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001C4, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Add_IntInt_ReturnValue_4) == 0x0001D4, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OverlappedComponent) == 0x0001D8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherActor) == 0x0001E0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherComp) == 0x0001E8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_OtherBodyIndex) == 0x0001F0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_bFromSweep) == 0x0001F4, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, K2Node_CustomEvent_SweepResult) == 0x0001F8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::K2Node_CustomEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Get_Item_1) == 0x0002E0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Length_ReturnValue_2) == 0x0002E8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Less_IntInt_ReturnValue_2) == 0x0002EC, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0002F0, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0002F8, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000300, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000320, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000328, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000330, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Get_Item_2) == 0x000350, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Get_Item_3) == 0x000358, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000360, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_IsValid_ReturnValue) == 0x000361, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000362, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000368, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000378, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Length_ReturnValue_3) == 0x00037C, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Less_IntInt_ReturnValue_3) == 0x000380, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Length_ReturnValue_4) == 0x000384, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Less_IntInt_ReturnValue_4) == 0x000388, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, Temp_int_Array_Index_Variable_4) == 0x00038C, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume, CallFunc_Array_Get_Item_4) == 0x000390, "Member 'BP_NPC_DeafenVolume_C_ExecuteUbergraph_BP_NPC_DeafenVolume::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_DeafenVolume_C_SpawnAndAttachTorch \ +static_assert(alignof(BP_NPC_DeafenVolume_C_SpawnAndAttachTorch) == 0x000008, "Wrong alignment on BP_NPC_DeafenVolume_C_SpawnAndAttachTorch"); \ +static_assert(sizeof(BP_NPC_DeafenVolume_C_SpawnAndAttachTorch) == 0x000008, "Wrong size on BP_NPC_DeafenVolume_C_SpawnAndAttachTorch"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_SpawnAndAttachTorch, Enemy) == 0x000000, "Member 'BP_NPC_DeafenVolume_C_SpawnAndAttachTorch::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_DeafenVolume_C_UndeafenOverlap \ +static_assert(alignof(BP_NPC_DeafenVolume_C_UndeafenOverlap) == 0x000008, "Wrong alignment on BP_NPC_DeafenVolume_C_UndeafenOverlap"); \ +static_assert(sizeof(BP_NPC_DeafenVolume_C_UndeafenOverlap) == 0x000108, "Wrong size on BP_NPC_DeafenVolume_C_UndeafenOverlap"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, OverlappedComponent) == 0x000000, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, OtherActor) == 0x000008, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, OtherComp) == 0x000010, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, OtherBodyIndex) == 0x000018, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, bFromSweep) == 0x00001C, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UndeafenOverlap, SweepResult) == 0x000020, "Member 'BP_NPC_DeafenVolume_C_UndeafenOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_DeafenVolume_C_UserConstructionScript \ +static_assert(alignof(BP_NPC_DeafenVolume_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_NPC_DeafenVolume_C_UserConstructionScript"); \ +static_assert(sizeof(BP_NPC_DeafenVolume_C_UserConstructionScript) == 0x000290, "Wrong size on BP_NPC_DeafenVolume_C_UserConstructionScript"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Not_PreBool_ReturnValue) == 0x000014, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Location) == 0x0000E0, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Rotation) == 0x0000F8, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Scale) == 0x000110, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Location_1) == 0x000128, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Rotation_1) == 0x000140, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_BreakTransform_Scale_1) == 0x000158, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000170, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000188, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x0001A0, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_1) == 0x000200, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x000260, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_1) == 0x000268, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_AddUnique_ReturnValue) == 0x000270, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_AddUnique_ReturnValue_1) == 0x000274, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue) == 0x000278, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_1) == 0x00027C, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue) == 0x000280, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_DeafenVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue_1) == 0x000281, "Member 'BP_NPC_DeafenVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_NPC_DeafenVolume_C \ +static_assert(alignof(ABP_NPC_DeafenVolume_C) == 0x000008, "Wrong alignment on ABP_NPC_DeafenVolume_C"); \ +static_assert(sizeof(ABP_NPC_DeafenVolume_C) == 0x000328, "Wrong size on ABP_NPC_DeafenVolume_C"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, UberGraphFrame) == 0x000298, "Member 'ABP_NPC_DeafenVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Billboard) == 0x0002A0, "Member 'ABP_NPC_DeafenVolume_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Scene) == 0x0002A8, "Member 'ABP_NPC_DeafenVolume_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Make_Deaf_On_Beginplay) == 0x0002B0, "Member 'ABP_NPC_DeafenVolume_C::Make_Deaf_On_Beginplay' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Deafen_Boxes) == 0x0002B8, "Member 'ABP_NPC_DeafenVolume_C::Deafen_Boxes' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Undeafen_boxes) == 0x0002C8, "Member 'ABP_NPC_DeafenVolume_C::Undeafen_boxes' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, CollisionsVisibleInGame) == 0x0002D8, "Member 'ABP_NPC_DeafenVolume_C::CollisionsVisibleInGame' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, AI_Spawners) == 0x0002E0, "Member 'ABP_NPC_DeafenVolume_C::AI_Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, Deafen) == 0x0002F0, "Member 'ABP_NPC_DeafenVolume_C::Deafen' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, DeafenVolumes) == 0x0002F8, "Member 'ABP_NPC_DeafenVolume_C::DeafenVolumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, UndeafenVolumes) == 0x000308, "Member 'ABP_NPC_DeafenVolume_C::UndeafenVolumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_DeafenVolume_C, SpawnedEnemies) == 0x000318, "Member 'ABP_NPC_DeafenVolume_C::SpawnedEnemies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData) == 0x000100, "Wrong size on AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_28) == 0x000004, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_28' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_29) == 0x00000C, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_29' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __BoolProperty_30) == 0x000014, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__BoolProperty_30' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __FloatProperty_31) == 0x000018, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__FloatProperty_31' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __FloatProperty_32) == 0x00001C, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__FloatProperty_32' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __BoolProperty_33) == 0x000020, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__BoolProperty_33' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __EnumProperty_34) == 0x000021, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__EnumProperty_34' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __ByteProperty_35) == 0x000022, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__ByteProperty_35' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_36) == 0x000024, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_36' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_37) == 0x00002C, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_37' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_38) == 0x000034, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_38' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __NameProperty_39) == 0x00003C, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__NameProperty_39' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, __StructProperty_40) == 0x000048, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::__StructProperty_40' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000068, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000E8, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData) == 0x000004, "Wrong alignment on AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData) == 0x000008, "Wrong size on AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData, __FloatProperty) == 0x000004, "Member 'AnimBP_Player_Combat::FAnimBlueprintGeneratedMutableData::__FloatProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_AnimGraph \ +static_assert(alignof(AnimBP_Player_Combat_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_AnimGraph) == 0x000020, "Wrong size on AnimBP_Player_Combat_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_AnimGraph, InPose) == 0x000000, "Member 'AnimBP_Player_Combat_C_AnimGraph::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_AnimGraph, AnimGraph_0) == 0x000010, "Member 'AnimBP_Player_Combat_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_BlueprintUpdateAnimation \ +static_assert(alignof(AnimBP_Player_Combat_C_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_Player_Combat_C_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimBP_Player_Combat_C_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimBP_Player_Combat_C_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_CombatMain \ +static_assert(alignof(AnimBP_Player_Combat_C_CombatMain) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_CombatMain"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_CombatMain) == 0x000020, "Wrong size on AnimBP_Player_Combat_C_CombatMain"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_CombatMain, InPose) == 0x000000, "Member 'AnimBP_Player_Combat_C_CombatMain::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_CombatMain, CombatMain_0) == 0x000010, "Member 'AnimBP_Player_Combat_C_CombatMain::CombatMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat \ +static_assert(alignof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat) == 0x000020, "Wrong size on AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat, EntryPoint) == 0x000000, "Member 'AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat, CallFunc_GetOwnerCharacter_returnValue) == 0x000008, "Member 'AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat, K2Node_Event_DeltaTimeX) == 0x00001C, "Member 'AnimBP_Player_Combat_C_ExecuteUbergraph_AnimBP_Player_Combat::K2Node_Event_DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_GetOwnerCharacter \ +static_assert(alignof(AnimBP_Player_Combat_C_GetOwnerCharacter) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_GetOwnerCharacter"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_GetOwnerCharacter) == 0x000020, "Wrong size on AnimBP_Player_Combat_C_GetOwnerCharacter"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_GetOwnerCharacter, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Combat_C_GetOwnerCharacter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_GetOwnerCharacter, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Combat_C_GetOwnerCharacter::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_GetOwnerCharacter, K2Node_DynamicCast_AsCharacter) == 0x000010, "Member 'AnimBP_Player_Combat_C_GetOwnerCharacter::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_GetOwnerCharacter, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_Player_Combat_C_GetOwnerCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_LocomotionMain \ +static_assert(alignof(AnimBP_Player_Combat_C_LocomotionMain) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_LocomotionMain"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_LocomotionMain) == 0x000010, "Wrong size on AnimBP_Player_Combat_C_LocomotionMain"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_LocomotionMain, LocomotionMain_0) == 0x000000, "Member 'AnimBP_Player_Combat_C_LocomotionMain::LocomotionMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_UpdateAim \ +static_assert(alignof(AnimBP_Player_Combat_C_UpdateAim) == 0x000010, "Wrong alignment on AnimBP_Player_Combat_C_UpdateAim"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_UpdateAim) == 0x0000A0, "Wrong size on AnimBP_Player_Combat_C_UpdateAim"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateAim, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Combat_C_UpdateAim::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateAim, CallFunc_GetControlRotation_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Combat_C_UpdateAim::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateAim, CallFunc_GetTransform_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Combat_C_UpdateAim::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue) == 0x000080, "Member 'AnimBP_Player_Combat_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_UpdateCombat \ +static_assert(alignof(AnimBP_Player_Combat_C_UpdateCombat) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_UpdateCombat"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_UpdateCombat) == 0x000020, "Wrong size on AnimBP_Player_Combat_C_UpdateCombat"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateCombat, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Combat_C_UpdateCombat::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateCombat, K2Node_DynamicCast_AsWrestler_Combat_State_Interface) == 0x000008, "Member 'AnimBP_Player_Combat_C_UpdateCombat::K2Node_DynamicCast_AsWrestler_Combat_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateCombat, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_Player_Combat_C_UpdateCombat::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateCombat, CallFunc_IsInCombat_ReturnValue) == 0x000019, "Member 'AnimBP_Player_Combat_C_UpdateCombat::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_UpdateMovementState \ +static_assert(alignof(AnimBP_Player_Combat_C_UpdateMovementState) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_UpdateMovementState"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_UpdateMovementState) == 0x000010, "Wrong size on AnimBP_Player_Combat_C_UpdateMovementState"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateMovementState, CallFunc_GetOwnerCharacter_returnValue) == 0x000000, "Member 'AnimBP_Player_Combat_C_UpdateMovementState::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateMovementState, CallFunc_IsFalling_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Combat_C_UpdateMovementState::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Combat_C_UpdateVelocity \ +static_assert(alignof(AnimBP_Player_Combat_C_UpdateVelocity) == 0x000008, "Wrong alignment on AnimBP_Player_Combat_C_UpdateVelocity"); \ +static_assert(sizeof(AnimBP_Player_Combat_C_UpdateVelocity) == 0x000050, "Wrong size on AnimBP_Player_Combat_C_UpdateVelocity"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, CallFunc_VSize_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, CallFunc_GetVelocity_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, CallFunc_CalculateDirection_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::CallFunc_CalculateDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Combat_C_UpdateVelocity, K2Node_VariableSet_Direction_ImplicitCast) == 0x000048, "Member 'AnimBP_Player_Combat_C_UpdateVelocity::K2Node_VariableSet_Direction_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Player_Combat_C \ +static_assert(alignof(UAnimBP_Player_Combat_C) == 0x000010, "Wrong alignment on UAnimBP_Player_Combat_C"); \ +static_assert(sizeof(UAnimBP_Player_Combat_C) == 0x000860, "Wrong size on UAnimBP_Player_Combat_C"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, UberGraphFrame) == 0x000350, "Member 'UAnimBP_Player_Combat_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, __AnimBlueprintMutables) == 0x000358, "Member 'UAnimBP_Player_Combat_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimBlueprintExtension_PropertyAccess) == 0x000360, "Member 'UAnimBP_Player_Combat_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimBlueprintExtension_Base) == 0x000368, "Member 'UAnimBP_Player_Combat_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_SaveCachedPose) == 0x000370, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_SaveCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_UseCachedPose) == 0x0003F0, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_UseCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_LinkedInputPose_1) == 0x000418, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_LinkedInputPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_Root_2) == 0x0004D0, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_Root_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_RotationOffsetBlendSpace) == 0x0004F0, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_RotationOffsetBlendSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_Root_1) == 0x000608, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_Root_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_Root) == 0x000628, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_LinkedInputPose) == 0x000648, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, AnimGraphNode_LinkedAnimLayer) == 0x000700, "Member 'UAnimBP_Player_Combat_C::AnimGraphNode_LinkedAnimLayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, Direction) == 0x0007C8, "Member 'UAnimBP_Player_Combat_C::Direction' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, Velocity) == 0x0007D0, "Member 'UAnimBP_Player_Combat_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, Speed) == 0x0007E8, "Member 'UAnimBP_Player_Combat_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, bIsFalling) == 0x0007F0, "Member 'UAnimBP_Player_Combat_C::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, ControlRotation) == 0x0007F8, "Member 'UAnimBP_Player_Combat_C::ControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, RelativeControlRotation) == 0x000810, "Member 'UAnimBP_Player_Combat_C::RelativeControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, bInCombat) == 0x000828, "Member 'UAnimBP_Player_Combat_C::bInCombat' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, SkeletalRef) == 0x000830, "Member 'UAnimBP_Player_Combat_C::SkeletalRef' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, CamOffset) == 0x000838, "Member 'UAnimBP_Player_Combat_C::CamOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Combat_C, Is_Crouched) == 0x000850, "Member 'UAnimBP_Player_Combat_C::Is_Crouched' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage \ +static_assert(alignof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage) == 0x000008, "Wrong alignment on BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage"); \ +static_assert(sizeof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage) == 0x0001A0, "Wrong size on BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, EntryPoint) == 0x000000, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_object_Variable) == 0x000008, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Length_ReturnValue) == 0x000014, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000020, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Array_Index_Variable_1) == 0x000030, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_object_Variable_1) == 0x000038, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000040, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Loop_Counter_Variable_1) == 0x000048, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Loop_Counter_Variable_2) == 0x00004C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Add_IntInt_ReturnValue_1) == 0x000050, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Add_IntInt_ReturnValue_2) == 0x000058, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_bool_Variable) == 0x00005C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Loop_Counter_Variable_3) == 0x000060, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Add_IntInt_ReturnValue_3) == 0x000064, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Array_Index_Variable_2) == 0x000068, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, Temp_int_Array_Index_Variable_3) == 0x00006C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000070, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000078, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000089, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000090, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000098, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_bSuccess_1) == 0x0000A0, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000A8, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_bSuccess_2) == 0x0000B8, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x0000C0, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000D0, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0000D8, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_DynamicCast_bSuccess_3) == 0x0000E8, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_IsValid_ReturnValue) == 0x0000E9, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0000F0, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, K2Node_Event_DeltaSeconds) == 0x0000F8, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Get_Item_1) == 0x000100, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Length_ReturnValue_1) == 0x000108, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Less_IntInt_ReturnValue_1) == 0x00010C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Get_Item_2) == 0x000110, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Length_ReturnValue_2) == 0x000118, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Less_IntInt_ReturnValue_2) == 0x00011C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetVelocity_ReturnValue) == 0x000120, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Conv_StringToName_ReturnValue) == 0x000138, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_GetBoneLinearVelocity_ReturnValue) == 0x000140, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_GetBoneLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Vector_GetAbsMax_ReturnValue) == 0x000158, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Vector_GetAbsMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Get_Item_3) == 0x000160, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_MapRangeClamped_ReturnValue) == 0x000168, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_SpawnSystemAttached_ReturnValue_2) == 0x000170, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_SpawnSystemAttached_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Length_ReturnValue_3) == 0x000178, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Less_IntInt_ReturnValue_3) == 0x00017C, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Add_ReturnValue) == 0x000180, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Add_ReturnValue_1) == 0x000184, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Add_ReturnValue_2) == 0x000188, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_Array_Get_Item_4) == 0x000190, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000198, "Member 'BP_BlurredMomentum_AfterImage_C_ExecuteUbergraph_BP_BlurredMomentum_AfterImage::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity \ +static_assert(alignof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity) == 0x000008, "Wrong alignment on BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity"); \ +static_assert(sizeof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity) == 0x000158, "Wrong size on BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, VelLength) == 0x000000, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::VelLength' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, Len) == 0x000008, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::Len' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, Temp_bool_Variable) == 0x000010, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, Temp_bool_Variable_1) == 0x000011, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_MakeLiteralName_ReturnValue) == 0x000014, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_EqualEqual_VectorVector_ReturnValue) == 0x00001C, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_EqualEqual_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, Temp_bool_Variable_2) == 0x00001D, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_MakeLiteralName_ReturnValue_1) == 0x000020, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_MakeLiteralName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Add_VectorVector_ReturnValue) == 0x000028, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_MakeLiteralName_ReturnValue_2) == 0x000040, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_MakeLiteralName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_EqualEqual_VectorVector_ReturnValue_1) == 0x000048, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_EqualEqual_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Array_Get_Item) == 0x000050, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_GetSocketLocation_ReturnValue) == 0x000058, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_GetSocketLocation_ReturnValue_1) == 0x000070, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, K2Node_Select_Default) == 0x000088, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, K2Node_Select_Default_1) == 0x0000A0, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000B8, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x0000D0, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_VSize_ReturnValue) == 0x0000E8, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_VSize_ReturnValue_1) == 0x0000F0, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_GetSocketLocation_ReturnValue_2) == 0x0000F8, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_GetSocketLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, K2Node_Select_Default_2) == 0x000110, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Subtract_VectorVector_ReturnValue_2) == 0x000128, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Subtract_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_VSize_ReturnValue_2) == 0x000140, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_VSize_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_FMax_ReturnValue) == 0x000148, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000150, "Member 'BP_BlurredMomentum_AfterImage_C_GetHandBoneVelocity::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BlurredMomentum_AfterImage_C_ReceiveTick \ +static_assert(alignof(BP_BlurredMomentum_AfterImage_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_BlurredMomentum_AfterImage_C_ReceiveTick"); \ +static_assert(sizeof(BP_BlurredMomentum_AfterImage_C_ReceiveTick) == 0x000004, "Wrong size on BP_BlurredMomentum_AfterImage_C_ReceiveTick"); \ +static_assert(offsetof(BP_BlurredMomentum_AfterImage_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_BlurredMomentum_AfterImage_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BlurredMomentum_AfterImage_C \ +static_assert(alignof(ABP_BlurredMomentum_AfterImage_C) == 0x000008, "Wrong alignment on ABP_BlurredMomentum_AfterImage_C"); \ +static_assert(sizeof(ABP_BlurredMomentum_AfterImage_C) == 0x000320, "Wrong size on ABP_BlurredMomentum_AfterImage_C"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, UberGraphFrame) == 0x000298, "Member 'ABP_BlurredMomentum_AfterImage_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_BlurredMomentum_AfterImage_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, TargetCharacter) == 0x0002A8, "Member 'ABP_BlurredMomentum_AfterImage_C::TargetCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, SkeletalMeshComps) == 0x0002B0, "Member 'ABP_BlurredMomentum_AfterImage_C::SkeletalMeshComps' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, Systems) == 0x0002C0, "Member 'ABP_BlurredMomentum_AfterImage_C::Systems' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, HandLPos) == 0x0002D0, "Member 'ABP_BlurredMomentum_AfterImage_C::HandLPos' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, HandRPos) == 0x0002E8, "Member 'ABP_BlurredMomentum_AfterImage_C::HandRPos' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, JntPos) == 0x000300, "Member 'ABP_BlurredMomentum_AfterImage_C::JntPos' has a wrong offset!"); \ +static_assert(offsetof(ABP_BlurredMomentum_AfterImage_C, Player) == 0x000318, "Member 'ABP_BlurredMomentum_AfterImage_C::Player' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AStagePresence_Markup_C \ +static_assert(alignof(AStagePresence_Markup_C) == 0x000008, "Wrong alignment on AStagePresence_Markup_C"); \ +static_assert(sizeof(AStagePresence_Markup_C) == 0x0002B8, "Wrong size on AStagePresence_Markup_C"); \ +static_assert(offsetof(AStagePresence_Markup_C, DismountSpline) == 0x000298, "Member 'AStagePresence_Markup_C::DismountSpline' has a wrong offset!"); \ +static_assert(offsetof(AStagePresence_Markup_C, MountSpline) == 0x0002A0, "Member 'AStagePresence_Markup_C::MountSpline' has a wrong offset!"); \ +static_assert(offsetof(AStagePresence_Markup_C, Stage) == 0x0002A8, "Member 'AStagePresence_Markup_C::Stage' has a wrong offset!"); \ +static_assert(offsetof(AStagePresence_Markup_C, Dismount) == 0x0002B0, "Member 'AStagePresence_Markup_C::Dismount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_TargetingMode_C_BlueprintModifyCamera \ +static_assert(alignof(CM_TargetingMode_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_TargetingMode_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_TargetingMode_C_BlueprintModifyCamera) == 0x0000B8, "Wrong size on CM_TargetingMode_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000080, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_GetBlendWeight_returnValue) == 0x000088, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_GetBlendWeight_returnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000098, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000A0, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0000A8, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x0000B0, "Member 'CM_TargetingMode_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_TargetingMode_C_GetBlendWeight \ +static_assert(alignof(CM_TargetingMode_C_GetBlendWeight) == 0x000008, "Wrong alignment on CM_TargetingMode_C_GetBlendWeight"); \ +static_assert(sizeof(CM_TargetingMode_C_GetBlendWeight) == 0x000038, "Wrong size on CM_TargetingMode_C_GetBlendWeight"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, ReturnValue) == 0x000000, "Member 'CM_TargetingMode_C_GetBlendWeight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, Temp_bool_Variable) == 0x000008, "Member 'CM_TargetingMode_C_GetBlendWeight::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'CM_TargetingMode_C_GetBlendWeight::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, CallFunc_GetBlendWeight_returnValue) == 0x000018, "Member 'CM_TargetingMode_C_GetBlendWeight::CallFunc_GetBlendWeight_returnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000020, "Member 'CM_TargetingMode_C_GetBlendWeight::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'CM_TargetingMode_C_GetBlendWeight::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_TargetingMode_C_GetBlendWeight, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000031, "Member 'CM_TargetingMode_C_GetBlendWeight::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_TargetingMode_C \ +static_assert(alignof(UCM_TargetingMode_C) == 0x000010, "Wrong alignment on UCM_TargetingMode_C"); \ +static_assert(sizeof(UCM_TargetingMode_C) == 0x0007A0, "Wrong size on UCM_TargetingMode_C"); \ +static_assert(offsetof(UCM_TargetingMode_C, BlockTags) == 0x000778, "Member 'UCM_TargetingMode_C::BlockTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USecondaryAbilityUnavailable_C \ +static_assert(alignof(USecondaryAbilityUnavailable_C) == 0x000010, "Wrong alignment on USecondaryAbilityUnavailable_C"); \ +static_assert(sizeof(USecondaryAbilityUnavailable_C) == 0x0007B0, "Wrong size on USecondaryAbilityUnavailable_C"); \ + +#define DUMPER7_ASSERTS_UGE_initialInvis_C \ +static_assert(alignof(UGE_initialInvis_C) == 0x000008, "Wrong alignment on UGE_initialInvis_C"); \ +static_assert(sizeof(UGE_initialInvis_C) == 0x000A70, "Wrong size on UGE_initialInvis_C"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick \ +static_assert(alignof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick"); \ +static_assert(sizeof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick) == 0x000004, "Wrong size on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap \ +static_assert(alignof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap"); \ +static_assert(sizeof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap) == 0x000008, "Wrong size on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC \ +static_assert(alignof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC) == 0x000008, "Wrong alignment on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC"); \ +static_assert(sizeof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC) == 0x000098, "Wrong size on BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, EntryPoint) == 0x000000, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_Event_OtherActor) == 0x000008, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_DynamicCast_AsWrestler_Character) == 0x000010, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000019, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_Event_DeltaSeconds) == 0x00001C, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_GetProperty_ReturnValue) == 0x000024, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_Event_OtherActor_1) == 0x000030, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000038, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_DynamicCast_AsWrestler_Character_1) == 0x000040, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_DynamicCast_AsWrestler_Character_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_EqualEqual_BoolBool_ReturnValue) == 0x000049, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_EqualEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_IsValid_ReturnValue_1) == 0x00004A, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_GetPlayerPawn_ReturnValue) == 0x000050, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000070, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_Vector_Distance_ReturnValue) == 0x000088, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000090, "Member 'BP_Audio_TriggerSphere_DistanceToPlayerRTPC_C_ExecuteUbergraph_BP_Audio_TriggerSphere_DistanceToPlayerRTPC::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C \ +static_assert(alignof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C) == 0x000008, "Wrong alignment on ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C"); \ +static_assert(sizeof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C) == 0x0002D0, "Wrong size on ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, RTPC) == 0x0002A8, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::RTPC' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, ConditionTag) == 0x0002B0, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::ConditionTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, ConditionValue) == 0x0002B8, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::ConditionValue' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, ConditionTagProperty) == 0x0002C0, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::ConditionTagProperty' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C, AllowTick) == 0x0002C8, "Member 'ABP_Audio_TriggerSphere_DistanceToPlayerRTPC_C::AllowTick' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_VampiricVision_Deactivate_C \ +static_assert(alignof(UGE_VampiricVision_Deactivate_C) == 0x000008, "Wrong alignment on UGE_VampiricVision_Deactivate_C"); \ +static_assert(sizeof(UGE_VampiricVision_Deactivate_C) == 0x000A70, "Wrong size on UGE_VampiricVision_Deactivate_C"); \ + +#define DUMPER7_ASSERTS_UGE_BM_stumble_C \ +static_assert(alignof(UGE_BM_stumble_C) == 0x000008, "Wrong alignment on UGE_BM_stumble_C"); \ +static_assert(sizeof(UGE_BM_stumble_C) == 0x000A70, "Wrong size on UGE_BM_stumble_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled \ +static_assert(alignof(GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled) == 0x000018, "Wrong size on GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled, K2Node_VariableSet_MontagePlayRate_ImplicitCast) == 0x000010, "Member 'GA_EnemyReact_Hit_Rumbled_C_ExecuteUbergraph_GA_EnemyReact_Hit_Rumbled::K2Node_VariableSet_MontagePlayRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Rumbled_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Rumbled_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Rumbled_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Rumbled_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_Hit_Rumbled_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Rumbled_C, UberGraphFrame_GA_EnemyReact_Hit_Rumbled_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Rumbled_C::UberGraphFrame_GA_EnemyReact_Hit_Rumbled_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_SliderAudio \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_SliderAudio) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_SliderAudio"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_SliderAudio) == 0x000070, "Wrong size on W_SettingsListEntry_Scalar_C_SliderAudio"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, Temp_delegate_Variable) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, Temp_delegate_Variable_1) == 0x000010, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, Temp_delegate_Variable_2) == 0x000020, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_GetNormalizedValue_ReturnValue) == 0x000030, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_GetNormalizedValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000034, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000035, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000036, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x000037, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, Temp_delegate_Variable_3) == 0x000038, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_GetNormalizedValue_ReturnValue_1) == 0x000048, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_GetNormalizedValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000058, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_SliderAudio, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast_1) == 0x000068, "Member 'W_SettingsListEntry_Scalar_C_SliderAudio::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_Play_Preview_Loop \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_Play_Preview_Loop"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop) == 0x000060, "Wrong size on W_SettingsListEntry_Scalar_C_Play_Preview_Loop"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, HasFocus) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::HasFocus' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, Temp_delegate_Variable) == 0x000004, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, Temp_delegate_Variable_1) == 0x000014, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_GetText_ReturnValue) == 0x000028, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_Conv_TextToString_ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_Map_Find_Value) == 0x000050, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_Map_Find_ReturnValue) == 0x000058, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_Play_Preview_Loop, CallFunc_IsValid_ReturnValue_1) == 0x00005A, "Member 'W_SettingsListEntry_Scalar_C_Play_Preview_Loop::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnValueChanged \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnValueChanged) == 0x000004, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnValueChanged"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnValueChanged) == 0x000004, "Wrong size on W_SettingsListEntry_Scalar_C_OnValueChanged"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnValueChanged, InValue) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnValueChanged::InValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnRemovedFromFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnMouseLeave \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnMouseLeave) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnMouseLeave"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnMouseLeave) == 0x000078, "Wrong size on W_SettingsListEntry_Scalar_C_OnMouseLeave"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnMouseLeave, MouseEvent) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnMouseEnter \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnMouseEnter) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnMouseEnter"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnMouseEnter) == 0x0000B0, "Wrong size on W_SettingsListEntry_Scalar_C_OnMouseEnter"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'W_SettingsListEntry_Scalar_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnFocusReceived \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnFocusReceived) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnFocusReceived"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnFocusReceived) == 0x0001B0, "Wrong size on W_SettingsListEntry_Scalar_C_OnFocusReceived"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'W_SettingsListEntry_Scalar_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Scalar_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'W_SettingsListEntry_Scalar_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnDefaultValueChanged \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnDefaultValueChanged) == 0x000004, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnDefaultValueChanged"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnDefaultValueChanged) == 0x000004, "Wrong size on W_SettingsListEntry_Scalar_C_OnDefaultValueChanged"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnDefaultValueChanged, InDefaultValue) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnDefaultValueChanged::InDefaultValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_OnAddedToFocusPath \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_OnAddedToFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Scalar_C_OnAddedToFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_OnAddedToFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Scalar_C_OnAddedToFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_GetProgressBarPercentage \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_GetProgressBarPercentage) == 0x000004, "Wrong alignment on W_SettingsListEntry_Scalar_C_GetProgressBarPercentage"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_GetProgressBarPercentage) == 0x000008, "Wrong size on W_SettingsListEntry_Scalar_C_GetProgressBarPercentage"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_GetProgressBarPercentage, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_GetProgressBarPercentage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_GetProgressBarPercentage, CallFunc_GetNormalizedValue_ReturnValue) == 0x000004, "Member 'W_SettingsListEntry_Scalar_C_GetProgressBarPercentage::CallFunc_GetNormalizedValue_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar) == 0x000008, "Wrong alignment on W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar) == 0x0001A0, "Wrong size on W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, EntryPoint) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, Temp_delegate_Variable) == 0x000004, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_MyGeometry) == 0x000014, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_MouseEvent_1) == 0x000050, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_MouseEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_InValue) == 0x0000C8, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_InValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x0000CC, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_CreateDelegate_OutputDelegate) == 0x0000D0, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_BooleanAND_ReturnValue) == 0x0000E0, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_InDefaultValue) == 0x0000E4, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_InDefaultValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_MouseEvent) == 0x0000E8, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_InFocusEvent_1) == 0x000160, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_InFocusEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_Event_InFocusEvent) == 0x000168, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_Event_InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_CustomEvent_bNewInputType) == 0x000170, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_IsValid_ReturnValue) == 0x000171, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_IsEnabled_ReturnValue) == 0x000172, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_IsEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_IsEnabled_ReturnValue_1) == 0x000173, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_IsEnabled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000178, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_EqualEqual_BoolBool_ReturnValue) == 0x000180, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_EqualEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_VariableSet_PreviousValue_ImplicitCast) == 0x000188, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_VariableSet_PreviousValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, CallFunc_NotEqual_DoubleDouble_A_ImplicitCast) == 0x000190, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::CallFunc_NotEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar, K2Node_VariableSet_DefaultValue_ImplicitCast) == 0x000198, "Member 'W_SettingsListEntry_Scalar_C_ExecuteUbergraph_W_SettingsListEntry_Scalar::K2Node_VariableSet_DefaultValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Scalar_C_CustomEvent \ +static_assert(alignof(W_SettingsListEntry_Scalar_C_CustomEvent) == 0x000001, "Wrong alignment on W_SettingsListEntry_Scalar_C_CustomEvent"); \ +static_assert(sizeof(W_SettingsListEntry_Scalar_C_CustomEvent) == 0x000001, "Wrong size on W_SettingsListEntry_Scalar_C_CustomEvent"); \ +static_assert(offsetof(W_SettingsListEntry_Scalar_C_CustomEvent, bNewInputType) == 0x000000, "Member 'W_SettingsListEntry_Scalar_C_CustomEvent::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Scalar_C \ +static_assert(alignof(UW_SettingsListEntry_Scalar_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_Scalar_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Scalar_C) == 0x000420, "Wrong size on UW_SettingsListEntry_Scalar_C"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, UberGraphFrame) == 0x000348, "Member 'UW_SettingsListEntry_Scalar_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, FocusBar) == 0x000350, "Member 'UW_SettingsListEntry_Scalar_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, FocusBorder) == 0x000358, "Member 'UW_SettingsListEntry_Scalar_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, FocusOffsetLine) == 0x000360, "Member 'UW_SettingsListEntry_Scalar_C::FocusOffsetLine' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, ProgressBar) == 0x000368, "Member 'UW_SettingsListEntry_Scalar_C::ProgressBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, ProgressBarImage) == 0x000370, "Member 'UW_SettingsListEntry_Scalar_C::ProgressBarImage' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, PreviousValue) == 0x000378, "Member 'UW_SettingsListEntry_Scalar_C::PreviousValue' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, DefaultValue) == 0x000380, "Member 'UW_SettingsListEntry_Scalar_C::DefaultValue' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, HoverEvent) == 0x000388, "Member 'UW_SettingsListEntry_Scalar_C::HoverEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, DefaultEvent) == 0x000390, "Member 'UW_SettingsListEntry_Scalar_C::DefaultEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, MinEvent) == 0x000398, "Member 'UW_SettingsListEntry_Scalar_C::MinEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, MaxEvent) == 0x0003A0, "Member 'UW_SettingsListEntry_Scalar_C::MaxEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, IncreaseEvent) == 0x0003A8, "Member 'UW_SettingsListEntry_Scalar_C::IncreaseEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, DecreaseEvent) == 0x0003B0, "Member 'UW_SettingsListEntry_Scalar_C::DecreaseEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, SliderRTPC) == 0x0003B8, "Member 'UW_SettingsListEntry_Scalar_C::SliderRTPC' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, PreviewLoopsPlayEvents) == 0x0003C0, "Member 'UW_SettingsListEntry_Scalar_C::PreviewLoopsPlayEvents' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, PreviewLoopsStopEvent) == 0x000410, "Member 'UW_SettingsListEntry_Scalar_C::PreviewLoopsStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, IsPlayingFocusAudio) == 0x000418, "Member 'UW_SettingsListEntry_Scalar_C::IsPlayingFocusAudio' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, bCanPlayAudio) == 0x000419, "Member 'UW_SettingsListEntry_Scalar_C::bCanPlayAudio' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Scalar_C, PreviousEnableState) == 0x00041A, "Member 'UW_SettingsListEntry_Scalar_C::PreviousEnableState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess) == 0x000E90, "Wrong size on CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, Temp_real_Variable) == 0x000700, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000704, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetHealthAlpha_Alpha) == 0x000E00, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetHealthAlpha_Alpha' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetHealthAlpha_Alpha_1) == 0x000E08, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetHealthAlpha_Alpha_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetHealthAlpha_Alpha_2) == 0x000E10, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetHealthAlpha_Alpha_2' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, Temp_bool_Variable) == 0x000E18, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000E20, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_ReturnValue) == 0x000E28, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue) == 0x000E30, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000E38, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000E40, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_IsHealEffectInProgress_InProgress) == 0x000E48, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_IsHealEffectInProgress_InProgress' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetHealthAlpha_Alpha_3) == 0x000E50, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetHealthAlpha_Alpha_3' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, K2Node_Select_Default) == 0x000E58, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000E60, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000E68, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000E6C, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, K2Node_Select_Option_1_ImplicitCast) == 0x000E70, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_Lerp_Alpha_ImplicitCast) == 0x000E78, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000E80, "Member 'CM_WrestlerHealthPostProcess_C_BlueprintModifyPostProcess::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerHealthPostProcess_C_GetHealthAlpha \ +static_assert(alignof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha) == 0x000008, "Wrong alignment on CM_WrestlerHealthPostProcess_C_GetHealthAlpha"); \ +static_assert(sizeof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha) == 0x000068, "Wrong size on CM_WrestlerHealthPostProcess_C_GetHealthAlpha"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, alpha_0) == 0x000000, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::alpha_0' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetViewTargetAttribute_bSuccessfullyFoundAttribute) == 0x000008, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetViewTargetAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetViewTargetAttribute_ReturnValue) == 0x000010, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetViewTargetAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetViewTargetAttribute_bSuccessfullyFoundAttribute_1) == 0x000018, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetViewTargetAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetViewTargetAttribute_ReturnValue_1) == 0x000020, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetViewTargetAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000028, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_SelectFloat_ReturnValue) == 0x000030, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000038, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_FMin_ReturnValue) == 0x000040, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetFloatValue_ReturnValue) == 0x000048, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_SelectFloat_ReturnValue_1) == 0x000050, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000058, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_GetHealthAlpha, CallFunc_SelectFloat_A_ImplicitCast) == 0x000060, "Member 'CM_WrestlerHealthPostProcess_C_GetHealthAlpha::CallFunc_SelectFloat_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress \ +static_assert(alignof(CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress) == 0x000001, "Wrong alignment on CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress"); \ +static_assert(sizeof(CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress) == 0x000002, "Wrong size on CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress, InProgress) == 0x000000, "Member 'CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress::InProgress' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000001, "Member 'CM_WrestlerHealthPostProcess_C_IsHealEffectInProgress::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_WrestlerHealthPostProcess_C_ShowHealEffect \ +static_assert(alignof(CM_WrestlerHealthPostProcess_C_ShowHealEffect) == 0x000001, "Wrong alignment on CM_WrestlerHealthPostProcess_C_ShowHealEffect"); \ +static_assert(sizeof(CM_WrestlerHealthPostProcess_C_ShowHealEffect) == 0x000002, "Wrong size on CM_WrestlerHealthPostProcess_C_ShowHealEffect"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_ShowHealEffect, HideRing_) == 0x000000, "Member 'CM_WrestlerHealthPostProcess_C_ShowHealEffect::HideRing_' has a wrong offset!"); \ +static_assert(offsetof(CM_WrestlerHealthPostProcess_C_ShowHealEffect, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'CM_WrestlerHealthPostProcess_C_ShowHealEffect::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WrestlerHealthPostProcess_C \ +static_assert(alignof(UCM_WrestlerHealthPostProcess_C) == 0x000010, "Wrong alignment on UCM_WrestlerHealthPostProcess_C"); \ +static_assert(sizeof(UCM_WrestlerHealthPostProcess_C) == 0x000830, "Wrong size on UCM_WrestlerHealthPostProcess_C"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, HealthAttribute) == 0x000778, "Member 'UCM_WrestlerHealthPostProcess_C::HealthAttribute' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, MaxHealthAttribute) == 0x0007B0, "Member 'UCM_WrestlerHealthPostProcess_C::MaxHealthAttribute' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, BlendWeightCurve) == 0x0007E8, "Member 'UCM_WrestlerHealthPostProcess_C::BlendWeightCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, HealBlendWeightCurve) == 0x0007F0, "Member 'UCM_WrestlerHealthPostProcess_C::HealBlendWeightCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, HealEffectDuration) == 0x0007F8, "Member 'UCM_WrestlerHealthPostProcess_C::HealEffectDuration' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, HealEffectElapsedTime) == 0x000800, "Member 'UCM_WrestlerHealthPostProcess_C::HealEffectElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, HealParamName) == 0x000808, "Member 'UCM_WrestlerHealthPostProcess_C::HealParamName' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, DamageParamName) == 0x000810, "Member 'UCM_WrestlerHealthPostProcess_C::DamageParamName' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, CurrentDamage) == 0x000818, "Member 'UCM_WrestlerHealthPostProcess_C::CurrentDamage' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, StartHealDamage) == 0x000820, "Member 'UCM_WrestlerHealthPostProcess_C::StartHealDamage' has a wrong offset!"); \ +static_assert(offsetof(UCM_WrestlerHealthPostProcess_C, ShowHealColourRing) == 0x000828, "Member 'UCM_WrestlerHealthPostProcess_C::ShowHealColourRing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DebugText_C_Countdown \ +static_assert(alignof(WBP_DebugText_C_Countdown) == 0x000008, "Wrong alignment on WBP_DebugText_C_Countdown"); \ +static_assert(sizeof(WBP_DebugText_C_Countdown) == 0x000008, "Wrong size on WBP_DebugText_C_Countdown"); \ +static_assert(offsetof(WBP_DebugText_C_Countdown, StartingNumber) == 0x000000, "Member 'WBP_DebugText_C_Countdown::StartingNumber' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText \ +static_assert(alignof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText) == 0x000008, "Wrong alignment on WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText"); \ +static_assert(sizeof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText) == 0x000278, "Wrong size on WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, EntryPoint) == 0x000000, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_GetText_ReturnValue) == 0x000008, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_int_Variable) == 0x000020, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_TextIsEmpty_ReturnValue) == 0x000024, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_TextIsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_bool_Variable) == 0x000025, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_bool_Variable_1) == 0x000026, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_int_Variable_1) == 0x000028, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_bool_Variable_2) == 0x00002C, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, Temp_int_Variable_2) == 0x000030, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, K2Node_Event_MyGeometry) == 0x000034, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, K2Node_Event_InDeltaTime) == 0x00006C, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_FCeil64_ReturnValue) == 0x000070, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_FCeil64_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000078, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_Int64ToText_ReturnValue) == 0x000080, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_Int64ToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000098, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, K2Node_Select_Default) == 0x000099, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0000A0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_FromSeconds_ReturnValue) == 0x0000A8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_FromSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BreakTimespan_Days) == 0x0000B0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BreakTimespan_Days' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BreakTimespan_Hours) == 0x0000B4, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BreakTimespan_Hours' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BreakTimespan_Minutes) == 0x0000B8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BreakTimespan_Minutes' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BreakTimespan_Seconds) == 0x0000BC, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BreakTimespan_Seconds' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BreakTimespan_Milliseconds) == 0x0000C0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BreakTimespan_Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_IntToString_ReturnValue) == 0x0000C8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Less_IntInt_ReturnValue) == 0x0000D8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue) == 0x0000E0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Not_PreBool_ReturnValue) == 0x0000F0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_SelectString_ReturnValue) == 0x0000F8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000108, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Less_IntInt_ReturnValue_1) == 0x000118, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Less_IntInt_ReturnValue_2) == 0x000119, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_BooleanAND_ReturnValue) == 0x00011A, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_IntToString_ReturnValue_1) == 0x000120, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_IntToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_SelectString_ReturnValue_1) == 0x000130, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_SelectString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000140, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Less_IntInt_ReturnValue_3) == 0x000150, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_SelectString_ReturnValue_2) == 0x000158, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_SelectString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_IntToString_ReturnValue_2) == 0x000168, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_IntToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000178, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, K2Node_SwitchInteger_CmpSuccess) == 0x000188, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_SelectString_ReturnValue_3) == 0x000190, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_SelectString_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0001A0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0001B0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Add_IntInt_ReturnValue) == 0x0001C0, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_6) == 0x0001C8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_IntToString_ReturnValue_3) == 0x0001D8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_IntToString_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_7) == 0x0001E8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_8) == 0x0001F8, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_9) == 0x000208, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Concat_StrStr_ReturnValue_10) == 0x000218, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Concat_StrStr_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_StringToText_ReturnValue) == 0x000228, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Conv_StringToText_ReturnValue_1) == 0x000240, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Add_IntInt_ReturnValue_1) == 0x000258, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Add_IntInt_ReturnValue_2) == 0x00025C, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Add_IntInt_ReturnValue_3) == 0x000260, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000268, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText, CallFunc_FromSeconds_Seconds_ImplicitCast) == 0x000270, "Member 'WBP_DebugText_C_ExecuteUbergraph_WBP_DebugText::CallFunc_FromSeconds_Seconds_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DebugText_C_GetDebugForEnemyState \ +static_assert(alignof(WBP_DebugText_C_GetDebugForEnemyState) == 0x000008, "Wrong alignment on WBP_DebugText_C_GetDebugForEnemyState"); \ +static_assert(sizeof(WBP_DebugText_C_GetDebugForEnemyState) == 0x000020, "Wrong size on WBP_DebugText_C_GetDebugForEnemyState"); \ +static_assert(offsetof(WBP_DebugText_C_GetDebugForEnemyState, CallFunc_GetText_ReturnValue) == 0x000000, "Member 'WBP_DebugText_C_GetDebugForEnemyState::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_GetDebugForEnemyState, CallFunc_TextIsEmpty_ReturnValue) == 0x000018, "Member 'WBP_DebugText_C_GetDebugForEnemyState::CallFunc_TextIsEmpty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DebugText_C_Tick \ +static_assert(alignof(WBP_DebugText_C_Tick) == 0x000004, "Wrong alignment on WBP_DebugText_C_Tick"); \ +static_assert(sizeof(WBP_DebugText_C_Tick) == 0x00003C, "Wrong size on WBP_DebugText_C_Tick"); \ +static_assert(offsetof(WBP_DebugText_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_DebugText_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DebugText_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_DebugText_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DebugText_C \ +static_assert(alignof(UWBP_DebugText_C) == 0x000008, "Wrong alignment on UWBP_DebugText_C"); \ +static_assert(sizeof(UWBP_DebugText_C) == 0x000320, "Wrong size on UWBP_DebugText_C"); \ +static_assert(offsetof(UWBP_DebugText_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_DebugText_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, EnemyStateDebug) == 0x0002C8, "Member 'UWBP_DebugText_C::EnemyStateDebug' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, LevelTimer) == 0x0002D0, "Member 'UWBP_DebugText_C::LevelTimer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, Prepare) == 0x0002D8, "Member 'UWBP_DebugText_C::Prepare' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, TextBlock_39) == 0x0002E0, "Member 'UWBP_DebugText_C::TextBlock_39' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, Wave1) == 0x0002E8, "Member 'UWBP_DebugText_C::Wave1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, Wave2) == 0x0002F0, "Member 'UWBP_DebugText_C::Wave2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, Wave3) == 0x0002F8, "Member 'UWBP_DebugText_C::Wave3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, bCountdown) == 0x000300, "Member 'UWBP_DebugText_C::bCountdown' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, CountdownTime) == 0x000308, "Member 'UWBP_DebugText_C::CountdownTime' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, CurrentCountdown) == 0x000310, "Member 'UWBP_DebugText_C::CurrentCountdown' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, CurrentWave) == 0x000318, "Member 'UWBP_DebugText_C::CurrentWave' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, bWave) == 0x00031C, "Member 'UWBP_DebugText_C::bWave' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, bTimer) == 0x00031D, "Member 'UWBP_DebugText_C::bTimer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DebugText_C, TopState) == 0x00031E, "Member 'UWBP_DebugText_C::TopState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump \ +static_assert(alignof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump"); \ +static_assert(sizeof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump) == 0x0000A0, "Wrong size on GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, EntryPoint) == 0x000000, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, K2Node_CustomEvent_WaitingTime) == 0x000004, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, Temp_real_Variable) == 0x000018, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, K2Node_CreateDelegate_OutputDelegate_1) == 0x00001C, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_GetWallNormal_ReturnValue) == 0x000030, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_GetWallNormal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_CalculateSnapDirection_ReturnValue) == 0x000048, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_CalculateSnapDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000060, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000068, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_IsValid_ReturnValue_1) == 0x000071, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_CalculateJumpDirection_ReturnValue) == 0x000078, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_CalculateJumpDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_K2_CommitAbility_ReturnValue) == 0x000090, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x000094, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x000098, "Member 'GA_Movement_WallJump_C_ExecuteUbergraph_GA_Movement_WallJump::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_HangFX \ +static_assert(alignof(GA_Movement_WallJump_C_HangFX) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_HangFX"); \ +static_assert(sizeof(GA_Movement_WallJump_C_HangFX) == 0x0001C0, "Wrong size on GA_Movement_WallJump_C_HangFX"); \ +static_assert(offsetof(GA_Movement_WallJump_C_HangFX, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000000, "Member 'GA_Movement_WallJump_C_HangFX::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_HangFX, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000D8, "Member 'GA_Movement_WallJump_C_HangFX::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_HangFX, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x0000E0, "Member 'GA_Movement_WallJump_C_HangFX::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_HangFX, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x0001B8, "Member 'GA_Movement_WallJump_C_HangFX::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_HangFX, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast_1) == 0x0001BC, "Member 'GA_Movement_WallJump_C_HangFX::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_Jump \ +static_assert(alignof(GA_Movement_WallJump_C_Jump) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_Jump"); \ +static_assert(sizeof(GA_Movement_WallJump_C_Jump) == 0x000028, "Wrong size on GA_Movement_WallJump_C_Jump"); \ +static_assert(offsetof(GA_Movement_WallJump_C_Jump, Direction) == 0x000000, "Member 'GA_Movement_WallJump_C_Jump::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_Jump, Character) == 0x000018, "Member 'GA_Movement_WallJump_C_Jump::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_Jump, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_Movement_WallJump_C_Jump::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388 \ +static_assert(alignof(GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388) == 0x000004, "Wrong alignment on GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388"); \ +static_assert(sizeof(GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388) == 0x000004, "Wrong size on GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388"); \ +static_assert(offsetof(GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388, WaitingTime) == 0x000000, "Member 'GA_Movement_WallJump_C_OnControlCueProcess_6B11EC8B48182786775B1DB14A9B2388::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_SnapControllerRotationToDirection \ +static_assert(alignof(GA_Movement_WallJump_C_SnapControllerRotationToDirection) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_SnapControllerRotationToDirection"); \ +static_assert(sizeof(GA_Movement_WallJump_C_SnapControllerRotationToDirection) == 0x000058, "Wrong size on GA_Movement_WallJump_C_SnapControllerRotationToDirection"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, Direction) == 0x000000, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, CallFunc_GetYawPitchFromVector_Yaw) == 0x000020, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, CallFunc_GetYawPitchFromVector_Pitch) == 0x000024, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, K2Node_DynamicCast_AsPawn) == 0x000028, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, CallFunc_MakeRotator_ReturnValue) == 0x000038, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_SnapControllerRotationToDirection, CallFunc_GetController_ReturnValue) == 0x000050, "Member 'GA_Movement_WallJump_C_SnapControllerRotationToDirection::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_CalculateJumpDirection \ +static_assert(alignof(GA_Movement_WallJump_C_CalculateJumpDirection) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_CalculateJumpDirection"); \ +static_assert(sizeof(GA_Movement_WallJump_C_CalculateJumpDirection) == 0x0000D8, "Wrong size on GA_Movement_WallJump_C_CalculateJumpDirection"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, ReturnValue) == 0x000000, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, Character) == 0x000018, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_GetControlRotation_ReturnValue) == 0x000020, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x000038, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_MakeVector_ReturnValue) == 0x000050, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_BreakVector_X) == 0x000068, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_BreakVector_Y) == 0x000070, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_BreakVector_Z) == 0x000078, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000080, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_FMin_ReturnValue) == 0x000088, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_MakeVector_ReturnValue_1) == 0x000090, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A8, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateJumpDirection, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x0000C0, "Member 'GA_Movement_WallJump_C_CalculateJumpDirection::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_CalculateSnapDirection \ +static_assert(alignof(GA_Movement_WallJump_C_CalculateSnapDirection) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_CalculateSnapDirection"); \ +static_assert(sizeof(GA_Movement_WallJump_C_CalculateSnapDirection) == 0x000108, "Wrong size on GA_Movement_WallJump_C_CalculateSnapDirection"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, ReturnValue) == 0x000000, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, bIsInputAwayFromWall) == 0x000018, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::bIsInputAwayFromWall' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, SidewaysSnapVector) == 0x000020, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::SidewaysSnapVector' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, PerpendicularWallVector) == 0x000038, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::PerpendicularWallVector' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, InputVector) == 0x000050, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::InputVector' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000068, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000070, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_NegateVector_ReturnValue) == 0x000088, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000A0, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000B0, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_SelectVector_ReturnValue) == 0x0000B8, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000D0, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Vector_Up_ReturnValue) == 0x0000D8, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_CalculateSnapDirection, CallFunc_Cross_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_Movement_WallJump_C_CalculateSnapDirection::CallFunc_Cross_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_GetWallNormal \ +static_assert(alignof(GA_Movement_WallJump_C_GetWallNormal) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_GetWallNormal"); \ +static_assert(sizeof(GA_Movement_WallJump_C_GetWallNormal) == 0x000048, "Wrong size on GA_Movement_WallJump_C_GetWallNormal"); \ +static_assert(offsetof(GA_Movement_WallJump_C_GetWallNormal, ReturnValue) == 0x000000, "Member 'GA_Movement_WallJump_C_GetWallNormal::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_GetWallNormal, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_Movement_WallJump_C_GetWallNormal::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_GetWallNormal, K2Node_DynamicCast_AsWrestler_Character) == 0x000020, "Member 'GA_Movement_WallJump_C_GetWallNormal::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_GetWallNormal, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_Movement_WallJump_C_GetWallNormal::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_GetWallNormal, CallFunc_GetWallClimbWallNormal_ReturnValue) == 0x000030, "Member 'GA_Movement_WallJump_C_GetWallNormal::CallFunc_GetWallClimbWallNormal_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Movement_WallJump_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Movement_WallJump_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Movement_WallJump_C_K2_CanActivateAbility) == 0x000090, "Wrong size on GA_Movement_WallJump_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Character) == 0x000080, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'GA_Movement_WallJump_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Movement_WallJump_C \ +static_assert(alignof(UGA_Movement_WallJump_C) == 0x000008, "Wrong alignment on UGA_Movement_WallJump_C"); \ +static_assert(sizeof(UGA_Movement_WallJump_C) == 0x0006F8, "Wrong size on UGA_Movement_WallJump_C"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, UberGraphFrame) == 0x000668, "Member 'UGA_Movement_WallJump_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, WallJumpStrength) == 0x000670, "Member 'UGA_Movement_WallJump_C::WallJumpStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, WallJumpZ) == 0x000678, "Member 'UGA_Movement_WallJump_C::WallJumpZ' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, WallNormal) == 0x000680, "Member 'UGA_Movement_WallJump_C::WallNormal' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, AnticipationSlideSpeed) == 0x000698, "Member 'UGA_Movement_WallJump_C::AnticipationSlideSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, AnticipationDuration) == 0x0006A0, "Member 'UGA_Movement_WallJump_C::AnticipationDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, InputDotThreshold) == 0x0006A8, "Member 'UGA_Movement_WallJump_C::InputDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, CueToWaitFor) == 0x0006B0, "Member 'UGA_Movement_WallJump_C::CueToWaitFor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, SpeedCurveOverTime) == 0x0006B8, "Member 'UGA_Movement_WallJump_C::SpeedCurveOverTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, PivotCue) == 0x0006C0, "Member 'UGA_Movement_WallJump_C::PivotCue' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, HangCue) == 0x0006C8, "Member 'UGA_Movement_WallJump_C::HangCue' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, JumpCue) == 0x0006D0, "Member 'UGA_Movement_WallJump_C::JumpCue' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, FallCue) == 0x0006D8, "Member 'UGA_Movement_WallJump_C::FallCue' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_C, SnapDirection) == 0x0006E0, "Member 'UGA_Movement_WallJump_C::SnapDirection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestObjectives_C_DoOperation \ +static_assert(alignof(Change_QuestObjectives_C_DoOperation) == 0x000008, "Wrong alignment on Change_QuestObjectives_C_DoOperation"); \ +static_assert(sizeof(Change_QuestObjectives_C_DoOperation) == 0x000040, "Wrong size on Change_QuestObjectives_C_DoOperation"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, QuestTag) == 0x000000, "Member 'Change_QuestObjectives_C_DoOperation::QuestTag' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, CallFunc_GetGameMode_ReturnValue) == 0x000008, "Member 'Change_QuestObjectives_C_DoOperation::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, CallFunc_Set_ToArray_Result) == 0x000010, "Member 'Change_QuestObjectives_C_DoOperation::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000020, "Member 'Change_QuestObjectives_C_DoOperation::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'Change_QuestObjectives_C_DoOperation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000030, "Member 'Change_QuestObjectives_C_DoOperation::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'Change_QuestObjectives_C_DoOperation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_DoOperation, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'Change_QuestObjectives_C_DoOperation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives \ +static_assert(alignof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives) == 0x000008, "Wrong alignment on Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives"); \ +static_assert(sizeof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives) == 0x0000C0, "Wrong size on Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, EntryPoint) == 0x000000, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_Event_InAutomata) == 0x000008, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_Event_InState) == 0x000010, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_AsWrestler_Quest_Data) == 0x000020, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_AsWrestler_Quest_Data' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Set_IsNotEmpty_ReturnValue) == 0x000029, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Set_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_IsValid_ReturnValue) == 0x00002A, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_GetDisplayName_ReturnValue) == 0x000030, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Concat_StrStr_ReturnValue) == 0x000040, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000050, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_GetGameMode_ReturnValue) == 0x000060, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000068, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000078, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Set_ToArray_Result) == 0x000080, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_IsValid_ReturnValue_1) == 0x000090, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_GetOpenQuestTags_ReturnValue) == 0x000098, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_GetOpenQuestTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000A8, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_AsWrestler_Quest_Data_1) == 0x0000B0, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_AsWrestler_Quest_Data_1' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, K2Node_DynamicCast_bSuccess_2) == 0x0000B8, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives, CallFunc_Array_Contains_ReturnValue) == 0x0000B9, "Member 'Change_QuestObjectives_C_ExecuteUbergraph_Change_QuestObjectives::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset \ +static_assert(alignof(Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset) == 0x000008, "Wrong alignment on Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset"); \ +static_assert(sizeof(Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset) == 0x000010, "Wrong size on Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset"); \ +static_assert(offsetof(Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset, Mission) == 0x000000, "Member 'Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset::Mission' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset, Data_Asset) == 0x000008, "Member 'Change_QuestObjectives_C_Get_Closest_Quest_Data_Asset::Data_Asset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestObjectives_C_ReceiveExecute \ +static_assert(alignof(Change_QuestObjectives_C_ReceiveExecute) == 0x000008, "Wrong alignment on Change_QuestObjectives_C_ReceiveExecute"); \ +static_assert(sizeof(Change_QuestObjectives_C_ReceiveExecute) == 0x000010, "Wrong size on Change_QuestObjectives_C_ReceiveExecute"); \ +static_assert(offsetof(Change_QuestObjectives_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Change_QuestObjectives_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_ReceiveExecute, InState) == 0x000008, "Member 'Change_QuestObjectives_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_QuestObjectives_C_GetCurrentQuestLine \ +static_assert(alignof(Change_QuestObjectives_C_GetCurrentQuestLine) == 0x000008, "Wrong alignment on Change_QuestObjectives_C_GetCurrentQuestLine"); \ +static_assert(sizeof(Change_QuestObjectives_C_GetCurrentQuestLine) == 0x000020, "Wrong size on Change_QuestObjectives_C_GetCurrentQuestLine"); \ +static_assert(offsetof(Change_QuestObjectives_C_GetCurrentQuestLine, ReturnValue) == 0x000000, "Member 'Change_QuestObjectives_C_GetCurrentQuestLine::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_QuestObjectives_C_GetCurrentQuestLine, CallFunc_SelectString_ReturnValue) == 0x000010, "Member 'Change_QuestObjectives_C_GetCurrentQuestLine::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChange_QuestObjectives_C \ +static_assert(alignof(UChange_QuestObjectives_C) == 0x000008, "Wrong alignment on UChange_QuestObjectives_C"); \ +static_assert(sizeof(UChange_QuestObjectives_C) == 0x000120, "Wrong size on UChange_QuestObjectives_C"); \ +static_assert(offsetof(UChange_QuestObjectives_C, UberGraphFrame) == 0x000110, "Member 'UChange_QuestObjectives_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChange_QuestObjectives_C, Operation) == 0x000118, "Member 'UChange_QuestObjectives_C::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerDistractOpening_C \ +static_assert(alignof(UGE_PlayerDistractOpening_C) == 0x000008, "Wrong alignment on UGE_PlayerDistractOpening_C"); \ +static_assert(sizeof(UGE_PlayerDistractOpening_C) == 0x000A70, "Wrong size on UGE_PlayerDistractOpening_C"); \ + +#define DUMPER7_ASSERTS_CM_HS_Pulse_PP_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_HS_Pulse_PP_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess) == 0x000E20, "Wrong size on CM_HS_Pulse_PP_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000E00, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000E08, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000E10, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_BlueprintModifyPostProcess, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000E18, "Member 'CM_HS_Pulse_PP_C_BlueprintModifyPostProcess::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP \ +static_assert(alignof(CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP) == 0x000004, "Wrong alignment on CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP"); \ +static_assert(sizeof(CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP) == 0x000004, "Wrong size on CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP"); \ +static_assert(offsetof(CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP, EntryPoint) == 0x000000, "Member 'CM_HS_Pulse_PP_C_ExecuteUbergraph_CM_HS_Pulse_PP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_HS_Pulse_PP_C \ +static_assert(alignof(UCM_HS_Pulse_PP_C) == 0x000010, "Wrong alignment on UCM_HS_Pulse_PP_C"); \ +static_assert(sizeof(UCM_HS_Pulse_PP_C) == 0x000790, "Wrong size on UCM_HS_Pulse_PP_C"); \ +static_assert(offsetof(UCM_HS_Pulse_PP_C, UberGraphFrame) == 0x000778, "Member 'UCM_HS_Pulse_PP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_HS_Pulse_PP_C, Fade) == 0x000780, "Member 'UCM_HS_Pulse_PP_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UCM_HS_Pulse_PP_C, Fadeout_Time) == 0x000788, "Member 'UCM_HS_Pulse_PP_C::Fadeout_Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_FS_Player_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_FS_Player_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_FS_Player_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_FS_Player_C_OnCharacterAudioNotify) == 0x000318, "Wrong size on AN_Audio_FS_Player_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, Owner) == 0x000018, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::Owner' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, SocketFName) == 0x000020, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::SocketFName' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, AudioComponent) == 0x000028, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue) == 0x000030, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue_1) == 0x000038, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetGameState_ReturnValue) == 0x000040, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetGameState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetComponentByClass_ReturnValue) == 0x000048, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_IsValid_ReturnValue_1) == 0x000051, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_IsWalking_ReturnValue) == 0x000052, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, Temp_delegate_Variable) == 0x000054, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000068, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetVelocity_ReturnValue) == 0x000080, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000098, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_VSize_ReturnValue) == 0x0000B0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_Add_VectorVector_ReturnValue) == 0x0000B8, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000D0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetSurfaceParameters_OutParams) == 0x0000D8, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetSurfaceParameters_OutParams' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetSurfaceParameters_OutExecBranches) == 0x000110, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetSurfaceParameters_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_BooleanAND_ReturnValue) == 0x000111, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess) == 0x000112, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000118, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x0001F0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0002C8, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x0002C9, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x0002CA, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_BooleanOR_ReturnValue) == 0x0002CB, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_ByteByte_ReturnValue_3) == 0x0002CC, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_ByteByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_BooleanOR_ReturnValue_1) == 0x0002CD, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_UpdateSurfaceMaterials_InWater) == 0x0002CE, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_UpdateSurfaceMaterials_InWater' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_OutExecBranches) == 0x0002CF, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetAudioComponent_ReturnValue) == 0x0002D0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetProperty_ReturnValue) == 0x0002D8, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, K2Node_SwitchEnum_CmpSuccess_1) == 0x0002D9, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetProperty_ReturnValue_1) == 0x0002DC, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x0002E0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_GetOwner_ReturnValue_2) == 0x0002E8, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, Temp_delegate_Variable_1) == 0x0002F0, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_UpdateSurfaceMaterials_CoverAmount_ImplicitCast) == 0x000300, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_UpdateSurfaceMaterials_CoverAmount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_UpdateSurfaceMaterials_WetnessAmountRVTOnly_ImplicitCast) == 0x000308, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_UpdateSurfaceMaterials_WetnessAmountRVTOnly_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_OnCharacterAudioNotify, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000310, "Member 'AN_Audio_FS_Player_C_OnCharacterAudioNotify::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_FS_Player_C_ReportNoiseEvent \ +static_assert(alignof(AN_Audio_FS_Player_C_ReportNoiseEvent) == 0x000008, "Wrong alignment on AN_Audio_FS_Player_C_ReportNoiseEvent"); \ +static_assert(sizeof(AN_Audio_FS_Player_C_ReportNoiseEvent) == 0x000038, "Wrong size on AN_Audio_FS_Player_C_ReportNoiseEvent"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, Owner) == 0x000000, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::Owner' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000008, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, CallFunc_GetPlayerFootstepNoiseReportRangeAndVolume_OutRange) == 0x000014, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::CallFunc_GetPlayerFootstepNoiseReportRangeAndVolume_OutRange' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, CallFunc_GetPlayerFootstepNoiseReportRangeAndVolume_OutVolume) == 0x000018, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::CallFunc_GetPlayerFootstepNoiseReportRangeAndVolume_OutVolume' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_ReportNoiseEvent, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'AN_Audio_FS_Player_C_ReportNoiseEvent::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_FS_Player_C_SetSlopeValue \ +static_assert(alignof(AN_Audio_FS_Player_C_SetSlopeValue) == 0x000008, "Wrong alignment on AN_Audio_FS_Player_C_SetSlopeValue"); \ +static_assert(sizeof(AN_Audio_FS_Player_C_SetSlopeValue) == 0x000068, "Wrong size on AN_Audio_FS_Player_C_SetSlopeValue"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, WrestlerCharacter) == 0x000000, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::WrestlerCharacter' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, ZPositionCache) == 0x000008, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::ZPositionCache' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_GetLastUpdateLocation_ReturnValue) == 0x000010, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_GetLastUpdateLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_BreakVector_X) == 0x000028, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_BreakVector_Y) == 0x000030, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_BreakVector_Z) == 0x000038, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_GetProperty_ReturnValue) == 0x000040, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_GetProperty_ReturnValue_1) == 0x000044, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000048, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000049, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_SetProperty_InValue_ImplicitCast) == 0x00004C, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_SetProperty_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, K2Node_VariableSet_ZPositionCache_ImplicitCast) == 0x000050, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::K2Node_VariableSet_ZPositionCache_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_Greater_DoubleDouble_B_ImplicitCast) == 0x000058, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_Greater_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_SetSlopeValue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000060, "Member 'AN_Audio_FS_Player_C_SetSlopeValue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_FS_Player_C_UpdateSurfaceMaterials \ +static_assert(alignof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials) == 0x000008, "Wrong alignment on AN_Audio_FS_Player_C_UpdateSurfaceMaterials"); \ +static_assert(sizeof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials) == 0x000038, "Wrong size on AN_Audio_FS_Player_C_UpdateSurfaceMaterials"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, AudioComponent) == 0x000000, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, BaseSurface) == 0x000008, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::BaseSurface' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CoverSurface) == 0x000010, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CoverSurface' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CoverAmount) == 0x000018, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CoverAmount' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, WetnessAmountRVTOnly) == 0x000020, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::WetnessAmountRVTOnly' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, InWater) == 0x000028, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::InWater' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000029, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x00002A, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CallFunc_BooleanOR_ReturnValue) == 0x00002B, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x00002C, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_FS_Player_C_UpdateSurfaceMaterials, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x000030, "Member 'AN_Audio_FS_Player_C_UpdateSurfaceMaterials::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_FS_Player_C \ +static_assert(alignof(UAN_Audio_FS_Player_C) == 0x000008, "Wrong alignment on UAN_Audio_FS_Player_C"); \ +static_assert(sizeof(UAN_Audio_FS_Player_C) == 0x000078, "Wrong size on UAN_Audio_FS_Player_C"); \ +static_assert(offsetof(UAN_Audio_FS_Player_C, PB_PlayerInWater) == 0x000050, "Member 'UAN_Audio_FS_Player_C::PB_PlayerInWater' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_FS_Player_C, PF_Player_Wetness) == 0x000058, "Member 'UAN_Audio_FS_Player_C::PF_Player_Wetness' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_FS_Player_C, VelocityThreshold) == 0x000060, "Member 'UAN_Audio_FS_Player_C::VelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_FS_Player_C, ZPosition) == 0x000068, "Member 'UAN_Audio_FS_Player_C::ZPosition' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_FS_Player_C, IgnoreVelocity) == 0x000070, "Member 'UAN_Audio_FS_Player_C::IgnoreVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02 \ +static_assert(alignof(GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02) == 0x000004, "Wrong alignment on GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02"); \ +static_assert(sizeof(GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02) == 0x000004, "Wrong size on GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02"); \ +static_assert(offsetof(GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Investigate_Front_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_02::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Investigate_Front_02_C \ +static_assert(alignof(UGA_Patrol_Action_Investigate_Front_02_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Investigate_Front_02_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Investigate_Front_02_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Investigate_Front_02_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Investigate_Front_02_C, UberGraphFrame_GA_Patrol_Action_Investigate_Front_02_C) == 0x000690, "Member 'UGA_Patrol_Action_Investigate_Front_02_C::UberGraphFrame_GA_Patrol_Action_Investigate_Front_02_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568 \ +static_assert(alignof(GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568) == 0x000008, "Wrong alignment on GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(sizeof(GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568) == 0x0000B8, "Wrong size on GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(offsetof(GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568, EventTag) == 0x000000, "Member 'GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568, EventData) == 0x000008, "Member 'GA_PlayerDash_C_EventReceived_4A62BC1E4E6EDCD0B087E792E4793568::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash \ +static_assert(alignof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash) == 0x000008, "Wrong alignment on GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash"); \ +static_assert(sizeof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash) == 0x000768, "Wrong size on GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, EntryPoint) == 0x000000, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventTag_3) == 0x0000D0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventTag_2) == 0x000198, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventTag_1) == 0x000260, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventTag) == 0x000328, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, Temp_struct_Variable) == 0x0003F0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004A8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetDashDirection_ReturnValue) == 0x0004B8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004D0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_IsDashingToRight_ReturnValue) == 0x0004E0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_IsDashingToRight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetOwnerRightVector_returnValue) == 0x0004E8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_Not_PreBool_ReturnValue) == 0x000500, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000508, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetDashMontage_ReturnValue) == 0x0005E0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetDashMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0005E8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, K2Node_Event_bWasCancelled) == 0x0005F0, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_IsValid_ReturnValue) == 0x0005F1, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_FindOrbitTarget_bReturnValue) == 0x0005F2, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_FindOrbitTarget_bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetDashDirection_ReturnValue_1) == 0x0005F8, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_Dot_VectorVector_ReturnValue) == 0x000610, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_Abs_ReturnValue) == 0x000618, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000620, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetDashStrength_Strength) == 0x000628, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetDashStrength_Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetDashStrength_Duration) == 0x000630, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetDashStrength_Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000638, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_IsValid_ReturnValue_1) == 0x000640, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_OrbitTarget_ReturnValue) == 0x000648, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_OrbitTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_IsValid_ReturnValue_2) == 0x000650, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000658, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000660, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000670, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x000678, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_K2_CommitAbility_ReturnValue) == 0x000750, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_StartFearEmission_InFearDuration_ImplicitCast) == 0x000754, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_StartFearEmission_InFearDuration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_StartFearEmission_InFearStrength_ImplicitCast) == 0x000758, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_StartFearEmission_InFearStrength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x00075C, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x000760, "Member 'GA_PlayerDash_C_ExecuteUbergraph_GA_PlayerDash::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_FindOrbitTarget \ +static_assert(alignof(GA_PlayerDash_C_FindOrbitTarget) == 0x000008, "Wrong alignment on GA_PlayerDash_C_FindOrbitTarget"); \ +static_assert(sizeof(GA_PlayerDash_C_FindOrbitTarget) == 0x000050, "Wrong size on GA_PlayerDash_C_FindOrbitTarget"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, bReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_FindOrbitTarget::bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins) == 0x000010, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000020, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_IsSoftOrbitable_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_IsSoftOrbitable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins_1) == 0x000029, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue_1) == 0x000030, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'GA_PlayerDash_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController) == 0x000040, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutPins) == 0x000048, "Member 'GA_PlayerDash_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_1) == 0x000049, "Member 'GA_PlayerDash_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_2) == 0x00004A, "Member 'GA_PlayerDash_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_GetOwningController \ +static_assert(alignof(GA_PlayerDash_C_GetOwningController) == 0x000008, "Wrong alignment on GA_PlayerDash_C_GetOwningController"); \ +static_assert(sizeof(GA_PlayerDash_C_GetOwningController) == 0x000028, "Wrong size on GA_PlayerDash_C_GetOwningController"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwningController, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_GetOwningController::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwningController, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_C_GetOwningController::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwningController, K2Node_DynamicCast_AsPawn) == 0x000010, "Member 'GA_PlayerDash_C_GetOwningController::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwningController, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_PlayerDash_C_GetOwningController::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwningController, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_C_GetOwningController::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_IsDashingToRight \ +static_assert(alignof(GA_PlayerDash_C_IsDashingToRight) == 0x000008, "Wrong alignment on GA_PlayerDash_C_IsDashingToRight"); \ +static_assert(sizeof(GA_PlayerDash_C_IsDashingToRight) == 0x000050, "Wrong size on GA_PlayerDash_C_IsDashingToRight"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_IsDashingToRight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, CallFunc_GetOwnerRightVector_returnValue) == 0x000008, "Member 'GA_PlayerDash_C_IsDashingToRight::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, CallFunc_GetDashDirection_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_C_IsDashingToRight::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, CallFunc_Dot_VectorVector_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_C_IsDashingToRight::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, CallFunc_SignOfFloat_ReturnValue) == 0x000040, "Member 'GA_PlayerDash_C_IsDashingToRight::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsDashingToRight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000048, "Member 'GA_PlayerDash_C_IsDashingToRight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_IsSoftOrbitable \ +static_assert(alignof(GA_PlayerDash_C_IsSoftOrbitable) == 0x000008, "Wrong alignment on GA_PlayerDash_C_IsSoftOrbitable"); \ +static_assert(sizeof(GA_PlayerDash_C_IsSoftOrbitable) == 0x000050, "Wrong size on GA_PlayerDash_C_IsSoftOrbitable"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, Target) == 0x000000, "Member 'GA_PlayerDash_C_IsSoftOrbitable::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, ReturnValue) == 0x000008, "Member 'GA_PlayerDash_C_IsSoftOrbitable::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GetHorizontalDotProductTo_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GetHorizontalDotProductTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_Square_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000030, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00003C, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_BooleanAND_ReturnValue) == 0x00003D, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000048, "Member 'GA_PlayerDash_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerDash_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerDash_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerDash_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerDash_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerDash_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerDash_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568 \ +static_assert(alignof(GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568) == 0x000008, "Wrong alignment on GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(sizeof(GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568) == 0x0000B8, "Wrong size on GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(offsetof(GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568, EventTag) == 0x000000, "Member 'GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568, EventData) == 0x000008, "Member 'GA_PlayerDash_C_OnBlendOut_4A62BC1E4E6EDCD0B087E792E4793568::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568 \ +static_assert(alignof(GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568) == 0x000008, "Wrong alignment on GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(sizeof(GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568) == 0x0000B8, "Wrong size on GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(offsetof(GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568, EventTag) == 0x000000, "Member 'GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568, EventData) == 0x000008, "Member 'GA_PlayerDash_C_OnCancelled_4A62BC1E4E6EDCD0B087E792E4793568::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568 \ +static_assert(alignof(GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568) == 0x000008, "Wrong alignment on GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(sizeof(GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568) == 0x0000B8, "Wrong size on GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(offsetof(GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568, EventTag) == 0x000000, "Member 'GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568, EventData) == 0x000008, "Member 'GA_PlayerDash_C_OnCompleted_4A62BC1E4E6EDCD0B087E792E4793568::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568 \ +static_assert(alignof(GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568) == 0x000008, "Wrong alignment on GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(sizeof(GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568) == 0x0000B8, "Wrong size on GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568"); \ +static_assert(offsetof(GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568, EventTag) == 0x000000, "Member 'GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568, EventData) == 0x000008, "Member 'GA_PlayerDash_C_OnInterrupted_4A62BC1E4E6EDCD0B087E792E4793568::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_Print_Distance_to_Target \ +static_assert(alignof(GA_PlayerDash_C_Print_Distance_to_Target) == 0x000008, "Wrong alignment on GA_PlayerDash_C_Print_Distance_to_Target"); \ +static_assert(sizeof(GA_PlayerDash_C_Print_Distance_to_Target) == 0x000078, "Wrong size on GA_PlayerDash_C_Print_Distance_to_Target"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000020, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_VSize_ReturnValue) == 0x000050, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000058, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_Print_Distance_to_Target, CallFunc_Concat_StrStr_ReturnValue) == 0x000068, "Member 'GA_PlayerDash_C_Print_Distance_to_Target::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_GetDashDirection \ +static_assert(alignof(GA_PlayerDash_C_GetDashDirection) == 0x000008, "Wrong alignment on GA_PlayerDash_C_GetDashDirection"); \ +static_assert(sizeof(GA_PlayerDash_C_GetDashDirection) == 0x000018, "Wrong size on GA_PlayerDash_C_GetDashDirection"); \ +static_assert(offsetof(GA_PlayerDash_C_GetDashDirection, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_GetDashDirection::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_GetDashMontage \ +static_assert(alignof(GA_PlayerDash_C_GetDashMontage) == 0x000008, "Wrong alignment on GA_PlayerDash_C_GetDashMontage"); \ +static_assert(sizeof(GA_PlayerDash_C_GetDashMontage) == 0x000010, "Wrong size on GA_PlayerDash_C_GetDashMontage"); \ +static_assert(offsetof(GA_PlayerDash_C_GetDashMontage, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_GetDashMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetDashMontage, CallFunc_GetMontage_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_C_GetDashMontage::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_GetDashStrength \ +static_assert(alignof(GA_PlayerDash_C_GetDashStrength) == 0x000008, "Wrong alignment on GA_PlayerDash_C_GetDashStrength"); \ +static_assert(sizeof(GA_PlayerDash_C_GetDashStrength) == 0x000010, "Wrong size on GA_PlayerDash_C_GetDashStrength"); \ +static_assert(offsetof(GA_PlayerDash_C_GetDashStrength, Strength) == 0x000000, "Member 'GA_PlayerDash_C_GetDashStrength::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetDashStrength, Duration) == 0x000008, "Member 'GA_PlayerDash_C_GetDashStrength::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_C_GetOwnerRightVector \ +static_assert(alignof(GA_PlayerDash_C_GetOwnerRightVector) == 0x000008, "Wrong alignment on GA_PlayerDash_C_GetOwnerRightVector"); \ +static_assert(sizeof(GA_PlayerDash_C_GetOwnerRightVector) == 0x000038, "Wrong size on GA_PlayerDash_C_GetOwnerRightVector"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwnerRightVector, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_C_GetOwnerRightVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwnerRightVector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_C_GetOwnerRightVector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_C_GetOwnerRightVector, CallFunc_GetActorRightVector_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_C_GetOwnerRightVector::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerDash_C \ +static_assert(alignof(UGA_PlayerDash_C) == 0x000008, "Wrong alignment on UGA_PlayerDash_C"); \ +static_assert(sizeof(UGA_PlayerDash_C) == 0x000700, "Wrong size on UGA_PlayerDash_C"); \ +static_assert(offsetof(UGA_PlayerDash_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerDash_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, DashDuration) == 0x000670, "Member 'UGA_PlayerDash_C::DashDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, DashStrength) == 0x000678, "Member 'UGA_PlayerDash_C::DashStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, OrbitInputDotThreshold) == 0x000680, "Member 'UGA_PlayerDash_C::OrbitInputDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, OrbitAngle) == 0x000688, "Member 'UGA_PlayerDash_C::OrbitAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, SoftOrbitDotThreshold) == 0x000690, "Member 'UGA_PlayerDash_C::SoftOrbitDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, SoftOrbitDistanceThreshold) == 0x000698, "Member 'UGA_PlayerDash_C::SoftOrbitDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, OrbitTarget) == 0x0006A0, "Member 'UGA_PlayerDash_C::OrbitTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, Fear_Strength) == 0x0006A8, "Member 'UGA_PlayerDash_C::Fear_Strength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, Async_Task) == 0x0006B0, "Member 'UGA_PlayerDash_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, DashConfig) == 0x0006B8, "Member 'UGA_PlayerDash_C::DashConfig' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, DamageImmune) == 0x0006C0, "Member 'UGA_PlayerDash_C::DamageImmune' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_C, EvadeTagsContainer) == 0x0006E0, "Member 'UGA_PlayerDash_C::EvadeTagsContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyle_C \ +static_assert(alignof(UCommonTextStyle_C) == 0x000010, "Wrong alignment on UCommonTextStyle_C"); \ +static_assert(sizeof(UCommonTextStyle_C) == 0x0001B0, "Wrong size on UCommonTextStyle_C"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionDefault_C_CustomEvent_0 \ +static_assert(alignof(WBP_InteractionDefault_C_CustomEvent_0) == 0x000001, "Wrong alignment on WBP_InteractionDefault_C_CustomEvent_0"); \ +static_assert(sizeof(WBP_InteractionDefault_C_CustomEvent_0) == 0x000001, "Wrong size on WBP_InteractionDefault_C_CustomEvent_0"); \ +static_assert(offsetof(WBP_InteractionDefault_C_CustomEvent_0, bNewInputType) == 0x000000, "Member 'WBP_InteractionDefault_C_CustomEvent_0::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault \ +static_assert(alignof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault) == 0x000008, "Wrong alignment on WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault"); \ +static_assert(sizeof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault) == 0x000040, "Wrong size on WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, EntryPoint) == 0x000000, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, CallFunc_GetPlatformName_ReturnValue) == 0x000008, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, CallFunc_Contains_ReturnValue) == 0x000018, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, K2Node_CreateDelegate_OutputDelegate) == 0x00001C, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000030, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, K2Node_CustomEvent_bNewInputType) == 0x000038, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, CallFunc_GetCurrentInputType_ReturnValue) == 0x000039, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault, K2Node_SwitchEnum_CmpSuccess) == 0x00003A, "Member 'WBP_InteractionDefault_C_ExecuteUbergraph_WBP_InteractionDefault::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_InteractionDefault_C \ +static_assert(alignof(UWBP_InteractionDefault_C) == 0x000008, "Wrong alignment on UWBP_InteractionDefault_C"); \ +static_assert(sizeof(UWBP_InteractionDefault_C) == 0x0002F8, "Wrong size on UWBP_InteractionDefault_C"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_InteractionDefault_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, ConsoleIcon) == 0x0002D0, "Member 'UWBP_InteractionDefault_C::ConsoleIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, PCIcon) == 0x0002D8, "Member 'UWBP_InteractionDefault_C::PCIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, PSIcon) == 0x0002E0, "Member 'UWBP_InteractionDefault_C::PSIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, WidgetSwitcher) == 0x0002E8, "Member 'UWBP_InteractionDefault_C::WidgetSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionDefault_C, BlockControlsUntilInteract) == 0x0002F0, "Member 'UWBP_InteractionDefault_C::BlockControlsUntilInteract' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleNotificationSmall_C \ +static_assert(alignof(UCommonTextStyleNotificationSmall_C) == 0x000010, "Wrong alignment on UCommonTextStyleNotificationSmall_C"); \ +static_assert(sizeof(UCommonTextStyleNotificationSmall_C) == 0x0001B0, "Wrong size on UCommonTextStyleNotificationSmall_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleTutorial_C \ +static_assert(alignof(UCommonTextStyleTutorial_C) == 0x000010, "Wrong alignment on UCommonTextStyleTutorial_C"); \ +static_assert(sizeof(UCommonTextStyleTutorial_C) == 0x0001B0, "Wrong size on UCommonTextStyleTutorial_C"); \ + +#define DUMPER7_ASSERTS_WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget \ +static_assert(alignof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget) == 0x000008, "Wrong alignment on WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget"); \ +static_assert(sizeof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget) == 0x000050, "Wrong size on WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, EntryPoint) == 0x000000, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, K2Node_SwitchInteger_CmpSuccess) == 0x000008, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetProperty_ReturnValue_1) == 0x00000C, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetSubtitleStyle_ReturnValue) == 0x000010, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetSubtitleStyle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetSubtitleStyle_ReturnValue_1) == 0x000018, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetSubtitleStyle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetObjectClass_ReturnValue) == 0x000020, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetObjectClass_ReturnValue_1) == 0x000028, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_IsValid_ReturnValue_1) == 0x000031, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetSubtitleStyle_ReturnValue_2) == 0x000038, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetSubtitleStyle_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_GetObjectClass_ReturnValue_2) == 0x000040, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_GetObjectClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget, CallFunc_IsValid_ReturnValue_2) == 0x000048, "Member 'WBP_CaptionWidget_C_ExecuteUbergraph_WBP_CaptionWidget::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CaptionWidget_C \ +static_assert(alignof(UWBP_CaptionWidget_C) == 0x000008, "Wrong alignment on UWBP_CaptionWidget_C"); \ +static_assert(sizeof(UWBP_CaptionWidget_C) == 0x000338, "Wrong size on UWBP_CaptionWidget_C"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, UberGraphFrame) == 0x0002F0, "Member 'UWBP_CaptionWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, Background) == 0x0002F8, "Member 'UWBP_CaptionWidget_C::Background' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, MusicIcon) == 0x000300, "Member 'UWBP_CaptionWidget_C::MusicIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, Overlay_0) == 0x000308, "Member 'UWBP_CaptionWidget_C::Overlay_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, SizeBox) == 0x000310, "Member 'UWBP_CaptionWidget_C::SizeBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, SizeProperty) == 0x000318, "Member 'UWBP_CaptionWidget_C::SizeProperty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, NewEventDispatcher) == 0x000320, "Member 'UWBP_CaptionWidget_C::NewEventDispatcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidget_C, BackgroundAlpha) == 0x000330, "Member 'UWBP_CaptionWidget_C::BackgroundAlpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDepleteBlood_C \ +static_assert(alignof(UDepleteBlood_C) == 0x000008, "Wrong alignment on UDepleteBlood_C"); \ +static_assert(sizeof(UDepleteBlood_C) == 0x000088, "Wrong size on UDepleteBlood_C"); \ + +#define DUMPER7_ASSERTS_WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController \ +static_assert(alignof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController) == 0x000004, "Wrong alignment on WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController"); \ +static_assert(sizeof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController) == 0x000010, "Wrong size on WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController"); \ +static_assert(offsetof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController, EntryPoint) == 0x000000, "Member 'WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController, CallFunc_Array_Add_ReturnValue) == 0x000008, "Member 'WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController, CallFunc_Array_Add_ReturnValue_1) == 0x00000C, "Member 'WBP_CaptionWidgetController_C_ExecuteUbergraph_WBP_CaptionWidgetController::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CaptionWidgetController_C_PreConstruct \ +static_assert(alignof(WBP_CaptionWidgetController_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_CaptionWidgetController_C_PreConstruct"); \ +static_assert(sizeof(WBP_CaptionWidgetController_C_PreConstruct) == 0x000001, "Wrong size on WBP_CaptionWidgetController_C_PreConstruct"); \ +static_assert(offsetof(WBP_CaptionWidgetController_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_CaptionWidgetController_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CaptionWidgetController_C \ +static_assert(alignof(UWBP_CaptionWidgetController_C) == 0x000008, "Wrong alignment on UWBP_CaptionWidgetController_C"); \ +static_assert(sizeof(UWBP_CaptionWidgetController_C) == 0x000300, "Wrong size on UWBP_CaptionWidgetController_C"); \ +static_assert(offsetof(UWBP_CaptionWidgetController_C, UberGraphFrame) == 0x0002E8, "Member 'UWBP_CaptionWidgetController_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidgetController_C, WBP_CaptionWidget) == 0x0002F0, "Member 'UWBP_CaptionWidgetController_C::WBP_CaptionWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CaptionWidgetController_C, WBP_CaptionWidget_1) == 0x0002F8, "Member 'UWBP_CaptionWidgetController_C::WBP_CaptionWidget_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent \ +static_assert(alignof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent) == 0x000008, "Wrong alignment on PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent"); \ +static_assert(sizeof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent) == 0x000078, "Wrong size on PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, EntryPoint) == 0x000000, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_GetOwner_ReturnValue) == 0x000028, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CustomEvent_CurrentValue_1) == 0x000030, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CustomEvent_CurrentValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CustomEvent_MaxValue_1) == 0x000034, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CustomEvent_MaxValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter) == 0x000038, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_K2_GetPlayerCharacterFromActor_OutPins) == 0x000040, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_K2_GetPlayerCharacterFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000048, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_SwitchEnum_CmpSuccess) == 0x000050, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CustomEvent_CurrentValue) == 0x000054, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, K2Node_CustomEvent_MaxValue) == 0x000058, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_IsValid_ReturnValue) == 0x00005C, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000068, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent, CallFunc_SetProperty_InValue_ImplicitCast) == 0x000070, "Member 'PlayerHeraPropertiesComponent_C_ExecuteUbergraph_PlayerHeraPropertiesComponent::CallFunc_SetProperty_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerHeraPropertiesComponent_C_OnBloodChanged \ +static_assert(alignof(PlayerHeraPropertiesComponent_C_OnBloodChanged) == 0x000004, "Wrong alignment on PlayerHeraPropertiesComponent_C_OnBloodChanged"); \ +static_assert(sizeof(PlayerHeraPropertiesComponent_C_OnBloodChanged) == 0x000008, "Wrong size on PlayerHeraPropertiesComponent_C_OnBloodChanged"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_OnBloodChanged, CurrentValue) == 0x000000, "Member 'PlayerHeraPropertiesComponent_C_OnBloodChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_OnBloodChanged, MaxValue) == 0x000004, "Member 'PlayerHeraPropertiesComponent_C_OnBloodChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayerHeraPropertiesComponent_C_OnHealthChanged \ +static_assert(alignof(PlayerHeraPropertiesComponent_C_OnHealthChanged) == 0x000004, "Wrong alignment on PlayerHeraPropertiesComponent_C_OnHealthChanged"); \ +static_assert(sizeof(PlayerHeraPropertiesComponent_C_OnHealthChanged) == 0x000008, "Wrong size on PlayerHeraPropertiesComponent_C_OnHealthChanged"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_OnHealthChanged, CurrentValue) == 0x000000, "Member 'PlayerHeraPropertiesComponent_C_OnHealthChanged::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(PlayerHeraPropertiesComponent_C_OnHealthChanged, MaxValue) == 0x000004, "Member 'PlayerHeraPropertiesComponent_C_OnHealthChanged::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayerHeraPropertiesComponent_C \ +static_assert(alignof(UPlayerHeraPropertiesComponent_C) == 0x000008, "Wrong alignment on UPlayerHeraPropertiesComponent_C"); \ +static_assert(sizeof(UPlayerHeraPropertiesComponent_C) == 0x0000C8, "Wrong size on UPlayerHeraPropertiesComponent_C"); \ +static_assert(offsetof(UPlayerHeraPropertiesComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UPlayerHeraPropertiesComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UPlayerHeraPropertiesComponent_C, Character) == 0x0000A8, "Member 'UPlayerHeraPropertiesComponent_C::Character' has a wrong offset!"); \ +static_assert(offsetof(UPlayerHeraPropertiesComponent_C, Attribute_Set) == 0x0000B0, "Member 'UPlayerHeraPropertiesComponent_C::Attribute_Set' has a wrong offset!"); \ +static_assert(offsetof(UPlayerHeraPropertiesComponent_C, Blood_Hera_Property) == 0x0000B8, "Member 'UPlayerHeraPropertiesComponent_C::Blood_Hera_Property' has a wrong offset!"); \ +static_assert(offsetof(UPlayerHeraPropertiesComponent_C, Health_Hera_Property) == 0x0000C0, "Member 'UPlayerHeraPropertiesComponent_C::Health_Hera_Property' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D \ +static_assert(alignof(GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D) == 0x0000B8, "Wrong size on GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D, EventTag) == 0x000000, "Member 'GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D, EventData) == 0x000008, "Member 'GA_Ysabella_Distracted_C_EventReceived_9CF0255E4F9CBA1179377E81844F2B7D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted \ +static_assert(alignof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted) == 0x0006F0, "Wrong size on GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, EntryPoint) == 0x000000, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventTag_3) == 0x0000C0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventData_3) == 0x0000C8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventTag_2) == 0x000188, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventData_2) == 0x000190, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventTag_1) == 0x000250, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventData_1) == 0x000258, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate_2) == 0x000308, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventTag) == 0x000318, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CustomEvent_EventData) == 0x000320, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, Temp_struct_Variable) == 0x0003E0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, Temp_struct_Variable_1) == 0x000490, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000498, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0004A0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate_4) == 0x0004A8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_WaitDelay_ReturnValue) == 0x0004B8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, Temp_int_Loop_Counter_Variable) == 0x0004C0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_Add_IntInt_ReturnValue) == 0x0004C4, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_IsValid_ReturnValue) == 0x0004C8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, Temp_int_Array_Index_Variable) == 0x0004CC, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetMontage_ReturnValue) == 0x0004D0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004D8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_Event_EventData) == 0x0004E0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_IsValid_ReturnValue_1) == 0x000590, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_DynamicCast_AsActor) == 0x000598, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_DynamicCast_bSuccess) == 0x0005A0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005A8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_IsValid_ReturnValue_2) == 0x0005C0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0005C8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0005D0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0005D8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x0005F0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000600, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_Array_Get_Item) == 0x000618, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000620, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetDialogueInfo_ReturnValue) == 0x000638, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_BreakRotator_Roll) == 0x000640, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_BreakRotator_Pitch) == 0x000644, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_BreakRotator_Yaw) == 0x000648, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_MakeArray_Array) == 0x000650, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_MakeRotator_ReturnValue) == 0x000660, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_MakeArray_Array_1) == 0x000678, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000688, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_Array_Length_ReturnValue) == 0x00068C, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_Less_IntInt_ReturnValue) == 0x000690, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, K2Node_CreateDelegate_OutputDelegate_5) == 0x000694, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0006A4, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_GetPlayerPawn_ReturnValue) == 0x0006B0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x0006B8, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x0006E0, "Member 'GA_Ysabella_Distracted_C_ExecuteUbergraph_GA_Ysabella_Distracted::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Ysabella_Distracted_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D \ +static_assert(alignof(GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D) == 0x0000B8, "Wrong size on GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D, EventTag) == 0x000000, "Member 'GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D, EventData) == 0x000008, "Member 'GA_Ysabella_Distracted_C_OnBlendOut_9CF0255E4F9CBA1179377E81844F2B7D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D \ +static_assert(alignof(GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D) == 0x0000B8, "Wrong size on GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D, EventTag) == 0x000000, "Member 'GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D, EventData) == 0x000008, "Member 'GA_Ysabella_Distracted_C_OnCancelled_9CF0255E4F9CBA1179377E81844F2B7D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D \ +static_assert(alignof(GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D) == 0x0000B8, "Wrong size on GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D, EventTag) == 0x000000, "Member 'GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D, EventData) == 0x000008, "Member 'GA_Ysabella_Distracted_C_OnCompleted_9CF0255E4F9CBA1179377E81844F2B7D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D \ +static_assert(alignof(GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D) == 0x0000B8, "Wrong size on GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D, EventTag) == 0x000000, "Member 'GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D, EventData) == 0x000008, "Member 'GA_Ysabella_Distracted_C_OnInterrupted_9CF0255E4F9CBA1179377E81844F2B7D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_Distracted_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Ysabella_Distracted_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Ysabella_Distracted_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Ysabella_Distracted_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_Ysabella_Distracted_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000080, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_Distracted_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000090, "Member 'GA_Ysabella_Distracted_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ysabella_Distracted_C \ +static_assert(alignof(UGA_Ysabella_Distracted_C) == 0x000008, "Wrong alignment on UGA_Ysabella_Distracted_C"); \ +static_assert(sizeof(UGA_Ysabella_Distracted_C) == 0x000690, "Wrong size on UGA_Ysabella_Distracted_C"); \ +static_assert(offsetof(UGA_Ysabella_Distracted_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ysabella_Distracted_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_Distracted_C, TaskToTriggerOnHusks) == 0x000670, "Member 'UGA_Ysabella_Distracted_C::TaskToTriggerOnHusks' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_Distracted_C, Husks) == 0x000678, "Member 'UGA_Ysabella_Distracted_C::Husks' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_Distracted_C, RootMotionStrength) == 0x000688, "Member 'UGA_Ysabella_Distracted_C::RootMotionStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AttachWaypointToEnemy_C_Begin_Overlap \ +static_assert(alignof(BP_AttachWaypointToEnemy_C_Begin_Overlap) == 0x000008, "Wrong alignment on BP_AttachWaypointToEnemy_C_Begin_Overlap"); \ +static_assert(sizeof(BP_AttachWaypointToEnemy_C_Begin_Overlap) == 0x000108, "Wrong size on BP_AttachWaypointToEnemy_C_Begin_Overlap"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, OverlappedComponent) == 0x000000, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, OtherActor) == 0x000008, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, OtherComp) == 0x000010, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, OtherBodyIndex) == 0x000018, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, bFromSweep) == 0x00001C, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_Begin_Overlap, SweepResult) == 0x000020, "Member 'BP_AttachWaypointToEnemy_C_Begin_Overlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature \ +static_assert(alignof(BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature) == 0x000004, "Wrong alignment on BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature"); \ +static_assert(sizeof(BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature) == 0x000004, "Wrong size on BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature, NewValue) == 0x000000, "Member 'BP_AttachWaypointToEnemy_C_BndEvt__BP_AttachWaypointToEnemy_HeraPropertyComponentInt_K2Node_ComponentBoundEvent_2_HeraPropertyIntChanged__DelegateSignature::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy \ +static_assert(alignof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy) == 0x000008, "Wrong alignment on BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy"); \ +static_assert(sizeof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy) == 0x0003F8, "Wrong size on BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, EntryPoint) == 0x000000, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsBP_Scent_Trail) == 0x000010, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsBP_Scent_Trail' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000020, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, Temp_bool_IsClosed_Variable) == 0x000039, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, Temp_bool_Has_Been_Initd_Variable) == 0x00003A, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, Temp_int_Array_Index_Variable) == 0x00003C, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000040, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsWrestler_Waypoint) == 0x000048, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsWrestler_Waypoint' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_2) == 0x000050, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x000058, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsBP_Scent_Trail_1) == 0x000060, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsBP_Scent_Trail_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_3) == 0x000068, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CreateDelegate_OutputDelegate) == 0x00006C, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3) == 0x000080, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4) == 0x000088, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsBP_Wrestler_Waypoint) == 0x000090, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsBP_Wrestler_Waypoint' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_4) == 0x000098, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsBP_Scent_Trail_2) == 0x0000A0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsBP_Scent_Trail_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_5) == 0x0000A8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x0000B0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_6) == 0x0000C0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_IsValid_ReturnValue_1) == 0x0000C1, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetGameMode_ReturnValue) == 0x0000C8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetComponentByClass_ReturnValue) == 0x0000D0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetActiveQuestTag_ReturnValue) == 0x0000D8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0000E0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_5) == 0x0000E8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000F0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_AsWrestler_AISpawner) == 0x000100, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_AsWrestler_AISpawner' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess_7) == 0x000108, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000110, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_IsValid_ReturnValue_2) == 0x000118, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000120, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_ComponentBoundEvent_newValue) == 0x000128, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_ComponentBoundEvent_newValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_OverlappedComponent) == 0x000130, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_OtherActor) == 0x000138, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_OtherComp) == 0x000140, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_OtherBodyIndex) == 0x000148, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_bFromSweep) == 0x00014C, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_CustomEvent_SweepResult) == 0x000150, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_CustomEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000238, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000240, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors) == 0x000288, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Array_Get_Item) == 0x000298, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Array_Length_ReturnValue) == 0x0002A0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_K2_AttachToActor_ReturnValue) == 0x0002A4, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Less_IntInt_ReturnValue) == 0x0002A5, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002A8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Add_VectorVector_ReturnValue) == 0x0002C0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_Array_Length_ReturnValue_1) == 0x0002D8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0002E0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0003C8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0003C9, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetProperty_ReturnValue) == 0x0003CC, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x0003D0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetGameMode_ReturnValue_1) == 0x0003D8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetGameMode_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0003E0, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, K2Node_Event_EndPlayReason) == 0x0003E8, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_GetActiveQuestTag_ReturnValue_1) == 0x0003EC, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_GetActiveQuestTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x0003F4, "Member 'BP_AttachWaypointToEnemy_C_ExecuteUbergraph_BP_AttachWaypointToEnemy::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AttachWaypointToEnemy_C_ReceiveEndPlay \ +static_assert(alignof(BP_AttachWaypointToEnemy_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on BP_AttachWaypointToEnemy_C_ReceiveEndPlay"); \ +static_assert(sizeof(BP_AttachWaypointToEnemy_C_ReceiveEndPlay) == 0x000001, "Wrong size on BP_AttachWaypointToEnemy_C_ReceiveEndPlay"); \ +static_assert(offsetof(BP_AttachWaypointToEnemy_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'BP_AttachWaypointToEnemy_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AttachWaypointToEnemy_C \ +static_assert(alignof(ABP_AttachWaypointToEnemy_C) == 0x000008, "Wrong alignment on ABP_AttachWaypointToEnemy_C"); \ +static_assert(sizeof(ABP_AttachWaypointToEnemy_C) == 0x0003E0, "Wrong size on ABP_AttachWaypointToEnemy_C"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, UberGraphFrame) == 0x000298, "Member 'ABP_AttachWaypointToEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, HeraPropertyComponentInt) == 0x0002A0, "Member 'ABP_AttachWaypointToEnemy_C::HeraPropertyComponentInt' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, HeraMissionActor) == 0x0002A8, "Member 'ABP_AttachWaypointToEnemy_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Box) == 0x0002B0, "Member 'ABP_AttachWaypointToEnemy_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, DefaultSceneRoot) == 0x0002B8, "Member 'ABP_AttachWaypointToEnemy_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, EnemySpawner) == 0x0002C0, "Member 'ABP_AttachWaypointToEnemy_C::EnemySpawner' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Enemy_Waypoint) == 0x0002E8, "Member 'ABP_AttachWaypointToEnemy_C::Enemy_Waypoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Is_In_Niko) == 0x000310, "Member 'ABP_AttachWaypointToEnemy_C::Is_In_Niko' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, In_Tags) == 0x000318, "Member 'ABP_AttachWaypointToEnemy_C::In_Tags' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, ScentTrail) == 0x000338, "Member 'ABP_AttachWaypointToEnemy_C::ScentTrail' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Waypoint_to_Attach_on_Scent_Trail) == 0x000360, "Member 'ABP_AttachWaypointToEnemy_C::Waypoint_to_Attach_on_Scent_Trail' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Scent_Trail_to_Deactivate) == 0x000388, "Member 'ABP_AttachWaypointToEnemy_C::Scent_Trail_to_Deactivate' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, QuestGiverProgression) == 0x0003B0, "Member 'ABP_AttachWaypointToEnemy_C::QuestGiverProgression' has a wrong offset!"); \ +static_assert(offsetof(ABP_AttachWaypointToEnemy_C, Scent_Trail_to_To_Activate) == 0x0003B8, "Member 'ABP_AttachWaypointToEnemy_C::Scent_Trail_to_To_Activate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_AttackTracker_C_Received_NotifyTick \ +static_assert(alignof(AN_AttackTracker_C_Received_NotifyTick) == 0x000008, "Wrong alignment on AN_AttackTracker_C_Received_NotifyTick"); \ +static_assert(sizeof(AN_AttackTracker_C_Received_NotifyTick) == 0x000080, "Wrong size on AN_AttackTracker_C_Received_NotifyTick"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, MeshComp) == 0x000000, "Member 'AN_AttackTracker_C_Received_NotifyTick::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, Animation) == 0x000008, "Member 'AN_AttackTracker_C_Received_NotifyTick::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, FrameDeltaTime) == 0x000010, "Member 'AN_AttackTracker_C_Received_NotifyTick::FrameDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, EventReference) == 0x000018, "Member 'AN_AttackTracker_C_Received_NotifyTick::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, ReturnValue) == 0x000048, "Member 'AN_AttackTracker_C_Received_NotifyTick::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_AttackTracker_C_Received_NotifyTick::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000058, "Member 'AN_AttackTracker_C_Received_NotifyTick::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'AN_AttackTracker_C_Received_NotifyTick::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, CallFunc_GetAIController_ReturnValue) == 0x000068, "Member 'AN_AttackTracker_C_Received_NotifyTick::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, CallFunc_GetTargetActor_ReturnValue) == 0x000070, "Member 'AN_AttackTracker_C_Received_NotifyTick::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackTracker_C_Received_NotifyTick, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'AN_AttackTracker_C_Received_NotifyTick::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_AttackTracker_C \ +static_assert(alignof(UAN_AttackTracker_C) == 0x000008, "Wrong alignment on UAN_AttackTracker_C"); \ +static_assert(sizeof(UAN_AttackTracker_C) == 0x000040, "Wrong size on UAN_AttackTracker_C"); \ +static_assert(offsetof(UAN_AttackTracker_C, Move_Speed) == 0x000030, "Member 'UAN_AttackTracker_C::Move_Speed' has a wrong offset!"); \ +static_assert(offsetof(UAN_AttackTracker_C, Rotation_Rate) == 0x000038, "Member 'UAN_AttackTracker_C::Rotation_Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_AttackWarning_C_Received_NotifyBegin \ +static_assert(alignof(AN_AttackWarning_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_AttackWarning_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_AttackWarning_C_Received_NotifyBegin) == 0x000078, "Wrong size on AN_AttackWarning_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_AttackWarning_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_AttackWarning_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_AttackWarning_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_AttackWarning_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_AttackWarning_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000050, "Member 'AN_AttackWarning_C_Received_NotifyBegin::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000058, "Member 'AN_AttackWarning_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000060, "Member 'AN_AttackWarning_C_Received_NotifyBegin::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'AN_AttackWarning_C_Received_NotifyBegin::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyBegin, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000070, "Member 'AN_AttackWarning_C_Received_NotifyBegin::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_AttackWarning_C_Received_NotifyEnd \ +static_assert(alignof(AN_AttackWarning_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_AttackWarning_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_AttackWarning_C_Received_NotifyEnd) == 0x000060, "Wrong size on AN_AttackWarning_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_AttackWarning_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_AttackWarning_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_AttackWarning_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_AttackWarning_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_AttackWarning_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000050, "Member 'AN_AttackWarning_C_Received_NotifyEnd::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(AN_AttackWarning_C_Received_NotifyEnd, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'AN_AttackWarning_C_Received_NotifyEnd::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_AttackWarning_C \ +static_assert(alignof(UAN_AttackWarning_C) == 0x000008, "Wrong alignment on UAN_AttackWarning_C"); \ +static_assert(sizeof(UAN_AttackWarning_C) == 0x000038, "Wrong size on UAN_AttackWarning_C"); \ +static_assert(offsetof(UAN_AttackWarning_C, Range) == 0x000030, "Member 'UAN_AttackWarning_C::Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BlockCooldown_C \ +static_assert(alignof(UGE_BlockCooldown_C) == 0x000008, "Wrong alignment on UGE_BlockCooldown_C"); \ +static_assert(sizeof(UGE_BlockCooldown_C) == 0x000A70, "Wrong size on UGE_BlockCooldown_C"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_ActivateSpline \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_ActivateSpline"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline) == 0x000020, "Wrong size on BP_Music_DiegeticEmitterSystem_C_ActivateSpline"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline, SplineTag) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_ActivateSpline::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline, bActivate) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_ActivateSpline::bActivate' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline, NewSpline) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_ActivateSpline::NewSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline, CallFunc_IsValidTargetSpline_Active) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_ActivateSpline::CallFunc_IsValidTargetSpline_Active' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ActivateSpline, CallFunc_BooleanAND_ReturnValue) == 0x000019, "Member 'BP_Music_DiegeticEmitterSystem_C_ActivateSpline::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature) == 0x000004, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature) == 0x000008, "Wrong size on BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature, NewValue) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_BndEvt__BP_BikerBar_SpeakersAndSplines_ActiveSplineProperty_K2Node_ComponentBoundEvent_10_HeraPropertyGameplayTagChanged__DelegateSignature::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem) == 0x000050, "Wrong size on BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, EntryPoint) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, CallFunc_GetActiveSplineBP_ActiveSpline) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::CallFunc_GetActiveSplineBP_ActiveSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, CallFunc_UpdateSpline_EmitterLocation) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::CallFunc_UpdateSpline_EmitterLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, CallFunc_UpdateSpline_Spread) == 0x000030, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::CallFunc_UpdateSpline_Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, CallFunc_UpdateSpline_Interpolation) == 0x000038, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::CallFunc_UpdateSpline_Interpolation' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, K2Node_Event_DeltaSeconds) == 0x000040, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem, K2Node_ComponentBoundEvent_newValue) == 0x000044, "Member 'BP_Music_DiegeticEmitterSystem_C_ExecuteUbergraph_BP_Music_DiegeticEmitterSystem::K2Node_ComponentBoundEvent_newValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP) == 0x000018, "Wrong size on BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP, ActiveSpline_0) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP::ActiveSpline_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP, K2Node_DynamicCast_AsBP_Audio_Spline_RTPC) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP::K2Node_DynamicCast_AsBP_Audio_Spline_RTPC' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_GetActiveSplineBP::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_GetSplineBP \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_GetSplineBP"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP) == 0x000020, "Wrong size on BP_Music_DiegeticEmitterSystem_C_GetSplineBP"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP, Spline) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineBP::Spline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP, SplineBP) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineBP::SplineBP' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP, K2Node_DynamicCast_AsBP_Audio_Spline_RTPC) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineBP::K2Node_DynamicCast_AsBP_Audio_Spline_RTPC' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineBP, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineBP::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag) == 0x000030, "Wrong size on BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, SplineTag) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, SplineBP) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::SplineBP' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, CallFunc_Map_Find_Value) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, CallFunc_Map_Find_ReturnValue) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, K2Node_DynamicCast_AsBP_Audio_Spline_RTPC) == 0x000020, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::K2Node_DynamicCast_AsBP_Audio_Spline_RTPC' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_Music_DiegeticEmitterSystem_C_GetSplineFromTag::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_HandleSplineExit \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_HandleSplineExit"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit) == 0x000058, "Wrong size on BP_Music_DiegeticEmitterSystem_C_HandleSplineExit"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, SplineTag) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, bExitFromStart) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::bExitFromStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, bHoldAtExit) == 0x000009, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::bHoldAtExit' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, bExited) == 0x00000A, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::bExited' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, Spline) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::Spline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GetSplineFromTag_SplineBP) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GetSplineFromTag_SplineBP' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GetActiveSplineBP_ActiveSpline) == 0x000020, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GetActiveSplineBP_ActiveSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GetActiveSplineBP_ActiveSpline_1) == 0x000028, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GetActiveSplineBP_ActiveSpline_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000031, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GetActiveSplineBP_ActiveSpline_2) == 0x000038, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GetActiveSplineBP_ActiveSpline_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000041, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_BooleanAND_ReturnValue) == 0x000042, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000043, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_GetSplineFromTag_SplineBP_1) == 0x000048, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_GetSplineFromTag_SplineBP_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplineExit, CallFunc_BooleanAND_ReturnValue_1) == 0x000050, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplineExit::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange) == 0x000058, "Wrong size on BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, NewValue) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::NewValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, NewSpline) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::NewSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_GetSplineFromTag_SplineBP) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_GetSplineFromTag_SplineBP' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, Temp_int_Array_Index_Variable) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_ActivateSpline_IsActive) == 0x00001C, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_ActivateSpline_IsActive' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_IsValid_ReturnValue) == 0x00001D, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, Temp_int_Array_Index_Variable_1) == 0x00002C, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, Temp_int_Loop_Counter_Variable_1) == 0x000038, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Array_Get_Item_1) == 0x000040, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Array_Length_ReturnValue_1) == 0x000048, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Less_IntInt_ReturnValue_1) == 0x00004D, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange, CallFunc_Add_IntInt_ReturnValue_1) == 0x000050, "Member 'BP_Music_DiegeticEmitterSystem_C_HandleSplinePropertyChange::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline) == 0x000020, "Wrong size on BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline, SplineTag) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline, Active) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline::Active' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline, CallFunc_Map_Find_Value) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline, CallFunc_Map_Find_ReturnValue) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_IsValidTargetSpline::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_ReceiveTick \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_ReceiveTick"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_ReceiveTick) == 0x000004, "Wrong size on BP_Music_DiegeticEmitterSystem_C_ReceiveTick"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag) == 0x000004, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag) == 0x000014, "Wrong size on BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag, SplineTag) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag::SplineTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000011, "Member 'BP_Music_DiegeticEmitterSystem_C_SetActiveSplineTag::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides) == 0x0000B0, "Wrong size on BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, Location) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, Spread) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::Spread' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, Interpolation) == 0x000020, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::Interpolation' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_GetActiveSplineBP_ActiveSpline) == 0x000028, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_GetActiveSplineBP_ActiveSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_GetActiveSplineBP_ActiveSpline_1) == 0x000030, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_GetActiveSplineBP_ActiveSpline_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Not_PreBool_ReturnValue) == 0x000038, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_GetActiveSplineBP_ActiveSpline_2) == 0x000040, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_GetActiveSplineBP_ActiveSpline_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_GetActiveSplineBP_ActiveSpline_3) == 0x000048, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_GetActiveSplineBP_ActiveSpline_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, Temp_int_Array_Index_Variable) == 0x000054, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Array_Get_Item) == 0x000058, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000060, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_BooleanAND_ReturnValue) == 0x000078, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, Temp_int_Loop_Counter_Variable) == 0x00007C, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Less_IntInt_ReturnValue) == 0x000080, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Add_IntInt_ReturnValue) == 0x000084, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000088, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_VLerp_ReturnValue) == 0x000090, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, K2Node_VariableSet_SpreadOverride_ImplicitCast) == 0x0000A8, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::K2Node_VariableSet_SpreadOverride_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides, CallFunc_VLerp_Alpha_ImplicitCast) == 0x0000AC, "Member 'BP_Music_DiegeticEmitterSystem_C_SetEmitterOverrides::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier \ +static_assert(alignof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier) == 0x000008, "Wrong alignment on BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier"); \ +static_assert(sizeof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier) == 0x0000A8, "Wrong size on BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, DistanceMod) == 0x000000, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::DistanceMod' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Length_ReturnValue) == 0x000014, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Length_ReturnValue_1) == 0x000018, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Subtract_IntInt_ReturnValue) == 0x00001C, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_GetActiveSplineBP_ActiveSpline) == 0x000020, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_GetActiveSplineBP_ActiveSpline' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_GetActiveSplineBP_ActiveSpline_1) == 0x000028, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_GetActiveSplineBP_ActiveSpline_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Fraction_ReturnValue) == 0x000030, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Fraction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_FTrunc_ReturnValue) == 0x000040, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Get_Item) == 0x000044, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Get_Item_1) == 0x000048, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Length_ReturnValue_2) == 0x000050, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000058, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Add_IntInt_ReturnValue_1) == 0x000070, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Add_IntInt_ReturnValue_2) == 0x000074, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Clamp_ReturnValue) == 0x000078, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Clamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00007C, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Array_Get_Item_2) == 0x000080, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Lerp_ReturnValue) == 0x000088, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast) == 0x000090, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::K2Node_VariableSet_DistanceOverrideModifier_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Lerp_A_ImplicitCast) == 0x000098, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Lerp_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier, CallFunc_Lerp_B_ImplicitCast) == 0x0000A0, "Member 'BP_Music_DiegeticEmitterSystem_C_SetPerimeterDistanceModifier::CallFunc_Lerp_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Music_DiegeticEmitterSystem_C \ +static_assert(alignof(ABP_Music_DiegeticEmitterSystem_C) == 0x000008, "Wrong alignment on ABP_Music_DiegeticEmitterSystem_C"); \ +static_assert(sizeof(ABP_Music_DiegeticEmitterSystem_C) == 0x000358, "Wrong size on ABP_Music_DiegeticEmitterSystem_C"); \ +static_assert(offsetof(ABP_Music_DiegeticEmitterSystem_C, UberGraphFrame) == 0x000320, "Member 'ABP_Music_DiegeticEmitterSystem_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Music_DiegeticEmitterSystem_C, ActiveSplinePropertyComp) == 0x000328, "Member 'ABP_Music_DiegeticEmitterSystem_C::ActiveSplinePropertyComp' has a wrong offset!"); \ +static_assert(offsetof(ABP_Music_DiegeticEmitterSystem_C, DefaultSceneRoot) == 0x000330, "Member 'ABP_Music_DiegeticEmitterSystem_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Music_DiegeticEmitterSystem_C, CurrentQuestEvent) == 0x000338, "Member 'ABP_Music_DiegeticEmitterSystem_C::CurrentQuestEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Music_DiegeticEmitterSystem_C, EmitterPosition01) == 0x000340, "Member 'ABP_Music_DiegeticEmitterSystem_C::EmitterPosition01' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAbilityOnPlayerHACK_C_ReceiveExecute \ +static_assert(alignof(UnBlockAbilityOnPlayerHACK_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnBlockAbilityOnPlayerHACK_C_ReceiveExecute"); \ +static_assert(sizeof(UnBlockAbilityOnPlayerHACK_C_ReceiveExecute) == 0x000010, "Wrong size on UnBlockAbilityOnPlayerHACK_C_ReceiveExecute"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnBlockAbilityOnPlayerHACK_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ReceiveExecute, InState) == 0x000008, "Member 'UnBlockAbilityOnPlayerHACK_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK \ +static_assert(alignof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK) == 0x000008, "Wrong alignment on UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK"); \ +static_assert(sizeof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK) == 0x000028, "Wrong size on UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK, EntryPoint) == 0x000000, "Member 'UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK, K2Node_Event_InAutomata) == 0x000008, "Member 'UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK, K2Node_Event_InState) == 0x000010, "Member 'UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'UnBlockAbilityOnPlayerHACK_C_ExecuteUbergraph_UnBlockAbilityOnPlayerHACK::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnBlockAbilityOnPlayerHACK_C \ +static_assert(alignof(UUnBlockAbilityOnPlayerHACK_C) == 0x000008, "Wrong alignment on UUnBlockAbilityOnPlayerHACK_C"); \ +static_assert(sizeof(UUnBlockAbilityOnPlayerHACK_C) == 0x000090, "Wrong size on UUnBlockAbilityOnPlayerHACK_C"); \ +static_assert(offsetof(UUnBlockAbilityOnPlayerHACK_C, UberGraphFrame) == 0x000088, "Member 'UUnBlockAbilityOnPlayerHACK_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Handgun_C_ExecuteUbergraph_BP_Handgun \ +static_assert(alignof(BP_Handgun_C_ExecuteUbergraph_BP_Handgun) == 0x000004, "Wrong alignment on BP_Handgun_C_ExecuteUbergraph_BP_Handgun"); \ +static_assert(sizeof(BP_Handgun_C_ExecuteUbergraph_BP_Handgun) == 0x000004, "Wrong size on BP_Handgun_C_ExecuteUbergraph_BP_Handgun"); \ +static_assert(offsetof(BP_Handgun_C_ExecuteUbergraph_BP_Handgun, EntryPoint) == 0x000000, "Member 'BP_Handgun_C_ExecuteUbergraph_BP_Handgun::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Handgun_C \ +static_assert(alignof(ABP_Handgun_C) == 0x000008, "Wrong alignment on ABP_Handgun_C"); \ +static_assert(sizeof(ABP_Handgun_C) == 0x0003C8, "Wrong size on ABP_Handgun_C"); \ +static_assert(offsetof(ABP_Handgun_C, UberGraphFrame_BP_Handgun_C) == 0x0003B8, "Member 'ABP_Handgun_C::UberGraphFrame_BP_Handgun_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Handgun_C, VFX_Muzzle) == 0x0003C0, "Member 'ABP_Handgun_C::VFX_Muzzle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr \ +static_assert(alignof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr) == 0x000008, "Wrong alignment on CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr"); \ +static_assert(sizeof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr) == 0x000060, "Wrong size on CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, EntryPoint) == 0x000000, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, K2Node_Event_InAutomata) == 0x000018, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, K2Node_Event_InState) == 0x000020, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000048, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000050, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr, CallFunc_IsValid_ReturnValue_2) == 0x000059, "Member 'CheckTagsAddedRemovedOnPhyr_C_ExecuteUbergraph_CheckTagsAddedRemovedOnPhyr::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute \ +static_assert(alignof(CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute"); \ +static_assert(sizeof(CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute) == 0x000010, "Wrong size on CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckTagsAddedRemovedOnPhyr_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckTagsAddedRemovedOnPhyr_C \ +static_assert(alignof(UCheckTagsAddedRemovedOnPhyr_C) == 0x000008, "Wrong alignment on UCheckTagsAddedRemovedOnPhyr_C"); \ +static_assert(sizeof(UCheckTagsAddedRemovedOnPhyr_C) == 0x0000A8, "Wrong size on UCheckTagsAddedRemovedOnPhyr_C"); \ +static_assert(offsetof(UCheckTagsAddedRemovedOnPhyr_C, UberGraphFrame) == 0x000088, "Member 'UCheckTagsAddedRemovedOnPhyr_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckTagsAddedRemovedOnPhyr_C, Tick_AddedTags___untick_RemovedTags) == 0x000090, "Member 'UCheckTagsAddedRemovedOnPhyr_C::Tick_AddedTags___untick_RemovedTags' has a wrong offset!"); \ +static_assert(offsetof(UCheckTagsAddedRemovedOnPhyr_C, Tag) == 0x000094, "Member 'UCheckTagsAddedRemovedOnPhyr_C::Tag' has a wrong offset!"); \ +static_assert(offsetof(UCheckTagsAddedRemovedOnPhyr_C, In_Objective) == 0x0000A0, "Member 'UCheckTagsAddedRemovedOnPhyr_C::In_Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_MapBoundary_C_GetLocationDepth \ +static_assert(alignof(BPI_MapBoundary_C_GetLocationDepth) == 0x000008, "Wrong alignment on BPI_MapBoundary_C_GetLocationDepth"); \ +static_assert(sizeof(BPI_MapBoundary_C_GetLocationDepth) == 0x000038, "Wrong size on BPI_MapBoundary_C_GetLocationDepth"); \ +static_assert(offsetof(BPI_MapBoundary_C_GetLocationDepth, PlayerLocation) == 0x000000, "Member 'BPI_MapBoundary_C_GetLocationDepth::PlayerLocation' has a wrong offset!"); \ +static_assert(offsetof(BPI_MapBoundary_C_GetLocationDepth, Depth) == 0x000018, "Member 'BPI_MapBoundary_C_GetLocationDepth::Depth' has a wrong offset!"); \ +static_assert(offsetof(BPI_MapBoundary_C_GetLocationDepth, Location) == 0x000020, "Member 'BPI_MapBoundary_C_GetLocationDepth::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_MapBoundary_C_GetResetTransform \ +static_assert(alignof(BPI_MapBoundary_C_GetResetTransform) == 0x000010, "Wrong alignment on BPI_MapBoundary_C_GetResetTransform"); \ +static_assert(sizeof(BPI_MapBoundary_C_GetResetTransform) == 0x000080, "Wrong size on BPI_MapBoundary_C_GetResetTransform"); \ +static_assert(offsetof(BPI_MapBoundary_C_GetResetTransform, PlayerLocation) == 0x000000, "Member 'BPI_MapBoundary_C_GetResetTransform::PlayerLocation' has a wrong offset!"); \ +static_assert(offsetof(BPI_MapBoundary_C_GetResetTransform, ResetTransform) == 0x000020, "Member 'BPI_MapBoundary_C_GetResetTransform::ResetTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_MapBoundary_C \ +static_assert(alignof(IBPI_MapBoundary_C) == 0x000001, "Wrong alignment on IBPI_MapBoundary_C"); \ +static_assert(sizeof(IBPI_MapBoundary_C) == 0x000001, "Wrong size on IBPI_MapBoundary_C"); \ + +#define DUMPER7_ASSERTS_BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp \ +static_assert(alignof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp) == 0x000008, "Wrong alignment on BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp"); \ +static_assert(sizeof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp) == 0x000088, "Wrong size on BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, EntryPoint) == 0x000000, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000010, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_BreakVector_X) == 0x000018, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_BreakVector_Y) == 0x000020, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_BreakVector_Z) == 0x000028, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, K2Node_Event_DeltaSeconds) == 0x000030, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000034, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_FInterpTo_ReturnValue) == 0x000038, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000040, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Delay_Duration_ImplicitCast) == 0x000058, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x000068, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000070, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_SetIntensity_NewIntensity_ImplicitCast) == 0x000078, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_SetIntensity_NewIntensity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000080, "Member 'BP_TimestopFX_Temp_C_ExecuteUbergraph_BP_TimestopFX_Temp::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TimestopFX_Temp_C_ReceiveTick \ +static_assert(alignof(BP_TimestopFX_Temp_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_TimestopFX_Temp_C_ReceiveTick"); \ +static_assert(sizeof(BP_TimestopFX_Temp_C_ReceiveTick) == 0x000004, "Wrong size on BP_TimestopFX_Temp_C_ReceiveTick"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_TimestopFX_Temp_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TimestopFX_Temp_C_UserConstructionScript \ +static_assert(alignof(BP_TimestopFX_Temp_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_TimestopFX_Temp_C_UserConstructionScript"); \ +static_assert(sizeof(BP_TimestopFX_Temp_C_UserConstructionScript) == 0x000008, "Wrong size on BP_TimestopFX_Temp_C_UserConstructionScript"); \ +static_assert(offsetof(BP_TimestopFX_Temp_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_TimestopFX_Temp_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TimestopFX_Temp_C \ +static_assert(alignof(ABP_TimestopFX_Temp_C) == 0x000008, "Wrong alignment on ABP_TimestopFX_Temp_C"); \ +static_assert(sizeof(ABP_TimestopFX_Temp_C) == 0x0002F0, "Wrong size on ABP_TimestopFX_Temp_C"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, UberGraphFrame) == 0x000298, "Member 'ABP_TimestopFX_Temp_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, PointLight) == 0x0002A0, "Member 'ABP_TimestopFX_Temp_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, Sphere) == 0x0002A8, "Member 'ABP_TimestopFX_Temp_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, DefaultSceneRoot) == 0x0002B0, "Member 'ABP_TimestopFX_Temp_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, Timeline_Alpha_48D16D7D4EE1B6820FD2829894FE796B) == 0x0002B8, "Member 'ABP_TimestopFX_Temp_C::Timeline_Alpha_48D16D7D4EE1B6820FD2829894FE796B' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, Timeline__Direction_48D16D7D4EE1B6820FD2829894FE796B) == 0x0002BC, "Member 'ABP_TimestopFX_Temp_C::Timeline__Direction_48D16D7D4EE1B6820FD2829894FE796B' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, Timeline) == 0x0002C0, "Member 'ABP_TimestopFX_Temp_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, TargetSize) == 0x0002C8, "Member 'ABP_TimestopFX_Temp_C::TargetSize' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, ExpandSpeed) == 0x0002D0, "Member 'ABP_TimestopFX_Temp_C::ExpandSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, FadeTime) == 0x0002D8, "Member 'ABP_TimestopFX_Temp_C::FadeTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, Material) == 0x0002E0, "Member 'ABP_TimestopFX_Temp_C::Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_TimestopFX_Temp_C, alpha) == 0x0002E8, "Member 'ABP_TimestopFX_Temp_C::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DecapitatedHead_USK__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData) == 0x000108, "Wrong size on AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_20) == 0x000004, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_21) == 0x000010, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_21' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_22) == 0x000030, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_22' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_23) == 0x000034, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_23' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_24) == 0x000060, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_24' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __BoolProperty_25) == 0x000064, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__BoolProperty_25' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_26) == 0x000065, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_26' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __ByteProperty_27) == 0x000066, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__ByteProperty_27' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_28) == 0x000068, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_28' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000070, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000F0, "Member 'AnimBP_DecapitatedHead_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DecapitatedHead_USK_C_AnimGraph \ +static_assert(alignof(AnimBP_DecapitatedHead_USK_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_DecapitatedHead_USK_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_DecapitatedHead_USK_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_DecapitatedHead_USK_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_DecapitatedHead_USK_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK \ +static_assert(alignof(AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK) == 0x000004, "Wrong alignment on AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK"); \ +static_assert(sizeof(AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK) == 0x000004, "Wrong size on AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK"); \ +static_assert(offsetof(AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK, EntryPoint) == 0x000000, "Member 'AnimBP_DecapitatedHead_USK_C_ExecuteUbergraph_AnimBP_DecapitatedHead_USK::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_DecapitatedHead_USK_C \ +static_assert(alignof(UAnimBP_DecapitatedHead_USK_C) == 0x000010, "Wrong alignment on UAnimBP_DecapitatedHead_USK_C"); \ +static_assert(sizeof(UAnimBP_DecapitatedHead_USK_C) == 0x000660, "Wrong size on UAnimBP_DecapitatedHead_USK_C"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, UberGraphFrame) == 0x000350, "Member 'UAnimBP_DecapitatedHead_USK_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_Root) == 0x000368, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_LocalToComponentSpace) == 0x000388, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_ComponentToLocalSpace) == 0x0003A8, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_ModifyBone_1) == 0x0003C8, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_ModifyBone_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_ModifyBone) == 0x0004F0, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DecapitatedHead_USK_C, AnimGraphNode_SequencePlayer) == 0x000618, "Member 'UAnimBP_DecapitatedHead_USK_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Slowmovement_C \ +static_assert(alignof(UGE_Slowmovement_C) == 0x000008, "Wrong alignment on UGE_Slowmovement_C"); \ +static_assert(sizeof(UGE_Slowmovement_C) == 0x000A70, "Wrong size on UGE_Slowmovement_C"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Knife_C \ +static_assert(alignof(UBP_WeaponInstance_Knife_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Knife_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Knife_C) == 0x0000F0, "Wrong size on UBP_WeaponInstance_Knife_C"); \ + +#define DUMPER7_ASSERTS_BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate \ +static_assert(alignof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate) == 0x000008, "Wrong alignment on BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate"); \ +static_assert(sizeof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate) == 0x0000F0, "Wrong size on BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, EntryPoint) == 0x000000, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Loop_Counter_Variable_2) == 0x000018, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Add_IntInt_ReturnValue_2) == 0x00001C, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Array_Index_Variable_1) == 0x000020, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Loop_Counter_Variable_3) == 0x000028, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Add_IntInt_ReturnValue_3) == 0x00002C, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, Temp_int_Array_Index_Variable_3) == 0x000030, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_IsValid_ReturnValue) == 0x000034, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000038, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Get_Item) == 0x000048, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000058, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000068, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Length_ReturnValue_1) == 0x000088, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000090, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000A0, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Get_Item_2) == 0x0000A8, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Length_ReturnValue_2) == 0x0000B0, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, K2Node_DynamicCast_AsBP_Enemy_Character_Base_1) == 0x0000B8, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::K2Node_DynamicCast_AsBP_Enemy_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, K2Node_DynamicCast_bSuccess_1) == 0x0000C0, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000C1, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_GetSkeletalMeshComponents_ReturnValue_1) == 0x0000C8, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_GetSkeletalMeshComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Get_Item_3) == 0x0000D8, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Array_Length_ReturnValue_3) == 0x0000E0, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_Less_IntInt_ReturnValue_3) == 0x0000E4, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0000E8, "Member 'BP_BloodCurse_activate_C_ExecuteUbergraph_BP_BloodCurse_activate::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BloodCurse_activate_C_SpawnBloodDecal \ +static_assert(alignof(BP_BloodCurse_activate_C_SpawnBloodDecal) == 0x000008, "Wrong alignment on BP_BloodCurse_activate_C_SpawnBloodDecal"); \ +static_assert(sizeof(BP_BloodCurse_activate_C_SpawnBloodDecal) == 0x0002F0, "Wrong size on BP_BloodCurse_activate_C_SpawnBloodDecal"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, Parameters) == 0x000000, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::Parameters' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, TargetActor) == 0x0000D8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000E0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_Direction) == 0x0000F8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_ReturnValue) == 0x000110, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000114, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000118, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000120, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000138, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000140, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000148, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000168, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Location) == 0x000188, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Normal) == 0x0001A0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0001B8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0001C0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x0001C8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0001D0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0001D8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0001DC, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0001E0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001E8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0001F0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Yaw) == 0x000208, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Pitch) == 0x00020C, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue) == 0x000210, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000228, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue_1) == 0x000230, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_MakeRotator_ReturnValue) == 0x000248, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Map_Keys_Keys) == 0x000260, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000270, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Array_Random_OutItem) == 0x000288, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Array_Random_OutIndex) == 0x000290, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000298, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x0002B0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_1) == 0x0002B8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x0002C0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x0002C8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_2) == 0x0002D0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_2) == 0x0002D8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0002E0, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_activate_C_SpawnBloodDecal, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0002E8, "Member 'BP_BloodCurse_activate_C_SpawnBloodDecal::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BloodCurse_activate_C \ +static_assert(alignof(ABP_BloodCurse_activate_C) == 0x000008, "Wrong alignment on ABP_BloodCurse_activate_C"); \ +static_assert(sizeof(ABP_BloodCurse_activate_C) == 0x000390, "Wrong size on ABP_BloodCurse_activate_C"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, UberGraphFrame) == 0x000298, "Member 'ABP_BloodCurse_activate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_BloodCurse_activate_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Timeline_1_COBAmount_Slow_0096DDC8481159599D5B5CB39B0FF338) == 0x0002A8, "Member 'ABP_BloodCurse_activate_C::Timeline_1_COBAmount_Slow_0096DDC8481159599D5B5CB39B0FF338' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Timeline_1_YOffset_0096DDC8481159599D5B5CB39B0FF338) == 0x0002AC, "Member 'ABP_BloodCurse_activate_C::Timeline_1_YOffset_0096DDC8481159599D5B5CB39B0FF338' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Timeline_1_COBAmount_0096DDC8481159599D5B5CB39B0FF338) == 0x0002B0, "Member 'ABP_BloodCurse_activate_C::Timeline_1_COBAmount_0096DDC8481159599D5B5CB39B0FF338' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Timeline_1__Direction_0096DDC8481159599D5B5CB39B0FF338) == 0x0002B4, "Member 'ABP_BloodCurse_activate_C::Timeline_1__Direction_0096DDC8481159599D5B5CB39B0FF338' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Timeline_1) == 0x0002B8, "Member 'ABP_BloodCurse_activate_C::Timeline_1' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, BubblesBlood) == 0x0002C0, "Member 'ABP_BloodCurse_activate_C::BubblesBlood' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, NiagaraComponent) == 0x0002C8, "Member 'ABP_BloodCurse_activate_C::NiagaraComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, COB_system) == 0x0002D0, "Member 'ABP_BloodCurse_activate_C::COB_system' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, DirectionalDecalSelection) == 0x0002D8, "Member 'ABP_BloodCurse_activate_C::DirectionalDecalSelection' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Decal_Size) == 0x000328, "Member 'ABP_BloodCurse_activate_C::Decal_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Duration) == 0x000340, "Member 'ABP_BloodCurse_activate_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Dynmat) == 0x000348, "Member 'ABP_BloodCurse_activate_C::Dynmat' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Character) == 0x000350, "Member 'ABP_BloodCurse_activate_C::Character' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, ParameterName) == 0x000358, "Member 'ABP_BloodCurse_activate_C::ParameterName' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, NewVar) == 0x000360, "Member 'ABP_BloodCurse_activate_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Use_Anim_) == 0x000368, "Member 'ABP_BloodCurse_activate_C::Use_Anim_' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, COBAmount) == 0x00036C, "Member 'ABP_BloodCurse_activate_C::COBAmount' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, YOffset) == 0x000370, "Member 'ABP_BloodCurse_activate_C::YOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, Target) == 0x000378, "Member 'ABP_BloodCurse_activate_C::Target' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, BurstAsset) == 0x000380, "Member 'ABP_BloodCurse_activate_C::BurstAsset' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_activate_C, AttachComponent) == 0x000388, "Member 'ABP_BloodCurse_activate_C::AttachComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Tolly__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Tolly::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData) == 0x000120, "Wrong size on AnimBP_Tolly::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __NameProperty_69) == 0x000004, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__NameProperty_69' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __NameProperty_70) == 0x00000C, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__NameProperty_70' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __IntProperty_71) == 0x000014, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__IntProperty_71' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __BoolProperty_72) == 0x000018, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__BoolProperty_72' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __FloatProperty_73) == 0x00001C, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__FloatProperty_73' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __StructProperty_74) == 0x000020, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__StructProperty_74' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __FloatProperty_75) == 0x00004C, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__FloatProperty_75' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __BoolProperty_76) == 0x000050, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__BoolProperty_76' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __EnumProperty_77) == 0x000051, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__EnumProperty_77' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __ByteProperty_78) == 0x000052, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__ByteProperty_78' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __NameProperty_79) == 0x000054, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__NameProperty_79' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __NameProperty_80) == 0x00005C, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__NameProperty_80' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __IntProperty_81) == 0x000064, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__IntProperty_81' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, __StructProperty_82) == 0x000068, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::__StructProperty_82' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000088, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000108, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Tolly__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData) == 0x000004, "Wrong alignment on AnimBP_Tolly::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData) == 0x000010, "Wrong size on AnimBP_Tolly::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000004, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData, __FloatProperty_1) == 0x000008, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedMutableData::__FloatProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly::FAnimBlueprintGeneratedMutableData, __FloatProperty_2) == 0x00000C, "Member 'AnimBP_Tolly::FAnimBlueprintGeneratedMutableData::__FloatProperty_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Tolly_C_AnimGraph \ +static_assert(alignof(AnimBP_Tolly_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Tolly_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Tolly_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Tolly_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Tolly_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Tolly_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly \ +static_assert(alignof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly) == 0x000004, "Wrong alignment on AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly"); \ +static_assert(sizeof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly) == 0x000008, "Wrong size on AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly"); \ +static_assert(offsetof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly, EntryPoint) == 0x000000, "Member 'AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly, CallFunc_IsBlendingPoses_ReturnValue) == 0x000004, "Member 'AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly::CallFunc_IsBlendingPoses_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly, CallFunc_IsBlendingPoses_ReturnValue_1) == 0x000005, "Member 'AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly::CallFunc_IsBlendingPoses_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly, CallFunc_Not_PreBool_ReturnValue) == 0x000006, "Member 'AnimBP_Tolly_C_ExecuteUbergraph_AnimBP_Tolly::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Tolly_C \ +static_assert(alignof(UAnimBP_Tolly_C) == 0x000010, "Wrong alignment on UAnimBP_Tolly_C"); \ +static_assert(sizeof(UAnimBP_Tolly_C) == 0x0009C0, "Wrong size on UAnimBP_Tolly_C"); \ +static_assert(offsetof(UAnimBP_Tolly_C, UberGraphFrame) == 0x0003A0, "Member 'UAnimBP_Tolly_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, __AnimBlueprintMutables) == 0x0003A8, "Member 'UAnimBP_Tolly_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimBlueprintExtension_PropertyAccess) == 0x0003B8, "Member 'UAnimBP_Tolly_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimBlueprintExtension_Base) == 0x0003C0, "Member 'UAnimBP_Tolly_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_Root) == 0x0003C8, "Member 'UAnimBP_Tolly_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_TransitionResult_1) == 0x0003E8, "Member 'UAnimBP_Tolly_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_TransitionResult) == 0x000410, "Member 'UAnimBP_Tolly_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_SequencePlayer_2) == 0x000438, "Member 'UAnimBP_Tolly_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_SequencePlayer_1) == 0x000480, "Member 'UAnimBP_Tolly_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_TwoWayBlend_1) == 0x0004C8, "Member 'UAnimBP_Tolly_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_PoseSnapshot_1) == 0x000590, "Member 'UAnimBP_Tolly_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_LayeredBoneBlend) == 0x000620, "Member 'UAnimBP_Tolly_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_StateResult_1) == 0x000710, "Member 'UAnimBP_Tolly_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_SequencePlayer) == 0x000730, "Member 'UAnimBP_Tolly_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_TwoWayBlend) == 0x000778, "Member 'UAnimBP_Tolly_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_PoseSnapshot) == 0x000840, "Member 'UAnimBP_Tolly_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_StateResult) == 0x0008D0, "Member 'UAnimBP_Tolly_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Tolly_C, AnimGraphNode_StateMachine) == 0x0008F0, "Member 'UAnimBP_Tolly_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature \ +static_assert(alignof(BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x000004, "Wrong alignment on BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x00000C, "Wrong size on BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, Intensity) == 0x000000, "Member 'BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, ReactionTag_0) == 0x000004, "Member 'BP_IAO_Gate_C_BndEvt__BP_Corrugated_Gate_HeraReaction_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::ReactionTag_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_IAO_Gate_C_BndEvt__BP_IAO_Gate_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_5_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate \ +static_assert(alignof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate) == 0x000008, "Wrong alignment on BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate"); \ +static_assert(sizeof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate) == 0x000228, "Wrong size on BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, EntryPoint) == 0x000000, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, Temp_delegate_Variable) == 0x000004, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_SwitchEnum_CmpSuccess) == 0x000014, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_SwitchEnum_CmpSuccess_1) == 0x000015, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_VLerp_ReturnValue) == 0x000018, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000030, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_ComponentBoundEvent_Intensity) == 0x000118, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_ComponentBoundEvent_Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_ComponentBoundEvent_ReactionTag) == 0x00011C, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_ComponentBoundEvent_ReactionTag' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000124, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_Event_InItemState) == 0x000130, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_CustomEvent_In_Item_State) == 0x000131, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_CustomEvent_In_Item_State' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000138, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, K2Node_ComponentBoundEvent_InItemState) == 0x000220, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000224, "Member 'BP_IAO_Gate_C_ExecuteUbergraph_BP_IAO_Gate::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_GetDebugString \ +static_assert(alignof(BP_IAO_Gate_C_GetDebugString) == 0x000008, "Wrong alignment on BP_IAO_Gate_C_GetDebugString"); \ +static_assert(sizeof(BP_IAO_Gate_C_GetDebugString) == 0x000010, "Wrong size on BP_IAO_Gate_C_GetDebugString"); \ +static_assert(offsetof(BP_IAO_Gate_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_IAO_Gate_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_GetItemState \ +static_assert(alignof(BP_IAO_Gate_C_GetItemState) == 0x000001, "Wrong alignment on BP_IAO_Gate_C_GetItemState"); \ +static_assert(sizeof(BP_IAO_Gate_C_GetItemState) == 0x000001, "Wrong size on BP_IAO_Gate_C_GetItemState"); \ +static_assert(offsetof(BP_IAO_Gate_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_IAO_Gate_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_SetItemState \ +static_assert(alignof(BP_IAO_Gate_C_SetItemState) == 0x000001, "Wrong alignment on BP_IAO_Gate_C_SetItemState"); \ +static_assert(sizeof(BP_IAO_Gate_C_SetItemState) == 0x000001, "Wrong size on BP_IAO_Gate_C_SetItemState"); \ +static_assert(offsetof(BP_IAO_Gate_C_SetItemState, InItemState) == 0x000000, "Member 'BP_IAO_Gate_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IAO_Gate_C_Update_Item_State \ +static_assert(alignof(BP_IAO_Gate_C_Update_Item_State) == 0x000001, "Wrong alignment on BP_IAO_Gate_C_Update_Item_State"); \ +static_assert(sizeof(BP_IAO_Gate_C_Update_Item_State) == 0x000001, "Wrong size on BP_IAO_Gate_C_Update_Item_State"); \ +static_assert(offsetof(BP_IAO_Gate_C_Update_Item_State, In_Item_State) == 0x000000, "Member 'BP_IAO_Gate_C_Update_Item_State::In_Item_State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_IAO_Gate_C \ +static_assert(alignof(ABP_IAO_Gate_C) == 0x000008, "Wrong alignment on ABP_IAO_Gate_C"); \ +static_assert(sizeof(ABP_IAO_Gate_C) == 0x000320, "Wrong size on ABP_IAO_Gate_C"); \ +static_assert(offsetof(ABP_IAO_Gate_C, UberGraphFrame) == 0x000298, "Member 'ABP_IAO_Gate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, WrestlerPersistenceComponentItemState) == 0x0002A0, "Member 'ABP_IAO_Gate_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, HeraReaction) == 0x0002A8, "Member 'ABP_IAO_Gate_C::HeraReaction' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, HeraAudio) == 0x0002B0, "Member 'ABP_IAO_Gate_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, SM_Gate_Fencing_Wheels_01) == 0x0002B8, "Member 'ABP_IAO_Gate_C::SM_Gate_Fencing_Wheels_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, DefaultSceneRoot) == 0x0002C0, "Member 'ABP_IAO_Gate_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Movement_Alpha_49CCB03F4251D79BC4461BB435CF28E5) == 0x0002C8, "Member 'ABP_IAO_Gate_C::Movement_Alpha_49CCB03F4251D79BC4461BB435CF28E5' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Movement__Direction_49CCB03F4251D79BC4461BB435CF28E5) == 0x0002CC, "Member 'ABP_IAO_Gate_C::Movement__Direction_49CCB03F4251D79BC4461BB435CF28E5' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Movement) == 0x0002D0, "Member 'ABP_IAO_Gate_C::Movement' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, A) == 0x0002D8, "Member 'ABP_IAO_Gate_C::A' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, End_Location) == 0x0002F0, "Member 'ABP_IAO_Gate_C::End_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, ReactionTag) == 0x000308, "Member 'ABP_IAO_Gate_C::ReactionTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Seconds) == 0x000310, "Member 'ABP_IAO_Gate_C::Seconds' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Item_State) == 0x000318, "Member 'ABP_IAO_Gate_C::Item_State' has a wrong offset!"); \ +static_assert(offsetof(ABP_IAO_Gate_C, Reloading) == 0x000319, "Member 'ABP_IAO_Gate_C::Reloading' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds \ +static_assert(alignof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds) == 0x000008, "Wrong alignment on CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds"); \ +static_assert(sizeof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds) == 0x000058, "Wrong size on CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, LevelSequenceDirector) == 0x000000, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::LevelSequenceDirector' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, __WorldContext) == 0x000008, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, TimeLeftSeconds) == 0x000010, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::TimeLeftSeconds' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_GetCurrentTime_ReturnValue) == 0x00001C, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_GetCurrentTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_Conv_QualifiedFrameTimeToSeconds_ReturnValue) == 0x00002C, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_Conv_QualifiedFrameTimeToSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_GetSequence_ReturnValue) == 0x000030, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_GetSequence_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_GetPlaybackEndSeconds_ReturnValue) == 0x000038, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_GetPlaybackEndSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000040, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'CinematicFunctionLibrary_C_GetSequenceTimeLeftSeconds::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CinematicFunctionLibrary_C_StartFade \ +static_assert(alignof(CinematicFunctionLibrary_C_StartFade) == 0x000008, "Wrong alignment on CinematicFunctionLibrary_C_StartFade"); \ +static_assert(sizeof(CinematicFunctionLibrary_C_StartFade) == 0x000068, "Wrong size on CinematicFunctionLibrary_C_StartFade"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, WorldContext) == 0x000000, "Member 'CinematicFunctionLibrary_C_StartFade::WorldContext' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, FadeDirection) == 0x000008, "Member 'CinematicFunctionLibrary_C_StartFade::FadeDirection' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, FadeDuration) == 0x000010, "Member 'CinematicFunctionLibrary_C_StartFade::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, FadeColour) == 0x000018, "Member 'CinematicFunctionLibrary_C_StartFade::FadeColour' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, bUpdateColour) == 0x000028, "Member 'CinematicFunctionLibrary_C_StartFade::bUpdateColour' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, __WorldContext) == 0x000030, "Member 'CinematicFunctionLibrary_C_StartFade::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_GetPlayerController_ReturnValue) == 0x000038, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000040, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000048, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, K2Node_SwitchEnum_CmpSuccess) == 0x000050, "Member 'CinematicFunctionLibrary_C_StartFade::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_GetFadeOverlayWidget_ReturnValue) == 0x000058, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_GetFadeOverlayWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CinematicFunctionLibrary_C_StartFade, CallFunc_ApplyFade_InFadeDuration_ImplicitCast) == 0x000064, "Member 'CinematicFunctionLibrary_C_StartFade::CallFunc_ApplyFade_InFadeDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCinematicFunctionLibrary_C \ +static_assert(alignof(UCinematicFunctionLibrary_C) == 0x000008, "Wrong alignment on UCinematicFunctionLibrary_C"); \ +static_assert(sizeof(UCinematicFunctionLibrary_C) == 0x000028, "Wrong size on UCinematicFunctionLibrary_C"); \ + +#define DUMPER7_ASSERTS_UWBP_WaypointDistance_C \ +static_assert(alignof(UWBP_WaypointDistance_C) == 0x000008, "Wrong alignment on UWBP_WaypointDistance_C"); \ +static_assert(sizeof(UWBP_WaypointDistance_C) == 0x0002C8, "Wrong size on UWBP_WaypointDistance_C"); \ +static_assert(offsetof(UWBP_WaypointDistance_C, DistanceText) == 0x0002C0, "Member 'UWBP_WaypointDistance_C::DistanceText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleNotificationBig_C \ +static_assert(alignof(UCommonTextStyleNotificationBig_C) == 0x000010, "Wrong alignment on UCommonTextStyleNotificationBig_C"); \ +static_assert(sizeof(UCommonTextStyleNotificationBig_C) == 0x0001B0, "Wrong size on UCommonTextStyleNotificationBig_C"); \ + +#define DUMPER7_ASSERTS_UWBP_Stealth_C \ +static_assert(alignof(UWBP_Stealth_C) == 0x000008, "Wrong alignment on UWBP_Stealth_C"); \ +static_assert(sizeof(UWBP_Stealth_C) == 0x0002C8, "Wrong size on UWBP_Stealth_C"); \ + +#define DUMPER7_ASSERTS_ShowTutorial_C_ExecuteUbergraph_ShowTutorial \ +static_assert(alignof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial) == 0x000008, "Wrong alignment on ShowTutorial_C_ExecuteUbergraph_ShowTutorial"); \ +static_assert(sizeof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial) == 0x000100, "Wrong size on ShowTutorial_C_ExecuteUbergraph_ShowTutorial"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, EntryPoint) == 0x000000, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_GetTutorialData_ReturnValue) == 0x000008, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_GetTutorialData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_IsValid_ReturnValue) == 0x0000A8, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_IsValid_ReturnValue_1) == 0x0000A9, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_ContainsItemNamed_ReturnValue) == 0x0000AA, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_ContainsItemNamed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_Event_InAutomata) == 0x0000B0, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_Event_InState) == 0x0000B8, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000D0, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_GetHeraHUD_ReturnValue) == 0x0000E0, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_GetHeraHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x0000E8, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_DynamicCast_AsWBP_Tutorial_Widget) == 0x0000F0, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_DynamicCast_AsWBP_Tutorial_Widget' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, K2Node_DynamicCast_bSuccess) == 0x0000F8, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ExecuteUbergraph_ShowTutorial, CallFunc_Delay_Duration_ImplicitCast) == 0x0000FC, "Member 'ShowTutorial_C_ExecuteUbergraph_ShowTutorial::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowTutorial_C_HideTutorialWidgetSlot \ +static_assert(alignof(ShowTutorial_C_HideTutorialWidgetSlot) == 0x000008, "Wrong alignment on ShowTutorial_C_HideTutorialWidgetSlot"); \ +static_assert(sizeof(ShowTutorial_C_HideTutorialWidgetSlot) == 0x000070, "Wrong size on ShowTutorial_C_HideTutorialWidgetSlot"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, SizeProperty) == 0x000000, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::SizeProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, TextProperty) == 0x000008, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::TextProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, TitleProperty) == 0x000010, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::TitleProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, WBP_TempText) == 0x000018, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::WBP_TempText' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, CallFunc_GetPlayerController_ReturnValue) == 0x000040, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, CallFunc_GetHeraHUD_ReturnValue) == 0x000050, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::CallFunc_GetHeraHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000058, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, K2Node_DynamicCast_AsWBP_Tutorial_Widget) == 0x000060, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::K2Node_DynamicCast_AsWBP_Tutorial_Widget' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_HideTutorialWidgetSlot, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'ShowTutorial_C_HideTutorialWidgetSlot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowTutorial_C_ReceiveExecute \ +static_assert(alignof(ShowTutorial_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowTutorial_C_ReceiveExecute"); \ +static_assert(sizeof(ShowTutorial_C_ReceiveExecute) == 0x000010, "Wrong size on ShowTutorial_C_ReceiveExecute"); \ +static_assert(offsetof(ShowTutorial_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowTutorial_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowTutorial_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowTutorial_C_ShowTutorialWidgetSlot \ +static_assert(alignof(ShowTutorial_C_ShowTutorialWidgetSlot) == 0x000008, "Wrong alignment on ShowTutorial_C_ShowTutorialWidgetSlot"); \ +static_assert(sizeof(ShowTutorial_C_ShowTutorialWidgetSlot) == 0x0000E0, "Wrong size on ShowTutorial_C_ShowTutorialWidgetSlot"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, NewParam) == 0x000000, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::NewParam' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, CallFunc_GetPlayerController_ReturnValue) == 0x0000A0, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, K2Node_CreateDelegate_OutputDelegate) == 0x0000A8, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, CallFunc_GetHeraHUD_ReturnValue) == 0x0000B8, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::CallFunc_GetHeraHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x0000C0, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, CallFunc_IsValid_ReturnValue) == 0x0000C8, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, K2Node_DynamicCast_AsWBP_Tutorial_Widget) == 0x0000D0, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::K2Node_DynamicCast_AsWBP_Tutorial_Widget' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowTutorial_C_ShowTutorialWidgetSlot, CallFunc_IsValid_ReturnValue_1) == 0x0000D9, "Member 'ShowTutorial_C_ShowTutorialWidgetSlot::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowTutorial_C \ +static_assert(alignof(UShowTutorial_C) == 0x000008, "Wrong alignment on UShowTutorial_C"); \ +static_assert(sizeof(UShowTutorial_C) == 0x000198, "Wrong size on UShowTutorial_C"); \ +static_assert(offsetof(UShowTutorial_C, UberGraphFrame) == 0x000158, "Member 'UShowTutorial_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, Time) == 0x000160, "Member 'UShowTutorial_C::Time' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, TutorialID) == 0x000168, "Member 'UShowTutorial_C::TutorialID' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, TutorialTrackingList) == 0x000178, "Member 'UShowTutorial_C::TutorialTrackingList' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, IsTutorialPlaying) == 0x000180, "Member 'UShowTutorial_C::IsTutorialPlaying' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, BlockForFeed) == 0x000188, "Member 'UShowTutorial_C::BlockForFeed' has a wrong offset!"); \ +static_assert(offsetof(UShowTutorial_C, TutorialActionCompleted) == 0x000190, "Member 'UShowTutorial_C::TutorialActionCompleted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_SpiritTouchActor_C_Touch \ +static_assert(alignof(BPI_SpiritTouchActor_C_Touch) == 0x000008, "Wrong alignment on BPI_SpiritTouchActor_C_Touch"); \ +static_assert(sizeof(BPI_SpiritTouchActor_C_Touch) == 0x000008, "Wrong size on BPI_SpiritTouchActor_C_Touch"); \ +static_assert(offsetof(BPI_SpiritTouchActor_C_Touch, SourceActor) == 0x000000, "Member 'BPI_SpiritTouchActor_C_Touch::SourceActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_SpiritTouchActor_C \ +static_assert(alignof(IBPI_SpiritTouchActor_C) == 0x000001, "Wrong alignment on IBPI_SpiritTouchActor_C"); \ +static_assert(sizeof(IBPI_SpiritTouchActor_C) == 0x000001, "Wrong size on IBPI_SpiritTouchActor_C"); \ + +#define DUMPER7_ASSERTS_BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox \ +static_assert(alignof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox) == 0x000008, "Wrong alignment on BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox"); \ +static_assert(sizeof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox) == 0x000330, "Wrong size on BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, EntryPoint) == 0x000000, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_bool_Variable) == 0x000004, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_struct_Variable) == 0x000008, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_struct_Variable_1) == 0x000028, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_bool_Variable_1) == 0x000048, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_struct_Variable_2) == 0x000050, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_struct_Variable_3) == 0x000070, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_int_Array_Index_Variable) == 0x000090, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_bool_Variable_2) == 0x000094, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_int_Loop_Counter_Variable) == 0x000098, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_GetOverlappingActors_OverlappingActors) == 0x0000A0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_Add_IntInt_ReturnValue) == 0x0000B0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_SpawnObject_ReturnValue) == 0x0000D0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_GetAIController_ReturnValue) == 0x0000D8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x0000E0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_DynamicCast_bSuccess) == 0x0000F0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_IsValid_ReturnValue) == 0x0000F1, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0000F8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, Temp_byte_Variable) == 0x000118, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_SwitchEnum_CmpSuccess) == 0x000119, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000120, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000138, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_Select_Default) == 0x000150, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_Select_Default_1) == 0x000170, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_Array_Add_ReturnValue) == 0x000190, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_Select_Default_2) == 0x000198, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_Array_Length_ReturnValue) == 0x0001B8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_Array_Get_Item) == 0x0001C0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_Less_IntInt_ReturnValue) == 0x0001C8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0001C9, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0001CA, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_LOS_check_CanSee) == 0x0001CB, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_LOS_check_CanSee' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x0001D0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0001F8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_MakeStruct_GameplayEventData) == 0x000210, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0002C0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, CallFunc_RotateAngleAxis_ReturnValue) == 0x0002D8, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::CallFunc_RotateAngleAxis_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x0002F0, "Member 'BP_hurtbox_C_ExecuteUbergraph_BP_hurtbox::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_hurtbox_C_LOS_check \ +static_assert(alignof(BP_hurtbox_C_LOS_check) == 0x000008, "Wrong alignment on BP_hurtbox_C_LOS_check"); \ +static_assert(sizeof(BP_hurtbox_C_LOS_check) == 0x000170, "Wrong size on BP_hurtbox_C_LOS_check"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, Target) == 0x000000, "Member 'BP_hurtbox_C_LOS_check::Target' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, IgnoreList) == 0x000008, "Member 'BP_hurtbox_C_LOS_check::IgnoreList' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CanSee) == 0x000018, "Member 'BP_hurtbox_C_LOS_check::CanSee' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000020, "Member 'BP_hurtbox_C_LOS_check::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x000038, "Member 'BP_hurtbox_C_LOS_check::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_GetActorEyesViewPoint_OutLocation_1) == 0x000050, "Member 'BP_hurtbox_C_LOS_check::CallFunc_GetActorEyesViewPoint_OutLocation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_GetActorEyesViewPoint_OutRotation_1) == 0x000068, "Member 'BP_hurtbox_C_LOS_check::CallFunc_GetActorEyesViewPoint_OutRotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_LineTraceSingle_OutHit) == 0x000080, "Member 'BP_hurtbox_C_LOS_check::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_LineTraceSingle_ReturnValue) == 0x000168, "Member 'BP_hurtbox_C_LOS_check::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_hurtbox_C_LOS_check, CallFunc_Not_PreBool_ReturnValue) == 0x000169, "Member 'BP_hurtbox_C_LOS_check::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_hurtbox_C \ +static_assert(alignof(ABP_hurtbox_C) == 0x000008, "Wrong alignment on ABP_hurtbox_C"); \ +static_assert(sizeof(ABP_hurtbox_C) == 0x0002F8, "Wrong size on ABP_hurtbox_C"); \ +static_assert(offsetof(ABP_hurtbox_C, UberGraphFrame) == 0x000298, "Member 'ABP_hurtbox_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Box) == 0x0002A0, "Member 'ABP_hurtbox_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Extent) == 0x0002A8, "Member 'ABP_hurtbox_C::Extent' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Attack_Tag) == 0x0002C0, "Member 'ABP_hurtbox_C::Attack_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Attack_Angle_Offset) == 0x0002C8, "Member 'ABP_hurtbox_C::Attack_Angle_Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Vertical_Knock_Back) == 0x0002D0, "Member 'ABP_hurtbox_C::Vertical_Knock_Back' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Horizontal_Knockback) == 0x0002D8, "Member 'ABP_hurtbox_C::Horizontal_Knockback' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Debug) == 0x0002E0, "Member 'ABP_hurtbox_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Counterable) == 0x0002E1, "Member 'ABP_hurtbox_C::Counterable' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, UsesWeapon) == 0x0002E2, "Member 'ABP_hurtbox_C::UsesWeapon' has a wrong offset!"); \ +static_assert(offsetof(ABP_hurtbox_C, Hits) == 0x0002E8, "Member 'ABP_hurtbox_C::Hits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_sniper_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_Bullet_sniper_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_Bullet_sniper_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_sniper_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_Bullet_sniper_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_Bullet_sniper_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper \ +static_assert(alignof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper) == 0x000008, "Wrong alignment on WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper) == 0x000350, "Wrong size on WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, K2Node_Event_DeltaSeconds) == 0x000020, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_Vector_Distance_ReturnValue) == 0x000040, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000048, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakVector_X) == 0x000050, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakVector_Y) == 0x000058, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakVector_Z) == 0x000060, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_FClamp_ReturnValue) == 0x000068, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_MakeVector_ReturnValue) == 0x000070, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_MakeVector_ReturnValue_1) == 0x000088, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, K2Node_Event_OutHit) == 0x0000A0, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::K2Node_Event_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_bBlockingHit) == 0x000188, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_bInitialOverlap) == 0x000189, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_Time) == 0x00018C, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_Distance) == 0x000190, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_Location) == 0x000198, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_ImpactPoint) == 0x0001B0, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_Normal) == 0x0001C8, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_ImpactNormal) == 0x0001E0, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_PhysMat) == 0x0001F8, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_HitActor) == 0x000200, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_HitComponent) == 0x000208, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_HitBoneName) == 0x000210, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_BoneName) == 0x000218, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_HitItem) == 0x000220, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_ElementIndex) == 0x000224, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_FaceIndex) == 0x000228, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_TraceStart) == 0x000230, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_BreakHitResult_TraceEnd) == 0x000248, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000260, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000348, "Member 'WrestlerProjectile_Bullet_sniper_C_ExecuteUbergraph_WrestlerProjectile_Bullet_sniper::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_Bullet_sniper_C_ReceiveTick \ +static_assert(alignof(WrestlerProjectile_Bullet_sniper_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerProjectile_Bullet_sniper_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerProjectile_Bullet_sniper_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerProjectile_Bullet_sniper_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerProjectile_Bullet_sniper_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerProjectile_Bullet_sniper_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_Bullet_sniper_C \ +static_assert(alignof(AWrestlerProjectile_Bullet_sniper_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_Bullet_sniper_C"); \ +static_assert(sizeof(AWrestlerProjectile_Bullet_sniper_C) == 0x000428, "Wrong size on AWrestlerProjectile_Bullet_sniper_C"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_sniper_C, UberGraphFrame_WrestlerProjectile_Bullet_sniper_C) == 0x000410, "Member 'AWrestlerProjectile_Bullet_sniper_C::UberGraphFrame_WrestlerProjectile_Bullet_sniper_C' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_sniper_C, NS_Bullet_trail) == 0x000418, "Member 'AWrestlerProjectile_Bullet_sniper_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_Bullet_sniper_C, SM_Tracer) == 0x000420, "Member 'AWrestlerProjectile_Bullet_sniper_C::SM_Tracer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Hurtbox_C_Received_Notify \ +static_assert(alignof(AN_Hurtbox_C_Received_Notify) == 0x000010, "Wrong alignment on AN_Hurtbox_C_Received_Notify"); \ +static_assert(sizeof(AN_Hurtbox_C_Received_Notify) == 0x0001C0, "Wrong size on AN_Hurtbox_C_Received_Notify"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, MeshComp) == 0x000000, "Member 'AN_Hurtbox_C_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, Animation) == 0x000008, "Member 'AN_Hurtbox_C_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, EventReference) == 0x000010, "Member 'AN_Hurtbox_C_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, ReturnValue) == 0x000040, "Member 'AN_Hurtbox_C_Received_Notify::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, K2Node_DynamicCast_AsCharacter) == 0x000050, "Member 'AN_Hurtbox_C_Received_Notify::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'AN_Hurtbox_C_Received_Notify::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000060, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_MakeTransform_ReturnValue) == 0x0000C0, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_ComposeTransforms_ReturnValue) == 0x000120, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_ComposeTransforms_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_FClamp_ReturnValue) == 0x000180, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000188, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_FinishSpawningActor_ReturnValue) == 0x000190, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_GetGameState_ReturnValue) == 0x000198, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_GetGameState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_IsValid_ReturnValue) == 0x0001A0, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_SetDoublePropertyByName_Value_ImplicitCast) == 0x0001A8, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_SetDoublePropertyByName_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_DrawDebugBox_Duration_ImplicitCast) == 0x0001B0, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_DrawDebugBox_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AN_Hurtbox_C_Received_Notify, CallFunc_DrawDebugBox_Duration_ImplicitCast_1) == 0x0001B4, "Member 'AN_Hurtbox_C_Received_Notify::CallFunc_DrawDebugBox_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Hurtbox_C \ +static_assert(alignof(UAN_Hurtbox_C) == 0x000008, "Wrong alignment on UAN_Hurtbox_C"); \ +static_assert(sizeof(UAN_Hurtbox_C) == 0x0000B0, "Wrong size on UAN_Hurtbox_C"); \ +static_assert(offsetof(UAN_Hurtbox_C, Offset) == 0x000038, "Member 'UAN_Hurtbox_C::Offset' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Rotation) == 0x000050, "Member 'UAN_Hurtbox_C::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Extent) == 0x000068, "Member 'UAN_Hurtbox_C::Extent' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Previewtime) == 0x000080, "Member 'UAN_Hurtbox_C::Previewtime' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Attack_Tag) == 0x000088, "Member 'UAN_Hurtbox_C::Attack_Tag' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Attack_Angle_Offset) == 0x000090, "Member 'UAN_Hurtbox_C::Attack_Angle_Offset' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Counterable) == 0x000094, "Member 'UAN_Hurtbox_C::Counterable' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Vertical_Knock_Back) == 0x000098, "Member 'UAN_Hurtbox_C::Vertical_Knock_Back' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, Horizontal_Knockback) == 0x0000A0, "Member 'UAN_Hurtbox_C::Horizontal_Knockback' has a wrong offset!"); \ +static_assert(offsetof(UAN_Hurtbox_C, UsesWeapon) == 0x0000A8, "Member 'UAN_Hurtbox_C::UsesWeapon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag \ +static_assert(alignof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag) == 0x000008, "Wrong alignment on GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag"); \ +static_assert(sizeof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag) == 0x000070, "Wrong size on GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, EntryPoint) == 0x000000, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, K2Node_Event_InAutomata) == 0x000010, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, K2Node_Event_InState) == 0x000018, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Array_Get_Item) == 0x000020, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_AddPointsForRegisteredEvent_ReturnValue) == 0x00002C, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_AddPointsForRegisteredEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Less_IntInt_ReturnValue) == 0x00002D, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_IsGameplayTagValid_ReturnValue) == 0x00002E, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_GetTagName_ReturnValue) == 0x000030, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_GetTagName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Conv_NameToString_ReturnValue) == 0x000038, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_GetXPComponent_ReturnValue) == 0x000048, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_GetXPComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_SelectString_ReturnValue) == 0x000050, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag, CallFunc_Concat_StrStr_ReturnValue) == 0x000060, "Member 'GrantXPOrAPFromEventWithTag_C_ExecuteUbergraph_GrantXPOrAPFromEventWithTag::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GrantXPOrAPFromEventWithTag_C_ReceiveExecute \ +static_assert(alignof(GrantXPOrAPFromEventWithTag_C_ReceiveExecute) == 0x000008, "Wrong alignment on GrantXPOrAPFromEventWithTag_C_ReceiveExecute"); \ +static_assert(sizeof(GrantXPOrAPFromEventWithTag_C_ReceiveExecute) == 0x000010, "Wrong size on GrantXPOrAPFromEventWithTag_C_ReceiveExecute"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'GrantXPOrAPFromEventWithTag_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromEventWithTag_C_ReceiveExecute, InState) == 0x000008, "Member 'GrantXPOrAPFromEventWithTag_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGrantXPOrAPFromEventWithTag_C \ +static_assert(alignof(UGrantXPOrAPFromEventWithTag_C) == 0x000008, "Wrong alignment on UGrantXPOrAPFromEventWithTag_C"); \ +static_assert(sizeof(UGrantXPOrAPFromEventWithTag_C) == 0x0000B0, "Wrong size on UGrantXPOrAPFromEventWithTag_C"); \ +static_assert(offsetof(UGrantXPOrAPFromEventWithTag_C, UberGraphFrame) == 0x000088, "Member 'UGrantXPOrAPFromEventWithTag_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromEventWithTag_C, EventTags) == 0x000090, "Member 'UGrantXPOrAPFromEventWithTag_C::EventTags' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromEventWithTag_C, OvcerrideXPPooling) == 0x0000A0, "Member 'UGrantXPOrAPFromEventWithTag_C::OvcerrideXPPooling' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromEventWithTag_C, OverrideNotifTimer) == 0x0000A1, "Member 'UGrantXPOrAPFromEventWithTag_C::OverrideNotifTimer' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromEventWithTag_C, InNewTimer) == 0x0000A8, "Member 'UGrantXPOrAPFromEventWithTag_C::InNewTimer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_KickBlocker_C \ +static_assert(alignof(UGE_KickBlocker_C) == 0x000008, "Wrong alignment on UGE_KickBlocker_C"); \ +static_assert(sizeof(UGE_KickBlocker_C) == 0x000A70, "Wrong size on UGE_KickBlocker_C"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_ApplyDamageHud \ +static_assert(alignof(WBP_HitReactionContainer_C_ApplyDamageHud) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_ApplyDamageHud"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_ApplyDamageHud) == 0x000030, "Wrong size on WBP_HitReactionContainer_C_ApplyDamageHud"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ApplyDamageHud, Instigator) == 0x000000, "Member 'WBP_HitReactionContainer_C_ApplyDamageHud::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ApplyDamageHud, Damage) == 0x000008, "Member 'WBP_HitReactionContainer_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ApplyDamageHud, Direction) == 0x000010, "Member 'WBP_HitReactionContainer_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ApplyDamageHud, Tag) == 0x000028, "Member 'WBP_HitReactionContainer_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget \ +static_assert(alignof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget) == 0x000058, "Wrong size on WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget, Instigator) == 0x000000, "Member 'WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget, Damage) == 0x000008, "Member 'WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget, Direction) == 0x000010, "Member 'WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget, Tag) == 0x000028, "Member 'WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget::Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget, Asset_Class) == 0x000030, "Member 'WBP_HitReactionContainer_C_Async_Load_New_Hit_Reaction_Widget::Asset_Class' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_CreateNewHitReactionWidget \ +static_assert(alignof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_CreateNewHitReactionWidget"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget) == 0x0000E0, "Wrong size on WBP_HitReactionContainer_C_CreateNewHitReactionWidget"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, Instigator) == 0x000000, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, Damage) == 0x000008, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, Direction) == 0x000010, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, Tag) == 0x000028, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, NewHitReaction) == 0x000030, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::NewHitReaction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_GetWidgetFromTag_Success) == 0x000038, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_GetWidgetFromTag_Success' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_GetWidgetFromTag_Value) == 0x000040, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_GetWidgetFromTag_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_Conv_SoftClassReferenceToClass_ReturnValue) == 0x000068, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_Conv_SoftClassReferenceToClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, K2Node_ClassDynamicCast_AsHit_Reaction) == 0x000078, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::K2Node_ClassDynamicCast_AsHit_Reaction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, K2Node_ClassDynamicCast_bSuccess) == 0x000080, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_IsValidClass_ReturnValue) == 0x000081, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000088, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, K2Node_DynamicCast_AsBPI_Hud_Actions) == 0x0000B0, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::K2Node_DynamicCast_AsBPI_Hud_Actions' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, K2Node_DynamicCast_bSuccess) == 0x0000C0, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_GetOwningPlayer_ReturnValue) == 0x0000C8, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_AddChildToOverlay_ReturnValue) == 0x0000D0, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_AddChildToOverlay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_CreateNewHitReactionWidget, CallFunc_Create_ReturnValue) == 0x0000D8, "Member 'WBP_HitReactionContainer_C_CreateNewHitReactionWidget::CallFunc_Create_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer \ +static_assert(alignof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer) == 0x0001E8, "Wrong size on WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, EntryPoint) == 0x000000, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Instigator) == 0x000008, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Damage) == 0x000010, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Direction) == 0x000018, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Tag) == 0x000030, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Asset_Class) == 0x000038, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Asset_Class' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_int_Array_Index_Variable) == 0x000060, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_int_Loop_Counter_Variable) == 0x000064, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Add_IntInt_ReturnValue) == 0x000068, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_int_Array_Index_Variable_1) == 0x00006C, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Keys_Keys) == 0x000070, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Array_Get_Item) == 0x000080, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Array_Length_ReturnValue) == 0x0000A8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Remove_ReturnValue) == 0x0000AC, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Remove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Find_Value) == 0x0000B0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Find_ReturnValue) == 0x0000B8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_class_Variable) == 0x0000C0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_IsPlayingAnimation_ReturnValue) == 0x0000C8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_IsPlayingAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Instigator_1) == 0x0000D0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Instigator_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Damage_1) == 0x0000D8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Damage_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Direction_1) == 0x0000E0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Direction_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_Event_Tag_1) == 0x0000F8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_Event_Tag_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000100, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_CustomEvent_Loaded) == 0x000128, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Find_Value_1) == 0x000130, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Find_ReturnValue_1) == 0x000138, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_DynamicCast_AsBPI_Hud_Actions) == 0x000140, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_DynamicCast_AsBPI_Hud_Actions' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_DynamicCast_bSuccess) == 0x000150, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_WidgetMatchesTag_Matches) == 0x000151, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_WidgetMatchesTag_Matches' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_class_Variable_1) == 0x000158, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_CreateDelegate_OutputDelegate) == 0x000160, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_ClassDynamicCast_AsUser_Widget) == 0x000170, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_ClassDynamicCast_AsUser_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_ClassDynamicCast_bSuccess) == 0x000178, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_CustomEvent_Loaded_1) == 0x000180, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Map_Values_Values) == 0x000188, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, K2Node_CreateDelegate_OutputDelegate_1) == 0x000198, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Array_Get_Item_1) == 0x0001A8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Array_Length_ReturnValue_1) == 0x0001D0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Less_IntInt_ReturnValue) == 0x0001D4, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, Temp_int_Loop_Counter_Variable_1) == 0x0001D8, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Less_IntInt_ReturnValue_1) == 0x0001DC, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer, CallFunc_Add_IntInt_ReturnValue_1) == 0x0001E0, "Member 'WBP_HitReactionContainer_C_ExecuteUbergraph_WBP_HitReactionContainer::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_GetWidgetFromTag \ +static_assert(alignof(WBP_HitReactionContainer_C_GetWidgetFromTag) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_GetWidgetFromTag"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_GetWidgetFromTag) == 0x0000A8, "Wrong size on WBP_HitReactionContainer_C_GetWidgetFromTag"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, Key) == 0x000000, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::Key' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, Success) == 0x000008, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::Success' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, Value) == 0x000010, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, CallFunc_Map_Values_Values) == 0x000038, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, CallFunc_Map_Find_Value) == 0x000048, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, CallFunc_Map_Find_ReturnValue) == 0x000070, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, CallFunc_Array_Get_Item) == 0x000078, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_GetWidgetFromTag, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x0000A0, "Member 'WBP_HitReactionContainer_C_GetWidgetFromTag::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_KickoffInactivityCheck \ +static_assert(alignof(WBP_HitReactionContainer_C_KickoffInactivityCheck) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_KickoffInactivityCheck"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_KickoffInactivityCheck) == 0x000020, "Wrong size on WBP_HitReactionContainer_C_KickoffInactivityCheck"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_KickoffInactivityCheck, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'WBP_HitReactionContainer_C_KickoffInactivityCheck::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_KickoffInactivityCheck, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000010, "Member 'WBP_HitReactionContainer_C_KickoffInactivityCheck::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_KickoffInactivityCheck, CallFunc_K2_SetTimerDelegate_Time_ImplicitCast) == 0x000018, "Member 'WBP_HitReactionContainer_C_KickoffInactivityCheck::CallFunc_K2_SetTimerDelegate_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457 \ +static_assert(alignof(WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457) == 0x000008, "Wrong size on WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457, Loaded) == 0x000000, "Member 'WBP_HitReactionContainer_C_OnLoaded_1E8EE65B4654214D8530398DB2397457::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773 \ +static_assert(alignof(WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773) == 0x000008, "Wrong size on WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773, Loaded) == 0x000000, "Member 'WBP_HitReactionContainer_C_OnLoaded_253CFD1646C5BB502180B79860272773::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HitReactionContainer_C_WidgetMatchesTag \ +static_assert(alignof(WBP_HitReactionContainer_C_WidgetMatchesTag) == 0x000008, "Wrong alignment on WBP_HitReactionContainer_C_WidgetMatchesTag"); \ +static_assert(sizeof(WBP_HitReactionContainer_C_WidgetMatchesTag) == 0x000058, "Wrong size on WBP_HitReactionContainer_C_WidgetMatchesTag"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, Key) == 0x000000, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::Key' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, NewParam) == 0x000008, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::NewParam' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, Matches) == 0x000010, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::Matches' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, CallFunc_GetWidgetFromTag_Success) == 0x000011, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::CallFunc_GetWidgetFromTag_Success' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, CallFunc_GetWidgetFromTag_Value) == 0x000018, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::CallFunc_GetWidgetFromTag_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, CallFunc_Conv_SoftClassReferenceToClass_ReturnValue) == 0x000040, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::CallFunc_Conv_SoftClassReferenceToClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, K2Node_ClassDynamicCast_AsHit_Reaction) == 0x000048, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::K2Node_ClassDynamicCast_AsHit_Reaction' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, K2Node_ClassDynamicCast_bSuccess) == 0x000050, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HitReactionContainer_C_WidgetMatchesTag, CallFunc_ObjectIsA_ReturnValue) == 0x000051, "Member 'WBP_HitReactionContainer_C_WidgetMatchesTag::CallFunc_ObjectIsA_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_HitReactionContainer_C \ +static_assert(alignof(UWBP_HitReactionContainer_C) == 0x000008, "Wrong alignment on UWBP_HitReactionContainer_C"); \ +static_assert(sizeof(UWBP_HitReactionContainer_C) == 0x0003C0, "Wrong size on UWBP_HitReactionContainer_C"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_HitReactionContainer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, MainOverlay) == 0x0002D0, "Member 'UWBP_HitReactionContainer_C::MainOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, RetainerBox_0) == 0x0002D8, "Member 'UWBP_HitReactionContainer_C::RetainerBox_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, HitReactionWidgetClass) == 0x0002E0, "Member 'UWBP_HitReactionContainer_C::HitReactionWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, LoadedHitReactionWidgetClass) == 0x000308, "Member 'UWBP_HitReactionContainer_C::LoadedHitReactionWidgetClass' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, HitReactionWidgets) == 0x000310, "Member 'UWBP_HitReactionContainer_C::HitReactionWidgets' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, InactivityCheckTimer) == 0x000360, "Member 'UWBP_HitReactionContainer_C::InactivityCheckTimer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, InactivityCheckTime) == 0x000368, "Member 'UWBP_HitReactionContainer_C::InactivityCheckTime' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HitReactionContainer_C, ReactionWidgets) == 0x000370, "Member 'UWBP_HitReactionContainer_C::ReactionWidgets' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_EngagedNoticeability_C \ +static_assert(alignof(UGE_EngagedNoticeability_C) == 0x000008, "Wrong alignment on UGE_EngagedNoticeability_C"); \ +static_assert(sizeof(UGE_EngagedNoticeability_C) == 0x000A70, "Wrong size on UGE_EngagedNoticeability_C"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_Padlock_C_BndEvt__BP_Padlock_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_4_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_EvaluateMasqueradeState \ +static_assert(alignof(BP_Padlock_C_EvaluateMasqueradeState) == 0x000001, "Wrong alignment on BP_Padlock_C_EvaluateMasqueradeState"); \ +static_assert(sizeof(BP_Padlock_C_EvaluateMasqueradeState) == 0x000001, "Wrong size on BP_Padlock_C_EvaluateMasqueradeState"); \ +static_assert(offsetof(BP_Padlock_C_EvaluateMasqueradeState, NewState) == 0x000000, "Member 'BP_Padlock_C_EvaluateMasqueradeState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_ExecuteUbergraph_BP_Padlock \ +static_assert(alignof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock) == 0x000008, "Wrong alignment on BP_Padlock_C_ExecuteUbergraph_BP_Padlock"); \ +static_assert(sizeof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock) == 0x0000A0, "Wrong size on BP_Padlock_C_ExecuteUbergraph_BP_Padlock"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, EntryPoint) == 0x000000, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_GetMasqueradeState_ReturnValue) == 0x000010, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_CustomEvent_SeqPlayer) == 0x000018, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_CustomEvent_SeqPlayer' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character) == 0x000028, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_ComponentBoundEvent_InItemState) == 0x000032, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_IsValid_ReturnValue_1) == 0x000033, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_SetInteractionSide_Interaction) == 0x000038, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_SetInteractionSide_Interaction' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_CreateDelegate_OutputDelegate) == 0x000040, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_IsValid_ReturnValue_2) == 0x000050, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_SetItemState_self_CastInput) == 0x000058, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_SetItemState_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_CustomEvent_PrevState) == 0x000068, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_CustomEvent_NewState_1) == 0x000069, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_CustomEvent_NewState_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_CustomEvent_NewState) == 0x00006A, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_SwitchEnum_CmpSuccess) == 0x00006B, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000070, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_DynamicCast_AsActor) == 0x000078, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_IsValid_ReturnValue_3) == 0x000081, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_GetOverlappingActors_OverlappingActors) == 0x000088, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_Array_Length_ReturnValue) == 0x000098, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_ExecuteUbergraph_BP_Padlock, CallFunc_Greater_IntInt_ReturnValue) == 0x00009C, "Member 'BP_Padlock_C_ExecuteUbergraph_BP_Padlock::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_HandlePersistance \ +static_assert(alignof(BP_Padlock_C_HandlePersistance) == 0x000008, "Wrong alignment on BP_Padlock_C_HandlePersistance"); \ +static_assert(sizeof(BP_Padlock_C_HandlePersistance) == 0x000028, "Wrong size on BP_Padlock_C_HandlePersistance"); \ +static_assert(offsetof(BP_Padlock_C_HandlePersistance, State) == 0x000000, "Member 'BP_Padlock_C_HandlePersistance::State' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_HandlePersistance, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'BP_Padlock_C_HandlePersistance::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_HandlePersistance, CallFunc_IsValid_ReturnValue) == 0x000002, "Member 'BP_Padlock_C_HandlePersistance::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_HandlePersistance, CallFunc_SetItemState_self_CastInput) == 0x000008, "Member 'BP_Padlock_C_HandlePersistance::CallFunc_SetItemState_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_HandlePersistance, CallFunc_SetItemState_self_CastInput_1) == 0x000018, "Member 'BP_Padlock_C_HandlePersistance::CallFunc_SetItemState_self_CastInput_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_MasqueradeStateChanged \ +static_assert(alignof(BP_Padlock_C_MasqueradeStateChanged) == 0x000001, "Wrong alignment on BP_Padlock_C_MasqueradeStateChanged"); \ +static_assert(sizeof(BP_Padlock_C_MasqueradeStateChanged) == 0x000002, "Wrong size on BP_Padlock_C_MasqueradeStateChanged"); \ +static_assert(offsetof(BP_Padlock_C_MasqueradeStateChanged, PrevState) == 0x000000, "Member 'BP_Padlock_C_MasqueradeStateChanged::PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_MasqueradeStateChanged, NewState) == 0x000001, "Member 'BP_Padlock_C_MasqueradeStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_SetInteractionSide \ +static_assert(alignof(BP_Padlock_C_SetInteractionSide) == 0x000008, "Wrong alignment on BP_Padlock_C_SetInteractionSide"); \ +static_assert(sizeof(BP_Padlock_C_SetInteractionSide) == 0x000010, "Wrong size on BP_Padlock_C_SetInteractionSide"); \ +static_assert(offsetof(BP_Padlock_C_SetInteractionSide, Interaction_0) == 0x000000, "Member 'BP_Padlock_C_SetInteractionSide::Interaction_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Padlock_C_SetInteractionSide, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Padlock_C_SetInteractionSide::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_UnlockAndOpen \ +static_assert(alignof(BP_Padlock_C_UnlockAndOpen) == 0x000008, "Wrong alignment on BP_Padlock_C_UnlockAndOpen"); \ +static_assert(sizeof(BP_Padlock_C_UnlockAndOpen) == 0x000008, "Wrong size on BP_Padlock_C_UnlockAndOpen"); \ +static_assert(offsetof(BP_Padlock_C_UnlockAndOpen, SeqPlayer) == 0x000000, "Member 'BP_Padlock_C_UnlockAndOpen::SeqPlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Padlock_C_UserConstructionScript \ +static_assert(alignof(BP_Padlock_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_Padlock_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Padlock_C_UserConstructionScript) == 0x000001, "Wrong size on BP_Padlock_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Padlock_C_UserConstructionScript, CallFunc_DoesImplementInterface_ReturnValue) == 0x000000, "Member 'BP_Padlock_C_UserConstructionScript::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Padlock_C \ +static_assert(alignof(ABP_Padlock_C) == 0x000008, "Wrong alignment on ABP_Padlock_C"); \ +static_assert(sizeof(ABP_Padlock_C) == 0x000370, "Wrong size on ABP_Padlock_C"); \ +static_assert(offsetof(ABP_Padlock_C, UberGraphFrame_BP_Padlock_C) == 0x000328, "Member 'ABP_Padlock_C::UberGraphFrame_BP_Padlock_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, HeraPersistenceComponentHidden) == 0x000330, "Member 'ABP_Padlock_C::HeraPersistenceComponentHidden' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, WrestlerPersistenceComponentItemState) == 0x000338, "Member 'ABP_Padlock_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, DestroyInteraction) == 0x000340, "Member 'ABP_Padlock_C::DestroyInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, WrestlerInteractionPoint) == 0x000348, "Member 'ABP_Padlock_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, SkeletalMesh) == 0x000350, "Member 'ABP_Padlock_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, Locked_Interactable) == 0x000358, "Member 'ABP_Padlock_C::Locked_Interactable' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, Interaction) == 0x000360, "Member 'ABP_Padlock_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, isfront) == 0x000368, "Member 'ABP_Padlock_C::isfront' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, SetDoorInactiveOnBeginPlay) == 0x000369, "Member 'ABP_Padlock_C::SetDoorInactiveOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(ABP_Padlock_C, MasqueradeLock) == 0x00036A, "Member 'ABP_Padlock_C::MasqueradeLock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_VampiricVision_Active_C \ +static_assert(alignof(UGE_VampiricVision_Active_C) == 0x000008, "Wrong alignment on UGE_VampiricVision_Active_C"); \ +static_assert(sizeof(UGE_VampiricVision_Active_C) == 0x000A70, "Wrong size on UGE_VampiricVision_Active_C"); \ + +#define DUMPER7_ASSERTS_BP_ElixirHealth_C_CanPull \ +static_assert(alignof(BP_ElixirHealth_C_CanPull) == 0x000001, "Wrong alignment on BP_ElixirHealth_C_CanPull"); \ +static_assert(sizeof(BP_ElixirHealth_C_CanPull) == 0x000001, "Wrong size on BP_ElixirHealth_C_CanPull"); \ +static_assert(offsetof(BP_ElixirHealth_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_ElixirHealth_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth \ +static_assert(alignof(BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth) == 0x000004, "Wrong alignment on BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth"); \ +static_assert(sizeof(BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth) == 0x000008, "Wrong size on BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth"); \ +static_assert(offsetof(BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth, EntryPoint) == 0x000000, "Member 'BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_ElixirHealth_C_ExecuteUbergraph_BP_ElixirHealth::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ElixirHealth_C \ +static_assert(alignof(ABP_ElixirHealth_C) == 0x000008, "Wrong alignment on ABP_ElixirHealth_C"); \ +static_assert(sizeof(ABP_ElixirHealth_C) == 0x0003F0, "Wrong size on ABP_ElixirHealth_C"); \ +static_assert(offsetof(ABP_ElixirHealth_C, UberGraphFrame_BP_ElixirHealth_C) == 0x0003E8, "Member 'ABP_ElixirHealth_C::UberGraphFrame_BP_ElixirHealth_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_FullHealth_C \ +static_assert(alignof(UGE_FullHealth_C) == 0x000008, "Wrong alignment on UGE_FullHealth_C"); \ +static_assert(sizeof(UGE_FullHealth_C) == 0x000A70, "Wrong size on UGE_FullHealth_C"); \ + +#define DUMPER7_ASSERTS_WBP_GreedAnim_C_PlayGreedAnim \ +static_assert(alignof(WBP_GreedAnim_C_PlayGreedAnim) == 0x000008, "Wrong alignment on WBP_GreedAnim_C_PlayGreedAnim"); \ +static_assert(sizeof(WBP_GreedAnim_C_PlayGreedAnim) == 0x000008, "Wrong size on WBP_GreedAnim_C_PlayGreedAnim"); \ +static_assert(offsetof(WBP_GreedAnim_C_PlayGreedAnim, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_GreedAnim_C_PlayGreedAnim::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_GreedAnim_C \ +static_assert(alignof(UWBP_GreedAnim_C) == 0x000008, "Wrong alignment on UWBP_GreedAnim_C"); \ +static_assert(sizeof(UWBP_GreedAnim_C) == 0x000348, "Wrong size on UWBP_GreedAnim_C"); \ +static_assert(offsetof(UWBP_GreedAnim_C, GreedBuff) == 0x000330, "Member 'UWBP_GreedAnim_C::GreedBuff' has a wrong offset!"); \ +static_assert(offsetof(UWBP_GreedAnim_C, circleshine) == 0x000338, "Member 'UWBP_GreedAnim_C::circleshine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_GreedAnim_C, GreedPerk) == 0x000340, "Member 'UWBP_GreedAnim_C::GreedPerk' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_WrestlerMotionBlurTimeScale_C \ +static_assert(alignof(UCM_WrestlerMotionBlurTimeScale_C) == 0x000008, "Wrong alignment on UCM_WrestlerMotionBlurTimeScale_C"); \ +static_assert(sizeof(UCM_WrestlerMotionBlurTimeScale_C) == 0x000050, "Wrong size on UCM_WrestlerMotionBlurTimeScale_C"); \ + +#define DUMPER7_ASSERTS_UGE_ElixirHealthRestore_C \ +static_assert(alignof(UGE_ElixirHealthRestore_C) == 0x000008, "Wrong alignment on UGE_ElixirHealthRestore_C"); \ +static_assert(sizeof(UGE_ElixirHealthRestore_C) == 0x000A70, "Wrong size on UGE_ElixirHealthRestore_C"); \ + +#define DUMPER7_ASSERTS_WBP_NotesPopUp_C_BP_OnHandleConfirmAction \ +static_assert(alignof(WBP_NotesPopUp_C_BP_OnHandleConfirmAction) == 0x000001, "Wrong alignment on WBP_NotesPopUp_C_BP_OnHandleConfirmAction"); \ +static_assert(sizeof(WBP_NotesPopUp_C_BP_OnHandleConfirmAction) == 0x000001, "Wrong size on WBP_NotesPopUp_C_BP_OnHandleConfirmAction"); \ +static_assert(offsetof(WBP_NotesPopUp_C_BP_OnHandleConfirmAction, ReturnValue) == 0x000000, "Member 'WBP_NotesPopUp_C_BP_OnHandleConfirmAction::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp \ +static_assert(alignof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp) == 0x000008, "Wrong alignment on WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp"); \ +static_assert(sizeof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp) == 0x000018, "Wrong size on WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp"); \ +static_assert(offsetof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp, EntryPoint) == 0x000000, "Member 'WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000008, "Member 'WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp, CallFunc_GetCurrentInputType_ReturnValue) == 0x000010, "Member 'WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp, K2Node_Event_InCurrentInputType) == 0x000011, "Member 'WBP_NotesPopUp_C_ExecuteUbergraph_WBP_NotesPopUp::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotesPopUp_C_OnInputChanged \ +static_assert(alignof(WBP_NotesPopUp_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_NotesPopUp_C_OnInputChanged"); \ +static_assert(sizeof(WBP_NotesPopUp_C_OnInputChanged) == 0x000001, "Wrong size on WBP_NotesPopUp_C_OnInputChanged"); \ +static_assert(offsetof(WBP_NotesPopUp_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_NotesPopUp_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotesPopUp_C_SetShortcutIcon \ +static_assert(alignof(WBP_NotesPopUp_C_SetShortcutIcon) == 0x000008, "Wrong alignment on WBP_NotesPopUp_C_SetShortcutIcon"); \ +static_assert(sizeof(WBP_NotesPopUp_C_SetShortcutIcon) == 0x000020, "Wrong size on WBP_NotesPopUp_C_SetShortcutIcon"); \ +static_assert(offsetof(WBP_NotesPopUp_C_SetShortcutIcon, NewParam) == 0x000000, "Member 'WBP_NotesPopUp_C_SetShortcutIcon::NewParam' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_SetShortcutIcon, CallFunc_Contains_ReturnValue) == 0x000001, "Member 'WBP_NotesPopUp_C_SetShortcutIcon::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_SetShortcutIcon, K2Node_SwitchEnum_CmpSuccess) == 0x000002, "Member 'WBP_NotesPopUp_C_SetShortcutIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_SetShortcutIcon, CallFunc_GetPlatformName_ReturnValue) == 0x000008, "Member 'WBP_NotesPopUp_C_SetShortcutIcon::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotesPopUp_C_SetShortcutIcon, CallFunc_Contains_ReturnValue_1) == 0x000018, "Member 'WBP_NotesPopUp_C_SetShortcutIcon::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_NotesPopUp_C \ +static_assert(alignof(UWBP_NotesPopUp_C) == 0x000008, "Wrong alignment on UWBP_NotesPopUp_C"); \ +static_assert(sizeof(UWBP_NotesPopUp_C) == 0x000490, "Wrong size on UWBP_NotesPopUp_C"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, UberGraphFrame) == 0x000460, "Member 'UWBP_NotesPopUp_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, ConsoleIcon) == 0x000468, "Member 'UWBP_NotesPopUp_C::ConsoleIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, ConsoleIcon_1) == 0x000470, "Member 'UWBP_NotesPopUp_C::ConsoleIcon_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, Image_53) == 0x000478, "Member 'UWBP_NotesPopUp_C::Image_53' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, PCIcon) == 0x000480, "Member 'UWBP_NotesPopUp_C::PCIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotesPopUp_C, WidgetSwitcher) == 0x000488, "Member 'UWBP_NotesPopUp_C::WidgetSwitcher' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition \ +static_assert(alignof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition) == 0x000008, "Wrong alignment on ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition"); \ +static_assert(sizeof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition) == 0x000118, "Wrong size on ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, EntryPoint) == 0x000000, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Length_ReturnValue) == 0x000008, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Array_Index_Variable) == 0x000010, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Array_Index_Variable_1) == 0x00001C, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Loop_Counter_Variable_2) == 0x000020, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Less_IntInt_ReturnValue) == 0x000024, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Add_IntInt_ReturnValue_2) == 0x000028, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, Temp_int_Array_Index_Variable_2) == 0x00002C, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Get_Item) == 0x000030, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_AsBP_Safia_Recall_Position) == 0x000060, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_AsBP_Safia_Recall_Position' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_Event_InAutomata) == 0x000070, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_Event_InState) == 0x000078, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Length_ReturnValue_1) == 0x0000A8, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000B0, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000B8, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_AsBP_Safia_Recall_Position_1) == 0x0000C0, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_AsBP_Safia_Recall_Position_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_bSuccess_1) == 0x0000C8, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_IsValid_ReturnValue) == 0x0000C9, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Length_ReturnValue_2) == 0x0000CC, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Array_Get_Item_2) == 0x0000D0, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000F8, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x000100, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_AsBP_Safia_Recall_Position_2) == 0x000108, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_AsBP_Safia_Recall_Position_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, K2Node_DynamicCast_bSuccess_2) == 0x000110, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition, CallFunc_IsValid_ReturnValue_1) == 0x000111, "Member 'ToggleSafiaRecallPosition_C_ExecuteUbergraph_ToggleSafiaRecallPosition::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleSafiaRecallPosition_C_ReceiveExecute \ +static_assert(alignof(ToggleSafiaRecallPosition_C_ReceiveExecute) == 0x000008, "Wrong alignment on ToggleSafiaRecallPosition_C_ReceiveExecute"); \ +static_assert(sizeof(ToggleSafiaRecallPosition_C_ReceiveExecute) == 0x000010, "Wrong size on ToggleSafiaRecallPosition_C_ReceiveExecute"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ToggleSafiaRecallPosition_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleSafiaRecallPosition_C_ReceiveExecute, InState) == 0x000008, "Member 'ToggleSafiaRecallPosition_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToggleSafiaRecallPosition_C \ +static_assert(alignof(UToggleSafiaRecallPosition_C) == 0x000008, "Wrong alignment on UToggleSafiaRecallPosition_C"); \ +static_assert(sizeof(UToggleSafiaRecallPosition_C) == 0x0000C0, "Wrong size on UToggleSafiaRecallPosition_C"); \ +static_assert(offsetof(UToggleSafiaRecallPosition_C, UberGraphFrame) == 0x000088, "Member 'UToggleSafiaRecallPosition_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UToggleSafiaRecallPosition_C, SafiaRecallPositionToggle) == 0x000090, "Member 'UToggleSafiaRecallPosition_C::SafiaRecallPositionToggle' has a wrong offset!"); \ +static_assert(offsetof(UToggleSafiaRecallPosition_C, SafiaRecallPositionDisable) == 0x0000A0, "Member 'UToggleSafiaRecallPosition_C::SafiaRecallPositionDisable' has a wrong offset!"); \ +static_assert(offsetof(UToggleSafiaRecallPosition_C, SafiaRecallPositionEnable) == 0x0000B0, "Member 'UToggleSafiaRecallPosition_C::SafiaRecallPositionEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CombatInputNotify_C_Received_NotifyBegin \ +static_assert(alignof(CombatInputNotify_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on CombatInputNotify_C_Received_NotifyBegin"); \ +static_assert(sizeof(CombatInputNotify_C_Received_NotifyBegin) == 0x000088, "Wrong size on CombatInputNotify_C_Received_NotifyBegin"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'CombatInputNotify_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'CombatInputNotify_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'CombatInputNotify_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'CombatInputNotify_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'CombatInputNotify_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'CombatInputNotify_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'CombatInputNotify_C_Received_NotifyBegin::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000060, "Member 'CombatInputNotify_C_Received_NotifyBegin::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'CombatInputNotify_C_Received_NotifyBegin::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, K2Node_DynamicCast_AsWrestler_Control_Cue) == 0x000078, "Member 'CombatInputNotify_C_Received_NotifyBegin::K2Node_DynamicCast_AsWrestler_Control_Cue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyBegin, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'CombatInputNotify_C_Received_NotifyBegin::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CombatInputNotify_C_Received_NotifyEnd \ +static_assert(alignof(CombatInputNotify_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on CombatInputNotify_C_Received_NotifyEnd"); \ +static_assert(sizeof(CombatInputNotify_C_Received_NotifyEnd) == 0x000080, "Wrong size on CombatInputNotify_C_Received_NotifyEnd"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'CombatInputNotify_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'CombatInputNotify_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'CombatInputNotify_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'CombatInputNotify_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'CombatInputNotify_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'CombatInputNotify_C_Received_NotifyEnd::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000058, "Member 'CombatInputNotify_C_Received_NotifyEnd::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'CombatInputNotify_C_Received_NotifyEnd::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, K2Node_DynamicCast_AsWrestler_Control_Cue) == 0x000070, "Member 'CombatInputNotify_C_Received_NotifyEnd::K2Node_DynamicCast_AsWrestler_Control_Cue' has a wrong offset!"); \ +static_assert(offsetof(CombatInputNotify_C_Received_NotifyEnd, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'CombatInputNotify_C_Received_NotifyEnd::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCombatInputNotify_C \ +static_assert(alignof(UCombatInputNotify_C) == 0x000008, "Wrong alignment on UCombatInputNotify_C"); \ +static_assert(sizeof(UCombatInputNotify_C) == 0x000080, "Wrong size on UCombatInputNotify_C"); \ +static_assert(offsetof(UCombatInputNotify_C, Begin_Cue) == 0x000030, "Member 'UCombatInputNotify_C::Begin_Cue' has a wrong offset!"); \ +static_assert(offsetof(UCombatInputNotify_C, End_Cue) == 0x000058, "Member 'UCombatInputNotify_C::End_Cue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Handgun_C \ +static_assert(alignof(UBP_WeaponInstance_Handgun_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Handgun_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Handgun_C) == 0x000240, "Wrong size on UBP_WeaponInstance_Handgun_C"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_SMG_C \ +static_assert(alignof(UBP_WeaponInstance_SMG_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_SMG_C"); \ +static_assert(sizeof(UBP_WeaponInstance_SMG_C) == 0x000240, "Wrong size on UBP_WeaponInstance_SMG_C"); \ + +#define DUMPER7_ASSERTS_UGE_ElixirBloodRestore_C \ +static_assert(alignof(UGE_ElixirBloodRestore_C) == 0x000008, "Wrong alignment on UGE_ElixirBloodRestore_C"); \ +static_assert(sizeof(UGE_ElixirBloodRestore_C) == 0x000A70, "Wrong size on UGE_ElixirBloodRestore_C"); \ + +#define DUMPER7_ASSERTS_UGE_HeavyLand_C \ +static_assert(alignof(UGE_HeavyLand_C) == 0x000008, "Wrong alignment on UGE_HeavyLand_C"); \ +static_assert(sizeof(UGE_HeavyLand_C) == 0x000A70, "Wrong size on UGE_HeavyLand_C"); \ + +#define DUMPER7_ASSERTS_UGE_enemy_blurredMomentum_C \ +static_assert(alignof(UGE_enemy_blurredMomentum_C) == 0x000008, "Wrong alignment on UGE_enemy_blurredMomentum_C"); \ +static_assert(sizeof(UGE_enemy_blurredMomentum_C) == 0x000A70, "Wrong size on UGE_enemy_blurredMomentum_C"); \ + +#define DUMPER7_ASSERTS_UGE_Ventrue_Shield_Elixir_C \ +static_assert(alignof(UGE_Ventrue_Shield_Elixir_C) == 0x000008, "Wrong alignment on UGE_Ventrue_Shield_Elixir_C"); \ +static_assert(sizeof(UGE_Ventrue_Shield_Elixir_C) == 0x000A70, "Wrong size on UGE_Ventrue_Shield_Elixir_C"); \ + +#define DUMPER7_ASSERTS_GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue \ +static_assert(alignof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue) == 0x000008, "Wrong alignment on GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue"); \ +static_assert(sizeof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue) == 0x000170, "Wrong size on GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, EntryPoint) == 0x000000, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_WaitDelay_ReturnValue) == 0x000008, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_Event_bWasCancelled) == 0x000024, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_GetPlayerState_ReturnValue) == 0x000028, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000030, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_UpdateConsumable_ReturnValue) == 0x000039, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000040, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000048, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000050, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000060, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_WaitDelay_ReturnValue_1) == 0x000068, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000078, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000080, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000090, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000098, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000A0, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, K2Node_MakeStruct_GameplayEventData) == 0x0000B0, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, Temp_int_Variable) == 0x000160, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_GetProperty_ReturnValue) == 0x000164, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_Add_IntInt_ReturnValue) == 0x000168, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_IsPlayerFabien_Return) == 0x00016C, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_Not_PreBool_ReturnValue) == 0x00016D, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue, CallFunc_BooleanAND_ReturnValue) == 0x00016E, "Member 'GA_ElixirVentrue_C_ExecuteUbergraph_GA_ElixirVentrue::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirVentrue_C_K2_OnEndAbility \ +static_assert(alignof(GA_ElixirVentrue_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_ElixirVentrue_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_ElixirVentrue_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_ElixirVentrue_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_ElixirVentrue_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirVentrue_C_K2_CanActivateAbility \ +static_assert(alignof(GA_ElixirVentrue_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_ElixirVentrue_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_ElixirVentrue_C_K2_CanActivateAbility) == 0x000108, "Wrong size on GA_ElixirVentrue_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, Temp_byte_Variable) == 0x000080, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000088, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000098, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000099, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000A0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetPlayerController_ReturnValue) == 0x0000A8, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000B0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000C0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x0000C8, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetPlayerState_ReturnValue) == 0x0000D0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_IsInputMethodActive_ReturnValue) == 0x0000D8, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0000E0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000E8, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000E9, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x0000EA, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_Map_Find_Value) == 0x0000F0, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_Map_Find_ReturnValue) == 0x0000F8, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_GetProperty_ReturnValue) == 0x0000FC, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_Greater_IntInt_ReturnValue) == 0x000100, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000101, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirVentrue_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x000102, "Member 'GA_ElixirVentrue_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_ElixirVentrue_C \ +static_assert(alignof(UGA_ElixirVentrue_C) == 0x000008, "Wrong alignment on UGA_ElixirVentrue_C"); \ +static_assert(sizeof(UGA_ElixirVentrue_C) == 0x000688, "Wrong size on UGA_ElixirVentrue_C"); \ +static_assert(offsetof(UGA_ElixirVentrue_C, UberGraphFrame) == 0x000668, "Member 'UGA_ElixirVentrue_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirVentrue_C, Effect) == 0x000670, "Member 'UGA_ElixirVentrue_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirVentrue_C, Duration) == 0x000678, "Member 'UGA_ElixirVentrue_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirVentrue_C, VentrueCounter) == 0x000680, "Member 'UGA_ElixirVentrue_C::VentrueCounter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload \ +static_assert(alignof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload) == 0x000008, "Wrong alignment on DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload"); \ +static_assert(sizeof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload) == 0x000030, "Wrong size on DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, EntryPoint) == 0x000000, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, K2Node_Event_InAutomata) == 0x000008, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, K2Node_Event_InState) == 0x000010, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, K2Node_DynamicCast_AsWrestler_Dialogue_Rig) == 0x000020, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::K2Node_DynamicCast_AsWrestler_Dialogue_Rig' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload, CallFunc_IsValid_ReturnValue) == 0x000029, "Member 'DialogRig_SetInteractionPropertyPayload_C_ExecuteUbergraph_DialogRig_SetInteractionPropertyPayload::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute \ +static_assert(alignof(DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute) == 0x000008, "Wrong alignment on DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute"); \ +static_assert(sizeof(DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute) == 0x000010, "Wrong size on DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute, InState) == 0x000008, "Member 'DialogRig_SetInteractionPropertyPayload_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogRig_SetInteractionPropertyPayload_C \ +static_assert(alignof(UDialogRig_SetInteractionPropertyPayload_C) == 0x000008, "Wrong alignment on UDialogRig_SetInteractionPropertyPayload_C"); \ +static_assert(sizeof(UDialogRig_SetInteractionPropertyPayload_C) == 0x0000C0, "Wrong size on UDialogRig_SetInteractionPropertyPayload_C"); \ +static_assert(offsetof(UDialogRig_SetInteractionPropertyPayload_C, UberGraphFrame) == 0x000088, "Member 'UDialogRig_SetInteractionPropertyPayload_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UDialogRig_SetInteractionPropertyPayload_C, TargetRig) == 0x000090, "Member 'UDialogRig_SetInteractionPropertyPayload_C::TargetRig' has a wrong offset!"); \ +static_assert(offsetof(UDialogRig_SetInteractionPropertyPayload_C, IsActive) == 0x0000B8, "Member 'UDialogRig_SetInteractionPropertyPayload_C::IsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Player_healthSet_C \ +static_assert(alignof(UGE_Player_healthSet_C) == 0x000008, "Wrong alignment on UGE_Player_healthSet_C"); \ +static_assert(sizeof(UGE_Player_healthSet_C) == 0x000A70, "Wrong size on UGE_Player_healthSet_C"); \ + +#define DUMPER7_ASSERTS_ModifyElevator_C_ExecuteUbergraph_ModifyElevator \ +static_assert(alignof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator) == 0x000008, "Wrong alignment on ModifyElevator_C_ExecuteUbergraph_ModifyElevator"); \ +static_assert(sizeof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator) == 0x000048, "Wrong size on ModifyElevator_C_ExecuteUbergraph_ModifyElevator"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, EntryPoint) == 0x000000, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, Temp_bool_Variable) == 0x000004, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, Temp_byte_Variable) == 0x000005, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, Temp_byte_Variable_1) == 0x000006, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_Event_InAutomata) == 0x000008, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_Event_InState) == 0x000010, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, CallFunc_GetActors_Actors) == 0x000018, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::CallFunc_GetActors_Actors' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_DynamicCast_AsWrestler_Fake_Elevator) == 0x000020, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_DynamicCast_AsWrestler_Fake_Elevator' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000030, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ExecuteUbergraph_ModifyElevator, K2Node_Select_Default) == 0x000041, "Member 'ModifyElevator_C_ExecuteUbergraph_ModifyElevator::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModifyElevator_C_GetActors \ +static_assert(alignof(ModifyElevator_C_GetActors) == 0x000008, "Wrong alignment on ModifyElevator_C_GetActors"); \ +static_assert(sizeof(ModifyElevator_C_GetActors) == 0x000020, "Wrong size on ModifyElevator_C_GetActors"); \ +static_assert(offsetof(ModifyElevator_C_GetActors, Actors) == 0x000000, "Member 'ModifyElevator_C_GetActors::Actors' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_GetActors, OutActors) == 0x000008, "Member 'ModifyElevator_C_GetActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_GetActors, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'ModifyElevator_C_GetActors::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModifyElevator_C_ReceiveExecute \ +static_assert(alignof(ModifyElevator_C_ReceiveExecute) == 0x000008, "Wrong alignment on ModifyElevator_C_ReceiveExecute"); \ +static_assert(sizeof(ModifyElevator_C_ReceiveExecute) == 0x000010, "Wrong size on ModifyElevator_C_ReceiveExecute"); \ +static_assert(offsetof(ModifyElevator_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ModifyElevator_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ModifyElevator_C_ReceiveExecute, InState) == 0x000008, "Member 'ModifyElevator_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModifyElevator_C \ +static_assert(alignof(UModifyElevator_C) == 0x000008, "Wrong alignment on UModifyElevator_C"); \ +static_assert(sizeof(UModifyElevator_C) == 0x0000C0, "Wrong size on UModifyElevator_C"); \ +static_assert(offsetof(UModifyElevator_C, UberGraphFrame) == 0x000088, "Member 'UModifyElevator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Elevator) == 0x000090, "Member 'UModifyElevator_C::Elevator' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Wait) == 0x0000B8, "Member 'UModifyElevator_C::Wait' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Disable_Interactions) == 0x0000B9, "Member 'UModifyElevator_C::Disable_Interactions' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Lock) == 0x0000BA, "Member 'UModifyElevator_C::Lock' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Force_Open) == 0x0000BB, "Member 'UModifyElevator_C::Force_Open' has a wrong offset!"); \ +static_assert(offsetof(UModifyElevator_C, Force_Close) == 0x0000BC, "Member 'UModifyElevator_C::Force_Close' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon \ +static_assert(alignof(WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon) == 0x000004, "Wrong alignment on WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon"); \ +static_assert(sizeof(WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon) == 0x000008, "Wrong size on WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon"); \ +static_assert(offsetof(WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon, EntryPoint) == 0x000000, "Member 'WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon, K2Node_Event_bInStatus) == 0x000004, "Member 'WBP_SaveLoadIcon_C_ExecuteUbergraph_WBP_SaveLoadIcon::K2Node_Event_bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadIcon_C_ToggleVisibility \ +static_assert(alignof(WBP_SaveLoadIcon_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_SaveLoadIcon_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_SaveLoadIcon_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_SaveLoadIcon_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_SaveLoadIcon_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_SaveLoadIcon_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SaveLoadIcon_C \ +static_assert(alignof(UWBP_SaveLoadIcon_C) == 0x000008, "Wrong alignment on UWBP_SaveLoadIcon_C"); \ +static_assert(sizeof(UWBP_SaveLoadIcon_C) == 0x000370, "Wrong size on UWBP_SaveLoadIcon_C"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, UberGraphFrame) == 0x000330, "Member 'UWBP_SaveLoadIcon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, SaveLoadAnim) == 0x000338, "Member 'UWBP_SaveLoadIcon_C::SaveLoadAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Diamond_Frame) == 0x000340, "Member 'UWBP_SaveLoadIcon_C::Diamond_Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Diamond_Full) == 0x000348, "Member 'UWBP_SaveLoadIcon_C::Diamond_Full' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Overlay_38) == 0x000350, "Member 'UWBP_SaveLoadIcon_C::Overlay_38' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Square_Frame) == 0x000358, "Member 'UWBP_SaveLoadIcon_C::Square_Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Square_Full) == 0x000360, "Member 'UWBP_SaveLoadIcon_C::Square_Full' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadIcon_C, Symbol) == 0x000368, "Member 'UWBP_SaveLoadIcon_C::Symbol' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch) == 0x000008, "Wrong alignment on GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch) == 0x0001E0, "Wrong size on GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_CustomEvent_EventTag) == 0x000004, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_CustomEvent_EventData) == 0x000010, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, Temp_struct_Variable) == 0x0000D0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, Temp_struct_Variable_1) == 0x000180, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_WrestlerCrouch_ReturnValue) == 0x000188, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_WrestlerCrouch_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_CreateDelegate_OutputDelegate_1) == 0x000190, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_IsValid_ReturnValue) == 0x0001A0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_CustomEvent_WaitingTime) == 0x0001A4, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, Temp_real_Variable) == 0x0001A8, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x0001B0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_IsValid_ReturnValue_1) == 0x0001B8, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, K2Node_Event_bWasCancelled) == 0x0001B9, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0001C0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0001C8, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_GetComponentByClass_ReturnValue) == 0x0001D0, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch, CallFunc_TestUnCrouch_ReturnValue) == 0x0001D8, "Member 'GA_PlayerMovement_Crouch_C_ExecuteUbergraph_GA_PlayerMovement_Crouch::CallFunc_TestUnCrouch_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Crouch_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Crouch_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE) == 0x000008, "Wrong alignment on GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE) == 0x0000B8, "Wrong size on GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE, EventData) == 0x000008, "Member 'GA_PlayerMovement_Crouch_C_OnCancelled_EEC88A6F4A93BF0F4A469BBA88751BAE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC) == 0x000004, "Wrong alignment on GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC) == 0x000004, "Wrong size on GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_OnControlCueProcess_5C38DBE14B9EB9E11FDE92A20A96DBCC::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_Crouch_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility) == 0x0000B0, "Wrong size on GA_PlayerMovement_Crouch_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000080, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000098, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000A8, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x0000A9, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue) == 0x0000AA, "Member 'GA_PlayerMovement_Crouch_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Crouch_C_K2_CanEndAbility \ +static_assert(alignof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_Crouch_C_K2_CanEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility) == 0x000068, "Wrong size on GA_PlayerMovement_Crouch_C_K2_CanEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, InHandle) == 0x000000, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::InHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, InActorInfo) == 0x000008, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::InActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, K2Node_DynamicCast_AsWrestler_Movement_Component) == 0x000058, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::K2Node_DynamicCast_AsWrestler_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, CallFunc_TestUnCrouch_ReturnValue) == 0x000061, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::CallFunc_TestUnCrouch_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, CallFunc_IsCrouching_ReturnValue) == 0x000062, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Crouch_C_K2_CanEndAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000063, "Member 'GA_PlayerMovement_Crouch_C_K2_CanEndAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Crouch_C \ +static_assert(alignof(UGA_PlayerMovement_Crouch_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Crouch_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Crouch_C) == 0x000670, "Wrong size on UGA_PlayerMovement_Crouch_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Crouch_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Crouch_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood \ +static_assert(alignof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood) == 0x000008, "Wrong alignment on GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood"); \ +static_assert(sizeof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood) == 0x000118, "Wrong size on GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, EntryPoint) == 0x000000, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, Temp_int_Variable) == 0x000004, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, Temp_byte_Variable) == 0x000008, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000010, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0000E8, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_K2_CommitAbility_ReturnValue) == 0x0000F0, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_GetPlayerState_ReturnValue) == 0x0000F8, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000100, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_IsPlayerFabien_Return) == 0x000109, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, Temp_byte_Variable_1) == 0x00010A, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_GetProperty_ReturnValue) == 0x00010C, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_Add_IntInt_ReturnValue) == 0x000110, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, Temp_bool_Variable) == 0x000114, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, K2Node_Select_Default) == 0x000115, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood, CallFunc_UpdateConsumable_ReturnValue) == 0x000116, "Member 'GA_ElixirBlood_C_ExecuteUbergraph_GA_ElixirBlood::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBlood_C_BelowMaxBlood \ +static_assert(alignof(GA_ElixirBlood_C_BelowMaxBlood) == 0x000008, "Wrong alignment on GA_ElixirBlood_C_BelowMaxBlood"); \ +static_assert(sizeof(GA_ElixirBlood_C_BelowMaxBlood) == 0x0000C0, "Wrong size on GA_ElixirBlood_C_BelowMaxBlood"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, ReturnValue) == 0x000000, "Member 'GA_ElixirBlood_C_BelowMaxBlood::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1) == 0x000010, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000018, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x00001C, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1) == 0x000020, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1) == 0x000024, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_2) == 0x000028, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_2) == 0x00002C, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_3) == 0x000030, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_3) == 0x000034, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000038, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000039, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue) == 0x00003A, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_1) == 0x00003B, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_2) == 0x00003C, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_3) == 0x00003D, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_2) == 0x000040, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_3) == 0x000048, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_4) == 0x000050, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_4) == 0x000054, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_5) == 0x000058, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_5) == 0x00005C, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_6) == 0x000060, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_6) == 0x000064, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_7) == 0x000068, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_7) == 0x00006C, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x000070, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_ReturnValue_3) == 0x000071, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_4) == 0x000072, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_5) == 0x000073, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_6) == 0x000074, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanAND_ReturnValue_7) == 0x000075, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanAND_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanOR_ReturnValue) == 0x000076, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanOR_ReturnValue_1) == 0x000077, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_BooleanOR_ReturnValue_2) == 0x000078, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000080, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_B_ImplicitCast_1) == 0x000088, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000090, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_A_ImplicitCast_1) == 0x000098, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_B_ImplicitCast_2) == 0x0000A0, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_B_ImplicitCast_3) == 0x0000A8, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_B_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_A_ImplicitCast_2) == 0x0000B0, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_BelowMaxBlood, CallFunc_Less_DoubleDouble_A_ImplicitCast_3) == 0x0000B8, "Member 'GA_ElixirBlood_C_BelowMaxBlood::CallFunc_Less_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBlood_C_K2_CanActivateAbility \ +static_assert(alignof(GA_ElixirBlood_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_ElixirBlood_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_ElixirBlood_C_K2_CanActivateAbility) == 0x000140, "Wrong size on GA_ElixirBlood_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, Temp_byte_Variable) == 0x000071, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_RelevantTags) == 0x000078, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_ReturnValue) == 0x000098, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0000A0, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_IsPlayerFabien_Return) == 0x0000A8, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000B0, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000C0, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, Temp_byte_Variable_1) == 0x0000C1, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x0000C2, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000C8, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x0000D0, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000D8, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000E8, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetPlayerController_ReturnValue) == 0x0000F0, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, K2Node_Select_Default) == 0x0000F8, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000100, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetPlayerState_ReturnValue) == 0x000108, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_IsInputMethodActive_ReturnValue) == 0x000110, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000118, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000120, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000121, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x000122, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_Map_Find_Value) == 0x000128, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_Map_Find_ReturnValue) == 0x000130, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_BelowMaxBlood_ReturnValue) == 0x000131, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_BelowMaxBlood_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_GetProperty_ReturnValue) == 0x000134, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_Greater_IntInt_ReturnValue) == 0x000138, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000139, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x00013A, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBlood_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_3) == 0x00013B, "Member 'GA_ElixirBlood_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_ElixirBlood_C \ +static_assert(alignof(UGA_ElixirBlood_C) == 0x000008, "Wrong alignment on UGA_ElixirBlood_C"); \ +static_assert(sizeof(UGA_ElixirBlood_C) == 0x000680, "Wrong size on UGA_ElixirBlood_C"); \ +static_assert(offsetof(UGA_ElixirBlood_C, UberGraphFrame) == 0x000668, "Member 'UGA_ElixirBlood_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBlood_C, Gameplay_Cue_Tag) == 0x000670, "Member 'UGA_ElixirBlood_C::Gameplay_Cue_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBlood_C, BloodCounter) == 0x000678, "Member 'UGA_ElixirBlood_C::BloodCounter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator \ +static_assert(alignof(WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator) == 0x000004, "Wrong alignment on WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator"); \ +static_assert(sizeof(WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator) == 0x000008, "Wrong size on WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator"); \ +static_assert(offsetof(WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator, EntryPoint) == 0x000000, "Member 'WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator, K2Node_Event_InVisibility) == 0x000004, "Member 'WBP_PointOfInterestWaypointIndicator_C_ExecuteUbergraph_WBP_PointOfInterestWaypointIndicator::K2Node_Event_InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility \ +static_assert(alignof(WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong alignment on WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(sizeof(WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong size on WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(offsetof(WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility, InVisibility) == 0x000000, "Member 'WBP_PointOfInterestWaypointIndicator_C_SetDistanceVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_PointOfInterestWaypointIndicator_C \ +static_assert(alignof(UWBP_PointOfInterestWaypointIndicator_C) == 0x000008, "Wrong alignment on UWBP_PointOfInterestWaypointIndicator_C"); \ +static_assert(sizeof(UWBP_PointOfInterestWaypointIndicator_C) == 0x000378, "Wrong size on UWBP_PointOfInterestWaypointIndicator_C"); \ +static_assert(offsetof(UWBP_PointOfInterestWaypointIndicator_C, UberGraphFrame) == 0x000368, "Member 'UWBP_PointOfInterestWaypointIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PointOfInterestWaypointIndicator_C, WaypointDistance) == 0x000370, "Member 'UWBP_PointOfInterestWaypointIndicator_C::WaypointDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light \ +static_assert(alignof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light) == 0x000008, "Wrong alignment on GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light"); \ +static_assert(sizeof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light) == 0x0002F0, "Wrong size on GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, EntryPoint) == 0x000000, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, Temp_bool_Variable) == 0x000004, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, Temp_struct_Variable) == 0x000008, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, Temp_struct_Variable_1) == 0x000010, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000030, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, K2Node_Event_EventData) == 0x000048, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, K2Node_Select_Default) == 0x0000F8, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_HasTag_ReturnValue) == 0x000100, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000108, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0001E0, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0001E8, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0001F8, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000200, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_GetActorForwardVector_ReturnValue) == 0x000208, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000220, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_IsFalling_ReturnValue) == 0x000238, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_Add_VectorVector_ReturnValue) == 0x000240, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000258, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000270, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light, K2Node_MakeStruct_Struct_KnockBackParameters_1) == 0x0002B0, "Member 'GA_PlayerAttack_Light_C_ExecuteUbergraph_GA_PlayerAttack_Light::K2Node_MakeStruct_Struct_KnockBackParameters_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerAttack_Light_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerAttack_Light_C \ +static_assert(alignof(UGA_PlayerAttack_Light_C) == 0x000008, "Wrong alignment on UGA_PlayerAttack_Light_C"); \ +static_assert(sizeof(UGA_PlayerAttack_Light_C) == 0x000A58, "Wrong size on UGA_PlayerAttack_Light_C"); \ +static_assert(offsetof(UGA_PlayerAttack_Light_C, UberGraphFrame_GA_PlayerAttack_Light_C) == 0x000A48, "Member 'UGA_PlayerAttack_Light_C::UberGraphFrame_GA_PlayerAttack_Light_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_Light_C, LastHit) == 0x000A50, "Member 'UGA_PlayerAttack_Light_C::LastHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Brujah_Passive_C \ +static_assert(alignof(UGE_Brujah_Passive_C) == 0x000008, "Wrong alignment on UGE_Brujah_Passive_C"); \ +static_assert(sizeof(UGE_Brujah_Passive_C) == 0x000A70, "Wrong size on UGE_Brujah_Passive_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TKPull_C_Apply_rotation \ +static_assert(alignof(GA_EnemyReact_TKPull_C_Apply_rotation) == 0x000008, "Wrong alignment on GA_EnemyReact_TKPull_C_Apply_rotation"); \ +static_assert(sizeof(GA_EnemyReact_TKPull_C_Apply_rotation) == 0x000008, "Wrong size on GA_EnemyReact_TKPull_C_Apply_rotation"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_Apply_rotation, Instigator) == 0x000000, "Member 'GA_EnemyReact_TKPull_C_Apply_rotation::Instigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull \ +static_assert(alignof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull) == 0x000008, "Wrong alignment on GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull"); \ +static_assert(sizeof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull) == 0x000590, "Wrong size on GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Normal_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_1) == 0x000050, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_2) == 0x000060, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_3) == 0x000070, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_4) == 0x000080, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_WaitDelay_ReturnValue) == 0x000090, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_5) == 0x000098, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_IsValid_ReturnValue) == 0x0000A8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_WaitDelay_ReturnValue_1) == 0x0000B0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000B8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_IsValid_ReturnValue_1) == 0x0000C8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_WaitDelay_ReturnValue_2) == 0x0000D0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_bool_Variable) == 0x0000D8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_IsValid_ReturnValue_2) == 0x0000D9, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_real_Variable) == 0x0000DC, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x0000E0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_name_Variable) == 0x0000E8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x0000F0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_bool_Variable_1) == 0x0000F8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000100, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetOwningActorFromActorInfo_ReturnValue_3) == 0x000128, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetOwningActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetActorForwardVector_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000148, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_Event_bWasCancelled) == 0x000160, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_name_Variable_1) == 0x000164, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_bool_Variable_2) == 0x00016C, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000170, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000178, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_Select_Default) == 0x000190, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000198, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetMontage_ReturnValue) == 0x0001A0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0001A8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetMassEntityHandle_ReturnValue) == 0x0001B0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0001B8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_IsValid_ReturnValue_3) == 0x0001C0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAIController_ReturnValue) == 0x0001C8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetPlayerPawn_ReturnValue) == 0x0001D0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0001D8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0001E0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0001E8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0001F0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000210, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000218, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000220, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000230, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_SpawnObject_ReturnValue) == 0x000238, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000240, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_Select_Default_1) == 0x000248, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_IsValid_ReturnValue_4) == 0x00024C, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000250, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_real_Variable_1) == 0x000268, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_Event_EventData) == 0x000270, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000320, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_MakeStruct_GameplayEventData) == 0x000338, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Normal_ReturnValue_1) == 0x0003E8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000400, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000418, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetYawPitchFromVector_Yaw) == 0x000430, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetYawPitchFromVector_Pitch) == 0x000434, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MapRangeClamped_ReturnValue) == 0x000438, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000440, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000458, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Dot_VectorVector_ReturnValue) == 0x000470, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000478, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000490, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakVector_X) == 0x000498, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakVector_Y) == 0x0004A0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakVector_Z) == 0x0004A8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0004B0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0004B8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakRotator_Roll) == 0x0004D0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakRotator_Pitch) == 0x0004D4, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_BreakRotator_Yaw) == 0x0004D8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MapRangeClamped_ReturnValue_1) == 0x0004E0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0004E8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, Temp_real_Variable_2) == 0x0004F0, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_SelectFloat_ReturnValue) == 0x0004F8, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000500, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, K2Node_Select_Default_2) == 0x000540, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000548, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MakeRotator_ReturnValue) == 0x000550, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000568, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000570, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MapRangeClamped_Value_ImplicitCast_1) == 0x000578, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MapRangeClamped_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000580, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000588, "Member 'GA_EnemyReact_TKPull_C_ExecuteUbergraph_GA_EnemyReact_TKPull::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_TKPull_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TKPull_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_TKPull_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_TKPull_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_TKPull_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_TKPull_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_TKPull_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_TKPull_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_TKPull_C \ +static_assert(alignof(UGA_EnemyReact_TKPull_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_TKPull_C"); \ +static_assert(sizeof(UGA_EnemyReact_TKPull_C) == 0x0007E0, "Wrong size on UGA_EnemyReact_TKPull_C"); \ +static_assert(offsetof(UGA_EnemyReact_TKPull_C, UberGraphFrame_GA_EnemyReact_TKPull_C) == 0x0007B8, "Member 'UGA_EnemyReact_TKPull_C::UberGraphFrame_GA_EnemyReact_TKPull_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_TKPull_C, PullDirection) == 0x0007C0, "Member 'UGA_EnemyReact_TKPull_C::PullDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_TKPull_C, AirPullCutOff) == 0x0007C8, "Member 'UGA_EnemyReact_TKPull_C::AirPullCutOff' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_TKPull_C, PullDown) == 0x0007D0, "Member 'UGA_EnemyReact_TKPull_C::PullDown' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_TKPull_C, Entity_Handle) == 0x0007D4, "Member 'UGA_EnemyReact_TKPull_C::Entity_Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_ElixirBrujah_Passive_C \ +static_assert(alignof(UGE_ElixirBrujah_Passive_C) == 0x000008, "Wrong alignment on UGE_ElixirBrujah_Passive_C"); \ +static_assert(sizeof(UGE_ElixirBrujah_Passive_C) == 0x000A70, "Wrong size on UGE_ElixirBrujah_Passive_C"); \ + +#define DUMPER7_ASSERTS_VideoPlayer_C_Pause \ +static_assert(alignof(VideoPlayer_C_Pause) == 0x000001, "Wrong alignment on VideoPlayer_C_Pause"); \ +static_assert(sizeof(VideoPlayer_C_Pause) == 0x000004, "Wrong size on VideoPlayer_C_Pause"); \ +static_assert(offsetof(VideoPlayer_C_Pause, Pause_0) == 0x000000, "Member 'VideoPlayer_C_Pause::Pause_0' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_Pause, CallFunc_Play_ReturnValue) == 0x000001, "Member 'VideoPlayer_C_Pause::CallFunc_Play_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_Pause, CallFunc_Pause_ReturnValue) == 0x000002, "Member 'VideoPlayer_C_Pause::CallFunc_Pause_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_Pause, CallFunc_IsValid_ReturnValue) == 0x000003, "Member 'VideoPlayer_C_Pause::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VideoPlayer_C_SetMediaPayer \ +static_assert(alignof(VideoPlayer_C_SetMediaPayer) == 0x000008, "Wrong alignment on VideoPlayer_C_SetMediaPayer"); \ +static_assert(sizeof(VideoPlayer_C_SetMediaPayer) == 0x000020, "Wrong size on VideoPlayer_C_SetMediaPayer"); \ +static_assert(offsetof(VideoPlayer_C_SetMediaPayer, MediaPlayer_0) == 0x000000, "Member 'VideoPlayer_C_SetMediaPayer::MediaPlayer_0' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_SetMediaPayer, StopWhenEndReached) == 0x000008, "Member 'VideoPlayer_C_SetMediaPayer::StopWhenEndReached' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_SetMediaPayer, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'VideoPlayer_C_SetMediaPayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VideoPlayer_C_SetMediaPayer, K2Node_CreateDelegate_OutputDelegate) == 0x00000C, "Member 'VideoPlayer_C_SetMediaPayer::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VideoPlayer_C_StopVideo \ +static_assert(alignof(VideoPlayer_C_StopVideo) == 0x000001, "Wrong alignment on VideoPlayer_C_StopVideo"); \ +static_assert(sizeof(VideoPlayer_C_StopVideo) == 0x000001, "Wrong size on VideoPlayer_C_StopVideo"); \ +static_assert(offsetof(VideoPlayer_C_StopVideo, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'VideoPlayer_C_StopVideo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVideoPlayer_C \ +static_assert(alignof(UVideoPlayer_C) == 0x000008, "Wrong alignment on UVideoPlayer_C"); \ +static_assert(sizeof(UVideoPlayer_C) == 0x0002F0, "Wrong size on UVideoPlayer_C"); \ +static_assert(offsetof(UVideoPlayer_C, Video) == 0x0002D8, "Member 'UVideoPlayer_C::Video' has a wrong offset!"); \ +static_assert(offsetof(UVideoPlayer_C, CloseVideo) == 0x0002E0, "Member 'UVideoPlayer_C::CloseVideo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget \ +static_assert(alignof(WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget) == 0x000004, "Wrong alignment on WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget"); \ +static_assert(sizeof(WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget) == 0x000040, "Wrong size on WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget"); \ +static_assert(offsetof(WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget, EntryPoint) == 0x000000, "Member 'WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_EquippedAbilityWidget_C_ExecuteUbergraph_WBP_EquippedAbilityWidget::K2Node_Event_InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_EquippedAbilityWidget_C_Tick \ +static_assert(alignof(WBP_EquippedAbilityWidget_C_Tick) == 0x000004, "Wrong alignment on WBP_EquippedAbilityWidget_C_Tick"); \ +static_assert(sizeof(WBP_EquippedAbilityWidget_C_Tick) == 0x00003C, "Wrong size on WBP_EquippedAbilityWidget_C_Tick"); \ +static_assert(offsetof(WBP_EquippedAbilityWidget_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_EquippedAbilityWidget_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_EquippedAbilityWidget_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_EquippedAbilityWidget_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_EquippedAbilityWidget_C \ +static_assert(alignof(UWBP_EquippedAbilityWidget_C) == 0x000008, "Wrong alignment on UWBP_EquippedAbilityWidget_C"); \ +static_assert(sizeof(UWBP_EquippedAbilityWidget_C) == 0x000360, "Wrong size on UWBP_EquippedAbilityWidget_C"); \ +static_assert(offsetof(UWBP_EquippedAbilityWidget_C, UberGraphFrame) == 0x000358, "Member 'UWBP_EquippedAbilityWidget_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle \ +static_assert(alignof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle) == 0x000008, "Wrong alignment on Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle"); \ +static_assert(sizeof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle) == 0x000020, "Wrong size on Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle"); \ +static_assert(offsetof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle, EntryPoint) == 0x000000, "Member 'Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle, K2Node_Event_InAutomata) == 0x000008, "Member 'Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle, K2Node_Event_InState) == 0x000010, "Member 'Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'Bool_Toggle_C_ExecuteUbergraph_Bool_Toggle::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Bool_Toggle_C_ReceiveExecute \ +static_assert(alignof(Bool_Toggle_C_ReceiveExecute) == 0x000008, "Wrong alignment on Bool_Toggle_C_ReceiveExecute"); \ +static_assert(sizeof(Bool_Toggle_C_ReceiveExecute) == 0x000010, "Wrong size on Bool_Toggle_C_ReceiveExecute"); \ +static_assert(offsetof(Bool_Toggle_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Bool_Toggle_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Bool_Toggle_C_ReceiveExecute, InState) == 0x000008, "Member 'Bool_Toggle_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBool_Toggle_C \ +static_assert(alignof(UBool_Toggle_C) == 0x000008, "Wrong alignment on UBool_Toggle_C"); \ +static_assert(sizeof(UBool_Toggle_C) == 0x000098, "Wrong size on UBool_Toggle_C"); \ +static_assert(offsetof(UBool_Toggle_C, UberGraphFrame) == 0x000088, "Member 'UBool_Toggle_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBool_Toggle_C, Bool) == 0x000090, "Member 'UBool_Toggle_C::Bool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget \ +static_assert(alignof(BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong alignment on BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget"); \ +static_assert(sizeof(BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong size on BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget"); \ +static_assert(offsetof(BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget, Enemy) == 0x000000, "Member 'BPI_HudUpdatedEnemyAwerness_C_AssignEnemyAwernessWidget::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_HudUpdatedEnemyAwerness_C \ +static_assert(alignof(IBPI_HudUpdatedEnemyAwerness_C) == 0x000001, "Wrong alignment on IBPI_HudUpdatedEnemyAwerness_C"); \ +static_assert(sizeof(IBPI_HudUpdatedEnemyAwerness_C) == 0x000001, "Wrong size on IBPI_HudUpdatedEnemyAwerness_C"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerStateInGame_C_ChangeElixirCount \ +static_assert(alignof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount) == 0x000008, "Wrong alignment on BP_WrestlerPlayerStateInGame_C_ChangeElixirCount"); \ +static_assert(sizeof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount) == 0x000010, "Wrong size on BP_WrestlerPlayerStateInGame_C_ChangeElixirCount"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount, Increase) == 0x000000, "Member 'BP_WrestlerPlayerStateInGame_C_ChangeElixirCount::Increase' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount, ElixirType) == 0x000001, "Member 'BP_WrestlerPlayerStateInGame_C_ChangeElixirCount::ElixirType' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount, CanUseElixir) == 0x000002, "Member 'BP_WrestlerPlayerStateInGame_C_ChangeElixirCount::CanUseElixir' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_ChangeElixirCount, ElixirHeraValue) == 0x000008, "Member 'BP_WrestlerPlayerStateInGame_C_ChangeElixirCount::ElixirHeraValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame \ +static_assert(alignof(BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame) == 0x000004, "Wrong alignment on BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame"); \ +static_assert(sizeof(BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame) == 0x000004, "Wrong size on BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame, EntryPoint) == 0x000000, "Member 'BP_WrestlerPlayerStateInGame_C_ExecuteUbergraph_BP_WrestlerPlayerStateInGame::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerStateInGame_C_SetUpCostume \ +static_assert(alignof(BP_WrestlerPlayerStateInGame_C_SetUpCostume) == 0x000008, "Wrong alignment on BP_WrestlerPlayerStateInGame_C_SetUpCostume"); \ +static_assert(sizeof(BP_WrestlerPlayerStateInGame_C_SetUpCostume) == 0x000058, "Wrong size on BP_WrestlerPlayerStateInGame_C_SetUpCostume"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000010, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_GetCostumeDataAsset_ReturnValue) == 0x000020, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_GetCostumeDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000038, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerStateInGame_C_SetUpCostume, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'BP_WrestlerPlayerStateInGame_C_SetUpCostume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerPlayerStateInGame_C \ +static_assert(alignof(ABP_WrestlerPlayerStateInGame_C) == 0x000008, "Wrong alignment on ABP_WrestlerPlayerStateInGame_C"); \ +static_assert(sizeof(ABP_WrestlerPlayerStateInGame_C) == 0x000530, "Wrong size on ABP_WrestlerPlayerStateInGame_C"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, UberGraphFrame) == 0x000500, "Member 'ABP_WrestlerPlayerStateInGame_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, DefaultSceneRoot) == 0x000508, "Member 'ABP_WrestlerPlayerStateInGame_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, ElixirBloodCount) == 0x000510, "Member 'ABP_WrestlerPlayerStateInGame_C::ElixirBloodCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, ElixirHealthCount) == 0x000518, "Member 'ABP_WrestlerPlayerStateInGame_C::ElixirHealthCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, ElixirVentrueCount) == 0x000520, "Member 'ABP_WrestlerPlayerStateInGame_C::ElixirVentrueCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerPlayerStateInGame_C, ElixirBrujahCount) == 0x000528, "Member 'ABP_WrestlerPlayerStateInGame_C::ElixirBrujahCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_CharacterSnow_C_ReturnVolumeData \ +static_assert(alignof(BPI_CharacterSnow_C_ReturnVolumeData) == 0x000008, "Wrong alignment on BPI_CharacterSnow_C_ReturnVolumeData"); \ +static_assert(sizeof(BPI_CharacterSnow_C_ReturnVolumeData) == 0x000010, "Wrong size on BPI_CharacterSnow_C_ReturnVolumeData"); \ +static_assert(offsetof(BPI_CharacterSnow_C_ReturnVolumeData, VolumeDefs) == 0x000000, "Member 'BPI_CharacterSnow_C_ReturnVolumeData::VolumeDefs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_CharacterSnow_C \ +static_assert(alignof(IBPI_CharacterSnow_C) == 0x000001, "Wrong alignment on IBPI_CharacterSnow_C"); \ +static_assert(sizeof(IBPI_CharacterSnow_C) == 0x000001, "Wrong size on IBPI_CharacterSnow_C"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_ \ +static_assert(alignof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_) == 0x000008, "Wrong alignment on BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_"); \ +static_assert(sizeof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_) == 0x000128, "Wrong size on BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000010, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetChildrenComponents_Children) == 0x000028, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetChildrenComponents_Children' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetObjectClass_ReturnValue) == 0x000050, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_EqualEqual_ClassClass_ReturnValue) == 0x000058, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_EqualEqual_ClassClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, K2Node_DynamicCast_AsBox_Collision) == 0x000060, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::K2Node_DynamicCast_AsBox_Collision' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_K2_GetComponentRotation_ReturnValue) == 0x000070, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_K2_GetComponentRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000088, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetAxes_X) == 0x0000A0, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetAxes_X' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetAxes_Y) == 0x0000B8, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetAxes_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_GetAxes_Z) == 0x0000D0, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_GetAxes_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000E8, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000100, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_, K2Node_MakeArray_Array) == 0x000118, "Member 'BP_VFX_HubSnowKillVolume_C_Calculate_Defs__Editor_Only_::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HubSnowKillVolume_C_ReturnVolumeData \ +static_assert(alignof(BP_VFX_HubSnowKillVolume_C_ReturnVolumeData) == 0x000008, "Wrong alignment on BP_VFX_HubSnowKillVolume_C_ReturnVolumeData"); \ +static_assert(sizeof(BP_VFX_HubSnowKillVolume_C_ReturnVolumeData) == 0x000010, "Wrong size on BP_VFX_HubSnowKillVolume_C_ReturnVolumeData"); \ +static_assert(offsetof(BP_VFX_HubSnowKillVolume_C_ReturnVolumeData, VolumeDefs) == 0x000000, "Member 'BP_VFX_HubSnowKillVolume_C_ReturnVolumeData::VolumeDefs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_VFX_HubSnowKillVolume_C \ +static_assert(alignof(ABP_VFX_HubSnowKillVolume_C) == 0x000008, "Wrong alignment on ABP_VFX_HubSnowKillVolume_C"); \ +static_assert(sizeof(ABP_VFX_HubSnowKillVolume_C) == 0x0002B0, "Wrong size on ABP_VFX_HubSnowKillVolume_C"); \ +static_assert(offsetof(ABP_VFX_HubSnowKillVolume_C, AddKillBoxesHere) == 0x000298, "Member 'ABP_VFX_HubSnowKillVolume_C::AddKillBoxesHere' has a wrong offset!"); \ +static_assert(offsetof(ABP_VFX_HubSnowKillVolume_C, DefinitionArray) == 0x0002A0, "Member 'ABP_VFX_HubSnowKillVolume_C::DefinitionArray' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_Can_See_Target \ +static_assert(alignof(BP_SniperSpline_C_Can_See_Target) == 0x000008, "Wrong alignment on BP_SniperSpline_C_Can_See_Target"); \ +static_assert(sizeof(BP_SniperSpline_C_Can_See_Target) == 0x000258, "Wrong size on BP_SniperSpline_C_Can_See_Target"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, TargetLocation) == 0x000000, "Member 'BP_SniperSpline_C_Can_See_Target::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, Return) == 0x000018, "Member 'BP_SniperSpline_C_Can_See_Target::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, TargetViewLocation) == 0x000020, "Member 'BP_SniperSpline_C_Can_See_Target::TargetViewLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_Add_VectorVector_ReturnValue) == 0x000038, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, K2Node_MakeArray_Array) == 0x000050, "Member 'BP_SniperSpline_C_Can_See_Target::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000060, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x000078, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_LineTraceSingle_OutHit) == 0x000090, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_LineTraceSingle_ReturnValue) == 0x000178, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_IsValid_ReturnValue) == 0x000179, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_bBlockingHit) == 0x00017A, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_bInitialOverlap) == 0x00017B, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_Time) == 0x00017C, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_Distance) == 0x000180, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_Location) == 0x000188, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_ImpactPoint) == 0x0001A0, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_Normal) == 0x0001B8, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_ImpactNormal) == 0x0001D0, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_PhysMat) == 0x0001E8, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_HitActor) == 0x0001F0, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_HitComponent) == 0x0001F8, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_HitBoneName) == 0x000200, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_BoneName) == 0x000208, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_HitItem) == 0x000210, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_ElementIndex) == 0x000214, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_FaceIndex) == 0x000218, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_TraceStart) == 0x000220, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_BreakHitResult_TraceEnd) == 0x000238, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_Can_See_Target, CallFunc_EqualEqual_VectorVector_ReturnValue) == 0x000250, "Member 'BP_SniperSpline_C_Can_See_Target::CallFunc_EqualEqual_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_ClearOwningAI \ +static_assert(alignof(BP_SniperSpline_C_ClearOwningAI) == 0x000008, "Wrong alignment on BP_SniperSpline_C_ClearOwningAI"); \ +static_assert(sizeof(BP_SniperSpline_C_ClearOwningAI) == 0x000008, "Wrong size on BP_SniperSpline_C_ClearOwningAI"); \ +static_assert(offsetof(BP_SniperSpline_C_ClearOwningAI, StateTreeComponent) == 0x000000, "Member 'BP_SniperSpline_C_ClearOwningAI::StateTreeComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_EnemySpawned \ +static_assert(alignof(BP_SniperSpline_C_EnemySpawned) == 0x000008, "Wrong alignment on BP_SniperSpline_C_EnemySpawned"); \ +static_assert(sizeof(BP_SniperSpline_C_EnemySpawned) == 0x000008, "Wrong size on BP_SniperSpline_C_EnemySpawned"); \ +static_assert(offsetof(BP_SniperSpline_C_EnemySpawned, Enemy) == 0x000000, "Member 'BP_SniperSpline_C_EnemySpawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline \ +static_assert(alignof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline) == 0x000008, "Wrong alignment on BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline"); \ +static_assert(sizeof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline) == 0x0001E0, "Wrong size on BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, EntryPoint) == 0x000000, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_Event_DeltaSeconds) == 0x000004, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsClosedLoop_ReturnValue) == 0x000010, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsClosedLoop_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_K2_GetPawn_ReturnValue) == 0x000028, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_K2_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetAIPerceptionComponent_ReturnValue) == 0x000030, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetAIPerceptionComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_2) == 0x000038, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetLocationAtTime_ReturnValue) == 0x000048, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetLocationAtTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_VInterpTo_ReturnValue) == 0x000060, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000078, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_CustomEvent_Enemy) == 0x000080, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Not_PreBool_ReturnValue) == 0x000088, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_3) == 0x000089, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_CustomEvent_Spawner) == 0x000090, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_CustomEvent_Spawner' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_4) == 0x0000B8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetComponentByClass_ReturnValue) == 0x0000C0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_5) == 0x0000C8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_SetSniperSpline_Return) == 0x0000C9, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_SetSniperSpline_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_CustomEvent_EnemyToAssign) == 0x0000D0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_CustomEvent_EnemyToAssign' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_CreateDelegate_OutputDelegate) == 0x0000D8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_6) == 0x0000E8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_SwitchEnum_CmpSuccess) == 0x0000E9, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0000F0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_7) == 0x0000F8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_8) == 0x0000F9, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetAIController_ReturnValue_1) == 0x000100, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_9) == 0x000108, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000110, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000130, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_VInterpTo_ReturnValue_1) == 0x000138, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_VInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Can_See_Target_Return) == 0x000150, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Can_See_Target_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_CreateDelegate_OutputDelegate_1) == 0x000154, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000168, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000170, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_DynamicCast_AsWrestler_AISpawner) == 0x000178, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_DynamicCast_AsWrestler_AISpawner' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, K2Node_DynamicCast_bSuccess) == 0x000180, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_10) == 0x000181, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValidSoftObjectReference_ReturnValue_1) == 0x000182, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValidSoftObjectReference_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000184, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x00018C, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_PawnHasStateTag_ReturnValue) == 0x000194, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_IsValid_ReturnValue_11) == 0x000195, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetAIController_ReturnValue_2) == 0x000198, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_K2_GetPawn_ReturnValue_1) == 0x0001A0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_K2_GetPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_PawnHasStateTag_ReturnValue_1) == 0x0001A8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_PawnHasStateTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x0001B0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0001B8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0001C0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001C8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_GetLocationAtTime_Time_ImplicitCast) == 0x0001D0, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_GetLocationAtTime_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Delay_Duration_ImplicitCast) == 0x0001D4, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0001D8, "Member 'BP_SniperSpline_C_ExecuteUbergraph_BP_SniperSpline::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_GetPointMidSpline \ +static_assert(alignof(BP_SniperSpline_C_GetPointMidSpline) == 0x000008, "Wrong alignment on BP_SniperSpline_C_GetPointMidSpline"); \ +static_assert(sizeof(BP_SniperSpline_C_GetPointMidSpline) == 0x000050, "Wrong size on BP_SniperSpline_C_GetPointMidSpline"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, Return) == 0x000000, "Member 'BP_SniperSpline_C_GetPointMidSpline::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, CallFunc_GetSplineLength_ReturnValue) == 0x000018, "Member 'BP_SniperSpline_C_GetPointMidSpline::CallFunc_GetSplineLength_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_SniperSpline_C_GetPointMidSpline::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue) == 0x000028, "Member 'BP_SniperSpline_C_GetPointMidSpline::CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'BP_SniperSpline_C_GetPointMidSpline::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_GetPointMidSpline, CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast) == 0x000048, "Member 'BP_SniperSpline_C_GetPointMidSpline::CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_GetTargetingLocation \ +static_assert(alignof(BP_SniperSpline_C_GetTargetingLocation) == 0x000008, "Wrong alignment on BP_SniperSpline_C_GetTargetingLocation"); \ +static_assert(sizeof(BP_SniperSpline_C_GetTargetingLocation) == 0x000018, "Wrong size on BP_SniperSpline_C_GetTargetingLocation"); \ +static_assert(offsetof(BP_SniperSpline_C_GetTargetingLocation, TargetingLocation_0) == 0x000000, "Member 'BP_SniperSpline_C_GetTargetingLocation::TargetingLocation_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_GetTrackingTarget \ +static_assert(alignof(BP_SniperSpline_C_GetTrackingTarget) == 0x000001, "Wrong alignment on BP_SniperSpline_C_GetTrackingTarget"); \ +static_assert(sizeof(BP_SniperSpline_C_GetTrackingTarget) == 0x000001, "Wrong size on BP_SniperSpline_C_GetTrackingTarget"); \ +static_assert(offsetof(BP_SniperSpline_C_GetTrackingTarget, Return) == 0x000000, "Member 'BP_SniperSpline_C_GetTrackingTarget::Return' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_ReceiveTick \ +static_assert(alignof(BP_SniperSpline_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_SniperSpline_C_ReceiveTick"); \ +static_assert(sizeof(BP_SniperSpline_C_ReceiveTick) == 0x000004, "Wrong size on BP_SniperSpline_C_ReceiveTick"); \ +static_assert(offsetof(BP_SniperSpline_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_SniperSpline_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_SetEnemy \ +static_assert(alignof(BP_SniperSpline_C_SetEnemy) == 0x000008, "Wrong alignment on BP_SniperSpline_C_SetEnemy"); \ +static_assert(sizeof(BP_SniperSpline_C_SetEnemy) == 0x000008, "Wrong size on BP_SniperSpline_C_SetEnemy"); \ +static_assert(offsetof(BP_SniperSpline_C_SetEnemy, EnemyToAssign_0) == 0x000000, "Member 'BP_SniperSpline_C_SetEnemy::EnemyToAssign_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_SetOwningAI \ +static_assert(alignof(BP_SniperSpline_C_SetOwningAI) == 0x000008, "Wrong alignment on BP_SniperSpline_C_SetOwningAI"); \ +static_assert(sizeof(BP_SniperSpline_C_SetOwningAI) == 0x000010, "Wrong size on BP_SniperSpline_C_SetOwningAI"); \ +static_assert(offsetof(BP_SniperSpline_C_SetOwningAI, Actor) == 0x000000, "Member 'BP_SniperSpline_C_SetOwningAI::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_SetOwningAI, Return) == 0x000008, "Member 'BP_SniperSpline_C_SetOwningAI::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperSpline_C_SetOwningAI, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'BP_SniperSpline_C_SetOwningAI::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperSpline_C_SetSpawner \ +static_assert(alignof(BP_SniperSpline_C_SetSpawner) == 0x000008, "Wrong alignment on BP_SniperSpline_C_SetSpawner"); \ +static_assert(sizeof(BP_SniperSpline_C_SetSpawner) == 0x000028, "Wrong size on BP_SniperSpline_C_SetSpawner"); \ +static_assert(offsetof(BP_SniperSpline_C_SetSpawner, Spawner_0) == 0x000000, "Member 'BP_SniperSpline_C_SetSpawner::Spawner_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_SniperSpline_C \ +static_assert(alignof(ABP_SniperSpline_C) == 0x000008, "Wrong alignment on ABP_SniperSpline_C"); \ +static_assert(sizeof(ABP_SniperSpline_C) == 0x000380, "Wrong size on ABP_SniperSpline_C"); \ +static_assert(offsetof(ABP_SniperSpline_C, UberGraphFrame) == 0x000298, "Member 'ABP_SniperSpline_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, TargetSpline) == 0x0002A0, "Member 'ABP_SniperSpline_C::TargetSpline' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_SniperSpline_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, MoveAlongSpline_Time_0F7E533A4633D08C3CD60A9AC45E7169) == 0x0002B0, "Member 'ABP_SniperSpline_C::MoveAlongSpline_Time_0F7E533A4633D08C3CD60A9AC45E7169' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, MoveAlongSpline__Direction_0F7E533A4633D08C3CD60A9AC45E7169) == 0x0002B4, "Member 'ABP_SniperSpline_C::MoveAlongSpline__Direction_0F7E533A4633D08C3CD60A9AC45E7169' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, MoveAlongSpline) == 0x0002B8, "Member 'ABP_SniperSpline_C::MoveAlongSpline' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, TargetingLocation) == 0x0002C0, "Member 'ABP_SniperSpline_C::TargetingLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, Delta) == 0x0002D8, "Member 'ABP_SniperSpline_C::Delta' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, Debug) == 0x0002DC, "Member 'ABP_SniperSpline_C::Debug' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, OwningAI) == 0x0002E0, "Member 'ABP_SniperSpline_C::OwningAI' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, Spawner) == 0x0002E8, "Member 'ABP_SniperSpline_C::Spawner' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, PauseTimeAtSplineEnds) == 0x000310, "Member 'ABP_SniperSpline_C::PauseTimeAtSplineEnds' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, MovementNormalisedCurve) == 0x000318, "Member 'ABP_SniperSpline_C::MovementNormalisedCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, EnemyToAssign) == 0x000320, "Member 'ABP_SniperSpline_C::EnemyToAssign' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, TargetLocationInterpolationSpeed) == 0x000328, "Member 'ABP_SniperSpline_C::TargetLocationInterpolationSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, PauseWhenTargetLostTime) == 0x000330, "Member 'ABP_SniperSpline_C::PauseWhenTargetLostTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, LostTargetTimeAccumulator) == 0x000338, "Member 'ABP_SniperSpline_C::LostTargetTimeAccumulator' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, TargetLost) == 0x000340, "Member 'ABP_SniperSpline_C::TargetLost' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, LKP) == 0x000348, "Member 'ABP_SniperSpline_C::LKP' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, TrackingTarget) == 0x000360, "Member 'ABP_SniperSpline_C::TrackingTarget' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, LOSTimerHandle) == 0x000368, "Member 'ABP_SniperSpline_C::LOSTimerHandle' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, Key_Name) == 0x000370, "Member 'ABP_SniperSpline_C::Key_Name' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperSpline_C, SpawnerResolved) == 0x000378, "Member 'ABP_SniperSpline_C::SpawnerResolved' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_C_GetAttributeFill \ +static_assert(alignof(WBP_WrestlerAttributeWidget_C_GetAttributeFill) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_C_GetAttributeFill"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_C_GetAttributeFill) == 0x000018, "Wrong size on WBP_WrestlerAttributeWidget_C_GetAttributeFill"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFill, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFill::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFill, CallFunc_GetAttributeFraction_bSuccessfullyFoundAttribute) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFill::CallFunc_GetAttributeFraction_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFill, CallFunc_GetAttributeFraction_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFill::CallFunc_GetAttributeFraction_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_C_GetAttributeFraction \ +static_assert(alignof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_C_GetAttributeFraction"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction) == 0x0000B8, "Wrong size on WBP_WrestlerAttributeWidget_C_GetAttributeFraction"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, Attribute_0) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::Attribute_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, MaxAttribute_0) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::MaxAttribute_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, bSuccessfullyFoundAttribute) == 0x000070, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, ReturnValue) == 0x000078, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute) == 0x000080, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_GetAttributeValue_ReturnValue) == 0x000088, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_GetAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute_1) == 0x000090, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_GetAttributeValue_ReturnValue_1) == 0x000098, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_GetAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_BooleanAND_ReturnValue) == 0x0000A0, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A1, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_SelectFloat_ReturnValue) == 0x0000A8, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeFraction, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeFraction::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor \ +static_assert(alignof(WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor) == 0x000010, "Wrong size on WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor, CallFunc_GetOwningPlayer_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeTargetActor::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_C_GetAttributeValue \ +static_assert(alignof(WBP_WrestlerAttributeWidget_C_GetAttributeValue) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_C_GetAttributeValue"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_C_GetAttributeValue) == 0x000098, "Wrong size on WBP_WrestlerAttributeWidget_C_GetAttributeValue"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, Attribute_0) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::Attribute_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, bSuccessfullyFoundAttribute) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, ReturnValue) == 0x000040, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_GetAttributeTargetActor_ReturnValue) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_GetAttributeTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000058, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_K2_GetPawn_ReturnValue) == 0x000068, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_K2_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000070, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000080, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000088, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_ReturnValue) == 0x00008C, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::CallFunc_GetFloatAttributeBaseFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_C_GetAttributeValue, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000090, "Member 'WBP_WrestlerAttributeWidget_C_GetAttributeValue::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_WrestlerAttributeWidget_C \ +static_assert(alignof(UWBP_WrestlerAttributeWidget_C) == 0x000008, "Wrong alignment on UWBP_WrestlerAttributeWidget_C"); \ +static_assert(sizeof(UWBP_WrestlerAttributeWidget_C) == 0x000348, "Wrong size on UWBP_WrestlerAttributeWidget_C"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_C, Attribute) == 0x0002C8, "Member 'UWBP_WrestlerAttributeWidget_C::Attribute' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_C, MaxAttribute) == 0x000300, "Member 'UWBP_WrestlerAttributeWidget_C::MaxAttribute' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_C, NewVar_0) == 0x000338, "Member 'UWBP_WrestlerAttributeWidget_C::NewVar_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_C, NewVar_1) == 0x000340, "Member 'UWBP_WrestlerAttributeWidget_C::NewVar_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_ApplyOrRemoveVisibilityTag \ +static_assert(alignof(BP_ScentTrail_C_ApplyOrRemoveVisibilityTag) == 0x000001, "Wrong alignment on BP_ScentTrail_C_ApplyOrRemoveVisibilityTag"); \ +static_assert(sizeof(BP_ScentTrail_C_ApplyOrRemoveVisibilityTag) == 0x000001, "Wrong size on BP_ScentTrail_C_ApplyOrRemoveVisibilityTag"); \ +static_assert(offsetof(BP_ScentTrail_C_ApplyOrRemoveVisibilityTag, Condition) == 0x000000, "Member 'BP_ScentTrail_C_ApplyOrRemoveVisibilityTag::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature \ +static_assert(alignof(BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature) == 0x000001, "Wrong alignment on BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature"); \ +static_assert(sizeof(BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature) == 0x000001, "Wrong size on BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature"); \ +static_assert(offsetof(BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature, bIsActive) == 0x000000, "Member 'BP_ScentTrail_C_BndEvt__Spline_FX_HeraAudio_K2Node_ComponentBoundEvent_0_HeraAudioComponentOnActiveChanged__DelegateSignature::bIsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail \ +static_assert(alignof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail) == 0x000010, "Wrong alignment on BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail"); \ +static_assert(sizeof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail) == 0x000320, "Wrong size on BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, EntryPoint) == 0x000000, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_ComponentBoundEvent_bIsActive) == 0x000004, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_ComponentBoundEvent_bIsActive' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_Event_bInVisible) == 0x000005, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_Event_DeltaSeconds) == 0x000008, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_IsValid_ReturnValue) == 0x00000C, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_Event_InDuration_1) == 0x000010, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_Event_InDuration) == 0x000014, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000018, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_IsVisibleInHS_Visibility_in_HS) == 0x000020, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_IsVisibleInHS_Visibility_in_HS' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetGameMode_ReturnValue) == 0x000028, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_CustomEvent_Tag) == 0x000030, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_CustomEvent_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_CustomEvent_Waypoint) == 0x000040, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_CustomEvent_Waypoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetComponentByClass_ReturnValue) == 0x000048, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000B0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000B8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000C0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue) == 0x0000C8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, Temp_bool_Has_Been_Initd_Variable) == 0x0000C9, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetMagnitude_ReturnValue) == 0x0000CC, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetMagnitude_ReturnValue_1) == 0x0000D0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000D4, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Abs_ReturnValue) == 0x0000D8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Not_PreBool_ReturnValue) == 0x0000E0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue_1) == 0x0000F0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_SelectFloat_ReturnValue) == 0x0000F8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_IsVisibleInHS_Visibility_in_HS_1) == 0x000100, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_IsVisibleInHS_Visibility_in_HS_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_CreateDelegate_OutputDelegate) == 0x000104, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000118, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, K2Node_DynamicCast_bSuccess) == 0x000128, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000130, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, Temp_bool_IsClosed_Variable) == 0x000138, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetDistanceTo_ReturnValue) == 0x00013C, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000140, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue_2) == 0x000141, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_IsValid_ReturnValue_1) == 0x000142, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue_3) == 0x000143, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue_4) == 0x000144, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000148, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_BooleanAND_ReturnValue_5) == 0x000150, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetHighlightEffectsActor_ReturnValue) == 0x000158, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetHighlightEffectsActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_IsValid_ReturnValue_2) == 0x000160, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetSplineLength_ReturnValue) == 0x000164, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetSplineLength_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000168, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetCameraLocation_ReturnValue) == 0x000170, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetDistanceAlongSplineAtLocation_ReturnValue) == 0x000188, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetDistanceAlongSplineAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Lerp_ReturnValue) == 0x000190, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000198, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x0001A0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue) == 0x0001A8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Add_VectorVector_ReturnValue) == 0x0001C0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0001D8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0002C0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Update_Progress_Lerp_delta_seconds_ImplicitCast) == 0x0002C8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Update_Progress_Lerp_delta_seconds_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0002D0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x0002D8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_StartFadeToAlpha_Fade_duration_ImplicitCast) == 0x0002DC, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_StartFadeToAlpha_Fade_duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_RetriggerableDelay_Duration_ImplicitCast_1) == 0x0002E0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_RetriggerableDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x0002E8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x0002F0, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_EqualEqual_DoubleDouble_B_ImplicitCast) == 0x0002F8, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_EqualEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Lerp_Alpha_ImplicitCast) == 0x000300, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000308, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail, CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast) == 0x000310, "Member 'BP_ScentTrail_C_ExecuteUbergraph_BP_ScentTrail::CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_GetClueDataAsset \ +static_assert(alignof(BP_ScentTrail_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_ScentTrail_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_ScentTrail_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_ScentTrail_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_ScentTrail_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents) == 0x000028, "Wrong size on BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents, Out_value) == 0x000010, "Member 'BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents::Out_value' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents, CallFunc_Array_Add_ReturnValue) == 0x000020, "Member 'BP_ScentTrail_C_GetHeightenedSensesSceneCaptureComponents::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_GetMeshComponent \ +static_assert(alignof(BP_ScentTrail_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_ScentTrail_C_GetMeshComponent"); \ +static_assert(sizeof(BP_ScentTrail_C_GetMeshComponent) == 0x000008, "Wrong size on BP_ScentTrail_C_GetMeshComponent"); \ +static_assert(offsetof(BP_ScentTrail_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_IsVisibleInHS \ +static_assert(alignof(BP_ScentTrail_C_IsVisibleInHS) == 0x000001, "Wrong alignment on BP_ScentTrail_C_IsVisibleInHS"); \ +static_assert(sizeof(BP_ScentTrail_C_IsVisibleInHS) == 0x000002, "Wrong size on BP_ScentTrail_C_IsVisibleInHS"); \ +static_assert(offsetof(BP_ScentTrail_C_IsVisibleInHS, Visibility_in_HS) == 0x000000, "Member 'BP_ScentTrail_C_IsVisibleInHS::Visibility_in_HS' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_IsVisibleInHS, CallFunc_ObjectHasTag_ReturnValue) == 0x000001, "Member 'BP_ScentTrail_C_IsVisibleInHS::CallFunc_ObjectHasTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_OnWaypointAdded \ +static_assert(alignof(BP_ScentTrail_C_OnWaypointAdded) == 0x000008, "Wrong alignment on BP_ScentTrail_C_OnWaypointAdded"); \ +static_assert(sizeof(BP_ScentTrail_C_OnWaypointAdded) == 0x000018, "Wrong size on BP_ScentTrail_C_OnWaypointAdded"); \ +static_assert(offsetof(BP_ScentTrail_C_OnWaypointAdded, Tag) == 0x000000, "Member 'BP_ScentTrail_C_OnWaypointAdded::Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_OnWaypointAdded, Waypoint_0) == 0x000010, "Member 'BP_ScentTrail_C_OnWaypointAdded::Waypoint_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Play_Scent_Audio \ +static_assert(alignof(BP_ScentTrail_C_Play_Scent_Audio) == 0x000004, "Wrong alignment on BP_ScentTrail_C_Play_Scent_Audio"); \ +static_assert(sizeof(BP_ScentTrail_C_Play_Scent_Audio) == 0x000028, "Wrong size on BP_ScentTrail_C_Play_Scent_Audio"); \ +static_assert(offsetof(BP_ScentTrail_C_Play_Scent_Audio, Play) == 0x000000, "Member 'BP_ScentTrail_C_Play_Scent_Audio::Play' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Play_Scent_Audio, Temp_delegate_Variable) == 0x000004, "Member 'BP_ScentTrail_C_Play_Scent_Audio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Play_Scent_Audio, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_ScentTrail_C_Play_Scent_Audio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Play_Scent_Audio, CallFunc_Not_PreBool_ReturnValue) == 0x000024, "Member 'BP_ScentTrail_C_Play_Scent_Audio::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_ReceiveTick \ +static_assert(alignof(BP_ScentTrail_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_ScentTrail_C_ReceiveTick"); \ +static_assert(sizeof(BP_ScentTrail_C_ReceiveTick) == 0x000004, "Wrong size on BP_ScentTrail_C_ReceiveTick"); \ +static_assert(offsetof(BP_ScentTrail_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_ScentTrail_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Reset_fade_timeline_duration \ +static_assert(alignof(BP_ScentTrail_C_Reset_fade_timeline_duration) == 0x000008, "Wrong alignment on BP_ScentTrail_C_Reset_fade_timeline_duration"); \ +static_assert(sizeof(BP_ScentTrail_C_Reset_fade_timeline_duration) == 0x000018, "Wrong size on BP_ScentTrail_C_Reset_fade_timeline_duration"); \ +static_assert(offsetof(BP_ScentTrail_C_Reset_fade_timeline_duration, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_Reset_fade_timeline_duration::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Reset_fade_timeline_duration, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000008, "Member 'BP_ScentTrail_C_Reset_fade_timeline_duration::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Reset_fade_timeline_duration, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000010, "Member 'BP_ScentTrail_C_Reset_fade_timeline_duration::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_SetVisibilityInGame \ +static_assert(alignof(BP_ScentTrail_C_SetVisibilityInGame) == 0x000001, "Wrong alignment on BP_ScentTrail_C_SetVisibilityInGame"); \ +static_assert(sizeof(BP_ScentTrail_C_SetVisibilityInGame) == 0x000002, "Wrong size on BP_ScentTrail_C_SetVisibilityInGame"); \ +static_assert(offsetof(BP_ScentTrail_C_SetVisibilityInGame, bNewVisibility) == 0x000000, "Member 'BP_ScentTrail_C_SetVisibilityInGame::bNewVisibility' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_SetVisibilityInGame, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'BP_ScentTrail_C_SetVisibilityInGame::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_SetVisionVisibility \ +static_assert(alignof(BP_ScentTrail_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_ScentTrail_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_ScentTrail_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_ScentTrail_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_ScentTrail_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_ScentTrail_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_StartFadeToAlpha \ +static_assert(alignof(BP_ScentTrail_C_StartFadeToAlpha) == 0x000008, "Wrong alignment on BP_ScentTrail_C_StartFadeToAlpha"); \ +static_assert(sizeof(BP_ScentTrail_C_StartFadeToAlpha) == 0x000010, "Wrong size on BP_ScentTrail_C_StartFadeToAlpha"); \ +static_assert(offsetof(BP_ScentTrail_C_StartFadeToAlpha, Fade_Duration_0) == 0x000000, "Member 'BP_ScentTrail_C_StartFadeToAlpha::Fade_Duration_0' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_StartFadeToAlpha, Target_alpha_0) == 0x000008, "Member 'BP_ScentTrail_C_StartFadeToAlpha::Target_alpha_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_TrySetWaypointDistance \ +static_assert(alignof(BP_ScentTrail_C_TrySetWaypointDistance) == 0x000008, "Wrong alignment on BP_ScentTrail_C_TrySetWaypointDistance"); \ +static_assert(sizeof(BP_ScentTrail_C_TrySetWaypointDistance) == 0x000050, "Wrong size on BP_ScentTrail_C_TrySetWaypointDistance"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000008, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000010, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_GetSlotWidget_ReturnValue) == 0x000020, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, K2Node_DynamicCast_AsWBP_Quest_Progress) == 0x000028, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::K2Node_DynamicCast_AsWBP_Quest_Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_Get_Quest_Waypoints_Container_Quest_waypoint_container) == 0x000038, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_Get_Quest_Waypoints_Container_Quest_waypoint_container' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, CallFunc_GetIndicatorForTargetActor_ReturnValue) == 0x000040, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::CallFunc_GetIndicatorForTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_TrySetWaypointDistance, K2Node_VariableSet_DisappearingDistance_ImplicitCast) == 0x000048, "Member 'BP_ScentTrail_C_TrySetWaypointDistance::K2Node_VariableSet_DisappearingDistance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Update_all_material_alphas \ +static_assert(alignof(BP_ScentTrail_C_Update_all_material_alphas) == 0x000008, "Wrong alignment on BP_ScentTrail_C_Update_all_material_alphas"); \ +static_assert(sizeof(BP_ScentTrail_C_Update_all_material_alphas) == 0x000098, "Wrong size on BP_ScentTrail_C_Update_all_material_alphas"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, AppearProgressLocal) == 0x000000, "Member 'BP_ScentTrail_C_Update_all_material_alphas::AppearProgressLocal' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, Progress) == 0x000008, "Member 'BP_ScentTrail_C_Update_all_material_alphas::Progress' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, mc) == 0x000010, "Member 'BP_ScentTrail_C_Update_all_material_alphas::mc' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, SniffScaleEnd) == 0x000018, "Member 'BP_ScentTrail_C_Update_all_material_alphas::SniffScaleEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, start_pos) == 0x000020, "Member 'BP_ScentTrail_C_Update_all_material_alphas::start_pos' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, SniffScale) == 0x000038, "Member 'BP_ScentTrail_C_Update_all_material_alphas::SniffScale' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, Temp_int_Array_Index_Variable) == 0x000040, "Member 'BP_ScentTrail_C_Update_all_material_alphas::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, Temp_int_Loop_Counter_Variable) == 0x000044, "Member 'BP_ScentTrail_C_Update_all_material_alphas::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000048, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000058, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000060, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_GetProgressNormalised_ReturnValue) == 0x000068, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_GetProgressNormalised_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000070, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Array_Length_ReturnValue) == 0x000078, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Array_Get_Item) == 0x000080, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_Less_IntInt_ReturnValue) == 0x000088, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast) == 0x00008C, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast_1) == 0x000090, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_all_material_alphas, CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast_2) == 0x000094, "Member 'BP_ScentTrail_C_Update_all_material_alphas::CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Update_Audio_Position \ +static_assert(alignof(BP_ScentTrail_C_Update_Audio_Position) == 0x000008, "Wrong alignment on BP_ScentTrail_C_Update_Audio_Position"); \ +static_assert(sizeof(BP_ScentTrail_C_Update_Audio_Position) == 0x000118, "Wrong size on BP_ScentTrail_C_Update_Audio_Position"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Audio_Position, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000000, "Member 'BP_ScentTrail_C_Update_Audio_Position::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Audio_Position, CallFunc_GetClosestLocationOnSpline_ReturnValue) == 0x0000E8, "Member 'BP_ScentTrail_C_Update_Audio_Position::CallFunc_GetClosestLocationOnSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Audio_Position, CallFunc_VLerp_ReturnValue) == 0x000100, "Member 'BP_ScentTrail_C_Update_Audio_Position::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Update_Progress_Lerp \ +static_assert(alignof(BP_ScentTrail_C_Update_Progress_Lerp) == 0x000008, "Wrong alignment on BP_ScentTrail_C_Update_Progress_Lerp"); \ +static_assert(sizeof(BP_ScentTrail_C_Update_Progress_Lerp) == 0x000040, "Wrong size on BP_ScentTrail_C_Update_Progress_Lerp"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, Delta_Seconds) == 0x000000, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::Delta_Seconds' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_GetProgress_ReturnValue) == 0x000018, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_GetProgress_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_FMin_ReturnValue) == 0x000020, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_Lerp_ReturnValue) == 0x000028, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_FMin_B_ImplicitCast) == 0x000030, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_FMin_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Progress_Lerp, CallFunc_Lerp_B_ImplicitCast) == 0x000038, "Member 'BP_ScentTrail_C_Update_Progress_Lerp::CallFunc_Lerp_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_Update_Waypoint_Location \ +static_assert(alignof(BP_ScentTrail_C_Update_Waypoint_Location) == 0x000008, "Wrong alignment on BP_ScentTrail_C_Update_Waypoint_Location"); \ +static_assert(sizeof(BP_ScentTrail_C_Update_Waypoint_Location) == 0x000118, "Wrong size on BP_ScentTrail_C_Update_Waypoint_Location"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Waypoint_Location, Visibility) == 0x000000, "Member 'BP_ScentTrail_C_Update_Waypoint_Location::Visibility' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Waypoint_Location, CallFunc_GetFurthestLocation_ReturnValue) == 0x000008, "Member 'BP_ScentTrail_C_Update_Waypoint_Location::CallFunc_GetFurthestLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Waypoint_Location, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_ScentTrail_C_Update_Waypoint_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Waypoint_Location, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000028, "Member 'BP_ScentTrail_C_Update_Waypoint_Location::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_Update_Waypoint_Location, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000110, "Member 'BP_ScentTrail_C_Update_Waypoint_Location::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_UserConstructionScript \ +static_assert(alignof(BP_ScentTrail_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_ScentTrail_C_UserConstructionScript"); \ +static_assert(sizeof(BP_ScentTrail_C_UserConstructionScript) == 0x0002A0, "Wrong size on BP_ScentTrail_C_UserConstructionScript"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Previous_spline_point_tangent) == 0x000000, "Member 'BP_ScentTrail_C_UserConstructionScript::Previous_spline_point_tangent' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Previous_spline_point_location) == 0x000018, "Member 'BP_ScentTrail_C_UserConstructionScript::Previous_spline_point_location' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Next_spline_point_tangent) == 0x000030, "Member 'BP_ScentTrail_C_UserConstructionScript::Next_spline_point_tangent' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Next_spline_point_location) == 0x000048, "Member 'BP_ScentTrail_C_UserConstructionScript::Next_spline_point_location' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Current_spline_point_tangent) == 0x000060, "Member 'BP_ScentTrail_C_UserConstructionScript::Current_spline_point_tangent' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Current_spline_point_location) == 0x000078, "Member 'BP_ScentTrail_C_UserConstructionScript::Current_spline_point_location' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Current_index) == 0x000090, "Member 'BP_ScentTrail_C_UserConstructionScript::Current_index' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Last_spline_point_index) == 0x000094, "Member 'BP_ScentTrail_C_UserConstructionScript::Last_spline_point_index' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Spawned_component) == 0x000098, "Member 'BP_ScentTrail_C_UserConstructionScript::Spawned_component' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Temp_struct_Variable) == 0x0000A0, "Member 'BP_ScentTrail_C_UserConstructionScript::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Temp_struct_Variable_1) == 0x000100, "Member 'BP_ScentTrail_C_UserConstructionScript::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x000160, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_1) == 0x000168, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Temp_struct_Variable_2) == 0x000170, "Member 'BP_ScentTrail_C_UserConstructionScript::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_2) == 0x0001D0, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Subtract_IntInt_ReturnValue) == 0x0001D8, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x0001DC, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Location) == 0x0001E0, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Tangent) == 0x0001F8, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Tangent' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Location_1) == 0x000210, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_1) == 0x000228, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000240, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000244, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000248, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x000249, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Array_Add_ReturnValue) == 0x00024C, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, Temp_int_Variable) == 0x000250, "Member 'BP_ScentTrail_C_UserConstructionScript::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Not_PreBool_ReturnValue) == 0x000254, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_1) == 0x000258, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Location_2) == 0x000260, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Location_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_2) == 0x000278, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000290, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue_1) == 0x000291, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue_2) == 0x000292, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000293, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_GetNumberOfSplinePoints_ReturnValue) == 0x000294, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_GetNumberOfSplinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ScentTrail_C_UserConstructionScript, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x000298, "Member 'BP_ScentTrail_C_UserConstructionScript::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_VisionFadeInBegin \ +static_assert(alignof(BP_ScentTrail_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_ScentTrail_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_ScentTrail_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_ScentTrail_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_ScentTrail_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_ScentTrail_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_VisionFadeOutBegin \ +static_assert(alignof(BP_ScentTrail_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_ScentTrail_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_ScentTrail_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_ScentTrail_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_ScentTrail_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_ScentTrail_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentTrail_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_ScentTrail_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_ScentTrail_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_ScentTrail_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_ScentTrail_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_ScentTrail_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_ScentTrail_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ScentTrail_C \ +static_assert(alignof(ABP_ScentTrail_C) == 0x000008, "Wrong alignment on ABP_ScentTrail_C"); \ +static_assert(sizeof(ABP_ScentTrail_C) == 0x0003C0, "Wrong size on ABP_ScentTrail_C"); \ +static_assert(offsetof(ABP_ScentTrail_C, UberGraphFrame) == 0x000298, "Member 'ABP_ScentTrail_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, WrestlerSplineProgress) == 0x0002A0, "Member 'ABP_ScentTrail_C::WrestlerSplineProgress' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Niagara) == 0x0002A8, "Member 'ABP_ScentTrail_C::Niagara' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, OverlapBoxForPulse) == 0x0002B0, "Member 'ABP_ScentTrail_C::OverlapBoxForPulse' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, HeraMissionActor) == 0x0002B8, "Member 'ABP_ScentTrail_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, HeraAudio) == 0x0002C0, "Member 'ABP_ScentTrail_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Spline) == 0x0002C8, "Member 'ABP_ScentTrail_C::Spline' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, DefaultSceneRoot) == 0x0002D0, "Member 'ABP_ScentTrail_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Lerp_timeline_Alpha_D6539C1B44A4A97CADCE40BFC91D5300) == 0x0002D8, "Member 'ABP_ScentTrail_C::Lerp_timeline_Alpha_D6539C1B44A4A97CADCE40BFC91D5300' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Lerp_timeline__Direction_D6539C1B44A4A97CADCE40BFC91D5300) == 0x0002DC, "Member 'ABP_ScentTrail_C::Lerp_timeline__Direction_D6539C1B44A4A97CADCE40BFC91D5300' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Lerp_timeline) == 0x0002E0, "Member 'ABP_ScentTrail_C::Lerp_timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsEndPoint) == 0x0002E8, "Member 'ABP_ScentTrail_C::IsEndPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsStartPoint) == 0x0002E9, "Member 'ABP_ScentTrail_C::IsStartPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsSecondFromLast) == 0x0002EA, "Member 'ABP_ScentTrail_C::IsSecondFromLast' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Active) == 0x0002EB, "Member 'ABP_ScentTrail_C::Active' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, AllTrailsActiveString) == 0x0002F0, "Member 'ABP_ScentTrail_C::AllTrailsActiveString' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, ScentTrailActive_tag) == 0x0002F8, "Member 'ABP_ScentTrail_C::ScentTrailActive_tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, VampiricVisionObject_tag) == 0x000300, "Member 'ABP_ScentTrail_C::VampiricVisionObject_tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Fade_Duration) == 0x000308, "Member 'ABP_ScentTrail_C::Fade_Duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Target_alpha) == 0x000310, "Member 'ABP_ScentTrail_C::Target_alpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Current_alpha) == 0x000318, "Member 'ABP_ScentTrail_C::Current_alpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Start_alpha) == 0x000320, "Member 'ABP_ScentTrail_C::Start_alpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, All_spawned_components) == 0x000328, "Member 'ABP_ScentTrail_C::All_spawned_components' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Spline_Mesh_Scale) == 0x000338, "Member 'ABP_ScentTrail_C::Spline_Mesh_Scale' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Trail_Intensity_Multiplier) == 0x000348, "Member 'ABP_ScentTrail_C::Trail_Intensity_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, ProgressLerped) == 0x000350, "Member 'ABP_ScentTrail_C::ProgressLerped' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, AppearProgress) == 0x000358, "Member 'ABP_ScentTrail_C::AppearProgress' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, AppearSpeed) == 0x000360, "Member 'ABP_ScentTrail_C::AppearSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Waypoint) == 0x000368, "Member 'ABP_ScentTrail_C::Waypoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Waypoint_Invisibility_Distance) == 0x000370, "Member 'ABP_ScentTrail_C::Waypoint_Invisibility_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, WaypointDistanceSet) == 0x000378, "Member 'ABP_ScentTrail_C::WaypointDistanceSet' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsScentTrailActive) == 0x000379, "Member 'ABP_ScentTrail_C::IsScentTrailActive' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsInHeightenedSenses) == 0x00037A, "Member 'ABP_ScentTrail_C::IsInHeightenedSenses' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Fading) == 0x00037B, "Member 'ABP_ScentTrail_C::Fading' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, ReactiveCrosshair) == 0x000380, "Member 'ABP_ScentTrail_C::ReactiveCrosshair' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, UseReactiveCrosshair) == 0x000388, "Member 'ABP_ScentTrail_C::UseReactiveCrosshair' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, StartDelayComplete) == 0x000389, "Member 'ABP_ScentTrail_C::StartDelayComplete' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, TrailFadeComplete) == 0x00038A, "Member 'ABP_ScentTrail_C::TrailFadeComplete' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, Vampiric_Vision_data_asset) == 0x000390, "Member 'ABP_ScentTrail_C::Vampiric_Vision_data_asset' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, ReactiveCrosshairIsNeeded) == 0x000398, "Member 'ABP_ScentTrail_C::ReactiveCrosshairIsNeeded' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, In_Visible) == 0x000399, "Member 'ABP_ScentTrail_C::In_Visible' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, ScentShowing) == 0x00039A, "Member 'ABP_ScentTrail_C::ScentShowing' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, AudioPositionLerped) == 0x0003A0, "Member 'ABP_ScentTrail_C::AudioPositionLerped' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentTrail_C, IsPlayingAudio) == 0x0003B8, "Member 'ABP_ScentTrail_C::IsPlayingAudio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield) == 0x000004, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield) == 0x000040, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield, EntryPoint) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_WrestlerAttributeWidget_Shield_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Shield::K2Node_Event_InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments) == 0x000020, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments, CallFunc_GetAttributeValue_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments::CallFunc_GetAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetNumberOfSegments::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth) == 0x000028, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth, CallFunc_BreakVector2D_X) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth, CallFunc_BreakVector2D_Y) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth, CallFunc_BreakVector2D_InVec_ImplicitCast) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetSegmentWidth::CallFunc_BreakVector2D_InVec_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent) == 0x000040, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute) == 0x000004, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_GetAttributeValue_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_GetAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute_1) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_GetAttributeValue_ReturnValue_1) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_GetAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000020, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_SelectFloat_ReturnValue) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000030, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Shield_C_GetShieldPercent::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_SetBarSize \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_SetBarSize"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize) == 0x000068, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_SetBarSize"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_GetSegmentWidth_returnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_GetSegmentWidth_returnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_SlotAsCanvasSlot_ReturnValue_1) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_SlotAsCanvasSlot_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_GetNumberOfSegments_ReturnValue) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_GetNumberOfSegments_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_SlotAsCanvasSlot_ReturnValue_2) == 0x000030, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_SlotAsCanvasSlot_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_GetSize_ReturnValue) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_GetSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_BreakVector2D_X) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_BreakVector2D_Y) == 0x000050, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_SetBarSize, CallFunc_MakeVector2D_ReturnValue) == 0x000058, "Member 'WBP_WrestlerAttributeWidget_Shield_C_SetBarSize::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Shield_C_Tick \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Shield_C_Tick) == 0x000004, "Wrong alignment on WBP_WrestlerAttributeWidget_Shield_C_Tick"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Shield_C_Tick) == 0x00003C, "Wrong size on WBP_WrestlerAttributeWidget_Shield_C_Tick"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Shield_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Shield_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Shield_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_WrestlerAttributeWidget_Shield_C \ +static_assert(alignof(UWBP_WrestlerAttributeWidget_Shield_C) == 0x000008, "Wrong alignment on UWBP_WrestlerAttributeWidget_Shield_C"); \ +static_assert(sizeof(UWBP_WrestlerAttributeWidget_Shield_C) == 0x000368, "Wrong size on UWBP_WrestlerAttributeWidget_Shield_C"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Shield_C, UberGraphFrame) == 0x000348, "Member 'UWBP_WrestlerAttributeWidget_Shield_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Shield_C, Bar) == 0x000350, "Member 'UWBP_WrestlerAttributeWidget_Shield_C::Bar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Shield_C, SegmentSize) == 0x000358, "Member 'UWBP_WrestlerAttributeWidget_Shield_C::SegmentSize' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Shield_C, AttributeValue) == 0x000360, "Member 'UWBP_WrestlerAttributeWidget_Shield_C::AttributeValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood) == 0x000078, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, EntryPoint) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, CallFunc_GetAttributeSet_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::CallFunc_GetAttributeSet_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, K2Node_CustomEvent_AffectedAttribute) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::K2Node_CustomEvent_AffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, K2Node_CustomEvent_NewMax) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::K2Node_CustomEvent_NewMax' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, CallFunc_IsValid_ReturnValue) == 0x00004C, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, CallFunc_GetNumberOfSegments_ReturnValue) == 0x000050, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::CallFunc_GetNumberOfSegments_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, CallFunc_EqualEqual_GameplayAttributeGameplayAttribute_ReturnValue) == 0x000058, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::CallFunc_EqualEqual_GameplayAttributeGameplayAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, K2Node_CreateDelegate_OutputDelegate) == 0x00005C, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood, CallFunc_SetBarSize_InNumSegments_ImplicitCast) == 0x000070, "Member 'WBP_WrestlerAttributeWidget_Blood_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Blood::CallFunc_SetBarSize_InNumSegments_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent) == 0x000018, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent, CallFunc_GetAttributeFill_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent::CallFunc_GetAttributeFill_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetBloodPercent::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments) == 0x000018, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments, CallFunc_GetAttributeValue_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetNumberOfSegments::CallFunc_GetAttributeValue_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth) == 0x000028, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth, CallFunc_BreakVector2D_X) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth, CallFunc_BreakVector2D_Y) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth, CallFunc_BreakVector2D_InVec_ImplicitCast) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Blood_C_GetPipWidth::CallFunc_BreakVector2D_InVec_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event) == 0x000040, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event, AffectedAttribute) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event::AffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event, NewMax) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Blood_C_OnMaximumValueChangedEvent_Event::NewMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_SetBarSize \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_SetBarSize"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize) == 0x000058, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_SetBarSize"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, InNumSegments) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::InNumSegments' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_GetPipWidth_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_GetPipWidth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, K2Node_DynamicCast_AsCanvas_Panel_Slot) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::K2Node_DynamicCast_AsCanvas_Panel_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_GetSize_ReturnValue) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_GetSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_BreakVector2D_X) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_BreakVector2D_Y) == 0x000040, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_SetBarSize, CallFunc_MakeVector2D_ReturnValue) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Blood_C_SetBarSize::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition) == 0x0000B0, "Wrong size on WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_GetPipWidth_ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_GetPipWidth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, K2Node_DynamicCast_AsCanvas_Panel_Slot) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::K2Node_DynamicCast_AsCanvas_Panel_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_GetAttributeFill_ReturnValue) == 0x000020, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_GetAttributeFill_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_GetSize_ReturnValue) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_GetSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_BreakVector2D_X) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_BreakVector2D_Y) == 0x000040, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000058, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, CallFunc_MakeVector2D_ReturnValue) == 0x000068, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition, K2Node_MakeStruct_WidgetTransform) == 0x000078, "Member 'WBP_WrestlerAttributeWidget_Blood_C_UpdatePipShinePosition::K2Node_MakeStruct_WidgetTransform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_WrestlerAttributeWidget_Blood_C \ +static_assert(alignof(UWBP_WrestlerAttributeWidget_Blood_C) == 0x000008, "Wrong alignment on UWBP_WrestlerAttributeWidget_Blood_C"); \ +static_assert(sizeof(UWBP_WrestlerAttributeWidget_Blood_C) == 0x000370, "Wrong size on UWBP_WrestlerAttributeWidget_Blood_C"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Blood_C, UberGraphFrame) == 0x000348, "Member 'UWBP_WrestlerAttributeWidget_Blood_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Blood_C, OnPipFilled) == 0x000350, "Member 'UWBP_WrestlerAttributeWidget_Blood_C::OnPipFilled' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Blood_C, Bar) == 0x000358, "Member 'UWBP_WrestlerAttributeWidget_Blood_C::Bar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Blood_C, PipShine) == 0x000360, "Member 'UWBP_WrestlerAttributeWidget_Blood_C::PipShine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Blood_C, PipWidth) == 0x000368, "Member 'UWBP_WrestlerAttributeWidget_Blood_C::PipWidth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PipeClimbCooldown_C \ +static_assert(alignof(UGE_PipeClimbCooldown_C) == 0x000008, "Wrong alignment on UGE_PipeClimbCooldown_C"); \ +static_assert(sizeof(UGE_PipeClimbCooldown_C) == 0x000A70, "Wrong size on UGE_PipeClimbCooldown_C"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health) == 0x000068, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, EntryPoint) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, CallFunc_GetAttributeSet_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::CallFunc_GetAttributeSet_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, K2Node_CustomEvent_AffectedAttribute) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::K2Node_CustomEvent_AffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, K2Node_CustomEvent_NewMax) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::K2Node_CustomEvent_NewMax' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, CallFunc_IsValid_ReturnValue) == 0x00004C, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, CallFunc_EqualEqual_GameplayAttributeGameplayAttribute_ReturnValue) == 0x00004D, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::CallFunc_EqualEqual_GameplayAttributeGameplayAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, K2Node_CreateDelegate_OutputDelegate) == 0x000050, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health, CallFunc_UpdateMaxSize_InVal_ImplicitCast) == 0x000060, "Member 'WBP_WrestlerAttributeWidget_Health_C_ExecuteUbergraph_WBP_WrestlerAttributeWidget_Health::CallFunc_UpdateMaxSize_InVal_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage) == 0x000018, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage, CallFunc_GetAttributeFill_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage::CallFunc_GetAttributeFill_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetHealthPercentage::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments) == 0x000020, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments, CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments::CallFunc_GetAttributeValue_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments, CallFunc_GetAttributeValue_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments::CallFunc_GetAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetNumberOfSegments::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth) == 0x000028, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth, ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth, CallFunc_BreakVector2D_X) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth, CallFunc_BreakVector2D_Y) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth, CallFunc_BreakVector2D_InVec_ImplicitCast) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Health_C_GetSegmentWidth::CallFunc_BreakVector2D_InVec_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_PreConstruct \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_PreConstruct"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_PreConstruct) == 0x000001, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_PreConstruct"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_SetBarSize \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_SetBarSize"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize) == 0x000058, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_SetBarSize"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_GetNumberOfSegments_ReturnValue) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_GetNumberOfSegments_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_GetSegmentWidth_returnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_GetSegmentWidth_returnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_GetSize_ReturnValue) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_GetSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_BreakVector2D_X) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_BreakVector2D_Y) == 0x000040, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_SetBarSize, CallFunc_MakeVector2D_ReturnValue) == 0x000048, "Member 'WBP_WrestlerAttributeWidget_Health_C_SetBarSize::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth) == 0x000040, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth, AffectedAttribute) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth::AffectedAttribute' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth, NewMax) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxHealth::NewMax' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize \ +static_assert(alignof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize) == 0x000008, "Wrong alignment on WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize"); \ +static_assert(sizeof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize) == 0x000048, "Wrong size on WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, InVal) == 0x000000, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::InVal' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000008, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_GetSize_ReturnValue) == 0x000018, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_GetSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_BreakVector2D_X) == 0x000028, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_BreakVector2D_Y) == 0x000030, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize, CallFunc_MakeVector2D_ReturnValue) == 0x000038, "Member 'WBP_WrestlerAttributeWidget_Health_C_UpdateMaxSize::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_WrestlerAttributeWidget_Health_C \ +static_assert(alignof(UWBP_WrestlerAttributeWidget_Health_C) == 0x000008, "Wrong alignment on UWBP_WrestlerAttributeWidget_Health_C"); \ +static_assert(sizeof(UWBP_WrestlerAttributeWidget_Health_C) == 0x000360, "Wrong size on UWBP_WrestlerAttributeWidget_Health_C"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Health_C, UberGraphFrame) == 0x000348, "Member 'UWBP_WrestlerAttributeWidget_Health_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Health_C, Bar) == 0x000350, "Member 'UWBP_WrestlerAttributeWidget_Health_C::Bar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_WrestlerAttributeWidget_Health_C, SegmentSize) == 0x000358, "Member 'UWBP_WrestlerAttributeWidget_Health_C::SegmentSize' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher \ +static_assert(alignof(TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher) == 0x000004, "Wrong alignment on TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher"); \ +static_assert(sizeof(TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher) == 0x000008, "Wrong size on TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher"); \ +static_assert(offsetof(TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher, EntryPoint) == 0x000000, "Member 'TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher, K2Node_Event_InCurrentInputType) == 0x000004, "Member 'TCR_IconSwitcher_C_ExecuteUbergraph_TCR_IconSwitcher::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_IconSwitcher_C_OnControllerSwitch \ +static_assert(alignof(TCR_IconSwitcher_C_OnControllerSwitch) == 0x000001, "Wrong alignment on TCR_IconSwitcher_C_OnControllerSwitch"); \ +static_assert(sizeof(TCR_IconSwitcher_C_OnControllerSwitch) == 0x000002, "Wrong size on TCR_IconSwitcher_C_OnControllerSwitch"); \ +static_assert(offsetof(TCR_IconSwitcher_C_OnControllerSwitch, InInput) == 0x000000, "Member 'TCR_IconSwitcher_C_OnControllerSwitch::InInput' has a wrong offset!"); \ +static_assert(offsetof(TCR_IconSwitcher_C_OnControllerSwitch, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'TCR_IconSwitcher_C_OnControllerSwitch::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_IconSwitcher_C_OnInputChanged \ +static_assert(alignof(TCR_IconSwitcher_C_OnInputChanged) == 0x000001, "Wrong alignment on TCR_IconSwitcher_C_OnInputChanged"); \ +static_assert(sizeof(TCR_IconSwitcher_C_OnInputChanged) == 0x000001, "Wrong size on TCR_IconSwitcher_C_OnInputChanged"); \ +static_assert(offsetof(TCR_IconSwitcher_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'TCR_IconSwitcher_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_IconSwitcher_C_SetIcon \ +static_assert(alignof(TCR_IconSwitcher_C_SetIcon) == 0x000008, "Wrong alignment on TCR_IconSwitcher_C_SetIcon"); \ +static_assert(sizeof(TCR_IconSwitcher_C_SetIcon) == 0x000008, "Wrong size on TCR_IconSwitcher_C_SetIcon"); \ +static_assert(offsetof(TCR_IconSwitcher_C_SetIcon, InTexture) == 0x000000, "Member 'TCR_IconSwitcher_C_SetIcon::InTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_IconSwitcher_C_UpdateIcons \ +static_assert(alignof(TCR_IconSwitcher_C_UpdateIcons) == 0x000008, "Wrong alignment on TCR_IconSwitcher_C_UpdateIcons"); \ +static_assert(sizeof(TCR_IconSwitcher_C_UpdateIcons) == 0x000018, "Wrong size on TCR_IconSwitcher_C_UpdateIcons"); \ +static_assert(offsetof(TCR_IconSwitcher_C_UpdateIcons, CallFunc_GetPlatformName_ReturnValue) == 0x000000, "Member 'TCR_IconSwitcher_C_UpdateIcons::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_IconSwitcher_C_UpdateIcons, CallFunc_Contains_ReturnValue) == 0x000010, "Member 'TCR_IconSwitcher_C_UpdateIcons::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_IconSwitcher_C_UpdateIcons, CallFunc_Contains_ReturnValue_1) == 0x000011, "Member 'TCR_IconSwitcher_C_UpdateIcons::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_IconSwitcher_C \ +static_assert(alignof(UTCR_IconSwitcher_C) == 0x000008, "Wrong alignment on UTCR_IconSwitcher_C"); \ +static_assert(sizeof(UTCR_IconSwitcher_C) == 0x000368, "Wrong size on UTCR_IconSwitcher_C"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, UberGraphFrame) == 0x000330, "Member 'UTCR_IconSwitcher_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, Image_63) == 0x000338, "Member 'UTCR_IconSwitcher_C::Image_63' has a wrong offset!"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, PSIcon) == 0x000340, "Member 'UTCR_IconSwitcher_C::PSIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, OnButtonClicked) == 0x000348, "Member 'UTCR_IconSwitcher_C::OnButtonClicked' has a wrong offset!"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, PCIcon) == 0x000358, "Member 'UTCR_IconSwitcher_C::PCIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_IconSwitcher_C, GamepadIcon) == 0x000360, "Member 'UTCR_IconSwitcher_C::GamepadIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault \ +static_assert(alignof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault) == 0x000008, "Wrong alignment on GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault"); \ +static_assert(sizeof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault) == 0x000110, "Wrong size on GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, EntryPoint) == 0x000000, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_ActorTimeDelay_ReturnValue) == 0x000008, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000010, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, K2Node_Event_bWasCancelled) == 0x000029, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000030, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000038, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetController_ReturnValue) == 0x000040, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetActorForwardVector_ReturnValue) == 0x000048, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000060, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, K2Node_CreateDelegate_OutputDelegate) == 0x000078, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000088, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A0, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0000B8, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000C0, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0000C8, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000E0, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000F8, "Member 'GA_Movement_LedgeVault_C_ExecuteUbergraph_GA_Movement_LedgeVault::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_LedgeVault_C_K2_OnEndAbility \ +static_assert(alignof(GA_Movement_LedgeVault_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Movement_LedgeVault_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Movement_LedgeVault_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Movement_LedgeVault_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Movement_LedgeVault_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_LedgeVault_C_Recenter_View \ +static_assert(alignof(GA_Movement_LedgeVault_C_Recenter_View) == 0x000008, "Wrong alignment on GA_Movement_LedgeVault_C_Recenter_View"); \ +static_assert(sizeof(GA_Movement_LedgeVault_C_Recenter_View) == 0x000040, "Wrong size on GA_Movement_LedgeVault_C_Recenter_View"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_Recenter_View, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_Movement_LedgeVault_C_Recenter_View::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_Recenter_View, CallFunc_GetController_ReturnValue) == 0x000008, "Member 'GA_Movement_LedgeVault_C_Recenter_View::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_Recenter_View, CallFunc_GetActorForwardVector_ReturnValue) == 0x000010, "Member 'GA_Movement_LedgeVault_C_Recenter_View::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_LedgeVault_C_Recenter_View, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000028, "Member 'GA_Movement_LedgeVault_C_Recenter_View::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Movement_LedgeVault_C \ +static_assert(alignof(UGA_Movement_LedgeVault_C) == 0x000008, "Wrong alignment on UGA_Movement_LedgeVault_C"); \ +static_assert(sizeof(UGA_Movement_LedgeVault_C) == 0x000680, "Wrong size on UGA_Movement_LedgeVault_C"); \ +static_assert(offsetof(UGA_Movement_LedgeVault_C, UberGraphFrame) == 0x000668, "Member 'UGA_Movement_LedgeVault_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_LedgeVault_C, lerpDuration) == 0x000670, "Member 'UGA_Movement_LedgeVault_C::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_LedgeVault_C, stateDuration) == 0x000678, "Member 'UGA_Movement_LedgeVault_C::stateDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ABTestAltAbility_C \ +static_assert(alignof(UWBP_ABTestAltAbility_C) == 0x000008, "Wrong alignment on UWBP_ABTestAltAbility_C"); \ +static_assert(sizeof(UWBP_ABTestAltAbility_C) == 0x000300, "Wrong size on UWBP_ABTestAltAbility_C"); \ +static_assert(offsetof(UWBP_ABTestAltAbility_C, Image) == 0x0002E0, "Member 'UWBP_ABTestAltAbility_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ABTestAltAbility_C, Image_1) == 0x0002E8, "Member 'UWBP_ABTestAltAbility_C::Image_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ABTestAltAbility_C, Image_159) == 0x0002F0, "Member 'UWBP_ABTestAltAbility_C::Image_159' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ABTestAltAbility_C, TriggerProperty) == 0x0002F8, "Member 'UWBP_ABTestAltAbility_C::TriggerProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator \ +static_assert(alignof(WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator) == 0x000008, "Wrong alignment on WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator"); \ +static_assert(sizeof(WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator) == 0x000018, "Wrong size on WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator, EntryPoint) == 0x000000, "Member 'WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator, K2Node_Event_InTargetActor) == 0x000008, "Member 'WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator::K2Node_Event_InTargetActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator, K2Node_Event_InVisibility) == 0x000010, "Member 'WBP_QuestWaypointIndicator_C_ExecuteUbergraph_WBP_QuestWaypointIndicator::K2Node_Event_InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility \ +static_assert(alignof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility) == 0x000004, "Wrong alignment on WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility"); \ +static_assert(sizeof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility) == 0x000010, "Wrong size on WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, ReturnValue) == 0x000000, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, Temp_bool_Variable) == 0x000001, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, Temp_byte_Variable) == 0x000002, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, Temp_byte_Variable_1) == 0x000003, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, CallFunc_IsLocationGameplayTagInInterior_ReturnValue) == 0x00000C, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::CallFunc_IsLocationGameplayTagInInterior_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility, K2Node_Select_Default) == 0x00000D, "Member 'WBP_QuestWaypointIndicator_C_Get_IndicatorPanel_Visibility::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestWaypointIndicator_C_RefreshWidget \ +static_assert(alignof(WBP_QuestWaypointIndicator_C_RefreshWidget) == 0x000008, "Wrong alignment on WBP_QuestWaypointIndicator_C_RefreshWidget"); \ +static_assert(sizeof(WBP_QuestWaypointIndicator_C_RefreshWidget) == 0x000008, "Wrong size on WBP_QuestWaypointIndicator_C_RefreshWidget"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_RefreshWidget, InTargetActor) == 0x000000, "Member 'WBP_QuestWaypointIndicator_C_RefreshWidget::InTargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestWaypointIndicator_C_SetDistanceVisibility \ +static_assert(alignof(WBP_QuestWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong alignment on WBP_QuestWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(sizeof(WBP_QuestWaypointIndicator_C_SetDistanceVisibility) == 0x000001, "Wrong size on WBP_QuestWaypointIndicator_C_SetDistanceVisibility"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_SetDistanceVisibility, InVisibility) == 0x000000, "Member 'WBP_QuestWaypointIndicator_C_SetDistanceVisibility::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestWaypointIndicator_C_ShowWaypointDir \ +static_assert(alignof(WBP_QuestWaypointIndicator_C_ShowWaypointDir) == 0x000008, "Wrong alignment on WBP_QuestWaypointIndicator_C_ShowWaypointDir"); \ +static_assert(sizeof(WBP_QuestWaypointIndicator_C_ShowWaypointDir) == 0x000020, "Wrong size on WBP_QuestWaypointIndicator_C_ShowWaypointDir"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_ReturnValue) == 0x000000, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_ReturnValue_1) == 0x000001, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_ReturnValue_2) == 0x000002, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_Value_ImplicitCast) == 0x000008, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_Value_ImplicitCast_1) == 0x000010, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestWaypointIndicator_C_ShowWaypointDir, CallFunc_InRange_FloatFloat_Value_ImplicitCast_2) == 0x000018, "Member 'WBP_QuestWaypointIndicator_C_ShowWaypointDir::CallFunc_InRange_FloatFloat_Value_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestWaypointIndicator_C \ +static_assert(alignof(UWBP_QuestWaypointIndicator_C) == 0x000008, "Wrong alignment on UWBP_QuestWaypointIndicator_C"); \ +static_assert(sizeof(UWBP_QuestWaypointIndicator_C) == 0x000330, "Wrong size on UWBP_QuestWaypointIndicator_C"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, UberGraphFrame) == 0x0002F0, "Member 'UWBP_QuestWaypointIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointCentral) == 0x0002F8, "Member 'UWBP_QuestWaypointIndicator_C::WaypointCentral' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointDistance) == 0x000300, "Member 'UWBP_QuestWaypointIndicator_C::WaypointDistance' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointDown) == 0x000308, "Member 'UWBP_QuestWaypointIndicator_C::WaypointDown' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointLeft) == 0x000310, "Member 'UWBP_QuestWaypointIndicator_C::WaypointLeft' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointRight) == 0x000318, "Member 'UWBP_QuestWaypointIndicator_C::WaypointRight' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, WaypointUp) == 0x000320, "Member 'UWBP_QuestWaypointIndicator_C::WaypointUp' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestWaypointIndicator_C, NewVar) == 0x000328, "Member 'UWBP_QuestWaypointIndicator_C::NewVar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestWaypointContainer_C \ +static_assert(alignof(UWBP_QuestWaypointContainer_C) == 0x000008, "Wrong alignment on UWBP_QuestWaypointContainer_C"); \ +static_assert(sizeof(UWBP_QuestWaypointContainer_C) == 0x000360, "Wrong size on UWBP_QuestWaypointContainer_C"); \ + +#define DUMPER7_ASSERTS_UBP_RichTextDecorator_C \ +static_assert(alignof(UBP_RichTextDecorator_C) == 0x000008, "Wrong alignment on UBP_RichTextDecorator_C"); \ +static_assert(sizeof(UBP_RichTextDecorator_C) == 0x000030, "Wrong size on UBP_RichTextDecorator_C"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget \ +static_assert(alignof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget"); \ +static_assert(sizeof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget) == 0x000020, "Wrong size on WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, EntryPoint) == 0x000000, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, K2Node_Event_InCurrentInputType) == 0x000004, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, CallFunc_GetVisibility_ReturnValue) == 0x000005, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::CallFunc_GetVisibility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, K2Node_SwitchEnum_CmpSuccess) == 0x000006, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget, K2Node_Event_InFocusEvent) == 0x000014, "Member 'WBP_TutorialWidget_C_ExecuteUbergraph_WBP_TutorialWidget::K2Node_Event_InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_GenderedTitle \ +static_assert(alignof(WBP_TutorialWidget_C_GenderedTitle) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_GenderedTitle"); \ +static_assert(sizeof(WBP_TutorialWidget_C_GenderedTitle) == 0x0000C0, "Wrong size on WBP_TutorialWidget_C_GenderedTitle"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, InText) == 0x000000, "Member 'WBP_TutorialWidget_C_GenderedTitle::InText' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, Title) == 0x000018, "Member 'WBP_TutorialWidget_C_GenderedTitle::Title' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_GetGameInstance_ReturnValue) == 0x000030, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, K2Node_DynamicCast_AsHera_Game_Instance) == 0x000038, "Member 'WBP_TutorialWidget_C_GenderedTitle::K2Node_DynamicCast_AsHera_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_TutorialWidget_C_GenderedTitle::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Conv_TextToString_ReturnValue) == 0x000048, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_GetPlayerVariant_ReturnValue) == 0x000058, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Split_LeftS) == 0x000060, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Split_RightS) == 0x000070, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Split_ReturnValue) == 0x000080, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, K2Node_SwitchEnum_CmpSuccess) == 0x000081, "Member 'WBP_TutorialWidget_C_GenderedTitle::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Conv_StringToText_ReturnValue) == 0x000088, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Conv_StringToText_ReturnValue_1) == 0x0000A0, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_GenderedTitle, CallFunc_Contains_ReturnValue) == 0x0000B8, "Member 'WBP_TutorialWidget_C_GenderedTitle::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_OnFocusLost \ +static_assert(alignof(WBP_TutorialWidget_C_OnFocusLost) == 0x000004, "Wrong alignment on WBP_TutorialWidget_C_OnFocusLost"); \ +static_assert(sizeof(WBP_TutorialWidget_C_OnFocusLost) == 0x000008, "Wrong size on WBP_TutorialWidget_C_OnFocusLost"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnFocusLost, InFocusEvent) == 0x000000, "Member 'WBP_TutorialWidget_C_OnFocusLost::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_OnInputChanged \ +static_assert(alignof(WBP_TutorialWidget_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_TutorialWidget_C_OnInputChanged"); \ +static_assert(sizeof(WBP_TutorialWidget_C_OnInputChanged) == 0x000001, "Wrong size on WBP_TutorialWidget_C_OnInputChanged"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_TutorialWidget_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_OnKeyDown \ +static_assert(alignof(WBP_TutorialWidget_C_OnKeyDown) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_OnKeyDown"); \ +static_assert(sizeof(WBP_TutorialWidget_C_OnKeyDown) == 0x0002F0, "Wrong size on WBP_TutorialWidget_C_OnKeyDown"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, MyGeometry) == 0x000000, "Member 'WBP_TutorialWidget_C_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, InKeyEvent) == 0x000038, "Member 'WBP_TutorialWidget_C_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, ReturnValue) == 0x000078, "Member 'WBP_TutorialWidget_C_OnKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_GetPlayerController_ReturnValue) == 0x000130, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_GetKey_ReturnValue) == 0x000138, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_Key_GetDisplayName_ReturnValue) == 0x000150, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_Key_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_Conv_TextToString_ReturnValue) == 0x000168, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_Contains_ReturnValue) == 0x000178, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x000179, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_BooleanOR_ReturnValue) == 0x00017A, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue) == 0x000180, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_OnKeyDown, CallFunc_Unhandled_ReturnValue) == 0x000238, "Member 'WBP_TutorialWidget_C_OnKeyDown::CallFunc_Unhandled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_SetTutorial \ +static_assert(alignof(WBP_TutorialWidget_C_SetTutorial) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_SetTutorial"); \ +static_assert(sizeof(WBP_TutorialWidget_C_SetTutorial) == 0x000220, "Wrong size on WBP_TutorialWidget_C_SetTutorial"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, TutorialData) == 0x000000, "Member 'WBP_TutorialWidget_C_SetTutorial::TutorialData' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, ControllerDesciption) == 0x0000A0, "Member 'WBP_TutorialWidget_C_SetTutorial::ControllerDesciption' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x0000B8, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_GetCurrentGamepadName_ReturnValue) == 0x0000C0, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_GetCurrentGamepadName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue) == 0x0000C8, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToString_ReturnValue) == 0x0000E0, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_1) == 0x0000F0, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Contains_ReturnValue) == 0x000108, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_2) == 0x000110, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_3) == 0x000128, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_4) == 0x000140, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_5) == 0x000158, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_6) == 0x000170, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_7) == 0x000188, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_8) == 0x0001A0, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_9) == 0x0001B8, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_10) == 0x0001D0, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_Conv_NameToText_ReturnValue_11) == 0x0001E8, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_Conv_NameToText_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_GenderedTitle_Title) == 0x000200, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_GenderedTitle_Title' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorial, CallFunc_IsPlayerUsingController_ReturnValue) == 0x000218, "Member 'WBP_TutorialWidget_C_SetTutorial::CallFunc_IsPlayerUsingController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_SetTutorialDescription \ +static_assert(alignof(WBP_TutorialWidget_C_SetTutorialDescription) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_SetTutorialDescription"); \ +static_assert(sizeof(WBP_TutorialWidget_C_SetTutorialDescription) == 0x000130, "Wrong size on WBP_TutorialWidget_C_SetTutorialDescription"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, DescriptionText) == 0x000000, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::DescriptionText' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, IconID) == 0x000018, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::IconID' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, SecondaryIconID) == 0x000030, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::SecondaryIconID' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, SymbolIcon) == 0x000048, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::SymbolIcon' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, SecondarySymbolIcon) == 0x000060, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::SecondarySymbolIcon' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_TextToString_ReturnValue) == 0x000078, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_TextToString_ReturnValue_1) == 0x000088, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_TextToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_TextToString_ReturnValue_2) == 0x000098, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_TextToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_TextToString_ReturnValue_3) == 0x0000A8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_TextToString_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_TextToString_ReturnValue_4) == 0x0000B8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_TextToString_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Replace_ReturnValue) == 0x0000C8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Replace_ReturnValue_1) == 0x0000D8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Replace_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Replace_ReturnValue_2) == 0x0000E8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Replace_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Replace_ReturnValue_3) == 0x0000F8, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Replace_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Replace_ReturnValue_4) == 0x000108, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Replace_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialDescription, CallFunc_Conv_StringToText_ReturnValue) == 0x000118, "Member 'WBP_TutorialWidget_C_SetTutorialDescription::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TutorialWidget_C_SetTutorialHeader \ +static_assert(alignof(WBP_TutorialWidget_C_SetTutorialHeader) == 0x000008, "Wrong alignment on WBP_TutorialWidget_C_SetTutorialHeader"); \ +static_assert(sizeof(WBP_TutorialWidget_C_SetTutorialHeader) == 0x000018, "Wrong size on WBP_TutorialWidget_C_SetTutorialHeader"); \ +static_assert(offsetof(WBP_TutorialWidget_C_SetTutorialHeader, HeaderText) == 0x000000, "Member 'WBP_TutorialWidget_C_SetTutorialHeader::HeaderText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TutorialWidget_C \ +static_assert(alignof(UWBP_TutorialWidget_C) == 0x000008, "Wrong alignment on UWBP_TutorialWidget_C"); \ +static_assert(sizeof(UWBP_TutorialWidget_C) == 0x000420, "Wrong size on UWBP_TutorialWidget_C"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, UberGraphFrame) == 0x000330, "Member 'UWBP_TutorialWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, Border01) == 0x000338, "Member 'UWBP_TutorialWidget_C::Border01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, Border02) == 0x000340, "Member 'UWBP_TutorialWidget_C::Border02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, Divider_Line) == 0x000348, "Member 'UWBP_TutorialWidget_C::Divider_Line' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, TaskBG) == 0x000350, "Member 'UWBP_TutorialWidget_C::TaskBG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, TutorialDescription) == 0x000358, "Member 'UWBP_TutorialWidget_C::TutorialDescription' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, TutorialTitleText) == 0x000360, "Member 'UWBP_TutorialWidget_C::TutorialTitleText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, Tutorial_Data) == 0x000368, "Member 'UWBP_TutorialWidget_C::Tutorial_Data' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, TutorialDataSet) == 0x000408, "Member 'UWBP_TutorialWidget_C::TutorialDataSet' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, FeedBlock) == 0x000409, "Member 'UWBP_TutorialWidget_C::FeedBlock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TutorialWidget_C, OnForceHide) == 0x000410, "Member 'UWBP_TutorialWidget_C::OnForceHide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt \ +static_assert(alignof(WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt) == 0x000004, "Wrong alignment on WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt"); \ +static_assert(sizeof(WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt) == 0x000008, "Wrong size on WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt, EntryPoint) == 0x000000, "Member 'WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt, K2Node_Event_InCurrentInputType) == 0x000004, "Member 'WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt, K2Node_SwitchEnum_CmpSuccess) == 0x000005, "Member 'WBP_NotificationPrompt_C_ExecuteUbergraph_WBP_NotificationPrompt::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotificationPrompt_C_OnInputChanged \ +static_assert(alignof(WBP_NotificationPrompt_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_NotificationPrompt_C_OnInputChanged"); \ +static_assert(sizeof(WBP_NotificationPrompt_C_OnInputChanged) == 0x000001, "Wrong size on WBP_NotificationPrompt_C_OnInputChanged"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_NotificationPrompt_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NotificationPrompt_C_SetIcons \ +static_assert(alignof(WBP_NotificationPrompt_C_SetIcons) == 0x000008, "Wrong alignment on WBP_NotificationPrompt_C_SetIcons"); \ +static_assert(sizeof(WBP_NotificationPrompt_C_SetIcons) == 0x000030, "Wrong size on WBP_NotificationPrompt_C_SetIcons"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, Temp_bool_Variable) == 0x000000, "Member 'WBP_NotificationPrompt_C_SetIcons::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, CallFunc_IsPlayerUsingController_ReturnValue) == 0x000001, "Member 'WBP_NotificationPrompt_C_SetIcons::CallFunc_IsPlayerUsingController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, CallFunc_GetPlatformName_ReturnValue) == 0x000008, "Member 'WBP_NotificationPrompt_C_SetIcons::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, CallFunc_Contains_ReturnValue) == 0x000018, "Member 'WBP_NotificationPrompt_C_SetIcons::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, K2Node_Select_Default) == 0x000020, "Member 'WBP_NotificationPrompt_C_SetIcons::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_NotificationPrompt_C_SetIcons, CallFunc_Contains_ReturnValue_1) == 0x000028, "Member 'WBP_NotificationPrompt_C_SetIcons::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_NotificationPrompt_C \ +static_assert(alignof(UWBP_NotificationPrompt_C) == 0x000008, "Wrong alignment on UWBP_NotificationPrompt_C"); \ +static_assert(sizeof(UWBP_NotificationPrompt_C) == 0x000380, "Wrong size on UWBP_NotificationPrompt_C"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, UberGraphFrame) == 0x000330, "Member 'UWBP_NotificationPrompt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, ControllerP) == 0x000338, "Member 'UWBP_NotificationPrompt_C::ControllerP' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, ControllerX) == 0x000340, "Member 'UWBP_NotificationPrompt_C::ControllerX' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, KBM) == 0x000348, "Member 'UWBP_NotificationPrompt_C::KBM' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, PromptText) == 0x000350, "Member 'UWBP_NotificationPrompt_C::PromptText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, WidgetSwitcher_32) == 0x000358, "Member 'UWBP_NotificationPrompt_C::WidgetSwitcher_32' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, IsPC) == 0x000360, "Member 'UWBP_NotificationPrompt_C::IsPC' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NotificationPrompt_C, Label) == 0x000368, "Member 'UWBP_NotificationPrompt_C::Label' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWID_Unarmed_C \ +static_assert(alignof(UWID_Unarmed_C) == 0x000010, "Wrong alignment on UWID_Unarmed_C"); \ +static_assert(sizeof(UWID_Unarmed_C) == 0x0000D0, "Wrong size on UWID_Unarmed_C"); \ + +#define DUMPER7_ASSERTS_WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator \ +static_assert(alignof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator) == 0x000010, "Wrong alignment on WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator"); \ +static_assert(sizeof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator) == 0x000690, "Wrong size on WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, EntryPoint) == 0x000000, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable) == 0x000008, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_PlayAnimation_ReturnValue) == 0x000010, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_1) == 0x000018, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_2) == 0x000020, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_3) == 0x000028, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_4) == 0x000030, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_5) == 0x000038, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_object_Variable_6) == 0x000040, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_object_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable) == 0x000048, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable) == 0x00004C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_1) == 0x00005C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_2) == 0x00006C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_3) == 0x00007C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_4) == 0x00008C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_5) == 0x00009C, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_6) == 0x0000AC, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable_1) == 0x0000BC, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_7) == 0x0000C0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_8) == 0x0000D0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_9) == 0x0000E0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_10) == 0x0000F0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_11) == 0x000100, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_12) == 0x000110, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_13) == 0x000120, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable_2) == 0x000130, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_14) == 0x000138, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_15) == 0x000148, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_16) == 0x000158, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_17) == 0x000168, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_18) == 0x000178, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_19) == 0x000188, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_struct_Variable_20) == 0x000198, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_struct_Variable_20' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Event_bNewVisibility) == 0x0001A8, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Event_bNewVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable_3) == 0x0001A9, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_GetAnimationCurrentTime_ReturnValue) == 0x0001AC, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_GetAnimationCurrentTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable_4) == 0x0001B0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Event_InNewEnemyState) == 0x0001B1, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Event_InNewEnemyState' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Select_Default) == 0x0001B8, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Select_Default_1) == 0x0001C0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_MakeStruct_SlateColor) == 0x0001D0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_MakeStruct_SlateColor' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Select_Default_2) == 0x0001E4, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_MakeStruct_SlateBrush) == 0x000200, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_MakeStruct_SlateBrush' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_MakeStruct_SlateColor_1) == 0x0002D0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_MakeStruct_SlateColor_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_MakeStruct_SlateBrush_1) == 0x0002F0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_MakeStruct_SlateBrush_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Select_Default_3) == 0x0003C0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_MakeStruct_ProgressBarStyle) == 0x0003D0, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_MakeStruct_ProgressBarStyle' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_SwitchEnum_CmpSuccess) == 0x000660, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_byte_Variable_5) == 0x000661, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_byte_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, Temp_bool_Variable) == 0x000662, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, K2Node_Select_Default_4) == 0x000663, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000668, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_PlayAnimation_ReturnValue_1) == 0x000670, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_PlayAnimation_ReturnValue_2) == 0x000678, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator, CallFunc_PlayAnimation_ReturnValue_3) == 0x000680, "Member 'WBP_StateIndicator_C_ExecuteUbergraph_WBP_StateIndicator::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_StateIndicator_C_OnVisibilityChange \ +static_assert(alignof(WBP_StateIndicator_C_OnVisibilityChange) == 0x000001, "Wrong alignment on WBP_StateIndicator_C_OnVisibilityChange"); \ +static_assert(sizeof(WBP_StateIndicator_C_OnVisibilityChange) == 0x000001, "Wrong size on WBP_StateIndicator_C_OnVisibilityChange"); \ +static_assert(offsetof(WBP_StateIndicator_C_OnVisibilityChange, bNewVisibility) == 0x000000, "Member 'WBP_StateIndicator_C_OnVisibilityChange::bNewVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_StateIndicator_C_SetEnemyIndicatorState \ +static_assert(alignof(WBP_StateIndicator_C_SetEnemyIndicatorState) == 0x000001, "Wrong alignment on WBP_StateIndicator_C_SetEnemyIndicatorState"); \ +static_assert(sizeof(WBP_StateIndicator_C_SetEnemyIndicatorState) == 0x000001, "Wrong size on WBP_StateIndicator_C_SetEnemyIndicatorState"); \ +static_assert(offsetof(WBP_StateIndicator_C_SetEnemyIndicatorState, InNewEnemyState) == 0x000000, "Member 'WBP_StateIndicator_C_SetEnemyIndicatorState::InNewEnemyState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_StateIndicator_C \ +static_assert(alignof(UWBP_StateIndicator_C) == 0x000008, "Wrong alignment on UWBP_StateIndicator_C"); \ +static_assert(sizeof(UWBP_StateIndicator_C) == 0x000330, "Wrong size on UWBP_StateIndicator_C"); \ +static_assert(offsetof(UWBP_StateIndicator_C, UberGraphFrame) == 0x0002F0, "Member 'UWBP_StateIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, DoubleArrow_LongerDelay) == 0x0002F8, "Member 'UWBP_StateIndicator_C::DoubleArrow_LongerDelay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, DoubleArrow) == 0x000300, "Member 'UWBP_StateIndicator_C::DoubleArrow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, SingleArrow) == 0x000308, "Member 'UWBP_StateIndicator_C::SingleArrow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, OnVisible) == 0x000310, "Member 'UWBP_StateIndicator_C::OnVisible' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, FirstArrowIcon) == 0x000318, "Member 'UWBP_StateIndicator_C::FirstArrowIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, IndicatorContainer) == 0x000320, "Member 'UWBP_StateIndicator_C::IndicatorContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_StateIndicator_C, SecondArrowIcon) == 0x000328, "Member 'UWBP_StateIndicator_C::SecondArrowIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification \ +static_assert(alignof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification) == 0x000008, "Wrong alignment on WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification) == 0x000080, "Wrong size on WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, EntryPoint) == 0x000000, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_IsGamePaused_ReturnValue) == 0x000014, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_IsGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_GetQuestNotificationType_OutQuestType) == 0x000018, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_GetQuestNotificationType_OutQuestType' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, K2Node_SwitchInteger_CmpSuccess) == 0x00001C, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_PlayAnimation_ReturnValue) == 0x000020, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, K2Node_Event_bInStatus) == 0x000028, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, Temp_delegate_Variable) == 0x00002C, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, Temp_delegate_Variable_1) == 0x00003C, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_GetHud_ReturnValue) == 0x000050, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, K2Node_CustomEvent_bInPaused) == 0x000058, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000059, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_PauseAnimation_ReturnValue) == 0x00005C, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_PauseAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000060, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000068, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_GetLoadingScreenDisplayStatus_ReturnValue) == 0x000069, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_GetLoadingScreenDisplayStatus_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_Not_PreBool_ReturnValue) == 0x00006A, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_PlayAnimation_ReturnValue_1) == 0x000070, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000078, "Member 'WBP_QuestCentralNotification_C_ExecuteUbergraph_WBP_QuestCentralNotification::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_GetBrush_0 \ +static_assert(alignof(WBP_QuestCentralNotification_C_GetBrush_0) == 0x000010, "Wrong alignment on WBP_QuestCentralNotification_C_GetBrush_0"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_GetBrush_0) == 0x0000D0, "Wrong size on WBP_QuestCentralNotification_C_GetBrush_0"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetBrush_0, ReturnValue) == 0x000000, "Member 'WBP_QuestCentralNotification_C_GetBrush_0::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_GetBrush_1 \ +static_assert(alignof(WBP_QuestCentralNotification_C_GetBrush_1) == 0x000010, "Wrong alignment on WBP_QuestCentralNotification_C_GetBrush_1"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_GetBrush_1) == 0x0000D0, "Wrong size on WBP_QuestCentralNotification_C_GetBrush_1"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetBrush_1, ReturnValue) == 0x000000, "Member 'WBP_QuestCentralNotification_C_GetBrush_1::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_GetQuestNotificationType \ +static_assert(alignof(WBP_QuestCentralNotification_C_GetQuestNotificationType) == 0x000008, "Wrong alignment on WBP_QuestCentralNotification_C_GetQuestNotificationType"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_GetQuestNotificationType) == 0x000020, "Wrong size on WBP_QuestCentralNotification_C_GetQuestNotificationType"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetQuestNotificationType, OutQuestType) == 0x000000, "Member 'WBP_QuestCentralNotification_C_GetQuestNotificationType::OutQuestType' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetQuestNotificationType, QuestTypeInt) == 0x000004, "Member 'WBP_QuestCentralNotification_C_GetQuestNotificationType::QuestTypeInt' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetQuestNotificationType, CallFunc_Conv_TextToString_ReturnValue) == 0x000008, "Member 'WBP_QuestCentralNotification_C_GetQuestNotificationType::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_GetQuestNotificationType, CallFunc_Contains_ReturnValue) == 0x000018, "Member 'WBP_QuestCentralNotification_C_GetQuestNotificationType::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_OnGamePaused \ +static_assert(alignof(WBP_QuestCentralNotification_C_OnGamePaused) == 0x000001, "Wrong alignment on WBP_QuestCentralNotification_C_OnGamePaused"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_OnGamePaused) == 0x000001, "Wrong size on WBP_QuestCentralNotification_C_OnGamePaused"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_OnGamePaused, bInPaused) == 0x000000, "Member 'WBP_QuestCentralNotification_C_OnGamePaused::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestCentralNotification_C_ToggleVisibility \ +static_assert(alignof(WBP_QuestCentralNotification_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_QuestCentralNotification_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_QuestCentralNotification_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_QuestCentralNotification_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_QuestCentralNotification_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_QuestCentralNotification_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestCentralNotification_C \ +static_assert(alignof(UWBP_QuestCentralNotification_C) == 0x000008, "Wrong alignment on UWBP_QuestCentralNotification_C"); \ +static_assert(sizeof(UWBP_QuestCentralNotification_C) == 0x000390, "Wrong size on UWBP_QuestCentralNotification_C"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, UberGraphFrame) == 0x000358, "Member 'UWBP_QuestCentralNotification_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, FadeOut) == 0x000360, "Member 'UWBP_QuestCentralNotification_C::FadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, black_gradient) == 0x000368, "Member 'UWBP_QuestCentralNotification_C::black_gradient' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, leftsite_lines) == 0x000370, "Member 'UWBP_QuestCentralNotification_C::leftsite_lines' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, righsite_lines) == 0x000378, "Member 'UWBP_QuestCentralNotification_C::righsite_lines' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, CurrentQuest) == 0x000380, "Member 'UWBP_QuestCentralNotification_C::CurrentQuest' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestCentralNotification_C, AnimationTimeWhenPaused) == 0x000388, "Member 'UWBP_QuestCentralNotification_C::AnimationTimeWhenPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86 \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86) == 0x0000B0, "Wrong size on WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86, Payload) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_EventReceived_06CCA70E483351A3648A319E9CA00D86::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3 \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3) == 0x0000B0, "Wrong size on WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3, Payload) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_EventReceived_0C08FF6446562BDCE4FC0D9AF4056BB3::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188 \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188) == 0x0000B0, "Wrong size on WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188, Payload) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_EventReceived_67468D674604057ADB545385134C9188::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot) == 0x000708, "Wrong size on WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, EntryPoint) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable) == 0x000004, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_1) == 0x00000C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_2) == 0x000014, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_3) == 0x00001C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_4) == 0x000024, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_5) == 0x00002C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_6) == 0x000034, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_7) == 0x00003C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate) == 0x000044, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CustomEvent_Payload_1) == 0x000058, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_8) == 0x000108, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_byte_Variable) == 0x0001B8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_9) == 0x0001BC, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_10) == 0x0001C4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_11) == 0x0001CC, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_12) == 0x0001D4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_13) == 0x0001DC, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_14) == 0x0001E4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_15) == 0x0001EC, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_16) == 0x0001F4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001FC, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_2) == 0x00020C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_byte_Variable_1) == 0x00021C, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_17) == 0x000220, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_18) == 0x000228, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_19) == 0x000230, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_20) == 0x000238, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_20' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_21) == 0x000240, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_21' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_22) == 0x000248, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_22' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_23) == 0x000250, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_23' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_24) == 0x000258, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_24' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CustomEvent_Payload) == 0x000260, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_3) == 0x000310, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_25) == 0x000320, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_25' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003D0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003E0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_6) == 0x0003F0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Event_InCurrentValue) == 0x000400, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Event_InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Event_InMaxValue) == 0x000404, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Event_InMaxValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_byte_Variable_2) == 0x000408, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000410, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000418, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000419, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_BooleanOR_ReturnValue) == 0x00041A, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x000420, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Select_Default) == 0x000428, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CreateDelegate_OutputDelegate_7) == 0x000430, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000440, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CustomEvent_Percent_1) == 0x000448, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CustomEvent_Percent_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_MapRangeClamped_ReturnValue) == 0x000450, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000458, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue) == 0x000460, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000468, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Event_IsDesignTime) == 0x000470, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, Temp_struct_Variable_26) == 0x000478, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::Temp_struct_Variable_26' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_PlayAnimation_ReturnValue) == 0x000528, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CustomEvent_Percent) == 0x000530, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CustomEvent_Percent' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_PlayAnimation_ReturnValue_1) == 0x000538, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000540, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue_1) == 0x000548, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Select_Default_1) == 0x000550, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000558, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue_2) == 0x000560, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000568, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000570, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_1) == 0x000578, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_2) == 0x000579, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_3) == 0x00057A, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue_3) == 0x000580, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_Select_Default_2) == 0x000588, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x000590, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_PlayAnimation_ReturnValue_2) == 0x000598, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_4) == 0x0005A0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0005A8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_DynamicCast_AsWrestler_Character) == 0x0005B0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_DynamicCast_bSuccess) == 0x0005B8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_Not_PreBool_ReturnValue) == 0x0005B9, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_PlayAnimationForward_ReturnValue) == 0x0005C0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_BooleanAND_ReturnValue) == 0x0005C8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue_4) == 0x0005D0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayTagAddToActor_ReturnValue_1) == 0x0005D8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayTagAddToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_PlayAnimation_ReturnValue_3) == 0x0005E0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_5) == 0x0005E8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_CustomEvent_Payload_2) == 0x0005F0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0006A0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, K2Node_MakeStruct_SlateColor) == 0x0006A4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::K2Node_MakeStruct_SlateColor' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x0006B8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_GetOwningPlayerPawn_ReturnValue_5) == 0x0006C0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_GetOwningPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1) == 0x0006C8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_IsValid_ReturnValue_6) == 0x0006D0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SetRefillPercent_Percent_ImplicitCast) == 0x0006D8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SetRefillPercent_Percent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x0006E0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x0006E8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast) == 0x0006F0, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x0006F4, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SetProgressPercent_Percent_ImplicitCast) == 0x0006F8, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SetProgressPercent_Percent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot, CallFunc_SetPercent_InPercent_ImplicitCast_1) == 0x000700, "Member 'WBP_AbilityHotkeySlot_C_ExecuteUbergraph_WBP_AbilityHotkeySlot::CallFunc_SetPercent_InPercent_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_OnBloodValueChanged \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_OnBloodValueChanged) == 0x000004, "Wrong alignment on WBP_AbilityHotkeySlot_C_OnBloodValueChanged"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_OnBloodValueChanged) == 0x000008, "Wrong size on WBP_AbilityHotkeySlot_C_OnBloodValueChanged"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_OnBloodValueChanged, InCurrentValue) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_OnBloodValueChanged::InCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_OnBloodValueChanged, InMaxValue) == 0x000004, "Member 'WBP_AbilityHotkeySlot_C_OnBloodValueChanged::InMaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_PreConstruct \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_AbilityHotkeySlot_C_PreConstruct"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_PreConstruct) == 0x000001, "Wrong size on WBP_AbilityHotkeySlot_C_PreConstruct"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_SetProgressPercent \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_SetProgressPercent) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_SetProgressPercent"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_SetProgressPercent) == 0x000008, "Wrong size on WBP_AbilityHotkeySlot_C_SetProgressPercent"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_SetProgressPercent, Percent) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_SetProgressPercent::Percent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_SetRefillPercent \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_SetRefillPercent) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_SetRefillPercent"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_SetRefillPercent) == 0x000008, "Wrong size on WBP_AbilityHotkeySlot_C_SetRefillPercent"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_SetRefillPercent, Percent) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_SetRefillPercent::Percent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_UpdateBackground \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_UpdateBackground) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_UpdateBackground"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_UpdateBackground) == 0x000018, "Wrong size on WBP_AbilityHotkeySlot_C_UpdateBackground"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBackground, IsReady) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_UpdateBackground::IsReady' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBackground, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000008, "Member 'WBP_AbilityHotkeySlot_C_UpdateBackground::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBackground, CallFunc_GetLoadingScreenDisplayStatus_ReturnValue) == 0x000010, "Member 'WBP_AbilityHotkeySlot_C_UpdateBackground::CallFunc_GetLoadingScreenDisplayStatus_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBackground, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'WBP_AbilityHotkeySlot_C_UpdateBackground::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBackground, CallFunc_IsValid_ReturnValue_1) == 0x000012, "Member 'WBP_AbilityHotkeySlot_C_UpdateBackground::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityHotkeySlot_C_UpdateBloodSegments \ +static_assert(alignof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments) == 0x000008, "Wrong alignment on WBP_AbilityHotkeySlot_C_UpdateBloodSegments"); \ +static_assert(sizeof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments) == 0x000048, "Wrong size on WBP_AbilityHotkeySlot_C_UpdateBloodSegments"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000000, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, K2Node_DynamicCast_AsWrestler_Character) == 0x000008, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_GetAttributeValuesByAbility_OutCurrentValue) == 0x000014, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_GetAttributeValuesByAbility_OutCurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_GetAttributeValuesByAbility_OutMaxValue) == 0x000018, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_GetAttributeValuesByAbility_OutMaxValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00001C, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000020, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000030, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000038, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityHotkeySlot_C_UpdateBloodSegments, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000040, "Member 'WBP_AbilityHotkeySlot_C_UpdateBloodSegments::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AbilityHotkeySlot_C \ +static_assert(alignof(UWBP_AbilityHotkeySlot_C) == 0x000008, "Wrong alignment on UWBP_AbilityHotkeySlot_C"); \ +static_assert(sizeof(UWBP_AbilityHotkeySlot_C) == 0x000490, "Wrong size on UWBP_AbilityHotkeySlot_C"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, UberGraphFrame) == 0x000348, "Member 'UWBP_AbilityHotkeySlot_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, RecallWardActive) == 0x000350, "Member 'UWBP_AbilityHotkeySlot_C::RecallWardActive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, IntroAnim) == 0x000358, "Member 'UWBP_AbilityHotkeySlot_C::IntroAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BloodPipOn) == 0x000360, "Member 'UWBP_AbilityHotkeySlot_C::BloodPipOn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, OnAbilityActivated) == 0x000368, "Member 'UWBP_AbilityHotkeySlot_C::OnAbilityActivated' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, ActivationHalo) == 0x000370, "Member 'UWBP_AbilityHotkeySlot_C::ActivationHalo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, Background) == 0x000378, "Member 'UWBP_AbilityHotkeySlot_C::Background' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BgOutline) == 0x000380, "Member 'UWBP_AbilityHotkeySlot_C::BgOutline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BlockIcon) == 0x000388, "Member 'UWBP_AbilityHotkeySlot_C::BlockIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BlockIcon_BG) == 0x000390, "Member 'UWBP_AbilityHotkeySlot_C::BlockIcon_BG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BloopPips) == 0x000398, "Member 'UWBP_AbilityHotkeySlot_C::BloopPips' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, circleshine) == 0x0003A0, "Member 'UWBP_AbilityHotkeySlot_C::circleshine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, Frame) == 0x0003A8, "Member 'UWBP_AbilityHotkeySlot_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, OutlineBacking) == 0x0003B0, "Member 'UWBP_AbilityHotkeySlot_C::OutlineBacking' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, Overlay_Internal) == 0x0003B8, "Member 'UWBP_AbilityHotkeySlot_C::Overlay_Internal' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, ProgressBar) == 0x0003C0, "Member 'UWBP_AbilityHotkeySlot_C::ProgressBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, Pulse) == 0x0003C8, "Member 'UWBP_AbilityHotkeySlot_C::Pulse' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, RecallWardImage) == 0x0003D0, "Member 'UWBP_AbilityHotkeySlot_C::RecallWardImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, RefillBar) == 0x0003D8, "Member 'UWBP_AbilityHotkeySlot_C::RefillBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, WBP_WrestlerAttributeWidget_Blood) == 0x0003E0, "Member 'UWBP_AbilityHotkeySlot_C::WBP_WrestlerAttributeWidget_Blood' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, HasAnimationPlayed) == 0x0003E8, "Member 'UWBP_AbilityHotkeySlot_C::HasAnimationPlayed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, Blood) == 0x0003F0, "Member 'UWBP_AbilityHotkeySlot_C::Blood' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, MaxBlood) == 0x000428, "Member 'UWBP_AbilityHotkeySlot_C::MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, HasSoundPlayed) == 0x000460, "Member 'UWBP_AbilityHotkeySlot_C::HasSoundPlayed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BloopPipsVertAlignment) == 0x000461, "Member 'UWBP_AbilityHotkeySlot_C::BloopPipsVertAlignment' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, BloodPipOpacity) == 0x000464, "Member 'UWBP_AbilityHotkeySlot_C::BloodPipOpacity' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, PromptIcon) == 0x000468, "Member 'UWBP_AbilityHotkeySlot_C::PromptIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, OnAudioAbilityReady) == 0x000470, "Member 'UWBP_AbilityHotkeySlot_C::OnAudioAbilityReady' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityHotkeySlot_C, OnGreedActivated) == 0x000480, "Member 'UWBP_AbilityHotkeySlot_C::OnGreedActivated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction \ +static_assert(alignof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction) == 0x000008, "Wrong alignment on WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction"); \ +static_assert(sizeof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction) == 0x000048, "Wrong size on WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, EntryPoint) == 0x000000, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, Temp_delegate_Variable) == 0x000004, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, Temp_delegate_Variable_1) == 0x000014, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, K2Node_Event_InReactionType) == 0x000024, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::K2Node_Event_InReactionType' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, CallFunc_PlayAnimation_ReturnValue) == 0x000028, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, CallFunc_PlayAnimation_ReturnValue_1) == 0x000038, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction, CallFunc_PlayAnimation_ReturnValue_2) == 0x000040, "Member 'WBP_UI_DialogReaction_C_ExecuteUbergraph_WBP_UI_DialogReaction::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_UI_DialogReaction_C_OnShow \ +static_assert(alignof(WBP_UI_DialogReaction_C_OnShow) == 0x000001, "Wrong alignment on WBP_UI_DialogReaction_C_OnShow"); \ +static_assert(sizeof(WBP_UI_DialogReaction_C_OnShow) == 0x000001, "Wrong size on WBP_UI_DialogReaction_C_OnShow"); \ +static_assert(offsetof(WBP_UI_DialogReaction_C_OnShow, InReactionType) == 0x000000, "Member 'WBP_UI_DialogReaction_C_OnShow::InReactionType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_UI_DialogReaction_C \ +static_assert(alignof(UWBP_UI_DialogReaction_C) == 0x000008, "Wrong alignment on UWBP_UI_DialogReaction_C"); \ +static_assert(sizeof(UWBP_UI_DialogReaction_C) == 0x000380, "Wrong size on UWBP_UI_DialogReaction_C"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, UberGraphFrame) == 0x000350, "Member 'UWBP_UI_DialogReaction_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, CloseAnim) == 0x000358, "Member 'UWBP_UI_DialogReaction_C::CloseAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, OpenNegativeAnim) == 0x000360, "Member 'UWBP_UI_DialogReaction_C::OpenNegativeAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, OpenPostiveAnim) == 0x000368, "Member 'UWBP_UI_DialogReaction_C::OpenPostiveAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, ArrowImage) == 0x000370, "Member 'UWBP_UI_DialogReaction_C::ArrowImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_DialogReaction_C, Bg) == 0x000378, "Member 'UWBP_UI_DialogReaction_C::Bg' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BMCooldown_C \ +static_assert(alignof(UGE_BMCooldown_C) == 0x000008, "Wrong alignment on UGE_BMCooldown_C"); \ +static_assert(sizeof(UGE_BMCooldown_C) == 0x000A70, "Wrong size on UGE_BMCooldown_C"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget \ +static_assert(alignof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget) == 0x000008, "Wrong alignment on WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget) == 0x000078, "Wrong size on WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, EntryPoint) == 0x000000, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CustomEvent_InVisibility) == 0x000010, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CustomEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_GetMasqueradeState_ReturnValue) == 0x000011, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_IsValid_ReturnValue) == 0x000012, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_IsValid_ReturnValue_1) == 0x000013, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CustomEvent_PrevState) == 0x000014, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CustomEvent_NewState) == 0x000015, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_GetProperty_ReturnValue) == 0x000018, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000020, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_Conv_ByteToInt_ReturnValue) == 0x000024, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, CallFunc_Conv_ByteToInt_ReturnValue_1) == 0x000028, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::CallFunc_Conv_ByteToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_Event_bIsPlayerDetected) == 0x00002C, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_Event_bIsPlayerDetected' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CreateDelegate_OutputDelegate) == 0x000030, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CreateDelegate_OutputDelegate_1) == 0x000040, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_CreateDelegate_OutputDelegate_2) == 0x000050, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, Temp_delegate_Variable) == 0x000060, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget, K2Node_Event_bInStatus) == 0x000070, "Member 'WBP_MasqueradeWidget_C_ExecuteUbergraph_WBP_MasqueradeWidget::K2Node_Event_bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_On_Masquerade_State_Changed \ +static_assert(alignof(WBP_MasqueradeWidget_C_On_Masquerade_State_Changed) == 0x000001, "Wrong alignment on WBP_MasqueradeWidget_C_On_Masquerade_State_Changed"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_On_Masquerade_State_Changed) == 0x000002, "Wrong size on WBP_MasqueradeWidget_C_On_Masquerade_State_Changed"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_On_Masquerade_State_Changed, PrevState) == 0x000000, "Member 'WBP_MasqueradeWidget_C_On_Masquerade_State_Changed::PrevState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_On_Masquerade_State_Changed, NewState) == 0x000001, "Member 'WBP_MasqueradeWidget_C_On_Masquerade_State_Changed::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_OnVisibilityChanged_Event \ +static_assert(alignof(WBP_MasqueradeWidget_C_OnVisibilityChanged_Event) == 0x000001, "Wrong alignment on WBP_MasqueradeWidget_C_OnVisibilityChanged_Event"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_OnVisibilityChanged_Event) == 0x000001, "Wrong size on WBP_MasqueradeWidget_C_OnVisibilityChanged_Event"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_OnVisibilityChanged_Event, InVisibility) == 0x000000, "Member 'WBP_MasqueradeWidget_C_OnVisibilityChanged_Event::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck \ +static_assert(alignof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck) == 0x000008, "Wrong alignment on WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck) == 0x000028, "Wrong size on WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck, CallFunc_GetGameMode_ReturnValue) == 0x000000, "Member 'WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck, CallFunc_GetActiveQuestTag_ReturnValue) == 0x000018, "Member 'WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000020, "Member 'WBP_MasqueradeWidget_C_ProEscapeVisibilityCheck::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_Set_Masquerade_Level \ +static_assert(alignof(WBP_MasqueradeWidget_C_Set_Masquerade_Level) == 0x000004, "Wrong alignment on WBP_MasqueradeWidget_C_Set_Masquerade_Level"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_Set_Masquerade_Level) == 0x000030, "Wrong size on WBP_MasqueradeWidget_C_Set_Masquerade_Level"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, InMasqueradeLevel) == 0x000000, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::InMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, InPrevMasqueradeLevel) == 0x000004, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::InPrevMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, Temp_delegate_Variable) == 0x000008, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, CallFunc_NotEqual_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, Temp_delegate_Variable_1) == 0x00001C, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, K2Node_SwitchInteger_CmpSuccess) == 0x00002C, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_Set_Masquerade_Level, CallFunc_Greater_IntInt_ReturnValue) == 0x00002D, "Member 'WBP_MasqueradeWidget_C_Set_Masquerade_Level::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_ToggleVisibility \ +static_assert(alignof(WBP_MasqueradeWidget_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_MasqueradeWidget_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_MasqueradeWidget_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_MasqueradeWidget_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_UpdateEye \ +static_assert(alignof(WBP_MasqueradeWidget_C_UpdateEye) == 0x000001, "Wrong alignment on WBP_MasqueradeWidget_C_UpdateEye"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_UpdateEye) == 0x000001, "Wrong size on WBP_MasqueradeWidget_C_UpdateEye"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateEye, bIsPlayerDetected) == 0x000000, "Member 'WBP_MasqueradeWidget_C_UpdateEye::bIsPlayerDetected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals \ +static_assert(alignof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals) == 0x000008, "Wrong alignment on WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals) == 0x000050, "Wrong size on WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, NewState) == 0x000000, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::NewState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, PrevState) == 0x000004, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::PrevState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, InNewState) == 0x000008, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::InNewState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, PreviousState) == 0x00000C, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::PreviousState' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_IsVisible_ReturnValue) == 0x000010, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_IsVisible_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_IsVisible_ReturnValue_1) == 0x000011, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_IsVisible_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_IsVisible_ReturnValue_2) == 0x000012, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_IsVisible_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimationForward_ReturnValue) == 0x000018, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000020, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_BooleanAND_ReturnValue) == 0x000021, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000022, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, K2Node_SwitchInteger_CmpSuccess) == 0x000023, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000028, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimationForward_ReturnValue_2) == 0x000030, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimationForward_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimationForward_ReturnValue_3) == 0x000038, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimationForward_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimation_ReturnValue) == 0x000040, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals, CallFunc_PlayAnimation_ReturnValue_1) == 0x000048, "Member 'WBP_MasqueradeWidget_C_UpdateMasqueradeVisuals::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_UpdateVisualsManual \ +static_assert(alignof(WBP_MasqueradeWidget_C_UpdateVisualsManual) == 0x000008, "Wrong alignment on WBP_MasqueradeWidget_C_UpdateVisualsManual"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_UpdateVisualsManual) == 0x000060, "Wrong size on WBP_MasqueradeWidget_C_UpdateVisualsManual"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, bShowEYE) == 0x000000, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::bShowEYE' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_GetProperty_ReturnValue) == 0x000010, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000018, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_GetAllChildren_ReturnValue) == 0x000020, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_GetDisplayName_ReturnValue) == 0x000048, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsManual, CallFunc_EqualEqual_StrStr_ReturnValue) == 0x000058, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsManual::CallFunc_EqualEqual_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke \ +static_assert(alignof(WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke) == 0x000004, "Wrong alignment on WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke"); \ +static_assert(sizeof(WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke) == 0x000010, "Wrong size on WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke, CallFunc_IsPartitionedWorld_ReturnValue) == 0x000000, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke::CallFunc_IsPartitionedWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x00000C, "Member 'WBP_MasqueradeWidget_C_UpdateVisualsOnSpoke::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MasqueradeWidget_C \ +static_assert(alignof(UWBP_MasqueradeWidget_C) == 0x000008, "Wrong alignment on UWBP_MasqueradeWidget_C"); \ +static_assert(sizeof(UWBP_MasqueradeWidget_C) == 0x0003D0, "Wrong size on UWBP_MasqueradeWidget_C"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, UberGraphFrame) == 0x000320, "Member 'UWBP_MasqueradeWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Shattered) == 0x000328, "Member 'UWBP_MasqueradeWidget_C::Shattered' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, RestoredLvl2) == 0x000330, "Member 'UWBP_MasqueradeWidget_C::RestoredLvl2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Restored) == 0x000338, "Member 'UWBP_MasqueradeWidget_C::Restored' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Broken) == 0x000340, "Member 'UWBP_MasqueradeWidget_C::Broken' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Blinking) == 0x000348, "Member 'UWBP_MasqueradeWidget_C::Blinking' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, FadeOut) == 0x000350, "Member 'UWBP_MasqueradeWidget_C::FadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Broken_Animation) == 0x000358, "Member 'UWBP_MasqueradeWidget_C::Broken_Animation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, CanvasPanel_0) == 0x000360, "Member 'UWBP_MasqueradeWidget_C::CanvasPanel_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Frame) == 0x000368, "Member 'UWBP_MasqueradeWidget_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Halo) == 0x000370, "Member 'UWBP_MasqueradeWidget_C::Halo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Masq_Border) == 0x000378, "Member 'UWBP_MasqueradeWidget_C::Masq_Border' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Masq_Frame) == 0x000380, "Member 'UWBP_MasqueradeWidget_C::Masq_Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Masq_InnerLine) == 0x000388, "Member 'UWBP_MasqueradeWidget_C::Masq_InnerLine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Masq_Upheld) == 0x000390, "Member 'UWBP_MasqueradeWidget_C::Masq_Upheld' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Masquerade_Icon) == 0x000398, "Member 'UWBP_MasqueradeWidget_C::Masquerade_Icon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Restored_Animation) == 0x0003A0, "Member 'UWBP_MasqueradeWidget_C::Restored_Animation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, Shattered_Animation) == 0x0003A8, "Member 'UWBP_MasqueradeWidget_C::Shattered_Animation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, CurrentState) == 0x0003B0, "Member 'UWBP_MasqueradeWidget_C::CurrentState' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, ProLouMasquarade) == 0x0003B8, "Member 'UWBP_MasqueradeWidget_C::ProLouMasquarade' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, CurrentPlayerCharacter) == 0x0003C0, "Member 'UWBP_MasqueradeWidget_C::CurrentPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MasqueradeWidget_C, PI_Audio_MasqueradeLevelChanged) == 0x0003C8, "Member 'UWBP_MasqueradeWidget_C::PI_Audio_MasqueradeLevelChanged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event \ +static_assert(alignof(ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event) == 0x000008, "Wrong alignment on ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event"); \ +static_assert(sizeof(ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event) == 0x000008, "Wrong size on ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event"); \ +static_assert(offsetof(ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event, BP_Phyre2) == 0x000000, "Member 'ClanTrainer_Toreador_Payoff_DirectorBP_C_BP_Phyre2_Event::BP_Phyre2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP \ +static_assert(alignof(ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP) == 0x000008, "Wrong alignment on ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP"); \ +static_assert(sizeof(ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP) == 0x000010, "Wrong size on ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP"); \ +static_assert(offsetof(ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP, EntryPoint) == 0x000000, "Member 'ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP, K2Node_CustomEvent_BP_Phyre2) == 0x000008, "Member 'ClanTrainer_Toreador_Payoff_DirectorBP_C_ExecuteUbergraph_ClanTrainer_Toreador_Payoff_DirectorBP::K2Node_CustomEvent_BP_Phyre2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClanTrainer_Toreador_Payoff_DirectorBP_C \ +static_assert(alignof(UClanTrainer_Toreador_Payoff_DirectorBP_C) == 0x000008, "Wrong alignment on UClanTrainer_Toreador_Payoff_DirectorBP_C"); \ +static_assert(sizeof(UClanTrainer_Toreador_Payoff_DirectorBP_C) == 0x000040, "Wrong size on UClanTrainer_Toreador_Payoff_DirectorBP_C"); \ +static_assert(offsetof(UClanTrainer_Toreador_Payoff_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'UClanTrainer_Toreador_Payoff_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_AddResonance \ +static_assert(alignof(GA_PlayerFeed_Base_C_AddResonance) == 0x000004, "Wrong alignment on GA_PlayerFeed_Base_C_AddResonance"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_AddResonance) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_AddResonance"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_AddResonance, CallFunc_Add_IntInt_ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_AddResonance::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_AddResonance, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000004, "Member 'GA_PlayerFeed_Base_C_AddResonance::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_BloodSlotFull \ +static_assert(alignof(GA_PlayerFeed_Base_C_BloodSlotFull) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_BloodSlotFull"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_BloodSlotFull) == 0x000440, "Wrong size on GA_PlayerFeed_Base_C_BloodSlotFull"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Slot) == 0x000000, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Slot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, ReturnValue) == 0x000001, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable) == 0x000008, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_1) == 0x000040, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_2) == 0x000078, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_3) == 0x0000B0, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_4) == 0x0000E8, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_5) == 0x000120, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_6) == 0x000158, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_7) == 0x000190, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_byte_Variable) == 0x0001C8, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_8) == 0x0001D0, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_9) == 0x000208, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_10) == 0x000240, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_11) == 0x000278, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_12) == 0x0002B0, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_13) == 0x0002E8, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_14) == 0x000320, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_struct_Variable_15) == 0x000358, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_struct_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, Temp_byte_Variable_1) == 0x000390, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, K2Node_Select_Default) == 0x000398, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, K2Node_Select_Default_1) == 0x0003D0, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000408, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GetGameplayAttributeValue_bFound) == 0x000410, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GetGameplayAttributeValue_bFound' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GetGameplayAttributeValue_ReturnValue) == 0x000414, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GetGameplayAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GetGameplayAttributeValue_bFound_1) == 0x000418, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GetGameplayAttributeValue_bFound_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GetGameplayAttributeValue_ReturnValue_1) == 0x00041C, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GetGameplayAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_Round_ReturnValue) == 0x000420, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_Round_ReturnValue_1) == 0x000424, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_Round_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_Subtract_IntInt_ReturnValue) == 0x000428, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00042C, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_Round_A_ImplicitCast) == 0x000430, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_Round_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_BloodSlotFull, CallFunc_Round_A_ImplicitCast_1) == 0x000438, "Member 'GA_PlayerFeed_Base_C_BloodSlotFull::CallFunc_Round_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_DiscardMass \ +static_assert(alignof(GA_PlayerFeed_Base_C_DiscardMass) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_DiscardMass"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_DiscardMass) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_DiscardMass"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DiscardMass, SpawnedEnemy) == 0x000000, "Member 'GA_PlayerFeed_Base_C_DiscardMass::SpawnedEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_DropWeapon \ +static_assert(alignof(GA_PlayerFeed_Base_C_DropWeapon) == 0x000010, "Wrong alignment on GA_PlayerFeed_Base_C_DropWeapon"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_DropWeapon) == 0x000180, "Wrong size on GA_PlayerFeed_Base_C_DropWeapon"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, Temp_int_Array_Index_Variable) == 0x000000, "Member 'GA_PlayerFeed_Base_C_DropWeapon::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'GA_PlayerFeed_Base_C_DropWeapon::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_GetAttachedActors_OutActors) == 0x000010, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_Array_Get_Item) == 0x000028, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000030, "Member 'GA_PlayerFeed_Base_C_DropWeapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'GA_PlayerFeed_Base_C_DropWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_Array_Length_ReturnValue) == 0x00003C, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_GetTransform_ReturnValue) == 0x000050, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_BreakTransform_Location) == 0x0000B0, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_BreakTransform_Rotation) == 0x0000C8, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_BreakTransform_Scale) == 0x0000E0, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_MakeTransform_ReturnValue) == 0x000100, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000160, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_FinishSpawningActor_ReturnValue) == 0x000168, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000170, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_DropWeapon, CallFunc_IsValid_ReturnValue_1) == 0x000178, "Member 'GA_PlayerFeed_Base_C_DropWeapon::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EmitFear \ +static_assert(alignof(GA_PlayerFeed_Base_C_EmitFear) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EmitFear"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EmitFear) == 0x000038, "Wrong size on GA_PlayerFeed_Base_C_EmitFear"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, Duration) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EmitFear::Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_EmitFear::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, K2Node_DynamicCast_AsWrestler_Fear_Emitter_Interface) == 0x000010, "Member 'GA_PlayerFeed_Base_C_EmitFear::K2Node_DynamicCast_AsWrestler_Fear_Emitter_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_PlayerFeed_Base_C_EmitFear::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, CallFunc_GetFearEmitter_ReturnValue) == 0x000028, "Member 'GA_PlayerFeed_Base_C_EmitFear::CallFunc_GetFearEmitter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_PlayerFeed_Base_C_EmitFear::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitFear, CallFunc_StartTimedEmission_InTime_ImplicitCast) == 0x000034, "Member 'GA_PlayerFeed_Base_C_EmitFear::CallFunc_StartTimedEmission_InTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EmitStimulus \ +static_assert(alignof(GA_PlayerFeed_Base_C_EmitStimulus) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EmitStimulus"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EmitStimulus) == 0x000050, "Wrong size on GA_PlayerFeed_Base_C_EmitStimulus"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, Fear_Duration) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::Fear_Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, AvatarActor) == 0x000008, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::AvatarActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_Get_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_Get_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_GetNoiseReportDataAsset_ReturnValue) == 0x000020, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_GetNoiseReportDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_IsValid_ReturnValue_1) == 0x000028, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EmitStimulus, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'GA_PlayerFeed_Base_C_EmitStimulus::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_020078CA4477653D107EA59019F00A41::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_245BB1034306494EE65FD5A0E9430F14::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_4E37632F45BAE4CD53B7929B8A84594A::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_4E40484E4F32C4AD060D19B7D5D02BA2::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_6AAF9EE649E0ED428893D29F6740C81D::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_EventReceived_6F45AC81481D05D844F897BCA6B73969::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_EventReceived_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_E5E27EE2400445EBB82157ADE551DBED::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_F1F1538F4B4EAA8EB8E60FB2463E8252::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545 \ +static_assert(alignof(GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545) == 0x0000B0, "Wrong size on GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545, Payload) == 0x000000, "Member 'GA_PlayerFeed_Base_C_EventReceived_F7A09CC7466FA2D9B71F46AD2B739545::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base \ +static_assert(alignof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base) == 0x000010, "Wrong alignment on GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base) == 0x002A90, "Wrong size on GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, EntryPoint) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate) == 0x00001C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x00002C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000040, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000048, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable) == 0x000051, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_1) == 0x000052, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000058, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_2) == 0x000060, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_3) == 0x000061, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_ApplyDamageParams) == 0x000068, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000090, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x0000B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue) == 0x0000C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_2) == 0x0000E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_7) == 0x0000E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable) == 0x000198, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000248, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_3) == 0x000250, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000254, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_6) == 0x000268, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_1) == 0x000318, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x0003C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_4) == 0x0003D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003D4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_5) == 0x0003E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_2) == 0x000498, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_2) == 0x000548, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_5) == 0x000550, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000554, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_4) == 0x000568, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_3) == 0x000618, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_3) == 0x0006C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_6) == 0x0006D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x0006D4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_3) == 0x0006E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_4) == 0x000798, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_4) == 0x000848, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_7) == 0x000850, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x000854, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_2) == 0x000868, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_5) == 0x000918, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_5) == 0x0009C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_8) == 0x0009D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0009D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_delegate_Variable) == 0x0009E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x0009F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload_1) == 0x000A00, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_6) == 0x000AB0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_6) == 0x000B60, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_9) == 0x000B68, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x000B6C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_4) == 0x000B7C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_4) == 0x000B88, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_3) == 0x000C38, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_3) == 0x000C40, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_11) == 0x000CF0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_2) == 0x000D00, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_2) == 0x000D08, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_12) == 0x000DB8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_1) == 0x000DC8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_1) == 0x000DD0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_13) == 0x000E80, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag) == 0x000E90, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData) == 0x000E98, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_14) == 0x000F48, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_7) == 0x000F58, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_8) == 0x001008, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x001010, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_4) == 0x001018, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_10) == 0x001019, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x001020, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Payload) == 0x001038, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_15) == 0x0010E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_9) == 0x0010F8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitGameplayEvent_ReturnValue_7) == 0x0011A8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitGameplayEvent_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_11) == 0x0011B0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_16) == 0x0011B4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_17) == 0x0011C4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_18) == 0x0011D4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x0011E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x0011F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetMasqueradeState_ReturnValue) == 0x0011F8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0011F9, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_12) == 0x0011FA, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_object_Variable) == 0x001200, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_delegate_Variable_1) == 0x001208, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_int_Variable) == 0x001218, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable) == 0x001220, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_1) == 0x001228, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_2) == 0x001230, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_3) == 0x001238, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_4) == 0x001240, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_5) == 0x001248, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_5) == 0x001250, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_6) == 0x001258, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_real_Variable_7) == 0x001260, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_19) == 0x001268, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_1) == 0x001278, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x001280, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_13) == 0x001298, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_20) == 0x00129C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_21) == 0x0012AC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_22) == 0x0012BC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WrestlerTaskTick_ReturnValue_2) == 0x0012D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WrestlerTaskTick_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeVector_ReturnValue) == 0x0012D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_14) == 0x0012F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_15) == 0x0012F1, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_23) == 0x0012F4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_24) == 0x001304, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_6) == 0x001314, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_7) == 0x001315, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_25) == 0x001318, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_26) == 0x001328, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_27) == 0x001338, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WrestlerTaskTick_ReturnValue_3) == 0x001348, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WrestlerTaskTick_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_28) == 0x001350, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_16) == 0x001360, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_29) == 0x001364, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_DestinationReached) == 0x001374, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_TimedOut) == 0x001375, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_FinalTargetLocation) == 0x001378, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_30) == 0x001390, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_10) == 0x0013A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_8) == 0x0013B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_9) == 0x0013B9, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x0013BA, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Has_Been_Initd_Variable) == 0x0013BB, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_31) == 0x0013BC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_31' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Event_foundTarget) == 0x0013D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Event_foundTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Event_lostTarget) == 0x0013D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Event_lostTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_10) == 0x0013E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0013E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetTransform_ReturnValue) == 0x0013F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_CommitAbility_ReturnValue) == 0x001450, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Event_bWasCancelled) == 0x001451, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_ShouldJumpMoveTo_ReturnValue) == 0x001452, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_ShouldJumpMoveTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings) == 0x001458, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_IsClosed_Variable) == 0x001468, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_LevelSequence) == 0x001470, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_LevelSequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_BossFinal) == 0x001478, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_BossFinal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Select_Default) == 0x001480, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x001488, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_CreateMoveToData_ReturnValue) == 0x001490, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_CreateMoveToData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsCharacter) == 0x001518, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess) == 0x001520, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_2) == 0x001528, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_32) == 0x001530, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_32' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_17) == 0x001540, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsWrestler_AICharacter) == 0x001548, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsWrestler_AICharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_1) == 0x001550, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_3) == 0x001558, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_18) == 0x001560, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_11) == 0x001564, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_19) == 0x00156C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Has_Been_Initd_Variable_1) == 0x00156D, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_IsClosed_Variable_1) == 0x00156E, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_int_Loop_Counter_Variable) == 0x001570, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Add_IntInt_ReturnValue) == 0x001574, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_struct_Variable_12) == 0x001578, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_struct_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x001628, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerController_ReturnValue) == 0x001648, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x001650, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetControlRotation_ReturnValue) == 0x001658, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Roll) == 0x001670, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Pitch) == 0x001674, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Yaw) == 0x001678, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeRotator_ReturnValue) == 0x001680, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x001698, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x0016A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequencePlayer_ReturnValue) == 0x0016A8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Has_Been_Initd_Variable_2) == 0x0016B0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_20) == 0x0016B1, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x0016B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_CharacterSequenceData) == 0x0016E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_CharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x001760, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor) == 0x001770, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_PlaySequenceAndWaitForEvent_ReturnValue) == 0x001778, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_PlaySequenceAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_CanInstakill_ReturnValue) == 0x001780, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_CanInstakill_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_21) == 0x001781, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_Selection) == 0x001784, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_Selection' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x001790, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_22) == 0x001798, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0017A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x001878, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x001880, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_IsClosed_Variable_2) == 0x001898, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_5) == 0x00189C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_5) == 0x0018A8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAIController_ReturnValue) == 0x001958, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x001960, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x001968, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_LevelSequence_1) == 0x001970, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_LevelSequence_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_BossFinal_1) == 0x001978, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_BossFinal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_LevelSequence_2) == 0x001980, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_LevelSequence_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetSequenceForTarget_BossFinal_2) == 0x001988, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetSequenceForTarget_BossFinal_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_33) == 0x00198C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_33' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_23) == 0x00199C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0019A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_2) == 0x0019B0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_34) == 0x0019B4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_34' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0019C4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0019C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0019D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0019D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0019F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasClanPerk_ReturnValue) == 0x0019F8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x001A00, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x001A08, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x001A10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x001A18, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_GameplayEventData) == 0x001A20, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x001AD0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_4) == 0x001AF0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x001AF8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_3) == 0x001B08, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x001B09, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_24) == 0x001B0A, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x001B10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_4) == 0x001B18, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_6) == 0x001B1C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_6) == 0x001B28, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerController_ReturnValue_1) == 0x001BD8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_11) == 0x001BE0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue) == 0x001BE1, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue_1) == 0x001BE2, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_TargetIsPedestrian_IsPed) == 0x001BE3, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_TargetIsPedestrian_IsPed' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue_2) == 0x001BE4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_35) == 0x001BE8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_35' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerController_ReturnValue_2) == 0x001BF8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x001C00, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x001C08, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x001C10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerCharacter_ReturnValue) == 0x001C30, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x001C38, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_5) == 0x001C48, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x001C49, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x001C50, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x001C70, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_6) == 0x001C80, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001C88, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x001C90, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x001C98, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x001CB8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_TryActivateAbilitiesByTag_ReturnValue_1) == 0x001CC0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_TryActivateAbilitiesByTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x001CC4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue_3) == 0x001CCC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasClanPerk_ReturnValue_1) == 0x001CCD, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasClanPerk_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x001CD0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x001CD8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsAnyEntityAwareOfPlayer_ReturnValue) == 0x001CE0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsAnyEntityAwareOfPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x001CE4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Less_IntInt_ReturnValue) == 0x001CE8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x001CF0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_7) == 0x001D00, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_25) == 0x001D01, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x001D02, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_7) == 0x001D04, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_7) == 0x001D10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_26) == 0x001DC0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5) == 0x001DC8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_8) == 0x001DD8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_6) == 0x001DE0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_9) == 0x001DF0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_27) == 0x001DF1, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x001DF2, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_28) == 0x001DF3, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_29) == 0x001DF4, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_ApplyDamage_ReturnValue) == 0x001DF5, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_36) == 0x001DF8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_36' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_30) == 0x001E08, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x001E09, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x001E10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x001E30, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6) == 0x001E38, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x001E58, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_8) == 0x001E5C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_8) == 0x001E68, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_37) == 0x001F18, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_37' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x001F28, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeOutgoingSpec_ReturnValue) == 0x001F30, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeOutgoingSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_isfront_ReturnValue) == 0x001F40, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_isfront_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_StateTreeEvent) == 0x001F48, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAIController_ReturnValue_1) == 0x001F68, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_31) == 0x001F70, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x001F71, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_9) == 0x001F74, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_9) == 0x001F80, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_7) == 0x002030, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x002050, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x002058, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetActorForwardVector_ReturnValue) == 0x002060, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_38) == 0x002078, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_38' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x002088, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_39) == 0x0020A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_39' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerController_ReturnValue_3) == 0x0020B0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0020B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetPlayerPawn_ReturnValue) == 0x0020C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0020C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_DynamicCast_bSuccess_10) == 0x0020D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0020E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetProperty_ReturnValue) == 0x0020E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_5) == 0x0020F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Select_Default_1) == 0x0020F8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_32) == 0x002100, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_10) == 0x002104, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_10) == 0x002110, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_SpawnedEnemy) == 0x0021C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_SpawnedEnemy' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x0021C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x0021D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_33) == 0x0022B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x0022BC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_40) == 0x0022C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_40' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0022D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0022D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0022F8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x002300, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1) == 0x002308, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x002328, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_41) == 0x00232C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_41' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x002340, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x002358, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldSubsystem_ReturnValue_4) == 0x002360, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldSubsystem_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x002368, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x002380, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Add_VectorVector_ReturnValue) == 0x002390, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Array_Length_ReturnValue) == 0x0023A8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0023B0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Less_IntInt_ReturnValue_1) == 0x0023C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0023D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0023E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakVector_X) == 0x002400, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakVector_Y) == 0x002408, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakVector_Z) == 0x002410, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Variable_12) == 0x002418, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Abs_ReturnValue) == 0x002420, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x002428, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeVector_ReturnValue_1) == 0x002430, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Select_Default_2) == 0x002448, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_VSize_ReturnValue) == 0x002450, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x002458, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Less_DoubleDouble_ReturnValue) == 0x002460, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x002468, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue_4) == 0x002478, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x00247C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x002488, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetFeedTargetLocationWithOffset_ReturnValue) == 0x002490, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetFeedTargetLocationWithOffset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0024A8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0024C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_VInterpTo_ReturnValue) == 0x0024D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0024F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0025D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_34) == 0x0025D9, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x0025E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x0025E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetFeedTargetLocationWithOffset_ReturnValue_1) == 0x002600, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetFeedTargetLocationWithOffset_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x002618, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_CalculateTargetOffsetPosition_ReturnValue) == 0x002630, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_CalculateTargetOffsetPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeRotFromZX_ReturnValue) == 0x002638, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeRotFromZX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x002650, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Add_VectorVector_ReturnValue_1) == 0x002668, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x002680, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x002688, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_35) == 0x002690, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_35' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_36) == 0x002691, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_36' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_8) == 0x002698, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_9) == 0x0026B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddLooseGameplayTags_ReturnValue_3) == 0x0026D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddLooseGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WaitDelay_ReturnValue_6) == 0x0026E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x0026E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_37) == 0x0026E9, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_37' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_Has_Been_Initd_Variable_3) == 0x0026EA, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_38) == 0x0026EB, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_38' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0026F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Roll_1) == 0x002708, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Pitch_1) == 0x00270C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Yaw_1) == 0x002710, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x002718, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_SignOfFloat_ReturnValue) == 0x002720, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x002728, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_NegateVector_ReturnValue) == 0x002740, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Select_Default_3) == 0x002758, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x002770, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x002778, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x002790, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_EqualEqual_RotatorRotator_ReturnValue) == 0x002798, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_EqualEqual_RotatorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0027A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanOR_ReturnValue) == 0x0027B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_NegateVector_ReturnValue_1) == 0x0027C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Roll_2) == 0x0027D8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Pitch_2) == 0x0027DC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BreakRotator_Yaw_2) == 0x0027E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_Select_Default_4) == 0x0027E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_SignOfFloat_ReturnValue_1) == 0x002800, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_SignOfFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x002808, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x002820, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventTag_11) == 0x002824, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventTag_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CustomEvent_EventData_11) == 0x002830, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CustomEvent_EventData_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanOR_ReturnValue_1) == 0x0028E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_39) == 0x0028E1, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_39' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x0028E8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RInterpTo_ReturnValue) == 0x002900, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RInterpTo_Constant_ReturnValue) == 0x002918, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_SetActorRotation_ReturnValue) == 0x002930, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x002931, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorRotation_ReturnValue_2) == 0x002938, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController) == 0x002950, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetEnemyControllerFromActor_OutPins) == 0x002958, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetEnemyControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_SwitchEnum_CmpSuccess) == 0x002959, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_WrestlerAimAssist_ReturnValue) == 0x002960, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_WrestlerAimAssist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_40) == 0x002968, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_40' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_41) == 0x002969, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_41' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_int_Array_Index_Variable) == 0x00296C, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x002970, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Array_Get_Item) == 0x002978, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x002980, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_4) == 0x002990, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_GetAIController_ReturnValue_2) == 0x002998, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x0029A0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsDetectingActor_ReturnValue) == 0x0029B8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Vector_Distance_ReturnValue) == 0x0029C0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsAwareOfActor_ReturnValue) == 0x0029C8, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0029C9, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_BooleanAND_ReturnValue_5) == 0x0029CA, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_IsValid_ReturnValue_42) == 0x0029CB, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_IsValid_ReturnValue_42' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, Temp_bool_IsClosed_Variable_3) == 0x0029CC, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_42) == 0x0029D0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_42' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_CreateDelegate_OutputDelegate_43) == 0x0029E0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_CreateDelegate_OutputDelegate_43' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_WrestlerGrantedPointsData) == 0x0029F0, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_WrestlerGrantedPointsData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddPointsForCustomEvent_ReturnValue) == 0x002A10, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddPointsForCustomEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_WrestlerGrantedPointsData_1) == 0x002A18, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_WrestlerGrantedPointsData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddPointsForCustomEvent_ReturnValue_1) == 0x002A38, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddPointsForCustomEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_MakeStruct_WrestlerGrantedPointsData_2) == 0x002A40, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_MakeStruct_WrestlerGrantedPointsData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, K2Node_SwitchEnum_CmpSuccess_1) == 0x002A60, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AddPointsForCustomEvent_ReturnValue_2) == 0x002A61, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AddPointsForCustomEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x002A68, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x002A70, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_VInterpTo_DeltaTime_ImplicitCast) == 0x002A74, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_VInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_SignOfFloat_A_ImplicitCast) == 0x002A78, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_SignOfFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RInterpTo_Constant_DeltaTime_ImplicitCast) == 0x002A80, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x002A84, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base, CallFunc_SignOfFloat_A_ImplicitCast_1) == 0x002A88, "Member 'GA_PlayerFeed_Base_C_ExecuteUbergraph_GA_PlayerFeed_Base::CallFunc_SignOfFloat_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_GetSequenceLength \ +static_assert(alignof(GA_PlayerFeed_Base_C_GetSequenceLength) == 0x000004, "Wrong alignment on GA_PlayerFeed_Base_C_GetSequenceLength"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_GetSequenceLength) == 0x000024, "Wrong size on GA_PlayerFeed_Base_C_GetSequenceLength"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceLength, ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_GetSequenceLength::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceLength, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'GA_PlayerFeed_Base_C_GetSequenceLength::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceLength, CallFunc_GetPlaybackRange_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_GetSequenceLength::CallFunc_GetPlaybackRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceLength, CallFunc_GetEndSeconds_ReturnValue) == 0x00001C, "Member 'GA_PlayerFeed_Base_C_GetSequenceLength::CallFunc_GetEndSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceLength, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'GA_PlayerFeed_Base_C_GetSequenceLength::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_Handle_Feed_Achievements \ +static_assert(alignof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_Handle_Feed_Achievements"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements) == 0x000020, "Wrong size on GA_PlayerFeed_Base_C_Handle_Feed_Achievements"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_IsTargetMassCharacter_IsMass) == 0x000000, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_IsTargetMassCharacter_IsMass' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, Temp_int_Variable) == 0x00000C, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_GetPlayerCostumeData_Data) == 0x000010, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_GetPlayerCostumeData_Data' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x000019, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Handle_Feed_Achievements, K2Node_SwitchEnum_CmpSuccess) == 0x00001A, "Member 'GA_PlayerFeed_Base_C_Handle_Feed_Achievements::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_IsTargetMassCharacter \ +static_assert(alignof(GA_PlayerFeed_Base_C_IsTargetMassCharacter) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_IsTargetMassCharacter"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_IsTargetMassCharacter) == 0x000018, "Wrong size on GA_PlayerFeed_Base_C_IsTargetMassCharacter"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsTargetMassCharacter, IsMass) == 0x000000, "Member 'GA_PlayerFeed_Base_C_IsTargetMassCharacter::IsMass' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsTargetMassCharacter, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000008, "Member 'GA_PlayerFeed_Base_C_IsTargetMassCharacter::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsTargetMassCharacter, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_PlayerFeed_Base_C_IsTargetMassCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsTargetMassCharacter, CallFunc_IsMassCharacter_ReturnValue) == 0x000011, "Member 'GA_PlayerFeed_Base_C_IsTargetMassCharacter::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsTargetMassCharacter, CallFunc_DoesImplementInterface_ReturnValue) == 0x000012, "Member 'GA_PlayerFeed_Base_C_IsTargetMassCharacter::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_IsValidTarget \ +static_assert(alignof(GA_PlayerFeed_Base_C_IsValidTarget) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_IsValidTarget"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_IsValidTarget) == 0x000068, "Wrong size on GA_PlayerFeed_Base_C_IsValidTarget"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, Is_Valid_Target) == 0x000000, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::Is_Valid_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, Feed_Target) == 0x000008, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::Feed_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, Sequence) == 0x000010, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, Target) == 0x000018, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_GetPassiveTargetData_ReturnValue) == 0x000020, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_K2_GetSingleActorFromTargetData_OutPins) == 0x000048, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_K2_GetSingleActorFromTargetData_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_K2_GetSingleActorFromTargetData_ReturnValue) == 0x000050, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_K2_GetSingleActorFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_GetSequenceForTarget_LevelSequence) == 0x000058, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_GetSequenceForTarget_LevelSequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_GetSequenceForTarget_BossFinal) == 0x000060, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_GetSequenceForTarget_BossFinal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, CallFunc_IsValid_ReturnValue_1) == 0x000062, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_IsValidTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000063, "Member 'GA_PlayerFeed_Base_C_IsValidTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_JumpToMarkedFrame \ +static_assert(alignof(GA_PlayerFeed_Base_C_JumpToMarkedFrame) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_JumpToMarkedFrame"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_JumpToMarkedFrame) == 0x000058, "Wrong size on GA_PlayerFeed_Base_C_JumpToMarkedFrame"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, SequenceActor_0) == 0x000000, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::SequenceActor_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, MarkedFrame) == 0x000008, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::MarkedFrame' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x000020, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, CallFunc_GetSequencePlayer_ReturnValue) == 0x000048, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_JumpToMarkedFrame, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'GA_PlayerFeed_Base_C_JumpToMarkedFrame::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerFeed_Base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerFeed_Base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerFeed_Base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerFeed_Base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969 \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnBlendOut_6F45AC81481D05D844F897BCA6B73969::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969 \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnCancelled_6F45AC81481D05D844F897BCA6B73969::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnCancelled_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969 \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnCompleted_6F45AC81481D05D844F897BCA6B73969::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92 \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92) == 0x000020, "Wrong size on GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92, DestinationReached) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92, TimedOut) == 0x000001, "Member 'GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92, FinalTargetLocation) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnFinished_26D7DC0141DF16305D0398A14422EA92::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969 \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnInterrupted_6F45AC81481D05D844F897BCA6B73969::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnPassiveTargetFound \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnPassiveTargetFound) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnPassiveTargetFound"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnPassiveTargetFound) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_OnPassiveTargetFound"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnPassiveTargetFound, foundTarget) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnPassiveTargetFound::foundTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnPassiveTargetLost \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnPassiveTargetLost) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnPassiveTargetLost"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnPassiveTargetLost) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_OnPassiveTargetLost"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnPassiveTargetLost, lostTarget) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnPassiveTargetLost::lostTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnSequenceFinished_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnSequencePause_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnSequencePlay_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnSequenceStopped_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA \ +static_assert(alignof(GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA) == 0x0000B8, "Wrong size on GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA, EventTag) == 0x000000, "Member 'GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA, EventData) == 0x000008, "Member 'GA_PlayerFeed_Base_C_OnSequenceUpdate_C88D23734A4A5C9E0469439B871CBAEA::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_PlayMoveToMontage \ +static_assert(alignof(GA_PlayerFeed_Base_C_PlayMoveToMontage) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_PlayMoveToMontage"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_PlayMoveToMontage) == 0x000018, "Wrong size on GA_PlayerFeed_Base_C_PlayMoveToMontage"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_PlayMoveToMontage, CallFunc_ShouldJumpMoveTo_ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_PlayMoveToMontage::CallFunc_ShouldJumpMoveTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_PlayMoveToMontage, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_PlayMoveToMontage::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_PlayMoveToMontage, CallFunc_PlayAnimMontage_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_PlayMoveToMontage::CallFunc_PlayAnimMontage_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ReceiveBlood \ +static_assert(alignof(GA_PlayerFeed_Base_C_ReceiveBlood) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ReceiveBlood"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ReceiveBlood) == 0x000208, "Wrong size on GA_PlayerFeed_Base_C_ReceiveBlood"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, GreedFailCount) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::GreedFailCount' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, PriestNHookersCounter) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::PriestNHookersCounter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, PropertyMelancholic) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::PropertyMelancholic' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, PropertyCholeric) == 0x000018, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::PropertyCholeric' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, PropertySanguine) == 0x000020, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::PropertySanguine' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, BloodAmountToAdd) == 0x000028, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::BloodAmountToAdd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, AffectBloodAmount) == 0x000030, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::AffectBloodAmount' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, RelocateBloodAmount) == 0x000038, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::RelocateBloodAmount' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, MasteryBloodAmount) == 0x000040, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::MasteryBloodAmount' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, StrikeBloodAmount) == 0x000048, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::StrikeBloodAmount' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, NewLocalVar) == 0x000050, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, FeedBloodEffect) == 0x000058, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::FeedBloodEffect' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_real_Variable) == 0x000060, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000068, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_BloodSlotFull_ReturnValue) == 0x00006C, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_BloodSlotFull_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, K2Node_SwitchInteger_CmpSuccess) == 0x00006D, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_bool_Variable) == 0x00006E, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_BloodSlotFull_ReturnValue_1) == 0x00006F, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_BloodSlotFull_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_BloodSlotFull_ReturnValue_2) == 0x000070, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_BloodSlotFull_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_BloodSlotFull_ReturnValue_3) == 0x000071, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_BloodSlotFull_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_bool_Variable_1) == 0x000088, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000090, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000098, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_IsValid_ReturnValue) == 0x0000A0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetHealth_ReturnValue) == 0x0000A4, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetHealth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_real_Variable_1) == 0x0000B0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000B8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_real_Variable_2) == 0x0000C0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_bool_Variable_2) == 0x0000C8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0000D8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000E0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000F0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0000F8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000100, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000108, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000118, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000120, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000130, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000138, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, K2Node_Select_Default) == 0x000140, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000148, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000158, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, K2Node_Select_Default_1) == 0x000160, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_real_Variable_3) == 0x000168, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, K2Node_Select_Default_2) == 0x000170, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000178, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_bool_Variable_3) == 0x000188, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000190, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x0001A0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, K2Node_Select_Default_3) == 0x0001B0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x0001B8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3) == 0x0001C8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, Temp_delegate_Variable) == 0x0001D8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x0001E8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x0001F0, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x0001F8, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1) == 0x0001FC, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2) == 0x000200, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveBlood, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3) == 0x000204, "Member 'GA_PlayerFeed_Base_C_ReceiveBlood::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ReceiveHealth \ +static_assert(alignof(GA_PlayerFeed_Base_C_ReceiveHealth) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ReceiveHealth"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ReceiveHealth) == 0x000088, "Wrong size on GA_PlayerFeed_Base_C_ReceiveHealth"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, BloodHealEffect) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::BloodHealEffect' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, HealthAmountToApply) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::HealthAmountToApply' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000020, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_GetHealth_ReturnValue) == 0x000030, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_GetHealth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000038, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000041, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_IsDeadByMasquerade_ReturnValue) == 0x000042, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_IsDeadByMasquerade_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_BooleanAND_ReturnValue) == 0x000043, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000048, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000058, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x000060, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_HasClanPerk_ReturnValue) == 0x000068, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000078, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ReceiveHealth, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x000080, "Member 'GA_PlayerFeed_Base_C_ReceiveHealth::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ResetFeedTargetAwareness \ +static_assert(alignof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ResetFeedTargetAwareness"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness) == 0x000020, "Wrong size on GA_PlayerFeed_Base_C_ResetFeedTargetAwareness"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness, K2Node_DynamicCast_AsCharacter) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ResetFeedTargetAwareness::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness, K2Node_DynamicCast_bSuccess) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ResetFeedTargetAwareness::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ResetFeedTargetAwareness::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ResetFeedTargetAwareness, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_ResetFeedTargetAwareness::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_SendReactionEffectToTarget \ +static_assert(alignof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_SendReactionEffectToTarget"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget) == 0x0000A0, "Wrong size on GA_PlayerFeed_Base_C_SendReactionEffectToTarget"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, FeedReactEffect) == 0x000000, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::FeedReactEffect' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, Temp_class_Variable) == 0x000008, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, K2Node_DynamicCast_AsWrestler_Feed_Target_Interface) == 0x000010, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::K2Node_DynamicCast_AsWrestler_Feed_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_DoesImplementInterface_ReturnValue) == 0x000021, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_GetFeedReactGameplayEffect_ReturnValue) == 0x000028, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_GetFeedReactGameplayEffect_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_IsValidClass_ReturnValue) == 0x000030, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000038, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000060, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x000068, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SendReactionEffectToTarget, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000098, "Member 'GA_PlayerFeed_Base_C_SendReactionEffectToTarget::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_SequenceEvent \ +static_assert(alignof(GA_PlayerFeed_Base_C_SequenceEvent) == 0x000004, "Wrong alignment on GA_PlayerFeed_Base_C_SequenceEvent"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_SequenceEvent) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_SequenceEvent"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SequenceEvent, Selection) == 0x000000, "Member 'GA_PlayerFeed_Base_C_SequenceEvent::Selection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_SetDefaultMeshHeight \ +static_assert(alignof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_SetDefaultMeshHeight"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight) == 0x000018, "Wrong size on GA_PlayerFeed_Base_C_SetDefaultMeshHeight"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight, lerpDuration) == 0x000000, "Member 'GA_PlayerFeed_Base_C_SetDefaultMeshHeight::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight, K2Node_DynamicCast_AsWrestler_AICharacter) == 0x000008, "Member 'GA_PlayerFeed_Base_C_SetDefaultMeshHeight::K2Node_DynamicCast_AsWrestler_AICharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_PlayerFeed_Base_C_SetDefaultMeshHeight::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'GA_PlayerFeed_Base_C_SetDefaultMeshHeight::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetDefaultMeshHeight, CallFunc_SetDefaultMeshHeightScale_InLerpDuration_ImplicitCast) == 0x000014, "Member 'GA_PlayerFeed_Base_C_SetDefaultMeshHeight::CallFunc_SetDefaultMeshHeightScale_InLerpDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_SetupResonance \ +static_assert(alignof(GA_PlayerFeed_Base_C_SetupResonance) == 0x000001, "Wrong alignment on GA_PlayerFeed_Base_C_SetupResonance"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_SetupResonance) == 0x000006, "Wrong size on GA_PlayerFeed_Base_C_SetupResonance"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, CallFunc_GetBloodResonanceType_ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_SetupResonance::CallFunc_GetBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x000001, "Member 'GA_PlayerFeed_Base_C_SetupResonance::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, K2Node_SwitchEnum_CmpSuccess) == 0x000002, "Member 'GA_PlayerFeed_Base_C_SetupResonance::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, CallFunc_GetMassBloodResonanceState_ReturnValue) == 0x000003, "Member 'GA_PlayerFeed_Base_C_SetupResonance::CallFunc_GetMassBloodResonanceState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, CallFunc_IsTargetMassCharacter_IsMass) == 0x000004, "Member 'GA_PlayerFeed_Base_C_SetupResonance::CallFunc_IsTargetMassCharacter_IsMass' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_SetupResonance, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000005, "Member 'GA_PlayerFeed_Base_C_SetupResonance::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_TargetIsPedestrian \ +static_assert(alignof(GA_PlayerFeed_Base_C_TargetIsPedestrian) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_TargetIsPedestrian"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_TargetIsPedestrian) == 0x000038, "Wrong size on GA_PlayerFeed_Base_C_TargetIsPedestrian"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, IsPed) == 0x000000, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::IsPed' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, Temp_byte_Variable) == 0x000001, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000002, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000008, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, CallFunc_GetAIController_ReturnValue) == 0x000018, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000020, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TargetIsPedestrian, CallFunc_GetGameTeamId_ReturnValue) == 0x000031, "Member 'GA_PlayerFeed_Base_C_TargetIsPedestrian::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ToggleCharacterMovement \ +static_assert(alignof(GA_PlayerFeed_Base_C_ToggleCharacterMovement) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ToggleCharacterMovement"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ToggleCharacterMovement) == 0x000018, "Wrong size on GA_PlayerFeed_Base_C_ToggleCharacterMovement"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, bEnabled) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::bEnabled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, Temp_byte_Variable) == 0x000001, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, Temp_byte_Variable_1) == 0x000002, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, Temp_bool_Variable) == 0x000003, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCharacterMovement, K2Node_Select_Default) == 0x000011, "Member 'GA_PlayerFeed_Base_C_ToggleCharacterMovement::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ToggleCollisionEnabled \ +static_assert(alignof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ToggleCollisionEnabled"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled) == 0x000018, "Wrong size on GA_PlayerFeed_Base_C_ToggleCollisionEnabled"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, Enable) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::Enable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, Temp_bool_Variable) == 0x000001, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, Temp_byte_Variable) == 0x000002, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, Temp_byte_Variable_1) == 0x000003, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleCollisionEnabled, K2Node_Select_Default) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ToggleCollisionEnabled::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_ToggleIgnoreInput \ +static_assert(alignof(GA_PlayerFeed_Base_C_ToggleIgnoreInput) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_ToggleIgnoreInput"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_ToggleIgnoreInput) == 0x000020, "Wrong size on GA_PlayerFeed_Base_C_ToggleIgnoreInput"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleIgnoreInput, bShouldIgnore) == 0x000000, "Member 'GA_PlayerFeed_Base_C_ToggleIgnoreInput::bShouldIgnore' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleIgnoreInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_ToggleIgnoreInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleIgnoreInput, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000010, "Member 'GA_PlayerFeed_Base_C_ToggleIgnoreInput::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleIgnoreInput, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000018, "Member 'GA_PlayerFeed_Base_C_ToggleIgnoreInput::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_ToggleIgnoreInput, K2Node_SwitchEnum_CmpSuccess) == 0x000019, "Member 'GA_PlayerFeed_Base_C_ToggleIgnoreInput::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_Try_Damage_Target \ +static_assert(alignof(GA_PlayerFeed_Base_C_Try_Damage_Target) == 0x000004, "Wrong alignment on GA_PlayerFeed_Base_C_Try_Damage_Target"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_Try_Damage_Target) == 0x000004, "Wrong size on GA_PlayerFeed_Base_C_Try_Damage_Target"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_Try_Damage_Target, CallFunc_ApplyExecutionDamage_InDamageAmount_ImplicitCast) == 0x000000, "Member 'GA_PlayerFeed_Base_C_Try_Damage_Target::CallFunc_ApplyExecutionDamage_InDamageAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_TryInstakillTarget \ +static_assert(alignof(GA_PlayerFeed_Base_C_TryInstakillTarget) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_TryInstakillTarget"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_TryInstakillTarget) == 0x000058, "Wrong size on GA_PlayerFeed_Base_C_TryInstakillTarget"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, Decapitate) == 0x000000, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::Decapitate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, Death_Tag) == 0x000004, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::Death_Tag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, Temp_bool_Variable) == 0x00000C, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000030, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000041, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_IsValid_ReturnValue) == 0x000042, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000043, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000048, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_TryInstakillTarget, CallFunc_RemoveActiveEffectsWithTags_ReturnValue) == 0x000054, "Member 'GA_PlayerFeed_Base_C_TryInstakillTarget::CallFunc_RemoveActiveEffectsWithTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_CanInstakill \ +static_assert(alignof(GA_PlayerFeed_Base_C_CanInstakill) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_CanInstakill"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_CanInstakill) == 0x000020, "Wrong size on GA_PlayerFeed_Base_C_CanInstakill"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_CanInstakill::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, Temp_bool_Variable) == 0x000001, "Member 'GA_PlayerFeed_Base_C_CanInstakill::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, CallFunc_DoesImplementInterface_ReturnValue) == 0x000002, "Member 'GA_PlayerFeed_Base_C_CanInstakill::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, K2Node_DynamicCast_AsWrestler_Feed_Target_Interface) == 0x000008, "Member 'GA_PlayerFeed_Base_C_CanInstakill::K2Node_DynamicCast_AsWrestler_Feed_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_PlayerFeed_Base_C_CanInstakill::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_CanInstakill, CallFunc_CanFeedInstaKill_ReturnValue) == 0x000019, "Member 'GA_PlayerFeed_Base_C_CanInstakill::CallFunc_CanFeedInstaKill_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_GenerateSequenceBindings \ +static_assert(alignof(GA_PlayerFeed_Base_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_GenerateSequenceBindings) == 0x0000E8, "Wrong size on GA_PlayerFeed_Base_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, TargetActor) == 0x000000, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000008, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, Temp_bool_Variable) == 0x000018, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000028, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000038, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000040, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, CallFunc_GetSkeleton_ReturnValue) == 0x000058, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::CallFunc_GetSkeleton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding_1) == 0x000060, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000080, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000088, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_Select_Default) == 0x000098, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding_2) == 0x0000B0, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeArray_Array_2) == 0x0000C8, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x0000D8, "Member 'GA_PlayerFeed_Base_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_GetFilterInterface \ +static_assert(alignof(GA_PlayerFeed_Base_C_GetFilterInterface) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_GetFilterInterface"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_GetFilterInterface) == 0x000008, "Wrong size on GA_PlayerFeed_Base_C_GetFilterInterface"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetFilterInterface, ReturnValue) == 0x000000, "Member 'GA_PlayerFeed_Base_C_GetFilterInterface::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_GetSequenceForTarget \ +static_assert(alignof(GA_PlayerFeed_Base_C_GetSequenceForTarget) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_GetSequenceForTarget"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_GetSequenceForTarget) == 0x000138, "Wrong size on GA_PlayerFeed_Base_C_GetSequenceForTarget"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, TargetActor) == 0x000000, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, LevelSequence) == 0x000008, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::LevelSequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, BossFinal) == 0x000010, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::BossFinal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, bIsFront) == 0x000011, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::bIsFront' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, Tag) == 0x000014, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::Tag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, FoundSequence) == 0x000020, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::FoundSequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, Temp_bool_Variable) == 0x000028, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_isfront_ReturnValue) == 0x000029, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_isfront_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, Temp_bool_Variable_1) == 0x00002A, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_IsValid_ReturnValue) == 0x00002B, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, Temp_bool_Variable_2) == 0x00002C, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, Temp_bool_Variable_3) == 0x00002D, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_Select_Default) == 0x000030, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_Select_Default_1) == 0x000038, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_Select_Default_2) == 0x000040, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetSequenceForMassEntity_ReturnValue) == 0x000048, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetSequenceForMassEntity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_Select_Default_3) == 0x000050, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000058, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000068, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000080, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000090, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_BooleanAND_ReturnValue) == 0x000091, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetEnemyTypeName_ReturnValue) == 0x000094, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetSequenceByEnemyName_ReturnValue) == 0x0000A0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetSequenceByEnemyName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetSequenceByEnemyName_ReturnValue_1) == 0x0000A8, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetSequenceByEnemyName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0000B0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0000C0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x0000C8, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x0000D0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x0000D4, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1) == 0x0000D8, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1) == 0x0000DC, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_IsMassCharacter_ReturnValue) == 0x0000E0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_IsValid_ReturnValue_1) == 0x0000F1, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetEnemyTypeName_ReturnValue_1) == 0x0000F4, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetEnemyTypeName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetEnemyTypeName_ReturnValue_2) == 0x0000FC, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetEnemyTypeName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetSequenceByEnemyName_ReturnValue_2) == 0x000108, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetSequenceByEnemyName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_GetSequenceByEnemyName_ReturnValue_3) == 0x000110, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_GetSequenceByEnemyName_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_K2_GetFloatAttribute_OutPins) == 0x000118, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_K2_GetFloatAttribute_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_K2_GetFloatAttribute_ReturnValue) == 0x00011C, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_K2_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000120, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000128, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_GetSequenceForTarget, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000130, "Member 'GA_PlayerFeed_Base_C_GetSequenceForTarget::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_isfront \ +static_assert(alignof(GA_PlayerFeed_Base_C_isfront) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_isfront"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_isfront) == 0x000088, "Wrong size on GA_PlayerFeed_Base_C_isfront"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, TargetActor) == 0x000000, "Member 'GA_PlayerFeed_Base_C_isfront::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, ReturnValue) == 0x000008, "Member 'GA_PlayerFeed_Base_C_isfront::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_GetActorForwardVector_ReturnValue) == 0x000010, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000040, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000048, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_Dot_VectorVector_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_isfront, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000080, "Member 'GA_PlayerFeed_Base_C_isfront::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerFeed_Base_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerFeed_Base_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerFeed_Base_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerFeed_Base_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_PlayerFeed_Base_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, NewLocalVar_0) == 0x000071, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::NewLocalVar_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, CallFunc_GetComponentByClass_ReturnValue) == 0x000078, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, CallFunc_Conv_SoftClassReferenceToClass_ReturnValue) == 0x000080, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::CallFunc_Conv_SoftClassReferenceToClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, K2Node_ClassDynamicCast_AsGameplay_Ability_Target_Actor) == 0x000088, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::K2Node_ClassDynamicCast_AsGameplay_Ability_Target_Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, K2Node_ClassDynamicCast_bSuccess) == 0x000090, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerFeed_Base_C_K2_CanActivateAbility, CallFunc_HasTargetData_ReturnValue) == 0x000091, "Member 'GA_PlayerFeed_Base_C_K2_CanActivateAbility::CallFunc_HasTargetData_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerFeed_Base_C \ +static_assert(alignof(UGA_PlayerFeed_Base_C) == 0x000008, "Wrong alignment on UGA_PlayerFeed_Base_C"); \ +static_assert(sizeof(UGA_PlayerFeed_Base_C) == 0x000838, "Wrong size on UGA_PlayerFeed_Base_C"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, UberGraphFrame) == 0x0006A8, "Member 'UGA_PlayerFeed_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FrontFeedSequences) == 0x0006B0, "Member 'UGA_PlayerFeed_Base_C::FrontFeedSequences' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, RearFeedSequences) == 0x0006B8, "Member 'UGA_PlayerFeed_Base_C::RearFeedSequences' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Playback_Settings) == 0x0006C0, "Member 'UGA_PlayerFeed_Base_C::Playback_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, LoadedSequence) == 0x0006E0, "Member 'UGA_PlayerFeed_Base_C::LoadedSequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, SequenceActor) == 0x0006E8, "Member 'UGA_PlayerFeed_Base_C::SequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, JumpMoveToMontage) == 0x0006F0, "Member 'UGA_PlayerFeed_Base_C::JumpMoveToMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FallbackSequence) == 0x0006F8, "Member 'UGA_PlayerFeed_Base_C::FallbackSequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BloodHealCueTag) == 0x000700, "Member 'UGA_PlayerFeed_Base_C::BloodHealCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, DelayEndAbilityTask) == 0x000708, "Member 'UGA_PlayerFeed_Base_C::DelayEndAbilityTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, AdditionalPauseTime) == 0x000710, "Member 'UGA_PlayerFeed_Base_C::AdditionalPauseTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, PauseDistance) == 0x000714, "Member 'UGA_PlayerFeed_Base_C::PauseDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, PauseDuration) == 0x000718, "Member 'UGA_PlayerFeed_Base_C::PauseDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, PassiveTag) == 0x000720, "Member 'UGA_PlayerFeed_Base_C::PassiveTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, EliteDamage) == 0x000740, "Member 'UGA_PlayerFeed_Base_C::EliteDamage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FrontFeedSequences_Nonlethal) == 0x000748, "Member 'UGA_PlayerFeed_Base_C::FrontFeedSequences_Nonlethal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, RearFeedSequences_NonLethal) == 0x000750, "Member 'UGA_PlayerFeed_Base_C::RearFeedSequences_NonLethal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, HealthAmount) == 0x000758, "Member 'UGA_PlayerFeed_Base_C::HealthAmount' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BloodAmount) == 0x000760, "Member 'UGA_PlayerFeed_Base_C::BloodAmount' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FrontFeedSequencesMass) == 0x000768, "Member 'UGA_PlayerFeed_Base_C::FrontFeedSequencesMass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, RearFeedSequencesMass) == 0x000770, "Member 'UGA_PlayerFeed_Base_C::RearFeedSequencesMass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Noise_Range) == 0x000778, "Member 'UGA_PlayerFeed_Base_C::Noise_Range' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Noise_Loudness) == 0x00077C, "Member 'UGA_PlayerFeed_Base_C::Noise_Loudness' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Do_Pause) == 0x000780, "Member 'UGA_PlayerFeed_Base_C::Do_Pause' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Do_Passive) == 0x000781, "Member 'UGA_PlayerFeed_Base_C::Do_Passive' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Previous_Sequence) == 0x000788, "Member 'UGA_PlayerFeed_Base_C::Previous_Sequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BossSequencesFront) == 0x000790, "Member 'UGA_PlayerFeed_Base_C::BossSequencesFront' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BossSequencesRear) == 0x000798, "Member 'UGA_PlayerFeed_Base_C::BossSequencesRear' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BossSequencesFatal) == 0x0007A0, "Member 'UGA_PlayerFeed_Base_C::BossSequencesFatal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, ForceDestroy) == 0x0007A8, "Member 'UGA_PlayerFeed_Base_C::ForceDestroy' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, DamageResistTags) == 0x0007B0, "Member 'UGA_PlayerFeed_Base_C::DamageResistTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, ResistEffect) == 0x0007D0, "Member 'UGA_PlayerFeed_Base_C::ResistEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, NoiseDelay) == 0x0007D8, "Member 'UGA_PlayerFeed_Base_C::NoiseDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, drinks_blood) == 0x0007DC, "Member 'UGA_PlayerFeed_Base_C::drinks_blood' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Witnessed) == 0x0007DD, "Member 'UGA_PlayerFeed_Base_C::Witnessed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, VisibilityEffect) == 0x0007E0, "Member 'UGA_PlayerFeed_Base_C::VisibilityEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, BoilingVictim) == 0x0007E8, "Member 'UGA_PlayerFeed_Base_C::BoilingVictim' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, GreedActive) == 0x0007E9, "Member 'UGA_PlayerFeed_Base_C::GreedActive' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, DamageAtEnd) == 0x0007EA, "Member 'UGA_PlayerFeed_Base_C::DamageAtEnd' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, IsFrontal) == 0x0007EB, "Member 'UGA_PlayerFeed_Base_C::IsFrontal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, TurnForced) == 0x0007EC, "Member 'UGA_PlayerFeed_Base_C::TurnForced' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, TurnTick) == 0x0007F0, "Member 'UGA_PlayerFeed_Base_C::TurnTick' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, bShouldAdjustForObstacles) == 0x0007F8, "Member 'UGA_PlayerFeed_Base_C::bShouldAdjustForObstacles' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, VictimResonance) == 0x0007F9, "Member 'UGA_PlayerFeed_Base_C::VictimResonance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, ResonanceTally) == 0x0007FC, "Member 'UGA_PlayerFeed_Base_C::ResonanceTally' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, ResonancePerDrink) == 0x000800, "Member 'UGA_PlayerFeed_Base_C::ResonancePerDrink' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, Difficulty) == 0x000808, "Member 'UGA_PlayerFeed_Base_C::Difficulty' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, DiscardTarget) == 0x000810, "Member 'UGA_PlayerFeed_Base_C::DiscardTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FedSanguineProperty) == 0x000818, "Member 'UGA_PlayerFeed_Base_C::FedSanguineProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FedCholericProperty) == 0x000820, "Member 'UGA_PlayerFeed_Base_C::FedCholericProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, FedMelancholicProperty) == 0x000828, "Member 'UGA_PlayerFeed_Base_C::FedMelancholicProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerFeed_Base_C, UnoriginalSinFeedCounter) == 0x000830, "Member 'UGA_PlayerFeed_Base_C::UnoriginalSinFeedCounter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill \ +static_assert(alignof(GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill) == 0x000004, "Wrong alignment on GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill"); \ +static_assert(sizeof(GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill) == 0x000008, "Wrong size on GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill"); \ +static_assert(offsetof(GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill, EntryPoint) == 0x000000, "Member 'GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill, K2Node_Event_bWasCancelled) == 0x000004, "Member 'GA_PlayerStealthKill_C_ExecuteUbergraph_GA_PlayerStealthKill::K2Node_Event_bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthKill_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerStealthKill_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerStealthKill_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerStealthKill_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerStealthKill_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerStealthKill_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerStealthKill_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerStealthKill_C \ +static_assert(alignof(UGA_PlayerStealthKill_C) == 0x000008, "Wrong alignment on UGA_PlayerStealthKill_C"); \ +static_assert(sizeof(UGA_PlayerStealthKill_C) == 0x000848, "Wrong size on UGA_PlayerStealthKill_C"); \ +static_assert(offsetof(UGA_PlayerStealthKill_C, UberGraphFrame_GA_PlayerStealthKill_C) == 0x000838, "Member 'UGA_PlayerStealthKill_C::UberGraphFrame_GA_PlayerStealthKill_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthKill_C, StealthKill) == 0x000840, "Member 'UGA_PlayerStealthKill_C::StealthKill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill \ +static_assert(alignof(GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill) == 0x000004, "Wrong alignment on GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill"); \ +static_assert(sizeof(GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill) == 0x000008, "Wrong size on GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill"); \ +static_assert(offsetof(GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill, EntryPoint) == 0x000000, "Member 'GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill, K2Node_Event_bWasCancelled) == 0x000004, "Member 'GA_PlayerCombatKill_C_ExecuteUbergraph_GA_PlayerCombatKill::K2Node_Event_bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerCombatKill_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerCombatKill_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerCombatKill_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerCombatKill_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerCombatKill_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerCombatKill_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerCombatKill_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerCombatKill_C \ +static_assert(alignof(UGA_PlayerCombatKill_C) == 0x000008, "Wrong alignment on UGA_PlayerCombatKill_C"); \ +static_assert(sizeof(UGA_PlayerCombatKill_C) == 0x000858, "Wrong size on UGA_PlayerCombatKill_C"); \ +static_assert(offsetof(UGA_PlayerCombatKill_C, UberGraphFrame_GA_PlayerCombatKill_C) == 0x000848, "Member 'UGA_PlayerCombatKill_C::UberGraphFrame_GA_PlayerCombatKill_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerCombatKill_C, CombatKill) == 0x000850, "Member 'UGA_PlayerCombatKill_C::CombatKill' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete \ +static_assert(alignof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete) == 0x000008, "Wrong alignment on WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete"); \ +static_assert(sizeof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete) == 0x000078, "Wrong size on WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, EntryPoint) == 0x000000, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_Event_InAutomata) == 0x000028, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_Event_InState) == 0x000030, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000038, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_Array_Get_Item) == 0x000048, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_DynamicCast_AsBP_Enemy_Boss) == 0x000050, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_DynamicCast_AsBP_Enemy_Boss' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_GetComponentByClass_ReturnValue) == 0x000060, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_DynamicCast_AsHera_Mission_Actor_Component) == 0x000068, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_DynamicCast_AsHera_Mission_Actor_Component' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete, CallFunc_IsValid_ReturnValue) == 0x000071, "Member 'WaitBossPhaseComplete_C_ExecuteUbergraph_WaitBossPhaseComplete::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaitBossPhaseComplete_C_ReceiveExecute \ +static_assert(alignof(WaitBossPhaseComplete_C_ReceiveExecute) == 0x000008, "Wrong alignment on WaitBossPhaseComplete_C_ReceiveExecute"); \ +static_assert(sizeof(WaitBossPhaseComplete_C_ReceiveExecute) == 0x000010, "Wrong size on WaitBossPhaseComplete_C_ReceiveExecute"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'WaitBossPhaseComplete_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(WaitBossPhaseComplete_C_ReceiveExecute, InState) == 0x000008, "Member 'WaitBossPhaseComplete_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWaitBossPhaseComplete_C \ +static_assert(alignof(UWaitBossPhaseComplete_C) == 0x000008, "Wrong alignment on UWaitBossPhaseComplete_C"); \ +static_assert(sizeof(UWaitBossPhaseComplete_C) == 0x0000F8, "Wrong size on UWaitBossPhaseComplete_C"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, UberGraphFrame) == 0x000088, "Member 'UWaitBossPhaseComplete_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, BossCharacter) == 0x000090, "Member 'UWaitBossPhaseComplete_C::BossCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, HeraMissionActorClass) == 0x000098, "Member 'UWaitBossPhaseComplete_C::HeraMissionActorClass' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, Boss_Phase_Complete_Objective) == 0x0000A0, "Member 'UWaitBossPhaseComplete_C::Boss_Phase_Complete_Objective' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, WaitForTag) == 0x0000A8, "Member 'UWaitBossPhaseComplete_C::WaitForTag' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, BossTag) == 0x0000B0, "Member 'UWaitBossPhaseComplete_C::BossTag' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, TagsToAdd) == 0x0000B8, "Member 'UWaitBossPhaseComplete_C::TagsToAdd' has a wrong offset!"); \ +static_assert(offsetof(UWaitBossPhaseComplete_C, TagsToRemove) == 0x0000D8, "Member 'UWaitBossPhaseComplete_C::TagsToRemove' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed \ +static_assert(alignof(GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed) == 0x000008, "Wrong alignment on GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed"); \ +static_assert(sizeof(GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed) == 0x0000E0, "Wrong size on GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed"); \ +static_assert(offsetof(GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed, EntryPoint) == 0x000000, "Member 'GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000008, "Member 'GA_PlayerCombatFeed_C_ExecuteUbergraph_GA_PlayerCombatFeed::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerCombatFeed_C \ +static_assert(alignof(UGA_PlayerCombatFeed_C) == 0x000008, "Wrong alignment on UGA_PlayerCombatFeed_C"); \ +static_assert(sizeof(UGA_PlayerCombatFeed_C) == 0x0008A0, "Wrong size on UGA_PlayerCombatFeed_C"); \ +static_assert(offsetof(UGA_PlayerCombatFeed_C, UberGraphFrame_GA_PlayerCombatFeed_C) == 0x000838, "Member 'UGA_PlayerCombatFeed_C::UberGraphFrame_GA_PlayerCombatFeed_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerCombatFeed_C, FinishSourceEffectClass) == 0x000840, "Member 'UGA_PlayerCombatFeed_C::FinishSourceEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerCombatFeed_C, TempLoadedSequences) == 0x000848, "Member 'UGA_PlayerCombatFeed_C::TempLoadedSequences' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerCombatFeed_C, InvulnerabilityHandle) == 0x000898, "Member 'UGA_PlayerCombatFeed_C::InvulnerabilityHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_C_UserConstructionScript \ +static_assert(alignof(Trigger_Obj_Bool_C_UserConstructionScript) == 0x000008, "Wrong alignment on Trigger_Obj_Bool_C_UserConstructionScript"); \ +static_assert(sizeof(Trigger_Obj_Bool_C_UserConstructionScript) == 0x000090, "Wrong size on Trigger_Obj_Bool_C_UserConstructionScript"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, Temp_byte_Variable) == 0x000000, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_GetObjectName_ReturnValue) == 0x000008, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_GetObjectName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue) == 0x000018, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_GetObjectName_ReturnValue_1) == 0x000028, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_GetObjectName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000038, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000048, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000058, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, K2Node_Select_Default) == 0x000068, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_UserConstructionScript, CallFunc_Conv_StringToText_ReturnValue) == 0x000078, "Member 'Trigger_Obj_Bool_C_UserConstructionScript::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_C_SetObjective \ +static_assert(alignof(Trigger_Obj_Bool_C_SetObjective) == 0x000001, "Wrong alignment on Trigger_Obj_Bool_C_SetObjective"); \ +static_assert(sizeof(Trigger_Obj_Bool_C_SetObjective) == 0x000003, "Wrong size on Trigger_Obj_Bool_C_SetObjective"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetObjective, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000000, "Member 'Trigger_Obj_Bool_C_SetObjective::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetObjective, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'Trigger_Obj_Bool_C_SetObjective::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetObjective, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'Trigger_Obj_Bool_C_SetObjective::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_C_SetBool \ +static_assert(alignof(Trigger_Obj_Bool_C_SetBool) == 0x000001, "Wrong alignment on Trigger_Obj_Bool_C_SetBool"); \ +static_assert(sizeof(Trigger_Obj_Bool_C_SetBool) == 0x000004, "Wrong size on Trigger_Obj_Bool_C_SetBool"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetBool, Value) == 0x000000, "Member 'Trigger_Obj_Bool_C_SetBool::Value' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetBool, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000001, "Member 'Trigger_Obj_Bool_C_SetBool::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetBool, CallFunc_IsValid_ReturnValue) == 0x000002, "Member 'Trigger_Obj_Bool_C_SetBool::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_SetBool, CallFunc_BooleanAND_ReturnValue) == 0x000003, "Member 'Trigger_Obj_Bool_C_SetBool::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_C_OnPlayerLeave \ +static_assert(alignof(Trigger_Obj_Bool_C_OnPlayerLeave) == 0x000001, "Wrong alignment on Trigger_Obj_Bool_C_OnPlayerLeave"); \ +static_assert(sizeof(Trigger_Obj_Bool_C_OnPlayerLeave) == 0x000001, "Wrong size on Trigger_Obj_Bool_C_OnPlayerLeave"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_OnPlayerLeave, CallFunc_Not_PreBool_ReturnValue) == 0x000000, "Member 'Trigger_Obj_Bool_C_OnPlayerLeave::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool \ +static_assert(alignof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool) == 0x000008, "Wrong alignment on Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool"); \ +static_assert(sizeof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool) == 0x000018, "Wrong size on Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, EntryPoint) == 0x000000, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, CallFunc_IsOverlappingActor_ReturnValue) == 0x000010, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::CallFunc_IsOverlappingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000012, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool, CallFunc_BooleanAND_ReturnValue) == 0x000013, "Member 'Trigger_Obj_Bool_C_ExecuteUbergraph_Trigger_Obj_Bool::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATrigger_Obj_Bool_C \ +static_assert(alignof(ATrigger_Obj_Bool_C) == 0x000008, "Wrong alignment on ATrigger_Obj_Bool_C"); \ +static_assert(sizeof(ATrigger_Obj_Bool_C) == 0x000310, "Wrong size on ATrigger_Obj_Bool_C"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, UberGraphFrame_Trigger_Obj_Bool_C) == 0x0002E8, "Member 'ATrigger_Obj_Bool_C::UberGraphFrame_Trigger_Obj_Bool_C' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, Use) == 0x0002F0, "Member 'ATrigger_Obj_Bool_C::Use' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, Objective) == 0x0002F8, "Member 'ATrigger_Obj_Bool_C::Objective' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, Bool) == 0x000300, "Member 'ATrigger_Obj_Bool_C::Bool' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, BoolValue) == 0x000308, "Member 'ATrigger_Obj_Bool_C::BoolValue' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_C, Active) == 0x000309, "Member 'ATrigger_Obj_Bool_C::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthFeed_C_AddBloodToSource \ +static_assert(alignof(GA_PlayerStealthFeed_C_AddBloodToSource) == 0x000004, "Wrong alignment on GA_PlayerStealthFeed_C_AddBloodToSource"); \ +static_assert(sizeof(GA_PlayerStealthFeed_C_AddBloodToSource) == 0x000008, "Wrong size on GA_PlayerStealthFeed_C_AddBloodToSource"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_AddBloodToSource, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000000, "Member 'GA_PlayerStealthFeed_C_AddBloodToSource::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed \ +static_assert(alignof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed) == 0x000008, "Wrong alignment on GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed"); \ +static_assert(sizeof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed) == 0x000168, "Wrong size on GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, EntryPoint) == 0x000000, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, Temp_bool_Variable) == 0x000004, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_Event_bWasCancelled) == 0x000005, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000008, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000E0, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0000E8, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_DynamicCast_bSuccess) == 0x0000F8, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_IsValid_ReturnValue) == 0x0000F9, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_GetTimeSeconds_ReturnValue) == 0x000100, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_GetTimeSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_GetTimeSeconds_ReturnValue_1) == 0x000108, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_GetTimeSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000110, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000118, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_CreateDelegate_OutputDelegate) == 0x000120, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000138, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_K2_IsValidTimerHandle_ReturnValue) == 0x000140, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_K2_IsValidTimerHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000148, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000150, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, K2Node_DynamicCast_bSuccess_1) == 0x000160, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000161, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed, CallFunc_K2_SetTimerDelegate_Time_ImplicitCast) == 0x000164, "Member 'GA_PlayerStealthFeed_C_ExecuteUbergraph_GA_PlayerStealthFeed::CallFunc_K2_SetTimerDelegate_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthFeed_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerStealthFeed_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerStealthFeed_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerStealthFeed_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerStealthFeed_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerStealthFeed_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerStealthFeed_C_RemoveFeedEffects \ +static_assert(alignof(GA_PlayerStealthFeed_C_RemoveFeedEffects) == 0x000008, "Wrong alignment on GA_PlayerStealthFeed_C_RemoveFeedEffects"); \ +static_assert(sizeof(GA_PlayerStealthFeed_C_RemoveFeedEffects) == 0x000010, "Wrong size on GA_PlayerStealthFeed_C_RemoveFeedEffects"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_RemoveFeedEffects, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000000, "Member 'GA_PlayerStealthFeed_C_RemoveFeedEffects::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerStealthFeed_C_RemoveFeedEffects, CallFunc_RemoveActiveGameplayEffect_ReturnValue) == 0x000008, "Member 'GA_PlayerStealthFeed_C_RemoveFeedEffects::CallFunc_RemoveActiveGameplayEffect_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerStealthFeed_C \ +static_assert(alignof(UGA_PlayerStealthFeed_C) == 0x000008, "Wrong alignment on UGA_PlayerStealthFeed_C"); \ +static_assert(sizeof(UGA_PlayerStealthFeed_C) == 0x0008A0, "Wrong size on UGA_PlayerStealthFeed_C"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, UberGraphFrame_GA_PlayerStealthFeed_C) == 0x000838, "Member 'UGA_PlayerStealthFeed_C::UberGraphFrame_GA_PlayerStealthFeed_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, bPlayingOutro) == 0x000840, "Member 'UGA_PlayerStealthFeed_C::bPlayingOutro' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, TargetGEHandle) == 0x000844, "Member 'UGA_PlayerStealthFeed_C::TargetGEHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, SourceGEHandle) == 0x00084C, "Member 'UGA_PlayerStealthFeed_C::SourceGEHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, SourceEffectClass) == 0x000858, "Member 'UGA_PlayerStealthFeed_C::SourceEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, TargetEffectClass) == 0x000860, "Member 'UGA_PlayerStealthFeed_C::TargetEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, bFinishSequence) == 0x000868, "Member 'UGA_PlayerStealthFeed_C::bFinishSequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, SourceFeedTimer) == 0x000870, "Member 'UGA_PlayerStealthFeed_C::SourceFeedTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, FeedPeriod) == 0x000878, "Member 'UGA_PlayerStealthFeed_C::FeedPeriod' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, StartFeedTime) == 0x000880, "Member 'UGA_PlayerStealthFeed_C::StartFeedTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, JumpToOutroTimer) == 0x000888, "Member 'UGA_PlayerStealthFeed_C::JumpToOutroTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, FinishSourceEffectClass) == 0x000890, "Member 'UGA_PlayerStealthFeed_C::FinishSourceEffectClass' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerStealthFeed_C, MinFeedDuration) == 0x000898, "Member 'UGA_PlayerStealthFeed_C::MinFeedDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCamshake_Elevator_Shudder_C \ +static_assert(alignof(UCamshake_Elevator_Shudder_C) == 0x000010, "Wrong alignment on UCamshake_Elevator_Shudder_C"); \ +static_assert(sizeof(UCamshake_Elevator_Shudder_C) == 0x0001F0, "Wrong size on UCamshake_Elevator_Shudder_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction \ +static_assert(alignof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction) == 0x000008, "Wrong alignment on GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction"); \ +static_assert(sizeof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction) == 0x000300, "Wrong size on GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, EntryPoint) == 0x000000, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CustomEvent_WaitingTime) == 0x000020, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, Temp_real_Variable) == 0x000024, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000028, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_WaitDelay_ReturnValue) == 0x000048, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate_2) == 0x000050, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_1) == 0x000060, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000068, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate_3) == 0x000070, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_2) == 0x000080, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x000088, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_3) == 0x000090, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000091, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000098, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, Temp_real_Variable_1) == 0x0000A0, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_4) == 0x0000A4, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_Event_bWasCancelled) == 0x0000A5, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetActorInfo_ReturnValue) == 0x0000A8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_HasPassiveTargetData_ReturnValue) == 0x0000F0, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_HasPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_K2_CommitAbility_ReturnValue) == 0x0000F1, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, Temp_bool_Has_Been_Initd_Variable) == 0x0000F2, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetPassiveTargetData_ReturnValue) == 0x0000F8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_OutInteraction) == 0x000120, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_OutInteraction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_ReturnValue) == 0x000130, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetPassiveTargetData_ReturnValue_1) == 0x000138, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetPassiveTargetData_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_5) == 0x000160, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_OutInteraction_1) == 0x000168, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_OutInteraction_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_ReturnValue_1) == 0x000178, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_BooleanAND_ReturnValue) == 0x000179, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_6) == 0x00017A, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsGameplayTagValid_ReturnValue) == 0x00017B, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetPassiveTargetData_ReturnValue_2) == 0x000180, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetPassiveTargetData_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_OutInteraction_2) == 0x0001A8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_OutInteraction_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetInteractionFromTargetData_ReturnValue_2) == 0x0001B8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetInteractionFromTargetData_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate_4) == 0x0001BC, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0001CC, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CustomEvent_WaitingTime_1) == 0x0001D0, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_MakeStruct_GameplayEventData) == 0x0001D8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_SwitchEnum_CmpSuccess) == 0x000288, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000290, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, K2Node_CreateDelegate_OutputDelegate_5) == 0x000298, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_7) == 0x0002A8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, Temp_bool_IsClosed_Variable) == 0x0002A9, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_GetActorInfo_ReturnValue_1) == 0x0002B0, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction, CallFunc_IsValid_ReturnValue_8) == 0x0002F8, "Member 'GA_PlayerInteraction_C_ExecuteUbergraph_GA_PlayerInteraction::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteraction_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerInteraction_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerInteraction_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerInteraction_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerInteraction_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerInteraction_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC \ +static_assert(alignof(GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC) == 0x000004, "Wrong alignment on GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC"); \ +static_assert(sizeof(GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC) == 0x000004, "Wrong size on GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC"); \ +static_assert(offsetof(GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC, WaitingTime) == 0x000000, "Member 'GA_PlayerInteraction_C_OnControlCueProcess_A579EC5547F93C098C54CC8509ECD4BC::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC \ +static_assert(alignof(GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC) == 0x000004, "Wrong alignment on GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC"); \ +static_assert(sizeof(GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC) == 0x000004, "Wrong size on GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC"); \ +static_assert(offsetof(GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC, WaitingTime) == 0x000000, "Member 'GA_PlayerInteraction_C_OnControlCueProcess_D543E17842602A6568CAEAA9C947DABC::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteraction_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerInteraction_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerInteraction_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerInteraction_C_K2_CanActivateAbility) == 0x000100, "Wrong size on GA_PlayerInteraction_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_GetActorInfo_ReturnValue) == 0x000078, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_GetPassiveTargetData_ReturnValue) == 0x0000C0, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_GetInteractionFromTargetData_OutInteraction) == 0x0000E8, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_GetInteractionFromTargetData_OutInteraction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_GetInteractionFromTargetData_ReturnValue) == 0x0000F8, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_GetInteractionFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_CanInteract_ReturnValue) == 0x0000F9, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteraction_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000FA, "Member 'GA_PlayerInteraction_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerInteraction_C \ +static_assert(alignof(UGA_PlayerInteraction_C) == 0x000008, "Wrong alignment on UGA_PlayerInteraction_C"); \ +static_assert(sizeof(UGA_PlayerInteraction_C) == 0x000688, "Wrong size on UGA_PlayerInteraction_C"); \ +static_assert(offsetof(UGA_PlayerInteraction_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerInteraction_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteraction_C, Interaction) == 0x000670, "Member 'UGA_PlayerInteraction_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteraction_C, HoldTimer) == 0x000678, "Member 'UGA_PlayerInteraction_C::HoldTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteraction_C, HoldTask) == 0x000680, "Member 'UGA_PlayerInteraction_C::HoldTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BackAway_C_ExecuteUbergraph_GA_BackAway \ +static_assert(alignof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway) == 0x000008, "Wrong alignment on GA_BackAway_C_ExecuteUbergraph_GA_BackAway"); \ +static_assert(sizeof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway) == 0x0001A0, "Wrong size on GA_BackAway_C_ExecuteUbergraph_GA_BackAway"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, EntryPoint) == 0x000000, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000008, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, K2Node_CreateDelegate_OutputDelegate_1) == 0x000024, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, K2Node_CreateDelegate_OutputDelegate_2) == 0x000034, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, K2Node_Event_EventData) == 0x000048, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_IsValid_ReturnValue_1) == 0x0000F8, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000100, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000118, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_GetWrestlerMovementComponent_ReturnValue) == 0x000120, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_GetWrestlerMovementComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000128, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000140, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_BreakVector_X) == 0x000158, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_BreakVector_Y) == 0x000160, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_BreakVector_Z) == 0x000168, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_MakeVector_ReturnValue) == 0x000170, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_ExecuteUbergraph_GA_BackAway, CallFunc_Normal_ReturnValue) == 0x000188, "Member 'GA_BackAway_C_ExecuteUbergraph_GA_BackAway::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BackAway_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_BackAway_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_BackAway_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_BackAway_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_BackAway_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_BackAway_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_BackAway_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BackAway_C_LargestVector \ +static_assert(alignof(GA_BackAway_C_LargestVector) == 0x000008, "Wrong alignment on GA_BackAway_C_LargestVector"); \ +static_assert(sizeof(GA_BackAway_C_LargestVector) == 0x000080, "Wrong size on GA_BackAway_C_LargestVector"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, Vec1) == 0x000000, "Member 'GA_BackAway_C_LargestVector::Vec1' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, Vec2) == 0x000018, "Member 'GA_BackAway_C_LargestVector::Vec2' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, Largest) == 0x000030, "Member 'GA_BackAway_C_LargestVector::Largest' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, Temp_bool_Variable) == 0x000048, "Member 'GA_BackAway_C_LargestVector::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, CallFunc_VSizeSquared_ReturnValue) == 0x000050, "Member 'GA_BackAway_C_LargestVector::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, CallFunc_VSizeSquared_ReturnValue_1) == 0x000058, "Member 'GA_BackAway_C_LargestVector::CallFunc_VSizeSquared_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_BackAway_C_LargestVector::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BackAway_C_LargestVector, K2Node_Select_Default) == 0x000068, "Member 'GA_BackAway_C_LargestVector::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_BackAway_C \ +static_assert(alignof(UGA_BackAway_C) == 0x000008, "Wrong alignment on UGA_BackAway_C"); \ +static_assert(sizeof(UGA_BackAway_C) == 0x0006A8, "Wrong size on UGA_BackAway_C"); \ +static_assert(offsetof(UGA_BackAway_C, UberGraphFrame) == 0x000668, "Member 'UGA_BackAway_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_BackAway_C, AvoidLoc) == 0x000670, "Member 'UGA_BackAway_C::AvoidLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_BackAway_C, Duration) == 0x000688, "Member 'UGA_BackAway_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_BackAway_C, AvoidForce) == 0x000690, "Member 'UGA_BackAway_C::AvoidForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityUpgradeUnlocked_C \ +static_assert(alignof(UActiveAbilityUpgradeUnlocked_C) == 0x000010, "Wrong alignment on UActiveAbilityUpgradeUnlocked_C"); \ +static_assert(sizeof(UActiveAbilityUpgradeUnlocked_C) == 0x0007B0, "Wrong size on UActiveAbilityUpgradeUnlocked_C"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableWeapon_ThinbloodShotgun_C \ +static_assert(alignof(ABP_ThrowableWeapon_ThinbloodShotgun_C) == 0x000010, "Wrong alignment on ABP_ThrowableWeapon_ThinbloodShotgun_C"); \ +static_assert(sizeof(ABP_ThrowableWeapon_ThinbloodShotgun_C) == 0x000440, "Wrong size on ABP_ThrowableWeapon_ThinbloodShotgun_C"); \ + +#define DUMPER7_ASSERTS_UGE_Slide_C \ +static_assert(alignof(UGE_Slide_C) == 0x000008, "Wrong alignment on UGE_Slide_C"); \ +static_assert(sizeof(UGE_Slide_C) == 0x000A70, "Wrong size on UGE_Slide_C"); \ + +#define DUMPER7_ASSERTS_UGE_SlideCooldown_C \ +static_assert(alignof(UGE_SlideCooldown_C) == 0x000008, "Wrong alignment on UGE_SlideCooldown_C"); \ +static_assert(sizeof(UGE_SlideCooldown_C) == 0x000A70, "Wrong size on UGE_SlideCooldown_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide \ +static_assert(alignof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide) == 0x000008, "Wrong alignment on GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide) == 0x0006B0, "Wrong size on GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventTag_2) == 0x000004, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventData_2) == 0x000010, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventTag_1) == 0x0000D0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventData_1) == 0x0000D8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventTag) == 0x000198, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventData) == 0x0001A0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, Temp_struct_Variable) == 0x000260, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, Temp_struct_Variable_1) == 0x000310, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WaitDelay_ReturnValue) == 0x000328, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_4) == 0x000330, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsValid_ReturnValue) == 0x000340, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_WaitingTime) == 0x000344, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, Temp_real_Variable) == 0x000348, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000350, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsValid_ReturnValue_1) == 0x000358, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, Temp_bool_Variable) == 0x000359, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, Temp_struct_Variable_2) == 0x000360, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000378, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_5) == 0x000390, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_ActorTimeDelay_ReturnValue) == 0x0003A0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsValid_ReturnValue_2) == 0x0003A8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0003B0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0003D0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_Event_bWasCancelled) == 0x0003D8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x0003E0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x0003E8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_ReturnValue) == 0x0003F0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1) == 0x0003F8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsValid_ReturnValue_3) == 0x000400, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1) == 0x000408, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_TryActivateAbilitiesByTag_ReturnValue_1) == 0x000428, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_TryActivateAbilitiesByTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000430, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000438, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_DynamicCast_bSuccess) == 0x000448, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsWalking_ReturnValue) == 0x000449, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000450, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Normal_ReturnValue) == 0x000468, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_VSize_ReturnValue) == 0x000480, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000488, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0004A0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Add_VectorVector_ReturnValue) == 0x0004A8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_Select_Default) == 0x0004C0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004D8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetPlayerController_ReturnValue) == 0x0004E8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004F0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x000500, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000508, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000510, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetVelocity_ReturnValue) == 0x000518, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000530, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000548, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_VSize_ReturnValue_1) == 0x000560, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Normal_ReturnValue_1) == 0x000568, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_FMax_ReturnValue) == 0x000580, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000588, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_IsValid_ReturnValue_4) == 0x0005A0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0005A8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0005C0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0005D8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventTag_3) == 0x0005E0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, K2Node_CustomEvent_EventData_3) == 0x0005E8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_MinimumSlideDot_ImplicitCast) == 0x000698, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_MinimumSlideDot_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_MinimumSlideSpeed_ImplicitCast) == 0x00069C, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_MinimumSlideSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_MaxAcceleration_ImplicitCast) == 0x0006A0, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_MaxAcceleration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_SlopeAccelerationFactor_ImplicitCast) == 0x0006A4, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_SlopeAccelerationFactor_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide, CallFunc_WrestlerSlide_GroundFriction_ImplicitCast) == 0x0006A8, "Member 'GA_PlayerMovement_Slide_C_ExecuteUbergraph_GA_PlayerMovement_Slide::CallFunc_WrestlerSlide_GroundFriction_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Slide_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Slide_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Slide_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B \ +static_assert(alignof(GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x000008, "Wrong alignment on GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x0000B8, "Wrong size on GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B, EventData) == 0x000008, "Member 'GA_PlayerMovement_Slide_C_OnCancelled_FB9C6FDD4428DC533B85D896B1D6A40B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF \ +static_assert(alignof(GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF) == 0x000004, "Wrong alignment on GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF) == 0x000004, "Wrong size on GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_OnControlCueProcess_B38939C444EF7783D758D3ADD74EC1DF::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B \ +static_assert(alignof(GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x000008, "Wrong alignment on GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x0000B8, "Wrong size on GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B, EventData) == 0x000008, "Member 'GA_PlayerMovement_Slide_C_OnCrouchSpeedReached_FB9C6FDD4428DC533B85D896B1D6A40B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B \ +static_assert(alignof(GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x000008, "Wrong alignment on GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x0000B8, "Wrong size on GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B, EventData) == 0x000008, "Member 'GA_PlayerMovement_Slide_C_OnFacingThresholdReached_FB9C6FDD4428DC533B85D896B1D6A40B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B \ +static_assert(alignof(GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x000008, "Wrong alignment on GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(sizeof(GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B) == 0x0000B8, "Wrong size on GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B, EventData) == 0x000008, "Member 'GA_PlayerMovement_Slide_C_OnSlideEnded_FB9C6FDD4428DC533B85D896B1D6A40B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Slide_C \ +static_assert(alignof(UGA_PlayerMovement_Slide_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Slide_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Slide_C) == 0x0006B8, "Wrong size on UGA_PlayerMovement_Slide_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Slide_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, MinSlideSpeed) == 0x000670, "Member 'UGA_PlayerMovement_Slide_C::MinSlideSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, MinSlideDot) == 0x000678, "Member 'UGA_PlayerMovement_Slide_C::MinSlideDot' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, SlideGroundFriction) == 0x000680, "Member 'UGA_PlayerMovement_Slide_C::SlideGroundFriction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, SlideMaxInputAcceleration) == 0x000688, "Member 'UGA_PlayerMovement_Slide_C::SlideMaxInputAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, SlideSlopeAccelerationFactor) == 0x000690, "Member 'UGA_PlayerMovement_Slide_C::SlideSlopeAccelerationFactor' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, SlideGEHandle) == 0x000698, "Member 'UGA_PlayerMovement_Slide_C::SlideGEHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, Move_Input_Scale) == 0x0006A0, "Member 'UGA_PlayerMovement_Slide_C::Move_Input_Scale' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, Async_Task) == 0x0006A8, "Member 'UGA_PlayerMovement_Slide_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Slide_C, Max_Slideboost) == 0x0006B0, "Member 'UGA_PlayerMovement_Slide_C::Max_Slideboost' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerAirDashCooldown_C \ +static_assert(alignof(UGE_PlayerAirDashCooldown_C) == 0x000008, "Wrong alignment on UGE_PlayerAirDashCooldown_C"); \ +static_assert(sizeof(UGE_PlayerAirDashCooldown_C) == 0x000A70, "Wrong size on UGE_PlayerAirDashCooldown_C"); \ + +#define DUMPER7_ASSERTS_CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat \ +static_assert(alignof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat) == 0x000008, "Wrong alignment on CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat"); \ +static_assert(sizeof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat) == 0x000020, "Wrong size on CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, EntryPoint) == 0x000000, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, K2Node_Event_InAutomata) == 0x000008, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, K2Node_Event_InState) == 0x000010, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, CallFunc_GetProperty_ReturnValue) == 0x000018, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, CallFunc_Conv_IntToByte_ReturnValue) == 0x00001C, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, CallFunc_GetValidValue_ReturnValue) == 0x00001D, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat, K2Node_SwitchEnum_CmpSuccess) == 0x00001E, "Member 'CheckPlayerInCombat_C_ExecuteUbergraph_CheckPlayerInCombat::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckPlayerInCombat_C_ReceiveExecute \ +static_assert(alignof(CheckPlayerInCombat_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckPlayerInCombat_C_ReceiveExecute"); \ +static_assert(sizeof(CheckPlayerInCombat_C_ReceiveExecute) == 0x000010, "Wrong size on CheckPlayerInCombat_C_ReceiveExecute"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckPlayerInCombat_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckPlayerInCombat_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckPlayerInCombat_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckPlayerInCombat_C \ +static_assert(alignof(UCheckPlayerInCombat_C) == 0x000008, "Wrong alignment on UCheckPlayerInCombat_C"); \ +static_assert(sizeof(UCheckPlayerInCombat_C) == 0x0000A8, "Wrong size on UCheckPlayerInCombat_C"); \ +static_assert(offsetof(UCheckPlayerInCombat_C, UberGraphFrame) == 0x000088, "Member 'UCheckPlayerInCombat_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckPlayerInCombat_C, CombatMusicState) == 0x000090, "Member 'UCheckPlayerInCombat_C::CombatMusicState' has a wrong offset!"); \ +static_assert(offsetof(UCheckPlayerInCombat_C, PlayerInCombat) == 0x000098, "Member 'UCheckPlayerInCombat_C::PlayerInCombat' has a wrong offset!"); \ +static_assert(offsetof(UCheckPlayerInCombat_C, PlayerOutOfCombat) == 0x0000A0, "Member 'UCheckPlayerInCombat_C::PlayerOutOfCombat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerDashCooldown_C \ +static_assert(alignof(UGE_PlayerDashCooldown_C) == 0x000008, "Wrong alignment on UGE_PlayerDashCooldown_C"); \ +static_assert(sizeof(UGE_PlayerDashCooldown_C) == 0x000A70, "Wrong size on UGE_PlayerDashCooldown_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Omni_C_GetDashDirection \ +static_assert(alignof(GA_PlayerDash_Omni_C_GetDashDirection) == 0x000008, "Wrong alignment on GA_PlayerDash_Omni_C_GetDashDirection"); \ +static_assert(sizeof(GA_PlayerDash_Omni_C_GetDashDirection) == 0x0000D8, "Wrong size on GA_PlayerDash_Omni_C_GetDashDirection"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, OwnerPawn) == 0x000018, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::OwnerPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, NewLocalVar_0) == 0x000020, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::NewLocalVar_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, Negative1) == 0x000028, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::Negative1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x000030, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000048, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000060, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue) == 0x000078, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue_1) == 0x000080, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000089, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000090, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, K2Node_DynamicCast_AsPawn) == 0x000098, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, K2Node_DynamicCast_bSuccess) == 0x0000A0, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000A8, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashDirection, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000C0, "Member 'GA_PlayerDash_Omni_C_GetDashDirection::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Omni_C_GetDashMontage \ +static_assert(alignof(GA_PlayerDash_Omni_C_GetDashMontage) == 0x000008, "Wrong alignment on GA_PlayerDash_Omni_C_GetDashMontage"); \ +static_assert(sizeof(GA_PlayerDash_Omni_C_GetDashMontage) == 0x000028, "Wrong size on GA_PlayerDash_Omni_C_GetDashMontage"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, CallFunc_GetMontage_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, CallFunc_GetDirectionEnum_ReturnValue) == 0x000010, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::CallFunc_GetDirectionEnum_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, CallFunc_Map_Find_Value) == 0x000018, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashMontage, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'GA_PlayerDash_Omni_C_GetDashMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Omni_C_GetDashStrength \ +static_assert(alignof(GA_PlayerDash_Omni_C_GetDashStrength) == 0x000008, "Wrong alignment on GA_PlayerDash_Omni_C_GetDashStrength"); \ +static_assert(sizeof(GA_PlayerDash_Omni_C_GetDashStrength) == 0x000060, "Wrong size on GA_PlayerDash_Omni_C_GetDashStrength"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, Strength) == 0x000000, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, Duration) == 0x000008, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, Strength_0) == 0x000010, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::Strength_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, CallFunc_GetDirectionEnum_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::CallFunc_GetDirectionEnum_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_SwitchEnum_CmpSuccess) == 0x000019, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Strength_ImplicitCast) == 0x000020, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Duration_ImplicitCast) == 0x000028, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Strength_ImplicitCast_1) == 0x000030, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Strength_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Duration_ImplicitCast_1) == 0x000038, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Strength_ImplicitCast_2) == 0x000040, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Strength_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Duration_ImplicitCast_2) == 0x000048, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Duration_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Strength_ImplicitCast_3) == 0x000050, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Strength_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDashStrength, K2Node_FunctionResult_Duration_ImplicitCast_3) == 0x000058, "Member 'GA_PlayerDash_Omni_C_GetDashStrength::K2Node_FunctionResult_Duration_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Omni_C_GetDirectionEnum \ +static_assert(alignof(GA_PlayerDash_Omni_C_GetDirectionEnum) == 0x000008, "Wrong alignment on GA_PlayerDash_Omni_C_GetDirectionEnum"); \ +static_assert(sizeof(GA_PlayerDash_Omni_C_GetDirectionEnum) == 0x0000B8, "Wrong size on GA_PlayerDash_Omni_C_GetDirectionEnum"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, Direction) == 0x000001, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, ForwardDot) == 0x000008, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::ForwardDot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, RightDot) == 0x000010, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::RightDot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x000019, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_2) == 0x00001A, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, Temp_bool_Variable) == 0x00001B, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, Temp_bool_Variable_1) == 0x00001C, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, Temp_bool_Variable_2) == 0x00001D, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_3) == 0x00001E, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00001F, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Abs_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Abs_ReturnValue_1) == 0x000028, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000030, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000031, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, K2Node_Select_Default) == 0x000032, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000050, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_GetOwnerForwardVector_ReturnValue) == 0x000058, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_GetOwnerForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue) == 0x000070, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, K2Node_Select_Default_1) == 0x000078, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, K2Node_Select_Default_2) == 0x000079, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_GetOwnerRightVector_returnValue) == 0x000080, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue_1) == 0x000098, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerDash_Omni_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Omni_C_GetOwnerForwardVector \ +static_assert(alignof(GA_PlayerDash_Omni_C_GetOwnerForwardVector) == 0x000008, "Wrong alignment on GA_PlayerDash_Omni_C_GetOwnerForwardVector"); \ +static_assert(sizeof(GA_PlayerDash_Omni_C_GetOwnerForwardVector) == 0x000038, "Wrong size on GA_PlayerDash_Omni_C_GetOwnerForwardVector"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetOwnerForwardVector, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Omni_C_GetOwnerForwardVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetOwnerForwardVector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Omni_C_GetOwnerForwardVector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Omni_C_GetOwnerForwardVector, CallFunc_GetActorForwardVector_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Omni_C_GetOwnerForwardVector::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerDash_Omni_C \ +static_assert(alignof(UGA_PlayerDash_Omni_C) == 0x000008, "Wrong alignment on UGA_PlayerDash_Omni_C"); \ +static_assert(sizeof(UGA_PlayerDash_Omni_C) == 0x000790, "Wrong size on UGA_PlayerDash_Omni_C"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, OmniDashMontages) == 0x000700, "Member 'UGA_PlayerDash_Omni_C::OmniDashMontages' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, ForwardStrength) == 0x000750, "Member 'UGA_PlayerDash_Omni_C::ForwardStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, BackwardStrength) == 0x000758, "Member 'UGA_PlayerDash_Omni_C::BackwardStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, LeftStrength) == 0x000760, "Member 'UGA_PlayerDash_Omni_C::LeftStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, RightStrength) == 0x000768, "Member 'UGA_PlayerDash_Omni_C::RightStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, ForwardDuration) == 0x000770, "Member 'UGA_PlayerDash_Omni_C::ForwardDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, BackwardDuration) == 0x000778, "Member 'UGA_PlayerDash_Omni_C::BackwardDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, LeftDuration) == 0x000780, "Member 'UGA_PlayerDash_Omni_C::LeftDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Omni_C, RightDuration) == 0x000788, "Member 'UGA_PlayerDash_Omni_C::RightDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerDash_Updated_cooldown_C \ +static_assert(alignof(UGE_PlayerDash_Updated_cooldown_C) == 0x000008, "Wrong alignment on UGE_PlayerDash_Updated_cooldown_C"); \ +static_assert(sizeof(UGE_PlayerDash_Updated_cooldown_C) == 0x000A70, "Wrong size on UGE_PlayerDash_Updated_cooldown_C"); \ + +#define DUMPER7_ASSERTS_ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate \ +static_assert(alignof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate) == 0x000008, "Wrong alignment on ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate"); \ +static_assert(sizeof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate) == 0x000038, "Wrong size on ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, EntryPoint) == 0x000000, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, K2Node_Event_InAutomata) == 0x000008, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, K2Node_Event_InState) == 0x000010, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, CallFunc_GetGameMode_ReturnValue) == 0x000018, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000020, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000030, "Member 'ObjectiveTimerUpdate_C_ExecuteUbergraph_ObjectiveTimerUpdate::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ObjectiveTimerUpdate_C_ReceiveExecute \ +static_assert(alignof(ObjectiveTimerUpdate_C_ReceiveExecute) == 0x000008, "Wrong alignment on ObjectiveTimerUpdate_C_ReceiveExecute"); \ +static_assert(sizeof(ObjectiveTimerUpdate_C_ReceiveExecute) == 0x000010, "Wrong size on ObjectiveTimerUpdate_C_ReceiveExecute"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ObjectiveTimerUpdate_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveTimerUpdate_C_ReceiveExecute, InState) == 0x000008, "Member 'ObjectiveTimerUpdate_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectiveTimerUpdate_C \ +static_assert(alignof(UObjectiveTimerUpdate_C) == 0x000008, "Wrong alignment on UObjectiveTimerUpdate_C"); \ +static_assert(sizeof(UObjectiveTimerUpdate_C) == 0x0000B0, "Wrong size on UObjectiveTimerUpdate_C"); \ +static_assert(offsetof(UObjectiveTimerUpdate_C, UberGraphFrame) == 0x000088, "Member 'UObjectiveTimerUpdate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UObjectiveTimerUpdate_C, VariableToWatch) == 0x000090, "Member 'UObjectiveTimerUpdate_C::VariableToWatch' has a wrong offset!"); \ +static_assert(offsetof(UObjectiveTimerUpdate_C, TextToShow) == 0x000098, "Member 'UObjectiveTimerUpdate_C::TextToShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown \ +static_assert(alignof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown) == 0x000008, "Wrong alignment on WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown"); \ +static_assert(sizeof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown) == 0x0000E8, "Wrong size on WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, EntryPoint) == 0x000000, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_Event_MyGeometry) == 0x000024, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_Event_InDeltaTime) == 0x00005C, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000060, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000068, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_CreateDelegate_OutputDelegate_2) == 0x000070, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_CreatePlayAnimationProxyObject_Result) == 0x000080, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_CreatePlayAnimationProxyObject_Result' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_CreatePlayAnimationProxyObject_ReturnValue) == 0x000088, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_CreatePlayAnimationProxyObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_PlayAnimation_ReturnValue) == 0x000090, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_IsValid_ReturnValue) == 0x000098, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x0000A0, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x0000A8, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_IsValid_ReturnValue_1) == 0x0000B0, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_IsValid_ReturnValue_2) == 0x0000B1, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_GetOwningPlayerPawn_ReturnValue_1) == 0x0000B8, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_GetOwningPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x0000C0, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_IsValid_ReturnValue_3) == 0x0000C8, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_IsVisible_ReturnValue) == 0x0000C9, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_IsVisible_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000D0, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x0000D8, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown, K2Node_VariableSet_In_Percent_ImplicitCast) == 0x0000E0, "Member 'WBP_PlayerDash_Updated_Cooldown_C_ExecuteUbergraph_WBP_PlayerDash_Updated_Cooldown::K2Node_VariableSet_In_Percent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerDash_Updated_Cooldown_C_Tick \ +static_assert(alignof(WBP_PlayerDash_Updated_Cooldown_C_Tick) == 0x000004, "Wrong alignment on WBP_PlayerDash_Updated_Cooldown_C_Tick"); \ +static_assert(sizeof(WBP_PlayerDash_Updated_Cooldown_C_Tick) == 0x00003C, "Wrong size on WBP_PlayerDash_Updated_Cooldown_C_Tick"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_PlayerDash_Updated_Cooldown_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerDash_Updated_Cooldown_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_PlayerDash_Updated_Cooldown_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_PlayerDash_Updated_Cooldown_C \ +static_assert(alignof(UWBP_PlayerDash_Updated_Cooldown_C) == 0x000008, "Wrong alignment on UWBP_PlayerDash_Updated_Cooldown_C"); \ +static_assert(sizeof(UWBP_PlayerDash_Updated_Cooldown_C) == 0x0002F8, "Wrong size on UWBP_PlayerDash_Updated_Cooldown_C"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, EndAnim) == 0x0002C8, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::EndAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, StartAnim) == 0x0002D0, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::StartAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, HorizontalBox_0) == 0x0002D8, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::HorizontalBox_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, ProgressBar_233) == 0x0002E0, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::ProgressBar_233' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, In_Percent) == 0x0002E8, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::In_Percent' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerDash_Updated_Cooldown_C, Result) == 0x0002F0, "Member 'UWBP_PlayerDash_Updated_Cooldown_C::Result' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_AddMesh \ +static_assert(alignof(BP_Climbable_C_AddMesh) == 0x000010, "Wrong alignment on BP_Climbable_C_AddMesh"); \ +static_assert(sizeof(BP_Climbable_C_AddMesh) == 0x0000C0, "Wrong size on BP_Climbable_C_AddMesh"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, Mesh) == 0x000000, "Member 'BP_Climbable_C_AddMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, Location_Y) == 0x000008, "Member 'BP_Climbable_C_AddMesh::Location_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, Scale_Y) == 0x000010, "Member 'BP_Climbable_C_AddMesh::Scale_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, AddedComponent) == 0x000018, "Member 'BP_Climbable_C_AddMesh::AddedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_MakeVector_ReturnValue) == 0x000020, "Member 'BP_Climbable_C_AddMesh::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_MakeVector_ReturnValue_1) == 0x000038, "Member 'BP_Climbable_C_AddMesh::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'BP_Climbable_C_AddMesh::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_AddComponent_ReturnValue) == 0x0000B0, "Member 'BP_Climbable_C_AddMesh::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_Array_Add_ReturnValue) == 0x0000B8, "Member 'BP_Climbable_C_AddMesh::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_SetStaticMesh_ReturnValue) == 0x0000BC, "Member 'BP_Climbable_C_AddMesh::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_AddMesh, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0000BD, "Member 'BP_Climbable_C_AddMesh::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_ExecuteUbergraph_BP_Climbable \ +static_assert(alignof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable) == 0x000008, "Wrong alignment on BP_Climbable_C_ExecuteUbergraph_BP_Climbable"); \ +static_assert(sizeof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable) == 0x000290, "Wrong size on BP_Climbable_C_ExecuteUbergraph_BP_Climbable"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, EntryPoint) == 0x000000, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, K2Node_Event_InDuration_1) == 0x000008, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, K2Node_Event_InDuration) == 0x00000C, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_MakeVector_ReturnValue) == 0x000010, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000028, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000030, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000118, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000120, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_MakeVector_ReturnValue_1) == 0x000128, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000140, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000148, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, K2Node_CustomEvent_MarkDirty) == 0x000230, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::K2Node_CustomEvent_MarkDirty' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000238, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Round_ReturnValue) == 0x000240, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Multiply_IntInt_ReturnValue) == 0x000244, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000248, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_RandomFloatInRange_ReturnValue) == 0x000250, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000258, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, K2Node_MakeArray_Array) == 0x000260, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, K2Node_Event_bInVisible) == 0x000270, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000278, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_SetCapsuleHalfHeight_HalfHeight_ImplicitCast) == 0x000280, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_SetCapsuleHalfHeight_HalfHeight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_SetCapsuleHalfHeight_HalfHeight_ImplicitCast_1) == 0x000284, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_SetCapsuleHalfHeight_HalfHeight_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ExecuteUbergraph_BP_Climbable, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000288, "Member 'BP_Climbable_C_ExecuteUbergraph_BP_Climbable::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetBlendshapes \ +static_assert(alignof(BP_Climbable_C_GetBlendshapes) == 0x000008, "Wrong alignment on BP_Climbable_C_GetBlendshapes"); \ +static_assert(sizeof(BP_Climbable_C_GetBlendshapes) == 0x000010, "Wrong size on BP_Climbable_C_GetBlendshapes"); \ +static_assert(offsetof(BP_Climbable_C_GetBlendshapes, Idle) == 0x000000, "Member 'BP_Climbable_C_GetBlendshapes::Idle' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_GetBlendshapes, Movement) == 0x000008, "Member 'BP_Climbable_C_GetBlendshapes::Movement' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetClueDataAsset \ +static_assert(alignof(BP_Climbable_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_Climbable_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_Climbable_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_Climbable_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_Climbable_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_Climbable_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_Climbable_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetMeshComponent \ +static_assert(alignof(BP_Climbable_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Climbable_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Climbable_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Climbable_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Climbable_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Climbable_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetSurfaceTypeAudio \ +static_assert(alignof(BP_Climbable_C_GetSurfaceTypeAudio) == 0x000008, "Wrong alignment on BP_Climbable_C_GetSurfaceTypeAudio"); \ +static_assert(sizeof(BP_Climbable_C_GetSurfaceTypeAudio) == 0x000008, "Wrong size on BP_Climbable_C_GetSurfaceTypeAudio"); \ +static_assert(offsetof(BP_Climbable_C_GetSurfaceTypeAudio, AudioSwitch) == 0x000000, "Member 'BP_Climbable_C_GetSurfaceTypeAudio::AudioSwitch' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_ReplaceClass \ +static_assert(alignof(BP_Climbable_C_ReplaceClass) == 0x000010, "Wrong alignment on BP_Climbable_C_ReplaceClass"); \ +static_assert(sizeof(BP_Climbable_C_ReplaceClass) == 0x0000B0, "Wrong size on BP_Climbable_C_ReplaceClass"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, Class_0) == 0x000000, "Member 'BP_Climbable_C_ReplaceClass::Class_0' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, CallFunc_LoadClassAsset_Blocking_ReturnValue) == 0x000028, "Member 'BP_Climbable_C_ReplaceClass::CallFunc_LoadClassAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, K2Node_ClassDynamicCast_AsBP_Climbable) == 0x000030, "Member 'BP_Climbable_C_ReplaceClass::K2Node_ClassDynamicCast_AsBP_Climbable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, K2Node_ClassDynamicCast_bSuccess) == 0x000038, "Member 'BP_Climbable_C_ReplaceClass::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, CallFunc_GetTransform_ReturnValue) == 0x000040, "Member 'BP_Climbable_C_ReplaceClass::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000A0, "Member 'BP_Climbable_C_ReplaceClass::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_ReplaceClass, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000A8, "Member 'BP_Climbable_C_ReplaceClass::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SetScale \ +static_assert(alignof(BP_Climbable_C_SetScale) == 0x000001, "Wrong alignment on BP_Climbable_C_SetScale"); \ +static_assert(sizeof(BP_Climbable_C_SetScale) == 0x000001, "Wrong size on BP_Climbable_C_SetScale"); \ +static_assert(offsetof(BP_Climbable_C_SetScale, MarkDirty) == 0x000000, "Member 'BP_Climbable_C_SetScale::MarkDirty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SetVisionVisibility \ +static_assert(alignof(BP_Climbable_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_Climbable_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_Climbable_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_Climbable_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_Climbable_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_Climbable_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SnapAboveFloor \ +static_assert(alignof(BP_Climbable_C_SnapAboveFloor) == 0x000008, "Wrong alignment on BP_Climbable_C_SnapAboveFloor"); \ +static_assert(sizeof(BP_Climbable_C_SnapAboveFloor) == 0x000470, "Wrong size on BP_Climbable_C_SnapAboveFloor"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, Temp_object_Variable) == 0x000000, "Member 'BP_Climbable_C_SnapAboveFloor::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Vector_Up_ReturnValue) == 0x000010, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000040, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000058, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000060, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_MakeVector_ReturnValue) == 0x000078, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_GetActorForwardVector_ReturnValue) == 0x000090, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000A8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000C0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_X) == 0x000108, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_Y) == 0x000110, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_Z) == 0x000118, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000120, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000138, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_GetScaledCapsuleRadius_ReturnValue_1) == 0x000150, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_GetScaledCapsuleRadius_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000158, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_CapsuleTraceSingle_OutHit) == 0x000170, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000258, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_bBlockingHit) == 0x000259, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_bInitialOverlap) == 0x00025A, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_Time) == 0x00025C, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_Distance) == 0x000260, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_Location) == 0x000268, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_ImpactPoint) == 0x000280, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_Normal) == 0x000298, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_ImpactNormal) == 0x0002B0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_PhysMat) == 0x0002C8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_HitActor) == 0x0002D0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_HitComponent) == 0x0002D8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_HitBoneName) == 0x0002E0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_BoneName) == 0x0002E8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_HitItem) == 0x0002F0, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_ElementIndex) == 0x0002F4, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_FaceIndex) == 0x0002F8, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_TraceStart) == 0x000300, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakHitResult_TraceEnd) == 0x000318, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_X_1) == 0x000330, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_Y_1) == 0x000338, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_BreakVector_Z_1) == 0x000340, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000348, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000350, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_MakeVector_ReturnValue_1) == 0x000358, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000370, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000458, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_MakeVector_Z_ImplicitCast) == 0x000460, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapAboveFloor, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000468, "Member 'BP_Climbable_C_SnapAboveFloor::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SnapToLedge \ +static_assert(alignof(BP_Climbable_C_SnapToLedge) == 0x000008, "Wrong alignment on BP_Climbable_C_SnapToLedge"); \ +static_assert(sizeof(BP_Climbable_C_SnapToLedge) == 0x0004B0, "Wrong size on BP_Climbable_C_SnapToLedge"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_X) == 0x000018, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_Y) == 0x000020, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_Z) == 0x000028, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_GetActorForwardVector_ReturnValue) == 0x000048, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000060, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, Temp_object_Variable) == 0x000080, "Member 'BP_Climbable_C_SnapToLedge::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000090, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0000A8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000C0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x0000D8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x0000DC, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0000E0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000E8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_MakeVector_ReturnValue) == 0x000100, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000118, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000130, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000148, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Add_VectorVector_ReturnValue) == 0x000160, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000178, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000190, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_CapsuleTraceSingle_OutHit) == 0x0001A8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000290, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_bBlockingHit) == 0x000291, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_bInitialOverlap) == 0x000292, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_Time) == 0x000294, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_Distance) == 0x000298, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_Location) == 0x0002A0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_ImpactPoint) == 0x0002B8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_Normal) == 0x0002D0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_ImpactNormal) == 0x0002E8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_PhysMat) == 0x000300, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_HitActor) == 0x000308, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_HitComponent) == 0x000310, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_HitBoneName) == 0x000318, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_BoneName) == 0x000320, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_HitItem) == 0x000328, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_ElementIndex) == 0x00032C, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_FaceIndex) == 0x000330, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_TraceStart) == 0x000338, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakHitResult_TraceEnd) == 0x000350, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_X_1) == 0x000368, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_Y_1) == 0x000370, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_BreakVector_Z_1) == 0x000378, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_MakeVector_ReturnValue_1) == 0x000380, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000398, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0003B0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000498, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0004A0, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToLedge, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x0004A8, "Member 'BP_Climbable_C_SnapToLedge::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SnapToTop \ +static_assert(alignof(BP_Climbable_C_SnapToTop) == 0x000008, "Wrong alignment on BP_Climbable_C_SnapToTop"); \ +static_assert(sizeof(BP_Climbable_C_SnapToTop) == 0x000468, "Wrong size on BP_Climbable_C_SnapToTop"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_Climbable_C_SnapToTop::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_X) == 0x000038, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_Y) == 0x000040, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_Z) == 0x000048, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_MakeVector_ReturnValue) == 0x000050, "Member 'BP_Climbable_C_SnapToTop::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Vector_Up_ReturnValue) == 0x000068, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000080, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000098, "Member 'BP_Climbable_C_SnapToTop::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000A0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000B8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, Temp_object_Variable) == 0x0000D0, "Member 'BP_Climbable_C_SnapToTop::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000E0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000F8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue) == 0x000110, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000128, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000140, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000158, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_CapsuleTraceSingle_OutHit) == 0x000170, "Member 'BP_Climbable_C_SnapToTop::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000258, "Member 'BP_Climbable_C_SnapToTop::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_bBlockingHit) == 0x000259, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_bInitialOverlap) == 0x00025A, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_Time) == 0x00025C, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_Distance) == 0x000260, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_Location) == 0x000268, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_ImpactPoint) == 0x000280, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_Normal) == 0x000298, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_ImpactNormal) == 0x0002B0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_PhysMat) == 0x0002C8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_HitActor) == 0x0002D0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_HitComponent) == 0x0002D8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_HitBoneName) == 0x0002E0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_BoneName) == 0x0002E8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_HitItem) == 0x0002F0, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_ElementIndex) == 0x0002F4, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_FaceIndex) == 0x0002F8, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_TraceStart) == 0x000300, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakHitResult_TraceEnd) == 0x000318, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_X_1) == 0x000330, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_Y_1) == 0x000338, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_BreakVector_Z_1) == 0x000340, "Member 'BP_Climbable_C_SnapToTop::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000348, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000350, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_MakeVector_ReturnValue_1) == 0x000358, "Member 'BP_Climbable_C_SnapToTop::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000370, "Member 'BP_Climbable_C_SnapToTop::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000458, "Member 'BP_Climbable_C_SnapToTop::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToTop, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000460, "Member 'BP_Climbable_C_SnapToTop::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_SnapToWall \ +static_assert(alignof(BP_Climbable_C_SnapToWall) == 0x000008, "Wrong alignment on BP_Climbable_C_SnapToWall"); \ +static_assert(sizeof(BP_Climbable_C_SnapToWall) == 0x000498, "Wrong size on BP_Climbable_C_SnapToWall"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetActorForwardVector_ReturnValue) == 0x000018, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000030, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000048, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000060, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000078, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000090, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetScaledCapsuleRadius_ReturnValue_1) == 0x000094, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetScaledCapsuleRadius_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_MakeVector_ReturnValue) == 0x0000A0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000B8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x0000D0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetScaledCapsuleRadius_ReturnValue_2) == 0x0000D4, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetScaledCapsuleRadius_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, Temp_object_Variable) == 0x0000D8, "Member 'BP_Climbable_C_SnapToWall::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x0000E8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000100, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000118, "Member 'BP_Climbable_C_SnapToWall::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Add_VectorVector_ReturnValue) == 0x000130, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000148, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000160, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_CapsuleTraceSingle_OutHit) == 0x000178, "Member 'BP_Climbable_C_SnapToWall::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000260, "Member 'BP_Climbable_C_SnapToWall::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_bBlockingHit) == 0x000261, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_bInitialOverlap) == 0x000262, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_Time) == 0x000264, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_Distance) == 0x000268, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_Location) == 0x000270, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_ImpactPoint) == 0x000288, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_Normal) == 0x0002A0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_ImpactNormal) == 0x0002B8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_PhysMat) == 0x0002D0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_HitActor) == 0x0002D8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_HitComponent) == 0x0002E0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_HitBoneName) == 0x0002E8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_BoneName) == 0x0002F0, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_HitItem) == 0x0002F8, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_ElementIndex) == 0x0002FC, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_FaceIndex) == 0x000300, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_TraceStart) == 0x000308, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakHitResult_TraceEnd) == 0x000320, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakVector_X) == 0x000338, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakVector_Y) == 0x000340, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_BreakVector_Z) == 0x000348, "Member 'BP_Climbable_C_SnapToWall::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000350, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000358, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_MakeVector_ReturnValue_1) == 0x000360, "Member 'BP_Climbable_C_SnapToWall::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000378, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000390, "Member 'BP_Climbable_C_SnapToWall::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000478, "Member 'BP_Climbable_C_SnapToWall::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000480, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000488, "Member 'BP_Climbable_C_SnapToWall::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_SnapToWall, CallFunc_MakeVector_Z_ImplicitCast) == 0x000490, "Member 'BP_Climbable_C_SnapToWall::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_UserConstructionScript \ +static_assert(alignof(BP_Climbable_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_Climbable_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Climbable_C_UserConstructionScript) == 0x000001, "Wrong size on BP_Climbable_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Climbable_C_UserConstructionScript, CallFunc_BooleanAND_ReturnValue) == 0x000000, "Member 'BP_Climbable_C_UserConstructionScript::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_VisionFadeInBegin \ +static_assert(alignof(BP_Climbable_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_Climbable_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_Climbable_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_Climbable_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_Climbable_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_Climbable_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_VisionFadeOutBegin \ +static_assert(alignof(BP_Climbable_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_Climbable_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_Climbable_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_Climbable_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_Climbable_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_Climbable_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_Visuals \ +static_assert(alignof(BP_Climbable_C_Visuals) == 0x000008, "Wrong alignment on BP_Climbable_C_Visuals"); \ +static_assert(sizeof(BP_Climbable_C_Visuals) == 0x000350, "Wrong size on BP_Climbable_C_Visuals"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, NewLocalVar) == 0x000000, "Member 'BP_Climbable_C_Visuals::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_Climbable_C_Visuals::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_int_Variable) == 0x00000C, "Member 'BP_Climbable_C_Visuals::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Divide_IntInt_ReturnValue) == 0x000014, "Member 'BP_Climbable_C_Visuals::CallFunc_Divide_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Percent_FloatFloat_ReturnValue) == 0x000018, "Member 'BP_Climbable_C_Visuals::CallFunc_Percent_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_Climbable_C_Visuals::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000028, "Member 'BP_Climbable_C_Visuals::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_IsValid_ReturnValue) == 0x000110, "Member 'BP_Climbable_C_Visuals::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_IsValid_ReturnValue_1) == 0x000111, "Member 'BP_Climbable_C_Visuals::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_BooleanNAND_ReturnValue) == 0x000112, "Member 'BP_Climbable_C_Visuals::CallFunc_BooleanNAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_IntInt_ReturnValue_1) == 0x000114, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_IntInt_ReturnValue) == 0x000118, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000120, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_bool_Variable) == 0x000130, "Member 'BP_Climbable_C_Visuals::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, K2Node_Select_Default) == 0x000138, "Member 'BP_Climbable_C_Visuals::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_IsValid_ReturnValue_2) == 0x000140, "Member 'BP_Climbable_C_Visuals::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_IntInt_ReturnValue_1) == 0x000144, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_IntInt_ReturnValue_2) == 0x000148, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_IntInt_ReturnValue_2) == 0x00014C, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000150, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_IntInt_ReturnValue_3) == 0x000158, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000160, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000168, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000170, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000178, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_AddMesh_AddedComponent) == 0x000180, "Member 'BP_Climbable_C_Visuals::CallFunc_AddMesh_AddedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000188, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000190, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_AddMesh_AddedComponent_1) == 0x000198, "Member 'BP_Climbable_C_Visuals::CallFunc_AddMesh_AddedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001A0, "Member 'BP_Climbable_C_Visuals::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0001A8, "Member 'BP_Climbable_C_Visuals::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x0001C0, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x0001C8, "Member 'BP_Climbable_C_Visuals::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_FFloor_ReturnValue) == 0x0002B0, "Member 'BP_Climbable_C_Visuals::CallFunc_FFloor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_FFloor_ReturnValue_1) == 0x0002B4, "Member 'BP_Climbable_C_Visuals::CallFunc_FFloor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_3) == 0x0002B8, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_4) == 0x0002C0, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x0002C8, "Member 'BP_Climbable_C_Visuals::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0002C9, "Member 'BP_Climbable_C_Visuals::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_bool_Variable_1) == 0x0002CA, "Member 'BP_Climbable_C_Visuals::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Array_Get_Item) == 0x0002D0, "Member 'BP_Climbable_C_Visuals::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, K2Node_Select_Default_1) == 0x0002D8, "Member 'BP_Climbable_C_Visuals::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Array_Length_ReturnValue) == 0x0002E0, "Member 'BP_Climbable_C_Visuals::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_int_Loop_Counter_Variable) == 0x0002E4, "Member 'BP_Climbable_C_Visuals::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Less_IntInt_ReturnValue) == 0x0002E8, "Member 'BP_Climbable_C_Visuals::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_IntInt_ReturnValue_3) == 0x0002EC, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_SetStaticMesh_ReturnValue) == 0x0002F0, "Member 'BP_Climbable_C_Visuals::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_SetStaticMesh_ReturnValue_1) == 0x0002F1, "Member 'BP_Climbable_C_Visuals::CallFunc_SetStaticMesh_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_5) == 0x0002F8, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_IntInt_ReturnValue_4) == 0x000300, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, Temp_bool_Variable_2) == 0x000304, "Member 'BP_Climbable_C_Visuals::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Conv_IntToDouble_ReturnValue_6) == 0x000308, "Member 'BP_Climbable_C_Visuals::CallFunc_Conv_IntToDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000310, "Member 'BP_Climbable_C_Visuals::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, K2Node_Select_Default_2) == 0x000318, "Member 'BP_Climbable_C_Visuals::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000320, "Member 'BP_Climbable_C_Visuals::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_AddMesh_AddedComponent_2) == 0x000328, "Member 'BP_Climbable_C_Visuals::CallFunc_AddMesh_AddedComponent_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_AddMesh_AddedComponent_3) == 0x000330, "Member 'BP_Climbable_C_Visuals::CallFunc_AddMesh_AddedComponent_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000338, "Member 'BP_Climbable_C_Visuals::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_FTrunc_ReturnValue) == 0x000340, "Member 'BP_Climbable_C_Visuals::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_Subtract_IntInt_ReturnValue) == 0x000344, "Member 'BP_Climbable_C_Visuals::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Climbable_C_Visuals, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000348, "Member 'BP_Climbable_C_Visuals::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Climbable_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_Climbable_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_Climbable_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_Climbable_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_Climbable_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_Climbable_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_Climbable_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Climbable_C \ +static_assert(alignof(ABP_Climbable_C) == 0x000008, "Wrong alignment on ABP_Climbable_C"); \ +static_assert(sizeof(ABP_Climbable_C) == 0x0003E8, "Wrong size on ABP_Climbable_C"); \ +static_assert(offsetof(ABP_Climbable_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_Climbable_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, HeraAudioMass_Climbable_Top) == 0x0002A8, "Member 'ABP_Climbable_C::HeraAudioMass_Climbable_Top' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, HeraAudioMass_Climbable_Bottom) == 0x0002B0, "Member 'ABP_Climbable_C::HeraAudioMass_Climbable_Bottom' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, SpotLight___Top) == 0x0002B8, "Member 'ABP_Climbable_C::SpotLight___Top' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, SpotLight___Bottom) == 0x0002C0, "Member 'ABP_Climbable_C::SpotLight___Bottom' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, WrestlerHeightenedSensesClue) == 0x0002C8, "Member 'ABP_Climbable_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, TopBlocker) == 0x0002D0, "Member 'ABP_Climbable_C::TopBlocker' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, BottomVentCap) == 0x0002D8, "Member 'ABP_Climbable_C::BottomVentCap' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, DownArrow) == 0x0002E0, "Member 'ABP_Climbable_C::DownArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, UpArrow) == 0x0002E8, "Member 'ABP_Climbable_C::UpArrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Capsule2) == 0x0002F0, "Member 'ABP_Climbable_C::Capsule2' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, BlockingCapsule) == 0x0002F8, "Member 'ABP_Climbable_C::BlockingCapsule' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Arrow) == 0x000300, "Member 'ABP_Climbable_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Billboard) == 0x000308, "Member 'ABP_Climbable_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Capsule) == 0x000310, "Member 'ABP_Climbable_C::Capsule' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Scene) == 0x000318, "Member 'ABP_Climbable_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Height) == 0x000320, "Member 'ABP_Climbable_C::Height' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Toggle_Bottom) == 0x000328, "Member 'ABP_Climbable_C::Toggle_Bottom' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Toggle_Top) == 0x000329, "Member 'ABP_Climbable_C::Toggle_Top' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Toggle_Brackets) == 0x00032A, "Member 'ABP_Climbable_C::Toggle_Brackets' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, WallOffset) == 0x00032C, "Member 'ABP_Climbable_C::WallOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, VentsArray) == 0x000330, "Member 'ABP_Climbable_C::VentsArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, LastSpawnedVent) == 0x000340, "Member 'ABP_Climbable_C::LastSpawnedVent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, AmountOfVents) == 0x000348, "Member 'ABP_Climbable_C::AmountOfVents' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Intervals) == 0x00034C, "Member 'ABP_Climbable_C::Intervals' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Compensation) == 0x000350, "Member 'ABP_Climbable_C::Compensation' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, HeightenedSenses_Material) == 0x000358, "Member 'ABP_Climbable_C::HeightenedSenses_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, HightlightComponents) == 0x000360, "Member 'ABP_Climbable_C::HightlightComponents' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, KitMesh) == 0x000370, "Member 'ABP_Climbable_C::KitMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, BracketMesh) == 0x000378, "Member 'ABP_Climbable_C::BracketMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, TopMesh) == 0x000380, "Member 'ABP_Climbable_C::TopMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, BottomMesh) == 0x000388, "Member 'ABP_Climbable_C::BottomMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, YOffset) == 0x000390, "Member 'ABP_Climbable_C::YOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, IdleBlendspace) == 0x000398, "Member 'ABP_Climbable_C::IdleBlendspace' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, MovementBlendspace) == 0x0003A0, "Member 'ABP_Climbable_C::MovementBlendspace' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, PlayerAttachOffset) == 0x0003A8, "Member 'ABP_Climbable_C::PlayerAttachOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Audio_Switch) == 0x0003B0, "Member 'ABP_Climbable_C::Audio_Switch' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, LightToggle) == 0x0003B8, "Member 'ABP_Climbable_C::LightToggle' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, SpotlightTopOffset) == 0x0003C0, "Member 'ABP_Climbable_C::SpotlightTopOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, KitMesh_Half) == 0x0003D8, "Member 'ABP_Climbable_C::KitMesh_Half' has a wrong offset!"); \ +static_assert(offsetof(ABP_Climbable_C, Reverse) == 0x0003E0, "Member 'ABP_Climbable_C::Reverse' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PipeClimb_C_BlueprintModifyCamera \ +static_assert(alignof(CM_PipeClimb_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_PipeClimb_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_PipeClimb_C_BlueprintModifyCamera) == 0x0001B8, "Wrong size on CM_PipeClimb_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_PerlinVector_ReturnValue) == 0x000078, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_PerlinVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000090, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue) == 0x000098, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_PerlinVector_ReturnValue_1) == 0x0000B0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_PerlinVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_BreakVector_X) == 0x0000C8, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_BreakVector_Y) == 0x0000D0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_BreakVector_Z) == 0x0000D8, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue) == 0x0000E0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue_1) == 0x0000E8, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000F8, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000100, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_GetFloatValue_ReturnValue) == 0x000108, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_ReturnValue) == 0x000110, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000128, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_ComposeRotators_ReturnValue) == 0x000130, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000148, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000150, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000158, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000160, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue) == 0x000168, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000170, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000178, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000180, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x000188, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x00018C, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000190, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000198, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0001A0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0001A4, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001A8, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x0001B0, "Member 'CM_PipeClimb_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PipeClimb_C_PerlinVector \ +static_assert(alignof(CM_PipeClimb_C_PerlinVector) == 0x000008, "Wrong alignment on CM_PipeClimb_C_PerlinVector"); \ +static_assert(sizeof(CM_PipeClimb_C_PerlinVector) == 0x0000F8, "Wrong size on CM_PipeClimb_C_PerlinVector"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, Speed) == 0x000000, "Member 'CM_PipeClimb_C_PerlinVector::Speed' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, Strength) == 0x000018, "Member 'CM_PipeClimb_C_PerlinVector::Strength' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, ReturnValue) == 0x000030, "Member 'CM_PipeClimb_C_PerlinVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000048, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_BreakVector_X) == 0x000050, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_BreakVector_Y) == 0x000058, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_BreakVector_Z) == 0x000060, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000068, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000078, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue) == 0x000080, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue_1) == 0x000084, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x000088, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000090, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_ReturnValue_2) == 0x000098, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_MakeVector_ReturnValue) == 0x0000A0, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B8, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast) == 0x0000D0, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast_1) == 0x0000D4, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_MakeVector_X_ImplicitCast) == 0x0000D8, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_MakeVector_X_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_MakeVector_Y_ImplicitCast) == 0x0000E0, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_MakeVector_Y_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_PerlinNoise1D_Value_ImplicitCast_2) == 0x0000E8, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_PerlinNoise1D_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_PipeClimb_C_PerlinVector, CallFunc_MakeVector_Z_ImplicitCast) == 0x0000F0, "Member 'CM_PipeClimb_C_PerlinVector::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PipeClimb_C_SetStartTimes \ +static_assert(alignof(CM_PipeClimb_C_SetStartTimes) == 0x000008, "Wrong alignment on CM_PipeClimb_C_SetStartTimes"); \ +static_assert(sizeof(CM_PipeClimb_C_SetStartTimes) == 0x000008, "Wrong size on CM_PipeClimb_C_SetStartTimes"); \ +static_assert(offsetof(CM_PipeClimb_C_SetStartTimes, BoostStartTime_0) == 0x000000, "Member 'CM_PipeClimb_C_SetStartTimes::BoostStartTime_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PipeClimb_C_SetStartVel \ +static_assert(alignof(CM_PipeClimb_C_SetStartVel) == 0x000008, "Wrong alignment on CM_PipeClimb_C_SetStartVel"); \ +static_assert(sizeof(CM_PipeClimb_C_SetStartVel) == 0x000008, "Wrong size on CM_PipeClimb_C_SetStartVel"); \ +static_assert(offsetof(CM_PipeClimb_C_SetStartVel, BoostZVel) == 0x000000, "Member 'CM_PipeClimb_C_SetStartVel::BoostZVel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PipeClimb_C_Update \ +static_assert(alignof(CM_PipeClimb_C_Update) == 0x000001, "Wrong alignment on CM_PipeClimb_C_Update"); \ +static_assert(sizeof(CM_PipeClimb_C_Update) == 0x000001, "Wrong size on CM_PipeClimb_C_Update"); \ +static_assert(offsetof(CM_PipeClimb_C_Update, FacingPipe) == 0x000000, "Member 'CM_PipeClimb_C_Update::FacingPipe' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_PipeClimb_C \ +static_assert(alignof(UCM_PipeClimb_C) == 0x000008, "Wrong alignment on UCM_PipeClimb_C"); \ +static_assert(sizeof(UCM_PipeClimb_C) == 0x0000E8, "Wrong size on UCM_PipeClimb_C"); \ +static_assert(offsetof(UCM_PipeClimb_C, BoostFOV) == 0x0000A0, "Member 'UCM_PipeClimb_C::BoostFOV' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, BoostStartTime) == 0x0000A8, "Member 'UCM_PipeClimb_C::BoostStartTime' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, BoostPitch) == 0x0000B0, "Member 'UCM_PipeClimb_C::BoostPitch' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, NewVar) == 0x0000B8, "Member 'UCM_PipeClimb_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, Boost_ZVel) == 0x0000C0, "Member 'UCM_PipeClimb_C::Boost_ZVel' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, PipeOffset) == 0x0000C8, "Member 'UCM_PipeClimb_C::PipeOffset' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, FaceFOV) == 0x0000D0, "Member 'UCM_PipeClimb_C::FaceFOV' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, FaceOffset) == 0x0000D8, "Member 'UCM_PipeClimb_C::FaceOffset' has a wrong offset!"); \ +static_assert(offsetof(UCM_PipeClimb_C, MenuBool) == 0x0000E0, "Member 'UCM_PipeClimb_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoverFileMenuFont_C \ +static_assert(alignof(UHoverFileMenuFont_C) == 0x000010, "Wrong alignment on UHoverFileMenuFont_C"); \ +static_assert(sizeof(UHoverFileMenuFont_C) == 0x0001B0, "Wrong size on UHoverFileMenuFont_C"); \ + +#define DUMPER7_ASSERTS_UCameraShake_AttachJump_C \ +static_assert(alignof(UCameraShake_AttachJump_C) == 0x000010, "Wrong alignment on UCameraShake_AttachJump_C"); \ +static_assert(sizeof(UCameraShake_AttachJump_C) == 0x000230, "Wrong size on UCameraShake_AttachJump_C"); \ + +#define DUMPER7_ASSERTS_CM_CamNudge_C_BlueprintModifyCamera \ +static_assert(alignof(CM_CamNudge_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_CamNudge_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_CamNudge_C_BlueprintModifyCamera) == 0x0003C0, "Wrong size on CM_CamNudge_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_CamNudge_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_CamNudge_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_CamNudge_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_CamNudge_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_CamNudge_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_CamNudge_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_CamNudge_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Loop_Counter_Variable) == 0x000074, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_IntInt_ReturnValue) == 0x000078, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Array_Index_Variable) == 0x00007C, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Array_Index_Variable_1) == 0x000080, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Loop_Counter_Variable_1) == 0x000084, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Loop_Counter_Variable_2) == 0x000088, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_IntInt_ReturnValue_1) == 0x00008C, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_IntInt_ReturnValue_2) == 0x000090, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Loop_Counter_Variable_3) == 0x000094, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_IntInt_ReturnValue_3) == 0x000098, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Array_Index_Variable_2) == 0x00009C, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x0000A0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue) == 0x0000A8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x0000B0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetCurrentInputType_ReturnValue) == 0x0000B8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue_1) == 0x0000C0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, K2Node_SwitchEnum_CmpSuccess) == 0x0000C8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue_2) == 0x0000D0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputSettings_ReturnValue) == 0x0000D8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputSettings_ReturnValue_1) == 0x0000E0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputSettings_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetAxisMappingByName_OutMappings) == 0x0000E8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetAxisMappingByName_OutMappings' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetAxisMappingByName_OutMappings_1) == 0x0000F8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetAxisMappingByName_OutMappings_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Length_ReturnValue) == 0x000108, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Get_Item) == 0x000110, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Less_IntInt_ReturnValue) == 0x000138, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputAnalogKeyState_ReturnValue) == 0x00013C, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputAnalogKeyState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Length_ReturnValue_1) == 0x000140, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000148, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Less_IntInt_ReturnValue_1) == 0x000150, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000158, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue_3) == 0x000160, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue_4) == 0x000168, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, Temp_int_Array_Index_Variable_3) == 0x000170, "Member 'CM_CamNudge_C_BlueprintModifyCamera::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Get_Item_1) == 0x000178, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputAnalogKeyState_ReturnValue_1) == 0x0001A0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputAnalogKeyState_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputSettings_ReturnValue_2) == 0x0001A8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputSettings_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001B0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetAxisMappingByName_OutMappings_2) == 0x0001B8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetAxisMappingByName_OutMappings_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0001C8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Get_Item_2) == 0x0001D0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Length_ReturnValue_2) == 0x0001F8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputAnalogKeyState_ReturnValue_2) == 0x0001FC, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputAnalogKeyState_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Less_IntInt_ReturnValue_2) == 0x000200, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000208, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000210, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputSettings_ReturnValue_3) == 0x000218, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputSettings_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetAxisMappingByName_OutMappings_3) == 0x000220, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetAxisMappingByName_OutMappings_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Get_Item_3) == 0x000230, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Array_Length_ReturnValue_3) == 0x000258, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Less_IntInt_ReturnValue_3) == 0x00025C, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_GetInputAnalogKeyState_ReturnValue_3) == 0x000260, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_GetInputAnalogKeyState_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000268, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000270, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue) == 0x000278, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000280, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000288, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue_1) == 0x000290, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000298, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x0002A0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x0002A8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x0002B0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FClamp_ReturnValue) == 0x0002B8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue_2) == 0x0002C0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_5) == 0x0002C8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_9) == 0x0002D0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FClamp_ReturnValue_1) == 0x0002D8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue_3) == 0x0002E0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_10) == 0x0002E8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_11) == 0x0002F0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_12) == 0x0002F8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_13) == 0x000300, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_MakeRotator_ReturnValue) == 0x000308, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_ComposeRotators_ReturnValue) == 0x000320, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000338, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000340, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x000348, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000350, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_2) == 0x000358, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2) == 0x000360, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_3) == 0x000368, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3) == 0x000370, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_4) == 0x000378, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000380, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_5) == 0x000388, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000390, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_6) == 0x000398, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_6' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_7) == 0x0003A0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_7' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_DeltaTime_ImplicitCast_2) == 0x0003A8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_DeltaTime_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_FInterpTo_DeltaTime_ImplicitCast_3) == 0x0003B0, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_FInterpTo_DeltaTime_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0003B8, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CamNudge_C_BlueprintModifyCamera, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0003BC, "Member 'CM_CamNudge_C_BlueprintModifyCamera::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_CamNudge_C \ +static_assert(alignof(UCM_CamNudge_C) == 0x000008, "Wrong alignment on UCM_CamNudge_C"); \ +static_assert(sizeof(UCM_CamNudge_C) == 0x0000B0, "Wrong size on UCM_CamNudge_C"); \ +static_assert(offsetof(UCM_CamNudge_C, Look_Input_Sensitivity) == 0x000050, "Member 'UCM_CamNudge_C::Look_Input_Sensitivity' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, LookInputYaw) == 0x000058, "Member 'UCM_CamNudge_C::LookInputYaw' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, LookInputPitch) == 0x000060, "Member 'UCM_CamNudge_C::LookInputPitch' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, PitchScale) == 0x000068, "Member 'UCM_CamNudge_C::PitchScale' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, YawScale) == 0x000070, "Member 'UCM_CamNudge_C::YawScale' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, Interp_Speed) == 0x000078, "Member 'UCM_CamNudge_C::Interp_Speed' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, OutputYaw) == 0x000080, "Member 'UCM_CamNudge_C::OutputYaw' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, OutputPitch) == 0x000088, "Member 'UCM_CamNudge_C::OutputPitch' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, Decay) == 0x000090, "Member 'UCM_CamNudge_C::Decay' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, InputX) == 0x000098, "Member 'UCM_CamNudge_C::InputX' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, InputY) == 0x0000A0, "Member 'UCM_CamNudge_C::InputY' has a wrong offset!"); \ +static_assert(offsetof(UCM_CamNudge_C, YawDecayMultiplier) == 0x0000A8, "Member 'UCM_CamNudge_C::YawDecayMultiplier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup \ +static_assert(alignof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup) == 0x000008, "Wrong alignment on Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup"); \ +static_assert(sizeof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup) == 0x000070, "Wrong size on Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, EntryPoint) == 0x000000, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, K2Node_Event_InAutomata) == 0x000010, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, K2Node_Event_InState) == 0x000018, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_Array_Get_Item) == 0x000028, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, K2Node_DynamicCast_AsBP_Reinforcement_Group) == 0x000060, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::K2Node_DynamicCast_AsBP_Reinforcement_Group' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'Trigger_ReinforcementGroup_C_ExecuteUbergraph_Trigger_ReinforcementGroup::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_ReinforcementGroup_C_ReceiveExecute \ +static_assert(alignof(Trigger_ReinforcementGroup_C_ReceiveExecute) == 0x000008, "Wrong alignment on Trigger_ReinforcementGroup_C_ReceiveExecute"); \ +static_assert(sizeof(Trigger_ReinforcementGroup_C_ReceiveExecute) == 0x000010, "Wrong size on Trigger_ReinforcementGroup_C_ReceiveExecute"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Trigger_ReinforcementGroup_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Trigger_ReinforcementGroup_C_ReceiveExecute, InState) == 0x000008, "Member 'Trigger_ReinforcementGroup_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTrigger_ReinforcementGroup_C \ +static_assert(alignof(UTrigger_ReinforcementGroup_C) == 0x000008, "Wrong alignment on UTrigger_ReinforcementGroup_C"); \ +static_assert(sizeof(UTrigger_ReinforcementGroup_C) == 0x0000C0, "Wrong size on UTrigger_ReinforcementGroup_C"); \ +static_assert(offsetof(UTrigger_ReinforcementGroup_C, UberGraphFrame) == 0x000088, "Member 'UTrigger_ReinforcementGroup_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTrigger_ReinforcementGroup_C, Reinforcement_Group) == 0x000090, "Member 'UTrigger_ReinforcementGroup_C::Reinforcement_Group' has a wrong offset!"); \ +static_assert(offsetof(UTrigger_ReinforcementGroup_C, Additive_Tags) == 0x0000A0, "Member 'UTrigger_ReinforcementGroup_C::Additive_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Businessman_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Businessman_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Businessman_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Businessman_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Businessman_C"); \ + +#define DUMPER7_ASSERTS_CM_BoostScreenPP_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_BoostScreenPP_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_BoostScreenPP_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_BoostScreenPP_C_BlueprintModifyPostProcess) == 0x000E20, "Wrong size on CM_BoostScreenPP_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_ReturnValue) == 0x000E00, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000E04, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000E08, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000E10, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000E18, "Member 'CM_BoostScreenPP_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP \ +static_assert(alignof(CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP) == 0x000008, "Wrong alignment on CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP"); \ +static_assert(sizeof(CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP) == 0x000010, "Wrong size on CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP"); \ +static_assert(offsetof(CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP, EntryPoint) == 0x000000, "Member 'CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP, K2Node_CustomEvent_PostProcessMaterial) == 0x000008, "Member 'CM_BoostScreenPP_C_ExecuteUbergraph_CM_BoostScreenPP::K2Node_CustomEvent_PostProcessMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_BoostScreenPP_C_SetMat \ +static_assert(alignof(CM_BoostScreenPP_C_SetMat) == 0x000008, "Wrong alignment on CM_BoostScreenPP_C_SetMat"); \ +static_assert(sizeof(CM_BoostScreenPP_C_SetMat) == 0x000008, "Wrong size on CM_BoostScreenPP_C_SetMat"); \ +static_assert(offsetof(CM_BoostScreenPP_C_SetMat, PostProcessMaterial_0) == 0x000000, "Member 'CM_BoostScreenPP_C_SetMat::PostProcessMaterial_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_BoostScreenPP_C \ +static_assert(alignof(UCM_BoostScreenPP_C) == 0x000010, "Wrong alignment on UCM_BoostScreenPP_C"); \ +static_assert(sizeof(UCM_BoostScreenPP_C) == 0x000790, "Wrong size on UCM_BoostScreenPP_C"); \ +static_assert(offsetof(UCM_BoostScreenPP_C, UberGraphFrame) == 0x000778, "Member 'UCM_BoostScreenPP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_BoostScreenPP_C, AlphaCurve) == 0x000780, "Member 'UCM_BoostScreenPP_C::AlphaCurve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_GlideScreenPP_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_GlideScreenPP_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_GlideScreenPP_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_GlideScreenPP_C_BlueprintModifyPostProcess) == 0x000EC0, "Wrong size on CM_GlideScreenPP_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetProperty_ReturnValue) == 0x000E00, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000E04, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000E08, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_FInterpTo_ReturnValue) == 0x000E10, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetVelocity_ReturnValue) == 0x000E18, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000E30, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_VSizeXY_ReturnValue) == 0x000E38, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000E40, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_MapRangeClamped_ReturnValue) == 0x000E48, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000E50, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000E58, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000E60, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000E68, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000E70, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000E78, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000E80, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000E88, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000E90, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000E98, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_FInterpTo_Target_ImplicitCast) == 0x000EA0, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_FInterpTo_Target_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000EA8, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000EB0, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast_1) == 0x000EB4, "Member 'CM_GlideScreenPP_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP \ +static_assert(alignof(CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP) == 0x000008, "Wrong alignment on CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP"); \ +static_assert(sizeof(CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP) == 0x000010, "Wrong size on CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP"); \ +static_assert(offsetof(CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP, EntryPoint) == 0x000000, "Member 'CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP, K2Node_CustomEvent_PostProcessMaterial) == 0x000008, "Member 'CM_GlideScreenPP_C_ExecuteUbergraph_CM_GlideScreenPP::K2Node_CustomEvent_PostProcessMaterial' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_GlideScreenPP_C_SetMat \ +static_assert(alignof(CM_GlideScreenPP_C_SetMat) == 0x000008, "Wrong alignment on CM_GlideScreenPP_C_SetMat"); \ +static_assert(sizeof(CM_GlideScreenPP_C_SetMat) == 0x000008, "Wrong size on CM_GlideScreenPP_C_SetMat"); \ +static_assert(offsetof(CM_GlideScreenPP_C_SetMat, PostProcessMaterial_0) == 0x000000, "Member 'CM_GlideScreenPP_C_SetMat::PostProcessMaterial_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_GlideScreenPP_C \ +static_assert(alignof(UCM_GlideScreenPP_C) == 0x000010, "Wrong alignment on UCM_GlideScreenPP_C"); \ +static_assert(sizeof(UCM_GlideScreenPP_C) == 0x0007A0, "Wrong size on UCM_GlideScreenPP_C"); \ +static_assert(offsetof(UCM_GlideScreenPP_C, UberGraphFrame) == 0x000778, "Member 'UCM_GlideScreenPP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_GlideScreenPP_C, AlphaCurve) == 0x000780, "Member 'UCM_GlideScreenPP_C::AlphaCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_GlideScreenPP_C, Caught) == 0x000788, "Member 'UCM_GlideScreenPP_C::Caught' has a wrong offset!"); \ +static_assert(offsetof(UCM_GlideScreenPP_C, Current) == 0x000790, "Member 'UCM_GlideScreenPP_C::Current' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02 \ +static_assert(alignof(BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02) == 0x000004, "Wrong alignment on BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02"); \ +static_assert(sizeof(BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02) == 0x000008, "Wrong size on BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02, EntryPoint) == 0x000000, "Member 'BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02, K2Node_Event_DeltaSeconds) == 0x000004, "Member 'BP_lightutility_cage_Rotate_02_C_ExecuteUbergraph_BP_lightutility_cage_Rotate_02::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_cage_Rotate_02_C_ReceiveTick \ +static_assert(alignof(BP_lightutility_cage_Rotate_02_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_lightutility_cage_Rotate_02_C_ReceiveTick"); \ +static_assert(sizeof(BP_lightutility_cage_Rotate_02_C_ReceiveTick) == 0x000004, "Wrong size on BP_lightutility_cage_Rotate_02_C_ReceiveTick"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_lightutility_cage_Rotate_02_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_cage_Rotate_02_C_RotateLight \ +static_assert(alignof(BP_lightutility_cage_Rotate_02_C_RotateLight) == 0x000008, "Wrong alignment on BP_lightutility_cage_Rotate_02_C_RotateLight"); \ +static_assert(sizeof(BP_lightutility_cage_Rotate_02_C_RotateLight) == 0x000118, "Wrong size on BP_lightutility_cage_Rotate_02_C_RotateLight"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_RotateLight, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000000, "Member 'BP_lightutility_cage_Rotate_02_C_RotateLight::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_RotateLight, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_lightutility_cage_Rotate_02_C_RotateLight::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_RotateLight, CallFunc_MakeRotator_ReturnValue) == 0x000010, "Member 'BP_lightutility_cage_Rotate_02_C_RotateLight::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_RotateLight, CallFunc_K2_AddRelativeRotation_SweepHitResult) == 0x000028, "Member 'BP_lightutility_cage_Rotate_02_C_RotateLight::CallFunc_K2_AddRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_lightutility_cage_Rotate_02_C_RotateLight, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000110, "Member 'BP_lightutility_cage_Rotate_02_C_RotateLight::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_cage_Rotate_02_C \ +static_assert(alignof(ABP_lightutility_cage_Rotate_02_C) == 0x000008, "Wrong alignment on ABP_lightutility_cage_Rotate_02_C"); \ +static_assert(sizeof(ABP_lightutility_cage_Rotate_02_C) == 0x0007D0, "Wrong size on ABP_lightutility_cage_Rotate_02_C"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, UberGraphFrame_BP_lightutility_cage_Rotate_02_C) == 0x000788, "Member 'ABP_lightutility_cage_Rotate_02_C::UberGraphFrame_BP_lightutility_cage_Rotate_02_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, StaticMesh) == 0x000790, "Member 'ABP_lightutility_cage_Rotate_02_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, RotatingCapB) == 0x000798, "Member 'ABP_lightutility_cage_Rotate_02_C::RotatingCapB' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, RotatingCapA) == 0x0007A0, "Member 'ABP_lightutility_cage_Rotate_02_C::RotatingCapA' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, PointLight___Bounce) == 0x0007A8, "Member 'ABP_lightutility_cage_Rotate_02_C::PointLight___Bounce' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, SpotLightB) == 0x0007B0, "Member 'ABP_lightutility_cage_Rotate_02_C::SpotLightB' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, SM_Hero_ScrewOuterPanel_LIGHT) == 0x0007B8, "Member 'ABP_lightutility_cage_Rotate_02_C::SM_Hero_ScrewOuterPanel_LIGHT' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, SpotLightA) == 0x0007C0, "Member 'ABP_lightutility_cage_Rotate_02_C::SpotLightA' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_Rotate_02_C, RotationSpeed) == 0x0007C8, "Member 'ABP_lightutility_cage_Rotate_02_C::RotationSpeed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint \ +static_assert(alignof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint) == 0x000008, "Wrong alignment on GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint"); \ +static_assert(sizeof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint) == 0x000198, "Wrong size on GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_Event_EventData) == 0x000008, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_CustomEvent_GameplayEffectRemovalInfo_1) == 0x0000B8, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_CustomEvent_GameplayEffectRemovalInfo_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_CreateDelegate_OutputDelegate) == 0x0000E0, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_CustomEvent_GameplayEffectRemovalInfo) == 0x0000F0, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_CustomEvent_GameplayEffectRemovalInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_CreateDelegate_OutputDelegate_1) == 0x000118, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, Temp_struct_Variable) == 0x000128, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, Temp_delegate_Variable) == 0x000150, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_Event_bWasCancelled) == 0x000160, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000164, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000170, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, CallFunc_WaitForGameplayEffectRemoved_ReturnValue) == 0x000178, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::CallFunc_WaitForGameplayEffectRemoved_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000180, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, K2Node_DynamicCast_bSuccess) == 0x000190, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint, CallFunc_IsValid_ReturnValue) == 0x000191, "Member 'GA_PlayerMovement_Sprint_C_ExecuteUbergraph_GA_PlayerMovement_Sprint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058 \ +static_assert(alignof(GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058) == 0x000008, "Wrong alignment on GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058"); \ +static_assert(sizeof(GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058) == 0x000028, "Wrong size on GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058, GameplayEffectRemovalInfo) == 0x000000, "Member 'GA_PlayerMovement_Sprint_C_InvalidHandle_5AE60B1C47EB7A71FD1C809721AFB058::GameplayEffectRemovalInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerMovement_Sprint_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Sprint_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Sprint_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Sprint_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Sprint_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Sprint_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Sprint_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058 \ +static_assert(alignof(GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058) == 0x000008, "Wrong alignment on GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058"); \ +static_assert(sizeof(GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058) == 0x000028, "Wrong size on GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058"); \ +static_assert(offsetof(GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058, GameplayEffectRemovalInfo) == 0x000000, "Member 'GA_PlayerMovement_Sprint_C_OnRemoved_5AE60B1C47EB7A71FD1C809721AFB058::GameplayEffectRemovalInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Sprint_C \ +static_assert(alignof(UGA_PlayerMovement_Sprint_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Sprint_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Sprint_C) == 0x000748, "Wrong size on UGA_PlayerMovement_Sprint_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Sprint_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Sprint_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Sprint_C, Gameplay_Cue_Parameter) == 0x000670, "Member 'UGA_PlayerMovement_Sprint_C::Gameplay_Cue_Parameter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USecondaryAbilityAcquired_C \ +static_assert(alignof(USecondaryAbilityAcquired_C) == 0x000010, "Wrong alignment on USecondaryAbilityAcquired_C"); \ +static_assert(sizeof(USecondaryAbilityAcquired_C) == 0x0007B0, "Wrong size on USecondaryAbilityAcquired_C"); \ + +#define DUMPER7_ASSERTS_WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated \ +static_assert(alignof(WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated) == 0x000004, "Wrong alignment on WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated"); \ +static_assert(sizeof(WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated) == 0x000008, "Wrong size on WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated"); \ +static_assert(offsetof(WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated, Strength) == 0x000000, "Member 'WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated::Strength' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated, DeltaTime) == 0x000004, "Member 'WBP_Crosshair_C_BP_OnCrosshairStrengthUpdated::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair \ +static_assert(alignof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair) == 0x000008, "Wrong alignment on WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair"); \ +static_assert(sizeof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair) == 0x000068, "Wrong size on WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, EntryPoint) == 0x000000, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000004, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_GetDynamicMaterial_ReturnValue) == 0x000008, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_GetDynamicMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, K2Node_Event_Strength) == 0x000014, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::K2Node_Event_Strength' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, K2Node_Event_DeltaTime) == 0x000018, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::K2Node_Event_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, Temp_delegate_Variable) == 0x00001C, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, Temp_delegate_Variable_1) == 0x00002C, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_FInterpTo_ReturnValue) == 0x000040, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_BooleanAND_ReturnValue) == 0x000048, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_Not_PreBool_ReturnValue) == 0x000049, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_BooleanAND_ReturnValue_1) == 0x00004A, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x00004C, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000050, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_FInterpTo_Target_ImplicitCast) == 0x000058, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_FInterpTo_Target_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000060, "Member 'WBP_Crosshair_C_ExecuteUbergraph_WBP_Crosshair::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_Crosshair_C \ +static_assert(alignof(UWBP_Crosshair_C) == 0x000008, "Wrong alignment on UWBP_Crosshair_C"); \ +static_assert(sizeof(UWBP_Crosshair_C) == 0x000338, "Wrong size on UWBP_Crosshair_C"); \ +static_assert(offsetof(UWBP_Crosshair_C, UberGraphFrame) == 0x000308, "Member 'UWBP_Crosshair_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_Crosshair_C, CrosshairImage) == 0x000310, "Member 'UWBP_Crosshair_C::CrosshairImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_Crosshair_C, CrosshairStrength) == 0x000318, "Member 'UWBP_Crosshair_C::CrosshairStrength' has a wrong offset!"); \ +static_assert(offsetof(UWBP_Crosshair_C, ReactiveCrosshairMaterialInstance) == 0x000320, "Member 'UWBP_Crosshair_C::ReactiveCrosshairMaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(UWBP_Crosshair_C, CrosshairStrengthInterpSpeed) == 0x000328, "Member 'UWBP_Crosshair_C::CrosshairStrengthInterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_Crosshair_C, IsCrosshairRed) == 0x000330, "Member 'UWBP_Crosshair_C::IsCrosshairRed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang \ +static_assert(alignof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang) == 0x000008, "Wrong alignment on GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang) == 0x000840, "Wrong size on GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CustomEvent_WaitingTime) == 0x000004, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_real_Variable) == 0x000008, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_delegate_Variable) == 0x00001C, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_object_Variable) == 0x000030, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CreateDelegate_OutputDelegate) == 0x000038, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioComponent_OutExecBranches) == 0x000048, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioComponent_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_SwitchEnum_CmpSuccess) == 0x000058, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_ActorTimeDelay_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CreateDelegate_OutputDelegate_1) == 0x00008C, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_object_Variable_1) == 0x0000A0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_object_Variable_2) == 0x0000A8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_delegate_Variable_1) == 0x0000B0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetControlRotation_ReturnValue) == 0x000108, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Roll) == 0x000120, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Pitch) == 0x000124, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Yaw) == 0x000128, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeRotator_ReturnValue) == 0x000130, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x000148, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeVector_ReturnValue) == 0x000160, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_1) == 0x000178, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001C0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x0001D0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess) == 0x0001D8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetControlRotation_ReturnValue_1) == 0x0001E0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Conv_RotatorToVector_ReturnValue_1) == 0x0001F8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Conv_RotatorToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetMovementComponent_Character_Movement) == 0x000210, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetMovementComponent_Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Roll_1) == 0x000218, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Pitch_1) == 0x00021C, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakRotator_Yaw_1) == 0x000220, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_2) == 0x000228, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000270, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000288, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0002A0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_K2_MoveUpdatedComponent_OutHit) == 0x0002B8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_K2_MoveUpdatedComponent_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_K2_MoveUpdatedComponent_ReturnValue) == 0x0003A0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_K2_MoveUpdatedComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeVector_ReturnValue_1) == 0x0003A8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_3) == 0x0003C0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_Event_Delta_Seconds) == 0x000408, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_Event_Delta_Seconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetYawPitchFromVector_Yaw) == 0x000410, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetYawPitchFromVector_Pitch) == 0x000414, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakVector_X) == 0x000418, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakVector_Y) == 0x000420, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_BreakVector_Z) == 0x000428, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeVector_ReturnValue_2) == 0x000430, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000448, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Dot_VectorVector_ReturnValue) == 0x000450, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000458, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsValid_ReturnValue_2) == 0x000459, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, Temp_real_Variable_1) == 0x00045C, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000460, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000461, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000468, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000470, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CustomEvent_WaitingTime_1) == 0x000478, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsValid_ReturnValue_3) == 0x00047C, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000480, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000488, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_1) == 0x000498, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0004A0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1) == 0x0004A8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsFacingActor_NewParam) == 0x0004C8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsFacingActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsFacingActor_NewParam_1) == 0x0004C9, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsFacingActor_NewParam_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_ReturnValue) == 0x0004D0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_ReturnValue_1) == 0x0004D8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeVector_ReturnValue_3) == 0x0004E0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_ReturnValue_2) == 0x0004F8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_ReturnValue_3) == 0x000500, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeRotator_ReturnValue_1) == 0x000508, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000520, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000538, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_IsFacingActor_NewParam_2) == 0x000550, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_IsFacingActor_NewParam_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Add_VectorVector_ReturnValue) == 0x000558, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_4) == 0x000570, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetTraversalComponent_ReturnValue) == 0x0005B8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsWrestler_Character) == 0x0005C0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_2) == 0x0005C8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAttachActor_NewParam) == 0x0005D0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAttachActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsBP_Boost_Ledge) == 0x0005D8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsBP_Boost_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_3) == 0x0005E0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetPlayerController_ReturnValue) == 0x0005E8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetPlayerController_ReturnValue_1) == 0x0005F0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAttachActor_NewParam_1) == 0x0005F8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAttachActor_NewParam_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_CalcTargetLoc_TargetLoc) == 0x000600, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_CalcTargetLoc_TargetLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_CalcTargetLoc_AttachDirection) == 0x000618, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_CalcTargetLoc_AttachDirection' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_5) == 0x000630, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000678, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000679, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000680, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000688, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000690, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000698, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_Event_bWasCancelled) == 0x000699, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0006A0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_2) == 0x0006A8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_CreateDelegate_OutputDelegate_3) == 0x0006C8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x0006D8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAttachActor_NewParam_2) == 0x0006E0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAttachActor_NewParam_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsBPI_Climbable_Surface) == 0x0006E8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsBPI_Climbable_Surface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_4) == 0x0006F8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_6) == 0x000700, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioSwitch_AudioSwitch) == 0x000748, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioSwitch_AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x000750, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_5) == 0x000760, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000768, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAttachActor_NewParam_3) == 0x000770, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAttachActor_NewParam_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsBPI_Climbable_Surface_1) == 0x000778, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsBPI_Climbable_Surface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_6) == 0x000788, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetActorInfo_ReturnValue_7) == 0x000790, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioSwitch_AudioSwitch_1) == 0x0007D8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioSwitch_AudioSwitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_AsHera_Audio_Character_Interface_2) == 0x0007E0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_AsHera_Audio_Character_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, K2Node_DynamicCast_bSuccess_7) == 0x0007F0, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x0007F8, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_B_ImplicitCast) == 0x000800, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_B_ImplicitCast_1) == 0x000808, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_SelectFloat_A_ImplicitCast) == 0x000810, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_SelectFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000818, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000820, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000828, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x000830, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000834, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000838, "Member 'GA_PlayerMovement_Hang_C_ExecuteUbergraph_GA_PlayerMovement_Hang::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_HandleMovement \ +static_assert(alignof(GA_PlayerMovement_Hang_C_HandleMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_Hang_C_HandleMovement"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_HandleMovement) == 0x000008, "Wrong size on GA_PlayerMovement_Hang_C_HandleMovement"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_HandleMovement, Delta_Seconds) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_HandleMovement::Delta_Seconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_IsFacingActor \ +static_assert(alignof(GA_PlayerMovement_Hang_C_IsFacingActor) == 0x000008, "Wrong alignment on GA_PlayerMovement_Hang_C_IsFacingActor"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_IsFacingActor) == 0x000068, "Wrong size on GA_PlayerMovement_Hang_C_IsFacingActor"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, NewParam) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, Temp_bool_Variable) == 0x000001, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000050, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsFacingActor, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000061, "Member 'GA_PlayerMovement_Hang_C_IsFacingActor::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_IsInputForward \ +static_assert(alignof(GA_PlayerMovement_Hang_C_IsInputForward) == 0x000008, "Wrong alignment on GA_PlayerMovement_Hang_C_IsInputForward"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_IsInputForward) == 0x0000A8, "Wrong size on GA_PlayerMovement_Hang_C_IsInputForward"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, GameplayAbilityActorInfo) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::GameplayAbilityActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, NewParam) == 0x000048, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_GetActorForwardVector_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000068, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_GetLastInputVector_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_VSize_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000A1, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_IsInputForward, CallFunc_BooleanAND_ReturnValue) == 0x0000A2, "Member 'GA_PlayerMovement_Hang_C_IsInputForward::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Hang_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Hang_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Hang_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C \ +static_assert(alignof(GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C) == 0x000004, "Wrong alignment on GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C) == 0x000004, "Wrong size on GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_OnControlCueProcess_36E8502940C4E2C996FD95B30767E88C::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318 \ +static_assert(alignof(GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318) == 0x000004, "Wrong alignment on GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318) == 0x000004, "Wrong size on GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_OnControlCueProcess_469B9D104AE23DB478748EA23241F318::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_CalcTargetLoc \ +static_assert(alignof(GA_PlayerMovement_Hang_C_CalcTargetLoc) == 0x000010, "Wrong alignment on GA_PlayerMovement_Hang_C_CalcTargetLoc"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_CalcTargetLoc) == 0x000290, "Wrong size on GA_PlayerMovement_Hang_C_CalcTargetLoc"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, AttachActor) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::AttachActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, TargetLoc) == 0x000008, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::TargetLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, AttachDirection_0) == 0x000020, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::AttachDirection_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, LedgeActor) == 0x000038, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::LedgeActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, FlipX) == 0x000040, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::FlipX' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, Swizzle) == 0x000041, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::Swizzle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, LocalPos) == 0x000048, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::LocalPos' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, K2Node_DynamicCast_AsBP_Boost_Ledge) == 0x000068, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::K2Node_DynamicCast_AsBP_Boost_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Result) == 0x000071, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Location) == 0x000078, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Direction) == 0x000090, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_TryGetCustomLedgeGrabLocationAndDirection_Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_GetTransform_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000110, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_GetTransform_ReturnValue_1) == 0x000130, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_BreakVector_X) == 0x000190, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_BreakVector_Y) == 0x000198, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_BreakVector_Z) == 0x0001A0, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001A8, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Abs_ReturnValue) == 0x0001B0, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0001B8, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Abs_ReturnValue_1) == 0x0001C0, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0001C8, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Set_Local_Snap_Pos_LocalTarget) == 0x0001D0, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Set_Local_Snap_Pos_LocalTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_Set_Local_Snap_Pos_AttachDirection) == 0x0001E8, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_Set_Local_Snap_Pos_AttachDirection' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_TransformLocation_ReturnValue) == 0x000200, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_TransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_GetActorInfo_ReturnValue) == 0x000218, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000260, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_CalcTargetLoc, CallFunc_InverseTransformLocation_ReturnValue) == 0x000278, "Member 'GA_PlayerMovement_Hang_C_CalcTargetLoc::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos \ +static_assert(alignof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos) == 0x000008, "Wrong alignment on GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos"); \ +static_assert(sizeof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos) == 0x000198, "Wrong size on GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, Swizzle) == 0x000000, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::Swizzle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, FlipX) == 0x000001, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::FlipX' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, LocalPos) == 0x000008, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::LocalPos' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, Extent) == 0x000020, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::Extent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, AttachActor) == 0x000038, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::AttachActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, LocalTarget) == 0x000040, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::LocalTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, AttachDirection_0) == 0x000058, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::AttachDirection_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, NewLocalVar) == 0x000070, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_X) == 0x000078, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_Y) == 0x000080, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_Z) == 0x000088, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_GetActorForwardVector_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue) == 0x0000A8, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_GetActorRightVector_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_FClamp_ReturnValue) == 0x0000D8, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_X_1) == 0x0000E0, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_Y_1) == 0x0000E8, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_BreakVector_Z_1) == 0x0000F0, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue_2) == 0x000100, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000108, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000110, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectVector_ReturnValue) == 0x000118, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue_3) == 0x000130, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_NegateVector_ReturnValue) == 0x000138, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_FClamp_ReturnValue_1) == 0x000150, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectVector_ReturnValue_1) == 0x000158, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue_4) == 0x000170, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_SelectFloat_ReturnValue_5) == 0x000178, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_SelectFloat_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos, CallFunc_MakeVector_ReturnValue) == 0x000180, "Member 'GA_PlayerMovement_Hang_C_Set_Local_Snap_Pos::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Hang_C \ +static_assert(alignof(UGA_PlayerMovement_Hang_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Hang_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Hang_C) == 0x000778, "Wrong size on UGA_PlayerMovement_Hang_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, UberGraphFrame_GA_PlayerMovement_Hang_C) == 0x000738, "Member 'UGA_PlayerMovement_Hang_C::UberGraphFrame_GA_PlayerMovement_Hang_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, AttachDirection) == 0x000740, "Member 'UGA_PlayerMovement_Hang_C::AttachDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, FacingActorTag) == 0x000758, "Member 'UGA_PlayerMovement_Hang_C::FacingActorTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, XOffset) == 0x000760, "Member 'UGA_PlayerMovement_Hang_C::XOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, ZOffset) == 0x000768, "Member 'UGA_PlayerMovement_Hang_C::ZOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Hang_C, AttachTag) == 0x000770, "Member 'UGA_PlayerMovement_Hang_C::AttachTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking) == 0x000138, "Wrong size on GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, Friction_0) == 0x000008, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::Friction_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, BrakingDeceleration) == 0x000010, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::BrakingDeceleration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, RevAccel) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::RevAccel' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, OldVelocity_0) == 0x000028, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::OldVelocity_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, ZeroBraking) == 0x000038, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::ZeroBraking' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, ZeroFriction) == 0x000039, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::ZeroFriction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, Temp_bool_Variable) == 0x00003A, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x00003B, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x00003C, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, Temp_struct_Variable) == 0x000040, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_BooleanAND_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Lerp_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Square_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_VSize2DSquared_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_VSize2DSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_CrossProduct2D_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_CrossProduct2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue_1) == 0x0000A0, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue_2) == 0x0000B8, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Normal2D_ReturnValue) == 0x0000C8, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000D8, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue_1) == 0x0000E8, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Add_Vector2DVector2D_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Add_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue_2) == 0x000108, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, CallFunc_Add_Vector2DVector2D_ReturnValue_1) == 0x000118, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::CallFunc_Add_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking, K2Node_Select_Default) == 0x000128, "Member 'GA_PlayerMovement_PipeClimb_C_ApplyVelocityBraking::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_CalcAcceleration \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_CalcAcceleration"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration) == 0x0000F8, "Wrong size on GA_PlayerMovement_PipeClimb_C_CalcAcceleration"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, InputVector_0) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::InputVector_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_BreakVector_X) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_BreakVector_Y) == 0x000020, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_BreakVector_Z) == 0x000028, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000040, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_IsFacingActor_NewParam) == 0x000060, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_IsFacingActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, Temp_real_Variable) == 0x000068, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_SelectFloat_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000088, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_BreakVector2D_X) == 0x000090, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_BreakVector2D_Y) == 0x000098, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_FClamp_ReturnValue_1) == 0x0000A0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_FClamp_ReturnValue_2) == 0x0000A8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_Lerp_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, Temp_bool_Variable) == 0x0000C8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, K2Node_Select_Default) == 0x0000D0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue_2) == 0x0000D8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcAcceleration, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcAcceleration::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_CalcVelocity \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_CalcVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_CalcVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_CalcVelocity) == 0x000158, "Wrong size on GA_PlayerMovement_PipeClimb_C_CalcVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Lerp_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Lerp_ReturnValue_1) == 0x000030, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_BreakVector2D_X) == 0x000038, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_BreakVector2D_Y) == 0x000040, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, Temp_bool_Variable) == 0x000048, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Lerp_ReturnValue_2) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, K2Node_Select_Default) == 0x000058, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_FMin_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_FClamp_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_FClamp_ReturnValue_1) == 0x000090, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Lerp_ReturnValue_3) == 0x0000A8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Lerp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue_2) == 0x0000C0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_IsZero2D_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_IsZero2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_VSize2D_ReturnValue) == 0x0000D8, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_VSize2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue_3) == 0x0000E0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue_1) == 0x0000F0, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Subtract_Vector2DVector2D_ReturnValue) == 0x000100, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Subtract_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue_2) == 0x000110, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue_3) == 0x000120, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Subtract_Vector2DVector2D_ReturnValue_1) == 0x000130, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Subtract_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_Add_Vector2DVector2D_ReturnValue) == 0x000140, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_Add_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_CalcVelocity, CallFunc_IsZero2D_ReturnValue_1) == 0x000150, "Member 'GA_PlayerMovement_PipeClimb_C_CalcVelocity::CallFunc_IsZero2D_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb) == 0x000D60, "Wrong size on GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, Temp_object_Variable) == 0x000010, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalVelocity_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X) == 0x000030, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y) == 0x000038, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z) == 0x000040, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, Temp_object_Variable_1) == 0x000048, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X) == 0x000058, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y) == 0x000060, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsCM_Pipe_Climb) == 0x000068, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsCM_Pipe_Climb' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsCM_Pipe_Climb_1) == 0x000078, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsCM_Pipe_Climb_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_IsFacingActor_NewParam) == 0x000081, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_IsFacingActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_OverlappedComponent) == 0x000088, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_OtherActor) == 0x000090, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_OtherComp) == 0x000098, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_OtherBodyIndex) == 0x0000A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_bFromSweep) == 0x0000A4, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CustomEvent_SweepResult) == 0x0000A8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CustomEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000190, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_1) == 0x000198, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0001A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetLastInputVector_ReturnValue) == 0x0001B8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x0001D0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_1) == 0x0001E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_1) == 0x0001F0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_1) == 0x0001F8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Abs_ReturnValue) == 0x000200, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_1) == 0x000208, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_1) == 0x000210, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000218, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000219, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_CreateDelegate_OutputDelegate) == 0x00021C, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_2) == 0x000230, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_2) == 0x000238, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue) == 0x000240, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000288, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue) == 0x000290, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000298, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_2) == 0x0002A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue) == 0x0002A8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetControlRotation_ReturnValue) == 0x0002C0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x0002D8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_Event_Delta_Seconds) == 0x0002F0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_Event_Delta_Seconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_2) == 0x0002F8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_2) == 0x000300, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_2) == 0x000308, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue_1) == 0x000310, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam) == 0x000318, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue_1) == 0x000320, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsBP_Climbable) == 0x000338, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsBP_Climbable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_3) == 0x000340, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetMovementComponent_Character_Movement) == 0x000348, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetMovementComponent_Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, Temp_real_Variable) == 0x000350, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_1) == 0x000358, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_2) == 0x0003A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0003E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x000400, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_3) == 0x000418, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_3) == 0x000420, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_2) == 0x000428, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetPipeProgress_Distance) == 0x000430, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetPipeProgress_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_CanMantle_ReturnValue) == 0x000438, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_CanMantle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000439, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, Temp_bool_Variable) == 0x00043A, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BooleanAND_ReturnValue) == 0x00043B, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_3) == 0x000440, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_4) == 0x000488, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_4) == 0x000490, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000498, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_3) == 0x0004B0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_3) == 0x0004B8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_3) == 0x0004C0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_1) == 0x0004C8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_2) == 0x0004D0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_IsValid_ReturnValue) == 0x0004D8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorForwardVector_ReturnValue) == 0x0004E0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0004F8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_3) == 0x000510, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000518, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MapRangeClamped_ReturnValue) == 0x000530, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_NegateVector_ReturnValue) == 0x000538, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetYawPitchFromVector_Yaw) == 0x000550, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetYawPitchFromVector_Pitch) == 0x000554, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakRotator_Roll) == 0x000558, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakRotator_Pitch) == 0x00055C, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakRotator_Yaw) == 0x000560, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_4) == 0x000568, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000570, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000588, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_5) == 0x0005A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0005A8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_NegateVector_ReturnValue_1) == 0x0005C0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_4) == 0x0005D8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_5) == 0x000620, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_5) == 0x000628, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000630, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x000631, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_IsFacingActor_NewParam_1) == 0x000632, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_IsFacingActor_NewParam_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BooleanAND_ReturnValue_1) == 0x000633, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_ReturnValue) == 0x000638, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_ReturnValue_1) == 0x000640, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_IsFacingActor_NewParam_2) == 0x000648, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_IsFacingActor_NewParam_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeRotator_ReturnValue) == 0x000650, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_ReturnValue_2) == 0x000668, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue_2) == 0x000670, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_ReturnValue_3) == 0x000688, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_3) == 0x000690, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000698, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalVelocity_ReturnValue_1) == 0x0006B0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0006C8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_4) == 0x0006E0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_4) == 0x0006E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_4) == 0x0006F0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_VectorVector_ReturnValue) == 0x0006F8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue_2) == 0x000710, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector2D_ReturnValue) == 0x000718, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_CommitAbility_ReturnValue) == 0x000728, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_4) == 0x000730, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_ActorTimeDelay_ReturnValue) == 0x000738, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_IsValid_ReturnValue_1) == 0x000740, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000748, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000750, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000758, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000760, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Less_DoubleDouble_ReturnValue_3) == 0x000778, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Less_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000780, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_Select_Default) == 0x000798, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0007A0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue_3) == 0x0007B8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0007D0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0007E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_5) == 0x000800, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_5) == 0x000808, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_5) == 0x000810, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000818, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetPlayerController_ReturnValue) == 0x000830, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000838, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000850, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_6) == 0x000868, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_6) == 0x000870, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_6) == 0x000878, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_6) == 0x000880, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_6) == 0x000888, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_5) == 0x000890, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0008D8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue_3) == 0x0008E0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0008E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_7) == 0x000900, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_7) == 0x000908, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_7) == 0x000910, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000918, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_5) == 0x000920, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetTraversalComponent_ReturnValue_6) == 0x000928, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetTraversalComponent_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_MakeStruct_WrestlerTraversalMantleOffsets) == 0x000930, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_MakeStruct_WrestlerTraversalMantleOffsets' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_MakeStruct_WrestlerTraversalMantleOffsets_1) == 0x000938, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_MakeStruct_WrestlerTraversalMantleOffsets_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_Event_bWasCancelled) == 0x000940, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_6) == 0x000948, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_6) == 0x000990, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000998, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_4) == 0x0009A8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0009B0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0009C8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_8) == 0x0009D0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_8) == 0x0009D8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_8) == 0x0009E0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_7) == 0x0009E8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetActorInfo_ReturnValue_7) == 0x0009F0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsBP_Climbable_Animations) == 0x000A38, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsBP_Climbable_Animations' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_5) == 0x000A48, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetSurfaceTypeAudio_AudioSwitch) == 0x000A50, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetSurfaceTypeAudio_AudioSwitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x000A58, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_DynamicCast_bSuccess_6) == 0x000A68, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000A70, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000A78, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000A80, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_X_7) == 0x000A88, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_X_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector2D_Y_7) == 0x000A90, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector2D_Y_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue_4) == 0x000A98, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000AA0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000AA8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000AB0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000B88, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue_4) == 0x000B90, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_VLerp_ReturnValue) == 0x000BA8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_GetAttachActor_NewParam_8) == 0x000BC0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_GetAttachActor_NewParam_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Divide_VectorVector_ReturnValue) == 0x000BC8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Divide_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000BE0, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_X_9) == 0x000BF8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_X_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Y_9) == 0x000C00, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Y_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_BreakVector_Z_9) == 0x000C08, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_BreakVector_Z_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_MoveUpdatedComponent_OutHit) == 0x000C10, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_MoveUpdatedComponent_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_K2_MoveUpdatedComponent_ReturnValue) == 0x000CF8, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_K2_MoveUpdatedComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000D00, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x000D08, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_FClamp_ReturnValue_5) == 0x000D10, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_FClamp_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeVector_ReturnValue_5) == 0x000D18, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000D30, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_VLerp_Alpha_ImplicitCast) == 0x000D34, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_A_ImplicitCast) == 0x000D38, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_B_ImplicitCast) == 0x000D40, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_SelectFloat_B_ImplicitCast_1) == 0x000D48, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_SelectFloat_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000D50, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000D54, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, K2Node_MakeStruct_MantleDistance_ImplicitCast) == 0x000D58, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::K2Node_MakeStruct_MantleDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000D5C, "Member 'GA_PlayerMovement_PipeClimb_C_ExecuteUbergraph_GA_PlayerMovement_PipeClimb::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_GetPipeProgress \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_GetPipeProgress"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress) == 0x0000D0, "Wrong size on GA_PlayerMovement_PipeClimb_C_GetPipeProgress"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, Distance) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_GetAttachActor_NewParam) == 0x000008, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_GetAttachActor_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_X) == 0x000030, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_Y) == 0x000038, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_Z) == 0x000040, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_GetActorInfo_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_X_1) == 0x0000B0, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_Y_1) == 0x0000B8, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_BreakVector_Z_1) == 0x0000C0, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_GetPipeProgress, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'GA_PlayerMovement_PipeClimb_C_GetPipeProgress::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_HandleMovement \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_HandleMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_HandleMovement"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_HandleMovement) == 0x000008, "Wrong size on GA_PlayerMovement_PipeClimb_C_HandleMovement"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_HandleMovement, Delta_Seconds_0) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_HandleMovement::Delta_Seconds_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap) == 0x000108, "Wrong size on GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, OverlappedComponent) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, OtherActor) == 0x000008, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, OtherComp) == 0x000010, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, OtherBodyIndex) == 0x000018, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, bFromSweep) == 0x00001C, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap, SweepResult) == 0x000020, "Member 'GA_PlayerMovement_PipeClimb_C_OnOwnerOverlap::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility) == 0x000380, "Wrong size on GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, Target) == 0x000078, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetPlayerPawn_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000088, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X) == 0x0000B8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y) == 0x0000C0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z) == 0x0000C8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_MakeVector_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_1) == 0x000100, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_1) == 0x000108, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_1) == 0x000110, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_MakeVector_ReturnValue_1) == 0x000118, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000130, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Dot_VectorVector_ReturnValue) == 0x000148, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000150, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000158, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000160, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000170, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000178, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000188, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000190, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000198, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_2) == 0x0001A0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_2) == 0x0001A8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_2) == 0x0001B0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_AsCharacter_Movement_Component_1) == 0x0001B8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_AsCharacter_Movement_Component_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess_1) == 0x0001C0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0001C8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetLastInputVector_ReturnValue) == 0x0001E0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_IsMovingOnGround_ReturnValue) == 0x0001F8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_IsMovingOnGround_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_VSize_ReturnValue) == 0x000200, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000208, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000209, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000210, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000218, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000220, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000238, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_3) == 0x000240, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_3) == 0x000248, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_3) == 0x000250, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_AsBP_Climbable) == 0x000258, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_AsBP_Climbable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess_2) == 0x000260, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000268, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000270, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_4) == 0x000288, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_4) == 0x000290, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_4) == 0x000298, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0002A0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetTraversalComponent_ReturnValue) == 0x0002A8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0002B0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetTraversalVelocity_ReturnValue) == 0x0002B8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetTraversalVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_GetPassiveTargetData_ReturnValue) == 0x0002D0, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_GetPassiveTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_5) == 0x0002F8, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_5) == 0x000300, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_5) == 0x000308, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetSingleActorFromTargetData_OutPins) == 0x000310, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetSingleActorFromTargetData_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_K2_GetSingleActorFromTargetData_ReturnValue) == 0x000318, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_K2_GetSingleActorFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_FClamp_ReturnValue) == 0x000320, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_MakeVector2D_ReturnValue) == 0x000328, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, K2Node_SwitchEnum_CmpSuccess) == 0x000338, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector2D_X) == 0x000340, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BreakVector2D_Y) == 0x000348, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000350, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000358, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_FClamp_ReturnValue_1) == 0x000360, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000368, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000370, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue) == 0x000378, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000379, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x00037A, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_3) == 0x00037B, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue_1) == 0x00037C, "Member 'GA_PlayerMovement_PipeClimb_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_PipeClimb_C \ +static_assert(alignof(UGA_PlayerMovement_PipeClimb_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_PipeClimb_C"); \ +static_assert(sizeof(UGA_PlayerMovement_PipeClimb_C) == 0x000868, "Wrong size on UGA_PlayerMovement_PipeClimb_C"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, UberGraphFrame_GA_PlayerMovement_PipeClimb_C) == 0x000778, "Member 'UGA_PlayerMovement_PipeClimb_C::UberGraphFrame_GA_PlayerMovement_PipeClimb_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Can_Climb_Velocity) == 0x000780, "Member 'UGA_PlayerMovement_PipeClimb_C::Can_Climb_Velocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, MaxAcceleration) == 0x000788, "Member 'UGA_PlayerMovement_PipeClimb_C::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, BaseMaxSpeed) == 0x000790, "Member 'UGA_PlayerMovement_PipeClimb_C::BaseMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Velocity) == 0x000798, "Member 'UGA_PlayerMovement_PipeClimb_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, OldVelocity) == 0x0007A8, "Member 'UGA_PlayerMovement_PipeClimb_C::OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Friction) == 0x0007B8, "Member 'UGA_PlayerMovement_PipeClimb_C::Friction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Braking_Deceleration) == 0x0007C0, "Member 'UGA_PlayerMovement_PipeClimb_C::Braking_Deceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Acceleration) == 0x0007C8, "Member 'UGA_PlayerMovement_PipeClimb_C::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, SprintInputMultiplier) == 0x0007D8, "Member 'UGA_PlayerMovement_PipeClimb_C::SprintInputMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, PauseMovement) == 0x0007E8, "Member 'UGA_PlayerMovement_PipeClimb_C::PauseMovement' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, MoveDelta) == 0x0007F0, "Member 'UGA_PlayerMovement_PipeClimb_C::MoveDelta' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Friction_Acending) == 0x0007F8, "Member 'UGA_PlayerMovement_PipeClimb_C::Friction_Acending' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Acending) == 0x000800, "Member 'UGA_PlayerMovement_PipeClimb_C::Acending' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, BaseMaxSpeed_Acending) == 0x000808, "Member 'UGA_PlayerMovement_PipeClimb_C::BaseMaxSpeed_Acending' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Braking_Deceleration_0) == 0x000810, "Member 'UGA_PlayerMovement_PipeClimb_C::Braking_Deceleration_0' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, MaxAcceleration_Acending) == 0x000818, "Member 'UGA_PlayerMovement_PipeClimb_C::MaxAcceleration_Acending' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, PipeHeight) == 0x000820, "Member 'UGA_PlayerMovement_PipeClimb_C::PipeHeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, InputVector) == 0x000828, "Member 'UGA_PlayerMovement_PipeClimb_C::InputVector' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Delta_Seconds) == 0x000840, "Member 'UGA_PlayerMovement_PipeClimb_C::Delta_Seconds' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Vertical_Deadzone) == 0x000848, "Member 'UGA_PlayerMovement_PipeClimb_C::Vertical_Deadzone' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, Attach_Offset) == 0x000850, "Member 'UGA_PlayerMovement_PipeClimb_C::Attach_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, ClampZOffset) == 0x000858, "Member 'UGA_PlayerMovement_PipeClimb_C::ClampZOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_PipeClimb_C, BaseMaxSpeed_Vsprint) == 0x000860, "Member 'UGA_PlayerMovement_PipeClimb_C::BaseMaxSpeed_Vsprint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_GetCharacterMovement_returnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_GetCharacterMovement_returnValue_1) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_BreakVector_X) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_BreakVector_Y) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_BreakVector_Z) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_FMax_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp, CallFunc_MakeVector_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_ApplyFallVelocityClamp::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyGlideVFX \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyGlideVFX) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyGlideVFX"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyGlideVFX) == 0x000058, "Wrong size on GA_PlayerMovement_Glide_C_ApplyGlideVFX"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, Temp_object_Variable) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, K2Node_DynamicCast_AsCM_Glide_Screen_PP) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::K2Node_DynamicCast_AsCM_Glide_Screen_PP' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyGlideVFX, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_ApplyGlideVFX::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyInputSettings \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyInputSettings) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyInputSettings"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyInputSettings) == 0x000040, "Wrong size on GA_PlayerMovement_Glide_C_ApplyInputSettings"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyInputSettings, Input) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyInputSettings::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyInputSettings, ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_ApplyInputSettings::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyInputSettings, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_ApplyInputSettings::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyInputSettings, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_ApplyInputSettings::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyInputSettings, CallFunc_Multiply_Vector2DFloat_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ApplyInputSettings::CallFunc_Multiply_Vector2DFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed) == 0x000160, "Wrong size on GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_GetOwnerTransform_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_GetOwnerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_GetOwnerTransform_ReturnValue_1) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_GetOwnerTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_InverseTransformDirection_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_X) == 0x000108, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_Y) == 0x000110, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_Z) == 0x000118, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_FMax_ReturnValue) == 0x000120, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_MakeVector_ReturnValue) == 0x000128, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed, CallFunc_TransformDirection_ReturnValue) == 0x000140, "Member 'GA_PlayerMovement_Glide_C_ApplyMinGlideForwardSpeed::CallFunc_TransformDirection_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplySpeedInput \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplySpeedInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplySpeedInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplySpeedInput) == 0x000088, "Wrong size on GA_PlayerMovement_Glide_C_ApplySpeedInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, Input) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, CallFunc_GetOwningCharacter_returnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, CallFunc_GetActorForwardVector_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplySpeedInput, CallFunc_Add_VectorVector_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_C_ApplySpeedInput::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyStartingVelocity \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyStartingVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity) == 0x000150, "Wrong size on GA_PlayerMovement_Glide_C_ApplyStartingVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, BaseVelocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::BaseVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, Forward) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::Forward' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_X) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Y) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Z) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_X_1) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Y_1) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Z_1) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_GetCharacterMovement_returnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_MakeVector2D_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_VSize2D_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_VSize2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_VLerp_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_X_2) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Y_2) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Z_2) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_MakeVector_ReturnValue) == 0x000100, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_X_3) == 0x000118, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Y_3) == 0x000120, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_BreakVector_Z_3) == 0x000128, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_GetCharacterMovement_returnValue_1) == 0x000130, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyStartingVelocity, CallFunc_MakeVector_ReturnValue_1) == 0x000138, "Member 'GA_PlayerMovement_Glide_C_ApplyStartingVelocity::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ApplyYawInput \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ApplyYawInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ApplyYawInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ApplyYawInput) == 0x000098, "Wrong size on GA_PlayerMovement_Glide_C_ApplyYawInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, Input) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_GetGlideTime_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_GetGlideTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_FMin_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_MakeRotator_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ApplyYawInput, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_ApplyYawInput::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide) == 0x000560, "Wrong size on GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsValid_ReturnValue_1) == 0x000041, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventTag_2) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventData_2) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_NewMovementMode) == 0x000110, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_2) == 0x000114, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventTag_1) == 0x000124, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventData_1) == 0x000130, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001E0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventTag) == 0x0001F0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_EventData) == 0x0001F8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002A8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, Temp_struct_Variable) == 0x0002B8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, Temp_struct_Variable_1) == 0x000368, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000370, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetControlRotation_ReturnValue) == 0x000378, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakRotator_Roll) == 0x000390, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakRotator_Pitch) == 0x000394, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakRotator_Yaw) == 0x000398, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_MakeRotator_ReturnValue) == 0x0003A0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetActorDeltaTime_DeltaTime) == 0x0003B8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0003C0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_FClamp_ReturnValue) == 0x0003C8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0003D0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_Character) == 0x0003D8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_PrevMovementMode) == 0x0003E0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CustomEvent_PreviousCustomMode) == 0x0003E1, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CustomEvent_PreviousCustomMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetCharacterMovement_returnValue) == 0x0003E8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x0003F0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsFalling_ReturnValue) == 0x000408, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_X) == 0x000410, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Y) == 0x000418, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Z) == 0x000420, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_Not_PreBool_ReturnValue) == 0x000428, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000430, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_DynamicCast_AsCM_Glide_Screen_PP) == 0x000438, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_DynamicCast_AsCM_Glide_Screen_PP' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_DynamicCast_bSuccess) == 0x000440, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000448, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000460, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000468, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_X_1) == 0x000480, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Y_1) == 0x000488, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Z_1) == 0x000490, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_X_2) == 0x000498, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Y_2) == 0x0004A0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_BreakVector_Z_2) == 0x0004A8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_MakeVector_ReturnValue) == 0x0004B0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_MakeVector_ReturnValue_1) == 0x0004C8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_Vector_Distance_ReturnValue) == 0x0004E0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0004E8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0004F0, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_Round_ReturnValue) == 0x0004F8, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetPlayerController_ReturnValue) == 0x000500, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_5) == 0x000508, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetPlayerController_ReturnValue_1) == 0x000518, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000520, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000528, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_DynamicCast_AsCM_Cam_Nudge) == 0x000530, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_DynamicCast_AsCM_Cam_Nudge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_DynamicCast_bSuccess_1) == 0x000538, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsValid_ReturnValue_2) == 0x000539, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsValid_ReturnValue_3) == 0x00053A, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_WrestlerGlide_ReturnValue) == 0x000540, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_WrestlerGlide_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_Event_bWasCancelled) == 0x000548, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, CallFunc_IsValid_ReturnValue_4) == 0x000549, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide, K2Node_CreateDelegate_OutputDelegate_6) == 0x00054C, "Member 'GA_PlayerMovement_Glide_C_ExecuteUbergraph_GA_PlayerMovement_Glide::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetCharacterMovement \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetCharacterMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetCharacterMovement"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetCharacterMovement) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_C_GetCharacterMovement"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetCharacterMovement, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetCharacterMovement::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetCharacterMovement, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_GetCharacterMovement::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetCharacterMovement, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_GetCharacterMovement::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetCharacterMovement, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_GetCharacterMovement::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetGlideViewRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetGlideViewRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetGlideViewRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetGlideViewRotation) == 0x000048, "Wrong size on GA_PlayerMovement_Glide_C_GetGlideViewRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, CallFunc_GetCharacterMovement_returnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, CallFunc_GetYawPitchFromVector_Yaw) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, CallFunc_GetYawPitchFromVector_Pitch) == 0x000024, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, CallFunc_MakeRotator_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideViewRotation, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_GetGlideViewRotation::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetOwnerControlRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetOwnerControlRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation) == 0x000040, "Wrong size on GA_PlayerMovement_Glide_C_GetOwnerControlRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetOwnerControlRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation, CallFunc_GetOwningCharacter_returnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_GetOwnerControlRotation::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_GetOwnerControlRotation::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerControlRotation, CallFunc_GetControlRotation_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_GetOwnerControlRotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetOwnerTransform \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetOwnerTransform) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_C_GetOwnerTransform"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetOwnerTransform) == 0x0000D0, "Wrong size on GA_PlayerMovement_Glide_C_GetOwnerTransform"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerTransform, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetOwnerTransform::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerTransform, CallFunc_GetOwningCharacter_returnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_GetOwnerTransform::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwnerTransform, CallFunc_GetTransform_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_C_GetOwnerTransform::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetOwningCharacter \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetOwningCharacter) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetOwningCharacter"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetOwningCharacter) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_C_GetOwningCharacter"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwningCharacter, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetOwningCharacter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwningCharacter, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_GetOwningCharacter::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwningCharacter, K2Node_DynamicCast_AsCharacter) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_GetOwningCharacter::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetOwningCharacter, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_GetOwningCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetRawInput \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetRawInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetRawInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetRawInput) == 0x000088, "Wrong size on GA_PlayerMovement_Glide_C_GetRawInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_GetCharacterMovement_returnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_GetLastInputVector_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_GetLastUpdateRotation_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_GetLastUpdateRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_BreakVector_X) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_BreakVector_Y) == 0x000068, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_BreakVector_Z) == 0x000070, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetRawInput, CallFunc_MakeVector2D_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_GetRawInput::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Glide_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Glide_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Glide_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_MoveChanged \ +static_assert(alignof(GA_PlayerMovement_Glide_C_MoveChanged) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_MoveChanged"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_MoveChanged) == 0x000010, "Wrong size on GA_PlayerMovement_Glide_C_MoveChanged"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_MoveChanged, Character) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_MoveChanged::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_MoveChanged, PrevMovementMode) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_MoveChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_MoveChanged, PreviousCustomMode) == 0x000009, "Member 'GA_PlayerMovement_Glide_C_MoveChanged::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1 \ +static_assert(alignof(GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1) == 0x0000B8, "Wrong size on GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1, EventData) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_OnAbilityActivated_963C01EA4574BFD500BCD1A6CE447FC1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1 \ +static_assert(alignof(GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1) == 0x0000B8, "Wrong size on GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1, EventData) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_OnCancelled_963C01EA4574BFD500BCD1A6CE447FC1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1 \ +static_assert(alignof(GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1) == 0x0000C0, "Wrong size on GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1, EventTag) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1, EventData) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1, NewMovementMode) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_C_OnMovementModeChanged_963C01EA4574BFD500BCD1A6CE447FC1::NewMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ToggleLookInput \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ToggleLookInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_ToggleLookInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ToggleLookInput) == 0x000058, "Wrong size on GA_PlayerMovement_Glide_C_ToggleLookInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ToggleLookInput, bNewLookInput) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ToggleLookInput::bNewLookInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ToggleLookInput, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_ToggleLookInput::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ToggleLookInput, CallFunc_Not_PreBool_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_ToggleLookInput::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_UpdateGlideRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_C_UpdateGlideRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_UpdateGlideRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_UpdateGlideRotation) == 0x000168, "Wrong size on GA_PlayerMovement_Glide_C_UpdateGlideRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetRawInput_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetRawInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakVector2D_X) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakVector2D_Y) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_FInterpTo_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_MakeRotator_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetControlRotation_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetActorDeltaTime_DeltaTime_1) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetActorDeltaTime_DeltaTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Roll) == 0x000080, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Pitch) == 0x000084, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Yaw) == 0x000088, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetActorDeltaTime_DeltaTime_2) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetActorDeltaTime_DeltaTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_MakeRotator_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetOwningCharacter_returnValue) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_RInterpTo_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetController_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetOwningCharacter_returnValue_1) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetOwningCharacter_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetController_ReturnValue_1) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_GetControlRotation_ReturnValue_1) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Roll_1) == 0x000100, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Pitch_1) == 0x000104, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_BreakRotator_Yaw_1) == 0x000108, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_MakeRotator_ReturnValue_2) == 0x000110, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_RInterpTo_ReturnValue_1) == 0x000128, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_ComposeRotators_ReturnValue) == 0x000140, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000158, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x00015C, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000160, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideRotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast_1) == 0x000164, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideRotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_UpdateGlideTime \ +static_assert(alignof(GA_PlayerMovement_Glide_C_UpdateGlideTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_UpdateGlideTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_UpdateGlideTime) == 0x000010, "Wrong size on GA_PlayerMovement_Glide_C_UpdateGlideTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideTime, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideTime::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideTime, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideTime::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_UpdateGlideVelocity \ +static_assert(alignof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_C_UpdateGlideVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity) == 0x000270, "Wrong size on GA_PlayerMovement_Glide_C_UpdateGlideVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_real_Variable) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_real_Variable_1) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_bool_Variable) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_real_Variable_2) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetTransform_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_bool_Variable_1) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_TransformDirection_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_TransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_1) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetCharacterMovement_returnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_MapRangeClamped_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_FClamp_ReturnValue) == 0x000100, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000108, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000110, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Lerp_ReturnValue) == 0x000118, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_2) == 0x000120, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_FInterpTo_ReturnValue) == 0x000128, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000130, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000138, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_real_Variable_3) == 0x000140, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_3) == 0x000148, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, Temp_bool_Variable_2) == 0x000150, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_4) == 0x000158, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetCharacterMovement_returnValue_1) == 0x000160, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000168, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000180, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_BreakVector_X) == 0x000198, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_BreakVector_Y) == 0x0001A0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_BreakVector_Z) == 0x0001A8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001B0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0001B8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0001C0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0001C8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001D0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0001D8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, K2Node_Select_Default) == 0x0001E0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, K2Node_Select_Default_1) == 0x0001E8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, K2Node_Select_Default_2) == 0x0001F0, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0001F8, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000200, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000208, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000210, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_FClamp_ReturnValue_1) == 0x000218, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_MakeVector_ReturnValue) == 0x000220, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000238, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateGlideVelocity, CallFunc_Add_VectorVector_ReturnValue) == 0x000250, "Member 'GA_PlayerMovement_Glide_C_UpdateGlideVelocity::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_UpdateLookInput \ +static_assert(alignof(GA_PlayerMovement_Glide_C_UpdateLookInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_UpdateLookInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_UpdateLookInput) == 0x000120, "Wrong size on GA_PlayerMovement_Glide_C_UpdateLookInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, UseLookInput) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::UseLookInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, PlayerController) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, Character) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, Temp_int_Array_Index_Variable) == 0x000024, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000038, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetActorRightVector_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetLastInputVector_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_VSize_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetInputSettings_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetInputSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_FClamp_ReturnValue) == 0x000088, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetAxisMappingByName_OutMappings) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetAxisMappingByName_OutMappings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Array_Get_Item) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Array_Length_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_GetInputAnalogKeyState_ReturnValue) == 0x0000D4, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_GetInputAnalogKeyState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Less_IntInt_ReturnValue) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x0000D9, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_FClamp_ReturnValue_1) == 0x0000F8, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_AddMovementInput_ScaleValue_ImplicitCast) == 0x000100, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_AddMovementInput_ScaleValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000108, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000110, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_UpdateLookInput, CallFunc_NotEqual_DoubleDouble_A_ImplicitCast) == 0x000118, "Member 'GA_PlayerMovement_Glide_C_UpdateLookInput::CallFunc_NotEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed \ +static_assert(alignof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed) == 0x0000D0, "Wrong size on GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_GetVelocity_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000028, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_InverseTransformDirection_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_BreakVector_X) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_BreakVector_Y) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_BreakVector_Z) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Glide_C_ExceedsMinimumSpeed::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetActorDeltaTime \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetActorDeltaTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetActorDeltaTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetActorDeltaTime) == 0x000028, "Wrong size on GA_PlayerMovement_Glide_C_GetActorDeltaTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetActorDeltaTime, DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetActorDeltaTime::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetActorDeltaTime, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_C_GetActorDeltaTime::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetActorDeltaTime, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_C_GetActorDeltaTime::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'GA_PlayerMovement_Glide_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_GetGlideTime \ +static_assert(alignof(GA_PlayerMovement_Glide_C_GetGlideTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_GetGlideTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_GetGlideTime) == 0x000008, "Wrong size on GA_PlayerMovement_Glide_C_GetGlideTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_GetGlideTime, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_GetGlideTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility) == 0x0000B8, "Wrong size on GA_PlayerMovement_Glide_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_ExceedsMinimumSpeed_ReturnValue) == 0x000071, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_ExceedsMinimumSpeed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_GetVelocity_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_BreakVector_X) == 0x000098, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_BreakVector_Y) == 0x0000A0, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_BreakVector_Z) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000B1, "Member 'GA_PlayerMovement_Glide_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Glide_C \ +static_assert(alignof(UGA_PlayerMovement_Glide_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Glide_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Glide_C) == 0x0007B8, "Wrong size on UGA_PlayerMovement_Glide_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Glide_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, MaxGlideSpeed) == 0x000670, "Member 'UGA_PlayerMovement_Glide_C::MaxGlideSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, MinGlideForwardSpeed) == 0x000678, "Member 'UGA_PlayerMovement_Glide_C::MinGlideForwardSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, YawInputStrength) == 0x000680, "Member 'UGA_PlayerMovement_Glide_C::YawInputStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, CancellationMovementModes) == 0x000688, "Member 'UGA_PlayerMovement_Glide_C::CancellationMovementModes' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, CancellationAbilityQuery) == 0x000698, "Member 'UGA_PlayerMovement_Glide_C::CancellationAbilityQuery' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, FastestStartingFallSpeed) == 0x0006E0, "Member 'UGA_PlayerMovement_Glide_C::FastestStartingFallSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, Glide_Acceleration) == 0x0006E8, "Member 'UGA_PlayerMovement_Glide_C::Glide_Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, ExperimentalGlideAcceleration) == 0x000700, "Member 'UGA_PlayerMovement_Glide_C::ExperimentalGlideAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideTime) == 0x000718, "Member 'UGA_PlayerMovement_Glide_C::GlideTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, YawRampTime) == 0x000720, "Member 'UGA_PlayerMovement_Glide_C::YawRampTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, YawRampExponent) == 0x000728, "Member 'UGA_PlayerMovement_Glide_C::YawRampExponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideViewPitch) == 0x000730, "Member 'UGA_PlayerMovement_Glide_C::GlideViewPitch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, TurnYaw) == 0x000738, "Member 'UGA_PlayerMovement_Glide_C::TurnYaw' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideRot) == 0x000740, "Member 'UGA_PlayerMovement_Glide_C::GlideRot' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideBoost) == 0x000758, "Member 'UGA_PlayerMovement_Glide_C::GlideBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, DropForce) == 0x000760, "Member 'UGA_PlayerMovement_Glide_C::DropForce' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, LookInputYaw) == 0x000768, "Member 'UGA_PlayerMovement_Glide_C::LookInputYaw' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, LookInputSensitivity) == 0x000770, "Member 'UGA_PlayerMovement_Glide_C::LookInputSensitivity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideBoostTime) == 0x000778, "Member 'UGA_PlayerMovement_Glide_C::GlideBoostTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, FallSpeed) == 0x000780, "Member 'UGA_PlayerMovement_Glide_C::FallSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlideVFX) == 0x000788, "Member 'UGA_PlayerMovement_Glide_C::GlideVFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, GlidePP) == 0x000790, "Member 'UGA_PlayerMovement_Glide_C::GlidePP' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, StartPoint) == 0x000798, "Member 'UGA_PlayerMovement_Glide_C::StartPoint' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_C, CamModifier) == 0x0007B0, "Member 'UGA_PlayerMovement_Glide_C::CamModifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_WallClimbBoost_C \ +static_assert(alignof(ATA_WallClimbBoost_C) == 0x000010, "Wrong alignment on ATA_WallClimbBoost_C"); \ +static_assert(sizeof(ATA_WallClimbBoost_C) == 0x000440, "Wrong size on ATA_WallClimbBoost_C"); \ +static_assert(offsetof(ATA_WallClimbBoost_C, DefaultSceneRoot) == 0x000430, "Member 'ATA_WallClimbBoost_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_PreConstruct \ +static_assert(alignof(TCR_RPGMenuButton_C_PreConstruct) == 0x000001, "Wrong alignment on TCR_RPGMenuButton_C_PreConstruct"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_PreConstruct) == 0x000001, "Wrong size on TCR_RPGMenuButton_C_PreConstruct"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'TCR_RPGMenuButton_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event \ +static_assert(alignof(TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event) == 0x000008, "Wrong size on TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event, Button_0) == 0x000000, "Member 'TCR_RPGMenuButton_C_OnWidgetHoverOnCallback_Event::Button_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event \ +static_assert(alignof(TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event) == 0x000008, "Wrong size on TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event, Button_0) == 0x000000, "Member 'TCR_RPGMenuButton_C_OnWidgetHoverOffCallback_Event::Button_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_OnMouseEnter \ +static_assert(alignof(TCR_RPGMenuButton_C_OnMouseEnter) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_OnMouseEnter"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_OnMouseEnter) == 0x0000B0, "Wrong size on TCR_RPGMenuButton_C_OnMouseEnter"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'TCR_RPGMenuButton_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'TCR_RPGMenuButton_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_OnInputChanged \ +static_assert(alignof(TCR_RPGMenuButton_C_OnInputChanged) == 0x000001, "Wrong alignment on TCR_RPGMenuButton_C_OnInputChanged"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_OnInputChanged) == 0x000001, "Wrong size on TCR_RPGMenuButton_C_OnInputChanged"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'TCR_RPGMenuButton_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_OnFocusReceived \ +static_assert(alignof(TCR_RPGMenuButton_C_OnFocusReceived) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_OnFocusReceived"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_OnFocusReceived) == 0x0001B0, "Wrong size on TCR_RPGMenuButton_C_OnFocusReceived"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'TCR_RPGMenuButton_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'TCR_RPGMenuButton_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'TCR_RPGMenuButton_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'TCR_RPGMenuButton_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton \ +static_assert(alignof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton) == 0x000198, "Wrong size on TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, EntryPoint) == 0x000000, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_delegate_Variable) == 0x000004, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_bool_IsClosed_Variable) == 0x000014, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_bool_Has_Been_Initd_Variable) == 0x000015, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_bool_Has_Been_Initd_Variable_1) == 0x000016, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_Event_InCurrentInputType) == 0x000017, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_Event_MyGeometry) == 0x00001C, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_Event_MouseEvent) == 0x000058, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_IsSelected_ReturnValue) == 0x0000D0, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_IsSelected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_MakeStruct_SlateColor) == 0x0000D4, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_MakeStruct_SlateColor' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_CustomEvent_Button_1) == 0x0000E8, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_CustomEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_CustomEvent_Button) == 0x0000F0, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_CustomEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_IsSelected_ReturnValue_1) == 0x0000F8, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_IsSelected_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_IsSelected_ReturnValue_2) == 0x0000F9, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_IsSelected_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationForward_ReturnValue) == 0x000100, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimation_ReturnValue) == 0x000108, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000110, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationForward_ReturnValue_2) == 0x000118, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationForward_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000120, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_Event_IsDesignTime) == 0x000128, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationReverse_ReturnValue_1) == 0x000130, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationReverse_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000138, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationReverse_ReturnValue_2) == 0x000140, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationReverse_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, CallFunc_PlayAnimationForward_ReturnValue_3) == 0x000148, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::CallFunc_PlayAnimationForward_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_bool_IsClosed_Variable_1) == 0x000150, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_MakeStruct_SlateColor_1) == 0x000154, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_MakeStruct_SlateColor_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_CreateDelegate_OutputDelegate) == 0x000168, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, Temp_delegate_Variable_1) == 0x000178, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'TCR_RPGMenuButton_C_ExecuteUbergraph_TCR_RPGMenuButton::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'TCR_RPGMenuButton_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_RPGMenuButton_C \ +static_assert(alignof(UTCR_RPGMenuButton_C) == 0x000010, "Wrong alignment on UTCR_RPGMenuButton_C"); \ +static_assert(sizeof(UTCR_RPGMenuButton_C) == 0x001470, "Wrong size on UTCR_RPGMenuButton_C"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, UberGraphFrame) == 0x0013E0, "Member 'UTCR_RPGMenuButton_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, HoverSelected) == 0x0013E8, "Member 'UTCR_RPGMenuButton_C::HoverSelected' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, Pressed) == 0x0013F0, "Member 'UTCR_RPGMenuButton_C::Pressed' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, Selected) == 0x0013F8, "Member 'UTCR_RPGMenuButton_C::Selected' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, NotifPopupAnim) == 0x001400, "Member 'UTCR_RPGMenuButton_C::NotifPopupAnim' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, HorizontalBox) == 0x001408, "Member 'UTCR_RPGMenuButton_C::HorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, LineUnderSelection) == 0x001410, "Member 'UTCR_RPGMenuButton_C::LineUnderSelection' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, NotifPopup) == 0x001418, "Member 'UTCR_RPGMenuButton_C::NotifPopup' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, SelectionBKG) == 0x001420, "Member 'UTCR_RPGMenuButton_C::SelectionBKG' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, UnderlineSelected) == 0x001428, "Member 'UTCR_RPGMenuButton_C::UnderlineSelected' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, WidgetSwitcher) == 0x001430, "Member 'UTCR_RPGMenuButton_C::WidgetSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, OnButtonFocused) == 0x001438, "Member 'UTCR_RPGMenuButton_C::OnButtonFocused' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, TextHorizontalAlignment) == 0x001448, "Member 'UTCR_RPGMenuButton_C::TextHorizontalAlignment' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, CostumeList) == 0x001450, "Member 'UTCR_RPGMenuButton_C::CostumeList' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, HightlightVisuals) == 0x001458, "Member 'UTCR_RPGMenuButton_C::HightlightVisuals' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, TextBlockPadding) == 0x00145C, "Member 'UTCR_RPGMenuButton_C::TextBlockPadding' has a wrong offset!"); \ +static_assert(offsetof(UTCR_RPGMenuButton_C, ShowNotificationIcon) == 0x00146C, "Member 'UTCR_RPGMenuButton_C::ShowNotificationIcon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WallClimbShake_C \ +static_assert(alignof(UBP_WallClimbShake_C) == 0x000010, "Wrong alignment on UBP_WallClimbShake_C"); \ +static_assert(sizeof(UBP_WallClimbShake_C) == 0x000230, "Wrong size on UBP_WallClimbShake_C"); \ + +#define DUMPER7_ASSERTS_CM_Vsprint_C_BlueprintModifyCamera \ +static_assert(alignof(CM_Vsprint_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_Vsprint_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_Vsprint_C_BlueprintModifyCamera) == 0x0000C0, "Wrong size on CM_Vsprint_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_Vsprint_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_Vsprint_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_Vsprint_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_Vsprint_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_Vsprint_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_Vsprint_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_Vsprint_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000074, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000078, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue) == 0x000080, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_Lerp_ReturnValue) == 0x000088, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000090, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000098, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0000A0, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x0000A8, "Member 'CM_Vsprint_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0000B0, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyCamera, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x0000B8, "Member 'CM_Vsprint_C_BlueprintModifyCamera::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Vsprint_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_Vsprint_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_Vsprint_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_Vsprint_C_BlueprintModifyPostProcess) == 0x000E10, "Wrong size on CM_Vsprint_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000E00, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Vsprint_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast_1) == 0x000E04, "Member 'CM_Vsprint_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Vsprint_C \ +static_assert(alignof(UCM_Vsprint_C) == 0x000010, "Wrong alignment on UCM_Vsprint_C"); \ +static_assert(sizeof(UCM_Vsprint_C) == 0x000790, "Wrong size on UCM_Vsprint_C"); \ +static_assert(offsetof(UCM_Vsprint_C, Momentum) == 0x000778, "Member 'UCM_Vsprint_C::Momentum' has a wrong offset!"); \ +static_assert(offsetof(UCM_Vsprint_C, Boost) == 0x000780, "Member 'UCM_Vsprint_C::Boost' has a wrong offset!"); \ +static_assert(offsetof(UCM_Vsprint_C, BoostInterp) == 0x000788, "Member 'UCM_Vsprint_C::BoostInterp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Weapon_Unarmed_C \ +static_assert(alignof(ABP_Weapon_Unarmed_C) == 0x000008, "Wrong alignment on ABP_Weapon_Unarmed_C"); \ +static_assert(sizeof(ABP_Weapon_Unarmed_C) == 0x0003B8, "Wrong size on ABP_Weapon_Unarmed_C"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_AssembleModularCharacter \ +static_assert(alignof(BP_DeadEnemy_Base_C_AssembleModularCharacter) == 0x000001, "Wrong alignment on BP_DeadEnemy_Base_C_AssembleModularCharacter"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_AssembleModularCharacter) == 0x000003, "Wrong size on BP_DeadEnemy_Base_C_AssembleModularCharacter"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_AssembleModularCharacter, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_AssembleModularCharacter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_AssembleModularCharacter, CallFunc_IsValid_ReturnValue_1) == 0x000001, "Member 'BP_DeadEnemy_Base_C_AssembleModularCharacter::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_AssembleModularCharacter, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'BP_DeadEnemy_Base_C_AssembleModularCharacter::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature \ +static_assert(alignof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000118, "Wrong size on BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, HitComponent) == 0x000000, "Member 'BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, NormalImpulse) == 0x000018, "Member 'BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, Hit) == 0x000030, "Member 'BP_DeadEnemy_Base_C_BndEvt__BP_DeadEnemy_Base_DeadBodyMesh_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_DeathBark \ +static_assert(alignof(BP_DeadEnemy_Base_C_DeathBark) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_DeathBark"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_DeathBark) == 0x000040, "Wrong size on BP_DeadEnemy_Base_C_DeathBark"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, InPrompt) == 0x000000, "Member 'BP_DeadEnemy_Base_C_DeathBark::InPrompt' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_DeathBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000010, "Member 'BP_DeadEnemy_Base_C_DeathBark::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, CallFunc_GetOwner_ReturnValue) == 0x000018, "Member 'BP_DeadEnemy_Base_C_DeathBark::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, K2Node_MakeArray_Array) == 0x000020, "Member 'BP_DeadEnemy_Base_C_DeathBark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_DeathBark, K2Node_MakeArray_Array_1) == 0x000030, "Member 'BP_DeadEnemy_Base_C_DeathBark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base \ +static_assert(alignof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base) == 0x000010, "Wrong alignment on BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base) == 0x002570, "Wrong size on BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, EntryPoint) == 0x000000, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_8) == 0x000004, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_7) == 0x00000C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_6) == 0x000024, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x00002C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_5) == 0x00003C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000044, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable) == 0x000054, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable) == 0x00005C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_struct_Variable) == 0x000060, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_struct_Variable_1) == 0x000078, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000090, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0000D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_4) == 0x0000F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_3) == 0x000108, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000110, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_2) == 0x000120, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000128, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_1) == 0x000138, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000140, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName) == 0x000150, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x000158, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable_1) == 0x000168, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000170, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000188, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x0001A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_7) == 0x0001B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_8) == 0x0001D0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_7) == 0x0001E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_class_Variable) == 0x0001F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_6) == 0x0001F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_class_Variable_1) == 0x000200, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_5) == 0x000208, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable) == 0x000210, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_4) == 0x000218, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable_1) == 0x000220, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_3) == 0x000228, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable_2) == 0x000230, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_2) == 0x000238, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable_3) == 0x000240, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded_1) == 0x000248, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable_4) == 0x000250, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Loaded) == 0x000258, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_object_Variable_5) == 0x000260, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_object_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Variable) == 0x000268, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable) == 0x00026C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000280, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_1) == 0x000288, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default) == 0x00028C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_2) == 0x000290, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_9) == 0x000298, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_10) == 0x0002B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_3) == 0x0002C8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable) == 0x0002D0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_1) == 0x0002D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_4) == 0x0002E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_2) == 0x0002E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_3) == 0x0002F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_11) == 0x0002F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_5) == 0x000310, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable_2) == 0x000314, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable_3) == 0x00031C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_6) == 0x000324, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable_4) == 0x000328, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_name_Variable_5) == 0x000330, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_name_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_12) == 0x000338, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_13) == 0x000350, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_14) == 0x000368, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_15) == 0x000380, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_16) == 0x000398, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_17) == 0x0003B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_18) == 0x0003C8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_19) == 0x0003E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_20) == 0x0003F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_21) == 0x000410, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000428, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Has_Been_Initd_Variable) == 0x000430, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_7) == 0x000431, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Loop_Counter_Variable) == 0x000434, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_IntInt_ReturnValue) == 0x000438, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Array_Index_Variable) == 0x00043C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Has_Been_Initd_Variable_1) == 0x000440, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Loop_Counter_Variable_1) == 0x000444, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_IntInt_ReturnValue_1) == 0x000448, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Array_Index_Variable_1) == 0x00044C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_22) == 0x000450, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000468, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_IsClosed_Variable) == 0x000469, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_23) == 0x000470, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Physics_anim_strength) == 0x000488, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Physics_anim_strength' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_Physics_Anim_Time) == 0x000490, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_Physics_Anim_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue) == 0x000498, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue) == 0x0004A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x0004A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0004B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x0004C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0004D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0004E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0004F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess) == 0x000508, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000509, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_24) == 0x000510, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_1) == 0x000528, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000530, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_1) == 0x000538, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000548, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_3) == 0x000550, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAnimInstance_ReturnValue) == 0x000558, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsAnim_BP_Dead_Enemy_USK) == 0x000560, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsAnim_BP_Dead_Enemy_USK' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_1) == 0x000568, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_IsValidTimerHandle_ReturnValue) == 0x000569, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_IsValidTimerHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue) == 0x000570, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeArray_Array) == 0x000578, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeArray_Array_1) == 0x000588, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000598, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SphereOverlapActors_OutActors) == 0x0005B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SphereOverlapActors_ReturnValue) == 0x0005C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Length_ReturnValue) == 0x0005C4, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_2) == 0x0005C8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_3) == 0x0005D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x0005E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetFastExtremity_VelocityAtExtremity) == 0x000600, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetFastExtremity_VelocityAtExtremity' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000608, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue_1) == 0x000610, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_4) == 0x000618, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_4) == 0x000620, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_IsValidTimerHandle_ReturnValue_1) == 0x000624, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_IsValidTimerHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_Damage) == 0x000628, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_DamageType) == 0x000630, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_HitLocation) == 0x000638, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_HitNormal) == 0x000650, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_HitComponent) == 0x000668, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_BoneName) == 0x000670, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_ShotFromDirection) == 0x000678, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_InstigatedBy) == 0x000690, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_DamageCauser) == 0x000698, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Event_HitInfo) == 0x0006A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Event_HitInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000788, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000790, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_5) == 0x000798, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_ImpactDirection_ReturnValue) == 0x0007A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_ImpactDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Killed_By_Player_ReturnValue) == 0x0007B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Killed_By_Player_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0007C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue) == 0x0007E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0007E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue) == 0x0007F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x0007F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_2) == 0x000808, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue) == 0x000809, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00080A, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000810, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_25) == 0x000818, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000830, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_1) == 0x000838, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000840, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000848, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_3) == 0x000858, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000859, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_26) == 0x000860, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_8) == 0x000878, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000880, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000898, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0008B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0008B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_GoreSounds) == 0x0008B9, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_GoreSounds' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0008C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_1) == 0x0008E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x0008E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanAND_ReturnValue) == 0x000908, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_2) == 0x000909, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000910, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_3) == 0x000930, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000938, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsComponentTickEnabled_ReturnValue) == 0x000940, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsComponentTickEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsSimulatingPhysics_ReturnValue) == 0x000941, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsSimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000948, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue) == 0x000950, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000968, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000980, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VLerp_ReturnValue) == 0x000988, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_27) == 0x0009A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0009B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue_1) == 0x0009D0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x0009E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0009F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ComponentBoundEvent_HitComponent) == 0x0009F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ComponentBoundEvent_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ComponentBoundEvent_OtherActor) == 0x000A00, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ComponentBoundEvent_OtherComp) == 0x000A08, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ComponentBoundEvent_NormalImpulse) == 0x000A10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ComponentBoundEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ComponentBoundEvent_Hit) == 0x000A28, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ComponentBoundEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_bBlockingHit) == 0x000B10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_bInitialOverlap) == 0x000B11, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_Time) == 0x000B14, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_Distance) == 0x000B18, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_Location) == 0x000B20, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_ImpactPoint) == 0x000B38, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_Normal) == 0x000B50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_ImpactNormal) == 0x000B68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_PhysMat) == 0x000B80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_HitActor) == 0x000B88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_HitComponent) == 0x000B90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_HitBoneName) == 0x000B98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_BoneName) == 0x000BA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_HitItem) == 0x000BA8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_ElementIndex) == 0x000BAC, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_FaceIndex) == 0x000BB0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_TraceStart) == 0x000BB8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakHitResult_TraceEnd) == 0x000BD0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPhysicsLinearVelocity_ReturnValue_1) == 0x000BE8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPhysicsLinearVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_X) == 0x000C00, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_Y) == 0x000C08, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_Z) == 0x000C10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VSizeSquared_ReturnValue) == 0x000C18, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VSizeSquared_ReturnValue_1) == 0x000C20, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VSizeSquared_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsPawn) == 0x000C28, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_4) == 0x000C30, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000C38, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_ApplyDamageParams) == 0x000C50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_X_1) == 0x000C78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_Y_1) == 0x000C80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakVector_Z_1) == 0x000C88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000C90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000C98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_GameplayEventData) == 0x000CA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000D50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_9) == 0x000D51, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_10) == 0x000D52, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_4) == 0x000D54, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsSimulatingPhysics_ReturnValue_1) == 0x000D64, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsSimulatingPhysics_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_5) == 0x000D68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x000D70, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x000D78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasTag_ReturnValue) == 0x000D79, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue_2) == 0x000D80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPhysicsLinearVelocity_ReturnValue_2) == 0x000D98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPhysicsLinearVelocity_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_NotEqual_ObjectObject_ReturnValue_1) == 0x000DB0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_NotEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VSizeSquared_ReturnValue_2) == 0x000DB8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VSizeSquared_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanAND_ReturnValue_1) == 0x000DC0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000DC1, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_WasFeedKilled_ReturnValue) == 0x000DC2, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_WasFeedKilled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue_2) == 0x000DC8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue_3) == 0x000DD0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_1) == 0x000DD8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000DE0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanOR_ReturnValue) == 0x000DE1, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue_4) == 0x000DE8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Square_ReturnValue_5) == 0x000DF0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Square_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_2) == 0x000DF8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000E00, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanAND_ReturnValue_2) == 0x000E01, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000E02, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetClosestPointOnPhysicsAsset_ClosestWorldPosition) == 0x000E08, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetClosestPointOnPhysicsAsset_ClosestWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetClosestPointOnPhysicsAsset_Normal) == 0x000E20, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetClosestPointOnPhysicsAsset_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetClosestPointOnPhysicsAsset_BoneName) == 0x000E38, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetClosestPointOnPhysicsAsset_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetClosestPointOnPhysicsAsset_Distance) == 0x000E40, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetClosestPointOnPhysicsAsset_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetClosestPointOnPhysicsAsset_ReturnValue) == 0x000E44, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetClosestPointOnPhysicsAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsAnySimulatingPhysics_ReturnValue) == 0x000E45, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsAnySimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x000E48, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_3) == 0x000E58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000E60, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000E68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_4) == 0x000E88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_IsClosed_Variable_1) == 0x000E89, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanOR_ReturnValue_1) == 0x000E8A, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_7) == 0x000E90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Killed_By_Player_ReturnValue_1) == 0x000E98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Killed_By_Player_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_GameplayEventData_1) == 0x000EA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue) == 0x000F50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_6) == 0x000F58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_real_Variable_7) == 0x000F5C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomUnitVector_ReturnValue) == 0x000F60, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000F78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_11) == 0x000F90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_4) == 0x000F94, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralName_ReturnValue) == 0x000F98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000FA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateTimeDilation_Handle) == 0x000FC8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_ImpactDirection_ReturnValue_1) == 0x000FD0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_ImpactDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x000FE8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x001000, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue) == 0x001018, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x001030, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_WrestlerTimeDilationConfig_1) == 0x001038, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_WrestlerTimeDilationConfig_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue_3) == 0x001060, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateTimeDilation_Handle_1) == 0x001078, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateTimeDilation_Handle_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x001080, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x001088, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_2) == 0x001090, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x001098, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_5) == 0x0010B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_5) == 0x0010C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x0010D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_11) == 0x0010E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketTransform_ReturnValue) == 0x001100, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Location) == 0x001160, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Rotation) == 0x001178, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Scale) == 0x001190, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x0011A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1) == 0x0011B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Loop_Counter_Variable_2) == 0x0011B4, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Less_IntInt_ReturnValue) == 0x0011B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_IntInt_ReturnValue_2) == 0x0011BC, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_12) == 0x0011C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketTransform_ReturnValue_1) == 0x0011D0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Location_1) == 0x001230, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Rotation_1) == 0x001248, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Scale_1) == 0x001260, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetForwardVector_ReturnValue) == 0x001278, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x001290, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0012A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_8) == 0x0012C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0012C8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue_4) == 0x0012E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0012F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_8) == 0x001310, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_9) == 0x001328, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_WrestlerTimeDilationConfig_2) == 0x001340, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_WrestlerTimeDilationConfig_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateTimeDilation_Handle_2) == 0x001368, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateTimeDilation_Handle_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_MakeStruct_WrestlerTimeDilationConfig_3) == 0x001370, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_MakeStruct_WrestlerTimeDilationConfig_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateTimeDilation_Handle_3) == 0x001398, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateTimeDilation_Handle_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0013A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x001478, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerPawn_ReturnValue_9) == 0x001550, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerPawn_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x001558, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorRotation_ReturnValue) == 0x001570, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAtLocation_ReturnValue_1) == 0x001588, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomUnitVector_ReturnValue_1) == 0x001590, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_10) == 0x0015A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketTransform_ReturnValue_2) == 0x0015C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Location_2) == 0x001620, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Location_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Rotation_2) == 0x001638, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Rotation_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Scale_2) == 0x001650, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Scale_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_2) == 0x001668, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeTransform_ReturnValue) == 0x001680, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0016E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_13) == 0x0016E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_FinishSpawningActor_ReturnValue) == 0x0016F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x001700, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue_1) == 0x0017E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_AddActorLocalRotation_SweepHitResult) == 0x0017F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_AddActorLocalRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_3) == 0x0018D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Has_Been_Initd_Variable_2) == 0x0018D9, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Has_Been_Initd_Variable_3) == 0x0018DA, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomUnitVector_ReturnValue_2) == 0x0018E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_11) == 0x0018F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_12) == 0x001910, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Not_PreBool_ReturnValue) == 0x001911, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x001918, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanAND_ReturnValue_3) == 0x001930, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BooleanAND_ReturnValue_4) == 0x001931, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue_1) == 0x001938, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x001940, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Vector_Distance_ReturnValue) == 0x001958, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x001960, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x001978, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_12) == 0x001980, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_FClamp_ReturnValue) == 0x001998, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Lerp_ReturnValue) == 0x0019A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeVector_ReturnValue) == 0x0019A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0019C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_13) == 0x0019D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue_2) == 0x0019F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetControlRotation_ReturnValue) == 0x0019F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetForwardVector_ReturnValue_1) == 0x001A10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_14) == 0x001A28, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_14) == 0x001A40, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_15) == 0x001A50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_4) == 0x001A68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_15) == 0x001A80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeTransform_ReturnValue_1) == 0x001A90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_16) == 0x001AF0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftClassReferenceToClass_ReturnValue) == 0x001B00, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftClassReferenceToClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ClassDynamicCast_AsActor) == 0x001B08, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ClassDynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_ClassDynamicCast_bSuccess) == 0x001B10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x001B18, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_17) == 0x001B20, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x001B30, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_4) == 0x001B38, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_AttachToComponent_ReturnValue) == 0x001B39, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x001B40, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_18) == 0x001B48, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsNiagara_System) == 0x001B58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_5) == 0x001B60, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x001B68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x001B70, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsNiagara_System_1) == 0x001B78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsNiagara_System_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_6) == 0x001B80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsNiagara_System_2) == 0x001B88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsNiagara_System_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_7) == 0x001B90, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3) == 0x001B98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4) == 0x001BA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsNiagara_System_3) == 0x001BA8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsNiagara_System_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_8) == 0x001BB0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsNiagara_System_4) == 0x001BB8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsNiagara_System_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_9) == 0x001BC0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6) == 0x001BC8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_HasAnyTags_ReturnValue_6) == 0x001BE8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_HasAnyTags_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_IsClosed_Variable_2) == 0x001BE9, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_13) == 0x001BEA, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeTransform_ReturnValue_2) == 0x001BF0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_2) == 0x001C50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x001C58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_FinishSpawningActor_ReturnValue_2) == 0x001C68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_FinishSpawningActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_5) == 0x001C70, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomIntegerInRange_ReturnValue) == 0x001C80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_delegate_Variable_6) == 0x001C84, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_delegate_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_IsClosed_Variable_3) == 0x001C94, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x001C98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketTransform_ReturnValue_3) == 0x001CA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketTransform_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x001D00, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Location_3) == 0x001D08, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Location_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Rotation_3) == 0x001D20, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Rotation_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_BreakTransform_Scale_3) == 0x001D38, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_BreakTransform_Scale_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAtLocation_ReturnValue_2) == 0x001D50, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAtLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSkeletalMeshComponents_ReturnValue_1) == 0x001D58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSkeletalMeshComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Get_Item) == 0x001D68, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Length_ReturnValue_1) == 0x001D70, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Less_IntInt_ReturnValue_1) == 0x001D74, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue_2) == 0x001D78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue_3) == 0x001D80, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSkeletalMeshComponents_ReturnValue_2) == 0x001D88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSkeletalMeshComponents_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Get_Item_1) == 0x001D98, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Length_ReturnValue_2) == 0x001DA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_5) == 0x001DA4, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Less_IntInt_ReturnValue_2) == 0x001DA5, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue_4) == 0x001DA8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAttached_ReturnValue_5) == 0x001DB0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAttached_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_LessEqual_DoubleDouble_ReturnValue_2) == 0x001DB8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_LessEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetSocketLocation_ReturnValue_5) == 0x001DC0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetSocketLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeGameplayCueParameters_ReturnValue_2) == 0x001DD8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeGameplayCueParameters_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_SpawnSystemAtLocation_ReturnValue_3) == 0x001EB0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_SpawnSystemAtLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetController_ReturnValue) == 0x001EB8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_6) == 0x001EC0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsValid_ReturnValue_7) == 0x001EC1, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorForwardVector_ReturnValue) == 0x001EC8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorRightVector_ReturnValue) == 0x001EE0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_ImpactDirection_ReturnValue_2) == 0x001EF8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_ImpactDirection_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_16) == 0x001F10, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VLerp_ReturnValue_1) == 0x001F28, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VLerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_ImpactDirection_ReturnValue_3) == 0x001F40, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_ImpactDirection_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_17) == 0x001F58, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue_3) == 0x001F70, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_19) == 0x001F78, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x001F88, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_SetTimerDelegate_ReturnValue_1) == 0x001FA0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_SetTimerDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_NegateVector_ReturnValue) == 0x001FA8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_18) == 0x001FC0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_K2_SetTimerDelegate_ReturnValue_2) == 0x001FD8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_K2_SetTimerDelegate_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_5) == 0x001FE0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_19) == 0x001FF8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x002010, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x002018, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsFalling_ReturnValue) == 0x002020, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_IsFalling_ReturnValue_1) == 0x002021, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_6) == 0x002028, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_7) == 0x002030, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeVector_ReturnValue_1) == 0x002038, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MakeVector_ReturnValue_2) == 0x002050, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Has_Been_Initd_Variable_4) == 0x002068, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Has_Been_Initd_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_6) == 0x002070, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x002088, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomBool_ReturnValue) == 0x002090, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x002098, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_28) == 0x0020A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_8) == 0x0020B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_20) == 0x0020C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_29) == 0x0020D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_int_Array_Index_Variable_2) == 0x0020F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_21) == 0x0020F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Array_Get_Item_2) == 0x002110, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_7) == 0x002118, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_AsBP_Dead_Enemy_Base) == 0x002130, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_AsBP_Dead_Enemy_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_DynamicCast_bSuccess_10) == 0x002138, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CustomEvent_NotifyName_9) == 0x00213C, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CustomEvent_NotifyName_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomBool_ReturnValue_1) == 0x002144, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomBool_ReturnValue_2) == 0x002145, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_4) == 0x002148, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_9) == 0x002150, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_30) == 0x002158, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_5) == 0x002170, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_22) == 0x002178, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_31) == 0x002190, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_6) == 0x0021A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_7) == 0x0021B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_RandomFloatInRange_ReturnValue_8) == 0x0021B8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_RandomFloatInRange_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_32) == 0x0021C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_23) == 0x0021D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_14) == 0x0021F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_8) == 0x0021F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_10) == 0x002210, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue_4) == 0x002228, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x002230, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_24) == 0x002248, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_CreateDelegate_OutputDelegate_20) == 0x002260, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_9) == 0x002270, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_33) == 0x002288, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetPlayerController_ReturnValue_5) == 0x0022A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetPlayerController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0022A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetActorRightVector_ReturnValue_1) == 0x0022C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetActorRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_VLerp_ReturnValue_2) == 0x0022D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_VLerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_25) == 0x0022F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_26) == 0x002308, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_27) == 0x002320, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_10) == 0x002338, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_28) == 0x002350, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_11) == 0x002368, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioCharacterComponent_ReturnValue_6) == 0x002380, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioCharacterComponent_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_29) == 0x002388, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioComponent_OutExecBranches) == 0x0023A0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_GetAudioComponent_ReturnValue) == 0x0023A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_30) == 0x0023B0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_11) == 0x0023C8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_SwitchEnum_CmpSuccess) == 0x0023E0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_31) == 0x0023E8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_32) == 0x002400, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_ReturnValue_34) == 0x002418, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_12) == 0x002430, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_33) == 0x002448, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_34) == 0x002460, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_struct_Variable_2) == 0x002478, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_12) == 0x002490, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_35) == 0x0024A8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_35' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_36) == 0x0024C0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_36' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_37) == 0x0024D8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_37' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_2) == 0x0024F0, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_Variable_15) == 0x0024F1, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, K2Node_Select_Default_13) == 0x0024F8, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::K2Node_Select_Default_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Multiply_VectorVector_ReturnValue_38) == 0x002510, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Multiply_VectorVector_ReturnValue_38' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Add_VectorVector_ReturnValue_13) == 0x002528, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Add_VectorVector_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_3) == 0x002540, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_4) == 0x002541, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, Temp_bool_IsClosed_Variable_4) == 0x002542, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::Temp_bool_IsClosed_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_5) == 0x002543, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_MatchesTag_ReturnValue_6) == 0x002544, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_MatchesTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x002548, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x002550, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x002558, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2) == 0x002560, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base, CallFunc_Delay_Duration_ImplicitCast) == 0x002568, "Member 'BP_DeadEnemy_Base_C_ExecuteUbergraph_BP_DeadEnemy_Base::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_GetCharacterAudioComponent \ +static_assert(alignof(BP_DeadEnemy_Base_C_GetCharacterAudioComponent) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_GetCharacterAudioComponent"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_GetCharacterAudioComponent) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_GetCharacterAudioComponent"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetCharacterAudioComponent, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_GetCharacterAudioComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_GetFastExtremity \ +static_assert(alignof(BP_DeadEnemy_Base_C_GetFastExtremity) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_GetFastExtremity"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_GetFastExtremity) == 0x000058, "Wrong size on BP_DeadEnemy_Base_C_GetFastExtremity"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, VelocityAtExtremity) == 0x000000, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::VelocityAtExtremity' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CachedSpeed) == 0x000008, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CachedSpeed' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_Array_Get_Item) == 0x00001C, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_GetBoneLinearVelocity_ReturnValue) == 0x000028, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_GetBoneLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_VSizeSquared_ReturnValue) == 0x000048, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetFastExtremity, CallFunc_FMax_ReturnValue) == 0x000050, "Member 'BP_DeadEnemy_Base_C_GetFastExtremity::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_GetThrowableComponent \ +static_assert(alignof(BP_DeadEnemy_Base_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_HandleClanPerk \ +static_assert(alignof(BP_DeadEnemy_Base_C_HandleClanPerk) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_HandleClanPerk"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_HandleClanPerk) == 0x000020, "Wrong size on BP_DeadEnemy_Base_C_HandleClanPerk"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_Killed_By_Player_ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_Killed_By_Player_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_HasTag_ReturnValue) == 0x000001, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_TryActivatePassive_Result) == 0x000010, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_TryActivatePassive_Result' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000014, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_HasClanPerk_ReturnValue) == 0x00001C, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HandleClanPerk, CallFunc_BooleanAND_ReturnValue) == 0x00001D, "Member 'BP_DeadEnemy_Base_C_HandleClanPerk::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_Hitfreeze \ +static_assert(alignof(BP_DeadEnemy_Base_C_Hitfreeze) == 0x000001, "Wrong alignment on BP_DeadEnemy_Base_C_Hitfreeze"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_Hitfreeze) == 0x000001, "Wrong size on BP_DeadEnemy_Base_C_Hitfreeze"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Hitfreeze, GoreSounds) == 0x000000, "Member 'BP_DeadEnemy_Base_C_Hitfreeze::GoreSounds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_HitFreezeSound \ +static_assert(alignof(BP_DeadEnemy_Base_C_HitFreezeSound) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_HitFreezeSound"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_HitFreezeSound) == 0x000070, "Wrong size on BP_DeadEnemy_Base_C_HitFreezeSound"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, GoreSounds) == 0x000000, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::GoreSounds' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, Vampire) == 0x000001, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::Vampire' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_Killed_By_Player_ReturnValue) == 0x000002, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_Killed_By_Player_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_HasAnyTags_ReturnValue) == 0x000028, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000030, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, Temp_delegate_Variable) == 0x000038, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000048, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, Temp_delegate_Variable_1) == 0x000050, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000060, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_HitFreezeSound, CallFunc_GetAudioCharacterComponent_ReturnValue_3) == 0x000068, "Member 'BP_DeadEnemy_Base_C_HitFreezeSound::CallFunc_GetAudioCharacterComponent_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_ImpactDirection \ +static_assert(alignof(BP_DeadEnemy_Base_C_ImpactDirection) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_ImpactDirection"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_ImpactDirection) == 0x000068, "Wrong size on BP_DeadEnemy_Base_C_ImpactDirection"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ImpactDirection, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_ImpactDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ImpactDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_DeadEnemy_Base_C_ImpactDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ImpactDirection, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'BP_DeadEnemy_Base_C_ImpactDirection::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ImpactDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000038, "Member 'BP_DeadEnemy_Base_C_ImpactDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ImpactDirection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000050, "Member 'BP_DeadEnemy_Base_C_ImpactDirection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_IsThrowable \ +static_assert(alignof(BP_DeadEnemy_Base_C_IsThrowable) == 0x000001, "Wrong alignment on BP_DeadEnemy_Base_C_IsThrowable"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_IsThrowable) == 0x000001, "Wrong size on BP_DeadEnemy_Base_C_IsThrowable"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_Killed_By_Player \ +static_assert(alignof(BP_DeadEnemy_Base_C_Killed_By_Player) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_Killed_By_Player"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_Killed_By_Player) == 0x000018, "Wrong size on BP_DeadEnemy_Base_C_Killed_By_Player"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Killed_By_Player, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_Killed_By_Player::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Killed_By_Player, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_Killed_By_Player::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Killed_By_Player, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000010, "Member 'BP_DeadEnemy_Base_C_Killed_By_Player::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnBlendOut_624559514B9774C5228F5A8A6FAE216A::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnBlendOut_7E2A5589483FB8B37D5CC88CC861C8CD::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnCompleted_624559514B9774C5228F5A8A6FAE216A::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnCompleted_7E2A5589483FB8B37D5CC88CC861C8CD::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnInterrupted_624559514B9774C5228F5A8A6FAE216A::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnInterrupted_7E2A5589483FB8B37D5CC88CC861C8CD::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585 \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_231531A24C41E286C39A91B06A55D585::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_29561800439A182594055B9B9BC185ED::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_356FFF8C4E838B76CCE8A29BA832C34E::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1 \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_614979324D4FBB40F00E76A35BD613C1::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38 \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_793AFA0149A4493FF999DB9EEF0D1A38::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_8364D6F64C89E5483F0FEA9AB4D8439E::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972 \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_9A17A9F149E1A281F01CD39FB80E3972::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7 \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7, Loaded) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnLoaded_E1C68845490543A272A00E9CFA27B0B7::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnNotifyBegin_624559514B9774C5228F5A8A6FAE216A::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnNotifyBegin_7E2A5589483FB8B37D5CC88CC861C8CD::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnNotifyEnd_624559514B9774C5228F5A8A6FAE216A::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD \ +static_assert(alignof(BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000004, "Wrong alignment on BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD) == 0x000008, "Wrong size on BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD, NotifyName) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OnNotifyEnd_7E2A5589483FB8B37D5CC88CC861C8CD::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_OutputRagdollRestDebug \ +static_assert(alignof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_OutputRagdollRestDebug"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug) == 0x000060, "Wrong size on BP_DeadEnemy_Base_C_OutputRagdollRestDebug"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, Spd) == 0x000000, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::Spd' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, Dist) == 0x000008, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::Dist' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Sqrt_ReturnValue) == 0x000010, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Sqrt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000018, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Sqrt_ReturnValue_1) == 0x000028, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Sqrt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Concat_StrStr_ReturnValue) == 0x000030, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Conv_DoubleToString_ReturnValue_1) == 0x000040, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Conv_DoubleToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_OutputRagdollRestDebug, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000050, "Member 'BP_DeadEnemy_Base_C_OutputRagdollRestDebug::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_Ragdoll \ +static_assert(alignof(BP_DeadEnemy_Base_C_Ragdoll) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_Ragdoll"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_Ragdoll) == 0x000010, "Wrong size on BP_DeadEnemy_Base_C_Ragdoll"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Ragdoll, Physics_anim_strength) == 0x000000, "Member 'BP_DeadEnemy_Base_C_Ragdoll::Physics_anim_strength' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Ragdoll, Physics_Anim_Time_0) == 0x000008, "Member 'BP_DeadEnemy_Base_C_Ragdoll::Physics_Anim_Time_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_ReceivePointDamage \ +static_assert(alignof(BP_DeadEnemy_Base_C_ReceivePointDamage) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_ReceivePointDamage"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_ReceivePointDamage) == 0x000160, "Wrong size on BP_DeadEnemy_Base_C_ReceivePointDamage"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, Damage) == 0x000000, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, DamageType) == 0x000008, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, HitLocation) == 0x000010, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, HitNormal) == 0x000028, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, HitComponent) == 0x000040, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, BoneName) == 0x000048, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, ShotFromDirection) == 0x000050, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, InstigatedBy) == 0x000068, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, DamageCauser) == 0x000070, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ReceivePointDamage, HitInfo) == 0x000078, "Member 'BP_DeadEnemy_Base_C_ReceivePointDamage::HitInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_Set_Dissolve \ +static_assert(alignof(BP_DeadEnemy_Base_C_Set_Dissolve) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_Set_Dissolve"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_Set_Dissolve) == 0x0000C8, "Wrong size on BP_DeadEnemy_Base_C_Set_Dissolve"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, Temp_bool_Variable) == 0x000000, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000028, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_HasAnyTags_ReturnValue) == 0x000030, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_HasClanPerk_ReturnValue) == 0x000031, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000038, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_HasAnyTags_ReturnValue_1) == 0x000058, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_HasAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_Killed_By_Player_ReturnValue) == 0x000068, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_Killed_By_Player_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000070, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_BooleanOR_ReturnValue) == 0x000081, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000082, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000088, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_bSuccess_1) == 0x000098, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, Temp_bool_Variable_1) == 0x000099, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00009A, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_BooleanOR_ReturnValue_1) == 0x00009B, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_GetPlayerController_ReturnValue) == 0x0000A0, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0000A8, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, K2Node_DynamicCast_bSuccess_2) == 0x0000B0, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_GetClan_ReturnValue) == 0x0000B8, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000C0, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_Set_Dissolve, CallFunc_BooleanAND_ReturnValue) == 0x0000C1, "Member 'BP_DeadEnemy_Base_C_Set_Dissolve::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_SetRenderDistances \ +static_assert(alignof(BP_DeadEnemy_Base_C_SetRenderDistances) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_SetRenderDistances"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_SetRenderDistances) == 0x000040, "Wrong size on BP_DeadEnemy_Base_C_SetRenderDistances"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, Distance) == 0x000000, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000018, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_Less_IntInt_ReturnValue) == 0x000034, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_SetCullDistance_NewCullDistance_ImplicitCast) == 0x000038, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_SetCullDistance_NewCullDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetRenderDistances, CallFunc_SetCullDistance_NewCullDistance_ImplicitCast_1) == 0x00003C, "Member 'BP_DeadEnemy_Base_C_SetRenderDistances::CallFunc_SetCullDistance_NewCullDistance_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_SetupAmmo \ +static_assert(alignof(BP_DeadEnemy_Base_C_SetupAmmo) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_SetupAmmo"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_SetupAmmo) == 0x000130, "Wrong size on BP_DeadEnemy_Base_C_SetupAmmo"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, K2Node_MakeStruct_GameplayEventData) == 0x000008, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000B8, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_Square_ReturnValue) == 0x0000C0, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0000C8, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_GetSocketLocation_ReturnValue) == 0x0000D0, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000E8, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000100, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000120, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_SetupAmmo, CallFunc_HasAnyTags_ReturnValue) == 0x000129, "Member 'BP_DeadEnemy_Base_C_SetupAmmo::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_ToggleUVGlow \ +static_assert(alignof(BP_DeadEnemy_Base_C_ToggleUVGlow) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_ToggleUVGlow"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_ToggleUVGlow) == 0x000058, "Wrong size on BP_DeadEnemy_Base_C_ToggleUVGlow"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_GetMaterials_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_GetMaterials_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000020, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, K2Node_DynamicCast_AsMaterial_Instance_Dynamic) == 0x000028, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::K2Node_DynamicCast_AsMaterial_Instance_Dynamic' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000038, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, Temp_int_Loop_Counter_Variable) == 0x000044, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_Add_IntInt_ReturnValue) == 0x00004C, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_ToggleUVGlow, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000050, "Member 'BP_DeadEnemy_Base_C_ToggleUVGlow::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_WasFeedKilled \ +static_assert(alignof(BP_DeadEnemy_Base_C_WasFeedKilled) == 0x000008, "Wrong alignment on BP_DeadEnemy_Base_C_WasFeedKilled"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_WasFeedKilled) == 0x000030, "Wrong size on BP_DeadEnemy_Base_C_WasFeedKilled"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_WasFeedKilled, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_WasFeedKilled::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_WasFeedKilled, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_DeadEnemy_Base_C_WasFeedKilled::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_WasFeedKilled, CallFunc_HasAnyTags_ReturnValue) == 0x000028, "Member 'BP_DeadEnemy_Base_C_WasFeedKilled::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DeadEnemy_Base_C_GetTargetType \ +static_assert(alignof(BP_DeadEnemy_Base_C_GetTargetType) == 0x000001, "Wrong alignment on BP_DeadEnemy_Base_C_GetTargetType"); \ +static_assert(sizeof(BP_DeadEnemy_Base_C_GetTargetType) == 0x000001, "Wrong size on BP_DeadEnemy_Base_C_GetTargetType"); \ +static_assert(offsetof(BP_DeadEnemy_Base_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_DeadEnemy_Base_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_DeadEnemy_Base_C \ +static_assert(alignof(ABP_DeadEnemy_Base_C) == 0x000008, "Wrong alignment on ABP_DeadEnemy_Base_C"); \ +static_assert(sizeof(ABP_DeadEnemy_Base_C) == 0x0005C8, "Wrong size on ABP_DeadEnemy_Base_C"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, UberGraphFrame) == 0x0003A0, "Member 'ABP_DeadEnemy_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, BodyGaurd) == 0x0003A8, "Member 'ABP_DeadEnemy_Base_C::BodyGaurd' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, NeckStump_gore) == 0x0003B0, "Member 'ABP_DeadEnemy_Base_C::NeckStump_gore' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, WrestlerModularCharacter) == 0x0003B8, "Member 'ABP_DeadEnemy_Base_C::WrestlerModularCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Slamline_NewTrack_0_3D65003348101ADD371B39A0F1CC4261) == 0x0003C0, "Member 'ABP_DeadEnemy_Base_C::Slamline_NewTrack_0_3D65003348101ADD371B39A0F1CC4261' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Slamline__Direction_3D65003348101ADD371B39A0F1CC4261) == 0x0003C4, "Member 'ABP_DeadEnemy_Base_C::Slamline__Direction_3D65003348101ADD371B39A0F1CC4261' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Slamline) == 0x0003C8, "Member 'ABP_DeadEnemy_Base_C::Slamline' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline_CrackAlpha_3_C9D408FD488E324CFECA89B2BD075145) == 0x0003D0, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline_CrackAlpha_3_C9D408FD488E324CFECA89B2BD075145' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline_CrackAlpha_2_C9D408FD488E324CFECA89B2BD075145) == 0x0003D4, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline_CrackAlpha_2_C9D408FD488E324CFECA89B2BD075145' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline_GlowAlpha_C9D408FD488E324CFECA89B2BD075145) == 0x0003D8, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline_GlowAlpha_C9D408FD488E324CFECA89B2BD075145' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline_CrackAlpha_1_C9D408FD488E324CFECA89B2BD075145) == 0x0003DC, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline_CrackAlpha_1_C9D408FD488E324CFECA89B2BD075145' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline__Direction_C9D408FD488E324CFECA89B2BD075145) == 0x0003E0, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline__Direction_C9D408FD488E324CFECA89B2BD075145' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterTimeline) == 0x0003E8, "Member 'ABP_DeadEnemy_Base_C::ShatterTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, GravBoost_PushAlpha_E11BA3A048E326886FE407AF0F3F8C80) == 0x0003F0, "Member 'ABP_DeadEnemy_Base_C::GravBoost_PushAlpha_E11BA3A048E326886FE407AF0F3F8C80' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, GravBoost_BoostAlpha_E11BA3A048E326886FE407AF0F3F8C80) == 0x0003F4, "Member 'ABP_DeadEnemy_Base_C::GravBoost_BoostAlpha_E11BA3A048E326886FE407AF0F3F8C80' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, GravBoost__Direction_E11BA3A048E326886FE407AF0F3F8C80) == 0x0003F8, "Member 'ABP_DeadEnemy_Base_C::GravBoost__Direction_E11BA3A048E326886FE407AF0F3F8C80' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, GravBoost) == 0x000400, "Member 'ABP_DeadEnemy_Base_C::GravBoost' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Tagchange) == 0x000408, "Member 'ABP_DeadEnemy_Base_C::Tagchange' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RagdollRestDebug) == 0x000418, "Member 'ABP_DeadEnemy_Base_C::RagdollRestDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RestitutionTimerTick) == 0x00041C, "Member 'ABP_DeadEnemy_Base_C::RestitutionTimerTick' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RagdollSettleGraceTime) == 0x000420, "Member 'ABP_DeadEnemy_Base_C::RagdollSettleGraceTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RestVelocityThreshold) == 0x000428, "Member 'ABP_DeadEnemy_Base_C::RestVelocityThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RestDistanceThreshold) == 0x000430, "Member 'ABP_DeadEnemy_Base_C::RestDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ExtremityBoneNames) == 0x000438, "Member 'ABP_DeadEnemy_Base_C::ExtremityBoneNames' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Settled) == 0x000448, "Member 'ABP_DeadEnemy_Base_C::Settled' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RestingSnapshot) == 0x000450, "Member 'ABP_DeadEnemy_Base_C::RestingSnapshot' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ImpactSide) == 0x000488, "Member 'ABP_DeadEnemy_Base_C::ImpactSide' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Physics_Anim_Time) == 0x000490, "Member 'ABP_DeadEnemy_Base_C::Physics_Anim_Time' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, PushForce) == 0x000498, "Member 'ABP_DeadEnemy_Base_C::PushForce' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterOverlay) == 0x0004B0, "Member 'ABP_DeadEnemy_Base_C::ShatterOverlay' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, InMindMaze) == 0x0004B8, "Member 'ABP_DeadEnemy_Base_C::InMindMaze' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, MindMazePhysicsAsset) == 0x0004C0, "Member 'ABP_DeadEnemy_Base_C::MindMazePhysicsAsset' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterOverlayRandom) == 0x0004C8, "Member 'ABP_DeadEnemy_Base_C::ShatterOverlayRandom' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, In_Prompt) == 0x0004CC, "Member 'ABP_DeadEnemy_Base_C::In_Prompt' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, RestitutionEventTimer) == 0x0004D8, "Member 'ABP_DeadEnemy_Base_C::RestitutionEventTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, CachedLocation) == 0x0004E0, "Member 'ABP_DeadEnemy_Base_C::CachedLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShouldDissolve) == 0x0004F8, "Member 'ABP_DeadEnemy_Base_C::ShouldDissolve' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, AcidicTouchVFX) == 0x000500, "Member 'ABP_DeadEnemy_Base_C::AcidicTouchVFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, HeadHealth) == 0x000508, "Member 'ABP_DeadEnemy_Base_C::HeadHealth' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Can_Dissolve) == 0x000510, "Member 'ABP_DeadEnemy_Base_C::Can_Dissolve' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, OblivionCorpse) == 0x000511, "Member 'ABP_DeadEnemy_Base_C::OblivionCorpse' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, LodTick) == 0x000518, "Member 'ABP_DeadEnemy_Base_C::LodTick' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, PocketAmmo) == 0x000520, "Member 'ABP_DeadEnemy_Base_C::PocketAmmo' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, Thrown) == 0x000524, "Member 'ABP_DeadEnemy_Base_C::Thrown' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, AcidSmoke) == 0x000528, "Member 'ABP_DeadEnemy_Base_C::AcidSmoke' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, AcidAsh) == 0x000550, "Member 'ABP_DeadEnemy_Base_C::AcidAsh' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, ShatterSystem) == 0x000578, "Member 'ABP_DeadEnemy_Base_C::ShatterSystem' has a wrong offset!"); \ +static_assert(offsetof(ABP_DeadEnemy_Base_C, GibsClass) == 0x0005A0, "Member 'ABP_DeadEnemy_Base_C::GibsClass' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger \ +static_assert(alignof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger) == 0x000008, "Wrong alignment on GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger"); \ +static_assert(sizeof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger) == 0x000420, "Wrong size on GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, EntryPoint) == 0x000000, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000028, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_BooleanOR_ReturnValue) == 0x000039, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000040, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, Temp_bool_Variable) == 0x000049, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate) == 0x00004C, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_WaitDelay_ReturnValue) == 0x000060, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_1) == 0x000068, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_2) == 0x00007C, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_3) == 0x00008C, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_4) == 0x00009C, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_5) == 0x0000AC, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_WaitDelay_ReturnValue_1) == 0x0000C0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000C8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_IsValid_ReturnValue_2) == 0x0000D0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_Event_bWasCancelled) == 0x0000D1, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_Event_EventData) == 0x0000D8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_MakeStruct_StateTreeEvent) == 0x000188, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0001A8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x0001B0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0001B8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0001C0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0001C8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_DynamicCast_bSuccess) == 0x0001D8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAIController_ReturnValue) == 0x0001E0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0001E8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000200, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000218, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000230, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_6) == 0x000248, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000258, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_RInterpTo_ReturnValue) == 0x000270, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000288, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_BreakRotator_Roll) == 0x000290, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_BreakRotator_Pitch) == 0x000294, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_BreakRotator_Yaw) == 0x000298, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetDialogueInfo_ReturnValue) == 0x0002A0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_MakeRotator_ReturnValue) == 0x0002A8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_MakeArray_Array) == 0x0002C0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0002D0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_MakeArray_Array_1) == 0x0002D8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0002E8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000308, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_7) == 0x00030C, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetMontage_ReturnValue) == 0x000320, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000328, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_IsValid_ReturnValue_3) == 0x000330, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000338, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_CreateDelegate_OutputDelegate_8) == 0x000358, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000368, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000388, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0003A8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x0003B0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, K2Node_DynamicCast_bSuccess_1) == 0x0003B8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_GetEnemyTypeName_ReturnValue) == 0x0003BC, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutOldWeapon) == 0x0003C8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutNewWeapon) == 0x0003D0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Conv_NameToString_ReturnValue) == 0x0003D8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0003E8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue) == 0x0003E9, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue_1) == 0x0003EA, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue_2) == 0x0003EB, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_BooleanOR_ReturnValue_1) == 0x0003EC, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue_3) == 0x0003ED, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue_4) == 0x0003EE, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_Contains_ReturnValue_5) == 0x0003EF, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_Contains_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0003F0, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x0003F1, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutOldWeapon_1) == 0x0003F8, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutOldWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutNewWeapon_1) == 0x000400, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutNewWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutOldWeapon_2) == 0x000408, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutOldWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_ChangeWeapon_OutNewWeapon_2) == 0x000410, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_ChangeWeapon_OutNewWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000418, "Member 'GA_Enemy_Anger_C_ExecuteUbergraph_GA_Enemy_Anger::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Enemy_Anger_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Anger_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Anger_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Anger_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Anger_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Anger_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Anger_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Anger_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Anger_C \ +static_assert(alignof(UGA_Enemy_Anger_C) == 0x000008, "Wrong alignment on UGA_Enemy_Anger_C"); \ +static_assert(sizeof(UGA_Enemy_Anger_C) == 0x0006F8, "Wrong size on UGA_Enemy_Anger_C"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Anger_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, Gameplay_Tags_To_Add) == 0x000670, "Member 'UGA_Enemy_Anger_C::Gameplay_Tags_To_Add' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, StateTreeEvent) == 0x000690, "Member 'UGA_Enemy_Anger_C::StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, In_Prompt) == 0x0006B0, "Member 'UGA_Enemy_Anger_C::In_Prompt' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, WeaponChangeExemption_Tags) == 0x0006B8, "Member 'UGA_Enemy_Anger_C::WeaponChangeExemption_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, Instigator) == 0x0006D8, "Member 'UGA_Enemy_Anger_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, ParticleSystems) == 0x0006E0, "Member 'UGA_Enemy_Anger_C::ParticleSystems' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Anger_C, FragilityEffect) == 0x0006F0, "Member 'UGA_Enemy_Anger_C::FragilityEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_VampireSprint_C_OnActive \ +static_assert(alignof(GC_VampireSprint_C_OnActive) == 0x000008, "Wrong alignment on GC_VampireSprint_C_OnActive"); \ +static_assert(sizeof(GC_VampireSprint_C_OnActive) == 0x000140, "Wrong size on GC_VampireSprint_C_OnActive"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, MyTarget) == 0x000000, "Member 'GC_VampireSprint_C_OnActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, Parameters) == 0x000008, "Member 'GC_VampireSprint_C_OnActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, ReturnValue) == 0x0000E0, "Member 'GC_VampireSprint_C_OnActive::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, Temp_object_Variable) == 0x0000E8, "Member 'GC_VampireSprint_C_OnActive::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x0000F0, "Member 'GC_VampireSprint_C_OnActive::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, K2Node_DynamicCast_bSuccess) == 0x000100, "Member 'GC_VampireSprint_C_OnActive::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000108, "Member 'GC_VampireSprint_C_OnActive::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000110, "Member 'GC_VampireSprint_C_OnActive::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000118, "Member 'GC_VampireSprint_C_OnActive::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_IsValid_ReturnValue) == 0x000120, "Member 'GC_VampireSprint_C_OnActive::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_FindCameraModifierByClass_ReturnValue) == 0x000128, "Member 'GC_VampireSprint_C_OnActive::CallFunc_FindCameraModifierByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_IsValid_ReturnValue_1) == 0x000130, "Member 'GC_VampireSprint_C_OnActive::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActive, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000138, "Member 'GC_VampireSprint_C_OnActive::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_VampireSprint_C_OnActiveAudio \ +static_assert(alignof(GC_VampireSprint_C_OnActiveAudio) == 0x000008, "Wrong alignment on GC_VampireSprint_C_OnActiveAudio"); \ +static_assert(sizeof(GC_VampireSprint_C_OnActiveAudio) == 0x000108, "Wrong size on GC_VampireSprint_C_OnActiveAudio"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActiveAudio, Character) == 0x000000, "Member 'GC_VampireSprint_C_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActiveAudio, AudioComponent) == 0x000008, "Member 'GC_VampireSprint_C_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActiveAudio, Parameters) == 0x000010, "Member 'GC_VampireSprint_C_OnActiveAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActiveAudio, Temp_delegate_Variable) == 0x0000E8, "Member 'GC_VampireSprint_C_OnActiveAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnActiveAudio, Temp_delegate_Variable_1) == 0x0000F8, "Member 'GC_VampireSprint_C_OnActiveAudio::Temp_delegate_Variable_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_VampireSprint_C_OnRemove \ +static_assert(alignof(GC_VampireSprint_C_OnRemove) == 0x000008, "Wrong alignment on GC_VampireSprint_C_OnRemove"); \ +static_assert(sizeof(GC_VampireSprint_C_OnRemove) == 0x000108, "Wrong size on GC_VampireSprint_C_OnRemove"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, MyTarget) == 0x000000, "Member 'GC_VampireSprint_C_OnRemove::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, Parameters) == 0x000008, "Member 'GC_VampireSprint_C_OnRemove::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, ReturnValue) == 0x0000E0, "Member 'GC_VampireSprint_C_OnRemove::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000E8, "Member 'GC_VampireSprint_C_OnRemove::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, CallFunc_IsValid_ReturnValue) == 0x0000F0, "Member 'GC_VampireSprint_C_OnRemove::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, CallFunc_FindCameraModifierByClass_ReturnValue) == 0x0000F8, "Member 'GC_VampireSprint_C_OnRemove::CallFunc_FindCameraModifierByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemove, CallFunc_IsValid_ReturnValue_1) == 0x000100, "Member 'GC_VampireSprint_C_OnRemove::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_VampireSprint_C_OnRemoveAudio \ +static_assert(alignof(GC_VampireSprint_C_OnRemoveAudio) == 0x000008, "Wrong alignment on GC_VampireSprint_C_OnRemoveAudio"); \ +static_assert(sizeof(GC_VampireSprint_C_OnRemoveAudio) == 0x000100, "Wrong size on GC_VampireSprint_C_OnRemoveAudio"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemoveAudio, Character) == 0x000000, "Member 'GC_VampireSprint_C_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'GC_VampireSprint_C_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemoveAudio, Parameters) == 0x000010, "Member 'GC_VampireSprint_C_OnRemoveAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemoveAudio, CallFunc_IsValid_ReturnValue) == 0x0000E8, "Member 'GC_VampireSprint_C_OnRemoveAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_VampireSprint_C_OnRemoveAudio, Temp_delegate_Variable) == 0x0000EC, "Member 'GC_VampireSprint_C_OnRemoveAudio::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_VampireSprint_C \ +static_assert(alignof(AGC_VampireSprint_C) == 0x000008, "Wrong alignment on AGC_VampireSprint_C"); \ +static_assert(sizeof(AGC_VampireSprint_C) == 0x000320, "Wrong size on AGC_VampireSprint_C"); \ +static_assert(offsetof(AGC_VampireSprint_C, DefaultSceneRoot) == 0x000308, "Member 'AGC_VampireSprint_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_VampireSprint_C, PB_Player_Vampire_Sprint) == 0x000310, "Member 'AGC_VampireSprint_C::PB_Player_Vampire_Sprint' has a wrong offset!"); \ +static_assert(offsetof(AGC_VampireSprint_C, FX) == 0x000318, "Member 'AGC_VampireSprint_C::FX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_DebugCamera_C_ToggleSecondaryViewport \ +static_assert(alignof(BPI_DebugCamera_C_ToggleSecondaryViewport) == 0x000001, "Wrong alignment on BPI_DebugCamera_C_ToggleSecondaryViewport"); \ +static_assert(sizeof(BPI_DebugCamera_C_ToggleSecondaryViewport) == 0x000001, "Wrong size on BPI_DebugCamera_C_ToggleSecondaryViewport"); \ +static_assert(offsetof(BPI_DebugCamera_C_ToggleSecondaryViewport, bEnable) == 0x000000, "Member 'BPI_DebugCamera_C_ToggleSecondaryViewport::bEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_DebugCamera_C_ToggleThirdPerson \ +static_assert(alignof(BPI_DebugCamera_C_ToggleThirdPerson) == 0x000001, "Wrong alignment on BPI_DebugCamera_C_ToggleThirdPerson"); \ +static_assert(sizeof(BPI_DebugCamera_C_ToggleThirdPerson) == 0x000001, "Wrong size on BPI_DebugCamera_C_ToggleThirdPerson"); \ +static_assert(offsetof(BPI_DebugCamera_C_ToggleThirdPerson, bThirdPerson) == 0x000000, "Member 'BPI_DebugCamera_C_ToggleThirdPerson::bThirdPerson' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_DebugCamera_C \ +static_assert(alignof(IBPI_DebugCamera_C) == 0x000001, "Wrong alignment on IBPI_DebugCamera_C"); \ +static_assert(sizeof(IBPI_DebugCamera_C) == 0x000001, "Wrong size on IBPI_DebugCamera_C"); \ + +#define DUMPER7_ASSERTS_WBP_ClanSelect_DisciplineSlot_C_SetFontSize \ +static_assert(alignof(WBP_ClanSelect_DisciplineSlot_C_SetFontSize) == 0x000008, "Wrong alignment on WBP_ClanSelect_DisciplineSlot_C_SetFontSize"); \ +static_assert(sizeof(WBP_ClanSelect_DisciplineSlot_C_SetFontSize) == 0x000068, "Wrong size on WBP_ClanSelect_DisciplineSlot_C_SetFontSize"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetFontSize, InSize) == 0x000000, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetFontSize::InSize' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetFontSize, K2Node_MakeStruct_SlateFontInfo) == 0x000008, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetFontSize::K2Node_MakeStruct_SlateFontInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetFontSize, K2Node_MakeStruct_Size_ImplicitCast) == 0x000060, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetFontSize::K2Node_MakeStruct_Size_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals \ +static_assert(alignof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals) == 0x000008, "Wrong alignment on WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals"); \ +static_assert(sizeof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals) == 0x000038, "Wrong size on WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, InDiscipline) == 0x000000, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::InDiscipline' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, Discipline_0) == 0x000001, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::Discipline_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, Temp_bool_Variable) == 0x000002, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, Temp_byte_Variable) == 0x000003, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, Temp_byte_Variable_1) == 0x000004, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, K2Node_Select_Default) == 0x000005, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, CallFunc_Map_Find_Value) == 0x000008, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, CallFunc_Map_Find_Value_1) == 0x000028, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals, CallFunc_Map_Find_ReturnValue_1) == 0x000030, "Member 'WBP_ClanSelect_DisciplineSlot_C_SetDisciplineVisuals::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ClanSelect_DisciplineSlot_C \ +static_assert(alignof(UWBP_ClanSelect_DisciplineSlot_C) == 0x000008, "Wrong alignment on UWBP_ClanSelect_DisciplineSlot_C"); \ +static_assert(sizeof(UWBP_ClanSelect_DisciplineSlot_C) == 0x000410, "Wrong size on UWBP_ClanSelect_DisciplineSlot_C"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Bg) == 0x000330, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Bg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Border) == 0x000338, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Border' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Icon) == 0x000340, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Icon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Name_0) == 0x000348, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Name_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Outline) == 0x000350, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Outline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Texture) == 0x000358, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Texture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, Discipline) == 0x000360, "Member 'UWBP_ClanSelect_DisciplineSlot_C::Discipline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, DisciplineTextures) == 0x000368, "Member 'UWBP_ClanSelect_DisciplineSlot_C::DisciplineTextures' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, DisciplineNames) == 0x0003B8, "Member 'UWBP_ClanSelect_DisciplineSlot_C::DisciplineNames' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ClanSelect_DisciplineSlot_C, bShowDisciplineName) == 0x000408, "Member 'UWBP_ClanSelect_DisciplineSlot_C::bShowDisciplineName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_BlueprintModifyCamera \ +static_assert(alignof(CM_JoystickLookAssist_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_JoystickLookAssist_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_BlueprintModifyCamera) == 0x000668, "Wrong size on CM_JoystickLookAssist_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetViewTarget_ReturnValue) == 0x000078, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetViewTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_AsWrestler_Character) == 0x000088, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetIsInDialogue_self_CastInput) == 0x000098, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetIsInDialogue_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetIsInDialogue_ReturnValue) == 0x0000A8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetIsInDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetIsInCutscene_self_CastInput) == 0x0000B0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetIsInCutscene_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetIsInCutscene_ReturnValue) == 0x0000C0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BooleanOR_ReturnValue) == 0x0000C1, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x0000C2, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000C8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000D0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess_1) == 0x0000E0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000E1, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Not_PreBool_ReturnValue) == 0x0000E2, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetForwardVector_ReturnValue) == 0x0000E8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetForwardVector_ReturnValue_1) == 0x000100, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetPlayerDeltaSeconds_ReturnValue) == 0x000118, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetPlayerDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000120, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000128, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_MakeArray_Array) == 0x000130, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_MakeArray_Array_1) == 0x000140, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000150, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000168, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue) == 0x000180, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000198, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LineTraceSingle_OutHit) == 0x0001B0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LineTraceSingle_ReturnValue) == 0x000298, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0002A0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0002B8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_bBlockingHit) == 0x0002D0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002D1, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Time) == 0x0002D4, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Distance) == 0x0002D8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Location) == 0x0002E0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ImpactPoint) == 0x0002F8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Normal) == 0x000310, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ImpactNormal) == 0x000328, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_PhysMat) == 0x000340, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitActor) == 0x000348, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitComponent) == 0x000350, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitBoneName) == 0x000358, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_BoneName) == 0x000360, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitItem) == 0x000368, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ElementIndex) == 0x00036C, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_FaceIndex) == 0x000370, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_TraceStart) == 0x000378, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_TraceEnd) == 0x000390, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, Temp_bool_Variable) == 0x0003A8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x0003B0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess_2) == 0x0003B8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0003C0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0003D0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LookAssistFromDistance_Assist_Value) == 0x0003D8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LookAssistFromDistance_Assist_Value' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0003E0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0003F8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000410, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_SphereTraceSingle_OutHit) == 0x000428, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_SphereTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_SphereTraceSingle_ReturnValue) == 0x000510, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_SphereTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_RInterpTo_ReturnValue) == 0x000518, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_bBlockingHit_1) == 0x000530, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x000531, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Time_1) == 0x000534, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Distance_1) == 0x000538, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Location_1) == 0x000540, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000558, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_Normal_1) == 0x000570, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000588, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_PhysMat_1) == 0x0005A0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitActor_1) == 0x0005A8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitComponent_1) == 0x0005B0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitBoneName_1) == 0x0005B8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_BoneName_1) == 0x0005C0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_HitItem_1) == 0x0005C8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_ElementIndex_1) == 0x0005CC, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_FaceIndex_1) == 0x0005D0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_TraceStart_1) == 0x0005D8, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BreakHitResult_TraceEnd_1) == 0x0005F0, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetPlayerController_ReturnValue) == 0x000608, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x000610, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess_3) == 0x000618, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000620, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000628, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000638, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_IsInputMethodActive_ReturnValue) == 0x000639, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_BooleanAND_ReturnValue) == 0x00063A, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LookAssistFromDistance_Assist_Value_1) == 0x000640, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LookAssistFromDistance_Assist_Value_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_Lerp_ReturnValue) == 0x000648, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000650, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_SphereTraceSingle_Radius_ImplicitCast) == 0x000654, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_SphereTraceSingle_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LookAssistFromDistance_Distance_ImplicitCast) == 0x000658, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LookAssistFromDistance_Distance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_BlueprintModifyCamera, CallFunc_LookAssistFromDistance_Distance_ImplicitCast_1) == 0x000660, "Member 'CM_JoystickLookAssist_C_BlueprintModifyCamera::CallFunc_LookAssistFromDistance_Distance_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist \ +static_assert(alignof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist) == 0x000008, "Wrong alignment on CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist) == 0x000048, "Wrong size on CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, EntryPoint) == 0x000000, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_GetDeprecatedInputPitchScale_ReturnValue) == 0x000014, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_GetDeprecatedInputPitchScale_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_GetDeprecatedInputYawScale_ReturnValue) == 0x000018, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_GetDeprecatedInputYawScale_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_MakeVector2D_ReturnValue) == 0x000020, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, Temp_bool_IsClosed_Variable) == 0x000030, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_MakeVector2D_Y_ImplicitCast) == 0x000038, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_MakeVector2D_Y_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist, CallFunc_MakeVector2D_X_ImplicitCast) == 0x000040, "Member 'CM_JoystickLookAssist_C_ExecuteUbergraph_CM_JoystickLookAssist::CallFunc_MakeVector2D_X_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_GetCamSocket \ +static_assert(alignof(CM_JoystickLookAssist_C_GetCamSocket) == 0x000010, "Wrong alignment on CM_JoystickLookAssist_C_GetCamSocket"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_GetCamSocket) == 0x0000F0, "Wrong size on CM_JoystickLookAssist_C_GetCamSocket"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, Location) == 0x000000, "Member 'CM_JoystickLookAssist_C_GetCamSocket::Location' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, Rotation) == 0x000018, "Member 'CM_JoystickLookAssist_C_GetCamSocket::Rotation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000030, "Member 'CM_JoystickLookAssist_C_GetCamSocket::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, CallFunc_GetSocketTransform_ReturnValue) == 0x000040, "Member 'CM_JoystickLookAssist_C_GetCamSocket::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, CallFunc_BreakTransform_Location) == 0x0000A0, "Member 'CM_JoystickLookAssist_C_GetCamSocket::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, CallFunc_BreakTransform_Rotation) == 0x0000B8, "Member 'CM_JoystickLookAssist_C_GetCamSocket::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetCamSocket, CallFunc_BreakTransform_Scale) == 0x0000D0, "Member 'CM_JoystickLookAssist_C_GetCamSocket::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_GetPlayerDeltaSeconds \ +static_assert(alignof(CM_JoystickLookAssist_C_GetPlayerDeltaSeconds) == 0x000008, "Wrong alignment on CM_JoystickLookAssist_C_GetPlayerDeltaSeconds"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_GetPlayerDeltaSeconds) == 0x000018, "Wrong size on CM_JoystickLookAssist_C_GetPlayerDeltaSeconds"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetPlayerDeltaSeconds, ReturnValue) == 0x000000, "Member 'CM_JoystickLookAssist_C_GetPlayerDeltaSeconds::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetPlayerDeltaSeconds, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000008, "Member 'CM_JoystickLookAssist_C_GetPlayerDeltaSeconds::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_GetPlayerDeltaSeconds, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000010, "Member 'CM_JoystickLookAssist_C_GetPlayerDeltaSeconds::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_LookAssistFromDistance \ +static_assert(alignof(CM_JoystickLookAssist_C_LookAssistFromDistance) == 0x000008, "Wrong alignment on CM_JoystickLookAssist_C_LookAssistFromDistance"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_LookAssistFromDistance) == 0x000028, "Wrong size on CM_JoystickLookAssist_C_LookAssistFromDistance"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_LookAssistFromDistance, Distance) == 0x000000, "Member 'CM_JoystickLookAssist_C_LookAssistFromDistance::Distance' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_LookAssistFromDistance, Assist_Value) == 0x000008, "Member 'CM_JoystickLookAssist_C_LookAssistFromDistance::Assist_Value' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_LookAssistFromDistance, CallFunc_NormalizeToRange_ReturnValue) == 0x000010, "Member 'CM_JoystickLookAssist_C_LookAssistFromDistance::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_LookAssistFromDistance, CallFunc_FClamp_ReturnValue) == 0x000018, "Member 'CM_JoystickLookAssist_C_LookAssistFromDistance::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_LookAssistFromDistance, CallFunc_Lerp_ReturnValue) == 0x000020, "Member 'CM_JoystickLookAssist_C_LookAssistFromDistance::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_JoystickLookAssist_C_SetLookrateMultiplier \ +static_assert(alignof(CM_JoystickLookAssist_C_SetLookrateMultiplier) == 0x000008, "Wrong alignment on CM_JoystickLookAssist_C_SetLookrateMultiplier"); \ +static_assert(sizeof(CM_JoystickLookAssist_C_SetLookrateMultiplier) == 0x0000A0, "Wrong size on CM_JoystickLookAssist_C_SetLookrateMultiplier"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, Multiplier) == 0x000000, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::Multiplier' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_GetPlayerDeltaSeconds_ReturnValue) == 0x000008, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_GetPlayerDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Lerp_ReturnValue) == 0x000010, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_MakeVector2D_ReturnValue) == 0x000018, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_GetPlayerController_ReturnValue) == 0x000028, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x000030, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000040, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_BreakVector2D_X) == 0x000050, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_BreakVector2D_Y) == 0x000058, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_GetInputAnalogStickState_StickX) == 0x000060, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_GetInputAnalogStickState_StickX' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_GetInputAnalogStickState_StickY) == 0x000064, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_GetInputAnalogStickState_StickY' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Abs_ReturnValue) == 0x000068, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Abs_ReturnValue_1) == 0x000070, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_FMax_ReturnValue) == 0x000078, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000080, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_SetDeprecatedInputYawScale_NewValue_ImplicitCast) == 0x000088, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_SetDeprecatedInputYawScale_NewValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_SetDeprecatedInputPitchScale_NewValue_ImplicitCast) == 0x00008C, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_SetDeprecatedInputPitchScale_NewValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Abs_A_ImplicitCast) == 0x000090, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_JoystickLookAssist_C_SetLookrateMultiplier, CallFunc_Abs_A_ImplicitCast_1) == 0x000098, "Member 'CM_JoystickLookAssist_C_SetLookrateMultiplier::CallFunc_Abs_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_JoystickLookAssist_C \ +static_assert(alignof(UCM_JoystickLookAssist_C) == 0x000008, "Wrong alignment on UCM_JoystickLookAssist_C"); \ +static_assert(sizeof(UCM_JoystickLookAssist_C) == 0x000138, "Wrong size on UCM_JoystickLookAssist_C"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, UberGraphFrame) == 0x0000A0, "Member 'UCM_JoystickLookAssist_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, LookAssistStrength) == 0x0000A8, "Member 'UCM_JoystickLookAssist_C::LookAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, Base_Input_Scale) == 0x0000B0, "Member 'UCM_JoystickLookAssist_C::Base_Input_Scale' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, LookAssistEngageSpeed) == 0x0000C0, "Member 'UCM_JoystickLookAssist_C::LookAssistEngageSpeed' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, FinalCamRotation) == 0x0000C8, "Member 'UCM_JoystickLookAssist_C::FinalCamRotation' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, Base_Location) == 0x0000E0, "Member 'UCM_JoystickLookAssist_C::Base_Location' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, Base_Rotation) == 0x0000F8, "Member 'UCM_JoystickLookAssist_C::Base_Rotation' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, LookAssistTargetFar) == 0x000110, "Member 'UCM_JoystickLookAssist_C::LookAssistTargetFar' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, LookAssistTargetClose) == 0x000118, "Member 'UCM_JoystickLookAssist_C::LookAssistTargetClose' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, LookAssistRadius) == 0x000120, "Member 'UCM_JoystickLookAssist_C::LookAssistRadius' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, InCutscene) == 0x000128, "Member 'UCM_JoystickLookAssist_C::InCutscene' has a wrong offset!"); \ +static_assert(offsetof(UCM_JoystickLookAssist_C, MenuBool) == 0x000130, "Member 'UCM_JoystickLookAssist_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_CombatLensing_C_BlueprintModifyCamera \ +static_assert(alignof(CM_CombatLensing_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_CombatLensing_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_CombatLensing_C_BlueprintModifyCamera) == 0x000180, "Wrong size on CM_CombatLensing_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetPlayerDeltaSeconds__) == 0x000078, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetPlayerDeltaSeconds__' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetPlayerDeltaSeconds___1) == 0x000080, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetPlayerDeltaSeconds___1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_real_Variable) == 0x000088, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetViewTarget_ReturnValue) == 0x000090, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetViewTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_IsValid_ReturnValue) == 0x000098, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_DynamicCast_AsWrestler_Character) == 0x0000A0, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess) == 0x0000A8, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetIsInDialogue_self_CastInput) == 0x0000B0, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetIsInDialogue_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetIsInDialogue_ReturnValue) == 0x0000C0, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetIsInDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetIsInCutscene_self_CastInput) == 0x0000C8, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetIsInCutscene_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetIsInCutscene_ReturnValue) == 0x0000D8, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_IsInCombat_self_CastInput) == 0x0000E0, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_IsInCombat_ReturnValue) == 0x0000F0, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_BooleanOR_ReturnValue) == 0x0000F1, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_real_Variable_1) == 0x0000F8, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000100, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_bool_Variable) == 0x000101, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_bool_Variable_1) == 0x000102, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000108, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_Select_Default) == 0x000110, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_bool_Variable_2) == 0x000118, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_MapRangeClamped_ReturnValue) == 0x000120, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_Select_Default_1) == 0x000128, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, Temp_bool_Variable_3) == 0x000130, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_Select_Default_2) == 0x000138, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_Clamped_Bias_Range_Out) == 0x000140, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_Clamped_Bias_Range_Out' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_Select_Default_3) == 0x000148, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue) == 0x000150, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_Clamped_Bias_Range_Out_1) == 0x000158, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_Clamped_Bias_Range_Out_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_FInterpTo_ReturnValue_1) == 0x000160, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000168, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x000170, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_SetUpscalePaniniD_InValue_ImplicitCast) == 0x000174, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_SetUpscalePaniniD_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x000178, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_BlueprintModifyCamera, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast_1) == 0x00017C, "Member 'CM_CombatLensing_C_BlueprintModifyCamera::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_CombatLensing_C_Clamped_Bias_Range \ +static_assert(alignof(CM_CombatLensing_C_Clamped_Bias_Range) == 0x000008, "Wrong alignment on CM_CombatLensing_C_Clamped_Bias_Range"); \ +static_assert(sizeof(CM_CombatLensing_C_Clamped_Bias_Range) == 0x000058, "Wrong size on CM_CombatLensing_C_Clamped_Bias_Range"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, Value) == 0x000000, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::Value' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, Min) == 0x000008, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::Min' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, Max) == 0x000010, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::Max' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, Bias) == 0x000018, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::Bias' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, Out) == 0x000020, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::Out' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000028, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_Abs_ReturnValue) == 0x000030, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000038, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000048, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_Clamped_Bias_Range, CallFunc_MapRangeClamped_ReturnValue) == 0x000050, "Member 'CM_CombatLensing_C_Clamped_Bias_Range::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_CombatLensing_C_GetPlayerDeltaSeconds \ +static_assert(alignof(CM_CombatLensing_C_GetPlayerDeltaSeconds) == 0x000008, "Wrong alignment on CM_CombatLensing_C_GetPlayerDeltaSeconds"); \ +static_assert(sizeof(CM_CombatLensing_C_GetPlayerDeltaSeconds) == 0x000028, "Wrong size on CM_CombatLensing_C_GetPlayerDeltaSeconds"); \ +static_assert(offsetof(CM_CombatLensing_C_GetPlayerDeltaSeconds, _) == 0x000000, "Member 'CM_CombatLensing_C_GetPlayerDeltaSeconds::_' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_GetPlayerDeltaSeconds, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'CM_CombatLensing_C_GetPlayerDeltaSeconds::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_GetPlayerDeltaSeconds, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000010, "Member 'CM_CombatLensing_C_GetPlayerDeltaSeconds::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_GetPlayerDeltaSeconds, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'CM_CombatLensing_C_GetPlayerDeltaSeconds::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_CombatLensing_C_GetPlayerDeltaSeconds, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'CM_CombatLensing_C_GetPlayerDeltaSeconds::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_CombatLensing_C \ +static_assert(alignof(UCM_CombatLensing_C) == 0x000008, "Wrong alignment on UCM_CombatLensing_C"); \ +static_assert(sizeof(UCM_CombatLensing_C) == 0x0000F0, "Wrong size on UCM_CombatLensing_C"); \ +static_assert(offsetof(UCM_CombatLensing_C, In_Combat) == 0x0000A0, "Member 'UCM_CombatLensing_C::In_Combat' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, CombatFOVBoost) == 0x0000A8, "Member 'UCM_CombatLensing_C::CombatFOVBoost' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, FinalFOVBoost) == 0x0000B0, "Member 'UCM_CombatLensing_C::FinalFOVBoost' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, FOVInterpSpeedUp) == 0x0000B8, "Member 'UCM_CombatLensing_C::FOVInterpSpeedUp' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, FOVInterpSpeedDown) == 0x0000C0, "Member 'UCM_CombatLensing_C::FOVInterpSpeedDown' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, LensDistortionBoost) == 0x0000C8, "Member 'UCM_CombatLensing_C::LensDistortionBoost' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, FinalLensDistortionBoost) == 0x0000D0, "Member 'UCM_CombatLensing_C::FinalLensDistortionBoost' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, InCutscene) == 0x0000D8, "Member 'UCM_CombatLensing_C::InCutscene' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, InterpBias) == 0x0000E0, "Member 'UCM_CombatLensing_C::InterpBias' has a wrong offset!"); \ +static_assert(offsetof(UCM_CombatLensing_C, MenuBool) == 0x0000E8, "Member 'UCM_CombatLensing_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter \ +static_assert(alignof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter) == 0x0000D0, "Wrong size on WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, EntryPoint) == 0x000000, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, K2Node_CustomEvent_CurrentValue) == 0x000040, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, K2Node_CustomEvent_MaxValue) == 0x000044, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000048, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000060, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000068, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000070, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000078, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000080, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000088, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000090, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1) == 0x000098, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x0000A0, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x0000A8, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, K2Node_VariableSet_DelayBarTarget_ImplicitCast) == 0x0000B0, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::K2Node_VariableSet_DelayBarTarget_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0000B8, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000C0, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter, CallFunc_SetPercent_InPercent_ImplicitCast_1) == 0x0000C8, "Member 'WBP_BossHealthMeter_C_ExecuteUbergraph_WBP_BossHealthMeter::CallFunc_SetPercent_InPercent_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_OnStunChanged_Event \ +static_assert(alignof(WBP_BossHealthMeter_C_OnStunChanged_Event) == 0x000004, "Wrong alignment on WBP_BossHealthMeter_C_OnStunChanged_Event"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_OnStunChanged_Event) == 0x000008, "Wrong size on WBP_BossHealthMeter_C_OnStunChanged_Event"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_OnStunChanged_Event, CurrentValue) == 0x000000, "Member 'WBP_BossHealthMeter_C_OnStunChanged_Event::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_OnStunChanged_Event, MaxValue) == 0x000004, "Member 'WBP_BossHealthMeter_C_OnStunChanged_Event::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_ReplenishHealth \ +static_assert(alignof(WBP_BossHealthMeter_C_ReplenishHealth) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_ReplenishHealth"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_ReplenishHealth) == 0x000010, "Wrong size on WBP_BossHealthMeter_C_ReplenishHealth"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ReplenishHealth, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_BossHealthMeter_C_ReplenishHealth::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_ReplenishHealth, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000008, "Member 'WBP_BossHealthMeter_C_ReplenishHealth::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_SetupHealthbar \ +static_assert(alignof(WBP_BossHealthMeter_C_SetupHealthbar) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_SetupHealthbar"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_SetupHealthbar) == 0x000070, "Wrong size on WBP_BossHealthMeter_C_SetupHealthbar"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, NewMaxHealth) == 0x000000, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::NewMaxHealth' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, BossName_0) == 0x000008, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::BossName_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000020, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000028, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_MakeVector2D_ReturnValue) == 0x000038, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000050, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, K2Node_MakeStruct_Margin) == 0x000058, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::K2Node_MakeStruct_Margin' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_SetupHealthbar, K2Node_MakeStruct_Right_ImplicitCast) == 0x000068, "Member 'WBP_BossHealthMeter_C_SetupHealthbar::K2Node_MakeStruct_Right_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_Tick \ +static_assert(alignof(WBP_BossHealthMeter_C_Tick) == 0x000004, "Wrong alignment on WBP_BossHealthMeter_C_Tick"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_Tick) == 0x00003C, "Wrong size on WBP_BossHealthMeter_C_Tick"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_BossHealthMeter_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_BossHealthMeter_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_TriggerFeedAnim \ +static_assert(alignof(WBP_BossHealthMeter_C_TriggerFeedAnim) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_TriggerFeedAnim"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_TriggerFeedAnim) == 0x000028, "Wrong size on WBP_BossHealthMeter_C_TriggerFeedAnim"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_TriggerFeedAnim, CanRevertFeed) == 0x000000, "Member 'WBP_BossHealthMeter_C_TriggerFeedAnim::CanRevertFeed' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_TriggerFeedAnim, CallFunc_PlayAnimationForward_ReturnValue) == 0x000008, "Member 'WBP_BossHealthMeter_C_TriggerFeedAnim::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_TriggerFeedAnim, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000010, "Member 'WBP_BossHealthMeter_C_TriggerFeedAnim::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_TriggerFeedAnim, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000018, "Member 'WBP_BossHealthMeter_C_TriggerFeedAnim::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_TriggerFeedAnim, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000020, "Member 'WBP_BossHealthMeter_C_TriggerFeedAnim::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_UpdateHealth \ +static_assert(alignof(WBP_BossHealthMeter_C_UpdateHealth) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_UpdateHealth"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_UpdateHealth) == 0x000018, "Wrong size on WBP_BossHealthMeter_C_UpdateHealth"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdateHealth, CurrentHealth) == 0x000000, "Member 'WBP_BossHealthMeter_C_UpdateHealth::CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdateHealth, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000008, "Member 'WBP_BossHealthMeter_C_UpdateHealth::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdateHealth, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000010, "Member 'WBP_BossHealthMeter_C_UpdateHealth::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BossHealthMeter_C_UpdatePhaseIndicator \ +static_assert(alignof(WBP_BossHealthMeter_C_UpdatePhaseIndicator) == 0x000008, "Wrong alignment on WBP_BossHealthMeter_C_UpdatePhaseIndicator"); \ +static_assert(sizeof(WBP_BossHealthMeter_C_UpdatePhaseIndicator) == 0x000018, "Wrong size on WBP_BossHealthMeter_C_UpdatePhaseIndicator"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdatePhaseIndicator, InPhaseTag) == 0x000000, "Member 'WBP_BossHealthMeter_C_UpdatePhaseIndicator::InPhaseTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdatePhaseIndicator, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000008, "Member 'WBP_BossHealthMeter_C_UpdatePhaseIndicator::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_BossHealthMeter_C_UpdatePhaseIndicator, CallFunc_PlayAnimation_ReturnValue) == 0x000010, "Member 'WBP_BossHealthMeter_C_UpdatePhaseIndicator::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BossHealthMeter_C \ +static_assert(alignof(UWBP_BossHealthMeter_C) == 0x000008, "Wrong alignment on UWBP_BossHealthMeter_C"); \ +static_assert(sizeof(UWBP_BossHealthMeter_C) == 0x000410, "Wrong size on UWBP_BossHealthMeter_C"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, UberGraphFrame) == 0x000330, "Member 'UWBP_BossHealthMeter_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, OnPhaseChangedAnim) == 0x000338, "Member 'UWBP_BossHealthMeter_C::OnPhaseChangedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, FeedToDefaultAnim) == 0x000340, "Member 'UWBP_BossHealthMeter_C::FeedToDefaultAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, DefaultToFeedAnim) == 0x000348, "Member 'UWBP_BossHealthMeter_C::DefaultToFeedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, BossName) == 0x000350, "Member 'UWBP_BossHealthMeter_C::BossName' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, CanvasPanel_36) == 0x000358, "Member 'UWBP_BossHealthMeter_C::CanvasPanel_36' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, HealthBar) == 0x000360, "Member 'UWBP_BossHealthMeter_C::HealthBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, HealthBar_Delayed) == 0x000368, "Member 'UWBP_BossHealthMeter_C::HealthBar_Delayed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Image_195) == 0x000370, "Member 'UWBP_BossHealthMeter_C::Image_195' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Image_657) == 0x000378, "Member 'UWBP_BossHealthMeter_C::Image_657' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, LeftPattern) == 0x000380, "Member 'UWBP_BossHealthMeter_C::LeftPattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Overlay_0) == 0x000388, "Member 'UWBP_BossHealthMeter_C::Overlay_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Overlay_326) == 0x000390, "Member 'UWBP_BossHealthMeter_C::Overlay_326' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Phase1) == 0x000398, "Member 'UWBP_BossHealthMeter_C::Phase1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Phase2) == 0x0003A0, "Member 'UWBP_BossHealthMeter_C::Phase2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Phase3) == 0x0003A8, "Member 'UWBP_BossHealthMeter_C::Phase3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, RightPattern) == 0x0003B0, "Member 'UWBP_BossHealthMeter_C::RightPattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Health) == 0x0003B8, "Member 'UWBP_BossHealthMeter_C::Health' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, MaxHealth) == 0x0003C0, "Member 'UWBP_BossHealthMeter_C::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, TargetHealth) == 0x0003C8, "Member 'UWBP_BossHealthMeter_C::TargetHealth' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, EnableTick) == 0x0003D0, "Member 'UWBP_BossHealthMeter_C::EnableTick' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, PhaseTag) == 0x0003D4, "Member 'UWBP_BossHealthMeter_C::PhaseTag' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, BossNameText) == 0x0003E0, "Member 'UWBP_BossHealthMeter_C::BossNameText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, Stun_Threshold) == 0x0003F8, "Member 'UWBP_BossHealthMeter_C::Stun_Threshold' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, DelayBarTarget) == 0x000400, "Member 'UWBP_BossHealthMeter_C::DelayBarTarget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BossHealthMeter_C, CanFeedAnim) == 0x000408, "Member 'UWBP_BossHealthMeter_C::CanFeedAnim' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TargetIndicator_C_CalculateIndicatorLocation \ +static_assert(alignof(WBP_TargetIndicator_C_CalculateIndicatorLocation) == 0x000008, "Wrong alignment on WBP_TargetIndicator_C_CalculateIndicatorLocation"); \ +static_assert(sizeof(WBP_TargetIndicator_C_CalculateIndicatorLocation) == 0x0000D0, "Wrong size on WBP_TargetIndicator_C_CalculateIndicatorLocation"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, Geometry) == 0x000000, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::Geometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, Target) == 0x000038, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::Target' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, ViewportPosition) == 0x000040, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::ViewportPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000050, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x000068, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_MakeVector_ReturnValue) == 0x000080, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_GetOwningPlayer_ReturnValue) == 0x000098, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A0, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition) == 0x0000B8, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_ProjectWorldLocationToWidgetPosition_ScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_CalculateIndicatorLocation, CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue) == 0x0000C8, "Member 'WBP_TargetIndicator_C_CalculateIndicatorLocation::CallFunc_ProjectWorldLocationToWidgetPosition_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator \ +static_assert(alignof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator) == 0x000008, "Wrong alignment on WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator"); \ +static_assert(sizeof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator) == 0x000088, "Wrong size on WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, EntryPoint) == 0x000000, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000040, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_bReturnValue) == 0x000048, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_Target) == 0x000050, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_Target' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_bReturnValue_1) == 0x000058, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_bReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_Target_1) == 0x000060, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_Target_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_bReturnValue_2) == 0x000068, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_bReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_GetControllerTarget_Target_2) == 0x000070, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_GetControllerTarget_Target_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator, CallFunc_CalculateIndicatorLocation_ViewportPosition) == 0x000078, "Member 'WBP_TargetIndicator_C_ExecuteUbergraph_WBP_TargetIndicator::CallFunc_CalculateIndicatorLocation_ViewportPosition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TargetIndicator_C_GetControllerTarget \ +static_assert(alignof(WBP_TargetIndicator_C_GetControllerTarget) == 0x000008, "Wrong alignment on WBP_TargetIndicator_C_GetControllerTarget"); \ +static_assert(sizeof(WBP_TargetIndicator_C_GetControllerTarget) == 0x000038, "Wrong size on WBP_TargetIndicator_C_GetControllerTarget"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, bReturnValue) == 0x000000, "Member 'WBP_TargetIndicator_C_GetControllerTarget::bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, Target) == 0x000008, "Member 'WBP_TargetIndicator_C_GetControllerTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, CallFunc_GetOwningPlayer_ReturnValue) == 0x000010, "Member 'WBP_TargetIndicator_C_GetControllerTarget::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface) == 0x000018, "Member 'WBP_TargetIndicator_C_GetControllerTarget::K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'WBP_TargetIndicator_C_GetControllerTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, CallFunc_IsCurrentlyTargeting_bOutIsTargeting) == 0x000029, "Member 'WBP_TargetIndicator_C_GetControllerTarget::CallFunc_IsCurrentlyTargeting_bOutIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_GetControllerTarget, CallFunc_IsCurrentlyTargeting_OutCurrentTarget) == 0x000030, "Member 'WBP_TargetIndicator_C_GetControllerTarget::CallFunc_IsCurrentlyTargeting_OutCurrentTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TargetIndicator_C_Tick \ +static_assert(alignof(WBP_TargetIndicator_C_Tick) == 0x000004, "Wrong alignment on WBP_TargetIndicator_C_Tick"); \ +static_assert(sizeof(WBP_TargetIndicator_C_Tick) == 0x00003C, "Wrong size on WBP_TargetIndicator_C_Tick"); \ +static_assert(offsetof(WBP_TargetIndicator_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_TargetIndicator_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_TargetIndicator_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility \ +static_assert(alignof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility) == 0x000008, "Wrong alignment on WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility"); \ +static_assert(sizeof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility) == 0x000018, "Wrong size on WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility, NewVisibility) == 0x000000, "Member 'WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility::NewVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000001, "Member 'WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000008, "Member 'WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility, CallFunc_PlayAnimationForward_ReturnValue) == 0x000010, "Member 'WBP_TargetIndicator_C_ToggleTargetIndicatorVisibility::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TargetIndicator_C \ +static_assert(alignof(UWBP_TargetIndicator_C) == 0x000008, "Wrong alignment on UWBP_TargetIndicator_C"); \ +static_assert(sizeof(UWBP_TargetIndicator_C) == 0x0002F8, "Wrong size on UWBP_TargetIndicator_C"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_TargetIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, Appear) == 0x0002C8, "Member 'UWBP_TargetIndicator_C::Appear' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, IndicatorBorder) == 0x0002D0, "Member 'UWBP_TargetIndicator_C::IndicatorBorder' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, IndicatorIcon) == 0x0002D8, "Member 'UWBP_TargetIndicator_C::IndicatorIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, IndicatorIcon_Shadow) == 0x0002E0, "Member 'UWBP_TargetIndicator_C::IndicatorIcon_Shadow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, bIndicatorVisible) == 0x0002E8, "Member 'UWBP_TargetIndicator_C::bIndicatorVisible' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TargetIndicator_C, EyeHeightOffset) == 0x0002F0, "Member 'UWBP_TargetIndicator_C::EyeHeightOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah \ +static_assert(alignof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah) == 0x000008, "Wrong alignment on GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah"); \ +static_assert(sizeof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah) == 0x0001C8, "Wrong size on GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, EntryPoint) == 0x000000, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, Temp_delegate_Variable) == 0x000004, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, Temp_delegate_Variable_1) == 0x000014, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_WaitDelay_ReturnValue) == 0x000028, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_K2_CommitAbility_ReturnValue) == 0x000031, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetPlayerState_ReturnValue) == 0x000038, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000040, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000050, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_UpdateConsumable_ReturnValue) == 0x000058, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000060, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_MakeStruct_GameplayEventData) == 0x000070, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_SetDuration_ReturnValue) == 0x000120, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_SetDuration_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_Event_bWasCancelled) == 0x000130, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x000134, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000140, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_WaitDelay_ReturnValue_1) == 0x000148, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_IsValid_ReturnValue_1) == 0x000150, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_CreateDelegate_OutputDelegate) == 0x000154, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetProperty_ReturnValue) == 0x000164, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, Temp_int_Variable) == 0x000168, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_Add_IntInt_ReturnValue) == 0x00016C, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_IsPlayerFabien_Return) == 0x000170, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_Not_PreBool_ReturnValue) == 0x000171, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_BooleanAND_ReturnValue) == 0x000172, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, K2Node_CreateDelegate_OutputDelegate_1) == 0x000174, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000188, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAudioCharacterComponent_self_CastInput) == 0x000190, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAudioCharacterComponent_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0001A0, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0001A8, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAudioCharacterComponent_self_CastInput_1) == 0x0001B0, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAudioCharacterComponent_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x0001C0, "Member 'GA_ElixirBrujah_C_ExecuteUbergraph_GA_ElixirBrujah::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBrujah_C_K2_OnEndAbility \ +static_assert(alignof(GA_ElixirBrujah_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_ElixirBrujah_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_ElixirBrujah_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_ElixirBrujah_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_ElixirBrujah_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ElixirBrujah_C_K2_CanActivateAbility \ +static_assert(alignof(GA_ElixirBrujah_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_ElixirBrujah_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_ElixirBrujah_C_K2_CanActivateAbility) == 0x000108, "Wrong size on GA_ElixirBrujah_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, Temp_byte_Variable) == 0x000080, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000088, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000098, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000099, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000A0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetPlayerController_ReturnValue) == 0x0000A8, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000B0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000C0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x0000C8, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetPlayerState_ReturnValue) == 0x0000D0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_IsInputMethodActive_ReturnValue) == 0x0000D8, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0000E0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000E8, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000E9, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x0000EA, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_Map_Find_Value) == 0x0000F0, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_Map_Find_ReturnValue) == 0x0000F8, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_GetProperty_ReturnValue) == 0x0000FC, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_Greater_IntInt_ReturnValue) == 0x000100, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000101, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ElixirBrujah_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x000102, "Member 'GA_ElixirBrujah_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_ElixirBrujah_C \ +static_assert(alignof(UGA_ElixirBrujah_C) == 0x000008, "Wrong alignment on UGA_ElixirBrujah_C"); \ +static_assert(sizeof(UGA_ElixirBrujah_C) == 0x000698, "Wrong size on UGA_ElixirBrujah_C"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, UberGraphFrame) == 0x000668, "Member 'UGA_ElixirBrujah_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, Gameplay_Cue_Tag) == 0x000670, "Member 'UGA_ElixirBrujah_C::Gameplay_Cue_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, Duration) == 0x000678, "Member 'UGA_ElixirBrujah_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, Effect) == 0x00067C, "Member 'UGA_ElixirBrujah_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, BrujahCounter) == 0x000688, "Member 'UGA_ElixirBrujah_C::BrujahCounter' has a wrong offset!"); \ +static_assert(offsetof(UGA_ElixirBrujah_C, PB_ABL_Brujah_Passive) == 0x000690, "Member 'UGA_ElixirBrujah_C::PB_ABL_Brujah_Passive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8 \ +static_assert(alignof(WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8) == 0x0000B0, "Wrong size on WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8, Payload) == 0x000000, "Member 'WBP_InteractionPrompt_C_EventReceived_7993FDF74E7DE5617E3547B7440D66E8::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F \ +static_assert(alignof(WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F) == 0x0000B0, "Wrong size on WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F, Payload) == 0x000000, "Member 'WBP_InteractionPrompt_C_EventReceived_CEF45C1E450123A4731051AA6B26EF9F::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt \ +static_assert(alignof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt) == 0x000430, "Wrong size on WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, EntryPoint) == 0x000000, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, Temp_struct_Variable) == 0x000008, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000C8, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000D0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_Payload) == 0x0000E0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, Temp_struct_Variable_1) == 0x000190, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, Temp_bool_IsClosed_Variable) == 0x000240, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, Temp_bool_Has_Been_Initd_Variable) == 0x000241, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_WrestlerInteractionTarget_2) == 0x000248, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_WrestlerInteractionTarget_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_ShouldShowPrompt_1) == 0x000258, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_ShouldShowPrompt_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_PlayAnimation_ReturnValue) == 0x000260, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_PlayAnimation_ReturnValue_1) == 0x000268, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_PlayAnimation_ReturnValue_2) == 0x000270, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x000278, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000280, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_IsValid_ReturnValue) == 0x000288, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000289, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_Payload_1) == 0x000290, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_GetOwningPlayerPawn_ReturnValue_1) == 0x000340, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_GetOwningPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_K2_IsTimerActiveHandle_ReturnValue) == 0x000348, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_K2_IsTimerActiveHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000350, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_K2_GetTimerElapsedTimeHandle_ReturnValue) == 0x000358, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_K2_GetTimerElapsedTimeHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000360, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_SelectFloat_ReturnValue) == 0x000368, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_IsValid_ReturnValue_1) == 0x000370, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_WrestlerInteractionTarget_1) == 0x000378, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_WrestlerInteractionTarget_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_WrestlerInteractionTarget) == 0x000388, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_WrestlerInteractionTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CustomEvent_ShouldShowPrompt) == 0x000398, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CustomEvent_ShouldShowPrompt' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_DynamicCast_AsWrestler_Actor_Interaction_Interface) == 0x0003A0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_DynamicCast_AsWrestler_Actor_Interaction_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_DynamicCast_bSuccess) == 0x0003B0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_IsValid_ReturnValue_2) == 0x0003B1, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_GetInteractableData_ReturnValue) == 0x0003B8, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_GetInteractableData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_CanInteract_ReturnValue) == 0x0003D0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_IsAnimationPlaying_ReturnValue) == 0x0003D1, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_SelectFloat_ReturnValue_1) == 0x0003D8, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_IsValid_ReturnValue_3) == 0x0003E0, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_GetInteractionContext_ReturnValue) == 0x0003E8, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_GetInteractionContext_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_PlayAnimation_ReturnValue_3) == 0x000400, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, K2Node_CreateDelegate_OutputDelegate_2) == 0x000408, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000418, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000420, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000428, "Member 'WBP_InteractionPrompt_C_ExecuteUbergraph_WBP_InteractionPrompt::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_UpdateInteractable \ +static_assert(alignof(WBP_InteractionPrompt_C_UpdateInteractable) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_UpdateInteractable"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_UpdateInteractable) == 0x000010, "Wrong size on WBP_InteractionPrompt_C_UpdateInteractable"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_UpdateInteractable, WrestlerInteractionTarget) == 0x000000, "Member 'WBP_InteractionPrompt_C_UpdateInteractable::WrestlerInteractionTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_UpdateInteraction \ +static_assert(alignof(WBP_InteractionPrompt_C_UpdateInteraction) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_UpdateInteraction"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_UpdateInteraction) == 0x000018, "Wrong size on WBP_InteractionPrompt_C_UpdateInteraction"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_UpdateInteraction, WrestlerInteractionTarget) == 0x000000, "Member 'WBP_InteractionPrompt_C_UpdateInteraction::WrestlerInteractionTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_UpdateInteraction, ShouldShowPrompt) == 0x000010, "Member 'WBP_InteractionPrompt_C_UpdateInteraction::ShouldShowPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionPrompt_C_UpdatePrompt \ +static_assert(alignof(WBP_InteractionPrompt_C_UpdatePrompt) == 0x000008, "Wrong alignment on WBP_InteractionPrompt_C_UpdatePrompt"); \ +static_assert(sizeof(WBP_InteractionPrompt_C_UpdatePrompt) == 0x000018, "Wrong size on WBP_InteractionPrompt_C_UpdatePrompt"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_UpdatePrompt, WrestlerInteractionTarget) == 0x000000, "Member 'WBP_InteractionPrompt_C_UpdatePrompt::WrestlerInteractionTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionPrompt_C_UpdatePrompt, ShouldShowPrompt) == 0x000010, "Member 'WBP_InteractionPrompt_C_UpdatePrompt::ShouldShowPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_InteractionPrompt_C \ +static_assert(alignof(UWBP_InteractionPrompt_C) == 0x000008, "Wrong alignment on UWBP_InteractionPrompt_C"); \ +static_assert(sizeof(UWBP_InteractionPrompt_C) == 0x000338, "Wrong size on UWBP_InteractionPrompt_C"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_InteractionPrompt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, OnInteract) == 0x0002D0, "Member 'UWBP_InteractionPrompt_C::OnInteract' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, OnHide) == 0x0002D8, "Member 'UWBP_InteractionPrompt_C::OnHide' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, OnShow) == 0x0002E0, "Member 'UWBP_InteractionPrompt_C::OnShow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, ContextText) == 0x0002E8, "Member 'UWBP_InteractionPrompt_C::ContextText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Lock) == 0x0002F0, "Member 'UWBP_InteractionPrompt_C::Lock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Prompt) == 0x0002F8, "Member 'UWBP_InteractionPrompt_C::Prompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, WrestlerActionWidget_78) == 0x000300, "Member 'UWBP_InteractionPrompt_C::WrestlerActionWidget_78' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Interaction) == 0x000308, "Member 'UWBP_InteractionPrompt_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Input_Type) == 0x000309, "Member 'UWBP_InteractionPrompt_C::Input_Type' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, PCProgressMaterial) == 0x000310, "Member 'UWBP_InteractionPrompt_C::PCProgressMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, ConsoleProgressMaterial) == 0x000318, "Member 'UWBP_InteractionPrompt_C::ConsoleProgressMaterial' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Event_Magnitude) == 0x000320, "Member 'UWBP_InteractionPrompt_C::Event_Magnitude' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, HoldTimer) == 0x000328, "Member 'UWBP_InteractionPrompt_C::HoldTimer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionPrompt_C, Hidden) == 0x000330, "Member 'UWBP_InteractionPrompt_C::Hidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent \ +static_assert(alignof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent) == 0x000008, "Wrong alignment on BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent"); \ +static_assert(sizeof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent) == 0x000088, "Wrong size on BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, EntryPoint) == 0x000000, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_Event_DeltaSeconds) == 0x000008, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_DynamicCast_AsWrestler_Character) == 0x000018, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_IsCharacterStuck_ReturnValue) == 0x000034, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_IsCharacterStuck_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000038, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_GetOwner_ReturnValue_1) == 0x000040, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_K2_IsValidTimerHandle_ReturnValue) == 0x000048, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_K2_IsValidTimerHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, Temp_bool_IsClosed_Variable) == 0x000049, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_K2_IsValidTimerHandle_ReturnValue_1) == 0x00004A, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_K2_IsValidTimerHandle_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_GetOwner_ReturnValue_2) == 0x000050, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_DynamicCast_AsWrestler_Character_1) == 0x000058, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_DynamicCast_AsWrestler_Character_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, K2Node_DynamicCast_bSuccess_1) == 0x000060, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, Temp_delegate_Variable) == 0x000064, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000078, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent, CallFunc_K2_SetTimerDelegate_Time_ImplicitCast) == 0x000080, "Member 'BP_StuckActorComponent_C_ExecuteUbergraph_BP_StuckActorComponent::CallFunc_K2_SetTimerDelegate_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StuckActorComponent_C_IsCharacterStuck \ +static_assert(alignof(BP_StuckActorComponent_C_IsCharacterStuck) == 0x000008, "Wrong alignment on BP_StuckActorComponent_C_IsCharacterStuck"); \ +static_assert(sizeof(BP_StuckActorComponent_C_IsCharacterStuck) == 0x000030, "Wrong size on BP_StuckActorComponent_C_IsCharacterStuck"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, WrestlerCharacter) == 0x000000, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::WrestlerCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, ReturnValue) == 0x000008, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_GetWrestlerMovementComponent_ReturnValue) == 0x000010, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_GetWrestlerMovementComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000018, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_BooleanAND_ReturnValue) == 0x000019, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_NotEqual_ByteByte_ReturnValue_1) == 0x00001A, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_NotEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_Not_PreBool_ReturnValue) == 0x00001B, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_NotEqual_ByteByte_ReturnValue_2) == 0x00001C, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_NotEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_BooleanAND_ReturnValue_1) == 0x00001D, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_VSizeSquared_ReturnValue) == 0x000020, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_BooleanAND_ReturnValue_2) == 0x000028, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000029, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_BooleanAND_ReturnValue_3) == 0x00002A, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_StuckActorComponent_C_IsCharacterStuck, CallFunc_BooleanAND_ReturnValue_4) == 0x00002B, "Member 'BP_StuckActorComponent_C_IsCharacterStuck::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StuckActorComponent_C_ReceiveTick \ +static_assert(alignof(BP_StuckActorComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_StuckActorComponent_C_ReceiveTick"); \ +static_assert(sizeof(BP_StuckActorComponent_C_ReceiveTick) == 0x000004, "Wrong size on BP_StuckActorComponent_C_ReceiveTick"); \ +static_assert(offsetof(BP_StuckActorComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_StuckActorComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_StuckActorComponent_C \ +static_assert(alignof(UBP_StuckActorComponent_C) == 0x000008, "Wrong alignment on UBP_StuckActorComponent_C"); \ +static_assert(sizeof(UBP_StuckActorComponent_C) == 0x0000B8, "Wrong size on UBP_StuckActorComponent_C"); \ +static_assert(offsetof(UBP_StuckActorComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UBP_StuckActorComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_StuckActorComponent_C, ResetTime) == 0x0000A8, "Member 'UBP_StuckActorComponent_C::ResetTime' has a wrong offset!"); \ +static_assert(offsetof(UBP_StuckActorComponent_C, ResetTimerHandle) == 0x0000B0, "Member 'UBP_StuckActorComponent_C::ResetTimerHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature \ +static_assert(alignof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature) == 0x000118, "Wrong size on BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, HitComponent) == 0x000000, "Member 'BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, NormalImpulse) == 0x000018, "Member 'BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature, Hit) == 0x000030, "Member 'BP_Enemy_Throwable_C_BndEvt__BP_Grenade_StaticMeshComponent_K2Node_ComponentBoundEvent_0_ComponentHitSignature__DelegateSignature::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_CustomImpact \ +static_assert(alignof(BP_Enemy_Throwable_C_CustomImpact) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_C_CustomImpact"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_CustomImpact) == 0x000008, "Wrong size on BP_Enemy_Throwable_C_CustomImpact"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_CustomImpact, Actor) == 0x000000, "Member 'BP_Enemy_Throwable_C_CustomImpact::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable \ +static_assert(alignof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable) == 0x000360, "Wrong size on BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, EntryPoint) == 0x000000, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, Temp_bool_Variable) == 0x000014, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_ComponentBoundEvent_HitComponent) == 0x000018, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_ComponentBoundEvent_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_ComponentBoundEvent_OtherActor) == 0x000020, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_ComponentBoundEvent_OtherComp) == 0x000028, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_ComponentBoundEvent_NormalImpulse) == 0x000030, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_ComponentBoundEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_ComponentBoundEvent_Hit) == 0x000048, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_ComponentBoundEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_Not_PreBool_ReturnValue) == 0x000130, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000138, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_MakeStruct_GameplayEventData) == 0x000158, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_MakeStruct_ApplyDamageParams) == 0x000208, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x000230, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_RandomFloatInRange_ReturnValue) == 0x000248, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_MakeVector_ReturnValue) == 0x000250, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPhysicsAngularVelocityInDegrees_ReturnValue) == 0x000268, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPhysicsAngularVelocityInDegrees_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, Temp_bool_IsClosed_Variable) == 0x000280, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000288, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0002A0, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0002B8, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0002D0, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPlayerController_ReturnValue) == 0x0002E8, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_K2_GetPawn_ReturnValue) == 0x0002F0, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_K2_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_CustomEvent_actor) == 0x0002F8, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_CustomEvent_actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000300, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPlayerController_ReturnValue_1) == 0x000308, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_BooleanAND_ReturnValue) == 0x000310, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_K2_GetPawn_ReturnValue_1) == 0x000318, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_K2_GetPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_CustomEvent_TKTargetType) == 0x000320, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_CustomEvent_TKTargetType' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000321, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPlayerPawn_ReturnValue) == 0x000328, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000330, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000338, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, K2Node_DynamicCast_bSuccess) == 0x000348, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000350, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000358, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_IsValid_ReturnValue) == 0x000359, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, CallFunc_IsValid_ReturnValue_1) == 0x00035A, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable, Temp_bool_Has_Been_Initd_Variable) == 0x00035B, "Member 'BP_Enemy_Throwable_C_ExecuteUbergraph_BP_Enemy_Throwable::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_GetDataAsset \ +static_assert(alignof(BP_Enemy_Throwable_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_C_GetDataAsset"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_GetDataAsset) == 0x000008, "Wrong size on BP_Enemy_Throwable_C_GetDataAsset"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Enemy_Throwable_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_OverrideTargetType \ +static_assert(alignof(BP_Enemy_Throwable_C_OverrideTargetType) == 0x000001, "Wrong alignment on BP_Enemy_Throwable_C_OverrideTargetType"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_OverrideTargetType) == 0x000001, "Wrong size on BP_Enemy_Throwable_C_OverrideTargetType"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_OverrideTargetType, TKTargetType) == 0x000000, "Member 'BP_Enemy_Throwable_C_OverrideTargetType::TKTargetType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_C_UserConstructionScript \ +static_assert(alignof(BP_Enemy_Throwable_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Enemy_Throwable_C_UserConstructionScript) == 0x000010, "Wrong size on BP_Enemy_Throwable_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_UserConstructionScript, CallFunc_Array_Random_OutItem) == 0x000000, "Member 'BP_Enemy_Throwable_C_UserConstructionScript::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_UserConstructionScript, CallFunc_Array_Random_OutIndex) == 0x000008, "Member 'BP_Enemy_Throwable_C_UserConstructionScript::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_C_UserConstructionScript, CallFunc_SetStaticMesh_ReturnValue) == 0x00000C, "Member 'BP_Enemy_Throwable_C_UserConstructionScript::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Enemy_Throwable_C \ +static_assert(alignof(ABP_Enemy_Throwable_C) == 0x000008, "Wrong alignment on ABP_Enemy_Throwable_C"); \ +static_assert(sizeof(ABP_Enemy_Throwable_C) == 0x000398, "Wrong size on ABP_Enemy_Throwable_C"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, UberGraphFrame_BP_Enemy_Throwable_C) == 0x000318, "Member 'ABP_Enemy_Throwable_C::UberGraphFrame_BP_Enemy_Throwable_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, DamagedPlayer) == 0x000320, "Member 'ABP_Enemy_Throwable_C::DamagedPlayer' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, ReactionEventTag) == 0x000324, "Member 'ABP_Enemy_Throwable_C::ReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, SelectMesh) == 0x00032C, "Member 'ABP_Enemy_Throwable_C::SelectMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, OptionalMeshes) == 0x000330, "Member 'ABP_Enemy_Throwable_C::OptionalMeshes' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, ThrowVelocity) == 0x000340, "Member 'ABP_Enemy_Throwable_C::ThrowVelocity' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, PhysicsLinearVelocityMultiplier) == 0x000358, "Member 'ABP_Enemy_Throwable_C::PhysicsLinearVelocityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, PhysicsAngularVelocityMultiplier) == 0x000360, "Member 'ABP_Enemy_Throwable_C::PhysicsAngularVelocityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, IsThrown) == 0x000368, "Member 'ABP_Enemy_Throwable_C::IsThrown' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, Pulled) == 0x000370, "Member 'ABP_Enemy_Throwable_C::Pulled' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, Impact) == 0x000380, "Member 'ABP_Enemy_Throwable_C::Impact' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, Impact_Damage) == 0x000390, "Member 'ABP_Enemy_Throwable_C::Impact_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_C, Voided) == 0x000394, "Member 'ABP_Enemy_Throwable_C::Voided' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets \ +static_assert(alignof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets) == 0x000008, "Wrong alignment on BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets"); \ +static_assert(sizeof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets) == 0x000080, "Wrong size on BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, EntryPoint) == 0x000000, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_Abs_ReturnValue) == 0x000008, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_RandomFloatInRange_ReturnValue) == 0x000010, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_MakeVector_ReturnValue) == 0x000030, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000048, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, CallFunc_GetVectorArrayAverage_ReturnValue) == 0x000060, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::CallFunc_GetVectorArrayAverage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets, K2Node_Event_DeltaSeconds) == 0x000078, "Member 'BP_BloodCurse_Giblets_C_ExecuteUbergraph_BP_BloodCurse_Giblets::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BloodCurse_Giblets_C_ReceiveTick \ +static_assert(alignof(BP_BloodCurse_Giblets_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_BloodCurse_Giblets_C_ReceiveTick"); \ +static_assert(sizeof(BP_BloodCurse_Giblets_C_ReceiveTick) == 0x000004, "Wrong size on BP_BloodCurse_Giblets_C_ReceiveTick"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_BloodCurse_Giblets_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BloodCurse_Giblets_C_UserConstructionScript \ +static_assert(alignof(BP_BloodCurse_Giblets_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_BloodCurse_Giblets_C_UserConstructionScript"); \ +static_assert(sizeof(BP_BloodCurse_Giblets_C_UserConstructionScript) == 0x000088, "Wrong size on BP_BloodCurse_Giblets_C_UserConstructionScript"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000000, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000018, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, CallFunc_K2_GetComponentLocation_ReturnValue_2) == 0x000030, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::CallFunc_K2_GetComponentLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, CallFunc_K2_GetComponentLocation_ReturnValue_3) == 0x000048, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::CallFunc_K2_GetComponentLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, CallFunc_K2_GetComponentLocation_ReturnValue_4) == 0x000060, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::CallFunc_K2_GetComponentLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_BloodCurse_Giblets_C_UserConstructionScript, K2Node_MakeArray_Array) == 0x000078, "Member 'BP_BloodCurse_Giblets_C_UserConstructionScript::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BloodCurse_Giblets_C \ +static_assert(alignof(ABP_BloodCurse_Giblets_C) == 0x000008, "Wrong alignment on ABP_BloodCurse_Giblets_C"); \ +static_assert(sizeof(ABP_BloodCurse_Giblets_C) == 0x0002F0, "Wrong size on ABP_BloodCurse_Giblets_C"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, UberGraphFrame) == 0x000298, "Member 'ABP_BloodCurse_Giblets_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh5) == 0x0002A0, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh5' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh4) == 0x0002A8, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh4' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh3) == 0x0002B0, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh3' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh2) == 0x0002B8, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh2' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh) == 0x0002C0, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, StaticMesh1) == 0x0002C8, "Member 'ABP_BloodCurse_Giblets_C::StaticMesh1' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, MeshLocations) == 0x0002D0, "Member 'ABP_BloodCurse_Giblets_C::MeshLocations' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, Attach_to_component) == 0x0002E0, "Member 'ABP_BloodCurse_Giblets_C::Attach_to_component' has a wrong offset!"); \ +static_assert(offsetof(ABP_BloodCurse_Giblets_C, AttachedVFX) == 0x0002E8, "Member 'ABP_BloodCurse_Giblets_C::AttachedVFX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GE_BlockTargeting_0__UGE_BlockTargeting_C \ +static_assert(alignof(GE_BlockTargeting_0::UGE_BlockTargeting_C) == 0x000008, "Wrong alignment on GE_BlockTargeting_0::UGE_BlockTargeting_C"); \ +static_assert(sizeof(GE_BlockTargeting_0::UGE_BlockTargeting_C) == 0x000A70, "Wrong size on GE_BlockTargeting_0::UGE_BlockTargeting_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5 \ +static_assert(alignof(GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5, EventTag) == 0x000000, "Member 'GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5, EventData) == 0x000008, "Member 'GA_EnemyThrow_Object_C_EventReceived_42416ABA413CB572628CB9898D56D8F5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object \ +static_assert(alignof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object) == 0x000010, "Wrong alignment on GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object) == 0x000620, "Wrong size on GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, EntryPoint) == 0x000000, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_ThrowPoint_ReturnValue) == 0x000008, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_ThrowPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_MakeTransform_ReturnValue) == 0x000020, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventTag_3) == 0x000080, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventData_3) == 0x000088, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CreateDelegate_OutputDelegate) == 0x000138, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventTag_2) == 0x000148, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventData_2) == 0x000150, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CreateDelegate_OutputDelegate_1) == 0x000200, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventTag_1) == 0x000210, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventData_1) == 0x000218, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CreateDelegate_OutputDelegate_2) == 0x0002C8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventTag) == 0x0002D8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventData) == 0x0002E0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CreateDelegate_OutputDelegate_3) == 0x000390, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, Temp_struct_Variable) == 0x0003A0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, Temp_struct_Variable_1) == 0x000450, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000458, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000460, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetFacingRotation_AimRotation) == 0x000468, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetFacingRotation_AimRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000480, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000498, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetController_ReturnValue) == 0x0004A0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0004A8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetMontage_ReturnValue) == 0x0004B0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventTag_4) == 0x0004B8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CustomEvent_EventData_4) == 0x0004C0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000570, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_IsValid_ReturnValue) == 0x000578, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000580, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_FinishSpawningActor_ReturnValue) == 0x000588, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_K2_CommitAbility_ReturnValue) == 0x000590, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000598, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, K2Node_CreateDelegate_OutputDelegate_4) == 0x0005A0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetTargetAndSuggestVelocity_Velocity) == 0x0005B0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetTargetAndSuggestVelocity_Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetTargetAndSuggestVelocity_Return) == 0x0005C8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetTargetAndSuggestVelocity_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_Add_VectorVector_ReturnValue) == 0x0005D0, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetTargetAndSuggestVelocity_Velocity_1) == 0x0005E8, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetTargetAndSuggestVelocity_Velocity_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_GetTargetAndSuggestVelocity_Return_1) == 0x000600, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_GetTargetAndSuggestVelocity_Return_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000608, "Member 'GA_EnemyThrow_Object_C_ExecuteUbergraph_GA_EnemyThrow_Object::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_GetFacingRotation \ +static_assert(alignof(GA_EnemyThrow_Object_C_GetFacingRotation) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_GetFacingRotation"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_GetFacingRotation) == 0x0000D8, "Wrong size on GA_EnemyThrow_Object_C_GetFacingRotation"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, AimRotation_0) == 0x000000, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::AimRotation_0' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000018, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000020, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_GetAIController_ReturnValue) == 0x000028, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000048, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000060, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000078, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_BreakRotator_Roll) == 0x000090, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_BreakRotator_Pitch) == 0x000094, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_BreakRotator_Yaw) == 0x000098, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_MakeRotator_ReturnValue) == 0x0000A0, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_RInterpTo_ReturnValue) == 0x0000B8, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetFacingRotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0000D0, "Member 'GA_EnemyThrow_Object_C_GetFacingRotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity \ +static_assert(alignof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity) == 0x000120, "Wrong size on GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, Velocity) == 0x000000, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, Return) == 0x000018, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_GetTargetLocation_TargetLoc) == 0x000020, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_GetTargetLocation_TargetLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_GetTargetLocation_Return) == 0x000038, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_GetTargetLocation_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000040, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_ThrowPoint_ReturnValue) == 0x000048, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_ThrowPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Vector_Distance_ReturnValue) == 0x000060, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000068, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_MapRangeClamped_ReturnValue) == 0x000070, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000078, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000080, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000088, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000A0, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B8, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Add_VectorVector_ReturnValue) == 0x0000D0, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity) == 0x0000E8, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue) == 0x000100, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000108, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000110, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity, CallFunc_BlueprintSuggestProjectileVelocity_LaunchSpeed_ImplicitCast) == 0x000118, "Member 'GA_EnemyThrow_Object_C_GetTargetAndSuggestVelocity::CallFunc_BlueprintSuggestProjectileVelocity_LaunchSpeed_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_GetTargetLocation \ +static_assert(alignof(GA_EnemyThrow_Object_C_GetTargetLocation) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_GetTargetLocation"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_GetTargetLocation) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_GetTargetLocation"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, TargetLoc) == 0x000000, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::TargetLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, Return) == 0x000018, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_RandomFloatInRange_ReturnValue) == 0x000028, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000030, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_GetAIController_ReturnValue) == 0x000038, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000040, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x000058, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000070, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000078, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000080, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_MakeVector_ReturnValue) == 0x000088, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_GetTargetLocation, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000A0, "Member 'GA_EnemyThrow_Object_C_GetTargetLocation::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5 \ +static_assert(alignof(GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5, EventTag) == 0x000000, "Member 'GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5, EventData) == 0x000008, "Member 'GA_EnemyThrow_Object_C_OnBlendOut_42416ABA413CB572628CB9898D56D8F5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5 \ +static_assert(alignof(GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5, EventTag) == 0x000000, "Member 'GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5, EventData) == 0x000008, "Member 'GA_EnemyThrow_Object_C_OnCancelled_42416ABA413CB572628CB9898D56D8F5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5 \ +static_assert(alignof(GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5, EventTag) == 0x000000, "Member 'GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5, EventData) == 0x000008, "Member 'GA_EnemyThrow_Object_C_OnCompleted_42416ABA413CB572628CB9898D56D8F5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5 \ +static_assert(alignof(GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5) == 0x0000B8, "Wrong size on GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5, EventTag) == 0x000000, "Member 'GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5, EventData) == 0x000008, "Member 'GA_EnemyThrow_Object_C_OnInterrupted_42416ABA413CB572628CB9898D56D8F5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_ThrowPoint \ +static_assert(alignof(GA_EnemyThrow_Object_C_ThrowPoint) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_ThrowPoint"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_ThrowPoint) == 0x000050, "Wrong size on GA_EnemyThrow_Object_C_ThrowPoint"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ThrowPoint, ReturnValue) == 0x000000, "Member 'GA_EnemyThrow_Object_C_ThrowPoint::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ThrowPoint, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000018, "Member 'GA_EnemyThrow_Object_C_ThrowPoint::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ThrowPoint, CallFunc_GetSocketLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyThrow_Object_C_ThrowPoint::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_ThrowPoint, CallFunc_Add_VectorVector_ReturnValue) == 0x000038, "Member 'GA_EnemyThrow_Object_C_ThrowPoint::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyThrow_Object_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemyThrow_Object_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemyThrow_Object_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemyThrow_Object_C_K2_CanActivateAbility) == 0x000088, "Wrong size on GA_EnemyThrow_Object_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyThrow_Object_C_K2_CanActivateAbility, CallFunc_IsWalking_ReturnValue) == 0x000080, "Member 'GA_EnemyThrow_Object_C_K2_CanActivateAbility::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyThrow_Object_C \ +static_assert(alignof(UGA_EnemyThrow_Object_C) == 0x000008, "Wrong alignment on UGA_EnemyThrow_Object_C"); \ +static_assert(sizeof(UGA_EnemyThrow_Object_C) == 0x000740, "Wrong size on UGA_EnemyThrow_Object_C"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyThrow_Object_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, AimRotation) == 0x000670, "Member 'UGA_EnemyThrow_Object_C::AimRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, ThrownObjectActor) == 0x000688, "Member 'UGA_EnemyThrow_Object_C::ThrownObjectActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, Launch_Speed) == 0x000690, "Member 'UGA_EnemyThrow_Object_C::Launch_Speed' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, Override_Gravity_Z) == 0x000694, "Member 'UGA_EnemyThrow_Object_C::Override_Gravity_Z' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, LaunchVelocity) == 0x000698, "Member 'UGA_EnemyThrow_Object_C::LaunchVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, LaunchVelocityTweak) == 0x0006B0, "Member 'UGA_EnemyThrow_Object_C::LaunchVelocityTweak' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, TargetVelocityMultiplier) == 0x0006C8, "Member 'UGA_EnemyThrow_Object_C::TargetVelocityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, Trace_Option) == 0x0006D0, "Member 'UGA_EnemyThrow_Object_C::Trace_Option' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, PreviewObjectDelay) == 0x0006D8, "Member 'UGA_EnemyThrow_Object_C::PreviewObjectDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, PreviewObject) == 0x0006E0, "Member 'UGA_EnemyThrow_Object_C::PreviewObject' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, OverrideTarget) == 0x0006E8, "Member 'UGA_EnemyThrow_Object_C::OverrideTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, TargetLocationOverride) == 0x0006F0, "Member 'UGA_EnemyThrow_Object_C::TargetLocationOverride' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, ShortrangeMultiplier) == 0x000708, "Member 'UGA_EnemyThrow_Object_C::ShortrangeMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, TargetLocOffset) == 0x000710, "Member 'UGA_EnemyThrow_Object_C::TargetLocOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, HorizontalVariance) == 0x000728, "Member 'UGA_EnemyThrow_Object_C::HorizontalVariance' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, VerticalVariance) == 0x000730, "Member 'UGA_EnemyThrow_Object_C::VerticalVariance' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyThrow_Object_C, ThrowSocket) == 0x000738, "Member 'UGA_EnemyThrow_Object_C::ThrowSocket' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_ConsumableAnimTrigger \ +static_assert(alignof(WBP_ConsumableSlot_C_ConsumableAnimTrigger) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_ConsumableAnimTrigger"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_ConsumableAnimTrigger) == 0x000068, "Wrong size on WBP_ConsumableSlot_C_ConsumableAnimTrigger"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, InType) == 0x000000, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::InType' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, InDuration) == 0x000008, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::InDuration' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_PlayAnimation_ReturnValue) == 0x000018, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_GetEndTime_ReturnValue) == 0x000020, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_GetEndTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_GetEndTime_ReturnValue_1) == 0x000024, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_GetEndTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000030, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_PlayAnimation_ReturnValue_1) == 0x000038, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_PlayAnimation_ReturnValue_2) == 0x000040, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000048, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_Divide_DoubleDouble_A_ImplicitCast_1) == 0x000058, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_Divide_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_PlayAnimation_PlaybackSpeed_ImplicitCast) == 0x000060, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_PlayAnimation_PlaybackSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ConsumableAnimTrigger, CallFunc_PlayAnimation_PlaybackSpeed_ImplicitCast_1) == 0x000064, "Member 'WBP_ConsumableSlot_C_ConsumableAnimTrigger::CallFunc_PlayAnimation_PlaybackSpeed_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD \ +static_assert(alignof(WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD) == 0x0000B0, "Wrong size on WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD, Payload) == 0x000000, "Member 'WBP_ConsumableSlot_C_EventReceived_9E60EFE4498E6612E0C0B3B49FC5B4CD::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot \ +static_assert(alignof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot) == 0x000340, "Wrong size on WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, EntryPoint) == 0x000000, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_bool_Variable) == 0x000004, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CustomEvent_Payload) == 0x000018, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable) == 0x0000C8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_byte_Variable) == 0x000178, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_1) == 0x00017C, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_2) == 0x000184, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_3) == 0x00018C, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_4) == 0x000194, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_5) == 0x00019C, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_struct_Variable_6) == 0x0001A4, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001AC, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x0001C0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsInputMethodActive_ReturnValue) == 0x0001C8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_bool_Variable_1) == 0x0001C9, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001CC, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetLocalPlayerSubsystem_ReturnValue_1) == 0x0001E0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetLocalPlayerSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_delegate_Variable) == 0x0001E8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsInputMethodActive_ReturnValue_1) == 0x0001F8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsInputMethodActive_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_BooleanAND_ReturnValue) == 0x0001F9, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsAnimationPlaying_ReturnValue) == 0x0001FA, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsAnimationPlaying_ReturnValue_1) == 0x0001FB, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsAnimationPlaying_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_Not_PreBool_ReturnValue) == 0x0001FC, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_Not_PreBool_ReturnValue_1) == 0x0001FD, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_BooleanAND_ReturnValue_1) == 0x0001FE, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_Event_IsDesignTime) == 0x0001FF, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerController_ReturnValue) == 0x000200, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CustomEvent_ConsumableType_1) == 0x000208, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CustomEvent_ConsumableType_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CustomEvent_bHasIncreased_1) == 0x000209, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CustomEvent_bHasIncreased_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000210, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_bSuccess) == 0x000218, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000219, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_PlayAnimationForward_ReturnValue) == 0x000220, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CustomEvent_ConsumableType) == 0x000228, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CustomEvent_ConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CustomEvent_bHasIncreased) == 0x000229, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CustomEvent_bHasIncreased' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x00022A, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000230, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue) == 0x000238, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000240, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000248, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_bSuccess_1) == 0x000258, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000260, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_bSuccess_2) == 0x000270, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000271, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000272, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000278, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CreateDelegate_OutputDelegate_3) == 0x000280, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_Select_Default) == 0x000290, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000298, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_Event_InDuration) == 0x0002A0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsValid_ReturnValue) == 0x0002A4, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_PlayAnimation_ReturnValue) == 0x0002A8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsPlayerFabien_Return) == 0x0002B0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_PlayAnimation_ReturnValue_1) == 0x0002B8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0002C0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_SwitchEnum_CmpSuccess) == 0x0002C8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x0002D0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsValid_ReturnValue_1) == 0x0002D8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x0002E0, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x0002E8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_DynamicCast_bSuccess_3) == 0x0002F8, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002FC, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x00030C, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000310, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_WaitGameplayTagAddToActor_ReturnValue_1) == 0x000318, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_WaitGameplayTagAddToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_IsValid_ReturnValue_2) == 0x000320, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, Temp_bool_Variable_2) == 0x000321, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_PlayAnimation_ReturnValue_2) == 0x000328, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_BooleanAND_ReturnValue_2) == 0x000330, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot, CallFunc_ConsumableAnimTrigger_InDuration_ImplicitCast) == 0x000338, "Member 'WBP_ConsumableSlot_C_ExecuteUbergraph_WBP_ConsumableSlot::CallFunc_ConsumableAnimTrigger_InDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_OnConsumableChangeEvent \ +static_assert(alignof(WBP_ConsumableSlot_C_OnConsumableChangeEvent) == 0x000001, "Wrong alignment on WBP_ConsumableSlot_C_OnConsumableChangeEvent"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_OnConsumableChangeEvent) == 0x000002, "Wrong size on WBP_ConsumableSlot_C_OnConsumableChangeEvent"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_OnConsumableChangeEvent, ConsumableType_0) == 0x000000, "Member 'WBP_ConsumableSlot_C_OnConsumableChangeEvent::ConsumableType_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_OnConsumableChangeEvent, bHasIncreased) == 0x000001, "Member 'WBP_ConsumableSlot_C_OnConsumableChangeEvent::bHasIncreased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event \ +static_assert(alignof(WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event) == 0x000001, "Wrong alignment on WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event) == 0x000002, "Wrong size on WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event, ConsumableType_0) == 0x000000, "Member 'WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event::ConsumableType_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event, bHasIncreased) == 0x000001, "Member 'WBP_ConsumableSlot_C_OnConsumableFailedEvent_Event::bHasIncreased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_PlayConsumableAnimation \ +static_assert(alignof(WBP_ConsumableSlot_C_PlayConsumableAnimation) == 0x000004, "Wrong alignment on WBP_ConsumableSlot_C_PlayConsumableAnimation"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_PlayConsumableAnimation) == 0x000004, "Wrong size on WBP_ConsumableSlot_C_PlayConsumableAnimation"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_PlayConsumableAnimation, InDuration) == 0x000000, "Member 'WBP_ConsumableSlot_C_PlayConsumableAnimation::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_PreConstruct \ +static_assert(alignof(WBP_ConsumableSlot_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_ConsumableSlot_C_PreConstruct"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_PreConstruct) == 0x000001, "Wrong size on WBP_ConsumableSlot_C_PreConstruct"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_ConsumableSlot_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_SetConsumableVisuals \ +static_assert(alignof(WBP_ConsumableSlot_C_SetConsumableVisuals) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_SetConsumableVisuals"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_SetConsumableVisuals) == 0x000008, "Wrong size on WBP_ConsumableSlot_C_SetConsumableVisuals"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_SetConsumableVisuals, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000000, "Member 'WBP_ConsumableSlot_C_SetConsumableVisuals::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_UpdateSlotComponentPadding \ +static_assert(alignof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_UpdateSlotComponentPadding"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding) == 0x000020, "Wrong size on WBP_ConsumableSlot_C_UpdateSlotComponentPadding"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding, InPadding) == 0x000000, "Member 'WBP_ConsumableSlot_C_UpdateSlotComponentPadding::InPadding' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding, InVerticalAlignement) == 0x000010, "Member 'WBP_ConsumableSlot_C_UpdateSlotComponentPadding::InVerticalAlignement' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding, InHorizontalAlignement) == 0x000011, "Member 'WBP_ConsumableSlot_C_UpdateSlotComponentPadding::InHorizontalAlignement' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotComponentPadding, CallFunc_SlotAsOverlaySlot_ReturnValue) == 0x000018, "Member 'WBP_ConsumableSlot_C_UpdateSlotComponentPadding::CallFunc_SlotAsOverlaySlot_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumableSlot_C_UpdateSlotOpacity \ +static_assert(alignof(WBP_ConsumableSlot_C_UpdateSlotOpacity) == 0x000008, "Wrong alignment on WBP_ConsumableSlot_C_UpdateSlotOpacity"); \ +static_assert(sizeof(WBP_ConsumableSlot_C_UpdateSlotOpacity) == 0x000030, "Wrong size on WBP_ConsumableSlot_C_UpdateSlotOpacity"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_Map_Find_Value) == 0x000008, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_Map_Find_ReturnValue) == 0x000010, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_IsValid_ReturnValue_1) == 0x000011, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_GetProperty_ReturnValue) == 0x000014, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_Greater_IntInt_ReturnValue) == 0x000018, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000020, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumableSlot_C_UpdateSlotOpacity, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast) == 0x000028, "Member 'WBP_ConsumableSlot_C_UpdateSlotOpacity::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConsumableSlot_C \ +static_assert(alignof(UWBP_ConsumableSlot_C) == 0x000010, "Wrong alignment on UWBP_ConsumableSlot_C"); \ +static_assert(sizeof(UWBP_ConsumableSlot_C) == 0x000520, "Wrong size on UWBP_ConsumableSlot_C"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, UberGraphFrame) == 0x000440, "Member 'UWBP_ConsumableSlot_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, TKAnim) == 0x000448, "Member 'UWBP_ConsumableSlot_C::TKAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, OnActivatedAnim) == 0x000450, "Member 'UWBP_ConsumableSlot_C::OnActivatedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, UnavailableAnim) == 0x000458, "Member 'UWBP_ConsumableSlot_C::UnavailableAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, VentrueAnim) == 0x000460, "Member 'UWBP_ConsumableSlot_C::VentrueAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, BrujahAnim) == 0x000468, "Member 'UWBP_ConsumableSlot_C::BrujahAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, DarkBg) == 0x000470, "Member 'UWBP_ConsumableSlot_C::DarkBg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, EffectBar) == 0x000478, "Member 'UWBP_ConsumableSlot_C::EffectBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Frame) == 0x000480, "Member 'UWBP_ConsumableSlot_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Gradient_ColorLikePotion) == 0x000488, "Member 'UWBP_ConsumableSlot_C::Gradient_ColorLikePotion' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Outline) == 0x000490, "Member 'UWBP_ConsumableSlot_C::Outline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, ProgressOutline) == 0x000498, "Member 'UWBP_ConsumableSlot_C::ProgressOutline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Pulse) == 0x0004A0, "Member 'UWBP_ConsumableSlot_C::Pulse' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Slot_outline) == 0x0004A8, "Member 'UWBP_ConsumableSlot_C::Slot_outline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, Slot_picture) == 0x0004B0, "Member 'UWBP_ConsumableSlot_C::Slot_picture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, TextPadding) == 0x0004B8, "Member 'UWBP_ConsumableSlot_C::TextPadding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, TextVerticalAlignement) == 0x0004C8, "Member 'UWBP_ConsumableSlot_C::TextVerticalAlignement' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, TextHorizontalAlignement) == 0x0004C9, "Member 'UWBP_ConsumableSlot_C::TextHorizontalAlignement' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, ImagePadding) == 0x0004CC, "Member 'UWBP_ConsumableSlot_C::ImagePadding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, GradientColor) == 0x0004DC, "Member 'UWBP_ConsumableSlot_C::GradientColor' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, StateInGame) == 0x0004F0, "Member 'UWBP_ConsumableSlot_C::StateInGame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, InputIcon) == 0x0004F8, "Member 'UWBP_ConsumableSlot_C::InputIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, UpdateSlotOnAnimFinished) == 0x000500, "Member 'UWBP_ConsumableSlot_C::UpdateSlotOnAnimFinished' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumableSlot_C, bIsNotEmpty) == 0x000510, "Member 'UWBP_ConsumableSlot_C::bIsNotEmpty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHoverSubTabFont_C \ +static_assert(alignof(UHoverSubTabFont_C) == 0x000010, "Wrong alignment on UHoverSubTabFont_C"); \ +static_assert(sizeof(UHoverSubTabFont_C) == 0x0001B0, "Wrong size on UHoverSubTabFont_C"); \ + +#define DUMPER7_ASSERTS_ABP_EntityWitnessMarker_C \ +static_assert(alignof(ABP_EntityWitnessMarker_C) == 0x000008, "Wrong alignment on ABP_EntityWitnessMarker_C"); \ +static_assert(sizeof(ABP_EntityWitnessMarker_C) == 0x0002A8, "Wrong size on ABP_EntityWitnessMarker_C"); \ +static_assert(offsetof(ABP_EntityWitnessMarker_C, Billboard) == 0x000298, "Member 'ABP_EntityWitnessMarker_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_EntityWitnessMarker_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_EntityWitnessMarker_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget \ +static_assert(alignof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget) == 0x000080, "Wrong size on WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, EntryPoint) == 0x000000, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, Temp_int_Array_Index_Variable) == 0x000018, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_CreateDelegate_OutputDelegate_1) == 0x00001C, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, Temp_int_Loop_Counter_Variable) == 0x00002C, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, Temp_int_Array_Index_Variable_1) == 0x000038, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Array_Get_Item) == 0x000040, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_IsPlayerFabien_Return) == 0x000048, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_GetPlayerController_ReturnValue) == 0x000050, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000058, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, Temp_int_Loop_Counter_Variable_1) == 0x000064, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Array_Get_Item_1) == 0x000068, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Add_IntInt_ReturnValue_1) == 0x000070, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Array_Length_ReturnValue_1) == 0x000074, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, CallFunc_Less_IntInt_ReturnValue_1) == 0x000078, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_CustomEvent_ConsumableType) == 0x000079, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_CustomEvent_ConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget, K2Node_CustomEvent_bHasIncreased) == 0x00007A, "Member 'WBP_ConsumablesHUDWidget_C_ExecuteUbergraph_WBP_ConsumablesHUDWidget::K2Node_CustomEvent_bHasIncreased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidget_C_InitSlots \ +static_assert(alignof(WBP_ConsumablesHUDWidget_C_InitSlots) == 0x000008, "Wrong alignment on WBP_ConsumablesHUDWidget_C_InitSlots"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidget_C_InitSlots) == 0x000040, "Wrong size on WBP_ConsumablesHUDWidget_C_InitSlots"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, CallFunc_Array_Get_Item) == 0x000010, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, CallFunc_Array_Length_ReturnValue) == 0x000018, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, K2Node_DynamicCast_AsWrestler_Consumables_HUDSlot_Widget) == 0x000020, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::K2Node_DynamicCast_AsWrestler_Consumables_HUDSlot_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, CallFunc_Less_IntInt_ReturnValue) == 0x000029, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_InitSlots, K2Node_MakeArray_Array) == 0x000030, "Member 'WBP_ConsumablesHUDWidget_C_InitSlots::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event \ +static_assert(alignof(WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event) == 0x000001, "Wrong alignment on WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event"); \ +static_assert(sizeof(WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event) == 0x000002, "Wrong size on WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event, ConsumableType) == 0x000000, "Member 'WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event::ConsumableType' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event, bHasIncreased) == 0x000001, "Member 'WBP_ConsumablesHUDWidget_C_OnConsumablePropertyChangeEvent_Event::bHasIncreased' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConsumablesHUDWidget_C \ +static_assert(alignof(UWBP_ConsumablesHUDWidget_C) == 0x000008, "Wrong alignment on UWBP_ConsumablesHUDWidget_C"); \ +static_assert(sizeof(UWBP_ConsumablesHUDWidget_C) == 0x0003B0, "Wrong size on UWBP_ConsumablesHUDWidget_C"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, UberGraphFrame) == 0x000338, "Member 'UWBP_ConsumablesHUDWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, Addon) == 0x000340, "Member 'UWBP_ConsumablesHUDWidget_C::Addon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, Bg_Brujah) == 0x000348, "Member 'UWBP_ConsumablesHUDWidget_C::Bg_Brujah' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, Bg_Ventrue) == 0x000350, "Member 'UWBP_ConsumablesHUDWidget_C::Bg_Ventrue' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, BloodSlot) == 0x000358, "Member 'UWBP_ConsumablesHUDWidget_C::BloodSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, BloodSlot_Fabien) == 0x000360, "Member 'UWBP_ConsumablesHUDWidget_C::BloodSlot_Fabien' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, BrujahSlot) == 0x000368, "Member 'UWBP_ConsumablesHUDWidget_C::BrujahSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, HealthSlot) == 0x000370, "Member 'UWBP_ConsumablesHUDWidget_C::HealthSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, TelekinesisSlot) == 0x000378, "Member 'UWBP_ConsumablesHUDWidget_C::TelekinesisSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, VentrueSlot) == 0x000380, "Member 'UWBP_ConsumablesHUDWidget_C::VentrueSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, WidgetSwitcher_Blood) == 0x000388, "Member 'UWBP_ConsumablesHUDWidget_C::WidgetSwitcher_Blood' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, WidgetSwitcher_Health) == 0x000390, "Member 'UWBP_ConsumablesHUDWidget_C::WidgetSwitcher_Health' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, PlayerStateInGame) == 0x000398, "Member 'UWBP_ConsumablesHUDWidget_C::PlayerStateInGame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConsumablesHUDWidget_C, Slots) == 0x0003A0, "Member 'UWBP_ConsumablesHUDWidget_C::Slots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChange_VisibilityCollision_C \ +static_assert(alignof(UChange_VisibilityCollision_C) == 0x000008, "Wrong alignment on UChange_VisibilityCollision_C"); \ +static_assert(sizeof(UChange_VisibilityCollision_C) == 0x000098, "Wrong size on UChange_VisibilityCollision_C"); \ + +#define DUMPER7_ASSERTS_UGE_SuppressBarks_Deathcommentonly_C \ +static_assert(alignof(UGE_SuppressBarks_Deathcommentonly_C) == 0x000008, "Wrong alignment on UGE_SuppressBarks_Deathcommentonly_C"); \ +static_assert(sizeof(UGE_SuppressBarks_Deathcommentonly_C) == 0x000A70, "Wrong size on UGE_SuppressBarks_Deathcommentonly_C"); \ + +#define DUMPER7_ASSERTS_UWBP_InteractionIndicator_C \ +static_assert(alignof(UWBP_InteractionIndicator_C) == 0x000008, "Wrong alignment on UWBP_InteractionIndicator_C"); \ +static_assert(sizeof(UWBP_InteractionIndicator_C) == 0x0002E8, "Wrong size on UWBP_InteractionIndicator_C"); \ +static_assert(offsetof(UWBP_InteractionIndicator_C, BackingGradient) == 0x0002C8, "Member 'UWBP_InteractionIndicator_C::BackingGradient' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionIndicator_C, Image) == 0x0002D0, "Member 'UWBP_InteractionIndicator_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionIndicator_C, Image_1) == 0x0002D8, "Member 'UWBP_InteractionIndicator_C::Image_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionIndicator_C, Indicator) == 0x0002E0, "Member 'UWBP_InteractionIndicator_C::Indicator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar \ +static_assert(alignof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar) == 0x000008, "Wrong alignment on WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar"); \ +static_assert(sizeof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar) == 0x000188, "Wrong size on WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, EntryPoint) == 0x000000, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, Temp_delegate_Variable) == 0x000004, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, Temp_int_Variable) == 0x000024, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CreateDelegate_OutputDelegate_1) == 0x000028, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetAnimationCurrentTime_ReturnValue) == 0x000038, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetAnimationCurrentTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_PauseAnimation_ReturnValue) == 0x00003C, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_PauseAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000040, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetCurrentPercent_OutPercent) == 0x000048, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetCurrentPercent_OutPercent' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000050, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CreateDelegate_OutputDelegate_2) == 0x000054, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Greater_IntInt_ReturnValue) == 0x000064, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_PlayAnimation_ReturnValue) == 0x000068, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CreateDelegate_OutputDelegate_3) == 0x000070, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetAvailableAP_ReturnValue) == 0x000080, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetAvailableAP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Add_IntInt_ReturnValue) == 0x000084, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Subtract_IntInt_ReturnValue) == 0x000088, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000090, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_NewPoints_2) == 0x000098, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_NewPoints_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_PreviousPoint_1) == 0x00009C, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_PreviousPoint_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_IsValid_ReturnValue) == 0x0000A0, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToText_ReturnValue) == 0x0000A8, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToText_ReturnValue_1) == 0x0000C0, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_DynamicCast_AsWrestler_Character) == 0x0000D8, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_DynamicCast_bSuccess) == 0x0000E0, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_PlayAnimation_ReturnValue_1) == 0x0000E8, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_NewPoints_1) == 0x0000F0, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_NewPoints_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_PreviousPoint) == 0x0000F4, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_PreviousPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToText_ReturnValue_2) == 0x0000F8, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Add_IntInt_ReturnValue_1) == 0x000110, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_NewPoints) == 0x000114, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_NewPoints' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToText_ReturnValue_3) == 0x000118, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToText_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetHud_ReturnValue) == 0x000130, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_GetAvailableXP_ReturnValue) == 0x000138, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_GetAvailableXP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000140, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_CustomEvent_bInPaused) == 0x000148, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_IsAnimationPlaying_ReturnValue_1) == 0x000149, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_IsAnimationPlaying_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_BooleanAND_ReturnValue) == 0x00014A, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_Conv_IntToText_ReturnValue_4) == 0x000150, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_Conv_IntToText_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, Temp_delegate_Variable_1) == 0x000168, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000178, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar, K2Node_VariableSet_LastFrame_ImplicitCast) == 0x000180, "Member 'WBP_XPFillBar_C_ExecuteUbergraph_WBP_XPFillBar::K2Node_VariableSet_LastFrame_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_GetCurrentPercent \ +static_assert(alignof(WBP_XPFillBar_C_GetCurrentPercent) == 0x000008, "Wrong alignment on WBP_XPFillBar_C_GetCurrentPercent"); \ +static_assert(sizeof(WBP_XPFillBar_C_GetCurrentPercent) == 0x000030, "Wrong size on WBP_XPFillBar_C_GetCurrentPercent"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, OutPercent) == 0x000000, "Member 'WBP_XPFillBar_C_GetCurrentPercent::OutPercent' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_MaxXPForNextAPPoint_ReturnValue) == 0x00000C, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_MaxXPForNextAPPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000010, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_GetAvailableXP_ReturnValue) == 0x000018, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_GetAvailableXP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000020, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_GetCurrentPercent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'WBP_XPFillBar_C_GetCurrentPercent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_NewPointsAnim \ +static_assert(alignof(WBP_XPFillBar_C_NewPointsAnim) == 0x000004, "Wrong alignment on WBP_XPFillBar_C_NewPointsAnim"); \ +static_assert(sizeof(WBP_XPFillBar_C_NewPointsAnim) == 0x000008, "Wrong size on WBP_XPFillBar_C_NewPointsAnim"); \ +static_assert(offsetof(WBP_XPFillBar_C_NewPointsAnim, NewPoints) == 0x000000, "Member 'WBP_XPFillBar_C_NewPointsAnim::NewPoints' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_NewPointsAnim, PreviousPoint) == 0x000004, "Member 'WBP_XPFillBar_C_NewPointsAnim::PreviousPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_OnGamePausedChanged_Event \ +static_assert(alignof(WBP_XPFillBar_C_OnGamePausedChanged_Event) == 0x000001, "Wrong alignment on WBP_XPFillBar_C_OnGamePausedChanged_Event"); \ +static_assert(sizeof(WBP_XPFillBar_C_OnGamePausedChanged_Event) == 0x000001, "Wrong size on WBP_XPFillBar_C_OnGamePausedChanged_Event"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnGamePausedChanged_Event, bInPaused) == 0x000000, "Member 'WBP_XPFillBar_C_OnGamePausedChanged_Event::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_OnNewAPReceived_Event \ +static_assert(alignof(WBP_XPFillBar_C_OnNewAPReceived_Event) == 0x000004, "Wrong alignment on WBP_XPFillBar_C_OnNewAPReceived_Event"); \ +static_assert(sizeof(WBP_XPFillBar_C_OnNewAPReceived_Event) == 0x000008, "Wrong size on WBP_XPFillBar_C_OnNewAPReceived_Event"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnNewAPReceived_Event, NewPoints) == 0x000000, "Member 'WBP_XPFillBar_C_OnNewAPReceived_Event::NewPoints' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnNewAPReceived_Event, PreviousPoint) == 0x000004, "Member 'WBP_XPFillBar_C_OnNewAPReceived_Event::PreviousPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_OnXPReceivedAnim \ +static_assert(alignof(WBP_XPFillBar_C_OnXPReceivedAnim) == 0x000008, "Wrong alignment on WBP_XPFillBar_C_OnXPReceivedAnim"); \ +static_assert(sizeof(WBP_XPFillBar_C_OnXPReceivedAnim) == 0x000058, "Wrong size on WBP_XPFillBar_C_OnXPReceivedAnim"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, CallFunc_Conv_IntToText_ReturnValue) == 0x000000, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::CallFunc_Conv_IntToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, CallFunc_GetAvailableAP_ReturnValue) == 0x000018, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::CallFunc_GetAvailableAP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, CallFunc_Conv_IntToText_ReturnValue_1) == 0x000020, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::CallFunc_Conv_IntToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, Temp_delegate_Variable) == 0x000038, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, CallFunc_PlayAnimation_ReturnValue) == 0x000048, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_OnXPReceivedAnim, CallFunc_PlayAnimation_StartAtTime_ImplicitCast) == 0x000050, "Member 'WBP_XPFillBar_C_OnXPReceivedAnim::CallFunc_PlayAnimation_StartAtTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_PointsAddedSimple \ +static_assert(alignof(WBP_XPFillBar_C_PointsAddedSimple) == 0x000004, "Wrong alignment on WBP_XPFillBar_C_PointsAddedSimple"); \ +static_assert(sizeof(WBP_XPFillBar_C_PointsAddedSimple) == 0x000004, "Wrong size on WBP_XPFillBar_C_PointsAddedSimple"); \ +static_assert(offsetof(WBP_XPFillBar_C_PointsAddedSimple, NewPoints) == 0x000000, "Member 'WBP_XPFillBar_C_PointsAddedSimple::NewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_SetCurrentPercent \ +static_assert(alignof(WBP_XPFillBar_C_SetCurrentPercent) == 0x000008, "Wrong alignment on WBP_XPFillBar_C_SetCurrentPercent"); \ +static_assert(sizeof(WBP_XPFillBar_C_SetCurrentPercent) == 0x000028, "Wrong size on WBP_XPFillBar_C_SetCurrentPercent"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, InNewValue) == 0x000000, "Member 'WBP_XPFillBar_C_SetCurrentPercent::InNewValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WBP_XPFillBar_C_SetCurrentPercent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, CallFunc_MaxXPForNextAPPoint_ReturnValue) == 0x00000C, "Member 'WBP_XPFillBar_C_SetCurrentPercent::CallFunc_MaxXPForNextAPPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000010, "Member 'WBP_XPFillBar_C_SetCurrentPercent::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'WBP_XPFillBar_C_SetCurrentPercent::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_SetCurrentPercent, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000020, "Member 'WBP_XPFillBar_C_SetCurrentPercent::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_XPFillBar_C_UpdateAPText \ +static_assert(alignof(WBP_XPFillBar_C_UpdateAPText) == 0x000008, "Wrong alignment on WBP_XPFillBar_C_UpdateAPText"); \ +static_assert(sizeof(WBP_XPFillBar_C_UpdateAPText) == 0x000020, "Wrong size on WBP_XPFillBar_C_UpdateAPText"); \ +static_assert(offsetof(WBP_XPFillBar_C_UpdateAPText, CallFunc_GetAvailableAP_ReturnValue) == 0x000000, "Member 'WBP_XPFillBar_C_UpdateAPText::CallFunc_GetAvailableAP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_XPFillBar_C_UpdateAPText, CallFunc_Conv_IntToText_ReturnValue) == 0x000008, "Member 'WBP_XPFillBar_C_UpdateAPText::CallFunc_Conv_IntToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_XPFillBar_C \ +static_assert(alignof(UWBP_XPFillBar_C) == 0x000008, "Wrong alignment on UWBP_XPFillBar_C"); \ +static_assert(sizeof(UWBP_XPFillBar_C) == 0x000388, "Wrong size on UWBP_XPFillBar_C"); \ +static_assert(offsetof(UWBP_XPFillBar_C, UberGraphFrame) == 0x000330, "Member 'UWBP_XPFillBar_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, XPReceivedAnim) == 0x000338, "Member 'UWBP_XPFillBar_C::XPReceivedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, OnAPReceived) == 0x000340, "Member 'UWBP_XPFillBar_C::OnAPReceived' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, AP) == 0x000348, "Member 'UWBP_XPFillBar_C::AP' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, Halo) == 0x000350, "Member 'UWBP_XPFillBar_C::Halo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, ProgressBar_29) == 0x000358, "Member 'UWBP_XPFillBar_C::ProgressBar_29' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, WCharacter) == 0x000360, "Member 'UWBP_XPFillBar_C::WCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, APPoints) == 0x000368, "Member 'UWBP_XPFillBar_C::APPoints' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, LastFrame) == 0x000370, "Member 'UWBP_XPFillBar_C::LastFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, LoopAnimNum) == 0x000378, "Member 'UWBP_XPFillBar_C::LoopAnimNum' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, bIsHUD) == 0x00037C, "Member 'UWBP_XPFillBar_C::bIsHUD' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, LastRegisteredPoints) == 0x000380, "Member 'UWBP_XPFillBar_C::LastRegisteredPoints' has a wrong offset!"); \ +static_assert(offsetof(UWBP_XPFillBar_C, APEventWasCalled) == 0x000384, "Member 'UWBP_XPFillBar_C::APEventWasCalled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification \ +static_assert(alignof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification) == 0x000008, "Wrong alignment on WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification"); \ +static_assert(sizeof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification) == 0x000050, "Wrong size on WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, EntryPoint) == 0x000000, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, CallFunc_IsGamePaused_ReturnValue) == 0x000004, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::CallFunc_IsGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, K2Node_Event_MyGeometry) == 0x000008, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, K2Node_Event_InDeltaTime) == 0x000040, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, K2Node_Event_bInStatus) == 0x000044, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification, CallFunc_PlayAnimation_ReturnValue) == 0x000048, "Member 'WBP_MilestoneCentralNotification_C_ExecuteUbergraph_WBP_MilestoneCentralNotification::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MilestoneCentralNotification_C_Tick \ +static_assert(alignof(WBP_MilestoneCentralNotification_C_Tick) == 0x000004, "Wrong alignment on WBP_MilestoneCentralNotification_C_Tick"); \ +static_assert(sizeof(WBP_MilestoneCentralNotification_C_Tick) == 0x00003C, "Wrong size on WBP_MilestoneCentralNotification_C_Tick"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_MilestoneCentralNotification_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_MilestoneCentralNotification_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MilestoneCentralNotification_C_ToggleVisibility \ +static_assert(alignof(WBP_MilestoneCentralNotification_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_MilestoneCentralNotification_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_MilestoneCentralNotification_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_MilestoneCentralNotification_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_MilestoneCentralNotification_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_MilestoneCentralNotification_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MilestoneCentralNotification_C \ +static_assert(alignof(UWBP_MilestoneCentralNotification_C) == 0x000008, "Wrong alignment on UWBP_MilestoneCentralNotification_C"); \ +static_assert(sizeof(UWBP_MilestoneCentralNotification_C) == 0x000398, "Wrong size on UWBP_MilestoneCentralNotification_C"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, UberGraphFrame) == 0x000358, "Member 'UWBP_MilestoneCentralNotification_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, FadeOut) == 0x000360, "Member 'UWBP_MilestoneCentralNotification_C::FadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, Centre_1) == 0x000368, "Member 'UWBP_MilestoneCentralNotification_C::Centre_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, Centre_2) == 0x000370, "Member 'UWBP_MilestoneCentralNotification_C::Centre_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, Image) == 0x000378, "Member 'UWBP_MilestoneCentralNotification_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, Image_620) == 0x000380, "Member 'UWBP_MilestoneCentralNotification_C::Image_620' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, Subtitle) == 0x000388, "Member 'UWBP_MilestoneCentralNotification_C::Subtitle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MilestoneCentralNotification_C, WBP_NotificationPrompt) == 0x000390, "Member 'UWBP_MilestoneCentralNotification_C::WBP_NotificationPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TeleportActor_C_ExecuteUbergraph_TeleportActor \ +static_assert(alignof(TeleportActor_C_ExecuteUbergraph_TeleportActor) == 0x000010, "Wrong alignment on TeleportActor_C_ExecuteUbergraph_TeleportActor"); \ +static_assert(sizeof(TeleportActor_C_ExecuteUbergraph_TeleportActor) == 0x000150, "Wrong size on TeleportActor_C_ExecuteUbergraph_TeleportActor"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, EntryPoint) == 0x000000, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, Temp_bool_Variable) == 0x000004, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, K2Node_Event_InAutomata) == 0x000008, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, K2Node_Event_InState) == 0x000010, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, K2Node_Select_Default) == 0x000090, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_ResolveSoftActorPointer_ReturnValue_1) == 0x0000F0, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_ResolveSoftActorPointer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_BreakTransform_Location) == 0x0000F8, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_BreakTransform_Rotation) == 0x000110, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_BreakTransform_Scale) == 0x000128, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_IsValid_ReturnValue_2) == 0x000140, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ExecuteUbergraph_TeleportActor, CallFunc_K2_TeleportTo_ReturnValue) == 0x000141, "Member 'TeleportActor_C_ExecuteUbergraph_TeleportActor::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TeleportActor_C_ReceiveExecute \ +static_assert(alignof(TeleportActor_C_ReceiveExecute) == 0x000008, "Wrong alignment on TeleportActor_C_ReceiveExecute"); \ +static_assert(sizeof(TeleportActor_C_ReceiveExecute) == 0x000010, "Wrong size on TeleportActor_C_ReceiveExecute"); \ +static_assert(offsetof(TeleportActor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TeleportActor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TeleportActor_C_ReceiveExecute, InState) == 0x000008, "Member 'TeleportActor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTeleportActor_C \ +static_assert(alignof(UTeleportActor_C) == 0x000010, "Wrong alignment on UTeleportActor_C"); \ +static_assert(sizeof(UTeleportActor_C) == 0x000150, "Wrong size on UTeleportActor_C"); \ +static_assert(offsetof(UTeleportActor_C, UberGraphFrame) == 0x000088, "Member 'UTeleportActor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTeleportActor_C, ActorToTeleport) == 0x000090, "Member 'UTeleportActor_C::ActorToTeleport' has a wrong offset!"); \ +static_assert(offsetof(UTeleportActor_C, Transform) == 0x0000C0, "Member 'UTeleportActor_C::Transform' has a wrong offset!"); \ +static_assert(offsetof(UTeleportActor_C, TargetActor) == 0x000120, "Member 'UTeleportActor_C::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget \ +static_assert(alignof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget) == 0x000008, "Wrong alignment on WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget"); \ +static_assert(sizeof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget) == 0x000048, "Wrong size on WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, EntryPoint) == 0x000000, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, CallFunc_GetAllChildren_ReturnValue) == 0x000008, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, Temp_int_Array_Index_Variable) == 0x000018, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, CallFunc_Array_Length_ReturnValue) == 0x00001C, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, K2Node_DynamicCast_AsWrestler_Base_Widget) == 0x000028, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::K2Node_DynamicCast_AsWrestler_Base_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget, K2Node_Event_bInStatus) == 0x000040, "Member 'WBP_CentralContainerWidget_C_ExecuteUbergraph_WBP_CentralContainerWidget::K2Node_Event_bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CentralContainerWidget_C_ToggleVisibility \ +static_assert(alignof(WBP_CentralContainerWidget_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_CentralContainerWidget_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_CentralContainerWidget_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_CentralContainerWidget_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_CentralContainerWidget_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_CentralContainerWidget_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CentralContainerWidget_C \ +static_assert(alignof(UWBP_CentralContainerWidget_C) == 0x000008, "Wrong alignment on UWBP_CentralContainerWidget_C"); \ +static_assert(sizeof(UWBP_CentralContainerWidget_C) == 0x000300, "Wrong size on UWBP_CentralContainerWidget_C"); \ +static_assert(offsetof(UWBP_CentralContainerWidget_C, UberGraphFrame) == 0x0002E8, "Member 'UWBP_CentralContainerWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CentralContainerWidget_C, MilestoneNotification) == 0x0002F0, "Member 'UWBP_CentralContainerWidget_C::MilestoneNotification' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CentralContainerWidget_C, QuestNotification) == 0x0002F8, "Member 'UWBP_CentralContainerWidget_C::QuestNotification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_NoticabilityReduction_C \ +static_assert(alignof(UGE_NoticabilityReduction_C) == 0x000008, "Wrong alignment on UGE_NoticabilityReduction_C"); \ +static_assert(sizeof(UGE_NoticabilityReduction_C) == 0x000A70, "Wrong size on UGE_NoticabilityReduction_C"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_CheckForShortcutText \ +static_assert(alignof(WBP_SideNotification_C_CheckForShortcutText) == 0x000001, "Wrong alignment on WBP_SideNotification_C_CheckForShortcutText"); \ +static_assert(sizeof(WBP_SideNotification_C_CheckForShortcutText) == 0x000001, "Wrong size on WBP_SideNotification_C_CheckForShortcutText"); \ +static_assert(offsetof(WBP_SideNotification_C_CheckForShortcutText, CallFunc_HasShortcutTab_ReturnValue) == 0x000000, "Member 'WBP_SideNotification_C_CheckForShortcutText::CallFunc_HasShortcutTab_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification \ +static_assert(alignof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification) == 0x000008, "Wrong alignment on WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification"); \ +static_assert(sizeof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification) == 0x0001F0, "Wrong size on WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, EntryPoint) == 0x000000, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_IsInCombat_self_CastInput) == 0x000018, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_IsInCombat_ReturnValue) == 0x000028, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000030, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_1) == 0x000038, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_2) == 0x000048, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_3) == 0x000058, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_4) == 0x000068, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_int_Variable) == 0x000078, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000080, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_delegate_Variable) == 0x000088, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_5) == 0x000098, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_byte_Variable) == 0x0000A8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000AC, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000C0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_bool_Variable) == 0x0000C8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_int_Variable_1) == 0x0000CC, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NotificationWidgetOverlay_2) == 0x0000D0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NotificationWidgetOverlay_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NotificationWidgetOverlay_1) == 0x0000D8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NotificationWidgetOverlay_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x0000E0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000E1, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NotificationWidgetOverlay) == 0x0000E8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NotificationWidgetOverlay' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_IsGamePaused_ReturnValue) == 0x0000F0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_IsGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_PlayAnimationForward_ReturnValue) == 0x0000F8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_IsPlayerFabien_Return) == 0x000100, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_BooleanOR_ReturnValue) == 0x000101, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_ShouldShowXPFill_ReturnValue) == 0x000102, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_ShouldShowXPFill_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_byte_Variable_1) == 0x000103, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_ShouldShowXPFill_ReturnValue_1) == 0x000104, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_ShouldShowXPFill_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_ShouldShowXPFill_ReturnValue_2) == 0x000105, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_ShouldShowXPFill_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_Event_bInStatus) == 0x000106, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_PlayAnimation_ReturnValue) == 0x000108, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_delegate_Variable_1) == 0x000110, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000120, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NewPoints_1) == 0x000128, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NewPoints_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_DynamicCast_AsWrestler_Character) == 0x000130, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_IsValid_ReturnValue) == 0x000139, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000140, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_byte_Variable_2) == 0x000148, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Map_Find_Value) == 0x000150, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Map_Find_ReturnValue) == 0x000158, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CreateDelegate_OutputDelegate_7) == 0x00015C, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Replace_ReturnValue) == 0x000170, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_K2_SetTimerDelegate_ReturnValue_1) == 0x000180, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_K2_SetTimerDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Conv_StringToText_ReturnValue) == 0x000188, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NewEvent) == 0x0001A0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NewEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_NewPoints) == 0x0001C0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_NewPoints' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_bool_Variable_1) == 0x0001C4, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_bNewInputType) == 0x0001C5, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_Select_Default) == 0x0001C6, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_Enemy_1) == 0x0001C8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_Enemy_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_CustomEvent_Enemy) == 0x0001D0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Add_IntInt_ReturnValue) == 0x0001D8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Add_IntInt_ReturnValue_1) == 0x0001DC, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, Temp_byte_Variable_3) == 0x0001E0, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, K2Node_Select_Default_1) == 0x0001E1, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0001E2, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0001E8, "Member 'WBP_SideNotification_C_ExecuteUbergraph_WBP_SideNotification::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnAPChangedSimple_Event \ +static_assert(alignof(WBP_SideNotification_C_OnAPChangedSimple_Event) == 0x000004, "Wrong alignment on WBP_SideNotification_C_OnAPChangedSimple_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnAPChangedSimple_Event) == 0x000004, "Wrong size on WBP_SideNotification_C_OnAPChangedSimple_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnAPChangedSimple_Event, NewPoints) == 0x000000, "Member 'WBP_SideNotification_C_OnAPChangedSimple_Event::NewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnBRTypeGained_Event \ +static_assert(alignof(WBP_SideNotification_C_OnBRTypeGained_Event) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnBRTypeGained_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnBRTypeGained_Event) == 0x000020, "Wrong size on WBP_SideNotification_C_OnBRTypeGained_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnBRTypeGained_Event, NewEvent) == 0x000000, "Member 'WBP_SideNotification_C_OnBRTypeGained_Event::NewEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnEnemyDeathEvent_Event \ +static_assert(alignof(WBP_SideNotification_C_OnEnemyDeathEvent_Event) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnEnemyDeathEvent_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnEnemyDeathEvent_Event) == 0x000008, "Wrong size on WBP_SideNotification_C_OnEnemyDeathEvent_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnEnemyDeathEvent_Event, Enemy) == 0x000000, "Member 'WBP_SideNotification_C_OnEnemyDeathEvent_Event::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnEnemyDetectedPlayer_Event \ +static_assert(alignof(WBP_SideNotification_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnEnemyDetectedPlayer_Event) == 0x000008, "Wrong size on WBP_SideNotification_C_OnEnemyDetectedPlayer_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnEnemyDetectedPlayer_Event, Enemy) == 0x000000, "Member 'WBP_SideNotification_C_OnEnemyDetectedPlayer_Event::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnFadeInEnded \ +static_assert(alignof(WBP_SideNotification_C_OnFadeInEnded) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnFadeInEnded"); \ +static_assert(sizeof(WBP_SideNotification_C_OnFadeInEnded) == 0x000008, "Wrong size on WBP_SideNotification_C_OnFadeInEnded"); \ +static_assert(offsetof(WBP_SideNotification_C_OnFadeInEnded, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_OnFadeInEnded::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnFadeInStarted \ +static_assert(alignof(WBP_SideNotification_C_OnFadeInStarted) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnFadeInStarted"); \ +static_assert(sizeof(WBP_SideNotification_C_OnFadeInStarted) == 0x000008, "Wrong size on WBP_SideNotification_C_OnFadeInStarted"); \ +static_assert(offsetof(WBP_SideNotification_C_OnFadeInStarted, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_OnFadeInStarted::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnFadeOutEnded \ +static_assert(alignof(WBP_SideNotification_C_OnFadeOutEnded) == 0x000008, "Wrong alignment on WBP_SideNotification_C_OnFadeOutEnded"); \ +static_assert(sizeof(WBP_SideNotification_C_OnFadeOutEnded) == 0x000008, "Wrong size on WBP_SideNotification_C_OnFadeOutEnded"); \ +static_assert(offsetof(WBP_SideNotification_C_OnFadeOutEnded, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_OnFadeOutEnded::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnInputMethodChanged_Event \ +static_assert(alignof(WBP_SideNotification_C_OnInputMethodChanged_Event) == 0x000001, "Wrong alignment on WBP_SideNotification_C_OnInputMethodChanged_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnInputMethodChanged_Event) == 0x000001, "Wrong size on WBP_SideNotification_C_OnInputMethodChanged_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnInputMethodChanged_Event, bNewInputType) == 0x000000, "Member 'WBP_SideNotification_C_OnInputMethodChanged_Event::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_OnXPChanged_Event \ +static_assert(alignof(WBP_SideNotification_C_OnXPChanged_Event) == 0x000004, "Wrong alignment on WBP_SideNotification_C_OnXPChanged_Event"); \ +static_assert(sizeof(WBP_SideNotification_C_OnXPChanged_Event) == 0x000004, "Wrong size on WBP_SideNotification_C_OnXPChanged_Event"); \ +static_assert(offsetof(WBP_SideNotification_C_OnXPChanged_Event, NewPoints) == 0x000000, "Member 'WBP_SideNotification_C_OnXPChanged_Event::NewPoints' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_PlayBRSound \ +static_assert(alignof(WBP_SideNotification_C_PlayBRSound) == 0x000004, "Wrong alignment on WBP_SideNotification_C_PlayBRSound"); \ +static_assert(sizeof(WBP_SideNotification_C_PlayBRSound) == 0x000034, "Wrong size on WBP_SideNotification_C_PlayBRSound"); \ +static_assert(offsetof(WBP_SideNotification_C_PlayBRSound, Temp_delegate_Variable) == 0x000000, "Member 'WBP_SideNotification_C_PlayBRSound::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_PlayBRSound, Temp_delegate_Variable_1) == 0x000010, "Member 'WBP_SideNotification_C_PlayBRSound::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_PlayBRSound, Temp_delegate_Variable_2) == 0x000020, "Member 'WBP_SideNotification_C_PlayBRSound::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideNotification_C_PlayBRSound, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'WBP_SideNotification_C_PlayBRSound::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification \ +static_assert(alignof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification) == 0x000008, "Wrong alignment on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification"); \ +static_assert(sizeof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification) == 0x000008, "Wrong size on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification"); \ +static_assert(offsetof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0 \ +static_assert(alignof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0) == 0x000008, "Wrong alignment on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0"); \ +static_assert(sizeof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0) == 0x000008, "Wrong size on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0"); \ +static_assert(offsetof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_0::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1 \ +static_assert(alignof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1) == 0x000008, "Wrong alignment on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1"); \ +static_assert(sizeof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1) == 0x000008, "Wrong size on WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1"); \ +static_assert(offsetof(WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1, NotificationWidgetOverlay_0) == 0x000000, "Member 'WBP_SideNotification_C_SequenceEvent__ENTRYPOINTWBP_SideNotification_1::NotificationWidgetOverlay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideNotification_C_ToggleVisibility \ +static_assert(alignof(WBP_SideNotification_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_SideNotification_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_SideNotification_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_SideNotification_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_SideNotification_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_SideNotification_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SideNotification_C \ +static_assert(alignof(UWBP_SideNotification_C) == 0x000008, "Wrong alignment on UWBP_SideNotification_C"); \ +static_assert(sizeof(UWBP_SideNotification_C) == 0x000498, "Wrong size on UWBP_SideNotification_C"); \ +static_assert(offsetof(UWBP_SideNotification_C, UberGraphFrame) == 0x0003E0, "Member 'UWBP_SideNotification_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, FadeOut) == 0x0003E8, "Member 'UWBP_SideNotification_C::FadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, FadeIn) == 0x0003F0, "Member 'UWBP_SideNotification_C::FadeIn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, DivLine) == 0x0003F8, "Member 'UWBP_SideNotification_C::DivLine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, Frame) == 0x000400, "Member 'UWBP_SideNotification_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, ShortcutText) == 0x000408, "Member 'UWBP_SideNotification_C::ShortcutText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, WBP_XPFillBar) == 0x000410, "Member 'UWBP_SideNotification_C::WBP_XPFillBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, Parent) == 0x000418, "Member 'UWBP_SideNotification_C::Parent' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, DebugMessage) == 0x000420, "Member 'UWBP_SideNotification_C::DebugMessage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, NotifyTypeAudioState) == 0x000430, "Member 'UWBP_SideNotification_C::NotifyTypeAudioState' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, BRReceivedType) == 0x000480, "Member 'UWBP_SideNotification_C::BRReceivedType' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, EnemyAwarenessCounter) == 0x000484, "Member 'UWBP_SideNotification_C::EnemyAwarenessCounter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, EnemyDeathCounter) == 0x000488, "Member 'UWBP_SideNotification_C::EnemyDeathCounter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideNotification_C, WrestlerCharacter) == 0x000490, "Member 'UWBP_SideNotification_C::WrestlerCharacter' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame \ +static_assert(alignof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame) == 0x000008, "Wrong alignment on BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame"); \ +static_assert(sizeof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame) == 0x000108, "Wrong size on BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, EntryPoint) == 0x000000, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, Temp_bool_Variable) == 0x000004, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, Temp_bool_Variable_1) == 0x000005, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_K2_GetPawn_ReturnValue) == 0x000008, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_K2_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character) == 0x000010, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000019, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_K2_GetPawn_ReturnValue_1) == 0x000020, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_K2_GetPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_K2_GetPawn_ReturnValue_2) == 0x000028, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_K2_GetPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_1) == 0x000030, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_bSuccess_1) == 0x000038, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_2) == 0x000040, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_bSuccess_2) == 0x000048, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x000049, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_TryActivateAbilityByClass_ReturnValue_2) == 0x00004A, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_TryActivateAbilityByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_K2_GetPawn_ReturnValue_3) == 0x000050, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_K2_GetPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_3) == 0x000058, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_DynamicCast_bSuccess_3) == 0x000060, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000068, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_TryActivateAbilityByClass_ReturnValue_3) == 0x000070, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_TryActivateAbilityByClass_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Event_DeltaSeconds) == 0x000074, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_GetControlRotation_ReturnValue) == 0x000078, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_BreakRotator_Roll) == 0x000090, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_BreakRotator_Pitch) == 0x000094, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_BreakRotator_Yaw) == 0x000098, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Select_Default) == 0x0000AC, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Select_Default_1) == 0x0000C0, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_MakeRotator_ReturnValue) == 0x0000C8, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0000E0, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000E8, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Select_Option_1_ImplicitCast) == 0x0000F0, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, CallFunc_FClamp_Value_ImplicitCast) == 0x0000F8, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Select_Option_0_ImplicitCast) == 0x000100, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame, K2Node_Select_Option_1_ImplicitCast_1) == 0x000104, "Member 'BP_WrestlerPlayerControllerInGame_C_ExecuteUbergraph_BP_WrestlerPlayerControllerInGame::K2Node_Select_Option_1_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent \ +static_assert(alignof(BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent) == 0x000008, "Wrong alignment on BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent"); \ +static_assert(sizeof(BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent) == 0x000008, "Wrong size on BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent, NewParam) == 0x000000, "Member 'BP_WrestlerPlayerControllerInGame_C_GetWrestlerAbilitySystemComponent::NewParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerControllerInGame_C_ReceiveTick \ +static_assert(alignof(BP_WrestlerPlayerControllerInGame_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_WrestlerPlayerControllerInGame_C_ReceiveTick"); \ +static_assert(sizeof(BP_WrestlerPlayerControllerInGame_C_ReceiveTick) == 0x000004, "Wrong size on BP_WrestlerPlayerControllerInGame_C_ReceiveTick"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_WrestlerPlayerControllerInGame_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC \ +static_assert(alignof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC) == 0x000008, "Wrong alignment on BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC"); \ +static_assert(sizeof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC) == 0x000028, "Wrong size on BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_GetWrestlerCharacter_ReturnValue) == 0x000000, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_GetWrestlerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_IsCurrentlyTargeting_bOutIsTargeting) == 0x000008, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_IsCurrentlyTargeting_bOutIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_IsCurrentlyTargeting_OutCurrentTarget) == 0x000010, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_IsCurrentlyTargeting_OutCurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000018, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_GetDistanceTo_ReturnValue) == 0x000020, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC, CallFunc_IsValid_ReturnValue) == 0x000024, "Member 'BP_WrestlerPlayerControllerInGame_C_UpdateLockOnTargetRTPC::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerPlayerControllerInGame_C \ +static_assert(alignof(ABP_WrestlerPlayerControllerInGame_C) == 0x000008, "Wrong alignment on ABP_WrestlerPlayerControllerInGame_C"); \ +static_assert(sizeof(ABP_WrestlerPlayerControllerInGame_C) == 0x000A78, "Wrong size on ABP_WrestlerPlayerControllerInGame_C"); \ +static_assert(offsetof(ABP_WrestlerPlayerControllerInGame_C, UberGraphFrame) == 0x000A70, "Member 'ABP_WrestlerPlayerControllerInGame_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427 \ +static_assert(alignof(WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427) == 0x000008, "Wrong alignment on WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427"); \ +static_assert(sizeof(WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427) == 0x0000B0, "Wrong size on WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427"); \ +static_assert(offsetof(WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427, Payload) == 0x000000, "Member 'WBP_SideContainer_C_EventReceived_075795334293967E659D97A3D6AA4427::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0 \ +static_assert(alignof(WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0) == 0x000008, "Wrong alignment on WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0"); \ +static_assert(sizeof(WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0) == 0x0000B0, "Wrong size on WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0"); \ +static_assert(offsetof(WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0, Payload) == 0x000000, "Member 'WBP_SideContainer_C_EventReceived_6B9358634253D75A132FBD8777AF31B0::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer \ +static_assert(alignof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer) == 0x000008, "Wrong alignment on WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer"); \ +static_assert(sizeof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer) == 0x000308, "Wrong size on WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, EntryPoint) == 0x000000, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, K2Node_CustomEvent_Payload_1) == 0x000008, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, Temp_struct_Variable) == 0x0000C8, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, K2Node_CreateDelegate_OutputDelegate_1) == 0x000178, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, K2Node_CustomEvent_Payload) == 0x000188, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, Temp_struct_Variable_1) == 0x000238, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, CallFunc_GetPlayerPawn_ReturnValue) == 0x0002E8, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0002F0, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x0002F8, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, CallFunc_IsValid_ReturnValue) == 0x000300, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer, CallFunc_IsValid_ReturnValue_1) == 0x000301, "Member 'WBP_SideContainer_C_ExecuteUbergraph_WBP_SideContainer::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SideContainer_C \ +static_assert(alignof(UWBP_SideContainer_C) == 0x000008, "Wrong alignment on UWBP_SideContainer_C"); \ +static_assert(sizeof(UWBP_SideContainer_C) == 0x0003E0, "Wrong size on UWBP_SideContainer_C"); \ +static_assert(offsetof(UWBP_SideContainer_C, UberGraphFrame) == 0x0003D0, "Member 'UWBP_SideContainer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SideContainer_C, SideNotification) == 0x0003D8, "Member 'UWBP_SideContainer_C::SideNotification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall \ +static_assert(alignof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall) == 0x000008, "Wrong alignment on BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall"); \ +static_assert(sizeof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall) == 0x0002B0, "Wrong size on BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, EntryPoint) == 0x000000, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, Temp_bool_Variable) == 0x000004, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, Temp_int_Array_Index_Variable) == 0x000010, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_SpawnObject_ReturnValue) == 0x000018, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeStruct_GameplayEventData) == 0x000020, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_Event_OtherActor) == 0x0000D0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0000D8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter) == 0x000110, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_GetPlayerCharacterFromActor_OutPins) == 0x000118, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_GetPlayerCharacterFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000120, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_bSuccess_1) == 0x000128, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_SwitchEnum_CmpSuccess) == 0x000129, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_IsValid_ReturnValue) == 0x00012A, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeStruct_ApplyDamageParams) == 0x000130, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetPlayerController_ReturnValue) == 0x000158, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000160, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000168, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_IsValid_ReturnValue_1) == 0x000170, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000178, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x0001A0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0001A8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0001B0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0001B8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x0001C0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_Array_Get_Item) == 0x0001D0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetDialogueInfo_ReturnValue) == 0x0001D8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_StartCameraShake_ReturnValue) == 0x0001E0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_StartCameraShake_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeArray_Array) == 0x0001E8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeArray_Array_1) == 0x0001F8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_Array_Length_ReturnValue) == 0x000208, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_Less_IntInt_ReturnValue) == 0x00020C, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000210, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000218, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000258, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x000260, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_DynamicCast_bSuccess_2) == 0x000268, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000269, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000270, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_HasAllMatchingGameplayTags_ReturnValue) == 0x000290, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_HasAllMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x000298, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_1) == 0x0002A0, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_GetPlayerCharacterFromActor_OutPlayerCharacter_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_GetPlayerCharacterFromActor_OutPins_1) == 0x0002A8, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_GetPlayerCharacterFromActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_K2_TeleportTo_ReturnValue) == 0x0002A9, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, K2Node_SwitchEnum_CmpSuccess_1) == 0x0002AA, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall, CallFunc_IsValid_ReturnValue_2) == 0x0002AB, "Member 'BP_Trigger_Safia_Recall_C_ExecuteUbergraph_BP_Trigger_Safia_Recall::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_Trigger_Safia_Recall_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Trigger_Safia_Recall_C \ +static_assert(alignof(ABP_Trigger_Safia_Recall_C) == 0x000008, "Wrong alignment on ABP_Trigger_Safia_Recall_C"); \ +static_assert(sizeof(ABP_Trigger_Safia_Recall_C) == 0x0002F0, "Wrong size on ABP_Trigger_Safia_Recall_C"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, UberGraphFrame) == 0x000298, "Member 'ABP_Trigger_Safia_Recall_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, Box) == 0x0002A0, "Member 'ABP_Trigger_Safia_Recall_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_Trigger_Safia_Recall_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, BossCache) == 0x0002B0, "Member 'ABP_Trigger_Safia_Recall_C::BossCache' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, CameraModifier) == 0x0002B8, "Member 'ABP_Trigger_Safia_Recall_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, Recall_Player) == 0x0002C0, "Member 'ABP_Trigger_Safia_Recall_C::Recall_Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, Player_Teleport_Location) == 0x0002C8, "Member 'ABP_Trigger_Safia_Recall_C::Player_Teleport_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, Player_Character) == 0x0002E0, "Member 'ABP_Trigger_Safia_Recall_C::Player_Character' has a wrong offset!"); \ +static_assert(offsetof(ABP_Trigger_Safia_Recall_C, Input_Object) == 0x0002E8, "Member 'ABP_Trigger_Safia_Recall_C::Input_Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Rifle_C \ +static_assert(alignof(UBP_WeaponInstance_Rifle_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Rifle_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Rifle_C) == 0x000240, "Wrong size on UBP_WeaponInstance_Rifle_C"); \ + +#define DUMPER7_ASSERTS_UBP_WeaponInstance_Revolver_C \ +static_assert(alignof(UBP_WeaponInstance_Revolver_C) == 0x000008, "Wrong alignment on UBP_WeaponInstance_Revolver_C"); \ +static_assert(sizeof(UBP_WeaponInstance_Revolver_C) == 0x000240, "Wrong size on UBP_WeaponInstance_Revolver_C"); \ + +#define DUMPER7_ASSERTS_UCM_Brujah_LightningStrike_Targeting_C \ +static_assert(alignof(UCM_Brujah_LightningStrike_Targeting_C) == 0x000010, "Wrong alignment on UCM_Brujah_LightningStrike_Targeting_C"); \ +static_assert(sizeof(UCM_Brujah_LightningStrike_Targeting_C) == 0x000780, "Wrong size on UCM_Brujah_LightningStrike_Targeting_C"); \ + +#define DUMPER7_ASSERTS_CodexCollections_C_ExecuteUbergraph_CodexCollections \ +static_assert(alignof(CodexCollections_C_ExecuteUbergraph_CodexCollections) == 0x000008, "Wrong alignment on CodexCollections_C_ExecuteUbergraph_CodexCollections"); \ +static_assert(sizeof(CodexCollections_C_ExecuteUbergraph_CodexCollections) == 0x000030, "Wrong size on CodexCollections_C_ExecuteUbergraph_CodexCollections"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, EntryPoint) == 0x000000, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, K2Node_Event_InAutomata) == 0x000010, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, K2Node_Event_InState) == 0x000018, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, CallFunc_GetCodexTab_NewParam) == 0x000020, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::CallFunc_GetCodexTab_NewParam' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ExecuteUbergraph_CodexCollections, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000028, "Member 'CodexCollections_C_ExecuteUbergraph_CodexCollections::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexCollections_C_GetCodexTab \ +static_assert(alignof(CodexCollections_C_GetCodexTab) == 0x000008, "Wrong alignment on CodexCollections_C_GetCodexTab"); \ +static_assert(sizeof(CodexCollections_C_GetCodexTab) == 0x000038, "Wrong size on CodexCollections_C_GetCodexTab"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, NewParam) == 0x000000, "Member 'CodexCollections_C_GetCodexTab::NewParam' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'CodexCollections_C_GetCodexTab::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, K2Node_DynamicCast_AsWrestler_Character) == 0x000010, "Member 'CodexCollections_C_GetCodexTab::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'CodexCollections_C_GetCodexTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000020, "Member 'CodexCollections_C_GetCodexTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, K2Node_DynamicCast_bSuccess_1) == 0x000028, "Member 'CodexCollections_C_GetCodexTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, CallFunc_GetProperty_ReturnValue) == 0x00002C, "Member 'CodexCollections_C_GetCodexTab::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_GetCodexTab, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000034, "Member 'CodexCollections_C_GetCodexTab::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CodexCollections_C_ReceiveExecute \ +static_assert(alignof(CodexCollections_C_ReceiveExecute) == 0x000008, "Wrong alignment on CodexCollections_C_ReceiveExecute"); \ +static_assert(sizeof(CodexCollections_C_ReceiveExecute) == 0x000010, "Wrong size on CodexCollections_C_ReceiveExecute"); \ +static_assert(offsetof(CodexCollections_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CodexCollections_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CodexCollections_C_ReceiveExecute, InState) == 0x000008, "Member 'CodexCollections_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCodexCollections_C \ +static_assert(alignof(UCodexCollections_C) == 0x000008, "Wrong alignment on UCodexCollections_C"); \ +static_assert(sizeof(UCodexCollections_C) == 0x000110, "Wrong size on UCodexCollections_C"); \ +static_assert(offsetof(UCodexCollections_C, UberGraphFrame) == 0x000088, "Member 'UCodexCollections_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCodexCollections_C, CodexUnlock) == 0x000090, "Member 'UCodexCollections_C::CodexUnlock' has a wrong offset!"); \ +static_assert(offsetof(UCodexCollections_C, CodexNotification) == 0x0000A0, "Member 'UCodexCollections_C::CodexNotification' has a wrong offset!"); \ +static_assert(offsetof(UCodexCollections_C, CodexNameID) == 0x0000F8, "Member 'UCodexCollections_C::CodexNameID' has a wrong offset!"); \ +static_assert(offsetof(UCodexCollections_C, bHasNotification) == 0x000108, "Member 'UCodexCollections_C::bHasNotification' has a wrong offset!"); \ +static_assert(offsetof(UCodexCollections_C, Silent_Notification) == 0x000109, "Member 'UCodexCollections_C::Silent_Notification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer \ +static_assert(alignof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer) == 0x000008, "Wrong alignment on TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer"); \ +static_assert(sizeof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer) == 0x000070, "Wrong size on TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, EntryPoint) == 0x000000, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, K2Node_Event_InAutomata) == 0x000010, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, K2Node_Event_InState) == 0x000018, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_Array_Get_Item) == 0x000028, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, K2Node_DynamicCast_AsBP_Trigger_Safia_Recall) == 0x000060, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::K2Node_DynamicCast_AsBP_Trigger_Safia_Recall' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'TriggerSafiaRecallOnPlayer_C_ExecuteUbergraph_TriggerSafiaRecallOnPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerSafiaRecallOnPlayer_C_ReceiveExecute \ +static_assert(alignof(TriggerSafiaRecallOnPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on TriggerSafiaRecallOnPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(TriggerSafiaRecallOnPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on TriggerSafiaRecallOnPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TriggerSafiaRecallOnPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerSafiaRecallOnPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'TriggerSafiaRecallOnPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTriggerSafiaRecallOnPlayer_C \ +static_assert(alignof(UTriggerSafiaRecallOnPlayer_C) == 0x000008, "Wrong alignment on UTriggerSafiaRecallOnPlayer_C"); \ +static_assert(sizeof(UTriggerSafiaRecallOnPlayer_C) == 0x0000A0, "Wrong size on UTriggerSafiaRecallOnPlayer_C"); \ +static_assert(offsetof(UTriggerSafiaRecallOnPlayer_C, UberGraphFrame) == 0x000088, "Member 'UTriggerSafiaRecallOnPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTriggerSafiaRecallOnPlayer_C, RecalZone) == 0x000090, "Member 'UTriggerSafiaRecallOnPlayer_C::RecalZone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_BindEvents \ +static_assert(alignof(WBP_MultipleEndings_C_BindEvents) == 0x000004, "Wrong alignment on WBP_MultipleEndings_C_BindEvents"); \ +static_assert(sizeof(WBP_MultipleEndings_C_BindEvents) == 0x000060, "Wrong size on WBP_MultipleEndings_C_BindEvents"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate_1) == 0x000010, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate_2) == 0x000020, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate_3) == 0x000030, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate_4) == 0x000040, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_BindEvents, K2Node_CreateDelegate_OutputDelegate_5) == 0x000050, "Member 'WBP_MultipleEndings_C_BindEvents::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings \ +static_assert(alignof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings"); \ +static_assert(sizeof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings) == 0x000088, "Wrong size on WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, EntryPoint) == 0x000000, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, CallFunc_GetCurrentStoryHandle_ReturnValue) == 0x000010, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::CallFunc_GetCurrentStoryHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, K2Node_Event_MyGeometry) == 0x000024, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, K2Node_Event_InDeltaTime) == 0x00005C, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, K2Node_CreateDelegate_OutputDelegate_1) == 0x000060, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, K2Node_CustomEvent_bInPaused) == 0x000070, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, CallFunc_GetHud_ReturnValue) == 0x000078, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'WBP_MultipleEndings_C_ExecuteUbergraph_WBP_MultipleEndings::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_HideVideo \ +static_assert(alignof(WBP_MultipleEndings_C_HideVideo) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_HideVideo"); \ +static_assert(sizeof(WBP_MultipleEndings_C_HideVideo) == 0x000010, "Wrong size on WBP_MultipleEndings_C_HideVideo"); \ +static_assert(offsetof(WBP_MultipleEndings_C_HideVideo, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'WBP_MultipleEndings_C_HideVideo::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_HideVideo, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WBP_MultipleEndings_C_HideVideo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_IsVideoPlaying \ +static_assert(alignof(WBP_MultipleEndings_C_IsVideoPlaying) == 0x000001, "Wrong alignment on WBP_MultipleEndings_C_IsVideoPlaying"); \ +static_assert(sizeof(WBP_MultipleEndings_C_IsVideoPlaying) == 0x000001, "Wrong size on WBP_MultipleEndings_C_IsVideoPlaying"); \ +static_assert(offsetof(WBP_MultipleEndings_C_IsVideoPlaying, IsPlaying) == 0x000000, "Member 'WBP_MultipleEndings_C_IsVideoPlaying::IsPlaying' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_On_Sequence_Camera_Cut \ +static_assert(alignof(WBP_MultipleEndings_C_On_Sequence_Camera_Cut) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_On_Sequence_Camera_Cut"); \ +static_assert(sizeof(WBP_MultipleEndings_C_On_Sequence_Camera_Cut) == 0x000008, "Wrong size on WBP_MultipleEndings_C_On_Sequence_Camera_Cut"); \ +static_assert(offsetof(WBP_MultipleEndings_C_On_Sequence_Camera_Cut, CameraComponent) == 0x000000, "Member 'WBP_MultipleEndings_C_On_Sequence_Camera_Cut::CameraComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_On_Sequence_Play \ +static_assert(alignof(WBP_MultipleEndings_C_On_Sequence_Play) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_On_Sequence_Play"); \ +static_assert(sizeof(WBP_MultipleEndings_C_On_Sequence_Play) == 0x000008, "Wrong size on WBP_MultipleEndings_C_On_Sequence_Play"); \ +static_assert(offsetof(WBP_MultipleEndings_C_On_Sequence_Play, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'WBP_MultipleEndings_C_On_Sequence_Play::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_OnGamePausedChanged_Event \ +static_assert(alignof(WBP_MultipleEndings_C_OnGamePausedChanged_Event) == 0x000001, "Wrong alignment on WBP_MultipleEndings_C_OnGamePausedChanged_Event"); \ +static_assert(sizeof(WBP_MultipleEndings_C_OnGamePausedChanged_Event) == 0x000001, "Wrong size on WBP_MultipleEndings_C_OnGamePausedChanged_Event"); \ +static_assert(offsetof(WBP_MultipleEndings_C_OnGamePausedChanged_Event, bInPaused) == 0x000000, "Member 'WBP_MultipleEndings_C_OnGamePausedChanged_Event::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_Play_Video \ +static_assert(alignof(WBP_MultipleEndings_C_Play_Video) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_Play_Video"); \ +static_assert(sizeof(WBP_MultipleEndings_C_Play_Video) == 0x000018, "Wrong size on WBP_MultipleEndings_C_Play_Video"); \ +static_assert(offsetof(WBP_MultipleEndings_C_Play_Video, SequenceName) == 0x000000, "Member 'WBP_MultipleEndings_C_Play_Video::SequenceName' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_Play_Video, ReturnValue) == 0x000010, "Member 'WBP_MultipleEndings_C_Play_Video::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_PlaySequence \ +static_assert(alignof(WBP_MultipleEndings_C_PlaySequence) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_PlaySequence"); \ +static_assert(sizeof(WBP_MultipleEndings_C_PlaySequence) == 0x000090, "Wrong size on WBP_MultipleEndings_C_PlaySequence"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, SequenceKey) == 0x000000, "Member 'WBP_MultipleEndings_C_PlaySequence::SequenceKey' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, K2Node_MakeStruct_MovieSceneSequencePlaybackSettings) == 0x000010, "Member 'WBP_MultipleEndings_C_PlaySequence::K2Node_MakeStruct_MovieSceneSequencePlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_Map_Find_Value) == 0x000030, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_Map_Find_ReturnValue) == 0x000058, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000060, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, K2Node_DynamicCast_AsLevel_Sequence) == 0x000068, "Member 'WBP_MultipleEndings_C_PlaySequence::K2Node_DynamicCast_AsLevel_Sequence' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'WBP_MultipleEndings_C_PlaySequence::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_CreateLevelSequencePlayer_OutActor) == 0x000078, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_CreateLevelSequencePlayer_OutActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_CreateLevelSequencePlayer_ReturnValue) == 0x000080, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_CreateLevelSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_PlaySequence, CallFunc_GetSequencePlayer_ReturnValue) == 0x000088, "Member 'WBP_MultipleEndings_C_PlaySequence::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_SetVideoVisibility \ +static_assert(alignof(WBP_MultipleEndings_C_SetVideoVisibility) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_SetVideoVisibility"); \ +static_assert(sizeof(WBP_MultipleEndings_C_SetVideoVisibility) == 0x000018, "Wrong size on WBP_MultipleEndings_C_SetVideoVisibility"); \ +static_assert(offsetof(WBP_MultipleEndings_C_SetVideoVisibility, InVisibility) == 0x000000, "Member 'WBP_MultipleEndings_C_SetVideoVisibility::InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_SetVideoVisibility, SubtitlesOn) == 0x000008, "Member 'WBP_MultipleEndings_C_SetVideoVisibility::SubtitlesOn' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_SetVideoVisibility, CallFunc_GetProperty_ReturnValue) == 0x000010, "Member 'WBP_MultipleEndings_C_SetVideoVisibility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_StopVideoSequence \ +static_assert(alignof(WBP_MultipleEndings_C_StopVideoSequence) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_StopVideoSequence"); \ +static_assert(sizeof(WBP_MultipleEndings_C_StopVideoSequence) == 0x000008, "Wrong size on WBP_MultipleEndings_C_StopVideoSequence"); \ +static_assert(offsetof(WBP_MultipleEndings_C_StopVideoSequence, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000000, "Member 'WBP_MultipleEndings_C_StopVideoSequence::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_Tick \ +static_assert(alignof(WBP_MultipleEndings_C_Tick) == 0x000004, "Wrong alignment on WBP_MultipleEndings_C_Tick"); \ +static_assert(sizeof(WBP_MultipleEndings_C_Tick) == 0x00003C, "Wrong size on WBP_MultipleEndings_C_Tick"); \ +static_assert(offsetof(WBP_MultipleEndings_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_MultipleEndings_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_MultipleEndings_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MultipleEndings_C_UnPauseVideoSequence \ +static_assert(alignof(WBP_MultipleEndings_C_UnPauseVideoSequence) == 0x000008, "Wrong alignment on WBP_MultipleEndings_C_UnPauseVideoSequence"); \ +static_assert(sizeof(WBP_MultipleEndings_C_UnPauseVideoSequence) == 0x000030, "Wrong size on WBP_MultipleEndings_C_UnPauseVideoSequence"); \ +static_assert(offsetof(WBP_MultipleEndings_C_UnPauseVideoSequence, NewLocalVar) == 0x000000, "Member 'WBP_MultipleEndings_C_UnPauseVideoSequence::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(WBP_MultipleEndings_C_UnPauseVideoSequence, Sequence) == 0x000008, "Member 'WBP_MultipleEndings_C_UnPauseVideoSequence::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MultipleEndings_C \ +static_assert(alignof(UWBP_MultipleEndings_C) == 0x000008, "Wrong alignment on UWBP_MultipleEndings_C"); \ +static_assert(sizeof(UWBP_MultipleEndings_C) == 0x000398, "Wrong size on UWBP_MultipleEndings_C"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, UberGraphFrame) == 0x0002F8, "Member 'UWBP_MultipleEndings_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, DialogueNameText) == 0x000300, "Member 'UWBP_MultipleEndings_C::DialogueNameText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, DialogueStoryText) == 0x000308, "Member 'UWBP_MultipleEndings_C::DialogueStoryText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, MediaImage) == 0x000310, "Member 'UWBP_MultipleEndings_C::MediaImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, StoryHandle) == 0x000318, "Member 'UWBP_MultipleEndings_C::StoryHandle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, MulEndConfig) == 0x000320, "Member 'UWBP_MultipleEndings_C::MulEndConfig' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, LevelSequenceMap) == 0x000328, "Member 'UWBP_MultipleEndings_C::LevelSequenceMap' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, Sequence_Player) == 0x000378, "Member 'UWBP_MultipleEndings_C::Sequence_Player' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, IsSequencePlaying) == 0x000380, "Member 'UWBP_MultipleEndings_C::IsSequencePlaying' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MultipleEndings_C, WhenPausedTime) == 0x000384, "Member 'UWBP_MultipleEndings_C::WhenPausedTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Interrupt_HeavyAttack_C \ +static_assert(alignof(UGA_Enemy_Interrupt_HeavyAttack_C) == 0x000008, "Wrong alignment on UGA_Enemy_Interrupt_HeavyAttack_C"); \ +static_assert(sizeof(UGA_Enemy_Interrupt_HeavyAttack_C) == 0x0006D8, "Wrong size on UGA_Enemy_Interrupt_HeavyAttack_C"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_Anim_Fade \ +static_assert(alignof(WBP_AwernessIndicator_C_Anim_Fade) == 0x000001, "Wrong alignment on WBP_AwernessIndicator_C_Anim_Fade"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_Anim_Fade) == 0x000001, "Wrong size on WBP_AwernessIndicator_C_Anim_Fade"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Anim_Fade, Fade_IN) == 0x000000, "Member 'WBP_AwernessIndicator_C_Anim_Fade::Fade_IN' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator \ +static_assert(alignof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator) == 0x000008, "Wrong alignment on WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator) == 0x0000D0, "Wrong size on WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, EntryPoint) == 0x000000, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, K2Node_Event_MyGeometry) == 0x000004, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, K2Node_Event_InDeltaTime) == 0x00003C, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, K2Node_Event_bInStatus) == 0x000040, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, K2Node_CustomEvent_Fade_IN) == 0x000041, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::K2Node_CustomEvent_Fade_IN' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_PlayAnimation_ReturnValue) == 0x000048, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_PlayAnimation_ReturnValue_1) == 0x000050, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000058, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_IsAnimationPlaying_ReturnValue_1) == 0x000059, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_IsAnimationPlaying_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_PlayAnimation_ReturnValue_2) == 0x000060, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_PlayAnimation_ReturnValue_3) == 0x000068, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_BooleanOR_ReturnValue) == 0x000070, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000078, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_GetAIController_ReturnValue) == 0x000088, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_WasLastStimulusSight_ReturnValue) == 0x000090, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_WasLastStimulusSight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_IsValid_ReturnValue_1) == 0x000091, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_GetDetectionProportion_ReturnValue) == 0x000094, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_GetDetectionProportion_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, Temp_delegate_Variable) == 0x000098, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_GetIsAware_ReturnValue) == 0x0000A9, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_GetIsAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_GetIsDetected_ReturnValue) == 0x0000AA, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_GetIsDetected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, Temp_delegate_Variable_1) == 0x0000AC, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x0000BC, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_Greater_IntInt_ReturnValue) == 0x0000C0, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_Not_PreBool_ReturnValue) == 0x0000C1, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x0000C8, "Member 'WBP_AwernessIndicator_C_ExecuteUbergraph_WBP_AwernessIndicator::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_Set_Indicator_to_Dirty \ +static_assert(alignof(WBP_AwernessIndicator_C_Set_Indicator_to_Dirty) == 0x000008, "Wrong alignment on WBP_AwernessIndicator_C_Set_Indicator_to_Dirty"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_Set_Indicator_to_Dirty) == 0x000028, "Wrong size on WBP_AwernessIndicator_C_Set_Indicator_to_Dirty"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Set_Indicator_to_Dirty, EnemyPos) == 0x000000, "Member 'WBP_AwernessIndicator_C_Set_Indicator_to_Dirty::EnemyPos' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Set_Indicator_to_Dirty, AwernessProportion) == 0x000018, "Member 'WBP_AwernessIndicator_C_Set_Indicator_to_Dirty::AwernessProportion' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Set_Indicator_to_Dirty, EnemyAwernessTag) == 0x000020, "Member 'WBP_AwernessIndicator_C_Set_Indicator_to_Dirty::EnemyAwernessTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_SetFillingBar \ +static_assert(alignof(WBP_AwernessIndicator_C_SetFillingBar) == 0x000010, "Wrong alignment on WBP_AwernessIndicator_C_SetFillingBar"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_SetFillingBar) == 0x000C10, "Wrong size on WBP_AwernessIndicator_C_SetFillingBar"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, Temp_bool_Variable) == 0x000000, "Member 'WBP_AwernessIndicator_C_SetFillingBar::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, Temp_bool_Variable_1) == 0x000001, "Member 'WBP_AwernessIndicator_C_SetFillingBar::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetIsDetected_ReturnValue) == 0x000002, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetIsDetected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, Temp_bool_Variable_2) == 0x000010, "Member 'WBP_AwernessIndicator_C_SetFillingBar::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000011, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000012, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_BooleanOR_ReturnValue) == 0x000013, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000028, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000030, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetIsAware_ReturnValue) == 0x000038, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetIsAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, Temp_bool_Variable_3) == 0x000039, "Member 'WBP_AwernessIndicator_C_SetFillingBar::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Default) == 0x000040, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetIsAware_ReturnValue_1) == 0x0002D0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetIsAware_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Default_1) == 0x0002E0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetIsDetected_ReturnValue_1) == 0x000570, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetIsDetected_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Default_2) == 0x000580, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Default_3) == 0x000810, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, Temp_bool_Variable_4) == 0x000AA0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetDetectionProportion_ReturnValue) == 0x000AA4, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetDetectionProportion_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000AA8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Default_4) == 0x000AB0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FClamp_ReturnValue) == 0x000AB8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_MakeStruct_GameplayEventData) == 0x000AC0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000B70, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FInterpTo_ReturnValue) == 0x000B78, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_GetAwarnessProportion_ReturnValue) == 0x000B80, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_GetAwarnessProportion_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000B88, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FClamp_ReturnValue_1) == 0x000B90, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x000B98, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FMin_ReturnValue) == 0x000BA0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FInterpTo_ReturnValue_1) == 0x000BA8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000BB0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, K2Node_Select_Option_1_ImplicitCast) == 0x000BB8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000BC0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x000BC8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FInterpTo_Current_ImplicitCast) == 0x000BD0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FInterpTo_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FMin_A_ImplicitCast) == 0x000BD8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FMin_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_FInterpTo_Current_ImplicitCast_1) == 0x000BE0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_FInterpTo_Current_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000BE8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_SetPercent_InPercent_ImplicitCast) == 0x000BF0, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_SetPercent_InPercent_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000BF8, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBar, CallFunc_SetPercent_InPercent_ImplicitCast_1) == 0x000C00, "Member 'WBP_AwernessIndicator_C_SetFillingBar::CallFunc_SetPercent_InPercent_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_SetFillingBarVisuals \ +static_assert(alignof(WBP_AwernessIndicator_C_SetFillingBarVisuals) == 0x000008, "Wrong alignment on WBP_AwernessIndicator_C_SetFillingBarVisuals"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_SetFillingBarVisuals) == 0x000020, "Wrong size on WBP_AwernessIndicator_C_SetFillingBarVisuals"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_GetController_ReturnValue) == 0x000000, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, K2Node_DynamicCast_AsAIController) == 0x000010, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::K2Node_DynamicCast_AsAIController' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_WasLastStimulusSight_ReturnValue) == 0x000019, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_WasLastStimulusSight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_AIHasStateTag_ReturnValue) == 0x00001A, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_AIHasStateTag_ReturnValue_1) == 0x00001B, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_AIHasStateTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_AIHasStateTag_ReturnValue_2) == 0x00001C, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_AIHasStateTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetFillingBarVisuals, CallFunc_AIHasStateTag_ReturnValue_3) == 0x00001D, "Member 'WBP_AwernessIndicator_C_SetFillingBarVisuals::CallFunc_AIHasStateTag_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_SetRotation \ +static_assert(alignof(WBP_AwernessIndicator_C_SetRotation) == 0x000008, "Wrong alignment on WBP_AwernessIndicator_C_SetRotation"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_SetRotation) == 0x0001A0, "Wrong size on WBP_AwernessIndicator_C_SetRotation"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Square_ReturnValue) == 0x000000, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_ReturnValue) == 0x000010, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000018, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000020, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MakeVector2D_ReturnValue) == 0x000040, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_GetPlayerController_ReturnValue) == 0x000050, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_GetPawn_ReturnValue) == 0x000058, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_GetPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000060, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000078, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_GetPlayerController_ReturnValue_1) == 0x000090, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000098, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_GetPawn_ReturnValue_1) == 0x0000A8, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_GetPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_FClamp_ReturnValue) == 0x0000B0, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_GetControlRotation_ReturnValue) == 0x0000B8, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Lerp_ReturnValue) == 0x0000D0, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Roll) == 0x0000D8, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Pitch) == 0x0000DC, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Yaw) == 0x0000E0, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Conv_DoubleToVector2D_ReturnValue) == 0x0000E8, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Conv_DoubleToVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Lerp_ReturnValue_1) == 0x0000F8, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x000100, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000110, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MakeVector2D_ReturnValue_1) == 0x000118, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000128, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_FindLookAtRotation_ReturnValue) == 0x000140, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Roll_1) == 0x000158, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Pitch_1) == 0x00015C, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_BreakRotator_Yaw_1) == 0x000160, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000168, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000170, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_Value_ImplicitCast_1) == 0x000178, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_MapRangeClamped_Value_ImplicitCast_2) == 0x000180, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_MapRangeClamped_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000188, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000190, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_SetRotation, CallFunc_SetRenderTransformAngle_Angle_ImplicitCast) == 0x000198, "Member 'WBP_AwernessIndicator_C_SetRotation::CallFunc_SetRenderTransformAngle_Angle_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_Tick \ +static_assert(alignof(WBP_AwernessIndicator_C_Tick) == 0x000004, "Wrong alignment on WBP_AwernessIndicator_C_Tick"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_Tick) == 0x00003C, "Wrong size on WBP_AwernessIndicator_C_Tick"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_AwernessIndicator_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_AwernessIndicator_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_ToggleVisibility \ +static_assert(alignof(WBP_AwernessIndicator_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_AwernessIndicator_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_AwernessIndicator_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_AwernessIndicator_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AwernessIndicator_C_UpdateIndicator \ +static_assert(alignof(WBP_AwernessIndicator_C_UpdateIndicator) == 0x000008, "Wrong alignment on WBP_AwernessIndicator_C_UpdateIndicator"); \ +static_assert(sizeof(WBP_AwernessIndicator_C_UpdateIndicator) == 0x000020, "Wrong size on WBP_AwernessIndicator_C_UpdateIndicator"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000000, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000008, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x000010, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1) == 0x000014, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000018, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_Greater_IntInt_ReturnValue) == 0x000019, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetIsAware_ReturnValue) == 0x00001A, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetIsAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetIsAware_ReturnValue_1) == 0x00001B, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetIsAware_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetIsDetected_ReturnValue) == 0x00001C, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetIsDetected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AwernessIndicator_C_UpdateIndicator, CallFunc_GetIsDetected_ReturnValue_1) == 0x00001D, "Member 'WBP_AwernessIndicator_C_UpdateIndicator::CallFunc_GetIsDetected_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AwernessIndicator_C \ +static_assert(alignof(UWBP_AwernessIndicator_C) == 0x000010, "Wrong alignment on UWBP_AwernessIndicator_C"); \ +static_assert(sizeof(UWBP_AwernessIndicator_C) == 0x001D40, "Wrong size on UWBP_AwernessIndicator_C"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, UberGraphFrame) == 0x0002F8, "Member 'UWBP_AwernessIndicator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, FadeIn) == 0x000300, "Member 'UWBP_AwernessIndicator_C::FadeIn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, FadeOut) == 0x000308, "Member 'UWBP_AwernessIndicator_C::FadeOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Aware) == 0x000310, "Member 'UWBP_AwernessIndicator_C::Aware' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Detect) == 0x000318, "Member 'UWBP_AwernessIndicator_C::Detect' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, AwarenessProgressBar) == 0x000320, "Member 'UWBP_AwernessIndicator_C::AwarenessProgressBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, BarContainerPanel) == 0x000328, "Member 'UWBP_AwernessIndicator_C::BarContainerPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, DetectionProgressBar) == 0x000330, "Member 'UWBP_AwernessIndicator_C::DetectionProgressBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, ProgressBarPanel) == 0x000338, "Member 'UWBP_AwernessIndicator_C::ProgressBarPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, InvestigatingStateTag) == 0x000340, "Member 'UWBP_AwernessIndicator_C::InvestigatingStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, SearchStateTag) == 0x000348, "Member 'UWBP_AwernessIndicator_C::SearchStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, CombateStateTag) == 0x000350, "Member 'UWBP_AwernessIndicator_C::CombateStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Relaxed) == 0x000360, "Member 'UWBP_AwernessIndicator_C::Relaxed' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Investigate) == 0x0005F0, "Member 'UWBP_AwernessIndicator_C::Investigate' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Hostile) == 0x000880, "Member 'UWBP_AwernessIndicator_C::Hostile' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, combat) == 0x000B10, "Member 'UWBP_AwernessIndicator_C::combat' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Relaxed_Noise) == 0x000DA0, "Member 'UWBP_AwernessIndicator_C::Relaxed_Noise' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Investigate_Noise) == 0x001030, "Member 'UWBP_AwernessIndicator_C::Investigate_Noise' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, hostile_Noise) == 0x0012C0, "Member 'UWBP_AwernessIndicator_C::hostile_Noise' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, combat_Noise) == 0x001550, "Member 'UWBP_AwernessIndicator_C::combat_Noise' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, PatrolStateTag) == 0x0017E0, "Member 'UWBP_AwernessIndicator_C::PatrolStateTag' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, Hidden) == 0x0017F0, "Member 'UWBP_AwernessIndicator_C::Hidden' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, WasInCombat) == 0x001A80, "Member 'UWBP_AwernessIndicator_C::WasInCombat' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, DetectionBarStyle) == 0x001A90, "Member 'UWBP_AwernessIndicator_C::DetectionBarStyle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, ValueBias) == 0x001D20, "Member 'UWBP_AwernessIndicator_C::ValueBias' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, bAwareness) == 0x001D28, "Member 'UWBP_AwernessIndicator_C::bAwareness' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, bDetected) == 0x001D29, "Member 'UWBP_AwernessIndicator_C::bDetected' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, bCombatHidden) == 0x001D2A, "Member 'UWBP_AwernessIndicator_C::bCombatHidden' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, bIsSight) == 0x001D2B, "Member 'UWBP_AwernessIndicator_C::bIsSight' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AwernessIndicator_C, PokePortion) == 0x001D30, "Member 'UWBP_AwernessIndicator_C::PokePortion' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClanPerkFunctionLibrary_C_TryActivatePassive \ +static_assert(alignof(ClanPerkFunctionLibrary_C_TryActivatePassive) == 0x000008, "Wrong alignment on ClanPerkFunctionLibrary_C_TryActivatePassive"); \ +static_assert(sizeof(ClanPerkFunctionLibrary_C_TryActivatePassive) == 0x000048, "Wrong size on ClanPerkFunctionLibrary_C_TryActivatePassive"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, PlayerPawn) == 0x000000, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::PlayerPawn' has a wrong offset!"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, __WorldContext) == 0x000008, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, Result) == 0x000010, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::Result' has a wrong offset!"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, PassiveTag) == 0x000018, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::PassiveTag' has a wrong offset!"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000038, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClanPerkFunctionLibrary_C_TryActivatePassive, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000040, "Member 'ClanPerkFunctionLibrary_C_TryActivatePassive::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClanPerkFunctionLibrary_C \ +static_assert(alignof(UClanPerkFunctionLibrary_C) == 0x000008, "Wrong alignment on UClanPerkFunctionLibrary_C"); \ +static_assert(sizeof(UClanPerkFunctionLibrary_C) == 0x000028, "Wrong size on UClanPerkFunctionLibrary_C"); \ + +#define DUMPER7_ASSERTS_TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume \ +static_assert(alignof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume) == 0x000008, "Wrong alignment on TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume"); \ +static_assert(sizeof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume) == 0x000030, "Wrong size on TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, EntryPoint) == 0x000000, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, K2Node_Event_InAutomata) == 0x000010, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, K2Node_Event_InState) == 0x000018, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, K2Node_DynamicCast_AsBP_Post_Process_Volume_Sepia) == 0x000020, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::K2Node_DynamicCast_AsBP_Post_Process_Volume_Sepia' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'TogglePostProcessVolume_C_ExecuteUbergraph_TogglePostProcessVolume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TogglePostProcessVolume_C_ReceiveExecute \ +static_assert(alignof(TogglePostProcessVolume_C_ReceiveExecute) == 0x000008, "Wrong alignment on TogglePostProcessVolume_C_ReceiveExecute"); \ +static_assert(sizeof(TogglePostProcessVolume_C_ReceiveExecute) == 0x000010, "Wrong size on TogglePostProcessVolume_C_ReceiveExecute"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TogglePostProcessVolume_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TogglePostProcessVolume_C_ReceiveExecute, InState) == 0x000008, "Member 'TogglePostProcessVolume_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTogglePostProcessVolume_C \ +static_assert(alignof(UTogglePostProcessVolume_C) == 0x000008, "Wrong alignment on UTogglePostProcessVolume_C"); \ +static_assert(sizeof(UTogglePostProcessVolume_C) == 0x0000C0, "Wrong size on UTogglePostProcessVolume_C"); \ +static_assert(offsetof(UTogglePostProcessVolume_C, UberGraphFrame) == 0x000088, "Member 'UTogglePostProcessVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTogglePostProcessVolume_C, Post_Process_Blueprint) == 0x000090, "Member 'UTogglePostProcessVolume_C::Post_Process_Blueprint' has a wrong offset!"); \ +static_assert(offsetof(UTogglePostProcessVolume_C, Enabled) == 0x0000B8, "Member 'UTogglePostProcessVolume_C::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess) == 0x000E40, "Wrong size on CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000E00, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000E08, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000E10, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x000E11, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_BooleanAND_ReturnValue) == 0x000E12, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000E13, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000E18, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000E20, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000E28, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast_1) == 0x000E30, "Member 'CM_EntrancingKiss_Pulse_C_BlueprintModifyPostProcess::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_EntrancingKiss_Pulse_C \ +static_assert(alignof(UCM_EntrancingKiss_Pulse_C) == 0x000010, "Wrong alignment on UCM_EntrancingKiss_Pulse_C"); \ +static_assert(sizeof(UCM_EntrancingKiss_Pulse_C) == 0x000780, "Wrong size on UCM_EntrancingKiss_Pulse_C"); \ +static_assert(offsetof(UCM_EntrancingKiss_Pulse_C, AlphaInDone) == 0x000771, "Member 'UCM_EntrancingKiss_Pulse_C::AlphaInDone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_LandingBoost_C \ +static_assert(alignof(UGE_LandingBoost_C) == 0x000008, "Wrong alignment on UGE_LandingBoost_C"); \ +static_assert(sizeof(UGE_LandingBoost_C) == 0x000A70, "Wrong size on UGE_LandingBoost_C"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline \ +static_assert(alignof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline) == 0x000788, "Wrong size on ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, EntryPoint) == 0x000000, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetSplinePointCount_ReturnValue) == 0x000004, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetSplinePointCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_Event_DeltaSeconds) == 0x000020, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_CustomEvent_Vector) == 0x000028, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_CustomEvent_Vector' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_IsValid_ReturnValue) == 0x000044, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_CustomEvent_TargetActor) == 0x000048, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_CustomEvent_TargetActor' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetActorRightVector_ReturnValue) == 0x000050, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetActorForwardVector_ReturnValue) == 0x000068, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetComponentByClass_ReturnValue) == 0x000080, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000090, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000C0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetLocationAtTime_ReturnValue) == 0x0000D8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetLocationAtTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_MakeHoldingForce_Force) == 0x0000F8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_MakeHoldingForce_Force' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000110, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000128, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000210, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetLocationAtTime_ReturnValue_1) == 0x000218, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetLocationAtTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_MakeHoldingForce_Force_1) == 0x000230, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_MakeHoldingForce_Force_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000248, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_CustomEvent_DestroyedActor) == 0x000260, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_CustomEvent_DestroyedActor' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_FindLocationClosestToWorldLocation_ReturnValue) == 0x000268, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_FindLocationClosestToWorldLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetDistanceAlongSplineAtLocation_ReturnValue) == 0x000280, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetDistanceAlongSplineAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetTimeAtDistanceAlongSpline_ReturnValue) == 0x000284, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetTimeAtDistanceAlongSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_FindLookAtRotation_ReturnValue) == 0x000288, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetForwardVector_ReturnValue) == 0x0002A0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_RandomFloatInRange_ReturnValue) == 0x0002B8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0002C0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x0002C8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_CreateDelegate_OutputDelegate) == 0x0002D0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_MakeVector_ReturnValue) == 0x0002E0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0002F8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_FindLookAtRotation_ReturnValue_1) == 0x000310, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_FindLookAtRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_SetWorldRotation_SweepHitResult) == 0x000328, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_SetWorldRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000410, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000428, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000440, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000458, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000470, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue_4) == 0x000488, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_SetWorldRotation_SweepHitResult_1) == 0x0004A0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_SetWorldRotation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_RandomBool_ReturnValue) == 0x000588, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, Temp_int_Variable) == 0x00058C, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000590, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000598, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0005A0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_FMax_ReturnValue) == 0x0005A8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0005B0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_IntInt_ReturnValue_1) == 0x0005C8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0005D0, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_VectorVector_ReturnValue_5) == 0x0005E8, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_RandomPointInBoundingBox_ReturnValue) == 0x000600, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_RandomPointInBoundingBox_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_AddWorldOffset_SweepHitResult) == 0x000618, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_AddWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000700, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000701, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, Temp_bool_Has_Been_Initd_Variable) == 0x000702, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, Temp_bool_IsClosed_Variable) == 0x000703, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_FindLocationClosestToWorldLocation_ReturnValue_1) == 0x000708, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_FindLocationClosestToWorldLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000720, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_VSize_ReturnValue) == 0x000738, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000740, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000748, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000750, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_VariableSet_Duration_ImplicitCast) == 0x000758, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_VariableSet_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x000760, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_VariableSet_Accumulator_ImplicitCast) == 0x000768, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_VariableSet_Accumulator_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast) == 0x000770, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GreaterEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, CallFunc_GetLocationAtTime_Time_ImplicitCast) == 0x000778, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::CallFunc_GetLocationAtTime_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline, K2Node_VariableSet_OrbitalAccumulator_ImplicitCast) == 0x000780, "Member 'ExplosiveChaser_Spline_C_ExecuteUbergraph_ExplosiveChaser_Spline::K2Node_VariableSet_OrbitalAccumulator_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_GetSplinePointCount \ +static_assert(alignof(ExplosiveChaser_Spline_C_GetSplinePointCount) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_GetSplinePointCount"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_GetSplinePointCount) == 0x000038, "Wrong size on ExplosiveChaser_Spline_C_GetSplinePointCount"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GetSplinePointCount, ReturnValue) == 0x000000, "Member 'ExplosiveChaser_Spline_C_GetSplinePointCount::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GetSplinePointCount, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000008, "Member 'ExplosiveChaser_Spline_C_GetSplinePointCount::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GetSplinePointCount, CallFunc_VSize_ReturnValue) == 0x000020, "Member 'ExplosiveChaser_Spline_C_GetSplinePointCount::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GetSplinePointCount, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'ExplosiveChaser_Spline_C_GetSplinePointCount::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GetSplinePointCount, CallFunc_FTrunc_ReturnValue) == 0x000030, "Member 'ExplosiveChaser_Spline_C_GetSplinePointCount::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_GrenadeDestroyed \ +static_assert(alignof(ExplosiveChaser_Spline_C_GrenadeDestroyed) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_GrenadeDestroyed"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_GrenadeDestroyed) == 0x000008, "Wrong size on ExplosiveChaser_Spline_C_GrenadeDestroyed"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_GrenadeDestroyed, DestroyedActor) == 0x000000, "Member 'ExplosiveChaser_Spline_C_GrenadeDestroyed::DestroyedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_MakeHoldingForce \ +static_assert(alignof(ExplosiveChaser_Spline_C_MakeHoldingForce) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_MakeHoldingForce"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_MakeHoldingForce) == 0x000178, "Wrong size on ExplosiveChaser_Spline_C_MakeHoldingForce"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, TargetPosition) == 0x000000, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::TargetPosition' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, Force) == 0x000018, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::Force' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_GetComponentVelocity_ReturnValue) == 0x000048, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_GetComponentVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_GetCenterOfMass_ReturnValue) == 0x000060, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000078, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Add_VectorVector_ReturnValue) == 0x000090, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000A8, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Vector_Distance_ReturnValue) == 0x0000C0, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000C8, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x0000D0, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_FClamp_ReturnValue) == 0x0000D8, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_FClamp_ReturnValue_1) == 0x0000E0, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0000E8, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000F8, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_MakeVector_ReturnValue) == 0x000100, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000118, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000130, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000148, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_MakeHoldingForce, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000160, "Member 'ExplosiveChaser_Spline_C_MakeHoldingForce::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_ReceiveTick \ +static_assert(alignof(ExplosiveChaser_Spline_C_ReceiveTick) == 0x000004, "Wrong alignment on ExplosiveChaser_Spline_C_ReceiveTick"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_ReceiveTick) == 0x000004, "Wrong size on ExplosiveChaser_Spline_C_ReceiveTick"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'ExplosiveChaser_Spline_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_Start \ +static_assert(alignof(ExplosiveChaser_Spline_C_Start) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_Start"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_Start) == 0x000008, "Wrong size on ExplosiveChaser_Spline_C_Start"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_Start, TargetActor) == 0x000000, "Member 'ExplosiveChaser_Spline_C_Start::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ExplosiveChaser_Spline_C_UpdateSplineEndPoint \ +static_assert(alignof(ExplosiveChaser_Spline_C_UpdateSplineEndPoint) == 0x000008, "Wrong alignment on ExplosiveChaser_Spline_C_UpdateSplineEndPoint"); \ +static_assert(sizeof(ExplosiveChaser_Spline_C_UpdateSplineEndPoint) == 0x000018, "Wrong size on ExplosiveChaser_Spline_C_UpdateSplineEndPoint"); \ +static_assert(offsetof(ExplosiveChaser_Spline_C_UpdateSplineEndPoint, Vector) == 0x000000, "Member 'ExplosiveChaser_Spline_C_UpdateSplineEndPoint::Vector' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AExplosiveChaser_Spline_C \ +static_assert(alignof(AExplosiveChaser_Spline_C) == 0x000008, "Wrong alignment on AExplosiveChaser_Spline_C"); \ +static_assert(sizeof(AExplosiveChaser_Spline_C) == 0x000358, "Wrong size on AExplosiveChaser_Spline_C"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, UberGraphFrame) == 0x000298, "Member 'AExplosiveChaser_Spline_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, Arrow) == 0x0002A0, "Member 'AExplosiveChaser_Spline_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, Orbital) == 0x0002A8, "Member 'AExplosiveChaser_Spline_C::Orbital' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, Spline) == 0x0002B0, "Member 'AExplosiveChaser_Spline_C::Spline' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, DefaultSceneRoot) == 0x0002B8, "Member 'AExplosiveChaser_Spline_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, StartLocation) == 0x0002C0, "Member 'AExplosiveChaser_Spline_C::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, EndLocation) == 0x0002D8, "Member 'AExplosiveChaser_Spline_C::EndLocation' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, SplinePointCount) == 0x0002F0, "Member 'AExplosiveChaser_Spline_C::SplinePointCount' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, SplinePointDistance) == 0x0002F8, "Member 'AExplosiveChaser_Spline_C::SplinePointDistance' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, SplinePointVariationExtent) == 0x000300, "Member 'AExplosiveChaser_Spline_C::SplinePointVariationExtent' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, MovingThrowable) == 0x000318, "Member 'AExplosiveChaser_Spline_C::MovingThrowable' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, FollowDuration) == 0x000320, "Member 'AExplosiveChaser_Spline_C::FollowDuration' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, Accumulator) == 0x000328, "Member 'AExplosiveChaser_Spline_C::Accumulator' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, ArrivedAtEnd) == 0x000330, "Member 'AExplosiveChaser_Spline_C::ArrivedAtEnd' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, OrbitalAccumulator) == 0x000340, "Member 'AExplosiveChaser_Spline_C::OrbitalAccumulator' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, OrbitalAttached) == 0x000348, "Member 'AExplosiveChaser_Spline_C::OrbitalAttached' has a wrong offset!"); \ +static_assert(offsetof(AExplosiveChaser_Spline_C, MainForce) == 0x000350, "Member 'AExplosiveChaser_Spline_C::MainForce' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep \ +static_assert(alignof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep) == 0x000008, "Wrong alignment on GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep"); \ +static_assert(sizeof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep) == 0x000030, "Wrong size on GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep, EntryPoint) == 0x000000, "Member 'GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000004, "Member 'GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_Enemy_Sidestep_C_ExecuteUbergraph_GA_Enemy_Sidestep::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Sidestep_C_PickMontage \ +static_assert(alignof(GA_Enemy_Sidestep_C_PickMontage) == 0x000008, "Wrong alignment on GA_Enemy_Sidestep_C_PickMontage"); \ +static_assert(sizeof(GA_Enemy_Sidestep_C_PickMontage) == 0x000340, "Wrong size on GA_Enemy_Sidestep_C_PickMontage"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, ReturnValue) == 0x000000, "Member 'GA_Enemy_Sidestep_C_PickMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, TryRight) == 0x000008, "Member 'GA_Enemy_Sidestep_C_PickMontage::TryRight' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, PickRight) == 0x000009, "Member 'GA_Enemy_Sidestep_C_PickMontage::PickRight' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_real_Variable) == 0x00000C, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000010, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_object_Variable) == 0x000028, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_bool_Variable) == 0x000038, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_object_Variable_1) == 0x000040, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_object_Variable_2) == 0x000048, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_bool_Variable_1) == 0x000050, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_bool_Variable_2) == 0x000051, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Not_PreBool_ReturnValue) == 0x000052, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_bool_Variable_3) == 0x000053, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, Temp_real_Variable_1) == 0x000054, "Member 'GA_Enemy_Sidestep_C_PickMontage::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000058, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, K2Node_Select_Default) == 0x000060, "Member 'GA_Enemy_Sidestep_C_PickMontage::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_GetActorRightVector_ReturnValue) == 0x000068, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000080, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000098, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B0, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000C8, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, K2Node_MakeArray_Array) == 0x0000E0, "Member 'GA_Enemy_Sidestep_C_PickMontage::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_RandomBool_ReturnValue) == 0x000108, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000110, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000128, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000210, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_bBlockingHit) == 0x000211, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_bInitialOverlap) == 0x000212, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_Time) == 0x000214, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_Distance) == 0x000218, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_Location) == 0x000220, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_ImpactPoint) == 0x000238, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_Normal) == 0x000250, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_ImpactNormal) == 0x000268, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_PhysMat) == 0x000280, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_HitActor) == 0x000288, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_HitComponent) == 0x000290, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_HitBoneName) == 0x000298, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_BoneName) == 0x0002A0, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_HitItem) == 0x0002A8, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_ElementIndex) == 0x0002AC, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_FaceIndex) == 0x0002B0, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_TraceStart) == 0x0002B8, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_BreakHitResult_TraceEnd) == 0x0002D0, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0002E8, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, K2Node_Select_Default_1) == 0x0002F0, "Member 'GA_Enemy_Sidestep_C_PickMontage::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0002F8, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_GetMontageByTag_ReturnValue) == 0x000300, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000308, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_GetMontageByTag_ReturnValue_1) == 0x000310, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_GetMontageByTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, K2Node_Select_Default_2) == 0x000318, "Member 'GA_Enemy_Sidestep_C_PickMontage::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_IsValid_ReturnValue) == 0x000320, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, K2Node_Select_Default_3) == 0x000328, "Member 'GA_Enemy_Sidestep_C_PickMontage::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000330, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_PickMontage, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000338, "Member 'GA_Enemy_Sidestep_C_PickMontage::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Sidestep_C_SidestepCheck \ +static_assert(alignof(GA_Enemy_Sidestep_C_SidestepCheck) == 0x000001, "Wrong alignment on GA_Enemy_Sidestep_C_SidestepCheck"); \ +static_assert(sizeof(GA_Enemy_Sidestep_C_SidestepCheck) == 0x000001, "Wrong size on GA_Enemy_Sidestep_C_SidestepCheck"); \ +static_assert(offsetof(GA_Enemy_Sidestep_C_SidestepCheck, ShouldSidestep) == 0x000000, "Member 'GA_Enemy_Sidestep_C_SidestepCheck::ShouldSidestep' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Sidestep_C \ +static_assert(alignof(UGA_Enemy_Sidestep_C) == 0x000008, "Wrong alignment on UGA_Enemy_Sidestep_C"); \ +static_assert(sizeof(UGA_Enemy_Sidestep_C) == 0x0006B8, "Wrong size on UGA_Enemy_Sidestep_C"); \ +static_assert(offsetof(UGA_Enemy_Sidestep_C, UberGraphFrame_GA_Enemy_Sidestep_C) == 0x0006B0, "Member 'UGA_Enemy_Sidestep_C::UberGraphFrame_GA_Enemy_Sidestep_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCameraShake_AttackImpact_Light_C \ +static_assert(alignof(UCameraShake_AttackImpact_Light_C) == 0x000010, "Wrong alignment on UCameraShake_AttackImpact_Light_C"); \ +static_assert(sizeof(UCameraShake_AttackImpact_Light_C) == 0x000230, "Wrong size on UCameraShake_AttackImpact_Light_C"); \ + +#define DUMPER7_ASSERTS_UGE_StrikeCost_C \ +static_assert(alignof(UGE_StrikeCost_C) == 0x000008, "Wrong alignment on UGE_StrikeCost_C"); \ +static_assert(sizeof(UGE_StrikeCost_C) == 0x000A70, "Wrong size on UGE_StrikeCost_C"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF \ +static_assert(alignof(GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(sizeof(GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF) == 0x0000B8, "Wrong size on GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(offsetof(GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF, EventTag) == 0x000000, "Member 'GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF, EventData) == 0x000008, "Member 'GA_Additive_Crouch_C_EventReceived_427FB11941A5841A80CB6885D09F91FF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch \ +static_assert(alignof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch"); \ +static_assert(sizeof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch) == 0x000530, "Wrong size on GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, EntryPoint) == 0x000000, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventTag_3) == 0x0000D0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventTag_2) == 0x000198, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventTag_1) == 0x000260, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventTag) == 0x000328, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, Temp_struct_Variable) == 0x0003F0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004A8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004B8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_WaitDelay_ReturnValue) == 0x0004C8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_IsValid_ReturnValue) == 0x0004D0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0004D8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_GetMontage_ReturnValue) == 0x0004E0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, K2Node_Event_bWasCancelled) == 0x0004E8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004F0, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_IsValid_ReturnValue_1) == 0x0004F8, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_GetMontage_ReturnValue_1) == 0x000500, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000508, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000510, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000518, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_ActorTimeDelay_ReturnValue) == 0x000520, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_IsValid_ReturnValue_2) == 0x000528, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_CanContinueCrouching_Result) == 0x000529, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_CanContinueCrouching_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x00052C, "Member 'GA_Additive_Crouch_C_ExecuteUbergraph_GA_Additive_Crouch::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_K2_OnEndAbility \ +static_assert(alignof(GA_Additive_Crouch_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Additive_Crouch_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Additive_Crouch_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Additive_Crouch_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Additive_Crouch_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF \ +static_assert(alignof(GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(sizeof(GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF) == 0x0000B8, "Wrong size on GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF, EventTag) == 0x000000, "Member 'GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF, EventData) == 0x000008, "Member 'GA_Additive_Crouch_C_OnBlendOut_427FB11941A5841A80CB6885D09F91FF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF \ +static_assert(alignof(GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(sizeof(GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF) == 0x0000B8, "Wrong size on GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF, EventTag) == 0x000000, "Member 'GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF, EventData) == 0x000008, "Member 'GA_Additive_Crouch_C_OnCancelled_427FB11941A5841A80CB6885D09F91FF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF \ +static_assert(alignof(GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(sizeof(GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF) == 0x0000B8, "Wrong size on GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF, EventTag) == 0x000000, "Member 'GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF, EventData) == 0x000008, "Member 'GA_Additive_Crouch_C_OnCompleted_427FB11941A5841A80CB6885D09F91FF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF \ +static_assert(alignof(GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(sizeof(GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF) == 0x0000B8, "Wrong size on GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF, EventTag) == 0x000000, "Member 'GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF, EventData) == 0x000008, "Member 'GA_Additive_Crouch_C_OnInterrupted_427FB11941A5841A80CB6885D09F91FF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_CanContinueCrouching \ +static_assert(alignof(GA_Additive_Crouch_C_CanContinueCrouching) == 0x000001, "Wrong alignment on GA_Additive_Crouch_C_CanContinueCrouching"); \ +static_assert(sizeof(GA_Additive_Crouch_C_CanContinueCrouching) == 0x00000B, "Wrong size on GA_Additive_Crouch_C_CanContinueCrouching"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, Result) == 0x000000, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, Temp_bool_Variable) == 0x000001, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_IsOwnerInCombatState_Result) == 0x000002, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_IsOwnerInCombatState_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_IsOwnerInCombatState_Result_1) == 0x000003, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_IsOwnerInCombatState_Result_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, Temp_bool_Variable_1) == 0x000004, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_IsLastSensedLocationNearby_ReturnValue) == 0x000005, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_IsLastSensedLocationNearby_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_IsOwnerMoving_Return) == 0x000006, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_IsOwnerMoving_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, K2Node_Select_Default) == 0x000007, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_IsSensedLocationBehind_Return) == 0x000008, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_IsSensedLocationBehind_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_BooleanOR_ReturnValue) == 0x000009, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_CanContinueCrouching, CallFunc_BooleanOR_ReturnValue_1) == 0x00000A, "Member 'GA_Additive_Crouch_C_CanContinueCrouching::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_IsLastSensedLocationNearby \ +static_assert(alignof(GA_Additive_Crouch_C_IsLastSensedLocationNearby) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_IsLastSensedLocationNearby"); \ +static_assert(sizeof(GA_Additive_Crouch_C_IsLastSensedLocationNearby) == 0x000068, "Wrong size on GA_Additive_Crouch_C_IsLastSensedLocationNearby"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, ReturnValue) == 0x000000, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000010, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_GetAIController_ReturnValue) == 0x000030, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000040, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_Vector_Distance_ReturnValue) == 0x000058, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsLastSensedLocationNearby, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_Additive_Crouch_C_IsLastSensedLocationNearby::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_IsOwnerInCombatState \ +static_assert(alignof(GA_Additive_Crouch_C_IsOwnerInCombatState) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_IsOwnerInCombatState"); \ +static_assert(sizeof(GA_Additive_Crouch_C_IsOwnerInCombatState) == 0x000020, "Wrong size on GA_Additive_Crouch_C_IsOwnerInCombatState"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerInCombatState, Result) == 0x000000, "Member 'GA_Additive_Crouch_C_IsOwnerInCombatState::Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerInCombatState, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'GA_Additive_Crouch_C_IsOwnerInCombatState::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerInCombatState, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_Additive_Crouch_C_IsOwnerInCombatState::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerInCombatState, CallFunc_PawnHasStateTag_ReturnValue) == 0x000018, "Member 'GA_Additive_Crouch_C_IsOwnerInCombatState::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_IsOwnerMoving \ +static_assert(alignof(GA_Additive_Crouch_C_IsOwnerMoving) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_IsOwnerMoving"); \ +static_assert(sizeof(GA_Additive_Crouch_C_IsOwnerMoving) == 0x000038, "Wrong size on GA_Additive_Crouch_C_IsOwnerMoving"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerMoving, Return) == 0x000000, "Member 'GA_Additive_Crouch_C_IsOwnerMoving::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerMoving, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Additive_Crouch_C_IsOwnerMoving::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerMoving, CallFunc_GetVelocity_ReturnValue) == 0x000010, "Member 'GA_Additive_Crouch_C_IsOwnerMoving::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerMoving, CallFunc_VSize_ReturnValue) == 0x000028, "Member 'GA_Additive_Crouch_C_IsOwnerMoving::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsOwnerMoving, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000030, "Member 'GA_Additive_Crouch_C_IsOwnerMoving::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_IsSensedLocationBehind \ +static_assert(alignof(GA_Additive_Crouch_C_IsSensedLocationBehind) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_IsSensedLocationBehind"); \ +static_assert(sizeof(GA_Additive_Crouch_C_IsSensedLocationBehind) == 0x0000B0, "Wrong size on GA_Additive_Crouch_C_IsSensedLocationBehind"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, Return) == 0x000000, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetActorForwardVector_ReturnValue) == 0x000028, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000040, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetAIController_ReturnValue) == 0x000048, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000058, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_FindLookAtRotation_ReturnValue) == 0x000070, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_GetForwardVector_ReturnValue) == 0x000088, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000A0, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_IsSensedLocationBehind, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'GA_Additive_Crouch_C_IsSensedLocationBehind::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Additive_Crouch_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Additive_Crouch_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Additive_Crouch_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_Additive_Crouch_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, CallFunc_IsLastSensedLocationNearby_ReturnValue) == 0x000071, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::CallFunc_IsLastSensedLocationNearby_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, CallFunc_IsSensedLocationBehind_Return) == 0x000072, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::CallFunc_IsSensedLocationBehind_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000073, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue_1) == 0x000074, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000075, "Member 'GA_Additive_Crouch_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_Crouch_C \ +static_assert(alignof(UGA_Additive_Crouch_C) == 0x000008, "Wrong alignment on UGA_Additive_Crouch_C"); \ +static_assert(sizeof(UGA_Additive_Crouch_C) == 0x000698, "Wrong size on UGA_Additive_Crouch_C"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, UberGraphFrame) == 0x000668, "Member 'UGA_Additive_Crouch_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, LoopMaxCout) == 0x000670, "Member 'UGA_Additive_Crouch_C::LoopMaxCout' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, LoopCount) == 0x000674, "Member 'UGA_Additive_Crouch_C::LoopCount' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, DotProductToCancel) == 0x000678, "Member 'UGA_Additive_Crouch_C::DotProductToCancel' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, TimeLimit) == 0x000680, "Member 'UGA_Additive_Crouch_C::TimeLimit' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, CrouchValidityTimer) == 0x000688, "Member 'UGA_Additive_Crouch_C::CrouchValidityTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Crouch_C, AcceptanceDistance) == 0x000690, "Member 'UGA_Additive_Crouch_C::AcceptanceDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget \ +static_assert(alignof(WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget) == 0x000008, "Wrong alignment on WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget"); \ +static_assert(sizeof(WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget) == 0x000020, "Wrong size on WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget"); \ +static_assert(offsetof(WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget, EntryPoint) == 0x000000, "Member 'WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget, Temp_delegate_Variable) == 0x000004, "Member 'WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget, CallFunc_PlayAnimation_ReturnValue) == 0x000018, "Member 'WBP_NoTarget_C_ExecuteUbergraph_WBP_NoTarget::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_NoTarget_C \ +static_assert(alignof(UWBP_NoTarget_C) == 0x000008, "Wrong alignment on UWBP_NoTarget_C"); \ +static_assert(sizeof(UWBP_NoTarget_C) == 0x0002D8, "Wrong size on UWBP_NoTarget_C"); \ +static_assert(offsetof(UWBP_NoTarget_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_NoTarget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NoTarget_C, Flash) == 0x0002C8, "Member 'UWBP_NoTarget_C::Flash' has a wrong offset!"); \ +static_assert(offsetof(UWBP_NoTarget_C, Image_0) == 0x0002D0, "Member 'UWBP_NoTarget_C::Image_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerPathPoint_C \ +static_assert(alignof(ABP_WrestlerPathPoint_C) == 0x000008, "Wrong alignment on ABP_WrestlerPathPoint_C"); \ +static_assert(sizeof(ABP_WrestlerPathPoint_C) == 0x0002D0, "Wrong size on ABP_WrestlerPathPoint_C"); \ +static_assert(offsetof(ABP_WrestlerPathPoint_C, Arrow) == 0x0002C8, "Member 'ABP_WrestlerPathPoint_C::Arrow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_WeaponFire_Cost_Rifle_C \ +static_assert(alignof(UGE_WeaponFire_Cost_Rifle_C) == 0x000008, "Wrong alignment on UGE_WeaponFire_Cost_Rifle_C"); \ +static_assert(sizeof(UGE_WeaponFire_Cost_Rifle_C) == 0x000A70, "Wrong size on UGE_WeaponFire_Cost_Rifle_C"); \ + +#define DUMPER7_ASSERTS_UGE_RangedDamage_C \ +static_assert(alignof(UGE_RangedDamage_C) == 0x000008, "Wrong alignment on UGE_RangedDamage_C"); \ +static_assert(sizeof(UGE_RangedDamage_C) == 0x000A70, "Wrong size on UGE_RangedDamage_C"); \ + +#define DUMPER7_ASSERTS_UGE_WeaponAmmoRefresh_C \ +static_assert(alignof(UGE_WeaponAmmoRefresh_C) == 0x000008, "Wrong alignment on UGE_WeaponAmmoRefresh_C"); \ +static_assert(sizeof(UGE_WeaponAmmoRefresh_C) == 0x000A70, "Wrong size on UGE_WeaponAmmoRefresh_C"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850 \ +static_assert(alignof(GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850) == 0x0000B8, "Wrong size on GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850, EventTag) == 0x000000, "Member 'GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850, EventData) == 0x000008, "Member 'GA_WeaponSwap_Base_C_EventReceived_32665B7D4CDD847FDE721A8AD46E5850::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base \ +static_assert(alignof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base) == 0x0005A0, "Wrong size on GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, EntryPoint) == 0x000000, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventTag_4) == 0x000010, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventData_4) == 0x000018, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetRangedWeapon_ReturnValue) == 0x0000C8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetRangedWeapon_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CreateDelegate_OutputDelegate) == 0x0000D4, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventTag_3) == 0x0000E4, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventData_3) == 0x0000F0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0001A0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_ApplyGameplayEffectSpecByDataTag_ReturnValue) == 0x0001A8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_ApplyGameplayEffectSpecByDataTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001B0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventTag_2) == 0x0001C0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventData_2) == 0x0001C8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventTag_1) == 0x000278, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventData_1) == 0x000280, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000330, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventTag) == 0x000340, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CustomEvent_EventData) == 0x000348, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003F8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, Temp_struct_Variable) == 0x000408, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, Temp_struct_Variable_1) == 0x0004B8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0004C0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetMontage_ReturnValue) == 0x0004C8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004D0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x0004D8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_IsValid_ReturnValue_1) == 0x0004E8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0004F0, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0004F8, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, K2Node_DynamicCast_bSuccess) == 0x000500, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_ChangeWeapon_OutOldWeapon) == 0x000508, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_ChangeWeapon_OutNewWeapon) == 0x000510, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000518, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetComponentByClass_ReturnValue) == 0x000520, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_IsValid_ReturnValue_2) == 0x000528, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetInitialWeaponInfos_Weapon) == 0x000530, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetInitialWeaponInfos_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetInitialWeaponInfos_WeaponInfos) == 0x000538, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetInitialWeaponInfos_WeaponInfos' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_GetInitialWeaponInfos_Return) == 0x000598, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_GetInitialWeaponInfos_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_SetOverrideWeapon_Return) == 0x000599, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_SetOverrideWeapon_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base, CallFunc_ApplyGameplayEffectSpecByDataTag_InAmount_ImplicitCast) == 0x00059C, "Member 'GA_WeaponSwap_Base_C_ExecuteUbergraph_GA_WeaponSwap_Base::CallFunc_ApplyGameplayEffectSpecByDataTag_InAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850 \ +static_assert(alignof(GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850) == 0x0000B8, "Wrong size on GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850, EventTag) == 0x000000, "Member 'GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850, EventData) == 0x000008, "Member 'GA_WeaponSwap_Base_C_OnBlendOut_32665B7D4CDD847FDE721A8AD46E5850::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850 \ +static_assert(alignof(GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850) == 0x0000B8, "Wrong size on GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850, EventTag) == 0x000000, "Member 'GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850, EventData) == 0x000008, "Member 'GA_WeaponSwap_Base_C_OnCancelled_32665B7D4CDD847FDE721A8AD46E5850::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850 \ +static_assert(alignof(GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850) == 0x0000B8, "Wrong size on GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850, EventTag) == 0x000000, "Member 'GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850, EventData) == 0x000008, "Member 'GA_WeaponSwap_Base_C_OnCompleted_32665B7D4CDD847FDE721A8AD46E5850::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850 \ +static_assert(alignof(GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850) == 0x000008, "Wrong alignment on GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(sizeof(GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850) == 0x0000B8, "Wrong size on GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850, EventTag) == 0x000000, "Member 'GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850, EventData) == 0x000008, "Member 'GA_WeaponSwap_Base_C_OnInterrupted_32665B7D4CDD847FDE721A8AD46E5850::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_WeaponSwap_Base_C \ +static_assert(alignof(UGA_WeaponSwap_Base_C) == 0x000008, "Wrong alignment on UGA_WeaponSwap_Base_C"); \ +static_assert(sizeof(UGA_WeaponSwap_Base_C) == 0x0006E8, "Wrong size on UGA_WeaponSwap_Base_C"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, UberGraphFrame) == 0x000668, "Member 'UGA_WeaponSwap_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, ReturnToInitialWeapon) == 0x000670, "Member 'UGA_WeaponSwap_Base_C::ReturnToInitialWeapon' has a wrong offset!"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, NoMontage) == 0x000671, "Member 'UGA_WeaponSwap_Base_C::NoMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, WeaponSwapInfos) == 0x000678, "Member 'UGA_WeaponSwap_Base_C::WeaponSwapInfos' has a wrong offset!"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, StowWeapon) == 0x0006D8, "Member 'UGA_WeaponSwap_Base_C::StowWeapon' has a wrong offset!"); \ +static_assert(offsetof(UGA_WeaponSwap_Base_C, WeaponStowComponent) == 0x0006E0, "Member 'UGA_WeaponSwap_Base_C::WeaponStowComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial \ +static_assert(alignof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial) == 0x000008, "Wrong alignment on GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial"); \ +static_assert(sizeof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial) == 0x000058, "Wrong size on GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, EntryPoint) == 0x000000, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, K2Node_Event_bWasCancelled) == 0x000004, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, K2Node_MakeStruct_StateTreeEvent) == 0x000010, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000030, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000050, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000051, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000052, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_ExecuteUbergraph_GA_MeleeWeaponSwap_ReturnToInitial::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility \ +static_assert(alignof(GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon \ +static_assert(alignof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon) == 0x000008, "Wrong alignment on GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon"); \ +static_assert(sizeof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon) == 0x000050, "Wrong size on GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, Temp_int_Array_Index_Variable) == 0x000000, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_GetAttachedActors_OutActors) == 0x000018, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_Array_Get_Item) == 0x000030, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000040, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'GA_MeleeWeaponSwap_ReturnToInitial_C_PrimeWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_MeleeWeaponSwap_ReturnToInitial_C \ +static_assert(alignof(UGA_MeleeWeaponSwap_ReturnToInitial_C) == 0x000008, "Wrong alignment on UGA_MeleeWeaponSwap_ReturnToInitial_C"); \ +static_assert(sizeof(UGA_MeleeWeaponSwap_ReturnToInitial_C) == 0x0006F0, "Wrong size on UGA_MeleeWeaponSwap_ReturnToInitial_C"); \ +static_assert(offsetof(UGA_MeleeWeaponSwap_ReturnToInitial_C, UberGraphFrame_GA_MeleeWeaponSwap_ReturnToInitial_C) == 0x0006E8, "Member 'UGA_MeleeWeaponSwap_ReturnToInitial_C::UberGraphFrame_GA_MeleeWeaponSwap_ReturnToInitial_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify \ +static_assert(alignof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify) == 0x000008, "Wrong alignment on AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify"); \ +static_assert(sizeof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify) == 0x000038, "Wrong size on AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify, MeshComponent) == 0x000008, "Member 'AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify, Animation) == 0x000010, "Member 'AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000018, "Member 'AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify, CallFunc_PostEventAtLocation_ReturnValue) == 0x000030, "Member 'AN_Audio_AkPostAtLocation_C_OnCharacterAudioNotify::CallFunc_PostEventAtLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_AkPostAtLocation_C_Received_Notify \ +static_assert(alignof(AN_Audio_AkPostAtLocation_C_Received_Notify) == 0x000008, "Wrong alignment on AN_Audio_AkPostAtLocation_C_Received_Notify"); \ +static_assert(sizeof(AN_Audio_AkPostAtLocation_C_Received_Notify) == 0x000230, "Wrong size on AN_Audio_AkPostAtLocation_C_Received_Notify"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, MeshComp) == 0x000000, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, Animation) == 0x000008, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, EventReference) == 0x000010, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, ReturnValue) == 0x000040, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Conv_ObjectToText_ReturnValue) == 0x000048, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData) == 0x000060, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_GetOwner_ReturnValue) == 0x0000B0, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_GetDisplayName_ReturnValue) == 0x0000B8, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Contains_ReturnValue) == 0x0000C8, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Conv_NameToText_ReturnValue) == 0x0000D0, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Conv_ObjectToText_ReturnValue_1) == 0x0000E8, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Conv_ObjectToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_1) == 0x000100, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_2) == 0x000150, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Conv_BoolToText_ReturnValue) == 0x0001A0, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Conv_BoolToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, K2Node_MakeStruct_FormatArgumentData_3) == 0x0001B8, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, K2Node_MakeArray_Array) == 0x000208, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_AkPostAtLocation_C_Received_Notify, CallFunc_Format_ReturnValue) == 0x000218, "Member 'AN_Audio_AkPostAtLocation_C_Received_Notify::CallFunc_Format_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_AkPostAtLocation_C \ +static_assert(alignof(UAN_Audio_AkPostAtLocation_C) == 0x000008, "Wrong alignment on UAN_Audio_AkPostAtLocation_C"); \ +static_assert(sizeof(UAN_Audio_AkPostAtLocation_C) == 0x000070, "Wrong size on UAN_Audio_AkPostAtLocation_C"); \ +static_assert(offsetof(UAN_Audio_AkPostAtLocation_C, Force_Post) == 0x000050, "Member 'UAN_Audio_AkPostAtLocation_C::Force_Post' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_AkPostAtLocation_C, Debug2D) == 0x000051, "Member 'UAN_Audio_AkPostAtLocation_C::Debug2D' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_AkPostAtLocation_C, DebugFilter) == 0x000052, "Member 'UAN_Audio_AkPostAtLocation_C::DebugFilter' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_AkPostAtLocation_C, ActorNameFilter) == 0x000058, "Member 'UAN_Audio_AkPostAtLocation_C::ActorNameFilter' has a wrong offset!"); \ +static_assert(offsetof(UAN_Audio_AkPostAtLocation_C, Debug3D) == 0x000068, "Member 'UAN_Audio_AkPostAtLocation_C::Debug3D' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_TD_TargetingBlocked_C \ +static_assert(alignof(UGE_TD_TargetingBlocked_C) == 0x000008, "Wrong alignment on UGE_TD_TargetingBlocked_C"); \ +static_assert(sizeof(UGE_TD_TargetingBlocked_C) == 0x000A70, "Wrong size on UGE_TD_TargetingBlocked_C"); \ + +#define DUMPER7_ASSERTS_UGE_TD_Killresist_C \ +static_assert(alignof(UGE_TD_Killresist_C) == 0x000008, "Wrong alignment on UGE_TD_Killresist_C"); \ +static_assert(sizeof(UGE_TD_Killresist_C) == 0x000A70, "Wrong size on UGE_TD_Killresist_C"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_Add_Recoil \ +static_assert(alignof(GA_Weapon_Fire_C_Add_Recoil) == 0x000010, "Wrong alignment on GA_Weapon_Fire_C_Add_Recoil"); \ +static_assert(sizeof(GA_Weapon_Fire_C_Add_Recoil) == 0x000100, "Wrong size on GA_Weapon_Fire_C_Add_Recoil"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_GetRangedWeapon_ReturnValue) == 0x000010, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_GetRangedWeapon_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000018, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_GetWeaponAimTransform_ReturnValue) == 0x000020, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_GetWeaponAimTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_MakeRotator_ReturnValue) == 0x000080, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_BreakTransform_Location) == 0x000098, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_BreakTransform_Rotation) == 0x0000B0, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_BreakTransform_Scale) == 0x0000C8, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_ComposeRotators_ReturnValue) == 0x0000E0, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0000F8, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Add_Recoil, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0000FC, "Member 'GA_Weapon_Fire_C_Add_Recoil::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993 \ +static_assert(alignof(GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(sizeof(GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(offsetof(GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993, EventTag) == 0x000000, "Member 'GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993, EventData) == 0x000008, "Member 'GA_Weapon_Fire_C_EventReceived_B7A3A82D4B669B5D780027940819F993::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire \ +static_assert(alignof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire"); \ +static_assert(sizeof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire) == 0x000F70, "Wrong size on GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, EntryPoint) == 0x000000, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralByte_ReturnValue) == 0x000004, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable) == 0x000008, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_1) == 0x000010, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_2) == 0x000018, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_3) == 0x000020, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_Variable) == 0x000028, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate) == 0x00002C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue) == 0x000040, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_1) == 0x000048, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_1) == 0x000060, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_byte_Variable) == 0x000068, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_SwitchEnum_CmpSuccess) == 0x000069, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_1) == 0x00006A, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_2) == 0x00006C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_3) == 0x00007C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_2) == 0x000090, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000098, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_2) == 0x0000B0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_object_Variable) == 0x0000B8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000C8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_3) == 0x0000D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_5) == 0x0000E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_3) == 0x0000F0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_4) == 0x0000F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_Variable_1) == 0x000100, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_4) == 0x000101, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventTag) == 0x000104, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventData) == 0x000110, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_IsClosed_Variable) == 0x0001C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_6) == 0x0001C4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_Has_Been_Initd_Variable) == 0x0001D4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventTag_1) == 0x0001D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventData_1) == 0x0001E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_4) == 0x000290, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_7) == 0x000298, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0002A8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_5) == 0x0002B0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetComponentByClass_ReturnValue) == 0x0002B8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_5) == 0x0002C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_6) == 0x0002C8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_IsClosed_Variable_1) == 0x0002D0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_Has_Been_Initd_Variable_1) == 0x0002D1, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_int_Variable) == 0x0002D4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0002D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0002E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_6) == 0x0002E8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetShotFireRate_ReturnValue) == 0x0002EC, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetShotFireRate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetMontage_ReturnValue) == 0x0002F0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0002F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000300, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_7) == 0x000308, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Subtract_IntInt_ReturnValue) == 0x00030C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_Event_bWasCancelled) == 0x000310, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_8) == 0x000311, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_byte_Variable_1) == 0x000312, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_byte_Variable_2) == 0x000313, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventTag_2) == 0x000314, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventData_2) == 0x000320, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetShotDeviation_ReturnValue) == 0x0003D0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetShotDeviation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0003D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0003E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_MakeArray_Array) == 0x0003E8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0003F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000400, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_ReturnValue) == 0x000404, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_ReturnValue) == 0x000408, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_8) == 0x00040C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Min_ReturnValue) == 0x00041C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Min_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000420, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000428, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x00042C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000430, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetDamagePerProjectile_ReturnValue) == 0x000434, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetDamagePerProjectile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BooleanAND_ReturnValue) == 0x000438, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_9) == 0x000439, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetMuzzleLocation_ReturnValue) == 0x000440, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetMuzzleLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetProjectilesPerShot_ReturnValue) == 0x000458, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetProjectilesPerShot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetProjectileSpeed_ReturnValue) == 0x00045C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetProjectileSpeed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetMaxDistance_ReturnValue) == 0x000460, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetMaxDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetWeaponAimRotation_ProjectileRotation) == 0x000468, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetWeaponAimRotation_ProjectileRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_IntInt_ReturnValue) == 0x000480, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_9) == 0x000484, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Greater_IntInt_ReturnValue) == 0x000494, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_IntInt_ReturnValue_1) == 0x000498, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetPriorityActor_PriorityActor) == 0x0004A0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetPriorityActor_PriorityActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_10) == 0x0004A8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetPriorityActor_PriorityActor_1) == 0x0004B0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetPriorityActor_PriorityActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_11) == 0x0004B8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_int_Variable_1) == 0x0004BC, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0004C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_byte_Variable_3) == 0x0004C8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0004D0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_SwitchEnum_CmpSuccess_1) == 0x0004E8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetPriorityActor_PriorityActor_2) == 0x0004F0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetPriorityActor_PriorityActor_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_5) == 0x0004F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetMuzzleLocation_ReturnValue_1) == 0x000500, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetMuzzleLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_12) == 0x000518, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetPriorityActor_PriorityActor_3) == 0x000520, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetPriorityActor_PriorityActor_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_13) == 0x000528, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000530, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_MakeArray_Array_1) == 0x000538, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_MakeArray_Array_2) == 0x000548, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000558, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventTag_3) == 0x000570, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventData_3) == 0x000578, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000628, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_6) == 0x000630, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAIController_ReturnValue) == 0x000638, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000640, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess) == 0x000650, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_14) == 0x000651, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000658, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000660, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess_1) == 0x000670, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_10) == 0x000674, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetGameTeamId_ReturnValue) == 0x000684, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000685, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000688, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WantsMelee_ReturnValue) == 0x0006A8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WantsMelee_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0006B0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0006B8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x0006C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Not_PreBool_ReturnValue) == 0x0006C4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BooleanAND_ReturnValue_1) == 0x0006C5, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_11) == 0x0006C8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x0006D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x0006E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomBoolWithWeight_ReturnValue_1) == 0x0006E8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomBoolWithWeight_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_PlayerApproaching_Approaching) == 0x0006E9, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_PlayerApproaching_Approaching' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_PlayerApproaching_Approaching_1) == 0x0006EA, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_PlayerApproaching_Approaching_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_real_Variable_7) == 0x0006F0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_Select_Default) == 0x0006F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000700, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventTag_4) == 0x000708, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CustomEvent_EventData_4) == 0x000710, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAIController_ReturnValue_1) == 0x0007C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0007C8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2) == 0x0007D0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess_2) == 0x0007E0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0007E8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetGameTeamId_ReturnValue_1) == 0x000808, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetGameTeamId_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000810, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000820, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000828, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_int_Variable_2) == 0x000830, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAIController_ReturnValue_2) == 0x000838, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000840, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000858, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_IntInt_ReturnValue_2) == 0x00085C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000860, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomUnitVector_ReturnValue) == 0x000878, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000890, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0008A8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0008C0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_VectorVector_ReturnValue) == 0x0008D8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_bool_Variable_2) == 0x0008F0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x0008F8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_Select_Default_1) == 0x000900, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_WaitDelay_ReturnValue_7) == 0x000908, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_WaitDelay_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_15) == 0x000910, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_16) == 0x000911, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_PlayerApproaching_Approaching_2) == 0x000912, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_PlayerApproaching_Approaching_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomBoolWithWeight_ReturnValue_2) == 0x000913, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomBoolWithWeight_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_12) == 0x000914, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000928, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000938, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000940, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2) == 0x000948, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_ReturnValue_2) == 0x00094C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000950, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_ReturnValue_1) == 0x000968, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000970, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000988, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000990, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_MakeArray_Array_3) == 0x000998, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x0009A8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0009B8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000AA0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x000AA4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_CreateDelegate_OutputDelegate_13) == 0x000AAC, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000AC0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000AC8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3) == 0x000AD0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetFloatAttribute_ReturnValue_3) == 0x000AD4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetFloatAttribute_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_ReturnValue_2) == 0x000AD8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_K2_GetCharacterIsOnScreen_OutPins) == 0x000ADC, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_K2_GetCharacterIsOnScreen_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_LessEqual_IntInt_ReturnValue_1) == 0x000ADD, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_LessEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_SwitchEnum_CmpSuccess_2) == 0x000ADE, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000AE0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000B00, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000B08, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetRangedWeapon_ReturnValue) == 0x000B10, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetRangedWeapon_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetProjectileClass_ReturnValue) == 0x000B18, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetProjectileClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralName_ReturnValue) == 0x000B20, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_MakeStruct_RangedProjectileParams) == 0x000B28, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_MakeStruct_RangedProjectileParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000B88, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetBlackboard_ReturnValue) == 0x000B90, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetValueAsBool_ReturnValue) == 0x000B98, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetValueAsBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x000BA0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000BA8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetAIController_ReturnValue_3) == 0x000BB0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x000BB8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetLastSensedLocation_ReturnValue_1) == 0x000BC0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetLastSensedLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000BD8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000BF0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_int_Variable_3) == 0x000C08, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000C10, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000C28, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x000C30, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x000D18, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_bBlockingHit) == 0x000D19, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_bInitialOverlap) == 0x000D1A, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_Time) == 0x000D1C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_Distance) == 0x000D20, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_Location) == 0x000D28, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_ImpactPoint) == 0x000D40, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_Normal) == 0x000D58, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_ImpactNormal) == 0x000D70, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_PhysMat) == 0x000D88, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_HitActor) == 0x000D90, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_HitComponent) == 0x000D98, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_HitBoneName) == 0x000DA0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_BoneName) == 0x000DA8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_HitItem) == 0x000DB0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_ElementIndex) == 0x000DB4, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_FaceIndex) == 0x000DB8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_TraceStart) == 0x000DC0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BreakHitResult_TraceEnd) == 0x000DD8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x000DF0, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000DF8, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess_3) == 0x000E08, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000E09, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000E10, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess_4) == 0x000E20, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000E28, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_DynamicCast_bSuccess_5) == 0x000E30, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_IsValid_ReturnValue_17) == 0x000E31, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000E34, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_MatchesCharacterTag_ReturnValue) == 0x000E3C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_MatchesCharacterTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetWeaponAmmoCount_MaxAmmo) == 0x000E40, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetWeaponAmmoCount_MaxAmmo' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_struct_Variable) == 0x000E44, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, Temp_struct_Variable_1) == 0x000E50, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000F00, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GetShotsPerBurst_ReturnValue) == 0x000F04, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GetShotsPerBurst_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_IntInt_ReturnValue_3) == 0x000F08, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x000F0C, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000F10, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Max_ReturnValue) == 0x000F14, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Min_ReturnValue_1) == 0x000F18, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Min_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000F20, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000F28, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, K2Node_Select_Option_1_ImplicitCast) == 0x000F30, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_A_ImplicitCast) == 0x000F38, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000F40, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000F48, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_RandomBoolWithWeight_Weight_ImplicitCast) == 0x000F50, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_RandomBoolWithWeight_Weight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_A_ImplicitCast_1) == 0x000F58, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x000F60, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire, CallFunc_Round_A_ImplicitCast_2) == 0x000F68, "Member 'GA_Weapon_Fire_C_ExecuteUbergraph_GA_Weapon_Fire::CallFunc_Round_A_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_Get_Recoil_Walk_Location \ +static_assert(alignof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_Get_Recoil_Walk_Location"); \ +static_assert(sizeof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location) == 0x000110, "Wrong size on GA_Weapon_Fire_C_Get_Recoil_Walk_Location"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, TargetLocationVector) == 0x000000, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::TargetLocationVector' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, RecoilAdditiveWalk) == 0x000018, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::RecoilAdditiveWalk' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, ShotWalkMultiplier) == 0x000030, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::ShotWalkMultiplier' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_GetMuzzleLocation_ReturnValue) == 0x000038, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_GetMuzzleLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000050, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_VSize_ReturnValue) == 0x000070, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_GetFloatValue_ReturnValue) == 0x000078, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000080, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000098, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x0000A8, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_RandomFloatInRange_ReturnValue) == 0x0000B0, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000B8, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000C0, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0000C8, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_MakeVector_ReturnValue) == 0x0000D0, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_Add_VectorVector_ReturnValue) == 0x0000E8, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000100, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_Get_Recoil_Walk_Location, K2Node_VariableSet_ShotWalkMultiplier_ImplicitCast) == 0x000108, "Member 'GA_Weapon_Fire_C_Get_Recoil_Walk_Location::K2Node_VariableSet_ShotWalkMultiplier_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_GetPriorityActor \ +static_assert(alignof(GA_Weapon_Fire_C_GetPriorityActor) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_GetPriorityActor"); \ +static_assert(sizeof(GA_Weapon_Fire_C_GetPriorityActor) == 0x000028, "Wrong size on GA_Weapon_Fire_C_GetPriorityActor"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, PriorityActor) == 0x000000, "Member 'GA_Weapon_Fire_C_GetPriorityActor::PriorityActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_GetPriorityActor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'GA_Weapon_Fire_C_GetPriorityActor::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, CallFunc_GetTargetActor_ReturnValue) == 0x000018, "Member 'GA_Weapon_Fire_C_GetPriorityActor::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Weapon_Fire_C_GetPriorityActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetPriorityActor, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'GA_Weapon_Fire_C_GetPriorityActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_GetShotDeviation \ +static_assert(alignof(GA_Weapon_Fire_C_GetShotDeviation) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_GetShotDeviation"); \ +static_assert(sizeof(GA_Weapon_Fire_C_GetShotDeviation) == 0x000030, "Wrong size on GA_Weapon_Fire_C_GetShotDeviation"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, ReturnValue) == 0x000000, "Member 'GA_Weapon_Fire_C_GetShotDeviation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_GetShotDeviation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000010, "Member 'GA_Weapon_Fire_C_GetShotDeviation::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, CallFunc_RandomFloatInRange_ReturnValue) == 0x000018, "Member 'GA_Weapon_Fire_C_GetShotDeviation::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000020, "Member 'GA_Weapon_Fire_C_GetShotDeviation::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetShotDeviation, CallFunc_FMax_ReturnValue) == 0x000028, "Member 'GA_Weapon_Fire_C_GetShotDeviation::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_GetWeaponAimRotation \ +static_assert(alignof(GA_Weapon_Fire_C_GetWeaponAimRotation) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_GetWeaponAimRotation"); \ +static_assert(sizeof(GA_Weapon_Fire_C_GetWeaponAimRotation) == 0x000100, "Wrong size on GA_Weapon_Fire_C_GetWeaponAimRotation"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, ProjectileRotation) == 0x000000, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::ProjectileRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, TargetPositionWithVelocity) == 0x000018, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::TargetPositionWithVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetSocketRotation_ReturnValue) == 0x000038, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetSocketRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetForwardVector_ReturnValue) == 0x000050, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000068, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetAIController_ReturnValue) == 0x000070, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000078, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetLastSensedLocation_ReturnValue_1) == 0x000090, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetLastSensedLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetProjectileRotation_ReturnValue) == 0x0000A8, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetProjectileRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetProjectileRotation_ReturnValue_1) == 0x0000C0, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetProjectileRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_GetForwardVector_ReturnValue_1) == 0x0000D8, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAimRotation, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_Weapon_Fire_C_GetWeaponAimRotation::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_GetWeaponAmmoCount \ +static_assert(alignof(GA_Weapon_Fire_C_GetWeaponAmmoCount) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_GetWeaponAmmoCount"); \ +static_assert(sizeof(GA_Weapon_Fire_C_GetWeaponAmmoCount) == 0x000028, "Wrong size on GA_Weapon_Fire_C_GetWeaponAmmoCount"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, MaxAmmo) == 0x000000, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::MaxAmmo' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000010, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, CallFunc_GetFloatAttribute_ReturnValue) == 0x000014, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, CallFunc_FTrunc_ReturnValue) == 0x000018, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_GetWeaponAmmoCount, CallFunc_FTrunc_A_ImplicitCast) == 0x000020, "Member 'GA_Weapon_Fire_C_GetWeaponAmmoCount::CallFunc_FTrunc_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_K2_OnEndAbility \ +static_assert(alignof(GA_Weapon_Fire_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Weapon_Fire_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Weapon_Fire_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Weapon_Fire_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Weapon_Fire_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993 \ +static_assert(alignof(GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(sizeof(GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993, EventTag) == 0x000000, "Member 'GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993, EventData) == 0x000008, "Member 'GA_Weapon_Fire_C_OnBlendOut_B7A3A82D4B669B5D780027940819F993::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993 \ +static_assert(alignof(GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(sizeof(GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993, EventTag) == 0x000000, "Member 'GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993, EventData) == 0x000008, "Member 'GA_Weapon_Fire_C_OnCancelled_B7A3A82D4B669B5D780027940819F993::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993 \ +static_assert(alignof(GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(sizeof(GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993, EventTag) == 0x000000, "Member 'GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993, EventData) == 0x000008, "Member 'GA_Weapon_Fire_C_OnCompleted_B7A3A82D4B669B5D780027940819F993::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993 \ +static_assert(alignof(GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(sizeof(GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993, EventTag) == 0x000000, "Member 'GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993, EventData) == 0x000008, "Member 'GA_Weapon_Fire_C_OnInterrupted_B7A3A82D4B669B5D780027940819F993::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_PlayerApproaching \ +static_assert(alignof(GA_Weapon_Fire_C_PlayerApproaching) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_PlayerApproaching"); \ +static_assert(sizeof(GA_Weapon_Fire_C_PlayerApproaching) == 0x0000A8, "Wrong size on GA_Weapon_Fire_C_PlayerApproaching"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, Approaching) == 0x000000, "Member 'GA_Weapon_Fire_C_PlayerApproaching::Approaching' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_Square_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_GetActorForwardVector_ReturnValue) == 0x000020, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_GetAIController_ReturnValue) == 0x000050, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000058, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_IsDetectingActor_ReturnValue) == 0x000070, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000078, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000098, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A1, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_PlayerApproaching, CallFunc_BooleanAND_ReturnValue) == 0x0000A2, "Member 'GA_Weapon_Fire_C_PlayerApproaching::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_TryGetWeapon \ +static_assert(alignof(GA_Weapon_Fire_C_TryGetWeapon) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_TryGetWeapon"); \ +static_assert(sizeof(GA_Weapon_Fire_C_TryGetWeapon) == 0x000058, "Wrong size on GA_Weapon_Fire_C_TryGetWeapon"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, Temp_bool_True_if_break_was_hit_Variable) == 0x000000, "Member 'GA_Weapon_Fire_C_TryGetWeapon::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GA_Weapon_Fire_C_TryGetWeapon::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_Not_PreBool_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'GA_Weapon_Fire_C_TryGetWeapon::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_GetAttachedActors_OutActors) == 0x000020, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_Array_Get_Item) == 0x000038, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000048, "Member 'GA_Weapon_Fire_C_TryGetWeapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'GA_Weapon_Fire_C_TryGetWeapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_TryGetWeapon, CallFunc_BooleanAND_ReturnValue) == 0x000051, "Member 'GA_Weapon_Fire_C_TryGetWeapon::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_WantsMelee \ +static_assert(alignof(GA_Weapon_Fire_C_WantsMelee) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_WantsMelee"); \ +static_assert(sizeof(GA_Weapon_Fire_C_WantsMelee) == 0x0000B8, "Wrong size on GA_Weapon_Fire_C_WantsMelee"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, ReturnValue) == 0x000000, "Member 'GA_Weapon_Fire_C_WantsMelee::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetAIController_ReturnValue) == 0x000028, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000030, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000048, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_MakeLiteralName_ReturnValue) == 0x000060, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_Vector_Distance_ReturnValue) == 0x000068, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000070, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_MapRangeClamped_ReturnValue) == 0x000078, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetAIController_ReturnValue_1) == 0x000080, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000088, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetBlackboard_ReturnValue) == 0x000090, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_GetValueAsBool_ReturnValue) == 0x000098, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_GetValueAsBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000A0, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000B0, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_BooleanAND_ReturnValue) == 0x0000B1, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WantsMelee, CallFunc_RandomBoolWithWeight_Weight_ImplicitCast) == 0x0000B4, "Member 'GA_Weapon_Fire_C_WantsMelee::CallFunc_RandomBoolWithWeight_Weight_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_WeaponFireEvent \ +static_assert(alignof(GA_Weapon_Fire_C_WeaponFireEvent) == 0x000001, "Wrong alignment on GA_Weapon_Fire_C_WeaponFireEvent"); \ +static_assert(sizeof(GA_Weapon_Fire_C_WeaponFireEvent) == 0x000001, "Wrong size on GA_Weapon_Fire_C_WeaponFireEvent"); \ +static_assert(offsetof(GA_Weapon_Fire_C_WeaponFireEvent, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'GA_Weapon_Fire_C_WeaponFireEvent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Weapon_Fire_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Weapon_Fire_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Weapon_Fire_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Weapon_Fire_C_K2_CanActivateAbility) == 0x0000B0, "Wrong size on GA_Weapon_Fire_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_GetAIController_ReturnValue) == 0x000080, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000088, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_GetTargetActor_ReturnValue) == 0x000090, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000098, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000A8, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000A9, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Weapon_Fire_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000AA, "Member 'GA_Weapon_Fire_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Weapon_Fire_C \ +static_assert(alignof(UGA_Weapon_Fire_C) == 0x000008, "Wrong alignment on UGA_Weapon_Fire_C"); \ +static_assert(sizeof(UGA_Weapon_Fire_C) == 0x000760, "Wrong size on UGA_Weapon_Fire_C"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, UberGraphFrame) == 0x000668, "Member 'UGA_Weapon_Fire_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Gameplay_Cue_TagFiring) == 0x000670, "Member 'UGA_Weapon_Fire_C::Gameplay_Cue_TagFiring' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, GE_Damage) == 0x000678, "Member 'UGA_Weapon_Fire_C::GE_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, GameplayCue_Impact) == 0x000680, "Member 'UGA_Weapon_Fire_C::GameplayCue_Impact' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ProjectileTargetData) == 0x000688, "Member 'UGA_Weapon_Fire_C::ProjectileTargetData' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, DamageDataTag) == 0x0006B0, "Member 'UGA_Weapon_Fire_C::DamageDataTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ReactionEventTag) == 0x0006B8, "Member 'UGA_Weapon_Fire_C::ReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Target_Hit_Data) == 0x0006C0, "Member 'UGA_Weapon_Fire_C::Target_Hit_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ShotBurstVariance) == 0x0006E8, "Member 'UGA_Weapon_Fire_C::ShotBurstVariance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ShotBurstClamp) == 0x0006EC, "Member 'UGA_Weapon_Fire_C::ShotBurstClamp' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Weapon) == 0x0006F0, "Member 'UGA_Weapon_Fire_C::Weapon' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, UseBurstClampAsMaximum) == 0x0006F8, "Member 'UGA_Weapon_Fire_C::UseBurstClampAsMaximum' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, MagDump) == 0x0006F9, "Member 'UGA_Weapon_Fire_C::MagDump' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ShotsToFire) == 0x0006FC, "Member 'UGA_Weapon_Fire_C::ShotsToFire' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, RepeatAsyncTask) == 0x000700, "Member 'UGA_Weapon_Fire_C::RepeatAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Shot_Timing_Deviation) == 0x000708, "Member 'UGA_Weapon_Fire_C::Shot_Timing_Deviation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, UseSimulatedRecoil) == 0x000710, "Member 'UGA_Weapon_Fire_C::UseSimulatedRecoil' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ShotsFired) == 0x000714, "Member 'UGA_Weapon_Fire_C::ShotsFired' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, PerShotHorizontalWalk) == 0x000718, "Member 'UGA_Weapon_Fire_C::PerShotHorizontalWalk' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, PerShotVerticalWalk) == 0x000720, "Member 'UGA_Weapon_Fire_C::PerShotVerticalWalk' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, RecoilDistanceAccuracyMultiplierCurve) == 0x000728, "Member 'UGA_Weapon_Fire_C::RecoilDistanceAccuracyMultiplierCurve' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, FailedShotThreshold) == 0x000730, "Member 'UGA_Weapon_Fire_C::FailedShotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, FailedShots) == 0x000734, "Member 'UGA_Weapon_Fire_C::FailedShots' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, TargetVelocityMultiplier) == 0x000738, "Member 'UGA_Weapon_Fire_C::TargetVelocityMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, DrawDebug) == 0x000740, "Member 'UGA_Weapon_Fire_C::DrawDebug' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Blockage_Check_Rate) == 0x000744, "Member 'UGA_Weapon_Fire_C::Blockage_Check_Rate' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, TargetBlocked) == 0x000748, "Member 'UGA_Weapon_Fire_C::TargetBlocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, Blockage_check_radius) == 0x00074C, "Member 'UGA_Weapon_Fire_C::Blockage_check_radius' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, BlockCareChance) == 0x000750, "Member 'UGA_Weapon_Fire_C::BlockCareChance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Weapon_Fire_C, ApproachBarkChance) == 0x000758, "Member 'UGA_Weapon_Fire_C::ApproachBarkChance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base \ +static_assert(alignof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base) == 0x000008, "Wrong alignment on GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base"); \ +static_assert(sizeof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base) == 0x000228, "Wrong size on GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, EntryPoint) == 0x000000, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_BreakVector2D_X) == 0x000008, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_BreakVector2D_Y) == 0x000010, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_RandomFloatInRange_ReturnValue) == 0x000028, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000040, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000050, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000060, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000070, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000080, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000088, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WaitDelay_ReturnValue) == 0x000098, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000A0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue) == 0x0000B0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0000B8, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000C0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x0000D0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x0000E0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_11) == 0x0000F0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000100, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_1) == 0x000108, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_12) == 0x00010C, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000120, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetMontage_ReturnValue) == 0x000128, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000130, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_2) == 0x000138, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetMontage_ReturnValue_1) == 0x000140, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_13) == 0x000148, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_FClamp_ReturnValue) == 0x000158, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WaitDelay_ReturnValue_1) == 0x000160, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_Get_Look_Target_Location_Location) == 0x000168, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_Get_Look_Target_Location_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAngleSection_ReturnValue) == 0x000180, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAngleSection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAngleSection_Front) == 0x000188, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAngleSection_Front' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_BooleanAND_ReturnValue) == 0x000189, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_3) == 0x00018A, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000190, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_Get_Look_Target_Location_Location_1) == 0x000198, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_Get_Look_Target_Location_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x0001B0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAngleSection_ReturnValue_1) == 0x0001B4, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAngleSection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAngleSection_Front_1) == 0x0001BC, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAngleSection_Front_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_Greater_IntInt_ReturnValue) == 0x0001BD, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_BooleanAND_ReturnValue_1) == 0x0001BE, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_BooleanOR_ReturnValue) == 0x0001BF, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_CreateDelegate_OutputDelegate_14) == 0x0001C0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WaitDelay_ReturnValue_2) == 0x0001D0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0001D8, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x0001E0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, K2Node_DynamicCast_bSuccess) == 0x0001E8, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_K2_IsEnemyAware_ReturnValue) == 0x0001E9, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_K2_IsEnemyAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_4) == 0x0001EA, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0001F0, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1) == 0x0001F8, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_5) == 0x000200, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WaitDelay_ReturnValue_3) == 0x000208, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_IsValid_ReturnValue_6) == 0x000210, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast) == 0x000214, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_FClamp_Value_ImplicitCast) == 0x000218, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000220, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base, CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast_1) == 0x000224, "Member 'GA_EnemyAwarenessReaction_Base_C_ExecuteUbergraph_GA_EnemyAwarenessReaction_Base::CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyAwarenessReaction_Base_C_GetAngleSection \ +static_assert(alignof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection) == 0x000008, "Wrong alignment on GA_EnemyAwarenessReaction_Base_C_GetAngleSection"); \ +static_assert(sizeof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection) == 0x0001A8, "Wrong size on GA_EnemyAwarenessReaction_Base_C_GetAngleSection"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, To) == 0x000000, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::To' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, ReturnValue) == 0x000018, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Front) == 0x000020, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Front' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_string_Variable) == 0x000028, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_string_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_bool_Variable) == 0x000038, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_string_Variable_1) == 0x000040, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_string_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_string_Variable_2) == 0x000050, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_string_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_bool_Variable_1) == 0x000060, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_name_Variable) == 0x000064, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_bool_Variable_2) == 0x00006C, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_string_Variable_3) == 0x000070, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_string_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, Temp_bool_Variable_3) == 0x000080, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000088, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000090, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0000A8, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000C0, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x0000D8, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0000F0, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_BreakRotator_Roll) == 0x000108, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_BreakRotator_Pitch) == 0x00010C, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_BreakRotator_Yaw) == 0x000110, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000114, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000118, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, K2Node_Select_Default) == 0x000120, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Abs_ReturnValue) == 0x000128, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000131, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, K2Node_Select_Default_1) == 0x000138, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000148, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, K2Node_Select_Default_2) == 0x000150, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Concat_StrStr_ReturnValue) == 0x000160, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Conv_StringToName_ReturnValue) == 0x000170, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, K2Node_Select_Default_3) == 0x000178, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000180, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000188, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, K2Node_Select_Option_1_ImplicitCast) == 0x000190, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Abs_A_ImplicitCast) == 0x000198, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_GetAngleSection, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x0001A0, "Member 'GA_EnemyAwarenessReaction_Base_C_GetAngleSection::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyAwarenessReaction_Base_C_RequestDialogue \ +static_assert(alignof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue) == 0x000008, "Wrong alignment on GA_EnemyAwarenessReaction_Base_C_RequestDialogue"); \ +static_assert(sizeof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue) == 0x000058, "Wrong size on GA_EnemyAwarenessReaction_Base_C_RequestDialogue"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, DialoguePrompt) == 0x000000, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::DialoguePrompt' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, K2Node_MakeArray_Array) == 0x000010, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000020, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000030, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, CallFunc_GetDialogueInfo_ReturnValue) == 0x000040, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_RequestDialogue, K2Node_MakeArray_Array_1) == 0x000048, "Member 'GA_EnemyAwarenessReaction_Base_C_RequestDialogue::K2Node_MakeArray_Array_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location \ +static_assert(alignof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location) == 0x000008, "Wrong alignment on GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location"); \ +static_assert(sizeof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location) == 0x000088, "Wrong size on GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, Location) == 0x000000, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000018, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_GetCameraLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000038, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_GetAIController_ReturnValue) == 0x000040, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000048, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_BreakVector_X) == 0x000068, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_BreakVector_Y) == 0x000070, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_BreakVector_Z) == 0x000078, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000080, "Member 'GA_EnemyAwarenessReaction_Base_C_Get_Look_Target_Location::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyAwarenessReaction_Base_C \ +static_assert(alignof(UGA_EnemyAwarenessReaction_Base_C) == 0x000008, "Wrong alignment on UGA_EnemyAwarenessReaction_Base_C"); \ +static_assert(sizeof(UGA_EnemyAwarenessReaction_Base_C) == 0x0006D8, "Wrong size on UGA_EnemyAwarenessReaction_Base_C"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyAwarenessReaction_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, SoloBark) == 0x000670, "Member 'UGA_EnemyAwarenessReaction_Base_C::SoloBark' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, PartnerFirst) == 0x000671, "Member 'UGA_EnemyAwarenessReaction_Base_C::PartnerFirst' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, TestLOSToPartner) == 0x000672, "Member 'UGA_EnemyAwarenessReaction_Base_C::TestLOSToPartner' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Partner_Max_Distance) == 0x000678, "Member 'UGA_EnemyAwarenessReaction_Base_C::Partner_Max_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Partner_Required_State) == 0x000680, "Member 'UGA_EnemyAwarenessReaction_Base_C::Partner_Required_State' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, SoloReactionBark) == 0x000688, "Member 'UGA_EnemyAwarenessReaction_Base_C::SoloReactionBark' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, SoloReactionBarkHeightened) == 0x000690, "Member 'UGA_EnemyAwarenessReaction_Base_C::SoloReactionBarkHeightened' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, GroupReactionBark) == 0x000698, "Member 'UGA_EnemyAwarenessReaction_Base_C::GroupReactionBark' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, GroupReactionBarkHeightened) == 0x0006A0, "Member 'UGA_EnemyAwarenessReaction_Base_C::GroupReactionBarkHeightened' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, HeightenedStateTag) == 0x0006A8, "Member 'UGA_EnemyAwarenessReaction_Base_C::HeightenedStateTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Directional) == 0x0006B0, "Member 'UGA_EnemyAwarenessReaction_Base_C::Directional' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, BarkDelay) == 0x0006B4, "Member 'UGA_EnemyAwarenessReaction_Base_C::BarkDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Ignore_Frontal) == 0x0006B8, "Member 'UGA_EnemyAwarenessReaction_Base_C::Ignore_Frontal' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Skip_if_Joining) == 0x0006B9, "Member 'UGA_EnemyAwarenessReaction_Base_C::Skip_if_Joining' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, Skip_Front_if_Joining) == 0x0006BA, "Member 'UGA_EnemyAwarenessReaction_Base_C::Skip_Front_if_Joining' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, AlertCancelDelay) == 0x0006BC, "Member 'UGA_EnemyAwarenessReaction_Base_C::AlertCancelDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, DurationDone) == 0x0006C0, "Member 'UGA_EnemyAwarenessReaction_Base_C::DurationDone' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, MinimumDuration) == 0x0006C4, "Member 'UGA_EnemyAwarenessReaction_Base_C::MinimumDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyAwarenessReaction_Base_C, PlayRate) == 0x0006C8, "Member 'UGA_EnemyAwarenessReaction_Base_C::PlayRate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1 \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1) == 0x0000B8, "Wrong size on GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1, EventTag) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1, EventData) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_EventReceived_5F902F9C42739E238EC22DB24FC430E1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill) == 0x000D60, "Wrong size on GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, EntryPoint) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000038, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000048, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventTag_2) == 0x00004C, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventData_2) == 0x000058, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BooleanOR_ReturnValue) == 0x000108, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_1) == 0x00010C, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventTag_1) == 0x00011C, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventData_1) == 0x000128, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventTag) == 0x0001D8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventData) == 0x0001E0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_2) == 0x000290, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_struct_Variable) == 0x0002A0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_struct_Variable_1) == 0x000350, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000358, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_bool_Variable) == 0x000359, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_object_Variable) == 0x000360, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_object_Variable_1) == 0x000368, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_3) == 0x000370, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_4) == 0x000380, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_5) == 0x000390, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_6) == 0x0003A0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0003B0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_7) == 0x0003B8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue) == 0x0003C8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_8) == 0x0003CC, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WaitDelay_ReturnValue) == 0x0003E0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0003E8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_1) == 0x0003F0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_object_Variable_2) == 0x0003F8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_byte_Variable) == 0x000408, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_bool_Variable_1) == 0x000409, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00040A, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, Temp_object_Variable_3) == 0x000410, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_Event_bWasCancelled) == 0x000418, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_Event_EventData) == 0x000420, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_FClamp_ReturnValue) == 0x0004D0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WaitDelay_ReturnValue_1) == 0x0004D8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0004E0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_2) == 0x0004E8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x0004F0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_SetDuration_ReturnValue) == 0x000500, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_SetDuration_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000510, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000518, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000520, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000548, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_ApplyGameplayEffectSpecToTarget_ReturnValue) == 0x000550, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_ApplyGameplayEffectSpecToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000560, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000638, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000640, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000650, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventTag_4) == 0x000654, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventData_4) == 0x000660, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000710, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000718, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000730, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000748, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_3) == 0x000750, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000758, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000770, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000788, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0007A8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0007C0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0007D0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BreakRotator_Roll) == 0x0007D4, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BreakRotator_Pitch) == 0x0007D8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BreakRotator_Yaw) == 0x0007DC, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeRotator_ReturnValue) == 0x0007E0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0007F8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_RInterpTo_ReturnValue) == 0x000800, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000818, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000828, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000829, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000830, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_RandomFloatInRange_ReturnValue) == 0x000850, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000858, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000868, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WaitDelay_ReturnValue_2) == 0x000870, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_Select_Default) == 0x000878, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_Select_Default_1) == 0x000880, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_4) == 0x000888, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000890, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_5) == 0x000898, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetPlayerPawn_ReturnValue) == 0x0008A0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_MakeStruct_ApplyDamageParams) == 0x0008A8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0008D0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_9) == 0x0008D4, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0008E8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x0008F0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2) == 0x000910, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x000920, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000924, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000930, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000938, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_MakeArray_Array) == 0x000940, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetDialogueInfo_ReturnValue) == 0x000950, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000958, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_MakeArray_Array_1) == 0x000960, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000970, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000990, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_3) == 0x000998, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x0009A8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAIController_ReturnValue) == 0x0009B0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_MakeArray_Array_2) == 0x0009B8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x0009C8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAIController_ReturnValue_1) == 0x0009D0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_IsValid_ReturnValue_6) == 0x0009D8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x0009E0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_DynamicCast_bSuccess) == 0x0009F0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0009F1, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0009F8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Add_VectorVector_ReturnValue) == 0x000A10, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventTag_3) == 0x000A28, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CustomEvent_EventData_3) == 0x000A30, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000AE0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000AF8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000B10, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000BF8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000BFC, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000C08, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000C10, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000C20, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000C28, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000C30, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000C38, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000C58, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x000C80, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000CA0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6) == 0x000CA8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000CC8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_CreateDelegate_OutputDelegate_10) == 0x000CD0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000CE0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, K2Node_DynamicCast_bSuccess_1) == 0x000CE8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutOldWeapon) == 0x000CF0, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutNewWeapon) == 0x000CF8, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000D00, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000D01, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x000D02, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutOldWeapon_1) == 0x000D08, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutOldWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutNewWeapon_1) == 0x000D10, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutNewWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutOldWeapon_2) == 0x000D18, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutOldWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_ChangeWeapon_OutNewWeapon_2) == 0x000D20, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_ChangeWeapon_OutNewWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_GetEnemyTypeName_ReturnValue) == 0x000D28, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Conv_NameToString_ReturnValue) == 0x000D30, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue) == 0x000D40, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue_1) == 0x000D41, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue_2) == 0x000D42, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue_3) == 0x000D43, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_BooleanOR_ReturnValue_1) == 0x000D44, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue_4) == 0x000D45, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_Contains_ReturnValue_5) == 0x000D46, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_Contains_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_FClamp_Value_ImplicitCast) == 0x000D48, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000D50, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000D54, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x000D58, "Member 'GA_VE_TerminalDecree_Kill_C_ExecuteUbergraph_GA_VE_TerminalDecree_Kill::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1 \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1) == 0x0000B8, "Wrong size on GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1, EventTag) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1, EventData) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_OnBlendOut_5F902F9C42739E238EC22DB24FC430E1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1 \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1) == 0x0000B8, "Wrong size on GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1, EventTag) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1, EventData) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_OnCancelled_5F902F9C42739E238EC22DB24FC430E1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1 \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1) == 0x0000B8, "Wrong size on GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1, EventTag) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1, EventData) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_OnCompleted_5F902F9C42739E238EC22DB24FC430E1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1 \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1) == 0x0000B8, "Wrong size on GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1, EventTag) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1, EventData) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_OnInterrupted_5F902F9C42739E238EC22DB24FC430E1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_TerminalDecree_Kill_C_Toggle_Senses \ +static_assert(alignof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses) == 0x000008, "Wrong alignment on GA_VE_TerminalDecree_Kill_C_Toggle_Senses"); \ +static_assert(sizeof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses) == 0x000020, "Wrong size on GA_VE_TerminalDecree_Kill_C_Toggle_Senses"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses, Enabled) == 0x000000, "Member 'GA_VE_TerminalDecree_Kill_C_Toggle_Senses::Enabled' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_VE_TerminalDecree_Kill_C_Toggle_Senses::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'GA_VE_TerminalDecree_Kill_C_Toggle_Senses::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_TerminalDecree_Kill_C_Toggle_Senses, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_VE_TerminalDecree_Kill_C_Toggle_Senses::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_VE_TerminalDecree_Kill_C \ +static_assert(alignof(UGA_VE_TerminalDecree_Kill_C) == 0x000008, "Wrong alignment on UGA_VE_TerminalDecree_Kill_C"); \ +static_assert(sizeof(UGA_VE_TerminalDecree_Kill_C) == 0x000698, "Wrong size on UGA_VE_TerminalDecree_Kill_C"); \ +static_assert(offsetof(UGA_VE_TerminalDecree_Kill_C, UberGraphFrame) == 0x000668, "Member 'UGA_VE_TerminalDecree_Kill_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_TerminalDecree_Kill_C, TargetLocation) == 0x000670, "Member 'UGA_VE_TerminalDecree_Kill_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_TerminalDecree_Kill_C, Instigator) == 0x000688, "Member 'UGA_VE_TerminalDecree_Kill_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_TerminalDecree_Kill_C, TargetingBlockedEffect) == 0x000690, "Member 'UGA_VE_TerminalDecree_Kill_C::TargetingBlockedEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate \ +static_assert(alignof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate) == 0x000008, "Wrong alignment on GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate"); \ +static_assert(sizeof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate) == 0x0001D0, "Wrong size on GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, EntryPoint) == 0x000000, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_bool_Variable) == 0x000014, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_struct_Variable) == 0x000018, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_CreateDelegate_OutputDelegate_1) == 0x000020, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_ReturnValue) == 0x000030, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_bool_Variable_1) == 0x000038, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000040, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_bool_IsClosed_Variable) == 0x000048, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_bool_Has_Been_Initd_Variable) == 0x000049, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000050, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000070, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_RandomFloatInRange_ReturnValue) == 0x000078, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000080, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000090, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_ReturnValue_1) == 0x000098, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetDialogueInfo_ReturnValue) == 0x0000A0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_MakeArray_Array) == 0x0000A8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue_1) == 0x0000B8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_MakeArray_Array_1) == 0x0000C0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0000D0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_ReturnValue_2) == 0x0000E0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0000E8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0000F8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue_2) == 0x0000F9, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000100, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000108, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAIController_ReturnValue) == 0x000110, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_AIHasStateTag_ReturnValue) == 0x000118, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasAlliesToCallTo_Allies) == 0x000119, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasAlliesToCallTo_Allies' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasAlliesToCallTo_Ally) == 0x000120, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasAlliesToCallTo_Ally' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000128, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_ReturnValue_3) == 0x000130, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue_3) == 0x000138, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_Add_IntInt_ReturnValue) == 0x00013C, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000140, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_CreateDelegate_OutputDelegate_2) == 0x000144, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000154, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_BooleanOR_ReturnValue) == 0x000155, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_BooleanAND_ReturnValue) == 0x000156, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue_4) == 0x000157, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_Select_Default) == 0x000158, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAIController_ReturnValue_1) == 0x000160, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_IsValid_ReturnValue_5) == 0x000168, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000170, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000178, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000188, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, Temp_int_Variable) == 0x00018C, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_CreateDelegate_OutputDelegate_3) == 0x000190, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0001A0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, K2Node_DynamicCast_bSuccess) == 0x0001B0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0001B1, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WrestlerReportNoiseEvent_InLoudness_ImplicitCast) == 0x0001B4, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WrestlerReportNoiseEvent_InLoudness_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_Time_ImplicitCast) == 0x0001B8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x0001BC, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_HasAlliesToCallTo_Distance_ImplicitCast) == 0x0001C0, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_HasAlliesToCallTo_Distance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate, CallFunc_WaitDelay_Time_ImplicitCast_2) == 0x0001C8, "Member 'GA_EnemyPropagate_C_ExecuteUbergraph_GA_EnemyPropagate::CallFunc_WaitDelay_Time_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyPropagate_C_HasAlliesToCallTo \ +static_assert(alignof(GA_EnemyPropagate_C_HasAlliesToCallTo) == 0x000008, "Wrong alignment on GA_EnemyPropagate_C_HasAlliesToCallTo"); \ +static_assert(sizeof(GA_EnemyPropagate_C_HasAlliesToCallTo) == 0x000140, "Wrong size on GA_EnemyPropagate_C_HasAlliesToCallTo"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Distance) == 0x000000, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Allies) == 0x000008, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Allies' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Ally) == 0x000010, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Ally' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, AllytoGo) == 0x000018, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::AllytoGo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Has_Ally) == 0x000020, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Has_Ally' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Temp_bool_True_if_break_was_hit_Variable) == 0x00002C, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Temp_int_Array_Index_Variable) == 0x000030, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Not_PreBool_ReturnValue) == 0x000034, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000038, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000058, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000060, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000068, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, Temp_byte_Variable) == 0x000070, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000071, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000078, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000080, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000098, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0000A0, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x0000A8, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Array_Length_ReturnValue) == 0x0000B8, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Array_Get_Item) == 0x0000C0, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Less_IntInt_ReturnValue) == 0x0000C8, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000C9, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_BooleanAND_ReturnValue) == 0x0000CA, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0000D0, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0000E0, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetAIController_ReturnValue) == 0x0000E8, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_GetAIController_ReturnValue_1) == 0x0000F0, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_AIHasStateTag_ReturnValue) == 0x0000F8, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000100, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, K2Node_DynamicCast_bSuccess) == 0x000110, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_AIHasStateTag_ReturnValue_1) == 0x000111, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_AIHasStateTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x000112, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_BooleanOR_ReturnValue) == 0x000113, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_BooleanOR_ReturnValue_1) == 0x000114, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000118, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_Vector_Distance_ReturnValue) == 0x000130, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_IsValid_ReturnValue) == 0x000138, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyPropagate_C_HasAlliesToCallTo, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000139, "Member 'GA_EnemyPropagate_C_HasAlliesToCallTo::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyPropagate_C \ +static_assert(alignof(UGA_EnemyPropagate_C) == 0x000008, "Wrong alignment on UGA_EnemyPropagate_C"); \ +static_assert(sizeof(UGA_EnemyPropagate_C) == 0x000728, "Wrong size on UGA_EnemyPropagate_C"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, UberGraphFrame_GA_EnemyPropagate_C) == 0x0006D8, "Member 'UGA_EnemyPropagate_C::UberGraphFrame_GA_EnemyPropagate_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, NoiseEventTag) == 0x0006E0, "Member 'UGA_EnemyPropagate_C::NoiseEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, NoiseEventRange) == 0x0006E8, "Member 'UGA_EnemyPropagate_C::NoiseEventRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, NoiseEventLoudness) == 0x0006F0, "Member 'UGA_EnemyPropagate_C::NoiseEventLoudness' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, Blocked_Tags) == 0x0006F8, "Member 'UGA_EnemyPropagate_C::Blocked_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, Tries) == 0x000718, "Member 'UGA_EnemyPropagate_C::Tries' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyPropagate_C, PotentialAlly) == 0x000720, "Member 'UGA_EnemyPropagate_C::PotentialAlly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset \ +static_assert(alignof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset) == 0x000008, "Wrong alignment on GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset"); \ +static_assert(sizeof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset) == 0x000148, "Wrong size on GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, EntryPoint) == 0x000000, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, K2Node_DynamicCast_AsWrestler_Character) == 0x000050, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000060, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, CallFunc_GetStableGround_ReturnValue) == 0x000078, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::CallFunc_GetStableGround_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, K2Node_Event_EventData) == 0x000090, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset, CallFunc_K2_TeleportTo_ReturnValue) == 0x000140, "Member 'GA_Player_Stuck_Reset_C_ExecuteUbergraph_GA_Player_Stuck_Reset::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Player_Stuck_Reset_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_Stuck_Reset_C \ +static_assert(alignof(UGA_Player_Stuck_Reset_C) == 0x000008, "Wrong alignment on UGA_Player_Stuck_Reset_C"); \ +static_assert(sizeof(UGA_Player_Stuck_Reset_C) == 0x000670, "Wrong size on UGA_Player_Stuck_Reset_C"); \ +static_assert(offsetof(UGA_Player_Stuck_Reset_C, UberGraphFrame) == 0x000668, "Member 'UGA_Player_Stuck_Reset_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction \ +static_assert(alignof(GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction) == 0x000004, "Wrong alignment on GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction"); \ +static_assert(sizeof(GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction) == 0x000004, "Wrong size on GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction"); \ +static_assert(offsetof(GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyHeardANoiseReaction_C_ExecuteUbergraph_GA_EnemyHeardANoiseReaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyHeardANoiseReaction_C \ +static_assert(alignof(UGA_EnemyHeardANoiseReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyHeardANoiseReaction_C"); \ +static_assert(sizeof(UGA_EnemyHeardANoiseReaction_C) == 0x0006E0, "Wrong size on UGA_EnemyHeardANoiseReaction_C"); \ +static_assert(offsetof(UGA_EnemyHeardANoiseReaction_C, UberGraphFrame_GA_EnemyHeardANoiseReaction_C) == 0x0006D8, "Member 'UGA_EnemyHeardANoiseReaction_C::UberGraphFrame_GA_EnemyHeardANoiseReaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction \ +static_assert(alignof(GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction) == 0x000004, "Wrong alignment on GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction"); \ +static_assert(sizeof(GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction) == 0x000004, "Wrong size on GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction"); \ +static_assert(offsetof(GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyCalledIntoBattleReaction_C_ExecuteUbergraph_GA_EnemyCalledIntoBattleReaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyCalledIntoBattleReaction_C \ +static_assert(alignof(UGA_EnemyCalledIntoBattleReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyCalledIntoBattleReaction_C"); \ +static_assert(sizeof(UGA_EnemyCalledIntoBattleReaction_C) == 0x0006E0, "Wrong size on UGA_EnemyCalledIntoBattleReaction_C"); \ +static_assert(offsetof(UGA_EnemyCalledIntoBattleReaction_C, UberGraphFrame_GA_EnemyCalledIntoBattleReaction_C) == 0x0006D8, "Member 'UGA_EnemyCalledIntoBattleReaction_C::UberGraphFrame_GA_EnemyCalledIntoBattleReaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction \ +static_assert(alignof(GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction) == 0x000004, "Wrong alignment on GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction"); \ +static_assert(sizeof(GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction) == 0x000004, "Wrong size on GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction"); \ +static_assert(offsetof(GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction, EntryPoint) == 0x000000, "Member 'GA_EnemyInstantAlertReaction_C_ExecuteUbergraph_GA_EnemyInstantAlertReaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyInstantAlertReaction_C \ +static_assert(alignof(UGA_EnemyInstantAlertReaction_C) == 0x000008, "Wrong alignment on UGA_EnemyInstantAlertReaction_C"); \ +static_assert(sizeof(UGA_EnemyInstantAlertReaction_C) == 0x0006E0, "Wrong size on UGA_EnemyInstantAlertReaction_C"); \ +static_assert(offsetof(UGA_EnemyInstantAlertReaction_C, UberGraphFrame_GA_EnemyInstantAlertReaction_C) == 0x0006D8, "Member 'UGA_EnemyInstantAlertReaction_C::UberGraphFrame_GA_EnemyInstantAlertReaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction \ +static_assert(alignof(GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction) == 0x000004, "Wrong alignment on GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction"); \ +static_assert(sizeof(GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction) == 0x000004, "Wrong size on GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction"); \ +static_assert(offsetof(GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction, EntryPoint) == 0x000000, "Member 'GA_EnemySawGlimpseReaction_C_ExecuteUbergraph_GA_EnemySawGlimpseReaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemySawGlimpseReaction_C \ +static_assert(alignof(UGA_EnemySawGlimpseReaction_C) == 0x000008, "Wrong alignment on UGA_EnemySawGlimpseReaction_C"); \ +static_assert(sizeof(UGA_EnemySawGlimpseReaction_C) == 0x0006E0, "Wrong size on UGA_EnemySawGlimpseReaction_C"); \ +static_assert(offsetof(UGA_EnemySawGlimpseReaction_C, UberGraphFrame_GA_EnemySawGlimpseReaction_C) == 0x0006D8, "Member 'UGA_EnemySawGlimpseReaction_C::UberGraphFrame_GA_EnemySawGlimpseReaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDisabledButtonFontStyle_C \ +static_assert(alignof(UDisabledButtonFontStyle_C) == 0x000010, "Wrong alignment on UDisabledButtonFontStyle_C"); \ +static_assert(sizeof(UDisabledButtonFontStyle_C) == 0x0001B0, "Wrong size on UDisabledButtonFontStyle_C"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionDoor_Single_ProEscape_C \ +static_assert(alignof(ABP_TransitionDoor_Single_ProEscape_C) == 0x000008, "Wrong alignment on ABP_TransitionDoor_Single_ProEscape_C"); \ +static_assert(sizeof(ABP_TransitionDoor_Single_ProEscape_C) == 0x000418, "Wrong size on ABP_TransitionDoor_Single_ProEscape_C"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert \ +static_assert(alignof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert) == 0x000008, "Wrong alignment on GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert"); \ +static_assert(sizeof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert) == 0x0000B8, "Wrong size on GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, EntryPoint) == 0x000000, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_Get_Look_Target_Location_Location) == 0x000008, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_Get_Look_Target_Location_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, K2Node_CreateDelegate_OutputDelegate) == 0x000020, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_WaitDelay_ReturnValue) == 0x000030, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, K2Node_Event_bWasCancelled) == 0x000039, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000040, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000048, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000050, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000068, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_Vector_Distance2DSquared_ReturnValue) == 0x000080, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_Vector_Distance2DSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_Square_ReturnValue) == 0x000088, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000090, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000098, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000A0, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000B0, "Member 'GA_Reaction_Alert_C_ExecuteUbergraph_GA_Reaction_Alert::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Alert_C_K2_OnEndAbility \ +static_assert(alignof(GA_Reaction_Alert_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Reaction_Alert_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Reaction_Alert_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Reaction_Alert_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Reaction_Alert_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_Alert_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Reaction_Alert_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Reaction_Alert_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Reaction_Alert_C_K2_CanActivateAbility) == 0x000168, "Wrong size on GA_Reaction_Alert_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetAIController_ReturnValue) == 0x000080, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000088, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetTargetActor_ReturnValue) == 0x000090, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000098, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000A8, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000B0, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000C0, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000C1, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000C2, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000C8, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x0000D0, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_IsDetectingActor_ReturnValue) == 0x0000D1, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_Get_Look_Target_Location_Location) == 0x0000D8, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_Get_Look_Target_Location_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0000F0, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000F8, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000108, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetActorForwardVector_ReturnValue) == 0x000110, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000128, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000140, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_Dot_VectorVector_ReturnValue) == 0x000158, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_Alert_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000160, "Member 'GA_Reaction_Alert_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Reaction_Alert_C \ +static_assert(alignof(UGA_Reaction_Alert_C) == 0x000008, "Wrong alignment on UGA_Reaction_Alert_C"); \ +static_assert(sizeof(UGA_Reaction_Alert_C) == 0x0006E8, "Wrong size on UGA_Reaction_Alert_C"); \ +static_assert(offsetof(UGA_Reaction_Alert_C, UberGraphFrame_GA_Reaction_Alert_C) == 0x0006D8, "Member 'UGA_Reaction_Alert_C::UberGraphFrame_GA_Reaction_Alert_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_Reaction_Alert_C, PB_EnemyAlerted) == 0x0006E0, "Member 'UGA_Reaction_Alert_C::PB_EnemyAlerted' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor \ +static_assert(alignof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor) == 0x000008, "Wrong alignment on GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor"); \ +static_assert(sizeof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor) == 0x0000F0, "Wrong size on GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, EntryPoint) == 0x000000, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, K2Node_Event_EventData) == 0x000020, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000D0, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, CallFunc_IsValid_ReturnValue_1) == 0x0000D8, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, K2Node_DynamicCast_AsActor) == 0x0000E0, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor, K2Node_DynamicCast_bSuccess) == 0x0000E8, "Member 'GA_Reaction_LookatActor_C_ExecuteUbergraph_GA_Reaction_LookatActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Reaction_LookatActor_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Reaction_LookatActor_C_Get_Look_Target_Location \ +static_assert(alignof(GA_Reaction_LookatActor_C_Get_Look_Target_Location) == 0x000008, "Wrong alignment on GA_Reaction_LookatActor_C_Get_Look_Target_Location"); \ +static_assert(sizeof(GA_Reaction_LookatActor_C_Get_Look_Target_Location) == 0x000038, "Wrong size on GA_Reaction_LookatActor_C_Get_Look_Target_Location"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_Get_Look_Target_Location, Location) == 0x000000, "Member 'GA_Reaction_LookatActor_C_Get_Look_Target_Location::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_Get_Look_Target_Location, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_Reaction_LookatActor_C_Get_Look_Target_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Reaction_LookatActor_C_Get_Look_Target_Location, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'GA_Reaction_LookatActor_C_Get_Look_Target_Location::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Reaction_LookatActor_C \ +static_assert(alignof(UGA_Reaction_LookatActor_C) == 0x000008, "Wrong alignment on UGA_Reaction_LookatActor_C"); \ +static_assert(sizeof(UGA_Reaction_LookatActor_C) == 0x0006E8, "Wrong size on UGA_Reaction_LookatActor_C"); \ +static_assert(offsetof(UGA_Reaction_LookatActor_C, UberGraphFrame_GA_Reaction_LookatActor_C) == 0x0006D8, "Member 'UGA_Reaction_LookatActor_C::UberGraphFrame_GA_Reaction_LookatActor_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_Reaction_LookatActor_C, TargetActor) == 0x0006E0, "Member 'UGA_Reaction_LookatActor_C::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_HeavyPunch_Cooldown_C \ +static_assert(alignof(UGE_HeavyPunch_Cooldown_C) == 0x000008, "Wrong alignment on UGE_HeavyPunch_Cooldown_C"); \ +static_assert(sizeof(UGE_HeavyPunch_Cooldown_C) == 0x000A70, "Wrong size on UGE_HeavyPunch_Cooldown_C"); \ + +#define DUMPER7_ASSERTS_WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget \ +static_assert(alignof(WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget) == 0x000004, "Wrong alignment on WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget"); \ +static_assert(sizeof(WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget) == 0x000014, "Wrong size on WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget"); \ +static_assert(offsetof(WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget, EntryPoint) == 0x000000, "Member 'WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget, Temp_delegate_Variable) == 0x000004, "Member 'WBP_BaseQuestMarkerWidget_C_ExecuteUbergraph_WBP_BaseQuestMarkerWidget::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BaseQuestMarkerWidget_C \ +static_assert(alignof(UWBP_BaseQuestMarkerWidget_C) == 0x000010, "Wrong alignment on UWBP_BaseQuestMarkerWidget_C"); \ +static_assert(sizeof(UWBP_BaseQuestMarkerWidget_C) == 0x000520, "Wrong size on UWBP_BaseQuestMarkerWidget_C"); \ +static_assert(offsetof(UWBP_BaseQuestMarkerWidget_C, UberGraphFrame) == 0x000510, "Member 'UWBP_BaseQuestMarkerWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseQuestMarkerWidget_C, ObjectiveSelected) == 0x000518, "Member 'UWBP_BaseQuestMarkerWidget_C::ObjectiveSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_dashCooldown_C \ +static_assert(alignof(UGE_dashCooldown_C) == 0x000008, "Wrong alignment on UGE_dashCooldown_C"); \ +static_assert(sizeof(UGE_dashCooldown_C) == 0x000A70, "Wrong size on UGE_dashCooldown_C"); \ + +#define DUMPER7_ASSERTS_UGE_sidestepCooldown_C \ +static_assert(alignof(UGE_sidestepCooldown_C) == 0x000008, "Wrong alignment on UGE_sidestepCooldown_C"); \ +static_assert(sizeof(UGE_sidestepCooldown_C) == 0x000A70, "Wrong size on UGE_sidestepCooldown_C"); \ + +#define DUMPER7_ASSERTS_UPD_FM_REG_Onda_C \ +static_assert(alignof(UPD_FM_REG_Onda_C) == 0x000008, "Wrong alignment on UPD_FM_REG_Onda_C"); \ +static_assert(sizeof(UPD_FM_REG_Onda_C) == 0x000058, "Wrong size on UPD_FM_REG_Onda_C"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_PickMontage \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_PickMontage) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_PickMontage"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_PickMontage) == 0x000010, "Wrong size on GA_Enemy_DefensiveDash_C_PickMontage"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_PickMontage, ReturnValue) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_PickMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_PickMontage, CallFunc_GetMontage_ReturnValue) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_PickMontage::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_SidestepCheck \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_SidestepCheck) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_SidestepCheck"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_SidestepCheck) == 0x000358, "Wrong size on GA_Enemy_DefensiveDash_C_SidestepCheck"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, ShouldSidestep) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::ShouldSidestep' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, Distance) == 0x000004, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, Temp_object_Variable) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, Temp_object_Variable_1) == 0x000018, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000040, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, K2Node_MakeArray_Array) == 0x000048, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_GetActorForwardVector_ReturnValue) == 0x000058, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000070, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000088, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000090, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0000A8, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000C0, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0000D8, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000108, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000120, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000138, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000150, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000238, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, K2Node_MakeArray_Array_1) == 0x000240, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Not_PreBool_ReturnValue) == 0x000250, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_LineTraceSingleForObjects_OutHit_1) == 0x000258, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_LineTraceSingleForObjects_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_LineTraceSingleForObjects_ReturnValue_1) == 0x000340, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_LineTraceSingleForObjects_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000348, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_SidestepCheck, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x000350, "Member 'GA_Enemy_DefensiveDash_C_SidestepCheck::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash) == 0x0008E0, "Wrong size on GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, EntryPoint) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_PickMontage_ReturnValue) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_PickMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventTag_3) == 0x000010, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventData_3) == 0x000018, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate) == 0x0000C8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventTag_2) == 0x0000D8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventData_2) == 0x0000E0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_1) == 0x000190, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventTag_1) == 0x0001A0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventData_1) == 0x0001A8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_2) == 0x000258, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventTag) == 0x000268, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventData) == 0x000270, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_3) == 0x000320, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_struct_Variable) == 0x000330, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_struct_Variable_1) == 0x0003E0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_WaitDelay_ReturnValue) == 0x0003F8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_5) == 0x000400, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue) == 0x000410, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_6) == 0x000414, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_WaitDelay_ReturnValue_1) == 0x000428, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_bool_Variable) == 0x000430, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue_1) == 0x000431, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_real_Variable) == 0x000434, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_real_Variable_1) == 0x000438, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_bool_Variable_1) == 0x00043C, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_Payload) == 0x000440, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004F0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, Temp_struct_Variable_2) == 0x000500, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0005B0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue_2) == 0x0005B8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_8) == 0x0005BC, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_WaitDelay_ReturnValue_2) == 0x0005D0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventTag_4) == 0x0005D8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CustomEvent_EventData_4) == 0x0005E0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue_3) == 0x000690, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000698, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0006A0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController) == 0x0006A8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_K2_GetEnemyControllerFromActor_OutPins) == 0x0006B0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_K2_GetEnemyControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_SwitchEnum_CmpSuccess) == 0x0006B1, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetLastSensedLocation_ReturnValue) == 0x0006B8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0006D0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0006D8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0006E0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0006F8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000710, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000718, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_RandomFloatInRange_ReturnValue) == 0x000730, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_BreakRotator_Roll) == 0x000738, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_BreakRotator_Pitch) == 0x00073C, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_BreakRotator_Yaw) == 0x000740, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeRotator_ReturnValue) == 0x000748, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeRotator_ReturnValue_1) == 0x000760, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_ComposeRotators_ReturnValue) == 0x000778, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000790, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000798, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue_4) == 0x000799, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_CreateDelegate_OutputDelegate_9) == 0x00079C, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0007B0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0007B8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0007D8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_WaitDelay_ReturnValue_3) == 0x0007E0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0007E8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsValid_ReturnValue_5) == 0x0007F0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0007F8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000818, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_Event_bWasCancelled) == 0x000819, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000820, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000828, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetPlayerPawn_ReturnValue) == 0x000848, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000850, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000858, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_DynamicCast_bSuccess) == 0x000868, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000870, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000878, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000880, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000890, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, K2Node_Select_Default) == 0x000894, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000898, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0008A0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_Not_PreBool_ReturnValue) == 0x0008A8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_BooleanAND_ReturnValue) == 0x0008A9, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0008AC, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0008B8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_IsFalling_ReturnValue) == 0x0008C0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_SidestepCheck_ShouldSidestep) == 0x0008C1, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_SidestepCheck_ShouldSidestep' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0008C8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_RemoveActiveEffectsWithTags_ReturnValue) == 0x0008D0, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_RemoveActiveEffectsWithTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0008D4, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0008D8, "Member 'GA_Enemy_DefensiveDash_C_ExecuteUbergraph_GA_Enemy_DefensiveDash::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_Get_Dash_Location \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_Get_Dash_Location) == 0x000010, "Wrong alignment on GA_Enemy_DefensiveDash_C_Get_Dash_Location"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_Get_Dash_Location) == 0x000270, "Wrong size on GA_Enemy_DefensiveDash_C_Get_Dash_Location"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, Return) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, DashLocation) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::DashLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_MakeRotator_ReturnValue) == 0x000028, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_MakeRotator_ReturnValue_1) == 0x000040, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_RandomBool_ReturnValue) == 0x000058, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000060, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000068, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_GetTransform_ReturnValue) == 0x000080, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000E0, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_BreakTransform_Location) == 0x0000F8, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_BreakTransform_Rotation) == 0x000110, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_BreakTransform_Scale) == 0x000128, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_ComposeRotators_ReturnValue) == 0x000140, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_ComposeRotators_ReturnValue_1) == 0x000158, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_ComposeRotators_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_GetForwardVector_ReturnValue) == 0x000170, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_GetForwardVector_ReturnValue_1) == 0x000188, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001A0, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001B8, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Add_VectorVector_ReturnValue) == 0x0001D0, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E8, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_SelectVector_ReturnValue) == 0x000200, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_K2_ProjectPointToNavigation_ProjectedLocation) == 0x000218, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_K2_ProjectPointToNavigation_ProjectedLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_K2_ProjectPointToNavigation_ReturnValue) == 0x000230, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_K2_ProjectPointToNavigation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_FindPathToLocationSynchronously_ReturnValue) == 0x000238, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_FindPathToLocationSynchronously_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_IsValid_ReturnValue) == 0x000240, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Array_LastIndex_ReturnValue) == 0x000244, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_Array_Get_Item) == 0x000248, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000260, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_Get_Dash_Location, CallFunc_MakeRotator_Yaw_ImplicitCast_1) == 0x000264, "Member 'GA_Enemy_DefensiveDash_C_Get_Dash_Location::CallFunc_MakeRotator_Yaw_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719 \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719) == 0x0000B8, "Wrong size on GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719, EventTag) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719, EventData) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_EventReceived_059C028C463A5BA0AAB53096E57DC719::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719 \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719) == 0x0000B8, "Wrong size on GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719, EventTag) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719, EventData) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_OnCancelled_059C028C463A5BA0AAB53096E57DC719::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719 \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719) == 0x0000B8, "Wrong size on GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719, EventTag) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719, EventData) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_OnInterrupted_059C028C463A5BA0AAB53096E57DC719::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719 \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719) == 0x0000B8, "Wrong size on GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719, EventTag) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719, EventData) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_OnBlendOut_059C028C463A5BA0AAB53096E57DC719::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719 \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719) == 0x0000B8, "Wrong size on GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719, EventTag) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719, EventData) == 0x000008, "Member 'GA_Enemy_DefensiveDash_C_OnCompleted_059C028C463A5BA0AAB53096E57DC719::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC) == 0x0000B0, "Wrong size on GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC, Payload) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_EventReceived_13F7271E4D8D356D8DC1ECB2BE2B0BFC::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_DefensiveDash_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_DefensiveDash_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_DefensiveDash_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Enemy_DefensiveDash_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility) == 0x0000C0, "Wrong size on GA_Enemy_DefensiveDash_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_GetAIController_ReturnValue) == 0x000080, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000088, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_GetTargetActor_ReturnValue) == 0x000090, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000098, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000A8, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x0000A9, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000AA, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x0000B0, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_GetGameplayEffectCount_ReturnValue) == 0x0000B8, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_GetGameplayEffectCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue_1) == 0x0000BC, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0000BD, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_DefensiveDash_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000BE, "Member 'GA_Enemy_DefensiveDash_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_DefensiveDash_C \ +static_assert(alignof(UGA_Enemy_DefensiveDash_C) == 0x000008, "Wrong alignment on UGA_Enemy_DefensiveDash_C"); \ +static_assert(sizeof(UGA_Enemy_DefensiveDash_C) == 0x0006B0, "Wrong size on UGA_Enemy_DefensiveDash_C"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_DefensiveDash_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, DashDistance) == 0x000670, "Member 'UGA_Enemy_DefensiveDash_C::DashDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, DashTimeToComplete) == 0x000678, "Member 'UGA_Enemy_DefensiveDash_C::DashTimeToComplete' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, PostDashCooldown) == 0x000680, "Member 'UGA_Enemy_DefensiveDash_C::PostDashCooldown' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, DashAngleFromFront) == 0x000688, "Member 'UGA_Enemy_DefensiveDash_C::DashAngleFromFront' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, PlayVFX) == 0x000690, "Member 'UGA_Enemy_DefensiveDash_C::PlayVFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, Root_Motion_Scale) == 0x000694, "Member 'UGA_Enemy_DefensiveDash_C::Root_Motion_Scale' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, RandomAngleVariation) == 0x000698, "Member 'UGA_Enemy_DefensiveDash_C::RandomAngleVariation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, MontagePlayRate) == 0x0006A0, "Member 'UGA_Enemy_DefensiveDash_C::MontagePlayRate' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, EvasionWindow) == 0x0006A4, "Member 'UGA_Enemy_DefensiveDash_C::EvasionWindow' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_DefensiveDash_C, GotHit) == 0x0006A8, "Member 'UGA_Enemy_DefensiveDash_C::GotHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPTD_Phyre_C \ +static_assert(alignof(UPTD_Phyre_C) == 0x000008, "Wrong alignment on UPTD_Phyre_C"); \ +static_assert(sizeof(UPTD_Phyre_C) == 0x000080, "Wrong size on UPTD_Phyre_C"); \ + +#define DUMPER7_ASSERTS_AN_Temp_Prop_C_Received_NotifyBegin \ +static_assert(alignof(AN_Temp_Prop_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_Temp_Prop_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_Temp_Prop_C_Received_NotifyBegin) == 0x000118, "Wrong size on AN_Temp_Prop_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, CallFunc_SpawnObject_ReturnValue) == 0x000058, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyBegin, K2Node_MakeStruct_GameplayEventData) == 0x000068, "Member 'AN_Temp_Prop_C_Received_NotifyBegin::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Temp_Prop_C_Received_NotifyEnd \ +static_assert(alignof(AN_Temp_Prop_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_Temp_Prop_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_Temp_Prop_C_Received_NotifyEnd) == 0x000058, "Wrong size on AN_Temp_Prop_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Temp_Prop_C_Received_NotifyEnd, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'AN_Temp_Prop_C_Received_NotifyEnd::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Temp_Prop_C \ +static_assert(alignof(UAN_Temp_Prop_C) == 0x000010, "Wrong alignment on UAN_Temp_Prop_C"); \ +static_assert(sizeof(UAN_Temp_Prop_C) == 0x0000C0, "Wrong size on UAN_Temp_Prop_C"); \ +static_assert(offsetof(UAN_Temp_Prop_C, Prop_Actor) == 0x000030, "Member 'UAN_Temp_Prop_C::Prop_Actor' has a wrong offset!"); \ +static_assert(offsetof(UAN_Temp_Prop_C, Socket) == 0x000058, "Member 'UAN_Temp_Prop_C::Socket' has a wrong offset!"); \ +static_assert(offsetof(UAN_Temp_Prop_C, Transform) == 0x000060, "Member 'UAN_Temp_Prop_C::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FAttackDetails \ +static_assert(alignof(FAttackDetails) == 0x000008, "Wrong alignment on FAttackDetails"); \ +static_assert(sizeof(FAttackDetails) == 0x000038, "Wrong size on FAttackDetails"); \ +static_assert(offsetof(FAttackDetails, AttackMontage_10_3F876177478DAE92A83166B6AA323DFB) == 0x000000, "Member 'FAttackDetails::AttackMontage_10_3F876177478DAE92A83166B6AA323DFB' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, BufferDelay_5_7CC5CFA040677BA6AAB1E3B4ED0AAB5D) == 0x000008, "Member 'FAttackDetails::BufferDelay_5_7CC5CFA040677BA6AAB1E3B4ED0AAB5D' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, ComboDelay_7_2A2FC4E24913E4E0BC366E87DBEB6C42) == 0x000010, "Member 'FAttackDetails::ComboDelay_7_2A2FC4E24913E4E0BC366E87DBEB6C42' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, BaseDamage_11_A94347864113365AC02C6F9E7C7A3C3E) == 0x000018, "Member 'FAttackDetails::BaseDamage_11_A94347864113365AC02C6F9E7C7A3C3E' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, RightHanded_13_42EEB47A44839EB94DFEFA801AF3EB06) == 0x000020, "Member 'FAttackDetails::RightHanded_13_42EEB47A44839EB94DFEFA801AF3EB06' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, AudioSwitch_16_68D2A6BC4A83F4140A7214B59604D61A) == 0x000028, "Member 'FAttackDetails::AudioSwitch_16_68D2A6BC4A83F4140A7214B59604D61A' has a wrong offset!"); \ +static_assert(offsetof(FAttackDetails, AbilityTag_21_83FA58664DF06A5E5A4242856A9E6748) == 0x000030, "Member 'FAttackDetails::AbilityTag_21_83FA58664DF06A5E5A4242856A9E6748' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDABP_PlayerAttackConfig_C \ +static_assert(alignof(UDABP_PlayerAttackConfig_C) == 0x000008, "Wrong alignment on UDABP_PlayerAttackConfig_C"); \ +static_assert(sizeof(UDABP_PlayerAttackConfig_C) == 0x000040, "Wrong size on UDABP_PlayerAttackConfig_C"); \ +static_assert(offsetof(UDABP_PlayerAttackConfig_C, Attacks) == 0x000030, "Member 'UDABP_PlayerAttackConfig_C::Attacks' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_MatrixPunch_cooldown_C \ +static_assert(alignof(UGE_MatrixPunch_cooldown_C) == 0x000008, "Wrong alignment on UGE_MatrixPunch_cooldown_C"); \ +static_assert(sizeof(UGE_MatrixPunch_cooldown_C) == 0x000A70, "Wrong size on UGE_MatrixPunch_cooldown_C"); \ + +#define DUMPER7_ASSERTS_UBP_AttackDetails_C \ +static_assert(alignof(UBP_AttackDetails_C) == 0x000008, "Wrong alignment on UBP_AttackDetails_C"); \ +static_assert(sizeof(UBP_AttackDetails_C) == 0x000060, "Wrong size on UBP_AttackDetails_C"); \ +static_assert(offsetof(UBP_AttackDetails_C, Details) == 0x000028, "Member 'UBP_AttackDetails_C::Details' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_BrutalityMultiplier \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_BrutalityMultiplier"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier) == 0x000080, "Wrong size on GA_PlayerPunch_Charged_base_C_BrutalityMultiplier"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, Target) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, Multi) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::Multi' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, Temp_bool_Variable) == 0x000010, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000018, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000029, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000030, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, Temp_bool_Variable_1) == 0x000041, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000042, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000048, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000050, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000060, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000068, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000078, "Member 'GA_PlayerPunch_Charged_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base) == 0x0017E8, "Wrong size on GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, EntryPoint) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue) == 0x000018, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000020, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000034, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable) == 0x000044, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_1) == 0x000045, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_real_Variable) == 0x000048, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_2) == 0x000050, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_3) == 0x000051, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_4) == 0x000052, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_5) == 0x000053, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000058, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_6) == 0x000070, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_7) == 0x000071, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000078, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CustomEvent_WaitingTime_1) == 0x000080, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000084, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_real_Variable_1) == 0x000094, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000098, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_1) == 0x0000A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000A4, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CustomEvent_WaitingTime) == 0x0000B4, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_real_Variable_2) == 0x0000B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x0000C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_2) == 0x0000C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000100, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_8) == 0x000118, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_IsEmpty_ReturnValue) == 0x000119, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_SpawnObject_ReturnValue) == 0x000120, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000128, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000140, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess) == 0x000150, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000154, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000164, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000168, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_1) == 0x000178, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000179, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000180, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_2) == 0x000190, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000198, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_3) == 0x0001A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x0001B0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_4) == 0x0001C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0001C1, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0001C2, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BrutalityMultiplier_Multi) == 0x0001C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BrutalityMultiplier_Multi' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0001D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue) == 0x0001E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_3) == 0x000200, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000208, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x000210, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_4) == 0x000218, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_5) == 0x000219, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_6) == 0x00021C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_7) == 0x00022C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_8) == 0x00023C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_9) == 0x00024C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_9) == 0x00025C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x00025D, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Is_Lunge_Targeted_Targeted) == 0x00025E, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Is_Lunge_Targeted_Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000260, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000268, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_5) == 0x000278, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Event_bWasCancelled) == 0x000279, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000280, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000288, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_6) == 0x000298, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0002A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_10) == 0x0002A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Event_Payload) == 0x0002B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Event_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x000368, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_AbilityTargetDataFromHitResult_ReturnValue) == 0x000370, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_AbilityTargetDataFromHitResult_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bBlockingHit) == 0x000398, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bInitialOverlap) == 0x000399, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Time) == 0x00039C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Distance) == 0x0003A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Location) == 0x0003A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactPoint) == 0x0003C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Normal) == 0x0003D8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactNormal) == 0x0003F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_PhysMat) == 0x000408, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitActor) == 0x000410, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitComponent) == 0x000418, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitBoneName) == 0x000420, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_BoneName) == 0x000428, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitItem) == 0x000430, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ElementIndex) == 0x000434, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_FaceIndex) == 0x000438, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceStart) == 0x000440, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceEnd) == 0x000458, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Is_Lunge_Targeted_Targeted_1) == 0x000470, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Is_Lunge_Targeted_Targeted_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_Length_ReturnValue) == 0x000474, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_int_Array_Index_Variable) == 0x000478, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_Get_Item) == 0x000480, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_11) == 0x000530, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000540, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue_2) == 0x000558, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_6) == 0x000560, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue) == 0x000568, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000570, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x000578, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_7) == 0x000580, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_8) == 0x000581, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000588, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue_2) == 0x000590, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x000598, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue_3) == 0x0005A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_9) == 0x0005A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_10) == 0x0005A9, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetHitImpactCue_GameplayCueTag) == 0x0005AC, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetHitImpactCue_GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0005B4, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x0005BC, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x0005C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0005D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue_4) == 0x0005E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetComponentByClass_ReturnValue) == 0x0005F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_11) == 0x0005F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_IsEmpty_ReturnValue_2) == 0x0005F9, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_IsEmpty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsFalling_ReturnValue) == 0x0005FA, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000600, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetVelocity_ReturnValue) == 0x000608, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_NegateVector_ReturnValue) == 0x000620, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue) == 0x000638, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPunchTarget_ReturnValue_5) == 0x000650, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPunchTarget_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000658, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000670, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000678, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_int_Loop_Counter_Variable) == 0x000690, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000698, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_X) == 0x0006B0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Y) == 0x0006B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Z) == 0x0006C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Less_IntInt_ReturnValue) == 0x0006C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeVector_ReturnValue) == 0x0006D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Normal_ReturnValue) == 0x0006E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_IntInt_ReturnValue) == 0x000700, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_12) == 0x000704, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Event_EventData) == 0x000718, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0007C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_12) == 0x0007D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_13) == 0x0007D1, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsBP_Attack_Details) == 0x0007D8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsBP_Attack_Details' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_7) == 0x0007E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue_3) == 0x0007E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_14) == 0x0007F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_TraceEnvironmentHit_ReturnValue) == 0x0007F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_TraceEnvironmentHit_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_TraceEnemyHits_ReturnValue) == 0x0008E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_TraceEnemyHits_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_13) == 0x0008F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_TraceEnemyHits_ReturnValue_1) == 0x000900, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_TraceEnemyHits_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetValidEventData_ReturnValue) == 0x000910, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetValidEventData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000920, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_10) == 0x000928, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000929, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_bool_Variable_11) == 0x00092A, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, Temp_struct_Variable) == 0x000930, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CustomEvent_DestinationReached) == 0x000948, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CustomEvent_TimedOut) == 0x000949, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CustomEvent_FinalTargetLocation) == 0x000950, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000968, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000970, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000980, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_CommitAbility_ReturnValue) == 0x000981, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Default) == 0x000988, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000990, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000998, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0009A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Dot_VectorVector_ReturnValue) == 0x0009B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x0009C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0009E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_CreateTimeDilation_Handle) == 0x0009EC, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_14) == 0x0009F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bBlockingHit_1) == 0x000A00, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x000A01, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Time_1) == 0x000A04, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Distance_1) == 0x000A08, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Location_1) == 0x000A10, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000A28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Normal_1) == 0x000A40, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000A58, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_PhysMat_1) == 0x000A70, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitActor_1) == 0x000A78, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitComponent_1) == 0x000A80, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitBoneName_1) == 0x000A88, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_BoneName_1) == 0x000A90, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitItem_1) == 0x000A98, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ElementIndex_1) == 0x000A9C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_FaceIndex_1) == 0x000AA0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceStart_1) == 0x000AA8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceEnd_1) == 0x000AC0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_NegateVector_ReturnValue_1) == 0x000AD8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyMovableForceAtLocation_ReturnValue) == 0x000AF0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyMovableForceAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000B00, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000B08, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Vector_Distance_ReturnValue) == 0x000B20, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000B28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000B30, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetFloatAttribute_ReturnValue) == 0x000B34, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_15) == 0x000B38, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000B48, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue_4) == 0x000B50, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000B58, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_ReturnValue_5) == 0x000B60, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_15) == 0x000B68, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_16) == 0x000B69, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000B70, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000B78, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000B80, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000B88, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000B90, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_ApplyDamageParams) == 0x000B98, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000BC0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000BE8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000BF0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2) == 0x000BF8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_8) == 0x000C08, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_16) == 0x000C0C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000C20, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000C28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000C38, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000C40, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Not_PreBool_ReturnValue) == 0x000C48, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BooleanAND_ReturnValue) == 0x000C49, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000C4A, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_GameplayEventData) == 0x000C50, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x000D00, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000D08, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPlayerController_ReturnValue) == 0x000D20, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000D28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetControlRotation_ReturnValue) == 0x000D40, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000D58, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetForwardVector_ReturnValue) == 0x000D60, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeArray_Array) == 0x000D78, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000D88, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPlayerController_ReturnValue_1) == 0x000DA0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_X_1) == 0x000DA8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Y_1) == 0x000DB0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Z_1) == 0x000DB8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetControlRotation_ReturnValue_1) == 0x000DC0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeVector_ReturnValue_1) == 0x000DD8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetForwardVector_ReturnValue_1) == 0x000DF0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000E08, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_X_2) == 0x000E20, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Y_2) == 0x000E28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Z_2) == 0x000E30, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_CapsuleTraceSingle_OutHit) == 0x000E38, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_CapsuleTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_CapsuleTraceSingle_ReturnValue) == 0x000F20, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_CapsuleTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeVector_ReturnValue_2) == 0x000F28, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Normal_ReturnValue_1) == 0x000F40, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bBlockingHit_2) == 0x000F58, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bBlockingHit_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_bInitialOverlap_2) == 0x000F59, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_bInitialOverlap_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Time_2) == 0x000F5C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Time_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Distance_2) == 0x000F60, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Distance_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Location_2) == 0x000F68, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Location_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactPoint_2) == 0x000F80, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactPoint_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_Normal_2) == 0x000F98, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_Normal_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ImpactNormal_2) == 0x000FB0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ImpactNormal_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_PhysMat_2) == 0x000FC8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_PhysMat_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitActor_2) == 0x000FD0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitActor_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitComponent_2) == 0x000FD8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitComponent_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitBoneName_2) == 0x000FE0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitBoneName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_BoneName_2) == 0x000FE8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_BoneName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_HitItem_2) == 0x000FF0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_HitItem_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_ElementIndex_2) == 0x000FF4, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_ElementIndex_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_FaceIndex_2) == 0x000FF8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_FaceIndex_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceStart_2) == 0x001000, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceStart_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakHitResult_TraceEnd_2) == 0x001018, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakHitResult_TraceEnd_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_NegateVector_ReturnValue_2) == 0x001030, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_NegateVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001048, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_17) == 0x001060, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_2) == 0x001070, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x001088, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x001090, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0010A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x0010B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPlayerController_ReturnValue_2) == 0x0010C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BooleanOR_ReturnValue) == 0x0010C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_Add_ReturnValue) == 0x0010CC, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_Contains_ReturnValue) == 0x0010D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0010D8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetGameplayEffectCount_ReturnValue) == 0x0010E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetGameplayEffectCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Default_1) == 0x0010E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0010F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0010F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2) == 0x001100, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector2D_X) == 0x001108, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector2D_Y) == 0x001110, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x001118, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MapRangeClamped_ReturnValue) == 0x001120, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x001128, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x001130, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x001138, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x001140, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_IsEmpty_ReturnValue_3) == 0x001141, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_IsEmpty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x001148, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3) == 0x001150, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_9) == 0x001160, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetValidEventData_ReturnValue_1) == 0x001168, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetValidEventData_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x001178, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x001180, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x001198, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0011A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0011B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0011D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_18) == 0x0011E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0011F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1) == 0x001210, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_17) == 0x001218, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x001220, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_4) == 0x001228, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x001240, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x001258, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_4) == 0x001270, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x001288, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x001290, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0012B0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x0012C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BooleanOR_ReturnValue_1) == 0x0012C1, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0012C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_TraceEnemyHits_ReturnValue_2) == 0x0012D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_TraceEnemyHits_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_19) == 0x0012E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetValidEventData_ReturnValue_2) == 0x0012F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetValidEventData_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPlayerController_ReturnValue_3) == 0x001300, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetControlRotation_ReturnValue_2) == 0x001308, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetControlRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x001320, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetForwardVector_ReturnValue_2) == 0x001338, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x001350, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001358, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x001370, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_X_3) == 0x001388, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Y_3) == 0x001390, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_BreakVector_Z_3) == 0x001398, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeVector_ReturnValue_3) == 0x0013A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x0013B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_5) == 0x0013C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Default_2) == 0x0013D8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Not_PreBool_ReturnValue_1) == 0x0013F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2) == 0x0013F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Default_3) == 0x001400, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_18) == 0x001404, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x001408, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x001428, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_GameplayEventData_1) == 0x001430, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_10) == 0x0014E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x0014F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x001510, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_5) == 0x001518, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x001530, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x001570, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_6) == 0x001588, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Array_Get_Item_1) == 0x0015A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_7) == 0x0015A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_19) == 0x0015C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x0015C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_7) == 0x0015E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_AsCharacter) == 0x0015F8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_DynamicCast_bSuccess_10) == 0x001600, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_8) == 0x001608, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsWalking_ReturnValue) == 0x001620, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14) == 0x001628, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsFalling_ReturnValue_1) == 0x001630, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x001631, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3) == 0x001638, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x001640, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_ReturnValue_8) == 0x001648, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_20) == 0x001660, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_20) == 0x001664, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7) == 0x001678, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetActorForwardVector_ReturnValue_6) == 0x001680, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetActorForwardVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_GetActorLocation_ReturnValue_11) == 0x001698, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_GetActorLocation_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_VectorVector_ReturnValue_8) == 0x0016B0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_VectorVector_ReturnValue_9) == 0x0016C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_IsValid_ReturnValue_21) == 0x0016E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15) == 0x0016E8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_21) == 0x0016F0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x001700, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x001710, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x001718, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_GetPlayerController_ReturnValue_4) == 0x001720, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Default_4) == 0x001728, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_EqualEqual_NameName_ReturnValue) == 0x001730, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_CreateDelegate_OutputDelegate_22) == 0x001734, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Option_0_ImplicitCast) == 0x001748, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_VariableSet_Hit_Damage_ImplicitCast) == 0x001750, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_VariableSet_Hit_Damage_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x001758, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Option_1_ImplicitCast) == 0x001760, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_MakeStruct_Duration_ImplicitCast) == 0x001768, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_MakeStruct_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x001770, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x001778, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x001780, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x001788, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ActorTimeDelay_Duration_ImplicitCast_1) == 0x00178C, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ActorTimeDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x001790, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001798, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x0017A0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x0017A8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Add_DoubleDouble_A_ImplicitCast_1) == 0x0017B0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Add_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_TraceEnemyHits_InForwardDistance_ImplicitCast) == 0x0017B8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_TraceEnemyHits_InForwardDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x0017C0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Option_1_ImplicitCast_1) == 0x0017C8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Option_1_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Option_0_ImplicitCast_1) == 0x0017CC, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, K2Node_Select_Option_0_ImplicitCast_2) == 0x0017D0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::K2Node_Select_Option_0_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0017D8, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base, CallFunc_ClientStartCameraShake_Scale_ImplicitCast) == 0x0017E0, "Member 'GA_PlayerPunch_Charged_base_C_ExecuteUbergraph_GA_PlayerPunch_Charged_base::CallFunc_ClientStartCameraShake_Scale_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_Get_Hit_Tag \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_Get_Hit_Tag"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag) == 0x0000C8, "Wrong size on GA_PlayerPunch_Charged_base_C_Get_Hit_Tag"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, InputPin) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::InputPin' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, bIsFalling) == 0x000010, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_struct_Variable) == 0x000014, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000020, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_bool_Variable) == 0x000029, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_struct_Variable_1) == 0x00002C, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_bool_Variable_1) == 0x000034, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_struct_Variable_2) == 0x000038, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_1) == 0x000040, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_2) == 0x000048, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000050, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000060, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_Not_PreBool_ReturnValue) == 0x000061, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_GetComponentByClass_ReturnValue) == 0x000068, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000070, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000080, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000090, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_IsFalling_ReturnValue) == 0x000091, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, Temp_bool_Variable_2) == 0x000092, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000098, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0000A8, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_BooleanAND_ReturnValue) == 0x0000A9, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, CallFunc_BooleanOR_ReturnValue) == 0x0000AA, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, K2Node_Select_Default) == 0x0000AC, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, K2Node_Select_Default_1) == 0x0000B4, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Get_Hit_Tag, K2Node_Select_Default_2) == 0x0000BC, "Member 'GA_PlayerPunch_Charged_base_C_Get_Hit_Tag::K2Node_Select_Default_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_GetHitImpactCue \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_GetHitImpactCue"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue) == 0x000058, "Wrong size on GA_PlayerPunch_Charged_base_C_GetHitImpactCue"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, GameplayCueTag) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000038, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000040, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000050, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_GetHitImpactCue, CallFunc_BooleanAND_ReturnValue) == 0x000051, "Member 'GA_PlayerPunch_Charged_base_C_GetHitImpactCue::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted) == 0x000148, "Wrong size on GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, Targeted) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000010, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000018, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000048, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue_2) == 0x000050, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000058, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, Temp_bool_Variable) == 0x000070, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000080, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000098, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetPlayerController_ReturnValue) == 0x0000B0, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetControlRotation_ReturnValue) == 0x0000B8, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_GetForwardVector_ReturnValue) == 0x0000D8, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000F0, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_Dot_VectorVector_ReturnValue) == 0x000108, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_Vector_Distance_ReturnValue) == 0x000110, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_FClamp_ReturnValue) == 0x000118, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000120, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000128, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000138, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue) == 0x000139, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000140, "Member 'GA_PlayerPunch_Charged_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerPunch_Charged_base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerPunch_Charged_base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF) == 0x000004, "Wrong alignment on GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF) == 0x000004, "Wrong size on GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF, WaitingTime) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_OnControlCueProcess_CEF9F5E44406BB8A472711B64FDA6ABF::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9 \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9) == 0x000004, "Wrong alignment on GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9) == 0x000004, "Wrong size on GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9, WaitingTime) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_OnControlCueProcess_D180432545C393D196A5838E77C5D2E9::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814 \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814) == 0x000020, "Wrong size on GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814, DestinationReached) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814, TimedOut) == 0x000001, "Member 'GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814, FinalTargetLocation) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_OnFinished_63F7FC574DE9BD418B6999B60BE70814::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_OnFistHitEnd \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_OnFistHitEnd) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_OnFistHitEnd"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_OnFistHitEnd) == 0x0000B0, "Wrong size on GA_PlayerPunch_Charged_base_C_OnFistHitEnd"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_OnFistHitEnd, Payload) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_OnFistHitEnd::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue \ +static_assert(alignof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue) == 0x000008, "Wrong alignment on GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue"); \ +static_assert(sizeof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue) == 0x000050, "Wrong size on GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, Activation_Distance) == 0x000000, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::Activation_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_Square_ReturnValue) == 0x000010, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_MakeEffectContext_ReturnValue) == 0x000028, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_MakeEffectContext_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000040, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000044, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'GA_PlayerPunch_Charged_base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerPunch_Charged_base_C \ +static_assert(alignof(UGA_PlayerPunch_Charged_base_C) == 0x000008, "Wrong alignment on UGA_PlayerPunch_Charged_base_C"); \ +static_assert(sizeof(UGA_PlayerPunch_Charged_base_C) == 0x000A48, "Wrong size on UGA_PlayerPunch_Charged_base_C"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, UberGraphFrame) == 0x000690, "Member 'UGA_PlayerPunch_Charged_base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, ImpactShake) == 0x000698, "Member 'UGA_PlayerPunch_Charged_base_C::ImpactShake' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Impact_Shake_Scale) == 0x0006A0, "Member 'UGA_PlayerPunch_Charged_base_C::Impact_Shake_Scale' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeDelay) == 0x0006A4, "Member 'UGA_PlayerPunch_Charged_base_C::LungeDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeRange) == 0x0006A8, "Member 'UGA_PlayerPunch_Charged_base_C::LungeRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeDuration) == 0x0006AC, "Member 'UGA_PlayerPunch_Charged_base_C::LungeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeRangeTargeted) == 0x0006B0, "Member 'UGA_PlayerPunch_Charged_base_C::LungeRangeTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeDurationTargeted) == 0x0006B4, "Member 'UGA_PlayerPunch_Charged_base_C::LungeDurationTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeAssistStrength) == 0x0006B8, "Member 'UGA_PlayerPunch_Charged_base_C::LungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, PreLungeAssistStrength) == 0x0006BC, "Member 'UGA_PlayerPunch_Charged_base_C::PreLungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LungeMaxAngle) == 0x0006C0, "Member 'UGA_PlayerPunch_Charged_base_C::LungeMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Buffer_Delay) == 0x0006C8, "Member 'UGA_PlayerPunch_Charged_base_C::Buffer_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, ComboDelay) == 0x0006D0, "Member 'UGA_PlayerPunch_Charged_base_C::ComboDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Impact_section) == 0x0006D8, "Member 'UGA_PlayerPunch_Charged_base_C::Impact_section' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Bounceback_Distance) == 0x0006E0, "Member 'UGA_PlayerPunch_Charged_base_C::Bounceback_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hitfreeze_Duration) == 0x0006E8, "Member 'UGA_PlayerPunch_Charged_base_C::Hitfreeze_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hitfreeze_Duration_Brutal) == 0x0006EC, "Member 'UGA_PlayerPunch_Charged_base_C::Hitfreeze_Duration_Brutal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Multi_Hit) == 0x0006F0, "Member 'UGA_PlayerPunch_Charged_base_C::Multi_Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, EnvironmentHitResult) == 0x0006F8, "Member 'UGA_PlayerPunch_Charged_base_C::EnvironmentHitResult' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, EnemyHitsEventData) == 0x0007E0, "Member 'UGA_PlayerPunch_Charged_base_C::EnemyHitsEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, HitEventTag) == 0x0007F0, "Member 'UGA_PlayerPunch_Charged_base_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, RightPunch) == 0x0007F8, "Member 'UGA_PlayerPunch_Charged_base_C::RightPunch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, PunchImpactCueTag) == 0x0007FC, "Member 'UGA_PlayerPunch_Charged_base_C::PunchImpactCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, MoveToForceAsyncTask) == 0x000808, "Member 'UGA_PlayerPunch_Charged_base_C::MoveToForceAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, HitResponseTag) == 0x000810, "Member 'UGA_PlayerPunch_Charged_base_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, HitEventData) == 0x000818, "Member 'UGA_PlayerPunch_Charged_base_C::HitEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, MoveToCueTag) == 0x0008C8, "Member 'UGA_PlayerPunch_Charged_base_C::MoveToCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, PunchCancelledGameplayCueTag) == 0x0008D0, "Member 'UGA_PlayerPunch_Charged_base_C::PunchCancelledGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, PunchBlockCueTag) == 0x0008D8, "Member 'UGA_PlayerPunch_Charged_base_C::PunchBlockCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Environment_Damage) == 0x0008E0, "Member 'UGA_PlayerPunch_Charged_base_C::Environment_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, NoiseRadius) == 0x0008E4, "Member 'UGA_PlayerPunch_Charged_base_C::NoiseRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Knockback) == 0x0008E8, "Member 'UGA_PlayerPunch_Charged_base_C::Knockback' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hangloc) == 0x000928, "Member 'UGA_PlayerPunch_Charged_base_C::Hangloc' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, AttackMontage) == 0x000940, "Member 'UGA_PlayerPunch_Charged_base_C::AttackMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, BounceBackLoc) == 0x000948, "Member 'UGA_PlayerPunch_Charged_base_C::BounceBackLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Trace_Range) == 0x000960, "Member 'UGA_PlayerPunch_Charged_base_C::Trace_Range' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Trace_Radius) == 0x000964, "Member 'UGA_PlayerPunch_Charged_base_C::Trace_Radius' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hit_Damage) == 0x000968, "Member 'UGA_PlayerPunch_Charged_base_C::Hit_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, LaunchLightweights) == 0x00096C, "Member 'UGA_PlayerPunch_Charged_base_C::LaunchLightweights' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Death_Behaviour_Tag) == 0x000970, "Member 'UGA_PlayerPunch_Charged_base_C::Death_Behaviour_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, AttackTags) == 0x000978, "Member 'UGA_PlayerPunch_Charged_base_C::AttackTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, FlinchOnlyTags) == 0x000998, "Member 'UGA_PlayerPunch_Charged_base_C::FlinchOnlyTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, BehindEnemy) == 0x0009B8, "Member 'UGA_PlayerPunch_Charged_base_C::BehindEnemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hit_Enemy) == 0x0009B9, "Member 'UGA_PlayerPunch_Charged_base_C::Hit_Enemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Undodgeable_Trace_Percent) == 0x0009C0, "Member 'UGA_PlayerPunch_Charged_base_C::Undodgeable_Trace_Percent' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, DoAirhang) == 0x0009C8, "Member 'UGA_PlayerPunch_Charged_base_C::DoAirhang' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Noise_Loudness) == 0x0009CC, "Member 'UGA_PlayerPunch_Charged_base_C::Noise_Loudness' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Attack_Type_Tag) == 0x0009D0, "Member 'UGA_PlayerPunch_Charged_base_C::Attack_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, BM_DodgeTag) == 0x0009D8, "Member 'UGA_PlayerPunch_Charged_base_C::BM_DodgeTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, BMIgnoreTags) == 0x0009E0, "Member 'UGA_PlayerPunch_Charged_base_C::BMIgnoreTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Breaks_Blocks) == 0x000A00, "Member 'UGA_PlayerPunch_Charged_base_C::Breaks_Blocks' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Hit_Targets) == 0x000A08, "Member 'UGA_PlayerPunch_Charged_base_C::Hit_Targets' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Rear_Hit_Damage_Multiplier) == 0x000A18, "Member 'UGA_PlayerPunch_Charged_base_C::Rear_Hit_Damage_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, DecayMultiplier) == 0x000A20, "Member 'UGA_PlayerPunch_Charged_base_C::DecayMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, AttackBuffered) == 0x000A30, "Member 'UGA_PlayerPunch_Charged_base_C::AttackBuffered' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, DirectionalTwist) == 0x000A38, "Member 'UGA_PlayerPunch_Charged_base_C::DirectionalTwist' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerPunch_Charged_base_C, Swung) == 0x000A40, "Member 'UGA_PlayerPunch_Charged_base_C::Swung' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy \ +static_assert(alignof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy) == 0x000008, "Wrong alignment on GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy"); \ +static_assert(sizeof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy) == 0x000170, "Wrong size on GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, EntryPoint) == 0x000000, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000004, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000010, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, K2Node_MakeStruct_Struct_KnockBackParameters_1) == 0x000050, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::K2Node_MakeStruct_Struct_KnockBackParameters_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, Temp_bool_Variable) == 0x000090, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, Temp_struct_Variable) == 0x000094, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, Temp_struct_Variable_1) == 0x00009C, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, K2Node_Event_EventData) == 0x0000A8, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000158, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, CallFunc_IsFalling_ReturnValue) == 0x000160, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy, K2Node_Select_Default) == 0x000164, "Member 'GA_PlayerAttack_Heavy_C_ExecuteUbergraph_GA_PlayerAttack_Heavy::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerAttack_Heavy_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerAttack_Heavy_C \ +static_assert(alignof(UGA_PlayerAttack_Heavy_C) == 0x000008, "Wrong alignment on UGA_PlayerAttack_Heavy_C"); \ +static_assert(sizeof(UGA_PlayerAttack_Heavy_C) == 0x000A50, "Wrong size on UGA_PlayerAttack_Heavy_C"); \ +static_assert(offsetof(UGA_PlayerAttack_Heavy_C, UberGraphFrame_GA_PlayerAttack_Heavy_C) == 0x000A48, "Member 'UGA_PlayerAttack_Heavy_C::UberGraphFrame_GA_PlayerAttack_Heavy_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerAttack_Light_NoLunge_C \ +static_assert(alignof(UGA_PlayerAttack_Light_NoLunge_C) == 0x000008, "Wrong alignment on UGA_PlayerAttack_Light_NoLunge_C"); \ +static_assert(sizeof(UGA_PlayerAttack_Light_NoLunge_C) == 0x000A58, "Wrong size on UGA_PlayerAttack_Light_NoLunge_C"); \ + +#define DUMPER7_ASSERTS_UGE_ChargeupSlowdown_C \ +static_assert(alignof(UGE_ChargeupSlowdown_C) == 0x000008, "Wrong alignment on UGE_ChargeupSlowdown_C"); \ +static_assert(sizeof(UGE_ChargeupSlowdown_C) == 0x000A70, "Wrong size on UGE_ChargeupSlowdown_C"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_DefensiveDash_Weak_C \ +static_assert(alignof(UGA_Enemy_DefensiveDash_Weak_C) == 0x000008, "Wrong alignment on UGA_Enemy_DefensiveDash_Weak_C"); \ +static_assert(sizeof(UGA_Enemy_DefensiveDash_Weak_C) == 0x0006B0, "Wrong size on UGA_Enemy_DefensiveDash_Weak_C"); \ + +#define DUMPER7_ASSERTS_UGE_SetStunToThreshold_C \ +static_assert(alignof(UGE_SetStunToThreshold_C) == 0x000008, "Wrong alignment on UGE_SetStunToThreshold_C"); \ +static_assert(sizeof(UGE_SetStunToThreshold_C) == 0x000A70, "Wrong size on UGE_SetStunToThreshold_C"); \ + +#define DUMPER7_ASSERTS_UGE_Stun_attackable_C \ +static_assert(alignof(UGE_Stun_attackable_C) == 0x000008, "Wrong alignment on UGE_Stun_attackable_C"); \ +static_assert(sizeof(UGE_Stun_attackable_C) == 0x000A70, "Wrong size on UGE_Stun_attackable_C"); \ + +#define DUMPER7_ASSERTS_UGE_Stun_C \ +static_assert(alignof(UGE_Stun_C) == 0x000008, "Wrong alignment on UGE_Stun_C"); \ +static_assert(sizeof(UGE_Stun_C) == 0x000A70, "Wrong size on UGE_Stun_C"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_Bosstargeting \ +static_assert(alignof(GA_Stun_C_Bosstargeting) == 0x000008, "Wrong alignment on GA_Stun_C_Bosstargeting"); \ +static_assert(sizeof(GA_Stun_C_Bosstargeting) == 0x000058, "Wrong size on GA_Stun_C_Bosstargeting"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, Disable) == 0x000000, "Member 'GA_Stun_C_Bosstargeting::Disable' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'GA_Stun_C_Bosstargeting::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000028, "Member 'GA_Stun_C_Bosstargeting::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000030, "Member 'GA_Stun_C_Bosstargeting::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000038, "Member 'GA_Stun_C_Bosstargeting::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000040, "Member 'GA_Stun_C_Bosstargeting::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000050, "Member 'GA_Stun_C_Bosstargeting::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Bosstargeting, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000051, "Member 'GA_Stun_C_Bosstargeting::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_CalculateTKStunDuration \ +static_assert(alignof(GA_Stun_C_CalculateTKStunDuration) == 0x000008, "Wrong alignment on GA_Stun_C_CalculateTKStunDuration"); \ +static_assert(sizeof(GA_Stun_C_CalculateTKStunDuration) == 0x000100, "Wrong size on GA_Stun_C_CalculateTKStunDuration"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, GameplayEventData) == 0x000000, "Member 'GA_Stun_C_CalculateTKStunDuration::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0000B0, "Member 'GA_Stun_C_CalculateTKStunDuration::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'GA_Stun_C_CalculateTKStunDuration::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0000C0, "Member 'GA_Stun_C_CalculateTKStunDuration::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, K2Node_DynamicCast_bSuccess_1) == 0x0000D0, "Member 'GA_Stun_C_CalculateTKStunDuration::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, CallFunc_GetEnemyStatsDataAsset_ReturnValue) == 0x0000D8, "Member 'GA_Stun_C_CalculateTKStunDuration::CallFunc_GetEnemyStatsDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, CallFunc_GetDataAsset_ReturnValue) == 0x0000E0, "Member 'GA_Stun_C_CalculateTKStunDuration::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_Stun_C_CalculateTKStunDuration::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000F0, "Member 'GA_Stun_C_CalculateTKStunDuration::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_CalculateTKStunDuration, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0000F8, "Member 'GA_Stun_C_CalculateTKStunDuration::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_Drop_Weapon \ +static_assert(alignof(GA_Stun_C_Drop_Weapon) == 0x000010, "Wrong alignment on GA_Stun_C_Drop_Weapon"); \ +static_assert(sizeof(GA_Stun_C_Drop_Weapon) == 0x0002B0, "Wrong size on GA_Stun_C_Drop_Weapon"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, Temp_int_Array_Index_Variable) == 0x000000, "Member 'GA_Stun_C_Drop_Weapon::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000028, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000048, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000068, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000070, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000078, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000088, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000098, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutOldWeapon) == 0x0000A0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutNewWeapon) == 0x0000A8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0000B0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0000B1, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x0000B2, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutOldWeapon_1) == 0x0000B8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutOldWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutNewWeapon_1) == 0x0000C0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutNewWeapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutOldWeapon_2) == 0x0000C8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutOldWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_ChangeWeapon_OutNewWeapon_2) == 0x0000D0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_ChangeWeapon_OutNewWeapon_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetEnemyTypeName_ReturnValue) == 0x0000D8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000E0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000F0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Conv_NameToString_ReturnValue) == 0x0000F8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BooleanOR_ReturnValue) == 0x000108, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue) == 0x000109, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue_1) == 0x00010A, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue_2) == 0x00010B, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BooleanOR_ReturnValue_1) == 0x00010C, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue_3) == 0x00010D, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue_4) == 0x00010E, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Contains_ReturnValue_5) == 0x00010F, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Contains_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, Temp_int_Loop_Counter_Variable) == 0x000110, "Member 'GA_Stun_C_Drop_Weapon::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000118, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_AsBP_Enemy_Character_Base_1) == 0x000120, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_AsBP_Enemy_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_bSuccess_1) == 0x000128, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Add_IntInt_ReturnValue) == 0x00012C, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000130, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000140, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetAttachedActors_OutActors) == 0x000148, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Array_Get_Item) == 0x000158, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Array_Length_ReturnValue) == 0x000160, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_AsBP_Weapon) == 0x000168, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, K2Node_DynamicCast_bSuccess_2) == 0x000170, "Member 'GA_Stun_C_Drop_Weapon::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_Less_IntInt_ReturnValue) == 0x000171, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetTransform_ReturnValue) == 0x000180, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BreakTransform_Location) == 0x0001E0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BreakTransform_Rotation) == 0x0001F8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BreakTransform_Scale) == 0x000210, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_MakeTransform_ReturnValue) == 0x000230, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000290, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000298, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_IsValid_ReturnValue) == 0x0002A0, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_Drop_Weapon, CallFunc_FinishSpawningActor_ReturnValue) == 0x0002A8, "Member 'GA_Stun_C_Drop_Weapon::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_ExecuteUbergraph_GA_Stun \ +static_assert(alignof(GA_Stun_C_ExecuteUbergraph_GA_Stun) == 0x000008, "Wrong alignment on GA_Stun_C_ExecuteUbergraph_GA_Stun"); \ +static_assert(sizeof(GA_Stun_C_ExecuteUbergraph_GA_Stun) == 0x000330, "Wrong size on GA_Stun_C_ExecuteUbergraph_GA_Stun"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, EntryPoint) == 0x000000, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000008, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, K2Node_Event_EventData) == 0x000028, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000D8, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x0000E0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, K2Node_Event_bWasCancelled) == 0x0000E8, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0000E9, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0000F0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAIController_ReturnValue) == 0x0000F8, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000100, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000108, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000118, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000120, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000128, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000130, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000138, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000140, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetComponentByClass_ReturnValue) == 0x000148, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_IsValid_ReturnValue) == 0x000150, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, K2Node_CreateDelegate_OutputDelegate) == 0x000154, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_RandomFloatInRange_ReturnValue) == 0x000168, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000170, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000178, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000180, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_WaitDelay_ReturnValue) == 0x000258, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_IsValid_ReturnValue_1) == 0x000260, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetPlayerPawn_ReturnValue) == 0x000268, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, K2Node_MakeStruct_ApplyDamageParams) == 0x000270, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_MakeLiteralByte_ReturnValue) == 0x000298, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000299, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0002A0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0002C0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0002C8, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0002D0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0002F0, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x0002F8, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000308, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000310, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000320, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x000324, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_ExecuteUbergraph_GA_Stun, CallFunc_WaitDelay_Time_ImplicitCast) == 0x00032C, "Member 'GA_Stun_C_ExecuteUbergraph_GA_Stun::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_GoToSearchState \ +static_assert(alignof(GA_Stun_C_GoToSearchState) == 0x000008, "Wrong alignment on GA_Stun_C_GoToSearchState"); \ +static_assert(sizeof(GA_Stun_C_GoToSearchState) == 0x000038, "Wrong size on GA_Stun_C_GoToSearchState"); \ +static_assert(offsetof(GA_Stun_C_GoToSearchState, K2Node_MakeStruct_StateTreeEvent) == 0x000000, "Member 'GA_Stun_C_GoToSearchState::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_GoToSearchState, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_Stun_C_GoToSearchState::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_GoToSearchState, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000028, "Member 'GA_Stun_C_GoToSearchState::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_GoToSearchState, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_Stun_C_GoToSearchState::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Stun_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Stun_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Stun_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Stun_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Stun_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Stun_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_K2_OnEndAbility \ +static_assert(alignof(GA_Stun_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Stun_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Stun_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Stun_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Stun_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Stun_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stun_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Stun_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Stun_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Stun_C_K2_CanActivateAbility) == 0x0000B8, "Wrong size on GA_Stun_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Stun_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Stun_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Stun_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Stun_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000074, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000080, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute) == 0x000088, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetFloatAttributeBase_ReturnValue) == 0x00008C, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetFloatAttributeBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute_1) == 0x000090, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetFloatAttributeBase_ReturnValue_1) == 0x000094, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetFloatAttributeBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_GetAIController_ReturnValue) == 0x000098, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_AIHasStateTag_ReturnValue) == 0x0000A1, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue) == 0x0000A2, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0000A8, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Stun_C_K2_CanActivateAbility, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x0000B0, "Member 'GA_Stun_C_K2_CanActivateAbility::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Stun_C \ +static_assert(alignof(UGA_Stun_C) == 0x000008, "Wrong alignment on UGA_Stun_C"); \ +static_assert(sizeof(UGA_Stun_C) == 0x000740, "Wrong size on UGA_Stun_C"); \ +static_assert(offsetof(UGA_Stun_C, UberGraphFrame) == 0x000668, "Member 'UGA_Stun_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunDuration) == 0x000670, "Member 'UGA_Stun_C::StunDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunRegenDelay) == 0x000678, "Member 'UGA_Stun_C::StunRegenDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunRegenTag) == 0x000680, "Member 'UGA_Stun_C::StunRegenTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunRegenPause) == 0x0006A0, "Member 'UGA_Stun_C::StunRegenPause' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunRegenStartDelay) == 0x0006A8, "Member 'UGA_Stun_C::StunRegenStartDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, CombatTagContainer) == 0x0006B0, "Member 'UGA_Stun_C::CombatTagContainer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, StunDurationTK) == 0x0006D0, "Member 'UGA_Stun_C::StunDurationTK' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, IsTK) == 0x0006D8, "Member 'UGA_Stun_C::IsTK' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, UseDuration) == 0x0006E0, "Member 'UGA_Stun_C::UseDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, RegenExclusionTags) == 0x0006E8, "Member 'UGA_Stun_C::RegenExclusionTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, ToDie) == 0x000708, "Member 'UGA_Stun_C::ToDie' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, LaunchDropTags) == 0x000710, "Member 'UGA_Stun_C::LaunchDropTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, Effect) == 0x000730, "Member 'UGA_Stun_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stun_C, BarkSuppressor) == 0x000738, "Member 'UGA_Stun_C::BarkSuppressor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking) == 0x000130, "Wrong size on GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, Friction_0) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::Friction_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, BrakingDeceleration) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::BrakingDeceleration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, RevAccel) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::RevAccel' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, OldVelocity_0) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::OldVelocity_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, ZeroBraking) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::ZeroBraking' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, ZeroFriction) == 0x000039, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::ZeroFriction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, Temp_bool_Variable) == 0x00003A, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x00003B, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_EqualEqual_DoubleDouble_ReturnValue_1) == 0x00003C, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_EqualEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, Temp_struct_Variable) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_BooleanAND_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Square_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_VSize2DSquared_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_VSize2DSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_CrossProduct2D_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_CrossProduct2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000078, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_MakeVector2D_ReturnValue_2) == 0x0000C0, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Add_Vector2DVector2D_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Add_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue_1) == 0x0000E0, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Normal2D_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Add_Vector2DVector2D_ReturnValue_1) == 0x000100, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Add_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, CallFunc_Multiply_Vector2DVector2D_ReturnValue_2) == 0x000110, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::CallFunc_Multiply_Vector2DVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking, K2Node_Select_Default) == 0x000120, "Member 'GA_PlayerMovement_WallClimb_C_ApplyVelocityBraking::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CalcAcceleration \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CalcAcceleration) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CalcAcceleration"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CalcAcceleration) == 0x0000D0, "Wrong size on GA_PlayerMovement_WallClimb_C_CalcAcceleration"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, InputVector) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::InputVector' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector_X) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector_Y) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector_Z) == 0x000030, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue_1) == 0x000050, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector2D_X) == 0x000060, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector2D_Y) == 0x000068, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_FClamp_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_FClamp_ReturnValue_1) == 0x000078, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue_2) == 0x000080, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector2D_X_1) == 0x000090, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_BreakVector2D_Y_1) == 0x000098, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_FCeil_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_FCeil_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_MakeVector2D_ReturnValue_3) == 0x0000B0, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_MakeVector2D_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcAcceleration, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_WallClimb_C_CalcAcceleration::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CalculateWallNormal \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CalculateWallNormal"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal) == 0x000040, "Wrong size on GA_PlayerMovement_WallClimb_C_CalculateWallNormal"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CalculateWallNormal::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_CalculateWallNormal::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal, CallFunc_GetTraversalComponent_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CalculateWallNormal::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalculateWallNormal, CallFunc_GetWallClimbWallNormal_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_CalculateWallNormal::CallFunc_GetWallClimbWallNormal_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CalcVelocity \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CalcVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CalcVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CalcVelocity) == 0x0000C8, "Wrong size on GA_PlayerMovement_WallClimb_C_CalcVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, TimeSinceStart) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::TimeSinceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_GetFloatValue_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_BreakVector2D_X) == 0x000030, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_BreakVector2D_Y) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_MapRangeClamped_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000048, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_FClamp_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_FClamp_ReturnValue_1) == 0x000068, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_MakeVector2D_ReturnValue_1) == 0x000080, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_IsZero2D_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_IsZero2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Multiply_Vector2DVector2D_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Multiply_Vector2DVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_Add_Vector2DVector2D_ReturnValue) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_Add_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_IsZero2D_ReturnValue_1) == 0x0000B8, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_IsZero2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0000BC, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CalcVelocity, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x0000C0, "Member 'GA_PlayerMovement_WallClimb_C_CalcVelocity::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CanBoost \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CanBoost) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CanBoost"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CanBoost) == 0x000100, "Wrong size on GA_PlayerMovement_WallClimb_C_CanBoost"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CanBoost_0) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CanBoost_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_X) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Y) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Z) == 0x000030, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_GetActorInfo_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_MakeVector_ReturnValue) == 0x000088, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_X_1) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Y_1) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Z_1) == 0x0000B0, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B8, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_X_2) == 0x0000D0, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Y_2) == 0x0000D8, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BreakVector_Z_2) == 0x0000E0, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_Abs_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000F9, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanBoost, CallFunc_BooleanAND_ReturnValue) == 0x0000FA, "Member 'GA_PlayerMovement_WallClimb_C_CanBoost::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28) == 0x000028, "Wrong size on GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28, Data) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_Cancelled_6A84D4F6452043D16514DF96F76C3D28::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CanHitLedge \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CanHitLedge) == 0x000010, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CanHitLedge"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CanHitLedge) == 0x0001F0, "Wrong size on GA_PlayerMovement_WallClimb_C_CanHitLedge"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, Ledge_0) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::Ledge_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CanHitLedge_0) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CanHitLedge_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, NewLocalVar) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_GetActorRightVector_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_GetActorForwardVector_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, K2Node_DynamicCast_AsBP_Boost_Ledge) == 0x000088, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::K2Node_DynamicCast_AsBP_Boost_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_GetTransform_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000100, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000118, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_GetActorInfo_ReturnValue) == 0x000130, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Dot_VectorVector_ReturnValue) == 0x000178, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000180, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000188, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_InverseTransformLocation_ReturnValue) == 0x0001A0, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_InverseTransformLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_BreakVector_X) == 0x0001B8, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_BreakVector_Y) == 0x0001C0, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_BreakVector_Z) == 0x0001C8, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Abs_ReturnValue) == 0x0001D0, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0001D8, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Abs_ReturnValue_1) == 0x0001E0, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0001E8, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanHitLedge, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x0001E9, "Member 'GA_PlayerMovement_WallClimb_C_CanHitLedge::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0) == 0x000040, "Wrong size on GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0, OldLocation) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0, OldVelocity_0) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0::OldVelocity_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0, CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_0::CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1) == 0x000040, "Wrong size on GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1, OldLocation) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1, OldVelocity_0) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1::OldVelocity_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1, CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast) == 0x000038, "Member 'GA_PlayerMovement_WallClimb_C_CREATEDELEGATE_PROXYFUNCTION_1::CallFunc_OnMovementUpdated_DeltaSeconds_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_EventReceived_0F0812F34ED14955F2B52D8DA1FD5071::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_EventReceived_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996) == 0x0000B0, "Wrong size on GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996, Payload) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_EventReceived_CAF704FE41826BCE185C2189FAA9D996::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb) == 0x0019B8, "Wrong size on GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_Data_1) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_Data_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate) == 0x000030, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_Data) == 0x000040, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_Data' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_1) == 0x000068, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable) == 0x000078, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WaitTargetData_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WaitTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BeginSpawningActor_SpawnedActor) == 0x0000B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BeginSpawningActor_SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BeginSpawningActor_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BeginSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_1) == 0x0000B9, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_GetSingleActorFromTargetData_OutPins) == 0x0000BA, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_GetSingleActorFromTargetData_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_GetSingleActorFromTargetData_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_GetSingleActorFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_CanHitLedge_CanHitLedge) == 0x0000C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_CanHitLedge_CanHitLedge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_2) == 0x0000CC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_SwitchEnum_CmpSuccess) == 0x0000DC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WaitDelay_ReturnValue) == 0x0000E0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_2) == 0x0000F8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_9) == 0x0000FC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_9) == 0x000108, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_8) == 0x0001B8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_8) == 0x0001C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_4) == 0x000270, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_7) == 0x000280, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_7) == 0x000288, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_5) == 0x000338, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_6) == 0x000348, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_6) == 0x000350, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_6) == 0x000400, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_5) == 0x000410, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_5) == 0x000418, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable_1) == 0x0004D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable_2) == 0x000588, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_4) == 0x000590, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_4) == 0x000598, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_8) == 0x000648, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_3) == 0x000658, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_3) == 0x000660, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_9) == 0x000710, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_2) == 0x000720, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_2) == 0x000728, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_10) == 0x0007D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag_1) == 0x0007E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData_1) == 0x0007F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_11) == 0x0008A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventTag) == 0x0008B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_EventData) == 0x0008B8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_12) == 0x000968, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable_3) == 0x000978, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable_4) == 0x000A28, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000A30, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000A38, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_3) == 0x000A40, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_13) == 0x000A44, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_14) == 0x000A54, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_15) == 0x000A64, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000A78, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000A80, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_4) == 0x000A98, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_16) == 0x000A9C, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_ActorTimeDelay_ReturnValue) == 0x000AB0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000AB8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_5) == 0x000AD0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_17) == 0x000AD4, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_18) == 0x000AE4, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_19) == 0x000AF4, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x000B08, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_20) == 0x000B10, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_6) == 0x000B20, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_21) == 0x000B24, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_22) == 0x000B34, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_23) == 0x000B44, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_24) == 0x000B54, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_25) == 0x000B64, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_26) == 0x000B74, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_X) == 0x000B88, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_Y) == 0x000B90, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue) == 0x000B98, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_7) == 0x000BE0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_8) == 0x000BE1, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000BE8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsCM_Wall_Climb) == 0x000BF0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsCM_Wall_Climb' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess) == 0x000BF8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000BF9, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_1) == 0x000C00, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_StartCameraShake_ReturnValue) == 0x000C48, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_StartCameraShake_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_X_1) == 0x000C50, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_Y_1) == 0x000C58, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Abs_ReturnValue) == 0x000C60, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_2) == 0x000C68, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MapRangeClamped_ReturnValue) == 0x000CB0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_9) == 0x000CB8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_object_Variable) == 0x000CC0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000CC8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAudioComponent_OutExecBranches) == 0x000CD0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAudioComponent_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAudioComponent_ReturnValue) == 0x000CD8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAudioComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_SwitchEnum_CmpSuccess_1) == 0x000CE0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_DeltaSeconds_1) == 0x000CE8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_DeltaSeconds_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_NewVelocity) == 0x000CF0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_NewVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_OldVelocity) == 0x000D08, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000D20, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_27) == 0x000D28, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000D38, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_28) == 0x000D40, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_10) == 0x000D50, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_11) == 0x000D51, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000D58, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000D60, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeStruct_GameplayEventData) == 0x000D68, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000E18, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000E20, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000EF8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_CalculateWallNormal_ReturnValue) == 0x000F00, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_CalculateWallNormal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_Event_bWasCancelled) == 0x000F18, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_CommitAbilityCooldown_ReturnValue) == 0x000F19, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_CommitAbilityCooldown_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_CommitAbility_ReturnValue) == 0x000F1A, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_delegate_Variable) == 0x000F1C, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_12) == 0x000F2C, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_Ledge) == 0x000F30, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_DeltaSeconds) == 0x000F38, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000F40, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetTraversalComponent_ReturnValue) == 0x000F48, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000F50, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_X_2) == 0x000F68, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector2D_Y_2) == 0x000F70, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector2D_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeVector_ReturnValue) == 0x000F78, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetLastInputVector_ReturnValue) == 0x000F90, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000FA8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_13) == 0x000FC0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_Duration) == 0x000FC4, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_Duration' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_3) == 0x000FC8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_X) == 0x001010, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Y) == 0x001018, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Z) == 0x001020, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_DoubleDouble_ReturnValue) == 0x001028, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x001030, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerTaskTick_ReturnValue_2) == 0x001038, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerTaskTick_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x001040, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess_1) == 0x001050, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x001058, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_14) == 0x001060, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_4) == 0x001068, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0010B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetTraversalComponent_ReturnValue_1) == 0x0010B8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetTraversalComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x0010C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess_2) == 0x0010C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetWallClimbWallNormal_ReturnValue) == 0x0010D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetWallClimbWallNormal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0010E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x001100, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_VectorVector_ReturnValue) == 0x001108, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_5) == 0x001120, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetControlRotation_ReturnValue) == 0x001168, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakRotator_Roll) == 0x001180, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakRotator_Pitch) == 0x001184, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakRotator_Yaw) == 0x001188, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsBP_Boost_Ledge) == 0x001190, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsBP_Boost_Ledge' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess_3) == 0x001198, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x001199, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0011A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetTraversalComponent_ReturnValue_2) == 0x0011A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetTraversalComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeStruct_GameplayTargetDataFilter) == 0x0011B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeStruct_GameplayTargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetTraversalComponent_ReturnValue_3) == 0x0011D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetTraversalComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerMakeFilterHandle_ReturnValue) == 0x0011D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerMakeFilterHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetWallClimbWallNormal_ReturnValue_1) == 0x0011E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetWallClimbWallNormal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_NegateVector_ReturnValue) == 0x001200, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetYawPitchFromVector_Yaw) == 0x001218, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetYawPitchFromVector_Pitch) == 0x00121C, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerTaskTick_ReturnValue_3) == 0x001220, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerTaskTick_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeRotator_ReturnValue) == 0x001228, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_15) == 0x001240, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x001248, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_RLerp_ReturnValue) == 0x001250, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x001268, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetParentActor_ReturnValue) == 0x001270, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsBP_Fire_Escape) == 0x001278, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsBP_Fire_Escape' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess_4) == 0x001280, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_CanBoost_CanBoost) == 0x001281, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_CanBoost_CanBoost' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_29) == 0x001284, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_30) == 0x001294, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_6) == 0x0012A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0012F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_31) == 0x001308, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_31' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x001318, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeStruct_GameplayEventData_1) == 0x001320, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0013D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_32) == 0x0013D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_32' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0013E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x0013F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0013F8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_16) == 0x001400, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_17) == 0x001401, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x001408, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x001410, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x001418, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Less_IntInt_ReturnValue) == 0x001420, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x001428, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x001448, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorInfo_ReturnValue_7) == 0x001450, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_AsWrestler_Character) == 0x001498, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_DynamicCast_bSuccess_5) == 0x0014A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x0014A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0014B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0014B8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0014C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeArray_Array) == 0x0014C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetDialogueInfo_ReturnValue) == 0x0014D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeArray_Array_1) == 0x0014E0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, Temp_struct_Variable_5) == 0x0014F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x0015A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x0015A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_33) == 0x0015B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_33' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0015C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0015C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0015D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0015D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_34) == 0x0015E0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_34' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorForwardVector_ReturnValue) == 0x0015F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001608, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x001620, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_VectorVector_ReturnValue) == 0x001638, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_X_1) == 0x001650, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Y_1) == 0x001658, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Z_1) == 0x001660, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x001668, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue_3) == 0x001670, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeVector_ReturnValue_1) == 0x001678, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_X_2) == 0x001690, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Y_2) == 0x001698, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BreakVector_Z_2) == 0x0016A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_MakeVector_ReturnValue_2) == 0x0016A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0016C0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_VLerp_ReturnValue) == 0x0016C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0016E0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0017C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0017D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CustomEvent_Payload) == 0x0017E8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x001898, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0018B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_VSize2D_ReturnValue) == 0x0018C8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_VSize2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetMovementComponent_Character_Movement) == 0x0018D0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetMovementComponent_Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x0018D8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_CreateDelegate_OutputDelegate_35) == 0x0018DC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_CreateDelegate_OutputDelegate_35' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0018EC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetTraversalComponent_ReturnValue_4) == 0x0018F0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetTraversalComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x0018F8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetLedgeVaultParameters_ReturnValue) == 0x0018FC, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetLedgeVaultParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BooleanAND_ReturnValue) == 0x001914, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_BooleanAND_ReturnValue_1) == 0x001915, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeStruct_WrestlerWallClimbParameters) == 0x001918, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeStruct_WrestlerWallClimbParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerWallClimb_ReturnValue) == 0x001948, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerWallClimb_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_IsValid_ReturnValue_18) == 0x001950, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue_4) == 0x001958, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_GetOwningActorFromActorInfo_ReturnValue_5) == 0x001960, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_GetOwningActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_VariableSet_ShakeScale_ImplicitCast) == 0x001968, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_VariableSet_ShakeScale_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x001970, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x001978, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_WrestlerTaskTick_Duration_ImplicitCast) == 0x001980, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_WrestlerTaskTick_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x001988, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_VLerp_Alpha_ImplicitCast) == 0x001990, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Divide_DoubleDouble_A_ImplicitCast_1) == 0x001998, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Divide_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_RLerp_Alpha_ImplicitCast) == 0x0019A0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_RLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x0019A8, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb, K2Node_MakeStruct_LerpToWallDuration_ImplicitCast) == 0x0019B0, "Member 'GA_PlayerMovement_WallClimb_C_ExecuteUbergraph_GA_PlayerMovement_WallClimb::K2Node_MakeStruct_LerpToWallDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_HandleMovement \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_HandleMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_HandleMovement"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_HandleMovement) == 0x000008, "Wrong size on GA_PlayerMovement_WallClimb_C_HandleMovement"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_HandleMovement, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_HandleMovement::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_HitLedge \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_HitLedge) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_HitLedge"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_HitLedge) == 0x000008, "Wrong size on GA_PlayerMovement_WallClimb_C_HitLedge"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_HitLedge, Ledge_0) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_HitLedge::Ledge_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_WallClimb_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_WallClimb_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnBlendOut_0F0812F34ED14955F2B52D8DA1FD5071::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnBlendOut_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnCancelled_0F0812F34ED14955F2B52D8DA1FD5071::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnCancelled_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnCompleted_0F0812F34ED14955F2B52D8DA1FD5071::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnCompleted_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnInterrupted_0F0812F34ED14955F2B52D8DA1FD5071::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9) == 0x0000B8, "Wrong size on GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventTag) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9, EventData) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnInterrupted_9CF7D5F742D3EE81B5FC9CB5003AB6B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_OnMovementUpdated \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_OnMovementUpdated) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_OnMovementUpdated"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_OnMovementUpdated) == 0x000038, "Wrong size on GA_PlayerMovement_WallClimb_C_OnMovementUpdated"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnMovementUpdated, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_OnMovementUpdated::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnMovementUpdated, NewVelocity) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_OnMovementUpdated::NewVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_OnMovementUpdated, OldVelocity_0) == 0x000020, "Member 'GA_PlayerMovement_WallClimb_C_OnMovementUpdated::OldVelocity_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue) == 0x000018, "Wrong size on GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue, CallFunc_GetContextFromOwner_ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_PlayBlockedGameplayCue::CallFunc_GetContextFromOwner_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_SnapToLedge \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_SnapToLedge) == 0x000004, "Wrong alignment on GA_PlayerMovement_WallClimb_C_SnapToLedge"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_SnapToLedge) == 0x000004, "Wrong size on GA_PlayerMovement_WallClimb_C_SnapToLedge"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_SnapToLedge, Duration) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_SnapToLedge::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput) == 0x000020, "Wrong size on GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput, Ignore) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput::Ignore' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput, CallFunc_GetController_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_ToggleIgnoreInput::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28 \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28) == 0x000028, "Wrong size on GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28, Data) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_ValidData_6A84D4F6452043D16514DF96F76C3D28::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_CanWallClimb \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_CanWallClimb) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_CanWallClimb"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_CanWallClimb) == 0x000020, "Wrong size on GA_PlayerMovement_WallClimb_C_CanWallClimb"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_GetTraversalComponent_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_GetIsWallClimbing_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_GetIsWallClimbing_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_Not_PreBool_ReturnValue) == 0x00001A, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_CanWallClimb_ReturnValue) == 0x00001B, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_CanWallClimb_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_CanWallClimb, CallFunc_BooleanAND_ReturnValue) == 0x00001C, "Member 'GA_PlayerMovement_WallClimb_C_CanWallClimb::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_GetMovementComponent \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_GetMovementComponent) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_GetMovementComponent"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_GetMovementComponent) == 0x000010, "Wrong size on GA_PlayerMovement_WallClimb_C_GetMovementComponent"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_GetMovementComponent, Character_Movement) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_GetMovementComponent::Character_Movement' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_GetMovementComponent, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_GetMovementComponent::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_GetTraversalComponent \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_GetTraversalComponent) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_GetTraversalComponent"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_GetTraversalComponent) == 0x000018, "Wrong size on GA_PlayerMovement_WallClimb_C_GetTraversalComponent"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_GetTraversalComponent, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_GetTraversalComponent::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_GetTraversalComponent, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_GetTraversalComponent::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_GetTraversalComponent, CallFunc_GetTraversalComponent_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_GetTraversalComponent::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_IsJumpHeld \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_IsJumpHeld) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_IsJumpHeld"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_IsJumpHeld) == 0x0000A8, "Wrong size on GA_PlayerMovement_WallClimb_C_IsJumpHeld"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_GetActorInfo_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_QueryKeysMappedToAction_self_CastInput) == 0x000060, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_QueryKeysMappedToAction_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_QueryKeysMappedToAction_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_QueryKeysMappedToAction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_Array_Length_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_Array_Get_Item) == 0x000088, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_Less_IntInt_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsJumpHeld, CallFunc_IsInputKeyDown_ReturnValue) == 0x0000A1, "Member 'GA_PlayerMovement_WallClimb_C_IsJumpHeld::CallFunc_IsInputKeyDown_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked) == 0x000001, "Wrong alignment on GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked) == 0x000003, "Wrong size on GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked, CallFunc_CanWallClimb_ReturnValue) == 0x000001, "Member 'GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked::CallFunc_CanWallClimb_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked, CallFunc_Not_PreBool_ReturnValue) == 0x000002, "Member 'GA_PlayerMovement_WallClimb_C_IsWallClimbBlocked::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility) == 0x000198, "Wrong size on GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, Temp_bool_Variable_1) == 0x000072, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000078, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_IsMovingOnGround_ReturnValue) == 0x000081, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_IsMovingOnGround_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X) == 0x000088, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y) == 0x000090, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z) == 0x000098, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000A8, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000C0, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x0000D8, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess_1) == 0x0000E0, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue) == 0x0000E1, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_GetFrameInput_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_GetFrameInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_X_1) == 0x000170, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Y_1) == 0x000178, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BreakVector_Z_1) == 0x000180, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000188, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_IsJumpHeld_ReturnValue) == 0x000189, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_IsJumpHeld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00018A, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, K2Node_Select_Default) == 0x00018B, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x00018C, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x00018D, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BooleanOR_ReturnValue_1) == 0x00018E, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_CanWallClimb_ReturnValue) == 0x00018F, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_CanWallClimb_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_2) == 0x000190, "Member 'GA_PlayerMovement_WallClimb_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_WallClimb_C \ +static_assert(alignof(UGA_PlayerMovement_WallClimb_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_WallClimb_C"); \ +static_assert(sizeof(UGA_PlayerMovement_WallClimb_C) == 0x000800, "Wrong size on UGA_PlayerMovement_WallClimb_C"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_WallClimb_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, WallClimbStartTime) == 0x000670, "Member 'UGA_PlayerMovement_WallClimb_C::WallClimbStartTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, MaxClimbDuration) == 0x000678, "Member 'UGA_PlayerMovement_WallClimb_C::MaxClimbDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, lerpDuration) == 0x000680, "Member 'UGA_PlayerMovement_WallClimb_C::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, WallNormal) == 0x000688, "Member 'UGA_PlayerMovement_WallClimb_C::WallNormal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, LookAtTimer) == 0x0006A0, "Member 'UGA_PlayerMovement_WallClimb_C::LookAtTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Min_Up_Dot_Product) == 0x0006A8, "Member 'UGA_PlayerMovement_WallClimb_C::Min_Up_Dot_Product' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, WallClimbBlockedGameplayCueTag) == 0x0006B0, "Member 'UGA_PlayerMovement_WallClimb_C::WallClimbBlockedGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, bEnableInputCheck) == 0x0006B8, "Member 'UGA_PlayerMovement_WallClimb_C::bEnableInputCheck' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Can_Climb_Velocity) == 0x0006C0, "Member 'UGA_PlayerMovement_WallClimb_C::Can_Climb_Velocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, MaxAcceleration) == 0x0006C8, "Member 'UGA_PlayerMovement_WallClimb_C::MaxAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BaseMaxSpeed) == 0x0006D0, "Member 'UGA_PlayerMovement_WallClimb_C::BaseMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Velocity) == 0x0006D8, "Member 'UGA_PlayerMovement_WallClimb_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, OldVelocity) == 0x0006E8, "Member 'UGA_PlayerMovement_WallClimb_C::OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Friction) == 0x0006F8, "Member 'UGA_PlayerMovement_WallClimb_C::Friction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Braking_Deceleration) == 0x000700, "Member 'UGA_PlayerMovement_WallClimb_C::Braking_Deceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Acceleration) == 0x000708, "Member 'UGA_PlayerMovement_WallClimb_C::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostMaxSpeed) == 0x000718, "Member 'UGA_PlayerMovement_WallClimb_C::BoostMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostSpeedCurve) == 0x000720, "Member 'UGA_PlayerMovement_WallClimb_C::BoostSpeedCurve' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostStartTime) == 0x000728, "Member 'UGA_PlayerMovement_WallClimb_C::BoostStartTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, SprintInputMultiplier) == 0x000730, "Member 'UGA_PlayerMovement_WallClimb_C::SprintInputMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, ActiveBinds) == 0x000740, "Member 'UGA_PlayerMovement_WallClimb_C::ActiveBinds' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, CM_WallClimb) == 0x000748, "Member 'UGA_PlayerMovement_WallClimb_C::CM_WallClimb' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, PauseMovement) == 0x000750, "Member 'UGA_PlayerMovement_WallClimb_C::PauseMovement' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Ledge) == 0x000758, "Member 'UGA_PlayerMovement_WallClimb_C::Ledge' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, LedgeSnapStart) == 0x000760, "Member 'UGA_PlayerMovement_WallClimb_C::LedgeSnapStart' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, LedgeSnapTime) == 0x000778, "Member 'UGA_PlayerMovement_WallClimb_C::LedgeSnapTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Async_Task) == 0x000780, "Member 'UGA_PlayerMovement_WallClimb_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Shake) == 0x000788, "Member 'UGA_PlayerMovement_WallClimb_C::Shake' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostTime) == 0x000790, "Member 'UGA_PlayerMovement_WallClimb_C::BoostTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostMultiplier) == 0x000798, "Member 'UGA_PlayerMovement_WallClimb_C::BoostMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostIgnoreTime) == 0x0007A0, "Member 'UGA_PlayerMovement_WallClimb_C::BoostIgnoreTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, LocalBoostMult) == 0x0007A8, "Member 'UGA_PlayerMovement_WallClimb_C::LocalBoostMult' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, FirstBoost) == 0x0007B0, "Member 'UGA_PlayerMovement_WallClimb_C::FirstBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, IsFireEscape) == 0x0007B1, "Member 'UGA_PlayerMovement_WallClimb_C::IsFireEscape' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, ImpactBoost) == 0x0007B2, "Member 'UGA_PlayerMovement_WallClimb_C::ImpactBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, WaitForPromptTask) == 0x0007B8, "Member 'UGA_PlayerMovement_WallClimb_C::WaitForPromptTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, Ledge_Target_Task) == 0x0007C0, "Member 'UGA_PlayerMovement_WallClimb_C::Ledge_Target_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostDistanceMinThreshold) == 0x0007C8, "Member 'UGA_PlayerMovement_WallClimb_C::BoostDistanceMinThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, InvalidBoost) == 0x0007D0, "Member 'UGA_PlayerMovement_WallClimb_C::InvalidBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, LedgeSnapOffset) == 0x0007D8, "Member 'UGA_PlayerMovement_WallClimb_C::LedgeSnapOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, BoostDistanceMaxThreshold) == 0x0007E0, "Member 'UGA_PlayerMovement_WallClimb_C::BoostDistanceMaxThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, MinPromptTime) == 0x0007E8, "Member 'UGA_PlayerMovement_WallClimb_C::MinPromptTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, JumpDelayEffect) == 0x0007F0, "Member 'UGA_PlayerMovement_WallClimb_C::JumpDelayEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_WallClimb_C, PreClimbJumpCount) == 0x0007F8, "Member 'UGA_PlayerMovement_WallClimb_C::PreClimbJumpCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21 \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21) == 0x0000B0, "Wrong size on GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21, Payload) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_C_EventReceived_FB336A6C4A92AFF95499BD80C0D1FA21::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint) == 0x000008, "Wrong alignment on GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint) == 0x000318, "Wrong size on GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CustomEvent_WaitingTime_1) == 0x000004, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, Temp_real_Variable) == 0x000008, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CreateDelegate_OutputDelegate) == 0x00001C, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CustomEvent_WaitingTime) == 0x00002C, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, Temp_real_Variable_1) == 0x000030, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000038, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_IsValid_ReturnValue_1) == 0x000040, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CreateDelegate_OutputDelegate_1) == 0x000044, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CustomEvent_Payload) == 0x000058, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, Temp_struct_Variable) == 0x000108, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0001B8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_IsValid_ReturnValue_2) == 0x0001C0, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_Event_bWasCancelled) == 0x0001C1, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetActorInfo_ReturnValue) == 0x0001C8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetActorInfo_ReturnValue_1) == 0x000210, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000258, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetActorInfo_ReturnValue_2) == 0x000260, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0002A8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetActorForwardVector_ReturnValue) == 0x0002B0, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0002C8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0002D8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x0002E0, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_Dot_VectorVector_ReturnValue) == 0x0002F8, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000300, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint, K2Node_CreateDelegate_OutputDelegate_2) == 0x000304, "Member 'GA_PlayerMovement_VampireSprint_C_ExecuteUbergraph_GA_PlayerMovement_VampireSprint::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F) == 0x000004, "Wrong alignment on GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F) == 0x000004, "Wrong size on GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_24F90AAA46542DC019C23DA72F61298F::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4 \ +static_assert(alignof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4) == 0x000004, "Wrong alignment on GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4"); \ +static_assert(sizeof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4) == 0x000004, "Wrong size on GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4"); \ +static_assert(offsetof(GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_VampireSprint_C_OnControlCueProcess_73CDEED642311B3E4F9957AC2D07D5A4::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_VampireSprint_C \ +static_assert(alignof(UGA_PlayerMovement_VampireSprint_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_VampireSprint_C"); \ +static_assert(sizeof(UGA_PlayerMovement_VampireSprint_C) == 0x000750, "Wrong size on UGA_PlayerMovement_VampireSprint_C"); \ +static_assert(offsetof(UGA_PlayerMovement_VampireSprint_C, UberGraphFrame_GA_PlayerMovement_VampireSprint_C) == 0x000748, "Member 'UGA_PlayerMovement_VampireSprint_C::UberGraphFrame_GA_PlayerMovement_VampireSprint_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Launchpad_C_DrawDebugPath \ +static_assert(alignof(BP_Launchpad_C_DrawDebugPath) == 0x000008, "Wrong alignment on BP_Launchpad_C_DrawDebugPath"); \ +static_assert(sizeof(BP_Launchpad_C_DrawDebugPath) == 0x000210, "Wrong size on BP_Launchpad_C_DrawDebugPath"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Duration) == 0x000000, "Member 'BP_Launchpad_C_DrawDebugPath::Duration' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Temp_real_Variable) == 0x000004, "Member 'BP_Launchpad_C_DrawDebugPath::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Temp_object_Variable) == 0x000008, "Member 'BP_Launchpad_C_DrawDebugPath::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Temp_int_Array_Index_Variable) == 0x000018, "Member 'BP_Launchpad_C_DrawDebugPath::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Temp_bool_Variable) == 0x00001C, "Member 'BP_Launchpad_C_DrawDebugPath::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'BP_Launchpad_C_DrawDebugPath::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, K2Node_Select_Default) == 0x000028, "Member 'BP_Launchpad_C_DrawDebugPath::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Add_IntInt_ReturnValue_1) == 0x00002C, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, K2Node_MakeArray_Array) == 0x000030, "Member 'BP_Launchpad_C_DrawDebugPath::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000040, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000058, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000078, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_MakeVector_ReturnValue) == 0x000080, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000098, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutHit) == 0x0000B0, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutPathPositions) == 0x000198, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutPathPositions' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutLastTraceDestination) == 0x0001A8, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OutLastTraceDestination' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Blueprint_PredictProjectilePath_ByObjectType_ReturnValue) == 0x0001C0, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Blueprint_PredictProjectilePath_ByObjectType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Array_LastIndex_ReturnValue) == 0x0001C4, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Array_Get_Item) == 0x0001C8, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0001E0, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Array_Get_Item_1) == 0x0001E8, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Array_Length_ReturnValue) == 0x000200, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Less_IntInt_ReturnValue) == 0x000204, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_DrawDebugPath, CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OverrideGravityZ_ImplicitCast) == 0x000208, "Member 'BP_Launchpad_C_DrawDebugPath::CallFunc_Blueprint_PredictProjectilePath_ByObjectType_OverrideGravityZ_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad \ +static_assert(alignof(BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad) == 0x000004, "Wrong alignment on BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad"); \ +static_assert(sizeof(BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad) == 0x000004, "Wrong size on BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad"); \ +static_assert(offsetof(BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad, EntryPoint) == 0x000000, "Member 'BP_Launchpad_C_ExecuteUbergraph_BP_Launchpad::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Launchpad_C_UserConstructionScript \ +static_assert(alignof(BP_Launchpad_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Launchpad_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Launchpad_C_UserConstructionScript) == 0x000010, "Wrong size on BP_Launchpad_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Launchpad_C_UserConstructionScript, CallFunc_GetGameInstance_ReturnValue) == 0x000000, "Member 'BP_Launchpad_C_UserConstructionScript::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_Launchpad_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_UserConstructionScript, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000009, "Member 'BP_Launchpad_C_UserConstructionScript::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_UserConstructionScript, CallFunc_NotEqual_DoubleDouble_ReturnValue_1) == 0x00000A, "Member 'BP_Launchpad_C_UserConstructionScript::CallFunc_NotEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Launchpad_C_UserConstructionScript, CallFunc_BooleanOR_ReturnValue) == 0x00000B, "Member 'BP_Launchpad_C_UserConstructionScript::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Launchpad_C \ +static_assert(alignof(ABP_Launchpad_C) == 0x000008, "Wrong alignment on ABP_Launchpad_C"); \ +static_assert(sizeof(ABP_Launchpad_C) == 0x000360, "Wrong size on ABP_Launchpad_C"); \ +static_assert(offsetof(ABP_Launchpad_C, UberGraphFrame) == 0x000298, "Member 'ABP_Launchpad_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Pipes_Old_B2) == 0x0002A0, "Member 'ABP_Launchpad_C::SM_Pipes_Old_B2' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Pipes_Old_B1) == 0x0002A8, "Member 'ABP_Launchpad_C::SM_Pipes_Old_B1' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Pipes_Old_B) == 0x0002B0, "Member 'ABP_Launchpad_C::SM_Pipes_Old_B' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_ventelation_SF_06) == 0x0002B8, "Member 'ABP_Launchpad_C::SM_ventelation_SF_06' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Debris_Wood_NoCollision_01a) == 0x0002C0, "Member 'ABP_Launchpad_C::SM_Debris_Wood_NoCollision_01a' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Jungle_WoodPlank_04) == 0x0002C8, "Member 'ABP_Launchpad_C::SM_Jungle_WoodPlank_04' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_CinderStack_Pallete_01a) == 0x0002D0, "Member 'ABP_Launchpad_C::SM_CinderStack_Pallete_01a' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Jungle_plywood_02) == 0x0002D8, "Member 'ABP_Launchpad_C::SM_Jungle_plywood_02' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, SM_Jungle_WoodPlank_05) == 0x0002E0, "Member 'ABP_Launchpad_C::SM_Jungle_WoodPlank_05' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, LaunchPoint) == 0x0002E8, "Member 'ABP_Launchpad_C::LaunchPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Box1) == 0x0002F0, "Member 'ABP_Launchpad_C::Box1' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Box) == 0x0002F8, "Member 'ABP_Launchpad_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, VisualsRoot) == 0x000300, "Member 'ABP_Launchpad_C::VisualsRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Arrow) == 0x000308, "Member 'ABP_Launchpad_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Trigger) == 0x000310, "Member 'ABP_Launchpad_C::Trigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, DefaultSceneRoot) == 0x000318, "Member 'ABP_Launchpad_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, ForwardBoost) == 0x000320, "Member 'ABP_Launchpad_C::ForwardBoost' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, VerticalBoost) == 0x000328, "Member 'ABP_Launchpad_C::VerticalBoost' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Player_Gravity) == 0x000330, "Member 'ABP_Launchpad_C::Player_Gravity' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, DrawDebug) == 0x000338, "Member 'ABP_Launchpad_C::DrawDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, Debug_Duration) == 0x00033C, "Member 'ABP_Launchpad_C::Debug_Duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, ForwardBoost_Reference) == 0x000340, "Member 'ABP_Launchpad_C::ForwardBoost_Reference' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, VerticalBoost_Reference) == 0x000348, "Member 'ABP_Launchpad_C::VerticalBoost_Reference' has a wrong offset!"); \ +static_assert(offsetof(ABP_Launchpad_C, In_Mesh_Components_to_Highlight_in_Heightened_Senses) == 0x000350, "Member 'ABP_Launchpad_C::In_Mesh_Components_to_Highlight_in_Heightened_Senses' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump \ +static_assert(alignof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump) == 0x000008, "Wrong alignment on GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump"); \ +static_assert(sizeof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump) == 0x0003D0, "Wrong size on GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, EntryPoint) == 0x000000, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeVector_ReturnValue) == 0x000008, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetActorForwardVector_ReturnValue) == 0x000038, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000050, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000068, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000070, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetPlayerController_ReturnValue) == 0x000088, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Add_VectorVector_ReturnValue) == 0x000090, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000A8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0000C0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Normal_ReturnValue) == 0x0000C8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetOverlappingActors_OverlappingActors) == 0x0000E0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Array_Get_Item) == 0x000108, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000110, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, K2Node_DynamicCast_AsBP_Launchpad) == 0x000128, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::K2Node_DynamicCast_AsBP_Launchpad' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, K2Node_DynamicCast_bSuccess) == 0x000130, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_IsValid_ReturnValue) == 0x000131, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000138, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000140, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000150, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_IsWalking_ReturnValue) == 0x000158, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute) == 0x000159, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetFloatAttributeBase_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetFloatAttributeBase_ReturnValue) == 0x00015C, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetFloatAttributeBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetVelocity_ReturnValue) == 0x000160, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_BreakVector_X) == 0x000178, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_BreakVector_Y) == 0x000180, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_BreakVector_Z) == 0x000188, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue_1) == 0x000190, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeVector_ReturnValue_1) == 0x0001A0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue_2) == 0x0001B8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_VSize_ReturnValue) == 0x0001C8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001D0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_FClamp_ReturnValue) == 0x0001D8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001E0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001E8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x0001F0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x000200, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x000210, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3) == 0x000220, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x000230, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue_1) == 0x000238, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4) == 0x000240, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000250, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000258, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_5) == 0x000260, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000270, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue_2) == 0x000274, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeVector_ReturnValue_2) == 0x000280, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000298, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0002A0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0002B8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0003A0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0003A1, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x0003A8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x0003B0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1) == 0x0003B4, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2) == 0x0003B8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3) == 0x0003BC, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_4) == 0x0003C0, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_5) == 0x0003C4, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump, CallFunc_MakeVector_Z_ImplicitCast) == 0x0003C8, "Member 'GA_LaunchJump_C_ExecuteUbergraph_GA_LaunchJump::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_LaunchJump_C_K2_CanActivateAbility \ +static_assert(alignof(GA_LaunchJump_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_LaunchJump_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_LaunchJump_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_LaunchJump_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_LaunchJump_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_LaunchJump_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_LaunchJump_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_LaunchJump_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_LaunchJump_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_LaunchJump_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_LaunchJump_C \ +static_assert(alignof(UGA_LaunchJump_C) == 0x000008, "Wrong alignment on UGA_LaunchJump_C"); \ +static_assert(sizeof(UGA_LaunchJump_C) == 0x000690, "Wrong size on UGA_LaunchJump_C"); \ +static_assert(offsetof(UGA_LaunchJump_C, UberGraphFrame) == 0x000668, "Member 'UGA_LaunchJump_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_LaunchJump_C, Launchpad) == 0x000670, "Member 'UGA_LaunchJump_C::Launchpad' has a wrong offset!"); \ +static_assert(offsetof(UGA_LaunchJump_C, BoostPrimed) == 0x000678, "Member 'UGA_LaunchJump_C::BoostPrimed' has a wrong offset!"); \ +static_assert(offsetof(UGA_LaunchJump_C, Max_Running_Boost) == 0x000680, "Member 'UGA_LaunchJump_C::Max_Running_Boost' has a wrong offset!"); \ +static_assert(offsetof(UGA_LaunchJump_C, Boost_Duration) == 0x000688, "Member 'UGA_LaunchJump_C::Boost_Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDSK_Willem_C \ +static_assert(alignof(UPD_STS_MDSK_Willem_C) == 0x000008, "Wrong alignment on UPD_STS_MDSK_Willem_C"); \ +static_assert(sizeof(UPD_STS_MDSK_Willem_C) == 0x000058, "Wrong size on UPD_STS_MDSK_Willem_C"); \ + +#define DUMPER7_ASSERTS_GameplayTag_Set_C_ReceiveExecute \ +static_assert(alignof(GameplayTag_Set_C_ReceiveExecute) == 0x000008, "Wrong alignment on GameplayTag_Set_C_ReceiveExecute"); \ +static_assert(sizeof(GameplayTag_Set_C_ReceiveExecute) == 0x000010, "Wrong size on GameplayTag_Set_C_ReceiveExecute"); \ +static_assert(offsetof(GameplayTag_Set_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'GameplayTag_Set_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GameplayTag_Set_C_ReceiveExecute, InState) == 0x000008, "Member 'GameplayTag_Set_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set \ +static_assert(alignof(GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set) == 0x000008, "Wrong alignment on GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set"); \ +static_assert(sizeof(GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set) == 0x000018, "Wrong size on GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set"); \ +static_assert(offsetof(GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set, EntryPoint) == 0x000000, "Member 'GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set, K2Node_Event_InAutomata) == 0x000008, "Member 'GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set, K2Node_Event_InState) == 0x000010, "Member 'GameplayTag_Set_C_ExecuteUbergraph_GameplayTag_Set::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayTag_Set_C \ +static_assert(alignof(UGameplayTag_Set_C) == 0x000008, "Wrong alignment on UGameplayTag_Set_C"); \ +static_assert(sizeof(UGameplayTag_Set_C) == 0x0000A0, "Wrong size on UGameplayTag_Set_C"); \ +static_assert(offsetof(UGameplayTag_Set_C, UberGraphFrame) == 0x000088, "Member 'UGameplayTag_Set_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTag_Set_C, GameplayTag) == 0x000090, "Member 'UGameplayTag_Set_C::GameplayTag' has a wrong offset!"); \ +static_assert(offsetof(UGameplayTag_Set_C, Value) == 0x000098, "Member 'UGameplayTag_Set_C::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F \ +static_assert(alignof(GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F) == 0x000008, "Wrong alignment on GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F"); \ +static_assert(sizeof(GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F) == 0x0000B0, "Wrong size on GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F"); \ +static_assert(offsetof(GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F, Payload) == 0x000000, "Member 'GA_Entranced_C_EventReceived_17F5C6CF45C5DD6A2DA5068D5923EA0F::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94 \ +static_assert(alignof(GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94) == 0x000008, "Wrong alignment on GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94"); \ +static_assert(sizeof(GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94) == 0x0000B0, "Wrong size on GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94"); \ +static_assert(offsetof(GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94, Payload) == 0x000000, "Member 'GA_Entranced_C_EventReceived_458486824F84FF5190000C9C1A2D2F94::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B \ +static_assert(alignof(GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B) == 0x000008, "Wrong alignment on GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(sizeof(GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B) == 0x0000B8, "Wrong size on GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(offsetof(GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B, EventTag) == 0x000000, "Member 'GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B, EventData) == 0x000008, "Member 'GA_Entranced_C_EventReceived_CC45748A4B7C53563C17AE825F5C198B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_ExecuteUbergraph_GA_Entranced \ +static_assert(alignof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced) == 0x000010, "Wrong alignment on GA_Entranced_C_ExecuteUbergraph_GA_Entranced"); \ +static_assert(sizeof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced) == 0x0013A0, "Wrong size on GA_Entranced_C_ExecuteUbergraph_GA_Entranced"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, EntryPoint) == 0x000000, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_Payload_1) == 0x000008, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_struct_Variable) == 0x0000C8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000178, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue) == 0x000180, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_1) == 0x000184, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue) == 0x000198, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001A0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_1) == 0x0001B0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0001B1, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001B4, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_Payload) == 0x0001C8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_struct_Variable_1) == 0x000278, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000328, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_2) == 0x000330, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_byte_Variable) == 0x000331, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_4) == 0x000334, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_5) == 0x000344, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_1) == 0x000358, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_object_Variable) == 0x000360, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000368, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000370, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_3) == 0x000378, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_object_Variable_1) == 0x000380, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_6) == 0x000388, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_7) == 0x000398, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x0003A8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_TaskWaitDelay_ReturnValue) == 0x0003B8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_4) == 0x0003C0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_5) == 0x0003C1, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0003C8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_6) == 0x0003D0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_byte_Variable_1) == 0x0003D1, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_bool_Variable) == 0x0003D2, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0003D3, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_byte_Variable_2) == 0x0003D4, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_byte_Variable_3) == 0x0003D5, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_8) == 0x0003D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_2) == 0x0003E8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_9) == 0x0003F0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_7) == 0x000400, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000408, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_10) == 0x000410, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_8) == 0x000420, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_3) == 0x000428, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_11) == 0x000430, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_9) == 0x000440, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_12) == 0x000444, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_4) == 0x000458, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_10) == 0x000460, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_bool_Has_Been_Initd_Variable) == 0x000461, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_13) == 0x000464, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_int_Loop_Counter_Variable) == 0x000474, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Add_IntInt_ReturnValue) == 0x000478, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_int_Array_Index_Variable) == 0x00047C, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_bool_IsClosed_Variable) == 0x000480, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_bool_Variable_1) == 0x000481, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000488, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_Select_Default) == 0x000490, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_11) == 0x000491, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_struct_Variable_2) == 0x000494, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_struct_Variable_3) == 0x0004A0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventTag) == 0x000550, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventData) == 0x000558, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_14) == 0x000608, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventTag_1) == 0x000618, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventData_1) == 0x000620, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_Event_bWasCancelled) == 0x0006D0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0006D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0006E0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x0006E8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess) == 0x0006F8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue) == 0x000700, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000708, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000710, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_1) == 0x000720, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000728, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_2) == 0x000738, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIPerceptionComponent_ReturnValue) == 0x000740, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIPerceptionComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetGameTeamId_ReturnValue) == 0x000748, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_12) == 0x000749, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x00074C, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000758, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_StateTreeEvent) == 0x000760, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000780, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000788, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000790, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0007B0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0007B8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0007C0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetController_ReturnValue) == 0x0007D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetControlRotation_ReturnValue) == 0x0007E0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue) == 0x0007F8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000800, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000808, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000820, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000838, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000850, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakRotator_Roll) == 0x000868, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakRotator_Pitch) == 0x00086C, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakRotator_Yaw) == 0x000870, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_MakeRotator_ReturnValue) == 0x000878, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_15) == 0x000890, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0008A0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_GameplayEventData) == 0x0008A8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000958, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000960, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x000980, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000988, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_1) == 0x000990, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIPerceptionComponent_ReturnValue_1) == 0x000998, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIPerceptionComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x0009A0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_StateTreeEvent_1) == 0x0009A8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_StateTreeEvent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0009C8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_3) == 0x0009D0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SendStateTreeEventToActor_ReturnValue_1) == 0x0009D1, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SendStateTreeEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsMassCharacter_ReturnValue) == 0x0009D2, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0009D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0009E8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_2) == 0x0009F0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_Event_EventData) == 0x0009F8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2) == 0x000AA8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_4) == 0x000AB8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_16) == 0x000ABC, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000AD0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000AD8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000AE0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000AE8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_GameplayEventData_1) == 0x000AF0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_FClamp_ReturnValue) == 0x000BA0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_GameplayEventData_2) == 0x000BA8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_5) == 0x000C58, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventTag_2) == 0x000C60, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventData_2) == 0x000C68, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_13) == 0x000D18, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_Event) == 0x000D20, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_Event' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000DD0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000DD8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_17) == 0x000DDC, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000DF0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_FClamp_ReturnValue_1) == 0x000DF8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000E00, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_HasAnyTags_ReturnValue) == 0x000E08, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000E10, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x000E18, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000E20, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_3) == 0x000E28, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x000E30, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_4) == 0x000E38, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAllActorsOfClass_OutActors) == 0x000E40, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Array_Length_ReturnValue) == 0x000E50, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_18) == 0x000E54, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000E64, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_10) == 0x000E68, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_StateTreeEvent_2) == 0x000E70, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_StateTreeEvent_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000E90, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SendStateTreeEventToActor_ReturnValue_2) == 0x000E98, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SendStateTreeEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitGameplayTagQueryOnActor_ReturnValue) == 0x000EA0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitGameplayTagQueryOnActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_14) == 0x000EA8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventTag_3) == 0x000EAC, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventData_3) == 0x000EB8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SpawnSystemAttached_ReturnValue_2) == 0x000F68, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SpawnSystemAttached_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetBoneIndex_ReturnValue) == 0x000F70, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetBoneIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetRefPoseTransform_ReturnValue) == 0x000F80, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetRefPoseTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetBoneIndex_ReturnValue_1) == 0x000FE0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetBoneIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Location) == 0x000FE8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Rotation) == 0x001000, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Scale) == 0x001018, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetRefPoseTransform_ReturnValue_1) == 0x001030, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetRefPoseTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Add_VectorVector_ReturnValue) == 0x001090, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Location_1) == 0x0010A8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Rotation_1) == 0x0010C0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BreakTransform_Scale_1) == 0x0010D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SpawnSystemAttached_ReturnValue_3) == 0x0010F0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SpawnSystemAttached_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0010F8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SpawnSystemAttached_ReturnValue_4) == 0x001110, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SpawnSystemAttached_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsCharacter_ReturnValue_11) == 0x001118, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsCharacter_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1) == 0x001120, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_5) == 0x001130, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_19) == 0x001134, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetSkeletalMeshComp_ReturnValue_1) == 0x001148, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetSkeletalMeshComp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x001150, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_15) == 0x001158, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_int_Loop_Counter_Variable_1) == 0x00115C, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Less_IntInt_ReturnValue) == 0x001160, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Add_IntInt_ReturnValue_1) == 0x001164, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x001168, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_AddNewCameraModifier_ReturnValue) == 0x001170, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsCM_Wrestler_Camera_Modifier_PPMaterial) == 0x001178, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsCM_Wrestler_Camera_Modifier_PPMaterial' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_6) == 0x001180, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CreateDelegate_OutputDelegate_20) == 0x001184, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x001194, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x001198, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0011A0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0011A8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x0011B0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Array_Get_Item) == 0x0011C0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Array_Length_ReturnValue_1) == 0x0011C8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_5) == 0x0011D0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Less_IntInt_ReturnValue_1) == 0x0011D8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_6) == 0x0011E0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_int_Array_Index_Variable_1) == 0x0011E8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3) == 0x0011F0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_7) == 0x001200, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_Array_Get_Item_1) == 0x001208, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x001210, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAIController_ReturnValue_7) == 0x001218, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAIController_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_4) == 0x001220, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_DynamicCast_bSuccess_8) == 0x001230, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetGameTeamId_ReturnValue_1) == 0x001231, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetGameTeamId_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, Temp_byte_Variable_4) == 0x001232, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventTag_4) == 0x001234, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_CustomEvent_EventData_4) == 0x001240, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0012F0, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_RInterpTo_ReturnValue) == 0x0012F8, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x001310, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001318, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_RInterpTo_ReturnValue_1) == 0x001320, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_K2_SetActorRotation_ReturnValue) == 0x001338, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_MakeLiteralByte_ReturnValue) == 0x001339, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_FindTeammate_Teammate) == 0x001340, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_FindTeammate_Teammate' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_16) == 0x001348, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_RandomFloatInRange_ReturnValue) == 0x001350, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_FindTeammate_Teammate_1) == 0x001358, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_FindTeammate_Teammate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_ReturnValue_6) == 0x001360, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_17) == 0x001368, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_18) == 0x001369, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_FindTeammate_Teammate_2) == 0x001370, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_FindTeammate_Teammate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2) == 0x001378, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_IsValid_ReturnValue_19) == 0x001380, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x001388, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x001390, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_Time_ImplicitCast) == 0x001394, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x001398, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_ExecuteUbergraph_GA_Entranced, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x00139C, "Member 'GA_Entranced_C_ExecuteUbergraph_GA_Entranced::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_FindTeammate \ +static_assert(alignof(GA_Entranced_C_FindTeammate) == 0x000008, "Wrong alignment on GA_Entranced_C_FindTeammate"); \ +static_assert(sizeof(GA_Entranced_C_FindTeammate) == 0x0000A0, "Wrong size on GA_Entranced_C_FindTeammate"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Teammate) == 0x000000, "Member 'GA_Entranced_C_FindTeammate::Teammate' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Enemy) == 0x000008, "Member 'GA_Entranced_C_FindTeammate::Enemy' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'GA_Entranced_C_FindTeammate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'GA_Entranced_C_FindTeammate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Temp_bool_True_if_break_was_hit_Variable) == 0x000018, "Member 'GA_Entranced_C_FindTeammate::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'GA_Entranced_C_FindTeammate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_Not_PreBool_ReturnValue) == 0x000020, "Member 'GA_Entranced_C_FindTeammate::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, Temp_byte_Variable) == 0x000038, "Member 'GA_Entranced_C_FindTeammate::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000039, "Member 'GA_Entranced_C_FindTeammate::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000040, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000048, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000050, "Member 'GA_Entranced_C_FindTeammate::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'GA_Entranced_C_FindTeammate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_Array_Get_Item) == 0x000068, "Member 'GA_Entranced_C_FindTeammate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'GA_Entranced_C_FindTeammate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000071, "Member 'GA_Entranced_C_FindTeammate::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_BooleanAND_ReturnValue) == 0x000072, "Member 'GA_Entranced_C_FindTeammate::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000073, "Member 'GA_Entranced_C_FindTeammate::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_BooleanOR_ReturnValue) == 0x000074, "Member 'GA_Entranced_C_FindTeammate::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_IsValid_ReturnValue) == 0x000075, "Member 'GA_Entranced_C_FindTeammate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetAIController_ReturnValue) == 0x000078, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_IsDetectingActor_ReturnValue) == 0x000080, "Member 'GA_Entranced_C_FindTeammate::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000088, "Member 'GA_Entranced_C_FindTeammate::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, K2Node_DynamicCast_bSuccess) == 0x000098, "Member 'GA_Entranced_C_FindTeammate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_FindTeammate, CallFunc_GetGameTeamId_ReturnValue) == 0x000099, "Member 'GA_Entranced_C_FindTeammate::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Entranced_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Entranced_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Entranced_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Entranced_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Entranced_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Entranced_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_K2_OnEndAbility \ +static_assert(alignof(GA_Entranced_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Entranced_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Entranced_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Entranced_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Entranced_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Entranced_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B \ +static_assert(alignof(GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B) == 0x000008, "Wrong alignment on GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(sizeof(GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B) == 0x0000B8, "Wrong size on GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(offsetof(GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B, EventTag) == 0x000000, "Member 'GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B, EventData) == 0x000008, "Member 'GA_Entranced_C_OnBlendOut_CC45748A4B7C53563C17AE825F5C198B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B \ +static_assert(alignof(GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B) == 0x000008, "Wrong alignment on GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(sizeof(GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B) == 0x0000B8, "Wrong size on GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(offsetof(GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B, EventTag) == 0x000000, "Member 'GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B, EventData) == 0x000008, "Member 'GA_Entranced_C_OnCancelled_CC45748A4B7C53563C17AE825F5C198B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B \ +static_assert(alignof(GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B) == 0x000008, "Wrong alignment on GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(sizeof(GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B) == 0x0000B8, "Wrong size on GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(offsetof(GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B, EventTag) == 0x000000, "Member 'GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B, EventData) == 0x000008, "Member 'GA_Entranced_C_OnCompleted_CC45748A4B7C53563C17AE825F5C198B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B \ +static_assert(alignof(GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B) == 0x000008, "Wrong alignment on GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(sizeof(GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B) == 0x0000B8, "Wrong size on GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B"); \ +static_assert(offsetof(GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B, EventTag) == 0x000000, "Member 'GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B, EventData) == 0x000008, "Member 'GA_Entranced_C_OnInterrupted_CC45748A4B7C53563C17AE825F5C198B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_RecieveHit \ +static_assert(alignof(GA_Entranced_C_RecieveHit) == 0x000008, "Wrong alignment on GA_Entranced_C_RecieveHit"); \ +static_assert(sizeof(GA_Entranced_C_RecieveHit) == 0x0000B0, "Wrong size on GA_Entranced_C_RecieveHit"); \ +static_assert(offsetof(GA_Entranced_C_RecieveHit, Event) == 0x000000, "Member 'GA_Entranced_C_RecieveHit::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_Set_Duration \ +static_assert(alignof(GA_Entranced_C_Set_Duration) == 0x000008, "Wrong alignment on GA_Entranced_C_Set_Duration"); \ +static_assert(sizeof(GA_Entranced_C_Set_Duration) == 0x000060, "Wrong size on GA_Entranced_C_Set_Duration"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Entranced_C_Set_Duration::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000008, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000018, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000020, "Member 'GA_Entranced_C_Set_Duration::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000028, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000040, "Member 'GA_Entranced_C_Set_Duration::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000048, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Duration, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000058, "Member 'GA_Entranced_C_Set_Duration::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Entranced_C_Set_Invisibility \ +static_assert(alignof(GA_Entranced_C_Set_Invisibility) == 0x000008, "Wrong alignment on GA_Entranced_C_Set_Invisibility"); \ +static_assert(sizeof(GA_Entranced_C_Set_Invisibility) == 0x000058, "Wrong size on GA_Entranced_C_Set_Invisibility"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, Invisible) == 0x000000, "Member 'GA_Entranced_C_Set_Invisibility::Invisible' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000028, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000030, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000038, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000040, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000050, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Entranced_C_Set_Invisibility, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000051, "Member 'GA_Entranced_C_Set_Invisibility::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Entranced_C \ +static_assert(alignof(UGA_Entranced_C) == 0x000008, "Wrong alignment on UGA_Entranced_C"); \ +static_assert(sizeof(UGA_Entranced_C) == 0x000700, "Wrong size on UGA_Entranced_C"); \ +static_assert(offsetof(UGA_Entranced_C, UberGraphFrame) == 0x000668, "Member 'UGA_Entranced_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, PreviousTeam) == 0x000670, "Member 'UGA_Entranced_C::PreviousTeam' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, Duration) == 0x000678, "Member 'UGA_Entranced_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, StartingDuration) == 0x000680, "Member 'UGA_Entranced_C::StartingDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, DurationTickRate) == 0x000688, "Member 'UGA_Entranced_C::DurationTickRate' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, KissEffect) == 0x000690, "Member 'UGA_Entranced_C::KissEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, HurtByPlayerDurationDecrease) == 0x000698, "Member 'UGA_Entranced_C::HurtByPlayerDurationDecrease' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, Forgivable_Player_attacks) == 0x0006A0, "Member 'UGA_Entranced_C::Forgivable_Player_attacks' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, InitialHide) == 0x0006C0, "Member 'UGA_Entranced_C::InitialHide' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, SkeleMesh) == 0x0006C8, "Member 'UGA_Entranced_C::SkeleMesh' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, EyeL) == 0x0006D0, "Member 'UGA_Entranced_C::EyeL' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, EyeR) == 0x0006D8, "Member 'UGA_Entranced_C::EyeR' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, Head) == 0x0006E0, "Member 'UGA_Entranced_C::Head' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, CamMod) == 0x0006E8, "Member 'UGA_Entranced_C::CamMod' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, UpsetEnemy) == 0x0006F0, "Member 'UGA_Entranced_C::UpsetEnemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_Entranced_C, SuppressionEffect) == 0x0006F8, "Member 'UGA_Entranced_C::SuppressionEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_Calculate_Hangtime_Dilation \ +static_assert(alignof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation) == 0x000008, "Wrong alignment on GA_PlayerWindup_C_Calculate_Hangtime_Dilation"); \ +static_assert(sizeof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation) == 0x000050, "Wrong size on GA_PlayerWindup_C_Calculate_Hangtime_Dilation"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, ReturnValue) == 0x000000, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_IsFalling_ReturnValue) == 0x000022, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000023, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_NormalizeToRange_ReturnValue) == 0x000028, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_BooleanAND_ReturnValue) == 0x000030, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_FClamp_ReturnValue) == 0x000038, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_BooleanAND_ReturnValue_1) == 0x000040, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_Calculate_Hangtime_Dilation, CallFunc_Lerp_ReturnValue) == 0x000048, "Member 'GA_PlayerWindup_C_Calculate_Hangtime_Dilation::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup \ +static_assert(alignof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup) == 0x000008, "Wrong alignment on GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup"); \ +static_assert(sizeof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup) == 0x000D78, "Wrong size on GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, EntryPoint) == 0x000000, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetCameraRotation_ReturnValue) == 0x000010, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetCameraLocation_ReturnValue) == 0x000028, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetForwardVector_ReturnValue) == 0x000040, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable) == 0x000058, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_1) == 0x000059, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_struct_Variable) == 0x000060, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_struct_Variable_1) == 0x000080, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_byte_Variable) == 0x0000A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable) == 0x0000A8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_1) == 0x0000B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_2) == 0x0000B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_3) == 0x0000C0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_4) == 0x0000C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_5) == 0x0000D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_6) == 0x0000D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_7) == 0x0000E0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x0000E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_CreateTimeDilation_Handle) == 0x000110, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate) == 0x000114, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CustomEvent_WaitingTime_3) == 0x000124, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CustomEvent_WaitingTime_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_real_Variable) == 0x000128, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000130, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue) == 0x000138, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_1) == 0x00013C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CustomEvent_WaitingTime_2) == 0x00014C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CustomEvent_WaitingTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_real_Variable_1) == 0x000150, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000158, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_1) == 0x000160, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_2) == 0x000164, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CustomEvent_WaitingTime_1) == 0x000174, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_real_Variable_2) == 0x000178, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2) == 0x000180, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_2) == 0x000188, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_3) == 0x00018C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CustomEvent_WaitingTime) == 0x00019C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_real_Variable_3) == 0x0001A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_3) == 0x0001A8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_3) == 0x0001B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_delegate_Variable) == 0x0001B4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_8) == 0x0001C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_object_Variable_9) == 0x0001D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_object_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_delegate_Variable_1) == 0x0001D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0001E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_2) == 0x000200, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_class_Variable) == 0x000208, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_class_Variable_1) == 0x000210, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_3) == 0x000218, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_class_Variable_2) == 0x000220, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_class_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_class_Variable_3) == 0x000228, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_class_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_4) == 0x000230, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000238, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000250, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000268, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000280, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_VectorVector_ReturnValue) == 0x000298, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0002B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_int_Loop_Counter_Variable) == 0x0002C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_IntInt_ReturnValue) == 0x0002CC, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_True_if_break_was_hit_Variable) == 0x0002D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_int_Array_Index_Variable) == 0x0002D4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Not_PreBool_ReturnValue) == 0x0002D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Has_Been_Initd_Variable) == 0x0002D9, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Event_bWasCancelled) == 0x0002DA, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x0002E0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0002E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_4) == 0x0002F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Not_PreBool_ReturnValue_1) == 0x0002F1, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0002F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000300, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_IntInt_ReturnValue_1) == 0x000308, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_LastIndex_ReturnValue) == 0x00030C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Greater_IntInt_ReturnValue) == 0x000310, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_4) == 0x000314, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_Get_Item) == 0x000328, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_Get_Item_1) == 0x0003C0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000458, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_5) == 0x000460, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_5) == 0x000464, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000478, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000480, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_bSuccess) == 0x000490, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000491, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_ShouldRelease_ReturnValue) == 0x000492, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_ShouldRelease_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_LastIndex_ReturnValue_1) == 0x000494, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_LastIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000498, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_5) == 0x000499, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default) == 0x0004A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetPlayerController_ReturnValue) == 0x0004C0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_6) == 0x0004C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0004D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_bSuccess_1) == 0x0004D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetClan_ReturnValue) == 0x0004E0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0004E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_7) == 0x0004F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0004F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_bSuccess_2) == 0x000508, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000510, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_1) == 0x000518, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000520, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000528, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Calculate_Hangtime_Dilation_ReturnValue) == 0x000530, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Calculate_Hangtime_Dilation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Calculate_Hangtime_Dilation_ReturnValue_1) == 0x000538, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Calculate_Hangtime_Dilation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000540, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000548, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000550, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue) == 0x000558, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_Variable_6) == 0x000559, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_2) == 0x00055C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_3) == 0x000568, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_RandomFloatInRange_ReturnValue) == 0x0005A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Lerp_ReturnValue) == 0x0005A8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0005B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_6) == 0x0005B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0005C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0005D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Not_PreBool_ReturnValue_2) == 0x0005D9, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x0005DC, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsFalling_ReturnValue) == 0x0005E4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0005E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue_1) == 0x0005F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetGameplayEffectCount_ReturnValue) == 0x0005F4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetGameplayEffectCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Greater_IntInt_ReturnValue_1) == 0x0005F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_SpawnObject_ReturnValue) == 0x000600, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_MakeStruct_GameplayEventData) == 0x000608, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WaitDelay_ReturnValue) == 0x0006B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_8) == 0x0006C0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_7) == 0x0006C4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0006D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0007B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0007B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0007C0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_bSuccess_3) == 0x0007D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x0007D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_DynamicCast_bSuccess_4) == 0x0007E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x0007F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x0007F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000800, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetActorForwardVector_ReturnValue) == 0x000808, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000820, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000838, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000850, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000858, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000870, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000880, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000888, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_8) == 0x000890, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetGameplayEffectCount_ReturnValue_1) == 0x0008A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetGameplayEffectCount_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0008A8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0008B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0008B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0008C8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_MapRangeClamped_ReturnValue) == 0x0008D0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x0008D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x0008E8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_bool_IsClosed_Variable) == 0x0008E9, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0008F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_Get_Item_2) == 0x0008F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_9) == 0x000990, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0009A0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0009A8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0009B0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0009B1, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue_2) == 0x0009B2, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_int_Variable) == 0x0009B4, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0009B8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_4) == 0x0009D8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x0009E0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_Get_Item_3) == 0x0009F0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Array_Length_ReturnValue) == 0x0009F8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_9) == 0x0009FC, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Less_IntInt_ReturnValue) == 0x0009FD, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue_3) == 0x0009FE, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, Temp_real_Variable_4) == 0x000A00, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000A08, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000A10, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000A18, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000A30, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CustomEvent_WaitingTime_4) == 0x000A48, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CustomEvent_WaitingTime_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000A50, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_MakeArray_Array) == 0x000A58, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_MakeArray_Array_1) == 0x000A68, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x000A78, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x000B60, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_CreateDelegate_OutputDelegate_10) == 0x000B64, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_bBlockingHit) == 0x000B74, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_bInitialOverlap) == 0x000B75, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_Time) == 0x000B78, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_Distance) == 0x000B7C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_Location) == 0x000B80, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_ImpactPoint) == 0x000B98, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_Normal) == 0x000BB0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_ImpactNormal) == 0x000BC8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_PhysMat) == 0x000BE0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_HitActor) == 0x000BE8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_HitComponent) == 0x000BF0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_HitBoneName) == 0x000BF8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_BoneName) == 0x000C00, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_HitItem) == 0x000C08, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_ElementIndex) == 0x000C0C, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_FaceIndex) == 0x000C10, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_TraceStart) == 0x000C18, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BreakHitResult_TraceEnd) == 0x000C30, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAIController_ReturnValue) == 0x000C48, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000C50, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_10) == 0x000C68, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000C70, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsAwareOfActor_ReturnValue) == 0x000C88, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000C90, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000CA8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Vector_Distance_ReturnValue) == 0x000CC0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Dot_VectorVector_ReturnValue) == 0x000CC8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000CD0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000CD1, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000CD8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue_4) == 0x000CE0, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_IsValid_ReturnValue_11) == 0x000CE1, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_BooleanAND_ReturnValue_5) == 0x000CE2, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000CE8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000CF8, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_5) == 0x000D00, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x000D10, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Not_PreBool_ReturnValue_3) == 0x000D11, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_6) == 0x000D18, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x000D28, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_4) == 0x000D30, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_self_CastInput_7) == 0x000D38, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_self_CastInput_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_HasMatchingGameplayTag_ReturnValue_8) == 0x000D48, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_HasMatchingGameplayTag_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_5) == 0x000D50, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, K2Node_Select_Default_6) == 0x000D58, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x000D60, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000D68, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_SetTimeDilation_TimeDilation_ImplicitCast) == 0x000D70, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_SetTimeDilation_TimeDilation_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000D74, "Member 'GA_PlayerWindup_C_ExecuteUbergraph_GA_PlayerWindup::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerWindup_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerWindup_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerWindup_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerWindup_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerWindup_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerWindup_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5 \ +static_assert(alignof(GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5) == 0x000004, "Wrong alignment on GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5"); \ +static_assert(sizeof(GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5) == 0x000004, "Wrong size on GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5"); \ +static_assert(offsetof(GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5, WaitingTime) == 0x000000, "Member 'GA_PlayerWindup_C_OnControlCueProcess_8B01DCC043225568C875FDAC01B778B5::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B \ +static_assert(alignof(GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B) == 0x000004, "Wrong alignment on GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B"); \ +static_assert(sizeof(GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B) == 0x000004, "Wrong size on GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B"); \ +static_assert(offsetof(GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B, WaitingTime) == 0x000000, "Member 'GA_PlayerWindup_C_OnControlCueProcess_928C521F44F03E2FD4924CACE3205C7B::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C \ +static_assert(alignof(GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C) == 0x000004, "Wrong alignment on GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C"); \ +static_assert(sizeof(GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C) == 0x000004, "Wrong size on GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C"); \ +static_assert(offsetof(GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C, WaitingTime) == 0x000000, "Member 'GA_PlayerWindup_C_OnControlCueProcess_9438BA204B156943E9455196BF4ECB3C::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4 \ +static_assert(alignof(GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4) == 0x000004, "Wrong alignment on GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4"); \ +static_assert(sizeof(GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4) == 0x000004, "Wrong size on GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4"); \ +static_assert(offsetof(GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4, WaitingTime) == 0x000000, "Member 'GA_PlayerWindup_C_OnControlCueProcess_9EB4F4B344141FCCD89347B2B67FC4E4::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B \ +static_assert(alignof(GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B) == 0x000004, "Wrong alignment on GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B"); \ +static_assert(sizeof(GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B) == 0x000004, "Wrong size on GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B"); \ +static_assert(offsetof(GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B, WaitingTime) == 0x000000, "Member 'GA_PlayerWindup_C_OnControlCueProcess_A4E459D1469098596D810289BD28023B::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerWindup_C_ShouldRelease \ +static_assert(alignof(GA_PlayerWindup_C_ShouldRelease) == 0x000008, "Wrong alignment on GA_PlayerWindup_C_ShouldRelease"); \ +static_assert(sizeof(GA_PlayerWindup_C_ShouldRelease) == 0x000020, "Wrong size on GA_PlayerWindup_C_ShouldRelease"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, ReturnValue) == 0x000000, "Member 'GA_PlayerWindup_C_ShouldRelease::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Not_PreBool_ReturnValue) == 0x000001, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000008, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000010, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanOR_ReturnValue) == 0x000011, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanOR_ReturnValue_1) == 0x000012, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000013, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Not_PreBool_ReturnValue_1) == 0x000014, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000015, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanOR_ReturnValue_2) == 0x000016, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanAND_ReturnValue) == 0x000017, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanAND_ReturnValue_1) == 0x000018, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanAND_ReturnValue_2) == 0x000019, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerWindup_C_ShouldRelease, CallFunc_BooleanOR_ReturnValue_3) == 0x00001A, "Member 'GA_PlayerWindup_C_ShouldRelease::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerWindup_C \ +static_assert(alignof(UGA_PlayerWindup_C) == 0x000008, "Wrong alignment on UGA_PlayerWindup_C"); \ +static_assert(sizeof(UGA_PlayerWindup_C) == 0x0006F0, "Wrong size on UGA_PlayerWindup_C"); \ +static_assert(offsetof(UGA_PlayerWindup_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerWindup_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, AttackHeld) == 0x000670, "Member 'UGA_PlayerWindup_C::AttackHeld' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HoldTime) == 0x000678, "Member 'UGA_PlayerWindup_C::HoldTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, MinHold) == 0x000680, "Member 'UGA_PlayerWindup_C::MinHold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, MaxHold) == 0x000688, "Member 'UGA_PlayerWindup_C::MaxHold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HeavyThreshold) == 0x000690, "Member 'UGA_PlayerWindup_C::HeavyThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HeavyCharged) == 0x000698, "Member 'UGA_PlayerWindup_C::HeavyCharged' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HeavyThresholdBias) == 0x0006A0, "Member 'UGA_PlayerWindup_C::HeavyThresholdBias' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Punch_Index) == 0x0006A8, "Member 'UGA_PlayerWindup_C::Punch_Index' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Attack_Set) == 0x0006B0, "Member 'UGA_PlayerWindup_C::Attack_Set' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Released) == 0x0006B8, "Member 'UGA_PlayerWindup_C::Released' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Target) == 0x0006C0, "Member 'UGA_PlayerWindup_C::Target' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HangtimeHandle) == 0x0006C8, "Member 'UGA_PlayerWindup_C::HangtimeHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HangPunching) == 0x0006CC, "Member 'UGA_PlayerWindup_C::HangPunching' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, HeavyBlocked) == 0x0006CD, "Member 'UGA_PlayerWindup_C::HeavyBlocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, LightBlocked) == 0x0006CE, "Member 'UGA_PlayerWindup_C::LightBlocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Heavy_Ability_Tag) == 0x0006D0, "Member 'UGA_PlayerWindup_C::Heavy_Ability_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Light_Ability_Tag) == 0x0006D8, "Member 'UGA_PlayerWindup_C::Light_Ability_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, DodgeAlertPoint) == 0x0006E0, "Member 'UGA_PlayerWindup_C::DodgeAlertPoint' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, EnemyDodging) == 0x0006E8, "Member 'UGA_PlayerWindup_C::EnemyDodging' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, Running) == 0x0006E9, "Member 'UGA_PlayerWindup_C::Running' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerWindup_C, QuickFire) == 0x0006EA, "Member 'UGA_PlayerWindup_C::QuickFire' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_AddSphereComp \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_AddSphereComp) == 0x000010, "Wrong alignment on WrestlerCharacterSnowComponent_C_AddSphereComp"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_AddSphereComp) == 0x000080, "Wrong size on WrestlerCharacterSnowComponent_C_AddSphereComp"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_AddSphereComp, CallFunc_MakeTransform_ReturnValue) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_AddSphereComp::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_AddSphereComp, CallFunc_GetOwner_ReturnValue) == 0x000060, "Member 'WrestlerCharacterSnowComponent_C_AddSphereComp::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_AddSphereComp, CallFunc_AddComponentByClass_ReturnValue) == 0x000068, "Member 'WrestlerCharacterSnowComponent_C_AddSphereComp::CallFunc_AddComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_AddSphereComp, CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast) == 0x000070, "Member 'WrestlerCharacterSnowComponent_C_AddSphereComp::CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_EndOverlap \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_EndOverlap) == 0x000008, "Wrong alignment on WrestlerCharacterSnowComponent_C_EndOverlap"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_EndOverlap) == 0x000010, "Wrong size on WrestlerCharacterSnowComponent_C_EndOverlap"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_EndOverlap, OverlappedActor) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_EndOverlap::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_EndOverlap, OtherActor) == 0x000008, "Member 'WrestlerCharacterSnowComponent_C_EndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent) == 0x000008, "Wrong alignment on WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent) == 0x0001E0, "Wrong size on WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, EntryPoint) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_Event_DeltaSeconds) == 0x000010, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetOwner_ReturnValue) == 0x000018, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_Event_bInResetNiagaraSystem) == 0x000020, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_Event_bInResetNiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetVelocity_ReturnValue) == 0x000028, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Normal_ReturnValue) == 0x000040, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_BreakVector_X) == 0x000070, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_BreakVector_Y) == 0x000078, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_BreakVector_Z) == 0x000080, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SignOfFloat_ReturnValue) == 0x000088, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SignOfFloat_ReturnValue_1) == 0x000090, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SignOfFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000098, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000A0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_FTrunc_ReturnValue) == 0x0000B0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000B8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Lerp_ReturnValue) == 0x0000C0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Lerp_ReturnValue_1) == 0x0000C8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Lerp_ReturnValue_2) == 0x0000D0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, Temp_int_Array_Index_Variable_1) == 0x0000D8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_IsValid_ReturnValue) == 0x0000DC, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetOwner_ReturnValue_1) == 0x0000E0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CreateDelegate_OutputDelegate) == 0x0000E8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CustomEvent_OverlappedActor_1) == 0x0000F8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CustomEvent_OverlappedActor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CustomEvent_OtherActor_1) == 0x000100, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CustomEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetObjectClass_ReturnValue) == 0x000108, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_EqualEqual_ClassClass_ReturnValue) == 0x000110, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_EqualEqual_ClassClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Contains_ReturnValue) == 0x000111, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CreateDelegate_OutputDelegate_1) == 0x000114, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Not_PreBool_ReturnValue) == 0x000124, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_BooleanAND_ReturnValue) == 0x000125, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CustomEvent_OverlappedActor) == 0x000128, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CustomEvent_OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_CustomEvent_OtherActor) == 0x000130, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetObjectClass_ReturnValue_1) == 0x000138, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetObjectClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_EqualEqual_ClassClass_ReturnValue_1) == 0x000140, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_EqualEqual_ClassClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_RemoveItem_ReturnValue) == 0x000141, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, Temp_int_Loop_Counter_Variable_1) == 0x000144, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_DynamicCast_AsBPI_Character_Snow) == 0x000148, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_DynamicCast_AsBPI_Character_Snow' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_DynamicCast_bSuccess) == 0x000158, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Add_IntInt_ReturnValue_1) == 0x00015C, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_ReturnVolumeData_VolumeDefs) == 0x000160, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_ReturnVolumeData_VolumeDefs' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Add_ReturnValue) == 0x000170, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_GetOverlappingActors_OverlappingActors) == 0x000178, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_GetOverlappingActors_OverlappingActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Get_Item) == 0x000188, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Length_ReturnValue) == 0x000190, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Less_IntInt_ReturnValue) == 0x000194, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Get_Item_1) == 0x000198, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Array_Length_ReturnValue_1) == 0x0001A0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_DynamicCast_AsBPI_Character_Snow_1) == 0x0001A8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_DynamicCast_AsBPI_Character_Snow_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, K2Node_DynamicCast_bSuccess_1) == 0x0001B8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_Less_IntInt_ReturnValue_1) == 0x0001B9, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_ReturnVolumeData_VolumeDefs_1) == 0x0001C0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_ReturnVolumeData_VolumeDefs_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x0001D0, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SetVariableFloat_InValue_ImplicitCast_1) == 0x0001D4, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SetVariableFloat_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SetVariableFloat_InValue_ImplicitCast_2) == 0x0001D8, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SetVariableFloat_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent, CallFunc_SetVariableFloat_InValue_ImplicitCast_3) == 0x0001DC, "Member 'WrestlerCharacterSnowComponent_C_ExecuteUbergraph_WrestlerCharacterSnowComponent::CallFunc_SetVariableFloat_InValue_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_OnParticlesActivated \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_OnParticlesActivated) == 0x000001, "Wrong alignment on WrestlerCharacterSnowComponent_C_OnParticlesActivated"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_OnParticlesActivated) == 0x000001, "Wrong size on WrestlerCharacterSnowComponent_C_OnParticlesActivated"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_OnParticlesActivated, bInResetNiagaraSystem) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_OnParticlesActivated::bInResetNiagaraSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_Overlapped \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_Overlapped) == 0x000008, "Wrong alignment on WrestlerCharacterSnowComponent_C_Overlapped"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_Overlapped) == 0x000010, "Wrong size on WrestlerCharacterSnowComponent_C_Overlapped"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_Overlapped, OverlappedActor) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_Overlapped::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_Overlapped, OtherActor) == 0x000008, "Member 'WrestlerCharacterSnowComponent_C_Overlapped::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_ReceiveTick \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerCharacterSnowComponent_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerCharacterSnowComponent_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerCharacterSnowComponent_C_SendDefsToNiagara \ +static_assert(alignof(WrestlerCharacterSnowComponent_C_SendDefsToNiagara) == 0x000008, "Wrong alignment on WrestlerCharacterSnowComponent_C_SendDefsToNiagara"); \ +static_assert(sizeof(WrestlerCharacterSnowComponent_C_SendDefsToNiagara) == 0x000010, "Wrong size on WrestlerCharacterSnowComponent_C_SendDefsToNiagara"); \ +static_assert(offsetof(WrestlerCharacterSnowComponent_C_SendDefsToNiagara, Defs) == 0x000000, "Member 'WrestlerCharacterSnowComponent_C_SendDefsToNiagara::Defs' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerCharacterSnowComponent_C \ +static_assert(alignof(UWrestlerCharacterSnowComponent_C) == 0x000010, "Wrong alignment on UWrestlerCharacterSnowComponent_C"); \ +static_assert(sizeof(UWrestlerCharacterSnowComponent_C) == 0x000300, "Wrong size on UWrestlerCharacterSnowComponent_C"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, UberGraphFrame) == 0x0002C0, "Member 'UWrestlerCharacterSnowComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, KillVolumeCheckRadius) == 0x0002C8, "Member 'UWrestlerCharacterSnowComponent_C::KillVolumeCheckRadius' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, CurrentKillActors) == 0x0002D0, "Member 'UWrestlerCharacterSnowComponent_C::CurrentKillActors' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, VolumeCache) == 0x0002E0, "Member 'UWrestlerCharacterSnowComponent_C::VolumeCache' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, SphereOverlap) == 0x0002E8, "Member 'UWrestlerCharacterSnowComponent_C::SphereOverlap' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerCharacterSnowComponent_C, CurrentDefinitions) == 0x0002F0, "Member 'UWrestlerCharacterSnowComponent_C::CurrentDefinitions' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP \ +static_assert(alignof(SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP) == 0x000008, "Wrong alignment on SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP"); \ +static_assert(sizeof(SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP) == 0x000010, "Wrong size on SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP, EntryPoint) == 0x000000, "Member 'SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'SEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Police_Entry_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C \ +static_assert(alignof(USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C) == 0x000008, "Wrong alignment on USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C"); \ +static_assert(sizeof(USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C) == 0x000040, "Wrong size on USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C"); \ +static_assert(offsetof(USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USEQ_RE_Pro_Escape_Police_Entry_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer \ +static_assert(alignof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer) == 0x000008, "Wrong alignment on BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer"); \ +static_assert(sizeof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer) == 0x0000A8, "Wrong size on BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, EntryPoint) == 0x000000, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_bool_Variable) == 0x000004, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_bool_Variable_1) == 0x000005, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_real_Variable) == 0x000008, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_real_Variable_1) == 0x00000C, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_bool_Variable_2) == 0x000010, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, K2Node_Select_Default) == 0x000014, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_struct_Variable) == 0x000018, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, Temp_struct_Variable_1) == 0x000020, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, K2Node_Select_Default_1) == 0x000028, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, K2Node_Event_DeltaSeconds) == 0x000030, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000038, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000040, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000051, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_K2_GetRandomReachablePointInRadius_RandomLocation) == 0x000070, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_K2_GetRandomReachablePointInRadius_RandomLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_K2_GetRandomReachablePointInRadius_ReturnValue) == 0x000088, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_K2_GetRandomReachablePointInRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer, CallFunc_Add_VectorVector_ReturnValue) == 0x000090, "Member 'BP_NoisyPlayer_C_ExecuteUbergraph_BP_NoisyPlayer::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NoisyPlayer_C_ReceiveTick \ +static_assert(alignof(BP_NoisyPlayer_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_NoisyPlayer_C_ReceiveTick"); \ +static_assert(sizeof(BP_NoisyPlayer_C_ReceiveTick) == 0x000004, "Wrong size on BP_NoisyPlayer_C_ReceiveTick"); \ +static_assert(offsetof(BP_NoisyPlayer_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_NoisyPlayer_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_NoisyPlayer_C \ +static_assert(alignof(ABP_NoisyPlayer_C) == 0x000008, "Wrong alignment on ABP_NoisyPlayer_C"); \ +static_assert(sizeof(ABP_NoisyPlayer_C) == 0x0002C8, "Wrong size on ABP_NoisyPlayer_C"); \ +static_assert(offsetof(ABP_NoisyPlayer_C, UberGraphFrame) == 0x000298, "Member 'ABP_NoisyPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_NoisyPlayer_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_NoisyPlayer_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_NoisyPlayer_C, Random_Location) == 0x0002A8, "Member 'ABP_NoisyPlayer_C::Random_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_NoisyPlayer_C, TurnDebugOn) == 0x0002C0, "Member 'ABP_NoisyPlayer_C::TurnDebugOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_NoisyPlayer_C, Radius) == 0x0002C4, "Member 'ABP_NoisyPlayer_C::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_WBP_AbilityTreeShadow_Event \ +static_assert(alignof(WBP_BaseTree_C_WBP_AbilityTreeShadow_Event) == 0x000008, "Wrong alignment on WBP_BaseTree_C_WBP_AbilityTreeShadow_Event"); \ +static_assert(sizeof(WBP_BaseTree_C_WBP_AbilityTreeShadow_Event) == 0x000008, "Wrong size on WBP_BaseTree_C_WBP_AbilityTreeShadow_Event"); \ +static_assert(offsetof(WBP_BaseTree_C_WBP_AbilityTreeShadow_Event, WBP_AbilityTreeShadow) == 0x000000, "Member 'WBP_BaseTree_C_WBP_AbilityTreeShadow_Event::WBP_AbilityTreeShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_UpdateVisibilityPerTier \ +static_assert(alignof(WBP_BaseTree_C_UpdateVisibilityPerTier) == 0x000008, "Wrong alignment on WBP_BaseTree_C_UpdateVisibilityPerTier"); \ +static_assert(sizeof(WBP_BaseTree_C_UpdateVisibilityPerTier) == 0x000038, "Wrong size on WBP_BaseTree_C_UpdateVisibilityPerTier"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, InAbility) == 0x000000, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::InAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CurrAbility) == 0x000008, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CurrAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_IsAbilityAcquired_ReturnValue) == 0x000014, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_IsAbilityAcquired_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateVisibilityPerTier, CallFunc_GetProperty_ReturnValue) == 0x000032, "Member 'WBP_BaseTree_C_UpdateVisibilityPerTier::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_UpdateDLCVisibility \ +static_assert(alignof(WBP_BaseTree_C_UpdateDLCVisibility) == 0x000008, "Wrong alignment on WBP_BaseTree_C_UpdateDLCVisibility"); \ +static_assert(sizeof(WBP_BaseTree_C_UpdateDLCVisibility) == 0x000020, "Wrong size on WBP_BaseTree_C_UpdateDLCVisibility"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, AbilityType) == 0x000000, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::AbilityType' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, NewLocalVar) == 0x000001, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, K2Node_SwitchEnum_CmpSuccess) == 0x000002, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_Array_Get_Item) == 0x000010, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_Array_Length_ReturnValue) == 0x000018, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_Less_IntInt_ReturnValue) == 0x00001C, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00001D, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_GetProperty_ReturnValue) == 0x00001E, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateDLCVisibility, CallFunc_IsValid_ReturnValue) == 0x00001F, "Member 'WBP_BaseTree_C_UpdateDLCVisibility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_UpdateClanIconByAbility \ +static_assert(alignof(WBP_BaseTree_C_UpdateClanIconByAbility) == 0x000008, "Wrong alignment on WBP_BaseTree_C_UpdateClanIconByAbility"); \ +static_assert(sizeof(WBP_BaseTree_C_UpdateClanIconByAbility) == 0x000028, "Wrong size on WBP_BaseTree_C_UpdateClanIconByAbility"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateClanIconByAbility, InAbility) == 0x000000, "Member 'WBP_BaseTree_C_UpdateClanIconByAbility::InAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateClanIconByAbility, InClanSlot) == 0x000008, "Member 'WBP_BaseTree_C_UpdateClanIconByAbility::InClanSlot' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateClanIconByAbility, CallFunc_GetClanValue_ReturnValue) == 0x000010, "Member 'WBP_BaseTree_C_UpdateClanIconByAbility::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateClanIconByAbility, CallFunc_Map_Find_Value) == 0x000018, "Member 'WBP_BaseTree_C_UpdateClanIconByAbility::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateClanIconByAbility, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'WBP_BaseTree_C_UpdateClanIconByAbility::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_UpdateAllClanIcons \ +static_assert(alignof(WBP_BaseTree_C_UpdateAllClanIcons) == 0x000001, "Wrong alignment on WBP_BaseTree_C_UpdateAllClanIcons"); \ +static_assert(sizeof(WBP_BaseTree_C_UpdateAllClanIcons) == 0x000005, "Wrong size on WBP_BaseTree_C_UpdateAllClanIcons"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateAllClanIcons, Temp_bool_Variable) == 0x000000, "Member 'WBP_BaseTree_C_UpdateAllClanIcons::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateAllClanIcons, Temp_byte_Variable) == 0x000001, "Member 'WBP_BaseTree_C_UpdateAllClanIcons::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateAllClanIcons, Temp_byte_Variable_1) == 0x000002, "Member 'WBP_BaseTree_C_UpdateAllClanIcons::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateAllClanIcons, CallFunc_GetProperty_ReturnValue) == 0x000003, "Member 'WBP_BaseTree_C_UpdateAllClanIcons::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_UpdateAllClanIcons, K2Node_Select_Default) == 0x000004, "Member 'WBP_BaseTree_C_UpdateAllClanIcons::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_TriggerAllAnimations \ +static_assert(alignof(WBP_BaseTree_C_TriggerAllAnimations) == 0x000008, "Wrong alignment on WBP_BaseTree_C_TriggerAllAnimations"); \ +static_assert(sizeof(WBP_BaseTree_C_TriggerAllAnimations) == 0x000050, "Wrong size on WBP_BaseTree_C_TriggerAllAnimations"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, MainAbilities) == 0x000000, "Member 'WBP_BaseTree_C_TriggerAllAnimations::MainAbilities' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_BaseTree_C_TriggerAllAnimations::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WBP_BaseTree_C_TriggerAllAnimations::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_PlayAnimationForward_ReturnValue) == 0x000028, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_IsAbilityMain_ReturnValue) == 0x000030, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_IsAbilityMain_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000040, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_TriggerAllAnimations, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000048, "Member 'WBP_BaseTree_C_TriggerAllAnimations::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_ShadowRow5_Event \ +static_assert(alignof(WBP_BaseTree_C_ShadowRow5_Event) == 0x000008, "Wrong alignment on WBP_BaseTree_C_ShadowRow5_Event"); \ +static_assert(sizeof(WBP_BaseTree_C_ShadowRow5_Event) == 0x000008, "Wrong size on WBP_BaseTree_C_ShadowRow5_Event"); \ +static_assert(offsetof(WBP_BaseTree_C_ShadowRow5_Event, ShadowRow5_0) == 0x000000, "Member 'WBP_BaseTree_C_ShadowRow5_Event::ShadowRow5_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_ShadowRow4_Event \ +static_assert(alignof(WBP_BaseTree_C_ShadowRow4_Event) == 0x000008, "Wrong alignment on WBP_BaseTree_C_ShadowRow4_Event"); \ +static_assert(sizeof(WBP_BaseTree_C_ShadowRow4_Event) == 0x000008, "Wrong size on WBP_BaseTree_C_ShadowRow4_Event"); \ +static_assert(offsetof(WBP_BaseTree_C_ShadowRow4_Event, ShadowRow4_0) == 0x000000, "Member 'WBP_BaseTree_C_ShadowRow4_Event::ShadowRow4_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_ShadowRow3_Event \ +static_assert(alignof(WBP_BaseTree_C_ShadowRow3_Event) == 0x000008, "Wrong alignment on WBP_BaseTree_C_ShadowRow3_Event"); \ +static_assert(sizeof(WBP_BaseTree_C_ShadowRow3_Event) == 0x000008, "Wrong size on WBP_BaseTree_C_ShadowRow3_Event"); \ +static_assert(offsetof(WBP_BaseTree_C_ShadowRow3_Event, ShadowRow3_0) == 0x000000, "Member 'WBP_BaseTree_C_ShadowRow3_Event::ShadowRow3_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_ShadowRow2_Event \ +static_assert(alignof(WBP_BaseTree_C_ShadowRow2_Event) == 0x000008, "Wrong alignment on WBP_BaseTree_C_ShadowRow2_Event"); \ +static_assert(sizeof(WBP_BaseTree_C_ShadowRow2_Event) == 0x000008, "Wrong size on WBP_BaseTree_C_ShadowRow2_Event"); \ +static_assert(offsetof(WBP_BaseTree_C_ShadowRow2_Event, ShadowRow2_0) == 0x000000, "Member 'WBP_BaseTree_C_ShadowRow2_Event::ShadowRow2_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3 \ +static_assert(alignof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3) == 0x000008, "Wrong alignment on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3"); \ +static_assert(sizeof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3) == 0x000008, "Wrong size on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3"); \ +static_assert(offsetof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3, ShadowRow5_0) == 0x000000, "Member 'WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_3::ShadowRow5_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2 \ +static_assert(alignof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2) == 0x000008, "Wrong alignment on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2"); \ +static_assert(sizeof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2) == 0x000008, "Wrong size on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2"); \ +static_assert(offsetof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2, ShadowRow4_0) == 0x000000, "Member 'WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_2::ShadowRow4_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1 \ +static_assert(alignof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1) == 0x000008, "Wrong alignment on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1"); \ +static_assert(sizeof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1) == 0x000008, "Wrong size on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1"); \ +static_assert(offsetof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1, ShadowRow3_0) == 0x000000, "Member 'WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_1::ShadowRow3_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0 \ +static_assert(alignof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0) == 0x000008, "Wrong alignment on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0"); \ +static_assert(sizeof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0) == 0x000008, "Wrong size on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0"); \ +static_assert(offsetof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0, ShadowRow2_0) == 0x000000, "Member 'WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree_0::ShadowRow2_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree \ +static_assert(alignof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree) == 0x000008, "Wrong alignment on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree"); \ +static_assert(sizeof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree) == 0x000008, "Wrong size on WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree"); \ +static_assert(offsetof(WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree, WBP_AbilityTreeShadow) == 0x000000, "Member 'WBP_BaseTree_C_SequenceEvent__ENTRYPOINTWBP_BaseTree::WBP_AbilityTreeShadow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_RefreshTierNavigationByType \ +static_assert(alignof(WBP_BaseTree_C_RefreshTierNavigationByType) == 0x000001, "Wrong alignment on WBP_BaseTree_C_RefreshTierNavigationByType"); \ +static_assert(sizeof(WBP_BaseTree_C_RefreshTierNavigationByType) == 0x000002, "Wrong size on WBP_BaseTree_C_RefreshTierNavigationByType"); \ +static_assert(offsetof(WBP_BaseTree_C_RefreshTierNavigationByType, InType) == 0x000000, "Member 'WBP_BaseTree_C_RefreshTierNavigationByType::InType' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_RefreshTierNavigationByType, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_BaseTree_C_RefreshTierNavigationByType::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_PlayTierAnimation \ +static_assert(alignof(WBP_BaseTree_C_PlayTierAnimation) == 0x000008, "Wrong alignment on WBP_BaseTree_C_PlayTierAnimation"); \ +static_assert(sizeof(WBP_BaseTree_C_PlayTierAnimation) == 0x000038, "Wrong size on WBP_BaseTree_C_PlayTierAnimation"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, InClanType) == 0x000000, "Member 'WBP_BaseTree_C_PlayTierAnimation::InClanType' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_BaseTree_C_PlayTierAnimation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue) == 0x000008, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000010, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue_2) == 0x000018, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue_3) == 0x000020, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue_4) == 0x000028, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_PlayTierAnimation, CallFunc_PlayAnimationForward_ReturnValue_5) == 0x000030, "Member 'WBP_BaseTree_C_PlayTierAnimation::CallFunc_PlayAnimationForward_ReturnValue_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_OnAbilityAcquired \ +static_assert(alignof(WBP_BaseTree_C_OnAbilityAcquired) == 0x000008, "Wrong alignment on WBP_BaseTree_C_OnAbilityAcquired"); \ +static_assert(sizeof(WBP_BaseTree_C_OnAbilityAcquired) == 0x000008, "Wrong size on WBP_BaseTree_C_OnAbilityAcquired"); \ +static_assert(offsetof(WBP_BaseTree_C_OnAbilityAcquired, AbilityAcquired) == 0x000000, "Member 'WBP_BaseTree_C_OnAbilityAcquired::AbilityAcquired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_IsUnlocked \ +static_assert(alignof(WBP_BaseTree_C_IsUnlocked) == 0x000001, "Wrong alignment on WBP_BaseTree_C_IsUnlocked"); \ +static_assert(sizeof(WBP_BaseTree_C_IsUnlocked) == 0x000003, "Wrong size on WBP_BaseTree_C_IsUnlocked"); \ +static_assert(offsetof(WBP_BaseTree_C_IsUnlocked, OutUnlocked) == 0x000000, "Member 'WBP_BaseTree_C_IsUnlocked::OutUnlocked' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_IsUnlocked, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'WBP_BaseTree_C_IsUnlocked::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_IsUnlocked, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000002, "Member 'WBP_BaseTree_C_IsUnlocked::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_IsAcquired \ +static_assert(alignof(WBP_BaseTree_C_IsAcquired) == 0x000001, "Wrong alignment on WBP_BaseTree_C_IsAcquired"); \ +static_assert(sizeof(WBP_BaseTree_C_IsAcquired) == 0x000003, "Wrong size on WBP_BaseTree_C_IsAcquired"); \ +static_assert(offsetof(WBP_BaseTree_C_IsAcquired, OutAcquired) == 0x000000, "Member 'WBP_BaseTree_C_IsAcquired::OutAcquired' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_IsAcquired, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'WBP_BaseTree_C_IsAcquired::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_IsAcquired, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000002, "Member 'WBP_BaseTree_C_IsAcquired::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree \ +static_assert(alignof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree) == 0x000008, "Wrong alignment on WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree"); \ +static_assert(sizeof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree) == 0x0000C8, "Wrong size on WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, EntryPoint) == 0x000000, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, Temp_delegate_Variable) == 0x000004, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000014, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, Temp_delegate_Variable_1) == 0x000018, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, Temp_delegate_Variable_2) == 0x000028, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, Temp_delegate_Variable_3) == 0x000038, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000048, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CreateDelegate_OutputDelegate) == 0x000050, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_WBP_AbilityTreeShadow) == 0x000060, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_WBP_AbilityTreeShadow' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_ShadowRow2) == 0x000068, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_ShadowRow2' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_PlayAnimation_ReturnValue) == 0x000070, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_ShadowRow3) == 0x000078, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_ShadowRow3' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_PlayAnimation_ReturnValue_1) == 0x000080, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_ShadowRow4) == 0x000088, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_ShadowRow4' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_PlayAnimation_ReturnValue_2) == 0x000090, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_ShadowRow5) == 0x000098, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_ShadowRow5' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_PlayAnimation_ReturnValue_3) == 0x0000A0, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, CallFunc_PlayAnimation_ReturnValue_4) == 0x0000A8, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::CallFunc_PlayAnimation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, Temp_delegate_Variable_4) == 0x0000B0, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree, K2Node_CustomEvent_AbilityAcquired) == 0x0000C0, "Member 'WBP_BaseTree_C_ExecuteUbergraph_WBP_BaseTree::K2Node_CustomEvent_AbilityAcquired' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BaseTree_C \ +static_assert(alignof(UWBP_BaseTree_C) == 0x000008, "Wrong alignment on UWBP_BaseTree_C"); \ +static_assert(sizeof(UWBP_BaseTree_C) == 0x000708, "Wrong size on UWBP_BaseTree_C"); \ +static_assert(offsetof(UWBP_BaseTree_C, UberGraphFrame) == 0x0004B0, "Member 'UWBP_BaseTree_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, DefaultPassive) == 0x0004B8, "Member 'UWBP_BaseTree_C::DefaultPassive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PassiveUnlock) == 0x0004C0, "Member 'UWBP_BaseTree_C::PassiveUnlock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Perk) == 0x0004C8, "Member 'UWBP_BaseTree_C::Perk' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Mastery) == 0x0004D0, "Member 'UWBP_BaseTree_C::Mastery' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Affect) == 0x0004D8, "Member 'UWBP_BaseTree_C::Affect' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Relocate) == 0x0004E0, "Member 'UWBP_BaseTree_C::Relocate' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Strike) == 0x0004E8, "Member 'UWBP_BaseTree_C::Strike' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilityUnderline_01) == 0x0004F0, "Member 'UWBP_BaseTree_C::AbilityUnderline_01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilityUnderline_02) == 0x0004F8, "Member 'UWBP_BaseTree_C::AbilityUnderline_02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilityUnderline_03) == 0x000500, "Member 'UWBP_BaseTree_C::AbilityUnderline_03' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilityUnderline_04) == 0x000508, "Member 'UWBP_BaseTree_C::AbilityUnderline_04' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilityUnderline_05) == 0x000510, "Member 'UWBP_BaseTree_C::AbilityUnderline_05' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_Main) == 0x000518, "Member 'UWBP_BaseTree_C::AffectAbility_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_S1) == 0x000520, "Member 'UWBP_BaseTree_C::AffectAbility_S1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_S2) == 0x000528, "Member 'UWBP_BaseTree_C::AffectAbility_S2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_S3) == 0x000530, "Member 'UWBP_BaseTree_C::AffectAbility_S3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_S4) == 0x000538, "Member 'UWBP_BaseTree_C::AffectAbility_S4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AffectAbility_S5) == 0x000540, "Member 'UWBP_BaseTree_C::AffectAbility_S5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Arrow) == 0x000548, "Member 'UWBP_BaseTree_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanIcon1) == 0x000550, "Member 'UWBP_BaseTree_C::ClanIcon1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanIcon2) == 0x000558, "Member 'UWBP_BaseTree_C::ClanIcon2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanIcon3) == 0x000560, "Member 'UWBP_BaseTree_C::ClanIcon3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanIcon4) == 0x000568, "Member 'UWBP_BaseTree_C::ClanIcon4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanIcon5) == 0x000570, "Member 'UWBP_BaseTree_C::ClanIcon5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_Main) == 0x000578, "Member 'UWBP_BaseTree_C::MasteryAbility_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_S1) == 0x000580, "Member 'UWBP_BaseTree_C::MasteryAbility_S1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_S2) == 0x000588, "Member 'UWBP_BaseTree_C::MasteryAbility_S2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_S3) == 0x000590, "Member 'UWBP_BaseTree_C::MasteryAbility_S3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_S4) == 0x000598, "Member 'UWBP_BaseTree_C::MasteryAbility_S4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, MasteryAbility_S5) == 0x0005A0, "Member 'UWBP_BaseTree_C::MasteryAbility_S5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Passive) == 0x0005A8, "Member 'UWBP_BaseTree_C::Passive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, Perk_Main) == 0x0005B0, "Member 'UWBP_BaseTree_C::Perk_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PerkAbility_S1) == 0x0005B8, "Member 'UWBP_BaseTree_C::PerkAbility_S1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PerkAbility_S2) == 0x0005C0, "Member 'UWBP_BaseTree_C::PerkAbility_S2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PerkAbility_S3) == 0x0005C8, "Member 'UWBP_BaseTree_C::PerkAbility_S3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PerkAbility_S4) == 0x0005D0, "Member 'UWBP_BaseTree_C::PerkAbility_S4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PerkAbility_S5) == 0x0005D8, "Member 'UWBP_BaseTree_C::PerkAbility_S5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_Main) == 0x0005E0, "Member 'UWBP_BaseTree_C::RelocateAbility_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_S1) == 0x0005E8, "Member 'UWBP_BaseTree_C::RelocateAbility_S1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_S2) == 0x0005F0, "Member 'UWBP_BaseTree_C::RelocateAbility_S2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_S3) == 0x0005F8, "Member 'UWBP_BaseTree_C::RelocateAbility_S3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_S4) == 0x000600, "Member 'UWBP_BaseTree_C::RelocateAbility_S4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, RelocateAbility_S5) == 0x000608, "Member 'UWBP_BaseTree_C::RelocateAbility_S5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowColumn) == 0x000610, "Member 'UWBP_BaseTree_C::ShadowColumn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowColumn_1) == 0x000618, "Member 'UWBP_BaseTree_C::ShadowColumn_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowColumn_2) == 0x000620, "Member 'UWBP_BaseTree_C::ShadowColumn_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowColumn_3) == 0x000628, "Member 'UWBP_BaseTree_C::ShadowColumn_3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowColumn_4) == 0x000630, "Member 'UWBP_BaseTree_C::ShadowColumn_4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowRow1) == 0x000638, "Member 'UWBP_BaseTree_C::ShadowRow1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowRow2) == 0x000640, "Member 'UWBP_BaseTree_C::ShadowRow2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowRow3) == 0x000648, "Member 'UWBP_BaseTree_C::ShadowRow3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowRow4) == 0x000650, "Member 'UWBP_BaseTree_C::ShadowRow4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ShadowRow5) == 0x000658, "Member 'UWBP_BaseTree_C::ShadowRow5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_Main) == 0x000660, "Member 'UWBP_BaseTree_C::StrikeAbility_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_S1) == 0x000668, "Member 'UWBP_BaseTree_C::StrikeAbility_S1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_S2) == 0x000670, "Member 'UWBP_BaseTree_C::StrikeAbility_S2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_S3) == 0x000678, "Member 'UWBP_BaseTree_C::StrikeAbility_S3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_S4) == 0x000680, "Member 'UWBP_BaseTree_C::StrikeAbility_S4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, StrikeAbility_S5) == 0x000688, "Member 'UWBP_BaseTree_C::StrikeAbility_S5' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, PassiveAnimExecuted) == 0x000690, "Member 'UWBP_BaseTree_C::PassiveAnimExecuted' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, CurrentFocusedNode) == 0x000698, "Member 'UWBP_BaseTree_C::CurrentFocusedNode' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, IsShadowSilkOwned) == 0x0006A0, "Member 'UWBP_BaseTree_C::IsShadowSilkOwned' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, AbilitiesAnimExecuted) == 0x0006A8, "Member 'UWBP_BaseTree_C::AbilitiesAnimExecuted' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, CurrentPassiveAnimFrame) == 0x0006B0, "Member 'UWBP_BaseTree_C::CurrentPassiveAnimFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseTree_C, ClanTextures) == 0x0006B8, "Member 'UWBP_BaseTree_C::ClanTextures' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC \ +static_assert(alignof(TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC) == 0x000001, "Wrong size on TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC, InIsOwnedDLC) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_UpdateVisibilityByDLC::InIsOwnedDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_UpdateNodeIconBP \ +static_assert(alignof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_UpdateNodeIconBP"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP) == 0x00000B, "Wrong size on TCR_AbilityNodeWidget_C_UpdateNodeIconBP"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, bIsFocused) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::bIsFocused' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, Temp_byte_Variable) == 0x000001, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, CallFunc_IsAbilityCostModified_ReturnValue) == 0x000002, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::CallFunc_IsAbilityCostModified_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, CallFunc_IsPlayerFabien_Return) == 0x000003, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, CallFunc_IsAbilityMain_ReturnValue) == 0x000004, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::CallFunc_IsAbilityMain_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, Temp_byte_Variable_1) == 0x000005, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000006, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000007, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, Temp_bool_Variable) == 0x000008, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, K2Node_Select_Default) == 0x000009, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateNodeIconBP, K2Node_SwitchEnum_CmpSuccess) == 0x00000A, "Member 'TCR_AbilityNodeWidget_C_UpdateNodeIconBP::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_UpdateEquippedAbility \ +static_assert(alignof(TCR_AbilityNodeWidget_C_UpdateEquippedAbility) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_UpdateEquippedAbility"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_UpdateEquippedAbility) == 0x000010, "Wrong size on TCR_AbilityNodeWidget_C_UpdateEquippedAbility"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateEquippedAbility, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_UpdateEquippedAbility::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateEquippedAbility, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000008, "Member 'TCR_AbilityNodeWidget_C_UpdateEquippedAbility::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_UpdateCostPanel \ +static_assert(alignof(TCR_AbilityNodeWidget_C_UpdateCostPanel) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_UpdateCostPanel"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_UpdateCostPanel) == 0x000001, "Wrong size on TCR_AbilityNodeWidget_C_UpdateCostPanel"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateCostPanel, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_UpdateCostPanel::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_UpdateAbiltyPerk \ +static_assert(alignof(TCR_AbilityNodeWidget_C_UpdateAbiltyPerk) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_UpdateAbiltyPerk"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_UpdateAbiltyPerk) == 0x000002, "Wrong size on TCR_AbilityNodeWidget_C_UpdateAbiltyPerk"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateAbiltyPerk, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_UpdateAbiltyPerk::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_UpdateAbiltyPerk, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000001, "Member 'TCR_AbilityNodeWidget_C_UpdateAbiltyPerk::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_Update_Node_Icon_Size \ +static_assert(alignof(TCR_AbilityNodeWidget_C_Update_Node_Icon_Size) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_Update_Node_Icon_Size"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_Update_Node_Icon_Size) == 0x000010, "Wrong size on TCR_AbilityNodeWidget_C_Update_Node_Icon_Size"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_Node_Icon_Size, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_Update_Node_Icon_Size::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_Node_Icon_Size, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000008, "Member 'TCR_AbilityNodeWidget_C_Update_Node_Icon_Size::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_Node_Icon_Size, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000009, "Member 'TCR_AbilityNodeWidget_C_Update_Node_Icon_Size::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_Update_DLCVisibility \ +static_assert(alignof(TCR_AbilityNodeWidget_C_Update_DLCVisibility) == 0x000004, "Wrong alignment on TCR_AbilityNodeWidget_C_Update_DLCVisibility"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_Update_DLCVisibility) == 0x000014, "Wrong size on TCR_AbilityNodeWidget_C_Update_DLCVisibility"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, IsOwned) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::IsOwned' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_GetClanValPosition_ReturnValue) == 0x000004, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_GetClanValPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_GetClanValue_ReturnValue) == 0x000008, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00000C, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x00000D, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x00000E, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_BooleanOR_ReturnValue) == 0x00000F, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_Update_DLCVisibility, CallFunc_BooleanAND_ReturnValue) == 0x000010, "Member 'TCR_AbilityNodeWidget_C_Update_DLCVisibility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_PreConstruct \ +static_assert(alignof(TCR_AbilityNodeWidget_C_PreConstruct) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_PreConstruct"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_PreConstruct) == 0x000001, "Wrong size on TCR_AbilityNodeWidget_C_PreConstruct"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_PlayBGAnim \ +static_assert(alignof(TCR_AbilityNodeWidget_C_PlayBGAnim) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_PlayBGAnim"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_PlayBGAnim) == 0x000001, "Wrong size on TCR_AbilityNodeWidget_C_PlayBGAnim"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_PlayBGAnim, CanPlay) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_PlayBGAnim::CanPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_OnMouseButtonUp \ +static_assert(alignof(TCR_AbilityNodeWidget_C_OnMouseButtonUp) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_OnMouseButtonUp"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_OnMouseButtonUp) == 0x0003A0, "Wrong size on TCR_AbilityNodeWidget_C_OnMouseButtonUp"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, MyGeometry) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, MouseEvent) == 0x000038, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, ReturnValue) == 0x0000B0, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, CallFunc_Handled_ReturnValue) == 0x000168, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, CallFunc_CanAcquire_OutCanAcquire) == 0x000220, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::CallFunc_CanAcquire_OutCanAcquire' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, CallFunc_Handled_ReturnValue_1) == 0x000228, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::CallFunc_Handled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, CallFunc_Handled_ReturnValue_2) == 0x0002E0, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::CallFunc_Handled_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonUp, CallFunc_IsFocused_ReturnValue) == 0x000398, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonUp::CallFunc_IsFocused_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_OnMouseButtonDown \ +static_assert(alignof(TCR_AbilityNodeWidget_C_OnMouseButtonDown) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_OnMouseButtonDown"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_OnMouseButtonDown) == 0x000568, "Wrong size on TCR_AbilityNodeWidget_C_OnMouseButtonDown"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, MyGeometry) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, MouseEvent) == 0x000038, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, ReturnValue) == 0x0000B0, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, Temp_delegate_Variable) == 0x000168, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000178, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Handled_ReturnValue) == 0x000180, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_GetClanValue_ReturnValue) == 0x000238, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000240, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Map_Find_Value) == 0x000248, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Map_Find_ReturnValue) == 0x000250, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000251, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, Temp_delegate_Variable_1) == 0x000254, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Handled_ReturnValue_1) == 0x000268, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Handled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Handled_ReturnValue_2) == 0x000320, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Handled_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, Temp_delegate_Variable_2) == 0x0003D8, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0003E8, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_CanAcquire_OutCanAcquire) == 0x0003E9, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_CanAcquire_OutCanAcquire' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Handled_ReturnValue_3) == 0x0003F0, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Handled_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_Handled_ReturnValue_4) == 0x0004A8, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_Handled_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnMouseButtonDown, CallFunc_IsFocused_ReturnValue) == 0x000560, "Member 'TCR_AbilityNodeWidget_C_OnMouseButtonDown::CallFunc_IsFocused_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_OnKeyUp \ +static_assert(alignof(TCR_AbilityNodeWidget_C_OnKeyUp) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_OnKeyUp"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_OnKeyUp) == 0x000438, "Wrong size on TCR_AbilityNodeWidget_C_OnKeyUp"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, MyGeometry) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, InKeyEvent) == 0x000038, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, ReturnValue) == 0x000078, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_Handled_ReturnValue) == 0x000130, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_GetKey_ReturnValue) == 0x0001E8, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000200, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000201, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_CanAcquire_OutCanAcquire) == 0x000202, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_CanAcquire_OutCanAcquire' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_BooleanOR_ReturnValue) == 0x000203, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_Handled_ReturnValue_1) == 0x000208, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_Handled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_Handled_ReturnValue_2) == 0x0002C0, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_Handled_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_Unhandled_ReturnValue) == 0x000378, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_Unhandled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyUp, CallFunc_IsFocused_ReturnValue) == 0x000430, "Member 'TCR_AbilityNodeWidget_C_OnKeyUp::CallFunc_IsFocused_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_OnKeyDown \ +static_assert(alignof(TCR_AbilityNodeWidget_C_OnKeyDown) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_OnKeyDown"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_OnKeyDown) == 0x000610, "Wrong size on TCR_AbilityNodeWidget_C_OnKeyDown"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, MyGeometry) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, InKeyEvent) == 0x000038, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, ReturnValue) == 0x000078, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000130, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_GetKey_ReturnValue) == 0x000138, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000150, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000151, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_GetClanValue_ReturnValue) == 0x000154, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_BooleanOR_ReturnValue) == 0x000158, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Map_Find_Value) == 0x000160, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Map_Find_ReturnValue) == 0x000168, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue) == 0x000170, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, Temp_delegate_Variable) == 0x000228, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue_1) == 0x000238, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue_2) == 0x0002F0, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, Temp_delegate_Variable_1) == 0x0003A8, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, Temp_delegate_Variable_2) == 0x0003B8, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0003C8, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_CanAcquire_OutCanAcquire) == 0x0003C9, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_CanAcquire_OutCanAcquire' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue_3) == 0x0003D0, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Handled_ReturnValue_4) == 0x000488, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Handled_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_IsFocused_ReturnValue) == 0x000540, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_IsFocused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_Unhandled_ReturnValue) == 0x000548, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_Unhandled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000600, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_OnKeyDown, CallFunc_IsAbilityEquipped_ReturnValue) == 0x000608, "Member 'TCR_AbilityNodeWidget_C_OnKeyDown::CallFunc_IsAbilityEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget \ +static_assert(alignof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget) == 0x0000F0, "Wrong size on TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, EntryPoint) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_delegate_Variable) == 0x000008, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_bool_Has_Been_Initd_Variable) == 0x000018, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_PlayAnimation_ReturnValue) == 0x000020, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_GetClanValue_ReturnValue) == 0x000028, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_GetClanValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_Event_IsDesignTime) == 0x00002C, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_Map_Find_Value) == 0x000030, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_Map_Find_ReturnValue) == 0x000038, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_PlayAnimationForward_ReturnValue) == 0x000040, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000048, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000050, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_ComponentBoundEvent_Button_3) == 0x000058, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_ComponentBoundEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_DynamicCast_AsHera_Button_Base) == 0x000060, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_DynamicCast_AsHera_Button_Base' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_ComponentBoundEvent_Button_2) == 0x000070, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_ComponentBoundEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_DynamicCast_AsHera_Button_Base_1) == 0x000078, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_DynamicCast_AsHera_Button_Base_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_delegate_Variable_1) == 0x000084, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000094, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000098, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_delegate_Variable_2) == 0x0000A0, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_delegate_Variable_3) == 0x0000B0, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_bool_IsClosed_Variable) == 0x0000C0, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_SwitchEnum_CmpSuccess) == 0x0000C1, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, Temp_delegate_Variable_4) == 0x0000C4, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_IsFocused_ReturnValue) == 0x0000D4, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_IsFocused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_ComponentBoundEvent_Button_1) == 0x0000D8, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_ComponentBoundEvent_Button) == 0x0000E0, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, CallFunc_IsSelected_ReturnValue) == 0x0000E8, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::CallFunc_IsSelected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget, K2Node_Event_InIsOwnedDLC) == 0x0000E9, "Member 'TCR_AbilityNodeWidget_C_ExecuteUbergraph_TCR_AbilityNodeWidget::K2Node_Event_InIsOwnedDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_CanvasSlotSetUp \ +static_assert(alignof(TCR_AbilityNodeWidget_C_CanvasSlotSetUp) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_CanvasSlotSetUp"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_CanvasSlotSetUp) == 0x000028, "Wrong size on TCR_AbilityNodeWidget_C_CanvasSlotSetUp"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_CanvasSlotSetUp, K2Node_MakeStruct_Anchors) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_CanvasSlotSetUp::K2Node_MakeStruct_Anchors' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_CanvasSlotSetUp, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000020, "Member 'TCR_AbilityNodeWidget_C_CanvasSlotSetUp::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_CanAcquire \ +static_assert(alignof(TCR_AbilityNodeWidget_C_CanAcquire) == 0x000001, "Wrong alignment on TCR_AbilityNodeWidget_C_CanAcquire"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_CanAcquire) == 0x000003, "Wrong size on TCR_AbilityNodeWidget_C_CanAcquire"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_CanAcquire, OutCanAcquire) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_CanAcquire::OutCanAcquire' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_CanAcquire, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000001, "Member 'TCR_AbilityNodeWidget_C_CanAcquire::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_CanAcquire, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'TCR_AbilityNodeWidget_C_CanAcquire::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'TCR_AbilityNodeWidget_C_BndEvt__TCR_AbilityNodeWidget_NodeButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_AbilityNodeWidget_C \ +static_assert(alignof(UTCR_AbilityNodeWidget_C) == 0x000010, "Wrong alignment on UTCR_AbilityNodeWidget_C"); \ +static_assert(sizeof(UTCR_AbilityNodeWidget_C) == 0x000770, "Wrong size on UTCR_AbilityNodeWidget_C"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, UberGraphFrame) == 0x000388, "Member 'UTCR_AbilityNodeWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, FillBarAnim) == 0x000390, "Member 'UTCR_AbilityNodeWidget_C::FillBarAnim' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, OnStateChangedAnim) == 0x000398, "Member 'UTCR_AbilityNodeWidget_C::OnStateChangedAnim' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, Ability_shape_Line) == 0x0003A0, "Member 'UTCR_AbilityNodeWidget_C::Ability_shape_Line' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, AbilityFILL) == 0x0003A8, "Member 'UTCR_AbilityNodeWidget_C::AbilityFILL' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, AbilitySizeBox) == 0x0003B0, "Member 'UTCR_AbilityNodeWidget_C::AbilitySizeBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, CostBg) == 0x0003B8, "Member 'UTCR_AbilityNodeWidget_C::CostBg' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, CostPanel) == 0x0003C0, "Member 'UTCR_AbilityNodeWidget_C::CostPanel' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, FillBar) == 0x0003C8, "Member 'UTCR_AbilityNodeWidget_C::FillBar' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, Lock) == 0x0003D0, "Member 'UTCR_AbilityNodeWidget_C::Lock' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, ReducedCostIcon) == 0x0003D8, "Member 'UTCR_AbilityNodeWidget_C::ReducedCostIcon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, NavParent) == 0x0003E0, "Member 'UTCR_AbilityNodeWidget_C::NavParent' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, ActiveStyle) == 0x0003F0, "Member 'UTCR_AbilityNodeWidget_C::ActiveStyle' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, bCanPlay) == 0x000680, "Member 'UTCR_AbilityNodeWidget_C::bCanPlay' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, snap) == 0x000681, "Member 'UTCR_AbilityNodeWidget_C::snap' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, PlayerClan) == 0x000688, "Member 'UTCR_AbilityNodeWidget_C::PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, ClanAudioPreviewTree) == 0x000690, "Member 'UTCR_AbilityNodeWidget_C::ClanAudioPreviewTree' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, ProgressBarTexture) == 0x0006E0, "Member 'UTCR_AbilityNodeWidget_C::ProgressBarTexture' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, AnimOutline) == 0x0006E8, "Member 'UTCR_AbilityNodeWidget_C::AnimOutline' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, AnimFill) == 0x0006F0, "Member 'UTCR_AbilityNodeWidget_C::AnimFill' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, bDLCPurchased) == 0x0006F8, "Member 'UTCR_AbilityNodeWidget_C::bDLCPurchased' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, OnAbilityFocusReceived) == 0x000700, "Member 'UTCR_AbilityNodeWidget_C::OnAbilityFocusReceived' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, OnAbilityFocusLost) == 0x000710, "Member 'UTCR_AbilityNodeWidget_C::OnAbilityFocusLost' has a wrong offset!"); \ +static_assert(offsetof(UTCR_AbilityNodeWidget_C, ClanAudioAbilityEquip) == 0x000720, "Member 'UTCR_AbilityNodeWidget_C::ClanAudioAbilityEquip' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowMasqueradeHUD_C \ +static_assert(alignof(UShowMasqueradeHUD_C) == 0x000008, "Wrong alignment on UShowMasqueradeHUD_C"); \ +static_assert(sizeof(UShowMasqueradeHUD_C) == 0x000090, "Wrong size on UShowMasqueradeHUD_C"); \ + +#define DUMPER7_ASSERTS_LightUtilities_C_AudioToggle \ +static_assert(alignof(LightUtilities_C_AudioToggle) == 0x000008, "Wrong alignment on LightUtilities_C_AudioToggle"); \ +static_assert(sizeof(LightUtilities_C_AudioToggle) == 0x000048, "Wrong size on LightUtilities_C_AudioToggle"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, AK_Game_Object) == 0x000000, "Member 'LightUtilities_C_AudioToggle::AK_Game_Object' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, Audio_On) == 0x000008, "Member 'LightUtilities_C_AudioToggle::Audio_On' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, AK_Audio_Event) == 0x000010, "Member 'LightUtilities_C_AudioToggle::AK_Audio_Event' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, __WorldContext) == 0x000018, "Member 'LightUtilities_C_AudioToggle::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, Temp_struct_Variable) == 0x000020, "Member 'LightUtilities_C_AudioToggle::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, Temp_delegate_Variable) == 0x000030, "Member 'LightUtilities_C_AudioToggle::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_AudioToggle, CallFunc_PostAkEvent_ReturnValue) == 0x000040, "Member 'LightUtilities_C_AudioToggle::CallFunc_PostAkEvent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightUtilities_C_CacheLightComponents \ +static_assert(alignof(LightUtilities_C_CacheLightComponents) == 0x000008, "Wrong alignment on LightUtilities_C_CacheLightComponents"); \ +static_assert(sizeof(LightUtilities_C_CacheLightComponents) == 0x000188, "Wrong size on LightUtilities_C_CacheLightComponents"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, LightComponents) == 0x000000, "Member 'LightUtilities_C_CacheLightComponents::LightComponents' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, __WorldContext) == 0x000010, "Member 'LightUtilities_C_CacheLightComponents::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CachedIntensity) == 0x000018, "Member 'LightUtilities_C_CacheLightComponents::CachedIntensity' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CachedTemperature) == 0x000068, "Member 'LightUtilities_C_CacheLightComponents::CachedTemperature' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, LightComponentTemperatureCache) == 0x0000B8, "Member 'LightUtilities_C_CacheLightComponents::LightComponentTemperatureCache' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, LightComponentIntensityCache) == 0x000108, "Member 'LightUtilities_C_CacheLightComponents::LightComponentIntensityCache' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Array_Length_ReturnValue) == 0x000158, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, Temp_int_Array_Index_Variable) == 0x00015C, "Member 'LightUtilities_C_CacheLightComponents::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, Temp_int_Loop_Counter_Variable) == 0x000160, "Member 'LightUtilities_C_CacheLightComponents::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Array_Get_Item) == 0x000168, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Less_IntInt_ReturnValue) == 0x000170, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Add_IntInt_ReturnValue) == 0x000174, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Map_Add_Value_ImplicitCast) == 0x000178, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Map_Add_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_CacheLightComponents, CallFunc_Map_Add_Value_ImplicitCast_1) == 0x000180, "Member 'LightUtilities_C_CacheLightComponents::CallFunc_Map_Add_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightUtilities_C_ConvertTemperatureToColour \ +static_assert(alignof(LightUtilities_C_ConvertTemperatureToColour) == 0x000008, "Wrong alignment on LightUtilities_C_ConvertTemperatureToColour"); \ +static_assert(sizeof(LightUtilities_C_ConvertTemperatureToColour) == 0x000128, "Wrong size on LightUtilities_C_ConvertTemperatureToColour"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, Temperature) == 0x000000, "Member 'LightUtilities_C_ConvertTemperatureToColour::Temperature' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, __WorldContext) == 0x000008, "Member 'LightUtilities_C_ConvertTemperatureToColour::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, LinearColor) == 0x000010, "Member 'LightUtilities_C_ConvertTemperatureToColour::LinearColor' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, Blue) == 0x000020, "Member 'LightUtilities_C_ConvertTemperatureToColour::Blue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, Green) == 0x000028, "Member 'LightUtilities_C_ConvertTemperatureToColour::Green' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, Red) == 0x000030, "Member 'LightUtilities_C_ConvertTemperatureToColour::Red' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, Kelvin) == 0x000038, "Member 'LightUtilities_C_ConvertTemperatureToColour::Kelvin' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000040, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x000050, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Divide_DoubleDouble_ReturnValue_3) == 0x000058, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Divide_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, K2Node_MakeStruct_LinearColor) == 0x000060, "Member 'LightUtilities_C_ConvertTemperatureToColour::K2Node_MakeStruct_LinearColor' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000070, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000078, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000080, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Loge_ReturnValue) == 0x000088, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Loge_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000090, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000098, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_FClamp_ReturnValue) == 0x0000A0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0000A8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0000B0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000B8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_FClamp_ReturnValue_1) == 0x0000C0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Loge_ReturnValue_1) == 0x0000C8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Loge_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000D0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Subtract_DoubleDouble_ReturnValue_3) == 0x0000D8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Subtract_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000E0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_FClamp_ReturnValue_2) == 0x0000E8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Subtract_DoubleDouble_ReturnValue_4) == 0x0000F0, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Subtract_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1) == 0x0000F8, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000100, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_LessEqual_DoubleDouble_ReturnValue_2) == 0x000108, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_LessEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, CallFunc_FClamp_ReturnValue_3) == 0x000110, "Member 'LightUtilities_C_ConvertTemperatureToColour::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, K2Node_MakeStruct_B_ImplicitCast) == 0x000118, "Member 'LightUtilities_C_ConvertTemperatureToColour::K2Node_MakeStruct_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, K2Node_MakeStruct_R_ImplicitCast) == 0x00011C, "Member 'LightUtilities_C_ConvertTemperatureToColour::K2Node_MakeStruct_R_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_ConvertTemperatureToColour, K2Node_MakeStruct_G_ImplicitCast) == 0x000120, "Member 'LightUtilities_C_ConvertTemperatureToColour::K2Node_MakeStruct_G_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightUtilities_C_EmissiveToggle \ +static_assert(alignof(LightUtilities_C_EmissiveToggle) == 0x000008, "Wrong alignment on LightUtilities_C_EmissiveToggle"); \ +static_assert(sizeof(LightUtilities_C_EmissiveToggle) == 0x000078, "Wrong size on LightUtilities_C_EmissiveToggle"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, OnOff) == 0x000000, "Member 'LightUtilities_C_EmissiveToggle::OnOff' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, StaticMesh) == 0x000008, "Member 'LightUtilities_C_EmissiveToggle::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, Emissive_Intensity) == 0x000010, "Member 'LightUtilities_C_EmissiveToggle::Emissive_Intensity' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, Emissive_Tint) == 0x000018, "Member 'LightUtilities_C_EmissiveToggle::Emissive_Tint' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, __WorldContext) == 0x000028, "Member 'LightUtilities_C_EmissiveToggle::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, Emissive) == 0x000030, "Member 'LightUtilities_C_EmissiveToggle::Emissive' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, Temp_int_Loop_Counter_Variable) == 0x000038, "Member 'LightUtilities_C_EmissiveToggle::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_GetMaterials_ReturnValue) == 0x000040, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_GetMaterials_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, Temp_int_Array_Index_Variable) == 0x000054, "Member 'LightUtilities_C_EmissiveToggle::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_Array_Get_Item) == 0x000060, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000068, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_EmissiveToggle, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000074, "Member 'LightUtilities_C_EmissiveToggle::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LightUtilities_C_LightToggle \ +static_assert(alignof(LightUtilities_C_LightToggle) == 0x000008, "Wrong alignment on LightUtilities_C_LightToggle"); \ +static_assert(sizeof(LightUtilities_C_LightToggle) == 0x000090, "Wrong size on LightUtilities_C_LightToggle"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Actor) == 0x000000, "Member 'LightUtilities_C_LightToggle::Actor' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, LightsOn) == 0x000008, "Member 'LightUtilities_C_LightToggle::LightsOn' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Emissive_Intensity) == 0x000010, "Member 'LightUtilities_C_LightToggle::Emissive_Intensity' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Emissive_Tint) == 0x000018, "Member 'LightUtilities_C_LightToggle::Emissive_Tint' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, __WorldContext) == 0x000028, "Member 'LightUtilities_C_LightToggle::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000030, "Member 'LightUtilities_C_LightToggle::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000040, "Member 'LightUtilities_C_LightToggle::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'LightUtilities_C_LightToggle::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Array_Length_ReturnValue_1) == 0x000054, "Member 'LightUtilities_C_LightToggle::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'LightUtilities_C_LightToggle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Temp_int_Array_Index_Variable) == 0x00005C, "Member 'LightUtilities_C_LightToggle::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Array_Get_Item) == 0x000060, "Member 'LightUtilities_C_LightToggle::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Temp_int_Loop_Counter_Variable) == 0x000068, "Member 'LightUtilities_C_LightToggle::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Less_IntInt_ReturnValue) == 0x00006C, "Member 'LightUtilities_C_LightToggle::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Add_IntInt_ReturnValue) == 0x000070, "Member 'LightUtilities_C_LightToggle::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Temp_int_Loop_Counter_Variable_1) == 0x000074, "Member 'LightUtilities_C_LightToggle::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, Temp_int_Array_Index_Variable_1) == 0x000078, "Member 'LightUtilities_C_LightToggle::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Less_IntInt_ReturnValue_1) == 0x00007C, "Member 'LightUtilities_C_LightToggle::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'LightUtilities_C_LightToggle::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(LightUtilities_C_LightToggle, CallFunc_Add_IntInt_ReturnValue_1) == 0x000088, "Member 'LightUtilities_C_LightToggle::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULightUtilities_C \ +static_assert(alignof(ULightUtilities_C) == 0x000008, "Wrong alignment on ULightUtilities_C"); \ +static_assert(sizeof(ULightUtilities_C) == 0x000028, "Wrong size on ULightUtilities_C"); \ + +#define DUMPER7_ASSERTS_BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase \ +static_assert(alignof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase) == 0x000008, "Wrong alignment on BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase"); \ +static_assert(sizeof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase) == 0x000048, "Wrong size on BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, EntryPoint) == 0x000000, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, Temp_delegate_Variable) == 0x000004, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, K2Node_SwitchEnum_CmpSuccess) == 0x000014, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, K2Node_SwitchEnum_CmpSuccess_1) == 0x000015, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, Temp_delegate_Variable_1) == 0x000018, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, CallFunc_IsValid_ReturnValue_1) == 0x000029, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, K2Node_Event_InInteractingActor) == 0x000030, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::K2Node_Event_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase, Temp_delegate_Variable_2) == 0x000038, "Member 'BP_InteractableQuestActorBase_C_ExecuteUbergraph_BP_InteractableQuestActorBase::Temp_delegate_Variable_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_InteractableQuestActorBase_C_GetItemState \ +static_assert(alignof(BP_InteractableQuestActorBase_C_GetItemState) == 0x000001, "Wrong alignment on BP_InteractableQuestActorBase_C_GetItemState"); \ +static_assert(sizeof(BP_InteractableQuestActorBase_C_GetItemState) == 0x000001, "Wrong size on BP_InteractableQuestActorBase_C_GetItemState"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_InteractableQuestActorBase_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_InteractableQuestActorBase_C_OnInteractionPerformed \ +static_assert(alignof(BP_InteractableQuestActorBase_C_OnInteractionPerformed) == 0x000008, "Wrong alignment on BP_InteractableQuestActorBase_C_OnInteractionPerformed"); \ +static_assert(sizeof(BP_InteractableQuestActorBase_C_OnInteractionPerformed) == 0x000008, "Wrong size on BP_InteractableQuestActorBase_C_OnInteractionPerformed"); \ +static_assert(offsetof(BP_InteractableQuestActorBase_C_OnInteractionPerformed, InInteractingActor) == 0x000000, "Member 'BP_InteractableQuestActorBase_C_OnInteractionPerformed::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_InteractableQuestActorBase_C \ +static_assert(alignof(ABP_InteractableQuestActorBase_C) == 0x000008, "Wrong alignment on ABP_InteractableQuestActorBase_C"); \ +static_assert(sizeof(ABP_InteractableQuestActorBase_C) == 0x000328, "Wrong size on ABP_InteractableQuestActorBase_C"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, UberGraphFrame) == 0x0002F8, "Member 'ABP_InteractableQuestActorBase_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, InteractionCollider) == 0x000300, "Member 'ABP_InteractableQuestActorBase_C::InteractionCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, HeraAudio) == 0x000308, "Member 'ABP_InteractableQuestActorBase_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, IdleSound) == 0x000310, "Member 'ABP_InteractableQuestActorBase_C::IdleSound' has a wrong offset!"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, InteractButton) == 0x000318, "Member 'ABP_InteractableQuestActorBase_C::InteractButton' has a wrong offset!"); \ +static_assert(offsetof(ABP_InteractableQuestActorBase_C, Idle_Sound_Stop) == 0x000320, "Member 'ABP_InteractableQuestActorBase_C::Idle_Sound_Stop' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ConvertEntitiesToHighLOD \ +static_assert(alignof(BP_Explosion_C_ConvertEntitiesToHighLOD) == 0x000008, "Wrong alignment on BP_Explosion_C_ConvertEntitiesToHighLOD"); \ +static_assert(sizeof(BP_Explosion_C_ConvertEntitiesToHighLOD) == 0x000040, "Wrong size on BP_Explosion_C_ConvertEntitiesToHighLOD"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, MassActors) == 0x000000, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::MassActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Array_Length_ReturnValue) == 0x000010, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, Temp_int_Array_Index_Variable) == 0x000014, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000028, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_GetMassEntityHandle_ReturnValue) == 0x000030, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Less_IntInt_ReturnValue) == 0x000031, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Array_Add_ReturnValue) == 0x000038, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertEntitiesToHighLOD, CallFunc_Array_Contains_ReturnValue) == 0x00003C, "Member 'BP_Explosion_C_ConvertEntitiesToHighLOD::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ConvertMassToHighLOD \ +static_assert(alignof(BP_Explosion_C_ConvertMassToHighLOD) == 0x000008, "Wrong alignment on BP_Explosion_C_ConvertMassToHighLOD"); \ +static_assert(sizeof(BP_Explosion_C_ConvertMassToHighLOD) == 0x000088, "Wrong size on BP_Explosion_C_ConvertMassToHighLOD"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, ConvertedAny) == 0x000000, "Member 'BP_Explosion_C_ConvertMassToHighLOD::ConvertedAny' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, Temp_object_Variable) == 0x000008, "Member 'BP_Explosion_C_ConvertMassToHighLOD::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_BreakVector2D_X) == 0x000018, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_BreakVector2D_Y) == 0x000020, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_BreakVector2D_X_1) == 0x000028, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_BreakVector2D_Y_1) == 0x000030, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_FMax_ReturnValue) == 0x000050, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, K2Node_MakeArray_Array) == 0x000058, "Member 'BP_Explosion_C_ConvertMassToHighLOD::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_FMax_ReturnValue_1) == 0x000068, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_SphereOverlapActors_OutActors) == 0x000070, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_SphereOverlapActors_ReturnValue) == 0x000080, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ConvertMassToHighLOD, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x000084, "Member 'BP_Explosion_C_ConvertMassToHighLOD::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_DistanceToPlayer \ +static_assert(alignof(BP_Explosion_C_DistanceToPlayer) == 0x000008, "Wrong alignment on BP_Explosion_C_DistanceToPlayer"); \ +static_assert(sizeof(BP_Explosion_C_DistanceToPlayer) == 0x000048, "Wrong size on BP_Explosion_C_DistanceToPlayer"); \ +static_assert(offsetof(BP_Explosion_C_DistanceToPlayer, ReturnValue) == 0x000000, "Member 'BP_Explosion_C_DistanceToPlayer::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_DistanceToPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_Explosion_C_DistanceToPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_DistanceToPlayer, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_Explosion_C_DistanceToPlayer::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_DistanceToPlayer, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'BP_Explosion_C_DistanceToPlayer::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_DistanceToPlayer, CallFunc_Vector_Distance_ReturnValue) == 0x000040, "Member 'BP_Explosion_C_DistanceToPlayer::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ExecuteUbergraph_BP_Explosion \ +static_assert(alignof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion) == 0x000010, "Wrong alignment on BP_Explosion_C_ExecuteUbergraph_BP_Explosion"); \ +static_assert(sizeof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion) == 0x001320, "Wrong size on BP_Explosion_C_ExecuteUbergraph_BP_Explosion"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, EntryPoint) == 0x000000, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_struct_Variable) == 0x000008, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_ApplyDamageParams) == 0x000028, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_struct_Variable_1) == 0x000050, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SpawnObject_ReturnValue) == 0x000070, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Loop_Counter_Variable) == 0x000078, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_IntInt_ReturnValue) == 0x00007C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Array_Index_Variable) == 0x000080, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Loop_Counter_Variable_1) == 0x000084, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_IntInt_ReturnValue_1) == 0x000088, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Loop_Counter_Variable_2) == 0x00008C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_IntInt_ReturnValue_2) == 0x000090, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Array_Index_Variable_1) == 0x000094, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable) == 0x000098, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Array_Index_Variable_2) == 0x00009C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetInstigator_ReturnValue) == 0x0000A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetInstigator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue) == 0x0000A8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerController_ReturnValue) == 0x0000B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BooleanAND_ReturnValue) == 0x0000B8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_Event_EndPlayReason) == 0x0000B9, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Loop_Counter_Variable_3) == 0x0000BC, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Get_Item) == 0x0000C0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_IntInt_ReturnValue_3) == 0x0000C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Length_ReturnValue) == 0x0000CC, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ConvertMassToHighLOD_ConvertedAny) == 0x0000D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ConvertMassToHighLOD_ConvertedAny' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_IntInt_ReturnValue) == 0x0000D1, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_object_Variable) == 0x0000D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Get_Item_1) == 0x0000E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Length_ReturnValue_1) == 0x0000F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_IntInt_ReturnValue_1) == 0x000110, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ExplosionDirection_Dir) == 0x000118, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ExplosionDirection_Dir' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_X) == 0x000130, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_Y) == 0x000138, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_Z) == 0x000140, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000148, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeVector_ReturnValue) == 0x000160, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue) == 0x000178, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Normal_ReturnValue) == 0x000180, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000198, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerController_ReturnValue_1) == 0x0001B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerController_ReturnValue_2) == 0x0001B8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_1) == 0x0001C0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Length_ReturnValue_2) == 0x0001C4, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_RandomFloatInRange_ReturnValue) == 0x0001C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SpawnObject_ReturnValue_1) == 0x0001D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SpawnObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeRotator_ReturnValue) == 0x0001D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_GameplayEventData) == 0x0001F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_RandomInteger_ReturnValue) == 0x0002A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_RandomInteger_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0002A8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0002B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0002C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerPawn_ReturnValue) == 0x0002D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_2) == 0x0002D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0002E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_DynamicCast_bSuccess) == 0x0002F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0002F1, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_3) == 0x0002F2, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetActorScale3D_ReturnValue) == 0x0002F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetActorScale3D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable_1) == 0x000310, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000318, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array) == 0x000330, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable_2) == 0x000340, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetActorUpVector_ReturnValue) == 0x000348, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetActorUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000360, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000378, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000380, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000398, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Array_Index_Variable_3) == 0x0003B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ApplyMovableForceAtLocation_ReturnValue) == 0x0003B8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ApplyMovableForceAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Get_Item_2) == 0x0003C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Length_ReturnValue_3) == 0x0003E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_IntInt_ReturnValue_2) == 0x0003EC, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue) == 0x0003F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0003F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000400, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_object_Variable_1) == 0x000408, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000418, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000420, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ExplosionDirection_Dir_1) == 0x000438, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ExplosionDirection_Dir_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000450, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000468, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_VectorVector_ReturnValue) == 0x0004A8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x0004C0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_1) == 0x0004C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0004D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X) == 0x0004D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y) == 0x0004E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x0004E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerCharacter_ReturnValue_3) == 0x0004F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ExplosionDirection_Dir_2) == 0x0004F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ExplosionDirection_Dir_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_4) == 0x000510, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerCharacter_ReturnValue_4) == 0x000518, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000520, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_DynamicCast_bSuccess_1) == 0x000530, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000531, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_1) == 0x000538, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_1) == 0x000540, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SpawnObject_ReturnValue_2) == 0x000548, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SpawnObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_2) == 0x000550, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_3) == 0x000558, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000560, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000568, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000570, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000578, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000580, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeVector_ReturnValue_1) == 0x000598, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0005B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0005C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0005D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_4) == 0x0005E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_2) == 0x0005F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_2) == 0x0005F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000600, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000608, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_3) == 0x000610, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_3) == 0x000618, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_5) == 0x000620, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000628, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000630, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ExplosionOcclusionCheck_SeesVictim) == 0x000631, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ExplosionOcclusionCheck_SeesVictim' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_4) == 0x000638, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_4) == 0x000640, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_5) == 0x000648, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_5) == 0x000650, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_DistanceToPlayer_ReturnValue_6) == 0x000658, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_DistanceToPlayer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_FMax_ReturnValue) == 0x000660, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_ReturnValue_4) == 0x000668, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000670, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000688, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetProperty_ReturnValue) == 0x0006A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0006A8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0006C0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x0006C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x0007B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_bBlockingHit) == 0x0007B1, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_bInitialOverlap) == 0x0007B2, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Time) == 0x0007B4, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Distance) == 0x0007B8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Location) == 0x0007C0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ImpactPoint) == 0x0007D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Normal) == 0x0007F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ImpactNormal) == 0x000808, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_PhysMat) == 0x000820, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitActor) == 0x000828, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitComponent) == 0x000830, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitBoneName) == 0x000838, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_BoneName) == 0x000840, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitItem) == 0x000848, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ElementIndex) == 0x00084C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_FaceIndex) == 0x000850, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_TraceStart) == 0x000858, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_TraceEnd) == 0x000870, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_VectorToLinearColor_ReturnValue) == 0x000888, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_VectorToLinearColor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000898, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ComposeRotators_ReturnValue) == 0x0008B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetInstigator_ReturnValue_1) == 0x0008C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetInstigator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x0008D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_5) == 0x0008D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_struct_Variable_2) == 0x0008E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_struct_Variable_3) == 0x000900, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_6) == 0x000920, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_6) == 0x000928, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable_3) == 0x000930, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_7) == 0x000938, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_7) == 0x000940, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x000948, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Get_Item_3) == 0x000960, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Length_ReturnValue_4) == 0x000968, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x00096C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_IntInt_ReturnValue_3) == 0x00096D, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BooleanAND_ReturnValue_1) == 0x00096E, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000970, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000998, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ExplosionDirection_Dir_3) == 0x0009B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ExplosionDirection_Dir_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Vector_Distance_ReturnValue) == 0x0009C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_X_1) == 0x0009D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_Y_1) == 0x0009D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector_Z_1) == 0x0009E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0009E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeVector_ReturnValue_2) == 0x0009F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Normal_ReturnValue_1) == 0x000A08, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_3) == 0x000A20, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x000A28, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000A40, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x000A48, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_8) == 0x000A60, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_8) == 0x000A68, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Vector_Distance_ReturnValue_1) == 0x000A70, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_4) == 0x000A78, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000A80, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000A88, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_Struct_KnockBackParameters_1) == 0x000A90, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_Struct_KnockBackParameters_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000AD0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_9) == 0x000AD8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_9) == 0x000AE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array_1) == 0x000AE8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue_2) == 0x000AF8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array_2) == 0x000B00, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_Select_Default) == 0x000B10, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_GameplayEventData_1) == 0x000B30, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_real_Variable) == 0x000BE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_10) == 0x000BE8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_10' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_10) == 0x000BF0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_10' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_11) == 0x000BF8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_11' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_11) == 0x000C00, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_11' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x000C08, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_FMax_ReturnValue_1) == 0x000C20, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_FMax_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_FMax_ReturnValue_2) == 0x000C28, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_FMax_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_OutActors) == 0x000C30, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_ReturnValue) == 0x000C40, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_10) == 0x000C48, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_11) == 0x000C60, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable_4) == 0x000C78, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array_3) == 0x000C80, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_real_Variable_1) == 0x000C90, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_bool_Variable_5) == 0x000C98, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetActorUpVector_ReturnValue_1) == 0x000CA0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetActorUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_Select_Default_1) == 0x000CB8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000CC0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000CD8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x000CE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000CF8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_12) == 0x000D00, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetTransform_ReturnValue) == 0x000D20, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000D80, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakTransform_Location) == 0x000D98, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakTransform_Rotation) == 0x000DB0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakTransform_Scale) == 0x000DC8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_VectorVector_ReturnValue_4) == 0x000DE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereTraceSingleForObjects_OutHit_1) == 0x000DF8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereTraceSingleForObjects_OutHit_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereTraceSingleForObjects_ReturnValue_1) == 0x000EE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereTraceSingleForObjects_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000EE1, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_bBlockingHit_1) == 0x000EE2, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x000EE3, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Time_1) == 0x000EE4, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Distance_1) == 0x000EE8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Location_1) == 0x000EF0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000F08, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_Normal_1) == 0x000F20, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000F38, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_PhysMat_1) == 0x000F50, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitActor_1) == 0x000F58, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitComponent_1) == 0x000F60, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitBoneName_1) == 0x000F68, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_BoneName_1) == 0x000F70, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_HitItem_1) == 0x000F78, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_ElementIndex_1) == 0x000F7C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_FaceIndex_1) == 0x000F80, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_TraceStart_1) == 0x000F88, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakHitResult_TraceEnd_1) == 0x000FA0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeRotFromZ_ReturnValue) == 0x000FB8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeRotFromZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_Select_Default_2) == 0x000FD0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ConvertMassToHighLOD_ConvertedAny_1) == 0x000FD8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ConvertMassToHighLOD_ConvertedAny_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000FE0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Loop_Counter_Variable_4) == 0x000FE8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_CreateDelegate_OutputDelegate) == 0x000FEC, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue) == 0x001000, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_SetTimerForNextTickDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_IntInt_ReturnValue_4) == 0x001008, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Add_IntInt_ReturnValue_4) == 0x00100C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, Temp_int_Array_Index_Variable_4) == 0x001010, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Array_Get_Item_4) == 0x001018, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_13) == 0x001020, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ApplyDamage_ReturnValue) == 0x001038, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Vector_Distance_ReturnValue_2) == 0x001040, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Vector_Distance_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Less_DoubleDouble_ReturnValue) == 0x001048, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetInstigator_ReturnValue_2) == 0x001050, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetInstigator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x001058, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_12) == 0x001060, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_12' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_12) == 0x001068, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_12' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_IsValid_ReturnValue_6) == 0x001070, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BooleanAND_ReturnValue_2) == 0x001071, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_13) == 0x001078, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_13' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_13) == 0x001080, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_13' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_14) == 0x001088, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_ApplyDamageParams_2) == 0x0010A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_ApplyDamageParams_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Vector_Distance_ReturnValue_3) == 0x0010C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Vector_Distance_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x0010D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue_3) == 0x0010D1, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_5) == 0x0010D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x0010E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_ReturnValue_2) == 0x0010E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0010F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_14) == 0x0010F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_14' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_14) == 0x001100, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_14' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_15) == 0x001108, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Vector_Distance_ReturnValue_4) == 0x001120, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Vector_Distance_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MapRangeClamped_ReturnValue_6) == 0x001128, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MapRangeClamped_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue_4) == 0x001130, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x001138, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_Struct_KnockBackParameters_2) == 0x001140, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_Struct_KnockBackParameters_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_15) == 0x001180, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_15' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_15) == 0x001188, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_15' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x001190, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_LessEqual_DoubleDouble_ReturnValue_5) == 0x001198, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_LessEqual_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array_4) == 0x0011A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_Select_Default_3) == 0x0011B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeArray_Array_5) == 0x0011D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeArray_Array_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, K2Node_MakeStruct_GameplayEventData_2) == 0x0011E0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_16) == 0x001290, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_16' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_16) == 0x001298, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_16' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_X_17) == 0x0012A0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_X_17' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_BreakVector2D_Y_17) == 0x0012A8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_BreakVector2D_Y_17' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_GetActorLocation_ReturnValue_16) == 0x0012B0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_GetActorLocation_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_FMax_ReturnValue_3) == 0x0012C8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_FMax_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_FMax_ReturnValue_4) == 0x0012D0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_FMax_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_OutActors_1) == 0x0012D8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_ReturnValue_1) == 0x0012E8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0012EC, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0012F0, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SetScalarParameterValue_Value_ImplicitCast_1) == 0x0012F4, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SetScalarParameterValue_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0012F8, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_ClientStartCameraShake_Scale_ImplicitCast) == 0x001300, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_ClientStartCameraShake_Scale_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x001304, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x001308, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_Amount_ImplicitCast_1) == 0x00130C, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_Amount_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_K2_ApplyDamage_Amount_ImplicitCast_2) == 0x001310, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_K2_ApplyDamage_Amount_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExecuteUbergraph_BP_Explosion, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast_1) == 0x001314, "Member 'BP_Explosion_C_ExecuteUbergraph_BP_Explosion::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ExplosionDirection \ +static_assert(alignof(BP_Explosion_C_ExplosionDirection) == 0x000008, "Wrong alignment on BP_Explosion_C_ExplosionDirection"); \ +static_assert(sizeof(BP_Explosion_C_ExplosionDirection) == 0x000068, "Wrong size on BP_Explosion_C_ExplosionDirection"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionDirection, Actor) == 0x000000, "Member 'BP_Explosion_C_ExplosionDirection::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionDirection, Dir) == 0x000008, "Member 'BP_Explosion_C_ExplosionDirection::Dir' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'BP_Explosion_C_ExplosionDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000038, "Member 'BP_Explosion_C_ExplosionDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionDirection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000050, "Member 'BP_Explosion_C_ExplosionDirection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ExplosionOcclusionCheck \ +static_assert(alignof(BP_Explosion_C_ExplosionOcclusionCheck) == 0x000008, "Wrong alignment on BP_Explosion_C_ExplosionOcclusionCheck"); \ +static_assert(sizeof(BP_Explosion_C_ExplosionOcclusionCheck) == 0x000180, "Wrong size on BP_Explosion_C_ExplosionOcclusionCheck"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, Victim) == 0x000000, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::Victim' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, SeesVictim) == 0x000008, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::SeesVictim' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, End_Point) == 0x000010, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::End_Point' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, Ignore_List) == 0x000028, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::Ignore_List' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_Array_Add_ReturnValue) == 0x000038, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_Array_Add_ReturnValue_1) == 0x000058, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_IsValid_ReturnValue) == 0x00005C, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_IsValid_ReturnValue_1) == 0x00005D, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000060, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_Add_VectorVector_ReturnValue) == 0x000078, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_LineTraceSingle_OutHit) == 0x000090, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_LineTraceSingle_ReturnValue) == 0x000178, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_C_ExplosionOcclusionCheck, CallFunc_Not_PreBool_ReturnValue) == 0x000179, "Member 'BP_Explosion_C_ExplosionOcclusionCheck::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_ReceiveEndPlay \ +static_assert(alignof(BP_Explosion_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on BP_Explosion_C_ReceiveEndPlay"); \ +static_assert(sizeof(BP_Explosion_C_ReceiveEndPlay) == 0x000001, "Wrong size on BP_Explosion_C_ReceiveEndPlay"); \ +static_assert(offsetof(BP_Explosion_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'BP_Explosion_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_C_UserConstructionScript \ +static_assert(alignof(BP_Explosion_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Explosion_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Explosion_C_UserConstructionScript) == 0x000008, "Wrong size on BP_Explosion_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Explosion_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_Explosion_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Explosion_C \ +static_assert(alignof(ABP_Explosion_C) == 0x000008, "Wrong alignment on ABP_Explosion_C"); \ +static_assert(sizeof(ABP_Explosion_C) == 0x000420, "Wrong size on ABP_Explosion_C"); \ +static_assert(offsetof(ABP_Explosion_C, UberGraphFrame) == 0x000298, "Member 'ABP_Explosion_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, HeraAudio) == 0x0002A0, "Member 'ABP_Explosion_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PointLight) == 0x0002A8, "Member 'ABP_Explosion_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Billboard) == 0x0002B0, "Member 'ABP_Explosion_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ExplodeImmediately) == 0x0002B8, "Member 'ABP_Explosion_C::ExplodeImmediately' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ExplosionVFX) == 0x0002C0, "Member 'ABP_Explosion_C::ExplosionVFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ScorchDecal) == 0x0002C8, "Member 'ABP_Explosion_C::ScorchDecal' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, BaseDecalSize) == 0x0002D0, "Member 'ABP_Explosion_C::BaseDecalSize' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, DecalFadeDelay) == 0x0002E8, "Member 'ABP_Explosion_C::DecalFadeDelay' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, DecalFadeDuration) == 0x0002EC, "Member 'ABP_Explosion_C::DecalFadeDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, AffectPhysics) == 0x0002F0, "Member 'ABP_Explosion_C::AffectPhysics' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, AffectEnemies) == 0x0002F1, "Member 'ABP_Explosion_C::AffectEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, AffectPlayer) == 0x0002F2, "Member 'ABP_Explosion_C::AffectPlayer' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PhysicsForce) == 0x0002F4, "Member 'ABP_Explosion_C::PhysicsForce' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PhysicsForceRadius) == 0x0002F8, "Member 'ABP_Explosion_C::PhysicsForceRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PlayerDamage) == 0x000300, "Member 'ABP_Explosion_C::PlayerDamage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PlayerDamageRange) == 0x000308, "Member 'ABP_Explosion_C::PlayerDamageRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PlayerForce) == 0x000318, "Member 'ABP_Explosion_C::PlayerForce' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PlayerForceRange) == 0x000320, "Member 'ABP_Explosion_C::PlayerForceRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, EnemyDamage) == 0x000330, "Member 'ABP_Explosion_C::EnemyDamage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, EnemyDamageRange) == 0x000338, "Member 'ABP_Explosion_C::EnemyDamageRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, EnemyForce) == 0x000348, "Member 'ABP_Explosion_C::EnemyForce' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, EnemyForceRange) == 0x000350, "Member 'ABP_Explosion_C::EnemyForceRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Enemy_Stumble_Range) == 0x000360, "Member 'ABP_Explosion_C::Enemy_Stumble_Range' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, AudioEvent) == 0x000368, "Member 'ABP_Explosion_C::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, LightFlashTime) == 0x000370, "Member 'ABP_Explosion_C::LightFlashTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Camera_Shakes) == 0x000378, "Member 'ABP_Explosion_C::Camera_Shakes' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Noise_Tag) == 0x000388, "Member 'ABP_Explosion_C::Noise_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Noise_Range) == 0x000390, "Member 'ABP_Explosion_C::Noise_Range' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Phys_Damage) == 0x000394, "Member 'ABP_Explosion_C::Phys_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, PhysDamageRange) == 0x000398, "Member 'ABP_Explosion_C::PhysDamageRange' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Player_Knocked_Range) == 0x0003A0, "Member 'ABP_Explosion_C::Player_Knocked_Range' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Phys_Mat) == 0x0003A8, "Member 'ABP_Explosion_C::Phys_Mat' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Source_Object) == 0x0003B0, "Member 'ABP_Explosion_C::Source_Object' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, InfluencedByPlayer) == 0x0003B8, "Member 'ABP_Explosion_C::InfluencedByPlayer' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, HitOwner) == 0x0003B9, "Member 'ABP_Explosion_C::HitOwner' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Hit_Enemies) == 0x0003C0, "Member 'ABP_Explosion_C::Hit_Enemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ConvertedMassActors) == 0x0003D0, "Member 'ABP_Explosion_C::ConvertedMassActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ExplosionOrient) == 0x0003E0, "Member 'ABP_Explosion_C::ExplosionOrient' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, DecalMID) == 0x0003F8, "Member 'ABP_Explosion_C::DecalMID' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, ExplosionVFX_default) == 0x000400, "Member 'ABP_Explosion_C::ExplosionVFX_default' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Hit_Mass) == 0x000408, "Member 'ABP_Explosion_C::Hit_Mass' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_C, Dificulty) == 0x000418, "Member 'ABP_Explosion_C::Dificulty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay \ +static_assert(alignof(BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay) == 0x000004, "Wrong alignment on BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay"); \ +static_assert(sizeof(BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay) == 0x000004, "Wrong size on BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay"); \ +static_assert(offsetof(BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay, EntryPoint) == 0x000000, "Member 'BP_Explosion_TickDelay_C_ExecuteUbergraph_BP_Explosion_TickDelay::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Explosion_TickDelay_C \ +static_assert(alignof(ABP_Explosion_TickDelay_C) == 0x000008, "Wrong alignment on ABP_Explosion_TickDelay_C"); \ +static_assert(sizeof(ABP_Explosion_TickDelay_C) == 0x000428, "Wrong size on ABP_Explosion_TickDelay_C"); \ +static_assert(offsetof(ABP_Explosion_TickDelay_C, UberGraphFrame_BP_Explosion_TickDelay_C) == 0x000420, "Member 'ABP_Explosion_TickDelay_C::UberGraphFrame_BP_Explosion_TickDelay_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_CustomImpact \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_CustomImpact) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_CustomImpact"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_CustomImpact) == 0x000008, "Wrong size on BP_Enemy_Throwable_Grenade_C_CustomImpact"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_CustomImpact, Actor) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_CustomImpact::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade) == 0x000010, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade) == 0x000310, "Wrong size on BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, EntryPoint) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_delegate_Variable) == 0x000004, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000014, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Add_IntInt_ReturnValue) == 0x00001C, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_int_Array_Index_Variable) == 0x000020, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_bool_Has_Been_Initd_Variable) == 0x000024, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_bool_IsClosed_Variable) == 0x000025, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_bool_Has_Been_Initd_Variable_1) == 0x000026, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, K2Node_Event_Actor) == 0x000040, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::K2Node_Event_Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x000050, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_IsValid_ReturnValue) == 0x0000B0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, Temp_bool_IsClosed_Variable_1) == 0x0000B1, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000C0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000C8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_GetPlaybackPosition_ReturnValue) == 0x0000D0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_GetPlaybackPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_FClamp_ReturnValue) == 0x0000E0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, K2Node_Event_TKTargetType) == 0x0000E8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::K2Node_Event_TKTargetType' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000E9, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, K2Node_MakeArray_Array) == 0x0000F0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000100, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_GetPlayerPawn_ReturnValue) == 0x000118, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, K2Node_MakeArray_Array_1) == 0x000120, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SphereOverlapActors_OutActors) == 0x000130, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SphereOverlapActors_ReturnValue) == 0x000140, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Array_Get_Item) == 0x000148, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, K2Node_MakeStruct_GameplayEventData) == 0x000150, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Array_Length_ReturnValue) == 0x000200, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Less_IntInt_ReturnValue) == 0x000204, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000208, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000220, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000228, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_GetInstigator_ReturnValue) == 0x000230, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_GetInstigator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_GetTransform_ReturnValue) == 0x000240, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_BreakTransform_Location) == 0x0002A0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_BreakTransform_Rotation) == 0x0002B8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_BreakTransform_Scale) == 0x0002D0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x0002E8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0002F0, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0002F8, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000300, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SetNewTime_NewTime_ImplicitCast) == 0x000308, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SetNewTime_NewTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x00030C, "Member 'BP_Enemy_Throwable_Grenade_C_ExecuteUbergraph_BP_Enemy_Throwable_Grenade::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_GetDataAsset \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_GetDataAsset"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_GetDataAsset) == 0x000008, "Wrong size on BP_Enemy_Throwable_Grenade_C_GetDataAsset"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_GetHandleLocation \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_GetHandleLocation"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_GetHandleLocation) == 0x000030, "Wrong size on BP_Enemy_Throwable_Grenade_C_GetHandleLocation"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_GetHandleLocation, CallFunc_GetHandleLocation_ReturnValue) == 0x000018, "Member 'BP_Enemy_Throwable_Grenade_C_GetHandleLocation::CallFunc_GetHandleLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_OverrideTargetType \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_OverrideTargetType) == 0x000001, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_OverrideTargetType"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_OverrideTargetType) == 0x000001, "Wrong size on BP_Enemy_Throwable_Grenade_C_OverrideTargetType"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_OverrideTargetType, TKTargetType_0) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_OverrideTargetType::TKTargetType_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Enemy_Throwable_Grenade_C_GetTargetType \ +static_assert(alignof(BP_Enemy_Throwable_Grenade_C_GetTargetType) == 0x000001, "Wrong alignment on BP_Enemy_Throwable_Grenade_C_GetTargetType"); \ +static_assert(sizeof(BP_Enemy_Throwable_Grenade_C_GetTargetType) == 0x000001, "Wrong size on BP_Enemy_Throwable_Grenade_C_GetTargetType"); \ +static_assert(offsetof(BP_Enemy_Throwable_Grenade_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_Enemy_Throwable_Grenade_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Enemy_Throwable_Grenade_C \ +static_assert(alignof(ABP_Enemy_Throwable_Grenade_C) == 0x000008, "Wrong alignment on ABP_Enemy_Throwable_Grenade_C"); \ +static_assert(sizeof(ABP_Enemy_Throwable_Grenade_C) == 0x000410, "Wrong size on ABP_Enemy_Throwable_Grenade_C"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, UberGraphFrame_BP_Enemy_Throwable_Grenade_C) == 0x000398, "Member 'ABP_Enemy_Throwable_Grenade_C::UberGraphFrame_BP_Enemy_Throwable_Grenade_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, PointLight) == 0x0003A0, "Member 'ABP_Enemy_Throwable_Grenade_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Niagara) == 0x0003A8, "Member 'ABP_Enemy_Throwable_Grenade_C::Niagara' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Timeline_LightFlash_50A95FE842BB2B511B6D918F48D68F93) == 0x0003B0, "Member 'ABP_Enemy_Throwable_Grenade_C::Timeline_LightFlash_50A95FE842BB2B511B6D918F48D68F93' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Timeline__Direction_50A95FE842BB2B511B6D918F48D68F93) == 0x0003B4, "Member 'ABP_Enemy_Throwable_Grenade_C::Timeline__Direction_50A95FE842BB2B511B6D918F48D68F93' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Timeline) == 0x0003B8, "Member 'ABP_Enemy_Throwable_Grenade_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, GrenadeCookTime) == 0x0003C0, "Member 'ABP_Enemy_Throwable_Grenade_C::GrenadeCookTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, ExplosionClass) == 0x0003C8, "Member 'ABP_Enemy_Throwable_Grenade_C::ExplosionClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, TKGrabCookModifier) == 0x0003D0, "Member 'ABP_Enemy_Throwable_Grenade_C::TKGrabCookModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, tmp) == 0x0003D8, "Member 'ABP_Enemy_Throwable_Grenade_C::tmp' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, TKTargetType) == 0x0003E0, "Member 'ABP_Enemy_Throwable_Grenade_C::TKTargetType' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Wary_Distance) == 0x0003E8, "Member 'ABP_Enemy_Throwable_Grenade_C::Wary_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Explosion_VFX) == 0x0003F0, "Member 'ABP_Enemy_Throwable_Grenade_C::Explosion_VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, AudioEvent) == 0x0003F8, "Member 'ABP_Enemy_Throwable_Grenade_C::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Player_Damage) == 0x000400, "Member 'ABP_Enemy_Throwable_Grenade_C::Player_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Affect_Player) == 0x000408, "Member 'ABP_Enemy_Throwable_Grenade_C::Affect_Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Affect_Enemies) == 0x000409, "Member 'ABP_Enemy_Throwable_Grenade_C::Affect_Enemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_Enemy_Throwable_Grenade_C, Affect_Physics) == 0x00040A, "Member 'ABP_Enemy_Throwable_Grenade_C::Affect_Physics' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd) == 0x000010, "Wrong size on GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd, Spline) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd::Spline' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd, MovingActor) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_ArrivedAtEnd::MovingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x0000B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventTag) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventData) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_EventReceived_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser) == 0x000010, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser) == 0x000840, "Wrong size on GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, EntryPoint) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventTag_1) == 0x000004, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventData_1) == 0x000010, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventTag) == 0x0000C0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventData) == 0x0000C8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_struct_Variable) == 0x000188, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_struct_Variable_1) == 0x000238, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000240, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_1) == 0x000244, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000258, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_TaskWaitDelay_ReturnValue) == 0x000268, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue) == 0x000280, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_TaskWaitDelay_TaskOwner_CastInput_1) == 0x000288, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_TaskWaitDelay_TaskOwner_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_TaskWaitDelay_ReturnValue_1) == 0x000298, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_TaskWaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_3) == 0x0002A0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue_1) == 0x0002B0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002B4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_5) == 0x0002C4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0002D8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Loop_Counter_Variable) == 0x0002E0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_IntInt_ReturnValue) == 0x0002E4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue_2) == 0x0002E8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Array_Index_Variable) == 0x0002EC, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002F0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventTag_4) == 0x000300, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventData_4) == 0x000308, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Array_Index_Variable_1) == 0x0003B8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Loop_Counter_Variable_1) == 0x0003BC, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_IntInt_ReturnValue_1) == 0x0003C0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Array_Index_Variable_2) == 0x0003C4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_7) == 0x0003C8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_Event_bWasCancelled) == 0x0003D8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_K2_CommitAbility_ReturnValue) == 0x0003D9, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetTarget_Target) == 0x0003E0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetTarget_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetTarget_ReturnValue) == 0x0003E8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetMontage_ReturnValue) == 0x0003F0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0003F8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue_3) == 0x000400, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000408, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000410, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetSocketLocation_ReturnValue) == 0x000428, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_MakeTransform_ReturnValue) == 0x000440, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_MakeTransform_ReturnValue_1) == 0x0004A0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000500, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x000508, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_FinishSpawningActor_ReturnValue) == 0x000510, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Add_ReturnValue) == 0x000518, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x000520, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Add_ReturnValue_1) == 0x000528, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Get_Item) == 0x000530, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Length_ReturnValue) == 0x000538, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue_4) == 0x00053C, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_Spline) == 0x000540, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_Spline' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_MovingActor) == 0x000548, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_MovingActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Find_ReturnValue) == 0x000550, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Get_Item_1) == 0x000558, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Get_Item_2) == 0x000560, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Length_ReturnValue_1) == 0x000568, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventTag_2) == 0x00056C, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventData_2) == 0x000578, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Less_IntInt_ReturnValue) == 0x000628, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_8) == 0x00062C, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Variable) == 0x00063C, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Get_Item_3) == 0x000640, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_IsValid_ReturnValue_5) == 0x000648, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000649, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_IntInt_ReturnValue_2) == 0x00064C, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Length_ReturnValue_2) == 0x000650, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Less_IntInt_ReturnValue_1) == 0x000654, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000658, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000660, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000678, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetController_ReturnValue) == 0x000690, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_FindLookAtRotation_ReturnValue) == 0x000698, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_BreakRotator_Roll) == 0x0006B0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_BreakRotator_Pitch) == 0x0006B4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_BreakRotator_Yaw) == 0x0006B8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Array_Get_Item_4) == 0x0006C0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_MakeRotator_ReturnValue) == 0x0006C8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_MakeRotator_ReturnValue_1) == 0x0006E0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventTag_3) == 0x0006F8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CustomEvent_EventData_3) == 0x000700, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0007B0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_9) == 0x0007B4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_ValidateTarget_Return) == 0x0007C4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_ValidateTarget_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, K2Node_CreateDelegate_OutputDelegate_10) == 0x0007C8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, Temp_int_Loop_Counter_Variable_2) == 0x0007D8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_RandomFloatInRange_ReturnValue) == 0x0007E0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0007E8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Less_IntInt_ReturnValue_2) == 0x0007F0, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_IntInt_ReturnValue_3) == 0x0007F4, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_GetLKP_LKP) == 0x0007F8, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_GetLKP_LKP' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_VectorVector_ReturnValue) == 0x000810, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000828, "Member 'GA_Enemy_ExplosiveChaser_C_ExecuteUbergraph_GA_Enemy_ExplosiveChaser::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_GetLKP \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_GetLKP) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_GetLKP"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_GetLKP) == 0x000048, "Wrong size on GA_Enemy_ExplosiveChaser_C_GetLKP"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetLKP, LKP) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_GetLKP::LKP' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetLKP, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_Enemy_ExplosiveChaser_C_GetLKP::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetLKP, CallFunc_GetAIController_ReturnValue) == 0x000020, "Member 'GA_Enemy_ExplosiveChaser_C_GetLKP::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetLKP, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000028, "Member 'GA_Enemy_ExplosiveChaser_C_GetLKP::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetLKP, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_Enemy_ExplosiveChaser_C_GetLKP::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_GetTarget \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_GetTarget) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_GetTarget"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_GetTarget) == 0x000170, "Wrong size on GA_Enemy_ExplosiveChaser_C_GetTarget"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, Target) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, ReturnValue) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, LocalTarget) == 0x000010, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::LocalTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000030, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, K2Node_MakeArray_Array) == 0x000038, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_GetAIController_ReturnValue) == 0x000048, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000050, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_LineTraceSingle_OutHit) == 0x000070, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_LineTraceSingle_ReturnValue) == 0x000158, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_Not_PreBool_ReturnValue) == 0x000159, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_GetTargetActor_ReturnValue) == 0x000160, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_GetTarget, CallFunc_IsValid_ReturnValue_1) == 0x000168, "Member 'GA_Enemy_ExplosiveChaser_C_GetTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x0000B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventTag) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventData) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_OnBlendOut_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x0000B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventTag) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventData) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_OnCancelled_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x0000B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventTag) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventData) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_OnCompleted_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C) == 0x0000B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventTag) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C, EventData) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_OnInterrupted_1ACD2FCD4EC7A83EC0D87E92F6831A0C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_ExplosiveChaser_C_ValidateTarget \ +static_assert(alignof(GA_Enemy_ExplosiveChaser_C_ValidateTarget) == 0x000008, "Wrong alignment on GA_Enemy_ExplosiveChaser_C_ValidateTarget"); \ +static_assert(sizeof(GA_Enemy_ExplosiveChaser_C_ValidateTarget) == 0x0002B8, "Wrong size on GA_Enemy_ExplosiveChaser_C_ValidateTarget"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, Return) == 0x000000, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, IgnoreActors) == 0x000008, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::IgnoreActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, Rtn) == 0x000018, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::Rtn' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, Temp_bool_True_if_break_was_hit_Variable) == 0x000019, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Not_PreBool_ReturnValue) == 0x000020, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_GetLKP_LKP) == 0x000028, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_GetLKP_LKP' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Array_Add_ReturnValue) == 0x000040, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, Temp_int_Loop_Counter_Variable) == 0x000044, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_GetLKP_LKP_1) == 0x000048, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_GetLKP_LKP_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Add_IntInt_ReturnValue) == 0x000060, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000068, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Array_Add_ReturnValue_1) == 0x000074, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000078, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000090, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_LineTraceMulti_OutHits) == 0x0000A8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_LineTraceMulti_OutHits' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_LineTraceMulti_ReturnValue) == 0x0000B8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_LineTraceMulti_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000C0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_VSize_ReturnValue) == 0x0000D8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Array_Get_Item) == 0x0000E0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0001C8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_bBlockingHit) == 0x0001C9, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_bInitialOverlap) == 0x0001CA, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_Time) == 0x0001CC, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_Distance) == 0x0001D0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_Location) == 0x0001D8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_ImpactPoint) == 0x0001F0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_Normal) == 0x000208, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_ImpactNormal) == 0x000220, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_PhysMat) == 0x000238, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_HitActor) == 0x000240, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_HitComponent) == 0x000248, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_HitBoneName) == 0x000250, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_BoneName) == 0x000258, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_HitItem) == 0x000260, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_ElementIndex) == 0x000264, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_FaceIndex) == 0x000268, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_TraceStart) == 0x000270, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BreakHitResult_TraceEnd) == 0x000288, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, K2Node_DynamicCast_AsCharacter) == 0x0002A0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, K2Node_DynamicCast_bSuccess) == 0x0002A8, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Array_Length_ReturnValue) == 0x0002AC, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_Less_IntInt_ReturnValue) == 0x0002B0, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_ExplosiveChaser_C_ValidateTarget, CallFunc_BooleanAND_ReturnValue) == 0x0002B1, "Member 'GA_Enemy_ExplosiveChaser_C_ValidateTarget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_ExplosiveChaser_C \ +static_assert(alignof(UGA_Enemy_ExplosiveChaser_C) == 0x000008, "Wrong alignment on UGA_Enemy_ExplosiveChaser_C"); \ +static_assert(sizeof(UGA_Enemy_ExplosiveChaser_C) == 0x0006E8, "Wrong size on UGA_Enemy_ExplosiveChaser_C"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_ExplosiveChaser_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, FollowerProjectileCount) == 0x000670, "Member 'UGA_Enemy_ExplosiveChaser_C::FollowerProjectileCount' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, ManagedProjectiles) == 0x000678, "Member 'UGA_Enemy_ExplosiveChaser_C::ManagedProjectiles' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, ManagedSplines) == 0x000688, "Member 'UGA_Enemy_ExplosiveChaser_C::ManagedSplines' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, CachedTarget) == 0x000698, "Member 'UGA_Enemy_ExplosiveChaser_C::CachedTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, TargetLocation) == 0x0006A0, "Member 'UGA_Enemy_ExplosiveChaser_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, Follow_Duration) == 0x0006B8, "Member 'UGA_Enemy_ExplosiveChaser_C::Follow_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, VectorOffset) == 0x0006C0, "Member 'UGA_Enemy_ExplosiveChaser_C::VectorOffset' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, AbandonDistance) == 0x0006D8, "Member 'UGA_Enemy_ExplosiveChaser_C::AbandonDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_ExplosiveChaser_C, TargetInvalidated) == 0x0006E0, "Member 'UGA_Enemy_ExplosiveChaser_C::TargetInvalidated' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKInputPrompt_C_ChangeInputs \ +static_assert(alignof(WBP_TKInputPrompt_C_ChangeInputs) == 0x000001, "Wrong alignment on WBP_TKInputPrompt_C_ChangeInputs"); \ +static_assert(sizeof(WBP_TKInputPrompt_C_ChangeInputs) == 0x000001, "Wrong size on WBP_TKInputPrompt_C_ChangeInputs"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ChangeInputs, Gamepad) == 0x000000, "Member 'WBP_TKInputPrompt_C_ChangeInputs::Gamepad' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKInputPrompt_C_CustomEvent \ +static_assert(alignof(WBP_TKInputPrompt_C_CustomEvent) == 0x000001, "Wrong alignment on WBP_TKInputPrompt_C_CustomEvent"); \ +static_assert(sizeof(WBP_TKInputPrompt_C_CustomEvent) == 0x000001, "Wrong size on WBP_TKInputPrompt_C_CustomEvent"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_CustomEvent, InCurrentInputType) == 0x000000, "Member 'WBP_TKInputPrompt_C_CustomEvent::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt \ +static_assert(alignof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt) == 0x000008, "Wrong alignment on WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt"); \ +static_assert(sizeof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt) == 0x000040, "Wrong size on WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, EntryPoint) == 0x000000, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable) == 0x000004, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_1) == 0x000005, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_bool_Variable) == 0x000006, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_2) == 0x000007, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_3) == 0x000008, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_bool_Variable_1) == 0x000009, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_4) == 0x00000A, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_5) == 0x00000B, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_bool_Variable_2) == 0x00000C, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_6) == 0x00000D, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_7) == 0x00000E, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_bool_Variable_3) == 0x00000F, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_8) == 0x000010, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_byte_Variable_9) == 0x000011, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_byte_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Event_InCurrentInputType) == 0x000012, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, CallFunc_GetPlatformName_ReturnValue) == 0x000018, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_SwitchEnum_CmpSuccess) == 0x000028, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, CallFunc_Contains_ReturnValue) == 0x000029, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, CallFunc_IsPlayerUsingController_ReturnValue) == 0x00002A, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::CallFunc_IsPlayerUsingController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_CustomEvent_Gamepad) == 0x00002B, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_CustomEvent_Gamepad' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Select_Default) == 0x00002C, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, Temp_bool_Variable_4) == 0x00002D, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Select_Default_1) == 0x00002E, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_CustomEvent_Can_Throw) == 0x00002F, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_CustomEvent_Can_Throw' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_CustomEvent_Can_Drop) == 0x000030, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_CustomEvent_Can_Drop' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_CustomEvent_Can_Fire) == 0x000031, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_CustomEvent_Can_Fire' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Select_Default_2) == 0x000032, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Select_Default_3) == 0x000033, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, K2Node_Select_Default_4) == 0x000034, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt, CallFunc_GetHud_ReturnValue) == 0x000038, "Member 'WBP_TKInputPrompt_C_ExecuteUbergraph_WBP_TKInputPrompt::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKInputPrompt_C_Set_Potential_Actions \ +static_assert(alignof(WBP_TKInputPrompt_C_Set_Potential_Actions) == 0x000001, "Wrong alignment on WBP_TKInputPrompt_C_Set_Potential_Actions"); \ +static_assert(sizeof(WBP_TKInputPrompt_C_Set_Potential_Actions) == 0x000003, "Wrong size on WBP_TKInputPrompt_C_Set_Potential_Actions"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_Set_Potential_Actions, Can_Throw) == 0x000000, "Member 'WBP_TKInputPrompt_C_Set_Potential_Actions::Can_Throw' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_Set_Potential_Actions, Can_Drop) == 0x000001, "Member 'WBP_TKInputPrompt_C_Set_Potential_Actions::Can_Drop' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKInputPrompt_C_Set_Potential_Actions, Can_Fire) == 0x000002, "Member 'WBP_TKInputPrompt_C_Set_Potential_Actions::Can_Fire' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TKInputPrompt_C \ +static_assert(alignof(UWBP_TKInputPrompt_C) == 0x000008, "Wrong alignment on UWBP_TKInputPrompt_C"); \ +static_assert(sizeof(UWBP_TKInputPrompt_C) == 0x000390, "Wrong size on UWBP_TKInputPrompt_C"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, UberGraphFrame) == 0x000330, "Member 'UWBP_TKInputPrompt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Box_Drop) == 0x000338, "Member 'UWBP_TKInputPrompt_C::Box_Drop' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Box_Fire) == 0x000340, "Member 'UWBP_TKInputPrompt_C::Box_Fire' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Box_Throw) == 0x000348, "Member 'UWBP_TKInputPrompt_C::Box_Throw' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, BoxMain) == 0x000350, "Member 'UWBP_TKInputPrompt_C::BoxMain' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_Drop_PC) == 0x000358, "Member 'UWBP_TKInputPrompt_C::Button_Drop_PC' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_Drop_Xpad) == 0x000360, "Member 'UWBP_TKInputPrompt_C::Button_Drop_Xpad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_Fire_PC) == 0x000368, "Member 'UWBP_TKInputPrompt_C::Button_Fire_PC' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_Fire_Xpad) == 0x000370, "Member 'UWBP_TKInputPrompt_C::Button_Fire_Xpad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_throw_PC) == 0x000378, "Member 'UWBP_TKInputPrompt_C::Button_throw_PC' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, Button_Throw_Xpad) == 0x000380, "Member 'UWBP_TKInputPrompt_C::Button_Throw_Xpad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKInputPrompt_C, WrestlerActionListButton) == 0x000388, "Member 'UWBP_TKInputPrompt_C::WrestlerActionListButton' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x0000B8, "Wrong size on GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9, EventTag) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9, EventData) == 0x000008, "Member 'GA_Telekenesis_Boltpull_C_EventReceived_D115129F4EBA8FF4F04FD5A6A82758D9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull) == 0x000010, "Wrong alignment on GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull) == 0x0007F0, "Wrong size on GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, EntryPoint) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventTag_3) == 0x0000D0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventTag_2) == 0x000198, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventTag_1) == 0x000260, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventTag) == 0x000328, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_struct_Variable) == 0x0003F0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004A8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004B0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue) == 0x0004C0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_ActorTimeDelay_ReturnValue) == 0x0004C8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004D0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_1) == 0x0004E0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CustomEvent_WaitingTime) == 0x0004E4, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_real_Variable) == 0x0004E8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x0004F0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_2) == 0x0004F8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_bool_Variable) == 0x0004F9, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_struct_Variable_2) == 0x000500, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_struct_Variable_3) == 0x000520, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_int_Array_Index_Variable) == 0x000540, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_bool_True_if_break_was_hit_Variable) == 0x000544, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_Not_PreBool_ReturnValue) == 0x000545, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000548, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, Temp_int_Loop_Counter_Variable) == 0x000550, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_Add_IntInt_ReturnValue) == 0x000554, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_3) == 0x000558, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000560, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_GetAttachedActors_OutActors) == 0x000568, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_Array_Get_Item) == 0x000578, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_4) == 0x000580, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_DynamicCast_AsBP_Throwable_Bolt) == 0x000588, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_DynamicCast_AsBP_Throwable_Bolt' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_DynamicCast_bSuccess) == 0x000590, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_Array_Length_ReturnValue) == 0x000594, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_Less_IntInt_ReturnValue) == 0x000598, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_BooleanAND_ReturnValue) == 0x000599, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_5) == 0x00059A, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0005A0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0005A8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_CreateDelegate_OutputDelegate_7) == 0x0005AC, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_6) == 0x0005BC, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0005C0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_IsValid_ReturnValue_7) == 0x0005C8, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_MakeTransform_ReturnValue) == 0x0005D0, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, CallFunc_K2_SetActorRelativeTransform_SweepHitResult) == 0x000630, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::CallFunc_K2_SetActorRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_Select_Default) == 0x000718, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull, K2Node_MakeStruct_GameplayEventData) == 0x000738, "Member 'GA_Telekenesis_Boltpull_C_ExecuteUbergraph_GA_Telekenesis_Boltpull::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x0000B8, "Wrong size on GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9, EventTag) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9, EventData) == 0x000008, "Member 'GA_Telekenesis_Boltpull_C_OnBlendOut_D115129F4EBA8FF4F04FD5A6A82758D9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x0000B8, "Wrong size on GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9, EventTag) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9, EventData) == 0x000008, "Member 'GA_Telekenesis_Boltpull_C_OnCancelled_D115129F4EBA8FF4F04FD5A6A82758D9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x0000B8, "Wrong size on GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9, EventTag) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9, EventData) == 0x000008, "Member 'GA_Telekenesis_Boltpull_C_OnCompleted_D115129F4EBA8FF4F04FD5A6A82758D9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7) == 0x000004, "Wrong alignment on GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7) == 0x000004, "Wrong size on GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7, WaitingTime) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_OnControlCueProcess_6E5408244E7B57FB366E76A270722CD7::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9 \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9) == 0x0000B8, "Wrong size on GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9, EventTag) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9, EventData) == 0x000008, "Member 'GA_Telekenesis_Boltpull_C_OnInterrupted_D115129F4EBA8FF4F04FD5A6A82758D9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekenesis_Boltpull_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Telekenesis_Boltpull_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility) == 0x0000C8, "Wrong size on GA_Telekenesis_Boltpull_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, HasBolt) == 0x000071, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::HasBolt' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, Temp_bool_True_if_break_was_hit_Variable) == 0x000072, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, Temp_int_Array_Index_Variable) == 0x000074, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000078, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, Temp_int_Loop_Counter_Variable) == 0x00007C, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_Add_IntInt_ReturnValue) == 0x000080, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000088, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_GetAttachedActors_OutActors) == 0x000090, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_Array_Length_ReturnValue) == 0x0000A0, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_Array_Get_Item) == 0x0000A8, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_Less_IntInt_ReturnValue) == 0x0000B0, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, K2Node_DynamicCast_AsBP_Throwable_Bolt) == 0x0000B8, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::K2Node_DynamicCast_AsBP_Throwable_Bolt' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000C0, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekenesis_Boltpull_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000C1, "Member 'GA_Telekenesis_Boltpull_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Telekenesis_Boltpull_C \ +static_assert(alignof(UGA_Telekenesis_Boltpull_C) == 0x000008, "Wrong alignment on UGA_Telekenesis_Boltpull_C"); \ +static_assert(sizeof(UGA_Telekenesis_Boltpull_C) == 0x000680, "Wrong size on UGA_Telekenesis_Boltpull_C"); \ +static_assert(offsetof(UGA_Telekenesis_Boltpull_C, UberGraphFrame) == 0x000668, "Member 'UGA_Telekenesis_Boltpull_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekenesis_Boltpull_C, AttachedBolt) == 0x000670, "Member 'UGA_Telekenesis_Boltpull_C::AttachedBolt' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekenesis_Boltpull_C, ThrowBuffered) == 0x000678, "Member 'UGA_Telekenesis_Boltpull_C::ThrowBuffered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_DPackage_C \ +static_assert(alignof(ABP_CodexItem_DPackage_C) == 0x000008, "Wrong alignment on ABP_CodexItem_DPackage_C"); \ +static_assert(sizeof(ABP_CodexItem_DPackage_C) == 0x000438, "Wrong size on ABP_CodexItem_DPackage_C"); \ + +#define DUMPER7_ASSERTS_BP_IQA_Button_C_EvaluateMasqueradeState \ +static_assert(alignof(BP_IQA_Button_C_EvaluateMasqueradeState) == 0x000001, "Wrong alignment on BP_IQA_Button_C_EvaluateMasqueradeState"); \ +static_assert(sizeof(BP_IQA_Button_C_EvaluateMasqueradeState) == 0x000001, "Wrong size on BP_IQA_Button_C_EvaluateMasqueradeState"); \ +static_assert(offsetof(BP_IQA_Button_C_EvaluateMasqueradeState, NewState) == 0x000000, "Member 'BP_IQA_Button_C_EvaluateMasqueradeState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button \ +static_assert(alignof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button) == 0x000008, "Wrong alignment on BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button"); \ +static_assert(sizeof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button) == 0x000040, "Wrong size on BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, EntryPoint) == 0x000000, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, Temp_delegate_Variable) == 0x000004, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_CustomEvent_PrevState) == 0x000024, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_CustomEvent_NewState_1) == 0x000025, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_CustomEvent_NewState_1' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_CustomEvent_NewState) == 0x000026, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_SwitchEnum_CmpSuccess) == 0x000027, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, CallFunc_GetMasqueradeState_ReturnValue) == 0x000030, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button, K2Node_Event_InInteractingActor) == 0x000038, "Member 'BP_IQA_Button_C_ExecuteUbergraph_BP_IQA_Button::K2Node_Event_InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_Button_C_MasqueradeStateChanged \ +static_assert(alignof(BP_IQA_Button_C_MasqueradeStateChanged) == 0x000001, "Wrong alignment on BP_IQA_Button_C_MasqueradeStateChanged"); \ +static_assert(sizeof(BP_IQA_Button_C_MasqueradeStateChanged) == 0x000002, "Wrong size on BP_IQA_Button_C_MasqueradeStateChanged"); \ +static_assert(offsetof(BP_IQA_Button_C_MasqueradeStateChanged, PrevState) == 0x000000, "Member 'BP_IQA_Button_C_MasqueradeStateChanged::PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_IQA_Button_C_MasqueradeStateChanged, NewState) == 0x000001, "Member 'BP_IQA_Button_C_MasqueradeStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IQA_Button_C_OnInteractionPerformed \ +static_assert(alignof(BP_IQA_Button_C_OnInteractionPerformed) == 0x000008, "Wrong alignment on BP_IQA_Button_C_OnInteractionPerformed"); \ +static_assert(sizeof(BP_IQA_Button_C_OnInteractionPerformed) == 0x000008, "Wrong size on BP_IQA_Button_C_OnInteractionPerformed"); \ +static_assert(offsetof(BP_IQA_Button_C_OnInteractionPerformed, InInteractingActor) == 0x000000, "Member 'BP_IQA_Button_C_OnInteractionPerformed::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_IQA_Button_C \ +static_assert(alignof(ABP_IQA_Button_C) == 0x000008, "Wrong alignment on ABP_IQA_Button_C"); \ +static_assert(sizeof(ABP_IQA_Button_C) == 0x000358, "Wrong size on ABP_IQA_Button_C"); \ +static_assert(offsetof(ABP_IQA_Button_C, UberGraphFrame_BP_IQA_Button_C) == 0x000328, "Member 'ABP_IQA_Button_C::UberGraphFrame_BP_IQA_Button_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_Button_C, WrestlerInteractionPoint) == 0x000330, "Member 'ABP_IQA_Button_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_Button_C, PressInteraction) == 0x000338, "Member 'ABP_IQA_Button_C::PressInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_Button_C, ButtonMesh) == 0x000340, "Member 'ABP_IQA_Button_C::ButtonMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_Button_C, ButtonBase) == 0x000348, "Member 'ABP_IQA_Button_C::ButtonBase' has a wrong offset!"); \ +static_assert(offsetof(ABP_IQA_Button_C, MasqueradeLock) == 0x000350, "Member 'ABP_IQA_Button_C::MasqueradeLock' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Wrinkles_C_ExecuteUbergraph_Wrinkles \ +static_assert(alignof(Wrinkles_C_ExecuteUbergraph_Wrinkles) == 0x000008, "Wrong alignment on Wrinkles_C_ExecuteUbergraph_Wrinkles"); \ +static_assert(sizeof(Wrinkles_C_ExecuteUbergraph_Wrinkles) == 0x000120, "Wrong size on Wrinkles_C_ExecuteUbergraph_Wrinkles"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, EntryPoint) == 0x000000, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_K2_SetTimer_ReturnValue) == 0x000008, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_K2_SetTimer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetOwner_ReturnValue_1) == 0x000018, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_AsBP_Base_Dialogue_Character) == 0x000028, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_AsBP_Base_Dialogue_Character' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000038, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetIsInDialogue_ReturnValue) == 0x000049, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetIsInDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1) == 0x000050, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_DynamicCast_bSuccess_2) == 0x000060, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetIsInCutscene_ReturnValue) == 0x000061, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Array_Index_Variable) == 0x000064, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Loop_Counter_Variable) == 0x000068, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Array_Get_Item) == 0x00006C, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_IntInt_ReturnValue) == 0x000074, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetCurveValue_ReturnValue) == 0x000078, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetCurveValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00007C, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Array_Index_Variable_1) == 0x000080, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Not_PreBool_ReturnValue) == 0x000084, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_bool_Variable) == 0x000085, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Conv_BoolToString_ReturnValue) == 0x000088, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Conv_BoolToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, K2Node_Event_DeltaSeconds) == 0x000098, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Array_Index_Variable_2) == 0x00009C, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Array_Length_ReturnValue_1) == 0x0000A0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000A4, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Less_IntInt_ReturnValue) == 0x0000A8, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Loop_Counter_Variable_1) == 0x0000AC, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000B0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Lerp_ReturnValue) == 0x0000B8, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_GetAnimInstance_ReturnValue) == 0x0000C8, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Array_Length_ReturnValue_2) == 0x0000D0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000D4, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000D8, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_bool_Variable_1) == 0x0000E0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, Temp_int_Loop_Counter_Variable_2) == 0x0000E4, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000E8, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Add_IntInt_ReturnValue_3) == 0x0000EC, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Conv_BoolToString_ReturnValue_1) == 0x0000F0, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Conv_BoolToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_K2_SetTimer_Time_ImplicitCast) == 0x000100, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_K2_SetTimer_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Array_Set_Item_ImplicitCast) == 0x000108, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Array_Set_Item_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000110, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_ExecuteUbergraph_Wrinkles, CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast) == 0x000118, "Member 'Wrinkles_C_ExecuteUbergraph_Wrinkles::CallFunc_SetCustomPrimitiveDataFloat_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Wrinkles_C_Read_Morph_Targets \ +static_assert(alignof(Wrinkles_C_Read_Morph_Targets) == 0x000008, "Wrong alignment on Wrinkles_C_Read_Morph_Targets"); \ +static_assert(sizeof(Wrinkles_C_Read_Morph_Targets) == 0x000068, "Wrong size on Wrinkles_C_Read_Morph_Targets"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, Morph_Target_Name) == 0x000000, "Member 'Wrinkles_C_Read_Morph_Targets::Morph_Target_Name' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, Highest_Value) == 0x000010, "Member 'Wrinkles_C_Read_Morph_Targets::Highest_Value' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, High_Value) == 0x000018, "Member 'Wrinkles_C_Read_Morph_Targets::High_Value' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, Temp_int_Array_Index_Variable) == 0x000020, "Member 'Wrinkles_C_Read_Morph_Targets::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Array_Get_Item) == 0x000028, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Conv_NameToString_ReturnValue) == 0x000030, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_IsEmpty_ReturnValue) == 0x000040, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_GetCurveValue_ReturnValue) == 0x000044, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_GetCurveValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000048, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, Temp_int_Loop_Counter_Variable) == 0x00004C, "Member 'Wrinkles_C_Read_Morph_Targets::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Add_IntInt_ReturnValue) == 0x000054, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, K2Node_VariableSet_High_Value_ImplicitCast) == 0x000058, "Member 'Wrinkles_C_Read_Morph_Targets::K2Node_VariableSet_High_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Read_Morph_Targets, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'Wrinkles_C_Read_Morph_Targets::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Wrinkles_C_ReceiveTick \ +static_assert(alignof(Wrinkles_C_ReceiveTick) == 0x000004, "Wrong alignment on Wrinkles_C_ReceiveTick"); \ +static_assert(sizeof(Wrinkles_C_ReceiveTick) == 0x000004, "Wrong size on Wrinkles_C_ReceiveTick"); \ +static_assert(offsetof(Wrinkles_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'Wrinkles_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Wrinkles_C_Update_Morph_Targets \ +static_assert(alignof(Wrinkles_C_Update_Morph_Targets) == 0x000008, "Wrong alignment on Wrinkles_C_Update_Morph_Targets"); \ +static_assert(sizeof(Wrinkles_C_Update_Morph_Targets) == 0x000058, "Wrong size on Wrinkles_C_Update_Morph_Targets"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, Highest_Value) == 0x000000, "Member 'Wrinkles_C_Update_Morph_Targets::Highest_Value' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, Last_Value) == 0x000008, "Member 'Wrinkles_C_Update_Morph_Targets::Last_Value' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, Scaler_Parm_Name) == 0x000010, "Member 'Wrinkles_C_Update_Morph_Targets::Scaler_Parm_Name' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, Last_Value_Return) == 0x000018, "Member 'Wrinkles_C_Update_Morph_Targets::Last_Value_Return' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_NormalizeToRange_ReturnValue) == 0x000020, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Lerp_ReturnValue) == 0x000028, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000030, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000038, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000040, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_MapRangeUnclamped_ReturnValue) == 0x000048, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_MapRangeUnclamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000050, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000051, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Wrinkles_C_Update_Morph_Targets, CallFunc_BooleanAND_ReturnValue) == 0x000052, "Member 'Wrinkles_C_Update_Morph_Targets::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrinkles_C \ +static_assert(alignof(UWrinkles_C) == 0x000008, "Wrong alignment on UWrinkles_C"); \ +static_assert(sizeof(UWrinkles_C) == 0x000178, "Wrong size on UWrinkles_C"); \ +static_assert(offsetof(UWrinkles_C, UberGraphFrame) == 0x0000A0, "Member 'UWrinkles_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Skeletal_mesh) == 0x0000A8, "Member 'UWrinkles_C::Skeletal_mesh' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Morph_Targerts_Names) == 0x0000B0, "Member 'UWrinkles_C::Morph_Targerts_Names' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Offset_Eyes) == 0x000110, "Member 'UWrinkles_C::Offset_Eyes' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Offset_Mouth) == 0x000118, "Member 'UWrinkles_C::Offset_Mouth' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Add_Offset) == 0x000120, "Member 'UWrinkles_C::Add_Offset' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Use_Wrinkles) == 0x000128, "Member 'UWrinkles_C::Use_Wrinkles' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Found_Skeleton) == 0x000129, "Member 'UWrinkles_C::Found_Skeleton' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Debug_Values) == 0x00012A, "Member 'UWrinkles_C::Debug_Values' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, LastValue) == 0x000130, "Member 'UWrinkles_C::LastValue' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, HighestValue) == 0x000140, "Member 'UWrinkles_C::HighestValue' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Timer) == 0x000150, "Member 'UWrinkles_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Timer_Intervals) == 0x000158, "Member 'UWrinkles_C::Timer_Intervals' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Anim_Instace) == 0x000160, "Member 'UWrinkles_C::Anim_Instace' has a wrong offset!"); \ +static_assert(offsetof(UWrinkles_C, Targets_Name) == 0x000168, "Member 'UWrinkles_C::Targets_Name' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_VampiricVisionEnemy_C \ +static_assert(alignof(UGE_VampiricVisionEnemy_C) == 0x000008, "Wrong alignment on UGE_VampiricVisionEnemy_C"); \ +static_assert(sizeof(UGE_VampiricVisionEnemy_C) == 0x000A70, "Wrong size on UGE_VampiricVisionEnemy_C"); \ + +#define DUMPER7_ASSERTS_UWBP_Interaction_Parent_C \ +static_assert(alignof(UWBP_Interaction_Parent_C) == 0x000008, "Wrong alignment on UWBP_Interaction_Parent_C"); \ +static_assert(sizeof(UWBP_Interaction_Parent_C) == 0x0002D0, "Wrong size on UWBP_Interaction_Parent_C"); \ +static_assert(offsetof(UWBP_Interaction_Parent_C, InteractionWidgetSlot) == 0x0002C8, "Member 'UWBP_Interaction_Parent_C::InteractionWidgetSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_QuestRichTextDecorator_C \ +static_assert(alignof(UBP_QuestRichTextDecorator_C) == 0x000008, "Wrong alignment on UBP_QuestRichTextDecorator_C"); \ +static_assert(sizeof(UBP_QuestRichTextDecorator_C) == 0x000030, "Wrong size on UBP_QuestRichTextDecorator_C"); \ + +#define DUMPER7_ASSERTS_WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData \ +static_assert(alignof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData) == 0x000008, "Wrong alignment on WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData"); \ +static_assert(sizeof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData) == 0x000088, "Wrong size on WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData, QuestNewText) == 0x000000, "Member 'WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData::QuestNewText' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData, InNewFontInfo) == 0x000018, "Member 'WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData::InNewFontInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData, InNewPadding) == 0x000070, "Member 'WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData::InNewPadding' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData, InNewIconVisibility) == 0x000080, "Member 'WBP_QuestOptionalObjective_C_SetQuestOptionalObjectiveData::InNewIconVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective \ +static_assert(alignof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective) == 0x000008, "Wrong alignment on WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective"); \ +static_assert(sizeof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective) == 0x0000B8, "Wrong size on WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, EntryPoint) == 0x000000, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, K2Node_CustomEvent_QuestNewText) == 0x000008, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::K2Node_CustomEvent_QuestNewText' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, K2Node_CustomEvent_InNewFontInfo) == 0x000020, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::K2Node_CustomEvent_InNewFontInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, K2Node_CustomEvent_InNewPadding) == 0x000078, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::K2Node_CustomEvent_InNewPadding' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, K2Node_CustomEvent_InNewIconVisibility) == 0x000088, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::K2Node_CustomEvent_InNewIconVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, CallFunc_SlotAsHorizontalBoxSlot_ReturnValue) == 0x000090, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::CallFunc_SlotAsHorizontalBoxSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, Temp_delegate_Variable) == 0x000098, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective, Temp_delegate_Variable_1) == 0x0000A8, "Member 'WBP_QuestOptionalObjective_C_ExecuteUbergraph_WBP_QuestOptionalObjective::Temp_delegate_Variable_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestOptionalObjective_C \ +static_assert(alignof(UWBP_QuestOptionalObjective_C) == 0x000008, "Wrong alignment on UWBP_QuestOptionalObjective_C"); \ +static_assert(sizeof(UWBP_QuestOptionalObjective_C) == 0x000368, "Wrong size on UWBP_QuestOptionalObjective_C"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_QuestOptionalObjective_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, OptionalObjectiveIcon) == 0x0002D0, "Member 'UWBP_QuestOptionalObjective_C::OptionalObjectiveIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, OptionalObjectiveText) == 0x0002D8, "Member 'UWBP_QuestOptionalObjective_C::OptionalObjectiveText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, Label) == 0x0002E0, "Member 'UWBP_QuestOptionalObjective_C::Label' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, FontInfo) == 0x0002F8, "Member 'UWBP_QuestOptionalObjective_C::FontInfo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, In_Padding) == 0x000350, "Member 'UWBP_QuestOptionalObjective_C::In_Padding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestOptionalObjective_C, IconVisibility) == 0x000360, "Member 'UWBP_QuestOptionalObjective_C::IconVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress \ +static_assert(alignof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress) == 0x000008, "Wrong alignment on WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress"); \ +static_assert(sizeof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress) == 0x000058, "Wrong size on WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, EntryPoint) == 0x000000, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, K2Node_Event_bInStatus) == 0x000004, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, Temp_delegate_Variable) == 0x000008, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, Temp_delegate_Variable_1) == 0x000018, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000028, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_GetLoadingScreenDisplayStatus_ReturnValue) == 0x000030, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_GetLoadingScreenDisplayStatus_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_Not_PreBool_ReturnValue) == 0x000031, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_PlayAnimation_ReturnValue) == 0x000038, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_PlayAnimation_ReturnValue_1) == 0x000040, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_PlayAnimation_ReturnValue_2) == 0x000048, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress, CallFunc_PlayAnimation_ReturnValue_3) == 0x000050, "Member 'WBP_QuestProgress_C_ExecuteUbergraph_WBP_QuestProgress::CallFunc_PlayAnimation_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestProgress_C_Get_Quest_Waypoints_Container \ +static_assert(alignof(WBP_QuestProgress_C_Get_Quest_Waypoints_Container) == 0x000008, "Wrong alignment on WBP_QuestProgress_C_Get_Quest_Waypoints_Container"); \ +static_assert(sizeof(WBP_QuestProgress_C_Get_Quest_Waypoints_Container) == 0x000008, "Wrong size on WBP_QuestProgress_C_Get_Quest_Waypoints_Container"); \ +static_assert(offsetof(WBP_QuestProgress_C_Get_Quest_Waypoints_Container, Quest_waypoint_container) == 0x000000, "Member 'WBP_QuestProgress_C_Get_Quest_Waypoints_Container::Quest_waypoint_container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_QuestProgress_C_ToggleVisibility \ +static_assert(alignof(WBP_QuestProgress_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_QuestProgress_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_QuestProgress_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_QuestProgress_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_QuestProgress_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_QuestProgress_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestProgress_C \ +static_assert(alignof(UWBP_QuestProgress_C) == 0x000010, "Wrong alignment on UWBP_QuestProgress_C"); \ +static_assert(sizeof(UWBP_QuestProgress_C) == 0x000420, "Wrong size on UWBP_QuestProgress_C"); \ +static_assert(offsetof(UWBP_QuestProgress_C, UberGraphFrame) == 0x0003F0, "Member 'UWBP_QuestProgress_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestProgress_C, NewObjectiveAnimation) == 0x0003F8, "Member 'UWBP_QuestProgress_C::NewObjectiveAnimation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestProgress_C, CompletedObjectiveAnim) == 0x000400, "Member 'UWBP_QuestProgress_C::CompletedObjectiveAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestProgress_C, QuestObjIcon) == 0x000408, "Member 'UWBP_QuestProgress_C::QuestObjIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_QuestProgress_C, WBP_QuestWaypointContainer) == 0x000410, "Member 'UWBP_QuestProgress_C::WBP_QuestWaypointContainer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HusksStartDead_C_ExecuteUbergraph_HusksStartDead \ +static_assert(alignof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead) == 0x000008, "Wrong alignment on HusksStartDead_C_ExecuteUbergraph_HusksStartDead"); \ +static_assert(sizeof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead) == 0x000070, "Wrong size on HusksStartDead_C_ExecuteUbergraph_HusksStartDead"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, EntryPoint) == 0x000000, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, Temp_int_Array_Index_Variable) == 0x000004, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, K2Node_Event_InAutomata) == 0x000008, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, K2Node_Event_InState) == 0x000010, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_Array_Get_Item) == 0x000020, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, K2Node_DynamicCast_AsBP_Husk_Dissolve) == 0x000058, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::K2Node_DynamicCast_AsBP_Husk_Dissolve' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ExecuteUbergraph_HusksStartDead, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'HusksStartDead_C_ExecuteUbergraph_HusksStartDead::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HusksStartDead_C_ReceiveExecute \ +static_assert(alignof(HusksStartDead_C_ReceiveExecute) == 0x000008, "Wrong alignment on HusksStartDead_C_ReceiveExecute"); \ +static_assert(sizeof(HusksStartDead_C_ReceiveExecute) == 0x000010, "Wrong size on HusksStartDead_C_ReceiveExecute"); \ +static_assert(offsetof(HusksStartDead_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'HusksStartDead_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HusksStartDead_C_ReceiveExecute, InState) == 0x000008, "Member 'HusksStartDead_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHusksStartDead_C \ +static_assert(alignof(UHusksStartDead_C) == 0x000008, "Wrong alignment on UHusksStartDead_C"); \ +static_assert(sizeof(UHusksStartDead_C) == 0x0000A0, "Wrong size on UHusksStartDead_C"); \ +static_assert(offsetof(UHusksStartDead_C, UberGraphFrame) == 0x000088, "Member 'UHusksStartDead_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UHusksStartDead_C, Husk_Dissolver) == 0x000090, "Member 'UHusksStartDead_C::Husk_Dissolver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4 \ +static_assert(alignof(WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4) == 0x0000B0, "Wrong size on WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4, Payload) == 0x000000, "Member 'WBP_DpadInGame_MK_C_EventReceived_7206907148917676910AB6824A4091F4::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584 \ +static_assert(alignof(WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584) == 0x0000B0, "Wrong size on WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584, Payload) == 0x000000, "Member 'WBP_DpadInGame_MK_C_EventReceived_C17E98304E6DCFBFF8E0A0A6C5BBE584::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK \ +static_assert(alignof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK) == 0x0003D8, "Wrong size on WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, EntryPoint) == 0x000000, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CustomEvent_InType) == 0x000004, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CustomEvent_InType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_struct_Variable) == 0x000008, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CustomEvent_Payload) == 0x0000B8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate) == 0x000168, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_struct_Variable_1) == 0x000178, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate_1) == 0x000228, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000238, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate_2) == 0x000240, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate_3) == 0x000250, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate_4) == 0x000260, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_bool_Has_Been_Initd_Variable) == 0x000270, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_int_Loop_Counter_Variable) == 0x000274, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_Add_IntInt_ReturnValue) == 0x000278, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_int_Array_Index_Variable) == 0x00027C, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_Event_bInStatus) == 0x000280, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_GetPlayerPawn_ReturnValue) == 0x000288, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000290, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000298, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_IsValid_ReturnValue) == 0x0002A0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_IsValid_ReturnValue_1) == 0x0002A1, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_PlayAnimation_ReturnValue) == 0x0002A8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_PlayAnimation_ReturnValue_1) == 0x0002B0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_PlayAnimationReverse_ReturnValue) == 0x0002B8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_PlayAnimationForward_ReturnValue) == 0x0002C0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_GetHud_ReturnValue) == 0x0002C8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_GetHUDWidget_ReturnValue) == 0x0002D0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_DynamicCast_AsWBP_Main_HUD_VS) == 0x0002D8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_DynamicCast_AsWBP_Main_HUD_VS' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_DynamicCast_bSuccess) == 0x0002E0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CustomEvent_Payload_1) == 0x0002E8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CustomEvent_bNewInputType) == 0x000398, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CustomEvent_InReadyAbility) == 0x0003A0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CustomEvent_InReadyAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_MakeArray_Array) == 0x0003A8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_Array_Get_Item) == 0x0003B8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_Array_Length_ReturnValue) == 0x0003C0, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, CallFunc_Less_IntInt_ReturnValue) == 0x0003C4, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, Temp_bool_IsClosed_Variable) == 0x0003C5, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003C8, "Member 'WBP_DpadInGame_MK_C_ExecuteUbergraph_WBP_DpadInGame_MK::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_FadeAfterTimer \ +static_assert(alignof(WBP_DpadInGame_MK_C_FadeAfterTimer) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_FadeAfterTimer"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_FadeAfterTimer) == 0x000010, "Wrong size on WBP_DpadInGame_MK_C_FadeAfterTimer"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_FadeAfterTimer, CallFunc_IsAnyoneInCombat_ReturnValue) == 0x000000, "Member 'WBP_DpadInGame_MK_C_FadeAfterTimer::CallFunc_IsAnyoneInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_FadeAfterTimer, CallFunc_PlayAnimationForward_ReturnValue) == 0x000008, "Member 'WBP_DpadInGame_MK_C_FadeAfterTimer::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_OnAbilityReady \ +static_assert(alignof(WBP_DpadInGame_MK_C_OnAbilityReady) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_OnAbilityReady"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_OnAbilityReady) == 0x000008, "Wrong size on WBP_DpadInGame_MK_C_OnAbilityReady"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_OnAbilityReady, InReadyAbility) == 0x000000, "Member 'WBP_DpadInGame_MK_C_OnAbilityReady::InReadyAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_OnGreedActivatedEvent \ +static_assert(alignof(WBP_DpadInGame_MK_C_OnGreedActivatedEvent) == 0x000001, "Wrong alignment on WBP_DpadInGame_MK_C_OnGreedActivatedEvent"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_OnGreedActivatedEvent) == 0x000001, "Wrong size on WBP_DpadInGame_MK_C_OnGreedActivatedEvent"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_OnGreedActivatedEvent, InType) == 0x000000, "Member 'WBP_DpadInGame_MK_C_OnGreedActivatedEvent::InType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_OnInputMethodChanged_Event \ +static_assert(alignof(WBP_DpadInGame_MK_C_OnInputMethodChanged_Event) == 0x000001, "Wrong alignment on WBP_DpadInGame_MK_C_OnInputMethodChanged_Event"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_OnInputMethodChanged_Event) == 0x000001, "Wrong size on WBP_DpadInGame_MK_C_OnInputMethodChanged_Event"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_OnInputMethodChanged_Event, bNewInputType) == 0x000000, "Member 'WBP_DpadInGame_MK_C_OnInputMethodChanged_Event::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_PlayGreedAnimByType \ +static_assert(alignof(WBP_DpadInGame_MK_C_PlayGreedAnimByType) == 0x000001, "Wrong alignment on WBP_DpadInGame_MK_C_PlayGreedAnimByType"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_PlayGreedAnimByType) == 0x000002, "Wrong size on WBP_DpadInGame_MK_C_PlayGreedAnimByType"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_PlayGreedAnimByType, InAbilityType) == 0x000000, "Member 'WBP_DpadInGame_MK_C_PlayGreedAnimByType::InAbilityType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_PlayGreedAnimByType, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_DpadInGame_MK_C_PlayGreedAnimByType::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_ReverseFade \ +static_assert(alignof(WBP_DpadInGame_MK_C_ReverseFade) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_ReverseFade"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_ReverseFade) == 0x000020, "Wrong size on WBP_DpadInGame_MK_C_ReverseFade"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ReverseFade, CallFunc_GetRenderOpacity_ReturnValue) == 0x000000, "Member 'WBP_DpadInGame_MK_C_ReverseFade::CallFunc_GetRenderOpacity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ReverseFade, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000008, "Member 'WBP_DpadInGame_MK_C_ReverseFade::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ReverseFade, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000010, "Member 'WBP_DpadInGame_MK_C_ReverseFade::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ReverseFade, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000018, "Member 'WBP_DpadInGame_MK_C_ReverseFade::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_ToggleVisibility \ +static_assert(alignof(WBP_DpadInGame_MK_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_DpadInGame_MK_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_DpadInGame_MK_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_DpadInGame_MK_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadInGame_MK_C_UpdateSlotVisual \ +static_assert(alignof(WBP_DpadInGame_MK_C_UpdateSlotVisual) == 0x000008, "Wrong alignment on WBP_DpadInGame_MK_C_UpdateSlotVisual"); \ +static_assert(sizeof(WBP_DpadInGame_MK_C_UpdateSlotVisual) == 0x000008, "Wrong size on WBP_DpadInGame_MK_C_UpdateSlotVisual"); \ +static_assert(offsetof(WBP_DpadInGame_MK_C_UpdateSlotVisual, InSlot) == 0x000000, "Member 'WBP_DpadInGame_MK_C_UpdateSlotVisual::InSlot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DpadInGame_MK_C \ +static_assert(alignof(UWBP_DpadInGame_MK_C) == 0x000008, "Wrong alignment on UWBP_DpadInGame_MK_C"); \ +static_assert(sizeof(UWBP_DpadInGame_MK_C) == 0x000440, "Wrong size on UWBP_DpadInGame_MK_C"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, UberGraphFrame) == 0x000348, "Member 'UWBP_DpadInGame_MK_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, HideButtons) == 0x000350, "Member 'UWBP_DpadInGame_MK_C::HideButtons' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Fade) == 0x000358, "Member 'UWBP_DpadInGame_MK_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Affect) == 0x000360, "Member 'UWBP_DpadInGame_MK_C::Affect' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, AffectGreedAnim) == 0x000368, "Member 'UWBP_DpadInGame_MK_C::AffectGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, AffectSlot) == 0x000370, "Member 'UWBP_DpadInGame_MK_C::AffectSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, AffecttAction) == 0x000378, "Member 'UWBP_DpadInGame_MK_C::AffecttAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, HorizontalBox_100) == 0x000380, "Member 'UWBP_DpadInGame_MK_C::HorizontalBox_100' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Mastery) == 0x000388, "Member 'UWBP_DpadInGame_MK_C::Mastery' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, MasteryAction) == 0x000390, "Member 'UWBP_DpadInGame_MK_C::MasteryAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, MasteryGreedAnim) == 0x000398, "Member 'UWBP_DpadInGame_MK_C::MasteryGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, MasterySlot) == 0x0003A0, "Member 'UWBP_DpadInGame_MK_C::MasterySlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Relocate) == 0x0003A8, "Member 'UWBP_DpadInGame_MK_C::Relocate' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, RelocateAction) == 0x0003B0, "Member 'UWBP_DpadInGame_MK_C::RelocateAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, RelocateGreedAnim) == 0x0003B8, "Member 'UWBP_DpadInGame_MK_C::RelocateGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, RelocateSlot) == 0x0003C0, "Member 'UWBP_DpadInGame_MK_C::RelocateSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Strike) == 0x0003C8, "Member 'UWBP_DpadInGame_MK_C::Strike' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, StrikeAction) == 0x0003D0, "Member 'UWBP_DpadInGame_MK_C::StrikeAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, StrikeGreedAnim) == 0x0003D8, "Member 'UWBP_DpadInGame_MK_C::StrikeGreedAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, StrikeSlot) == 0x0003E0, "Member 'UWBP_DpadInGame_MK_C::StrikeSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, TriggerAction) == 0x0003E8, "Member 'UWBP_DpadInGame_MK_C::TriggerAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, TriggerIcon) == 0x0003F0, "Member 'UWBP_DpadInGame_MK_C::TriggerIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, TriggerProperty) == 0x0003F8, "Member 'UWBP_DpadInGame_MK_C::TriggerProperty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, BottonPromts) == 0x000400, "Member 'UWBP_DpadInGame_MK_C::BottonPromts' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, IsHolding) == 0x000410, "Member 'UWBP_DpadInGame_MK_C::IsHolding' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Timer) == 0x000418, "Member 'UWBP_DpadInGame_MK_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, TimerHandle) == 0x000420, "Member 'UWBP_DpadInGame_MK_C::TimerHandle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, As_Wrestler_Character) == 0x000428, "Member 'UWBP_DpadInGame_MK_C::As_Wrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadInGame_MK_C, Slots) == 0x000430, "Member 'UWBP_DpadInGame_MK_C::Slots' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause \ +static_assert(alignof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause) == 0x000008, "Wrong alignment on GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause"); \ +static_assert(sizeof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause) == 0x000290, "Wrong size on GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, K2Node_CreateDelegate_OutputDelegate_3) == 0x000040, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_WaitDelay_ReturnValue) == 0x000058, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000060, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000068, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_IsValid_ReturnValue_1) == 0x000080, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetPlayerPawn_ReturnValue) == 0x000088, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000090, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000A8, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0000C0, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x0000C8, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0000D0, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0000E8, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000100, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000118, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000120, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_Add_VectorVector_ReturnValue) == 0x000138, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000150, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000168, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000170, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000258, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000260, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, K2Node_Event_bWasCancelled) == 0x000278, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_Vector_Distance_ReturnValue) == 0x000280, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000288, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x00028C, "Member 'GA_EnemyReact_Pause_C_ExecuteUbergraph_GA_EnemyReact_Pause::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Pause_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Pause_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Pause_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Pause_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Pause_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Pause_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Pause_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Pause_C \ +static_assert(alignof(UGA_EnemyReact_Pause_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Pause_C"); \ +static_assert(sizeof(UGA_EnemyReact_Pause_C) == 0x000678, "Wrong size on UGA_EnemyReact_Pause_C"); \ +static_assert(offsetof(UGA_EnemyReact_Pause_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Pause_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Pause_C, Safety_Distance) == 0x000670, "Member 'UGA_EnemyReact_Pause_C::Safety_Distance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_ApplyDamageHud \ +static_assert(alignof(WBP_MainHUD_VS_C_ApplyDamageHud) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_ApplyDamageHud"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_ApplyDamageHud) == 0x000030, "Wrong size on WBP_MainHUD_VS_C_ApplyDamageHud"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ApplyDamageHud, Instigator) == 0x000000, "Member 'WBP_MainHUD_VS_C_ApplyDamageHud::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ApplyDamageHud, Damage) == 0x000008, "Member 'WBP_MainHUD_VS_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ApplyDamageHud, Direction) == 0x000010, "Member 'WBP_MainHUD_VS_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ApplyDamageHud, Tag) == 0x000028, "Member 'WBP_MainHUD_VS_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_AssignEnemyAwernessWidget \ +static_assert(alignof(WBP_MainHUD_VS_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_AssignEnemyAwernessWidget"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong size on WBP_MainHUD_VS_C_AssignEnemyAwernessWidget"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_AssignEnemyAwernessWidget, Enemy) == 0x000000, "Member 'WBP_MainHUD_VS_C_AssignEnemyAwernessWidget::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature \ +static_assert(alignof(WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong alignment on WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong size on WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature, InVisibility) == 0x000000, "Member 'WBP_MainHUD_VS_C_BndEvt__WBP_MainHUD_VS_WBP_PlayerHUD_K2Node_ComponentBoundEvent_1_OnVisibilityChangedEvent__DelegateSignature::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS \ +static_assert(alignof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS) == 0x000258, "Wrong size on WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, EntryPoint) == 0x000000, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_bool_Variable) == 0x000008, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Greater_IntInt_ReturnValue) == 0x000009, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Not_PreBool_ReturnValue) == 0x00000A, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Subtract_IntInt_ReturnValue) == 0x000014, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Array_Index_Variable_1) == 0x00001C, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Array_Index_Variable_2) == 0x000020, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetOwningPlayer_ReturnValue) == 0x000028, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetAllChildren_ReturnValue) == 0x000030, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_Instigator) == 0x000040, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_Damage) == 0x000048, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_Direction) == 0x000050, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_Tag) == 0x000068, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Get_Item) == 0x000070, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Length_ReturnValue_1) == 0x000078, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_AsUser_Widget) == 0x000080, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_AsUser_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_AsBPI_Hud_Actions) == 0x000090, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_AsBPI_Hud_Actions' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_bSuccess_1) == 0x0000A0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_Enemy) == 0x0000A8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_Enemy' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_Event_bInStatus) == 0x0000B0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0000B8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Create_ReturnValue) == 0x0000C0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_AddChild_ReturnValue) == 0x0000C8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_AddChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_RemoveChildAt_ReturnValue) == 0x0000D0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_RemoveChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_ComponentBoundEvent_InVisibility) == 0x0000D1, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_ComponentBoundEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetPlayerState_ReturnValue) == 0x0000D8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CustomEvent_bNarrativeMode) == 0x0000E0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CustomEvent_bNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0000E8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_bSuccess_2) == 0x0000F0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CreateDelegate_OutputDelegate) == 0x0000F4, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CreateDelegate_OutputDelegate_1) == 0x000104, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CustomEvent_PlayerClan) == 0x000118, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CustomEvent_PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CustomEvent_bInSuccess) == 0x000120, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CustomEvent_bInSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CreateDelegate_OutputDelegate_2) == 0x000124, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_PlayAnimation_ReturnValue) == 0x000138, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CreateDelegate_OutputDelegate_3) == 0x000140, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Array_Index_Variable_3) == 0x000150, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetHud_ReturnValue) == 0x000158, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_CreateDelegate_OutputDelegate_4) == 0x000160, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000170, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetPlayerPawn_ReturnValue) == 0x000178, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000180, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_bSuccess_3) == 0x000190, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Get_Item_1) == 0x000198, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0001A0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x0001A8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_AsBPI_Elixir) == 0x0001D0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_AsBPI_Elixir' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, K2Node_DynamicCast_bSuccess_4) == 0x0001E0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_DoesImplementInterface_ReturnValue) == 0x0001E1, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_CanCollect_Can_Collect) == 0x0001E2, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_CanCollect_Can_Collect' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_IsValid_ReturnValue) == 0x0001E3, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Length_ReturnValue_2) == 0x0001E4, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Loop_Counter_Variable_1) == 0x0001E8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Add_ReturnValue) == 0x0001EC, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Less_IntInt_ReturnValue) == 0x0001F0, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Add_IntInt_ReturnValue) == 0x0001F4, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Loop_Counter_Variable_2) == 0x0001F8, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Less_IntInt_ReturnValue_1) == 0x0001FC, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Add_IntInt_ReturnValue_1) == 0x000200, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, Temp_int_Loop_Counter_Variable_3) == 0x000204, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000208, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x00020C, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000210, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Get_Item_2) == 0x000218, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Length_ReturnValue_3) == 0x000220, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_RemoveItem_ReturnValue) == 0x000224, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x000228, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_IsValid_ReturnValue_1) == 0x00022C, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Max_ReturnValue) == 0x000230, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_IsOverlappingActor_ReturnValue) == 0x000234, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_IsOverlappingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Get_Item_3) == 0x000238, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Length_ReturnValue_4) == 0x000240, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_IsValid_ReturnValue_2) == 0x000244, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Subtract_IntInt_ReturnValue_3) == 0x000248, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Subtract_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Max_ReturnValue_1) == 0x00024C, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Max_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS, CallFunc_Array_Contains_ReturnValue) == 0x000250, "Member 'WBP_MainHUD_VS_C_ExecuteUbergraph_WBP_MainHUD_VS::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_GetQuestWaypointsContainer \ +static_assert(alignof(WBP_MainHUD_VS_C_GetQuestWaypointsContainer) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_GetQuestWaypointsContainer"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_GetQuestWaypointsContainer) == 0x000010, "Wrong size on WBP_MainHUD_VS_C_GetQuestWaypointsContainer"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_GetQuestWaypointsContainer, Quest_waypoints_container) == 0x000000, "Member 'WBP_MainHUD_VS_C_GetQuestWaypointsContainer::Quest_waypoints_container' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_GetQuestWaypointsContainer, CallFunc_Get_Quest_Waypoints_Container_Quest_waypoint_container) == 0x000008, "Member 'WBP_MainHUD_VS_C_GetQuestWaypointsContainer::CallFunc_Get_Quest_Waypoints_Container_Quest_waypoint_container' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_HideAllSlots \ +static_assert(alignof(WBP_MainHUD_VS_C_HideAllSlots) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_HideAllSlots"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_HideAllSlots) == 0x000060, "Wrong size on WBP_MainHUD_VS_C_HideAllSlots"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_MainHUD_VS_C_HideAllSlots::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_MainHUD_VS_C_HideAllSlots::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_GetAllChildren_ReturnValue) == 0x000010, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, K2Node_DynamicCast_AsNamed_Slot) == 0x000038, "Member 'WBP_MainHUD_VS_C_HideAllSlots::K2Node_DynamicCast_AsNamed_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_MainHUD_VS_C_HideAllSlots::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_GetObjectName_ReturnValue) == 0x000048, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_GetObjectName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_EqualEqual_StriStri_ReturnValue) == 0x000058, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_EqualEqual_StriStri_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_EqualEqual_StriStri_ReturnValue_1) == 0x000059, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_EqualEqual_StriStri_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_HideAllSlots, CallFunc_BooleanOR_ReturnValue) == 0x00005A, "Member 'WBP_MainHUD_VS_C_HideAllSlots::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_InitNarrativeModeHUD \ +static_assert(alignof(WBP_MainHUD_VS_C_InitNarrativeModeHUD) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_InitNarrativeModeHUD"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_InitNarrativeModeHUD) == 0x000018, "Wrong size on WBP_MainHUD_VS_C_InitNarrativeModeHUD"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_InitNarrativeModeHUD, CallFunc_GetPlayerState_ReturnValue) == 0x000000, "Member 'WBP_MainHUD_VS_C_InitNarrativeModeHUD::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_InitNarrativeModeHUD, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000008, "Member 'WBP_MainHUD_VS_C_InitNarrativeModeHUD::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_InitNarrativeModeHUD, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_MainHUD_VS_C_InitNarrativeModeHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_InitNarrativeModeHUD, CallFunc_GetNarrativeModeEnabled_ReturnValue) == 0x000011, "Member 'WBP_MainHUD_VS_C_InitNarrativeModeHUD::CallFunc_GetNarrativeModeEnabled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_IsVideoPlaying \ +static_assert(alignof(WBP_MainHUD_VS_C_IsVideoPlaying) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_IsVideoPlaying"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_IsVideoPlaying) == 0x000038, "Wrong size on WBP_MainHUD_VS_C_IsVideoPlaying"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, ReturnValue) == 0x000000, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, CallFunc_GetSlotWidget_ReturnValue) == 0x000008, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, K2Node_DynamicCast_AsWBP_Multiple_Endings) == 0x000018, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::K2Node_DynamicCast_AsWBP_Multiple_Endings' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, CallFunc_IsVideoPlaying_IsPlaying) == 0x000021, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::CallFunc_IsVideoPlaying_IsPlaying' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, K2Node_DynamicCast_AsVideo_Player) == 0x000028, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::K2Node_DynamicCast_AsVideo_Player' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, CallFunc_IsPlaying_ReturnValue) == 0x000031, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::CallFunc_IsPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_IsVideoPlaying, CallFunc_IsPaused_ReturnValue) == 0x000032, "Member 'WBP_MainHUD_VS_C_IsVideoPlaying::CallFunc_IsPaused_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_OnClanChanged \ +static_assert(alignof(WBP_MainHUD_VS_C_OnClanChanged) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_OnClanChanged"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_OnClanChanged) == 0x000008, "Wrong size on WBP_MainHUD_VS_C_OnClanChanged"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_OnClanChanged, PlayerClan) == 0x000000, "Member 'WBP_MainHUD_VS_C_OnClanChanged::PlayerClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_OnNarrativeModeChanged \ +static_assert(alignof(WBP_MainHUD_VS_C_OnNarrativeModeChanged) == 0x000001, "Wrong alignment on WBP_MainHUD_VS_C_OnNarrativeModeChanged"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_OnNarrativeModeChanged) == 0x000001, "Wrong size on WBP_MainHUD_VS_C_OnNarrativeModeChanged"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_OnNarrativeModeChanged, bNarrativeMode) == 0x000000, "Member 'WBP_MainHUD_VS_C_OnNarrativeModeChanged::bNarrativeMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_OnPostSave \ +static_assert(alignof(WBP_MainHUD_VS_C_OnPostSave) == 0x000001, "Wrong alignment on WBP_MainHUD_VS_C_OnPostSave"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_OnPostSave) == 0x000001, "Wrong size on WBP_MainHUD_VS_C_OnPostSave"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_OnPostSave, bInSuccess) == 0x000000, "Member 'WBP_MainHUD_VS_C_OnPostSave::bInSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_SetAllSlotsVibility \ +static_assert(alignof(WBP_MainHUD_VS_C_SetAllSlotsVibility) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_SetAllSlotsVibility"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_SetAllSlotsVibility) == 0x000080, "Wrong size on WBP_MainHUD_VS_C_SetAllSlotsVibility"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, NewParam) == 0x000000, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::NewParam' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_GetAllChildren_ReturnValue) == 0x000018, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Array_Get_Item) == 0x000030, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, K2Node_DynamicCast_AsNamed_Slot) == 0x000038, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::K2Node_DynamicCast_AsNamed_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Array_Length_ReturnValue) == 0x000044, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_GetAllChildren_ReturnValue_1) == 0x000048, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_GetAllChildren_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Array_Get_Item_1) == 0x000060, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, K2Node_DynamicCast_AsWrestler_Base_Widget) == 0x000068, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::K2Node_DynamicCast_AsWrestler_Base_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Array_Length_ReturnValue_1) == 0x000074, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetAllSlotsVibility, CallFunc_Less_IntInt_ReturnValue_1) == 0x000078, "Member 'WBP_MainHUD_VS_C_SetAllSlotsVibility::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_SetNarrativeMode \ +static_assert(alignof(WBP_MainHUD_VS_C_SetNarrativeMode) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_SetNarrativeMode"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_SetNarrativeMode) == 0x000028, "Wrong size on WBP_MainHUD_VS_C_SetNarrativeMode"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, InNarrativeMode) == 0x000000, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::InNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, CallFunc_GetSlotWidget_ReturnValue) == 0x000010, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, CallFunc_GetSlotWidget_ReturnValue_1) == 0x000018, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::CallFunc_GetSlotWidget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetNarrativeMode, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'WBP_MainHUD_VS_C_SetNarrativeMode::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_SetReactiveCroshairScale \ +static_assert(alignof(WBP_MainHUD_VS_C_SetReactiveCroshairScale) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_SetReactiveCroshairScale"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_SetReactiveCroshairScale) == 0x0000B8, "Wrong size on WBP_MainHUD_VS_C_SetReactiveCroshairScale"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Value) == 0x000000, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, DeltaTime) == 0x000008, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, InterpSpeed) == 0x000010, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::InterpSpeed' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Thickness) == 0x000018, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Thickness' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Radius) == 0x000020, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Radius' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Temp_real_Variable) == 0x000028, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Temp_bool_Variable) == 0x000030, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Temp_real_Variable_1) == 0x000038, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Temp_bool_Variable_1) == 0x000040, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, K2Node_Select_Default) == 0x000048, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000050, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, Temp_bool_Variable_2) == 0x000070, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_GetPlayerPawn_ReturnValue) == 0x000078, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000080, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, K2Node_Select_Default_1) == 0x000098, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0000A0, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_IsValid_ReturnValue) == 0x0000A1, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_FInterpTo_Constant_ReturnValue) == 0x0000A8, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_SetReactiveCroshairScale, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0000B0, "Member 'WBP_MainHUD_VS_C_SetReactiveCroshairScale::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_StopVideo \ +static_assert(alignof(WBP_MainHUD_VS_C_StopVideo) == 0x000008, "Wrong alignment on WBP_MainHUD_VS_C_StopVideo"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_StopVideo) == 0x000038, "Wrong size on WBP_MainHUD_VS_C_StopVideo"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, ReturnValue) == 0x000000, "Member 'WBP_MainHUD_VS_C_StopVideo::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, CallFunc_GetSlotWidget_ReturnValue) == 0x000008, "Member 'WBP_MainHUD_VS_C_StopVideo::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WBP_MainHUD_VS_C_StopVideo::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, K2Node_DynamicCast_AsWBP_Multiple_Endings) == 0x000018, "Member 'WBP_MainHUD_VS_C_StopVideo::K2Node_DynamicCast_AsWBP_Multiple_Endings' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_MainHUD_VS_C_StopVideo::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, K2Node_DynamicCast_AsVideo_Player) == 0x000028, "Member 'WBP_MainHUD_VS_C_StopVideo::K2Node_DynamicCast_AsVideo_Player' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_StopVideo, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'WBP_MainHUD_VS_C_StopVideo::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainHUD_VS_C_ToggleAllSlotsOn \ +static_assert(alignof(WBP_MainHUD_VS_C_ToggleAllSlotsOn) == 0x000001, "Wrong alignment on WBP_MainHUD_VS_C_ToggleAllSlotsOn"); \ +static_assert(sizeof(WBP_MainHUD_VS_C_ToggleAllSlotsOn) == 0x000001, "Wrong size on WBP_MainHUD_VS_C_ToggleAllSlotsOn"); \ +static_assert(offsetof(WBP_MainHUD_VS_C_ToggleAllSlotsOn, bInStatus) == 0x000000, "Member 'WBP_MainHUD_VS_C_ToggleAllSlotsOn::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MainHUD_VS_C \ +static_assert(alignof(UWBP_MainHUD_VS_C) == 0x000008, "Wrong alignment on UWBP_MainHUD_VS_C"); \ +static_assert(sizeof(UWBP_MainHUD_VS_C) == 0x0004F0, "Wrong size on UWBP_MainHUD_VS_C"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, UberGraphFrame) == 0x0002D8, "Member 'UWBP_MainHUD_VS_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, AbilityWheelSlot) == 0x0002E0, "Member 'UWBP_MainHUD_VS_C::AbilityWheelSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, BossHealthMeter) == 0x0002E8, "Member 'UWBP_MainHUD_VS_C::BossHealthMeter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, CentralNotificationSlot) == 0x0002F0, "Member 'UWBP_MainHUD_VS_C::CentralNotificationSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, CloseCaption) == 0x0002F8, "Member 'UWBP_MainHUD_VS_C::CloseCaption' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, CrosshairSlot) == 0x000300, "Member 'UWBP_MainHUD_VS_C::CrosshairSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, DialogueReactionSlot) == 0x000308, "Member 'UWBP_MainHUD_VS_C::DialogueReactionSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, DialogueSlot) == 0x000310, "Member 'UWBP_MainHUD_VS_C::DialogueSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, DisplayNoteSlot) == 0x000318, "Member 'UWBP_MainHUD_VS_C::DisplayNoteSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, FadeOverlaySlot) == 0x000320, "Member 'UWBP_MainHUD_VS_C::FadeOverlaySlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, InteractionSlot) == 0x000328, "Member 'UWBP_MainHUD_VS_C::InteractionSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, InteractionSlotParent) == 0x000330, "Member 'UWBP_MainHUD_VS_C::InteractionSlotParent' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, MainCanvas) == 0x000338, "Member 'UWBP_MainHUD_VS_C::MainCanvas' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, MasqueradeSlot) == 0x000340, "Member 'UWBP_MainHUD_VS_C::MasqueradeSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, PlayerHUDSlot) == 0x000348, "Member 'UWBP_MainHUD_VS_C::PlayerHUDSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, QuestProgressSlot) == 0x000350, "Member 'UWBP_MainHUD_VS_C::QuestProgressSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, SavingSlot) == 0x000358, "Member 'UWBP_MainHUD_VS_C::SavingSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, SideContainer) == 0x000360, "Member 'UWBP_MainHUD_VS_C::SideContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, SideNotificationSlot) == 0x000368, "Member 'UWBP_MainHUD_VS_C::SideNotificationSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, StealthSlot) == 0x000370, "Member 'UWBP_MainHUD_VS_C::StealthSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, TempTextSlot) == 0x000378, "Member 'UWBP_MainHUD_VS_C::TempTextSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, TutorialSlot) == 0x000380, "Member 'UWBP_MainHUD_VS_C::TutorialSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, VideoSlot) == 0x000388, "Member 'UWBP_MainHUD_VS_C::VideoSlot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_BossHealthMeter) == 0x000390, "Member 'UWBP_MainHUD_VS_C::WBP_BossHealthMeter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_CaptionWidgetController) == 0x000398, "Member 'UWBP_MainHUD_VS_C::WBP_CaptionWidgetController' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_CentralContainerWidget) == 0x0003A0, "Member 'UWBP_MainHUD_VS_C::WBP_CentralContainerWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_Crosshair) == 0x0003A8, "Member 'UWBP_MainHUD_VS_C::WBP_Crosshair' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_DialogueMinimal) == 0x0003B0, "Member 'UWBP_MainHUD_VS_C::WBP_DialogueMinimal' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_DpadInGame) == 0x0003B8, "Member 'UWBP_MainHUD_VS_C::WBP_DpadInGame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_Fade) == 0x0003C0, "Member 'UWBP_MainHUD_VS_C::WBP_Fade' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_Interaction_Parent) == 0x0003C8, "Member 'UWBP_MainHUD_VS_C::WBP_Interaction_Parent' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_MasqueradeWidget) == 0x0003D0, "Member 'UWBP_MainHUD_VS_C::WBP_MasqueradeWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_NotesPopUp) == 0x0003D8, "Member 'UWBP_MainHUD_VS_C::WBP_NotesPopUp' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_PlayerHUD) == 0x0003E0, "Member 'UWBP_MainHUD_VS_C::WBP_PlayerHUD' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_QuestProgress) == 0x0003E8, "Member 'UWBP_MainHUD_VS_C::WBP_QuestProgress' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_SaveLoadIcon) == 0x0003F0, "Member 'UWBP_MainHUD_VS_C::WBP_SaveLoadIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_Stealth) == 0x0003F8, "Member 'UWBP_MainHUD_VS_C::WBP_Stealth' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_TutorialWidget) == 0x000400, "Member 'UWBP_MainHUD_VS_C::WBP_TutorialWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_UI_DialogReaction) == 0x000408, "Member 'UWBP_MainHUD_VS_C::WBP_UI_DialogReaction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_UI_DialogReaction_1) == 0x000410, "Member 'UWBP_MainHUD_VS_C::WBP_UI_DialogReaction_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WBP_UI_DialogReaction_2) == 0x000418, "Member 'UWBP_MainHUD_VS_C::WBP_UI_DialogReaction_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, AbilitiesInNarrativeMode) == 0x000420, "Member 'UWBP_MainHUD_VS_C::AbilitiesInNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, Distances) == 0x000428, "Member 'UWBP_MainHUD_VS_C::Distances' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, Rotation_Deltas) == 0x000438, "Member 'UWBP_MainHUD_VS_C::Rotation_Deltas' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, reaction_distance) == 0x000448, "Member 'UWBP_MainHUD_VS_C::reaction_distance' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, NewEventDispatcher) == 0x000450, "Member 'UWBP_MainHUD_VS_C::NewEventDispatcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, ReactiveCrosshairLocation) == 0x000460, "Member 'UWBP_MainHUD_VS_C::ReactiveCrosshairLocation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WasRecentlyInCombat) == 0x000478, "Member 'UWBP_MainHUD_VS_C::WasRecentlyInCombat' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, ReactiveCrosshairMaterialInstance) == 0x000480, "Member 'UWBP_MainHUD_VS_C::ReactiveCrosshairMaterialInstance' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, PlayerIsVisible) == 0x000488, "Member 'UWBP_MainHUD_VS_C::PlayerIsVisible' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, CurrentReactiveCrosshairActor) == 0x000490, "Member 'UWBP_MainHUD_VS_C::CurrentReactiveCrosshairActor' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, Min_Distance) == 0x000498, "Member 'UWBP_MainHUD_VS_C::Min_Distance' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, CrosshairScale) == 0x0004A0, "Member 'UWBP_MainHUD_VS_C::CrosshairScale' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, ReactiveCrosshairFastTick) == 0x0004A8, "Member 'UWBP_MainHUD_VS_C::ReactiveCrosshairFastTick' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, ReactiveCrosshairSlowTick) == 0x0004B0, "Member 'UWBP_MainHUD_VS_C::ReactiveCrosshairSlowTick' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, FastTick) == 0x0004B8, "Member 'UWBP_MainHUD_VS_C::FastTick' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, WhitelistTriggers) == 0x0004C0, "Member 'UWBP_MainHUD_VS_C::WhitelistTriggers' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, FilteredCrosshairActors) == 0x0004D0, "Member 'UWBP_MainHUD_VS_C::FilteredCrosshairActors' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainHUD_VS_C, OnKeyBindingsRemapped) == 0x0004E0, "Member 'UWBP_MainHUD_VS_C::OnKeyBindingsRemapped' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer \ +static_assert(alignof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer) == 0x000004, "Wrong alignment on WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer"); \ +static_assert(sizeof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer) == 0x000008, "Wrong size on WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer"); \ +static_assert(offsetof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer, EntryPoint) == 0x000000, "Member 'WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer, K2Node_Event_InCurrentInputType) == 0x000004, "Member 'WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer, K2Node_SwitchEnum_CmpSuccess) == 0x000005, "Member 'WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer, CallFunc_IsClanSelected_bIsValid) == 0x000006, "Member 'WBP_DpadContainer_C_ExecuteUbergraph_WBP_DpadContainer::CallFunc_IsClanSelected_bIsValid' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadContainer_C_IsClanSelected \ +static_assert(alignof(WBP_DpadContainer_C_IsClanSelected) == 0x000008, "Wrong alignment on WBP_DpadContainer_C_IsClanSelected"); \ +static_assert(sizeof(WBP_DpadContainer_C_IsClanSelected) == 0x000038, "Wrong size on WBP_DpadContainer_C_IsClanSelected"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, bIsValid) == 0x000000, "Member 'WBP_DpadContainer_C_IsClanSelected::bIsValid' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, CallFunc_GetPlayerState_ReturnValue) == 0x000008, "Member 'WBP_DpadContainer_C_IsClanSelected::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000010, "Member 'WBP_DpadContainer_C_IsClanSelected::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_DpadContainer_C_IsClanSelected::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, CallFunc_GetClan_ReturnValue) == 0x000020, "Member 'WBP_DpadContainer_C_IsClanSelected::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, CallFunc_GetProperty_ReturnValue) == 0x000028, "Member 'WBP_DpadContainer_C_IsClanSelected::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000030, "Member 'WBP_DpadContainer_C_IsClanSelected::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DpadContainer_C_IsClanSelected, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000031, "Member 'WBP_DpadContainer_C_IsClanSelected::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DpadContainer_C_OnInputChanged \ +static_assert(alignof(WBP_DpadContainer_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_DpadContainer_C_OnInputChanged"); \ +static_assert(sizeof(WBP_DpadContainer_C_OnInputChanged) == 0x000001, "Wrong size on WBP_DpadContainer_C_OnInputChanged"); \ +static_assert(offsetof(WBP_DpadContainer_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_DpadContainer_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DpadContainer_C \ +static_assert(alignof(UWBP_DpadContainer_C) == 0x000008, "Wrong alignment on UWBP_DpadContainer_C"); \ +static_assert(sizeof(UWBP_DpadContainer_C) == 0x000350, "Wrong size on UWBP_DpadContainer_C"); \ +static_assert(offsetof(UWBP_DpadContainer_C, UberGraphFrame) == 0x000330, "Member 'UWBP_DpadContainer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadContainer_C, Fade) == 0x000338, "Member 'UWBP_DpadContainer_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadContainer_C, WBP_DpadInGame_Controller) == 0x000340, "Member 'UWBP_DpadContainer_C::WBP_DpadInGame_Controller' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DpadContainer_C, WBP_DpadInGame_MK) == 0x000348, "Member 'UWBP_DpadContainer_C::WBP_DpadInGame_MK' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_ActivateShieldHud \ +static_assert(alignof(WBP_HealthAndBlood_C_ActivateShieldHud) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_ActivateShieldHud"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_ActivateShieldHud) == 0x000001, "Wrong size on WBP_HealthAndBlood_C_ActivateShieldHud"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ActivateShieldHud, IsActive) == 0x000000, "Member 'WBP_HealthAndBlood_C_ActivateShieldHud::IsActive' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB \ +static_assert(alignof(WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB) == 0x0000B0, "Wrong size on WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB, Payload) == 0x000000, "Member 'WBP_HealthAndBlood_C_EventReceived_79B0975E47BCD367F96D93A6DC14CDDB::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821 \ +static_assert(alignof(WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821) == 0x0000B0, "Wrong size on WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821, Payload) == 0x000000, "Member 'WBP_HealthAndBlood_C_EventReceived_7EE28DF346A2C57DC6B71BBA27B7D821::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1 \ +static_assert(alignof(WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1) == 0x0000B0, "Wrong size on WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1, Payload) == 0x000000, "Member 'WBP_HealthAndBlood_C_EventReceived_F306C27547EDBE965FBE79BA3905F0D1::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood \ +static_assert(alignof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood) == 0x000658, "Wrong size on WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, EntryPoint) == 0x000000, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_PlayAnimation_ReturnValue) == 0x000008, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CustomEvent_Payload_1) == 0x000020, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_struct_Variable) == 0x0000D0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CreateDelegate_OutputDelegate_1) == 0x000180, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CustomEvent_Payload) == 0x000190, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_struct_Variable_1) == 0x000240, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_int_Loop_Counter_Variable) == 0x0002F0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Add_IntInt_ReturnValue) == 0x0002F4, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0002F8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x0002F9, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000300, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x000308, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_ReturnValue) == 0x000310, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_ReturnValue_1) == 0x000318, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_MakeVector2D_ReturnValue) == 0x000320, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_MakeVector2D_ReturnValue_1) == 0x000330, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_MakeVector2D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_ReturnValue_2) == 0x000340, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_ReturnValue_3) == 0x000348, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_MakeVector2D_ReturnValue_2) == 0x000350, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_MakeVector2D_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_MakeVector2D_ReturnValue_3) == 0x000360, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_MakeVector2D_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_ReturnValue_4) == 0x000370, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HasTag_ReturnValue) == 0x000378, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_MakeVector2D_ReturnValue_4) == 0x000380, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_MakeVector2D_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_int_Array_Index_Variable) == 0x000390, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_int_Loop_Counter_Variable_1) == 0x000394, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetAllChildren_ReturnValue) == 0x000398, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Add_IntInt_ReturnValue_1) == 0x0003A8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Array_Length_ReturnValue) == 0x0003AC, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Less_IntInt_ReturnValue) == 0x0003B0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetOwningPlayer_ReturnValue) == 0x0003B8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_Event_IsActive) == 0x0003C0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_Event_IsActive' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_Event_bInStatus) == 0x0003C1, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_Event_bInStatus' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetAllChildren_ReturnValue_1) == 0x0003C8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetAllChildren_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Array_Get_Item) == 0x0003D8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Array_Length_ReturnValue_1) == 0x0003E0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Less_IntInt_ReturnValue_1) == 0x0003E4, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_Event_InCurrentInputType) == 0x0003E5, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_struct_Variable_2) == 0x0003E8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, Temp_int_Array_Index_Variable_1) == 0x000498, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Array_Get_Item_1) == 0x0004A0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_DynamicCast_AsUser_Widget) == 0x0004A8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_DynamicCast_AsUser_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_DynamicCast_bSuccess) == 0x0004B0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0004B8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetEffectMaterial_ReturnValue) == 0x0004C0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetEffectMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2) == 0x0004C8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x0004D0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0004D8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_PlayAnimation_ReturnValue_1) == 0x0004E0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_IsValid_ReturnValue) == 0x0004E8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_PlayAnimationReverse_ReturnValue) == 0x0004F0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetOwningPlayerPawn_ReturnValue_1) == 0x0004F8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetOwningPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CustomEvent_Payload_2) == 0x000500, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x0005B0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_IsValid_ReturnValue_1) == 0x0005B8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GetOwningPlayerPawn_ReturnValue_2) == 0x0005C0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GetOwningPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x0005C8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x0005D0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_IsValid_ReturnValue_2) == 0x0005D8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SlotAsCanvasSlot_ReturnValue_1) == 0x0005E0, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SlotAsCanvasSlot_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, K2Node_CreateDelegate_OutputDelegate_2) == 0x0005E8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SlotAsCanvasSlot_ReturnValue_2) == 0x0005F8, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SlotAsCanvasSlot_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SlotAsCanvasSlot_ReturnValue_3) == 0x000600, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SlotAsCanvasSlot_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SlotAsCanvasSlot_ReturnValue_4) == 0x000608, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SlotAsCanvasSlot_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_Value_ImplicitCast) == 0x000610, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_Value_ImplicitCast_1) == 0x000618, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_Value_ImplicitCast_2) == 0x000620, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_Value_ImplicitCast_3) == 0x000628, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_Value_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_HealthValueRemap_Value_ImplicitCast_4) == 0x000630, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_HealthValueRemap_Value_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000638, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_1) == 0x000640, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast) == 0x000648, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_1) == 0x00064C, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SetRenderOpacity_InOpacity_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000650, "Member 'WBP_HealthAndBlood_C_ExecuteUbergraph_WBP_HealthAndBlood::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_HealthValueRemap \ +static_assert(alignof(WBP_HealthAndBlood_C_HealthValueRemap) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_HealthValueRemap"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_HealthValueRemap) == 0x000038, "Wrong size on WBP_HealthAndBlood_C_HealthValueRemap"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, Value) == 0x000000, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, OutRangeA) == 0x000008, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::OutRangeA' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, OutRangeB) == 0x000010, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::OutRangeB' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, ReturnValue) == 0x000018, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, CallFunc_MakeLiteralDouble_ReturnValue) == 0x000020, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::CallFunc_MakeLiteralDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, CallFunc_MakeLiteralDouble_ReturnValue_1) == 0x000028, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::CallFunc_MakeLiteralDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_HealthValueRemap, CallFunc_MapRangeClamped_ReturnValue) == 0x000030, "Member 'WBP_HealthAndBlood_C_HealthValueRemap::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_OnInputChanged \ +static_assert(alignof(WBP_HealthAndBlood_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_OnInputChanged"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_OnInputChanged) == 0x000001, "Wrong size on WBP_HealthAndBlood_C_OnInputChanged"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_HealthAndBlood_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_ToggleVisibility \ +static_assert(alignof(WBP_HealthAndBlood_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_HealthAndBlood_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_HealthAndBlood_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_UpdateConsumableHUDInput \ +static_assert(alignof(WBP_HealthAndBlood_C_UpdateConsumableHUDInput) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_UpdateConsumableHUDInput"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_UpdateConsumableHUDInput) == 0x000002, "Wrong size on WBP_HealthAndBlood_C_UpdateConsumableHUDInput"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateConsumableHUDInput, InInput) == 0x000000, "Member 'WBP_HealthAndBlood_C_UpdateConsumableHUDInput::InInput' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateConsumableHUDInput, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_HealthAndBlood_C_UpdateConsumableHUDInput::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_UpdateConsumablesVisibility \ +static_assert(alignof(WBP_HealthAndBlood_C_UpdateConsumablesVisibility) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_UpdateConsumablesVisibility"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_UpdateConsumablesVisibility) == 0x000001, "Wrong size on WBP_HealthAndBlood_C_UpdateConsumablesVisibility"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateConsumablesVisibility, bShow) == 0x000000, "Member 'WBP_HealthAndBlood_C_UpdateConsumablesVisibility::bShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_UpdateFabienHUD \ +static_assert(alignof(WBP_HealthAndBlood_C_UpdateFabienHUD) == 0x000008, "Wrong alignment on WBP_HealthAndBlood_C_UpdateFabienHUD"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_UpdateFabienHUD) == 0x000030, "Wrong size on WBP_HealthAndBlood_C_UpdateFabienHUD"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateFabienHUD, CallFunc_IsPlayerFabien_Return) == 0x000000, "Member 'WBP_HealthAndBlood_C_UpdateFabienHUD::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateFabienHUD, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000008, "Member 'WBP_HealthAndBlood_C_UpdateFabienHUD::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateFabienHUD, CallFunc_Not_PreBool_ReturnValue) == 0x000010, "Member 'WBP_HealthAndBlood_C_UpdateFabienHUD::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateFabienHUD, CallFunc_SelectFloat_ReturnValue) == 0x000018, "Member 'WBP_HealthAndBlood_C_UpdateFabienHUD::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateFabienHUD, CallFunc_MakeVector2D_ReturnValue) == 0x000020, "Member 'WBP_HealthAndBlood_C_UpdateFabienHUD::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_HealthAndBlood_C_UpdateHealthVisibility \ +static_assert(alignof(WBP_HealthAndBlood_C_UpdateHealthVisibility) == 0x000001, "Wrong alignment on WBP_HealthAndBlood_C_UpdateHealthVisibility"); \ +static_assert(sizeof(WBP_HealthAndBlood_C_UpdateHealthVisibility) == 0x000001, "Wrong size on WBP_HealthAndBlood_C_UpdateHealthVisibility"); \ +static_assert(offsetof(WBP_HealthAndBlood_C_UpdateHealthVisibility, bShow) == 0x000000, "Member 'WBP_HealthAndBlood_C_UpdateHealthVisibility::bShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_HealthAndBlood_C \ +static_assert(alignof(UWBP_HealthAndBlood_C) == 0x000008, "Wrong alignment on UWBP_HealthAndBlood_C"); \ +static_assert(sizeof(UWBP_HealthAndBlood_C) == 0x0003F8, "Wrong size on UWBP_HealthAndBlood_C"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, UberGraphFrame) == 0x000330, "Member 'UWBP_HealthAndBlood_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, ExtraHealthGlow) == 0x000338, "Member 'UWBP_HealthAndBlood_C::ExtraHealthGlow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, ArmorActivateAnim) == 0x000340, "Member 'UWBP_HealthAndBlood_C::ArmorActivateAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, ArmorRetainer) == 0x000348, "Member 'UWBP_HealthAndBlood_C::ArmorRetainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, DivLine02) == 0x000350, "Member 'UWBP_HealthAndBlood_C::DivLine02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, DivLine03) == 0x000358, "Member 'UWBP_HealthAndBlood_C::DivLine03' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, Elixirs) == 0x000360, "Member 'UWBP_HealthAndBlood_C::Elixirs' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, ExtraGlow) == 0x000368, "Member 'UWBP_HealthAndBlood_C::ExtraGlow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, Frame_Passive) == 0x000370, "Member 'UWBP_HealthAndBlood_C::Frame_Passive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, HealthBar) == 0x000378, "Member 'UWBP_HealthAndBlood_C::HealthBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, HealthbarBorder) == 0x000380, "Member 'UWBP_HealthAndBlood_C::HealthbarBorder' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, HealthbarOutline) == 0x000388, "Member 'UWBP_HealthAndBlood_C::HealthbarOutline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, HP) == 0x000390, "Member 'UWBP_HealthAndBlood_C::HP' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, Texture_bg_Passive) == 0x000398, "Member 'UWBP_HealthAndBlood_C::Texture_bg_Passive' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WBP_ConsumablesHUDWidget) == 0x0003A0, "Member 'UWBP_HealthAndBlood_C::WBP_ConsumablesHUDWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WBP_ConsumablesHUDWidgetMK) == 0x0003A8, "Member 'UWBP_HealthAndBlood_C::WBP_ConsumablesHUDWidgetMK' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WBP_PassiveAbility) == 0x0003B0, "Member 'UWBP_HealthAndBlood_C::WBP_PassiveAbility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WBP_WrestlerAttributeMeter_Health) == 0x0003B8, "Member 'UWBP_HealthAndBlood_C::WBP_WrestlerAttributeMeter_Health' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WBP_WrestlerAttributeWidget_Shield_374) == 0x0003C0, "Member 'UWBP_HealthAndBlood_C::WBP_WrestlerAttributeWidget_Shield_374' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, WidgetPanel) == 0x0003C8, "Member 'UWBP_HealthAndBlood_C::WidgetPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, ShieldVisibility) == 0x0003D0, "Member 'UWBP_HealthAndBlood_C::ShieldVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, Target) == 0x0003D8, "Member 'UWBP_HealthAndBlood_C::Target' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, XPVisibleDuration) == 0x0003E0, "Member 'UWBP_HealthAndBlood_C::XPVisibleDuration' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, LerpValue) == 0x0003E8, "Member 'UWBP_HealthAndBlood_C::LerpValue' has a wrong offset!"); \ +static_assert(offsetof(UWBP_HealthAndBlood_C, Update_Timer) == 0x0003F0, "Member 'UWBP_HealthAndBlood_C::Update_Timer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_AddEnemyAwerness \ +static_assert(alignof(WBP_PlayerHUD_C_AddEnemyAwerness) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_AddEnemyAwerness"); \ +static_assert(sizeof(WBP_PlayerHUD_C_AddEnemyAwerness) == 0x000008, "Wrong size on WBP_PlayerHUD_C_AddEnemyAwerness"); \ +static_assert(offsetof(WBP_PlayerHUD_C_AddEnemyAwerness, EnemyLocation) == 0x000000, "Member 'WBP_PlayerHUD_C_AddEnemyAwerness::EnemyLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ApplyDamageHud \ +static_assert(alignof(WBP_PlayerHUD_C_ApplyDamageHud) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_ApplyDamageHud"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ApplyDamageHud) == 0x000030, "Wrong size on WBP_PlayerHUD_C_ApplyDamageHud"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ApplyDamageHud, Instigator) == 0x000000, "Member 'WBP_PlayerHUD_C_ApplyDamageHud::Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ApplyDamageHud, Damage) == 0x000008, "Member 'WBP_PlayerHUD_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ApplyDamageHud, Direction) == 0x000010, "Member 'WBP_PlayerHUD_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ApplyDamageHud, Tag) == 0x000028, "Member 'WBP_PlayerHUD_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD \ +static_assert(alignof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD) == 0x000108, "Wrong size on WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, EntryPoint) == 0x000000, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_GetAllChildren_ReturnValue) == 0x000008, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Array_Length_ReturnValue) == 0x00001C, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Less_IntInt_ReturnValue) == 0x000024, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, Temp_int_Array_Index_Variable) == 0x000028, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Array_Get_Item) == 0x000030, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_AsWrestler_Base_Widget) == 0x000038, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_AsWrestler_Base_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, Temp_int_Array_Index_Variable_1) == 0x000044, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_GetOwningPlayer_ReturnValue) == 0x000048, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_GetOwningPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_AsBPI_Hud_Actions) == 0x000050, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_AsBPI_Hud_Actions' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_bSuccess_1) == 0x000060, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_GetAllChildren_ReturnValue_1) == 0x000068, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_GetAllChildren_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_Instigator) == 0x000078, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_Instigator' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_Damage) == 0x000080, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_Direction) == 0x000088, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_Tag) == 0x0000A0, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Array_Get_Item_1) == 0x0000A8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_AsUser_Widget) == 0x0000B0, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_AsUser_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_bSuccess_2) == 0x0000B8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Array_Length_ReturnValue_1) == 0x0000BC, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_InActor) == 0x0000C0, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_InActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_CustomEvent_DeadActor) == 0x0000C8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_CustomEvent_DeadActor' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0000D8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_DynamicCast_bSuccess_3) == 0x0000E0, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, Temp_int_Loop_Counter_Variable_1) == 0x0000E4, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_CreateDelegate_OutputDelegate) == 0x0000E8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000F8, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000FC, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD, K2Node_Event_bInStatus) == 0x000100, "Member 'WBP_PlayerHUD_C_ExecuteUbergraph_WBP_PlayerHUD::K2Node_Event_bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_OnCharacterDeath \ +static_assert(alignof(WBP_PlayerHUD_C_OnCharacterDeath) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_OnCharacterDeath"); \ +static_assert(sizeof(WBP_PlayerHUD_C_OnCharacterDeath) == 0x000008, "Wrong size on WBP_PlayerHUD_C_OnCharacterDeath"); \ +static_assert(offsetof(WBP_PlayerHUD_C_OnCharacterDeath, DeadActor) == 0x000000, "Member 'WBP_PlayerHUD_C_OnCharacterDeath::DeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_OnNewTarget \ +static_assert(alignof(WBP_PlayerHUD_C_OnNewTarget) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_OnNewTarget"); \ +static_assert(sizeof(WBP_PlayerHUD_C_OnNewTarget) == 0x000010, "Wrong size on WBP_PlayerHUD_C_OnNewTarget"); \ +static_assert(offsetof(WBP_PlayerHUD_C_OnNewTarget, NewEnemy) == 0x000000, "Member 'WBP_PlayerHUD_C_OnNewTarget::NewEnemy' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerHUD_C_OnNewTarget, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x000008, "Member 'WBP_PlayerHUD_C_OnNewTarget::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ShowDebugInfo \ +static_assert(alignof(WBP_PlayerHUD_C_ShowDebugInfo) == 0x000008, "Wrong alignment on WBP_PlayerHUD_C_ShowDebugInfo"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ShowDebugInfo) == 0x000008, "Wrong size on WBP_PlayerHUD_C_ShowDebugInfo"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ShowDebugInfo, InActor) == 0x000000, "Member 'WBP_PlayerHUD_C_ShowDebugInfo::InActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ShowHideConsumables \ +static_assert(alignof(WBP_PlayerHUD_C_ShowHideConsumables) == 0x000001, "Wrong alignment on WBP_PlayerHUD_C_ShowHideConsumables"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ShowHideConsumables) == 0x000001, "Wrong size on WBP_PlayerHUD_C_ShowHideConsumables"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ShowHideConsumables, bShow) == 0x000000, "Member 'WBP_PlayerHUD_C_ShowHideConsumables::bShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ShowHideHealth \ +static_assert(alignof(WBP_PlayerHUD_C_ShowHideHealth) == 0x000001, "Wrong alignment on WBP_PlayerHUD_C_ShowHideHealth"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ShowHideHealth) == 0x000001, "Wrong size on WBP_PlayerHUD_C_ShowHideHealth"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ShowHideHealth, bShow) == 0x000000, "Member 'WBP_PlayerHUD_C_ShowHideHealth::bShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerHUD_C_ToggleVisibility \ +static_assert(alignof(WBP_PlayerHUD_C_ToggleVisibility) == 0x000001, "Wrong alignment on WBP_PlayerHUD_C_ToggleVisibility"); \ +static_assert(sizeof(WBP_PlayerHUD_C_ToggleVisibility) == 0x000001, "Wrong size on WBP_PlayerHUD_C_ToggleVisibility"); \ +static_assert(offsetof(WBP_PlayerHUD_C_ToggleVisibility, bInStatus) == 0x000000, "Member 'WBP_PlayerHUD_C_ToggleVisibility::bInStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_PlayerHUD_C \ +static_assert(alignof(UWBP_PlayerHUD_C) == 0x000008, "Wrong alignment on UWBP_PlayerHUD_C"); \ +static_assert(sizeof(UWBP_PlayerHUD_C) == 0x000320, "Wrong size on UWBP_PlayerHUD_C"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_PlayerHUD_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, PlayerHUDPanel) == 0x0002D0, "Member 'UWBP_PlayerHUD_C::PlayerHUDPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, reticule) == 0x0002D8, "Member 'UWBP_PlayerHUD_C::reticule' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_ABTestAltAbility) == 0x0002E0, "Member 'UWBP_PlayerHUD_C::WBP_ABTestAltAbility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_DebugText) == 0x0002E8, "Member 'UWBP_PlayerHUD_C::WBP_DebugText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_EnemyAwernessContainer) == 0x0002F0, "Member 'UWBP_PlayerHUD_C::WBP_EnemyAwernessContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_EquippedAbilityWidget) == 0x0002F8, "Member 'UWBP_PlayerHUD_C::WBP_EquippedAbilityWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_HealthAndBlood) == 0x000300, "Member 'UWBP_PlayerHUD_C::WBP_HealthAndBlood' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_HitReactionContainer) == 0x000308, "Member 'UWBP_PlayerHUD_C::WBP_HitReactionContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, WBP_TargetIndicator) == 0x000310, "Member 'UWBP_PlayerHUD_C::WBP_TargetIndicator' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerHUD_C, CurrentTargetEnemy) == 0x000318, "Member 'UWBP_PlayerHUD_C::CurrentTargetEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_Add_Arrows \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_Add_Arrows) == 0x000010, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_Add_Arrows"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_Add_Arrows) == 0x000240, "Wrong size on BP_ReactiveCrosshairTrigger_C_Add_Arrows"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_MakeTransform_ReturnValue) == 0x000010, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_AddComponent_ReturnValue) == 0x000070, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000078, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, Temp_int_Loop_Counter_Variable_1) == 0x000088, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Array_Get_Item) == 0x000090, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Add_IntInt_ReturnValue_1) == 0x000098, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Array_Length_ReturnValue) == 0x00009C, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000A0, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Less_IntInt_ReturnValue) == 0x0000B8, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Array_Get_Item_1) == 0x0000C0, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Array_Length_ReturnValue_1) == 0x0000E8, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0000F0, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000F8, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, K2Node_DynamicCast_AsActor) == 0x000100, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_IsValid_ReturnValue) == 0x000109, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000110, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_FindLookAtRotation_ReturnValue) == 0x000128, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_Vector_Distance_ReturnValue) == 0x000140, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_K2_SetWorldRotation_SweepHitResult) == 0x000148, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_K2_SetWorldRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_Add_Arrows, CallFunc_SetArrowLength_NewLength_ImplicitCast) == 0x000230, "Member 'BP_ReactiveCrosshairTrigger_C_Add_Arrows::CallFunc_SetArrowLength_NewLength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature) == 0x000010, "Wrong size on BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature, OverlappedActor) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_0_ActorBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature) == 0x000010, "Wrong size on BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature, OverlappedActor) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature::OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_ReactiveCrosshairTrigger_C_BndEvt__BP_ReactiveCrosshairTrigger_TriggerVolume_K2Node_ComponentBoundEvent_1_ActorEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger) == 0x000220, "Wrong size on BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, EntryPoint) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetAllWidgetsOfClass_FoundWidgets) == 0x000008, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetAllWidgetsOfClass_FoundWidgets' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Length_ReturnValue) == 0x000018, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Array_Index_Variable_1) == 0x00002C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Loop_Counter_Variable_1) == 0x000030, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Less_IntInt_ReturnValue) == 0x000034, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Add_IntInt_ReturnValue_1) == 0x000038, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Array_Index_Variable_2) == 0x00003C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Loop_Counter_Variable_2) == 0x000040, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Get_Item) == 0x000048, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Add_IntInt_ReturnValue_2) == 0x000050, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_Event_OtherActor_1) == 0x000058, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Array_Index_Variable_3) == 0x000068, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Length_ReturnValue_1) == 0x00006C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000098, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0000A0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsActor) == 0x0000A8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsOverlappingActor_ReturnValue) == 0x0000B1, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsOverlappingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue_1) == 0x0000B2, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetComponentByClass_ReturnValue) == 0x0000B8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue_2) == 0x0000C0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_Event_OtherActor) == 0x0000C8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0000D0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000D8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x0000D9, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Length_ReturnValue_2) == 0x0000DC, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Array_Index_Variable_4) == 0x0000E0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Get_Item_2) == 0x0000E8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000110, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsActor_1) == 0x000118, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess_1) == 0x000120, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_ComponentBoundEvent_OverlappedActor_1) == 0x000128, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_ComponentBoundEvent_OverlappedActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000130, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000138, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess_2) == 0x000148, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x000149, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetItemState_ReturnValue) == 0x00014A, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetItemState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_SwitchEnum_CmpSuccess) == 0x00014B, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue_3) == 0x00014C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsBP_Telekinesis_Interactable) == 0x000150, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsBP_Telekinesis_Interactable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess_3) == 0x000158, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsWrestler_Item_State_Interface_1) == 0x000160, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsWrestler_Item_State_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess_4) == 0x000170, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetItemState_ReturnValue_1) == 0x000171, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetItemState_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_SwitchEnum_CmpSuccess_1) == 0x000172, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000173, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_SwitchEnum_CmpSuccess_2) == 0x000174, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000178, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_AsBP_Elixir) == 0x000180, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_AsBP_Elixir' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_DynamicCast_bSuccess_5) == 0x000188, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue_4) == 0x000189, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_DoesImplementInterface_ReturnValue) == 0x00018A, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_ComponentBoundEvent_OverlappedActor) == 0x000190, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_ComponentBoundEvent_OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, K2Node_ComponentBoundEvent_OtherActor) == 0x000198, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_EqualEqual_ObjectObject_ReturnValue_3) == 0x0001A0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_EqualEqual_ObjectObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0001A8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsOverlappingActor_ReturnValue_1) == 0x0001B0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsOverlappingActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0001B8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Loop_Counter_Variable_3) == 0x0001C8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Get_Item_3) == 0x0001D0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_IsValid_ReturnValue_5) == 0x0001D8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Less_IntInt_ReturnValue_1) == 0x0001D9, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Add_IntInt_ReturnValue_3) == 0x0001DC, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Length_ReturnValue_3) == 0x0001E0, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Less_IntInt_ReturnValue_2) == 0x0001E4, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_GetAllWidgetsOfClass_FoundWidgets_1) == 0x0001E8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_GetAllWidgetsOfClass_FoundWidgets_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, Temp_int_Loop_Counter_Variable_4) == 0x0001F8, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Get_Item_4) == 0x000200, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Less_IntInt_ReturnValue_3) == 0x000208, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_RemoveItem_ReturnValue) == 0x000209, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Add_IntInt_ReturnValue_4) == 0x00020C, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_Length_ReturnValue_4) == 0x000210, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Less_IntInt_ReturnValue_4) == 0x000214, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger, CallFunc_Array_AddUnique_ReturnValue) == 0x000218, "Member 'BP_ReactiveCrosshairTrigger_C_ExecuteUbergraph_BP_ReactiveCrosshairTrigger::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap) == 0x000008, "Wrong size on BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairTrigger_C_UserConstructionScript \ +static_assert(alignof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_ReactiveCrosshairTrigger_C_UserConstructionScript"); \ +static_assert(sizeof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript) == 0x000360, "Wrong size on BP_ReactiveCrosshairTrigger_C_UserConstructionScript"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_2) == 0x000014, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Subtract_IntInt_ReturnValue) == 0x000018, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00001C, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_1) == 0x000020, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_K2_AttachToActor_ReturnValue) == 0x000029, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_bool_Has_Been_Initd_Variable) == 0x00002A, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_softobject_Variable) == 0x000030, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_softobject_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Not_PreBool_ReturnValue) == 0x000058, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Get_Item) == 0x000060, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue) == 0x0000C0, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Location) == 0x0000C8, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Rotation) == 0x0000E0, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Scale) == 0x0000F8, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue) == 0x000110, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000118, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000130, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x000190, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Get_Item_1) == 0x0001A0, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Location_1) == 0x000200, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Rotation_1) == 0x000218, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_BreakTransform_Scale_1) == 0x000230, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_1) == 0x000248, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000250, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue_1) == 0x000268, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_1) == 0x000270, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_1) == 0x0002D0, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, Temp_bool_IsClosed_Variable) == 0x0002D8, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Get_Item_2) == 0x0002E0, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000308, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_2) == 0x000310, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, K2Node_DynamicCast_AsActor) == 0x000318, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, K2Node_DynamicCast_bSuccess) == 0x000320, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x000324, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_IsValid_ReturnValue_1) == 0x000328, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_Max_ReturnValue) == 0x00032C, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000330, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_GetComponentByClass_ReturnValue) == 0x000348, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_IsValid_ReturnValue_2) == 0x000350, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairTrigger_C_UserConstructionScript, CallFunc_GetReactionDistance_ReturnValue) == 0x000354, "Member 'BP_ReactiveCrosshairTrigger_C_UserConstructionScript::CallFunc_GetReactionDistance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ReactiveCrosshairTrigger_C \ +static_assert(alignof(ABP_ReactiveCrosshairTrigger_C) == 0x000008, "Wrong alignment on ABP_ReactiveCrosshairTrigger_C"); \ +static_assert(sizeof(ABP_ReactiveCrosshairTrigger_C) == 0x000310, "Wrong size on ABP_ReactiveCrosshairTrigger_C"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, UberGraphFrame) == 0x000298, "Member 'ABP_ReactiveCrosshairTrigger_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Billboard1) == 0x0002A0, "Member 'ABP_ReactiveCrosshairTrigger_C::Billboard1' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Billboard) == 0x0002A8, "Member 'ABP_ReactiveCrosshairTrigger_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Scene) == 0x0002B0, "Member 'ABP_ReactiveCrosshairTrigger_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Whitelist_Mode) == 0x0002B8, "Member 'ABP_ReactiveCrosshairTrigger_C::Whitelist_Mode' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, ReactiveCrosshairActors) == 0x0002C0, "Member 'ABP_ReactiveCrosshairTrigger_C::ReactiveCrosshairActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, InvertBehaviour) == 0x0002D0, "Member 'ABP_ReactiveCrosshairTrigger_C::InvertBehaviour' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, TriggerVolume) == 0x0002D8, "Member 'ABP_ReactiveCrosshairTrigger_C::TriggerVolume' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Collision_Box) == 0x0002E0, "Member 'ABP_ReactiveCrosshairTrigger_C::Collision_Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, Collision_Sphere) == 0x0002F0, "Member 'ABP_ReactiveCrosshairTrigger_C::Collision_Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, CollisionsVisibleInGame) == 0x000300, "Member 'ABP_ReactiveCrosshairTrigger_C::CollisionsVisibleInGame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, RadiusDebugDuration) == 0x000304, "Member 'ABP_ReactiveCrosshairTrigger_C::RadiusDebugDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairTrigger_C, LineThickness) == 0x000308, "Member 'ABP_ReactiveCrosshairTrigger_C::LineThickness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_PickUp_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature \ +static_assert(alignof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature"); \ +static_assert(sizeof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature) == 0x000118, "Wrong size on BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature, HitComponent) == 0x000000, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature, NormalImpulse) == 0x000018, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature, Hit) == 0x000030, "Member 'BP_Elixir_C_BndEvt__BP_Elixir_StaticMeshComponent_K2Node_ComponentBoundEvent_1_ComponentHitSignature__DelegateSignature::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_CanCollect \ +static_assert(alignof(BP_Elixir_C_CanCollect) == 0x000008, "Wrong alignment on BP_Elixir_C_CanCollect"); \ +static_assert(sizeof(BP_Elixir_C_CanCollect) == 0x000020, "Wrong size on BP_Elixir_C_CanCollect"); \ +static_assert(offsetof(BP_Elixir_C_CanCollect, Can_Collect) == 0x000000, "Member 'BP_Elixir_C_CanCollect::Can_Collect' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CanCollect, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_Elixir_C_CanCollect::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CanCollect, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000010, "Member 'BP_Elixir_C_CanCollect::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CanCollect, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_Elixir_C_CanCollect::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CanCollect, CallFunc_CanCollectConsumable_ReturnValue) == 0x000019, "Member 'BP_Elixir_C_CanCollect::CallFunc_CanCollectConsumable_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_CanInteract \ +static_assert(alignof(BP_Elixir_C_CanInteract) == 0x000001, "Wrong alignment on BP_Elixir_C_CanInteract"); \ +static_assert(sizeof(BP_Elixir_C_CanInteract) == 0x000001, "Wrong size on BP_Elixir_C_CanInteract"); \ +static_assert(offsetof(BP_Elixir_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_CanPull \ +static_assert(alignof(BP_Elixir_C_CanPull) == 0x000001, "Wrong alignment on BP_Elixir_C_CanPull"); \ +static_assert(sizeof(BP_Elixir_C_CanPull) == 0x000001, "Wrong size on BP_Elixir_C_CanPull"); \ +static_assert(offsetof(BP_Elixir_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_CheckIfNarraticeMode \ +static_assert(alignof(BP_Elixir_C_CheckIfNarraticeMode) == 0x000008, "Wrong alignment on BP_Elixir_C_CheckIfNarraticeMode"); \ +static_assert(sizeof(BP_Elixir_C_CheckIfNarraticeMode) == 0x000018, "Wrong size on BP_Elixir_C_CheckIfNarraticeMode"); \ +static_assert(offsetof(BP_Elixir_C_CheckIfNarraticeMode, InNarrativeMode) == 0x000000, "Member 'BP_Elixir_C_CheckIfNarraticeMode::InNarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CheckIfNarraticeMode, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000008, "Member 'BP_Elixir_C_CheckIfNarraticeMode::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CheckIfNarraticeMode, CallFunc_GetNarrativeModeEnabled_ReturnValue) == 0x000010, "Member 'BP_Elixir_C_CheckIfNarraticeMode::CallFunc_GetNarrativeModeEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_CheckIfNarraticeMode, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'BP_Elixir_C_CheckIfNarraticeMode::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_ExecuteUbergraph_BP_Elixir \ +static_assert(alignof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir) == 0x000008, "Wrong alignment on BP_Elixir_C_ExecuteUbergraph_BP_Elixir"); \ +static_assert(sizeof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir) == 0x000290, "Wrong size on BP_Elixir_C_ExecuteUbergraph_BP_Elixir"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, EntryPoint) == 0x000000, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_bool_Has_Been_Initd_Variable_1) == 0x000006, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_bool_True_if_break_was_hit_Variable) == 0x000010, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_int_Array_Index_Variable) == 0x000014, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000020, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_Event_InDuration_1) == 0x000030, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000038, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Lerp_ReturnValue) == 0x000048, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_Event_InDuration) == 0x000050, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_UpdateConsumable_ReturnValue) == 0x000054, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_CanCollectConsumable_ReturnValue) == 0x000055, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_CanCollectConsumable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000070, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000078, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000080, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Vector_Distance_ReturnValue) == 0x000098, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_bool_IsClosed_Variable_1) == 0x0000A1, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_GetAllActorsOfClass_OutActors) == 0x0000A8, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Array_Get_Item) == 0x0000B8, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Array_Length_ReturnValue) == 0x0000C0, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Less_IntInt_ReturnValue) == 0x0000C4, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_BooleanAND_ReturnValue) == 0x0000C5, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_GetDistanceTo_ReturnValue) == 0x0000C8, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000CC, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x0000D0, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_delegate_Variable) == 0x0000F8, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Array_Contains_ReturnValue) == 0x000108, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, Temp_delegate_Variable_1) == 0x00010C, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_IsPlayerFabien_Return) == 0x00011C, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_HitComponent) == 0x000120, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_OtherActor) == 0x000128, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_OtherComp) == 0x000130, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_NormalImpulse) == 0x000138, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, K2Node_ComponentBoundEvent_Hit) == 0x000150, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::K2Node_ComponentBoundEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000238, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_BooleanOR_ReturnValue) == 0x000250, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_SelectFloat_ReturnValue) == 0x000258, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_Lerp_Alpha_ImplicitCast) == 0x000260, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_StartFadeToAlpha_FadeDuration_ImplicitCast) == 0x000268, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_StartFadeToAlpha_FadeDuration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast) == 0x000270, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_SetScalarParameterValueOnMaterials_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_StartFadeToAlpha_FadeDuration_ImplicitCast_1) == 0x000278, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_StartFadeToAlpha_FadeDuration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000280, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ExecuteUbergraph_BP_Elixir, CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast) == 0x000288, "Member 'BP_Elixir_C_ExecuteUbergraph_BP_Elixir::CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetClueDataAsset \ +static_assert(alignof(BP_Elixir_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_Elixir_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_Elixir_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_Elixir_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_Elixir_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetDataAsset \ +static_assert(alignof(BP_Elixir_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Elixir_C_GetDataAsset"); \ +static_assert(sizeof(BP_Elixir_C_GetDataAsset) == 0x000008, "Wrong size on BP_Elixir_C_GetDataAsset"); \ +static_assert(offsetof(BP_Elixir_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetHandleLocation \ +static_assert(alignof(BP_Elixir_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_Elixir_C_GetHandleLocation"); \ +static_assert(sizeof(BP_Elixir_C_GetHandleLocation) == 0x000018, "Wrong size on BP_Elixir_C_GetHandleLocation"); \ +static_assert(offsetof(BP_Elixir_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetInteractableData \ +static_assert(alignof(BP_Elixir_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_Elixir_C_GetInteractableData"); \ +static_assert(sizeof(BP_Elixir_C_GetInteractableData) == 0x000018, "Wrong size on BP_Elixir_C_GetInteractableData"); \ +static_assert(offsetof(BP_Elixir_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetInteractAnimation \ +static_assert(alignof(BP_Elixir_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_Elixir_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_Elixir_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_Elixir_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_Elixir_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetInteractObjective \ +static_assert(alignof(BP_Elixir_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_Elixir_C_GetInteractObjective"); \ +static_assert(sizeof(BP_Elixir_C_GetInteractObjective) == 0x000008, "Wrong size on BP_Elixir_C_GetInteractObjective"); \ +static_assert(offsetof(BP_Elixir_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetMeshComponent \ +static_assert(alignof(BP_Elixir_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Elixir_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Elixir_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Elixir_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Elixir_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetScoreBias \ +static_assert(alignof(BP_Elixir_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_Elixir_C_GetScoreBias"); \ +static_assert(sizeof(BP_Elixir_C_GetScoreBias) == 0x000004, "Wrong size on BP_Elixir_C_GetScoreBias"); \ +static_assert(offsetof(BP_Elixir_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetThrowableComponent \ +static_assert(alignof(BP_Elixir_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_Elixir_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_Elixir_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_Elixir_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_Elixir_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetThrowableOrientation \ +static_assert(alignof(BP_Elixir_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_Elixir_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_Elixir_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_Elixir_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_Elixir_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_Elixir_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_Elixir_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetThrowableType \ +static_assert(alignof(BP_Elixir_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_Elixir_C_GetThrowableType"); \ +static_assert(sizeof(BP_Elixir_C_GetThrowableType) == 0x000001, "Wrong size on BP_Elixir_C_GetThrowableType"); \ +static_assert(offsetof(BP_Elixir_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_IsThrowable \ +static_assert(alignof(BP_Elixir_C_IsThrowable) == 0x000001, "Wrong alignment on BP_Elixir_C_IsThrowable"); \ +static_assert(sizeof(BP_Elixir_C_IsThrowable) == 0x000001, "Wrong size on BP_Elixir_C_IsThrowable"); \ +static_assert(offsetof(BP_Elixir_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_ResetFadeTimelineDuration \ +static_assert(alignof(BP_Elixir_C_ResetFadeTimelineDuration) == 0x000008, "Wrong alignment on BP_Elixir_C_ResetFadeTimelineDuration"); \ +static_assert(sizeof(BP_Elixir_C_ResetFadeTimelineDuration) == 0x000010, "Wrong size on BP_Elixir_C_ResetFadeTimelineDuration"); \ +static_assert(offsetof(BP_Elixir_C_ResetFadeTimelineDuration, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000000, "Member 'BP_Elixir_C_ResetFadeTimelineDuration::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_ResetFadeTimelineDuration, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000008, "Member 'BP_Elixir_C_ResetFadeTimelineDuration::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_StartFadeToAlpha \ +static_assert(alignof(BP_Elixir_C_StartFadeToAlpha) == 0x000008, "Wrong alignment on BP_Elixir_C_StartFadeToAlpha"); \ +static_assert(sizeof(BP_Elixir_C_StartFadeToAlpha) == 0x000010, "Wrong size on BP_Elixir_C_StartFadeToAlpha"); \ +static_assert(offsetof(BP_Elixir_C_StartFadeToAlpha, FadeDuration) == 0x000000, "Member 'BP_Elixir_C_StartFadeToAlpha::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_StartFadeToAlpha, TargetAlpha_0) == 0x000008, "Member 'BP_Elixir_C_StartFadeToAlpha::TargetAlpha_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_UpdateCounters \ +static_assert(alignof(BP_Elixir_C_UpdateCounters) == 0x000008, "Wrong alignment on BP_Elixir_C_UpdateCounters"); \ +static_assert(sizeof(BP_Elixir_C_UpdateCounters) == 0x000050, "Wrong size on BP_Elixir_C_UpdateCounters"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, ElixierType) == 0x000000, "Member 'BP_Elixir_C_UpdateCounters::ElixierType' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, VentrueBool) == 0x000008, "Member 'BP_Elixir_C_UpdateCounters::VentrueBool' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, BrujahBool) == 0x000010, "Member 'BP_Elixir_C_UpdateCounters::BrujahBool' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, HealthBool) == 0x000018, "Member 'BP_Elixir_C_UpdateCounters::HealthBool' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, BloodBool) == 0x000020, "Member 'BP_Elixir_C_UpdateCounters::BloodBool' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, VentrueCounter) == 0x000028, "Member 'BP_Elixir_C_UpdateCounters::VentrueCounter' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, BrujahCounter) == 0x000030, "Member 'BP_Elixir_C_UpdateCounters::BrujahCounter' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, HealthCounter) == 0x000038, "Member 'BP_Elixir_C_UpdateCounters::HealthCounter' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, BloodCounter) == 0x000040, "Member 'BP_Elixir_C_UpdateCounters::BloodCounter' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UpdateCounters, K2Node_SwitchEnum_CmpSuccess) == 0x000048, "Member 'BP_Elixir_C_UpdateCounters::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_UserConstructionScript \ +static_assert(alignof(BP_Elixir_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Elixir_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Elixir_C_UserConstructionScript) == 0x000018, "Wrong size on BP_Elixir_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Elixir_C_UserConstructionScript, CallFunc_RandomFloatInRange_ReturnValue) == 0x000000, "Member 'BP_Elixir_C_UserConstructionScript::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000008, "Member 'BP_Elixir_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Elixir_C_UserConstructionScript, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000010, "Member 'BP_Elixir_C_UserConstructionScript::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_VisionFadeInBegin \ +static_assert(alignof(BP_Elixir_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_Elixir_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_Elixir_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_Elixir_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_Elixir_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_Elixir_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_VisionFadeOutBegin \ +static_assert(alignof(BP_Elixir_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_Elixir_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_Elixir_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_Elixir_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_Elixir_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_Elixir_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_Elixir_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_Elixir_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_Elixir_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_Elixir_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_Elixir_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_Elixir_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_Elixir_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_Elixir_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_Elixir_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_Elixir_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Elixir_C_GetTargetType \ +static_assert(alignof(BP_Elixir_C_GetTargetType) == 0x000001, "Wrong alignment on BP_Elixir_C_GetTargetType"); \ +static_assert(sizeof(BP_Elixir_C_GetTargetType) == 0x000001, "Wrong size on BP_Elixir_C_GetTargetType"); \ +static_assert(offsetof(BP_Elixir_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_Elixir_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Elixir_C \ +static_assert(alignof(ABP_Elixir_C) == 0x000008, "Wrong alignment on ABP_Elixir_C"); \ +static_assert(sizeof(ABP_Elixir_C) == 0x0003E8, "Wrong size on ABP_Elixir_C"); \ +static_assert(offsetof(ABP_Elixir_C, UberGraphFrame_BP_Elixir_C) == 0x000318, "Member 'ABP_Elixir_C::UberGraphFrame_BP_Elixir_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, ReactiveCrosshairOverride) == 0x000320, "Member 'ABP_Elixir_C::ReactiveCrosshairOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, Sphere) == 0x000328, "Member 'ABP_Elixir_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, WrestlerInteractionPoint) == 0x000330, "Member 'ABP_Elixir_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, SFX_Collect) == 0x000338, "Member 'ABP_Elixir_C::SFX_Collect' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, WrestlerCrosshairReact) == 0x000340, "Member 'ABP_Elixir_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, HeraPersistenceComponentHidden) == 0x000348, "Member 'ABP_Elixir_C::HeraPersistenceComponentHidden' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, PickUp) == 0x000350, "Member 'ABP_Elixir_C::PickUp' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, LerpTimeline_LerpTrack_42A8FFEF4D48F85CAE6E13879BABA8F4) == 0x000358, "Member 'ABP_Elixir_C::LerpTimeline_LerpTrack_42A8FFEF4D48F85CAE6E13879BABA8F4' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, LerpTimeline__Direction_42A8FFEF4D48F85CAE6E13879BABA8F4) == 0x00035C, "Member 'ABP_Elixir_C::LerpTimeline__Direction_42A8FFEF4D48F85CAE6E13879BABA8F4' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, LerpTimeline) == 0x000360, "Member 'ABP_Elixir_C::LerpTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, ElixirType) == 0x000368, "Member 'ABP_Elixir_C::ElixirType' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, Fade_Duration) == 0x000370, "Member 'ABP_Elixir_C::Fade_Duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, TargetAlpha) == 0x000378, "Member 'ABP_Elixir_C::TargetAlpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, CurrentAlpha) == 0x000380, "Member 'ABP_Elixir_C::CurrentAlpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, StartAlpha) == 0x000388, "Member 'ABP_Elixir_C::StartAlpha' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, HeightenedSenses_Material_0) == 0x000390, "Member 'ABP_Elixir_C::HeightenedSenses_Material_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, InteractData) == 0x000398, "Member 'ABP_Elixir_C::InteractData' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, AudioPickUpEvent) == 0x0003B0, "Member 'ABP_Elixir_C::AudioPickUpEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, ExistsInFabiensMissions) == 0x0003B8, "Member 'ABP_Elixir_C::ExistsInFabiensMissions' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, ExistsInPhyresMissions) == 0x0003B9, "Member 'ABP_Elixir_C::ExistsInPhyresMissions' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, WasThrown) == 0x0003BA, "Member 'ABP_Elixir_C::WasThrown' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, HitPerceptionCurve) == 0x0003C0, "Member 'ABP_Elixir_C::HitPerceptionCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, NoiseEventCoolDown) == 0x0003C8, "Member 'ABP_Elixir_C::NoiseEventCoolDown' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, Speeds) == 0x0003D0, "Member 'ABP_Elixir_C::Speeds' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, IsHeld) == 0x0003E0, "Member 'ABP_Elixir_C::IsHeld' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, WasDropped) == 0x0003E1, "Member 'ABP_Elixir_C::WasDropped' has a wrong offset!"); \ +static_assert(offsetof(ABP_Elixir_C, Niko_Reward) == 0x0003E2, "Member 'ABP_Elixir_C::Niko_Reward' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_EventReceived_FCDC16AC48D1EC0D1B0279B1A4546909::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate) == 0x0004B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, EntryPoint) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventTag_3) == 0x0000D0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventTag_2) == 0x000198, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventTag_1) == 0x000260, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventTag) == 0x000328, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, Temp_struct_Variable) == 0x0003F0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004A8, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, CallFunc_IsValid_ReturnValue) == 0x0004B0, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate, K2Node_Event_bWasCancelled) == 0x0004B1, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_ExecuteUbergraph_GA_Ysabella_BlurredMomentum_Activate::K2Node_Event_bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnBlendOut_FCDC16AC48D1EC0D1B0279B1A4546909::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnCancelled_FCDC16AC48D1EC0D1B0279B1A4546909::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnCompleted_FCDC16AC48D1EC0D1B0279B1A4546909::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909 \ +static_assert(alignof(GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x000008, "Wrong alignment on GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(sizeof(GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909) == 0x0000B8, "Wrong size on GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909, EventTag) == 0x000000, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909, EventData) == 0x000008, "Member 'GA_Ysabella_BlurredMomentum_Activate_C_OnInterrupted_FCDC16AC48D1EC0D1B0279B1A4546909::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ysabella_BlurredMomentum_Activate_C \ +static_assert(alignof(UGA_Ysabella_BlurredMomentum_Activate_C) == 0x000008, "Wrong alignment on UGA_Ysabella_BlurredMomentum_Activate_C"); \ +static_assert(sizeof(UGA_Ysabella_BlurredMomentum_Activate_C) == 0x000690, "Wrong size on UGA_Ysabella_BlurredMomentum_Activate_C"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Activate_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ysabella_BlurredMomentum_Activate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Activate_C, RootMotionStrength) == 0x000670, "Member 'UGA_Ysabella_BlurredMomentum_Activate_C::RootMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Activate_C, DilationHandle) == 0x000674, "Member 'UGA_Ysabella_BlurredMomentum_Activate_C::DilationHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Activate_C, WillCounter) == 0x000678, "Member 'UGA_Ysabella_BlurredMomentum_Activate_C::WillCounter' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_BlurredMomentum_Activate_C, SectionNames) == 0x000680, "Member 'UGA_Ysabella_BlurredMomentum_Activate_C::SectionNames' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_SniperTargeting_NoCrouch_Endless_C \ +static_assert(alignof(UGA_Additive_SniperTargeting_NoCrouch_Endless_C) == 0x000008, "Wrong alignment on UGA_Additive_SniperTargeting_NoCrouch_Endless_C"); \ +static_assert(sizeof(UGA_Additive_SniperTargeting_NoCrouch_Endless_C) == 0x0006B8, "Wrong size on UGA_Additive_SniperTargeting_NoCrouch_Endless_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light \ +static_assert(alignof(GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light"); \ +static_assert(sizeof(GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light) == 0x0000C0, "Wrong size on GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light"); \ +static_assert(offsetof(GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light, K2Node_Event_EventData) == 0x000010, "Member 'GA_PlayerHitReact_Light_C_ExecuteUbergraph_GA_PlayerHitReact_Light::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_Light_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_Light_C \ +static_assert(alignof(UGA_PlayerHitReact_Light_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_Light_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_Light_C) == 0x0007A0, "Wrong size on UGA_PlayerHitReact_Light_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_Light_C, UberGraphFrame_GA_PlayerHitReact_Light_C) == 0x000798, "Member 'UGA_PlayerHitReact_Light_C::UberGraphFrame_GA_PlayerHitReact_Light_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE \ +static_assert(alignof(GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_EventReceived_220EE2C64B766E6D1EFEDBAB0959E2EE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139) == 0x0000B0, "Wrong size on GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139, Payload) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_EventReceived_7893D5D048AB47BF512BA290B309C139::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_EventReceived_E717DAB44D830B3810F8178FEC9D33C8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence \ +static_assert(alignof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence) == 0x000DA0, "Wrong size on GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, EntryPoint) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_7) == 0x000004, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_7) == 0x000010, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_6) == 0x0000D0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_6) == 0x0000D8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_5) == 0x000198, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_5) == 0x0001A0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_struct_Variable) == 0x000260, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_struct_Variable_1) == 0x000310, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000318, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_3) == 0x00031C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_4) == 0x00032C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_5) == 0x00033C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_6) == 0x00034C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_7) == 0x00035C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_8) == 0x00036C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_9) == 0x00037C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000390, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_10) == 0x000398, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue) == 0x0003A8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_4) == 0x0003AC, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_4) == 0x0003B8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_3) == 0x000468, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_3) == 0x000470, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_11) == 0x000520, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_2) == 0x000530, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_2) == 0x000538, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_12) == 0x0005E8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_1) == 0x0005F8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_1) == 0x000600, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_13) == 0x0006B0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag) == 0x0006C0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData) == 0x0006C8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_14) == 0x000778, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_struct_Variable_2) == 0x000788, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_struct_Variable_3) == 0x000838, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x000840, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_Payload) == 0x000848, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_15) == 0x0008F8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_struct_Variable_4) == 0x000908, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0009B8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue_1) == 0x0009C0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0009C8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetAllActorsOfClass_OutActors) == 0x0009D0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_8) == 0x0009E0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_8) == 0x0009E8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_Array_Get_Item) == 0x000A98, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue_2) == 0x000AA0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_bool_Has_Been_Initd_Variable) == 0x000AA1, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetMontage_ReturnValue) == 0x000AA8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000AB0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue_3) == 0x000AB8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_JumpLocation) == 0x000AC0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_JumpLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_Spline) == 0x000AD8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_Spline' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, Temp_bool_IsClosed_Variable) == 0x000AE0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000AE8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue_4) == 0x000AF0, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetRotationAtTime_ReturnValue) == 0x000AF8, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetRotationAtTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetLocationAtTime_ReturnValue) == 0x000B10, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetLocationAtTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakRotator_Roll) == 0x000B28, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakRotator_Pitch) == 0x000B2C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakRotator_Yaw) == 0x000B30, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_MakeRotator_ReturnValue) == 0x000B38, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000B50, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000B58, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventTag_9) == 0x000B70, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CustomEvent_EventData_9) == 0x000B78, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_16) == 0x000C28, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000C38, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000C40, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000C48, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000D30, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, K2Node_CreateDelegate_OutputDelegate_17) == 0x000D34, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetMontage_ReturnValue_1) == 0x000D48, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x000D50, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_IsValid_ReturnValue_5) == 0x000D58, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000D60, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakVector_X) == 0x000D68, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakVector_Y) == 0x000D70, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_BreakVector_Z) == 0x000D78, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_MakeRotator_ReturnValue_1) == 0x000D80, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x000D98, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000D9C, "Member 'GA_Ysabella_StagePresence_C_ExecuteUbergraph_GA_Ysabella_StagePresence::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_Jump \ +static_assert(alignof(GA_Ysabella_StagePresence_C_Jump) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_Jump"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_Jump) == 0x000020, "Wrong size on GA_Ysabella_StagePresence_C_Jump"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_Jump, JumpLocation) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_Jump::JumpLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_Jump, Spline) == 0x000018, "Member 'GA_Ysabella_StagePresence_C_Jump::Spline' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnBlendOut_220EE2C64B766E6D1EFEDBAB0959E2EE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnBlendOut_E717DAB44D830B3810F8178FEC9D33C8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnCancelled_220EE2C64B766E6D1EFEDBAB0959E2EE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnCancelled_E717DAB44D830B3810F8178FEC9D33C8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnCompleted_220EE2C64B766E6D1EFEDBAB0959E2EE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnCompleted_E717DAB44D830B3810F8178FEC9D33C8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnInterrupted_220EE2C64B766E6D1EFEDBAB0959E2EE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8 \ +static_assert(alignof(GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8) == 0x000008, "Wrong alignment on GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(sizeof(GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8) == 0x0000B8, "Wrong size on GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8, EventTag) == 0x000000, "Member 'GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8, EventData) == 0x000008, "Member 'GA_Ysabella_StagePresence_C_OnInterrupted_E717DAB44D830B3810F8178FEC9D33C8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ysabella_StagePresence_C \ +static_assert(alignof(UGA_Ysabella_StagePresence_C) == 0x000008, "Wrong alignment on UGA_Ysabella_StagePresence_C"); \ +static_assert(sizeof(UGA_Ysabella_StagePresence_C) == 0x0006F8, "Wrong size on UGA_Ysabella_StagePresence_C"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ysabella_StagePresence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, TaskToTriggerOnHusks) == 0x000670, "Member 'UGA_Ysabella_StagePresence_C::TaskToTriggerOnHusks' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, Husks) == 0x000678, "Member 'UGA_Ysabella_StagePresence_C::Husks' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, RootMotionStrength) == 0x000688, "Member 'UGA_Ysabella_StagePresence_C::RootMotionStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, StageLocation) == 0x000690, "Member 'UGA_Ysabella_StagePresence_C::StageLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, DismountLocation) == 0x0006A8, "Member 'UGA_Ysabella_StagePresence_C::DismountLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, Impacted) == 0x0006C0, "Member 'UGA_Ysabella_StagePresence_C::Impacted' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, Markup) == 0x0006C8, "Member 'UGA_Ysabella_StagePresence_C::Markup' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, Launch_Speed) == 0x0006D0, "Member 'UGA_Ysabella_StagePresence_C::Launch_Speed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, onstage) == 0x0006D4, "Member 'UGA_Ysabella_StagePresence_C::onstage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ysabella_StagePresence_C, Gameplay_Tags) == 0x0006D8, "Member 'UGA_Ysabella_StagePresence_C::Gameplay_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_ActorLOStoCamera \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_ActorLOStoCamera"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera) == 0x0001F8, "Wrong size on WrestlerAbilityTargetingComponent_C_ActorLOStoCamera"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Actor) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Offset) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Offset' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Visible) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Temp_byte_Variable) == 0x000021, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, K2Node_MakeArray_Array) == 0x000028, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_ActorTargetPoint_Point) == 0x000038, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_ActorTargetPoint_Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Temp_byte_Variable_1) == 0x000050, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, Temp_bool_Variable) == 0x000051, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000058, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_GetCameraLocation_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_GetComponentTickInterval_ReturnValue) == 0x000090, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_GetComponentTickInterval_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Add_VectorVector_ReturnValue) == 0x000098, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, K2Node_Select_Default) == 0x0000B0, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000B8, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000D0, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000E8, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_LineTraceSingle_OutHit) == 0x000100, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_LineTraceSingle_ReturnValue) == 0x0001E8, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Not_PreBool_ReturnValue) == 0x0001E9, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorLOStoCamera, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0001F0, "Member 'WrestlerAbilityTargetingComponent_C_ActorLOStoCamera::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_ActorTargetPoint \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_ActorTargetPoint"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint) == 0x000080, "Wrong size on WrestlerAbilityTargetingComponent_C_ActorTargetPoint"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, Target) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::Target' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, Point) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_GetComponentByClass_ReturnValue) == 0x000028, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_DoesSocketExist_ReturnValue) == 0x000031, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_DoesSocketExist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_GetSocketLocation_ReturnValue) == 0x000038, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_GetActorBounds_Origin) == 0x000050, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ActorTargetPoint, CallFunc_GetActorBounds_BoxExtent) == 0x000068, "Member 'WrestlerAbilityTargetingComponent_C_ActorTargetPoint::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989 \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989) == 0x0000B0, "Wrong size on WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989, Payload) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_EventReceived_C19B0C2E4C82861CA9F3938155495989::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent) == 0x000AA8, "Wrong size on WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, EntryPoint) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable) == 0x000004, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_real_Variable) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_real_Variable_1) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_1) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_real_Variable_2) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000028, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable) == 0x00002C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_1) == 0x000038, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_1) == 0x00003C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Subtract_IntInt_ReturnValue) == 0x000040, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000044, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_2) == 0x000048, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item) == 0x000050, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue_1) == 0x000058, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x00007C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_2) == 0x000080, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Max_ReturnValue) == 0x000084, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000088, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_3) == 0x000090, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_IsClosed_Variable) == 0x000094, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue_2) == 0x000098, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Has_Been_Initd_Variable) == 0x00009C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_3) == 0x0000A0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Event_DeltaSeconds) == 0x0000A4, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_2) == 0x0000A8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000B8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue) == 0x0000C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_3) == 0x0000C9, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_4) == 0x0000CA, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_4) == 0x0000CC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_1) == 0x0000D0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_2) == 0x0000D1, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue) == 0x0000D8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_1) == 0x0000E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0000E8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0000E9, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_TargetIsStrikable_Strikeable) == 0x0000EA, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_TargetIsStrikable_Strikeable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_2) == 0x0000F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000109, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_struct_Variable) == 0x000110, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_3) == 0x0001C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x0001C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_1) == 0x0001D8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_4) == 0x0001E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0001E8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x0001F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_2) == 0x000200, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_5) == 0x000208, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000210, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_struct_Variable_1) == 0x000218, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_CustomEvent_Payload) == 0x000228, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_6) == 0x0002D8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0002E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_3) == 0x0002E8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_5) == 0x0002EC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0002F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_4) == 0x000310, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000318, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue_3) == 0x000360, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAllActorsOfClass_OutActors) == 0x000368, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_struct_Variable_2) == 0x000378, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_1) == 0x000388, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAttachedActors_OutActors) == 0x000390, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetPathName_ReturnValue) == 0x0003A0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetPathName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_2) == 0x0003B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Concat_StrStr_ReturnValue) == 0x0003B8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsHera_Dialogue_Skeletal_Mesh_Actor) == 0x0003C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsHera_Dialogue_Skeletal_Mesh_Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_3) == 0x0003D0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Conv_StringToName_ReturnValue) == 0x0003D4, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x0003E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_4) == 0x0003F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetGameplayTag_ReturnValue) == 0x0003F4, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0003FC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000400, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_DoesContainerMatchTagQuery_ReturnValue) == 0x000420, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_DoesContainerMatchTagQuery_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Add_ReturnValue) == 0x000424, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_1) == 0x000428, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_2) == 0x00042C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue) == 0x000430, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue_1) == 0x000431, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000438, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_3) == 0x000448, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_CreateDelegate_OutputDelegate) == 0x00044C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_5) == 0x00045C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsPlayerCharacterMalkavian_ReturnValue) == 0x00045D, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsPlayerCharacterMalkavian_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetAllActorsWithInterface_OutActors_1) == 0x000460, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetAllActorsWithInterface_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_5) == 0x000470, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue_4) == 0x000474, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000478, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_5) == 0x000488, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_CanInteract_ReturnValue) == 0x000489, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000490, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_6) == 0x0004A0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_CanPull_ReturnValue) == 0x0004A1, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_CanPull_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x0004A8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_7) == 0x0004B8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetTargetType_ReturnValue) == 0x0004B9, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_4) == 0x0004BA, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_byte_Variable) == 0x0004BB, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_byte_Variable_1) == 0x0004BC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_6) == 0x0004BD, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_3) == 0x0004C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_4) == 0x0004C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue_2) == 0x0004CC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_ActorLOStoCamera_Visible) == 0x0004CD, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_ActorLOStoCamera_Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsTKActorInTargetZone_Visible) == 0x0004CE, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsTKActorInTargetZone_Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsTKActorInTargetZone_Angle) == 0x0004D0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsTKActorInTargetZone_Angle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_5) == 0x0004D8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_7) == 0x0004D9, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0004DA, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_delegate_Variable) == 0x0004DC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_6) == 0x0004EC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_7) == 0x0004F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_7) == 0x0004F8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000500, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_8) == 0x000510, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000511, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_8) == 0x000518, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_9) == 0x000520, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000528, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_9) == 0x000530, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x000538, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_10) == 0x000540, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000548, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetCameraLocation_ReturnValue) == 0x000550, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000568, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000570, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Square_ReturnValue) == 0x000578, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000580, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_8) == 0x000581, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_MostRelevantActor_BestActor) == 0x000588, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_MostRelevantActor_BestActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_MostRelevantActor_Angle) == 0x000590, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_MostRelevantActor_Angle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_IsEmpty_ReturnValue) == 0x000598, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000599, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Contains_ReturnValue) == 0x00059A, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_8) == 0x00059B, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_object_Variable) == 0x0005A0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x0005A8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetCameraRotation_ReturnValue) == 0x0005B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetCameraLocation_ReturnValue_1) == 0x0005C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetForwardVector_ReturnValue) == 0x0005E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_delegate_Variable_1) == 0x0005F8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Has_Been_Initd_Variable_1) == 0x000608, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_4) == 0x000610, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_5) == 0x000618, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000620, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_11) == 0x000630, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue_3) == 0x000631, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000632, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_ActorLOStoCamera_Visible_1) == 0x000633, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_ActorLOStoCamera_Visible_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsActorInTargetZone_Visible) == 0x000634, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsActorInTargetZone_Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_9) == 0x000635, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Add_ReturnValue_1) == 0x000638, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Select_Default) == 0x00063C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_byte_Variable_2) == 0x00063D, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00063E, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetComponentTickInterval_ReturnValue) == 0x000640, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetComponentTickInterval_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanAND_ReturnValue) == 0x000644, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_10) == 0x000648, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanOR_ReturnValue) == 0x000650, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_MakeArray_Array) == 0x000658, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanAND_ReturnValue_1) == 0x000668, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000670, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_MakeArray_Array_1) == 0x000688, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000698, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_VectorVector_ReturnValue) == 0x0006B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0006C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x0007B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0007B8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_bBlockingHit) == 0x0007C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_bInitialOverlap) == 0x0007C1, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_Time) == 0x0007C4, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_Distance) == 0x0007C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_Location) == 0x0007D0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_ImpactPoint) == 0x0007E8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_Normal) == 0x000800, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_ImpactNormal) == 0x000818, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_PhysMat) == 0x000830, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_HitActor) == 0x000838, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_HitComponent) == 0x000840, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_HitBoneName) == 0x000848, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_BoneName) == 0x000850, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_HitItem) == 0x000858, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_ElementIndex) == 0x00085C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_FaceIndex) == 0x000860, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_TraceStart) == 0x000868, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BreakHitResult_TraceEnd) == 0x000880, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x000898, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_12) == 0x0008A8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_5) == 0x0008B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x0008B8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0008C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Length_ReturnValue_6) == 0x0008D8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_10) == 0x0008DC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue_4) == 0x0008DD, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_IsClosed_Variable_1) == 0x0008DE, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0008DF, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Select_Default_1) == 0x0008E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_object_Variable_1) == 0x0008F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_9) == 0x0008F8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_10) == 0x0008F9, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Not_PreBool_ReturnValue) == 0x0008FA, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000900, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_bool_Variable_11) == 0x000908, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_11) == 0x000909, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetMassVisibleActors_ReturnValue) == 0x000910, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetMassVisibleActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_TargetingBlocked_ReturnValue) == 0x000920, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_TargetingBlocked_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_TargetingBlocked_ReturnValue_1) == 0x000921, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_TargetingBlocked_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Create_ReturnValue) == 0x000928, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Create_ReturnValue_1) == 0x000930, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Create_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Array_Index_Variable_6) == 0x000938, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Get_Item_6) == 0x000940, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000948, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_13) == 0x000958, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_Add_ReturnValue_2) == 0x00095C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetItemState_ReturnValue) == 0x000960, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetItemState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, Temp_int_Loop_Counter_Variable_6) == 0x000964, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Less_IntInt_ReturnValue_5) == 0x000968, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Add_IntInt_ReturnValue_5) == 0x00096C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000970, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000978, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0009A0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_CreateTimeDilation_Handle) == 0x0009A8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_12) == 0x0009AC, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x0009B0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x0009C0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetOwner_ReturnValue_11) == 0x0009C8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetOwner_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5) == 0x0009D0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_DynamicCast_bSuccess_14) == 0x0009E0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_DynamicCast_bSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0009E1, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_13) == 0x0009E2, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0009E4, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_ReturnValue) == 0x0009E8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x0009F0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_ReturnValue_1) == 0x0009F8, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_NearlyEqual_FloatFloat_ReturnValue_1) == 0x000A00, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_NearlyEqual_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Not_PreBool_ReturnValue_1) == 0x000A01, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Not_PreBool_ReturnValue_2) == 0x000A02, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanAND_ReturnValue_2) == 0x000A03, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Not_PreBool_ReturnValue_3) == 0x000A04, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_IsValid_ReturnValue_14) == 0x000A05, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Not_PreBool_ReturnValue_4) == 0x000A06, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Not_PreBool_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanAND_ReturnValue_3) == 0x000A07, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_BooleanAND_ReturnValue_4) == 0x000A08, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_GetRealDeltaTime_ReturnValue_2) == 0x000A0C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_GetRealDeltaTime_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Select_Default_2) == 0x000A10, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Select_Default_3) == 0x000A18, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_Select_Default_4) == 0x000A20, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_ReturnValue_2) == 0x000A28, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x000A30, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000A38, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_RealTimeDelay_Duration_ImplicitCast) == 0x000A40, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_RealTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_RealTimeDelay_Duration_ImplicitCast_1) == 0x000A44, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_RealTimeDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_RealTimeDelay_Duration_ImplicitCast_2) == 0x000A48, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_RealTimeDelay_Duration_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_RealTimeDelay_Duration_ImplicitCast_3) == 0x000A4C, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_RealTimeDelay_Duration_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000A50, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000A58, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000A60, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_DrawDebugSphere_Duration_ImplicitCast) == 0x000A68, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_DrawDebugSphere_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000A70, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_1) == 0x000A78, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x000A80, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_VariableSet_Dilation_ImplicitCast) == 0x000A88, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_VariableSet_Dilation_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_2) == 0x000A90, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, CallFunc_FInterpTo_Constant_Current_ImplicitCast_1) == 0x000A98, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::CallFunc_FInterpTo_Constant_Current_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent, K2Node_VariableSet_Dilation_ImplicitCast_1) == 0x000AA0, "Member 'WrestlerAbilityTargetingComponent_C_ExecuteUbergraph_WrestlerAbilityTargetingComponent::K2Node_VariableSet_Dilation_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_InputtingLook \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_InputtingLook) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_InputtingLook"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_InputtingLook) == 0x000078, "Wrong size on WrestlerAbilityTargetingComponent_C_InputtingLook"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, DeadZone) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::DeadZone' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, ReturnValue) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_GetPlayerController_ReturnValue) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_QueryKeysMappedToAction_self_CastInput) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_QueryKeysMappedToAction_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_QueryKeysMappedToAction_ReturnValue) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_QueryKeysMappedToAction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_Array_Get_Item) == 0x000040, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_GetInputAnalogKeyState_ReturnValue) == 0x000058, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_GetInputAnalogKeyState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_Abs_ReturnValue) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000068, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_InputtingLook, CallFunc_Abs_A_ImplicitCast) == 0x000070, "Member 'WrestlerAbilityTargetingComponent_C_InputtingLook::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_IsActorInTargetZone \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_IsActorInTargetZone"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone) == 0x0000D0, "Wrong size on WrestlerAbilityTargetingComponent_C_IsActorInTargetZone"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, Actor) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, Visible) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_GetCameraRotation_ReturnValue) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_GetCameraLocation_ReturnValue) == 0x000048, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_GetForwardVector_ReturnValue) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000080, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_Dot_VectorVector_ReturnValue) == 0x000098, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_DegAcos_ReturnValue) == 0x0000A0, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, Temp_bool_Variable) == 0x0000A8, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_Square_ReturnValue) == 0x0000B0, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, K2Node_Select_Default) == 0x0000B8, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000C1, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_BooleanAND_ReturnValue) == 0x0000C2, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsActorInTargetZone, CallFunc_Square_A_ImplicitCast) == 0x0000C8, "Member 'WrestlerAbilityTargetingComponent_C_IsActorInTargetZone::CallFunc_Square_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone) == 0x0001C8, "Wrong size on WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Actor) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, SkipFilters) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::SkipFilters' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Visible) == 0x000009, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Visible' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Angle) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Angle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, TargetPoint) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::TargetPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Temp_byte_Variable) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000031, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000038, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000050, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_bSuccess_1) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetThrowableComponent_ReturnValue) == 0x000068, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetThrowableComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetScoreBias_ReturnValue) == 0x000070, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetScoreBias_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_IsValid_ReturnValue) == 0x000074, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetSocketLocation_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x000090, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_bSuccess_2) == 0x0000A0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3) == 0x0000A8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_bSuccess_3) == 0x0000B8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetTargetType_ReturnValue) == 0x0000B9, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_CanPull_ReturnValue) == 0x0000BA, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_CanPull_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4) == 0x0000C0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_DynamicCast_bSuccess_4) == 0x0000D0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_CanInteract_ReturnValue) == 0x0000F0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_BooleanAND_ReturnValue) == 0x0000F1, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_BooleanOR_ReturnValue) == 0x0000F2, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Temp_bool_Variable) == 0x0000F3, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000F8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, Temp_real_Variable) == 0x000100, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetCameraRotation_ReturnValue) == 0x000108, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetForwardVector_ReturnValue) == 0x000120, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetCameraLocation_ReturnValue) == 0x000138, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000150, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Square_ReturnValue) == 0x000158, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000160, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000178, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Dot_VectorVector_ReturnValue) == 0x000180, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_MapRangeClamped_ReturnValue) == 0x000188, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_DegAcos_ReturnValue) == 0x000190, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000198, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0001A0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, K2Node_Select_Default) == 0x0001A8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_BooleanAND_ReturnValue_1) == 0x0001B0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001B8, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0001C0, "Member 'WrestlerAbilityTargetingComponent_C_IsTKActorInTargetZone::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_MostRelevantActor \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_MostRelevantActor) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_MostRelevantActor"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_MostRelevantActor) == 0x0000E8, "Wrong size on WrestlerAbilityTargetingComponent_C_MostRelevantActor"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Actors) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Actors' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, BestActor) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::BestActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Angle) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Angle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Best_Actor) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Best_Actor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Best_Angle) == 0x000028, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Best_Angle' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Temp_int_Array_Index_Variable) == 0x000034, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000038, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Array_Get_Item) == 0x000040, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_GetCameraRotation_ReturnValue) == 0x000048, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_ActorTargetPoint_Point) == 0x000060, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_ActorTargetPoint_Point' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_GetForwardVector_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_GetCameraLocation_ReturnValue) == 0x000090, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000A8, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Array_Get_Item_1) == 0x0000C8, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_DegAcos_ReturnValue) == 0x0000D0, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_IsValid_ReturnValue) == 0x0000D8, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, Temp_int_Loop_Counter_Variable) == 0x0000DC, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Less_IntInt_ReturnValue) == 0x0000E1, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_MostRelevantActor, CallFunc_Add_IntInt_ReturnValue) == 0x0000E4, "Member 'WrestlerAbilityTargetingComponent_C_MostRelevantActor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_ReceiveTick \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_ReceiveTick) == 0x000004, "Wrong alignment on WrestlerAbilityTargetingComponent_C_ReceiveTick"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_ReceiveTick) == 0x000004, "Wrong size on WrestlerAbilityTargetingComponent_C_ReceiveTick"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_TargetingBlocked \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_TargetingBlocked) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_TargetingBlocked"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_TargetingBlocked) == 0x000038, "Wrong size on WrestlerAbilityTargetingComponent_C_TargetingBlocked"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, ReturnValue) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, Temp_bool_Variable) == 0x000001, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, CallFunc_IsPlayerLockedIntoDialogue_ReturnValue) == 0x000018, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::CallFunc_IsPlayerLockedIntoDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000020, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, CallFunc_BooleanOR_ReturnValue) == 0x000031, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetingBlocked, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000032, "Member 'WrestlerAbilityTargetingComponent_C_TargetingBlocked::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerAbilityTargetingComponent_C_TargetIsStrikable \ +static_assert(alignof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable) == 0x000008, "Wrong alignment on WrestlerAbilityTargetingComponent_C_TargetIsStrikable"); \ +static_assert(sizeof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable) == 0x0000D0, "Wrong size on WrestlerAbilityTargetingComponent_C_TargetIsStrikable"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, Strikeable) == 0x000000, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::Strikeable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_GetCameraRotation_ReturnValue) == 0x000010, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_GetCameraLocation_ReturnValue) == 0x000028, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_GetForwardVector_ReturnValue) == 0x000040, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000058, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_Add_VectorVector_ReturnValue) == 0x000078, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_Vector_Distance_ReturnValue) == 0x000090, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000098, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000B8, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_DegAcos_ReturnValue) == 0x0000C0, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0000C8, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerAbilityTargetingComponent_C_TargetIsStrikable, CallFunc_BooleanAND_ReturnValue) == 0x0000C9, "Member 'WrestlerAbilityTargetingComponent_C_TargetIsStrikable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerAbilityTargetingComponent_C \ +static_assert(alignof(UWrestlerAbilityTargetingComponent_C) == 0x000008, "Wrong alignment on UWrestlerAbilityTargetingComponent_C"); \ +static_assert(sizeof(UWrestlerAbilityTargetingComponent_C) == 0x0002A8, "Wrong size on UWrestlerAbilityTargetingComponent_C"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, UberGraphFrame) == 0x0000A0, "Member 'UWrestlerAbilityTargetingComponent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, ParentCamera) == 0x0000A8, "Member 'UWrestlerAbilityTargetingComponent_C::ParentCamera' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, ActorUnderCrosshair) == 0x0000B0, "Member 'UWrestlerAbilityTargetingComponent_C::ActorUnderCrosshair' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, CharacterTargetingRange) == 0x0000B8, "Member 'UWrestlerAbilityTargetingComponent_C::CharacterTargetingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, CharacterVisibleAngle) == 0x0000C0, "Member 'UWrestlerAbilityTargetingComponent_C::CharacterVisibleAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Enable_Debug_Target) == 0x0000C8, "Member 'UWrestlerAbilityTargetingComponent_C::Enable_Debug_Target' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, AllCharacters) == 0x0000D0, "Member 'UWrestlerAbilityTargetingComponent_C::AllCharacters' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, VisibleTargets) == 0x0000E0, "Member 'UWrestlerAbilityTargetingComponent_C::VisibleTargets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Enable_Debug_Traces) == 0x0000F0, "Member 'UWrestlerAbilityTargetingComponent_C::Enable_Debug_Traces' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, CharacterTargetingAngle) == 0x0000F8, "Member 'UWrestlerAbilityTargetingComponent_C::CharacterTargetingAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetedActor) == 0x000100, "Member 'UWrestlerAbilityTargetingComponent_C::TargetedActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Targetables) == 0x000108, "Member 'UWrestlerAbilityTargetingComponent_C::Targetables' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, DilationHandle) == 0x000118, "Member 'UWrestlerAbilityTargetingComponent_C::DilationHandle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingActive) == 0x00011C, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingActive' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Dilation) == 0x000120, "Member 'UWrestlerAbilityTargetingComponent_C::Dilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, UsesDilation) == 0x000124, "Member 'UWrestlerAbilityTargetingComponent_C::UsesDilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingDilation) == 0x000128, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingDilation' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingRefreshRate) == 0x000130, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingRefreshRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, CamModifier) == 0x000138, "Member 'UWrestlerAbilityTargetingComponent_C::CamModifier' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Headlight) == 0x000140, "Member 'UWrestlerAbilityTargetingComponent_C::Headlight' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, DefaultHeadlightIntensity) == 0x000148, "Member 'UWrestlerAbilityTargetingComponent_C::DefaultHeadlightIntensity' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, HeadlightBoost) == 0x000150, "Member 'UWrestlerAbilityTargetingComponent_C::HeadlightBoost' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, PendingTargets) == 0x000158, "Member 'UWrestlerAbilityTargetingComponent_C::PendingTargets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetWidget) == 0x000168, "Member 'UWrestlerAbilityTargetingComponent_C::TargetWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingHeld) == 0x000170, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingHeld' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingBlockTag) == 0x000174, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingBlockTag' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, PreSlowBuffer) == 0x000180, "Member 'UWrestlerAbilityTargetingComponent_C::PreSlowBuffer' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Pre_Slow_Buffer_default) == 0x000188, "Member 'UWrestlerAbilityTargetingComponent_C::Pre_Slow_Buffer_default' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Active_Tags) == 0x000190, "Member 'UWrestlerAbilityTargetingComponent_C::Active_Tags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetCacheRefreshRate) == 0x0001B0, "Member 'UWrestlerAbilityTargetingComponent_C::TargetCacheRefreshRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Target_Strikeable) == 0x0001B8, "Member 'UWrestlerAbilityTargetingComponent_C::Target_Strikeable' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Strike_Targeting_Angle) == 0x0001C0, "Member 'UWrestlerAbilityTargetingComponent_C::Strike_Targeting_Angle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, StrikeTargetingRange) == 0x0001C8, "Member 'UWrestlerAbilityTargetingComponent_C::StrikeTargetingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, MassManipulating) == 0x0001D0, "Member 'UWrestlerAbilityTargetingComponent_C::MassManipulating' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, VisibleAngleMM) == 0x0001D8, "Member 'UWrestlerAbilityTargetingComponent_C::VisibleAngleMM' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, PB_ABL_Targeting) == 0x0001E0, "Member 'UWrestlerAbilityTargetingComponent_C::PB_ABL_Targeting' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Abilities_To_Cancel) == 0x0001E8, "Member 'UWrestlerAbilityTargetingComponent_C::Abilities_To_Cancel' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, UseMalkavianTargets) == 0x000208, "Member 'UWrestlerAbilityTargetingComponent_C::UseMalkavianTargets' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, Invalid_Target_Tags) == 0x000210, "Member 'UWrestlerAbilityTargetingComponent_C::Invalid_Target_Tags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKTargetables) == 0x000230, "Member 'UWrestlerAbilityTargetingComponent_C::TKTargetables' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKActorRefreshRate) == 0x000240, "Member 'UWrestlerAbilityTargetingComponent_C::TKActorRefreshRate' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKTargetingRange) == 0x000248, "Member 'UWrestlerAbilityTargetingComponent_C::TKTargetingRange' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKTargetingAngle) == 0x000250, "Member 'UWrestlerAbilityTargetingComponent_C::TKTargetingAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKTargetedActor) == 0x000258, "Member 'UWrestlerAbilityTargetingComponent_C::TKTargetedActor' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, CurrentTkableAngle) == 0x000260, "Member 'UWrestlerAbilityTargetingComponent_C::CurrentTkableAngle' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKTargetWidget) == 0x000268, "Member 'UWrestlerAbilityTargetingComponent_C::TKTargetWidget' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TKBlockTags) == 0x000270, "Member 'UWrestlerAbilityTargetingComponent_C::TKBlockTags' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, VisibilityDepenetration) == 0x000290, "Member 'UWrestlerAbilityTargetingComponent_C::VisibilityDepenetration' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, TargetingDilation_Attached) == 0x000298, "Member 'UWrestlerAbilityTargetingComponent_C::TargetingDilation_Attached' has a wrong offset!"); \ +static_assert(offsetof(UWrestlerAbilityTargetingComponent_C, DoTKTargeting) == 0x0002A0, "Member 'UWrestlerAbilityTargetingComponent_C::DoTKTargeting' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target \ +static_assert(alignof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target) == 0x000008, "Wrong alignment on BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target"); \ +static_assert(sizeof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target) == 0x000028, "Wrong size on BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target, __WorldContext) == 0x000000, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target, Target_Actor) == 0x000008, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target::Target_Actor' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_Ability_Target::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets \ +static_assert(alignof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets) == 0x000008, "Wrong alignment on BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets"); \ +static_assert(sizeof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets) == 0x000030, "Wrong size on BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets, __WorldContext) == 0x000000, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets, Actors) == 0x000008, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets::Actors' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets, CallFunc_GetComponentByClass_ReturnValue) == 0x000020, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'BPFL_WrestlerAbilityTargeting_C_Get_Player_visible_Targets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target \ +static_assert(alignof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target) == 0x000008, "Wrong alignment on BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target"); \ +static_assert(sizeof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target) == 0x000028, "Wrong size on BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, __WorldContext) == 0x000000, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, Has_Target) == 0x000008, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::Has_Target' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Ability_Target::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target \ +static_assert(alignof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target) == 0x000008, "Wrong alignment on BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target"); \ +static_assert(sizeof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target) == 0x000028, "Wrong size on BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, __WorldContext) == 0x000000, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, Has_Target) == 0x000008, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::Has_Target' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, CallFunc_TargetIsStrikable_Strikeable) == 0x000020, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::CallFunc_TargetIsStrikable_Strikeable' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_has_Strikeable_Target::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting \ +static_assert(alignof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting) == 0x000008, "Wrong alignment on BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting"); \ +static_assert(sizeof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting) == 0x000030, "Wrong size on BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, __WorldContext) == 0x000000, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, Targeting_Active) == 0x000008, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::Targeting_Active' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, Temp_bool_Variable) == 0x000009, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000018, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000029, "Member 'BPFL_WrestlerAbilityTargeting_C_Player_Is_Ability_Targeting::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBPFL_WrestlerAbilityTargeting_C \ +static_assert(alignof(UBPFL_WrestlerAbilityTargeting_C) == 0x000008, "Wrong alignment on UBPFL_WrestlerAbilityTargeting_C"); \ +static_assert(sizeof(UBPFL_WrestlerAbilityTargeting_C) == 0x000028, "Wrong size on UBPFL_WrestlerAbilityTargeting_C"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerCursor_C_SetCursorTextureData \ +static_assert(alignof(WBP_PlayerCursor_C_SetCursorTextureData) == 0x000008, "Wrong alignment on WBP_PlayerCursor_C_SetCursorTextureData"); \ +static_assert(sizeof(WBP_PlayerCursor_C_SetCursorTextureData) == 0x000018, "Wrong size on WBP_PlayerCursor_C_SetCursorTextureData"); \ +static_assert(offsetof(WBP_PlayerCursor_C_SetCursorTextureData, PlayerCursorTexture_0) == 0x000000, "Member 'WBP_PlayerCursor_C_SetCursorTextureData::PlayerCursorTexture_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerCursor_C_SetCursorTextureData, PlayerCursorScale_0) == 0x000008, "Member 'WBP_PlayerCursor_C_SetCursorTextureData::PlayerCursorScale_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerCursor_C_OnMotionDetected \ +static_assert(alignof(WBP_PlayerCursor_C_OnMotionDetected) == 0x000008, "Wrong alignment on WBP_PlayerCursor_C_OnMotionDetected"); \ +static_assert(sizeof(WBP_PlayerCursor_C_OnMotionDetected) == 0x000170, "Wrong size on WBP_PlayerCursor_C_OnMotionDetected"); \ +static_assert(offsetof(WBP_PlayerCursor_C_OnMotionDetected, MyGeometry) == 0x000000, "Member 'WBP_PlayerCursor_C_OnMotionDetected::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerCursor_C_OnMotionDetected, InMotionEvent) == 0x000038, "Member 'WBP_PlayerCursor_C_OnMotionDetected::InMotionEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerCursor_C_OnMotionDetected, ReturnValue) == 0x0000B8, "Member 'WBP_PlayerCursor_C_OnMotionDetected::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor \ +static_assert(alignof(WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor) == 0x000008, "Wrong alignment on WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor"); \ +static_assert(sizeof(WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor) == 0x000020, "Wrong size on WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor"); \ +static_assert(offsetof(WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor, EntryPoint) == 0x000000, "Member 'WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor, K2Node_CustomEvent_PlayerCursorTexture) == 0x000008, "Member 'WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor::K2Node_CustomEvent_PlayerCursorTexture' has a wrong offset!"); \ +static_assert(offsetof(WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor, K2Node_CustomEvent_PlayerCursorScale) == 0x000010, "Member 'WBP_PlayerCursor_C_ExecuteUbergraph_WBP_PlayerCursor::K2Node_CustomEvent_PlayerCursorScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_PlayerCursor_C \ +static_assert(alignof(UWBP_PlayerCursor_C) == 0x000008, "Wrong alignment on UWBP_PlayerCursor_C"); \ +static_assert(sizeof(UWBP_PlayerCursor_C) == 0x000300, "Wrong size on UWBP_PlayerCursor_C"); \ +static_assert(offsetof(UWBP_PlayerCursor_C, UberGraphFrame) == 0x0002D8, "Member 'UWBP_PlayerCursor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerCursor_C, PlayerCursor) == 0x0002E0, "Member 'UWBP_PlayerCursor_C::PlayerCursor' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerCursor_C, PlayerCursorTexture) == 0x0002E8, "Member 'UWBP_PlayerCursor_C::PlayerCursorTexture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_PlayerCursor_C, PlayerCursorScale) == 0x0002F0, "Member 'UWBP_PlayerCursor_C::PlayerCursorScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score) == 0x000110, "Wrong size on GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, Actor) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, Score) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::Score' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, ActorLocation) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::ActorLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, K2Node_DynamicCast_AsCharacter) == 0x000028, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_GetSocketLocation_ReturnValue) == 0x000050, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000068, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_GetCameraRotation_ReturnValue) == 0x000070, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_GetCameraLocation_ReturnValue) == 0x000088, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_GetForwardVector_ReturnValue) == 0x0000A0, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000B8, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_Normal_ReturnValue) == 0x0000D0, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_VSize_ReturnValue) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_MapRangeClamped_ReturnValue) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_FClamp_ReturnValue) == 0x000100, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000108, "Member 'GA_BR_Lightningstrikes_targeted_C_Actor_Target_Score::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_Apply_Hit \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_Apply_Hit) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_Apply_Hit"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_Apply_Hit) == 0x000008, "Wrong size on GA_BR_Lightningstrikes_targeted_C_Apply_Hit"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Apply_Hit, Target) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_Apply_Hit::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_EventReceived_91C0199948C5CE64C8B3BB9124CD6654::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_EventReceived_F4ED2E2345B4A06250DB3CA1189F57B7::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted) == 0x000010, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted) == 0x002B80, "Wrong size on GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, EntryPoint) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable) == 0x000028, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable) == 0x000030, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_1) == 0x000038, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable_1) == 0x000040, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_2) == 0x000048, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate) == 0x000050, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_1) == 0x000060, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue) == 0x000070, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_2) == 0x000078, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue) == 0x000088, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000090, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_3) == 0x000098, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_1) == 0x0000A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_2) == 0x0000B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable_2) == 0x0000B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_2) == 0x0000B9, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable) == 0x0000BC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_1) == 0x0000C4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_WaitingTime) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000EC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_3) == 0x0000FC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000100, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_3) == 0x000108, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable_3) == 0x000109, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_2) == 0x000110, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_3) == 0x000128, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000140, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable_4) == 0x000148, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_4) == 0x00014C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_5) == 0x000150, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_6) == 0x000160, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_7) == 0x000170, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000180, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_8) == 0x000188, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_4) == 0x000198, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_9) == 0x00019C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_10) == 0x0001AC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x0001C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue) == 0x0001C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_IsEmpty_ReturnValue) == 0x0001CC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_5) == 0x0001CD, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable) == 0x0001D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue) == 0x0001D4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable) == 0x0001D8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_1) == 0x0001DC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_1) == 0x0001E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_4) == 0x0001E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_2) == 0x000298, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_2) == 0x00029C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_1) == 0x0002A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_5) == 0x0002A4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_5) == 0x0002B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_2) == 0x000360, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_11) == 0x000364, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_3) == 0x000374, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_3) == 0x000378, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_3) == 0x00037C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_12) == 0x000380, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_6) == 0x000390, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_6) == 0x000398, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_13) == 0x000448, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Get_Player_Ability_Target_Target_Actor) == 0x000458, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Get_Player_Ability_Target_Target_Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_3) == 0x000460, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000468, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess) == 0x000470, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_6) == 0x000471, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_7) == 0x000472, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPlayerController_ReturnValue) == 0x000478, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_8) == 0x000480, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000488, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_1) == 0x000490, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPlayerController_ReturnValue_1) == 0x000498, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetClan_ReturnValue) == 0x0004A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_14) == 0x0004A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_7) == 0x0004B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_7) == 0x0004C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_4) == 0x000570, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item) == 0x000578, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_9) == 0x000580, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_4) == 0x000584, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_4) == 0x000588, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_5) == 0x00058C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_5) == 0x000590, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_5) == 0x000594, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_4) == 0x000598, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_10) == 0x0005A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_6) == 0x0005A4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_15) == 0x0005A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_6) == 0x0005B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_6) == 0x0005BC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_7) == 0x0005C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_8) == 0x0005C4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_8) == 0x0005D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_7) == 0x000680, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue) == 0x000684, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_7) == 0x000688, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_16) == 0x00068C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_5) == 0x0006A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_11) == 0x0006A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_SpawnedEnemy) == 0x0006B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_SpawnedEnemy' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_to_spawn_Variable) == 0x0006B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_to_spawn_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_has_spawned_Variable) == 0x0006BC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_has_spawned_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_8) == 0x0006C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0006C4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_9) == 0x0006C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_17) == 0x0006CC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x0006E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_5) == 0x000708, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array) == 0x000710, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Add_ReturnValue) == 0x000720, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Add_ReturnValue_1) == 0x000724, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000728, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000730, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_PlayAnimMontage_ReturnValue) == 0x000738, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_PlayAnimMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000740, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Event_bWasCancelled) == 0x000748, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_18) == 0x00074C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_1) == 0x00075C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_6) == 0x000760, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_FoundTarget) == 0x000768, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_FoundTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_Target) == 0x000770, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_Score) == 0x000778, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_Score' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_bool_Variable_5) == 0x000780, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_2) == 0x000784, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000788, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000790, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_12) == 0x000791, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_real_Variable_7) == 0x000794, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_WaitingTime_1) == 0x000798, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_1) == 0x0007A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_13) == 0x0007A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_14) == 0x0007A9, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_2) == 0x0007B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_3) == 0x0007B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0007BC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_15) == 0x0007BD, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_Target) == 0x0007C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_16) == 0x0007C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_19) == 0x0007CC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_RemoveItem_ReturnValue) == 0x0007DC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0007E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_GameplayEventData) == 0x0007E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000898, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0008A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_3) == 0x0008A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SpawnObject_ReturnValue) == 0x0008B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_GameplayEventData_1) == 0x0008B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_17) == 0x000968, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeCueHitParamsFromLock_OutParams) == 0x000970, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeCueHitParamsFromLock_OutParams' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_9) == 0x000A48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_9) == 0x000A50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_FoundTarget_1) == 0x000B00, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_FoundTarget_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_Target_1) == 0x000B08, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_Target_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPunchTarget_Score_1) == 0x000B10, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPunchTarget_Score_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_4) == 0x000B18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Subtract_IntInt_ReturnValue) == 0x000B1C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000B20, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000B28, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default) == 0x000B30, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default_1) == 0x000B38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000B50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_RemoveItem_ReturnValue_1) == 0x000C38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_RemoveItem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitDelay_ReturnValue) == 0x000C40, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_10) == 0x000C48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_18) == 0x000C4C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_8) == 0x000C50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_20) == 0x000C54, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_11) == 0x000C64, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Variable) == 0x000C68, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_CommitAbilityCost_ReturnValue) == 0x000C6C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_CommitAbilityCost_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000C70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_21) == 0x000C78, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_19) == 0x000C88, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_5) == 0x000C8C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_6) == 0x000C98, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000D48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000E20, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x000E28, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_2) == 0x000F00, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000FD8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_3) == 0x000FE0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_4) == 0x0010B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_5) == 0x001190, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x001268, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_6) == 0x001270, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_4) == 0x001348, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_7) == 0x001350, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeCueHitParamsFromLock_OutParams_1) == 0x001428, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeCueHitParamsFromLock_OutParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_3) == 0x001500, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeGameplayCueParameters_ReturnValue_8) == 0x001508, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeGameplayCueParameters_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_5) == 0x0015E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_5) == 0x0015E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_20) == 0x0015EC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x0015F0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_2) == 0x0015F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x001600, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x001610, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_3) == 0x001618, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_6) == 0x001620, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x001628, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_6) == 0x001638, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_7) == 0x00163C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_1) == 0x001640, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_2) == 0x001641, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_8) == 0x001644, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_3) == 0x001648, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_8) == 0x00164C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001650, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_7) == 0x001658, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x001660, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_21) == 0x001678, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsWrestler_Character_Base_2) == 0x001680, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsWrestler_Character_Base_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_4) == 0x001688, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x001690, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetComponentByClass_ReturnValue) == 0x0016A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_8) == 0x0016A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0016B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_9) == 0x0016B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsBP_Enemy_Character_Base_1) == 0x0016C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsBP_Enemy_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_5) == 0x0016C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_4) == 0x0016C9, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x0016D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetSkeletalMeshComponents_ReturnValue_1) == 0x0016D8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetSkeletalMeshComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_9) == 0x0016E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_10) == 0x0016F0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_5) == 0x0016F4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default_2) == 0x0016F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_4) == 0x001700, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_6) == 0x001708, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_1) == 0x001710, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_22) == 0x001720, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag) == 0x001724, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData) == 0x001730, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_AbilityTargetDataFromActor_ReturnValue_1) == 0x0017E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_AbilityTargetDataFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x001808, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x001820, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x001838, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x001840, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x001880, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x001890, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x001898, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0018A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default_3) == 0x0018AC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_FinalLockOnVictim__Final) == 0x0018B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_FinalLockOnVictim__Final' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0018B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_22) == 0x0018C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_10) == 0x0018D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Add_ReturnValue_2) == 0x0018D8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_11) == 0x0018E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_11) == 0x0018E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_23) == 0x0018EC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_6) == 0x0018ED, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_AbilityTargetDataFromActor_ReturnValue_2) == 0x0018F0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_AbilityTargetDataFromActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x001918, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_GameplayEventData_2) == 0x001920, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Variable_1) == 0x0019D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_12) == 0x0019D4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_12) == 0x0019D8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_7) == 0x0019E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_24) == 0x0019E1, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default_4) == 0x0019E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_ReturnValue_7) == 0x0019F0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_25) == 0x0019F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_5) == 0x001A00, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_2) == 0x001A08, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetOwningActorFromActorInfo_ReturnValue_6) == 0x001A18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetOwningActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_3) == 0x001A20, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x001A30, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_WrestlerTimeDilationConfig_1) == 0x001A58, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_WrestlerTimeDilationConfig_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_CreateTimeDilation_Handle) == 0x001A80, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_CreateTimeDilation_Handle_1) == 0x001A84, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_CreateTimeDilation_Handle_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_RandomBool_ReturnValue) == 0x001A88, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_WrestlerTimeDilationConfig_2) == 0x001A90, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_WrestlerTimeDilationConfig_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_CreateTimeDilation_Handle_2) == 0x001AB8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_CreateTimeDilation_Handle_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_Select_Default_5) == 0x001ABC, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x001AC8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_4) == 0x001AD0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_WrestlerTimeDilationConfig_3) == 0x001AE0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_WrestlerTimeDilationConfig_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x001B08, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_CreateTimeDilation_Handle_3) == 0x001B10, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_CreateTimeDilation_Handle_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x001B18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetVelocity_ReturnValue) == 0x001B20, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Multiply_VectorVector_ReturnValue) == 0x001B38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_1) == 0x001B50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_1) == 0x001B58, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x001C08, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_26) == 0x001C10, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x001C18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x001C30, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x001C38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_23) == 0x001C50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Vector_Distance_ReturnValue) == 0x001C60, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x001C68, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x001C70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x001C78, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x001C7C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Create_ReturnValue) == 0x001C88, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Add_ReturnValue_3) == 0x001C90, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Add_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Variable_2) == 0x001C94, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_27) == 0x001C98, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Greater_IntInt_ReturnValue) == 0x001C99, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2) == 0x001C9C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Player_has_Strikeable_Target_Has_Target) == 0x001CA4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Player_has_Strikeable_Target_Has_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x001CA8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_ApplyDamageParams) == 0x001CB0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x001CD8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_ApplyDamage_ReturnValue) == 0x001CE0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_ApplyDamageParams_1) == 0x001CE8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x001D10, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x001D18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_ApplyDamageParams_2) == 0x001D20, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_ApplyDamageParams_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeStruct_ApplyDamageParams_3) == 0x001D48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeStruct_ApplyDamageParams_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_ApplyDamage_ReturnValue_2) == 0x001D70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_ApplyDamage_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_ApplyDamage_ReturnValue_3) == 0x001D71, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_ApplyDamage_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_2) == 0x001D74, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_2) == 0x001D80, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_13) == 0x001E30, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_12) == 0x001E38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_8) == 0x001E3C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_28) == 0x001E3D, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Add_ReturnValue_4) == 0x001E40, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Add_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Contains_ReturnValue) == 0x001E44, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_24) == 0x001E48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_14) == 0x001E58, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Length_ReturnValue_13) == 0x001E60, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Length_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_29) == 0x001E64, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_9) == 0x001E65, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Variable_3) == 0x001E68, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_13) == 0x001E6C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x001E70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_3) == 0x001E74, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_3) == 0x001E80, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPlayerController_ReturnValue_2) == 0x001F30, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x001F38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x001F40, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_6) == 0x001F50, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x001F58, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x001F60, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x001F70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x001F78, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_10) == 0x001F80, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x001F88, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetActorLocation_ReturnValue) == 0x002070, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x002078, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_11) == 0x002160, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_12) == 0x002168, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_AddActorLocalOffset_SweepHitResult_1) == 0x002170, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_AddActorLocalOffset_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_AddActorLocalOffset_SweepHitResult_2) == 0x002258, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_AddActorLocalOffset_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_CommitAbilityCost_ReturnValue_1) == 0x002340, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_CommitAbilityCost_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x002348, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Loop_Counter_Variable_9) == 0x002350, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Loop_Counter_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Less_IntInt_ReturnValue_10) == 0x002354, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Less_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_IntInt_ReturnValue_14) == 0x002358, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_IntInt_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_25) == 0x00235C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_26) == 0x00236C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_ConvertMassAIToEnemyAI_ReturnValue) == 0x00237C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_ConvertMassAIToEnemyAI_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x002380, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_13) == 0x002388, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x002390, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x002398, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x002480, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPlayerController_ReturnValue_3) == 0x002498, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0024A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_AsCM_Brujah_Lightning_Strike_Targeting) == 0x0024A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_AsCM_Brujah_Lightning_Strike_Targeting' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_DynamicCast_bSuccess_7) == 0x0024B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0024B8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x0024C0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x0024C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetTransform_ReturnValue) == 0x0024D0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetRealDeltaTime_ReturnValue) == 0x002530, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x002538, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventTag_4) == 0x002540, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CustomEvent_EventData_4) == 0x002548, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_FinishSpawningActor_ReturnValue) == 0x0025F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeLiteralByte_ReturnValue) == 0x002600, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_AttachToActor_ReturnValue) == 0x002601, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x002602, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x002604, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_14) == 0x002608, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_15) == 0x002610, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x002618, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x002630, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x002648, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x002660, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Subtract_VectorVector_ReturnValue) == 0x002678, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeRotFromX_ReturnValue) == 0x002690, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetController_ReturnValue) == 0x0026A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0026B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetControlRotation_ReturnValue) == 0x0026C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_VInterpTo_ReturnValue) == 0x0026E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_RInterpTo_ReturnValue) == 0x0026F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x002710, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_CreateDelegate_OutputDelegate_27) == 0x0027F8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_X) == 0x002808, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_Y) == 0x002810, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_Z) == 0x002818, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x002820, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_16) == 0x002828, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Array_Index_Variable_9) == 0x002830, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Array_Index_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetSocketLocation_ReturnValue) == 0x002838, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_15) == 0x002850, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_15' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_VectorVector_ReturnValue) == 0x002858, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_X_1) == 0x002870, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_Y_1) == 0x002878, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_BreakVector_Z_1) == 0x002880, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeVector_ReturnValue) == 0x002888, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetRealDeltaTime_ReturnValue_2) == 0x0028A0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetRealDeltaTime_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetRealDeltaTime_ReturnValue_3) == 0x0028A4, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetRealDeltaTime_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Array_Get_Item_16) == 0x0028A8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Array_Get_Item_16' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetDirectionUnitVector_ReturnValue_2) == 0x0028B0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetDirectionUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeRotFromX_ReturnValue_1) == 0x0028C8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeRotFromX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Create_ReturnValue_1) == 0x0028E0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Create_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetSocketLocation_ReturnValue_1) == 0x0028E8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_VectorVector_ReturnValue_1) == 0x002900, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x002918, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_17) == 0x002930, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_MakeStandingTargetPosition_ReturnValue) == 0x002938, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_MakeStandingTargetPosition_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x002950, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x002968, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_VInterpTo_ReturnValue_1) == 0x002970, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_VInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_SetWorldLocation_SweepHitResult_1) == 0x002988, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_SetWorldLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_IsValid_ReturnValue_30) == 0x002A70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_IsValid_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetAvatarActorAsCharacter_ReturnValue_18) == 0x002A78, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetAvatarActorAsCharacter_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetController_ReturnValue_1) == 0x002A80, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_int_Variable_4) == 0x002A88, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetControlRotation_ReturnValue_1) == 0x002A90, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_RInterpTo_ReturnValue_1) == 0x002AA8, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetActorInfo_ReturnValue) == 0x002AC0, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetHud_ReturnValue) == 0x002B08, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_GetPlayerPawn_ReturnValue) == 0x002B10, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_5) == 0x002B18, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_5' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, K2Node_MakeArray_Array_6) == 0x002B28, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::K2Node_MakeArray_Array_6' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, Temp_struct_Variable_7) == 0x002B38, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Add_DoubleDouble_ReturnValue) == 0x002B40, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SphereOverlapActors_OutActors) == 0x002B48, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SphereOverlapActors_ReturnValue) == 0x002B58, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_Duration_ImplicitCast) == 0x002B5C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x002B60, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x002B68, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_WaitRealDelay_Duration_ImplicitCast_1) == 0x002B6C, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_WaitRealDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x002B70, "Member 'GA_BR_Lightningstrikes_targeted_C_ExecuteUbergraph_GA_BR_Lightningstrikes_targeted::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_ \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_) == 0x000030, "Wrong size on GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, Victim) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::Victim' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, Final) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::Final' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, IsFinalLock) == 0x000009, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::IsFinalLock' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, Temp_bool_True_if_break_was_hit_Variable) == 0x00000A, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_Not_PreBool_ReturnValue) == 0x000011, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_Array_Get_Item) == 0x000020, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_Less_IntInt_ReturnValue) == 0x00002C, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x00002D, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_, CallFunc_BooleanAND_ReturnValue) == 0x00002E, "Member 'GA_BR_Lightningstrikes_targeted_C_FinalLockOnVictim_::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_GetPunchTarget \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_GetPunchTarget"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget) == 0x000350, "Wrong size on GA_BR_Lightningstrikes_targeted_C_GetPunchTarget"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, foundTarget) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::foundTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Target) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Score) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Score' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, BestTarget) == 0x000018, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::BestTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Valid) == 0x000020, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Potential) == 0x000030, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Potential' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, BestScore) == 0x000040, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::BestScore' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, BestFit) == 0x000048, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::BestFit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Found) == 0x000050, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Found' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Temp_int_Array_Index_Variable) == 0x000054, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Temp_int_Loop_Counter_Variable) == 0x000058, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Add_IntInt_ReturnValue) == 0x00005C, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Temp_int_Array_Index_Variable_1) == 0x000060, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000068, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_MakeArray_Array) == 0x000070, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Length_ReturnValue) == 0x000084, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Greater_IntInt_ReturnValue) == 0x000088, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Actor_Target_Score_Score) == 0x000090, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Actor_Target_Score_Score' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000098, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000A0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x0000A8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x0000C0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Get_Item) == 0x0000D8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Length_ReturnValue_1) == 0x0000E0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_DynamicCast_bSuccess) == 0x0000F0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Less_IntInt_ReturnValue) == 0x0000F1, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Actor_Target_Score_Score_1) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Actor_Target_Score_Score_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x000100, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_DynamicCast_bSuccess_1) == 0x000108, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000109, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, Temp_int_Loop_Counter_Variable_1) == 0x00010C, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Get_Item_1) == 0x000110, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Add_ReturnValue) == 0x000118, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_MakeArray_Array_1) == 0x000120, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000130, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Add_IntInt_ReturnValue_1) == 0x000148, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Array_Length_ReturnValue_2) == 0x00014C, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_MakeVector_ReturnValue) == 0x000150, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Less_IntInt_ReturnValue_1) == 0x000168, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Add_VectorVector_ReturnValue) == 0x000170, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_LineTraceSingle_OutHit) == 0x000188, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_LineTraceSingle_ReturnValue) == 0x000270, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000278, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000280, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetControlRotation_ReturnValue) == 0x000298, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_GetForwardVector_ReturnValue) == 0x0002B0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Actor_Target_Score_Score_2) == 0x0002C8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Actor_Target_Score_Score_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0002D0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, K2Node_MakeArray_Array_2) == 0x0002D8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0002E8, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0002F0, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000308, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000320, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_SphereOverlapActors_OutActors) == 0x000338, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_SphereOverlapActors_ReturnValue) == 0x000348, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_GetPunchTarget, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x00034C, "Member 'GA_BR_Lightningstrikes_targeted_C_GetPunchTarget::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_HoldMovement \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_HoldMovement) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_HoldMovement"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_HoldMovement) == 0x000008, "Wrong size on GA_BR_Lightningstrikes_targeted_C_HoldMovement"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_HoldMovement, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_HoldMovement::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock) == 0x0002B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock, Target) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock, LockLocation) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock::LockLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock, OutParams) == 0x000020, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock::OutParams' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock, CallFunc_MakeHitResult_ReturnValue) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock::CallFunc_MakeHitResult_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock, CallFunc_MakeGameplayCueParametersFromHitResult_ReturnValue) == 0x0001E0, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeCueHitParamsFromLock::CallFunc_MakeGameplayCueParametersFromHitResult_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition) == 0x000170, "Wrong size on GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, ReturnValue) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, Temp_struct_Variable) == 0x000018, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, Temp_struct_Variable_1) == 0x000030, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000048, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, Temp_bool_Variable) == 0x000060, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000068, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Array_Get_Item) == 0x000070, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_IsCrouching_ReturnValue) == 0x000078, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000080, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, K2Node_Select_Default) == 0x000098, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B0, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000C8, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_BreakVector_X) == 0x0000E0, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_BreakVector_Y) == 0x0000E8, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_BreakVector_Z) == 0x0000F0, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_MakeVector_ReturnValue) == 0x0000F8, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Normal_ReturnValue) == 0x000110, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000128, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Add_VectorVector_ReturnValue) == 0x000140, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000158, "Member 'GA_BR_Lightningstrikes_targeted_C_MakeStandingTargetPosition::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnBlendOut_91C0199948C5CE64C8B3BB9124CD6654::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnBlendOut_F4ED2E2345B4A06250DB3CA1189F57B7::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCancelled_91C0199948C5CE64C8B3BB9124CD6654::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCancelled_F4ED2E2345B4A06250DB3CA1189F57B7::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCompleted_91C0199948C5CE64C8B3BB9124CD6654::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnCompleted_F4ED2E2345B4A06250DB3CA1189F57B7::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1) == 0x000004, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1) == 0x000004, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1, WaitingTime) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_006903F1473FF0A1097DBE94FB670AA1::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B) == 0x000004, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B) == 0x000004, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B, WaitingTime) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnControlCueProcess_1D9404E04970FA33ECFC46860B872B1B::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnInterrupted_91C0199948C5CE64C8B3BB9124CD6654::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7 \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7) == 0x0000B8, "Wrong size on GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7, EventTag) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7, EventData) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_OnInterrupted_F4ED2E2345B4A06250DB3CA1189F57B7::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC) == 0x000050, "Wrong size on GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, Temp_object_Variable) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000028, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000030, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000040, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000048, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x00004C, "Member 'GA_BR_Lightningstrikes_targeted_C_SetLockOnAudioRTPC::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_Spawned \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_Spawned) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_Spawned"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_Spawned) == 0x000008, "Wrong size on GA_BR_Lightningstrikes_targeted_C_Spawned"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_Spawned, SpawnedEnemy) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_Spawned::SpawnedEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_BR_Lightningstrikes_targeted_C_ToggleInput \ +static_assert(alignof(GA_BR_Lightningstrikes_targeted_C_ToggleInput) == 0x000008, "Wrong alignment on GA_BR_Lightningstrikes_targeted_C_ToggleInput"); \ +static_assert(sizeof(GA_BR_Lightningstrikes_targeted_C_ToggleInput) == 0x000030, "Wrong size on GA_BR_Lightningstrikes_targeted_C_ToggleInput"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, Is_Ignore) == 0x000000, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::Is_Ignore' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, PlayerController) == 0x000008, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, bIsIgnoreInput) == 0x000010, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::bIsIgnoreInput' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000018, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000020, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000028, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_BR_Lightningstrikes_targeted_C_ToggleInput, K2Node_SwitchEnum_CmpSuccess) == 0x000029, "Member 'GA_BR_Lightningstrikes_targeted_C_ToggleInput::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_BR_Lightningstrikes_targeted_C \ +static_assert(alignof(UGA_BR_Lightningstrikes_targeted_C) == 0x000008, "Wrong alignment on UGA_BR_Lightningstrikes_targeted_C"); \ +static_assert(sizeof(UGA_BR_Lightningstrikes_targeted_C) == 0x0007A0, "Wrong size on UGA_BR_Lightningstrikes_targeted_C"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, UberGraphFrame) == 0x000678, "Member 'UGA_BR_Lightningstrikes_targeted_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, HitResponseTag) == 0x000680, "Member 'UGA_BR_Lightningstrikes_targeted_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, LockOnDilation) == 0x000688, "Member 'UGA_BR_Lightningstrikes_targeted_C::LockOnDilation' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, ScanRange) == 0x000690, "Member 'UGA_BR_Lightningstrikes_targeted_C::ScanRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, MaxHits) == 0x000698, "Member 'UGA_BR_Lightningstrikes_targeted_C::MaxHits' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, Locks) == 0x0006A0, "Member 'UGA_BR_Lightningstrikes_targeted_C::Locks' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, ScanDistanceBias) == 0x0006B0, "Member 'UGA_BR_Lightningstrikes_targeted_C::ScanDistanceBias' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, StandingTarget) == 0x0006B8, "Member 'UGA_BR_Lightningstrikes_targeted_C::StandingTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, AimTarget) == 0x0006D0, "Member 'UGA_BR_Lightningstrikes_targeted_C::AimTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, ScanLoops) == 0x0006E8, "Member 'UGA_BR_Lightningstrikes_targeted_C::ScanLoops' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, SmallHitDamage) == 0x0006EC, "Member 'UGA_BR_Lightningstrikes_targeted_C::SmallHitDamage' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, Big_Hit_Damage) == 0x0006F0, "Member 'UGA_BR_Lightningstrikes_targeted_C::Big_Hit_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, TargetsInRange) == 0x0006F8, "Member 'UGA_BR_Lightningstrikes_targeted_C::TargetsInRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, EnemyHighlightFX) == 0x000708, "Member 'UGA_BR_Lightningstrikes_targeted_C::EnemyHighlightFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, Array) == 0x000710, "Member 'UGA_BR_Lightningstrikes_targeted_C::Array' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, ScanSkip) == 0x000720, "Member 'UGA_BR_Lightningstrikes_targeted_C::ScanSkip' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, As_CM_Brujah_Lightning_Strike_Targeting) == 0x000728, "Member 'UGA_BR_Lightningstrikes_targeted_C::As_CM_Brujah_Lightning_Strike_Targeting' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, UnleashDilationHandle) == 0x000730, "Member 'UGA_BR_Lightningstrikes_targeted_C::UnleashDilationHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, CurrentTarget) == 0x000738, "Member 'UGA_BR_Lightningstrikes_targeted_C::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, BonusHitters) == 0x000740, "Member 'UGA_BR_Lightningstrikes_targeted_C::BonusHitters' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, UnleashDilation) == 0x000750, "Member 'UGA_BR_Lightningstrikes_targeted_C::UnleashDilation' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, InitialGravity) == 0x000754, "Member 'UGA_BR_Lightningstrikes_targeted_C::InitialGravity' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, UnleashEffectHandle) == 0x000758, "Member 'UGA_BR_Lightningstrikes_targeted_C::UnleashEffectHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, TimestopBubble) == 0x000760, "Member 'UGA_BR_Lightningstrikes_targeted_C::TimestopBubble' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, InvulnHandle) == 0x000768, "Member 'UGA_BR_Lightningstrikes_targeted_C::InvulnHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, EnemiesToHit) == 0x000770, "Member 'UGA_BR_Lightningstrikes_targeted_C::EnemiesToHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, Killcount) == 0x000780, "Member 'UGA_BR_Lightningstrikes_targeted_C::Killcount' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, scanstarted) == 0x000784, "Member 'UGA_BR_Lightningstrikes_targeted_C::scanstarted' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, TargetMassHandle) == 0x000788, "Member 'UGA_BR_Lightningstrikes_targeted_C::TargetMassHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_BR_Lightningstrikes_targeted_C, PedConverters) == 0x000790, "Member 'UGA_BR_Lightningstrikes_targeted_C::PedConverters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin \ +static_assert(alignof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin) == 0x000008, "Wrong alignment on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin"); \ +static_assert(sizeof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin) == 0x000068, "Wrong size on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, MeshComponent) == 0x000008, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, Animation) == 0x000010, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, TotalDuration) == 0x000018, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, Temp_delegate_Variable) == 0x000028, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Map_Values_Values) == 0x000038, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Map_Keys_Keys) == 0x000048, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Array_Get_Item) == 0x000058, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin, CallFunc_Less_IntInt_ReturnValue) == 0x000064, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopBegin::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd \ +static_assert(alignof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd) == 0x000008, "Wrong alignment on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd"); \ +static_assert(sizeof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd) == 0x000068, "Wrong size on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, MeshComponent) == 0x000008, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, Animation) == 0x000010, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_int_Array_Index_Variable) == 0x000018, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, Temp_delegate_Variable) == 0x000024, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Map_Values_Values) == 0x000038, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Map_Keys_Keys) == 0x000048, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Array_Get_Item) == 0x000058, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd, CallFunc_Less_IntInt_ReturnValue) == 0x000064, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopEnd::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick \ +static_assert(alignof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick) == 0x000008, "Wrong alignment on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick"); \ +static_assert(sizeof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick) == 0x0000B0, "Wrong size on AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CharacterAudioComponent) == 0x000000, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CharacterAudioComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, MeshComponent) == 0x000008, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::MeshComponent' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, Animation) == 0x000010, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, FrameDeltaTime) == 0x000018, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::FrameDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000028, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Map_Values_Values) == 0x000040, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_IsEventHeard_OutExecBranches) == 0x000050, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_IsEventHeard_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_IsEventHeard_ReturnValue) == 0x000054, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_IsEventHeard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Map_Keys_Keys) == 0x000058, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, K2Node_SwitchEnum_CmpSuccess) == 0x000068, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Array_Get_Item) == 0x00006C, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Array_Length_ReturnValue) == 0x000074, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_Less_IntInt_ReturnValue) == 0x000078, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_GetSocketBoneName_ReturnValue) == 0x00007C, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_GetSocketBoneName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x000088, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_VSize_ReturnValue) == 0x0000A0, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x0000A8, "Member 'AN_Audio_DynamicFoley_LoopPostEvent_C_OnCharacterAudioLoopTick::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_Audio_DynamicFoley_LoopPostEvent_C \ +static_assert(alignof(UAN_Audio_DynamicFoley_LoopPostEvent_C) == 0x000008, "Wrong alignment on UAN_Audio_DynamicFoley_LoopPostEvent_C"); \ +static_assert(sizeof(UAN_Audio_DynamicFoley_LoopPostEvent_C) == 0x000088, "Wrong size on UAN_Audio_DynamicFoley_LoopPostEvent_C"); \ +static_assert(offsetof(UAN_Audio_DynamicFoley_LoopPostEvent_C, Switch_Value) == 0x000080, "Member 'UAN_Audio_DynamicFoley_LoopPostEvent_C::Switch_Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_BeginPerfomanceTracking \ +static_assert(alignof(BP_EnemyBoss_C_BeginPerfomanceTracking) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_BeginPerfomanceTracking"); \ +static_assert(sizeof(BP_EnemyBoss_C_BeginPerfomanceTracking) == 0x000018, "Wrong size on BP_EnemyBoss_C_BeginPerfomanceTracking"); \ +static_assert(offsetof(BP_EnemyBoss_C_BeginPerfomanceTracking, CallFunc_GetGameTimeSinceCreation_ReturnValue) == 0x000000, "Member 'BP_EnemyBoss_C_BeginPerfomanceTracking::CallFunc_GetGameTimeSinceCreation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_BeginPerfomanceTracking, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'BP_EnemyBoss_C_BeginPerfomanceTracking::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_BeginPerfomanceTracking, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000010, "Member 'BP_EnemyBoss_C_BeginPerfomanceTracking::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_BeginPerfomanceTracking, CallFunc_GetFloatAttribute_ReturnValue) == 0x000014, "Member 'BP_EnemyBoss_C_BeginPerfomanceTracking::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_EvaluatePerformance \ +static_assert(alignof(BP_EnemyBoss_C_EvaluatePerformance) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_EvaluatePerformance"); \ +static_assert(sizeof(BP_EnemyBoss_C_EvaluatePerformance) == 0x000060, "Wrong size on BP_EnemyBoss_C_EvaluatePerformance"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, PlayerPerformingBadly) == 0x000000, "Member 'BP_EnemyBoss_C_EvaluatePerformance::PlayerPerformingBadly' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_GetGameTimeSinceCreation_ReturnValue) == 0x000004, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_GetGameTimeSinceCreation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000018, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_GetFloatAttribute_ReturnValue) == 0x00001C, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000028, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000048, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000050, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_EvaluatePerformance, CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1) == 0x000058, "Member 'BP_EnemyBoss_C_EvaluatePerformance::CallFunc_Subtract_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1 \ +static_assert(alignof(BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1"); \ +static_assert(sizeof(BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1) == 0x0000B0, "Wrong size on BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1"); \ +static_assert(offsetof(BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1, Payload) == 0x000000, "Member 'BP_EnemyBoss_C_EventReceived_2418AA8D4B4F7C3B55E632A911B9BBB1::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C \ +static_assert(alignof(BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C"); \ +static_assert(sizeof(BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C) == 0x0000B0, "Wrong size on BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C"); \ +static_assert(offsetof(BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C, Payload) == 0x000000, "Member 'BP_EnemyBoss_C_EventReceived_4D1900684EB47E3A385244954EC4124C::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss \ +static_assert(alignof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss"); \ +static_assert(sizeof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss) == 0x000880, "Wrong size on BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, EntryPoint) == 0x000000, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CustomEvent_Payload) == 0x000008, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, Temp_struct_Variable) == 0x0000C8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000178, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_IsValid_ReturnValue) == 0x000180, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, Temp_byte_Variable) == 0x000181, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array) == 0x000188, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_1) == 0x000198, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue) == 0x0001A8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_1) == 0x0001C8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_SwitchEnum_CmpSuccess) == 0x0001E8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_2) == 0x0001F0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_3) == 0x000200, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_2) == 0x000210, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_3) == 0x000230, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_4) == 0x000250, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_4) == 0x000260, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_5) == 0x000280, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_5) == 0x000290, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeStruct_GameplayEffectContextHandle) == 0x0002B0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeStruct_GameplayEffectContextHandle' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0002C8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0002D0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0002D1, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0002D2, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x0002D3, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x0002D4, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x0002D5, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x0002D8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CreateDelegate_OutputDelegate_1) == 0x0002DC, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x0002EC, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetFloatAttribute_ReturnValue) == 0x0002F0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0002F4, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_6) == 0x0002F8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_6) == 0x000308, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_AddLooseGameplayTags_ReturnValue_3) == 0x000328, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_AddLooseGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetBossName_BossName) == 0x000330, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetBossName_BossName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_SwitchEnum_CmpSuccess_1) == 0x000348, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_7) == 0x000350, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_7) == 0x000360, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetHud_ReturnValue) == 0x000380, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_RemoveLooseGameplayTags_ReturnValue_3) == 0x000388, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_RemoveLooseGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000390, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_AsWBP_Boss_Health_Meter) == 0x000398, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_AsWBP_Boss_Health_Meter' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_bSuccess) == 0x0003A0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_MakeArray_Array_8) == 0x0003A8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_MakeArray_Array_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_8) == 0x0003B8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_AddLooseGameplayTags_ReturnValue_4) == 0x0003D8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_AddLooseGameplayTags_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_Event_DeltaSeconds) == 0x0003DC, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0003E0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_IsValid_ReturnValue_1) == 0x0003E8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0003F0, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetCameraLocation_ReturnValue) == 0x000408, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeVector_ReturnValue) == 0x000420, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000438, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000450, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_K2_SetWorldRotation_SweepHitResult) == 0x000468, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_K2_SetWorldRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetAIController_ReturnValue) == 0x000550, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetObjectClass_ReturnValue) == 0x000558, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetAIController_ReturnValue_1) == 0x000560, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_EqualEqual_ClassClass_ReturnValue) == 0x000568, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_EqualEqual_ClassClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetPlayerPawn_ReturnValue) == 0x000570, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000578, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, Temp_struct_Variable_1) == 0x000580, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_IsValid_ReturnValue_2) == 0x000630, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CustomEvent_CurrentValue) == 0x000634, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CustomEvent_MaxValue) == 0x000638, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000640, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CreateDelegate_OutputDelegate_2) == 0x000648, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000658, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_CustomEvent_Payload_1) == 0x000660, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_Event_Hit) == 0x000710, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_Event_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetAIController_ReturnValue_2) == 0x0007F8, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000800, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_bSuccess_1) == 0x000810, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetAIController_ReturnValue_3) == 0x000818, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetGameTeamId_ReturnValue) == 0x000820, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000828, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_bSuccess_2) == 0x000838, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000839, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x00083C, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000840, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000848, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_bSuccess_3) == 0x000850, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000858, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_AsWrestler_Character_Base_1) == 0x000860, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_AsWrestler_Character_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, K2Node_DynamicCast_bSuccess_4) == 0x000868, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000870, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss, CallFunc_SetupHealthbar_NewMaxHealth_ImplicitCast) == 0x000878, "Member 'BP_EnemyBoss_C_ExecuteUbergraph_BP_EnemyBoss::CallFunc_SetupHealthbar_NewMaxHealth_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_GetBossName \ +static_assert(alignof(BP_EnemyBoss_C_GetBossName) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_GetBossName"); \ +static_assert(sizeof(BP_EnemyBoss_C_GetBossName) == 0x000080, "Wrong size on BP_EnemyBoss_C_GetBossName"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, BossName) == 0x000000, "Member 'BP_EnemyBoss_C_GetBossName::BossName' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_GetEnemyTypeName_ReturnValue) == 0x000018, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Conv_NameToText_ReturnValue) == 0x000020, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Conv_NameToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Conv_TextToString_ReturnValue) == 0x000038, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Contains_ReturnValue) == 0x000048, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Contains_ReturnValue_1) == 0x000049, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Replace_ReturnValue) == 0x000050, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Contains_ReturnValue_2) == 0x000060, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_GetBossName, CallFunc_Conv_StringToText_ReturnValue) == 0x000068, "Member 'BP_EnemyBoss_C_GetBossName::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_OnLanded \ +static_assert(alignof(BP_EnemyBoss_C_OnLanded) == 0x000008, "Wrong alignment on BP_EnemyBoss_C_OnLanded"); \ +static_assert(sizeof(BP_EnemyBoss_C_OnLanded) == 0x0000E8, "Wrong size on BP_EnemyBoss_C_OnLanded"); \ +static_assert(offsetof(BP_EnemyBoss_C_OnLanded, Hit) == 0x000000, "Member 'BP_EnemyBoss_C_OnLanded::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_OnStunChanged_Event \ +static_assert(alignof(BP_EnemyBoss_C_OnStunChanged_Event) == 0x000004, "Wrong alignment on BP_EnemyBoss_C_OnStunChanged_Event"); \ +static_assert(sizeof(BP_EnemyBoss_C_OnStunChanged_Event) == 0x000008, "Wrong size on BP_EnemyBoss_C_OnStunChanged_Event"); \ +static_assert(offsetof(BP_EnemyBoss_C_OnStunChanged_Event, CurrentValue) == 0x000000, "Member 'BP_EnemyBoss_C_OnStunChanged_Event::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_C_OnStunChanged_Event, MaxValue) == 0x000004, "Member 'BP_EnemyBoss_C_OnStunChanged_Event::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_C_ReceiveTick \ +static_assert(alignof(BP_EnemyBoss_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_EnemyBoss_C_ReceiveTick"); \ +static_assert(sizeof(BP_EnemyBoss_C_ReceiveTick) == 0x000004, "Wrong size on BP_EnemyBoss_C_ReceiveTick"); \ +static_assert(offsetof(BP_EnemyBoss_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_EnemyBoss_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemyBoss_C \ +static_assert(alignof(ABP_EnemyBoss_C) == 0x000010, "Wrong alignment on ABP_EnemyBoss_C"); \ +static_assert(sizeof(ABP_EnemyBoss_C) == 0x001110, "Wrong size on ABP_EnemyBoss_C"); \ +static_assert(offsetof(ABP_EnemyBoss_C, UberGraphFrame_BP_EnemyBoss_C) == 0x0010B0, "Member 'ABP_EnemyBoss_C::UberGraphFrame_BP_EnemyBoss_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, Aura) == 0x0010B8, "Member 'ABP_EnemyBoss_C::Aura' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, BossHPWidget) == 0x0010C0, "Member 'ABP_EnemyBoss_C::BossHPWidget' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, HealthBar) == 0x0010C8, "Member 'ABP_EnemyBoss_C::HealthBar' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, Phase) == 0x0010D0, "Member 'ABP_EnemyBoss_C::Phase' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, PhasingFeedComplete) == 0x0010D1, "Member 'ABP_EnemyBoss_C::PhasingFeedComplete' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, Phased) == 0x0010D8, "Member 'ABP_EnemyBoss_C::Phased' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, PlayerHPAtPhase) == 0x0010E8, "Member 'ABP_EnemyBoss_C::PlayerHPAtPhase' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, ElapsedTimeAtPhase) == 0x0010EC, "Member 'ABP_EnemyBoss_C::ElapsedTimeAtPhase' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, PlayerPerformanceThreshold) == 0x0010F0, "Member 'ABP_EnemyBoss_C::PlayerPerformanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, Difficulty) == 0x0010F8, "Member 'ABP_EnemyBoss_C::Difficulty' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_C, OriginalTeam) == 0x001100, "Member 'ABP_EnemyBoss_C::OriginalTeam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target \ +static_assert(alignof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target) == 0x000008, "Wrong alignment on BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target"); \ +static_assert(sizeof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target) == 0x000110, "Wrong size on BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, EntryPoint) == 0x000000, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000008, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0000F0, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, K2Node_CustomEvent_IsPlayerVisible) == 0x0000F1, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::K2Node_CustomEvent_IsPlayerVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x0000F2, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target, K2Node_CustomEvent_Location) == 0x0000F8, "Member 'BP_Beckon_Target_C_ExecuteUbergraph_BP_Beckon_Target::K2Node_CustomEvent_Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Beckon_Target_C_UpdatePlayerVisibility \ +static_assert(alignof(BP_Beckon_Target_C_UpdatePlayerVisibility) == 0x000001, "Wrong alignment on BP_Beckon_Target_C_UpdatePlayerVisibility"); \ +static_assert(sizeof(BP_Beckon_Target_C_UpdatePlayerVisibility) == 0x000001, "Wrong size on BP_Beckon_Target_C_UpdatePlayerVisibility"); \ +static_assert(offsetof(BP_Beckon_Target_C_UpdatePlayerVisibility, IsPlayerVisible_0) == 0x000000, "Member 'BP_Beckon_Target_C_UpdatePlayerVisibility::IsPlayerVisible_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Beckon_Target_C_UpdateTargetLocation \ +static_assert(alignof(BP_Beckon_Target_C_UpdateTargetLocation) == 0x000008, "Wrong alignment on BP_Beckon_Target_C_UpdateTargetLocation"); \ +static_assert(sizeof(BP_Beckon_Target_C_UpdateTargetLocation) == 0x000018, "Wrong size on BP_Beckon_Target_C_UpdateTargetLocation"); \ +static_assert(offsetof(BP_Beckon_Target_C_UpdateTargetLocation, Location) == 0x000000, "Member 'BP_Beckon_Target_C_UpdateTargetLocation::Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Beckon_Target_C \ +static_assert(alignof(ABP_Beckon_Target_C) == 0x000008, "Wrong alignment on ABP_Beckon_Target_C"); \ +static_assert(sizeof(ABP_Beckon_Target_C) == 0x0002E0, "Wrong size on ABP_Beckon_Target_C"); \ +static_assert(offsetof(ABP_Beckon_Target_C, UberGraphFrame) == 0x000298, "Member 'ABP_Beckon_Target_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, Beckon_System) == 0x0002A0, "Member 'ABP_Beckon_Target_C::Beckon_System' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_Beckon_Target_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, Fader_Fader_EBFBF707453616079E3937B46D16481C) == 0x0002B0, "Member 'ABP_Beckon_Target_C::Fader_Fader_EBFBF707453616079E3937B46D16481C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, Fader__Direction_EBFBF707453616079E3937B46D16481C) == 0x0002B4, "Member 'ABP_Beckon_Target_C::Fader__Direction_EBFBF707453616079E3937B46D16481C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, Fader) == 0x0002B8, "Member 'ABP_Beckon_Target_C::Fader' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, IsPlayerVisible) == 0x0002C0, "Member 'ABP_Beckon_Target_C::IsPlayerVisible' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, AllowLocationUpdates) == 0x0002C1, "Member 'ABP_Beckon_Target_C::AllowLocationUpdates' has a wrong offset!"); \ +static_assert(offsetof(ABP_Beckon_Target_C, TrueTargetLocation) == 0x0002C8, "Member 'ABP_Beckon_Target_C::TrueTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella \ +static_assert(alignof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella) == 0x000008, "Wrong alignment on BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella"); \ +static_assert(sizeof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella) == 0x000118, "Wrong size on BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, EntryPoint) == 0x000000, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_K2_GiveAbility_ReturnValue) == 0x000004, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_K2_GiveAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_Event_CurrentValue) == 0x000014, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_Event_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_Event_MaxValue) == 0x000018, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_Event_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x00001C, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x00002C, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000030, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetGameplayAbilityFromSpecHandle_bIsInstance) == 0x000031, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetGameplayAbilityFromSpecHandle_bIsInstance' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetGameplayAbilityFromSpecHandle_ReturnValue) == 0x000038, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetGameplayAbilityFromSpecHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_DynamicCast_AsGA_Ysabella_Stage_Presence) == 0x000048, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_DynamicCast_AsGA_Ysabella_Stage_Presence' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000060, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetPlayerPawn_ReturnValue) == 0x000068, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetAIController_ReturnValue) == 0x000070, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, Temp_bool_Variable) == 0x000078, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_IsAwareOfActor_ReturnValue) == 0x000079, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_IsDetectingActor_ReturnValue) == 0x00007A, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00007B, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_BooleanAND_ReturnValue) == 0x00007C, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_BooleanOR_ReturnValue) == 0x00007D, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000080, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000088, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_K2_GiveAbility_ReturnValue_1) == 0x000090, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_K2_GiveAbility_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000098, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x0000A0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_CreateDelegate_OutputDelegate) == 0x0000B0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Array_Get_Item) == 0x0000C0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000C8, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000D0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_IsValid_ReturnValue_1) == 0x0000D1, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetAIController_ReturnValue_1) == 0x0000D8, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Array_Length_ReturnValue) == 0x0000E0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Less_IntInt_ReturnValue) == 0x0000E4, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0000E5, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0000E8, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F0, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, K2Node_DynamicCast_bSuccess_1) == 0x000100, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000101, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000108, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000110, "Member 'BP_EnemyBoss_Ysabella_C_ExecuteUbergraph_BP_EnemyBoss_Ysabella::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_EnemyBoss_Ysabella_C_OnStunChanged_Event \ +static_assert(alignof(BP_EnemyBoss_Ysabella_C_OnStunChanged_Event) == 0x000004, "Wrong alignment on BP_EnemyBoss_Ysabella_C_OnStunChanged_Event"); \ +static_assert(sizeof(BP_EnemyBoss_Ysabella_C_OnStunChanged_Event) == 0x000008, "Wrong size on BP_EnemyBoss_Ysabella_C_OnStunChanged_Event"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_OnStunChanged_Event, CurrentValue) == 0x000000, "Member 'BP_EnemyBoss_Ysabella_C_OnStunChanged_Event::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(BP_EnemyBoss_Ysabella_C_OnStunChanged_Event, MaxValue) == 0x000004, "Member 'BP_EnemyBoss_Ysabella_C_OnStunChanged_Event::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_EnemyBoss_Ysabella_C \ +static_assert(alignof(ABP_EnemyBoss_Ysabella_C) == 0x000010, "Wrong alignment on ABP_EnemyBoss_Ysabella_C"); \ +static_assert(sizeof(ABP_EnemyBoss_Ysabella_C) == 0x001130, "Wrong size on ABP_EnemyBoss_Ysabella_C"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, UberGraphFrame_BP_EnemyBoss_Ysabella_C) == 0x001108, "Member 'ABP_EnemyBoss_Ysabella_C::UberGraphFrame_BP_EnemyBoss_Ysabella_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Actor) == 0x001110, "Member 'ABP_EnemyBoss_Ysabella_C::Actor' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Current_Value) == 0x001118, "Member 'ABP_EnemyBoss_Ysabella_C::Current_Value' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Max_Value) == 0x00111C, "Member 'ABP_EnemyBoss_Ysabella_C::Max_Value' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Seven5__Checked) == 0x001120, "Member 'ABP_EnemyBoss_Ysabella_C::Seven5__Checked' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Five0__Checked) == 0x001121, "Member 'ABP_EnemyBoss_Ysabella_C::Five0__Checked' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, Abilty_Spec_Handle) == 0x001124, "Member 'ABP_EnemyBoss_Ysabella_C::Abilty_Spec_Handle' has a wrong offset!"); \ +static_assert(offsetof(ABP_EnemyBoss_Ysabella_C, NumberOfHits) == 0x001128, "Member 'ABP_EnemyBoss_Ysabella_C::NumberOfHits' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_Assemble_Modular_Character \ +static_assert(alignof(BP_decapitated_head_C_Assemble_Modular_Character) == 0x000001, "Wrong alignment on BP_decapitated_head_C_Assemble_Modular_Character"); \ +static_assert(sizeof(BP_decapitated_head_C_Assemble_Modular_Character) == 0x000003, "Wrong size on BP_decapitated_head_C_Assemble_Modular_Character"); \ +static_assert(offsetof(BP_decapitated_head_C_Assemble_Modular_Character, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_Assemble_Modular_Character::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Assemble_Modular_Character, CallFunc_IsValid_ReturnValue_1) == 0x000001, "Member 'BP_decapitated_head_C_Assemble_Modular_Character::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Assemble_Modular_Character, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'BP_decapitated_head_C_Assemble_Modular_Character::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_Assign_Clue_Type_Stencils \ +static_assert(alignof(BP_decapitated_head_C_Assign_Clue_Type_Stencils) == 0x000001, "Wrong alignment on BP_decapitated_head_C_Assign_Clue_Type_Stencils"); \ +static_assert(sizeof(BP_decapitated_head_C_Assign_Clue_Type_Stencils) == 0x000001, "Wrong size on BP_decapitated_head_C_Assign_Clue_Type_Stencils"); \ +static_assert(offsetof(BP_decapitated_head_C_Assign_Clue_Type_Stencils, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'BP_decapitated_head_C_Assign_Clue_Type_Stencils::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature \ +static_assert(alignof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature"); \ +static_assert(sizeof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature) == 0x000010, "Wrong size on BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature"); \ +static_assert(offsetof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature, WakingComponent) == 0x000000, "Member 'BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature::WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_0_ComponentWakeSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature \ +static_assert(alignof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature"); \ +static_assert(sizeof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature) == 0x000010, "Wrong size on BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature"); \ +static_assert(offsetof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature, SleepingComponent) == 0x000000, "Member 'BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature::SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature, BoneName) == 0x000008, "Member 'BP_decapitated_head_C_BndEvt__BP_decapitated_head_Box_K2Node_ComponentBoundEvent_1_ComponentSleepSignature__DelegateSignature::BoneName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_CanInteract \ +static_assert(alignof(BP_decapitated_head_C_CanInteract) == 0x000001, "Wrong alignment on BP_decapitated_head_C_CanInteract"); \ +static_assert(sizeof(BP_decapitated_head_C_CanInteract) == 0x000001, "Wrong size on BP_decapitated_head_C_CanInteract"); \ +static_assert(offsetof(BP_decapitated_head_C_CanInteract, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_CanInteract::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_CanPull \ +static_assert(alignof(BP_decapitated_head_C_CanPull) == 0x000001, "Wrong alignment on BP_decapitated_head_C_CanPull"); \ +static_assert(sizeof(BP_decapitated_head_C_CanPull) == 0x000001, "Wrong size on BP_decapitated_head_C_CanPull"); \ +static_assert(offsetof(BP_decapitated_head_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_DelayedSetup \ +static_assert(alignof(BP_decapitated_head_C_DelayedSetup) == 0x000008, "Wrong alignment on BP_decapitated_head_C_DelayedSetup"); \ +static_assert(sizeof(BP_decapitated_head_C_DelayedSetup) == 0x000008, "Wrong size on BP_decapitated_head_C_DelayedSetup"); \ +static_assert(offsetof(BP_decapitated_head_C_DelayedSetup, ShatterDelay_0) == 0x000000, "Member 'BP_decapitated_head_C_DelayedSetup::ShatterDelay_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head \ +static_assert(alignof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head) == 0x000010, "Wrong alignment on BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head"); \ +static_assert(sizeof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head) == 0x0004C0, "Wrong size on BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, EntryPoint) == 0x000000, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_bool_Variable) == 0x000004, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_bool_Variable_1) == 0x000005, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_bool_Variable_2) == 0x000006, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CustomEvent_Loaded_1) == 0x000018, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_object_Variable) == 0x000020, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CustomEvent_Loaded) == 0x000028, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_object_Variable_1) == 0x000030, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_int_Array_Index_Variable) == 0x000038, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000040, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000048, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CreateDelegate_OutputDelegate_1) == 0x00005C, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x00006C, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000070, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000080, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Array_Get_Item) == 0x000088, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Array_Length_ReturnValue) == 0x000090, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000094, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000098, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0000B0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Event_Origin) == 0x0000D0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Event_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Event_Direction) == 0x0000E8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Event_Strength) == 0x000100, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Event_Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Event_Tag) == 0x000104, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasAnyTags_ReturnValue) == 0x00010C, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000110, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000128, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VSize_ReturnValue) == 0x000140, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000148, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetCenterOfMass_ReturnValue) == 0x000150, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000168, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Add_VectorVector_ReturnValue) == 0x000180, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Select_Default) == 0x000198, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001B0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_int_Variable) == 0x0001C8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_RandomUnitVector_ReturnValue) == 0x0001D0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001E8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_Select_Default_1) == 0x000200, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CustomEvent_ShatterDelay) == 0x000208, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CustomEvent_ShatterDelay' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetSkeletalMeshComponents_ReturnValue_1) == 0x000210, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetSkeletalMeshComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasTag_ReturnValue) == 0x000220, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetPlayerPawn_ReturnValue) == 0x000228, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_BooleanOR_ReturnValue) == 0x000230, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000238, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess_1) == 0x000248, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000249, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetPlayerController_ReturnValue) == 0x000250, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000258, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000260, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess_2) == 0x000268, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasClanPerk_ReturnValue) == 0x000269, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetClan_ReturnValue) == 0x000270, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_bool_Variable_3) == 0x000278, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000279, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_BooleanAND_ReturnValue) == 0x00027A, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_CreateDelegate_OutputDelegate_2) == 0x00027C, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetSkeletalMeshComponents_ReturnValue_2) == 0x000290, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetSkeletalMeshComponents_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_MakeTransform_ReturnValue) == 0x0002A0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000300, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_FinishSpawningActor_ReturnValue) == 0x000308, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000310, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000318, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000330, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VInterpTo_Constant_ReturnValue_1) == 0x000338, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VInterpTo_Constant_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_ComponentBoundEvent_WakingComponent) == 0x000350, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_ComponentBoundEvent_WakingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_ComponentBoundEvent_BoneName_1) == 0x000358, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_ComponentBoundEvent_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_ComponentBoundEvent_SleepingComponent) == 0x000360, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_ComponentBoundEvent_SleepingComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_ComponentBoundEvent_BoneName) == 0x000368, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_ComponentBoundEvent_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, Temp_int_Loop_Counter_Variable) == 0x000370, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Less_IntInt_ReturnValue) == 0x000374, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Add_IntInt_ReturnValue) == 0x000378, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000380, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000388, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess_3) == 0x000398, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000399, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_IsValid_ReturnValue) == 0x00039A, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0003A0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x0003A8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_IsValid_ReturnValue_1) == 0x0003B0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0003B8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_GetActorForwardVector_ReturnValue) == 0x0003D0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_RandomUnitVector_ReturnValue_1) == 0x0003E8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_RandomUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_RandomFloatInRange_ReturnValue) == 0x000400, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VLerp_ReturnValue) == 0x000408, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000420, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000428, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_MakeVector_ReturnValue) == 0x000440, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x000458, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000460, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsNiagara_System) == 0x000468, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess_4) == 0x000470, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000478, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000480, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_AsNiagara_System_1) == 0x000488, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_AsNiagara_System_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_DynamicCast_bSuccess_5) == 0x000490, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000498, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0004A0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x0004A8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, K2Node_VariableSet_ShatterDelay_ImplicitCast) == 0x0004B0, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::K2Node_VariableSet_ShatterDelay_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0004B4, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast_1) == 0x0004B8, "Member 'BP_decapitated_head_C_ExecuteUbergraph_BP_decapitated_head::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetAudioComponent \ +static_assert(alignof(BP_decapitated_head_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetAudioComponent"); \ +static_assert(sizeof(BP_decapitated_head_C_GetAudioComponent) == 0x000008, "Wrong size on BP_decapitated_head_C_GetAudioComponent"); \ +static_assert(offsetof(BP_decapitated_head_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_decapitated_head_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetCurrentAmmo \ +static_assert(alignof(BP_decapitated_head_C_GetCurrentAmmo) == 0x000004, "Wrong alignment on BP_decapitated_head_C_GetCurrentAmmo"); \ +static_assert(sizeof(BP_decapitated_head_C_GetCurrentAmmo) == 0x000004, "Wrong size on BP_decapitated_head_C_GetCurrentAmmo"); \ +static_assert(offsetof(BP_decapitated_head_C_GetCurrentAmmo, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetCurrentAmmo::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetDataAsset \ +static_assert(alignof(BP_decapitated_head_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetDataAsset"); \ +static_assert(sizeof(BP_decapitated_head_C_GetDataAsset) == 0x000008, "Wrong size on BP_decapitated_head_C_GetDataAsset"); \ +static_assert(offsetof(BP_decapitated_head_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetHandleLocation \ +static_assert(alignof(BP_decapitated_head_C_GetHandleLocation) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetHandleLocation"); \ +static_assert(sizeof(BP_decapitated_head_C_GetHandleLocation) == 0x000018, "Wrong size on BP_decapitated_head_C_GetHandleLocation"); \ +static_assert(offsetof(BP_decapitated_head_C_GetHandleLocation, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetHandleLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetInteractAnimation \ +static_assert(alignof(BP_decapitated_head_C_GetInteractAnimation) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetInteractAnimation"); \ +static_assert(sizeof(BP_decapitated_head_C_GetInteractAnimation) == 0x000008, "Wrong size on BP_decapitated_head_C_GetInteractAnimation"); \ +static_assert(offsetof(BP_decapitated_head_C_GetInteractAnimation, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetInteractAnimation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetInteractObjective \ +static_assert(alignof(BP_decapitated_head_C_GetInteractObjective) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetInteractObjective"); \ +static_assert(sizeof(BP_decapitated_head_C_GetInteractObjective) == 0x000008, "Wrong size on BP_decapitated_head_C_GetInteractObjective"); \ +static_assert(offsetof(BP_decapitated_head_C_GetInteractObjective, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetInteractObjective::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetPointAxis \ +static_assert(alignof(BP_decapitated_head_C_GetPointAxis) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetPointAxis"); \ +static_assert(sizeof(BP_decapitated_head_C_GetPointAxis) == 0x000060, "Wrong size on BP_decapitated_head_C_GetPointAxis"); \ +static_assert(offsetof(BP_decapitated_head_C_GetPointAxis, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetPointAxis::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_GetPointAxis, K2Node_MakeStruct_WrestlerPointAxis) == 0x000030, "Member 'BP_decapitated_head_C_GetPointAxis::K2Node_MakeStruct_WrestlerPointAxis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetScoreBias \ +static_assert(alignof(BP_decapitated_head_C_GetScoreBias) == 0x000004, "Wrong alignment on BP_decapitated_head_C_GetScoreBias"); \ +static_assert(sizeof(BP_decapitated_head_C_GetScoreBias) == 0x000004, "Wrong size on BP_decapitated_head_C_GetScoreBias"); \ +static_assert(offsetof(BP_decapitated_head_C_GetScoreBias, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetScoreBias::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetThrowableComponent \ +static_assert(alignof(BP_decapitated_head_C_GetThrowableComponent) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetThrowableComponent"); \ +static_assert(sizeof(BP_decapitated_head_C_GetThrowableComponent) == 0x000008, "Wrong size on BP_decapitated_head_C_GetThrowableComponent"); \ +static_assert(offsetof(BP_decapitated_head_C_GetThrowableComponent, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetThrowableComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetThrowableOrientation \ +static_assert(alignof(BP_decapitated_head_C_GetThrowableOrientation) == 0x000008, "Wrong alignment on BP_decapitated_head_C_GetThrowableOrientation"); \ +static_assert(sizeof(BP_decapitated_head_C_GetThrowableOrientation) == 0x000020, "Wrong size on BP_decapitated_head_C_GetThrowableOrientation"); \ +static_assert(offsetof(BP_decapitated_head_C_GetThrowableOrientation, IsWellOriented) == 0x000000, "Member 'BP_decapitated_head_C_GetThrowableOrientation::IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_GetThrowableOrientation, ReturnValue) == 0x000008, "Member 'BP_decapitated_head_C_GetThrowableOrientation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetThrowableType \ +static_assert(alignof(BP_decapitated_head_C_GetThrowableType) == 0x000001, "Wrong alignment on BP_decapitated_head_C_GetThrowableType"); \ +static_assert(sizeof(BP_decapitated_head_C_GetThrowableType) == 0x000002, "Wrong size on BP_decapitated_head_C_GetThrowableType"); \ +static_assert(offsetof(BP_decapitated_head_C_GetThrowableType, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetThrowableType::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_GetThrowableType, CallFunc_MakeLiteralByte_ReturnValue) == 0x000001, "Member 'BP_decapitated_head_C_GetThrowableType::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_IsExplosive \ +static_assert(alignof(BP_decapitated_head_C_IsExplosive) == 0x000001, "Wrong alignment on BP_decapitated_head_C_IsExplosive"); \ +static_assert(sizeof(BP_decapitated_head_C_IsExplosive) == 0x000001, "Wrong size on BP_decapitated_head_C_IsExplosive"); \ +static_assert(offsetof(BP_decapitated_head_C_IsExplosive, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_IsExplosive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_IsPointed \ +static_assert(alignof(BP_decapitated_head_C_IsPointed) == 0x000001, "Wrong alignment on BP_decapitated_head_C_IsPointed"); \ +static_assert(sizeof(BP_decapitated_head_C_IsPointed) == 0x000001, "Wrong size on BP_decapitated_head_C_IsPointed"); \ +static_assert(offsetof(BP_decapitated_head_C_IsPointed, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_IsPointed::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_IsThrowable \ +static_assert(alignof(BP_decapitated_head_C_IsThrowable) == 0x000001, "Wrong alignment on BP_decapitated_head_C_IsThrowable"); \ +static_assert(sizeof(BP_decapitated_head_C_IsThrowable) == 0x000001, "Wrong size on BP_decapitated_head_C_IsThrowable"); \ +static_assert(offsetof(BP_decapitated_head_C_IsThrowable, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_IsThrowable::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_MovableInteract \ +static_assert(alignof(BP_decapitated_head_C_MovableInteract) == 0x000008, "Wrong alignment on BP_decapitated_head_C_MovableInteract"); \ +static_assert(sizeof(BP_decapitated_head_C_MovableInteract) == 0x000040, "Wrong size on BP_decapitated_head_C_MovableInteract"); \ +static_assert(offsetof(BP_decapitated_head_C_MovableInteract, Origin) == 0x000000, "Member 'BP_decapitated_head_C_MovableInteract::Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_MovableInteract, Direction) == 0x000018, "Member 'BP_decapitated_head_C_MovableInteract::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_MovableInteract, Strength) == 0x000030, "Member 'BP_decapitated_head_C_MovableInteract::Strength' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_MovableInteract, Tag) == 0x000034, "Member 'BP_decapitated_head_C_MovableInteract::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B \ +static_assert(alignof(BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B) == 0x000008, "Wrong alignment on BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B"); \ +static_assert(sizeof(BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B) == 0x000008, "Wrong size on BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B"); \ +static_assert(offsetof(BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B, Loaded) == 0x000000, "Member 'BP_decapitated_head_C_OnLoaded_20A6C7CC4F7931A6461441B25A6B790B::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC \ +static_assert(alignof(BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC) == 0x000008, "Wrong alignment on BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC"); \ +static_assert(sizeof(BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC) == 0x000008, "Wrong size on BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC"); \ +static_assert(offsetof(BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC, Loaded) == 0x000000, "Member 'BP_decapitated_head_C_OnLoaded_62C11B6144CE0A11EBB3B082014401DC::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_Set_Clue_Overlay \ +static_assert(alignof(BP_decapitated_head_C_Set_Clue_Overlay) == 0x000008, "Wrong alignment on BP_decapitated_head_C_Set_Clue_Overlay"); \ +static_assert(sizeof(BP_decapitated_head_C_Set_Clue_Overlay) == 0x000060, "Wrong size on BP_decapitated_head_C_Set_Clue_Overlay"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, Stencil_Value) == 0x000000, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::Stencil_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, Material) == 0x000008, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::Material' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, Temp_int_Variable) == 0x000010, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000018, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, Temp_int_Variable_1) == 0x000024, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000030, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Array_Get_Item) == 0x000040, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Array_Get_Item_1) == 0x000050, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Array_Length_ReturnValue_1) == 0x000058, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Clue_Overlay, CallFunc_Less_IntInt_ReturnValue_1) == 0x00005C, "Member 'BP_decapitated_head_C_Set_Clue_Overlay::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_Set_Custom_Depth_When_Required_ \ +static_assert(alignof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_) == 0x000008, "Wrong alignment on BP_decapitated_head_C_Set_Custom_Depth_When_Required_"); \ +static_assert(sizeof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_) == 0x000020, "Wrong size on BP_decapitated_head_C_Set_Custom_Depth_When_Required_"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_Set_Custom_Depth_When_Required_::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_decapitated_head_C_Set_Custom_Depth_When_Required_::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000010, "Member 'BP_decapitated_head_C_Set_Custom_Depth_When_Required_::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_, CallFunc_HasTag_ReturnValue) == 0x000018, "Member 'BP_decapitated_head_C_Set_Custom_Depth_When_Required_::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_Set_Custom_Depth_When_Required_, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'BP_decapitated_head_C_Set_Custom_Depth_When_Required_::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_UserConstructionScript \ +static_assert(alignof(BP_decapitated_head_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_decapitated_head_C_UserConstructionScript"); \ +static_assert(sizeof(BP_decapitated_head_C_UserConstructionScript) == 0x000180, "Wrong size on BP_decapitated_head_C_UserConstructionScript"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, Temp_struct_Variable) == 0x000000, "Member 'BP_decapitated_head_C_UserConstructionScript::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, CallFunc_HasTag_ReturnValue) == 0x000060, "Member 'BP_decapitated_head_C_UserConstructionScript::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x000068, "Member 'BP_decapitated_head_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, CallFunc_K2_SetRelativeLocationAndRotation_SweepHitResult) == 0x000070, "Member 'BP_decapitated_head_C_UserConstructionScript::CallFunc_K2_SetRelativeLocationAndRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000158, "Member 'BP_decapitated_head_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000160, "Member 'BP_decapitated_head_C_UserConstructionScript::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x000168, "Member 'BP_decapitated_head_C_UserConstructionScript::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_decapitated_head_C_UserConstructionScript, K2Node_DynamicCast_bSuccess) == 0x000170, "Member 'BP_decapitated_head_C_UserConstructionScript::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_decapitated_head_C_GetTargetType \ +static_assert(alignof(BP_decapitated_head_C_GetTargetType) == 0x000001, "Wrong alignment on BP_decapitated_head_C_GetTargetType"); \ +static_assert(sizeof(BP_decapitated_head_C_GetTargetType) == 0x000001, "Wrong size on BP_decapitated_head_C_GetTargetType"); \ +static_assert(offsetof(BP_decapitated_head_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_decapitated_head_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_decapitated_head_C \ +static_assert(alignof(ABP_decapitated_head_C) == 0x000008, "Wrong alignment on ABP_decapitated_head_C"); \ +static_assert(sizeof(ABP_decapitated_head_C) == 0x0003D8, "Wrong size on ABP_decapitated_head_C"); \ +static_assert(offsetof(ABP_decapitated_head_C, UberGraphFrame) == 0x000298, "Member 'ABP_decapitated_head_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, NS_EnemyDecapitation_HeadDrips) == 0x0002A0, "Member 'ABP_decapitated_head_C::NS_EnemyDecapitation_HeadDrips' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, WrestlerHeightenedSensesClue) == 0x0002A8, "Member 'ABP_decapitated_head_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, NeckStump_gore) == 0x0002B0, "Member 'ABP_decapitated_head_C::NeckStump_gore' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, HeraAudio) == 0x0002B8, "Member 'ABP_decapitated_head_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, SkeletalMesh) == 0x0002C0, "Member 'ABP_decapitated_head_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, WrestlerModularCharacter) == 0x0002C8, "Member 'ABP_decapitated_head_C::WrestlerModularCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Box) == 0x0002D0, "Member 'ABP_decapitated_head_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline_CrackAlpha_3_580155DB437712ECA9CC5EB53B8CF9F7) == 0x0002D8, "Member 'ABP_decapitated_head_C::Timeline_CrackAlpha_3_580155DB437712ECA9CC5EB53B8CF9F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline_CrackAlpha_2_580155DB437712ECA9CC5EB53B8CF9F7) == 0x0002DC, "Member 'ABP_decapitated_head_C::Timeline_CrackAlpha_2_580155DB437712ECA9CC5EB53B8CF9F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline_GlowAlpha_580155DB437712ECA9CC5EB53B8CF9F7) == 0x0002E0, "Member 'ABP_decapitated_head_C::Timeline_GlowAlpha_580155DB437712ECA9CC5EB53B8CF9F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline_CrackAlpha_1_580155DB437712ECA9CC5EB53B8CF9F7) == 0x0002E4, "Member 'ABP_decapitated_head_C::Timeline_CrackAlpha_1_580155DB437712ECA9CC5EB53B8CF9F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline__Direction_580155DB437712ECA9CC5EB53B8CF9F7) == 0x0002E8, "Member 'ABP_decapitated_head_C::Timeline__Direction_580155DB437712ECA9CC5EB53B8CF9F7' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Timeline) == 0x0002F0, "Member 'ABP_decapitated_head_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, ModularCharacterProfile) == 0x0002F8, "Member 'ABP_decapitated_head_C::ModularCharacterProfile' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, InMindMaze) == 0x000300, "Member 'ABP_decapitated_head_C::InMindMaze' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, ShatterOverlay) == 0x000308, "Member 'ABP_decapitated_head_C::ShatterOverlay' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, ShatterOverlayRandom) == 0x000310, "Member 'ABP_decapitated_head_C::ShatterOverlayRandom' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, CharacterTags) == 0x000318, "Member 'ABP_decapitated_head_C::CharacterTags' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Init_Immediate) == 0x000338, "Member 'ABP_decapitated_head_C::Init_Immediate' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, ShatterDelay) == 0x00033C, "Member 'ABP_decapitated_head_C::ShatterDelay' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Clue_Type_Selection) == 0x000340, "Member 'ABP_decapitated_head_C::Clue_Type_Selection' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, HS_Dynamic_Material) == 0x000348, "Member 'ABP_decapitated_head_C::HS_Dynamic_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, HairMesh) == 0x000350, "Member 'ABP_decapitated_head_C::HairMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, Dreads_Mesh) == 0x000358, "Member 'ABP_decapitated_head_C::Dreads_Mesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, AcidicTouchVFX) == 0x000380, "Member 'ABP_decapitated_head_C::AcidicTouchVFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, ShatterSystem) == 0x000388, "Member 'ABP_decapitated_head_C::ShatterSystem' has a wrong offset!"); \ +static_assert(offsetof(ABP_decapitated_head_C, DissolveSystem) == 0x0003B0, "Member 'ABP_decapitated_head_C::DissolveSystem' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP \ +static_assert(alignof(CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP) == 0x000004, "Wrong alignment on CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP"); \ +static_assert(sizeof(CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP) == 0x000004, "Wrong size on CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP"); \ +static_assert(offsetof(CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP, EntryPoint) == 0x000000, "Member 'CM_PoliceHighlight_PP_C_ExecuteUbergraph_CM_PoliceHighlight_PP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_PoliceHighlight_PP_C_GetBlendWeight \ +static_assert(alignof(CM_PoliceHighlight_PP_C_GetBlendWeight) == 0x000008, "Wrong alignment on CM_PoliceHighlight_PP_C_GetBlendWeight"); \ +static_assert(sizeof(CM_PoliceHighlight_PP_C_GetBlendWeight) == 0x000008, "Wrong size on CM_PoliceHighlight_PP_C_GetBlendWeight"); \ +static_assert(offsetof(CM_PoliceHighlight_PP_C_GetBlendWeight, ReturnValue) == 0x000000, "Member 'CM_PoliceHighlight_PP_C_GetBlendWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_PoliceHighlight_PP_C \ +static_assert(alignof(UCM_PoliceHighlight_PP_C) == 0x000010, "Wrong alignment on UCM_PoliceHighlight_PP_C"); \ +static_assert(sizeof(UCM_PoliceHighlight_PP_C) == 0x000790, "Wrong size on UCM_PoliceHighlight_PP_C"); \ +static_assert(offsetof(UCM_PoliceHighlight_PP_C, UberGraphFrame) == 0x000778, "Member 'UCM_PoliceHighlight_PP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_PoliceHighlight_PP_C, Fade) == 0x000780, "Member 'UCM_PoliceHighlight_PP_C::Fade' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_ApplyCurseVFX \ +static_assert(alignof(GA_Enemy_Torture_C_ApplyCurseVFX) == 0x000010, "Wrong alignment on GA_Enemy_Torture_C_ApplyCurseVFX"); \ +static_assert(sizeof(GA_Enemy_Torture_C_ApplyCurseVFX) == 0x0000D0, "Wrong size on GA_Enemy_Torture_C_ApplyCurseVFX"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, Temp_int_Array_Index_Variable) == 0x000000, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_IsValid_ReturnValue) == 0x000014, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000020, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_Array_Get_Item) == 0x000090, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000098, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_IsValid_ReturnValue_1) == 0x0000A0, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000A8, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_SpawnSystemAttached_ReturnValue) == 0x0000B0, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_Array_Add_ReturnValue) == 0x0000B8, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_Array_Length_ReturnValue) == 0x0000BC, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ApplyCurseVFX, CallFunc_Less_IntInt_ReturnValue) == 0x0000C0, "Member 'GA_Enemy_Torture_C_ApplyCurseVFX::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_CacheRotationTypes \ +static_assert(alignof(GA_Enemy_Torture_C_CacheRotationTypes) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_CacheRotationTypes"); \ +static_assert(sizeof(GA_Enemy_Torture_C_CacheRotationTypes) == 0x000008, "Wrong size on GA_Enemy_Torture_C_CacheRotationTypes"); \ +static_assert(offsetof(GA_Enemy_Torture_C_CacheRotationTypes, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_Enemy_Torture_C_CacheRotationTypes::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C \ +static_assert(alignof(GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C"); \ +static_assert(sizeof(GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C) == 0x0000B8, "Wrong size on GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C"); \ +static_assert(offsetof(GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C, EventTag) == 0x000000, "Member 'GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C, EventData) == 0x000008, "Member 'GA_Enemy_Torture_C_EventReceived_517B0E484C8335687880189347F5981C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture \ +static_assert(alignof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture"); \ +static_assert(sizeof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture) == 0x0008C0, "Wrong size on GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, EntryPoint) == 0x000000, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_MakeStruct_StateTreeEvent) == 0x000008, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventTag_2) == 0x000028, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventData_2) == 0x000030, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate) == 0x0000E0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventTag_1) == 0x0000F0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventData_1) == 0x0000F8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001A8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventTag) == 0x0001B8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventData) == 0x0001C0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_struct_Variable) == 0x000280, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_struct_Variable_1) == 0x000330, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_3) == 0x000338, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_4) == 0x000348, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue) == 0x000358, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_5) == 0x000360, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue) == 0x000370, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_1) == 0x000378, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_6) == 0x000380, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_1) == 0x000390, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_2) == 0x000398, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_bool_Variable) == 0x0003A0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_2) == 0x0003A1, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_real_Variable) == 0x0003A4, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_real_Variable_1) == 0x0003A8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_7) == 0x0003AC, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_3) == 0x0003C0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_8) == 0x0003C8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_3) == 0x0003D8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_4) == 0x0003E0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_9) == 0x0003E8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_4) == 0x0003F8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_5) == 0x000400, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_int_Loop_Counter_Variable) == 0x000408, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_Add_IntInt_ReturnValue) == 0x00040C, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_5) == 0x000410, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_Event_bWasCancelled) == 0x000411, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_Event_EventData) == 0x000418, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, Temp_int_Array_Index_Variable) == 0x0004C8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetMontage_ReturnValue) == 0x0004D0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0004D8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_Array_Get_Item) == 0x0005B0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_Array_Length_ReturnValue) == 0x0005B8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_6) == 0x0005BC, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_Less_IntInt_ReturnValue) == 0x0005BD, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_7) == 0x0005BE, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventTag_4) == 0x0005C0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventData_4) == 0x0005C8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_WaitDelay_ReturnValue_6) == 0x000678, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_8) == 0x000680, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventTag_3) == 0x000684, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CustomEvent_EventData_3) == 0x000690, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000740, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAIController_ReturnValue) == 0x000748, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000750, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_MakeStruct_StateTreeEvent_1) == 0x000758, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_MakeStruct_StateTreeEvent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_RandomFloatInRange_ReturnValue) == 0x000778, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000780, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000788, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_10) == 0x000790, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_IsValid_ReturnValue_9) == 0x0007A0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0007A8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAIController_ReturnValue_1) == 0x0007B0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0007B8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0007C0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0007D0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0007D8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0007E0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0007E8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0007F8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000800, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000810, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_Select_Default) == 0x000814, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000818, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000830, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000838, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000840, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000850, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_CreateDelegate_OutputDelegate_11) == 0x000854, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000864, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetMassEntityHandle_ReturnValue) == 0x00086C, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_K2_GetFloatAttribute_OutPins) == 0x00086D, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_K2_GetFloatAttribute_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_K2_GetFloatAttribute_ReturnValue) == 0x000870, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_K2_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000874, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_SwitchEnum_CmpSuccess) == 0x000875, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetPlayerPawn_ReturnValue) == 0x000878, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000880, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, K2Node_MakeStruct_ApplyDamageParams) == 0x000888, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_SendStateTreeEventToActor_ReturnValue_1) == 0x0008B0, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_SendStateTreeEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0008B1, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast) == 0x0008B4, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0008B8, "Member 'GA_Enemy_Torture_C_ExecuteUbergraph_GA_Enemy_Torture::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Enemy_Torture_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Torture_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Torture_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Torture_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Torture_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Torture_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Torture_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C \ +static_assert(alignof(GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C"); \ +static_assert(sizeof(GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C) == 0x0000B8, "Wrong size on GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C, EventTag) == 0x000000, "Member 'GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C, EventData) == 0x000008, "Member 'GA_Enemy_Torture_C_OnBlendOut_517B0E484C8335687880189347F5981C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C \ +static_assert(alignof(GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C"); \ +static_assert(sizeof(GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C) == 0x0000B8, "Wrong size on GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C, EventTag) == 0x000000, "Member 'GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C, EventData) == 0x000008, "Member 'GA_Enemy_Torture_C_OnCancelled_517B0E484C8335687880189347F5981C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C \ +static_assert(alignof(GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C"); \ +static_assert(sizeof(GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C) == 0x0000B8, "Wrong size on GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C, EventTag) == 0x000000, "Member 'GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C, EventData) == 0x000008, "Member 'GA_Enemy_Torture_C_OnCompleted_517B0E484C8335687880189347F5981C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C \ +static_assert(alignof(GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C"); \ +static_assert(sizeof(GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C) == 0x0000B8, "Wrong size on GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C, EventTag) == 0x000000, "Member 'GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C, EventData) == 0x000008, "Member 'GA_Enemy_Torture_C_OnInterrupted_517B0E484C8335687880189347F5981C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_SetMovementEnabled \ +static_assert(alignof(GA_Enemy_Torture_C_SetMovementEnabled) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_SetMovementEnabled"); \ +static_assert(sizeof(GA_Enemy_Torture_C_SetMovementEnabled) == 0x000018, "Wrong size on GA_Enemy_Torture_C_SetMovementEnabled"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, bIsEnable) == 0x000000, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::bIsEnable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, Temp_bool_Variable) == 0x000001, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, Temp_byte_Variable) == 0x000002, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, Temp_byte_Variable_1) == 0x000003, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetMovementEnabled, K2Node_Select_Default) == 0x000011, "Member 'GA_Enemy_Torture_C_SetMovementEnabled::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Torture_C_SetRotationEnabled \ +static_assert(alignof(GA_Enemy_Torture_C_SetRotationEnabled) == 0x000008, "Wrong alignment on GA_Enemy_Torture_C_SetRotationEnabled"); \ +static_assert(sizeof(GA_Enemy_Torture_C_SetRotationEnabled) == 0x000028, "Wrong size on GA_Enemy_Torture_C_SetRotationEnabled"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetRotationEnabled, bIsEnabled) == 0x000000, "Member 'GA_Enemy_Torture_C_SetRotationEnabled::bIsEnabled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetRotationEnabled, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Enemy_Torture_C_SetRotationEnabled::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetRotationEnabled, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000010, "Member 'GA_Enemy_Torture_C_SetRotationEnabled::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetRotationEnabled, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000018, "Member 'GA_Enemy_Torture_C_SetRotationEnabled::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Torture_C_SetRotationEnabled, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000020, "Member 'GA_Enemy_Torture_C_SetRotationEnabled::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Torture_C \ +static_assert(alignof(UGA_Enemy_Torture_C) == 0x000008, "Wrong alignment on UGA_Enemy_Torture_C"); \ +static_assert(sizeof(UGA_Enemy_Torture_C) == 0x000718, "Wrong size on UGA_Enemy_Torture_C"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Torture_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, MontageTaskHandle) == 0x000670, "Member 'UGA_Enemy_Torture_C::MontageTaskHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, NewVar) == 0x000678, "Member 'UGA_Enemy_Torture_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, bCachedUseControllerDesiredRotation) == 0x000680, "Member 'UGA_Enemy_Torture_C::bCachedUseControllerDesiredRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, bCachedUseControllerRotationYaw) == 0x000681, "Member 'UGA_Enemy_Torture_C::bCachedUseControllerRotationYaw' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, StateTreeEventTag) == 0x000688, "Member 'UGA_Enemy_Torture_C::StateTreeEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, HeardNoiseEvent) == 0x0006A8, "Member 'UGA_Enemy_Torture_C::HeardNoiseEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, Data) == 0x0006C8, "Member 'UGA_Enemy_Torture_C::Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, VFXCOBSteam) == 0x0006F0, "Member 'UGA_Enemy_Torture_C::VFXCOBSteam' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, VFXCOBActivationsBP) == 0x000700, "Member 'UGA_Enemy_Torture_C::VFXCOBActivationsBP' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, Time_Active) == 0x000708, "Member 'UGA_Enemy_Torture_C::Time_Active' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Torture_C, Suppression) == 0x00070C, "Member 'UGA_Enemy_Torture_C::Suppression' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DeadEnemy_USK__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData) == 0x000140, "Wrong size on AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_53) == 0x000004, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_53' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_54) == 0x00000C, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_54' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_55) == 0x000010, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_55' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __BlendProfile_56) == 0x000020, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__BlendProfile_56' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __CurveFloat_57) == 0x000028, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__CurveFloat_57' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_58) == 0x000030, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_58' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_59) == 0x000031, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_59' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __ArrayProperty_60) == 0x000038, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__ArrayProperty_60' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_61) == 0x000048, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_61' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_62) == 0x000068, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_62' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __StructProperty_63) == 0x00006C, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__StructProperty_63' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __FloatProperty_64) == 0x000098, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__FloatProperty_64' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __BoolProperty_65) == 0x00009C, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__BoolProperty_65' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __EnumProperty_66) == 0x00009D, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__EnumProperty_66' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __ByteProperty_67) == 0x00009E, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__ByteProperty_67' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, __NameProperty_68) == 0x0000A0, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::__NameProperty_68' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x0000A8, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000128, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DeadEnemy_USK__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData) == 0x000001, "Wrong alignment on AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData) == 0x000003, "Wrong size on AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData, __BoolProperty_0) == 0x000002, "Member 'AnimBP_DeadEnemy_USK::FAnimBlueprintGeneratedMutableData::__BoolProperty_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DeadEnemy_USK_C_AnimGraph \ +static_assert(alignof(AnimBP_DeadEnemy_USK_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_DeadEnemy_USK_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_DeadEnemy_USK_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_DeadEnemy_USK_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_DeadEnemy_USK_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK \ +static_assert(alignof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK) == 0x000008, "Wrong alignment on AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK"); \ +static_assert(sizeof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK) == 0x000058, "Wrong size on AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, EntryPoint) == 0x000000, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, CallFunc_GetOwningActor_ReturnValue) == 0x000008, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::CallFunc_GetOwningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_DynamicCast_AsBP_Dead_Enemy_Base) == 0x000010, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_DynamicCast_AsBP_Dead_Enemy_Base' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_CustomEvent_Tag) == 0x00001C, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_CustomEvent_Tag' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000024, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000028, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_CreateDelegate_OutputDelegate) == 0x000030, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, CallFunc_GetOwningActor_ReturnValue_1) == 0x000040, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::CallFunc_GetOwningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_DynamicCast_AsBP_Dead_Enemy_Base_1) == 0x000048, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_DynamicCast_AsBP_Dead_Enemy_Base_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK, K2Node_StructMemberSet_Alpha_ImplicitCast) == 0x000054, "Member 'AnimBP_DeadEnemy_USK_C_ExecuteUbergraph_AnimBP_DeadEnemy_USK::K2Node_StructMemberSet_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_DeadEnemy_USK_C_OwnerTagchange \ +static_assert(alignof(AnimBP_DeadEnemy_USK_C_OwnerTagchange) == 0x000004, "Wrong alignment on AnimBP_DeadEnemy_USK_C_OwnerTagchange"); \ +static_assert(sizeof(AnimBP_DeadEnemy_USK_C_OwnerTagchange) == 0x000008, "Wrong size on AnimBP_DeadEnemy_USK_C_OwnerTagchange"); \ +static_assert(offsetof(AnimBP_DeadEnemy_USK_C_OwnerTagchange, Tag) == 0x000000, "Member 'AnimBP_DeadEnemy_USK_C_OwnerTagchange::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_DeadEnemy_USK_C \ +static_assert(alignof(UAnimBP_DeadEnemy_USK_C) == 0x000010, "Wrong alignment on UAnimBP_DeadEnemy_USK_C"); \ +static_assert(sizeof(UAnimBP_DeadEnemy_USK_C) == 0x000900, "Wrong size on UAnimBP_DeadEnemy_USK_C"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, UberGraphFrame) == 0x000350, "Member 'UAnimBP_DeadEnemy_USK_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, __AnimBlueprintMutables) == 0x000358, "Member 'UAnimBP_DeadEnemy_USK_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimBlueprintExtension_PropertyAccess) == 0x000360, "Member 'UAnimBP_DeadEnemy_USK_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimBlueprintExtension_Base) == 0x000368, "Member 'UAnimBP_DeadEnemy_USK_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_Root) == 0x000370, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_PoseSnapshot_1) == 0x000390, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_Slot) == 0x000420, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_ModifyBone) == 0x000468, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_LocalToComponentSpace) == 0x000590, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_ComponentToLocalSpace) == 0x0005B0, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_LayeredBoneBlend) == 0x0005D0, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_SequencePlayer_1) == 0x0006C0, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_BlendListByBool_1) == 0x000708, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_BlendListByBool_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_PoseSnapshot) == 0x000750, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_BlendListByBool) == 0x0007E0, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_BlendListByBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, AnimGraphNode_SequencePlayer) == 0x000828, "Member 'UAnimBP_DeadEnemy_USK_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, Headless) == 0x000870, "Member 'UAnimBP_DeadEnemy_USK_C::Headless' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, DeadBodyPose) == 0x000878, "Member 'UAnimBP_DeadEnemy_USK_C::DeadBodyPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, Jostleing) == 0x0008B0, "Member 'UAnimBP_DeadEnemy_USK_C::Jostleing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, Resting) == 0x0008B1, "Member 'UAnimBP_DeadEnemy_USK_C::Resting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, RestingBodyPose) == 0x0008B8, "Member 'UAnimBP_DeadEnemy_USK_C::RestingBodyPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_DeadEnemy_USK_C, Relaxed) == 0x0008F0, "Member 'UAnimBP_DeadEnemy_USK_C::Relaxed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_CapsuleHit \ +static_assert(alignof(GA_EnemyReact_Knocked_C_CapsuleHit) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_CapsuleHit"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_CapsuleHit) == 0x000118, "Wrong size on GA_EnemyReact_Knocked_C_CapsuleHit"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CapsuleHit, HitComponent) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_CapsuleHit::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CapsuleHit, OtherActor) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_CapsuleHit::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CapsuleHit, OtherComp) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_CapsuleHit::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CapsuleHit, NormalImpulse) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_CapsuleHit::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CapsuleHit, Hit) == 0x000030, "Member 'GA_EnemyReact_Knocked_C_CapsuleHit::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_CheckForBumps \ +static_assert(alignof(GA_EnemyReact_Knocked_C_CheckForBumps) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_CheckForBumps"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_CheckForBumps) == 0x000430, "Wrong size on GA_EnemyReact_Knocked_C_CheckForBumps"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_SpawnObject_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000058, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, K2Node_MakeStruct_GameplayEventData) == 0x000060, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000110, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, Temp_delegate_Variable) == 0x000128, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, K2Node_MakeArray_Array) == 0x000138, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, Temp_bool_Variable) == 0x000148, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000150, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000158, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000170, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Add_VectorVector_ReturnValue) == 0x000188, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x0001A0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x0001A4, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001A8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001B0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_CapsuleTraceSingleForObjects_OutHit) == 0x0001B8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_CapsuleTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_CapsuleTraceSingleForObjects_ReturnValue) == 0x0002A0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_CapsuleTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_bBlockingHit) == 0x0002A1, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002A2, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_Time) == 0x0002A4, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_Distance) == 0x0002A8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_Location) == 0x0002B0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_ImpactPoint) == 0x0002C8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_Normal) == 0x0002E0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_ImpactNormal) == 0x0002F8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_PhysMat) == 0x000310, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_HitActor) == 0x000318, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_HitComponent) == 0x000320, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_HitBoneName) == 0x000328, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_BoneName) == 0x000330, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_HitItem) == 0x000338, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_ElementIndex) == 0x00033C, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_FaceIndex) == 0x000340, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_TraceStart) == 0x000348, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_BreakHitResult_TraceEnd) == 0x000360, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000378, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, K2Node_DynamicCast_bSuccess) == 0x000388, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000389, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_IsValid_ReturnValue) == 0x00038A, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Array_Add_ReturnValue) == 0x00038C, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000390, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0003A8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_VLerp_ReturnValue) == 0x0003C0, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x0003D8, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000418, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000420, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_CapsuleTraceSingleForObjects_HalfHeight_ImplicitCast) == 0x000428, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_CapsuleTraceSingleForObjects_HalfHeight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_CheckForBumps, CallFunc_CapsuleTraceSingleForObjects_Radius_ImplicitCast) == 0x00042C, "Member 'GA_EnemyReact_Knocked_C_CheckForBumps::CallFunc_CapsuleTraceSingleForObjects_Radius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_DistanceAlpha \ +static_assert(alignof(GA_EnemyReact_Knocked_C_DistanceAlpha) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_DistanceAlpha"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_DistanceAlpha) == 0x000068, "Wrong size on GA_EnemyReact_Knocked_C_DistanceAlpha"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, Distance) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000038, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_Vector_Distance_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_DistanceAlpha, CallFunc_FClamp_ReturnValue) == 0x000060, "Member 'GA_EnemyReact_Knocked_C_DistanceAlpha::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_EventReceived_B8CF9914410D76A8EF1B22AF2536A359::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_EventReceived_DAEE88844588973337448EB3EF9A01F8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked \ +static_assert(alignof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked) == 0x0018E0, "Wrong size on GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_5) == 0x000014, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_5) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_struct_Variable) == 0x0000D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_struct_Variable_1) == 0x000180, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_4) == 0x000188, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_4) == 0x000190, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_3) == 0x000250, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_3) == 0x000258, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_2) == 0x000308, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_2) == 0x000318, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_2) == 0x000320, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_1) == 0x0003E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_1) == 0x0003E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_4) == 0x000498, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag) == 0x0004A8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData) == 0x0004B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_5) == 0x000560, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_struct_Variable_2) == 0x000570, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_struct_Variable_3) == 0x000620, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_6) == 0x000628, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable) == 0x000638, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_real_Variable) == 0x000640, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_1) == 0x000648, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_2) == 0x000649, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00064A, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_3) == 0x00064B, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_real_Variable_1) == 0x00064C, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_real_Variable_2) == 0x000650, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_7) == 0x000654, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_WaitDelay_ReturnValue) == 0x000668, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_8) == 0x000670, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue) == 0x000680, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_9) == 0x000684, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_10) == 0x000694, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0006A8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_11) == 0x0006B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_1) == 0x0006C0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_WaitDelay_ReturnValue_1) == 0x0006C8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_12) == 0x0006D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_2) == 0x0006E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_WaitDelay_ReturnValue_2) == 0x0006E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_3) == 0x0006F0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_4) == 0x0006F1, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_5) == 0x0006F2, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_object_Variable) == 0x0006F8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_object_Variable_1) == 0x000700, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_13) == 0x000708, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_14) == 0x000718, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_15) == 0x000728, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x000738, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_16) == 0x000740, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_4) == 0x000750, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeLiteralByte_ReturnValue) == 0x000751, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_NegateVector_ReturnValue) == 0x000758, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000770, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000778, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000798, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0007A8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0007A9, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0007B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0007B8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0007C0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0007C8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0007E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeRotFromX_ReturnValue) == 0x0007E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000800, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Roll) == 0x000818, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Pitch) == 0x00081C, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Yaw) == 0x000820, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeRotator_ReturnValue) == 0x000828, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000840, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000848, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000850, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1) == 0x000858, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000878, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000880, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000888, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0008A8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0008B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0008B8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x0008D8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_17) == 0x0008DC, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_FClamp_ReturnValue) == 0x0008F0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default) == 0x0008F8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000900, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_5) == 0x000908, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000910, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000918, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetComponentByClass_ReturnValue) == 0x000920, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetVelocity_ReturnValue) == 0x000928, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_6) == 0x000940, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000948, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_VSize_ReturnValue) == 0x000960, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Normal_ReturnValue) == 0x000968, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000980, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_6) == 0x000988, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_6) == 0x000990, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetVelocity_ReturnValue_1) == 0x000A40, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_X) == 0x000A58, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Y) == 0x000A60, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Z) == 0x000A68, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000A70, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000A78, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_18) == 0x000A80, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsFalling_ReturnValue) == 0x000A90, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000A98, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000AA0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000AA8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000AB0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetVelocity_ReturnValue_2) == 0x000AB8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetVelocity_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_7) == 0x000AD0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_7) == 0x000AD8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000B88, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000BA0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000BB8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000BC0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000BD8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000BF0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000C08, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000C10, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000C28, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000C38, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x000C40, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Not_PreBool_ReturnValue) == 0x000D28, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_NegateVector_ReturnValue_1) == 0x000D30, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BooleanAND_ReturnValue) == 0x000D48, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetWorldDeltaSeconds_ReturnValue_2) == 0x000D50, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetWorldDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000D58, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000D60, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Normal_ReturnValue_1) == 0x000D78, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000D90, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Event_EventData) == 0x000D98, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000E48, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Abs_ReturnValue) == 0x000E50, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000E58, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default_1) == 0x000E60, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_AsActor) == 0x000E68, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_bSuccess) == 0x000E70, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_7) == 0x000E71, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_8) == 0x000E72, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_AsBP_Knock_Params) == 0x000E78, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_AsBP_Knock_Params' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_bSuccess_1) == 0x000E80, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000E88, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetPlayerPawn_ReturnValue) == 0x000E90, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_MakeArray_Array) == 0x000E98, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_X_1) == 0x000EA8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Y_1) == 0x000EB0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Z_1) == 0x000EB8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeVector_ReturnValue) == 0x000EC0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Normal_ReturnValue_2) == 0x000ED8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Normal_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000EF0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000EF8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_MakeArray_Array_1) == 0x000F00, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_19) == 0x000F10, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Event_bWasCancelled) == 0x000F20, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x000F28, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x000F30, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000F38, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x000F40, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000F48, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_DynamicCast_bSuccess_2) == 0x000F58, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000F59, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000F60, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x001038, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetWallSplatMontage_ReturnValue) == 0x001110, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetWallSplatMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x001118, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetWallSplatMontage_ReturnValue_1) == 0x001120, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetWallSplatMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_9) == 0x001128, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetGetupMontage_ReturnValue) == 0x001130, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetGetupMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default_2) == 0x001138, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x001140, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x001148, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x001150, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_10) == 0x001238, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x001240, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_8) == 0x001248, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_8) == 0x001250, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_20) == 0x001300, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x001310, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x001318, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x001330, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default_3) == 0x001338, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x001340, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_21) == 0x001358, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x001368, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_X_2) == 0x001380, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Y_2) == 0x001388, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Z_2) == 0x001390, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeVector_ReturnValue_1) == 0x001398, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_22) == 0x0013B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14) == 0x0013C0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_10) == 0x0013C8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0013D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_11) == 0x0013E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0013F0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_12) == 0x001408, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x001410, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventTag_9) == 0x001428, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_EventData_9) == 0x001430, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_23) == 0x0014E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x0014F0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CreateDelegate_OutputDelegate_24) == 0x0014F8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x001508, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetMassEntityHandle_ReturnValue) == 0x001510, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_NewMontage_Output) == 0x001518, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_NewMontage_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default_4) == 0x001520, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x001528, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x001540, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001548, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Add_VectorVector_ReturnValue) == 0x001560, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsValid_ReturnValue_11) == 0x001578, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, Temp_bool_Variable_6) == 0x001579, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_13) == 0x001580, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_Select_Default_5) == 0x001588, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0015A0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_MakeStruct_ApplyDamageParams) == 0x0015B8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Roll_1) == 0x0015E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Pitch_1) == 0x0015E4, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakRotator_Yaw_1) == 0x0015E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0015EC, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeRotator_ReturnValue_1) == 0x0015F0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_IsMassStillValid_Valid) == 0x001608, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_IsMassStillValid_Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x001609, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_14) == 0x001610, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15) == 0x001618, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x001620, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_HitComponent) == 0x001628, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_OtherActor) == 0x001630, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_OtherComp) == 0x001638, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_NormalImpulse) == 0x001640, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_CustomEvent_Hit) == 0x001658, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_CustomEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_bBlockingHit) == 0x001740, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_bInitialOverlap) == 0x001741, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_Time) == 0x001744, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_Distance) == 0x001748, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_Location) == 0x001750, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_ImpactPoint) == 0x001768, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_Normal) == 0x001780, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_ImpactNormal) == 0x001798, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_PhysMat) == 0x0017B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_HitActor) == 0x0017B8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_HitComponent) == 0x0017C0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_HitBoneName) == 0x0017C8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_BoneName) == 0x0017D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_HitItem) == 0x0017D8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_ElementIndex) == 0x0017DC, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_FaceIndex) == 0x0017E0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_TraceStart) == 0x0017E8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakHitResult_TraceEnd) == 0x001800, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetObjectClass_ReturnValue) == 0x001818, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetObjectClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_VLerp_ReturnValue) == 0x001820, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_EqualEqual_ClassClass_ReturnValue) == 0x001838, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_EqualEqual_ClassClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_X_3) == 0x001840, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Y_3) == 0x001848, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BreakVector_Z_3) == 0x001850, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_EqualEqual_ClassClass_ReturnValue_1) == 0x001858, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_EqualEqual_ClassClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_MakeVector_ReturnValue_2) == 0x001860, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_BooleanOR_ReturnValue) == 0x001878, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Normal_ReturnValue_3) == 0x001880, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Normal_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Dot_VectorVector_ReturnValue) == 0x001898, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0018A0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_16) == 0x0018A8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_VariableSet_GravityScale_ImplicitCast) == 0x0018B0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_VariableSet_GravityScale_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_VariableSet_OriginalGravity_ImplicitCast) == 0x0018B8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_VariableSet_OriginalGravity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x0018C0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x0018C4, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Abs_A_ImplicitCast) == 0x0018C8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x0018D0, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked, K2Node_VariableSet_GravityScale_ImplicitCast_1) == 0x0018D8, "Member 'GA_EnemyReact_Knocked_C_ExecuteUbergraph_GA_EnemyReact_Knocked::K2Node_VariableSet_GravityScale_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_GetGetupMontage \ +static_assert(alignof(GA_EnemyReact_Knocked_C_GetGetupMontage) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_GetGetupMontage"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_GetGetupMontage) == 0x000038, "Wrong size on GA_EnemyReact_Knocked_C_GetGetupMontage"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, FallbackMontage) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::FallbackMontage' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, MontageToPlay) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, CallFunc_Array_Random_OutItem) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, CallFunc_Array_Random_OutIndex) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, CallFunc_IsValid_ReturnValue) == 0x000024, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetGetupMontage, CallFunc_GetMontageByTag_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Knocked_C_GetGetupMontage::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_GetWallSplatMontage \ +static_assert(alignof(GA_EnemyReact_Knocked_C_GetWallSplatMontage) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_GetWallSplatMontage"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_GetWallSplatMontage) == 0x000038, "Wrong size on GA_EnemyReact_Knocked_C_GetWallSplatMontage"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, MontageToPlay) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, FallbackMontage) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::FallbackMontage' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, CallFunc_Array_Random_OutItem) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, CallFunc_Array_Random_OutIndex) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000024, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, CallFunc_IsValid_ReturnValue) == 0x00002C, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_GetWallSplatMontage, CallFunc_GetMontageByTag_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Knocked_C_GetWallSplatMontage::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_IsMassStillValid \ +static_assert(alignof(GA_EnemyReact_Knocked_C_IsMassStillValid) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_IsMassStillValid"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_IsMassStillValid) == 0x000038, "Wrong size on GA_EnemyReact_Knocked_C_IsMassStillValid"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, Valid) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_GetMassEntityActor_OutActor) == 0x000028, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_GetMassEntityActor_OutActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_GetMassEntityActor_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_GetMassEntityActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_K2_IsActorDead_OutPins) == 0x000031, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_K2_IsActorDead_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_K2_IsActorDead_ReturnValue) == 0x000032, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_K2_IsActorDead_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, K2Node_SwitchEnum_CmpSuccess) == 0x000033, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_IsMassStillValid, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000034, "Member 'GA_EnemyReact_Knocked_C_IsMassStillValid::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Knocked_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Knocked_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Knocked_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_NewMontage \ +static_assert(alignof(GA_EnemyReact_Knocked_C_NewMontage) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_NewMontage"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_NewMontage) == 0x000030, "Wrong size on GA_EnemyReact_Knocked_C_NewMontage"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, Output) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_NewMontage::Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, PickedValue) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_NewMontage::PickedValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_Array_LastIndex_ReturnValue) == 0x00000C, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, Temp_int_Variable) == 0x000010, "Member 'GA_EnemyReact_Knocked_C_NewMontage::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_Less_IntInt_ReturnValue) == 0x000014, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_Array_Get_Item) == 0x000018, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_Subtract_IntInt_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000024, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_Array_LastIndex_ReturnValue_1) == 0x000028, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_Array_LastIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_NewMontage, CallFunc_RandomIntegerInRange_ReturnValue) == 0x00002C, "Member 'GA_EnemyReact_Knocked_C_NewMontage::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnBlendOut_B8CF9914410D76A8EF1B22AF2536A359::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnBlendOut_DAEE88844588973337448EB3EF9A01F8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnCancelled_B8CF9914410D76A8EF1B22AF2536A359::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnCancelled_DAEE88844588973337448EB3EF9A01F8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnCompleted_B8CF9914410D76A8EF1B22AF2536A359::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnCompleted_DAEE88844588973337448EB3EF9A01F8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnInterrupted_B8CF9914410D76A8EF1B22AF2536A359::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8 \ +static_assert(alignof(GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8) == 0x0000B8, "Wrong size on GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8, EventTag) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8, EventData) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_OnInterrupted_DAEE88844588973337448EB3EF9A01F8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_ResetCapsule \ +static_assert(alignof(GA_EnemyReact_Knocked_C_ResetCapsule) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_ResetCapsule"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_ResetCapsule) == 0x000220, "Wrong size on GA_EnemyReact_Knocked_C_ResetCapsule"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000008, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000F0, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_FMax_ReturnValue) == 0x0000F8, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000100, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_MakeVector_ReturnValue) == 0x000108, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x000120, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000208, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_FMax_B_ImplicitCast) == 0x000210, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_FMax_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_ResetCapsule, CallFunc_FMax_A_ImplicitCast) == 0x000218, "Member 'GA_EnemyReact_Knocked_C_ResetCapsule::CallFunc_FMax_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_EnemyReact_Knocked_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemyReact_Knocked_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemyReact_Knocked_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemyReact_Knocked_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemyReact_Knocked_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Knocked_C \ +static_assert(alignof(UGA_EnemyReact_Knocked_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Knocked_C"); \ +static_assert(sizeof(UGA_EnemyReact_Knocked_C) == 0x000740, "Wrong size on UGA_EnemyReact_Knocked_C"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Knocked_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, KnockBackVertical) == 0x000670, "Member 'UGA_EnemyReact_Knocked_C::KnockBackVertical' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, KnockBackHorizontal) == 0x000678, "Member 'UGA_EnemyReact_Knocked_C::KnockBackHorizontal' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, Direction) == 0x000680, "Member 'UGA_EnemyReact_Knocked_C::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, OriginalGravity) == 0x000698, "Member 'UGA_EnemyReact_Knocked_C::OriginalGravity' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, FallingForward) == 0x0006A0, "Member 'UGA_EnemyReact_Knocked_C::FallingForward' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, SlideFaloff) == 0x0006A8, "Member 'UGA_EnemyReact_Knocked_C::SlideFaloff' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, BoostDecay) == 0x0006B0, "Member 'UGA_EnemyReact_Knocked_C::BoostDecay' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, BoostAmount) == 0x0006B8, "Member 'UGA_EnemyReact_Knocked_C::BoostAmount' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, BoostAlpha) == 0x0006C0, "Member 'UGA_EnemyReact_Knocked_C::BoostAlpha' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, BumpedObjects) == 0x0006C8, "Member 'UGA_EnemyReact_Knocked_C::BumpedObjects' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, OriginalHalfHeight) == 0x0006D8, "Member 'UGA_EnemyReact_Knocked_C::OriginalHalfHeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, FallTick) == 0x0006E0, "Member 'UGA_EnemyReact_Knocked_C::FallTick' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, DefaultWallsplats) == 0x0006E8, "Member 'UGA_EnemyReact_Knocked_C::DefaultWallsplats' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, DefaultGetups) == 0x0006F8, "Member 'UGA_EnemyReact_Knocked_C::DefaultGetups' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, Start_Point) == 0x000708, "Member 'UGA_EnemyReact_Knocked_C::Start_Point' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, CanTriggerAbility) == 0x000720, "Member 'UGA_EnemyReact_Knocked_C::CanTriggerAbility' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, Entity_Handle) == 0x000724, "Member 'UGA_EnemyReact_Knocked_C::Entity_Handle' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, PreviousMontage) == 0x00072C, "Member 'UGA_EnemyReact_Knocked_C::PreviousMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, Instigator) == 0x000730, "Member 'UGA_EnemyReact_Knocked_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_C, BarkSuppressor) == 0x000738, "Member 'UGA_EnemyReact_Knocked_C::BarkSuppressor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_CantUseAbility \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_CantUseAbility) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_CantUseAbility"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_CantUseAbility) == 0x000010, "Wrong size on BP_CharacterAudioFunctions_Player_C_CantUseAbility"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_CantUseAbility, Temp_delegate_Variable) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_CantUseAbility::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE) == 0x0000B0, "Wrong size on BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE, Payload) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_EventReceived_109AB9D34EBC24CE34E10E90918E29DE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player) == 0x0005B8, "Wrong size on BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, EntryPoint) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_int_Array_Index_Variable) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_int_Loop_Counter_Variable_1) == 0x00001C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Add_IntInt_ReturnValue_1) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_int_Array_Index_Variable_1) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Variable) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Not_PreBool_ReturnValue) == 0x000039, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_Event_DeltaSeconds) == 0x00003C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_UpdatePlayerWetness_PlayerWetness) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_UpdatePlayerWetness_PlayerWetness' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_1) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_2) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_3) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_IsClosed_Variable) == 0x000080, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_1) == 0x000081, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetWrestlerMovementComponent_ReturnValue) == 0x000088, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetWrestlerMovementComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Has_Been_Initd_Variable) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetProperty_ReturnValue) == 0x000094, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Variable_1) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000099, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Not_PreBool_ReturnValue_1) == 0x00009A, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetOwner_ReturnValue) == 0x0000A0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000A8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Has_Been_Initd_Variable_1) == 0x0000C0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetGameInstance_ReturnValue) == 0x0000C8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x0000D0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerVariant_ReturnValue) == 0x0000D9, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000DC, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0000F0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000F8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsWrestler_Character) == 0x000100, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_1) == 0x000108, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000110, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetComponentByClass_ReturnValue) == 0x000118, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CustomEvent_Character) == 0x000120, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CustomEvent_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CustomEvent_PrevMovementMode) == 0x000128, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CustomEvent_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CustomEvent_PreviousCustomMode) == 0x000129, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CustomEvent_PreviousCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_object_Variable) == 0x000130, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_K2_SetTimer_ReturnValue) == 0x000138, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_K2_SetTimer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_Event_EndPlayReason) == 0x000140, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetTotalBloodValue_TotalBlood) == 0x000144, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetTotalBloodValue_TotalBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000148, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000149, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsPhyreBarkAllowed_IsAllowed) == 0x00014A, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsPhyreBarkAllowed_IsAllowed' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsPhyreBarkAllowed_IsAllowed_1) == 0x00014B, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsPhyreBarkAllowed_IsAllowed_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_BooleanAND_ReturnValue) == 0x00014C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_BooleanAND_ReturnValue_1) == 0x00014D, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsInCombat_self_CastInput) == 0x000150, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsInCombat_ReturnValue) == 0x000160, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Variable_2) == 0x000161, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000168, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000188, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000198, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_FabienAlive_Alive) == 0x000199, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_FabienAlive_Alive' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x0001A0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_BooleanAND_ReturnValue_2) == 0x0001A8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0001B0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_2) == 0x0001B8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0001C0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_IsClosed_Variable_1) == 0x0001E0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0001E8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_object_Variable_1) == 0x0001F0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_3) == 0x0001F8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_5) == 0x0001FC, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000210, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000230, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_2) == 0x000240, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerPawn_ReturnValue) == 0x000248, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000250, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000258, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_3) == 0x000268, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_byte_Variable) == 0x000269, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000270, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x000290, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_Select_Default) == 0x000298, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0002A0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_3) == 0x0002A8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_4) == 0x0002B0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x0002B8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0002C0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_4) == 0x0002C8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsDeadByMasquerade_ReturnValue) == 0x0002C9, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsDeadByMasquerade_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_4) == 0x0002CA, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_5) == 0x0002D0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_5) == 0x0002D8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_6) == 0x0002D9, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_6) == 0x0002E0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x0002E8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetPlayerCharacter_ReturnValue_7) == 0x0002F8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetPlayerCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Array_Get_Item) == 0x000300, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetDistanceTo_ReturnValue) == 0x000308, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00030C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000310, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Array_Length_ReturnValue) == 0x000318, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Variable_3) == 0x00031C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Less_IntInt_ReturnValue) == 0x00031D, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Not_PreBool_ReturnValue_2) == 0x00031E, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000320, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000328, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_5) == 0x000338, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetIsSpeaking_ReturnValue) == 0x000339, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetIsSpeaking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetActorOfClass_ReturnValue) == 0x000340, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_7) == 0x000348, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_8) == 0x000349, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetProperty_ReturnValue_1) == 0x00034A, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_bool_Variable_4) == 0x00034B, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Not_PreBool_ReturnValue_3) == 0x00034C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Not_PreBool_ReturnValue_4) == 0x00034D, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Not_PreBool_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetAllActorsOfClass_OutActors) == 0x000350, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Array_Get_Item_1) == 0x000360, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Array_Length_ReturnValue_1) == 0x000368, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Less_IntInt_ReturnValue_1) == 0x00036C, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000370, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_PlayerIsLowHealth_ReturnValue) == 0x000378, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_PlayerIsLowHealth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_BooleanAND_ReturnValue_3) == 0x000379, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_FindPatrolBarkTarget_Potential) == 0x000380, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_FindPatrolBarkTarget_Potential' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1) == 0x000388, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_6) == 0x000398, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x0003A0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_DynamicCast_bSuccess_7) == 0x0003B0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetIsSpeaking_ReturnValue_1) == 0x0003B1, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetIsSpeaking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_9) == 0x0003B2, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_10) == 0x0003B3, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetAudioComponentDefault_OutExecBranches) == 0x0003B4, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetAudioComponentDefault_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_GetAudioComponentDefault_ReturnValue) == 0x0003B8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_GetAudioComponentDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_SwitchEnum_CmpSuccess) == 0x0003C0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x0003C8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x0003D0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0003D4, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, Temp_struct_Variable) == 0x0003E0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_PawnHasStateTag_ReturnValue) == 0x000490, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_IsValid_ReturnValue_11) == 0x000491, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_HasTag_ReturnValue) == 0x000492, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CustomEvent_Payload) == 0x000498, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_CreateDelegate_OutputDelegate_6) == 0x000548, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Delay_Duration_ImplicitCast) == 0x000558, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_UpdateHeadMovement_Delta_ImplicitCast) == 0x000560, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_UpdateHeadMovement_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_UpdatePlayerWetness_Delta_ImplicitCast) == 0x000568, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_UpdatePlayerWetness_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Player_Slope_Value_Delta_ImplicitCast) == 0x000570, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Player_Slope_Value_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Player_City_Sense_Delta_ImplicitCast) == 0x000578, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Player_City_Sense_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_ReduceTickTimer_Delta_ImplicitCast) == 0x000580, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_ReduceTickTimer_Delta_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, K2Node_VariableSet_TimeSinceWindGust_ImplicitCast) == 0x000588, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::K2Node_VariableSet_TimeSinceWindGust_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000590, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000598, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Delay_Duration_ImplicitCast_1) == 0x0005A0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x0005A8, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Delay_Duration_ImplicitCast_2) == 0x0005B0, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Delay_Duration_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player, CallFunc_Delay_Duration_ImplicitCast_3) == 0x0005B4, "Member 'BP_CharacterAudioFunctions_Player_C_ExecuteUbergraph_BP_CharacterAudioFunctions_Player::CallFunc_Delay_Duration_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_FabienAlive \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_FabienAlive) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_FabienAlive"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_FabienAlive) == 0x000048, "Wrong size on BP_CharacterAudioFunctions_Player_C_FabienAlive"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, Alive) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::Alive' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_GetGameMode_ReturnValue) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_GetComponentByClass_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_GetActiveQuestTag_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_HasTag_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FabienAlive, CallFunc_Not_PreBool_ReturnValue) == 0x000041, "Member 'BP_CharacterAudioFunctions_Player_C_FabienAlive::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget) == 0x0000E8, "Wrong size on BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, DistanceThreshold) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::DistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, Potential) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::Potential' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CurrentDist) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CurrentDist' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CurrentBest) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CurrentBest' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, BestDist) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::BestDist' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Square_ReturnValue) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_RandomFloatInRange_ReturnValue) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_GetCameraLocation_ReturnValue) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_GetOwner_ReturnValue) == 0x000078, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_K2_GetNumberOfEnemiesInCombat_ReturnValue) == 0x000084, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_K2_GetNumberOfEnemiesInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Greater_IntInt_ReturnValue) == 0x000088, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_GetOwner_ReturnValue_1) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Array_Length_ReturnValue) == 0x0000A8, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Array_Get_Item) == 0x0000B0, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Less_IntInt_ReturnValue) == 0x0000B8, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000B9, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_PawnHasStateTag_ReturnValue) == 0x0000BA, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000C0, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x0000D8, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'BP_CharacterAudioFunctions_Player_C_FindPatrolBarkTarget::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities) == 0x000070, "Wrong size on BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, NumAbilities) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::NumAbilities' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_bFound) == 0x000005, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_bFound' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_bFound_1) == 0x00000C, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_bFound_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_ReturnValue_1) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000014, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000015, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Conv_BoolToInt_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Conv_BoolToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Conv_BoolToInt_ReturnValue_1) == 0x00001C, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Conv_BoolToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_bFound_2) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_bFound_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_ReturnValue_2) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_bFound_3) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_bFound_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_GetGameplayAttributeValue_ReturnValue_3) == 0x00002C, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_GetGameplayAttributeValue_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000031, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Conv_BoolToInt_ReturnValue_2) == 0x000034, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Conv_BoolToInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Conv_BoolToInt_ReturnValue_3) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Conv_BoolToInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_IsValid_ReturnValue_1) == 0x00003C, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Add_IntInt_ReturnValue_1) == 0x000044, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Add_IntInt_ReturnValue_2) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_A_ImplicitCast_2) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities, CallFunc_Greater_DoubleDouble_A_ImplicitCast_3) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_GetNumberUnlockedAbilities::CallFunc_Greater_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue) == 0x000068, "Wrong size on BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, TotalBlood) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::TotalBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_bFound) == 0x000005, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_bFound' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_bFound_1) == 0x00000C, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_bFound_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_ReturnValue_1) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_bFound_2) == 0x000014, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_bFound_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_ReturnValue_2) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_bFound_3) == 0x00001C, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_bFound_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_GetGameplayAttributeValue_ReturnValue_3) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_GetGameplayAttributeValue_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_IsValid_ReturnValue_1) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Round_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_B_ImplicitCast_2) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_GetTotalBloodValue::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed) == 0x000060, "Wrong size on BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, IsAllowed) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::IsAllowed' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, Temp_bool_Variable) == 0x000001, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_Not_PreBool_ReturnValue) == 0x000019, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_IsPlayerFabien_Return) == 0x000041, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_Not_PreBool_ReturnValue_1) == 0x000042, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_IsValid_ReturnValue) == 0x000043, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_GetIsSpeaking_self_CastInput) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_GetIsSpeaking_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_GetIsSpeaking_ReturnValue) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_GetIsSpeaking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_Not_PreBool_ReturnValue_2) == 0x000059, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_IsDead_ReturnValue) == 0x00005A, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_IsDead_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_Not_PreBool_ReturnValue_3) == 0x00005B, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed, CallFunc_BooleanAND_ReturnValue) == 0x00005C, "Member 'BP_CharacterAudioFunctions_Player_C_IsPhyreBarkAllowed::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie) == 0x000038, "Wrong size on BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_GetRemainingTimeToEnterForfeitState_ReturnValue) == 0x00000C, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_GetRemainingTimeToEnterForfeitState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_MapRangeClamped_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_Masquerade_TimeToDie::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_MoveChange \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_MoveChange) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_MoveChange"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_MoveChange) == 0x000010, "Wrong size on BP_CharacterAudioFunctions_Player_C_MoveChange"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_MoveChange, Character_0) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_MoveChange::Character_0' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_MoveChange, PrevMovementMode) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_MoveChange::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_MoveChange, PreviousCustomMode) == 0x000009, "Member 'BP_CharacterAudioFunctions_Player_C_MoveChange::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnBloodChanged \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnBloodChanged"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged) == 0x000048, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnBloodChanged"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, CurrentBlood) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::CurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, MaxBlood) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, Temp_delegate_Variable) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, Temp_delegate_Variable_1) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, CallFunc_NormalizeToRange_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnBloodChanged, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000044, "Member 'BP_CharacterAudioFunctions_Player_C_OnBloodChanged::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnGlideBegin \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnGlideBegin"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin) == 0x0000A0, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnGlideBegin"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_GetDistanceToFloor_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_GetDistanceToFloor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_VSize_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_GetLastUpdateVelocity_ReturnValue_1) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_GetLastUpdateVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, Temp_delegate_Variable) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_BreakVector_X) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_BreakVector_Y) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_BreakVector_Z) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_Abs_ReturnValue) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_MakeVector_ReturnValue) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_VSize_ReturnValue_1) == 0x000088, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_1) == 0x000094, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideBegin, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_2) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideBegin::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnGlideEnd \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnGlideEnd) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnGlideEnd"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnGlideEnd) == 0x000014, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnGlideEnd"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideEnd, Temp_delegate_Variable) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideEnd::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGlideEnd, CallFunc_GetProperty_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_OnGlideEnd::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnGliding \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnGliding) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnGliding"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnGliding) == 0x000008, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnGliding"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGliding, CallFunc_GetProperty_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnGliding::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnGliding, CallFunc_GetDistanceToFloor_ReturnValue) == 0x000004, "Member 'BP_CharacterAudioFunctions_Player_C_OnGliding::CallFunc_GetDistanceToFloor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnHealthChanged \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnHealthChanged"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged) == 0x000030, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnHealthChanged"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CurrentHealth) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, MaxHealth) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, NewHealthFraction) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::NewHealthFraction' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_NormalizeToRange_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000021, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_BooleanAND_ReturnValue) == 0x000022, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000023, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000025, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnHealthChanged, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_OnHealthChanged::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnLanded \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnLanded) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnLanded"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnLanded) == 0x0000A8, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnLanded"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_IsGliding_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_IsGliding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_BreakVector_X) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_BreakVector_Y) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_BreakVector_Z) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_VSize_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_Abs_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_MakeVector_ReturnValue) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_VSize_ReturnValue_1) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000078, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, Temp_delegate_Variable) == 0x000080, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000094, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_1) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_2) == 0x00009C, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_3) == 0x0000A0, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnLanded, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1) == 0x0000A4, "Member 'BP_CharacterAudioFunctions_Player_C_OnLanded::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged) == 0x000028, "Wrong size on BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, NewMovementMode) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, NewCustomMode) == 0x000001, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::NewCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000002, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, CallFunc_GetProperty_ReturnValue) == 0x000003, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000004, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000005, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, CallFunc_IsValid_ReturnValue) == 0x000006, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, Temp_delegate_Variable) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged, Temp_delegate_Variable_1) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_OnMovementModeChanged::Temp_delegate_Variable_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_Player_City_Sense \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_Player_City_Sense"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense) == 0x000070, "Wrong size on BP_CharacterAudioFunctions_Player_C_Player_City_Sense"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, Delta) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetProperty_ReturnValue_1) == 0x00000C, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_Conv_IntToByte_ReturnValue) == 0x00000D, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetValidValue_ReturnValue) == 0x00000E, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetProperty_ReturnValue_2) == 0x00000F, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetProperty_ReturnValue_3) == 0x000011, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000012, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetProperty_ReturnValue_4) == 0x000013, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetProperty_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GetVelocity_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_VSize_ReturnValue) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_BreakVector_X) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_BreakVector_Y) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_BreakVector_Z) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000069, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_City_Sense, CallFunc_BooleanAND_ReturnValue) == 0x00006A, "Member 'BP_CharacterAudioFunctions_Player_C_Player_City_Sense::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_Player_Slope_Value \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_Player_Slope_Value"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value) == 0x000080, "Wrong size on BP_CharacterAudioFunctions_Player_C_Player_Slope_Value"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, Delta) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_GetProperty_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_MapRangeClamped_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_GetProperty_ReturnValue_1) == 0x00002C, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_GetLastUpdateLocation_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_GetLastUpdateLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_BreakVector_X) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_BreakVector_Y) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_BreakVector_Z) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, K2Node_VariableSet_ZPositionCache_ImplicitCast) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::K2Node_VariableSet_ZPositionCache_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_Player_Slope_Value, CallFunc_SetProperty_InValue_ImplicitCast) == 0x000078, "Member 'BP_CharacterAudioFunctions_Player_C_Player_Slope_Value::CallFunc_SetProperty_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth) == 0x000048, "Wrong size on BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, Threshold) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::Threshold' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_GetFloatAttribute_ReturnValue) == 0x00001C, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x000024, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_PlayerIsLowHealth::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay) == 0x000001, "Wrong size on BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_ReceiveTick \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_ReceiveTick"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_ReceiveTick) == 0x000004, "Wrong size on BP_CharacterAudioFunctions_Player_C_ReceiveTick"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_ReduceTickTimer \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_ReduceTickTimer) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_ReduceTickTimer"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_ReduceTickTimer) == 0x000018, "Wrong size on BP_CharacterAudioFunctions_Player_C_ReduceTickTimer"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ReduceTickTimer, Delta) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_ReduceTickTimer::Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ReduceTickTimer, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_ReduceTickTimer::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_ReduceTickTimer, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_ReduceTickTimer::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck) == 0x000070, "Wrong size on BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, NewTotalBlood) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::NewTotalBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_IsPhyreBarkAllowed_IsAllowed) == 0x000004, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_IsPhyreBarkAllowed_IsAllowed' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_IsInCombat_self_CastInput) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_IsInCombat_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_GetTotalBloodValue_TotalBlood) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_GetTotalBloodValue_TotalBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_GetNumberUnlockedAbilities_NumAbilities) == 0x00005C, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_GetNumberUnlockedAbilities_NumAbilities' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_BooleanOR_ReturnValue) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_Subtract_IntInt_ReturnValue) == 0x000064, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_FabienAlive_Alive) == 0x000069, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_FabienAlive_Alive' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_Not_PreBool_ReturnValue) == 0x00006A, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_BooleanAND_ReturnValue) == 0x00006B, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_BooleanAND_ReturnValue_1) == 0x00006C, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck, CallFunc_BooleanAND_ReturnValue_2) == 0x00006D, "Member 'BP_CharacterAudioFunctions_Player_C_TickLowBloodBarkCheck::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdateAnimation \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdateAnimation"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation) == 0x0000C8, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdateAnimation"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_GetVelocity_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_BreakVector_X) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_BreakVector_Y) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_BreakVector_Z) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_CalculateDirection_ReturnValue) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_CalculateDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000054, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_Abs_ReturnValue) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_VSize_ReturnValue) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_GetIsInCutscene_self_CastInput) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_GetIsInCutscene_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_GetIsInCutscene_ReturnValue) == 0x000080, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_GetCurrentAcceleration_ReturnValue) == 0x000088, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_GetCurrentAcceleration_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_VSize_ReturnValue_1) == 0x0000A0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x0000A8, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x0000B0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1) == 0x0000B4, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2) == 0x0000B8, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_3) == 0x0000BC, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_4) == 0x0000C0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateAnimation, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x0000C4, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateAnimation::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement) == 0x0000C8, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, Delta) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_GetBaseAimRotation_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_GetBaseAimRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_GetAudioComponentDefault_OutExecBranches) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_GetAudioComponentDefault_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_GetAudioComponentDefault_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_GetAudioComponentDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_NormalizedDeltaRotator_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_NormalizedDeltaRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_FClamp_ReturnValue) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_BreakRotator_Roll) == 0x000060, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_BreakRotator_Pitch) == 0x000064, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_BreakRotator_Yaw) == 0x000068, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_ReturnValue) == 0x000070, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_ReturnValue_1) == 0x000078, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_ReturnValue_2) == 0x000080, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000088, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x0000A0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Not_PreBool_ReturnValue) == 0x0000A1, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x0000A4, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x0000A8, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_A_ImplicitCast) == 0x0000B0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_A_ImplicitCast_1) == 0x0000B8, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement, CallFunc_Abs_A_ImplicitCast_2) == 0x0000C0, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateHeadMovement::CallFunc_Abs_A_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness) == 0x000060, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, Delta) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::Delta' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, PlayerWetness) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::PlayerWetness' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_GetProperty_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_GetProperty_ReturnValue_1) == 0x000014, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_GetProperty_ReturnValue_2) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_GetProperty_ReturnValue_3) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_FMax_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, K2Node_FunctionResult_PlayerWetness_ImplicitCast) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::K2Node_FunctionResult_PlayerWetness_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, K2Node_FunctionResult_PlayerWetness_ImplicitCast_1) == 0x000048, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::K2Node_FunctionResult_PlayerWetness_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness, CallFunc_SetProperty_InValue_ImplicitCast) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePlayerWetness::CallFunc_SetProperty_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect) == 0x000004, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect) == 0x000014, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect, Temp_delegate_Variable) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect, CallFunc_GetProperty_ReturnValue) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000011, "Member 'BP_CharacterAudioFunctions_Player_C_UpdatePostFeedEffect::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface) == 0x0000A0, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_GetPlayerPawn_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_GetProperty_ReturnValue) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_Add_VectorVector_ReturnValue) == 0x000040, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_GetSurfaceParameters_OutParams) == 0x000058, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_GetSurfaceParameters_OutParams' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_GetSurfaceParameters_OutExecBranches) == 0x000090, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_GetSurfaceParameters_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, K2Node_SwitchEnum_CmpSuccess) == 0x000091, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface, CallFunc_UpdateSurfaceMaterials_CoverAmount_ImplicitCast) == 0x000098, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSlidingFloorSurface::CallFunc_UpdateSurfaceMaterials_CoverAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdateVarious \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdateVarious) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdateVarious"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdateVarious) == 0x000040, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdateVarious"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_BreakVector_X) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_BreakVector_Y) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_BreakVector_Z) == 0x000028, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_MapRangeClamped_ReturnValue) == 0x000030, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateVarious, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x000038, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateVarious::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials \ +static_assert(alignof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials) == 0x000008, "Wrong alignment on BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials"); \ +static_assert(sizeof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials) == 0x000028, "Wrong size on BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials, AudioComponent) == 0x000000, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials, BaseSurface) == 0x000008, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials::BaseSurface' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials, CoverSurface) == 0x000010, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials::CoverSurface' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials, CoverAmount) == 0x000018, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials::CoverAmount' has a wrong offset!"); \ +static_assert(offsetof(BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000020, "Member 'BP_CharacterAudioFunctions_Player_C_UpdateSurfaceMaterials::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_CharacterAudioFunctions_Player_C \ +static_assert(alignof(UBP_CharacterAudioFunctions_Player_C) == 0x000008, "Wrong alignment on UBP_CharacterAudioFunctions_Player_C"); \ +static_assert(sizeof(UBP_CharacterAudioFunctions_Player_C) == 0x000258, "Wrong size on UBP_CharacterAudioFunctions_Player_C"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, UberGraphFrame) == 0x0000A0, "Member 'UBP_CharacterAudioFunctions_Player_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, HACC) == 0x0000A8, "Member 'UBP_CharacterAudioFunctions_Player_C::HACC' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, AkCompDefault) == 0x0000B0, "Member 'UBP_CharacterAudioFunctions_Player_C::AkCompDefault' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, GlideImpactMultiplier) == 0x0000B8, "Member 'UBP_CharacterAudioFunctions_Player_C::GlideImpactMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CharacterState) == 0x0000C0, "Member 'UBP_CharacterAudioFunctions_Player_C::CharacterState' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CachedRotation) == 0x0000C8, "Member 'UBP_CharacterAudioFunctions_Player_C::CachedRotation' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, HeadRotation) == 0x0000E0, "Member 'UBP_CharacterAudioFunctions_Player_C::HeadRotation' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, Character) == 0x0000E8, "Member 'UBP_CharacterAudioFunctions_Player_C::Character' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, SlidingSurface) == 0x0000F0, "Member 'UBP_CharacterAudioFunctions_Player_C::SlidingSurface' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PF_Player_Blood) == 0x0000F8, "Member 'UBP_CharacterAudioFunctions_Player_C::PF_Player_Blood' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PB_ABL_PostFeedEffect) == 0x000100, "Member 'UBP_CharacterAudioFunctions_Player_C::PB_ABL_PostFeedEffect' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, bIsPostFeed) == 0x000108, "Member 'UBP_CharacterAudioFunctions_Player_C::bIsPostFeed' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PB_Player_Falling) == 0x000110, "Member 'UBP_CharacterAudioFunctions_Player_C::PB_Player_Falling' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PB_Player_Gliding) == 0x000118, "Member 'UBP_CharacterAudioFunctions_Player_C::PB_Player_Gliding' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PB_Player_Sliding) == 0x000120, "Member 'UBP_CharacterAudioFunctions_Player_C::PB_Player_Sliding' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CurrentMovementMode) == 0x000128, "Member 'UBP_CharacterAudioFunctions_Player_C::CurrentMovementMode' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CurrentMovementCustomMode) == 0x000129, "Member 'UBP_CharacterAudioFunctions_Player_C::CurrentMovementCustomMode' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LastBloodLevel) == 0x000130, "Member 'UBP_CharacterAudioFunctions_Player_C::LastBloodLevel' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, TickReductionFreq) == 0x000138, "Member 'UBP_CharacterAudioFunctions_Player_C::TickReductionFreq' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, TickReductionUpdateTimer) == 0x000140, "Member 'UBP_CharacterAudioFunctions_Player_C::TickReductionUpdateTimer' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, SlopeIncline) == 0x000148, "Member 'UBP_CharacterAudioFunctions_Player_C::SlopeIncline' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ZPositionCache) == 0x000150, "Member 'UBP_CharacterAudioFunctions_Player_C::ZPositionCache' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ZPosition) == 0x000158, "Member 'UBP_CharacterAudioFunctions_Player_C::ZPosition' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ZPositionTimer) == 0x000160, "Member 'UBP_CharacterAudioFunctions_Player_C::ZPositionTimer' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ZPositionFreq) == 0x000168, "Member 'UBP_CharacterAudioFunctions_Player_C::ZPositionFreq' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, IsDashing) == 0x000170, "Member 'UBP_CharacterAudioFunctions_Player_C::IsDashing' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PlayerInside) == 0x000178, "Member 'UBP_CharacterAudioFunctions_Player_C::PlayerInside' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CitySenseActive) == 0x000180, "Member 'UBP_CharacterAudioFunctions_Player_C::CitySenseActive' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PF_Player_Wetness) == 0x000188, "Member 'UBP_CharacterAudioFunctions_Player_C::PF_Player_Wetness' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PlayerWetnessDecay) == 0x000190, "Member 'UBP_CharacterAudioFunctions_Player_C::PlayerWetnessDecay' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PB_PlayerInWater) == 0x000198, "Member 'UBP_CharacterAudioFunctions_Player_C::PB_PlayerInWater' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PF_Stronghold_Wind_Amplitude) == 0x0001A0, "Member 'UBP_CharacterAudioFunctions_Player_C::PF_Stronghold_Wind_Amplitude' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ReactionTag) == 0x0001A8, "Member 'UBP_CharacterAudioFunctions_Player_C::ReactionTag' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, MPC) == 0x0001B0, "Member 'UBP_CharacterAudioFunctions_Player_C::MPC' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, Parameter_Name) == 0x0001B8, "Member 'UBP_CharacterAudioFunctions_Player_C::Parameter_Name' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, ClothMovementSpeed) == 0x0001C0, "Member 'UBP_CharacterAudioFunctions_Player_C::ClothMovementSpeed' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, CoolDownTime) == 0x0001C8, "Member 'UBP_CharacterAudioFunctions_Player_C::CoolDownTime' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, TimeSinceWindGust) == 0x0001D0, "Member 'UBP_CharacterAudioFunctions_Player_C::TimeSinceWindGust' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, NewVar) == 0x0001D8, "Member 'UBP_CharacterAudioFunctions_Player_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PI_MasqueradeLevel) == 0x0001E0, "Member 'UBP_CharacterAudioFunctions_Player_C::PI_MasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PI_CombatState) == 0x0001E8, "Member 'UBP_CharacterAudioFunctions_Player_C::PI_CombatState' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LastHealthFraction) == 0x0001F0, "Member 'UBP_CharacterAudioFunctions_Player_C::LastHealthFraction' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LowHealthBarkThreshold) == 0x0001F8, "Member 'UBP_CharacterAudioFunctions_Player_C::LowHealthBarkThreshold' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LastTotalBlood) == 0x000200, "Member 'UBP_CharacterAudioFunctions_Player_C::LastTotalBlood' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LowBloodBarkTimerHandle) == 0x000208, "Member 'UBP_CharacterAudioFunctions_Player_C::LowBloodBarkTimerHandle' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LowBloodCooldown) == 0x000210, "Member 'UBP_CharacterAudioFunctions_Player_C::LowBloodCooldown' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LastAttacker) == 0x000218, "Member 'UBP_CharacterAudioFunctions_Player_C::LastAttacker' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, MusicDebugProperty) == 0x000220, "Member 'UBP_CharacterAudioFunctions_Player_C::MusicDebugProperty' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, bMusicDebug) == 0x000228, "Member 'UBP_CharacterAudioFunctions_Player_C::bMusicDebug' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, LastPatrolSpeaker) == 0x000230, "Member 'UBP_CharacterAudioFunctions_Player_C::LastPatrolSpeaker' has a wrong offset!"); \ +static_assert(offsetof(UBP_CharacterAudioFunctions_Player_C, PatrolBlockedTags) == 0x000238, "Member 'UBP_CharacterAudioFunctions_Player_C::PatrolBlockedTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight \ +static_assert(alignof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight) == 0x000240, "Wrong size on GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, Temp_bool_True_if_break_was_hit_Variable) == 0x000000, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_Not_PreBool_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, Temp_object_Variable) == 0x000018, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, K2Node_MakeArray_Array) == 0x000030, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_SphereTraceMultiForObjects_OutHits) == 0x000058, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_SphereTraceMultiForObjects_OutHits' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_SphereTraceMultiForObjects_ReturnValue) == 0x000068, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_SphereTraceMultiForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_Array_Length_ReturnValue) == 0x00006C, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_Array_Get_Item) == 0x000078, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BooleanAND_ReturnValue) == 0x000160, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_bBlockingHit) == 0x000161, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_bInitialOverlap) == 0x000162, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_Time) == 0x000164, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_Distance) == 0x000168, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_Location) == 0x000170, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_ImpactPoint) == 0x000188, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_Normal) == 0x0001A0, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_ImpactNormal) == 0x0001B8, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_PhysMat) == 0x0001D0, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_HitActor) == 0x0001D8, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_HitComponent) == 0x0001E0, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_HitBoneName) == 0x0001E8, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_BoneName) == 0x0001F0, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_HitItem) == 0x0001F8, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_ElementIndex) == 0x0001FC, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_FaceIndex) == 0x000200, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_TraceStart) == 0x000208, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_BreakHitResult_TraceEnd) == 0x000220, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight, CallFunc_DoesImplementInterface_ReturnValue) == 0x000238, "Member 'GA_Telekinesis_Pull_C_CheckTargetActorOutOfSight::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull \ +static_assert(alignof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull) == 0x000C30, "Wrong size on GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, EntryPoint) == 0x000000, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_real_Variable) == 0x000004, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WaitRealDelay_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_1) == 0x000108, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_byte_Variable) == 0x000109, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess) == 0x00010A, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_1) == 0x00010C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_2) == 0x00011C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_3) == 0x00012C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_4) == 0x00013C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_5) == 0x000158, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_2) == 0x000168, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_6) == 0x00016C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_7) == 0x00017C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_8) == 0x00018C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_9) == 0x00019C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_10) == 0x0001AC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_11) == 0x0001BC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_12) == 0x0001CC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_13) == 0x0001DC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CustomEvent_WaitingTime) == 0x0001EC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_14) == 0x0001F0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_real_Variable_1) == 0x000200, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000208, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_3) == 0x000210, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_SpawnObject_ReturnValue) == 0x000218, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000220, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_bool_Variable) == 0x000228, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_real_Variable_2) == 0x00022C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_real_Variable_3) == 0x000230, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_15) == 0x000234, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_16) == 0x000244, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_17) == 0x000254, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_18) == 0x000264, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1) == 0x000278, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_19) == 0x000280, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_4) == 0x000290, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_ReturnValue) == 0x000298, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_20) == 0x0002A0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_5) == 0x0002B0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WaitRealDelay_ReturnValue_1) == 0x0002B8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0002C0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_6) == 0x0002D8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0002E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_byte_Variable_1) == 0x0002F8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0002F9, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_21) == 0x0002FC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_SwitchEnum_CmpSuccess_1) == 0x00030C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CustomEvent_WaitingTime_1) == 0x000310, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_22) == 0x000314, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000328, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000330, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_HasTag_ReturnValue) == 0x000338, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000340, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess) == 0x000350, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetTargetType_ReturnValue) == 0x000351, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_7) == 0x000352, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000358, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_1) == 0x000368, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_23) == 0x00036C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000380, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_8) == 0x000398, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0003A0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeStruct_GameplayEventData) == 0x0003A8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000458, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000460, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeStruct_GameplayEventData_1) == 0x000480, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000530, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000538, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000540, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetDialogueInfo_ReturnValue) == 0x000548, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeArray_Array) == 0x000550, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeArray_Array_1) == 0x000560, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000570, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x000578, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000580, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetDialogueInfo_ReturnValue_1) == 0x000588, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetDialogueInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeArray_Array_2) == 0x000590, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeArray_Array_3) == 0x0005A0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetTKTarget_Target) == 0x0005B0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetTKTarget_Target' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_9) == 0x0005B8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_24) == 0x0005BC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetTKTarget_Target_1) == 0x0005D0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetTKTarget_Target_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_10) == 0x0005D8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x0005E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_11) == 0x0005E8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsTKTargetHeavy_IsHeavy) == 0x0005E9, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsTKTargetHeavy_IsHeavy' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsTKTargetHeavy_IsHeavy_1) == 0x0005EA, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsTKTargetHeavy_IsHeavy_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Not_PreBool_ReturnValue) == 0x0005EB, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x0005F0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_2) == 0x000600, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetTargetType_ReturnValue_1) == 0x000601, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetTargetType_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_ReturnValue_2) == 0x000608, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_12) == 0x000610, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_13) == 0x000611, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_25) == 0x000614, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3) == 0x000628, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_3) == 0x000638, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CanInteract_ReturnValue) == 0x000639, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000640, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_14) == 0x000648, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_15) == 0x000649, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000650, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_PullLocation_Location) == 0x000658, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_PullLocation_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetCameraLocation_ReturnValue) == 0x000670, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetPlayerController_ReturnValue) == 0x000688, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000690, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetControlRotation_ReturnValue) == 0x0006A8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0006C0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0006D8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_16) == 0x0006DC, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_RInterpTo_ReturnValue) == 0x0006E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0006F8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeStruct_GameplayEventData_2) == 0x000700, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_26) == 0x0007B0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0007C0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0007C8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0007E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x0007F8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsTargetMassAI_Is_Mass) == 0x000810, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsTargetMassAI_Is_Mass' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BreakVector_X) == 0x000818, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BreakVector_Y) == 0x000820, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BreakVector_Z) == 0x000828, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000830, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_27) == 0x000838, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000848, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTag_ReturnValue_3) == 0x000888, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_2) == 0x000890, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4) == 0x000898, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_4) == 0x0008A8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_5) == 0x0008B0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_5) == 0x0008C0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsThrowable_ReturnValue) == 0x0008C1, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsThrowable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_17) == 0x0008C2, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsTargetUnconscious_Is_Unconscious) == 0x0008C3, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsTargetUnconscious_Is_Unconscious' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Not_PreBool_ReturnValue_1) == 0x0008C4, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAIController_ReturnValue) == 0x0008C8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BooleanAND_ReturnValue) == 0x0008D0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_18) == 0x0008D1, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0008D8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0008E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0008E8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000908, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000910, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000918, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000938, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000940, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_6) == 0x000948, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000950, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000958, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_7) == 0x000968, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x00096C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000978, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000980, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000998, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_VLerp_ReturnValue) == 0x0009A0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0009B8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_Select_Default) == 0x0009C0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0009C8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0009D8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0009E0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2) == 0x0009E8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0009F0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetGameplayEffectCount_ReturnValue) == 0x0009F8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetGameplayEffectCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000A00, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000A08, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000A10, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000A18, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000A20, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000A28, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000A30, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_FClamp_ReturnValue) == 0x000A38, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_FClamp_ReturnValue_1) == 0x000A40, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_3) == 0x000A48, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_ReturnValue_3) == 0x000A50, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_19) == 0x000A58, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_20) == 0x000A59, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MakeLiteralGameplayTag_ReturnValue_4) == 0x000A5C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MakeLiteralGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_HasTag_ReturnValue_1) == 0x000A64, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_28) == 0x000A68, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_21) == 0x000A78, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_Event_bWasCancelled) == 0x000A79, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_3) == 0x000A7C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_MightFeed_HasFeedTarget) == 0x000A84, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_MightFeed_HasFeedTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_29) == 0x000A88, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_4) == 0x000A98, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsValid_ReturnValue_22) == 0x000AA0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000AA8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000AB0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_CreateDelegate_OutputDelegate_30) == 0x000AC8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_6) == 0x000AD8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_8) == 0x000AE8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetThrowableOrientation_IsWellOriented) == 0x000AE9, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetThrowableOrientation_IsWellOriented' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetThrowableOrientation_ReturnValue) == 0x000AF0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetThrowableOrientation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000B08, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000B10, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsPrimitive_Component) == 0x000B28, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsPrimitive_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_9) == 0x000B30, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetDirectionUnitVector_ReturnValue_2) == 0x000B38, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetDirectionUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_IsSimulatingPhysics_ReturnValue) == 0x000B50, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_IsSimulatingPhysics_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000B58, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x000B70, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Add_VectorVector_ReturnValue) == 0x000B88, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, Temp_byte_Variable_2) == 0x000BA0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Normal_ReturnValue) == 0x000BA8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_SelectVector_ReturnValue) == 0x000BC0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000BD8, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_7) == 0x000BF0, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_10) == 0x000C00, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_8) == 0x000C08, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, K2Node_DynamicCast_bSuccess_11) == 0x000C18, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CanInteract_ReturnValue_1) == 0x000C19, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CanInteract_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_GetTargetType_ReturnValue_2) == 0x000C1A, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_GetTargetType_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x000C1C, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_WrestlerTaskTick_Duration_ImplicitCast) == 0x000C20, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_WrestlerTaskTick_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast) == 0x000C24, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_CreatePlayMontageAndWaitProxy_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull, CallFunc_ActorTimeDelay_Duration_ImplicitCast_1) == 0x000C28, "Member 'GA_Telekinesis_Pull_C_ExecuteUbergraph_GA_Telekinesis_Pull::CallFunc_ActorTimeDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_Filter_Targets \ +static_assert(alignof(GA_Telekinesis_Pull_C_Filter_Targets) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_Filter_Targets"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_Filter_Targets) == 0x000458, "Wrong size on GA_Telekinesis_Pull_C_Filter_Targets"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Potential) == 0x000000, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Potential' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Range) == 0x000010, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Range' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Angle) == 0x000018, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Angle' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Target_0) == 0x000020, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Target_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Found) == 0x000028, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Found' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, IsGun) == 0x000029, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::IsGun' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, InCombat) == 0x00002A, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::InCombat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, TestLoc) == 0x000030, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::TestLoc' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, AngleBias) == 0x000048, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::AngleBias' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Best_Angle) == 0x000050, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Best_Angle' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Current_Angle) == 0x000058, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Current_Angle' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, PotentialTarget) == 0x000060, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::PotentialTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CurrentTest) == 0x000068, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CurrentTest' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable) == 0x000070, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Array_Length_ReturnValue) == 0x000074, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable) == 0x000078, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_1) == 0x000080, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_1) == 0x000088, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_2) == 0x000090, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_3) == 0x000098, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_2) == 0x0000A0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_4) == 0x0000A8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_5) == 0x0000B0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_3) == 0x0000B8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_6) == 0x0000C0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_7) == 0x0000C8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_4) == 0x0000D0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_byte_Variable) == 0x0000D1, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000D8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_SwitchEnum_CmpSuccess) == 0x0000F0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0000F8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetTargetType_ReturnValue) == 0x000109, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_int_Array_Index_Variable) == 0x00010C, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_8) == 0x000110, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Array_Get_Item) == 0x000118, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000120, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess_1) == 0x000130, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x000138, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess_2) == 0x000148, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_CanInteract_ReturnValue) == 0x000149, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_CanInteract_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_CanPull_ReturnValue) == 0x00014A, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_CanPull_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_BooleanOR_ReturnValue) == 0x00014B, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsBP_Throwable_Weapon) == 0x000150, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsBP_Throwable_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess_3) == 0x000158, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Greater_IntInt_ReturnValue) == 0x000159, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_BooleanOR_ReturnValue_1) == 0x00015A, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000160, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess_4) == 0x000170, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000171, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_int_Loop_Counter_Variable) == 0x000174, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Less_IntInt_ReturnValue) == 0x000178, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default) == 0x000180, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Add_IntInt_ReturnValue) == 0x000188, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_real_Variable_9) == 0x000190, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_real_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default_1) == 0x000198, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default_2) == 0x0001A0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default_3) == 0x0001A8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0001B0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_IsInCombat_self_CastInput) == 0x0001B8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_IsInCombat_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_IsInCombat_ReturnValue) == 0x0001C8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Square_ReturnValue) == 0x0001D0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_5) == 0x0001D8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3) == 0x0001E0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_DynamicCast_bSuccess_5) == 0x0001F0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_CanInteract_ReturnValue_1) == 0x0001F1, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_CanInteract_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default_4) == 0x0001F8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_Select_Default_5) == 0x000200, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetComponentByClass_ReturnValue) == 0x000208, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_IsValid_ReturnValue) == 0x000210, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetSocketLocation_ReturnValue) == 0x000218, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000230, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_IsValid_ReturnValue_1) == 0x000248, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, Temp_bool_Variable_6) == 0x000249, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x00024A, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00024B, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetPlayerPawn_ReturnValue) == 0x000250, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_BooleanAND_ReturnValue) == 0x000258, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, K2Node_MakeArray_Array) == 0x000260, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000270, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000278, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetCameraLocation_ReturnValue) == 0x000280, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetCameraRotation_ReturnValue) == 0x000298, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0002B0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetForwardVector_ReturnValue) == 0x0002C8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0002E0, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetCameraLocation_ReturnValue_1) == 0x0002F8, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Add_VectorVector_ReturnValue) == 0x000310, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000328, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_LineTraceSingle_OutHit) == 0x000340, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_LineTraceSingle_ReturnValue) == 0x000428, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Dot_VectorVector_ReturnValue) == 0x000430, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_DegAcos_ReturnValue) == 0x000438, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000440, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000448, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_Filter_Targets, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000450, "Member 'GA_Telekinesis_Pull_C_Filter_Targets::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_GetSpawnLocation \ +static_assert(alignof(GA_Telekinesis_Pull_C_GetSpawnLocation) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_GetSpawnLocation"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_GetSpawnLocation) == 0x000238, "Wrong size on GA_Telekinesis_Pull_C_GetSpawnLocation"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, Start) == 0x000000, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::Start' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, End) == 0x000018, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::End' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, Temp_bool_Variable) == 0x000048, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, Temp_object_Variable) == 0x000050, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_LineTraceSingle_OutHit) == 0x000060, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_LineTraceSingle_ReturnValue) == 0x000148, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_bBlockingHit) == 0x000149, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_bInitialOverlap) == 0x00014A, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_Time) == 0x00014C, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_Distance) == 0x000150, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_Location) == 0x000158, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_ImpactPoint) == 0x000170, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_Normal) == 0x000188, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_ImpactNormal) == 0x0001A0, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_PhysMat) == 0x0001B8, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_HitActor) == 0x0001C0, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_HitComponent) == 0x0001C8, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_HitBoneName) == 0x0001D0, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_BoneName) == 0x0001D8, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_HitItem) == 0x0001E0, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_ElementIndex) == 0x0001E4, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_FaceIndex) == 0x0001E8, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_TraceStart) == 0x0001F0, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, CallFunc_BreakHitResult_TraceEnd) == 0x000208, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetSpawnLocation, K2Node_Select_Default) == 0x000220, "Member 'GA_Telekinesis_Pull_C_GetSpawnLocation::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_GetTKTarget \ +static_assert(alignof(GA_Telekinesis_Pull_C_GetTKTarget) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_GetTKTarget"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_GetTKTarget) == 0x000020, "Wrong size on GA_Telekinesis_Pull_C_GetTKTarget"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetTKTarget, Target_0) == 0x000000, "Member 'GA_Telekinesis_Pull_C_GetTKTarget::Target_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetTKTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_GetTKTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetTKTarget, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Pull_C_GetTKTarget::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_GetTKTarget, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Pull_C_GetTKTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_IsTargetMassAI \ +static_assert(alignof(GA_Telekinesis_Pull_C_IsTargetMassAI) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_IsTargetMassAI"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_IsTargetMassAI) == 0x000028, "Wrong size on GA_Telekinesis_Pull_C_IsTargetMassAI"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, Is_Mass) == 0x000000, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::Is_Mass' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, K2Node_DynamicCast_AsWrestler_Mass_Character) == 0x000008, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::K2Node_DynamicCast_AsWrestler_Mass_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000018, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, K2Node_DynamicCast_bSuccess_1) == 0x000020, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetMassAI, CallFunc_IsMassCharacter_ReturnValue) == 0x000021, "Member 'GA_Telekinesis_Pull_C_IsTargetMassAI::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_IsTargetUnconscious \ +static_assert(alignof(GA_Telekinesis_Pull_C_IsTargetUnconscious) == 0x000001, "Wrong alignment on GA_Telekinesis_Pull_C_IsTargetUnconscious"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_IsTargetUnconscious) == 0x000002, "Wrong size on GA_Telekinesis_Pull_C_IsTargetUnconscious"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetUnconscious, Is_Unconscious) == 0x000000, "Member 'GA_Telekinesis_Pull_C_IsTargetUnconscious::Is_Unconscious' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTargetUnconscious, CallFunc_IsUnconscious_ReturnValue) == 0x000001, "Member 'GA_Telekinesis_Pull_C_IsTargetUnconscious::CallFunc_IsUnconscious_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_IsTKTargetHeavy \ +static_assert(alignof(GA_Telekinesis_Pull_C_IsTKTargetHeavy) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_IsTKTargetHeavy"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_IsTKTargetHeavy) == 0x000028, "Wrong size on GA_Telekinesis_Pull_C_IsTKTargetHeavy"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, Actor) == 0x000000, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, IsHeavy) == 0x000008, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::IsHeavy' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, Temp_byte_Variable) == 0x000009, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000010, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, CallFunc_GetTargetType_ReturnValue) == 0x000021, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_IsTKTargetHeavy, CallFunc_Array_Contains_ReturnValue) == 0x000022, "Member 'GA_Telekinesis_Pull_C_IsTKTargetHeavy::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_K2_OnEndAbility \ +static_assert(alignof(GA_Telekinesis_Pull_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Telekinesis_Pull_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Telekinesis_Pull_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Telekinesis_Pull_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_MightFeed \ +static_assert(alignof(GA_Telekinesis_Pull_C_MightFeed) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_MightFeed"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_MightFeed) == 0x000030, "Wrong size on GA_Telekinesis_Pull_C_MightFeed"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, HasFeedTarget) == 0x000000, "Member 'GA_Telekinesis_Pull_C_MightFeed::HasFeedTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_GetPlayerController_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_GetLocalPlayerSubSystemFromPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_HasTargetData_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_HasTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_IsInputMethodActive_ReturnValue) == 0x000029, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_IsInputMethodActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_HasTargetData_ReturnValue_1) == 0x00002A, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_HasTargetData_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_BooleanOR_ReturnValue) == 0x00002B, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_MightFeed, CallFunc_BooleanAND_ReturnValue) == 0x00002C, "Member 'GA_Telekinesis_Pull_C_MightFeed::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480 \ +static_assert(alignof(GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480) == 0x000004, "Wrong alignment on GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480) == 0x000004, "Wrong size on GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480, WaitingTime) == 0x000000, "Member 'GA_Telekinesis_Pull_C_OnControlCueProcess_0E5460CD410A3E718B9C46ABA35FE480::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0 \ +static_assert(alignof(GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0) == 0x000004, "Wrong alignment on GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0) == 0x000004, "Wrong size on GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0, WaitingTime) == 0x000000, "Member 'GA_Telekinesis_Pull_C_OnControlCueProcess_9D4D921A40287E138699BE8F9A051EE0::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_PlayPullCue \ +static_assert(alignof(GA_Telekinesis_Pull_C_PlayPullCue) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_PlayPullCue"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_PlayPullCue) == 0x000128, "Wrong size on GA_Telekinesis_Pull_C_PlayPullCue"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, GameplayCueTag_0) == 0x000000, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::GameplayCueTag_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_Vector_Distance_ReturnValue) == 0x000040, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayPullCue, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000120, "Member 'GA_Telekinesis_Pull_C_PlayPullCue::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_PlayTargetSequence \ +static_assert(alignof(GA_Telekinesis_Pull_C_PlayTargetSequence) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_PlayTargetSequence"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_PlayTargetSequence) == 0x000038, "Wrong size on GA_Telekinesis_Pull_C_PlayTargetSequence"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000000, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, CallFunc_GetInteractAnimation_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::CallFunc_GetInteractAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, CallFunc_CreateLevelSequencePlayer_OutActor) == 0x000028, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::CallFunc_CreateLevelSequencePlayer_OutActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PlayTargetSequence, CallFunc_CreateLevelSequencePlayer_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Pull_C_PlayTargetSequence::CallFunc_CreateLevelSequencePlayer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_PullLocation \ +static_assert(alignof(GA_Telekinesis_Pull_C_PullLocation) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_PullLocation"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_PullLocation) == 0x0000B8, "Wrong size on GA_Telekinesis_Pull_C_PullLocation"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, TargetPullable) == 0x000000, "Member 'GA_Telekinesis_Pull_C_PullLocation::TargetPullable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, Location) == 0x000008, "Member 'GA_Telekinesis_Pull_C_PullLocation::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, Temp_byte_Variable) == 0x000020, "Member 'GA_Telekinesis_Pull_C_PullLocation::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000028, "Member 'GA_Telekinesis_Pull_C_PullLocation::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'GA_Telekinesis_Pull_C_PullLocation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetTargetType_ReturnValue) == 0x000039, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, K2Node_SwitchEnum_CmpSuccess) == 0x00003A, "Member 'GA_Telekinesis_Pull_C_PullLocation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000040, "Member 'GA_Telekinesis_Pull_C_PullLocation::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'GA_Telekinesis_Pull_C_PullLocation::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetThrowableComponent_ReturnValue) == 0x000060, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetThrowableComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetComponentBounds_Origin) == 0x000068, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetComponentBounds_BoxExtent) == 0x000080, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetComponentBounds_SphereRadius) == 0x000098, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_IsValid_ReturnValue) == 0x00009C, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_PullLocation, CallFunc_GetSocketLocation_ReturnValue) == 0x0000A0, "Member 'GA_Telekinesis_Pull_C_PullLocation::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_SpawnRandomProjectile \ +static_assert(alignof(GA_Telekinesis_Pull_C_SpawnRandomProjectile) == 0x000010, "Wrong alignment on GA_Telekinesis_Pull_C_SpawnRandomProjectile"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_SpawnRandomProjectile) == 0x000150, "Wrong size on GA_Telekinesis_Pull_C_SpawnRandomProjectile"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_GetActorForwardVector_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Set_ToArray_Result) == 0x000020, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Array_Random_OutItem) == 0x000048, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Array_Random_OutIndex) == 0x000070, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000074, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_LoadClassAsset_Blocking_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_LoadClassAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, K2Node_ClassDynamicCast_AsActor) == 0x000080, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::K2Node_ClassDynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, K2Node_ClassDynamicCast_bSuccess) == 0x000088, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000090, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_Add_VectorVector_ReturnValue) == 0x0000A8, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_GetSpawnLocation_ReturnValue) == 0x0000C0, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_GetSpawnLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_MakeTransform_ReturnValue) == 0x0000E0, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000140, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_SpawnRandomProjectile, CallFunc_FinishSpawningActor_ReturnValue) == 0x000148, "Member 'GA_Telekinesis_Pull_C_SpawnRandomProjectile::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_UpdateTargetObjective \ +static_assert(alignof(GA_Telekinesis_Pull_C_UpdateTargetObjective) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_UpdateTargetObjective"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_UpdateTargetObjective) == 0x000030, "Wrong size on GA_Telekinesis_Pull_C_UpdateTargetObjective"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_UpdateTargetObjective, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Pull_C_UpdateTargetObjective::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_UpdateTargetObjective, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000008, "Member 'GA_Telekinesis_Pull_C_UpdateTargetObjective::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_UpdateTargetObjective, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Telekinesis_Pull_C_UpdateTargetObjective::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_UpdateTargetObjective, CallFunc_GetInteractObjective_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Pull_C_UpdateTargetObjective::CallFunc_GetInteractObjective_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_UpdateTargetObjective, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Pull_C_UpdateTargetObjective::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Pull_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Telekinesis_Pull_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Telekinesis_Pull_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Telekinesis_Pull_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_Telekinesis_Pull_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Telekinesis_Pull_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Telekinesis_Pull_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Telekinesis_Pull_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Pull_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Telekinesis_Pull_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Telekinesis_Pull_C \ +static_assert(alignof(UGA_Telekinesis_Pull_C) == 0x000008, "Wrong alignment on UGA_Telekinesis_Pull_C"); \ +static_assert(sizeof(UGA_Telekinesis_Pull_C) == 0x0007C8, "Wrong size on UGA_Telekinesis_Pull_C"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, UberGraphFrame) == 0x000698, "Member 'UGA_Telekinesis_Pull_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, PickedUpActor) == 0x0006A0, "Member 'UGA_Telekinesis_Pull_C::PickedUpActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, HoldEventTag) == 0x0006A8, "Member 'UGA_Telekinesis_Pull_C::HoldEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, ThrowEventTag) == 0x0006B0, "Member 'UGA_Telekinesis_Pull_C::ThrowEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, GameplayCueTag) == 0x0006B8, "Member 'UGA_Telekinesis_Pull_C::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, SpawnableNotFound) == 0x0006C0, "Member 'UGA_Telekinesis_Pull_C::SpawnableNotFound' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, SpawnableNotFoundDistanceFromThePlayer) == 0x000710, "Member 'UGA_Telekinesis_Pull_C::SpawnableNotFoundDistanceFromThePlayer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, TelekinesisReadyAgainDelay) == 0x000718, "Member 'UGA_Telekinesis_Pull_C::TelekinesisReadyAgainDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, PickupCompleted) == 0x000720, "Member 'UGA_Telekinesis_Pull_C::PickupCompleted' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, Async_Task) == 0x000728, "Member 'UGA_Telekinesis_Pull_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, MontageNoTarget) == 0x000730, "Member 'UGA_Telekinesis_Pull_C::MontageNoTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, HoldTargetLight) == 0x000738, "Member 'UGA_Telekinesis_Pull_C::HoldTargetLight' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, HoldDuration) == 0x000740, "Member 'UGA_Telekinesis_Pull_C::HoldDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, IsHeavyTarget) == 0x000748, "Member 'UGA_Telekinesis_Pull_C::IsHeavyTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, HeavyTypes) == 0x000750, "Member 'UGA_Telekinesis_Pull_C::HeavyTypes' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, TargetedType) == 0x000760, "Member 'UGA_Telekinesis_Pull_C::TargetedType' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, HoldTargetHeavy) == 0x000768, "Member 'UGA_Telekinesis_Pull_C::HoldTargetHeavy' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, Looping) == 0x000770, "Member 'UGA_Telekinesis_Pull_C::Looping' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, Searchlight_Class) == 0x000778, "Member 'UGA_Telekinesis_Pull_C::Searchlight_Class' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, ReleaseTask) == 0x0007A0, "Member 'UGA_Telekinesis_Pull_C::ReleaseTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, MagnetTask) == 0x0007A8, "Member 'UGA_Telekinesis_Pull_C::MagnetTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, Magnet_Strength) == 0x0007B0, "Member 'UGA_Telekinesis_Pull_C::Magnet_Strength' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, GunTargetingAngle) == 0x0007B8, "Member 'UGA_Telekinesis_Pull_C::GunTargetingAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Pull_C, PB_ABL_Telekinesisi) == 0x0007C0, "Member 'UGA_Telekinesis_Pull_C::PB_ABL_Telekinesisi' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0 \ +static_assert(alignof(GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(sizeof(GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0) == 0x0000B8, "Wrong size on GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(offsetof(GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0, EventTag) == 0x000000, "Member 'GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0, EventData) == 0x000008, "Member 'GA_Movement_Vault_C_EventReceived_8B35C4124AC760779E29C594B56C91E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault \ +static_assert(alignof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault"); \ +static_assert(sizeof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault) == 0x001058, "Wrong size on GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, EntryPoint) == 0x000000, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_IsClosed_Variable) == 0x000004, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_struct_Variable) == 0x000008, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate) == 0x000020, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_2) == 0x000040, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000050, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventTag_4) == 0x00005C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventData_4) == 0x000068, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_3) == 0x000118, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventTag_3) == 0x000128, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventData_3) == 0x000130, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_4) == 0x0001E0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventTag_2) == 0x0001F0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventData_2) == 0x0001F8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_5) == 0x0002A8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventTag_1) == 0x0002B8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventData_1) == 0x0002C0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_6) == 0x000370, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventTag) == 0x000380, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CustomEvent_EventData) == 0x000388, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_7) == 0x000438, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_struct_Variable_1) == 0x000448, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_struct_Variable_2) == 0x0004F8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000500, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_8) == 0x000508, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_1) == 0x000518, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_9) == 0x00051C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_10) == 0x00052C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x000540, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_2) == 0x000548, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_11) == 0x00054C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_12) == 0x00055C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_13) == 0x00056C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_14) == 0x00057C, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_WrestlerTaskTick_ReturnValue_2) == 0x000590, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_WrestlerTaskTick_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_Variable) == 0x000598, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_3) == 0x000599, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_real_Variable) == 0x0005A0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_real_Variable_1) == 0x0005A8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_15) == 0x0005B0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_ActorTimeDelay_ReturnValue) == 0x0005C0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_Variable_1) == 0x0005C8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_4) == 0x0005C9, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_real_Variable_2) == 0x0005CC, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_real_Variable_3) == 0x0005D0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_16) == 0x0005D4, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_17) == 0x0005E4, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_18) == 0x0005F4, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_WrestlerTaskTick_ReturnValue_3) == 0x000608, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_WrestlerTaskTick_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_Variable_2) == 0x000610, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_5) == 0x000611, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000618, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000620, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_DynamicCast_bSuccess) == 0x000630, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_Event_bWasCancelled) == 0x000631, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000638, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000640, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000648, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000658, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000660, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000668, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000670, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_Variable_3) == 0x000688, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X) == 0x000690, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y) == 0x000698, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z) == 0x0006A0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MakeVector_ReturnValue) == 0x0006A8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_CreateDelegate_OutputDelegate_19) == 0x0006C0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0006D0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0006D8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0006E0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MantleEndLoc_MantlePoint) == 0x0006E8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MantleEndLoc_MantlePoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MantleEndLoc_EndPoint) == 0x000700, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MantleEndLoc_EndPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000718, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000720, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000728, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x000730, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000818, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_AddActorWorldOffset_SweepHitResult_1) == 0x000830, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_AddActorWorldOffset_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_AddLocalOffset_SweepHitResult) == 0x000918, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_AddLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_struct_Variable_3) == 0x000A00, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000A18, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_Select_Default) == 0x000A20, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000A38, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000A40, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000B28, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X_1) == 0x000B40, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y_1) == 0x000B48, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z_1) == 0x000B50, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000B58, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000B60, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000B68, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000B70, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_OwnerDelta_ReturnValue) == 0x000C58, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_OwnerDelta_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_OwnerDelta_ReturnValue_1) == 0x000C60, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_OwnerDelta_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000C68, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000C80, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X_2) == 0x000C98, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y_2) == 0x000CA0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z_2) == 0x000CA8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000CB0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000CC8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_AddActorWorldOffset_SweepHitResult_2) == 0x000CE0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_AddActorWorldOffset_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_OwnerDelta_ReturnValue_2) == 0x000DC8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_OwnerDelta_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000DD0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_FInterpTo_ReturnValue) == 0x000DD8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_6) == 0x000DE0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, Temp_bool_Has_Been_Initd_Variable) == 0x000DE1, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000DE8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000E00, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000E08, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Add_VectorVector_ReturnValue) == 0x000E20, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_7) == 0x000E38, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_IsValid_ReturnValue_8) == 0x000E39, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Reached_Endpoint_ReturnValue) == 0x000E3A, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Reached_Endpoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X_3) == 0x000E40, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y_3) == 0x000E48, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z_3) == 0x000E50, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000E58, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000E60, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X_4) == 0x000E68, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y_4) == 0x000E70, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z_4) == 0x000E78, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000E80, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MakeVector_ReturnValue_1) == 0x000E98, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_X_5) == 0x000EB0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Y_5) == 0x000EB8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakVector_Z_5) == 0x000EC0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000EC8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MakeVector_ReturnValue_2) == 0x000EE0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000EF8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_Select_Default_1) == 0x000F00, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000F08, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000F20, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MakeVector_ReturnValue_3) == 0x000F28, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_OwnerDelta_ReturnValue_3) == 0x000F40, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_OwnerDelta_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000F48, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000F60, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_Select_Default_2) == 0x000F78, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_VInterpTo_Constant_ReturnValue) == 0x000F80, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000F98, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x000FA0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetController_ReturnValue) == 0x000FA8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_GetControlRotation_ReturnValue) == 0x000FB0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Roll) == 0x000FC8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Pitch) == 0x000FCC, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Yaw) == 0x000FD0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000FD8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Roll_1) == 0x000FF0, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Pitch_1) == 0x000FF4, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_BreakRotator_Yaw_1) == 0x000FF8, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_MakeRotator_ReturnValue) == 0x001000, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, K2Node_Select_Default_3) == 0x001018, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_RInterpTo_ReturnValue) == 0x001030, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x001048, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x001050, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x001054, "Member 'GA_Movement_Vault_C_ExecuteUbergraph_GA_Movement_Vault::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_K2_OnEndAbility \ +static_assert(alignof(GA_Movement_Vault_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Movement_Vault_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Movement_Vault_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Movement_Vault_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Movement_Vault_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_MantleEndLoc \ +static_assert(alignof(GA_Movement_Vault_C_MantleEndLoc) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_MantleEndLoc"); \ +static_assert(sizeof(GA_Movement_Vault_C_MantleEndLoc) == 0x000070, "Wrong size on GA_Movement_Vault_C_MantleEndLoc"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, MantlePoint) == 0x000000, "Member 'GA_Movement_Vault_C_MantleEndLoc::MantlePoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, EndPoint) == 0x000018, "Member 'GA_Movement_Vault_C_MantleEndLoc::EndPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_Movement_Vault_C_MantleEndLoc::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, CallFunc_GetComponentByClass_ReturnValue) == 0x000038, "Member 'GA_Movement_Vault_C_MantleEndLoc::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, CallFunc_GetVaultHandHoldLocation_ReturnValue) == 0x000040, "Member 'GA_Movement_Vault_C_MantleEndLoc::CallFunc_GetVaultHandHoldLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_MantleEndLoc, CallFunc_GetVaultEndLocation_ReturnValue) == 0x000058, "Member 'GA_Movement_Vault_C_MantleEndLoc::CallFunc_GetVaultEndLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0 \ +static_assert(alignof(GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(sizeof(GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0) == 0x0000B8, "Wrong size on GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0, EventTag) == 0x000000, "Member 'GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0, EventData) == 0x000008, "Member 'GA_Movement_Vault_C_OnBlendOut_8B35C4124AC760779E29C594B56C91E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0 \ +static_assert(alignof(GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(sizeof(GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0) == 0x0000B8, "Wrong size on GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0, EventTag) == 0x000000, "Member 'GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0, EventData) == 0x000008, "Member 'GA_Movement_Vault_C_OnCancelled_8B35C4124AC760779E29C594B56C91E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0 \ +static_assert(alignof(GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(sizeof(GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0) == 0x0000B8, "Wrong size on GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0, EventTag) == 0x000000, "Member 'GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0, EventData) == 0x000008, "Member 'GA_Movement_Vault_C_OnCompleted_8B35C4124AC760779E29C594B56C91E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0 \ +static_assert(alignof(GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(sizeof(GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0) == 0x0000B8, "Wrong size on GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0, EventTag) == 0x000000, "Member 'GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0, EventData) == 0x000008, "Member 'GA_Movement_Vault_C_OnInterrupted_8B35C4124AC760779E29C594B56C91E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_OwnerDelta \ +static_assert(alignof(GA_Movement_Vault_C_OwnerDelta) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_OwnerDelta"); \ +static_assert(sizeof(GA_Movement_Vault_C_OwnerDelta) == 0x000028, "Wrong size on GA_Movement_Vault_C_OwnerDelta"); \ +static_assert(offsetof(GA_Movement_Vault_C_OwnerDelta, ReturnValue) == 0x000000, "Member 'GA_Movement_Vault_C_OwnerDelta::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OwnerDelta, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Movement_Vault_C_OwnerDelta::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OwnerDelta, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000010, "Member 'GA_Movement_Vault_C_OwnerDelta::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OwnerDelta, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_Movement_Vault_C_OwnerDelta::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_OwnerDelta, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'GA_Movement_Vault_C_OwnerDelta::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_Reached_Endpoint \ +static_assert(alignof(GA_Movement_Vault_C_Reached_Endpoint) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_Reached_Endpoint"); \ +static_assert(sizeof(GA_Movement_Vault_C_Reached_Endpoint) == 0x000140, "Wrong size on GA_Movement_Vault_C_Reached_Endpoint"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, ReturnValue) == 0x000000, "Member 'GA_Movement_Vault_C_Reached_Endpoint::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_X) == 0x000010, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Y) == 0x000018, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Z) == 0x000020, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_MakeVector_ReturnValue) == 0x000040, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_X_1) == 0x000058, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Y_1) == 0x000060, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Z_1) == 0x000068, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_MakeVector_ReturnValue_1) == 0x000070, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_X_2) == 0x000088, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Y_2) == 0x000090, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Z_2) == 0x000098, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000A0, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_MakeVector_ReturnValue_2) == 0x0000B8, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000D0, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000D8, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000E8, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_X_3) == 0x000100, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Y_3) == 0x000108, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BreakVector_Z_3) == 0x000110, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_MakeVector_ReturnValue_3) == 0x000118, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_Vector_Distance_ReturnValue) == 0x000130, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000138, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_Reached_Endpoint, CallFunc_BooleanOR_ReturnValue) == 0x000139, "Member 'GA_Movement_Vault_C_Reached_Endpoint::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_RecenterView \ +static_assert(alignof(GA_Movement_Vault_C_RecenterView) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_RecenterView"); \ +static_assert(sizeof(GA_Movement_Vault_C_RecenterView) == 0x000008, "Wrong size on GA_Movement_Vault_C_RecenterView"); \ +static_assert(offsetof(GA_Movement_Vault_C_RecenterView, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000000, "Member 'GA_Movement_Vault_C_RecenterView::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_IsInputTowardsObstacle \ +static_assert(alignof(GA_Movement_Vault_C_IsInputTowardsObstacle) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_IsInputTowardsObstacle"); \ +static_assert(sizeof(GA_Movement_Vault_C_IsInputTowardsObstacle) == 0x0000A0, "Wrong size on GA_Movement_Vault_C_IsInputTowardsObstacle"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, TraversalComponent) == 0x000000, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::TraversalComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, MovementComponent) == 0x000008, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::MovementComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, ReturnValue) == 0x000010, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_GetVaultEndLocation_ReturnValue) == 0x000018, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_GetVaultEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_GetLastInputVector_ReturnValue) == 0x000030, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_GetVaultStartLocation_ReturnValue) == 0x000048, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_GetVaultStartLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_Vector_Normal2D_ReturnValue) == 0x000078, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_Dot_VectorVector_ReturnValue) == 0x000090, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_IsInputTowardsObstacle, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000098, "Member 'GA_Movement_Vault_C_IsInputTowardsObstacle::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_Vault_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Movement_Vault_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Movement_Vault_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Movement_Vault_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_Movement_Vault_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_IsPlayerFabien_Return) == 0x000071, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000072, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, K2Node_DynamicCast_AsPawn_Movement_Component) == 0x000078, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::K2Node_DynamicCast_AsPawn_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_GetComponentByClass_ReturnValue) == 0x000088, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_IsValid_ReturnValue) == 0x000090, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_IsInputTowardsObstacle_ReturnValue) == 0x000091, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_IsInputTowardsObstacle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_CanVault_ReturnValue) == 0x000092, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_CanVault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000093, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_Vault_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue_1) == 0x000094, "Member 'GA_Movement_Vault_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Movement_Vault_C \ +static_assert(alignof(UGA_Movement_Vault_C) == 0x000008, "Wrong alignment on UGA_Movement_Vault_C"); \ +static_assert(sizeof(UGA_Movement_Vault_C) == 0x000728, "Wrong size on UGA_Movement_Vault_C"); \ +static_assert(offsetof(UGA_Movement_Vault_C, UberGraphFrame) == 0x000668, "Member 'UGA_Movement_Vault_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, lerpDuration) == 0x000670, "Member 'UGA_Movement_Vault_C::lerpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, stateDuration) == 0x000678, "Member 'UGA_Movement_Vault_C::stateDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, FinalMantleLoc) == 0x000680, "Member 'UGA_Movement_Vault_C::FinalMantleLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, WasCrouching) == 0x000698, "Member 'UGA_Movement_Vault_C::WasCrouching' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, MeshPOS) == 0x0006A0, "Member 'UGA_Movement_Vault_C::MeshPOS' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, StartLoc) == 0x0006B8, "Member 'UGA_Movement_Vault_C::StartLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, MantleTask) == 0x0006D0, "Member 'UGA_Movement_Vault_C::MantleTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, ClimbSpeed) == 0x0006D8, "Member 'UGA_Movement_Vault_C::ClimbSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, MaxClimbSpeed) == 0x0006E0, "Member 'UGA_Movement_Vault_C::MaxClimbSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, Direction) == 0x0006E8, "Member 'UGA_Movement_Vault_C::Direction' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, Unfurled) == 0x000700, "Member 'UGA_Movement_Vault_C::Unfurled' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, End_Point) == 0x000708, "Member 'UGA_Movement_Vault_C::End_Point' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_Vault_C, montagetask) == 0x000720, "Member 'UGA_Movement_Vault_C::montagetask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway \ +static_assert(alignof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway) == 0x000008, "Wrong alignment on GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway"); \ +static_assert(sizeof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway) == 0x000218, "Wrong size on GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, EntryPoint) == 0x000000, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000010, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, K2Node_CreateDelegate_OutputDelegate_1) == 0x000024, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000038, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, K2Node_CreateDelegate_OutputDelegate_2) == 0x000040, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, K2Node_Event_bWasCancelled) == 0x000051, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000058, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetController_ReturnValue) == 0x000068, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000070, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000088, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000A0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000B8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Vector_Distance_ReturnValue) == 0x0000D0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0000D8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_BreakRotator_Roll) == 0x0000F4, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_BreakRotator_Pitch) == 0x0000F8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_BreakRotator_Yaw) == 0x0000FC, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_MakeRotator_ReturnValue) == 0x000100, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_MakeRotator_ReturnValue_1) == 0x000118, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_NegateVector_ReturnValue) == 0x000138, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000150, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_RInterpTo_ReturnValue) == 0x000158, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Add_VectorVector_ReturnValue) == 0x000170, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000188, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000190, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001A8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_RandomFloatInRange_ReturnValue) == 0x0001B8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0001C0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_WaitDelay_ReturnValue) == 0x0001C8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x0001D0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_MakeVector_ReturnValue) == 0x0001D8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_IsValid_ReturnValue_1) == 0x0001F0, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0001F8, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetAIController_ReturnValue) == 0x000200, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000208, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000210, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000214, "Member 'GA_TutorialBackaway_C_ExecuteUbergraph_GA_TutorialBackaway::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TutorialBackaway_C_K2_OnEndAbility \ +static_assert(alignof(GA_TutorialBackaway_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_TutorialBackaway_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_TutorialBackaway_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_TutorialBackaway_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_TutorialBackaway_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_TutorialBackaway_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_TutorialBackaway_C \ +static_assert(alignof(UGA_TutorialBackaway_C) == 0x000008, "Wrong alignment on UGA_TutorialBackaway_C"); \ +static_assert(sizeof(UGA_TutorialBackaway_C) == 0x000688, "Wrong size on UGA_TutorialBackaway_C"); \ +static_assert(offsetof(UGA_TutorialBackaway_C, UberGraphFrame) == 0x000668, "Member 'UGA_TutorialBackaway_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_TutorialBackaway_C, Wander) == 0x000670, "Member 'UGA_TutorialBackaway_C::Wander' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData) == 0x0003A8, "Wrong size on AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2229) == 0x000004, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2229' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2230) == 0x00000C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2230' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2231) == 0x000014, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2231' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2232) == 0x00001C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2232' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2233) == 0x000024, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2233' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2234) == 0x000028, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2234' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2235) == 0x000038, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2235' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2236) == 0x000040, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2236' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2237) == 0x000048, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2237' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2238) == 0x000050, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2238' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2239) == 0x000058, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2239' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2240) == 0x000068, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2240' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2241) == 0x000078, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2241' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2242) == 0x000088, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2242' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2243) == 0x000090, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2243' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2244) == 0x0000A0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2244' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2245) == 0x0000A4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2245' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2246) == 0x0000B0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2246' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2247) == 0x0000C0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2247' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2248) == 0x0000C4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2248' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2249) == 0x0000C8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2249' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2250) == 0x0000D8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2250' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2251) == 0x0000E8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2251' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2252) == 0x0000F8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2252' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2253) == 0x000108, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2253' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2254) == 0x000118, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2254' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2255) == 0x000120, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2255' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2256) == 0x000130, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2256' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2257) == 0x000134, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2257' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2258) == 0x000138, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2258' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2259) == 0x00013C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2259' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2260) == 0x000144, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2260' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2261) == 0x00014C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2261' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2262) == 0x000154, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2262' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2263) == 0x000158, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2263' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2264) == 0x000160, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2264' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2265) == 0x000168, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2265' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2266) == 0x00016C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2266' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2267) == 0x000170, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2267' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2268) == 0x000178, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2268' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2269) == 0x000180, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2269' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2270) == 0x000184, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2270' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2271) == 0x00018C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2271' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2272) == 0x000190, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2272' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2273) == 0x000198, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2273' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2274) == 0x0001A0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2274' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2275) == 0x0001A8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2275' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2276) == 0x0001B0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2276' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2277) == 0x0001B8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2277' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2278) == 0x0001BC, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2278' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2279) == 0x0001C4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2279' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2280) == 0x0001C8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2280' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2281) == 0x0001CC, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2281' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2282) == 0x0001D4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2282' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2283) == 0x0001D8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2283' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __AnimSequenceBase_2284) == 0x0001E0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__AnimSequenceBase_2284' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __AnimSequenceBase_2285) == 0x0001E8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__AnimSequenceBase_2285' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2286) == 0x0001F0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2286' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2287) == 0x0001F8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2287' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __AnimSequenceBase_2288) == 0x000200, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__AnimSequenceBase_2288' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2289) == 0x000208, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2289' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2290) == 0x000210, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2290' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2291) == 0x000214, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2291' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2292) == 0x00021C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2292' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2293) == 0x000220, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2293' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2294) == 0x000228, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2294' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2295) == 0x000238, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2295' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2296) == 0x000240, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2296' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2297) == 0x000244, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2297' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __IntProperty_2298) == 0x00024C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__IntProperty_2298' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2299) == 0x000250, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2299' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2300) == 0x000258, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2300' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ByteProperty_2301) == 0x000268, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ByteProperty_2301' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __AnimSequenceBase_2302) == 0x000270, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__AnimSequenceBase_2302' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __BlendProfile_2303) == 0x000278, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__BlendProfile_2303' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __CurveFloat_2304) == 0x000280, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__CurveFloat_2304' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2305) == 0x000288, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2305' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2306) == 0x000289, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2306' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ArrayProperty_2307) == 0x000290, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ArrayProperty_2307' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __BoolProperty_2308) == 0x0002A0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__BoolProperty_2308' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2309) == 0x0002A4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2309' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __StructProperty_2310) == 0x0002A8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__StructProperty_2310' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __FloatProperty_2311) == 0x0002D4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__FloatProperty_2311' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __BoolProperty_2312) == 0x0002D8, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__BoolProperty_2312' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __EnumProperty_2313) == 0x0002D9, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__EnumProperty_2313' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __ByteProperty_2314) == 0x0002DA, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__ByteProperty_2314' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2315) == 0x0002DC, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2315' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __NameProperty_2316) == 0x0002E4, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__NameProperty_2316' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, __StructProperty_2317) == 0x0002F0, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::__StructProperty_2317' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000310, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000390, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData) == 0x000090, "Wrong size on AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_0) == 0x000002, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_1) == 0x000003, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_2) == 0x000004, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_3) == 0x000008, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_4) == 0x00000C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_5) == 0x000010, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_6) == 0x000014, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_7) == 0x000018, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_8) == 0x00001C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_9) == 0x000020, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_10) == 0x000024, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_11) == 0x000028, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_12) == 0x00002C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_13) == 0x000030, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_14) == 0x000034, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_15) == 0x000035, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_16) == 0x000038, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_17) == 0x00003C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_18) == 0x00003D, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_19) == 0x00003E, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_20) == 0x000040, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_21) == 0x000044, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_21' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_22) == 0x000048, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_22' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_23) == 0x000049, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_23' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_24) == 0x00004A, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_24' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __ByteProperty_25) == 0x00004B, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__ByteProperty_25' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_26) == 0x00004C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_26' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_27) == 0x000050, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_27' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_28) == 0x000054, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_28' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_29) == 0x000058, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_29' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_30) == 0x000059, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_30' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __ArrayProperty_31) == 0x000060, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__ArrayProperty_31' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_32) == 0x000070, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_32' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_33) == 0x000074, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_33' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_34) == 0x000078, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_34' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_35) == 0x00007C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_35' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_36) == 0x000080, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_36' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_37) == 0x000084, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_37' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_38) == 0x000085, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_38' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_39) == 0x000086, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_39' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_40) == 0x000087, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_40' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __FloatProperty_41) == 0x000088, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__FloatProperty_41' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData, __BoolProperty_42) == 0x00008C, "Member 'AnimBP_Player_Locomotion::FAnimBlueprintGeneratedMutableData::__BoolProperty_42' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_AnimGraph \ +static_assert(alignof(AnimBP_Player_Locomotion_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Player_Locomotion_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_BindMovementEvents \ +static_assert(alignof(AnimBP_Player_Locomotion_C_BindMovementEvents) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_BindMovementEvents"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_BindMovementEvents) == 0x000018, "Wrong size on AnimBP_Player_Locomotion_C_BindMovementEvents"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_BindMovementEvents, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_BindMovementEvents::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_BindMovementEvents, CallFunc_GetOwnerCharacter_returnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_BindMovementEvents::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation \ +static_assert(alignof(AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation) == 0x000004, "Wrong alignment on AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation) == 0x000004, "Wrong size on AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation, DeltaTimeX) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_BlueprintUpdateAnimation::DeltaTimeX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CacheLandingData \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CacheLandingData) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CacheLandingData"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CacheLandingData) == 0x000010, "Wrong size on AnimBP_Player_Locomotion_C_CacheLandingData"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CacheLandingData, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CacheLandingData::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CacheLandingData, CallFunc_GetIsHeavyLanding_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_CacheLandingData::CallFunc_GetIsHeavyLanding_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CalculateLandSpringOffset \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_CalculateLandSpringOffset"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset) == 0x0001B0, "Wrong size on AnimBP_Player_Locomotion_C_CalculateLandSpringOffset"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, Character) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, ActorTransform) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::ActorTransform' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_GetTransform_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_GetOwnerCharacter_returnValue) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_InverseTransformDirection_ReturnValue) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_X) == 0x000128, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_Y) == 0x000130, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_Z) == 0x000138, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_Vector_ClampSize2D_ReturnValue) == 0x000140, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_Vector_ClampSize2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_FClamp_ReturnValue) == 0x000158, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_X_1) == 0x000160, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_Y_1) == 0x000168, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_BreakVector_Z_1) == 0x000170, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_MakeVector_ReturnValue) == 0x000178, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateLandSpringOffset, CallFunc_TransformDirection_ReturnValue) == 0x000190, "Member 'AnimBP_Player_Locomotion_C_CalculateLandSpringOffset::CallFunc_TransformDirection_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CalculateSlope \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CalculateSlope) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CalculateSlope"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CalculateSlope) == 0x000238, "Wrong size on AnimBP_Player_Locomotion_C_CalculateSlope"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, Floor) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::Floor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, Pitch) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, Roll) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_Vector_Up_ReturnValue) == 0x000108, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_GetOwningComponent_ReturnValue) == 0x000120, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_bBlockingHit) == 0x000128, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_bInitialOverlap) == 0x000129, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_Time) == 0x00012C, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_Distance) == 0x000130, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_Location) == 0x000138, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_ImpactPoint) == 0x000150, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_Normal) == 0x000168, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_ImpactNormal) == 0x000180, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_PhysMat) == 0x000198, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_HitActor) == 0x0001A0, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_HitComponent) == 0x0001A8, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_HitBoneName) == 0x0001B0, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_BoneName) == 0x0001B8, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_HitItem) == 0x0001C0, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_ElementIndex) == 0x0001C4, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_FaceIndex) == 0x0001C8, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_TraceStart) == 0x0001D0, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_BreakHitResult_TraceEnd) == 0x0001E8, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_GetRightVector_ReturnValue) == 0x000200, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_GetSlopeDegreeAngles_OutSlopePitchDegreeAngle) == 0x000218, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_GetSlopeDegreeAngles_OutSlopePitchDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_GetSlopeDegreeAngles_OutSlopeRollDegreeAngle) == 0x00021C, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_GetSlopeDegreeAngles_OutSlopeRollDegreeAngle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000220, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, K2Node_FunctionResult_pitch_ImplicitCast) == 0x000228, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::K2Node_FunctionResult_pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateSlope, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000230, "Member 'AnimBP_Player_Locomotion_C_CalculateSlope::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CombatMain \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CombatMain) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CombatMain"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CombatMain) == 0x000020, "Wrong size on AnimBP_Player_Locomotion_C_CombatMain"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CombatMain, InPose) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CombatMain::InPose' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CombatMain, CombatMain_0) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_CombatMain::CombatMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_DrawLocationHistory \ +static_assert(alignof(AnimBP_Player_Locomotion_C_DrawLocationHistory) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_DrawLocationHistory"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_DrawLocationHistory) == 0x000028, "Wrong size on AnimBP_Player_Locomotion_C_DrawLocationHistory"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_DrawLocationHistory, CallFunc_Vector_Distance_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_DrawLocationHistory::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_DrawLocationHistory, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_DrawLocationHistory::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_DrawLocationHistory, CallFunc_LinearColorLerpUsingHSV_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_DrawLocationHistory::CallFunc_LinearColorLerpUsingHSV_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_DrawLocationHistory, CallFunc_LinearColorLerpUsingHSV_Alpha_ImplicitCast) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_DrawLocationHistory::CallFunc_LinearColorLerpUsingHSV_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423 \ +static_assert(alignof(AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423) == 0x0000B0, "Wrong size on AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423, Payload) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_EventReceived_180F500F44C4EF23104FEF9272A9A423::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18 \ +static_assert(alignof(AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18) == 0x0000B0, "Wrong size on AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18, Payload) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_EventReceived_1DBA08504AACDA93CA2BA7BED8B54B18::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88 \ +static_assert(alignof(AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88) == 0x0000B0, "Wrong size on AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88, Payload) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_EventReceived_6D3BA4FD4F8AC1EB77C177B120C25A88::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5 \ +static_assert(alignof(AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5) == 0x0000B0, "Wrong size on AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5, Payload) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_EventReceived_A87BCFD742CFB34F0EC9259854E810A5::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion \ +static_assert(alignof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion) == 0x000D80, "Wrong size on AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, EntryPoint) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue) == 0x000004, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_1) == 0x000005, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue) == 0x000006, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_2) == 0x000007, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HandClipFixAlpha_Alpha) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HandClipFixAlpha_Alpha' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HandClipFixAlpha_Angle) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HandClipFixAlpha_Angle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_3) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_1) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_1) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Abs_ReturnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_IntInt_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_2) == 0x000061, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_4) == 0x000062, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue) == 0x000063, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MapRangeClamped_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Lerp_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTimeRemaining_ReturnValue) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTimeRemaining_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00008C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Lerp_ReturnValue_1) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Lerp_ReturnValue_2) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_1) == 0x0000A8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_5) == 0x0000A9, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_2) == 0x0000AA, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTime_ReturnValue) == 0x0000AC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_1) == 0x0000B4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0000B8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_6) == 0x0000B9, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_7) == 0x0000BA, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_3) == 0x0000BB, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_8) == 0x0000BC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_4) == 0x0000BD, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_struct_Variable) == 0x0000C0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_Payload_3) == 0x000170, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_Payload_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_struct_Variable_1) == 0x000220, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate) == 0x0002D0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_Payload_2) == 0x0002E0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate_1) == 0x000390, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_struct_Variable_2) == 0x0003A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_Payload_1) == 0x000450, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_9) == 0x000500, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_struct_Variable_3) == 0x000508, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate_2) == 0x0005B8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_Payload) == 0x0005C8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate_3) == 0x000678, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000688, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_10) == 0x0006A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x0006A1, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_5) == 0x0006A2, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_6) == 0x0006A3, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable) == 0x0006A4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_IntInt_ReturnValue_1) == 0x0006A8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_7) == 0x0006A9, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_1) == 0x0006AC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_3) == 0x0006B0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_4) == 0x0006B1, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_5) == 0x0006B2, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_8) == 0x0006B3, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_9) == 0x0006B4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_bool_Variable) == 0x0006B5, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_10) == 0x0006B6, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_2) == 0x0006B8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_byte_Variable) == 0x0006BC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_3) == 0x0006C0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_4) == 0x0006C4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_3) == 0x0006C8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_5) == 0x0006CC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_11) == 0x0006D0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_6) == 0x0006D4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_11) == 0x0006D8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_7) == 0x0006DC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_12) == 0x0006E0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_8) == 0x0006E4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_4) == 0x0006E8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_9) == 0x0006EC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_real_Variable_10) == 0x0006F0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_real_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_2) == 0x0006F8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_bool_Variable_1) == 0x000710, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_bool_Variable_2) == 0x000711, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_byte_Variable_1) == 0x000712, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_6) == 0x000713, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_7) == 0x000714, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_12) == 0x000715, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_13) == 0x000716, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000718, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTime_ReturnValue_1) == 0x000720, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000724, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_14) == 0x000725, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_13) == 0x000726, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_8) == 0x000727, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_15) == 0x000728, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTime_ReturnValue_2) == 0x00072C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTime_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_NegateRotator_ReturnValue) == 0x000730, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_NegateRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000748, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeVector_ReturnValue) == 0x000750, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_16) == 0x000768, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MapRangeClamped_ReturnValue_3) == 0x000770, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MapRangeClamped_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000778, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_14) == 0x000780, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_3) == 0x000788, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x0007A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Location) == 0x0007A8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Rotation) == 0x0007C0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Scale) == 0x0007D8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Location_1) == 0x0007F0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Rotation_1) == 0x000808, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakTransform_Scale_1) == 0x000820, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HandClipFixAlpha_Alpha_1) == 0x000838, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HandClipFixAlpha_Alpha_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HandClipFixAlpha_Angle_1) == 0x000840, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HandClipFixAlpha_Angle_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_17) == 0x000848, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_4) == 0x000850, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_5) == 0x000868, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Abs_ReturnValue_1) == 0x000880, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_15) == 0x000888, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_Event_DeltaTimeX) == 0x00088C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_Event_DeltaTimeX' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_5) == 0x000890, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000898, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetTraversalComponent_ReturnValue) == 0x0008A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetTraversalComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_Character) == 0x0008A8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_PrevMovementMode) == 0x0008B0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CustomEvent_PreviousCustomMode) == 0x0008B1, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CustomEvent_PreviousCustomMode' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue) == 0x0008B8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue) == 0x0008C0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_Select_Default) == 0x0008C4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x0008C8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_DynamicCast_AsWrestler_Character) == 0x0008D0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_DynamicCast_bSuccess) == 0x0008D8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0008E0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x0008F8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_1) == 0x000900, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000908, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_2) == 0x000910, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x000918, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_3) == 0x000920, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_WaitGameplayEventToActor_ReturnValue_3) == 0x000928, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_WaitGameplayEventToActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_4) == 0x000930, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_Select_Default_1) == 0x000934, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_SwitchEnum_CmpSuccess) == 0x000938, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetOwningComponent_ReturnValue) == 0x000940, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate_4) == 0x000948, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_16) == 0x000958, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_2) == 0x00095C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_CreateDelegate_OutputDelegate_5) == 0x000960, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_6) == 0x000970, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_9) == 0x000971, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_10) == 0x000972, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x000978, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_11) == 0x000980, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetActorRightVector_ReturnValue) == 0x000988, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_12) == 0x0009A0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetVelocity_ReturnValue) == 0x0009A8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0009C0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Dot_VectorVector_ReturnValue) == 0x0009D8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Roll) == 0x0009E0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Pitch) == 0x0009E4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Yaw) == 0x0009E8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FClamp_ReturnValue) == 0x0009F0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetDeltaSeconds_ReturnValue) == 0x0009F8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FInterpTo_ReturnValue) == 0x000A00, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_6) == 0x000A08, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_3) == 0x000A20, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000A28, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MapRangeClamped_ReturnValue_4) == 0x000A40, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MapRangeClamped_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000A48, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_ReturnValue_7) == 0x000A50, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000A68, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FClamp_ReturnValue_1) == 0x000A70, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000A78, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FClamp_ReturnValue_2) == 0x000A80, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_18) == 0x000A88, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_19) == 0x000A89, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000A90, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_17) == 0x000A98, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FClamp_ReturnValue_3) == 0x000AA0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_18) == 0x000AA8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Not_PreBool_ReturnValue_20) == 0x000AA9, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Not_PreBool_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_19) == 0x000AAA, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetPlayerCharacterStateInGame_ReturnValue) == 0x000AB0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetPlayerCharacterStateInGame_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsPlayerFabien_Return) == 0x000AB8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_5) == 0x000AB9, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetClan_ReturnValue) == 0x000AC0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetOwnerWrestlerCharacter_returnValue_1) == 0x000AC8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetOwnerWrestlerCharacter_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_IsValid_ReturnValue_6) == 0x000AD0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000AD8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000AE8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_3) == 0x000AEC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetRelevantAnimTimeRemaining_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_ReturnValue_7) == 0x000AF0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_4) == 0x000AF8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanAND_ReturnValue_20) == 0x000B00, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanAND_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x000B08, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000B20, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetOwnerWrestlerCharacter_returnValue_2) == 0x000B40, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetOwnerWrestlerCharacter_returnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000B48, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000B68, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetOwnerWrestlerCharacter_returnValue_3) == 0x000B70, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetOwnerWrestlerCharacter_returnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000B78, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue) == 0x000B79, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000B7C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_RInterpTo_Constant_ReturnValue) == 0x000B80, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_RInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Roll_1) == 0x000B98, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Pitch_1) == 0x000B9C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Yaw_1) == 0x000BA0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000BA4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_GetDeltaSeconds_ReturnValue_2) == 0x000BA8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_GetDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_5) == 0x000BB0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_RInterpTo_ReturnValue) == 0x000BB8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_K2_GetActorRotation_ReturnValue_2) == 0x000BD0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_K2_GetActorRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_TryGetPawnOwner_ReturnValue_6) == 0x000BE8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_TryGetPawnOwner_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_K2_GetActorRotation_ReturnValue_3) == 0x000BF0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_K2_GetActorRotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeTransform_ReturnValue) == 0x000C10, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_InverseTransformRotation_ReturnValue) == 0x000C70, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_InverseTransformRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, Temp_bool_Variable_3) == 0x000C88, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Roll_2) == 0x000C8C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Pitch_2) == 0x000C90, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BreakRotator_Yaw_2) == 0x000C94, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Abs_ReturnValue_2) == 0x000C98, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Abs_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_Select_Default_2) == 0x000CA0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000CA4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_ReturnValue_4) == 0x000CA5, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_13) == 0x000CA6, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_BooleanOR_ReturnValue_14) == 0x000CA7, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_BooleanOR_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000CA8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x000CAC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Alpha_ImplicitCast) == 0x000CB0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Alpha_ImplicitCast_1) == 0x000CB4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Alpha_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Yaw_ImplicitCast) == 0x000CB8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000CC0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Yaw_ImplicitCast_1) == 0x000CC8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Yaw_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Yaw_ImplicitCast_2) == 0x000CCC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Yaw_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000CD0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_A_ImplicitCast_1) == 0x000CD8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000CE0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Alpha_ImplicitCast_2) == 0x000CE4, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Alpha_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x000CE8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Greater_DoubleDouble_A_ImplicitCast_2) == 0x000CF0, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Greater_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Pitch_ImplicitCast_1) == 0x000CF8, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Pitch_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Array_Set_Item_ImplicitCast) == 0x000CFC, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Array_Set_Item_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Roll_ImplicitCast_2) == 0x000D00, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Roll_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Roll_ImplicitCast_3) == 0x000D04, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Roll_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Alpha_ImplicitCast_3) == 0x000D08, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Alpha_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_StructMemberSet_Alpha_ImplicitCast_4) == 0x000D0C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_StructMemberSet_Alpha_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_A_ImplicitCast_2) == 0x000D10, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FInterpTo_Current_ImplicitCast) == 0x000D18, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FInterpTo_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000D20, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000D28, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_MakeRotator_Pitch_ImplicitCast_2) == 0x000D2C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_MakeRotator_Pitch_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000D30, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast) == 0x000D38, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_A_ImplicitCast_1) == 0x000D40, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast_1) == 0x000D48, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Add_DoubleDouble_A_ImplicitCast_2) == 0x000D50, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Add_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast_2) == 0x000D58, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, K2Node_VariableSet_HitreactAlpha_ImplicitCast) == 0x000D5C, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::K2Node_VariableSet_HitreactAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Less_DoubleDouble_A_ImplicitCast_3) == 0x000D60, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Less_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x000D68, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion, CallFunc_Abs_A_ImplicitCast) == 0x000D70, "Member 'AnimBP_Player_Locomotion_C_ExecuteUbergraph_AnimBP_Player_Locomotion::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetActorDeltaTime \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetActorDeltaTime) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetActorDeltaTime"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetActorDeltaTime) == 0x000028, "Wrong size on AnimBP_Player_Locomotion_C_GetActorDeltaTime"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetActorDeltaTime, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetActorDeltaTime::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetActorDeltaTime, CallFunc_GetOwningActor_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetActorDeltaTime::CallFunc_GetOwningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetActorDeltaTime, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_GetActorDeltaTime::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetCurrentFloor \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetCurrentFloor) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetCurrentFloor"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetCurrentFloor) == 0x000100, "Wrong size on AnimBP_Player_Locomotion_C_GetCurrentFloor"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetCurrentFloor, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetCurrentFloor::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetCurrentFloor, CallFunc_GetOwnerCharacter_returnValue) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_GetCurrentFloor::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetOwnerTransform \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetOwnerTransform) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_GetOwnerTransform"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetOwnerTransform) == 0x0000D0, "Wrong size on AnimBP_Player_Locomotion_C_GetOwnerTransform"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerTransform, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetOwnerTransform::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerTransform, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_GetOwnerTransform::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerTransform, CallFunc_GetTransform_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_GetOwnerTransform::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_HandClipFixAlpha \ +static_assert(alignof(AnimBP_Player_Locomotion_C_HandClipFixAlpha) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_HandClipFixAlpha"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_HandClipFixAlpha) == 0x0000A8, "Wrong size on AnimBP_Player_Locomotion_C_HandClipFixAlpha"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, alpha) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::alpha' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, Angle) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::Angle' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, Temp_bool_Variable) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, Temp_bool_Variable_1) == 0x000011, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_BreakRotator_Roll) == 0x000014, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_BreakRotator_Pitch) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_BreakRotator_Yaw) == 0x00001C, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_Select_Default) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_ReturnValue_2) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_Select_Default_1) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_FunctionResult_Alpha_ImplicitCast) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_FunctionResult_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_Select_Option_1_ImplicitCast) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_Value_ImplicitCast_1) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_MapRangeClamped_Value_ImplicitCast_2) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_MapRangeClamped_Value_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_Select_Option_0_ImplicitCast) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_HandClipFixAlpha, K2Node_Select_Option_1_ImplicitCast_1) == 0x0000A4, "Member 'AnimBP_Player_Locomotion_C_HandClipFixAlpha::K2Node_Select_Option_1_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_InitialiseTraversal \ +static_assert(alignof(AnimBP_Player_Locomotion_C_InitialiseTraversal) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_InitialiseTraversal"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_InitialiseTraversal) == 0x0000F0, "Wrong size on AnimBP_Player_Locomotion_C_InitialiseTraversal"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_CalculateVaultHeight_ReturnValue_Z) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_CalculateVaultHeight_ReturnValue_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BreakVector_X) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BreakVector_Y) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BreakVector_Z) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_Abs_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000051, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetOwnerCharacterMovement_returnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetOwnerCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetValidValue_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetVaultHandHoldLocation_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetVaultHandHoldLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, K2Node_SwitchEnum_CmpSuccess) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BooleanOR_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BooleanOR_ReturnValue_1) == 0x000091, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_CalculateTraversalEndLocation_ReturnValue) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_CalculateTraversalEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BooleanOR_ReturnValue_2) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_BooleanOR_ReturnValue_3) == 0x0000B1, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_CalculateTraversalRotation_ReturnValue) == 0x0000B8, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_CalculateTraversalRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetOwnerCharacterMovement_returnValue_1) == 0x0000D0, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetOwnerCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_InitialiseTraversal, CallFunc_GetLastUpdateLocation_ReturnValue) == 0x0000D8, "Member 'AnimBP_Player_Locomotion_C_InitialiseTraversal::CallFunc_GetLastUpdateLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_LocomotionMain \ +static_assert(alignof(AnimBP_Player_Locomotion_C_LocomotionMain) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_LocomotionMain"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_LocomotionMain) == 0x000010, "Wrong size on AnimBP_Player_Locomotion_C_LocomotionMain"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_LocomotionMain, LocomotionMain_0) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_LocomotionMain::LocomotionMain_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_MoveSine \ +static_assert(alignof(AnimBP_Player_Locomotion_C_MoveSine) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_MoveSine"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_MoveSine) == 0x000060, "Wrong size on AnimBP_Player_Locomotion_C_MoveSine"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, Time_Offset) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_MoveSine::Time_Offset' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, Time_Multiplier) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_MoveSine::Time_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, Scale) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_MoveSine::Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, WaveOffset) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_MoveSine::WaveOffset' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, Wave) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_MoveSine::Wave' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Sin_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_MoveSine, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_MoveSine::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_OnMovementChange \ +static_assert(alignof(AnimBP_Player_Locomotion_C_OnMovementChange) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_OnMovementChange"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_OnMovementChange) == 0x000020, "Wrong size on AnimBP_Player_Locomotion_C_OnMovementChange"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, wasWallClimbing) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::wasWallClimbing' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_BooleanOR_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000019, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_BooleanOR_ReturnValue_1) == 0x00001A, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_BooleanOR_ReturnValue_2) == 0x00001B, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, CallFunc_BooleanOR_ReturnValue_3) == 0x00001C, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChange, K2Node_SwitchEnum_CmpSuccess) == 0x00001D, "Member 'AnimBP_Player_Locomotion_C_OnMovementChange::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_OnMovementChanged \ +static_assert(alignof(AnimBP_Player_Locomotion_C_OnMovementChanged) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_OnMovementChanged"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_OnMovementChanged) == 0x000010, "Wrong size on AnimBP_Player_Locomotion_C_OnMovementChanged"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChanged, Character) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_OnMovementChanged::Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChanged, PrevMovementMode) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_OnMovementChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OnMovementChanged, PreviousCustomMode) == 0x000009, "Member 'AnimBP_Player_Locomotion_C_OnMovementChanged::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag \ +static_assert(alignof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag) == 0x000038, "Wrong size on AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, TagToCheck) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::TagToCheck' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_OwnerHasMatchingGameplayTag::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_RampClamp \ +static_assert(alignof(AnimBP_Player_Locomotion_C_RampClamp) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_RampClamp"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_RampClamp) == 0x000038, "Wrong size on AnimBP_Player_Locomotion_C_RampClamp"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, AngleDegrees) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_RampClamp::AngleDegrees' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, Threshold) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_RampClamp::Threshold' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_RampClamp::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, CallFunc_Abs_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_RampClamp::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, CallFunc_SignOfFloat_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_RampClamp::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, CallFunc_FClamp_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_RampClamp::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_RampClamp, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_RampClamp::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_Set_Is_Forward_Input \ +static_assert(alignof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_Set_Is_Forward_Input"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input) == 0x000030, "Wrong size on AnimBP_Player_Locomotion_C_Set_Is_Forward_Input"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, CallFunc_GetController_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, CallFunc_GetForwardInput_ReturnValue) == 0x00001C, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::CallFunc_GetForwardInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_Set_Is_Forward_Input, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_Set_Is_Forward_Input::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch) == 0x0003A0, "Wrong size on AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Profile) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Profile' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Radius) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Radius' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Capsule) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Capsule' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, End) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::End' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Origin) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Origin' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Temp_real_Variable) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Temp_object_Variable) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, Temp_bool_Variable) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetActorDeltaTime_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetActorDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_SphereTraceSingleByProfile_OutHit) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_SphereTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_SphereTraceSingleByProfile_ReturnValue) == 0x000158, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_SphereTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_bBlockingHit) == 0x000159, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_bInitialOverlap) == 0x00015A, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_Time) == 0x00015C, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_Distance) == 0x000160, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_Location) == 0x000168, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_ImpactPoint) == 0x000180, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_Normal) == 0x000198, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_ImpactNormal) == 0x0001B0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_PhysMat) == 0x0001C8, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_HitActor) == 0x0001D0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_HitComponent) == 0x0001D8, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_HitBoneName) == 0x0001E0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_BoneName) == 0x0001E8, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_HitItem) == 0x0001F0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_ElementIndex) == 0x0001F4, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_FaceIndex) == 0x0001F8, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_TraceStart) == 0x000200, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakHitResult_TraceEnd) == 0x000218, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_MakeVector_ReturnValue) == 0x000230, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000248, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Add_VectorVector_ReturnValue) == 0x000250, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000268, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000269, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetOwnerCharacter_returnValue) == 0x000270, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, K2Node_Select_Default) == 0x000278, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_FInterpTo_ReturnValue) == 0x000280, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetCollisionProfileName_ReturnValue) == 0x000288, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetCollisionProfileName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_FClamp_ReturnValue) == 0x000290, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x000298, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0002A0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetOwnerHalfHeight_ReturnValue) == 0x0002A8, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetOwnerHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_GetOwnerTransform_ReturnValue) == 0x0002B0, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_GetOwnerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_MakeVector_ReturnValue_1) == 0x000310, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakTransform_Location) == 0x000328, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakTransform_Rotation) == 0x000340, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_BreakTransform_Scale) == 0x000358, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000370, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_SphereTraceSingleByProfile_Radius_ImplicitCast) == 0x000388, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_SphereTraceSingleByProfile_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000390, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000398, "Member 'AnimBP_Player_Locomotion_C_UpdateAdaptiveCrouch::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateAim \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateAim) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateAim"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateAim) == 0x0004B0, "Wrong size on AnimBP_Player_Locomotion_C_UpdateAim"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000004, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetCurveValueWithDefault_OutValue_1) == 0x00000C, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetCurveValueWithDefault_OutValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetCurveValueWithDefault_ReturnValue_1) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetCurveValueWithDefault_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Roll) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Pitch) == 0x00003C, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Yaw) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_1) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_2) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_1) == 0x0000A8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_3) == 0x0000C0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_ComposeRotators_ReturnValue) == 0x0000C8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeVector_ReturnValue) == 0x0000E0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeTransform_ReturnValue) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x000160, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x000168, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_4) == 0x000170, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x000178, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000180, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_9) == 0x000188, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_5) == 0x000190, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_6) == 0x000198, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MoveSine_Wave_7) == 0x0001A0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MoveSine_Wave_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeVector_ReturnValue_1) == 0x0001A8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Roll_1) == 0x0001C0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Pitch_1) == 0x0001C4, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Yaw_1) == 0x0001C8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_10) == 0x0001D0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_11) == 0x0001D8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_5) == 0x0001E0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001E8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_6) == 0x0001F0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Add_DoubleDouble_ReturnValue_7) == 0x0001F8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Add_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeTransform_ReturnValue_1) == 0x000200, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_2) == 0x000260, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_ComposeRotators_ReturnValue_1) == 0x000278, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_ComposeRotators_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue) == 0x000290, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeTransform_ReturnValue_2) == 0x0002B0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Roll_2) == 0x000310, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Pitch_2) == 0x000314, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_BreakRotator_Yaw_2) == 0x000318, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_12) == 0x000320, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_13) == 0x000328, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_14) == 0x000330, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_15) == 0x000338, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_RampClamp_ReturnValue) == 0x000340, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_RampClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_RampClamp_ReturnValue_1) == 0x000348, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_RampClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_16) == 0x000350, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_17) == 0x000358, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_18) == 0x000360, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_19) == 0x000368, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_ReturnValue_20) == 0x000370, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_ComposeRotators_ReturnValue_2) == 0x000378, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_ComposeRotators_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_ReturnValue_3) == 0x000390, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_RInterpTo_ReturnValue) == 0x0003A8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_TryGetPawnOwner_ReturnValue) == 0x0003C0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetControlRotation_ReturnValue) == 0x0003C8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_GetTransform_ReturnValue) == 0x0003E0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_InverseTransformRotation_ReturnValue_1) == 0x000440, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_InverseTransformRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, K2Node_VariableSet_LagClamp_ImplicitCast) == 0x000458, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::K2Node_VariableSet_LagClamp_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000460, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000468, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000470, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_Pitch_ImplicitCast_1) == 0x000478, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_Pitch_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2) == 0x000480, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3) == 0x000488, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_Pitch_ImplicitCast_2) == 0x000490, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_Pitch_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_4) == 0x000498, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_5) == 0x0004A0, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x0004A8, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateAim, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0004AC, "Member 'AnimBP_Player_Locomotion_C_UpdateAim::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing) == 0x000118, "Wrong size on AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_IsFalling_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetIsInCutscene_self_CastInput) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetIsInCutscene_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetIsInCutscene_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetActorDeltaTime_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetActorDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_X) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Y) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Z) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetActorDeltaTime_ReturnValue_1) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetActorDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_FInterpTo_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_X_1) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Y_1) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Z_1) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_FInterpTo_ReturnValue_1) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_MakeVector_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_Vector_Distance2D_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_Vector_Distance2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_GetOwnerCharacterMovement_returnValue) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_GetOwnerCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BooleanAND_ReturnValue) == 0x0000A8, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BooleanOR_ReturnValue) == 0x0000A9, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BooleanOR_ReturnValue_1) == 0x0000AA, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BooleanOR_ReturnValue_2) == 0x0000C8, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_Add_VectorVector_ReturnValue) == 0x0000D0, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_X_2) == 0x0000E8, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Y_2) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_BreakVector_Z_2) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing, CallFunc_MakeVector_ReturnValue_1) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateClimbStepSmoothing::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateCombat \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateCombat) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateCombat"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateCombat) == 0x000130, "Wrong size on AnimBP_Player_Locomotion_C_UpdateCombat"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_bool_Variable) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_bool_Variable_1) == 0x000001, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_bool_Variable_2) == 0x000002, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_bool_Variable_3) == 0x000003, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_bool_Variable_4) == 0x000004, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_GetOwningComponent_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_GetOwningComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_GetOwner_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, Temp_struct_Variable) == 0x000024, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_GetDeltaSeconds_ReturnValue) == 0x00002C, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_Map_Find_Value) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_Map_Find_ReturnValue) == 0x000034, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000035, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_Constant_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FClamp_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess_1) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess_2) == 0x0000A8, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000A9, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0000AA, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess_3) == 0x0000C0, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x0000C8, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess_4) == 0x0000D8, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0000D9, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x0000DA, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_AsWrestler_Combat_State_Interface) == 0x0000E0, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_AsWrestler_Combat_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_DynamicCast_bSuccess_5) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_IsInCombat_ReturnValue) == 0x0000F1, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_BooleanAND_ReturnValue) == 0x0000F2, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_Target_ImplicitCast) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_Target_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_Current_ImplicitCast) == 0x000108, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_VariableSet_HitreactAlpha_ImplicitCast) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_VariableSet_HitreactAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000118, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, CallFunc_FInterpTo_Constant_Current_ImplicitCast) == 0x000120, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::CallFunc_FInterpTo_Constant_Current_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateCombat, K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast) == 0x000128, "Member 'AnimBP_Player_Locomotion_C_UpdateCombat::K2Node_VariableSet_HitreactAlphaTarget_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateGlide \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateGlide) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateGlide"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateGlide) == 0x000358, "Wrong size on AnimBP_Player_Locomotion_C_UpdateGlide"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, Temp_object_Variable) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetActorForwardVector_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Dot_VectorVector_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_FClamp_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, K2Node_MakeArray_Array) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_FInterpTo_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000D0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Add_VectorVector_ReturnValue) == 0x0000E8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x000118, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000120, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000208, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetActorRightVector_ReturnValue) == 0x000210, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_bBlockingHit) == 0x000228, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_bInitialOverlap) == 0x000229, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_Time) == 0x00022C, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_Distance) == 0x000230, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_Location) == 0x000238, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_ImpactPoint) == 0x000250, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_Normal) == 0x000268, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_ImpactNormal) == 0x000280, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_PhysMat) == 0x000298, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_HitActor) == 0x0002A0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_HitComponent) == 0x0002A8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_HitBoneName) == 0x0002B0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_BoneName) == 0x0002B8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_HitItem) == 0x0002C0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_ElementIndex) == 0x0002C4, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_FaceIndex) == 0x0002C8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_TraceStart) == 0x0002D0, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_BreakHitResult_TraceEnd) == 0x0002E8, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_GetLastMovementInputVector_ReturnValue_1) == 0x000300, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_GetLastMovementInputVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000318, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000320, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000328, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000330, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_FInterpTo_ReturnValue_1) == 0x000338, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000340, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000348, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateGlide, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000350, "Member 'AnimBP_Player_Locomotion_C_UpdateGlide::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateLocation \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateLocation) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateLocation"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateLocation) == 0x000080, "Wrong size on AnimBP_Player_Locomotion_C_UpdateLocation"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, OldLocation_0) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::OldLocation_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_GetOwnerCharacter_returnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_MakeVector_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateLocation, CallFunc_MakeVector_Z_ImplicitCast) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateLocation::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateMovementState \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateMovementState) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateMovementState"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateMovementState) == 0x000130, "Wrong size on AnimBP_Player_Locomotion_C_UpdateMovementState"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_1) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_IsAttached_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_IsAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000014, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_HasTag_ReturnValue) == 0x00001C, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_2) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_HasTag_ReturnValue_1) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BreakVector_X) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BreakVector_Y) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BreakVector_Z) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_FClamp_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_FInterpTo_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_FInterpTo_ReturnValue_1) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BooleanAND_ReturnValue) == 0x000089, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BooleanNOR_ReturnValue) == 0x00008A, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BooleanNOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_3) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetIsLedgeVaulting_ReturnValue) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetIsLedgeVaulting_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_1) == 0x000099, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_2) == 0x00009A, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_4) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerCharacterMovement_returnValue) == 0x0000A8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerCharacterMovement_returnValue_1) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_IsFalling_ReturnValue) == 0x0000B8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_3) == 0x0000B9, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_5) == 0x0000C0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetIsVaulting_ReturnValue) == 0x0000C8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetIsVaulting_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_6) == 0x0000D0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_6' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetIsMantling_ReturnValue) == 0x0000D8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetIsMantling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_4) == 0x0000D9, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_5) == 0x0000DA, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_OwnerHasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_7) == 0x0000E0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_7' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_8) == 0x0000E8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_8' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetIsWallClimbing_ReturnValue) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetIsWallClimbing_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_HasTag_ReturnValue_2) == 0x0000F9, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_HasTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerCharacter_returnValue) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000108, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_IsPlayerFabien_Return) == 0x000109, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_BooleanAND_ReturnValue_1) == 0x00010A, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_GetOwnerWrestlerCharacter_returnValue_9) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_GetOwnerWrestlerCharacter_returnValue_9' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_IsGliding_ReturnValue) == 0x000118, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_IsGliding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x000120, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateMovementState, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000128, "Member 'AnimBP_Player_Locomotion_C_UpdateMovementState::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdatePipeClimb \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdatePipeClimb) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdatePipeClimb"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdatePipeClimb) == 0x0001A0, "Wrong size on AnimBP_Player_Locomotion_C_UpdatePipeClimb"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, Character) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_Vector_Up_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetAttachActor_OutAttachActor) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetAttachActor_OutAttachActor' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetAttachActor_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetAttachActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetActorForwardVector_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_NegateVector_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetOwnerTransform_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetOwnerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_InverseTransformDirection_ReturnValue) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetOwnerTransform_ReturnValue_1) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetOwnerTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000170, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_InverseTransformDirection_ReturnValue_1) == 0x000178, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_InverseTransformDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetYawPitchFromVector_Yaw) == 0x000190, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, CallFunc_GetYawPitchFromVector_Pitch) == 0x000194, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdatePipeClimb, K2Node_VariableSet_PipeClimbRootYaw_ImplicitCast) == 0x000198, "Member 'AnimBP_Player_Locomotion_C_UpdatePipeClimb::K2Node_VariableSet_PipeClimbRootYaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateSlide \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateSlide) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateSlide"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateSlide) == 0x000088, "Wrong size on AnimBP_Player_Locomotion_C_UpdateSlide"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, WrappedDirection) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::WrappedDirection' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_SelectFloat_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000029, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000039, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanAND_ReturnValue) == 0x00003A, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x00003B, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanOR_ReturnValue) == 0x00003C, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue_3) == 0x00003D, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanAND_ReturnValue_1) == 0x00003E, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanOR_ReturnValue_1) == 0x00003F, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Abs_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_SignOfFloat_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue_4) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_SelectFloat_ReturnValue_1) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Greater_DoubleDouble_ReturnValue_3) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Greater_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000081, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000082, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanAND_ReturnValue_2) == 0x000083, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_Less_DoubleDouble_ReturnValue_5) == 0x000084, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_Less_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanAND_ReturnValue_3) == 0x000085, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlide, CallFunc_BooleanOR_ReturnValue_2) == 0x000086, "Member 'AnimBP_Player_Locomotion_C_UpdateSlide::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateSlope \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateSlope) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateSlope"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateSlope) == 0x000248, "Wrong size on AnimBP_Player_Locomotion_C_UpdateSlope"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_GetActorDeltaTime_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_GetActorDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_GetCurrentFloor_returnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_GetCurrentFloor_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_GetCurrentFloor_returnValue_1) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_GetCurrentFloor_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_CalculateSlope_pitch) == 0x0001F8, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_CalculateSlope_pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_CalculateSlope_roll) == 0x000200, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_CalculateSlope_roll' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_MakeRotator_ReturnValue) == 0x000208, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_RInterpTo_ReturnValue) == 0x000220, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000238, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x00023C, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000240, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateSlope, CallFunc_RInterpTo_InterpSpeed_ImplicitCast) == 0x000244, "Member 'AnimBP_Player_Locomotion_C_UpdateSlope::CallFunc_RInterpTo_InterpSpeed_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateStepSmoothing \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateStepSmoothing"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing) == 0x0000F8, "Wrong size on AnimBP_Player_Locomotion_C_UpdateStepSmoothing"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_X) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_Y) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_Z) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetIsInCutscene_self_CastInput) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetIsInCutscene_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetIsInCutscene_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetIsInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_IsFalling_ReturnValue) == 0x000031, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetActorDeltaTime_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetActorDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_MapRangeClamped_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetOwnerCharacterMovement_returnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetOwnerCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_Vector_Distance_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BooleanAND_ReturnValue) == 0x000059, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_GetOwnerCharacterMovement_returnValue_1) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_GetOwnerCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BooleanOR_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_IsWalking_ReturnValue) == 0x000069, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BooleanOR_ReturnValue_1) == 0x00006A, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BooleanOR_ReturnValue_2) == 0x00006B, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_Lerp_ReturnValue) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_FInterpTo_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_MakeVector_ReturnValue) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_Add_VectorVector_ReturnValue) == 0x0000B0, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_X_1) == 0x0000C8, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_Y_1) == 0x0000D0, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_BreakVector_Z_1) == 0x0000D8, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateStepSmoothing, CallFunc_MakeVector_ReturnValue_1) == 0x0000E0, "Member 'AnimBP_Player_Locomotion_C_UpdateStepSmoothing::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateTraversal \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateTraversal) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateTraversal"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateTraversal) == 0x000040, "Wrong size on AnimBP_Player_Locomotion_C_UpdateTraversal"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_CalculateTraversalRotation_ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_CalculateTraversalRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_BooleanOR_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_BooleanOR_ReturnValue_1) == 0x000019, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_CalculateTraversalEndLocation_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_CalculateTraversalEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_BooleanOR_ReturnValue_2) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversal, CallFunc_BooleanOR_ReturnValue_3) == 0x000039, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversal::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation) == 0x000030, "Wrong size on AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation, NewEndLocation) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation::NewEndLocation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateTraversalEndLocation::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateVelocity \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateVelocity) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateVelocity"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateVelocity) == 0x000220, "Wrong size on AnimBP_Player_Locomotion_C_UpdateVelocity"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, OwnerRotation) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::OwnerRotation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, Temp_bool_Variable) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, Temp_real_Variable) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, Temp_real_Variable_1) == 0x000028, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_VSize_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetDeltaSeconds_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_ReturnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetCurveValueWithDefault_OutValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetCurveValueWithDefault_OutValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetCurveValueWithDefault_ReturnValue) == 0x000064, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetCurveValueWithDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetDeltaSeconds_ReturnValue_1) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, K2Node_Select_Default) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, Temp_real_Variable_2) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetVelocity_ReturnValue) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetDeltaSeconds_ReturnValue_2) == 0x0000B8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x0000C0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_X) == 0x0000D8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_Y) == 0x0000E0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_Z) == 0x0000E8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetDeltaSeconds_ReturnValue_3) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetDeltaSeconds_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, Temp_bool_Variable_1) == 0x000100, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FClamp_ReturnValue) == 0x000108, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_ReturnValue_1) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, K2Node_Select_Default_1) == 0x000118, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000120, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_TryGetPawnOwner_ReturnValue_1) == 0x000128, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_TryGetPawnOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000130, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetVelocity_ReturnValue_1) == 0x000138, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Fraction_ReturnValue) == 0x000150, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Fraction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_X_1) == 0x000158, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_Y_1) == 0x000160, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_BreakVector_Z_1) == 0x000168, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_MakeVector_ReturnValue) == 0x000170, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_VSize_ReturnValue_1) == 0x000188, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_TryGetPawnOwner_ReturnValue_2) == 0x000190, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_TryGetPawnOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000198, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x0001A0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FClamp_ReturnValue_1) == 0x0001B8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_ReturnValue_2) == 0x0001C0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_TryGetPawnOwner_ReturnValue_3) == 0x0001C8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_TryGetPawnOwner_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_GetVelocity_ReturnValue_2) == 0x0001D0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_GetVelocity_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_CalculateDirection_ReturnValue) == 0x0001E8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_CalculateDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x0001F0, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FClamp_Max_ImplicitCast) == 0x0001F8, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FClamp_Max_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_DeltaTime_ImplicitCast_1) == 0x000200, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_FInterpTo_DeltaTime_ImplicitCast_2) == 0x000208, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_FInterpTo_DeltaTime_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000210, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateVelocity, K2Node_VariableSet_Direction_ImplicitCast) == 0x000218, "Member 'AnimBP_Player_Locomotion_C_UpdateVelocity::K2Node_VariableSet_Direction_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_UpdateWallClimb \ +static_assert(alignof(AnimBP_Player_Locomotion_C_UpdateWallClimb) == 0x000010, "Wrong alignment on AnimBP_Player_Locomotion_C_UpdateWallClimb"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_UpdateWallClimb) == 0x000120, "Wrong size on AnimBP_Player_Locomotion_C_UpdateWallClimb"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, Character) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetActorRightVector_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetWallClimbWallNormal_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetWallClimbWallNormal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_BreakVector2D_X) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_BreakVector2D_Y) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_NegateVector_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_Dot_VectorVector_ReturnValue) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_BooleanOR_ReturnValue) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetOwnerTransform_ReturnValue) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetOwnerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_InverseTransformDirection_ReturnValue) == 0x0000F0, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetOwnerWrestlerCharacter_returnValue) == 0x000108, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetOwnerWrestlerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetYawPitchFromVector_Yaw) == 0x000110, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, CallFunc_GetYawPitchFromVector_Pitch) == 0x000114, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_UpdateWallClimb, K2Node_VariableSet_WallClimbRootYaw_ImplicitCast) == 0x000118, "Member 'AnimBP_Player_Locomotion_C_UpdateWallClimb::K2Node_VariableSet_WallClimbRootYaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation) == 0x000090, "Wrong size on AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, CallFunc_GetLedgeVaultEndLocation_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::CallFunc_GetLedgeVaultEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, CallFunc_GetVaultEndLocation_ReturnValue) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::CallFunc_GetVaultEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, CallFunc_GetMantleEndLocation_ReturnValue) == 0x000048, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::CallFunc_GetMantleEndLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, CallFunc_SelectVector_ReturnValue) == 0x000060, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::CallFunc_SelectVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation, CallFunc_SelectVector_ReturnValue_1) == 0x000078, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalEndLocation::CallFunc_SelectVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CalculateTraversalRotation \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CalculateTraversalRotation"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation) == 0x000098, "Wrong size on AnimBP_Player_Locomotion_C_CalculateTraversalRotation"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_GetOwningActor_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_GetOwningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_Vector_Normal2D_ReturnValue) == 0x000050, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000068, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateTraversalRotation, CallFunc_NormalizedDeltaRotator_ReturnValue) == 0x000080, "Member 'AnimBP_Player_Locomotion_C_CalculateTraversalRotation::CallFunc_NormalizedDeltaRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_CalculateVaultHeight \ +static_assert(alignof(AnimBP_Player_Locomotion_C_CalculateVaultHeight) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_CalculateVaultHeight"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_CalculateVaultHeight) == 0x0000A8, "Wrong size on AnimBP_Player_Locomotion_C_CalculateVaultHeight"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, HandHoldLocation) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::HandHoldLocation' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, TraversalStartLocation_0) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::TraversalStartLocation_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, ReturnValue_Z) == 0x000030, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::ReturnValue_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_GetOwnerHalfHeight_ReturnValue) == 0x000038, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_GetOwnerHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_MakeVector_ReturnValue) == 0x000040, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000070, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_BreakVector_X) == 0x000088, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_BreakVector_Y) == 0x000090, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_BreakVector_Z) == 0x000098, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_CalculateVaultHeight, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'AnimBP_Player_Locomotion_C_CalculateVaultHeight::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime) == 0x000028, "Wrong size on AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime, CallFunc_Ease_ReturnValue) == 0x000020, "Member 'AnimBP_Player_Locomotion_C_GetNormalizedWallClimbTime::CallFunc_Ease_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetOwnerCharacter \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetOwnerCharacter) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetOwnerCharacter"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetOwnerCharacter) == 0x000020, "Wrong size on AnimBP_Player_Locomotion_C_GetOwnerCharacter"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacter, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacter, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacter::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacter, K2Node_DynamicCast_AsCharacter) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacter::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacter, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement) == 0x000010, "Wrong size on AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement, CallFunc_GetOwnerCharacter_returnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetOwnerCharacterMovement::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetOwnerHalfHeight \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetOwnerHalfHeight"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight) == 0x000020, "Wrong size on AnimBP_Player_Locomotion_C_GetOwnerHalfHeight"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetOwnerHalfHeight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight, CallFunc_GetOwnerCharacter_returnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetOwnerHalfHeight::CallFunc_GetOwnerCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_GetOwnerHalfHeight::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerHalfHeight, K2Node_FunctionResult_ReturnValue_ImplicitCast) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetOwnerHalfHeight::K2Node_FunctionResult_ReturnValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter) == 0x000020, "Wrong size on AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter, CallFunc_TryGetPawnOwner_ReturnValue) == 0x000008, "Member 'AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter::CallFunc_TryGetPawnOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter, K2Node_DynamicCast_AsWrestler_Character) == 0x000010, "Member 'AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetOwnerWrestlerCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Player_Locomotion_C_GetTraversalInverseDelta \ +static_assert(alignof(AnimBP_Player_Locomotion_C_GetTraversalInverseDelta) == 0x000008, "Wrong alignment on AnimBP_Player_Locomotion_C_GetTraversalInverseDelta"); \ +static_assert(sizeof(AnimBP_Player_Locomotion_C_GetTraversalInverseDelta) == 0x000030, "Wrong size on AnimBP_Player_Locomotion_C_GetTraversalInverseDelta"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetTraversalInverseDelta, ReturnValue) == 0x000000, "Member 'AnimBP_Player_Locomotion_C_GetTraversalInverseDelta::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Player_Locomotion_C_GetTraversalInverseDelta, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000018, "Member 'AnimBP_Player_Locomotion_C_GetTraversalInverseDelta::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Player_Locomotion_C \ +static_assert(alignof(UAnimBP_Player_Locomotion_C) == 0x000010, "Wrong alignment on UAnimBP_Player_Locomotion_C"); \ +static_assert(sizeof(UAnimBP_Player_Locomotion_C) == 0x00B190, "Wrong size on UAnimBP_Player_Locomotion_C"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, UberGraphFrame) == 0x000350, "Member 'UAnimBP_Player_Locomotion_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, __AnimBlueprintMutables) == 0x000358, "Member 'UAnimBP_Player_Locomotion_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimBlueprintExtension_PropertyAccess) == 0x0003E8, "Member 'UAnimBP_Player_Locomotion_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimBlueprintExtension_Base) == 0x0003F0, "Member 'UAnimBP_Player_Locomotion_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Root_2) == 0x0003F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Root_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_56) == 0x000418, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_56' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_55) == 0x000440, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_55' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_54) == 0x000468, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_54' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_53) == 0x000490, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_53' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_52) == 0x0004B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_52' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_51) == 0x0004E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_51' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_50) == 0x000508, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_50' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_49) == 0x000530, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_49' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_48) == 0x000558, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_48' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_47) == 0x000580, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_47' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_46) == 0x0005A8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_46' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_45) == 0x0005D0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_45' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_44) == 0x0005F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_44' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_25) == 0x000620, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_25) == 0x000640, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_54) == 0x000660, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_54' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone_5) == 0x000788, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_66) == 0x000838, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_66' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_14) == 0x000880, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_21) == 0x000970, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_65) == 0x0009B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_65' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_64) == 0x000A00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_64' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_21) == 0x000A48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_63) == 0x000A68, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_63' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone_4) == 0x000AB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_24) == 0x000B60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_24) == 0x000B80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_53) == 0x000BA0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_53' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_13) == 0x000CC8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_62) == 0x000DB8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_62' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_20) == 0x000E00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_43) == 0x000E20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_43' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_61) == 0x000E48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_61' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_12) == 0x000E90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_20) == 0x000F80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_60) == 0x000FC8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_60' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_59) == 0x001010, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_59' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_58) == 0x001058, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_58' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone_3) == 0x0010A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_23) == 0x001150, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_23) == 0x001170, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_52) == 0x001190, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_52' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_11) == 0x0012B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_57) == 0x0013A8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_57' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_19) == 0x0013F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_19) == 0x001438, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_51) == 0x001458, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_51' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_56) == 0x001580, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_56' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_55) == 0x0015C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_55' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_22) == 0x001610, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_22) == 0x001630, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_10) == 0x001650, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone_2) == 0x001740, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_18) == 0x0017F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_54) == 0x001810, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_54' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_18) == 0x001858, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_9) == 0x0018A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_8) == 0x001990, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_50) == 0x001A00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_50' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_21) == 0x001B28, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_21) == 0x001B48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_49) == 0x001B68, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_49' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_48) == 0x001C90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_48' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_7) == 0x001DB8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_17) == 0x001E28, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_47) == 0x001E70, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_47' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_46) == 0x001F98, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_46' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_45) == 0x0020C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_45' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_20) == 0x0021E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_20) == 0x002208, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_44) == 0x002228, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_44' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_6) == 0x002350, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_17) == 0x0023C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_19) == 0x0023E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_19) == 0x002400, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_43) == 0x002420, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_43' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_53) == 0x002548, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_53' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_8) == 0x002590, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_5) == 0x002680, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_7) == 0x0026F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_52) == 0x0027E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_52' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_14) == 0x002828, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_51) == 0x0028F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_51' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_13) == 0x002938, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_50) == 0x002A00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_50' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_4) == 0x002A48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_16) == 0x002AB8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_49) == 0x002B00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_49' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_12) == 0x002B48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_48) == 0x002C10, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_48' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_11) == 0x002C58, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_47) == 0x002D20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_47' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_15) == 0x002D68, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_46) == 0x002DB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_46' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_14) == 0x002DF8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_42) == 0x002E40, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_42' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_41) == 0x002F68, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_41' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_10) == 0x003090, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_13) == 0x003158, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_45) == 0x0031A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_45' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_44) == 0x0031E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_44' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_12) == 0x003230, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_18) == 0x003278, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_18) == 0x003298, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_40) == 0x0032B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_40' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_17) == 0x0033E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_17) == 0x003400, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_39) == 0x003420, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_39' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_3) == 0x003548, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_11) == 0x0035B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_43) == 0x003600, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_43' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_42) == 0x003648, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_42' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_9) == 0x003690, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_8) == 0x003758, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_41) == 0x003820, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_41' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_10) == 0x003868, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_40) == 0x0038B0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_40' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_9) == 0x0038F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_39) == 0x003940, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_39' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_38) == 0x003988, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_38' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_37) == 0x0039D0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_37' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_36) == 0x003A18, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_36' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_35) == 0x003A60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_35' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Slot_2) == 0x003AA8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Slot_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_34) == 0x003AF0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_34' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByEnum) == 0x003B38, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByEnum' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_8) == 0x003B80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_7) == 0x003BC8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_33) == 0x003C90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_33' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_32) == 0x003CD8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_2) == 0x003D20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_7) == 0x003D90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_6) == 0x003DD8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_31) == 0x003EA0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_30) == 0x003EE8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_29) == 0x003F30, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_10) == 0x003F78, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_12) == 0x003FB8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_6) == 0x004020, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_5) == 0x004068, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer_1) == 0x0040B0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_6) == 0x004120, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_28) == 0x004210, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_16) == 0x004258, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateMachine_2) == 0x004278, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateMachine_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SaveCachedPose_4) == 0x004340, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SaveCachedPose_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SaveCachedPose_3) == 0x0043C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SaveCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Inertialization_1) == 0x004440, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Inertialization_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_42) == 0x004550, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_42' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_41) == 0x004578, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_41' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_40) == 0x0045A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_40' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_39) == 0x0045C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_39' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_38) == 0x0045F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_38' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_37) == 0x004618, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_37' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_36) == 0x004640, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_36' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_35) == 0x004668, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_35' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_34) == 0x004690, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_34' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_33) == 0x0046B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_33' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_32) == 0x0046E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_31) == 0x004708, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_30) == 0x004730, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_29) == 0x004758, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_28) == 0x004780, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_27) == 0x0047A8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_26) == 0x0047D0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_25) == 0x0047F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_24) == 0x004820, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_23) == 0x004848, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_22) == 0x004870, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_21) == 0x004898, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_20) == 0x0048C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_19) == 0x0048E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_18) == 0x004910, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_17) == 0x004938, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_38) == 0x004960, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_38' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_37) == 0x004A88, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_37' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_5) == 0x004BB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_36) == 0x004C78, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_36' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_16) == 0x004DA0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_16) == 0x004DC0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_9) == 0x004DE0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_11) == 0x004E20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_27) == 0x004E88, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_4) == 0x004ED0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_26) == 0x004F98, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_35) == 0x004FE0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_35' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_15) == 0x005108, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_15) == 0x005128, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_8) == 0x005148, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_10) == 0x005188, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_25) == 0x0051F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_15) == 0x005238, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_16) == 0x005258, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_13) == 0x005280, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_9) == 0x0052A8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_24) == 0x005310, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_14) == 0x005358, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_12) == 0x005378, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_8) == 0x0053A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_23) == 0x005408, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_13) == 0x005450, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_15) == 0x005470, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_34) == 0x005498, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_34' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_14) == 0x0055C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_33) == 0x0055E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_33' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_14) == 0x005708, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_32) == 0x005728, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_32' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_22) == 0x005850, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_5) == 0x005898, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_31) == 0x005988, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_31' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_13) == 0x005AB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_13) == 0x005AD0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_21) == 0x005AF0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_7) == 0x005B38, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_7) == 0x005B78, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_30) == 0x005BE0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_30' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_12) == 0x005D08, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_12) == 0x005D28, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_29) == 0x005D48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_29' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_12) == 0x005E70, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_11) == 0x005E90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_6) == 0x005EB8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_10) == 0x005F20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_5) == 0x005F48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ApplyAdditive_2) == 0x005FB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ApplyAdditive_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_9) == 0x006078, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_20) == 0x0060A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_11) == 0x0060E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_28) == 0x006108, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_28' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_27) == 0x006230, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_27' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_3) == 0x006358, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_2) == 0x006420, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_26) == 0x0064E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_26' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_11) == 0x006610, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_11) == 0x006630, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_6) == 0x006650, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_4) == 0x006690, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_19) == 0x0066F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_18) == 0x006740, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_10) == 0x006788, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_10) == 0x0067A8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_25) == 0x0067C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_25' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_5) == 0x0068F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_3) == 0x006930, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_17) == 0x006998, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_10) == 0x0069E0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_16) == 0x006A00, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend_1) == 0x006A48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_24) == 0x006B10, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_24' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_23) == 0x006C38, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_23' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_22) == 0x006D60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_22' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_21) == 0x006E88, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_21' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_20) == 0x006FB0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_20' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_19) == 0x0070D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_19' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_9) == 0x007200, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_9) == 0x007220, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_15) == 0x007240, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_2) == 0x007288, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone_1) == 0x0072F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_14) == 0x0073A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_9) == 0x0073E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_8) == 0x007408, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_8) == 0x007430, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateMachine_1) == 0x007450, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateMachine_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LinkedInputPose) == 0x007518, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Root_1) == 0x0075D0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Root_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_13) == 0x0075F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_14) == 0x007638, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_13) == 0x007660, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_12) == 0x007688, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_11) == 0x0076B0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_10) == 0x0076D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_9) == 0x007700, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_8) == 0x007728, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_7) == 0x007750, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_6) == 0x007778, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_5) == 0x0077A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_4) == 0x0077C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_3) == 0x0077F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_2) == 0x007818, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult_1) == 0x007840, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TransitionResult) == 0x007868, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendSpacePlayer) == 0x007890, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendSpacePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_7) == 0x007900, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_18) == 0x007920, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_18' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_12) == 0x007A48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_4) == 0x007A90, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_11) == 0x007AD8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_8) == 0x007B20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_8) == 0x007B40, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ResetRoot_3) == 0x007B60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ResetRoot_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_17) == 0x007C38, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_17' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_6) == 0x007D60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotateRootBone) == 0x007D80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotateRootBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_10) == 0x007E30, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_5) == 0x007E78, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_4) == 0x007E98, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_TwoWayBlend) == 0x007ED8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_4) == 0x007FA0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_9) == 0x008090, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_3) == 0x0080D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_8) == 0x008118, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_3) == 0x008160, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ApplyAdditive_1) == 0x008250, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ApplyAdditive_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_2) == 0x008318, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_7) == 0x008358, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_MakeDynamicAdditive_1) == 0x0083A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_MakeDynamicAdditive_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_7) == 0x0083D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_7) == 0x0083F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ResetRoot_2) == 0x008418, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ResetRoot_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_4) == 0x0084F0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_MakeDynamicAdditive) == 0x008510, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_MakeDynamicAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_6) == 0x008548, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel_1) == 0x008590, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_7) == 0x0085F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_16) == 0x008620, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_16' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_5) == 0x008748, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ApplyAdditive) == 0x008790, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ApplyAdditive' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator_1) == 0x008858, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_6) == 0x008898, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_6) == 0x0088B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_3) == 0x0088D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_15) == 0x0088F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_15' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_14) == 0x008A20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_14' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_5) == 0x008B48, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_5) == 0x008B68, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ResetRoot_1) == 0x008B88, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ResetRoot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_13) == 0x008C60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_13' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_4) == 0x008D88, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_2) == 0x008DD0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_6) == 0x008DF0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendBoneByChannel) == 0x008E18, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendBoneByChannel' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_3) == 0x008E80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_3) == 0x008EC8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_2) == 0x008F10, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_2) == 0x008F58, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_12) == 0x008FA0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_12' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ResetRoot) == 0x0090C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ResetRoot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_11) == 0x0091A0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_11' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_4) == 0x0092C8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_4) == 0x0092E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer_1) == 0x009308, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult_1) == 0x009350, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_5) == 0x009370, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateResult) == 0x009398, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_StateMachine) == 0x0093B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Inertialization) == 0x009480, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Inertialization' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_10) == 0x009590, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_10' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_3) == 0x0096B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_3) == 0x0096D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool_1) == 0x0096F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequenceEvaluator) == 0x009740, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequenceEvaluator' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_RotationOffsetBlendSpace) == 0x009780, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_RotationOffsetBlendSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SaveCachedPose_2) == 0x009898, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SaveCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_2) == 0x009918, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_2) == 0x009938, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_9) == 0x009958, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_9' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_8) == 0x009A80, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_8' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace_1) == 0x009BA8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_7) == 0x009BC8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_7' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace_1) == 0x009CF0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_6) == 0x009D10, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_6' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_5) == 0x009E38, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_5' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Slot_1) == 0x009F60, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Slot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Slot) == 0x009FA8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SaveCachedPose_1) == 0x009FF0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SaveCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_2) == 0x00A070, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_4) == 0x00A160, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_3) == 0x00A188, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_4) == 0x00A1B0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SaveCachedPose) == 0x00A2D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SaveCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend_1) == 0x00A358, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_2) == 0x00A448, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose_1) == 0x00A470, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_3) == 0x00A498, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_2) == 0x00A5C0, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_BlendListByBool) == 0x00A6E8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_BlendListByBool' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_SequencePlayer) == 0x00A730, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LayeredBoneBlend) == 0x00A778, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_UseCachedPose) == 0x00A868, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_UseCachedPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone_1) == 0x00A890, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LocalToComponentSpace) == 0x00A9B8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ComponentToLocalSpace) == 0x00A9D8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_ModifyBone) == 0x00A9F8, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_Root) == 0x00AB20, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AnimGraphNode_LinkedAnimLayer) == 0x00AB40, "Member 'UAnimBP_Player_Locomotion_C::AnimGraphNode_LinkedAnimLayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Direction) == 0x00AC08, "Member 'UAnimBP_Player_Locomotion_C::Direction' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, PreviousDirection) == 0x00AC10, "Member 'UAnimBP_Player_Locomotion_C::PreviousDirection' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Velocity) == 0x00AC18, "Member 'UAnimBP_Player_Locomotion_C::Velocity' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Speed) == 0x00AC30, "Member 'UAnimBP_Player_Locomotion_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsHeavyLanding) == 0x00AC38, "Member 'UAnimBP_Player_Locomotion_C::bIsHeavyLanding' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsCrouching) == 0x00AC39, "Member 'UAnimBP_Player_Locomotion_C::bIsCrouching' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsFalling) == 0x00AC3A, "Member 'UAnimBP_Player_Locomotion_C::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsJumping) == 0x00AC3B, "Member 'UAnimBP_Player_Locomotion_C::bIsJumping' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsSprinting) == 0x00AC3C, "Member 'UAnimBP_Player_Locomotion_C::bIsSprinting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsGliding) == 0x00AC3D, "Member 'UAnimBP_Player_Locomotion_C::bIsGliding' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsSliding) == 0x00AC3E, "Member 'UAnimBP_Player_Locomotion_C::bIsSliding' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ControlRotation) == 0x00AC40, "Member 'UAnimBP_Player_Locomotion_C::ControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, RelativeControlRotation) == 0x00AC58, "Member 'UAnimBP_Player_Locomotion_C::RelativeControlRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bInCombat) == 0x00AC70, "Member 'UAnimBP_Player_Locomotion_C::bInCombat' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ForwardInputLandMovementThreshold) == 0x00AC78, "Member 'UAnimBP_Player_Locomotion_C::ForwardInputLandMovementThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsForwardInput) == 0x00AC80, "Member 'UAnimBP_Player_Locomotion_C::bIsForwardInput' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsWallClimbing) == 0x00AC81, "Member 'UAnimBP_Player_Locomotion_C::bIsWallClimbing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsWallRunning) == 0x00AC82, "Member 'UAnimBP_Player_Locomotion_C::bIsWallRunning' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsVaulting) == 0x00AC83, "Member 'UAnimBP_Player_Locomotion_C::bIsVaulting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsLedgeVaulting) == 0x00AC84, "Member 'UAnimBP_Player_Locomotion_C::bIsLedgeVaulting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsMantling) == 0x00AC85, "Member 'UAnimBP_Player_Locomotion_C::bIsMantling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalComponent) == 0x00AC88, "Member 'UAnimBP_Player_Locomotion_C::TraversalComponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, WallClimbVerticalSpeed) == 0x00AC90, "Member 'UAnimBP_Player_Locomotion_C::WallClimbVerticalSpeed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, WallClimbRootYaw) == 0x00AC98, "Member 'UAnimBP_Player_Locomotion_C::WallClimbRootYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlopeRotation) == 0x00ACA0, "Member 'UAnimBP_Player_Locomotion_C::SlopeRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SmoothedSlopeRotation) == 0x00ACB8, "Member 'UAnimBP_Player_Locomotion_C::SmoothedSlopeRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlopeSmoothingSpeed) == 0x00ACD0, "Member 'UAnimBP_Player_Locomotion_C::SlopeSmoothingSpeed' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalEndLocation) == 0x00ACD8, "Member 'UAnimBP_Player_Locomotion_C::TraversalEndLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalStartLocation) == 0x00ACF0, "Member 'UAnimBP_Player_Locomotion_C::TraversalStartLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalEndRootLocation) == 0x00AD08, "Member 'UAnimBP_Player_Locomotion_C::TraversalEndRootLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalRotation) == 0x00AD20, "Member 'UAnimBP_Player_Locomotion_C::TraversalRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, MovementMode) == 0x00AD38, "Member 'UAnimBP_Player_Locomotion_C::MovementMode' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalRootLockCurve) == 0x00AD3C, "Member 'UAnimBP_Player_Locomotion_C::TraversalRootLockCurve' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsHighMantle) == 0x00AD44, "Member 'UAnimBP_Player_Locomotion_C::bIsHighMantle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, HighMantleThreshold) == 0x00AD48, "Member 'UAnimBP_Player_Locomotion_C::HighMantleThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Location) == 0x00AD50, "Member 'UAnimBP_Player_Locomotion_C::Location' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, OldLocation) == 0x00AD68, "Member 'UAnimBP_Player_Locomotion_C::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, FootLocation) == 0x00AD80, "Member 'UAnimBP_Player_Locomotion_C::FootLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, OldFootLocation) == 0x00AD98, "Member 'UAnimBP_Player_Locomotion_C::OldFootLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StepSmoothOffset) == 0x00ADB0, "Member 'UAnimBP_Player_Locomotion_C::StepSmoothOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bWallClimbMantle) == 0x00ADC8, "Member 'UAnimBP_Player_Locomotion_C::bWallClimbMantle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, MaxWallClimbTime) == 0x00ADD0, "Member 'UAnimBP_Player_Locomotion_C::MaxWallClimbTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LastWallClimbTime) == 0x00ADD8, "Member 'UAnimBP_Player_Locomotion_C::LastWallClimbTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsWallJumpingBack) == 0x00ADE0, "Member 'UAnimBP_Player_Locomotion_C::bIsWallJumpingBack' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, VaultHandHoldLocation) == 0x00ADE8, "Member 'UAnimBP_Player_Locomotion_C::VaultHandHoldLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, VaultObstacleHeight) == 0x00AE00, "Member 'UAnimBP_Player_Locomotion_C::VaultObstacleHeight' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TraversalStartTime) == 0x00AE08, "Member 'UAnimBP_Player_Locomotion_C::TraversalStartTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AdaptiveCrouchAlpha) == 0x00AE10, "Member 'UAnimBP_Player_Locomotion_C::AdaptiveCrouchAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AdaptiveCrouchTraceHeight) == 0x00AE18, "Member 'UAnimBP_Player_Locomotion_C::AdaptiveCrouchTraceHeight' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsRightWallRun) == 0x00AE20, "Member 'UAnimBP_Player_Locomotion_C::bIsRightWallRun' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, WallRunRootYaw) == 0x00AE28, "Member 'UAnimBP_Player_Locomotion_C::WallRunRootYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SoftLandHeadStabilisation) == 0x00AE30, "Member 'UAnimBP_Player_Locomotion_C::SoftLandHeadStabilisation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SoftLandIntensity) == 0x00AE38, "Member 'UAnimBP_Player_Locomotion_C::SoftLandIntensity' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SoftLandStartPos) == 0x00AE40, "Member 'UAnimBP_Player_Locomotion_C::SoftLandStartPos' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SoftLandPlayRate) == 0x00AE48, "Member 'UAnimBP_Player_Locomotion_C::SoftLandPlayRate' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, HeavyLandingAimAlpha) == 0x00AE50, "Member 'UAnimBP_Player_Locomotion_C::HeavyLandingAimAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AimOverrideCurveValue) == 0x00AE58, "Member 'UAnimBP_Player_Locomotion_C::AimOverrideCurveValue' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LandSpringOffset) == 0x00AE60, "Member 'UAnimBP_Player_Locomotion_C::LandSpringOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LandSpringMultiplier) == 0x00AE78, "Member 'UAnimBP_Player_Locomotion_C::LandSpringMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, MaxLandSpringOffset) == 0x00AE90, "Member 'UAnimBP_Player_Locomotion_C::MaxLandSpringOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, GlideYawInput) == 0x00AE98, "Member 'UAnimBP_Player_Locomotion_C::GlideYawInput' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bUseLegacySprintAnim) == 0x00AEA0, "Member 'UAnimBP_Player_Locomotion_C::bUseLegacySprintAnim' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, WallClimbSteerAngle) == 0x00AEA8, "Member 'UAnimBP_Player_Locomotion_C::WallClimbSteerAngle' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AdaptiveCrouchTraceOffset) == 0x00AEB0, "Member 'UAnimBP_Player_Locomotion_C::AdaptiveCrouchTraceOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlopeValue) == 0x00AEB8, "Member 'UAnimBP_Player_Locomotion_C::SlopeValue' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bLatentSprint) == 0x00AEC0, "Member 'UAnimBP_Player_Locomotion_C::bLatentSprint' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StepSmoothingSpeedMin) == 0x00AEC8, "Member 'UAnimBP_Player_Locomotion_C::StepSmoothingSpeedMin' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StepSmoothingSpeedMax) == 0x00AED0, "Member 'UAnimBP_Player_Locomotion_C::StepSmoothingSpeedMax' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StepSmoothingMaxDistance) == 0x00AED8, "Member 'UAnimBP_Player_Locomotion_C::StepSmoothingMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StepSmoothingExponent) == 0x00AEE0, "Member 'UAnimBP_Player_Locomotion_C::StepSmoothingExponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlideSpinDirection) == 0x00AEE8, "Member 'UAnimBP_Player_Locomotion_C::SlideSpinDirection' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlideLegsDirection) == 0x00AEF0, "Member 'UAnimBP_Player_Locomotion_C::SlideLegsDirection' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, SlideLegsAngleLimit) == 0x00AEF8, "Member 'UAnimBP_Player_Locomotion_C::SlideLegsAngleLimit' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, MoveAlpha) == 0x00AF00, "Member 'UAnimBP_Player_Locomotion_C::MoveAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, MoveTime) == 0x00AF08, "Member 'UAnimBP_Player_Locomotion_C::MoveTime' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, StrafeBlend) == 0x00AF10, "Member 'UAnimBP_Player_Locomotion_C::StrafeBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LagClamp) == 0x00AF18, "Member 'UAnimBP_Player_Locomotion_C::LagClamp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LagRotation) == 0x00AF20, "Member 'UAnimBP_Player_Locomotion_C::LagRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, RelativeLagRotation) == 0x00AF38, "Member 'UAnimBP_Player_Locomotion_C::RelativeLagRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, GroundedRotation) == 0x00AF50, "Member 'UAnimBP_Player_Locomotion_C::GroundedRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, OffsetRotation) == 0x00AF68, "Member 'UAnimBP_Player_Locomotion_C::OffsetRotation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Turning) == 0x00AF80, "Member 'UAnimBP_Player_Locomotion_C::Turning' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TurnThreshold) == 0x00AF88, "Member 'UAnimBP_Player_Locomotion_C::TurnThreshold' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, DashDip) == 0x00AF90, "Member 'UAnimBP_Player_Locomotion_C::DashDip' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Capsule_Clearance) == 0x00AF98, "Member 'UAnimBP_Player_Locomotion_C::Capsule_Clearance' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, LeftArmBob) == 0x00AFA0, "Member 'UAnimBP_Player_Locomotion_C::LeftArmBob' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, RightArmBob) == 0x00B000, "Member 'UAnimBP_Player_Locomotion_C::RightArmBob' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, AirLag) == 0x00B060, "Member 'UAnimBP_Player_Locomotion_C::AirLag' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Dashing) == 0x00B068, "Member 'UAnimBP_Player_Locomotion_C::Dashing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Clan) == 0x00B069, "Member 'UAnimBP_Player_Locomotion_C::Clan' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsProwling) == 0x00B06A, "Member 'UAnimBP_Player_Locomotion_C::bIsProwling' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Camroll) == 0x00B070, "Member 'UAnimBP_Player_Locomotion_C::Camroll' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, OldClimbLocation) == 0x00B088, "Member 'UAnimBP_Player_Locomotion_C::OldClimbLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbLocation) == 0x00B0A0, "Member 'UAnimBP_Player_Locomotion_C::ClimbLocation' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbSmoothOffset) == 0x00B0B8, "Member 'UAnimBP_Player_Locomotion_C::ClimbSmoothOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbSmoothingMaxDistance) == 0x00B0D0, "Member 'UAnimBP_Player_Locomotion_C::ClimbSmoothingMaxDistance' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbSmoothingExponent) == 0x00B0D8, "Member 'UAnimBP_Player_Locomotion_C::ClimbSmoothingExponent' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbSmoothingSpeedMin) == 0x00B0E0, "Member 'UAnimBP_Player_Locomotion_C::ClimbSmoothingSpeedMin' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, ClimbSmoothingSpeedMax) == 0x00B0E8, "Member 'UAnimBP_Player_Locomotion_C::ClimbSmoothingSpeedMax' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, PipeRotationOffset) == 0x00B0F0, "Member 'UAnimBP_Player_Locomotion_C::PipeRotationOffset' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, PipeVector) == 0x00B108, "Member 'UAnimBP_Player_Locomotion_C::PipeVector' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, PipeClimbRootYaw) == 0x00B120, "Member 'UAnimBP_Player_Locomotion_C::PipeClimbRootYaw' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, FacingAttachActor) == 0x00B128, "Member 'UAnimBP_Player_Locomotion_C::FacingAttachActor' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsAttached) == 0x00B129, "Member 'UAnimBP_Player_Locomotion_C::bIsAttached' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsLedgeHanging) == 0x00B12A, "Member 'UAnimBP_Player_Locomotion_C::bIsLedgeHanging' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsPipeClimbing) == 0x00B12B, "Member 'UAnimBP_Player_Locomotion_C::bIsPipeClimbing' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Jump_Current_Count) == 0x00B12C, "Member 'UAnimBP_Player_Locomotion_C::Jump_Current_Count' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, bIsFloored) == 0x00B130, "Member 'UAnimBP_Player_Locomotion_C::bIsFloored' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, CamBob) == 0x00B138, "Member 'UAnimBP_Player_Locomotion_C::CamBob' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Hitreacting) == 0x00B150, "Member 'UAnimBP_Player_Locomotion_C::Hitreacting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, HitreactAlpha) == 0x00B154, "Member 'UAnimBP_Player_Locomotion_C::HitreactAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, HitreactAlphaTarget) == 0x00B158, "Member 'UAnimBP_Player_Locomotion_C::HitreactAlphaTarget' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Invisible) == 0x00B15C, "Member 'UAnimBP_Player_Locomotion_C::Invisible' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, VsprintMomentum) == 0x00B160, "Member 'UAnimBP_Player_Locomotion_C::VsprintMomentum' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Vsprinting) == 0x00B164, "Member 'UAnimBP_Player_Locomotion_C::Vsprinting' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Direction_Interp) == 0x00B168, "Member 'UAnimBP_Player_Locomotion_C::Direction_Interp' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, TKHolding) == 0x00B170, "Member 'UAnimBP_Player_Locomotion_C::TKHolding' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, Shielded) == 0x00B171, "Member 'UAnimBP_Player_Locomotion_C::Shielded' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, IsFabien) == 0x00B172, "Member 'UAnimBP_Player_Locomotion_C::IsFabien' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, GlideApproachAlpha) == 0x00B178, "Member 'UAnimBP_Player_Locomotion_C::GlideApproachAlpha' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, DangerZone) == 0x00B180, "Member 'UAnimBP_Player_Locomotion_C::DangerZone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, GunOut) == 0x00B181, "Member 'UAnimBP_Player_Locomotion_C::GunOut' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, GunEmpty) == 0x00B182, "Member 'UAnimBP_Player_Locomotion_C::GunEmpty' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Player_Locomotion_C, IsBenny) == 0x00B183, "Member 'UAnimBP_Player_Locomotion_C::IsBenny' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_DashDip_C_BlueprintModifyCamera \ +static_assert(alignof(CM_DashDip_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_DashDip_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_DashDip_C_BlueprintModifyCamera) == 0x0002F8, "Wrong size on CM_DashDip_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_DashDip_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_DashDip_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_DashDip_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_DashDip_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_DashDip_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_DashDip_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_DashDip_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_X) == 0x000078, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Y) == 0x000080, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Z) == 0x000088, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_X_1) == 0x000090, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Y_1) == 0x000098, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Z_1) == 0x0000A0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0000B0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000B8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetAnimInstance_ReturnValue) == 0x0000C0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_IsValid_ReturnValue) == 0x0000C8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, K2Node_DynamicCast_AsAnim_BP_Player) == 0x0000D0, "Member 'CM_DashDip_C_BlueprintModifyCamera::K2Node_DynamicCast_AsAnim_BP_Player' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'CM_DashDip_C_BlueprintModifyCamera::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000E0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000E8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000100, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Dot_VectorVector_ReturnValue) == 0x000108, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_FClamp_ReturnValue) == 0x000110, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000118, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000120, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetFloatValue_ReturnValue) == 0x000138, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000140, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetFloatValue_ReturnValue_1) == 0x000158, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetFloatValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000160, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000168, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000170, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000178, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeVector_ReturnValue) == 0x000180, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000198, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0001B0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0001C8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_X_2) == 0x0001E0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Y_2) == 0x0001E8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Z_2) == 0x0001F0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001F8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000210, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000218, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_FMax_ReturnValue) == 0x000230, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000238, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeVector_ReturnValue_1) == 0x000250, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_X_3) == 0x000268, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Y_3) == 0x000270, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_BreakVector_Z_3) == 0x000278, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000280, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000288, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeRotator_ReturnValue) == 0x000290, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_ComposeRotators_ReturnValue) == 0x0002A8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0002C0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0002C8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0002D0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_GetFloatValue_InTime_ImplicitCast_1) == 0x0002D4, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_GetFloatValue_InTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0002D8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, K2Node_VariableSet_CurrentDip_ImplicitCast) == 0x0002E0, "Member 'CM_DashDip_C_BlueprintModifyCamera::K2Node_VariableSet_CurrentDip_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeVector_Z_ImplicitCast) == 0x0002E8, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeVector_Z_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x0002F0, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_BlueprintModifyCamera, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x0002F4, "Member 'CM_DashDip_C_BlueprintModifyCamera::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_DashDip_C_ExecuteUbergraph_CM_DashDip \ +static_assert(alignof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip) == 0x000008, "Wrong alignment on CM_DashDip_C_ExecuteUbergraph_CM_DashDip"); \ +static_assert(sizeof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip) == 0x000048, "Wrong size on CM_DashDip_C_ExecuteUbergraph_CM_DashDip"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, EntryPoint) == 0x000000, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, K2Node_CustomEvent_Direction) == 0x000008, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::K2Node_CustomEvent_Direction' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000020, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, CallFunc_GetAnimInstance_ReturnValue) == 0x000030, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, K2Node_DynamicCast_AsAnim_BP_Player) == 0x000038, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::K2Node_DynamicCast_AsAnim_BP_Player' has a wrong offset!"); \ +static_assert(offsetof(CM_DashDip_C_ExecuteUbergraph_CM_DashDip, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'CM_DashDip_C_ExecuteUbergraph_CM_DashDip::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_DashDip_C_Play \ +static_assert(alignof(CM_DashDip_C_Play) == 0x000008, "Wrong alignment on CM_DashDip_C_Play"); \ +static_assert(sizeof(CM_DashDip_C_Play) == 0x000018, "Wrong size on CM_DashDip_C_Play"); \ +static_assert(offsetof(CM_DashDip_C_Play, Direction) == 0x000000, "Member 'CM_DashDip_C_Play::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_DashDip_C \ +static_assert(alignof(UCM_DashDip_C) == 0x000008, "Wrong alignment on UCM_DashDip_C"); \ +static_assert(sizeof(UCM_DashDip_C) == 0x000100, "Wrong size on UCM_DashDip_C"); \ +static_assert(offsetof(UCM_DashDip_C, UberGraphFrame) == 0x0000A0, "Member 'UCM_DashDip_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, Diptime) == 0x0000A8, "Member 'UCM_DashDip_C::Diptime' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, DipTarget) == 0x0000B0, "Member 'UCM_DashDip_C::DipTarget' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, ElapsedTime) == 0x0000B8, "Member 'UCM_DashDip_C::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, CurrentDip) == 0x0000C0, "Member 'UCM_DashDip_C::CurrentDip' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, DipCurve) == 0x0000C8, "Member 'UCM_DashDip_C::DipCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, RollCurve) == 0x0000D0, "Member 'UCM_DashDip_C::RollCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, DashDir) == 0x0000D8, "Member 'UCM_DashDip_C::DashDir' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, DoDip) == 0x0000F0, "Member 'UCM_DashDip_C::DoDip' has a wrong offset!"); \ +static_assert(offsetof(UCM_DashDip_C, MenuBool) == 0x0000F8, "Member 'UCM_DashDip_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_TelekinesisTrajectory_C \ +static_assert(alignof(ATA_TelekinesisTrajectory_C) == 0x000010, "Wrong alignment on ATA_TelekinesisTrajectory_C"); \ +static_assert(sizeof(ATA_TelekinesisTrajectory_C) == 0x000480, "Wrong size on ATA_TelekinesisTrajectory_C"); \ +static_assert(offsetof(ATA_TelekinesisTrajectory_C, DefaultSceneRoot) == 0x000470, "Member 'ATA_TelekinesisTrajectory_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE \ +static_assert(alignof(GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE) == 0x0000B8, "Wrong size on GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE, EventTag) == 0x000000, "Member 'GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE, EventData) == 0x000008, "Member 'GA_PlayerDash_Updated_C_EventReceived_1ECD1B644AB83E4B99B524A42020C6FE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated \ +static_assert(alignof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated) == 0x0006E8, "Wrong size on GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, EntryPoint) == 0x000000, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_bool_Variable) == 0x000004, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_real_Variable) == 0x000008, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_real_Variable_1) == 0x00000C, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_bool_Variable_1) == 0x000010, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_real_Variable_2) == 0x000014, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_Create_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventTag_4) == 0x000020, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventData_4) == 0x000028, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate) == 0x0000D8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventTag_3) == 0x0000E8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventData_3) == 0x0000F0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001A0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventTag_2) == 0x0001B0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventData_2) == 0x0001B8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate_2) == 0x000268, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventTag_1) == 0x000278, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventData_1) == 0x000280, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate_3) == 0x000330, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventTag) == 0x000340, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CustomEvent_EventData) == 0x000348, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003F8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_struct_Variable) == 0x000408, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, Temp_struct_Variable_1) == 0x0004B8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_IsValid_ReturnValue) == 0x0004C0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetDashDirection_ReturnValue) == 0x0004C8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0004E0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_IsFalling_ReturnValue) == 0x0004E8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0004F0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_Select_Default) == 0x0004F8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000500, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetDashDirection_ReturnValue_1) == 0x000508, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetDashDirection_ReturnValue_2) == 0x000520, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetDashDirection_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetDashDirection_ReturnValue_3) == 0x000538, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetDashDirection_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000550, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetActorForwardVector_ReturnValue) == 0x000558, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_CreateDelegate_OutputDelegate_5) == 0x000570, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_Dot_VectorVector_ReturnValue) == 0x000580, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x000588, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_FClamp_ReturnValue) == 0x000590, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000598, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_DynamicCast_bSuccess) == 0x0005A8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_Lerp_ReturnValue) == 0x0005B0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_Select_Default_1) == 0x0005B8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetPlayerController_ReturnValue) == 0x0005C0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x0005C8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0005D0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_DynamicCast_AsCM_Dash_Dip) == 0x0005D8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_DynamicCast_AsCM_Dash_Dip' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_DynamicCast_bSuccess_1) == 0x0005E0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_IsValid_ReturnValue_1) == 0x0005E1, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_Event_bWasCancelled) == 0x0005E2, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetDashMontage_ReturnValue) == 0x0005E8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetDashMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0005F0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_IsValid_ReturnValue_2) == 0x0005F8, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000600, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000608, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, CallFunc_K2_CommitAbility_ReturnValue) == 0x0006E0, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated, K2Node_Select_Option_0_ImplicitCast) == 0x0006E4, "Member 'GA_PlayerDash_Updated_C_ExecuteUbergraph_GA_PlayerDash_Updated::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_FindOrbitTarget \ +static_assert(alignof(GA_PlayerDash_Updated_C_FindOrbitTarget) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_FindOrbitTarget"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_FindOrbitTarget) == 0x000050, "Wrong size on GA_PlayerDash_Updated_C_FindOrbitTarget"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, bReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins) == 0x000010, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000020, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_IsSoftOrbitable_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_IsSoftOrbitable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins_1) == 0x000029, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue_1) == 0x000030, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController) == 0x000040, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutPins) == 0x000048, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_1) == 0x000049, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_2) == 0x00004A, "Member 'GA_PlayerDash_Updated_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetOwnerForwardVector \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetOwnerForwardVector) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetOwnerForwardVector"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetOwnerForwardVector) == 0x000018, "Wrong size on GA_PlayerDash_Updated_C_GetOwnerForwardVector"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwnerForwardVector, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetOwnerForwardVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetOwningController \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetOwningController) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetOwningController"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetOwningController) == 0x000028, "Wrong size on GA_PlayerDash_Updated_C_GetOwningController"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwningController, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetOwningController::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwningController, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_GetOwningController::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwningController, K2Node_DynamicCast_AsPawn) == 0x000010, "Member 'GA_PlayerDash_Updated_C_GetOwningController::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwningController, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_PlayerDash_Updated_C_GetOwningController::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwningController, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_GetOwningController::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_IsDashingToRight \ +static_assert(alignof(GA_PlayerDash_Updated_C_IsDashingToRight) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_IsDashingToRight"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_IsDashingToRight) == 0x000050, "Wrong size on GA_PlayerDash_Updated_C_IsDashingToRight"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, CallFunc_GetOwnerRightVector_returnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, CallFunc_GetDashDirection_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, CallFunc_Dot_VectorVector_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, CallFunc_SignOfFloat_ReturnValue) == 0x000040, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsDashingToRight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000048, "Member 'GA_PlayerDash_Updated_C_IsDashingToRight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_IsSoftOrbitable \ +static_assert(alignof(GA_PlayerDash_Updated_C_IsSoftOrbitable) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_IsSoftOrbitable"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_IsSoftOrbitable) == 0x000050, "Wrong size on GA_PlayerDash_Updated_C_IsSoftOrbitable"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, Target) == 0x000000, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GetHorizontalDotProductTo_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GetHorizontalDotProductTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_Square_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000030, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00003C, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_BooleanAND_ReturnValue) == 0x00003D, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000048, "Member 'GA_PlayerDash_Updated_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerDash_Updated_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerDash_Updated_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerDash_Updated_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerDash_Updated_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE \ +static_assert(alignof(GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE) == 0x0000B8, "Wrong size on GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE, EventTag) == 0x000000, "Member 'GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE, EventData) == 0x000008, "Member 'GA_PlayerDash_Updated_C_OnBlendOut_1ECD1B644AB83E4B99B524A42020C6FE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE \ +static_assert(alignof(GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE) == 0x0000B8, "Wrong size on GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE, EventTag) == 0x000000, "Member 'GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE, EventData) == 0x000008, "Member 'GA_PlayerDash_Updated_C_OnCancelled_1ECD1B644AB83E4B99B524A42020C6FE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE \ +static_assert(alignof(GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE) == 0x0000B8, "Wrong size on GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE, EventTag) == 0x000000, "Member 'GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE, EventData) == 0x000008, "Member 'GA_PlayerDash_Updated_C_OnCompleted_1ECD1B644AB83E4B99B524A42020C6FE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE \ +static_assert(alignof(GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE) == 0x0000B8, "Wrong size on GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE, EventTag) == 0x000000, "Member 'GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE, EventData) == 0x000008, "Member 'GA_PlayerDash_Updated_C_OnInterrupted_1ECD1B644AB83E4B99B524A42020C6FE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_Print_Distance_to_Target \ +static_assert(alignof(GA_PlayerDash_Updated_C_Print_Distance_to_Target) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_Print_Distance_to_Target"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_Print_Distance_to_Target) == 0x000078, "Wrong size on GA_PlayerDash_Updated_C_Print_Distance_to_Target"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000020, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_VSize_ReturnValue) == 0x000050, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000058, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_Print_Distance_to_Target, CallFunc_Concat_StrStr_ReturnValue) == 0x000068, "Member 'GA_PlayerDash_Updated_C_Print_Distance_to_Target::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetDashDirection \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetDashDirection) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetDashDirection"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetDashDirection) == 0x0000C8, "Wrong size on GA_PlayerDash_Updated_C_GetDashDirection"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, OwnerPawn) == 0x000018, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::OwnerPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000038, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000050, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue) == 0x000068, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue_1) == 0x000070, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000078, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000079, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000080, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, K2Node_DynamicCast_AsPawn) == 0x000088, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x000098, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashDirection, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000B0, "Member 'GA_PlayerDash_Updated_C_GetDashDirection::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetDashMontage \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetDashMontage) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetDashMontage"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetDashMontage) == 0x000028, "Wrong size on GA_PlayerDash_Updated_C_GetDashMontage"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, CallFunc_GetDirectionEnum_ReturnValue) == 0x000008, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::CallFunc_GetDirectionEnum_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, CallFunc_GetMontage_ReturnValue) == 0x000010, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, CallFunc_Map_Find_Value) == 0x000018, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashMontage, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'GA_PlayerDash_Updated_C_GetDashMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetDashStrength \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetDashStrength) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetDashStrength"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetDashStrength) == 0x000010, "Wrong size on GA_PlayerDash_Updated_C_GetDashStrength"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashStrength, Strength) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetDashStrength::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDashStrength, Duration) == 0x000008, "Member 'GA_PlayerDash_Updated_C_GetDashStrength::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetDirectionEnum \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetDirectionEnum) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetDirectionEnum"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetDirectionEnum) == 0x0000D0, "Wrong size on GA_PlayerDash_Updated_C_GetDirectionEnum"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, Direction) == 0x000001, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, ForwardDot) == 0x000008, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::ForwardDot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, RightDot) == 0x000010, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::RightDot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x000019, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_2) == 0x00001A, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, Temp_bool_Variable) == 0x00001B, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, Temp_bool_Variable_1) == 0x00001C, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, Temp_bool_Variable_2) == 0x00001D, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_GetActorForwardVector_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_3) == 0x000040, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000041, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Abs_ReturnValue) == 0x000048, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Abs_ReturnValue_1) == 0x000050, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000059, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, K2Node_Select_Default) == 0x00005A, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue) == 0x000060, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000078, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue) == 0x000080, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, K2Node_Select_Default_1) == 0x000088, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_GetOwnerRightVector_returnValue) == 0x000090, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, K2Node_Select_Default_2) == 0x0000A8, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue_1) == 0x0000B0, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000C8, "Member 'GA_PlayerDash_Updated_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_GetOwnerRightVector \ +static_assert(alignof(GA_PlayerDash_Updated_C_GetOwnerRightVector) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_GetOwnerRightVector"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_GetOwnerRightVector) == 0x000038, "Wrong size on GA_PlayerDash_Updated_C_GetOwnerRightVector"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwnerRightVector, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_GetOwnerRightVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwnerRightVector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerDash_Updated_C_GetOwnerRightVector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_GetOwnerRightVector, CallFunc_GetActorRightVector_ReturnValue) == 0x000020, "Member 'GA_PlayerDash_Updated_C_GetOwnerRightVector::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerDash_Updated_C_HasMoveInput \ +static_assert(alignof(GA_PlayerDash_Updated_C_HasMoveInput) == 0x000008, "Wrong alignment on GA_PlayerDash_Updated_C_HasMoveInput"); \ +static_assert(sizeof(GA_PlayerDash_Updated_C_HasMoveInput) == 0x000070, "Wrong size on GA_PlayerDash_Updated_C_HasMoveInput"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, ReturnValue) == 0x000000, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, OwnerPawn) == 0x000008, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::OwnerPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000010, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000028, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_VSizeXY_ReturnValue) == 0x000040, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_VSizeXY_ReturnValue_1) == 0x000048, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_VSizeXY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000050, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000051, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000058, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, K2Node_DynamicCast_AsPawn) == 0x000060, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerDash_Updated_C_HasMoveInput, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'GA_PlayerDash_Updated_C_HasMoveInput::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerDash_Updated_C \ +static_assert(alignof(UGA_PlayerDash_Updated_C) == 0x000008, "Wrong alignment on UGA_PlayerDash_Updated_C"); \ +static_assert(sizeof(UGA_PlayerDash_Updated_C) == 0x000758, "Wrong size on UGA_PlayerDash_Updated_C"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerDash_Updated_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, DashDuration) == 0x000670, "Member 'UGA_PlayerDash_Updated_C::DashDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, DashStrength) == 0x000678, "Member 'UGA_PlayerDash_Updated_C::DashStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, OrbitInputDotThreshold) == 0x000680, "Member 'UGA_PlayerDash_Updated_C::OrbitInputDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, OrbitAngle) == 0x000688, "Member 'UGA_PlayerDash_Updated_C::OrbitAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, SoftOrbitDotThreshold) == 0x000690, "Member 'UGA_PlayerDash_Updated_C::SoftOrbitDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, SoftOrbitDistanceThreshold) == 0x000698, "Member 'UGA_PlayerDash_Updated_C::SoftOrbitDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, OrbitTarget) == 0x0006A0, "Member 'UGA_PlayerDash_Updated_C::OrbitTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, Fear_Strength) == 0x0006A8, "Member 'UGA_PlayerDash_Updated_C::Fear_Strength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, Async_Task) == 0x0006B0, "Member 'UGA_PlayerDash_Updated_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, DashConfig) == 0x0006B8, "Member 'UGA_PlayerDash_Updated_C::DashConfig' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, DamageImmune) == 0x0006C0, "Member 'UGA_PlayerDash_Updated_C::DamageImmune' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, EvadeTagsContainer) == 0x0006E0, "Member 'UGA_PlayerDash_Updated_C::EvadeTagsContainer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, CamDipModifier) == 0x000700, "Member 'UGA_PlayerDash_Updated_C::CamDipModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerDash_Updated_C, OmniDashMontages) == 0x000708, "Member 'UGA_PlayerDash_Updated_C::OmniDashMontages' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43 \ +static_assert(alignof(GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43"); \ +static_assert(sizeof(GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43) == 0x000028, "Wrong size on GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43, Data) == 0x000000, "Member 'GA_ComboDash_Short_C_Cancelled_2B637F4445E998E7E1B15D9D8FC3AD43::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_ClampFallingVelocity \ +static_assert(alignof(GA_ComboDash_Short_C_ClampFallingVelocity) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_ClampFallingVelocity"); \ +static_assert(sizeof(GA_ComboDash_Short_C_ClampFallingVelocity) == 0x0000C8, "Wrong size on GA_ComboDash_Short_C_ClampFallingVelocity"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, StopFall) == 0x000000, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::StopFall' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, Temp_bool_Variable) == 0x000001, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_Not_PreBool_ReturnValue) == 0x000002, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_FClamp_ReturnValue) == 0x000010, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_GetVelocity_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_X) == 0x000030, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_Y) == 0x000038, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_Z) == 0x000040, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_MakeVector_ReturnValue) == 0x000048, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_ClampVectorSize_ReturnValue) == 0x000068, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BooleanAND_ReturnValue) == 0x000080, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_X_1) == 0x000088, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_Y_1) == 0x000090, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_BreakVector_Z_1) == 0x000098, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_FMax_ReturnValue) == 0x0000A0, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, K2Node_Select_Default) == 0x0000A8, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ClampFallingVelocity, CallFunc_MakeVector_ReturnValue_1) == 0x0000B0, "Member 'GA_ComboDash_Short_C_ClampFallingVelocity::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_EndTasks \ +static_assert(alignof(GA_ComboDash_Short_C_EndTasks) == 0x000001, "Wrong alignment on GA_ComboDash_Short_C_EndTasks"); \ +static_assert(sizeof(GA_ComboDash_Short_C_EndTasks) == 0x000002, "Wrong size on GA_ComboDash_Short_C_EndTasks"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EndTasks, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_EndTasks::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EndTasks, CallFunc_IsValid_ReturnValue_1) == 0x000001, "Member 'GA_ComboDash_Short_C_EndTasks::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514 \ +static_assert(alignof(GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(sizeof(GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_EventReceived_605A8A104F127AD5B30A98B42E286514::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A \ +static_assert(alignof(GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(sizeof(GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_EventReceived_CBBD0BBD4404208E888E37866166F14A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C \ +static_assert(alignof(GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(sizeof(GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_EventReceived_E8F50C1B44799C0E9E2B02B2F9CC964C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8 \ +static_assert(alignof(GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(sizeof(GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_EventReceived_F15CEADE4E18BA277741BCABBB9E2BC8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short \ +static_assert(alignof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short"); \ +static_assert(sizeof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short) == 0x0029E8, "Wrong size on GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, EntryPoint) == 0x000000, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable) == 0x000020, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable) == 0x000028, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_1) == 0x000030, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate) == 0x000038, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_1) == 0x000048, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_1) == 0x000058, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_2) == 0x00005C, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_WaitingTime) == 0x00006C, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_2) == 0x000070, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000078, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_2) == 0x000081, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_3) == 0x000084, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_19) == 0x000094, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_19) == 0x0000A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_4) == 0x000150, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_18) == 0x000160, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_18) == 0x000168, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_5) == 0x000218, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_17) == 0x000228, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_17) == 0x000230, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_16) == 0x0002F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_16) == 0x0002F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_7) == 0x0003A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_15) == 0x0003B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_15) == 0x0003C0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_8) == 0x000470, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable) == 0x000480, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_1) == 0x000530, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_14) == 0x000538, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_14) == 0x000540, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_9) == 0x0005F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_13) == 0x000600, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_13) == 0x000608, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_10) == 0x0006B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_12) == 0x0006C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_12) == 0x0006D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_11) == 0x000780, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_11) == 0x000790, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_11) == 0x000798, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_12) == 0x000848, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_10) == 0x000858, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_10) == 0x000860, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_13) == 0x000910, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_2) == 0x000920, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_3) == 0x0009D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0009D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_delegate_Variable) == 0x0009F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_object_Variable) == 0x000A00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_object_Variable_1) == 0x000A08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_delegate_Variable_1) == 0x000A10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_14) == 0x000A20, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue) == 0x000A30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_15) == 0x000A38, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_1) == 0x000A48, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000A50, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_16) == 0x000A58, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_2) == 0x000A68, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue_2) == 0x000A70, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_byte_Variable) == 0x000A78, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_3) == 0x000A79, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_4) == 0x000A80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_5) == 0x000A98, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_6) == 0x000AB0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_7) == 0x000AC8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_8) == 0x000AE0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000AF8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_17) == 0x000B00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_18) == 0x000B10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_19) == 0x000B20, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000B30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_20) == 0x000B38, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_4) == 0x000B48, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_21) == 0x000B4C, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_byte_Variable_1) == 0x000B5C, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_9) == 0x000B60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_10) == 0x000B78, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_11) == 0x000B90, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_12) == 0x000BA8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_13) == 0x000BC0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_22) == 0x000BD8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000BE8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000C00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_23) == 0x000C18, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue_3) == 0x000C28, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_24) == 0x000C30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_5) == 0x000C40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_9) == 0x000C44, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_9) == 0x000C50, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_8) == 0x000D00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_8) == 0x000D08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_25) == 0x000DB8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_7) == 0x000DC8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_7) == 0x000DD0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_26) == 0x000E80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_6) == 0x000E90, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_6) == 0x000E98, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_27) == 0x000F48, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_5) == 0x000F58, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_5) == 0x000F60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_28) == 0x001010, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_14) == 0x001020, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_15) == 0x0010D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0010D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_29) == 0x0010E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_6) == 0x0010F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_30) == 0x0010F4, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ActorTimeDelay_ReturnValue) == 0x001108, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_31) == 0x001110, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_31' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_7) == 0x001120, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x001128, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_32) == 0x001130, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_32' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_8) == 0x001140, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_33) == 0x001144, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_33' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_34) == 0x001154, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_34' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x001168, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_3) == 0x001170, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_9) == 0x001171, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_3) == 0x001178, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_4) == 0x001180, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_4) == 0x001188, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_5) == 0x001190, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_5) == 0x001198, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_35) == 0x0011A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_35' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue_4) == 0x0011B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_36) == 0x0011B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_36' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_10) == 0x0011C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_37) == 0x0011CC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_37' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_4) == 0x0011DC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_4) == 0x0011E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_38) == 0x001298, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_38' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_3) == 0x0012A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_3) == 0x0012B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_39) == 0x001360, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_39' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_2) == 0x001370, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_2) == 0x001378, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_40) == 0x001428, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_40' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag_1) == 0x001438, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData_1) == 0x001440, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_41) == 0x0014F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_41' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventTag) == 0x001500, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_EventData) == 0x001508, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_42) == 0x0015B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_42' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_16) == 0x0015C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_17) == 0x001678, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x001680, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_43) == 0x001688, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_43' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_11) == 0x001698, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitRealDelay_ReturnValue_5) == 0x0016A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitRealDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_44) == 0x0016A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_44' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_12) == 0x0016B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_45) == 0x0016BC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_45' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_6) == 0x0016CC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue) == 0x0016D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0016E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_6) == 0x0016F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetActorForwardVector_ReturnValue) == 0x0016F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Dot_VectorVector_ReturnValue) == 0x001710, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x001718, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_FClamp_ReturnValue) == 0x001720, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Lerp_ReturnValue) == 0x001728, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitDelay_ReturnValue) == 0x001730, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x001738, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue) == 0x001750, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_13) == 0x001768, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x001770, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x001778, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_14) == 0x001780, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsTowardsTarget_ReturnValue) == 0x001781, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsTowardsTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_15) == 0x001782, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetPlayerController_ReturnValue) == 0x001788, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x001790, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetControlRotation_ReturnValue) == 0x001798, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0017B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0017C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0017D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0017E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x001800, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x001808, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RInterpTo_ReturnValue) == 0x001820, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x001838, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Roll) == 0x001840, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Pitch) == 0x001844, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Yaw) == 0x001848, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface) == 0x001850, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess) == 0x001860, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x001868, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x001888, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RInterpTo_ReturnValue_1) == 0x001890, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Roll_1) == 0x0018A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Pitch_1) == 0x0018AC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakRotator_Yaw_1) == 0x0018B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeRotator_ReturnValue) == 0x0018B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0018D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsFalling_ReturnValue) == 0x0018D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x0018E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0018E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x001900, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X) == 0x001918, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y) == 0x001920, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z) == 0x001928, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_1) == 0x001930, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_1) == 0x001938, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_1) == 0x001940, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue) == 0x001948, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_1) == 0x001960, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetPlayerController_ReturnValue_1) == 0x001978, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x001980, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetControlRotation_ReturnValue_1) == 0x001998, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x0019B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_16) == 0x0019C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0019D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0019D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x0019E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0019E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0019F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_1) == 0x001A00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_17) == 0x001A01, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x001A08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x001A10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_2) == 0x001A20, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_1) == 0x001A28, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_2) == 0x001A40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x001A58, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_18) == 0x001A60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x001A68, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_3) == 0x001A70, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001A88, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x001AA0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x001AA8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x001AB0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAnimInstance_ReturnValue) == 0x001AB8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsAnim_BP_Player) == 0x001AC0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsAnim_BP_Player' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_3) == 0x001AC8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_real_Variable_7) == 0x001ACC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_real_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default) == 0x001AD0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_46) == 0x001AD8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_46' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_Cooldown) == 0x001AE8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_Cooldown' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x001AF0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_1) == 0x001AF8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_FInterpTo_ReturnValue) == 0x001B00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x001B08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x001B10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x001B30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x001B38, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x001B40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_4) == 0x001B50, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_WaitingTime_1) == 0x001B54, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x001B58, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x001B60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x001B80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x001B88, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x001B90, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x001BB0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x001BB8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_8) == 0x001BC0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2) == 0x001BC8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_5) == 0x001BD8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsFalling_ReturnValue_1) == 0x001BD9, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_47) == 0x001BDC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_47' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_9) == 0x001BF0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x001BF8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_6) == 0x001C08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x001C10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x001C30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x001C31, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_10) == 0x001C38, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x001C40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x001C60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashMontage_ReturnValue) == 0x001C68, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashMontage_ReturnValue_1) == 0x001C70, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2) == 0x001C78, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_3) == 0x001C80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_19) == 0x001C88, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_20) == 0x001C89, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6) == 0x001C90, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue_3) == 0x001CB0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_7) == 0x001CB8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue_4) == 0x001CD8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_11) == 0x001CE0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetLastInputVector_ReturnValue) == 0x001CE8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_12) == 0x001D00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAnimInstance_ReturnValue_1) == 0x001D08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAnimInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsAnim_BP_Player_1) == 0x001D10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsAnim_BP_Player_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_7) == 0x001D18, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Not_PreBool_ReturnValue) == 0x001D19, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BooleanAND_ReturnValue) == 0x001D1A, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetPlayerController_ReturnValue_2) == 0x001D20, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_4) == 0x001D28, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_13) == 0x001D40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_VectorVector_ReturnValue) == 0x001D48, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x001D60, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_8) == 0x001D70, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_14) == 0x001D78, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x001D80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x001D88, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_9) == 0x001D98, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x001DA0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x001DA8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeArray_Array) == 0x001DB0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x001DC0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_CreateTimeDilation_Handle) == 0x001DE8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_21) == 0x001DEC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDirectionEnum_ReturnValue) == 0x001DED, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDirectionEnum_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_15) == 0x001DF0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_2) == 0x001DF8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetVelocity_ReturnValue) == 0x001E10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x001E28, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_2) == 0x001F00, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_2) == 0x001F08, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_2) == 0x001F10, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_2) == 0x001F18, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_VSize_ReturnValue) == 0x001F30, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_22) == 0x001F38, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitTargetData_ReturnValue) == 0x001F40, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_18) == 0x001F48, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetActorsFromTargetData_ReturnValue) == 0x001F70, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetActorsFromTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_23) == 0x001F80, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Array_Get_Item) == 0x001F88, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BeginSpawningActor_SpawnedActor) == 0x001F90, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BeginSpawningActor_SpawnedActor' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BeginSpawningActor_ReturnValue) == 0x001F98, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BeginSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_24) == 0x001F99, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_CommitAbility_ReturnValue) == 0x001F9A, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_8) == 0x001FA0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x001FC0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x001FC8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x001FD0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x001FD8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasTag_ReturnValue) == 0x001FD9, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x001FDA, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001FE0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeArray_Array_1) == 0x001FE8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDialogueInfo_ReturnValue) == 0x001FF8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeArray_Array_2) == 0x002000, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_1) == 0x002010, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_2) == 0x002018, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_25) == 0x002020, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_26) == 0x002021, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_3) == 0x002028, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetPlayerController_ReturnValue_3) == 0x002030, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_AddNewCameraModifier_ReturnValue) == 0x002038, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_27) == 0x002040, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsCM_Dash_Dip) == 0x002048, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsCM_Dash_Dip' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_10) == 0x002050, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_48) == 0x002054, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_48' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x002068, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x002070, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x002078, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x002090, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_VSize_ReturnValue_1) == 0x0020A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0020B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x0020B1, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TryActivateAbilityByClass_ReturnValue_2) == 0x0020B2, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TryActivateAbilityByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_16) == 0x0020B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0020C0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0020D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Dot_VectorVector_ReturnValue_2) == 0x0020F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Dot_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x0020F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x002100, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_28) == 0x002101, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDirectionEnum_ReturnValue_1) == 0x002102, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDirectionEnum_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_17) == 0x002108, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_3) == 0x002110, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x002128, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_Character) == 0x002200, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_PrevMovementMode) == 0x002208, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_PreviousCustomMode) == 0x002209, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_PreviousCustomMode' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsWalking_ReturnValue) == 0x00220A, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_5) == 0x002210, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x002228, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x002240, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x002248, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_6) == 0x002260, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_VectorVector_ReturnValue_2) == 0x002278, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x002290, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0022A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7) == 0x0022B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x0022B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeArray_Array_3) == 0x0022D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0022E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_MakeStruct_WrestlerTimeDilationConfig_1) == 0x0022F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_MakeStruct_WrestlerTimeDilationConfig_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_CreateTimeDilation_Handle_1) == 0x002320, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_CreateTimeDilation_Handle_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_Data) == 0x002328, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_Data' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsCounterdash_Counter) == 0x002350, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsCounterdash_Counter' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8) == 0x002358, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_49) == 0x002360, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_49' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3) == 0x002370, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_DynamicCast_bSuccess_11) == 0x002380, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9) == 0x002388, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10) == 0x002390, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x002398, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_9) == 0x0023A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_AddLooseGameplayTags_ReturnValue_3) == 0x0023C0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_AddLooseGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_29) == 0x0023C1, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_10) == 0x0023C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RemoveLooseGameplayTags_ReturnValue_5) == 0x0023E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RemoveLooseGameplayTags_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11) == 0x0023F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_Data_1) == 0x0023F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_Data_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x002420, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x002438, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_50) == 0x002440, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_50' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WrestlerAimAssist_ReturnValue) == 0x002450, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WrestlerAimAssist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_7) == 0x002458, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_30) == 0x002459, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_31) == 0x00245A, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12) == 0x002460, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeGameplayCueParameters_ReturnValue_2) == 0x002468, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeGameplayCueParameters_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x002540, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x002558, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_bool_Variable_8) == 0x002560, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x002568, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x002578, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x00257C, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x002588, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_4) == 0x002590, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x002598, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0025A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x0025B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TaskWaitDelay_ReturnValue) == 0x0025C0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_32) == 0x0025C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x0025D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0025D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x0025E8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x0025F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x002600, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_13) == 0x002608, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x002610, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x002618, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, Temp_struct_Variable_19) == 0x002630, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::Temp_struct_Variable_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetLastInputVector_ReturnValue_1) == 0x002648, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetLastInputVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x002660, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Normal_ReturnValue) == 0x002668, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x002680, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x002690, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Dot_VectorVector_ReturnValue_3) == 0x002698, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Dot_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2) == 0x0026A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_5) == 0x0026A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BooleanAND_ReturnValue_1) == 0x0026B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x0026B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BooleanAND_ReturnValue_2) == 0x0026D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x0026D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x0026F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Select_Default_6) == 0x002708, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Select_Default_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_3) == 0x002710, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_VectorVector_ReturnValue_4) == 0x002728, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_DestinationReached) == 0x002740, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_TimedOut) == 0x002741, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CustomEvent_FinalTargetLocation) == 0x002748, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_18) == 0x002760, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_19) == 0x002768, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetVelocity_ReturnValue_1) == 0x002770, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_3) == 0x002788, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_3) == 0x002790, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_3) == 0x002798, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsFalling_ReturnValue_2) == 0x0027A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsFalling_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0027A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0027B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_4) == 0x0027B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0027D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_7) == 0x0027D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_4) == 0x0027F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_8) == 0x0027F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_5) == 0x002810, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_33) == 0x002818, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_34) == 0x002819, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_20) == 0x002820, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_FClamp_ReturnValue_1) == 0x002828, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetVelocity_ReturnValue_2) == 0x002830, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetVelocity_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_4) == 0x002848, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_4) == 0x002850, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_4) == 0x002858, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_FMax_ReturnValue) == 0x002860, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_5) == 0x002868, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ClampVectorSize_ReturnValue) == 0x002880, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_5) == 0x002898, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_5) == 0x0028A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_5) == 0x0028A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_6) == 0x0028B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_CreateDelegate_OutputDelegate_51) == 0x0028C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_CreateDelegate_OutputDelegate_51' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_VLerp_ReturnValue) == 0x0028D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_21) == 0x0028F0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetAvatarActorAsCharacter_ReturnValue_22) == 0x0028F8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetAvatarActorAsCharacter_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetVelocity_ReturnValue_3) == 0x002900, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetVelocity_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_X_6) == 0x002918, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_X_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Y_6) == 0x002920, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Y_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_BreakVector_Z_6) == 0x002928, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_BreakVector_Z_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsFalling_ReturnValue_3) == 0x002930, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsFalling_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x002938, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x002940, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_MakeVector_ReturnValue_7) == 0x002948, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_MakeVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, K2Node_Event_bWasCancelled) == 0x002960, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_9) == 0x002968, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_6) == 0x002980, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_GetDashDirection_ReturnValue_10) == 0x002988, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_GetDashDirection_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_ReturnValue_7) == 0x0029A0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_35) == 0x0029A8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_35' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_IsValid_ReturnValue_36) == 0x0029A9, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_IsValid_ReturnValue_36' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_WaitDelay_Time_ImplicitCast) == 0x0029AC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0029B0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RInterpTo_DeltaTime_ImplicitCast_1) == 0x0029B4, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_RInterpTo_InterpSpeed_ImplicitCast) == 0x0029B8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_RInterpTo_InterpSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x0029BC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_1) == 0x0029C0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0029C8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_2) == 0x0029D0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x0029D4, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_TaskWaitDelay_Time_ImplicitCast) == 0x0029D8, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_TaskWaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_3) == 0x0029DC, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_4) == 0x0029E0, "Member 'GA_ComboDash_Short_C_ExecuteUbergraph_GA_ComboDash_Short::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_FindOrbitTarget \ +static_assert(alignof(GA_ComboDash_Short_C_FindOrbitTarget) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_FindOrbitTarget"); \ +static_assert(sizeof(GA_ComboDash_Short_C_FindOrbitTarget) == 0x000050, "Wrong size on GA_ComboDash_Short_C_FindOrbitTarget"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, bReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::bReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins) == 0x000010, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000020, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_IsSoftOrbitable_ReturnValue) == 0x000028, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_IsSoftOrbitable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_TargetActor_OutPins_1) == 0x000029, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_TargetActor_OutPins_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_TargetActor_ReturnValue_1) == 0x000030, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_TargetActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController) == 0x000040, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutEnemyController' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, CallFunc_K2_GetEnemyControllerFromActor_OutPins) == 0x000048, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::CallFunc_K2_GetEnemyControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_1) == 0x000049, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FindOrbitTarget, K2Node_SwitchEnum_CmpSuccess_2) == 0x00004A, "Member 'GA_ComboDash_Short_C_FindOrbitTarget::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_FinishDash \ +static_assert(alignof(GA_ComboDash_Short_C_FinishDash) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_FinishDash"); \ +static_assert(sizeof(GA_ComboDash_Short_C_FinishDash) == 0x000008, "Wrong size on GA_ComboDash_Short_C_FinishDash"); \ +static_assert(offsetof(GA_ComboDash_Short_C_FinishDash, Cooldown) == 0x000000, "Member 'GA_ComboDash_Short_C_FinishDash::Cooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetOwnerForwardVector \ +static_assert(alignof(GA_ComboDash_Short_C_GetOwnerForwardVector) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetOwnerForwardVector"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetOwnerForwardVector) == 0x000018, "Wrong size on GA_ComboDash_Short_C_GetOwnerForwardVector"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwnerForwardVector, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetOwnerForwardVector::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetOwningController \ +static_assert(alignof(GA_ComboDash_Short_C_GetOwningController) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetOwningController"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetOwningController) == 0x000028, "Wrong size on GA_ComboDash_Short_C_GetOwningController"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwningController, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetOwningController::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwningController, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_GetOwningController::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwningController, K2Node_DynamicCast_AsPawn) == 0x000010, "Member 'GA_ComboDash_Short_C_GetOwningController::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwningController, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_ComboDash_Short_C_GetOwningController::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwningController, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_GetOwningController::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_IsCounterdash \ +static_assert(alignof(GA_ComboDash_Short_C_IsCounterdash) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_IsCounterdash"); \ +static_assert(sizeof(GA_ComboDash_Short_C_IsCounterdash) == 0x000398, "Wrong size on GA_ComboDash_Short_C_IsCounterdash"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, Counter) == 0x000000, "Member 'GA_ComboDash_Short_C_IsCounterdash::Counter' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, BlockedTags) == 0x000008, "Member 'GA_ComboDash_Short_C_IsCounterdash::BlockedTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000040, "Member 'GA_ComboDash_Short_C_IsCounterdash::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'GA_ComboDash_Short_C_IsCounterdash::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000058, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000060, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000068, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetLastInputVector_ReturnValue) == 0x000070, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, K2Node_MakeArray_Array) == 0x000088, "Member 'GA_ComboDash_Short_C_IsCounterdash::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Normal_ReturnValue) == 0x000098, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, Temp_bool_Variable) == 0x0000B0, "Member 'GA_ComboDash_Short_C_IsCounterdash::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000B8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetCameraRotation_ReturnValue) == 0x0000C0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetCameraLocation_ReturnValue) == 0x0000D8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetForwardVector_ReturnValue) == 0x0000F0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000108, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Add_VectorVector_ReturnValue) == 0x000120, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, K2Node_MakeArray_Array_1) == 0x000138, "Member 'GA_ComboDash_Short_C_IsCounterdash::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000148, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000150, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000238, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000240, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_bBlockingHit) == 0x000258, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_bInitialOverlap) == 0x000259, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_Time) == 0x00025C, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_Distance) == 0x000260, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_Location) == 0x000268, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_ImpactPoint) == 0x000280, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_Normal) == 0x000298, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_ImpactNormal) == 0x0002B0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_PhysMat) == 0x0002C8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_HitActor) == 0x0002D0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_HitComponent) == 0x0002D8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_HitBoneName) == 0x0002E0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_BoneName) == 0x0002E8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_HitItem) == 0x0002F0, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_ElementIndex) == 0x0002F4, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_FaceIndex) == 0x0002F8, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_TraceStart) == 0x000300, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BreakHitResult_TraceEnd) == 0x000318, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetActorForwardVector_ReturnValue) == 0x000330, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Dot_VectorVector_ReturnValue) == 0x000348, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000350, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000368, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000370, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000388, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x000390, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsCounterdash, CallFunc_BooleanAND_ReturnValue) == 0x000391, "Member 'GA_ComboDash_Short_C_IsCounterdash::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_IsDashingToRight \ +static_assert(alignof(GA_ComboDash_Short_C_IsDashingToRight) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_IsDashingToRight"); \ +static_assert(sizeof(GA_ComboDash_Short_C_IsDashingToRight) == 0x000050, "Wrong size on GA_ComboDash_Short_C_IsDashingToRight"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_IsDashingToRight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, CallFunc_GetOwnerRightVector_returnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_IsDashingToRight::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, CallFunc_GetDashDirection_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_IsDashingToRight::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, CallFunc_Dot_VectorVector_ReturnValue) == 0x000038, "Member 'GA_ComboDash_Short_C_IsDashingToRight::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, CallFunc_SignOfFloat_ReturnValue) == 0x000040, "Member 'GA_ComboDash_Short_C_IsDashingToRight::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsDashingToRight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000048, "Member 'GA_ComboDash_Short_C_IsDashingToRight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_IsSoftOrbitable \ +static_assert(alignof(GA_ComboDash_Short_C_IsSoftOrbitable) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_IsSoftOrbitable"); \ +static_assert(sizeof(GA_ComboDash_Short_C_IsSoftOrbitable) == 0x000050, "Wrong size on GA_ComboDash_Short_C_IsSoftOrbitable"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, Target) == 0x000000, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GetHorizontalDotProductTo_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GetHorizontalDotProductTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_Square_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000030, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000038, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00003C, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_BooleanAND_ReturnValue) == 0x00003D, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x000040, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsSoftOrbitable, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000048, "Member 'GA_ComboDash_Short_C_IsSoftOrbitable::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_IsTowardsTarget \ +static_assert(alignof(GA_ComboDash_Short_C_IsTowardsTarget) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_IsTowardsTarget"); \ +static_assert(sizeof(GA_ComboDash_Short_C_IsTowardsTarget) == 0x0000F0, "Wrong size on GA_ComboDash_Short_C_IsTowardsTarget"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, Towards) == 0x000001, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::Towards' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_GetComponentByClass_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_IsFalling_ReturnValue) == 0x000010, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_X) == 0x000038, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_Y) == 0x000040, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_Z) == 0x000048, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000050, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_MakeVector_ReturnValue) == 0x000068, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_X_1) == 0x000080, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_Y_1) == 0x000088, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_BreakVector_Z_1) == 0x000090, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_GetDashDirection_ReturnValue) == 0x000098, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_MakeVector_ReturnValue_1) == 0x0000B0, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000C8, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000E0, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_IsTowardsTarget, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_ComboDash_Short_C_IsTowardsTarget::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_K2_OnEndAbility \ +static_assert(alignof(GA_ComboDash_Short_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_ComboDash_Short_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_ComboDash_Short_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_ComboDash_Short_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_ComboDash_Short_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_MoveModeChanged \ +static_assert(alignof(GA_ComboDash_Short_C_MoveModeChanged) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_MoveModeChanged"); \ +static_assert(sizeof(GA_ComboDash_Short_C_MoveModeChanged) == 0x000010, "Wrong size on GA_ComboDash_Short_C_MoveModeChanged"); \ +static_assert(offsetof(GA_ComboDash_Short_C_MoveModeChanged, Character) == 0x000000, "Member 'GA_ComboDash_Short_C_MoveModeChanged::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_MoveModeChanged, PrevMovementMode) == 0x000008, "Member 'GA_ComboDash_Short_C_MoveModeChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_MoveModeChanged, PreviousCustomMode) == 0x000009, "Member 'GA_ComboDash_Short_C_MoveModeChanged::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514 \ +static_assert(alignof(GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnBlendOut_605A8A104F127AD5B30A98B42E286514::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A \ +static_assert(alignof(GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnBlendOut_CBBD0BBD4404208E888E37866166F14A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C \ +static_assert(alignof(GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnBlendOut_E8F50C1B44799C0E9E2B02B2F9CC964C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8 \ +static_assert(alignof(GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnBlendOut_F15CEADE4E18BA277741BCABBB9E2BC8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514 \ +static_assert(alignof(GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCancelled_605A8A104F127AD5B30A98B42E286514::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A \ +static_assert(alignof(GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCancelled_CBBD0BBD4404208E888E37866166F14A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C \ +static_assert(alignof(GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCancelled_E8F50C1B44799C0E9E2B02B2F9CC964C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8 \ +static_assert(alignof(GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCancelled_F15CEADE4E18BA277741BCABBB9E2BC8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514 \ +static_assert(alignof(GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCompleted_605A8A104F127AD5B30A98B42E286514::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A \ +static_assert(alignof(GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCompleted_CBBD0BBD4404208E888E37866166F14A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C \ +static_assert(alignof(GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCompleted_E8F50C1B44799C0E9E2B02B2F9CC964C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8 \ +static_assert(alignof(GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnCompleted_F15CEADE4E18BA277741BCABBB9E2BC8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5 \ +static_assert(alignof(GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5) == 0x000004, "Wrong alignment on GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5) == 0x000004, "Wrong size on GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5, WaitingTime) == 0x000000, "Member 'GA_ComboDash_Short_C_OnControlCueProcess_50E1A69C465591520A5236AE53FB86C5::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229 \ +static_assert(alignof(GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229) == 0x000004, "Wrong alignment on GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229) == 0x000004, "Wrong size on GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229, WaitingTime) == 0x000000, "Member 'GA_ComboDash_Short_C_OnControlCueProcess_F16DF69C48F9930EE84E148E6A03D229::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB \ +static_assert(alignof(GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB) == 0x000020, "Wrong size on GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB, DestinationReached) == 0x000000, "Member 'GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB, TimedOut) == 0x000001, "Member 'GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB, FinalTargetLocation) == 0x000008, "Member 'GA_ComboDash_Short_C_OnFinished_B708D89646714FFAEC58CEA2E8A919BB::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514 \ +static_assert(alignof(GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnInterrupted_605A8A104F127AD5B30A98B42E286514::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A \ +static_assert(alignof(GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnInterrupted_CBBD0BBD4404208E888E37866166F14A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C \ +static_assert(alignof(GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnInterrupted_E8F50C1B44799C0E9E2B02B2F9CC964C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8 \ +static_assert(alignof(GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(sizeof(GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8) == 0x0000B8, "Wrong size on GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8, EventTag) == 0x000000, "Member 'GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8, EventData) == 0x000008, "Member 'GA_ComboDash_Short_C_OnInterrupted_F15CEADE4E18BA277741BCABBB9E2BC8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_Print_Distance_to_Target \ +static_assert(alignof(GA_ComboDash_Short_C_Print_Distance_to_Target) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_Print_Distance_to_Target"); \ +static_assert(sizeof(GA_ComboDash_Short_C_Print_Distance_to_Target) == 0x000078, "Wrong size on GA_ComboDash_Short_C_Print_Distance_to_Target"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000020, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000038, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_VSize_ReturnValue) == 0x000050, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000058, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_Print_Distance_to_Target, CallFunc_Concat_StrStr_ReturnValue) == 0x000068, "Member 'GA_ComboDash_Short_C_Print_Distance_to_Target::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43 \ +static_assert(alignof(GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43"); \ +static_assert(sizeof(GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43) == 0x000028, "Wrong size on GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43"); \ +static_assert(offsetof(GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43, Data) == 0x000000, "Member 'GA_ComboDash_Short_C_ValidData_2B637F4445E998E7E1B15D9D8FC3AD43::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetDashDirection \ +static_assert(alignof(GA_ComboDash_Short_C_GetDashDirection) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetDashDirection"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetDashDirection) == 0x000100, "Wrong size on GA_ComboDash_Short_C_GetDashDirection"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetDashDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, OwnerPawn) == 0x000018, "Member 'GA_ComboDash_Short_C_GetDashDirection::OwnerPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000038, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000050, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Normal_ReturnValue) == 0x000068, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000080, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue) == 0x000098, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x0000A8, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Normal_ReturnValue_1) == 0x0000C0, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_VSizeXY_ReturnValue_1) == 0x0000D8, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_VSizeXY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000E0, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000E8, "Member 'GA_ComboDash_Short_C_GetDashDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, K2Node_DynamicCast_AsPawn) == 0x0000F0, "Member 'GA_ComboDash_Short_C_GetDashDirection::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashDirection, K2Node_DynamicCast_bSuccess) == 0x0000F8, "Member 'GA_ComboDash_Short_C_GetDashDirection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetDashMontage \ +static_assert(alignof(GA_ComboDash_Short_C_GetDashMontage) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetDashMontage"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetDashMontage) == 0x000028, "Wrong size on GA_ComboDash_Short_C_GetDashMontage"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetDashMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, CallFunc_GetDirectionEnum_ReturnValue) == 0x000008, "Member 'GA_ComboDash_Short_C_GetDashMontage::CallFunc_GetDirectionEnum_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, CallFunc_GetMontage_ReturnValue) == 0x000010, "Member 'GA_ComboDash_Short_C_GetDashMontage::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, CallFunc_Map_Find_Value) == 0x000018, "Member 'GA_ComboDash_Short_C_GetDashMontage::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, CallFunc_Map_Find_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_GetDashMontage::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashMontage, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'GA_ComboDash_Short_C_GetDashMontage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetDashStrength \ +static_assert(alignof(GA_ComboDash_Short_C_GetDashStrength) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetDashStrength"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetDashStrength) == 0x000010, "Wrong size on GA_ComboDash_Short_C_GetDashStrength"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashStrength, Strength) == 0x000000, "Member 'GA_ComboDash_Short_C_GetDashStrength::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDashStrength, Duration) == 0x000008, "Member 'GA_ComboDash_Short_C_GetDashStrength::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetDirectionEnum \ +static_assert(alignof(GA_ComboDash_Short_C_GetDirectionEnum) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetDirectionEnum"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetDirectionEnum) == 0x0000D0, "Wrong size on GA_ComboDash_Short_C_GetDirectionEnum"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, Direction) == 0x000001, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, ForwardDot) == 0x000008, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::ForwardDot' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, RightDot) == 0x000010, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::RightDot' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x000019, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_2) == 0x00001A, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, Temp_bool_Variable) == 0x00001B, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, Temp_bool_Variable_1) == 0x00001C, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, Temp_bool_Variable_2) == 0x00001D, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_GetActorForwardVector_ReturnValue) == 0x000028, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_MakeLiteralByte_ReturnValue_3) == 0x000040, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_MakeLiteralByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000041, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Abs_ReturnValue) == 0x000048, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Abs_ReturnValue_1) == 0x000050, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000059, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, K2Node_Select_Default) == 0x00005A, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue) == 0x000060, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000078, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue) == 0x000080, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, K2Node_Select_Default_1) == 0x000088, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_GetOwnerRightVector_returnValue) == 0x000090, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_GetOwnerRightVector_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, K2Node_Select_Default_2) == 0x0000A8, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_GetDashDirection_ReturnValue_1) == 0x0000B0, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_GetDashDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetDirectionEnum, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000C8, "Member 'GA_ComboDash_Short_C_GetDirectionEnum::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_GetOwnerRightVector \ +static_assert(alignof(GA_ComboDash_Short_C_GetOwnerRightVector) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_GetOwnerRightVector"); \ +static_assert(sizeof(GA_ComboDash_Short_C_GetOwnerRightVector) == 0x000038, "Wrong size on GA_ComboDash_Short_C_GetOwnerRightVector"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwnerRightVector, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_GetOwnerRightVector::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwnerRightVector, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_ComboDash_Short_C_GetOwnerRightVector::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_GetOwnerRightVector, CallFunc_GetActorRightVector_ReturnValue) == 0x000020, "Member 'GA_ComboDash_Short_C_GetOwnerRightVector::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_HasMoveInput \ +static_assert(alignof(GA_ComboDash_Short_C_HasMoveInput) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_HasMoveInput"); \ +static_assert(sizeof(GA_ComboDash_Short_C_HasMoveInput) == 0x000070, "Wrong size on GA_ComboDash_Short_C_HasMoveInput"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, ReturnValue) == 0x000000, "Member 'GA_ComboDash_Short_C_HasMoveInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, OwnerPawn) == 0x000008, "Member 'GA_ComboDash_Short_C_HasMoveInput::OwnerPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_GetPendingMovementInputVector_ReturnValue) == 0x000010, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_GetPendingMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_GetLastMovementInputVector_ReturnValue) == 0x000028, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_GetLastMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_VSizeXY_ReturnValue) == 0x000040, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_VSizeXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_VSizeXY_ReturnValue_1) == 0x000048, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_VSizeXY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000050, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000051, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000058, "Member 'GA_ComboDash_Short_C_HasMoveInput::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, K2Node_DynamicCast_AsPawn) == 0x000060, "Member 'GA_ComboDash_Short_C_HasMoveInput::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_HasMoveInput, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'GA_ComboDash_Short_C_HasMoveInput::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_ComboDash_Short_C_K2_CanActivateAbility \ +static_assert(alignof(GA_ComboDash_Short_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_ComboDash_Short_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_ComboDash_Short_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_ComboDash_Short_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_ComboDash_Short_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_ComboDash_Short_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_ComboDash_Short_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_ComboDash_Short_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_ComboDash_Short_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000071, "Member 'GA_ComboDash_Short_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_ComboDash_Short_C \ +static_assert(alignof(UGA_ComboDash_Short_C) == 0x000008, "Wrong alignment on UGA_ComboDash_Short_C"); \ +static_assert(sizeof(UGA_ComboDash_Short_C) == 0x0007F8, "Wrong size on UGA_ComboDash_Short_C"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, UberGraphFrame) == 0x000668, "Member 'UGA_ComboDash_Short_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashDuration) == 0x000670, "Member 'UGA_ComboDash_Short_C::DashDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashStrength) == 0x000678, "Member 'UGA_ComboDash_Short_C::DashStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, OrbitInputDotThreshold) == 0x000680, "Member 'UGA_ComboDash_Short_C::OrbitInputDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, OrbitAngle) == 0x000688, "Member 'UGA_ComboDash_Short_C::OrbitAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, SoftOrbitDotThreshold) == 0x000690, "Member 'UGA_ComboDash_Short_C::SoftOrbitDotThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, SoftOrbitDistanceThreshold) == 0x000698, "Member 'UGA_ComboDash_Short_C::SoftOrbitDistanceThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, OrbitTarget) == 0x0006A0, "Member 'UGA_ComboDash_Short_C::OrbitTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Fear_Strength) == 0x0006A8, "Member 'UGA_ComboDash_Short_C::Fear_Strength' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Async_Task) == 0x0006B0, "Member 'UGA_ComboDash_Short_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashConfig) == 0x0006B8, "Member 'UGA_ComboDash_Short_C::DashConfig' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DamageImmune) == 0x0006C0, "Member 'UGA_ComboDash_Short_C::DamageImmune' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, EvadeTagsContainer) == 0x0006E0, "Member 'UGA_ComboDash_Short_C::EvadeTagsContainer' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, CamDipModifier) == 0x000700, "Member 'UGA_ComboDash_Short_C::CamDipModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, OmniDashMontages) == 0x000708, "Member 'UGA_ComboDash_Short_C::OmniDashMontages' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Counter_Duration) == 0x000758, "Member 'UGA_ComboDash_Short_C::Counter_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, TrackingSpeed) == 0x000760, "Member 'UGA_ComboDash_Short_C::TrackingSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, InputReleased) == 0x000768, "Member 'UGA_ComboDash_Short_C::InputReleased' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Dash_Force) == 0x000770, "Member 'UGA_ComboDash_Short_C::Dash_Force' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Dipping) == 0x000778, "Member 'UGA_ComboDash_Short_C::Dipping' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DipTarget) == 0x000780, "Member 'UGA_ComboDash_Short_C::DipTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, JumpHit) == 0x000788, "Member 'UGA_ComboDash_Short_C::JumpHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Tracking) == 0x000789, "Member 'UGA_ComboDash_Short_C::Tracking' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashJumpBoost) == 0x000790, "Member 'UGA_ComboDash_Short_C::DashJumpBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashJumpLift) == 0x000798, "Member 'UGA_ComboDash_Short_C::DashJumpLift' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Task_movetoEnemy) == 0x0007A0, "Member 'UGA_ComboDash_Short_C::Task_movetoEnemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Task_movetoLocation) == 0x0007A8, "Member 'UGA_ComboDash_Short_C::Task_movetoLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, DashDirection) == 0x0007B0, "Member 'UGA_ComboDash_Short_C::DashDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, SlomoDilationHandle) == 0x0007C8, "Member 'UGA_ComboDash_Short_C::SlomoDilationHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, InitialSpeed) == 0x0007D0, "Member 'UGA_ComboDash_Short_C::InitialSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, AirBlocked) == 0x0007D8, "Member 'UGA_ComboDash_Short_C::AirBlocked' has a wrong offset!"); \ +static_assert(offsetof(UGA_ComboDash_Short_C, Counterspot) == 0x0007E0, "Member 'UGA_ComboDash_Short_C::Counterspot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_BrutalityMultiplier \ +static_assert(alignof(GA_PlayerAttack_base_C_BrutalityMultiplier) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_BrutalityMultiplier"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_BrutalityMultiplier) == 0x000068, "Wrong size on GA_PlayerAttack_base_C_BrutalityMultiplier"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, Target) == 0x000000, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::Target' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, Multi) == 0x000008, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::Multi' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, Temp_bool_Variable) == 0x000010, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000018, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000029, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000030, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000038, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000048, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000050, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_BrutalityMultiplier, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000060, "Member 'GA_PlayerAttack_base_C_BrutalityMultiplier::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base \ +static_assert(alignof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base) == 0x0013B0, "Wrong size on GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, EntryPoint) == 0x000000, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000004, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000018, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000028, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000038, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue) == 0x000048, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable) == 0x000050, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue) == 0x000051, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_1) == 0x000052, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable) == 0x000058, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_2) == 0x000060, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_3) == 0x000061, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_4) == 0x000062, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_5) == 0x000063, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000064, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000078, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000080, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_1) == 0x000090, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_WaitingTime_3) == 0x000094, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_WaitingTime_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable_1) == 0x000098, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x0000A0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_2) == 0x0000A8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000AC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_WaitingTime_2) == 0x0000BC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_WaitingTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable_2) == 0x0000C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x0000C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_3) == 0x0000D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000D4, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_WaitingTime_1) == 0x0000E4, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable_3) == 0x0000E8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2) == 0x0000F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_4) == 0x0000F8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000100, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_6) == 0x000118, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_7) == 0x000119, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable_4) == 0x000120, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_8) == 0x000128, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_8) == 0x00012C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_9) == 0x00013C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_WaitingTime) == 0x00014C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_10) == 0x000150, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_real_Variable_5) == 0x000160, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_3) == 0x000168, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_5) == 0x000170, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_IsEmpty_ReturnValue) == 0x000171, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_SpawnObject_ReturnValue) == 0x000178, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000180, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000198, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess) == 0x0001A8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_11) == 0x0001AC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0001BC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x0001C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_1) == 0x0001D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0001D1, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x0001D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_2) == 0x0001E8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x0001F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_3) == 0x000200, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4) == 0x000208, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_4) == 0x000218, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000219, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5) == 0x000220, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_5) == 0x000230, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BrutalityMultiplier_Multi) == 0x000238, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BrutalityMultiplier_Multi' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000240, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetActorForwardVector_ReturnValue) == 0x000258, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_6) == 0x000270, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_2) == 0x000278, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x000280, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_7) == 0x000288, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_8) == 0x000289, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_12) == 0x00028C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_13) == 0x00029C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_14) == 0x0002AC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_15) == 0x0002BC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_9) == 0x0002CC, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_3) == 0x0002D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0002D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_9) == 0x0002F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Is_Lunge_Targeted_Targeted) == 0x0002F1, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Is_Lunge_Targeted_Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_16) == 0x0002F4, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Is_Lunge_Targeted_Targeted_1) == 0x000304, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Is_Lunge_Targeted_Targeted_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000308, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x000310, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000318, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_6) == 0x000328, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Event_bWasCancelled) == 0x000329, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_4) == 0x000330, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_10) == 0x000338, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000340, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000348, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_7) == 0x000358, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_5) == 0x000360, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_11) == 0x000368, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000370, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Event_Payload) == 0x000378, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Event_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_IsEmpty_ReturnValue_2) == 0x000428, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_IsEmpty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_AbilityTargetDataFromHitResult_ReturnValue) == 0x000430, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_AbilityTargetDataFromHitResult_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_bBlockingHit) == 0x000458, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_bInitialOverlap) == 0x000459, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_Time) == 0x00045C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_Distance) == 0x000460, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_Location) == 0x000468, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_ImpactPoint) == 0x000480, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_Normal) == 0x000498, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_ImpactNormal) == 0x0004B0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_PhysMat) == 0x0004C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_HitActor) == 0x0004D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_HitComponent) == 0x0004D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_HitBoneName) == 0x0004E0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_BoneName) == 0x0004E8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_HitItem) == 0x0004F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_ElementIndex) == 0x0004F4, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_FaceIndex) == 0x0004F8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_TraceStart) == 0x000500, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakHitResult_TraceEnd) == 0x000518, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000530, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Length_ReturnValue) == 0x000538, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue) == 0x000540, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_17) == 0x000548, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAimAssistToSocket_ReturnValue) == 0x000558, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAimAssistToSocket_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000560, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_12) == 0x000568, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_13) == 0x000569, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_2) == 0x000570, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_3) == 0x000578, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue) == 0x000580, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToActorForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_4) == 0x000588, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_14) == 0x000590, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_15) == 0x000591, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetHitImpactCue_GameplayCueTag) == 0x000594, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetHitImpactCue_GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x0005A0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0005A8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Has_Been_Initd_Variable) == 0x0005C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_5) == 0x0005C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_int_Array_Index_Variable) == 0x0005D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetComponentByClass_ReturnValue) == 0x0005D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Get_Item) == 0x0005E0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_16) == 0x000690, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000698, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsFalling_ReturnValue) == 0x0006B0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0006B8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPunchTarget_ReturnValue_6) == 0x0006C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPunchTarget_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetVelocity_ReturnValue) == 0x0006C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0006E0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_NegateVector_ReturnValue) == 0x0006F8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue) == 0x000710, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000728, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000730, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000748, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_18) == 0x000760, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_X) == 0x000770, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_Y) == 0x000778, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_Z) == 0x000780, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_IsClosed_Variable) == 0x000788, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_MakeVector_ReturnValue) == 0x000790, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Normal_ReturnValue) == 0x0007A8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0007C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0007D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0007F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1) == 0x000808, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2) == 0x000810, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_17) == 0x000818, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_18) == 0x000819, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_ReturnValue_6) == 0x000820, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_19) == 0x000828, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TraceEnvironmentHit_ReturnValue) == 0x000830, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TraceEnvironmentHit_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TraceEnemyHits_ReturnValue) == 0x000918, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TraceEnemyHits_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetValidEventData_ReturnValue) == 0x000928, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetValidEventData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TraceEnemyHits_ReturnValue_1) == 0x000938, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TraceEnemyHits_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetValidEventData_ReturnValue_1) == 0x000948, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetValidEventData_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000958, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000960, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000968, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000970, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000980, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Default) == 0x000988, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000990, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BooleanOR_ReturnValue) == 0x000991, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000998, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_CreateTimeDilation_Handle) == 0x0009C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x0009C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0009D0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_19) == 0x0009E8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Vector_Distance_ReturnValue) == 0x0009F8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000A00, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Dot_VectorVector_ReturnValue) == 0x000A18, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000A20, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_WrestlerAimAssistToSocket_ReturnValue_1) == 0x000A28, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_WrestlerAimAssistToSocket_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_20) == 0x000A30, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_20) == 0x000A34, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000A44, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_21) == 0x000A4C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000A60, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000A68, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000A70, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000A78, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000A80, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_ApplyDamageParams) == 0x000A88, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000AB0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2) == 0x000AB8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_8) == 0x000AC8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3) == 0x000AD0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_9) == 0x000AE0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000AE8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000AF0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000AF8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000B08, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Not_PreBool_ReturnValue) == 0x000B09, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BooleanAND_ReturnValue) == 0x000B0A, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_22) == 0x000B0C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000B1C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_GameplayEventData) == 0x000B20, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000BD0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000BF8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000BF9, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_GameplayEventData_1) == 0x000C00, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000CB0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000CB8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000CD0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000CE0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BooleanOR_ReturnValue_1) == 0x000CE1, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Add_ReturnValue) == 0x000CE4, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Default_1) == 0x000CE8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Contains_ReturnValue) == 0x000CF0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000CF8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_int_Loop_Counter_Variable) == 0x000D00, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Length_ReturnValue_1) == 0x000D04, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Less_IntInt_ReturnValue) == 0x000D08, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_IntInt_ReturnValue) == 0x000D0C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000D10, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000D18, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetCameraLocation_ReturnValue) == 0x000D20, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetController_ReturnValue) == 0x000D38, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetControlRotation_ReturnValue) == 0x000D40, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000D58, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000D60, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000D68, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_4) == 0x000D70, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_10) == 0x000D80, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_23) == 0x000D84, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_24) == 0x000D94, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000DA8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000DB0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_5) == 0x000DB8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_DynamicCast_bSuccess_11) == 0x000DC8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetActorForwardVector_ReturnValue_2) == 0x000DD0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetActorForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000DE8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Default_2) == 0x000E00, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000E08, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000E10, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000E18, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000E20, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_25) == 0x000E24, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_SpawnedEnemy) == 0x000E38, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_SpawnedEnemy' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Add_ReturnValue_1) == 0x000E40, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_int_Array_Index_Variable_1) == 0x000E44, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_Get_Item_1) == 0x000E48, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_21) == 0x000E50, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Get_TargetLookLoc_Loc) == 0x000E58, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Get_TargetLookLoc_Loc' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000E70, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000E88, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_26) == 0x000EA0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_RLerp_ReturnValue) == 0x000EB0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x000EC8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000ED0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000ED8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000EF8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x000F08, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BooleanOR_ReturnValue_2) == 0x000F09, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x000F10, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000F18, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BooleanAND_ReturnValue_1) == 0x000F19, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_CommitAbilityCooldown_ReturnValue) == 0x000F1A, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_CommitAbilityCooldown_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000F20, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Array_IsEmpty_ReturnValue_3) == 0x000F28, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Array_IsEmpty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_22) == 0x000F29, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000F30, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_27) == 0x000F38, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TraceEnemyHits_ReturnValue_2) == 0x000F48, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TraceEnemyHits_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetValidEventData_ReturnValue_2) == 0x000F58, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetValidEventData_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPlayerController_ReturnValue) == 0x000F68, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetControlRotation_ReturnValue_1) == 0x000F70, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000F88, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetForwardVector_ReturnValue) == 0x000FA0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4) == 0x000FB8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000FC0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x000FD8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_X_1) == 0x000FF0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_Y_1) == 0x000FF8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_BreakVector_Z_1) == 0x001000, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_10) == 0x001008, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_MakeVector_ReturnValue_1) == 0x001010, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue_3) == 0x001028, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x001040, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3) == 0x001060, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_GameplayEventData_2) == 0x001068, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_23) == 0x001118, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x001120, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x001128, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetDirectionUnitVector_ReturnValue_2) == 0x001140, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetDirectionUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_bool_Variable_11) == 0x001158, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_bool_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x001160, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_struct_Variable) == 0x0011A0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5) == 0x0011B8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetActorForwardVector_ReturnValue_3) == 0x0011C0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetActorForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14) == 0x0011D8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0011E0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue_4) == 0x0011F8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsFalling_ReturnValue_1) == 0x001210, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsFalling_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, Temp_int_Loop_Counter_Variable_1) == 0x001214, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ApplyRootMotionMoveToForce_ReturnValue_4) == 0x001218, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ApplyRootMotionMoveToForce_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_24) == 0x001220, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Less_IntInt_ReturnValue_1) == 0x001221, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_IntInt_ReturnValue_1) == 0x001224, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_28) == 0x001228, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x001238, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x001240, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6) == 0x001258, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_DestinationReached) == 0x001260, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_TimedOut) == 0x001261, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CustomEvent_FinalTargetLocation) == 0x001268, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CustomEvent_FinalTargetLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetActorForwardVector_ReturnValue_4) == 0x001280, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetActorForwardVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x001298, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x0012B0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_VectorVector_ReturnValue_5) == 0x0012C8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_IsValid_ReturnValue_25) == 0x0012E0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_IsValid_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15) == 0x0012E8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_CreateDelegate_OutputDelegate_29) == 0x0012F0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x001300, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x001310, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x001318, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_GetPlayerController_ReturnValue_1) == 0x001320, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Default_3) == 0x001328, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x001330, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ActorTimeDelay_Duration_ImplicitCast_1) == 0x001334, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ActorTimeDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Option_0_ImplicitCast) == 0x001338, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x001340, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Option_1_ImplicitCast) == 0x001348, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_Duration_ImplicitCast) == 0x001350, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x001358, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x001360, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x001368, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x00136C, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x001370, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Add_DoubleDouble_A_ImplicitCast_1) == 0x001378, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Add_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_TraceEnemyHits_InForwardDistance_ImplicitCast) == 0x001380, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_TraceEnemyHits_InForwardDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001388, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_MakeStruct_EventMagnitude_ImplicitCast_1) == 0x001390, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_MakeStruct_EventMagnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, K2Node_Select_Option_0_ImplicitCast_1) == 0x001398, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0013A0, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base, CallFunc_ClientStartCameraShake_Scale_ImplicitCast) == 0x0013A8, "Member 'GA_PlayerAttack_base_C_ExecuteUbergraph_GA_PlayerAttack_base::CallFunc_ClientStartCameraShake_Scale_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_Get_Hit_Tag \ +static_assert(alignof(GA_PlayerAttack_base_C_Get_Hit_Tag) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_Get_Hit_Tag"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_Get_Hit_Tag) == 0x000090, "Wrong size on GA_PlayerAttack_base_C_Get_Hit_Tag"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, InputPin) == 0x000000, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::InputPin' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, ReturnValue) == 0x000008, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, bIsFalling) == 0x000010, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::bIsFalling' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, Temp_struct_Variable) == 0x000014, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000020, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000028, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000038, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_1) == 0x000040, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_K2_GetAbilitySystemComponentFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_Not_PreBool_ReturnValue) == 0x000048, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_IsValid_ReturnValue) == 0x000049, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_IsFalling_ReturnValue) == 0x000059, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, Temp_bool_Variable) == 0x00005A, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, Temp_struct_Variable_1) == 0x00005C, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, Temp_bool_Variable_1) == 0x000064, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000068, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000078, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_BooleanAND_ReturnValue) == 0x000079, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, CallFunc_BooleanOR_ReturnValue) == 0x00007A, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, K2Node_Select_Default) == 0x00007C, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_Hit_Tag, K2Node_Select_Default_1) == 0x000084, "Member 'GA_PlayerAttack_base_C_Get_Hit_Tag::K2Node_Select_Default_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_Get_TargetLookLoc \ +static_assert(alignof(GA_PlayerAttack_base_C_Get_TargetLookLoc) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_Get_TargetLookLoc"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_Get_TargetLookLoc) == 0x000080, "Wrong size on GA_PlayerAttack_base_C_Get_TargetLookLoc"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, Actor) == 0x000000, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, Loc) == 0x000008, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::Loc' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000028, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, CallFunc_Add_VectorVector_ReturnValue) == 0x000040, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, K2Node_DynamicCast_AsCharacter) == 0x000058, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Get_TargetLookLoc, CallFunc_GetSocketLocation_ReturnValue) == 0x000068, "Member 'GA_PlayerAttack_base_C_Get_TargetLookLoc::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_GetHitImpactCue \ +static_assert(alignof(GA_PlayerAttack_base_C_GetHitImpactCue) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_GetHitImpactCue"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_GetHitImpactCue) == 0x000058, "Wrong size on GA_PlayerAttack_base_C_GetHitImpactCue"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, GameplayCueTag) == 0x000000, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000028, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000038, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000040, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000050, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_GetHitImpactCue, CallFunc_BooleanAND_ReturnValue) == 0x000051, "Member 'GA_PlayerAttack_base_C_GetHitImpactCue::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_Is_Lunge_Targeted \ +static_assert(alignof(GA_PlayerAttack_base_C_Is_Lunge_Targeted) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_Is_Lunge_Targeted"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_Is_Lunge_Targeted) == 0x000148, "Wrong size on GA_PlayerAttack_base_C_Is_Lunge_Targeted"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, Targeted) == 0x000000, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::Targeted' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue_1) == 0x000028, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetPunchTarget_ReturnValue_2) == 0x000050, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetPunchTarget_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000058, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000070, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetPlayerController_ReturnValue) == 0x000078, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000080, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetControlRotation_ReturnValue) == 0x000098, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000B0, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetForwardVector_ReturnValue) == 0x0000C8, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, Temp_bool_Variable) == 0x0000E0, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000E8, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_FClamp_ReturnValue) == 0x0000F0, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000100, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000108, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000110, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000118, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_Vector_Distance_ReturnValue) == 0x000130, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000138, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue) == 0x000139, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_BooleanAND_ReturnValue_1) == 0x00013A, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Is_Lunge_Targeted, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000140, "Member 'GA_PlayerAttack_base_C_Is_Lunge_Targeted::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerAttack_base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerAttack_base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerAttack_base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerAttack_base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_Mass_Hit \ +static_assert(alignof(GA_PlayerAttack_base_C_Mass_Hit) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_Mass_Hit"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_Mass_Hit) == 0x000008, "Wrong size on GA_PlayerAttack_base_C_Mass_Hit"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_Mass_Hit, SpawnedEnemy) == 0x000000, "Member 'GA_PlayerAttack_base_C_Mass_Hit::SpawnedEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A \ +static_assert(alignof(GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A) == 0x000004, "Wrong alignment on GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A) == 0x000004, "Wrong size on GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A, WaitingTime) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnControlCueProcess_64AD8F304E0B1E66A84BE2969B98E85A::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE \ +static_assert(alignof(GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE) == 0x000004, "Wrong alignment on GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE) == 0x000004, "Wrong size on GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE, WaitingTime) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnControlCueProcess_A0537B0840277E7A0BB8C3B3632071FE::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8 \ +static_assert(alignof(GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8) == 0x000004, "Wrong alignment on GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8) == 0x000004, "Wrong size on GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8, WaitingTime) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnControlCueProcess_B9C6E5A94008785C54173488F05476C8::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137 \ +static_assert(alignof(GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137) == 0x000004, "Wrong alignment on GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137) == 0x000004, "Wrong size on GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137, WaitingTime) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnControlCueProcess_DB7522C145F18EF3CB091BAD949C4137::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F \ +static_assert(alignof(GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F) == 0x000020, "Wrong size on GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F, DestinationReached) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F::DestinationReached' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F, TimedOut) == 0x000001, "Member 'GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F::TimedOut' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F, FinalTargetLocation) == 0x000008, "Member 'GA_PlayerAttack_base_C_OnFinished_5197959A4E9589DF2648C3A34867DC8F::FinalTargetLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_OnFistHitStart \ +static_assert(alignof(GA_PlayerAttack_base_C_OnFistHitStart) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_OnFistHitStart"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_OnFistHitStart) == 0x0000B0, "Wrong size on GA_PlayerAttack_base_C_OnFistHitStart"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_OnFistHitStart, Payload) == 0x000000, "Member 'GA_PlayerAttack_base_C_OnFistHitStart::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_base_C_PlayMoveToGameplayCue \ +static_assert(alignof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue) == 0x000008, "Wrong alignment on GA_PlayerAttack_base_C_PlayMoveToGameplayCue"); \ +static_assert(sizeof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue) == 0x000050, "Wrong size on GA_PlayerAttack_base_C_PlayMoveToGameplayCue"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, Activation_Distance) == 0x000000, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::Activation_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_GetPunchTarget_ReturnValue) == 0x000008, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_GetPunchTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_Square_ReturnValue) == 0x000010, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000020, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_MakeEffectContext_ReturnValue) == 0x000028, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_MakeEffectContext_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_GetSquaredDistanceTo_ReturnValue) == 0x000040, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_GetSquaredDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000044, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_base_C_PlayMoveToGameplayCue, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'GA_PlayerAttack_base_C_PlayMoveToGameplayCue::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerAttack_base_C \ +static_assert(alignof(UGA_PlayerAttack_base_C) == 0x000008, "Wrong alignment on UGA_PlayerAttack_base_C"); \ +static_assert(sizeof(UGA_PlayerAttack_base_C) == 0x000AB8, "Wrong size on UGA_PlayerAttack_base_C"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, UberGraphFrame) == 0x000690, "Member 'UGA_PlayerAttack_base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, ImpactShake) == 0x000698, "Member 'UGA_PlayerAttack_base_C::ImpactShake' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Impact_Shake_Scale) == 0x0006A0, "Member 'UGA_PlayerAttack_base_C::Impact_Shake_Scale' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeDelay) == 0x0006A4, "Member 'UGA_PlayerAttack_base_C::LungeDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeRange) == 0x0006A8, "Member 'UGA_PlayerAttack_base_C::LungeRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeDuration) == 0x0006AC, "Member 'UGA_PlayerAttack_base_C::LungeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeRangeTargeted) == 0x0006B0, "Member 'UGA_PlayerAttack_base_C::LungeRangeTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeDurationTargeted) == 0x0006B4, "Member 'UGA_PlayerAttack_base_C::LungeDurationTargeted' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeAssistStrength) == 0x0006B8, "Member 'UGA_PlayerAttack_base_C::LungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, PreLungeAssistStrength) == 0x0006BC, "Member 'UGA_PlayerAttack_base_C::PreLungeAssistStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LungeMaxAngle) == 0x0006C0, "Member 'UGA_PlayerAttack_base_C::LungeMaxAngle' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Buffer_Delay) == 0x0006C8, "Member 'UGA_PlayerAttack_base_C::Buffer_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, ComboDelay) == 0x0006D0, "Member 'UGA_PlayerAttack_base_C::ComboDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Impact_section) == 0x0006D8, "Member 'UGA_PlayerAttack_base_C::Impact_section' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Bounceback_Distance) == 0x0006E0, "Member 'UGA_PlayerAttack_base_C::Bounceback_Distance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hitfreeze_Duration) == 0x0006E8, "Member 'UGA_PlayerAttack_base_C::Hitfreeze_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hitfreeze_Duration_Brutal) == 0x0006EC, "Member 'UGA_PlayerAttack_base_C::Hitfreeze_Duration_Brutal' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Multi_Hit) == 0x0006F0, "Member 'UGA_PlayerAttack_base_C::Multi_Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, EnvironmentHitResult) == 0x0006F8, "Member 'UGA_PlayerAttack_base_C::EnvironmentHitResult' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, TimeDilator) == 0x0007E0, "Member 'UGA_PlayerAttack_base_C::TimeDilator' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, EnemyHitsEventData) == 0x0007E8, "Member 'UGA_PlayerAttack_base_C::EnemyHitsEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, HitEventTag) == 0x0007F8, "Member 'UGA_PlayerAttack_base_C::HitEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, RightPunch) == 0x000800, "Member 'UGA_PlayerAttack_base_C::RightPunch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, PunchImpactCueTag) == 0x000804, "Member 'UGA_PlayerAttack_base_C::PunchImpactCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, MoveToForceAsyncTask) == 0x000810, "Member 'UGA_PlayerAttack_base_C::MoveToForceAsyncTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, HitResponseTag) == 0x000818, "Member 'UGA_PlayerAttack_base_C::HitResponseTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, HitEventData) == 0x000820, "Member 'UGA_PlayerAttack_base_C::HitEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, MoveToCueTag) == 0x0008D0, "Member 'UGA_PlayerAttack_base_C::MoveToCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, PunchCancelledGameplayCueTag) == 0x0008D8, "Member 'UGA_PlayerAttack_base_C::PunchCancelledGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, PunchBlockCueTag) == 0x0008E0, "Member 'UGA_PlayerAttack_base_C::PunchBlockCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Environment_Damage) == 0x0008E8, "Member 'UGA_PlayerAttack_base_C::Environment_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, NoiseRadius) == 0x0008EC, "Member 'UGA_PlayerAttack_base_C::NoiseRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Knockback) == 0x0008F0, "Member 'UGA_PlayerAttack_base_C::Knockback' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hangloc) == 0x000930, "Member 'UGA_PlayerAttack_base_C::Hangloc' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, AttackMontage) == 0x000948, "Member 'UGA_PlayerAttack_base_C::AttackMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, BounceBackLoc) == 0x000950, "Member 'UGA_PlayerAttack_base_C::BounceBackLoc' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Trace_Range) == 0x000968, "Member 'UGA_PlayerAttack_base_C::Trace_Range' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Trace_Radius) == 0x00096C, "Member 'UGA_PlayerAttack_base_C::Trace_Radius' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hit_Damage) == 0x000970, "Member 'UGA_PlayerAttack_base_C::Hit_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LaunchLightweights) == 0x000974, "Member 'UGA_PlayerAttack_base_C::LaunchLightweights' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Death_Behaviour_Tag) == 0x000978, "Member 'UGA_PlayerAttack_base_C::Death_Behaviour_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, AttackTags) == 0x000980, "Member 'UGA_PlayerAttack_base_C::AttackTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, FlinchOnlyTags) == 0x0009A0, "Member 'UGA_PlayerAttack_base_C::FlinchOnlyTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Damage_No_Death) == 0x0009C0, "Member 'UGA_PlayerAttack_base_C::Damage_No_Death' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Damage_Should_Execute) == 0x0009C1, "Member 'UGA_PlayerAttack_base_C::Damage_Should_Execute' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, CanTargetLunge) == 0x0009C2, "Member 'UGA_PlayerAttack_base_C::CanTargetLunge' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, ShouldLunge) == 0x0009C3, "Member 'UGA_PlayerAttack_base_C::ShouldLunge' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, BehindEnemy) == 0x0009C4, "Member 'UGA_PlayerAttack_base_C::BehindEnemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hit_Event_Magnitute) == 0x0009C8, "Member 'UGA_PlayerAttack_base_C::Hit_Event_Magnitute' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Lunge_Aim_Target_Offset) == 0x0009D0, "Member 'UGA_PlayerAttack_base_C::Lunge_Aim_Target_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hit_Enemy) == 0x0009E8, "Member 'UGA_PlayerAttack_base_C::Hit_Enemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Undodgeable_Trace_Percent) == 0x0009F0, "Member 'UGA_PlayerAttack_base_C::Undodgeable_Trace_Percent' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Noise_Loudness) == 0x0009F8, "Member 'UGA_PlayerAttack_base_C::Noise_Loudness' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Attack_Type_Tag) == 0x0009FC, "Member 'UGA_PlayerAttack_base_C::Attack_Type_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, BM_DodgeTag) == 0x000A04, "Member 'UGA_PlayerAttack_base_C::BM_DodgeTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, AttackDodged) == 0x000A0C, "Member 'UGA_PlayerAttack_base_C::AttackDodged' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, BMIgnoreTags) == 0x000A10, "Member 'UGA_PlayerAttack_base_C::BMIgnoreTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, LegeslipDuration) == 0x000A30, "Member 'UGA_PlayerAttack_base_C::LegeslipDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Hit_Targets) == 0x000A38, "Member 'UGA_PlayerAttack_base_C::Hit_Targets' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, BehindEnemyMultiplier) == 0x000A48, "Member 'UGA_PlayerAttack_base_C::BehindEnemyMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, HitSnap) == 0x000A50, "Member 'UGA_PlayerAttack_base_C::HitSnap' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, AttackBuffered) == 0x000A54, "Member 'UGA_PlayerAttack_base_C::AttackBuffered' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, PunchReleased) == 0x000A55, "Member 'UGA_PlayerAttack_base_C::PunchReleased' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, SpecialDamageBonus) == 0x000A58, "Member 'UGA_PlayerAttack_base_C::SpecialDamageBonus' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, SpecialDamageTags) == 0x000A60, "Member 'UGA_PlayerAttack_base_C::SpecialDamageTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, SpecialHits) == 0x000A80, "Member 'UGA_PlayerAttack_base_C::SpecialHits' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, SpecialHitFliter) == 0x000A90, "Member 'UGA_PlayerAttack_base_C::SpecialHitFliter' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, DamageENV) == 0x000AB0, "Member 'UGA_PlayerAttack_base_C::DamageENV' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerAttack_base_C, Montage_Stop_when_Ability_Ends) == 0x000AB1, "Member 'UGA_PlayerAttack_base_C::Montage_Stop_when_Ability_Ends' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextScrollStyle_C \ +static_assert(alignof(UCommonTextScrollStyle_C) == 0x000008, "Wrong alignment on UCommonTextScrollStyle_C"); \ +static_assert(sizeof(UCommonTextScrollStyle_C) == 0x000040, "Wrong size on UCommonTextScrollStyle_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt \ +static_assert(alignof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt) == 0x000008, "Wrong alignment on GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt"); \ +static_assert(sizeof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt) == 0x0001A8, "Wrong size on GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, EntryPoint) == 0x000000, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_bool_Variable) == 0x000004, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_real_Variable) == 0x000008, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_real_Variable_1) == 0x00000C, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_bool_Variable_1) == 0x000010, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_real_Variable_2) == 0x000014, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_real_Variable_3) == 0x000018, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_bool_Variable_2) == 0x00001C, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_Event_bWasCancelled) == 0x00001D, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, Temp_int_Array_Index_Variable) == 0x000038, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_MakeStruct_StateTreeEvent) == 0x000040, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_WaitRealDelay_ReturnValue) == 0x000060, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000070, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GetActorForwardVector_ReturnValue) == 0x000078, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GetVelocity_ReturnValue) == 0x000090, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_VSize_ReturnValue) == 0x0000A8, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Normal_ReturnValue) == 0x0000B0, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0000C8, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000D0, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000D8, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000E8, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_Select_Default) == 0x0000FC, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_Select_Default_1) == 0x000100, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000104, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_Select_Default_2) == 0x000108, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Array_Length_ReturnValue) == 0x000118, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Array_Get_Item) == 0x000120, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Less_IntInt_ReturnValue) == 0x000128, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_IsValid_ReturnValue_1) == 0x000129, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000130, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000140, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000150, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000151, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_ChangeWeapon_OutOldWeapon) == 0x000158, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_ChangeWeapon_OutNewWeapon) == 0x000160, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GetEnemyTypeName_ReturnValue) == 0x000168, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GetEnemyTypeName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000170, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000180, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Conv_NameToString_ReturnValue) == 0x000188, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_BooleanOR_ReturnValue) == 0x000198, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Contains_ReturnValue) == 0x000199, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Contains_ReturnValue_1) == 0x00019A, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Contains_ReturnValue_2) == 0x00019B, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Contains_ReturnValue_3) == 0x00019C, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Contains_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_Contains_ReturnValue_4) == 0x00019D, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_Contains_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt, CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast) == 0x0001A0, "Member 'GA_PlayerAttack_Shunt_C_ExecuteUbergraph_GA_PlayerAttack_Shunt::CallFunc_GreaterEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Shunt_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerAttack_Shunt_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerAttack_Shunt_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerAttack_Shunt_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerAttack_Shunt_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerAttack_Shunt_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerAttack_Shunt_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerAttack_Shunt_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_PlayerAttack_Shunt_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000078, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000080, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000090, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, CallFunc_IsWalking_ReturnValue) == 0x000091, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerAttack_Shunt_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x000092, "Member 'GA_PlayerAttack_Shunt_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerAttack_Shunt_C \ +static_assert(alignof(UGA_PlayerAttack_Shunt_C) == 0x000008, "Wrong alignment on UGA_PlayerAttack_Shunt_C"); \ +static_assert(sizeof(UGA_PlayerAttack_Shunt_C) == 0x000AC0, "Wrong size on UGA_PlayerAttack_Shunt_C"); \ +static_assert(offsetof(UGA_PlayerAttack_Shunt_C, UberGraphFrame_GA_PlayerAttack_Shunt_C) == 0x000AB8, "Member 'UGA_PlayerAttack_Shunt_C::UberGraphFrame_GA_PlayerAttack_Shunt_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health) == 0x0000B8, "Wrong size on BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, Maxed_out) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::Maxed_out' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, Temp_real_Variable) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_IsPlayerFabien_Return) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_GetProperty_ReturnValue) == 0x00001C, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Subtract_IntInt_ReturnValue) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_GetProperty_ReturnValue_1) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Clamp_ReturnValue) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Clamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Not_PreBool_ReturnValue) == 0x00002C, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000030, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_GetProperty_ReturnValue_2) == 0x000038, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_GetProperty_ReturnValue_3) == 0x00003C, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, Temp_bool_Variable) == 0x000040, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000048, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_MakeLiteralDouble_ReturnValue) == 0x000050, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_MakeLiteralDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_MakeLiteralDouble_ReturnValue_1) == 0x000058, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_MakeLiteralDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_MakeLiteralInt_ReturnValue) == 0x000060, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_MakeLiteralInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Conv_IntToDouble_ReturnValue_2) == 0x000068, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Conv_IntToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Conv_IntToDouble_ReturnValue_3) == 0x000070, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Conv_IntToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_FClamp_ReturnValue) == 0x000088, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000090, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_BooleanOR_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health, K2Node_Select_Default) == 0x0000B0, "Member 'BP_WrestlerTestPlayerCharacter_C_Calculate_Max_Health::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_08E3F5324AA744E1602900BAF51934FC::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_2104A32A4B3BB2A58A0D38A330606C20::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_3516D19141BD014BB065B199925903E4::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_490B5328463A20260FFD12B501581A27::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_BB915F0943B69AEBB6F4AD9D013547CE::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_CBD22F8C4AE826498AA5CF84B26D466D::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_CE197A8340D1A0526C34C493EAC8F0AD::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA) == 0x0000B0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA, Payload) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_EventReceived_D26D42D1494AF520842B24BB0972C2DA::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter) == 0x000010, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter) == 0x002430, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, EntryPoint) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ActionValue_3) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ActionValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ElapsedTime_3) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ElapsedTime_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_TriggeredTime_3) == 0x00002C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_TriggeredTime_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_SourceAction_3) == 0x000030, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_SourceAction_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_object_Variable) == 0x000038, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_InputActionValueToBool_ReturnValue) == 0x000040, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_InputActionValueToBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable) == 0x000048, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_1) == 0x000050, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_0) == 0x000058, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_1_0) == 0x000060, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_1_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Variable) == 0x000068, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_delegate_Variable) == 0x00006C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_delegate_Variable_1) == 0x00007C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_delegate_Variable_2) == 0x00008C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload) == 0x0000A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate) == 0x000150, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable) == 0x000160, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000210, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue) == 0x000218, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_1) == 0x000219, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_AsWrestler_Dead_Body) == 0x000220, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_AsWrestler_Dead_Body' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_bSuccess) == 0x000228, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasTag_ReturnValue) == 0x000229, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00022A, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x00022B, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasTag_ReturnValue_1) == 0x00022C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValidSoftClassReference_ReturnValue) == 0x00022D, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValidSoftClassReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Loaded) == 0x000230, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_class_Variable) == 0x000238, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_ClassDynamicCast_AsActor) == 0x000240, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_ClassDynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_ClassDynamicCast_bSuccess) == 0x000248, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000249, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1) == 0x00024A, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2) == 0x00024B, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3) == 0x00024C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Variable_1) == 0x00024D, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_byte_Variable) == 0x00024E, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_byte_Variable_1) == 0x00024F, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000250, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ActionValue_2) == 0x000258, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ActionValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ElapsedTime_2) == 0x000278, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ElapsedTime_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_TriggeredTime_2) == 0x00027C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_TriggeredTime_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_SourceAction_2) == 0x000280, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_SourceAction_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsPlayerLockedIntoDialogue_ReturnValue) == 0x000288, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsPlayerLockedIntoDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_InputActionValueToBool_ReturnValue_1) == 0x000289, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_InputActionValueToBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ActionValue_1) == 0x000290, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ActionValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ElapsedTime_1) == 0x0002B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ElapsedTime_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_TriggeredTime_1) == 0x0002B4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_TriggeredTime_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_SourceAction_1) == 0x0002B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_SourceAction_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ActionValue) == 0x0002C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ActionValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_ElapsedTime) == 0x0002E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_TriggeredTime) == 0x0002E4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_TriggeredTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_EnhancedInputActionEvent_SourceAction) == 0x0002E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_EnhancedInputActionEvent_SourceAction' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_InputActionValueToBool_ReturnValue_2) == 0x0002F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_InputActionValueToBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_InputActionValueToBool_ReturnValue_3) == 0x0002F1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_InputActionValueToBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_object_Variable_1) == 0x0002F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_2) == 0x000300, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_2_0) == 0x000308, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_2_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_2_1) == 0x000310, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_2_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_2_2) == 0x000318, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_2_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_3) == 0x000320, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Variable_2) == 0x000328, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_3_0) == 0x000330, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_3_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_3_1) == 0x000338, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_3_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_3_2) == 0x000340, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_3_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetBoundActionValue_ReturnValue) == 0x000348, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetBoundActionValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_InputActionValueToAxis3D_ReturnValue) == 0x000368, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_InputActionValueToAxis3D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable) == 0x000380, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakVector_X) == 0x000388, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakVector_Y) == 0x000390, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakVector_Z) == 0x000398, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Abs_ReturnValue) == 0x0003A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0003A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0003A9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable) == 0x0003AA, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_1) == 0x0003AB, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_1) == 0x0003AC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_2) == 0x0003AD, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_InHair) == 0x0003B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_InHair' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_CostumeTage) == 0x0003B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_CostumeTage' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_InMakeUp) == 0x0003C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_InMakeUp' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_PiercingAsset) == 0x0003C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_PiercingAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_EyesAsset) == 0x0003D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_EyesAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_NewCollisionMode_1) == 0x0003D8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_NewCollisionMode_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_bRightSide_1) == 0x0003D9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_bRightSide_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_NewCollisionMode) == 0x0003DA, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_bRightSide) == 0x0003DB, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_bRightSide' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_NewController) == 0x0003E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_NewController' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_AsPlayer_Controller) == 0x0003E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_AsPlayer_Controller' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_bSuccess_1) == 0x0003F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_PrevMovementMode) == 0x0003F1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_NewMovementMode) == 0x0003F2, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_PrevCustomMode) == 0x0003F3, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_PrevCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_NewCustomMode) == 0x0003F4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_NewCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_CurrentHealth) == 0x0003F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_MaxHealth) == 0x0003FC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_MaxHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x000400, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_2) == 0x000401, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_3) == 0x000402, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_Hit) == 0x000408, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_Hit' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0004F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_CurrentBlood) == 0x0004F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_CurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_MaxBlood) == 0x0004FC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_MaxBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_OutFailureReason) == 0x000500, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_OutFailureReason' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_TagFailure) == 0x000508, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_TagFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_AbilityFailure) == 0x000528, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_AbilityFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_SwitchEnum_CmpSuccess) == 0x000530, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000538, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000540, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetRTPCValue_Value) == 0x000558, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetRTPCValue_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetRTPCValue_OutputValueType) == 0x00055C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetRTPCValue_OutputValueType' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000560, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_3) == 0x000568, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000570, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_InCostume) == 0x000578, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_InCostume' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_2) == 0x000580, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000581, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000588, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0005A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsGroundStable__ReturnValue) == 0x0005B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsGroundStable__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_HalfHeightAdjust_1) == 0x0005BC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_HalfHeightAdjust_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_ScaledHalfHeightAdjust_1) == 0x0005C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_ScaledHalfHeightAdjust_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_HalfHeightAdjust) == 0x0005C4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_HalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_ScaledHalfHeightAdjust) == 0x0005C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_ScaledHalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x0005D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetCrouchedHalfHeight_ReturnValue) == 0x0005D8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetCrouchedHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_3) == 0x0005DC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_1) == 0x0005E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_ApplyCostume_Player_CastInput) == 0x000690, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_ApplyCostume_Player_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_InNewClan) == 0x0006A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_InNewClan' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_4) == 0x0006A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_4) == 0x0006A9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_InCue) == 0x0006B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_InCue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_ByteToDouble_ReturnValue) == 0x0006B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_ByteToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0006C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x0006C1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetIsHeavyLanding_ReturnValue) == 0x0006C2, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetIsHeavyLanding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameInstanceSubsystem_ReturnValue_2) == 0x0006C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameInstanceSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x0006D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x0006D8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_5) == 0x0006E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetController_ReturnValue) == 0x0006E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0006F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetControlRotation_ReturnValue) == 0x0006F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_1) == 0x000710, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Roll) == 0x0007C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Pitch) == 0x0007C4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Yaw) == 0x0007C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeRotator_ReturnValue) == 0x0007D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Event_DeltaSeconds) == 0x0007E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0007F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000810, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000818, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000838, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000839, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_1) == 0x00083C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_2) == 0x000850, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetController_ReturnValue_1) == 0x000900, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasTag_ReturnValue_2) == 0x000908, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_6) == 0x000909, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetControlRotation_ReturnValue_1) == 0x000910, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasTag_ReturnValue_3) == 0x000928, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetController_ReturnValue_2) == 0x000930, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_7) == 0x000938, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetControlRotation_ReturnValue_2) == 0x000940, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetControlRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetController_ReturnValue_3) == 0x000958, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetControlRotation_ReturnValue_3) == 0x000960, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetControlRotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000978, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_8) == 0x000980, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_2) == 0x000984, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerController_ReturnValue) == 0x000998, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_IntInt_ReturnValue) == 0x0009A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x0009A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0009B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_9) == 0x0009B1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerController_ReturnValue_1) == 0x0009B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerController_ReturnValue_2) == 0x0009C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_4) == 0x0009C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0009CC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x0009D4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue) == 0x0009DC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_1) == 0x0009DD, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x0009E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue) == 0x0009E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_2) == 0x0009E9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_3) == 0x0009EC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_1) == 0x0009F4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_3) == 0x0009F5, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_4) == 0x0009F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_2) == 0x000A00, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_4) == 0x000A01, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_5) == 0x000A04, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_3) == 0x000A0C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_5) == 0x000A0D, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_4) == 0x000A0E, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerController_ReturnValue_3) == 0x000A10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_5) == 0x000A18, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetEquippedAbilityComponent_ReturnValue) == 0x000AC8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetEquippedAbilityComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetEquippedAbilityComponent_ReturnValue_1) == 0x000AD0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetEquippedAbilityComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasEquippedAbilityOfType_ReturnValue) == 0x000AD8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasEquippedAbilityOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasEquippedAbilityOfType_ReturnValue_1) == 0x000AD9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasEquippedAbilityOfType_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetEquippedAbilityComponent_ReturnValue_2) == 0x000AE0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetEquippedAbilityComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetEquippedAbilityComponent_ReturnValue_3) == 0x000AE8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetEquippedAbilityComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasEquippedAbilityOfType_ReturnValue_2) == 0x000AF0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasEquippedAbilityOfType_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasEquippedAbilityOfType_ReturnValue_3) == 0x000AF1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasEquippedAbilityOfType_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerController_ReturnValue_4) == 0x000AF8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_3) == 0x000B00, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetEquippedAbilityComponent_ReturnValue_4) == 0x000B10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetEquippedAbilityComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasEquippedAbilityOfType_ReturnValue_4) == 0x000B18, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasEquippedAbilityOfType_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerState_ReturnValue) == 0x000B20, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000B28, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_bSuccess_2) == 0x000B30, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_ContainsItemTagged_ReturnValue) == 0x000B31, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_ContainsItemTagged_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetProperty_ReturnValue) == 0x000B34, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000B3C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000B40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetProperty_ReturnValue_1) == 0x000B48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_5) == 0x000B4C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_IntInt_ReturnValue_1) == 0x000B50, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Increase) == 0x000B54, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Increase' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue) == 0x000B58, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000B68, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x000B6C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetProperty_ReturnValue_2) == 0x000B70, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_4) == 0x000B74, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_IntInt_ReturnValue_2) == 0x000B84, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayTagAddToActor_ReturnValue_1) == 0x000B88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayTagAddToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_10) == 0x000B90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Calculate_Max_Health_ReturnValue) == 0x000B98, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Calculate_Max_Health_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Calculate_Max_Health_Maxed_out) == 0x000BA0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Calculate_Max_Health_Maxed_out' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Not_PreBool_ReturnValue) == 0x000BA1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000BA8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_5) == 0x000BB8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue) == 0x000BBC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_1) == 0x000BC8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_5) == 0x000BD8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000BE8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000BF0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000C10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000C11, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000C12, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000C13, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_2) == 0x000C18, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x000C28, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_1) == 0x000C38, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsCrouching_ReturnValue) == 0x000C40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000C48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000C68, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerControllerFromID_ReturnValue) == 0x000C70, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerControllerFromID_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetPlayerControllerFromID_ReturnValue_1) == 0x000C78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetPlayerControllerFromID_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayTagAddToActor_ReturnValue_2) == 0x000C80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayTagAddToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_11) == 0x000C88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_5) == 0x000C89, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x000C90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue) == 0x000C98, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_6) == 0x000C9C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue) == 0x000CAC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_4) == 0x000CB0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_7) == 0x000CB8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1) == 0x000CC8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000CD0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue_1) == 0x000CD8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesDetectingPlayer_ReturnValue) == 0x000CDC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesDetectingPlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_4) == 0x000CE0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000CE4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_real_Variable_5) == 0x000CE8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_real_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetProperty_ReturnValue_3) == 0x000CEC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_IntInt_ReturnValue_3) == 0x000CF0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_KillstreakThreshold_ReturnValue) == 0x000CF4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_KillstreakThreshold_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue_2) == 0x000CF8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1) == 0x000CFC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x000D04, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Variable_3) == 0x000D05, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Select_Default) == 0x000D08, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x000D10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_2) == 0x000D20, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FabienAlive_ReturnValue) == 0x000D28, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FabienAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FabienAlive_ReturnValue_1) == 0x000D29, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FabienAlive_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000D30, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_BoolToDouble_ReturnValue_1) == 0x000D38, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_BoolToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FabienAlive_ReturnValue_2) == 0x000D40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FabienAlive_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_3) == 0x000D48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_BoolToDouble_ReturnValue_2) == 0x000D50, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_BoolToDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000D58, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_12) == 0x000D60, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_5) == 0x000D68, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_2) == 0x000D70, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue_3) == 0x000D74, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_6) == 0x000D78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_3) == 0x000D80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue_4) == 0x000D84, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FMax_ReturnValue) == 0x000D88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_3) == 0x000D90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_4) == 0x000E40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetNumberOfEnemiesAware_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000E44, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Greater_IntInt_ReturnValue_5) == 0x000E45, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Greater_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_4) == 0x000E46, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_2) == 0x000E48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_8) == 0x000EF8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GreaterEqual_DoubleDouble_ReturnValue_5) == 0x000F08, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GreaterEqual_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000F10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasAnyTags_ReturnValue) == 0x000F30, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000F38, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000F58, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RLerp_ReturnValue) == 0x000F60, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_6) == 0x000F78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_4) == 0x000F80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_13) == 0x000F88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RandomFloatInRange_ReturnValue) == 0x000F90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_4) == 0x000F98, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_5) == 0x000FB8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetController_ReturnValue_4) == 0x001068, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetControlRotation_ReturnValue_4) == 0x001070, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetControlRotation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_AttachToComponent_ReturnValue) == 0x001088, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Roll_1) == 0x00108C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Pitch_1) == 0x001090, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BreakRotator_Yaw_1) == 0x001094, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeRotator_ReturnValue_1) == 0x001098, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetTransform_ReturnValue) == 0x0010B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_6) == 0x001110, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0011C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FinishSpawningActor_ReturnValue) == 0x0011C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_9) == 0x0011D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetAnimInstance_ReturnValue) == 0x0011E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_AsAnim_BP_Player) == 0x0011E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_AsAnim_BP_Player' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_DynamicCast_bSuccess_3) == 0x0011F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Blendout) == 0x0011F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Blendout' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_6) == 0x001200, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_7) == 0x001201, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_7) == 0x001202, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_5) == 0x001208, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x001210, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RInterpTo_ReturnValue) == 0x001218, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_14) == 0x001230, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_8) == 0x001231, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_8) == 0x001232, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_9) == 0x001233, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_6) == 0x001238, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_9) == 0x0012E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Has_Been_Initd_Variable_10) == 0x0012E9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Has_Been_Initd_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_IsClosed_Variable_10) == 0x0012EA, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_IsClosed_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_7) == 0x0012F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_10) == 0x0013A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_7) == 0x0013B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_bool_Variable_4) == 0x0013D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_int_Variable) == 0x0013D4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Select_Default_1) == 0x0013D8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData) == 0x0013F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldSubsystem_ReturnValue_7) == 0x0014A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldSubsystem_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_11) == 0x0014B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_1) == 0x0014C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_2) == 0x001570, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_3) == 0x001620, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_4) == 0x0016D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x001780, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_BoolToDouble_ReturnValue_3) == 0x001788, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_BoolToDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x001790, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x001798, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0017A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_6) == 0x0017A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_5) == 0x0017B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_15) == 0x001860, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x001861, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound) == 0x001862, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue) == 0x001864, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_1) == 0x001868, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_1) == 0x00186C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x001870, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_3) == 0x001878, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3) == 0x001888, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_3) == 0x001898, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_6) == 0x0018A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_8) == 0x001950, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x001A00, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x001A08, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue) == 0x001A10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_3) == 0x001A18, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_7) == 0x001AC8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x001B78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_2) == 0x001B79, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_2) == 0x001B7C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_3) == 0x001B80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_3) == 0x001B84, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_ReturnValue_1) == 0x001B88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_4) == 0x001B90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4) == 0x001BA0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_4) == 0x001BB0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_8) == 0x001BB8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_12) == 0x001C68, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldDeltaSeconds_ReturnValue_2) == 0x001C78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldDeltaSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x001C80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x001C88, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_9) == 0x001C90, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x001D40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_4) == 0x001D41, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_4) == 0x001D44, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_5) == 0x001D48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_5) == 0x001D4C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_ReturnValue_2) == 0x001D50, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_5) == 0x001D58, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_5) == 0x001D68, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_5) == 0x001D78, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_10) == 0x001D80, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldDeltaSeconds_ReturnValue_3) == 0x001E30, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldDeltaSeconds_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x001E38, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x001E40, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_11) == 0x001E48, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_11' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_8) == 0x001EF8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_6) == 0x001EF9, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_6) == 0x001EFC, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_bFound_7) == 0x001F00, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_bFound_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameplayAttributeValue_ReturnValue_7) == 0x001F04, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameplayAttributeValue_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_ReturnValue_3) == 0x001F08, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeOutgoingSpec_ReturnValue_6) == 0x001F10, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeOutgoingSpec_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_6) == 0x001F20, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_GameplayEventData_12) == 0x001F30, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_GameplayEventData_12' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_6) == 0x001FE0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BP_ApplyGameplayEffectSpecToSelf_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetWorldDeltaSeconds_ReturnValue_4) == 0x001FE8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetWorldDeltaSeconds_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x001FF0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTag_ReturnValue_6) == 0x001FF8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasClanPerk_ReturnValue_6) == 0x002000, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasClanPerk_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Conv_BoolToDouble_ReturnValue_4) == 0x002008, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Conv_BoolToDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanOR_ReturnValue) == 0x002010, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x002018, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x002020, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x002028, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x002040, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_K2_FindFloor_FloorResult) == 0x002048, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_K2_FindFloor_FloorResult' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_9) == 0x002140, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_Select_Default_2) == 0x002141, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasMatchingGameplayTag_ReturnValue_10) == 0x002142, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasMatchingGameplayTag_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanOR_ReturnValue_1) == 0x002143, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanOR_ReturnValue_2) == 0x002144, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameInstanceSubsystem_ReturnValue_3) == 0x002148, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameInstanceSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetGameInstanceSubsystem_ReturnValue_4) == 0x002150, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetGameInstanceSubsystem_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x002158, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_HasAnyTags_ReturnValue_1) == 0x002178, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_HasAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_int_Variable_1) == 0x00217C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SelectInt_ReturnValue) == 0x002180, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SelectInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SelectInt_ReturnValue_1) == 0x002184, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SelectInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_IntInt_ReturnValue_4) == 0x002188, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsCrouching_ReturnValue_1) == 0x00218C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsCrouching_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6) == 0x002190, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x0021B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x0021B1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_WaitGameplayEventToActor_ReturnValue_7) == 0x0021B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_WaitGameplayEventToActor_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0021C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_16) == 0x0021C1, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, Temp_struct_Variable_9) == 0x0021C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_IsValid_ReturnValue_17) == 0x002278, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x002279, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_6) == 0x00227A, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x00227C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_7) == 0x002280, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_BooleanAND_ReturnValue_8) == 0x002281, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_BooleanAND_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_5) == 0x002288, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GetRealDeltaTime_ReturnValue_2) == 0x002290, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GetRealDeltaTime_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CustomEvent_Payload_4) == 0x002298, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CustomEvent_Payload_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_ReturnValue_6) == 0x002348, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_CreateDelegate_OutputDelegate_13) == 0x002350, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_OnHealthChanged_CurrentHealth_ImplicitCast) == 0x002360, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_OnHealthChanged_CurrentHealth_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_OnHealthChanged_MaxHealth_ImplicitCast) == 0x002368, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_OnHealthChanged_MaxHealth_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_OnBloodChanged_CurrentBlood_ImplicitCast) == 0x002370, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_OnBloodChanged_CurrentBlood_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_OnBloodChanged_MaxBlood_ImplicitCast) == 0x002378, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_OnBloodChanged_MaxBlood_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x002380, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_GenerateReactionEvent_InMaxDistance_ImplicitCast) == 0x002388, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_GenerateReactionEvent_InMaxDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_FMax_A_ImplicitCast) == 0x002390, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_FMax_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x002398, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x00239C, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1) == 0x0023A0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2) == 0x0023A4, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_SetRTPCGlobal_InValue_ImplicitCast_3) == 0x0023A8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_SetRTPCGlobal_InValue_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0023B0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_RInterpTo_InterpSpeed_ImplicitCast) == 0x0023B8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_RInterpTo_InterpSpeed_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast) == 0x0023C0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x0023C8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x0023D0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_1) == 0x0023D8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_1) == 0x0023E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_EventMagnitude_ImplicitCast_1) == 0x0023E8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_EventMagnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_2) == 0x0023F0, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_2) == 0x0023F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_EventMagnitude_ImplicitCast_2) == 0x002400, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_EventMagnitude_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_3) == 0x002408, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_B_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_3) == 0x002410, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, K2Node_MakeStruct_EventMagnitude_ImplicitCast_3) == 0x002418, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::K2Node_MakeStruct_EventMagnitude_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x002420, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter, CallFunc_Add_DoubleDouble_B_ImplicitCast_1) == 0x002428, "Member 'BP_WrestlerTestPlayerCharacter_C_ExecuteUbergraph_BP_WrestlerTestPlayerCharacter::CallFunc_Add_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_FabienAlive \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_FabienAlive) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_FabienAlive"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_FabienAlive) == 0x000048, "Wrong size on BP_WrestlerTestPlayerCharacter_C_FabienAlive"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_GetGameMode_ReturnValue) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_GetComponentByClass_ReturnValue) == 0x000030, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_GetActiveQuestTag_ReturnValue) == 0x000038, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_HasTag_ReturnValue) == 0x000040, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FabienAlive, CallFunc_Not_PreBool_ReturnValue) == 0x000041, "Member 'BP_WrestlerTestPlayerCharacter_C_FabienAlive::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_FeedEvent_end \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_FeedEvent_end) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_FeedEvent_end"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_FeedEvent_end) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_FeedEvent_end"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_FeedEvent_end, BlendOut) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_FeedEvent_end::BlendOut' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp) == 0x000010, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp, AudioCharacterComponent_0) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp::AudioCharacterComponent_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_GetAudioCharacterComp::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetFearEmitter \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetFearEmitter) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetFearEmitter"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetFearEmitter) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetFearEmitter"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetFearEmitter, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetFearEmitter::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh, GlassesSM) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetGlassesSkeletalMesh::GlassesSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetHairMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetHairMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetHairMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetHairMesh) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetHairMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetHairMesh, HairMesh) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetHairMesh::HairMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh, Head) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetHeadSkeletalMesh::Head' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent) == 0x000010, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent, HeraAudioCharacterComponent) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent::HeraAudioCharacterComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_GetHeraAudioCharacterComponent::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetMesh) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetMesh, Mesh_0) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetMesh::Mesh_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh, PeircingSM) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_GetPiercingSkeletalMesh::PeircingSM' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration) == 0x000028, "Wrong size on BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration, CallFunc_GetCharacterLevel_ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration::CallFunc_GetCharacterLevel_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration, CallFunc_BP_ApplyGameplayEffectToSelf_Level_ImplicitCast) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_InitialiseHealthRegeneration::CallFunc_BP_ApplyGameplayEffectToSelf_Level_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0) == 0x000030, "Wrong size on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0, ActionValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0, ElapsedTime) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0, TriggeredTime) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0::TriggeredTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0, SourceAction) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_0::SourceAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1) == 0x000030, "Wrong size on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1, ActionValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1, ElapsedTime) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1, TriggeredTime) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1::TriggeredTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1, SourceAction) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_1::SourceAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2) == 0x000030, "Wrong size on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2, ActionValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2, ElapsedTime) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2, TriggeredTime) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2::TriggeredTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2, SourceAction) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Crouch_K2Node_EnhancedInputActionEvent_2::SourceAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3) == 0x000030, "Wrong size on BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3, ActionValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3::ActionValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3, ElapsedTime) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3, TriggeredTime) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3::TriggeredTime' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3, SourceAction) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_InpActEvt_IA_Interact_K2Node_EnhancedInputActionEvent_3::SourceAction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_IsGroundStable_ \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_IsGroundStable_"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_) == 0x000198, "Wrong size on BP_WrestlerTestPlayerCharacter_C_IsGroundStable_"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, K2Node_MakeArray_Array) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_HasTag_ReturnValue) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, Temp_object_Variable) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_Not_PreBool_ReturnValue) == 0x000038, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_IsWalking_ReturnValue) == 0x000060, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_MakeVector_ReturnValue) == 0x000068, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_BooleanAND_ReturnValue) == 0x000080, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000088, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_LineTraceSingleForObjects_OutHit) == 0x0000A0, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000188, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_IsGroundStable_, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000190, "Member 'BP_WrestlerTestPlayerCharacter_C_IsGroundStable_::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch, HalfHeightAdjust) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch::HalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch, ScaledHalfHeightAdjust) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnEndCrouch::ScaledHalfHeightAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged) == 0x000001, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged) == 0x000004, "Wrong size on BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged, PrevMovementMode) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged, NewMovementMode) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged::NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged, PrevCustomMode) == 0x000002, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged::PrevCustomMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged, NewCustomMode) == 0x000003, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnMovementModeChanged::NewCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch, HalfHeightAdjust) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch::HalfHeightAdjust' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch, ScaledHalfHeightAdjust) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_K2_OnStartCrouch::ScaledHalfHeightAdjust' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold) == 0x000044, "Wrong size on BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_int_Variable) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_bool_Variable) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_int_Variable_1) == 0x00000C, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_bool_Variable_1) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_int_Variable_2) == 0x000014, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_bool_Variable_2) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_int_Variable_3) == 0x00001C, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_int_Variable_4) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, Temp_bool_Variable_3) == 0x000024, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, CallFunc_GetProperty_ReturnValue) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, CallFunc_Greater_IntInt_ReturnValue) == 0x00002C, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, CallFunc_Greater_IntInt_ReturnValue_1) == 0x00002D, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, CallFunc_Greater_IntInt_ReturnValue_2) == 0x00002E, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, K2Node_Select_Default) == 0x000030, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, CallFunc_Greater_IntInt_ReturnValue_3) == 0x000034, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::CallFunc_Greater_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, K2Node_Select_Default_1) == 0x000038, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, K2Node_Select_Default_2) == 0x00003C, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold, K2Node_Select_Default_3) == 0x000040, "Member 'BP_WrestlerTestPlayerCharacter_C_KillstreakThreshold::K2Node_Select_Default_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed) == 0x000030, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed, OutFailureReason) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed::OutFailureReason' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed, TagFailure) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed::TagFailure' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed, AbilityFailure) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_OnAbilityFailed::AbilityFailure' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnBloodChanged \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnBloodChanged) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnBloodChanged"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnBloodChanged) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnBloodChanged"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnBloodChanged, CurrentBlood) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnBloodChanged::CurrentBlood' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnBloodChanged, MaxBlood) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_OnBloodChanged::MaxBlood' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnHealthChanged \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnHealthChanged) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnHealthChanged"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnHealthChanged) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnHealthChanged"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnHealthChanged, CurrentHealth) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnHealthChanged::CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnHealthChanged, MaxHealth) == 0x000004, "Member 'BP_WrestlerTestPlayerCharacter_C_OnHealthChanged::MaxHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnLanded \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnLanded) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnLanded"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnLanded) == 0x0000E8, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnLanded"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnLanded, Hit) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnLanded::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8 \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8, Loaded) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnLoaded_113BDC1144C48F2D16FD6A87A0B1DBF8::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged, InNewClan) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_OnPlayerClanChanged::InNewClan' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ProcessControlCue \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ProcessControlCue) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ProcessControlCue"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ProcessControlCue) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ProcessControlCue"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ProcessControlCue, InCue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ProcessControlCue::InCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ReceivePossessed \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ReceivePossessed) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ReceivePossessed"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ReceivePossessed) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ReceivePossessed"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReceivePossessed, NewController) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ReceivePossessed::NewController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ReceiveTick \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ReceiveTick"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ReceiveTick) == 0x000004, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ReceiveTick"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_RefreshHair \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_RefreshHair) == 0x000004, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_RefreshHair"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_RefreshHair) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_RefreshHair"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_RefreshHair, CostumeTage) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_RefreshHair::CostumeTage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent) == 0x0001E8, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, OverlappedComponent) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, OtherActor) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, SweepResult) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, K2Node_MakeStruct_GameplayTargetDataFilter) == 0x0000F8, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::K2Node_MakeStruct_GameplayTargetDataFilter' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, CallFunc_MakeFilterHandle_ReturnValue) == 0x000118, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::CallFunc_MakeFilterHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_OutPins) == 0x000128, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, CallFunc_MeleeHitGameplayEvent_ReturnValue) == 0x000130, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::CallFunc_MeleeHitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent, K2Node_SwitchEnum_CmpSuccess) == 0x0001E0, "Member 'BP_WrestlerTestPlayerCharacter_C_ReportMeleeHitGameplayEvent::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SelectMesh \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SelectMesh) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SelectMesh"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SelectMesh) == 0x0000C0, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SelectMesh"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SelectMesh, CostumeDef) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SelectMesh::CostumeDef' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SelectMesh, Mesh_0) == 0x0000A0, "Member 'BP_WrestlerTestPlayerCharacter_C_SelectMesh::Mesh_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SelectMesh, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerTestPlayerCharacter_C_SelectMesh::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SelectMesh, K2Node_DynamicCast_AsSkeletal_Mesh) == 0x0000B0, "Member 'BP_WrestlerTestPlayerCharacter_C_SelectMesh::K2Node_DynamicCast_AsSkeletal_Mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SelectMesh, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'BP_WrestlerTestPlayerCharacter_C_SelectMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision) == 0x000001, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision) == 0x000002, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision, bRightSide) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_SetMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision) == 0x000001, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision) == 0x000002, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision, NewCollisionMode) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision, bRightSide) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_SetSecondaryMeleeCollision::bRightSide' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers) == 0x000038, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, PlayerController) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_Array_Get_Item) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_FindCameraModifierByClass_ReturnValue) == 0x000020, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_FindCameraModifierByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_IsValid_ReturnValue) == 0x00002C, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers, CallFunc_Less_IntInt_ReturnValue) == 0x000034, "Member 'BP_WrestlerTestPlayerCharacter_C_SetupCameraModifiers::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SetUpCostume \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SetUpCostume) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SetUpCostume"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SetUpCostume) == 0x000020, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SetUpCostume"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetUpCostume, CallFunc_GetPlayerCostumeData_Data) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SetUpCostume::CallFunc_GetPlayerCostumeData_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetUpCostume, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_SetUpCostume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SetUpCostume, CallFunc_SwitchPlayerCostume_self_CastInput) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_SetUpCostume::CallFunc_SwitchPlayerCostume_self_CastInput' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume, InCostume) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SwitchPlayerCostume::InCostume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes, EyesAsset) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SwitchPlayerEyes::EyesAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair, InHair) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SwitchPlayerHair::InHair' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp, InMakeUp) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SwitchPlayerMakeUp::InMakeUp' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing) == 0x000008, "Wrong size on BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing, PiercingAsset) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_SwitchPlayerPiercing::PiercingAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision) == 0x000020, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, NewCollisionMode) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, RightFoot) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::RightFoot' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, ReturnValue) == 0x000002, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, Temp_bool_Variable) == 0x000003, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, Temp_object_Variable) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, Temp_object_Variable_1) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision, K2Node_Select_Default) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleFootCollision::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision) == 0x000020, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, NewCollisionMode) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::NewCollisionMode' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, RightHand) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::RightHand' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, Temp_bool_Variable) == 0x000002, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, Temp_object_Variable) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, Temp_object_Variable_1) == 0x000010, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision, K2Node_Select_Default) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleHandCollision::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint) == 0x000020, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint, CallFunc_ToggleSecondaryViewpoint_ReturnValue) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint::CallFunc_ToggleSecondaryViewpoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint, K2Node_DynamicCast_AsBPI_Debug_Camera) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint::K2Node_DynamicCast_AsBPI_Debug_Camera' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleSecondaryViewpoint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera) == 0x000008, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera) == 0x000020, "Wrong size on BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera, ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera, CallFunc_ToggleThirdPersonCamera_ReturnValue) == 0x000001, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera::CallFunc_ToggleThirdPersonCamera_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera, K2Node_DynamicCast_AsBPI_Debug_Camera) == 0x000008, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera::K2Node_DynamicCast_AsBPI_Debug_Camera' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'BP_WrestlerTestPlayerCharacter_C_ToggleThirdPersonCamera::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_UpdateHealth \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_UpdateHealth) == 0x000001, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_UpdateHealth"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_UpdateHealth) == 0x000001, "Wrong size on BP_WrestlerTestPlayerCharacter_C_UpdateHealth"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_UpdateHealth, Increase) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_UpdateHealth::Increase' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTestPlayerCharacter_C_UserConstructionScript \ +static_assert(alignof(BP_WrestlerTestPlayerCharacter_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_WrestlerTestPlayerCharacter_C_UserConstructionScript"); \ +static_assert(sizeof(BP_WrestlerTestPlayerCharacter_C_UserConstructionScript) == 0x000001, "Wrong size on BP_WrestlerTestPlayerCharacter_C_UserConstructionScript"); \ +static_assert(offsetof(BP_WrestlerTestPlayerCharacter_C_UserConstructionScript, CallFunc_IsPIE_ReturnValue) == 0x000000, "Member 'BP_WrestlerTestPlayerCharacter_C_UserConstructionScript::CallFunc_IsPIE_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerTestPlayerCharacter_C \ +static_assert(alignof(ABP_WrestlerTestPlayerCharacter_C) == 0x000010, "Wrong alignment on ABP_WrestlerTestPlayerCharacter_C"); \ +static_assert(sizeof(ABP_WrestlerTestPlayerCharacter_C) == 0x000F20, "Wrong size on ABP_WrestlerTestPlayerCharacter_C"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, UberGraphFrame) == 0x000CA0, "Member 'ABP_WrestlerTestPlayerCharacter_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, BlobShadowR) == 0x000CA8, "Member 'ABP_WrestlerTestPlayerCharacter_C::BlobShadowR' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, BlobShadowL) == 0x000CB0, "Member 'ABP_WrestlerTestPlayerCharacter_C::BlobShadowL' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, HeadCollider) == 0x000CB8, "Member 'ABP_WrestlerTestPlayerCharacter_C::HeadCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, StuckActorComponent) == 0x000CC0, "Member 'ABP_WrestlerTestPlayerCharacter_C::StuckActorComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, FootstepNoiseComponent) == 0x000CC8, "Member 'ABP_WrestlerTestPlayerCharacter_C::FootstepNoiseComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, WrestlerAbilityTargetingComponent) == 0x000CD0, "Member 'ABP_WrestlerTestPlayerCharacter_C::WrestlerAbilityTargetingComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Headlight) == 0x000CD8, "Member 'ABP_WrestlerTestPlayerCharacter_C::Headlight' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, NoticeableProximityComponent) == 0x000CE0, "Member 'ABP_WrestlerTestPlayerCharacter_C::NoticeableProximityComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, WrestlerCharacterSnowComponent) == 0x000CE8, "Member 'ABP_WrestlerTestPlayerCharacter_C::WrestlerCharacterSnowComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, PhysCollider) == 0x000CF0, "Member 'ABP_WrestlerTestPlayerCharacter_C::PhysCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, OverheadDebugCamera) == 0x000CF8, "Member 'ABP_WrestlerTestPlayerCharacter_C::OverheadDebugCamera' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, SpringArm) == 0x000D00, "Member 'ABP_WrestlerTestPlayerCharacter_C::SpringArm' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, MotionWarping) == 0x000D08, "Member 'ABP_WrestlerTestPlayerCharacter_C::MotionWarping' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, PlayerHeraPropertiesComponent) == 0x000D10, "Member 'ABP_WrestlerTestPlayerCharacter_C::PlayerHeraPropertiesComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, BP_CharacterAudioFunctions_Player) == 0x000D18, "Member 'ABP_WrestlerTestPlayerCharacter_C::BP_CharacterAudioFunctions_Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, HeraReaction) == 0x000D20, "Member 'ABP_WrestlerTestPlayerCharacter_C::HeraReaction' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Passive_Targeting_Component) == 0x000D28, "Member 'ABP_WrestlerTestPlayerCharacter_C::Passive_Targeting_Component' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Camera) == 0x000D30, "Member 'ABP_WrestlerTestPlayerCharacter_C::Camera' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, WrestlerFearEmitter) == 0x000D38, "Member 'ABP_WrestlerTestPlayerCharacter_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, AIPerceptionStimuliSource) == 0x000D40, "Member 'ABP_WrestlerTestPlayerCharacter_C::AIPerceptionStimuliSource' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CamBlend_ResetStrength_E7A9CCF04B2E1C5B581F5C82EA04AA76) == 0x000D48, "Member 'ABP_WrestlerTestPlayerCharacter_C::CamBlend_ResetStrength_E7A9CCF04B2E1C5B581F5C82EA04AA76' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CamBlend__Direction_E7A9CCF04B2E1C5B581F5C82EA04AA76) == 0x000D4C, "Member 'ABP_WrestlerTestPlayerCharacter_C::CamBlend__Direction_E7A9CCF04B2E1C5B581F5C82EA04AA76' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CamBlend) == 0x000D50, "Member 'ABP_WrestlerTestPlayerCharacter_C::CamBlend' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Camreset_ResetStrength_CF864212427E2BEF78B6E0A08AD7A275) == 0x000D58, "Member 'ABP_WrestlerTestPlayerCharacter_C::Camreset_ResetStrength_CF864212427E2BEF78B6E0A08AD7A275' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Camreset__Direction_CF864212427E2BEF78B6E0A08AD7A275) == 0x000D5C, "Member 'ABP_WrestlerTestPlayerCharacter_C::Camreset__Direction_CF864212427E2BEF78B6E0A08AD7A275' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Camreset) == 0x000D60, "Member 'ABP_WrestlerTestPlayerCharacter_C::Camreset' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, DebugCameraClass) == 0x000D68, "Member 'ABP_WrestlerTestPlayerCharacter_C::DebugCameraClass' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, DebugCamera) == 0x000D90, "Member 'ABP_WrestlerTestPlayerCharacter_C::DebugCamera' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CameraModifierClasses) == 0x000D98, "Member 'ABP_WrestlerTestPlayerCharacter_C::CameraModifierClasses' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Footsteps) == 0x000DA8, "Member 'ABP_WrestlerTestPlayerCharacter_C::Footsteps' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, FeedPoseSnapshot) == 0x000DB8, "Member 'ABP_WrestlerTestPlayerCharacter_C::FeedPoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Stable_Ground) == 0x000DF0, "Member 'ABP_WrestlerTestPlayerCharacter_C::Stable_Ground' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, AbiltyFreezeHeld) == 0x000E08, "Member 'ABP_WrestlerTestPlayerCharacter_C::AbiltyFreezeHeld' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, AbilityFreezeHandle) == 0x000E0C, "Member 'ABP_WrestlerTestPlayerCharacter_C::AbilityFreezeHandle' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, PB_Combat_Player_Dead) == 0x000E10, "Member 'ABP_WrestlerTestPlayerCharacter_C::PB_Combat_Player_Dead' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, XTapHeld) == 0x000E18, "Member 'ABP_WrestlerTestPlayerCharacter_C::XTapHeld' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, XHoldTime) == 0x000E20, "Member 'ABP_WrestlerTestPlayerCharacter_C::XHoldTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, XGaptime) == 0x000E28, "Member 'ABP_WrestlerTestPlayerCharacter_C::XGaptime' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, YTapHeld) == 0x000E30, "Member 'ABP_WrestlerTestPlayerCharacter_C::YTapHeld' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, YHoldTime) == 0x000E38, "Member 'ABP_WrestlerTestPlayerCharacter_C::YHoldTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, YGaptime) == 0x000E40, "Member 'ABP_WrestlerTestPlayerCharacter_C::YGaptime' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Refill_Mastery) == 0x000E48, "Member 'ABP_WrestlerTestPlayerCharacter_C::Refill_Mastery' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Refill_Affect) == 0x000E50, "Member 'ABP_WrestlerTestPlayerCharacter_C::Refill_Affect' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Refill_Strike) == 0x000E58, "Member 'ABP_WrestlerTestPlayerCharacter_C::Refill_Strike' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Refill_Relocate) == 0x000E60, "Member 'ABP_WrestlerTestPlayerCharacter_C::Refill_Relocate' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, RefillRate_Bloodbath) == 0x000E68, "Member 'ABP_WrestlerTestPlayerCharacter_C::RefillRate_Bloodbath' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, RefillRate_Perk) == 0x000E70, "Member 'ABP_WrestlerTestPlayerCharacter_C::RefillRate_Perk' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, UseCostumes) == 0x000E78, "Member 'ABP_WrestlerTestPlayerCharacter_C::UseCostumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, BlendoutRot) == 0x000E80, "Member 'ABP_WrestlerTestPlayerCharacter_C::BlendoutRot' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CamClip) == 0x000E98, "Member 'ABP_WrestlerTestPlayerCharacter_C::CamClip' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, InStealth) == 0x000E9C, "Member 'ABP_WrestlerTestPlayerCharacter_C::InStealth' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, StealthKillStreak) == 0x000EA0, "Member 'ABP_WrestlerTestPlayerCharacter_C::StealthKillStreak' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, WornCostumes) == 0x000EA8, "Member 'ABP_WrestlerTestPlayerCharacter_C::WornCostumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, UniqueCostumeCounters) == 0x000EB0, "Member 'ABP_WrestlerTestPlayerCharacter_C::UniqueCostumeCounters' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, HealthCollectables) == 0x000EB8, "Member 'ABP_WrestlerTestPlayerCharacter_C::HealthCollectables' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, UseHealthCollectables) == 0x000EC0, "Member 'ABP_WrestlerTestPlayerCharacter_C::UseHealthCollectables' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, EngagedEffect) == 0x000EC8, "Member 'ABP_WrestlerTestPlayerCharacter_C::EngagedEffect' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, EngagedVisBonus) == 0x000ED0, "Member 'ABP_WrestlerTestPlayerCharacter_C::EngagedVisBonus' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, KillStreak) == 0x000ED4, "Member 'ABP_WrestlerTestPlayerCharacter_C::KillStreak' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Totalkillstreaks) == 0x000ED8, "Member 'ABP_WrestlerTestPlayerCharacter_C::Totalkillstreaks' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, PendingMaxAwareness) == 0x000EE0, "Member 'ABP_WrestlerTestPlayerCharacter_C::PendingMaxAwareness' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CurrentMaxAwareness) == 0x000EE8, "Member 'ABP_WrestlerTestPlayerCharacter_C::CurrentMaxAwareness' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, CueProcessed) == 0x000EF0, "Member 'ABP_WrestlerTestPlayerCharacter_C::CueProcessed' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, InteractEvent) == 0x000F00, "Member 'ABP_WrestlerTestPlayerCharacter_C::InteractEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, Crouchheld) == 0x000F10, "Member 'ABP_WrestlerTestPlayerCharacter_C::Crouchheld' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTestPlayerCharacter_C, RTPC_Interpolation_Time) == 0x000F14, "Member 'ABP_WrestlerTestPlayerCharacter_C::RTPC_Interpolation_Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP \ +static_assert(alignof(Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP) == 0x000004, "Wrong alignment on Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP"); \ +static_assert(sizeof(Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP) == 0x000014, "Wrong size on Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP"); \ +static_assert(offsetof(Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP, EntryPoint) == 0x000000, "Member 'Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP, Temp_delegate_Variable) == 0x000004, "Member 'Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C_ExecuteUbergraph_Seq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C \ +static_assert(alignof(USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C) == 0x000008, "Wrong alignment on USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C"); \ +static_assert(sizeof(USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C) == 0x000040, "Wrong size on USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C"); \ +static_assert(offsetof(USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USeq_Out_Of_Bounds_Mechanic_Malkavian_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset \ +static_assert(alignof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset) == 0x000008, "Wrong alignment on GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset"); \ +static_assert(sizeof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset) == 0x000148, "Wrong size on GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, EntryPoint) == 0x000000, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, K2Node_Event_EventData) == 0x000008, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, CallFunc_GetActorInfo_ReturnValue) == 0x0000B8, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, K2Node_DynamicCast_AsWrestler_Character) == 0x000100, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000110, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, CallFunc_GetStableGround_ReturnValue) == 0x000128, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::CallFunc_GetStableGround_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset, CallFunc_K2_TeleportTo_ReturnValue) == 0x000140, "Member 'GA_Player_OutOfWorld_Reset_C_ExecuteUbergraph_GA_Player_OutOfWorld_Reset::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings \ +static_assert(alignof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings) == 0x000060, "Wrong size on GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000000, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000018, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000028, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000040, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x000050, "Member 'GA_Player_OutOfWorld_Reset_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_OutOfWorld_Reset_C_GetHighestDepth \ +static_assert(alignof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth) == 0x000008, "Wrong alignment on GA_Player_OutOfWorld_Reset_C_GetHighestDepth"); \ +static_assert(sizeof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth) == 0x0000E0, "Wrong size on GA_Player_OutOfWorld_Reset_C_GetHighestDepth"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, Depth) == 0x000000, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, HighestDepth) == 0x000008, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::HighestDepth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, K2Node_MakeArray_Array) == 0x000020, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_Array_Get_Item) == 0x000030, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, K2Node_DynamicCast_AsBPI_Map_Boundary) == 0x000038, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::K2Node_DynamicCast_AsBPI_Map_Boundary' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_GetActorInfo_ReturnValue) == 0x000050, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_Less_IntInt_ReturnValue) == 0x000098, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000A0, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_GetLocationDepth_Depth) == 0x0000B8, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_GetLocationDepth_Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_GetLocationDepth_Location) == 0x0000C0, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_GetLocationDepth_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_GetHighestDepth, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'GA_Player_OutOfWorld_Reset_C_GetHighestDepth::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Player_OutOfWorld_Reset_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_OutOfWorld_Reset_C_SequenceEvent \ +static_assert(alignof(GA_Player_OutOfWorld_Reset_C_SequenceEvent) == 0x000004, "Wrong alignment on GA_Player_OutOfWorld_Reset_C_SequenceEvent"); \ +static_assert(sizeof(GA_Player_OutOfWorld_Reset_C_SequenceEvent) == 0x000008, "Wrong size on GA_Player_OutOfWorld_Reset_C_SequenceEvent"); \ +static_assert(offsetof(GA_Player_OutOfWorld_Reset_C_SequenceEvent, Selection) == 0x000000, "Member 'GA_Player_OutOfWorld_Reset_C_SequenceEvent::Selection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_OutOfWorld_Reset_C \ +static_assert(alignof(UGA_Player_OutOfWorld_Reset_C) == 0x000008, "Wrong alignment on UGA_Player_OutOfWorld_Reset_C"); \ +static_assert(sizeof(UGA_Player_OutOfWorld_Reset_C) == 0x0006A8, "Wrong size on UGA_Player_OutOfWorld_Reset_C"); \ +static_assert(offsetof(UGA_Player_OutOfWorld_Reset_C, UberGraphFrame) == 0x000668, "Member 'UGA_Player_OutOfWorld_Reset_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_OutOfWorld_Reset_C, Async_Task) == 0x000670, "Member 'UGA_Player_OutOfWorld_Reset_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_OutOfWorld_Reset_C, SequenceActor) == 0x000678, "Member 'UGA_Player_OutOfWorld_Reset_C::SequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_OutOfWorld_Reset_C, LoadedSequence) == 0x000680, "Member 'UGA_Player_OutOfWorld_Reset_C::LoadedSequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_OutOfWorld_Reset_C, Playback_Settings) == 0x000688, "Member 'UGA_Player_OutOfWorld_Reset_C::Playback_Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_EventReceived_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset) == 0x000010, "Wrong alignment on GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset) == 0x0009D0, "Wrong size on GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, EntryPoint) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_6) == 0x000004, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_6) == 0x000010, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_5) == 0x0000D0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_5) == 0x0000D8, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_4) == 0x000198, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_4) == 0x0001A0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_3) == 0x000260, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_3) == 0x000268, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_2) == 0x000328, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_2) == 0x000330, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag_1) == 0x0003F0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData_1) == 0x0003F8, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004A8, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventTag) == 0x0004B8, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_EventData) == 0x0004C0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_6) == 0x000570, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, Temp_struct_Variable) == 0x000580, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, Temp_struct_Variable_1) == 0x000630, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, Temp_bool_Variable) == 0x000638, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_MakeStruct_LinearColor) == 0x00063C, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_MakeStruct_LinearColor' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CreateDelegate_OutputDelegate_7) == 0x00064C, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_WaitRealDelay_ReturnValue) == 0x000660, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_IsValid_ReturnValue) == 0x000668, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_Event_EventData) == 0x000670, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_Event_bWasCancelled) == 0x000720, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetActorInfo_ReturnValue) == 0x000728, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_CustomEvent_Boundary) == 0x000770, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_CustomEvent_Boundary' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_AsBPI_Map_Boundary) == 0x000778, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_AsBPI_Map_Boundary' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_bSuccess) == 0x000788, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000790, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetResetTransform_ResetTransform) == 0x0007B0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetResetTransform_ResetTransform' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_BreakTransform_Location) == 0x000810, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_BreakTransform_Rotation) == 0x000828, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_BreakTransform_Scale) == 0x000840, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_K2_TeleportTo_ReturnValue) == 0x000858, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings) == 0x000860, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_MakeStruct_CharacterSequenceData) == 0x000870, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_MakeStruct_CharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0008F0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetTransform_ReturnValue) == 0x000900, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000960, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_AsWrestler_Camera_Manager) == 0x000968, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_AsWrestler_Camera_Manager' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_bSuccess_1) == 0x000970, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_IsPlayerFabien_Return) == 0x000971, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_IsPlayerFabien_Return_1) == 0x000972, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000978, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_Select_Default) == 0x000980, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor) == 0x000988, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_PlaySequenceAndWaitForEvent_ReturnValue) == 0x000990, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_PlaySequenceAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_IsValid_ReturnValue_1) == 0x000998, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0009A0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, CallFunc_GetPlayerPawn_ReturnValue) == 0x0009A8, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0009B0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset, K2Node_DynamicCast_bSuccess_2) == 0x0009C0, "Member 'GA_Player_HubBoundary_Reset_C_ExecuteUbergraph_GA_Player_HubBoundary_Reset::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings) == 0x000060, "Wrong size on GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000018, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000028, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000040, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x000050, "Member 'GA_Player_HubBoundary_Reset_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_GetHighestDepth \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_GetHighestDepth) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_GetHighestDepth"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_GetHighestDepth) == 0x0000E0, "Wrong size on GA_Player_HubBoundary_Reset_C_GetHighestDepth"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, Depth) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, HighestDepth) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::HighestDepth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, K2Node_MakeArray_Array) == 0x000020, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_Array_Get_Item) == 0x000030, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, K2Node_DynamicCast_AsBPI_Map_Boundary) == 0x000038, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::K2Node_DynamicCast_AsBPI_Map_Boundary' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_GetActorInfo_ReturnValue) == 0x000050, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_Less_IntInt_ReturnValue) == 0x000098, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000A0, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_GetLocationDepth_Depth) == 0x0000B8, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_GetLocationDepth_Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_GetLocationDepth_Location) == 0x0000C0, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_GetLocationDepth_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_GetHighestDepth, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'GA_Player_HubBoundary_Reset_C_GetHighestDepth::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_K2_OnEndAbility \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Player_HubBoundary_Reset_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Player_HubBoundary_Reset_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnCancelled_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceFinished_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnSequencePause_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnSequencePlay_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceStopped_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930 \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930) == 0x0000B8, "Wrong size on GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930, EventTag) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930, EventData) == 0x000008, "Member 'GA_Player_HubBoundary_Reset_C_OnSequenceUpdate_278531274C51841D136CC89B3CBE8930::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_ResetPlayer \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_ResetPlayer) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_Reset_C_ResetPlayer"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_ResetPlayer) == 0x000008, "Wrong size on GA_Player_HubBoundary_Reset_C_ResetPlayer"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_ResetPlayer, Boundary) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_ResetPlayer::Boundary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_Reset_C_SequenceEvent \ +static_assert(alignof(GA_Player_HubBoundary_Reset_C_SequenceEvent) == 0x000004, "Wrong alignment on GA_Player_HubBoundary_Reset_C_SequenceEvent"); \ +static_assert(sizeof(GA_Player_HubBoundary_Reset_C_SequenceEvent) == 0x000008, "Wrong size on GA_Player_HubBoundary_Reset_C_SequenceEvent"); \ +static_assert(offsetof(GA_Player_HubBoundary_Reset_C_SequenceEvent, Selection) == 0x000000, "Member 'GA_Player_HubBoundary_Reset_C_SequenceEvent::Selection' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_HubBoundary_Reset_C \ +static_assert(alignof(UGA_Player_HubBoundary_Reset_C) == 0x000008, "Wrong alignment on UGA_Player_HubBoundary_Reset_C"); \ +static_assert(sizeof(UGA_Player_HubBoundary_Reset_C) == 0x0006B0, "Wrong size on UGA_Player_HubBoundary_Reset_C"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, UberGraphFrame) == 0x000668, "Member 'UGA_Player_HubBoundary_Reset_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, Async_Task) == 0x000670, "Member 'UGA_Player_HubBoundary_Reset_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, SequenceActor) == 0x000678, "Member 'UGA_Player_HubBoundary_Reset_C::SequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, LoadedSequence) == 0x000680, "Member 'UGA_Player_HubBoundary_Reset_C::LoadedSequence' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, Playback_Settings) == 0x000688, "Member 'UGA_Player_HubBoundary_Reset_C::Playback_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_Reset_C, LoadedSequence_Malkavian) == 0x0006A8, "Member 'UGA_Player_HubBoundary_Reset_C::LoadedSequence_Malkavian' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_BarkPlayerDeath \ +static_assert(alignof(GA_Torpor_C_BarkPlayerDeath) == 0x000008, "Wrong alignment on GA_Torpor_C_BarkPlayerDeath"); \ +static_assert(sizeof(GA_Torpor_C_BarkPlayerDeath) == 0x0001A0, "Wrong size on GA_Torpor_C_BarkPlayerDeath"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, BarkEnemy) == 0x000000, "Member 'GA_Torpor_C_BarkPlayerDeath::BarkEnemy' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, Distance) == 0x000008, "Member 'GA_Torpor_C_BarkPlayerDeath::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'GA_Torpor_C_BarkPlayerDeath::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, Temp_int_Array_Index_Variable) == 0x000018, "Member 'GA_Torpor_C_BarkPlayerDeath::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000020, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000048, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Array_Get_Item) == 0x000060, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, K2Node_MakeArray_Array) == 0x000070, "Member 'GA_Torpor_C_BarkPlayerDeath::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000080, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_GetDistanceTo_ReturnValue) == 0x000098, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_LineTraceSingle_OutHit) == 0x0000A0, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_LineTraceSingle_ReturnValue) == 0x000188, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000189, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, K2Node_VariableSet_Distance_ImplicitCast) == 0x000190, "Member 'GA_Torpor_C_BarkPlayerDeath::K2Node_VariableSet_Distance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_BarkPlayerDeath, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000198, "Member 'GA_Torpor_C_BarkPlayerDeath::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_EventReceived_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_ExecuteUbergraph_GA_Torpor \ +static_assert(alignof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor) == 0x000010, "Wrong alignment on GA_Torpor_C_ExecuteUbergraph_GA_Torpor"); \ +static_assert(sizeof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor) == 0x000A90, "Wrong size on GA_Torpor_C_ExecuteUbergraph_GA_Torpor"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, EntryPoint) == 0x000000, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetHUDWidget_ReturnValue) == 0x000010, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_AsWBP_Main_HUD_VS) == 0x000018, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_AsWBP_Main_HUD_VS' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_4) == 0x000024, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_4) == 0x000030, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate) == 0x0000E0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_3) == 0x0000F0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_3) == 0x0000F8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001A8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_2) == 0x0001B8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_2) == 0x0001C0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_1) == 0x000280, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_1) == 0x000288, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_3) == 0x000338, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag) == 0x000348, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData) == 0x000350, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_4) == 0x000400, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, Temp_struct_Variable) == 0x000410, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, Temp_struct_Variable_1) == 0x0004C0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004C8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004D8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004E8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_8) == 0x0004F8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000508, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_9) == 0x000510, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_WaitRealDelay_ReturnValue) == 0x000520, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_10) == 0x000528, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsValid_ReturnValue) == 0x000538, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000540, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000548, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsValid_ReturnValue_1) == 0x000550, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000558, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000560, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x000568, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_6) == 0x000570, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_6) == 0x000578, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_MovieSceneSequencePlaybackSettings) == 0x000628, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_MovieSceneSequencePlaybackSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_CharacterSequenceData) == 0x000650, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_CharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0006D0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0006D8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeArray_Array) == 0x0006E0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0006F0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_bSuccess_1) == 0x0006F8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000700, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsDeadByMasquerade_ReturnValue) == 0x000718, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsDeadByMasquerade_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeArray_Array_1) == 0x000720, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x000730, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetTransform_ReturnValue) == 0x000740, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor) == 0x0007A0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_PlaySequenceAndWaitForEvent_ReturnValue) == 0x0007A8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_PlaySequenceAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsValid_ReturnValue_2) == 0x0007B0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0007B8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0007C0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_DynamicCast_bSuccess_2) == 0x0007D0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_11) == 0x0007D4, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0007E8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0007F0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventTag_5) == 0x0007F8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CustomEvent_EventData_5) == 0x000800, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsValid_ReturnValue_3) == 0x0008B0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0008B8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0008C0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_K2_CommitAbility_ReturnValue) == 0x0008C8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_StartCameraShake_ReturnValue) == 0x0008D0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_StartCameraShake_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_StartCameraShake_ReturnValue_1) == 0x0008D8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_StartCameraShake_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x0008E0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_FindCameraModifierByClass_ReturnValue) == 0x0008E8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_FindCameraModifierByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsValid_ReturnValue_4) == 0x0008F0, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x0008F8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_Event_bWasCancelled) == 0x000900, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_GetPlayerController_ReturnValue) == 0x000908, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_IsPartitionedWorld_ReturnValue) == 0x000910, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_IsPartitionedWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_CreateDelegate_OutputDelegate_12) == 0x000914, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_PunishableXP_ReturnValue) == 0x000924, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_PunishableXP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_Multiply_IntInt_ReturnValue) == 0x000928, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_Conv_IntToText_ReturnValue) == 0x000930, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_Conv_IntToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_Conv_IntToText_ReturnValue_1) == 0x000948, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_Conv_IntToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_WrestlerNotificationData) == 0x000960, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_WrestlerNotificationData' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_WrestlerNotificationData_1) == 0x0009B8, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_WrestlerNotificationData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_Conv_IntToText_ReturnValue_2) == 0x000A10, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_Conv_IntToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, K2Node_MakeStruct_WrestlerNotificationData_2) == 0x000A28, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::K2Node_MakeStruct_WrestlerNotificationData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_ExecuteUbergraph_GA_Torpor, CallFunc_StartCameraFade_Duration_ImplicitCast) == 0x000A80, "Member 'GA_Torpor_C_ExecuteUbergraph_GA_Torpor::CallFunc_StartCameraFade_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_K2_OnEndAbility \ +static_assert(alignof(GA_Torpor_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Torpor_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Torpor_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Torpor_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Torpor_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Torpor_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnCancelled_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnSequenceFinished_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnSequencePause_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnSequencePlay_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnSequenceStopped_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118 \ +static_assert(alignof(GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118) == 0x000008, "Wrong alignment on GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(sizeof(GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118) == 0x0000B8, "Wrong size on GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118, EventTag) == 0x000000, "Member 'GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118, EventData) == 0x000008, "Member 'GA_Torpor_C_OnSequenceUpdate_9DF358C1438ED075C5E92FAAD9831118::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_PlayerStakedExert \ +static_assert(alignof(GA_Torpor_C_PlayerStakedExert) == 0x000008, "Wrong alignment on GA_Torpor_C_PlayerStakedExert"); \ +static_assert(sizeof(GA_Torpor_C_PlayerStakedExert) == 0x000040, "Wrong size on GA_Torpor_C_PlayerStakedExert"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Torpor_C_PlayerStakedExert::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000008, "Member 'GA_Torpor_C_PlayerStakedExert::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, K2Node_MakeArray_Array) == 0x000010, "Member 'GA_Torpor_C_PlayerStakedExert::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, CallFunc_GetDialogueInfo_ReturnValue) == 0x000020, "Member 'GA_Torpor_C_PlayerStakedExert::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'GA_Torpor_C_PlayerStakedExert::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PlayerStakedExert, K2Node_MakeArray_Array_1) == 0x000030, "Member 'GA_Torpor_C_PlayerStakedExert::K2Node_MakeArray_Array_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_PunishableXP \ +static_assert(alignof(GA_Torpor_C_PunishableXP) == 0x000008, "Wrong alignment on GA_Torpor_C_PunishableXP"); \ +static_assert(sizeof(GA_Torpor_C_PunishableXP) == 0x000038, "Wrong size on GA_Torpor_C_PunishableXP"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, ReturnValue) == 0x000000, "Member 'GA_Torpor_C_PunishableXP::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Difficulty) == 0x000008, "Member 'GA_Torpor_C_PunishableXP::Difficulty' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable) == 0x000010, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_1) == 0x000014, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_2) == 0x000018, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_3) == 0x00001C, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_4) == 0x000020, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_5) == 0x000024, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, Temp_int_Variable_6) == 0x000028, "Member 'GA_Torpor_C_PunishableXP::Temp_int_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, CallFunc_GetProperty_ReturnValue) == 0x00002C, "Member 'GA_Torpor_C_PunishableXP::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_PunishableXP, K2Node_Select_Default) == 0x000030, "Member 'GA_Torpor_C_PunishableXP::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_Toggle_Input \ +static_assert(alignof(GA_Torpor_C_Toggle_Input) == 0x000008, "Wrong alignment on GA_Torpor_C_Toggle_Input"); \ +static_assert(sizeof(GA_Torpor_C_Toggle_Input) == 0x000020, "Wrong size on GA_Torpor_C_Toggle_Input"); \ +static_assert(offsetof(GA_Torpor_C_Toggle_Input, IsIgnored) == 0x000000, "Member 'GA_Torpor_C_Toggle_Input::IsIgnored' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_Toggle_Input, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Torpor_C_Toggle_Input::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_Toggle_Input, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000010, "Member 'GA_Torpor_C_Toggle_Input::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_Toggle_Input, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000018, "Member 'GA_Torpor_C_Toggle_Input::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_Toggle_Input, K2Node_SwitchEnum_CmpSuccess) == 0x000019, "Member 'GA_Torpor_C_Toggle_Input::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Torpor_C_XP_punishment \ +static_assert(alignof(GA_Torpor_C_XP_punishment) == 0x000008, "Wrong alignment on GA_Torpor_C_XP_punishment"); \ +static_assert(sizeof(GA_Torpor_C_XP_punishment) == 0x000028, "Wrong size on GA_Torpor_C_XP_punishment"); \ +static_assert(offsetof(GA_Torpor_C_XP_punishment, Difficulty) == 0x000000, "Member 'GA_Torpor_C_XP_punishment::Difficulty' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_XP_punishment, CallFunc_PunishableXP_ReturnValue) == 0x000008, "Member 'GA_Torpor_C_XP_punishment::CallFunc_PunishableXP_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_XP_punishment, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Torpor_C_XP_punishment::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_XP_punishment, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'GA_Torpor_C_XP_punishment::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Torpor_C_XP_punishment, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Torpor_C_XP_punishment::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Torpor_C \ +static_assert(alignof(UGA_Torpor_C) == 0x000008, "Wrong alignment on UGA_Torpor_C"); \ +static_assert(sizeof(UGA_Torpor_C) == 0x0006A8, "Wrong size on UGA_Torpor_C"); \ +static_assert(offsetof(UGA_Torpor_C, UberGraphFrame) == 0x000668, "Member 'UGA_Torpor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, TorporDuration) == 0x000670, "Member 'UGA_Torpor_C::TorporDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, DeathAnim) == 0x000678, "Member 'UGA_Torpor_C::DeathAnim' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, CamFadeDuration) == 0x000680, "Member 'UGA_Torpor_C::CamFadeDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, bIsIgnoreInput) == 0x000688, "Member 'UGA_Torpor_C::bIsIgnoreInput' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, PlayerController) == 0x000690, "Member 'UGA_Torpor_C::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, EnemyBarkDelay) == 0x000698, "Member 'UGA_Torpor_C::EnemyBarkDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Torpor_C, EnemyBarkTag) == 0x0006A0, "Member 'UGA_Torpor_C::EnemyBarkTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition \ +static_assert(alignof(BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition) == 0x000004, "Wrong alignment on BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition"); \ +static_assert(sizeof(BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition) == 0x000004, "Wrong size on BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition"); \ +static_assert(offsetof(BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition, EntryPoint) == 0x000000, "Member 'BP_SafiaRecallPosition_C_ExecuteUbergraph_BP_SafiaRecallPosition::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_SafiaRecallPosition_C \ +static_assert(alignof(ABP_SafiaRecallPosition_C) == 0x000008, "Wrong alignment on ABP_SafiaRecallPosition_C"); \ +static_assert(sizeof(ABP_SafiaRecallPosition_C) == 0x0002B8, "Wrong size on ABP_SafiaRecallPosition_C"); \ +static_assert(offsetof(ABP_SafiaRecallPosition_C, UberGraphFrame) == 0x000298, "Member 'ABP_SafiaRecallPosition_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_SafiaRecallPosition_C, Cylinder) == 0x0002A0, "Member 'ABP_SafiaRecallPosition_C::Cylinder' has a wrong offset!"); \ +static_assert(offsetof(ABP_SafiaRecallPosition_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_SafiaRecallPosition_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_SafiaRecallPosition_C, RecallPositionLifespan) == 0x0002B0, "Member 'ABP_SafiaRecallPosition_C::RecallPositionLifespan' has a wrong offset!"); \ +static_assert(offsetof(ABP_SafiaRecallPosition_C, Enabled) == 0x0002B4, "Member 'ABP_SafiaRecallPosition_C::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205 \ +static_assert(alignof(GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205) == 0x000008, "Wrong alignment on GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205"); \ +static_assert(sizeof(GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205) == 0x0000B8, "Wrong size on GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205"); \ +static_assert(offsetof(GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205, EventTag) == 0x000000, "Member 'GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205, EventData) == 0x000008, "Member 'GA_QuestResponse_C_EventReceived_029317104926483113103D940AD32205::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse \ +static_assert(alignof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse) == 0x000008, "Wrong alignment on GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse"); \ +static_assert(sizeof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse) == 0x0006E0, "Wrong size on GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, EntryPoint) == 0x000000, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000008, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventTag_3) == 0x000010, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventData_3) == 0x000018, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate) == 0x0000C8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventTag_2) == 0x0000D8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventData_2) == 0x0000E0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_1) == 0x000190, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventTag_1) == 0x0001A0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventData_1) == 0x0001A8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_2) == 0x000258, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventTag) == 0x000268, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventData) == 0x000270, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_3) == 0x000320, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, Temp_struct_Variable) == 0x000330, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, Temp_struct_Variable_1) == 0x0003E0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003F8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_6) == 0x000408, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000418, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, Temp_bool_Variable) == 0x000420, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_IsValid_ReturnValue) == 0x000421, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CreateDelegate_OutputDelegate_7) == 0x000424, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_Event_EventData) == 0x000438, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventTag_4) == 0x0004E8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_CustomEvent_EventData_4) == 0x0004F0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_IsValid_ReturnValue_1) == 0x0005A0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_DynamicCast_AsAnim_Montage) == 0x0005A8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_DynamicCast_AsAnim_Montage' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_DynamicCast_bSuccess) == 0x0005B0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0005B8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_IsValid_ReturnValue_2) == 0x0005C0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_IsValid_ReturnValue_3) == 0x0005C1, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetPlayerPawn_ReturnValue) == 0x0005C8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0005D0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, K2Node_DynamicCast_bSuccess_1) == 0x0005E0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005E8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000600, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000608, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000610, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000628, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000630, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000648, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000660, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_GetController_ReturnValue) == 0x000678, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_BreakRotator_Roll) == 0x000680, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_BreakRotator_Pitch) == 0x000684, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_BreakRotator_Yaw) == 0x000688, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_MakeRotator_ReturnValue) == 0x000690, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_K2_GetActorRotation_ReturnValue_1) == 0x0006A8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_K2_GetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_RInterpTo_ReturnValue) == 0x0006C0, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0006D8, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0006DC, "Member 'GA_QuestResponse_C_ExecuteUbergraph_GA_QuestResponse::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_QuestResponse_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_QuestResponse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_QuestResponse_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_QuestResponse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_QuestResponse_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_QuestResponse_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205 \ +static_assert(alignof(GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205) == 0x000008, "Wrong alignment on GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205"); \ +static_assert(sizeof(GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205) == 0x0000B8, "Wrong size on GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205"); \ +static_assert(offsetof(GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205, EventTag) == 0x000000, "Member 'GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205, EventData) == 0x000008, "Member 'GA_QuestResponse_C_OnBlendOut_029317104926483113103D940AD32205::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205 \ +static_assert(alignof(GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205) == 0x000008, "Wrong alignment on GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205"); \ +static_assert(sizeof(GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205) == 0x0000B8, "Wrong size on GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205"); \ +static_assert(offsetof(GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205, EventTag) == 0x000000, "Member 'GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205, EventData) == 0x000008, "Member 'GA_QuestResponse_C_OnCancelled_029317104926483113103D940AD32205::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205 \ +static_assert(alignof(GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205) == 0x000008, "Wrong alignment on GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205"); \ +static_assert(sizeof(GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205) == 0x0000B8, "Wrong size on GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205"); \ +static_assert(offsetof(GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205, EventTag) == 0x000000, "Member 'GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205, EventData) == 0x000008, "Member 'GA_QuestResponse_C_OnCompleted_029317104926483113103D940AD32205::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205 \ +static_assert(alignof(GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205) == 0x000008, "Wrong alignment on GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205"); \ +static_assert(sizeof(GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205) == 0x0000B8, "Wrong size on GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205"); \ +static_assert(offsetof(GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205, EventTag) == 0x000000, "Member 'GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205, EventData) == 0x000008, "Member 'GA_QuestResponse_C_OnInterrupted_029317104926483113103D940AD32205::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestResponse_C \ +static_assert(alignof(UGA_QuestResponse_C) == 0x000008, "Wrong alignment on UGA_QuestResponse_C"); \ +static_assert(sizeof(UGA_QuestResponse_C) == 0x000678, "Wrong size on UGA_QuestResponse_C"); \ +static_assert(offsetof(UGA_QuestResponse_C, UberGraphFrame) == 0x000668, "Member 'UGA_QuestResponse_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestResponse_C, MontageToPlay) == 0x000670, "Member 'UGA_QuestResponse_C::MontageToPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up \ +static_assert(alignof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up) == 0x000008, "Wrong alignment on GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up"); \ +static_assert(sizeof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up) == 0x000158, "Wrong size on GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, EntryPoint) == 0x000000, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, K2Node_Event_bWasCancelled) == 0x000014, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_K2_CommitAbility_ReturnValue) == 0x000015, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_Vector_Up_ReturnValue) == 0x000018, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_GetActorForwardVector_ReturnValue) == 0x000038, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_VLerp_ReturnValue) == 0x000050, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000068, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000070, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_IsValid_ReturnValue) == 0x000148, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x00014C, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x000150, "Member 'GA_Movement_WallJump_Up_C_ExecuteUbergraph_GA_Movement_WallJump_Up::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_Up_C_K2_OnEndAbility \ +static_assert(alignof(GA_Movement_WallJump_Up_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Movement_WallJump_Up_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Movement_WallJump_Up_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Movement_WallJump_Up_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Movement_WallJump_Up_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection \ +static_assert(alignof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection) == 0x000008, "Wrong alignment on GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection"); \ +static_assert(sizeof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection) == 0x000058, "Wrong size on GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, Direction) == 0x000000, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::Direction' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000018, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, CallFunc_GetYawPitchFromVector_Yaw) == 0x000020, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, CallFunc_GetYawPitchFromVector_Pitch) == 0x000024, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, K2Node_DynamicCast_AsPawn) == 0x000028, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, CallFunc_MakeRotator_ReturnValue) == 0x000038, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection, CallFunc_GetController_ReturnValue) == 0x000050, "Member 'GA_Movement_WallJump_Up_C_SnapControllerRotationToDirection::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput \ +static_assert(alignof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput) == 0x000008, "Wrong alignment on GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput"); \ +static_assert(sizeof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput) == 0x000020, "Wrong size on GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput, Ignore) == 0x000000, "Member 'GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput::Ignore' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput, CallFunc_GetController_ReturnValue) == 0x000010, "Member 'GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_Movement_WallJump_Up_C_ToggleIgnoreLookInput::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Movement_WallJump_Up_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Movement_WallJump_Up_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility) == 0x000090, "Wrong size on GA_Movement_WallJump_Up_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, K2Node_DynamicCast_AsWrestler_Character) == 0x000080, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Movement_WallJump_Up_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000088, "Member 'GA_Movement_WallJump_Up_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Movement_WallJump_Up_C \ +static_assert(alignof(UGA_Movement_WallJump_Up_C) == 0x000008, "Wrong alignment on UGA_Movement_WallJump_Up_C"); \ +static_assert(sizeof(UGA_Movement_WallJump_Up_C) == 0x000688, "Wrong size on UGA_Movement_WallJump_Up_C"); \ +static_assert(offsetof(UGA_Movement_WallJump_Up_C, UberGraphFrame) == 0x000668, "Member 'UGA_Movement_WallJump_Up_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_Up_C, WallJumpHeight) == 0x000670, "Member 'UGA_Movement_WallJump_Up_C::WallJumpHeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_Up_C, WallJumpDuration) == 0x000678, "Member 'UGA_Movement_WallJump_Up_C::WallJumpDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Movement_WallJump_Up_C, JumpCue) == 0x000680, "Member 'UGA_Movement_WallJump_Up_C::JumpCue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Springboard_C_ExecuteUbergraph_GA_Springboard \ +static_assert(alignof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard) == 0x000008, "Wrong alignment on GA_Springboard_C_ExecuteUbergraph_GA_Springboard"); \ +static_assert(sizeof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard) == 0x0000D8, "Wrong size on GA_Springboard_C_ExecuteUbergraph_GA_Springboard"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, EntryPoint) == 0x000000, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000010, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, K2Node_CustomEvent_NewMovementMode) == 0x000028, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::K2Node_CustomEvent_NewMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, Temp_byte_Variable) == 0x000029, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_CreateWaitMovementModeChange_ReturnValue) == 0x000030, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_CreateWaitMovementModeChange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x000039, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000040, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_GetActorUpVector_ReturnValue) == 0x000048, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_GetActorUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_GetActorForwardVector_ReturnValue) == 0x000060, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_K2_CommitAbility_ReturnValue) == 0x000078, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_GetContextFromOwner_ReturnValue) == 0x000080, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_GetContextFromOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_VLerp_ReturnValue) == 0x000098, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x0000B0, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000B8, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_IsValid_ReturnValue_1) == 0x0000C8, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_VLerp_Alpha_ImplicitCast) == 0x0000CC, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x0000D0, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Springboard_C_ExecuteUbergraph_GA_Springboard, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x0000D4, "Member 'GA_Springboard_C_ExecuteUbergraph_GA_Springboard::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44 \ +static_assert(alignof(GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44) == 0x000001, "Wrong alignment on GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44"); \ +static_assert(sizeof(GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44) == 0x000001, "Wrong size on GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44"); \ +static_assert(offsetof(GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44, NewMovementMode) == 0x000000, "Member 'GA_Springboard_C_OnChange_FCB05DF6482E105D9F72DBB064082F44::NewMovementMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Springboard_C \ +static_assert(alignof(UGA_Springboard_C) == 0x000008, "Wrong alignment on UGA_Springboard_C"); \ +static_assert(sizeof(UGA_Springboard_C) == 0x000688, "Wrong size on UGA_Springboard_C"); \ +static_assert(offsetof(UGA_Springboard_C, UberGraphFrame) == 0x000668, "Member 'UGA_Springboard_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Springboard_C, SpringboardVerticality) == 0x000670, "Member 'UGA_Springboard_C::SpringboardVerticality' has a wrong offset!"); \ +static_assert(offsetof(UGA_Springboard_C, SpringboardDuration) == 0x000678, "Member 'UGA_Springboard_C::SpringboardDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Springboard_C, SpringboardStrength) == 0x000680, "Member 'UGA_Springboard_C::SpringboardStrength' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_EnemySequence_BlockDamage_C \ +static_assert(alignof(UGE_EnemySequence_BlockDamage_C) == 0x000008, "Wrong alignment on UGE_EnemySequence_BlockDamage_C"); \ +static_assert(sizeof(UGE_EnemySequence_BlockDamage_C) == 0x000A70, "Wrong size on UGE_EnemySequence_BlockDamage_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_EventReceived_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95 \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95) == 0x0000B0, "Wrong size on GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95, Payload) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_548DF46C4F34EB7A948139B1AC84FC95::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459 \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459) == 0x0000B0, "Wrong size on GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459, Payload) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_8B692BEA47AC799B139906819EF25459::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A) == 0x0000B0, "Wrong size on GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A, Payload) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_8C07B4EE43AC18734E6B7BB750544F1A::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4 \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4) == 0x0000B0, "Wrong size on GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4, Payload) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_929E6B58401D180F28AB189ED04B37F4::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9 \ +static_assert(alignof(GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9) == 0x000008, "Wrong alignment on GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9"); \ +static_assert(sizeof(GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9) == 0x0000B0, "Wrong size on GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9"); \ +static_assert(offsetof(GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9, Payload) == 0x000000, "Member 'GA_EnemySequence_C_EventReceived_9BF99E004F31090E0D620B80CC74DBF9::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence \ +static_assert(alignof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence) == 0x000010, "Wrong alignment on GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence"); \ +static_assert(sizeof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence) == 0x001240, "Wrong size on GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, EntryPoint) == 0x000000, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_2) == 0x000010, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_2) == 0x000018, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_1) == 0x0000C8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_1) == 0x0000D0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate) == 0x000180, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag) == 0x000190, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData) == 0x000198, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_1) == 0x000248, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable) == 0x000258, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_1) == 0x000308, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Payload_4) == 0x000310, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Payload_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_2) == 0x0003C0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_2) == 0x0003D0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000480, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue) == 0x000488, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_3) == 0x00048C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Payload_3) == 0x0004A0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Payload_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_3) == 0x000550, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000600, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_1) == 0x000608, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_4) == 0x00060C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Payload_2) == 0x000620, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_4) == 0x0006D0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitGameplayEvent_ReturnValue_2) == 0x000780, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitGameplayEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_2) == 0x000788, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_5) == 0x00078C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Payload_1) == 0x0007A0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_5) == 0x000850, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitGameplayEvent_ReturnValue_3) == 0x000900, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitGameplayEvent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_3) == 0x000908, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_6) == 0x00090C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Payload) == 0x000920, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_struct_Variable_6) == 0x0009D0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitGameplayEvent_ReturnValue_4) == 0x000A80, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitGameplayEvent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_4) == 0x000A88, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000A89, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_7) == 0x000A8C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_WaitRealDelay_ReturnValue) == 0x000AA0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_5) == 0x000AA8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_5) == 0x000AB0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_5) == 0x000B60, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_8) == 0x000B64, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_int_Loop_Counter_Variable) == 0x000B74, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_Add_IntInt_ReturnValue) == 0x000B78, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, Temp_int_Array_Index_Variable) == 0x000B7C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_K2_CommitAbility_ReturnValue) == 0x000B80, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_Event_bWasCancelled) == 0x000B81, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings) == 0x000B88, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_Event_EventData) == 0x000B98, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Sequence) == 0x000C48, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_9) == 0x000C50, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_6) == 0x000C60, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_6) == 0x000C68, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetTransformForSequenceBinding_OutTransform) == 0x000D20, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetTransformForSequenceBinding_OutTransform' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetTransformForSequenceBinding_ReturnValue) == 0x000D80, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetTransformForSequenceBinding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_InvertTransform_ReturnValue) == 0x000D90, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_InvertTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000DF0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetTransform_ReturnValue) == 0x000E00, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_6) == 0x000E60, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_ComposeTransforms_ReturnValue) == 0x000E70, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_ComposeTransforms_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_3) == 0x000ED0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_3) == 0x000ED8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_10) == 0x000F88, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000F98, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000FA0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_7) == 0x000FA8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000FAC, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetSequencePlayer_ReturnValue) == 0x000FB8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_11) == 0x000FC0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsPlaying_ReturnValue) == 0x000FD0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_8) == 0x000FD1, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetEnemySequenceData_OutEnemySequenceData) == 0x000FD8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetEnemySequenceData_OutEnemySequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetEnemySequenceData_ReturnValue) == 0x001010, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetEnemySequenceData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_SelectFloat_ReturnValue) == 0x001018, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_MakeStruct_CharacterSequenceData) == 0x001020, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_MakeStruct_CharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor) == 0x0010A0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_PlaySequenceAndWaitForEvent_ReturnValue) == 0x0010A8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_PlaySequenceAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x0010B0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x0010B8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_DynamicCast_AsLevel_Sequence) == 0x0010C0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_DynamicCast_AsLevel_Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_DynamicCast_bSuccess) == 0x0010C8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_9) == 0x0010C9, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetSequencePlayer_ReturnValue_1) == 0x0010D0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetSequencePlayer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_10) == 0x0010D8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetSequencePlayer_ReturnValue_2) == 0x0010E0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetSequencePlayer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_11) == 0x0010E8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_Time) == 0x0010EC, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x0010F0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetSequencePlayer_ReturnValue_3) == 0x001118, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetSequencePlayer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_IsValid_ReturnValue_12) == 0x001120, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventTag_4) == 0x001124, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_EventData_4) == 0x001130, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CustomEvent_bNewHidden) == 0x0011E0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CustomEvent_bNewHidden' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0011E8, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_GetAttachedActors_OutActors) == 0x0011F0, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_Array_Get_Item) == 0x001200, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_Array_Length_ReturnValue) == 0x001208, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_Less_IntInt_ReturnValue) == 0x00120C, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_CreateDelegate_OutputDelegate_12) == 0x001210, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_NotEqual_DoubleDouble_A_ImplicitCast) == 0x001220, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_NotEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, CallFunc_SelectFloat_B_ImplicitCast) == 0x001228, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::CallFunc_SelectFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence, K2Node_MakeStruct_BlendInTime_ImplicitCast) == 0x001230, "Member 'GA_EnemySequence_C_ExecuteUbergraph_GA_EnemySequence::K2Node_MakeStruct_BlendInTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_GetSequenceLength \ +static_assert(alignof(GA_EnemySequence_C_GetSequenceLength) == 0x000008, "Wrong alignment on GA_EnemySequence_C_GetSequenceLength"); \ +static_assert(sizeof(GA_EnemySequence_C_GetSequenceLength) == 0x000028, "Wrong size on GA_EnemySequence_C_GetSequenceLength"); \ +static_assert(offsetof(GA_EnemySequence_C_GetSequenceLength, Sequence) == 0x000000, "Member 'GA_EnemySequence_C_GetSequenceLength::Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GetSequenceLength, ReturnValue) == 0x000008, "Member 'GA_EnemySequence_C_GetSequenceLength::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GetSequenceLength, CallFunc_IsValid_ReturnValue) == 0x00000C, "Member 'GA_EnemySequence_C_GetSequenceLength::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GetSequenceLength, CallFunc_GetPlaybackRange_ReturnValue) == 0x000010, "Member 'GA_EnemySequence_C_GetSequenceLength::CallFunc_GetPlaybackRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GetSequenceLength, CallFunc_GetEndSeconds_ReturnValue) == 0x000024, "Member 'GA_EnemySequence_C_GetSequenceLength::CallFunc_GetEndSeconds_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_HideEnemy \ +static_assert(alignof(GA_EnemySequence_C_HideEnemy) == 0x000001, "Wrong alignment on GA_EnemySequence_C_HideEnemy"); \ +static_assert(sizeof(GA_EnemySequence_C_HideEnemy) == 0x000001, "Wrong size on GA_EnemySequence_C_HideEnemy"); \ +static_assert(offsetof(GA_EnemySequence_C_HideEnemy, bNewHidden) == 0x000000, "Member 'GA_EnemySequence_C_HideEnemy::bNewHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemySequence_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemySequence_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemySequence_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemySequence_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemySequence_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemySequence_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemySequence_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemySequence_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemySequence_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemySequence_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnCancelled_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnSequenceFinished_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnSequencePause_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnSequencePlay_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnSequenceStopped_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14 \ +static_assert(alignof(GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14) == 0x000008, "Wrong alignment on GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(sizeof(GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14) == 0x0000B8, "Wrong size on GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14, EventTag) == 0x000000, "Member 'GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14, EventData) == 0x000008, "Member 'GA_EnemySequence_C_OnSequenceUpdate_1A307D6D495D9207ECE330B057C10C14::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_PlaySequence \ +static_assert(alignof(GA_EnemySequence_C_PlaySequence) == 0x000008, "Wrong alignment on GA_EnemySequence_C_PlaySequence"); \ +static_assert(sizeof(GA_EnemySequence_C_PlaySequence) == 0x000008, "Wrong size on GA_EnemySequence_C_PlaySequence"); \ +static_assert(offsetof(GA_EnemySequence_C_PlaySequence, Sequence) == 0x000000, "Member 'GA_EnemySequence_C_PlaySequence::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_SetPlaybackPosition \ +static_assert(alignof(GA_EnemySequence_C_SetPlaybackPosition) == 0x000004, "Wrong alignment on GA_EnemySequence_C_SetPlaybackPosition"); \ +static_assert(sizeof(GA_EnemySequence_C_SetPlaybackPosition) == 0x000004, "Wrong size on GA_EnemySequence_C_SetPlaybackPosition"); \ +static_assert(offsetof(GA_EnemySequence_C_SetPlaybackPosition, Time) == 0x000000, "Member 'GA_EnemySequence_C_SetPlaybackPosition::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_GenerateSequenceBindings \ +static_assert(alignof(GA_EnemySequence_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_EnemySequence_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_EnemySequence_C_GenerateSequenceBindings) == 0x000060, "Wrong size on GA_EnemySequence_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000000, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000018, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000028, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000040, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x000050, "Member 'GA_EnemySequence_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemySequence_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemySequence_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemySequence_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemySequence_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_EnemySequence_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemySequence_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemySequence_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemySequence_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemySequence_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemySequence_C_K2_CanActivateAbility, NewLocalVar_0) == 0x000071, "Member 'GA_EnemySequence_C_K2_CanActivateAbility::NewLocalVar_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemySequence_C \ +static_assert(alignof(UGA_EnemySequence_C) == 0x000008, "Wrong alignment on UGA_EnemySequence_C"); \ +static_assert(sizeof(UGA_EnemySequence_C) == 0x000710, "Wrong size on UGA_EnemySequence_C"); \ +static_assert(offsetof(UGA_EnemySequence_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemySequence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, Playback_Settings) == 0x000670, "Member 'UGA_EnemySequence_C::Playback_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, SequenceActor) == 0x000690, "Member 'UGA_EnemySequence_C::SequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, AdditionalPauseTime) == 0x000698, "Member 'UGA_EnemySequence_C::AdditionalPauseTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, PauseDistance) == 0x00069C, "Member 'UGA_EnemySequence_C::PauseDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, PauseDuration) == 0x0006A0, "Member 'UGA_EnemySequence_C::PauseDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, Interaction) == 0x0006A8, "Member 'UGA_EnemySequence_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, Binding_Tag) == 0x0006B0, "Member 'UGA_EnemySequence_C::Binding_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, Async_Task) == 0x0006B8, "Member 'UGA_EnemySequence_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, GEHandle) == 0x0006C0, "Member 'UGA_EnemySequence_C::GEHandle' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, EnemySequenceData) == 0x0006C8, "Member 'UGA_EnemySequence_C::EnemySequenceData' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, EnemySequences) == 0x000700, "Member 'UGA_EnemySequence_C::EnemySequences' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemySequence_C, Colliding) == 0x000708, "Member 'UGA_EnemySequence_C::Colliding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull \ +static_assert(alignof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull) == 0x000008, "Wrong alignment on GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull"); \ +static_assert(sizeof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull) == 0x000100, "Wrong size on GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull, EntryPoint) == 0x000000, "Member 'GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull, K2Node_Event_Character) == 0x000008, "Member 'GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull::K2Node_Event_Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull, K2Node_Event_AudioComponent) == 0x000010, "Member 'GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull::K2Node_Event_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull, K2Node_Event_Parameters) == 0x000018, "Member 'GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull::K2Node_Event_Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull, Temp_delegate_Variable) == 0x0000F0, "Member 'GC_Telekinesis_BoltPull_C_ExecuteUbergraph_GC_Telekinesis_BoltPull::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_BoltPull_C_OnExecuteAudio \ +static_assert(alignof(GC_Telekinesis_BoltPull_C_OnExecuteAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_BoltPull_C_OnExecuteAudio"); \ +static_assert(sizeof(GC_Telekinesis_BoltPull_C_OnExecuteAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_BoltPull_C_OnExecuteAudio"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_OnExecuteAudio, Character) == 0x000000, "Member 'GC_Telekinesis_BoltPull_C_OnExecuteAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_OnExecuteAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_BoltPull_C_OnExecuteAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_BoltPull_C_OnExecuteAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_BoltPull_C_OnExecuteAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_BoltPull_C \ +static_assert(alignof(AGC_Telekinesis_BoltPull_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_BoltPull_C"); \ +static_assert(sizeof(AGC_Telekinesis_BoltPull_C) == 0x000318, "Wrong size on AGC_Telekinesis_BoltPull_C"); \ +static_assert(offsetof(AGC_Telekinesis_BoltPull_C, UberGraphFrame) == 0x000308, "Member 'AGC_Telekinesis_BoltPull_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_BoltPull_C, DefaultSceneRoot) == 0x000310, "Member 'AGC_Telekinesis_BoltPull_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerDataAsset_ReactionConfig_C_Get_Reaction \ +static_assert(alignof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction) == 0x000008, "Wrong alignment on WrestlerDataAsset_ReactionConfig_C_Get_Reaction"); \ +static_assert(sizeof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction) == 0x0000C0, "Wrong size on WrestlerDataAsset_ReactionConfig_C_Get_Reaction"); \ +static_assert(offsetof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction, Attack_Tag) == 0x000000, "Member 'WrestlerDataAsset_ReactionConfig_C_Get_Reaction::Attack_Tag' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction, Reaction) == 0x000008, "Member 'WrestlerDataAsset_ReactionConfig_C_Get_Reaction::Reaction' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction, CallFunc_Map_Find_Value) == 0x000060, "Member 'WrestlerDataAsset_ReactionConfig_C_Get_Reaction::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WrestlerDataAsset_ReactionConfig_C_Get_Reaction, CallFunc_Map_Find_ReturnValue) == 0x0000B8, "Member 'WrestlerDataAsset_ReactionConfig_C_Get_Reaction::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWrestlerDataAsset_ReactionConfig_C \ +static_assert(alignof(UWrestlerDataAsset_ReactionConfig_C) == 0x000008, "Wrong alignment on UWrestlerDataAsset_ReactionConfig_C"); \ +static_assert(sizeof(UWrestlerDataAsset_ReactionConfig_C) == 0x000080, "Wrong size on UWrestlerDataAsset_ReactionConfig_C"); \ +static_assert(offsetof(UWrestlerDataAsset_ReactionConfig_C, Reaction_Map) == 0x000030, "Member 'UWrestlerDataAsset_ReactionConfig_C::Reaction_Map' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_NarrativeMode_BlockMantle_C \ +static_assert(alignof(UGE_NarrativeMode_BlockMantle_C) == 0x000008, "Wrong alignment on UGE_NarrativeMode_BlockMantle_C"); \ +static_assert(sizeof(UGE_NarrativeMode_BlockMantle_C) == 0x000A70, "Wrong size on UGE_NarrativeMode_BlockMantle_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker \ +static_assert(alignof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker) == 0x000008, "Wrong alignment on GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker"); \ +static_assert(sizeof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker) == 0x000170, "Wrong size on GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, EntryPoint) == 0x000000, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, K2Node_Event_EventData) == 0x000008, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_WaitDelay_ReturnValue) == 0x0000B8, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_IsValid_ReturnValue) == 0x0000C0, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_GetAttackTag_Output) == 0x0000C4, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_ToleratesAttack_ReturnValue) == 0x0000CC, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_ToleratesAttack_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_Array_Add_ReturnValue) == 0x0000D0, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, Temp_bool_Variable) == 0x0000D4, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_IsValid_ReturnValue_1) == 0x0000D5, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, K2Node_CreateDelegate_OutputDelegate) == 0x0000D8, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_GetAttackTag_Output_1) == 0x0000E8, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_GetAttackTag_Output_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_Get_Reaction_Reaction) == 0x0000F0, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_Get_Reaction_Reaction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000148, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000150, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000160, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker, K2Node_Select_Default) == 0x000164, "Member 'GA_PlayerReact_Picker_C_ExecuteUbergraph_GA_PlayerReact_Picker::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerReact_Picker_C_GetAttackTag \ +static_assert(alignof(GA_PlayerReact_Picker_C_GetAttackTag) == 0x000008, "Wrong alignment on GA_PlayerReact_Picker_C_GetAttackTag"); \ +static_assert(sizeof(GA_PlayerReact_Picker_C_GetAttackTag) == 0x000028, "Wrong size on GA_PlayerReact_Picker_C_GetAttackTag"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_GetAttackTag, Output) == 0x000000, "Member 'GA_PlayerReact_Picker_C_GetAttackTag::Output' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_GetAttackTag, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000008, "Member 'GA_PlayerReact_Picker_C_GetAttackTag::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_GetAttackTag, CallFunc_Array_IsEmpty_ReturnValue) == 0x000018, "Member 'GA_PlayerReact_Picker_C_GetAttackTag::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_GetAttackTag, CallFunc_Array_Get_Item) == 0x00001C, "Member 'GA_PlayerReact_Picker_C_GetAttackTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerReact_Picker_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerReact_Picker_C_MemoryCount \ +static_assert(alignof(GA_PlayerReact_Picker_C_MemoryCount) == 0x000004, "Wrong alignment on GA_PlayerReact_Picker_C_MemoryCount"); \ +static_assert(sizeof(GA_PlayerReact_Picker_C_MemoryCount) == 0x000040, "Wrong size on GA_PlayerReact_Picker_C_MemoryCount"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, ReturnValue) == 0x000000, "Member 'GA_PlayerReact_Picker_C_MemoryCount::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, Count) == 0x000004, "Member 'GA_PlayerReact_Picker_C_MemoryCount::Count' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'GA_PlayerReact_Picker_C_MemoryCount::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_PlayerReact_Picker_C_MemoryCount::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, Temp_int_Variable) == 0x000014, "Member 'GA_PlayerReact_Picker_C_MemoryCount::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_GetAttackTag_Output) == 0x00001C, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Array_Get_Item) == 0x000024, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Array_Length_ReturnValue) == 0x00002C, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_MatchesTag_ReturnValue) == 0x000030, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Less_IntInt_ReturnValue) == 0x000031, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_GetAttackTag_Output_1) == 0x000034, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_GetAttackTag_Output_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_MemoryCount, CallFunc_Array_Contains_ReturnValue) == 0x00003C, "Member 'GA_PlayerReact_Picker_C_MemoryCount::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerReact_Picker_C_ToleratesAttack \ +static_assert(alignof(GA_PlayerReact_Picker_C_ToleratesAttack) == 0x000008, "Wrong alignment on GA_PlayerReact_Picker_C_ToleratesAttack"); \ +static_assert(sizeof(GA_PlayerReact_Picker_C_ToleratesAttack) == 0x000110, "Wrong size on GA_PlayerReact_Picker_C_ToleratesAttack"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, ReturnValue) == 0x000000, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_MemoryCount_ReturnValue) == 0x000004, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_MemoryCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_GetAttackTag_Output) == 0x000010, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000018, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_Get_Reaction_Reaction) == 0x000020, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_Get_Reaction_Reaction' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_GetAttackTag_Output_1) == 0x000078, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_GetAttackTag_Output_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000080, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000090, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_Get_Reaction_Reaction_1) == 0x000098, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_Get_Reaction_Reaction_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_Not_PreBool_ReturnValue) == 0x0000F0, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0000F1, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x0000F8, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000108, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_BooleanOR_ReturnValue) == 0x000109, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerReact_Picker_C_ToleratesAttack, CallFunc_BooleanAND_ReturnValue) == 0x00010A, "Member 'GA_PlayerReact_Picker_C_ToleratesAttack::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerReact_Picker_C \ +static_assert(alignof(UGA_PlayerReact_Picker_C) == 0x000008, "Wrong alignment on UGA_PlayerReact_Picker_C"); \ +static_assert(sizeof(UGA_PlayerReact_Picker_C) == 0x000748, "Wrong size on UGA_PlayerReact_Picker_C"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerReact_Picker_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, Event_Data) == 0x000670, "Member 'UGA_PlayerReact_Picker_C::Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, Reset_Delay) == 0x000720, "Member 'UGA_PlayerReact_Picker_C::Reset_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, Event_History) == 0x000728, "Member 'UGA_PlayerReact_Picker_C::Event_History' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, Reaction_Config) == 0x000738, "Member 'UGA_PlayerReact_Picker_C::Reaction_Config' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerReact_Picker_C, Memory_Reset_Task) == 0x000740, "Member 'UGA_PlayerReact_Picker_C::Memory_Reset_Task' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_NarrativeMode_C \ +static_assert(alignof(UGE_NarrativeMode_C) == 0x000008, "Wrong alignment on UGE_NarrativeMode_C"); \ +static_assert(sizeof(UGE_NarrativeMode_C) == 0x000A70, "Wrong size on UGE_NarrativeMode_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5 \ +static_assert(alignof(GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5) == 0x0000B8, "Wrong size on GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5, EventTag) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5, EventData) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_EventReceived_2E23E9D042A27AA9792EF28DA562BBD5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch \ +static_assert(alignof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch) == 0x000878, "Wrong size on GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000038, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000048, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventTag_3) == 0x00004C, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventData_3) == 0x000058, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventTag_2) == 0x000108, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventData_2) == 0x000110, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001C0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventTag_1) == 0x0001D0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventData_1) == 0x0001D8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_2) == 0x000288, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventTag) == 0x000298, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventData) == 0x0002A0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_3) == 0x000350, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_struct_Variable) == 0x000360, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_struct_Variable_1) == 0x000410, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_4) == 0x000418, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_5) == 0x000428, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_6) == 0x000438, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000448, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_7) == 0x000450, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue) == 0x000460, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_WaitDelay_ReturnValue) == 0x000468, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000470, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue_1) == 0x000488, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_8) == 0x00048C, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_WaitDelay_ReturnValue_1) == 0x0004A0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_bool_Variable) == 0x0004A8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue_2) == 0x0004A9, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_real_Variable) == 0x0004AC, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_bool_Variable_1) == 0x0004B0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_real_Variable_1) == 0x0004B4, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, Temp_real_Variable_2) == 0x0004B8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CreateDelegate_OutputDelegate_9) == 0x0004BC, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_Select_Default) == 0x0004CC, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0004D0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_Select_Default_1) == 0x0004D8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetComponentByClass_ReturnValue) == 0x0004E0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x0004E8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue_3) == 0x0004E9, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventTag_4) == 0x0004EC, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_CustomEvent_EventData_4) == 0x0004F8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_Event_bWasCancelled) == 0x0005A8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetMontage_ReturnValue) == 0x0005B0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0005B8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue_4) == 0x0005C0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0005C8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0005D0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0005D8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0005F0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, K2Node_Event_EventData) == 0x000608, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0006B8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x0006D0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_IsValid_ReturnValue_5) == 0x0007B8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0007C0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0007D8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_MakeLiteralByte_ReturnValue) == 0x0007E0, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0007E8, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000800, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000818, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000838, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000840, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000860, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000870, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000871, "Member 'GA_EnemyReact_Flinch_C_ExecuteUbergraph_GA_EnemyReact_Flinch::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Flinch_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Flinch_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Flinch_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5 \ +static_assert(alignof(GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5) == 0x0000B8, "Wrong size on GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5, EventTag) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5, EventData) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_OnBlendOut_2E23E9D042A27AA9792EF28DA562BBD5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5 \ +static_assert(alignof(GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5) == 0x0000B8, "Wrong size on GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5, EventTag) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5, EventData) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_OnCancelled_2E23E9D042A27AA9792EF28DA562BBD5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5 \ +static_assert(alignof(GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5) == 0x0000B8, "Wrong size on GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5, EventTag) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5, EventData) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_OnCompleted_2E23E9D042A27AA9792EF28DA562BBD5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5 \ +static_assert(alignof(GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5) == 0x000008, "Wrong alignment on GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(sizeof(GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5) == 0x0000B8, "Wrong size on GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5, EventTag) == 0x000000, "Member 'GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5, EventData) == 0x000008, "Member 'GA_EnemyReact_Flinch_C_OnInterrupted_2E23E9D042A27AA9792EF28DA562BBD5::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Flinch_C \ +static_assert(alignof(UGA_EnemyReact_Flinch_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Flinch_C"); \ +static_assert(sizeof(UGA_EnemyReact_Flinch_C) == 0x000688, "Wrong size on UGA_EnemyReact_Flinch_C"); \ +static_assert(offsetof(UGA_EnemyReact_Flinch_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Flinch_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Flinch_C, PushDir) == 0x000670, "Member 'UGA_EnemyReact_Flinch_C::PushDir' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode \ +static_assert(alignof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode) == 0x000008, "Wrong alignment on GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode"); \ +static_assert(sizeof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode) == 0x000058, "Wrong size on GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, EntryPoint) == 0x000000, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x000018, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, K2Node_CreateDelegate_OutputDelegate_1) == 0x000020, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000038, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_IsValid_ReturnValue_1) == 0x000040, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, K2Node_Event_bWasCancelled) == 0x000041, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000044, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x00004C, "Member 'GA_NarrativeMode_C_ExecuteUbergraph_GA_NarrativeMode::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_NarrativeMode_C_K2_OnEndAbility \ +static_assert(alignof(GA_NarrativeMode_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_NarrativeMode_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_NarrativeMode_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_NarrativeMode_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_NarrativeMode_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_NarrativeMode_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_NarrativeMode_C \ +static_assert(alignof(UGA_NarrativeMode_C) == 0x000008, "Wrong alignment on UGA_NarrativeMode_C"); \ +static_assert(sizeof(UGA_NarrativeMode_C) == 0x000680, "Wrong size on UGA_NarrativeMode_C"); \ +static_assert(offsetof(UGA_NarrativeMode_C, UberGraphFrame) == 0x000668, "Member 'UGA_NarrativeMode_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_NarrativeMode_C, Handle) == 0x000670, "Member 'UGA_NarrativeMode_C::Handle' has a wrong offset!"); \ +static_assert(offsetof(UGA_NarrativeMode_C, MantleBlockHandle) == 0x000678, "Member 'UGA_NarrativeMode_C::MantleBlockHandle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stealth_C_ExecuteUbergraph_GA_Stealth \ +static_assert(alignof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth) == 0x000008, "Wrong alignment on GA_Stealth_C_ExecuteUbergraph_GA_Stealth"); \ +static_assert(sizeof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth) == 0x000180, "Wrong size on GA_Stealth_C_ExecuteUbergraph_GA_Stealth"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, EntryPoint) == 0x000000, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_CustomEvent_WaitingTime) == 0x000010, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_IsFalling_ReturnValue) == 0x000014, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, Temp_real_Variable) == 0x000018, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000020, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, Temp_delegate_Variable) == 0x000028, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, Temp_delegate_Variable_1) == 0x00003C, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_Event_bWasCancelled) == 0x00004C, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetPlayerController_ReturnValue) == 0x000050, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetHud_ReturnValue) == 0x000060, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_DynamicCast_AsHera_HUD) == 0x000068, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetHUDWidget_ReturnValue) == 0x000078, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_CreateDelegate_OutputDelegate) == 0x000080, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_IsValid_ReturnValue_2) == 0x000090, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetSlotWidget_ReturnValue) == 0x000098, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetActorInfo_ReturnValue) == 0x0000A0, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetActorInfo_ReturnValue_1) == 0x0000E8, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000130, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, K2Node_DynamicCast_bSuccess_1) == 0x000140, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000148, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000158, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000160, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000168, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_ExecuteUbergraph_GA_Stealth, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000178, "Member 'GA_Stealth_C_ExecuteUbergraph_GA_Stealth::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stealth_C_K2_OnEndAbility \ +static_assert(alignof(GA_Stealth_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Stealth_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Stealth_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Stealth_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Stealth_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Stealth_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE \ +static_assert(alignof(GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE) == 0x000004, "Wrong alignment on GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE"); \ +static_assert(sizeof(GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE) == 0x000004, "Wrong size on GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE"); \ +static_assert(offsetof(GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE, WaitingTime) == 0x000000, "Member 'GA_Stealth_C_OnControlCueProcess_898F7F194909FD12397E539EF197E5BE::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stealth_C_set_ui_visibility \ +static_assert(alignof(GA_Stealth_C_set_ui_visibility) == 0x000001, "Wrong alignment on GA_Stealth_C_set_ui_visibility"); \ +static_assert(sizeof(GA_Stealth_C_set_ui_visibility) == 0x000002, "Wrong size on GA_Stealth_C_set_ui_visibility"); \ +static_assert(offsetof(GA_Stealth_C_set_ui_visibility, Visible) == 0x000000, "Member 'GA_Stealth_C_set_ui_visibility::Visible' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_set_ui_visibility, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'GA_Stealth_C_set_ui_visibility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Stealth_C_SetPostProcessVisibility \ +static_assert(alignof(GA_Stealth_C_SetPostProcessVisibility) == 0x000008, "Wrong alignment on GA_Stealth_C_SetPostProcessVisibility"); \ +static_assert(sizeof(GA_Stealth_C_SetPostProcessVisibility) == 0x000020, "Wrong size on GA_Stealth_C_SetPostProcessVisibility"); \ +static_assert(offsetof(GA_Stealth_C_SetPostProcessVisibility, Visible_) == 0x000000, "Member 'GA_Stealth_C_SetPostProcessVisibility::Visible_' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_SetPostProcessVisibility, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'GA_Stealth_C_SetPostProcessVisibility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_SetPostProcessVisibility, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'GA_Stealth_C_SetPostProcessVisibility::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_SetPostProcessVisibility, CallFunc_IsValid_ReturnValue_1) == 0x000010, "Member 'GA_Stealth_C_SetPostProcessVisibility::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Stealth_C_SetPostProcessVisibility, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000018, "Member 'GA_Stealth_C_SetPostProcessVisibility::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Stealth_C \ +static_assert(alignof(UGA_Stealth_C) == 0x000008, "Wrong alignment on UGA_Stealth_C"); \ +static_assert(sizeof(UGA_Stealth_C) == 0x000688, "Wrong size on UGA_Stealth_C"); \ +static_assert(offsetof(UGA_Stealth_C, UberGraphFrame) == 0x000668, "Member 'UGA_Stealth_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stealth_C, In_Slot_Name_ID) == 0x000670, "Member 'UGA_Stealth_C::In_Slot_Name_ID' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stealth_C, stealth_ui_widget) == 0x000678, "Member 'UGA_Stealth_C::stealth_ui_widget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Stealth_C, StealthCameraMod) == 0x000680, "Member 'UGA_Stealth_C::StealthCameraMod' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_ShadowBeing__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData, __NameProperty_13) == 0x000004, "Member 'AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData::__NameProperty_13' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData, __NameProperty_14) == 0x00000C, "Member 'AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData::__NameProperty_14' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData, __StructProperty_15) == 0x000018, "Member 'AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData::__StructProperty_15' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'AnimBP_ShadowBeing::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_ShadowBeing_C_AnimGraph \ +static_assert(alignof(AnimBP_ShadowBeing_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_ShadowBeing_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_ShadowBeing_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_ShadowBeing_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_ShadowBeing_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_ShadowBeing_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing \ +static_assert(alignof(AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing) == 0x000004, "Wrong alignment on AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing"); \ +static_assert(sizeof(AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing) == 0x000004, "Wrong size on AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing"); \ +static_assert(offsetof(AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing, EntryPoint) == 0x000000, "Member 'AnimBP_ShadowBeing_C_ExecuteUbergraph_AnimBP_ShadowBeing::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_ShadowBeing_C \ +static_assert(alignof(UAnimBP_ShadowBeing_C) == 0x000010, "Wrong alignment on UAnimBP_ShadowBeing_C"); \ +static_assert(sizeof(UAnimBP_ShadowBeing_C) == 0x000530, "Wrong size on UAnimBP_ShadowBeing_C"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, UberGraphFrame) == 0x000350, "Member 'UAnimBP_ShadowBeing_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UAnimBP_ShadowBeing_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UAnimBP_ShadowBeing_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimGraphNode_Root) == 0x000368, "Member 'UAnimBP_ShadowBeing_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimGraphNode_MeshRefPose) == 0x000388, "Member 'UAnimBP_ShadowBeing_C::AnimGraphNode_MeshRefPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimGraphNode_ModifyBone) == 0x000398, "Member 'UAnimBP_ShadowBeing_C::AnimGraphNode_ModifyBone' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimGraphNode_Slot) == 0x0004C0, "Member 'UAnimBP_ShadowBeing_C::AnimGraphNode_Slot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_ShadowBeing_C, AnimGraphNode_ComponentToLocalSpace) == 0x000508, "Member 'UAnimBP_ShadowBeing_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal \ +static_assert(alignof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal) == 0x000008, "Wrong alignment on GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal"); \ +static_assert(sizeof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal) == 0x0001A8, "Wrong size on GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal, EntryPoint) == 0x000000, "Member 'GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal, Temp_struct_Variable) == 0x000008, "Member 'GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal, CallFunc_ApplyEffectContainer_ReturnValue) == 0x0000B8, "Member 'GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal::CallFunc_ApplyEffectContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0000C8, "Member 'GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal, CallFunc_K2_CommitAbility_ReturnValue) == 0x0001A0, "Member 'GA_PlayerBloodHeal_C_ExecuteUbergraph_GA_PlayerBloodHeal::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerBloodHeal_C_BelowMaxHealth \ +static_assert(alignof(GA_PlayerBloodHeal_C_BelowMaxHealth) == 0x000008, "Wrong alignment on GA_PlayerBloodHeal_C_BelowMaxHealth"); \ +static_assert(sizeof(GA_PlayerBloodHeal_C_BelowMaxHealth) == 0x000038, "Wrong size on GA_PlayerBloodHeal_C_BelowMaxHealth"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, ReturnValue) == 0x000000, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute) == 0x000010, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue) == 0x000014, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1) == 0x000018, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1) == 0x00001C, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_GetFloatAttributeFromAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_BooleanAND_ReturnValue) == 0x000020, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000021, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_BooleanAND_ReturnValue_1) == 0x000022, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x000028, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_BelowMaxHealth, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000030, "Member 'GA_PlayerBloodHeal_C_BelowMaxHealth::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerBloodHeal_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerBloodHeal_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerBloodHeal_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerBloodHeal_C_K2_CanActivateAbility) == 0x0000A0, "Wrong size on GA_PlayerBloodHeal_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, CallFunc_BelowMaxHealth_ReturnValue) == 0x000071, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::CallFunc_BelowMaxHealth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_RelevantTags) == 0x000078, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerBloodHeal_C_K2_CanActivateAbility, CallFunc_K2_CanActivateAbility_ReturnValue) == 0x000098, "Member 'GA_PlayerBloodHeal_C_K2_CanActivateAbility::CallFunc_K2_CanActivateAbility_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerBloodHeal_C \ +static_assert(alignof(UGA_PlayerBloodHeal_C) == 0x000008, "Wrong alignment on UGA_PlayerBloodHeal_C"); \ +static_assert(sizeof(UGA_PlayerBloodHeal_C) == 0x000678, "Wrong size on UGA_PlayerBloodHeal_C"); \ +static_assert(offsetof(UGA_PlayerBloodHeal_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerBloodHeal_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerBloodHeal_C, Gameplay_Cue_Tag) == 0x000670, "Member 'UGA_PlayerBloodHeal_C::Gameplay_Cue_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_PlayerHitReact_MovementSpeed_Override_C \ +static_assert(alignof(UGE_PlayerHitReact_MovementSpeed_Override_C) == 0x000008, "Wrong alignment on UGE_PlayerHitReact_MovementSpeed_Override_C"); \ +static_assert(sizeof(UGE_PlayerHitReact_MovementSpeed_Override_C) == 0x000A70, "Wrong size on UGE_PlayerHitReact_MovementSpeed_Override_C"); \ + +#define DUMPER7_ASSERTS_UWID_Knife_C \ +static_assert(alignof(UWID_Knife_C) == 0x000010, "Wrong alignment on UWID_Knife_C"); \ +static_assert(sizeof(UWID_Knife_C) == 0x0000D0, "Wrong size on UWID_Knife_C"); \ + +#define DUMPER7_ASSERTS_UGA_LockDashSupport_C \ +static_assert(alignof(UGA_LockDashSupport_C) == 0x000008, "Wrong alignment on UGA_LockDashSupport_C"); \ +static_assert(sizeof(UGA_LockDashSupport_C) == 0x000668, "Wrong size on UGA_LockDashSupport_C"); \ + +#define DUMPER7_ASSERTS_UGE_Subdued_C \ +static_assert(alignof(UGE_Subdued_C) == 0x000008, "Wrong alignment on UGE_Subdued_C"); \ +static_assert(sizeof(UGE_Subdued_C) == 0x000A70, "Wrong size on UGE_Subdued_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF \ +static_assert(alignof(GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(sizeof(GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF) == 0x0000B8, "Wrong size on GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(offsetof(GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF, EventData) == 0x000008, "Member 'GA_PlayerHitReact_C_EventReceived_842B33FA47F16A00AC9D19AC0C612CAF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact \ +static_assert(alignof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact"); \ +static_assert(sizeof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact) == 0x000650, "Wrong size on GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventTag_3) == 0x000014, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventData_3) == 0x000020, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000D0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventTag_2) == 0x0000E0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventData_2) == 0x0000E8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_2) == 0x000198, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventTag_1) == 0x0001A8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventData_1) == 0x0001B0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_3) == 0x000260, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventTag) == 0x000270, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventData) == 0x000278, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_4) == 0x000328, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, Temp_struct_Variable) == 0x000338, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, Temp_struct_Variable_1) == 0x0003E8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0003F0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003F8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CreateDelegate_OutputDelegate_6) == 0x000408, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_Event_bWasCancelled) == 0x000418, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventTag_4) == 0x00041C, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_CustomEvent_EventData_4) == 0x000428, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_Event_EventData) == 0x0004D8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetReactionMontage_ReturnValue) == 0x000588, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetReactionMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000590, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_IsValid_ReturnValue) == 0x000598, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0005A0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_MakeArray_Array) == 0x0005A8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetDialogueInfo_ReturnValue) == 0x0005B8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, K2Node_MakeArray_Array_1) == 0x0005C0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_IsValid_ReturnValue_1) == 0x0005D0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_WaitDelay_ReturnValue) == 0x0005D8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_IsValid_ReturnValue_2) == 0x0005E0, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005E8, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000600, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000608, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000610, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000628, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_IsValid_ReturnValue_3) == 0x000640, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000641, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_Delay_Duration_ImplicitCast) == 0x000644, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x000648, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x00064C, "Member 'GA_PlayerHitReact_C_ExecuteUbergraph_GA_PlayerHitReact::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_GetReactionMontage \ +static_assert(alignof(GA_PlayerHitReact_C_GetReactionMontage) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_GetReactionMontage"); \ +static_assert(sizeof(GA_PlayerHitReact_C_GetReactionMontage) == 0x0000D8, "Wrong size on GA_PlayerHitReact_C_GetReactionMontage"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, EventData) == 0x000000, "Member 'GA_PlayerHitReact_C_GetReactionMontage::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, ReturnValue) == 0x0000B0, "Member 'GA_PlayerHitReact_C_GetReactionMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, Temp_bool_Variable) == 0x0000B8, "Member 'GA_PlayerHitReact_C_GetReactionMontage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000C0, "Member 'GA_PlayerHitReact_C_GetReactionMontage::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, CallFunc_K2_IsAttackFromRight_OutPins) == 0x0000C8, "Member 'GA_PlayerHitReact_C_GetReactionMontage::CallFunc_K2_IsAttackFromRight_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, CallFunc_K2_IsAttackFromRight_ReturnValue) == 0x0000C9, "Member 'GA_PlayerHitReact_C_GetReactionMontage::CallFunc_K2_IsAttackFromRight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, K2Node_SwitchEnum_CmpSuccess) == 0x0000CA, "Member 'GA_PlayerHitReact_C_GetReactionMontage::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_GetReactionMontage, K2Node_Select_Default) == 0x0000D0, "Member 'GA_PlayerHitReact_C_GetReactionMontage::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_InterruptComboProgression \ +static_assert(alignof(GA_PlayerHitReact_C_InterruptComboProgression) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_InterruptComboProgression"); \ +static_assert(sizeof(GA_PlayerHitReact_C_InterruptComboProgression) == 0x000020, "Wrong size on GA_PlayerHitReact_C_InterruptComboProgression"); \ +static_assert(offsetof(GA_PlayerHitReact_C_InterruptComboProgression, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_PlayerHitReact_C_InterruptComboProgression::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_InterruptComboProgression, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000008, "Member 'GA_PlayerHitReact_C_InterruptComboProgression::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_InterruptComboProgression, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_PlayerHitReact_C_InterruptComboProgression::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerHitReact_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerHitReact_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerHitReact_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerHitReact_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerHitReact_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerHitReact_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF \ +static_assert(alignof(GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(sizeof(GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF) == 0x0000B8, "Wrong size on GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF, EventData) == 0x000008, "Member 'GA_PlayerHitReact_C_OnBlendOut_842B33FA47F16A00AC9D19AC0C612CAF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF \ +static_assert(alignof(GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(sizeof(GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF) == 0x0000B8, "Wrong size on GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF, EventData) == 0x000008, "Member 'GA_PlayerHitReact_C_OnCancelled_842B33FA47F16A00AC9D19AC0C612CAF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF \ +static_assert(alignof(GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(sizeof(GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF) == 0x0000B8, "Wrong size on GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF, EventData) == 0x000008, "Member 'GA_PlayerHitReact_C_OnCompleted_842B33FA47F16A00AC9D19AC0C612CAF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF \ +static_assert(alignof(GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(sizeof(GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF) == 0x0000B8, "Wrong size on GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF, EventData) == 0x000008, "Member 'GA_PlayerHitReact_C_OnInterrupted_842B33FA47F16A00AC9D19AC0C612CAF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_C_Override_Movement_Speed \ +static_assert(alignof(GA_PlayerHitReact_C_Override_Movement_Speed) == 0x000008, "Wrong alignment on GA_PlayerHitReact_C_Override_Movement_Speed"); \ +static_assert(sizeof(GA_PlayerHitReact_C_Override_Movement_Speed) == 0x000060, "Wrong size on GA_PlayerHitReact_C_Override_Movement_Speed"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000000, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue) == 0x000008, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_MakeOutgoingGameplayEffectSpec_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue) == 0x000018, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1) == 0x000028, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2) == 0x000038, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue) == 0x000048, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_K2_ApplyGameplayEffectSpecToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast) == 0x000050, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1) == 0x000054, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_C_Override_Movement_Speed, CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2) == 0x000058, "Member 'GA_PlayerHitReact_C_Override_Movement_Speed::CallFunc_AssignTagSetByCallerMagnitude_Magnitude_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_C \ +static_assert(alignof(UGA_PlayerHitReact_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_C) == 0x000798, "Wrong size on UGA_PlayerHitReact_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerHitReact_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, LeftReactMontage) == 0x000670, "Member 'UGA_PlayerHitReact_C::LeftReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, RightReactMontage) == 0x000678, "Member 'UGA_PlayerHitReact_C::RightReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, HitEventData) == 0x000680, "Member 'UGA_PlayerHitReact_C::HitEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, OffsetDuration) == 0x000730, "Member 'UGA_PlayerHitReact_C::OffsetDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, OffsetStrength) == 0x000738, "Member 'UGA_PlayerHitReact_C::OffsetStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, bResetsCombo) == 0x000740, "Member 'UGA_PlayerHitReact_C::bResetsCombo' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, CurrentMovementSpeedData) == 0x000748, "Member 'UGA_PlayerHitReact_C::CurrentMovementSpeedData' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, DelayForPlayerExertion) == 0x000750, "Member 'UGA_PlayerHitReact_C::DelayForPlayerExertion' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, PlayerExertionTag) == 0x000758, "Member 'UGA_PlayerHitReact_C::PlayerExertionTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, SlowDuration) == 0x000760, "Member 'UGA_PlayerHitReact_C::SlowDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, SlowSprintSpeed) == 0x000768, "Member 'UGA_PlayerHitReact_C::SlowSprintSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, SlowWalkSpeed) == 0x000770, "Member 'UGA_PlayerHitReact_C::SlowWalkSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, OffsetDirection) == 0x000778, "Member 'UGA_PlayerHitReact_C::OffsetDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_C, Hit_Duration) == 0x000790, "Member 'UGA_PlayerHitReact_C::Hit_Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged \ +static_assert(alignof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged"); \ +static_assert(sizeof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged) == 0x000198, "Wrong size on GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, K2Node_Event_EventData) == 0x000018, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetPlayerController_ReturnValue) == 0x0000C8, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetPlayerController_ReturnValue_1) == 0x0000F0, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000F8, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000100, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000108, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, K2Node_MakeArray_Array) == 0x000120, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000130, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetDialogueInfo_ReturnValue) == 0x000148, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000150, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, K2Node_MakeArray_Array_1) == 0x000168, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_WaitDelay_ReturnValue) == 0x000178, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_IsValid_ReturnValue_1) == 0x000180, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000188, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000190, "Member 'GA_PlayerHitReact_Ranged_C_ExecuteUbergraph_GA_PlayerHitReact_Ranged::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_Ranged_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_Ranged_C \ +static_assert(alignof(UGA_PlayerHitReact_Ranged_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_Ranged_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_Ranged_C) == 0x0007A0, "Wrong size on UGA_PlayerHitReact_Ranged_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_Ranged_C, UberGraphFrame_GA_PlayerHitReact_Ranged_C) == 0x000798, "Member 'UGA_PlayerHitReact_Ranged_C::UberGraphFrame_GA_PlayerHitReact_Ranged_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke \ +static_assert(alignof(GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke"); \ +static_assert(sizeof(GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke) == 0x0000C0, "Wrong size on GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke"); \ +static_assert(offsetof(GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke, K2Node_Event_EventData) == 0x000010, "Member 'GA_PlayerHitReact_Poke_C_ExecuteUbergraph_GA_PlayerHitReact_Poke::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_Poke_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_Poke_C \ +static_assert(alignof(UGA_PlayerHitReact_Poke_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_Poke_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_Poke_C) == 0x0007A0, "Wrong size on UGA_PlayerHitReact_Poke_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_Poke_C, UberGraphFrame_GA_PlayerHitReact_Poke_C) == 0x000798, "Member 'UGA_PlayerHitReact_Poke_C::UberGraphFrame_GA_PlayerHitReact_Poke_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271 \ +static_assert(alignof(GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271) == 0x0000B8, "Wrong size on GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271, EventTag) == 0x000000, "Member 'GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271, EventData) == 0x000008, "Member 'GA_VE_MM_Subdued_C_EventReceived_D091A5AD474FD21862407D8B7B3ED271::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued \ +static_assert(alignof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued) == 0x0007D8, "Wrong size on GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, EntryPoint) == 0x000000, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventTag_3) == 0x0000C0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventData_3) == 0x0000C8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventTag_2) == 0x000188, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventData_2) == 0x000190, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventTag_1) == 0x000250, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventData_1) == 0x000258, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_2) == 0x000308, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventTag) == 0x000318, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_EventData) == 0x000320, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, Temp_struct_Variable) == 0x0003E0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, Temp_struct_Variable_1) == 0x000490, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000498, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_4) == 0x00049C, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004AC, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004BC, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0004D0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0004D8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_IsValid_ReturnValue) == 0x0004D9, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_Event_EventData) == 0x0004E0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_HasTag_ReturnValue) == 0x000590, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_Event_bWasCancelled) == 0x000591, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CustomEvent_Time) == 0x000598, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CustomEvent_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_CreateDelegate_OutputDelegate_7) == 0x0005A0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0005B0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0005B8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetMontage_ReturnValue) == 0x000690, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000698, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0006A0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0006A8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0006B0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0006C8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x0006E0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_RandomFloatInRange_ReturnValue) == 0x0006E8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0006F0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0006F8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000710, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000728, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_BreakRotator_Roll) == 0x000740, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_BreakRotator_Pitch) == 0x000744, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_BreakRotator_Yaw) == 0x000748, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_MakeRotator_ReturnValue) == 0x000750, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_RInterpTo_ReturnValue) == 0x000768, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000780, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_IsValid_ReturnValue_1) == 0x000781, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000788, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x000790, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetMassEntityHandle_ReturnValue) == 0x000798, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0007A0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0007A8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0007B8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_Refresh_Time_ImplicitCast) == 0x0007C0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_Refresh_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, K2Node_VariableSet_Timer_ImplicitCast) == 0x0007C8, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::K2Node_VariableSet_Timer_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x0007D0, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued, CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast) == 0x0007D4, "Member 'GA_VE_MM_Subdued_C_ExecuteUbergraph_GA_VE_MM_Subdued::CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_VE_MM_Subdued_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_K2_OnEndAbility \ +static_assert(alignof(GA_VE_MM_Subdued_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_VE_MM_Subdued_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_VE_MM_Subdued_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_VE_MM_Subdued_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271 \ +static_assert(alignof(GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271) == 0x0000B8, "Wrong size on GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271, EventTag) == 0x000000, "Member 'GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271, EventData) == 0x000008, "Member 'GA_VE_MM_Subdued_C_OnBlendOut_D091A5AD474FD21862407D8B7B3ED271::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271 \ +static_assert(alignof(GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271) == 0x0000B8, "Wrong size on GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271, EventTag) == 0x000000, "Member 'GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271, EventData) == 0x000008, "Member 'GA_VE_MM_Subdued_C_OnCancelled_D091A5AD474FD21862407D8B7B3ED271::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271 \ +static_assert(alignof(GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271) == 0x0000B8, "Wrong size on GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271, EventTag) == 0x000000, "Member 'GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271, EventData) == 0x000008, "Member 'GA_VE_MM_Subdued_C_OnCompleted_D091A5AD474FD21862407D8B7B3ED271::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271 \ +static_assert(alignof(GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271) == 0x0000B8, "Wrong size on GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271, EventTag) == 0x000000, "Member 'GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271, EventData) == 0x000008, "Member 'GA_VE_MM_Subdued_C_OnInterrupted_D091A5AD474FD21862407D8B7B3ED271::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_Refresh \ +static_assert(alignof(GA_VE_MM_Subdued_C_Refresh) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_Refresh"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_Refresh) == 0x000008, "Wrong size on GA_VE_MM_Subdued_C_Refresh"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Refresh, Time) == 0x000000, "Member 'GA_VE_MM_Subdued_C_Refresh::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_VE_MM_Subdued_C_Toggle_Senses \ +static_assert(alignof(GA_VE_MM_Subdued_C_Toggle_Senses) == 0x000008, "Wrong alignment on GA_VE_MM_Subdued_C_Toggle_Senses"); \ +static_assert(sizeof(GA_VE_MM_Subdued_C_Toggle_Senses) == 0x000028, "Wrong size on GA_VE_MM_Subdued_C_Toggle_Senses"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, Enabled) == 0x000000, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::Enabled' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, CallFunc_GetAIPerceptionComponent_ReturnValue) == 0x000018, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::CallFunc_GetAIPerceptionComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_VE_MM_Subdued_C_Toggle_Senses, CallFunc_IsValid_ReturnValue_1) == 0x000021, "Member 'GA_VE_MM_Subdued_C_Toggle_Senses::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_VE_MM_Subdued_C \ +static_assert(alignof(UGA_VE_MM_Subdued_C) == 0x000008, "Wrong alignment on UGA_VE_MM_Subdued_C"); \ +static_assert(sizeof(UGA_VE_MM_Subdued_C) == 0x000690, "Wrong size on UGA_VE_MM_Subdued_C"); \ +static_assert(offsetof(UGA_VE_MM_Subdued_C, UberGraphFrame) == 0x000668, "Member 'UGA_VE_MM_Subdued_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_MM_Subdued_C, Timer) == 0x000670, "Member 'UGA_VE_MM_Subdued_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_MM_Subdued_C, Instigator) == 0x000678, "Member 'UGA_VE_MM_Subdued_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_MM_Subdued_C, Effect) == 0x000680, "Member 'UGA_VE_MM_Subdued_C::Effect' has a wrong offset!"); \ +static_assert(offsetof(UGA_VE_MM_Subdued_C, Entity_Handle) == 0x000688, "Member 'UGA_VE_MM_Subdued_C::Entity_Handle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B) == 0x0000B8, "Wrong size on GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B, EventTag) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B, EventData) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_EventReceived_992C5D9643B09AB72F9626A188C9258B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction) == 0x000590, "Wrong size on GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, EntryPoint) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_MakeArray_Array) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_Array_Random_OutItem) == 0x000018, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_Array_Random_OutIndex) == 0x000020, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventTag_4) == 0x000034, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventData_4) == 0x000040, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventTag_3) == 0x0000F0, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventData_3) == 0x0000F8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001A8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventTag_2) == 0x0001B8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventData_2) == 0x0001C0, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventTag_1) == 0x000280, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventData_1) == 0x000288, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CreateDelegate_OutputDelegate_3) == 0x000338, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventTag) == 0x000348, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CustomEvent_EventData) == 0x000350, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_CreateDelegate_OutputDelegate_4) == 0x000400, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, Temp_struct_Variable) == 0x000410, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, Temp_struct_Variable_1) == 0x0004C0, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, Temp_bool_Variable) == 0x0004C8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_GetMontage_ReturnValue) == 0x0004D0, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_RandomFloatInRange_ReturnValue) == 0x0004D8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0004E0, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0004E8, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000500, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000508, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000510, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000530, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000540, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000548, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000558, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000560, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000570, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_Not_PreBool_ReturnValue) == 0x000571, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_BooleanAND_ReturnValue) == 0x000572, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_BooleanAND_ReturnValue_1) == 0x000573, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, K2Node_Select_Default) == 0x000578, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000580, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_IsValid_ReturnValue) == 0x000588, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction, CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast) == 0x00058C, "Member 'GA_OblivionGlimpseReaction_C_ExecuteUbergraph_GA_OblivionGlimpseReaction::CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B) == 0x0000B8, "Wrong size on GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B, EventTag) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B, EventData) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_OnBlendOut_992C5D9643B09AB72F9626A188C9258B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B) == 0x0000B8, "Wrong size on GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B, EventTag) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B, EventData) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_OnCancelled_992C5D9643B09AB72F9626A188C9258B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B) == 0x0000B8, "Wrong size on GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B, EventTag) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B, EventData) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_OnCompleted_992C5D9643B09AB72F9626A188C9258B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B \ +static_assert(alignof(GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B) == 0x000008, "Wrong alignment on GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(sizeof(GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B) == 0x0000B8, "Wrong size on GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B, EventTag) == 0x000000, "Member 'GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B, EventData) == 0x000008, "Member 'GA_OblivionGlimpseReaction_C_OnInterrupted_992C5D9643B09AB72F9626A188C9258B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_OblivionGlimpseReaction_C \ +static_assert(alignof(UGA_OblivionGlimpseReaction_C) == 0x000008, "Wrong alignment on UGA_OblivionGlimpseReaction_C"); \ +static_assert(sizeof(UGA_OblivionGlimpseReaction_C) == 0x000670, "Wrong size on UGA_OblivionGlimpseReaction_C"); \ +static_assert(offsetof(UGA_OblivionGlimpseReaction_C, UberGraphFrame) == 0x000668, "Member 'UGA_OblivionGlimpseReaction_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_CharacterDeathCustomEvent \ +static_assert(alignof(GA_Status_Chaos_C_CharacterDeathCustomEvent) == 0x000008, "Wrong alignment on GA_Status_Chaos_C_CharacterDeathCustomEvent"); \ +static_assert(sizeof(GA_Status_Chaos_C_CharacterDeathCustomEvent) == 0x000008, "Wrong size on GA_Status_Chaos_C_CharacterDeathCustomEvent"); \ +static_assert(offsetof(GA_Status_Chaos_C_CharacterDeathCustomEvent, DeadActor) == 0x000000, "Member 'GA_Status_Chaos_C_CharacterDeathCustomEvent::DeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos \ +static_assert(alignof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos) == 0x000008, "Wrong alignment on GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos"); \ +static_assert(sizeof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos) == 0x0008C8, "Wrong size on GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, EntryPoint) == 0x000000, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue) == 0x000010, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000018, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000028, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate) == 0x00002C, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue) == 0x000040, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_1) == 0x00004C, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_1) == 0x000060, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_2) == 0x000068, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_2) == 0x000080, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_3) == 0x000088, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_2) == 0x000098, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_4) == 0x00009C, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_5) == 0x0000AC, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0000C0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000C8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_3) == 0x0000D8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000E0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000E8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_3) == 0x0000F8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_4) == 0x000100, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_8) == 0x000104, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_4) == 0x000118, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_int_Loop_Counter_Variable) == 0x000120, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Add_IntInt_ReturnValue) == 0x000124, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_5) == 0x000128, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_bool_True_if_break_was_hit_Variable) == 0x000129, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_int_Array_Index_Variable) == 0x00012C, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Not_PreBool_ReturnValue) == 0x000130, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_Event_EventData) == 0x000138, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_Event_bWasCancelled) == 0x0001E8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0001F0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsActor) == 0x0001F8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess) == 0x000200, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_1) == 0x000208, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000210, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_1) == 0x000220, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000228, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_9) == 0x000230, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000240, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_2) == 0x000248, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_2) == 0x000250, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_6) == 0x000258, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000260, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000270, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsMassCharacter_ReturnValue) == 0x000271, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000278, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000350, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000358, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x000360, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000438, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_5) == 0x000440, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_3) == 0x000448, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000450, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_3) == 0x000460, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_7) == 0x000461, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_AmIAwareOfAnyone_ReturnValue) == 0x000462, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_AmIAwareOfAnyone_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsAnyoneAwareOfMe_ReturnValue) == 0x000463, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsAnyoneAwareOfMe_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_BooleanOR_ReturnValue) == 0x000464, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_10) == 0x000468, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_11) == 0x000478, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_8) == 0x000488, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2) == 0x000490, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_4) == 0x0004A0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0004A1, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_9) == 0x0004A2, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Mass_Character) == 0x0004A8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Mass_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_5) == 0x0004B0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x0004B8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_10) == 0x0004C0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_12) == 0x0004C4, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_13) == 0x0004D4, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CustomEvent_DeadActor) == 0x0004E8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CustomEvent_DeadActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_14) == 0x0004F0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Mass_Character_1) == 0x000500, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Mass_Character_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_6) == 0x000508, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CustomEvent_Enemy) == 0x000510, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_11) == 0x000518, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000519, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_byte_Variable) == 0x00051A, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000520, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_4) == 0x000528, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3) == 0x000530, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_7) == 0x000540, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000548, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_5) == 0x000550, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_4) == 0x000558, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_DynamicCast_bSuccess_8) == 0x000568, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetGameTeamId_ReturnValue) == 0x000569, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_byte_Variable_1) == 0x00056A, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00056B, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_FindTeammate_Teammate) == 0x000570, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_FindTeammate_Teammate' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_12) == 0x000578, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_RandomFloatInRange_ReturnValue) == 0x000580, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_FindTeammate_Teammate_1) == 0x000588, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_FindTeammate_Teammate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_6) == 0x000590, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_13) == 0x000598, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_14) == 0x000599, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_FindTeammate_Teammate_2) == 0x0005A0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_FindTeammate_Teammate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x0005A8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_15) == 0x0005B0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_6) == 0x0005B8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x0005C0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_7) == 0x0005C8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0005D0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeLiteralByte_ReturnValue) == 0x0005D8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0005D9, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0005E0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0005E8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005F0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeGameplayCueParameters_ReturnValue_2) == 0x000608, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeGameplayCueParameters_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0006E0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000700, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000720, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000728, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000730, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000750, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000758, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000760, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_MakeStruct_StateTreeEvent) == 0x000768, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_8) == 0x000788, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000790, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000798, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0007A0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0007B0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0007B4, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Not_PreBool_ReturnValue_1) == 0x0007BC, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0007C0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0007C8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x0007D0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_15) == 0x0007D8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0007E8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x0007F0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_7) == 0x0007F8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_16) == 0x000800, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000801, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_ReturnValue_8) == 0x000808, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, K2Node_CreateDelegate_OutputDelegate_16) == 0x000810, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_17) == 0x000820, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000828, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000830, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000840, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Array_Get_Item) == 0x000858, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Array_Length_ReturnValue) == 0x000860, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000864, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Less_IntInt_ReturnValue) == 0x000865, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_BooleanAND_ReturnValue) == 0x000866, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_18) == 0x000867, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000868, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_9) == 0x000880, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_Vector_Distance_ReturnValue) == 0x000888, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000890, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000898, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, Temp_bool_Variable) == 0x0008A0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetAIController_ReturnValue_10) == 0x0008A8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetAIController_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_GetTargetActor_ReturnValue) == 0x0008B0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_GetTargetActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x0008B8, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_IsValid_ReturnValue_19) == 0x0008B9, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_Time_ImplicitCast) == 0x0008BC, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x0008C0, "Member 'GA_Status_Chaos_C_ExecuteUbergraph_GA_Status_Chaos::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_FindTeammate \ +static_assert(alignof(GA_Status_Chaos_C_FindTeammate) == 0x000008, "Wrong alignment on GA_Status_Chaos_C_FindTeammate"); \ +static_assert(sizeof(GA_Status_Chaos_C_FindTeammate) == 0x0000B8, "Wrong size on GA_Status_Chaos_C_FindTeammate"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Teammate) == 0x000000, "Member 'GA_Status_Chaos_C_FindTeammate::Teammate' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Enemy) == 0x000008, "Member 'GA_Status_Chaos_C_FindTeammate::Enemy' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000010, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Temp_byte_Variable) == 0x000018, "Member 'GA_Status_Chaos_C_FindTeammate::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'GA_Status_Chaos_C_FindTeammate::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Temp_bool_True_if_break_was_hit_Variable) == 0x000024, "Member 'GA_Status_Chaos_C_FindTeammate::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Temp_int_Array_Index_Variable) == 0x000028, "Member 'GA_Status_Chaos_C_FindTeammate::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_Not_PreBool_ReturnValue) == 0x00002C, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000030, "Member 'GA_Status_Chaos_C_FindTeammate::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'GA_Status_Chaos_C_FindTeammate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000041, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetGameTeamId_ReturnValue) == 0x000042, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, Temp_byte_Variable_1) == 0x000043, "Member 'GA_Status_Chaos_C_FindTeammate::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000048, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000050, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_IsValid_ReturnValue) == 0x000051, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x000052, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000058, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000060, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_K2_GetAllEnemiesAlive_ReturnValue) == 0x000068, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_K2_GetAllEnemiesAlive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_Array_Length_ReturnValue) == 0x000078, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_Array_Get_Item) == 0x000080, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_Less_IntInt_ReturnValue) == 0x000088, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000089, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_BooleanAND_ReturnValue) == 0x00008A, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x00008B, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_BooleanOR_ReturnValue) == 0x00008C, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_IsValid_ReturnValue_1) == 0x00008D, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetAIController_ReturnValue) == 0x000090, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_IsDetectingActor_ReturnValue) == 0x000098, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x0000A0, "Member 'GA_Status_Chaos_C_FindTeammate::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, K2Node_DynamicCast_bSuccess_1) == 0x0000B0, "Member 'GA_Status_Chaos_C_FindTeammate::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Chaos_C_FindTeammate, CallFunc_GetGameTeamId_ReturnValue_1) == 0x0000B1, "Member 'GA_Status_Chaos_C_FindTeammate::CallFunc_GetGameTeamId_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Status_Chaos_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Status_Chaos_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Status_Chaos_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Status_Chaos_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Status_Chaos_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Status_Chaos_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_K2_OnEndAbility \ +static_assert(alignof(GA_Status_Chaos_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Status_Chaos_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Status_Chaos_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Status_Chaos_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Status_Chaos_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Status_Chaos_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Chaos_C_OnEnemyDeathCustomEvent \ +static_assert(alignof(GA_Status_Chaos_C_OnEnemyDeathCustomEvent) == 0x000008, "Wrong alignment on GA_Status_Chaos_C_OnEnemyDeathCustomEvent"); \ +static_assert(sizeof(GA_Status_Chaos_C_OnEnemyDeathCustomEvent) == 0x000008, "Wrong size on GA_Status_Chaos_C_OnEnemyDeathCustomEvent"); \ +static_assert(offsetof(GA_Status_Chaos_C_OnEnemyDeathCustomEvent, Enemy) == 0x000000, "Member 'GA_Status_Chaos_C_OnEnemyDeathCustomEvent::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Status_Chaos_C \ +static_assert(alignof(UGA_Status_Chaos_C) == 0x000008, "Wrong alignment on UGA_Status_Chaos_C"); \ +static_assert(sizeof(UGA_Status_Chaos_C) == 0x0006A8, "Wrong size on UGA_Status_Chaos_C"); \ +static_assert(offsetof(UGA_Status_Chaos_C, UberGraphFrame) == 0x000668, "Member 'UGA_Status_Chaos_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, PosAttackingGameplay_Cue_Tag) == 0x000670, "Member 'UGA_Status_Chaos_C::PosAttackingGameplay_Cue_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, Instigator) == 0x000678, "Member 'UGA_Status_Chaos_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, IsPed) == 0x000680, "Member 'UGA_Status_Chaos_C::IsPed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, Target_Actor) == 0x000688, "Member 'UGA_Status_Chaos_C::Target_Actor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, PreviousTeam) == 0x000690, "Member 'UGA_Status_Chaos_C::PreviousTeam' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, UpsetEnemy) == 0x000698, "Member 'UGA_Status_Chaos_C::UpsetEnemy' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Chaos_C, SuppressionEffect) == 0x0006A0, "Member 'UGA_Status_Chaos_C::SuppressionEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Taunted_C \ +static_assert(alignof(UGE_Taunted_C) == 0x000008, "Wrong alignment on UGE_Taunted_C"); \ +static_assert(sizeof(UGE_Taunted_C) == 0x000A70, "Wrong size on UGE_Taunted_C"); \ + +#define DUMPER7_ASSERTS_UGE_Knocked_Movespeed_C \ +static_assert(alignof(UGE_Knocked_Movespeed_C) == 0x000008, "Wrong alignment on UGE_Knocked_Movespeed_C"); \ +static_assert(sizeof(UGE_Knocked_Movespeed_C) == 0x000A70, "Wrong size on UGE_Knocked_Movespeed_C"); \ + +#define DUMPER7_ASSERTS_ABP_AimAssistLockedOnReticle_C \ +static_assert(alignof(ABP_AimAssistLockedOnReticle_C) == 0x000008, "Wrong alignment on ABP_AimAssistLockedOnReticle_C"); \ +static_assert(sizeof(ABP_AimAssistLockedOnReticle_C) == 0x0002D8, "Wrong size on ABP_AimAssistLockedOnReticle_C"); \ +static_assert(offsetof(ABP_AimAssistLockedOnReticle_C, MaterialBillboard) == 0x0002C8, "Member 'ABP_AimAssistLockedOnReticle_C::MaterialBillboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_AimAssistLockedOnReticle_C, DefaultSceneRoot) == 0x0002D0, "Member 'ABP_AimAssistLockedOnReticle_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_OutfitNotification_C \ +static_assert(alignof(UWBP_OutfitNotification_C) == 0x000008, "Wrong alignment on UWBP_OutfitNotification_C"); \ +static_assert(sizeof(UWBP_OutfitNotification_C) == 0x0002C8, "Wrong size on UWBP_OutfitNotification_C"); \ +static_assert(offsetof(UWBP_OutfitNotification_C, Icon) == 0x0002C0, "Member 'UWBP_OutfitNotification_C::Icon' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AimAssistChosenTargetReticle_C \ +static_assert(alignof(ABP_AimAssistChosenTargetReticle_C) == 0x000008, "Wrong alignment on ABP_AimAssistChosenTargetReticle_C"); \ +static_assert(sizeof(ABP_AimAssistChosenTargetReticle_C) == 0x0002D8, "Wrong size on ABP_AimAssistChosenTargetReticle_C"); \ +static_assert(offsetof(ABP_AimAssistChosenTargetReticle_C, MaterialBillboard) == 0x0002C8, "Member 'ABP_AimAssistChosenTargetReticle_C::MaterialBillboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_AimAssistChosenTargetReticle_C, DefaultSceneRoot) == 0x0002D0, "Member 'ABP_AimAssistChosenTargetReticle_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AimAssistPotentialTargetReticle_C \ +static_assert(alignof(ABP_AimAssistPotentialTargetReticle_C) == 0x000008, "Wrong alignment on ABP_AimAssistPotentialTargetReticle_C"); \ +static_assert(sizeof(ABP_AimAssistPotentialTargetReticle_C) == 0x0002D8, "Wrong size on ABP_AimAssistPotentialTargetReticle_C"); \ +static_assert(offsetof(ABP_AimAssistPotentialTargetReticle_C, MaterialBillboard) == 0x0002C8, "Member 'ABP_AimAssistPotentialTargetReticle_C::MaterialBillboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_AimAssistPotentialTargetReticle_C, DefaultSceneRoot) == 0x0002D0, "Member 'ABP_AimAssistPotentialTargetReticle_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist \ +static_assert(alignof(GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist) == 0x000008, "Wrong alignment on GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist"); \ +static_assert(sizeof(GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist) == 0x000018, "Wrong size on GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist"); \ +static_assert(offsetof(GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist, EntryPoint) == 0x000000, "Member 'GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist, CallFunc_WrestlerAimAssistWithTargetting_ReturnValue) == 0x000008, "Member 'GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist::CallFunc_WrestlerAimAssistWithTargetting_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_AimAssist_C_ExecuteUbergraph_GA_AimAssist::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_AimAssist_C \ +static_assert(alignof(UGA_AimAssist_C) == 0x000008, "Wrong alignment on UGA_AimAssist_C"); \ +static_assert(sizeof(UGA_AimAssist_C) == 0x000690, "Wrong size on UGA_AimAssist_C"); \ +static_assert(offsetof(UGA_AimAssist_C, UberGraphFrame) == 0x000668, "Member 'UGA_AimAssist_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_AimAssist_C, Target) == 0x000670, "Member 'UGA_AimAssist_C::Target' has a wrong offset!"); \ +static_assert(offsetof(UGA_AimAssist_C, Timer) == 0x000678, "Member 'UGA_AimAssist_C::Timer' has a wrong offset!"); \ +static_assert(offsetof(UGA_AimAssist_C, Async_Task) == 0x000680, "Member 'UGA_AimAssist_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_AimAssist_C, Config) == 0x000688, "Member 'UGA_AimAssist_C::Config' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Int_Increment_C_ExecuteUbergraph_Int_Increment \ +static_assert(alignof(Int_Increment_C_ExecuteUbergraph_Int_Increment) == 0x000008, "Wrong alignment on Int_Increment_C_ExecuteUbergraph_Int_Increment"); \ +static_assert(sizeof(Int_Increment_C_ExecuteUbergraph_Int_Increment) == 0x000028, "Wrong size on Int_Increment_C_ExecuteUbergraph_Int_Increment"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, EntryPoint) == 0x000000, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, K2Node_Event_InAutomata) == 0x000008, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, K2Node_Event_InState) == 0x000010, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, Temp_int_Variable) == 0x000018, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, CallFunc_GetProperty_ReturnValue) == 0x00001C, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ExecuteUbergraph_Int_Increment, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'Int_Increment_C_ExecuteUbergraph_Int_Increment::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Int_Increment_C_ReceiveExecute \ +static_assert(alignof(Int_Increment_C_ReceiveExecute) == 0x000008, "Wrong alignment on Int_Increment_C_ReceiveExecute"); \ +static_assert(sizeof(Int_Increment_C_ReceiveExecute) == 0x000010, "Wrong size on Int_Increment_C_ReceiveExecute"); \ +static_assert(offsetof(Int_Increment_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Int_Increment_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Increment_C_ReceiveExecute, InState) == 0x000008, "Member 'Int_Increment_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInt_Increment_C \ +static_assert(alignof(UInt_Increment_C) == 0x000008, "Wrong alignment on UInt_Increment_C"); \ +static_assert(sizeof(UInt_Increment_C) == 0x000098, "Wrong size on UInt_Increment_C"); \ +static_assert(offsetof(UInt_Increment_C, UberGraphFrame) == 0x000088, "Member 'UInt_Increment_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UInt_Increment_C, Integer) == 0x000090, "Member 'UInt_Increment_C::Integer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt \ +static_assert(alignof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt) == 0x000008, "Wrong alignment on WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt"); \ +static_assert(sizeof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt) == 0x000028, "Wrong size on WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, EntryPoint) == 0x000000, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, CallFunc_PlayAnimation_ReturnValue) == 0x000008, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, CallFunc_PlayAnimation_ReturnValue_1) == 0x000010, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, CallFunc_PlayAnimation_ReturnValue_2) == 0x000018, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::CallFunc_PlayAnimation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, K2Node_Event_InCurrentInputType) == 0x000020, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'WBP_TPT_Prompt_C_ExecuteUbergraph_WBP_TPT_Prompt::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TPT_Prompt_C_OnInputChanged \ +static_assert(alignof(WBP_TPT_Prompt_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_TPT_Prompt_C_OnInputChanged"); \ +static_assert(sizeof(WBP_TPT_Prompt_C_OnInputChanged) == 0x000001, "Wrong size on WBP_TPT_Prompt_C_OnInputChanged"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_TPT_Prompt_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TPT_Prompt_C_SetupInputPlatform \ +static_assert(alignof(WBP_TPT_Prompt_C_SetupInputPlatform) == 0x000008, "Wrong alignment on WBP_TPT_Prompt_C_SetupInputPlatform"); \ +static_assert(sizeof(WBP_TPT_Prompt_C_SetupInputPlatform) == 0x000030, "Wrong size on WBP_TPT_Prompt_C_SetupInputPlatform"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_SetupInputPlatform, CallFunc_GetPlatformName_ReturnValue) == 0x000000, "Member 'WBP_TPT_Prompt_C_SetupInputPlatform::CallFunc_GetPlatformName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_SetupInputPlatform, CallFunc_Contains_ReturnValue) == 0x000010, "Member 'WBP_TPT_Prompt_C_SetupInputPlatform::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_SetupInputPlatform, CallFunc_IsPlayerUsingController_ReturnValue) == 0x000011, "Member 'WBP_TPT_Prompt_C_SetupInputPlatform::CallFunc_IsPlayerUsingController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_SetupInputPlatform, CallFunc_GetPlatformName_ReturnValue_1) == 0x000018, "Member 'WBP_TPT_Prompt_C_SetupInputPlatform::CallFunc_GetPlatformName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_SetupInputPlatform, CallFunc_Contains_ReturnValue_1) == 0x000028, "Member 'WBP_TPT_Prompt_C_SetupInputPlatform::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TPT_Prompt_C_UpdateControllerIcon \ +static_assert(alignof(WBP_TPT_Prompt_C_UpdateControllerIcon) == 0x000008, "Wrong alignment on WBP_TPT_Prompt_C_UpdateControllerIcon"); \ +static_assert(sizeof(WBP_TPT_Prompt_C_UpdateControllerIcon) == 0x000018, "Wrong size on WBP_TPT_Prompt_C_UpdateControllerIcon"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_UpdateControllerIcon, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000000, "Member 'WBP_TPT_Prompt_C_UpdateControllerIcon::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_UpdateControllerIcon, CallFunc_GetCurrentGamepadName_ReturnValue) == 0x000008, "Member 'WBP_TPT_Prompt_C_UpdateControllerIcon::CallFunc_GetCurrentGamepadName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TPT_Prompt_C_UpdateControllerIcon, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000010, "Member 'WBP_TPT_Prompt_C_UpdateControllerIcon::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TPT_Prompt_C \ +static_assert(alignof(UWBP_TPT_Prompt_C) == 0x000008, "Wrong alignment on UWBP_TPT_Prompt_C"); \ +static_assert(sizeof(UWBP_TPT_Prompt_C) == 0x000378, "Wrong size on UWBP_TPT_Prompt_C"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, UberGraphFrame) == 0x000330, "Member 'UWBP_TPT_Prompt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, FailureAnim) == 0x000338, "Member 'UWBP_TPT_Prompt_C::FailureAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, SuccessAnim) == 0x000340, "Member 'UWBP_TPT_Prompt_C::SuccessAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, ShowAnim) == 0x000348, "Member 'UWBP_TPT_Prompt_C::ShowAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, Image) == 0x000350, "Member 'UWBP_TPT_Prompt_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, Image_1) == 0x000358, "Member 'UWBP_TPT_Prompt_C::Image_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, Image_2) == 0x000360, "Member 'UWBP_TPT_Prompt_C::Image_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, Image_Controller) == 0x000368, "Member 'UWBP_TPT_Prompt_C::Image_Controller' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TPT_Prompt_C, WidgetSwitcher_0) == 0x000370, "Member 'UWBP_TPT_Prompt_C::WidgetSwitcher_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5 \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5) == 0x0000B0, "Wrong size on GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5, Payload) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_EventReceived_1ED1C9F54A7AA5CAF105C98F942572C5::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt) == 0x0002D0, "Wrong size on GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CustomEvent_Payload) == 0x000008, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, Temp_struct_Variable) == 0x0000C8, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000178, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue) == 0x000180, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CreateDelegate_OutputDelegate_1) == 0x000184, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_1) == 0x000194, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_2) == 0x000195, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CustomEvent_Success) == 0x000196, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CustomEvent_Success' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_3) == 0x000197, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000198, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_4) == 0x0001A0, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, Temp_real_Variable) == 0x0001A4, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_GetActorInfo_ReturnValue) == 0x0001A8, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_Event_EventData) == 0x0001F0, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_Create_ReturnValue) == 0x0002A0, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_AddToPlayerScreen_ReturnValue) == 0x0002A8, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_AddToPlayerScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_Event_bWasCancelled) == 0x0002A9, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_5) == 0x0002AA, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CreateDelegate_OutputDelegate_2) == 0x0002AC, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0002C0, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, CallFunc_IsValid_ReturnValue_6) == 0x0002C8, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt, K2Node_CustomEvent_WaitingTime) == 0x0002CC, "Member 'GA_PlayerMovement_Prompt_C_ExecuteUbergraph_GA_PlayerMovement_Prompt::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_HidePrompt \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_HidePrompt) == 0x000001, "Wrong alignment on GA_PlayerMovement_Prompt_C_HidePrompt"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_HidePrompt) == 0x000001, "Wrong size on GA_PlayerMovement_Prompt_C_HidePrompt"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_HidePrompt, Success) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_HidePrompt::Success' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Prompt_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Prompt_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB \ +static_assert(alignof(GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB) == 0x000004, "Wrong alignment on GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB"); \ +static_assert(sizeof(GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB) == 0x000004, "Wrong size on GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB"); \ +static_assert(offsetof(GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB, WaitingTime) == 0x000000, "Member 'GA_PlayerMovement_Prompt_C_OnControlCueProcess_0983F1A1457422D0AD9A3CBFA4AF6BDB::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Prompt_C \ +static_assert(alignof(UGA_PlayerMovement_Prompt_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Prompt_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Prompt_C) == 0x0006A8, "Wrong size on UGA_PlayerMovement_Prompt_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Prompt_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, PromptTimer) == 0x000670, "Member 'UGA_PlayerMovement_Prompt_C::PromptTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, PromptWidget) == 0x000678, "Member 'UGA_PlayerMovement_Prompt_C::PromptWidget' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, OnPromptInput) == 0x000680, "Member 'UGA_PlayerMovement_Prompt_C::OnPromptInput' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, Async_Task) == 0x000690, "Member 'UGA_PlayerMovement_Prompt_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, Async_Task_0) == 0x000698, "Member 'UGA_PlayerMovement_Prompt_C::Async_Task_0' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prompt_C, Hidden) == 0x0006A0, "Member 'UGA_PlayerMovement_Prompt_C::Hidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_Add_Action_Memory \ +static_assert(alignof(GA_EnemyReact_Picker_C_Add_Action_Memory) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_Add_Action_Memory"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_Add_Action_Memory) == 0x000028, "Wrong size on GA_EnemyReact_Picker_C_Add_Action_Memory"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, Action_to_add) == 0x000000, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::Action_to_add' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, CallFunc_GetAttackTag_Output) == 0x000004, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x00000C, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Action_Memory, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Picker_C_Add_Action_Memory::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_Add_Hit_Memory \ +static_assert(alignof(GA_EnemyReact_Picker_C_Add_Hit_Memory) == 0x000004, "Wrong alignment on GA_EnemyReact_Picker_C_Add_Hit_Memory"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_Add_Hit_Memory) == 0x000014, "Wrong size on GA_EnemyReact_Picker_C_Add_Hit_Memory"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Hit_Memory, CallFunc_Array_Length_ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Picker_C_Add_Hit_Memory::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Hit_Memory, CallFunc_GetAttackTag_Output) == 0x000004, "Member 'GA_EnemyReact_Picker_C_Add_Hit_Memory::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Hit_Memory, CallFunc_Greater_IntInt_ReturnValue) == 0x00000C, "Member 'GA_EnemyReact_Picker_C_Add_Hit_Memory::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Add_Hit_Memory, CallFunc_Array_Add_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Picker_C_Add_Hit_Memory::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_AttackerIsFrontal \ +static_assert(alignof(GA_EnemyReact_Picker_C_AttackerIsFrontal) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_AttackerIsFrontal"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_AttackerIsFrontal) == 0x000088, "Wrong size on GA_EnemyReact_Picker_C_AttackerIsFrontal"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, DotRequirement) == 0x000000, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::DotRequirement' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_GetActorForwardVector_ReturnValue) == 0x000048, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000060, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_Dot_VectorVector_ReturnValue) == 0x000078, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_AttackerIsFrontal, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000080, "Member 'GA_EnemyReact_Picker_C_AttackerIsFrontal::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_Current_Attack_Memory_Count \ +static_assert(alignof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count) == 0x000004, "Wrong alignment on GA_EnemyReact_Picker_C_Current_Attack_Memory_Count"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count) == 0x000040, "Wrong size on GA_EnemyReact_Picker_C_Current_Attack_Memory_Count"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, Count) == 0x000004, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::Count' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, Temp_int_Variable) == 0x000014, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_GetAttackTag_Output) == 0x00001C, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Array_Get_Item) == 0x000024, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Array_Length_ReturnValue) == 0x00002C, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_MatchesTag_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Less_IntInt_ReturnValue) == 0x000031, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_GetAttackTag_Output_1) == 0x000034, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_GetAttackTag_Output_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Current_Attack_Memory_Count, CallFunc_Array_Contains_ReturnValue) == 0x00003C, "Member 'GA_EnemyReact_Picker_C_Current_Attack_Memory_Count::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker \ +static_assert(alignof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker) == 0x0002A0, "Wrong size on GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, K2Node_Event_EventData) == 0x000008, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000B8, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_IsFalling_ReturnValue) == 0x0000C0, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAttackTag_Output) == 0x0000C4, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAttackTag_Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_Get_Reaction_Reaction) == 0x0000D0, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_Get_Reaction_Reaction' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_Current_Attack_Memory_Count_ReturnValue) == 0x000128, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_Current_Attack_Memory_Count_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000138, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000140, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000150, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetPlayerPawn_ReturnValue) == 0x000158, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000160, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, K2Node_DynamicCast_bSuccess) == 0x000170, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_PlayerInstigating_ReturnValue) == 0x000171, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_PlayerInstigating_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000172, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAttackTag_Output_1) == 0x000174, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAttackTag_Output_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_Get_Reaction_Reaction_1) == 0x000180, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_Get_Reaction_Reaction_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_AttackerIsFrontal_ReturnValue) == 0x0001D8, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_AttackerIsFrontal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_BooleanAND_ReturnValue) == 0x0001D9, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_BooleanOR_ReturnValue) == 0x0001DA, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, Temp_bool_Variable) == 0x0001DB, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_WaitDelay_ReturnValue) == 0x0001E0, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_IsValid_ReturnValue) == 0x0001E8, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_IsValid_ReturnValue_1) == 0x0001E9, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, K2Node_CreateDelegate_OutputDelegate) == 0x0001EC, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000200, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000208, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x000218, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_Unaware_of_Player__ReturnValue) == 0x000219, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_Unaware_of_Player__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_GetAttackTag_Output_2) == 0x00021C, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_GetAttackTag_Output_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, Temp_bool_Variable_1) == 0x000224, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_Get_Reaction_Reaction_2) == 0x000228, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_Get_Reaction_Reaction_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, K2Node_Select_Default) == 0x000280, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2) == 0x000288, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x000298, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_BooleanOR_ReturnValue_1) == 0x000299, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker, CallFunc_IsValid_ReturnValue_2) == 0x00029A, "Member 'GA_EnemyReact_Picker_C_ExecuteUbergraph_GA_EnemyReact_Picker::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_GetAttackTag \ +static_assert(alignof(GA_EnemyReact_Picker_C_GetAttackTag) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_GetAttackTag"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_GetAttackTag) == 0x000028, "Wrong size on GA_EnemyReact_Picker_C_GetAttackTag"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_GetAttackTag, Output) == 0x000000, "Member 'GA_EnemyReact_Picker_C_GetAttackTag::Output' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_GetAttackTag, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000008, "Member 'GA_EnemyReact_Picker_C_GetAttackTag::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_GetAttackTag, CallFunc_Array_IsEmpty_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Picker_C_GetAttackTag::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_GetAttackTag, CallFunc_Array_Get_Item) == 0x00001C, "Member 'GA_EnemyReact_Picker_C_GetAttackTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Picker_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_PlayerInstigating \ +static_assert(alignof(GA_EnemyReact_Picker_C_PlayerInstigating) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_PlayerInstigating"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_PlayerInstigating) == 0x000018, "Wrong size on GA_EnemyReact_Picker_C_PlayerInstigating"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_PlayerInstigating, ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Picker_C_PlayerInstigating::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_PlayerInstigating, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Picker_C_PlayerInstigating::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_PlayerInstigating, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Picker_C_PlayerInstigating::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping \ +static_assert(alignof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping) == 0x0000B8, "Wrong size on GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000008, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000020, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000028, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000040, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000048, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000050, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000060, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000068, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000078, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000080, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000090, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000098, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_self_CastInput_5) == 0x0000A0, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_self_CastInput_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x0000B0, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping, CallFunc_BooleanOR_ReturnValue) == 0x0000B1, "Member 'GA_EnemyReact_Picker_C_Set_Enemy_Reaction_Mapping::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_Unaware_of_Player_ \ +static_assert(alignof(GA_EnemyReact_Picker_C_Unaware_of_Player_) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_Unaware_of_Player_"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_Unaware_of_Player_) == 0x000068, "Wrong size on GA_EnemyReact_Picker_C_Unaware_of_Player_"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, Tolerance) == 0x000000, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::Tolerance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_GetAIController_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000040, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_Vector_Distance_ReturnValue) == 0x000058, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_Unaware_of_Player_, CallFunc_Not_PreBool_ReturnValue) == 0x000061, "Member 'GA_EnemyReact_Picker_C_Unaware_of_Player_::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Picker_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemyReact_Picker_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemyReact_Picker_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemyReact_Picker_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_EnemyReact_Picker_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemyReact_Picker_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemyReact_Picker_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemyReact_Picker_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Picker_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemyReact_Picker_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Picker_C \ +static_assert(alignof(UGA_EnemyReact_Picker_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Picker_C"); \ +static_assert(sizeof(UGA_EnemyReact_Picker_C) == 0x000790, "Wrong size on UGA_EnemyReact_Picker_C"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Picker_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Event_Data) == 0x000670, "Member 'UGA_EnemyReact_Picker_C::Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Reaction_Map) == 0x000720, "Member 'UGA_EnemyReact_Picker_C::Reaction_Map' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Hit_Memory) == 0x000728, "Member 'UGA_EnemyReact_Picker_C::Hit_Memory' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Tolerates_Attack) == 0x000738, "Member 'UGA_EnemyReact_Picker_C::Tolerates_Attack' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Player_Override_Tags) == 0x000740, "Member 'UGA_EnemyReact_Picker_C::Player_Override_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Hit_Memory_Max_Length) == 0x000760, "Member 'UGA_EnemyReact_Picker_C::Hit_Memory_Max_Length' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Memory_Reset_Time) == 0x000764, "Member 'UGA_EnemyReact_Picker_C::Memory_Reset_Time' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Memory_Reset_Task) == 0x000768, "Member 'UGA_EnemyReact_Picker_C::Memory_Reset_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Picker_C, Universal_Intolerance_Tags) == 0x000770, "Member 'UGA_EnemyReact_Picker_C::Universal_Intolerance_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_WrestlerCombatFeed_Kill_C \ +static_assert(alignof(ATA_WrestlerCombatFeed_Kill_C) == 0x000010, "Wrong alignment on ATA_WrestlerCombatFeed_Kill_C"); \ +static_assert(sizeof(ATA_WrestlerCombatFeed_Kill_C) == 0x0004B0, "Wrong size on ATA_WrestlerCombatFeed_Kill_C"); \ + +#define DUMPER7_ASSERTS_SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event \ +static_assert(alignof(SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event) == 0x000008, "Wrong alignment on SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event"); \ +static_assert(sizeof(SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event) == 0x000008, "Wrong size on SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event, BP_Enemy_Character_Base) == 0x000000, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_BP_Enemy_Character_Base_Event::BP_Enemy_Character_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP \ +static_assert(alignof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP) == 0x000008, "Wrong alignment on SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP"); \ +static_assert(sizeof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP) == 0x000230, "Wrong size on SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, EntryPoint) == 0x000000, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x000008, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetPlayerController_ReturnValue) == 0x000030, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000038, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1) == 0x000048, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetFrameInput_ReturnValue) == 0x000070, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetFrameInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000F8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000100, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_CustomEvent_BP_Enemy_Character_Base) == 0x000108, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_CustomEvent_BP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetPlayerController_ReturnValue_1) == 0x000110, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x000118, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_AsWrestler_Controller_in_Game_1) == 0x000120, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_AsWrestler_Controller_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_bSuccess_1) == 0x000128, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetFrameInput_ReturnValue_1) == 0x000130, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetFrameInput_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetPlayerPawn_ReturnValue) == 0x0001B8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_AsWrestler_Character) == 0x0001C0, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_bSuccess_2) == 0x0001C8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0001D0, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x0001D8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_DynamicCast_bSuccess_3) == 0x0001E8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x0001F0, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_Not_PreBool_ReturnValue) == 0x0001F8, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams_2) == 0x000200, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams_2' has a wrong offset!"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP, CallFunc_BooleanAND_ReturnValue) == 0x000228, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_ExecuteUbergraph_SEQ_ProEscape_DashTut_DirectorBP::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6 \ +static_assert(alignof(SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6) == 0x000008, "Wrong alignment on SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6"); \ +static_assert(sizeof(SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6) == 0x000008, "Wrong size on SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6"); \ +static_assert(offsetof(SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6, BP_Enemy_Character_Base) == 0x000000, "Member 'SEQ_ProEscape_DashTut_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_ProEscape_DashTut_DirectorBP_6::BP_Enemy_Character_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USEQ_ProEscape_DashTut_DirectorBP_C \ +static_assert(alignof(USEQ_ProEscape_DashTut_DirectorBP_C) == 0x000008, "Wrong alignment on USEQ_ProEscape_DashTut_DirectorBP_C"); \ +static_assert(sizeof(USEQ_ProEscape_DashTut_DirectorBP_C) == 0x000048, "Wrong size on USEQ_ProEscape_DashTut_DirectorBP_C"); \ +static_assert(offsetof(USEQ_ProEscape_DashTut_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USEQ_ProEscape_DashTut_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USEQ_ProEscape_DashTut_DirectorBP_C, Dodged) == 0x000040, "Member 'USEQ_ProEscape_DashTut_DirectorBP_C::Dodged' has a wrong offset!"); \ +static_assert(offsetof(USEQ_ProEscape_DashTut_DirectorBP_C, Punched) == 0x000041, "Member 'USEQ_ProEscape_DashTut_DirectorBP_C::Punched' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D \ +static_assert(alignof(GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D) == 0x0000B8, "Wrong size on GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D, EventTag) == 0x000000, "Member 'GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D, EventData) == 0x000008, "Member 'GA_Enemy_Snatched_C_EventReceived_99767620480BFBB543E72885F4F1429D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched \ +static_assert(alignof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched) == 0x000548, "Wrong size on GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, EntryPoint) == 0x000000, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_1) == 0x000020, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000030, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_2) == 0x000038, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventTag_4) == 0x00004C, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventData_4) == 0x000058, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventTag_3) == 0x000108, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventData_3) == 0x000110, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001C0, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventTag_2) == 0x0001D0, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventData_2) == 0x0001D8, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_4) == 0x000288, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventTag_1) == 0x000298, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventData_1) == 0x0002A0, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_5) == 0x000350, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventTag) == 0x000360, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CustomEvent_EventData) == 0x000368, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_6) == 0x000418, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, Temp_struct_Variable) == 0x000428, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, Temp_struct_Variable_1) == 0x0004D8, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetMontage_ReturnValue) == 0x0004E0, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004E8, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004F8, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_IsValid_ReturnValue_1) == 0x000500, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000508, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, K2Node_Event_bWasCancelled) == 0x000510, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000518, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000520, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_IsValid_ReturnValue_2) == 0x000528, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetAnimInstance_ReturnValue) == 0x000530, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_GetMontage_ReturnValue_1) == 0x000538, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_Montage_Play_ReturnValue) == 0x000540, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_Montage_Play_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched, CallFunc_Montage_IsPlaying_ReturnValue) == 0x000544, "Member 'GA_Enemy_Snatched_C_ExecuteUbergraph_GA_Enemy_Snatched::CallFunc_Montage_IsPlaying_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Snatched_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Snatched_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Snatched_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Snatched_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D \ +static_assert(alignof(GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D) == 0x0000B8, "Wrong size on GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D, EventTag) == 0x000000, "Member 'GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D, EventData) == 0x000008, "Member 'GA_Enemy_Snatched_C_OnBlendOut_99767620480BFBB543E72885F4F1429D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D \ +static_assert(alignof(GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D) == 0x0000B8, "Wrong size on GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D, EventTag) == 0x000000, "Member 'GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D, EventData) == 0x000008, "Member 'GA_Enemy_Snatched_C_OnCancelled_99767620480BFBB543E72885F4F1429D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D \ +static_assert(alignof(GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D) == 0x0000B8, "Wrong size on GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D, EventTag) == 0x000000, "Member 'GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D, EventData) == 0x000008, "Member 'GA_Enemy_Snatched_C_OnCompleted_99767620480BFBB543E72885F4F1429D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D \ +static_assert(alignof(GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D) == 0x000008, "Wrong alignment on GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D"); \ +static_assert(sizeof(GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D) == 0x0000B8, "Wrong size on GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D, EventTag) == 0x000000, "Member 'GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D, EventData) == 0x000008, "Member 'GA_Enemy_Snatched_C_OnInterrupted_99767620480BFBB543E72885F4F1429D::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Snatched_C \ +static_assert(alignof(UGA_Enemy_Snatched_C) == 0x000008, "Wrong alignment on UGA_Enemy_Snatched_C"); \ +static_assert(sizeof(UGA_Enemy_Snatched_C) == 0x000670, "Wrong size on UGA_Enemy_Snatched_C"); \ +static_assert(offsetof(UGA_Enemy_Snatched_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Snatched_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prowl_C_CamRotation \ +static_assert(alignof(GA_PlayerMovement_Prowl_C_CamRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prowl_C_CamRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Prowl_C_CamRotation) == 0x000238, "Wrong size on GA_PlayerMovement_Prowl_C_CamRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, Parent) == 0x000000, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::Parent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, rot) == 0x000008, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::rot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_GetVelocity_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_GetActorForwardVector_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_Normal_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_IsFalling_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_bBlockingHit) == 0x000088, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_bInitialOverlap) == 0x000089, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_Time) == 0x00008C, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_Distance) == 0x000090, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_Location) == 0x000098, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_ImpactPoint) == 0x0000B0, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_Normal) == 0x0000C8, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_ImpactNormal) == 0x0000E0, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_PhysMat) == 0x0000F8, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_HitActor) == 0x000100, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_HitComponent) == 0x000108, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_HitBoneName) == 0x000110, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_BoneName) == 0x000118, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_HitItem) == 0x000120, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_ElementIndex) == 0x000124, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_FaceIndex) == 0x000128, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_TraceStart) == 0x000130, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakHitResult_TraceEnd) == 0x000148, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Roll) == 0x000160, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Pitch) == 0x000164, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Yaw) == 0x000168, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_MakeRotFromZX_ReturnValue) == 0x000170, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_MakeRotFromZX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x000188, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Roll_1) == 0x0001A0, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Pitch_1) == 0x0001A4, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Yaw_1) == 0x0001A8, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_VLerp_ReturnValue) == 0x0001B0, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0001C8, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0001D0, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_MakeRotator_ReturnValue) == 0x0001E8, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Roll_2) == 0x000200, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Pitch_2) == 0x000204, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_BreakRotator_Yaw_2) == 0x000208, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_MakeRotator_ReturnValue_1) == 0x000210, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000228, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_CamRotation, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000230, "Member 'GA_PlayerMovement_Prowl_C_CamRotation::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl \ +static_assert(alignof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl"); \ +static_assert(sizeof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl) == 0x000180, "Wrong size on GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_WaitDelay_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, Temp_bool_Variable) == 0x000010, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_IsValid_ReturnValue) == 0x000011, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, Temp_real_Variable) == 0x000014, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, Temp_real_Variable_1) == 0x000018, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x00001C, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_ProwlValid_Valid) == 0x000024, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_ProwlValid_Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, K2Node_Event_bWasCancelled) == 0x000050, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000058, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, K2Node_CreateDelegate_OutputDelegate) == 0x000078, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000088, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_RemoveActiveGameplayEffect_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_RemoveActiveGameplayEffect_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0000A0, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_CamRotation_Rot) == 0x0000A8, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_CamRotation_Rot' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_RInterpTo_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Roll) == 0x0000D8, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Pitch) == 0x0000DC, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Yaw) == 0x0000E0, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x0000E8, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0000F0, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetController_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetControlRotation_ReturnValue) == 0x000100, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_IsFalling_ReturnValue) == 0x000118, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Roll_1) == 0x00011C, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Pitch_1) == 0x000120, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_BreakRotator_Yaw_1) == 0x000124, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_MakeRotator_ReturnValue) == 0x000128, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, K2Node_Select_Default) == 0x000140, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_GetControlRotation_ReturnValue_1) == 0x000148, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_RInterpTo_ReturnValue_1) == 0x000160, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000178, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl, CallFunc_RInterpTo_DeltaTime_ImplicitCast_1) == 0x00017C, "Member 'GA_PlayerMovement_Prowl_C_ExecuteUbergraph_GA_PlayerMovement_Prowl::CallFunc_RInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prowl_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Prowl_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Prowl_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Prowl_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Prowl_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Prowl_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prowl_C_ProwlValid \ +static_assert(alignof(GA_PlayerMovement_Prowl_C_ProwlValid) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prowl_C_ProwlValid"); \ +static_assert(sizeof(GA_PlayerMovement_Prowl_C_ProwlValid) == 0x000068, "Wrong size on GA_PlayerMovement_Prowl_C_ProwlValid"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, Valid) == 0x000000, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000018, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_GetActorForwardVector_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_HasTag_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_GetLastInputVector_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_Dot_VectorVector_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_ProwlValid, CallFunc_BooleanAND_ReturnValue) == 0x000061, "Member 'GA_PlayerMovement_Prowl_C_ProwlValid::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Prowl_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_Prowl_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility) == 0x000080, "Wrong size on GA_PlayerMovement_Prowl_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000074, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Prowl_C_K2_CanActivateAbility, CallFunc_HasClanPerk_ReturnValue) == 0x00007C, "Member 'GA_PlayerMovement_Prowl_C_K2_CanActivateAbility::CallFunc_HasClanPerk_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Prowl_C \ +static_assert(alignof(UGA_PlayerMovement_Prowl_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Prowl_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Prowl_C) == 0x000768, "Wrong size on UGA_PlayerMovement_Prowl_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Prowl_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Prowl_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prowl_C, Gameplay_Cue_Parameter) == 0x000670, "Member 'UGA_PlayerMovement_Prowl_C::Gameplay_Cue_Parameter' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prowl_C, TargetRot) == 0x000748, "Member 'UGA_PlayerMovement_Prowl_C::TargetRot' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Prowl_C, Effect) == 0x000760, "Member 'UGA_PlayerMovement_Prowl_C::Effect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Machete_C_ExecuteUbergraph_BP_Machete \ +static_assert(alignof(BP_Machete_C_ExecuteUbergraph_BP_Machete) == 0x000004, "Wrong alignment on BP_Machete_C_ExecuteUbergraph_BP_Machete"); \ +static_assert(sizeof(BP_Machete_C_ExecuteUbergraph_BP_Machete) == 0x000004, "Wrong size on BP_Machete_C_ExecuteUbergraph_BP_Machete"); \ +static_assert(offsetof(BP_Machete_C_ExecuteUbergraph_BP_Machete, EntryPoint) == 0x000000, "Member 'BP_Machete_C_ExecuteUbergraph_BP_Machete::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Machete_C \ +static_assert(alignof(ABP_Machete_C) == 0x000008, "Wrong alignment on ABP_Machete_C"); \ +static_assert(sizeof(ABP_Machete_C) == 0x0003C0, "Wrong size on ABP_Machete_C"); \ +static_assert(offsetof(ABP_Machete_C, UberGraphFrame_BP_Machete_C) == 0x0003B8, "Member 'ABP_Machete_C::UberGraphFrame_BP_Machete_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_Enemy_Spawned \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_Enemy_Spawned) == 0x000008, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_Enemy_Spawned"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_Enemy_Spawned) == 0x000008, "Wrong size on BP_DynamicCombatSpawnVolume_C_Enemy_Spawned"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Enemy_Spawned, SpawnedEnemy) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_Enemy_Spawned::SpawnedEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume) == 0x000010, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume) == 0x000A50, "Wrong size on BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, EntryPoint) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_IsClosed_Variable) == 0x000011, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Array_Index_Variable) == 0x00001C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable) == 0x000020, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Loop_Counter_Variable_1) == 0x000024, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Array_Index_Variable_1) == 0x00002C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Array_Index_Variable_2) == 0x000030, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Loop_Counter_Variable_2) == 0x000034, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_1) == 0x000038, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_2) == 0x00003C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Loop_Counter_Variable_3) == 0x000040, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_3) == 0x000044, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Array_Index_Variable_3) == 0x000048, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_Enemey) == 0x000050, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_Enemey' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_IsFactionB) == 0x000060, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_IsFactionB' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_IsElite) == 0x000061, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_IsElite' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_StringToText_ReturnValue) == 0x000068, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_StringToText_ReturnValue_1) == 0x000080, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData) == 0x000098, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_1) == 0x0000E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_2) == 0x000138, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Variable) == 0x00013C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_2) == 0x000140, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeArray_Array) == 0x000190, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_3) == 0x0001A0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Format_ReturnValue) == 0x0001F0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeArray_Array_1) == 0x000208, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Format_ReturnValue_1) == 0x000218, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Format_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_4) == 0x000230, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_5) == 0x000280, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_LinearColorToColor_ReturnValue) == 0x0002D0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_LinearColorToColor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_LinearColorToColor_ReturnValue_1) == 0x0002D4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_LinearColorToColor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_LinearColorToColor_ReturnValue_2) == 0x0002D8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_LinearColorToColor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_3) == 0x0002DC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_4) == 0x0002E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Map_Find_Value) == 0x0002E4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Map_Find_ReturnValue) == 0x0002E5, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_LinearColorToColor_ReturnValue_3) == 0x0002E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_LinearColorToColor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetActorOfClass_ReturnValue) == 0x0002F0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_StringToText_ReturnValue_2) == 0x0002F8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_StringToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_FormatArgumentData_6) == 0x000310, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_FormatArgumentData_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_5) == 0x000360, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeArray_Array_2) == 0x000368, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Format_ReturnValue_2) == 0x000378, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Format_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_6) == 0x000390, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_7) == 0x000394, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_8) == 0x000398, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_9) == 0x00039C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_SeedMulitplier) == 0x0003A0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_SeedMulitplier' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_Simulate) == 0x0003A4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_Simulate' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_LevelDataAsset) == 0x0003A8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_LevelDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_Encounter_type_index_0_3) == 0x0003B0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_Encounter_type_index_0_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_4) == 0x0003B4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue) == 0x0003B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeRandomStream_ReturnValue) == 0x0003BC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeRandomStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomIntegerInRange_ReturnValue) == 0x0003C4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeLiteralText_ReturnValue) == 0x0003C8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeLiteralText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Variable_1) == 0x0003E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Event_OtherActor_1) == 0x0003E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0003F0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0003F8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Get_Item) == 0x000400, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_IsValid_ReturnValue) == 0x000408, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_1) == 0x00040C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue) == 0x000410, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Variable_2) == 0x000411, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Array_Index_Variable_4) == 0x000414, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_SpawnedEnemy) == 0x000418, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_SpawnedEnemy' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_1) == 0x000420, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000428, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetRandomReachablePointInRadius_RandomLocation) == 0x000440, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetRandomReachablePointInRadius_RandomLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetRandomReachablePointInRadius_ReturnValue) == 0x000458, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetRandomReachablePointInRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Get_Item_1) == 0x000460, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_10) == 0x000488, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue) == 0x00048C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_2) == 0x000490, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_11) == 0x000494, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Percent_IntInt_ReturnValue) == 0x000498, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Percent_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Greater_IntInt_ReturnValue) == 0x00049C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_BoolBool_ReturnValue) == 0x00049D, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_2) == 0x0004A0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0004A8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Greater_IntInt_ReturnValue_1) == 0x0004B0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Greater_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_3) == 0x0004B4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Subtract_IntInt_ReturnValue) == 0x0004B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeRandomStream_ReturnValue_1) == 0x0004BC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeRandomStream_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RandomFromStream_OutItem) == 0x0004C8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RandomFromStream_OutItem' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RandomFromStream_OutIndex) == 0x0004F0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RandomFromStream_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RemoveItem_ReturnValue) == 0x0004F4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x0004F8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0004FC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_4) == 0x000500, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Greater_IntInt_ReturnValue_2) == 0x000504, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Greater_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_AddUnique_ReturnValue) == 0x000508, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue_1) == 0x00050C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000510, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Round_ReturnValue) == 0x000518, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000520, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_SetIndexBasedOnFactionNumbersV2_Index) == 0x000528, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_SetIndexBasedOnFactionNumbersV2_Index' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Round_ReturnValue_1) == 0x00052C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Round_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000530, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue_2) == 0x000534, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BooleanAND_ReturnValue) == 0x000538, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue_3) == 0x00053C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000540, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeRandomStream_ReturnValue_2) == 0x000544, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeRandomStream_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BooleanOR_ReturnValue) == 0x00054C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomIntegerInRangeFromStream_ReturnValue) == 0x000550, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomIntegerInRangeFromStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x000554, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_IntInt_ReturnValue_3) == 0x000555, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_struct_Variable) == 0x000558, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_struct_Variable_1) == 0x000578, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000598, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0005B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Variable_3) == 0x0005B9, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Loop_Counter_Variable_4) == 0x0005BC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_3) == 0x0005C0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_12) == 0x0005C4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetAllActorsOfClass_OutActors) == 0x0005C8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_5) == 0x0005D8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Get_Item_2) == 0x0005E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x0005E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue_1) == 0x000610, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000638, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000650, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_5) == 0x000668, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_4) == 0x00066C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_AddUnique_ReturnValue_1) == 0x000670, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Get_Item_3) == 0x000678, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_AddUnique_ReturnValue_2) == 0x000680, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_AddUnique_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_DynamicCast_AsBox_Collision) == 0x000688, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_DynamicCast_AsBox_Collision' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_DynamicCast_bSuccess) == 0x000690, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_DynamicCast_AsSphere_Collision) == 0x000698, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_DynamicCast_AsSphere_Collision' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_DynamicCast_bSuccess_1) == 0x0006A0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0006A8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x0006C0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Vector_Distance_ReturnValue) == 0x000720, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_IsPointInBoxWithTransform_ReturnValue) == 0x000728, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_IsPointInBoxWithTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000729, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_6) == 0x00072C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_struct_Variable_2) == 0x000730, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_5) == 0x000750, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Variable_4) == 0x000751, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Event_OtherActor) == 0x000758, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000760, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_Has_Been_Initd_Variable_1) == 0x000761, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_bool_IsClosed_Variable_1) == 0x000762, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default) == 0x000768, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default_1) == 0x000788, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomFloatInRange_ReturnValue) == 0x0007A8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BooleanAND_ReturnValue_1) == 0x0007B0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_6) == 0x0007B4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CustomEvent_LineColor) == 0x0007B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CustomEvent_LineColor' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_X) == 0x0007C8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_Y) == 0x0007D0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_Z) == 0x0007D8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0007E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomRotator_ReturnValue) == 0x0007E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_X_1) == 0x000800, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_Y_1) == 0x000808, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BreakVector_Z_1) == 0x000810, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeTransform_ReturnValue) == 0x000820, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeVector_ReturnValue) == 0x000880, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000898, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeVector_ReturnValue_1) == 0x0008A0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_FinishSpawningActor_ReturnValue) == 0x0008B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomIntegerInRange_ReturnValue_1) == 0x0008C0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomIntegerInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_CreateDelegate_OutputDelegate) == 0x0008C4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue_4) == 0x0008D4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeRandomStream_ReturnValue_3) == 0x0008D8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeRandomStream_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomBoolWithWeightFromStream_ReturnValue) == 0x0008E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomBoolWithWeightFromStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_IntInt_ReturnValue_5) == 0x0008E4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_BooleanAND_ReturnValue_2) == 0x0008E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeRandomStream_ReturnValue_4) == 0x0008EC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeRandomStream_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default_2) == 0x0008F8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default_3) == 0x000908, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_7) == 0x000918, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default_4) == 0x000920, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_13) == 0x000930, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_Select_Default_5) == 0x000938, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RandomFromStream_OutItem_1) == 0x000948, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RandomFromStream_OutItem_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RandomFromStream_OutIndex_1) == 0x00094C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RandomFromStream_OutIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_IntToByte_ReturnValue) == 0x000950, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue) == 0x000958, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetEnumeratorValueFromIndex_ReturnValue) == 0x000968, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetEnumeratorValueFromIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_NotEqual_StrStr_ReturnValue) == 0x000969, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_NotEqual_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_ByteToInt_ReturnValue) == 0x00096C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_StringToName_ReturnValue) == 0x000970, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_NotEqual_StrStr_ReturnValue_1) == 0x000978, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_NotEqual_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_MakeStruct_WrestlerDeferredEnemySpawnParam) == 0x000980, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_MakeStruct_WrestlerDeferredEnemySpawnParam' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, Temp_int_Variable_8) == 0x0009B8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::Temp_int_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Conv_IntToByte_ReturnValue_1) == 0x0009BC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Conv_IntToByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetValidValue_ReturnValue) == 0x0009BD, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetEnumeratorUserFriendlyName_ReturnValue_1) == 0x0009C0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetEnumeratorUserFriendlyName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Add_ReturnValue) == 0x0009D0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetProperty_ReturnValue) == 0x0009D4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Add_IntInt_ReturnValue_14) == 0x0009D8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Add_IntInt_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Get_Item_4) == 0x0009E0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_7) == 0x0009E8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_RemoveItem_ReturnValue_1) == 0x0009EC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_RemoveItem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_6) == 0x0009ED, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_IsValid_ReturnValue_1) == 0x0009EE, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_IsActorDead_OutPins) == 0x0009EF, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_IsActorDead_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_K2_IsActorDead_ReturnValue) == 0x0009F0, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_K2_IsActorDead_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Array_Length_ReturnValue_8) == 0x0009F4, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Array_Length_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, K2Node_SwitchEnum_CmpSuccess) == 0x0009F8, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Greater_IntInt_ReturnValue_3) == 0x0009F9, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Greater_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_MakeLiteralInt_ReturnValue) == 0x0009FC, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_MakeLiteralInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Less_IntInt_ReturnValue_7) == 0x000A00, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_GetProperty_ReturnValue_1) == 0x000A04, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Subtract_IntInt_ReturnValue_2) == 0x000A08, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Subtract_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_SetWorldSize_Value_ImplicitCast) == 0x000A0C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_SetWorldSize_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000A10, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x000A18, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000A20, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomFloatInRange_Max_ImplicitCast) == 0x000A28, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomFloatInRange_Max_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomFloatInRange_Min_ImplicitCast) == 0x000A30, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomFloatInRange_Min_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RetriggerableDelay_Duration_ImplicitCast) == 0x000A38, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RetriggerableDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_DrawDebugCylinder_Radius_ImplicitCast) == 0x000A3C, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_DrawDebugCylinder_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume, CallFunc_RandomBoolWithWeightFromStream_Weight_ImplicitCast) == 0x000A40, "Member 'BP_DynamicCombatSpawnVolume_C_ExecuteUbergraph_BP_DynamicCombatSpawnVolume::CallFunc_RandomBoolWithWeightFromStream_Weight_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap) == 0x000008, "Wrong size on BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2 \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2) == 0x000004, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2) == 0x000008, "Wrong size on BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2, Index_0) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2::Index_0' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2, Index_1) == 0x000004, "Member 'BP_DynamicCombatSpawnVolume_C_SetIndexBasedOnFactionNumbersV2::Index_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_Show_spawn_distance \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_Show_spawn_distance) == 0x000004, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_Show_spawn_distance"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_Show_spawn_distance) == 0x000010, "Wrong size on BP_DynamicCombatSpawnVolume_C_Show_spawn_distance"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Show_spawn_distance, LineColor) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_Show_spawn_distance::LineColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy) == 0x000008, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy) == 0x000018, "Wrong size on BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy, Enemey) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy::Enemey' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy, IsFactionB) == 0x000010, "Member 'BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy::IsFactionB' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy, IsElite) == 0x000011, "Member 'BP_DynamicCombatSpawnVolume_C_SimulationAddEnemy::IsElite' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_Spawn_Enemies \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies) == 0x000008, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_Spawn_Enemies"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies) == 0x000018, "Wrong size on BP_DynamicCombatSpawnVolume_C_Spawn_Enemies"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies, SeedMulitplier) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_Spawn_Enemies::SeedMulitplier' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies, Simulate) == 0x000004, "Member 'BP_DynamicCombatSpawnVolume_C_Spawn_Enemies::Simulate' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies, LevelDataAsset) == 0x000008, "Member 'BP_DynamicCombatSpawnVolume_C_Spawn_Enemies::LevelDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_Spawn_Enemies, Encounter_Type_Index_0_3_0) == 0x000010, "Member 'BP_DynamicCombatSpawnVolume_C_Spawn_Enemies::Encounter_Type_Index_0_3_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicCombatSpawnVolume_C_UserConstructionScript \ +static_assert(alignof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_DynamicCombatSpawnVolume_C_UserConstructionScript"); \ +static_assert(sizeof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript) == 0x000930, "Wrong size on BP_DynamicCombatSpawnVolume_C_UserConstructionScript"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable_2) == 0x000018, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_X) == 0x000028, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Y) == 0x000030, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Z) == 0x000038, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_X_1) == 0x000048, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Y_1) == 0x000050, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Z_1) == 0x000058, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_struct_Variable) == 0x000060, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue) == 0x0000C0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue_1) == 0x0000D8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x0000F0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000F8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_struct_Variable_1) == 0x000100, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Round_ReturnValue) == 0x000160, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000168, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_1) == 0x000170, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000180, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_2) == 0x0001E0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Conv_StringToText_ReturnValue) == 0x0001E8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Loop_Counter_Variable_3) == 0x000200, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_3) == 0x000204, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_1) == 0x000210, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_3) == 0x000270, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000278, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue) == 0x000288, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue) == 0x00028C, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_GetAllActorsOfClass_OutActors) == 0x000290, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Get_Item) == 0x0002A0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue) == 0x0002A8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x0002C0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0002C8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0002E0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x0002F8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_K2_SetWorldLocation_SweepHitResult_1) == 0x0003E0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_K2_SetWorldLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_K2_SetWorldLocation_SweepHitResult_2) == 0x0004C8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_K2_SetWorldLocation_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_1) == 0x0005B0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0005B4, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue_1) == 0x0005B5, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, Temp_int_Array_Index_Variable_3) == 0x0005B8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Get_Item_1) == 0x0005C0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0005C8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_FMax_ReturnValue) == 0x0005D0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_GetActorBounds_Origin) == 0x0005D8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_GetActorBounds_BoxExtent) == 0x0005F0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_X_2) == 0x000608, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Y_2) == 0x000610, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Z_2) == 0x000618, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_X_3) == 0x000620, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Y_3) == 0x000628, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Z_3) == 0x000630, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000638, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue_3) == 0x000640, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000648, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000650, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000658, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Add_DoubleDouble_ReturnValue_4) == 0x000660, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Add_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue_2) == 0x000668, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Sqrt_ReturnValue) == 0x000680, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Sqrt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Not_PreBool_ReturnValue) == 0x000688, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Get_Item_2) == 0x000690, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_2) == 0x0006F0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Location) == 0x0006F8, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Rotation) == 0x000710, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Scale) == 0x000728, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue_2) == 0x000740, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_X_4) == 0x000748, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_X_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Y_4) == 0x000750, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Y_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakVector_Z_4) == 0x000758, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakVector_Z_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000760, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_2) == 0x000770, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_4) == 0x0007D0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Get_Item_3) == 0x0007E0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_AddUnique_ReturnValue) == 0x000840, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Location_1) == 0x000848, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Rotation_1) == 0x000860, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_BreakTransform_Scale_1) == 0x000878, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000890, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue_3) == 0x0008B0, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_Length_ReturnValue_3) == 0x000910, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_5) == 0x000918, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Less_IntInt_ReturnValue_3) == 0x000920, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_Array_AddUnique_ReturnValue_1) == 0x000924, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_DrawDebugCylinder_Radius_ImplicitCast) == 0x000928, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_DrawDebugCylinder_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicCombatSpawnVolume_C_UserConstructionScript, CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast) == 0x00092C, "Member 'BP_DynamicCombatSpawnVolume_C_UserConstructionScript::CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_DynamicCombatSpawnVolume_C \ +static_assert(alignof(ABP_DynamicCombatSpawnVolume_C) == 0x000008, "Wrong alignment on ABP_DynamicCombatSpawnVolume_C"); \ +static_assert(sizeof(ABP_DynamicCombatSpawnVolume_C) == 0x0004E0, "Wrong size on ABP_DynamicCombatSpawnVolume_C"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, UberGraphFrame) == 0x000298, "Member 'ABP_DynamicCombatSpawnVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_DynamicCombatSpawnVolume_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Collision_Box) == 0x0002A8, "Member 'ABP_DynamicCombatSpawnVolume_C::Collision_Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Collision_Sphere) == 0x0002B8, "Member 'ABP_DynamicCombatSpawnVolume_C::Collision_Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, CollisionsVisibleInGame) == 0x0002C8, "Member 'ABP_DynamicCombatSpawnVolume_C::CollisionsVisibleInGame' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, NonActiveCollisionsArray) == 0x0002D0, "Member 'ABP_DynamicCombatSpawnVolume_C::NonActiveCollisionsArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, EnemySpawners_DoNotEdit_) == 0x0002E0, "Member 'ABP_DynamicCombatSpawnVolume_C::EnemySpawners_DoNotEdit_' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Spawn_Distance) == 0x0002F0, "Member 'ABP_DynamicCombatSpawnVolume_C::Spawn_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, DespawnDistance) == 0x0002F8, "Member 'ABP_DynamicCombatSpawnVolume_C::DespawnDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, BoundsDistance) == 0x000300, "Member 'ABP_DynamicCombatSpawnVolume_C::BoundsDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, CentrePoint) == 0x000308, "Member 'ABP_DynamicCombatSpawnVolume_C::CentrePoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Max_Enemies) == 0x000320, "Member 'ABP_DynamicCombatSpawnVolume_C::Max_Enemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Infighting) == 0x000324, "Member 'ABP_DynamicCombatSpawnVolume_C::Infighting' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, SpawnFactionB) == 0x000325, "Member 'ABP_DynamicCombatSpawnVolume_C::SpawnFactionB' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Seed) == 0x000328, "Member 'ABP_DynamicCombatSpawnVolume_C::Seed' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, RandomSeed) == 0x00032C, "Member 'ABP_DynamicCombatSpawnVolume_C::RandomSeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, SeedIsNotUnique) == 0x000330, "Member 'ABP_DynamicCombatSpawnVolume_C::SeedIsNotUnique' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Simulation) == 0x000331, "Member 'ABP_DynamicCombatSpawnVolume_C::Simulation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, SimulationText) == 0x000338, "Member 'ABP_DynamicCombatSpawnVolume_C::SimulationText' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, EnemySpawners) == 0x000340, "Member 'ABP_DynamicCombatSpawnVolume_C::EnemySpawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, EnemiesEnumIDs) == 0x000350, "Member 'ABP_DynamicCombatSpawnVolume_C::EnemiesEnumIDs' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, FactionA) == 0x000360, "Member 'ABP_DynamicCombatSpawnVolume_C::FactionA' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, FactionB) == 0x000378, "Member 'ABP_DynamicCombatSpawnVolume_C::FactionB' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, SpawnedEnemies) == 0x000390, "Member 'ABP_DynamicCombatSpawnVolume_C::SpawnedEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Damage_Immune_tag) == 0x0003A0, "Member 'ABP_DynamicCombatSpawnVolume_C::Damage_Immune_tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Current_Spawner) == 0x0003A8, "Member 'ABP_DynamicCombatSpawnVolume_C::Current_Spawner' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, DesiredNumberOfEnemies) == 0x0003D0, "Member 'ABP_DynamicCombatSpawnVolume_C::DesiredNumberOfEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, NewVar) == 0x0003D4, "Member 'ABP_DynamicCombatSpawnVolume_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, MinNumberOfEnemies) == 0x0003D8, "Member 'ABP_DynamicCombatSpawnVolume_C::MinNumberOfEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, HasSpawned) == 0x0003DC, "Member 'ABP_DynamicCombatSpawnVolume_C::HasSpawned' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, IsFrozen) == 0x0003DD, "Member 'ABP_DynamicCombatSpawnVolume_C::IsFrozen' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Level_Data_Asset) == 0x0003E0, "Member 'ABP_DynamicCombatSpawnVolume_C::Level_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Encounter_Type_Index_0_3) == 0x0003E8, "Member 'ABP_DynamicCombatSpawnVolume_C::Encounter_Type_Index_0_3' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, NewVar_0) == 0x0003EC, "Member 'ABP_DynamicCombatSpawnVolume_C::NewVar_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, ForceEncouterType) == 0x0003F0, "Member 'ABP_DynamicCombatSpawnVolume_C::ForceEncouterType' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, BlockName) == 0x000440, "Member 'ABP_DynamicCombatSpawnVolume_C::BlockName' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, TotalEnemies) == 0x000450, "Member 'ABP_DynamicCombatSpawnVolume_C::TotalEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, TotalFactionA) == 0x000454, "Member 'ABP_DynamicCombatSpawnVolume_C::TotalFactionA' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, TotalFactionB) == 0x000458, "Member 'ABP_DynamicCombatSpawnVolume_C::TotalFactionB' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, TotalElites) == 0x00045C, "Member 'ABP_DynamicCombatSpawnVolume_C::TotalElites' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, ShowBlockName) == 0x000460, "Member 'ABP_DynamicCombatSpawnVolume_C::ShowBlockName' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, CombatType) == 0x000468, "Member 'ABP_DynamicCombatSpawnVolume_C::CombatType' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, CombatMusicStarted) == 0x000470, "Member 'ABP_DynamicCombatSpawnVolume_C::CombatMusicStarted' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, MinPlayerElevation) == 0x000478, "Member 'ABP_DynamicCombatSpawnVolume_C::MinPlayerElevation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, DebugEncounterType) == 0x000490, "Member 'ABP_DynamicCombatSpawnVolume_C::DebugEncounterType' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, Distances) == 0x000498, "Member 'ABP_DynamicCombatSpawnVolume_C::Distances' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, EnemyGodMode) == 0x0004A8, "Member 'ABP_DynamicCombatSpawnVolume_C::EnemyGodMode' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, EnemyGodModeDeactivation) == 0x0004AC, "Member 'ABP_DynamicCombatSpawnVolume_C::EnemyGodModeDeactivation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, PI_NumberOfOverlappedActors) == 0x0004C0, "Member 'ABP_DynamicCombatSpawnVolume_C::PI_NumberOfOverlappedActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, SpawnHeightOffset) == 0x0004C8, "Member 'ABP_DynamicCombatSpawnVolume_C::SpawnHeightOffset' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, ActualSpawnRadius) == 0x0004D0, "Member 'ABP_DynamicCombatSpawnVolume_C::ActualSpawnRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicCombatSpawnVolume_C, ShowSpawnDistance) == 0x0004D8, "Member 'ABP_DynamicCombatSpawnVolume_C::ShowSpawnDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWID_Machete_C \ +static_assert(alignof(UWID_Machete_C) == 0x000010, "Wrong alignment on UWID_Machete_C"); \ +static_assert(sizeof(UWID_Machete_C) == 0x0000D0, "Wrong size on UWID_Machete_C"); \ + +#define DUMPER7_ASSERTS_ATA_Telekinesis_C \ +static_assert(alignof(ATA_Telekinesis_C) == 0x000010, "Wrong alignment on ATA_Telekinesis_C"); \ +static_assert(sizeof(ATA_Telekinesis_C) == 0x000460, "Wrong size on ATA_Telekinesis_C"); \ +static_assert(offsetof(ATA_Telekinesis_C, DefaultSceneRoot) == 0x000450, "Member 'ATA_Telekinesis_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BlockTargeting_period_C \ +static_assert(alignof(UGE_BlockTargeting_period_C) == 0x000008, "Wrong alignment on UGE_BlockTargeting_period_C"); \ +static_assert(sizeof(UGE_BlockTargeting_period_C) == 0x000A70, "Wrong size on UGE_BlockTargeting_period_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_01A2AC87458D5DE374663EA6D9422112::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_8101D413410FF011D66A61942D84F988::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_D4A8993549CFF5BFA92ED89ED90B8CF3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_EventReceived_E7B109AB490B5EAF3C0DD08E1EF48607::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked) == 0x001C48, "Wrong size on GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, EntryPoint) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAudioCharacterComponent_self_CastInput) == 0x000010, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAudioCharacterComponent_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000020, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_16) == 0x000038, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_16) == 0x000040, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_15) == 0x0000F0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_15) == 0x0000F8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_1) == 0x0001A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable) == 0x0001B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_1) == 0x000268, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_2) == 0x000270, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_ActorTimeDelay_ReturnValue) == 0x000280, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_3) == 0x000288, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue) == 0x000298, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_4) == 0x00029C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_5) == 0x0002AC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0002C0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002C8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_1) == 0x0002D8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_14) == 0x0002DC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_14) == 0x0002E8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_13) == 0x000398, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_13) == 0x0003A0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_7) == 0x000450, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_12) == 0x000460, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_12) == 0x000468, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_8) == 0x000518, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_11) == 0x000528, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_11) == 0x000530, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_9) == 0x0005E0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_10) == 0x0005F0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_10) == 0x0005F8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_10) == 0x0006A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_2) == 0x0006B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_3) == 0x000768, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_11) == 0x000770, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_12) == 0x000780, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_13) == 0x000790, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x0007A0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_14) == 0x0007A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_2) == 0x0007B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_15) == 0x0007BC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_9) == 0x0007CC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_9) == 0x0007D8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_8) == 0x000888, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_8) == 0x000890, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_16) == 0x000940, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_7) == 0x000950, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_7) == 0x000958, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_17) == 0x000A08, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_6) == 0x000A18, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_6) == 0x000A20, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_18) == 0x000AD0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_5) == 0x000AE0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_5) == 0x000AE8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_19) == 0x000B98, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_4) == 0x000BA8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_5) == 0x000C58, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000C60, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeVector_ReturnValue) == 0x000C78, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_20) == 0x000C90, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_21) == 0x000CA0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_22) == 0x000CB0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_WrestlerTaskTick_ReturnValue_2) == 0x000CC0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_WrestlerTaskTick_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_23) == 0x000CC8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_3) == 0x000CD8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_4) == 0x000CDC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_4) == 0x000CE8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_3) == 0x000D98, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_3) == 0x000DA0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_24) == 0x000E50, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_2) == 0x000E60, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_2) == 0x000E68, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_25) == 0x000F18, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_1) == 0x000F28, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_1) == 0x000F30, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_26) == 0x000FE0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag) == 0x000FF0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData) == 0x000FF8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_27) == 0x0010A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_6) == 0x0010B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_struct_Variable_7) == 0x001168, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x001170, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_delegate_Variable) == 0x001188, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_bool_IsClosed_Variable) == 0x001198, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_28) == 0x00119C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_Event_bWasCancelled) == 0x0011AC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_Event_EventData) == 0x0011B0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x001260, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x001268, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_DynamicCast_bSuccess) == 0x001278, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x001280, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_19) == 0x001288, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_19) == 0x001290, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_19' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_4) == 0x001340, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x001348, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x001350, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsWalking_ReturnValue) == 0x001358, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_5) == 0x001359, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue) == 0x001360, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x001368, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1) == 0x001388, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAbilitySystemComponentFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x001390, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1) == 0x001398, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_TryActivateAbilitiesByTag_ReturnValue_1) == 0x0013B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_TryActivateAbilitiesByTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0013C0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x0013C8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x0013D0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_SwitchEnum_CmpSuccess) == 0x0013D1, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0013D8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_6) == 0x0013E0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_29) == 0x0013E4, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_7) == 0x0013F4, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0013F8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001400, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetVelocity_ReturnValue) == 0x001408, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetController_ReturnValue) == 0x001420, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_NegateVector_ReturnValue) == 0x001428, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x001440, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll) == 0x001458, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch) == 0x00145C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw) == 0x001460, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x001468, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x001470, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x001478, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue) == 0x001480, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x001498, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0014A0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetController_ReturnValue_1) == 0x0014A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetControlRotation_ReturnValue) == 0x0014B0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_1) == 0x0014C8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_1) == 0x0014CC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_1) == 0x0014D0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0014D8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue_1) == 0x0014E0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0014F8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_SelfActor) == 0x001500, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_SelfActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_OtherActor) == 0x001508, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_NormalImpulse) == 0x001510, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_Hit) == 0x001528, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_bBlockingHit) == 0x001610, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_bInitialOverlap) == 0x001611, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_Time) == 0x001614, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_Distance) == 0x001618, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_Location) == 0x001620, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_ImpactPoint) == 0x001638, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_Normal) == 0x001650, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_ImpactNormal) == 0x001668, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_PhysMat) == 0x001680, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_HitActor) == 0x001688, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_HitComponent) == 0x001690, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_HitBoneName) == 0x001698, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_BoneName) == 0x0016A0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_HitItem) == 0x0016A8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_ElementIndex) == 0x0016AC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_FaceIndex) == 0x0016B0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_TraceStart) == 0x0016B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakHitResult_TraceEnd) == 0x0016D0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0016E8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetActorForwardVector_ReturnValue) == 0x0016F0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Dot_VectorVector_ReturnValue) == 0x001708, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CreateDelegate_OutputDelegate_30) == 0x001710, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x001720, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x001728, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_Wall_Normal) == 0x001730, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_Wall_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue) == 0x001748, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x001760, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Add_VectorVector_ReturnValue) == 0x001838, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotFromX_ReturnValue) == 0x001850, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_2) == 0x001868, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_2) == 0x00186C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_2) == 0x001870, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue_2) == 0x001878, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x001890, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetController_ReturnValue_2) == 0x001898, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetControlRotation_ReturnValue_1) == 0x0018A0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetControlRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Not_PreBool_ReturnValue) == 0x0018B8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_RLerp_ReturnValue) == 0x0018C0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BooleanAND_ReturnValue) == 0x0018D8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_3) == 0x0018DC, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_3) == 0x0018E0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_3) == 0x0018E4, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue_3) == 0x0018E8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2) == 0x001900, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x001908, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_8) == 0x001910, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_3) == 0x001918, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x001920, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsWalking_ReturnValue_1) == 0x001928, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsWalking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_9) == 0x001929, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, Temp_bool_Has_Been_Initd_Variable) == 0x00192A, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_10) == 0x00192B, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x001930, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_17) == 0x001938, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_17) == 0x001940, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_17' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_IsValid_ReturnValue_11) == 0x0019F0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_DynamicCast_AsBP_Knock_Params) == 0x0019F8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_DynamicCast_AsBP_Knock_Params' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_DynamicCast_bSuccess_1) == 0x001A00, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventTag_18) == 0x001A04, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventTag_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, K2Node_CustomEvent_EventData_18) == 0x001A10, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::K2Node_CustomEvent_EventData_18' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x001AC0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_FClamp_ReturnValue) == 0x001AD8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x001AE0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeVector_ReturnValue_1) == 0x001AF8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x001B10, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x001B28, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Add_VectorVector_ReturnValue_1) == 0x001B30, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_NegateVector_ReturnValue_1) == 0x001B48, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x001B60, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_RInterpTo_ReturnValue) == 0x001B78, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_4) == 0x001B90, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_4) == 0x001B94, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_4) == 0x001B98, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_5) == 0x001B9C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_5) == 0x001BA0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_5) == 0x001BA4, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue_4) == 0x001BA8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x001BC0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x001BC8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_GetControlRotation_ReturnValue_2) == 0x001BD0, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_GetControlRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_RInterpTo_ReturnValue_1) == 0x001BE8, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_RInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Roll_6) == 0x001C00, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Roll_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Pitch_6) == 0x001C04, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Pitch_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BreakRotator_Yaw_6) == 0x001C08, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BreakRotator_Yaw_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x001C0C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_ReturnValue_5) == 0x001C18, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x001C30, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x001C38, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x001C3C, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked, CallFunc_RInterpTo_DeltaTime_ImplicitCast_1) == 0x001C40, "Member 'GA_PlayerHitReact_Knocked_C_ExecuteUbergraph_GA_PlayerHitReact_Knocked::CallFunc_RInterpTo_DeltaTime_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_Hit_Wall \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_Hit_Wall) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_Hit_Wall"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_Hit_Wall) == 0x000018, "Wrong size on GA_PlayerHitReact_Knocked_C_Hit_Wall"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_Hit_Wall, Wall_Normal) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_Hit_Wall::Wall_Normal' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_HitCheck \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_HitCheck) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_HitCheck"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_HitCheck) == 0x000110, "Wrong size on GA_PlayerHitReact_Knocked_C_HitCheck"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_HitCheck, SelfActor) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_HitCheck::SelfActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_HitCheck, OtherActor) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_HitCheck::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_HitCheck, NormalImpulse) == 0x000010, "Member 'GA_PlayerHitReact_Knocked_C_HitCheck::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_HitCheck, Hit) == 0x000028, "Member 'GA_PlayerHitReact_Knocked_C_HitCheck::Hit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerHitReact_Knocked_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerHitReact_Knocked_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_01A2AC87458D5DE374663EA6D9422112::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_8101D413410FF011D66A61942D84F988::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_D4A8993549CFF5BFA92ED89ED90B8CF3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnBlendOut_E7B109AB490B5EAF3C0DD08E1EF48607::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_01A2AC87458D5DE374663EA6D9422112::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_8101D413410FF011D66A61942D84F988::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_D4A8993549CFF5BFA92ED89ED90B8CF3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCancelled_E7B109AB490B5EAF3C0DD08E1EF48607::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_01A2AC87458D5DE374663EA6D9422112::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_8101D413410FF011D66A61942D84F988::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_D4A8993549CFF5BFA92ED89ED90B8CF3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnCompleted_E7B109AB490B5EAF3C0DD08E1EF48607::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_01A2AC87458D5DE374663EA6D9422112::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_8101D413410FF011D66A61942D84F988::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_D4A8993549CFF5BFA92ED89ED90B8CF3::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607 \ +static_assert(alignof(GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x000008, "Wrong alignment on GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(sizeof(GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607) == 0x0000B8, "Wrong size on GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607, EventTag) == 0x000000, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607, EventData) == 0x000008, "Member 'GA_PlayerHitReact_Knocked_C_OnInterrupted_E7B109AB490B5EAF3C0DD08E1EF48607::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerHitReact_Knocked_C \ +static_assert(alignof(UGA_PlayerHitReact_Knocked_C) == 0x000008, "Wrong alignment on UGA_PlayerHitReact_Knocked_C"); \ +static_assert(sizeof(UGA_PlayerHitReact_Knocked_C) == 0x0008B8, "Wrong size on UGA_PlayerHitReact_Knocked_C"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, UberGraphFrame_GA_PlayerHitReact_Knocked_C) == 0x000798, "Member 'UGA_PlayerHitReact_Knocked_C::UberGraphFrame_GA_PlayerHitReact_Knocked_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, KnockedMontage) == 0x0007A0, "Member 'UGA_PlayerHitReact_Knocked_C::KnockedMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, CameraModifier) == 0x0007A8, "Member 'UGA_PlayerHitReact_Knocked_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, CachedAirControl) == 0x0007B0, "Member 'UGA_PlayerHitReact_Knocked_C::CachedAirControl' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, WallHit) == 0x0007B4, "Member 'UGA_PlayerHitReact_Knocked_C::WallHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, WallHitMontage) == 0x0007B8, "Member 'UGA_PlayerHitReact_Knocked_C::WallHitMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, WallLandMontage) == 0x0007C0, "Member 'UGA_PlayerHitReact_Knocked_C::WallLandMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, Event_Data) == 0x0007C8, "Member 'UGA_PlayerHitReact_Knocked_C::Event_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, Ground_Friction_Cache) == 0x000878, "Member 'UGA_PlayerHitReact_Knocked_C::Ground_Friction_Cache' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, Knockback_Direction) == 0x000880, "Member 'UGA_PlayerHitReact_Knocked_C::Knockback_Direction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, FacingRot) == 0x000898, "Member 'UGA_PlayerHitReact_Knocked_C::FacingRot' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerHitReact_Knocked_C, Yaw_Speed) == 0x0008B0, "Member 'UGA_PlayerHitReact_Knocked_C::Yaw_Speed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Floored_Movespeed_C \ +static_assert(alignof(UGE_Floored_Movespeed_C) == 0x000008, "Wrong alignment on UGE_Floored_Movespeed_C"); \ +static_assert(sizeof(UGE_Floored_Movespeed_C) == 0x000A70, "Wrong size on UGE_Floored_Movespeed_C"); \ + +#define DUMPER7_ASSERTS_GA_Floored_C_ExecuteUbergraph_GA_Floored \ +static_assert(alignof(GA_Floored_C_ExecuteUbergraph_GA_Floored) == 0x000008, "Wrong alignment on GA_Floored_C_ExecuteUbergraph_GA_Floored"); \ +static_assert(sizeof(GA_Floored_C_ExecuteUbergraph_GA_Floored) == 0x000180, "Wrong size on GA_Floored_C_ExecuteUbergraph_GA_Floored"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, EntryPoint) == 0x000000, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CreateDelegate_OutputDelegate_1) == 0x000020, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CreateDelegate_OutputDelegate_2) == 0x000030, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000040, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CreateDelegate_OutputDelegate_3) == 0x000048, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CustomEvent_WaitingTime) == 0x00005C, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, Temp_real_Variable) == 0x000060, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000068, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_Event_bWasCancelled) == 0x000071, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000078, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000080, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000088, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_SwitchEnum_CmpSuccess) == 0x000089, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsValid_ReturnValue_2) == 0x00008A, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000090, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsValid_ReturnValue_3) == 0x000098, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0000A0, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000A8, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000B8, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0000C0, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0000D0, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_Not_PreBool_ReturnValue) == 0x0000D1, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsFalling_ReturnValue) == 0x0000D2, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetLastInputVector_ReturnValue) == 0x0000D8, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_VSize_ReturnValue) == 0x0000F0, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x0000F8, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000100, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_BooleanOR_ReturnValue) == 0x000101, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_IsValid_ReturnValue_4) == 0x000102, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_BooleanOR_ReturnValue_1) == 0x000103, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_BooleanAND_ReturnValue) == 0x000104, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000108, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000110, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_CreateDelegate_OutputDelegate_4) == 0x000118, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface) == 0x000128, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000140, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000148, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000158, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000160, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1) == 0x000168, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_DynamicCast_AsWrestler_Control_Cue_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_ExecuteUbergraph_GA_Floored, K2Node_DynamicCast_bSuccess_1) == 0x000178, "Member 'GA_Floored_C_ExecuteUbergraph_GA_Floored::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Floored_C_K2_OnEndAbility \ +static_assert(alignof(GA_Floored_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Floored_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Floored_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Floored_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Floored_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Floored_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD \ +static_assert(alignof(GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD) == 0x000004, "Wrong alignment on GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD"); \ +static_assert(sizeof(GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD) == 0x000004, "Wrong size on GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD"); \ +static_assert(offsetof(GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD, WaitingTime) == 0x000000, "Member 'GA_Floored_C_OnControlCueProcess_A9AAB85F4AEF042C3EF0DBB1C00355FD::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Floored_C_PlayerExertBark \ +static_assert(alignof(GA_Floored_C_PlayerExertBark) == 0x000008, "Wrong alignment on GA_Floored_C_PlayerExertBark"); \ +static_assert(sizeof(GA_Floored_C_PlayerExertBark) == 0x000058, "Wrong size on GA_Floored_C_PlayerExertBark"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, self2) == 0x000000, "Member 'GA_Floored_C_PlayerExertBark::self2' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, self3) == 0x000008, "Member 'GA_Floored_C_PlayerExertBark::self3' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, CallFunc_GetDialogueInfo_ReturnValue) == 0x000010, "Member 'GA_Floored_C_PlayerExertBark::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000018, "Member 'GA_Floored_C_PlayerExertBark::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, K2Node_MakeArray_Array) == 0x000020, "Member 'GA_Floored_C_PlayerExertBark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, CallFunc_GetOwner_ReturnValue) == 0x000030, "Member 'GA_Floored_C_PlayerExertBark::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000038, "Member 'GA_Floored_C_PlayerExertBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, K2Node_MakeArray_Array_1) == 0x000040, "Member 'GA_Floored_C_PlayerExertBark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Floored_C_PlayerExertBark, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000050, "Member 'GA_Floored_C_PlayerExertBark::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Floored_C \ +static_assert(alignof(UGA_Floored_C) == 0x000008, "Wrong alignment on UGA_Floored_C"); \ +static_assert(sizeof(UGA_Floored_C) == 0x000680, "Wrong size on UGA_Floored_C"); \ +static_assert(offsetof(UGA_Floored_C, UberGraphFrame) == 0x000668, "Member 'UGA_Floored_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Floored_C, CameraModifier) == 0x000670, "Member 'UGA_Floored_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_Floored_C, ToStand) == 0x000678, "Member 'UGA_Floored_C::ToStand' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchPiercing \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchPiercing) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchPiercing"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchPiercing) == 0x000060, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchPiercing"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, K2Node_DynamicCast_AsWrestler_Character_Piercing_Data_Asset) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::K2Node_DynamicCast_AsWrestler_Character_Piercing_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000048, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchPiercing, CallFunc_Less_IntInt_ReturnValue) == 0x000059, "Member 'WBP_CharacterCostumisationButton_C_SwitchPiercing::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchMakeUp \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchMakeUp) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchMakeUp"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchMakeUp) == 0x000060, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchMakeUp"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, K2Node_DynamicCast_AsWrestler_Character_Make_Up_Data_Asset) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::K2Node_DynamicCast_AsWrestler_Character_Make_Up_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000048, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchMakeUp, CallFunc_Less_IntInt_ReturnValue) == 0x000059, "Member 'WBP_CharacterCostumisationButton_C_SwitchMakeUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchHair \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchHair) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchHair"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchHair) == 0x000060, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchHair"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000048, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchHair, CallFunc_Less_IntInt_ReturnValue) == 0x000059, "Member 'WBP_CharacterCostumisationButton_C_SwitchHair::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchEyes \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchEyes) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchEyes"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchEyes) == 0x000060, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchEyes"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, K2Node_DynamicCast_AsWrestler_Character_Eyes_Data_Asset) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::K2Node_DynamicCast_AsWrestler_Character_Eyes_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000048, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchEyes, CallFunc_Less_IntInt_ReturnValue) == 0x000059, "Member 'WBP_CharacterCostumisationButton_C_SwitchEyes::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchDefaultIcon \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchDefaultIcon"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon) == 0x000030, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchDefaultIcon"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x000011, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, CallFunc_GetGameInstance_ReturnValue) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000020, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, K2Node_DynamicCast_bSuccess_1) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, CallFunc_GetPlayerVariant_ReturnValue) == 0x000029, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchDefaultIcon, K2Node_SwitchEnum_CmpSuccess) == 0x00002A, "Member 'WBP_CharacterCostumisationButton_C_SwitchDefaultIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SwitchCostume \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SwitchCostume) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SwitchCostume"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SwitchCostume) == 0x000078, "Wrong size on WBP_CharacterCostumisationButton_C_SwitchCostume"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_GetAllActorsWithInterface_OutActors) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_GetAllActorsWithInterface_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_Array_Get_Item) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_AsBP_Player_Costume_Interface) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_AsBP_Player_Costume_Interface' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_AsBP_Player_Costume_Interface_1) == 0x000058, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_AsBP_Player_Costume_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, K2Node_DynamicCast_bSuccess_2) == 0x000068, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x000069, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_Array_Length_ReturnValue) == 0x00006C, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SwitchCostume, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'WBP_CharacterCostumisationButton_C_SwitchCostume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_SetDataAsset \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_SetDataAsset) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_SetDataAsset"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_SetDataAsset) == 0x000008, "Wrong size on WBP_CharacterCostumisationButton_C_SetDataAsset"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_SetDataAsset, DataAsset) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_SetDataAsset::DataAsset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_OnMouseLeave \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_OnMouseLeave) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_OnMouseLeave"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_OnMouseLeave) == 0x000078, "Wrong size on WBP_CharacterCostumisationButton_C_OnMouseLeave"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnMouseLeave, MouseEvent) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_OnListItemObjectSet \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_OnListItemObjectSet) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_OnListItemObjectSet"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_OnListItemObjectSet) == 0x000008, "Wrong size on WBP_CharacterCostumisationButton_C_OnListItemObjectSet"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnListItemObjectSet, ListItemObject) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_OnListItemObjectSet::ListItemObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_OnInputChanged \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_OnInputChanged) == 0x000001, "Wrong alignment on WBP_CharacterCostumisationButton_C_OnInputChanged"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_OnInputChanged) == 0x000001, "Wrong size on WBP_CharacterCostumisationButton_C_OnInputChanged"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_OnFocusReceived \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_OnFocusReceived) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_OnFocusReceived"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_OnFocusReceived) == 0x0001B0, "Wrong size on WBP_CharacterCostumisationButton_C_OnFocusReceived"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'WBP_CharacterCostumisationButton_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'WBP_CharacterCostumisationButton_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_Is_Button_Unlock \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_Is_Button_Unlock) == 0x000001, "Wrong alignment on WBP_CharacterCostumisationButton_C_Is_Button_Unlock"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_Is_Button_Unlock) == 0x000002, "Wrong size on WBP_CharacterCostumisationButton_C_Is_Button_Unlock"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_Is_Button_Unlock, IsUnlock) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_Is_Button_Unlock::IsUnlock' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_Is_Button_Unlock, CallFunc_IsButtonUnlock_ReturnValue) == 0x000001, "Member 'WBP_CharacterCostumisationButton_C_Is_Button_Unlock::CallFunc_IsButtonUnlock_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton) == 0x0000B8, "Wrong size on WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, EntryPoint) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_Event_ListItemObject) == 0x000010, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_Event_ListItemObject' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_Event_bIsSelected) == 0x000018, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_Event_bIsSelected' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_Event_bIsExpanded) == 0x000019, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_Event_bIsExpanded' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_Event_MouseEvent) == 0x000020, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_IsSelected_ReturnValue) == 0x000098, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_IsSelected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_Event_InCurrentInputType) == 0x000099, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_SwitchEnum_CmpSuccess) == 0x00009A, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_IsHovered_ReturnValue) == 0x00009B, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_IsHovered_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_GetCustomButtonType_ReturnValue) == 0x00009C, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_GetCustomButtonType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_SwitchEnum_CmpSuccess_1) == 0x00009D, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x0000A0, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x0000A8, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_GetAssetDLC_ReturnValue) == 0x0000B1, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_GetAssetDLC_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, K2Node_SwitchEnum_CmpSuccess_2) == 0x0000B2, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x0000B3, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton, CallFunc_IsCostumeViewed_ReturnValue) == 0x0000B4, "Member 'WBP_CharacterCostumisationButton_C_ExecuteUbergraph_WBP_CharacterCostumisationButton::CallFunc_IsCostumeViewed_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_EquipItem \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_EquipItem) == 0x000001, "Wrong alignment on WBP_CharacterCostumisationButton_C_EquipItem"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_EquipItem) == 0x000009, "Wrong size on WBP_CharacterCostumisationButton_C_EquipItem"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, Condition) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::Condition' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, PlaySound_0) == 0x000001, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::PlaySound_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_IsEyesEquipped_ReturnValue) == 0x000002, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_IsEyesEquipped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_IsPiercingEquipped_ReturnValue) == 0x000003, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_IsPiercingEquipped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_IsMakeUpEquipped_ReturnValue) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_IsMakeUpEquipped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_GetCustomButtonType_ReturnValue) == 0x000005, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_GetCustomButtonType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, K2Node_SwitchEnum_CmpSuccess) == 0x000006, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_IsHairEquipped_ReturnValue) == 0x000007, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_IsHairEquipped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipItem, CallFunc_IsCostumeEquipped_ReturnValue) == 0x000008, "Member 'WBP_CharacterCostumisationButton_C_EquipItem::CallFunc_IsCostumeEquipped_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_EquipAudioHair \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_EquipAudioHair) == 0x000004, "Wrong alignment on WBP_CharacterCostumisationButton_C_EquipAudioHair"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_EquipAudioHair) == 0x000014, "Wrong size on WBP_CharacterCostumisationButton_C_EquipAudioHair"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudioHair, PlaySound_0) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_EquipAudioHair::PlaySound_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudioHair, Temp_delegate_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_EquipAudioHair::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_EquipAudio \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_EquipAudio) == 0x000008, "Wrong alignment on WBP_CharacterCostumisationButton_C_EquipAudio"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_EquipAudio) == 0x000040, "Wrong size on WBP_CharacterCostumisationButton_C_EquipAudio"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, PlaySound_0) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::PlaySound_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, Temp_delegate_Variable) == 0x000004, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, Temp_delegate_Variable_1) == 0x000014, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000028, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x000030, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_EquipAudio, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x000039, "Member 'WBP_CharacterCostumisationButton_C_EquipAudio::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged) == 0x000001, "Wrong alignment on WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged) == 0x000001, "Wrong size on WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged, bIsSelected) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_BP_OnItemSelectionChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged \ +static_assert(alignof(WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged) == 0x000001, "Wrong alignment on WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged"); \ +static_assert(sizeof(WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged) == 0x000001, "Wrong size on WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged"); \ +static_assert(offsetof(WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged, bIsExpanded) == 0x000000, "Member 'WBP_CharacterCostumisationButton_C_BP_OnItemExpansionChanged::bIsExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CharacterCostumisationButton_C \ +static_assert(alignof(UWBP_CharacterCostumisationButton_C) == 0x000010, "Wrong alignment on UWBP_CharacterCostumisationButton_C"); \ +static_assert(sizeof(UWBP_CharacterCostumisationButton_C) == 0x0014A0, "Wrong size on UWBP_CharacterCostumisationButton_C"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, UberGraphFrame) == 0x001450, "Member 'UWBP_CharacterCostumisationButton_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, DLCEquipIcon) == 0x001458, "Member 'UWBP_CharacterCostumisationButton_C::DLCEquipIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, Empty) == 0x001460, "Member 'UWBP_CharacterCostumisationButton_C::Empty' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, Grad) == 0x001468, "Member 'UWBP_CharacterCostumisationButton_C::Grad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, Highligh_Anim) == 0x001470, "Member 'UWBP_CharacterCostumisationButton_C::Highligh_Anim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, Highlight) == 0x001478, "Member 'UWBP_CharacterCostumisationButton_C::Highlight' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, WidgetSwitcher_0) == 0x001480, "Member 'UWBP_CharacterCostumisationButton_C::WidgetSwitcher_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacterCostumisationButton_C, OnMouseLeaveCB) == 0x001488, "Member 'UWBP_CharacterCostumisationButton_C::OnMouseLeaveCB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButtonPrompt_C \ +static_assert(alignof(UCommonButtonPrompt_C) == 0x000010, "Wrong alignment on UCommonButtonPrompt_C"); \ +static_assert(sizeof(UCommonButtonPrompt_C) == 0x0007B0, "Wrong size on UCommonButtonPrompt_C"); \ + +#define DUMPER7_ASSERTS_WBP_MainMap_C_PreConstruct \ +static_assert(alignof(WBP_MainMap_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_MainMap_C_PreConstruct"); \ +static_assert(sizeof(WBP_MainMap_C_PreConstruct) == 0x000001, "Wrong size on WBP_MainMap_C_PreConstruct"); \ +static_assert(offsetof(WBP_MainMap_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_MainMap_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap \ +static_assert(alignof(WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap) == 0x000004, "Wrong alignment on WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap"); \ +static_assert(sizeof(WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap) == 0x000008, "Wrong size on WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap"); \ +static_assert(offsetof(WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap, EntryPoint) == 0x000000, "Member 'WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_MainMap_C_ExecuteUbergraph_WBP_MainMap::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MainMap_C \ +static_assert(alignof(UWBP_MainMap_C) == 0x000008, "Wrong alignment on UWBP_MainMap_C"); \ +static_assert(sizeof(UWBP_MainMap_C) == 0x000410, "Wrong size on UWBP_MainMap_C"); \ +static_assert(offsetof(UWBP_MainMap_C, UberGraphFrame) == 0x000400, "Member 'UWBP_MainMap_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MainMap_C, CanvasPanel_27) == 0x000408, "Member 'UWBP_MainMap_C::CanvasPanel_27' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Burn_C_ExecuteUbergraph_GA_Burn \ +static_assert(alignof(GA_Burn_C_ExecuteUbergraph_GA_Burn) == 0x000008, "Wrong alignment on GA_Burn_C_ExecuteUbergraph_GA_Burn"); \ +static_assert(sizeof(GA_Burn_C_ExecuteUbergraph_GA_Burn) == 0x000228, "Wrong size on GA_Burn_C_ExecuteUbergraph_GA_Burn"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, EntryPoint) == 0x000000, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, K2Node_MakeStruct_GameplayEventData) == 0x000008, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, Temp_bool_Has_Been_Initd_Variable) == 0x0000B8, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, K2Node_Event_bWasCancelled) == 0x0000B9, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, K2Node_Event_EventData) == 0x0000C0, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, Temp_bool_IsClosed_Variable) == 0x000170, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_FClamp_ReturnValue) == 0x000178, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000180, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_WaitDelay_ReturnValue) == 0x000188, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000190, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_IsValid_ReturnValue) == 0x000198, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_FClamp_ReturnValue_1) == 0x0001A0, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0001A8, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001B0, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, K2Node_MakeStruct_ApplyDamageParams) == 0x0001B8, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0001E0, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001E1, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, K2Node_CreateDelegate_OutputDelegate) == 0x0001E4, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0001F8, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_IsValid_ReturnValue_1) == 0x000200, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000208, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000210, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_FClamp_Value_ImplicitCast) == 0x000218, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_FClamp_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000220, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Burn_C_ExecuteUbergraph_GA_Burn, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x000224, "Member 'GA_Burn_C_ExecuteUbergraph_GA_Burn::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Burn_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Burn_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Burn_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Burn_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Burn_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Burn_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Burn_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Burn_C_K2_OnEndAbility \ +static_assert(alignof(GA_Burn_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Burn_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Burn_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Burn_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Burn_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Burn_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Burn_C \ +static_assert(alignof(UGA_Burn_C) == 0x000008, "Wrong alignment on UGA_Burn_C"); \ +static_assert(sizeof(UGA_Burn_C) == 0x000690, "Wrong size on UGA_Burn_C"); \ +static_assert(offsetof(UGA_Burn_C, UberGraphFrame) == 0x000668, "Member 'UGA_Burn_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Burn_C, BurnDuration) == 0x000670, "Member 'UGA_Burn_C::BurnDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Burn_C, BurnFrequency) == 0x000678, "Member 'UGA_Burn_C::BurnFrequency' has a wrong offset!"); \ +static_assert(offsetof(UGA_Burn_C, BurnDPS) == 0x000680, "Member 'UGA_Burn_C::BurnDPS' has a wrong offset!"); \ +static_assert(offsetof(UGA_Burn_C, BurningEffect) == 0x000688, "Member 'UGA_Burn_C::BurningEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect \ +static_assert(alignof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect) == 0x000008, "Wrong alignment on GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect"); \ +static_assert(sizeof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect) == 0x000128, "Wrong size on GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, EntryPoint) == 0x000000, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000048, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_CreateDelegate_OutputDelegate_4) == 0x000050, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, CallFunc_IsValid_ReturnValue) == 0x000060, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, CallFunc_WaitRealDelay_ReturnValue) == 0x000068, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect, K2Node_Event_EventData) == 0x000078, "Member 'GA_PlayerObjectCollect_C_ExecuteUbergraph_GA_PlayerObjectCollect::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerObjectCollect_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerObjectCollect_C \ +static_assert(alignof(UGA_PlayerObjectCollect_C) == 0x000008, "Wrong alignment on UGA_PlayerObjectCollect_C"); \ +static_assert(sizeof(UGA_PlayerObjectCollect_C) == 0x000688, "Wrong size on UGA_PlayerObjectCollect_C"); \ +static_assert(offsetof(UGA_PlayerObjectCollect_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerObjectCollect_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerObjectCollect_C, Interaction) == 0x000670, "Member 'UGA_PlayerObjectCollect_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerObjectCollect_C, HoldTimer) == 0x000678, "Member 'UGA_PlayerObjectCollect_C::HoldTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerObjectCollect_C, HoldTask) == 0x000680, "Member 'UGA_PlayerObjectCollect_C::HoldTask' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TKConstraint_C \ +static_assert(alignof(ABP_TKConstraint_C) == 0x000008, "Wrong alignment on ABP_TKConstraint_C"); \ +static_assert(sizeof(ABP_TKConstraint_C) == 0x0002D0, "Wrong size on ABP_TKConstraint_C"); \ +static_assert(offsetof(ABP_TKConstraint_C, Sphere2) == 0x0002B8, "Member 'ABP_TKConstraint_C::Sphere2' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKConstraint_C, Sphere1) == 0x0002C0, "Member 'ABP_TKConstraint_C::Sphere1' has a wrong offset!"); \ +static_assert(offsetof(ABP_TKConstraint_C, Sphere) == 0x0002C8, "Member 'ABP_TKConstraint_C::Sphere' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA \ +static_assert(alignof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA) == 0x000008, "Wrong alignment on HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA"); \ +static_assert(sizeof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA) == 0x000048, "Wrong size on HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, EntryPoint) == 0x000000, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, K2Node_Event_InAutomata) == 0x000008, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, K2Node_Event_InState) == 0x000010, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, K2Node_DynamicCast_AsBP_Codex_Item_Base) == 0x000020, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::K2Node_DynamicCast_AsBP_Codex_Item_Base' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, CallFunc_GetItemState_self_CastInput) == 0x000030, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::CallFunc_GetItemState_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, CallFunc_GetItemState_ReturnValue) == 0x000040, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::CallFunc_GetItemState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000041, "Member 'HideShowInteractionPointBasedOnIQA_C_ExecuteUbergraph_HideShowInteractionPointBasedOnIQA::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HideShowInteractionPointBasedOnIQA_C_ReceiveExecute \ +static_assert(alignof(HideShowInteractionPointBasedOnIQA_C_ReceiveExecute) == 0x000008, "Wrong alignment on HideShowInteractionPointBasedOnIQA_C_ReceiveExecute"); \ +static_assert(sizeof(HideShowInteractionPointBasedOnIQA_C_ReceiveExecute) == 0x000010, "Wrong size on HideShowInteractionPointBasedOnIQA_C_ReceiveExecute"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'HideShowInteractionPointBasedOnIQA_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HideShowInteractionPointBasedOnIQA_C_ReceiveExecute, InState) == 0x000008, "Member 'HideShowInteractionPointBasedOnIQA_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHideShowInteractionPointBasedOnIQA_C \ +static_assert(alignof(UHideShowInteractionPointBasedOnIQA_C) == 0x000008, "Wrong alignment on UHideShowInteractionPointBasedOnIQA_C"); \ +static_assert(sizeof(UHideShowInteractionPointBasedOnIQA_C) == 0x0000C0, "Wrong size on UHideShowInteractionPointBasedOnIQA_C"); \ +static_assert(offsetof(UHideShowInteractionPointBasedOnIQA_C, UberGraphFrame) == 0x000088, "Member 'UHideShowInteractionPointBasedOnIQA_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UHideShowInteractionPointBasedOnIQA_C, Codex_Item) == 0x000090, "Member 'UHideShowInteractionPointBasedOnIQA_C::Codex_Item' has a wrong offset!"); \ +static_assert(offsetof(UHideShowInteractionPointBasedOnIQA_C, Show) == 0x0000B8, "Member 'UHideShowInteractionPointBasedOnIQA_C::Show' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair \ +static_assert(alignof(WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair) == 0x000008, "Wrong alignment on WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair"); \ +static_assert(sizeof(WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair) == 0x000018, "Wrong size on WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair"); \ +static_assert(offsetof(WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair, EntryPoint) == 0x000000, "Member 'WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair, CallFunc_PlayAnimation_ReturnValue) == 0x000008, "Member 'WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair, CallFunc_GetHud_ReturnValue) == 0x000010, "Member 'WBP_TKCrosshair_C_ExecuteUbergraph_WBP_TKCrosshair::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TKCrosshair_C_PointerPosition \ +static_assert(alignof(WBP_TKCrosshair_C_PointerPosition) == 0x000008, "Wrong alignment on WBP_TKCrosshair_C_PointerPosition"); \ +static_assert(sizeof(WBP_TKCrosshair_C_PointerPosition) == 0x0000C8, "Wrong size on WBP_TKCrosshair_C_PointerPosition"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, ReturnValue) == 0x000000, "Member 'WBP_TKCrosshair_C_PointerPosition::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, Temp_bool_Variable) == 0x000018, "Member 'WBP_TKCrosshair_C_PointerPosition::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetActorBounds_Origin) == 0x000020, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetActorBounds_BoxExtent) == 0x000038, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetComponentBounds_Origin) == 0x000060, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetComponentBounds_BoxExtent) == 0x000078, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetComponentBounds_SphereRadius) == 0x000090, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_DoesSocketExist_ReturnValue) == 0x000094, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_DoesSocketExist_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, CallFunc_GetSocketLocation_ReturnValue) == 0x000098, "Member 'WBP_TKCrosshair_C_PointerPosition::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TKCrosshair_C_PointerPosition, K2Node_Select_Default) == 0x0000B0, "Member 'WBP_TKCrosshair_C_PointerPosition::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TKCrosshair_C \ +static_assert(alignof(UWBP_TKCrosshair_C) == 0x000008, "Wrong alignment on UWBP_TKCrosshair_C"); \ +static_assert(sizeof(UWBP_TKCrosshair_C) == 0x0002E0, "Wrong size on UWBP_TKCrosshair_C"); \ +static_assert(offsetof(UWBP_TKCrosshair_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_TKCrosshair_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKCrosshair_C, Show) == 0x0002C8, "Member 'UWBP_TKCrosshair_C::Show' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKCrosshair_C, Pointer) == 0x0002D0, "Member 'UWBP_TKCrosshair_C::Pointer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TKCrosshair_C, TargetActor) == 0x0002D8, "Member 'UWBP_TKCrosshair_C::TargetActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_BeginFearEmission \ +static_assert(alignof(GA_HoldAltControl_C_BeginFearEmission) == 0x000008, "Wrong alignment on GA_HoldAltControl_C_BeginFearEmission"); \ +static_assert(sizeof(GA_HoldAltControl_C_BeginFearEmission) == 0x000010, "Wrong size on GA_HoldAltControl_C_BeginFearEmission"); \ +static_assert(offsetof(GA_HoldAltControl_C_BeginFearEmission, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'GA_HoldAltControl_C_BeginFearEmission::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_BeginFearEmission, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GA_HoldAltControl_C_BeginFearEmission::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_CacheLocalVariables \ +static_assert(alignof(GA_HoldAltControl_C_CacheLocalVariables) == 0x000010, "Wrong alignment on GA_HoldAltControl_C_CacheLocalVariables"); \ +static_assert(sizeof(GA_HoldAltControl_C_CacheLocalVariables) == 0x000200, "Wrong size on GA_HoldAltControl_C_CacheLocalVariables"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, Targeting_range) == 0x000000, "Member 'GA_HoldAltControl_C_CacheLocalVariables::Targeting_range' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, TargetingRange) == 0x000008, "Member 'GA_HoldAltControl_C_CacheLocalVariables::TargetingRange' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_SelectFloat_ReturnValue) == 0x000010, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, Temp_object_Variable) == 0x000018, "Member 'GA_HoldAltControl_C_CacheLocalVariables::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetSocketTransform_ReturnValue) == 0x000020, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_BreakTransform_Location) == 0x000080, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_BreakTransform_Rotation) == 0x000098, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_BreakTransform_Scale) == 0x0000B0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_IsValid_ReturnValue) == 0x0000C8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x0000D0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0000E8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess) == 0x0000F8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeStruct_WrestlerHoldAbilityTargetingUpdateData) == 0x0000FC, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeStruct_WrestlerHoldAbilityTargetingUpdateData' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetDataAsset_ReturnValue) == 0x000118, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000120, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000128, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Combat_State_Interface) == 0x000140, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Combat_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_1) == 0x000150, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_Add_VectorVector_ReturnValue) == 0x000158, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_IsInCombat_ReturnValue) == 0x000170, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeArray_Array) == 0x000178, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetActorBounds_Origin) == 0x000188, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetActorBounds_BoxExtent) == 0x0001A0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0001B8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetMaxElement_ReturnValue) == 0x0001C0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetMaxElement_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x0001C8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_2) == 0x0001D8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x0001E0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeStruct_HeldObjectRadius_ImplicitCast) == 0x0001E8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeStruct_HeldObjectRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeStruct_AimAssistRadius_ImplicitCast) == 0x0001EC, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeStruct_AimAssistRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeStruct_ThrowRange_ImplicitCast) == 0x0001F0, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeStruct_ThrowRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_MakeStruct_AimAssistRange_ImplicitCast) == 0x0001F4, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_MakeStruct_AimAssistRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_CacheLocalVariables, K2Node_VariableSet_AudioStimulusRadius_ImplicitCast) == 0x0001F8, "Member 'GA_HoldAltControl_C_CacheLocalVariables::K2Node_VariableSet_AudioStimulusRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_EndFearEmission \ +static_assert(alignof(GA_HoldAltControl_C_EndFearEmission) == 0x000008, "Wrong alignment on GA_HoldAltControl_C_EndFearEmission"); \ +static_assert(sizeof(GA_HoldAltControl_C_EndFearEmission) == 0x000010, "Wrong size on GA_HoldAltControl_C_EndFearEmission"); \ +static_assert(offsetof(GA_HoldAltControl_C_EndFearEmission, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'GA_HoldAltControl_C_EndFearEmission::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_EndFearEmission, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GA_HoldAltControl_C_EndFearEmission::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl \ +static_assert(alignof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl) == 0x000008, "Wrong alignment on GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl"); \ +static_assert(sizeof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl) == 0x000340, "Wrong size on GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, EntryPoint) == 0x000000, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CustomEvent_WaitingTime_2) == 0x000004, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CustomEvent_WaitingTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, Temp_real_Variable) == 0x000008, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000010, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CreateDelegate_OutputDelegate) == 0x00001C, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CustomEvent_WaitingTime_1) == 0x00002C, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, Temp_real_Variable_1) == 0x000030, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000038, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue_1) == 0x000040, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CreateDelegate_OutputDelegate_1) == 0x000044, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CustomEvent_WaitingTime) == 0x000054, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, Temp_real_Variable_2) == 0x000058, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2) == 0x000060, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue_2) == 0x000068, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CreateDelegate_OutputDelegate_2) == 0x00006C, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000080, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue_3) == 0x000088, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_Event_EventData) == 0x000090, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_Event_bWasCancelled) == 0x000140, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_K2_CommitAbility_ReturnValue) == 0x000141, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000148, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_CreateDelegate_OutputDelegate_3) == 0x000150, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_Magnet_ReturnValue) == 0x000160, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_Magnet_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue_4) == 0x000168, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000170, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000248, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_MakeThrowTargetData_ReturnValue) == 0x000250, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_MakeThrowTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_MakeStruct_GameplayEventData) == 0x000278, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_IsValid_ReturnValue_5) == 0x000328, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, CallFunc_CacheLocalVariables_Targeting_range_ImplicitCast) == 0x000330, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::CallFunc_CacheLocalVariables_Targeting_range_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x000338, "Member 'GA_HoldAltControl_C_ExecuteUbergraph_GA_HoldAltControl::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_HoldAltControl_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_HoldAltControl_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_HoldAltControl_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_HoldAltControl_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_HoldAltControl_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_HoldAltControl_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_K2_OnEndAbility \ +static_assert(alignof(GA_HoldAltControl_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_HoldAltControl_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_HoldAltControl_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_HoldAltControl_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_HoldAltControl_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_HoldAltControl_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486 \ +static_assert(alignof(GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486) == 0x000004, "Wrong alignment on GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486"); \ +static_assert(sizeof(GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486) == 0x000004, "Wrong size on GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486"); \ +static_assert(offsetof(GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486, WaitingTime) == 0x000000, "Member 'GA_HoldAltControl_C_OnControlCueProcess_8A3D01D643B4B19E433704B2574FC486::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE \ +static_assert(alignof(GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE) == 0x000004, "Wrong alignment on GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE"); \ +static_assert(sizeof(GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE) == 0x000004, "Wrong size on GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE"); \ +static_assert(offsetof(GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE, WaitingTime) == 0x000000, "Member 'GA_HoldAltControl_C_OnControlCueProcess_B95E62F94E05991C1C578BB115C549CE::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5 \ +static_assert(alignof(GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5) == 0x000004, "Wrong alignment on GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5"); \ +static_assert(sizeof(GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5) == 0x000004, "Wrong size on GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5"); \ +static_assert(offsetof(GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5, WaitingTime) == 0x000000, "Member 'GA_HoldAltControl_C_OnControlCueProcess_EEA7B45A4D0CF8A0CB6552B615FE2EC5::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_HoldAltControl_C \ +static_assert(alignof(UGA_HoldAltControl_C) == 0x000008, "Wrong alignment on UGA_HoldAltControl_C"); \ +static_assert(sizeof(UGA_HoldAltControl_C) == 0x000798, "Wrong size on UGA_HoldAltControl_C"); \ +static_assert(offsetof(UGA_HoldAltControl_C, UberGraphFrame) == 0x0006C0, "Member 'UGA_HoldAltControl_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, HeldActor) == 0x0006C8, "Member 'UGA_HoldAltControl_C::HeldActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, MagnetTask) == 0x0006D0, "Member 'UGA_HoldAltControl_C::MagnetTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, montagetask) == 0x0006D8, "Member 'UGA_HoldAltControl_C::montagetask' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, IgnoredActors) == 0x0006E0, "Member 'UGA_HoldAltControl_C::IgnoredActors' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AimAssistRange) == 0x0006F0, "Member 'UGA_HoldAltControl_C::AimAssistRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, ObjectRadius) == 0x0006F8, "Member 'UGA_HoldAltControl_C::ObjectRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, EndLocation) == 0x000700, "Member 'UGA_HoldAltControl_C::EndLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AimAssistRadiusOutOfCombat) == 0x000718, "Member 'UGA_HoldAltControl_C::AimAssistRadiusOutOfCombat' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AimAssistRadiusInCombat) == 0x000720, "Member 'UGA_HoldAltControl_C::AimAssistRadiusInCombat' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AimAssistRadius) == 0x000728, "Member 'UGA_HoldAltControl_C::AimAssistRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AutoAimOrigin) == 0x000730, "Member 'UGA_HoldAltControl_C::AutoAimOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AutoAimDirection) == 0x000748, "Member 'UGA_HoldAltControl_C::AutoAimDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, IsInCombat_) == 0x000760, "Member 'UGA_HoldAltControl_C::IsInCombat_' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, TargetLocation) == 0x000768, "Member 'UGA_HoldAltControl_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, AudioStimulusRadius) == 0x000780, "Member 'UGA_HoldAltControl_C::AudioStimulusRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, Wake_Timer) == 0x000788, "Member 'UGA_HoldAltControl_C::Wake_Timer' has a wrong offset!"); \ +static_assert(offsetof(UGA_HoldAltControl_C, Trajectory_Update_Period) == 0x000790, "Member 'UGA_HoldAltControl_C::Trajectory_Update_Period' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_AddMasqueradeBreachTag \ +static_assert(alignof(GA_Telekinesis_Hold_C_AddMasqueradeBreachTag) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_AddMasqueradeBreachTag"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_AddMasqueradeBreachTag) == 0x000010, "Wrong size on GA_Telekinesis_Hold_C_AddMasqueradeBreachTag"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_AddMasqueradeBreachTag, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_AddMasqueradeBreachTag::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_AddMasqueradeBreachTag, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_AddMasqueradeBreachTag::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_AddMasqueradeBreachTag, K2Node_SwitchEnum_CmpSuccess) == 0x000009, "Member 'GA_Telekinesis_Hold_C_AddMasqueradeBreachTag::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_BeginFearEmission \ +static_assert(alignof(GA_Telekinesis_Hold_C_BeginFearEmission) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_BeginFearEmission"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_BeginFearEmission) == 0x000010, "Wrong size on GA_Telekinesis_Hold_C_BeginFearEmission"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BeginFearEmission, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_BeginFearEmission::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BeginFearEmission, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_BeginFearEmission::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_BoneAlignTorque \ +static_assert(alignof(GA_Telekinesis_Hold_C_BoneAlignTorque) == 0x000010, "Wrong alignment on GA_Telekinesis_Hold_C_BoneAlignTorque"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_BoneAlignTorque) == 0x0002F0, "Wrong size on GA_Telekinesis_Hold_C_BoneAlignTorque"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, InSocketName) == 0x000000, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::InSocketName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, Strength) == 0x000008, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000040, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetAttachPoint_Location) == 0x000058, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetAttachPoint_Rotation) == 0x000070, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetSocketTransform_ReturnValue) == 0x000090, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetRightVector_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_BreakTransform_Location) == 0x000108, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_BreakTransform_Rotation) == 0x000120, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_BreakTransform_Scale) == 0x000138, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetUpVector_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetRightVector_ReturnValue_1) == 0x000168, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetUpVector_ReturnValue_1) == 0x000180, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_NegateVector_ReturnValue) == 0x000198, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_NegateVector_ReturnValue_1) == 0x0001B0, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Cross_VectorVector_ReturnValue) == 0x0001C8, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Cross_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_GetForwardVector_ReturnValue) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001F8, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Add_VectorVector_ReturnValue) == 0x000210, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Normal_ReturnValue) == 0x000228, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Cross_VectorVector_ReturnValue_1) == 0x000240, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Cross_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000258, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Normal_ReturnValue_1) == 0x000270, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_VSize_ReturnValue) == 0x000288, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000290, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_FClamp_ReturnValue) == 0x000298, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0002A0, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0002A8, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0002C0, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_BoneAlignTorque, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0002D8, "Member 'GA_Telekinesis_Hold_C_BoneAlignTorque::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_CacheLocalVariables \ +static_assert(alignof(GA_Telekinesis_Hold_C_CacheLocalVariables) == 0x000010, "Wrong alignment on GA_Telekinesis_Hold_C_CacheLocalVariables"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_CacheLocalVariables) == 0x000270, "Wrong size on GA_Telekinesis_Hold_C_CacheLocalVariables"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, Targeting_range) == 0x000000, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::Targeting_range' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, NewLocalVar) == 0x000008, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, TargetingRange) == 0x000010, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::TargetingRange' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, Temp_object_Variable) == 0x000018, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetSocketTransform_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, Temp_byte_Variable) == 0x000080, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_BreakTransform_Location) == 0x000088, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_BreakTransform_Rotation) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_BreakTransform_Scale) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_Conv_RotatorToVector_ReturnValue) == 0x0000D0, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_Conv_RotatorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0000E8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess) == 0x0000F8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000100, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_1) == 0x000110, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetThrowableComponent_ReturnValue) == 0x000118, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetThrowableComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetTargetType_ReturnValue) == 0x000120, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_SelectFloat_ReturnValue) == 0x000128, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeStruct_WrestlerHoldAbilityTargetingUpdateData) == 0x000130, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeStruct_WrestlerHoldAbilityTargetingUpdateData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_IsValid_ReturnValue) == 0x00014C, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x000150, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_2) == 0x000160, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetDataAsset_ReturnValue) == 0x000168, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_IsValid_ReturnValue_1) == 0x000170, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsSkeletal_Mesh_Component) == 0x000178, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsSkeletal_Mesh_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_3) == 0x000180, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000188, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000190, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsWrestler_Combat_State_Interface) == 0x0001A8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsWrestler_Combat_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_4) == 0x0001B8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_Add_VectorVector_ReturnValue) == 0x0001C0, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_IsInCombat_ReturnValue) == 0x0001D8, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_IsInCombat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeArray_Array) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetActorBounds_Origin) == 0x0001F0, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetActorBounds_BoxExtent) == 0x000208, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000220, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetMaxElement_ReturnValue) == 0x000228, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetMaxElement_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_AsHera_Dialogue_Character_Interface) == 0x000230, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_AsHera_Dialogue_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_DynamicCast_bSuccess_5) == 0x000240, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x000248, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeStruct_HeldObjectRadius_ImplicitCast) == 0x000250, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeStruct_HeldObjectRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeStruct_AimAssistRadius_ImplicitCast) == 0x000254, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeStruct_AimAssistRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeStruct_ThrowRange_ImplicitCast) == 0x000258, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeStruct_ThrowRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_MakeStruct_AimAssistRange_ImplicitCast) == 0x00025C, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_MakeStruct_AimAssistRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_CacheLocalVariables, K2Node_VariableSet_AudioStimulusRadius_ImplicitCast) == 0x000260, "Member 'GA_Telekinesis_Hold_C_CacheLocalVariables::K2Node_VariableSet_AudioStimulusRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_DodgeChance \ +static_assert(alignof(GA_Telekinesis_Hold_C_DodgeChance) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_DodgeChance"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_DodgeChance) == 0x000080, "Wrong size on GA_Telekinesis_Hold_C_DodgeChance"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Char) == 0x000000, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Char' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_DodgeChance::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_bool_Variable) == 0x000009, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000028, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000038, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000040, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000050, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_real_Variable) == 0x000054, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_real_Variable_1) == 0x000058, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_bool_Variable_1) == 0x00005C, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, K2Node_Select_Default) == 0x000060, "Member 'GA_Telekinesis_Hold_C_DodgeChance::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_real_Variable_2) == 0x000064, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_bool_Variable_2) == 0x000068, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, K2Node_Select_Default_1) == 0x00006C, "Member 'GA_Telekinesis_Hold_C_DodgeChance::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, Temp_real_Variable_3) == 0x000070, "Member 'GA_Telekinesis_Hold_C_DodgeChance::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, K2Node_Select_Default_2) == 0x000074, "Member 'GA_Telekinesis_Hold_C_DodgeChance::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_DodgeChance, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Hold_C_DodgeChance::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_EndFearEmission \ +static_assert(alignof(GA_Telekinesis_Hold_C_EndFearEmission) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_EndFearEmission"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_EndFearEmission) == 0x000010, "Wrong size on GA_Telekinesis_Hold_C_EndFearEmission"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_EndFearEmission, CallFunc_GetComponentByClass_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_EndFearEmission::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_EndFearEmission, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_EndFearEmission::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_EndFearEmission, CallFunc_IsValid_ReturnValue_1) == 0x000009, "Member 'GA_Telekinesis_Hold_C_EndFearEmission::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B \ +static_assert(alignof(GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B) == 0x0000B0, "Wrong size on GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B, Payload) == 0x000000, "Member 'GA_Telekinesis_Hold_C_EventReceived_66B9DE6C4852706E111E1F9255097B1B::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95 \ +static_assert(alignof(GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95) == 0x0000B0, "Wrong size on GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95, Payload) == 0x000000, "Member 'GA_Telekinesis_Hold_C_EventReceived_C6BDDFB940AAB1A2CA581D80E70ADA95::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold \ +static_assert(alignof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold) == 0x0019B8, "Wrong size on GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, EntryPoint) == 0x000000, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAnimInstance_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Montage_IsPlaying_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Montage_IsPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_real_Variable) == 0x00001C, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate) == 0x000044, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_1) == 0x000060, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitGameplayTagAdd_ReturnValue_1) == 0x000078, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitGameplayTagAdd_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_2) == 0x000080, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_2) == 0x000090, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitRealDelay_ReturnValue) == 0x000098, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_3) == 0x0000B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_Payload) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_struct_Variable) == 0x000168, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000218, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_4) == 0x000220, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Variable) == 0x000221, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000228, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess) == 0x000238, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000239, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000240, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_4) == 0x000248, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000258, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000260, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_5) == 0x000278, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000280, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_5) == 0x000298, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitDelay_ReturnValue) == 0x0002A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_6) == 0x0002C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitDelay_ReturnValue_1) == 0x0002C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_7) == 0x0002D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_7) == 0x0002E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitDelay_ReturnValue_2) == 0x0002E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Create_ReturnValue) == 0x0002F0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_8) == 0x0002F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_8) == 0x0002FC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitRealDelay_ReturnValue_2) == 0x000310, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000318, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_9) == 0x000330, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000338, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000350, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x000368, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_7) == 0x000380, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_8) == 0x000398, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_9) == 0x0003B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_10) == 0x0003C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_11) == 0x0003E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_12) == 0x0003F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_13) == 0x000410, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_14) == 0x000428, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_15) == 0x000440, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_16) == 0x000458, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_17) == 0x000470, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Variable_1) == 0x000488, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable) == 0x000490, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_1) == 0x000498, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_9) == 0x0004A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_Select_Default) == 0x0004B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0004B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_10) == 0x0004C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_10) == 0x0004D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_11) == 0x0004D4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_12) == 0x0004E4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_name_Variable) == 0x0004F4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Variable_2) == 0x0004FC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Not_PreBool_ReturnValue) == 0x0004FD, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_name_Variable_1) == 0x000500, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Variable_3) == 0x000508, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_2) == 0x000510, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000518, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_Event_EventData) == 0x000520, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_Event_bWasCancelled) == 0x0005D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasTag_ReturnValue) == 0x0005D1, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasTag_ReturnValue_1) == 0x0005D2, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_3) == 0x0005D8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_K2_CommitAbility_ReturnValue) == 0x0005E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Has_Been_Initd_Variable) == 0x0005E1, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0005E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeThrowTargetData_ReturnValue) == 0x0006C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeThrowTargetData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_MakeStruct_GameplayEventData) == 0x0006E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_SwitchEnum_CmpSuccess) == 0x000798, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Not_PreBool_ReturnValue_1) == 0x000799, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_Select_Default_1) == 0x00079C, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_11) == 0x0007A4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_4) == 0x0007A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Has_Been_Initd_Variable_1) == 0x0007B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_12) == 0x0007B1, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_13) == 0x0007B4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_13) == 0x0007C4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_ShouldAlignToView_ReturnValue) == 0x0007C5, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_ShouldAlignToView_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeMagnetForce_ReturnValue) == 0x0007C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeMagnetForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeViewAlignedMagnetTorque_ReturnValue) == 0x0007E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeViewAlignedMagnetTorque_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeLooseMagnetTorque_ReturnValue) == 0x0007F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeLooseMagnetTorque_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_RandomUnitVector_ReturnValue) == 0x000810, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1) == 0x000828, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_real_Variable_1) == 0x000830, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_14) == 0x000834, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_IsClosed_Variable) == 0x000835, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_15) == 0x000836, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_WaitingTime_1) == 0x000838, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_WaitingTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00083C, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_5) == 0x000840, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Make_Corpse_Force_ReturnValue) == 0x000848, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Make_Corpse_Force_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000860, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_IsClosed_Variable_1) == 0x000878, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeViewAlignedHeadTorque_ReturnValue) == 0x000880, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeViewAlignedHeadTorque_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_14) == 0x000898, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_object_Variable_6) == 0x0008A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_object_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsActorOfClass_ReturnValue) == 0x0008B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0008B4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_Pull) == 0x0008BC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_Pull' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_16) == 0x0008BD, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsBP_Throwable_Weapon) == 0x0008C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsBP_Throwable_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_1) == 0x0008C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Greater_IntInt_ReturnValue) == 0x0008C9, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_17) == 0x0008CA, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsBP_Throwable_Weapon_1) == 0x0008D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsBP_Throwable_Weapon_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_2) == 0x0008D8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_byte_Variable) == 0x0008D9, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Has_Ammo_Loaded) == 0x0008DA, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Has_Ammo_Loaded' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_Select_Default_2) == 0x0008E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1) == 0x0008E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_18) == 0x0008F0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0008F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000900, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000910, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_WaitingTime) == 0x000914, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000918, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_18) == 0x000920, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeSplitsecondOffset_ReturnValue) == 0x000938, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeSplitsecondOffset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000950, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000968, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000980, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x000998, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x0009A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_19) == 0x000A88, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_SwitchEnum_CmpSuccess_1) == 0x000A89, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000A90, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000A98, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000AA0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetOwner_ReturnValue) == 0x000AA8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_20) == 0x000AB0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsBP_Elixir) == 0x000AB8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsBP_Elixir' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_3) == 0x000AC0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_21) == 0x000AC1, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_15) == 0x000AC4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_22) == 0x000AD4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerController_ReturnValue) == 0x000AD8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAttachPoint_Location) == 0x000AE0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAttachPoint_Rotation) == 0x000AF8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCenterOfMass_ReturnValue) == 0x000B10, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Vector_Distance_ReturnValue) == 0x000B28, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000B30, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000B38, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_Barkonly) == 0x000B40, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_Barkonly' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000B48, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000B58, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetVelocity_ReturnValue) == 0x000B60, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_VSize_ReturnValue) == 0x000B78, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000B80, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MapRangeClamped_ReturnValue) == 0x000B88, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue) == 0x000B90, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000BA8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue) == 0x000BB0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraLocation_ReturnValue) == 0x000BC8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000BE0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000BF8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue) == 0x000C10, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000C28, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x000C40, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_struct_Variable_1) == 0x000C48, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_23) == 0x000CF8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerPawn_ReturnValue) == 0x000D00, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_MakeArray_Array) == 0x000D08, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_SphereTraceSingleByProfile_OutHit) == 0x000D18, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_SphereTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_SphereTraceSingleByProfile_ReturnValue) == 0x000E00, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_SphereTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_Payload_1) == 0x000E08, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_bBlockingHit) == 0x000EB8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_bInitialOverlap) == 0x000EB9, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Time) == 0x000EBC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Distance) == 0x000EC0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Location) == 0x000EC8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ImpactPoint) == 0x000EE0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Normal) == 0x000EF8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ImpactNormal) == 0x000F10, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_PhysMat) == 0x000F28, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitActor) == 0x000F30, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitComponent) == 0x000F38, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitBoneName) == 0x000F40, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_BoneName) == 0x000F48, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitItem) == 0x000F50, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ElementIndex) == 0x000F54, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_FaceIndex) == 0x000F58, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_TraceStart) == 0x000F60, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_TraceEnd) == 0x000F78, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_24) == 0x000F90, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_16) == 0x000F94, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetActorForwardVector_ReturnValue) == 0x000FA8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000FC0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_4) == 0x000FC8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000FD0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_DodgeChance_ReturnValue) == 0x000FF0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_DodgeChance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000FF8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x001008, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Not_PreBool_ReturnValue_2) == 0x001009, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAIController_ReturnValue) == 0x001010, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_17) == 0x001018, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x001028, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x001048, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x001050, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsAwareOfActor_ReturnValue) == 0x001058, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsDetectingActor_ReturnValue) == 0x001059, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BooleanAND_ReturnValue) == 0x00105A, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_19) == 0x001060, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BooleanOR_ReturnValue) == 0x001078, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001080, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BooleanOR_ReturnValue_1) == 0x001098, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0010A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_25) == 0x0010A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_26) == 0x0010A9, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_27) == 0x0010AA, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsBP_Elixir_1) == 0x0010B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsBP_Elixir_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_5) == 0x0010B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0010C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetVelocity_ReturnValue_1) == 0x0010C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0010E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_VInterpTo_ReturnValue) == 0x0010E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Get_PointedRotation_ReturnValue) == 0x001100, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Get_PointedRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_RInterpTo_ReturnValue) == 0x001118, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_K2_SetActorRotation_ReturnValue) == 0x001130, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Get_PointedRotation_ReturnValue_1) == 0x001138, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Get_PointedRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x001150, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_18) == 0x001154, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x001168, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x001170, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_6) == 0x001180, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_28) == 0x001181, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCurrentAmmo_ReturnValue) == 0x001184, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCurrentAmmo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Less_IntInt_ReturnValue) == 0x001188, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x001189, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BooleanAND_ReturnValue_1) == 0x00118A, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x001190, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x001198, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0011A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_29) == 0x0011A9, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x0011B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_1) == 0x0011B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_19) == 0x0011D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetUpVector_ReturnValue) == 0x0011E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x0011F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetRightVector_ReturnValue) == 0x001210, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_1) == 0x001228, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x001240, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_8) == 0x001258, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_2) == 0x001270, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_9) == 0x001288, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0012A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_20) == 0x0012B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_21) == 0x0012C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_Has_Been_Initd_Variable_2) == 0x0012D8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x0012E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_2) == 0x0012E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x001300, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_2) == 0x001308, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_NegateVector_ReturnValue) == 0x001320, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_22) == 0x001338, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Dot_VectorVector_ReturnValue) == 0x001348, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x001350, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Make_Corpse_Force_ReturnValue_1) == 0x001358, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Make_Corpse_Force_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BooleanAND_ReturnValue_2) == 0x001370, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_4) == 0x001378, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_ClampVectorSize_ReturnValue) == 0x001390, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_10) == 0x0013A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_11) == 0x0013C0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_20) == 0x0013D8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x0013F0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_12) == 0x0013F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_30) == 0x001410, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_bool_IsClosed_Variable_2) == 0x001411, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_31) == 0x001412, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_32) == 0x001413, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2) == 0x001418, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, Temp_real_Variable_2) == 0x001420, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_33) == 0x001424, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_3) == 0x001428, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_FClamp_ReturnValue) == 0x001430, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_3) == 0x001438, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_ReturnValue_21) == 0x001450, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_3) == 0x001468, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraLocation_ReturnValue_1) == 0x001480, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_13) == 0x001498, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_4) == 0x0014B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_5) == 0x0014B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_4) == 0x0014D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_4) == 0x0014E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraLocation_ReturnValue_2) == 0x001500, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_14) == 0x001518, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_6) == 0x001530, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_5) == 0x001548, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_5) == 0x001550, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraLocation_ReturnValue_3) == 0x001568, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_5) == 0x001580, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x001598, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_15) == 0x0015A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_7) == 0x0015B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_MakeArray_Array_1) == 0x0015D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_LineTraceSingle_OutHit) == 0x0015E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_LineTraceSingle_ReturnValue) == 0x0016C8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_23) == 0x0016CC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0016DC, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0016DD, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Time_1) == 0x0016E0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Distance_1) == 0x0016E4, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Location_1) == 0x0016E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ImpactPoint_1) == 0x001700, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_Normal_1) == 0x001718, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ImpactNormal_1) == 0x001730, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_PhysMat_1) == 0x001748, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitActor_1) == 0x001750, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitComponent_1) == 0x001758, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitBoneName_1) == 0x001760, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_BoneName_1) == 0x001768, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_HitItem_1) == 0x001770, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_ElementIndex_1) == 0x001774, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_FaceIndex_1) == 0x001778, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_TraceStart_1) == 0x001780, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_BreakHitResult_TraceEnd_1) == 0x001798, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CustomEvent_WaitingTime_2) == 0x0017B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CustomEvent_WaitingTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x0017B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_ClampVectorSize_ReturnValue_1) == 0x0017D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_ClampVectorSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_24) == 0x0017E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetPlayerCameraManager_ReturnValue_6) == 0x0017F8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetPlayerCameraManager_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_25) == 0x001800, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetCameraRotation_ReturnValue_6) == 0x001810, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetCameraRotation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetUpVector_ReturnValue_1) == 0x001828, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetRightVector_ReturnValue_1) == 0x001840, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_16) == 0x001858, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_17) == 0x001870, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_18) == 0x001888, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_19) == 0x0018A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_GetForwardVector_ReturnValue_6) == 0x0018B8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_GetForwardVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_20) == 0x0018D0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Multiply_VectorVector_ReturnValue_21) == 0x0018E8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Multiply_VectorVector_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_8) == 0x001900, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_9) == 0x001918, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_10) == 0x001930, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Add_VectorVector_ReturnValue_11) == 0x001948, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Add_VectorVector_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_34) == 0x001960, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x001968, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_7) == 0x001978, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_35) == 0x001979, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_35' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_26) == 0x00197C, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_CacheLocalVariables_Targeting_range_ImplicitCast) == 0x001990, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_CacheLocalVariables_Targeting_range_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x001998, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0019A0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, CallFunc_VInterpTo_DeltaTime_ImplicitCast) == 0x0019A8, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::CallFunc_VInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold, K2Node_VariableSet_RangeDepth_ImplicitCast) == 0x0019B0, "Member 'GA_Telekinesis_Hold_C_ExecuteUbergraph_GA_Telekinesis_Hold::K2Node_VariableSet_RangeDepth_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Get_PointedRotation \ +static_assert(alignof(GA_Telekinesis_Hold_C_Get_PointedRotation) == 0x000010, "Wrong alignment on GA_Telekinesis_Hold_C_Get_PointedRotation"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Get_PointedRotation) == 0x0002E0, "Wrong size on GA_Telekinesis_Hold_C_Get_PointedRotation"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, Temp_bool_Variable) == 0x000018, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, Temp_bool_Variable_1) == 0x000019, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, Temp_bool_Variable_2) == 0x00001A, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GetSocketTransform_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, Temp_bool_Variable_3) == 0x000080, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakTransform_Location) == 0x000088, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakTransform_Rotation) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakTransform_Scale) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, Temp_bool_Variable_4) == 0x0000D0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GetAttachPoint_Location) == 0x0000D8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GetAttachPoint_Rotation) == 0x0000F0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000108, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_DynamicCast_bSuccess) == 0x000118, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000120, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GetPointAxis_ReturnValue) == 0x000138, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GetPointAxis_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromZ_ReturnValue) == 0x000168, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromY_ReturnValue) == 0x000180, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000198, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromX_ReturnValue) == 0x0001B0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakVector_X) == 0x0001C8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakVector_Y) == 0x0001D0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_BreakVector_Z) == 0x0001D8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_NegateVector_ReturnValue) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001F8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromZ_ReturnValue_1) == 0x000200, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromZ_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromY_ReturnValue_1) == 0x000218, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_Select_Default) == 0x000230, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_MakeRotFromX_ReturnValue_1) == 0x000248, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_MakeRotFromX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000260, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000261, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_Select_Default_1) == 0x000268, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000280, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_Select_Default_2) == 0x000288, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0002A0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_Select_Default_3) == 0x0002A8, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Get_PointedRotation, K2Node_Select_Default_4) == 0x0002C0, "Member 'GA_Telekinesis_Hold_C_Get_PointedRotation::K2Node_Select_Default_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_GetAttachPoint \ +static_assert(alignof(GA_Telekinesis_Hold_C_GetAttachPoint) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_GetAttachPoint"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_GetAttachPoint) == 0x000200, "Wrong size on GA_Telekinesis_Hold_C_GetAttachPoint"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, Offset) == 0x000000, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::Offset' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, Location) == 0x000018, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, Rotation_0) == 0x000030, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::Rotation_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000050, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetVelocity_ReturnValue) == 0x000068, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000080, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_MapRangeClamped_ReturnValue) == 0x000098, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetActorBounds_Origin) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetActorBounds_BoxExtent) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetMaxElement_ReturnValue) == 0x0000D0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetMaxElement_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_MapRangeClamped_ReturnValue_1) == 0x0000D8, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_IsValid_ReturnValue) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_VLerp_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000108, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000110, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetCameraRotation_ReturnValue) == 0x000118, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000130, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetCameraLocation_ReturnValue) == 0x000138, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Sin_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000158, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000160, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000168, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Sin_ReturnValue_1) == 0x000170, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Sin_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000178, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_MakeVector_ReturnValue) == 0x000180, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Add_VectorVector_ReturnValue) == 0x000198, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x0001B0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001C8, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_GetAttachPoint, CallFunc_VLerp_Alpha_ImplicitCast) == 0x0001F8, "Member 'GA_Telekinesis_Hold_C_GetAttachPoint::CallFunc_VLerp_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Has_Ammo \ +static_assert(alignof(GA_Telekinesis_Hold_C_Has_Ammo) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_Has_Ammo"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Has_Ammo) == 0x000028, "Wrong size on GA_Telekinesis_Hold_C_Has_Ammo"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Has_Ammo, Loaded) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Has_Ammo::Loaded' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Has_Ammo, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000008, "Member 'GA_Telekinesis_Hold_C_Has_Ammo::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Has_Ammo, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Telekinesis_Hold_C_Has_Ammo::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Has_Ammo, CallFunc_GetCurrentAmmo_ReturnValue) == 0x00001C, "Member 'GA_Telekinesis_Hold_C_Has_Ammo::CallFunc_GetCurrentAmmo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Has_Ammo, CallFunc_Greater_IntInt_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_Has_Ammo::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Telekinesis_Hold_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_K2_OnEndAbility \ +static_assert(alignof(GA_Telekinesis_Hold_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Telekinesis_Hold_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Telekinesis_Hold_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Telekinesis_Hold_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Make_Corpse_Force \ +static_assert(alignof(GA_Telekinesis_Hold_C_Make_Corpse_Force) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_Make_Corpse_Force"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Make_Corpse_Force) == 0x000610, "Wrong size on GA_Telekinesis_Hold_C_Make_Corpse_Force"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Distance) == 0x000018, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_bool_Variable) == 0x000020, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_real_Variable) == 0x000028, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_real_Variable_1) == 0x000030, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_bool_Variable_1) == 0x000038, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_struct_Variable) == 0x000040, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000070, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_bool_Variable_2) == 0x000078, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MapRangeClamped_ReturnValue) == 0x000080, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000088, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x0000B0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000C0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Sin_ReturnValue) == 0x0000C8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Sin_ReturnValue_1) == 0x0000D0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Sin_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000D8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0000E8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MakeVector_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetCameraRotation_ReturnValue) == 0x000108, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue) == 0x000120, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetRightVector_ReturnValue) == 0x000138, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetForwardVector_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetForwardVector_ReturnValue_1) == 0x000168, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetCameraLocation_ReturnValue) == 0x000180, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_X) == 0x000198, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Y) == 0x0001A0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Z) == 0x0001A8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_X_1) == 0x0001B0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Y_1) == 0x0001B8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Z_1) == 0x0001C0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MakeVector_ReturnValue_1) == 0x0001C8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Normal_ReturnValue) == 0x0001E8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_VLerp_ReturnValue) == 0x000200, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000218, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000230, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetWorldDeltaSeconds_ReturnValue_1) == 0x000248, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetWorldDeltaSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000250, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000268, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000270, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000288, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000290, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0002A8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, K2Node_Select_Default) == 0x0002C0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x0002C8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0002E0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0002F8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000300, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetVelocity_ReturnValue) == 0x000318, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_X_2) == 0x000330, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Y_2) == 0x000338, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Z_2) == 0x000340, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, K2Node_Select_Default_1) == 0x000348, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_FClamp_ReturnValue) == 0x000360, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_ClampVectorSize_ReturnValue) == 0x000368, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_ClampVectorSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000380, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_X_3) == 0x000388, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_X_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Y_3) == 0x000390, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Y_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_BreakVector_Z_3) == 0x000398, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_BreakVector_Z_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MakeVector_ReturnValue_2) == 0x0003A0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MakeVector_ReturnValue_3) == 0x0003B8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MakeVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0003D0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0003E8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, K2Node_Select_Default_2) == 0x0003F0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_struct_Variable_1) == 0x0003F8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_struct_Variable_2) == 0x000410, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, Temp_bool_Variable_3) == 0x000428, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, K2Node_Select_Default_3) == 0x000430, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x000448, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetSocketLocation_ReturnValue) == 0x000460, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000478, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Vector_Distance_ReturnValue) == 0x000490, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000498, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0004B0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Vector_Distance_ReturnValue_1) == 0x0004C8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_VSize_ReturnValue) == 0x0004D0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0004D8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x0004E0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0004E8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_FClamp_ReturnValue_1) == 0x0004F0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_FClamp_ReturnValue_2) == 0x0004F8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000500, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1) == 0x000508, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Normal_ReturnValue_1) == 0x000510, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Normal_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000528, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Dot_VectorVector_ReturnValue) == 0x000530, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000538, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_FClamp_ReturnValue_3) == 0x000550, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_FClamp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x000558, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000570, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue_4) == 0x000578, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x000590, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Add_VectorVector_ReturnValue_5) == 0x000598, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Add_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x0005B0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x0005C8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x0005E0, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Make_Corpse_Force, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x0005F8, "Member 'GA_Telekinesis_Hold_C_Make_Corpse_Force::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_MakeLooseMagnetTorque \ +static_assert(alignof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_MakeLooseMagnetTorque"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque) == 0x0001B0, "Wrong size on GA_Telekinesis_Hold_C_MakeLooseMagnetTorque"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000020, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000030, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Sin_ReturnValue) == 0x000038, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Sin_ReturnValue_1) == 0x000040, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Sin_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000048, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000050, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000070, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x000088, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetAttachPoint_Location) == 0x000090, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetAttachPoint_Rotation) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000C0, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetUpVector_ReturnValue) == 0x0000C8, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Sin_ReturnValue_2) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Sin_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000E8, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000100, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetRightVector_ReturnValue) == 0x000108, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000120, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000138, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_GetUpVector_ReturnValue_1) == 0x000150, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_GetUpVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000168, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Add_VectorVector_ReturnValue) == 0x000180, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeLooseMagnetTorque, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000198, "Member 'GA_Telekinesis_Hold_C_MakeLooseMagnetTorque::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_MakeMagnetForce \ +static_assert(alignof(GA_Telekinesis_Hold_C_MakeMagnetForce) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_MakeMagnetForce"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_MakeMagnetForce) == 0x000258, "Wrong size on GA_Telekinesis_Hold_C_MakeMagnetForce"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000030, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_BreakVector_X) == 0x000048, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_BreakVector_Y) == 0x000050, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_BreakVector_Z) == 0x000058, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, Temp_struct_Variable) == 0x000060, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_MakeVector_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000090, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetAttachPoint_Location) == 0x0000B0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetAttachPoint_Rotation) == 0x0000C8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, Temp_bool_Variable) == 0x0000F1, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetPhysicsLinearVelocity_ReturnValue) == 0x0000F8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetPhysicsLinearVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, K2Node_Select_Default) == 0x000110, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetComponentVelocity_ReturnValue) == 0x000128, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetComponentVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetCenterOfMass_ReturnValue) == 0x000140, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000158, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Add_VectorVector_ReturnValue) == 0x000170, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000188, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Vector_Distance_ReturnValue) == 0x0001A0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001A8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x0001B0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_FClamp_ReturnValue) == 0x0001B8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_FClamp_ReturnValue_1) == 0x0001C0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0001C8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001D0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001D8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_MakeVector_ReturnValue_1) == 0x0001E0, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0001F8, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000210, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000228, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeMagnetForce, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000240, "Member 'GA_Telekinesis_Hold_C_MakeMagnetForce::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_MakeSplitsecondOffset \ +static_assert(alignof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_MakeSplitsecondOffset"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset) == 0x000200, "Wrong size on GA_Telekinesis_Hold_C_MakeSplitsecondOffset"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, Temp_struct_Variable) == 0x000018, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetAttachPoint_Location) == 0x000030, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetAttachPoint_Rotation) == 0x000048, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000060, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, Temp_bool_Variable) == 0x000068, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000070, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000080, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetVelocity_ReturnValue) == 0x000088, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_BreakVector_X) == 0x0000A0, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_BreakVector_Y) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_BreakVector_Z) == 0x0000B0, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0000B8, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_MakeVector_ReturnValue) == 0x0000D0, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000E8, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetCenterOfMass_ReturnValue) == 0x000100, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, K2Node_Select_Default) == 0x000118, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Vector_Distance_ReturnValue) == 0x000130, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000138, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000158, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_FClamp_ReturnValue) == 0x000160, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_FClamp_ReturnValue_1) == 0x000168, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000170, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000178, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_MakeVector_ReturnValue_1) == 0x000180, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000198, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0001A0, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001B8, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Add_VectorVector_ReturnValue) == 0x0001D0, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeSplitsecondOffset, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E8, "Member 'GA_Telekinesis_Hold_C_MakeSplitsecondOffset::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque \ +static_assert(alignof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque) == 0x000200, "Wrong size on GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000030, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000050, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetRightVector_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Sin_ReturnValue) == 0x000070, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_NegateVector_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetForwardVector_ReturnValue) == 0x000098, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000B0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_NegateVector_ReturnValue_1) == 0x0000C8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetAttachPoint_Location) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetAttachPoint_Rotation) == 0x0000F8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetForwardVector_ReturnValue_1) == 0x000110, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetUpVector_ReturnValue) == 0x000128, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Cross_VectorVector_ReturnValue) == 0x000140, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Cross_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000158, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000170, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_GetRightVector_ReturnValue_1) == 0x000188, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_GetRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Add_VectorVector_ReturnValue) == 0x0001A0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Cross_VectorVector_ReturnValue_1) == 0x0001B8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Cross_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0001D0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedHeadTorque::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque \ +static_assert(alignof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque) == 0x000010, "Wrong alignment on GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque) == 0x000420, "Wrong size on GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, Strength) == 0x000000, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, Temp_bool_Variable) == 0x000038, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000040, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetPointAxis_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetPointAxis_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000090, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_MakeVector_ReturnValue) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000C0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x0000C8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x0000E0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0000F8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, Temp_struct_Variable) == 0x000100, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000118, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Sin_ReturnValue) == 0x000120, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000128, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetSocketTransform_ReturnValue) == 0x000130, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000190, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_BreakTransform_Location) == 0x0001A8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_BreakTransform_Rotation) == 0x0001C0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_BreakTransform_Scale) == 0x0001D8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x0001F0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetAttachPoint_Location) == 0x000208, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetAttachPoint_Rotation) == 0x000220, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Vector_IsNearlyZero_ReturnValue) == 0x000238, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Vector_IsNearlyZero_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetRightVector_ReturnValue) == 0x000240, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000258, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000270, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Add_VectorVector_ReturnValue) == 0x000288, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GreaterGreater_VectorRotator_ReturnValue_1) == 0x0002A0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GreaterGreater_VectorRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Normal_ReturnValue) == 0x0002B8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0002D0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_MakeRotFromXZ_ReturnValue) == 0x0002E8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, K2Node_Select_Default) == 0x000300, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetForwardVector_ReturnValue) == 0x000318, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetRightVector_ReturnValue_1) == 0x000330, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetRightVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Cross_VectorVector_ReturnValue) == 0x000348, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Cross_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_GetUpVector_ReturnValue) == 0x000360, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000378, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000390, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0003A8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Cross_VectorVector_ReturnValue_1) == 0x0003C0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Cross_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x0003D8, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0003F0, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000408, "Member 'GA_Telekinesis_Hold_C_MakeViewAlignedMagnetTorque::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70 \ +static_assert(alignof(GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70) == 0x000004, "Wrong alignment on GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70) == 0x000004, "Wrong size on GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70, WaitingTime) == 0x000000, "Member 'GA_Telekinesis_Hold_C_OnControlCueProcess_58E28FEE4826559882CC62A3DF944F70::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A \ +static_assert(alignof(GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A) == 0x000004, "Wrong alignment on GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A) == 0x000004, "Wrong size on GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A, WaitingTime) == 0x000000, "Member 'GA_Telekinesis_Hold_C_OnControlCueProcess_C2B96C424D61A749587019ABED32227A::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42 \ +static_assert(alignof(GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42) == 0x000004, "Wrong alignment on GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42) == 0x000004, "Wrong size on GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42, WaitingTime) == 0x000000, "Member 'GA_Telekinesis_Hold_C_OnControlCueProcess_CCECF9A94DD5A2842E9F1BB40EDFCF42::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_ProbeDodgers \ +static_assert(alignof(GA_Telekinesis_Hold_C_ProbeDodgers) == 0x000001, "Wrong alignment on GA_Telekinesis_Hold_C_ProbeDodgers"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_ProbeDodgers) == 0x000001, "Wrong size on GA_Telekinesis_Hold_C_ProbeDodgers"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ProbeDodgers, Barkonly) == 0x000000, "Member 'GA_Telekinesis_Hold_C_ProbeDodgers::Barkonly' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping \ +static_assert(alignof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping) == 0x0000C0, "Wrong size on GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, BoneName) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, Strength) == 0x000008, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::Strength' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000030, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000048, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_GetPhysicsAngularVelocityInRadians_ReturnValue) == 0x000060, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_GetPhysicsAngularVelocityInRadians_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000090, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0000A8, "Member 'GA_Telekinesis_Hold_C_Pseudo_Bone_Rot_Damping::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Reset_Throwable_Damping \ +static_assert(alignof(GA_Telekinesis_Hold_C_Reset_Throwable_Damping) == 0x000001, "Wrong alignment on GA_Telekinesis_Hold_C_Reset_Throwable_Damping"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Reset_Throwable_Damping) == 0x000001, "Wrong size on GA_Telekinesis_Hold_C_Reset_Throwable_Damping"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Reset_Throwable_Damping, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Reset_Throwable_Damping::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_ShouldAlignToView \ +static_assert(alignof(GA_Telekinesis_Hold_C_ShouldAlignToView) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_ShouldAlignToView"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_ShouldAlignToView) == 0x000020, "Wrong size on GA_Telekinesis_Hold_C_ShouldAlignToView"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ShouldAlignToView, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Hold_C_ShouldAlignToView::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ShouldAlignToView, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000008, "Member 'GA_Telekinesis_Hold_C_ShouldAlignToView::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ShouldAlignToView, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_Telekinesis_Hold_C_ShouldAlignToView::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_ShouldAlignToView, CallFunc_IsPointed_ReturnValue) == 0x000019, "Member 'GA_Telekinesis_Hold_C_ShouldAlignToView::CallFunc_IsPointed_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_Update_Damping \ +static_assert(alignof(GA_Telekinesis_Hold_C_Update_Damping) == 0x000008, "Wrong alignment on GA_Telekinesis_Hold_C_Update_Damping"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_Update_Damping) == 0x000068, "Wrong size on GA_Telekinesis_Hold_C_Update_Damping"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_GetAttachPoint_Location) == 0x000000, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_GetAttachPoint_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_GetAttachPoint_Rotation) == 0x000018, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_GetAttachPoint_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_GetCenterOfMass_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_Vector_Distance_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_MapRangeClamped_ReturnValue) == 0x000050, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000058, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_SetAngularDamping_InDamping_ImplicitCast) == 0x000060, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_SetAngularDamping_InDamping_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_Update_Damping, CallFunc_SetLinearDamping_InDamping_ImplicitCast) == 0x000064, "Member 'GA_Telekinesis_Hold_C_Update_Damping::CallFunc_SetLinearDamping_InDamping_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Hold_C_WeaponTriggerEvent \ +static_assert(alignof(GA_Telekinesis_Hold_C_WeaponTriggerEvent) == 0x000001, "Wrong alignment on GA_Telekinesis_Hold_C_WeaponTriggerEvent"); \ +static_assert(sizeof(GA_Telekinesis_Hold_C_WeaponTriggerEvent) == 0x000001, "Wrong size on GA_Telekinesis_Hold_C_WeaponTriggerEvent"); \ +static_assert(offsetof(GA_Telekinesis_Hold_C_WeaponTriggerEvent, Pull) == 0x000000, "Member 'GA_Telekinesis_Hold_C_WeaponTriggerEvent::Pull' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Telekinesis_Hold_C \ +static_assert(alignof(UGA_Telekinesis_Hold_C) == 0x000008, "Wrong alignment on UGA_Telekinesis_Hold_C"); \ +static_assert(sizeof(UGA_Telekinesis_Hold_C) == 0x000950, "Wrong size on UGA_Telekinesis_Hold_C"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, UberGraphFrame) == 0x0006C0, "Member 'UGA_Telekinesis_Hold_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, HeldActor) == 0x0006C8, "Member 'UGA_Telekinesis_Hold_C::HeldActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetTask) == 0x0006D0, "Member 'UGA_Telekinesis_Hold_C::MagnetTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, montagetask) == 0x0006D8, "Member 'UGA_Telekinesis_Hold_C::montagetask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, IgnoredActors) == 0x0006E0, "Member 'UGA_Telekinesis_Hold_C::IgnoredActors' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AimAssistRange) == 0x0006F0, "Member 'UGA_Telekinesis_Hold_C::AimAssistRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, ObjectRadius) == 0x0006F8, "Member 'UGA_Telekinesis_Hold_C::ObjectRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, EndLocation) == 0x000700, "Member 'UGA_Telekinesis_Hold_C::EndLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AimAssistRadiusOutOfCombat) == 0x000718, "Member 'UGA_Telekinesis_Hold_C::AimAssistRadiusOutOfCombat' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AimAssistRadiusInCombat) == 0x000720, "Member 'UGA_Telekinesis_Hold_C::AimAssistRadiusInCombat' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AimAssistRadius) == 0x000728, "Member 'UGA_Telekinesis_Hold_C::AimAssistRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AutoAimOrigin) == 0x000730, "Member 'UGA_Telekinesis_Hold_C::AutoAimOrigin' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AutoAimDirection) == 0x000748, "Member 'UGA_Telekinesis_Hold_C::AutoAimDirection' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, IsInCombat_) == 0x000760, "Member 'UGA_Telekinesis_Hold_C::IsInCombat_' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, TargetLocation) == 0x000768, "Member 'UGA_Telekinesis_Hold_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AudioStimulusRadius) == 0x000780, "Member 'UGA_Telekinesis_Hold_C::AudioStimulusRadius' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Trajectory_Update_Period) == 0x000788, "Member 'UGA_Telekinesis_Hold_C::Trajectory_Update_Period' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Wake_Timer) == 0x000790, "Member 'UGA_Telekinesis_Hold_C::Wake_Timer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, HoldObjectType) == 0x000798, "Member 'UGA_Telekinesis_Hold_C::HoldObjectType' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetRelative_Offset) == 0x0007A0, "Member 'UGA_Telekinesis_Hold_C::MagnetRelative_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetFollowTightness) == 0x0007A8, "Member 'UGA_Telekinesis_Hold_C::MagnetFollowTightness' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetOffsetTightness) == 0x0007AC, "Member 'UGA_Telekinesis_Hold_C::MagnetOffsetTightness' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetComponent) == 0x0007B0, "Member 'UGA_Telekinesis_Hold_C::MagnetComponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Rotation) == 0x0007B8, "Member 'UGA_Telekinesis_Hold_C::Rotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, OffsetFromTarget) == 0x0007D0, "Member 'UGA_Telekinesis_Hold_C::OffsetFromTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, MagnetTimer) == 0x0007E8, "Member 'UGA_Telekinesis_Hold_C::MagnetTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, ClosedDistance) == 0x0007F0, "Member 'UGA_Telekinesis_Hold_C::ClosedDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, DeadBodyMesh) == 0x0007F8, "Member 'UGA_Telekinesis_Hold_C::DeadBodyMesh' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, PullOnBone) == 0x000800, "Member 'UGA_Telekinesis_Hold_C::PullOnBone' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, InitialDistance) == 0x000808, "Member 'UGA_Telekinesis_Hold_C::InitialDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, TargetAlpha) == 0x000810, "Member 'UGA_Telekinesis_Hold_C::TargetAlpha' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, TargetRotation) == 0x000818, "Member 'UGA_Telekinesis_Hold_C::TargetRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, RotationTimer) == 0x000830, "Member 'UGA_Telekinesis_Hold_C::RotationTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Embedded) == 0x000838, "Member 'UGA_Telekinesis_Hold_C::Embedded' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, ThrowImmediate) == 0x000839, "Member 'UGA_Telekinesis_Hold_C::ThrowImmediate' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Base_Offset) == 0x000840, "Member 'UGA_Telekinesis_Hold_C::Base_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, ViewAlignedHold) == 0x000858, "Member 'UGA_Telekinesis_Hold_C::ViewAlignedHold' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Body_Magnet_Speed_Limit) == 0x000860, "Member 'UGA_Telekinesis_Hold_C::Body_Magnet_Speed_Limit' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Body_Magnet_Speed_Limit_Close) == 0x000868, "Member 'UGA_Telekinesis_Hold_C::Body_Magnet_Speed_Limit_Close' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Body_Offset) == 0x000870, "Member 'UGA_Telekinesis_Hold_C::Body_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Head_Class) == 0x000888, "Member 'UGA_Telekinesis_Hold_C::Head_Class' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Close_Offset) == 0x0008B0, "Member 'UGA_Telekinesis_Hold_C::Close_Offset' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, PromptWidget) == 0x0008C8, "Member 'UGA_Telekinesis_Hold_C::PromptWidget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, RangeDepth) == 0x0008D0, "Member 'UGA_Telekinesis_Hold_C::RangeDepth' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, InSplitSecond) == 0x0008D8, "Member 'UGA_Telekinesis_Hold_C::InSplitSecond' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Constrained) == 0x0008D9, "Member 'UGA_Telekinesis_Hold_C::Constrained' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, ConstraintActor) == 0x0008E0, "Member 'UGA_Telekinesis_Hold_C::ConstraintActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, AddedMasqueradeBreachTags) == 0x0008E8, "Member 'UGA_Telekinesis_Hold_C::AddedMasqueradeBreachTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Held_Elixir) == 0x000908, "Member 'UGA_Telekinesis_Hold_C::Held_Elixir' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, CanDamp) == 0x000910, "Member 'UGA_Telekinesis_Hold_C::CanDamp' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, HitVictim) == 0x000918, "Member 'UGA_Telekinesis_Hold_C::HitVictim' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, LockedIn) == 0x000920, "Member 'UGA_Telekinesis_Hold_C::LockedIn' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Firing) == 0x000921, "Member 'UGA_Telekinesis_Hold_C::Firing' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, Crosshair) == 0x000928, "Member 'UGA_Telekinesis_Hold_C::Crosshair' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, InterpPlayerVelocity) == 0x000930, "Member 'UGA_Telekinesis_Hold_C::InterpPlayerVelocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Hold_C, PB_ABL_Telekinesis) == 0x000948, "Member 'UGA_Telekinesis_Hold_C::PB_ABL_Telekinesis' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ActiveQuestPoolWidget_C \ +static_assert(alignof(UWBP_ActiveQuestPoolWidget_C) == 0x000008, "Wrong alignment on UWBP_ActiveQuestPoolWidget_C"); \ +static_assert(sizeof(UWBP_ActiveQuestPoolWidget_C) == 0x000558, "Wrong size on UWBP_ActiveQuestPoolWidget_C"); \ + +#define DUMPER7_ASSERTS_UWBP_SideQuestPoolWidget_C \ +static_assert(alignof(UWBP_SideQuestPoolWidget_C) == 0x000008, "Wrong alignment on UWBP_SideQuestPoolWidget_C"); \ +static_assert(sizeof(UWBP_SideQuestPoolWidget_C) == 0x000538, "Wrong size on UWBP_SideQuestPoolWidget_C"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation \ +static_assert(alignof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation"); \ +static_assert(sizeof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation) == 0x000040, "Wrong size on BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, EntryPoint) == 0x000000, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000010, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, K2Node_Event_OtherActor) == 0x000018, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000020, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, K2Node_Event_EndPlayReason) == 0x000021, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, Temp_delegate_Variable) == 0x000024, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, CallFunc_RandomBoolWithWeight_Weight_ImplicitCast) == 0x000034, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::CallFunc_RandomBoolWithWeight_Weight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation, CallFunc_Delay_Duration_ImplicitCast) == 0x000038, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ExecuteUbergraph_BP_Audio_TriggerBox_CustomLocation::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay \ +static_assert(alignof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay"); \ +static_assert(sizeof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay) == 0x000001, "Wrong size on BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'BP_Audio_TriggerBox_CustomLocation_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript \ +static_assert(alignof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript) == 0x000180, "Wrong size on BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000018, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000030, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_K2_SetRelativeTransform_SweepHitResult) == 0x000090, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_K2_SetRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_Not_PreBool_ReturnValue) == 0x000178, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript, CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast) == 0x00017C, "Member 'BP_Audio_TriggerBox_CustomLocation_C_UserConstructionScript::CallFunc_SetSphereRadius_InSphereRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Audio_TriggerBox_CustomLocation_C \ +static_assert(alignof(ABP_Audio_TriggerBox_CustomLocation_C) == 0x000008, "Wrong alignment on ABP_Audio_TriggerBox_CustomLocation_C"); \ +static_assert(sizeof(ABP_Audio_TriggerBox_CustomLocation_C) == 0x000320, "Wrong size on ABP_Audio_TriggerBox_CustomLocation_C"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, UberGraphFrame) == 0x000298, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, HeraAudio) == 0x0002A0, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Sphere) == 0x0002A8, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Box) == 0x0002B0, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, DefaultSceneRoot) == 0x0002B8, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Audio_Location) == 0x0002C0, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Audio_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, AkAudioEvent) == 0x0002D8, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::AkAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Play_Probability) == 0x0002E0, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Play_Probability' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Box_Extent) == 0x0002E8, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Box_Extent' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Change_to_Sphere) == 0x000300, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Change_to_Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Sphere_Radius) == 0x000308, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Sphere_Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, DrawDebug) == 0x000310, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::DrawDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_CustomLocation_C, Play_delay) == 0x000318, "Member 'ABP_Audio_TriggerBox_CustomLocation_C::Play_delay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ActivateDebugTrail \ +static_assert(alignof(GA_Telekinesis_Throw_C_ActivateDebugTrail) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_ActivateDebugTrail"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ActivateDebugTrail) == 0x000028, "Wrong size on GA_Telekinesis_Throw_C_ActivateDebugTrail"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ActivateDebugTrail, CallFunc_K2_SetTimer_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ActivateDebugTrail::CallFunc_K2_SetTimer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ActivateDebugTrail, CallFunc_GetCenterOfMass_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_ActivateDebugTrail::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ActivateDebugTrail, CallFunc_IsPackagedForDistribution_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_ActivateDebugTrail::CallFunc_IsPackagedForDistribution_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_Add_sphere_collision \ +static_assert(alignof(GA_Telekinesis_Throw_C_Add_sphere_collision) == 0x000010, "Wrong alignment on GA_Telekinesis_Throw_C_Add_sphere_collision"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_Add_sphere_collision) == 0x000090, "Wrong size on GA_Telekinesis_Throw_C_Add_sphere_collision"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Add_sphere_collision, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_Add_sphere_collision::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Add_sphere_collision, CallFunc_GetCenterOfMass_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_Add_sphere_collision::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Add_sphere_collision, CallFunc_MakeTransform_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_Add_sphere_collision::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Add_sphere_collision, CallFunc_AddComponentByClass_ReturnValue) == 0x000080, "Member 'GA_Telekinesis_Throw_C_Add_sphere_collision::CallFunc_AddComponentByClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_AddMasqueradeBreachTags \ +static_assert(alignof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_AddMasqueradeBreachTags"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags) == 0x000030, "Wrong size on GA_Telekinesis_Throw_C_AddMasqueradeBreachTags"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, Temp_byte_Variable) == 0x000000, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000011, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000018, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeBreachTags, CallFunc_GetTargetType_ReturnValue) == 0x000029, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeBreachTags::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags \ +static_assert(alignof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags) == 0x000040, "Wrong size on GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, HitActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_DoesImplementInterface_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, K2Node_DynamicCast_AsCharacter) == 0x000018, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, Temp_byte_Variable) == 0x000021, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_BooleanOR_ReturnValue) == 0x000022, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000023, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_BooleanAND_ReturnValue) == 0x000024, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000028, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, K2Node_DynamicCast_bSuccess_1) == 0x000038, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags, CallFunc_GetTargetType_ReturnValue) == 0x00003A, "Member 'GA_Telekinesis_Throw_C_AddMasqueradeHitBreachTags::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh \ +static_assert(alignof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh) == 0x000060, "Wrong size on GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, HitActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, NormalImpulse) == 0x000008, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, K2Node_DynamicCast_AsCharacter) == 0x000020, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh, CallFunc_NegateVector_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Throw_C_ApplyImpulseToCharacterMesh::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ApplyThrowDamage \ +static_assert(alignof(GA_Telekinesis_Throw_C_ApplyThrowDamage) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_ApplyThrowDamage"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ApplyThrowDamage) == 0x000288, "Wrong size on GA_Telekinesis_Throw_C_ApplyThrowDamage"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, HitActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, OutgoingDamage) == 0x000010, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::OutgoingDamage' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, HumanCharacterTags) == 0x000018, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::HumanCharacterTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, EventData) == 0x000038, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, Temp_bool_Variable) == 0x0000E8, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F0, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_DynamicCast_bSuccess) == 0x000100, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000108, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, Temp_real_Variable) == 0x000110, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_IsValid_ReturnValue) == 0x000114, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000118, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_DynamicCast_bSuccess_1) == 0x000128, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000130, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_GetDataAsset_ReturnValue) == 0x000150, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_GetPlayerPawn_ReturnValue) == 0x000158, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_MakeStruct_GameplayEventData) == 0x000160, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_IsValid_ReturnValue_1) == 0x000210, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000218, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_MakeStruct_ApplyDamageParams) == 0x000220, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, Temp_bool_Variable_1) == 0x000248, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000250, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000270, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_Select_Default) == 0x000274, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000278, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_Select_Option_0_ImplicitCast) == 0x00027C, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ApplyThrowDamage, K2Node_VariableSet_OutgoingDamage_ImplicitCast) == 0x000280, "Member 'GA_Telekinesis_Throw_C_ApplyThrowDamage::K2Node_VariableSet_OutgoingDamage_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_Bind_Hit_Event \ +static_assert(alignof(GA_Telekinesis_Throw_C_Bind_Hit_Event) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_Bind_Hit_Event"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_Bind_Hit_Event) == 0x000020, "Wrong size on GA_Telekinesis_Throw_C_Bind_Hit_Event"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Bind_Hit_Event, ActorToBind) == 0x000000, "Member 'GA_Telekinesis_Throw_C_Bind_Hit_Event::ActorToBind' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Bind_Hit_Event, bBind) == 0x000008, "Member 'GA_Telekinesis_Throw_C_Bind_Hit_Event::bBind' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Bind_Hit_Event, K2Node_CreateDelegate_OutputDelegate) == 0x00000C, "Member 'GA_Telekinesis_Throw_C_Bind_Hit_Event::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Bind_Hit_Event, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'GA_Telekinesis_Throw_C_Bind_Hit_Event::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_DeactivateDebugTrail \ +static_assert(alignof(GA_Telekinesis_Throw_C_DeactivateDebugTrail) == 0x000001, "Wrong alignment on GA_Telekinesis_Throw_C_DeactivateDebugTrail"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_DeactivateDebugTrail) == 0x000001, "Wrong size on GA_Telekinesis_Throw_C_DeactivateDebugTrail"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_DeactivateDebugTrail, CallFunc_IsPackagedForDistribution_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_DeactivateDebugTrail::CallFunc_IsPackagedForDistribution_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_DrawDebugTrail \ +static_assert(alignof(GA_Telekinesis_Throw_C_DrawDebugTrail) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_DrawDebugTrail"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_DrawDebugTrail) == 0x000020, "Wrong size on GA_Telekinesis_Throw_C_DrawDebugTrail"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_DrawDebugTrail, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_DrawDebugTrail::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_DrawDebugTrail, CallFunc_GetCenterOfMass_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_DrawDebugTrail::CallFunc_GetCenterOfMass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw \ +static_assert(alignof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw) == 0x000010, "Wrong alignment on GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw) == 0x001640, "Wrong size on GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, EntryPoint) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_bool_Variable) == 0x000014, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_bool_Variable_1) == 0x000015, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_bool_Variable_2) == 0x000016, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_name_Variable) == 0x000018, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_object_Variable) == 0x000020, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, Temp_byte_Variable) == 0x000048, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_1) == 0x00004C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00005C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ActorTimeDelay_ReturnValue) == 0x000060, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_2) == 0x000068, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_3) == 0x00007C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_4) == 0x00008C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_5) == 0x00009C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x0000B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0000B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_1) == 0x0000D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000D4, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000E4, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000F4, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_9) == 0x000104, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1) == 0x000118, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_10) == 0x000120, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_2) == 0x000130, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ActorTimeDelay_ReturnValue_1) == 0x000138, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ActorTimeDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_11) == 0x000140, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_3) == 0x000150, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ActorTimeDelay_ReturnValue_2) == 0x000158, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ActorTimeDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000160, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_4) == 0x000178, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000180, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_4) == 0x000198, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_12) == 0x0001B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_13) == 0x0001C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_14) == 0x0001D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_15) == 0x0001E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_2) == 0x0001F0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_16) == 0x0001F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_5) == 0x000208, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ActorTimeDelay_ReturnValue_3) == 0x000210, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ActorTimeDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_5) == 0x000218, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_6) == 0x000230, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetMontage_ReturnValue) == 0x000238, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_3) == 0x000240, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_17) == 0x000248, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_7) == 0x000258, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_CommitAbility_ReturnValue) == 0x000259, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000260, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess) == 0x000270, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetThrowableComponent_ReturnValue) == 0x000278, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetThrowableComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_8) == 0x000280, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x000288, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_1) == 0x000298, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsThrowable_ReturnValue) == 0x000299, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsThrowable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x0002A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_2) == 0x0002B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetTargetType_ReturnValue) == 0x0002B1, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_9) == 0x0002B2, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0002B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetRealDeltaTime_ReturnValue) == 0x0002C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_6) == 0x0002C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_7) == 0x0002E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0002F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000310, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x000328, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_FInterpTo_ReturnValue) == 0x000330, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000338, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000340, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000350, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Make_Throw_Velocity) == 0x000358, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Make_Throw_Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000370, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000378, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000380, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_10) == 0x000388, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000390, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetPlayerPawn_ReturnValue) == 0x000398, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetVelocity_ReturnValue) == 0x0003A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_VSize_ReturnValue) == 0x0003B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0003C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3) == 0x0003C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_3) == 0x0003D8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetThrowableType_ReturnValue) == 0x0003D9, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetThrowableType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetValidValue_ReturnValue) == 0x0003DA, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsBP_Throwable_Weapon) == 0x0003E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsBP_Throwable_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_4) == 0x0003E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x0003F0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetSkeletalMeshAsset_ReturnValue_1) == 0x0003F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetSkeletalMeshAsset_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValidClass_ReturnValue) == 0x000400, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValidClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bBlockingHit) == 0x000401, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bInitialOverlap) == 0x000402, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Time) == 0x000404, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Distance) == 0x000408, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Location) == 0x000410, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactPoint) == 0x000428, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Normal) == 0x000440, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactNormal) == 0x000458, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_PhysMat) == 0x000470, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitActor) == 0x000478, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitComponent) == 0x000480, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitBoneName) == 0x000488, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_BoneName) == 0x000490, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitItem) == 0x000498, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ElementIndex) == 0x00049C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_FaceIndex) == 0x0004A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceStart) == 0x0004A8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceEnd) == 0x0004C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bBlockingHit_1) == 0x0004D8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x0004D9, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Time_1) == 0x0004DC, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Distance_1) == 0x0004E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Location_1) == 0x0004E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000500, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Normal_1) == 0x000518, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactNormal_1) == 0x000530, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_PhysMat_1) == 0x000548, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitActor_1) == 0x000550, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitComponent_1) == 0x000558, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitBoneName_1) == 0x000560, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_BoneName_1) == 0x000568, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitItem_1) == 0x000570, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ElementIndex_1) == 0x000574, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_FaceIndex_1) == 0x000578, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceStart_1) == 0x000580, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceEnd_1) == 0x000598, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0005B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_NegateVector_ReturnValue) == 0x0005B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ApplyMovableForceAtLocation_ReturnValue) == 0x0005D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ApplyMovableForceAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0005E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_11) == 0x0005F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_SetActorLocationAndRotation_SweepHitResult) == 0x000600, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_SetActorLocationAndRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_SetActorLocationAndRotation_ReturnValue) == 0x0006E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_SetActorLocationAndRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_DoesImplementInterface_ReturnValue) == 0x0006E9, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0006F0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_5) == 0x0006F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000700, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetClosestPointOnCollision_OutPointOnBody) == 0x000718, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetClosestPointOnCollision_OutPointOnBody' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetClosestPointOnCollision_ReturnValue) == 0x000730, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetClosestPointOnCollision_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000738, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetClosestPointOnPhysicsAsset_ClosestWorldPosition) == 0x000750, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetClosestPointOnPhysicsAsset_ClosestWorldPosition' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetClosestPointOnPhysicsAsset_Normal) == 0x000768, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetClosestPointOnPhysicsAsset_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetClosestPointOnPhysicsAsset_BoneName) == 0x000780, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetClosestPointOnPhysicsAsset_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetClosestPointOnPhysicsAsset_Distance) == 0x000788, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetClosestPointOnPhysicsAsset_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetClosestPointOnPhysicsAsset_ReturnValue) == 0x00078C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetClosestPointOnPhysicsAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakVector_X) == 0x000790, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakVector_Y) == 0x000798, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakVector_Z) == 0x0007A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Add_VectorVector_ReturnValue) == 0x0007A8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0007C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x0007C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0007E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_Select_Default) == 0x0007F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x000810, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_Select_Default_1) == 0x000828, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000830, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_EqualEqual_NameName_ReturnValue) == 0x000838, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetSocketLocation_ReturnValue) == 0x000840, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_VLerp_ReturnValue) == 0x000858, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000870, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_RandomUnitVector_ReturnValue) == 0x000878, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetCameraRotation_ReturnValue) == 0x000890, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetForwardVector_ReturnValue) == 0x0008A8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bBlockingHit_2) == 0x0008C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bBlockingHit_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bInitialOverlap_2) == 0x0008C1, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bInitialOverlap_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Time_2) == 0x0008C4, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Time_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Distance_2) == 0x0008C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Distance_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Location_2) == 0x0008D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Location_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactPoint_2) == 0x0008E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactPoint_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Normal_2) == 0x000900, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Normal_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactNormal_2) == 0x000918, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactNormal_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_PhysMat_2) == 0x000930, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_PhysMat_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitActor_2) == 0x000938, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitActor_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitComponent_2) == 0x000940, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitComponent_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitBoneName_2) == 0x000948, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitBoneName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_BoneName_2) == 0x000950, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_BoneName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitItem_2) == 0x000958, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitItem_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ElementIndex_2) == 0x00095C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ElementIndex_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_FaceIndex_2) == 0x000960, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_FaceIndex_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceStart_2) == 0x000968, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceStart_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceEnd_2) == 0x000980, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceEnd_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_12) == 0x000998, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_13) == 0x000999, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_NegateVector_ReturnValue_1) == 0x0009A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_NegateVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x0009B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ApplyMovableForceAtLocation_ReturnValue_1) == 0x0009C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ApplyMovableForceAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x0009D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_NegateVector_ReturnValue_2) == 0x0009D8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_NegateVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BooleanOR_ReturnValue) == 0x0009F0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_VLerp_ReturnValue_1) == 0x0009F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_VLerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeRotFromZX_ReturnValue) == 0x000A10, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeRotFromZX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeTransform_ReturnValue) == 0x000A30, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_RandomUnitVector_ReturnValue_1) == 0x000A90, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_RandomUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000AA8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_FinishSpawningActor_ReturnValue) == 0x000AB0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000AB8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000AD8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000AE0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_MakeStruct_ApplyDamageParams) == 0x000AE8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bBlockingHit_3) == 0x000B10, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bBlockingHit_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bInitialOverlap_3) == 0x000B11, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bInitialOverlap_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Time_3) == 0x000B14, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Time_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Distance_3) == 0x000B18, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Distance_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Location_3) == 0x000B20, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Location_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactPoint_3) == 0x000B38, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactPoint_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Normal_3) == 0x000B50, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Normal_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactNormal_3) == 0x000B68, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactNormal_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_PhysMat_3) == 0x000B80, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_PhysMat_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitActor_3) == 0x000B88, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitActor_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitComponent_3) == 0x000B90, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitComponent_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitBoneName_3) == 0x000B98, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitBoneName_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_BoneName_3) == 0x000BA0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_BoneName_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitItem_3) == 0x000BA8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitItem_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ElementIndex_3) == 0x000BAC, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ElementIndex_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_FaceIndex_3) == 0x000BB0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_FaceIndex_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceStart_3) == 0x000BB8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceStart_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceEnd_3) == 0x000BD0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceEnd_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000BE8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000C10, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_6) == 0x000C20, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_ApplyDamage_ReturnValue) == 0x000C21, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000C22, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000C23, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetActorUpVector_ReturnValue) == 0x000C28, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetActorUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_8) == 0x000C40, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeRotFromZX_ReturnValue_1) == 0x000C58, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeRotFromZX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x000C70, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeTransform_ReturnValue_1) == 0x000C90, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_AddActorWorldOffset_SweepHitResult) == 0x000CF0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_AddActorWorldOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x000DD8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000DE0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_14) == 0x000DE8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x000DF0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_AttachToComponent_ReturnValue_1) == 0x000DF8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_AttachToComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_MakeArray_Array) == 0x000E00, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_LineTraceSingleForObjects_OutHit) == 0x000E10, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_LineTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_LineTraceSingleForObjects_ReturnValue) == 0x000EF8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_LineTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_18) == 0x000EFC, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bBlockingHit_4) == 0x000F0C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bBlockingHit_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_bInitialOverlap_4) == 0x000F0D, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_bInitialOverlap_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Time_4) == 0x000F10, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Time_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Distance_4) == 0x000F14, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Distance_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Location_4) == 0x000F18, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Location_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactPoint_4) == 0x000F30, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactPoint_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_Normal_4) == 0x000F48, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_Normal_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ImpactNormal_4) == 0x000F60, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ImpactNormal_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_PhysMat_4) == 0x000F78, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_PhysMat_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitActor_4) == 0x000F80, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitActor_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitComponent_4) == 0x000F88, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitComponent_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitBoneName_4) == 0x000F90, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitBoneName_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_BoneName_4) == 0x000F98, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_BoneName_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_HitItem_4) == 0x000FA0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_HitItem_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_ElementIndex_4) == 0x000FA4, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_ElementIndex_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_FaceIndex_4) == 0x000FA8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_FaceIndex_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceStart_4) == 0x000FB0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceStart_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BreakHitResult_TraceEnd_4) == 0x000FC8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BreakHitResult_TraceEnd_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_RandomUnitVector_ReturnValue_2) == 0x000FE0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_RandomUnitVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_RandomFloatInRange_ReturnValue) == 0x000FF8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeRotFromXY_ReturnValue) == 0x001000, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeRotFromXY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MakeVector_ReturnValue) == 0x001018, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x001030, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_Event_bWasCancelled) == 0x001038, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsBenny_ReturnValue) == 0x001039, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsBenny_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_19) == 0x00103C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_Event_EventData) == 0x001050, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CustomEvent_SelfActor) == 0x001100, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CustomEvent_SelfActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CustomEvent_OtherActor) == 0x001108, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CustomEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CustomEvent_NormalImpulse) == 0x001110, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CustomEvent_NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CustomEvent_Hit) == 0x001128, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CustomEvent_Hit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_VSize_ReturnValue_1) == 0x001210, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x001218, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BooleanOR_ReturnValue_1) == 0x001219, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_15) == 0x00121A, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BooleanOR_ReturnValue_2) == 0x00121B, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_BooleanOR_ReturnValue_3) == 0x00121C, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsCharacter) == 0x001220, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_7) == 0x001228, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ThrowStartPoint_ReturnValue) == 0x001230, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ThrowStartPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x001248, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_SetActorLocation_ReturnValue) == 0x001330, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_16) == 0x001331, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x001338, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_20) == 0x001340, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x001350, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x001360, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4) == 0x001368, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_8) == 0x001378, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetThrowableComponent_ReturnValue_1) == 0x001380, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetThrowableComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_5) == 0x001388, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_9) == 0x001398, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_17) == 0x001399, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0013A0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_21) == 0x0013A8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetActorForwardVector_ReturnValue) == 0x0013B8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_4) == 0x0013D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_22) == 0x0013E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Square_ReturnValue) == 0x0013F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Square_ReturnValue_1) == 0x001400, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Square_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x001408, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetPlayerController_ReturnValue) == 0x001410, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x001418, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_ActorTimeDelay_ReturnValue_4) == 0x001430, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_ActorTimeDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x001438, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetCameraRotation_ReturnValue_1) == 0x001440, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetForwardVector_ReturnValue_1) == 0x001458, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_18) == 0x001470, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_5) == 0x001478, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x001490, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x001498, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0014A8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_6) == 0x0014B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_10) == 0x0014C0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetThrowableComponent_ReturnValue_2) == 0x0014C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetThrowableComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_CreateDelegate_OutputDelegate_23) == 0x0014D0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_IsValid_ReturnValue_19) == 0x0014E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetSocketLocation_ReturnValue_1) == 0x0014E8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetSocketLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x001500, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x001508, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_7) == 0x001510, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, K2Node_DynamicCast_bSuccess_11) == 0x001520, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_MapRangeClamped_ReturnValue) == 0x001528, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_9) == 0x001530, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_10) == 0x001548, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x001560, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x001568, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_6) == 0x001580, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Add_VectorVector_ReturnValue_2) == 0x001598, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0015B0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_7) == 0x0015C8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_8) == 0x0015E0, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_9) == 0x0015F8, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Multiply_VectorVector_ReturnValue_10) == 0x001610, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Multiply_VectorVector_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_K2_DamageNonGASActor_EnvironmentDamage_ImplicitCast) == 0x001628, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_K2_DamageNonGASActor_EnvironmentDamage_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x001630, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw, CallFunc_FInterpTo_DeltaTime_ImplicitCast) == 0x001638, "Member 'GA_Telekinesis_Throw_C_ExecuteUbergraph_GA_Telekinesis_Throw::CallFunc_FInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_GetStimulusNoiseRange \ +static_assert(alignof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_GetStimulusNoiseRange"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange) == 0x000048, "Wrong size on GA_Telekinesis_Throw_C_GetStimulusNoiseRange"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, ThrownActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::ThrownActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, OutRange) == 0x000008, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::OutRange' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, StimulusRange) == 0x000010, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::StimulusRange' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000018, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, CallFunc_GetDataAsset_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_GetStimulusNoiseRange, K2Node_FunctionResult_OutRange_ImplicitCast) == 0x000040, "Member 'GA_Telekinesis_Throw_C_GetStimulusNoiseRange::K2Node_FunctionResult_OutRange_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_Hit \ +static_assert(alignof(GA_Telekinesis_Throw_C_Hit) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_Hit"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_Hit) == 0x000110, "Wrong size on GA_Telekinesis_Throw_C_Hit"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Hit, SelfActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_Hit::SelfActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Hit, OtherActor) == 0x000008, "Member 'GA_Telekinesis_Throw_C_Hit::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Hit, NormalImpulse) == 0x000010, "Member 'GA_Telekinesis_Throw_C_Hit::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Hit, Hit_0) == 0x000028, "Member 'GA_Telekinesis_Throw_C_Hit::Hit_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_InitImpulse \ +static_assert(alignof(GA_Telekinesis_Throw_C_InitImpulse) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_InitImpulse"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_InitImpulse) == 0x000028, "Wrong size on GA_Telekinesis_Throw_C_InitImpulse"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_InitImpulse, Actor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_InitImpulse::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1) == 0x000010, "Member 'GA_Telekinesis_Throw_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_2) == 0x000018, "Member 'GA_Telekinesis_Throw_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_InitImpulse, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_InitImpulse::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_IsBenny \ +static_assert(alignof(GA_Telekinesis_Throw_C_IsBenny) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_IsBenny"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_IsBenny) == 0x000028, "Wrong size on GA_Telekinesis_Throw_C_IsBenny"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsBenny, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_IsBenny::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsBenny, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_IsBenny::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsBenny, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Telekinesis_Throw_C_IsBenny::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsBenny, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_IsBenny::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Telekinesis_Throw_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_K2_OnEndAbility \ +static_assert(alignof(GA_Telekinesis_Throw_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Telekinesis_Throw_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Telekinesis_Throw_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Telekinesis_Throw_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_Make_Throw \ +static_assert(alignof(GA_Telekinesis_Throw_C_Make_Throw) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_Make_Throw"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_Make_Throw) == 0x0003C8, "Wrong size on GA_Telekinesis_Throw_C_Make_Throw"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, Velocity) == 0x000000, "Member 'GA_Telekinesis_Throw_C_Make_Throw::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, Endloc) == 0x000018, "Member 'GA_Telekinesis_Throw_C_Make_Throw::Endloc' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_IsBenny_ReturnValue) == 0x000048, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_IsBenny_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_IsBenny_ReturnValue_1) == 0x000049, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_IsBenny_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, Temp_bool_Variable) == 0x00004A, "Member 'GA_Telekinesis_Throw_C_Make_Throw::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000050, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetCameraRotation_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000070, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetForwardVector_ReturnValue) == 0x000088, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000A0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000B8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Add_VectorVector_ReturnValue) == 0x0000C0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, K2Node_MakeArray_Array) == 0x0000D8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, Temp_real_Variable) == 0x0000E8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_ThrowStartPoint_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_ThrowStartPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, Temp_bool_Variable_1) == 0x000108, "Member 'GA_Telekinesis_Throw_C_Make_Throw::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000110, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetCameraLocation_ReturnValue) == 0x000118, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, K2Node_Select_Default) == 0x000130, "Member 'GA_Telekinesis_Throw_C_Make_Throw::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetCameraRotation_ReturnValue_1) == 0x000138, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity) == 0x000150, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue) == 0x000168, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetForwardVector_ReturnValue_1) == 0x000170, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_GetRightVector_ReturnValue) == 0x000188, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_RotateAngleAxis_ReturnValue) == 0x0001A0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_RotateAngleAxis_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, K2Node_Select_Default_1) == 0x0001B8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x0001D0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_LineTraceSingle_OutHit) == 0x000200, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_LineTraceSingle_ReturnValue) == 0x0002E8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_bBlockingHit) == 0x0002E9, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_bInitialOverlap) == 0x0002EA, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_Time) == 0x0002EC, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_Distance) == 0x0002F0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_Location) == 0x0002F8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_ImpactPoint) == 0x000310, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_Normal) == 0x000328, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_ImpactNormal) == 0x000340, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_PhysMat) == 0x000358, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_HitActor) == 0x000360, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_HitComponent) == 0x000368, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_HitBoneName) == 0x000370, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_BoneName) == 0x000378, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_HitItem) == 0x000380, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_ElementIndex) == 0x000384, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_FaceIndex) == 0x000388, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_TraceStart) == 0x000390, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_BreakHitResult_TraceEnd) == 0x0003A8, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Make_Throw, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0003C0, "Member 'GA_Telekinesis_Throw_C_Make_Throw::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_PlayThrowGameplayCue \ +static_assert(alignof(GA_Telekinesis_Throw_C_PlayThrowGameplayCue) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_PlayThrowGameplayCue"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_PlayThrowGameplayCue) == 0x0000E0, "Wrong size on GA_Telekinesis_Throw_C_PlayThrowGameplayCue"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_PlayThrowGameplayCue, GameplayCueTag) == 0x000000, "Member 'GA_Telekinesis_Throw_C_PlayThrowGameplayCue::GameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_PlayThrowGameplayCue, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_PlayThrowGameplayCue::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_SpawnHitCue \ +static_assert(alignof(GA_Telekinesis_Throw_C_SpawnHitCue) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_SpawnHitCue"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_SpawnHitCue) == 0x0001F0, "Wrong size on GA_Telekinesis_Throw_C_SpawnHitCue"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, HitResult) == 0x000000, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::HitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, ObjectType) == 0x0000E8, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::ObjectType' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, Causer) == 0x0000F0, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::Causer' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0000F8, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000100, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x0001D8, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x0001E0, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_SpawnHitCue, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1) == 0x0001E8, "Member 'GA_Telekinesis_Throw_C_SpawnHitCue::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_StimulusOnHit \ +static_assert(alignof(GA_Telekinesis_Throw_C_StimulusOnHit) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_StimulusOnHit"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_StimulusOnHit) == 0x000050, "Wrong size on GA_Telekinesis_Throw_C_StimulusOnHit"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, ThrownActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::ThrownActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, Thrown) == 0x000008, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::Thrown' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_GetStimulusNoiseRange_OutRange) == 0x000018, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_GetStimulusNoiseRange_OutRange' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000028, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast) == 0x000048, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_WrestlerReportNoiseEvent_InMaxRange_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_StimulusOnHit, CallFunc_ReportMassNoiseEvent_InRadius_ImplicitCast) == 0x00004C, "Member 'GA_Telekinesis_Throw_C_StimulusOnHit::CallFunc_ReportMassNoiseEvent_InRadius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_Throw \ +static_assert(alignof(GA_Telekinesis_Throw_C_Throw) == 0x000010, "Wrong alignment on GA_Telekinesis_Throw_C_Throw"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_Throw) == 0x000820, "Wrong size on GA_Telekinesis_Throw_C_Throw"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, PhysicsActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_Throw::PhysicsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Projectile_component) == 0x000008, "Member 'GA_Telekinesis_Throw_C_Throw::Projectile_component' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, AimAssistSuccess) == 0x000010, "Member 'GA_Telekinesis_Throw_C_Throw::AimAssistSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, ThrowDirection) == 0x000018, "Member 'GA_Telekinesis_Throw_C_Throw::ThrowDirection' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, ThrowOrigin) == 0x000030, "Member 'GA_Telekinesis_Throw_C_Throw::ThrowOrigin' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable) == 0x000048, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_real_Variable) == 0x00004C, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_real_Variable_1) == 0x000050, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000058, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetPlayerPawn_ReturnValue) == 0x000060, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000068, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_MakeArray_Array) == 0x000080, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default) == 0x000090, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000098, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetSocketTransform_ReturnValue) == 0x0000B0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakTransform_Location) == 0x000110, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakTransform_Rotation) == 0x000128, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakTransform_Scale) == 0x000140, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000158, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_bSuccess) == 0x000168, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000170, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetPointAxis_ReturnValue) == 0x000178, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetPointAxis_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetCameraRotation_ReturnValue) == 0x0001A8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetForwardVector_ReturnValue) == 0x0001C0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromZ_ReturnValue) == 0x0001D8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromZ_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x0001F0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromY_ReturnValue) == 0x000208, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromY_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakVector_X) == 0x000220, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakVector_Y) == 0x000228, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakVector_Z) == 0x000230, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromX_ReturnValue) == 0x000238, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000250, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000251, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000252, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000253, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000254, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_NegateVector_ReturnValue) == 0x000258, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable_1) == 0x000270, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromZ_ReturnValue_1) == 0x000278, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromZ_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromY_ReturnValue_1) == 0x000290, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromY_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeRotFromX_ReturnValue_1) == 0x0002A8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeRotFromX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable_2) == 0x0002C0, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable_3) == 0x0002C1, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1) == 0x0002C8, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_bSuccess_1) == 0x0002D8, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_IsPointed_ReturnValue) == 0x0002D9, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_IsPointed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable_4) == 0x0002DA, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x0002E0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetCameraLocation_ReturnValue) == 0x0002E8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetCameraRotation_ReturnValue_1) == 0x000300, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetCameraRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_ThrowStartPoint_ReturnValue) == 0x000318, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_ThrowStartPoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetForwardVector_ReturnValue_1) == 0x000330, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000348, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2) == 0x000360, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_bSuccess_2) == 0x000370, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Add_VectorVector_ReturnValue) == 0x000378, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_IsPointed_ReturnValue_1) == 0x000390, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_IsPointed_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_LineTraceSingle_OutHit) == 0x000398, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_LineTraceSingle_ReturnValue) == 0x000480, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_bBlockingHit) == 0x000481, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_bInitialOverlap) == 0x000482, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_Time) == 0x000484, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_Distance) == 0x000488, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_Location) == 0x000490, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_ImpactPoint) == 0x0004A8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_Normal) == 0x0004C0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_ImpactNormal) == 0x0004D8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_PhysMat) == 0x0004F0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_HitActor) == 0x0004F8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_HitComponent) == 0x000500, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_HitBoneName) == 0x000508, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_BoneName) == 0x000510, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_HitItem) == 0x000518, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_ElementIndex) == 0x00051C, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_FaceIndex) == 0x000520, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_TraceStart) == 0x000528, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_BreakHitResult_TraceEnd) == 0x000540, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x000558, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000640, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_K2_SetActorLocation_SweepHitResult_1) == 0x000648, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_K2_SetActorLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_K2_SetActorLocation_ReturnValue_1) == 0x000730, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_K2_SetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, Temp_bool_Variable_5) == 0x000731, "Member 'GA_Telekinesis_Throw_C_Throw::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3) == 0x000738, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_DynamicCast_bSuccess_3) == 0x000748, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default_1) == 0x000750, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default_2) == 0x000768, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_GetComponentByClass_ReturnValue) == 0x000780, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default_3) == 0x000788, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default_4) == 0x0007A0, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_IsValid_ReturnValue) == 0x0007B8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, K2Node_Select_Default_5) == 0x0007C0, "Member 'GA_Telekinesis_Throw_C_Throw::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0007D8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_RandomFloatInRange_ReturnValue) == 0x0007E0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0007E8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x0007F0, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_MakeVector_ReturnValue) == 0x0007F8, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_Throw, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000810, "Member 'GA_Telekinesis_Throw_C_Throw::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ThrowStartPoint \ +static_assert(alignof(GA_Telekinesis_Throw_C_ThrowStartPoint) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_ThrowStartPoint"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ThrowStartPoint) == 0x0001A8, "Wrong size on GA_Telekinesis_Throw_C_ThrowStartPoint"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, ReturnValue) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_real_Variable) == 0x000018, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_bool_Variable) == 0x00001C, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_real_Variable_1) == 0x000020, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_real_Variable_2) == 0x000024, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_IsBenny_ReturnValue) == 0x000040, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_IsBenny_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_IsBenny_ReturnValue_1) == 0x000041, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_IsBenny_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_real_Variable_3) == 0x000044, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, K2Node_Select_Default) == 0x000048, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, Temp_bool_Variable_1) == 0x00004C, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000050, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000068, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, K2Node_Select_Default_1) == 0x000070, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetCameraLocation_ReturnValue) == 0x000078, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000090, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetCameraRotation_ReturnValue) == 0x0000A8, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetForwardVector_ReturnValue) == 0x0000C0, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetUpVector_ReturnValue) == 0x0000D8, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000F0, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000108, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Add_VectorVector_ReturnValue) == 0x000120, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_GetRightVector_ReturnValue) == 0x000138, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_GetRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000150, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000168, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000180, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000198, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ThrowStartPoint, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1) == 0x0001A0, "Member 'GA_Telekinesis_Throw_C_ThrowStartPoint::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_TogglePlayerPhys \ +static_assert(alignof(GA_Telekinesis_Throw_C_TogglePlayerPhys) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_TogglePlayerPhys"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_TogglePlayerPhys) == 0x000038, "Wrong size on GA_Telekinesis_Throw_C_TogglePlayerPhys"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, Disable) == 0x000000, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::Disable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, Temp_byte_Variable) == 0x000001, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, Temp_byte_Variable_1) == 0x000002, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, Temp_bool_Variable) == 0x000010, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, CallFunc_GetComponentsByTag_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::CallFunc_GetComponentsByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, CallFunc_Array_Get_Item) == 0x000028, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, K2Node_Select_Default) == 0x000030, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TogglePlayerPhys, CallFunc_IsValid_ReturnValue) == 0x000031, "Member 'GA_Telekinesis_Throw_C_TogglePlayerPhys::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_TriggerStunOnTarget \ +static_assert(alignof(GA_Telekinesis_Throw_C_TriggerStunOnTarget) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_TriggerStunOnTarget"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_TriggerStunOnTarget) == 0x0000C0, "Wrong size on GA_Telekinesis_Throw_C_TriggerStunOnTarget"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TriggerStunOnTarget, HitActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_TriggerStunOnTarget::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TriggerStunOnTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_TriggerStunOnTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TriggerStunOnTarget, K2Node_MakeStruct_GameplayEventData) == 0x000010, "Member 'GA_Telekinesis_Throw_C_TriggerStunOnTarget::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_TryApplyThrowDamage \ +static_assert(alignof(GA_Telekinesis_Throw_C_TryApplyThrowDamage) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_TryApplyThrowDamage"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_TryApplyThrowDamage) == 0x000028, "Wrong size on GA_Telekinesis_Throw_C_TryApplyThrowDamage"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TryApplyThrowDamage, HitActor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_TryApplyThrowDamage::HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TryApplyThrowDamage, NormalImpulse) == 0x000008, "Member 'GA_Telekinesis_Throw_C_TryApplyThrowDamage::NormalImpulse' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TryApplyThrowDamage, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Telekinesis_Throw_C_TryApplyThrowDamage::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_TryApplyThrowDamage, CallFunc_ApplyThrowDamage_ReturnValue) == 0x000021, "Member 'GA_Telekinesis_Throw_C_TryApplyThrowDamage::CallFunc_ApplyThrowDamage_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_ExceedsMinSpeed \ +static_assert(alignof(GA_Telekinesis_Throw_C_ExceedsMinSpeed) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_ExceedsMinSpeed"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_ExceedsMinSpeed) == 0x000040, "Wrong size on GA_Telekinesis_Throw_C_ExceedsMinSpeed"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, Actor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, CallFunc_GetVelocity_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, CallFunc_Square_ReturnValue) == 0x000028, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, CallFunc_VSizeSquared_ReturnValue) == 0x000030, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_ExceedsMinSpeed, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000038, "Member 'GA_Telekinesis_Throw_C_ExceedsMinSpeed::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_IsActorDead \ +static_assert(alignof(GA_Telekinesis_Throw_C_IsActorDead) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_IsActorDead"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_IsActorDead) == 0x000020, "Wrong size on GA_Telekinesis_Throw_C_IsActorDead"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, Actor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_IsActorDead::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_IsActorDead::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000009, "Member 'GA_Telekinesis_Throw_C_IsActorDead::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, CallFunc_GetFloatAttribute_ReturnValue) == 0x00000C, "Member 'GA_Telekinesis_Throw_C_IsActorDead::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Throw_C_IsActorDead::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsActorDead, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000018, "Member 'GA_Telekinesis_Throw_C_IsActorDead::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Telekinesis_Throw_C_IsAvatarActor \ +static_assert(alignof(GA_Telekinesis_Throw_C_IsAvatarActor) == 0x000008, "Wrong alignment on GA_Telekinesis_Throw_C_IsAvatarActor"); \ +static_assert(sizeof(GA_Telekinesis_Throw_C_IsAvatarActor) == 0x000020, "Wrong size on GA_Telekinesis_Throw_C_IsAvatarActor"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsAvatarActor, Actor) == 0x000000, "Member 'GA_Telekinesis_Throw_C_IsAvatarActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsAvatarActor, ReturnValue) == 0x000008, "Member 'GA_Telekinesis_Throw_C_IsAvatarActor::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsAvatarActor, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_Telekinesis_Throw_C_IsAvatarActor::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Telekinesis_Throw_C_IsAvatarActor, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000018, "Member 'GA_Telekinesis_Throw_C_IsAvatarActor::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Telekinesis_Throw_C \ +static_assert(alignof(UGA_Telekinesis_Throw_C) == 0x000008, "Wrong alignment on UGA_Telekinesis_Throw_C"); \ +static_assert(sizeof(UGA_Telekinesis_Throw_C) == 0x000878, "Wrong size on UGA_Telekinesis_Throw_C"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, UberGraphFrame) == 0x000668, "Member 'UGA_Telekinesis_Throw_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, ActorToThrow) == 0x000670, "Member 'UGA_Telekinesis_Throw_C::ActorToThrow' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, ThrownComponent) == 0x000678, "Member 'UGA_Telekinesis_Throw_C::ThrownComponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, ThrowGameplayCueTag) == 0x000680, "Member 'UGA_Telekinesis_Throw_C::ThrowGameplayCueTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, HitImpulseMultiplier) == 0x000688, "Member 'UGA_Telekinesis_Throw_C::HitImpulseMultiplier' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, MinDamageSpeed) == 0x000690, "Member 'UGA_Telekinesis_Throw_C::MinDamageSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, ImpactThreshold) == 0x000698, "Member 'UGA_Telekinesis_Throw_C::ImpactThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, PushBack) == 0x0006A0, "Member 'UGA_Telekinesis_Throw_C::PushBack' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, MovementDuration) == 0x0006A8, "Member 'UGA_Telekinesis_Throw_C::MovementDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, EnvironmentDamage) == 0x0006B0, "Member 'UGA_Telekinesis_Throw_C::EnvironmentDamage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, EnvironmentDamageClass) == 0x0006B8, "Member 'UGA_Telekinesis_Throw_C::EnvironmentDamageClass' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, TelekinesisCooldownEffect) == 0x0006C0, "Member 'UGA_Telekinesis_Throw_C::TelekinesisCooldownEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, AngularVel_Max) == 0x0006C8, "Member 'UGA_Telekinesis_Throw_C::AngularVel_Max' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, AngularVel_Min) == 0x0006D0, "Member 'UGA_Telekinesis_Throw_C::AngularVel_Min' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Throw_velocity) == 0x0006D8, "Member 'UGA_Telekinesis_Throw_C::Throw_velocity' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, DebugTrailTask) == 0x0006F0, "Member 'UGA_Telekinesis_Throw_C::DebugTrailTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, DebugTrailLastLocation) == 0x0006F8, "Member 'UGA_Telekinesis_Throw_C::DebugTrailLastLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Projectile_radius) == 0x000710, "Member 'UGA_Telekinesis_Throw_C::Projectile_radius' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, wake_projectile_task) == 0x000718, "Member 'UGA_Telekinesis_Throw_C::wake_projectile_task' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Tag_Container) == 0x000720, "Member 'UGA_Telekinesis_Throw_C::Tag_Container' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, bound_actor) == 0x000740, "Member 'UGA_Telekinesis_Throw_C::bound_actor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, BoostAlpha) == 0x000748, "Member 'UGA_Telekinesis_Throw_C::BoostAlpha' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Launch_Speed) == 0x000750, "Member 'UGA_Telekinesis_Throw_C::Launch_Speed' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, AddedMasqueradeBreachTags) == 0x000758, "Member 'UGA_Telekinesis_Throw_C::AddedMasqueradeBreachTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, EarlyThrow) == 0x000778, "Member 'UGA_Telekinesis_Throw_C::EarlyThrow' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Closehit) == 0x000779, "Member 'UGA_Telekinesis_Throw_C::Closehit' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, HittingActor) == 0x000780, "Member 'UGA_Telekinesis_Throw_C::HittingActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, CurrentHit) == 0x000788, "Member 'UGA_Telekinesis_Throw_C::CurrentHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Embedding) == 0x000870, "Member 'UGA_Telekinesis_Throw_C::Embedding' has a wrong offset!"); \ +static_assert(offsetof(UGA_Telekinesis_Throw_C, Preframe) == 0x000871, "Member 'UGA_Telekinesis_Throw_C::Preframe' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_MidLong__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData, __NameProperty_13) == 0x000004, "Member 'ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData::__NameProperty_13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData, __NameProperty_14) == 0x00000C, "Member 'ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData::__NameProperty_14' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData, __StructProperty_15) == 0x000018, "Member 'ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData::__StructProperty_15' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Phyre_Hair_MidLong::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_MidLong_C_AnimGraph \ +static_assert(alignof(ABP_Phyre_Hair_MidLong_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_MidLong_C_AnimGraph"); \ +static_assert(sizeof(ABP_Phyre_Hair_MidLong_C_AnimGraph) == 0x000010, "Wrong size on ABP_Phyre_Hair_MidLong_C_AnimGraph"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'ABP_Phyre_Hair_MidLong_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong \ +static_assert(alignof(ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong) == 0x000004, "Wrong alignment on ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong"); \ +static_assert(sizeof(ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong) == 0x000004, "Wrong size on ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong"); \ +static_assert(offsetof(ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong, EntryPoint) == 0x000000, "Member 'ABP_Phyre_Hair_MidLong_C_ExecuteUbergraph_ABP_Phyre_Hair_MidLong::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Phyre_Hair_MidLong_C \ +static_assert(alignof(UABP_Phyre_Hair_MidLong_C) == 0x000010, "Wrong alignment on UABP_Phyre_Hair_MidLong_C"); \ +static_assert(sizeof(UABP_Phyre_Hair_MidLong_C) == 0x000E70, "Wrong size on UABP_Phyre_Hair_MidLong_C"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, UberGraphFrame) == 0x000350, "Member 'UABP_Phyre_Hair_MidLong_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Phyre_Hair_MidLong_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Phyre_Hair_MidLong_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Phyre_Hair_MidLong_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimGraphNode_CopyPoseFromMesh) == 0x000388, "Member 'UABP_Phyre_Hair_MidLong_C::AnimGraphNode_CopyPoseFromMesh' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimGraphNode_RigidBody) == 0x0004E0, "Member 'UABP_Phyre_Hair_MidLong_C::AnimGraphNode_RigidBody' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimGraphNode_LocalToComponentSpace) == 0x000E30, "Member 'UABP_Phyre_Hair_MidLong_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_MidLong_C, AnimGraphNode_ComponentToLocalSpace) == 0x000E50, "Member 'UABP_Phyre_Hair_MidLong_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel \ +static_assert(alignof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel) == 0x000008, "Wrong alignment on GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel"); \ +static_assert(sizeof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel) == 0x0000A8, "Wrong size on GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, EntryPoint) == 0x000000, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, K2Node_CustomEvent_WaitingTime) == 0x000014, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, Temp_real_Variable) == 0x000018, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000020, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, K2Node_CreateDelegate_OutputDelegate_1) == 0x00002C, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_WaitRealDelay_ReturnValue) == 0x000040, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, K2Node_CreateDelegate_OutputDelegate_2) == 0x000048, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_IsValid_ReturnValue_1) == 0x000058, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000060, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, K2Node_Event_bWasCancelled) == 0x000068, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_IsValid_ReturnValue_2) == 0x000069, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000070, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000078, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000080, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000090, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000094, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x00009C, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel, CallFunc_HasTag_ReturnValue) == 0x0000A4, "Member 'GA_TR_BloodsalvoCancel_C_ExecuteUbergraph_GA_TR_BloodsalvoCancel::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TR_BloodsalvoCancel_C_K2_OnEndAbility \ +static_assert(alignof(GA_TR_BloodsalvoCancel_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_TR_BloodsalvoCancel_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_TR_BloodsalvoCancel_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_TR_BloodsalvoCancel_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_TR_BloodsalvoCancel_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1 \ +static_assert(alignof(GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1) == 0x000004, "Wrong alignment on GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1"); \ +static_assert(sizeof(GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1) == 0x000004, "Wrong size on GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1, WaitingTime) == 0x000000, "Member 'GA_TR_BloodsalvoCancel_C_OnControlCueProcess_51A354654ABD806E3E2787BC1F2AEDD1::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility \ +static_assert(alignof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility) == 0x000090, "Wrong size on GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000074, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000080, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility, CallFunc_HasTag_ReturnValue) == 0x000088, "Member 'GA_TR_BloodsalvoCancel_C_K2_CanActivateAbility::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_TR_BloodsalvoCancel_C \ +static_assert(alignof(UGA_TR_BloodsalvoCancel_C) == 0x000008, "Wrong alignment on UGA_TR_BloodsalvoCancel_C"); \ +static_assert(sizeof(UGA_TR_BloodsalvoCancel_C) == 0x000678, "Wrong size on UGA_TR_BloodsalvoCancel_C"); \ +static_assert(offsetof(UGA_TR_BloodsalvoCancel_C, UberGraphFrame) == 0x000668, "Member 'UGA_TR_BloodsalvoCancel_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_TR_BloodsalvoCancel_C, BlockEffect) == 0x000670, "Member 'UGA_TR_BloodsalvoCancel_C::BlockEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_VVInputPulse_C_BlueprintModifyCamera \ +static_assert(alignof(CM_VVInputPulse_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_VVInputPulse_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_VVInputPulse_C_BlueprintModifyCamera) == 0x000080, "Wrong size on CM_VVInputPulse_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000074, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_VVInputPulse_C_BlueprintModifyCamera, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x000078, "Member 'CM_VVInputPulse_C_BlueprintModifyCamera::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_VVInputPulse_C \ +static_assert(alignof(UCM_VVInputPulse_C) == 0x000010, "Wrong alignment on UCM_VVInputPulse_C"); \ +static_assert(sizeof(UCM_VVInputPulse_C) == 0x000780, "Wrong size on UCM_VVInputPulse_C"); \ +static_assert(offsetof(UCM_VVInputPulse_C, Curve) == 0x000778, "Member 'UCM_VVInputPulse_C::Curve' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse \ +static_assert(alignof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse) == 0x000008, "Wrong alignment on BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse"); \ +static_assert(sizeof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse) == 0x000070, "Wrong size on BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, EntryPoint) == 0x000000, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, K2Node_Event_DeltaSeconds) == 0x000004, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_GetMagnitude_ReturnValue) == 0x000008, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_GetMagnitude_ReturnValue_1) == 0x000018, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000020, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Lerp_ReturnValue) == 0x000040, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000048, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, K2Node_VariableSet_PulseDuration_ImplicitCast) == 0x000058, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::K2Node_VariableSet_PulseDuration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, K2Node_VariableSet_CircleMaximumRadius_ImplicitCast) == 0x000060, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::K2Node_VariableSet_CircleMaximumRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse, CallFunc_SetLifeSpan_InLifespan_ImplicitCast) == 0x000068, "Member 'BP_VampireVisionPulse_C_ExecuteUbergraph_BP_VampireVisionPulse::CallFunc_SetLifeSpan_InLifespan_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VampireVisionPulse_C_ReceiveTick \ +static_assert(alignof(BP_VampireVisionPulse_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_VampireVisionPulse_C_ReceiveTick"); \ +static_assert(sizeof(BP_VampireVisionPulse_C_ReceiveTick) == 0x000004, "Wrong size on BP_VampireVisionPulse_C_ReceiveTick"); \ +static_assert(offsetof(BP_VampireVisionPulse_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_VampireVisionPulse_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_VampireVisionPulse_C \ +static_assert(alignof(ABP_VampireVisionPulse_C) == 0x000008, "Wrong alignment on ABP_VampireVisionPulse_C"); \ +static_assert(sizeof(ABP_VampireVisionPulse_C) == 0x0002E0, "Wrong size on ABP_VampireVisionPulse_C"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, UberGraphFrame) == 0x000298, "Member 'ABP_VampireVisionPulse_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, Plane) == 0x0002A0, "Member 'ABP_VampireVisionPulse_C::Plane' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_VampireVisionPulse_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, CircleMaximumRadius) == 0x0002B0, "Member 'ABP_VampireVisionPulse_C::CircleMaximumRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, TimeToReachEndLocation) == 0x0002B8, "Member 'ABP_VampireVisionPulse_C::TimeToReachEndLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, VampiricVisionConfig) == 0x0002C0, "Member 'ABP_VampireVisionPulse_C::VampiricVisionConfig' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, PulseDuration) == 0x0002C8, "Member 'ABP_VampireVisionPulse_C::PulseDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, CurrentRadius) == 0x0002D0, "Member 'ABP_VampireVisionPulse_C::CurrentRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_VampireVisionPulse_C, Time) == 0x0002D8, "Member 'ABP_VampireVisionPulse_C::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_Release_C \ +static_assert(alignof(AGC_Telekinesis_Release_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_Release_C"); \ +static_assert(sizeof(AGC_Telekinesis_Release_C) == 0x000310, "Wrong size on AGC_Telekinesis_Release_C"); \ +static_assert(offsetof(AGC_Telekinesis_Release_C, DefaultSceneRoot) == 0x000308, "Member 'AGC_Telekinesis_Release_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'Trigger_Obj_Bool_Pawns_C_BndEvt__Trigger_Obj_Bool_Pawns_CollisionComponent_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns \ +static_assert(alignof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns) == 0x000008, "Wrong alignment on Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns"); \ +static_assert(sizeof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns) == 0x000158, "Wrong size on Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, EntryPoint) == 0x000000, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, Temp_int_Variable) == 0x000004, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000008, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_Subtract_IntInt_ReturnValue) == 0x00000C, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OverlappedComponent_1) == 0x000010, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000018, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000020, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherBodyIndex_1) == 0x000028, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_bFromSweep) == 0x00002C, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_SweepResult) == 0x000030, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_GetComponentByClass_ReturnValue) == 0x000118, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000120, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherActor) == 0x000128, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherComp) == 0x000130, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000138, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_IsValid_ReturnValue) == 0x00013C, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000140, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_IsValid_ReturnValue_1) == 0x000148, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, Temp_int_Variable_1) == 0x00014C, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns, CallFunc_Add_IntInt_ReturnValue) == 0x000150, "Member 'Trigger_Obj_Bool_Pawns_C_ExecuteUbergraph_Trigger_Obj_Bool_Pawns::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATrigger_Obj_Bool_Pawns_C \ +static_assert(alignof(ATrigger_Obj_Bool_Pawns_C) == 0x000008, "Wrong alignment on ATrigger_Obj_Bool_Pawns_C"); \ +static_assert(sizeof(ATrigger_Obj_Bool_Pawns_C) == 0x000320, "Wrong size on ATrigger_Obj_Bool_Pawns_C"); \ +static_assert(offsetof(ATrigger_Obj_Bool_Pawns_C, UberGraphFrame_Trigger_Obj_Bool_Pawns_C) == 0x000310, "Member 'ATrigger_Obj_Bool_Pawns_C::UberGraphFrame_Trigger_Obj_Bool_Pawns_C' has a wrong offset!"); \ +static_assert(offsetof(ATrigger_Obj_Bool_Pawns_C, Pawns_in_Volume) == 0x000318, "Member 'ATrigger_Obj_Bool_Pawns_C::Pawns_in_Volume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_VVPulse_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_VVPulse_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_VVPulse_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_VVPulse_C_BlueprintModifyPostProcess) == 0x000E30, "Wrong size on CM_VVPulse_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000E00, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_GetFloatValue_ReturnValue) == 0x000E08, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000E0C, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000E10, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000E18, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, K2Node_VariableSet_Delta_Time_ImplicitCast) == 0x000E20, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::K2Node_VariableSet_Delta_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_VVPulse_C_BlueprintModifyPostProcess, CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast) == 0x000E28, "Member 'CM_VVPulse_C_BlueprintModifyPostProcess::CallFunc_NearlyEqual_FloatFloat_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse \ +static_assert(alignof(CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse) == 0x000004, "Wrong alignment on CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse"); \ +static_assert(sizeof(CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse) == 0x000004, "Wrong size on CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse"); \ +static_assert(offsetof(CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse, EntryPoint) == 0x000000, "Member 'CM_VVPulse_C_ExecuteUbergraph_CM_VVPulse::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_VVPulse_C \ +static_assert(alignof(UCM_VVPulse_C) == 0x000010, "Wrong alignment on UCM_VVPulse_C"); \ +static_assert(sizeof(UCM_VVPulse_C) == 0x0007A0, "Wrong size on UCM_VVPulse_C"); \ +static_assert(offsetof(UCM_VVPulse_C, UberGraphFrame) == 0x000778, "Member 'UCM_VVPulse_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_VVPulse_C, FadeOutTime) == 0x000780, "Member 'UCM_VVPulse_C::FadeOutTime' has a wrong offset!"); \ +static_assert(offsetof(UCM_VVPulse_C, Fade) == 0x000788, "Member 'UCM_VVPulse_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UCM_VVPulse_C, FadeCurve) == 0x000790, "Member 'UCM_VVPulse_C::FadeCurve' has a wrong offset!"); \ +static_assert(offsetof(UCM_VVPulse_C, Delta_Time) == 0x000798, "Member 'UCM_VVPulse_C::Delta_Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_AngryOnPhone_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_AngryOnPhone_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_AngryOnPhone_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_AngryOnPhone_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_AngryOnPhone_C"); \ + +#define DUMPER7_ASSERTS_CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP \ +static_assert(alignof(CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP) == 0x000004, "Wrong alignment on CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP"); \ +static_assert(sizeof(CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP) == 0x000004, "Wrong size on CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP"); \ +static_assert(offsetof(CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP, EntryPoint) == 0x000000, "Member 'CM_HS_Characters_PP_C_ExecuteUbergraph_CM_HS_Characters_PP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_HS_Characters_PP_C_GetBlendWeight \ +static_assert(alignof(CM_HS_Characters_PP_C_GetBlendWeight) == 0x000008, "Wrong alignment on CM_HS_Characters_PP_C_GetBlendWeight"); \ +static_assert(sizeof(CM_HS_Characters_PP_C_GetBlendWeight) == 0x000008, "Wrong size on CM_HS_Characters_PP_C_GetBlendWeight"); \ +static_assert(offsetof(CM_HS_Characters_PP_C_GetBlendWeight, ReturnValue) == 0x000000, "Member 'CM_HS_Characters_PP_C_GetBlendWeight::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_HS_Characters_PP_C \ +static_assert(alignof(UCM_HS_Characters_PP_C) == 0x000010, "Wrong alignment on UCM_HS_Characters_PP_C"); \ +static_assert(sizeof(UCM_HS_Characters_PP_C) == 0x000790, "Wrong size on UCM_HS_Characters_PP_C"); \ +static_assert(offsetof(UCM_HS_Characters_PP_C, UberGraphFrame) == 0x000778, "Member 'UCM_HS_Characters_PP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_HS_Characters_PP_C, Fade) == 0x000780, "Member 'UCM_HS_Characters_PP_C::Fade' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SettingsTab_C_OnConfirmationHandled \ +static_assert(alignof(SettingsTab_C_OnConfirmationHandled) == 0x000001, "Wrong alignment on SettingsTab_C_OnConfirmationHandled"); \ +static_assert(sizeof(SettingsTab_C_OnConfirmationHandled) == 0x000001, "Wrong size on SettingsTab_C_OnConfirmationHandled"); \ +static_assert(offsetof(SettingsTab_C_OnConfirmationHandled, bConfirm) == 0x000000, "Member 'SettingsTab_C_OnConfirmationHandled::bConfirm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SettingsTab_C_ExecuteUbergraph_SettingsTab \ +static_assert(alignof(SettingsTab_C_ExecuteUbergraph_SettingsTab) == 0x000004, "Wrong alignment on SettingsTab_C_ExecuteUbergraph_SettingsTab"); \ +static_assert(sizeof(SettingsTab_C_ExecuteUbergraph_SettingsTab) == 0x000020, "Wrong size on SettingsTab_C_ExecuteUbergraph_SettingsTab"); \ +static_assert(offsetof(SettingsTab_C_ExecuteUbergraph_SettingsTab, EntryPoint) == 0x000000, "Member 'SettingsTab_C_ExecuteUbergraph_SettingsTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SettingsTab_C_ExecuteUbergraph_SettingsTab, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'SettingsTab_C_ExecuteUbergraph_SettingsTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(SettingsTab_C_ExecuteUbergraph_SettingsTab, CallFunc_GetSettingCollectionName_ReturnValue) == 0x000014, "Member 'SettingsTab_C_ExecuteUbergraph_SettingsTab::CallFunc_GetSettingCollectionName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SettingsTab_C_ExecuteUbergraph_SettingsTab, K2Node_SwitchName_CmpSuccess) == 0x00001C, "Member 'SettingsTab_C_ExecuteUbergraph_SettingsTab::K2Node_SwitchName_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(SettingsTab_C_ExecuteUbergraph_SettingsTab, K2Node_CustomEvent_bConfirm) == 0x00001D, "Member 'SettingsTab_C_ExecuteUbergraph_SettingsTab::K2Node_CustomEvent_bConfirm' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USettingsTab_C \ +static_assert(alignof(USettingsTab_C) == 0x000008, "Wrong alignment on USettingsTab_C"); \ +static_assert(sizeof(USettingsTab_C) == 0x0004A8, "Wrong size on USettingsTab_C"); \ +static_assert(offsetof(USettingsTab_C, UberGraphFrame) == 0x000498, "Member 'USettingsTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USettingsTab_C, PT_Menu_TabID) == 0x0004A0, "Member 'USettingsTab_C::PT_Menu_TabID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup \ +static_assert(alignof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup) == 0x000088, "Wrong size on W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, K2Node_MakeStruct_WrestlerConfirmationPromptData) == 0x000000, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::K2Node_MakeStruct_WrestlerConfirmationPromptData' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, K2Node_CreateDelegate_OutputDelegate) == 0x000050, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, CallFunc_FindParentWidgetOfType_ReturnValue) == 0x000060, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::CallFunc_FindParentWidgetOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, K2Node_CreateDelegate_OutputDelegate_1) == 0x000068, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, CallFunc_Create_ReturnValue) == 0x000078, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'W_WrestlerSettingScreen_C_ShowRestoreToDefaultPopup::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_ShowChangesPrompt \ +static_assert(alignof(W_WrestlerSettingScreen_C_ShowChangesPrompt) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_ShowChangesPrompt"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_ShowChangesPrompt) == 0x000088, "Wrong size on W_WrestlerSettingScreen_C_ShowChangesPrompt"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, CallFunc_FindParentWidgetOfType_ReturnValue) == 0x000010, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::CallFunc_FindParentWidgetOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, K2Node_CreateDelegate_OutputDelegate_1) == 0x000018, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, K2Node_MakeStruct_WrestlerConfirmationPromptData) == 0x000028, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::K2Node_MakeStruct_WrestlerConfirmationPromptData' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, CallFunc_Create_ReturnValue) == 0x000078, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ShowChangesPrompt, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'W_WrestlerSettingScreen_C_ShowChangesPrompt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_ReactivateParent \ +static_assert(alignof(W_WrestlerSettingScreen_C_ReactivateParent) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_ReactivateParent"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_ReactivateParent) == 0x000008, "Wrong size on W_WrestlerSettingScreen_C_ReactivateParent"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ReactivateParent, CallFunc_FindParentWidgetOfType_ReturnValue) == 0x000000, "Member 'W_WrestlerSettingScreen_C_ReactivateParent::CallFunc_FindParentWidgetOfType_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_OnRestoreRejected \ +static_assert(alignof(W_WrestlerSettingScreen_C_OnRestoreRejected) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_OnRestoreRejected"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_OnRestoreRejected) == 0x000008, "Wrong size on W_WrestlerSettingScreen_C_OnRestoreRejected"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_OnRestoreRejected, Button) == 0x000000, "Member 'W_WrestlerSettingScreen_C_OnRestoreRejected::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_OnRestoreConfirm \ +static_assert(alignof(W_WrestlerSettingScreen_C_OnRestoreConfirm) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_OnRestoreConfirm"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_OnRestoreConfirm) == 0x000008, "Wrong size on W_WrestlerSettingScreen_C_OnRestoreConfirm"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_OnRestoreConfirm, Button) == 0x000000, "Member 'W_WrestlerSettingScreen_C_OnRestoreConfirm::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_OnChangesRejected \ +static_assert(alignof(W_WrestlerSettingScreen_C_OnChangesRejected) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_OnChangesRejected"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_OnChangesRejected) == 0x000008, "Wrong size on W_WrestlerSettingScreen_C_OnChangesRejected"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_OnChangesRejected, Button) == 0x000000, "Member 'W_WrestlerSettingScreen_C_OnChangesRejected::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_OnChangesApplied \ +static_assert(alignof(W_WrestlerSettingScreen_C_OnChangesApplied) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_OnChangesApplied"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_OnChangesApplied) == 0x000008, "Wrong size on W_WrestlerSettingScreen_C_OnChangesApplied"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_OnChangesApplied, Button) == 0x000000, "Member 'W_WrestlerSettingScreen_C_OnChangesApplied::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup \ +static_assert(alignof(W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup) == 0x000001, "Wrong alignment on W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup) == 0x000001, "Wrong size on W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup, CallFunc_HaveSettingsBeenChanged_ReturnValue) == 0x000000, "Member 'W_WrestlerSettingScreen_C_HandleSettingsConfirmationPopup::CallFunc_HaveSettingsBeenChanged_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen \ +static_assert(alignof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen) == 0x000028, "Wrong size on W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, EntryPoint) == 0x000000, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, CallFunc_GetSettingCollectionName_ReturnValue) == 0x000004, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::CallFunc_GetSettingCollectionName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, CallFunc_EqualEqual_NameName_ReturnValue) == 0x00000C, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::CallFunc_EqualEqual_NameName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, CallFunc_Not_PreBool_ReturnValue) == 0x00000D, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, CallFunc_GetSelectedItemWidget_ReturnValue) == 0x000010, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::CallFunc_GetSelectedItemWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, K2Node_DynamicCast_AsW_Settings_Panel) == 0x000018, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::K2Node_DynamicCast_AsW_Settings_Panel' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'W_WrestlerSettingScreen_C_ExecuteUbergraph_W_WrestlerSettingScreen::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget) == 0x000030, "Wrong size on W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, K2Node_DynamicCast_AsW_Settings_Panel) == 0x000008, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::K2Node_DynamicCast_AsW_Settings_Panel' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, CallFunc_GetListViewSettings_List_View_Settings) == 0x000018, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::CallFunc_GetListViewSettings_List_View_Settings' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, CallFunc_GetSelectedItemWidget_ReturnValue) == 0x000020, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::CallFunc_GetSelectedItemWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'W_WrestlerSettingScreen_C_BP_GetDesiredFocusTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_WrestlerSettingScreen_C \ +static_assert(alignof(UW_WrestlerSettingScreen_C) == 0x000008, "Wrong alignment on UW_WrestlerSettingScreen_C"); \ +static_assert(sizeof(UW_WrestlerSettingScreen_C) == 0x000588, "Wrong size on UW_WrestlerSettingScreen_C"); \ +static_assert(offsetof(UW_WrestlerSettingScreen_C, UberGraphFrame) == 0x000560, "Member 'UW_WrestlerSettingScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_WrestlerSettingScreen_C, TCR_BottomActionBar) == 0x000568, "Member 'UW_WrestlerSettingScreen_C::TCR_BottomActionBar' has a wrong offset!"); \ +static_assert(offsetof(UW_WrestlerSettingScreen_C, TCR_BottomActionBarLayout) == 0x000570, "Member 'UW_WrestlerSettingScreen_C::TCR_BottomActionBarLayout' has a wrong offset!"); \ +static_assert(offsetof(UW_WrestlerSettingScreen_C, ChangesConfirmationPrompt) == 0x000578, "Member 'UW_WrestlerSettingScreen_C::ChangesConfirmationPrompt' has a wrong offset!"); \ +static_assert(offsetof(UW_WrestlerSettingScreen_C, RestoreToDefaultPrompt) == 0x000580, "Member 'UW_WrestlerSettingScreen_C::RestoreToDefaultPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess) == 0x001C80, "Wrong size on CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, Temp_bool_Variable) == 0x000E00, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_GetProperty_ReturnValue) == 0x000E01, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue) == 0x000E08, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000E10, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue_1) == 0x000E18, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000E20, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue_2) == 0x000E28, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue_3) == 0x000E30, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue_4) == 0x000E38, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_ReturnValue_5) == 0x000E40, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_StructOut) == 0x000E50, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_StructOut' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_Select_Default) == 0x001540, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast) == 0x001C30, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_FunctionResult_PostProcessBlendWeight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast) == 0x001C38, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast_1) == 0x001C40, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast_2) == 0x001C48, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast_3) == 0x001C50, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast_4) == 0x001C58, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, CallFunc_Lerp_A_ImplicitCast_5) == 0x001C60, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::CallFunc_Lerp_A_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenSceneLightingQuality_ImplicitCast) == 0x001C68, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenSceneLightingQuality_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenSurfaceCacheResolution_ImplicitCast) == 0x001C6C, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenSurfaceCacheResolution_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenMaxTraceDistance_ImplicitCast) == 0x001C70, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenMaxTraceDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenFinalGatherQuality_ImplicitCast) == 0x001C74, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenFinalGatherQuality_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenSceneViewDistance_ImplicitCast) == 0x001C78, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenSceneViewDistance_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess, K2Node_SetFieldsInStruct_LumenSceneDetail_ImplicitCast) == 0x001C7C, "Member 'CM_HeightenedSenses_PP_C_BlueprintModifyPostProcess::K2Node_SetFieldsInStruct_LumenSceneDetail_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP \ +static_assert(alignof(CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP) == 0x000004, "Wrong alignment on CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP"); \ +static_assert(sizeof(CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP) == 0x000004, "Wrong size on CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP"); \ +static_assert(offsetof(CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP, EntryPoint) == 0x000000, "Member 'CM_HeightenedSenses_PP_C_ExecuteUbergraph_CM_HeightenedSenses_PP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_HeightenedSenses_PP_C \ +static_assert(alignof(UCM_HeightenedSenses_PP_C) == 0x000010, "Wrong alignment on UCM_HeightenedSenses_PP_C"); \ +static_assert(sizeof(UCM_HeightenedSenses_PP_C) == 0x0007A0, "Wrong size on UCM_HeightenedSenses_PP_C"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, UberGraphFrame) == 0x000778, "Member 'UCM_HeightenedSenses_PP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, Fade) == 0x000780, "Member 'UCM_HeightenedSenses_PP_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, RenderTarget) == 0x000788, "Member 'UCM_HeightenedSenses_PP_C::RenderTarget' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, Mid) == 0x000790, "Member 'UCM_HeightenedSenses_PP_C::Mid' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, Optimize) == 0x000798, "Member 'UCM_HeightenedSenses_PP_C::Optimize' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, Method) == 0x000799, "Member 'UCM_HeightenedSenses_PP_C::Method' has a wrong offset!"); \ +static_assert(offsetof(UCM_HeightenedSenses_PP_C, DefaultShadowQuality) == 0x00079C, "Member 'UCM_HeightenedSenses_PP_C::DefaultShadowQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9 \ +static_assert(alignof(GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9) == 0x0000B8, "Wrong size on GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9, EventTag) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9, EventData) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_EventReceived_38B1383242EE5D94A62ED4A74F5C44E9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory \ +static_assert(alignof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory) == 0x000628, "Wrong size on GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, EntryPoint) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventTag_3) == 0x000010, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventData_3) == 0x000018, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate) == 0x0000C8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventTag_2) == 0x0000D8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventData_2) == 0x0000E0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate_1) == 0x000190, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventTag_1) == 0x0001A0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventData_1) == 0x0001A8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate_2) == 0x000258, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventTag) == 0x000268, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventData) == 0x000270, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate_3) == 0x000320, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, Temp_struct_Variable) == 0x000330, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, Temp_struct_Variable_1) == 0x0003E0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_WaitDelay_ReturnValue) == 0x0003F8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, Temp_bool_Has_Been_Initd_Variable) == 0x000400, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_IsValid_ReturnValue) == 0x000401, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CreateDelegate_OutputDelegate_5) == 0x000404, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000418, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetComponentByClass_ReturnValue) == 0x000420, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_Event_EventData) == 0x000428, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_IsValid_ReturnValue_1) == 0x0004D8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_K2_CommitAbility_ReturnValue) == 0x0004D9, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, Temp_bool_IsClosed_Variable) == 0x0004DA, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetMontage_ReturnValue) == 0x0004E0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004E8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_IsValid_ReturnValue_2) == 0x0004F0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0004F8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetAIController_ReturnValue) == 0x000500, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_Event_bWasCancelled) == 0x000508, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000510, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventTag_4) == 0x000518, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, K2Node_CustomEvent_EventData_4) == 0x000520, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_IsValid_ReturnValue_3) == 0x0005D0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_DoesImplementInterface_ReturnValue) == 0x0005D1, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0005D4, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetMassEntityHandle_ReturnValue) == 0x0005DC, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0005E0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_MassEntityHasGameplayTag_ReturnValue) == 0x0005E8, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_MassEntityHasGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0005F0, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000610, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000620, "Member 'GA_Enemy_CloudMemory_C_ExecuteUbergraph_GA_Enemy_CloudMemory::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_CloudMemory_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_CloudMemory_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_CloudMemory_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9 \ +static_assert(alignof(GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9) == 0x0000B8, "Wrong size on GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9, EventTag) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9, EventData) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_OnBlendOut_38B1383242EE5D94A62ED4A74F5C44E9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9 \ +static_assert(alignof(GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9) == 0x0000B8, "Wrong size on GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9, EventTag) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9, EventData) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_OnCancelled_38B1383242EE5D94A62ED4A74F5C44E9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9 \ +static_assert(alignof(GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9) == 0x0000B8, "Wrong size on GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9, EventTag) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9, EventData) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_OnCompleted_38B1383242EE5D94A62ED4A74F5C44E9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9 \ +static_assert(alignof(GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9) == 0x000008, "Wrong alignment on GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(sizeof(GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9) == 0x0000B8, "Wrong size on GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9, EventTag) == 0x000000, "Member 'GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9, EventData) == 0x000008, "Member 'GA_Enemy_CloudMemory_C_OnInterrupted_38B1383242EE5D94A62ED4A74F5C44E9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_CloudMemory_C \ +static_assert(alignof(UGA_Enemy_CloudMemory_C) == 0x000008, "Wrong alignment on UGA_Enemy_CloudMemory_C"); \ +static_assert(sizeof(UGA_Enemy_CloudMemory_C) == 0x0006C0, "Wrong size on UGA_Enemy_CloudMemory_C"); \ +static_assert(offsetof(UGA_Enemy_CloudMemory_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_CloudMemory_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_CloudMemory_C, StateTreeEvent) == 0x000670, "Member 'UGA_Enemy_CloudMemory_C::StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_CloudMemory_C, NewVar) == 0x000690, "Member 'UGA_Enemy_CloudMemory_C::NewVar' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_CloudMemory_C, SoftObject_Class) == 0x000698, "Member 'UGA_Enemy_CloudMemory_C::SoftObject_Class' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsPanel_C_SetDetailsActive \ +static_assert(alignof(W_SettingsPanel_C_SetDetailsActive) == 0x000001, "Wrong alignment on W_SettingsPanel_C_SetDetailsActive"); \ +static_assert(sizeof(W_SettingsPanel_C_SetDetailsActive) == 0x000001, "Wrong size on W_SettingsPanel_C_SetDetailsActive"); \ +static_assert(offsetof(W_SettingsPanel_C_SetDetailsActive, Active) == 0x000000, "Member 'W_SettingsPanel_C_SetDetailsActive::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsPanel_C_OnItemSelectionChanged \ +static_assert(alignof(W_SettingsPanel_C_OnItemSelectionChanged) == 0x000008, "Wrong alignment on W_SettingsPanel_C_OnItemSelectionChanged"); \ +static_assert(sizeof(W_SettingsPanel_C_OnItemSelectionChanged) == 0x000010, "Wrong size on W_SettingsPanel_C_OnItemSelectionChanged"); \ +static_assert(offsetof(W_SettingsPanel_C_OnItemSelectionChanged, Item) == 0x000000, "Member 'W_SettingsPanel_C_OnItemSelectionChanged::Item' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_OnItemSelectionChanged, bIsSelected) == 0x000008, "Member 'W_SettingsPanel_C_OnItemSelectionChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsPanel_C_GetListViewSettings \ +static_assert(alignof(W_SettingsPanel_C_GetListViewSettings) == 0x000008, "Wrong alignment on W_SettingsPanel_C_GetListViewSettings"); \ +static_assert(sizeof(W_SettingsPanel_C_GetListViewSettings) == 0x000008, "Wrong size on W_SettingsPanel_C_GetListViewSettings"); \ +static_assert(offsetof(W_SettingsPanel_C_GetListViewSettings, List_View_Settings) == 0x000000, "Member 'W_SettingsPanel_C_GetListViewSettings::List_View_Settings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel \ +static_assert(alignof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel) == 0x000008, "Wrong alignment on W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel"); \ +static_assert(sizeof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel) == 0x000098, "Wrong size on W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, EntryPoint) == 0x000000, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings) == 0x000018, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, K2Node_CustomEvent_Item) == 0x000020, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::K2Node_CustomEvent_Item' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, K2Node_CustomEvent_bIsSelected) == 0x000028, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::K2Node_CustomEvent_bIsSelected' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings_1) == 0x000030, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings_2) == 0x000038, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings_2' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings_3) == 0x000040, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings_3' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListItems_ReturnValue) == 0x000048, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListItems_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings_4) == 0x000058, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings_4' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_Array_LastIndex_ReturnValue) == 0x000060, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetIndexForItem_ReturnValue) == 0x000064, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetIndexForItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_Subtract_IntInt_ReturnValue) == 0x000068, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00006C, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00006D, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetListViewSettings_List_View_Settings_5) == 0x000070, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetListViewSettings_List_View_Settings_5' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_GetScrollOffset_ReturnValue) == 0x000078, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_GetScrollOffset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000080, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000088, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel, CallFunc_SetScrollOffset_InScrollOffset_ImplicitCast) == 0x000090, "Member 'W_SettingsPanel_C_ExecuteUbergraph_W_SettingsPanel::CallFunc_SetScrollOffset_InScrollOffset_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsPanel_C \ +static_assert(alignof(UW_SettingsPanel_C) == 0x000008, "Wrong alignment on UW_SettingsPanel_C"); \ +static_assert(sizeof(UW_SettingsPanel_C) == 0x000758, "Wrong size on UW_SettingsPanel_C"); \ +static_assert(offsetof(UW_SettingsPanel_C, UberGraphFrame) == 0x000740, "Member 'UW_SettingsPanel_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsPanel_C, Details) == 0x000748, "Member 'UW_SettingsPanel_C::Details' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsPanel_C, ListView) == 0x000750, "Member 'UW_SettingsPanel_C::ListView' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_BlockMove_C \ +static_assert(alignof(UGE_BlockMove_C) == 0x000008, "Wrong alignment on UGE_BlockMove_C"); \ +static_assert(sizeof(UGE_BlockMove_C) == 0x000A70, "Wrong size on UGE_BlockMove_C"); \ + +#define DUMPER7_ASSERTS_UGE_BlockCrouch_C \ +static_assert(alignof(UGE_BlockCrouch_C) == 0x000008, "Wrong alignment on UGE_BlockCrouch_C"); \ +static_assert(sizeof(UGE_BlockCrouch_C) == 0x000A70, "Wrong size on UGE_BlockCrouch_C"); \ + +#define DUMPER7_ASSERTS_ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD \ +static_assert(alignof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD) == 0x000008, "Wrong alignment on ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD"); \ +static_assert(sizeof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD) == 0x000048, "Wrong size on ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, EntryPoint) == 0x000000, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_Event_InAutomata) == 0x000008, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_Event_InState) == 0x000010, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, CallFunc_GetHud_ReturnValue) == 0x000018, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_DynamicCast_AsWrestler_HUDIn_Game) == 0x000020, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_DynamicCast_AsWrestler_HUDIn_Game' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, CallFunc_GetSlotWidget_ReturnValue) == 0x000030, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_DynamicCast_AsWBP_Player_HUD) == 0x000038, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_DynamicCast_AsWBP_Player_HUD' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'ShowHideHealthHUD_C_ExecuteUbergraph_ShowHideHealthHUD::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowHideHealthHUD_C_ReceiveExecute \ +static_assert(alignof(ShowHideHealthHUD_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowHideHealthHUD_C_ReceiveExecute"); \ +static_assert(sizeof(ShowHideHealthHUD_C_ReceiveExecute) == 0x000010, "Wrong size on ShowHideHealthHUD_C_ReceiveExecute"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowHideHealthHUD_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHealthHUD_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowHideHealthHUD_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowHideHealthHUD_C \ +static_assert(alignof(UShowHideHealthHUD_C) == 0x000008, "Wrong alignment on UShowHideHealthHUD_C"); \ +static_assert(sizeof(UShowHideHealthHUD_C) == 0x000098, "Wrong size on UShowHideHealthHUD_C"); \ +static_assert(offsetof(UShowHideHealthHUD_C, UberGraphFrame) == 0x000088, "Member 'UShowHideHealthHUD_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowHideHealthHUD_C, bShowHealth) == 0x000090, "Member 'UShowHideHealthHUD_C::bShowHealth' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor) == 0x0000F0, "Wrong size on BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Interface_user) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Skeletal_mesh) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Skeletal_mesh' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_IsValid_ReturnValue_1) == 0x000034, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_bSuccess_1) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_GetHeightenedSenseTypeTag_ReturnValue) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_GetHeightenedSenseTypeTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_2) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, K2Node_DynamicCast_bSuccess_2) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, Temp_struct_Variable) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Is_Animate_Is_being) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Is_Animate_Is_being' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Array_Get_Item) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_IsValid_ReturnValue_2) == 0x0000E0, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Array_Length_ReturnValue) == 0x0000E4, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_Less_IntInt_ReturnValue) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor, CallFunc_VisionFadeInBegin_InDuration_ImplicitCast) == 0x0000EC, "Member 'BP_HeightenedSenses_VFX_02_C_Activate_HS_For_Actor::CallFunc_VisionFadeInBegin_InDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Add_post_process_effects \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Add_post_process_effects"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects) == 0x000050, "Wrong size on BP_HeightenedSenses_VFX_02_C_Add_post_process_effects"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_GetGameUserSettings_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_GetGameUserSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_GetShadowQuality_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_GetShadowQuality_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, K2Node_DynamicCast_AsCM_HS_Characters_PP) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::K2Node_DynamicCast_AsCM_HS_Characters_PP' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_GetPlayerController_ReturnValue_1) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, CallFunc_AddNewCameraModifier_ReturnValue_1) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::CallFunc_AddNewCameraModifier_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, K2Node_DynamicCast_AsCM_Heightened_Senses_PP) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::K2Node_DynamicCast_AsCM_Heightened_Senses_PP' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Add_post_process_effects, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Add_post_process_effects::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset) == 0x000038, "Wrong size on BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_1) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_2) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_3) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_4) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_5) == 0x000014, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_6) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_7) == 0x00001C, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, K2Node_VariableSet_Fade_in_duration_ImplicitCast) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::K2Node_VariableSet_Fade_in_duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, K2Node_VariableSet_FadeDuration_particle_effects_ImplicitCast) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::K2Node_VariableSet_FadeDuration_particle_effects_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset, K2Node_VariableSet_FadeDuration_screen_effects_ImplicitCast) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Collect_data_from_data_asset::K2Node_VariableSet_FadeDuration_screen_effects_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor) == 0x0000E8, "Wrong size on BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, ClueComponent) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::ClueComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, Mesh_components) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::Mesh_components' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue) == 0x000024, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_1) == 0x00002C, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_GetComponentByClass_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_2) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_DoesImplementInterface_ReturnValue) == 0x000039, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_3) == 0x00003A, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_BooleanOR_ReturnValue) == 0x00003B, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_BooleanAND_ReturnValue) == 0x00003C, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, Temp_int_Array_Index_Variable) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_4) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_5) == 0x000059, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Array_Get_Item) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Array_Length_ReturnValue) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_6) == 0x00006C, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Less_IntInt_ReturnValue) == 0x00006D, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_AsStatic_Mesh_Component) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_AsStatic_Mesh_Component' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_Value) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_ReturnValue) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_IsValid_ReturnValue_7) == 0x000089, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Remove_ReturnValue) == 0x00008A, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Remove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_GetOwner_ReturnValue) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_Value_1) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_ReturnValue_1) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_GetAttachParentActor_ReturnValue) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_Value_2) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Find_ReturnValue_2) == 0x0000B8, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_Map_Contains_ReturnValue) == 0x0000B9, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_Map_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, K2Node_DynamicCast_bSuccess_2) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_Deactivate_HS_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02 \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02) == 0x000010, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02) == 0x000430, "Wrong size on BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, EntryPoint) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_Event_DeltaSeconds) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetPlayerController_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000130, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetFOVAngle_ReturnValue) == 0x000138, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetFOVAngle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue) == 0x00013C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000140, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_DegTan_ReturnValue) == 0x000148, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_DegTan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Loop_Counter_Variable_1) == 0x000150, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x000158, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Add_IntInt_ReturnValue_1) == 0x000160, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000168, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x000170, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetTimeSeconds_ReturnValue) == 0x000178, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetTimeSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Array_Index_Variable_1) == 0x000180, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000184, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue_3) == 0x000188, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000190, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Loop_Counter_Variable_2) == 0x000194, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Add_IntInt_ReturnValue_2) == 0x000198, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Array_Index_Variable_2) == 0x00019C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Length_ReturnValue) == 0x0001A0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Loop_Counter_Variable_3) == 0x0001A4, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Less_IntInt_ReturnValue) == 0x0001A8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Add_IntInt_ReturnValue_3) == 0x0001AC, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Array_Index_Variable_3) == 0x0001B0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetMagnitude_ReturnValue) == 0x0001B4, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetMagnitude_ReturnValue_1) == 0x0001B8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue_4) == 0x0001C0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_ReturnValue_5) == 0x0001C8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue_1) == 0x0001D0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue_2) == 0x0001D1, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_Event_InParticleActor) == 0x0001D8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_Event_InParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_Event_InUpdateData) == 0x0001E0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_Event_InUpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue_3) == 0x000228, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Values_Values) == 0x000230, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Get_Item) == 0x000240, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Length_ReturnValue_1) == 0x000248, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Loop_Counter_Variable_4) == 0x00024C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue_4) == 0x000250, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Less_IntInt_ReturnValue_1) == 0x000251, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Add_IntInt_ReturnValue_4) == 0x000254, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_CreateDelegate_OutputDelegate) == 0x000258, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000268, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_struct_Variable) == 0x000270, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Keys_Keys) == 0x0002D0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_AddComponent_ReturnValue) == 0x0002E0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Get_Item_1) == 0x0002E8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Length_ReturnValue_2) == 0x0002F0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Less_IntInt_ReturnValue_2) == 0x0002F4, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0002F8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Keys_Keys_1) == 0x000300, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Get_Item_2) == 0x000310, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Length_ReturnValue_3) == 0x000318, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Find_Value) == 0x000320, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Find_ReturnValue) == 0x000368, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Less_IntInt_ReturnValue_3) == 0x000369, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, Temp_int_Array_Index_Variable_4) == 0x00036C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Get_Item_3) == 0x000370, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_IsValid_ReturnValue_5) == 0x000378, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_GetMaxAttenuationRadius_ReturnValue) == 0x00037C, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_GetMaxAttenuationRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_DegCos_ReturnValue) == 0x000380, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_DegCos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Get_Item_4) == 0x000388, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Array_Length_ReturnValue_4) == 0x000390, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Map_Remove_ReturnValue) == 0x000394, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Map_Remove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Less_IntInt_ReturnValue_4) == 0x000395, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_EqualEqual_DoubleDouble_ReturnValue) == 0x000396, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_EqualEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000398, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_DegAtan_ReturnValue) == 0x0003A0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_DegAtan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0003A8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_CustomEvent_Optimize_) == 0x0003B0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_CustomEvent_Optimize_' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x0003B8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0003C0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetPlayRate_NewRate_ImplicitCast_1) == 0x0003C4, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetPlayRate_NewRate_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x0003C8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetPlayRate_NewRate_ImplicitCast_2) == 0x0003CC, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetPlayRate_NewRate_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Delay_Duration_ImplicitCast) == 0x0003D0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_FadeDuration_particle_effects_ImplicitCast) == 0x0003D8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_FadeDuration_particle_effects_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_FadeDuration_screen_effects_ImplicitCast) == 0x0003E0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_FadeDuration_screen_effects_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetPlayRate_NewRate_ImplicitCast_3) == 0x0003E8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetPlayRate_NewRate_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_SetPlayRate_NewRate_ImplicitCast_4) == 0x0003EC, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_SetPlayRate_NewRate_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Update_Screen_PP_parameters_ScreenPPAlpha_ImplicitCast) == 0x0003F0, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Update_Screen_PP_parameters_ScreenPPAlpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_Fade_ImplicitCast) == 0x0003F8, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_Fade_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_Fade_ImplicitCast_1) == 0x000400, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_Fade_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast) == 0x000408, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_EqualEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, CallFunc_Update_Screen_PP_parameters_ScreenPPAlpha_ImplicitCast_1) == 0x000410, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::CallFunc_Update_Screen_PP_parameters_ScreenPPAlpha_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_Fade_ImplicitCast_2) == 0x000418, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_Fade_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_FOVAngle_ImplicitCast) == 0x000420, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_FOVAngle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02, K2Node_VariableSet_FOVAngle_ImplicitCast_1) == 0x000424, "Member 'BP_HeightenedSenses_VFX_02_C_ExecuteUbergraph_BP_HeightenedSenses_VFX_02::K2Node_VariableSet_FOVAngle_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor) == 0x000028, "Wrong size on BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, Interface_user) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, CallFunc_DoesImplementInterface_ReturnValue) == 0x000011, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Get_HS_Interface_Object_from_Actor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime) == 0x000098, "Wrong size on BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, TargetMap) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::TargetMap' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, System) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::System' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, ReturnValue) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Map_Find_Value) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Map_Find_ReturnValue) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Fraction_ReturnValue) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Fraction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime, CallFunc_Round_ReturnValue) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_GetSystemHeartbeatTime::CallFunc_Round_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck) == 0x000198, "Wrong size on BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, lastHBTime) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::lastHBTime' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, FoundSystem) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::FoundSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, currentSystem) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::currentSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_bool_True_if_break_was_hit_Variable) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Array_Index_Variable) == 0x000014, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Not_PreBool_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_bool_True_if_break_was_hit_Variable_1) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_bool_True_if_break_was_hit_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Not_PreBool_ReturnValue_1) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_IsValid_ReturnValue) == 0x000029, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Loop_Counter_Variable_1) == 0x00002C, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Add_IntInt_ReturnValue_1) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Array_Index_Variable_1) == 0x000034, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetSystemHeartbeatTime_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetSystemHeartbeatTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Loop_Counter_Variable_2) == 0x00003C, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Add_IntInt_ReturnValue_2) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Loop_Counter_Variable_3) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Keys_Keys) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Add_IntInt_ReturnValue_3) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Length_ReturnValue) == 0x00005C, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Array_Index_Variable_2) == 0x000064, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Get_Item) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, Temp_int_Array_Index_Variable_3) == 0x000074, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Find_Value) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Find_ReturnValue) == 0x00007C, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Not_PreBool_ReturnValue_2) == 0x00007D, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x00007E, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_BooleanOR_ReturnValue) == 0x00007F, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_BooleanAND_ReturnValue) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_IsValid_ReturnValue_1) == 0x000081, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Keys_Keys_1) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Get_Item_1) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Values_Values) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Get_Item_2) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Length_ReturnValue_1) == 0x0000B8, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000BC, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000BD, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_BooleanAND_ReturnValue_1) == 0x0000BE, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Keys_Keys_2) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Keys_Keys_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Get_Item_3) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Length_ReturnValue_2) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_IsValid_ReturnValue_2) == 0x0000F4, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000F5, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_BooleanAND_ReturnValue_2) == 0x0000F6, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetComponentByClass_ReturnValue) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000100, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000120, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetPlayerController_ReturnValue) == 0x000138, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetActorForwardVector_ReturnValue) == 0x000140, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_GetSystemHeartbeatTime_ReturnValue_1) == 0x000158, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_GetSystemHeartbeatTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Dot_VectorVector_ReturnValue) == 0x000160, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000168, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Map_Keys_Keys_3) == 0x000170, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Map_Keys_Keys_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Length_ReturnValue_3) == 0x000180, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Array_Get_Item_4) == 0x000188, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck, CallFunc_Less_IntInt_ReturnValue_3) == 0x000190, "Member 'BP_HeightenedSenses_VFX_02_C_HeartbeatAudioFOVCheck::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_HS_Heartbeat \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_HS_Heartbeat"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat) == 0x000060, "Wrong size on BP_HeightenedSenses_VFX_02_C_HS_Heartbeat"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, beatVariance) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::beatVariance' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, Heartbeat_material) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::Heartbeat_material' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, System) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::System' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_Value) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x000031, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_Value_1) == 0x000034, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_ReturnValue_1) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_Value_2) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_Map_Find_ReturnValue_2) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Heartbeat, CallFunc_IsValid_ReturnValue_1) == 0x000059, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Heartbeat::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats) == 0x000018, "Wrong size on BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats, CallFunc_GetAttachParentActor_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_HS_Mass_Heartbeats::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio) == 0x000070, "Wrong size on BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, Temp_object_Variable) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_IsValid_ReturnValue_1) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, Temp_delegate_Variable) == 0x00001C, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, Temp_delegate_Variable_1) == 0x00002C, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_GetComponentByClass_ReturnValue) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_DoesImplementInterface_ReturnValue) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_IsValid_ReturnValue_2) == 0x000049, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_IsValid_ReturnValue_3) == 0x00004A, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_BooleanOR_ReturnValue) == 0x00004B, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Post_Heartbeat_Audio::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent) == 0x000058, "Wrong size on BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, Event) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::Event' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, StopEvent) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::StopEvent' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, Temp_object_Variable) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, CallFunc_DoesImplementInterface_ReturnValue) == 0x000041, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent, Temp_delegate_Variable) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_PostCharacterAudioEvent::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_ReceiveTick \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_ReceiveTick"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_ReceiveTick) == 0x000004, "Wrong size on BP_HeightenedSenses_VFX_02_C_ReceiveTick"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals) == 0x000040, "Wrong size on BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_IsValid_ReturnValue_1) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'BP_HeightenedSenses_VFX_02_C_RevertActorMeshVisuals::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets) == 0x000080, "Wrong size on BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Array_Length_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_GetComponentsByInterface_ReturnValue) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_GetComponentsByInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Array_Get_Item_1) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Array_Length_ReturnValue_1) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_Less_IntInt_ReturnValue_1) == 0x000079, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_DoesImplementInterface_ReturnValue) == 0x00007A, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_IsValid_ReturnValue_1) == 0x00007B, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets, CallFunc_BooleanAND_ReturnValue) == 0x00007C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_in_end_interface_event_to_targets::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets) == 0x000050, "Wrong size on BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Array_Get_Item) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_SelectFloat_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Array_Length_ReturnValue) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets, CallFunc_VisionFadeOutBegin_InDuration_ImplicitCast) == 0x00004C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_fade_out_begin_interface_event_to_targets::CallFunc_VisionFadeOutBegin_InDuration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets) == 0x000080, "Wrong size on BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Array_Length_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_GetComponentsByInterface_ReturnValue) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_GetComponentsByInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Array_Get_Item_1) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Array_Length_ReturnValue_1) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_Less_IntInt_ReturnValue_1) == 0x000079, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_DoesImplementInterface_ReturnValue) == 0x00007A, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_IsValid_ReturnValue_1) == 0x00007B, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets, CallFunc_BooleanAND_ReturnValue) == 0x00007C, "Member 'BP_HeightenedSenses_VFX_02_C_Send_pulse_end_interface_event_to_targets::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers) == 0x000038, "Wrong size on BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, System) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::System' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, Temp_bool_Variable) == 0x000022, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000023, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers, CallFunc_Map_Keys_Keys) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Colour_For_Clan_Trainers::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter) == 0x000028, "Wrong size on BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_GetMagnitude_ReturnValue) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_GetMagnitude_ReturnValue_1) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Set_material_duration_parameter::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values) == 0x000028, "Wrong size on BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, InBeatVariance) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::InBeatVariance' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, InSystem) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::InSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, Resonance) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::Resonance' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, CallFunc_Abs_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x000024, "Member 'BP_HeightenedSenses_VFX_02_C_Set_Resonance_Values::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_SetAudioSwitch \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_SetAudioSwitch"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch) == 0x000040, "Wrong size on BP_HeightenedSenses_VFX_02_C_SetAudioSwitch"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, SWITCH) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::SWITCH' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, Actor) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, Temp_object_Variable) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, CallFunc_DoesImplementInterface_ReturnValue) == 0x000031, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SetAudioSwitch, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_SetAudioSwitch::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor) == 0x000398, "Wrong size on BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Clue_component) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Clue_component' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Overlay_material) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Overlay_material' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Mesh_components_to_highlight) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Mesh_components_to_highlight' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Heightened_senses_type_tag) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Heightened_senses_type_tag' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Is_mannequin) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Is_mannequin' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Is_unbirthed) == 0x000049, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Is_unbirthed' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Is_ghoul) == 0x00004A, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Is_ghoul' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Is_human) == 0x00004B, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Is_human' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Ability_System_Component) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Ability_System_Component' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Spawned_system) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Spawned_system' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Attach_to_component) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Attach_to_component' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue) == 0x00006C, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable_1) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetHeightenedSenseTypeTag_ReturnValue) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetHeightenedSenseTypeTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable_2) == 0x0000B8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Variable) == 0x0000BC, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_bool_Variable) == 0x0000C4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_1) == 0x0000C5, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Not_PreBool_ReturnValue) == 0x0000C6, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000CC, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_bool_True_if_break_was_hit_Variable) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable_3) == 0x0000D4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Not_PreBool_ReturnValue_1) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetComponentByClass_ReturnValue) == 0x0000E0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetRootComponent_ReturnValue) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_2) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_3) == 0x000100, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable_1) == 0x000104, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable_2) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_2) == 0x00010C, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_3) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000114, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_struct_Variable) == 0x000120, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, K2Node_MakeArray_Array) == 0x000140, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue) == 0x000150, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_EqualEqual_GameplayTagContainer_ReturnValue) == 0x000170, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_EqualEqual_GameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MakeLiteralName_ReturnValue) == 0x000174, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetAllSocketNames_ReturnValue) == 0x000180, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetAllSocketNames_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable_3) == 0x000190, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Contains_ReturnValue) == 0x000194, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_4) == 0x000198, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BreakVector2D_X) == 0x0001A0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BreakVector2D_Y) == 0x0001A8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_RandomFloatInRange_ReturnValue) == 0x0001B0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0001B8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x0001C0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Find_Value) == 0x0001C4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Find_ReturnValue) == 0x0001D4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_HasAnyTags_ReturnValue) == 0x0001D5, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_HasAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetMassBloodResonanceType_ReturnValue_1) == 0x0001D6, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetMassBloodResonanceType_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Find_Value_1) == 0x0001D8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Find_ReturnValue_1) == 0x0001E8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_4) == 0x0001E9, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable_4) == 0x0001EC, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable_4) == 0x0001F0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0001F8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_5) == 0x000208, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item) == 0x000210, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_5) == 0x000218, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue) == 0x00021C, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue) == 0x000220, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MatchesAnyTags_ReturnValue) == 0x000221, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MatchesAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetAttachedActors_OutActors) == 0x000228, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000238, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_1) == 0x000248, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue_1) == 0x000250, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_6) == 0x000254, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue_1) == 0x000255, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetComponentByClass_ReturnValue_2) == 0x000258, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetComponentByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue_2) == 0x000260, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_7) == 0x000264, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue_2) == 0x000265, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MatchesAnyTags_ReturnValue_1) == 0x000266, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MatchesAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MatchesAnyTags_ReturnValue_2) == 0x000267, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MatchesAnyTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Array_Index_Variable_5) == 0x000268, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BooleanOR_ReturnValue) == 0x00026C, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_2) == 0x000270, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BooleanOR_ReturnValue_1) == 0x000278, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_8) == 0x000279, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetAttachedActors_OutActors_1) == 0x000280, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetAttachedActors_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue_2) == 0x000290, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_3) == 0x0002A0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_4) == 0x0002A8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_9) == 0x0002B0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_10) == 0x0002B1, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetComponentByClass_ReturnValue_3) == 0x0002B8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetComponentByClass_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue_3) == 0x0002C0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_11) == 0x0002C4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue_3) == 0x0002C5, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue_4) == 0x0002C8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetEnemyCharacterFromActor_OutEnemyCharacter) == 0x0002D0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetEnemyCharacterFromActor_OutEnemyCharacter' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_K2_GetEnemyCharacterFromActor_OutPins) == 0x0002D8, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_K2_GetEnemyCharacterFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Keys_Keys) == 0x0002E0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, K2Node_SwitchEnum_CmpSuccess) == 0x0002F0, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_5) == 0x0002F4, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_12) == 0x000304, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000308, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000318, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Values_Values) == 0x000320, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Map_Length_ReturnValue) == 0x000330, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Map_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Subtract_IntInt_ReturnValue) == 0x000334, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000338, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BooleanAND_ReturnValue) == 0x000339, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_MatchesAnyTags_ReturnValue_3) == 0x00033A, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_MatchesAnyTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000340, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Is_Animate_Is_being) == 0x000350, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Is_Animate_Is_being' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Get_Item_6) == 0x000354, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BooleanAND_ReturnValue_1) == 0x00035C, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_HasTag_ReturnValue) == 0x00035D, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Array_Length_ReturnValue_5) == 0x000360, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue_4) == 0x000364, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_BooleanAND_ReturnValue_2) == 0x000365, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_HasAnyTags_ReturnValue_1) == 0x000366, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_HasAnyTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000368, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, Temp_int_Loop_Counter_Variable_5) == 0x000370, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Less_IntInt_ReturnValue_5) == 0x000374, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_Add_IntInt_ReturnValue_6) == 0x000378, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_GetComponentByClass_ReturnValue_4) == 0x000380, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_GetComponentByClass_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000388, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_IsValid_ReturnValue_13) == 0x000390, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000394, "Member 'BP_HeightenedSenses_VFX_02_C_Spawn_HS_Particles_For_Actor::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect) == 0x000010, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect) == 0x000120, "Wrong size on BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, InUpdateData) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::InUpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, AttachParentComponent) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::AttachParentComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, ReturnValue) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, Spawned_system) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::Spawned_system' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, ParticleActor) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::ParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_MakeTransform_ReturnValue) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_BreakVector2D_X) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_BreakVector2D_Y) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000E0, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_RandomFloatInRange_ReturnValue) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_IsValid_ReturnValue_1) == 0x000100, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000101, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_SpawnMassParticleEffect::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio) == 0x000048, "Wrong size on BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, Temp_object_Variable) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, CallFunc_DoesImplementInterface_ReturnValue) == 0x000029, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio, Temp_delegate_Variable) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_StartBloodResonanceAudio::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio) == 0x000070, "Wrong size on BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Set_ToArray_Result) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_IsValid_ReturnValue) == 0x00002C, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Less_IntInt_ReturnValue) == 0x00002D, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_GetOwner_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_IsValid_ReturnValue_1) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Map_Keys_Keys) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_GetAttachParentActor_ReturnValue) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_IsValid_ReturnValue_2) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio, CallFunc_Map_Keys_Keys_1) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_StopAllBloodResonanceAudio::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio) == 0x000048, "Wrong size on BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, Temp_object_Variable) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, CallFunc_DoesImplementInterface_ReturnValue) == 0x000029, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio, Temp_delegate_Variable) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_StopBloodResonanceAudio::Temp_delegate_Variable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor) == 0x0002A8, "Wrong size on BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, GoldColor) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::GoldColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, WhereIsWallyTag) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::WhereIsWallyTag' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, BloodResonanceColor) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::BloodResonanceColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Heartbeat_material) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Heartbeat_material' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, System) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::System' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Actor_0) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Actor_0' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Get_HS_Interface_Object_from_Actor_Interface_user' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_DoesImplementInterface_ReturnValue) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetHeightenedSenseTypeTag_ReturnValue) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetHeightenedSenseTypeTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_1) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_2) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_2) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetHeightenedSenseTypeTag_ReturnValue_1) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetHeightenedSenseTypeTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetHeightenedSenseTypeTag_ReturnValue_2) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetHeightenedSenseTypeTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue_1) == 0x000109, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_struct_Variable) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetComponentByClass_ReturnValue) == 0x000130, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue_2) == 0x000138, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_bool_Variable) == 0x000139, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetVelocity_ReturnValue) == 0x000140, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_VSize_ReturnValue) == 0x000158, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000160, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_bool_Variable_1) == 0x000168, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000170, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_3) == 0x000180, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000181, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetAttachParent_ReturnValue) == 0x000188, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetAttachParent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_int_Array_Index_Variable) == 0x000190, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_bool_Variable_2) == 0x000194, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000198, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_4) == 0x0001A8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x0001A9, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetMassBloodResonanceState_ReturnValue) == 0x0001AA, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetMassBloodResonanceState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x0001AB, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_HasMassTag_ReturnValue) == 0x0001AC, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_HasMassTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_DoesImplementInterface_ReturnValue_1) == 0x0001AD, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_DoesImplementInterface_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetPlayerPawn_ReturnValue) == 0x0001B0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_bool_Variable_3) == 0x0001B8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_struct_Variable_1) == 0x0001C0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_int_Loop_Counter_Variable) == 0x0001E0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x0001E8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_5) == 0x0001F8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000200, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000210, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Array_Get_Item) == 0x000218, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Array_Length_ReturnValue) == 0x000220, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Add_IntInt_ReturnValue) == 0x000224, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Less_IntInt_ReturnValue) == 0x000228, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsPlayerFabien_Return) == 0x000229, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_BooleanAND_ReturnValue) == 0x00022A, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Map_Find_Value) == 0x000230, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Map_Find_ReturnValue) == 0x000238, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsPawn) == 0x000240, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_6) == 0x000248, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetAIController_ReturnValue) == 0x000250, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetBloodResonanceFromActor_BloodResonanceType) == 0x000258, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetBloodResonanceFromActor_BloodResonanceType' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_GetBloodResonanceFromActor_BloodResonanceState) == 0x000259, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_GetBloodResonanceFromActor_BloodResonanceState' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue_3) == 0x00025A, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsAwareOfActor_ReturnValue) == 0x00025B, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsAwareOfActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_PawnHasStateTag_ReturnValue) == 0x00025C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue_4) == 0x00025D, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000260, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, K2Node_DynamicCast_bSuccess_7) == 0x000270, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000271, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsValid_ReturnValue_5) == 0x000272, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_IsOccluded_ReturnValue) == 0x000273, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_IsOccluded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, Temp_struct_Variable_2) == 0x000278, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_BooleanAND_ReturnValue_1) == 0x000298, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_PawnHasStateTag_ReturnValue_1) == 0x000299, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_PawnHasStateTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_Not_PreBool_ReturnValue) == 0x00029A, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_BooleanAND_ReturnValue_2) == 0x00029B, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_BooleanAND_ReturnValue_3) == 0x00029C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x0002A0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_Particle_System_For_Actor::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Update_HS_target_list \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Update_HS_target_list"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list) == 0x000310, "Wrong size on BP_HeightenedSenses_VFX_02_C_Update_HS_target_list"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Actors) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Actors' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Components_to_show_in_scene_capture) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Components_to_show_in_scene_capture' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Array_Index) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Array_Index' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Targeted_actor) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Targeted_actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable) == 0x000034, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_1) == 0x00003C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_1) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_1) == 0x000044, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_2) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_3) == 0x00004C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_2) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_2) == 0x000054, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_4) == 0x000058, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_3) == 0x00005C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_4) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_3) == 0x000064, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_4) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_5) == 0x00006C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Subtract_IntInt_ReturnValue) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000074, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_5) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Set_ToArray_Result) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Set_ToArray_Result' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_IsValid_ReturnValue) == 0x00009C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetOwner_ReturnValue) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetAttachParentActor_ReturnValue) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Keys_Keys) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Keys_Keys_1) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_6) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_7) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Keys_Keys_2) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Keys_Keys_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_1) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Array_Index_Variable_8) == 0x00010C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Array_Index_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_1) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetOwner_ReturnValue_1) == 0x000118, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Set_Remove_ReturnValue) == 0x000120, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Set_Remove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetAttachParentActor_ReturnValue_1) == 0x000128, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetAttachParentActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Set_Remove_ReturnValue_1) == 0x000130, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Set_Remove_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Find_Value) == 0x000138, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Find_ReturnValue) == 0x000140, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_IsValid_ReturnValue_1) == 0x000141, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000148, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Vector_Distance_ReturnValue) == 0x000160, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_6) == 0x000168, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00016C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue) == 0x00016D, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_5) == 0x000170, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000174, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_2) == 0x000178, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_2) == 0x000180, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_1) == 0x000184, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000188, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, K2Node_DynamicCast_bSuccess) == 0x000198, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetHeightenedSensesSceneCaptureComponents_ReturnValue) == 0x0001A0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetHeightenedSensesSceneCaptureComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0001B0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_3) == 0x0001C0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_DoesImplementInterface_ReturnValue) == 0x0001C8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetHeightenedSensesSceneCaptureComponents_self_CastInput) == 0x0001D0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetHeightenedSensesSceneCaptureComponents_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetHeightenedSensesSceneCaptureComponents_ReturnValue_1) == 0x0001E0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetHeightenedSensesSceneCaptureComponents_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_3) == 0x0001F0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_2) == 0x0001F4, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_4) == 0x0001F8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_4) == 0x000200, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Values_Values) == 0x000208, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_7) == 0x000218, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_3) == 0x00021C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_6) == 0x000220, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000228, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetMassParticleActors_OutParticleActors) == 0x000230, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetMassParticleActors_OutParticleActors' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Values_Values_1) == 0x000240, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Values_Values_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_5) == 0x000250, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_6) == 0x000258, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, K2Node_DynamicCast_AsNiagara_Actor) == 0x000260, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::K2Node_DynamicCast_AsNiagara_Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, K2Node_DynamicCast_bSuccess_1) == 0x000268, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_5) == 0x00026C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_4) == 0x000270, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Keys_Keys_3) == 0x000278, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Keys_Keys_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_7) == 0x000288, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_6) == 0x000290, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Remove_ReturnValue) == 0x000294, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Remove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_5) == 0x000295, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_IsValid_ReturnValue_2) == 0x000296, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Map_Keys_Keys_4) == 0x000298, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Map_Keys_Keys_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_IsValid_ReturnValue_3) == 0x0002A8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Contains_ReturnValue) == 0x0002A9, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Add_ReturnValue) == 0x0002AC, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Contains_ReturnValue_1) == 0x0002B0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_8) == 0x0002B8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_7) == 0x0002C0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_IsValid_ReturnValue_4) == 0x0002C4, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_6) == 0x0002C5, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Get_Item_9) == 0x0002C8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Get_Item_9' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Length_ReturnValue_8) == 0x0002D0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Length_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Subtract_IntInt_ReturnValue_1) == 0x0002D4, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Subtract_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0002D8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Max_ReturnValue) == 0x0002E0, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Max_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_GetMassParticleActors_OutParticleActors_1) == 0x0002E8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_GetMassParticleActors_OutParticleActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Array_Contains_ReturnValue_2) == 0x0002F8, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Array_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, Temp_int_Loop_Counter_Variable_8) == 0x0002FC, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::Temp_int_Loop_Counter_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_IntInt_ReturnValue_7) == 0x000300, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Add_IntInt_ReturnValue_7) == 0x000304, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_HS_target_list, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x000308, "Member 'BP_HeightenedSenses_VFX_02_C_Update_HS_target_list::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters) == 0x000010, "Wrong size on BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters, ScreenPPAlpha) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters::ScreenPPAlpha' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Update_Screen_PP_parameters::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters) == 0x000004, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters) == 0x000010, "Wrong size on BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters, alpha) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters::alpha' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters, Blink) == 0x000004, "Member 'BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters::Blink' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters, Pulse) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters::Pulse' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters, CallFunc_IsValid_ReturnValue) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_Update_VFX_parameters::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UpdateMassParticle \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticle) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UpdateMassParticle"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticle) == 0x000050, "Wrong size on BP_HeightenedSenses_VFX_02_C_UpdateMassParticle"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticle, InParticleActor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticle::InParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticle, InUpdateData) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticle::InUpdateData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect) == 0x000128, "Wrong size on BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, ParticleActor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::ParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, UpdateData) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::UpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, GoldColor) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::GoldColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, BloodResonanceColor) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::BloodResonanceColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, Heartbeat_material) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::Heartbeat_material' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, Particle) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::Particle' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_GetComponentByClass_ReturnValue) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_GetAttachParentActor_ReturnValue) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_IsValid_ReturnValue) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_IsValid_ReturnValue_1) == 0x000091, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_GetAttachParentActor_ReturnValue_1) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_GetAttachParentActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, Temp_int_Loop_Counter_Variable) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Add_IntInt_ReturnValue) == 0x0000A4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_1) == 0x0000B4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_1) == 0x0000C4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_GetAttachParentActor_ReturnValue_2) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_GetAttachParentActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_2) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_2) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_IsValid_ReturnValue_2) == 0x0000D9, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000E0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Array_Length_ReturnValue) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Less_IntInt_ReturnValue) == 0x0000F4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Array_Add_ReturnValue) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_VSize_ReturnValue) == 0x000100, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_3) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_3) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, Temp_int_Array_Index_Variable) == 0x000114, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_Array_Get_Item) == 0x000118, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_IsValid_ReturnValue_3) == 0x000120, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x000124, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffect::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange) == 0x0000F0, "Wrong size on BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, ParticleActor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::ParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, UpdateData) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::UpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, GoldColor) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::GoldColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, BloodResonanceColor) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::BloodResonanceColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, Heartbeat_material) == 0x000070, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::Heartbeat_material' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, Particle) == 0x000078, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::Particle' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, Temp_int_Array_Index_Variable) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_IsValid_ReturnValue) == 0x000084, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_GetComponentByClass_ReturnValue) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_IsValid_ReturnValue_1) == 0x000090, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, Temp_object_Variable) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_GetAttachParentActor_ReturnValue) == 0x0000A0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, Temp_int_Loop_Counter_Variable) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Add_IntInt_ReturnValue) == 0x0000AC, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_IsValid_ReturnValue_2) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000B8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Array_Get_Item) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Array_Length_ReturnValue) == 0x0000D0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_IsValid_ReturnValue_3) == 0x0000D4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Less_IntInt_ReturnValue) == 0x0000D5, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_GetAttachParentActor_ReturnValue_1) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_GetAttachParentActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Map_Find_Value) == 0x0000E0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_Map_Find_ReturnValue) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange, CallFunc_NotEqual_ObjectObject_ReturnValue) == 0x0000E9, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateMassParticleEffectLODChange::CallFunc_NotEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UpdateParticleColor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UpdateParticleColor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor) == 0x000140, "Wrong size on BP_HeightenedSenses_VFX_02_C_UpdateParticleColor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Particle) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Particle' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, HSTypeTag) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::HSTypeTag' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, IsInCombat) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::IsInCombat' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, IsWhereIsWally) == 0x000029, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::IsWhereIsWally' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, BloodResonanceType) == 0x00002A, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::BloodResonanceType' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, BloodResonanceState_0) == 0x00002B, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::BloodResonanceState_0' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Cloaked) == 0x00002C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Cloaked' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, ResonanceColor) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::ResonanceColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, GoldColor) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::GoldColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, ParticleColor) == 0x000050, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::ParticleColor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Temp_int_Array_Index_Variable) == 0x000060, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Temp_bool_Variable) == 0x000064, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Not_PreBool_ReturnValue) == 0x000065, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_IsValid_ReturnValue) == 0x000066, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Temp_bool_True_if_break_was_hit_Variable) == 0x000067, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Not_PreBool_ReturnValue_1) == 0x000068, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_Value) == 0x00006C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_ReturnValue) == 0x00007C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Temp_int_Loop_Counter_Variable) == 0x000080, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000088, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Add_IntInt_ReturnValue) == 0x000098, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Array_Get_Item) == 0x00009C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Array_Length_ReturnValue) == 0x0000A4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Less_IntInt_ReturnValue) == 0x0000A8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_BooleanAND_ReturnValue) == 0x0000A9, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Keys_Keys) == 0x0000B0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, Temp_int_Variable) == 0x0000C0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Values_Values) == 0x0000C8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Array_Get_Item_1) == 0x0000D8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_HasTag_ReturnValue) == 0x0000E8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000EC, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Length_ReturnValue) == 0x0000F0, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Subtract_IntInt_ReturnValue) == 0x0000F4, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_LessEqual_IntInt_ReturnValue) == 0x0000F8, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_BooleanAND_ReturnValue_1) == 0x0000F9, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_Value_1) == 0x0000FC, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_ReturnValue_1) == 0x000100, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_Value_2) == 0x000104, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_ReturnValue_2) == 0x000108, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_SelectInt_ReturnValue) == 0x00010C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_SelectInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x000110, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000118, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000120, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_BooleanAND_ReturnValue_2) == 0x000121, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_Value_3) == 0x000124, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_Map_Find_ReturnValue_3) == 0x000134, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x000138, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateParticleColor, CallFunc_SetVariableFloat_InValue_ImplicitCast_1) == 0x00013C, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateParticleColor::CallFunc_SetVariableFloat_InValue_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality) == 0x000001, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality) == 0x000001, "Wrong size on BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality, Optimize_) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UpdateShadowQuality::Optimize_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_UserConstructionScript \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_UserConstructionScript"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript) == 0x000050, "Wrong size on BP_HeightenedSenses_VFX_02_C_UserConstructionScript"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_GetViewportSize_ReturnValue) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_GetViewportSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_IsPIE_ReturnValue) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_IsPIE_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_BreakVector2D_X) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_BreakVector2D_Y) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_GetGameUserSettings_ReturnValue) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_GetGameUserSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_UserConstructionScript, CallFunc_SelectFloat_ReturnValue) == 0x000048, "Member 'BP_HeightenedSenses_VFX_02_C_UserConstructionScript::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor) == 0x000038, "Wrong size on BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Actor) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, BloodResonanceType) == 0x000008, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::BloodResonanceType' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, BloodResonanceState_0) == 0x000009, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::BloodResonanceState_0' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable) == 0x00000A, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_IsValid_ReturnValue) == 0x00000B, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_DoesImplementInterface_ReturnValue) == 0x00000C, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_1) == 0x00000D, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_2) == 0x00000E, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_3) == 0x00000F, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_4) == 0x000010, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_5) == 0x000011, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_6) == 0x000012, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_7) == 0x000013, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, Temp_byte_Variable_8) == 0x000014, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::Temp_byte_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_GetMassBloodResonanceType_ReturnValue) == 0x000021, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_GetMassBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_GetMassBloodResonanceState_ReturnValue) == 0x000022, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_GetMassBloodResonanceState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000028, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_IsMassCharacter_ReturnValue) == 0x000031, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, CallFunc_GetXPBloodResonanceType_ReturnValue) == 0x000032, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::CallFunc_GetXPBloodResonanceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor, K2Node_Select_Default) == 0x000033, "Member 'BP_HeightenedSenses_VFX_02_C_GetBloodResonanceFromActor::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_GetHighlightRadius \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_GetHighlightRadius) == 0x000004, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_GetHighlightRadius"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_GetHighlightRadius) == 0x000004, "Wrong size on BP_HeightenedSenses_VFX_02_C_GetHighlightRadius"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_GetHighlightRadius, ReturnValue) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_GetHighlightRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HeightenedSenses_VFX_02_C_Is_Animate \ +static_assert(alignof(BP_HeightenedSenses_VFX_02_C_Is_Animate) == 0x000008, "Wrong alignment on BP_HeightenedSenses_VFX_02_C_Is_Animate"); \ +static_assert(sizeof(BP_HeightenedSenses_VFX_02_C_Is_Animate) == 0x000028, "Wrong size on BP_HeightenedSenses_VFX_02_C_Is_Animate"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Is_Animate, Tag_Container) == 0x000000, "Member 'BP_HeightenedSenses_VFX_02_C_Is_Animate::Tag_Container' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Is_Animate, Is_being) == 0x000020, "Member 'BP_HeightenedSenses_VFX_02_C_Is_Animate::Is_being' has a wrong offset!"); \ +static_assert(offsetof(BP_HeightenedSenses_VFX_02_C_Is_Animate, CallFunc_HasTag_ReturnValue) == 0x000021, "Member 'BP_HeightenedSenses_VFX_02_C_Is_Animate::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_HeightenedSenses_VFX_02_C \ +static_assert(alignof(ABP_HeightenedSenses_VFX_02_C) == 0x000008, "Wrong alignment on ABP_HeightenedSenses_VFX_02_C"); \ +static_assert(sizeof(ABP_HeightenedSenses_VFX_02_C) == 0x0009D0, "Wrong size on ABP_HeightenedSenses_VFX_02_C"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_HeightenedSenses_VFX_02_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HumanHeartBeat_State_Idle) == 0x0002A8, "Member 'ABP_HeightenedSenses_VFX_02_C::HumanHeartBeat_State_Idle' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, NS_HeightenedSenses) == 0x0002B0, "Member 'ABP_HeightenedSenses_VFX_02_C::NS_HeightenedSenses' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, DefaultSceneRoot) == 0x0002B8, "Member 'ABP_HeightenedSenses_VFX_02_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___particles_Pulse_36C2A0E04DFE70F335D6309BF3B806DA) == 0x0002C0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___particles_Pulse_36C2A0E04DFE70F335D6309BF3B806DA' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___particles_Blink_36C2A0E04DFE70F335D6309BF3B806DA) == 0x0002C4, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___particles_Blink_36C2A0E04DFE70F335D6309BF3B806DA' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___particles_Alpha_36C2A0E04DFE70F335D6309BF3B806DA) == 0x0002C8, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___particles_Alpha_36C2A0E04DFE70F335D6309BF3B806DA' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___particles__Direction_36C2A0E04DFE70F335D6309BF3B806DA) == 0x0002CC, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___particles__Direction_36C2A0E04DFE70F335D6309BF3B806DA' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___particles) == 0x0002D0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___particles' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___screen_effects_Alpha_61D94D734294BCD83873A5A96FD8AE90) == 0x0002D8, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___screen_effects_Alpha_61D94D734294BCD83873A5A96FD8AE90' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___screen_effects__Direction_61D94D734294BCD83873A5A96FD8AE90) == 0x0002DC, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___screen_effects__Direction_61D94D734294BCD83873A5A96FD8AE90' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_out___screen_effects) == 0x0002E0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_out___screen_effects' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_timeline_Pulse_3ED5071B4C5D506DA70E8F8FBA6DE8B8) == 0x0002E8, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_timeline_Pulse_3ED5071B4C5D506DA70E8F8FBA6DE8B8' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_timeline_Blink_3ED5071B4C5D506DA70E8F8FBA6DE8B8) == 0x0002EC, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_timeline_Blink_3ED5071B4C5D506DA70E8F8FBA6DE8B8' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_timeline_Alpha_3ED5071B4C5D506DA70E8F8FBA6DE8B8) == 0x0002F0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_timeline_Alpha_3ED5071B4C5D506DA70E8F8FBA6DE8B8' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_timeline__Direction_3ED5071B4C5D506DA70E8F8FBA6DE8B8) == 0x0002F4, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_timeline__Direction_3ED5071B4C5D506DA70E8F8FBA6DE8B8' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_timeline) == 0x0002F8, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Pulse_expansion_duration) == 0x000300, "Member 'ABP_HeightenedSenses_VFX_02_C::Pulse_expansion_duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, FadeDuration_particle_effects) == 0x000308, "Member 'ABP_HeightenedSenses_VFX_02_C::FadeDuration_particle_effects' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Material) == 0x000310, "Member 'ABP_HeightenedSenses_VFX_02_C::Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heightened_Capture_) == 0x000318, "Member 'ABP_HeightenedSenses_VFX_02_C::Heightened_Capture_' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heightened_VFX_Heart) == 0x000320, "Member 'ABP_HeightenedSenses_VFX_02_C::Heightened_VFX_Heart' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AllActorTargets) == 0x000328, "Member 'ABP_HeightenedSenses_VFX_02_C::AllActorTargets' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, All_Spawned_Systems) == 0x000338, "Member 'ABP_HeightenedSenses_VFX_02_C::All_Spawned_Systems' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Species_with_no_heartbeatUseRes) == 0x000388, "Member 'ABP_HeightenedSenses_VFX_02_C::Species_with_no_heartbeatUseRes' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Species_without_organs) == 0x0003A8, "Member 'ABP_HeightenedSenses_VFX_02_C::Species_without_organs' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, WideEnemies) == 0x0003C8, "Member 'ABP_HeightenedSenses_VFX_02_C::WideEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeightenedSensePassive) == 0x0003E8, "Member 'ABP_HeightenedSenses_VFX_02_C::HeightenedSensePassive' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeightenedSenseAgressive) == 0x0003F8, "Member 'ABP_HeightenedSenses_VFX_02_C::HeightenedSenseAgressive' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, CombatColour) == 0x000408, "Member 'ABP_HeightenedSenses_VFX_02_C::CombatColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, SpeciesColours) == 0x000418, "Member 'ABP_HeightenedSenses_VFX_02_C::SpeciesColours' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceColours) == 0x000468, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceColours' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceSymbol) == 0x0004B8, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceSymbol' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Idle_Tag) == 0x000508, "Member 'ABP_HeightenedSenses_VFX_02_C::Idle_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Patrol_Tag) == 0x000510, "Member 'ABP_HeightenedSenses_VFX_02_C::Patrol_Tag' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AudioFOV) == 0x000518, "Member 'ABP_HeightenedSenses_VFX_02_C::AudioFOV' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeartBeat_Variance) == 0x000520, "Member 'ABP_HeightenedSenses_VFX_02_C::HeartBeat_Variance' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeartBeat_Material_instances) == 0x000528, "Member 'ABP_HeightenedSenses_VFX_02_C::HeartBeat_Material_instances' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heart_beat_variance_map) == 0x000578, "Member 'ABP_HeightenedSenses_VFX_02_C::Heart_beat_variance_map' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Vampiric_Vision_data_asset) == 0x0005C8, "Member 'ABP_HeightenedSenses_VFX_02_C::Vampiric_Vision_data_asset' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fade_in_duration) == 0x0005D0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fade_in_duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Screen_post_process_camera_modifier) == 0x0005D8, "Member 'ABP_HeightenedSenses_VFX_02_C::Screen_post_process_camera_modifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, FadeDuration_screen_effects) == 0x0005E0, "Member 'ABP_HeightenedSenses_VFX_02_C::FadeDuration_screen_effects' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Character_post_process_camera_modifier) == 0x0005E8, "Member 'ABP_HeightenedSenses_VFX_02_C::Character_post_process_camera_modifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Fading_out) == 0x0005F0, "Member 'ABP_HeightenedSenses_VFX_02_C::Fading_out' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Distance) == 0x0005F4, "Member 'ABP_HeightenedSenses_VFX_02_C::Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Item) == 0x0005F8, "Member 'ABP_HeightenedSenses_VFX_02_C::Item' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AnimateSpecies) == 0x000600, "Member 'ABP_HeightenedSenses_VFX_02_C::AnimateSpecies' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Faded_in) == 0x000620, "Member 'ABP_HeightenedSenses_VFX_02_C::Faded_in' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceState) == 0x000628, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceState' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heart_beat_variance_map_nearby) == 0x000678, "Member 'ABP_HeightenedSenses_VFX_02_C::Heart_beat_variance_map_nearby' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, MassActors) == 0x0006C8, "Member 'ABP_HeightenedSenses_VFX_02_C::MassActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, DepthCapture) == 0x000718, "Member 'ABP_HeightenedSenses_VFX_02_C::DepthCapture' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceAudioMap) == 0x000720, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceAudioMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceStateAudioMap) == 0x000770, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceStateAudioMap' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Clan_Trainer_Tags) == 0x0007C0, "Member 'ABP_HeightenedSenses_VFX_02_C::Clan_Trainer_Tags' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, UpdateSystemsTimer) == 0x0007E0, "Member 'ABP_HeightenedSenses_VFX_02_C::UpdateSystemsTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, ParticleUpdateFrequency) == 0x0007E8, "Member 'ABP_HeightenedSenses_VFX_02_C::ParticleUpdateFrequency' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, UpdateHBTimer) == 0x0007F0, "Member 'ABP_HeightenedSenses_VFX_02_C::UpdateHBTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heart_beat_variance_map_always) == 0x0007F8, "Member 'ABP_HeightenedSenses_VFX_02_C::Heart_beat_variance_map_always' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, NewSystem_SpawnRate) == 0x000848, "Member 'ABP_HeightenedSenses_VFX_02_C::NewSystem_SpawnRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, NewSystem_Lifetime) == 0x00084C, "Member 'ABP_HeightenedSenses_VFX_02_C::NewSystem_Lifetime' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, UpdateMass) == 0x000850, "Member 'ABP_HeightenedSenses_VFX_02_C::UpdateMass' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, MassParticles) == 0x000858, "Member 'ABP_HeightenedSenses_VFX_02_C::MassParticles' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, DoInitalUpdate) == 0x0008A8, "Member 'ABP_HeightenedSenses_VFX_02_C::DoInitalUpdate' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, InialMassUpdateRecieved) == 0x0008A9, "Member 'ABP_HeightenedSenses_VFX_02_C::InialMassUpdateRecieved' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeartbeatAudioEvent) == 0x0008B0, "Member 'ABP_HeightenedSenses_VFX_02_C::HeartbeatAudioEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AudioRadius) == 0x0008B8, "Member 'ABP_HeightenedSenses_VFX_02_C::AudioRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AudioFOVcos) == 0x0008C0, "Member 'ABP_HeightenedSenses_VFX_02_C::AudioFOVcos' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Heart_beat_variance_map_nearby_lastTick) == 0x0008C8, "Member 'ABP_HeightenedSenses_VFX_02_C::Heart_beat_variance_map_nearby_lastTick' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, AudioAlwaysPlayRadius) == 0x000918, "Member 'ABP_HeightenedSenses_VFX_02_C::AudioAlwaysPlayRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, HeartBeatRangeBPM) == 0x000920, "Member 'ABP_HeightenedSenses_VFX_02_C::HeartBeatRangeBPM' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, MalkavianFeederTags) == 0x000930, "Member 'ABP_HeightenedSenses_VFX_02_C::MalkavianFeederTags' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, BloodResonanceToDeactivate) == 0x000950, "Member 'ABP_HeightenedSenses_VFX_02_C::BloodResonanceToDeactivate' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, CleanOverlay) == 0x0009A0, "Member 'ABP_HeightenedSenses_VFX_02_C::CleanOverlay' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, ParticleActorsToRemove) == 0x0009A8, "Member 'ABP_HeightenedSenses_VFX_02_C::ParticleActorsToRemove' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Mid) == 0x0009B8, "Member 'ABP_HeightenedSenses_VFX_02_C::Mid' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, Aspect_Ratio_Multiplier_) == 0x0009C0, "Member 'ABP_HeightenedSenses_VFX_02_C::Aspect_Ratio_Multiplier_' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, EnemyCloaked) == 0x0009C8, "Member 'ABP_HeightenedSenses_VFX_02_C::EnemyCloaked' has a wrong offset!"); \ +static_assert(offsetof(ABP_HeightenedSenses_VFX_02_C, DefaultShadowQuality) == 0x0009CC, "Member 'ABP_HeightenedSenses_VFX_02_C::DefaultShadowQuality' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_Collect_data_from_data_asset \ +static_assert(alignof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset) == 0x000008, "Wrong alignment on GA_HeightenedSensesPulse_C_Collect_data_from_data_asset"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset) == 0x000048, "Wrong size on GA_HeightenedSensesPulse_C_Collect_data_from_data_asset"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue) == 0x000008, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_1) == 0x00000C, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_2) == 0x000010, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000014, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_3) == 0x000018, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_GetMagnitude_ReturnValue_4) == 0x00001C, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_GetMagnitude_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000028, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Greater_DoubleDouble_B_ImplicitCast) == 0x000030, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Greater_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000038, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Collect_data_from_data_asset, K2Node_VariableSet_Max_radius_ImplicitCast) == 0x000040, "Member 'GA_HeightenedSensesPulse_C_Collect_data_from_data_asset::K2Node_VariableSet_Max_radius_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse \ +static_assert(alignof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse) == 0x000010, "Wrong alignment on GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse) == 0x000530, "Wrong size on GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, EntryPoint) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_CustomEvent_WaitingTime) == 0x000004, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, Temp_real_Variable) == 0x000018, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000020, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_CreateDelegate_OutputDelegate_1) == 0x00002C, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, Temp_int_Loop_Counter_Variable) == 0x00003C, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000040, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_TaskWaitDelay_ReturnValue) == 0x000050, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Add_IntInt_ReturnValue) == 0x000058, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_1) == 0x00005C, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000060, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_Event_bWasCancelled) == 0x000068, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x000070, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_2) == 0x000078, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_3) == 0x000079, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000080, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000088, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_WrestlerHeightenedSensesTargeting_ReturnValue) == 0x000090, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_WrestlerHeightenedSensesTargeting_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetTransform_ReturnValue) == 0x0000A0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_BreakTransform_Location) == 0x000100, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_BreakTransform_Rotation) == 0x000118, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_BreakTransform_Scale) == 0x000130, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_4) == 0x000148, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_MakeTransform_ReturnValue) == 0x000150, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0001B0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x0001C0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_FinishSpawningActor_ReturnValue) == 0x000220, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_K2_AttachToActor_ReturnValue) == 0x000228, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_5) == 0x000229, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_6) == 0x00022A, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000230, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_CreateDelegate_OutputDelegate_2) == 0x000238, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000248, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_Event_EventData) == 0x000320, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Array_Length_ReturnValue) == 0x0003D0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_K2_CommitAbility_ReturnValue) == 0x0003D4, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Less_IntInt_ReturnValue) == 0x0003D5, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0003D8, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, Temp_int_Array_Index_Variable) == 0x0003E0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetHighlightEffectsActor_ReturnValue) == 0x0003E8, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetHighlightEffectsActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Array_Get_Item) == 0x0003F0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_MakeGameplayCueParameters_ReturnValue_1) == 0x0003F8, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_MakeGameplayCueParameters_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_7) == 0x0004D0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, K2Node_CreateDelegate_OutputDelegate_3) == 0x0004D4, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x0004E4, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x0004F0, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0004F8, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x000500, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_FindCameraModifierByClass_ReturnValue) == 0x000508, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_FindCameraModifierByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_IsValid_ReturnValue_8) == 0x000510, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_WrestlerHeightenedSensesTargeting_MaxRadius_ImplicitCast) == 0x000514, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_WrestlerHeightenedSensesTargeting_MaxRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000518, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000520, "Member 'GA_HeightenedSensesPulse_C_ExecuteUbergraph_GA_HeightenedSensesPulse::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_Handle_Target_Update \ +static_assert(alignof(GA_HeightenedSensesPulse_C_Handle_Target_Update) == 0x000008, "Wrong alignment on GA_HeightenedSensesPulse_C_Handle_Target_Update"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_Handle_Target_Update) == 0x000048, "Wrong size on GA_HeightenedSensesPulse_C_Handle_Target_Update"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, Array_Index) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::Array_Index' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, Target_Actor) == 0x000008, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::Target_Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, Returned_targets) == 0x000010, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::Returned_targets' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, CallFunc_Array_RemoveItem_ReturnValue) == 0x000030, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Handle_Target_Update, CallFunc_GetTargets_ReturnValue) == 0x000038, "Member 'GA_HeightenedSensesPulse_C_Handle_Target_Update::CallFunc_GetTargets_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_K2_OnEndAbility \ +static_assert(alignof(GA_HeightenedSensesPulse_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_HeightenedSensesPulse_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_HeightenedSensesPulse_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E \ +static_assert(alignof(GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E) == 0x000004, "Wrong alignment on GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E) == 0x000004, "Wrong size on GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E, WaitingTime) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_OnControlCueProcess_E51404264A00202BFF352BA334AAFE8E::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_Remove_cooldown_tag \ +static_assert(alignof(GA_HeightenedSensesPulse_C_Remove_cooldown_tag) == 0x000008, "Wrong alignment on GA_HeightenedSensesPulse_C_Remove_cooldown_tag"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_Remove_cooldown_tag) == 0x000018, "Wrong size on GA_HeightenedSensesPulse_C_Remove_cooldown_tag"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Remove_cooldown_tag, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_Remove_cooldown_tag::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Remove_cooldown_tag, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000008, "Member 'GA_HeightenedSensesPulse_C_Remove_cooldown_tag::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Remove_cooldown_tag, CallFunc_RemoveActiveEffectsWithTags_ReturnValue) == 0x000010, "Member 'GA_HeightenedSensesPulse_C_Remove_cooldown_tag::CallFunc_RemoveActiveEffectsWithTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX \ +static_assert(alignof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX) == 0x000010, "Wrong alignment on GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX) == 0x000100, "Wrong size on GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, SphereTransform) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::SphereTransform' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, Target_Player) == 0x000060, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::Target_Player' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_GetPlayerController_ReturnValue) == 0x000068, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_MakeTransform_ReturnValue) == 0x000070, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000D0, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0000D8, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000E0, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, K2Node_DynamicCast_AsCM_HS_Pulse_PP) == 0x0000E8, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::K2Node_DynamicCast_AsCM_HS_Pulse_PP' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, K2Node_DynamicCast_bSuccess) == 0x0000F0, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000F8, "Member 'GA_HeightenedSensesPulse_C_Spawn_Post_Process_FX::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_HeightenedSensesPulse_C_K2_CanActivateAbility \ +static_assert(alignof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_HeightenedSensesPulse_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_HeightenedSensesPulse_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_HeightenedSensesPulse_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_HeightenedSensesPulse_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_HeightenedSensesPulse_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_HeightenedSensesPulse_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_HeightenedSensesPulse_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_HeightenedSensesPulse_C \ +static_assert(alignof(UGA_HeightenedSensesPulse_C) == 0x000008, "Wrong alignment on UGA_HeightenedSensesPulse_C"); \ +static_assert(sizeof(UGA_HeightenedSensesPulse_C) == 0x0006E8, "Wrong size on UGA_HeightenedSensesPulse_C"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, UberGraphFrame) == 0x000668, "Member 'UGA_HeightenedSensesPulse_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, CameraModifier) == 0x000670, "Member 'UGA_HeightenedSensesPulse_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Duration_timer_handle) == 0x000678, "Member 'UGA_HeightenedSensesPulse_C::Duration_timer_handle' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, End_ability_timer) == 0x000680, "Member 'UGA_HeightenedSensesPulse_C::End_ability_timer' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Time_remaining_HeraProperty) == 0x000688, "Member 'UGA_HeightenedSensesPulse_C::Time_remaining_HeraProperty' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Pulse_Duration) == 0x000690, "Member 'UGA_HeightenedSensesPulse_C::Pulse_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Total_duration) == 0x000698, "Member 'UGA_HeightenedSensesPulse_C::Total_duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Duration_until_fade) == 0x0006A0, "Member 'UGA_HeightenedSensesPulse_C::Duration_until_fade' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Spawned_HS_VFX) == 0x0006A8, "Member 'UGA_HeightenedSensesPulse_C::Spawned_HS_VFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Vampire_Vision_Config) == 0x0006B0, "Member 'UGA_HeightenedSensesPulse_C::Vampire_Vision_Config' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Spawned_pulse_actor) == 0x0006B8, "Member 'UGA_HeightenedSensesPulse_C::Spawned_pulse_actor' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Max_radius) == 0x0006C0, "Member 'UGA_HeightenedSensesPulse_C::Max_radius' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, TargetingTask) == 0x0006C8, "Member 'UGA_HeightenedSensesPulse_C::TargetingTask' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Start_time) == 0x0006D0, "Member 'UGA_HeightenedSensesPulse_C::Start_time' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Ended_naturally) == 0x0006D8, "Member 'UGA_HeightenedSensesPulse_C::Ended_naturally' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, Fade_Duration) == 0x0006DC, "Member 'UGA_HeightenedSensesPulse_C::Fade_Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, ReadyToExit) == 0x0006E0, "Member 'UGA_HeightenedSensesPulse_C::ReadyToExit' has a wrong offset!"); \ +static_assert(offsetof(UGA_HeightenedSensesPulse_C, ManualCancel) == 0x0006E1, "Member 'UGA_HeightenedSensesPulse_C::ManualCancel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPDA_Wrestler_DynamicEnemySpawnSystem_C \ +static_assert(alignof(UPDA_Wrestler_DynamicEnemySpawnSystem_C) == 0x000008, "Wrong alignment on UPDA_Wrestler_DynamicEnemySpawnSystem_C"); \ +static_assert(sizeof(UPDA_Wrestler_DynamicEnemySpawnSystem_C) == 0x0000D8, "Wrong size on UPDA_Wrestler_DynamicEnemySpawnSystem_C"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, GlobalSeed) == 0x000030, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::GlobalSeed' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_A___Allowed_Enemies) == 0x000038, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_A___Allowed_Enemies' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_A___Allowed_Elites) == 0x000048, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_A___Allowed_Elites' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_A___Allowed_Snipers) == 0x000058, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_A___Allowed_Snipers' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_B___Allowed_Enemies) == 0x000068, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_B___Allowed_Enemies' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_B___Allowed_Elites) == 0x000078, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_B___Allowed_Elites' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Faction_B___Allowed_Snipers) == 0x000088, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Faction_B___Allowed_Snipers' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, __chance_of_elite) == 0x000098, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::__chance_of_elite' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, __chance_of_sniper) == 0x0000A0, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::__chance_of_sniper' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, __of_max_enemies_in_volume_to_use) == 0x0000A8, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::__of_max_enemies_in_volume_to_use' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Proportion_of_Faction_A) == 0x0000B8, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Proportion_of_Faction_A' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Proportion__of_Faction_B) == 0x0000C0, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Proportion__of_Faction_B' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Proportion_of_Infighting) == 0x0000C8, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Proportion_of_Infighting' has a wrong offset!"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_C, Proportion_of_No_Combat) == 0x0000D0, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_C::Proportion_of_No_Combat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_InteractStats_C \ +static_assert(alignof(UGE_InteractStats_C) == 0x000008, "Wrong alignment on UGE_InteractStats_C"); \ +static_assert(sizeof(UGE_InteractStats_C) == 0x000A70, "Wrong size on UGE_InteractStats_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleActionPrompt_C \ +static_assert(alignof(UCommonTextStyleActionPrompt_C) == 0x000010, "Wrong alignment on UCommonTextStyleActionPrompt_C"); \ +static_assert(sizeof(UCommonTextStyleActionPrompt_C) == 0x0001B0, "Wrong size on UCommonTextStyleActionPrompt_C"); \ + +#define DUMPER7_ASSERTS_CM_RestrictView_C_BlueprintModifyCamera \ +static_assert(alignof(CM_RestrictView_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_RestrictView_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_RestrictView_C_BlueprintModifyCamera) == 0x0000A0, "Wrong size on CM_RestrictView_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_RestrictView_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_RestrictView_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_RestrictView_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_RestrictView_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_RestrictView_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_RestrictView_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_RestrictView_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000074, "Member 'CM_RestrictView_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'CM_RestrictView_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000080, "Member 'CM_RestrictView_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000088, "Member 'CM_RestrictView_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x000090, "Member 'CM_RestrictView_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_RestrictView_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000098, "Member 'CM_RestrictView_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_RestrictView_C \ +static_assert(alignof(UCM_RestrictView_C) == 0x000008, "Wrong alignment on UCM_RestrictView_C"); \ +static_assert(sizeof(UCM_RestrictView_C) == 0x0000A8, "Wrong size on UCM_RestrictView_C"); \ +static_assert(offsetof(UCM_RestrictView_C, MenuBool) == 0x0000A0, "Member 'UCM_RestrictView_C::MenuBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_ExplodingBolt_C_CollisionImpact \ +static_assert(alignof(WrestlerProjectile_ExplodingBolt_C_CollisionImpact) == 0x000008, "Wrong alignment on WrestlerProjectile_ExplodingBolt_C_CollisionImpact"); \ +static_assert(sizeof(WrestlerProjectile_ExplodingBolt_C_CollisionImpact) == 0x0000E8, "Wrong size on WrestlerProjectile_ExplodingBolt_C_CollisionImpact"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_CollisionImpact, OutHit) == 0x000000, "Member 'WrestlerProjectile_ExplodingBolt_C_CollisionImpact::OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt \ +static_assert(alignof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt) == 0x000008, "Wrong alignment on WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt"); \ +static_assert(sizeof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt) == 0x0002B0, "Wrong size on WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, EntryPoint) == 0x000000, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_bBlockingHit) == 0x000006, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_bInitialOverlap) == 0x000007, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_Time) == 0x000008, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_Distance) == 0x00000C, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_Location) == 0x000010, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_ImpactPoint) == 0x000028, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_Normal) == 0x000040, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_ImpactNormal) == 0x000058, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_PhysMat) == 0x000070, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_HitActor) == 0x000078, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_HitComponent) == 0x000080, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_HitBoneName) == 0x000088, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_BoneName) == 0x000090, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_HitItem) == 0x000098, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_ElementIndex) == 0x00009C, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_FaceIndex) == 0x0000A0, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_TraceStart) == 0x0000A8, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_BreakHitResult_TraceEnd) == 0x0000C0, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0000D8, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0001C0, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt, K2Node_Event_OutHit) == 0x0001C8, "Member 'WrestlerProjectile_ExplodingBolt_C_ExecuteUbergraph_WrestlerProjectile_ExplodingBolt::K2Node_Event_OutHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WrestlerProjectile_ExplodingBolt_C_SpawnBolt \ +static_assert(alignof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt) == 0x000010, "Wrong alignment on WrestlerProjectile_ExplodingBolt_C_SpawnBolt"); \ +static_assert(sizeof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt) == 0x000780, "Wrong size on WrestlerProjectile_ExplodingBolt_C_SpawnBolt"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, HitActor) == 0x000000, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, SpawnedBolt) == 0x000008, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::SpawnedBolt' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bBlockingHit) == 0x000011, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bInitialOverlap) == 0x000012, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Time) == 0x000014, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Distance) == 0x000018, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Location) == 0x000020, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactPoint) == 0x000038, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Normal) == 0x000050, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactNormal) == 0x000068, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_PhysMat) == 0x000080, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitActor) == 0x000088, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitComponent) == 0x000090, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitBoneName) == 0x000098, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_BoneName) == 0x0000A0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitItem) == 0x0000A8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ElementIndex) == 0x0000AC, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_FaceIndex) == 0x0000B0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceStart) == 0x0000B8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceEnd) == 0x0000D0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_GetComponentByClass_ReturnValue) == 0x0000E8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_IsValid_ReturnValue_1) == 0x0000F0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_GetMassEntityActor_OutActor) == 0x0000F8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_GetMassEntityActor_OutActor' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_GetMassEntityActor_ReturnValue) == 0x000100, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_GetMassEntityActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_RandomFloatInRange_ReturnValue) == 0x000108, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000110, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000118, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeRotator_ReturnValue) == 0x000120, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x000138, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeVector_ReturnValue) == 0x000140, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bBlockingHit_1) == 0x000158, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bBlockingHit_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bInitialOverlap_1) == 0x000159, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bInitialOverlap_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Time_1) == 0x00015C, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Time_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Distance_1) == 0x000160, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Distance_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Location_1) == 0x000168, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Location_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactPoint_1) == 0x000180, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactPoint_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Normal_1) == 0x000198, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Normal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactNormal_1) == 0x0001B0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactNormal_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_PhysMat_1) == 0x0001C8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_PhysMat_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitActor_1) == 0x0001D0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitActor_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitComponent_1) == 0x0001D8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitComponent_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitBoneName_1) == 0x0001E0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitBoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_BoneName_1) == 0x0001E8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_BoneName_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitItem_1) == 0x0001F0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitItem_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ElementIndex_1) == 0x0001F4, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ElementIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_FaceIndex_1) == 0x0001F8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_FaceIndex_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceStart_1) == 0x000200, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceStart_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceEnd_1) == 0x000218, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceEnd_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeTransform_ReturnValue) == 0x000230, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character) == 0x000290, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::K2Node_DynamicCast_AsBP_Wrestler_Test_Player_Character' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, K2Node_DynamicCast_bSuccess) == 0x000298, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_SetActorRelativeTransform_SweepHitResult) == 0x0002A0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_SetActorRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000388, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0003A0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_FindClosestBone_K2_BoneLocation) == 0x0003A8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_FindClosestBone_K2_BoneLocation' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_FindClosestBone_K2_ReturnValue) == 0x0003C0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_FindClosestBone_K2_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0003C8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_AttachToComponent_ReturnValue_1) == 0x0003E0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_AttachToComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0003E8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_SetActorLocation_ReturnValue) == 0x0004D0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_GetActorForwardVector_ReturnValue) == 0x0004D8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_GetActorRotation_ReturnValue) == 0x0004F0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000508, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bBlockingHit_2) == 0x000520, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bBlockingHit_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bInitialOverlap_2) == 0x000521, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bInitialOverlap_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Time_2) == 0x000524, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Time_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Distance_2) == 0x000528, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Distance_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Location_2) == 0x000530, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Location_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactPoint_2) == 0x000548, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactPoint_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Normal_2) == 0x000560, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Normal_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactNormal_2) == 0x000578, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactNormal_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_PhysMat_2) == 0x000590, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_PhysMat_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitActor_2) == 0x000598, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitActor_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitComponent_2) == 0x0005A0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitComponent_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitBoneName_2) == 0x0005A8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitBoneName_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_BoneName_2) == 0x0005B0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_BoneName_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitItem_2) == 0x0005B8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitItem_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ElementIndex_2) == 0x0005BC, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ElementIndex_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_FaceIndex_2) == 0x0005C0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_FaceIndex_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceStart_2) == 0x0005C8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceStart_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceEnd_2) == 0x0005E0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceEnd_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bBlockingHit_3) == 0x0005F8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bBlockingHit_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_bInitialOverlap_3) == 0x0005F9, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_bInitialOverlap_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Time_3) == 0x0005FC, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Time_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Distance_3) == 0x000600, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Distance_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Location_3) == 0x000608, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Location_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactPoint_3) == 0x000620, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactPoint_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_Normal_3) == 0x000638, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_Normal_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ImpactNormal_3) == 0x000650, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ImpactNormal_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_PhysMat_3) == 0x000668, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_PhysMat_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitActor_3) == 0x000670, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitActor_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitComponent_3) == 0x000678, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitComponent_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitBoneName_3) == 0x000680, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitBoneName_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_BoneName_3) == 0x000688, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_BoneName_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_HitItem_3) == 0x000690, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_HitItem_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_ElementIndex_3) == 0x000694, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_ElementIndex_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_FaceIndex_3) == 0x000698, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_FaceIndex_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceStart_3) == 0x0006A0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceStart_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BreakHitResult_TraceEnd_3) == 0x0006B8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BreakHitResult_TraceEnd_3' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_K2_AttachToComponent_ReturnValue_2) == 0x0006D0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_K2_AttachToComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_Add_VectorVector_ReturnValue) == 0x0006D8, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_IsValid_ReturnValue_2) == 0x0006F0, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeTransform_ReturnValue_1) == 0x000700, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000760, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_FinishSpawningActor_ReturnValue) == 0x000768, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000770, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WrestlerProjectile_ExplodingBolt_C_SpawnBolt, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000774, "Member 'WrestlerProjectile_ExplodingBolt_C_SpawnBolt::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerProjectile_ExplodingBolt_C \ +static_assert(alignof(AWrestlerProjectile_ExplodingBolt_C) == 0x000008, "Wrong alignment on AWrestlerProjectile_ExplodingBolt_C"); \ +static_assert(sizeof(AWrestlerProjectile_ExplodingBolt_C) == 0x000528, "Wrong size on AWrestlerProjectile_ExplodingBolt_C"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, UberGraphFrame_WrestlerProjectile_ExplodingBolt_C) == 0x000410, "Member 'AWrestlerProjectile_ExplodingBolt_C::UberGraphFrame_WrestlerProjectile_ExplodingBolt_C' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, PointLight) == 0x000418, "Member 'AWrestlerProjectile_ExplodingBolt_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, SM_Crossbow_Bolt) == 0x000420, "Member 'AWrestlerProjectile_ExplodingBolt_C::SM_Crossbow_Bolt' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, NS_Bullet_trail) == 0x000428, "Member 'AWrestlerProjectile_ExplodingBolt_C::NS_Bullet_trail' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, CachedHit) == 0x000430, "Member 'AWrestlerProjectile_ExplodingBolt_C::CachedHit' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, Bolt) == 0x000518, "Member 'AWrestlerProjectile_ExplodingBolt_C::Bolt' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerProjectile_ExplodingBolt_C, CachedMassHit) == 0x000520, "Member 'AWrestlerProjectile_ExplodingBolt_C::CachedMassHit' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView \ +static_assert(alignof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView) == 0x000008, "Wrong alignment on GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView"); \ +static_assert(sizeof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView) == 0x000288, "Wrong size on GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, EntryPoint) == 0x000000, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_Event_bWasCancelled) == 0x000050, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000058, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_Event_EventData) == 0x000068, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetActorInfo_ReturnValue_1) == 0x000118, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_IsValid_ReturnValue) == 0x000160, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000168, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetControlRotation_ReturnValue) == 0x000170, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetActorEyesViewPoint_OutLocation) == 0x000188, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetActorEyesViewPoint_OutLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetActorEyesViewPoint_OutRotation) == 0x0001A0, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetActorEyesViewPoint_OutRotation' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_Vector_Up_ReturnValue) == 0x0001B8, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_Vector_Up_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetActorInfo_ReturnValue_2) == 0x0001D0, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_IsValid_ReturnValue_1) == 0x000218, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_AsCharacter_Movement_Component_1) == 0x000220, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_AsCharacter_Movement_Component_1' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_bSuccess_1) == 0x000228, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_RemoveCameraModifier_ReturnValue) == 0x000229, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_RemoveCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_AsCM_Restrict_View) == 0x000230, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_AsCM_Restrict_View' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, K2Node_DynamicCast_bSuccess_2) == 0x000238, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_IsValid_ReturnValue_2) == 0x000239, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000240, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000258, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView, CallFunc_MakeRotFromXZ_ReturnValue) == 0x000270, "Member 'GA_RestrictView_C_ExecuteUbergraph_GA_RestrictView::CallFunc_MakeRotFromXZ_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_RestrictView_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_RestrictView_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_RestrictView_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_RestrictView_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_RestrictView_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_RestrictView_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_RestrictView_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_RestrictView_C_K2_OnEndAbility \ +static_assert(alignof(GA_RestrictView_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_RestrictView_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_RestrictView_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_RestrictView_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_RestrictView_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_RestrictView_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_RestrictView_C \ +static_assert(alignof(UGA_RestrictView_C) == 0x000008, "Wrong alignment on UGA_RestrictView_C"); \ +static_assert(sizeof(UGA_RestrictView_C) == 0x000680, "Wrong size on UGA_RestrictView_C"); \ +static_assert(offsetof(UGA_RestrictView_C, UberGraphFrame) == 0x000668, "Member 'UGA_RestrictView_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_RestrictView_C, CameraModifier) == 0x000670, "Member 'UGA_RestrictView_C::CameraModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_RestrictView_C, Player_Camera_Manager) == 0x000678, "Member 'UGA_RestrictView_C::Player_Camera_Manager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Player_HubBoundary_C \ +static_assert(alignof(UGE_Player_HubBoundary_C) == 0x000008, "Wrong alignment on UGE_Player_HubBoundary_C"); \ +static_assert(sizeof(UGE_Player_HubBoundary_C) == 0x000A70, "Wrong size on UGE_Player_HubBoundary_C"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors \ +static_assert(alignof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors) == 0x000008, "Wrong alignment on IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors"); \ +static_assert(sizeof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors) == 0x000068, "Wrong size on IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, EntryPoint) == 0x000000, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_byte_Variable) == 0x000004, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_byte_Variable_1) == 0x000005, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_byte_Variable_2) == 0x000006, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_int_Array_Index_Variable) == 0x000008, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, Temp_byte_Variable_3) == 0x000014, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, K2Node_Event_InAutomata) == 0x000018, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, K2Node_Event_InState) == 0x000020, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_GetActors_Actors) == 0x000028, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_GetActors_Actors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_Array_Get_Item) == 0x000038, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, K2Node_Select_Default) == 0x000040, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000048, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_DoesImplementInterface_ReturnValue) == 0x000059, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_Array_Length_ReturnValue) == 0x00005C, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'IQA_ModifyActors_C_ExecuteUbergraph_IQA_ModifyActors::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActors_C_GetActors \ +static_assert(alignof(IQA_ModifyActors_C_GetActors) == 0x000008, "Wrong alignment on IQA_ModifyActors_C_GetActors"); \ +static_assert(sizeof(IQA_ModifyActors_C_GetActors) == 0x0000D0, "Wrong size on IQA_ModifyActors_C_GetActors"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Actors_0) == 0x000000, "Member 'IQA_ModifyActors_C_GetActors::Actors_0' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, OutActors) == 0x000010, "Member 'IQA_ModifyActors_C_GetActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Array_Index_Variable) == 0x000020, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Array_Index_Variable_1) == 0x00002C, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Loop_Counter_Variable_1) == 0x000030, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Add_IntInt_ReturnValue_1) == 0x000034, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Array_Index_Variable_2) == 0x000038, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, Temp_int_Loop_Counter_Variable_2) == 0x00003C, "Member 'IQA_ModifyActors_C_GetActors::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Add_IntInt_ReturnValue_2) == 0x000040, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Get_Item) == 0x000048, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Length_ReturnValue) == 0x000070, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000078, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Less_IntInt_ReturnValue) == 0x000080, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_IsValid_ReturnValue) == 0x000081, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_AddUnique_ReturnValue) == 0x000084, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Length_ReturnValue_1) == 0x000088, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Get_Item_1) == 0x000090, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000A0, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_GetActorsWithTag_OutActors) == 0x0000A8, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_GetActorsWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Get_Item_2) == 0x0000B8, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_Length_ReturnValue_2) == 0x0000C0, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Array_AddUnique_ReturnValue_1) == 0x0000C4, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_GetActors, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000C8, "Member 'IQA_ModifyActors_C_GetActors::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActors_C_ReceiveExecute \ +static_assert(alignof(IQA_ModifyActors_C_ReceiveExecute) == 0x000008, "Wrong alignment on IQA_ModifyActors_C_ReceiveExecute"); \ +static_assert(sizeof(IQA_ModifyActors_C_ReceiveExecute) == 0x000010, "Wrong size on IQA_ModifyActors_C_ReceiveExecute"); \ +static_assert(offsetof(IQA_ModifyActors_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'IQA_ModifyActors_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActors_C_ReceiveExecute, InState) == 0x000008, "Member 'IQA_ModifyActors_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIQA_ModifyActors_C \ +static_assert(alignof(UIQA_ModifyActors_C) == 0x000008, "Wrong alignment on UIQA_ModifyActors_C"); \ +static_assert(sizeof(UIQA_ModifyActors_C) == 0x0000B8, "Wrong size on UIQA_ModifyActors_C"); \ +static_assert(offsetof(UIQA_ModifyActors_C, UberGraphFrame) == 0x000088, "Member 'UIQA_ModifyActors_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActors_C, Action) == 0x000090, "Member 'UIQA_ModifyActors_C::Action' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActors_C, FindByTags) == 0x000098, "Member 'UIQA_ModifyActors_C::FindByTags' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActors_C, Actors) == 0x0000A8, "Member 'UIQA_ModifyActors_C::Actors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_LedgeHang_Cooldown_C \ +static_assert(alignof(UGE_LedgeHang_Cooldown_C) == 0x000008, "Wrong alignment on UGE_LedgeHang_Cooldown_C"); \ +static_assert(sizeof(UGE_LedgeHang_Cooldown_C) == 0x000A70, "Wrong size on UGE_LedgeHang_Cooldown_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_EmitPause \ +static_assert(alignof(GA_PlayerInteractAnimation_C_EmitPause) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_EmitPause"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_EmitPause) == 0x000008, "Wrong size on GA_PlayerInteractAnimation_C_EmitPause"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_EmitPause, Sequence) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_EmitPause::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_EventReceived_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193 \ +static_assert(alignof(GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193) == 0x0000B0, "Wrong size on GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193, Payload) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_EventReceived_8444394541526B1FDA6EC68A0FFB3193::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation \ +static_assert(alignof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation) == 0x000010, "Wrong alignment on GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation) == 0x001210, "Wrong size on GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, EntryPoint) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_3) == 0x000014, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_3) == 0x000020, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000D0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_2) == 0x0000E0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_2) == 0x0000E8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_2) == 0x000198, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_1) == 0x0001A8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_1) == 0x0001B0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_3) == 0x000260, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag) == 0x000270, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData) == 0x000278, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_4) == 0x000328, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_struct_Variable) == 0x000338, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_struct_Variable_1) == 0x0003E8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003F0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_6) == 0x000400, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_Payload) == 0x000410, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_struct_Variable_2) == 0x0004C0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000570, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue) == 0x000578, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_7) == 0x00057C, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_8) == 0x00058C, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_9) == 0x00059C, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x0005AC, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_Has_Been_Initd_Variable) == 0x0005AD, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_10) == 0x0005B0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_Event_bWasCancelled) == 0x0005C0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_IsClosed_Variable) == 0x0005C1, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1) == 0x0005C2, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_Sequence_1) == 0x0005C8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_Sequence_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_Event_EventData) == 0x0005D0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings) == 0x000680, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GenerateSequenceBindings_WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsInteraction_Component) == 0x000690, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsInteraction_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess) == 0x000698, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetInteractionAnimData_NewParam) == 0x000699, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetInteractionAnimData_NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetInteractionAnimData_OutInteractionAnimData) == 0x0006A0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetInteractionAnimData_OutInteractionAnimData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000708, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_LoadAsset_Blocking_ReturnValue_1) == 0x000710, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_LoadAsset_Blocking_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsAnim_Montage) == 0x000718, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsAnim_Montage' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess_1) == 0x000720, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsLevel_Sequence) == 0x000728, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsLevel_Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess_2) == 0x000730, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000731, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValidSoftObjectReference_ReturnValue_1) == 0x000732, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValidSoftObjectReference_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_Montage) == 0x000738, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_Montage' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_Sequence) == 0x000740, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000748, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue_1) == 0x000750, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_11) == 0x000754, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_4) == 0x000764, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_4) == 0x000770, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_MakeStruct_CharacterSequenceData) == 0x000820, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_MakeStruct_CharacterSequenceData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransform_ReturnValue) == 0x0008A0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_InvertTransform_ReturnValue) == 0x000900, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_InvertTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransformForSequenceBinding_OutTransform) == 0x000960, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransformForSequenceBinding_OutTransform' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransformForSequenceBinding_ReturnValue) == 0x0009C0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransformForSequenceBinding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_InvertTransform_ReturnValue_1) == 0x0009D0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_InvertTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransform_ReturnValue_1) == 0x000A30, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransform_OutTransform) == 0x000A90, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransform_OutTransform' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetTransform_ReturnValue_2) == 0x000AF0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_K2_CommitAbility_ReturnValue) == 0x000AF1, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_ComposeTransforms_ReturnValue) == 0x000B00, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_ComposeTransforms_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_ComposeTransforms_ReturnValue_1) == 0x000B60, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_ComposeTransforms_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_InvertTransform_ReturnValue_2) == 0x000BC0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_InvertTransform_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_ComposeTransforms_ReturnValue_2) == 0x000C20, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_ComposeTransforms_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor) == 0x000C80, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_PlaySequenceAndWaitForEvent_OutLevelSequenceActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_PlaySequenceAndWaitForEvent_ReturnValue) == 0x000C88, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_PlaySequenceAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue_2) == 0x000C90, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_InInteractingActor) == 0x000C98, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_InEventTag_1) == 0x000CA0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_InEventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000CA8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_12) == 0x000CAC, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetSequencePlayer_ReturnValue) == 0x000CC0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetSequencePlayer_ReturnValue_1) == 0x000CC8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetSequencePlayer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue_3) == 0x000CD0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsPaused_ReturnValue) == 0x000CD1, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsPaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_5) == 0x000CD4, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_5) == 0x000CE0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetActorInfo_ReturnValue) == 0x000D90, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000DD8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_InEventTag) == 0x000DE0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_InEventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_13) == 0x000DE8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_Has_Been_Initd_Variable_1) == 0x000DF8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetSequencePlayer_ReturnValue_2) == 0x000E00, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetSequencePlayer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventTag_6) == 0x000E08, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CustomEvent_EventData_6) == 0x000E10, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000EC0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetSequencePlayer_ReturnValue_3) == 0x000EC8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetSequencePlayer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue_4) == 0x000ED0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, Temp_bool_IsClosed_Variable_1) == 0x000ED1, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_14) == 0x000ED4, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000EE4, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1) == 0x000EEC, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakTransform_Location) == 0x000EF8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakTransform_Rotation) == 0x000F10, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakTransform_Scale) == 0x000F28, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetActorInfo_ReturnValue_1) == 0x000F40, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2) == 0x000F88, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Roll) == 0x000F90, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Pitch) == 0x000F94, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Yaw) == 0x000F98, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000FA0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsValid_ReturnValue_5) == 0x000FA8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000FB0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetActorInfo_ReturnValue_2) == 0x000FB8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetFloatValue_ReturnValue) == 0x001000, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsWrestler_Movement_Component) == 0x001008, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsWrestler_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess_3) == 0x001010, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetActorInfo_ReturnValue_3) == 0x001018, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsCrouching_ReturnValue) == 0x001060, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsCrouching_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x001068, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess_4) == 0x001070, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetCrouchedHalfHeight_ReturnValue) == 0x001074, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetCrouchedHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetControlRotation_ReturnValue) == 0x001078, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_AsCharacter) == 0x001090, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_DynamicCast_bSuccess_5) == 0x001098, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_IsCrouching_ReturnValue_1) == 0x001099, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_IsCrouching_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0010A0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_SelectFloat_ReturnValue) == 0x0010A8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0010B0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0010B8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0010D0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_SelectFloat_ReturnValue_1) == 0x0010D8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakVector_X) == 0x0010E0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakVector_Y) == 0x0010E8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakVector_Z) == 0x0010F0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0010F8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_RLerp_ReturnValue) == 0x001100, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x001118, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_MakeVector_ReturnValue) == 0x001120, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, K2Node_CreateDelegate_OutputDelegate_15) == 0x001138, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_FindLookAtRotation_ReturnValue) == 0x001148, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Roll_1) == 0x001160, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Pitch_1) == 0x001164, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_BreakRotator_Yaw_1) == 0x001168, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetActorInfo_ReturnValue_4) == 0x001170, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetActorInfo_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_MakeRotator_ReturnValue) == 0x0011B8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Delay_Duration_ImplicitCast) == 0x0011D0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_WrestlerTaskTick_Duration_ImplicitCast) == 0x0011D4, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_WrestlerTaskTick_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x0011D8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0011E0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_SelectFloat_A_ImplicitCast) == 0x0011E8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_SelectFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x0011F0, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0011F8, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x001200, "Member 'GA_PlayerInteractAnimation_C_ExecuteUbergraph_GA_PlayerInteractAnimation::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_GetInteractionAnimData \ +static_assert(alignof(GA_PlayerInteractAnimation_C_GetInteractionAnimData) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_GetInteractionAnimData"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_GetInteractionAnimData) == 0x000108, "Wrong size on GA_PlayerInteractAnimation_C_GetInteractionAnimData"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, InTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::InTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, NewParam) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::NewParam' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, OutInteractionAnimData) == 0x000010, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::OutInteractionAnimData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, Temp_int_Array_Index_Variable) == 0x000078, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, Temp_int_Loop_Counter_Variable) == 0x00007C, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_Add_IntInt_ReturnValue) == 0x000080, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_Array_Length_ReturnValue) == 0x000084, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_Array_Get_Item) == 0x000088, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_Less_IntInt_ReturnValue) == 0x000090, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_GetInteractionAnimData_OutInteractionAnimData) == 0x000098, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_GetInteractionAnimData_OutInteractionAnimData' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetInteractionAnimData, CallFunc_GetInteractionAnimData_ReturnValue) == 0x000100, "Member 'GA_PlayerInteractAnimation_C_GetInteractionAnimData::CallFunc_GetInteractionAnimData_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_GetSequenceLength \ +static_assert(alignof(GA_PlayerInteractAnimation_C_GetSequenceLength) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_GetSequenceLength"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_GetSequenceLength) == 0x000028, "Wrong size on GA_PlayerInteractAnimation_C_GetSequenceLength"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetSequenceLength, Sequence) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_GetSequenceLength::Sequence' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetSequenceLength, ReturnValue) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_GetSequenceLength::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetSequenceLength, CallFunc_IsValid_ReturnValue) == 0x00000C, "Member 'GA_PlayerInteractAnimation_C_GetSequenceLength::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetSequenceLength, CallFunc_GetPlaybackRange_ReturnValue) == 0x000010, "Member 'GA_PlayerInteractAnimation_C_GetSequenceLength::CallFunc_GetPlaybackRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GetSequenceLength, CallFunc_GetEndSeconds_ReturnValue) == 0x000024, "Member 'GA_PlayerInteractAnimation_C_GetSequenceLength::CallFunc_GetEndSeconds_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerInteractAnimation_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerInteractAnimation_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerInteractAnimation_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnCancelled_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnInteractionEvent \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnInteractionEvent) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnInteractionEvent"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnInteractionEvent) == 0x000010, "Wrong size on GA_PlayerInteractAnimation_C_OnInteractionEvent"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnInteractionEvent, InInteractingActor) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnInteractionEvent::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnInteractionEvent, InEventTag) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnInteractionEvent::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnSequenceFinished_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnSequencePause_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnSequencePlay_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnSequenceStopped_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A \ +static_assert(alignof(GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A) == 0x0000B8, "Wrong size on GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A, EventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A, EventData) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_OnSequenceUpdate_0426623F424A7887DA0AA89BBC3B8B3A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_PlayMontage \ +static_assert(alignof(GA_PlayerInteractAnimation_C_PlayMontage) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_PlayMontage"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_PlayMontage) == 0x000008, "Wrong size on GA_PlayerInteractAnimation_C_PlayMontage"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_PlayMontage, Montage_0) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_PlayMontage::Montage_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_PlaySequence \ +static_assert(alignof(GA_PlayerInteractAnimation_C_PlaySequence) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_PlaySequence"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_PlaySequence) == 0x000008, "Wrong size on GA_PlayerInteractAnimation_C_PlaySequence"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_PlaySequence, Sequence) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_PlaySequence::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_SendInteractionEvent \ +static_assert(alignof(GA_PlayerInteractAnimation_C_SendInteractionEvent) == 0x000004, "Wrong alignment on GA_PlayerInteractAnimation_C_SendInteractionEvent"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_SendInteractionEvent) == 0x000008, "Wrong size on GA_PlayerInteractAnimation_C_SendInteractionEvent"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_SendInteractionEvent, InEventTag) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_SendInteractionEvent::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_GenerateSequenceBindings \ +static_assert(alignof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_GenerateSequenceBindings"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings) == 0x000090, "Wrong size on GA_PlayerInteractAnimation_C_GenerateSequenceBindings"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, TargetActor) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, WrestlerSequenceSettings) == 0x000008, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::WrestlerSequenceSettings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeArray_Array) == 0x000018, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000028, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding) == 0x000030, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeArray_Array_1) == 0x000048, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceBinding_1) == 0x000058, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceBinding_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeArray_Array_2) == 0x000070, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_GenerateSequenceBindings, K2Node_MakeStruct_WrestlerSequenceSettings) == 0x000080, "Member 'GA_PlayerInteractAnimation_C_GenerateSequenceBindings::K2Node_MakeStruct_WrestlerSequenceSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerInteractAnimation_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerInteractAnimation_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_PlayerInteractAnimation_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerInteractAnimation_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerInteractAnimation_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerInteractAnimation_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerInteractAnimation_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerInteractAnimation_C_K2_CanActivateAbility, NewLocalVar_0) == 0x000071, "Member 'GA_PlayerInteractAnimation_C_K2_CanActivateAbility::NewLocalVar_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerInteractAnimation_C \ +static_assert(alignof(UGA_PlayerInteractAnimation_C) == 0x000010, "Wrong alignment on UGA_PlayerInteractAnimation_C"); \ +static_assert(sizeof(UGA_PlayerInteractAnimation_C) == 0x000830, "Wrong size on UGA_PlayerInteractAnimation_C"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerInteractAnimation_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Playback_Settings) == 0x000670, "Member 'UGA_PlayerInteractAnimation_C::Playback_Settings' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, SequenceActor) == 0x000690, "Member 'UGA_PlayerInteractAnimation_C::SequenceActor' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, AdditionalPauseTime) == 0x000698, "Member 'UGA_PlayerInteractAnimation_C::AdditionalPauseTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, PauseDistance) == 0x00069C, "Member 'UGA_PlayerInteractAnimation_C::PauseDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, PauseDuration) == 0x0006A0, "Member 'UGA_PlayerInteractAnimation_C::PauseDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Interactable) == 0x0006A8, "Member 'UGA_PlayerInteractAnimation_C::Interactable' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Anims) == 0x0006B0, "Member 'UGA_PlayerInteractAnimation_C::Anims' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Interaction_Anim_Data) == 0x0006C0, "Member 'UGA_PlayerInteractAnimation_C::Interaction_Anim_Data' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Interaction) == 0x000728, "Member 'UGA_PlayerInteractAnimation_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Binding_Tag) == 0x000730, "Member 'UGA_PlayerInteractAnimation_C::Binding_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, InteractionTransform) == 0x000740, "Member 'UGA_PlayerInteractAnimation_C::InteractionTransform' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, StartRotation) == 0x0007A0, "Member 'UGA_PlayerInteractAnimation_C::StartRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, TargetRotation) == 0x0007B8, "Member 'UGA_PlayerInteractAnimation_C::TargetRotation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, StartLocation) == 0x0007D0, "Member 'UGA_PlayerInteractAnimation_C::StartLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, CrouchViewLerpTime) == 0x0007E8, "Member 'UGA_PlayerInteractAnimation_C::CrouchViewLerpTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, CrouchViewLerpCurve) == 0x0007F0, "Member 'UGA_PlayerInteractAnimation_C::CrouchViewLerpCurve' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, WasCrouched) == 0x0007F8, "Member 'UGA_PlayerInteractAnimation_C::WasCrouched' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, CrouchBlocker) == 0x0007FC, "Member 'UGA_PlayerInteractAnimation_C::CrouchBlocker' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, StartHeight) == 0x000808, "Member 'UGA_PlayerInteractAnimation_C::StartHeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, TargetHeight) == 0x000810, "Member 'UGA_PlayerInteractAnimation_C::TargetHeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, Fragility) == 0x000818, "Member 'UGA_PlayerInteractAnimation_C::Fragility' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerInteractAnimation_C, MoveBlocker) == 0x000820, "Member 'UGA_PlayerInteractAnimation_C::MoveBlocker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_EnteredZone \ +static_assert(alignof(GA_Player_HubBoundary_C_EnteredZone) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_EnteredZone"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_EnteredZone) == 0x000008, "Wrong size on GA_Player_HubBoundary_C_EnteredZone"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_EnteredZone, Object) == 0x000000, "Member 'GA_Player_HubBoundary_C_EnteredZone::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9 \ +static_assert(alignof(GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9) == 0x0000B0, "Wrong size on GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9, Payload) == 0x000000, "Member 'GA_Player_HubBoundary_C_EventReceived_D274C1814D1044535687D09F1AE758A9::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary \ +static_assert(alignof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary) == 0x000410, "Wrong size on GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, EntryPoint) == 0x000000, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsPlayerFabien_Return) == 0x000004, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000008, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CustomEvent_Payload) == 0x000028, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, Temp_struct_Variable) == 0x0000D8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000188, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsValid_ReturnValue_1) == 0x000190, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000191, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CreateDelegate_OutputDelegate_1) == 0x000194, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_WaitDelay_ReturnValue) == 0x0001A8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0001B0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsValid_ReturnValue_2) == 0x0001B8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CustomEvent_Object_1) == 0x0001C0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CustomEvent_Object_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CustomEvent_Object) == 0x0001C8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CustomEvent_Object' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_Array_Add_ReturnValue) == 0x0001D0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_Array_Length_ReturnValue) == 0x0001D4, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_Array_RemoveItem_ReturnValue) == 0x0001D8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0001D9, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsValid_ReturnValue_3) == 0x0001DA, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_Event_bWasCancelled) == 0x0001DB, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_GetHighestDepth_Depth) == 0x0001E0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_GetHighestDepth_Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_GetHighestDepth_Location) == 0x0001E8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_GetHighestDepth_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000200, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000208, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_Event_EventData) == 0x0002E0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CreateDelegate_OutputDelegate_2) == 0x000390, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1) == 0x0003A0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsPlayerFabien_Return_1) == 0x0003A1, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsPlayerFabien_Return_2) == 0x0003A2, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsPlayerFabien_Return_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_Array_Length_ReturnValue_1) == 0x0003A4, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x0003A8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003AC, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003BC, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_IsGameplayTagValid_ReturnValue) == 0x0003CC, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0003D0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_BooleanAND_ReturnValue) == 0x0003D8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_GetDialogueInfo_ReturnValue) == 0x0003E0, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_MakeArray_Array) == 0x0003E8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, K2Node_MakeArray_Array_1) == 0x0003F8, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary, CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast) == 0x000408, "Member 'GA_Player_HubBoundary_C_ExecuteUbergraph_GA_Player_HubBoundary::CallFunc_MakeGameplayCueParameters_RawMagnitude_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_ExitedZone \ +static_assert(alignof(GA_Player_HubBoundary_C_ExitedZone) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_ExitedZone"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_ExitedZone) == 0x000008, "Wrong size on GA_Player_HubBoundary_C_ExitedZone"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_ExitedZone, Object) == 0x000000, "Member 'GA_Player_HubBoundary_C_ExitedZone::Object' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_GetHighestDepth \ +static_assert(alignof(GA_Player_HubBoundary_C_GetHighestDepth) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_GetHighestDepth"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_GetHighestDepth) == 0x0000E0, "Wrong size on GA_Player_HubBoundary_C_GetHighestDepth"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, Depth) == 0x000000, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, Location) == 0x000008, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, HighestDepth) == 0x000020, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::HighestDepth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, Temp_int_Array_Index_Variable) == 0x000028, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, Temp_int_Loop_Counter_Variable) == 0x00002C, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_Add_IntInt_ReturnValue) == 0x000030, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_GetActorInfo_ReturnValue) == 0x000038, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_Array_Get_Item) == 0x000080, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000088, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, K2Node_DynamicCast_AsBPI_Map_Boundary) == 0x0000A0, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::K2Node_DynamicCast_AsBPI_Map_Boundary' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_Array_Length_ReturnValue) == 0x0000B4, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_GetLocationDepth_Depth) == 0x0000B8, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_GetLocationDepth_Depth' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_GetLocationDepth_Location) == 0x0000C0, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_GetLocationDepth_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_Less_IntInt_ReturnValue) == 0x0000D8, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_GetHighestDepth, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000D9, "Member 'GA_Player_HubBoundary_C_GetHighestDepth::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Player_HubBoundary_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Player_HubBoundary_C_K2_OnEndAbility \ +static_assert(alignof(GA_Player_HubBoundary_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Player_HubBoundary_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Player_HubBoundary_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Player_HubBoundary_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Player_HubBoundary_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Player_HubBoundary_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Player_HubBoundary_C \ +static_assert(alignof(UGA_Player_HubBoundary_C) == 0x000008, "Wrong alignment on UGA_Player_HubBoundary_C"); \ +static_assert(sizeof(UGA_Player_HubBoundary_C) == 0x000690, "Wrong size on UGA_Player_HubBoundary_C"); \ +static_assert(offsetof(UGA_Player_HubBoundary_C, UberGraphFrame) == 0x000668, "Member 'UGA_Player_HubBoundary_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_C, As_BP_Trigger_Hub_Boundary) == 0x000670, "Member 'UGA_Player_HubBoundary_C::As_BP_Trigger_Hub_Boundary' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_C, Async_Task) == 0x000680, "Member 'UGA_Player_HubBoundary_C::Async_Task' has a wrong offset!"); \ +static_assert(offsetof(UGA_Player_HubBoundary_C, FabienDialogueTag) == 0x000688, "Member 'UGA_Player_HubBoundary_C::FabienDialogueTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_Play_Preview_Loop \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_Play_Preview_Loop"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop) == 0x000060, "Wrong size on W_SettingsListEntry_Discrete_C_Play_Preview_Loop"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, HasFocus) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::HasFocus' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, Temp_delegate_Variable) == 0x000004, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, Temp_delegate_Variable_1) == 0x000014, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_GetText_ReturnValue) == 0x000028, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_Conv_TextToString_ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_Map_Find_Value) == 0x000050, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_Map_Find_ReturnValue) == 0x000058, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_Play_Preview_Loop, CallFunc_IsValid_ReturnValue_1) == 0x00005A, "Member 'W_SettingsListEntry_Discrete_C_Play_Preview_Loop::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnValueChanged \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnValueChanged) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnValueChanged"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnValueChanged) == 0x000020, "Wrong size on W_SettingsListEntry_Discrete_C_OnValueChanged"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnValueChanged, Index_0) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnValueChanged::Index_0' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnValueChanged, Text) == 0x000008, "Member 'W_SettingsListEntry_Discrete_C_OnValueChanged::Text' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnRemovedFromFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnMouseLeave \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnMouseLeave) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnMouseLeave"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnMouseLeave) == 0x000078, "Wrong size on W_SettingsListEntry_Discrete_C_OnMouseLeave"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnMouseLeave, MouseEvent) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnMouseEnter \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnMouseEnter) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnMouseEnter"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnMouseEnter) == 0x0000B0, "Wrong size on W_SettingsListEntry_Discrete_C_OnMouseEnter"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'W_SettingsListEntry_Discrete_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnFocusReceived \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnFocusReceived) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnFocusReceived"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnFocusReceived) == 0x0001B0, "Wrong size on W_SettingsListEntry_Discrete_C_OnFocusReceived"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'W_SettingsListEntry_Discrete_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'W_SettingsListEntry_Discrete_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'W_SettingsListEntry_Discrete_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_OnAddedToFocusPath \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_OnAddedToFocusPath) == 0x000004, "Wrong alignment on W_SettingsListEntry_Discrete_C_OnAddedToFocusPath"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_OnAddedToFocusPath) == 0x000008, "Wrong size on W_SettingsListEntry_Discrete_C_OnAddedToFocusPath"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_OnAddedToFocusPath, InFocusEvent) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_OnAddedToFocusPath::InFocusEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete \ +static_assert(alignof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete) == 0x000008, "Wrong alignment on W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete"); \ +static_assert(sizeof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete) == 0x000170, "Wrong size on W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, EntryPoint) == 0x000000, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_MouseEvent_1) == 0x000008, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_MouseEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_Index) == 0x000080, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_Index' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_Text) == 0x000088, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_Text' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_InFocusEvent_1) == 0x0000A0, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_InFocusEvent_1' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_InFocusEvent) == 0x0000A8, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, Temp_delegate_Variable) == 0x0000B0, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_MyGeometry) == 0x0000C0, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete, K2Node_Event_MouseEvent) == 0x0000F8, "Member 'W_SettingsListEntry_Discrete_C_ExecuteUbergraph_W_SettingsListEntry_Discrete::K2Node_Event_MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Discrete_C \ +static_assert(alignof(UW_SettingsListEntry_Discrete_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_Discrete_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Discrete_C) == 0x000410, "Wrong size on UW_SettingsListEntry_Discrete_C"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, UberGraphFrame) == 0x000350, "Member 'UW_SettingsListEntry_Discrete_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, Button_FirstOption) == 0x000358, "Member 'UW_SettingsListEntry_Discrete_C::Button_FirstOption' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, Button_SecondOption) == 0x000360, "Member 'UW_SettingsListEntry_Discrete_C::Button_SecondOption' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, EntryHeightSizeBox) == 0x000368, "Member 'UW_SettingsListEntry_Discrete_C::EntryHeightSizeBox' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, FocusBar) == 0x000370, "Member 'UW_SettingsListEntry_Discrete_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, FocusBorder) == 0x000378, "Member 'UW_SettingsListEntry_Discrete_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, FocusOffsetLine) == 0x000380, "Member 'UW_SettingsListEntry_Discrete_C::FocusOffsetLine' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, OptionsSets) == 0x000388, "Member 'UW_SettingsListEntry_Discrete_C::OptionsSets' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, ResponsivePanel) == 0x000390, "Member 'UW_SettingsListEntry_Discrete_C::ResponsivePanel' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, Several_Options) == 0x000398, "Member 'UW_SettingsListEntry_Discrete_C::Several_Options' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, HoverEvent) == 0x0003A0, "Member 'UW_SettingsListEntry_Discrete_C::HoverEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, ChangeEvent) == 0x0003A8, "Member 'UW_SettingsListEntry_Discrete_C::ChangeEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, PreviewLoopsPlayEvents) == 0x0003B0, "Member 'UW_SettingsListEntry_Discrete_C::PreviewLoopsPlayEvents' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, PreviewLoopsStopEvent) == 0x000400, "Member 'UW_SettingsListEntry_Discrete_C::PreviewLoopsStopEvent' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, IsPlayingFocusAudio) == 0x000408, "Member 'UW_SettingsListEntry_Discrete_C::IsPlayingFocusAudio' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_Discrete_C, bCanPlayAudio) == 0x000409, "Member 'UW_SettingsListEntry_Discrete_C::bCanPlayAudio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Ma_Sprint_C_BlueprintModifyCamera \ +static_assert(alignof(CM_Ma_Sprint_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_Ma_Sprint_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_Ma_Sprint_C_BlueprintModifyCamera) == 0x0000B0, "Wrong size on CM_Ma_Sprint_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000078, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000080, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_Lerp_ReturnValue) == 0x000088, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_Lerp_A_ImplicitCast) == 0x000090, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_Lerp_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000098, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x0000A0, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_BlueprintModifyCamera, CallFunc_Lerp_Alpha_ImplicitCast) == 0x0000A8, "Member 'CM_Ma_Sprint_C_BlueprintModifyCamera::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Ma_Sprint_C_GetBlendWeight \ +static_assert(alignof(CM_Ma_Sprint_C_GetBlendWeight) == 0x000008, "Wrong alignment on CM_Ma_Sprint_C_GetBlendWeight"); \ +static_assert(sizeof(CM_Ma_Sprint_C_GetBlendWeight) == 0x000018, "Wrong size on CM_Ma_Sprint_C_GetBlendWeight"); \ +static_assert(offsetof(CM_Ma_Sprint_C_GetBlendWeight, ReturnValue) == 0x000000, "Member 'CM_Ma_Sprint_C_GetBlendWeight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_GetBlendWeight, CallFunc_GetBlendWeight_returnValue) == 0x000008, "Member 'CM_Ma_Sprint_C_GetBlendWeight::CallFunc_GetBlendWeight_returnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Ma_Sprint_C_GetBlendWeight, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000010, "Member 'CM_Ma_Sprint_C_GetBlendWeight::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Ma_Sprint_C \ +static_assert(alignof(UCM_Ma_Sprint_C) == 0x000010, "Wrong alignment on UCM_Ma_Sprint_C"); \ +static_assert(sizeof(UCM_Ma_Sprint_C) == 0x000780, "Wrong size on UCM_Ma_Sprint_C"); \ + +#define DUMPER7_ASSERTS_UGE_Ma_Sprint_Narrative_C \ +static_assert(alignof(UGE_Ma_Sprint_Narrative_C) == 0x000008, "Wrong alignment on UGE_Ma_Sprint_Narrative_C"); \ +static_assert(sizeof(UGE_Ma_Sprint_Narrative_C) == 0x000A70, "Wrong size on UGE_Ma_Sprint_Narrative_C"); \ + +#define DUMPER7_ASSERTS_Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger \ +static_assert(alignof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger) == 0x000008, "Wrong alignment on Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger"); \ +static_assert(sizeof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger) == 0x000030, "Wrong size on Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, EntryPoint) == 0x000000, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, Temp_int_Array_Index_Variable) == 0x000004, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, K2Node_Event_InAutomata) == 0x000010, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, K2Node_Event_InState) == 0x000018, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, CallFunc_Array_Get_Item) == 0x000020, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger, CallFunc_Less_IntInt_ReturnValue) == 0x00002C, "Member 'Objectives_Trigger_C_ExecuteUbergraph_Objectives_Trigger::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Objectives_Trigger_C_ReceiveExecute \ +static_assert(alignof(Objectives_Trigger_C_ReceiveExecute) == 0x000008, "Wrong alignment on Objectives_Trigger_C_ReceiveExecute"); \ +static_assert(sizeof(Objectives_Trigger_C_ReceiveExecute) == 0x000010, "Wrong size on Objectives_Trigger_C_ReceiveExecute"); \ +static_assert(offsetof(Objectives_Trigger_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Objectives_Trigger_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Objectives_Trigger_C_ReceiveExecute, InState) == 0x000008, "Member 'Objectives_Trigger_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectives_Trigger_C \ +static_assert(alignof(UObjectives_Trigger_C) == 0x000008, "Wrong alignment on UObjectives_Trigger_C"); \ +static_assert(sizeof(UObjectives_Trigger_C) == 0x0000A8, "Wrong size on UObjectives_Trigger_C"); \ +static_assert(offsetof(UObjectives_Trigger_C, UberGraphFrame) == 0x000088, "Member 'UObjectives_Trigger_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UObjectives_Trigger_C, Objectives) == 0x000090, "Member 'UObjectives_Trigger_C::Objectives' has a wrong offset!"); \ +static_assert(offsetof(UObjectives_Trigger_C, Has_Delay) == 0x0000A0, "Member 'UObjectives_Trigger_C::Has_Delay' has a wrong offset!"); \ +static_assert(offsetof(UObjectives_Trigger_C, Duration) == 0x0000A4, "Member 'UObjectives_Trigger_C::Duration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_Ma_Sprint_C \ +static_assert(alignof(UGE_Ma_Sprint_C) == 0x000008, "Wrong alignment on UGE_Ma_Sprint_C"); \ +static_assert(sizeof(UGE_Ma_Sprint_C) == 0x000A70, "Wrong size on UGE_Ma_Sprint_C"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_GetCharacterMovement_returnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_GetCharacterMovement_returnValue_1) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_BreakVector_X) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_BreakVector_Y) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_BreakVector_Z) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_FMax_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp, CallFunc_MakeVector_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyFallVelocityClamp::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings) == 0x000040, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings, Input) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings, ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings, CallFunc_Multiply_Vector2DFloat_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyInputSettings::CallFunc_Multiply_Vector2DFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed) == 0x000160, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_GetOwnerTransform_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_GetOwnerTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_GetOwnerTransform_ReturnValue_1) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_GetOwnerTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_InverseTransformDirection_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_X) == 0x000108, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_Y) == 0x000110, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_BreakVector_Z) == 0x000118, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_FMax_ReturnValue) == 0x000120, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_MakeVector_ReturnValue) == 0x000128, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed, CallFunc_TransformDirection_ReturnValue) == 0x000140, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyMinGlideForwardSpeed::CallFunc_TransformDirection_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput) == 0x000088, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, Input) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, CallFunc_GetOwningCharacter_returnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, CallFunc_GetActorForwardVector_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput, CallFunc_Add_VectorVector_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplySpeedInput::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity) == 0x000120, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, BaseVelocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::BaseVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, Forward) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::Forward' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_X) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Y) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Z) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_X_1) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Y_1) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Z_1) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_GetCharacterMovement_returnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_MakeVector2D_ReturnValue) == 0x000068, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_VSize2D_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_VSize2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_VLerp_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_VLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_GetCharacterMovement_returnValue_1) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_X_2) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Y_2) == 0x0000F8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_BreakVector_Z_2) == 0x000100, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity, CallFunc_MakeVector_ReturnValue) == 0x000108, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyStartingVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput) == 0x000098, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, Velocity) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::Velocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, Input) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::Input' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_GetGlideTime_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_GetGlideTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_FMin_ReturnValue) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_FMin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_MakeRotator_ReturnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ApplyYawInput::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents) == 0x000018, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents, CallFunc_GetOwningCharacter_returnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_BindMovementEvents::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack) == 0x000028, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_DisableLockOnHack::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic) == 0x000108, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, EntryPoint) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_Event_bWasCancelled) == 0x000041, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_DeltaSeconds) == 0x000044, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_OldLocation) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_OldVelocity) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_OldVelocity' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_ExceedsMinimumSpeed_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_ExceedsMinimumSpeed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000088, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_GetControlRotation_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_BreakRotator_Roll) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_BreakRotator_Pitch) == 0x0000AC, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_BreakRotator_Yaw) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_MakeRotator_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_Character) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_PrevMovementMode) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CustomEvent_PreviousCustomMode) == 0x0000D9, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CustomEvent_PreviousCustomMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000DA, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_GetActorDeltaTime_DeltaTime) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, CallFunc_FClamp_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000F8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExecuteUbergraph_GA_PlayerMovement_Glide_Dynamic::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement, K2Node_DynamicCast_AsCharacter_Movement_Component) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement::K2Node_DynamicCast_AsCharacter_Movement_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetCharacterMovement::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation) == 0x000048, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, CallFunc_GetCharacterMovement_returnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, CallFunc_GetYawPitchFromVector_Yaw) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, CallFunc_GetYawPitchFromVector_Pitch) == 0x000024, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, CallFunc_MakeRotator_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideViewRotation::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation) == 0x000040, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation, CallFunc_GetOwningCharacter_returnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation, CallFunc_GetController_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation, CallFunc_GetControlRotation_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerControlRotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform) == 0x0000D0, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform, CallFunc_GetOwningCharacter_returnValue) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform, CallFunc_GetTransform_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwnerTransform::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter) == 0x000060, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter, CallFunc_GetActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter::CallFunc_GetActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter, K2Node_DynamicCast_AsCharacter) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter::K2Node_DynamicCast_AsCharacter' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetOwningCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetRawInput \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetRawInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput) == 0x000088, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetRawInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_GetCharacterMovement_returnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_GetLastInputVector_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_GetLastUpdateRotation_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_GetLastUpdateRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_BreakVector_X) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_BreakVector_Y) == 0x000068, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_BreakVector_Z) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetRawInput, CallFunc_MakeVector2D_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetRawInput::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_NewMovement \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_NewMovement) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_NewMovement"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_NewMovement) == 0x000010, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_NewMovement"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_NewMovement, Character) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_NewMovement::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_NewMovement, PrevMovementMode) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_NewMovement::PrevMovementMode' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_NewMovement, PreviousCustomMode) == 0x000009, "Member 'GA_PlayerMovement_Glide_Dynamic_C_NewMovement::PreviousCustomMode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity) == 0x000178, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_real_Variable) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_bool_Variable) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_real_Variable_1) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetCharacterMovement_returnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_real_Variable_2) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_FClamp_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_bool_Variable_1) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_1) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetActorDeltaTime_DeltaTime_2) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetActorDeltaTime_DeltaTime_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_real_Variable_3) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, Temp_bool_Variable_2) == 0x000068, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetCharacterMovement_returnValue_1) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GetLastUpdateVelocity_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GetLastUpdateVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_LessLess_VectorRotator_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_LessLess_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_BreakVector_X) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_BreakVector_Y) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_BreakVector_Z) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_NormalizeToRange_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000C8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_FClamp_ReturnValue_1) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000D8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Lerp_ReturnValue) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_FMax_ReturnValue) == 0x0000F0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_FMax_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000F9, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, K2Node_Select_Default) == 0x000100, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, K2Node_Select_Default_1) == 0x000108, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000110, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, K2Node_Select_Default_2) == 0x000118, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000120, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x000128, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000130, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000138, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_FClamp_ReturnValue_2) == 0x000140, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_FClamp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_MakeVector_ReturnValue) == 0x000148, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000160, "Member 'GA_PlayerMovement_Glide_Dynamic_C_SetGlideVelocity::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide) == 0x000038, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide, DeltaSeconds) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide::DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide, OldLocation) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide::OldLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide, OldVelocity) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_TickExperimentalGlide::OldVelocity' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput) == 0x000028, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, bNewLookInput) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::bNewLookInput' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, CallFunc_Not_PreBool_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ToggleLookInput::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents) == 0x000018, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents, K2Node_CreateDelegate_OutputDelegate) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents, CallFunc_GetOwningCharacter_returnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UnbindMovementEvents::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation) == 0x000120, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetRawInput_ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetRawInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_BreakVector2D_X) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_BreakVector2D_Y) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_FInterpTo_ReturnValue) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_FInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetActorDeltaTime_DeltaTime_1) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetActorDeltaTime_DeltaTime_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_GetControlRotation_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_ComposeRotators_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_BreakRotator_Roll) == 0x000088, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_BreakRotator_Pitch) == 0x00008C, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_BreakRotator_Yaw) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Abs_ReturnValue) == 0x000098, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_SignOfFloat_ReturnValue) == 0x0000A0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_SignOfFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_FClamp_ReturnValue) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000C8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_MakeRotator_ReturnValue) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_RInterpTo_ReturnValue) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_AddControllerYawInput_Val_ImplicitCast) == 0x000100, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_AddControllerYawInput_Val_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000104, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_Abs_A_ImplicitCast) == 0x000108, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_Abs_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_SignOfFloat_A_ImplicitCast) == 0x000110, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_SignOfFloat_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000118, "Member 'GA_PlayerMovement_Glide_Dynamic_C_Update_Glide_Rotation::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation) == 0x0000A0, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetGlideViewRotation_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetGlideViewRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetOwningCharacter_returnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetOwningCharacter_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetOwningCharacter_returnValue_1) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetOwningCharacter_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetController_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetController_ReturnValue_1) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_GetControlRotation_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_GetControlRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::K2Node_DynamicCast_AsWrestler_Targeting_Controller_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_RInterpTo_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_RInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_IsCurrentlyTargeting_bOutIsTargeting) == 0x000088, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_IsCurrentlyTargeting_bOutIsTargeting' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_IsCurrentlyTargeting_OutCurrentTarget) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_IsCurrentlyTargeting_OutCurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation, CallFunc_RInterpTo_DeltaTime_ImplicitCast) == 0x000098, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideRotation::CallFunc_RInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime) == 0x000010, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime, CallFunc_GetActorDeltaTime_DeltaTime) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime::CallFunc_GetActorDeltaTime_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideTime::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity) == 0x000070, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_GetCharacterMovement_returnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_GetCharacterMovement_returnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_GetCharacterMovement_returnValue_1) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_GetCharacterMovement_returnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_GetRawInput_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_GetRawInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_ApplyInputSettings_ReturnValue) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_ApplyInputSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_BreakVector2D_X) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_BreakVector2D_Y) == 0x000038, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_ApplyYawInput_ReturnValue) == 0x000040, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_ApplyYawInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity, CallFunc_Vector_ClampSizeMax_ReturnValue) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateGlideVelocity::CallFunc_Vector_ClampSizeMax_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick) == 0x000150, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, PlayerController) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::PlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, Character) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::Character' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_K2_GetPlayerControllerFromActor_OutPlayerController' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_K2_GetPlayerControllerFromActor_OutPins) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_K2_GetPlayerControllerFromActor_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, K2Node_SwitchEnum_CmpSuccess) == 0x000021, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000028, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_ConsumeMovementInputVector_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_ConsumeMovementInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetRawInput_ReturnValue) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetRawInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, Temp_int_Loop_Counter_Variable) == 0x000058, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_BreakVector2D_X) == 0x000060, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_BreakVector2D_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_BreakVector2D_Y) == 0x000068, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_BreakVector2D_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Abs_ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Add_IntInt_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Less_DoubleDouble_ReturnValue) == 0x00007C, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000080, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000088, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_ConsumeMovementInputVector_ReturnValue_1) == 0x000098, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_ConsumeMovementInputVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetActorRightVector_ReturnValue) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetInputSettings_ReturnValue) == 0x0000C8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetInputSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetAxisMappingByName_OutMappings) == 0x0000D0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetAxisMappingByName_OutMappings' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Array_Length_ReturnValue) == 0x0000E0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Array_Get_Item) == 0x0000E8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Less_IntInt_ReturnValue) == 0x000110, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_GetInputAnalogKeyState_ReturnValue) == 0x000114, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_GetInputAnalogKeyState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000118, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000120, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000128, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_FClamp_ReturnValue) == 0x000130, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_AddMovementInput_ScaleValue_ImplicitCast) == 0x000138, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_AddMovementInput_ScaleValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000140, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000148, "Member 'GA_PlayerMovement_Glide_Dynamic_C_UpdateVirtualJoystick::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed) == 0x000010, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed) == 0x0000D0, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_GetVelocity_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_GetTransform_ReturnValue) == 0x000030, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_InverseTransformDirection_ReturnValue) == 0x000090, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_InverseTransformDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_BreakVector_X) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_BreakVector_Y) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_BreakVector_Z) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000C0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_ExceedsMinimumSpeed::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime) == 0x000028, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime, DeltaTime_0) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime::DeltaTime_0' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000008, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000020, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetActorDeltaTime::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime) == 0x000008, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime, ReturnValue) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_GetGlideTime::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility \ +static_assert(alignof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility) == 0x0000D0, "Wrong size on GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_ExceedsMinimumSpeed_ReturnValue) == 0x000072, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_ExceedsMinimumSpeed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_GetVelocity_ReturnValue) == 0x000080, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000098, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x0000A8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_BreakVector_X) == 0x0000B0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_BreakVector_Y) == 0x0000B8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_BreakVector_Z) == 0x0000C0, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000C8, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000C9, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility, CallFunc_BooleanAND_ReturnValue) == 0x0000CA, "Member 'GA_PlayerMovement_Glide_Dynamic_C_K2_CanActivateAbility::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_PlayerMovement_Glide_Dynamic_C \ +static_assert(alignof(UGA_PlayerMovement_Glide_Dynamic_C) == 0x000008, "Wrong alignment on UGA_PlayerMovement_Glide_Dynamic_C"); \ +static_assert(sizeof(UGA_PlayerMovement_Glide_Dynamic_C) == 0x000790, "Wrong size on UGA_PlayerMovement_Glide_Dynamic_C"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, UberGraphFrame) == 0x000668, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, MaxGlideSpeed) == 0x000670, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::MaxGlideSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, MinGlideForwardSpeed) == 0x000678, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::MinGlideForwardSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, bEnableExperimentalGlide) == 0x000680, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::bEnableExperimentalGlide' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, YawInputStrength) == 0x000688, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::YawInputStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, CancellationMovementModes) == 0x000690, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::CancellationMovementModes' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, CancellationAbilityQuery) == 0x0006A0, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::CancellationAbilityQuery' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, FastestStartingFallSpeed) == 0x0006E8, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::FastestStartingFallSpeed' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, Glide_Acceleration) == 0x0006F0, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::Glide_Acceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, ExperimentalGlideAcceleration) == 0x000708, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::ExperimentalGlideAcceleration' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, GlideTime) == 0x000720, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::GlideTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, YawRampTime) == 0x000728, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::YawRampTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, YawRampExponent) == 0x000730, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::YawRampExponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, VirtualJoystickSensitivity) == 0x000738, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::VirtualJoystickSensitivity' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, VirtualJoystickYaw) == 0x000740, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::VirtualJoystickYaw' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, bEnableVirtualJoystick) == 0x000748, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::bEnableVirtualJoystick' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, DeltaTime) == 0x000750, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, GlideViewPitch) == 0x000758, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::GlideViewPitch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, GlideRot) == 0x000760, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::GlideRot' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, GlideBoost) == 0x000778, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::GlideBoost' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, GlidePitch) == 0x000780, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::GlidePitch' has a wrong offset!"); \ +static_assert(offsetof(UGA_PlayerMovement_Glide_Dynamic_C, TurnYaw) == 0x000788, "Member 'UGA_PlayerMovement_Glide_Dynamic_C::TurnYaw' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint \ +static_assert(alignof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint) == 0x000008, "Wrong alignment on GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint"); \ +static_assert(sizeof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint) == 0x000248, "Wrong size on GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, EntryPoint) == 0x000000, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_delegate_Variable) == 0x000004, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CustomEvent_WaitingTime) == 0x000014, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CustomEvent_WaitingTime' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_real_Variable) == 0x000018, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue) == 0x000020, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_WrestlerAbilityTask_WaitControlCue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate) == 0x00002C, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_1) == 0x00003C, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_2) == 0x00004C, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000060, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_3) == 0x000068, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_1) == 0x000078, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_WaitRealDelay_ReturnValue) == 0x000080, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_2) == 0x000089, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_4) == 0x00008C, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_WaitRealDelay_ReturnValue_1) == 0x0000A0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_3) == 0x0000A8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_bool_Variable) == 0x0000A9, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_class_Variable) == 0x0000B0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_class_Variable_1) == 0x0000B8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_5) == 0x0000C0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_WaitRealDelay_ReturnValue_2) == 0x0000D0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_4) == 0x0000D8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0000E0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioCharacterComponent_self_CastInput) == 0x0000E8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioCharacterComponent_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x0000F8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioComponentDefault_OutExecBranches) == 0x000100, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioComponentDefault_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioComponentDefault_ReturnValue) == 0x000108, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioComponentDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioComponentDefault_OutExecBranches_1) == 0x000110, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioComponentDefault_OutExecBranches_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAudioComponentDefault_ReturnValue_1) == 0x000118, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAudioComponentDefault_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_SwitchEnum_CmpSuccess) == 0x000120, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_SwitchEnum_CmpSuccess_1) == 0x000121, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_Event_bWasCancelled) == 0x000122, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_MakeStruct_WrestlerTimeDilationConfig) == 0x000128, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_MakeStruct_WrestlerTimeDilationConfig' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_CreateTimeDilation_Handle) == 0x000150, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_CreateTimeDilation_Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_delegate_Variable_1) == 0x000154, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetRealDeltaTime_ReturnValue) == 0x000164, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetRealDeltaTime_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_delegate_Variable_2) == 0x000168, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000178, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetRealDeltaTime_ReturnValue_1) == 0x000180, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetRealDeltaTime_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetLastInputVector_ReturnValue) == 0x000188, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetLastInputVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_CreateDelegate_OutputDelegate_6) == 0x0001A0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_VSize_ReturnValue) == 0x0001B0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0001B8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001C0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_BooleanOR_ReturnValue) == 0x0001C8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x0001D0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_AddNewCameraModifier_ReturnValue) == 0x0001D8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_5) == 0x0001E0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_IsValid_ReturnValue_6) == 0x0001E1, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_FInterpTo_Constant_ReturnValue) == 0x0001E8, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_FInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, Temp_delegate_Variable_3) == 0x0001F0, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000200, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000208, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000218, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, K2Node_Select_Default) == 0x000220, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000228, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_SetTimeDilation_TimeDilation_ImplicitCast) == 0x000230, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_SetTimeDilation_TimeDilation_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000238, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_FInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000240, "Member 'GA_Ma_Sprint_C_ExecuteUbergraph_GA_Ma_Sprint::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Sprint_C_K2_OnEndAbility \ +static_assert(alignof(GA_Ma_Sprint_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Ma_Sprint_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Ma_Sprint_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Ma_Sprint_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Ma_Sprint_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Ma_Sprint_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA \ +static_assert(alignof(GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA) == 0x000004, "Wrong alignment on GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA"); \ +static_assert(sizeof(GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA) == 0x000004, "Wrong size on GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA"); \ +static_assert(offsetof(GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA, WaitingTime) == 0x000000, "Member 'GA_Ma_Sprint_C_OnControlCueProcess_ACD10DBB405FA8B0A4FE32BF44372CFA::WaitingTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ma_Sprint_C \ +static_assert(alignof(UGA_Ma_Sprint_C) == 0x000008, "Wrong alignment on UGA_Ma_Sprint_C"); \ +static_assert(sizeof(UGA_Ma_Sprint_C) == 0x0006B8, "Wrong size on UGA_Ma_Sprint_C"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ma_Sprint_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, TimeDilation) == 0x000670, "Member 'UGA_Ma_Sprint_C::TimeDilation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, TimeDilationGameEffect) == 0x000674, "Member 'UGA_Ma_Sprint_C::TimeDilationGameEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, Dilation_Target) == 0x000680, "Member 'UGA_Ma_Sprint_C::Dilation_Target' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, DilationActual) == 0x000688, "Member 'UGA_Ma_Sprint_C::DilationActual' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, InactiveTimer) == 0x000690, "Member 'UGA_Ma_Sprint_C::InactiveTimer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, CancelStarted) == 0x000698, "Member 'UGA_Ma_Sprint_C::CancelStarted' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, CamModifier) == 0x0006A0, "Member 'UGA_Ma_Sprint_C::CamModifier' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, WorldDilationAmount) == 0x0006A8, "Member 'UGA_Ma_Sprint_C::WorldDilationAmount' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ma_Sprint_C, PB_ABL_MalkSprint) == 0x0006B0, "Member 'UGA_Ma_Sprint_C::PB_ABL_MalkSprint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton) == 0x000010, "Wrong size on WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton, CallFunc_IsSaveInProgress_ReturnValue) == 0x000008, "Member 'WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton::CallFunc_IsSaveInProgress_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton, CallFunc_IsLastLoadedSaveNameValid_ReturnValue) == 0x000009, "Member 'WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton::CallFunc_IsLastLoadedSaveNameValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton, CallFunc_Not_PreBool_ReturnValue) == 0x00000A, "Member 'WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton, CallFunc_BooleanAND_ReturnValue) == 0x00000B, "Member 'WBP_SaveLoadSettingsTab_C_UpdateCheckpointButton::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_Unhighlight \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_Unhighlight) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_Unhighlight"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_Unhighlight) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_Unhighlight"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_Unhighlight, HighlightObject) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_Unhighlight::HighlightObject' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt) == 0x000028, "Wrong size on WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt, ConfirmationType) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt::ConfirmationType' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt, ConfirmationPrompt) == 0x000008, "Member 'WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt::ConfirmationPrompt' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt, CallFunc_GetRPGMenu_ReturnValue) == 0x000010, "Member 'WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt, CallFunc_Create_ReturnValue) == 0x000018, "Member 'WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'WBP_SaveLoadSettingsTab_C_ShowConfirmationPrompt::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_RemovePrompt \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_RemovePrompt) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_RemovePrompt"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_RemovePrompt) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_RemovePrompt"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_RemovePrompt, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_RemovePrompt::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_OnPostSave \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_OnPostSave) == 0x000001, "Wrong alignment on WBP_SaveLoadSettingsTab_C_OnPostSave"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_OnPostSave) == 0x000001, "Wrong size on WBP_SaveLoadSettingsTab_C_OnPostSave"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_OnPostSave, bInSuccess) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_OnPostSave::bInSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_OnConfirm \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_OnConfirm) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_OnConfirm"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_OnConfirm) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_OnConfirm"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_OnConfirm, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_OnConfirm::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_OnCancel \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_OnCancel) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_OnCancel"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_OnCancel) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_OnCancel"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_OnCancel, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_OnCancel::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm) == 0x000010, "Wrong size on WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm::Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm, CallFunc_GetRPGMenu_ReturnValue) == 0x000008, "Member 'WBP_SaveLoadSettingsTab_C_On_Exit_to_Main_Confirm::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_ExitToMainConfirm \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_ExitToMainConfirm) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_ExitToMainConfirm"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_ExitToMainConfirm) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_ExitToMainConfirm"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExitToMainConfirm, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_ExitToMainConfirm::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab) == 0x000200, "Wrong size on WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, EntryPoint) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_Button_4) == 0x000028, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_Button_3) == 0x000030, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_20) == 0x000038, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_20' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_ShowConfirmationPrompt_ConfirmationPrompt) == 0x000040, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_ShowConfirmationPrompt_ConfirmationPrompt' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_2) == 0x000048, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_Button_2) == 0x000058, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000060, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetRPGMenu_ReturnValue_1) == 0x000068, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetRPGMenu_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetRPGMenu_ReturnValue_2) == 0x000070, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetRPGMenu_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_19) == 0x000078, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_19' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_18) == 0x000080, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_18' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_IsSelected_ReturnValue) == 0x000088, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_IsSelected_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_17) == 0x000090, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_17' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_16) == 0x000098, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_16' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_IsSelected_ReturnValue_1) == 0x0000A0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_IsSelected_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_15) == 0x0000A8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_15' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_14) == 0x0000B0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_14' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_IsSelected_ReturnValue_2) == 0x0000B8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_IsSelected_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_13) == 0x0000C0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_13' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_12) == 0x0000C8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_11) == 0x0000D0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_10) == 0x0000D8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_9) == 0x0000E0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_8) == 0x0000E8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0000F0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_bInSuccess) == 0x0000F8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_bInSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetLastLoadedSaveSlot_ReturnValue) == 0x000100, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetLastLoadedSaveSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_3) == 0x000110, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_4) == 0x000120, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetRPGMenu_ReturnValue_3) == 0x000130, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetRPGMenu_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_5) == 0x000138, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetDesiredFocusTarget_ReturnValue) == 0x000148, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetDesiredFocusTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000150, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CreateDelegate_OutputDelegate_6) == 0x000158, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_7) == 0x000168, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetPlayerController_ReturnValue) == 0x000170, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000178, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000180, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_Pop_ReturnValue) == 0x000188, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_Pop_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_SwitchEnum_CmpSuccess) == 0x000190, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_6) == 0x000198, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_5) == 0x0001A0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_4) == 0x0001A8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_3) == 0x0001B0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_2) == 0x0001B8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_IsSelected_ReturnValue_3) == 0x0001C0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_IsSelected_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_ShowConfirmationPrompt_ConfirmationPrompt_1) == 0x0001C8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_ShowConfirmationPrompt_ConfirmationPrompt_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_ShowConfirmationPrompt_ConfirmationPrompt_2) == 0x0001D0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_ShowConfirmationPrompt_ConfirmationPrompt_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_Button_1) == 0x0001D8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_CustomEvent_Button) == 0x0001E0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_CustomEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button_1) == 0x0001E8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, CallFunc_GetRPGMenu_ReturnValue_4) == 0x0001F0, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::CallFunc_GetRPGMenu_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab, K2Node_ComponentBoundEvent_Button) == 0x0001F8, "Member 'WBP_SaveLoadSettingsTab_C_ExecuteUbergraph_WBP_SaveLoadSettingsTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_DoCustomNavigation \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_DoCustomNavigation"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation) == 0x000018, "Wrong size on WBP_SaveLoadSettingsTab_C_DoCustomNavigation"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation, Navigation_0) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_DoCustomNavigation::Navigation_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation, ReturnValue) == 0x000008, "Member 'WBP_SaveLoadSettingsTab_C_DoCustomNavigation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation, K2Node_SwitchEnum_CmpSuccess) == 0x000010, "Member 'WBP_SaveLoadSettingsTab_C_DoCustomNavigation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_DoCustomNavigation, CallFunc_GetIsEnabled_ReturnValue) == 0x000011, "Member 'WBP_SaveLoadSettingsTab_C_DoCustomNavigation::CallFunc_GetIsEnabled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_ConfirmQuitGame \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_ConfirmQuitGame) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_ConfirmQuitGame"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_ConfirmQuitGame) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_ConfirmQuitGame"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_ConfirmQuitGame, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_ConfirmQuitGame::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ResumeGame_K2Node_ComponentBoundEvent_16_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_QuitGame_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_ExitToMain_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_SaveLoadSettingsTab_Back_K2Node_ComponentBoundEvent_15_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_QuitGame_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_LoadLastCheckpoint_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BndEvt__WBP_RPGFileMenuTab_ExitToMain_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'WBP_SaveLoadSettingsTab_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SaveLoadSettingsTab_C \ +static_assert(alignof(UWBP_SaveLoadSettingsTab_C) == 0x000008, "Wrong alignment on UWBP_SaveLoadSettingsTab_C"); \ +static_assert(sizeof(UWBP_SaveLoadSettingsTab_C) == 0x000530, "Wrong size on UWBP_SaveLoadSettingsTab_C"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, UberGraphFrame) == 0x000490, "Member 'UWBP_SaveLoadSettingsTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, ActivatableLayout) == 0x000498, "Member 'UWBP_SaveLoadSettingsTab_C::ActivatableLayout' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Back) == 0x0004A0, "Member 'UWBP_SaveLoadSettingsTab_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, ExitToMain) == 0x0004A8, "Member 'UWBP_SaveLoadSettingsTab_C::ExitToMain' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Highlight_Exit) == 0x0004B0, "Member 'UWBP_SaveLoadSettingsTab_C::Highlight_Exit' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Highlight_LastCheckpoint) == 0x0004B8, "Member 'UWBP_SaveLoadSettingsTab_C::Highlight_LastCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Highlight_MainMenu) == 0x0004C0, "Member 'UWBP_SaveLoadSettingsTab_C::Highlight_MainMenu' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Highlight_Resume) == 0x0004C8, "Member 'UWBP_SaveLoadSettingsTab_C::Highlight_Resume' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, LoadLastCheckpoint) == 0x0004D0, "Member 'UWBP_SaveLoadSettingsTab_C::LoadLastCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, QuitGame) == 0x0004D8, "Member 'UWBP_SaveLoadSettingsTab_C::QuitGame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, ResumeGame) == 0x0004E0, "Member 'UWBP_SaveLoadSettingsTab_C::ResumeGame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, Select) == 0x0004E8, "Member 'UWBP_SaveLoadSettingsTab_C::Select' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, VerticalBox) == 0x0004F0, "Member 'UWBP_SaveLoadSettingsTab_C::VerticalBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, IsSaveSlotContainerVisible) == 0x0004F8, "Member 'UWBP_SaveLoadSettingsTab_C::IsSaveSlotContainerVisible' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, CurrentConfrimationPrompt) == 0x000500, "Member 'UWBP_SaveLoadSettingsTab_C::CurrentConfrimationPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, MapTab) == 0x000508, "Member 'UWBP_SaveLoadSettingsTab_C::MapTab' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, PB_Music_ReloadLastCheckpoint) == 0x000510, "Member 'UWBP_SaveLoadSettingsTab_C::PB_Music_ReloadLastCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, PT_Menu_TabID) == 0x000518, "Member 'UWBP_SaveLoadSettingsTab_C::PT_Menu_TabID' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, MUS_LoadLastCheckpoint) == 0x000520, "Member 'UWBP_SaveLoadSettingsTab_C::MUS_LoadLastCheckpoint' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SaveLoadSettingsTab_C, NewVar) == 0x000528, "Member 'UWBP_SaveLoadSettingsTab_C::NewVar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance \ +static_assert(alignof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance) == 0x000010, "Wrong alignment on GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance"); \ +static_assert(sizeof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance) == 0x000790, "Wrong size on GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, EntryPoint) == 0x000000, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000010, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000020, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate) == 0x000024, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_WaitRealDelay_ReturnValue) == 0x000038, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Variable) == 0x000040, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_1) == 0x000044, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_WaitDelay_ReturnValue) == 0x000058, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Variable_1) == 0x000060, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_1) == 0x000061, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_real_Variable) == 0x000064, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Variable_2) == 0x000068, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_real_Variable_1) == 0x00006C, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Has_Been_Initd_Variable) == 0x000070, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_WaitDelay_ReturnValue_1) == 0x000078, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_2) == 0x000080, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Has_Been_Initd_Variable_1) == 0x000081, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_Variable_3) == 0x000082, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000088, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_3) == 0x000090, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_2) == 0x000094, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000A4, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_Event_bWasCancelled) == 0x0000B4, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_Event_EventData) == 0x0000B8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000168, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000170, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_4) == 0x000248, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000250, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAIController_ReturnValue) == 0x000258, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000260, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000268, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_DynamicCast_bSuccess) == 0x000278, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_5) == 0x000279, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000280, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAIController_ReturnValue_1) == 0x000288, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetBlackboard_ReturnValue) == 0x000290, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_6) == 0x000298, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x0002A0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_SendStateTreeEventToActor_ReturnValue_1) == 0x0002A8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_SendStateTreeEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002AC, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_IsClosed_Variable) == 0x0002BC, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0002C0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002C8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_5) == 0x0002E0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BooleanAND_ReturnValue) == 0x0002F0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0002F8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_6) == 0x000300, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000310, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_TryActivateAbilitiesByTag_ReturnValue) == 0x000330, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_TryActivateAbilitiesByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_7) == 0x000331, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_8) == 0x000332, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000338, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000340, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_bool_IsClosed_Variable_1) == 0x000358, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_Select_Default) == 0x00035C, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000360, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetSocketLocation_ReturnValue) == 0x000368, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000380, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000398, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, Temp_byte_Variable) == 0x0003B0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_Vector_Distance_ReturnValue) == 0x0003B8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0003C0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0003C1, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BooleanAND_ReturnValue_1) == 0x0003C2, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetPlayerPawn_ReturnValue) == 0x0003C8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x0003D0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetTransform_ReturnValue) == 0x0003E0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000440, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_FinishSpawningActor_ReturnValue) == 0x000448, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000450, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000468, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x000470, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAIController_ReturnValue_2) == 0x000478, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAIController_ReturnValue_3) == 0x000480, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetBlackboard_ReturnValue_1) == 0x000488, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetBlackboard_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsDetectingActor_ReturnValue) == 0x000490, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000498, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_Vector_Distance_ReturnValue_1) == 0x0004B0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x0004B8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_MakeArray_Array) == 0x0004C0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_LineTraceSingle_OutHit) == 0x0004D0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_LineTraceSingle_ReturnValue) == 0x0005B8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_9) == 0x0005B9, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_bBlockingHit) == 0x0005BA, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_bInitialOverlap) == 0x0005BB, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_Time) == 0x0005BC, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_Distance) == 0x0005C0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_Location) == 0x0005C8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_ImpactPoint) == 0x0005E0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_Normal) == 0x0005F8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_ImpactNormal) == 0x000610, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_PhysMat) == 0x000628, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_HitActor) == 0x000630, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_HitComponent) == 0x000638, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_HitBoneName) == 0x000640, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_BoneName) == 0x000648, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_HitItem) == 0x000650, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_ElementIndex) == 0x000654, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_FaceIndex) == 0x000658, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_TraceStart) == 0x000660, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BreakHitResult_TraceEnd) == 0x000678, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_Add_VectorVector_ReturnValue) == 0x000690, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_Select_Default_1) == 0x0006A8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_CreateDelegate_OutputDelegate_7) == 0x0006C0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x0006D0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0006D8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0006F0, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0006F8, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000700, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000708, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000710, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000718, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_DynamicCast_bSuccess_1) == 0x000720, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsMassCharacter_ReturnValue) == 0x000721, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000728, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000738, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x00073C, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000748, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasTag_ReturnValue) == 0x000750, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000758, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000760, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000770, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, K2Node_Select_Default_2) == 0x000774, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_WaitDelay_ReturnValue_2) == 0x000778, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance, CallFunc_IsValid_ReturnValue_10) == 0x000780, "Member 'GA_Ve_Beckon_trance_C_ExecuteUbergraph_GA_Ve_Beckon_trance::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Ve_Beckon_trance_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Ve_Beckon_trance_C_K2_OnEndAbility \ +static_assert(alignof(GA_Ve_Beckon_trance_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Ve_Beckon_trance_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Ve_Beckon_trance_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Ve_Beckon_trance_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Ve_Beckon_trance_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Ve_Beckon_trance_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Ve_Beckon_trance_C \ +static_assert(alignof(UGA_Ve_Beckon_trance_C) == 0x000008, "Wrong alignment on UGA_Ve_Beckon_trance_C"); \ +static_assert(sizeof(UGA_Ve_Beckon_trance_C) == 0x000728, "Wrong size on UGA_Ve_Beckon_trance_C"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, UberGraphFrame) == 0x000668, "Member 'UGA_Ve_Beckon_trance_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, TargetLocation) == 0x000670, "Member 'UGA_Ve_Beckon_trance_C::TargetLocation' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, BeckonStateTreeEvent) == 0x000688, "Member 'UGA_Ve_Beckon_trance_C::BeckonStateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, MoveToLocationKey) == 0x0006A8, "Member 'UGA_Ve_Beckon_trance_C::MoveToLocationKey' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, BeckonEndStateTreeEvent) == 0x0006B0, "Member 'UGA_Ve_Beckon_trance_C::BeckonEndStateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, bHostile) == 0x0006D0, "Member 'UGA_Ve_Beckon_trance_C::bHostile' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, bCanBreak) == 0x0006D1, "Member 'UGA_Ve_Beckon_trance_C::bCanBreak' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, BreakDistance) == 0x0006D8, "Member 'UGA_Ve_Beckon_trance_C::BreakDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, BeckonTarget) == 0x0006E0, "Member 'UGA_Ve_Beckon_trance_C::BeckonTarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, EndPointTolerance) == 0x0006E8, "Member 'UGA_Ve_Beckon_trance_C::EndPointTolerance' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, Duration) == 0x0006F0, "Member 'UGA_Ve_Beckon_trance_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, Movetarget) == 0x0006F8, "Member 'UGA_Ve_Beckon_trance_C::Movetarget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, Done) == 0x000710, "Member 'UGA_Ve_Beckon_trance_C::Done' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, TranceInstigator) == 0x000718, "Member 'UGA_Ve_Beckon_trance_C::TranceInstigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_Ve_Beckon_trance_C, bIsFeeding) == 0x000720, "Member 'UGA_Ve_Beckon_trance_C::bIsFeeding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_ToggleCollision_C_Received_NotifyBegin \ +static_assert(alignof(AN_ToggleCollision_C_Received_NotifyBegin) == 0x000008, "Wrong alignment on AN_ToggleCollision_C_Received_NotifyBegin"); \ +static_assert(sizeof(AN_ToggleCollision_C_Received_NotifyBegin) == 0x000070, "Wrong size on AN_ToggleCollision_C_Received_NotifyBegin"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, MeshComp) == 0x000000, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, Animation) == 0x000008, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, TotalDuration) == 0x000010, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::TotalDuration' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, EventReference) == 0x000018, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, ReturnValue) == 0x000048, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, CallFunc_GetOwner_ReturnValue) == 0x000050, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000058, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, K2Node_DynamicCast_AsCapsule_Collision) == 0x000060, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::K2Node_DynamicCast_AsCapsule_Collision' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyBegin, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'AN_ToggleCollision_C_Received_NotifyBegin::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AN_ToggleCollision_C_Received_NotifyEnd \ +static_assert(alignof(AN_ToggleCollision_C_Received_NotifyEnd) == 0x000008, "Wrong alignment on AN_ToggleCollision_C_Received_NotifyEnd"); \ +static_assert(sizeof(AN_ToggleCollision_C_Received_NotifyEnd) == 0x000068, "Wrong size on AN_ToggleCollision_C_Received_NotifyEnd"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, MeshComp) == 0x000000, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::MeshComp' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, Animation) == 0x000008, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::Animation' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, EventReference) == 0x000010, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::EventReference' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, ReturnValue) == 0x000040, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, CallFunc_GetOwner_ReturnValue) == 0x000048, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000050, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, K2Node_DynamicCast_AsCapsule_Collision) == 0x000058, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::K2Node_DynamicCast_AsCapsule_Collision' has a wrong offset!"); \ +static_assert(offsetof(AN_ToggleCollision_C_Received_NotifyEnd, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'AN_ToggleCollision_C_Received_NotifyEnd::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAN_ToggleCollision_C \ +static_assert(alignof(UAN_ToggleCollision_C) == 0x000008, "Wrong alignment on UAN_ToggleCollision_C"); \ +static_assert(sizeof(UAN_ToggleCollision_C) == 0x000030, "Wrong size on UAN_ToggleCollision_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact \ +static_assert(alignof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact) == 0x000008, "Wrong alignment on GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact"); \ +static_assert(sizeof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact) == 0x000060, "Wrong size on GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, EntryPoint) == 0x000000, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, CallFunc_K2_CommitAbility_ReturnValue) == 0x000044, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, CallFunc_GetMontage_ReturnValue) == 0x000048, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000050, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_EnemyStealthReact_C_ExecuteUbergraph_GA_EnemyStealthReact::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyStealthReact_C \ +static_assert(alignof(UGA_EnemyStealthReact_C) == 0x000008, "Wrong alignment on UGA_EnemyStealthReact_C"); \ +static_assert(sizeof(UGA_EnemyStealthReact_C) == 0x000670, "Wrong size on UGA_EnemyStealthReact_C"); \ +static_assert(offsetof(UGA_EnemyStealthReact_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyStealthReact_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E \ +static_assert(alignof(GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(sizeof(GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E) == 0x0000B8, "Wrong size on GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(offsetof(GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E, EventTag) == 0x000000, "Member 'GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E, EventData) == 0x000008, "Member 'GA_GhoulHitReact_C_EventReceived_8FB5617E4EFCD8496E03818FCDF9413E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact \ +static_assert(alignof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact"); \ +static_assert(sizeof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact) == 0x0006F8, "Wrong size on GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, EntryPoint) == 0x000000, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000008, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_NotifyName_3) == 0x000010, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_NotifyName_2) == 0x000028, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_NotifyName_1) == 0x000040, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_2) == 0x000048, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_NotifyName) == 0x000058, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_3) == 0x000060, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, Temp_name_Variable) == 0x000070, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_4) == 0x000078, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventTag_4) == 0x000088, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventData_4) == 0x000090, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_5) == 0x000140, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventTag_3) == 0x000150, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventData_3) == 0x000158, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_6) == 0x000208, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventTag_2) == 0x000218, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventData_2) == 0x000220, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_7) == 0x0002D0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventTag_1) == 0x0002E0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventData_1) == 0x0002E8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_8) == 0x000398, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventTag) == 0x0003A8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_EventData) == 0x0003B0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_9) == 0x000460, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, Temp_struct_Variable) == 0x000470, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, Temp_struct_Variable_1) == 0x000520, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_bMatchesComparison) == 0x000528, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_bMatchesComparison' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_CurrentValue) == 0x00052C, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_10) == 0x000530, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, Temp_real_Variable) == 0x000540, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, Temp_bool_Variable) == 0x000544, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_WaitForAttributeChangeThreshold_ReturnValue) == 0x000548, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_WaitForAttributeChangeThreshold_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_IsValid_ReturnValue) == 0x000550, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetOwningComponentFromActorInfo_ReturnValue) == 0x000558, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetOwningComponentFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetOffsetDirection_ReturnValue) == 0x000560, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetOffsetDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CustomEvent_NotifyName_4) == 0x000578, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetDeathMontage_ReturnValue) == 0x000580, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetDeathMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x000588, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_Event_bWasCancelled) == 0x000590, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_IsValid_ReturnValue_1) == 0x000591, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000598, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetOffsetDirection_ReturnValue_1) == 0x0005A0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetOffsetDirection_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_NegateVector_ReturnValue) == 0x0005B8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0005D0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0005D8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0005F0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x0005F8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_CreateDelegate_OutputDelegate_11) == 0x000600, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_IsValid_ReturnValue_2) == 0x000610, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_Event_EventData) == 0x000618, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetReactionMontage_ReturnValue) == 0x0006C8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetReactionMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0006D0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_DynamicCast_AsPawn) == 0x0006D8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, K2Node_DynamicCast_bSuccess) == 0x0006E0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_IsValid_ReturnValue_3) == 0x0006E1, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0006E8, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x0006F0, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x0006F4, "Member 'GA_GhoulHitReact_C_ExecuteUbergraph_GA_GhoulHitReact::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_GhoulHitReact_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_K2_OnEndAbility \ +static_assert(alignof(GA_GhoulHitReact_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_GhoulHitReact_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_GhoulHitReact_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_GhoulHitReact_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_GhoulHitReact_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_GhoulHitReact_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38 \ +static_assert(alignof(GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38, NotifyName) == 0x000000, "Member 'GA_GhoulHitReact_C_OnBlendOut_712D1D0E48F0C019718702AE934E7E38::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E \ +static_assert(alignof(GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E) == 0x0000B8, "Wrong size on GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E, EventTag) == 0x000000, "Member 'GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E, EventData) == 0x000008, "Member 'GA_GhoulHitReact_C_OnBlendOut_8FB5617E4EFCD8496E03818FCDF9413E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E \ +static_assert(alignof(GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E) == 0x0000B8, "Wrong size on GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E, EventTag) == 0x000000, "Member 'GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E, EventData) == 0x000008, "Member 'GA_GhoulHitReact_C_OnCancelled_8FB5617E4EFCD8496E03818FCDF9413E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B \ +static_assert(alignof(GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B, bMatchesComparison) == 0x000000, "Member 'GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B::bMatchesComparison' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B, CurrentValue) == 0x000004, "Member 'GA_GhoulHitReact_C_OnChange_72F473914CAC23EE8FC2F883DF226A6B::CurrentValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38 \ +static_assert(alignof(GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38, NotifyName) == 0x000000, "Member 'GA_GhoulHitReact_C_OnCompleted_712D1D0E48F0C019718702AE934E7E38::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E \ +static_assert(alignof(GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E) == 0x0000B8, "Wrong size on GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E, EventTag) == 0x000000, "Member 'GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E, EventData) == 0x000008, "Member 'GA_GhoulHitReact_C_OnCompleted_8FB5617E4EFCD8496E03818FCDF9413E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38 \ +static_assert(alignof(GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38, NotifyName) == 0x000000, "Member 'GA_GhoulHitReact_C_OnInterrupted_712D1D0E48F0C019718702AE934E7E38::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E \ +static_assert(alignof(GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E) == 0x0000B8, "Wrong size on GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E, EventTag) == 0x000000, "Member 'GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E, EventData) == 0x000008, "Member 'GA_GhoulHitReact_C_OnInterrupted_8FB5617E4EFCD8496E03818FCDF9413E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38 \ +static_assert(alignof(GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38, NotifyName) == 0x000000, "Member 'GA_GhoulHitReact_C_OnNotifyBegin_712D1D0E48F0C019718702AE934E7E38::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38 \ +static_assert(alignof(GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38) == 0x000004, "Wrong alignment on GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(sizeof(GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38) == 0x000008, "Wrong size on GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38"); \ +static_assert(offsetof(GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38, NotifyName) == 0x000000, "Member 'GA_GhoulHitReact_C_OnNotifyEnd_712D1D0E48F0C019718702AE934E7E38::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_GetAttackDirection \ +static_assert(alignof(GA_GhoulHitReact_C_GetAttackDirection) == 0x000010, "Wrong alignment on GA_GhoulHitReact_C_GetAttackDirection"); \ +static_assert(sizeof(GA_GhoulHitReact_C_GetAttackDirection) == 0x000130, "Wrong size on GA_GhoulHitReact_C_GetAttackDirection"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, TargetData) == 0x000000, "Member 'GA_GhoulHitReact_C_GetAttackDirection::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, ReturnValue) == 0x000028, "Member 'GA_GhoulHitReact_C_GetAttackDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000040, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_GetTargetDataOrigin_ReturnValue) == 0x000050, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_GetTargetDataOrigin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B0, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_BreakTransform_Location) == 0x0000C8, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_BreakTransform_Rotation) == 0x0000E0, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_BreakTransform_Scale) == 0x0000F8, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetAttackDirection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000110, "Member 'GA_GhoulHitReact_C_GetAttackDirection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_GetDeathMontage \ +static_assert(alignof(GA_GhoulHitReact_C_GetDeathMontage) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_GetDeathMontage"); \ +static_assert(sizeof(GA_GhoulHitReact_C_GetDeathMontage) == 0x0000C8, "Wrong size on GA_GhoulHitReact_C_GetDeathMontage"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetDeathMontage, EventData) == 0x000000, "Member 'GA_GhoulHitReact_C_GetDeathMontage::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetDeathMontage, ReturnValue) == 0x0000B0, "Member 'GA_GhoulHitReact_C_GetDeathMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetDeathMontage, Temp_bool_Variable) == 0x0000B8, "Member 'GA_GhoulHitReact_C_GetDeathMontage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetDeathMontage, CallFunc_IsAttackFromRight_ReturnValue) == 0x0000B9, "Member 'GA_GhoulHitReact_C_GetDeathMontage::CallFunc_IsAttackFromRight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetDeathMontage, K2Node_Select_Default) == 0x0000C0, "Member 'GA_GhoulHitReact_C_GetDeathMontage::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_GetOffsetDirection \ +static_assert(alignof(GA_GhoulHitReact_C_GetOffsetDirection) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_GetOffsetDirection"); \ +static_assert(sizeof(GA_GhoulHitReact_C_GetOffsetDirection) == 0x000140, "Wrong size on GA_GhoulHitReact_C_GetOffsetDirection"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, GameplayEventData) == 0x000000, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, ReturnValue) == 0x0000B0, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000C8, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_IsValid_ReturnValue_1) == 0x0000D1, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_BooleanAND_ReturnValue) == 0x0000F0, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000F8, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000110, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetOffsetDirection, CallFunc_Vector_Normal2D_ReturnValue) == 0x000128, "Member 'GA_GhoulHitReact_C_GetOffsetDirection::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_GetReactionMontage \ +static_assert(alignof(GA_GhoulHitReact_C_GetReactionMontage) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_GetReactionMontage"); \ +static_assert(sizeof(GA_GhoulHitReact_C_GetReactionMontage) == 0x0000C8, "Wrong size on GA_GhoulHitReact_C_GetReactionMontage"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetReactionMontage, EventData) == 0x000000, "Member 'GA_GhoulHitReact_C_GetReactionMontage::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetReactionMontage, ReturnValue) == 0x0000B0, "Member 'GA_GhoulHitReact_C_GetReactionMontage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetReactionMontage, Temp_bool_Variable) == 0x0000B8, "Member 'GA_GhoulHitReact_C_GetReactionMontage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetReactionMontage, CallFunc_IsAttackFromRight_ReturnValue) == 0x0000B9, "Member 'GA_GhoulHitReact_C_GetReactionMontage::CallFunc_IsAttackFromRight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_GetReactionMontage, K2Node_Select_Default) == 0x0000C0, "Member 'GA_GhoulHitReact_C_GetReactionMontage::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_GhoulHitReact_C_IsAttackFromRight \ +static_assert(alignof(GA_GhoulHitReact_C_IsAttackFromRight) == 0x000008, "Wrong alignment on GA_GhoulHitReact_C_IsAttackFromRight"); \ +static_assert(sizeof(GA_GhoulHitReact_C_IsAttackFromRight) == 0x000090, "Wrong size on GA_GhoulHitReact_C_IsAttackFromRight"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, TargetData) == 0x000000, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, ReturnValue) == 0x000028, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_GetAttackDirection_ReturnValue) == 0x000038, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_GetAttackDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_GetActorRightVector_ReturnValue) == 0x000050, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_Vector_Normal2D_ReturnValue) == 0x000068, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_Dot_VectorVector_ReturnValue) == 0x000080, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_GhoulHitReact_C_IsAttackFromRight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_GhoulHitReact_C_IsAttackFromRight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_GhoulHitReact_C \ +static_assert(alignof(UGA_GhoulHitReact_C) == 0x000008, "Wrong alignment on UGA_GhoulHitReact_C"); \ +static_assert(sizeof(UGA_GhoulHitReact_C) == 0x000770, "Wrong size on UGA_GhoulHitReact_C"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, UberGraphFrame) == 0x000668, "Member 'UGA_GhoulHitReact_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, LeftReactMontage) == 0x000670, "Member 'UGA_GhoulHitReact_C::LeftReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, RightReactMontage) == 0x000678, "Member 'UGA_GhoulHitReact_C::RightReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, OffsetStrength) == 0x000680, "Member 'UGA_GhoulHitReact_C::OffsetStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, OffsetDuration) == 0x000688, "Member 'UGA_GhoulHitReact_C::OffsetDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, PunchEventData) == 0x000690, "Member 'UGA_GhoulHitReact_C::PunchEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, LeftDeathReactMontage) == 0x000740, "Member 'UGA_GhoulHitReact_C::LeftDeathReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, RightDeathReactMontage) == 0x000748, "Member 'UGA_GhoulHitReact_C::RightDeathReactMontage' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, bCanBeStunned) == 0x000750, "Member 'UGA_GhoulHitReact_C::bCanBeStunned' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, StunThreshold) == 0x000758, "Member 'UGA_GhoulHitReact_C::StunThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, AnimStartTime) == 0x000760, "Member 'UGA_GhoulHitReact_C::AnimStartTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_GhoulHitReact_C, bHasDied) == 0x000768, "Member 'UGA_GhoulHitReact_C::bHasDied' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_Tick \ +static_assert(alignof(WBP_RemappingWidget_C_Tick) == 0x000004, "Wrong alignment on WBP_RemappingWidget_C_Tick"); \ +static_assert(sizeof(WBP_RemappingWidget_C_Tick) == 0x00003C, "Wrong size on WBP_RemappingWidget_C_Tick"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_RemappingWidget_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_RemappingWidget_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_ShowWarningPopup \ +static_assert(alignof(WBP_RemappingWidget_C_ShowWarningPopup) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_ShowWarningPopup"); \ +static_assert(sizeof(WBP_RemappingWidget_C_ShowWarningPopup) == 0x000098, "Wrong size on WBP_RemappingWidget_C_ShowWarningPopup"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, Primary) == 0x000000, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::Primary' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, CallFunc_GetWarningText_WarningText) == 0x000008, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::CallFunc_GetWarningText_WarningText' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, K2Node_MakeStruct_WrestlerConfirmationPromptData) == 0x000020, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::K2Node_MakeStruct_WrestlerConfirmationPromptData' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, K2Node_CreateDelegate_OutputDelegate) == 0x000070, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, K2Node_CreateDelegate_OutputDelegate_1) == 0x000080, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ShowWarningPopup, CallFunc_Create_ReturnValue) == 0x000090, "Member 'WBP_RemappingWidget_C_ShowWarningPopup::CallFunc_Create_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_SetWarningMessage \ +static_assert(alignof(WBP_RemappingWidget_C_SetWarningMessage) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_SetWarningMessage"); \ +static_assert(sizeof(WBP_RemappingWidget_C_SetWarningMessage) == 0x000038, "Wrong size on WBP_RemappingWidget_C_SetWarningMessage"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetWarningMessage, Primary) == 0x000000, "Member 'WBP_RemappingWidget_C_SetWarningMessage::Primary' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetWarningMessage, ActionDescription) == 0x000008, "Member 'WBP_RemappingWidget_C_SetWarningMessage::ActionDescription' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetWarningMessage, CallFunc_GetWarningText_WarningText) == 0x000020, "Member 'WBP_RemappingWidget_C_SetWarningMessage::CallFunc_GetWarningText_WarningText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_SetKeySelectorStyle \ +static_assert(alignof(WBP_RemappingWidget_C_SetKeySelectorStyle) == 0x000010, "Wrong alignment on WBP_RemappingWidget_C_SetKeySelectorStyle"); \ +static_assert(sizeof(WBP_RemappingWidget_C_SetKeySelectorStyle) == 0x000E70, "Wrong size on WBP_RemappingWidget_C_SetKeySelectorStyle"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetKeySelectorStyle, CanRemap) == 0x000000, "Member 'WBP_RemappingWidget_C_SetKeySelectorStyle::CanRemap' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetKeySelectorStyle, DefaultTextStyle) == 0x000010, "Member 'WBP_RemappingWidget_C_SetKeySelectorStyle::DefaultTextStyle' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetKeySelectorStyle, DefaultSelectorStyle) == 0x000350, "Member 'WBP_RemappingWidget_C_SetKeySelectorStyle::DefaultSelectorStyle' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetKeySelectorStyle, WarningTextStyle) == 0x000740, "Member 'WBP_RemappingWidget_C_SetKeySelectorStyle::WarningTextStyle' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_SetKeySelectorStyle, WarningSelectorStyle) == 0x000A80, "Member 'WBP_RemappingWidget_C_SetKeySelectorStyle::WarningSelectorStyle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_Set_Default_Keys \ +static_assert(alignof(WBP_RemappingWidget_C_Set_Default_Keys) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_Set_Default_Keys"); \ +static_assert(sizeof(WBP_RemappingWidget_C_Set_Default_Keys) == 0x000068, "Wrong size on WBP_RemappingWidget_C_Set_Default_Keys"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Set_Default_Keys, CallFunc_GetKeyMapping_C_ReturnValue) == 0x000000, "Member 'WBP_RemappingWidget_C_Set_Default_Keys::CallFunc_GetKeyMapping_C_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Set_Default_Keys, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'WBP_RemappingWidget_C_Set_Default_Keys::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Set_Default_Keys, CallFunc_GetKeyMapping_MK_ReturnValue) == 0x000038, "Member 'WBP_RemappingWidget_C_Set_Default_Keys::CallFunc_GetKeyMapping_MK_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_ReassignRemap \ +static_assert(alignof(WBP_RemappingWidget_C_ReassignRemap) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_ReassignRemap"); \ +static_assert(sizeof(WBP_RemappingWidget_C_ReassignRemap) == 0x000008, "Wrong size on WBP_RemappingWidget_C_ReassignRemap"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ReassignRemap, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_ReassignRemap::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_PlayInvalidSecondaryEffect \ +static_assert(alignof(WBP_RemappingWidget_C_PlayInvalidSecondaryEffect) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_PlayInvalidSecondaryEffect"); \ +static_assert(sizeof(WBP_RemappingWidget_C_PlayInvalidSecondaryEffect) == 0x000008, "Wrong size on WBP_RemappingWidget_C_PlayInvalidSecondaryEffect"); \ +static_assert(offsetof(WBP_RemappingWidget_C_PlayInvalidSecondaryEffect, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_RemappingWidget_C_PlayInvalidSecondaryEffect::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_PlayInvalidPrimaryEffect \ +static_assert(alignof(WBP_RemappingWidget_C_PlayInvalidPrimaryEffect) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_PlayInvalidPrimaryEffect"); \ +static_assert(sizeof(WBP_RemappingWidget_C_PlayInvalidPrimaryEffect) == 0x000008, "Wrong size on WBP_RemappingWidget_C_PlayInvalidPrimaryEffect"); \ +static_assert(offsetof(WBP_RemappingWidget_C_PlayInvalidPrimaryEffect, CallFunc_PlayAnimation_ReturnValue) == 0x000000, "Member 'WBP_RemappingWidget_C_PlayInvalidPrimaryEffect::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_IsSelectedKeyValid \ +static_assert(alignof(WBP_RemappingWidget_C_IsSelectedKeyValid) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_IsSelectedKeyValid"); \ +static_assert(sizeof(WBP_RemappingWidget_C_IsSelectedKeyValid) == 0x0000A0, "Wrong size on WBP_RemappingWidget_C_IsSelectedKeyValid"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, IsValid) == 0x000000, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::IsValid' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000001, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_GetInitialInputData_ReturnValue) == 0x000008, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_GetInitialInputData_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_Not_PreBool_ReturnValue) == 0x000098, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000099, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_EqualEqual_KeyKey_ReturnValue_2) == 0x00009A, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_EqualEqual_KeyKey_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_Not_PreBool_ReturnValue_1) == 0x00009B, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_Not_PreBool_ReturnValue_2) == 0x00009C, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_BooleanAND_ReturnValue) == 0x00009D, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsSelectedKeyValid, CallFunc_BooleanAND_ReturnValue_1) == 0x00009E, "Member 'WBP_RemappingWidget_C_IsSelectedKeyValid::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_IsKeyAllowed \ +static_assert(alignof(WBP_RemappingWidget_C_IsKeyAllowed) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_IsKeyAllowed"); \ +static_assert(sizeof(WBP_RemappingWidget_C_IsKeyAllowed) == 0x000038, "Wrong size on WBP_RemappingWidget_C_IsKeyAllowed"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, Key) == 0x000000, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::Key' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, Allowed) == 0x000018, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::Allowed' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, CallFunc_GetBlockedKeys_Keys) == 0x000020, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::CallFunc_GetBlockedKeys_Keys' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, CallFunc_IsIconForKeyValid_ReturnValue) == 0x000030, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::CallFunc_IsIconForKeyValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, CallFunc_Array_Contains_ReturnValue) == 0x000031, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, CallFunc_Not_PreBool_ReturnValue) == 0x000032, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsKeyAllowed, CallFunc_BooleanAND_ReturnValue) == 0x000033, "Member 'WBP_RemappingWidget_C_IsKeyAllowed::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_IsInSelectionMode \ +static_assert(alignof(WBP_RemappingWidget_C_IsInSelectionMode) == 0x000001, "Wrong alignment on WBP_RemappingWidget_C_IsInSelectionMode"); \ +static_assert(sizeof(WBP_RemappingWidget_C_IsInSelectionMode) == 0x000004, "Wrong size on WBP_RemappingWidget_C_IsInSelectionMode"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsInSelectionMode, IsSelecting) == 0x000000, "Member 'WBP_RemappingWidget_C_IsInSelectionMode::IsSelecting' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsInSelectionMode, CallFunc_GetIsSelectingKey_ReturnValue) == 0x000001, "Member 'WBP_RemappingWidget_C_IsInSelectionMode::CallFunc_GetIsSelectingKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsInSelectionMode, CallFunc_GetIsSelectingKey_ReturnValue_1) == 0x000002, "Member 'WBP_RemappingWidget_C_IsInSelectionMode::CallFunc_GetIsSelectingKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_IsInSelectionMode, CallFunc_BooleanAND_ReturnValue) == 0x000003, "Member 'WBP_RemappingWidget_C_IsInSelectionMode::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_HideWarningPrompt \ +static_assert(alignof(WBP_RemappingWidget_C_HideWarningPrompt) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_HideWarningPrompt"); \ +static_assert(sizeof(WBP_RemappingWidget_C_HideWarningPrompt) == 0x000010, "Wrong size on WBP_RemappingWidget_C_HideWarningPrompt"); \ +static_assert(offsetof(WBP_RemappingWidget_C_HideWarningPrompt, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_HideWarningPrompt::Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_HideWarningPrompt, CallFunc_GetDesiredFocusTarget_ReturnValue) == 0x000008, "Member 'WBP_RemappingWidget_C_HideWarningPrompt::CallFunc_GetDesiredFocusTarget_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_GetWarningText \ +static_assert(alignof(WBP_RemappingWidget_C_GetWarningText) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_GetWarningText"); \ +static_assert(sizeof(WBP_RemappingWidget_C_GetWarningText) == 0x0001B0, "Wrong size on WBP_RemappingWidget_C_GetWarningText"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, Primary) == 0x000000, "Member 'WBP_RemappingWidget_C_GetWarningText::Primary' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, WarningText) == 0x000008, "Member 'WBP_RemappingWidget_C_GetWarningText::WarningText' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, ActionDescription) == 0x000020, "Member 'WBP_RemappingWidget_C_GetWarningText::ActionDescription' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, K2Node_MakeArray_Array) == 0x000038, "Member 'WBP_RemappingWidget_C_GetWarningText::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Format_ReturnValue) == 0x000048, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, K2Node_MakeArray_Array_1) == 0x000060, "Member 'WBP_RemappingWidget_C_GetWarningText::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Conv_TextToString_ReturnValue) == 0x000070, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Format_ReturnValue_1) == 0x000080, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Format_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Conv_TextToString_ReturnValue_1) == 0x000098, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Conv_TextToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_GetDisplayedActionByKey_ReturnValue) == 0x0000A8, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_GetDisplayedActionByKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_GetDisplayedActionByKey_ReturnValue_1) == 0x0000B0, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_GetDisplayedActionByKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000B8, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_SelectString_ReturnValue) == 0x0000C0, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, K2Node_MakeStruct_FormatArgumentData) == 0x0000D0, "Member 'WBP_RemappingWidget_C_GetWarningText::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Conv_StringToText_ReturnValue) == 0x000120, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, K2Node_MakeStruct_FormatArgumentData_1) == 0x000138, "Member 'WBP_RemappingWidget_C_GetWarningText::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, K2Node_MakeArray_Array_2) == 0x000188, "Member 'WBP_RemappingWidget_C_GetWarningText::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetWarningText, CallFunc_Format_ReturnValue_2) == 0x000198, "Member 'WBP_RemappingWidget_C_GetWarningText::CallFunc_Format_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_GetBlockedKeys \ +static_assert(alignof(WBP_RemappingWidget_C_GetBlockedKeys) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_GetBlockedKeys"); \ +static_assert(sizeof(WBP_RemappingWidget_C_GetBlockedKeys) == 0x000030, "Wrong size on WBP_RemappingWidget_C_GetBlockedKeys"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetBlockedKeys, Keys) == 0x000000, "Member 'WBP_RemappingWidget_C_GetBlockedKeys::Keys' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetBlockedKeys, NewLocalVar) == 0x000010, "Member 'WBP_RemappingWidget_C_GetBlockedKeys::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_GetBlockedKeys, K2Node_MakeArray_Array) == 0x000020, "Member 'WBP_RemappingWidget_C_GetBlockedKeys::K2Node_MakeArray_Array' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_Get_PromptMessage_Text \ +static_assert(alignof(WBP_RemappingWidget_C_Get_PromptMessage_Text) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_Get_PromptMessage_Text"); \ +static_assert(sizeof(WBP_RemappingWidget_C_Get_PromptMessage_Text) == 0x0000A0, "Wrong size on WBP_RemappingWidget_C_Get_PromptMessage_Text"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, ReturnValue) == 0x000000, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_Conv_TextToString_ReturnValue) == 0x000018, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_GetDisplayName_ReturnValue) == 0x000030, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_Conv_TextToString_ReturnValue_1) == 0x000048, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_Conv_TextToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_GetAction_ReturnValue) == 0x000058, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_GetAction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_ToUpper_ReturnValue) == 0x000060, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_ToUpper_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_Replace_ReturnValue) == 0x000078, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_Get_PromptMessage_Text, CallFunc_Conv_StringToText_ReturnValue) == 0x000088, "Member 'WBP_RemappingWidget_C_Get_PromptMessage_Text::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget \ +static_assert(alignof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget"); \ +static_assert(sizeof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget) == 0x000170, "Wrong size on WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, EntryPoint) == 0x000000, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsInSelectionMode_IsSelecting) == 0x000004, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsInSelectionMode_IsSelecting' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000008, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_Not_PreBool_ReturnValue) == 0x000010, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetCurrentInputType_ReturnValue) == 0x000011, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_SwitchEnum_CmpSuccess) == 0x000012, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_SwitchEnum_CmpSuccess_1) == 0x000013, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_SelectedKey_1) == 0x000018, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_SelectedKey_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_ConfirmRemap_CouldRemap) == 0x000038, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_ConfirmRemap_CouldRemap' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsKeyAvailable_ReturnValue) == 0x000039, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsKeyAvailable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsKeyAllowed_Allowed) == 0x00003A, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsKeyAllowed_Allowed' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_15) == 0x000040, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_15' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_SelectedKey) == 0x000048, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_SelectedKey' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsKeyAvailable_ReturnValue_1) == 0x000068, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsKeyAvailable_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsKeyAllowed_Allowed_1) == 0x000069, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsKeyAllowed_Allowed_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetDesiredFocusTarget_ReturnValue) == 0x000070, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetDesiredFocusTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_14) == 0x000078, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_14' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_13) == 0x000080, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_13' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_12) == 0x000088, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_11) == 0x000090, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_10) == 0x000098, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_9) == 0x0000A0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_8) == 0x0000A8, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_7) == 0x0000B0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_6) == 0x0000B8, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_5) == 0x0000C0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_4) == 0x0000C8, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_3) == 0x0000D0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_2) == 0x0000D8, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button_1) == 0x0000E0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_ComponentBoundEvent_Button) == 0x0000E8, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_Event_MyGeometry) == 0x0000F0, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_Event_InDeltaTime) == 0x000128, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetPlayerController_ReturnValue) == 0x000130, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_Conv_BoolToInt_ReturnValue) == 0x000138, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_Conv_BoolToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_HasUserFocus_ReturnValue) == 0x00013C, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_HasUserFocus_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetPlayerController_ReturnValue_1) == 0x000140, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_HasUserFocus_ReturnValue_1) == 0x000148, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_HasUserFocus_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000149, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_NotEqual_BoolBool_ReturnValue_1) == 0x00014A, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_NotEqual_BoolBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_Conv_BoolToInt_ReturnValue_1) == 0x00014C, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_Conv_BoolToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetHud_ReturnValue) == 0x000150, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetHUDWidget_ReturnValue) == 0x000158, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_DynamicCast_AsWBP_Main_HUD_VS) == 0x000160, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_DynamicCast_AsWBP_Main_HUD_VS' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, K2Node_DynamicCast_bSuccess) == 0x000168, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetIsSelectingKey_ReturnValue) == 0x000169, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetIsSelectingKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_IsSelectedKeyValid_IsValid) == 0x00016A, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_IsSelectedKeyValid_IsValid' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_GetIsSelectingKey_ReturnValue_1) == 0x00016B, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_GetIsSelectingKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget, CallFunc_BooleanAND_ReturnValue) == 0x00016C, "Member 'WBP_RemappingWidget_C_ExecuteUbergraph_WBP_RemappingWidget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_ConfirmRemap \ +static_assert(alignof(WBP_RemappingWidget_C_ConfirmRemap) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_ConfirmRemap"); \ +static_assert(sizeof(WBP_RemappingWidget_C_ConfirmRemap) == 0x000018, "Wrong size on WBP_RemappingWidget_C_ConfirmRemap"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CouldRemap) == 0x000000, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CouldRemap' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CallFunc_FindParentWidgetOfType_ReturnValue) == 0x000008, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CallFunc_FindParentWidgetOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CallFunc_IsKeyAvailable_ReturnValue) == 0x000010, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CallFunc_IsKeyAvailable_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CallFunc_UnmapKey_ReturnValue) == 0x000011, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CallFunc_UnmapKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CallFunc_UnmapKey_ReturnValue_1) == 0x000012, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CallFunc_UnmapKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ConfirmRemap, CallFunc_IsKeyAvailable_ReturnValue_1) == 0x000013, "Member 'WBP_RemappingWidget_C_ConfirmRemap::CallFunc_IsKeyAvailable_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_18_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_17_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_13_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ResetButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_20_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_19_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_ConfirmButton_K2Node_ComponentBoundEvent_12_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_16_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_15_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_14_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_CancelButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_TCR_Cancel_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature) == 0x000020, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature, SelectedKey) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_Secondary_K2Node_ComponentBoundEvent_8_OnKeySelected__DelegateSignature::SelectedKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature) == 0x000020, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature, SelectedKey) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_KeySelector_K2Node_ComponentBoundEvent_0_OnKeySelected__DelegateSignature::SelectedKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_RemappingWidget_C_BndEvt__WBP_RemappingWidget_ConfirmButton_W_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_ActivateWarningPrompt \ +static_assert(alignof(WBP_RemappingWidget_C_ActivateWarningPrompt) == 0x000001, "Wrong alignment on WBP_RemappingWidget_C_ActivateWarningPrompt"); \ +static_assert(sizeof(WBP_RemappingWidget_C_ActivateWarningPrompt) == 0x000001, "Wrong size on WBP_RemappingWidget_C_ActivateWarningPrompt"); \ +static_assert(offsetof(WBP_RemappingWidget_C_ActivateWarningPrompt, Primary) == 0x000000, "Member 'WBP_RemappingWidget_C_ActivateWarningPrompt::Primary' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RemappingWidget_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(WBP_RemappingWidget_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on WBP_RemappingWidget_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(WBP_RemappingWidget_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on WBP_RemappingWidget_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(WBP_RemappingWidget_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'WBP_RemappingWidget_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_RemappingWidget_C \ +static_assert(alignof(UWBP_RemappingWidget_C) == 0x000008, "Wrong alignment on UWBP_RemappingWidget_C"); \ +static_assert(sizeof(UWBP_RemappingWidget_C) == 0x000670, "Wrong size on UWBP_RemappingWidget_C"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, UberGraphFrame) == 0x0004A0, "Member 'UWBP_RemappingWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Invalid_Secondary) == 0x0004A8, "Member 'UWBP_RemappingWidget_C::Invalid_Secondary' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Invalid_Primary) == 0x0004B0, "Member 'UWBP_RemappingWidget_C::Invalid_Primary' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, CancelBG) == 0x0004B8, "Member 'UWBP_RemappingWidget_C::CancelBG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, ConfirmBG) == 0x0004C0, "Member 'UWBP_RemappingWidget_C::ConfirmBG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, HighlightSwitchPrim) == 0x0004C8, "Member 'UWBP_RemappingWidget_C::HighlightSwitchPrim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, HighlightSwitchSecon) == 0x0004D0, "Member 'UWBP_RemappingWidget_C::HighlightSwitchSecon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Hovered) == 0x0004D8, "Member 'UWBP_RemappingWidget_C::Hovered' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Hovered_1) == 0x0004E0, "Member 'UWBP_RemappingWidget_C::Hovered_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Image) == 0x0004E8, "Member 'UWBP_RemappingWidget_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Image_1) == 0x0004F0, "Member 'UWBP_RemappingWidget_C::Image_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Image_111) == 0x0004F8, "Member 'UWBP_RemappingWidget_C::Image_111' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Image_133) == 0x000500, "Member 'UWBP_RemappingWidget_C::Image_133' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Normal) == 0x000508, "Member 'UWBP_RemappingWidget_C::Normal' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Normal_1) == 0x000510, "Member 'UWBP_RemappingWidget_C::Normal_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, OKButton_W) == 0x000518, "Member 'UWBP_RemappingWidget_C::OKButton_W' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, PrimarySwitcher) == 0x000520, "Member 'UWBP_RemappingWidget_C::PrimarySwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, PrimaryText) == 0x000528, "Member 'UWBP_RemappingWidget_C::PrimaryText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, PrimaryWarning) == 0x000530, "Member 'UWBP_RemappingWidget_C::PrimaryWarning' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, PromptMessage) == 0x000538, "Member 'UWBP_RemappingWidget_C::PromptMessage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, ResetBG) == 0x000540, "Member 'UWBP_RemappingWidget_C::ResetBG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, Secondary_Text) == 0x000548, "Member 'UWBP_RemappingWidget_C::Secondary_Text' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, SecondarySwitcher) == 0x000550, "Member 'UWBP_RemappingWidget_C::SecondarySwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, SecondaryWarning) == 0x000558, "Member 'UWBP_RemappingWidget_C::SecondaryWarning' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, TCR_CancelButton) == 0x000560, "Member 'UWBP_RemappingWidget_C::TCR_CancelButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, TCR_ConfirmButton) == 0x000568, "Member 'UWBP_RemappingWidget_C::TCR_ConfirmButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, TCR_ResetButton) == 0x000570, "Member 'UWBP_RemappingWidget_C::TCR_ResetButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, WarningMessage) == 0x000578, "Member 'UWBP_RemappingWidget_C::WarningMessage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, WBP_ConfirmPromptBg) == 0x000580, "Member 'UWBP_RemappingWidget_C::WBP_ConfirmPromptBg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, WidgetSwitcher_215) == 0x000588, "Member 'UWBP_RemappingWidget_C::WidgetSwitcher_215' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, NewKey) == 0x000590, "Member 'UWBP_RemappingWidget_C::NewKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, CurrentKey) == 0x0005A8, "Member 'UWBP_RemappingWidget_C::CurrentKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, RebindDefaultText) == 0x0005C0, "Member 'UWBP_RemappingWidget_C::RebindDefaultText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, OnClosePrompt) == 0x0005D8, "Member 'UWBP_RemappingWidget_C::OnClosePrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, CurrentPrimaryKey) == 0x0005E8, "Member 'UWBP_RemappingWidget_C::CurrentPrimaryKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, CurrentSecondaryKey) == 0x000600, "Member 'UWBP_RemappingWidget_C::CurrentSecondaryKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, NewPrimaryKey) == 0x000618, "Member 'UWBP_RemappingWidget_C::NewPrimaryKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, NewSecondaryKey) == 0x000630, "Member 'UWBP_RemappingWidget_C::NewSecondaryKey' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, WarningPrompt) == 0x000648, "Member 'UWBP_RemappingWidget_C::WarningPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, HasFocusSelectorSecondary) == 0x000650, "Member 'UWBP_RemappingWidget_C::HasFocusSelectorSecondary' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, HasFocusSelectorPrimary) == 0x000651, "Member 'UWBP_RemappingWidget_C::HasFocusSelectorPrimary' has a wrong offset!"); \ +static_assert(offsetof(UWBP_RemappingWidget_C, RemapingScreenMessage) == 0x000658, "Member 'UWBP_RemappingWidget_C::RemapingScreenMessage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event) == 0x000010, "Wrong size on WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event, UserInfo) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event::UserInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event, InputDeviceId) == 0x000008, "Member 'WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event::InputDeviceId' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event, bInputDeviceConnected) == 0x00000C, "Member 'WBP_ConfirmPromptWidget_C_OnUserInputDeviceChanged_Event::bInputDeviceConnected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_OnPreviewKeyDown \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_OnPreviewKeyDown"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown) == 0x0002C8, "Wrong size on WBP_ConfirmPromptWidget_C_OnPreviewKeyDown"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, MyGeometry) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, InKeyEvent) == 0x000038, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, ReturnValue) == 0x000078, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_Handled_ReturnValue) == 0x000130, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_GetKey_ReturnValue) == 0x0001E8, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000200, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000201, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_Unhandled_ReturnValue) == 0x000208, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_Unhandled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_OnPreviewKeyDown, CallFunc_BooleanOR_ReturnValue) == 0x0002C0, "Member 'WBP_ConfirmPromptWidget_C_OnPreviewKeyDown::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget) == 0x000098, "Wrong size on WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, EntryPoint) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_11) == 0x000018, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_10) == 0x000020, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_9) == 0x000028, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_8) == 0x000030, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_7) == 0x000038, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_6) == 0x000040, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_5) == 0x000048, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_4) == 0x000050, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_3) == 0x000058, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_2) == 0x000060, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button_1) == 0x000068, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_Button) == 0x000070, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_InVisibility_2) == 0x000078, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_InVisibility_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_InVisibility_1) == 0x000079, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_InVisibility_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_ComponentBoundEvent_InVisibility) == 0x00007A, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_ComponentBoundEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000080, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_CustomEvent_UserInfo) == 0x000088, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_CustomEvent_UserInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_CustomEvent_InputDeviceId) == 0x000090, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_CustomEvent_InputDeviceId' has a wrong offset!"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget, K2Node_CustomEvent_bInputDeviceConnected) == 0x000094, "Member 'WBP_ConfirmPromptWidget_C_ExecuteUbergraph_WBP_ConfirmPromptWidget::K2Node_CustomEvent_bInputDeviceConnected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_9_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_8_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_3_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_2_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature, InVisibility) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_YesButton_K2Node_ComponentBoundEvent_13_OnVisibilityChangedEvent__DelegateSignature::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_7_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_6_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_1_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature, InVisibility) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_12_OnVisibilityChangedEvent__DelegateSignature::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_OkayButton_K2Node_ComponentBoundEvent_0_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_5_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_4_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature) == 0x000001, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature, InVisibility) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_14_OnVisibilityChangedEvent__DelegateSignature::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_11_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature \ +static_assert(alignof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_ConfirmPromptWidget_C_BndEvt__WBP_ConfirmPromptWidget_NoButton_K2Node_ComponentBoundEvent_10_BUICommonUIWidgetSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConfirmPromptWidget_C \ +static_assert(alignof(UWBP_ConfirmPromptWidget_C) == 0x000008, "Wrong alignment on UWBP_ConfirmPromptWidget_C"); \ +static_assert(sizeof(UWBP_ConfirmPromptWidget_C) == 0x000508, "Wrong size on UWBP_ConfirmPromptWidget_C"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, UberGraphFrame) == 0x0004D0, "Member 'UWBP_ConfirmPromptWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, Background) == 0x0004D8, "Member 'UWBP_ConfirmPromptWidget_C::Background' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, BgNo) == 0x0004E0, "Member 'UWBP_ConfirmPromptWidget_C::BgNo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, BgOkay) == 0x0004E8, "Member 'UWBP_ConfirmPromptWidget_C::BgOkay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, BgYes) == 0x0004F0, "Member 'UWBP_ConfirmPromptWidget_C::BgYes' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, Spacertexture) == 0x0004F8, "Member 'UWBP_ConfirmPromptWidget_C::Spacertexture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptWidget_C, WBP_ConfirmPromptBg) == 0x000500, "Member 'UWBP_ConfirmPromptWidget_C::WBP_ConfirmPromptBg' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14 \ +static_assert(alignof(GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14) == 0x000008, "Wrong alignment on GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14"); \ +static_assert(sizeof(GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14) == 0x0000B0, "Wrong size on GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14"); \ +static_assert(offsetof(GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14, Payload) == 0x000000, "Member 'GA_Enemy_Fear_C_EventReceived_7EBCEEB8406D2A0F2CE296A2A3557A14::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear \ +static_assert(alignof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear) == 0x000010, "Wrong alignment on GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear"); \ +static_assert(sizeof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear) == 0x000990, "Wrong size on GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, EntryPoint) == 0x000000, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_MakeArray_Array) == 0x000008, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue) == 0x000028, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CustomEvent_Payload) == 0x000048, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_2) == 0x0000F8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_struct_Variable) == 0x000108, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0001B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_1) == 0x0001C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001C4, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_1) == 0x0001D8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_4) == 0x0001E0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_2) == 0x0001F0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x0001F8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_5) == 0x000200, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_3) == 0x000210, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_2) == 0x000218, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_6) == 0x000220, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_4) == 0x000230, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000238, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_7) == 0x000240, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_5) == 0x000250, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RandomFloatInRange_ReturnValue) == 0x000258, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_3) == 0x000260, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_6) == 0x000268, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_8) == 0x00026C, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000280, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_real_Variable) == 0x000288, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_DynamicCast_AsWrestler_Mass_Character) == 0x000290, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_DynamicCast_AsWrestler_Mass_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_DynamicCast_bSuccess) == 0x000298, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002A0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetActorForwardVector_ReturnValue) == 0x0002B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0002D0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetScaledCapsuleRadius_ReturnValue) == 0x0002D8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetScaledCapsuleRadius_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0002E0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0003B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0003D0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Add_VectorVector_ReturnValue) == 0x0003E8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000400, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000408, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000418, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000420, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x000430, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000438, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsMontagePlaying_IsMontagePlaying) == 0x000440, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsMontagePlaying_IsMontagePlaying' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_DoesImplementInterface_ReturnValue) == 0x000441, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000448, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_7) == 0x000450, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_real_Variable_1) == 0x000454, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000458, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_9) == 0x000460, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000470, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000488, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_4) == 0x000490, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000498, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_8) == 0x0004A0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_5) == 0x0004A8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_bool_Variable) == 0x0004B0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_Select_Default) == 0x0004B4, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_9) == 0x0004B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x0004C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0004C8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0004E0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0004E8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_Event_EventData) == 0x0004F0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasTag_ReturnValue) == 0x0005A0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0005A1, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_Event_bWasCancelled) == 0x0005A2, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0005A8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x0005B0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x0005B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0005C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_TryActivateAbilityByClass_ReturnValue_1) == 0x0005C8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_TryActivateAbilityByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0005D0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0005F0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0005F8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000600, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000620, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000628, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000630, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000650, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000658, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x000660, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_FClamp_ReturnValue) == 0x000668, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000670, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_DynamicCast_bSuccess_1) == 0x000678, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_6) == 0x000680, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_10) == 0x000688, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000690, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000698, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x0006B8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_real_Variable_2) == 0x0006BC, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x0006C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAIController_ReturnValue) == 0x0006C8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x0006D0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x0006D8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_AIHasStateTag_ReturnValue) == 0x0006E0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_AIHasStateTag_ReturnValue_1) == 0x0006E1, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_AIHasStateTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, Temp_bool_Variable_1) == 0x0006E2, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_Select_Default_1) == 0x0006E4, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x0006E8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0006F0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0006F8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000708, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x000710, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000718, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000738, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000748, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000750, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000760, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000768, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000778, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Not_PreBool_ReturnValue) == 0x000779, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BooleanAND_ReturnValue) == 0x00077A, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BooleanAND_ReturnValue_1) == 0x00077B, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000780, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_ReturnValue_7) == 0x000788, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_11) == 0x000790, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_MakeArray_Array_1) == 0x000798, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetMesh_Mesh) == 0x0007A8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetMesh_Mesh' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_CreateDelegate_OutputDelegate_10) == 0x0007B0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_IsValid_ReturnValue_12) == 0x0007C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetBoneIndex_ReturnValue) == 0x0007C4, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetBoneIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetBoneIndex_ReturnValue_1) == 0x0007C8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetBoneIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetRefPoseTransform_ReturnValue) == 0x0007D0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetRefPoseTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_GetRefPoseTransform_ReturnValue_1) == 0x000830, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_GetRefPoseTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Location) == 0x000890, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Rotation) == 0x0008A8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Scale) == 0x0008C0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Location_1) == 0x0008D8, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Rotation_1) == 0x0008F0, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_BreakTransform_Scale_1) == 0x000908, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000920, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000928, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_SpawnSystemAttached_ReturnValue_2) == 0x000930, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_SpawnSystemAttached_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_MakeArray_Array_2) == 0x000938, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_Time_ImplicitCast) == 0x000948, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x000950, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x000958, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000960, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000968, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_Time_ImplicitCast_2) == 0x000970, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_Time_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000978, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, K2Node_VariableSet_Duration_ImplicitCast) == 0x000980, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::K2Node_VariableSet_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear, CallFunc_WaitDelay_Time_ImplicitCast_3) == 0x000984, "Member 'GA_Enemy_Fear_C_ExecuteUbergraph_GA_Enemy_Fear::CallFunc_WaitDelay_Time_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_GetMesh \ +static_assert(alignof(GA_Enemy_Fear_C_GetMesh) == 0x000008, "Wrong alignment on GA_Enemy_Fear_C_GetMesh"); \ +static_assert(sizeof(GA_Enemy_Fear_C_GetMesh) == 0x000018, "Wrong size on GA_Enemy_Fear_C_GetMesh"); \ +static_assert(offsetof(GA_Enemy_Fear_C_GetMesh, Mesh) == 0x000000, "Member 'GA_Enemy_Fear_C_GetMesh::Mesh' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_GetMesh, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Fear_C_GetMesh::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_GetMesh, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_Enemy_Fear_C_GetMesh::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_IsMontagePlaying \ +static_assert(alignof(GA_Enemy_Fear_C_IsMontagePlaying) == 0x000008, "Wrong alignment on GA_Enemy_Fear_C_IsMontagePlaying"); \ +static_assert(sizeof(GA_Enemy_Fear_C_IsMontagePlaying) == 0x000028, "Wrong size on GA_Enemy_Fear_C_IsMontagePlaying"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, IsMontagePlaying_0) == 0x000000, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::IsMontagePlaying_0' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, CallFunc_GetMesh_Mesh) == 0x000008, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::CallFunc_GetMesh_Mesh' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, CallFunc_GetAnimInstance_ReturnValue) == 0x000018, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, CallFunc_IsValid_ReturnValue_1) == 0x000020, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_IsMontagePlaying, CallFunc_Montage_IsPlaying_ReturnValue) == 0x000021, "Member 'GA_Enemy_Fear_C_IsMontagePlaying::CallFunc_Montage_IsPlaying_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Enemy_Fear_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Fear_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Fear_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Fear_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Fear_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Fear_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Fear_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Fear_C_SetBloodResonance \ +static_assert(alignof(GA_Enemy_Fear_C_SetBloodResonance) == 0x000008, "Wrong alignment on GA_Enemy_Fear_C_SetBloodResonance"); \ +static_assert(sizeof(GA_Enemy_Fear_C_SetBloodResonance) == 0x000018, "Wrong size on GA_Enemy_Fear_C_SetBloodResonance"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, Enable) == 0x000000, "Member 'GA_Enemy_Fear_C_SetBloodResonance::Enable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, Temp_bool_Variable) == 0x000001, "Member 'GA_Enemy_Fear_C_SetBloodResonance::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, Temp_byte_Variable) == 0x000002, "Member 'GA_Enemy_Fear_C_SetBloodResonance::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, Temp_byte_Variable_1) == 0x000003, "Member 'GA_Enemy_Fear_C_SetBloodResonance::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_Enemy_Fear_C_SetBloodResonance::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, K2Node_Select_Default) == 0x000010, "Member 'GA_Enemy_Fear_C_SetBloodResonance::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Fear_C_SetBloodResonance, CallFunc_DoesImplementInterface_ReturnValue) == 0x000011, "Member 'GA_Enemy_Fear_C_SetBloodResonance::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Fear_C \ +static_assert(alignof(UGA_Enemy_Fear_C) == 0x000008, "Wrong alignment on UGA_Enemy_Fear_C"); \ +static_assert(sizeof(UGA_Enemy_Fear_C) == 0x0006C8, "Wrong size on UGA_Enemy_Fear_C"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Fear_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, FearTag) == 0x000670, "Member 'UGA_Enemy_Fear_C::FearTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, FearStateTreeEvent) == 0x000690, "Member 'UGA_Enemy_Fear_C::FearStateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, SpawnedEffects) == 0x0006B0, "Member 'UGA_Enemy_Fear_C::SpawnedEffects' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, Duration) == 0x0006C0, "Member 'UGA_Enemy_Fear_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, Active) == 0x0006C4, "Member 'UGA_Enemy_Fear_C::Active' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Fear_C, SkipVFX) == 0x0006C5, "Member 'UGA_Enemy_Fear_C::SkipVFX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConfirmPromptBg_C \ +static_assert(alignof(UWBP_ConfirmPromptBg_C) == 0x000008, "Wrong alignment on UWBP_ConfirmPromptBg_C"); \ +static_assert(sizeof(UWBP_ConfirmPromptBg_C) == 0x0002D0, "Wrong size on UWBP_ConfirmPromptBg_C"); \ +static_assert(offsetof(UWBP_ConfirmPromptBg_C, Bg) == 0x0002C0, "Member 'UWBP_ConfirmPromptBg_C::Bg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptBg_C, Image_394) == 0x0002C8, "Member 'UWBP_ConfirmPromptBg_C::Image_394' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing \ +static_assert(alignof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing) == 0x000008, "Wrong alignment on BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing"); \ +static_assert(sizeof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing) == 0x000348, "Wrong size on BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, EntryPoint) == 0x000000, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, K2Node_SwitchEnum_CmpSuccess) == 0x000004, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, Temp_bool_Variable) == 0x000018, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000020, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, Temp_bool_Has_Been_Initd_Variable) == 0x000028, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, Temp_bool_IsClosed_Variable) == 0x000029, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_GetOverlayMaterial_ReturnValue) == 0x000030, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_GetOverlayMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000038, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_GetGameTimeSinceCreation_ReturnValue) == 0x000040, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_GetGameTimeSinceCreation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_IsValid_ReturnValue) == 0x000044, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_GetGameTimeSinceCreation_ReturnValue_1) == 0x000048, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_GetGameTimeSinceCreation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, K2Node_CreateDelegate_OutputDelegate_1) == 0x000058, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_SetTimerDelegate_ReturnValue_1) == 0x000068, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_SetTimerDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000070, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000090, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_BreakVector_X) == 0x0000A8, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_BreakVector_Y) == 0x0000B0, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_BreakVector_Z) == 0x0000B8, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_GetOwner_ReturnValue) == 0x0000C0, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000C8, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0000D9, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_GetComponentLocation_ReturnValue_2) == 0x0000E0, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_GetComponentLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_GetComponentLocation_ReturnValue_3) == 0x0000F8, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_GetComponentLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000110, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000128, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_GetComponentLocation_ReturnValue_4) == 0x000210, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_GetComponentLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000228, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000240, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000328, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000330, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000338, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_SetFloatParameter_Param_ImplicitCast) == 0x000340, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_SetFloatParameter_Param_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing, CallFunc_SetFloatParameter_Param_ImplicitCast_1) == 0x000344, "Member 'BP_ShadowBeing_C_ExecuteUbergraph_BP_ShadowBeing::CallFunc_SetFloatParameter_Param_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ShadowBeing_C \ +static_assert(alignof(ABP_ShadowBeing_C) == 0x000008, "Wrong alignment on ABP_ShadowBeing_C"); \ +static_assert(sizeof(ABP_ShadowBeing_C) == 0x000300, "Wrong size on ABP_ShadowBeing_C"); \ +static_assert(offsetof(ABP_ShadowBeing_C, UberGraphFrame) == 0x000298, "Member 'ABP_ShadowBeing_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, InitialBurstUpDecal) == 0x0002A0, "Member 'ABP_ShadowBeing_C::InitialBurstUpDecal' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Decal) == 0x0002A8, "Member 'ABP_ShadowBeing_C::Decal' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, NS_AoA_ShadowHolding) == 0x0002B0, "Member 'ABP_ShadowBeing_C::NS_AoA_ShadowHolding' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, VFXRoot) == 0x0002B8, "Member 'ABP_ShadowBeing_C::VFXRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, SkeletalMesh) == 0x0002C0, "Member 'ABP_ShadowBeing_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, DefaultSceneRoot) == 0x0002C8, "Member 'ABP_ShadowBeing_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Fade_Fade_CEE25BE343A409B23E2405BDAB0CE562) == 0x0002D0, "Member 'ABP_ShadowBeing_C::Fade_Fade_CEE25BE343A409B23E2405BDAB0CE562' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Fade__Direction_CEE25BE343A409B23E2405BDAB0CE562) == 0x0002D4, "Member 'ABP_ShadowBeing_C::Fade__Direction_CEE25BE343A409B23E2405BDAB0CE562' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Fade) == 0x0002D8, "Member 'ABP_ShadowBeing_C::Fade' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Mat) == 0x0002E0, "Member 'ABP_ShadowBeing_C::Mat' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, ActivatedTime) == 0x0002E8, "Member 'ABP_ShadowBeing_C::ActivatedTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, Height) == 0x0002F0, "Member 'ABP_ShadowBeing_C::Height' has a wrong offset!"); \ +static_assert(offsetof(ABP_ShadowBeing_C, AttachedSK) == 0x0002F8, "Member 'ABP_ShadowBeing_C::AttachedSK' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A \ +static_assert(alignof(GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A) == 0x0000B0, "Wrong size on GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A, Payload) == 0x000000, "Member 'GA_Enemy_Trapped_C_EventReceived_29DF04244CD11E9A960667A6292B982A::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8 \ +static_assert(alignof(GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_EventReceived_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA \ +static_assert(alignof(GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA) == 0x0000B0, "Wrong size on GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA, Payload) == 0x000000, "Member 'GA_Enemy_Trapped_C_EventReceived_4532748A4817E62CAB4DA0998F4B15BA::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF \ +static_assert(alignof(GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_EventReceived_AB37C6F94235AC77E531A7AA4D7C86CF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA \ +static_assert(alignof(GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA) == 0x0000B0, "Wrong size on GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA, Payload) == 0x000000, "Member 'GA_Enemy_Trapped_C_EventReceived_F545884C4B8E4C5E1E3A8CB021C177CA::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped \ +static_assert(alignof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped) == 0x000010, "Wrong alignment on GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped) == 0x001650, "Wrong size on GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, EntryPoint) == 0x000000, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000008, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_4) == 0x000020, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_4) == 0x000028, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000D8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_3) == 0x0000E8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_3) == 0x0000F0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_2) == 0x0001A0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_2) == 0x0001B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_2) == 0x0001B8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_3) == 0x000268, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_1) == 0x000278, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_1) == 0x000280, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_4) == 0x000330, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag) == 0x000340, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData) == 0x000348, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_5) == 0x0003F8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable) == 0x000408, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_1) == 0x0004B8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeTransform_ReturnValue) == 0x0004C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000520, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_FinishSpawningActor_ReturnValue) == 0x000528, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_6) == 0x000530, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_9) == 0x000540, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_8) == 0x000548, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_7) == 0x000550, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_7) == 0x000560, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_8) == 0x000568, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_6) == 0x000578, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_9) == 0x000580, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_5) == 0x000590, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_10) == 0x000598, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_name_Variable) == 0x0005A8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_11) == 0x0005B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_4) == 0x0005C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_3) == 0x0005C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_12) == 0x0005D0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_2) == 0x0005E0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_13) == 0x0005E8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName_1) == 0x0005F8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_14) == 0x000600, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_NotifyName) == 0x000610, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_NotifyName' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_15) == 0x000618, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_name_Variable_1) == 0x000628, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_16) == 0x000630, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_Payload_2) == 0x000640, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_Payload_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_2) == 0x0006F0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_17) == 0x0007A0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_18) == 0x0007B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue) == 0x0007C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0007C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue) == 0x0007E0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_19) == 0x0007E4, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_Payload_1) == 0x0007F8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_3) == 0x0008A8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_20) == 0x000958, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_Payload) == 0x000968, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_4) == 0x000A18, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_21) == 0x000AC8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_21' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_22) == 0x000AD8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_22' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000AE8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_23) == 0x000AF0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_23' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_1) == 0x000B00, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000B08, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_1) == 0x000B10, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_Variable) == 0x000B11, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_Variable_1) == 0x000B12, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_5) == 0x000B14, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_6) == 0x000B1C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000B28, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_24) == 0x000B30, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_24' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetWorldSubsystem_ReturnValue_3) == 0x000B40, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetWorldSubsystem_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_6) == 0x000B48, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_6) == 0x000B50, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_25) == 0x000C00, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_25' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_Event_bWasCancelled) == 0x000C10, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_Event_EventData) == 0x000C18, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetMontage_ReturnValue) == 0x000CC8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetMontage_ReturnValue_1) == 0x000CD0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_26) == 0x000CD8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_26' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000CE8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_2) == 0x000CF0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000CF8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000D00, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue) == 0x000D08, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000D10, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000D28, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000D40, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000D58, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000D60, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_AttachToActor_ReturnValue) == 0x000D78, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BreakRotator_Roll) == 0x000D7C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BreakRotator_Pitch) == 0x000D80, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BreakRotator_Yaw) == 0x000D84, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeRotator_ReturnValue) == 0x000D88, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_3) == 0x000DA0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000DA1, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_7) == 0x000DA4, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_7) == 0x000DB0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue) == 0x000E60, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_4) == 0x000E68, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue) == 0x000E70, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_2) == 0x000E78, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000E80, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_5) == 0x000E88, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x000E90, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_CreateProxyObjectForPlayMontage_ReturnValue_1) == 0x000E98, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_CreateProxyObjectForPlayMontage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_6) == 0x000EA0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_7) == 0x000EA1, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000EA8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAIController_ReturnValue) == 0x000EB0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000EB8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitGameplayEventToActor_ReturnValue) == 0x000EC0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitGameplayEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_27) == 0x000EC8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_27' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_8) == 0x000ED8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000EE0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_3) == 0x000EE8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_9) == 0x000EF0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000EF8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetActorForwardVector_ReturnValue) == 0x000F00, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000F18, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000F30, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000F48, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Add_VectorVector_ReturnValue) == 0x000F50, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitGameplayEventToActor_ReturnValue_1) == 0x000F68, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitGameplayEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_10) == 0x000F70, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000F78, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitGameplayEventToActor_ReturnValue_2) == 0x000F80, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitGameplayEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_11) == 0x000F88, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_8) == 0x000F8C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_8) == 0x000F98, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x001048, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue_4) == 0x001050, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_4) == 0x001058, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_5) == 0x001060, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_12) == 0x001068, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_13) == 0x001069, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x001070, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x001078, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x001088, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x001090, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0010A0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0010A8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x0010B8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BooleanOR_ReturnValue) == 0x0010B9, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x0010C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Not_PreBool_ReturnValue) == 0x0010C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x0010D0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_BooleanAND_ReturnValue) == 0x0010D8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeStruct_ApplyDamageParams) == 0x0010E0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_ApplyDamage_ReturnValue) == 0x001108, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x001110, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x001118, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x001120, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_Has_Been_Initd_Variable) == 0x001138, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_7) == 0x00113C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x001148, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetDialogueInfo_ReturnValue) == 0x001150, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array) == 0x001158, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_1) == 0x001168, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x001178, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_28) == 0x001180, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_28' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_struct_Variable_8) == 0x001190, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x001240, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x001248, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetDialogueInfo_ReturnValue_1) == 0x001250, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetDialogueInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_2) == 0x001258, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_3) == 0x001268, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x001278, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x001280, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x001288, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_DynamicCast_bSuccess) == 0x001298, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAIController_ReturnValue_1) == 0x0012A0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0012A8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_14) == 0x0012A9, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x0012B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x0012C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0012D0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0012D8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Vector_Distance_ReturnValue) == 0x0012F0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0012F8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x001300, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetSkeletalMeshComp_self_CastInput) == 0x001308, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetSkeletalMeshComp_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetSkeletalMeshComp_ReturnValue) == 0x001318, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetSkeletalMeshComp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x001320, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_Has_Been_Initd_Variable_1) == 0x001328, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x001330, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAIController_ReturnValue_2) == 0x001338, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x001340, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x001348, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_AIHasStateTag_ReturnValue) == 0x001350, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_AIHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetDialogueInfo_ReturnValue_2) == 0x001358, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetDialogueInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_4) == 0x001360, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_Select_Default) == 0x001370, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_5) == 0x001378, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeStruct_StateTreeEvent) == 0x001388, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeLiteralGameplayTag_ReturnValue_3) == 0x0013A8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeLiteralGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x0013B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_RandomFloatInRange_ReturnValue_5) == 0x0013B8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_RandomFloatInRange_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_5) == 0x0013C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_5) == 0x0013C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_ReturnValue_6) == 0x001478, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_IsValid_ReturnValue_15) == 0x001480, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x001488, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_MakeLiteralGameplayTag_ReturnValue_4) == 0x001490, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_MakeLiteralGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetDialogueInfo_ReturnValue_3) == 0x001498, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetDialogueInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_6) == 0x0014A0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_MakeArray_Array_7) == 0x0014B0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_MakeArray_Array_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0014C0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetMassEntityHandle_OutEntityHandle) == 0x0014C8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetMassEntityHandle_OutEntityHandle' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetMassEntityHandle_ReturnValue) == 0x0014D0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetMassEntityHandle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_DoesImplementInterface_ReturnValue) == 0x0014D1, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetActorForwardVector_ReturnValue_1) == 0x0014D8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetActorForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x0014F0, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_GetPlayerPawn_ReturnValue_7) == 0x001508, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_GetPlayerPawn_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Add_VectorVector_ReturnValue_1) == 0x001510, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_IsClosed_Variable) == 0x001528, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventTag_9) == 0x00152C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_EventData_9) == 0x001538, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, Temp_bool_IsClosed_Variable_1) == 0x0015E8, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_29) == 0x0015EC, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_29' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CreateDelegate_OutputDelegate_30) == 0x0015FC, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CreateDelegate_OutputDelegate_30' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_CurrentValue) == 0x00160C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, K2Node_CustomEvent_MaxValue) == 0x001610, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::K2Node_CustomEvent_MaxValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Less_DoubleDouble_ReturnValue) == 0x001614, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_Time_ImplicitCast) == 0x001618, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast) == 0x00161C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_PlayMontageAndWaitForEvent_Rate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_CreateProxyObjectForPlayMontage_PlayRate_ImplicitCast) == 0x001620, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_CreateProxyObjectForPlayMontage_PlayRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_Time_ImplicitCast_1) == 0x001624, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_Time_ImplicitCast_2) == 0x001628, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_Time_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_Time_ImplicitCast_3) == 0x00162C, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_Time_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_WaitDelay_Time_ImplicitCast_4) == 0x001630, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_WaitDelay_Time_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Less_DoubleDouble_B_ImplicitCast) == 0x001638, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Less_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped, CallFunc_Less_DoubleDouble_A_ImplicitCast) == 0x001640, "Member 'GA_Enemy_Trapped_C_ExecuteUbergraph_GA_Enemy_Trapped::CallFunc_Less_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Enemy_Trapped_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_K2_OnEndAbility \ +static_assert(alignof(GA_Enemy_Trapped_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Enemy_Trapped_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Enemy_Trapped_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Enemy_Trapped_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnBlendOut_3AFE8E9C4D175000F04106A69B6AE456::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnBlendOut_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF \ +static_assert(alignof(GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnBlendOut_AB37C6F94235AC77E531A7AA4D7C86CF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnBlendOut_F6205D4141E6DD14B48475959469A9C7::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnCancelled_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnCancelled_AB37C6F94235AC77E531A7AA4D7C86CF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCompleted_3AFE8E9C4D175000F04106A69B6AE456::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnCompleted_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnCompleted_AB37C6F94235AC77E531A7AA4D7C86CF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnCompleted_F6205D4141E6DD14B48475959469A9C7::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnDamage \ +static_assert(alignof(GA_Enemy_Trapped_C_OnDamage) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnDamage"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnDamage) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnDamage"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnDamage, CurrentValue) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnDamage::CurrentValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnDamage, MaxValue) == 0x000004, "Member 'GA_Enemy_Trapped_C_OnDamage::MaxValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnInterrupted_3AFE8E9C4D175000F04106A69B6AE456::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnInterrupted_3DECBDD24BEA81F316A8B4BC86E0AEF8::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF \ +static_assert(alignof(GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x000008, "Wrong alignment on GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF) == 0x0000B8, "Wrong size on GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF, EventTag) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF, EventData) == 0x000008, "Member 'GA_Enemy_Trapped_C_OnInterrupted_AB37C6F94235AC77E531A7AA4D7C86CF::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnInterrupted_F6205D4141E6DD14B48475959469A9C7::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnNotifyBegin_3AFE8E9C4D175000F04106A69B6AE456::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnNotifyBegin_F6205D4141E6DD14B48475959469A9C7::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnNotifyEnd_3AFE8E9C4D175000F04106A69B6AE456::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7 \ +static_assert(alignof(GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7) == 0x000004, "Wrong alignment on GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(sizeof(GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7) == 0x000008, "Wrong size on GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7"); \ +static_assert(offsetof(GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7, NotifyName) == 0x000000, "Member 'GA_Enemy_Trapped_C_OnNotifyEnd_F6205D4141E6DD14B48475959469A9C7::NotifyName' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Enemy_Trapped_C \ +static_assert(alignof(UGA_Enemy_Trapped_C) == 0x000008, "Wrong alignment on UGA_Enemy_Trapped_C"); \ +static_assert(sizeof(UGA_Enemy_Trapped_C) == 0x000688, "Wrong size on UGA_Enemy_Trapped_C"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, UberGraphFrame) == 0x000668, "Member 'UGA_Enemy_Trapped_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, bUseDesiredRotationCache) == 0x000670, "Member 'UGA_Enemy_Trapped_C::bUseDesiredRotationCache' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, bUseRotationYawCache) == 0x000671, "Member 'UGA_Enemy_Trapped_C::bUseRotationYawCache' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, CurrentHealth) == 0x000674, "Member 'UGA_Enemy_Trapped_C::CurrentHealth' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, Shadow) == 0x000678, "Member 'UGA_Enemy_Trapped_C::Shadow' has a wrong offset!"); \ +static_assert(offsetof(UGA_Enemy_Trapped_C, Anim_Play_Rate) == 0x000680, "Member 'UGA_Enemy_Trapped_C::Anim_Play_Rate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger \ +static_assert(alignof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger) == 0x000010, "Wrong alignment on GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger"); \ +static_assert(sizeof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger) == 0x0008F0, "Wrong size on GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, EntryPoint) == 0x000000, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_WaitDelay_ReturnValue) == 0x000018, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_MakeLiteralByte_ReturnValue) == 0x000020, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue) == 0x000021, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_bool_Variable) == 0x000022, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_real_Variable) == 0x000024, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_real_Variable_1) == 0x000028, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_MakeLiteralByte_ReturnValue_1) == 0x00002C, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_MakeLiteralByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_2) == 0x000040, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_3) == 0x000050, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000060, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000068, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_1) == 0x000080, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000088, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CustomEvent_Loaded_1) == 0x0000A0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CustomEvent_Loaded_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_object_Variable) == 0x0000A8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsNiagara_System) == 0x0000B0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CustomEvent_Loaded) == 0x0000C0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_object_Variable_1) == 0x0000C8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsNiagara_System_1) == 0x0000D0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsNiagara_System_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_1) == 0x0000D8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_real_Variable_2) == 0x0000DC, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000E0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_bool_Variable_1) == 0x0000F0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_WaitDelay_ReturnValue_1) == 0x0000F8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000100, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetComponentByClass_ReturnValue) == 0x000108, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_2) == 0x000110, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_3) == 0x000111, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_bool_IsClosed_Variable) == 0x000112, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_5) == 0x000114, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_bool_Has_Been_Initd_Variable) == 0x000124, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_bool_Variable_2) == 0x000125, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_Event_bWasCancelled) == 0x000126, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000128, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_Event_EventData) == 0x000130, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0001E0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_4) == 0x0001E8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x0001E9, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0001F0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0001F8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue) == 0x000200, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue_1) == 0x000208, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000210, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetPlayerPawn_ReturnValue) == 0x000218, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000220, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_MakeLiteralByte_ReturnValue_2) == 0x000228, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_MakeLiteralByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue_2) == 0x000230, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x000238, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_2) == 0x000248, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x000250, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_3) == 0x000260, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetGameTeamId_ReturnValue) == 0x000261, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BP_GetTeamAttitudeTowards_ReturnValue) == 0x000262, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BP_GetTeamAttitudeTowards_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000268, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue_3) == 0x000270, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2) == 0x000278, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_4) == 0x000288, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000290, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000298, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0002A0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000378, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000380, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000388, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000398, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0003A0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasTag_ReturnValue) == 0x0003A8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_6) == 0x0003AC, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0003C0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0003C8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x0003D0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x0003E0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0003E8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_5) == 0x0003F0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_Select_Default) == 0x0003F4, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x0003F8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000408, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_Select_Default_1) == 0x00040C, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_WaitDelay_ReturnValue_2) == 0x000410, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsMassCharacter_ReturnValue) == 0x000418, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsMassCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_5) == 0x000419, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue_4) == 0x000420, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3) == 0x000428, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_DynamicCast_bSuccess_6) == 0x000438, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_byte_Variable) == 0x000439, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00043A, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000440, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetActorForwardVector_ReturnValue) == 0x000448, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetVelocity_ReturnValue) == 0x000460, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000478, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_VSizeSquared_ReturnValue) == 0x000490, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000498, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x0004A8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAIController_ReturnValue_5) == 0x0004B0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAIController_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetCurrentPath_ReturnValue) == 0x0004B8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetCurrentPath_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, Temp_byte_Variable_1) == 0x0004C0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_IsValid_ReturnValue_6) == 0x0004C1, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Square_ReturnValue) == 0x0004C8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Array_Get_Item) == 0x0004D0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0004E8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0004F0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Array_Length_ReturnValue) == 0x000508, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000510, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Greater_IntInt_ReturnValue) == 0x000528, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000530, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BooleanAND_ReturnValue) == 0x000548, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000550, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Dot_VectorVector_ReturnValue) == 0x000568, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000570, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_FClamp_ReturnValue) == 0x000578, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_MakeArray_Array) == 0x000580, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000590, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0005A8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0005C0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_Add_VectorVector_ReturnValue) == 0x0005D8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_CapsuleTraceSingleByProfile_OutHit) == 0x0005F0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_CapsuleTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_CapsuleTraceSingleByProfile_ReturnValue) == 0x0006D8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_CapsuleTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0006E0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_VInterpTo_ReturnValue) == 0x0006E8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_MakeArray_Array_1) == 0x000700, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_MakeArray_Array_2) == 0x000710, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_MakeArray_Array_3) == 0x000720, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, K2Node_CreateDelegate_OutputDelegate_7) == 0x000730, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000740, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetSocketLocation_ReturnValue) == 0x000748, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetBoneIndex_ReturnValue) == 0x000760, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetBoneIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000768, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetRefPoseTransform_ReturnValue) == 0x000770, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetRefPoseTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Location) == 0x0007D0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Rotation) == 0x0007E8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Scale) == 0x000800, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetBoneIndex_ReturnValue_1) == 0x000818, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetBoneIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000820, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_GetRefPoseTransform_ReturnValue_1) == 0x000830, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_GetRefPoseTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Location_1) == 0x000890, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Rotation_1) == 0x0008A8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_BreakTransform_Scale_1) == 0x0008C0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x0008D8, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger, CallFunc_VInterpTo_DeltaTime_ImplicitCast) == 0x0008E0, "Member 'GA_Status_Anger_C_ExecuteUbergraph_GA_Status_Anger::CallFunc_VInterpTo_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Anger_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_Status_Anger_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_Status_Anger_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_Status_Anger_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_Status_Anger_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_Status_Anger_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_Status_Anger_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Anger_C_K2_OnEndAbility \ +static_assert(alignof(GA_Status_Anger_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Status_Anger_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Status_Anger_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Status_Anger_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Status_Anger_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Status_Anger_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80 \ +static_assert(alignof(GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80) == 0x000008, "Wrong alignment on GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80"); \ +static_assert(sizeof(GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80) == 0x000008, "Wrong size on GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80"); \ +static_assert(offsetof(GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80, Loaded) == 0x000000, "Member 'GA_Status_Anger_C_OnLoaded_1B99042644D07605B0F875B0E72DBB80::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C \ +static_assert(alignof(GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C) == 0x000008, "Wrong alignment on GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C"); \ +static_assert(sizeof(GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C) == 0x000008, "Wrong size on GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C"); \ +static_assert(offsetof(GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C, Loaded) == 0x000000, "Member 'GA_Status_Anger_C_OnLoaded_2FFD4DF141D2D0876619DAAC6FE27C1C::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Status_Anger_C \ +static_assert(alignof(UGA_Status_Anger_C) == 0x000008, "Wrong alignment on UGA_Status_Anger_C"); \ +static_assert(sizeof(UGA_Status_Anger_C) == 0x000758, "Wrong size on UGA_Status_Anger_C"); \ +static_assert(offsetof(UGA_Status_Anger_C, UberGraphFrame) == 0x000668, "Member 'UGA_Status_Anger_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, Gameplay_Tags_To_Add) == 0x000670, "Member 'UGA_Status_Anger_C::Gameplay_Tags_To_Add' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, StateTreeEvent) == 0x000690, "Member 'UGA_Status_Anger_C::StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, In_Prompt) == 0x0006B0, "Member 'UGA_Status_Anger_C::In_Prompt' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, WeaponChangeExemption_Tags) == 0x0006B8, "Member 'UGA_Status_Anger_C::WeaponChangeExemption_Tags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, Instigator) == 0x0006D8, "Member 'UGA_Status_Anger_C::Instigator' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, ParticleSystems) == 0x0006E0, "Member 'UGA_Status_Anger_C::ParticleSystems' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, FragilityEffect) == 0x0006F0, "Member 'UGA_Status_Anger_C::FragilityEffect' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, Original_Team) == 0x0006F8, "Member 'UGA_Status_Anger_C::Original_Team' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, MainVFX) == 0x000700, "Member 'UGA_Status_Anger_C::MainVFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, EyeVFX) == 0x000728, "Member 'UGA_Status_Anger_C::EyeVFX' has a wrong offset!"); \ +static_assert(offsetof(UGA_Status_Anger_C, bLocked) == 0x000750, "Member 'UGA_Status_Anger_C::bLocked' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_Apply_rotation \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_Apply_rotation) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_Apply_rotation"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_Apply_rotation) == 0x0000D0, "Wrong size on GA_EnemyReact_Hit_Base_C_Apply_rotation"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, Instigator) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::Instigator' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000019, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000020, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000040, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, Temp_bool_Variable) == 0x000048, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x000050, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000058, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000070, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000088, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_BreakRotator_Roll) == 0x0000A0, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_BreakRotator_Pitch) == 0x0000A4, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_BreakRotator_Yaw) == 0x0000A8, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_MakeRotator_ReturnValue) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_Apply_rotation, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0000C8, "Member 'GA_EnemyReact_Hit_Base_C_Apply_rotation::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_EventReceived_BF20FFC74158D1ACA7CA54B3A19E41ED::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base) == 0x000620, "Wrong size on GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag_5) == 0x000004, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag_4) == 0x0000D0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag_3) == 0x000198, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag_2) == 0x000260, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag_1) == 0x000328, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, Temp_struct_Variable) == 0x0003F0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004A8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_Event_EventData) == 0x0004B8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetReactionMontageTag_ReturnValue1) == 0x000568, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetReactionMontageTag_ReturnValue1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000570, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000580, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetOffsetDirection_ReturnValue) == 0x000588, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetOffsetDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x0005A0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_Event_bWasCancelled) == 0x0005A8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_IsValid_ReturnValue) == 0x0005A9, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0005B0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetComponentByClass_ReturnValue) == 0x0005B8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetMontageForTag_ReturnValue) == 0x0005C0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetMontageForTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_IsValid_ReturnValue_1) == 0x0005C8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_WaitDelay_ReturnValue) == 0x0005D0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_IsValid_ReturnValue_2) == 0x0005D8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x0005E0, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005E8, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000600, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, K2Node_CustomEvent_EventTag) == 0x000608, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_IsValid_ReturnValue_3) == 0x000610, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_MakeLiteralByte_ReturnValue) == 0x000611, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast) == 0x000614, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_ApplyRootMotionConstantForce_Strength_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base, CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast) == 0x000618, "Member 'GA_EnemyReact_Hit_Base_C_ExecuteUbergraph_GA_EnemyReact_Hit_Base::CallFunc_ApplyRootMotionConstantForce_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_GetMontageForTag \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_GetMontageForTag) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_GetMontageForTag"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_GetMontageForTag) == 0x000040, "Wrong size on GA_EnemyReact_Hit_Base_C_GetMontageForTag"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, InMontageTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::InMontageTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, MontageToPlay) == 0x000010, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::MontageToPlay' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_GetMontageByTag_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_Array_Random_OutItem) == 0x000020, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_Array_Random_OutIndex) == 0x000028, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_Array_Random_OutItem_1) == 0x000030, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_Array_Random_OutItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_Array_Random_OutIndex_1) == 0x000038, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_Array_Random_OutIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_MatchesTag_ReturnValue) == 0x00003C, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetMontageForTag, CallFunc_IsValid_ReturnValue) == 0x00003D, "Member 'GA_EnemyReact_Hit_Base_C_GetMontageForTag::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Hit_Base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Hit_Base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_MontageEventReceived \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_MontageEventReceived) == 0x000004, "Wrong alignment on GA_EnemyReact_Hit_Base_C_MontageEventReceived"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_MontageEventReceived) == 0x000008, "Wrong size on GA_EnemyReact_Hit_Base_C_MontageEventReceived"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_MontageEventReceived, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_MontageEventReceived::EventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_OnBlendOut_BF20FFC74158D1ACA7CA54B3A19E41ED::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_OnCancelled_BF20FFC74158D1ACA7CA54B3A19E41ED::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_OnCompleted_BF20FFC74158D1ACA7CA54B3A19E41ED::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Base_C_OnInterrupted_BF20FFC74158D1ACA7CA54B3A19E41ED::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_GetAttackDirection \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_GetAttackDirection) == 0x000010, "Wrong alignment on GA_EnemyReact_Hit_Base_C_GetAttackDirection"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_GetAttackDirection) == 0x000130, "Wrong size on GA_EnemyReact_Hit_Base_C_GetAttackDirection"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, TargetData) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000040, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_GetTargetDataOrigin_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_GetTargetDataOrigin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_BreakTransform_Location) == 0x0000C8, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_BreakTransform_Rotation) == 0x0000E0, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_BreakTransform_Scale) == 0x0000F8, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetAttackDirection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000110, "Member 'GA_EnemyReact_Hit_Base_C_GetAttackDirection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_GetOffsetDirection \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_GetOffsetDirection"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection) == 0x0001E0, "Wrong size on GA_EnemyReact_Hit_Base_C_GetOffsetDirection"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, GameplayEventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, ReturnValue) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000C8, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000D0, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_MakeRotator_ReturnValue) == 0x0000E8, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_NegateVector_ReturnValue) == 0x000100, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000118, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_X) == 0x000130, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_Y) == 0x000138, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_Z) == 0x000140, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_MakeVector_ReturnValue) == 0x000148, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_IsValid_ReturnValue) == 0x000160, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000168, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_X_1) == 0x000180, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_Y_1) == 0x000188, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_BreakVector_Z_1) == 0x000190, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_MakeVector_ReturnValue_1) == 0x000198, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0001B0, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetOffsetDirection, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x0001C8, "Member 'GA_EnemyReact_Hit_Base_C_GetOffsetDirection::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_GetReactionMontageTag \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_GetReactionMontageTag"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag) == 0x0000D8, "Wrong size on GA_EnemyReact_Hit_Base_C_GetReactionMontageTag"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, ReturnValue1) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::ReturnValue1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, OffsetDistance) == 0x0000B8, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::OffsetDistance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, Temp_bool_Variable) == 0x0000C0, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000C1, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, K2Node_Select_Default) == 0x0000C4, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_GetReactionMontageTag, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0000D0, "Member 'GA_EnemyReact_Hit_Base_C_GetReactionMontageTag::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_IsAttackFromRight \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_IsAttackFromRight"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight) == 0x000090, "Wrong size on GA_EnemyReact_Hit_Base_C_IsAttackFromRight"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, TargetData) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::TargetData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_GetAttackDirection_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_GetAttackDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_GetActorRightVector_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_Vector_Normal2D_ReturnValue) == 0x000068, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_Vector_Normal2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_Dot_VectorVector_ReturnValue) == 0x000080, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_IsAttackFromRight, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000088, "Member 'GA_EnemyReact_Hit_Base_C_IsAttackFromRight::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemyReact_Hit_Base_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Base_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Base_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Base_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Base_C) == 0x0007B8, "Wrong size on UGA_EnemyReact_Hit_Base_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Hit_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, OffsetStrength) == 0x000670, "Member 'UGA_EnemyReact_Hit_Base_C::OffsetStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, OffsetDuration) == 0x000678, "Member 'UGA_EnemyReact_Hit_Base_C::OffsetDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, PunchEventData) == 0x000680, "Member 'UGA_EnemyReact_Hit_Base_C::PunchEventData' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, MontageStartSection) == 0x000730, "Member 'UGA_EnemyReact_Hit_Base_C::MontageStartSection' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, MontagePlayRate) == 0x000738, "Member 'UGA_EnemyReact_Hit_Base_C::MontagePlayRate' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, LeftReactMontageTag) == 0x00073C, "Member 'UGA_EnemyReact_Hit_Base_C::LeftReactMontageTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, RightReactMontageTag) == 0x000744, "Member 'UGA_EnemyReact_Hit_Base_C::RightReactMontageTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, ReactionMontageTag) == 0x00074C, "Member 'UGA_EnemyReact_Hit_Base_C::ReactionMontageTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, ReactDuration) == 0x000754, "Member 'UGA_EnemyReact_Hit_Base_C::ReactDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, LeftReactionMontageVariants) == 0x000758, "Member 'UGA_EnemyReact_Hit_Base_C::LeftReactionMontageVariants' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, RightReactionMontageVariants) == 0x000768, "Member 'UGA_EnemyReact_Hit_Base_C::RightReactionMontageVariants' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, PainStrength) == 0x000778, "Member 'UGA_EnemyReact_Hit_Base_C::PainStrength' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, PainDuration) == 0x000780, "Member 'UGA_EnemyReact_Hit_Base_C::PainDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, RotatesToFace) == 0x000788, "Member 'UGA_EnemyReact_Hit_Base_C::RotatesToFace' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, Pain_Noise_Range) == 0x00078C, "Member 'UGA_EnemyReact_Hit_Base_C::Pain_Noise_Range' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, MontageEventTag) == 0x000790, "Member 'UGA_EnemyReact_Hit_Base_C::MontageEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Base_C, Push_task) == 0x0007B0, "Member 'UGA_EnemyReact_Hit_Base_C::Push_task' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light \ +static_assert(alignof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light) == 0x000138, "Wrong size on GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, K2Node_Event_EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0000B8, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000C0, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000D8, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000F0, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_IsValid_ReturnValue) == 0x000108, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000110, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_Dot_VectorVector_ReturnValue) == 0x000128, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_Hit_Light_C_ExecuteUbergraph_GA_EnemyReact_Hit_Light::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Light_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Light_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Light_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Light_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Light_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_Hit_Light_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Light_C, UberGraphFrame_GA_EnemyReact_Hit_Light_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Light_C::UberGraphFrame_GA_EnemyReact_Hit_Light_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam \ +static_assert(alignof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam) == 0x000008, "Wrong alignment on GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam"); \ +static_assert(sizeof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam) == 0x000140, "Wrong size on GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, K2Node_CreateDelegate_OutputDelegate_3) == 0x000034, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, K2Node_Event_EventData) == 0x000048, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000F8, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000100, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_MakeRotator_ReturnValue) == 0x000108, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000120, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_GetMontage_ReturnValue) == 0x000128, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam, CallFunc_IsValid_ReturnValue) == 0x000138, "Member 'GA_EnemyReact_WallSlam_C_ExecuteUbergraph_GA_EnemyReact_WallSlam::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_WallSlam_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_WallSlam_C \ +static_assert(alignof(UGA_EnemyReact_WallSlam_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_WallSlam_C"); \ +static_assert(sizeof(UGA_EnemyReact_WallSlam_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_WallSlam_C"); \ +static_assert(offsetof(UGA_EnemyReact_WallSlam_C, UberGraphFrame_GA_EnemyReact_WallSlam_C) == 0x0007B8, "Member 'UGA_EnemyReact_WallSlam_C::UberGraphFrame_GA_EnemyReact_WallSlam_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland \ +static_assert(alignof(GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland) == 0x000008, "Wrong alignment on GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland"); \ +static_assert(sizeof(GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland) == 0x0000B8, "Wrong size on GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland"); \ +static_assert(offsetof(GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland, K2Node_Event_EventData) == 0x000008, "Member 'GA_EnemyReact_Heavyland_C_ExecuteUbergraph_GA_EnemyReact_Heavyland::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Heavyland_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Heavyland_C \ +static_assert(alignof(UGA_EnemyReact_Heavyland_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Heavyland_C"); \ +static_assert(sizeof(UGA_EnemyReact_Heavyland_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_Heavyland_C"); \ +static_assert(offsetof(UGA_EnemyReact_Heavyland_C, UberGraphFrame_GA_EnemyReact_Heavyland_C) == 0x0007B8, "Member 'UGA_EnemyReact_Heavyland_C::UberGraphFrame_GA_EnemyReact_Heavyland_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter \ +static_assert(alignof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter) == 0x000110, "Wrong size on GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, CallFunc_GetActorForwardVector_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, CallFunc_NegateVector_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter, K2Node_Event_EventData) == 0x000060, "Member 'GA_EnemyReact_Hit_Counter_C_ExecuteUbergraph_GA_EnemyReact_Hit_Counter::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Counter_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Counter_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Counter_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Counter_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Counter_C) == 0x0007C8, "Wrong size on UGA_EnemyReact_Hit_Counter_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Counter_C, UberGraphFrame_GA_EnemyReact_Hit_Counter_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Counter_C::UberGraphFrame_GA_EnemyReact_Hit_Counter_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Counter_C, RepeatActivationCount) == 0x0007C0, "Member 'UGA_EnemyReact_Hit_Counter_C::RepeatActivationCount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset \ +static_assert(alignof(GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset) == 0x000010, "Wrong size on GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset, Actor) == 0x000000, "Member 'GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset, OffsetDistance) == 0x000008, "Member 'GA_EnemyReact_Hit_Telekinesis_C_Apply_Distance_Offset::OffsetDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis \ +static_assert(alignof(GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis, K2Node_Event_EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Telekinesis_C_ExecuteUbergraph_GA_EnemyReact_Hit_Telekinesis::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Telekinesis_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Telekinesis_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Telekinesis_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Telekinesis_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Telekinesis_C) == 0x0007D0, "Wrong size on UGA_EnemyReact_Hit_Telekinesis_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Telekinesis_C, UberGraphFrame_GA_EnemyReact_Hit_Telekinesis_C) == 0x0007C8, "Member 'UGA_EnemyReact_Hit_Telekinesis_C::UberGraphFrame_GA_EnemyReact_Hit_Telekinesis_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew \ +static_assert(alignof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew"); \ +static_assert(sizeof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew) == 0x000110, "Wrong size on GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, CallFunc_GetActorForwardVector_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, K2Node_CreateDelegate_OutputDelegate) == 0x000028, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, CallFunc_NegateVector_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, CallFunc_ApplyRootMotionConstantForce_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::CallFunc_ApplyRootMotionConstantForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew, K2Node_Event_EventData) == 0x000060, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_ExecuteUbergraph_GA_EnemyReact_Hit_TelekinesisNew::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_TelekinesisNew_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_TelekinesisNew_C \ +static_assert(alignof(UGA_EnemyReact_Hit_TelekinesisNew_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_TelekinesisNew_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_TelekinesisNew_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_Hit_TelekinesisNew_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_TelekinesisNew_C, UberGraphFrame_GA_EnemyReact_Hit_TelekinesisNew_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_TelekinesisNew_C::UberGraphFrame_GA_EnemyReact_Hit_TelekinesisNew_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_LightningStrike_C_EventReceived_5E3FC1CE421A396FCEEE4C98A73F372E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike) == 0x000828, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue) == 0x0000C0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventTag_3) == 0x0000C4, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventData_3) == 0x0000D0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate) == 0x000180, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventTag_2) == 0x000190, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventData_2) == 0x000198, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_1) == 0x000248, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventTag_1) == 0x000258, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventData_1) == 0x000260, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_2) == 0x000310, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventTag) == 0x000320, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CustomEvent_EventData) == 0x000328, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_struct_Variable) == 0x0003E8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_struct_Variable_1) == 0x000498, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_4) == 0x0004A0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_WaitDelay_ReturnValue) == 0x0004B0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_5) == 0x0004B8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue_1) == 0x0004C8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_6) == 0x0004CC, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_7) == 0x0004DC, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_WrestlerTaskTick_ReturnValue) == 0x0004F0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0004F8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue_2) == 0x000510, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_bool_Variable) == 0x000511, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_name_Variable) == 0x000514, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_name_Variable_1) == 0x00051C, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_8) == 0x000524, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000538, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetComponentByClass_ReturnValue) == 0x000540, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_Event_EventData) == 0x000548, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue_3) == 0x0005F8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, Temp_int_Variable) == 0x0005FC, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Greater_IntInt_ReturnValue) == 0x000600, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000604, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000608, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_CreateDelegate_OutputDelegate_9) == 0x000610, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000620, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_Event_bWasCancelled) == 0x000628, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000630, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Conv_IntToString_ReturnValue) == 0x000638, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Conv_StringToName_ReturnValue) == 0x000648, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Add_IntInt_ReturnValue) == 0x000650, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000658, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000660, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000668, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetMontageForTag_ReturnValue) == 0x000680, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetMontageForTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000688, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000690, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsFalling_ReturnValue) == 0x000698, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue_4) == 0x000699, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0006A0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0006A8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetPlayerPawn_ReturnValue) == 0x0006C0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_MakeLiteralByte_ReturnValue) == 0x0006C8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0006D0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0006E8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000700, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000718, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_BreakRotator_Roll) == 0x000720, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_BreakRotator_Pitch) == 0x000724, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_BreakRotator_Yaw) == 0x000728, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000730, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_MakeRotator_ReturnValue) == 0x000748, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000760, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000768, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000770, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetDirectionUnitVector_ReturnValue_1) == 0x000788, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetDirectionUnitVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0007A0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0007A8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_Add_VectorVector_ReturnValue) == 0x0007C0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_WaitDelay_ReturnValue_1) == 0x0007D8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_IsValid_ReturnValue_5) == 0x0007E0, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_RandomBool_ReturnValue) == 0x0007E1, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_RandomBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_RandomRotator_ReturnValue) == 0x0007E8, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_RandomRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, K2Node_Select_Default) == 0x000800, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_GetSocketLocation_ReturnValue) == 0x000808, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000820, "Member 'GA_EnemyReact_Hit_LightningStrike_C_ExecuteUbergraph_GA_EnemyReact_Hit_LightningStrike::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnBlendOut_5E3FC1CE421A396FCEEE4C98A73F372E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnCancelled_5E3FC1CE421A396FCEEE4C98A73F372E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnCompleted_5E3FC1CE421A396FCEEE4C98A73F372E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E \ +static_assert(alignof(GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(sizeof(GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_LightningStrike_C_OnInterrupted_5E3FC1CE421A396FCEEE4C98A73F372E::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_LightningStrike_C \ +static_assert(alignof(UGA_EnemyReact_Hit_LightningStrike_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_LightningStrike_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_LightningStrike_C) == 0x0007D0, "Wrong size on UGA_EnemyReact_Hit_LightningStrike_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_LightningStrike_C, UberGraphFrame_GA_EnemyReact_Hit_LightningStrike_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_LightningStrike_C::UberGraphFrame_GA_EnemyReact_Hit_LightningStrike_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_LightningStrike_C, Hit_Number) == 0x0007C0, "Member 'UGA_EnemyReact_Hit_LightningStrike_C::Hit_Number' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_LightningStrike_C, Prev_Hit) == 0x0007C4, "Member 'UGA_EnemyReact_Hit_LightningStrike_C::Prev_Hit' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_LightningStrike_C, System) == 0x0007C8, "Member 'UGA_EnemyReact_Hit_LightningStrike_C::System' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo \ +static_assert(alignof(GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo, K2Node_Event_EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Salvo_C_ExecuteUbergraph_GA_EnemyReact_Hit_Salvo::K2Node_Event_EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Salvo_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Salvo_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Salvo_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Salvo_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Salvo_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_Hit_Salvo_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Salvo_C, UberGraphFrame_GA_EnemyReact_Hit_Salvo_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Salvo_C::UberGraphFrame_GA_EnemyReact_Hit_Salvo_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0 \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Ranged_C_EventReceived_6CB449EE4271CA0ED57F47ADA5AA09E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged) == 0x0004C8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventTag_4) == 0x000004, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventData_4) == 0x000010, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventTag_3) == 0x0000D0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventData_3) == 0x0000D8, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventTag_2) == 0x000198, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventData_2) == 0x0001A0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventTag_1) == 0x000260, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventData_1) == 0x000268, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventTag) == 0x000328, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CustomEvent_EventData) == 0x000330, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, Temp_struct_Variable) == 0x0003F0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, Temp_struct_Variable_1) == 0x0004A0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, CallFunc_Array_Random_OutItem) == 0x0004A8, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, CallFunc_Array_Random_OutIndex) == 0x0004B0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004B8, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged, CallFunc_IsValid_ReturnValue) == 0x0004C0, "Member 'GA_EnemyReact_Hit_Ranged_C_ExecuteUbergraph_GA_EnemyReact_Hit_Ranged::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0 \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Ranged_C_OnBlendOut_6CB449EE4271CA0ED57F47ADA5AA09E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0 \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Ranged_C_OnCancelled_6CB449EE4271CA0ED57F47ADA5AA09E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0 \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Ranged_C_OnCompleted_6CB449EE4271CA0ED57F47ADA5AA09E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0 \ +static_assert(alignof(GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Ranged_C_OnInterrupted_6CB449EE4271CA0ED57F47ADA5AA09E0::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Ranged_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Ranged_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Ranged_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Ranged_C) == 0x0007C8, "Wrong size on UGA_EnemyReact_Hit_Ranged_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Ranged_C, UberGraphFrame_GA_EnemyReact_Hit_Ranged_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Ranged_C::UberGraphFrame_GA_EnemyReact_Hit_Ranged_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Ranged_C, Root_Motion_Scale) == 0x0007C0, "Member 'UGA_EnemyReact_Hit_Ranged_C::Root_Motion_Scale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnim_Prop_Data_C \ +static_assert(alignof(UAnim_Prop_Data_C) == 0x000010, "Wrong alignment on UAnim_Prop_Data_C"); \ +static_assert(sizeof(UAnim_Prop_Data_C) == 0x0000C0, "Wrong size on UAnim_Prop_Data_C"); \ +static_assert(offsetof(UAnim_Prop_Data_C, PropActor) == 0x000028, "Member 'UAnim_Prop_Data_C::PropActor' has a wrong offset!"); \ +static_assert(offsetof(UAnim_Prop_Data_C, Socket) == 0x000050, "Member 'UAnim_Prop_Data_C::Socket' has a wrong offset!"); \ +static_assert(offsetof(UAnim_Prop_Data_C, Transform) == 0x000060, "Member 'UAnim_Prop_Data_C::Transform' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1) == 0x0000B0, "Wrong size on GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1, Payload) == 0x000000, "Member 'GA_Patrol_Action_Base_C_EventReceived_2924A64F4D0C6ACE012A0A8D0E93E7E1::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42 \ +static_assert(alignof(GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42) == 0x0000B0, "Wrong size on GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42, Payload) == 0x000000, "Member 'GA_Patrol_Action_Base_C_EventReceived_47C13A034C6749D83800FA8AE4F88F42::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x0000B8, "Wrong size on GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventTag) == 0x000000, "Member 'GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventData) == 0x000008, "Member 'GA_Patrol_Action_Base_C_EventReceived_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base \ +static_assert(alignof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base) == 0x000010, "Wrong alignment on GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base) == 0x000BE0, "Wrong size on GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventTag_2) == 0x000004, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventData_2) == 0x000010, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate) == 0x0000C0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventTag_1) == 0x0000D0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventData_1) == 0x0000D8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x000188, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventTag) == 0x000198, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventData) == 0x0001A0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_2) == 0x000250, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, Temp_struct_Variable) == 0x000260, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, Temp_struct_Variable_1) == 0x000310, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_3) == 0x000318, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_4) == 0x000328, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_5) == 0x000338, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000348, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_6) == 0x000350, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue) == 0x000360, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_Payload_1) == 0x000368, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_Payload_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, Temp_struct_Variable_2) == 0x000418, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0004C8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_1) == 0x0004D0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_2) == 0x0004D1, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_DynamicCast_AsAnim_Prop_Data) == 0x0004D8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_DynamicCast_AsAnim_Prop_Data' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_DynamicCast_bSuccess) == 0x0004E0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_Loaded) == 0x0004E8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, Temp_class_Variable) == 0x0004F0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_ClassDynamicCast_AsActor) == 0x0004F8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_ClassDynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_ClassDynamicCast_bSuccess) == 0x000500, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_ClassDynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_MakeTransform_ReturnValue) == 0x000510, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000570, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_FinishSpawningActor_ReturnValue) == 0x000578, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_7) == 0x000580, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_Payload) == 0x000590, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, Temp_struct_Variable_3) == 0x000640, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_WaitGameplayEvent_ReturnValue_1) == 0x0006F0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_WaitGameplayEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_3) == 0x0006F8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventTag_4) == 0x0006FC, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventData_4) == 0x000708, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_Event_bWasCancelled) == 0x0007B8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetMontage_ReturnValue) == 0x0007C0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0007C8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_8) == 0x0007D0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_4) == 0x0007E0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x0007E8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetAIController_ReturnValue) == 0x0007F0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_MakeLiteralName_ReturnValue) == 0x0007F8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetBlackboard_ReturnValue) == 0x000800, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000808, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetValueAsObject_ReturnValue) == 0x000810, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetValueAsObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000818, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_5) == 0x000830, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_X) == 0x000838, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_Y) == 0x000840, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_Z) == 0x000848, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_MakeVector_ReturnValue) == 0x000850, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_DynamicCast_AsActor) == 0x000868, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_DynamicCast_bSuccess_1) == 0x000870, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventTag_3) == 0x000874, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CustomEvent_EventData_3) == 0x000880, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000930, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_X_1) == 0x000948, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_Y_1) == 0x000950, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_BreakVector_Z_1) == 0x000958, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_MakeVector_ReturnValue_1) == 0x000960, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_MakeVector_ReturnValue_2) == 0x000978, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_MakeVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_Vector_Distance_ReturnValue) == 0x000990, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000998, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0009A0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x0009A8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_VInterpTo_Constant_ReturnValue) == 0x0009B0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_VInterpTo_Constant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0009C8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000AB0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_9) == 0x000AB4, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_IsValid_ReturnValue_6) == 0x000AC4, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, K2Node_CreateDelegate_OutputDelegate_10) == 0x000AC8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000AD8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000AE0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_K2_SetActorRelativeTransform_SweepHitResult) == 0x000AE8, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_K2_SetActorRelativeTransform_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base, CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast) == 0x000BD0, "Member 'GA_Patrol_Action_Base_C_ExecuteUbergraph_GA_Patrol_Action_Base::CallFunc_VInterpTo_Constant_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_K2_OnEndAbility \ +static_assert(alignof(GA_Patrol_Action_Base_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Patrol_Action_Base_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Patrol_Action_Base_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Patrol_Action_Base_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x0000B8, "Wrong size on GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventTag) == 0x000000, "Member 'GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventData) == 0x000008, "Member 'GA_Patrol_Action_Base_C_OnBlendOut_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x0000B8, "Wrong size on GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventTag) == 0x000000, "Member 'GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventData) == 0x000008, "Member 'GA_Patrol_Action_Base_C_OnCancelled_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x0000B8, "Wrong size on GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventTag) == 0x000000, "Member 'GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventData) == 0x000008, "Member 'GA_Patrol_Action_Base_C_OnCompleted_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1 \ +static_assert(alignof(GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1) == 0x0000B8, "Wrong size on GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventTag) == 0x000000, "Member 'GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1, EventData) == 0x000008, "Member 'GA_Patrol_Action_Base_C_OnInterrupted_ACE5C5FD4D5B5CFB9A103180C57F75D1::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A \ +static_assert(alignof(GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A) == 0x000008, "Wrong alignment on GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A"); \ +static_assert(sizeof(GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A) == 0x000008, "Wrong size on GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A"); \ +static_assert(offsetof(GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A, Loaded) == 0x000000, "Member 'GA_Patrol_Action_Base_C_OnLoaded_6DC6B4A846ABDF0529479086E8E5644A::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Base_C \ +static_assert(alignof(UGA_Patrol_Action_Base_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Base_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Base_C) == 0x000690, "Wrong size on UGA_Patrol_Action_Base_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Base_C, UberGraphFrame) == 0x000668, "Member 'UGA_Patrol_Action_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Patrol_Action_Base_C, LoopEndSectionName) == 0x000670, "Member 'UGA_Patrol_Action_Base_C::LoopEndSectionName' has a wrong offset!"); \ +static_assert(offsetof(UGA_Patrol_Action_Base_C, HasEndSection) == 0x000678, "Member 'UGA_Patrol_Action_Base_C::HasEndSection' has a wrong offset!"); \ +static_assert(offsetof(UGA_Patrol_Action_Base_C, SpawnedObject) == 0x000680, "Member 'UGA_Patrol_Action_Base_C::SpawnedObject' has a wrong offset!"); \ +static_assert(offsetof(UGA_Patrol_Action_Base_C, As_Anim_Prop_Data) == 0x000688, "Member 'UGA_Patrol_Action_Base_C::As_Anim_Prop_Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_ApplyFlicker \ +static_assert(alignof(BP_lightmaster_C_ApplyFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_ApplyFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_ApplyFlicker) == 0x000028, "Wrong size on BP_lightmaster_C_ApplyFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_ApplyFlicker, FlickerIntensity) == 0x000000, "Member 'BP_lightmaster_C_ApplyFlicker::FlickerIntensity' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ApplyFlicker, FlickerOnlyEmissive) == 0x000008, "Member 'BP_lightmaster_C_ApplyFlicker::FlickerOnlyEmissive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ApplyFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_ApplyFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ApplyFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000018, "Member 'BP_lightmaster_C_ApplyFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ApplyFlicker, CallFunc_MultiplyMultiply_FloatFloat_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_ApplyFlicker::CallFunc_MultiplyMultiply_FloatFloat_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_AudioLightToggle \ +static_assert(alignof(BP_lightmaster_C_AudioLightToggle) == 0x000001, "Wrong alignment on BP_lightmaster_C_AudioLightToggle"); \ +static_assert(sizeof(BP_lightmaster_C_AudioLightToggle) == 0x000002, "Wrong size on BP_lightmaster_C_AudioLightToggle"); \ +static_assert(offsetof(BP_lightmaster_C_AudioLightToggle, On) == 0x000000, "Member 'BP_lightmaster_C_AudioLightToggle::On' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_AudioLightToggle, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'BP_lightmaster_C_AudioLightToggle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_CachePlayer \ +static_assert(alignof(BP_lightmaster_C_CachePlayer) == 0x000008, "Wrong alignment on BP_lightmaster_C_CachePlayer"); \ +static_assert(sizeof(BP_lightmaster_C_CachePlayer) == 0x000018, "Wrong size on BP_lightmaster_C_CachePlayer"); \ +static_assert(offsetof(BP_lightmaster_C_CachePlayer, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000000, "Member 'BP_lightmaster_C_CachePlayer::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CachePlayer, K2Node_DynamicCast_AsWrestler_Character) == 0x000008, "Member 'BP_lightmaster_C_CachePlayer::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CachePlayer, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'BP_lightmaster_C_CachePlayer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_CheckEnergyActorFlicker \ +static_assert(alignof(BP_lightmaster_C_CheckEnergyActorFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_CheckEnergyActorFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_CheckEnergyActorFlicker) == 0x000018, "Wrong size on BP_lightmaster_C_CheckEnergyActorFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_CheckEnergyActorFlicker, PuppetFlickerActive) == 0x000000, "Member 'BP_lightmaster_C_CheckEnergyActorFlicker::PuppetFlickerActive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckEnergyActorFlicker, CallFunc_BooleanAND_ReturnValue) == 0x000001, "Member 'BP_lightmaster_C_CheckEnergyActorFlicker::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckEnergyActorFlicker, CallFunc_GetEnergyActorDistance_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_CheckEnergyActorFlicker::CallFunc_GetEnergyActorDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckEnergyActorFlicker, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_CheckEnergyActorFlicker::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_CheckShakeFlicker \ +static_assert(alignof(BP_lightmaster_C_CheckShakeFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_CheckShakeFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_CheckShakeFlicker) == 0x000010, "Wrong size on BP_lightmaster_C_CheckShakeFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_CheckShakeFlicker, ShakeFlickerActive) == 0x000000, "Member 'BP_lightmaster_C_CheckShakeFlicker::ShakeFlickerActive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckShakeFlicker, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000001, "Member 'BP_lightmaster_C_CheckShakeFlicker::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckShakeFlicker, CallFunc_BooleanAND_ReturnValue) == 0x000002, "Member 'BP_lightmaster_C_CheckShakeFlicker::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_CheckShakeFlicker, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x000008, "Member 'BP_lightmaster_C_CheckShakeFlicker::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_EditorTick \ +static_assert(alignof(BP_lightmaster_C_EditorTick) == 0x000004, "Wrong alignment on BP_lightmaster_C_EditorTick"); \ +static_assert(sizeof(BP_lightmaster_C_EditorTick) == 0x000004, "Wrong size on BP_lightmaster_C_EditorTick"); \ +static_assert(offsetof(BP_lightmaster_C_EditorTick, DeltaTime) == 0x000000, "Member 'BP_lightmaster_C_EditorTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster \ +static_assert(alignof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster) == 0x000008, "Wrong alignment on BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster"); \ +static_assert(sizeof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster) == 0x000508, "Wrong size on BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, EntryPoint) == 0x000000, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_CustomEvent_LightOn_1) == 0x000004, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_CustomEvent_LightOn_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_RandomFloatInRange_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_DeltaSeconds) == 0x000010, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_CustomEvent_DeltaTime) == 0x000018, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_CustomEvent_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_SelectFloat_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_GetDisplayName_ReturnValue) == 0x000038, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_GetUpVector_ReturnValue) == 0x000048, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_GetUpVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_Damage) == 0x000060, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_DamageType) == 0x000068, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_HitLocation) == 0x000070, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_HitNormal) == 0x000088, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_HitComponent) == 0x0000A0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_BoneName) == 0x0000A8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_ShotFromDirection) == 0x0000B0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_InstigatedBy) == 0x0000C8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_DamageCauser) == 0x0000D0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_HitInfo) == 0x0000D8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_HitInfo' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Cross_VectorVector_ReturnValue) == 0x0001C0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Cross_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0001D8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0001E0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_FClamp_ReturnValue) == 0x0001E8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_IsClosed_Variable) == 0x0001F0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x0001F8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000200, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000208, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000210, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_Has_Been_Initd_Variable) == 0x000218, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_Has_Been_Initd_Variable_1) == 0x000219, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_IsClosed_Variable_1) == 0x00021A, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000220, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_BF_Rotational_Shake_Random_Shake) == 0x000228, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_BF_Rotational_Shake_Random_Shake' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_BF_Rotational_Shake_Vector_Directed_Shake) == 0x000240, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_BF_Rotational_Shake_Vector_Directed_Shake' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_RotatorFromAxisAndAngle_ReturnValue) == 0x000248, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_RotatorFromAxisAndAngle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_IsValid_ReturnValue) == 0x000260, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_K2_SetRelativeRotation_SweepHitResult) == 0x000268, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_K2_SetRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_K2_SetRelativeRotation_SweepHitResult_1) == 0x000350, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_K2_SetRelativeRotation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000438, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_BooleanAND_ReturnValue) == 0x000448, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_Has_Been_Initd_Variable_2) == 0x000449, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_CheckShakeFlicker_ShakeFlickerActive) == 0x00044A, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_CheckShakeFlicker_ShakeFlickerActive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_CustomEvent_LightOn) == 0x00044B, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_CustomEvent_LightOn' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000450, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000458, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_IsClosed_Variable_2) == 0x000459, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_CustomEvent_FlickerOn) == 0x00045A, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_CustomEvent_FlickerOn' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000460, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x000468, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_FClamp_ReturnValue_1) == 0x000470, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_CheckEnergyActorFlicker_PuppetFlickerActive) == 0x000478, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_CheckEnergyActorFlicker_PuppetFlickerActive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x000480, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_IsClosed_Variable_3) == 0x000488, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_IsClosed_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_GetCombinedFlicker_CombinedFlickerValue) == 0x000490, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_GetCombinedFlicker_CombinedFlickerValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_Event_DeltaTime) == 0x000498, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_Event_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, Temp_bool_Has_Been_Initd_Variable_3) == 0x00049C, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::Temp_bool_Has_Been_Initd_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Delay_Duration_ImplicitCast) == 0x0004A0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Greater_DoubleDouble_A_ImplicitCast) == 0x0004A8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Greater_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0004B0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0004B8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0004C0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_BF_Rotational_Shake_Timeline_Tick_ImplicitCast) == 0x0004C8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_BF_Rotational_Shake_Timeline_Tick_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_RotatorFromAxisAndAngle_Angle_ImplicitCast) == 0x0004D0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_RotatorFromAxisAndAngle_Angle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0004D8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Greater_DoubleDouble_A_ImplicitCast_1) == 0x0004E0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Greater_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0004E8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, K2Node_VariableSet_CurrentStormShakeIntensity_ImplicitCast) == 0x0004F0, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::K2Node_VariableSet_CurrentStormShakeIntensity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x0004F8, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster, CallFunc_LightFlicker_DeltaTime_ImplicitCast) == 0x000500, "Member 'BP_lightmaster_C_ExecuteUbergraph_BP_lightmaster::CallFunc_LightFlicker_DeltaTime_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_Fade_Lights \ +static_assert(alignof(BP_lightmaster_C_Fade_Lights) == 0x000008, "Wrong alignment on BP_lightmaster_C_Fade_Lights"); \ +static_assert(sizeof(BP_lightmaster_C_Fade_Lights) == 0x000090, "Wrong size on BP_lightmaster_C_Fade_Lights"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, FadeValue) == 0x000000, "Member 'BP_lightmaster_C_Fade_Lights::FadeValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, AffectTemperature) == 0x000008, "Member 'BP_lightmaster_C_Fade_Lights::AffectTemperature' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, ResetRequested) == 0x000009, "Member 'BP_lightmaster_C_Fade_Lights::ResetRequested' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, OverrideEase) == 0x00000A, "Member 'BP_lightmaster_C_Fade_Lights::OverrideEase' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, FadeOnlyEmissive) == 0x00000B, "Member 'BP_lightmaster_C_Fade_Lights::FadeOnlyEmissive' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Array_Length_ReturnValue) == 0x00000C, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_NearlyEqual_FloatFloat_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_NearlyEqual_FloatFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_IsEditor_ReturnValue) == 0x000011, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_IsEditor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000012, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_BooleanOR_ReturnValue) == 0x000013, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Not_PreBool_ReturnValue) == 0x000014, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'BP_lightmaster_C_Fade_Lights::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_NearlyEqual_FloatFloat_ReturnValue_1) == 0x00001C, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_NearlyEqual_FloatFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Less_IntInt_ReturnValue) == 0x00001D, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_IsPlayerNearby_PlayerIsNearby) == 0x000024, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_IsPlayerNearby_PlayerIsNearby' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_WasRecentlyRendered_ReturnValue) == 0x000025, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_WasRecentlyRendered_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_BooleanOR_ReturnValue_1) == 0x000026, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Lerp_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, Temp_int_Array_Index_Variable) == 0x000030, "Member 'BP_lightmaster_C_Fade_Lights::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Ease_ReturnValue) == 0x000050, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Ease_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Lerp_ReturnValue_1) == 0x000058, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Lerp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_SelectFloat_ReturnValue) == 0x000060, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_SelectFloat_ReturnValue_1) == 0x000068, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_BooleanAND_ReturnValue) == 0x000070, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_Lerp_ReturnValue_2) == 0x000078, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_Lerp_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_SetTemperature_NewTemperature_ImplicitCast) == 0x000080, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_SetTemperature_NewTemperature_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_SetIntensity_NewIntensity_ImplicitCast) == 0x000084, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_SetIntensity_NewIntensity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Fade_Lights, CallFunc_SetTemperature_NewTemperature_ImplicitCast_1) == 0x000088, "Member 'BP_lightmaster_C_Fade_Lights::CallFunc_SetTemperature_NewTemperature_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_FlickerToggle \ +static_assert(alignof(BP_lightmaster_C_FlickerToggle) == 0x000001, "Wrong alignment on BP_lightmaster_C_FlickerToggle"); \ +static_assert(sizeof(BP_lightmaster_C_FlickerToggle) == 0x000001, "Wrong size on BP_lightmaster_C_FlickerToggle"); \ +static_assert(offsetof(BP_lightmaster_C_FlickerToggle, FlickerOn) == 0x000000, "Member 'BP_lightmaster_C_FlickerToggle::FlickerOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_Get_Average_Temperature \ +static_assert(alignof(BP_lightmaster_C_Get_Average_Temperature) == 0x000008, "Wrong alignment on BP_lightmaster_C_Get_Average_Temperature"); \ +static_assert(sizeof(BP_lightmaster_C_Get_Average_Temperature) == 0x000058, "Wrong size on BP_lightmaster_C_Get_Average_Temperature"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, AverageTemperature) == 0x000000, "Member 'BP_lightmaster_C_Get_Average_Temperature::AverageTemperature' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_lightmaster_C_Get_Average_Temperature::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_lightmaster_C_Get_Average_Temperature::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Array_Length_ReturnValue) == 0x000014, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Greater_IntInt_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000040, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000048, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Array_Length_ReturnValue_1) == 0x000050, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Get_Average_Temperature, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'BP_lightmaster_C_Get_Average_Temperature::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_GetCombinedFlicker \ +static_assert(alignof(BP_lightmaster_C_GetCombinedFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_GetCombinedFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_GetCombinedFlicker) == 0x0000F0, "Wrong size on BP_lightmaster_C_GetCombinedFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, IncludeCurveFlicker) == 0x000000, "Member 'BP_lightmaster_C_GetCombinedFlicker::IncludeCurveFlicker' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, IncludeEnergyActorFlicker) == 0x000001, "Member 'BP_lightmaster_C_GetCombinedFlicker::IncludeEnergyActorFlicker' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, IncludeStormShakeFlicker) == 0x000002, "Member 'BP_lightmaster_C_GetCombinedFlicker::IncludeStormShakeFlicker' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CombinedFlickerValue) == 0x000008, "Member 'BP_lightmaster_C_GetCombinedFlicker::CombinedFlickerValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_RandomFloat_ReturnValue) == 0x000018, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_RandomFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_K2_MakePerlinNoiseAndRemap_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_K2_MakePerlinNoiseAndRemap_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_FClamp_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000038, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Ease_ReturnValue) == 0x000040, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Ease_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_K2_MakePerlinNoiseAndRemap_ReturnValue_1) == 0x000048, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_K2_MakePerlinNoiseAndRemap_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_SelectFloat_ReturnValue) == 0x000050, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_RandomFloat_ReturnValue_1) == 0x000058, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_RandomFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_GetEnergyActorDistance_ReturnValue) == 0x000060, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_GetEnergyActorDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000068, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_FClamp_ReturnValue_1) == 0x000070, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_FClamp_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_NormalizeToRange_ReturnValue) == 0x000078, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Ease_ReturnValue_1) == 0x000080, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Ease_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_SelectFloat_ReturnValue_1) == 0x000088, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000090, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_GetFloatValue_ReturnValue) == 0x000098, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_SelectFloat_ReturnValue_2) == 0x0000A0, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0000A8, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000B0, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Ease_Alpha_ImplicitCast) == 0x0000B8, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Ease_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_K2_MakePerlinNoiseAndRemap_Value_ImplicitCast) == 0x0000C0, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_K2_MakePerlinNoiseAndRemap_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0000C8, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_K2_MakePerlinNoiseAndRemap_Value_ImplicitCast_1) == 0x0000D0, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_K2_MakePerlinNoiseAndRemap_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1) == 0x0000D8, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_Multiply_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x0000E0, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetCombinedFlicker, CallFunc_SelectFloat_A_ImplicitCast) == 0x0000E8, "Member 'BP_lightmaster_C_GetCombinedFlicker::CallFunc_SelectFloat_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_GetEnergyActorDistance \ +static_assert(alignof(BP_lightmaster_C_GetEnergyActorDistance) == 0x000008, "Wrong alignment on BP_lightmaster_C_GetEnergyActorDistance"); \ +static_assert(sizeof(BP_lightmaster_C_GetEnergyActorDistance) == 0x000040, "Wrong size on BP_lightmaster_C_GetEnergyActorDistance"); \ +static_assert(offsetof(BP_lightmaster_C_GetEnergyActorDistance, ReturnValue) == 0x000000, "Member 'BP_lightmaster_C_GetEnergyActorDistance::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetEnergyActorDistance, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_GetEnergyActorDistance::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetEnergyActorDistance, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000020, "Member 'BP_lightmaster_C_GetEnergyActorDistance::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_GetEnergyActorDistance, CallFunc_Vector_Distance_ReturnValue) == 0x000038, "Member 'BP_lightmaster_C_GetEnergyActorDistance::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_Initial_Damage_Vars \ +static_assert(alignof(BP_lightmaster_C_Initial_Damage_Vars) == 0x000008, "Wrong alignment on BP_lightmaster_C_Initial_Damage_Vars"); \ +static_assert(sizeof(BP_lightmaster_C_Initial_Damage_Vars) == 0x000040, "Wrong size on BP_lightmaster_C_Initial_Damage_Vars"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'BP_lightmaster_C_Initial_Damage_Vars::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_lightmaster_C_Initial_Damage_Vars::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_GetChildrenComponents_Children) == 0x000010, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_GetChildrenComponents_Children' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, K2Node_DynamicCast_AsNiagara_Particle_System_Component) == 0x000030, "Member 'BP_lightmaster_C_Initial_Damage_Vars::K2Node_DynamicCast_AsNiagara_Particle_System_Component' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'BP_lightmaster_C_Initial_Damage_Vars::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_Less_IntInt_ReturnValue) == 0x000039, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initial_Damage_Vars, CallFunc_Array_Add_ReturnValue) == 0x00003C, "Member 'BP_lightmaster_C_Initial_Damage_Vars::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_Initialize_Cache \ +static_assert(alignof(BP_lightmaster_C_Initialize_Cache) == 0x000008, "Wrong alignment on BP_lightmaster_C_Initialize_Cache"); \ +static_assert(sizeof(BP_lightmaster_C_Initialize_Cache) == 0x0000B8, "Wrong size on BP_lightmaster_C_Initialize_Cache"); \ +static_assert(offsetof(BP_lightmaster_C_Initialize_Cache, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000000, "Member 'BP_lightmaster_C_Initialize_Cache::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initialize_Cache, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_Initialize_Cache::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initialize_Cache, CallFunc_CacheLightComponents_CachedIntensity) == 0x000018, "Member 'BP_lightmaster_C_Initialize_Cache::CallFunc_CacheLightComponents_CachedIntensity' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Initialize_Cache, CallFunc_CacheLightComponents_CachedTemperature) == 0x000068, "Member 'BP_lightmaster_C_Initialize_Cache::CallFunc_CacheLightComponents_CachedTemperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_InstantLightToggle \ +static_assert(alignof(BP_lightmaster_C_InstantLightToggle) == 0x000001, "Wrong alignment on BP_lightmaster_C_InstantLightToggle"); \ +static_assert(sizeof(BP_lightmaster_C_InstantLightToggle) == 0x000001, "Wrong size on BP_lightmaster_C_InstantLightToggle"); \ +static_assert(offsetof(BP_lightmaster_C_InstantLightToggle, LightOn) == 0x000000, "Member 'BP_lightmaster_C_InstantLightToggle::LightOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_IsPlayerNearby \ +static_assert(alignof(BP_lightmaster_C_IsPlayerNearby) == 0x000008, "Wrong alignment on BP_lightmaster_C_IsPlayerNearby"); \ +static_assert(sizeof(BP_lightmaster_C_IsPlayerNearby) == 0x000058, "Wrong size on BP_lightmaster_C_IsPlayerNearby"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, PlayerIsNearby) == 0x000000, "Member 'BP_lightmaster_C_IsPlayerNearby::PlayerIsNearby' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000030, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000048, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_IsPlayerNearby, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000050, "Member 'BP_lightmaster_C_IsPlayerNearby::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_LightFlicker \ +static_assert(alignof(BP_lightmaster_C_LightFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_LightFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_LightFlicker) == 0x000008, "Wrong size on BP_lightmaster_C_LightFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_LightFlicker, DeltaTime) == 0x000000, "Member 'BP_lightmaster_C_LightFlicker::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_LightToggle \ +static_assert(alignof(BP_lightmaster_C_LightToggle) == 0x000001, "Wrong alignment on BP_lightmaster_C_LightToggle"); \ +static_assert(sizeof(BP_lightmaster_C_LightToggle) == 0x000001, "Wrong size on BP_lightmaster_C_LightToggle"); \ +static_assert(offsetof(BP_lightmaster_C_LightToggle, LightOn) == 0x000000, "Member 'BP_lightmaster_C_LightToggle::LightOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_ReceivePointDamage \ +static_assert(alignof(BP_lightmaster_C_ReceivePointDamage) == 0x000008, "Wrong alignment on BP_lightmaster_C_ReceivePointDamage"); \ +static_assert(sizeof(BP_lightmaster_C_ReceivePointDamage) == 0x000160, "Wrong size on BP_lightmaster_C_ReceivePointDamage"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, Damage) == 0x000000, "Member 'BP_lightmaster_C_ReceivePointDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, DamageType) == 0x000008, "Member 'BP_lightmaster_C_ReceivePointDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, HitLocation) == 0x000010, "Member 'BP_lightmaster_C_ReceivePointDamage::HitLocation' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, HitNormal) == 0x000028, "Member 'BP_lightmaster_C_ReceivePointDamage::HitNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, HitComponent) == 0x000040, "Member 'BP_lightmaster_C_ReceivePointDamage::HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, BoneName) == 0x000048, "Member 'BP_lightmaster_C_ReceivePointDamage::BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, ShotFromDirection) == 0x000050, "Member 'BP_lightmaster_C_ReceivePointDamage::ShotFromDirection' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, InstigatedBy) == 0x000068, "Member 'BP_lightmaster_C_ReceivePointDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, DamageCauser) == 0x000070, "Member 'BP_lightmaster_C_ReceivePointDamage::DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_ReceivePointDamage, HitInfo) == 0x000078, "Member 'BP_lightmaster_C_ReceivePointDamage::HitInfo' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_ReceiveTick \ +static_assert(alignof(BP_lightmaster_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_lightmaster_C_ReceiveTick"); \ +static_assert(sizeof(BP_lightmaster_C_ReceiveTick) == 0x000004, "Wrong size on BP_lightmaster_C_ReceiveTick"); \ +static_assert(offsetof(BP_lightmaster_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_lightmaster_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetEmissiveParameters \ +static_assert(alignof(BP_lightmaster_C_SetEmissiveParameters) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetEmissiveParameters"); \ +static_assert(sizeof(BP_lightmaster_C_SetEmissiveParameters) == 0x000108, "Wrong size on BP_lightmaster_C_SetEmissiveParameters"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, EmissiveTint) == 0x000000, "Member 'BP_lightmaster_C_SetEmissiveParameters::EmissiveTint' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, EmissiveIntensity) == 0x000010, "Member 'BP_lightmaster_C_SetEmissiveParameters::EmissiveIntensity' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_bool_Has_Been_Initd_Variable) == 0x000018, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_int_Loop_Counter_Variable_1) == 0x000024, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Add_IntInt_ReturnValue_1) == 0x000028, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_int_Array_Index_Variable) == 0x00002C, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Concat_StrStr_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000040, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_int_Array_Index_Variable_1) == 0x000050, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Map_Keys_Keys) == 0x000058, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_Get_Item) == 0x000068, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_Length_ReturnValue) == 0x000080, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Map_Find_Value) == 0x000088, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Map_Find_ReturnValue) == 0x000090, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Less_IntInt_ReturnValue) == 0x000091, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000098, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Conv_IntToString_ReturnValue) == 0x0000A0, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_IsValidIndex_ReturnValue) == 0x0000B0, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_IsValidIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000B8, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_bool_IsClosed_Variable) == 0x0000C8, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_real_Variable) == 0x0000CC, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, Temp_bool_Variable) == 0x0000D0, "Member 'BP_lightmaster_C_SetEmissiveParameters::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_ConvertTemperatureToColour_LinearColor) == 0x0000D4, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_ConvertTemperatureToColour_LinearColor' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, K2Node_Select_Default) == 0x0000E4, "Member 'BP_lightmaster_C_SetEmissiveParameters::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_Get_Item_2) == 0x0000E8, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_IsValid_ReturnValue) == 0x0000F0, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Array_Length_ReturnValue_1) == 0x0000F4, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000F8, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x0000FC, "Member 'BP_lightmaster_C_SetEmissiveParameters::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetEmissiveParameters, K2Node_Select_Option_1_ImplicitCast) == 0x000100, "Member 'BP_lightmaster_C_SetEmissiveParameters::K2Node_Select_Option_1_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetLightVisibility \ +static_assert(alignof(BP_lightmaster_C_SetLightVisibility) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetLightVisibility"); \ +static_assert(sizeof(BP_lightmaster_C_SetLightVisibility) == 0x000028, "Wrong size on BP_lightmaster_C_SetLightVisibility"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, LightsOn_0) == 0x000000, "Member 'BP_lightmaster_C_SetLightVisibility::LightsOn_0' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_lightmaster_C_SetLightVisibility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_lightmaster_C_SetLightVisibility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_lightmaster_C_SetLightVisibility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, CallFunc_Array_Length_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_SetLightVisibility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_lightmaster_C_SetLightVisibility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetLightVisibility, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_SetLightVisibility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetOnlyOwnerSee \ +static_assert(alignof(BP_lightmaster_C_SetOnlyOwnerSee) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetOnlyOwnerSee"); \ +static_assert(sizeof(BP_lightmaster_C_SetOnlyOwnerSee) == 0x000028, "Wrong size on BP_lightmaster_C_SetOnlyOwnerSee"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, Hidden_in_Game) == 0x000000, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::Hidden_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, CallFunc_Array_Length_ReturnValue) == 0x000010, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetOnlyOwnerSee, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_SetOnlyOwnerSee::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_Setup_Emissive_Dynamic_Materials \ +static_assert(alignof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials) == 0x000008, "Wrong alignment on BP_lightmaster_C_Setup_Emissive_Dynamic_Materials"); \ +static_assert(sizeof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials) == 0x000040, "Wrong size on BP_lightmaster_C_Setup_Emissive_Dynamic_Materials"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Array_IsEmpty_ReturnValue) == 0x00000C, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Array_Get_Item) == 0x000010, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Less_IntInt_ReturnValue) == 0x00002C, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_Setup_Emissive_Dynamic_Materials, CallFunc_Array_Add_ReturnValue) == 0x000038, "Member 'BP_lightmaster_C_Setup_Emissive_Dynamic_Materials::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupCurveFlicker \ +static_assert(alignof(BP_lightmaster_C_SetupCurveFlicker) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetupCurveFlicker"); \ +static_assert(sizeof(BP_lightmaster_C_SetupCurveFlicker) == 0x000010, "Wrong size on BP_lightmaster_C_SetupCurveFlicker"); \ +static_assert(offsetof(BP_lightmaster_C_SetupCurveFlicker, CallFunc_GetTimeRange_MinTime) == 0x000000, "Member 'BP_lightmaster_C_SetupCurveFlicker::CallFunc_GetTimeRange_MinTime' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupCurveFlicker, CallFunc_GetTimeRange_MaxTime) == 0x000004, "Member 'BP_lightmaster_C_SetupCurveFlicker::CallFunc_GetTimeRange_MaxTime' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupCurveFlicker, K2Node_VariableSet_FlickerCurveLength_ImplicitCast) == 0x000008, "Member 'BP_lightmaster_C_SetupCurveFlicker::K2Node_VariableSet_FlickerCurveLength_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupKeyLights \ +static_assert(alignof(BP_lightmaster_C_SetupKeyLights) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetupKeyLights"); \ +static_assert(sizeof(BP_lightmaster_C_SetupKeyLights) == 0x000090, "Wrong size on BP_lightmaster_C_SetupKeyLights"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, LightsFound_0) == 0x000000, "Member 'BP_lightmaster_C_SetupKeyLights::LightsFound_0' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_IsEmpty_ReturnValue) == 0x000001, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_lightmaster_C_SetupKeyLights::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_Length_ReturnValue_1) == 0x000010, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Less_IntInt_ReturnValue) == 0x000014, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, Temp_int_Loop_Counter_Variable_1) == 0x000018, "Member 'BP_lightmaster_C_SetupKeyLights::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Less_IntInt_ReturnValue_1) == 0x00001C, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Add_IntInt_ReturnValue_1) == 0x000020, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_lightmaster_C_SetupKeyLights::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, Temp_int_Array_Index_Variable_1) == 0x000028, "Member 'BP_lightmaster_C_SetupKeyLights::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_Get_Item_1) == 0x000038, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Array_Add_ReturnValue) == 0x000040, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_IsValid_ReturnValue) == 0x000044, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_GetObjectName_ReturnValue) == 0x000048, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_GetObjectName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_GetObjectName_ReturnValue_1) == 0x000058, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_GetObjectName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Contains_ReturnValue) == 0x000068, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_Contains_ReturnValue_1) == 0x000069, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_IsValid_ReturnValue_1) == 0x00006A, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000070, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_SetTemperature_NewTemperature_ImplicitCast) == 0x000080, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_SetTemperature_NewTemperature_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_SetTemperature_NewTemperature_ImplicitCast_1) == 0x000084, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_SetTemperature_NewTemperature_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_SetIntensity_NewIntensity_ImplicitCast) == 0x000088, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_SetIntensity_NewIntensity_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupKeyLights, CallFunc_SetIntensity_NewIntensity_ImplicitCast_1) == 0x00008C, "Member 'BP_lightmaster_C_SetupKeyLights::CallFunc_SetIntensity_NewIntensity_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupLightComponents \ +static_assert(alignof(BP_lightmaster_C_SetupLightComponents) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetupLightComponents"); \ +static_assert(sizeof(BP_lightmaster_C_SetupLightComponents) == 0x000058, "Wrong size on BP_lightmaster_C_SetupLightComponents"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_lightmaster_C_SetupLightComponents::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_lightmaster_C_SetupLightComponents::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Get_Average_Temperature_AverageTemperature) == 0x000010, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Get_Average_Temperature_AverageTemperature' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, K2Node_MakeStruct_ST_LightComponent) == 0x000028, "Member 'BP_lightmaster_C_SetupLightComponents::K2Node_MakeStruct_ST_LightComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, CallFunc_Array_AddUnique_ReturnValue) == 0x000044, "Member 'BP_lightmaster_C_SetupLightComponents::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, K2Node_MakeStruct_Temperature_7_B39D5EFB4004F426B4B27E9950FBA58B_ImplicitCast) == 0x000048, "Member 'BP_lightmaster_C_SetupLightComponents::K2Node_MakeStruct_Temperature_7_B39D5EFB4004F426B4B27E9950FBA58B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightComponents, K2Node_MakeStruct_Intensity_5_C178E8DA4EF2CA99E242DDA72743B9E8_ImplicitCast) == 0x000050, "Member 'BP_lightmaster_C_SetupLightComponents::K2Node_MakeStruct_Intensity_5_C178E8DA4EF2CA99E242DDA72743B9E8_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupLightDistances \ +static_assert(alignof(BP_lightmaster_C_SetupLightDistances) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetupLightDistances"); \ +static_assert(sizeof(BP_lightmaster_C_SetupLightDistances) == 0x000010, "Wrong size on BP_lightmaster_C_SetupLightDistances"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightDistances, LightComponent) == 0x000000, "Member 'BP_lightmaster_C_SetupLightDistances::LightComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightDistances, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_SetupLightDistances::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupLightDistances, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000009, "Member 'BP_lightmaster_C_SetupLightDistances::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupMeshComponents \ +static_assert(alignof(BP_lightmaster_C_SetupMeshComponents) == 0x000008, "Wrong alignment on BP_lightmaster_C_SetupMeshComponents"); \ +static_assert(sizeof(BP_lightmaster_C_SetupMeshComponents) == 0x0000B0, "Wrong size on BP_lightmaster_C_SetupMeshComponents"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, MeshComponentsFound_0) == 0x000000, "Member 'BP_lightmaster_C_SetupMeshComponents::MeshComponentsFound_0' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_lightmaster_C_SetupMeshComponents::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_lightmaster_C_SetupMeshComponents::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_lightmaster_C_SetupMeshComponents::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_GetMaterial_ReturnValue) == 0x000028, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_GetMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, K2Node_MakeStruct_ST_LightMesh) == 0x000038, "Member 'BP_lightmaster_C_SetupMeshComponents::K2Node_MakeStruct_ST_LightMesh' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_AddUnique_ReturnValue) == 0x000050, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_GetMaterialSlotNames_ReturnValue) == 0x000058, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_GetMaterialSlotNames_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000068, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, Temp_int_Loop_Counter_Variable_1) == 0x00006C, "Member 'BP_lightmaster_C_SetupMeshComponents::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Conv_NameToString_ReturnValue) == 0x000078, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Conv_NameToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Add_IntInt_ReturnValue_1) == 0x000088, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Contains_ReturnValue) == 0x00008C, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Array_Length_ReturnValue_1) == 0x000090, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000098, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupMeshComponents, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000A8, "Member 'BP_lightmaster_C_SetupMeshComponents::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetupOnOff \ +static_assert(alignof(BP_lightmaster_C_SetupOnOff) == 0x000001, "Wrong alignment on BP_lightmaster_C_SetupOnOff"); \ +static_assert(sizeof(BP_lightmaster_C_SetupOnOff) == 0x000004, "Wrong size on BP_lightmaster_C_SetupOnOff"); \ +static_assert(offsetof(BP_lightmaster_C_SetupOnOff, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'BP_lightmaster_C_SetupOnOff::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupOnOff, CallFunc_IsValid_ReturnValue_1) == 0x000001, "Member 'BP_lightmaster_C_SetupOnOff::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupOnOff, CallFunc_IsValid_ReturnValue_2) == 0x000002, "Member 'BP_lightmaster_C_SetupOnOff::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_SetupOnOff, CallFunc_IsValid_ReturnValue_3) == 0x000003, "Member 'BP_lightmaster_C_SetupOnOff::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_SetVFXVisibility \ +static_assert(alignof(BP_lightmaster_C_SetVFXVisibility) == 0x000001, "Wrong alignment on BP_lightmaster_C_SetVFXVisibility"); \ +static_assert(sizeof(BP_lightmaster_C_SetVFXVisibility) == 0x000001, "Wrong size on BP_lightmaster_C_SetVFXVisibility"); \ +static_assert(offsetof(BP_lightmaster_C_SetVFXVisibility, NewVFXState) == 0x000000, "Member 'BP_lightmaster_C_SetVFXVisibility::NewVFXState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightmaster_C_UserConstructionScript \ +static_assert(alignof(BP_lightmaster_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_lightmaster_C_UserConstructionScript"); \ +static_assert(sizeof(BP_lightmaster_C_UserConstructionScript) == 0x000002, "Wrong size on BP_lightmaster_C_UserConstructionScript"); \ +static_assert(offsetof(BP_lightmaster_C_UserConstructionScript, CallFunc_SetupKeyLights_LightsFound) == 0x000000, "Member 'BP_lightmaster_C_UserConstructionScript::CallFunc_SetupKeyLights_LightsFound' has a wrong offset!"); \ +static_assert(offsetof(BP_lightmaster_C_UserConstructionScript, CallFunc_SetupMeshComponents_MeshComponentsFound) == 0x000001, "Member 'BP_lightmaster_C_UserConstructionScript::CallFunc_SetupMeshComponents_MeshComponentsFound' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightmaster_C \ +static_assert(alignof(ABP_lightmaster_C) == 0x000008, "Wrong alignment on ABP_lightmaster_C"); \ +static_assert(sizeof(ABP_lightmaster_C) == 0x000788, "Wrong size on ABP_lightmaster_C"); \ +static_assert(offsetof(ABP_lightmaster_C, UberGraphFrame) == 0x0002E0, "Member 'ABP_lightmaster_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, HeraAudioMass) == 0x0002E8, "Member 'ABP_lightmaster_C::HeraAudioMass' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, VFX_Burst) == 0x0002F0, "Member 'ABP_lightmaster_C::VFX_Burst' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Lights) == 0x0002F8, "Member 'ABP_lightmaster_C::Lights' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Meshes) == 0x000300, "Member 'ABP_lightmaster_C::Meshes' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, VFX) == 0x000308, "Member 'ABP_lightmaster_C::VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Rotation_Root) == 0x000310, "Member 'ABP_lightmaster_C::Rotation_Root' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Root) == 0x000318, "Member 'ABP_lightmaster_C::Root' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_On_Timeline_LightOnFadeCurve_42A54EE241CB9EF97AB5139006A114B3) == 0x000320, "Member 'ABP_lightmaster_C::Fade_On_Timeline_LightOnFadeCurve_42A54EE241CB9EF97AB5139006A114B3' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_On_Timeline__Direction_42A54EE241CB9EF97AB5139006A114B3) == 0x000324, "Member 'ABP_lightmaster_C::Fade_On_Timeline__Direction_42A54EE241CB9EF97AB5139006A114B3' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_On_Timeline) == 0x000328, "Member 'ABP_lightmaster_C::Fade_On_Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_Off_Timeline_LightOffFadeCurve_1D9AD6604964EDDA3F8872895F730F6D) == 0x000330, "Member 'ABP_lightmaster_C::Fade_Off_Timeline_LightOffFadeCurve_1D9AD6604964EDDA3F8872895F730F6D' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_Off_Timeline__Direction_1D9AD6604964EDDA3F8872895F730F6D) == 0x000334, "Member 'ABP_lightmaster_C::Fade_Off_Timeline__Direction_1D9AD6604964EDDA3F8872895F730F6D' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Fade_Off_Timeline) == 0x000338, "Member 'ABP_lightmaster_C::Fade_Off_Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Timeline_Light_Intensity_F5DE28FC48A69D59670EAA8F4F16C210) == 0x000340, "Member 'ABP_lightmaster_C::Damage_Timeline_Light_Intensity_F5DE28FC48A69D59670EAA8F4F16C210' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Timeline_Shake_F5DE28FC48A69D59670EAA8F4F16C210) == 0x000344, "Member 'ABP_lightmaster_C::Damage_Timeline_Shake_F5DE28FC48A69D59670EAA8F4F16C210' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Timeline__Direction_F5DE28FC48A69D59670EAA8F4F16C210) == 0x000348, "Member 'ABP_lightmaster_C::Damage_Timeline__Direction_F5DE28FC48A69D59670EAA8F4F16C210' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Timeline) == 0x000350, "Member 'ABP_lightmaster_C::Damage_Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, UseLightmasterValues) == 0x000358, "Member 'ABP_lightmaster_C::UseLightmasterValues' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightsOn) == 0x000359, "Member 'ABP_lightmaster_C::LightsOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Emissive_Intensity) == 0x000360, "Member 'ABP_lightmaster_C::Emissive_Intensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, VFXOn) == 0x000368, "Member 'ABP_lightmaster_C::VFXOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Emissive_Tint) == 0x00036C, "Member 'ABP_lightmaster_C::Emissive_Tint' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EmissiveMaterialArray) == 0x000380, "Member 'ABP_lightmaster_C::EmissiveMaterialArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LampPostVarsArray) == 0x000390, "Member 'ABP_lightmaster_C::LampPostVarsArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Mesh_Undamaged_Rotation) == 0x0003A0, "Member 'ABP_lightmaster_C::Mesh_Undamaged_Rotation' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Random_Freq) == 0x0003B8, "Member 'ABP_lightmaster_C::Damage_Shake_Random_Freq' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Random_Intensity_X) == 0x0003C0, "Member 'ABP_lightmaster_C::Damage_Shake_Random_Intensity_X' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Random_Intensity_Y) == 0x0003C8, "Member 'ABP_lightmaster_C::Damage_Shake_Random_Intensity_Y' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Multiplier) == 0x0003D0, "Member 'ABP_lightmaster_C::Damage_Shake_Multiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Frequency) == 0x0003D8, "Member 'ABP_lightmaster_C::Damage_Shake_Frequency' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, BurstParticleArray_Niagara) == 0x0003E0, "Member 'ABP_lightmaster_C::BurstParticleArray_Niagara' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Shake_Duration__sec_) == 0x0003F0, "Member 'ABP_lightmaster_C::Damage_Shake_Duration__sec_' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Random_Shake) == 0x0003F8, "Member 'ABP_lightmaster_C::Damage_Random_Shake' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Enable_Damage) == 0x0003F9, "Member 'ABP_lightmaster_C::Enable_Damage' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Damage_Max_Amount) == 0x000400, "Member 'ABP_lightmaster_C::Damage_Max_Amount' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Decal_Material) == 0x000408, "Member 'ABP_lightmaster_C::Decal_Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, ValuesCached) == 0x000410, "Member 'ABP_lightmaster_C::ValuesCached' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightIntensityCache) == 0x000418, "Member 'ABP_lightmaster_C::LightIntensityCache' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightTemperatureCache) == 0x000468, "Member 'ABP_lightmaster_C::LightTemperatureCache' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Character) == 0x0004B8, "Member 'ABP_lightmaster_C::Character' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, PlayerMinimumTickDistance) == 0x0004C0, "Member 'ABP_lightmaster_C::PlayerMinimumTickDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, GameDeltaSeconds) == 0x0004C8, "Member 'ABP_lightmaster_C::GameDeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Current_Fade_Value) == 0x0004D0, "Member 'ABP_lightmaster_C::Current_Fade_Value' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Curve_FlickerOn) == 0x0004D8, "Member 'ABP_lightmaster_C::Curve_FlickerOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CurveFlickerInEditor) == 0x0004D9, "Member 'ABP_lightmaster_C::CurveFlickerInEditor' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerOnlyAffectsEmissive) == 0x0004DA, "Member 'ABP_lightmaster_C::FlickerOnlyAffectsEmissive' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Power_Fade) == 0x0004E0, "Member 'ABP_lightmaster_C::Power_Fade' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Power_Fade_Affects_Temperature) == 0x0004E8, "Member 'ABP_lightmaster_C::Power_Fade_Affects_Temperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Power_Fade_Temperature_Floor) == 0x0004F0, "Member 'ABP_lightmaster_C::Power_Fade_Temperature_Floor' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightComponents) == 0x0004F8, "Member 'ABP_lightmaster_C::LightComponents' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightComponentData) == 0x000508, "Member 'ABP_lightmaster_C::LightComponentData' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightsFound) == 0x000518, "Member 'ABP_lightmaster_C::LightsFound' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, MainLights) == 0x000520, "Member 'ABP_lightmaster_C::MainLights' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, BounceLight) == 0x000530, "Member 'ABP_lightmaster_C::BounceLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, MeshComponents) == 0x000538, "Member 'ABP_lightmaster_C::MeshComponents' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EmissiveLightMeshes) == 0x000548, "Member 'ABP_lightmaster_C::EmissiveLightMeshes' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, DynamicEmissiveMaterials) == 0x000558, "Member 'ABP_lightmaster_C::DynamicEmissiveMaterials' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, NoDynamicMaterials) == 0x000568, "Member 'ABP_lightmaster_C::NoDynamicMaterials' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, OriginalAverageLightTemperature) == 0x000570, "Member 'ABP_lightmaster_C::OriginalAverageLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CurrentLightTemperature) == 0x000578, "Member 'ABP_lightmaster_C::CurrentLightTemperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Main_Light_Intensity) == 0x000580, "Member 'ABP_lightmaster_C::Main_Light_Intensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Main_Light_Temperature) == 0x000588, "Member 'ABP_lightmaster_C::Main_Light_Temperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Main_Light_Attenuation_Radius) == 0x000590, "Member 'ABP_lightmaster_C::Main_Light_Attenuation_Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Bounce_Light_Intensity) == 0x000598, "Member 'ABP_lightmaster_C::Bounce_Light_Intensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Bounce_Light_Temperature) == 0x0005A0, "Member 'ABP_lightmaster_C::Bounce_Light_Temperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Bounce_Light__Attenuation_Radius) == 0x0005A8, "Member 'ABP_lightmaster_C::Bounce_Light__Attenuation_Radius' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, SumOfTemperatures) == 0x0005B0, "Member 'ABP_lightmaster_C::SumOfTemperatures' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, MeshComponentsFound) == 0x0005B8, "Member 'ABP_lightmaster_C::MeshComponentsFound' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, MaxDrawDistance) == 0x0005C0, "Member 'ABP_lightmaster_C::MaxDrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, MaxFadeDistance) == 0x0005C8, "Member 'ABP_lightmaster_C::MaxFadeDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, SetMeshEmissiveLightSource) == 0x0005D0, "Member 'ABP_lightmaster_C::SetMeshEmissiveLightSource' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightName) == 0x0005D8, "Member 'ABP_lightmaster_C::LightName' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerCurve) == 0x0005E8, "Member 'ABP_lightmaster_C::FlickerCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerCurveLength) == 0x0005F0, "Member 'ABP_lightmaster_C::FlickerCurveLength' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, OnFadeTimeline) == 0x0005F8, "Member 'ABP_lightmaster_C::OnFadeTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerSpeed) == 0x000600, "Member 'ABP_lightmaster_C::FlickerSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickeringAffectsTemperature) == 0x000608, "Member 'ABP_lightmaster_C::FlickeringAffectsTemperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightFadesOn) == 0x000609, "Member 'ABP_lightmaster_C::LightFadesOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, OnCurve) == 0x000610, "Member 'ABP_lightmaster_C::OnCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, OffFadeTimeline) == 0x000618, "Member 'ABP_lightmaster_C::OffFadeTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Emissive_Tint_Uses_Temperature) == 0x000620, "Member 'ABP_lightmaster_C::Emissive_Tint_Uses_Temperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightFadeOnMaxSpeed) == 0x000628, "Member 'ABP_lightmaster_C::LightFadeOnMaxSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightFadeOnMinSpeed) == 0x000630, "Member 'ABP_lightmaster_C::LightFadeOnMinSpeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightFadesOff) == 0x000638, "Member 'ABP_lightmaster_C::LightFadesOff' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, OffCurve) == 0x000640, "Member 'ABP_lightmaster_C::OffCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, GlobalFlickerValueMultiplier) == 0x000648, "Member 'ABP_lightmaster_C::GlobalFlickerValueMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, GlobalFlickerIntensityModifier) == 0x000650, "Member 'ABP_lightmaster_C::GlobalFlickerIntensityModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, bIsFlickerOn_0) == 0x000658, "Member 'ABP_lightmaster_C::bIsFlickerOn_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Audio_Light_On_Event) == 0x000660, "Member 'ABP_lightmaster_C::Audio_Light_On_Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Audio_Light_Off_Event) == 0x000668, "Member 'ABP_lightmaster_C::Audio_Light_Off_Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, ElapsedTime) == 0x000670, "Member 'ABP_lightmaster_C::ElapsedTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CurrentStormShakeIntensity) == 0x000678, "Member 'ABP_lightmaster_C::CurrentStormShakeIntensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerWhenEnergyActorNear) == 0x00067C, "Member 'ABP_lightmaster_C::FlickerWhenEnergyActorNear' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyActorInfluenceMinRadius) == 0x000680, "Member 'ABP_lightmaster_C::EnergyActorInfluenceMinRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyActorInfluenceMaxRadius) == 0x000688, "Member 'ABP_lightmaster_C::EnergyActorInfluenceMaxRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyAlteringActor) == 0x000690, "Member 'ABP_lightmaster_C::EnergyAlteringActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyAlteringActorExists) == 0x000698, "Member 'ABP_lightmaster_C::EnergyAlteringActorExists' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyActorIsNearby) == 0x000699, "Member 'ABP_lightmaster_C::EnergyActorIsNearby' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, FlickerOnStormShake) == 0x00069A, "Member 'ABP_lightmaster_C::FlickerOnStormShake' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EventFlickerDecayRate) == 0x0006A0, "Member 'ABP_lightmaster_C::EventFlickerDecayRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CurrentRigShakeIntensity) == 0x0006A8, "Member 'ABP_lightmaster_C::CurrentRigShakeIntensity' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, IsFlickering) == 0x0006AC, "Member 'ABP_lightmaster_C::IsFlickering' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, LightIsChangingState) == 0x0006AD, "Member 'ABP_lightmaster_C::LightIsChangingState' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CharacterFindTimer) == 0x0006B0, "Member 'ABP_lightmaster_C::CharacterFindTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Audio_Intensity_RTPC) == 0x0006B8, "Member 'ABP_lightmaster_C::Audio_Intensity_RTPC' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, VFXisOn) == 0x0006C0, "Member 'ABP_lightmaster_C::VFXisOn' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EnergyActorFindCounter) == 0x0006C4, "Member 'ABP_lightmaster_C::EnergyActorFindCounter' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CachedMaterialSlotNames) == 0x0006C8, "Member 'ABP_lightmaster_C::CachedMaterialSlotNames' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, CachedTemperature) == 0x0006D8, "Member 'ABP_lightmaster_C::CachedTemperature' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, UseEmissiveArray) == 0x000728, "Member 'ABP_lightmaster_C::UseEmissiveArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, EmissiveTintArray) == 0x000730, "Member 'ABP_lightmaster_C::EmissiveTintArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Hiden_in_Game) == 0x000780, "Member 'ABP_lightmaster_C::Hiden_in_Game' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightmaster_C, Light_Uses_Temperature) == 0x000781, "Member 'ABP_lightmaster_C::Light_Uses_Temperature' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk \ +static_assert(alignof(GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk) == 0x000004, "Wrong alignment on GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk"); \ +static_assert(sizeof(GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk) == 0x000004, "Wrong size on GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk"); \ +static_assert(offsetof(GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Talk_C_ExecuteUbergraph_GA_Patrol_Action_Talk::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Talk_C \ +static_assert(alignof(UGA_Patrol_Action_Talk_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Talk_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Talk_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Talk_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Talk_C, UberGraphFrame_GA_Patrol_Action_Talk_C) == 0x000690, "Member 'UGA_Patrol_Action_Talk_C::UberGraphFrame_GA_Patrol_Action_Talk_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature \ +static_assert(alignof(BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature, InHidden) == 0x000000, "Member 'BP_CodexItem_Base_C_BndEvt__BP_CodexItem_PersistenceComponentHidden_K2Node_ComponentBoundEvent_1_WrestlerHiddenDelegate__DelegateSignature::InHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_EvaluateMasqueradeState \ +static_assert(alignof(BP_CodexItem_Base_C_EvaluateMasqueradeState) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_EvaluateMasqueradeState"); \ +static_assert(sizeof(BP_CodexItem_Base_C_EvaluateMasqueradeState) == 0x000001, "Wrong size on BP_CodexItem_Base_C_EvaluateMasqueradeState"); \ +static_assert(offsetof(BP_CodexItem_Base_C_EvaluateMasqueradeState, NewState) == 0x000000, "Member 'BP_CodexItem_Base_C_EvaluateMasqueradeState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base \ +static_assert(alignof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base"); \ +static_assert(sizeof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base) == 0x000200, "Wrong size on BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, EntryPoint) == 0x000000, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_bool_True_if_break_was_hit_Variable) == 0x000018, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Array_Index_Variable_1) == 0x00001C, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Not_PreBool_ReturnValue) == 0x000020, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_bInVisible) == 0x000021, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_InDuration_1) == 0x000024, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_InDuration) == 0x000028, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_ComponentBoundEvent_InHidden) == 0x00002C, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_ComponentBoundEvent_InHidden' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Array_Index_Variable_2) == 0x000030, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_InInteractingActor) == 0x000038, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000040, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000058, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetXPComponent_ReturnValue) == 0x000060, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetXPComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000068, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_AddPointsForRegisteredEvent_ReturnValue) == 0x000069, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_AddPointsForRegisteredEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_IsPlayerFabien_Return) == 0x00006A, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_InItemState) == 0x00006B, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CustomEvent_IsHidden) == 0x00006C, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CustomEvent_IsHidden' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Not_PreBool_ReturnValue_1) == 0x00006D, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Not_PreBool_ReturnValue_2) == 0x00006E, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x00006F, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CreateDelegate_OutputDelegate) == 0x000070, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000080, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Get_Item) == 0x000090, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Length_ReturnValue) == 0x000098, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x0000A0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Get_Item_1) == 0x0000B0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Length_ReturnValue_1) == 0x0000B8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Less_IntInt_ReturnValue) == 0x0000BC, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CustomEvent_PrevState) == 0x0000BD, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CustomEvent_NewState_1) == 0x0000BE, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CustomEvent_NewState_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CustomEvent_NewState) == 0x0000BF, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_SwitchEnum_CmpSuccess) == 0x0000C0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000C4, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_int_Loop_Counter_Variable_2) == 0x0000D4, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetAllActorsOfClass_OutActors) == 0x0000D8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Get_Item_2) == 0x0000E8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Length_ReturnValue_2) == 0x0000F0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000F4, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_BooleanAND_ReturnValue) == 0x0000F5, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000F6, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000F8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetDistanceTo_ReturnValue) == 0x0000FC, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000100, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000128, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_Array_Contains_ReturnValue) == 0x000129, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000130, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetGameMode_ReturnValue) == 0x000138, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetMasqueradeState_ReturnValue) == 0x000140, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetComponentByClass_ReturnValue) == 0x000148, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_CustomEvent_ActivatedQuest) == 0x000150, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_CustomEvent_ActivatedQuest' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetGameMode_ReturnValue_1) == 0x000158, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetGameMode_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000160, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_Event_EndPlayReason) == 0x000168, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_Event_EndPlayReason' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetActiveQuestTag_ReturnValue) == 0x00016C, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetGameMode_ReturnValue_2) == 0x000178, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetGameMode_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_HasTag_ReturnValue) == 0x000180, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetComponentByClass_ReturnValue_2) == 0x000188, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetComponentByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_delegate_Variable) == 0x000190, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetItemState_ReturnValue) == 0x0001A0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetItemState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_ByteByte_ReturnValue_1) == 0x0001A1, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_NotEqual_ByteByte_ReturnValue_1) == 0x0001A2, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_NotEqual_ByteByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, Temp_object_Variable) == 0x0001A8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetGameMode_ReturnValue_3) == 0x0001B0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetGameMode_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetComponentByClass_ReturnValue_3) == 0x0001B8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetComponentByClass_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_IsValid_ReturnValue) == 0x0001C0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetActiveQuestTag_ReturnValue_1) == 0x0001C4, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetActiveQuestTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0001CC, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetPlayerState_ReturnValue) == 0x0001D0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0001D8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, K2Node_DynamicCast_bSuccess_1) == 0x0001E0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetProperty_ReturnValue) == 0x0001E4, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x0001EC, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetItemState_ReturnValue_1) == 0x0001ED, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetItemState_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_ByteByte_ReturnValue_2) == 0x0001EE, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_ByteByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_IsValid_ReturnValue_1) == 0x0001EF, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_GetItemState_ReturnValue_2) == 0x0001F0, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_GetItemState_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_EqualEqual_ByteByte_ReturnValue_3) == 0x0001F1, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_EqualEqual_ByteByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x0001F8, "Member 'BP_CodexItem_Base_C_ExecuteUbergraph_BP_CodexItem_Base::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetClueDataAsset \ +static_assert(alignof(BP_CodexItem_Base_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_CodexItem_Base_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetCodexTab \ +static_assert(alignof(BP_CodexItem_Base_C_GetCodexTab) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetCodexTab"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetCodexTab) == 0x000038, "Wrong size on BP_CodexItem_Base_C_GetCodexTab"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, NewParam) == 0x000000, "Member 'BP_CodexItem_Base_C_GetCodexTab::NewParam' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_CodexItem_Base_C_GetCodexTab::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, K2Node_DynamicCast_AsWrestler_Character) == 0x000010, "Member 'BP_CodexItem_Base_C_GetCodexTab::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_CodexItem_Base_C_GetCodexTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000020, "Member 'BP_CodexItem_Base_C_GetCodexTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, K2Node_DynamicCast_bSuccess_1) == 0x000028, "Member 'BP_CodexItem_Base_C_GetCodexTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, CallFunc_GetProperty_ReturnValue) == 0x00002C, "Member 'BP_CodexItem_Base_C_GetCodexTab::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCodexTab, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000034, "Member 'BP_CodexItem_Base_C_GetCodexTab::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetItemState \ +static_assert(alignof(BP_CodexItem_Base_C_GetItemState) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_GetItemState"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetItemState) == 0x000001, "Wrong size on BP_CodexItem_Base_C_GetItemState"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetMeshComponent \ +static_assert(alignof(BP_CodexItem_Base_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetMeshComponent"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetMeshComponent) == 0x000008, "Wrong size on BP_CodexItem_Base_C_GetMeshComponent"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_MasqueradeStateChanged \ +static_assert(alignof(BP_CodexItem_Base_C_MasqueradeStateChanged) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_MasqueradeStateChanged"); \ +static_assert(sizeof(BP_CodexItem_Base_C_MasqueradeStateChanged) == 0x000002, "Wrong size on BP_CodexItem_Base_C_MasqueradeStateChanged"); \ +static_assert(offsetof(BP_CodexItem_Base_C_MasqueradeStateChanged, PrevState) == 0x000000, "Member 'BP_CodexItem_Base_C_MasqueradeStateChanged::PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_MasqueradeStateChanged, NewState) == 0x000001, "Member 'BP_CodexItem_Base_C_MasqueradeStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_OnInteractionStarted \ +static_assert(alignof(BP_CodexItem_Base_C_OnInteractionStarted) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_OnInteractionStarted"); \ +static_assert(sizeof(BP_CodexItem_Base_C_OnInteractionStarted) == 0x000008, "Wrong size on BP_CodexItem_Base_C_OnInteractionStarted"); \ +static_assert(offsetof(BP_CodexItem_Base_C_OnInteractionStarted, InInteractingActor) == 0x000000, "Member 'BP_CodexItem_Base_C_OnInteractionStarted::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event \ +static_assert(alignof(BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event) == 0x000004, "Wrong alignment on BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event"); \ +static_assert(sizeof(BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event) == 0x000008, "Wrong size on BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event"); \ +static_assert(offsetof(BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event, ActivatedQuest) == 0x000000, "Member 'BP_CodexItem_Base_C_OnNewActiveQuestSetDelegate_Event::ActivatedQuest' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_ReceiveEndPlay \ +static_assert(alignof(BP_CodexItem_Base_C_ReceiveEndPlay) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_ReceiveEndPlay"); \ +static_assert(sizeof(BP_CodexItem_Base_C_ReceiveEndPlay) == 0x000001, "Wrong size on BP_CodexItem_Base_C_ReceiveEndPlay"); \ +static_assert(offsetof(BP_CodexItem_Base_C_ReceiveEndPlay, EndPlayReason) == 0x000000, "Member 'BP_CodexItem_Base_C_ReceiveEndPlay::EndPlayReason' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_SetHidden \ +static_assert(alignof(BP_CodexItem_Base_C_SetHidden) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_SetHidden"); \ +static_assert(sizeof(BP_CodexItem_Base_C_SetHidden) == 0x000001, "Wrong size on BP_CodexItem_Base_C_SetHidden"); \ +static_assert(offsetof(BP_CodexItem_Base_C_SetHidden, IsHidden) == 0x000000, "Member 'BP_CodexItem_Base_C_SetHidden::IsHidden' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_SetItemState \ +static_assert(alignof(BP_CodexItem_Base_C_SetItemState) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_SetItemState"); \ +static_assert(sizeof(BP_CodexItem_Base_C_SetItemState) == 0x000001, "Wrong size on BP_CodexItem_Base_C_SetItemState"); \ +static_assert(offsetof(BP_CodexItem_Base_C_SetItemState, InItemState) == 0x000000, "Member 'BP_CodexItem_Base_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_SetVisionVisibility \ +static_assert(alignof(BP_CodexItem_Base_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_CodexItem_Base_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_CodexItem_Base_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_CodexItem_Base_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_CodexItem_Base_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_CodexItem_Base_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_UnlockCodex \ +static_assert(alignof(BP_CodexItem_Base_C_UnlockCodex) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_UnlockCodex"); \ +static_assert(sizeof(BP_CodexItem_Base_C_UnlockCodex) == 0x000030, "Wrong size on BP_CodexItem_Base_C_UnlockCodex"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, Temp_int_Variable) == 0x000000, "Member 'BP_CodexItem_Base_C_UnlockCodex::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_GetProperty_ReturnValue) == 0x000004, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000008, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_GetCodexTab_NewParam) == 0x000020, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_GetCodexTab_NewParam' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UnlockCodex, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000028, "Member 'BP_CodexItem_Base_C_UnlockCodex::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_UserConstructionScript \ +static_assert(alignof(BP_CodexItem_Base_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_UserConstructionScript"); \ +static_assert(sizeof(BP_CodexItem_Base_C_UserConstructionScript) == 0x000128, "Wrong size on BP_CodexItem_Base_C_UserConstructionScript"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UserConstructionScript, CallFunc_GetComponentBounds_Origin) == 0x000000, "Member 'BP_CodexItem_Base_C_UserConstructionScript::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UserConstructionScript, CallFunc_GetComponentBounds_BoxExtent) == 0x000018, "Member 'BP_CodexItem_Base_C_UserConstructionScript::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UserConstructionScript, CallFunc_GetComponentBounds_SphereRadius) == 0x000030, "Member 'BP_CodexItem_Base_C_UserConstructionScript::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UserConstructionScript, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000038, "Member 'BP_CodexItem_Base_C_UserConstructionScript::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_CodexItem_Base_C_UserConstructionScript, CallFunc_SetStaticMesh_ReturnValue) == 0x000120, "Member 'BP_CodexItem_Base_C_UserConstructionScript::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_VisionFadeInBegin \ +static_assert(alignof(BP_CodexItem_Base_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_CodexItem_Base_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_CodexItem_Base_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_CodexItem_Base_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_CodexItem_Base_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_CodexItem_Base_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_VisionFadeOutBegin \ +static_assert(alignof(BP_CodexItem_Base_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_CodexItem_Base_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_CodexItem_Base_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_CodexItem_Base_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_CodexItem_Base_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_CodexItem_Base_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_CodexItem_Base_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_CodexItem_Base_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CodexItem_Base_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_CodexItem_Base_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_CodexItem_Base_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_CodexItem_Base_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_CodexItem_Base_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_CodexItem_Base_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_CodexItem_Base_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_Base_C \ +static_assert(alignof(ABP_CodexItem_Base_C) == 0x000008, "Wrong alignment on ABP_CodexItem_Base_C"); \ +static_assert(sizeof(ABP_CodexItem_Base_C) == 0x000438, "Wrong size on ABP_CodexItem_Base_C"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, UberGraphFrame) == 0x000390, "Member 'ABP_CodexItem_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Box) == 0x000398, "Member 'ABP_CodexItem_Base_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Billboard) == 0x0003A0, "Member 'ABP_CodexItem_Base_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, ReactiveCrosshairOverride) == 0x0003A8, "Member 'ABP_CodexItem_Base_C::ReactiveCrosshairOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, WrestlerCrosshairReact) == 0x0003B0, "Member 'ABP_CodexItem_Base_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, WrestlerInteractionPoint) == 0x0003B8, "Member 'ABP_CodexItem_Base_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Interaction) == 0x0003C0, "Member 'ABP_CodexItem_Base_C::Interaction' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, StaticMesh) == 0x0003C8, "Member 'ABP_CodexItem_Base_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Mesh) == 0x0003D0, "Member 'ABP_CodexItem_Base_C::Mesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Material) == 0x0003D8, "Member 'ABP_CodexItem_Base_C::Material' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, CentralInteractionPoint) == 0x0003E0, "Member 'ABP_CodexItem_Base_C::CentralInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, OverrideXPPolling) == 0x0003E1, "Member 'ABP_CodexItem_Base_C::OverrideXPPolling' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, ExistsInFabiensMissions) == 0x0003E2, "Member 'ABP_CodexItem_Base_C::ExistsInFabiensMissions' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, ExistsInPhyresMissions) == 0x0003E3, "Member 'ABP_CodexItem_Base_C::ExistsInPhyresMissions' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, CanInteracteMultipleTimes) == 0x0003E4, "Member 'ABP_CodexItem_Base_C::CanInteracteMultipleTimes' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, MissionTag) == 0x0003E8, "Member 'ABP_CodexItem_Base_C::MissionTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, QuestsToBeActiveIn) == 0x0003F0, "Member 'ABP_CodexItem_Base_C::QuestsToBeActiveIn' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, UseQuestArray) == 0x000410, "Member 'ABP_CodexItem_Base_C::UseQuestArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, PhyreCodexUnlockCounter) == 0x000418, "Member 'ABP_CodexItem_Base_C::PhyreCodexUnlockCounter' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Mute_Interact_Sound) == 0x000420, "Member 'ABP_CodexItem_Base_C::Mute_Interact_Sound' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, DLC_Content) == 0x000421, "Member 'ABP_CodexItem_Base_C::DLC_Content' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, AudioEvent) == 0x000428, "Member 'ABP_CodexItem_Base_C::AudioEvent' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, MasqueradeLock) == 0x000430, "Member 'ABP_CodexItem_Base_C::MasqueradeLock' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, ExistsInBennyMissions) == 0x000431, "Member 'ABP_CodexItem_Base_C::ExistsInBennyMissions' has a wrong offset!"); \ +static_assert(offsetof(ABP_CodexItem_Base_C, Keep_Active_During_DLC) == 0x000432, "Member 'ABP_CodexItem_Base_C::Keep_Active_During_DLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer \ +static_assert(alignof(GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer) == 0x000004, "Wrong alignment on GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer"); \ +static_assert(sizeof(GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer) == 0x000004, "Wrong size on GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer"); \ +static_assert(offsetof(GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Bouncer_C_ExecuteUbergraph_GA_Patrol_Action_Bouncer::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Bouncer_C \ +static_assert(alignof(UGA_Patrol_Action_Bouncer_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Bouncer_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Bouncer_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Bouncer_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Bouncer_C, UberGraphFrame_GA_Patrol_Action_Bouncer_C) == 0x000690, "Member 'UGA_Patrol_Action_Bouncer_C::UberGraphFrame_GA_Patrol_Action_Bouncer_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting \ +static_assert(alignof(GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting) == 0x000004, "Wrong alignment on GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting"); \ +static_assert(sizeof(GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting) == 0x000004, "Wrong size on GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting"); \ +static_assert(offsetof(GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_DrunkSitting_C_ExecuteUbergraph_GA_Patrol_Action_DrunkSitting::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_DrunkSitting_C \ +static_assert(alignof(UGA_Patrol_Action_DrunkSitting_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_DrunkSitting_C"); \ +static_assert(sizeof(UGA_Patrol_Action_DrunkSitting_C) == 0x000698, "Wrong size on UGA_Patrol_Action_DrunkSitting_C"); \ +static_assert(offsetof(UGA_Patrol_Action_DrunkSitting_C, UberGraphFrame_GA_Patrol_Action_DrunkSitting_C) == 0x000690, "Member 'UGA_Patrol_Action_DrunkSitting_C::UberGraphFrame_GA_Patrol_Action_DrunkSitting_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun \ +static_assert(alignof(GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun) == 0x000004, "Wrong alignment on GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun"); \ +static_assert(sizeof(GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun) == 0x000004, "Wrong size on GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun"); \ +static_assert(offsetof(GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Aim_Shotgun_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Shotgun::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Aim_Shotgun_C \ +static_assert(alignof(UGA_Patrol_Action_Aim_Shotgun_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Aim_Shotgun_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Aim_Shotgun_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Aim_Shotgun_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Aim_Shotgun_C, UberGraphFrame_GA_Patrol_Action_Aim_Shotgun_C) == 0x000690, "Member 'UGA_Patrol_Action_Aim_Shotgun_C::UberGraphFrame_GA_Patrol_Action_Aim_Shotgun_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround \ +static_assert(alignof(GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround) == 0x000004, "Wrong alignment on GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround"); \ +static_assert(sizeof(GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround) == 0x000004, "Wrong size on GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround"); \ +static_assert(offsetof(GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Search_PeekAround_C_ExecuteUbergraph_GA_Patrol_Action_Search_PeekAround::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Search_PeekAround_C \ +static_assert(alignof(UGA_Patrol_Action_Search_PeekAround_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Search_PeekAround_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Search_PeekAround_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Search_PeekAround_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Search_PeekAround_C, UberGraphFrame_GA_Patrol_Action_Search_PeekAround_C) == 0x000690, "Member 'UGA_Patrol_Action_Search_PeekAround_C::UberGraphFrame_GA_Patrol_Action_Search_PeekAround_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_MoTF_PoS_MrsThorn_C \ +static_assert(alignof(UPD_MoTF_PoS_MrsThorn_C) == 0x000008, "Wrong alignment on UPD_MoTF_PoS_MrsThorn_C"); \ +static_assert(sizeof(UPD_MoTF_PoS_MrsThorn_C) == 0x000058, "Wrong size on UPD_MoTF_PoS_MrsThorn_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01 \ +static_assert(alignof(GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01) == 0x000004, "Wrong alignment on GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01"); \ +static_assert(sizeof(GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01) == 0x000004, "Wrong size on GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01"); \ +static_assert(offsetof(GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Investigate_Front_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Front_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Investigate_Front_01_C \ +static_assert(alignof(UGA_Patrol_Action_Investigate_Front_01_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Investigate_Front_01_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Investigate_Front_01_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Investigate_Front_01_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Investigate_Front_01_C, UberGraphFrame_GA_Patrol_Action_Investigate_Front_01_C) == 0x000690, "Member 'UGA_Patrol_Action_Investigate_Front_01_C::UberGraphFrame_GA_Patrol_Action_Investigate_Front_01_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle \ +static_assert(alignof(GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle) == 0x000004, "Wrong alignment on GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle"); \ +static_assert(sizeof(GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle) == 0x000004, "Wrong size on GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle"); \ +static_assert(offsetof(GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Police_Idle_C_ExecuteUbergraph_GA_Patrol_Action_Police_Idle::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Police_Idle_C \ +static_assert(alignof(UGA_Patrol_Action_Police_Idle_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Police_Idle_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Police_Idle_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Police_Idle_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Police_Idle_C, UberGraphFrame_GA_Patrol_Action_Police_Idle_C) == 0x000690, "Member 'UGA_Patrol_Action_Police_Idle_C::UberGraphFrame_GA_Patrol_Action_Police_Idle_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01 \ +static_assert(alignof(GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01) == 0x000004, "Wrong alignment on GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01"); \ +static_assert(sizeof(GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01) == 0x000004, "Wrong size on GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01"); \ +static_assert(offsetof(GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_WallLearn_01_C_ExecuteUbergraph_GA_Patrol_Action_WallLearn_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_WallLearn_01_C \ +static_assert(alignof(UGA_Patrol_Action_WallLearn_01_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_WallLearn_01_C"); \ +static_assert(sizeof(UGA_Patrol_Action_WallLearn_01_C) == 0x000698, "Wrong size on UGA_Patrol_Action_WallLearn_01_C"); \ +static_assert(offsetof(UGA_Patrol_Action_WallLearn_01_C, UberGraphFrame_GA_Patrol_Action_WallLearn_01_C) == 0x000690, "Member 'UGA_Patrol_Action_WallLearn_01_C::UberGraphFrame_GA_Patrol_Action_WallLearn_01_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch \ +static_assert(alignof(GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch) == 0x000004, "Wrong alignment on GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch"); \ +static_assert(sizeof(GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch) == 0x000004, "Wrong size on GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch"); \ +static_assert(offsetof(GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Crouch_C_ExecuteUbergraph_GA_Patrol_Action_Crouch::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Crouch_C \ +static_assert(alignof(UGA_Patrol_Action_Crouch_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Crouch_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Crouch_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Crouch_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Crouch_C, UberGraphFrame_GA_Patrol_Action_Crouch_C) == 0x000690, "Member 'UGA_Patrol_Action_Crouch_C::UberGraphFrame_GA_Patrol_Action_Crouch_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol \ +static_assert(alignof(GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol) == 0x000004, "Wrong alignment on GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol"); \ +static_assert(sizeof(GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol) == 0x000004, "Wrong size on GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol"); \ +static_assert(offsetof(GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Aim_Pistol_C_ExecuteUbergraph_GA_Patrol_Action_Aim_Pistol::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Aim_Pistol_C \ +static_assert(alignof(UGA_Patrol_Action_Aim_Pistol_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Aim_Pistol_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Aim_Pistol_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Aim_Pistol_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Aim_Pistol_C, UberGraphFrame_GA_Patrol_Action_Aim_Pistol_C) == 0x000690, "Member 'UGA_Patrol_Action_Aim_Pistol_C::UberGraphFrame_GA_Patrol_Action_Aim_Pistol_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating \ +static_assert(alignof(GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating) == 0x000004, "Wrong alignment on GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating"); \ +static_assert(sizeof(GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating) == 0x000004, "Wrong size on GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating"); \ +static_assert(offsetof(GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Urinating_C_ExecuteUbergraph_GA_Patrol_Action_Urinating::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Urinating_C \ +static_assert(alignof(UGA_Patrol_Action_Urinating_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Urinating_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Urinating_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Urinating_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Urinating_C, UberGraphFrame_GA_Patrol_Action_Urinating_C) == 0x000690, "Member 'UGA_Patrol_Action_Urinating_C::UberGraphFrame_GA_Patrol_Action_Urinating_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround \ +static_assert(alignof(GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround) == 0x000004, "Wrong alignment on GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround"); \ +static_assert(sizeof(GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround) == 0x000004, "Wrong size on GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround"); \ +static_assert(offsetof(GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_KickGround_C_ExecuteUbergraph_GA_Patrol_Action_KickGround::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_KickGround_C \ +static_assert(alignof(UGA_Patrol_Action_KickGround_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_KickGround_C"); \ +static_assert(sizeof(UGA_Patrol_Action_KickGround_C) == 0x000698, "Wrong size on UGA_Patrol_Action_KickGround_C"); \ +static_assert(offsetof(UGA_Patrol_Action_KickGround_C, UberGraphFrame_GA_Patrol_Action_KickGround_C) == 0x000690, "Member 'UGA_Patrol_Action_KickGround_C::UberGraphFrame_GA_Patrol_Action_KickGround_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowHideHud_C_ExecuteUbergraph_ShowHideHud \ +static_assert(alignof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud) == 0x000008, "Wrong alignment on ShowHideHud_C_ExecuteUbergraph_ShowHideHud"); \ +static_assert(sizeof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud) == 0x000060, "Wrong size on ShowHideHud_C_ExecuteUbergraph_ShowHideHud"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, EntryPoint) == 0x000000, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000010, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000018, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000020, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetSlotWidget_ReturnValue) == 0x000028, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000038, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, K2Node_DynamicCast_AsWrestler_Character) == 0x000040, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, K2Node_Event_InAutomata) == 0x000050, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ExecuteUbergraph_ShowHideHud, K2Node_Event_InState) == 0x000058, "Member 'ShowHideHud_C_ExecuteUbergraph_ShowHideHud::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowHideHud_C_ReceiveExecute \ +static_assert(alignof(ShowHideHud_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowHideHud_C_ReceiveExecute"); \ +static_assert(sizeof(ShowHideHud_C_ReceiveExecute) == 0x000010, "Wrong size on ShowHideHud_C_ReceiveExecute"); \ +static_assert(offsetof(ShowHideHud_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowHideHud_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowHideHud_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowHideHud_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowHideHud_C \ +static_assert(alignof(UShowHideHud_C) == 0x000008, "Wrong alignment on UShowHideHud_C"); \ +static_assert(sizeof(UShowHideHud_C) == 0x000098, "Wrong size on UShowHideHud_C"); \ +static_assert(offsetof(UShowHideHud_C, UberGraphFrame) == 0x000088, "Member 'UShowHideHud_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowHideHud_C, HideHUD) == 0x000090, "Member 'UShowHideHud_C::HideHUD' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop \ +static_assert(alignof(GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop) == 0x000004, "Wrong alignment on GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop"); \ +static_assert(sizeof(GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop) == 0x000004, "Wrong size on GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop"); \ +static_assert(offsetof(GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Laptop_C_ExecuteUbergraph_GA_Patrol_Action_Laptop::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Laptop_C \ +static_assert(alignof(UGA_Patrol_Action_Laptop_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Laptop_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Laptop_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Laptop_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Laptop_C, UberGraphFrame_GA_Patrol_Action_Laptop_C) == 0x000690, "Member 'UGA_Patrol_Action_Laptop_C::UberGraphFrame_GA_Patrol_Action_Laptop_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise \ +static_assert(alignof(GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise) == 0x000004, "Wrong alignment on GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise"); \ +static_assert(sizeof(GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise) == 0x000004, "Wrong size on GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise"); \ +static_assert(offsetof(GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Strange_Noise_C_ExecuteUbergraph_GA_Patrol_Action_Strange_Noise::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Strange_Noise_C \ +static_assert(alignof(UGA_Patrol_Action_Strange_Noise_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Strange_Noise_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Strange_Noise_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Strange_Noise_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Strange_Noise_C, UberGraphFrame_GA_Patrol_Action_Strange_Noise_C) == 0x000690, "Member 'UGA_Patrol_Action_Strange_Noise_C::UberGraphFrame_GA_Patrol_Action_Strange_Noise_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_CursedVFX \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_CursedVFX) == 0x000010, "Wrong alignment on GA_Tr_BloodCurse_Target_C_CursedVFX"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_CursedVFX) == 0x0000F0, "Wrong size on GA_Tr_BloodCurse_Target_C_CursedVFX"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, EnemyBase) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::EnemyBase' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, ParentActor) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::ParentActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_GetComponentByClass_ReturnValue) == 0x000018, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000028, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000038, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, Temp_int_Array_Index_Variable) == 0x000050, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Array_Get_Item) == 0x000058, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_SpawnSystemAttached_ReturnValue_1) == 0x000060, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_SpawnSystemAttached_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Array_Add_ReturnValue) == 0x000068, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Array_Add_ReturnValue_1) == 0x00006C, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_MakeTransform_ReturnValue) == 0x000070, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000D0, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000D8, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_Array_Add_ReturnValue_2) == 0x0000E0, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_CursedVFX, CallFunc_K2_AttachToActor_ReturnValue) == 0x0000E4, "Member 'GA_Tr_BloodCurse_Target_C_CursedVFX::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD) == 0x0000B8, "Wrong size on GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD, EventTag) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD, EventData) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_EventReceived_35DC20B14218BEFD291DA38FE358D2BD::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F) == 0x0000B0, "Wrong size on GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F, Payload) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_EventReceived_E72CCC904DBFC1EAA99BD3A8DF3CA23F::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target) == 0x000010, "Wrong alignment on GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target) == 0x001010, "Wrong size on GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, EntryPoint) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitDelay_ReturnValue) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000028, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_TaskWaitDelay_ReturnValue) == 0x000038, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_1) == 0x000040, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_1) == 0x000050, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitDelay_ReturnValue_1) == 0x000058, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_2) == 0x000060, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Variable) == 0x000061, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_Loaded) == 0x000068, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_object_Variable) == 0x000070, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_2) == 0x000078, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitRealDelay_ReturnValue) == 0x000088, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000090, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_3) == 0x000098, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_3) == 0x00009C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitDelay_ReturnValue_2) == 0x0000B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_4) == 0x0000B8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_4) == 0x0000C8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitDelay_ReturnValue_3) == 0x0000D0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_SpawnObject_ReturnValue) == 0x0000D8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_SpawnObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_5) == 0x0000E0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Variable_1) == 0x0000E1, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_Payload) == 0x0000E8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_5) == 0x000198, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_struct_Variable) == 0x0001A8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000258, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_6) == 0x000260, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_6) == 0x000264, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitDelay_ReturnValue_4) == 0x000278, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Variable_2) == 0x000280, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_7) == 0x000281, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Variable_3) == 0x000282, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_7) == 0x000284, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitGameplayTagAdd_ReturnValue) == 0x000298, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitGameplayTagAdd_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_8) == 0x0002A0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_8) == 0x0002B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x0002B8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_9) == 0x0002C0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_9) == 0x0002D0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitGameplayTagAdd_ReturnValue_1) == 0x0002D8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitGameplayTagAdd_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Variable_4) == 0x0002E0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_10) == 0x0002E1, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_real_Variable) == 0x0002E4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_real_Variable_1) == 0x0002E8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventTag_2) == 0x0002EC, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventData_2) == 0x0002F8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetPlayerController_ReturnValue) == 0x0003A8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_11) == 0x0003B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_10) == 0x0003B4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetPlayerController_ReturnValue_1) == 0x0003C8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x0003D0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess) == 0x0003D8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_struct_Variable_1) == 0x0003DC, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetClan_ReturnValue) == 0x0003E8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_struct_Variable_2) == 0x0003F0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_11) == 0x0004A0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Array_Index_Variable) == 0x0004B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Loop_Counter_Variable) == 0x0004B4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Add_IntInt_ReturnValue) == 0x0004B8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Array_Index_Variable_1) == 0x0004BC, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_IsClosed_Variable) == 0x0004C0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_bool_Has_Been_Initd_Variable) == 0x0004C1, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_Event_bWasCancelled) == 0x0004C2, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x0004C8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventTag_3) == 0x0004D0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventData_3) == 0x0004D8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_WaitForAttributeChange_ReturnValue) == 0x000588, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_WaitForAttributeChange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_12) == 0x000590, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetMontage_ReturnValue) == 0x000598, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Loop_Counter_Variable_1) == 0x0005A0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_12) == 0x0005A4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Add_IntInt_ReturnValue_1) == 0x0005B4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Array_Index_Variable_2) == 0x0005B8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_13) == 0x0005BC, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0005C0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0005C8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0005D0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0005E0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, Temp_int_Loop_Counter_Variable_2) == 0x0005E4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_14) == 0x0005E8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Add_IntInt_ReturnValue_2) == 0x0005EC, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventTag_4) == 0x0005F0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventData_4) == 0x0005F8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue_1) == 0x0006A8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x0006B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x000788, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000790, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x0007B0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000810, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x000818, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_FinishSpawningActor_ReturnValue) == 0x000820, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsFalling_ReturnValue) == 0x000828, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsFalling_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_13) == 0x00082C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_15) == 0x00083C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventTag) == 0x000840, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventData) == 0x000848, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_16) == 0x0008F8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetOwningActorFromActorInfo_ReturnValue_2) == 0x000900, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetOwningActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000908, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_1) == 0x000918, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_14) == 0x00091C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_1) == 0x00092C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000930, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_2) == 0x000940, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_2) == 0x000941, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000948, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetComponentByClass_ReturnValue) == 0x000950, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000958, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000960, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000968, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000970, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000978, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000980, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetTransform_ReturnValue) == 0x000990, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x0009F0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1) == 0x0009F8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsWrestler_Mass_Character) == 0x000A00, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsWrestler_Mass_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_3) == 0x000A08, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_FinishSpawningActor_ReturnValue_1) == 0x000A10, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_FinishSpawningActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000A18, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000A20, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000A28, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000A40, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2) == 0x000A48, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_4) == 0x000A58, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_3) == 0x000A59, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000A60, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000A80, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetPlayerPawn_ReturnValue) == 0x000A88, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_MakeStruct_GameplayEventData) == 0x000A90, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Get_Item) == 0x000B40, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_17) == 0x000B48, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsActor) == 0x000B50, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_5) == 0x000B58, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsActor_Component) == 0x000B60, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsActor_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_6) == 0x000B68, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Length_ReturnValue) == 0x000B6C, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsNiagara_Particle_System_Component) == 0x000B70, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsNiagara_Particle_System_Component' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_7) == 0x000B78, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Less_IntInt_ReturnValue) == 0x000B79, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_MakeArray_Array) == 0x000B80, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000B90, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeGameplayTagContainerFromArray_ReturnValue) == 0x000B98, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeGameplayTagContainerFromArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_1) == 0x000BB8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_4) == 0x000BC8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x000BC9, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetPlayerController_ReturnValue_2) == 0x000BD0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventTag_1) == 0x000BD8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CustomEvent_EventData_1) == 0x000BE0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000C90, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_2) == 0x000C98, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_5) == 0x000CA8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000CB0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x000CB8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_15) == 0x000CC0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_3) == 0x000CD0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_6) == 0x000CE0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAttachedActors_OutActors) == 0x000CE8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Get_Item_1) == 0x000CF8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Length_ReturnValue_1) == 0x000D00, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsBP_Weapon) == 0x000D08, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsBP_Weapon' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_8) == 0x000D10, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Less_IntInt_ReturnValue_1) == 0x000D11, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetTransform_ReturnValue_1) == 0x000D20, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BreakTransform_Location) == 0x000D80, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BreakTransform_Rotation) == 0x000D98, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BreakTransform_Scale) == 0x000DB0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeTransform_ReturnValue) == 0x000DD0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_2) == 0x000E30, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetSkeletalMeshAsset_ReturnValue) == 0x000E38, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetSkeletalMeshAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_18) == 0x000E40, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_FinishSpawningActor_ReturnValue_2) == 0x000E48, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_FinishSpawningActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x000E50, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_MakeStruct_Struct_KnockBackParameters) == 0x000E58, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_MakeStruct_Struct_KnockBackParameters' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_16) == 0x000E98, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000EA8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_6) == 0x000EB0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetComponentByClass_ReturnValue_2) == 0x000EB8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetComponentByClass_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_19) == 0x000EC0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000EC8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Get_Item_2) == 0x000ED8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Array_Length_ReturnValue_2) == 0x000EE0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_Less_IntInt_ReturnValue_2) == 0x000EE4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAnimInstance_ReturnValue) == 0x000EE8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAnimInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsCharacter_ReturnValue_7) == 0x000EF0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsCharacter_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeLiteralByte_ReturnValue) == 0x000EF8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000F00, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000F18, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x000F20, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x000F28, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000F30, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3) == 0x000F38, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_DynamicCast_bSuccess_9) == 0x000F48, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000F50, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_7) == 0x000F58, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000F60, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_4) == 0x000F68, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_8) == 0x000F78, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x000F80, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_CreateDelegate_OutputDelegate_17) == 0x000F88, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_5) == 0x000F98, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_9) == 0x000FA8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000FB0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x000FD0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x000FD8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_self_CastInput_6) == 0x000FE0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_self_CastInput_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_HasMatchingGameplayTag_ReturnValue_10) == 0x000FF0, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_HasMatchingGameplayTag_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, K2Node_Select_Default) == 0x000FF4, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000FF8, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target, CallFunc_IsValid_ReturnValue_20) == 0x001000, "Member 'GA_Tr_BloodCurse_Target_C_ExecuteUbergraph_GA_Tr_BloodCurse_Target::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_GetRangeFalloff \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_GetRangeFalloff"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff) == 0x000078, "Wrong size on GA_Tr_BloodCurse_Target_C_GetRangeFalloff"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, Actor) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, FaloffAlpha) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::FaloffAlpha' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000028, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000038, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_Vector_Distance_ReturnValue) == 0x000050, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000058, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000060, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_FClamp_ReturnValue) == 0x000068, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_FClamp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_GetRangeFalloff, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000070, "Member 'GA_Tr_BloodCurse_Target_C_GetRangeFalloff::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_K2_OnEndAbility \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Tr_BloodCurse_Target_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Tr_BloodCurse_Target_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD) == 0x0000B8, "Wrong size on GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD, EventTag) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD, EventData) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_OnBlendOut_35DC20B14218BEFD291DA38FE358D2BD::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD) == 0x0000B8, "Wrong size on GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD, EventTag) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD, EventData) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_OnCancelled_35DC20B14218BEFD291DA38FE358D2BD::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD) == 0x0000B8, "Wrong size on GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD, EventTag) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD, EventData) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_OnCompleted_35DC20B14218BEFD291DA38FE358D2BD::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD) == 0x0000B8, "Wrong size on GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD, EventTag) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD, EventData) == 0x000008, "Member 'GA_Tr_BloodCurse_Target_C_OnInterrupted_35DC20B14218BEFD291DA38FE358D2BD::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA) == 0x000008, "Wrong size on GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA, Loaded) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_OnLoaded_7C40D7F0473C2244039F39935C09C3AA::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, Temp_bool_Variable) == 0x000071, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000078, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000080, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, K2Node_DynamicCast_bSuccess) == 0x000090, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000091, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000092, "Member 'GA_Tr_BloodCurse_Target_C_K2_CanActivateAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Tr_BloodCurse_Target_C \ +static_assert(alignof(UGA_Tr_BloodCurse_Target_C) == 0x000008, "Wrong alignment on UGA_Tr_BloodCurse_Target_C"); \ +static_assert(sizeof(UGA_Tr_BloodCurse_Target_C) == 0x000738, "Wrong size on UGA_Tr_BloodCurse_Target_C"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, UberGraphFrame) == 0x000668, "Member 'UGA_Tr_BloodCurse_Target_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Widget) == 0x000670, "Member 'UGA_Tr_BloodCurse_Target_C::Widget' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Victims) == 0x000678, "Member 'UGA_Tr_BloodCurse_Target_C::Victims' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Range) == 0x000688, "Member 'UGA_Tr_BloodCurse_Target_C::Range' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Max_Damage) == 0x000690, "Member 'UGA_Tr_BloodCurse_Target_C::Max_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Min_Damage) == 0x000698, "Member 'UGA_Tr_BloodCurse_Target_C::Min_Damage' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, MaxDamageRange) == 0x0006A0, "Member 'UGA_Tr_BloodCurse_Target_C::MaxDamageRange' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Actors_to_Ignore) == 0x0006A8, "Member 'UGA_Tr_BloodCurse_Target_C::Actors_to_Ignore' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Dead_Actor) == 0x0006B8, "Member 'UGA_Tr_BloodCurse_Target_C::Dead_Actor' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, BubblesBlood) == 0x0006C0, "Member 'UGA_Tr_BloodCurse_Target_C::BubblesBlood' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, CursedPointLight) == 0x0006C8, "Member 'UGA_Tr_BloodCurse_Target_C::CursedPointLight' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Array_Element) == 0x0006D0, "Member 'UGA_Tr_BloodCurse_Target_C::Array_Element' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, BloodSystem) == 0x0006D8, "Member 'UGA_Tr_BloodCurse_Target_C::BloodSystem' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, CurseSystem) == 0x0006E0, "Member 'UGA_Tr_BloodCurse_Target_C::CurseSystem' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, As_BP_Enemy_Character_Base) == 0x0006E8, "Member 'UGA_Tr_BloodCurse_Target_C::As_BP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Explosion) == 0x0006F0, "Member 'UGA_Tr_BloodCurse_Target_C::Explosion' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, ActiveTags) == 0x0006F8, "Member 'UGA_Tr_BloodCurse_Target_C::ActiveTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, ExplosionGCFxCache) == 0x000718, "Member 'UGA_Tr_BloodCurse_Target_C::ExplosionGCFxCache' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, SpawnedEffects) == 0x000720, "Member 'UGA_Tr_BloodCurse_Target_C::SpawnedEffects' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, TriggeredBySalvo) == 0x000730, "Member 'UGA_Tr_BloodCurse_Target_C::TriggeredBySalvo' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, InstigatedByPlayer) == 0x000731, "Member 'UGA_Tr_BloodCurse_Target_C::InstigatedByPlayer' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, NoDeathTagAdded) == 0x000732, "Member 'UGA_Tr_BloodCurse_Target_C::NoDeathTagAdded' has a wrong offset!"); \ +static_assert(offsetof(UGA_Tr_BloodCurse_Target_C, Boiled) == 0x000733, "Member 'UGA_Tr_BloodCurse_Target_C::Boiled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction \ +static_assert(alignof(GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction) == 0x000004, "Wrong alignment on GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction"); \ +static_assert(sizeof(GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction) == 0x000004, "Wrong size on GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction"); \ +static_assert(offsetof(GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Dead_Body_Reaction_C_ExecuteUbergraph_GA_Patrol_Action_Dead_Body_Reaction::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Dead_Body_Reaction_C \ +static_assert(alignof(UGA_Patrol_Action_Dead_Body_Reaction_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Dead_Body_Reaction_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Dead_Body_Reaction_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Dead_Body_Reaction_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Dead_Body_Reaction_C, UberGraphFrame_GA_Patrol_Action_Dead_Body_Reaction_C) == 0x000690, "Member 'UGA_Patrol_Action_Dead_Body_Reaction_C::UberGraphFrame_GA_Patrol_Action_Dead_Body_Reaction_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp \ +static_assert(alignof(GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp) == 0x000004, "Wrong alignment on GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp"); \ +static_assert(sizeof(GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp) == 0x000004, "Wrong size on GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp"); \ +static_assert(offsetof(GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_PeekUp_C_ExecuteUbergraph_GA_Patrol_Action_PeekUp::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_PeekUp_C \ +static_assert(alignof(UGA_Patrol_Action_PeekUp_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_PeekUp_C"); \ +static_assert(sizeof(UGA_Patrol_Action_PeekUp_C) == 0x000698, "Wrong size on UGA_Patrol_Action_PeekUp_C"); \ +static_assert(offsetof(UGA_Patrol_Action_PeekUp_C, UberGraphFrame_GA_Patrol_Action_PeekUp_C) == 0x000690, "Member 'UGA_Patrol_Action_PeekUp_C::UberGraphFrame_GA_Patrol_Action_PeekUp_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02 \ +static_assert(alignof(GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02) == 0x000004, "Wrong alignment on GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02"); \ +static_assert(sizeof(GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02) == 0x000004, "Wrong size on GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02"); \ +static_assert(offsetof(GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Investigate_Floor_02_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_02::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Investigate_Floor_02_C \ +static_assert(alignof(UGA_Patrol_Action_Investigate_Floor_02_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Investigate_Floor_02_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Investigate_Floor_02_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Investigate_Floor_02_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Investigate_Floor_02_C, UberGraphFrame_GA_Patrol_Action_Investigate_Floor_02_C) == 0x000690, "Member 'UGA_Patrol_Action_Investigate_Floor_02_C::UberGraphFrame_GA_Patrol_Action_Investigate_Floor_02_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious \ +static_assert(alignof(GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious) == 0x000004, "Wrong alignment on GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious"); \ +static_assert(sizeof(GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious) == 0x000004, "Wrong size on GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious"); \ +static_assert(offsetof(GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_React_Curious_C_ExecuteUbergraph_GA_Patrol_Action_React_Curious::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_React_Curious_C \ +static_assert(alignof(UGA_Patrol_Action_React_Curious_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_React_Curious_C"); \ +static_assert(sizeof(UGA_Patrol_Action_React_Curious_C) == 0x000698, "Wrong size on UGA_Patrol_Action_React_Curious_C"); \ +static_assert(offsetof(UGA_Patrol_Action_React_Curious_C, UberGraphFrame_GA_Patrol_Action_React_Curious_C) == 0x000690, "Member 'UGA_Patrol_Action_React_Curious_C::UberGraphFrame_GA_Patrol_Action_React_Curious_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround \ +static_assert(alignof(GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround) == 0x000004, "Wrong alignment on GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround"); \ +static_assert(sizeof(GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround) == 0x000004, "Wrong size on GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround"); \ +static_assert(offsetof(GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_LookAround_C_ExecuteUbergraph_GA_Patrol_Action_LookAround::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_LookAround_C \ +static_assert(alignof(UGA_Patrol_Action_LookAround_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_LookAround_C"); \ +static_assert(sizeof(UGA_Patrol_Action_LookAround_C) == 0x000698, "Wrong size on UGA_Patrol_Action_LookAround_C"); \ +static_assert(offsetof(UGA_Patrol_Action_LookAround_C, UberGraphFrame_GA_Patrol_Action_LookAround_C) == 0x000690, "Member 'UGA_Patrol_Action_LookAround_C::UberGraphFrame_GA_Patrol_Action_LookAround_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDefaultButtonFontStyle_C \ +static_assert(alignof(UDefaultButtonFontStyle_C) == 0x000010, "Wrong alignment on UDefaultButtonFontStyle_C"); \ +static_assert(sizeof(UDefaultButtonFontStyle_C) == 0x0001B0, "Wrong size on UDefaultButtonFontStyle_C"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Bun__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData, __NameProperty_16) == 0x000004, "Member 'ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData::__NameProperty_16' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData, __NameProperty_17) == 0x00000C, "Member 'ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData::__NameProperty_17' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData, __StructProperty_18) == 0x000018, "Member 'ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData::__StructProperty_18' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Phyre_Hair_Bun::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Bun_C_AnimGraph \ +static_assert(alignof(ABP_Phyre_Hair_Bun_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Bun_C_AnimGraph"); \ +static_assert(sizeof(ABP_Phyre_Hair_Bun_C_AnimGraph) == 0x000020, "Wrong size on ABP_Phyre_Hair_Bun_C_AnimGraph"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun_C_AnimGraph, InPose) == 0x000000, "Member 'ABP_Phyre_Hair_Bun_C_AnimGraph::InPose' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun_C_AnimGraph, AnimGraph_0) == 0x000010, "Member 'ABP_Phyre_Hair_Bun_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun \ +static_assert(alignof(ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun) == 0x000004, "Wrong alignment on ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun"); \ +static_assert(sizeof(ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun) == 0x000004, "Wrong size on ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun"); \ +static_assert(offsetof(ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun, EntryPoint) == 0x000000, "Member 'ABP_Phyre_Hair_Bun_C_ExecuteUbergraph_ABP_Phyre_Hair_Bun::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Phyre_Hair_Bun_C \ +static_assert(alignof(UABP_Phyre_Hair_Bun_C) == 0x000010, "Wrong alignment on UABP_Phyre_Hair_Bun_C"); \ +static_assert(sizeof(UABP_Phyre_Hair_Bun_C) == 0x000F30, "Wrong size on UABP_Phyre_Hair_Bun_C"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, UberGraphFrame) == 0x000350, "Member 'UABP_Phyre_Hair_Bun_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Phyre_Hair_Bun_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Phyre_Hair_Bun_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_LinkedInputPose) == 0x000388, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_CopyPoseFromMesh) == 0x000440, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_CopyPoseFromMesh' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_RigidBody) == 0x0005A0, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_RigidBody' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_LocalToComponentSpace) == 0x000EF0, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Bun_C, AnimGraphNode_ComponentToLocalSpace) == 0x000F10, "Member 'UABP_Phyre_Hair_Bun_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01 \ +static_assert(alignof(GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01) == 0x000004, "Wrong alignment on GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01"); \ +static_assert(sizeof(GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01) == 0x000004, "Wrong size on GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01"); \ +static_assert(offsetof(GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Investigate_Floor_01_C_ExecuteUbergraph_GA_Patrol_Action_Investigate_Floor_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Investigate_Floor_01_C \ +static_assert(alignof(UGA_Patrol_Action_Investigate_Floor_01_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Investigate_Floor_01_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Investigate_Floor_01_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Investigate_Floor_01_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Investigate_Floor_01_C, UberGraphFrame_GA_Patrol_Action_Investigate_Floor_01_C) == 0x000690, "Member 'UGA_Patrol_Action_Investigate_Floor_01_C::UberGraphFrame_GA_Patrol_Action_Investigate_Floor_01_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints \ +static_assert(alignof(GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints) == 0x000004, "Wrong alignment on GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints"); \ +static_assert(sizeof(GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints) == 0x000004, "Wrong size on GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints"); \ +static_assert(offsetof(GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Bus_Stop_Complaints_C_ExecuteUbergraph_GA_Patrol_Action_Bus_Stop_Complaints::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Bus_Stop_Complaints_C \ +static_assert(alignof(UGA_Patrol_Action_Bus_Stop_Complaints_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Bus_Stop_Complaints_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Bus_Stop_Complaints_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Bus_Stop_Complaints_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Bus_Stop_Complaints_C, UberGraphFrame_GA_Patrol_Action_Bus_Stop_Complaints_C) == 0x000690, "Member 'UGA_Patrol_Action_Bus_Stop_Complaints_C::UberGraphFrame_GA_Patrol_Action_Bus_Stop_Complaints_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked \ +static_assert(alignof(GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked) == 0x000004, "Wrong alignment on GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked"); \ +static_assert(sizeof(GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked) == 0x000004, "Wrong size on GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked"); \ +static_assert(offsetof(GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Idle_Panicked_C_ExecuteUbergraph_GA_Patrol_Action_Idle_Panicked::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Idle_Panicked_C \ +static_assert(alignof(UGA_Patrol_Action_Idle_Panicked_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Idle_Panicked_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Idle_Panicked_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Idle_Panicked_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Idle_Panicked_C, UberGraphFrame_GA_Patrol_Action_Idle_Panicked_C) == 0x000690, "Member 'UGA_Patrol_Action_Idle_Panicked_C::UberGraphFrame_GA_Patrol_Action_Idle_Panicked_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat \ +static_assert(alignof(GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat) == 0x000004, "Wrong alignment on GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat"); \ +static_assert(sizeof(GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat) == 0x000004, "Wrong size on GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat"); \ +static_assert(offsetof(GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Attacking_Idle_Bat_C_ExecuteUbergraph_GA_Patrol_Action_Attacking_Idle_Bat::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Attacking_Idle_Bat_C \ +static_assert(alignof(UGA_Patrol_Action_Attacking_Idle_Bat_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Attacking_Idle_Bat_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Attacking_Idle_Bat_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Attacking_Idle_Bat_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Attacking_Idle_Bat_C, UberGraphFrame_GA_Patrol_Action_Attacking_Idle_Bat_C) == 0x000690, "Member 'UGA_Patrol_Action_Attacking_Idle_Bat_C::UberGraphFrame_GA_Patrol_Action_Attacking_Idle_Bat_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_Debug_Simulation \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_Debug_Simulation) == 0x000001, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_Debug_Simulation"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_Debug_Simulation) == 0x000001, "Wrong size on BP_DynamicEnemySpawnSystem_C_Debug_Simulation"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Debug_Simulation, Has_Combat) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_Debug_Simulation::Has_Combat' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem) == 0x000008, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem) == 0x000410, "Wrong size on BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, EntryPoint) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_bool_IsClosed_Variable) == 0x000004, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable) == 0x000005, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_1) == 0x000006, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_2) == 0x000007, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Variable) == 0x000008, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_3) == 0x00000C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_4) == 0x00000D, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_5) == 0x00000E, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_6) == 0x00000F, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Variable_1) == 0x000010, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_7) == 0x000014, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_8) == 0x000015, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_9) == 0x000016, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_10) == 0x000017, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_11) == 0x000018, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_11' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_1) == 0x000028, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_1) == 0x00002C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_2) == 0x000030, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_1) == 0x000034, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_2) == 0x000038, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_2) == 0x00003C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Variable_2) == 0x000040, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_3) == 0x000044, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_3) == 0x000048, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_3) == 0x00004C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_12) == 0x000050, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_12' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_CreateDelegate_OutputDelegate) == 0x000054, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000068, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_4) == 0x000070, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_4) == 0x000074, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_4) == 0x000078, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x00007C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_5) == 0x000080, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_5) == 0x000084, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_5) == 0x000088, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_bool_Variable) == 0x00008C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Not_PreBool_ReturnValue) == 0x00008D, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_13) == 0x00008E, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_13' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item) == 0x000090, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue) == 0x000098, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_AddUnique_ReturnValue) == 0x00009C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetAllActorsOfClass_OutActors) == 0x0000A0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000B0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_1) == 0x0000C0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Is_Player_in_range_ReturnValue) == 0x0000C4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Is_Player_in_range_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_X) == 0x0000C8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_Y) == 0x0000D0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_Z) == 0x0000D8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_StringToText_ReturnValue) == 0x0000E0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_CustomEvent_Has_Combat) == 0x0000F8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_CustomEvent_Has_Combat' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_MakeStruct_FormatArgumentData) == 0x000100, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_MakeArray_Array) == 0x000150, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_14) == 0x000160, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_14' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Format_ReturnValue) == 0x000168, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_RandomIntegerInRange_ReturnValue) == 0x000180, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_RandomIntegerInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_byte_Variable_15) == 0x000184, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_byte_Variable_15' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_6) == 0x000188, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_RandomIntegerInRange_ReturnValue_1) == 0x00018C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_RandomIntegerInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_LinearColorToColor_ReturnValue) == 0x000190, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_LinearColorToColor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Variable_3) == 0x000194, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_1) == 0x000198, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_NotEqual_IntInt_ReturnValue) == 0x00019C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_NotEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_7) == 0x0001A0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_Value) == 0x0001A4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_ReturnValue) == 0x0001A5, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_ByteToInt_ReturnValue) == 0x0001A8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetGameMode_ReturnValue) == 0x0001B0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetComponentByClass_ReturnValue) == 0x0001B8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetActiveQuestTag_ReturnValue) == 0x0001C0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetActiveQuestTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_Value_1) == 0x0001C8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_ReturnValue_1) == 0x0001D0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetGameInstance_ReturnValue) == 0x0001D8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_6) == 0x0001E0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsValid_ReturnValue) == 0x0001E4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_6) == 0x0001E8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_LinearColorToColor_ReturnValue_1) == 0x0001EC, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_LinearColorToColor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue) == 0x0001F0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_8) == 0x0001F4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_Value_2) == 0x0001F8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_ReturnValue_2) == 0x0001F9, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_CustomEvent_LevelDataAsset) == 0x000200, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_CustomEvent_LevelDataAsset' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Array_Index_Variable_7) == 0x000208, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Array_Index_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_2) == 0x000210, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetGameMode_ReturnValue_1) == 0x000218, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetGameMode_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000220, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetActiveQuestTag_ReturnValue_1) == 0x000228, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetActiveQuestTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetDisplayName_ReturnValue) == 0x000230, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetDebugStringFromGameplayTag_ReturnValue) == 0x000240, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetDebugStringFromGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetDebugStringFromGameplayTag_ReturnValue_1) == 0x000250, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetDebugStringFromGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue) == 0x000260, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000270, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000280, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000290, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0002A0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0002B0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Concat_StrStr_ReturnValue_6) == 0x0002C0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetGameInstance_ReturnValue_1) == 0x0002D0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetGameInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsValid_ReturnValue_1) == 0x0002D8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetPlayerPawn_ReturnValue) == 0x0002E0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0002E8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_X_1) == 0x000300, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_Y_1) == 0x000308, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BreakVector_Z_1) == 0x000310, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsPlayerFabien_Return) == 0x000318, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000319, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_BooleanAND_ReturnValue) == 0x00031A, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsPlayerFabien_Return_1) == 0x00031B, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_GetProperty_ReturnValue) == 0x00031C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_MatchesTag_ReturnValue) == 0x000324, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_MatchesTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_CustomEvent_IsOutside) == 0x000325, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_CustomEvent_IsOutside' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_bool_Variable_1) == 0x000326, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000327, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_Select_Default) == 0x000328, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_3) == 0x000330, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_2) == 0x000338, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_1) == 0x00033C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_4) == 0x000340, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsValid_ReturnValue_2) == 0x000348, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_3) == 0x00034C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_2) == 0x000350, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_int_Loop_Counter_Variable_7) == 0x000354, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_int_Loop_Counter_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000358, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_3) == 0x000378, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Add_IntInt_ReturnValue_9) == 0x00037C, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Add_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000380, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0003A0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, Temp_bool_Has_Been_Initd_Variable) == 0x0003A1, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_5) == 0x0003A8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_6) == 0x0003B0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_4) == 0x0003B8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_IsValid_ReturnValue_3) == 0x0003BC, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_4) == 0x0003BD, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x0003BE, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_5) == 0x0003C0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_5) == 0x0003C4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_RemoveItem_ReturnValue) == 0x0003C5, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_7) == 0x0003C8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_Value_3) == 0x0003CC, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_ReturnValue_3) == 0x0003CD, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_Select_Default_1) == 0x0003CE, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_ByteToInt_ReturnValue_1) == 0x0003D0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_ByteToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0003D4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_Select_Default_2) == 0x0003D5, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x0003D6, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_8) == 0x0003D8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_6) == 0x0003E0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_6) == 0x0003E4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_RemoveItem_ReturnValue_1) == 0x0003E5, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_RemoveItem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_9) == 0x0003E8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_9' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_Value_4) == 0x0003EC, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_Value_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Map_Find_ReturnValue_4) == 0x0003ED, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Map_Find_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_Select_Default_3) == 0x0003EE, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Conv_ByteToInt_ReturnValue_2) == 0x0003F0, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Conv_ByteToInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x0003F4, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, K2Node_Select_Default_4) == 0x0003F5, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_EqualEqual_IntInt_ReturnValue_3) == 0x0003F6, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_EqualEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Get_Item_10) == 0x0003F8, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Get_Item_10' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Array_Length_ReturnValue_7) == 0x000400, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_Less_IntInt_ReturnValue_7) == 0x000404, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem, CallFunc_SetWorldSize_Value_ImplicitCast) == 0x000408, "Member 'BP_DynamicEnemySpawnSystem_C_ExecuteUbergraph_BP_DynamicEnemySpawnSystem::CallFunc_SetWorldSize_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_ForceLoadConfig \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_ForceLoadConfig) == 0x000008, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_ForceLoadConfig"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_ForceLoadConfig) == 0x000008, "Wrong size on BP_DynamicEnemySpawnSystem_C_ForceLoadConfig"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_ForceLoadConfig, LevelDataAsset_0) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_ForceLoadConfig::LevelDataAsset_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_Is_Player_in_range \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range) == 0x000008, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_Is_Player_in_range"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range) == 0x000048, "Wrong size on BP_DynamicEnemySpawnSystem_C_Is_Player_in_range"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, Volume) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::Volume' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, ReturnValue) == 0x000008, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, CallFunc_GetPlayerPawn_ReturnValue) == 0x000010, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000018, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, CallFunc_Vector_Distance_ReturnValue) == 0x000038, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_Is_Player_in_range, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_DynamicEnemySpawnSystem_C_Is_Player_in_range::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_IsOutside \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_IsOutside) == 0x000001, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_IsOutside"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_IsOutside) == 0x000001, "Wrong size on BP_DynamicEnemySpawnSystem_C_IsOutside"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_IsOutside, IsOutside_0) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_IsOutside::IsOutside_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions) == 0x000008, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions) == 0x000290, "Wrong size on BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_1) == 0x000008, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_2) == 0x00000C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_IntInt_ReturnValue_1) == 0x000010, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_3) == 0x000014, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_IntInt_ReturnValue_2) == 0x000018, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue) == 0x00001C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Subtract_IntInt_ReturnValue) == 0x000020, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Add_ReturnValue) == 0x000024, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue_1) == 0x000028, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue_2) == 0x00002C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue_3) == 0x000034, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_4) == 0x000038, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue_4) == 0x00003C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Greater_IntInt_ReturnValue) == 0x000040, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_IntInt_ReturnValue_3) == 0x000044, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_MakeRandomStream_ReturnValue) == 0x000048, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_MakeRandomStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_5) == 0x000050, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Add_ReturnValue_1) == 0x000054, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Add_ReturnValue_2) == 0x000058, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_6) == 0x00005C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_7) == 0x000060, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_IntInt_ReturnValue_4) == 0x000064, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Add_ReturnValue_3) == 0x000068, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Add_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, Temp_int_Variable_8) == 0x00006C, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::Temp_int_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Length_ReturnValue_5) == 0x000070, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Array_Add_ReturnValue_4) == 0x000074, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Array_Add_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000078, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000088, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x000090, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x000098, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x0000A0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x0000A8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0000B8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Round_ReturnValue) == 0x0000C0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Round_ReturnValue_1) == 0x0000C4, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Round_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Conv_IntToInt64_ReturnValue) == 0x0000C8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Conv_IntToInt64_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Conv_IntToInt64_ReturnValue_1) == 0x0000D0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Conv_IntToInt64_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, K2Node_MakeStruct_FormatArgumentData) == 0x0000D8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, K2Node_MakeStruct_FormatArgumentData_1) == 0x000128, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000178, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_LessEqual_IntInt_ReturnValue_1) == 0x000179, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_LessEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Divide_DoubleDouble_ReturnValue_3) == 0x000180, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Divide_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Divide_DoubleDouble_ReturnValue_4) == 0x000188, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Divide_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000190, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000198, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Round_ReturnValue_2) == 0x0001A0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Round_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Round_ReturnValue_3) == 0x0001A4, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Round_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Conv_IntToInt64_ReturnValue_2) == 0x0001A8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Conv_IntToInt64_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Conv_IntToInt64_ReturnValue_3) == 0x0001B0, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Conv_IntToInt64_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, K2Node_MakeStruct_FormatArgumentData_2) == 0x0001B8, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, K2Node_MakeStruct_FormatArgumentData_3) == 0x000208, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_LessEqual_IntInt_ReturnValue_2) == 0x000258, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_LessEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, K2Node_MakeArray_Array) == 0x000260, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_Format_ReturnValue) == 0x000270, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions, CallFunc_LessEqual_IntInt_ReturnValue_3) == 0x000288, "Member 'BP_DynamicEnemySpawnSystem_C_SetUpCombatTypeProportions::CallFunc_LessEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DynamicEnemySpawnSystem_C_UserConstructionScript \ +static_assert(alignof(BP_DynamicEnemySpawnSystem_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_DynamicEnemySpawnSystem_C_UserConstructionScript"); \ +static_assert(sizeof(BP_DynamicEnemySpawnSystem_C_UserConstructionScript) == 0x000010, "Wrong size on BP_DynamicEnemySpawnSystem_C_UserConstructionScript"); \ +static_assert(offsetof(BP_DynamicEnemySpawnSystem_C_UserConstructionScript, CallFunc_GetAllActorsOfClass_OutActors) == 0x000000, "Member 'BP_DynamicEnemySpawnSystem_C_UserConstructionScript::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_DynamicEnemySpawnSystem_C \ +static_assert(alignof(ABP_DynamicEnemySpawnSystem_C) == 0x000008, "Wrong alignment on ABP_DynamicEnemySpawnSystem_C"); \ +static_assert(sizeof(ABP_DynamicEnemySpawnSystem_C) == 0x000380, "Wrong size on ABP_DynamicEnemySpawnSystem_C"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, UberGraphFrame) == 0x000298, "Member 'ABP_DynamicEnemySpawnSystem_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_DynamicEnemySpawnSystem_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Spawn_Distance) == 0x0002A8, "Member 'ABP_DynamicEnemySpawnSystem_C::Spawn_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, DespawnDistance) == 0x0002B0, "Member 'ABP_DynamicEnemySpawnSystem_C::DespawnDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, SpawnVolumes) == 0x0002B8, "Member 'ABP_DynamicEnemySpawnSystem_C::SpawnVolumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, ActiveSpawnVolumes) == 0x0002C8, "Member 'ABP_DynamicEnemySpawnSystem_C::ActiveSpawnVolumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, CurrentSpawnVolume) == 0x0002D8, "Member 'ABP_DynamicEnemySpawnSystem_C::CurrentSpawnVolume' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Random_Stream) == 0x0002E0, "Member 'ABP_DynamicEnemySpawnSystem_C::Random_Stream' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, EncountersSpawned) == 0x0002E8, "Member 'ABP_DynamicEnemySpawnSystem_C::EncountersSpawned' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, TestDistanceTimer) == 0x0002F0, "Member 'ABP_DynamicEnemySpawnSystem_C::TestDistanceTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Simulation) == 0x0002F8, "Member 'ABP_DynamicEnemySpawnSystem_C::Simulation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, RadomiseSeedOnBeginPlay) == 0x0002F9, "Member 'ABP_DynamicEnemySpawnSystem_C::RadomiseSeedOnBeginPlay' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, LocalSeed) == 0x0002FC, "Member 'ABP_DynamicEnemySpawnSystem_C::LocalSeed' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, IgnoreMaxEncountersToSpawn) == 0x000300, "Member 'ABP_DynamicEnemySpawnSystem_C::IgnoreMaxEncountersToSpawn' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, FrozenSpawnVolumes) == 0x000308, "Member 'ABP_DynamicEnemySpawnSystem_C::FrozenSpawnVolumes' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, FreezeDistantEnemies) == 0x000318, "Member 'ABP_DynamicEnemySpawnSystem_C::FreezeDistantEnemies' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, LevelDataAsset) == 0x000320, "Member 'ABP_DynamicEnemySpawnSystem_C::LevelDataAsset' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, EncounterTypeIndexes) == 0x000328, "Member 'ABP_DynamicEnemySpawnSystem_C::EncounterTypeIndexes' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, EncounterType) == 0x000338, "Member 'ABP_DynamicEnemySpawnSystem_C::EncounterType' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Debug_font_size) == 0x000340, "Member 'ABP_DynamicEnemySpawnSystem_C::Debug_font_size' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, VolumesDebug) == 0x000348, "Member 'ABP_DynamicEnemySpawnSystem_C::VolumesDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Quest_map_data_asset) == 0x000360, "Member 'ABP_DynamicEnemySpawnSystem_C::Quest_map_data_asset' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, DebugUseDefaultConfig) == 0x000368, "Member 'ABP_DynamicEnemySpawnSystem_C::DebugUseDefaultConfig' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, QuestDebug) == 0x000369, "Member 'ABP_DynamicEnemySpawnSystem_C::QuestDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, IsQuestDataFound) == 0x00036A, "Member 'ABP_DynamicEnemySpawnSystem_C::IsQuestDataFound' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, IsSetup) == 0x00036B, "Member 'ABP_DynamicEnemySpawnSystem_C::IsSetup' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, PlayerLocation) == 0x000370, "Member 'ABP_DynamicEnemySpawnSystem_C::PlayerLocation' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicEnemySpawnSystem_C, Is_Outside) == 0x000378, "Member 'ABP_DynamicEnemySpawnSystem_C::Is_Outside' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight \ +static_assert(alignof(GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight) == 0x000004, "Wrong alignment on GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight"); \ +static_assert(sizeof(GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight) == 0x000004, "Wrong size on GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight"); \ +static_assert(offsetof(GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_ReadyToFight_C_ExecuteUbergraph_GA_Patrol_Action_ReadyToFight::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_ReadyToFight_C \ +static_assert(alignof(UGA_Patrol_Action_ReadyToFight_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_ReadyToFight_C"); \ +static_assert(sizeof(UGA_Patrol_Action_ReadyToFight_C) == 0x000698, "Wrong size on UGA_Patrol_Action_ReadyToFight_C"); \ +static_assert(offsetof(UGA_Patrol_Action_ReadyToFight_C, UberGraphFrame_GA_Patrol_Action_ReadyToFight_C) == 0x000690, "Member 'UGA_Patrol_Action_ReadyToFight_C::UberGraphFrame_GA_Patrol_Action_ReadyToFight_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking \ +static_assert(alignof(GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking) == 0x000004, "Wrong alignment on GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking"); \ +static_assert(sizeof(GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking) == 0x000004, "Wrong size on GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking"); \ +static_assert(offsetof(GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Female_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Female_Drinking::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Female_Drinking_C \ +static_assert(alignof(UGA_Patrol_Action_Female_Drinking_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Female_Drinking_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Female_Drinking_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Female_Drinking_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Female_Drinking_C, UberGraphFrame_GA_Patrol_Action_Female_Drinking_C) == 0x000690, "Member 'UGA_Patrol_Action_Female_Drinking_C::UberGraphFrame_GA_Patrol_Action_Female_Drinking_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking \ +static_assert(alignof(GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking) == 0x000004, "Wrong alignment on GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking"); \ +static_assert(sizeof(GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking) == 0x000004, "Wrong size on GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking"); \ +static_assert(offsetof(GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Drinking_C_ExecuteUbergraph_GA_Patrol_Action_Drinking::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Drinking_C \ +static_assert(alignof(UGA_Patrol_Action_Drinking_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Drinking_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Drinking_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Drinking_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Drinking_C, UberGraphFrame_GA_Patrol_Action_Drinking_C) == 0x000690, "Member 'UGA_Patrol_Action_Drinking_C::UberGraphFrame_GA_Patrol_Action_Drinking_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone \ +static_assert(alignof(GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone) == 0x000004, "Wrong alignment on GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone"); \ +static_assert(sizeof(GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone) == 0x000004, "Wrong size on GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone"); \ +static_assert(offsetof(GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_On_Phone_C_ExecuteUbergraph_GA_Patrol_Action_On_Phone::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_On_Phone_C \ +static_assert(alignof(UGA_Patrol_Action_On_Phone_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_On_Phone_C"); \ +static_assert(sizeof(UGA_Patrol_Action_On_Phone_C) == 0x000698, "Wrong size on UGA_Patrol_Action_On_Phone_C"); \ +static_assert(offsetof(UGA_Patrol_Action_On_Phone_C, UberGraphFrame_GA_Patrol_Action_On_Phone_C) == 0x000690, "Member 'UGA_Patrol_Action_On_Phone_C::UberGraphFrame_GA_Patrol_Action_On_Phone_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM \ +static_assert(alignof(GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM) == 0x000004, "Wrong alignment on GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM"); \ +static_assert(sizeof(GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM) == 0x000004, "Wrong size on GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM"); \ +static_assert(offsetof(GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Angry_At_ATM_C_ExecuteUbergraph_GA_Patrol_Action_Angry_At_ATM::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Angry_At_ATM_C \ +static_assert(alignof(UGA_Patrol_Action_Angry_At_ATM_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Angry_At_ATM_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Angry_At_ATM_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Angry_At_ATM_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Angry_At_ATM_C, UberGraphFrame_GA_Patrol_Action_Angry_At_ATM_C) == 0x000690, "Member 'UGA_Patrol_Action_Angry_At_ATM_C::UberGraphFrame_GA_Patrol_Action_Angry_At_ATM_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02 \ +static_assert(alignof(BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02) == 0x000008, "Wrong alignment on BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02"); \ +static_assert(sizeof(BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02) == 0x000010, "Wrong size on BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02"); \ +static_assert(offsetof(BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02, EntryPoint) == 0x000000, "Member 'BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000008, "Member 'BP_ClubLight_02_C_ExecuteUbergraph_BP_ClubLight_02::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ClubLight_02_C_UserConstructionScript \ +static_assert(alignof(BP_ClubLight_02_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_ClubLight_02_C_UserConstructionScript"); \ +static_assert(sizeof(BP_ClubLight_02_C_UserConstructionScript) == 0x000008, "Wrong size on BP_ClubLight_02_C_UserConstructionScript"); \ +static_assert(offsetof(BP_ClubLight_02_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000000, "Member 'BP_ClubLight_02_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ClubLight_02_C \ +static_assert(alignof(ABP_ClubLight_02_C) == 0x000008, "Wrong alignment on ABP_ClubLight_02_C"); \ +static_assert(sizeof(ABP_ClubLight_02_C) == 0x0002F0, "Wrong size on ABP_ClubLight_02_C"); \ +static_assert(offsetof(ABP_ClubLight_02_C, UberGraphFrame) == 0x000298, "Member 'ABP_ClubLight_02_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, SM_lamp_up3c) == 0x0002A0, "Member 'ABP_ClubLight_02_C::SM_lamp_up3c' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, S_EV_SimpleLightBeam_01) == 0x0002A8, "Member 'ABP_ClubLight_02_C::S_EV_SimpleLightBeam_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, SpotLight) == 0x0002B0, "Member 'ABP_ClubLight_02_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, DefaultSceneRoot) == 0x0002B8, "Member 'ABP_ClubLight_02_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, LightColour) == 0x0002C0, "Member 'ABP_ClubLight_02_C::LightColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, TopColour) == 0x0002D0, "Member 'ABP_ClubLight_02_C::TopColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_02_C, BottomColour) == 0x0002E0, "Member 'ABP_ClubLight_02_C::BottomColour' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Heavy_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Heavy_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Heavy_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Heavy_C) == 0x0007B8, "Wrong size on UGA_EnemyReact_Hit_Heavy_C"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_BlockBroken_C \ +static_assert(alignof(UGA_EnemyReact_Hit_BlockBroken_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_BlockBroken_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_BlockBroken_C) == 0x0007B8, "Wrong size on UGA_EnemyReact_Hit_BlockBroken_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking \ +static_assert(alignof(GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking) == 0x000004, "Wrong alignment on GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking"); \ +static_assert(sizeof(GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking) == 0x000004, "Wrong size on GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking"); \ +static_assert(offsetof(GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Kicking_C_ExecuteUbergraph_GA_Patrol_Action_Kicking::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Kicking_C \ +static_assert(alignof(UGA_Patrol_Action_Kicking_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Kicking_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Kicking_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Kicking_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Kicking_C, UberGraphFrame_GA_Patrol_Action_Kicking_C) == 0x000690, "Member 'UGA_Patrol_Action_Kicking_C::UberGraphFrame_GA_Patrol_Action_Kicking_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup \ +static_assert(alignof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup) == 0x0001C0, "Wrong size on GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_GetMontage_ReturnValue) == 0x000008, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_CreatePlayMontageAndWaitProxy_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_IsValid_ReturnValue) == 0x000028, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_1) == 0x00002C, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_2) == 0x00003C, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_3) == 0x00004C, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000060, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_TaskWaitDelay_ReturnValue) == 0x000070, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_4) == 0x000078, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_IsValid_ReturnValue_1) == 0x000088, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_5) == 0x00008C, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_Event_bWasCancelled) == 0x00009C, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_Event_EventData) == 0x0000A0, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, K2Node_CreateDelegate_OutputDelegate_6) == 0x000150, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000160, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000168, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000188, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000190, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000198, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_ApplyRootMotionMoveToForce_ReturnValue) == 0x0001B0, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_ApplyRootMotionMoveToForce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup, CallFunc_IsValid_ReturnValue_2) == 0x0001B8, "Member 'GA_EnemyReact_Knocked_Getup_C_ExecuteUbergraph_GA_EnemyReact_Knocked_Getup::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Knocked_Getup_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyReact_Knocked_Getup_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Knocked_Getup_C \ +static_assert(alignof(UGA_EnemyReact_Knocked_Getup_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Knocked_Getup_C"); \ +static_assert(sizeof(UGA_EnemyReact_Knocked_Getup_C) == 0x000698, "Wrong size on UGA_EnemyReact_Knocked_Getup_C"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_Getup_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyReact_Knocked_Getup_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_Getup_C, KnockBackVertical) == 0x000670, "Member 'UGA_EnemyReact_Knocked_Getup_C::KnockBackVertical' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_Getup_C, KnockBackHorizontal) == 0x000678, "Member 'UGA_EnemyReact_Knocked_Getup_C::KnockBackHorizontal' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Knocked_Getup_C, Direction) == 0x000680, "Member 'UGA_EnemyReact_Knocked_Getup_C::Direction' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_RecentlyPulled_C \ +static_assert(alignof(UGE_RecentlyPulled_C) == 0x000008, "Wrong alignment on UGE_RecentlyPulled_C"); \ +static_assert(sizeof(UGE_RecentlyPulled_C) == 0x000A70, "Wrong size on UGE_RecentlyPulled_C"); \ + +#define DUMPER7_ASSERTS_SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled \ +static_assert(alignof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled) == 0x000008, "Wrong alignment on SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled"); \ +static_assert(sizeof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled) == 0x000020, "Wrong size on SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled, EntryPoint) == 0x000000, "Member 'SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled, K2Node_Event_InAutomata) == 0x000008, "Member 'SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled, K2Node_Event_InState) == 0x000010, "Member 'SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'SetMasqueradeEnabled_C_ExecuteUbergraph_SetMasqueradeEnabled::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetMasqueradeEnabled_C_ReceiveExecute \ +static_assert(alignof(SetMasqueradeEnabled_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetMasqueradeEnabled_C_ReceiveExecute"); \ +static_assert(sizeof(SetMasqueradeEnabled_C_ReceiveExecute) == 0x000010, "Wrong size on SetMasqueradeEnabled_C_ReceiveExecute"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetMasqueradeEnabled_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMasqueradeEnabled_C_ReceiveExecute, InState) == 0x000008, "Member 'SetMasqueradeEnabled_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetMasqueradeEnabled_C \ +static_assert(alignof(USetMasqueradeEnabled_C) == 0x000008, "Wrong alignment on USetMasqueradeEnabled_C"); \ +static_assert(sizeof(USetMasqueradeEnabled_C) == 0x000098, "Wrong size on USetMasqueradeEnabled_C"); \ +static_assert(offsetof(USetMasqueradeEnabled_C, UberGraphFrame) == 0x000088, "Member 'USetMasqueradeEnabled_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetMasqueradeEnabled_C, InIsEnabled) == 0x000090, "Member 'USetMasqueradeEnabled_C::InIsEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x0000B8, "Wrong size on GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A, EventTag) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A, EventData) == 0x000008, "Member 'GA_EnemyReact_TK_resist_C_EventReceived_CD26EEC342CFF092BF9CFE9D5E997E0A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist) == 0x0004C8, "Wrong size on GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue) == 0x000004, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::CallFunc_BP_ApplyGameplayEffectToOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventTag_4) == 0x00000C, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventData_4) == 0x000018, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CreateDelegate_OutputDelegate) == 0x0000C8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventTag_3) == 0x0000D8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventData_3) == 0x0000E0, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CreateDelegate_OutputDelegate_1) == 0x000190, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventTag_2) == 0x0001A0, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventData_2) == 0x0001A8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CreateDelegate_OutputDelegate_2) == 0x000258, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventTag_1) == 0x000268, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventData_1) == 0x000270, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CreateDelegate_OutputDelegate_3) == 0x000320, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventTag) == 0x000330, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CustomEvent_EventData) == 0x000338, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003E8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, Temp_struct_Variable) == 0x0003F8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, Temp_struct_Variable_1) == 0x0004A8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, CallFunc_GetMontage_ReturnValue) == 0x0004B0, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x0004B8, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist, CallFunc_IsValid_ReturnValue) == 0x0004C0, "Member 'GA_EnemyReact_TK_resist_C_ExecuteUbergraph_GA_EnemyReact_TK_resist::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x0000B8, "Wrong size on GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A, EventTag) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A, EventData) == 0x000008, "Member 'GA_EnemyReact_TK_resist_C_OnBlendOut_CD26EEC342CFF092BF9CFE9D5E997E0A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x0000B8, "Wrong size on GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A, EventTag) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A, EventData) == 0x000008, "Member 'GA_EnemyReact_TK_resist_C_OnCancelled_CD26EEC342CFF092BF9CFE9D5E997E0A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x0000B8, "Wrong size on GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A, EventTag) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A, EventData) == 0x000008, "Member 'GA_EnemyReact_TK_resist_C_OnCompleted_CD26EEC342CFF092BF9CFE9D5E997E0A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A \ +static_assert(alignof(GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x000008, "Wrong alignment on GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(sizeof(GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A) == 0x0000B8, "Wrong size on GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A, EventTag) == 0x000000, "Member 'GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A, EventData) == 0x000008, "Member 'GA_EnemyReact_TK_resist_C_OnInterrupted_CD26EEC342CFF092BF9CFE9D5E997E0A::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_TK_resist_C \ +static_assert(alignof(UGA_EnemyReact_TK_resist_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_TK_resist_C"); \ +static_assert(sizeof(UGA_EnemyReact_TK_resist_C) == 0x0007C0, "Wrong size on UGA_EnemyReact_TK_resist_C"); \ +static_assert(offsetof(UGA_EnemyReact_TK_resist_C, UberGraphFrame_GA_EnemyReact_TK_resist_C) == 0x0007B8, "Member 'UGA_EnemyReact_TK_resist_C::UberGraphFrame_GA_EnemyReact_TK_resist_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button \ +static_assert(alignof(BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button) == 0x000008, "Wrong alignment on BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button"); \ +static_assert(sizeof(BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button) == 0x000010, "Wrong size on BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button"); \ +static_assert(offsetof(BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button, EntryPoint) == 0x000000, "Member 'BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button, K2Node_Event_InInteractingActor) == 0x000008, "Member 'BP_NPC_button_C_ExecuteUbergraph_BP_NPC_button::K2Node_Event_InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NPC_button_C_OnInteractionPerformed \ +static_assert(alignof(BP_NPC_button_C_OnInteractionPerformed) == 0x000008, "Wrong alignment on BP_NPC_button_C_OnInteractionPerformed"); \ +static_assert(sizeof(BP_NPC_button_C_OnInteractionPerformed) == 0x000008, "Wrong size on BP_NPC_button_C_OnInteractionPerformed"); \ +static_assert(offsetof(BP_NPC_button_C_OnInteractionPerformed, InInteractingActor) == 0x000000, "Member 'BP_NPC_button_C_OnInteractionPerformed::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_NPC_button_C \ +static_assert(alignof(ABP_NPC_button_C) == 0x000008, "Wrong alignment on ABP_NPC_button_C"); \ +static_assert(sizeof(ABP_NPC_button_C) == 0x000370, "Wrong size on ABP_NPC_button_C"); \ +static_assert(offsetof(ABP_NPC_button_C, UberGraphFrame_BP_NPC_button_C) == 0x000358, "Member 'ABP_NPC_button_C::UberGraphFrame_BP_NPC_button_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_NPC_button_C, Pressed) == 0x000360, "Member 'ABP_NPC_button_C::Pressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Knife_C_ExecuteUbergraph_BP_Knife \ +static_assert(alignof(BP_Knife_C_ExecuteUbergraph_BP_Knife) == 0x000004, "Wrong alignment on BP_Knife_C_ExecuteUbergraph_BP_Knife"); \ +static_assert(sizeof(BP_Knife_C_ExecuteUbergraph_BP_Knife) == 0x000004, "Wrong size on BP_Knife_C_ExecuteUbergraph_BP_Knife"); \ +static_assert(offsetof(BP_Knife_C_ExecuteUbergraph_BP_Knife, EntryPoint) == 0x000000, "Member 'BP_Knife_C_ExecuteUbergraph_BP_Knife::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Knife_C \ +static_assert(alignof(ABP_Knife_C) == 0x000008, "Wrong alignment on ABP_Knife_C"); \ +static_assert(sizeof(ABP_Knife_C) == 0x0003C0, "Wrong size on ABP_Knife_C"); \ +static_assert(offsetof(ABP_Knife_C, UberGraphFrame_BP_Knife_C) == 0x0003B8, "Member 'ABP_Knife_C::UberGraphFrame_BP_Knife_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Revolver_C_ExecuteUbergraph_BP_Revolver \ +static_assert(alignof(BP_Revolver_C_ExecuteUbergraph_BP_Revolver) == 0x000004, "Wrong alignment on BP_Revolver_C_ExecuteUbergraph_BP_Revolver"); \ +static_assert(sizeof(BP_Revolver_C_ExecuteUbergraph_BP_Revolver) == 0x000004, "Wrong size on BP_Revolver_C_ExecuteUbergraph_BP_Revolver"); \ +static_assert(offsetof(BP_Revolver_C_ExecuteUbergraph_BP_Revolver, EntryPoint) == 0x000000, "Member 'BP_Revolver_C_ExecuteUbergraph_BP_Revolver::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Revolver_C \ +static_assert(alignof(ABP_Revolver_C) == 0x000008, "Wrong alignment on ABP_Revolver_C"); \ +static_assert(sizeof(ABP_Revolver_C) == 0x0003C8, "Wrong size on ABP_Revolver_C"); \ +static_assert(offsetof(ABP_Revolver_C, UberGraphFrame_BP_Revolver_C) == 0x0003B8, "Member 'ABP_Revolver_C::UberGraphFrame_BP_Revolver_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Revolver_C, VFX_Muzzle) == 0x0003C0, "Member 'ABP_Revolver_C::VFX_Muzzle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_C_AddButton \ +static_assert(alignof(GA_QuestTarget_C_AddButton) == 0x000010, "Wrong alignment on GA_QuestTarget_C_AddButton"); \ +static_assert(sizeof(GA_QuestTarget_C_AddButton) == 0x000170, "Wrong size on GA_QuestTarget_C_AddButton"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_QuestTarget_C_AddButton::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_K2_AddActorLocalOffset_SweepHitResult) == 0x000008, "Member 'GA_QuestTarget_C_AddButton::CallFunc_K2_AddActorLocalOffset_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_K2_AttachToActor_ReturnValue) == 0x0000F0, "Member 'GA_QuestTarget_C_AddButton::CallFunc_K2_AttachToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_GetTransform_ReturnValue) == 0x000100, "Member 'GA_QuestTarget_C_AddButton::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000160, "Member 'GA_QuestTarget_C_AddButton::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_AddButton, CallFunc_FinishSpawningActor_ReturnValue) == 0x000168, "Member 'GA_QuestTarget_C_AddButton::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC \ +static_assert(alignof(GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC) == 0x000008, "Wrong alignment on GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC"); \ +static_assert(sizeof(GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC) == 0x0000B0, "Wrong size on GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC"); \ +static_assert(offsetof(GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC, Payload) == 0x000000, "Member 'GA_QuestTarget_C_EventReceived_A08754EC48A8C1D014BAC39B85BEE6FC::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget \ +static_assert(alignof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget) == 0x000008, "Wrong alignment on GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget"); \ +static_assert(sizeof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget) == 0x000F18, "Wrong size on GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, EntryPoint) == 0x000000, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeArray_Array) == 0x000008, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate) == 0x000020, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_2) == 0x000040, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_3) == 0x000050, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000060, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_4) == 0x000068, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_1) == 0x000079, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue) == 0x000080, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_5) == 0x000088, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_2) == 0x000098, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitRealDelay_ReturnValue) == 0x0000A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_6) == 0x0000A8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_3) == 0x0000B8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_7) == 0x0000BC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_8) == 0x0000CC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CustomEvent_Payload) == 0x0000E0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_9) == 0x000190, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_struct_Variable) == 0x0001A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitGameplayEvent_ReturnValue) == 0x000250, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_4) == 0x000258, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_10) == 0x00025C, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitRealDelay_ReturnValue_1) == 0x000270, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_11) == 0x000278, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_5) == 0x000288, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_12) == 0x00028C, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_Variable) == 0x00029C, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_struct_Variable_1) == 0x0002A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_struct_Variable_2) == 0x0002C0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_delegate_Variable) == 0x0002E0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_13) == 0x0002F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue_1) == 0x000300, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_14) == 0x000308, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_6) == 0x000318, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue_2) == 0x000320, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000328, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_7) == 0x000340, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_Has_Been_Initd_Variable) == 0x000341, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_int_Loop_Counter_Variable) == 0x000344, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Add_IntInt_ReturnValue) == 0x000348, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_int_Array_Index_Variable) == 0x00034C, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_15) == 0x000350, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_int_Loop_Counter_Variable_1) == 0x000360, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Add_IntInt_ReturnValue_1) == 0x000364, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_16) == 0x000368, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_IsClosed_Variable) == 0x000378, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_IsClosed_Variable_1) == 0x000379, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_IsClosed_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_Has_Been_Initd_Variable_1) == 0x00037A, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_Has_Been_Initd_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000380, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_8) == 0x000388, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000390, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAIController_ReturnValue) == 0x000398, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_17) == 0x0003A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface) == 0x0003B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_bSuccess) == 0x0003C0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1) == 0x0003C8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_bSuccess_1) == 0x0003D8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetGameTeamId_ReturnValue) == 0x0003D9, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetGameTeamId_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0003E0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0003E8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x0003F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_bSuccess_2) == 0x0003F8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GiveAbility_ReturnValue) == 0x0003FC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GiveAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000400, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000408, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAIController_ReturnValue_1) == 0x000410, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Random_OutItem) == 0x000418, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Random_OutIndex) == 0x000420, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2) == 0x000428, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_AsWrestler_Team_Agent_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_bSuccess_3) == 0x000438, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_GameplayEventData) == 0x000440, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0004F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000510, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000518, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000520, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_StateTreeEvent) == 0x000528, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_StateTreeEvent' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SendStateTreeEventToActor_ReturnValue) == 0x000548, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SendStateTreeEventToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue_3) == 0x000550, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_9) == 0x000558, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x000560, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000568, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000580, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_ChangeWeapon_OutOldWeapon) == 0x000588, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_ChangeWeapon_OutOldWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_ChangeWeapon_OutNewWeapon) == 0x000590, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_ChangeWeapon_OutNewWeapon' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000598, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0005A8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Length_ReturnValue) == 0x0005B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_StateTreeEvent_1) == 0x0005B8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_StateTreeEvent_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Less_IntInt_ReturnValue) == 0x0005D8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SendStateTreeEventToActor_ReturnValue_1) == 0x0005D9, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SendStateTreeEventToActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralName_ReturnValue) == 0x0005DC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue) == 0x0005E8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x0005F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0005F8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_DynamicCast_bSuccess_4) == 0x000608, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000610, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAIController_ReturnValue_2) == 0x000628, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000630, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000648, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000660, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_byte_Variable) == 0x000680, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000681, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000688, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_StateTreeEvent_2) == 0x000690, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_StateTreeEvent_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x0006B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SendStateTreeEventToActor_ReturnValue_2) == 0x0006B8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SendStateTreeEventToActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0006C0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0006E0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12) == 0x0006E8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x0006F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000710, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BooleanAND_ReturnValue) == 0x000711, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_int_Array_Index_Variable_1) == 0x000714, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Get_Item) == 0x000718, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_10) == 0x000720, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue_4) == 0x000728, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13) == 0x000730, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_11) == 0x000738, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14) == 0x000740, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x000748, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000758, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000759, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_18) == 0x00075C, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000770, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_StateTreeEvent_3) == 0x000778, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_StateTreeEvent_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SendStateTreeEventToActor_ReturnValue_3) == 0x000798, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SendStateTreeEventToActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000799, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1) == 0x0007A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_Has_Been_Initd_Variable_2) == 0x0007A8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_Has_Been_Initd_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue_1) == 0x0007B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Get_Item_1) == 0x0007C0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Array_Length_ReturnValue_1) == 0x0007C8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Less_IntInt_ReturnValue_1) == 0x0007CC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x0007D0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2) == 0x0007E8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x0007F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000808, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000820, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Vector_DistanceSquared_ReturnValue) == 0x000838, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Vector_DistanceSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Add_VectorVector_ReturnValue) == 0x000840, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000858, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Square_ReturnValue) == 0x000870, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Square_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000878, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15) == 0x000880, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_16) == 0x000888, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x000890, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x0008B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_17) == 0x0008B8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitGameplayTagQueryOnActor_ReturnValue) == 0x0008C0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitGameplayTagQueryOnActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_12) == 0x0008C8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3) == 0x0008D0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorFromActorInfo_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0008D8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_IsClosed_Variable_2) == 0x0008F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_IsClosed_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_13) == 0x0008F1, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitDelay_ReturnValue_5) == 0x0008F8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitDelay_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_14) == 0x000900, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CustomEvent_DeadActor) == 0x000908, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CustomEvent_DeadActor' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_18) == 0x000910, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000918, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitGameplayTagQuery_ReturnValue) == 0x000960, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitGameplayTagQuery_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_15) == 0x000968, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_19) == 0x000970, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_20) == 0x000978, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_19) == 0x000980, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_19' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitForAttributeChange_ReturnValue) == 0x000990, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitForAttributeChange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_16) == 0x000998, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0009A0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Square_ReturnValue_1) == 0x0009A8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Square_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x0009B0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_21) == 0x0009C8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_7) == 0x0009D0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Vector_DistanceSquared_ReturnValue_1) == 0x0009E8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Vector_DistanceSquared_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0009F0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Square_ReturnValue_2) == 0x0009F8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Square_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000A00, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_22) == 0x000A08, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_8) == 0x000A10, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_9) == 0x000A28, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_RandomFloatInRange_ReturnValue) == 0x000A40, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Vector_DistanceSquared_ReturnValue_2) == 0x000A48, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Vector_DistanceSquared_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitRealDelay_ReturnValue_2) == 0x000A50, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000A58, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_17) == 0x000A59, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000A60, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_23) == 0x000A68, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAIController_ReturnValue_3) == 0x000A70, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_18) == 0x000A78, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsDetectingActor_ReturnValue) == 0x000A79, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_19) == 0x000A7A, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SetItemState_self_CastInput) == 0x000A80, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SetItemState_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SetItemState_self_CastInput_1) == 0x000A90, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SetItemState_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000AA0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_24) == 0x000AC0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_25) == 0x000AC8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_AddLooseGameplayTags_ReturnValue_2) == 0x000AD0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_AddLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000AD8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000AE8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_RemoveLooseGameplayTags_ReturnValue_2) == 0x000AE9, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_RemoveLooseGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CustomEvent_toFeedable) == 0x000AEA, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CustomEvent_toFeedable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000AF0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000AF8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_10) == 0x000B00, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_11) == 0x000B18, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Vector_DistanceSquared_ReturnValue_3) == 0x000B30, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Vector_DistanceSquared_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000B38, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x000B40, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, Temp_bool_Variable_1) == 0x000B41, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5) == 0x000B48, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_26) == 0x000B68, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_27) == 0x000B70, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000B78, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x000B88, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000B90, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Not_PreBool_ReturnValue) == 0x000B98, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x000BA0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsWalking_ReturnValue) == 0x000BA8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsWalking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BooleanAND_ReturnValue_1) == 0x000BA9, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_CreateDelegate_OutputDelegate_20) == 0x000BAC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_CreateDelegate_OutputDelegate_20' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BooleanAND_ReturnValue_2) == 0x000BBC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WrestlerTaskTick_ReturnValue_1) == 0x000BC0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WrestlerTaskTick_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x000BC8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetVelocity_ReturnValue) == 0x000BD0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_K2_GetActorLocation_ReturnValue_12) == 0x000BE8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_K2_GetActorLocation_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Normal_ReturnValue) == 0x000C00, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_VSizeSquared_ReturnValue) == 0x000C18, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_VSizeSquared_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000C20, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000C38, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000C40, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_20) == 0x000C58, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_21) == 0x000C59, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x000C60, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeArray_Array_1) == 0x000C68, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SphereTraceSingleForObjects_OutHit) == 0x000C78, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SphereTraceSingleForObjects_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_SphereTraceSingleForObjects_ReturnValue) == 0x000D60, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_SphereTraceSingleForObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_bBlockingHit) == 0x000D61, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_bInitialOverlap) == 0x000D62, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_Time) == 0x000D64, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_Distance) == 0x000D68, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_Location) == 0x000D70, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_ImpactPoint) == 0x000D88, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_Normal) == 0x000DA0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_ImpactNormal) == 0x000DB8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_PhysMat) == 0x000DD0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_HitActor) == 0x000DD8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_HitComponent) == 0x000DE0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_HitBoneName) == 0x000DE8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_BoneName) == 0x000DF0, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_HitItem) == 0x000DF8, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_ElementIndex) == 0x000DFC, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_FaceIndex) == 0x000E00, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_TraceStart) == 0x000E08, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_BreakHitResult_TraceEnd) == 0x000E20, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000E38, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_IsValid_ReturnValue_22) == 0x000E39, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_IsValid_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_Select_Default) == 0x000E40, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, K2Node_MakeStruct_GameplayEventData_1) == 0x000E60, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget, CallFunc_WaitRealDelay_Duration_ImplicitCast) == 0x000F10, "Member 'GA_QuestTarget_C_ExecuteUbergraph_GA_QuestTarget::CallFunc_WaitRealDelay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_C_OwnerDeath \ +static_assert(alignof(GA_QuestTarget_C_OwnerDeath) == 0x000008, "Wrong alignment on GA_QuestTarget_C_OwnerDeath"); \ +static_assert(sizeof(GA_QuestTarget_C_OwnerDeath) == 0x000008, "Wrong size on GA_QuestTarget_C_OwnerDeath"); \ +static_assert(offsetof(GA_QuestTarget_C_OwnerDeath, DeadActor) == 0x000000, "Member 'GA_QuestTarget_C_OwnerDeath::DeadActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_C_SetFeedable \ +static_assert(alignof(GA_QuestTarget_C_SetFeedable) == 0x000001, "Wrong alignment on GA_QuestTarget_C_SetFeedable"); \ +static_assert(sizeof(GA_QuestTarget_C_SetFeedable) == 0x000001, "Wrong size on GA_QuestTarget_C_SetFeedable"); \ +static_assert(offsetof(GA_QuestTarget_C_SetFeedable, toFeedable) == 0x000000, "Member 'GA_QuestTarget_C_SetFeedable::toFeedable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_C \ +static_assert(alignof(UGA_QuestTarget_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_C"); \ +static_assert(sizeof(UGA_QuestTarget_C) == 0x000780, "Wrong size on UGA_QuestTarget_C"); \ +static_assert(offsetof(UGA_QuestTarget_C, UberGraphFrame) == 0x000668, "Member 'UGA_QuestTarget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Button) == 0x000670, "Member 'UGA_QuestTarget_C::Button' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, HasButton) == 0x000678, "Member 'UGA_QuestTarget_C::HasButton' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, AcknowledgeTime) == 0x00067C, "Member 'UGA_QuestTarget_C::AcknowledgeTime' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, AcknowledgeAnims) == 0x000680, "Member 'UGA_QuestTarget_C::AcknowledgeAnims' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Initial_Team) == 0x000690, "Member 'UGA_QuestTarget_C::Initial_Team' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, HostileTeam) == 0x000691, "Member 'UGA_QuestTarget_C::HostileTeam' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, AcknowledgePrompt) == 0x000694, "Member 'UGA_QuestTarget_C::AcknowledgePrompt' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, DamagedPrompt) == 0x00069C, "Member 'UGA_QuestTarget_C::DamagedPrompt' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, GroupTag) == 0x0006A4, "Member 'UGA_QuestTarget_C::GroupTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Hostile) == 0x0006AC, "Member 'UGA_QuestTarget_C::Hostile' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, AutoHostileTags) == 0x0006B0, "Member 'UGA_QuestTarget_C::AutoHostileTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Swap_Weapon_On_hostile) == 0x0006D0, "Member 'UGA_QuestTarget_C::Swap_Weapon_On_hostile' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, SwapToWeapon) == 0x0006D8, "Member 'UGA_QuestTarget_C::SwapToWeapon' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, SwapToAnimset) == 0x0006E0, "Member 'UGA_QuestTarget_C::SwapToAnimset' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, SwapToMovement) == 0x000708, "Member 'UGA_QuestTarget_C::SwapToMovement' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, SwapToTaskOverride) == 0x000730, "Member 'UGA_QuestTarget_C::SwapToTaskOverride' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, HostileAfterAcknowledge) == 0x000738, "Member 'UGA_QuestTarget_C::HostileAfterAcknowledge' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, FollowAfterAcknowledge) == 0x000739, "Member 'UGA_QuestTarget_C::FollowAfterAcknowledge' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, FearAfterAcknowledge) == 0x00073A, "Member 'UGA_QuestTarget_C::FearAfterAcknowledge' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Fearful) == 0x00073B, "Member 'UGA_QuestTarget_C::Fearful' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, StopFearOnHostile) == 0x00073C, "Member 'UGA_QuestTarget_C::StopFearOnHostile' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, AcknowledgeOnDistance) == 0x000740, "Member 'UGA_QuestTarget_C::AcknowledgeOnDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, HostileOnDistance) == 0x000748, "Member 'UGA_QuestTarget_C::HostileOnDistance' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, StartingResonance) == 0x000750, "Member 'UGA_QuestTarget_C::StartingResonance' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, ResonanceOnAcknowledge) == 0x000751, "Member 'UGA_QuestTarget_C::ResonanceOnAcknowledge' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, ResonanceOnHostile) == 0x000752, "Member 'UGA_QuestTarget_C::ResonanceOnHostile' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, Follow) == 0x000753, "Member 'UGA_QuestTarget_C::Follow' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, WeaponSwapBlockTags) == 0x000758, "Member 'UGA_QuestTarget_C::WeaponSwapBlockTags' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_C, BroadcastRange) == 0x000778, "Member 'UGA_QuestTarget_C::BroadcastRange' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_SpectatorPawn_C \ +static_assert(alignof(UCM_SpectatorPawn_C) == 0x000010, "Wrong alignment on UCM_SpectatorPawn_C"); \ +static_assert(sizeof(UCM_SpectatorPawn_C) == 0x000780, "Wrong size on UCM_SpectatorPawn_C"); \ + +#define DUMPER7_ASSERTS_GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets \ +static_assert(alignof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets) == 0x000008, "Wrong alignment on GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets"); \ +static_assert(sizeof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets) == 0x0002F8, "Wrong size on GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, EntryPoint) == 0x000000, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_Variable) == 0x000014, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_real_Variable) == 0x000018, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_Variable_1) == 0x00001C, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_real_Variable_1) == 0x000020, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_real_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_Variable_2) == 0x000024, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_real_Variable_2) == 0x000028, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_real_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_Variable_3) == 0x00002C, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_real_Variable_3) == 0x000030, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_real_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetPlayerPawn_ReturnValue) == 0x000048, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000050, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000058, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000060, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAIController_ReturnValue) == 0x000068, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsDetectingActor_ReturnValue) == 0x000070, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsDetectingActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_CreateDelegate_OutputDelegate_2) == 0x000074, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000088, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000090, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAIController_ReturnValue_1) == 0x000098, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAIController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2) == 0x0000A0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsDetectingActor_ReturnValue_1) == 0x0000A8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsDetectingActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAIController_ReturnValue_2) == 0x0000B0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAIController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0000B8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsDetectingActor_ReturnValue_2) == 0x0000C0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsDetectingActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanAND_ReturnValue) == 0x0000C1, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3) == 0x0000C8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x0000D0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_self_CastInput) == 0x0000F0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000100, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4) == 0x000108, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000110, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5) == 0x000130, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1) == 0x000138, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1) == 0x000148, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAIController_ReturnValue_3) == 0x000150, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAIController_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsDetectingActor_ReturnValue_3) == 0x000158, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsDetectingActor_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6) == 0x000160, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanAND_ReturnValue_1) == 0x000168, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2) == 0x000170, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2) == 0x000190, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2) == 0x0001A0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_CreateDelegate_OutputDelegate_3) == 0x0001A4, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7) == 0x0001B8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3) == 0x0001C0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_3) == 0x0001E0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3) == 0x0001F0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8) == 0x0001F8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9) == 0x000200, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10) == 0x000208, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4) == 0x000210, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_self_CastInput_4) == 0x000230, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_self_CastInput_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_HasAnyMatchingGameplayTags_ReturnValue_4) == 0x000240, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_HasAnyMatchingGameplayTags_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_Not_PreBool_ReturnValue) == 0x000241, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue) == 0x000242, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_RandomFloatInRange_ReturnValue) == 0x000248, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000250, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_RandomFloatInRange_ReturnValue_2) == 0x000258, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_RandomFloatInRange_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_RandomFloatInRange_ReturnValue_3) == 0x000260, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_RandomFloatInRange_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_1) == 0x000268, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_2) == 0x000269, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_3) == 0x00026A, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_4) == 0x00026B, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_5) == 0x00026C, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_6) == 0x00026D, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_7) == 0x00026E, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanOR_ReturnValue_8) == 0x00026F, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanOR_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanAND_ReturnValue_2) == 0x000270, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_BooleanAND_ReturnValue_3) == 0x000271, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_Has_Been_Initd_Variable) == 0x000272, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_SwitchEnum_CmpSuccess) == 0x000273, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Default) == 0x000274, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_WaitDelay_ReturnValue) == 0x000278, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Default_1) == 0x000280, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_WaitDelay_ReturnValue_1) == 0x000288, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_WaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsValid_ReturnValue) == 0x000290, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsValid_ReturnValue_1) == 0x000291, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Default_2) == 0x000294, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_WaitDelay_ReturnValue_2) == 0x000298, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_WaitDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Default_3) == 0x0002A0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_WaitDelay_ReturnValue_3) == 0x0002A8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_WaitDelay_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsValid_ReturnValue_2) == 0x0002B0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_IsValid_ReturnValue_3) == 0x0002B1, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11) == 0x0002B8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetIsSpeaking_self_CastInput) == 0x0002C0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetIsSpeaking_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, CallFunc_GetIsSpeaking_ReturnValue) == 0x0002D0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::CallFunc_GetIsSpeaking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, Temp_bool_IsClosed_Variable) == 0x0002D1, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_CreateDelegate_OutputDelegate_4) == 0x0002D4, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Option_0_ImplicitCast) == 0x0002E4, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Option_0_ImplicitCast_1) == 0x0002E8, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Option_0_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Option_0_ImplicitCast_2) == 0x0002EC, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Option_0_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets, K2Node_Select_Option_0_ImplicitCast_3) == 0x0002F0, "Member 'GA_QuestTarget_NikoTargets_C_ExecuteUbergraph_GA_QuestTarget_NikoTargets::K2Node_Select_Option_0_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_C"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, UberGraphFrame_GA_QuestTarget_NikoTargets_C) == 0x000780, "Member 'UGA_QuestTarget_NikoTargets_C::UberGraphFrame_GA_QuestTarget_NikoTargets_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Idle_Bark) == 0x000788, "Member 'UGA_QuestTarget_NikoTargets_C::Idle_Bark' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Idle_Bark_Loop_Max_Delay) == 0x000790, "Member 'UGA_QuestTarget_NikoTargets_C::Idle_Bark_Loop_Max_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Idle_Bark_Loop_Min_Delay) == 0x000798, "Member 'UGA_QuestTarget_NikoTargets_C::Idle_Bark_Loop_Min_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, FearBarks) == 0x0007A0, "Member 'UGA_QuestTarget_NikoTargets_C::FearBarks' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Fear_Bark_Loop_Max_Delay_) == 0x0007A8, "Member 'UGA_QuestTarget_NikoTargets_C::Fear_Bark_Loop_Max_Delay_' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Fear_Bark_Loop_Min_Delay) == 0x0007B0, "Member 'UGA_QuestTarget_NikoTargets_C::Fear_Bark_Loop_Min_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, FollowingBarks) == 0x0007B8, "Member 'UGA_QuestTarget_NikoTargets_C::FollowingBarks' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Folllow_Bark_Loop_Max_Delay) == 0x0007C0, "Member 'UGA_QuestTarget_NikoTargets_C::Folllow_Bark_Loop_Max_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Follow_Bark_Loop_Min_Delay) == 0x0007C8, "Member 'UGA_QuestTarget_NikoTargets_C::Follow_Bark_Loop_Min_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, HostileBarks) == 0x0007D0, "Member 'UGA_QuestTarget_NikoTargets_C::HostileBarks' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Hostile_Bark_Loop_Max_Delay) == 0x0007D8, "Member 'UGA_QuestTarget_NikoTargets_C::Hostile_Bark_Loop_Max_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Hostile_Bark_Loop_Min_Delay) == 0x0007E0, "Member 'UGA_QuestTarget_NikoTargets_C::Hostile_Bark_Loop_Min_Delay' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Bark_State) == 0x0007E8, "Member 'UGA_QuestTarget_NikoTargets_C::Bark_State' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, Changed_State) == 0x0007E9, "Member 'UGA_QuestTarget_NikoTargets_C::Changed_State' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, NeedToDetectPlayerIdleBark) == 0x0007EA, "Member 'UGA_QuestTarget_NikoTargets_C::NeedToDetectPlayerIdleBark' has a wrong offset!"); \ +static_assert(offsetof(UGA_QuestTarget_NikoTargets_C, NeedToDetectPlayerFearBark) == 0x0007EB, "Member 'UGA_QuestTarget_NikoTargets_C::NeedToDetectPlayerFearBark' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator \ +static_assert(alignof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator) == 0x000008, "Wrong alignment on Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator"); \ +static_assert(sizeof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator) == 0x000048, "Wrong size on Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, EntryPoint) == 0x000000, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, Temp_bool_Variable) == 0x000004, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, Temp_byte_Variable) == 0x000005, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, Temp_byte_Variable_1) == 0x000006, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_Event_InAutomata) == 0x000008, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_Event_InState) == 0x000010, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, CallFunc_GetActors_Actors) == 0x000018, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::CallFunc_GetActors_Actors' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_DynamicCast_AsBP_Moving_Elevator) == 0x000020, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_DynamicCast_AsBP_Moving_Elevator' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000030, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator, K2Node_Select_Default) == 0x000041, "Member 'Modify_BP_MovingElevator_C_ExecuteUbergraph_Modify_BP_MovingElevator::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_BP_MovingElevator_C_GetActors \ +static_assert(alignof(Modify_BP_MovingElevator_C_GetActors) == 0x000008, "Wrong alignment on Modify_BP_MovingElevator_C_GetActors"); \ +static_assert(sizeof(Modify_BP_MovingElevator_C_GetActors) == 0x000020, "Wrong size on Modify_BP_MovingElevator_C_GetActors"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_GetActors, Actors) == 0x000000, "Member 'Modify_BP_MovingElevator_C_GetActors::Actors' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_GetActors, OutActors) == 0x000008, "Member 'Modify_BP_MovingElevator_C_GetActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_GetActors, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'Modify_BP_MovingElevator_C_GetActors::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_BP_MovingElevator_C_ReceiveExecute \ +static_assert(alignof(Modify_BP_MovingElevator_C_ReceiveExecute) == 0x000008, "Wrong alignment on Modify_BP_MovingElevator_C_ReceiveExecute"); \ +static_assert(sizeof(Modify_BP_MovingElevator_C_ReceiveExecute) == 0x000010, "Wrong size on Modify_BP_MovingElevator_C_ReceiveExecute"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Modify_BP_MovingElevator_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Modify_BP_MovingElevator_C_ReceiveExecute, InState) == 0x000008, "Member 'Modify_BP_MovingElevator_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModify_BP_MovingElevator_C \ +static_assert(alignof(UModify_BP_MovingElevator_C) == 0x000008, "Wrong alignment on UModify_BP_MovingElevator_C"); \ +static_assert(sizeof(UModify_BP_MovingElevator_C) == 0x0000C0, "Wrong size on UModify_BP_MovingElevator_C"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, UberGraphFrame) == 0x000088, "Member 'UModify_BP_MovingElevator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, Elevator) == 0x000090, "Member 'UModify_BP_MovingElevator_C::Elevator' has a wrong offset!"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, Disable_Interactions) == 0x0000B8, "Member 'UModify_BP_MovingElevator_C::Disable_Interactions' has a wrong offset!"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, Force_Open) == 0x0000B9, "Member 'UModify_BP_MovingElevator_C::Force_Open' has a wrong offset!"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, Force_Close_Exit_Doors) == 0x0000BA, "Member 'UModify_BP_MovingElevator_C::Force_Close_Exit_Doors' has a wrong offset!"); \ +static_assert(offsetof(UModify_BP_MovingElevator_C, Force_Close) == 0x0000BB, "Member 'UModify_BP_MovingElevator_C::Force_Close' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_CarTheif_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_CarTheif_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_CarTheif_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_CarTheif_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_CarTheif_C"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Graffiti_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Graffiti_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Graffiti_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Graffiti_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Graffiti_C"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Dave_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Dave_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Dave_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Dave_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Dave_C"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Bikers_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Bikers_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Bikers_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Bikers_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Bikers_C"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_AngryATM_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_AngryATM_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_AngryATM_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_AngryATM_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_AngryATM_C"); \ + +#define DUMPER7_ASSERTS_GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion \ +static_assert(alignof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion) == 0x000010, "Wrong alignment on GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion"); \ +static_assert(sizeof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion) == 0x0001A0, "Wrong size on GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, EntryPoint) == 0x000000, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000008, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, K2Node_DynamicCast_AsNiagara_System) == 0x000010, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::K2Node_DynamicCast_AsNiagara_System' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000020, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000028, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000040, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_MakeGameplayCueParameters_ReturnValue) == 0x000048, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_MakeGameplayCueParameters_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_SpawnSystemAtLocation_ReturnValue_1) == 0x000120, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_SpawnSystemAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_Conv_VectorToTransform_ReturnValue) == 0x000130, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_Conv_VectorToTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000190, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion, CallFunc_FinishSpawningActor_ReturnValue) == 0x000198, "Member 'GC_Tr_BloodExplosion_C_ExecuteUbergraph_GC_Tr_BloodExplosion::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Tr_BloodExplosion_C_OnActive \ +static_assert(alignof(GC_Tr_BloodExplosion_C_OnActive) == 0x000008, "Wrong alignment on GC_Tr_BloodExplosion_C_OnActive"); \ +static_assert(sizeof(GC_Tr_BloodExplosion_C_OnActive) == 0x0000E8, "Wrong size on GC_Tr_BloodExplosion_C_OnActive"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnActive, MyTarget) == 0x000000, "Member 'GC_Tr_BloodExplosion_C_OnActive::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnActive, Parameters) == 0x000008, "Member 'GC_Tr_BloodExplosion_C_OnActive::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnActive, ReturnValue) == 0x0000E0, "Member 'GC_Tr_BloodExplosion_C_OnActive::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Tr_BloodExplosion_C_OnExecute \ +static_assert(alignof(GC_Tr_BloodExplosion_C_OnExecute) == 0x000008, "Wrong alignment on GC_Tr_BloodExplosion_C_OnExecute"); \ +static_assert(sizeof(GC_Tr_BloodExplosion_C_OnExecute) == 0x0000E8, "Wrong size on GC_Tr_BloodExplosion_C_OnExecute"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecute, MyTarget) == 0x000000, "Member 'GC_Tr_BloodExplosion_C_OnExecute::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecute, Parameters) == 0x000008, "Member 'GC_Tr_BloodExplosion_C_OnExecute::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecute, ReturnValue) == 0x0000E0, "Member 'GC_Tr_BloodExplosion_C_OnExecute::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Tr_BloodExplosion_C_OnExecuteAudio \ +static_assert(alignof(GC_Tr_BloodExplosion_C_OnExecuteAudio) == 0x000008, "Wrong alignment on GC_Tr_BloodExplosion_C_OnExecuteAudio"); \ +static_assert(sizeof(GC_Tr_BloodExplosion_C_OnExecuteAudio) == 0x000200, "Wrong size on GC_Tr_BloodExplosion_C_OnExecuteAudio"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, Character) == 0x000000, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, AudioComponent) == 0x000008, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, Parameters) == 0x000010, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, Temp_struct_Variable) == 0x0000E8, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0000F8, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000108, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, Temp_delegate_Variable) == 0x00010C, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000120, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_K2_GetRootComponent_ReturnValue_1) == 0x000128, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_K2_GetRootComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000130, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000148, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_SpawnAkComponentAtLocation_ReturnValue) == 0x000160, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_SpawnAkComponentAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_SpawnAkComponentAtLocation_ReturnValue_1) == 0x000168, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_SpawnAkComponentAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, Temp_delegate_Variable_1) == 0x000170, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_PostAssociatedAkEvent_ReturnValue) == 0x000180, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_PostAssociatedAkEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000188, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_MakeVector_ReturnValue) == 0x000190, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0001A8, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_GetSurfaceParameters_OutParams) == 0x0001C0, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_GetSurfaceParameters_OutParams' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, CallFunc_GetSurfaceParameters_OutExecBranches) == 0x0001F8, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::CallFunc_GetSurfaceParameters_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_OnExecuteAudio, K2Node_SwitchEnum_CmpSuccess) == 0x0001F9, "Member 'GC_Tr_BloodExplosion_C_OnExecuteAudio::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Tr_BloodExplosion_C_SpawnBloodDecal \ +static_assert(alignof(GC_Tr_BloodExplosion_C_SpawnBloodDecal) == 0x000008, "Wrong alignment on GC_Tr_BloodExplosion_C_SpawnBloodDecal"); \ +static_assert(sizeof(GC_Tr_BloodExplosion_C_SpawnBloodDecal) == 0x000380, "Wrong size on GC_Tr_BloodExplosion_C_SpawnBloodDecal"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, Parameters) == 0x000000, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, TargetActor) == 0x0000D8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, Temp_bool_Variable) == 0x0000E0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000E8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0000F0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, K2Node_DynamicCast_bSuccess) == 0x000100, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000101, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_Direction) == 0x000108, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_Direction' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_GetGameplayCueDirection_ReturnValue) == 0x000120, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_GetGameplayCueDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000128, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Yaw) == 0x000140, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_GetYawPitchFromVector_Pitch) == 0x000144, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_GetYawPitchFromVector_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue) == 0x000148, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000160, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue_1) == 0x000168, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_MakeRotator_ReturnValue) == 0x000180, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_MakeRotator_ReturnValue_1) == 0x000198, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue_2) == 0x0001B0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_ComposeRotators_ReturnValue_3) == 0x0001C8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_ComposeRotators_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x0001E0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x0001E4, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x0001E8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000200, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000208, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000210, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000230, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Location) == 0x000250, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Normal) == 0x000268, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_Instigator) == 0x000280, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x000288, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x000290, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x000298, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0002A0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0002A4, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0002A8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0002B0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Map_Keys_Keys) == 0x0002B8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Map_Keys_Keys_1) == 0x0002C8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Array_Get_Item) == 0x0002D8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Array_Random_OutItem) == 0x0002E0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Array_Random_OutIndex) == 0x0002E8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Array_Get_Item_1) == 0x0002F0, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x0002F8, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000300, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000318, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_1) == 0x000320, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_2) == 0x000328, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_1) == 0x000330, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_2) == 0x000338, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_3) == 0x000340, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_4) == 0x000348, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_3) == 0x000350, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_4) == 0x000358, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_SpawnDecalAtLocation_ReturnValue_5) == 0x000360, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_SpawnDecalAtLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_CreateDynamicMaterialInstance_ReturnValue_5) == 0x000368, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_CreateDynamicMaterialInstance_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000370, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000378, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Tr_BloodExplosion_C_SpawnBloodDecal, CallFunc_MakeRotator_Roll_ImplicitCast_1) == 0x00037C, "Member 'GC_Tr_BloodExplosion_C_SpawnBloodDecal::CallFunc_MakeRotator_Roll_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Tr_BloodExplosion_C \ +static_assert(alignof(AGC_Tr_BloodExplosion_C) == 0x000008, "Wrong alignment on AGC_Tr_BloodExplosion_C"); \ +static_assert(sizeof(AGC_Tr_BloodExplosion_C) == 0x0004A8, "Wrong size on AGC_Tr_BloodExplosion_C"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, UberGraphFrame) == 0x000308, "Member 'AGC_Tr_BloodExplosion_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, HeraAudio) == 0x000310, "Member 'AGC_Tr_BloodExplosion_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, DefaultSceneRoot) == 0x000318, "Member 'AGC_Tr_BloodExplosion_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, Ability_Level) == 0x000320, "Member 'AGC_Tr_BloodExplosion_C::Ability_Level' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, Player_Character) == 0x000328, "Member 'AGC_Tr_BloodExplosion_C::Player_Character' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, Target_Character) == 0x000330, "Member 'AGC_Tr_BloodExplosion_C::Target_Character' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, AkCompTarget) == 0x000338, "Member 'AGC_Tr_BloodExplosion_C::AkCompTarget' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, AkCompSource) == 0x000340, "Member 'AGC_Tr_BloodExplosion_C::AkCompSource' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, ExplosionEffect) == 0x000348, "Member 'AGC_Tr_BloodExplosion_C::ExplosionEffect' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, DecalMaterial) == 0x000370, "Member 'AGC_Tr_BloodExplosion_C::DecalMaterial' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, DecalMaterial2) == 0x000398, "Member 'AGC_Tr_BloodExplosion_C::DecalMaterial2' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, AkCompTarget_0) == 0x0003C0, "Member 'AGC_Tr_BloodExplosion_C::AkCompTarget_0' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, AkCompSource_0) == 0x0003C8, "Member 'AGC_Tr_BloodExplosion_C::AkCompSource_0' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, BubblesBlood) == 0x0003D0, "Member 'AGC_Tr_BloodExplosion_C::BubblesBlood' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, Decal_Size) == 0x0003D8, "Member 'AGC_Tr_BloodExplosion_C::Decal_Size' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, DirectionalDecalSelection) == 0x0003F0, "Member 'AGC_Tr_BloodExplosion_C::DirectionalDecalSelection' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, World_Context_Object) == 0x000440, "Member 'AGC_Tr_BloodExplosion_C::World_Context_Object' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, FX_BurstAttached) == 0x000448, "Member 'AGC_Tr_BloodExplosion_C::FX_BurstAttached' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, FloorlDecalSelection) == 0x000450, "Member 'AGC_Tr_BloodExplosion_C::FloorlDecalSelection' has a wrong offset!"); \ +static_assert(offsetof(AGC_Tr_BloodExplosion_C, InPrompt) == 0x0004A0, "Member 'AGC_Tr_BloodExplosion_C::InPrompt' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_CatCaller_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_CatCaller_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_CatCaller_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_CatCaller_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_CatCaller_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking \ +static_assert(alignof(GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking) == 0x000004, "Wrong alignment on GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking"); \ +static_assert(sizeof(GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking) == 0x000004, "Wrong size on GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking"); \ +static_assert(offsetof(GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_smoking_C_ExecuteUbergraph_GA_Patrol_Action_smoking::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_smoking_C \ +static_assert(alignof(UGA_Patrol_Action_smoking_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_smoking_C"); \ +static_assert(sizeof(UGA_Patrol_Action_smoking_C) == 0x000698, "Wrong size on UGA_Patrol_Action_smoking_C"); \ +static_assert(offsetof(UGA_Patrol_Action_smoking_C, UberGraphFrame_GA_Patrol_Action_smoking_C) == 0x000690, "Member 'UGA_Patrol_Action_smoking_C::UberGraphFrame_GA_Patrol_Action_smoking_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_QuestTarget_NikoTargets_Mugger_C \ +static_assert(alignof(UGA_QuestTarget_NikoTargets_Mugger_C) == 0x000008, "Wrong alignment on UGA_QuestTarget_NikoTargets_Mugger_C"); \ +static_assert(sizeof(UGA_QuestTarget_NikoTargets_Mugger_C) == 0x0007F0, "Wrong size on UGA_QuestTarget_NikoTargets_Mugger_C"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy \ +static_assert(alignof(GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy) == 0x000004, "Wrong alignment on GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy"); \ +static_assert(sizeof(GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy) == 0x000004, "Wrong size on GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy"); \ +static_assert(offsetof(GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_DrunkStanding_Dizzy_C_ExecuteUbergraph_GA_Patrol_Action_DrunkStanding_Dizzy::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_DrunkStanding_Dizzy_C \ +static_assert(alignof(UGA_Patrol_Action_DrunkStanding_Dizzy_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_DrunkStanding_Dizzy_C"); \ +static_assert(sizeof(UGA_Patrol_Action_DrunkStanding_Dizzy_C) == 0x000698, "Wrong size on UGA_Patrol_Action_DrunkStanding_Dizzy_C"); \ +static_assert(offsetof(UGA_Patrol_Action_DrunkStanding_Dizzy_C, UberGraphFrame_GA_Patrol_Action_DrunkStanding_Dizzy_C) == 0x000690, "Member 'UGA_Patrol_Action_DrunkStanding_Dizzy_C::UberGraphFrame_GA_Patrol_Action_DrunkStanding_Dizzy_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_BottomActionBar_C \ +static_assert(alignof(UTCR_BottomActionBar_C) == 0x000008, "Wrong alignment on UTCR_BottomActionBar_C"); \ +static_assert(sizeof(UTCR_BottomActionBar_C) == 0x0002F8, "Wrong size on UTCR_BottomActionBar_C"); \ +static_assert(offsetof(UTCR_BottomActionBar_C, ActionBar) == 0x0002E8, "Member 'UTCR_BottomActionBar_C::ActionBar' has a wrong offset!"); \ +static_assert(offsetof(UTCR_BottomActionBar_C, ActionBarSafeZone) == 0x0002F0, "Member 'UTCR_BottomActionBar_C::ActionBarSafeZone' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_Apply_rotation \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_Apply_rotation"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation) == 0x000110, "Wrong size on GA_EnemyReact_Hit_Stumble_C_Apply_rotation"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, Instigator_0) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::Instigator_0' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, Temp_byte_Variable) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_IsValid_ReturnValue) == 0x000009, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x000010, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_GetActorForwardVector_ReturnValue) == 0x000018, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000030, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_GetOffsetDirection_ReturnValue) == 0x000038, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_GetOffsetDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_MakeRotFromYX_ReturnValue) == 0x000050, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_MakeRotFromYX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_MakeRotFromX_ReturnValue) == 0x000068, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_MakeRotFromX_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_NegateVector_ReturnValue) == 0x000080, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_MakeRotFromX_ReturnValue_1) == 0x000098, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_MakeRotFromX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_MakeRotFromYX_ReturnValue_1) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_MakeRotFromYX_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, K2Node_Select_Default) == 0x0000C8, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_BreakRotator_Roll) == 0x0000E0, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_BreakRotator_Pitch) == 0x0000E4, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_BreakRotator_Yaw) == 0x0000E8, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_MakeRotator_ReturnValue) == 0x0000F0, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_Apply_rotation, CallFunc_K2_SetActorRotation_ReturnValue) == 0x000108, "Member 'GA_EnemyReact_Hit_Stumble_C_Apply_rotation::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_6062AF5041481D1BD15F4D92F05B637C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_F0F4F0D24365F459E2826D85E727A85F::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_EventReceived_F430D8CC41466EAF43144284AFF1EC3B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble) == 0x0014D8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, EntryPoint) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_12) == 0x000004, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_12) == 0x000010, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_11) == 0x0000C0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_11) == 0x0000C8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_10) == 0x000188, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_10) == 0x000190, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable) == 0x000250, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_1) == 0x000300, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_byte_Variable) == 0x000308, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_byte_Variable_1) == 0x000309, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue) == 0x00030A, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_2) == 0x00030C, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_9) == 0x00031C, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_9) == 0x000328, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_3) == 0x0003D8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_8) == 0x0003E8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_8) == 0x0003F0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_4) == 0x0004A0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_7) == 0x0004B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_7) == 0x0004B8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_5) == 0x000568, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_6) == 0x000578, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_6) == 0x000580, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_6) == 0x000630, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_5) == 0x000640, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_5) == 0x000648, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_7) == 0x0006F8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_2) == 0x000708, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_3) == 0x0007B8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_8) == 0x0007C0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitDelay_ReturnValue) == 0x0007D0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_9) == 0x0007D8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_1) == 0x0007E8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_4) == 0x0007EC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_4) == 0x0007F8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_3) == 0x0008A8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_3) == 0x0008B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_10) == 0x000960, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_2) == 0x000970, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_2) == 0x000978, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_11) == 0x000A28, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_11' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_1) == 0x000A38, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_1) == 0x000A40, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_12) == 0x000AF0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_12' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag) == 0x000B00, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData) == 0x000B08, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_13) == 0x000BB8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_4) == 0x000BC8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_5) == 0x000C78, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_14) == 0x000C80, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_15) == 0x000C90, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_15' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitRealDelay_ReturnValue) == 0x000CA0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitRealDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_byte_Variable_2) == 0x000CA8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_2) == 0x000CA9, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_6) == 0x000CAC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_7) == 0x000CB4, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_8) == 0x000CBC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, Temp_struct_Variable_9) == 0x000CC4, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::Temp_struct_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_16) == 0x000CCC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_16' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_Select_Default) == 0x000CDC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem) == 0x000CE8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex) == 0x000CF0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem_1) == 0x000CF8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex_1) == 0x000D00, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_Event_EventData) == 0x000D08, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_Event_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_SetSide_HitSide) == 0x000DB8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_SetSide_HitSide' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem_2) == 0x000DC0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex_2) == 0x000DC8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem_3) == 0x000DD0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex_3) == 0x000DD8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_Select_Default_1) == 0x000DE0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000DE8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000DF0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetMontageByTag_ReturnValue) == 0x000DF8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetMontageByTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_3) == 0x000E00, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000E04, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetMontageByTag_ReturnValue_1) == 0x000E10, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetMontageByTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeLiteralGameplayTag_ReturnValue_2) == 0x000E18, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeLiteralGameplayTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeLiteralGameplayTag_ReturnValue_3) == 0x000E20, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeLiteralGameplayTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetMontageByTag_ReturnValue_2) == 0x000E28, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetMontageByTag_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetMontageByTag_ReturnValue_3) == 0x000E30, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetMontageByTag_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000E38, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_Select_Default_2) == 0x000E40, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetVelocity_ReturnValue) == 0x000E48, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000E60, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Normal_ReturnValue) == 0x000E78, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000E90, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000E98, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000EB0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Add_VectorVector_ReturnValue) == 0x000EC8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_17) == 0x000EE0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_17' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_13) == 0x000EF0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_13) == 0x000EF8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_13' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000FA8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_MakeArray_Array) == 0x000FB0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventTag_14) == 0x000FC0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventTag_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CustomEvent_EventData_14) == 0x000FC8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CustomEvent_EventData_14' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_RandomFloatInRange_ReturnValue) == 0x001078, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitRealDelay_ReturnValue_1) == 0x001080, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitRealDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_4) == 0x001088, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue_2) == 0x001090, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_5) == 0x001098, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_CreateDelegate_OutputDelegate_18) == 0x00109C, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_CreateDelegate_OutputDelegate_18' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_SphereTraceSingleByProfile_OutHit) == 0x0010B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_SphereTraceSingleByProfile_OutHit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_SphereTraceSingleByProfile_ReturnValue) == 0x001198, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_SphereTraceSingleByProfile_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue_3) == 0x0011A0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetActorForwardVector_ReturnValue) == 0x0011A8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_bBlockingHit) == 0x0011C0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_bInitialOverlap) == 0x0011C1, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_Time) == 0x0011C4, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_Distance) == 0x0011C8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_Location) == 0x0011D0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_ImpactPoint) == 0x0011E8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_Normal) == 0x001200, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_ImpactNormal) == 0x001218, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_PhysMat) == 0x001230, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_HitActor) == 0x001238, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_HitComponent) == 0x001240, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_HitBoneName) == 0x001248, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_BoneName) == 0x001250, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_HitItem) == 0x001258, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_ElementIndex) == 0x00125C, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_FaceIndex) == 0x001260, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_TraceStart) == 0x001268, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakHitResult_TraceEnd) == 0x001280, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue_4) == 0x001298, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_6) == 0x0012A0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_DynamicCast_AsPawn) == 0x0012A8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_DynamicCast_AsPawn' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_DynamicCast_bSuccess) == 0x0012B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Add_ReturnValue) == 0x0012B4, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_NegateVector_ReturnValue) == 0x0012B8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_NegateVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Dot_VectorVector_ReturnValue) == 0x0012D0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0012D8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0012F0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Roll) == 0x0012F4, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Pitch) == 0x0012F8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Yaw) == 0x0012FC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeRotator_ReturnValue) == 0x001300, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Conv_VectorToRotator_ReturnValue_1) == 0x001318, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Conv_VectorToRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_K2_SetActorRotation_ReturnValue) == 0x001330, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Roll_1) == 0x001334, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Roll_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Pitch_1) == 0x001338, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Pitch_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_BreakRotator_Yaw_1) == 0x00133C, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_BreakRotator_Yaw_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_MakeRotator_ReturnValue_1) == 0x001340, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_MakeRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_7) == 0x001358, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_K2_SetActorRotation_ReturnValue_1) == 0x001359, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_K2_SetActorRotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x001360, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem_4) == 0x001368, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex_4) == 0x001370, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitRealDelay_ReturnValue_2) == 0x001378, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitRealDelay_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1) == 0x001380, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_8) == 0x001388, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_9) == 0x001389, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutItem_5) == 0x001390, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutItem_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Array_Random_OutIndex_5) == 0x001398, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Array_Random_OutIndex_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsCharacter_ReturnValue_5) == 0x0013A0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsCharacter_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2) == 0x0013A8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_PlayMontageAndWaitForEvent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_MakeStruct_ApplyDamageParams) == 0x0013B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0013D8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_IsValid_ReturnValue_10) == 0x0013D9, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0013E0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x0013E8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x0013F8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, K2Node_MakeStruct_GameplayEventData) == 0x001400, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x0014B0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x0014B8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast) == 0x0014C0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_Conv_DoubleToVector_InDouble_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_SphereTraceSingleByProfile_Radius_ImplicitCast) == 0x0014C8, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_SphereTraceSingleByProfile_Radius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitRealDelay_Duration_ImplicitCast) == 0x0014CC, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitRealDelay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble, CallFunc_WaitRealDelay_Duration_ImplicitCast_1) == 0x0014D0, "Member 'GA_EnemyReact_Hit_Stumble_C_ExecuteUbergraph_GA_EnemyReact_Hit_Stumble::CallFunc_WaitRealDelay_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent) == 0x0000B0, "Wrong size on GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent, EventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_K2_ActivateAbilityFromEvent::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_6062AF5041481D1BD15F4D92F05B637C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F0F4F0D24365F459E2826D85E727A85F::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnBlendOut_F430D8CC41466EAF43144284AFF1EC3B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_6062AF5041481D1BD15F4D92F05B637C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_F0F4F0D24365F459E2826D85E727A85F::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCancelled_F430D8CC41466EAF43144284AFF1EC3B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_6062AF5041481D1BD15F4D92F05B637C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_F0F4F0D24365F459E2826D85E727A85F::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnCompleted_F430D8CC41466EAF43144284AFF1EC3B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_6062AF5041481D1BD15F4D92F05B637C::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F0F4F0D24365F459E2826D85E727A85F::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B) == 0x0000B8, "Wrong size on GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B, EventTag) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B, EventData) == 0x000008, "Member 'GA_EnemyReact_Hit_Stumble_C_OnInterrupted_F430D8CC41466EAF43144284AFF1EC3B::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyReact_Hit_Stumble_C_SetSide \ +static_assert(alignof(GA_EnemyReact_Hit_Stumble_C_SetSide) == 0x000008, "Wrong alignment on GA_EnemyReact_Hit_Stumble_C_SetSide"); \ +static_assert(sizeof(GA_EnemyReact_Hit_Stumble_C_SetSide) == 0x000138, "Wrong size on GA_EnemyReact_Hit_Stumble_C_SetSide"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, GameplayEventData) == 0x000000, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, HitSide_0) == 0x0000B0, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::HitSide_0' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_GetOffsetDirection_ReturnValue) == 0x0000B8, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_GetOffsetDirection_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_IsValid_ReturnValue) == 0x0000D0, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_GetAvatarActorFromActorInfo_ReturnValue) == 0x0000D8, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_GetAvatarActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_GetActorRightVector_ReturnValue) == 0x0000E0, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_GetActorRightVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000F8, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_Dot_VectorVector_ReturnValue) == 0x000110, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x000118, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000120, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000121, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_Abs_ReturnValue) == 0x000128, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyReact_Hit_Stumble_C_SetSide, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000130, "Member 'GA_EnemyReact_Hit_Stumble_C_SetSide::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyReact_Hit_Stumble_C \ +static_assert(alignof(UGA_EnemyReact_Hit_Stumble_C) == 0x000008, "Wrong alignment on UGA_EnemyReact_Hit_Stumble_C"); \ +static_assert(sizeof(UGA_EnemyReact_Hit_Stumble_C) == 0x000840, "Wrong size on UGA_EnemyReact_Hit_Stumble_C"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, UberGraphFrame_GA_EnemyReact_Hit_Stumble_C) == 0x0007B8, "Member 'UGA_EnemyReact_Hit_Stumble_C::UberGraphFrame_GA_EnemyReact_Hit_Stumble_C' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Front_Montage_Tag) == 0x0007C0, "Member 'UGA_EnemyReact_Hit_Stumble_C::Front_Montage_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Back_Montage_Tag) == 0x0007C8, "Member 'UGA_EnemyReact_Hit_Stumble_C::Back_Montage_Tag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Front_Montage_Variants) == 0x0007D0, "Member 'UGA_EnemyReact_Hit_Stumble_C::Front_Montage_Variants' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Back_Montage_Variants) == 0x0007E0, "Member 'UGA_EnemyReact_Hit_Stumble_C::Back_Montage_Variants' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, HitSide) == 0x0007F0, "Member 'UGA_EnemyReact_Hit_Stumble_C::HitSide' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Montage_to_Play) == 0x0007F8, "Member 'UGA_EnemyReact_Hit_Stumble_C::Montage_to_Play' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Hitchecking) == 0x000800, "Member 'UGA_EnemyReact_Hit_Stumble_C::Hitchecking' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, IgnoreList) == 0x000808, "Member 'UGA_EnemyReact_Hit_Stumble_C::IgnoreList' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, BounceForward_Montages) == 0x000818, "Member 'UGA_EnemyReact_Hit_Stumble_C::BounceForward_Montages' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, BounceBack_Montages) == 0x000828, "Member 'UGA_EnemyReact_Hit_Stumble_C::BounceBack_Montages' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyReact_Hit_Stumble_C, Instigator) == 0x000838, "Member 'UGA_EnemyReact_Hit_Stumble_C::Instigator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting \ +static_assert(alignof(GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting) == 0x000004, "Wrong alignment on GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting"); \ +static_assert(sizeof(GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting) == 0x000004, "Wrong size on GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting"); \ +static_assert(offsetof(GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_SprayPainting_C_ExecuteUbergraph_GA_Patrol_Action_SprayPainting::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_SprayPainting_C \ +static_assert(alignof(UGA_Patrol_Action_SprayPainting_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_SprayPainting_C"); \ +static_assert(sizeof(UGA_Patrol_Action_SprayPainting_C) == 0x000698, "Wrong size on UGA_Patrol_Action_SprayPainting_C"); \ +static_assert(offsetof(UGA_Patrol_Action_SprayPainting_C, UberGraphFrame_GA_Patrol_Action_SprayPainting_C) == 0x000690, "Member 'UGA_Patrol_Action_SprayPainting_C::UberGraphFrame_GA_Patrol_Action_SprayPainting_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWID_Handgun_C \ +static_assert(alignof(UWID_Handgun_C) == 0x000010, "Wrong alignment on UWID_Handgun_C"); \ +static_assert(sizeof(UWID_Handgun_C) == 0x0000D0, "Wrong size on UWID_Handgun_C"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_NonCombat_C_CanContinueCrouching \ +static_assert(alignof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching) == 0x000008, "Wrong alignment on GA_Additive_Crouch_NonCombat_C_CanContinueCrouching"); \ +static_assert(sizeof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching) == 0x000020, "Wrong size on GA_Additive_Crouch_NonCombat_C_CanContinueCrouching"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, Result) == 0x000000, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_IsOwnerInCombatState_Result) == 0x000001, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_IsOwnerInCombatState_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_Not_PreBool_ReturnValue) == 0x000002, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_PawnHasStateTag_ReturnValue) == 0x000018, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_IsOwnerMoving_Return) == 0x000019, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_IsOwnerMoving_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_IsSensedLocationBehind_Return) == 0x00001A, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_IsSensedLocationBehind_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_CanContinueCrouching, CallFunc_BooleanOR_ReturnValue) == 0x00001B, "Member 'GA_Additive_Crouch_NonCombat_C_CanContinueCrouching::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility \ +static_assert(alignof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility) == 0x000078, "Wrong size on GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_Additive_Crouch_NonCombat_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_Crouch_NonCombat_C \ +static_assert(alignof(UGA_Additive_Crouch_NonCombat_C) == 0x000008, "Wrong alignment on UGA_Additive_Crouch_NonCombat_C"); \ +static_assert(sizeof(UGA_Additive_Crouch_NonCombat_C) == 0x000698, "Wrong size on UGA_Additive_Crouch_NonCombat_C"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableWeapon_Rifle_C \ +static_assert(alignof(ABP_ThrowableWeapon_Rifle_C) == 0x000010, "Wrong alignment on ABP_ThrowableWeapon_Rifle_C"); \ +static_assert(sizeof(ABP_ThrowableWeapon_Rifle_C) == 0x000440, "Wrong size on ABP_ThrowableWeapon_Rifle_C"); \ + +#define DUMPER7_ASSERTS_BP_PhosphorFire_C_Enemy_Damage \ +static_assert(alignof(BP_PhosphorFire_C_Enemy_Damage) == 0x000008, "Wrong alignment on BP_PhosphorFire_C_Enemy_Damage"); \ +static_assert(sizeof(BP_PhosphorFire_C_Enemy_Damage) == 0x000068, "Wrong size on BP_PhosphorFire_C_Enemy_Damage"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, InputPin) == 0x000000, "Member 'BP_PhosphorFire_C_Enemy_Damage::InputPin' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, ReturnValue) == 0x000008, "Member 'BP_PhosphorFire_C_Enemy_Damage::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, Temp_real_Variable) == 0x00000C, "Member 'BP_PhosphorFire_C_Enemy_Damage::Temp_real_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute) == 0x000010, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_GetFloatAttribute_ReturnValue) == 0x000014, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_GetFloatAttribute_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1) == 0x000018, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_GetFloatAttribute_bSuccessfullyFoundAttribute_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_GetFloatAttribute_ReturnValue_1) == 0x00001C, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_GetFloatAttribute_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, Temp_bool_Variable) == 0x000020, "Member 'BP_PhosphorFire_C_Enemy_Damage::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000038, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000040, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, K2Node_Select_Default) == 0x000044, "Member 'BP_PhosphorFire_C_Enemy_Damage::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x000048, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000050, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x000058, "Member 'BP_PhosphorFire_C_Enemy_Damage::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_Enemy_Damage, K2Node_Select_Option_0_ImplicitCast) == 0x000060, "Member 'BP_PhosphorFire_C_Enemy_Damage::K2Node_Select_Option_0_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire \ +static_assert(alignof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire) == 0x000008, "Wrong alignment on BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire"); \ +static_assert(sizeof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire) == 0x0005A8, "Wrong size on BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, EntryPoint) == 0x000000, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, Temp_bool_Variable) == 0x000004, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, Temp_object_Variable) == 0x000008, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, Temp_delegate_Variable) == 0x000010, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, Temp_int_Array_Index_Variable) == 0x000020, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeArray_Array) == 0x000028, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue) == 0x000050, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeStruct_ApplyDamageParams) == 0x000058, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeStruct_ApplyDamageParams' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000080, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_CreateDelegate_OutputDelegate) == 0x000088, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeArray_Array_1) == 0x000098, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x0000A8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0000B0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x0000C8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x0000E0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Vector_Distance_ReturnValue) == 0x0000E8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000F8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_ApplyDamage_ReturnValue) == 0x0000F9, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_ApplyDamage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000100, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_3) == 0x000108, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_4) == 0x000120, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeArray_Array_2) == 0x000138, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LineTraceSingle_OutHit) == 0x000148, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LineTraceSingle_ReturnValue) == 0x000230, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeStruct_GameplayEventData) == 0x000238, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeStruct_GameplayEventData_1) == 0x0002E8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeStruct_GameplayEventData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, Temp_int_Loop_Counter_Variable) == 0x000398, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_5) == 0x0003A0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Add_IntInt_ReturnValue) == 0x0003B8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_SphereOverlapActors_OutActors) == 0x0003C0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_SphereOverlapActors_ReturnValue) == 0x0003D0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Array_Get_Item) == 0x0003D8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x0003E0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0003E8, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x0003F0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeStruct_ApplyDamageParams_1) == 0x000408, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeStruct_ApplyDamageParams_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Enemy_Damage_ReturnValue) == 0x000430, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Enemy_Damage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_GetActorLocation_ReturnValue_6) == 0x000438, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_GetActorLocation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_ApplyDamage_ReturnValue_1) == 0x000450, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_ApplyDamage_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Vector_Distance_ReturnValue_1) == 0x000458, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000460, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Array_Length_ReturnValue) == 0x000464, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Less_IntInt_ReturnValue) == 0x000468, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_MakeStruct_GameplayEventData_2) == 0x000470, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_MakeStruct_GameplayEventData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x000520, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000528, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_DynamicCast_bSuccess) == 0x000538, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000539, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_IsValid_ReturnValue) == 0x00053A, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_6) == 0x000540, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000548, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_IsValid_ReturnValue_1) == 0x000550, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetPlayerPawn_ReturnValue_7) == 0x000558, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetPlayerPawn_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000560, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, K2Node_DynamicCast_bSuccess_1) == 0x000570, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000578, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast) == 0x000580, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_K2_ApplyDamage_Amount_ImplicitCast) == 0x000588, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_K2_ApplyDamage_Amount_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Delay_Duration_ImplicitCast) == 0x00058C, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_LessEqual_DoubleDouble_B_ImplicitCast_1) == 0x000590, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_LessEqual_DoubleDouble_B_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast) == 0x000598, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_SphereOverlapActors_SphereRadius_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0005A0, "Member 'BP_PhosphorFire_C_ExecuteUbergraph_BP_PhosphorFire::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PhosphorFire_C \ +static_assert(alignof(ABP_PhosphorFire_C) == 0x000008, "Wrong alignment on ABP_PhosphorFire_C"); \ +static_assert(sizeof(ABP_PhosphorFire_C) == 0x0002F8, "Wrong size on ABP_PhosphorFire_C"); \ +static_assert(offsetof(ABP_PhosphorFire_C, UberGraphFrame) == 0x000298, "Member 'ABP_PhosphorFire_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Sphere) == 0x0002A0, "Member 'ABP_PhosphorFire_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, NS_PhosphorusGrenade_Burn) == 0x0002A8, "Member 'ABP_PhosphorFire_C::NS_PhosphorusGrenade_Burn' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Box) == 0x0002B0, "Member 'ABP_PhosphorFire_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Endline_NewTrack_0_DE03DE1B4A9636A416B68EB72C9D2FC0) == 0x0002B8, "Member 'ABP_PhosphorFire_C::Endline_NewTrack_0_DE03DE1B4A9636A416B68EB72C9D2FC0' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Endline__Direction_DE03DE1B4A9636A416B68EB72C9D2FC0) == 0x0002BC, "Member 'ABP_PhosphorFire_C::Endline__Direction_DE03DE1B4A9636A416B68EB72C9D2FC0' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Endline) == 0x0002C0, "Member 'ABP_PhosphorFire_C::Endline' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, BurnDuration) == 0x0002C8, "Member 'ABP_PhosphorFire_C::BurnDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Burning) == 0x0002CC, "Member 'ABP_PhosphorFire_C::Burning' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, BurnRadius) == 0x0002D0, "Member 'ABP_PhosphorFire_C::BurnRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, Burn_Rate) == 0x0002D4, "Member 'ABP_PhosphorFire_C::Burn_Rate' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, EnemyDPS) == 0x0002D8, "Member 'ABP_PhosphorFire_C::EnemyDPS' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, PlayerDPS) == 0x0002E0, "Member 'ABP_PhosphorFire_C::PlayerDPS' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, PlayerBurnRate) == 0x0002E8, "Member 'ABP_PhosphorFire_C::PlayerBurnRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_PhosphorFire_C, WaryDistance) == 0x0002F0, "Member 'ABP_PhosphorFire_C::WaryDistance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags \ +static_assert(alignof(SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags) == 0x000008, "Wrong alignment on SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags"); \ +static_assert(sizeof(SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags) == 0x000018, "Wrong size on SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags"); \ +static_assert(offsetof(SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags, EntryPoint) == 0x000000, "Member 'SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags, K2Node_Event_InAutomata) == 0x000008, "Member 'SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags, K2Node_Event_InState) == 0x000010, "Member 'SetRestrictedBloodResonanceTags_C_ExecuteUbergraph_SetRestrictedBloodResonanceTags::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetRestrictedBloodResonanceTags_C_ReceiveExecute \ +static_assert(alignof(SetRestrictedBloodResonanceTags_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetRestrictedBloodResonanceTags_C_ReceiveExecute"); \ +static_assert(sizeof(SetRestrictedBloodResonanceTags_C_ReceiveExecute) == 0x000010, "Wrong size on SetRestrictedBloodResonanceTags_C_ReceiveExecute"); \ +static_assert(offsetof(SetRestrictedBloodResonanceTags_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetRestrictedBloodResonanceTags_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetRestrictedBloodResonanceTags_C_ReceiveExecute, InState) == 0x000008, "Member 'SetRestrictedBloodResonanceTags_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetRestrictedBloodResonanceTags_C \ +static_assert(alignof(USetRestrictedBloodResonanceTags_C) == 0x000008, "Wrong alignment on USetRestrictedBloodResonanceTags_C"); \ +static_assert(sizeof(USetRestrictedBloodResonanceTags_C) == 0x0000B0, "Wrong size on USetRestrictedBloodResonanceTags_C"); \ +static_assert(offsetof(USetRestrictedBloodResonanceTags_C, UberGraphFrame) == 0x000088, "Member 'USetRestrictedBloodResonanceTags_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetRestrictedBloodResonanceTags_C, BloodResonanceTag) == 0x000090, "Member 'USetRestrictedBloodResonanceTags_C::BloodResonanceTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle \ +static_assert(alignof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle) == 0x000008, "Wrong alignment on BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle"); \ +static_assert(sizeof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle) == 0x000150, "Wrong size on BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, EntryPoint) == 0x000000, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, Temp_bool_Variable) == 0x000004, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, Temp_bool_Variable_1) == 0x000005, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetOwner_ReturnValue) == 0x000008, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetRangedWeaponInstance_OutPins) == 0x000010, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetRangedWeaponInstance_OutPins' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetRangedWeaponInstance_ReturnValue) == 0x000018, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetRangedWeaponInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000030, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_PerlinNoise1D_ReturnValue) == 0x000040, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_PerlinNoise1D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000048, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_RandomFloatInRange_ReturnValue) == 0x000058, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000060, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_PerlinNoise1D_ReturnValue_1) == 0x000068, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_PerlinNoise1D_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000070, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetPlayerPawn_ReturnValue) == 0x000078, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_MakeRotator_ReturnValue) == 0x000080, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetDistanceTo_ReturnValue) == 0x000098, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_MapRangeClamped_ReturnValue) == 0x0000A0, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_LinearColorLerp_ReturnValue) == 0x0000A8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_LinearColorLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_CreateDelegate_OutputDelegate) == 0x0000B8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_CustomEvent_Active) == 0x0000C8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_CustomEvent_Active' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_IsValid_ReturnValue) == 0x0000C9, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetBehaviourActive_Return) == 0x0000CA, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetBehaviourActive_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_Select_Default) == 0x0000CB, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetOwner_ReturnValue_1) == 0x0000D0, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_IsValid_ReturnValue_1) == 0x0000D8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetComponentByClass_ReturnValue) == 0x0000E0, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetComponentByClass_ReturnValue_1) == 0x0000E8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_GetFirstInstanceOfType_ReturnValue) == 0x0000F0, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_GetFirstInstanceOfType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_IsValid_ReturnValue_2) == 0x0000F8, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_DynamicCast_AsWrestler_Ranged_Weapon_Instance) == 0x000100, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_DynamicCast_AsWrestler_Ranged_Weapon_Instance' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_IsValid_ReturnValue_3) == 0x000109, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_IsValid_ReturnValue_4) == 0x00010A, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, K2Node_Event_DeltaSeconds) == 0x00010C, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Divide_DoubleDouble_B_ImplicitCast) == 0x000110, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Divide_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000118, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_PerlinNoise1D_Value_ImplicitCast) == 0x00011C, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_PerlinNoise1D_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000120, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000128, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_PerlinNoise1D_Value_ImplicitCast_1) == 0x00012C, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_PerlinNoise1D_Value_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000130, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x000138, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000140, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle, CallFunc_SetActorTickInterval_TickInterval_ImplicitCast) == 0x000148, "Member 'BP_SniperRifle_C_ExecuteUbergraph_BP_SniperRifle::CallFunc_SetActorTickInterval_TickInterval_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperRifle_C_OnSniperBehaviourChanged \ +static_assert(alignof(BP_SniperRifle_C_OnSniperBehaviourChanged) == 0x000001, "Wrong alignment on BP_SniperRifle_C_OnSniperBehaviourChanged"); \ +static_assert(sizeof(BP_SniperRifle_C_OnSniperBehaviourChanged) == 0x000001, "Wrong size on BP_SniperRifle_C_OnSniperBehaviourChanged"); \ +static_assert(offsetof(BP_SniperRifle_C_OnSniperBehaviourChanged, Active) == 0x000000, "Member 'BP_SniperRifle_C_OnSniperBehaviourChanged::Active' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_SniperRifle_C_ReceiveTick \ +static_assert(alignof(BP_SniperRifle_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_SniperRifle_C_ReceiveTick"); \ +static_assert(sizeof(BP_SniperRifle_C_ReceiveTick) == 0x000004, "Wrong size on BP_SniperRifle_C_ReceiveTick"); \ +static_assert(offsetof(BP_SniperRifle_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_SniperRifle_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_SniperRifle_C \ +static_assert(alignof(ABP_SniperRifle_C) == 0x000008, "Wrong alignment on ABP_SniperRifle_C"); \ +static_assert(sizeof(ABP_SniperRifle_C) == 0x000410, "Wrong size on ABP_SniperRifle_C"); \ +static_assert(offsetof(ABP_SniperRifle_C, UberGraphFrame_BP_SniperRifle_C) == 0x0003B8, "Member 'ABP_SniperRifle_C::UberGraphFrame_BP_SniperRifle_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Glint) == 0x0003C0, "Member 'ABP_SniperRifle_C::Glint' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, VFX_AssaultMuzzle) == 0x0003C8, "Member 'ABP_SniperRifle_C::VFX_AssaultMuzzle' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Timeline_LightIntensity_C4C7EF1A4179A83AE06400B69CE015BD) == 0x0003D0, "Member 'ABP_SniperRifle_C::Timeline_LightIntensity_C4C7EF1A4179A83AE06400B69CE015BD' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Timeline_ColourLerp_C4C7EF1A4179A83AE06400B69CE015BD) == 0x0003D4, "Member 'ABP_SniperRifle_C::Timeline_ColourLerp_C4C7EF1A4179A83AE06400B69CE015BD' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Timeline_LaserWidth_C4C7EF1A4179A83AE06400B69CE015BD) == 0x0003D8, "Member 'ABP_SniperRifle_C::Timeline_LaserWidth_C4C7EF1A4179A83AE06400B69CE015BD' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Timeline__Direction_C4C7EF1A4179A83AE06400B69CE015BD) == 0x0003DC, "Member 'ABP_SniperRifle_C::Timeline__Direction_C4C7EF1A4179A83AE06400B69CE015BD' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, Timeline) == 0x0003E0, "Member 'ABP_SniperRifle_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, LaserColour_Aggro) == 0x0003E8, "Member 'ABP_SniperRifle_C::LaserColour_Aggro' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, AimTimer) == 0x0003F8, "Member 'ABP_SniperRifle_C::AimTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, SniperComponent) == 0x000400, "Member 'ABP_SniperRifle_C::SniperComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_SniperRifle_C, WobbleFrequency) == 0x000408, "Member 'ABP_SniperRifle_C::WobbleFrequency' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FadeInScreen_C_ExecuteUbergraph_FadeInScreen \ +static_assert(alignof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen) == 0x000008, "Wrong alignment on FadeInScreen_C_ExecuteUbergraph_FadeInScreen"); \ +static_assert(sizeof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen) == 0x000028, "Wrong size on FadeInScreen_C_ExecuteUbergraph_FadeInScreen"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, EntryPoint) == 0x000000, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, K2Node_Event_InAutomata) == 0x000008, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, K2Node_Event_InState) == 0x000010, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, CallFunc_GetPlayerController_ReturnValue) == 0x000018, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, CallFunc_StartCameraFade_Duration_ImplicitCast) == 0x000020, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::CallFunc_StartCameraFade_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ExecuteUbergraph_FadeInScreen, CallFunc_Delay_Duration_ImplicitCast) == 0x000024, "Member 'FadeInScreen_C_ExecuteUbergraph_FadeInScreen::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FadeInScreen_C_ReceiveExecute \ +static_assert(alignof(FadeInScreen_C_ReceiveExecute) == 0x000008, "Wrong alignment on FadeInScreen_C_ReceiveExecute"); \ +static_assert(sizeof(FadeInScreen_C_ReceiveExecute) == 0x000010, "Wrong size on FadeInScreen_C_ReceiveExecute"); \ +static_assert(offsetof(FadeInScreen_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'FadeInScreen_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FadeInScreen_C_ReceiveExecute, InState) == 0x000008, "Member 'FadeInScreen_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFadeInScreen_C \ +static_assert(alignof(UFadeInScreen_C) == 0x000008, "Wrong alignment on UFadeInScreen_C"); \ +static_assert(sizeof(UFadeInScreen_C) == 0x0000B0, "Wrong size on UFadeInScreen_C"); \ +static_assert(offsetof(UFadeInScreen_C, UberGraphFrame) == 0x000088, "Member 'UFadeInScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UFadeInScreen_C, FadeDuration) == 0x000090, "Member 'UFadeInScreen_C::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(UFadeInScreen_C, Objective) == 0x000098, "Member 'UFadeInScreen_C::Objective' has a wrong offset!"); \ +static_assert(offsetof(UFadeInScreen_C, FadeColor) == 0x0000A0, "Member 'UFadeInScreen_C::FadeColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility \ +static_assert(alignof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility) == 0x000040, "Wrong size on GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_GetTargetingLocation_TargetingLocation) == 0x000008, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_GetTargetingLocation_TargetingLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_Is_Tracking_Target_Return) == 0x000020, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_Is_Tracking_Target_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000028, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000030, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility, CallFunc_TryActivateAbilityByClass_ReturnValue) == 0x000038, "Member 'GA_Additive_SniperTargeting_C_ActivateTragetTrackedAbility::CallFunc_TryActivateAbilityByClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589 \ +static_assert(alignof(GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589) == 0x0000B0, "Wrong size on GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589, Payload) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_EventReceived_5392FD2C4590032544177CAE03D33589::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting \ +static_assert(alignof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting) == 0x0002D8, "Wrong size on GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, EntryPoint) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_2) == 0x000024, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_WrestlerTaskTick_ReturnValue) == 0x000038, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_WrestlerTaskTick_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_3) == 0x000040, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CustomEvent_Payload) == 0x000058, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, Temp_struct_Variable) == 0x000108, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0001B8, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_IsValid_ReturnValue_1) == 0x0001C0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_Event_bWasCancelled) == 0x0001C1, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001C2, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_GetLookTowardLocation_Return) == 0x0001C8, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_GetLookTowardLocation_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_4) == 0x0001E0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_ActorTimeDelay_ReturnValue) == 0x0001F0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_ActorTimeDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_IsValid_ReturnValue_2) == 0x0001F8, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000200, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000208, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CustomEvent_TagsAdded) == 0x000220, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CustomEvent_TagsAdded' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_FindLookAtRotation_ReturnValue) == 0x000240, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_HasTag_ReturnValue) == 0x000258, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_BreakRotator_Roll) == 0x00025C, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_BreakRotator_Pitch) == 0x000260, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_BreakRotator_Yaw) == 0x000264, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_MakeRotator_ReturnValue) == 0x000268, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_5) == 0x000280, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_Is_Tracking_Target_Return) == 0x000290, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_Is_Tracking_Target_Return' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_Not_PreBool_ReturnValue) == 0x000291, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000298, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0002A0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x0002A8, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x0002B0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_PawnHasStateTag_ReturnValue) == 0x0002B8, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, K2Node_CreateDelegate_OutputDelegate_6) == 0x0002BC, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_IsAwareOfTarget_Result) == 0x0002CC, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_IsAwareOfTarget_Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_Not_PreBool_ReturnValue_1) == 0x0002CD, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_IsValid_ReturnValue_3) == 0x0002CE, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting, CallFunc_ActorTimeDelay_Duration_ImplicitCast) == 0x0002D0, "Member 'GA_Additive_SniperTargeting_C_ExecuteUbergraph_GA_Additive_SniperTargeting::CallFunc_ActorTimeDelay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_InitAbility \ +static_assert(alignof(GA_Additive_SniperTargeting_C_InitAbility) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_InitAbility"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_InitAbility) == 0x000078, "Wrong size on GA_Additive_SniperTargeting_C_InitAbility"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetRangedWeaponInstance_OutPins) == 0x000008, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetRangedWeaponInstance_OutPins' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetRangedWeaponInstance_ReturnValue) == 0x000010, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetRangedWeaponInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetSpawnedActor_ReturnValue) == 0x000018, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetSpawnedActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'GA_Additive_SniperTargeting_C_InitAbility::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, K2Node_DynamicCast_AsBP_Sniper_Rifle) == 0x000028, "Member 'GA_Additive_SniperTargeting_C_InitAbility::K2Node_DynamicCast_AsBP_Sniper_Rifle' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'GA_Additive_SniperTargeting_C_InitAbility::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetSniperSpline_SniperSpline) == 0x000038, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetSniperSpline_SniperSpline' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetSniperSpline_Valid) == 0x000040, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetSniperSpline_Valid' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000048, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetAvatarActorAsCharacter_ReturnValue_1) == 0x000060, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetAvatarActorAsCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_GetComponentByClass_ReturnValue_1) == 0x000068, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_GetComponentByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_InitAbility, CallFunc_IsValid_ReturnValue_1) == 0x000070, "Member 'GA_Additive_SniperTargeting_C_InitAbility::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_K2_OnEndAbility \ +static_assert(alignof(GA_Additive_SniperTargeting_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Additive_SniperTargeting_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Additive_SniperTargeting_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_StateTreeTagAdded \ +static_assert(alignof(GA_Additive_SniperTargeting_C_StateTreeTagAdded) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_StateTreeTagAdded"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_StateTreeTagAdded) == 0x000020, "Wrong size on GA_Additive_SniperTargeting_C_StateTreeTagAdded"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_StateTreeTagAdded, TagsAdded) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_StateTreeTagAdded::TagsAdded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_TryActivateCrouchAbility \ +static_assert(alignof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_TryActivateCrouchAbility"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility) == 0x000040, "Wrong size on GA_Additive_SniperTargeting_C_TryActivateCrouchAbility"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000008, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_GetAbilitySystemComponent_ReturnValue_1) == 0x000018, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_GetAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x000020, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000028, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000038, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_TryActivateCrouchAbility, CallFunc_Not_PreBool_ReturnValue) == 0x000039, "Member 'GA_Additive_SniperTargeting_C_TryActivateCrouchAbility::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_UpdateAimRotation \ +static_assert(alignof(GA_Additive_SniperTargeting_C_UpdateAimRotation) == 0x000010, "Wrong alignment on GA_Additive_SniperTargeting_C_UpdateAimRotation"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_UpdateAimRotation) == 0x000110, "Wrong size on GA_Additive_SniperTargeting_C_UpdateAimRotation"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_GetWeaponAimTransform_ReturnValue) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_GetWeaponAimTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_GetTargetingLocation_TargetingLocation) == 0x000060, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_GetTargetingLocation_TargetingLocation' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_BreakTransform_Location) == 0x000078, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_BreakTransform_Rotation) == 0x000090, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_BreakTransform_Scale) == 0x0000A8, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_Add_VectorVector_ReturnValue) == 0x0000C0, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x0000D8, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_UpdateAimRotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x0000F0, "Member 'GA_Additive_SniperTargeting_C_UpdateAimRotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_GetLastSensedLocation \ +static_assert(alignof(GA_Additive_SniperTargeting_C_GetLastSensedLocation) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_GetLastSensedLocation"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_GetLastSensedLocation) == 0x000040, "Wrong size on GA_Additive_SniperTargeting_C_GetLastSensedLocation"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_GetLastSensedLocation, ReturnValue) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_GetLastSensedLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_GetLastSensedLocation, CallFunc_GetAvatarActorAsCharacter_ReturnValue) == 0x000018, "Member 'GA_Additive_SniperTargeting_C_GetLastSensedLocation::CallFunc_GetAvatarActorAsCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_GetLastSensedLocation, CallFunc_GetAIController_ReturnValue) == 0x000020, "Member 'GA_Additive_SniperTargeting_C_GetLastSensedLocation::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_GetLastSensedLocation, CallFunc_GetLastSensedLocation_ReturnValue) == 0x000028, "Member 'GA_Additive_SniperTargeting_C_GetLastSensedLocation::CallFunc_GetLastSensedLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_SniperTargeting_C_IsAwareOfTarget \ +static_assert(alignof(GA_Additive_SniperTargeting_C_IsAwareOfTarget) == 0x000008, "Wrong alignment on GA_Additive_SniperTargeting_C_IsAwareOfTarget"); \ +static_assert(sizeof(GA_Additive_SniperTargeting_C_IsAwareOfTarget) == 0x000038, "Wrong size on GA_Additive_SniperTargeting_C_IsAwareOfTarget"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, Result) == 0x000000, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::Result' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000010, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_MakeLiteralGameplayTag_ReturnValue_1) == 0x000018, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_MakeLiteralGameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_PawnHasStateTag_ReturnValue) == 0x000020, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_PawnHasStateTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1) == 0x000028, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_SniperTargeting_C_IsAwareOfTarget, CallFunc_PawnHasStateTag_ReturnValue_1) == 0x000030, "Member 'GA_Additive_SniperTargeting_C_IsAwareOfTarget::CallFunc_PawnHasStateTag_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_SniperTargeting_C \ +static_assert(alignof(UGA_Additive_SniperTargeting_C) == 0x000008, "Wrong alignment on UGA_Additive_SniperTargeting_C"); \ +static_assert(sizeof(UGA_Additive_SniperTargeting_C) == 0x0006B8, "Wrong size on UGA_Additive_SniperTargeting_C"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, UberGraphFrame) == 0x000668, "Member 'UGA_Additive_SniperTargeting_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, Dist) == 0x000670, "Member 'UGA_Additive_SniperTargeting_C::Dist' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, SniperSpline) == 0x000678, "Member 'UGA_Additive_SniperTargeting_C::SniperSpline' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, Rifle) == 0x000680, "Member 'UGA_Additive_SniperTargeting_C::Rifle' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, SniperComponent) == 0x000688, "Member 'UGA_Additive_SniperTargeting_C::SniperComponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, Duration) == 0x000690, "Member 'UGA_Additive_SniperTargeting_C::Duration' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, CrouchAbilitySpec) == 0x000698, "Member 'UGA_Additive_SniperTargeting_C::CrouchAbilitySpec' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, Crouch) == 0x00069C, "Member 'UGA_Additive_SniperTargeting_C::Crouch' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, TargetTrackedIntoCombatAbility) == 0x0006A0, "Member 'UGA_Additive_SniperTargeting_C::TargetTrackedIntoCombatAbility' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, StateTreeComponent) == 0x0006A8, "Member 'UGA_Additive_SniperTargeting_C::StateTreeComponent' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_SniperTargeting_C, RangedWeaponInstance) == 0x0006B0, "Member 'UGA_Additive_SniperTargeting_C::RangedWeaponInstance' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight \ +static_assert(alignof(BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight) == 0x000004, "Wrong alignment on BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight"); \ +static_assert(sizeof(BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight) == 0x000004, "Wrong size on BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight"); \ +static_assert(offsetof(BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight, EntryPoint) == 0x000000, "Member 'BP_ClubLight_C_ExecuteUbergraph_BP_ClubLight::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ClubLight_C \ +static_assert(alignof(ABP_ClubLight_C) == 0x000008, "Wrong alignment on ABP_ClubLight_C"); \ +static_assert(sizeof(ABP_ClubLight_C) == 0x0002B8, "Wrong size on ABP_ClubLight_C"); \ +static_assert(offsetof(ABP_ClubLight_C, UberGraphFrame) == 0x000298, "Member 'ABP_ClubLight_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_C, S_EV_SimpleLightBeam_01) == 0x0002A0, "Member 'ABP_ClubLight_C::S_EV_SimpleLightBeam_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_C, SM_lamp_up3c) == 0x0002A8, "Member 'ABP_ClubLight_C::SM_lamp_up3c' has a wrong offset!"); \ +static_assert(offsetof(ABP_ClubLight_C, DefaultSceneRoot) == 0x0002B0, "Member 'ABP_ClubLight_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_SniperTargeting_Patrol_C \ +static_assert(alignof(UGA_Additive_SniperTargeting_Patrol_C) == 0x000008, "Wrong alignment on UGA_Additive_SniperTargeting_Patrol_C"); \ +static_assert(sizeof(UGA_Additive_SniperTargeting_Patrol_C) == 0x0006B8, "Wrong size on UGA_Additive_SniperTargeting_Patrol_C"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE \ +static_assert(alignof(GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE) == 0x000008, "Wrong alignment on GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(sizeof(GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE) == 0x0000B8, "Wrong size on GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(offsetof(GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE, EventTag) == 0x000000, "Member 'GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE, EventData) == 0x000008, "Member 'GA_Additive_Bartend_C_EventReceived_812311094D4E0CB416CADCBC8512DACE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend \ +static_assert(alignof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend) == 0x000010, "Wrong alignment on GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend"); \ +static_assert(sizeof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend) == 0x0005E0, "Wrong size on GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, EntryPoint) == 0x000000, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventTag_2) == 0x000004, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventData_2) == 0x000010, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventTag_1) == 0x0000C0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventData_1) == 0x0000C8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventTag) == 0x000188, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventData) == 0x000190, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, Temp_struct_Variable) == 0x000250, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, Temp_struct_Variable_1) == 0x000300, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess) == 0x000308, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::GameplayTagsK2Node_SwitchGameplayTag_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_2) == 0x00030C, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_3) == 0x00031C, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventTag_4) == 0x00032C, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventData_4) == 0x000338, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_GetMontage_ReturnValue) == 0x0003E8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_4) == 0x0003F0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000400, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_Event_bWasCancelled) == 0x000408, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue) == 0x000409, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_TaskOwner_CastInput) == 0x000410, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_TaskOwner_CastInput' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_ReturnValue) == 0x000420, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue_1) == 0x000428, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_Array_Random_OutItem) == 0x000430, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_Array_Random_OutItem' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_Array_Random_OutIndex) == 0x000438, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_Array_Random_OutIndex' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue) == 0x000440, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_GetAvatarActorAsWrestlerCharacterBase_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_K2_AttachToComponent_ReturnValue) == 0x000448, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_GetSocketTransform_ReturnValue) == 0x000450, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_GetSocketTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0004B0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_FinishSpawningActor_ReturnValue) == 0x0004B8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_K2_SetActorRotation_ReturnValue) == 0x0004C0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_K2_SetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue_2) == 0x0004C1, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_GetComponentByClass_ReturnValue) == 0x0004C8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue_3) == 0x0004D0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_TaskOwner_CastInput_1) == 0x0004D8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_TaskOwner_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_ReturnValue_1) == 0x0004E8, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue_4) == 0x0004F0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_IsValid_ReturnValue_5) == 0x0004F1, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventTag_3) == 0x0004F4, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CustomEvent_EventData_3) == 0x000500, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_5) == 0x0005B0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, K2Node_CreateDelegate_OutputDelegate_6) == 0x0005C0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_Time_ImplicitCast) == 0x0005D0, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_Time_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend, CallFunc_TaskWaitDelay_Time_ImplicitCast_1) == 0x0005D4, "Member 'GA_Additive_Bartend_C_ExecuteUbergraph_GA_Additive_Bartend::CallFunc_TaskWaitDelay_Time_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_K2_OnEndAbility \ +static_assert(alignof(GA_Additive_Bartend_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_Additive_Bartend_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_Additive_Bartend_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_Additive_Bartend_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_Additive_Bartend_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_Additive_Bartend_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE \ +static_assert(alignof(GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE) == 0x000008, "Wrong alignment on GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(sizeof(GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE) == 0x0000B8, "Wrong size on GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE, EventTag) == 0x000000, "Member 'GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE, EventData) == 0x000008, "Member 'GA_Additive_Bartend_C_OnBlendOut_812311094D4E0CB416CADCBC8512DACE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE \ +static_assert(alignof(GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE) == 0x000008, "Wrong alignment on GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(sizeof(GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE) == 0x0000B8, "Wrong size on GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE, EventTag) == 0x000000, "Member 'GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE, EventData) == 0x000008, "Member 'GA_Additive_Bartend_C_OnCancelled_812311094D4E0CB416CADCBC8512DACE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE \ +static_assert(alignof(GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE) == 0x000008, "Wrong alignment on GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(sizeof(GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE) == 0x0000B8, "Wrong size on GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE, EventTag) == 0x000000, "Member 'GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE, EventData) == 0x000008, "Member 'GA_Additive_Bartend_C_OnCompleted_812311094D4E0CB416CADCBC8512DACE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE \ +static_assert(alignof(GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE) == 0x000008, "Wrong alignment on GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(sizeof(GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE) == 0x0000B8, "Wrong size on GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE, EventTag) == 0x000000, "Member 'GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE, EventData) == 0x000008, "Member 'GA_Additive_Bartend_C_OnInterrupted_812311094D4E0CB416CADCBC8512DACE::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Additive_Bartend_C \ +static_assert(alignof(UGA_Additive_Bartend_C) == 0x000008, "Wrong alignment on UGA_Additive_Bartend_C"); \ +static_assert(sizeof(UGA_Additive_Bartend_C) == 0x0006A0, "Wrong size on UGA_Additive_Bartend_C"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, UberGraphFrame) == 0x000668, "Member 'UGA_Additive_Bartend_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, PreBehaviourDelay) == 0x000670, "Member 'UGA_Additive_Bartend_C::PreBehaviourDelay' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, ItemSpawnPool) == 0x000678, "Member 'UGA_Additive_Bartend_C::ItemSpawnPool' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, AttachSocketName) == 0x000688, "Member 'UGA_Additive_Bartend_C::AttachSocketName' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, SpawnedItem) == 0x000690, "Member 'UGA_Additive_Bartend_C::SpawnedItem' has a wrong offset!"); \ +static_assert(offsetof(UGA_Additive_Bartend_C, BehaviourCooldown) == 0x000698, "Member 'UGA_Additive_Bartend_C::BehaviourCooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UManageLevels_C \ +static_assert(alignof(UManageLevels_C) == 0x000010, "Wrong alignment on UManageLevels_C"); \ +static_assert(sizeof(UManageLevels_C) == 0x0000C0, "Wrong size on UManageLevels_C"); \ + +#define DUMPER7_ASSERTS_BP_SMG_C_ExecuteUbergraph_BP_SMG \ +static_assert(alignof(BP_SMG_C_ExecuteUbergraph_BP_SMG) == 0x000004, "Wrong alignment on BP_SMG_C_ExecuteUbergraph_BP_SMG"); \ +static_assert(sizeof(BP_SMG_C_ExecuteUbergraph_BP_SMG) == 0x000004, "Wrong size on BP_SMG_C_ExecuteUbergraph_BP_SMG"); \ +static_assert(offsetof(BP_SMG_C_ExecuteUbergraph_BP_SMG, EntryPoint) == 0x000000, "Member 'BP_SMG_C_ExecuteUbergraph_BP_SMG::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_SMG_C \ +static_assert(alignof(ABP_SMG_C) == 0x000008, "Wrong alignment on ABP_SMG_C"); \ +static_assert(sizeof(ABP_SMG_C) == 0x0003C8, "Wrong size on ABP_SMG_C"); \ +static_assert(offsetof(ABP_SMG_C, UberGraphFrame_BP_SMG_C) == 0x0003B8, "Member 'ABP_SMG_C::UberGraphFrame_BP_SMG_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_SMG_C, VFX_AssaultMuzzle) == 0x0003C0, "Member 'ABP_SMG_C::VFX_AssaultMuzzle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird \ +static_assert(alignof(GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird) == 0x000004, "Wrong alignment on GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird"); \ +static_assert(sizeof(GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird) == 0x000004, "Wrong size on GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird"); \ +static_assert(offsetof(GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Reaction_Something_Weird_C_ExecuteUbergraph_GA_Patrol_Action_Reaction_Something_Weird::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Reaction_Something_Weird_C \ +static_assert(alignof(UGA_Patrol_Action_Reaction_Something_Weird_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Reaction_Something_Weird_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Reaction_Something_Weird_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Reaction_Something_Weird_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Reaction_Something_Weird_C, UberGraphFrame_GA_Patrol_Action_Reaction_Something_Weird_C) == 0x000690, "Member 'UGA_Patrol_Action_Reaction_Something_Weird_C::UberGraphFrame_GA_Patrol_Action_Reaction_Something_Weird_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_ViewItem \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_ViewItem) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_ViewItem"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_ViewItem) == 0x000010, "Wrong size on WBP_CodexRPGMenuTab_C_ViewItem"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ViewItem, InItem) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_ViewItem::InItem' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ViewItem, CallFunc_GetDepth_ReturnValue) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_ViewItem::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ViewItem, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_CodexRPGMenuTab_C_ViewItem::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ViewItem, CallFunc_IsItemViewed_ReturnValue) == 0x00000D, "Member 'WBP_CodexRPGMenuTab_C_ViewItem::CallFunc_IsItemViewed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ViewItem, CallFunc_IsValid_ReturnValue) == 0x00000E, "Member 'WBP_CodexRPGMenuTab_C_ViewItem::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_UpdateDescription \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_UpdateDescription) == 0x000001, "Wrong alignment on WBP_CodexRPGMenuTab_C_UpdateDescription"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_UpdateDescription) == 0x000001, "Wrong size on WBP_CodexRPGMenuTab_C_UpdateDescription"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateDescription, bNewInputType) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_UpdateDescription::bNewInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers) == 0x000058, "Wrong size on WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, K2Node_DynamicCast_AsWBP_Codex_Entry) == 0x000038, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::K2Node_DynamicCast_AsWBP_Codex_Entry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetItem_ReturnValue) == 0x000048, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetDepth_ReturnValue) == 0x000050, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000054, "Member 'WBP_CodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_Update_Panel \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_Update_Panel) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_Update_Panel"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_Update_Panel) == 0x000088, "Wrong size on WBP_CodexRPGMenuTab_C_Update_Panel"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetOuterObject_ReturnValue) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetOuterObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, K2Node_DynamicCast_AsCodex_Item) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetDescription_ReturnValue) == 0x000038, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetDescription_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue_1) == 0x000050, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue_2) == 0x000068, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_GetDepth_ReturnValue) == 0x000080, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Update_Panel, CallFunc_Greater_IntInt_ReturnValue) == 0x000084, "Member 'WBP_CodexRPGMenuTab_C_Update_Panel::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_ShowItem \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_ShowItem) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_ShowItem"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_ShowItem) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_ShowItem"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ShowItem, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_ShowItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_SetUpTree \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_SetUpTree) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_SetUpTree"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_SetUpTree) == 0x000058, "Wrong size on WBP_CodexRPGMenuTab_C_SetUpTree"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, Categories) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::Categories' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000020, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_GetCodexRoot_ReturnValue) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_GetCodexRoot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_GetItemsWithChildren_ReturnValue) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_GetItemsWithChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_Array_Get_Item) == 0x000040, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_IsExpanded_ReturnValue) == 0x000048, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_IsExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_SetUpTree, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'WBP_CodexRPGMenuTab_C_SetUpTree::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_Set_Foreground_Image \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_Set_Foreground_Image) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_Set_Foreground_Image"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_Set_Foreground_Image) == 0x000018, "Wrong size on WBP_CodexRPGMenuTab_C_Set_Foreground_Image"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Set_Foreground_Image, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_Set_Foreground_Image::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Set_Foreground_Image, CallFunc_GetForeground_bHasImage) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_Set_Foreground_Image::CallFunc_GetForeground_bHasImage' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Set_Foreground_Image, CallFunc_GetForeground_ReturnValue) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_Set_Foreground_Image::CallFunc_GetForeground_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_Set_Background_Image \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_Set_Background_Image) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_Set_Background_Image"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_Set_Background_Image) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_Set_Background_Image"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_Set_Background_Image, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_Set_Background_Image::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_ReplaceInputMarkups \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_ReplaceInputMarkups"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups) == 0x0000B8, "Wrong size on WBP_CodexRPGMenuTab_C_ReplaceInputMarkups"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, Description) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::Description' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, PlatformText) == 0x000018, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::PlatformText' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetInputText_ReturnValue) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetInputText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetInputText_ReturnValue2) == 0x000040, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetInputText_ReturnValue2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetInputText_ReturnValue_1) == 0x000048, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetInputText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetInputText_ReturnValue2_1) == 0x000060, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetInputText_ReturnValue2_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000068, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_GetCurrentInputType_ReturnValue) == 0x000070, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, K2Node_SwitchEnum_CmpSuccess) == 0x000071, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_Conv_TextToString_ReturnValue) == 0x000078, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_Contains_ReturnValue) == 0x000088, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_Split_LeftS) == 0x000090, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_Split_RightS) == 0x0000A0, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReplaceInputMarkups, CallFunc_Split_ReturnValue) == 0x0000B0, "Member 'WBP_CodexRPGMenuTab_C_ReplaceInputMarkups::CallFunc_Split_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem) == 0x000010, "Wrong size on WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_ReceiveCodexShowItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_OnKeyDown \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_OnKeyDown) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_OnKeyDown"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_OnKeyDown) == 0x000278, "Wrong size on WBP_CodexRPGMenuTab_C_OnKeyDown"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, MyGeometry) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, InKeyEvent) == 0x000038, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, ReturnValue) == 0x000078, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_GetKey_ReturnValue) == 0x000130, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_GetScrollOffset_ReturnValue) == 0x000148, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_GetScrollOffset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x00014C, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000150, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000158, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_GetKey_ReturnValue_1) == 0x000160, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_GetKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_2) == 0x000178, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_3) == 0x000179, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_BooleanOR_ReturnValue) == 0x00017A, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_GetScrollOffset_ReturnValue_1) == 0x00017C, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_GetScrollOffset_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000180, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_Handled_ReturnValue) == 0x000188, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_BP_GetSelectedItem_ReturnValue) == 0x000240, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_BP_GetSelectedItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, K2Node_DynamicCast_AsCodex_Item) == 0x000248, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, K2Node_DynamicCast_bSuccess) == 0x000250, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_IsExpanded_ReturnValue) == 0x000251, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_IsExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000258, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast) == 0x000260, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000268, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnKeyDown, CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast_1) == 0x000270, "Member 'WBP_CodexRPGMenuTab_C_OnKeyDown::CallFunc_SetScrollOffset_NewScrollOffset_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren) == 0x000038, "Wrong size on WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren, Children) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren::Children' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren, K2Node_DynamicCast_AsCodex_Item) == 0x000018, "Member 'WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren, CallFunc_GetSortedItems_ReturnValue) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_OnBP_OnGetItemChildren::CallFunc_GetSortedItems_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_GetOffViewItems \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_GetOffViewItems) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_GetOffViewItems"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_GetOffViewItems) == 0x000038, "Wrong size on WBP_CodexRPGMenuTab_C_GetOffViewItems"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, OffViewItems) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::OffViewItems' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, CallFunc_GetListItems_ReturnValue) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::CallFunc_GetListItems_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x000018, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, CallFunc_Array_Length_ReturnValue_1) == 0x00002C, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetOffViewItems, CallFunc_Subtract_IntInt_ReturnValue) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_GetOffViewItems::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_GetInputText \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_GetInputText) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_GetInputText"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_GetInputText) == 0x000258, "Wrong size on WBP_CodexRPGMenuTab_C_GetInputText"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, PlatformTxt) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::PlatformTxt' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, ReturnValue) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, ReturnValue2) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::ReturnValue2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, FirstPart) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::FirstPart' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, SecondPart) == 0x000040, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::SecondPart' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue) == 0x000058, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_LeftS) == 0x000068, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_RightS) == 0x000078, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_ReturnValue) == 0x000088, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Conv_StringToText_ReturnValue) == 0x000090, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Concat_StrStr_ReturnValue) == 0x0000A8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue_1) == 0x0000B8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_LeftS_1) == 0x0000C8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_LeftS_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_RightS_1) == 0x0000D8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_RightS_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_ReturnValue_1) == 0x0000E8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_LeftS_2) == 0x0000F0, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_LeftS_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_RightS_2) == 0x000100, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_RightS_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_ReturnValue_2) == 0x000110, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_LeftS_3) == 0x000118, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_LeftS_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_RightS_3) == 0x000128, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_RightS_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Split_ReturnValue_3) == 0x000138, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Split_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_GetInputText_ReturnValue) == 0x000140, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_GetInputText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_GetInputText_ReturnValue2) == 0x000158, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_GetInputText_ReturnValue2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000160, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Contains_ReturnValue) == 0x000170, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000178, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Conv_TextToString_ReturnValue) == 0x000180, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000190, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Map_Find_Value) == 0x0001A0, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Map_Find_ReturnValue) == 0x0001A8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Conv_StringToText_ReturnValue_1) == 0x0001B0, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_GetIconName_ReturnValue) == 0x0001C8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_GetIconName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue_2) == 0x0001D8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue_3) == 0x0001E8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue_4) == 0x0001F8, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Replace_ReturnValue_5) == 0x000208, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Replace_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Conv_StringToText_ReturnValue_2) == 0x000218, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Conv_StringToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000230, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_GetInputText, CallFunc_Conv_StringToText_ReturnValue_3) == 0x000240, "Member 'WBP_CodexRPGMenuTab_C_GetInputText::CallFunc_Conv_StringToText_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab) == 0x000190, "Wrong size on WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, EntryPoint) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_bool_IsClosed_Variable) == 0x000004, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_bool_True_if_break_was_hit_Variable) == 0x000005, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_Not_PreBool_ReturnValue) == 0x00000C, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Button_1) == 0x000020, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_3) == 0x000028, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_2) == 0x000030, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_bIsSelected) == 0x000038, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_bIsSelected' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item) == 0x000040, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item_1) == 0x000050, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_Event_Item) == 0x000060, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_Event_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_1) == 0x000070, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_bIsHovered) == 0x000078, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_bIsHovered' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_CustomEvent_bNewInputType) == 0x000079, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_CustomEvent_bNewInputType' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_bool_Has_Been_Initd_Variable) == 0x00007A, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_int_Loop_Counter_Variable) == 0x00007C, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, Temp_delegate_Variable) == 0x000080, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_Add_IntInt_ReturnValue) == 0x000090, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x000098, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_CustomEvent_Item) == 0x0000A0, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_CustomEvent_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x0000A8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetItemAt_ReturnValue) == 0x0000B8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetItemAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_Array_Get_Item) == 0x0000C0, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item_2) == 0x0000C8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_bSuccess_2) == 0x0000D0, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_AsWBP_Codex_Entry) == 0x0000D8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_AsWBP_Codex_Entry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_DynamicCast_bSuccess_3) == 0x0000E0, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetItem_ReturnValue) == 0x0000E8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_Array_Length_ReturnValue) == 0x0000F0, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_Less_IntInt_ReturnValue) == 0x0000F4, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_IsValid_ReturnValue) == 0x0000F5, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_BooleanAND_ReturnValue) == 0x0000F6, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Item) == 0x0000F8, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Widget) == 0x000100, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000108, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_IsValid_ReturnValue_1) == 0x000109, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetParent_ReturnValue) == 0x000110, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetParent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_IsValid_ReturnValue_2) == 0x000118, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_SetExpanded_ReturnValue) == 0x000119, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_SetExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetMousePositionOnViewport_ReturnValue) == 0x000120, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetMousePositionOnViewport_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetMousePositionOnViewport_ReturnValue_1) == 0x000130, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetMousePositionOnViewport_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_NotEqual_Vector2DVector2D_ReturnValue) == 0x000140, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_NotEqual_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000148, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_BooleanAND_ReturnValue_1) == 0x000150, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetCodexRoot_ReturnValue) == 0x000158, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetCodexRoot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_FindRecursive_ReturnValue) == 0x000160, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_FindRecursive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_Button) == 0x000168, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000170, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_ItemOffset) == 0x000178, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_ItemOffset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, K2Node_ComponentBoundEvent_DistanceRemaining) == 0x00017C, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::K2Node_ComponentBoundEvent_DistanceRemaining' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_BP_GetSelectedItem_ReturnValue) == 0x000180, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_BP_GetSelectedItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000188, "Member 'WBP_CodexRPGMenuTab_C_ExecuteUbergraph_WBP_CodexRPGMenuTab::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature, ItemOffset) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature::ItemOffset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature, DistanceRemaining) == 0x000004, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_6_OnListViewScrolledDynamic__DelegateSignature::DistanceRemaining' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature, Widget) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature, bIsHovered) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature::bIsHovered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature, bIsSelected) == 0x000008, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'WBP_CodexRPGMenuTab_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CodexRPGMenuTab_C \ +static_assert(alignof(UWBP_CodexRPGMenuTab_C) == 0x000008, "Wrong alignment on UWBP_CodexRPGMenuTab_C"); \ +static_assert(sizeof(UWBP_CodexRPGMenuTab_C) == 0x0005A0, "Wrong size on UWBP_CodexRPGMenuTab_C"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, UberGraphFrame) == 0x0004A8, "Member 'UWBP_CodexRPGMenuTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, Back) == 0x0004B0, "Member 'UWBP_CodexRPGMenuTab_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexBackgroundImage) == 0x0004B8, "Member 'UWBP_CodexRPGMenuTab_C::CodexBackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexDescriptionText) == 0x0004C0, "Member 'UWBP_CodexRPGMenuTab_C::CodexDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexForegroundImage) == 0x0004C8, "Member 'UWBP_CodexRPGMenuTab_C::CodexForegroundImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexTitle) == 0x0004D0, "Member 'UWBP_CodexRPGMenuTab_C::CodexTitle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexTreeView) == 0x0004D8, "Member 'UWBP_CodexRPGMenuTab_C::CodexTreeView' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, ContentScroll) == 0x0004E0, "Member 'UWBP_CodexRPGMenuTab_C::ContentScroll' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DescriptionText) == 0x0004E8, "Member 'UWBP_CodexRPGMenuTab_C::DescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DivLine_Descript_Bottom) == 0x0004F0, "Member 'UWBP_CodexRPGMenuTab_C::DivLine_Descript_Bottom' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DivLine_Descript_Top) == 0x0004F8, "Member 'UWBP_CodexRPGMenuTab_C::DivLine_Descript_Top' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DivLine_Descript_TopPattern) == 0x000500, "Member 'UWBP_CodexRPGMenuTab_C::DivLine_Descript_TopPattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DivLine_Top) == 0x000508, "Member 'UWBP_CodexRPGMenuTab_C::DivLine_Top' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, Frame_01) == 0x000510, "Member 'UWBP_CodexRPGMenuTab_C::Frame_01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, Image) == 0x000518, "Member 'UWBP_CodexRPGMenuTab_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, NavigationActionButton) == 0x000520, "Member 'UWBP_CodexRPGMenuTab_C::NavigationActionButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, OpenCategoryActionButton) == 0x000528, "Member 'UWBP_CodexRPGMenuTab_C::OpenCategoryActionButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, ParentCodexTitle) == 0x000530, "Member 'UWBP_CodexRPGMenuTab_C::ParentCodexTitle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, Pattern) == 0x000538, "Member 'UWBP_CodexRPGMenuTab_C::Pattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, SortButton) == 0x000540, "Member 'UWBP_CodexRPGMenuTab_C::SortButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CurrentOpenItems) == 0x000548, "Member 'UWBP_CodexRPGMenuTab_C::CurrentOpenItems' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, DesiredWidgetToFocus) == 0x000550, "Member 'UWBP_CodexRPGMenuTab_C::DesiredWidgetToFocus' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CurrentOriginalDescription) == 0x000558, "Member 'UWBP_CodexRPGMenuTab_C::CurrentOriginalDescription' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, LastViewedItem) == 0x000570, "Member 'UWBP_CodexRPGMenuTab_C::LastViewedItem' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, CodexEntry) == 0x000578, "Member 'UWBP_CodexRPGMenuTab_C::CodexEntry' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, ShowingEntry) == 0x000580, "Member 'UWBP_CodexRPGMenuTab_C::ShowingEntry' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, LastMouse) == 0x000588, "Member 'UWBP_CodexRPGMenuTab_C::LastMouse' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexRPGMenuTab_C, InputLookout) == 0x000598, "Member 'UWBP_CodexRPGMenuTab_C::InputLookout' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife \ +static_assert(alignof(GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife) == 0x000004, "Wrong alignment on GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife"); \ +static_assert(sizeof(GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife) == 0x000004, "Wrong size on GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife"); \ +static_assert(offsetof(GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife, EntryPoint) == 0x000000, "Member 'GA_Patrol_Action_Combat_Idle_Knife_C_ExecuteUbergraph_GA_Patrol_Action_Combat_Idle_Knife::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_Patrol_Action_Combat_Idle_Knife_C \ +static_assert(alignof(UGA_Patrol_Action_Combat_Idle_Knife_C) == 0x000008, "Wrong alignment on UGA_Patrol_Action_Combat_Idle_Knife_C"); \ +static_assert(sizeof(UGA_Patrol_Action_Combat_Idle_Knife_C) == 0x000698, "Wrong size on UGA_Patrol_Action_Combat_Idle_Knife_C"); \ +static_assert(offsetof(UGA_Patrol_Action_Combat_Idle_Knife_C, UberGraphFrame_GA_Patrol_Action_Combat_Idle_Knife_C) == 0x000690, "Member 'UGA_Patrol_Action_Combat_Idle_Knife_C::UberGraphFrame_GA_Patrol_Action_Combat_Idle_Knife_C' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWID_SMG_C \ +static_assert(alignof(UWID_SMG_C) == 0x000010, "Wrong alignment on UWID_SMG_C"); \ +static_assert(sizeof(UWID_SMG_C) == 0x0000D0, "Wrong size on UWID_SMG_C"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerGameStateInGame_C \ +static_assert(alignof(ABP_WrestlerGameStateInGame_C) == 0x000008, "Wrong alignment on ABP_WrestlerGameStateInGame_C"); \ +static_assert(sizeof(ABP_WrestlerGameStateInGame_C) == 0x000330, "Wrong size on ABP_WrestlerGameStateInGame_C"); \ +static_assert(offsetof(ABP_WrestlerGameStateInGame_C, DefaultSceneRoot) == 0x000328, "Member 'ABP_WrestlerGameStateInGame_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD \ +static_assert(alignof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD) == 0x000008, "Wrong alignment on ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD"); \ +static_assert(sizeof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD) == 0x000030, "Wrong size on ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, EntryPoint) == 0x000000, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, K2Node_DynamicCast_AsHera_HUD) == 0x000010, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, K2Node_Event_InAutomata) == 0x000020, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD, K2Node_Event_InState) == 0x000028, "Member 'ShowPlayerHUD_C_ExecuteUbergraph_ShowPlayerHUD::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowPlayerHUD_C_ReceiveExecute \ +static_assert(alignof(ShowPlayerHUD_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowPlayerHUD_C_ReceiveExecute"); \ +static_assert(sizeof(ShowPlayerHUD_C_ReceiveExecute) == 0x000010, "Wrong size on ShowPlayerHUD_C_ReceiveExecute"); \ +static_assert(offsetof(ShowPlayerHUD_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowPlayerHUD_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowPlayerHUD_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowPlayerHUD_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowPlayerHUD_C \ +static_assert(alignof(UShowPlayerHUD_C) == 0x000008, "Wrong alignment on UShowPlayerHUD_C"); \ +static_assert(sizeof(UShowPlayerHUD_C) == 0x000090, "Wrong size on UShowPlayerHUD_C"); \ +static_assert(offsetof(UShowPlayerHUD_C, UberGraphFrame) == 0x000088, "Member 'UShowPlayerHUD_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer \ +static_assert(alignof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer) == 0x000008, "Wrong alignment on UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer"); \ +static_assert(sizeof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer) == 0x000028, "Wrong size on UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer, EntryPoint) == 0x000000, "Member 'UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer, K2Node_Event_InState) == 0x000010, "Member 'UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'UnBlockAbilityOnPlayer_C_ExecuteUbergraph_UnBlockAbilityOnPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnBlockAbilityOnPlayer_C_ReceiveExecute \ +static_assert(alignof(UnBlockAbilityOnPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnBlockAbilityOnPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(UnBlockAbilityOnPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on UnBlockAbilityOnPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnBlockAbilityOnPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnBlockAbilityOnPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'UnBlockAbilityOnPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnBlockAbilityOnPlayer_C \ +static_assert(alignof(UUnBlockAbilityOnPlayer_C) == 0x000008, "Wrong alignment on UUnBlockAbilityOnPlayer_C"); \ +static_assert(sizeof(UUnBlockAbilityOnPlayer_C) == 0x0000B0, "Wrong size on UUnBlockAbilityOnPlayer_C"); \ +static_assert(offsetof(UUnBlockAbilityOnPlayer_C, UberGraphFrame) == 0x000088, "Member 'UUnBlockAbilityOnPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UUnBlockAbilityOnPlayer_C, Ability_Tag) == 0x000090, "Member 'UUnBlockAbilityOnPlayer_C::Ability_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_MOTF_BS_Bouncer_C \ +static_assert(alignof(UPD_MOTF_BS_Bouncer_C) == 0x000008, "Wrong alignment on UPD_MOTF_BS_Bouncer_C"); \ +static_assert(sizeof(UPD_MOTF_BS_Bouncer_C) == 0x000058, "Wrong size on UPD_MOTF_BS_Bouncer_C"); \ + +#define DUMPER7_ASSERTS_BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer \ +static_assert(alignof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer) == 0x000008, "Wrong alignment on BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer"); \ +static_assert(sizeof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer) == 0x000028, "Wrong size on BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer, EntryPoint) == 0x000000, "Member 'BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer, K2Node_Event_InState) == 0x000010, "Member 'BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BlockAbilityOnPlayer_C_ExecuteUbergraph_BlockAbilityOnPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockAbilityOnPlayer_C_ReceiveExecute \ +static_assert(alignof(BlockAbilityOnPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on BlockAbilityOnPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(BlockAbilityOnPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on BlockAbilityOnPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'BlockAbilityOnPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BlockAbilityOnPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'BlockAbilityOnPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlockAbilityOnPlayer_C \ +static_assert(alignof(UBlockAbilityOnPlayer_C) == 0x000008, "Wrong alignment on UBlockAbilityOnPlayer_C"); \ +static_assert(sizeof(UBlockAbilityOnPlayer_C) == 0x0000B0, "Wrong size on UBlockAbilityOnPlayer_C"); \ +static_assert(offsetof(UBlockAbilityOnPlayer_C, UberGraphFrame) == 0x000088, "Member 'UBlockAbilityOnPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBlockAbilityOnPlayer_C, Ability_Tag) == 0x000090, "Member 'UBlockAbilityOnPlayer_C::Ability_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_MOTF_CG_Pandora_C \ +static_assert(alignof(UPD_MOTF_CG_Pandora_C) == 0x000008, "Wrong alignment on UPD_MOTF_CG_Pandora_C"); \ +static_assert(sizeof(UPD_MOTF_CG_Pandora_C) == 0x000058, "Wrong size on UPD_MOTF_CG_Pandora_C"); \ + +#define DUMPER7_ASSERTS_KillPlayer_C_ExecuteUbergraph_KillPlayer \ +static_assert(alignof(KillPlayer_C_ExecuteUbergraph_KillPlayer) == 0x000008, "Wrong alignment on KillPlayer_C_ExecuteUbergraph_KillPlayer"); \ +static_assert(sizeof(KillPlayer_C_ExecuteUbergraph_KillPlayer) == 0x000038, "Wrong size on KillPlayer_C_ExecuteUbergraph_KillPlayer"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, EntryPoint) == 0x000000, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, K2Node_Event_InState) == 0x000010, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000018, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, K2Node_DynamicCast_AsWrestler_Character_Base) == 0x000028, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::K2Node_DynamicCast_AsWrestler_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ExecuteUbergraph_KillPlayer, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'KillPlayer_C_ExecuteUbergraph_KillPlayer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillPlayer_C_ReceiveExecute \ +static_assert(alignof(KillPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on KillPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(KillPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on KillPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(KillPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'KillPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'KillPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKillPlayer_C \ +static_assert(alignof(UKillPlayer_C) == 0x000008, "Wrong alignment on UKillPlayer_C"); \ +static_assert(sizeof(UKillPlayer_C) == 0x000090, "Wrong size on UKillPlayer_C"); \ +static_assert(offsetof(UKillPlayer_C, UberGraphFrame) == 0x000088, "Member 'UKillPlayer_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode \ +static_assert(alignof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode) == 0x000008, "Wrong alignment on SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode"); \ +static_assert(sizeof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode) == 0x000030, "Wrong size on SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, EntryPoint) == 0x000000, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, K2Node_Event_InAutomata) == 0x000008, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, K2Node_Event_InState) == 0x000010, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, CallFunc_GetPlayerState_ReturnValue) == 0x000018, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000020, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'SetNarrativeMode_C_ExecuteUbergraph_SetNarrativeMode::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetNarrativeMode_C_ReceiveExecute \ +static_assert(alignof(SetNarrativeMode_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetNarrativeMode_C_ReceiveExecute"); \ +static_assert(sizeof(SetNarrativeMode_C_ReceiveExecute) == 0x000010, "Wrong size on SetNarrativeMode_C_ReceiveExecute"); \ +static_assert(offsetof(SetNarrativeMode_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetNarrativeMode_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetNarrativeMode_C_ReceiveExecute, InState) == 0x000008, "Member 'SetNarrativeMode_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetNarrativeMode_C \ +static_assert(alignof(USetNarrativeMode_C) == 0x000008, "Wrong alignment on USetNarrativeMode_C"); \ +static_assert(sizeof(USetNarrativeMode_C) == 0x000098, "Wrong size on USetNarrativeMode_C"); \ +static_assert(offsetof(USetNarrativeMode_C, UberGraphFrame) == 0x000088, "Member 'USetNarrativeMode_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetNarrativeMode_C, Enabled) == 0x000090, "Member 'USetNarrativeMode_C::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_FakeElevator_InsideButtonInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_FakeElevator_OutsideButtonInteraction_K2Node_ComponentBoundEvent_5_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_0_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_FakeElevator_C_BndEvt__BP_JohnN_Elevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_FakeElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_FakeElevator_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator \ +static_assert(alignof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator) == 0x000010, "Wrong alignment on BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator"); \ +static_assert(sizeof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator) == 0x000850, "Wrong size on BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, EntryPoint) == 0x000000, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable) == 0x000004, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_Variable) == 0x000024, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_Variable_1) == 0x000025, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable_2) == 0x000028, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable_3) == 0x000038, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable_4) == 0x000048, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_X) == 0x000058, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_Y) == 0x000060, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_Z) == 0x000068, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_X_1) == 0x000070, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_Y_1) == 0x000078, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BreakVector_Z_1) == 0x000080, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_Variable_2) == 0x000088, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_delegate_Variable_5) == 0x00008C, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_delegate_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_SwitchEnum_CmpSuccess) == 0x00009C, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OverlappedComponent_3) == 0x0000A0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OverlappedComponent_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherActor_3) == 0x0000A8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherActor_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherComp_3) == 0x0000B0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherComp_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherBodyIndex_3) == 0x0000B8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherBodyIndex_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerPawn_ReturnValue) == 0x0000C0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x0000C8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0000D0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x0000D8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000E0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OverlappedComponent_2) == 0x0000E8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OverlappedComponent_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherActor_2) == 0x0000F0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherComp_2) == 0x0000F8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherComp_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherBodyIndex_2) == 0x000100, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherBodyIndex_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_bFromSweep_1) == 0x000104, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_bFromSweep_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_SweepResult_1) == 0x000108, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_SweepResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0001F0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x0001F8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerState_ReturnValue) == 0x000200, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000208, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess) == 0x000210, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1) == 0x000218, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_1) == 0x000220, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000228, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsHera_Mission_Objective) == 0x000230, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsHera_Mission_Objective' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_2) == 0x000238, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_Has_Been_Initd_Variable) == 0x000239, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsValid_ReturnValue) == 0x00023A, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Not_PreBool_ReturnValue) == 0x00023B, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BooleanAND_ReturnValue) == 0x00023C, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x000240, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000248, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000250, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsHera_Mission_Objective_1) == 0x000258, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsHera_Mission_Objective_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_3) == 0x000260, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000268, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsValid_ReturnValue_1) == 0x000270, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_CalculateRelativeTransitionTransform_OutTransform) == 0x000280, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_CalculateRelativeTransitionTransform_OutTransform' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_CalculateRelativeTransitionTransform_ReturnValue) == 0x0002E0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_CalculateRelativeTransitionTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_CustomEvent_ItemState) == 0x0002E1, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_CustomEvent_ItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_InItemState) == 0x0002E2, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Event_InItemState) == 0x0002E3, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x0002E8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x0002F0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsHera_Mission_Objective_2) == 0x0002F8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsHera_Mission_Objective_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_4) == 0x000300, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_ApplyActorRelativeTransform_ReturnValue) == 0x000301, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_ApplyActorRelativeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsValid_ReturnValue_2) == 0x000302, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable) == 0x000303, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_Whether_the_gate_is_currently_open_or_close_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3) == 0x000308, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Select_Default) == 0x000310, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsHera_Mission_Objective_3) == 0x000318, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsHera_Mission_Objective_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_5) == 0x000320, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsValid_ReturnValue_3) == 0x000321, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, Temp_bool_IsClosed_Variable) == 0x000322, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerController_ReturnValue) == 0x000328, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerController_ReturnValue_1) == 0x000330, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OverlappedComponent_1) == 0x000338, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000340, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000348, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherBodyIndex_1) == 0x000350, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_bFromSweep) == 0x000354, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_SweepResult) == 0x000358, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000440, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherActor) == 0x000448, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherComp) == 0x000450, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000458, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000460, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000468, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000488, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000490, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x000498, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0004B8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Event_bInWait) == 0x0004B9, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Event_bInWait' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Event_bInLock) == 0x0004BA, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Event_bInLock' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Event_bInForceOpen) == 0x0004BB, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Event_bInForceOpen' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Event_bInForceClose) == 0x0004BC, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Event_bInForceClose' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_CustomEvent_New_Interact_Location) == 0x0004C0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_CustomEvent_New_Interact_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4) == 0x0004E8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_GetGameInstanceSubsystem_ReturnValue_2) == 0x0004F0, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_GetGameInstanceSubsystem_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_AsActor) == 0x0004F8, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_DynamicCast_bSuccess_6) == 0x000500, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_RequestDataLayerTransition_OutResult) == 0x000501, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_RequestDataLayerTransition_OutResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000508, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_SwitchEnum_CmpSuccess_1) == 0x000520, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsPlayerFabien_Return) == 0x000521, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x000528, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_SwitchEnum_CmpSuccess_2) == 0x000610, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000618, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000620, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_MakeVector_ReturnValue) == 0x000628, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_MakeVector_ReturnValue_1) == 0x000640, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000658, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000740, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_IsPlayerFabien_Return_1) == 0x000828, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000829, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BooleanAND_ReturnValue_1) == 0x00082A, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_BooleanAND_ReturnValue_2) == 0x00082B, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, K2Node_Select_Default_1) == 0x00082C, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000830, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Delay_Duration_ImplicitCast) == 0x000838, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x000840, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x000848, "Member 'BP_FakeElevator_C_ExecuteUbergraph_BP_FakeElevator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_GetDebugString \ +static_assert(alignof(BP_FakeElevator_C_GetDebugString) == 0x000008, "Wrong alignment on BP_FakeElevator_C_GetDebugString"); \ +static_assert(sizeof(BP_FakeElevator_C_GetDebugString) == 0x000178, "Wrong size on BP_FakeElevator_C_GetDebugString"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_FakeElevator_C_GetDebugString::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, DebugString) == 0x000010, "Member 'BP_FakeElevator_C_GetDebugString::DebugString' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, Temp_int_Array_Index_Variable) == 0x000020, "Member 'BP_FakeElevator_C_GetDebugString::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, Temp_int_Loop_Counter_Variable) == 0x000024, "Member 'BP_FakeElevator_C_GetDebugString::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Greater_IntInt_ReturnValue) == 0x000028, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_SelectString_ReturnValue) == 0x000030, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Add_IntInt_ReturnValue) == 0x000040, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue) == 0x000048, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue) == 0x000058, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_1) == 0x000068, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000078, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000088, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_2) == 0x000098, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_3) == 0x0000A8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_3) == 0x0000B8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0000C8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_4) == 0x0000D8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_5) == 0x0000E8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0000F8, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_6) == 0x000108, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Conv_BoolToString_ReturnValue_6) == 0x000118, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Conv_BoolToString_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_7) == 0x000128, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, K2Node_MakeArray_Array) == 0x000138, "Member 'BP_FakeElevator_C_GetDebugString::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Array_Length_ReturnValue) == 0x000148, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Array_Get_Item) == 0x000150, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Less_IntInt_ReturnValue) == 0x000160, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_GetDebugString, CallFunc_Concat_StrStr_ReturnValue_8) == 0x000168, "Member 'BP_FakeElevator_C_GetDebugString::CallFunc_Concat_StrStr_ReturnValue_8' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_GetInteractableData \ +static_assert(alignof(BP_FakeElevator_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_FakeElevator_C_GetInteractableData"); \ +static_assert(sizeof(BP_FakeElevator_C_GetInteractableData) == 0x000018, "Wrong size on BP_FakeElevator_C_GetInteractableData"); \ +static_assert(offsetof(BP_FakeElevator_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_FakeElevator_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_GetItemState \ +static_assert(alignof(BP_FakeElevator_C_GetItemState) == 0x000001, "Wrong alignment on BP_FakeElevator_C_GetItemState"); \ +static_assert(sizeof(BP_FakeElevator_C_GetItemState) == 0x000001, "Wrong size on BP_FakeElevator_C_GetItemState"); \ +static_assert(offsetof(BP_FakeElevator_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_FakeElevator_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_ModifyElevator \ +static_assert(alignof(BP_FakeElevator_C_ModifyElevator) == 0x000001, "Wrong alignment on BP_FakeElevator_C_ModifyElevator"); \ +static_assert(sizeof(BP_FakeElevator_C_ModifyElevator) == 0x000004, "Wrong size on BP_FakeElevator_C_ModifyElevator"); \ +static_assert(offsetof(BP_FakeElevator_C_ModifyElevator, bInWait) == 0x000000, "Member 'BP_FakeElevator_C_ModifyElevator::bInWait' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ModifyElevator, bInLock) == 0x000001, "Member 'BP_FakeElevator_C_ModifyElevator::bInLock' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ModifyElevator, bInForceOpen) == 0x000002, "Member 'BP_FakeElevator_C_ModifyElevator::bInForceOpen' has a wrong offset!"); \ +static_assert(offsetof(BP_FakeElevator_C_ModifyElevator, bInForceClose) == 0x000003, "Member 'BP_FakeElevator_C_ModifyElevator::bInForceClose' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_Move_Interact_Component \ +static_assert(alignof(BP_FakeElevator_C_Move_Interact_Component) == 0x000008, "Wrong alignment on BP_FakeElevator_C_Move_Interact_Component"); \ +static_assert(sizeof(BP_FakeElevator_C_Move_Interact_Component) == 0x000028, "Wrong size on BP_FakeElevator_C_Move_Interact_Component"); \ +static_assert(offsetof(BP_FakeElevator_C_Move_Interact_Component, New_Interact_Location) == 0x000000, "Member 'BP_FakeElevator_C_Move_Interact_Component::New_Interact_Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_PurgeRecall \ +static_assert(alignof(BP_FakeElevator_C_PurgeRecall) == 0x000008, "Wrong alignment on BP_FakeElevator_C_PurgeRecall"); \ +static_assert(sizeof(BP_FakeElevator_C_PurgeRecall) == 0x000008, "Wrong size on BP_FakeElevator_C_PurgeRecall"); \ +static_assert(offsetof(BP_FakeElevator_C_PurgeRecall, CallFunc_GetPlayerPawn_ReturnValue) == 0x000000, "Member 'BP_FakeElevator_C_PurgeRecall::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_SetItemState \ +static_assert(alignof(BP_FakeElevator_C_SetItemState) == 0x000001, "Wrong alignment on BP_FakeElevator_C_SetItemState"); \ +static_assert(sizeof(BP_FakeElevator_C_SetItemState) == 0x000001, "Wrong size on BP_FakeElevator_C_SetItemState"); \ +static_assert(offsetof(BP_FakeElevator_C_SetItemState, InItemState) == 0x000000, "Member 'BP_FakeElevator_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_FakeElevator_C_UpdateItemState \ +static_assert(alignof(BP_FakeElevator_C_UpdateItemState) == 0x000001, "Wrong alignment on BP_FakeElevator_C_UpdateItemState"); \ +static_assert(sizeof(BP_FakeElevator_C_UpdateItemState) == 0x000001, "Wrong size on BP_FakeElevator_C_UpdateItemState"); \ +static_assert(offsetof(BP_FakeElevator_C_UpdateItemState, ItemState_0) == 0x000000, "Member 'BP_FakeElevator_C_UpdateItemState::ItemState_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_FakeElevator_C \ +static_assert(alignof(ABP_FakeElevator_C) == 0x000008, "Wrong alignment on ABP_FakeElevator_C"); \ +static_assert(sizeof(ABP_FakeElevator_C) == 0x000538, "Wrong size on ABP_FakeElevator_C"); \ +static_assert(offsetof(ABP_FakeElevator_C, UberGraphFrame) == 0x0002E0, "Member 'ABP_FakeElevator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SpotLight) == 0x0002E8, "Member 'ABP_FakeElevator_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight6) == 0x0002F0, "Member 'ABP_FakeElevator_C::PointLight6' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight5) == 0x0002F8, "Member 'ABP_FakeElevator_C::PointLight5' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight4) == 0x000300, "Member 'ABP_FakeElevator_C::PointLight4' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight2) == 0x000308, "Member 'ABP_FakeElevator_C::PointLight2' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight1) == 0x000310, "Member 'ABP_FakeElevator_C::PointLight1' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PointLight) == 0x000318, "Member 'ABP_FakeElevator_C::PointLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, HeraAudio_Inside_Lift) == 0x000320, "Member 'ABP_FakeElevator_C::HeraAudio_Inside_Lift' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, HeraAudio_OutsideButton) == 0x000328, "Member 'ABP_FakeElevator_C::HeraAudio_OutsideButton' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, RecallBlockerTrigger) == 0x000330, "Member 'ABP_FakeElevator_C::RecallBlockerTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Body) == 0x000338, "Member 'ABP_FakeElevator_C::SFX_Body' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Doors) == 0x000340, "Member 'ABP_FakeElevator_C::SFX_Doors' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PersistentItemState) == 0x000348, "Member 'ABP_FakeElevator_C::PersistentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, OutsideButtonInteraction) == 0x000350, "Member 'ABP_FakeElevator_C::OutsideButtonInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, InsideButtonInteraction) == 0x000358, "Member 'ABP_FakeElevator_C::InsideButtonInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, WrestlerInteractionPoint1) == 0x000360, "Member 'ABP_FakeElevator_C::WrestlerInteractionPoint1' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, WrestlerInteractionPoint) == 0x000368, "Member 'ABP_FakeElevator_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, HeraMissionActor) == 0x000370, "Member 'ABP_FakeElevator_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorBlocker) == 0x000378, "Member 'ABP_FakeElevator_C::DoorBlocker' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorCover) == 0x000380, "Member 'ABP_FakeElevator_C::DoorCover' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SM_ElevatorShell2) == 0x000388, "Member 'ABP_FakeElevator_C::SM_ElevatorShell2' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, WalkAwayTrigger) == 0x000390, "Member 'ABP_FakeElevator_C::WalkAwayTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SM_Prop_Elevator_Button_Interact_Up) == 0x000398, "Member 'ABP_FakeElevator_C::SM_Prop_Elevator_Button_Interact_Up' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SM_Prop_Elevator_Button_Interact_Down) == 0x0003A0, "Member 'ABP_FakeElevator_C::SM_Prop_Elevator_Button_Interact_Down' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SM_Prop_Elevator_Button_Interact_Base) == 0x0003A8, "Member 'ABP_FakeElevator_C::SM_Prop_Elevator_Button_Interact_Base' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, HeraAudioPortal) == 0x0003B0, "Member 'ABP_FakeElevator_C::HeraAudioPortal' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorButtonOutsideLift) == 0x0003B8, "Member 'ABP_FakeElevator_C::DoorButtonOutsideLift' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorButtonInsideLift) == 0x0003C0, "Member 'ABP_FakeElevator_C::DoorButtonInsideLift' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorR) == 0x0003C8, "Member 'ABP_FakeElevator_C::DoorR' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Body) == 0x0003D0, "Member 'ABP_FakeElevator_C::Body' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, DoorL) == 0x0003D8, "Member 'ABP_FakeElevator_C::DoorL' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Timeline_DoorL_7F9833724F76D1A4965B22A3AE8DC3FF) == 0x0003E0, "Member 'ABP_FakeElevator_C::Timeline_DoorL_7F9833724F76D1A4965B22A3AE8DC3FF' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Timeline__Direction_7F9833724F76D1A4965B22A3AE8DC3FF) == 0x0003E4, "Member 'ABP_FakeElevator_C::Timeline__Direction_7F9833724F76D1A4965B22A3AE8DC3FF' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Timeline) == 0x0003E8, "Member 'ABP_FakeElevator_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, IsOpen) == 0x0003F0, "Member 'ABP_FakeElevator_C::IsOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, WasInsideButtonPressed) == 0x0003F1, "Member 'ABP_FakeElevator_C::WasInsideButtonPressed' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, InteractionWidget) == 0x0003F8, "Member 'ABP_FakeElevator_C::InteractionWidget' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, InteractionSlot) == 0x000400, "Member 'ABP_FakeElevator_C::InteractionSlot' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Data_Layers_to_Unload) == 0x000408, "Member 'ABP_FakeElevator_C::Data_Layers_to_Unload' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Data_Layers_to_Load) == 0x000418, "Member 'ABP_FakeElevator_C::Data_Layers_to_Load' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Data_Layers_to_Activate) == 0x000428, "Member 'ABP_FakeElevator_C::Data_Layers_to_Activate' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Transitioning) == 0x000438, "Member 'ABP_FakeElevator_C::Transitioning' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, ItemState) == 0x000439, "Member 'ABP_FakeElevator_C::ItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, MinTransitionTime) == 0x00043C, "Member 'ABP_FakeElevator_C::MinTransitionTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Waiting) == 0x000440, "Member 'ABP_FakeElevator_C::Waiting' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PlayerInside) == 0x000441, "Member 'ABP_FakeElevator_C::PlayerInside' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, InsideButtonPressedObjective) == 0x000448, "Member 'ABP_FakeElevator_C::InsideButtonPressedObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, OutsideButtonPressedObjective) == 0x000470, "Member 'ABP_FakeElevator_C::OutsideButtonPressedObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Locked) == 0x000498, "Member 'ABP_FakeElevator_C::Locked' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, ForcedOpen) == 0x000499, "Member 'ABP_FakeElevator_C::ForcedOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, PlayerNearby) == 0x00049A, "Member 'ABP_FakeElevator_C::PlayerNearby' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, TransitionCompleteObjective) == 0x0004A0, "Member 'ABP_FakeElevator_C::TransitionCompleteObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, WalkAwayDoorsClosedObjective) == 0x0004C8, "Member 'ABP_FakeElevator_C::WalkAwayDoorsClosedObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, KeepNarrativeModeOnExit) == 0x0004F0, "Member 'ABP_FakeElevator_C::KeepNarrativeModeOnExit' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, LoadedState) == 0x0004F1, "Member 'ABP_FakeElevator_C::LoadedState' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, CanContinue) == 0x0004F2, "Member 'ABP_FakeElevator_C::CanContinue' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_DoorOpen) == 0x0004F8, "Member 'ABP_FakeElevator_C::SFX_DoorOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Door_Close) == 0x000500, "Member 'ABP_FakeElevator_C::SFX_Door_Close' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Elevator_Start) == 0x000508, "Member 'ABP_FakeElevator_C::SFX_Elevator_Start' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Elevator_Stop) == 0x000510, "Member 'ABP_FakeElevator_C::SFX_Elevator_Stop' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Button_Outside) == 0x000518, "Member 'ABP_FakeElevator_C::SFX_Button_Outside' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, SFX_Button_Inside) == 0x000520, "Member 'ABP_FakeElevator_C::SFX_Button_Inside' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Location_Tag_C) == 0x000528, "Member 'ABP_FakeElevator_C::Location_Tag_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, Use_Location_C) == 0x000530, "Member 'ABP_FakeElevator_C::Use_Location_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_FakeElevator_C, MDPosCheck) == 0x000531, "Member 'ABP_FakeElevator_C::MDPosCheck' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCamshake_Elevator_Movement_C \ +static_assert(alignof(UCamshake_Elevator_Movement_C) == 0x000010, "Wrong alignment on UCamshake_Elevator_Movement_C"); \ +static_assert(sizeof(UCamshake_Elevator_Movement_C) == 0x0001F0, "Wrong size on UCamshake_Elevator_Movement_C"); \ + +#define DUMPER7_ASSERTS_UNominateAutosaveToNamedSaveSlot_C \ +static_assert(alignof(UNominateAutosaveToNamedSaveSlot_C) == 0x000008, "Wrong alignment on UNominateAutosaveToNamedSaveSlot_C"); \ +static_assert(sizeof(UNominateAutosaveToNamedSaveSlot_C) == 0x0000E0, "Wrong size on UNominateAutosaveToNamedSaveSlot_C"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_BasicDoor_Base_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base \ +static_assert(alignof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base) == 0x000118, "Wrong size on BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, EntryPoint) == 0x000000, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_InteractingActor) == 0x000008, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_InteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, Temp_delegate_Variable) == 0x000010, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x000020, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000028, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_Condition_1) == 0x000030, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_Condition_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Not_PreBool_ReturnValue) == 0x000031, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_Condition) == 0x000032, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_Condition' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SelectFloat_ReturnValue) == 0x000038, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_Angle) == 0x000040, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_Angle' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, Temp_delegate_Variable_1) == 0x000048, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000058, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000060, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_Z__Yaw_) == 0x000068, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_Z__Yaw_' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x00006C, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SelectFloat_ReturnValue_1) == 0x000070, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000078, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Lerp_ReturnValue) == 0x000080, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SelectFloat_ReturnValue_2) == 0x000088, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_SwitchEnum_CmpSuccess) == 0x000090, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_Event_InItemState) == 0x000091, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_ComponentBoundEvent_InItemState) == 0x000092, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_DoorOpenAngle) == 0x000098, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_DoorOpenAngle' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000A0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Abs_ReturnValue) == 0x0000A8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_GetFloatValue_ReturnValue) == 0x0000B0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_MapRangeClamped_ReturnValue) == 0x0000B8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_GetAudioComponent_HeraAudio) == 0x0000C0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_GetAudioComponent_HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_GetAudioComponent_HeraAudio_1) == 0x0000C8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_GetAudioComponent_HeraAudio_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, K2Node_CustomEvent_InteractingActor_1) == 0x0000D0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::K2Node_CustomEvent_InteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_GetSwingDirection_OpenFront) == 0x0000D8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_GetSwingDirection_OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000E0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_Lerp_Alpha_ImplicitCast) == 0x0000E8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0000F0, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast) == 0x0000F4, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SetAudioPortalOpenness_DoorOpenAngle_ImplicitCast) == 0x0000F8, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SetAudioPortalOpenness_DoorOpenAngle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000100, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000108, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base, CallFunc_SetOpenAmount_InAmount_ImplicitCast) == 0x000110, "Member 'BP_BasicDoor_Base_C_ExecuteUbergraph_BP_BasicDoor_Base::CallFunc_SetOpenAmount_InAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_GetAudioComponent \ +static_assert(alignof(BP_BasicDoor_Base_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_GetAudioComponent"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_GetAudioComponent) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_GetAudioComponent"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetAudioComponent, HeraAudio) == 0x000000, "Member 'BP_BasicDoor_Base_C_GetAudioComponent::HeraAudio' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_GetSwingDirection \ +static_assert(alignof(BP_BasicDoor_Base_C_GetSwingDirection) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_GetSwingDirection"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_GetSwingDirection) == 0x000080, "Wrong size on BP_BasicDoor_Base_C_GetSwingDirection"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, InteractingActor) == 0x000000, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::InteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, OpenFront) == 0x000008, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000028, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x000040, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_Dot_VectorVector_ReturnValue) == 0x000070, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_GetSwingDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_BasicDoor_Base_C_GetSwingDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_OnCloseInteraction \ +static_assert(alignof(BP_BasicDoor_Base_C_OnCloseInteraction) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_OnCloseInteraction"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_OnCloseInteraction) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_OnCloseInteraction"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_OnCloseInteraction, InteractingActor) == 0x000000, "Member 'BP_BasicDoor_Base_C_OnCloseInteraction::InteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_OnOpenInteraction \ +static_assert(alignof(BP_BasicDoor_Base_C_OnOpenInteraction) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_OnOpenInteraction"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_OnOpenInteraction) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_OnOpenInteraction"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_OnOpenInteraction, InteractingActor) == 0x000000, "Member 'BP_BasicDoor_Base_C_OnOpenInteraction::InteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_OpenDoor \ +static_assert(alignof(BP_BasicDoor_Base_C_OpenDoor) == 0x000001, "Wrong alignment on BP_BasicDoor_Base_C_OpenDoor"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_OpenDoor) == 0x000001, "Wrong size on BP_BasicDoor_Base_C_OpenDoor"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_OpenDoor, Condition) == 0x000000, "Member 'BP_BasicDoor_Base_C_OpenDoor::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_SetAudioPortalOpenness \ +static_assert(alignof(BP_BasicDoor_Base_C_SetAudioPortalOpenness) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_SetAudioPortalOpenness"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_SetAudioPortalOpenness) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_SetAudioPortalOpenness"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_SetAudioPortalOpenness, DoorOpenAngle) == 0x000000, "Member 'BP_BasicDoor_Base_C_SetAudioPortalOpenness::DoorOpenAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_SetItemState \ +static_assert(alignof(BP_BasicDoor_Base_C_SetItemState) == 0x000001, "Wrong alignment on BP_BasicDoor_Base_C_SetItemState"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_SetItemState) == 0x000001, "Wrong size on BP_BasicDoor_Base_C_SetItemState"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_SetItemState, InItemState) == 0x000000, "Member 'BP_BasicDoor_Base_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_SwingOpen \ +static_assert(alignof(BP_BasicDoor_Base_C_SwingOpen) == 0x000001, "Wrong alignment on BP_BasicDoor_Base_C_SwingOpen"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_SwingOpen) == 0x000001, "Wrong size on BP_BasicDoor_Base_C_SwingOpen"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_SwingOpen, Condition) == 0x000000, "Member 'BP_BasicDoor_Base_C_SwingOpen::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_UpdateMeshAngle \ +static_assert(alignof(BP_BasicDoor_Base_C_UpdateMeshAngle) == 0x000004, "Wrong alignment on BP_BasicDoor_Base_C_UpdateMeshAngle"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_UpdateMeshAngle) == 0x000004, "Wrong size on BP_BasicDoor_Base_C_UpdateMeshAngle"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_UpdateMeshAngle, Z__Yaw_) == 0x000000, "Member 'BP_BasicDoor_Base_C_UpdateMeshAngle::Z__Yaw_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_UpdateRotation \ +static_assert(alignof(BP_BasicDoor_Base_C_UpdateRotation) == 0x000008, "Wrong alignment on BP_BasicDoor_Base_C_UpdateRotation"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_UpdateRotation) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_UpdateRotation"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_UpdateRotation, Angle) == 0x000000, "Member 'BP_BasicDoor_Base_C_UpdateRotation::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_BasicDoor_Base_C_UserConstructionScript \ +static_assert(alignof(BP_BasicDoor_Base_C_UserConstructionScript) == 0x000004, "Wrong alignment on BP_BasicDoor_Base_C_UserConstructionScript"); \ +static_assert(sizeof(BP_BasicDoor_Base_C_UserConstructionScript) == 0x000008, "Wrong size on BP_BasicDoor_Base_C_UserConstructionScript"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_UserConstructionScript, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000000, "Member 'BP_BasicDoor_Base_C_UserConstructionScript::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_BasicDoor_Base_C_UserConstructionScript, CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast) == 0x000004, "Member 'BP_BasicDoor_Base_C_UserConstructionScript::CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_BasicDoor_Base_C \ +static_assert(alignof(ABP_BasicDoor_Base_C) == 0x000008, "Wrong alignment on ABP_BasicDoor_Base_C"); \ +static_assert(sizeof(ABP_BasicDoor_Base_C) == 0x0003C8, "Wrong size on ABP_BasicDoor_Base_C"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, UberGraphFrame) == 0x0002F8, "Member 'ABP_BasicDoor_Base_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, HeraAudioPortal) == 0x000300, "Member 'ABP_BasicDoor_Base_C::HeraAudioPortal' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, CloseInteraction) == 0x000308, "Member 'ABP_BasicDoor_Base_C::CloseInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, WrestlerPersistenceComponentItemState) == 0x000310, "Member 'ABP_BasicDoor_Base_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, NavModifier) == 0x000318, "Member 'ABP_BasicDoor_Base_C::NavModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, OpenInteraction) == 0x000320, "Member 'ABP_BasicDoor_Base_C::OpenInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, DoorPivot) == 0x000328, "Member 'ABP_BasicDoor_Base_C::DoorPivot' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, InteractionCollider) == 0x000330, "Member 'ABP_BasicDoor_Base_C::InteractionCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, FrontText) == 0x000338, "Member 'ABP_BasicDoor_Base_C::FrontText' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, BackText) == 0x000340, "Member 'ABP_BasicDoor_Base_C::BackText' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, Arrow) == 0x000348, "Member 'ABP_BasicDoor_Base_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, CloseDoorTimeline_DoorAnim_C28D74AF4405A1F399C11D842BD6184A) == 0x000350, "Member 'ABP_BasicDoor_Base_C::CloseDoorTimeline_DoorAnim_C28D74AF4405A1F399C11D842BD6184A' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, CloseDoorTimeline__Direction_C28D74AF4405A1F399C11D842BD6184A) == 0x000354, "Member 'ABP_BasicDoor_Base_C::CloseDoorTimeline__Direction_C28D74AF4405A1F399C11D842BD6184A' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, CloseDoorTimeline) == 0x000358, "Member 'ABP_BasicDoor_Base_C::CloseDoorTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, OpenDoorTimeline_DoorAnim_9BB2C20D4AE6CFCE8476A0ADAAF9FA1D) == 0x000360, "Member 'ABP_BasicDoor_Base_C::OpenDoorTimeline_DoorAnim_9BB2C20D4AE6CFCE8476A0ADAAF9FA1D' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, OpenDoorTimeline__Direction_9BB2C20D4AE6CFCE8476A0ADAAF9FA1D) == 0x000364, "Member 'ABP_BasicDoor_Base_C::OpenDoorTimeline__Direction_9BB2C20D4AE6CFCE8476A0ADAAF9FA1D' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, OpenDoorTimeline) == 0x000368, "Member 'ABP_BasicDoor_Base_C::OpenDoorTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, AjarAngle) == 0x000370, "Member 'ABP_BasicDoor_Base_C::AjarAngle' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, SpeedModifier) == 0x000378, "Member 'ABP_BasicDoor_Base_C::SpeedModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, IsAjar) == 0x000380, "Member 'ABP_BasicDoor_Base_C::IsAjar' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, DoorClose) == 0x000388, "Member 'ABP_BasicDoor_Base_C::DoorClose' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, DoorOpen) == 0x000390, "Member 'ABP_BasicDoor_Base_C::DoorOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, Invert) == 0x000398, "Member 'ABP_BasicDoor_Base_C::Invert' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, AngleLimit) == 0x0003A0, "Member 'ABP_BasicDoor_Base_C::AngleLimit' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, AngleDirectionModifier) == 0x0003A8, "Member 'ABP_BasicDoor_Base_C::AngleDirectionModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, IsOpen) == 0x0003B0, "Member 'ABP_BasicDoor_Base_C::IsOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, AudioPortalCurve) == 0x0003B8, "Member 'ABP_BasicDoor_Base_C::AudioPortalCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_BasicDoor_Base_C, AudioPortalOpennessWhenDoorClosed) == 0x0003C0, "Member 'ABP_BasicDoor_Base_C::AudioPortalOpennessWhenDoorClosed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter \ +static_assert(alignof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter) == 0x000008, "Wrong alignment on ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter"); \ +static_assert(sizeof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter) == 0x000038, "Wrong size on ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, EntryPoint) == 0x000000, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, CallFunc_GetGameMode_ReturnValue) == 0x000008, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000010, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, K2Node_Event_InAutomata) == 0x000020, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, K2Node_Event_InState) == 0x000028, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000030, "Member 'ClearObjectiveCounter_C_ExecuteUbergraph_ClearObjectiveCounter::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearObjectiveCounter_C_ReceiveExecute \ +static_assert(alignof(ClearObjectiveCounter_C_ReceiveExecute) == 0x000008, "Wrong alignment on ClearObjectiveCounter_C_ReceiveExecute"); \ +static_assert(sizeof(ClearObjectiveCounter_C_ReceiveExecute) == 0x000010, "Wrong size on ClearObjectiveCounter_C_ReceiveExecute"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ClearObjectiveCounter_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveCounter_C_ReceiveExecute, InState) == 0x000008, "Member 'ClearObjectiveCounter_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClearObjectiveCounter_C \ +static_assert(alignof(UClearObjectiveCounter_C) == 0x000008, "Wrong alignment on UClearObjectiveCounter_C"); \ +static_assert(sizeof(UClearObjectiveCounter_C) == 0x000090, "Wrong size on UClearObjectiveCounter_C"); \ +static_assert(offsetof(UClearObjectiveCounter_C, UberGraphFrame) == 0x000088, "Member 'UClearObjectiveCounter_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDespawnEnemyActors_C \ +static_assert(alignof(UDespawnEnemyActors_C) == 0x000008, "Wrong alignment on UDespawnEnemyActors_C"); \ +static_assert(sizeof(UDespawnEnemyActors_C) == 0x000098, "Wrong size on UDespawnEnemyActors_C"); \ + +#define DUMPER7_ASSERTS_SetWwiseState_C_ExecuteUbergraph_SetWwiseState \ +static_assert(alignof(SetWwiseState_C_ExecuteUbergraph_SetWwiseState) == 0x000008, "Wrong alignment on SetWwiseState_C_ExecuteUbergraph_SetWwiseState"); \ +static_assert(sizeof(SetWwiseState_C_ExecuteUbergraph_SetWwiseState) == 0x000018, "Wrong size on SetWwiseState_C_ExecuteUbergraph_SetWwiseState"); \ +static_assert(offsetof(SetWwiseState_C_ExecuteUbergraph_SetWwiseState, EntryPoint) == 0x000000, "Member 'SetWwiseState_C_ExecuteUbergraph_SetWwiseState::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetWwiseState_C_ExecuteUbergraph_SetWwiseState, K2Node_Event_InAutomata) == 0x000008, "Member 'SetWwiseState_C_ExecuteUbergraph_SetWwiseState::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetWwiseState_C_ExecuteUbergraph_SetWwiseState, K2Node_Event_InState) == 0x000010, "Member 'SetWwiseState_C_ExecuteUbergraph_SetWwiseState::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetWwiseState_C_ReceiveExecute \ +static_assert(alignof(SetWwiseState_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetWwiseState_C_ReceiveExecute"); \ +static_assert(sizeof(SetWwiseState_C_ReceiveExecute) == 0x000010, "Wrong size on SetWwiseState_C_ReceiveExecute"); \ +static_assert(offsetof(SetWwiseState_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetWwiseState_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetWwiseState_C_ReceiveExecute, InState) == 0x000008, "Member 'SetWwiseState_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetWwiseState_C \ +static_assert(alignof(USetWwiseState_C) == 0x000008, "Wrong alignment on USetWwiseState_C"); \ +static_assert(sizeof(USetWwiseState_C) == 0x0000A8, "Wrong size on USetWwiseState_C"); \ +static_assert(offsetof(USetWwiseState_C, UberGraphFrame) == 0x000088, "Member 'USetWwiseState_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetWwiseState_C, State_Group) == 0x000090, "Member 'USetWwiseState_C::State_Group' has a wrong offset!"); \ +static_assert(offsetof(USetWwiseState_C, State_Name) == 0x000098, "Member 'USetWwiseState_C::State_Name' has a wrong offset!"); \ +static_assert(offsetof(USetWwiseState_C, State_Value) == 0x0000A0, "Member 'USetWwiseState_C::State_Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies \ +static_assert(alignof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies) == 0x000008, "Wrong alignment on CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies"); \ +static_assert(sizeof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies) == 0x000040, "Wrong size on CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, EntryPoint) == 0x000000, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, K2Node_Event_InAutomata) == 0x000010, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, K2Node_Event_InState) == 0x000018, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, CallFunc_GetAllActorsOfClass_OutActors) == 0x000020, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, CallFunc_Array_Get_Item) == 0x000030, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies, CallFunc_Less_IntInt_ReturnValue) == 0x00003C, "Member 'CleanupDeadBodies_C_ExecuteUbergraph_CleanupDeadBodies::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CleanupDeadBodies_C_ReceiveExecute \ +static_assert(alignof(CleanupDeadBodies_C_ReceiveExecute) == 0x000008, "Wrong alignment on CleanupDeadBodies_C_ReceiveExecute"); \ +static_assert(sizeof(CleanupDeadBodies_C_ReceiveExecute) == 0x000010, "Wrong size on CleanupDeadBodies_C_ReceiveExecute"); \ +static_assert(offsetof(CleanupDeadBodies_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CleanupDeadBodies_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CleanupDeadBodies_C_ReceiveExecute, InState) == 0x000008, "Member 'CleanupDeadBodies_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCleanupDeadBodies_C \ +static_assert(alignof(UCleanupDeadBodies_C) == 0x000008, "Wrong alignment on UCleanupDeadBodies_C"); \ +static_assert(sizeof(UCleanupDeadBodies_C) == 0x000090, "Wrong size on UCleanupDeadBodies_C"); \ +static_assert(offsetof(UCleanupDeadBodies_C, UberGraphFrame) == 0x000088, "Member 'UCleanupDeadBodies_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon \ +static_assert(alignof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon) == 0x000008, "Wrong alignment on WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon"); \ +static_assert(sizeof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon) == 0x000048, "Wrong size on WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, EntryPoint) == 0x000000, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, CallFunc_GetVisibility_ReturnValue) == 0x000020, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::CallFunc_GetVisibility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, CallFunc_PlayAnimation_ReturnValue) == 0x000028, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, K2Node_CustomEvent_InVisibility) == 0x000030, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::K2Node_CustomEvent_InVisibility' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, K2Node_CustomEvent_bInPaused) == 0x000031, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, K2Node_SwitchEnum_CmpSuccess) == 0x000032, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon, K2Node_CreateDelegate_OutputDelegate_1) == 0x000034, "Member 'WBP_TempKillIcon_C_ExecuteUbergraph_WBP_TempKillIcon::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempKillIcon_C_OnPauseGame \ +static_assert(alignof(WBP_TempKillIcon_C_OnPauseGame) == 0x000001, "Wrong alignment on WBP_TempKillIcon_C_OnPauseGame"); \ +static_assert(sizeof(WBP_TempKillIcon_C_OnPauseGame) == 0x000001, "Wrong size on WBP_TempKillIcon_C_OnPauseGame"); \ +static_assert(offsetof(WBP_TempKillIcon_C_OnPauseGame, bInPaused) == 0x000000, "Member 'WBP_TempKillIcon_C_OnPauseGame::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_TempKillIcon_C_VisChange \ +static_assert(alignof(WBP_TempKillIcon_C_VisChange) == 0x000001, "Wrong alignment on WBP_TempKillIcon_C_VisChange"); \ +static_assert(sizeof(WBP_TempKillIcon_C_VisChange) == 0x000001, "Wrong size on WBP_TempKillIcon_C_VisChange"); \ +static_assert(offsetof(WBP_TempKillIcon_C_VisChange, InVisibility) == 0x000000, "Member 'WBP_TempKillIcon_C_VisChange::InVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_TempKillIcon_C \ +static_assert(alignof(UWBP_TempKillIcon_C) == 0x000008, "Wrong alignment on UWBP_TempKillIcon_C"); \ +static_assert(sizeof(UWBP_TempKillIcon_C) == 0x000358, "Wrong size on UWBP_TempKillIcon_C"); \ +static_assert(offsetof(UWBP_TempKillIcon_C, UberGraphFrame) == 0x000330, "Member 'UWBP_TempKillIcon_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempKillIcon_C, Show) == 0x000338, "Member 'UWBP_TempKillIcon_C::Show' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempKillIcon_C, TextBlock_0) == 0x000340, "Member 'UWBP_TempKillIcon_C::TextBlock_0' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempKillIcon_C, WrestlerActionWidget_78) == 0x000348, "Member 'UWBP_TempKillIcon_C::WrestlerActionWidget_78' has a wrong offset!"); \ +static_assert(offsetof(UWBP_TempKillIcon_C, PerPauseVisibility) == 0x000350, "Member 'UWBP_TempKillIcon_C::PerPauseVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPP_ProEscape_Basement_Hole_01_C \ +static_assert(alignof(ABPP_ProEscape_Basement_Hole_01_C) == 0x000008, "Wrong alignment on ABPP_ProEscape_Basement_Hole_01_C"); \ +static_assert(sizeof(ABPP_ProEscape_Basement_Hole_01_C) == 0x0007D8, "Wrong size on ABPP_ProEscape_Basement_Hole_01_C"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh146) == 0x000338, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh146' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh145) == 0x000340, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh145' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh144) == 0x000348, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh144' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh143) == 0x000350, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh143' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh142) == 0x000358, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh142' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh141) == 0x000360, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh141' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh140) == 0x000368, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh140' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh139) == 0x000370, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh139' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh138) == 0x000378, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh138' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh137) == 0x000380, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh137' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh136) == 0x000388, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh136' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh135) == 0x000390, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh135' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh134) == 0x000398, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh134' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh133) == 0x0003A0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh133' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh132) == 0x0003A8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh132' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh131) == 0x0003B0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh131' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh130) == 0x0003B8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh130' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh129) == 0x0003C0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh129' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh128) == 0x0003C8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh128' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh127) == 0x0003D0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh127' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh126) == 0x0003D8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh126' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh125) == 0x0003E0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh125' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh124) == 0x0003E8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh124' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh123) == 0x0003F0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh123' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh122) == 0x0003F8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh122' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh121) == 0x000400, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh121' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh120) == 0x000408, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh120' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh119) == 0x000410, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh119' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh118) == 0x000418, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh118' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh117) == 0x000420, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh117' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh116) == 0x000428, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh116' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh115) == 0x000430, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh115' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh114) == 0x000438, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh114' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh113) == 0x000440, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh113' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh112) == 0x000448, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh112' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh111) == 0x000450, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh111' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh110) == 0x000458, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh110' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh109) == 0x000460, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh109' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh108) == 0x000468, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh108' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh107) == 0x000470, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh107' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh106) == 0x000478, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh106' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh105) == 0x000480, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh105' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh104) == 0x000488, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh104' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh103) == 0x000490, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh103' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh102) == 0x000498, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh102' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh101) == 0x0004A0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh101' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh100) == 0x0004A8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh100' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh99) == 0x0004B0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh99' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh98) == 0x0004B8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh98' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh97) == 0x0004C0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh97' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh96) == 0x0004C8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh96' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh95) == 0x0004D0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh95' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh94) == 0x0004D8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh94' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh93) == 0x0004E0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh93' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh92) == 0x0004E8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh92' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh91) == 0x0004F0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh91' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh90) == 0x0004F8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh90' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh89) == 0x000500, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh89' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh88) == 0x000508, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh88' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh87) == 0x000510, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh87' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh86) == 0x000518, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh86' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh85) == 0x000520, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh85' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh84) == 0x000528, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh84' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh83) == 0x000530, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh83' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh82) == 0x000538, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh82' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh81) == 0x000540, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh81' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh80) == 0x000548, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh80' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh79) == 0x000550, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh79' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh78) == 0x000558, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh78' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh77) == 0x000560, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh77' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh76) == 0x000568, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh76' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh75) == 0x000570, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh75' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh74) == 0x000578, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh74' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh73) == 0x000580, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh73' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh72) == 0x000588, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh72' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh71) == 0x000590, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh71' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh70) == 0x000598, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh70' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh69) == 0x0005A0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh69' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh68) == 0x0005A8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh68' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh67) == 0x0005B0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh67' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh66) == 0x0005B8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh66' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh65) == 0x0005C0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh65' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh64) == 0x0005C8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh64' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh63) == 0x0005D0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh63' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, HierarchicalInstancedStaticMesh) == 0x0005D8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::HierarchicalInstancedStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh62) == 0x0005E0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh62' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh61) == 0x0005E8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh61' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh60) == 0x0005F0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh60' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh59) == 0x0005F8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh59' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh58) == 0x000600, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh58' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh57) == 0x000608, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh57' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh56) == 0x000610, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh56' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh55) == 0x000618, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh55' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh54) == 0x000620, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh54' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh53) == 0x000628, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh53' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh52) == 0x000630, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh52' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh51) == 0x000638, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh51' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh50) == 0x000640, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh50' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh49) == 0x000648, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh49' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh48) == 0x000650, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh48' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh47) == 0x000658, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh47' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh46) == 0x000660, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh46' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh45) == 0x000668, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh45' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh44) == 0x000670, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh44' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh43) == 0x000678, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh43' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh42) == 0x000680, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh42' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh41) == 0x000688, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh41' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh40) == 0x000690, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh40' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh39) == 0x000698, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh39' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh38) == 0x0006A0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh38' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh37) == 0x0006A8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh37' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh36) == 0x0006B0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh36' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh35) == 0x0006B8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh35' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh34) == 0x0006C0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh34' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh33) == 0x0006C8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh33' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh32) == 0x0006D0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh32' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh31) == 0x0006D8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh31' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh30) == 0x0006E0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh30' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh29) == 0x0006E8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh29' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh28) == 0x0006F0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh28' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh27) == 0x0006F8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh27' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh26) == 0x000700, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh26' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh25) == 0x000708, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh25' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh24) == 0x000710, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh24' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh23) == 0x000718, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh23' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh22) == 0x000720, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh22' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh21) == 0x000728, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh21' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh20) == 0x000730, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh20' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh19) == 0x000738, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh19' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh18) == 0x000740, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh18' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh17) == 0x000748, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh17' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh16) == 0x000750, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh16' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh15) == 0x000758, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh15' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh14) == 0x000760, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh14' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh13) == 0x000768, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh13' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh12) == 0x000770, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh12' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh11) == 0x000778, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh11' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh10) == 0x000780, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh10' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh9) == 0x000788, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh9' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh8) == 0x000790, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh8' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh7) == 0x000798, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh7' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh6) == 0x0007A0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh6' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh5) == 0x0007A8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh5' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh4) == 0x0007B0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh4' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh3) == 0x0007B8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh3' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh2) == 0x0007C0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh2' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh1) == 0x0007C8, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh1' has a wrong offset!"); \ +static_assert(offsetof(ABPP_ProEscape_Basement_Hole_01_C, InstancedStaticMesh) == 0x0007D0, "Member 'ABPP_ProEscape_Basement_Hole_01_C::InstancedStaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction \ +static_assert(alignof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction) == 0x000008, "Wrong alignment on ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction"); \ +static_assert(sizeof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction) == 0x000078, "Wrong size on ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, EntryPoint) == 0x000000, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, Temp_int_Array_Index_Variable) == 0x000004, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, K2Node_Event_InAutomata) == 0x000010, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, K2Node_Event_InState) == 0x000018, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_Array_Get_Item) == 0x000028, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, K2Node_DynamicCast_AsActor) == 0x000060, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction, CallFunc_GetComponentByClass_ReturnValue) == 0x000070, "Member 'ToggleCrosshairReaction_C_ExecuteUbergraph_ToggleCrosshairReaction::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleCrosshairReaction_C_ReceiveExecute \ +static_assert(alignof(ToggleCrosshairReaction_C_ReceiveExecute) == 0x000008, "Wrong alignment on ToggleCrosshairReaction_C_ReceiveExecute"); \ +static_assert(sizeof(ToggleCrosshairReaction_C_ReceiveExecute) == 0x000010, "Wrong size on ToggleCrosshairReaction_C_ReceiveExecute"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ToggleCrosshairReaction_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleCrosshairReaction_C_ReceiveExecute, InState) == 0x000008, "Member 'ToggleCrosshairReaction_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToggleCrosshairReaction_C \ +static_assert(alignof(UToggleCrosshairReaction_C) == 0x000008, "Wrong alignment on UToggleCrosshairReaction_C"); \ +static_assert(sizeof(UToggleCrosshairReaction_C) == 0x0000A8, "Wrong size on UToggleCrosshairReaction_C"); \ +static_assert(offsetof(UToggleCrosshairReaction_C, UberGraphFrame) == 0x000088, "Member 'UToggleCrosshairReaction_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UToggleCrosshairReaction_C, Actor) == 0x000090, "Member 'UToggleCrosshairReaction_C::Actor' has a wrong offset!"); \ +static_assert(offsetof(UToggleCrosshairReaction_C, Enable) == 0x0000A0, "Member 'UToggleCrosshairReaction_C::Enable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor \ +static_assert(alignof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor) == 0x000008, "Wrong alignment on Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor"); \ +static_assert(sizeof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor) == 0x000070, "Wrong size on Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, EntryPoint) == 0x000000, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, Temp_int_Array_Index_Variable) == 0x000010, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, K2Node_Event_InAutomata) == 0x000020, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, K2Node_Event_InState) == 0x000028, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_GetPlayerPawn_ReturnValue) == 0x000038, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000040, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_Array_Get_Item) == 0x000058, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor, CallFunc_GetAIController_ReturnValue) == 0x000068, "Member 'Override_Target_Actor_C_ExecuteUbergraph_Override_Target_Actor::CallFunc_GetAIController_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Override_Target_Actor_C_ReceiveExecute \ +static_assert(alignof(Override_Target_Actor_C_ReceiveExecute) == 0x000008, "Wrong alignment on Override_Target_Actor_C_ReceiveExecute"); \ +static_assert(sizeof(Override_Target_Actor_C_ReceiveExecute) == 0x000010, "Wrong size on Override_Target_Actor_C_ReceiveExecute"); \ +static_assert(offsetof(Override_Target_Actor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Override_Target_Actor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Override_Target_Actor_C_ReceiveExecute, InState) == 0x000008, "Member 'Override_Target_Actor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOverride_Target_Actor_C \ +static_assert(alignof(UOverride_Target_Actor_C) == 0x000008, "Wrong alignment on UOverride_Target_Actor_C"); \ +static_assert(sizeof(UOverride_Target_Actor_C) == 0x000098, "Wrong size on UOverride_Target_Actor_C"); \ +static_assert(offsetof(UOverride_Target_Actor_C, UberGraphFrame) == 0x000088, "Member 'UOverride_Target_Actor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UOverride_Target_Actor_C, In_Tag) == 0x000090, "Member 'UOverride_Target_Actor_C::In_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies \ +static_assert(alignof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies) == 0x000008, "Wrong alignment on AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies"); \ +static_assert(sizeof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies) == 0x000058, "Wrong size on AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, EntryPoint) == 0x000000, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, Temp_int_Array_Index_Variable) == 0x000008, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000010, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, K2Node_Event_InAutomata) == 0x000018, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, K2Node_Event_InState) == 0x000020, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000030, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_Array_Get_Item) == 0x000040, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_IsValid_ReturnValue) == 0x00004C, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_Less_IntInt_ReturnValue) == 0x00004D, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_IsValid_ReturnValue_1) == 0x00004E, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x00004F, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000050, "Member 'AddRemoveTagFromTaggedEnemies_C_ExecuteUbergraph_AddRemoveTagFromTaggedEnemies::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AddRemoveTagFromTaggedEnemies_C_ReceiveExecute \ +static_assert(alignof(AddRemoveTagFromTaggedEnemies_C_ReceiveExecute) == 0x000008, "Wrong alignment on AddRemoveTagFromTaggedEnemies_C_ReceiveExecute"); \ +static_assert(sizeof(AddRemoveTagFromTaggedEnemies_C_ReceiveExecute) == 0x000010, "Wrong size on AddRemoveTagFromTaggedEnemies_C_ReceiveExecute"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AddRemoveTagFromTaggedEnemies_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AddRemoveTagFromTaggedEnemies_C_ReceiveExecute, InState) == 0x000008, "Member 'AddRemoveTagFromTaggedEnemies_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAddRemoveTagFromTaggedEnemies_C \ +static_assert(alignof(UAddRemoveTagFromTaggedEnemies_C) == 0x000008, "Wrong alignment on UAddRemoveTagFromTaggedEnemies_C"); \ +static_assert(sizeof(UAddRemoveTagFromTaggedEnemies_C) == 0x0000D8, "Wrong size on UAddRemoveTagFromTaggedEnemies_C"); \ +static_assert(offsetof(UAddRemoveTagFromTaggedEnemies_C, UberGraphFrame) == 0x000088, "Member 'UAddRemoveTagFromTaggedEnemies_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagFromTaggedEnemies_C, Find_Enemies_with_Tag) == 0x000090, "Member 'UAddRemoveTagFromTaggedEnemies_C::Find_Enemies_with_Tag' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagFromTaggedEnemies_C, Remove_this_Tag) == 0x000098, "Member 'UAddRemoveTagFromTaggedEnemies_C::Remove_this_Tag' has a wrong offset!"); \ +static_assert(offsetof(UAddRemoveTagFromTaggedEnemies_C, Add_This_Tags) == 0x0000B8, "Member 'UAddRemoveTagFromTaggedEnemies_C::Add_This_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh \ +static_assert(alignof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh) == 0x000008, "Wrong alignment on ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh"); \ +static_assert(sizeof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh) == 0x000030, "Wrong size on ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, EntryPoint) == 0x000000, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, K2Node_Event_InAutomata) == 0x000008, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, K2Node_Event_InState) == 0x000010, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, K2Node_DynamicCast_AsStatic_Mesh_Actor) == 0x000020, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::K2Node_DynamicCast_AsStatic_Mesh_Actor' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh, CallFunc_SetStaticMesh_ReturnValue) == 0x000029, "Member 'ChangeStaticMesh_C_ExecuteUbergraph_ChangeStaticMesh::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeStaticMesh_C_ReceiveExecute \ +static_assert(alignof(ChangeStaticMesh_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeStaticMesh_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeStaticMesh_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeStaticMesh_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeStaticMesh_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeStaticMesh_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeStaticMesh_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeStaticMesh_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeStaticMesh_C \ +static_assert(alignof(UChangeStaticMesh_C) == 0x000008, "Wrong alignment on UChangeStaticMesh_C"); \ +static_assert(sizeof(UChangeStaticMesh_C) == 0x0000C0, "Wrong size on UChangeStaticMesh_C"); \ +static_assert(offsetof(UChangeStaticMesh_C, UberGraphFrame) == 0x000088, "Member 'UChangeStaticMesh_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeStaticMesh_C, Mesh) == 0x000090, "Member 'UChangeStaticMesh_C::Mesh' has a wrong offset!"); \ +static_assert(offsetof(UChangeStaticMesh_C, New_Mesh) == 0x0000B8, "Member 'UChangeStaticMesh_C::New_Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter \ +static_assert(alignof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter) == 0x000008, "Wrong alignment on Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter"); \ +static_assert(sizeof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter) == 0x000038, "Wrong size on Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, EntryPoint) == 0x000000, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, CallFunc_GetPlayerState_ReturnValue) == 0x000008, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000010, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, K2Node_Event_InAutomata) == 0x000020, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, K2Node_Event_InState) == 0x000028, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'Change_PlayableCharacter_C_ExecuteUbergraph_Change_PlayableCharacter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_PlayableCharacter_C_ReceiveExecute \ +static_assert(alignof(Change_PlayableCharacter_C_ReceiveExecute) == 0x000008, "Wrong alignment on Change_PlayableCharacter_C_ReceiveExecute"); \ +static_assert(sizeof(Change_PlayableCharacter_C_ReceiveExecute) == 0x000010, "Wrong size on Change_PlayableCharacter_C_ReceiveExecute"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Change_PlayableCharacter_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_PlayableCharacter_C_ReceiveExecute, InState) == 0x000008, "Member 'Change_PlayableCharacter_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChange_PlayableCharacter_C \ +static_assert(alignof(UChange_PlayableCharacter_C) == 0x000008, "Wrong alignment on UChange_PlayableCharacter_C"); \ +static_assert(sizeof(UChange_PlayableCharacter_C) == 0x000098, "Wrong size on UChange_PlayableCharacter_C"); \ +static_assert(offsetof(UChange_PlayableCharacter_C, UberGraphFrame) == 0x000088, "Member 'UChange_PlayableCharacter_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChange_PlayableCharacter_C, Tag) == 0x000090, "Member 'UChange_PlayableCharacter_C::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask \ +static_assert(alignof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask) == 0x000008, "Wrong alignment on ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask"); \ +static_assert(sizeof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask) == 0x000038, "Wrong size on ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, EntryPoint) == 0x000000, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, CallFunc_SetGamePaused_ReturnValue) == 0x000004, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::CallFunc_SetGamePaused_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, K2Node_Event_InAutomata) == 0x000008, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, K2Node_Event_InState) == 0x000010, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, CallFunc_GetHud_ReturnValue) == 0x000018, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, K2Node_DynamicCast_AsHera_HUD) == 0x000020, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask, CallFunc_Push_ReturnValue) == 0x000030, "Member 'ClanChoiceTask_C_ExecuteUbergraph_ClanChoiceTask::CallFunc_Push_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClanChoiceTask_C_ReceiveExecute \ +static_assert(alignof(ClanChoiceTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on ClanChoiceTask_C_ReceiveExecute"); \ +static_assert(sizeof(ClanChoiceTask_C_ReceiveExecute) == 0x000010, "Wrong size on ClanChoiceTask_C_ReceiveExecute"); \ +static_assert(offsetof(ClanChoiceTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ClanChoiceTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClanChoiceTask_C_ReceiveExecute, InState) == 0x000008, "Member 'ClanChoiceTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClanChoiceTask_C \ +static_assert(alignof(UClanChoiceTask_C) == 0x000008, "Wrong alignment on UClanChoiceTask_C"); \ +static_assert(sizeof(UClanChoiceTask_C) == 0x000090, "Wrong size on UClanChoiceTask_C"); \ +static_assert(offsetof(UClanChoiceTask_C, UberGraphFrame) == 0x000088, "Member 'UClanChoiceTask_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTeleport_C \ +static_assert(alignof(UTeleport_C) == 0x000008, "Wrong alignment on UTeleport_C"); \ +static_assert(sizeof(UTeleport_C) == 0x000110, "Wrong size on UTeleport_C"); \ + +#define DUMPER7_ASSERTS_BP_ReinforcementGroup_C_EnemyHasSpawned \ +static_assert(alignof(BP_ReinforcementGroup_C_EnemyHasSpawned) == 0x000008, "Wrong alignment on BP_ReinforcementGroup_C_EnemyHasSpawned"); \ +static_assert(sizeof(BP_ReinforcementGroup_C_EnemyHasSpawned) == 0x000008, "Wrong size on BP_ReinforcementGroup_C_EnemyHasSpawned"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_EnemyHasSpawned, Enemy) == 0x000000, "Member 'BP_ReinforcementGroup_C_EnemyHasSpawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReinforcementGroup_C_EnemySpawned \ +static_assert(alignof(BP_ReinforcementGroup_C_EnemySpawned) == 0x000008, "Wrong alignment on BP_ReinforcementGroup_C_EnemySpawned"); \ +static_assert(sizeof(BP_ReinforcementGroup_C_EnemySpawned) == 0x000008, "Wrong size on BP_ReinforcementGroup_C_EnemySpawned"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_EnemySpawned, Enemy) == 0x000000, "Member 'BP_ReinforcementGroup_C_EnemySpawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup \ +static_assert(alignof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup) == 0x000010, "Wrong alignment on BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup"); \ +static_assert(sizeof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup) == 0x0003D0, "Wrong size on BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, EntryPoint) == 0x000000, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GetCameraRotation_ReturnValue) == 0x000010, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GetCameraLocation_ReturnValue) == 0x000028, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Variable) == 0x000040, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GetTransformAxisVector_ReturnValue) == 0x0000B0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GetTransformAxisVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CreateDelegate_OutputDelegate) == 0x0000C8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Array_Index_Variable) == 0x0000D8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Variable_1) == 0x0000DC, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CustomEvent_TargetActor) == 0x0000E0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CustomEvent_TargetActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CustomEvent_AdditiveTags) == 0x0000E8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CustomEvent_AdditiveTags' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue) == 0x000108, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_IsValid_ReturnValue) == 0x00010C, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00010D, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Length_ReturnValue) == 0x000110, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Length_ReturnValue_1) == 0x000114, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Greater_IntInt_ReturnValue) == 0x000118, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Loop_Counter_Variable) == 0x00011C, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue_1) == 0x000120, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Variable_2) == 0x000124, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Array_Index_Variable_1) == 0x000128, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Get_Item) == 0x000130, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Get_Item_1) == 0x000138, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_IsValid_ReturnValue_1) == 0x000140, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000148, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_IsValid_ReturnValue_2) == 0x000160, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_VectorVector_ReturnValue) == 0x000168, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_IsNotInfront_Return) == 0x000180, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_IsNotInfront_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Length_ReturnValue_2) == 0x000184, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Less_IntInt_ReturnValue) == 0x000188, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_AddUnique_ReturnValue) == 0x00018C, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GetPlayerPawn_ReturnValue) == 0x000190, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000198, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0001B0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_MakeArray_Array) == 0x0001C8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_VSize_ReturnValue) == 0x0001D8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0001E0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x0001F8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_BoxTraceSingle_OutHit) == 0x000200, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_BoxTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_BoxTraceSingle_ReturnValue) == 0x0002E8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_BoxTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_bool_True_if_break_was_hit_Variable) == 0x0002E9, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CustomEvent_Enemy_1) == 0x0002F0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CustomEvent_Enemy_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Not_PreBool_ReturnValue) == 0x0002F8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CreateDelegate_OutputDelegate_1) == 0x0002FC, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x00030C, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Length_ReturnValue_3) == 0x000310, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Subtract_IntInt_ReturnValue) == 0x000314, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_CustomEvent_Enemy) == 0x000318, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000320, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000330, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Wrap_ReturnValue) == 0x000334, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Wrap_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Variable_3) == 0x000338, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Array_Get_Item_2) == 0x000340, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_IsValid_ReturnValue_3) == 0x000348, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_K2_GetActorLocation_ReturnValue_2) == 0x000350, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_K2_GetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x000368, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Normal_ReturnValue) == 0x000380, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Dot_VectorVector_ReturnValue) == 0x000398, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_DegAcos_ReturnValue) == 0x0003A0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0003A8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue_2) == 0x0003AC, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_int_Loop_Counter_Variable_1) == 0x0003B0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Less_IntInt_ReturnValue_1) == 0x0003B4, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue_3) == 0x0003B8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_BooleanAND_ReturnValue) == 0x0003BC, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue_4) == 0x0003C0, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Less_IntInt_ReturnValue_2) == 0x0003C4, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, CallFunc_Add_IntInt_ReturnValue_5) == 0x0003C8, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_bool_Variable) == 0x0003CC, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, Temp_bool_Variable_1) == 0x0003CD, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup, K2Node_Select_Default) == 0x0003CE, "Member 'BP_ReinforcementGroup_C_ExecuteUbergraph_BP_ReinforcementGroup::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReinforcementGroup_C_IsNotInfront \ +static_assert(alignof(BP_ReinforcementGroup_C_IsNotInfront) == 0x000008, "Wrong alignment on BP_ReinforcementGroup_C_IsNotInfront"); \ +static_assert(sizeof(BP_ReinforcementGroup_C_IsNotInfront) == 0x0000B0, "Wrong size on BP_ReinforcementGroup_C_IsNotInfront"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, Target_0) == 0x000000, "Member 'BP_ReinforcementGroup_C_IsNotInfront::Target_0' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, Return) == 0x000018, "Member 'BP_ReinforcementGroup_C_IsNotInfront::Return' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_GetActorForwardVector_ReturnValue) == 0x000028, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_GetActorBounds_Origin) == 0x000040, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_GetActorBounds_BoxExtent) == 0x000058, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_FindLookAtRotation_ReturnValue) == 0x000070, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_FindLookAtRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_GetForwardVector_ReturnValue) == 0x000088, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000A0, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_IsNotInfront, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_ReinforcementGroup_C_IsNotInfront::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReinforcementGroup_C_TriggerSpawning \ +static_assert(alignof(BP_ReinforcementGroup_C_TriggerSpawning) == 0x000008, "Wrong alignment on BP_ReinforcementGroup_C_TriggerSpawning"); \ +static_assert(sizeof(BP_ReinforcementGroup_C_TriggerSpawning) == 0x000028, "Wrong size on BP_ReinforcementGroup_C_TriggerSpawning"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_TriggerSpawning, TargetActor) == 0x000000, "Member 'BP_ReinforcementGroup_C_TriggerSpawning::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ReinforcementGroup_C_TriggerSpawning, AdditiveTags) == 0x000008, "Member 'BP_ReinforcementGroup_C_TriggerSpawning::AdditiveTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ReinforcementGroup_C \ +static_assert(alignof(ABP_ReinforcementGroup_C) == 0x000008, "Wrong alignment on ABP_ReinforcementGroup_C"); \ +static_assert(sizeof(ABP_ReinforcementGroup_C) == 0x000328, "Wrong size on ABP_ReinforcementGroup_C"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, UberGraphFrame) == 0x000298, "Member 'ABP_ReinforcementGroup_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Billboard) == 0x0002A0, "Member 'ABP_ReinforcementGroup_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_ReinforcementGroup_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Objective) == 0x0002B0, "Member 'ABP_ReinforcementGroup_C::Objective' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, SpawnedEnemyCount) == 0x0002B8, "Member 'ABP_ReinforcementGroup_C::SpawnedEnemyCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, NumberToSpawn) == 0x0002BC, "Member 'ABP_ReinforcementGroup_C::NumberToSpawn' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, MinimumDistanceFromTarget) == 0x0002C0, "Member 'ABP_ReinforcementGroup_C::MinimumDistanceFromTarget' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Spawners) == 0x0002C8, "Member 'ABP_ReinforcementGroup_C::Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, ValidSpawners) == 0x0002D8, "Member 'ABP_ReinforcementGroup_C::ValidSpawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Target) == 0x0002E8, "Member 'ABP_ReinforcementGroup_C::Target' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Additive_Tags) == 0x0002F0, "Member 'ABP_ReinforcementGroup_C::Additive_Tags' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, Index_0) == 0x000310, "Member 'ABP_ReinforcementGroup_C::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, IgnoreLineOfSightChecker) == 0x000314, "Member 'ABP_ReinforcementGroup_C::IgnoreLineOfSightChecker' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, EnemiesSpawned) == 0x000318, "Member 'ABP_ReinforcementGroup_C::EnemiesSpawned' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, SpawnAnimationTag) == 0x00031C, "Member 'ABP_ReinforcementGroup_C::SpawnAnimationTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReinforcementGroup_C, UseDistanceChecker) == 0x000324, "Member 'ABP_ReinforcementGroup_C::UseDistanceChecker' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDR_Ryong_C \ +static_assert(alignof(UPD_STS_MDR_Ryong_C) == 0x000008, "Wrong alignment on UPD_STS_MDR_Ryong_C"); \ +static_assert(sizeof(UPD_STS_MDR_Ryong_C) == 0x000058, "Wrong size on UPD_STS_MDR_Ryong_C"); \ + +#define DUMPER7_ASSERTS_AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal \ +static_assert(alignof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal) == 0x000008, "Wrong alignment on AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal"); \ +static_assert(sizeof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal) == 0x000028, "Wrong size on AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal, EntryPoint) == 0x000000, "Member 'AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal, Temp_delegate_Variable) == 0x000004, "Member 'AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal, K2Node_Event_InAutomata) == 0x000018, "Member 'AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal, K2Node_Event_InState) == 0x000020, "Member 'AudioPostEventGlobal_C_ExecuteUbergraph_AudioPostEventGlobal::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioPostEventGlobal_C_ReceiveExecute \ +static_assert(alignof(AudioPostEventGlobal_C_ReceiveExecute) == 0x000008, "Wrong alignment on AudioPostEventGlobal_C_ReceiveExecute"); \ +static_assert(sizeof(AudioPostEventGlobal_C_ReceiveExecute) == 0x000010, "Wrong size on AudioPostEventGlobal_C_ReceiveExecute"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AudioPostEventGlobal_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioPostEventGlobal_C_ReceiveExecute, InState) == 0x000008, "Member 'AudioPostEventGlobal_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioPostEventGlobal_C \ +static_assert(alignof(UAudioPostEventGlobal_C) == 0x000008, "Wrong alignment on UAudioPostEventGlobal_C"); \ +static_assert(sizeof(UAudioPostEventGlobal_C) == 0x000098, "Wrong size on UAudioPostEventGlobal_C"); \ +static_assert(offsetof(UAudioPostEventGlobal_C, UberGraphFrame) == 0x000088, "Member 'UAudioPostEventGlobal_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAudioPostEventGlobal_C, AudioEvent) == 0x000090, "Member 'UAudioPostEventGlobal_C::AudioEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView \ +static_assert(alignof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView) == 0x000008, "Wrong alignment on UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView"); \ +static_assert(sizeof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView) == 0x000028, "Wrong size on UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView, EntryPoint) == 0x000000, "Member 'UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView, K2Node_Event_InAutomata) == 0x000008, "Member 'UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView, K2Node_Event_InState) == 0x000010, "Member 'UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'UnrestrictPlayerView_C_ExecuteUbergraph_UnrestrictPlayerView::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnrestrictPlayerView_C_ReceiveExecute \ +static_assert(alignof(UnrestrictPlayerView_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnrestrictPlayerView_C_ReceiveExecute"); \ +static_assert(sizeof(UnrestrictPlayerView_C_ReceiveExecute) == 0x000010, "Wrong size on UnrestrictPlayerView_C_ReceiveExecute"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnrestrictPlayerView_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnrestrictPlayerView_C_ReceiveExecute, InState) == 0x000008, "Member 'UnrestrictPlayerView_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnrestrictPlayerView_C \ +static_assert(alignof(UUnrestrictPlayerView_C) == 0x000008, "Wrong alignment on UUnrestrictPlayerView_C"); \ +static_assert(sizeof(UUnrestrictPlayerView_C) == 0x0000B8, "Wrong size on UUnrestrictPlayerView_C"); \ +static_assert(offsetof(UUnrestrictPlayerView_C, UberGraphFrame) == 0x000088, "Member 'UUnrestrictPlayerView_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UUnrestrictPlayerView_C, Target) == 0x000090, "Member 'UUnrestrictPlayerView_C::Target' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestroyActors_C_DestroyActorsWithTag \ +static_assert(alignof(DestroyActors_C_DestroyActorsWithTag) == 0x000008, "Wrong alignment on DestroyActors_C_DestroyActorsWithTag"); \ +static_assert(sizeof(DestroyActors_C_DestroyActorsWithTag) == 0x000040, "Wrong size on DestroyActors_C_DestroyActorsWithTag"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, Tag) == 0x000000, "Member 'DestroyActors_C_DestroyActorsWithTag::Tag' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_GetActorsWithTag_OutActors) == 0x000010, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_GetActorsWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_IsEmpty_ReturnValue) == 0x000020, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, Temp_int_Array_Index_Variable) == 0x000028, "Member 'DestroyActors_C_DestroyActorsWithTag::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, Temp_int_Loop_Counter_Variable) == 0x00002C, "Member 'DestroyActors_C_DestroyActorsWithTag::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_Array_Get_Item) == 0x000030, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DestroyActorsWithTag, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'DestroyActors_C_DestroyActorsWithTag::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestroyActors_C_DetroyActor \ +static_assert(alignof(DestroyActors_C_DetroyActor) == 0x000008, "Wrong alignment on DestroyActors_C_DetroyActor"); \ +static_assert(sizeof(DestroyActors_C_DetroyActor) == 0x000040, "Wrong size on DestroyActors_C_DetroyActor"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, Actor) == 0x000000, "Member 'DestroyActors_C_DetroyActor::Actor' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'DestroyActors_C_DetroyActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_GetAttachedActors_OutActors) == 0x000010, "Member 'DestroyActors_C_DetroyActor::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'DestroyActors_C_DetroyActor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, Temp_int_Array_Index_Variable) == 0x000024, "Member 'DestroyActors_C_DetroyActor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'DestroyActors_C_DetroyActor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_Array_Get_Item) == 0x000030, "Member 'DestroyActors_C_DetroyActor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'DestroyActors_C_DetroyActor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_DetroyActor, CallFunc_Add_IntInt_ReturnValue) == 0x00003C, "Member 'DestroyActors_C_DetroyActor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestroyActors_C_ExecuteUbergraph_DestroyActors \ +static_assert(alignof(DestroyActors_C_ExecuteUbergraph_DestroyActors) == 0x000008, "Wrong alignment on DestroyActors_C_ExecuteUbergraph_DestroyActors"); \ +static_assert(sizeof(DestroyActors_C_ExecuteUbergraph_DestroyActors) == 0x0000C0, "Wrong size on DestroyActors_C_ExecuteUbergraph_DestroyActors"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, EntryPoint) == 0x000000, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Array_Index_Variable) == 0x000004, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Loop_Counter_Variable_1) == 0x00000C, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Array_Index_Variable_1) == 0x000018, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, K2Node_Event_InAutomata) == 0x000028, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, K2Node_Event_InState) == 0x000030, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Get_Item) == 0x000038, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_ResolveToLevelActor_ReturnValue) == 0x000060, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_ResolveToLevelActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Get_Item_2) == 0x000098, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x0000A8, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_IsValid_ReturnValue) == 0x0000B0, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Length_ReturnValue_1) == 0x0000B4, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Array_Length_ReturnValue_2) == 0x0000B8, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000BC, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ExecuteUbergraph_DestroyActors, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000BD, "Member 'DestroyActors_C_ExecuteUbergraph_DestroyActors::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DestroyActors_C_ReceiveExecute \ +static_assert(alignof(DestroyActors_C_ReceiveExecute) == 0x000008, "Wrong alignment on DestroyActors_C_ReceiveExecute"); \ +static_assert(sizeof(DestroyActors_C_ReceiveExecute) == 0x000010, "Wrong size on DestroyActors_C_ReceiveExecute"); \ +static_assert(offsetof(DestroyActors_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DestroyActors_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DestroyActors_C_ReceiveExecute, InState) == 0x000008, "Member 'DestroyActors_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDestroyActors_C \ +static_assert(alignof(UDestroyActors_C) == 0x000008, "Wrong alignment on UDestroyActors_C"); \ +static_assert(sizeof(UDestroyActors_C) == 0x0000D8, "Wrong size on UDestroyActors_C"); \ +static_assert(offsetof(UDestroyActors_C, UberGraphFrame) == 0x000088, "Member 'UDestroyActors_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UDestroyActors_C, FindByTag_DEPRECATED) == 0x000090, "Member 'UDestroyActors_C::FindByTag_DEPRECATED' has a wrong offset!"); \ +static_assert(offsetof(UDestroyActors_C, FindByTags) == 0x0000A0, "Member 'UDestroyActors_C::FindByTags' has a wrong offset!"); \ +static_assert(offsetof(UDestroyActors_C, ActorsToDestroy) == 0x0000B0, "Member 'UDestroyActors_C::ActorsToDestroy' has a wrong offset!"); \ +static_assert(offsetof(UDestroyActors_C, ActorsToDestroy_DEPRECATED) == 0x0000C0, "Member 'UDestroyActors_C::ActorsToDestroy_DEPRECATED' has a wrong offset!"); \ +static_assert(offsetof(UDestroyActors_C, AffectAttachedActors) == 0x0000D0, "Member 'UDestroyActors_C::AffectAttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Adjust_particle_system_variables \ +static_assert(alignof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Adjust_particle_system_variables"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables) == 0x000078, "Wrong size on GC_Telekinesis_Hit_C_Adjust_particle_system_variables"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_Conv_VectorToText_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_Conv_VectorToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_X) == 0x000018, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_Y) == 0x000020, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_Z) == 0x000028, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_X_1) == 0x000030, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_Y_1) == 0x000038, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_BreakVector_Z_1) == 0x000040, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000048, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000050, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_MakeVector_ReturnValue) == 0x000058, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Adjust_particle_system_variables, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'GC_Telekinesis_Hit_C_Adjust_particle_system_variables::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_ApplyForce \ +static_assert(alignof(GC_Telekinesis_Hit_C_ApplyForce) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_ApplyForce"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_ApplyForce) == 0x000010, "Wrong size on GC_Telekinesis_Hit_C_ApplyForce"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_ApplyForce, CallFunc_ApplyMovableForceAtLocation_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_ApplyForce::CallFunc_ApplyMovableForceAtLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection \ +static_assert(alignof(GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection) == 0x000048, "Wrong size on GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000018, "Member 'GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection, CallFunc_Add_VectorVector_ReturnValue) == 0x000030, "Member 'GC_Telekinesis_Hit_C_DrawDebugIncidenceReflection::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit \ +static_assert(alignof(GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit) == 0x0000F8, "Wrong size on GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit, EntryPoint) == 0x000000, "Member 'GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit, K2Node_CustomEvent_HitResult) == 0x000008, "Member 'GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit::K2Node_CustomEvent_HitResult' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit, CallFunc_Spawn_impact_FX_ReturnValue) == 0x0000F0, "Member 'GC_Telekinesis_Hit_C_ExecuteUbergraph_GC_Telekinesis_Hit::CallFunc_Spawn_impact_FX_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_GetParticlesToSpawn \ +static_assert(alignof(GC_Telekinesis_Hit_C_GetParticlesToSpawn) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_GetParticlesToSpawn"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_GetParticlesToSpawn) == 0x000020, "Wrong size on GC_Telekinesis_Hit_C_GetParticlesToSpawn"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_GetParticlesToSpawn, Value) == 0x000000, "Member 'GC_Telekinesis_Hit_C_GetParticlesToSpawn::Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_GetParticlesToSpawn, Default_particles_to_spawn) == 0x000008, "Member 'GC_Telekinesis_Hit_C_GetParticlesToSpawn::Default_particles_to_spawn' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_GetParticlesToSpawn, CallFunc_Map_Find_Value) == 0x000010, "Member 'GC_Telekinesis_Hit_C_GetParticlesToSpawn::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_GetParticlesToSpawn, CallFunc_Map_Find_ReturnValue) == 0x000018, "Member 'GC_Telekinesis_Hit_C_GetParticlesToSpawn::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_OnExecute \ +static_assert(alignof(GC_Telekinesis_Hit_C_OnExecute) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_OnExecute"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_OnExecute) == 0x0002E0, "Wrong size on GC_Telekinesis_Hit_C_OnExecute"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, MyTarget) == 0x000000, "Member 'GC_Telekinesis_Hit_C_OnExecute::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, Parameters) == 0x000008, "Member 'GC_Telekinesis_Hit_C_OnExecute::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, ReturnValue) == 0x0000E0, "Member 'GC_Telekinesis_Hit_C_OnExecute::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_GetOwner_ReturnValue) == 0x0000E8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x0000F0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x0000F4, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x0000F8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000110, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000118, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000120, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000140, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_Location) == 0x000160, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_Normal) == 0x000178, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_Instigator) == 0x000190, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x000198, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x0001A0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0001A8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0001B0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0001B4, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0001B8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001C0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x0001C8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_Get_Value) == 0x0001D0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_Get_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_Get_IsValid) == 0x0001D8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_Get_IsValid' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_GetOwner_ReturnValue_1) == 0x0001E0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_GetOwner_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1) == 0x0001E8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_Get_Value_1) == 0x0001F0, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_Get_Value_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecute, CallFunc_Get_IsValid_1) == 0x0002D8, "Member 'GC_Telekinesis_Hit_C_OnExecute::CallFunc_Get_IsValid_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_OnExecuteAudio \ +static_assert(alignof(GC_Telekinesis_Hit_C_OnExecuteAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_OnExecuteAudio"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_OnExecuteAudio) == 0x000350, "Wrong size on GC_Telekinesis_Hit_C_OnExecuteAudio"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Surface) == 0x0000E8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Surface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Temp_delegate_Variable) == 0x0000EC, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x0000FC, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000100, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000108, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000120, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000128, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000130, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000150, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_Location) == 0x000170, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_Normal) == 0x000188, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0001A0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0001A8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x0001B0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0001B8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0001C0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0001C4, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0001C8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001D0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Temp_delegate_Variable_1) == 0x0001D4, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_IsValid_ReturnValue) == 0x0001E4, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetSwitchForSurfaceType_OutExecBranches) == 0x0001E5, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetSwitchForSurfaceType_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetSwitchForSurfaceType_ReturnValue) == 0x0001E8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetSwitchForSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_SwitchEnum_CmpSuccess) == 0x0001F0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Temp_bool_Variable) == 0x0001F1, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetSwitchForSurfaceType_OutExecBranches_1) == 0x0001F2, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetSwitchForSurfaceType_OutExecBranches_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetSwitchForSurfaceType_ReturnValue_1) == 0x0001F8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetSwitchForSurfaceType_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000200, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_SwitchEnum_CmpSuccess_1) == 0x000201, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, Temp_delegate_Variable_2) == 0x000204, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x000218, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_bSuccess) == 0x000228, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetPlayerPawn_ReturnValue) == 0x000230, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetAudioComponent_AudioComponent) == 0x000238, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000240, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_bSuccess_1) == 0x000250, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000251, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000258, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue) == 0x000260, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BP_ApplyGameplayEffectToSelf_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_bBlockingHit) == 0x000268, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_bInitialOverlap) == 0x000269, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_Time) == 0x00026C, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_Distance) == 0x000270, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_Location) == 0x000278, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_ImpactPoint) == 0x000290, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_Normal) == 0x0002A8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_ImpactNormal) == 0x0002C0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_PhysMat) == 0x0002D8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_HitActor) == 0x0002E0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_HitComponent) == 0x0002E8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_HitBoneName) == 0x0002F0, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_BoneName) == 0x0002F8, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_HitItem) == 0x000300, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_ElementIndex) == 0x000304, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_FaceIndex) == 0x000308, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_TraceStart) == 0x000310, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_BreakHitResult_TraceEnd) == 0x000328, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_AsBP_Enemy_Character_Base) == 0x000340, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_AsBP_Enemy_Character_Base' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, K2Node_DynamicCast_bSuccess_2) == 0x000348, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_OnExecuteAudio, CallFunc_IsValid_ReturnValue_1) == 0x000349, "Member 'GC_Telekinesis_Hit_C_OnExecuteAudio::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Precalculate_variables \ +static_assert(alignof(GC_Telekinesis_Hit_C_Precalculate_variables) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Precalculate_variables"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Precalculate_variables) == 0x000088, "Wrong size on GC_Telekinesis_Hit_C_Precalculate_variables"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_GetReflectionVector_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_GetReflectionVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000018, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_GetOwner_ReturnValue) == 0x000030, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000038, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000058, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Precalculate_variables, CallFunc_Normal_ReturnValue) == 0x000070, "Member 'GC_Telekinesis_Hit_C_Precalculate_variables::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Process_hit_result \ +static_assert(alignof(GC_Telekinesis_Hit_C_Process_hit_result) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Process_hit_result"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Process_hit_result) == 0x0000D8, "Wrong size on GC_Telekinesis_Hit_C_Process_hit_result"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_GetSurfaceType_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_GetSurfaceType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_bBlockingHit) == 0x000001, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_bInitialOverlap) == 0x000002, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_Time) == 0x000004, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_Distance) == 0x000008, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_Location) == 0x000010, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_ImpactPoint) == 0x000028, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_Normal) == 0x000040, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_ImpactNormal) == 0x000058, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_PhysMat) == 0x000070, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_HitActor) == 0x000078, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_HitComponent) == 0x000080, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_HitBoneName) == 0x000088, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_BoneName) == 0x000090, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_HitItem) == 0x000098, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_ElementIndex) == 0x00009C, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_FaceIndex) == 0x0000A0, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_TraceStart) == 0x0000A8, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Process_hit_result, CallFunc_BreakHitResult_TraceEnd) == 0x0000C0, "Member 'GC_Telekinesis_Hit_C_Process_hit_result::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Spawn_decal \ +static_assert(alignof(GC_Telekinesis_Hit_C_Spawn_decal) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Spawn_decal"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Spawn_decal) == 0x000078, "Wrong size on GC_Telekinesis_Hit_C_Spawn_decal"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, Spawned_decal) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::Spawned_decal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, Decal_Material) == 0x000008, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::Decal_Material' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000010, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_Conv_ObjectToString_ReturnValue) == 0x000028, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_Conv_ObjectToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_SpawnEmitterAtLocation_ReturnValue) == 0x000038, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_SpawnEmitterAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_Conv_StringToText_ReturnValue) == 0x000040, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000058, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_SpawnDecalAtLocation_ReturnValue) == 0x000060, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_SpawnDecalAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_Map_Find_Value) == 0x000068, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_Map_Find_ReturnValue) == 0x000070, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_decal, CallFunc_SpawnDecalAtLocation_LifeSpan_ImplicitCast) == 0x000074, "Member 'GC_Telekinesis_Hit_C_Spawn_decal::CallFunc_SpawnDecalAtLocation_LifeSpan_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Spawn_impact_FX \ +static_assert(alignof(GC_Telekinesis_Hit_C_Spawn_impact_FX) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Spawn_impact_FX"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Spawn_impact_FX) == 0x000018, "Wrong size on GC_Telekinesis_Hit_C_Spawn_impact_FX"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_impact_FX, ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Spawn_impact_FX::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_impact_FX, CallFunc_GetParticlesToSpawn_Value) == 0x000008, "Member 'GC_Telekinesis_Hit_C_Spawn_impact_FX::CallFunc_GetParticlesToSpawn_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_impact_FX, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000010, "Member 'GC_Telekinesis_Hit_C_Spawn_impact_FX::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx \ +static_assert(alignof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx) == 0x000048, "Wrong size on GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000018, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, CallFunc_GetDataAsset_ReturnValue) == 0x000030, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::CallFunc_GetDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000038, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'GC_Telekinesis_Hit_C_Spawn_projectile_smash_fx::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_SpawnParticle \ +static_assert(alignof(GC_Telekinesis_Hit_C_SpawnParticle) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_SpawnParticle"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_SpawnParticle) == 0x0000E8, "Wrong size on GC_Telekinesis_Hit_C_SpawnParticle"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_SpawnParticle, HitResult_0) == 0x000000, "Member 'GC_Telekinesis_Hit_C_SpawnParticle::HitResult_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hit_C_Trigger_moveables_interface \ +static_assert(alignof(GC_Telekinesis_Hit_C_Trigger_moveables_interface) == 0x000008, "Wrong alignment on GC_Telekinesis_Hit_C_Trigger_moveables_interface"); \ +static_assert(sizeof(GC_Telekinesis_Hit_C_Trigger_moveables_interface) == 0x000078, "Wrong size on GC_Telekinesis_Hit_C_Trigger_moveables_interface"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, Temp_object_Variable) == 0x000000, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, Temp_int_Array_Index_Variable) == 0x000010, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_K2_SetTimer_ReturnValue) == 0x000020, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_K2_SetTimer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, K2Node_MakeArray_Array) == 0x000028, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_SphereOverlapActors_OutActors) == 0x000038, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_SphereOverlapActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_SphereOverlapActors_ReturnValue) == 0x000048, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_SphereOverlapActors_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_Array_Get_Item) == 0x000050, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, K2Node_DynamicCast_AsBPI_Movable) == 0x000060, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::K2Node_DynamicCast_AsBPI_Movable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hit_C_Trigger_moveables_interface, CallFunc_DoesImplementInterface_ReturnValue) == 0x000071, "Member 'GC_Telekinesis_Hit_C_Trigger_moveables_interface::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_Hit_C \ +static_assert(alignof(AGC_Telekinesis_Hit_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_Hit_C"); \ +static_assert(sizeof(AGC_Telekinesis_Hit_C) == 0x0005C8, "Wrong size on AGC_Telekinesis_Hit_C"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, UberGraphFrame) == 0x000308, "Member 'AGC_Telekinesis_Hit_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, DefaultSceneRoot) == 0x000310, "Member 'AGC_Telekinesis_Hit_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, ParticlesBySurfaceType) == 0x000318, "Member 'AGC_Telekinesis_Hit_C::ParticlesBySurfaceType' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, AudioThrowableTypes) == 0x000368, "Member 'AGC_Telekinesis_Hit_C::AudioThrowableTypes' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Audio_DisableOcclusion) == 0x0003B8, "Member 'AGC_Telekinesis_Hit_C::Audio_DisableOcclusion' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Audio_Debug) == 0x0003B9, "Member 'AGC_Telekinesis_Hit_C::Audio_Debug' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, DecalsBySurfaceType) == 0x0003C0, "Member 'AGC_Telekinesis_Hit_C::DecalsBySurfaceType' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Decal_LifeSpan) == 0x000410, "Member 'AGC_Telekinesis_Hit_C::Decal_LifeSpan' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, FX_Debug) == 0x000418, "Member 'AGC_Telekinesis_Hit_C::FX_Debug' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, SpawnedAudio) == 0x000420, "Member 'AGC_Telekinesis_Hit_C::SpawnedAudio' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Target) == 0x000428, "Member 'AGC_Telekinesis_Hit_C::Target' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, HitResult) == 0x000430, "Member 'AGC_Telekinesis_Hit_C::HitResult' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Surface_type) == 0x000518, "Member 'AGC_Telekinesis_Hit_C::Surface_type' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Hit_physical_material) == 0x000520, "Member 'AGC_Telekinesis_Hit_C::Hit_physical_material' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Hit_location) == 0x000528, "Member 'AGC_Telekinesis_Hit_C::Hit_location' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Hit_Normal) == 0x000540, "Member 'AGC_Telekinesis_Hit_C::Hit_Normal' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Impact_Normal) == 0x000558, "Member 'AGC_Telekinesis_Hit_C::Impact_Normal' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Impact_Normal_rotator) == 0x000570, "Member 'AGC_Telekinesis_Hit_C::Impact_Normal_rotator' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Impact_reflection_direction) == 0x000588, "Member 'AGC_Telekinesis_Hit_C::Impact_reflection_direction' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Incidence_direction) == 0x0005A0, "Member 'AGC_Telekinesis_Hit_C::Incidence_direction' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Spawned_particle_system) == 0x0005B8, "Member 'AGC_Telekinesis_Hit_C::Spawned_particle_system' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hit_C, Default_particles) == 0x0005C0, "Member 'AGC_Telekinesis_Hit_C::Default_particles' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaitForInterferenceOfEnemy_C_EnemyDamaged \ +static_assert(alignof(WaitForInterferenceOfEnemy_C_EnemyDamaged) == 0x000008, "Wrong alignment on WaitForInterferenceOfEnemy_C_EnemyDamaged"); \ +static_assert(sizeof(WaitForInterferenceOfEnemy_C_EnemyDamaged) == 0x000008, "Wrong size on WaitForInterferenceOfEnemy_C_EnemyDamaged"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_EnemyDamaged, CharacterDamaged) == 0x000000, "Member 'WaitForInterferenceOfEnemy_C_EnemyDamaged::CharacterDamaged' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy \ +static_assert(alignof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy) == 0x000008, "Wrong alignment on WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy"); \ +static_assert(sizeof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy) == 0x000070, "Wrong size on WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, EntryPoint) == 0x000000, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, K2Node_CustomEvent_CharacterDamaged) == 0x000008, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::K2Node_CustomEvent_CharacterDamaged' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, K2Node_Event_InAutomata) == 0x000020, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, K2Node_Event_InState) == 0x000028, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, K2Node_CreateDelegate_OutputDelegate_1) == 0x000030, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000040, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000048, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, CallFunc_Array_Get_Item) == 0x000058, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, CallFunc_WaitGameplayTagQueryOnActor_ReturnValue) == 0x000060, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::CallFunc_WaitGameplayTagQueryOnActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'WaitForInterferenceOfEnemy_C_ExecuteUbergraph_WaitForInterferenceOfEnemy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WaitForInterferenceOfEnemy_C_ReceiveExecute \ +static_assert(alignof(WaitForInterferenceOfEnemy_C_ReceiveExecute) == 0x000008, "Wrong alignment on WaitForInterferenceOfEnemy_C_ReceiveExecute"); \ +static_assert(sizeof(WaitForInterferenceOfEnemy_C_ReceiveExecute) == 0x000010, "Wrong size on WaitForInterferenceOfEnemy_C_ReceiveExecute"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'WaitForInterferenceOfEnemy_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(WaitForInterferenceOfEnemy_C_ReceiveExecute, InState) == 0x000008, "Member 'WaitForInterferenceOfEnemy_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWaitForInterferenceOfEnemy_C \ +static_assert(alignof(UWaitForInterferenceOfEnemy_C) == 0x000008, "Wrong alignment on UWaitForInterferenceOfEnemy_C"); \ +static_assert(sizeof(UWaitForInterferenceOfEnemy_C) == 0x0000A0, "Wrong size on UWaitForInterferenceOfEnemy_C"); \ +static_assert(offsetof(UWaitForInterferenceOfEnemy_C, UberGraphFrame) == 0x000088, "Member 'UWaitForInterferenceOfEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWaitForInterferenceOfEnemy_C, EnemyTag) == 0x000090, "Member 'UWaitForInterferenceOfEnemy_C::EnemyTag' has a wrong offset!"); \ +static_assert(offsetof(UWaitForInterferenceOfEnemy_C, In_Objective) == 0x000098, "Member 'UWaitForInterferenceOfEnemy_C::In_Objective' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence \ +static_assert(alignof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence) == 0x000008, "Wrong alignment on PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence"); \ +static_assert(sizeof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence) == 0x000050, "Wrong size on PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, EntryPoint) == 0x000000, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, Temp_int_Array_Index_Variable) == 0x000004, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, K2Node_Event_InAutomata) == 0x000010, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, K2Node_Event_InState) == 0x000018, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000028, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_Array_Get_Item) == 0x000040, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'PlayEnemySequence_C_ExecuteUbergraph_PlayEnemySequence::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayEnemySequence_C_ReceiveExecute \ +static_assert(alignof(PlayEnemySequence_C_ReceiveExecute) == 0x000008, "Wrong alignment on PlayEnemySequence_C_ReceiveExecute"); \ +static_assert(sizeof(PlayEnemySequence_C_ReceiveExecute) == 0x000010, "Wrong size on PlayEnemySequence_C_ReceiveExecute"); \ +static_assert(offsetof(PlayEnemySequence_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'PlayEnemySequence_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayEnemySequence_C_ReceiveExecute, InState) == 0x000008, "Member 'PlayEnemySequence_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayEnemySequence_C \ +static_assert(alignof(UPlayEnemySequence_C) == 0x000008, "Wrong alignment on UPlayEnemySequence_C"); \ +static_assert(sizeof(UPlayEnemySequence_C) == 0x0000A0, "Wrong size on UPlayEnemySequence_C"); \ +static_assert(offsetof(UPlayEnemySequence_C, UberGraphFrame) == 0x000088, "Member 'UPlayEnemySequence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UPlayEnemySequence_C, EnemyTag) == 0x000090, "Member 'UPlayEnemySequence_C::EnemyTag' has a wrong offset!"); \ +static_assert(offsetof(UPlayEnemySequence_C, SequenceTag) == 0x000098, "Member 'UPlayEnemySequence_C::SequenceTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase \ +static_assert(alignof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase) == 0x000008, "Wrong alignment on BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase"); \ +static_assert(sizeof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase) == 0x000078, "Wrong size on BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, EntryPoint) == 0x000000, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, Temp_bool_Variable) == 0x000004, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, Temp_bool_Variable_1) == 0x000005, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, Temp_object_Variable) == 0x000008, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, Temp_object_Variable_1) == 0x000018, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000028, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_GetPlayerState_ReturnValue) == 0x000030, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_GetProperty_ReturnValue) == 0x000038, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000040, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000049, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, K2Node_Select_Default) == 0x000050, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, K2Node_Select_Default_1) == 0x000060, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_Array_IsEmpty_ReturnValue) == 0x000070, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase, CallFunc_Array_IsEmpty_ReturnValue_1) == 0x000071, "Member 'BP_TransitionBase_C_ExecuteUbergraph_BP_TransitionBase::CallFunc_Array_IsEmpty_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionBase_C \ +static_assert(alignof(ABP_TransitionBase_C) == 0x000008, "Wrong alignment on ABP_TransitionBase_C"); \ +static_assert(sizeof(ABP_TransitionBase_C) == 0x000340, "Wrong size on ABP_TransitionBase_C"); \ +static_assert(offsetof(ABP_TransitionBase_C, UberGraphFrame) == 0x0002E0, "Member 'ABP_TransitionBase_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Data_Layers_to_Activate) == 0x0002E8, "Member 'ABP_TransitionBase_C::Data_Layers_to_Activate' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Data_Layers_to_Deactivate) == 0x0002F8, "Member 'ABP_TransitionBase_C::Data_Layers_to_Deactivate' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Distance_Datalayers) == 0x000308, "Member 'ABP_TransitionBase_C::Distance_Datalayers' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Malk_Data_Layers_to_Activate) == 0x000318, "Member 'ABP_TransitionBase_C::Malk_Data_Layers_to_Activate' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Malk_Data_Layers_to_Deactivate) == 0x000328, "Member 'ABP_TransitionBase_C::Malk_Data_Layers_to_Deactivate' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionBase_C, Player_State) == 0x000338, "Member 'ABP_TransitionBase_C::Player_State' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors \ +static_assert(alignof(SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors) == 0x000008, "Wrong alignment on SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors"); \ +static_assert(sizeof(SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors) == 0x000018, "Wrong size on SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors"); \ +static_assert(offsetof(SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors, EntryPoint) == 0x000000, "Member 'SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors, K2Node_Event_InAutomata) == 0x000008, "Member 'SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors, K2Node_Event_InState) == 0x000010, "Member 'SpawnEnemyActors_C_ExecuteUbergraph_SpawnEnemyActors::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemyActors_C_ReceiveExecute \ +static_assert(alignof(SpawnEnemyActors_C_ReceiveExecute) == 0x000008, "Wrong alignment on SpawnEnemyActors_C_ReceiveExecute"); \ +static_assert(sizeof(SpawnEnemyActors_C_ReceiveExecute) == 0x000010, "Wrong size on SpawnEnemyActors_C_ReceiveExecute"); \ +static_assert(offsetof(SpawnEnemyActors_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SpawnEnemyActors_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemyActors_C_ReceiveExecute, InState) == 0x000008, "Member 'SpawnEnemyActors_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpawnEnemyActors_C \ +static_assert(alignof(USpawnEnemyActors_C) == 0x000008, "Wrong alignment on USpawnEnemyActors_C"); \ +static_assert(sizeof(USpawnEnemyActors_C) == 0x0000D0, "Wrong size on USpawnEnemyActors_C"); \ +static_assert(offsetof(USpawnEnemyActors_C, UberGraphFrame) == 0x0000C8, "Member 'USpawnEnemyActors_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate \ +static_assert(alignof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate) == 0x000008, "Wrong alignment on ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate"); \ +static_assert(sizeof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate) == 0x000038, "Wrong size on ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, EntryPoint) == 0x000000, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, K2Node_Event_InAutomata) == 0x000008, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, K2Node_Event_InState) == 0x000010, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, CallFunc_GetGameMode_ReturnValue) == 0x000018, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000020, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000030, "Member 'ObjectiveCounterUpdate_C_ExecuteUbergraph_ObjectiveCounterUpdate::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ObjectiveCounterUpdate_C_ReceiveExecute \ +static_assert(alignof(ObjectiveCounterUpdate_C_ReceiveExecute) == 0x000008, "Wrong alignment on ObjectiveCounterUpdate_C_ReceiveExecute"); \ +static_assert(sizeof(ObjectiveCounterUpdate_C_ReceiveExecute) == 0x000010, "Wrong size on ObjectiveCounterUpdate_C_ReceiveExecute"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ObjectiveCounterUpdate_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ObjectiveCounterUpdate_C_ReceiveExecute, InState) == 0x000008, "Member 'ObjectiveCounterUpdate_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UObjectiveCounterUpdate_C \ +static_assert(alignof(UObjectiveCounterUpdate_C) == 0x000008, "Wrong alignment on UObjectiveCounterUpdate_C"); \ +static_assert(sizeof(UObjectiveCounterUpdate_C) == 0x0000B8, "Wrong size on UObjectiveCounterUpdate_C"); \ +static_assert(offsetof(UObjectiveCounterUpdate_C, UberGraphFrame) == 0x000088, "Member 'UObjectiveCounterUpdate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UObjectiveCounterUpdate_C, VariableToWatch) == 0x000090, "Member 'UObjectiveCounterUpdate_C::VariableToWatch' has a wrong offset!"); \ +static_assert(offsetof(UObjectiveCounterUpdate_C, ObjectiveText) == 0x000098, "Member 'UObjectiveCounterUpdate_C::ObjectiveText' has a wrong offset!"); \ +static_assert(offsetof(UObjectiveCounterUpdate_C, CountToReact) == 0x0000B0, "Member 'UObjectiveCounterUpdate_C::CountToReact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate \ +static_assert(alignof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate) == 0x000008, "Wrong alignment on VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate"); \ +static_assert(sizeof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate) == 0x000048, "Wrong size on VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, EntryPoint) == 0x000000, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, K2Node_Event_InAutomata) == 0x000008, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, K2Node_Event_InState) == 0x000010, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue) == 0x000018, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue_1) == 0x00001C, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue_2) == 0x000024, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_GetTaggedWhereIsWallyPedestriansCount_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_Greater_IntInt_ReturnValue) == 0x000028, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, K2Node_CreateDelegate_OutputDelegate) == 0x00002C, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000040, "Member 'VictimTagUpdate_C_ExecuteUbergraph_VictimTagUpdate::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_VictimTagUpdate_C_ReceiveExecute \ +static_assert(alignof(VictimTagUpdate_C_ReceiveExecute) == 0x000008, "Wrong alignment on VictimTagUpdate_C_ReceiveExecute"); \ +static_assert(sizeof(VictimTagUpdate_C_ReceiveExecute) == 0x000010, "Wrong size on VictimTagUpdate_C_ReceiveExecute"); \ +static_assert(offsetof(VictimTagUpdate_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'VictimTagUpdate_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(VictimTagUpdate_C_ReceiveExecute, InState) == 0x000008, "Member 'VictimTagUpdate_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UVictimTagUpdate_C \ +static_assert(alignof(UVictimTagUpdate_C) == 0x000008, "Wrong alignment on UVictimTagUpdate_C"); \ +static_assert(sizeof(UVictimTagUpdate_C) == 0x0000A8, "Wrong size on UVictimTagUpdate_C"); \ +static_assert(offsetof(UVictimTagUpdate_C, UberGraphFrame) == 0x000088, "Member 'UVictimTagUpdate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UVictimTagUpdate_C, FailedState) == 0x000090, "Member 'UVictimTagUpdate_C::FailedState' has a wrong offset!"); \ +static_assert(offsetof(UVictimTagUpdate_C, TaggedWallyOBJ) == 0x000098, "Member 'UVictimTagUpdate_C::TaggedWallyOBJ' has a wrong offset!"); \ +static_assert(offsetof(UVictimTagUpdate_C, TaggedPedsSoFar) == 0x0000A0, "Member 'UVictimTagUpdate_C::TaggedPedsSoFar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence \ +static_assert(alignof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence) == 0x000008, "Wrong alignment on PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence"); \ +static_assert(sizeof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence) == 0x000040, "Wrong size on PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, EntryPoint) == 0x000000, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, K2Node_Event_InAutomata) == 0x000010, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, K2Node_Event_InState) == 0x000018, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, K2Node_DynamicCast_AsLevel_Sequence_Actor) == 0x000020, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::K2Node_DynamicCast_AsLevel_Sequence_Actor' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, CallFunc_GetSequencePlayer_ReturnValue) == 0x000030, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'PlayBackgroundSequence_C_ExecuteUbergraph_PlayBackgroundSequence::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayBackgroundSequence_C_ReceiveExecute \ +static_assert(alignof(PlayBackgroundSequence_C_ReceiveExecute) == 0x000008, "Wrong alignment on PlayBackgroundSequence_C_ReceiveExecute"); \ +static_assert(sizeof(PlayBackgroundSequence_C_ReceiveExecute) == 0x000010, "Wrong size on PlayBackgroundSequence_C_ReceiveExecute"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'PlayBackgroundSequence_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayBackgroundSequence_C_ReceiveExecute, InState) == 0x000008, "Member 'PlayBackgroundSequence_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayBackgroundSequence_C \ +static_assert(alignof(UPlayBackgroundSequence_C) == 0x000008, "Wrong alignment on UPlayBackgroundSequence_C"); \ +static_assert(sizeof(UPlayBackgroundSequence_C) == 0x0000C0, "Wrong size on UPlayBackgroundSequence_C"); \ +static_assert(offsetof(UPlayBackgroundSequence_C, UberGraphFrame) == 0x000088, "Member 'UPlayBackgroundSequence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UPlayBackgroundSequence_C, Play) == 0x000090, "Member 'UPlayBackgroundSequence_C::Play' has a wrong offset!"); \ +static_assert(offsetof(UPlayBackgroundSequence_C, Sequence) == 0x000098, "Member 'UPlayBackgroundSequence_C::Sequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget \ +static_assert(alignof(WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget) == 0x000004, "Wrong alignment on WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget"); \ +static_assert(sizeof(WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget) == 0x000004, "Wrong size on WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget"); \ +static_assert(offsetof(WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget, EntryPoint) == 0x000000, "Member 'WBP_LocationMapMarkerWidget_C_ExecuteUbergraph_WBP_LocationMapMarkerWidget::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_LocationMapMarkerWidget_C \ +static_assert(alignof(UWBP_LocationMapMarkerWidget_C) == 0x000010, "Wrong alignment on UWBP_LocationMapMarkerWidget_C"); \ +static_assert(sizeof(UWBP_LocationMapMarkerWidget_C) == 0x000510, "Wrong size on UWBP_LocationMapMarkerWidget_C"); \ +static_assert(offsetof(UWBP_LocationMapMarkerWidget_C, UberGraphFrame) == 0x000500, "Member 'UWBP_LocationMapMarkerWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_LocationMapMarkerWidget_C, OnMap) == 0x000508, "Member 'UWBP_LocationMapMarkerWidget_C::OnMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDM_Max_C \ +static_assert(alignof(UPD_STS_MDM_Max_C) == 0x000008, "Wrong alignment on UPD_STS_MDM_Max_C"); \ +static_assert(sizeof(UPD_STS_MDM_Max_C) == 0x000058, "Wrong size on UPD_STS_MDM_Max_C"); \ + +#define DUMPER7_ASSERTS_WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol \ +static_assert(alignof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol) == 0x000008, "Wrong alignment on WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol"); \ +static_assert(sizeof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol) == 0x0000B0, "Wrong size on WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, EntryPoint) == 0x000000, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, Temp_bool_Has_Been_Initd_Variable) == 0x000004, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, Temp_bool_IsClosed_Variable) == 0x000005, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, K2Node_Event_MyGeometry) == 0x000008, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, K2Node_Event_InDeltaTime) == 0x000040, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_GetPlayerController_ReturnValue) == 0x000048, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_PlayAnimation_ReturnValue) == 0x000050, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_SlotAsCanvasSlot_ReturnValue) == 0x000058, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_SlotAsCanvasSlot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_PlayAnimation_ReturnValue_1) == 0x000060, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_LockLocation_ReturnValue) == 0x000068, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_LockLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_ProjectWorldToScreen_OutScreenPosition) == 0x000080, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_ProjectWorldToScreen_OutScreenPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_ProjectWorldToScreen_ReturnValue) == 0x000090, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_ProjectWorldToScreen_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_IsValid_ReturnValue) == 0x000091, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_ScreenToViewport_ViewportPosition) == 0x000098, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_ScreenToViewport_ViewportPosition' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol, CallFunc_IsValid_ReturnValue_1) == 0x0000A8, "Member 'WBP_CurseSymbol_C_ExecuteUbergraph_WBP_CurseSymbol::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CurseSymbol_C_LockLocation \ +static_assert(alignof(WBP_CurseSymbol_C_LockLocation) == 0x000008, "Wrong alignment on WBP_CurseSymbol_C_LockLocation"); \ +static_assert(sizeof(WBP_CurseSymbol_C_LockLocation) == 0x000048, "Wrong size on WBP_CurseSymbol_C_LockLocation"); \ +static_assert(offsetof(WBP_CurseSymbol_C_LockLocation, ReturnValue) == 0x000000, "Member 'WBP_CurseSymbol_C_LockLocation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_LockLocation, CallFunc_GetSocketLocation_ReturnValue) == 0x000018, "Member 'WBP_CurseSymbol_C_LockLocation::CallFunc_GetSocketLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_LockLocation, CallFunc_Add_VectorVector_ReturnValue) == 0x000030, "Member 'WBP_CurseSymbol_C_LockLocation::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CurseSymbol_C_SetupLock \ +static_assert(alignof(WBP_CurseSymbol_C_SetupLock) == 0x000008, "Wrong alignment on WBP_CurseSymbol_C_SetupLock"); \ +static_assert(sizeof(WBP_CurseSymbol_C_SetupLock) == 0x000048, "Wrong size on WBP_CurseSymbol_C_SetupLock"); \ +static_assert(offsetof(WBP_CurseSymbol_C_SetupLock, CallFunc_RandomUnitVector_ReturnValue) == 0x000000, "Member 'WBP_CurseSymbol_C_SetupLock::CallFunc_RandomUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_SetupLock, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000018, "Member 'WBP_CurseSymbol_C_SetupLock::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_SetupLock, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000030, "Member 'WBP_CurseSymbol_C_SetupLock::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CurseSymbol_C_Tick \ +static_assert(alignof(WBP_CurseSymbol_C_Tick) == 0x000004, "Wrong alignment on WBP_CurseSymbol_C_Tick"); \ +static_assert(sizeof(WBP_CurseSymbol_C_Tick) == 0x00003C, "Wrong size on WBP_CurseSymbol_C_Tick"); \ +static_assert(offsetof(WBP_CurseSymbol_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_CurseSymbol_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CurseSymbol_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_CurseSymbol_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CurseSymbol_C \ +static_assert(alignof(UWBP_CurseSymbol_C) == 0x000008, "Wrong alignment on UWBP_CurseSymbol_C"); \ +static_assert(sizeof(UWBP_CurseSymbol_C) == 0x000320, "Wrong size on UWBP_CurseSymbol_C"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_CurseSymbol_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, LastLock) == 0x0002C8, "Member 'UWBP_CurseSymbol_C::LastLock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, Hit) == 0x0002D0, "Member 'UWBP_CurseSymbol_C::Hit' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, Lock) == 0x0002D8, "Member 'UWBP_CurseSymbol_C::Lock' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, Centerdot) == 0x0002E0, "Member 'UWBP_CurseSymbol_C::Centerdot' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, LockBorder) == 0x0002E8, "Member 'UWBP_CurseSymbol_C::LockBorder' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, IconOffset) == 0x0002F0, "Member 'UWBP_CurseSymbol_C::IconOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, IconSocket) == 0x000308, "Member 'UWBP_CurseSymbol_C::IconSocket' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, Enemy) == 0x000310, "Member 'UWBP_CurseSymbol_C::Enemy' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CurseSymbol_C, CurseOffset) == 0x000318, "Member 'UWBP_CurseSymbol_C::CurseOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel \ +static_assert(alignof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel) == 0x000008, "Wrong alignment on IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel"); \ +static_assert(sizeof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel) == 0x000038, "Wrong size on IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, EntryPoint) == 0x000000, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_Conv_ByteToInt_ReturnValue) == 0x000004, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, K2Node_Event_InAutomata) == 0x000008, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, K2Node_Event_InState) == 0x000010, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_GetMasqueradeState_ReturnValue) == 0x000020, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_Conv_ByteToInt_ReturnValue_1) == 0x000024, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_Conv_ByteToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_Add_IntInt_ReturnValue) == 0x000028, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_Min_ReturnValue) == 0x00002C, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_Min_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_Conv_IntToByte_ReturnValue) == 0x000030, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel, CallFunc_GetValidValue_ReturnValue) == 0x000031, "Member 'IncreaseMasqueradeLevel_C_ExecuteUbergraph_IncreaseMasqueradeLevel::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IncreaseMasqueradeLevel_C_ReceiveExecute \ +static_assert(alignof(IncreaseMasqueradeLevel_C_ReceiveExecute) == 0x000008, "Wrong alignment on IncreaseMasqueradeLevel_C_ReceiveExecute"); \ +static_assert(sizeof(IncreaseMasqueradeLevel_C_ReceiveExecute) == 0x000010, "Wrong size on IncreaseMasqueradeLevel_C_ReceiveExecute"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'IncreaseMasqueradeLevel_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IncreaseMasqueradeLevel_C_ReceiveExecute, InState) == 0x000008, "Member 'IncreaseMasqueradeLevel_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIncreaseMasqueradeLevel_C \ +static_assert(alignof(UIncreaseMasqueradeLevel_C) == 0x000008, "Wrong alignment on UIncreaseMasqueradeLevel_C"); \ +static_assert(sizeof(UIncreaseMasqueradeLevel_C) == 0x000098, "Wrong size on UIncreaseMasqueradeLevel_C"); \ +static_assert(offsetof(UIncreaseMasqueradeLevel_C, UberGraphFrame) == 0x000088, "Member 'UIncreaseMasqueradeLevel_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UIncreaseMasqueradeLevel_C, IncreaseBy) == 0x000090, "Member 'UIncreaseMasqueradeLevel_C::IncreaseBy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_DynamicSmartObjectActor_C \ +static_assert(alignof(ABP_DynamicSmartObjectActor_C) == 0x000008, "Wrong alignment on ABP_DynamicSmartObjectActor_C"); \ +static_assert(sizeof(ABP_DynamicSmartObjectActor_C) == 0x0002A8, "Wrong size on ABP_DynamicSmartObjectActor_C"); \ +static_assert(offsetof(ABP_DynamicSmartObjectActor_C, SmartObject) == 0x000298, "Member 'ABP_DynamicSmartObjectActor_C::SmartObject' has a wrong offset!"); \ +static_assert(offsetof(ABP_DynamicSmartObjectActor_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_DynamicSmartObjectActor_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene \ +static_assert(alignof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene) == 0x000008, "Wrong alignment on GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene"); \ +static_assert(sizeof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene) == 0x000028, "Wrong size on GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene"); \ +static_assert(offsetof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene, EntryPoint) == 0x000000, "Member 'GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene, CallFunc_WaitGameplayTagRemove_ReturnValue) == 0x000018, "Member 'GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene::CallFunc_WaitGameplayTagRemove_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GA_InCutscene_C_ExecuteUbergraph_GA_InCutscene::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_InCutscene_C \ +static_assert(alignof(UGA_InCutscene_C) == 0x000008, "Wrong alignment on UGA_InCutscene_C"); \ +static_assert(sizeof(UGA_InCutscene_C) == 0x000670, "Wrong size on UGA_InCutscene_C"); \ +static_assert(offsetof(UGA_InCutscene_C, UberGraphFrame) == 0x000668, "Member 'UGA_InCutscene_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_FM_BS_Verona_C \ +static_assert(alignof(UPD_FM_BS_Verona_C) == 0x000008, "Wrong alignment on UPD_FM_BS_Verona_C"); \ +static_assert(sizeof(UPD_FM_BS_Verona_C) == 0x000058, "Wrong size on UPD_FM_BS_Verona_C"); \ + +#define DUMPER7_ASSERTS_RefillBlood_C_ExecuteUbergraph_RefillBlood \ +static_assert(alignof(RefillBlood_C_ExecuteUbergraph_RefillBlood) == 0x000008, "Wrong alignment on RefillBlood_C_ExecuteUbergraph_RefillBlood"); \ +static_assert(sizeof(RefillBlood_C_ExecuteUbergraph_RefillBlood) == 0x000018, "Wrong size on RefillBlood_C_ExecuteUbergraph_RefillBlood"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, EntryPoint) == 0x000000, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, CallFunc_IsPlayerCharacterMalkavian_ReturnValue) == 0x000004, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::CallFunc_IsPlayerCharacterMalkavian_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, CallFunc_CheckForMaxBloodPoints_ReturnValue) == 0x000005, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::CallFunc_CheckForMaxBloodPoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, CallFunc_Not_PreBool_ReturnValue) == 0x000006, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, K2Node_Event_InAutomata) == 0x000008, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ExecuteUbergraph_RefillBlood, K2Node_Event_InState) == 0x000010, "Member 'RefillBlood_C_ExecuteUbergraph_RefillBlood::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RefillBlood_C_ReceiveExecute \ +static_assert(alignof(RefillBlood_C_ReceiveExecute) == 0x000008, "Wrong alignment on RefillBlood_C_ReceiveExecute"); \ +static_assert(sizeof(RefillBlood_C_ReceiveExecute) == 0x000010, "Wrong size on RefillBlood_C_ReceiveExecute"); \ +static_assert(offsetof(RefillBlood_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'RefillBlood_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RefillBlood_C_ReceiveExecute, InState) == 0x000008, "Member 'RefillBlood_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URefillBlood_C \ +static_assert(alignof(URefillBlood_C) == 0x000008, "Wrong alignment on URefillBlood_C"); \ +static_assert(sizeof(URefillBlood_C) == 0x0000A0, "Wrong size on URefillBlood_C"); \ +static_assert(offsetof(URefillBlood_C, UberGraphFrame) == 0x000090, "Member 'URefillBlood_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(URefillBlood_C, FabHungryProperty) == 0x000098, "Member 'URefillBlood_C::FabHungryProperty' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_GeneratorOn_Shake_C \ +static_assert(alignof(UBP_GeneratorOn_Shake_C) == 0x000010, "Wrong alignment on UBP_GeneratorOn_Shake_C"); \ +static_assert(sizeof(UBP_GeneratorOn_Shake_C) == 0x0001F0, "Wrong size on UBP_GeneratorOn_Shake_C"); \ + +#define DUMPER7_ASSERTS_AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor \ +static_assert(alignof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor) == 0x000008, "Wrong alignment on AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor"); \ +static_assert(sizeof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor) == 0x000040, "Wrong size on AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, EntryPoint) == 0x000000, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, K2Node_Event_InAutomata) == 0x000008, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, K2Node_Event_InState) == 0x000010, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, Temp_delegate_Variable) == 0x000018, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000028, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, K2Node_DynamicCast_AsHera_Audio_Ambient) == 0x000030, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::K2Node_DynamicCast_AsHera_Audio_Ambient' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor, CallFunc_IsValid_ReturnValue_1) == 0x00003A, "Member 'AudioStopEventActor_C_ExecuteUbergraph_AudioStopEventActor::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AudioStopEventActor_C_ReceiveExecute \ +static_assert(alignof(AudioStopEventActor_C_ReceiveExecute) == 0x000008, "Wrong alignment on AudioStopEventActor_C_ReceiveExecute"); \ +static_assert(sizeof(AudioStopEventActor_C_ReceiveExecute) == 0x000010, "Wrong size on AudioStopEventActor_C_ReceiveExecute"); \ +static_assert(offsetof(AudioStopEventActor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AudioStopEventActor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AudioStopEventActor_C_ReceiveExecute, InState) == 0x000008, "Member 'AudioStopEventActor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAudioStopEventActor_C \ +static_assert(alignof(UAudioStopEventActor_C) == 0x000008, "Wrong alignment on UAudioStopEventActor_C"); \ +static_assert(sizeof(UAudioStopEventActor_C) == 0x0000C0, "Wrong size on UAudioStopEventActor_C"); \ +static_assert(offsetof(UAudioStopEventActor_C, UberGraphFrame) == 0x000088, "Member 'UAudioStopEventActor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAudioStopEventActor_C, HeraAudioAmbient) == 0x000090, "Member 'UAudioStopEventActor_C::HeraAudioAmbient' has a wrong offset!"); \ +static_assert(offsetof(UAudioStopEventActor_C, Stop_Event) == 0x0000B8, "Member 'UAudioStopEventActor_C::Stop_Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_ScentrailReactiveCrosshair_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ScentrailReactiveCrosshair_C \ +static_assert(alignof(ABP_ScentrailReactiveCrosshair_C) == 0x000008, "Wrong alignment on ABP_ScentrailReactiveCrosshair_C"); \ +static_assert(sizeof(ABP_ScentrailReactiveCrosshair_C) == 0x0002B0, "Wrong size on ABP_ScentrailReactiveCrosshair_C"); \ +static_assert(offsetof(ABP_ScentrailReactiveCrosshair_C, WrestlerCrosshairReact) == 0x000298, "Member 'ABP_ScentrailReactiveCrosshair_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentrailReactiveCrosshair_C, Sphere) == 0x0002A0, "Member 'ABP_ScentrailReactiveCrosshair_C::Sphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_ScentrailReactiveCrosshair_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_ScentrailReactiveCrosshair_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation \ +static_assert(alignof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation) == 0x000008, "Wrong alignment on NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation"); \ +static_assert(sizeof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation) == 0x000068, "Wrong size on NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, EntryPoint) == 0x000000, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, K2Node_Event_InAutomata) == 0x000028, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, K2Node_Event_InState) == 0x000030, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000038, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, K2Node_DynamicCast_AsActor) == 0x000040, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, CallFunc_IsValid_ReturnValue) == 0x000049, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000050, "Member 'NoiseEventAtLocation_C_ExecuteUbergraph_NoiseEventAtLocation::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NoiseEventAtLocation_C_ReceiveExecute \ +static_assert(alignof(NoiseEventAtLocation_C_ReceiveExecute) == 0x000008, "Wrong alignment on NoiseEventAtLocation_C_ReceiveExecute"); \ +static_assert(sizeof(NoiseEventAtLocation_C_ReceiveExecute) == 0x000010, "Wrong size on NoiseEventAtLocation_C_ReceiveExecute"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'NoiseEventAtLocation_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NoiseEventAtLocation_C_ReceiveExecute, InState) == 0x000008, "Member 'NoiseEventAtLocation_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNoiseEventAtLocation_C \ +static_assert(alignof(UNoiseEventAtLocation_C) == 0x000008, "Wrong alignment on UNoiseEventAtLocation_C"); \ +static_assert(sizeof(UNoiseEventAtLocation_C) == 0x0000C8, "Wrong size on UNoiseEventAtLocation_C"); \ +static_assert(offsetof(UNoiseEventAtLocation_C, UberGraphFrame) == 0x000088, "Member 'UNoiseEventAtLocation_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UNoiseEventAtLocation_C, In_Max_Range) == 0x000090, "Member 'UNoiseEventAtLocation_C::In_Max_Range' has a wrong offset!"); \ +static_assert(offsetof(UNoiseEventAtLocation_C, In_Loudness) == 0x000094, "Member 'UNoiseEventAtLocation_C::In_Loudness' has a wrong offset!"); \ +static_assert(offsetof(UNoiseEventAtLocation_C, Actor) == 0x000098, "Member 'UNoiseEventAtLocation_C::Actor' has a wrong offset!"); \ +static_assert(offsetof(UNoiseEventAtLocation_C, UsePlayer) == 0x0000C0, "Member 'UNoiseEventAtLocation_C::UsePlayer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_CacheActorRenderState \ +static_assert(alignof(BP_ToggleVisibilityActors_C_CacheActorRenderState) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_CacheActorRenderState"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_CacheActorRenderState) == 0x0000A0, "Wrong size on BP_ToggleVisibilityActors_C_CacheActorRenderState"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, Actor) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, Temp_int_Array_Index_Variable_1) == 0x000014, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, Temp_int_Loop_Counter_Variable_1) == 0x000018, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Add_IntInt_ReturnValue_1) == 0x00001C, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_GetAttachedActors_OutActors) == 0x000020, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Less_IntInt_ReturnValue) == 0x00003C, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Map_Keys_Keys) == 0x000040, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Array_Get_Item_1) == 0x000050, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Array_Length_ReturnValue_1) == 0x000078, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000080, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_Less_IntInt_ReturnValue_1) == 0x000088, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, K2Node_DynamicCast_AsActor) == 0x000090, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, K2Node_DynamicCast_bSuccess) == 0x000098, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheActorRenderState, CallFunc_IsValid_ReturnValue) == 0x000099, "Member 'BP_ToggleVisibilityActors_C_CacheActorRenderState::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_CacheComponentsRenderState \ +static_assert(alignof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_CacheComponentsRenderState"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState) == 0x000058, "Wrong size on BP_ToggleVisibilityActors_C_CacheComponentsRenderState"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, Actor) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_IsVisible_ReturnValue) == 0x000030, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_IsVisible_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_GetPathName_ReturnValue) == 0x000038, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_GetPathName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, Temp_int_Loop_Counter_Variable) == 0x000048, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_CacheComponentsRenderState, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'BP_ToggleVisibilityActors_C_CacheComponentsRenderState::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors \ +static_assert(alignof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors) == 0x0001B8, "Wrong size on BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, EntryPoint) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_Event_InPlayStatus_2) == 0x000018, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_Event_InPlayStatus_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_Event_InPlayStatus_1) == 0x000058, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_Event_InPlayStatus_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Map_Values_Values) == 0x000098, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_AsBP_Toggle_Actor_Visibility_Keyframe) == 0x0000A8, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_AsBP_Toggle_Actor_Visibility_Keyframe' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Array_Get_Item) == 0x0000B1, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_IsDefault_ReturnValue) == 0x0000B2, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_IsDefault_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Map_Keys_Keys) == 0x0000B8, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Array_Get_Item_1) == 0x0000C8, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Array_Length_ReturnValue) == 0x0000F0, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0000F8, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, Temp_int_Loop_Counter_Variable_1) == 0x000100, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_AsActor) == 0x000108, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_bSuccess_1) == 0x000110, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_IsValid_ReturnValue) == 0x000111, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Less_IntInt_ReturnValue) == 0x000112, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Add_IntInt_ReturnValue_1) == 0x000114, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_Event_InPlayStatus) == 0x000118, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_Event_InPlayStatus' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Map_Keys_Keys_1) == 0x000158, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Map_Keys_Keys_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Array_Get_Item_2) == 0x000168, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Array_Length_ReturnValue_1) == 0x000190, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000198, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_Less_IntInt_ReturnValue_1) == 0x0001A0, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_AsActor_1) == 0x0001A8, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_AsActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, K2Node_DynamicCast_bSuccess_2) == 0x0001B0, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors, CallFunc_IsValid_ReturnValue_1) == 0x0001B1, "Member 'BP_ToggleVisibilityActors_C_ExecuteUbergraph_BP_ToggleVisibilityActors::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_OnBegin_Blueprint \ +static_assert(alignof(BP_ToggleVisibilityActors_C_OnBegin_Blueprint) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_OnBegin_Blueprint"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_OnBegin_Blueprint) == 0x000040, "Wrong size on BP_ToggleVisibilityActors_C_OnBegin_Blueprint"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_OnBegin_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_OnBegin_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache \ +static_assert(alignof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache) == 0x0000A0, "Wrong size on BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, Temp_int_Array_Index_Variable) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Map_Keys_Keys) == 0x000018, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000060, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, K2Node_DynamicCast_AsActor) == 0x000068, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_GetAttachedActors_OutActors) == 0x000078, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Array_Length_ReturnValue_1) == 0x000088, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Array_Get_Item_1) == 0x000090, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache, CallFunc_Less_IntInt_ReturnValue_1) == 0x000098, "Member 'BP_ToggleVisibilityActors_C_ResetActorRenderStateFromCache::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_ResetComponentsRenderState \ +static_assert(alignof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_ResetComponentsRenderState"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState) == 0x000050, "Wrong size on BP_ToggleVisibilityActors_C_ResetComponentsRenderState"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, Actor) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_GetPathName_ReturnValue) == 0x000030, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_GetPathName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, Temp_int_Loop_Counter_Variable) == 0x000040, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Map_Find_Value) == 0x000044, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Map_Find_ReturnValue) == 0x000045, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Less_IntInt_ReturnValue) == 0x000046, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetComponentsRenderState, CallFunc_Add_IntInt_ReturnValue) == 0x000048, "Member 'BP_ToggleVisibilityActors_C_ResetComponentsRenderState::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_ResetState_Blueprint \ +static_assert(alignof(BP_ToggleVisibilityActors_C_ResetState_Blueprint) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_ResetState_Blueprint"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_ResetState_Blueprint) == 0x000040, "Wrong size on BP_ToggleVisibilityActors_C_ResetState_Blueprint"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_ResetState_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_ResetState_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_SetActorVisibility \ +static_assert(alignof(BP_ToggleVisibilityActors_C_SetActorVisibility) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_SetActorVisibility"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_SetActorVisibility) == 0x000040, "Wrong size on BP_ToggleVisibilityActors_C_SetActorVisibility"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, Actor) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, Visibility) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::Visibility' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, CallFunc_GetAttachedActors_OutActors) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, Temp_int_Array_Index_Variable) == 0x000020, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, CallFunc_Array_Length_ReturnValue) == 0x000024, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, Temp_int_Loop_Counter_Variable) == 0x000030, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, CallFunc_Less_IntInt_ReturnValue) == 0x000034, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetActorVisibility, CallFunc_Add_IntInt_ReturnValue) == 0x000038, "Member 'BP_ToggleVisibilityActors_C_SetActorVisibility::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_SetComponentsVisibility \ +static_assert(alignof(BP_ToggleVisibilityActors_C_SetComponentsVisibility) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_SetComponentsVisibility"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_SetComponentsVisibility) == 0x000020, "Wrong size on BP_ToggleVisibilityActors_C_SetComponentsVisibility"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetComponentsVisibility, Visibility) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_SetComponentsVisibility::Visibility' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetComponentsVisibility, Actor) == 0x000008, "Member 'BP_ToggleVisibilityActors_C_SetComponentsVisibility::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetComponentsVisibility, CallFunc_GetComponentByClass_ReturnValue) == 0x000010, "Member 'BP_ToggleVisibilityActors_C_SetComponentsVisibility::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_SetComponentsVisibility, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'BP_ToggleVisibilityActors_C_SetComponentsVisibility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ToggleVisibilityActors_C_Update_Blueprint \ +static_assert(alignof(BP_ToggleVisibilityActors_C_Update_Blueprint) == 0x000008, "Wrong alignment on BP_ToggleVisibilityActors_C_Update_Blueprint"); \ +static_assert(sizeof(BP_ToggleVisibilityActors_C_Update_Blueprint) == 0x000040, "Wrong size on BP_ToggleVisibilityActors_C_Update_Blueprint"); \ +static_assert(offsetof(BP_ToggleVisibilityActors_C_Update_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_ToggleVisibilityActors_C_Update_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_ToggleVisibilityActors_C \ +static_assert(alignof(UBP_ToggleVisibilityActors_C) == 0x000008, "Wrong alignment on UBP_ToggleVisibilityActors_C"); \ +static_assert(sizeof(UBP_ToggleVisibilityActors_C) == 0x000118, "Wrong size on UBP_ToggleVisibilityActors_C"); \ +static_assert(offsetof(UBP_ToggleVisibilityActors_C, UberGraphFrame) == 0x000068, "Member 'UBP_ToggleVisibilityActors_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_ToggleVisibilityActors_C, Actors) == 0x000070, "Member 'UBP_ToggleVisibilityActors_C::Actors' has a wrong offset!"); \ +static_assert(offsetof(UBP_ToggleVisibilityActors_C, CachedState) == 0x0000C0, "Member 'UBP_ToggleVisibilityActors_C::CachedState' has a wrong offset!"); \ +static_assert(offsetof(UBP_ToggleVisibilityActors_C, PropogateToAttachedActors) == 0x000110, "Member 'UBP_ToggleVisibilityActors_C::PropogateToAttachedActors' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature \ +static_assert(alignof(BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000010, "Wrong size on BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature, InEventTag) == 0x000008, "Member 'BP_Interactable_Generator_C_BndEvt__BP_Interactable_Generator_DestroyInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionEventDelegate__DelegateSignature::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator \ +static_assert(alignof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator"); \ +static_assert(sizeof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator) == 0x0000B8, "Wrong size on BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, EntryPoint) == 0x000000, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_Event_bInVisible) == 0x000004, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_Event_InDuration_1) == 0x000008, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_Event_InDuration) == 0x00000C, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000010, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000020, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_AsBP_Lights_State_Manager) == 0x000028, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_AsBP_Lights_State_Manager' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_AsBP_Lights_State_Manager_1) == 0x000038, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_AsBP_Lights_State_Manager_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_IsValid_ReturnValue) == 0x000041, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_IsValid_ReturnValue_1) == 0x000042, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_SetItemState_self_CastInput) == 0x000048, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_SetItemState_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_SetItemState_self_CastInput_1) == 0x000058, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_SetItemState_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x000068, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000070, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_ComponentBoundEvent_InEventTag) == 0x000078, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_ComponentBoundEvent_InEventTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_AsBP_IAO_Gate) == 0x000080, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_AsBP_IAO_Gate' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, K2Node_DynamicCast_bSuccess_2) == 0x000088, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_IsValid_ReturnValue_2) == 0x000089, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_SetItemState_self_CastInput_2) == 0x000090, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_SetItemState_self_CastInput_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, Temp_delegate_Variable) == 0x0000A0, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0000B0, "Member 'BP_Interactable_Generator_C_ExecuteUbergraph_BP_Interactable_Generator::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetClueDataAsset \ +static_assert(alignof(BP_Interactable_Generator_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_Interactable_Generator_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetInteractableData \ +static_assert(alignof(BP_Interactable_Generator_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetInteractableData"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetInteractableData) == 0x000018, "Wrong size on BP_Interactable_Generator_C_GetInteractableData"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetItemState \ +static_assert(alignof(BP_Interactable_Generator_C_GetItemState) == 0x000001, "Wrong alignment on BP_Interactable_Generator_C_GetItemState"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetItemState) == 0x000001, "Wrong size on BP_Interactable_Generator_C_GetItemState"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetMeshComponent \ +static_assert(alignof(BP_Interactable_Generator_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Interactable_Generator_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_SetVisionVisibility \ +static_assert(alignof(BP_Interactable_Generator_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_Interactable_Generator_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_Interactable_Generator_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_Interactable_Generator_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_Interactable_Generator_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_Interactable_Generator_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_UserConstructionScript \ +static_assert(alignof(BP_Interactable_Generator_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Interactable_Generator_C_UserConstructionScript) == 0x000030, "Wrong size on BP_Interactable_Generator_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Interactable_Generator_C_UserConstructionScript, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_UserConstructionScript::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_UserConstructionScript, CallFunc_RandomFloatInRange_ReturnValue) == 0x000018, "Member 'BP_Interactable_Generator_C_UserConstructionScript::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_UserConstructionScript, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000020, "Member 'BP_Interactable_Generator_C_UserConstructionScript::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Generator_C_UserConstructionScript, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000028, "Member 'BP_Interactable_Generator_C_UserConstructionScript::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_VisionFadeInBegin \ +static_assert(alignof(BP_Interactable_Generator_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_Interactable_Generator_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_Interactable_Generator_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_Interactable_Generator_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_Interactable_Generator_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_Interactable_Generator_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_VisionFadeOutBegin \ +static_assert(alignof(BP_Interactable_Generator_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_Interactable_Generator_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_Interactable_Generator_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_Interactable_Generator_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_Interactable_Generator_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_Interactable_Generator_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_Interactable_Generator_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_Interactable_Generator_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Generator_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_Interactable_Generator_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_Interactable_Generator_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_Interactable_Generator_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_Interactable_Generator_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_Interactable_Generator_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_Interactable_Generator_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Interactable_Generator_C \ +static_assert(alignof(ABP_Interactable_Generator_C) == 0x000008, "Wrong alignment on ABP_Interactable_Generator_C"); \ +static_assert(sizeof(ABP_Interactable_Generator_C) == 0x000428, "Wrong size on ABP_Interactable_Generator_C"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, UberGraphFrame_BP_Interactable_Generator_C) == 0x000328, "Member 'ABP_Interactable_Generator_C::UberGraphFrame_BP_Interactable_Generator_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, WrestlerCrosshairReact) == 0x000330, "Member 'ABP_Interactable_Generator_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, NS_ElectricBurst_justspark_01) == 0x000338, "Member 'ABP_Interactable_Generator_C::NS_ElectricBurst_justspark_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, NS_Electrical_Burst_Small_01) == 0x000340, "Member 'ABP_Interactable_Generator_C::NS_Electrical_Burst_Small_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, CameraShakeSource) == 0x000348, "Member 'ABP_Interactable_Generator_C::CameraShakeSource' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Box) == 0x000350, "Member 'ABP_Interactable_Generator_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, HeraPersistenceComponentHidden) == 0x000358, "Member 'ABP_Interactable_Generator_C::HeraPersistenceComponentHidden' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, WrestlerInteractionPoint) == 0x000360, "Member 'ABP_Interactable_Generator_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, SK_PowerGenerator_ControlPanelCover_01) == 0x000368, "Member 'ABP_Interactable_Generator_C::SK_PowerGenerator_ControlPanelCover_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, SkeletalMesh) == 0x000370, "Member 'ABP_Interactable_Generator_C::SkeletalMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, DestroyInteraction) == 0x000378, "Member 'ABP_Interactable_Generator_C::DestroyInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Stop_Loop_AUdio) == 0x000380, "Member 'ABP_Interactable_Generator_C::Stop_Loop_AUdio' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, LightManager_To_Deactivate) == 0x000388, "Member 'ABP_Interactable_Generator_C::LightManager_To_Deactivate' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, LightManager_To_Activate) == 0x0003B0, "Member 'ABP_Interactable_Generator_C::LightManager_To_Activate' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, HeightenedSenses_Material_0) == 0x0003D8, "Member 'ABP_Interactable_Generator_C::HeightenedSenses_Material_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Red_Lights_Delay) == 0x0003E0, "Member 'ABP_Interactable_Generator_C::Red_Lights_Delay' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Gate) == 0x0003E8, "Member 'ABP_Interactable_Generator_C::Gate' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Objective_On_Red_Lights_Active) == 0x000410, "Member 'ABP_Interactable_Generator_C::Objective_On_Red_Lights_Active' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Reinforcements_Objective) == 0x000418, "Member 'ABP_Interactable_Generator_C::Reinforcements_Objective' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, Debug_Range_of_Noise_Event) == 0x000420, "Member 'ABP_Interactable_Generator_C::Debug_Range_of_Noise_Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Generator_C, In_Max_Range) == 0x000424, "Member 'ABP_Interactable_Generator_C::In_Max_Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer \ +static_assert(alignof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer) == 0x000008, "Wrong alignment on ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer"); \ +static_assert(sizeof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer) == 0x000038, "Wrong size on ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, EntryPoint) == 0x000000, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, CallFunc_GetGameMode_ReturnValue) == 0x000008, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000010, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, K2Node_Event_InAutomata) == 0x000020, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, K2Node_Event_InState) == 0x000028, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000030, "Member 'ClearObjectiveTimer_C_ExecuteUbergraph_ClearObjectiveTimer::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearObjectiveTimer_C_ReceiveExecute \ +static_assert(alignof(ClearObjectiveTimer_C_ReceiveExecute) == 0x000008, "Wrong alignment on ClearObjectiveTimer_C_ReceiveExecute"); \ +static_assert(sizeof(ClearObjectiveTimer_C_ReceiveExecute) == 0x000010, "Wrong size on ClearObjectiveTimer_C_ReceiveExecute"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ClearObjectiveTimer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearObjectiveTimer_C_ReceiveExecute, InState) == 0x000008, "Member 'ClearObjectiveTimer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClearObjectiveTimer_C \ +static_assert(alignof(UClearObjectiveTimer_C) == 0x000008, "Wrong alignment on UClearObjectiveTimer_C"); \ +static_assert(sizeof(UClearObjectiveTimer_C) == 0x000090, "Wrong size on UClearObjectiveTimer_C"); \ +static_assert(offsetof(UClearObjectiveTimer_C, UberGraphFrame) == 0x000088, "Member 'UClearObjectiveTimer_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_WrestlerCheatManager_C \ +static_assert(alignof(UBP_WrestlerCheatManager_C) == 0x000008, "Wrong alignment on UBP_WrestlerCheatManager_C"); \ +static_assert(sizeof(UBP_WrestlerCheatManager_C) == 0x0000B0, "Wrong size on UBP_WrestlerCheatManager_C"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000010, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature, InEventTag) == 0x000008, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_4_WrestlerInteractionEventDelegate__DelegateSignature::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionBackInteraction_K2Node_ComponentBoundEvent_6_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature) == 0x000010, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature, InEventTag) == 0x000008, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_3_WrestlerInteractionEventDelegate__DelegateSignature::InEventTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_TransitionFrontInteraction_K2Node_ComponentBoundEvent_7_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_Base_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionBackInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_TransitionDoor_Base_C_BndEvt__BP_TransitionDoor_TransitionFrontInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_EvaluateMasqueradeState \ +static_assert(alignof(BP_TransitionDoor_Base_C_EvaluateMasqueradeState) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_EvaluateMasqueradeState"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_EvaluateMasqueradeState) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_EvaluateMasqueradeState"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_EvaluateMasqueradeState, NewState) == 0x000000, "Member 'BP_TransitionDoor_Base_C_EvaluateMasqueradeState::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base \ +static_assert(alignof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base) == 0x000180, "Wrong size on BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, EntryPoint) == 0x000000, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable) == 0x000004, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable_1) == 0x000005, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000008, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_object_Variable) == 0x000010, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_object_Variable_1) == 0x000020, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetGameInstanceSubsystem_ReturnValue_1) == 0x000030, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetGameInstanceSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CreateDelegate_OutputDelegate) == 0x000038, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable_2) == 0x000048, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable_3) == 0x000049, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_bInNarrativeModeEnabled) == 0x00004A, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_bInNarrativeModeEnabled' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetPlayerState_ReturnValue) == 0x000050, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000058, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_ItemState) == 0x000061, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_ItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_5) == 0x000068, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_5' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_4) == 0x000070, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_3) == 0x000078, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_BooleanAND_ReturnValue) == 0x000080, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_2) == 0x000088, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_F_NarrativeMode) == 0x000090, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_F_NarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_B_NarrativeMode) == 0x000091, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_B_NarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InItemState) == 0x000092, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Event_InItemState) == 0x000093, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_PrevState) == 0x000094, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_NewState_1) == 0x000095, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_NewState_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_NewState) == 0x000096, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_SwitchEnum_CmpSuccess) == 0x000097, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_SwitchEnum_CmpSuccess_1) == 0x000098, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x00009C, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x0000A8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InEventTag_1) == 0x0000B0, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InEventTag_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InInteractingActor) == 0x0000B8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_ComponentBoundEvent_InEventTag) == 0x0000C0, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_ComponentBoundEvent_InEventTag' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CustomEvent_Tag) == 0x0000C8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CustomEvent_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x0000D0, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_object_Variable_2) == 0x0000D8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_object_Variable_3) == 0x0000E8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_CreateDelegate_OutputDelegate_1) == 0x0000F8, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000108, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable_4) == 0x000110, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetMasqueradeState_ReturnValue) == 0x000111, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetMasqueradeState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default) == 0x000112, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetPlayerPawn_ReturnValue) == 0x000118, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, Temp_bool_Variable_5) == 0x000120, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::Temp_bool_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default_1) == 0x000121, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_GetProperty_ReturnValue) == 0x000124, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x00012C, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default_2) == 0x000130, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_IsPlayerFabien_Return) == 0x000140, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default_3) == 0x000148, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default_4) == 0x000158, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default_4' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_Select_Default_5) == 0x000168, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_Select_Default_5' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_RequestDataLayerTransition_OutResult) == 0x000178, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_RequestDataLayerTransition_OutResult' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_RequestDataLayerTransition_OutResult_1) == 0x000179, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_RequestDataLayerTransition_OutResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_SwitchEnum_CmpSuccess_2) == 0x00017A, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_SwitchEnum_CmpSuccess_3) == 0x00017B, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_SwitchEnum_CmpSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, CallFunc_IsPlayerFabien_Return_1) == 0x00017C, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base, K2Node_SwitchEnum_CmpSuccess_4) == 0x00017D, "Member 'BP_TransitionDoor_Base_C_ExecuteUbergraph_BP_TransitionDoor_Base::K2Node_SwitchEnum_CmpSuccess_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation \ +static_assert(alignof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation) == 0x000098, "Wrong size on BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, TransitionToVolume) == 0x000000, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::TransitionToVolume' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, ReturnValue) == 0x000008, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, ReturnValue2) == 0x000020, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::ReturnValue2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000038, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000050, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000068, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000080, "Member 'BP_TransitionDoor_Base_C_Get_Teleport_Location_and_Rotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_GetDebugString \ +static_assert(alignof(BP_TransitionDoor_Base_C_GetDebugString) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_GetDebugString"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_GetDebugString) == 0x000010, "Wrong size on BP_TransitionDoor_Base_C_GetDebugString"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_TransitionDoor_Base_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_GetInteractableData \ +static_assert(alignof(BP_TransitionDoor_Base_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_GetInteractableData"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_GetInteractableData) == 0x000018, "Wrong size on BP_TransitionDoor_Base_C_GetInteractableData"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_TransitionDoor_Base_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_GetItemState \ +static_assert(alignof(BP_TransitionDoor_Base_C_GetItemState) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_GetItemState"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_GetItemState) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_GetItemState"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_TransitionDoor_Base_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_InteractionEvent \ +static_assert(alignof(BP_TransitionDoor_Base_C_InteractionEvent) == 0x000004, "Wrong alignment on BP_TransitionDoor_Base_C_InteractionEvent"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_InteractionEvent) == 0x000008, "Wrong size on BP_TransitionDoor_Base_C_InteractionEvent"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_InteractionEvent, Tag) == 0x000000, "Member 'BP_TransitionDoor_Base_C_InteractionEvent::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_MasqueradeStateChanged \ +static_assert(alignof(BP_TransitionDoor_Base_C_MasqueradeStateChanged) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_MasqueradeStateChanged"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_MasqueradeStateChanged) == 0x000002, "Wrong size on BP_TransitionDoor_Base_C_MasqueradeStateChanged"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_MasqueradeStateChanged, PrevState) == 0x000000, "Member 'BP_TransitionDoor_Base_C_MasqueradeStateChanged::PrevState' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_MasqueradeStateChanged, NewState) == 0x000001, "Member 'BP_TransitionDoor_Base_C_MasqueradeStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_ModifyTransitionDoor \ +static_assert(alignof(BP_TransitionDoor_Base_C_ModifyTransitionDoor) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_ModifyTransitionDoor"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_ModifyTransitionDoor) == 0x000002, "Wrong size on BP_TransitionDoor_Base_C_ModifyTransitionDoor"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ModifyTransitionDoor, F_NarrativeMode_0) == 0x000000, "Member 'BP_TransitionDoor_Base_C_ModifyTransitionDoor::F_NarrativeMode_0' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ModifyTransitionDoor, B_NarrativeMode_0) == 0x000001, "Member 'BP_TransitionDoor_Base_C_ModifyTransitionDoor::B_NarrativeMode_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_SetItemState \ +static_assert(alignof(BP_TransitionDoor_Base_C_SetItemState) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_SetItemState"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_SetItemState) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_SetItemState"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_SetItemState, InItemState) == 0x000000, "Member 'BP_TransitionDoor_Base_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_SetOpenAmount \ +static_assert(alignof(BP_TransitionDoor_Base_C_SetOpenAmount) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_SetOpenAmount"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_SetOpenAmount) == 0x000010, "Wrong size on BP_TransitionDoor_Base_C_SetOpenAmount"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_SetOpenAmount, OpenAmount_0) == 0x000000, "Member 'BP_TransitionDoor_Base_C_SetOpenAmount::OpenAmount_0' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_SetOpenAmount, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000008, "Member 'BP_TransitionDoor_Base_C_SetOpenAmount::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_SetOpenAmount, CallFunc_SetOpenAmount_InAmount_ImplicitCast) == 0x00000C, "Member 'BP_TransitionDoor_Base_C_SetOpenAmount::CallFunc_SetOpenAmount_InAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_TeleportToVolume \ +static_assert(alignof(BP_TransitionDoor_Base_C_TeleportToVolume) == 0x000008, "Wrong alignment on BP_TransitionDoor_Base_C_TeleportToVolume"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_TeleportToVolume) == 0x0000A8, "Wrong size on BP_TransitionDoor_Base_C_TeleportToVolume"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, TransitionToVolume) == 0x000000, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::TransitionToVolume' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_Get_Teleport_Location_and_Rotation_ReturnValue) == 0x000010, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_Get_Teleport_Location_and_Rotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_Get_Teleport_Location_and_Rotation_ReturnValue2) == 0x000028, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_Get_Teleport_Location_and_Rotation_ReturnValue2' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_X) == 0x000058, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_Y) == 0x000060, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_Z) == 0x000068, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_X_1) == 0x000070, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_Y_1) == 0x000078, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_BreakVector_Z_1) == 0x000080, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_MakeVector_ReturnValue) == 0x000088, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_TeleportToVolume, CallFunc_K2_TeleportTo_ReturnValue) == 0x0000A0, "Member 'BP_TransitionDoor_Base_C_TeleportToVolume::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_ToggleNM \ +static_assert(alignof(BP_TransitionDoor_Base_C_ToggleNM) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_ToggleNM"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_ToggleNM) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_ToggleNM"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_ToggleNM, bInNarrativeModeEnabled) == 0x000000, "Member 'BP_TransitionDoor_Base_C_ToggleNM::bInNarrativeModeEnabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TransitionDoor_Base_C_UpdateItemState \ +static_assert(alignof(BP_TransitionDoor_Base_C_UpdateItemState) == 0x000001, "Wrong alignment on BP_TransitionDoor_Base_C_UpdateItemState"); \ +static_assert(sizeof(BP_TransitionDoor_Base_C_UpdateItemState) == 0x000001, "Wrong size on BP_TransitionDoor_Base_C_UpdateItemState"); \ +static_assert(offsetof(BP_TransitionDoor_Base_C_UpdateItemState, ItemState_0) == 0x000000, "Member 'BP_TransitionDoor_Base_C_UpdateItemState::ItemState_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionDoor_Base_C \ +static_assert(alignof(ABP_TransitionDoor_Base_C) == 0x000008, "Wrong alignment on ABP_TransitionDoor_Base_C"); \ +static_assert(sizeof(ABP_TransitionDoor_Base_C) == 0x000400, "Wrong size on ABP_TransitionDoor_Base_C"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, UberGraphFrame_BP_TransitionDoor_Base_C) == 0x000340, "Member 'ABP_TransitionDoor_Base_C::UberGraphFrame_BP_TransitionDoor_Base_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, PersistentItemState) == 0x000348, "Member 'ABP_TransitionDoor_Base_C::PersistentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, InteractionCollider) == 0x000350, "Member 'ABP_TransitionDoor_Base_C::InteractionCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, HeraAudioPortal) == 0x000358, "Member 'ABP_TransitionDoor_Base_C::HeraAudioPortal' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, HeraMissionActor) == 0x000360, "Member 'ABP_TransitionDoor_Base_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, BackText) == 0x000368, "Member 'ABP_TransitionDoor_Base_C::BackText' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, FrontText) == 0x000370, "Member 'ABP_TransitionDoor_Base_C::FrontText' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, FrontInteractionPoint) == 0x000378, "Member 'ABP_TransitionDoor_Base_C::FrontInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, BackInteractionPoint) == 0x000380, "Member 'ABP_TransitionDoor_Base_C::BackInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, TransitionBackInteraction) == 0x000388, "Member 'ABP_TransitionDoor_Base_C::TransitionBackInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, TransitionFrontInteraction) == 0x000390, "Member 'ABP_TransitionDoor_Base_C::TransitionFrontInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, DoorPivot) == 0x000398, "Member 'ABP_TransitionDoor_Base_C::DoorPivot' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, isfront) == 0x0003A0, "Member 'ABP_TransitionDoor_Base_C::isfront' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, F_NarrativeMode) == 0x0003A1, "Member 'ABP_TransitionDoor_Base_C::F_NarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, B_NarrativeMode) == 0x0003A2, "Member 'ABP_TransitionDoor_Base_C::B_NarrativeMode' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, OneWay) == 0x0003A3, "Member 'ABP_TransitionDoor_Base_C::OneWay' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, ItemState) == 0x0003A4, "Member 'ABP_TransitionDoor_Base_C::ItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, ShouldSetUsed) == 0x0003A5, "Member 'ABP_TransitionDoor_Base_C::ShouldSetUsed' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, MasqueradeLock) == 0x0003A6, "Member 'ABP_TransitionDoor_Base_C::MasqueradeLock' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, OnInteractObjective) == 0x0003A8, "Member 'ABP_TransitionDoor_Base_C::OnInteractObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, OnInteractEndObjective) == 0x0003B0, "Member 'ABP_TransitionDoor_Base_C::OnInteractEndObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, TransitionComplete) == 0x0003B8, "Member 'ABP_TransitionDoor_Base_C::TransitionComplete' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, InteractionComplete) == 0x0003B9, "Member 'ABP_TransitionDoor_Base_C::InteractionComplete' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, OpenAmount) == 0x0003C0, "Member 'ABP_TransitionDoor_Base_C::OpenAmount' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, LoadedState) == 0x0003C8, "Member 'ABP_TransitionDoor_Base_C::LoadedState' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, MUS_PB_Modifier) == 0x0003D0, "Member 'ABP_TransitionDoor_Base_C::MUS_PB_Modifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, DefaultItemState) == 0x0003D8, "Member 'ABP_TransitionDoor_Base_C::DefaultItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, InteractionEnded) == 0x0003E0, "Member 'ABP_TransitionDoor_Base_C::InteractionEnded' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, CachedDestinationTag) == 0x0003F0, "Member 'ABP_TransitionDoor_Base_C::CachedDestinationTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_TransitionDoor_Base_C, Always_Locked_For_Fabien) == 0x0003F8, "Member 'ABP_TransitionDoor_Base_C::Always_Locked_For_Fabien' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers \ +static_assert(alignof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers) == 0x000008, "Wrong alignment on SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers"); \ +static_assert(sizeof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers) == 0x000030, "Wrong size on SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, EntryPoint) == 0x000000, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_SwitchEnum_CmpSuccess) == 0x000004, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_SwitchEnum_CmpSuccess_1) == 0x000005, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_Event_InAutomata) == 0x000008, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_Event_InState) == 0x000010, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_DynamicCast_AsBP_Transition_Door_Base) == 0x000020, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_DynamicCast_AsBP_Transition_Door_Base' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'SetTransitionDoorDataLayers_C_ExecuteUbergraph_SetTransitionDoorDataLayers::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetTransitionDoorDataLayers_C_ReceiveExecute \ +static_assert(alignof(SetTransitionDoorDataLayers_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetTransitionDoorDataLayers_C_ReceiveExecute"); \ +static_assert(sizeof(SetTransitionDoorDataLayers_C_ReceiveExecute) == 0x000010, "Wrong size on SetTransitionDoorDataLayers_C_ReceiveExecute"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetTransitionDoorDataLayers_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetTransitionDoorDataLayers_C_ReceiveExecute, InState) == 0x000008, "Member 'SetTransitionDoorDataLayers_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetTransitionDoorDataLayers_C \ +static_assert(alignof(USetTransitionDoorDataLayers_C) == 0x000008, "Wrong alignment on USetTransitionDoorDataLayers_C"); \ +static_assert(sizeof(USetTransitionDoorDataLayers_C) == 0x0000D8, "Wrong size on USetTransitionDoorDataLayers_C"); \ +static_assert(offsetof(USetTransitionDoorDataLayers_C, UberGraphFrame) == 0x000088, "Member 'USetTransitionDoorDataLayers_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetTransitionDoorDataLayers_C, Transition_Door) == 0x000090, "Member 'USetTransitionDoorDataLayers_C::Transition_Door' has a wrong offset!"); \ +static_assert(offsetof(USetTransitionDoorDataLayers_C, Data_Layers_Load_Type) == 0x0000B8, "Member 'USetTransitionDoorDataLayers_C::Data_Layers_Load_Type' has a wrong offset!"); \ +static_assert(offsetof(USetTransitionDoorDataLayers_C, New_Data_Layers_) == 0x0000C0, "Member 'USetTransitionDoorDataLayers_C::New_Data_Layers_' has a wrong offset!"); \ +static_assert(offsetof(USetTransitionDoorDataLayers_C, Replace) == 0x0000D0, "Member 'USetTransitionDoorDataLayers_C::Replace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag \ +static_assert(alignof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag) == 0x000008, "Wrong alignment on KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag"); \ +static_assert(sizeof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag) == 0x000058, "Wrong size on KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, EntryPoint) == 0x000000, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, Temp_int_Array_Index_Variable) == 0x000004, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, K2Node_Event_InAutomata) == 0x000010, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, K2Node_Event_InState) == 0x000018, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_Array_Get_Item) == 0x000020, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_IsValid_ReturnValue) == 0x00002C, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_GetPlayerPawn_ReturnValue) == 0x000030, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, Temp_int_Loop_Counter_Variable) == 0x000038, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000040, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag, CallFunc_Add_IntInt_ReturnValue) == 0x000054, "Member 'KillAllEnemiesWithTag_C_ExecuteUbergraph_KillAllEnemiesWithTag::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllEnemiesWithTag_C_ReceiveExecute \ +static_assert(alignof(KillAllEnemiesWithTag_C_ReceiveExecute) == 0x000008, "Wrong alignment on KillAllEnemiesWithTag_C_ReceiveExecute"); \ +static_assert(sizeof(KillAllEnemiesWithTag_C_ReceiveExecute) == 0x000010, "Wrong size on KillAllEnemiesWithTag_C_ReceiveExecute"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'KillAllEnemiesWithTag_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllEnemiesWithTag_C_ReceiveExecute, InState) == 0x000008, "Member 'KillAllEnemiesWithTag_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKillAllEnemiesWithTag_C \ +static_assert(alignof(UKillAllEnemiesWithTag_C) == 0x000008, "Wrong alignment on UKillAllEnemiesWithTag_C"); \ +static_assert(sizeof(UKillAllEnemiesWithTag_C) == 0x0000A8, "Wrong size on UKillAllEnemiesWithTag_C"); \ +static_assert(offsetof(UKillAllEnemiesWithTag_C, UberGraphFrame) == 0x000088, "Member 'UKillAllEnemiesWithTag_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UKillAllEnemiesWithTag_C, In_Tag) == 0x000090, "Member 'UKillAllEnemiesWithTag_C::In_Tag' has a wrong offset!"); \ +static_assert(offsetof(UKillAllEnemiesWithTag_C, Cache) == 0x000098, "Member 'UKillAllEnemiesWithTag_C::Cache' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RaiseEvent_C_ExecuteUbergraph_RaiseEvent \ +static_assert(alignof(RaiseEvent_C_ExecuteUbergraph_RaiseEvent) == 0x000008, "Wrong alignment on RaiseEvent_C_ExecuteUbergraph_RaiseEvent"); \ +static_assert(sizeof(RaiseEvent_C_ExecuteUbergraph_RaiseEvent) == 0x000018, "Wrong size on RaiseEvent_C_ExecuteUbergraph_RaiseEvent"); \ +static_assert(offsetof(RaiseEvent_C_ExecuteUbergraph_RaiseEvent, EntryPoint) == 0x000000, "Member 'RaiseEvent_C_ExecuteUbergraph_RaiseEvent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(RaiseEvent_C_ExecuteUbergraph_RaiseEvent, K2Node_Event_InAutomata) == 0x000008, "Member 'RaiseEvent_C_ExecuteUbergraph_RaiseEvent::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RaiseEvent_C_ExecuteUbergraph_RaiseEvent, K2Node_Event_InState) == 0x000010, "Member 'RaiseEvent_C_ExecuteUbergraph_RaiseEvent::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RaiseEvent_C_ReceiveExecute \ +static_assert(alignof(RaiseEvent_C_ReceiveExecute) == 0x000008, "Wrong alignment on RaiseEvent_C_ReceiveExecute"); \ +static_assert(sizeof(RaiseEvent_C_ReceiveExecute) == 0x000010, "Wrong size on RaiseEvent_C_ReceiveExecute"); \ +static_assert(offsetof(RaiseEvent_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'RaiseEvent_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RaiseEvent_C_ReceiveExecute, InState) == 0x000008, "Member 'RaiseEvent_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URaiseEvent_C \ +static_assert(alignof(URaiseEvent_C) == 0x000008, "Wrong alignment on URaiseEvent_C"); \ +static_assert(sizeof(URaiseEvent_C) == 0x000098, "Wrong size on URaiseEvent_C"); \ +static_assert(offsetof(URaiseEvent_C, UberGraphFrame) == 0x000088, "Member 'URaiseEvent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(URaiseEvent_C, Event) == 0x000090, "Member 'URaiseEvent_C::Event' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_markSubdue_C \ +static_assert(alignof(UGE_markSubdue_C) == 0x000008, "Wrong alignment on UGE_markSubdue_C"); \ +static_assert(sizeof(UGE_markSubdue_C) == 0x000A70, "Wrong size on UGE_markSubdue_C"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate \ +static_assert(alignof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate) == 0x000008, "Wrong alignment on BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate"); \ +static_assert(sizeof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate) == 0x000068, "Wrong size on BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, EntryPoint) == 0x000000, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, K2Node_Event_InPlayStatus) == 0x000008, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::K2Node_Event_InPlayStatus' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, K2Node_DynamicCast_AsLevel_Sequence_Actor) == 0x000050, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::K2Node_DynamicCast_AsLevel_Sequence_Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, K2Node_DynamicCast_bSuccess) == 0x000058, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate, CallFunc_GetSequencePlayer_ReturnValue) == 0x000060, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_ExecuteUbergraph_BP_VFX_HeraDialogueEvent_EndDominate::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint \ +static_assert(alignof(BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint) == 0x000008, "Wrong alignment on BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint"); \ +static_assert(sizeof(BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint) == 0x000040, "Wrong size on BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint"); \ +static_assert(offsetof(BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_VFX_HeraDialogueEvent_EndDominate_C_OnBegin_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_VFX_HeraDialogueEvent_EndDominate_C \ +static_assert(alignof(UBP_VFX_HeraDialogueEvent_EndDominate_C) == 0x000008, "Wrong alignment on UBP_VFX_HeraDialogueEvent_EndDominate_C"); \ +static_assert(sizeof(UBP_VFX_HeraDialogueEvent_EndDominate_C) == 0x0000A0, "Wrong size on UBP_VFX_HeraDialogueEvent_EndDominate_C"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_EndDominate_C, UberGraphFrame) == 0x000068, "Member 'UBP_VFX_HeraDialogueEvent_EndDominate_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_EndDominate_C, Sequence) == 0x000070, "Member 'UBP_VFX_HeraDialogueEvent_EndDominate_C::Sequence' has a wrong offset!"); \ +static_assert(offsetof(UBP_VFX_HeraDialogueEvent_EndDominate_C, LoadedSequence) == 0x000098, "Member 'UBP_VFX_HeraDialogueEvent_EndDominate_C::LoadedSequence' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed \ +static_assert(alignof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed) == 0x000008, "Wrong alignment on TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed"); \ +static_assert(sizeof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed) == 0x000108, "Wrong size on TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, EntryPoint) == 0x000000, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_Event_InAutomata) == 0x000010, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_Event_InState) == 0x000018, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_DynamicCast_AsHera_Dialogue_Info) == 0x000020, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_DynamicCast_AsHera_Dialogue_Info' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, CallFunc_GetPlayerPawn_ReturnValue) == 0x000030, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000040, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_DynamicCast_AsWrestler_Dialogue_Rig) == 0x000048, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_DynamicCast_AsWrestler_Dialogue_Rig' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed, K2Node_MakeStruct_GameplayEventData) == 0x000058, "Member 'TriggerMalkavianFeed_C_ExecuteUbergraph_TriggerMalkavianFeed::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerMalkavianFeed_C_ReceiveExecute \ +static_assert(alignof(TriggerMalkavianFeed_C_ReceiveExecute) == 0x000008, "Wrong alignment on TriggerMalkavianFeed_C_ReceiveExecute"); \ +static_assert(sizeof(TriggerMalkavianFeed_C_ReceiveExecute) == 0x000010, "Wrong size on TriggerMalkavianFeed_C_ReceiveExecute"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TriggerMalkavianFeed_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerMalkavianFeed_C_ReceiveExecute, InState) == 0x000008, "Member 'TriggerMalkavianFeed_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTriggerMalkavianFeed_C \ +static_assert(alignof(UTriggerMalkavianFeed_C) == 0x000008, "Wrong alignment on UTriggerMalkavianFeed_C"); \ +static_assert(sizeof(UTriggerMalkavianFeed_C) == 0x0000E0, "Wrong size on UTriggerMalkavianFeed_C"); \ +static_assert(offsetof(UTriggerMalkavianFeed_C, UberGraphFrame) == 0x000088, "Member 'UTriggerMalkavianFeed_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTriggerMalkavianFeed_C, DialogueRig) == 0x000090, "Member 'UTriggerMalkavianFeed_C::DialogueRig' has a wrong offset!"); \ +static_assert(offsetof(UTriggerMalkavianFeed_C, FeederConversation) == 0x0000B8, "Member 'UTriggerMalkavianFeed_C::FeederConversation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetEnemyPatrolRoutes_C \ +static_assert(alignof(USetEnemyPatrolRoutes_C) == 0x000008, "Wrong alignment on USetEnemyPatrolRoutes_C"); \ +static_assert(sizeof(USetEnemyPatrolRoutes_C) == 0x0000D8, "Wrong size on USetEnemyPatrolRoutes_C"); \ + +#define DUMPER7_ASSERTS_UPD_MOTF_MDR_Ryong_C \ +static_assert(alignof(UPD_MOTF_MDR_Ryong_C) == 0x000008, "Wrong alignment on UPD_MOTF_MDR_Ryong_C"); \ +static_assert(sizeof(UPD_MOTF_MDR_Ryong_C) == 0x000058, "Wrong size on UPD_MOTF_MDR_Ryong_C"); \ + +#define DUMPER7_ASSERTS_Int_Decrement_C_ExecuteUbergraph_Int_Decrement \ +static_assert(alignof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement) == 0x000008, "Wrong alignment on Int_Decrement_C_ExecuteUbergraph_Int_Decrement"); \ +static_assert(sizeof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement) == 0x000028, "Wrong size on Int_Decrement_C_ExecuteUbergraph_Int_Decrement"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, EntryPoint) == 0x000000, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, K2Node_Event_InAutomata) == 0x000008, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, K2Node_Event_InState) == 0x000010, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, CallFunc_GetProperty_ReturnValue) == 0x000018, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ExecuteUbergraph_Int_Decrement, CallFunc_Subtract_IntInt_ReturnValue) == 0x000020, "Member 'Int_Decrement_C_ExecuteUbergraph_Int_Decrement::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Int_Decrement_C_ReceiveExecute \ +static_assert(alignof(Int_Decrement_C_ReceiveExecute) == 0x000008, "Wrong alignment on Int_Decrement_C_ReceiveExecute"); \ +static_assert(sizeof(Int_Decrement_C_ReceiveExecute) == 0x000010, "Wrong size on Int_Decrement_C_ReceiveExecute"); \ +static_assert(offsetof(Int_Decrement_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Int_Decrement_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Decrement_C_ReceiveExecute, InState) == 0x000008, "Member 'Int_Decrement_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInt_Decrement_C \ +static_assert(alignof(UInt_Decrement_C) == 0x000008, "Wrong alignment on UInt_Decrement_C"); \ +static_assert(sizeof(UInt_Decrement_C) == 0x000098, "Wrong size on UInt_Decrement_C"); \ +static_assert(offsetof(UInt_Decrement_C, UberGraphFrame) == 0x000088, "Member 'UInt_Decrement_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UInt_Decrement_C, Integer) == 0x000090, "Member 'UInt_Decrement_C::Integer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowText_C_ExecuteUbergraph_ShowText \ +static_assert(alignof(ShowText_C_ExecuteUbergraph_ShowText) == 0x000008, "Wrong alignment on ShowText_C_ExecuteUbergraph_ShowText"); \ +static_assert(sizeof(ShowText_C_ExecuteUbergraph_ShowText) == 0x000020, "Wrong size on ShowText_C_ExecuteUbergraph_ShowText"); \ +static_assert(offsetof(ShowText_C_ExecuteUbergraph_ShowText, EntryPoint) == 0x000000, "Member 'ShowText_C_ExecuteUbergraph_ShowText::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_ExecuteUbergraph_ShowText, K2Node_Event_InAutomata) == 0x000008, "Member 'ShowText_C_ExecuteUbergraph_ShowText::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_ExecuteUbergraph_ShowText, K2Node_Event_InState) == 0x000010, "Member 'ShowText_C_ExecuteUbergraph_ShowText::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_ExecuteUbergraph_ShowText, CallFunc_Delay_Duration_ImplicitCast) == 0x000018, "Member 'ShowText_C_ExecuteUbergraph_ShowText::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowText_C_ReceiveExecute \ +static_assert(alignof(ShowText_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowText_C_ReceiveExecute"); \ +static_assert(sizeof(ShowText_C_ReceiveExecute) == 0x000010, "Wrong size on ShowText_C_ReceiveExecute"); \ +static_assert(offsetof(ShowText_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowText_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowText_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowText_C_Update_Widget_Slot \ +static_assert(alignof(ShowText_C_Update_Widget_Slot) == 0x000008, "Wrong alignment on ShowText_C_Update_Widget_Slot"); \ +static_assert(sizeof(ShowText_C_Update_Widget_Slot) == 0x000080, "Wrong size on ShowText_C_Update_Widget_Slot"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, Show) == 0x000000, "Member 'ShowText_C_Update_Widget_Slot::Show' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, SizeProperty) == 0x000008, "Member 'ShowText_C_Update_Widget_Slot::SizeProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, TextProperty) == 0x000010, "Member 'ShowText_C_Update_Widget_Slot::TextProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, TitleProperty) == 0x000018, "Member 'ShowText_C_Update_Widget_Slot::TitleProperty' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, WBP_TempText) == 0x000020, "Member 'ShowText_C_Update_Widget_Slot::WBP_TempText' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, CallFunc_Conv_TextToString_ReturnValue) == 0x000048, "Member 'ShowText_C_Update_Widget_Slot::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, CallFunc_Conv_TextToString_ReturnValue_1) == 0x000058, "Member 'ShowText_C_Update_Widget_Slot::CallFunc_Conv_TextToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, CallFunc_GetHud_ReturnValue) == 0x000068, "Member 'ShowText_C_Update_Widget_Slot::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, K2Node_DynamicCast_AsHera_HUD) == 0x000070, "Member 'ShowText_C_Update_Widget_Slot::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(ShowText_C_Update_Widget_Slot, K2Node_DynamicCast_bSuccess) == 0x000078, "Member 'ShowText_C_Update_Widget_Slot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowText_C \ +static_assert(alignof(UShowText_C) == 0x000008, "Wrong alignment on UShowText_C"); \ +static_assert(sizeof(UShowText_C) == 0x0000D0, "Wrong size on UShowText_C"); \ +static_assert(offsetof(UShowText_C, UberGraphFrame) == 0x000088, "Member 'UShowText_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowText_C, TitleText) == 0x000090, "Member 'UShowText_C::TitleText' has a wrong offset!"); \ +static_assert(offsetof(UShowText_C, Text) == 0x0000A8, "Member 'UShowText_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UShowText_C, Time) == 0x0000C0, "Member 'UShowText_C::Time' has a wrong offset!"); \ +static_assert(offsetof(UShowText_C, Text_Size) == 0x0000C8, "Member 'UShowText_C::Text_Size' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy \ +static_assert(alignof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy) == 0x000010, "Wrong alignment on BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy"); \ +static_assert(sizeof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy) == 0x000230, "Wrong size on BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, EntryPoint) == 0x000000, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, Temp_int_Loop_Counter_Variable_1) == 0x000024, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Add_IntInt_ReturnValue_1) == 0x000030, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, K2Node_CustomEvent_Enemy) == 0x000038, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_GetTransform_ReturnValue) == 0x000050, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Add_ReturnValue) == 0x0000B0, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Get_Item_1) == 0x0000B8, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Length_ReturnValue_1) == 0x0000C0, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0000C4, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000C5, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Add_ReturnValue_1) == 0x0000C8, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_Array_Get_Item_2) == 0x0000D0, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_GetTransform_ReturnValue_1) == 0x000130, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_GetTransform_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Location) == 0x000190, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Rotation) == 0x0001A8, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Scale) == 0x0001C0, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Location_1) == 0x0001D8, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Rotation_1) == 0x0001F0, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Rotation_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_BreakTransform_Scale_1) == 0x000208, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_BreakTransform_Scale_1' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_K2_TeleportTo_ReturnValue) == 0x000220, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_K2_TeleportTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy, CallFunc_K2_TeleportTo_ReturnValue_1) == 0x000221, "Member 'BP_HideEnemy_C_ExecuteUbergraph_BP_HideEnemy::CallFunc_K2_TeleportTo_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_HideEnemy_C_SpawnAndAttachTorch \ +static_assert(alignof(BP_HideEnemy_C_SpawnAndAttachTorch) == 0x000008, "Wrong alignment on BP_HideEnemy_C_SpawnAndAttachTorch"); \ +static_assert(sizeof(BP_HideEnemy_C_SpawnAndAttachTorch) == 0x000008, "Wrong size on BP_HideEnemy_C_SpawnAndAttachTorch"); \ +static_assert(offsetof(BP_HideEnemy_C_SpawnAndAttachTorch, Enemy_0) == 0x000000, "Member 'BP_HideEnemy_C_SpawnAndAttachTorch::Enemy_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_HideEnemy_C \ +static_assert(alignof(ABP_HideEnemy_C) == 0x000008, "Wrong alignment on ABP_HideEnemy_C"); \ +static_assert(sizeof(ABP_HideEnemy_C) == 0x000300, "Wrong size on ABP_HideEnemy_C"); \ +static_assert(offsetof(ABP_HideEnemy_C, UberGraphFrame) == 0x000298, "Member 'ABP_HideEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, Billboard) == 0x0002A0, "Member 'ABP_HideEnemy_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_HideEnemy_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, AI_Spawners) == 0x0002B0, "Member 'ABP_HideEnemy_C::AI_Spawners' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, Enemy) == 0x0002C0, "Member 'ABP_HideEnemy_C::Enemy' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, EnemySpawnLocations) == 0x0002D0, "Member 'ABP_HideEnemy_C::EnemySpawnLocations' has a wrong offset!"); \ +static_assert(offsetof(ABP_HideEnemy_C, Gameplay_Tags) == 0x0002E0, "Member 'ABP_HideEnemy_C::Gameplay_Tags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility \ +static_assert(alignof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility) == 0x000008, "Wrong alignment on ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility"); \ +static_assert(sizeof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility) == 0x000040, "Wrong size on ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, EntryPoint) == 0x000000, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000010, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000018, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, K2Node_Event_InAutomata) == 0x000020, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, K2Node_Event_InState) == 0x000028, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, CallFunc_GetSlotWidget_ReturnValue) == 0x000030, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility, K2Node_SwitchEnum_CmpSuccess) == 0x000038, "Member 'ChangeObjectiveVisibility_C_ExecuteUbergraph_ChangeObjectiveVisibility::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeObjectiveVisibility_C_ReceiveExecute \ +static_assert(alignof(ChangeObjectiveVisibility_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeObjectiveVisibility_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeObjectiveVisibility_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeObjectiveVisibility_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeObjectiveVisibility_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeObjectiveVisibility_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeObjectiveVisibility_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeObjectiveVisibility_C \ +static_assert(alignof(UChangeObjectiveVisibility_C) == 0x000008, "Wrong alignment on UChangeObjectiveVisibility_C"); \ +static_assert(sizeof(UChangeObjectiveVisibility_C) == 0x000098, "Wrong size on UChangeObjectiveVisibility_C"); \ +static_assert(offsetof(UChangeObjectiveVisibility_C, UberGraphFrame) == 0x000088, "Member 'UChangeObjectiveVisibility_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeObjectiveVisibility_C, IsVisible) == 0x000090, "Member 'UChangeObjectiveVisibility_C::IsVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor \ +static_assert(alignof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor) == 0x000008, "Wrong alignment on ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor"); \ +static_assert(sizeof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor) == 0x000030, "Wrong size on ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, EntryPoint) == 0x000000, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, K2Node_Event_InAutomata) == 0x000008, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, K2Node_Event_InState) == 0x000010, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, CallFunc_GetActor_Actors) == 0x000018, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::CallFunc_GetActor_Actors' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, K2Node_DynamicCast_AsBP_Transition_Door_Base) == 0x000020, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::K2Node_DynamicCast_AsBP_Transition_Door_Base' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ModifyTransitionDoor_C_ExecuteUbergraph_ModifyTransitionDoor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModifyTransitionDoor_C_GetActor \ +static_assert(alignof(ModifyTransitionDoor_C_GetActor) == 0x000008, "Wrong alignment on ModifyTransitionDoor_C_GetActor"); \ +static_assert(sizeof(ModifyTransitionDoor_C_GetActor) == 0x000020, "Wrong size on ModifyTransitionDoor_C_GetActor"); \ +static_assert(offsetof(ModifyTransitionDoor_C_GetActor, Actors) == 0x000000, "Member 'ModifyTransitionDoor_C_GetActor::Actors' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_GetActor, OutActors) == 0x000008, "Member 'ModifyTransitionDoor_C_GetActor::OutActors' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_GetActor, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000018, "Member 'ModifyTransitionDoor_C_GetActor::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ModifyTransitionDoor_C_ReceiveExecute \ +static_assert(alignof(ModifyTransitionDoor_C_ReceiveExecute) == 0x000008, "Wrong alignment on ModifyTransitionDoor_C_ReceiveExecute"); \ +static_assert(sizeof(ModifyTransitionDoor_C_ReceiveExecute) == 0x000010, "Wrong size on ModifyTransitionDoor_C_ReceiveExecute"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ModifyTransitionDoor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ModifyTransitionDoor_C_ReceiveExecute, InState) == 0x000008, "Member 'ModifyTransitionDoor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModifyTransitionDoor_C \ +static_assert(alignof(UModifyTransitionDoor_C) == 0x000008, "Wrong alignment on UModifyTransitionDoor_C"); \ +static_assert(sizeof(UModifyTransitionDoor_C) == 0x0000C0, "Wrong size on UModifyTransitionDoor_C"); \ +static_assert(offsetof(UModifyTransitionDoor_C, UberGraphFrame) == 0x000088, "Member 'UModifyTransitionDoor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UModifyTransitionDoor_C, Door) == 0x000090, "Member 'UModifyTransitionDoor_C::Door' has a wrong offset!"); \ +static_assert(offsetof(UModifyTransitionDoor_C, F_Narrative_Mode) == 0x0000B8, "Member 'UModifyTransitionDoor_C::F_Narrative_Mode' has a wrong offset!"); \ +static_assert(offsetof(UModifyTransitionDoor_C, B_Narrative_Mode) == 0x0000B9, "Member 'UModifyTransitionDoor_C::B_Narrative_Mode' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement \ +static_assert(alignof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement) == 0x000008, "Wrong alignment on BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement"); \ +static_assert(sizeof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement) == 0x000020, "Wrong size on BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement"); \ +static_assert(offsetof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement, EntryPoint) == 0x000000, "Member 'BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement, K2Node_Event_InAutomata) == 0x000010, "Member 'BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement, K2Node_Event_InState) == 0x000018, "Member 'BlockPlayerMovement_C_ExecuteUbergraph_BlockPlayerMovement::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BlockPlayerMovement_C_ReceiveExecute \ +static_assert(alignof(BlockPlayerMovement_C_ReceiveExecute) == 0x000008, "Wrong alignment on BlockPlayerMovement_C_ReceiveExecute"); \ +static_assert(sizeof(BlockPlayerMovement_C_ReceiveExecute) == 0x000010, "Wrong size on BlockPlayerMovement_C_ReceiveExecute"); \ +static_assert(offsetof(BlockPlayerMovement_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'BlockPlayerMovement_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BlockPlayerMovement_C_ReceiveExecute, InState) == 0x000008, "Member 'BlockPlayerMovement_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBlockPlayerMovement_C \ +static_assert(alignof(UBlockPlayerMovement_C) == 0x000008, "Wrong alignment on UBlockPlayerMovement_C"); \ +static_assert(sizeof(UBlockPlayerMovement_C) == 0x000090, "Wrong size on UBlockPlayerMovement_C"); \ +static_assert(offsetof(UBlockPlayerMovement_C, UberGraphFrame) == 0x000088, "Member 'UBlockPlayerMovement_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_ClearBindingActors \ +static_assert(alignof(PlayCutscene_C_ClearBindingActors) == 0x000001, "Wrong alignment on PlayCutscene_C_ClearBindingActors"); \ +static_assert(sizeof(PlayCutscene_C_ClearBindingActors) == 0x000001, "Wrong size on PlayCutscene_C_ClearBindingActors"); \ +static_assert(offsetof(PlayCutscene_C_ClearBindingActors, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'PlayCutscene_C_ClearBindingActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_ExecuteUbergraph_PlayCutscene \ +static_assert(alignof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene) == 0x000008, "Wrong alignment on PlayCutscene_C_ExecuteUbergraph_PlayCutscene"); \ +static_assert(sizeof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene) == 0x000380, "Wrong size on PlayCutscene_C_ExecuteUbergraph_PlayCutscene"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, EntryPoint) == 0x000000, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Array_Index_Variable) == 0x000004, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsCinematicsEnabled_ReturnValue) == 0x000008, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsCinematicsEnabled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetLevelSequencePlayer_ReturnValue) == 0x000010, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetLevelSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_MakeLiteralByte_ReturnValue) == 0x000018, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_MakeLiteralByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Loop_Counter_Variable) == 0x00001C, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Conv_ByteToInt_ReturnValue) == 0x000020, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Add_IntInt_ReturnValue) == 0x000024, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Array_Index_Variable_1) == 0x000028, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_Event_InAutomata) == 0x000030, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_Event_InState) == 0x000038, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Conv_ByteToInt_ReturnValue_1) == 0x000040, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Conv_ByteToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetPlayerPawn_ReturnValue) == 0x000048, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetLevelSequenceActor_ReturnValue) == 0x000050, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetLevelSequenceActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Map_Keys_Keys) == 0x000058, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Map_Values_Values) == 0x000068, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Map_Values_Values' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Length_ReturnValue) == 0x000078, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Add_ReturnValue) == 0x00007C, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000080, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Loop_Counter_Variable_1) == 0x0000A0, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item) == 0x0000A8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Less_IntInt_ReturnValue) == 0x0000B0, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsValid_ReturnValue) == 0x0000B1, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x0000B8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x0000C0, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsValid_ReturnValue_1) == 0x0000C1, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x0000C4, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Add_IntInt_ReturnValue_1) == 0x0000C8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Length_ReturnValue_1) == 0x0000CC, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Loop_Counter_Variable_2) == 0x0000D0, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0000D8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000F8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Add_IntInt_ReturnValue_2) == 0x0000FC, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_PlayerInCutscene_ReturnValue) == 0x000100, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_PlayerInCutscene_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item_1) == 0x000108, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsValid_ReturnValue_2) == 0x000110, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000111, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Length_ReturnValue_2) == 0x000114, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Less_IntInt_ReturnValue_2) == 0x000118, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000120, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000128, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_DynamicCast_AsLevel_Sequence) == 0x000130, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_DynamicCast_AsLevel_Sequence' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_DynamicCast_bSuccess) == 0x000138, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000140, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Conv_ObjectToString_ReturnValue) == 0x000228, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Conv_ObjectToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetPlayerCharacter_ReturnValue_1) == 0x000238, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetPlayerCharacter_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, Temp_int_Array_Index_Variable_2) == 0x000240, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item_2) == 0x000244, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item_3) == 0x00024C, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_FindNamedBinding_ReturnValue) == 0x000254, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_FindNamedBinding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000270, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue) == 0x000290, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_MakeGameplayTagQuery_MatchAnyTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors) == 0x0002D8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetAllActorsOfClassMatchingTagQuery_OutActors' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetLevelSequenceActor_ReturnValue_1) == 0x0002E8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetLevelSequenceActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item_4) == 0x0002F0, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_FindNamedBinding_ReturnValue_1) == 0x0002F8, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_FindNamedBinding_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsValid_ReturnValue_3) == 0x000310, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Add_ReturnValue_1) == 0x000314, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_MakeArray_Array) == 0x000318, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000328, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000330, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetPlayerController_ReturnValue) == 0x000338, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000340, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_GetPlayerCharacter_ReturnValue_2) == 0x000350, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_GetPlayerCharacter_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Get_Item_5) == 0x000358, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_Add_ReturnValue_2) == 0x000360, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_IsValid_ReturnValue_4) == 0x000364, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, K2Node_MakeArray_Array_1) == 0x000368, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ExecuteUbergraph_PlayCutscene, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000378, "Member 'PlayCutscene_C_ExecuteUbergraph_PlayCutscene::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_PlayerInCutscene \ +static_assert(alignof(PlayCutscene_C_PlayerInCutscene) == 0x000008, "Wrong alignment on PlayCutscene_C_PlayerInCutscene"); \ +static_assert(sizeof(PlayCutscene_C_PlayerInCutscene) == 0x000058, "Wrong size on PlayCutscene_C_PlayerInCutscene"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, ReturnValue) == 0x000000, "Member 'PlayCutscene_C_PlayerInCutscene::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_GetLevelSequenceActor_ReturnValue) == 0x000008, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_GetLevelSequenceActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_GetSequencePlayer_ReturnValue) == 0x000010, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_GetSequencePlayer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_FindNamedBinding_ReturnValue) == 0x000018, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_FindNamedBinding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_GetBoundObjects_ReturnValue) == 0x000030, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_GetBoundObjects_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_Array_IsEmpty_ReturnValue) == 0x000040, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_Array_Get_Item) == 0x000048, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_PlayerInCutscene, CallFunc_IsValid_ReturnValue) == 0x000050, "Member 'PlayCutscene_C_PlayerInCutscene::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_ReceiveExecute \ +static_assert(alignof(PlayCutscene_C_ReceiveExecute) == 0x000008, "Wrong alignment on PlayCutscene_C_ReceiveExecute"); \ +static_assert(sizeof(PlayCutscene_C_ReceiveExecute) == 0x000010, "Wrong size on PlayCutscene_C_ReceiveExecute"); \ +static_assert(offsetof(PlayCutscene_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'PlayCutscene_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ReceiveExecute, InState) == 0x000008, "Member 'PlayCutscene_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_SetupPhyreBindings \ +static_assert(alignof(PlayCutscene_C_SetupPhyreBindings) == 0x000010, "Wrong alignment on PlayCutscene_C_SetupPhyreBindings"); \ +static_assert(sizeof(PlayCutscene_C_SetupPhyreBindings) == 0x000100, "Wrong size on PlayCutscene_C_SetupPhyreBindings"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, Temp_byte_Variable) == 0x000000, "Member 'PlayCutscene_C_SetupPhyreBindings::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, Temp_name_Variable) == 0x000004, "Member 'PlayCutscene_C_SetupPhyreBindings::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, Temp_name_Variable_1) == 0x00000C, "Member 'PlayCutscene_C_SetupPhyreBindings::Temp_name_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_GetGameInstance_ReturnValue) == 0x000018, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000020, "Member 'PlayCutscene_C_SetupPhyreBindings::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'PlayCutscene_C_SetupPhyreBindings::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, K2Node_MakeArray_Array) == 0x000030, "Member 'PlayCutscene_C_SetupPhyreBindings::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_GetPlayerVariant_ReturnValue) == 0x000040, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_MakeTransform_ReturnValue) == 0x000050, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000B0, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, K2Node_Select_Default) == 0x0000B8, "Member 'PlayCutscene_C_SetupPhyreBindings::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000C0, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_GetLevelSequenceActor_ReturnValue) == 0x0000C8, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_GetLevelSequenceActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_FindNamedBindings_ReturnValue) == 0x0000D0, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_FindNamedBindings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_FindNamedBinding_ReturnValue) == 0x0000E0, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_FindNamedBinding_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_SetupPhyreBindings, CallFunc_Array_IsEmpty_ReturnValue) == 0x0000F8, "Member 'PlayCutscene_C_SetupPhyreBindings::CallFunc_Array_IsEmpty_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCutscene_C_ShowOrHideInteractionHudSlot \ +static_assert(alignof(PlayCutscene_C_ShowOrHideInteractionHudSlot) == 0x000008, "Wrong alignment on PlayCutscene_C_ShowOrHideInteractionHudSlot"); \ +static_assert(sizeof(PlayCutscene_C_ShowOrHideInteractionHudSlot) == 0x000038, "Wrong size on PlayCutscene_C_ShowOrHideInteractionHudSlot"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, NewVisibility) == 0x000000, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::NewVisibility' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, NewLocalVar) == 0x000008, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, CallFunc_GetPlayerController_ReturnValue) == 0x000010, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, CallFunc_GetSlotWidget_ReturnValue) == 0x000018, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000020, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000028, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCutscene_C_ShowOrHideInteractionHudSlot, K2Node_SwitchEnum_CmpSuccess) == 0x000031, "Member 'PlayCutscene_C_ShowOrHideInteractionHudSlot::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayCutscene_C \ +static_assert(alignof(UPlayCutscene_C) == 0x000010, "Wrong alignment on UPlayCutscene_C"); \ +static_assert(sizeof(UPlayCutscene_C) == 0x000270, "Wrong size on UPlayCutscene_C"); \ +static_assert(offsetof(UPlayCutscene_C, UberGraphFrame) == 0x0001E0, "Member 'UPlayCutscene_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, PI_Audio_CutsceneState) == 0x0001E8, "Member 'UPlayCutscene_C::PI_Audio_CutsceneState' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, Interaction_Slot_Widget_Name) == 0x0001F0, "Member 'UPlayCutscene_C::Interaction_Slot_Widget_Name' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, Dummy_Actor) == 0x0001F8, "Member 'UPlayCutscene_C::Dummy_Actor' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, BindToBoss) == 0x000200, "Member 'UPlayCutscene_C::BindToBoss' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, BindingMap) == 0x000208, "Member 'UPlayCutscene_C::BindingMap' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, BoundActorList) == 0x000258, "Member 'UPlayCutscene_C::BoundActorList' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, ReturnToPlayCameraOnFinished) == 0x000268, "Member 'UPlayCutscene_C::ReturnToPlayCameraOnFinished' has a wrong offset!"); \ +static_assert(offsetof(UPlayCutscene_C, CancelPlayerAbilies) == 0x000269, "Member 'UPlayCutscene_C::CancelPlayerAbilies' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Recall_C_BlueprintModifyCamera \ +static_assert(alignof(CM_Recall_C_BlueprintModifyCamera) == 0x000008, "Wrong alignment on CM_Recall_C_BlueprintModifyCamera"); \ +static_assert(sizeof(CM_Recall_C_BlueprintModifyCamera) == 0x0000B8, "Wrong size on CM_Recall_C_BlueprintModifyCamera"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, DeltaTime) == 0x000000, "Member 'CM_Recall_C_BlueprintModifyCamera::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, ViewLocation) == 0x000008, "Member 'CM_Recall_C_BlueprintModifyCamera::ViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, ViewRotation) == 0x000020, "Member 'CM_Recall_C_BlueprintModifyCamera::ViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, FOV) == 0x000038, "Member 'CM_Recall_C_BlueprintModifyCamera::FOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, NewViewLocation) == 0x000040, "Member 'CM_Recall_C_BlueprintModifyCamera::NewViewLocation' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, NewViewRotation) == 0x000058, "Member 'CM_Recall_C_BlueprintModifyCamera::NewViewRotation' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, NewFOV) == 0x000070, "Member 'CM_Recall_C_BlueprintModifyCamera::NewFOV' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000078, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_GetProperty_ReturnValue) == 0x000080, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000088, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000090, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000098, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0000A0, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, K2Node_FunctionResult_NewFOV_ImplicitCast) == 0x0000A8, "Member 'CM_Recall_C_BlueprintModifyCamera::K2Node_FunctionResult_NewFOV_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyCamera, CallFunc_Multiply_DoubleDouble_B_ImplicitCast) == 0x0000B0, "Member 'CM_Recall_C_BlueprintModifyCamera::CallFunc_Multiply_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CM_Recall_C_BlueprintModifyPostProcess \ +static_assert(alignof(CM_Recall_C_BlueprintModifyPostProcess) == 0x000010, "Wrong alignment on CM_Recall_C_BlueprintModifyPostProcess"); \ +static_assert(sizeof(CM_Recall_C_BlueprintModifyPostProcess) == 0x000E00, "Wrong size on CM_Recall_C_BlueprintModifyPostProcess"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyPostProcess, DeltaTime) == 0x000000, "Member 'CM_Recall_C_BlueprintModifyPostProcess::DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyPostProcess, PostProcessBlendWeight) == 0x000004, "Member 'CM_Recall_C_BlueprintModifyPostProcess::PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyPostProcess, PostProcessSettings_0) == 0x000010, "Member 'CM_Recall_C_BlueprintModifyPostProcess::PostProcessSettings_0' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight) == 0x000700, "Member 'CM_Recall_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessBlendWeight' has a wrong offset!"); \ +static_assert(offsetof(CM_Recall_C_BlueprintModifyPostProcess, CallFunc_BlueprintModifyPostProcess_PostProcessSettings) == 0x000710, "Member 'CM_Recall_C_BlueprintModifyPostProcess::CallFunc_BlueprintModifyPostProcess_PostProcessSettings' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCM_Recall_C \ +static_assert(alignof(UCM_Recall_C) == 0x000010, "Wrong alignment on UCM_Recall_C"); \ +static_assert(sizeof(UCM_Recall_C) == 0x000780, "Wrong size on UCM_Recall_C"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType \ +static_assert(alignof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType) == 0x000008, "Wrong alignment on IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType"); \ +static_assert(sizeof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType) == 0x0000D8, "Wrong size on IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, EntryPoint) == 0x000000, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_byte_Variable) == 0x000004, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Array_Length_ReturnValue) == 0x000008, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_byte_Variable_1) == 0x000010, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Less_IntInt_ReturnValue) == 0x000018, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Add_IntInt_ReturnValue) == 0x00001C, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_int_Array_Index_Variable_1) == 0x000020, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_byte_Variable_2) == 0x000024, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_byte_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Array_Get_Item) == 0x000028, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_AsBP_Transition_Door_Base) == 0x000058, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_AsBP_Transition_Door_Base' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000068, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_Event_InAutomata) == 0x000080, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_Event_InState) == 0x000088, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_int_Loop_Counter_Variable_1) == 0x000090, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Add_IntInt_ReturnValue_1) == 0x000094, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_GetActors_Actors) == 0x000098, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_GetActors_Actors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, Temp_byte_Variable_3) == 0x0000A8, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::Temp_byte_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Array_Get_Item_1) == 0x0000B0, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_AsWrestler_Item_State_Interface_1) == 0x0000B8, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_AsWrestler_Item_State_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_DynamicCast_bSuccess_2) == 0x0000C8, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, K2Node_Select_Default) == 0x0000C9, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_DoesImplementInterface_ReturnValue) == 0x0000CA, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Array_Length_ReturnValue_1) == 0x0000CC, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000D0, "Member 'IQA_ModifyActorType_C_ExecuteUbergraph_IQA_ModifyActorType::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActorType_C_GetActors \ +static_assert(alignof(IQA_ModifyActorType_C_GetActors) == 0x000008, "Wrong alignment on IQA_ModifyActorType_C_GetActors"); \ +static_assert(sizeof(IQA_ModifyActorType_C_GetActors) == 0x0000B8, "Wrong size on IQA_ModifyActorType_C_GetActors"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Actors) == 0x000000, "Member 'IQA_ModifyActorType_C_GetActors::Actors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, OutActors) == 0x000010, "Member 'IQA_ModifyActorType_C_GetActors::OutActors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Array_Index_Variable) == 0x000020, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Array_Index_Variable_1) == 0x000024, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Array_Index_Variable_2) == 0x000030, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Loop_Counter_Variable_1) == 0x000034, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Add_IntInt_ReturnValue_1) == 0x000038, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, Temp_int_Loop_Counter_Variable_2) == 0x00003C, "Member 'IQA_ModifyActorType_C_GetActors::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Get_Item) == 0x000040, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_RemoveItem_ReturnValue) == 0x000048, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Add_IntInt_ReturnValue_2) == 0x00004C, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Get_Item_1) == 0x000058, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000080, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Length_ReturnValue_1) == 0x000088, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x00008C, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Less_IntInt_ReturnValue_1) == 0x00008D, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_GetAllActorsOfClass_OutActors) == 0x000090, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Get_Item_2) == 0x0000A0, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_Length_ReturnValue_2) == 0x0000A8, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_IsValid_ReturnValue) == 0x0000AC, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000AD, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_GetActors, CallFunc_Array_AddUnique_ReturnValue) == 0x0000B0, "Member 'IQA_ModifyActorType_C_GetActors::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IQA_ModifyActorType_C_ReceiveExecute \ +static_assert(alignof(IQA_ModifyActorType_C_ReceiveExecute) == 0x000008, "Wrong alignment on IQA_ModifyActorType_C_ReceiveExecute"); \ +static_assert(sizeof(IQA_ModifyActorType_C_ReceiveExecute) == 0x000010, "Wrong size on IQA_ModifyActorType_C_ReceiveExecute"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'IQA_ModifyActorType_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(IQA_ModifyActorType_C_ReceiveExecute, InState) == 0x000008, "Member 'IQA_ModifyActorType_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UIQA_ModifyActorType_C \ +static_assert(alignof(UIQA_ModifyActorType_C) == 0x000008, "Wrong alignment on UIQA_ModifyActorType_C"); \ +static_assert(sizeof(UIQA_ModifyActorType_C) == 0x0000C0, "Wrong size on UIQA_ModifyActorType_C"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, UberGraphFrame) == 0x000088, "Member 'UIQA_ModifyActorType_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, Lock_Doors_that_are_defaulted_to_be_Inactive) == 0x000090, "Member 'UIQA_ModifyActorType_C::Lock_Doors_that_are_defaulted_to_be_Inactive' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, Action) == 0x000091, "Member 'UIQA_ModifyActorType_C::Action' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, Actor_Type) == 0x000098, "Member 'UIQA_ModifyActorType_C::Actor_Type' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, Actors_to_Ignore) == 0x0000A0, "Member 'UIQA_ModifyActorType_C::Actors_to_Ignore' has a wrong offset!"); \ +static_assert(offsetof(UIQA_ModifyActorType_C, Doors_to_Lock_by_Default) == 0x0000B0, "Member 'UIQA_ModifyActorType_C::Doors_to_Lock_by_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag \ +static_assert(alignof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag) == 0x000008, "Wrong alignment on DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag"); \ +static_assert(sizeof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag) == 0x000020, "Wrong size on DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag, EntryPoint) == 0x000000, "Member 'DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag, K2Node_Event_InAutomata) == 0x000008, "Member 'DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag, K2Node_Event_InState) == 0x000010, "Member 'DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'DialogueStopWithCharacterTag_C_ExecuteUbergraph_DialogueStopWithCharacterTag::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogueStopWithCharacterTag_C_ReceiveExecute \ +static_assert(alignof(DialogueStopWithCharacterTag_C_ReceiveExecute) == 0x000008, "Wrong alignment on DialogueStopWithCharacterTag_C_ReceiveExecute"); \ +static_assert(sizeof(DialogueStopWithCharacterTag_C_ReceiveExecute) == 0x000010, "Wrong size on DialogueStopWithCharacterTag_C_ReceiveExecute"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DialogueStopWithCharacterTag_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogueStopWithCharacterTag_C_ReceiveExecute, InState) == 0x000008, "Member 'DialogueStopWithCharacterTag_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogueStopWithCharacterTag_C \ +static_assert(alignof(UDialogueStopWithCharacterTag_C) == 0x000008, "Wrong alignment on UDialogueStopWithCharacterTag_C"); \ +static_assert(sizeof(UDialogueStopWithCharacterTag_C) == 0x000098, "Wrong size on UDialogueStopWithCharacterTag_C"); \ +static_assert(offsetof(UDialogueStopWithCharacterTag_C, UberGraphFrame) == 0x000088, "Member 'UDialogueStopWithCharacterTag_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UDialogueStopWithCharacterTag_C, ParticipantTag) == 0x000090, "Member 'UDialogueStopWithCharacterTag_C::ParticipantTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UQuestEntryFont_C \ +static_assert(alignof(UQuestEntryFont_C) == 0x000010, "Wrong alignment on UQuestEntryFont_C"); \ +static_assert(sizeof(UQuestEntryFont_C) == 0x0001B0, "Wrong size on UQuestEntryFont_C"); \ + +#define DUMPER7_ASSERTS_SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive \ +static_assert(alignof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive) == 0x000008, "Wrong alignment on SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive"); \ +static_assert(sizeof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive) == 0x000168, "Wrong size on SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, EntryPoint) == 0x000000, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Array_Index_Variable) == 0x000010, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Loop_Counter_Variable_1) == 0x000014, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Add_IntInt_ReturnValue_2) == 0x000024, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Array_Index_Variable_1) == 0x000028, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Get_Item) == 0x000030, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_AsMass_Spawner) == 0x000060, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_AsMass_Spawner' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_Event_InAutomata) == 0x000070, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_Event_InState) == 0x000078, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Length_ReturnValue_1) == 0x000084, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Loop_Counter_Variable_3) == 0x000088, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Less_IntInt_ReturnValue_1) == 0x00008C, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Length_ReturnValue_2) == 0x000090, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Less_IntInt_ReturnValue_2) == 0x000094, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Add_IntInt_ReturnValue_3) == 0x000098, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Array_Index_Variable_2) == 0x00009C, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Get_Item_1) == 0x0000A0, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Get_Item_2) == 0x0000C8, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000F0, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x0000F8, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_AsWrestler_Mass_ZGAnnotation_Volume) == 0x000100, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_AsWrestler_Mass_ZGAnnotation_Volume' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_bSuccess_1) == 0x000108, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_AsMass_Spawner_1) == 0x000110, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_AsMass_Spawner_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_bSuccess_2) == 0x000118, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_IsValid_ReturnValue_1) == 0x000119, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_IsValid_ReturnValue_2) == 0x00011A, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Length_ReturnValue_3) == 0x00011C, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Less_IntInt_ReturnValue_3) == 0x000120, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, Temp_int_Array_Index_Variable_3) == 0x000124, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Array_Get_Item_3) == 0x000128, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3) == 0x000150, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_AsWrestler_Mass_ZGAnnotation_Volume_1) == 0x000158, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_AsWrestler_Mass_ZGAnnotation_Volume_1' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, K2Node_DynamicCast_bSuccess_3) == 0x000160, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive, CallFunc_IsValid_ReturnValue_3) == 0x000161, "Member 'SetWhereIsWallySpawnerActive_C_ExecuteUbergraph_SetWhereIsWallySpawnerActive::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetWhereIsWallySpawnerActive_C_ReceiveExecute \ +static_assert(alignof(SetWhereIsWallySpawnerActive_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetWhereIsWallySpawnerActive_C_ReceiveExecute"); \ +static_assert(sizeof(SetWhereIsWallySpawnerActive_C_ReceiveExecute) == 0x000010, "Wrong size on SetWhereIsWallySpawnerActive_C_ReceiveExecute"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetWhereIsWallySpawnerActive_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetWhereIsWallySpawnerActive_C_ReceiveExecute, InState) == 0x000008, "Member 'SetWhereIsWallySpawnerActive_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetWhereIsWallySpawnerActive_C \ +static_assert(alignof(USetWhereIsWallySpawnerActive_C) == 0x000008, "Wrong alignment on USetWhereIsWallySpawnerActive_C"); \ +static_assert(sizeof(USetWhereIsWallySpawnerActive_C) == 0x0000B8, "Wrong size on USetWhereIsWallySpawnerActive_C"); \ +static_assert(offsetof(USetWhereIsWallySpawnerActive_C, UberGraphFrame) == 0x000088, "Member 'USetWhereIsWallySpawnerActive_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetWhereIsWallySpawnerActive_C, bEnable) == 0x000090, "Member 'USetWhereIsWallySpawnerActive_C::bEnable' has a wrong offset!"); \ +static_assert(offsetof(USetWhereIsWallySpawnerActive_C, Volumes) == 0x000098, "Member 'USetWhereIsWallySpawnerActive_C::Volumes' has a wrong offset!"); \ +static_assert(offsetof(USetWhereIsWallySpawnerActive_C, Spawners) == 0x0000A8, "Member 'USetWhereIsWallySpawnerActive_C::Spawners' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_MoTF_PoS_Bouncer_C \ +static_assert(alignof(UPD_MoTF_PoS_Bouncer_C) == 0x000008, "Wrong alignment on UPD_MoTF_PoS_Bouncer_C"); \ +static_assert(sizeof(UPD_MoTF_PoS_Bouncer_C) == 0x000058, "Wrong size on UPD_MoTF_PoS_Bouncer_C"); \ + +#define DUMPER7_ASSERTS_UHoverButtonFontStyle_C \ +static_assert(alignof(UHoverButtonFontStyle_C) == 0x000010, "Wrong alignment on UHoverButtonFontStyle_C"); \ +static_assert(sizeof(UHoverButtonFontStyle_C) == 0x0001B0, "Wrong size on UHoverButtonFontStyle_C"); \ + +#define DUMPER7_ASSERTS_UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C \ +static_assert(alignof(UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C) == 0x000008, "Wrong alignment on UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C"); \ +static_assert(sizeof(UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C) == 0x000080, "Wrong size on UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C"); \ +static_assert(offsetof(UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C, QuestMap) == 0x000030, "Member 'UPDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_C::QuestMap' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume \ +static_assert(alignof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume) == 0x000010, "Wrong alignment on BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume"); \ +static_assert(sizeof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume) == 0x0000D0, "Wrong size on BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, EntryPoint) == 0x000000, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_GetAllActorsOfClass_OutActors) == 0x000010, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_GetScaledBoxExtent_ReturnValue) == 0x000028, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_GetScaledBoxExtent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000040, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_K2_GetComponentToWorld_ReturnValue) == 0x000060, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_K2_GetComponentToWorld_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_Array_Length_ReturnValue) == 0x0000C0, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_IsPointInBoxWithTransform_ReturnValue) == 0x0000C4, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_IsPointInBoxWithTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume, CallFunc_Less_IntInt_ReturnValue) == 0x0000C5, "Member 'BP_ThrowableKillVolume_C_ExecuteUbergraph_BP_ThrowableKillVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableKillVolume_C \ +static_assert(alignof(ABP_ThrowableKillVolume_C) == 0x000008, "Wrong alignment on ABP_ThrowableKillVolume_C"); \ +static_assert(sizeof(ABP_ThrowableKillVolume_C) == 0x0002B0, "Wrong size on ABP_ThrowableKillVolume_C"); \ +static_assert(offsetof(ABP_ThrowableKillVolume_C, UberGraphFrame) == 0x000298, "Member 'ABP_ThrowableKillVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableKillVolume_C, Box) == 0x0002A0, "Member 'ABP_ThrowableKillVolume_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableKillVolume_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_ThrowableKillVolume_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance) == 0x000010, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance) == 0x000480, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, EntryPoint) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Variable) == 0x000004, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x000018, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Array_Index_Variable) == 0x000024, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Optimize_based_on_visual_effects_Quality_ReturnValue) == 0x00002C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Optimize_based_on_visual_effects_Quality_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Add_IntInt_ReturnValue_1) == 0x000030, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Array_Index_Variable_1) == 0x000034, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Loop_Counter_Variable_1) == 0x000038, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Add_IntInt_ReturnValue_2) == 0x00003C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Array_Index_Variable_2) == 0x000040, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_IsValid_ReturnValue) == 0x000044, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_Event_bInVisible) == 0x000045, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_Event_InDuration_1) == 0x000048, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_Event_InDuration) == 0x00004C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetPlayerController_ReturnValue) == 0x000050, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetAttachParentActor_ReturnValue) == 0x000058, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000060, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_MakeArray_Array) == 0x000078, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, Temp_int_Loop_Counter_Variable_2) == 0x000088, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetAttachParentActor_ReturnValue_1) == 0x000090, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetAttachParentActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetActorBounds_Origin) == 0x000098, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetActorBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetActorBounds_BoxExtent) == 0x0000B0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetActorBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x0000C8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x0000D8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Get_Item) == 0x0000E0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetLocalBounds_Min) == 0x0000E8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetLocalBounds_Min' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetLocalBounds_Max) == 0x000100, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetLocalBounds_Max' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetInstanceTransform_OutInstanceTransform) == 0x000120, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetInstanceTransform_OutInstanceTransform' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetInstanceTransform_ReturnValue) == 0x000180, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetInstanceTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakVector_X) == 0x000188, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakVector_Y) == 0x000190, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakVector_Z) == 0x000198, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakTransform_Location) == 0x0001A0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakTransform_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakTransform_Rotation) == 0x0001B8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakTransform_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakTransform_Scale) == 0x0001D0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakTransform_Scale' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0001E8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Conv_RotatorToQuaternion_ReturnValue) == 0x0001F0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Conv_RotatorToQuaternion_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_MakeVector_ReturnValue) == 0x000210, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Add_VectorVector_ReturnValue) == 0x000228, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BooleanAND_ReturnValue) == 0x000240, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetInstanceCount_ReturnValue) == 0x000244, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetInstanceCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Subtract_IntInt_ReturnValue) == 0x000248, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00024C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Length_ReturnValue) == 0x000250, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Add_IntInt_ReturnValue_3) == 0x000254, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Less_IntInt_ReturnValue) == 0x000258, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_IsValid_ReturnValue_1) == 0x000259, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Add_ReturnValue) == 0x00025C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, K2Node_MakeArray_Array_1) == 0x000260, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Add_ReturnValue_1) == 0x000270, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Add_ReturnValue_2) == 0x000274, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_IsValid_ReturnValue_2) == 0x000278, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Length_ReturnValue_1) == 0x00027C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Less_IntInt_ReturnValue_1) == 0x000280, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_IsValid_ReturnValue_3) == 0x000281, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_LineTraceSingle_OutHit) == 0x000288, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_LineTraceSingle_ReturnValue) == 0x000370, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_bBlockingHit) == 0x000371, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_bInitialOverlap) == 0x000372, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_Time) == 0x000374, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_Distance) == 0x000378, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_Location) == 0x000380, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_ImpactPoint) == 0x000398, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_Normal) == 0x0003B0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_ImpactNormal) == 0x0003C8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_PhysMat) == 0x0003E0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_HitActor) == 0x0003E8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_HitComponent) == 0x0003F0, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_HitBoneName) == 0x0003F8, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_BoneName) == 0x000400, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_HitItem) == 0x000408, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_ElementIndex) == 0x00040C, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_FaceIndex) == 0x000410, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_TraceStart) == 0x000418, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_BreakHitResult_TraceEnd) == 0x000430, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Add_ReturnValue_3) == 0x000448, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Add_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_GetAttachParentActor_ReturnValue_2) == 0x000450, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_GetAttachParentActor_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_K2_GetComponentsByClass_ReturnValue_1) == 0x000458, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_K2_GetComponentsByClass_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Length_ReturnValue_2) == 0x000468, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Array_Get_Item_1) == 0x000470, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance, CallFunc_Less_IntInt_ReturnValue_2) == 0x000478, "Member 'BP_CustomHusk_HS_VFX_Performance_C_ExecuteUbergraph_BP_CustomHusk_HS_VFX_Performance::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent) == 0x000008, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality) == 0x000008, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality) == 0x000018, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality, A) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality::A' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality, ReturnValue) == 0x000004, "Member 'BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality, CallFunc_GetGameUserSettings_ReturnValue) == 0x000008, "Member 'BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality::CallFunc_GetGameUserSettings_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality, CallFunc_Percent_IntInt_ReturnValue) == 0x000010, "Member 'BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality::CallFunc_Percent_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality, CallFunc_Less_IntInt_ReturnValue) == 0x000014, "Member 'BP_CustomHusk_HS_VFX_Performance_C_Optimize_based_on_visual_effects_Quality::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_CustomHusk_HS_VFX_Performance_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CustomHusk_HS_VFX_Performance_C \ +static_assert(alignof(ABP_CustomHusk_HS_VFX_Performance_C) == 0x000008, "Wrong alignment on ABP_CustomHusk_HS_VFX_Performance_C"); \ +static_assert(sizeof(ABP_CustomHusk_HS_VFX_Performance_C) == 0x000348, "Wrong size on ABP_CustomHusk_HS_VFX_Performance_C"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, UberGraphFrame) == 0x000298, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, WrestlerHeightenedSensesClue) == 0x0002A0, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Timeline_Alpha_BB53AEE74FF33356607CD58E36DC4BDA) == 0x0002B0, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Timeline_Alpha_BB53AEE74FF33356607CD58E36DC4BDA' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Timeline__Direction_BB53AEE74FF33356607CD58E36DC4BDA) == 0x0002B4, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Timeline__Direction_BB53AEE74FF33356607CD58E36DC4BDA' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Timeline) == 0x0002B8, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, VFX) == 0x0002C0, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Array_Element) == 0x0002D0, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Array_Element' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, InHS) == 0x0002E0, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::InHS' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, PC) == 0x0002E8, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::PC' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, HazeVFX) == 0x0002F8, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::HazeVFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, VectorArray) == 0x000300, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::VectorArray' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Index_0) == 0x000310, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Index_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Quat) == 0x000320, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Quat' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Blocking_Hit) == 0x000330, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Blocking_Hit' has a wrong offset!"); \ +static_assert(offsetof(ABP_CustomHusk_HS_VFX_Performance_C, Visible) == 0x000340, "Member 'ABP_CustomHusk_HS_VFX_Performance_C::Visible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs \ +static_assert(alignof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs) == 0x000008, "Wrong alignment on SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs"); \ +static_assert(sizeof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs) == 0x000140, "Wrong size on SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, EntryPoint) == 0x000000, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_MakeLiteralInt_ReturnValue) == 0x000004, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_MakeLiteralInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_int_Variable) == 0x000008, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_int_Variable_1) == 0x00000C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_IntToByte_ReturnValue) == 0x000010, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_IntToByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetValidValue_ReturnValue) == 0x000018, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_IntToByte_ReturnValue_1) == 0x000019, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_IntToByte_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetEnumeratorValueFromIndex_ReturnValue) == 0x00001A, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetEnumeratorValueFromIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_ByteToInt_ReturnValue) == 0x00001C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_int_Variable_2) == 0x000020, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_int_Variable_3) == 0x000024, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_IntToByte_ReturnValue_2) == 0x000028, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_IntToByte_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Add_IntInt_ReturnValue_1) == 0x00002C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetValidValue_ReturnValue_1) == 0x000030, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetValidValue_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_IntToByte_ReturnValue_3) == 0x000031, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_IntToByte_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Less_IntInt_ReturnValue) == 0x000032, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetEnumeratorValueFromIndex_ReturnValue_1) == 0x000033, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetEnumeratorValueFromIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_ByteToInt_ReturnValue_1) == 0x000034, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_ByteToInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_byte_Variable) == 0x000038, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_bool_Variable) == 0x000039, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_bool_Variable_1) == 0x00003A, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_byte_Variable_1) == 0x00003B, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_bool_Variable_2) == 0x00003C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, Temp_bool_Variable_3) == 0x00003D, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetPlayerPawn_ReturnValue) == 0x000040, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_Value) == 0x000048, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_ReturnValue) == 0x000070, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000078, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000088, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_AsHera_Property_Int) == 0x000090, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_AsHera_Property_Int' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_bSuccess_1) == 0x000098, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_Value_1) == 0x0000A0, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_ReturnValue_1) == 0x0000A8, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetProperty_ReturnValue) == 0x0000AC, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_Value_2) == 0x0000B0, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_ReturnValue_2) == 0x0000D8, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x0000E0, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000E8, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game_1) == 0x0000F0, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_bSuccess_2) == 0x0000F8, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_AsHera_Property_Int_1) == 0x000100, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_AsHera_Property_Int_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_DynamicCast_bSuccess_3) == 0x000108, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_GetProperty_ReturnValue_1) == 0x00010C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_Value_3) == 0x000110, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Map_Find_ReturnValue_3) == 0x000118, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_MakeLiteralInt_ReturnValue_1) == 0x00011C, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_MakeLiteralInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, CallFunc_Less_IntInt_ReturnValue_1) == 0x000120, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_Event_InAutomata) == 0x000128, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_Event_InState) == 0x000130, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_Select_Default) == 0x000138, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs, K2Node_Select_Default_1) == 0x000139, "Member 'SaveAndRestoreElixirs_C_ExecuteUbergraph_SaveAndRestoreElixirs::K2Node_Select_Default_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SaveAndRestoreElixirs_C_ReceiveExecute \ +static_assert(alignof(SaveAndRestoreElixirs_C_ReceiveExecute) == 0x000008, "Wrong alignment on SaveAndRestoreElixirs_C_ReceiveExecute"); \ +static_assert(sizeof(SaveAndRestoreElixirs_C_ReceiveExecute) == 0x000010, "Wrong size on SaveAndRestoreElixirs_C_ReceiveExecute"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SaveAndRestoreElixirs_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SaveAndRestoreElixirs_C_ReceiveExecute, InState) == 0x000008, "Member 'SaveAndRestoreElixirs_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USaveAndRestoreElixirs_C \ +static_assert(alignof(USaveAndRestoreElixirs_C) == 0x000008, "Wrong alignment on USaveAndRestoreElixirs_C"); \ +static_assert(sizeof(USaveAndRestoreElixirs_C) == 0x0000F0, "Wrong size on USaveAndRestoreElixirs_C"); \ +static_assert(offsetof(USaveAndRestoreElixirs_C, UberGraphFrame) == 0x000088, "Member 'USaveAndRestoreElixirs_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USaveAndRestoreElixirs_C, ElixirType) == 0x000090, "Member 'USaveAndRestoreElixirs_C::ElixirType' has a wrong offset!"); \ +static_assert(offsetof(USaveAndRestoreElixirs_C, StoredElixirMap) == 0x000098, "Member 'USaveAndRestoreElixirs_C::StoredElixirMap' has a wrong offset!"); \ +static_assert(offsetof(USaveAndRestoreElixirs_C, NumOfElixirsToSet) == 0x0000E8, "Member 'USaveAndRestoreElixirs_C::NumOfElixirsToSet' has a wrong offset!"); \ +static_assert(offsetof(USaveAndRestoreElixirs_C, Action) == 0x0000EC, "Member 'USaveAndRestoreElixirs_C::Action' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs \ +static_assert(alignof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs) == 0x000008, "Wrong alignment on RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs"); \ +static_assert(sizeof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs) == 0x000038, "Wrong size on RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, EntryPoint) == 0x000000, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, Temp_int_Variable) == 0x000004, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000008, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, K2Node_Event_InAutomata) == 0x000010, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, K2Node_Event_InState) == 0x000018, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game) == 0x000028, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::K2Node_DynamicCast_AsBP_Wrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs, CallFunc_UpdateConsumable_ReturnValue) == 0x000031, "Member 'RemoveAllFabiensElixirs_C_ExecuteUbergraph_RemoveAllFabiensElixirs::CallFunc_UpdateConsumable_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RemoveAllFabiensElixirs_C_ReceiveExecute \ +static_assert(alignof(RemoveAllFabiensElixirs_C_ReceiveExecute) == 0x000008, "Wrong alignment on RemoveAllFabiensElixirs_C_ReceiveExecute"); \ +static_assert(sizeof(RemoveAllFabiensElixirs_C_ReceiveExecute) == 0x000010, "Wrong size on RemoveAllFabiensElixirs_C_ReceiveExecute"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'RemoveAllFabiensElixirs_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RemoveAllFabiensElixirs_C_ReceiveExecute, InState) == 0x000008, "Member 'RemoveAllFabiensElixirs_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URemoveAllFabiensElixirs_C \ +static_assert(alignof(URemoveAllFabiensElixirs_C) == 0x000008, "Wrong alignment on URemoveAllFabiensElixirs_C"); \ +static_assert(sizeof(URemoveAllFabiensElixirs_C) == 0x000090, "Wrong size on URemoveAllFabiensElixirs_C"); \ +static_assert(offsetof(URemoveAllFabiensElixirs_C, UberGraphFrame) == 0x000088, "Member 'URemoveAllFabiensElixirs_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_RPGMenuContainer_C_GetCurrentActiveTab \ +static_assert(alignof(WBP_RPGMenuContainer_C_GetCurrentActiveTab) == 0x000008, "Wrong alignment on WBP_RPGMenuContainer_C_GetCurrentActiveTab"); \ +static_assert(sizeof(WBP_RPGMenuContainer_C_GetCurrentActiveTab) == 0x000010, "Wrong size on WBP_RPGMenuContainer_C_GetCurrentActiveTab"); \ +static_assert(offsetof(WBP_RPGMenuContainer_C_GetCurrentActiveTab, ActiveTab) == 0x000000, "Member 'WBP_RPGMenuContainer_C_GetCurrentActiveTab::ActiveTab' has a wrong offset!"); \ +static_assert(offsetof(WBP_RPGMenuContainer_C_GetCurrentActiveTab, CallFunc_GetActiveWidget_ReturnValue) == 0x000008, "Member 'WBP_RPGMenuContainer_C_GetCurrentActiveTab::CallFunc_GetActiveWidget_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_RPGMenuContainer_C \ +static_assert(alignof(UWBP_RPGMenuContainer_C) == 0x000008, "Wrong alignment on UWBP_RPGMenuContainer_C"); \ +static_assert(sizeof(UWBP_RPGMenuContainer_C) == 0x000320, "Wrong size on UWBP_RPGMenuContainer_C"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_BndEvt__BP_ReactiveCrosshairStandalone_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone) == 0x000080, "Wrong size on BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, EntryPoint) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, Temp_bool_True_if_break_was_hit_Variable) == 0x000004, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Not_PreBool_ReturnValue) == 0x00000C, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, K2Node_ComponentBoundEvent_InItemState) == 0x000018, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, K2Node_Event_InItemState) == 0x000019, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_GetAllActorsOfClass_OutActors) == 0x000020, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Less_IntInt_ReturnValue) == 0x00003C, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_BooleanAND_ReturnValue) == 0x00003D, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_GetDistanceTo_ReturnValue) == 0x000040, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_GetDistanceTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue) == 0x000048, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Conv_ObjectToSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000070, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_Array_Contains_ReturnValue) == 0x000071, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, K2Node_SwitchEnum_CmpSuccess) == 0x000072, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000078, "Member 'BP_ReactiveCrosshairStandalone_C_ExecuteUbergraph_BP_ReactiveCrosshairStandalone::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_GetDebugString \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_GetDebugString) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_GetDebugString"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_GetDebugString) == 0x000010, "Wrong size on BP_ReactiveCrosshairStandalone_C_GetDebugString"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_GetItemState \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_GetItemState) == 0x000001, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_GetItemState"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_GetItemState) == 0x000001, "Wrong size on BP_ReactiveCrosshairStandalone_C_GetItemState"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_SetItemState \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_SetItemState) == 0x000001, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_SetItemState"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_SetItemState) == 0x000001, "Wrong size on BP_ReactiveCrosshairStandalone_C_SetItemState"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_SetItemState, InItemState) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent \ +static_assert(alignof(BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent) == 0x000008, "Wrong alignment on BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent"); \ +static_assert(sizeof(BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent) == 0x000008, "Wrong size on BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent"); \ +static_assert(offsetof(BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent, ReturnValue) == 0x000000, "Member 'BP_ReactiveCrosshairStandalone_C_GetCrosshairReactComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ReactiveCrosshairStandalone_C \ +static_assert(alignof(ABP_ReactiveCrosshairStandalone_C) == 0x000008, "Wrong alignment on ABP_ReactiveCrosshairStandalone_C"); \ +static_assert(sizeof(ABP_ReactiveCrosshairStandalone_C) == 0x0002D0, "Wrong size on ABP_ReactiveCrosshairStandalone_C"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, UberGraphFrame) == 0x000298, "Member 'ABP_ReactiveCrosshairStandalone_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, WrestlerPersistenceComponentItemState) == 0x0002A0, "Member 'ABP_ReactiveCrosshairStandalone_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, WrestlerCrosshairReact) == 0x0002A8, "Member 'ABP_ReactiveCrosshairStandalone_C::WrestlerCrosshairReact' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, ReactiveCrosshairOverride) == 0x0002B0, "Member 'ABP_ReactiveCrosshairStandalone_C::ReactiveCrosshairOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, Cube) == 0x0002B8, "Member 'ABP_ReactiveCrosshairStandalone_C::Cube' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, DefaultSceneRoot) == 0x0002C0, "Member 'ABP_ReactiveCrosshairStandalone_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_ReactiveCrosshairStandalone_C, ItemState) == 0x0002C8, "Member 'ABP_ReactiveCrosshairStandalone_C::ItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask \ +static_assert(alignof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask) == 0x000008, "Wrong alignment on ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask"); \ +static_assert(sizeof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask) == 0x0000A0, "Wrong size on ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, EntryPoint) == 0x000000, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_Event_InAutomata) == 0x000010, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_Event_InState) == 0x000018, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_Array_Get_Item) == 0x000028, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_Less_IntInt_ReturnValue) == 0x000050, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000058, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_AsBP_Reactive_Crosshair_Standalone) == 0x000060, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_AsBP_Reactive_Crosshair_Standalone' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_AsWrestler_Item_State_Interface) == 0x000070, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_AsWrestler_Item_State_Interface' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_AsWrestler_Item_State_Interface_1) == 0x000088, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_AsWrestler_Item_State_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask, K2Node_DynamicCast_bSuccess_2) == 0x000098, "Member 'ReactiveCrosshairStandaloneTask_C_ExecuteUbergraph_ReactiveCrosshairStandaloneTask::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReactiveCrosshairStandaloneTask_C_ReceiveExecute \ +static_assert(alignof(ReactiveCrosshairStandaloneTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on ReactiveCrosshairStandaloneTask_C_ReceiveExecute"); \ +static_assert(sizeof(ReactiveCrosshairStandaloneTask_C_ReceiveExecute) == 0x000010, "Wrong size on ReactiveCrosshairStandaloneTask_C_ReceiveExecute"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ReactiveCrosshairStandaloneTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReactiveCrosshairStandaloneTask_C_ReceiveExecute, InState) == 0x000008, "Member 'ReactiveCrosshairStandaloneTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReactiveCrosshairStandaloneTask_C \ +static_assert(alignof(UReactiveCrosshairStandaloneTask_C) == 0x000008, "Wrong alignment on UReactiveCrosshairStandaloneTask_C"); \ +static_assert(sizeof(UReactiveCrosshairStandaloneTask_C) == 0x0000A8, "Wrong size on UReactiveCrosshairStandaloneTask_C"); \ +static_assert(offsetof(UReactiveCrosshairStandaloneTask_C, UberGraphFrame) == 0x000088, "Member 'UReactiveCrosshairStandaloneTask_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairStandaloneTask_C, Standalone_Crosshairs) == 0x000090, "Member 'UReactiveCrosshairStandaloneTask_C::Standalone_Crosshairs' has a wrong offset!"); \ +static_assert(offsetof(UReactiveCrosshairStandaloneTask_C, ShouldReact) == 0x0000A0, "Member 'UReactiveCrosshairStandaloneTask_C::ShouldReact' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_C \ +static_assert(alignof(ABP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_C) == 0x000008, "Wrong alignment on ABP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_C"); \ +static_assert(sizeof(ABP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_C) == 0x000310, "Wrong size on ABP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_C"); \ + +#define DUMPER7_ASSERTS_WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen \ +static_assert(alignof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen) == 0x000008, "Wrong alignment on WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen"); \ +static_assert(sizeof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen) == 0x000030, "Wrong size on WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, EntryPoint) == 0x000000, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, CallFunc_GetHUDWidget_ReturnValue) == 0x000010, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, K2Node_DynamicCast_AsWBP_Main_HUD_VS) == 0x000018, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::K2Node_DynamicCast_AsWBP_Main_HUD_VS' has a wrong offset!"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen, CallFunc_PlayAnimation_ReturnValue) == 0x000028, "Member 'WBP_MissionFailedScreen_C_ExecuteUbergraph_WBP_MissionFailedScreen::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MissionFailedScreen_C \ +static_assert(alignof(UWBP_MissionFailedScreen_C) == 0x000008, "Wrong alignment on UWBP_MissionFailedScreen_C"); \ +static_assert(sizeof(UWBP_MissionFailedScreen_C) == 0x0002F8, "Wrong size on UWBP_MissionFailedScreen_C"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_MissionFailedScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, IntroAnim) == 0x0002D0, "Member 'UWBP_MissionFailedScreen_C::IntroAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, Background) == 0x0002D8, "Member 'UWBP_MissionFailedScreen_C::Background' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, Content) == 0x0002E0, "Member 'UWBP_MissionFailedScreen_C::Content' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, SubText) == 0x0002E8, "Member 'UWBP_MissionFailedScreen_C::SubText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MissionFailedScreen_C, TitleText) == 0x0002F0, "Member 'UWBP_MissionFailedScreen_C::TitleText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed \ +static_assert(alignof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed) == 0x000008, "Wrong alignment on ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed"); \ +static_assert(sizeof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed) == 0x000020, "Wrong size on ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed"); \ +static_assert(offsetof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed, EntryPoint) == 0x000000, "Member 'ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed, K2Node_Event_InAutomata) == 0x000008, "Member 'ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed, K2Node_Event_InState) == 0x000010, "Member 'ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed, CallFunc_Delay_Duration_ImplicitCast) == 0x000018, "Member 'ShowMissionFailed_C_ExecuteUbergraph_ShowMissionFailed::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowMissionFailed_C_ReceiveExecute \ +static_assert(alignof(ShowMissionFailed_C_ReceiveExecute) == 0x000008, "Wrong alignment on ShowMissionFailed_C_ReceiveExecute"); \ +static_assert(sizeof(ShowMissionFailed_C_ReceiveExecute) == 0x000010, "Wrong size on ShowMissionFailed_C_ReceiveExecute"); \ +static_assert(offsetof(ShowMissionFailed_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ShowMissionFailed_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_ReceiveExecute, InState) == 0x000008, "Member 'ShowMissionFailed_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowMissionFailed_C_SetText \ +static_assert(alignof(ShowMissionFailed_C_SetText) == 0x000008, "Wrong alignment on ShowMissionFailed_C_SetText"); \ +static_assert(sizeof(ShowMissionFailed_C_SetText) == 0x000020, "Wrong size on ShowMissionFailed_C_SetText"); \ +static_assert(offsetof(ShowMissionFailed_C_SetText, self2) == 0x000000, "Member 'ShowMissionFailed_C_SetText::self2' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetText, CallFunc_Conv_TextToString_ReturnValue) == 0x000008, "Member 'ShowMissionFailed_C_SetText::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetText, CallFunc_Contains_ReturnValue) == 0x000018, "Member 'ShowMissionFailed_C_SetText::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetText, CallFunc_Contains_ReturnValue_1) == 0x000019, "Member 'ShowMissionFailed_C_SetText::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetText, CallFunc_Contains_ReturnValue_2) == 0x00001A, "Member 'ShowMissionFailed_C_SetText::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowMissionFailed_C_SetTitle \ +static_assert(alignof(ShowMissionFailed_C_SetTitle) == 0x000008, "Wrong alignment on ShowMissionFailed_C_SetTitle"); \ +static_assert(sizeof(ShowMissionFailed_C_SetTitle) == 0x000020, "Wrong size on ShowMissionFailed_C_SetTitle"); \ +static_assert(offsetof(ShowMissionFailed_C_SetTitle, self2) == 0x000000, "Member 'ShowMissionFailed_C_SetTitle::self2' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetTitle, CallFunc_Conv_TextToString_ReturnValue) == 0x000008, "Member 'ShowMissionFailed_C_SetTitle::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_SetTitle, CallFunc_Contains_ReturnValue) == 0x000018, "Member 'ShowMissionFailed_C_SetTitle::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ShowMissionFailed_C_Update_Widget_Slot \ +static_assert(alignof(ShowMissionFailed_C_Update_Widget_Slot) == 0x000008, "Wrong alignment on ShowMissionFailed_C_Update_Widget_Slot"); \ +static_assert(sizeof(ShowMissionFailed_C_Update_Widget_Slot) == 0x000038, "Wrong size on ShowMissionFailed_C_Update_Widget_Slot"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, Show) == 0x000000, "Member 'ShowMissionFailed_C_Update_Widget_Slot::Show' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'ShowMissionFailed_C_Update_Widget_Slot::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, K2Node_DynamicCast_AsHera_HUD) == 0x000010, "Member 'ShowMissionFailed_C_Update_Widget_Slot::K2Node_DynamicCast_AsHera_HUD' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'ShowMissionFailed_C_Update_Widget_Slot::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, CallFunc_GetSlotWidget_ReturnValue) == 0x000020, "Member 'ShowMissionFailed_C_Update_Widget_Slot::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, K2Node_DynamicCast_AsWBP_Mission_Failed_Screen) == 0x000028, "Member 'ShowMissionFailed_C_Update_Widget_Slot::K2Node_DynamicCast_AsWBP_Mission_Failed_Screen' has a wrong offset!"); \ +static_assert(offsetof(ShowMissionFailed_C_Update_Widget_Slot, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'ShowMissionFailed_C_Update_Widget_Slot::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UShowMissionFailed_C \ +static_assert(alignof(UShowMissionFailed_C) == 0x000008, "Wrong alignment on UShowMissionFailed_C"); \ +static_assert(sizeof(UShowMissionFailed_C) == 0x0000C8, "Wrong size on UShowMissionFailed_C"); \ +static_assert(offsetof(UShowMissionFailed_C, UberGraphFrame) == 0x000088, "Member 'UShowMissionFailed_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UShowMissionFailed_C, TitleText) == 0x000090, "Member 'UShowMissionFailed_C::TitleText' has a wrong offset!"); \ +static_assert(offsetof(UShowMissionFailed_C, Text) == 0x0000A8, "Member 'UShowMissionFailed_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UShowMissionFailed_C, Time) == 0x0000C0, "Member 'UShowMissionFailed_C::Time' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerHUDInGame_C_ApplyDamageHud \ +static_assert(alignof(BP_WrestlerHUDInGame_C_ApplyDamageHud) == 0x000008, "Wrong alignment on BP_WrestlerHUDInGame_C_ApplyDamageHud"); \ +static_assert(sizeof(BP_WrestlerHUDInGame_C_ApplyDamageHud) == 0x000030, "Wrong size on BP_WrestlerHUDInGame_C_ApplyDamageHud"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ApplyDamageHud, Instigator_0) == 0x000000, "Member 'BP_WrestlerHUDInGame_C_ApplyDamageHud::Instigator_0' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ApplyDamageHud, Damage) == 0x000008, "Member 'BP_WrestlerHUDInGame_C_ApplyDamageHud::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ApplyDamageHud, Direction) == 0x000010, "Member 'BP_WrestlerHUDInGame_C_ApplyDamageHud::Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ApplyDamageHud, Tag) == 0x000028, "Member 'BP_WrestlerHUDInGame_C_ApplyDamageHud::Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget \ +static_assert(alignof(BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong alignment on BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget"); \ +static_assert(sizeof(BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget) == 0x000008, "Wrong size on BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget, Enemy) == 0x000000, "Member 'BP_WrestlerHUDInGame_C_AssignEnemyAwernessWidget::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame \ +static_assert(alignof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame) == 0x000008, "Wrong alignment on BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame"); \ +static_assert(sizeof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame) == 0x0000C0, "Wrong size on BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, EntryPoint) == 0x000000, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetGameMode_ReturnValue) == 0x000008, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000010, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000020, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetHUDWidget_ReturnValue) == 0x000028, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_AsBPI_Hud_Actions) == 0x000030, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_AsBPI_Hud_Actions' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetObjectiveTimerFailed_ReturnValue) == 0x000041, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetObjectiveTimerFailed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_Event_Instigator) == 0x000048, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_Event_Instigator' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_Event_Damage) == 0x000050, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_Event_Direction) == 0x000058, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_Event_Direction' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_Event_Tag) == 0x000070, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_Event_Tag' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_Event_Enemy) == 0x000078, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_Event_Enemy' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetHUDWidget_ReturnValue_1) == 0x000080, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetHUDWidget_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_AsBPI_Hud_Updated_Enemy_Awerness) == 0x000088, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_AsBPI_Hud_Updated_Enemy_Awerness' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_bSuccess_2) == 0x000098, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_GetSlotWidget_ReturnValue) == 0x0000A8, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_GetSlotWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_AsWBP_Mission_Failed_Screen) == 0x0000B0, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_AsWBP_Mission_Failed_Screen' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, K2Node_DynamicCast_bSuccess_3) == 0x0000B8, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame, CallFunc_Delay_Duration_ImplicitCast) == 0x0000BC, "Member 'BP_WrestlerHUDInGame_C_ExecuteUbergraph_BP_WrestlerHUDInGame::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerHUDInGame_C \ +static_assert(alignof(ABP_WrestlerHUDInGame_C) == 0x000008, "Wrong alignment on ABP_WrestlerHUDInGame_C"); \ +static_assert(sizeof(ABP_WrestlerHUDInGame_C) == 0x000480, "Wrong size on ABP_WrestlerHUDInGame_C"); \ +static_assert(offsetof(ABP_WrestlerHUDInGame_C, UberGraphFrame) == 0x000460, "Member 'ABP_WrestlerHUDInGame_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerHUDInGame_C, DefaultSceneRoot) == 0x000468, "Member 'ABP_WrestlerHUDInGame_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerHUDInGame_C, MasqueradeDeadScreenDuration) == 0x000470, "Member 'ABP_WrestlerHUDInGame_C::MasqueradeDeadScreenDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerHUDInGame_C, In_Slot_Name_ID) == 0x000478, "Member 'ABP_WrestlerHUDInGame_C::In_Slot_Name_ID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RewardElixir_C_ExecuteUbergraph_RewardElixir \ +static_assert(alignof(RewardElixir_C_ExecuteUbergraph_RewardElixir) == 0x000008, "Wrong alignment on RewardElixir_C_ExecuteUbergraph_RewardElixir"); \ +static_assert(sizeof(RewardElixir_C_ExecuteUbergraph_RewardElixir) == 0x000030, "Wrong size on RewardElixir_C_ExecuteUbergraph_RewardElixir"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, EntryPoint) == 0x000000, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, K2Node_Event_InAutomata) == 0x000010, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, K2Node_Event_InState) == 0x000018, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, K2Node_DynamicCast_AsBP_Elixir) == 0x000020, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::K2Node_DynamicCast_AsBP_Elixir' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ExecuteUbergraph_RewardElixir, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'RewardElixir_C_ExecuteUbergraph_RewardElixir::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_RewardElixir_C_ReceiveExecute \ +static_assert(alignof(RewardElixir_C_ReceiveExecute) == 0x000008, "Wrong alignment on RewardElixir_C_ReceiveExecute"); \ +static_assert(sizeof(RewardElixir_C_ReceiveExecute) == 0x000010, "Wrong size on RewardElixir_C_ReceiveExecute"); \ +static_assert(offsetof(RewardElixir_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'RewardElixir_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(RewardElixir_C_ReceiveExecute, InState) == 0x000008, "Member 'RewardElixir_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_URewardElixir_C \ +static_assert(alignof(URewardElixir_C) == 0x000008, "Wrong alignment on URewardElixir_C"); \ +static_assert(sizeof(URewardElixir_C) == 0x0000B8, "Wrong size on URewardElixir_C"); \ +static_assert(offsetof(URewardElixir_C, UberGraphFrame) == 0x000088, "Member 'URewardElixir_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(URewardElixir_C, Elixir) == 0x000090, "Member 'URewardElixir_C::Elixir' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage \ +static_assert(alignof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage) == 0x000008, "Wrong alignment on TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage"); \ +static_assert(sizeof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage) == 0x000050, "Wrong size on TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, EntryPoint) == 0x000000, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, Temp_int_Array_Index_Variable) == 0x000004, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, K2Node_Event_InAutomata) == 0x000010, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, K2Node_Event_InState) == 0x000018, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_GetActorOfClass_ReturnValue) == 0x000020, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_GetActorOfClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000030, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000038, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage, CallFunc_Less_IntInt_ReturnValue) == 0x00004C, "Member 'TriggerYsabella_On_Stage_C_ExecuteUbergraph_TriggerYsabella_On_Stage::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerYsabella_On_Stage_C_ReceiveExecute \ +static_assert(alignof(TriggerYsabella_On_Stage_C_ReceiveExecute) == 0x000008, "Wrong alignment on TriggerYsabella_On_Stage_C_ReceiveExecute"); \ +static_assert(sizeof(TriggerYsabella_On_Stage_C_ReceiveExecute) == 0x000010, "Wrong size on TriggerYsabella_On_Stage_C_ReceiveExecute"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TriggerYsabella_On_Stage_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerYsabella_On_Stage_C_ReceiveExecute, InState) == 0x000008, "Member 'TriggerYsabella_On_Stage_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTriggerYsabella_On_Stage_C \ +static_assert(alignof(UTriggerYsabella_On_Stage_C) == 0x000008, "Wrong alignment on UTriggerYsabella_On_Stage_C"); \ +static_assert(sizeof(UTriggerYsabella_On_Stage_C) == 0x000098, "Wrong size on UTriggerYsabella_On_Stage_C"); \ +static_assert(offsetof(UTriggerYsabella_On_Stage_C, UberGraphFrame) == 0x000088, "Member 'UTriggerYsabella_On_Stage_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTriggerYsabella_On_Stage_C, In_Tag) == 0x000090, "Member 'UTriggerYsabella_On_Stage_C::In_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerGameModeInGame_C \ +static_assert(alignof(ABP_WrestlerGameModeInGame_C) == 0x000008, "Wrong alignment on ABP_WrestlerGameModeInGame_C"); \ +static_assert(sizeof(ABP_WrestlerGameModeInGame_C) == 0x000418, "Wrong size on ABP_WrestlerGameModeInGame_C"); \ +static_assert(offsetof(ABP_WrestlerGameModeInGame_C, DefaultSceneRoot) == 0x000410, "Member 'ABP_WrestlerGameModeInGame_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse \ +static_assert(alignof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse) == 0x000008, "Wrong alignment on BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse"); \ +static_assert(sizeof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse) == 0x0000A0, "Wrong size on BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, EntryPoint) == 0x000000, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_int_Variable) == 0x000010, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_bool_Variable) == 0x000014, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_bool_Variable_1) == 0x000015, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_BooleanAND_ReturnValue) == 0x000016, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, Temp_int_Variable_1) == 0x000018, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x000030, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Less_IntInt_ReturnValue) == 0x000041, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000042, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1) == 0x000048, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Add_IntInt_ReturnValue_1) == 0x00005C, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000060, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_GetPlayerController_ReturnValue) == 0x000068, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000070, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000078, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_HasAnyMatchingGameplayTags_ReturnValue) == 0x000098, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_HasAnyMatchingGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse, CallFunc_Add_IntInt_ReturnValue_2) == 0x00009C, "Member 'BP_Explosion_bloodcurse_C_ExecuteUbergraph_BP_Explosion_bloodcurse::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Explosion_bloodcurse_C \ +static_assert(alignof(ABP_Explosion_bloodcurse_C) == 0x000008, "Wrong alignment on ABP_Explosion_bloodcurse_C"); \ +static_assert(sizeof(ABP_Explosion_bloodcurse_C) == 0x000430, "Wrong size on ABP_Explosion_bloodcurse_C"); \ +static_assert(offsetof(ABP_Explosion_bloodcurse_C, UberGraphFrame_BP_Explosion_bloodcurse_C) == 0x000420, "Member 'ABP_Explosion_bloodcurse_C::UberGraphFrame_BP_Explosion_bloodcurse_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_bloodcurse_C, TriggeredBySalvo) == 0x000428, "Member 'ABP_Explosion_bloodcurse_C::TriggeredBySalvo' has a wrong offset!"); \ +static_assert(offsetof(ABP_Explosion_bloodcurse_C, Killcount) == 0x00042C, "Member 'ABP_Explosion_bloodcurse_C::Killcount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDM_Misty_C \ +static_assert(alignof(UPD_STS_MDM_Misty_C) == 0x000008, "Wrong alignment on UPD_STS_MDM_Misty_C"); \ +static_assert(sizeof(UPD_STS_MDM_Misty_C) == 0x000058, "Wrong size on UPD_STS_MDM_Misty_C"); \ + +#define DUMPER7_ASSERTS_PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence \ +static_assert(alignof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence) == 0x000008, "Wrong alignment on PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence"); \ +static_assert(sizeof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence) == 0x000050, "Wrong size on PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, EntryPoint) == 0x000000, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, Temp_int_Array_Index_Variable) == 0x000004, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, K2Node_Event_InAutomata) == 0x000010, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, K2Node_Event_InState) == 0x000018, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000028, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_Array_Get_Item) == 0x000040, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'PauseEnemySequence_C_ExecuteUbergraph_PauseEnemySequence::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PauseEnemySequence_C_ReceiveExecute \ +static_assert(alignof(PauseEnemySequence_C_ReceiveExecute) == 0x000008, "Wrong alignment on PauseEnemySequence_C_ReceiveExecute"); \ +static_assert(sizeof(PauseEnemySequence_C_ReceiveExecute) == 0x000010, "Wrong size on PauseEnemySequence_C_ReceiveExecute"); \ +static_assert(offsetof(PauseEnemySequence_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'PauseEnemySequence_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PauseEnemySequence_C_ReceiveExecute, InState) == 0x000008, "Member 'PauseEnemySequence_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPauseEnemySequence_C \ +static_assert(alignof(UPauseEnemySequence_C) == 0x000008, "Wrong alignment on UPauseEnemySequence_C"); \ +static_assert(sizeof(UPauseEnemySequence_C) == 0x000098, "Wrong size on UPauseEnemySequence_C"); \ +static_assert(offsetof(UPauseEnemySequence_C, UberGraphFrame) == 0x000088, "Member 'UPauseEnemySequence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UPauseEnemySequence_C, EnemyTag) == 0x000090, "Member 'UPauseEnemySequence_C::EnemyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_Traversal_LedgeHang_C \ +static_assert(alignof(ATA_Traversal_LedgeHang_C) == 0x000010, "Wrong alignment on ATA_Traversal_LedgeHang_C"); \ +static_assert(sizeof(ATA_Traversal_LedgeHang_C) == 0x000440, "Wrong size on ATA_Traversal_LedgeHang_C"); \ +static_assert(offsetof(ATA_Traversal_LedgeHang_C, DefaultSceneRoot) == 0x000430, "Member 'ATA_Traversal_LedgeHang_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask \ +static_assert(alignof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask) == 0x000008, "Wrong alignment on NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask"); \ +static_assert(sizeof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask) == 0x000020, "Wrong size on NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask, EntryPoint) == 0x000000, "Member 'NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask, K2Node_Event_InAutomata) == 0x000008, "Member 'NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask, K2Node_Event_InState) == 0x000010, "Member 'NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'NewQuestNotificationTask_C_ExecuteUbergraph_NewQuestNotificationTask::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_NewQuestNotificationTask_C_ReceiveExecute \ +static_assert(alignof(NewQuestNotificationTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on NewQuestNotificationTask_C_ReceiveExecute"); \ +static_assert(sizeof(NewQuestNotificationTask_C_ReceiveExecute) == 0x000010, "Wrong size on NewQuestNotificationTask_C_ReceiveExecute"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'NewQuestNotificationTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(NewQuestNotificationTask_C_ReceiveExecute, InState) == 0x000008, "Member 'NewQuestNotificationTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNewQuestNotificationTask_C \ +static_assert(alignof(UNewQuestNotificationTask_C) == 0x000008, "Wrong alignment on UNewQuestNotificationTask_C"); \ +static_assert(sizeof(UNewQuestNotificationTask_C) == 0x0000E8, "Wrong size on UNewQuestNotificationTask_C"); \ +static_assert(offsetof(UNewQuestNotificationTask_C, UberGraphFrame) == 0x000088, "Member 'UNewQuestNotificationTask_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UNewQuestNotificationTask_C, NotificationData) == 0x000090, "Member 'UNewQuestNotificationTask_C::NotificationData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Bool_Set_C_ExecuteUbergraph_Bool_Set \ +static_assert(alignof(Bool_Set_C_ExecuteUbergraph_Bool_Set) == 0x000008, "Wrong alignment on Bool_Set_C_ExecuteUbergraph_Bool_Set"); \ +static_assert(sizeof(Bool_Set_C_ExecuteUbergraph_Bool_Set) == 0x000018, "Wrong size on Bool_Set_C_ExecuteUbergraph_Bool_Set"); \ +static_assert(offsetof(Bool_Set_C_ExecuteUbergraph_Bool_Set, EntryPoint) == 0x000000, "Member 'Bool_Set_C_ExecuteUbergraph_Bool_Set::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Bool_Set_C_ExecuteUbergraph_Bool_Set, K2Node_Event_InAutomata) == 0x000008, "Member 'Bool_Set_C_ExecuteUbergraph_Bool_Set::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Bool_Set_C_ExecuteUbergraph_Bool_Set, K2Node_Event_InState) == 0x000010, "Member 'Bool_Set_C_ExecuteUbergraph_Bool_Set::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Bool_Set_C_ReceiveExecute \ +static_assert(alignof(Bool_Set_C_ReceiveExecute) == 0x000008, "Wrong alignment on Bool_Set_C_ReceiveExecute"); \ +static_assert(sizeof(Bool_Set_C_ReceiveExecute) == 0x000010, "Wrong size on Bool_Set_C_ReceiveExecute"); \ +static_assert(offsetof(Bool_Set_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Bool_Set_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Bool_Set_C_ReceiveExecute, InState) == 0x000008, "Member 'Bool_Set_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBool_Set_C \ +static_assert(alignof(UBool_Set_C) == 0x000008, "Wrong alignment on UBool_Set_C"); \ +static_assert(sizeof(UBool_Set_C) == 0x0000A0, "Wrong size on UBool_Set_C"); \ +static_assert(offsetof(UBool_Set_C, UberGraphFrame) == 0x000088, "Member 'UBool_Set_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBool_Set_C, Boolean) == 0x000090, "Member 'UBool_Set_C::Boolean' has a wrong offset!"); \ +static_assert(offsetof(UBool_Set_C, Value) == 0x000098, "Member 'UBool_Set_C::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set \ +static_assert(alignof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set) == 0x000008, "Wrong alignment on DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set"); \ +static_assert(sizeof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set) == 0x000038, "Wrong size on DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, EntryPoint) == 0x000000, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000008, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, K2Node_Event_InAutomata) == 0x000010, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, K2Node_Event_InState) == 0x000018, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000020, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000028, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'DialogRig_Set_C_ExecuteUbergraph_DialogRig_Set::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DialogRig_Set_C_ReceiveExecute \ +static_assert(alignof(DialogRig_Set_C_ReceiveExecute) == 0x000008, "Wrong alignment on DialogRig_Set_C_ReceiveExecute"); \ +static_assert(sizeof(DialogRig_Set_C_ReceiveExecute) == 0x000010, "Wrong size on DialogRig_Set_C_ReceiveExecute"); \ +static_assert(offsetof(DialogRig_Set_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DialogRig_Set_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DialogRig_Set_C_ReceiveExecute, InState) == 0x000008, "Member 'DialogRig_Set_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDialogRig_Set_C \ +static_assert(alignof(UDialogRig_Set_C) == 0x000008, "Wrong alignment on UDialogRig_Set_C"); \ +static_assert(sizeof(UDialogRig_Set_C) == 0x0000B8, "Wrong size on UDialogRig_Set_C"); \ +static_assert(offsetof(UDialogRig_Set_C, UberGraphFrame) == 0x000088, "Member 'UDialogRig_Set_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UDialogRig_Set_C, TargetRig) == 0x000090, "Member 'UDialogRig_Set_C::TargetRig' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint \ +static_assert(alignof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint) == 0x000008, "Wrong alignment on ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint"); \ +static_assert(sizeof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint) == 0x000030, "Wrong size on ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint, EntryPoint) == 0x000000, "Member 'ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint, K2Node_Event_InAutomata) == 0x000008, "Member 'ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint, K2Node_Event_InState) == 0x000010, "Member 'ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000018, "Member 'ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint, CallFunc_GetLastLoadedSaveSlot_ReturnValue) == 0x000020, "Member 'ReloadLastCheckPoint_C_ExecuteUbergraph_ReloadLastCheckPoint::CallFunc_GetLastLoadedSaveSlot_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReloadLastCheckPoint_C_ReceiveExecute \ +static_assert(alignof(ReloadLastCheckPoint_C_ReceiveExecute) == 0x000008, "Wrong alignment on ReloadLastCheckPoint_C_ReceiveExecute"); \ +static_assert(sizeof(ReloadLastCheckPoint_C_ReceiveExecute) == 0x000010, "Wrong size on ReloadLastCheckPoint_C_ReceiveExecute"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ReloadLastCheckPoint_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReloadLastCheckPoint_C_ReceiveExecute, InState) == 0x000008, "Member 'ReloadLastCheckPoint_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReloadLastCheckPoint_C \ +static_assert(alignof(UReloadLastCheckPoint_C) == 0x000008, "Wrong alignment on UReloadLastCheckPoint_C"); \ +static_assert(sizeof(UReloadLastCheckPoint_C) == 0x000090, "Wrong size on UReloadLastCheckPoint_C"); \ +static_assert(offsetof(UReloadLastCheckPoint_C, UberGraphFrame) == 0x000088, "Member 'UReloadLastCheckPoint_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CheckForActorInVolume_C_ActorInVolume \ +static_assert(alignof(BP_CheckForActorInVolume_C_ActorInVolume) == 0x000008, "Wrong alignment on BP_CheckForActorInVolume_C_ActorInVolume"); \ +static_assert(sizeof(BP_CheckForActorInVolume_C_ActorInVolume) == 0x0000F0, "Wrong size on BP_CheckForActorInVolume_C_ActorInVolume"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, Actor) == 0x000000, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, Actor_Present_0) == 0x000008, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::Actor_Present_0' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_GetComponentBounds_Origin) == 0x000028, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_GetComponentBounds_BoxExtent) == 0x000040, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_GetComponentBounds_SphereRadius) == 0x000058, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_X) == 0x000060, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Y) == 0x000068, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Z) == 0x000070, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_X_1) == 0x000078, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Y_1) == 0x000080, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Z_1) == 0x000088, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_X_2) == 0x000090, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Y_2) == 0x000098, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BreakVector_Z_2) == 0x0000A0, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000B9, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000C0, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0000C8, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0000D0, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000D1, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0000D8, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0000E0, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x0000E8, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0000E9, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BooleanAND_ReturnValue) == 0x0000EA, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BooleanAND_ReturnValue_1) == 0x0000EB, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BooleanAND_ReturnValue_2) == 0x0000EC, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BooleanAND_ReturnValue_3) == 0x0000ED, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ActorInVolume, CallFunc_BooleanAND_ReturnValue_4) == 0x0000EE, "Member 'BP_CheckForActorInVolume_C_ActorInVolume::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume \ +static_assert(alignof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume) == 0x000008, "Wrong alignment on BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume"); \ +static_assert(sizeof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume) == 0x000060, "Wrong size on BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, EntryPoint) == 0x000000, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000010, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000018, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_Array_Get_Item) == 0x000028, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_ActorInVolume_Actor_Present) == 0x000030, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_ActorInVolume_Actor_Present' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_Array_Length_ReturnValue) == 0x000034, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_Array_Length_ReturnValue_1) == 0x00003C, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000040, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000048, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_ActorInVolume_Actor_Present_1) == 0x000049, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_ActorInVolume_Actor_Present_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000050, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume, CallFunc_GetWorldSubsystem_ReturnValue_2) == 0x000058, "Member 'BP_CheckForActorInVolume_C_ExecuteUbergraph_BP_CheckForActorInVolume::CallFunc_GetWorldSubsystem_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CheckForActorInVolume_C \ +static_assert(alignof(ABP_CheckForActorInVolume_C) == 0x000008, "Wrong alignment on ABP_CheckForActorInVolume_C"); \ +static_assert(sizeof(ABP_CheckForActorInVolume_C) == 0x0002D0, "Wrong size on ABP_CheckForActorInVolume_C"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, UberGraphFrame) == 0x000298, "Member 'ABP_CheckForActorInVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, Container) == 0x0002A0, "Member 'ABP_CheckForActorInVolume_C::Container' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, Billboard) == 0x0002A8, "Member 'ABP_CheckForActorInVolume_C::Billboard' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, EnemyTag) == 0x0002B0, "Member 'ABP_CheckForActorInVolume_C::EnemyTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, Check_For_Player) == 0x0002B8, "Member 'ABP_CheckForActorInVolume_C::Check_For_Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, Actor_Present) == 0x0002B9, "Member 'ABP_CheckForActorInVolume_C::Actor_Present' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, EnemyPresent) == 0x0002C0, "Member 'ABP_CheckForActorInVolume_C::EnemyPresent' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForActorInVolume_C, EnemyNotPresent) == 0x0002C8, "Member 'ABP_CheckForActorInVolume_C::EnemyNotPresent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_InputRichTextDecorator_C \ +static_assert(alignof(UBP_InputRichTextDecorator_C) == 0x000008, "Wrong alignment on UBP_InputRichTextDecorator_C"); \ +static_assert(sizeof(UBP_InputRichTextDecorator_C) == 0x000030, "Wrong size on UBP_InputRichTextDecorator_C"); \ + +#define DUMPER7_ASSERTS_CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume \ +static_assert(alignof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume) == 0x000008, "Wrong alignment on CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume"); \ +static_assert(sizeof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume) == 0x000070, "Wrong size on CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, EntryPoint) == 0x000000, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_Array_Length_ReturnValue) == 0x000008, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_Less_IntInt_ReturnValue) == 0x000010, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, Temp_int_Array_Index_Variable) == 0x000014, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_Array_Get_Item) == 0x000018, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000040, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, K2Node_DynamicCast_AsBP_Check_for_Actor_in_Volume) == 0x000048, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::K2Node_DynamicCast_AsBP_Check_for_Actor_in_Volume' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, K2Node_DynamicCast_bSuccess) == 0x000050, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, K2Node_Event_InAutomata) == 0x000058, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, K2Node_Event_InState) == 0x000060, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'CheckForActorsInVolume_C_ExecuteUbergraph_CheckForActorsInVolume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckForActorsInVolume_C_ReceiveExecute \ +static_assert(alignof(CheckForActorsInVolume_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckForActorsInVolume_C_ReceiveExecute"); \ +static_assert(sizeof(CheckForActorsInVolume_C_ReceiveExecute) == 0x000010, "Wrong size on CheckForActorsInVolume_C_ReceiveExecute"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckForActorsInVolume_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckForActorsInVolume_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckForActorsInVolume_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckForActorsInVolume_C \ +static_assert(alignof(UCheckForActorsInVolume_C) == 0x000008, "Wrong alignment on UCheckForActorsInVolume_C"); \ +static_assert(sizeof(UCheckForActorsInVolume_C) == 0x0000A0, "Wrong size on UCheckForActorsInVolume_C"); \ +static_assert(offsetof(UCheckForActorsInVolume_C, UberGraphFrame) == 0x000088, "Member 'UCheckForActorsInVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckForActorsInVolume_C, BP_CheckForActor) == 0x000090, "Member 'UCheckForActorsInVolume_C::BP_CheckForActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CheckForEnemyActors_C_ActorInsideBounds \ +static_assert(alignof(BP_CheckForEnemyActors_C_ActorInsideBounds) == 0x000008, "Wrong alignment on BP_CheckForEnemyActors_C_ActorInsideBounds"); \ +static_assert(sizeof(BP_CheckForEnemyActors_C_ActorInsideBounds) == 0x000008, "Wrong size on BP_CheckForEnemyActors_C_ActorInsideBounds"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ActorInsideBounds, Actor) == 0x000000, "Member 'BP_CheckForEnemyActors_C_ActorInsideBounds::Actor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors \ +static_assert(alignof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors) == 0x000008, "Wrong alignment on BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors"); \ +static_assert(sizeof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors) == 0x000028, "Wrong size on BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, EntryPoint) == 0x000000, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, K2Node_CustomEvent_actor) == 0x000010, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::K2Node_CustomEvent_actor' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000018, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors, CallFunc_InsideBounds_ReturnValue) == 0x000021, "Member 'BP_CheckForEnemyActors_C_ExecuteUbergraph_BP_CheckForEnemyActors::CallFunc_InsideBounds_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CheckForEnemyActors_C_InsideBounds \ +static_assert(alignof(BP_CheckForEnemyActors_C_InsideBounds) == 0x000008, "Wrong alignment on BP_CheckForEnemyActors_C_InsideBounds"); \ +static_assert(sizeof(BP_CheckForEnemyActors_C_InsideBounds) == 0x0000F0, "Wrong size on BP_CheckForEnemyActors_C_InsideBounds"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, Actor) == 0x000000, "Member 'BP_CheckForEnemyActors_C_InsideBounds::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, ReturnValue) == 0x000008, "Member 'BP_CheckForEnemyActors_C_InsideBounds::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_GetComponentBounds_Origin) == 0x000028, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_GetComponentBounds_Origin' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_GetComponentBounds_BoxExtent) == 0x000040, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_GetComponentBounds_BoxExtent' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_GetComponentBounds_SphereRadius) == 0x000058, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_GetComponentBounds_SphereRadius' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_X) == 0x000060, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Y) == 0x000068, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Z) == 0x000070, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_X_1) == 0x000078, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Y_1) == 0x000080, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Z_1) == 0x000088, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_X_2) == 0x000090, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_X_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Y_2) == 0x000098, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Y_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BreakVector_Z_2) == 0x0000A0, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BreakVector_Z_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Add_DoubleDouble_ReturnValue) == 0x0000A8, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000B0, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Less_DoubleDouble_ReturnValue) == 0x0000B8, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000B9, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0000C0, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0000C8, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Less_DoubleDouble_ReturnValue_1) == 0x0000D0, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Less_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x0000D1, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0000D8, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0000E0, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Less_DoubleDouble_ReturnValue_2) == 0x0000E8, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Less_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_Greater_DoubleDouble_ReturnValue_2) == 0x0000E9, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_Greater_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BooleanAND_ReturnValue) == 0x0000EA, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BooleanAND_ReturnValue_1) == 0x0000EB, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BooleanAND_ReturnValue_2) == 0x0000EC, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BooleanAND_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BooleanAND_ReturnValue_3) == 0x0000ED, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BooleanAND_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_CheckForEnemyActors_C_InsideBounds, CallFunc_BooleanAND_ReturnValue_4) == 0x0000EE, "Member 'BP_CheckForEnemyActors_C_InsideBounds::CallFunc_BooleanAND_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CheckForEnemyActors_C \ +static_assert(alignof(ABP_CheckForEnemyActors_C) == 0x000008, "Wrong alignment on ABP_CheckForEnemyActors_C"); \ +static_assert(sizeof(ABP_CheckForEnemyActors_C) == 0x0002B0, "Wrong size on ABP_CheckForEnemyActors_C"); \ +static_assert(offsetof(ABP_CheckForEnemyActors_C, UberGraphFrame) == 0x000298, "Member 'ABP_CheckForEnemyActors_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForEnemyActors_C, Container) == 0x0002A0, "Member 'ABP_CheckForEnemyActors_C::Container' has a wrong offset!"); \ +static_assert(offsetof(ABP_CheckForEnemyActors_C, Billboard) == 0x0002A8, "Member 'ABP_CheckForEnemyActors_C::Billboard' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume \ +static_assert(alignof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume) == 0x000008, "Wrong alignment on CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume"); \ +static_assert(sizeof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume) == 0x0000C0, "Wrong size on CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, EntryPoint) == 0x000000, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, Temp_int_Array_Index_Variable) == 0x000010, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, Temp_int_Array_Index_Variable_1) == 0x00001C, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, K2Node_Event_InAutomata) == 0x000020, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, K2Node_Event_InState) == 0x000028, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000030, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_GetPlayerPawn_ReturnValue) == 0x000038, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000040, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, Temp_int_Loop_Counter_Variable_1) == 0x000050, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Array_Get_Item) == 0x000058, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Add_IntInt_ReturnValue_1) == 0x000060, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Array_Length_ReturnValue_1) == 0x000068, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Less_IntInt_ReturnValue) == 0x00006C, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00006D, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Array_Length_ReturnValue_2) == 0x000098, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0000A0, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000A8, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, K2Node_DynamicCast_AsBP_Check_for_Enemy_Actors) == 0x0000B0, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::K2Node_DynamicCast_AsBP_Check_for_Enemy_Actors' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, K2Node_DynamicCast_bSuccess) == 0x0000B8, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume, CallFunc_IsValid_ReturnValue) == 0x0000B9, "Member 'CheckEnemyActorsInVolume_C_ExecuteUbergraph_CheckEnemyActorsInVolume::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CheckEnemyActorsInVolume_C_ReceiveExecute \ +static_assert(alignof(CheckEnemyActorsInVolume_C_ReceiveExecute) == 0x000008, "Wrong alignment on CheckEnemyActorsInVolume_C_ReceiveExecute"); \ +static_assert(sizeof(CheckEnemyActorsInVolume_C_ReceiveExecute) == 0x000010, "Wrong size on CheckEnemyActorsInVolume_C_ReceiveExecute"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CheckEnemyActorsInVolume_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CheckEnemyActorsInVolume_C_ReceiveExecute, InState) == 0x000008, "Member 'CheckEnemyActorsInVolume_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCheckEnemyActorsInVolume_C \ +static_assert(alignof(UCheckEnemyActorsInVolume_C) == 0x000008, "Wrong alignment on UCheckEnemyActorsInVolume_C"); \ +static_assert(sizeof(UCheckEnemyActorsInVolume_C) == 0x0000A8, "Wrong size on UCheckEnemyActorsInVolume_C"); \ +static_assert(offsetof(UCheckEnemyActorsInVolume_C, UberGraphFrame) == 0x000088, "Member 'UCheckEnemyActorsInVolume_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemyActorsInVolume_C, BP_CheckForActor) == 0x000090, "Member 'UCheckEnemyActorsInVolume_C::BP_CheckForActor' has a wrong offset!"); \ +static_assert(offsetof(UCheckEnemyActorsInVolume_C, EnemyTag) == 0x0000A0, "Member 'UCheckEnemyActorsInVolume_C::EnemyTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags \ +static_assert(alignof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags) == 0x000008, "Wrong alignment on CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags"); \ +static_assert(sizeof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags) == 0x000028, "Wrong size on CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags, EntryPoint) == 0x000000, "Member 'CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags, K2Node_Event_InAutomata) == 0x000008, "Member 'CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags, K2Node_Event_InState) == 0x000010, "Member 'CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000018, "Member 'CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'CancelPhyreAbiltyByTags_C_ExecuteUbergraph_CancelPhyreAbiltyByTags::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CancelPhyreAbiltyByTags_C_ReceiveExecute \ +static_assert(alignof(CancelPhyreAbiltyByTags_C_ReceiveExecute) == 0x000008, "Wrong alignment on CancelPhyreAbiltyByTags_C_ReceiveExecute"); \ +static_assert(sizeof(CancelPhyreAbiltyByTags_C_ReceiveExecute) == 0x000010, "Wrong size on CancelPhyreAbiltyByTags_C_ReceiveExecute"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CancelPhyreAbiltyByTags_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CancelPhyreAbiltyByTags_C_ReceiveExecute, InState) == 0x000008, "Member 'CancelPhyreAbiltyByTags_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCancelPhyreAbiltyByTags_C \ +static_assert(alignof(UCancelPhyreAbiltyByTags_C) == 0x000008, "Wrong alignment on UCancelPhyreAbiltyByTags_C"); \ +static_assert(sizeof(UCancelPhyreAbiltyByTags_C) == 0x0000B8, "Wrong size on UCancelPhyreAbiltyByTags_C"); \ +static_assert(offsetof(UCancelPhyreAbiltyByTags_C, UberGraphFrame) == 0x000088, "Member 'UCancelPhyreAbiltyByTags_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UCancelPhyreAbiltyByTags_C, Tick_AddsTags___untick_RemovesTags) == 0x000090, "Member 'UCancelPhyreAbiltyByTags_C::Tick_AddsTags___untick_RemovesTags' has a wrong offset!"); \ +static_assert(offsetof(UCancelPhyreAbiltyByTags_C, Tags_to_Cancel) == 0x000098, "Member 'UCancelPhyreAbiltyByTags_C::Tags_to_Cancel' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UManageDataLayers_C \ +static_assert(alignof(UManageDataLayers_C) == 0x000008, "Wrong alignment on UManageDataLayers_C"); \ +static_assert(sizeof(UManageDataLayers_C) == 0x0000A8, "Wrong size on UManageDataLayers_C"); \ + +#define DUMPER7_ASSERTS_StartActivityTask_C_ExecuteUbergraph_StartActivityTask \ +static_assert(alignof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask) == 0x000008, "Wrong alignment on StartActivityTask_C_ExecuteUbergraph_StartActivityTask"); \ +static_assert(sizeof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask) == 0x000020, "Wrong size on StartActivityTask_C_ExecuteUbergraph_StartActivityTask"); \ +static_assert(offsetof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask, EntryPoint) == 0x000000, "Member 'StartActivityTask_C_ExecuteUbergraph_StartActivityTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask, K2Node_Event_InAutomata) == 0x000008, "Member 'StartActivityTask_C_ExecuteUbergraph_StartActivityTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask, K2Node_Event_InState) == 0x000010, "Member 'StartActivityTask_C_ExecuteUbergraph_StartActivityTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(StartActivityTask_C_ExecuteUbergraph_StartActivityTask, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000018, "Member 'StartActivityTask_C_ExecuteUbergraph_StartActivityTask::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StartActivityTask_C_ReceiveExecute \ +static_assert(alignof(StartActivityTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on StartActivityTask_C_ReceiveExecute"); \ +static_assert(sizeof(StartActivityTask_C_ReceiveExecute) == 0x000010, "Wrong size on StartActivityTask_C_ReceiveExecute"); \ +static_assert(offsetof(StartActivityTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'StartActivityTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StartActivityTask_C_ReceiveExecute, InState) == 0x000008, "Member 'StartActivityTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStartActivityTask_C \ +static_assert(alignof(UStartActivityTask_C) == 0x000008, "Wrong alignment on UStartActivityTask_C"); \ +static_assert(sizeof(UStartActivityTask_C) == 0x0000B0, "Wrong size on UStartActivityTask_C"); \ +static_assert(offsetof(UStartActivityTask_C, UberGraphFrame) == 0x000088, "Member 'UStartActivityTask_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UStartActivityTask_C, StartActivityId) == 0x000090, "Member 'UStartActivityTask_C::StartActivityId' has a wrong offset!"); \ +static_assert(offsetof(UStartActivityTask_C, EndActivityId) == 0x0000A0, "Member 'UStartActivityTask_C::EndActivityId' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget \ +static_assert(alignof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget) == 0x000008, "Wrong alignment on Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget"); \ +static_assert(sizeof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget) == 0x000088, "Wrong size on Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, EntryPoint) == 0x000000, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_GetTargetTags_Tags) == 0x000004, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_GetTargetTags_Tags' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000010, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_DynamicCast_AsActor) == 0x000020, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_DynamicCast_AsWrestler_Dialogue_Rig) == 0x000030, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_DynamicCast_AsWrestler_Dialogue_Rig' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_DynamicCast_bSuccess_1) == 0x000038, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_SwitchEnum_CmpSuccess_1) == 0x000039, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_IsValid_ReturnValue) == 0x00003A, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_RemoveGameplayTag_ReturnValue) == 0x00003B, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_RemoveGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_Event_InAutomata) == 0x000040, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_Event_InState) == 0x000048, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_GetTargetTags_Tags_1) == 0x000050, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_GetTargetTags_Tags_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x000058, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000078, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, K2Node_SwitchEnum_CmpSuccess_2) == 0x000079, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::K2Node_SwitchEnum_CmpSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x00007A, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget, CallFunc_GetTargetTags_Tags_2) == 0x00007C, "Member 'Modify_AbilityTarget_C_ExecuteUbergraph_Modify_AbilityTarget::CallFunc_GetTargetTags_Tags_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_AbilityTarget_C_GetTargetTags \ +static_assert(alignof(Modify_AbilityTarget_C_GetTargetTags) == 0x000004, "Wrong alignment on Modify_AbilityTarget_C_GetTargetTags"); \ +static_assert(sizeof(Modify_AbilityTarget_C_GetTargetTags) == 0x00002C, "Wrong size on Modify_AbilityTarget_C_GetTargetTags"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, Tags) == 0x000000, "Member 'Modify_AbilityTarget_C_GetTargetTags::Tags' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, Temp_byte_Variable) == 0x000008, "Member 'Modify_AbilityTarget_C_GetTargetTags::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, Temp_struct_Variable) == 0x00000C, "Member 'Modify_AbilityTarget_C_GetTargetTags::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, Temp_struct_Variable_1) == 0x000014, "Member 'Modify_AbilityTarget_C_GetTargetTags::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, Temp_struct_Variable_2) == 0x00001C, "Member 'Modify_AbilityTarget_C_GetTargetTags::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_GetTargetTags, K2Node_Select_Default) == 0x000024, "Member 'Modify_AbilityTarget_C_GetTargetTags::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_AbilityTarget_C_ReceiveExecute \ +static_assert(alignof(Modify_AbilityTarget_C_ReceiveExecute) == 0x000008, "Wrong alignment on Modify_AbilityTarget_C_ReceiveExecute"); \ +static_assert(sizeof(Modify_AbilityTarget_C_ReceiveExecute) == 0x000010, "Wrong size on Modify_AbilityTarget_C_ReceiveExecute"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Modify_AbilityTarget_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_ReceiveExecute, InState) == 0x000008, "Member 'Modify_AbilityTarget_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Modify_AbilityTarget_C_UpdateTarget \ +static_assert(alignof(Modify_AbilityTarget_C_UpdateTarget) == 0x000008, "Wrong alignment on Modify_AbilityTarget_C_UpdateTarget"); \ +static_assert(sizeof(Modify_AbilityTarget_C_UpdateTarget) == 0x0000A0, "Wrong size on Modify_AbilityTarget_C_UpdateTarget"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, Set) == 0x000000, "Member 'Modify_AbilityTarget_C_UpdateTarget::Set' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, PropertyName) == 0x000004, "Member 'Modify_AbilityTarget_C_UpdateTarget::PropertyName' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000010, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, K2Node_DynamicCast_AsActor) == 0x000018, "Member 'Modify_AbilityTarget_C_UpdateTarget::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'Modify_AbilityTarget_C_UpdateTarget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetPathName_ReturnValue) == 0x000028, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetPathName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_Conv_StringToName_ReturnValue) == 0x000038, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_Conv_StringToName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetTargetTags_Tags) == 0x000040, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetTargetTags_Tags' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000048, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetPropertySystem_ReturnValue) == 0x000050, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetPropertySystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000058, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000060, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, K2Node_DynamicCast_AsActor_1) == 0x000068, "Member 'Modify_AbilityTarget_C_UpdateTarget::K2Node_DynamicCast_AsActor_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, K2Node_DynamicCast_bSuccess_1) == 0x000070, "Member 'Modify_AbilityTarget_C_UpdateTarget::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_GetPathName_ReturnValue_1) == 0x000078, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_GetPathName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_Concat_StrStr_ReturnValue) == 0x000088, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Modify_AbilityTarget_C_UpdateTarget, CallFunc_Conv_StringToName_ReturnValue_1) == 0x000098, "Member 'Modify_AbilityTarget_C_UpdateTarget::CallFunc_Conv_StringToName_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UModify_AbilityTarget_C \ +static_assert(alignof(UModify_AbilityTarget_C) == 0x000008, "Wrong alignment on UModify_AbilityTarget_C"); \ +static_assert(sizeof(UModify_AbilityTarget_C) == 0x0000C8, "Wrong size on UModify_AbilityTarget_C"); \ +static_assert(offsetof(UModify_AbilityTarget_C, UberGraphFrame) == 0x000088, "Member 'UModify_AbilityTarget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UModify_AbilityTarget_C, Action) == 0x000090, "Member 'UModify_AbilityTarget_C::Action' has a wrong offset!"); \ +static_assert(offsetof(UModify_AbilityTarget_C, Ability) == 0x000091, "Member 'UModify_AbilityTarget_C::Ability' has a wrong offset!"); \ +static_assert(offsetof(UModify_AbilityTarget_C, TargetActor) == 0x000098, "Member 'UModify_AbilityTarget_C::TargetActor' has a wrong offset!"); \ +static_assert(offsetof(UModify_AbilityTarget_C, Data) == 0x0000C0, "Member 'UModify_AbilityTarget_C::Data' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor \ +static_assert(alignof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor) == 0x000008, "Wrong alignment on BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor"); \ +static_assert(sizeof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor) == 0x000070, "Wrong size on BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, EntryPoint) == 0x000000, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, K2Node_Event_InAutomata) == 0x000008, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, K2Node_Event_InState) == 0x000010, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_Array_Get_Item) == 0x000020, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x000048, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_IsValid_ReturnValue) == 0x000054, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, K2Node_DynamicCast_AsBP_Wrestler_Basic_Door) == 0x000058, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::K2Node_DynamicCast_AsBP_Wrestler_Basic_Door' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'BP_IC_OpenORClose_BasicDoor_C_ExecuteUbergraph_BP_IC_OpenORClose_BasicDoor::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute \ +static_assert(alignof(BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute) == 0x000008, "Wrong alignment on BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute"); \ +static_assert(sizeof(BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute) == 0x000010, "Wrong size on BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute, InState) == 0x000008, "Member 'BP_IC_OpenORClose_BasicDoor_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_IC_OpenORClose_BasicDoor_C \ +static_assert(alignof(UBP_IC_OpenORClose_BasicDoor_C) == 0x000008, "Wrong alignment on UBP_IC_OpenORClose_BasicDoor_C"); \ +static_assert(sizeof(UBP_IC_OpenORClose_BasicDoor_C) == 0x0000A8, "Wrong size on UBP_IC_OpenORClose_BasicDoor_C"); \ +static_assert(offsetof(UBP_IC_OpenORClose_BasicDoor_C, UberGraphFrame) == 0x000088, "Member 'UBP_IC_OpenORClose_BasicDoor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_OpenORClose_BasicDoor_C, IsOpen_OR_IsClose) == 0x000090, "Member 'UBP_IC_OpenORClose_BasicDoor_C::IsOpen_OR_IsClose' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_OpenORClose_BasicDoor_C, OpenDoorFromFront) == 0x000091, "Member 'UBP_IC_OpenORClose_BasicDoor_C::OpenDoorFromFront' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_OpenORClose_BasicDoor_C, DoorReference) == 0x000098, "Member 'UBP_IC_OpenORClose_BasicDoor_C::DoorReference' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance \ +static_assert(alignof(DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance) == 0x000008, "Wrong alignment on DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance"); \ +static_assert(sizeof(DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance) == 0x000018, "Wrong size on DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance"); \ +static_assert(offsetof(DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance, EntryPoint) == 0x000000, "Member 'DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance, K2Node_Event_InAutomata) == 0x000008, "Member 'DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance, K2Node_Event_InState) == 0x000010, "Member 'DisableBloodResonance_C_ExecuteUbergraph_DisableBloodResonance::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DisableBloodResonance_C_ReceiveExecute \ +static_assert(alignof(DisableBloodResonance_C_ReceiveExecute) == 0x000008, "Wrong alignment on DisableBloodResonance_C_ReceiveExecute"); \ +static_assert(sizeof(DisableBloodResonance_C_ReceiveExecute) == 0x000010, "Wrong size on DisableBloodResonance_C_ReceiveExecute"); \ +static_assert(offsetof(DisableBloodResonance_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DisableBloodResonance_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DisableBloodResonance_C_ReceiveExecute, InState) == 0x000008, "Member 'DisableBloodResonance_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDisableBloodResonance_C \ +static_assert(alignof(UDisableBloodResonance_C) == 0x000008, "Wrong alignment on UDisableBloodResonance_C"); \ +static_assert(sizeof(UDisableBloodResonance_C) == 0x000090, "Wrong size on UDisableBloodResonance_C"); \ +static_assert(offsetof(UDisableBloodResonance_C, UberGraphFrame) == 0x000088, "Member 'UDisableBloodResonance_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_laserBeam_C \ +static_assert(alignof(ABP_laserBeam_C) == 0x000008, "Wrong alignment on ABP_laserBeam_C"); \ +static_assert(sizeof(ABP_laserBeam_C) == 0x0002A8, "Wrong size on ABP_laserBeam_C"); \ +static_assert(offsetof(ABP_laserBeam_C, LaserBeam) == 0x000298, "Member 'ABP_laserBeam_C::LaserBeam' has a wrong offset!"); \ +static_assert(offsetof(ABP_laserBeam_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_laserBeam_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification \ +static_assert(alignof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification) == 0x000008, "Wrong alignment on CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification"); \ +static_assert(sizeof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification) == 0x000048, "Wrong size on CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, EntryPoint) == 0x000000, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_DynamicCast_AsWrestler_HUDIn_Game) == 0x000010, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_DynamicCast_AsWrestler_HUDIn_Game' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_Event_InAutomata) == 0x000020, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_Event_InState) == 0x000028, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, CallFunc_GetSlotCommonWidget_ReturnValue) == 0x000030, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::CallFunc_GetSlotCommonWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_DynamicCast_AsWrestler_Side_Container_Widget) == 0x000038, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_DynamicCast_AsWrestler_Side_Container_Widget' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'CloseCurrentNotification_C_ExecuteUbergraph_CloseCurrentNotification::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_CloseCurrentNotification_C_ReceiveExecute \ +static_assert(alignof(CloseCurrentNotification_C_ReceiveExecute) == 0x000008, "Wrong alignment on CloseCurrentNotification_C_ReceiveExecute"); \ +static_assert(sizeof(CloseCurrentNotification_C_ReceiveExecute) == 0x000010, "Wrong size on CloseCurrentNotification_C_ReceiveExecute"); \ +static_assert(offsetof(CloseCurrentNotification_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'CloseCurrentNotification_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(CloseCurrentNotification_C_ReceiveExecute, InState) == 0x000008, "Member 'CloseCurrentNotification_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCloseCurrentNotification_C \ +static_assert(alignof(UCloseCurrentNotification_C) == 0x000008, "Wrong alignment on UCloseCurrentNotification_C"); \ +static_assert(sizeof(UCloseCurrentNotification_C) == 0x000090, "Wrong size on UCloseCurrentNotification_C"); \ +static_assert(offsetof(UCloseCurrentNotification_C, UberGraphFrame) == 0x000088, "Member 'UCloseCurrentNotification_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCredits_C_ExecuteUbergraph_PlayCredits \ +static_assert(alignof(PlayCredits_C_ExecuteUbergraph_PlayCredits) == 0x000008, "Wrong alignment on PlayCredits_C_ExecuteUbergraph_PlayCredits"); \ +static_assert(sizeof(PlayCredits_C_ExecuteUbergraph_PlayCredits) == 0x000028, "Wrong size on PlayCredits_C_ExecuteUbergraph_PlayCredits"); \ +static_assert(offsetof(PlayCredits_C_ExecuteUbergraph_PlayCredits, EntryPoint) == 0x000000, "Member 'PlayCredits_C_ExecuteUbergraph_PlayCredits::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(PlayCredits_C_ExecuteUbergraph_PlayCredits, CallFunc_GetHud_ReturnValue) == 0x000008, "Member 'PlayCredits_C_ExecuteUbergraph_PlayCredits::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCredits_C_ExecuteUbergraph_PlayCredits, CallFunc_Push_ReturnValue) == 0x000010, "Member 'PlayCredits_C_ExecuteUbergraph_PlayCredits::CallFunc_Push_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(PlayCredits_C_ExecuteUbergraph_PlayCredits, K2Node_Event_InAutomata) == 0x000018, "Member 'PlayCredits_C_ExecuteUbergraph_PlayCredits::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayCredits_C_ExecuteUbergraph_PlayCredits, K2Node_Event_InState) == 0x000020, "Member 'PlayCredits_C_ExecuteUbergraph_PlayCredits::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_PlayCredits_C_ReceiveExecute \ +static_assert(alignof(PlayCredits_C_ReceiveExecute) == 0x000008, "Wrong alignment on PlayCredits_C_ReceiveExecute"); \ +static_assert(sizeof(PlayCredits_C_ReceiveExecute) == 0x000010, "Wrong size on PlayCredits_C_ReceiveExecute"); \ +static_assert(offsetof(PlayCredits_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'PlayCredits_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(PlayCredits_C_ReceiveExecute, InState) == 0x000008, "Member 'PlayCredits_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPlayCredits_C \ +static_assert(alignof(UPlayCredits_C) == 0x000008, "Wrong alignment on UPlayCredits_C"); \ +static_assert(sizeof(UPlayCredits_C) == 0x000090, "Wrong size on UPlayCredits_C"); \ +static_assert(offsetof(UPlayCredits_C, UberGraphFrame) == 0x000088, "Member 'UPlayCredits_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState \ +static_assert(alignof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState) == 0x000008, "Wrong alignment on ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState"); \ +static_assert(sizeof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState) == 0x000058, "Wrong size on ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, EntryPoint) == 0x000000, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_CustomEvent_Loaded) == 0x000008, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_CustomEvent_Loaded' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_CreateDelegate_OutputDelegate) == 0x000010, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, Temp_object_Variable) == 0x000020, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_DynamicCast_AsHera_Dialogue_Info) == 0x000028, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_DynamicCast_AsHera_Dialogue_Info' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_Event_InAutomata) == 0x000038, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, K2Node_Event_InState) == 0x000040, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000048, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000050, "Member 'ForgetSavedDialogueState_C_ExecuteUbergraph_ForgetSavedDialogueState::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B \ +static_assert(alignof(ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B) == 0x000008, "Wrong alignment on ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B"); \ +static_assert(sizeof(ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B) == 0x000008, "Wrong size on ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B, Loaded) == 0x000000, "Member 'ForgetSavedDialogueState_C_OnLoaded_9D097B3B4ED0673F616B53854650273B::Loaded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForgetSavedDialogueState_C_ReceiveExecute \ +static_assert(alignof(ForgetSavedDialogueState_C_ReceiveExecute) == 0x000008, "Wrong alignment on ForgetSavedDialogueState_C_ReceiveExecute"); \ +static_assert(sizeof(ForgetSavedDialogueState_C_ReceiveExecute) == 0x000010, "Wrong size on ForgetSavedDialogueState_C_ReceiveExecute"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ForgetSavedDialogueState_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForgetSavedDialogueState_C_ReceiveExecute, InState) == 0x000008, "Member 'ForgetSavedDialogueState_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForgetSavedDialogueState_C \ +static_assert(alignof(UForgetSavedDialogueState_C) == 0x000008, "Wrong alignment on UForgetSavedDialogueState_C"); \ +static_assert(sizeof(UForgetSavedDialogueState_C) == 0x0000C0, "Wrong size on UForgetSavedDialogueState_C"); \ +static_assert(offsetof(UForgetSavedDialogueState_C, UberGraphFrame) == 0x000088, "Member 'UForgetSavedDialogueState_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UForgetSavedDialogueState_C, Dialogue) == 0x000090, "Member 'UForgetSavedDialogueState_C::Dialogue' has a wrong offset!"); \ +static_assert(offsetof(UForgetSavedDialogueState_C, DialogueForgetComplete) == 0x0000B8, "Member 'UForgetSavedDialogueState_C::DialogueForgetComplete' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights \ +static_assert(alignof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights) == 0x000008, "Wrong alignment on BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights"); \ +static_assert(sizeof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights) == 0x0000A0, "Wrong size on BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, EntryPoint) == 0x000000, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, K2Node_Event_InPlayStatus) == 0x000010, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::K2Node_Event_InPlayStatus' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, CallFunc_Array_Get_Item) == 0x000058, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, CallFunc_Less_IntInt_ReturnValue) == 0x000080, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000088, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, K2Node_DynamicCast_AsSpot_Light) == 0x000090, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::K2Node_DynamicCast_AsSpot_Light' has a wrong offset!"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights, K2Node_DynamicCast_bSuccess) == 0x000098, "Member 'BP_DialogueEvent_ToggleLights_C_ExecuteUbergraph_BP_DialogueEvent_ToggleLights::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint \ +static_assert(alignof(BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint) == 0x000008, "Wrong alignment on BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint"); \ +static_assert(sizeof(BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint) == 0x000040, "Wrong size on BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint"); \ +static_assert(offsetof(BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint, InPlayStatus) == 0x000000, "Member 'BP_DialogueEvent_ToggleLights_C_OnBegin_Blueprint::InPlayStatus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_DialogueEvent_ToggleLights_C \ +static_assert(alignof(UBP_DialogueEvent_ToggleLights_C) == 0x000008, "Wrong alignment on UBP_DialogueEvent_ToggleLights_C"); \ +static_assert(sizeof(UBP_DialogueEvent_ToggleLights_C) == 0x000088, "Wrong size on UBP_DialogueEvent_ToggleLights_C"); \ +static_assert(offsetof(UBP_DialogueEvent_ToggleLights_C, UberGraphFrame) == 0x000068, "Member 'UBP_DialogueEvent_ToggleLights_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_DialogueEvent_ToggleLights_C, AllLights) == 0x000070, "Member 'UBP_DialogueEvent_ToggleLights_C::AllLights' has a wrong offset!"); \ +static_assert(offsetof(UBP_DialogueEvent_ToggleLights_C, EnableLights) == 0x000080, "Member 'UBP_DialogueEvent_ToggleLights_C::EnableLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AutomataTasks_FunctionLibrary_C_Print_Automata_Log \ +static_assert(alignof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log) == 0x000008, "Wrong alignment on AutomataTasks_FunctionLibrary_C_Print_Automata_Log"); \ +static_assert(sizeof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log) == 0x000110, "Wrong size on AutomataTasks_FunctionLibrary_C_Print_Automata_Log"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Type) == 0x000000, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Type' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Message) == 0x000008, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Message' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Automata_) == 0x000018, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Automata_' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, State) == 0x000020, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::State' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, __WorldContext) == 0x000028, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_bool_Variable) == 0x000030, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_GetDisplayName_ReturnValue) == 0x000038, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_GetDisplayName_ReturnValue_1) == 0x000048, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_GetDisplayName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_bool_Variable_1) == 0x000058, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_bool_Variable_2) == 0x000059, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_byte_Variable) == 0x00005A, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_string_Variable) == 0x000060, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_string_Variable' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_string_Variable_1) == 0x000070, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_string_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_string_Variable_2) == 0x000080, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_string_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, Temp_byte_Variable_1) == 0x000090, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, K2Node_Select_Default) == 0x000098, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue) == 0x0000A8, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, K2Node_Select_Default_1) == 0x0000B8, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000C0, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000D0, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue_3) == 0x0000E0, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0000F0, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_Print_Automata_Log, CallFunc_Concat_StrStr_ReturnValue_5) == 0x000100, "Member 'AutomataTasks_FunctionLibrary_C_Print_Automata_Log::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays \ +static_assert(alignof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays) == 0x000008, "Wrong alignment on AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays"); \ +static_assert(sizeof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays) == 0x0000C0, "Wrong size on AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, HardRefs) == 0x000000, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::HardRefs' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, SoftRefs) == 0x000010, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::SoftRefs' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, __WorldContext) == 0x000020, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, AllActors) == 0x000028, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::AllActors' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, TempArray) == 0x000038, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::TempArray' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, Temp_int_Array_Index_Variable) == 0x000048, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_Length_ReturnValue) == 0x00004C, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_Get_Item) == 0x000050, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_IsValid_ReturnValue) == 0x000058, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_Length_ReturnValue_1) == 0x00005C, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, Temp_int_Loop_Counter_Variable) == 0x000060, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, Temp_int_Loop_Counter_Variable_1) == 0x000064, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Add_IntInt_ReturnValue) == 0x00006C, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Less_IntInt_ReturnValue_1) == 0x000070, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Add_IntInt_ReturnValue_1) == 0x000074, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, Temp_int_Array_Index_Variable_1) == 0x000078, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x0000A8, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_IsValid_ReturnValue_1) == 0x0000B0, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_AddUnique_ReturnValue) == 0x0000B4, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays, CallFunc_Array_AddUnique_ReturnValue_1) == 0x0000B8, "Member 'AutomataTasks_FunctionLibrary_C_MergeSoftAndHardRefArrays::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAutomataTasks_FunctionLibrary_C \ +static_assert(alignof(UAutomataTasks_FunctionLibrary_C) == 0x000008, "Wrong alignment on UAutomataTasks_FunctionLibrary_C"); \ +static_assert(sizeof(UAutomataTasks_FunctionLibrary_C) == 0x000028, "Wrong size on UAutomataTasks_FunctionLibrary_C"); \ + +#define DUMPER7_ASSERTS_GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent \ +static_assert(alignof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent) == 0x000008, "Wrong alignment on GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent"); \ +static_assert(sizeof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent) == 0x000078, "Wrong size on GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, EntryPoint) == 0x000000, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, Temp_int_Array_Index_Variable) == 0x000004, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Conv_IntToString_ReturnValue) == 0x000010, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Concat_StrStr_ReturnValue) == 0x000020, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Add_IntInt_ReturnValue) == 0x000030, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, K2Node_Event_InAutomata) == 0x000038, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, K2Node_Event_InState) == 0x000040, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Array_Get_Item) == 0x000048, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Array_Length_ReturnValue) == 0x000068, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_AddPointsForCustomEvent_ReturnValue) == 0x00006C, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_AddPointsForCustomEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_Less_IntInt_ReturnValue) == 0x00006D, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent, CallFunc_GetXPComponent_ReturnValue) == 0x000070, "Member 'GrantXPOrAPFromCustomEvent_C_ExecuteUbergraph_GrantXPOrAPFromCustomEvent::CallFunc_GetXPComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GrantXPOrAPFromCustomEvent_C_ReceiveExecute \ +static_assert(alignof(GrantXPOrAPFromCustomEvent_C_ReceiveExecute) == 0x000008, "Wrong alignment on GrantXPOrAPFromCustomEvent_C_ReceiveExecute"); \ +static_assert(sizeof(GrantXPOrAPFromCustomEvent_C_ReceiveExecute) == 0x000010, "Wrong size on GrantXPOrAPFromCustomEvent_C_ReceiveExecute"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'GrantXPOrAPFromCustomEvent_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GrantXPOrAPFromCustomEvent_C_ReceiveExecute, InState) == 0x000008, "Member 'GrantXPOrAPFromCustomEvent_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGrantXPOrAPFromCustomEvent_C \ +static_assert(alignof(UGrantXPOrAPFromCustomEvent_C) == 0x000008, "Wrong alignment on UGrantXPOrAPFromCustomEvent_C"); \ +static_assert(sizeof(UGrantXPOrAPFromCustomEvent_C) == 0x0000B0, "Wrong size on UGrantXPOrAPFromCustomEvent_C"); \ +static_assert(offsetof(UGrantXPOrAPFromCustomEvent_C, UberGraphFrame) == 0x000088, "Member 'UGrantXPOrAPFromCustomEvent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromCustomEvent_C, CustomEventData) == 0x000090, "Member 'UGrantXPOrAPFromCustomEvent_C::CustomEventData' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromCustomEvent_C, OverrideXPPoolling) == 0x0000A0, "Member 'UGrantXPOrAPFromCustomEvent_C::OverrideXPPoolling' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromCustomEvent_C, OverrideNotifTimer) == 0x0000A1, "Member 'UGrantXPOrAPFromCustomEvent_C::OverrideNotifTimer' has a wrong offset!"); \ +static_assert(offsetof(UGrantXPOrAPFromCustomEvent_C, InNewTimer) == 0x0000A8, "Member 'UGrantXPOrAPFromCustomEvent_C::InNewTimer' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_List_Modify_C_ExecuteUbergraph_List_Modify \ +static_assert(alignof(List_Modify_C_ExecuteUbergraph_List_Modify) == 0x000008, "Wrong alignment on List_Modify_C_ExecuteUbergraph_List_Modify"); \ +static_assert(sizeof(List_Modify_C_ExecuteUbergraph_List_Modify) == 0x0000A0, "Wrong size on List_Modify_C_ExecuteUbergraph_List_Modify"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, EntryPoint) == 0x000000, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Array_Length_ReturnValue) == 0x000004, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Array_Length_ReturnValue_1) == 0x000008, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Less_IntInt_ReturnValue) == 0x000010, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, Temp_int_Array_Index_Variable) == 0x000018, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Array_Get_Item) == 0x000020, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, Temp_int_Loop_Counter_Variable_1) == 0x000030, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Less_IntInt_ReturnValue_1) == 0x000034, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Add_IntInt_ReturnValue_1) == 0x000038, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, K2Node_Event_InAutomata) == 0x000040, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, K2Node_Event_InState) == 0x000048, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, K2Node_SwitchEnum_CmpSuccess) == 0x000050, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, Temp_int_Array_Index_Variable_1) == 0x000054, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Array_Get_Item_1) == 0x000058, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_GetDisplayName_ReturnValue) == 0x000070, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Concat_StrStr_ReturnValue) == 0x000080, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ExecuteUbergraph_List_Modify, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000090, "Member 'List_Modify_C_ExecuteUbergraph_List_Modify::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_List_Modify_C_ReceiveExecute \ +static_assert(alignof(List_Modify_C_ReceiveExecute) == 0x000008, "Wrong alignment on List_Modify_C_ReceiveExecute"); \ +static_assert(sizeof(List_Modify_C_ReceiveExecute) == 0x000010, "Wrong size on List_Modify_C_ReceiveExecute"); \ +static_assert(offsetof(List_Modify_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'List_Modify_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(List_Modify_C_ReceiveExecute, InState) == 0x000008, "Member 'List_Modify_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UList_Modify_C \ +static_assert(alignof(UList_Modify_C) == 0x000008, "Wrong alignment on UList_Modify_C"); \ +static_assert(sizeof(UList_Modify_C) == 0x0000B0, "Wrong size on UList_Modify_C"); \ +static_assert(offsetof(UList_Modify_C, UberGraphFrame) == 0x000088, "Member 'UList_Modify_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UList_Modify_C, List) == 0x000090, "Member 'UList_Modify_C::List' has a wrong offset!"); \ +static_assert(offsetof(UList_Modify_C, Items__Names) == 0x000098, "Member 'UList_Modify_C::Items__Names' has a wrong offset!"); \ +static_assert(offsetof(UList_Modify_C, Operation) == 0x0000A8, "Member 'UList_Modify_C::Operation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation \ +static_assert(alignof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation) == 0x000010, "Wrong alignment on SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation"); \ +static_assert(sizeof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation) == 0x0000B0, "Wrong size on SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, EntryPoint) == 0x000000, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, Temp_int_Array_Index_Variable) == 0x000004, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, K2Node_Event_InAutomata) == 0x000010, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, K2Node_Event_InState) == 0x000018, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_Array_Get_Item) == 0x000030, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_Less_IntInt_ReturnValue) == 0x000090, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x000098, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000A0, "Member 'SpawnActorAtLocation_C_ExecuteUbergraph_SpawnActorAtLocation::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnActorAtLocation_C_ReceiveExecute \ +static_assert(alignof(SpawnActorAtLocation_C_ReceiveExecute) == 0x000008, "Wrong alignment on SpawnActorAtLocation_C_ReceiveExecute"); \ +static_assert(sizeof(SpawnActorAtLocation_C_ReceiveExecute) == 0x000010, "Wrong size on SpawnActorAtLocation_C_ReceiveExecute"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SpawnActorAtLocation_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnActorAtLocation_C_ReceiveExecute, InState) == 0x000008, "Member 'SpawnActorAtLocation_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpawnActorAtLocation_C \ +static_assert(alignof(USpawnActorAtLocation_C) == 0x000008, "Wrong alignment on USpawnActorAtLocation_C"); \ +static_assert(sizeof(USpawnActorAtLocation_C) == 0x0000A8, "Wrong size on USpawnActorAtLocation_C"); \ +static_assert(offsetof(USpawnActorAtLocation_C, UberGraphFrame) == 0x000088, "Member 'USpawnActorAtLocation_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USpawnActorAtLocation_C, Actor_Location) == 0x000090, "Member 'USpawnActorAtLocation_C::Actor_Location' has a wrong offset!"); \ +static_assert(offsetof(USpawnActorAtLocation_C, Actor_To_Spawn) == 0x0000A0, "Member 'USpawnActorAtLocation_C::Actor_To_Spawn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllHusk_C_ExecuteUbergraph_KillAllHusk \ +static_assert(alignof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk) == 0x000008, "Wrong alignment on KillAllHusk_C_ExecuteUbergraph_KillAllHusk"); \ +static_assert(sizeof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk) == 0x000030, "Wrong size on KillAllHusk_C_ExecuteUbergraph_KillAllHusk"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, EntryPoint) == 0x000000, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, K2Node_Event_InAutomata) == 0x000008, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, K2Node_Event_InState) == 0x000010, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, CallFunc_LoadSynchronousSoftActorPointer_ReturnValue) == 0x000018, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::CallFunc_LoadSynchronousSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, K2Node_DynamicCast_AsWrestler_Crowd_Kill_Volume) == 0x000020, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::K2Node_DynamicCast_AsWrestler_Crowd_Kill_Volume' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ExecuteUbergraph_KillAllHusk, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'KillAllHusk_C_ExecuteUbergraph_KillAllHusk::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_KillAllHusk_C_ReceiveExecute \ +static_assert(alignof(KillAllHusk_C_ReceiveExecute) == 0x000008, "Wrong alignment on KillAllHusk_C_ReceiveExecute"); \ +static_assert(sizeof(KillAllHusk_C_ReceiveExecute) == 0x000010, "Wrong size on KillAllHusk_C_ReceiveExecute"); \ +static_assert(offsetof(KillAllHusk_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'KillAllHusk_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(KillAllHusk_C_ReceiveExecute, InState) == 0x000008, "Member 'KillAllHusk_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UKillAllHusk_C \ +static_assert(alignof(UKillAllHusk_C) == 0x000008, "Wrong alignment on UKillAllHusk_C"); \ +static_assert(sizeof(UKillAllHusk_C) == 0x0000B8, "Wrong size on UKillAllHusk_C"); \ +static_assert(offsetof(UKillAllHusk_C, UberGraphFrame) == 0x000088, "Member 'UKillAllHusk_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UKillAllHusk_C, HuskController) == 0x000090, "Member 'UKillAllHusk_C::HuskController' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement \ +static_assert(alignof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement) == 0x000008, "Wrong alignment on ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement"); \ +static_assert(sizeof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement) == 0x000028, "Wrong size on ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement"); \ +static_assert(offsetof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement, EntryPoint) == 0x000000, "Member 'ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement, K2Node_Event_InAutomata) == 0x000010, "Member 'ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement, K2Node_Event_InState) == 0x000018, "Member 'ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000020, "Member 'ProgressAchievement_C_ExecuteUbergraph_ProgressAchievement::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ProgressAchievement_C_ReceiveExecute \ +static_assert(alignof(ProgressAchievement_C_ReceiveExecute) == 0x000008, "Wrong alignment on ProgressAchievement_C_ReceiveExecute"); \ +static_assert(sizeof(ProgressAchievement_C_ReceiveExecute) == 0x000010, "Wrong size on ProgressAchievement_C_ReceiveExecute"); \ +static_assert(offsetof(ProgressAchievement_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ProgressAchievement_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ProgressAchievement_C_ReceiveExecute, InState) == 0x000008, "Member 'ProgressAchievement_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UProgressAchievement_C \ +static_assert(alignof(UProgressAchievement_C) == 0x000008, "Wrong alignment on UProgressAchievement_C"); \ +static_assert(sizeof(UProgressAchievement_C) == 0x0000A0, "Wrong size on UProgressAchievement_C"); \ +static_assert(offsetof(UProgressAchievement_C, UberGraphFrame) == 0x000088, "Member 'UProgressAchievement_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UProgressAchievement_C, AchievementName) == 0x000090, "Member 'UProgressAchievement_C::AchievementName' has a wrong offset!"); \ +static_assert(offsetof(UProgressAchievement_C, ProgressAmount) == 0x000098, "Member 'UProgressAchievement_C::ProgressAmount' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearMassAI_C_ExecuteUbergraph_ClearMassAI \ +static_assert(alignof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI) == 0x000008, "Wrong alignment on ClearMassAI_C_ExecuteUbergraph_ClearMassAI"); \ +static_assert(sizeof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI) == 0x000030, "Wrong size on ClearMassAI_C_ExecuteUbergraph_ClearMassAI"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, EntryPoint) == 0x000000, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, K2Node_Event_InAutomata) == 0x000010, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, K2Node_Event_InState) == 0x000018, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume) == 0x000020, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ExecuteUbergraph_ClearMassAI, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ClearMassAI_C_ExecuteUbergraph_ClearMassAI::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ClearMassAI_C_ReceiveExecute \ +static_assert(alignof(ClearMassAI_C_ReceiveExecute) == 0x000008, "Wrong alignment on ClearMassAI_C_ReceiveExecute"); \ +static_assert(sizeof(ClearMassAI_C_ReceiveExecute) == 0x000010, "Wrong size on ClearMassAI_C_ReceiveExecute"); \ +static_assert(offsetof(ClearMassAI_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ClearMassAI_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ClearMassAI_C_ReceiveExecute, InState) == 0x000008, "Member 'ClearMassAI_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UClearMassAI_C \ +static_assert(alignof(UClearMassAI_C) == 0x000008, "Wrong alignment on UClearMassAI_C"); \ +static_assert(sizeof(UClearMassAI_C) == 0x0000B8, "Wrong size on UClearMassAI_C"); \ +static_assert(offsetof(UClearMassAI_C, UberGraphFrame) == 0x000088, "Member 'UClearMassAI_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UClearMassAI_C, TurnOffVolume) == 0x000090, "Member 'UClearMassAI_C::TurnOffVolume' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled \ +static_assert(alignof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled) == 0x000008, "Wrong alignment on SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled"); \ +static_assert(sizeof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled) == 0x0000D0, "Wrong size on SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, EntryPoint) == 0x000000, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, Temp_int_Array_Index_Variable) == 0x000004, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_Event_InAutomata) == 0x000018, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_Event_InState) == 0x000020, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Array_Get_Item) == 0x000028, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume) == 0x000060, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, Temp_int_Loop_Counter_Variable_1) == 0x00006C, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Add_IntInt_ReturnValue_1) == 0x000074, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Array_Get_Item_1) == 0x000080, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Array_Length_ReturnValue_1) == 0x0000A8, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x0000B0, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000B8, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume_1) == 0x0000C0, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_DynamicCast_AsWrestler_Turn_Off_Mass_Entity_Volume_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, K2Node_DynamicCast_bSuccess_1) == 0x0000C8, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled, CallFunc_IsValid_ReturnValue_1) == 0x0000C9, "Member 'SetTurnOffVolumeEnabled_C_ExecuteUbergraph_SetTurnOffVolumeEnabled::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetTurnOffVolumeEnabled_C_ReceiveExecute \ +static_assert(alignof(SetTurnOffVolumeEnabled_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetTurnOffVolumeEnabled_C_ReceiveExecute"); \ +static_assert(sizeof(SetTurnOffVolumeEnabled_C_ReceiveExecute) == 0x000010, "Wrong size on SetTurnOffVolumeEnabled_C_ReceiveExecute"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetTurnOffVolumeEnabled_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetTurnOffVolumeEnabled_C_ReceiveExecute, InState) == 0x000008, "Member 'SetTurnOffVolumeEnabled_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetTurnOffVolumeEnabled_C \ +static_assert(alignof(USetTurnOffVolumeEnabled_C) == 0x000008, "Wrong alignment on USetTurnOffVolumeEnabled_C"); \ +static_assert(sizeof(USetTurnOffVolumeEnabled_C) == 0x0000A8, "Wrong size on USetTurnOffVolumeEnabled_C"); \ +static_assert(offsetof(USetTurnOffVolumeEnabled_C, UberGraphFrame) == 0x000088, "Member 'USetTurnOffVolumeEnabled_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetTurnOffVolumeEnabled_C, bEnable) == 0x000090, "Member 'USetTurnOffVolumeEnabled_C::bEnable' has a wrong offset!"); \ +static_assert(offsetof(USetTurnOffVolumeEnabled_C, TurnOffVolumes) == 0x000098, "Member 'USetTurnOffVolumeEnabled_C::TurnOffVolumes' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen \ +static_assert(alignof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen) == 0x000008, "Wrong alignment on FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen"); \ +static_assert(sizeof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen) == 0x000068, "Wrong size on FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, EntryPoint) == 0x000000, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue) == 0x000010, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, K2Node_Event_InAutomata) == 0x000018, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, K2Node_Event_InState) == 0x000020, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000028, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_IsValid_ReturnValue) == 0x000030, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000038, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_1) == 0x000040, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetAbilitySystemComponentFromActor_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_RemoveActiveGameplayEffect_ReturnValue) == 0x000048, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_RemoveActiveGameplayEffect_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x00004C, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000058, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_IsValid_ReturnValue_1) == 0x000060, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen, CallFunc_Delay_Duration_ImplicitCast) == 0x000064, "Member 'FadeOutScreen_C_ExecuteUbergraph_FadeOutScreen::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FadeOutScreen_C_ReceiveExecute \ +static_assert(alignof(FadeOutScreen_C_ReceiveExecute) == 0x000008, "Wrong alignment on FadeOutScreen_C_ReceiveExecute"); \ +static_assert(sizeof(FadeOutScreen_C_ReceiveExecute) == 0x000010, "Wrong size on FadeOutScreen_C_ReceiveExecute"); \ +static_assert(offsetof(FadeOutScreen_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'FadeOutScreen_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_ReceiveExecute, InState) == 0x000008, "Member 'FadeOutScreen_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FadeOutScreen_C_Start_camera_fade \ +static_assert(alignof(FadeOutScreen_C_Start_camera_fade) == 0x000008, "Wrong alignment on FadeOutScreen_C_Start_camera_fade"); \ +static_assert(sizeof(FadeOutScreen_C_Start_camera_fade) == 0x000010, "Wrong size on FadeOutScreen_C_Start_camera_fade"); \ +static_assert(offsetof(FadeOutScreen_C_Start_camera_fade, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'FadeOutScreen_C_Start_camera_fade::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_Start_camera_fade, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'FadeOutScreen_C_Start_camera_fade::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_Start_camera_fade, CallFunc_IsValid_ReturnValue_1) == 0x000009, "Member 'FadeOutScreen_C_Start_camera_fade::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(FadeOutScreen_C_Start_camera_fade, CallFunc_StartCameraFade_Duration_ImplicitCast) == 0x00000C, "Member 'FadeOutScreen_C_Start_camera_fade::CallFunc_StartCameraFade_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UFadeOutScreen_C \ +static_assert(alignof(UFadeOutScreen_C) == 0x000008, "Wrong alignment on UFadeOutScreen_C"); \ +static_assert(sizeof(UFadeOutScreen_C) == 0x0000C0, "Wrong size on UFadeOutScreen_C"); \ +static_assert(offsetof(UFadeOutScreen_C, UberGraphFrame) == 0x000088, "Member 'UFadeOutScreen_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UFadeOutScreen_C, FadeDuration) == 0x000090, "Member 'UFadeOutScreen_C::FadeDuration' has a wrong offset!"); \ +static_assert(offsetof(UFadeOutScreen_C, In_Objective) == 0x000098, "Member 'UFadeOutScreen_C::In_Objective' has a wrong offset!"); \ +static_assert(offsetof(UFadeOutScreen_C, FadeColor) == 0x0000A0, "Member 'UFadeOutScreen_C::FadeColor' has a wrong offset!"); \ +static_assert(offsetof(UFadeOutScreen_C, BlockTargeting) == 0x0000B0, "Member 'UFadeOutScreen_C::BlockTargeting' has a wrong offset!"); \ +static_assert(offsetof(UFadeOutScreen_C, BlockingEffect) == 0x0000B4, "Member 'UFadeOutScreen_C::BlockingEffect' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer \ +static_assert(alignof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer) == 0x000008, "Wrong alignment on GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer"); \ +static_assert(sizeof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer) == 0x000028, "Wrong size on GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer, EntryPoint) == 0x000000, "Member 'GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer, K2Node_Event_InAutomata) == 0x000008, "Member 'GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer, K2Node_Event_InState) == 0x000010, "Member 'GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer, CallFunc_GetPlayerPawn_ReturnValue) == 0x000018, "Member 'GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer, CallFunc_IsValid_ReturnValue) == 0x000020, "Member 'GameplayEventToPlayer_C_ExecuteUbergraph_GameplayEventToPlayer::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GameplayEventToPlayer_C_ReceiveExecute \ +static_assert(alignof(GameplayEventToPlayer_C_ReceiveExecute) == 0x000008, "Wrong alignment on GameplayEventToPlayer_C_ReceiveExecute"); \ +static_assert(sizeof(GameplayEventToPlayer_C_ReceiveExecute) == 0x000010, "Wrong size on GameplayEventToPlayer_C_ReceiveExecute"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'GameplayEventToPlayer_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(GameplayEventToPlayer_C_ReceiveExecute, InState) == 0x000008, "Member 'GameplayEventToPlayer_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGameplayEventToPlayer_C \ +static_assert(alignof(UGameplayEventToPlayer_C) == 0x000008, "Wrong alignment on UGameplayEventToPlayer_C"); \ +static_assert(sizeof(UGameplayEventToPlayer_C) == 0x000098, "Wrong size on UGameplayEventToPlayer_C"); \ +static_assert(offsetof(UGameplayEventToPlayer_C, UberGraphFrame) == 0x000088, "Member 'UGameplayEventToPlayer_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGameplayEventToPlayer_C, Event_Tag) == 0x000090, "Member 'UGameplayEventToPlayer_C::Event_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors \ +static_assert(alignof(SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors) == 0x000008, "Wrong alignment on SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors"); \ +static_assert(sizeof(SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors) == 0x000018, "Wrong size on SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors"); \ +static_assert(offsetof(SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors, EntryPoint) == 0x000000, "Member 'SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors, K2Node_Event_InAutomata) == 0x000008, "Member 'SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors, K2Node_Event_InState) == 0x000010, "Member 'SpawnEnemySquadActors_C_ExecuteUbergraph_SpawnEnemySquadActors::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemySquadActors_C_ReceiveExecute \ +static_assert(alignof(SpawnEnemySquadActors_C_ReceiveExecute) == 0x000008, "Wrong alignment on SpawnEnemySquadActors_C_ReceiveExecute"); \ +static_assert(sizeof(SpawnEnemySquadActors_C_ReceiveExecute) == 0x000010, "Wrong size on SpawnEnemySquadActors_C_ReceiveExecute"); \ +static_assert(offsetof(SpawnEnemySquadActors_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SpawnEnemySquadActors_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemySquadActors_C_ReceiveExecute, InState) == 0x000008, "Member 'SpawnEnemySquadActors_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpawnEnemySquadActors_C \ +static_assert(alignof(USpawnEnemySquadActors_C) == 0x000008, "Wrong alignment on USpawnEnemySquadActors_C"); \ +static_assert(sizeof(USpawnEnemySquadActors_C) == 0x000100, "Wrong size on USpawnEnemySquadActors_C"); \ +static_assert(offsetof(USpawnEnemySquadActors_C, UberGraphFrame) == 0x0000F8, "Member 'USpawnEnemySquadActors_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_FM_M_Onda_C \ +static_assert(alignof(UPD_FM_M_Onda_C) == 0x000008, "Wrong alignment on UPD_FM_M_Onda_C"); \ +static_assert(sizeof(UPD_FM_M_Onda_C) == 0x000058, "Wrong size on UPD_FM_M_Onda_C"); \ + +#define DUMPER7_ASSERTS_Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall \ +static_assert(alignof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall) == 0x000008, "Wrong alignment on Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall"); \ +static_assert(sizeof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall) == 0x000020, "Wrong size on Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall"); \ +static_assert(offsetof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall, EntryPoint) == 0x000000, "Member 'Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall, K2Node_Event_InAutomata) == 0x000010, "Member 'Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall, K2Node_Event_InState) == 0x000018, "Member 'Task_RemoveRecall_C_ExecuteUbergraph_Task_RemoveRecall::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Task_RemoveRecall_C_ReceiveExecute \ +static_assert(alignof(Task_RemoveRecall_C_ReceiveExecute) == 0x000008, "Wrong alignment on Task_RemoveRecall_C_ReceiveExecute"); \ +static_assert(sizeof(Task_RemoveRecall_C_ReceiveExecute) == 0x000010, "Wrong size on Task_RemoveRecall_C_ReceiveExecute"); \ +static_assert(offsetof(Task_RemoveRecall_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Task_RemoveRecall_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Task_RemoveRecall_C_ReceiveExecute, InState) == 0x000008, "Member 'Task_RemoveRecall_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTask_RemoveRecall_C \ +static_assert(alignof(UTask_RemoveRecall_C) == 0x000008, "Wrong alignment on UTask_RemoveRecall_C"); \ +static_assert(sizeof(UTask_RemoveRecall_C) == 0x000090, "Wrong size on UTask_RemoveRecall_C"); \ +static_assert(offsetof(UTask_RemoveRecall_C, UberGraphFrame) == 0x000088, "Member 'UTask_RemoveRecall_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark \ +static_assert(alignof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark) == 0x000008, "Wrong alignment on TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark"); \ +static_assert(sizeof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark) == 0x000090, "Wrong size on TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, EntryPoint) == 0x000000, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000004, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, Temp_int_Loop_Counter_Variable) == 0x000010, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_Add_IntInt_ReturnValue) == 0x000014, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, K2Node_Event_InAutomata) == 0x000018, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, K2Node_Event_InState) == 0x000020, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_GetPlayerPawn_ReturnValue) == 0x000030, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000038, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000040, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_Array_Get_Item) == 0x000058, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_Less_IntInt_ReturnValue) == 0x000060, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, CallFunc_GetDialogueInfo_ReturnValue) == 0x000068, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, K2Node_MakeArray_Array) == 0x000070, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark, K2Node_MakeArray_Array_1) == 0x000080, "Member 'TriggerEnemyBark_C_ExecuteUbergraph_TriggerEnemyBark::K2Node_MakeArray_Array_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TriggerEnemyBark_C_ReceiveExecute \ +static_assert(alignof(TriggerEnemyBark_C_ReceiveExecute) == 0x000008, "Wrong alignment on TriggerEnemyBark_C_ReceiveExecute"); \ +static_assert(sizeof(TriggerEnemyBark_C_ReceiveExecute) == 0x000010, "Wrong size on TriggerEnemyBark_C_ReceiveExecute"); \ +static_assert(offsetof(TriggerEnemyBark_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'TriggerEnemyBark_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(TriggerEnemyBark_C_ReceiveExecute, InState) == 0x000008, "Member 'TriggerEnemyBark_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTriggerEnemyBark_C \ +static_assert(alignof(UTriggerEnemyBark_C) == 0x000008, "Wrong alignment on UTriggerEnemyBark_C"); \ +static_assert(sizeof(UTriggerEnemyBark_C) == 0x0000A0, "Wrong size on UTriggerEnemyBark_C"); \ +static_assert(offsetof(UTriggerEnemyBark_C, UberGraphFrame) == 0x000088, "Member 'UTriggerEnemyBark_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTriggerEnemyBark_C, Enemy_Tag) == 0x000090, "Member 'UTriggerEnemyBark_C::Enemy_Tag' has a wrong offset!"); \ +static_assert(offsetof(UTriggerEnemyBark_C, Bark_Tag) == 0x000098, "Member 'UTriggerEnemyBark_C::Bark_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDPoS_Patience_C \ +static_assert(alignof(UPD_STS_MDPoS_Patience_C) == 0x000008, "Wrong alignment on UPD_STS_MDPoS_Patience_C"); \ +static_assert(sizeof(UPD_STS_MDPoS_Patience_C) == 0x000058, "Wrong size on UPD_STS_MDPoS_Patience_C"); \ + +#define DUMPER7_ASSERTS_Int_Set_C_ExecuteUbergraph_Int_Set \ +static_assert(alignof(Int_Set_C_ExecuteUbergraph_Int_Set) == 0x000008, "Wrong alignment on Int_Set_C_ExecuteUbergraph_Int_Set"); \ +static_assert(sizeof(Int_Set_C_ExecuteUbergraph_Int_Set) == 0x000018, "Wrong size on Int_Set_C_ExecuteUbergraph_Int_Set"); \ +static_assert(offsetof(Int_Set_C_ExecuteUbergraph_Int_Set, EntryPoint) == 0x000000, "Member 'Int_Set_C_ExecuteUbergraph_Int_Set::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Int_Set_C_ExecuteUbergraph_Int_Set, K2Node_Event_InAutomata) == 0x000008, "Member 'Int_Set_C_ExecuteUbergraph_Int_Set::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Set_C_ExecuteUbergraph_Int_Set, K2Node_Event_InState) == 0x000010, "Member 'Int_Set_C_ExecuteUbergraph_Int_Set::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Int_Set_C_ReceiveExecute \ +static_assert(alignof(Int_Set_C_ReceiveExecute) == 0x000008, "Wrong alignment on Int_Set_C_ReceiveExecute"); \ +static_assert(sizeof(Int_Set_C_ReceiveExecute) == 0x000010, "Wrong size on Int_Set_C_ReceiveExecute"); \ +static_assert(offsetof(Int_Set_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Int_Set_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Int_Set_C_ReceiveExecute, InState) == 0x000008, "Member 'Int_Set_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UInt_Set_C \ +static_assert(alignof(UInt_Set_C) == 0x000008, "Wrong alignment on UInt_Set_C"); \ +static_assert(sizeof(UInt_Set_C) == 0x0000A0, "Wrong size on UInt_Set_C"); \ +static_assert(offsetof(UInt_Set_C, UberGraphFrame) == 0x000088, "Member 'UInt_Set_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UInt_Set_C, Integer) == 0x000090, "Member 'UInt_Set_C::Integer' has a wrong offset!"); \ +static_assert(offsetof(UInt_Set_C, Value) == 0x000098, "Member 'UInt_Set_C::Value' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap \ +static_assert(alignof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap) == 0x000008, "Wrong alignment on UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap"); \ +static_assert(sizeof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap) == 0x000020, "Wrong size on UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap, EntryPoint) == 0x000000, "Member 'UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap, K2Node_Event_InAutomata) == 0x000010, "Member 'UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap, K2Node_Event_InState) == 0x000018, "Member 'UnlockTrainersInMap_C_ExecuteUbergraph_UnlockTrainersInMap::K2Node_Event_InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UnlockTrainersInMap_C_ReceiveExecute \ +static_assert(alignof(UnlockTrainersInMap_C_ReceiveExecute) == 0x000008, "Wrong alignment on UnlockTrainersInMap_C_ReceiveExecute"); \ +static_assert(sizeof(UnlockTrainersInMap_C_ReceiveExecute) == 0x000010, "Wrong size on UnlockTrainersInMap_C_ReceiveExecute"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'UnlockTrainersInMap_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(UnlockTrainersInMap_C_ReceiveExecute, InState) == 0x000008, "Member 'UnlockTrainersInMap_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UUnlockTrainersInMap_C \ +static_assert(alignof(UUnlockTrainersInMap_C) == 0x000008, "Wrong alignment on UUnlockTrainersInMap_C"); \ +static_assert(sizeof(UUnlockTrainersInMap_C) == 0x000090, "Wrong size on UUnlockTrainersInMap_C"); \ +static_assert(offsetof(UUnlockTrainersInMap_C, UberGraphFrame) == 0x000088, "Member 'UUnlockTrainersInMap_C::UberGraphFrame' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Interactable_Laptop_C \ +static_assert(alignof(ABP_Interactable_Laptop_C) == 0x000008, "Wrong alignment on ABP_Interactable_Laptop_C"); \ +static_assert(sizeof(ABP_Interactable_Laptop_C) == 0x000350, "Wrong size on ABP_Interactable_Laptop_C"); \ +static_assert(offsetof(ABP_Interactable_Laptop_C, WrestlerHeightenedSensesClue) == 0x000328, "Member 'ABP_Interactable_Laptop_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_C, WrestlerInteractionPoint) == 0x000330, "Member 'ABP_Interactable_Laptop_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_C, UseInteraction) == 0x000338, "Member 'ABP_Interactable_Laptop_C::UseInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_C, Mesh) == 0x000340, "Member 'ABP_Interactable_Laptop_C::Mesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_C, IsOn) == 0x000348, "Member 'ABP_Interactable_Laptop_C::IsOn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A \ +static_assert(alignof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A) == 0x000004, "Wrong alignment on BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A"); \ +static_assert(sizeof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A) == 0x000028, "Wrong size on BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A, EntryPoint) == 0x000000, "Member 'BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A, Temp_delegate_Variable) == 0x000004, "Member 'BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A, Temp_delegate_Variable_1) == 0x000014, "Member 'BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A, K2Node_CustomEvent_Toggle_On_Off) == 0x000024, "Member 'BP_Interactable_Laptop_HB3A_C_ExecuteUbergraph_BP_Interactable_Laptop_HB3A::K2Node_CustomEvent_Toggle_On_Off' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Laptop_HB3A_C_GetInteractableData \ +static_assert(alignof(BP_Interactable_Laptop_HB3A_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_Interactable_Laptop_HB3A_C_GetInteractableData"); \ +static_assert(sizeof(BP_Interactable_Laptop_HB3A_C_GetInteractableData) == 0x000018, "Wrong size on BP_Interactable_Laptop_HB3A_C_GetInteractableData"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_Interactable_Laptop_HB3A_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Laptop_HB3A_C_GetItemState \ +static_assert(alignof(BP_Interactable_Laptop_HB3A_C_GetItemState) == 0x000001, "Wrong alignment on BP_Interactable_Laptop_HB3A_C_GetItemState"); \ +static_assert(sizeof(BP_Interactable_Laptop_HB3A_C_GetItemState) == 0x000001, "Wrong size on BP_Interactable_Laptop_HB3A_C_GetItemState"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_Interactable_Laptop_HB3A_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen \ +static_assert(alignof(BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen) == 0x000001, "Wrong alignment on BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen"); \ +static_assert(sizeof(BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen) == 0x000001, "Wrong size on BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen, Off) == 0x000000, "Member 'BP_Interactable_Laptop_HB3A_C_Toggle_Laptop_Screen::Off' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Interactable_Laptop_HB3A_C_UserConstructionScript \ +static_assert(alignof(BP_Interactable_Laptop_HB3A_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_Interactable_Laptop_HB3A_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Interactable_Laptop_HB3A_C_UserConstructionScript) == 0x000001, "Wrong size on BP_Interactable_Laptop_HB3A_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Interactable_Laptop_HB3A_C_UserConstructionScript, CallFunc_SetStaticMesh_ReturnValue) == 0x000000, "Member 'BP_Interactable_Laptop_HB3A_C_UserConstructionScript::CallFunc_SetStaticMesh_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Interactable_Laptop_HB3A_C \ +static_assert(alignof(ABP_Interactable_Laptop_HB3A_C) == 0x000008, "Wrong alignment on ABP_Interactable_Laptop_HB3A_C"); \ +static_assert(sizeof(ABP_Interactable_Laptop_HB3A_C) == 0x000370, "Wrong size on ABP_Interactable_Laptop_HB3A_C"); \ +static_assert(offsetof(ABP_Interactable_Laptop_HB3A_C, UberGraphFrame_BP_Interactable_Laptop_HB3A_C) == 0x000350, "Member 'ABP_Interactable_Laptop_HB3A_C::UberGraphFrame_BP_Interactable_Laptop_HB3A_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_HB3A_C, SpotLight) == 0x000358, "Member 'ABP_Interactable_Laptop_HB3A_C::SpotLight' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_HB3A_C, ScreenMesh) == 0x000360, "Member 'ABP_Interactable_Laptop_HB3A_C::ScreenMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_Interactable_Laptop_HB3A_C, Screen_Mesh) == 0x000368, "Member 'ABP_Interactable_Laptop_HB3A_C::Screen_Mesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop \ +static_assert(alignof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop) == 0x000008, "Wrong alignment on ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop"); \ +static_assert(sizeof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop) == 0x000030, "Wrong size on ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, EntryPoint) == 0x000000, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, K2Node_Event_InAutomata) == 0x000008, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, K2Node_Event_InState) == 0x000010, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, K2Node_DynamicCast_AsBP_Interactable_Laptop_HB3A) == 0x000020, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::K2Node_DynamicCast_AsBP_Interactable_Laptop_HB3A' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop, CallFunc_IsValid_ReturnValue) == 0x000029, "Member 'ToggleLaptop_C_ExecuteUbergraph_ToggleLaptop::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ToggleLaptop_C_ReceiveExecute \ +static_assert(alignof(ToggleLaptop_C_ReceiveExecute) == 0x000008, "Wrong alignment on ToggleLaptop_C_ReceiveExecute"); \ +static_assert(sizeof(ToggleLaptop_C_ReceiveExecute) == 0x000010, "Wrong size on ToggleLaptop_C_ReceiveExecute"); \ +static_assert(offsetof(ToggleLaptop_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ToggleLaptop_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ToggleLaptop_C_ReceiveExecute, InState) == 0x000008, "Member 'ToggleLaptop_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UToggleLaptop_C \ +static_assert(alignof(UToggleLaptop_C) == 0x000008, "Wrong alignment on UToggleLaptop_C"); \ +static_assert(sizeof(UToggleLaptop_C) == 0x0000C0, "Wrong size on UToggleLaptop_C"); \ +static_assert(offsetof(UToggleLaptop_C, UberGraphFrame) == 0x000088, "Member 'UToggleLaptop_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UToggleLaptop_C, Laptop) == 0x000090, "Member 'UToggleLaptop_C::Laptop' has a wrong offset!"); \ +static_assert(offsetof(UToggleLaptop_C, _Off) == 0x0000B8, "Member 'UToggleLaptop_C::_Off' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALV_RE_Pro_Escape_C \ +static_assert(alignof(ALV_RE_Pro_Escape_C) == 0x000008, "Wrong alignment on ALV_RE_Pro_Escape_C"); \ +static_assert(sizeof(ALV_RE_Pro_Escape_C) == 0x0002A0, "Wrong size on ALV_RE_Pro_Escape_C"); \ + +#define DUMPER7_ASSERTS_UPD_FM_CG_Wheeler_C \ +static_assert(alignof(UPD_FM_CG_Wheeler_C) == 0x000008, "Wrong alignment on UPD_FM_CG_Wheeler_C"); \ +static_assert(sizeof(UPD_FM_CG_Wheeler_C) == 0x000058, "Wrong size on UPD_FM_CG_Wheeler_C"); \ + +#define DUMPER7_ASSERTS_SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility \ +static_assert(alignof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility) == 0x000008, "Wrong alignment on SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility"); \ +static_assert(sizeof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility) == 0x000020, "Wrong size on SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility, EntryPoint) == 0x000000, "Member 'SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility, K2Node_Event_InAutomata) == 0x000008, "Member 'SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility, K2Node_Event_InState) == 0x000010, "Member 'SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000018, "Member 'SetMassEntityVisibility_C_ExecuteUbergraph_SetMassEntityVisibility::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetMassEntityVisibility_C_ReceiveExecute \ +static_assert(alignof(SetMassEntityVisibility_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetMassEntityVisibility_C_ReceiveExecute"); \ +static_assert(sizeof(SetMassEntityVisibility_C_ReceiveExecute) == 0x000010, "Wrong size on SetMassEntityVisibility_C_ReceiveExecute"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetMassEntityVisibility_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetMassEntityVisibility_C_ReceiveExecute, InState) == 0x000008, "Member 'SetMassEntityVisibility_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetMassEntityVisibility_C \ +static_assert(alignof(USetMassEntityVisibility_C) == 0x000008, "Wrong alignment on USetMassEntityVisibility_C"); \ +static_assert(sizeof(USetMassEntityVisibility_C) == 0x000098, "Wrong size on USetMassEntityVisibility_C"); \ +static_assert(offsetof(USetMassEntityVisibility_C, UberGraphFrame) == 0x000088, "Member 'USetMassEntityVisibility_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetMassEntityVisibility_C, InIsVisible) == 0x000090, "Member 'USetMassEntityVisibility_C::InIsVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet \ +static_assert(alignof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet) == 0x000008, "Wrong alignment on ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet"); \ +static_assert(sizeof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet) == 0x000030, "Wrong size on ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, EntryPoint) == 0x000000, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, K2Node_Event_InAutomata) == 0x000008, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, K2Node_Event_InState) == 0x000010, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, K2Node_DynamicCast_AsBP_Enemey_Safety_Net) == 0x000020, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::K2Node_DynamicCast_AsBP_Enemey_Safety_Net' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ActivateSafetyNet_C_ExecuteUbergraph_ActivateSafetyNet::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActivateSafetyNet_C_ReceiveExecute \ +static_assert(alignof(ActivateSafetyNet_C_ReceiveExecute) == 0x000008, "Wrong alignment on ActivateSafetyNet_C_ReceiveExecute"); \ +static_assert(sizeof(ActivateSafetyNet_C_ReceiveExecute) == 0x000010, "Wrong size on ActivateSafetyNet_C_ReceiveExecute"); \ +static_assert(offsetof(ActivateSafetyNet_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ActivateSafetyNet_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ActivateSafetyNet_C_ReceiveExecute, InState) == 0x000008, "Member 'ActivateSafetyNet_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActivateSafetyNet_C \ +static_assert(alignof(UActivateSafetyNet_C) == 0x000008, "Wrong alignment on UActivateSafetyNet_C"); \ +static_assert(sizeof(UActivateSafetyNet_C) == 0x0000C0, "Wrong size on UActivateSafetyNet_C"); \ +static_assert(offsetof(UActivateSafetyNet_C, UberGraphFrame) == 0x000088, "Member 'UActivateSafetyNet_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UActivateSafetyNet_C, SafetyNet) == 0x000090, "Member 'UActivateSafetyNet_C::SafetyNet' has a wrong offset!"); \ +static_assert(offsetof(UActivateSafetyNet_C, Activate) == 0x0000B8, "Member 'UActivateSafetyNet_C::Activate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemiesContinuous_C_EnemySpawned \ +static_assert(alignof(SpawnEnemiesContinuous_C_EnemySpawned) == 0x000008, "Wrong alignment on SpawnEnemiesContinuous_C_EnemySpawned"); \ +static_assert(sizeof(SpawnEnemiesContinuous_C_EnemySpawned) == 0x000008, "Wrong size on SpawnEnemiesContinuous_C_EnemySpawned"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_EnemySpawned, Enemy) == 0x000000, "Member 'SpawnEnemiesContinuous_C_EnemySpawned::Enemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous \ +static_assert(alignof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous) == 0x000010, "Wrong alignment on SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous"); \ +static_assert(sizeof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous) == 0x0004E0, "Wrong size on SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, EntryPoint) == 0x000000, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetCameraRotation_ReturnValue) == 0x000010, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetCameraRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetCameraLocation_ReturnValue) == 0x000028, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetCameraLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_MakeTransform_ReturnValue) == 0x000040, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable) == 0x0000A0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetTransformAxisVector_ReturnValue) == 0x0000A8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetTransformAxisVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_1) == 0x0000C0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_2) == 0x0000C4, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_bool_Variable) == 0x0000C8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_bool_Variable_1) == 0x0000C9, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_name_Variable) == 0x0000CC, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_name_Variable' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_3) == 0x0000D4, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_Event_InAutomata) == 0x0000D8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_Event_InState) == 0x0000E0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Array_Length_ReturnValue) == 0x0000E8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_IntInt_ReturnValue) == 0x0000EC, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Subtract_IntInt_ReturnValue) == 0x0000F0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_CreateDelegate_OutputDelegate) == 0x0000F4, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetAllActorsOfClassWithTag_OutActors) == 0x000108, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetAllActorsOfClassWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Array_Length_ReturnValue_1) == 0x000118, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Wrap_ReturnValue) == 0x00011C, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Wrap_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToInt64_ReturnValue) == 0x000120, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToInt64_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_4) == 0x000128, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData) == 0x000130, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_5) == 0x000180, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_CustomEvent_Enemy) == 0x000188, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_CustomEvent_Enemy' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Array_Add_ReturnValue) == 0x000190, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Array_Get_Item) == 0x000198, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0001C0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0001C8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_DynamicCast_AsWrestler_AISpawner) == 0x0001D0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_DynamicCast_AsWrestler_AISpawner' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_DynamicCast_bSuccess) == 0x0001D8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_IsValid_ReturnValue) == 0x0001D9, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0001E0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0001F8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Normal_ReturnValue) == 0x000210, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Normal_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Dot_VectorVector_ReturnValue) == 0x000228, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000230, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_DegAcos_ReturnValue) == 0x000238, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_DegAcos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000240, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000248, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Round_ReturnValue) == 0x00024C, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Round_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_6) == 0x000250, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToInt64_ReturnValue_1) == 0x000258, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToInt64_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData_1) == 0x000260, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_Select_Default) == 0x0002B0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x0002B8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0002C0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_MapRangeClamped_ReturnValue) == 0x0002C8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData_2) == 0x0002D0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_IntInt_ReturnValue_1) == 0x000320, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToInt64_ReturnValue_2) == 0x000328, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToInt64_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData_3) == 0x000330, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000380, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000388, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Round_ReturnValue_1) == 0x00038C, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Round_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToInt64_ReturnValue_3) == 0x000390, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToInt64_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData_4) == 0x000398, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData_4' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, Temp_int_Variable_7) == 0x0003E8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::Temp_int_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetProperty_ReturnValue) == 0x0003EC, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_IsValid_ReturnValue_1) == 0x0003ED, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0003EE, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x0003EF, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0003F0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0003F8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_BooleanAND_ReturnValue) == 0x0003F9, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetProperty_ReturnValue_1) == 0x0003FC, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_BooleanOR_ReturnValue) == 0x000400, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_Select_Default_1) == 0x000404, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_GetProperty_ReturnValue_2) == 0x000408, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_Select_Default_2) == 0x00040C, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_IntInt_ReturnValue_2) == 0x000410, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Add_IntInt_ReturnValue_3) == 0x000414, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000418, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000420, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_MapRangeClamped_ReturnValue_1) == 0x000428, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_MapRangeClamped_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_FTrunc_ReturnValue) == 0x000430, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Conv_IntToInt64_ReturnValue_4) == 0x000438, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Conv_IntToInt64_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Less_IntInt_ReturnValue) == 0x000440, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeStruct_FormatArgumentData_5) == 0x000448, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeStruct_FormatArgumentData_5' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_MakeArray_Array) == 0x000498, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_Format_ReturnValue) == 0x0004A8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_MapRangeClamped_OutRangeA_ImplicitCast) == 0x0004C0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_MapRangeClamped_OutRangeA_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, CallFunc_MapRangeClamped_OutRangeB_ImplicitCast) == 0x0004C8, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::CallFunc_MapRangeClamped_OutRangeB_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous, K2Node_VariableSet_CurrentSpawnFrequency_ImplicitCast) == 0x0004D0, "Member 'SpawnEnemiesContinuous_C_ExecuteUbergraph_SpawnEnemiesContinuous::K2Node_VariableSet_CurrentSpawnFrequency_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SpawnEnemiesContinuous_C_ReceiveExecute \ +static_assert(alignof(SpawnEnemiesContinuous_C_ReceiveExecute) == 0x000008, "Wrong alignment on SpawnEnemiesContinuous_C_ReceiveExecute"); \ +static_assert(sizeof(SpawnEnemiesContinuous_C_ReceiveExecute) == 0x000010, "Wrong size on SpawnEnemiesContinuous_C_ReceiveExecute"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SpawnEnemiesContinuous_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SpawnEnemiesContinuous_C_ReceiveExecute, InState) == 0x000008, "Member 'SpawnEnemiesContinuous_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USpawnEnemiesContinuous_C \ +static_assert(alignof(USpawnEnemiesContinuous_C) == 0x000008, "Wrong alignment on USpawnEnemiesContinuous_C"); \ +static_assert(sizeof(USpawnEnemiesContinuous_C) == 0x000120, "Wrong size on USpawnEnemiesContinuous_C"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, UberGraphFrame) == 0x000088, "Member 'USpawnEnemiesContinuous_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Spawners) == 0x000090, "Member 'USpawnEnemiesContinuous_C::Spawners' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Index_0) == 0x0000A0, "Member 'USpawnEnemiesContinuous_C::Index_0' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, SpawnFrequency_Start) == 0x0000A4, "Member 'USpawnEnemiesContinuous_C::SpawnFrequency_Start' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, SpawnFrequency_End) == 0x0000A8, "Member 'USpawnEnemiesContinuous_C::SpawnFrequency_End' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, MinEnemies) == 0x0000AC, "Member 'USpawnEnemiesContinuous_C::MinEnemies' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, MaxEnemies) == 0x0000B0, "Member 'USpawnEnemiesContinuous_C::MaxEnemies' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Aditional_MinEnemies_Easy) == 0x0000B4, "Member 'USpawnEnemiesContinuous_C::Aditional_MinEnemies_Easy' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Aditional_MaxEnemies_Easy) == 0x0000B8, "Member 'USpawnEnemiesContinuous_C::Aditional_MaxEnemies_Easy' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Aditional_MinEnemies_Hard) == 0x0000BC, "Member 'USpawnEnemiesContinuous_C::Aditional_MinEnemies_Hard' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Aditional_MaxEnemies_Hard) == 0x0000C0, "Member 'USpawnEnemiesContinuous_C::Aditional_MaxEnemies_Hard' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, TimeToStartRampingUp) == 0x0000C8, "Member 'USpawnEnemiesContinuous_C::TimeToStartRampingUp' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, _Frequency) == 0x0000D0, "Member 'USpawnEnemiesContinuous_C::_Frequency' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, StartTime) == 0x0000D8, "Member 'USpawnEnemiesContinuous_C::StartTime' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, ExtraTime) == 0x0000E0, "Member 'USpawnEnemiesContinuous_C::ExtraTime' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, MinEnemiesSpawnedToComplete) == 0x0000E8, "Member 'USpawnEnemiesContinuous_C::MinEnemiesSpawnedToComplete' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, MaxEnemiesSpawned) == 0x0000EC, "Member 'USpawnEnemiesContinuous_C::MaxEnemiesSpawned' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, PrintDebug) == 0x0000F0, "Member 'USpawnEnemiesContinuous_C::PrintDebug' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, IgnoreLineOfSightChecker) == 0x0000F1, "Member 'USpawnEnemiesContinuous_C::IgnoreLineOfSightChecker' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, In_Objective) == 0x0000F8, "Member 'USpawnEnemiesContinuous_C::In_Objective' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, CurrentSpawnFrequency) == 0x000100, "Member 'USpawnEnemiesContinuous_C::CurrentSpawnFrequency' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, EnemiesSpawned) == 0x000104, "Member 'USpawnEnemiesContinuous_C::EnemiesSpawned' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, Difficulty) == 0x000108, "Member 'USpawnEnemiesContinuous_C::Difficulty' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, SpawnAnimationTag) == 0x000110, "Member 'USpawnEnemiesContinuous_C::SpawnAnimationTag' has a wrong offset!"); \ +static_assert(offsetof(USpawnEnemiesContinuous_C, CancelSpawningWithHeraBool) == 0x000118, "Member 'USpawnEnemiesContinuous_C::CancelSpawningWithHeraBool' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence \ +static_assert(alignof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence) == 0x000008, "Wrong alignment on Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence"); \ +static_assert(sizeof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence) == 0x000078, "Wrong size on Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, EntryPoint) == 0x000000, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, Temp_int_Array_Index_Variable) == 0x000004, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, K2Node_Event_InAutomata) == 0x000010, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, K2Node_Event_InState) == 0x000018, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_GetAllActorsOfClass_OutActors) == 0x000020, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_Array_Get_Item) == 0x000030, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000038, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_Array_Length_ReturnValue) == 0x00003C, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000048, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000058, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000060, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, K2Node_DynamicCast_AsLevel_Sequence) == 0x000068, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::K2Node_DynamicCast_AsLevel_Sequence' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'Override_Feed_Sequence_C_ExecuteUbergraph_Override_Feed_Sequence::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Override_Feed_Sequence_C_ReceiveExecute \ +static_assert(alignof(Override_Feed_Sequence_C_ReceiveExecute) == 0x000008, "Wrong alignment on Override_Feed_Sequence_C_ReceiveExecute"); \ +static_assert(sizeof(Override_Feed_Sequence_C_ReceiveExecute) == 0x000010, "Wrong size on Override_Feed_Sequence_C_ReceiveExecute"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Override_Feed_Sequence_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Override_Feed_Sequence_C_ReceiveExecute, InState) == 0x000008, "Member 'Override_Feed_Sequence_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UOverride_Feed_Sequence_C \ +static_assert(alignof(UOverride_Feed_Sequence_C) == 0x000008, "Wrong alignment on UOverride_Feed_Sequence_C"); \ +static_assert(sizeof(UOverride_Feed_Sequence_C) == 0x0000C0, "Wrong size on UOverride_Feed_Sequence_C"); \ +static_assert(offsetof(UOverride_Feed_Sequence_C, UberGraphFrame) == 0x000088, "Member 'UOverride_Feed_Sequence_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UOverride_Feed_Sequence_C, FeedSequence) == 0x000090, "Member 'UOverride_Feed_Sequence_C::FeedSequence' has a wrong offset!"); \ +static_assert(offsetof(UOverride_Feed_Sequence_C, Specific_Tag) == 0x0000B8, "Member 'UOverride_Feed_Sequence_C::Specific_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail \ +static_assert(alignof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail) == 0x000008, "Wrong alignment on BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail"); \ +static_assert(sizeof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail) == 0x000088, "Wrong size on BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, EntryPoint) == 0x000000, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, Temp_int_Array_Index_Variable_1) == 0x000010, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_Event_InDuration_1) == 0x000014, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_Event_InDuration) == 0x000018, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_GetAttachedActors_OutActors) == 0x000020, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_GetAttachedActors_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, Temp_int_Loop_Counter_Variable_1) == 0x000030, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Array_Get_Item) == 0x000038, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_DynamicCast_AsBP_New_Clue_Trail_Clue_Base) == 0x000040, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_DynamicCast_AsBP_New_Clue_Trail_Clue_Base' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Add_IntInt_ReturnValue_1) == 0x00004C, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Less_IntInt_ReturnValue) == 0x000054, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_GetAttachedActors_OutActors_1) == 0x000058, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_GetAttachedActors_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Array_Get_Item_1) == 0x000068, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Array_Length_ReturnValue_1) == 0x000070, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_DynamicCast_AsBP_New_Clue_Trail_Clue_Base_1) == 0x000078, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_DynamicCast_AsBP_New_Clue_Trail_Clue_Base_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_DynamicCast_bSuccess_1) == 0x000080, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, CallFunc_Less_IntInt_ReturnValue_1) == 0x000081, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail, K2Node_Event_bInVisible) == 0x000082, "Member 'BP_NewClueTrail_C_ExecuteUbergraph_BP_NewClueTrail::K2Node_Event_bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_GetClueDataAsset \ +static_assert(alignof(BP_NewClueTrail_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_NewClueTrail_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_NewClueTrail_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_NewClueTrail_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_NewClueTrail_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_NewClueTrail_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_NewClueTrail_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_GetMeshComponent \ +static_assert(alignof(BP_NewClueTrail_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_NewClueTrail_C_GetMeshComponent"); \ +static_assert(sizeof(BP_NewClueTrail_C_GetMeshComponent) == 0x000008, "Wrong size on BP_NewClueTrail_C_GetMeshComponent"); \ +static_assert(offsetof(BP_NewClueTrail_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_NewClueTrail_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_SetVisionVisibility \ +static_assert(alignof(BP_NewClueTrail_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_NewClueTrail_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_NewClueTrail_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_NewClueTrail_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_NewClueTrail_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_NewClueTrail_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_VisionFadeInBegin \ +static_assert(alignof(BP_NewClueTrail_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_NewClueTrail_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_NewClueTrail_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_NewClueTrail_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_NewClueTrail_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_NewClueTrail_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_VisionFadeOutBegin \ +static_assert(alignof(BP_NewClueTrail_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_NewClueTrail_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_NewClueTrail_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_NewClueTrail_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_NewClueTrail_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_NewClueTrail_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_NewClueTrail_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_NewClueTrail_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_NewClueTrail_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_NewClueTrail_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_NewClueTrail_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_NewClueTrail_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_NewClueTrail_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_NewClueTrail_C \ +static_assert(alignof(ABP_NewClueTrail_C) == 0x000008, "Wrong alignment on ABP_NewClueTrail_C"); \ +static_assert(sizeof(ABP_NewClueTrail_C) == 0x0002C8, "Wrong size on ABP_NewClueTrail_C"); \ +static_assert(offsetof(ABP_NewClueTrail_C, UberGraphFrame) == 0x000298, "Member 'ABP_NewClueTrail_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrail_C, WrestlerHeightenedSensesClue) == 0x0002A0, "Member 'ABP_NewClueTrail_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrail_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_NewClueTrail_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrail_C, Clues) == 0x0002B0, "Member 'ABP_NewClueTrail_C::Clues' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrail_C, VisibleInNormalView) == 0x0002C0, "Member 'ABP_NewClueTrail_C::VisibleInNormalView' has a wrong offset!"); \ +static_assert(offsetof(ABP_NewClueTrail_C, ActivateOnBeginPlay) == 0x0002C1, "Member 'ABP_NewClueTrail_C::ActivateOnBeginPlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail \ +static_assert(alignof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail) == 0x000008, "Wrong alignment on EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail"); \ +static_assert(sizeof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail) == 0x000068, "Wrong size on EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, EntryPoint) == 0x000000, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, Temp_int_Array_Index_Variable) == 0x000008, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, K2Node_Event_InAutomata) == 0x000010, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, K2Node_Event_InState) == 0x000018, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_Array_Get_Item) == 0x000020, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_Array_Length_ReturnValue) == 0x000050, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, K2Node_DynamicCast_AsBP_New_Clue_Trail) == 0x000058, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::K2Node_DynamicCast_AsBP_New_Clue_Trail' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_Less_IntInt_ReturnValue) == 0x000061, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_IsValid_ReturnValue) == 0x000062, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail, CallFunc_IsValid_ReturnValue_1) == 0x000063, "Member 'EnableClueTrail_C_ExecuteUbergraph_EnableClueTrail::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_EnableClueTrail_C_ReceiveExecute \ +static_assert(alignof(EnableClueTrail_C_ReceiveExecute) == 0x000008, "Wrong alignment on EnableClueTrail_C_ReceiveExecute"); \ +static_assert(sizeof(EnableClueTrail_C_ReceiveExecute) == 0x000010, "Wrong size on EnableClueTrail_C_ReceiveExecute"); \ +static_assert(offsetof(EnableClueTrail_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'EnableClueTrail_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(EnableClueTrail_C_ReceiveExecute, InState) == 0x000008, "Member 'EnableClueTrail_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEnableClueTrail_C \ +static_assert(alignof(UEnableClueTrail_C) == 0x000008, "Wrong alignment on UEnableClueTrail_C"); \ +static_assert(sizeof(UEnableClueTrail_C) == 0x0000A8, "Wrong size on UEnableClueTrail_C"); \ +static_assert(offsetof(UEnableClueTrail_C, UberGraphFrame) == 0x000088, "Member 'UEnableClueTrail_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UEnableClueTrail_C, ClueTrails) == 0x000090, "Member 'UEnableClueTrail_C::ClueTrails' has a wrong offset!"); \ +static_assert(offsetof(UEnableClueTrail_C, ShouldEnable) == 0x0000A0, "Member 'UEnableClueTrail_C::ShouldEnable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline \ +static_assert(alignof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline) == 0x000008, "Wrong alignment on DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline"); \ +static_assert(sizeof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline) == 0x000030, "Wrong size on DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, EntryPoint) == 0x000000, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, K2Node_Event_InAutomata) == 0x000010, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, K2Node_Event_InState) == 0x000018, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, K2Node_DynamicCast_AsBP_Scent_Trail) == 0x000020, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::K2Node_DynamicCast_AsBP_Scent_Trail' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'DetachWaypointFromSpline_C_ExecuteUbergraph_DetachWaypointFromSpline::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_DetachWaypointFromSpline_C_ReceiveExecute \ +static_assert(alignof(DetachWaypointFromSpline_C_ReceiveExecute) == 0x000008, "Wrong alignment on DetachWaypointFromSpline_C_ReceiveExecute"); \ +static_assert(sizeof(DetachWaypointFromSpline_C_ReceiveExecute) == 0x000010, "Wrong size on DetachWaypointFromSpline_C_ReceiveExecute"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'DetachWaypointFromSpline_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(DetachWaypointFromSpline_C_ReceiveExecute, InState) == 0x000008, "Member 'DetachWaypointFromSpline_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDetachWaypointFromSpline_C \ +static_assert(alignof(UDetachWaypointFromSpline_C) == 0x000008, "Wrong alignment on UDetachWaypointFromSpline_C"); \ +static_assert(sizeof(UDetachWaypointFromSpline_C) == 0x0000B8, "Wrong size on UDetachWaypointFromSpline_C"); \ +static_assert(offsetof(UDetachWaypointFromSpline_C, UberGraphFrame) == 0x000088, "Member 'UDetachWaypointFromSpline_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UDetachWaypointFromSpline_C, ScentTrail) == 0x000090, "Member 'UDetachWaypointFromSpline_C::ScentTrail' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeVampiricVisionAvailability_C_Activate_Next_Trail_ \ +static_assert(alignof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_) == 0x000008, "Wrong alignment on ChangeVampiricVisionAvailability_C_Activate_Next_Trail_"); \ +static_assert(sizeof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_) == 0x000020, "Wrong size on ChangeVampiricVisionAvailability_C_Activate_Next_Trail_"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_, self2) == 0x000000, "Member 'ChangeVampiricVisionAvailability_C_Activate_Next_Trail_::self2' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'ChangeVampiricVisionAvailability_C_Activate_Next_Trail_::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_, K2Node_DynamicCast_AsBP_Scent_Trail) == 0x000010, "Member 'ChangeVampiricVisionAvailability_C_Activate_Next_Trail_::K2Node_DynamicCast_AsBP_Scent_Trail' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_Activate_Next_Trail_, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'ChangeVampiricVisionAvailability_C_Activate_Next_Trail_::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability \ +static_assert(alignof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability) == 0x000008, "Wrong alignment on ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability"); \ +static_assert(sizeof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability) == 0x000060, "Wrong size on ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, EntryPoint) == 0x000000, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_Event_InAutomata) == 0x000008, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_Event_InState) == 0x000010, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, CallFunc_LoadSynchronousSoftActorPointer_ReturnValue) == 0x000018, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::CallFunc_LoadSynchronousSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface) == 0x000020, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_AsWrestler_Heightened_Senses_Interface' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000038, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_AsActor) == 0x000040, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, CallFunc_DoesImplementInterface_ReturnValue) == 0x000049, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_AsBP_Scent_Trail) == 0x000050, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_AsBP_Scent_Trail' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, K2Node_DynamicCast_bSuccess_2) == 0x000058, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability, CallFunc_BooleanAND_ReturnValue) == 0x00005A, "Member 'ChangeVampiricVisionAvailability_C_ExecuteUbergraph_ChangeVampiricVisionAvailability::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ChangeVampiricVisionAvailability_C_ReceiveExecute \ +static_assert(alignof(ChangeVampiricVisionAvailability_C_ReceiveExecute) == 0x000008, "Wrong alignment on ChangeVampiricVisionAvailability_C_ReceiveExecute"); \ +static_assert(sizeof(ChangeVampiricVisionAvailability_C_ReceiveExecute) == 0x000010, "Wrong size on ChangeVampiricVisionAvailability_C_ReceiveExecute"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ChangeVampiricVisionAvailability_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ChangeVampiricVisionAvailability_C_ReceiveExecute, InState) == 0x000008, "Member 'ChangeVampiricVisionAvailability_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChangeVampiricVisionAvailability_C \ +static_assert(alignof(UChangeVampiricVisionAvailability_C) == 0x000008, "Wrong alignment on UChangeVampiricVisionAvailability_C"); \ +static_assert(sizeof(UChangeVampiricVisionAvailability_C) == 0x0000F8, "Wrong size on UChangeVampiricVisionAvailability_C"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, UberGraphFrame) == 0x000088, "Member 'UChangeVampiricVisionAvailability_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, Available) == 0x000090, "Member 'UChangeVampiricVisionAvailability_C::Available' has a wrong offset!"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, Target) == 0x000098, "Member 'UChangeVampiricVisionAvailability_C::Target' has a wrong offset!"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, Start_Active_Based_On_Previous_Trail) == 0x0000C0, "Member 'UChangeVampiricVisionAvailability_C::Start_Active_Based_On_Previous_Trail' has a wrong offset!"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, Previous_Trail) == 0x0000C8, "Member 'UChangeVampiricVisionAvailability_C::Previous_Trail' has a wrong offset!"); \ +static_assert(offsetof(UChangeVampiricVisionAvailability_C, ForceActivate) == 0x0000F0, "Member 'UChangeVampiricVisionAvailability_C::ForceActivate' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy \ +static_assert(alignof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy) == 0x000008, "Wrong alignment on AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy"); \ +static_assert(sizeof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy) == 0x000030, "Wrong size on AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, EntryPoint) == 0x000000, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, K2Node_Event_InAutomata) == 0x000010, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, K2Node_Event_InState) == 0x000018, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, K2Node_DynamicCast_AsBP_Attach_Waypoint_to_Enemy) == 0x000020, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::K2Node_DynamicCast_AsBP_Attach_Waypoint_to_Enemy' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'AttachWaypointToEnemy_C_ExecuteUbergraph_AttachWaypointToEnemy::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AttachWaypointToEnemy_C_ReceiveExecute \ +static_assert(alignof(AttachWaypointToEnemy_C_ReceiveExecute) == 0x000008, "Wrong alignment on AttachWaypointToEnemy_C_ReceiveExecute"); \ +static_assert(sizeof(AttachWaypointToEnemy_C_ReceiveExecute) == 0x000010, "Wrong size on AttachWaypointToEnemy_C_ReceiveExecute"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'AttachWaypointToEnemy_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(AttachWaypointToEnemy_C_ReceiveExecute, InState) == 0x000008, "Member 'AttachWaypointToEnemy_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAttachWaypointToEnemy_C \ +static_assert(alignof(UAttachWaypointToEnemy_C) == 0x000008, "Wrong alignment on UAttachWaypointToEnemy_C"); \ +static_assert(sizeof(UAttachWaypointToEnemy_C) == 0x0000B8, "Wrong size on UAttachWaypointToEnemy_C"); \ +static_assert(offsetof(UAttachWaypointToEnemy_C, UberGraphFrame) == 0x000088, "Member 'UAttachWaypointToEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAttachWaypointToEnemy_C, BP_AttachWaypointToEnemy) == 0x000090, "Member 'UAttachWaypointToEnemy_C::BP_AttachWaypointToEnemy' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_Waypoints_C_Remove_ \ +static_assert(alignof(Change_Waypoints_C_Remove_) == 0x000008, "Wrong alignment on Change_Waypoints_C_Remove_"); \ +static_assert(sizeof(Change_Waypoints_C_Remove_) == 0x000018, "Wrong size on Change_Waypoints_C_Remove_"); \ +static_assert(offsetof(Change_Waypoints_C_Remove_, Actor) == 0x000000, "Member 'Change_Waypoints_C_Remove_::Actor' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Remove_, Add) == 0x000008, "Member 'Change_Waypoints_C_Remove_::Add' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Remove_, OptionalTag) == 0x00000C, "Member 'Change_Waypoints_C_Remove_::OptionalTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_Waypoints_C_Execute \ +static_assert(alignof(Change_Waypoints_C_Execute) == 0x000008, "Wrong alignment on Change_Waypoints_C_Execute"); \ +static_assert(sizeof(Change_Waypoints_C_Execute) == 0x0002D8, "Wrong size on Change_Waypoints_C_Execute"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, ObjectsWithTag) == 0x000000, "Member 'Change_Waypoints_C_Execute::ObjectsWithTag' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, OptionalTag) == 0x000010, "Member 'Change_Waypoints_C_Execute::OptionalTag' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Result) == 0x000018, "Member 'Change_Waypoints_C_Execute::Result' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable) == 0x000028, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable) == 0x00002C, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue) == 0x000030, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue) == 0x000034, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_1) == 0x000038, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_2) == 0x00003C, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_3) == 0x000040, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_1) == 0x000044, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue) == 0x000048, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_1) == 0x00004C, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_4) == 0x000050, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_2) == 0x000054, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item) == 0x000058, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_2) == 0x000060, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_3) == 0x000064, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_3) == 0x000068, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_5) == 0x00006C, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_4) == 0x000070, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_4) == 0x000074, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_6) == 0x000078, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_5) == 0x00007C, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_5) == 0x000080, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_7) == 0x000084, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_6) == 0x000088, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_6) == 0x00008C, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_8) == 0x000090, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_7) == 0x000094, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_7) == 0x000098, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_bool_Variable) == 0x00009C, "Member 'Change_Waypoints_C_Execute::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_8) == 0x0000A0, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_8) == 0x0000A4, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_9) == 0x0000A8, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Array_Index_Variable_10) == 0x0000AC, "Member 'Change_Waypoints_C_Execute::Temp_int_Array_Index_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_bool_Variable_1) == 0x0000B0, "Member 'Change_Waypoints_C_Execute::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_1) == 0x0000B8, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_bool_Variable_2) == 0x0000E0, "Member 'Change_Waypoints_C_Execute::Temp_bool_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_ResolveSoftActorPointer_ReturnValue) == 0x0000E8, "Member 'Change_Waypoints_C_Execute::CallFunc_ResolveSoftActorPointer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetGameMode_ReturnValue) == 0x0000F0, "Member 'Change_Waypoints_C_Execute::CallFunc_GetGameMode_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_bool_Variable_3) == 0x0000F8, "Member 'Change_Waypoints_C_Execute::Temp_bool_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, K2Node_DynamicCast_AsWrestler_Mode_in_Game) == 0x000100, "Member 'Change_Waypoints_C_Execute::K2Node_DynamicCast_AsWrestler_Mode_in_Game' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, K2Node_DynamicCast_bSuccess) == 0x000108, "Member 'Change_Waypoints_C_Execute::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetQuestProgressComponent_ReturnValue) == 0x000110, "Member 'Change_Waypoints_C_Execute::CallFunc_GetQuestProgressComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000118, "Member 'Change_Waypoints_C_Execute::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsValid_ReturnValue) == 0x000128, "Member 'Change_Waypoints_C_Execute::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_2) == 0x00012C, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetObjectsWithGameplayTag_OutObjects) == 0x000138, "Member 'Change_Waypoints_C_Execute::CallFunc_GetObjectsWithGameplayTag_OutObjects' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000148, "Member 'Change_Waypoints_C_Execute::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_3) == 0x000150, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_1) == 0x000158, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_2) == 0x00015C, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_9) == 0x000160, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_AddUnique_ReturnValue) == 0x000164, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_1) == 0x000168, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_9) == 0x00016C, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_4) == 0x000170, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_3) == 0x000180, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetActorsWithTag_OutActors) == 0x000188, "Member 'Change_Waypoints_C_Execute::CallFunc_GetActorsWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_2) == 0x000198, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_5) == 0x0001A0, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_AddUnique_ReturnValue_1) == 0x0001A8, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_AddUnique_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_4) == 0x0001AC, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsEmpty_ReturnValue) == 0x0001B0, "Member 'Change_Waypoints_C_Execute::CallFunc_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_3) == 0x0001B1, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetObjectsWithGameplayTag_OutObjects_1) == 0x0001B8, "Member 'Change_Waypoints_C_Execute::CallFunc_GetObjectsWithGameplayTag_OutObjects_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_byte_Variable) == 0x0001C8, "Member 'Change_Waypoints_C_Execute::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0001C9, "Member 'Change_Waypoints_C_Execute::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, K2Node_Select_Default) == 0x0001CA, "Member 'Change_Waypoints_C_Execute::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_NotEqual_ByteByte_ReturnValue) == 0x0001CB, "Member 'Change_Waypoints_C_Execute::CallFunc_NotEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, K2Node_SwitchEnum_CmpSuccess) == 0x0001CC, "Member 'Change_Waypoints_C_Execute::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsGameplayTagValid_ReturnValue_1) == 0x0001CD, "Member 'Change_Waypoints_C_Execute::CallFunc_IsGameplayTagValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetObjectsWithGameplayTag_OutObjects_2) == 0x0001D0, "Member 'Change_Waypoints_C_Execute::CallFunc_GetObjectsWithGameplayTag_OutObjects_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IntersectArray_Result) == 0x0001E0, "Member 'Change_Waypoints_C_Execute::CallFunc_IntersectArray_Result' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetObjectsWithGameplayTag_OutObjects_3) == 0x0001F0, "Member 'Change_Waypoints_C_Execute::CallFunc_GetObjectsWithGameplayTag_OutObjects_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_6) == 0x000200, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_7) == 0x000208, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_5) == 0x000210, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_6) == 0x000214, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_4) == 0x000218, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_5) == 0x000219, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, Temp_int_Loop_Counter_Variable_10) == 0x00021C, "Member 'Change_Waypoints_C_Execute::Temp_int_Loop_Counter_Variable_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetObjectsWithGameplayTag_OutObjects_4) == 0x000220, "Member 'Change_Waypoints_C_Execute::CallFunc_GetObjectsWithGameplayTag_OutObjects_4' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_6) == 0x000230, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Add_IntInt_ReturnValue_10) == 0x000234, "Member 'Change_Waypoints_C_Execute::CallFunc_Add_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_8) == 0x000238, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_AddUnique_ReturnValue_2) == 0x000240, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_AddUnique_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_7) == 0x000244, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IntersectArray_Result_1) == 0x000248, "Member 'Change_Waypoints_C_Execute::CallFunc_IntersectArray_Result_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_7) == 0x000258, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_9) == 0x000260, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_8) == 0x000268, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_8) == 0x00026C, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsEmpty_ReturnValue_1) == 0x00026D, "Member 'Change_Waypoints_C_Execute::CallFunc_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_GetActorsWithTag_OutActors_1) == 0x000270, "Member 'Change_Waypoints_C_Execute::CallFunc_GetActorsWithTag_OutActors_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_10) == 0x000280, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_9) == 0x000288, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_AddUnique_ReturnValue_3) == 0x00028C, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_AddUnique_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_9) == 0x000290, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Length_ReturnValue_10) == 0x000294, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Length_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_Get_Item_11) == 0x000298, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_Get_Item_11' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Less_IntInt_ReturnValue_10) == 0x0002C0, "Member 'Change_Waypoints_C_Execute::CallFunc_Less_IntInt_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_ResolveSoftActorPointer_ReturnValue_1) == 0x0002C8, "Member 'Change_Waypoints_C_Execute::CallFunc_ResolveSoftActorPointer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_IsValid_ReturnValue_1) == 0x0002D0, "Member 'Change_Waypoints_C_Execute::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_Execute, CallFunc_Array_AddUnique_ReturnValue_4) == 0x0002D4, "Member 'Change_Waypoints_C_Execute::CallFunc_Array_AddUnique_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints \ +static_assert(alignof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints) == 0x000008, "Wrong alignment on Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints"); \ +static_assert(sizeof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints) == 0x000058, "Wrong size on Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, EntryPoint) == 0x000000, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, K2Node_Event_InAutomata) == 0x000008, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, K2Node_Event_InState) == 0x000010, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, CallFunc_GetDisplayName_ReturnValue) == 0x000020, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, CallFunc_Concat_StrStr_ReturnValue) == 0x000030, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000040, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000050, "Member 'Change_Waypoints_C_ExecuteUbergraph_Change_Waypoints::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_Waypoints_C_IntersectArray \ +static_assert(alignof(Change_Waypoints_C_IntersectArray) == 0x000008, "Wrong alignment on Change_Waypoints_C_IntersectArray"); \ +static_assert(sizeof(Change_Waypoints_C_IntersectArray) == 0x000068, "Wrong size on Change_Waypoints_C_IntersectArray"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, Array1) == 0x000000, "Member 'Change_Waypoints_C_IntersectArray::Array1' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, Array2) == 0x000010, "Member 'Change_Waypoints_C_IntersectArray::Array2' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, Result) == 0x000020, "Member 'Change_Waypoints_C_IntersectArray::Result' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, ResultArray) == 0x000030, "Member 'Change_Waypoints_C_IntersectArray::ResultArray' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Array_Length_ReturnValue) == 0x000040, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, Temp_int_Array_Index_Variable) == 0x000044, "Member 'Change_Waypoints_C_IntersectArray::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, Temp_int_Loop_Counter_Variable) == 0x000048, "Member 'Change_Waypoints_C_IntersectArray::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Array_Get_Item) == 0x000050, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Array_Find_ReturnValue) == 0x000058, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Array_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Less_IntInt_ReturnValue) == 0x00005C, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Greater_IntInt_ReturnValue) == 0x00005D, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Add_IntInt_ReturnValue) == 0x000060, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_IntersectArray, CallFunc_Array_AddUnique_ReturnValue) == 0x000064, "Member 'Change_Waypoints_C_IntersectArray::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Change_Waypoints_C_ReceiveExecute \ +static_assert(alignof(Change_Waypoints_C_ReceiveExecute) == 0x000008, "Wrong alignment on Change_Waypoints_C_ReceiveExecute"); \ +static_assert(sizeof(Change_Waypoints_C_ReceiveExecute) == 0x000010, "Wrong size on Change_Waypoints_C_ReceiveExecute"); \ +static_assert(offsetof(Change_Waypoints_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'Change_Waypoints_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(Change_Waypoints_C_ReceiveExecute, InState) == 0x000008, "Member 'Change_Waypoints_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UChange_Waypoints_C \ +static_assert(alignof(UChange_Waypoints_C) == 0x000008, "Wrong alignment on UChange_Waypoints_C"); \ +static_assert(sizeof(UChange_Waypoints_C) == 0x0000F8, "Wrong size on UChange_Waypoints_C"); \ +static_assert(offsetof(UChange_Waypoints_C, UberGraphFrame) == 0x000088, "Member 'UChange_Waypoints_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, QuestData) == 0x000090, "Member 'UChange_Waypoints_C::QuestData' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Action) == 0x000098, "Member 'UChange_Waypoints_C::Action' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Optional) == 0x000099, "Member 'UChange_Waypoints_C::Optional' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, RemoveOld_Deprecated) == 0x00009A, "Member 'UChange_Waypoints_C::RemoveOld_Deprecated' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Add_Deprecated) == 0x00009B, "Member 'UChange_Waypoints_C::Add_Deprecated' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Tag_Deprecated) == 0x0000A0, "Member 'UChange_Waypoints_C::Tag_Deprecated' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, GameplayTag_Deprecated) == 0x0000B0, "Member 'UChange_Waypoints_C::GameplayTag_Deprecated' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Actors) == 0x0000B8, "Member 'UChange_Waypoints_C::Actors' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, Tags) == 0x0000C8, "Member 'UChange_Waypoints_C::Tags' has a wrong offset!"); \ +static_assert(offsetof(UChange_Waypoints_C, GameplayTags) == 0x0000D8, "Member 'UChange_Waypoints_C::GameplayTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UPD_STS_MDSK_Tolly_C \ +static_assert(alignof(UPD_STS_MDSK_Tolly_C) == 0x000008, "Wrong alignment on UPD_STS_MDSK_Tolly_C"); \ +static_assert(sizeof(UPD_STS_MDSK_Tolly_C) == 0x000058, "Wrong size on UPD_STS_MDSK_Tolly_C"); \ + +#define DUMPER7_ASSERTS_HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager \ +static_assert(alignof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager) == 0x000008, "Wrong alignment on HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager"); \ +static_assert(sizeof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager) == 0x000070, "Wrong size on HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, EntryPoint) == 0x000000, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, Temp_int_Array_Index_Variable) == 0x000004, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, K2Node_Event_InAutomata) == 0x000008, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, K2Node_Event_InState) == 0x000010, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, Temp_int_Loop_Counter_Variable) == 0x000018, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_Array_Get_Item) == 0x000020, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000048, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, K2Node_DynamicCast_AsBP_Husk_Dissolve) == 0x000058, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::K2Node_DynamicCast_AsBP_Husk_Dissolve' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_IsValid_ReturnValue) == 0x000061, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'HuskDissolverManager_C_ExecuteUbergraph_HuskDissolverManager::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_HuskDissolverManager_C_ReceiveExecute \ +static_assert(alignof(HuskDissolverManager_C_ReceiveExecute) == 0x000008, "Wrong alignment on HuskDissolverManager_C_ReceiveExecute"); \ +static_assert(sizeof(HuskDissolverManager_C_ReceiveExecute) == 0x000010, "Wrong size on HuskDissolverManager_C_ReceiveExecute"); \ +static_assert(offsetof(HuskDissolverManager_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'HuskDissolverManager_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(HuskDissolverManager_C_ReceiveExecute, InState) == 0x000008, "Member 'HuskDissolverManager_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UHuskDissolverManager_C \ +static_assert(alignof(UHuskDissolverManager_C) == 0x000008, "Wrong alignment on UHuskDissolverManager_C"); \ +static_assert(sizeof(UHuskDissolverManager_C) == 0x0000A0, "Wrong size on UHuskDissolverManager_C"); \ +static_assert(offsetof(UHuskDissolverManager_C, UberGraphFrame) == 0x000088, "Member 'UHuskDissolverManager_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UHuskDissolverManager_C, Husk_Dissolver) == 0x000090, "Member 'UHuskDissolverManager_C::Husk_Dissolver' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FST_LightMesh \ +static_assert(alignof(FST_LightMesh) == 0x000008, "Wrong alignment on FST_LightMesh"); \ +static_assert(sizeof(FST_LightMesh) == 0x000018, "Wrong size on FST_LightMesh"); \ +static_assert(offsetof(FST_LightMesh, MeshComponent_2_6683973D49A34A15492EC49DD4CF7055) == 0x000000, "Member 'FST_LightMesh::MeshComponent_2_6683973D49A34A15492EC49DD4CF7055' has a wrong offset!"); \ +static_assert(offsetof(FST_LightMesh, EmissiveIndex_5_0EF52C8E403A2CC9E2472B986112CF08) == 0x000008, "Member 'FST_LightMesh::EmissiveIndex_5_0EF52C8E403A2CC9E2472B986112CF08' has a wrong offset!"); \ +static_assert(offsetof(FST_LightMesh, EmissiveMaterial_9_1AE3B3C340A37ECC51705E833DEE96BB) == 0x000010, "Member 'FST_LightMesh::EmissiveMaterial_9_1AE3B3C340A37ECC51705E833DEE96BB' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BF_RotationalShake_C_BF_Rotational_Shake \ +static_assert(alignof(BF_RotationalShake_C_BF_Rotational_Shake) == 0x000008, "Wrong alignment on BF_RotationalShake_C_BF_Rotational_Shake"); \ +static_assert(sizeof(BF_RotationalShake_C_BF_Rotational_Shake) == 0x000118, "Wrong size on BF_RotationalShake_C_BF_Rotational_Shake"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Timeline_Tick) == 0x000000, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Timeline_Tick' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Shake_Freq) == 0x000008, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Shake_Freq' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Shake_Random_Freq) == 0x000010, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Shake_Random_Freq' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Shake_Intensity) == 0x000018, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Shake_Intensity' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Shake_Random_Intensity_X) == 0x000020, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Shake_Random_Intensity_X' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Shake_Random_Intensity_Y) == 0x000028, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Shake_Random_Intensity_Y' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Initial_Relative_Rotation) == 0x000030, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Initial_Relative_Rotation' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, __WorldContext) == 0x000048, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Random_Shake) == 0x000050, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Random_Shake' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, Vector_Directed_Shake) == 0x000068, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::Vector_Directed_Shake' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000070, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000078, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000088, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x000090, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Sin_ReturnValue) == 0x000098, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Sin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_4) == 0x0000A0, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_5) == 0x0000A8, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Ease_ReturnValue) == 0x0000B0, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Ease_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_6) == 0x0000B8, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_7) == 0x0000C0, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Multiply_DoubleDouble_ReturnValue_8) == 0x0000C8, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Multiply_DoubleDouble_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_Ease_ReturnValue_1) == 0x0000D0, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_Ease_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_MakeRotator_ReturnValue) == 0x0000D8, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_RLerp_ReturnValue) == 0x0000F0, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_RLerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_RLerp_Alpha_ImplicitCast) == 0x000108, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_RLerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_MakeRotator_Pitch_ImplicitCast) == 0x00010C, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_MakeRotator_Pitch_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BF_RotationalShake_C_BF_Rotational_Shake, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000110, "Member 'BF_RotationalShake_C_BF_Rotational_Shake::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBF_RotationalShake_C \ +static_assert(alignof(UBF_RotationalShake_C) == 0x000008, "Wrong alignment on UBF_RotationalShake_C"); \ +static_assert(sizeof(UBF_RotationalShake_C) == 0x000028, "Wrong size on UBF_RotationalShake_C"); \ + +#define DUMPER7_ASSERTS_ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors \ +static_assert(alignof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors) == 0x000008, "Wrong alignment on ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors"); \ +static_assert(sizeof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors) == 0x000048, "Wrong size on ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, EntryPoint) == 0x000000, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_Event_InAutomata) == 0x000008, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_Event_InState) == 0x000010, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door) == 0x000020, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000030, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door_1) == 0x000038, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_DynamicCast_AsBP_Telekinesis_Interactable_Van_Door_1' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors, K2Node_DynamicCast_bSuccess_1) == 0x000040, "Member 'ForceOpenVanDoors_C_ExecuteUbergraph_ForceOpenVanDoors::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceOpenVanDoors_C_ReceiveExecute \ +static_assert(alignof(ForceOpenVanDoors_C_ReceiveExecute) == 0x000008, "Wrong alignment on ForceOpenVanDoors_C_ReceiveExecute"); \ +static_assert(sizeof(ForceOpenVanDoors_C_ReceiveExecute) == 0x000010, "Wrong size on ForceOpenVanDoors_C_ReceiveExecute"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ForceOpenVanDoors_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceOpenVanDoors_C_ReceiveExecute, InState) == 0x000008, "Member 'ForceOpenVanDoors_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForceOpenVanDoors_C \ +static_assert(alignof(UForceOpenVanDoors_C) == 0x000008, "Wrong alignment on UForceOpenVanDoors_C"); \ +static_assert(sizeof(UForceOpenVanDoors_C) == 0x0000C0, "Wrong size on UForceOpenVanDoors_C"); \ +static_assert(offsetof(UForceOpenVanDoors_C, UberGraphFrame) == 0x000088, "Member 'UForceOpenVanDoors_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UForceOpenVanDoors_C, VanDoor) == 0x000090, "Member 'UForceOpenVanDoors_C::VanDoor' has a wrong offset!"); \ +static_assert(offsetof(UForceOpenVanDoors_C, SetToOpenForCheckpoint) == 0x0000B8, "Member 'UForceOpenVanDoors_C::SetToOpenForCheckpoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy \ +static_assert(alignof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy) == 0x000008, "Wrong alignment on ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy"); \ +static_assert(sizeof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy) == 0x000058, "Wrong size on ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, EntryPoint) == 0x000000, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, Temp_int_Array_Index_Variable) == 0x000004, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, K2Node_Event_InAutomata) == 0x000010, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, K2Node_Event_InState) == 0x000018, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_GetPlayerPawn_ReturnValue) == 0x000020, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000030, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_Array_Get_Item) == 0x000040, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_IsValid_ReturnValue) == 0x00004C, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_Less_IntInt_ReturnValue) == 0x00004D, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_Add_IntInt_ReturnValue) == 0x000050, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy, CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue) == 0x000054, "Member 'ActivateAbilityOnEnemy_C_ExecuteUbergraph_ActivateAbilityOnEnemy::CallFunc_K2_GiveAbilityAndActivateOnce_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ActivateAbilityOnEnemy_C_ReceiveExecute \ +static_assert(alignof(ActivateAbilityOnEnemy_C_ReceiveExecute) == 0x000008, "Wrong alignment on ActivateAbilityOnEnemy_C_ReceiveExecute"); \ +static_assert(sizeof(ActivateAbilityOnEnemy_C_ReceiveExecute) == 0x000010, "Wrong size on ActivateAbilityOnEnemy_C_ReceiveExecute"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ActivateAbilityOnEnemy_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ActivateAbilityOnEnemy_C_ReceiveExecute, InState) == 0x000008, "Member 'ActivateAbilityOnEnemy_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UActivateAbilityOnEnemy_C \ +static_assert(alignof(UActivateAbilityOnEnemy_C) == 0x000008, "Wrong alignment on UActivateAbilityOnEnemy_C"); \ +static_assert(sizeof(UActivateAbilityOnEnemy_C) == 0x0000A0, "Wrong size on UActivateAbilityOnEnemy_C"); \ +static_assert(offsetof(UActivateAbilityOnEnemy_C, UberGraphFrame) == 0x000088, "Member 'UActivateAbilityOnEnemy_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UActivateAbilityOnEnemy_C, Has_Tag) == 0x000090, "Member 'UActivateAbilityOnEnemy_C::Has_Tag' has a wrong offset!"); \ +static_assert(offsetof(UActivateAbilityOnEnemy_C, Ability_To_Trigger) == 0x000098, "Member 'UActivateAbilityOnEnemy_C::Ability_To_Trigger' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature \ +static_assert(alignof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature) == 0x000004, "Wrong alignment on BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature"); \ +static_assert(sizeof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature) == 0x000004, "Wrong size on BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature"); \ +static_assert(offsetof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature, alpha_0) == 0x000000, "Member 'BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerHeightenedSensesClue_K2Node_ComponentBoundEvent_6_WrestlerClueTrailUpdateEvent__DelegateSignature::alpha_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_CableSpline_HS_C_BndEvt__BP_CableSpline_HS_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_1_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS \ +static_assert(alignof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS"); \ +static_assert(sizeof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS) == 0x000048, "Wrong size on BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, EntryPoint) == 0x000000, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_IsValid_ReturnValue_1) == 0x000005, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_Event_InDuration_1) == 0x000008, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_Event_InDuration_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_Event_InDuration) == 0x00000C, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_Event_InDuration' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_ComponentBoundEvent_InItemState) == 0x000010, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_Event_InItemState) == 0x000011, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_ComponentBoundEvent_Alpha) == 0x000014, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_ComponentBoundEvent_Alpha' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_Event_bInVisible) == 0x000018, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_Event_bInVisible' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, K2Node_SwitchEnum_CmpSuccess) == 0x000019, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000020, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_Array_Add_ReturnValue) == 0x000030, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000038, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS, CallFunc_Array_Add_ReturnValue_1) == 0x000040, "Member 'BP_CableSpline_HS_C_ExecuteUbergraph_BP_CableSpline_HS::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetClueDataAsset \ +static_assert(alignof(BP_CableSpline_HS_C_GetClueDataAsset) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_GetClueDataAsset"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetClueDataAsset) == 0x000008, "Wrong size on BP_CableSpline_HS_C_GetClueDataAsset"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetDebugString \ +static_assert(alignof(BP_CableSpline_HS_C_GetDebugString) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_GetDebugString"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetDebugString) == 0x000010, "Wrong size on BP_CableSpline_HS_C_GetDebugString"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetItemState \ +static_assert(alignof(BP_CableSpline_HS_C_GetItemState) == 0x000001, "Wrong alignment on BP_CableSpline_HS_C_GetItemState"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetItemState) == 0x000001, "Wrong size on BP_CableSpline_HS_C_GetItemState"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetMeshComponent \ +static_assert(alignof(BP_CableSpline_HS_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_GetMeshComponent"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetMeshComponent) == 0x000008, "Wrong size on BP_CableSpline_HS_C_GetMeshComponent"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state \ +static_assert(alignof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state"); \ +static_assert(sizeof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state) == 0x000038, "Wrong size on BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state"); \ +static_assert(offsetof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state, A) == 0x000000, "Member 'BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state::A' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state, CallFunc_VisionFadeOutBegin_self_CastInput) == 0x000008, "Member 'BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state::CallFunc_VisionFadeOutBegin_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state, CallFunc_SetVisionVisibility_self_CastInput) == 0x000018, "Member 'BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state::CallFunc_SetVisionVisibility_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state, CallFunc_SetVisionVisibility_self_CastInput_1) == 0x000028, "Member 'BP_CableSpline_HS_C_Set_vision_visilibity_from_item_state::CallFunc_SetVisionVisibility_self_CastInput_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_SetItemState \ +static_assert(alignof(BP_CableSpline_HS_C_SetItemState) == 0x000001, "Wrong alignment on BP_CableSpline_HS_C_SetItemState"); \ +static_assert(sizeof(BP_CableSpline_HS_C_SetItemState) == 0x000001, "Wrong size on BP_CableSpline_HS_C_SetItemState"); \ +static_assert(offsetof(BP_CableSpline_HS_C_SetItemState, InItemState) == 0x000000, "Member 'BP_CableSpline_HS_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_SetVisionVisibility \ +static_assert(alignof(BP_CableSpline_HS_C_SetVisionVisibility) == 0x000001, "Wrong alignment on BP_CableSpline_HS_C_SetVisionVisibility"); \ +static_assert(sizeof(BP_CableSpline_HS_C_SetVisionVisibility) == 0x000001, "Wrong size on BP_CableSpline_HS_C_SetVisionVisibility"); \ +static_assert(offsetof(BP_CableSpline_HS_C_SetVisionVisibility, bInVisible) == 0x000000, "Member 'BP_CableSpline_HS_C_SetVisionVisibility::bInVisible' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_UserConstructionScript \ +static_assert(alignof(BP_CableSpline_HS_C_UserConstructionScript) == 0x000010, "Wrong alignment on BP_CableSpline_HS_C_UserConstructionScript"); \ +static_assert(sizeof(BP_CableSpline_HS_C_UserConstructionScript) == 0x000260, "Wrong size on BP_CableSpline_HS_C_UserConstructionScript"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, bulbInstances) == 0x000000, "Member 'BP_CableSpline_HS_C_UserConstructionScript::bulbInstances' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, Temp_struct_Variable) == 0x000010, "Member 'BP_CableSpline_HS_C_UserConstructionScript::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue) == 0x000070, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetNumberOfSplinePoints_ReturnValue) == 0x000078, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetNumberOfSplinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetRotationAtSplinePoint_ReturnValue) == 0x000080, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetRotationAtSplinePoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetLocationAtSplinePoint_ReturnValue) == 0x000098, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetLocationAtSplinePoint_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakRotator_Roll) == 0x0000B0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakRotator_Pitch) == 0x0000B4, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakRotator_Yaw) == 0x0000B8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakVector_X) == 0x0000C0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakVector_Y) == 0x0000C8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_BreakVector_Z) == 0x0000D0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x0000D8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x0000E0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_ReturnValue_2) == 0x0000E8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeVector_ReturnValue) == 0x0000F0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeRotator_ReturnValue) == 0x000108, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Add_VectorVector_ReturnValue) == 0x000120, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeTransform_ReturnValue) == 0x000140, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, Temp_int_Variable) == 0x0001A0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_AddComponent_ReturnValue_1) == 0x0001A8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_AddComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue) == 0x0001B0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_K2_AttachToComponent_ReturnValue) == 0x0001B4, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_K2_AttachToComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_1) == 0x0001B8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeVector2D_ReturnValue) == 0x0001C0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Location) == 0x0001D0, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Tangent) == 0x0001E8, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Tangent' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetNumberOfSplinePoints_ReturnValue_1) == 0x000200, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetNumberOfSplinePoints_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Location_1) == 0x000208, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Location_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_1) == 0x000220, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_GetLocationAndTangentAtSplinePoint_Tangent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Add_IntInt_ReturnValue_2) == 0x000238, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00023C, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000240, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1) == 0x000248, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_Subtract_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeRotator_Yaw_ImplicitCast) == 0x000250, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeRotator_Yaw_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_CableSpline_HS_C_UserConstructionScript, CallFunc_MakeRotator_Roll_ImplicitCast) == 0x000254, "Member 'BP_CableSpline_HS_C_UserConstructionScript::CallFunc_MakeRotator_Roll_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_VisionFadeInBegin \ +static_assert(alignof(BP_CableSpline_HS_C_VisionFadeInBegin) == 0x000004, "Wrong alignment on BP_CableSpline_HS_C_VisionFadeInBegin"); \ +static_assert(sizeof(BP_CableSpline_HS_C_VisionFadeInBegin) == 0x000004, "Wrong size on BP_CableSpline_HS_C_VisionFadeInBegin"); \ +static_assert(offsetof(BP_CableSpline_HS_C_VisionFadeInBegin, InDuration) == 0x000000, "Member 'BP_CableSpline_HS_C_VisionFadeInBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_VisionFadeOutBegin \ +static_assert(alignof(BP_CableSpline_HS_C_VisionFadeOutBegin) == 0x000004, "Wrong alignment on BP_CableSpline_HS_C_VisionFadeOutBegin"); \ +static_assert(sizeof(BP_CableSpline_HS_C_VisionFadeOutBegin) == 0x000004, "Wrong size on BP_CableSpline_HS_C_VisionFadeOutBegin"); \ +static_assert(offsetof(BP_CableSpline_HS_C_VisionFadeOutBegin, InDuration) == 0x000000, "Member 'BP_CableSpline_HS_C_VisionFadeOutBegin::InDuration' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_CableSpline_HS_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(BP_CableSpline_HS_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on BP_CableSpline_HS_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(BP_CableSpline_HS_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on BP_CableSpline_HS_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(BP_CableSpline_HS_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'BP_CableSpline_HS_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CableSpline_HS_C \ +static_assert(alignof(ABP_CableSpline_HS_C) == 0x000008, "Wrong alignment on ABP_CableSpline_HS_C"); \ +static_assert(sizeof(ABP_CableSpline_HS_C) == 0x000340, "Wrong size on ABP_CableSpline_HS_C"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, UberGraphFrame) == 0x000298, "Member 'ABP_CableSpline_HS_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, TKobject_ProCam) == 0x0002A0, "Member 'ABP_CableSpline_HS_C::TKobject_ProCam' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, WrestlerPersistenceComponentItemState) == 0x0002A8, "Member 'ABP_CableSpline_HS_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, WrestlerHeightenedSensesClue) == 0x0002B0, "Member 'ABP_CableSpline_HS_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Spline) == 0x0002B8, "Member 'ABP_CableSpline_HS_C::Spline' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Item_State) == 0x0002C0, "Member 'ABP_CableSpline_HS_C::Item_State' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, CableMaterial) == 0x0002C8, "Member 'ABP_CableSpline_HS_C::CableMaterial' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, CableRadius) == 0x0002D0, "Member 'ABP_CableSpline_HS_C::CableRadius' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, DrawDistance) == 0x0002D8, "Member 'ABP_CableSpline_HS_C::DrawDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Dynamic_material) == 0x0002E0, "Member 'ABP_CableSpline_HS_C::Dynamic_material' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, SpawnCableBox) == 0x0002E8, "Member 'ABP_CableSpline_HS_C::SpawnCableBox' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, CableBox) == 0x0002F0, "Member 'ABP_CableSpline_HS_C::CableBox' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Mesh_Components_to_Highlight_in_Heightened_Senses) == 0x0002F8, "Member 'ABP_CableSpline_HS_C::Mesh_Components_to_Highlight_in_Heightened_Senses' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Cable_Box_Scale) == 0x000308, "Member 'ABP_CableSpline_HS_C::Cable_Box_Scale' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, Cable_Box_Offset) == 0x000320, "Member 'ABP_CableSpline_HS_C::Cable_Box_Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, ProCam) == 0x000338, "Member 'ABP_CableSpline_HS_C::ProCam' has a wrong offset!"); \ +static_assert(offsetof(ABP_CableSpline_HS_C, alpha) == 0x00033C, "Member 'ABP_CableSpline_HS_C::alpha' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator \ +static_assert(alignof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator) == 0x000008, "Wrong alignment on ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator"); \ +static_assert(sizeof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator) == 0x000030, "Wrong size on ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, EntryPoint) == 0x000000, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, K2Node_Event_InAutomata) == 0x000010, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, K2Node_Event_InState) == 0x000018, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, K2Node_DynamicCast_AsBP_Fake_Elevator) == 0x000020, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::K2Node_DynamicCast_AsBP_Fake_Elevator' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ForceUseElevator_C_ExecuteUbergraph_ForceUseElevator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ForceUseElevator_C_ReceiveExecute \ +static_assert(alignof(ForceUseElevator_C_ReceiveExecute) == 0x000008, "Wrong alignment on ForceUseElevator_C_ReceiveExecute"); \ +static_assert(sizeof(ForceUseElevator_C_ReceiveExecute) == 0x000010, "Wrong size on ForceUseElevator_C_ReceiveExecute"); \ +static_assert(offsetof(ForceUseElevator_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ForceUseElevator_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ForceUseElevator_C_ReceiveExecute, InState) == 0x000008, "Member 'ForceUseElevator_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UForceUseElevator_C \ +static_assert(alignof(UForceUseElevator_C) == 0x000008, "Wrong alignment on UForceUseElevator_C"); \ +static_assert(sizeof(UForceUseElevator_C) == 0x0000B8, "Wrong size on UForceUseElevator_C"); \ +static_assert(offsetof(UForceUseElevator_C, UberGraphFrame) == 0x000088, "Member 'UForceUseElevator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UForceUseElevator_C, Elevator) == 0x000090, "Member 'UForceUseElevator_C::Elevator' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FST_LightComponent \ +static_assert(alignof(FST_LightComponent) == 0x000008, "Wrong alignment on FST_LightComponent"); \ +static_assert(sizeof(FST_LightComponent) == 0x000018, "Wrong size on FST_LightComponent"); \ +static_assert(offsetof(FST_LightComponent, LightComponent_2_525225344FE774E0A7CB1D8D00520B0B) == 0x000000, "Member 'FST_LightComponent::LightComponent_2_525225344FE774E0A7CB1D8D00520B0B' has a wrong offset!"); \ +static_assert(offsetof(FST_LightComponent, Intensity_5_C178E8DA4EF2CA99E242DDA72743B9E8) == 0x000008, "Member 'FST_LightComponent::Intensity_5_C178E8DA4EF2CA99E242DDA72743B9E8' has a wrong offset!"); \ +static_assert(offsetof(FST_LightComponent, Temperature_7_B39D5EFB4004F426B4B27E9950FBA58B) == 0x000010, "Member 'FST_LightComponent::Temperature_7_B39D5EFB4004F426B4B27E9950FBA58B' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour \ +static_assert(alignof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour) == 0x000008, "Wrong alignment on ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour"); \ +static_assert(sizeof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour) == 0x000058, "Wrong size on ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, EntryPoint) == 0x000000, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_Event_InAutomata) == 0x000008, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_Event_InState) == 0x000010, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_DynamicCast_AsBP_Lightmaster) == 0x000020, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_DynamicCast_AsBP_Lightmaster' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000030, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_IsValid_ReturnValue) == 0x000038, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_DynamicCast_AsStatic_Mesh_Actor) == 0x000040, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_DynamicCast_AsStatic_Mesh_Actor' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_IsValid_ReturnValue_1) == 0x000049, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_IsValid_ReturnValue_2) == 0x00004A, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour, CallFunc_GetComponentByClass_ReturnValue) == 0x000050, "Member 'ReplaceLightColour_C_ExecuteUbergraph_ReplaceLightColour::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ReplaceLightColour_C_ReceiveExecute \ +static_assert(alignof(ReplaceLightColour_C_ReceiveExecute) == 0x000008, "Wrong alignment on ReplaceLightColour_C_ReceiveExecute"); \ +static_assert(sizeof(ReplaceLightColour_C_ReceiveExecute) == 0x000010, "Wrong size on ReplaceLightColour_C_ReceiveExecute"); \ +static_assert(offsetof(ReplaceLightColour_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'ReplaceLightColour_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(ReplaceLightColour_C_ReceiveExecute, InState) == 0x000008, "Member 'ReplaceLightColour_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UReplaceLightColour_C \ +static_assert(alignof(UReplaceLightColour_C) == 0x000008, "Wrong alignment on UReplaceLightColour_C"); \ +static_assert(sizeof(UReplaceLightColour_C) == 0x0000F8, "Wrong size on UReplaceLightColour_C"); \ +static_assert(offsetof(UReplaceLightColour_C, UberGraphFrame) == 0x000088, "Member 'UReplaceLightColour_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UReplaceLightColour_C, BP_Light) == 0x000090, "Member 'UReplaceLightColour_C::BP_Light' has a wrong offset!"); \ +static_assert(offsetof(UReplaceLightColour_C, Emissive_Tint) == 0x0000B8, "Member 'UReplaceLightColour_C::Emissive_Tint' has a wrong offset!"); \ +static_assert(offsetof(UReplaceLightColour_C, Static_Mesh) == 0x0000C8, "Member 'UReplaceLightColour_C::Static_Mesh' has a wrong offset!"); \ +static_assert(offsetof(UReplaceLightColour_C, Material) == 0x0000F0, "Member 'UReplaceLightColour_C::Material' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01 \ +static_assert(alignof(BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01) == 0x000004, "Wrong alignment on BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01"); \ +static_assert(sizeof(BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01) == 0x000004, "Wrong size on BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01"); \ +static_assert(offsetof(BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01, EntryPoint) == 0x000000, "Member 'BP_lightutility_cage_01_C_ExecuteUbergraph_BP_lightutility_cage_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_cage_01_C \ +static_assert(alignof(ABP_lightutility_cage_01_C) == 0x000008, "Wrong alignment on ABP_lightutility_cage_01_C"); \ +static_assert(sizeof(ABP_lightutility_cage_01_C) == 0x0007A8, "Wrong size on ABP_lightutility_cage_01_C"); \ +static_assert(offsetof(ABP_lightutility_cage_01_C, UberGraphFrame_BP_lightutility_cage_01_C) == 0x000788, "Member 'ABP_lightutility_cage_01_C::UberGraphFrame_BP_lightutility_cage_01_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_01_C, SM_Hero_ScrewOuterPanel_LIGHT) == 0x000790, "Member 'ABP_lightutility_cage_01_C::SM_Hero_ScrewOuterPanel_LIGHT' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_01_C, PointLight___Bounce) == 0x000798, "Member 'ABP_lightutility_cage_01_C::PointLight___Bounce' has a wrong offset!"); \ +static_assert(offsetof(ABP_lightutility_cage_01_C, SpotLight___Main) == 0x0007A0, "Member 'ABP_lightutility_cage_01_C::SpotLight___Main' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_Add_post_process_effects \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_Add_post_process_effects) == 0x000008, "Wrong alignment on BP_PoliceHighlight_VFX_C_Add_post_process_effects"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_Add_post_process_effects) == 0x000020, "Wrong size on BP_PoliceHighlight_VFX_C_Add_post_process_effects"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Add_post_process_effects, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_Add_post_process_effects::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Add_post_process_effects, CallFunc_AddNewCameraModifier_ReturnValue) == 0x000008, "Member 'BP_PoliceHighlight_VFX_C_Add_post_process_effects::CallFunc_AddNewCameraModifier_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Add_post_process_effects, K2Node_DynamicCast_AsCM_Police_Highlight_PP) == 0x000010, "Member 'BP_PoliceHighlight_VFX_C_Add_post_process_effects::K2Node_DynamicCast_AsCM_Police_Highlight_PP' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Add_post_process_effects, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'BP_PoliceHighlight_VFX_C_Add_post_process_effects::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX) == 0x000010, "Wrong alignment on BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX) == 0x000270, "Wrong size on BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, EntryPoint) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetPlayerCameraManager_ReturnValue) == 0x000008, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetPlayerCameraManager_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetPlayerCameraManager_ReturnValue_1) == 0x000010, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetPlayerCameraManager_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetFOVAngle_ReturnValue) == 0x000018, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetFOVAngle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_IsValid_ReturnValue) == 0x00001C, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetPlayerCameraManager_ReturnValue_2) == 0x000020, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetPlayerCameraManager_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetMassParticleActors_OutParticleActors) == 0x000038, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetMassParticleActors_OutParticleActors' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000048, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_Divide_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_Divide_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetTimeSeconds_ReturnValue) == 0x000058, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetTimeSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, Temp_struct_Variable) == 0x000060, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_GetPlayerController_ReturnValue) == 0x0000C0, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_K2_GetRootComponent_ReturnValue) == 0x0000C8, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_AddComponent_ReturnValue) == 0x0000D0, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_AddComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x0000D8, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_K2_SetWorldLocation_SweepHitResult) == 0x0000F0, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_K2_SetWorldLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, K2Node_Event_DeltaSeconds) == 0x0001D8, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_Divide_DoubleDouble_ReturnValue_2) == 0x0001E0, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_Divide_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_IsValid_ReturnValue_1) == 0x0001E8, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, K2Node_Event_InParticleActor) == 0x0001F0, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::K2Node_Event_InParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, K2Node_Event_InUpdateData) == 0x0001F8, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::K2Node_Event_InUpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000240, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_SetPlayRate_NewRate_ImplicitCast_1) == 0x000244, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_SetPlayRate_NewRate_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast) == 0x000248, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_SetScalarParameterValue_ParameterValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, K2Node_VariableSet_Fade_ImplicitCast) == 0x000250, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::K2Node_VariableSet_Fade_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, K2Node_VariableSet_Fade_ImplicitCast_1) == 0x000258, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::K2Node_VariableSet_Fade_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX, CallFunc_SetPlayRate_NewRate_ImplicitCast_2) == 0x000260, "Member 'BP_PoliceHighlight_VFX_C_ExecuteUbergraph_BP_PoliceHighlight_VFX::CallFunc_SetPlayRate_NewRate_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_ReceiveTick \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_PoliceHighlight_VFX_C_ReceiveTick"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_ReceiveTick) == 0x000004, "Wrong size on BP_PoliceHighlight_VFX_C_ReceiveTick"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect) == 0x000010, "Wrong alignment on BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect) == 0x000100, "Wrong size on BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, InUpdateData) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::InUpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, AttachParentComponent) == 0x000048, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::AttachParentComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, ReturnValue) == 0x000050, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, HeartBeat_Variance) == 0x000058, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::HeartBeat_Variance' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, Spawned_system) == 0x000060, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::Spawned_system' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, ParticleActor) == 0x000068, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::ParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_MakeTransform_ReturnValue) == 0x000070, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_MakeTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000D0, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000D8, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x0000E0, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_RandomFloatInRange_ReturnValue) == 0x0000E8, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect, CallFunc_IsValid_ReturnValue) == 0x0000F0, "Member 'BP_PoliceHighlight_VFX_C_SpawnMassParticleEffect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_Update_VFX_parameters \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_Update_VFX_parameters) == 0x000004, "Wrong alignment on BP_PoliceHighlight_VFX_C_Update_VFX_parameters"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_Update_VFX_parameters) == 0x000008, "Wrong size on BP_PoliceHighlight_VFX_C_Update_VFX_parameters"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Update_VFX_parameters, alpha) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_Update_VFX_parameters::alpha' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_Update_VFX_parameters, Blink) == 0x000004, "Member 'BP_PoliceHighlight_VFX_C_Update_VFX_parameters::Blink' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_UpdateMassParticle \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_UpdateMassParticle) == 0x000008, "Wrong alignment on BP_PoliceHighlight_VFX_C_UpdateMassParticle"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_UpdateMassParticle) == 0x000050, "Wrong size on BP_PoliceHighlight_VFX_C_UpdateMassParticle"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticle, InParticleActor) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticle::InParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticle, InUpdateData) == 0x000008, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticle::InUpdateData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect) == 0x000008, "Wrong alignment on BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect) == 0x000118, "Wrong size on BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, ParticleActor) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::ParticleActor' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, UpdateData) == 0x000008, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::UpdateData' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, Heartbeat_material) == 0x000050, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::Heartbeat_material' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, Particle) == 0x000058, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::Particle' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_GetComponentByClass_ReturnValue) == 0x000060, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_IsValid_ReturnValue) == 0x000068, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_K2_GetScalarParameterValue_ReturnValue) == 0x00006C, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_K2_GetScalarParameterValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value) == 0x000070, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue) == 0x000078, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000080, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_VSize_ReturnValue) == 0x000088, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_1) == 0x000090, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_1) == 0x000098, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x0000A0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Fraction_ReturnValue) == 0x0000A8, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Fraction_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_2) == 0x0000B0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_2) == 0x0000C0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_3) == 0x0000C4, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_3) == 0x0000C8, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_4) == 0x0000CC, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_4) == 0x0000D0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x0000D1, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Conv_BoolToDouble_ReturnValue) == 0x0000D8, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Conv_BoolToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000E0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x0000E8, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_Value_5) == 0x0000F0, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_Value_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_Map_Find_ReturnValue_5) == 0x000100, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_Map_Find_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_SetVariableFloat_InValue_ImplicitCast) == 0x000104, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_SetVariableFloat_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x000108, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_SetVariableFloat_InValue_ImplicitCast_1) == 0x00010C, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_SetVariableFloat_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_SetVariableFloat_InValue_ImplicitCast_2) == 0x000110, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_SetVariableFloat_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect, CallFunc_SetVariableFloat_InValue_ImplicitCast_3) == 0x000114, "Member 'BP_PoliceHighlight_VFX_C_UpdateMassParticleEffect::CallFunc_SetVariableFloat_InValue_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PoliceHighlight_VFX_C_GetHighlightRadius \ +static_assert(alignof(BP_PoliceHighlight_VFX_C_GetHighlightRadius) == 0x000004, "Wrong alignment on BP_PoliceHighlight_VFX_C_GetHighlightRadius"); \ +static_assert(sizeof(BP_PoliceHighlight_VFX_C_GetHighlightRadius) == 0x000004, "Wrong size on BP_PoliceHighlight_VFX_C_GetHighlightRadius"); \ +static_assert(offsetof(BP_PoliceHighlight_VFX_C_GetHighlightRadius, ReturnValue) == 0x000000, "Member 'BP_PoliceHighlight_VFX_C_GetHighlightRadius::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PoliceHighlight_VFX_C \ +static_assert(alignof(ABP_PoliceHighlight_VFX_C) == 0x000008, "Wrong alignment on ABP_PoliceHighlight_VFX_C"); \ +static_assert(sizeof(ABP_PoliceHighlight_VFX_C) == 0x000500, "Wrong size on ABP_PoliceHighlight_VFX_C"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, UberGraphFrame) == 0x0002A0, "Member 'ABP_PoliceHighlight_VFX_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_PoliceHighlight_VFX_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_out___particles_Blink_1A6DDA0B498049557C094AB99E42AECA) == 0x0002B0, "Member 'ABP_PoliceHighlight_VFX_C::Fade_out___particles_Blink_1A6DDA0B498049557C094AB99E42AECA' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_out___particles_Alpha_1A6DDA0B498049557C094AB99E42AECA) == 0x0002B4, "Member 'ABP_PoliceHighlight_VFX_C::Fade_out___particles_Alpha_1A6DDA0B498049557C094AB99E42AECA' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_out___particles__Direction_1A6DDA0B498049557C094AB99E42AECA) == 0x0002B8, "Member 'ABP_PoliceHighlight_VFX_C::Fade_out___particles__Direction_1A6DDA0B498049557C094AB99E42AECA' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_out___particles) == 0x0002C0, "Member 'ABP_PoliceHighlight_VFX_C::Fade_out___particles' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_in_timeline_Blink_81918BED4245DCD16671D1897D1EC2E8) == 0x0002C8, "Member 'ABP_PoliceHighlight_VFX_C::Fade_in_timeline_Blink_81918BED4245DCD16671D1897D1EC2E8' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_in_timeline_Alpha_81918BED4245DCD16671D1897D1EC2E8) == 0x0002CC, "Member 'ABP_PoliceHighlight_VFX_C::Fade_in_timeline_Alpha_81918BED4245DCD16671D1897D1EC2E8' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_in_timeline__Direction_81918BED4245DCD16671D1897D1EC2E8) == 0x0002D0, "Member 'ABP_PoliceHighlight_VFX_C::Fade_in_timeline__Direction_81918BED4245DCD16671D1897D1EC2E8' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_in_timeline) == 0x0002D8, "Member 'ABP_PoliceHighlight_VFX_C::Fade_in_timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, FadeDuration_particle_effects) == 0x0002E0, "Member 'ABP_PoliceHighlight_VFX_C::FadeDuration_particle_effects' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Heightened_Capture_) == 0x0002E8, "Member 'ABP_PoliceHighlight_VFX_C::Heightened_Capture_' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, CombatColour) == 0x0002F0, "Member 'ABP_PoliceHighlight_VFX_C::CombatColour' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, SpeciesColours) == 0x000300, "Member 'ABP_PoliceHighlight_VFX_C::SpeciesColours' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, BloodResonanceColours) == 0x000350, "Member 'ABP_PoliceHighlight_VFX_C::BloodResonanceColours' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, BloodResonanceSymbol) == 0x0003A0, "Member 'ABP_PoliceHighlight_VFX_C::BloodResonanceSymbol' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fade_in_duration) == 0x0003F0, "Member 'ABP_PoliceHighlight_VFX_C::Fade_in_duration' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Character_post_process_camera_modifier) == 0x0003F8, "Member 'ABP_PoliceHighlight_VFX_C::Character_post_process_camera_modifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Fading_out) == 0x000400, "Member 'ABP_PoliceHighlight_VFX_C::Fading_out' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Distance) == 0x000404, "Member 'ABP_PoliceHighlight_VFX_C::Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Faded_in) == 0x000408, "Member 'ABP_PoliceHighlight_VFX_C::Faded_in' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, BloodResonanceState) == 0x000410, "Member 'ABP_PoliceHighlight_VFX_C::BloodResonanceState' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, Heart_beat_variance_map) == 0x000460, "Member 'ABP_PoliceHighlight_VFX_C::Heart_beat_variance_map' has a wrong offset!"); \ +static_assert(offsetof(ABP_PoliceHighlight_VFX_C, HeartBeat_Material_instances) == 0x0004B0, "Member 'ABP_PoliceHighlight_VFX_C::HeartBeat_Material_instances' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker \ +static_assert(alignof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker) == 0x000008, "Wrong alignment on StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker"); \ +static_assert(sizeof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker) == 0x000030, "Wrong size on StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, EntryPoint) == 0x000000, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, K2Node_Event_InAutomata) == 0x000010, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, K2Node_Event_InState) == 0x000018, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, K2Node_DynamicCast_AsBPC_Lightutility_Cage_01_Warehouse_05) == 0x000020, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::K2Node_DynamicCast_AsBPC_Lightutility_Cage_01_Warehouse_05' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker, CallFunc_IsValid_ReturnValue) == 0x000029, "Member 'StrickNR_Mannequin_LightFlicker_C_ExecuteUbergraph_StrickNR_Mannequin_LightFlicker::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StrickNR_Mannequin_LightFlicker_C_ReceiveExecute \ +static_assert(alignof(StrickNR_Mannequin_LightFlicker_C_ReceiveExecute) == 0x000008, "Wrong alignment on StrickNR_Mannequin_LightFlicker_C_ReceiveExecute"); \ +static_assert(sizeof(StrickNR_Mannequin_LightFlicker_C_ReceiveExecute) == 0x000010, "Wrong size on StrickNR_Mannequin_LightFlicker_C_ReceiveExecute"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'StrickNR_Mannequin_LightFlicker_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_Mannequin_LightFlicker_C_ReceiveExecute, InState) == 0x000008, "Member 'StrickNR_Mannequin_LightFlicker_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStrickNR_Mannequin_LightFlicker_C \ +static_assert(alignof(UStrickNR_Mannequin_LightFlicker_C) == 0x000008, "Wrong alignment on UStrickNR_Mannequin_LightFlicker_C"); \ +static_assert(sizeof(UStrickNR_Mannequin_LightFlicker_C) == 0x0000B8, "Wrong size on UStrickNR_Mannequin_LightFlicker_C"); \ +static_assert(offsetof(UStrickNR_Mannequin_LightFlicker_C, UberGraphFrame) == 0x000088, "Member 'UStrickNR_Mannequin_LightFlicker_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UStrickNR_Mannequin_LightFlicker_C, Light) == 0x000090, "Member 'UStrickNR_Mannequin_LightFlicker_C::Light' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Laser_C_ExecuteUbergraph_BP_Laser \ +static_assert(alignof(BP_Laser_C_ExecuteUbergraph_BP_Laser) == 0x000004, "Wrong alignment on BP_Laser_C_ExecuteUbergraph_BP_Laser"); \ +static_assert(sizeof(BP_Laser_C_ExecuteUbergraph_BP_Laser) == 0x000004, "Wrong size on BP_Laser_C_ExecuteUbergraph_BP_Laser"); \ +static_assert(offsetof(BP_Laser_C_ExecuteUbergraph_BP_Laser, EntryPoint) == 0x000000, "Member 'BP_Laser_C_ExecuteUbergraph_BP_Laser::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Laser_C_TraceLaser \ +static_assert(alignof(BP_Laser_C_TraceLaser) == 0x000008, "Wrong alignment on BP_Laser_C_TraceLaser"); \ +static_assert(sizeof(BP_Laser_C_TraceLaser) == 0x000270, "Wrong size on BP_Laser_C_TraceLaser"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, Temp_object_Variable) == 0x000000, "Member 'BP_Laser_C_TraceLaser::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000010, "Member 'BP_Laser_C_TraceLaser::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_Laser_C_TraceLaser::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_MakeVector_ReturnValue) == 0x000030, "Member 'BP_Laser_C_TraceLaser::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_GetActorForwardVector_ReturnValue) == 0x000048, "Member 'BP_Laser_C_TraceLaser::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_Multiply_VectorVector_ReturnValue) == 0x000060, "Member 'BP_Laser_C_TraceLaser::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000078, "Member 'BP_Laser_C_TraceLaser::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_Add_VectorVector_ReturnValue) == 0x000090, "Member 'BP_Laser_C_TraceLaser::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_LineTraceSingle_OutHit) == 0x0000A8, "Member 'BP_Laser_C_TraceLaser::CallFunc_LineTraceSingle_OutHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_LineTraceSingle_ReturnValue) == 0x000190, "Member 'BP_Laser_C_TraceLaser::CallFunc_LineTraceSingle_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_bBlockingHit) == 0x000191, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_bBlockingHit' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_bInitialOverlap) == 0x000192, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_bInitialOverlap' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_Time) == 0x000194, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_Time' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_Distance) == 0x000198, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_Distance' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_Location) == 0x0001A0, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_Location' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_ImpactPoint) == 0x0001B8, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_ImpactPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_Normal) == 0x0001D0, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_Normal' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_ImpactNormal) == 0x0001E8, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_ImpactNormal' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_PhysMat) == 0x000200, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_PhysMat' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_HitActor) == 0x000208, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_HitActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_HitComponent) == 0x000210, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_HitComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_HitBoneName) == 0x000218, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_HitBoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_BoneName) == 0x000220, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_BoneName' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_HitItem) == 0x000228, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_HitItem' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_ElementIndex) == 0x00022C, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_ElementIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_FaceIndex) == 0x000230, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_FaceIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_TraceStart) == 0x000238, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_TraceStart' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_BreakHitResult_TraceEnd) == 0x000250, "Member 'BP_Laser_C_TraceLaser::CallFunc_BreakHitResult_TraceEnd' has a wrong offset!"); \ +static_assert(offsetof(BP_Laser_C_TraceLaser, CallFunc_Divide_DoubleDouble_A_ImplicitCast) == 0x000268, "Member 'BP_Laser_C_TraceLaser::CallFunc_Divide_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Laser_C_UserConstructionScript \ +static_assert(alignof(BP_Laser_C_UserConstructionScript) == 0x000008, "Wrong alignment on BP_Laser_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Laser_C_UserConstructionScript) == 0x000018, "Wrong size on BP_Laser_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Laser_C_UserConstructionScript, HitLocation) == 0x000000, "Member 'BP_Laser_C_UserConstructionScript::HitLocation' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Laser_C \ +static_assert(alignof(ABP_Laser_C) == 0x000008, "Wrong alignment on ABP_Laser_C"); \ +static_assert(sizeof(ABP_Laser_C) == 0x0002D8, "Wrong size on ABP_Laser_C"); \ +static_assert(offsetof(ABP_Laser_C, UberGraphFrame) == 0x000298, "Member 'ABP_Laser_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, Cylinder) == 0x0002A0, "Member 'ABP_Laser_C::Cylinder' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, SM_lamp_up3c) == 0x0002A8, "Member 'ABP_Laser_C::SM_lamp_up3c' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, SM_VFX_cylinder_a) == 0x0002B0, "Member 'ABP_Laser_C::SM_VFX_cylinder_a' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, Scene) == 0x0002B8, "Member 'ABP_Laser_C::Scene' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, MaxDistance) == 0x0002C0, "Member 'ABP_Laser_C::MaxDistance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, Out_Hit_Distance) == 0x0002C8, "Member 'ABP_Laser_C::Out_Hit_Distance' has a wrong offset!"); \ +static_assert(offsetof(ABP_Laser_C, Radius) == 0x0002D0, "Member 'ABP_Laser_C::Radius' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01 \ +static_assert(alignof(BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01) == 0x000004, "Wrong alignment on BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01"); \ +static_assert(sizeof(BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01) == 0x000004, "Wrong size on BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01"); \ +static_assert(offsetof(BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01, EntryPoint) == 0x000000, "Member 'BP_lighttable_magnifier_01_C_ExecuteUbergraph_BP_lighttable_magnifier_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lighttable_magnifier_01_C \ +static_assert(alignof(ABP_lighttable_magnifier_01_C) == 0x000008, "Wrong alignment on ABP_lighttable_magnifier_01_C"); \ +static_assert(sizeof(ABP_lighttable_magnifier_01_C) == 0x0007A8, "Wrong size on ABP_lighttable_magnifier_01_C"); \ +static_assert(offsetof(ABP_lighttable_magnifier_01_C, UberGraphFrame_BP_lighttable_magnifier_01_C) == 0x000788, "Member 'ABP_lighttable_magnifier_01_C::UberGraphFrame_BP_lighttable_magnifier_01_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_lighttable_magnifier_01_C, SpotLight___Main) == 0x000790, "Member 'ABP_lighttable_magnifier_01_C::SpotLight___Main' has a wrong offset!"); \ +static_assert(offsetof(ABP_lighttable_magnifier_01_C, SM_Candle_StaticMeshComponent0) == 0x000798, "Member 'ABP_lighttable_magnifier_01_C::SM_Candle_StaticMeshComponent0' has a wrong offset!"); \ +static_assert(offsetof(ABP_lighttable_magnifier_01_C, SharedRoot) == 0x0007A0, "Member 'ABP_lighttable_magnifier_01_C::SharedRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ATA_Traversal_PipeClimb_C \ +static_assert(alignof(ATA_Traversal_PipeClimb_C) == 0x000010, "Wrong alignment on ATA_Traversal_PipeClimb_C"); \ +static_assert(sizeof(ATA_Traversal_PipeClimb_C) == 0x000440, "Wrong size on ATA_Traversal_PipeClimb_C"); \ +static_assert(offsetof(ATA_Traversal_PipeClimb_C, DefaultSceneRoot) == 0x000430, "Member 'ATA_Traversal_PipeClimb_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01 \ +static_assert(alignof(BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01) == 0x000004, "Wrong alignment on BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01"); \ +static_assert(sizeof(BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01) == 0x000004, "Wrong size on BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01"); \ +static_assert(offsetof(BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01, EntryPoint) == 0x000000, "Member 'BPC_lighttable_magnifier_01_Warehouse_01_C_ExecuteUbergraph_BPC_lighttable_magnifier_01_Warehouse_01::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPC_lighttable_magnifier_01_Warehouse_01_C \ +static_assert(alignof(ABPC_lighttable_magnifier_01_Warehouse_01_C) == 0x000008, "Wrong alignment on ABPC_lighttable_magnifier_01_Warehouse_01_C"); \ +static_assert(sizeof(ABPC_lighttable_magnifier_01_Warehouse_01_C) == 0x0007D0, "Wrong size on ABPC_lighttable_magnifier_01_Warehouse_01_C"); \ +static_assert(offsetof(ABPC_lighttable_magnifier_01_Warehouse_01_C, UberGraphFrame_BPC_lighttable_magnifier_01_Warehouse_01_C) == 0x0007A8, "Member 'ABPC_lighttable_magnifier_01_Warehouse_01_C::UberGraphFrame_BPC_lighttable_magnifier_01_Warehouse_01_C' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lighttable_magnifier_01_Warehouse_01_C, Timeline_0_Flicker_Colour_0B32FF7D4EF7EC70802DF6A46AC2B8F4) == 0x0007B0, "Member 'ABPC_lighttable_magnifier_01_Warehouse_01_C::Timeline_0_Flicker_Colour_0B32FF7D4EF7EC70802DF6A46AC2B8F4' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lighttable_magnifier_01_Warehouse_01_C, Timeline_0_Flicker_0B32FF7D4EF7EC70802DF6A46AC2B8F4) == 0x0007C0, "Member 'ABPC_lighttable_magnifier_01_Warehouse_01_C::Timeline_0_Flicker_0B32FF7D4EF7EC70802DF6A46AC2B8F4' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lighttable_magnifier_01_Warehouse_01_C, Timeline_0__Direction_0B32FF7D4EF7EC70802DF6A46AC2B8F4) == 0x0007C4, "Member 'ABPC_lighttable_magnifier_01_Warehouse_01_C::Timeline_0__Direction_0B32FF7D4EF7EC70802DF6A46AC2B8F4' has a wrong offset!"); \ +static_assert(offsetof(ABPC_lighttable_magnifier_01_Warehouse_01_C, Timeline_0) == 0x0007C8, "Member 'ABPC_lighttable_magnifier_01_Warehouse_01_C::Timeline_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker \ +static_assert(alignof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker) == 0x000008, "Wrong alignment on StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker"); \ +static_assert(sizeof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker) == 0x000030, "Wrong size on StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, EntryPoint) == 0x000000, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000008, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, K2Node_Event_InAutomata) == 0x000010, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, K2Node_Event_InState) == 0x000018, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, K2Node_DynamicCast_AsBPC_Lighttable_Magnifier_01_Warehouse_01) == 0x000020, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::K2Node_DynamicCast_AsBPC_Lighttable_Magnifier_01_Warehouse_01' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker, CallFunc_IsValid_ReturnValue) == 0x000029, "Member 'StrickNR_LightFlicker_C_ExecuteUbergraph_StrickNR_LightFlicker::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_StrickNR_LightFlicker_C_ReceiveExecute \ +static_assert(alignof(StrickNR_LightFlicker_C_ReceiveExecute) == 0x000008, "Wrong alignment on StrickNR_LightFlicker_C_ReceiveExecute"); \ +static_assert(sizeof(StrickNR_LightFlicker_C_ReceiveExecute) == 0x000010, "Wrong size on StrickNR_LightFlicker_C_ReceiveExecute"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'StrickNR_LightFlicker_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(StrickNR_LightFlicker_C_ReceiveExecute, InState) == 0x000008, "Member 'StrickNR_LightFlicker_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UStrickNR_LightFlicker_C \ +static_assert(alignof(UStrickNR_LightFlicker_C) == 0x000008, "Wrong alignment on UStrickNR_LightFlicker_C"); \ +static_assert(sizeof(UStrickNR_LightFlicker_C) == 0x0000B8, "Wrong size on UStrickNR_LightFlicker_C"); \ +static_assert(offsetof(UStrickNR_LightFlicker_C, UberGraphFrame) == 0x000088, "Member 'UStrickNR_LightFlicker_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UStrickNR_LightFlicker_C, Light) == 0x000090, "Member 'UStrickNR_LightFlicker_C::Light' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass \ +static_assert(alignof(BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass) == 0x000004, "Wrong alignment on BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass"); \ +static_assert(sizeof(BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass) == 0x000004, "Wrong size on BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass"); \ +static_assert(offsetof(BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass, EntryPoint) == 0x000000, "Member 'BP_Throwable_Prop_Glass_C_ExecuteUbergraph_BP_Throwable_Prop_Glass::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Glass_C_GetAudioComponent \ +static_assert(alignof(BP_Throwable_Prop_Glass_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Glass_C_GetAudioComponent"); \ +static_assert(sizeof(BP_Throwable_Prop_Glass_C_GetAudioComponent) == 0x000008, "Wrong size on BP_Throwable_Prop_Glass_C_GetAudioComponent"); \ +static_assert(offsetof(BP_Throwable_Prop_Glass_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_Throwable_Prop_Glass_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Glass_C_GetDataAsset \ +static_assert(alignof(BP_Throwable_Prop_Glass_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Glass_C_GetDataAsset"); \ +static_assert(sizeof(BP_Throwable_Prop_Glass_C_GetDataAsset) == 0x000008, "Wrong size on BP_Throwable_Prop_Glass_C_GetDataAsset"); \ +static_assert(offsetof(BP_Throwable_Prop_Glass_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Throwable_Prop_Glass_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Glass_C_GetMeshComponent \ +static_assert(alignof(BP_Throwable_Prop_Glass_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Glass_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Throwable_Prop_Glass_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Throwable_Prop_Glass_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Throwable_Prop_Glass_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Throwable_Prop_Glass_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Throwable_Prop_Glass_C \ +static_assert(alignof(ABP_Throwable_Prop_Glass_C) == 0x000008, "Wrong alignment on ABP_Throwable_Prop_Glass_C"); \ +static_assert(sizeof(ABP_Throwable_Prop_Glass_C) == 0x000330, "Wrong size on ABP_Throwable_Prop_Glass_C"); \ +static_assert(offsetof(ABP_Throwable_Prop_Glass_C, UberGraphFrame_BP_Throwable_Prop_Glass_C) == 0x000318, "Member 'ABP_Throwable_Prop_Glass_C::UberGraphFrame_BP_Throwable_Prop_Glass_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Prop_Glass_C, WrestlerFearEmitter) == 0x000320, "Member 'ABP_Throwable_Prop_Glass_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Prop_Glass_C, MaxNoise_Range) == 0x000328, "Member 'ABP_Throwable_Prop_Glass_C::MaxNoise_Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector \ +static_assert(alignof(BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector) == 0x000004, "Wrong alignment on BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector"); \ +static_assert(sizeof(BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector) == 0x000004, "Wrong size on BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector"); \ +static_assert(offsetof(BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector, EntryPoint) == 0x000000, "Member 'BP_ThrowableLaserProjector_C_ExecuteUbergraph_BP_ThrowableLaserProjector::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ThrowableLaserProjector_C_GetDataAsset \ +static_assert(alignof(BP_ThrowableLaserProjector_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_ThrowableLaserProjector_C_GetDataAsset"); \ +static_assert(sizeof(BP_ThrowableLaserProjector_C_GetDataAsset) == 0x000008, "Wrong size on BP_ThrowableLaserProjector_C_GetDataAsset"); \ +static_assert(offsetof(BP_ThrowableLaserProjector_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_ThrowableLaserProjector_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ThrowableLaserProjector_C \ +static_assert(alignof(ABP_ThrowableLaserProjector_C) == 0x000008, "Wrong alignment on ABP_ThrowableLaserProjector_C"); \ +static_assert(sizeof(ABP_ThrowableLaserProjector_C) == 0x000338, "Wrong size on ABP_ThrowableLaserProjector_C"); \ +static_assert(offsetof(ABP_ThrowableLaserProjector_C, UberGraphFrame_BP_ThrowableLaserProjector_C) == 0x000318, "Member 'ABP_ThrowableLaserProjector_C::UberGraphFrame_BP_ThrowableLaserProjector_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableLaserProjector_C, WrestlerFearEmitter) == 0x000320, "Member 'ABP_ThrowableLaserProjector_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableLaserProjector_C, MaxNoise_Range) == 0x000328, "Member 'ABP_ThrowableLaserProjector_C::MaxNoise_Range' has a wrong offset!"); \ +static_assert(offsetof(ABP_ThrowableLaserProjector_C, MeshOverride) == 0x000330, "Member 'ABP_ThrowableLaserProjector_C::MeshOverride' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Nightclub_TV_C_CanPull \ +static_assert(alignof(BP_TelekinesisInteractable_Nightclub_TV_C_CanPull) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_Nightclub_TV_C_CanPull"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Nightclub_TV_C_CanPull) == 0x000001, "Wrong size on BP_TelekinesisInteractable_Nightclub_TV_C_CanPull"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV \ +static_assert(alignof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV) == 0x000190, "Wrong size on BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, EntryPoint) == 0x000000, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_K2_GetComponentsByClass_ReturnValue) == 0x000008, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_K2_GetComponentsByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_SetVisionVisibility_self_CastInput) == 0x000018, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_SetVisionVisibility_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_SetVisionVisibility_self_CastInput_1) == 0x000028, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_SetVisionVisibility_self_CastInput_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_K2_GetComponentRotation_ReturnValue) == 0x000038, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_K2_GetComponentRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000050, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000068, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, K2Node_Event_Damage) == 0x000070, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::K2Node_Event_Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, K2Node_Event_DamageType) == 0x000078, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::K2Node_Event_DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, K2Node_Event_InstigatedBy) == 0x000080, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::K2Node_Event_InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, K2Node_Event_DamageCauser) == 0x000088, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::K2Node_Event_DamageCauser' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_IsValid_ReturnValue) == 0x000090, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, K2Node_MakeStruct_GameplayEventData) == 0x000098, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, Temp_delegate_Variable) == 0x000148, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000158, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue) == 0x000160, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_K2_GetAllEnemiesHasMatchingTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_Array_Get_Item) == 0x000170, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_IsValid_ReturnValue_1) == 0x000178, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_Array_IsNotEmpty_ReturnValue) == 0x000179, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_Array_IsNotEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x000180, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_IsPlayerFabien_Return) == 0x000188, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV, CallFunc_IsPlayerFabien_Return_1) == 0x000189, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ExecuteUbergraph_BP_TelekinesisInteractable_Nightclub_TV::CallFunc_IsPlayerFabien_Return_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage \ +static_assert(alignof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage) == 0x000020, "Wrong size on BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage, Damage) == 0x000000, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage::Damage' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage, DamageType) == 0x000008, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage::DamageType' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage, InstigatedBy) == 0x000010, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage::InstigatedBy' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage, DamageCauser) == 0x000018, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_ReceiveAnyDamage::DamageCauser' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight \ +static_assert(alignof(BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight) == 0x000008, "Wrong alignment on BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight) == 0x000020, "Wrong size on BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight, NewLocalVar) == 0x000000, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight::NewLocalVar' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight, K2Node_MakeArray_Array) == 0x000008, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000018, "Member 'BP_TelekinesisInteractable_Nightclub_TV_C_Set_up_heightened_senses_highlight::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TelekinesisInteractable_Nightclub_TV_C \ +static_assert(alignof(ABP_TelekinesisInteractable_Nightclub_TV_C) == 0x000008, "Wrong alignment on ABP_TelekinesisInteractable_Nightclub_TV_C"); \ +static_assert(sizeof(ABP_TelekinesisInteractable_Nightclub_TV_C) == 0x0003E0, "Wrong size on ABP_TelekinesisInteractable_Nightclub_TV_C"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, UberGraphFrame_BP_TelekinesisInteractable_Nightclub_TV_C) == 0x000368, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::UberGraphFrame_BP_TelekinesisInteractable_Nightclub_TV_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, ScreenMesh_Broken) == 0x000370, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::ScreenMesh_Broken' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Spawn_Location) == 0x000378, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Spawn_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, ScreenBackgrount) == 0x000380, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::ScreenBackgrount' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, ScreenMesh) == 0x000388, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::ScreenMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, HSSymbolMesh) == 0x000390, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::HSSymbolMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Cube) == 0x000398, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Cube' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, HeraAudio_0) == 0x0003A0, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::HeraAudio_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Event) == 0x0003A8, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, In_Mesh_Components_to_Highlight_in_Heightened_Senses) == 0x0003B0, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::In_Mesh_Components_to_Highlight_in_Heightened_Senses' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Interacted) == 0x0003C0, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Interacted' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Overlay_material) == 0x0003C8, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Overlay_material' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, On_Tk_ed_Objective) == 0x0003D0, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::On_Tk_ed_Objective' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Nightclub_TV_C, Turned_On_At_Start) == 0x0003D8, "Member 'ABP_TelekinesisInteractable_Nightclub_TV_C::Turned_On_At_Start' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_RecallBlockerTrigger_K2Node_ComponentBoundEvent_1_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature) == 0x000020, "Wrong size on BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_WalkAwayTrigger_K2Node_ComponentBoundEvent_5_ComponentEndOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_MovingElevator_C_BndEvt__BP_MovingElevator_WrestlerInteraction_K2Node_ComponentBoundEvent_2_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator \ +static_assert(alignof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator) == 0x000008, "Wrong alignment on BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator"); \ +static_assert(sizeof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator) == 0x0004E0, "Wrong size on BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, EntryPoint) == 0x000000, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue) == 0x000008, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_bool_Variable) == 0x000010, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_bool_Variable_1) == 0x000011, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_delegate_Variable) == 0x000014, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_delegate_Variable_1) == 0x000024, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_delegate_Variable_2) == 0x000034, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_SwitchEnum_CmpSuccess) == 0x000044, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000048, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerState_ReturnValue) == 0x000058, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerState_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000060, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1) == 0x000070, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_bSuccess_1) == 0x000078, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_Select_Default) == 0x000080, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_Select_Default_1) == 0x000088, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_X) == 0x000090, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_Y) == 0x000098, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_Z) == 0x0000A0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_X_1) == 0x0000A8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_Y_1) == 0x0000B0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BreakVector_Z_1) == 0x0000B8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_MakeVector_ReturnValue) == 0x0000C0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_MakeVector_ReturnValue_1) == 0x0000D8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x0000F0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x0001D8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_bool_Has_Been_Initd_Variable) == 0x0002C0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0002C8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_AsHera_Mission_Objective) == 0x0002D0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_AsHera_Mission_Objective' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_DynamicCast_bSuccess_2) == 0x0002D8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_IsValid_ReturnValue) == 0x0002D9, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, Temp_bool_IsClosed_Variable) == 0x0002DA, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OverlappedComponent_2) == 0x0002E0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OverlappedComponent_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherActor_2) == 0x0002E8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherComp_2) == 0x0002F0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherComp_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherBodyIndex_2) == 0x0002F8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherBodyIndex_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000300, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000308, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_BooleanAND_ReturnValue) == 0x000309, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue_2) == 0x000310, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_AddLooseGameplayTags_ReturnValue) == 0x000318, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_AddLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue_3) == 0x000320, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_InInteractingActor) == 0x000328, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_RemoveLooseGameplayTags_ReturnValue) == 0x000330, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_RemoveLooseGameplayTags_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_CustomEvent_Force_Open) == 0x000331, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_CustomEvent_Force_Open' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_CustomEvent_Force_Close_Exit_Doors) == 0x000332, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_CustomEvent_Force_Close_Exit_Doors' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_CustomEvent_Force_Close) == 0x000333, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_CustomEvent_Force_Close' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerController_ReturnValue) == 0x000338, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerController_ReturnValue_1) == 0x000340, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OverlappedComponent_1) == 0x000348, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000350, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000358, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherBodyIndex_1) == 0x000360, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_bFromSweep) == 0x000364, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_SweepResult) == 0x000368, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000450, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherActor) == 0x000458, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherComp) == 0x000460, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000468, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue) == 0x000470, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000490, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_RemoveLooseGameplayTags_ReturnValue_1) == 0x000491, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_RemoveLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue_4) == 0x000498, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1) == 0x0004A0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_MakeLiteralGameplayTagContainer_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x0004C0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_AddLooseGameplayTags_ReturnValue_1) == 0x0004C1, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_AddLooseGameplayTags_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_GetPlayerPawn_ReturnValue_5) == 0x0004C8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_GetPlayerPawn_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0004D0, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0004D8, "Member 'BP_MovingElevator_C_ExecuteUbergraph_BP_MovingElevator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_GetInteractableData \ +static_assert(alignof(BP_MovingElevator_C_GetInteractableData) == 0x000008, "Wrong alignment on BP_MovingElevator_C_GetInteractableData"); \ +static_assert(sizeof(BP_MovingElevator_C_GetInteractableData) == 0x000018, "Wrong size on BP_MovingElevator_C_GetInteractableData"); \ +static_assert(offsetof(BP_MovingElevator_C_GetInteractableData, ReturnValue) == 0x000000, "Member 'BP_MovingElevator_C_GetInteractableData::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_MovingElevator_C_Modify_Elevator \ +static_assert(alignof(BP_MovingElevator_C_Modify_Elevator) == 0x000001, "Wrong alignment on BP_MovingElevator_C_Modify_Elevator"); \ +static_assert(sizeof(BP_MovingElevator_C_Modify_Elevator) == 0x000003, "Wrong size on BP_MovingElevator_C_Modify_Elevator"); \ +static_assert(offsetof(BP_MovingElevator_C_Modify_Elevator, Force_Open) == 0x000000, "Member 'BP_MovingElevator_C_Modify_Elevator::Force_Open' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_Modify_Elevator, Force_Close_Exit_Doors) == 0x000001, "Member 'BP_MovingElevator_C_Modify_Elevator::Force_Close_Exit_Doors' has a wrong offset!"); \ +static_assert(offsetof(BP_MovingElevator_C_Modify_Elevator, Force_Close) == 0x000002, "Member 'BP_MovingElevator_C_Modify_Elevator::Force_Close' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_MovingElevator_C \ +static_assert(alignof(ABP_MovingElevator_C) == 0x000008, "Wrong alignment on ABP_MovingElevator_C"); \ +static_assert(sizeof(ABP_MovingElevator_C) == 0x000498, "Wrong size on ABP_MovingElevator_C"); \ +static_assert(offsetof(ABP_MovingElevator_C, UberGraphFrame_BP_MovingElevator_C) == 0x000328, "Member 'ABP_MovingElevator_C::UberGraphFrame_BP_MovingElevator_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, HeraAudio_Exit) == 0x000330, "Member 'ABP_MovingElevator_C::HeraAudio_Exit' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, HeraAudio_Enterance) == 0x000338, "Member 'ABP_MovingElevator_C::HeraAudio_Enterance' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, RecallBlockerTrigger) == 0x000340, "Member 'ABP_MovingElevator_C::RecallBlockerTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, HeraPersistenceComponentSequence) == 0x000348, "Member 'ABP_MovingElevator_C::HeraPersistenceComponentSequence' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, sm_str_frieght_elevator) == 0x000350, "Member 'ABP_MovingElevator_C::sm_str_frieght_elevator' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, WrestlerInteractionPoint) == 0x000358, "Member 'ABP_MovingElevator_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, WrestlerInteraction) == 0x000360, "Member 'ABP_MovingElevator_C::WrestlerInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, PlayerInsideTrigger) == 0x000368, "Member 'ABP_MovingElevator_C::PlayerInsideTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, WalkAwayTrigger) == 0x000370, "Member 'ABP_MovingElevator_C::WalkAwayTrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_08) == 0x000378, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_08' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_07) == 0x000380, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_07' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, ExitDoorLeft) == 0x000388, "Member 'ABP_MovingElevator_C::ExitDoorLeft' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_06) == 0x000390, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_06' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_05) == 0x000398, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_05' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, ExitDoorRight) == 0x0003A0, "Member 'ABP_MovingElevator_C::ExitDoorRight' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Exit) == 0x0003A8, "Member 'ABP_MovingElevator_C::Exit' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, ExitDoorBlocker) == 0x0003B0, "Member 'ABP_MovingElevator_C::ExitDoorBlocker' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, EntranceDoorBlocker) == 0x0003B8, "Member 'ABP_MovingElevator_C::EntranceDoorBlocker' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, DoorButtonInsideLift) == 0x0003C0, "Member 'ABP_MovingElevator_C::DoorButtonInsideLift' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Prop_Elevator_Button_Interact_Up) == 0x0003C8, "Member 'ABP_MovingElevator_C::SM_Prop_Elevator_Button_Interact_Up' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Prop_Elevator_Button_Interact_Down) == 0x0003D0, "Member 'ABP_MovingElevator_C::SM_Prop_Elevator_Button_Interact_Down' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Prop_Elevator_Button_Interact_Base) == 0x0003D8, "Member 'ABP_MovingElevator_C::SM_Prop_Elevator_Button_Interact_Base' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_03) == 0x0003E0, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_03' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_04) == 0x0003E8, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_04' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, EntranceDoorLeft) == 0x0003F0, "Member 'ABP_MovingElevator_C::EntranceDoorLeft' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_01) == 0x0003F8, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_01' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, SM_Mentalism_LootBox_Door_02) == 0x000400, "Member 'ABP_MovingElevator_C::SM_Mentalism_LootBox_Door_02' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, EntranceDoorRight) == 0x000408, "Member 'ABP_MovingElevator_C::EntranceDoorRight' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Entrace) == 0x000410, "Member 'ABP_MovingElevator_C::Entrace' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Timeline_DoorL_10EE3FAF403180493663DBB08F1C1040) == 0x000418, "Member 'ABP_MovingElevator_C::Timeline_DoorL_10EE3FAF403180493663DBB08F1C1040' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Timeline__Direction_10EE3FAF403180493663DBB08F1C1040) == 0x00041C, "Member 'ABP_MovingElevator_C::Timeline__Direction_10EE3FAF403180493663DBB08F1C1040' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Timeline) == 0x000420, "Member 'ABP_MovingElevator_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, DoorsOpening) == 0x000428, "Member 'ABP_MovingElevator_C::DoorsOpening' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, StartMovingObjective) == 0x000430, "Member 'ABP_MovingElevator_C::StartMovingObjective' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, KeepNarrativeModeOnExit) == 0x000458, "Member 'ABP_MovingElevator_C::KeepNarrativeModeOnExit' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, PlayerInside) == 0x000459, "Member 'ABP_MovingElevator_C::PlayerInside' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Moved) == 0x00045A, "Member 'ABP_MovingElevator_C::Moved' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, CloseOnExit) == 0x00045B, "Member 'ABP_MovingElevator_C::CloseOnExit' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, MoveTimer) == 0x00045C, "Member 'ABP_MovingElevator_C::MoveTimer' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, AppliedTags) == 0x000460, "Member 'ABP_MovingElevator_C::AppliedTags' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Audio_OpenDoor) == 0x000480, "Member 'ABP_MovingElevator_C::Audio_OpenDoor' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Audio_CloseDoor) == 0x000488, "Member 'ABP_MovingElevator_C::Audio_CloseDoor' has a wrong offset!"); \ +static_assert(offsetof(ABP_MovingElevator_C, Was_Inside_When_Button_Pressed) == 0x000490, "Member 'ABP_MovingElevator_C::Was_Inside_When_Button_Pressed' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_Select_TraversalTag \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_Select_TraversalTag) == 0x000004, "Wrong alignment on BP_WrestlerTraversalPoint_C_Select_TraversalTag"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_Select_TraversalTag) == 0x00003C, "Wrong size on BP_WrestlerTraversalPoint_C_Select_TraversalTag"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, Temp_byte_Variable) == 0x000008, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, Temp_struct_Variable) == 0x00000C, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, Temp_bool_Variable) == 0x000014, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, Temp_struct_Variable_1) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, Temp_struct_Variable_2) == 0x000020, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, CallFunc_Going_Up__ReturnValue) == 0x000028, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::CallFunc_Going_Up__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, CallFunc_Not_PreBool_ReturnValue) == 0x000029, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, K2Node_Select_Default) == 0x00002C, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Select_TraversalTag, K2Node_Select_Default_1) == 0x000034, "Member 'BP_WrestlerTraversalPoint_C_Select_TraversalTag::K2Node_Select_Default_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached) == 0x000020, "Wrong size on BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached, Agent) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached::Agent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached, destination) == 0x000008, "Member 'BP_WrestlerTraversalPoint_C_ReceiveSmartLinkReached::destination' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_Going_Up_ \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_Going_Up_) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_Going_Up_"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_Going_Up_) == 0x000040, "Wrong size on BP_WrestlerTraversalPoint_C_Going_Up_"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_X) == 0x000008, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_Y) == 0x000010, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_Z) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_X_1) == 0x000020, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_Y_1) == 0x000028, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_BreakVector_Z_1) == 0x000030, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Going_Up_, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_WrestlerTraversalPoint_C_Going_Up_::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_GetTraversalDistance \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_GetTraversalDistance) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_GetTraversalDistance"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_GetTraversalDistance) == 0x000090, "Wrong size on BP_WrestlerTraversalPoint_C_GetTraversalDistance"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, Temp_byte_Variable) == 0x000008, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_X) == 0x000010, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_Y) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_Z) == 0x000020, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_MakeVector_ReturnValue) == 0x000028, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_X_1) == 0x000040, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_Y_1) == 0x000048, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_BreakVector_Z_1) == 0x000050, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_MakeVector_ReturnValue_1) == 0x000058, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_MakeVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000070, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_Vector_Distance_ReturnValue) == 0x000078, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, CallFunc_Subtract_DoubleDouble_ReturnValue_1) == 0x000080, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::CallFunc_Subtract_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_GetTraversalDistance, K2Node_Select_Default) == 0x000088, "Member 'BP_WrestlerTraversalPoint_C_GetTraversalDistance::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation) == 0x000070, "Wrong size on BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_GetDirectionUnitVector_ReturnValue) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_GetDirectionUnitVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_Conv_VectorToRotator_ReturnValue) == 0x000030, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_Conv_VectorToRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_BreakRotator_Roll) == 0x000048, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_BreakRotator_Roll' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_BreakRotator_Pitch) == 0x00004C, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_BreakRotator_Pitch' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_BreakRotator_Yaw) == 0x000050, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_BreakRotator_Yaw' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation, CallFunc_MakeRotator_ReturnValue) == 0x000058, "Member 'BP_WrestlerTraversalPoint_C_Get_Traversal_Rotation::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_Get_Starting_Point \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_Get_Starting_Point) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_Get_Starting_Point"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_Get_Starting_Point) == 0x0001C0, "Wrong size on BP_WrestlerTraversalPoint_C_Get_Starting_Point"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, Start) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::Start' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_K2_GetActorRotation_ReturnValue) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_K2_GetActorRotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000048, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_X) == 0x000050, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_Y) == 0x000058, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_Z) == 0x000060, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, K2Node_DynamicCast_AsCapsule_Collision) == 0x000068, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::K2Node_DynamicCast_AsCapsule_Collision' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_GetScaledCapsuleHalfHeight_ReturnValue) == 0x000074, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_GetScaledCapsuleHalfHeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_IsValid_ReturnValue) == 0x000078, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000080, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000088, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_Array_Get_Item) == 0x0000A0, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_GreaterGreater_VectorRotator_ReturnValue) == 0x000110, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_GreaterGreater_VectorRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_GreaterGreater_VectorRotator_ReturnValue_1) == 0x000128, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_GreaterGreater_VectorRotator_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_Add_VectorVector_ReturnValue) == 0x000140, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000158, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_FurthestFromPoint_Furthest_Loc) == 0x000170, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_FurthestFromPoint_Furthest_Loc' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_X_1) == 0x000188, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_Y_1) == 0x000190, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_BreakVector_Z_1) == 0x000198, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_MakeVector_ReturnValue) == 0x0001A0, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Get_Starting_Point, CallFunc_Subtract_DoubleDouble_B_ImplicitCast) == 0x0001B8, "Member 'BP_WrestlerTraversalPoint_C_Get_Starting_Point::CallFunc_Subtract_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_FurthestFromPoint \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_FurthestFromPoint) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_FurthestFromPoint"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_FurthestFromPoint) == 0x000098, "Wrong size on BP_WrestlerTraversalPoint_C_FurthestFromPoint"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, Point) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::Point' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, Loc_1) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::Loc_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, Loc_2) == 0x000030, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::Loc_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, Furthest_Loc) == 0x000048, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::Furthest_Loc' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, Temp_bool_Variable) == 0x000060, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, CallFunc_Vector_Distance_ReturnValue) == 0x000068, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::CallFunc_Vector_Distance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, CallFunc_Vector_Distance_ReturnValue_1) == 0x000070, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::CallFunc_Vector_Distance_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, CallFunc_Less_DoubleDouble_ReturnValue) == 0x000078, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::CallFunc_Less_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_FurthestFromPoint, K2Node_Select_Default) == 0x000080, "Member 'BP_WrestlerTraversalPoint_C_FurthestFromPoint::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint) == 0x000418, "Wrong size on BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, EntryPoint) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000008, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, Temp_bool_Variable) == 0x000020, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_Event_Agent) == 0x000028, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_Event_Agent' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_Event_Destination) == 0x000030, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_Event_Destination' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Starting_Point_Start) == 0x000048, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Starting_Point_Start' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, Temp_byte_Variable) == 0x000060, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetComponentByClass_ReturnValue) == 0x000068, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_IsValid_ReturnValue) == 0x000070, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000078, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, Temp_bool_Variable_1) == 0x000090, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue) == 0x000098, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_1) == 0x0000B0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Select_TraversalTag_ReturnValue) == 0x0000C8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Select_TraversalTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_2) == 0x0000D0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_MakeGameplayTagContainerFromTag_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_MakeGameplayTagContainerFromTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000108, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_3) == 0x000120, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_4) == 0x000138, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetForwardVector_ReturnValue) == 0x000150, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_5) == 0x000168, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000180, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetForwardVector_ReturnValue_1) == 0x000198, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Going_Up__ReturnValue) == 0x0001B0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Going_Up__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0001B8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Add_VectorVector_ReturnValue) == 0x0001D0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_6) == 0x0001E8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, Temp_byte_Variable_1) == 0x000200, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetForwardVector_ReturnValue_2) == 0x000208, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000220, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000238, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Get_Traversal_Rotation_ReturnValue_7) == 0x000250, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Get_Traversal_Rotation_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetTraversalDistance_ReturnValue) == 0x000268, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetTraversalDistance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_GetForwardVector_ReturnValue_3) == 0x000270, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_GetForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_MakeStruct_GameplayEventData) == 0x000288, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000338, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Add_VectorVector_ReturnValue_2) == 0x000350, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_Select_Default) == 0x000368, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_Select_Default_1) == 0x000380, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000398, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0003B0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Add_VectorVector_ReturnValue_3) == 0x0003C8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_Select_Default_2) == 0x0003E0, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface) == 0x0003F8, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_DynamicCast_AsGameplay_Tag_Asset_Interface' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_DynamicCast_bSuccess) == 0x000408, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000409, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, K2Node_MakeStruct_EventMagnitude_ImplicitCast) == 0x00040C, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::K2Node_MakeStruct_EventMagnitude_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint, CallFunc_Delay_Duration_ImplicitCast) == 0x000410, "Member 'BP_WrestlerTraversalPoint_C_ExecuteUbergraph_BP_WrestlerTraversalPoint::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_DrawDebugPoints \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_DrawDebugPoints) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_DrawDebugPoints"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_DrawDebugPoints) == 0x000268, "Wrong size on BP_WrestlerTraversalPoint_C_DrawDebugPoints"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Conv_DoubleToVector_ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Conv_DoubleToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, Temp_byte_Variable) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Conv_DoubleToVector_ReturnValue_1) == 0x000020, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Conv_DoubleToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, Temp_byte_Variable_1) == 0x000038, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, Temp_bool_Variable) == 0x000039, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Get_Traversal_Rotation_ReturnValue) == 0x000040, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Get_Traversal_Rotation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_GetForwardVector_ReturnValue) == 0x000058, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_GetForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Conv_DoubleToVector_ReturnValue_2) == 0x000070, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Conv_DoubleToVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Get_Traversal_Rotation_ReturnValue_1) == 0x000088, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Get_Traversal_Rotation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Going_Up__ReturnValue) == 0x0000A0, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Going_Up__ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_GetForwardVector_ReturnValue_1) == 0x0000A8, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_GetForwardVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Multiply_VectorVector_ReturnValue) == 0x0000C0, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Multiply_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Get_Traversal_Rotation_ReturnValue_2) == 0x0000D8, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Get_Traversal_Rotation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Add_VectorVector_ReturnValue) == 0x0000F0, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_GetForwardVector_ReturnValue_2) == 0x000108, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_GetForwardVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Multiply_VectorVector_ReturnValue_1) == 0x000120, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Multiply_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Add_VectorVector_ReturnValue_1) == 0x000138, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Conv_DoubleToVector_ReturnValue_3) == 0x000150, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Conv_DoubleToVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Get_Traversal_Rotation_ReturnValue_3) == 0x000168, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Get_Traversal_Rotation_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Multiply_VectorVector_ReturnValue_2) == 0x000180, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Multiply_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_GetForwardVector_ReturnValue_3) == 0x000198, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_GetForwardVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Add_VectorVector_ReturnValue_2) == 0x0001B0, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Add_VectorVector_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Multiply_VectorVector_ReturnValue_3) == 0x0001C8, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Multiply_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, K2Node_Select_Default) == 0x0001E0, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, K2Node_Select_Default_1) == 0x0001F8, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_Add_VectorVector_ReturnValue_3) == 0x000210, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_Add_VectorVector_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000228, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, K2Node_Select_Default_2) == 0x000240, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::K2Node_Select_Default_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_DrawDebugSphere_Duration_ImplicitCast) == 0x000258, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_DrawDebugSphere_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_DrawDebugSphere_Duration_ImplicitCast_1) == 0x00025C, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_DrawDebugSphere_Duration_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_DrawDebugSphere_Duration_ImplicitCast_2) == 0x000260, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_DrawDebugSphere_Duration_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_DrawDebugPoints, CallFunc_DrawDebugSphere_Duration_ImplicitCast_3) == 0x000264, "Member 'BP_WrestlerTraversalPoint_C_DrawDebugPoints::CallFunc_DrawDebugSphere_Duration_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerTraversalPoint_C_Assign_Style \ +static_assert(alignof(BP_WrestlerTraversalPoint_C_Assign_Style) == 0x000008, "Wrong alignment on BP_WrestlerTraversalPoint_C_Assign_Style"); \ +static_assert(sizeof(BP_WrestlerTraversalPoint_C_Assign_Style) == 0x000120, "Wrong size on BP_WrestlerTraversalPoint_C_Assign_Style"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Add_VectorVector_ReturnValue) == 0x000088, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Add_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Add_VectorVector_ReturnValue_1) == 0x0000A0, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Add_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Subtract_VectorVector_ReturnValue) == 0x0000B8, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_BreakVector_X) == 0x0000D0, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_BreakVector_Y) == 0x0000D8, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_BreakVector_Z) == 0x0000E0, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_MakeVector_ReturnValue) == 0x0000E8, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Abs_ReturnValue) == 0x000100, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_VSize_ReturnValue) == 0x000108, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000110, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerTraversalPoint_C_Assign_Style, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x000118, "Member 'BP_WrestlerTraversalPoint_C_Assign_Style::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerTraversalPoint_C \ +static_assert(alignof(ABP_WrestlerTraversalPoint_C) == 0x000008, "Wrong alignment on ABP_WrestlerTraversalPoint_C"); \ +static_assert(sizeof(ABP_WrestlerTraversalPoint_C) == 0x000348, "Wrong size on ABP_WrestlerTraversalPoint_C"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, UberGraphFrame) == 0x0002E8, "Member 'ABP_WrestlerTraversalPoint_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, CurrentAgent) == 0x0002F0, "Member 'ABP_WrestlerTraversalPoint_C::CurrentAgent' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, CurrentDestination) == 0x0002F8, "Member 'ABP_WrestlerTraversalPoint_C::CurrentDestination' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, CurrentStartPoint) == 0x000310, "Member 'ABP_WrestlerTraversalPoint_C::CurrentStartPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, AutoStyleAssignment) == 0x000328, "Member 'ABP_WrestlerTraversalPoint_C::AutoStyleAssignment' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, Style) == 0x000329, "Member 'ABP_WrestlerTraversalPoint_C::Style' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, DrawDebug) == 0x00032A, "Member 'ABP_WrestlerTraversalPoint_C::DrawDebug' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, DebugDrawDuration) == 0x000330, "Member 'ABP_WrestlerTraversalPoint_C::DebugDrawDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, OnCooldown) == 0x000338, "Member 'ABP_WrestlerTraversalPoint_C::OnCooldown' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerTraversalPoint_C, Cooldown) == 0x000340, "Member 'ABP_WrestlerTraversalPoint_C::Cooldown' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_UserConstructionScript \ +static_assert(alignof(BP_StaticFX_C_UserConstructionScript) == 0x000001, "Wrong alignment on BP_StaticFX_C_UserConstructionScript"); \ +static_assert(sizeof(BP_StaticFX_C_UserConstructionScript) == 0x000001, "Wrong size on BP_StaticFX_C_UserConstructionScript"); \ +static_assert(offsetof(BP_StaticFX_C_UserConstructionScript, K2Node_SwitchEnum_CmpSuccess) == 0x000000, "Member 'BP_StaticFX_C_UserConstructionScript::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX \ +static_assert(alignof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX) == 0x000008, "Wrong alignment on BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX"); \ +static_assert(sizeof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX) == 0x000290, "Wrong size on BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, EntryPoint) == 0x000000, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Not_PreBool_ReturnValue) == 0x000005, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_GetIsInfinite_ReturnValue) == 0x000006, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_GetIsInfinite_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, Temp_delegate_Variable) == 0x000008, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, Temp_delegate_Variable_1) == 0x000018, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_Event_DeltaTime) == 0x000028, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_Event_DeltaTime' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000030, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000038, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_RandomFloatInRange_ReturnValue) == 0x000040, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_IsValid_ReturnValue_1) == 0x000048, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_RandomFloatInRange_ReturnValue_1) == 0x000050, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_RandomFloatInRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_BooleanAND_ReturnValue) == 0x000058, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_IsValid_ReturnValue_2) == 0x000059, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_SwitchEnum_CmpSuccess) == 0x00005A, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OverlappedComponent_1) == 0x000060, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OverlappedComponent_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherActor_1) == 0x000068, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherComp_1) == 0x000070, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherComp_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherBodyIndex_1) == 0x000078, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherBodyIndex_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_bFromSweep_1) == 0x00007C, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_bFromSweep_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_SweepResult_1) == 0x000080, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_SweepResult_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OverlappedComponent) == 0x000168, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherActor) == 0x000170, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherComp) == 0x000178, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_OtherBodyIndex) == 0x000180, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_bFromSweep) == 0x000184, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_ComponentBoundEvent_SweepResult) == 0x000188, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_ComponentBoundEvent_SweepResult' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_CustomEvent_OverlappedActor) == 0x000270, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_CustomEvent_OverlappedActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_ObjectIsA_ReturnValue) == 0x000278, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_ObjectIsA_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Not_PreBool_ReturnValue_1) == 0x000279, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, K2Node_SwitchEnum_CmpSuccess_1) == 0x00027A, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_BooleanAND_ReturnValue_1) == 0x00027B, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Delay_Duration_ImplicitCast) == 0x00027C, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Add_DoubleDouble_B_ImplicitCast) == 0x000280, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Add_DoubleDouble_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX, CallFunc_Delay_Duration_ImplicitCast_1) == 0x000288, "Member 'BP_StaticFX_C_ExecuteUbergraph_BP_StaticFX::CallFunc_Delay_Duration_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_EditorTick \ +static_assert(alignof(BP_StaticFX_C_EditorTick) == 0x000004, "Wrong alignment on BP_StaticFX_C_EditorTick"); \ +static_assert(sizeof(BP_StaticFX_C_EditorTick) == 0x000004, "Wrong size on BP_StaticFX_C_EditorTick"); \ +static_assert(offsetof(BP_StaticFX_C_EditorTick, DeltaTime) == 0x000000, "Member 'BP_StaticFX_C_EditorTick::DeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_CheckPlayerOverlap \ +static_assert(alignof(BP_StaticFX_C_CheckPlayerOverlap) == 0x000008, "Wrong alignment on BP_StaticFX_C_CheckPlayerOverlap"); \ +static_assert(sizeof(BP_StaticFX_C_CheckPlayerOverlap) == 0x000008, "Wrong size on BP_StaticFX_C_CheckPlayerOverlap"); \ +static_assert(offsetof(BP_StaticFX_C_CheckPlayerOverlap, OverlappedActor) == 0x000000, "Member 'BP_StaticFX_C_CheckPlayerOverlap::OverlappedActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerSphere_K2Node_ComponentBoundEvent_1_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature \ +static_assert(alignof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000008, "Wrong alignment on BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(sizeof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature) == 0x000108, "Wrong size on BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OverlappedComponent) == 0x000000, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OverlappedComponent' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherActor) == 0x000008, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherComp) == 0x000010, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherComp' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, OtherBodyIndex) == 0x000018, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::OtherBodyIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, bFromSweep) == 0x00001C, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::bFromSweep' has a wrong offset!"); \ +static_assert(offsetof(BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature, SweepResult) == 0x000020, "Member 'BP_StaticFX_C_BndEvt__BP_StaticFX_PlayerTriggerBox_K2Node_ComponentBoundEvent_0_ComponentBeginOverlapSignature__DelegateSignature::SweepResult' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_C \ +static_assert(alignof(ABP_StaticFX_C) == 0x000008, "Wrong alignment on ABP_StaticFX_C"); \ +static_assert(sizeof(ABP_StaticFX_C) == 0x000310, "Wrong size on ABP_StaticFX_C"); \ +static_assert(offsetof(ABP_StaticFX_C, UberGraphFrame) == 0x0002A8, "Member 'ABP_StaticFX_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, PlayerTriggerSphere) == 0x0002B0, "Member 'ABP_StaticFX_C::PlayerTriggerSphere' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, PlayerTriggerBox) == 0x0002B8, "Member 'ABP_StaticFX_C::PlayerTriggerBox' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, bAudioEventIsLoop) == 0x0002C0, "Member 'ABP_StaticFX_C::bAudioEventIsLoop' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, bRetrigger) == 0x0002C1, "Member 'ABP_StaticFX_C::bRetrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, Audio_Event) == 0x0002C8, "Member 'ABP_StaticFX_C::Audio_Event' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, bShouldRetrigger) == 0x0002D0, "Member 'ABP_StaticFX_C::bShouldRetrigger' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, Audio_Event_Stop) == 0x0002D8, "Member 'ABP_StaticFX_C::Audio_Event_Stop' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, Audio_Anticipation) == 0x0002E0, "Member 'ABP_StaticFX_C::Audio_Anticipation' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, Min_Delay) == 0x0002E8, "Member 'ABP_StaticFX_C::Min_Delay' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, Max_Delay) == 0x0002F0, "Member 'ABP_StaticFX_C::Max_Delay' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, EditorTime) == 0x0002F8, "Member 'ABP_StaticFX_C::EditorTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, EditorDelayRandom) == 0x000300, "Member 'ABP_StaticFX_C::EditorDelayRandom' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, TriggerMethod) == 0x000308, "Member 'ABP_StaticFX_C::TriggerMethod' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_C, PlayerTriggered) == 0x000309, "Member 'ABP_StaticFX_C::PlayerTriggered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UNavArea_Traversal_C \ +static_assert(alignof(UNavArea_Traversal_C) == 0x000008, "Wrong alignment on UNavArea_Traversal_C"); \ +static_assert(sizeof(UNavArea_Traversal_C) == 0x000048, "Wrong size on UNavArea_Traversal_C"); \ + +#define DUMPER7_ASSERTS_ABP_Enemy_Throwable_PhosphorGrenade_C \ +static_assert(alignof(ABP_Enemy_Throwable_PhosphorGrenade_C) == 0x000008, "Wrong alignment on ABP_Enemy_Throwable_PhosphorGrenade_C"); \ +static_assert(sizeof(ABP_Enemy_Throwable_PhosphorGrenade_C) == 0x000410, "Wrong size on ABP_Enemy_Throwable_PhosphorGrenade_C"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_emissiveplane_01_WareHouse_C \ +static_assert(alignof(ABP_lightutility_emissiveplane_01_WareHouse_C) == 0x000008, "Wrong alignment on ABP_lightutility_emissiveplane_01_WareHouse_C"); \ +static_assert(sizeof(ABP_lightutility_emissiveplane_01_WareHouse_C) == 0x000790, "Wrong size on ABP_lightutility_emissiveplane_01_WareHouse_C"); \ + +#define DUMPER7_ASSERTS_ABP_HeraCineCamera_C \ +static_assert(alignof(ABP_HeraCineCamera_C) == 0x000010, "Wrong alignment on ABP_HeraCineCamera_C"); \ +static_assert(sizeof(ABP_HeraCineCamera_C) == 0x000A40, "Wrong size on ABP_HeraCineCamera_C"); \ + +#define DUMPER7_ASSERTS_LookAtTrigger_C_SetItemState \ +static_assert(alignof(LookAtTrigger_C_SetItemState) == 0x000001, "Wrong alignment on LookAtTrigger_C_SetItemState"); \ +static_assert(sizeof(LookAtTrigger_C_SetItemState) == 0x000001, "Wrong size on LookAtTrigger_C_SetItemState"); \ +static_assert(offsetof(LookAtTrigger_C_SetItemState, InItemState) == 0x000000, "Member 'LookAtTrigger_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LookAtTrigger_C_GetItemState \ +static_assert(alignof(LookAtTrigger_C_GetItemState) == 0x000001, "Wrong alignment on LookAtTrigger_C_GetItemState"); \ +static_assert(sizeof(LookAtTrigger_C_GetItemState) == 0x000001, "Wrong size on LookAtTrigger_C_GetItemState"); \ +static_assert(offsetof(LookAtTrigger_C_GetItemState, ReturnValue) == 0x000000, "Member 'LookAtTrigger_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LookAtTrigger_C_GetDebugString \ +static_assert(alignof(LookAtTrigger_C_GetDebugString) == 0x000008, "Wrong alignment on LookAtTrigger_C_GetDebugString"); \ +static_assert(sizeof(LookAtTrigger_C_GetDebugString) == 0x000010, "Wrong size on LookAtTrigger_C_GetDebugString"); \ +static_assert(offsetof(LookAtTrigger_C_GetDebugString, ReturnValue) == 0x000000, "Member 'LookAtTrigger_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger \ +static_assert(alignof(LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger) == 0x000004, "Wrong alignment on LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger"); \ +static_assert(sizeof(LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger) == 0x000008, "Wrong size on LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger"); \ +static_assert(offsetof(LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger, EntryPoint) == 0x000000, "Member 'LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger, K2Node_Event_InItemState) == 0x000004, "Member 'LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger, K2Node_SwitchEnum_CmpSuccess) == 0x000005, "Member 'LookAtTrigger_C_ExecuteUbergraph_LookAtTrigger::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ALookAtTrigger_C \ +static_assert(alignof(ALookAtTrigger_C) == 0x000008, "Wrong alignment on ALookAtTrigger_C"); \ +static_assert(sizeof(ALookAtTrigger_C) == 0x0002B8, "Wrong size on ALookAtTrigger_C"); \ +static_assert(offsetof(ALookAtTrigger_C, UberGraphFrame) == 0x000298, "Member 'ALookAtTrigger_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ALookAtTrigger_C, WrestlerLookAt) == 0x0002A0, "Member 'ALookAtTrigger_C::WrestlerLookAt' has a wrong offset!"); \ +static_assert(offsetof(ALookAtTrigger_C, Box) == 0x0002A8, "Member 'ALookAtTrigger_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ALookAtTrigger_C, DefaultSceneRoot) == 0x0002B0, "Member 'ALookAtTrigger_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_ProEscape_Guard_Radio_C_GetAudioComp \ +static_assert(alignof(BP_ProEscape_Guard_Radio_C_GetAudioComp) == 0x000008, "Wrong alignment on BP_ProEscape_Guard_Radio_C_GetAudioComp"); \ +static_assert(sizeof(BP_ProEscape_Guard_Radio_C_GetAudioComp) == 0x000008, "Wrong size on BP_ProEscape_Guard_Radio_C_GetAudioComp"); \ +static_assert(offsetof(BP_ProEscape_Guard_Radio_C_GetAudioComp, ReturnValue) == 0x000000, "Member 'BP_ProEscape_Guard_Radio_C_GetAudioComp::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_ProEscape_Guard_Radio_C \ +static_assert(alignof(ABP_ProEscape_Guard_Radio_C) == 0x000008, "Wrong alignment on ABP_ProEscape_Guard_Radio_C"); \ +static_assert(sizeof(ABP_ProEscape_Guard_Radio_C) == 0x0002C8, "Wrong size on ABP_ProEscape_Guard_Radio_C"); \ +static_assert(offsetof(ABP_ProEscape_Guard_Radio_C, HeraAudio) == 0x0002B8, "Member 'ABP_ProEscape_Guard_Radio_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_ProEscape_Guard_Radio_C, DefaultSceneRoot) == 0x0002C0, "Member 'ABP_ProEscape_Guard_Radio_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BaseMapPoolWidget_C \ +static_assert(alignof(UWBP_BaseMapPoolWidget_C) == 0x000008, "Wrong alignment on UWBP_BaseMapPoolWidget_C"); \ +static_assert(sizeof(UWBP_BaseMapPoolWidget_C) == 0x000498, "Wrong size on UWBP_BaseMapPoolWidget_C"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_emissiveplane_01_C \ +static_assert(alignof(ABP_lightutility_emissiveplane_01_C) == 0x000008, "Wrong alignment on ABP_lightutility_emissiveplane_01_C"); \ +static_assert(sizeof(ABP_lightutility_emissiveplane_01_C) == 0x000790, "Wrong size on ABP_lightutility_emissiveplane_01_C"); \ +static_assert(offsetof(ABP_lightutility_emissiveplane_01_C, Plane) == 0x000788, "Member 'ABP_lightutility_emissiveplane_01_C::Plane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_DoPerfTest \ +static_assert(alignof(BP_PerfAnalysis_C_DoPerfTest) == 0x000004, "Wrong alignment on BP_PerfAnalysis_C_DoPerfTest"); \ +static_assert(sizeof(BP_PerfAnalysis_C_DoPerfTest) == 0x000008, "Wrong size on BP_PerfAnalysis_C_DoPerfTest"); \ +static_assert(offsetof(BP_PerfAnalysis_C_DoPerfTest, CameraIndex_0) == 0x000000, "Member 'BP_PerfAnalysis_C_DoPerfTest::CameraIndex_0' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_DoPerfTest, Advance_0) == 0x000004, "Member 'BP_PerfAnalysis_C_DoPerfTest::Advance_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis \ +static_assert(alignof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis"); \ +static_assert(sizeof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis) == 0x000A80, "Wrong size on BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, EntryPoint) == 0x000000, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_IsPIE_ReturnValue) == 0x000004, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_IsPIE_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue) == 0x000005, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue) == 0x000008, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_1) == 0x000018, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_1) == 0x000028, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_2) == 0x000030, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_3) == 0x000040, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_4) == 0x000050, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_5) == 0x000060, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_6) == 0x000070, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_7) == 0x000080, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_8) == 0x000090, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_9) == 0x0000A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_10) == 0x0000B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_11) == 0x0000C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_12) == 0x0000D0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_13) == 0x0000E0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_13' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_14) == 0x0000F0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_14' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_15) == 0x000100, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_15' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_16) == 0x000110, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_16' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_17) == 0x000120, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_17' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_18) == 0x000130, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_18' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_19) == 0x000140, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_19' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_20) == 0x000150, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_20' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_21) == 0x000160, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_21' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_22) == 0x000170, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_22' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_23) == 0x000180, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_23' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_24) == 0x000190, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_24' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_25) == 0x0001A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_25' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_26) == 0x0001B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_26' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_2) == 0x0001C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_27) == 0x0001C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_27' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_3) == 0x0001D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_28) == 0x0001E0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_28' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_29) == 0x0001F0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_29' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_30) == 0x000200, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_30' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_31) == 0x000210, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_31' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_32) == 0x000220, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_32' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_33) == 0x000230, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_33' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_34) == 0x000240, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_34' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_35) == 0x000250, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_35' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_36) == 0x000260, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_36' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_37) == 0x000270, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_37' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_38) == 0x000280, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_38' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_39) == 0x000290, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_39' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_40) == 0x0002A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_40' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_41) == 0x0002B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_41' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_42) == 0x0002C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_42' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_43) == 0x0002D0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_43' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_44) == 0x0002E0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_44' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_4) == 0x0002F0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_45) == 0x0002F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_45' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_46) == 0x000308, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_46' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_5) == 0x000318, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_47) == 0x000320, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_47' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_48) == 0x000330, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_48' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_49) == 0x000340, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_49' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_50) == 0x000350, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_50' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_51) == 0x000360, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_51' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_52) == 0x000370, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_52' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_53) == 0x000380, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_53' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_54) == 0x000390, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_54' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_55) == 0x0003A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_55' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_56) == 0x0003B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_56' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_57) == 0x0003C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_57' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_58) == 0x0003D0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_58' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_59) == 0x0003E0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_59' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_60) == 0x0003F0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_60' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, Temp_int_Loop_Counter_Variable) == 0x000400, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_61) == 0x000408, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_61' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Add_IntInt_ReturnValue) == 0x000418, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_62) == 0x000420, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_62' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, Temp_int_Array_Index_Variable) == 0x000430, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_63) == 0x000438, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_63' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_64) == 0x000448, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_64' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_65) == 0x000458, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_65' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_66) == 0x000468, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_66' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_67) == 0x000478, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_67' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_CustomEvent_Advance_1) == 0x000488, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_CustomEvent_Advance_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_68) == 0x000490, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_68' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_CustomEvent_flags) == 0x0004A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_CustomEvent_flags' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Add_IntInt_ReturnValue_1) == 0x0004B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetPlayerController_ReturnValue) == 0x0004B8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetPlayerPawn_ReturnValue) == 0x0004C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_CustomEvent_CameraIndex) == 0x0004C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_CustomEvent_CameraIndex' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_CustomEvent_Advance) == 0x0004CC, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_CustomEvent_Advance' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetPlayerController_ReturnValue_1) == 0x0004D0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetPlayerController_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Array_Length_ReturnValue) == 0x0004D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Subtract_IntInt_ReturnValue) == 0x0004DC, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Less_IntInt_ReturnValue) == 0x0004E0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Array_Get_Item) == 0x0004E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetCurrentLevelName_ReturnValue) == 0x0004F0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetCurrentLevelName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_6) == 0x000500, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_ReturnValue_7) == 0x000501, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_69) == 0x000508, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_69' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_Event_DeltaSeconds) == 0x000518, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_MakeTimeStamp_TimeStamp) == 0x000520, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_MakeTimeStamp_TimeStamp' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_70) == 0x000530, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_70' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_71) == 0x000540, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_71' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_72) == 0x000550, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_72' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_73) == 0x000560, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_73' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_74) == 0x000570, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_74' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_75) == 0x000580, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_75' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_76) == 0x000590, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_76' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetDisplayName_ReturnValue) == 0x0005A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005B0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Conv_VectorToString_ReturnValue) == 0x0005C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Conv_VectorToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_77) == 0x0005D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_77' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_78) == 0x0005E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_78' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_79) == 0x0005F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_79' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, Temp_int_Variable) == 0x000608, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_80) == 0x000610, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_80' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_81) == 0x000620, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_81' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_82) == 0x000630, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_82' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_83) == 0x000640, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_83' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, K2Node_CustomEvent_CamName) == 0x000650, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::K2Node_CustomEvent_CamName' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_84) == 0x000660, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_84' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Array_Get_Item_1) == 0x000670, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetDisplayName_ReturnValue_1) == 0x000678, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetDisplayName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetDisplayName_ReturnValue_2) == 0x000688, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetDisplayName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_EqualEqual_StriStri_ReturnValue) == 0x000698, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_EqualEqual_StriStri_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x0006A0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Array_Length_ReturnValue_1) == 0x0006B8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Conv_VectorToString_ReturnValue_1) == 0x0006C0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Conv_VectorToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Less_IntInt_ReturnValue_1) == 0x0006D0, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_85) == 0x0006D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_85' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_86) == 0x0006E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_86' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetPlayerController_ReturnValue_2) == 0x0006F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetPlayerController_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_GetAllActorsOfClass_OutActors) == 0x000700, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_87) == 0x000710, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_87' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_88) == 0x000720, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_88' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Array_Length_ReturnValue_2) == 0x000730, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Greater_IntInt_ReturnValue) == 0x000734, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_89) == 0x000738, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_89' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_90) == 0x000748, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_90' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_91) == 0x000758, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_91' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_92) == 0x000768, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_92' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_93) == 0x000778, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_93' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_94) == 0x000788, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_94' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_95) == 0x000798, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_95' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_96) == 0x0007A8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_96' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_97) == 0x0007B8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_97' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_98) == 0x0007C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_98' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_99) == 0x0007D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_99' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_100) == 0x0007E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_100' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_101) == 0x0007F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_101' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_102) == 0x000808, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_102' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_103) == 0x000818, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_103' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_104) == 0x000828, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_104' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_105) == 0x000838, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_105' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_106) == 0x000848, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_106' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_107) == 0x000858, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_107' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_108) == 0x000868, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_108' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_109) == 0x000878, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_109' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_110) == 0x000888, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_110' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_111) == 0x000898, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_111' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_112) == 0x0008A8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_112' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_113) == 0x0008B8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_113' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_114) == 0x0008C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_114' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_115) == 0x0008D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_115' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_116) == 0x0008E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_116' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_117) == 0x0008F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_117' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_118) == 0x000908, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_118' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_119) == 0x000918, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_119' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_120) == 0x000928, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_120' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_121) == 0x000938, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_121' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_122) == 0x000948, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_122' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_123) == 0x000958, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_123' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_124) == 0x000968, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_124' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_125) == 0x000978, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_125' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_126) == 0x000988, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_126' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_127) == 0x000998, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_127' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_128) == 0x0009A8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_128' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_129) == 0x0009B8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_129' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_130) == 0x0009C8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_130' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_131) == 0x0009D8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_131' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_132) == 0x0009E8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_132' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_133) == 0x0009F8, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_133' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_134) == 0x000A08, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_134' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_135) == 0x000A18, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_135' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_Concat_StrStr_ReturnValue_136) == 0x000A28, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_Concat_StrStr_ReturnValue_136' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_WorldIsFullyLoaded_ReturnValue) == 0x000A38, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_WorldIsFullyLoaded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast) == 0x000A40, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1) == 0x000A48, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_2) == 0x000A50, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_3) == 0x000A58, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_4) == 0x000A60, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_5) == 0x000A68, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_6) == 0x000A70, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis, CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_7) == 0x000A78, "Member 'BP_PerfAnalysis_C_ExecuteUbergraph_BP_PerfAnalysis::CallFunc_LessEqual_DoubleDouble_A_ImplicitCast_7' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_GetFlags \ +static_assert(alignof(BP_PerfAnalysis_C_GetFlags) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_GetFlags"); \ +static_assert(sizeof(BP_PerfAnalysis_C_GetFlags) == 0x000020, "Wrong size on BP_PerfAnalysis_C_GetFlags"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, Flags_0) == 0x000000, "Member 'BP_PerfAnalysis_C_GetFlags::Flags_0' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue) == 0x000010, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_1) == 0x000011, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_2) == 0x000012, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_3) == 0x000013, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_4) == 0x000014, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_5) == 0x000015, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_6) == 0x000016, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_Contains_ReturnValue_7) == 0x000017, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_Contains_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue) == 0x000018, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_1) == 0x000019, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_2) == 0x00001A, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_3) == 0x00001B, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_4) == 0x00001C, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_5) == 0x00001D, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetFlags, CallFunc_BooleanOR_ReturnValue_6) == 0x00001E, "Member 'BP_PerfAnalysis_C_GetFlags::CallFunc_BooleanOR_ReturnValue_6' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_GetPerfCamIDFromName \ +static_assert(alignof(BP_PerfAnalysis_C_GetPerfCamIDFromName) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_GetPerfCamIDFromName"); \ +static_assert(sizeof(BP_PerfAnalysis_C_GetPerfCamIDFromName) == 0x000038, "Wrong size on BP_PerfAnalysis_C_GetPerfCamIDFromName"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, PerfCam) == 0x000000, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::PerfCam' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, ReturnValue) == 0x000008, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, CallFunc_GetDisplayName_ReturnValue) == 0x000010, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, CallFunc_GetCharacterArrayFromString_ReturnValue) == 0x000020, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::CallFunc_GetCharacterArrayFromString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, CallFunc_Array_LastIndex_ReturnValue) == 0x000030, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::CallFunc_Array_LastIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_GetPerfCamIDFromName, CallFunc_Conv_StringToInt_ReturnValue) == 0x000034, "Member 'BP_PerfAnalysis_C_GetPerfCamIDFromName::CallFunc_Conv_StringToInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_MakeDoubleDigits \ +static_assert(alignof(BP_PerfAnalysis_C_MakeDoubleDigits) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_MakeDoubleDigits"); \ +static_assert(sizeof(BP_PerfAnalysis_C_MakeDoubleDigits) == 0x000050, "Wrong size on BP_PerfAnalysis_C_MakeDoubleDigits"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, Int) == 0x000000, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::Int' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, String) == 0x000008, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::String' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, DoubleDigitString) == 0x000018, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::DoubleDigitString' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, CallFunc_Less_IntInt_ReturnValue) == 0x000028, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, CallFunc_Conv_IntToString_ReturnValue) == 0x000030, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeDoubleDigits, CallFunc_Concat_StrStr_ReturnValue) == 0x000040, "Member 'BP_PerfAnalysis_C_MakeDoubleDigits::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_MakeFileName \ +static_assert(alignof(BP_PerfAnalysis_C_MakeFileName) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_MakeFileName"); \ +static_assert(sizeof(BP_PerfAnalysis_C_MakeFileName) == 0x000138, "Wrong size on BP_PerfAnalysis_C_MakeFileName"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, Filename_0) == 0x000000, "Member 'BP_PerfAnalysis_C_MakeFileName::Filename_0' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Now_ReturnValue) == 0x000010, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Now_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue) == 0x000018, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_GetTimeOfDay_ReturnValue) == 0x000028, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_GetTimeOfDay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_GetDate_ReturnValue) == 0x000030, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_GetDate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakTimespan_Days) == 0x000038, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakTimespan_Days' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakTimespan_Hours) == 0x00003C, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakTimespan_Hours' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakTimespan_Minutes) == 0x000040, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakTimespan_Minutes' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakTimespan_Seconds) == 0x000044, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakTimespan_Seconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakTimespan_Milliseconds) == 0x000048, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakTimespan_Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Year) == 0x00004C, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Year' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Month) == 0x000050, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Month' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Day) == 0x000054, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Day' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Hour) == 0x000058, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Hour' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Minute) == 0x00005C, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Minute' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Second) == 0x000060, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Second' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_BreakDateTime_Millisecond) == 0x000064, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_BreakDateTime_Millisecond' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_MakeDoubleDigits_String) == 0x000068, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_MakeDoubleDigits_String' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_MakeDoubleDigits_String_1) == 0x000078, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_MakeDoubleDigits_String_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_MakeDoubleDigits_String_2) == 0x000088, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_MakeDoubleDigits_String_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Conv_IntToString_ReturnValue) == 0x000098, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_MakeDoubleDigits_String_3) == 0x0000A8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_MakeDoubleDigits_String_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000B8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000C8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_3) == 0x0000D8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0000E8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_5) == 0x0000F8, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_6) == 0x000108, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_7) == 0x000118, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeFileName, CallFunc_Concat_StrStr_ReturnValue_8) == 0x000128, "Member 'BP_PerfAnalysis_C_MakeFileName::CallFunc_Concat_StrStr_ReturnValue_8' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_MakeTimeStamp \ +static_assert(alignof(BP_PerfAnalysis_C_MakeTimeStamp) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_MakeTimeStamp"); \ +static_assert(sizeof(BP_PerfAnalysis_C_MakeTimeStamp) == 0x0000F8, "Wrong size on BP_PerfAnalysis_C_MakeTimeStamp"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, Timestamp_0) == 0x000000, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::Timestamp_0' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Now_ReturnValue) == 0x000010, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Now_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_GetTimeOfDay_ReturnValue) == 0x000018, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_GetTimeOfDay_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_GetDate_ReturnValue) == 0x000020, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_GetDate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakTimespan_Days) == 0x000028, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakTimespan_Days' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakTimespan_Hours) == 0x00002C, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakTimespan_Hours' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakTimespan_Minutes) == 0x000030, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakTimespan_Minutes' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakTimespan_Seconds) == 0x000034, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakTimespan_Seconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakTimespan_Milliseconds) == 0x000038, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakTimespan_Milliseconds' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Year) == 0x00003C, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Year' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Month) == 0x000040, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Month' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Day) == 0x000044, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Day' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Hour) == 0x000048, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Hour' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Minute) == 0x00004C, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Minute' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Second) == 0x000050, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Second' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_BreakDateTime_Millisecond) == 0x000054, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_BreakDateTime_Millisecond' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_MakeDoubleDigits_String) == 0x000058, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_MakeDoubleDigits_String' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_MakeDoubleDigits_String_1) == 0x000068, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_MakeDoubleDigits_String_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_MakeDoubleDigits_String_2) == 0x000078, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_MakeDoubleDigits_String_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Conv_IntToString_ReturnValue) == 0x000088, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Conv_IntToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_MakeDoubleDigits_String_3) == 0x000098, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_MakeDoubleDigits_String_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Concat_StrStr_ReturnValue) == 0x0000A8, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Concat_StrStr_ReturnValue_1) == 0x0000B8, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Concat_StrStr_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Concat_StrStr_ReturnValue_2) == 0x0000C8, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Concat_StrStr_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Concat_StrStr_ReturnValue_3) == 0x0000D8, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Concat_StrStr_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PerfAnalysis_C_MakeTimeStamp, CallFunc_Concat_StrStr_ReturnValue_4) == 0x0000E8, "Member 'BP_PerfAnalysis_C_MakeTimeStamp::CallFunc_Concat_StrStr_ReturnValue_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_NextCam \ +static_assert(alignof(BP_PerfAnalysis_C_NextCam) == 0x000001, "Wrong alignment on BP_PerfAnalysis_C_NextCam"); \ +static_assert(sizeof(BP_PerfAnalysis_C_NextCam) == 0x000001, "Wrong size on BP_PerfAnalysis_C_NextCam"); \ +static_assert(offsetof(BP_PerfAnalysis_C_NextCam, Advance_0) == 0x000000, "Member 'BP_PerfAnalysis_C_NextCam::Advance_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_ReceiveTick \ +static_assert(alignof(BP_PerfAnalysis_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_PerfAnalysis_C_ReceiveTick"); \ +static_assert(sizeof(BP_PerfAnalysis_C_ReceiveTick) == 0x000004, "Wrong size on BP_PerfAnalysis_C_ReceiveTick"); \ +static_assert(offsetof(BP_PerfAnalysis_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_PerfAnalysis_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_SetPerfCam \ +static_assert(alignof(BP_PerfAnalysis_C_SetPerfCam) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_SetPerfCam"); \ +static_assert(sizeof(BP_PerfAnalysis_C_SetPerfCam) == 0x000010, "Wrong size on BP_PerfAnalysis_C_SetPerfCam"); \ +static_assert(offsetof(BP_PerfAnalysis_C_SetPerfCam, CamName_0) == 0x000000, "Member 'BP_PerfAnalysis_C_SetPerfCam::CamName_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PerfAnalysis_C_StartPerf \ +static_assert(alignof(BP_PerfAnalysis_C_StartPerf) == 0x000008, "Wrong alignment on BP_PerfAnalysis_C_StartPerf"); \ +static_assert(sizeof(BP_PerfAnalysis_C_StartPerf) == 0x000010, "Wrong size on BP_PerfAnalysis_C_StartPerf"); \ +static_assert(offsetof(BP_PerfAnalysis_C_StartPerf, Flags_0) == 0x000000, "Member 'BP_PerfAnalysis_C_StartPerf::Flags_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PerfAnalysis_C \ +static_assert(alignof(ABP_PerfAnalysis_C) == 0x000008, "Wrong alignment on ABP_PerfAnalysis_C"); \ +static_assert(sizeof(ABP_PerfAnalysis_C) == 0x000500, "Wrong size on ABP_PerfAnalysis_C"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, UberGraphFrame) == 0x000298, "Member 'ABP_PerfAnalysis_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_PerfAnalysis_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, PerfCamTag) == 0x0002A8, "Member 'ABP_PerfAnalysis_C::PerfCamTag' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, PerfActors) == 0x0002B0, "Member 'ABP_PerfAnalysis_C::PerfActors' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, CameraIndex) == 0x0002C0, "Member 'ABP_PerfAnalysis_C::CameraIndex' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, LevelName) == 0x0002C8, "Member 'ABP_PerfAnalysis_C::LevelName' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Filename) == 0x0002D8, "Member 'ABP_PerfAnalysis_C::Filename' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, ShowFrameCount) == 0x0002E8, "Member 'ABP_PerfAnalysis_C::ShowFrameCount' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, As_Wrestler_HUDIn_Game) == 0x0002F0, "Member 'ABP_PerfAnalysis_C::As_Wrestler_HUDIn_Game' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Cam_Location) == 0x0002F8, "Member 'ABP_PerfAnalysis_C::Cam_Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, CamName) == 0x000308, "Member 'ABP_PerfAnalysis_C::CamName' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Timestamp) == 0x000318, "Member 'ABP_PerfAnalysis_C::Timestamp' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, PerfActor) == 0x000328, "Member 'ABP_PerfAnalysis_C::PerfActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Advance) == 0x000330, "Member 'ABP_PerfAnalysis_C::Advance' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, PerfCamFound) == 0x000331, "Member 'ABP_PerfAnalysis_C::PerfCamFound' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Lights) == 0x000332, "Member 'ABP_PerfAnalysis_C::Lights' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Shaders) == 0x000333, "Member 'ABP_PerfAnalysis_C::Shaders' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Overdraw) == 0x000334, "Member 'ABP_PerfAnalysis_C::Overdraw' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Trace) == 0x000335, "Member 'ABP_PerfAnalysis_C::Trace' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, All) == 0x000336, "Member 'ABP_PerfAnalysis_C::All' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Last_Measurement) == 0x000338, "Member 'ABP_PerfAnalysis_C::Last_Measurement' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, World) == 0x0004B8, "Member 'ABP_PerfAnalysis_C::World' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, PerfLevel) == 0x0004C0, "Member 'ABP_PerfAnalysis_C::PerfLevel' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, WaitForAvgMetrics) == 0x0004E8, "Member 'ABP_PerfAnalysis_C::WaitForAvgMetrics' has a wrong offset!"); \ +static_assert(offsetof(ABP_PerfAnalysis_C, Level) == 0x0004F0, "Member 'ABP_PerfAnalysis_C::Level' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner \ +static_assert(alignof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner) == 0x000010, "Wrong alignment on BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner"); \ +static_assert(sizeof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner) == 0x000150, "Wrong size on BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, EntryPoint) == 0x000000, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000008, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, Temp_bool_Variable) == 0x000020, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, Temp_class_Variable) == 0x000028, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::Temp_class_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, Temp_class_Variable_1) == 0x000030, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::Temp_class_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, Temp_bool_Variable_1) == 0x000038, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_IsValid_ReturnValue) == 0x000039, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_GetTransform_ReturnValue) == 0x000040, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_GetTransform_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, K2Node_CreateDelegate_OutputDelegate) == 0x0000A0, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, K2Node_Select_Default) == 0x0000B0, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000B8, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue) == 0x0000C0, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_BeginDeferredActorSpawnFromClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_FinishSpawningActor_ReturnValue) == 0x0000C8, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_FinishSpawningActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, K2Node_DynamicCast_AsBP_Enemy_Throwable_Grenade) == 0x0000D0, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::K2Node_DynamicCast_AsBP_Enemy_Throwable_Grenade' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0000E0, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_GetPlayerCharacter_ReturnValue) == 0x0000F8, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_K2_GetComponentLocation_ReturnValue_1) == 0x000100, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_K2_GetComponentLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, K2Node_Select_Default_1) == 0x000118, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity) == 0x000130, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_BlueprintSuggestProjectileVelocity_TossVelocity' has a wrong offset!"); \ +static_assert(offsetof(BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner, CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue) == 0x000148, "Member 'BP_GrenadeSpawner_C_ExecuteUbergraph_BP_GrenadeSpawner::CallFunc_BlueprintSuggestProjectileVelocity_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_GrenadeSpawner_C \ +static_assert(alignof(ABP_GrenadeSpawner_C) == 0x000008, "Wrong alignment on ABP_GrenadeSpawner_C"); \ +static_assert(sizeof(ABP_GrenadeSpawner_C) == 0x0002F8, "Wrong size on ABP_GrenadeSpawner_C"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, UberGraphFrame) == 0x000298, "Member 'ABP_GrenadeSpawner_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, TargetComponent) == 0x0002A0, "Member 'ABP_GrenadeSpawner_C::TargetComponent' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, DefaultSceneRoot) == 0x0002A8, "Member 'ABP_GrenadeSpawner_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, SpawnDelay) == 0x0002B0, "Member 'ABP_GrenadeSpawner_C::SpawnDelay' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Explosion_VFX) == 0x0002B8, "Member 'ABP_GrenadeSpawner_C::Explosion_VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Throw_velocity) == 0x0002C0, "Member 'ABP_GrenadeSpawner_C::Throw_velocity' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Is_Thrown) == 0x0002D8, "Member 'ABP_GrenadeSpawner_C::Is_Thrown' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Affect_Player) == 0x0002D9, "Member 'ABP_GrenadeSpawner_C::Affect_Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Can_Be_Damaged) == 0x0002DA, "Member 'ABP_GrenadeSpawner_C::Can_Be_Damaged' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, IsPhosphor) == 0x0002DB, "Member 'ABP_GrenadeSpawner_C::IsPhosphor' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, As_BP_Enemy_Throwable_Grenade) == 0x0002E0, "Member 'ABP_GrenadeSpawner_C::As_BP_Enemy_Throwable_Grenade' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, UseThrowVelocityInsteadOfTaget) == 0x0002E8, "Member 'ABP_GrenadeSpawner_C::UseThrowVelocityInsteadOfTaget' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Launch_Speed) == 0x0002EC, "Member 'ABP_GrenadeSpawner_C::Launch_Speed' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, AimAtPlayer) == 0x0002F0, "Member 'ABP_GrenadeSpawner_C::AimAtPlayer' has a wrong offset!"); \ +static_assert(offsetof(ABP_GrenadeSpawner_C, Enless_Throwing) == 0x0002F1, "Member 'ABP_GrenadeSpawner_C::Enless_Throwing' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff \ +static_assert(alignof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff) == 0x000008, "Wrong alignment on SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff"); \ +static_assert(sizeof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff) == 0x000070, "Wrong size on SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, EntryPoint) == 0x000000, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, Temp_int_Array_Index_Variable) == 0x00000C, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, K2Node_Event_InAutomata) == 0x000010, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, K2Node_Event_InState) == 0x000018, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_Array_Get_Item) == 0x000020, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_Less_IntInt_ReturnValue) == 0x000058, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, K2Node_DynamicCast_AsBP_Search_Light) == 0x000060, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::K2Node_DynamicCast_AsBP_Search_Light' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'SetSearchLightOnOff_C_ExecuteUbergraph_SetSearchLightOnOff::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SetSearchLightOnOff_C_ReceiveExecute \ +static_assert(alignof(SetSearchLightOnOff_C_ReceiveExecute) == 0x000008, "Wrong alignment on SetSearchLightOnOff_C_ReceiveExecute"); \ +static_assert(sizeof(SetSearchLightOnOff_C_ReceiveExecute) == 0x000010, "Wrong size on SetSearchLightOnOff_C_ReceiveExecute"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'SetSearchLightOnOff_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(SetSearchLightOnOff_C_ReceiveExecute, InState) == 0x000008, "Member 'SetSearchLightOnOff_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USetSearchLightOnOff_C \ +static_assert(alignof(USetSearchLightOnOff_C) == 0x000008, "Wrong alignment on USetSearchLightOnOff_C"); \ +static_assert(sizeof(USetSearchLightOnOff_C) == 0x0000A8, "Wrong size on USetSearchLightOnOff_C"); \ +static_assert(offsetof(USetSearchLightOnOff_C, UberGraphFrame) == 0x000088, "Member 'USetSearchLightOnOff_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USetSearchLightOnOff_C, Enabled) == 0x000090, "Member 'USetSearchLightOnOff_C::Enabled' has a wrong offset!"); \ +static_assert(offsetof(USetSearchLightOnOff_C, SearchLights) == 0x000098, "Member 'USetSearchLightOnOff_C::SearchLights' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent \ +static_assert(alignof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent) == 0x000008, "Wrong alignment on BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent"); \ +static_assert(sizeof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent) == 0x000050, "Wrong size on BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, EntryPoint) == 0x000000, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, K2Node_Event_InAutomata) == 0x000008, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, K2Node_Event_InState) == 0x000010, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000018, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, K2Node_DynamicCast_AsBP_Interactable_Generator) == 0x000020, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::K2Node_DynamicCast_AsBP_Interactable_Generator' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000030, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'BP_IC_GeneratorNoiseEvent_C_ExecuteUbergraph_BP_IC_GeneratorNoiseEvent::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_IC_GeneratorNoiseEvent_C_ReceiveExecute \ +static_assert(alignof(BP_IC_GeneratorNoiseEvent_C_ReceiveExecute) == 0x000008, "Wrong alignment on BP_IC_GeneratorNoiseEvent_C_ReceiveExecute"); \ +static_assert(sizeof(BP_IC_GeneratorNoiseEvent_C_ReceiveExecute) == 0x000010, "Wrong size on BP_IC_GeneratorNoiseEvent_C_ReceiveExecute"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'BP_IC_GeneratorNoiseEvent_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(BP_IC_GeneratorNoiseEvent_C_ReceiveExecute, InState) == 0x000008, "Member 'BP_IC_GeneratorNoiseEvent_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_IC_GeneratorNoiseEvent_C \ +static_assert(alignof(UBP_IC_GeneratorNoiseEvent_C) == 0x000008, "Wrong alignment on UBP_IC_GeneratorNoiseEvent_C"); \ +static_assert(sizeof(UBP_IC_GeneratorNoiseEvent_C) == 0x0000C0, "Wrong size on UBP_IC_GeneratorNoiseEvent_C"); \ +static_assert(offsetof(UBP_IC_GeneratorNoiseEvent_C, UberGraphFrame) == 0x000088, "Member 'UBP_IC_GeneratorNoiseEvent_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_GeneratorNoiseEvent_C, Generator) == 0x000090, "Member 'UBP_IC_GeneratorNoiseEvent_C::Generator' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_GeneratorNoiseEvent_C, In_Max_Range) == 0x0000B8, "Member 'UBP_IC_GeneratorNoiseEvent_C::In_Max_Range' has a wrong offset!"); \ +static_assert(offsetof(UBP_IC_GeneratorNoiseEvent_C, In_Loudness) == 0x0000BC, "Member 'UBP_IC_GeneratorNoiseEvent_C::In_Loudness' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_BndEvt__BP_BasicDoor_StaticMesh_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_CloseInteraction_K2Node_ComponentBoundEvent_1_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature \ +static_assert(alignof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature, InInteractingActor) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_OpenInteraction_K2Node_ComponentBoundEvent_0_WrestlerInteractionDelegate__DelegateSignature::InInteractingActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature \ +static_assert(alignof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong alignment on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature) == 0x000001, "Wrong size on BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature, InItemState) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_BndEvt__BP_WrestlerBasicDoor_WrestlerPersistenceComponentItemState_K2Node_ComponentBoundEvent_2_WrestlerItemStateDelegate__DelegateSignature::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor \ +static_assert(alignof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor) == 0x000220, "Wrong size on BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, EntryPoint) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, Temp_object_Variable) == 0x000008, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_ComponentBoundEvent_InInteractingActor_3) == 0x000020, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_ComponentBoundEvent_InInteractingActor_3' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_ComponentBoundEvent_InInteractingActor_2) == 0x000028, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_ComponentBoundEvent_InInteractingActor_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_GetSwingDirection_OpenFront) == 0x000030, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_GetSwingDirection_OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_CustomEvent_Condition_1) == 0x000031, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_CustomEvent_Condition_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Not_PreBool_ReturnValue) == 0x000032, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_CustomEvent_Condition) == 0x000033, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_CustomEvent_Condition' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SelectFloat_ReturnValue) == 0x000038, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_CustomEvent_Angle) == 0x000040, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_CustomEvent_Angle' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000048, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000050, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_CustomEvent_Z__Yaw_) == 0x000058, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_CustomEvent_Z__Yaw_' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x00005C, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_MakeRotator_ReturnValue) == 0x000060, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_MakeRotator_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, Temp_delegate_Variable) == 0x000078, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_K2_SetRelativeRotation_SweepHitResult) == 0x000088, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_K2_SetRelativeRotation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, Temp_delegate_Variable_1) == 0x000170, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SelectFloat_ReturnValue_1) == 0x000180, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SelectFloat_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x000188, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Lerp_ReturnValue) == 0x000190, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SelectFloat_ReturnValue_2) == 0x000198, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SelectFloat_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_SwitchEnum_CmpSuccess_1) == 0x0001A0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_SwitchEnum_CmpSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_Event_InItemState) == 0x0001A1, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_Event_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_ComponentBoundEvent_InItemState) == 0x0001A2, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_ComponentBoundEvent_InItemState' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x0001A3, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_IsValid_ReturnValue) == 0x0001A4, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_CustomEvent_DoorOpenAngle) == 0x0001A8, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_CustomEvent_DoorOpenAngle' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Abs_ReturnValue) == 0x0001B0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_GetFloatValue_ReturnValue) == 0x0001B8, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_GetFloatValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_MapRangeClamped_ReturnValue) == 0x0001C0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_ComponentBoundEvent_InInteractingActor_1) == 0x0001C8, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_ComponentBoundEvent_InInteractingActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_MakeArray_Array) == 0x0001D0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, K2Node_ComponentBoundEvent_InInteractingActor) == 0x0001E0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::K2Node_ComponentBoundEvent_InInteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x0001E8, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast) == 0x0001EC, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0001F0, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SetAudioPortalOpenness_DoorOpenAngle_ImplicitCast) == 0x0001F8, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SetAudioPortalOpenness_DoorOpenAngle_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_Lerp_Alpha_ImplicitCast) == 0x000200, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_GetFloatValue_InTime_ImplicitCast) == 0x000208, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_GetFloatValue_InTime_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_MapRangeClamped_Value_ImplicitCast) == 0x000210, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_MapRangeClamped_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor, CallFunc_SetOpenAmount_InAmount_ImplicitCast) == 0x000218, "Member 'BP_WrestlerBasicDoor_C_ExecuteUbergraph_BP_WrestlerBasicDoor::CallFunc_SetOpenAmount_InAmount_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_GetDebugString \ +static_assert(alignof(BP_WrestlerBasicDoor_C_GetDebugString) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_GetDebugString"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_GetDebugString) == 0x000010, "Wrong size on BP_WrestlerBasicDoor_C_GetDebugString"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetDebugString, ReturnValue) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_GetDebugString::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_GetItemState \ +static_assert(alignof(BP_WrestlerBasicDoor_C_GetItemState) == 0x000001, "Wrong alignment on BP_WrestlerBasicDoor_C_GetItemState"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_GetItemState) == 0x000001, "Wrong size on BP_WrestlerBasicDoor_C_GetItemState"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetItemState, ReturnValue) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_GetItemState::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_GetSwingDirection \ +static_assert(alignof(BP_WrestlerBasicDoor_C_GetSwingDirection) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_GetSwingDirection"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_GetSwingDirection) == 0x000108, "Wrong size on BP_WrestlerBasicDoor_C_GetSwingDirection"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, InteractingActor) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::InteractingActor' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, OpenFront) == 0x000008, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::OpenFront' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, Temp_bool_Variable) == 0x000009, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000010, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000028, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_K2_GetActorLocation_ReturnValue_1) == 0x000040, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_K2_GetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_X) == 0x000058, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_Y) == 0x000060, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_Z) == 0x000068, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Subtract_VectorVector_ReturnValue) == 0x000070, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Subtract_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_X_1) == 0x000088, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_X_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_Y_1) == 0x000090, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_Y_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_BreakVector_Z_1) == 0x000098, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_BreakVector_Z_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_GetActorForwardVector_ReturnValue) == 0x0000A0, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_GetActorForwardVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_MakeVector_ReturnValue) == 0x0000B8, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Dot_VectorVector_ReturnValue) == 0x0000D0, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Dot_VectorVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Subtract_VectorVector_ReturnValue_1) == 0x0000D8, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Subtract_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0000F0, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Dot_VectorVector_ReturnValue_1) == 0x0000F8, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Dot_VectorVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, CallFunc_Greater_DoubleDouble_ReturnValue_1) == 0x000100, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::CallFunc_Greater_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_GetSwingDirection, K2Node_Select_Default) == 0x000101, "Member 'BP_WrestlerBasicDoor_C_GetSwingDirection::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_OpenDoor \ +static_assert(alignof(BP_WrestlerBasicDoor_C_OpenDoor) == 0x000001, "Wrong alignment on BP_WrestlerBasicDoor_C_OpenDoor"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_OpenDoor) == 0x000001, "Wrong size on BP_WrestlerBasicDoor_C_OpenDoor"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_OpenDoor, Condition) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_OpenDoor::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_SetAudioPortalOpenness \ +static_assert(alignof(BP_WrestlerBasicDoor_C_SetAudioPortalOpenness) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_SetAudioPortalOpenness"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_SetAudioPortalOpenness) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_SetAudioPortalOpenness"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_SetAudioPortalOpenness, DoorOpenAngle) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_SetAudioPortalOpenness::DoorOpenAngle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_SetItemState \ +static_assert(alignof(BP_WrestlerBasicDoor_C_SetItemState) == 0x000001, "Wrong alignment on BP_WrestlerBasicDoor_C_SetItemState"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_SetItemState) == 0x000001, "Wrong size on BP_WrestlerBasicDoor_C_SetItemState"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_SetItemState, InItemState) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_SetItemState::InItemState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_SwingOpen \ +static_assert(alignof(BP_WrestlerBasicDoor_C_SwingOpen) == 0x000001, "Wrong alignment on BP_WrestlerBasicDoor_C_SwingOpen"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_SwingOpen) == 0x000001, "Wrong size on BP_WrestlerBasicDoor_C_SwingOpen"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_SwingOpen, Condition) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_SwingOpen::Condition' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_UpdateMeshAngle \ +static_assert(alignof(BP_WrestlerBasicDoor_C_UpdateMeshAngle) == 0x000004, "Wrong alignment on BP_WrestlerBasicDoor_C_UpdateMeshAngle"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_UpdateMeshAngle) == 0x000004, "Wrong size on BP_WrestlerBasicDoor_C_UpdateMeshAngle"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_UpdateMeshAngle, Z__Yaw_) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_UpdateMeshAngle::Z__Yaw_' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_UpdateRotation \ +static_assert(alignof(BP_WrestlerBasicDoor_C_UpdateRotation) == 0x000008, "Wrong alignment on BP_WrestlerBasicDoor_C_UpdateRotation"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_UpdateRotation) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_UpdateRotation"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_UpdateRotation, Angle) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_UpdateRotation::Angle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WrestlerBasicDoor_C_UserConstructionScript \ +static_assert(alignof(BP_WrestlerBasicDoor_C_UserConstructionScript) == 0x000004, "Wrong alignment on BP_WrestlerBasicDoor_C_UserConstructionScript"); \ +static_assert(sizeof(BP_WrestlerBasicDoor_C_UserConstructionScript) == 0x000008, "Wrong size on BP_WrestlerBasicDoor_C_UserConstructionScript"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_UserConstructionScript, CallFunc_NotEqual_DoubleDouble_ReturnValue) == 0x000000, "Member 'BP_WrestlerBasicDoor_C_UserConstructionScript::CallFunc_NotEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WrestlerBasicDoor_C_UserConstructionScript, CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast) == 0x000004, "Member 'BP_WrestlerBasicDoor_C_UserConstructionScript::CallFunc_UpdateMeshAngle_Z__Yaw__ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerBasicDoor_C \ +static_assert(alignof(ABP_WrestlerBasicDoor_C) == 0x000008, "Wrong alignment on ABP_WrestlerBasicDoor_C"); \ +static_assert(sizeof(ABP_WrestlerBasicDoor_C) == 0x0003D0, "Wrong size on ABP_WrestlerBasicDoor_C"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, UberGraphFrame) == 0x0002C0, "Member 'ABP_WrestlerBasicDoor_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, InteractionPromptMover) == 0x0002C8, "Member 'ABP_WrestlerBasicDoor_C::InteractionPromptMover' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, HeraMissionActor) == 0x0002D0, "Member 'ABP_WrestlerBasicDoor_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, WrestlerPersistenceComponentItemState) == 0x0002D8, "Member 'ABP_WrestlerBasicDoor_C::WrestlerPersistenceComponentItemState' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, InteractionCollider) == 0x0002E0, "Member 'ABP_WrestlerBasicDoor_C::InteractionCollider' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, WrestlerInteractionPoint) == 0x0002E8, "Member 'ABP_WrestlerBasicDoor_C::WrestlerInteractionPoint' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, CloseInteraction) == 0x0002F0, "Member 'ABP_WrestlerBasicDoor_C::CloseInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, BackText) == 0x0002F8, "Member 'ABP_WrestlerBasicDoor_C::BackText' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, FrontText) == 0x000300, "Member 'ABP_WrestlerBasicDoor_C::FrontText' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, OpenInteraction) == 0x000308, "Member 'ABP_WrestlerBasicDoor_C::OpenInteraction' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, HeraAudioPortal) == 0x000310, "Member 'ABP_WrestlerBasicDoor_C::HeraAudioPortal' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, HeraAudio) == 0x000318, "Member 'ABP_WrestlerBasicDoor_C::HeraAudio' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, Box) == 0x000320, "Member 'ABP_WrestlerBasicDoor_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, NavModifier) == 0x000328, "Member 'ABP_WrestlerBasicDoor_C::NavModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, StaticMesh) == 0x000330, "Member 'ABP_WrestlerBasicDoor_C::StaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, DoorRoot) == 0x000338, "Member 'ABP_WrestlerBasicDoor_C::DoorRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, Arrow) == 0x000340, "Member 'ABP_WrestlerBasicDoor_C::Arrow' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, CloseDoorTimeline_DoorAnim_4550AE2746C5740D1C4DD8B031C28E69) == 0x000348, "Member 'ABP_WrestlerBasicDoor_C::CloseDoorTimeline_DoorAnim_4550AE2746C5740D1C4DD8B031C28E69' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, CloseDoorTimeline__Direction_4550AE2746C5740D1C4DD8B031C28E69) == 0x00034C, "Member 'ABP_WrestlerBasicDoor_C::CloseDoorTimeline__Direction_4550AE2746C5740D1C4DD8B031C28E69' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, CloseDoorTimeline) == 0x000350, "Member 'ABP_WrestlerBasicDoor_C::CloseDoorTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, OpenDoorTimeline_DoorAnim_8A8B13B9493FBE9013DFD091C76B91B6) == 0x000358, "Member 'ABP_WrestlerBasicDoor_C::OpenDoorTimeline_DoorAnim_8A8B13B9493FBE9013DFD091C76B91B6' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, OpenDoorTimeline__Direction_8A8B13B9493FBE9013DFD091C76B91B6) == 0x00035C, "Member 'ABP_WrestlerBasicDoor_C::OpenDoorTimeline__Direction_8A8B13B9493FBE9013DFD091C76B91B6' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, OpenDoorTimeline) == 0x000360, "Member 'ABP_WrestlerBasicDoor_C::OpenDoorTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, Item_State) == 0x000368, "Member 'ABP_WrestlerBasicDoor_C::Item_State' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, IsOpen) == 0x000369, "Member 'ABP_WrestlerBasicDoor_C::IsOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, AngleDirectionModifier) == 0x000370, "Member 'ABP_WrestlerBasicDoor_C::AngleDirectionModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, AngleLimit) == 0x000378, "Member 'ABP_WrestlerBasicDoor_C::AngleLimit' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, SpeedModifier) == 0x000380, "Member 'ABP_WrestlerBasicDoor_C::SpeedModifier' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, AjarAngle) == 0x000388, "Member 'ABP_WrestlerBasicDoor_C::AjarAngle' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, DoorOpen) == 0x000390, "Member 'ABP_WrestlerBasicDoor_C::DoorOpen' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, DoorClose) == 0x000398, "Member 'ABP_WrestlerBasicDoor_C::DoorClose' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, IsAjar) == 0x0003A0, "Member 'ABP_WrestlerBasicDoor_C::IsAjar' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, AudioPortalCurve) == 0x0003A8, "Member 'ABP_WrestlerBasicDoor_C::AudioPortalCurve' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, AudioPortalOpennessWhenDoorClosed) == 0x0003B0, "Member 'ABP_WrestlerBasicDoor_C::AudioPortalOpennessWhenDoorClosed' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, Invert) == 0x0003B8, "Member 'ABP_WrestlerBasicDoor_C::Invert' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, Try_to_Open_Locked_Door) == 0x0003C0, "Member 'ABP_WrestlerBasicDoor_C::Try_to_Open_Locked_Door' has a wrong offset!"); \ +static_assert(offsetof(ABP_WrestlerBasicDoor_C, MUS_PB_Modifier) == 0x0003C8, "Member 'ABP_WrestlerBasicDoor_C::MUS_PB_Modifier' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl \ +static_assert(alignof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl) == 0x000008, "Wrong alignment on LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl"); \ +static_assert(sizeof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl) == 0x000078, "Wrong size on LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, EntryPoint) == 0x000000, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, Temp_int_Array_Index_Variable) == 0x000004, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, K2Node_SwitchEnum_CmpSuccess) == 0x000008, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, K2Node_Event_InAutomata) == 0x000010, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, K2Node_Event_InState) == 0x000018, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, Temp_int_Loop_Counter_Variable) == 0x000020, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_Array_Get_Item) == 0x000028, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000050, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_Add_IntInt_ReturnValue) == 0x000058, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, K2Node_DynamicCast_AsBP_TKable_Laser) == 0x000060, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::K2Node_DynamicCast_AsBP_TKable_Laser' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_IsValid_ReturnValue) == 0x000069, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_Array_Length_ReturnValue) == 0x00006C, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'LaserProjectorControl_C_ExecuteUbergraph_LaserProjectorControl::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LaserProjectorControl_C_ReceiveExecute \ +static_assert(alignof(LaserProjectorControl_C_ReceiveExecute) == 0x000008, "Wrong alignment on LaserProjectorControl_C_ReceiveExecute"); \ +static_assert(sizeof(LaserProjectorControl_C_ReceiveExecute) == 0x000010, "Wrong size on LaserProjectorControl_C_ReceiveExecute"); \ +static_assert(offsetof(LaserProjectorControl_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'LaserProjectorControl_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(LaserProjectorControl_C_ReceiveExecute, InState) == 0x000008, "Member 'LaserProjectorControl_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULaserProjectorControl_C \ +static_assert(alignof(ULaserProjectorControl_C) == 0x000008, "Wrong alignment on ULaserProjectorControl_C"); \ +static_assert(sizeof(ULaserProjectorControl_C) == 0x0000A8, "Wrong size on ULaserProjectorControl_C"); \ +static_assert(offsetof(ULaserProjectorControl_C, UberGraphFrame) == 0x000088, "Member 'ULaserProjectorControl_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ULaserProjectorControl_C, LaserProjectors) == 0x000090, "Member 'ULaserProjectorControl_C::LaserProjectors' has a wrong offset!"); \ +static_assert(offsetof(ULaserProjectorControl_C, NewState) == 0x0000A0, "Member 'ULaserProjectorControl_C::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator \ +static_assert(alignof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator) == 0x000008, "Wrong alignment on BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator"); \ +static_assert(sizeof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator) == 0x0003B0, "Wrong size on BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, EntryPoint) == 0x000000, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_1) == 0x00000C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_1) == 0x000010, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable) == 0x000014, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_2) == 0x000018, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_2) == 0x00001C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_1) == 0x000020, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_2) == 0x000024, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000028, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_3) == 0x000030, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_3) == 0x000034, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_3) == 0x000038, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_4) == 0x00003C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_4) == 0x000040, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_4) == 0x000044, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_5) == 0x000048, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_Event_DeltaSeconds) == 0x00004C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_Event_DeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000050, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_bool_Variable) == 0x000068, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_BreakVector_X) == 0x000070, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_BreakVector_X' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_BreakVector_Y) == 0x000078, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_BreakVector_Y' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_BreakVector_Z) == 0x000080, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_BreakVector_Z' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_bool_Variable_1) == 0x000088, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue) == 0x00008C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue) == 0x000090, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_CustomEvent_Enabled) == 0x000091, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_CustomEvent_Enabled' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item) == 0x000098, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_1) == 0x0000C0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x0000C8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser) == 0x0000D0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_5) == 0x0000DC, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_5) == 0x0000E0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_Select_Default) == 0x0000E8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_Select_Default_1) == 0x0000F0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_1) == 0x000100, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_LinearColorToVector_ReturnValue) == 0x000128, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_LinearColorToVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000140, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_2) == 0x000148, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_1) == 0x000150, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_1) == 0x000158, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_1) == 0x000159, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Loop_Counter_Variable_6) == 0x00015C, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Loop_Counter_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_2) == 0x000160, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_IntInt_ReturnValue_6) == 0x000164, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_2) == 0x000168, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000190, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2) == 0x000198, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_DegSin_ReturnValue) == 0x0001A0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_DegSin_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_2) == 0x0001A8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_2) == 0x0001B0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_DegCos_ReturnValue) == 0x0001B8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_DegCos_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_3) == 0x0001C0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_3) == 0x0001C4, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_3) == 0x0001C8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_4) == 0x0001F0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3) == 0x0001F8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_4) == 0x000200, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_3) == 0x000208, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_3) == 0x000210, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_4) == 0x000218, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_5) == 0x000240, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4) == 0x000248, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_5) == 0x000250, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_4) == 0x000258, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_4) == 0x000260, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_RemoveItem_ReturnValue) == 0x000261, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_6) == 0x000264, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_IntToDouble_ReturnValue_1) == 0x000268, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_IntToDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_MapRangeClamped_ReturnValue) == 0x000270, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_MapRangeClamped_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000278, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, Temp_int_Array_Index_Variable_6) == 0x000280, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::Temp_int_Array_Index_Variable_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_ReturnValue_1) == 0x000288, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_5) == 0x000290, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_SelectFloat_ReturnValue) == 0x0002B8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_5) == 0x0002C0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_ReturnValue_2) == 0x0002C8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_5) == 0x0002D0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_5) == 0x0002D8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_DoubleDouble_ReturnValue_1) == 0x0002E0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_DoubleDouble_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_IsValid_ReturnValue) == 0x0002E8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_IsValid_ReturnValue_1) == 0x0002E9, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_ReturnValue_3) == 0x0002F0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_DoubleDouble_ReturnValue_2) == 0x0002F8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_DoubleDouble_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_MakeVector_ReturnValue) == 0x000300, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_MakeVector_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_CustomEvent_Material) == 0x000318, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_CustomEvent_Material' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_CustomEvent_InLinearColor) == 0x000320, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_CustomEvent_InLinearColor' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_LinearColorToVector_ReturnValue_1) == 0x000330, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_LinearColorToVector_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Get_Item_6) == 0x000348, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Get_Item_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Array_Length_ReturnValue_7) == 0x000370, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Array_Length_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_6) == 0x000378, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Less_IntInt_ReturnValue_6) == 0x000380, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Less_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_AsBP_TKable_Laser_6) == 0x000388, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_AsBP_TKable_Laser_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, K2Node_DynamicCast_bSuccess_6) == 0x000390, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_IsValid_ReturnValue_2) == 0x000391, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_IsValid_ReturnValue_3) == 0x000392, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Add_DoubleDouble_A_ImplicitCast) == 0x000398, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Add_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast) == 0x0003A0, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator, CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1) == 0x0003A8, "Member 'BP_LaserCoordinator_C_ExecuteUbergraph_BP_LaserCoordinator::CallFunc_Multiply_DoubleDouble_A_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LaserCoordinator_C_ReceiveTick \ +static_assert(alignof(BP_LaserCoordinator_C_ReceiveTick) == 0x000004, "Wrong alignment on BP_LaserCoordinator_C_ReceiveTick"); \ +static_assert(sizeof(BP_LaserCoordinator_C_ReceiveTick) == 0x000004, "Wrong size on BP_LaserCoordinator_C_ReceiveTick"); \ +static_assert(offsetof(BP_LaserCoordinator_C_ReceiveTick, DeltaSeconds) == 0x000000, "Member 'BP_LaserCoordinator_C_ReceiveTick::DeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LaserCoordinator_C_SetFightmode \ +static_assert(alignof(BP_LaserCoordinator_C_SetFightmode) == 0x000001, "Wrong alignment on BP_LaserCoordinator_C_SetFightmode"); \ +static_assert(sizeof(BP_LaserCoordinator_C_SetFightmode) == 0x000001, "Wrong size on BP_LaserCoordinator_C_SetFightmode"); \ +static_assert(offsetof(BP_LaserCoordinator_C_SetFightmode, Enabled) == 0x000000, "Member 'BP_LaserCoordinator_C_SetFightmode::Enabled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_LaserCoordinator_C_UpdateColour \ +static_assert(alignof(BP_LaserCoordinator_C_UpdateColour) == 0x000008, "Wrong alignment on BP_LaserCoordinator_C_UpdateColour"); \ +static_assert(sizeof(BP_LaserCoordinator_C_UpdateColour) == 0x000018, "Wrong size on BP_LaserCoordinator_C_UpdateColour"); \ +static_assert(offsetof(BP_LaserCoordinator_C_UpdateColour, Material) == 0x000000, "Member 'BP_LaserCoordinator_C_UpdateColour::Material' has a wrong offset!"); \ +static_assert(offsetof(BP_LaserCoordinator_C_UpdateColour, InLinearColor) == 0x000008, "Member 'BP_LaserCoordinator_C_UpdateColour::InLinearColor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_LaserCoordinator_C \ +static_assert(alignof(ABP_LaserCoordinator_C) == 0x000008, "Wrong alignment on ABP_LaserCoordinator_C"); \ +static_assert(sizeof(ABP_LaserCoordinator_C) == 0x000348, "Wrong size on ABP_LaserCoordinator_C"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, UberGraphFrame) == 0x000298, "Member 'ABP_LaserCoordinator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_LaserCoordinator_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationTimeline_ShowRadius_21ABAC6B44BAABF5261A90AD93414E3C) == 0x0002A8, "Member 'ABP_LaserCoordinator_C::RotationTimeline_ShowRadius_21ABAC6B44BAABF5261A90AD93414E3C' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationTimeline_Radius_21ABAC6B44BAABF5261A90AD93414E3C) == 0x0002AC, "Member 'ABP_LaserCoordinator_C::RotationTimeline_Radius_21ABAC6B44BAABF5261A90AD93414E3C' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationTimeline_Rot_21ABAC6B44BAABF5261A90AD93414E3C) == 0x0002B0, "Member 'ABP_LaserCoordinator_C::RotationTimeline_Rot_21ABAC6B44BAABF5261A90AD93414E3C' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationTimeline__Direction_21ABAC6B44BAABF5261A90AD93414E3C) == 0x0002B4, "Member 'ABP_LaserCoordinator_C::RotationTimeline__Direction_21ABAC6B44BAABF5261A90AD93414E3C' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationTimeline) == 0x0002B8, "Member 'ABP_LaserCoordinator_C::RotationTimeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, Lasers) == 0x0002C0, "Member 'ABP_LaserCoordinator_C::Lasers' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, Degree) == 0x0002D0, "Member 'ABP_LaserCoordinator_C::Degree' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, RotationRate) == 0x0002D8, "Member 'ABP_LaserCoordinator_C::RotationRate' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, CurrentProjector) == 0x0002E0, "Member 'ABP_LaserCoordinator_C::CurrentProjector' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, FightMode) == 0x0002E8, "Member 'ABP_LaserCoordinator_C::FightMode' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, LaserMaterial_Fight) == 0x0002F0, "Member 'ABP_LaserCoordinator_C::LaserMaterial_Fight' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, Colour_Fight) == 0x0002F8, "Member 'ABP_LaserCoordinator_C::Colour_Fight' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, LaserMaterial_Normal) == 0x000308, "Member 'ABP_LaserCoordinator_C::LaserMaterial_Normal' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, Colour_Normal) == 0x000310, "Member 'ABP_LaserCoordinator_C::Colour_Normal' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, NotBrokenLasers) == 0x000320, "Member 'ABP_LaserCoordinator_C::NotBrokenLasers' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, IdleRadiusMultiplier) == 0x000330, "Member 'ABP_LaserCoordinator_C::IdleRadiusMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, FightmodeRadiusMultiplier) == 0x000338, "Member 'ABP_LaserCoordinator_C::FightmodeRadiusMultiplier' has a wrong offset!"); \ +static_assert(offsetof(ABP_LaserCoordinator_C, TestRoutine) == 0x000340, "Member 'ABP_LaserCoordinator_C::TestRoutine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask \ +static_assert(alignof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask) == 0x000008, "Wrong alignment on LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask"); \ +static_assert(sizeof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask) == 0x000058, "Wrong size on LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, EntryPoint) == 0x000000, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_Event_InAutomata) == 0x000008, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_Event_InAutomata' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_Event_InState) == 0x000010, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_Event_InState' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000020, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_DynamicCast_AsBP_Laser_Coordinator) == 0x000028, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_DynamicCast_AsBP_Laser_Coordinator' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_DynamicCast_bSuccess) == 0x000030, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1) == 0x000038, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_DynamicCast_AsBP_Laser_Coordinator_1) == 0x000048, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_DynamicCast_AsBP_Laser_Coordinator_1' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask, K2Node_DynamicCast_bSuccess_1) == 0x000050, "Member 'LaserCoordinatorTask_C_ExecuteUbergraph_LaserCoordinatorTask::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_LaserCoordinatorTask_C_ReceiveExecute \ +static_assert(alignof(LaserCoordinatorTask_C_ReceiveExecute) == 0x000008, "Wrong alignment on LaserCoordinatorTask_C_ReceiveExecute"); \ +static_assert(sizeof(LaserCoordinatorTask_C_ReceiveExecute) == 0x000010, "Wrong size on LaserCoordinatorTask_C_ReceiveExecute"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ReceiveExecute, InAutomata) == 0x000000, "Member 'LaserCoordinatorTask_C_ReceiveExecute::InAutomata' has a wrong offset!"); \ +static_assert(offsetof(LaserCoordinatorTask_C_ReceiveExecute, InState) == 0x000008, "Member 'LaserCoordinatorTask_C_ReceiveExecute::InState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ULaserCoordinatorTask_C \ +static_assert(alignof(ULaserCoordinatorTask_C) == 0x000008, "Wrong alignment on ULaserCoordinatorTask_C"); \ +static_assert(sizeof(ULaserCoordinatorTask_C) == 0x0000D8, "Wrong size on ULaserCoordinatorTask_C"); \ +static_assert(offsetof(ULaserCoordinatorTask_C, UberGraphFrame) == 0x000088, "Member 'ULaserCoordinatorTask_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ULaserCoordinatorTask_C, LaserCoordinator) == 0x000090, "Member 'ULaserCoordinatorTask_C::LaserCoordinator' has a wrong offset!"); \ +static_assert(offsetof(ULaserCoordinatorTask_C, NewState) == 0x0000B8, "Member 'ULaserCoordinatorTask_C::NewState' has a wrong offset!"); \ +static_assert(offsetof(ULaserCoordinatorTask_C, Material) == 0x0000C0, "Member 'ULaserCoordinatorTask_C::Material' has a wrong offset!"); \ +static_assert(offsetof(ULaserCoordinatorTask_C, In_Linear_Color) == 0x0000C8, "Member 'ULaserCoordinatorTask_C::In_Linear_Color' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Function_Mix_C_AudioMixDebug \ +static_assert(alignof(BP_Audio_Function_Mix_C_AudioMixDebug) == 0x000008, "Wrong alignment on BP_Audio_Function_Mix_C_AudioMixDebug"); \ +static_assert(sizeof(BP_Audio_Function_Mix_C_AudioMixDebug) == 0x000058, "Wrong size on BP_Audio_Function_Mix_C_AudioMixDebug"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, DebugText) == 0x000000, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::DebugText' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, ShouldPersist) == 0x000018, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::ShouldPersist' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, DebugColour) == 0x00001C, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::DebugColour' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, DebugKey) == 0x00002C, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::DebugKey' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, __WorldContext) == 0x000038, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::__WorldContext' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, AudioMixDebugHeraProperty) == 0x000040, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::AudioMixDebugHeraProperty' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, CallFunc_SelectFloat_ReturnValue) == 0x000048, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, CallFunc_GetProperty_ReturnValue) == 0x000050, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Function_Mix_C_AudioMixDebug, CallFunc_PrintText_Duration_ImplicitCast) == 0x000054, "Member 'BP_Audio_Function_Mix_C_AudioMixDebug::CallFunc_PrintText_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UBP_Audio_Function_Mix_C \ +static_assert(alignof(UBP_Audio_Function_Mix_C) == 0x000008, "Wrong alignment on UBP_Audio_Function_Mix_C"); \ +static_assert(sizeof(UBP_Audio_Function_Mix_C) == 0x000028, "Wrong size on UBP_Audio_Function_Mix_C"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated \ +static_assert(alignof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated) == 0x000008, "Wrong alignment on BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated"); \ +static_assert(sizeof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated) == 0x0002B0, "Wrong size on BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, EntryPoint) == 0x000000, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetDefaultLocation_ReturnValue) == 0x000008, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetDefaultLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetMaximumDuration_ReturnValue) == 0x000020, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetMaximumDuration_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_IsValid_ReturnValue) == 0x000024, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, Temp_bool_Variable) == 0x000025, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000028, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_CustomEvent_PostEvent) == 0x000030, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_CustomEvent_PostEvent' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_CustomEvent_OptionalEvent) == 0x000038, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_CustomEvent_OptionalEvent' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_IsValid_ReturnValue_1) == 0x000040, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetSplineLength_ReturnValue) == 0x000044, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetSplineLength_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_IsAudioActive_ReturnValue) == 0x000048, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_IsAudioActive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetDisplayName_ReturnValue) == 0x000050, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Conv_BoolToText_ReturnValue) == 0x000060, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Conv_BoolToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Conv_StringToText_ReturnValue) == 0x000078, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_MakeStruct_FormatArgumentData) == 0x000090, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_MakeStruct_FormatArgumentData_1) == 0x0000E0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000130, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_MakeStruct_FormatArgumentData_2) == 0x000148, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_Select_Default) == 0x000198, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, Temp_delegate_Variable) == 0x0001A0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Lerp_ReturnValue) == 0x0001B0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Lerp_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue) == 0x0001B8, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetLocationAtDistanceAlongSpline_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Conv_ObjectToText_ReturnValue) == 0x0001D0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Greater_DoubleDouble_ReturnValue) == 0x0001E8, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Greater_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_MakeStruct_FormatArgumentData_3) == 0x0001F0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_SelectFloat_ReturnValue) == 0x000240, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_SelectFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_MakeArray_Array) == 0x000248, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Format_ReturnValue) == 0x000258, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Conv_TextToString_ReturnValue) == 0x000270, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_IsAudioActive_ReturnValue_1) == 0x000280, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_IsAudioActive_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, K2Node_Event_InDeltaSeconds) == 0x000284, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::K2Node_Event_InDeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_SelectFloat_B_ImplicitCast) == 0x000288, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_SelectFloat_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_SetPlayRate_NewRate_ImplicitCast) == 0x000290, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_SetPlayRate_NewRate_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Lerp_B_ImplicitCast) == 0x000298, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Lerp_B_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_Lerp_Alpha_ImplicitCast) == 0x0002A0, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_Lerp_Alpha_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated, CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast) == 0x0002A8, "Member 'BP_Audio_Ambient_Spline_Automated_C_ExecuteUbergraph_BP_Audio_Ambient_Spline_Automated::CallFunc_GetLocationAtDistanceAlongSpline_Distance_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation \ +static_assert(alignof(BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation) == 0x000010, "Wrong alignment on BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation"); \ +static_assert(sizeof(BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation) == 0x000090, "Wrong size on BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation, InDeltaSeconds) == 0x000000, "Member 'BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation::InDeltaSeconds' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation, InListenerTransform) == 0x000010, "Member 'BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation::InListenerTransform' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation, ReturnValue) == 0x000070, "Member 'BP_Audio_Ambient_Spline_Automated_C_OnTickGetLocation::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Ambient_Spline_Automated_C_StartMovement \ +static_assert(alignof(BP_Audio_Ambient_Spline_Automated_C_StartMovement) == 0x000008, "Wrong alignment on BP_Audio_Ambient_Spline_Automated_C_StartMovement"); \ +static_assert(sizeof(BP_Audio_Ambient_Spline_Automated_C_StartMovement) == 0x000010, "Wrong size on BP_Audio_Ambient_Spline_Automated_C_StartMovement"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_StartMovement, PostEvent) == 0x000000, "Member 'BP_Audio_Ambient_Spline_Automated_C_StartMovement::PostEvent' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_StartMovement, OptionalEvent) == 0x000008, "Member 'BP_Audio_Ambient_Spline_Automated_C_StartMovement::OptionalEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly \ +static_assert(alignof(BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong alignment on BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly"); \ +static_assert(sizeof(BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly) == 0x000004, "Wrong size on BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly"); \ +static_assert(offsetof(BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly, InDeltaSeconds) == 0x000000, "Member 'BP_Audio_Ambient_Spline_Automated_C_TickDebugDraw_DevelopmentOnly::InDeltaSeconds' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Audio_Ambient_Spline_Automated_C \ +static_assert(alignof(ABP_Audio_Ambient_Spline_Automated_C) == 0x000008, "Wrong alignment on ABP_Audio_Ambient_Spline_Automated_C"); \ +static_assert(sizeof(ABP_Audio_Ambient_Spline_Automated_C) == 0x000338, "Wrong size on ABP_Audio_Ambient_Spline_Automated_C"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, UberGraphFrame) == 0x0002E8, "Member 'ABP_Audio_Ambient_Spline_Automated_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, Timeline_Alpha_2621197A4B5093EA1E3BA3852E952D41) == 0x0002F0, "Member 'ABP_Audio_Ambient_Spline_Automated_C::Timeline_Alpha_2621197A4B5093EA1E3BA3852E952D41' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, Timeline__Direction_2621197A4B5093EA1E3BA3852E952D41) == 0x0002F4, "Member 'ABP_Audio_Ambient_Spline_Automated_C::Timeline__Direction_2621197A4B5093EA1E3BA3852E952D41' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, Timeline) == 0x0002F8, "Member 'ABP_Audio_Ambient_Spline_Automated_C::Timeline' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, EventToUse) == 0x000300, "Member 'ABP_Audio_Ambient_Spline_Automated_C::EventToUse' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, MovementDuration) == 0x000308, "Member 'ABP_Audio_Ambient_Spline_Automated_C::MovementDuration' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, MovementDurationOverride) == 0x000310, "Member 'ABP_Audio_Ambient_Spline_Automated_C::MovementDurationOverride' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, Location) == 0x000318, "Member 'ABP_Audio_Ambient_Spline_Automated_C::Location' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_Ambient_Spline_Automated_C, bDebug) == 0x000330, "Member 'ABP_Audio_Ambient_Spline_Automated_C::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug) == 0x000020, "Wrong size on BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug, Text) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug::Text' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug, AlwaysShow) == 0x000018, "Member 'BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebug::AlwaysShow' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine) == 0x000008, "Wrong size on BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine, Component) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_AudioTriggerBoxDebugLine::Component' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed) == 0x000004, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed) == 0x000014, "Wrong size on BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_Add_IntInt_ReturnValue) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_Map_IsEmpty_ReturnValue) == 0x000004, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_Map_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, Temp_int_Variable) == 0x000008, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00000C, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00000D, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_Map_IsEmpty_ReturnValue_1) == 0x00000E, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_Map_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_BooleanXOR_ReturnValue) == 0x00000F, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_BooleanXOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_BooleanAND_ReturnValue) == 0x000010, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed, CallFunc_BooleanOR_ReturnValue) == 0x000011, "Member 'BP_Audio_TriggerBox_Generic_C_CheckIfHasPlayed::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic) == 0x000BD0, "Wrong size on BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, EntryPoint) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, Temp_bool_Variable) == 0x000004, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, Temp_bool_Variable_1) == 0x000005, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::Temp_bool_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, Temp_int_Array_Index_Variable) == 0x000008, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetPlayerCharacter_ReturnValue) == 0x000010, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetPlayerCharacter_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_Event_OtherActor_1) == 0x000018, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_Event_OtherActor_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_RandomBoolWithWeight_ReturnValue) == 0x000020, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_RandomBoolWithWeight_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Not_PreBool_ReturnValue_1) == 0x000022, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_BooleanAND_ReturnValue) == 0x000023, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_Entered_1) == 0x000024, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_Entered_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_BooleanOR_ReturnValue) == 0x000025, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, Temp_int_Loop_Counter_Variable) == 0x000028, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_Text) == 0x000030, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_Text' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_AlwaysShow) == 0x000048, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_AlwaysShow' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData) == 0x000050, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_BooleanOR_ReturnValue_1) == 0x0000A0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_BooleanOR_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue) == 0x0000A8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x0000B8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue) == 0x0000C0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_1) == 0x0000D8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetGameTimeInSeconds_ReturnValue_1) == 0x000128, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetGameTimeInSeconds_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetGameTimeInSeconds_ReturnValue_2) == 0x000130, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetGameTimeInSeconds_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Add_DoubleDouble_ReturnValue) == 0x000138, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Add_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_DoubleToText_ReturnValue) == 0x000140, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_DoubleToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GreaterEqual_DoubleDouble_ReturnValue) == 0x000158, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GreaterEqual_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_2) == 0x000160, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array) == 0x0001B0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue) == 0x0001C0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_1) == 0x0001D8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_1) == 0x0001E8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_3) == 0x000200, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_Component) == 0x000250, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_Component' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_2) == 0x000258, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_K2_GetComponentLocation_ReturnValue) == 0x000268, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_K2_GetComponentLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_2) == 0x000280, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000298, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_4) == 0x0002B0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_1) == 0x000300, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_1) == 0x000310, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_3) == 0x000328, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_3) == 0x000338, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_5) == 0x000350, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_4) == 0x0003A0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_2) == 0x0003B0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_4) == 0x0003C0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_2) == 0x0003D8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_6) == 0x0003F0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_3) == 0x000440, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_3) == 0x000450, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_5) == 0x000468, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_5) == 0x000478, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_7) == 0x000490, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_6) == 0x0004E0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_6) == 0x0004F0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_7) == 0x000508, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_8) == 0x000518, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_7) == 0x000568, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_9) == 0x000580, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_8) == 0x0005D0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_Event_OtherActor) == 0x0005E0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_Event_OtherActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_8) == 0x0005E8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_10) == 0x000600, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_10' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_actor) == 0x000650, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_CustomEvent_Entered) == 0x000658, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_CustomEvent_Entered' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_Select_Default) == 0x000660, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_SelectString_ReturnValue) == 0x0006B0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_SelectString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Map_Keys_Keys) == 0x0006C0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Map_Keys_Keys' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_9) == 0x0006D0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Array_Get_Item) == 0x0006E8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_11) == 0x000710, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_11' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue) == 0x000760, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_SoftObjectReferenceToObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_4) == 0x000768, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_DynamicCast_AsActor) == 0x000778, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_DynamicCast_bSuccess) == 0x000780, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_4) == 0x000788, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_ObjectToText_ReturnValue) == 0x0007A0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_ObjectToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_12) == 0x0007B8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_12' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_ObjectToText_ReturnValue_1) == 0x000808, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_ObjectToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_5) == 0x000820, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_13) == 0x000830, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_13' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_5) == 0x000880, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_6) == 0x000898, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_6) == 0x0008A8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_DynamicCast_AsBP_Audio_Ambient_Spline_Automated) == 0x0008C0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_DynamicCast_AsBP_Audio_Ambient_Spline_Automated' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_DynamicCast_bSuccess_1) == 0x0008C8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetDisplayName_ReturnValue_9) == 0x0008D0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetDisplayName_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_GetComponentByClass_ReturnValue) == 0x0008E0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_GetComponentByClass_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_10) == 0x0008E8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_14) == 0x000900, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_14' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_IsValid_ReturnValue) == 0x000950, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_SoftObjectReferenceToString_ReturnValue) == 0x000958, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_SoftObjectReferenceToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_11) == 0x000968, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_IsValidSoftObjectReference_ReturnValue) == 0x000980, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_IsValidSoftObjectReference_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_15) == 0x000988, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_15' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_7) == 0x0009D8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Array_Length_ReturnValue) == 0x0009E8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_7) == 0x0009F0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Less_IntInt_ReturnValue) == 0x000A08, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_SelectString_ReturnValue_1) == 0x000A10, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_SelectString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000A20, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_StringToText_ReturnValue_12) == 0x000A28, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_StringToText_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_16) == 0x000A40, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_16' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_8) == 0x000A90, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_Select_Default_1) == 0x000AA0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_8) == 0x000AF0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Map_Find_Value) == 0x000B08, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Map_Find_ReturnValue) == 0x000B10, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Conv_ObjectToText_ReturnValue_2) == 0x000B18, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Conv_ObjectToText_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeStruct_FormatArgumentData_17) == 0x000B30, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeStruct_FormatArgumentData_17' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_IsValid_ReturnValue_1) == 0x000B80, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, K2Node_MakeArray_Array_9) == 0x000B88, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::K2Node_MakeArray_Array_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Format_ReturnValue_9) == 0x000B98, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Format_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, Temp_delegate_Variable) == 0x000BB0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Map_IsEmpty_ReturnValue) == 0x000BC0, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Map_IsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Map_IsEmpty_ReturnValue_1) == 0x000BC1, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Map_IsEmpty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Not_PreBool_ReturnValue_2) == 0x000BC2, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Not_PreBool_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Not_PreBool_ReturnValue_3) == 0x000BC3, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Not_PreBool_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_RandomBoolWithWeight_Weight_ImplicitCast) == 0x000BC4, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_RandomBoolWithWeight_Weight_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic, CallFunc_Delay_Duration_ImplicitCast) == 0x000BC8, "Member 'BP_Audio_TriggerBox_Generic_C_ExecuteUbergraph_BP_Audio_TriggerBox_Generic::CallFunc_Delay_Duration_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap) == 0x000008, "Wrong size on BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap, OtherActor) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_ReceiveActorBeginOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap) == 0x000008, "Wrong size on BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap, OtherActor) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_ReceiveActorEndOverlap::OtherActor' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_TriggerAttempt \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_TriggerAttempt) == 0x000008, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_TriggerAttempt"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_TriggerAttempt) == 0x000010, "Wrong size on BP_Audio_TriggerBox_Generic_C_TriggerAttempt"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_TriggerAttempt, Actor) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_TriggerAttempt::Actor' has a wrong offset!"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_TriggerAttempt, Entered) == 0x000008, "Member 'BP_Audio_TriggerBox_Generic_C_TriggerAttempt::Entered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Audio_TriggerBox_Generic_C_TriggerEvents \ +static_assert(alignof(BP_Audio_TriggerBox_Generic_C_TriggerEvents) == 0x000001, "Wrong alignment on BP_Audio_TriggerBox_Generic_C_TriggerEvents"); \ +static_assert(sizeof(BP_Audio_TriggerBox_Generic_C_TriggerEvents) == 0x000001, "Wrong size on BP_Audio_TriggerBox_Generic_C_TriggerEvents"); \ +static_assert(offsetof(BP_Audio_TriggerBox_Generic_C_TriggerEvents, Entered) == 0x000000, "Member 'BP_Audio_TriggerBox_Generic_C_TriggerEvents::Entered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Audio_TriggerBox_Generic_C \ +static_assert(alignof(ABP_Audio_TriggerBox_Generic_C) == 0x000008, "Wrong alignment on ABP_Audio_TriggerBox_Generic_C"); \ +static_assert(sizeof(ABP_Audio_TriggerBox_Generic_C) == 0x000380, "Wrong size on ABP_Audio_TriggerBox_Generic_C"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, UberGraphFrame) == 0x000298, "Member 'ABP_Audio_TriggerBox_Generic_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, Box) == 0x0002A0, "Member 'ABP_Audio_TriggerBox_Generic_C::Box' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, bOnlyPlayOnce) == 0x0002A8, "Member 'ABP_Audio_TriggerBox_Generic_C::bOnlyPlayOnce' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, TriggerAmount) == 0x0002AC, "Member 'ABP_Audio_TriggerBox_Generic_C::TriggerAmount' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, bHasPlayed) == 0x0002B0, "Member 'ABP_Audio_TriggerBox_Generic_C::bHasPlayed' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, CoolDownTime) == 0x0002B8, "Member 'ABP_Audio_TriggerBox_Generic_C::CoolDownTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, LastTriggerTime) == 0x0002C0, "Member 'ABP_Audio_TriggerBox_Generic_C::LastTriggerTime' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, PlayProbability) == 0x0002C8, "Member 'ABP_Audio_TriggerBox_Generic_C::PlayProbability' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, InitialDelay) == 0x0002D0, "Member 'ABP_Audio_TriggerBox_Generic_C::InitialDelay' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, ActorsMapEnter) == 0x0002D8, "Member 'ABP_Audio_TriggerBox_Generic_C::ActorsMapEnter' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, ActorsMapExit) == 0x000328, "Member 'ABP_Audio_TriggerBox_Generic_C::ActorsMapExit' has a wrong offset!"); \ +static_assert(offsetof(ABP_Audio_TriggerBox_Generic_C, bDebug) == 0x000378, "Member 'ABP_Audio_TriggerBox_Generic_C::bDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature \ +static_assert(alignof(BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x000004, "Wrong alignment on BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(sizeof(BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature) == 0x00000C, "Wrong size on BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature"); \ +static_assert(offsetof(BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, Intensity) == 0x000000, "Member 'BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature, ReactionTag) == 0x000004, "Member 'BP_Rats_FX_01_C_BndEvt__BP_Rats_FX_01_HeraReaction_Rats_K2Node_ComponentBoundEvent_1_HeraReactionDelegate__DelegateSignature::ReactionTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01 \ +static_assert(alignof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01) == 0x000008, "Wrong alignment on BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01"); \ +static_assert(sizeof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01) == 0x000070, "Wrong size on BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, EntryPoint) == 0x000000, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, K2Node_ComponentBoundEvent_Intensity) == 0x000004, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::K2Node_ComponentBoundEvent_Intensity' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, K2Node_ComponentBoundEvent_ReactionTag) == 0x000008, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::K2Node_ComponentBoundEvent_ReactionTag' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, CallFunc_HasTag_ReturnValue) == 0x000010, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::CallFunc_HasTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, CallFunc_Multiply_DoubleDouble_ReturnValue) == 0x000018, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::CallFunc_Multiply_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, K2Node_Event_Data) == 0x000020, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::K2Node_Event_Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, K2Node_Event_NiagaraSystem) == 0x000030, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::K2Node_Event_NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, K2Node_Event_SimulationPositionOffset) == 0x000038, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::K2Node_Event_SimulationPositionOffset' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, CallFunc_Multiply_VectorFloat_ReturnValue) == 0x000050, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::CallFunc_Multiply_VectorFloat_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, CallFunc_SetFloatParameter_Param_ImplicitCast) == 0x000068, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::CallFunc_SetFloatParameter_Param_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01, CallFunc_SetFloatParameter_Param_ImplicitCast_1) == 0x00006C, "Member 'BP_Rats_FX_01_C_ExecuteUbergraph_BP_Rats_FX_01::CallFunc_SetFloatParameter_Param_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Rats_FX_01_C_ReceiveParticleData \ +static_assert(alignof(BP_Rats_FX_01_C_ReceiveParticleData) == 0x000008, "Wrong alignment on BP_Rats_FX_01_C_ReceiveParticleData"); \ +static_assert(sizeof(BP_Rats_FX_01_C_ReceiveParticleData) == 0x000030, "Wrong size on BP_Rats_FX_01_C_ReceiveParticleData"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ReceiveParticleData, Data) == 0x000000, "Member 'BP_Rats_FX_01_C_ReceiveParticleData::Data' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ReceiveParticleData, NiagaraSystem) == 0x000010, "Member 'BP_Rats_FX_01_C_ReceiveParticleData::NiagaraSystem' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_ReceiveParticleData, SimulationPositionOffset) == 0x000018, "Member 'BP_Rats_FX_01_C_ReceiveParticleData::SimulationPositionOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Rats_FX_01_C_UserConstructionScript \ +static_assert(alignof(BP_Rats_FX_01_C_UserConstructionScript) == 0x000004, "Wrong alignment on BP_Rats_FX_01_C_UserConstructionScript"); \ +static_assert(sizeof(BP_Rats_FX_01_C_UserConstructionScript) == 0x00000C, "Wrong size on BP_Rats_FX_01_C_UserConstructionScript"); \ +static_assert(offsetof(BP_Rats_FX_01_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast) == 0x000000, "Member 'BP_Rats_FX_01_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_1) == 0x000004, "Member 'BP_Rats_FX_01_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(BP_Rats_FX_01_C_UserConstructionScript, CallFunc_SetFloatParameter_Param_ImplicitCast_2) == 0x000008, "Member 'BP_Rats_FX_01_C_UserConstructionScript::CallFunc_SetFloatParameter_Param_ImplicitCast_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Rats_FX_01_C \ +static_assert(alignof(ABP_Rats_FX_01_C) == 0x000008, "Wrong alignment on ABP_Rats_FX_01_C"); \ +static_assert(sizeof(ABP_Rats_FX_01_C) == 0x0003F8, "Wrong size on ABP_Rats_FX_01_C"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, UberGraphFrame_BP_Rats_FX_01_C) == 0x000310, "Member 'ABP_Rats_FX_01_C::UberGraphFrame_BP_Rats_FX_01_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, HeraReaction_Rats) == 0x000318, "Member 'ABP_Rats_FX_01_C::HeraReaction_Rats' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, VFX) == 0x000320, "Member 'ABP_Rats_FX_01_C::VFX' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Timeline_0__Direction_D6C2DF474EFA5437628F658A7E60F5B8) == 0x000328, "Member 'ABP_Rats_FX_01_C::Timeline_0__Direction_D6C2DF474EFA5437628F658A7E60F5B8' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Timeline_0) == 0x000330, "Member 'ABP_Rats_FX_01_C::Timeline_0' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, IsTriggered) == 0x000338, "Member 'ABP_Rats_FX_01_C::IsTriggered' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Print) == 0x000339, "Member 'ABP_Rats_FX_01_C::Print' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Spawn_Probability) == 0x000340, "Member 'ABP_Rats_FX_01_C::Spawn_Probability' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Spawn_Rate) == 0x000348, "Member 'ABP_Rats_FX_01_C::Spawn_Rate' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Box_Boundaries_Offset) == 0x000350, "Member 'ABP_Rats_FX_01_C::Box_Boundaries_Offset' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Box_Boundaries_Size) == 0x000368, "Member 'ABP_Rats_FX_01_C::Box_Boundaries_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Box_SpawnLocation_Size) == 0x000380, "Member 'ABP_Rats_FX_01_C::Box_SpawnLocation_Size' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Velocity_Scale) == 0x000398, "Member 'ABP_Rats_FX_01_C::Velocity_Scale' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Reaction_Tags) == 0x0003B0, "Member 'ABP_Rats_FX_01_C::Reaction_Tags' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, RatPosition) == 0x0003D0, "Member 'ABP_Rats_FX_01_C::RatPosition' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, RatIndex) == 0x0003E8, "Member 'ABP_Rats_FX_01_C::RatIndex' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Enable_Positional_Audio__EXPENSIVE_) == 0x0003EC, "Member 'ABP_Rats_FX_01_C::Enable_Positional_Audio__EXPENSIVE_' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rats_FX_01_C, Boundary_Force) == 0x0003F0, "Member 'ABP_Rats_FX_01_C::Boundary_Force' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Ceramic_C_GetAudioComponent \ +static_assert(alignof(BP_Throwable_Prop_Ceramic_C_GetAudioComponent) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Ceramic_C_GetAudioComponent"); \ +static_assert(sizeof(BP_Throwable_Prop_Ceramic_C_GetAudioComponent) == 0x000008, "Wrong size on BP_Throwable_Prop_Ceramic_C_GetAudioComponent"); \ +static_assert(offsetof(BP_Throwable_Prop_Ceramic_C_GetAudioComponent, AudioComponent) == 0x000000, "Member 'BP_Throwable_Prop_Ceramic_C_GetAudioComponent::AudioComponent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Ceramic_C_GetDataAsset \ +static_assert(alignof(BP_Throwable_Prop_Ceramic_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Ceramic_C_GetDataAsset"); \ +static_assert(sizeof(BP_Throwable_Prop_Ceramic_C_GetDataAsset) == 0x000008, "Wrong size on BP_Throwable_Prop_Ceramic_C_GetDataAsset"); \ +static_assert(offsetof(BP_Throwable_Prop_Ceramic_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Throwable_Prop_Ceramic_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Ceramic_C_GetMeshComponent \ +static_assert(alignof(BP_Throwable_Prop_Ceramic_C_GetMeshComponent) == 0x000008, "Wrong alignment on BP_Throwable_Prop_Ceramic_C_GetMeshComponent"); \ +static_assert(sizeof(BP_Throwable_Prop_Ceramic_C_GetMeshComponent) == 0x000008, "Wrong size on BP_Throwable_Prop_Ceramic_C_GetMeshComponent"); \ +static_assert(offsetof(BP_Throwable_Prop_Ceramic_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'BP_Throwable_Prop_Ceramic_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Prop_Ceramic_C_GetTargetType \ +static_assert(alignof(BP_Throwable_Prop_Ceramic_C_GetTargetType) == 0x000001, "Wrong alignment on BP_Throwable_Prop_Ceramic_C_GetTargetType"); \ +static_assert(sizeof(BP_Throwable_Prop_Ceramic_C_GetTargetType) == 0x000001, "Wrong size on BP_Throwable_Prop_Ceramic_C_GetTargetType"); \ +static_assert(offsetof(BP_Throwable_Prop_Ceramic_C_GetTargetType, ReturnValue) == 0x000000, "Member 'BP_Throwable_Prop_Ceramic_C_GetTargetType::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Throwable_Prop_Ceramic_C \ +static_assert(alignof(ABP_Throwable_Prop_Ceramic_C) == 0x000008, "Wrong alignment on ABP_Throwable_Prop_Ceramic_C"); \ +static_assert(sizeof(ABP_Throwable_Prop_Ceramic_C) == 0x000328, "Wrong size on ABP_Throwable_Prop_Ceramic_C"); \ +static_assert(offsetof(ABP_Throwable_Prop_Ceramic_C, WrestlerFearEmitter) == 0x000318, "Member 'ABP_Throwable_Prop_Ceramic_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Prop_Ceramic_C, MaxNoise_Range) == 0x000320, "Member 'ABP_Throwable_Prop_Ceramic_C::MaxNoise_Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TransitionDoor_WideSingle_C \ +static_assert(alignof(ABP_TransitionDoor_WideSingle_C) == 0x000008, "Wrong alignment on ABP_TransitionDoor_WideSingle_C"); \ +static_assert(sizeof(ABP_TransitionDoor_WideSingle_C) == 0x000418, "Wrong size on ABP_TransitionDoor_WideSingle_C"); \ + +#define DUMPER7_ASSERTS_WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional \ +static_assert(alignof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional) == 0x000008, "Wrong alignment on WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional"); \ +static_assert(sizeof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional) == 0x000050, "Wrong size on WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, EntryPoint) == 0x000000, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, K2Node_CreateDelegate_OutputDelegate_1) == 0x000014, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000030, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_GetPlayerPawn_ReturnValue_1) == 0x000038, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_GetPlayerPawn_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000040, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_IsValid_ReturnValue) == 0x000048, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional, CallFunc_IsValid_ReturnValue_1) == 0x000049, "Member 'WrestlerInvisibleWall_Conditional_C_ExecuteUbergraph_WrestlerInvisibleWall_Conditional::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AWrestlerInvisibleWall_Conditional_C \ +static_assert(alignof(AWrestlerInvisibleWall_Conditional_C) == 0x000008, "Wrong alignment on AWrestlerInvisibleWall_Conditional_C"); \ +static_assert(sizeof(AWrestlerInvisibleWall_Conditional_C) == 0x0002B0, "Wrong size on AWrestlerInvisibleWall_Conditional_C"); \ +static_assert(offsetof(AWrestlerInvisibleWall_Conditional_C, UberGraphFrame) == 0x0002A0, "Member 'AWrestlerInvisibleWall_Conditional_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AWrestlerInvisibleWall_Conditional_C, Conditional_Player_Tag) == 0x0002A8, "Member 'AWrestlerInvisibleWall_Conditional_C::Conditional_Player_Tag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_DustyPackage_C \ +static_assert(alignof(ABP_CodexItem_DustyPackage_C) == 0x000008, "Wrong alignment on ABP_CodexItem_DustyPackage_C"); \ +static_assert(sizeof(ABP_CodexItem_DustyPackage_C) == 0x000438, "Wrong size on ABP_CodexItem_DustyPackage_C"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_BloodyPackage_C \ +static_assert(alignof(ABP_CodexItem_BloodyPackage_C) == 0x000008, "Wrong alignment on ABP_CodexItem_BloodyPackage_C"); \ +static_assert(sizeof(ABP_CodexItem_BloodyPackage_C) == 0x000438, "Wrong size on ABP_CodexItem_BloodyPackage_C"); \ + +#define DUMPER7_ASSERTS_UGE_ShoveAwayDamage_C \ +static_assert(alignof(UGE_ShoveAwayDamage_C) == 0x000008, "Wrong alignment on UGE_ShoveAwayDamage_C"); \ +static_assert(sizeof(UGE_ShoveAwayDamage_C) == 0x000A70, "Wrong size on UGE_ShoveAwayDamage_C"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_ViewItem \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_ViewItem) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_ViewItem"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_ViewItem) == 0x000010, "Wrong size on WBP_DLCCodexRPGMenuTab_C_ViewItem"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ViewItem, InItem) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_ViewItem::InItem' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ViewItem, CallFunc_GetDepth_ReturnValue) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_ViewItem::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ViewItem, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_DLCCodexRPGMenuTab_C_ViewItem::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ViewItem, CallFunc_IsItemViewed_ReturnValue) == 0x00000D, "Member 'WBP_DLCCodexRPGMenuTab_C_ViewItem::CallFunc_IsItemViewed_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle) == 0x000068, "Wrong size on WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_GetText_ReturnValue) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_GetText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_Conv_TextToString_ReturnValue) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_Split_LeftS) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_Split_RightS) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_Split_ReturnValue) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle, CallFunc_Conv_StringToText_ReturnValue) == 0x000050, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateParentTitle::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers) == 0x000058, "Wrong size on WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x000010, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, K2Node_DynamicCast_AsWBP_Codex_Entry) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::K2Node_DynamicCast_AsWBP_Codex_Entry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetItem_ReturnValue) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_GetDepth_ReturnValue) == 0x000050, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000054, "Member 'WBP_DLCCodexRPGMenuTab_C_UpdateCategoryMarkers::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_Update_Panel \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_Update_Panel) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_Update_Panel"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_Update_Panel) == 0x000098, "Wrong size on WBP_DLCCodexRPGMenuTab_C_Update_Panel"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetOuterObject_ReturnValue) == 0x000020, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetOuterObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetForeground_bHasImage) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetForeground_bHasImage' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetForeground_ReturnValue) == 0x000030, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetForeground_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, K2Node_DynamicCast_AsCodex_Item) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue_1) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetName_ReturnValue_2) == 0x000060, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetName_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetDescription_ReturnValue) == 0x000078, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetDescription_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_GetDepth_ReturnValue) == 0x000090, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_Update_Panel, CallFunc_Greater_IntInt_ReturnValue) == 0x000094, "Member 'WBP_DLCCodexRPGMenuTab_C_Update_Panel::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_ShowItem \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_ShowItem) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_ShowItem"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_ShowItem) == 0x000008, "Wrong size on WBP_DLCCodexRPGMenuTab_C_ShowItem"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ShowItem, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_ShowItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_SetUpTree \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_SetUpTree) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_SetUpTree"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_SetUpTree) == 0x000050, "Wrong size on WBP_DLCCodexRPGMenuTab_C_SetUpTree"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, Categories) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::Categories' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, Temp_int_Loop_Counter_Variable) == 0x000014, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000020, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_GetDLCCodexRoot_ReturnValue) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_GetDLCCodexRoot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_GetItemsWithChildren_ReturnValue) == 0x000030, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_GetItemsWithChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_Array_Get_Item) == 0x000040, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_Array_Length_ReturnValue) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_IsExpanded_ReturnValue) == 0x00004C, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_IsExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetUpTree, CallFunc_Less_IntInt_ReturnValue) == 0x00004D, "Member 'WBP_DLCCodexRPGMenuTab_C_SetUpTree::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText) == 0x0000B8, "Wrong size on WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, InText) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::InText' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, StrikeThroughString) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::StrikeThroughString' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, StringToIterate) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::StringToIterate' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Conv_TextToString_ReturnValue) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Split_LeftS) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Split_RightS) == 0x000058, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Split_ReturnValue) == 0x000068, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Conv_StringToText_ReturnValue) == 0x000070, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_TextIsEmpty_ReturnValue) == 0x000088, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_TextIsEmpty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Concat_StrStr_ReturnValue) == 0x000090, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText, CallFunc_Conv_StringToText_ReturnValue_1) == 0x0000A0, "Member 'WBP_DLCCodexRPGMenuTab_C_SetStrikeThroughText::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem) == 0x000010, "Wrong size on WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_ReceiveCodexShowItem::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_OnKeyDown \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_OnKeyDown"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown) == 0x000220, "Wrong size on WBP_DLCCodexRPGMenuTab_C_OnKeyDown"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, MyGeometry) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, InKeyEvent) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::InKeyEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, ReturnValue) == 0x000078, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_GetKey_ReturnValue) == 0x000130, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_GetKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_Handled_ReturnValue) == 0x000148, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue) == 0x000200, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_EqualEqual_KeyKey_ReturnValue_1) == 0x000201, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_EqualEqual_KeyKey_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_BooleanOR_ReturnValue) == 0x000202, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_BP_GetSelectedItem_ReturnValue) == 0x000208, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_BP_GetSelectedItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, K2Node_DynamicCast_AsCodex_Item) == 0x000210, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, K2Node_DynamicCast_bSuccess) == 0x000218, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnKeyDown, CallFunc_IsExpanded_ReturnValue) == 0x000219, "Member 'WBP_DLCCodexRPGMenuTab_C_OnKeyDown::CallFunc_IsExpanded_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren) == 0x000038, "Wrong size on WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren, Children) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren::Children' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren, K2Node_DynamicCast_AsCodex_Item) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren, CallFunc_GetSortedItems_ReturnValue) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_OnBP_OnGetItemChildren::CallFunc_GetSortedItems_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_GetOffViewItems \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_GetOffViewItems"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems) == 0x000038, "Wrong size on WBP_DLCCodexRPGMenuTab_C_GetOffViewItems"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, OffViewItems) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::OffViewItems' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, CallFunc_GetListItems_ReturnValue) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::CallFunc_GetListItems_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, CallFunc_Array_Length_ReturnValue_1) == 0x00002C, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_GetOffViewItems, CallFunc_Subtract_IntInt_ReturnValue) == 0x000030, "Member 'WBP_DLCCodexRPGMenuTab_C_GetOffViewItems::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab) == 0x000160, "Wrong size on WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, EntryPoint) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, Temp_bool_True_if_break_was_hit_Variable) == 0x000004, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::Temp_bool_True_if_break_was_hit_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_Not_PreBool_ReturnValue) == 0x000005, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Button_1) == 0x000010, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_3) == 0x000018, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_2) == 0x000020, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_bIsSelected) == 0x000028, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_bIsSelected' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item) == 0x000030, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item_1) == 0x000040, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_bSuccess_1) == 0x000048, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_Event_Item) == 0x000050, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_Event_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetMousePositionOnViewport_ReturnValue) == 0x000060, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetMousePositionOnViewport_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Item_1) == 0x000070, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_bIsHovered) == 0x000078, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_bIsHovered' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetMousePositionOnViewport_ReturnValue_1) == 0x000080, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetMousePositionOnViewport_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, Temp_int_Loop_Counter_Variable) == 0x000090, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_NotEqual_Vector2DVector2D_ReturnValue) == 0x000094, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_NotEqual_Vector2DVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_BooleanAND_ReturnValue) == 0x000095, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_BooleanAND_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_Add_IntInt_ReturnValue) == 0x000098, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_CustomEvent_Item) == 0x0000A0, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_CustomEvent_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetDisplayedEntryWidgets_ReturnValue) == 0x0000A8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetDisplayedEntryWidgets_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_IsValid_ReturnValue) == 0x0000B8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_Array_Get_Item) == 0x0000C0, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_AsWBP_Codex_Entry) == 0x0000C8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_AsWBP_Codex_Entry' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_bSuccess_2) == 0x0000D0, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_Array_Length_ReturnValue) == 0x0000D4, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetItem_ReturnValue) == 0x0000D8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_Less_IntInt_ReturnValue) == 0x0000E0, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_BooleanAND_ReturnValue_1) == 0x0000E1, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_BooleanAND_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetItemAt_ReturnValue) == 0x0000E8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetItemAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_AsCodex_Item_2) == 0x0000F0, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_AsCodex_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_DynamicCast_bSuccess_3) == 0x0000F8, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Item) == 0x000100, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Widget) == 0x000108, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000110, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000118, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetDLCCodexRoot_ReturnValue) == 0x000120, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetDLCCodexRoot_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetParent_ReturnValue) == 0x000128, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetParent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_FindRecursive_ReturnValue) == 0x000130, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_FindRecursive_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_SetExpanded_ReturnValue) == 0x000138, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_SetExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, K2Node_ComponentBoundEvent_Button) == 0x000140, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000148, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_BP_GetSelectedItem_ReturnValue) == 0x000150, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_BP_GetSelectedItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000158, "Member 'WBP_DLCCodexRPGMenuTab_C_ExecuteUbergraph_WBP_DLCCodexRPGMenuTab::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature, Widget) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_4_OnListItemScrolledIntoViewDynamic__DelegateSignature::Widget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature, bIsHovered) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_3_OnItemIsHoveredChangedDynamic__DelegateSignature::bIsHovered' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_DLCCodexRPGMenuTab_Back_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_SortBT_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature) == 0x000010, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature, bIsSelected) == 0x000008, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_2_OnListItemSelectionChangedDynamic__DelegateSignature::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature) == 0x000008, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature, Item) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BndEvt__WBP_CodexRPGMenuTab_CodexTreeView_K2Node_ComponentBoundEvent_0_SimpleListItemEventDynamic__DelegateSignature::Item' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'WBP_DLCCodexRPGMenuTab_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_DLCCodexRPGMenuTab_C \ +static_assert(alignof(UWBP_DLCCodexRPGMenuTab_C) == 0x000008, "Wrong alignment on UWBP_DLCCodexRPGMenuTab_C"); \ +static_assert(sizeof(UWBP_DLCCodexRPGMenuTab_C) == 0x000580, "Wrong size on UWBP_DLCCodexRPGMenuTab_C"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, UberGraphFrame) == 0x0004A8, "Member 'UWBP_DLCCodexRPGMenuTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, Back) == 0x0004B0, "Member 'UWBP_DLCCodexRPGMenuTab_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexBackgroundImage) == 0x0004B8, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexBackgroundImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexDescriptionText) == 0x0004C0, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexDiscardedDescriptionText) == 0x0004C8, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexDiscardedDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexForegroundImage) == 0x0004D0, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexForegroundImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexTitle) == 0x0004D8, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexTitle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexTreeView) == 0x0004E0, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexTreeView' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, ContentScroll) == 0x0004E8, "Member 'UWBP_DLCCodexRPGMenuTab_C::ContentScroll' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, DescriptionText) == 0x0004F0, "Member 'UWBP_DLCCodexRPGMenuTab_C::DescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, DivLine_Descript_Bottom) == 0x0004F8, "Member 'UWBP_DLCCodexRPGMenuTab_C::DivLine_Descript_Bottom' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, DivLine_Descript_Top) == 0x000500, "Member 'UWBP_DLCCodexRPGMenuTab_C::DivLine_Descript_Top' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, DivLine_Descript_TopPattern) == 0x000508, "Member 'UWBP_DLCCodexRPGMenuTab_C::DivLine_Descript_TopPattern' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, DivLine_Top) == 0x000510, "Member 'UWBP_DLCCodexRPGMenuTab_C::DivLine_Top' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, Frame) == 0x000518, "Member 'UWBP_DLCCodexRPGMenuTab_C::Frame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, Frame_01) == 0x000520, "Member 'UWBP_DLCCodexRPGMenuTab_C::Frame_01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, Image) == 0x000528, "Member 'UWBP_DLCCodexRPGMenuTab_C::Image' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, NavigationActionButton) == 0x000530, "Member 'UWBP_DLCCodexRPGMenuTab_C::NavigationActionButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, OpenCategoryActionButton) == 0x000538, "Member 'UWBP_DLCCodexRPGMenuTab_C::OpenCategoryActionButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, ParentCodexTitle) == 0x000540, "Member 'UWBP_DLCCodexRPGMenuTab_C::ParentCodexTitle' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, SortButton) == 0x000548, "Member 'UWBP_DLCCodexRPGMenuTab_C::SortButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CurrentOpenItems) == 0x000550, "Member 'UWBP_DLCCodexRPGMenuTab_C::CurrentOpenItems' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, PT_TabID) == 0x000558, "Member 'UWBP_DLCCodexRPGMenuTab_C::PT_TabID' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, LastMouse) == 0x000560, "Member 'UWBP_DLCCodexRPGMenuTab_C::LastMouse' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, CodexEntry) == 0x000570, "Member 'UWBP_DLCCodexRPGMenuTab_C::CodexEntry' has a wrong offset!"); \ +static_assert(offsetof(UWBP_DLCCodexRPGMenuTab_C, ShowingEntry) == 0x000578, "Member 'UWBP_DLCCodexRPGMenuTab_C::ShowingEntry' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_ConfirmPromptButtonBg_C \ +static_assert(alignof(UWBP_ConfirmPromptButtonBg_C) == 0x000008, "Wrong alignment on UWBP_ConfirmPromptButtonBg_C"); \ +static_assert(sizeof(UWBP_ConfirmPromptButtonBg_C) == 0x0002E0, "Wrong size on UWBP_ConfirmPromptButtonBg_C"); \ +static_assert(offsetof(UWBP_ConfirmPromptButtonBg_C, DefaultBg) == 0x0002C0, "Member 'UWBP_ConfirmPromptButtonBg_C::DefaultBg' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptButtonBg_C, DefaultOutline) == 0x0002C8, "Member 'UWBP_ConfirmPromptButtonBg_C::DefaultOutline' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptButtonBg_C, Highlight) == 0x0002D0, "Member 'UWBP_ConfirmPromptButtonBg_C::Highlight' has a wrong offset!"); \ +static_assert(offsetof(UWBP_ConfirmPromptButtonBg_C, StateSwitcher) == 0x0002D8, "Member 'UWBP_ConfirmPromptButtonBg_C::StateSwitcher' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend \ +static_assert(alignof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend) == 0x000008, "Wrong alignment on WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend"); \ +static_assert(sizeof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend) == 0x000038, "Wrong size on WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, EntryPoint) == 0x000000, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, CallFunc_GetPlayerController_ReturnValue) == 0x000008, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000010, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000018, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, K2Node_ComponentBoundEvent_Button) == 0x000020, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, CallFunc_Pop_ReturnValue) == 0x000028, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::CallFunc_Pop_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend, K2Node_SwitchEnum_CmpSuccess) == 0x000030, "Member 'WBP_MapInputsLegend_C_ExecuteUbergraph_WBP_MapInputsLegend::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_MapInputsLegend_C_BndEvt__WBP_MapInputsLegend_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MapInputsLegend_C \ +static_assert(alignof(UWBP_MapInputsLegend_C) == 0x000008, "Wrong alignment on UWBP_MapInputsLegend_C"); \ +static_assert(sizeof(UWBP_MapInputsLegend_C) == 0x000370, "Wrong size on UWBP_MapInputsLegend_C"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_MapInputsLegend_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, Back) == 0x0002D0, "Member 'UWBP_MapInputsLegend_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, NavigationAction) == 0x0002D8, "Member 'UWBP_MapInputsLegend_C::NavigationAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, SelectLegend) == 0x0002E0, "Member 'UWBP_MapInputsLegend_C::SelectLegend' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, SetWaypointAction) == 0x0002E8, "Member 'UWBP_MapInputsLegend_C::SetWaypointAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, ToggleMapMarkersAction) == 0x0002F0, "Member 'UWBP_MapInputsLegend_C::ToggleMapMarkersAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, WaypointLegend) == 0x0002F8, "Member 'UWBP_MapInputsLegend_C::WaypointLegend' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, ZoomAction) == 0x000300, "Member 'UWBP_MapInputsLegend_C::ZoomAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, LegendFontInfo) == 0x000308, "Member 'UWBP_MapInputsLegend_C::LegendFontInfo' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapInputsLegend_C, LegendPadding) == 0x000360, "Member 'UWBP_MapInputsLegend_C::LegendPadding' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_RPGMenuSelector_C \ +static_assert(alignof(UWBP_RPGMenuSelector_C) == 0x000008, "Wrong alignment on UWBP_RPGMenuSelector_C"); \ +static_assert(sizeof(UWBP_RPGMenuSelector_C) == 0x000340, "Wrong size on UWBP_RPGMenuSelector_C"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9 \ +static_assert(alignof(GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(sizeof(GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x0000B8, "Wrong size on GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(offsetof(GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9, EventTag) == 0x000000, "Member 'GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9, EventData) == 0x000008, "Member 'GA_EnemyBlock_C_EventReceived_17AAF29B42E11191B27FF9B5EA01E0B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182 \ +static_assert(alignof(GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182"); \ +static_assert(sizeof(GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182) == 0x0000B0, "Wrong size on GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182"); \ +static_assert(offsetof(GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182, Payload) == 0x000000, "Member 'GA_EnemyBlock_C_EventReceived_94A78FFC4D478F506459B78D674DA182::Payload' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock \ +static_assert(alignof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock"); \ +static_assert(sizeof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock) == 0x000740, "Wrong size on GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, EntryPoint) == 0x000000, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventTag_2) == 0x000004, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventTag_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventData_2) == 0x000010, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventData_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventTag_1) == 0x0000C0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventTag_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventData_1) == 0x0000C8, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventData_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate) == 0x000178, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventTag) == 0x000188, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventData) == 0x000190, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate_1) == 0x000240, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, Temp_struct_Variable) == 0x000250, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, Temp_struct_Variable_1) == 0x000300, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_AbilityTargetDataFromActor_ReturnValue) == 0x000308, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_AbilityTargetDataFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate_2) == 0x000330, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_Payload) == 0x000340, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_Payload' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, Temp_struct_Variable_2) == 0x0003F0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::Temp_struct_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_WaitGameplayEvent_ReturnValue) == 0x0004A0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_WaitGameplayEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_IsValid_ReturnValue) == 0x0004A8, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate_3) == 0x0004AC, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, Temp_int_Variable) == 0x0004BC, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate_4) == 0x0004C0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_GetMontage_ReturnValue) == 0x0004D0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_GetMontage_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventTag_3) == 0x0004D8, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventTag_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventData_3) == 0x0004E0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventData_3' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_PlayMontageAndWaitForEvent_ReturnValue) == 0x000590, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_PlayMontageAndWaitForEvent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_IsValid_ReturnValue_1) == 0x000598, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_Event_bWasCancelled) == 0x000599, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_Event_bWasCancelled' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_K2_CommitAbilityCooldown_ReturnValue) == 0x00059A, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_K2_CommitAbilityCooldown_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CreateDelegate_OutputDelegate_5) == 0x00059C, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_Not_PreBool_ReturnValue) == 0x0005AC, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_K2_CommitAbility_ReturnValue) == 0x0005AD, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_K2_CommitAbility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue) == 0x0005B0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_BP_ApplyGameplayEffectToTarget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_Add_IntInt_ReturnValue) == 0x0005C0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventTag_4) == 0x0005C4, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventTag_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_CustomEvent_EventData_4) == 0x0005D0, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_CustomEvent_EventData_4' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_GetOwningActorFromActorInfo_ReturnValue) == 0x000680, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_GetOwningActorFromActorInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, K2Node_MakeStruct_GameplayEventData) == 0x000688, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_Less_IntInt_ReturnValue) == 0x000738, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock, CallFunc_Not_PreBool_ReturnValue_1) == 0x000739, "Member 'GA_EnemyBlock_C_ExecuteUbergraph_GA_EnemyBlock::CallFunc_Not_PreBool_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_InitImpulse \ +static_assert(alignof(GA_EnemyBlock_C_InitImpulse) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_InitImpulse"); \ +static_assert(sizeof(GA_EnemyBlock_C_InitImpulse) == 0x000020, "Wrong size on GA_EnemyBlock_C_InitImpulse"); \ +static_assert(offsetof(GA_EnemyBlock_C_InitImpulse, Actor) == 0x000000, "Member 'GA_EnemyBlock_C_InitImpulse::Actor' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x000008, "Member 'GA_EnemyBlock_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1) == 0x000010, "Member 'GA_EnemyBlock_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_InitImpulse, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_2) == 0x000018, "Member 'GA_EnemyBlock_C_InitImpulse::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_K2_OnEndAbility \ +static_assert(alignof(GA_EnemyBlock_C_K2_OnEndAbility) == 0x000001, "Wrong alignment on GA_EnemyBlock_C_K2_OnEndAbility"); \ +static_assert(sizeof(GA_EnemyBlock_C_K2_OnEndAbility) == 0x000001, "Wrong size on GA_EnemyBlock_C_K2_OnEndAbility"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_OnEndAbility, bWasCancelled) == 0x000000, "Member 'GA_EnemyBlock_C_K2_OnEndAbility::bWasCancelled' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9 \ +static_assert(alignof(GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(sizeof(GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x0000B8, "Wrong size on GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9, EventTag) == 0x000000, "Member 'GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9, EventData) == 0x000008, "Member 'GA_EnemyBlock_C_OnBlendOut_17AAF29B42E11191B27FF9B5EA01E0B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9 \ +static_assert(alignof(GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(sizeof(GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x0000B8, "Wrong size on GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9, EventTag) == 0x000000, "Member 'GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9, EventData) == 0x000008, "Member 'GA_EnemyBlock_C_OnCancelled_17AAF29B42E11191B27FF9B5EA01E0B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9 \ +static_assert(alignof(GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(sizeof(GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x0000B8, "Wrong size on GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9, EventTag) == 0x000000, "Member 'GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9, EventData) == 0x000008, "Member 'GA_EnemyBlock_C_OnCompleted_17AAF29B42E11191B27FF9B5EA01E0B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9 \ +static_assert(alignof(GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(sizeof(GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9) == 0x0000B8, "Wrong size on GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9, EventTag) == 0x000000, "Member 'GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9::EventTag' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9, EventData) == 0x000008, "Member 'GA_EnemyBlock_C_OnInterrupted_17AAF29B42E11191B27FF9B5EA01E0B9::EventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GA_EnemyBlock_C_K2_CanActivateAbility \ +static_assert(alignof(GA_EnemyBlock_C_K2_CanActivateAbility) == 0x000008, "Wrong alignment on GA_EnemyBlock_C_K2_CanActivateAbility"); \ +static_assert(sizeof(GA_EnemyBlock_C_K2_CanActivateAbility) == 0x000098, "Wrong size on GA_EnemyBlock_C_K2_CanActivateAbility"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, ActorInfo) == 0x000000, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::ActorInfo' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, Handle) == 0x000048, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::Handle' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, RelevantTags) == 0x000050, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::RelevantTags' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, ReturnValue) == 0x000070, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, CallFunc_GetGameTimeInSeconds_ReturnValue) == 0x000078, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::CallFunc_GetGameTimeInSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, CallFunc_FTrunc_ReturnValue) == 0x000080, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::CallFunc_FTrunc_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, CallFunc_MakeRandomStream_ReturnValue) == 0x000084, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::CallFunc_MakeRandomStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, CallFunc_RandomBoolWithWeightFromStream_ReturnValue) == 0x00008C, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::CallFunc_RandomBoolWithWeightFromStream_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GA_EnemyBlock_C_K2_CanActivateAbility, CallFunc_RandomBoolWithWeightFromStream_Weight_ImplicitCast) == 0x000090, "Member 'GA_EnemyBlock_C_K2_CanActivateAbility::CallFunc_RandomBoolWithWeightFromStream_Weight_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGA_EnemyBlock_C \ +static_assert(alignof(UGA_EnemyBlock_C) == 0x000008, "Wrong alignment on UGA_EnemyBlock_C"); \ +static_assert(sizeof(UGA_EnemyBlock_C) == 0x0006E8, "Wrong size on UGA_EnemyBlock_C"); \ +static_assert(offsetof(UGA_EnemyBlock_C, UberGraphFrame) == 0x000668, "Member 'UGA_EnemyBlock_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, StartSectionName) == 0x000670, "Member 'UGA_EnemyBlock_C::StartSectionName' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ReactionSectionName) == 0x000678, "Member 'UGA_EnemyBlock_C::ReactionSectionName' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, EndSectionName) == 0x000680, "Member 'UGA_EnemyBlock_C::EndSectionName' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ReactionEventTag) == 0x000688, "Member 'UGA_EnemyBlock_C::ReactionEventTag' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, RandomWeight) == 0x0006A8, "Member 'UGA_EnemyBlock_C::RandomWeight' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ShoveAwayNumOfHit) == 0x0006B0, "Member 'UGA_EnemyBlock_C::ShoveAwayNumOfHit' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ShoveAwaySection) == 0x0006B4, "Member 'UGA_EnemyBlock_C::ShoveAwaySection' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ImpactThreshold) == 0x0006C0, "Member 'UGA_EnemyBlock_C::ImpactThreshold' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, PushBack) == 0x0006C8, "Member 'UGA_EnemyBlock_C::PushBack' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, MovementDuration) == 0x0006D0, "Member 'UGA_EnemyBlock_C::MovementDuration' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, CurrentHitNumber) == 0x0006D8, "Member 'UGA_EnemyBlock_C::CurrentHitNumber' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, bShoveAway) == 0x0006DC, "Member 'UGA_EnemyBlock_C::bShoveAway' has a wrong offset!"); \ +static_assert(offsetof(UGA_EnemyBlock_C, ShoveAwayDamage) == 0x0006E0, "Member 'UGA_EnemyBlock_C::ShoveAwayDamage' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MenuButtonLeft_C_OnMouseEnter \ +static_assert(alignof(TCR_MenuButtonLeft_C_OnMouseEnter) == 0x000008, "Wrong alignment on TCR_MenuButtonLeft_C_OnMouseEnter"); \ +static_assert(sizeof(TCR_MenuButtonLeft_C_OnMouseEnter) == 0x0000B0, "Wrong size on TCR_MenuButtonLeft_C_OnMouseEnter"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'TCR_MenuButtonLeft_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'TCR_MenuButtonLeft_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MenuButtonLeft_C_OnInputChanged \ +static_assert(alignof(TCR_MenuButtonLeft_C_OnInputChanged) == 0x000001, "Wrong alignment on TCR_MenuButtonLeft_C_OnInputChanged"); \ +static_assert(sizeof(TCR_MenuButtonLeft_C_OnInputChanged) == 0x000001, "Wrong size on TCR_MenuButtonLeft_C_OnInputChanged"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnInputChanged, InCurrentInputType) == 0x000000, "Member 'TCR_MenuButtonLeft_C_OnInputChanged::InCurrentInputType' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MenuButtonLeft_C_OnFocusReceived \ +static_assert(alignof(TCR_MenuButtonLeft_C_OnFocusReceived) == 0x000008, "Wrong alignment on TCR_MenuButtonLeft_C_OnFocusReceived"); \ +static_assert(sizeof(TCR_MenuButtonLeft_C_OnFocusReceived) == 0x0001B0, "Wrong size on TCR_MenuButtonLeft_C_OnFocusReceived"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'TCR_MenuButtonLeft_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'TCR_MenuButtonLeft_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'TCR_MenuButtonLeft_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'TCR_MenuButtonLeft_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft \ +static_assert(alignof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft) == 0x000010, "Wrong alignment on TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft"); \ +static_assert(sizeof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft) == 0x0001D0, "Wrong size on TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, EntryPoint) == 0x000000, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, K2Node_Event_InCurrentInputType) == 0x000004, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::K2Node_Event_InCurrentInputType' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, Temp_bool_Has_Been_Initd_Variable) == 0x000005, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, K2Node_Event_MyGeometry) == 0x000008, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, K2Node_Event_MouseEvent) == 0x000040, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, Temp_bool_IsClosed_Variable) == 0x0000B8, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, Temp_delegate_Variable) == 0x0000BC, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x0000D0, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, CallFunc_GetLocalPlayerSubsystem_ReturnValue) == 0x0000D8, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::CallFunc_GetLocalPlayerSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, Temp_delegate_Variable_1) == 0x0000E0, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, CallFunc_GetCurrentGamepadName_ReturnValue) == 0x0000F0, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::CallFunc_GetCurrentGamepadName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, CallFunc_GetCurrentInputType_ReturnValue) == 0x0000F8, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::CallFunc_GetCurrentInputType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft, CallFunc_GetInputActionButtonIcon_ReturnValue) == 0x000100, "Member 'TCR_MenuButtonLeft_C_ExecuteUbergraph_TCR_MenuButtonLeft::CallFunc_GetInputActionButtonIcon_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'TCR_MenuButtonLeft_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_MenuButtonLeft_C \ +static_assert(alignof(UTCR_MenuButtonLeft_C) == 0x000010, "Wrong alignment on UTCR_MenuButtonLeft_C"); \ +static_assert(sizeof(UTCR_MenuButtonLeft_C) == 0x001410, "Wrong size on UTCR_MenuButtonLeft_C"); \ +static_assert(offsetof(UTCR_MenuButtonLeft_C, UberGraphFrame) == 0x0013E0, "Member 'UTCR_MenuButtonLeft_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MenuButtonLeft_C, ExtraRightIcons) == 0x0013E8, "Member 'UTCR_MenuButtonLeft_C::ExtraRightIcons' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MenuButtonLeft_C, HorizontalBox) == 0x0013F0, "Member 'UTCR_MenuButtonLeft_C::HorizontalBox' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MenuButtonLeft_C, Icon) == 0x0013F8, "Member 'UTCR_MenuButtonLeft_C::Icon' has a wrong offset!"); \ +static_assert(offsetof(UTCR_MenuButtonLeft_C, Input_Action_Row) == 0x001400, "Member 'UTCR_MenuButtonLeft_C::Input_Action_Row' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP \ +static_assert(alignof(Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP) == 0x000004, "Wrong alignment on Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP"); \ +static_assert(sizeof(Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP) == 0x000004, "Wrong size on Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP"); \ +static_assert(offsetof(Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP, EntryPoint) == 0x000000, "Member 'Pole_TK_BP_C_ExecuteUbergraph_Pole_TK_BP::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pole_TK_BP_C_GetClueDataAsset \ +static_assert(alignof(Pole_TK_BP_C_GetClueDataAsset) == 0x000008, "Wrong alignment on Pole_TK_BP_C_GetClueDataAsset"); \ +static_assert(sizeof(Pole_TK_BP_C_GetClueDataAsset) == 0x000008, "Wrong size on Pole_TK_BP_C_GetClueDataAsset"); \ +static_assert(offsetof(Pole_TK_BP_C_GetClueDataAsset, ReturnValue) == 0x000000, "Member 'Pole_TK_BP_C_GetClueDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents \ +static_assert(alignof(Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents) == 0x000008, "Wrong alignment on Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(sizeof(Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents) == 0x000010, "Wrong size on Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents"); \ +static_assert(offsetof(Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents, ReturnValue) == 0x000000, "Member 'Pole_TK_BP_C_GetHeightenedSensesSceneCaptureComponents::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pole_TK_BP_C_GetMeshComponent \ +static_assert(alignof(Pole_TK_BP_C_GetMeshComponent) == 0x000008, "Wrong alignment on Pole_TK_BP_C_GetMeshComponent"); \ +static_assert(sizeof(Pole_TK_BP_C_GetMeshComponent) == 0x000008, "Wrong size on Pole_TK_BP_C_GetMeshComponent"); \ +static_assert(offsetof(Pole_TK_BP_C_GetMeshComponent, ReturnValue) == 0x000000, "Member 'Pole_TK_BP_C_GetMeshComponent::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_Pole_TK_BP_C_GetHeightenedSenseTypeTag \ +static_assert(alignof(Pole_TK_BP_C_GetHeightenedSenseTypeTag) == 0x000008, "Wrong alignment on Pole_TK_BP_C_GetHeightenedSenseTypeTag"); \ +static_assert(sizeof(Pole_TK_BP_C_GetHeightenedSenseTypeTag) == 0x000020, "Wrong size on Pole_TK_BP_C_GetHeightenedSenseTypeTag"); \ +static_assert(offsetof(Pole_TK_BP_C_GetHeightenedSenseTypeTag, ReturnValue) == 0x000000, "Member 'Pole_TK_BP_C_GetHeightenedSenseTypeTag::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_APole_TK_BP_C \ +static_assert(alignof(APole_TK_BP_C) == 0x000008, "Wrong alignment on APole_TK_BP_C"); \ +static_assert(sizeof(APole_TK_BP_C) == 0x000380, "Wrong size on APole_TK_BP_C"); \ +static_assert(offsetof(APole_TK_BP_C, UberGraphFrame_Pole_TK_BP_C) == 0x000368, "Member 'APole_TK_BP_C::UberGraphFrame_Pole_TK_BP_C' has a wrong offset!"); \ +static_assert(offsetof(APole_TK_BP_C, WrestlerHeightenedSensesClue_0) == 0x000370, "Member 'APole_TK_BP_C::WrestlerHeightenedSensesClue_0' has a wrong offset!"); \ +static_assert(offsetof(APole_TK_BP_C, Pole) == 0x000378, "Member 'APole_TK_BP_C::Pole' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_RetargetTest__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData, __NameProperty_4) == 0x000004, "Member 'ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData::__NameProperty_4' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData, __NameProperty_5) == 0x00000C, "Member 'ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData::__NameProperty_5' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData, __StructProperty_6) == 0x000018, "Member 'ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData::__StructProperty_6' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Phyre_RetargetTest::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_RetargetTest_C_AnimGraph \ +static_assert(alignof(ABP_Phyre_RetargetTest_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Phyre_RetargetTest_C_AnimGraph"); \ +static_assert(sizeof(ABP_Phyre_RetargetTest_C_AnimGraph) == 0x000010, "Wrong size on ABP_Phyre_RetargetTest_C_AnimGraph"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'ABP_Phyre_RetargetTest_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest \ +static_assert(alignof(ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest) == 0x000004, "Wrong alignment on ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest"); \ +static_assert(sizeof(ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest) == 0x000004, "Wrong size on ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest"); \ +static_assert(offsetof(ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest, EntryPoint) == 0x000000, "Member 'ABP_Phyre_RetargetTest_C_ExecuteUbergraph_ABP_Phyre_RetargetTest::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Phyre_RetargetTest_C \ +static_assert(alignof(UABP_Phyre_RetargetTest_C) == 0x000010, "Wrong alignment on UABP_Phyre_RetargetTest_C"); \ +static_assert(sizeof(UABP_Phyre_RetargetTest_C) == 0x0004E0, "Wrong size on UABP_Phyre_RetargetTest_C"); \ +static_assert(offsetof(UABP_Phyre_RetargetTest_C, UberGraphFrame) == 0x000350, "Member 'UABP_Phyre_RetargetTest_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_RetargetTest_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Phyre_RetargetTest_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_RetargetTest_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Phyre_RetargetTest_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_RetargetTest_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Phyre_RetargetTest_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_RetargetTest_C, AnimGraphNode_CopyPoseFromMesh) == 0x000388, "Member 'UABP_Phyre_RetargetTest_C::AnimGraphNode_CopyPoseFromMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_FStruct_Face_Morph_Targert \ +static_assert(alignof(FStruct_Face_Morph_Targert) == 0x000008, "Wrong alignment on FStruct_Face_Morph_Targert"); \ +static_assert(sizeof(FStruct_Face_Morph_Targert) == 0x000060, "Wrong size on FStruct_Face_Morph_Targert"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Foreheadleft_16_F0DF70B74D65E86024C2479DF587F817) == 0x000000, "Member 'FStruct_Face_Morph_Targert::Foreheadleft_16_F0DF70B74D65E86024C2479DF587F817' has a wrong offset!"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Foreheadright_17_B7A2BBAA495E10087723E3AF6E326035) == 0x000010, "Member 'FStruct_Face_Morph_Targert::Foreheadright_17_B7A2BBAA495E10087723E3AF6E326035' has a wrong offset!"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Eyeleft_11_C899DA0248DCAACB2750ABA912D61D5D) == 0x000020, "Member 'FStruct_Face_Morph_Targert::Eyeleft_11_C899DA0248DCAACB2750ABA912D61D5D' has a wrong offset!"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Eyeright_12_185C1E8F4864155DAA2F2E8F94EA779F) == 0x000030, "Member 'FStruct_Face_Morph_Targert::Eyeright_12_185C1E8F4864155DAA2F2E8F94EA779F' has a wrong offset!"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Mouthleft_14_2769B13F4F9403A530ABD0A9BB60C7DA) == 0x000040, "Member 'FStruct_Face_Morph_Targert::Mouthleft_14_2769B13F4F9403A530ABD0A9BB60C7DA' has a wrong offset!"); \ +static_assert(offsetof(FStruct_Face_Morph_Targert, Mouthright_15_DAAAF0294F3CFF70F89CC581B701AAFC) == 0x000050, "Member 'FStruct_Face_Morph_Targert::Mouthright_15_DAAAF0294F3CFF70F89CC581B701AAFC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_SubCollection_C_OnSettingAssigned \ +static_assert(alignof(W_SettingsListEntry_SubCollection_C_OnSettingAssigned) == 0x000008, "Wrong alignment on W_SettingsListEntry_SubCollection_C_OnSettingAssigned"); \ +static_assert(sizeof(W_SettingsListEntry_SubCollection_C_OnSettingAssigned) == 0x000018, "Wrong size on W_SettingsListEntry_SubCollection_C_OnSettingAssigned"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_OnSettingAssigned, ActionText) == 0x000000, "Member 'W_SettingsListEntry_SubCollection_C_OnSettingAssigned::ActionText' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_SubCollection_C_OnMouseLeave \ +static_assert(alignof(W_SettingsListEntry_SubCollection_C_OnMouseLeave) == 0x000008, "Wrong alignment on W_SettingsListEntry_SubCollection_C_OnMouseLeave"); \ +static_assert(sizeof(W_SettingsListEntry_SubCollection_C_OnMouseLeave) == 0x000078, "Wrong size on W_SettingsListEntry_SubCollection_C_OnMouseLeave"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_OnMouseLeave, MouseEvent) == 0x000000, "Member 'W_SettingsListEntry_SubCollection_C_OnMouseLeave::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_SubCollection_C_OnMouseEnter \ +static_assert(alignof(W_SettingsListEntry_SubCollection_C_OnMouseEnter) == 0x000008, "Wrong alignment on W_SettingsListEntry_SubCollection_C_OnMouseEnter"); \ +static_assert(sizeof(W_SettingsListEntry_SubCollection_C_OnMouseEnter) == 0x0000B0, "Wrong size on W_SettingsListEntry_SubCollection_C_OnMouseEnter"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_OnMouseEnter, MyGeometry) == 0x000000, "Member 'W_SettingsListEntry_SubCollection_C_OnMouseEnter::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_OnMouseEnter, MouseEvent) == 0x000038, "Member 'W_SettingsListEntry_SubCollection_C_OnMouseEnter::MouseEvent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection \ +static_assert(alignof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection) == 0x000008, "Wrong alignment on W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection"); \ +static_assert(sizeof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection) == 0x000158, "Wrong size on W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, EntryPoint) == 0x000000, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_Event_MyGeometry) == 0x000004, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_Event_MouseEvent) == 0x000040, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_Event_MouseEvent' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_Event_ActionText) == 0x0000B8, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_Event_ActionText' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_DynamicCast_AsTCR_Common_Button) == 0x0000D0, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_DynamicCast_AsTCR_Common_Button' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_DynamicCast_bSuccess) == 0x0000D8, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection, K2Node_Event_MouseEvent_1) == 0x0000E0, "Member 'W_SettingsListEntry_SubCollection_C_ExecuteUbergraph_W_SettingsListEntry_SubCollection::K2Node_Event_MouseEvent_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_SubCollection_C \ +static_assert(alignof(UW_SettingsListEntry_SubCollection_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_SubCollection_C"); \ +static_assert(sizeof(UW_SettingsListEntry_SubCollection_C) == 0x000358, "Wrong size on UW_SettingsListEntry_SubCollection_C"); \ +static_assert(offsetof(UW_SettingsListEntry_SubCollection_C, UberGraphFrame) == 0x000338, "Member 'UW_SettingsListEntry_SubCollection_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_SubCollection_C, FocusBar) == 0x000340, "Member 'UW_SettingsListEntry_SubCollection_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_SubCollection_C, FocusBorder) == 0x000348, "Member 'UW_SettingsListEntry_SubCollection_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsListEntry_SubCollection_C, FocusOffsetLine) == 0x000350, "Member 'UW_SettingsListEntry_SubCollection_C::FocusOffsetLine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_StrickNR_378_WillemTalk__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData) == 0x000158, "Wrong size on AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __NameProperty_104) == 0x000004, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__NameProperty_104' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __NameProperty_105) == 0x00000C, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__NameProperty_105' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __IntProperty_106) == 0x000014, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__IntProperty_106' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __BlendProfile_107) == 0x000018, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__BlendProfile_107' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __CurveFloat_108) == 0x000020, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__CurveFloat_108' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __EnumProperty_109) == 0x000028, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__EnumProperty_109' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __EnumProperty_110) == 0x000029, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__EnumProperty_110' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __ArrayProperty_111) == 0x000030, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__ArrayProperty_111' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __ArrayProperty_112) == 0x000040, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__ArrayProperty_112' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __BoolProperty_113) == 0x000050, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__BoolProperty_113' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __FloatProperty_114) == 0x000054, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__FloatProperty_114' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __StructProperty_115) == 0x000058, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__StructProperty_115' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __FloatProperty_116) == 0x000084, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__FloatProperty_116' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __BoolProperty_117) == 0x000088, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__BoolProperty_117' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __EnumProperty_118) == 0x000089, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__EnumProperty_118' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __ByteProperty_119) == 0x00008A, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__ByteProperty_119' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __NameProperty_120) == 0x00008C, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__NameProperty_120' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __NameProperty_121) == 0x000094, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__NameProperty_121' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __IntProperty_122) == 0x00009C, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__IntProperty_122' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, __StructProperty_123) == 0x0000A0, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::__StructProperty_123' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x0000C0, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000140, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_StrickNR_378_WillemTalk__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData) == 0x000004, "Wrong alignment on AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData) == 0x00001C, "Wrong size on AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000004, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __FloatProperty_1) == 0x000008, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__FloatProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __ByteProperty_2) == 0x00000C, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__ByteProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __FloatProperty_3) == 0x000010, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__FloatProperty_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __FloatProperty_4) == 0x000014, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__FloatProperty_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData, __FloatProperty_5) == 0x000018, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk::FAnimBlueprintGeneratedMutableData::__FloatProperty_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph \ +static_assert(alignof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk \ +static_assert(alignof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk) == 0x000008, "Wrong alignment on AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk"); \ +static_assert(sizeof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk) == 0x000028, "Wrong size on AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, EntryPoint) == 0x000000, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, CallFunc_GetGameInstance_ReturnValue) == 0x000008, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, CallFunc_IsBlendingPoses_ReturnValue) == 0x000010, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::CallFunc_IsBlendingPoses_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000018, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, CallFunc_GetPlayerVariant_ReturnValue) == 0x000022, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk, CallFunc_IsBlendingPoses_ReturnValue_1) == 0x000023, "Member 'AnimBP_Phyre_StrickNR_378_WillemTalk_C_ExecuteUbergraph_AnimBP_Phyre_StrickNR_378_WillemTalk::CallFunc_IsBlendingPoses_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Phyre_StrickNR_378_WillemTalk_C \ +static_assert(alignof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C) == 0x000010, "Wrong alignment on UAnimBP_Phyre_StrickNR_378_WillemTalk_C"); \ +static_assert(sizeof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C) == 0x000BC0, "Wrong size on UAnimBP_Phyre_StrickNR_378_WillemTalk_C"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, UberGraphFrame) == 0x0003A0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, __AnimBlueprintMutables) == 0x0003A8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimBlueprintExtension_PropertyAccess) == 0x0003C8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimBlueprintExtension_Base) == 0x0003D0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_Root) == 0x0003D8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_TransitionResult_1) == 0x0003F8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_TransitionResult) == 0x000420, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_SequencePlayer_4) == 0x000448, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_SequencePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_SequencePlayer_3) == 0x000490, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_SequencePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_TwoWayBlend_1) == 0x0004D8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_PoseSnapshot_1) == 0x0005A0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_LayeredBoneBlend_1) == 0x000630, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_LayeredBoneBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_StateResult_1) == 0x000720, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_LocalRefPose) == 0x000740, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_LocalRefPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_BlendListByEnum) == 0x000750, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_BlendListByEnum' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_SequencePlayer_2) == 0x000798, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_SequencePlayer_1) == 0x0007E0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_LayeredBoneBlend) == 0x000828, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_SequencePlayer) == 0x000918, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_TwoWayBlend) == 0x000960, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_PoseSnapshot) == 0x000A28, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_StateResult) == 0x000AB8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, AnimGraphNode_StateMachine) == 0x000AD8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, PlayerVariant) == 0x000BA0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::PlayerVariant' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, FaceIdleAnimFem) == 0x000BA8, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::FaceIdleAnimFem' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_StrickNR_378_WillemTalk_C, FaceIdleAnimMasc) == 0x000BB0, "Member 'UAnimBP_Phyre_StrickNR_378_WillemTalk_C::FaceIdleAnimMasc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Phyre::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData) == 0x000158, "Wrong size on AnimBP_Phyre::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __NameProperty_104) == 0x000004, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__NameProperty_104' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __NameProperty_105) == 0x00000C, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__NameProperty_105' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __IntProperty_106) == 0x000014, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__IntProperty_106' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __BlendProfile_107) == 0x000018, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__BlendProfile_107' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __CurveFloat_108) == 0x000020, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__CurveFloat_108' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __EnumProperty_109) == 0x000028, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__EnumProperty_109' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __EnumProperty_110) == 0x000029, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__EnumProperty_110' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __ArrayProperty_111) == 0x000030, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__ArrayProperty_111' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __ArrayProperty_112) == 0x000040, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__ArrayProperty_112' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __BoolProperty_113) == 0x000050, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__BoolProperty_113' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __FloatProperty_114) == 0x000054, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__FloatProperty_114' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __StructProperty_115) == 0x000058, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__StructProperty_115' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __FloatProperty_116) == 0x000084, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__FloatProperty_116' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __BoolProperty_117) == 0x000088, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__BoolProperty_117' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __EnumProperty_118) == 0x000089, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__EnumProperty_118' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __ByteProperty_119) == 0x00008A, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__ByteProperty_119' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __NameProperty_120) == 0x00008C, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__NameProperty_120' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __NameProperty_121) == 0x000094, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__NameProperty_121' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __IntProperty_122) == 0x00009C, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__IntProperty_122' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, __StructProperty_123) == 0x0000A0, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::__StructProperty_123' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x0000C0, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000140, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData) == 0x000004, "Wrong alignment on AnimBP_Phyre::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData) == 0x00001C, "Wrong size on AnimBP_Phyre::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000004, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __FloatProperty_1) == 0x000008, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__FloatProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __ByteProperty_2) == 0x00000C, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__ByteProperty_2' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __FloatProperty_3) == 0x000010, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__FloatProperty_3' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __FloatProperty_4) == 0x000014, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__FloatProperty_4' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre::FAnimBlueprintGeneratedMutableData, __FloatProperty_5) == 0x000018, "Member 'AnimBP_Phyre::FAnimBlueprintGeneratedMutableData::__FloatProperty_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_C_AnimGraph \ +static_assert(alignof(AnimBP_Phyre_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Phyre_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Phyre_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Phyre_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Phyre_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Phyre_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre \ +static_assert(alignof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre) == 0x000008, "Wrong alignment on AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre"); \ +static_assert(sizeof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre) == 0x000028, "Wrong size on AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, EntryPoint) == 0x000000, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, CallFunc_GetGameInstance_ReturnValue) == 0x000008, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, CallFunc_IsBlendingPoses_ReturnValue) == 0x000010, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::CallFunc_IsBlendingPoses_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000018, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, CallFunc_Not_PreBool_ReturnValue) == 0x000021, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, CallFunc_GetPlayerVariant_ReturnValue) == 0x000022, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre, CallFunc_IsBlendingPoses_ReturnValue_1) == 0x000023, "Member 'AnimBP_Phyre_C_ExecuteUbergraph_AnimBP_Phyre::CallFunc_IsBlendingPoses_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Phyre_C \ +static_assert(alignof(UAnimBP_Phyre_C) == 0x000010, "Wrong alignment on UAnimBP_Phyre_C"); \ +static_assert(sizeof(UAnimBP_Phyre_C) == 0x000BC0, "Wrong size on UAnimBP_Phyre_C"); \ +static_assert(offsetof(UAnimBP_Phyre_C, UberGraphFrame) == 0x0003A0, "Member 'UAnimBP_Phyre_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, __AnimBlueprintMutables) == 0x0003A8, "Member 'UAnimBP_Phyre_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimBlueprintExtension_PropertyAccess) == 0x0003C8, "Member 'UAnimBP_Phyre_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimBlueprintExtension_Base) == 0x0003D0, "Member 'UAnimBP_Phyre_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_Root) == 0x0003D8, "Member 'UAnimBP_Phyre_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_TransitionResult_1) == 0x0003F8, "Member 'UAnimBP_Phyre_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_TransitionResult) == 0x000420, "Member 'UAnimBP_Phyre_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_SequencePlayer_4) == 0x000448, "Member 'UAnimBP_Phyre_C::AnimGraphNode_SequencePlayer_4' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_SequencePlayer_3) == 0x000490, "Member 'UAnimBP_Phyre_C::AnimGraphNode_SequencePlayer_3' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_TwoWayBlend_1) == 0x0004D8, "Member 'UAnimBP_Phyre_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_PoseSnapshot_1) == 0x0005A0, "Member 'UAnimBP_Phyre_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_LayeredBoneBlend_1) == 0x000630, "Member 'UAnimBP_Phyre_C::AnimGraphNode_LayeredBoneBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_StateResult_1) == 0x000720, "Member 'UAnimBP_Phyre_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_LocalRefPose) == 0x000740, "Member 'UAnimBP_Phyre_C::AnimGraphNode_LocalRefPose' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_BlendListByEnum) == 0x000750, "Member 'UAnimBP_Phyre_C::AnimGraphNode_BlendListByEnum' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_SequencePlayer_2) == 0x000798, "Member 'UAnimBP_Phyre_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_SequencePlayer_1) == 0x0007E0, "Member 'UAnimBP_Phyre_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_LayeredBoneBlend) == 0x000828, "Member 'UAnimBP_Phyre_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_SequencePlayer) == 0x000918, "Member 'UAnimBP_Phyre_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_TwoWayBlend) == 0x000960, "Member 'UAnimBP_Phyre_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_PoseSnapshot) == 0x000A28, "Member 'UAnimBP_Phyre_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_StateResult) == 0x000AB8, "Member 'UAnimBP_Phyre_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, AnimGraphNode_StateMachine) == 0x000AD8, "Member 'UAnimBP_Phyre_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, PlayerVariant) == 0x000BA0, "Member 'UAnimBP_Phyre_C::PlayerVariant' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, FaceIdleAnimFem) == 0x000BA8, "Member 'UAnimBP_Phyre_C::FaceIdleAnimFem' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Phyre_C, FaceIdleAnimMasc) == 0x000BB0, "Member 'UAnimBP_Phyre_C::FaceIdleAnimMasc' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Short__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData, __NameProperty_4) == 0x000004, "Member 'ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData::__NameProperty_4' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData, __NameProperty_5) == 0x00000C, "Member 'ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData::__NameProperty_5' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData, __StructProperty_6) == 0x000018, "Member 'ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData::__StructProperty_6' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Phyre_Hair_Short::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Short_C_AnimGraph \ +static_assert(alignof(ABP_Phyre_Hair_Short_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Short_C_AnimGraph"); \ +static_assert(sizeof(ABP_Phyre_Hair_Short_C_AnimGraph) == 0x000010, "Wrong size on ABP_Phyre_Hair_Short_C_AnimGraph"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'ABP_Phyre_Hair_Short_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short \ +static_assert(alignof(ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short) == 0x000004, "Wrong alignment on ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short"); \ +static_assert(sizeof(ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short) == 0x000004, "Wrong size on ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short"); \ +static_assert(offsetof(ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short, EntryPoint) == 0x000000, "Member 'ABP_Phyre_Hair_Short_C_ExecuteUbergraph_ABP_Phyre_Hair_Short::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Phyre_Hair_Short_C \ +static_assert(alignof(UABP_Phyre_Hair_Short_C) == 0x000010, "Wrong alignment on UABP_Phyre_Hair_Short_C"); \ +static_assert(sizeof(UABP_Phyre_Hair_Short_C) == 0x0004E0, "Wrong size on UABP_Phyre_Hair_Short_C"); \ +static_assert(offsetof(UABP_Phyre_Hair_Short_C, UberGraphFrame) == 0x000350, "Member 'UABP_Phyre_Hair_Short_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Short_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Phyre_Hair_Short_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Short_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Phyre_Hair_Short_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Short_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Phyre_Hair_Short_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Short_C, AnimGraphNode_CopyPoseFromMesh) == 0x000388, "Member 'UABP_Phyre_Hair_Short_C::AnimGraphNode_CopyPoseFromMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_UI_ButtonCentralBg_C_PreConstruct \ +static_assert(alignof(WBP_UI_ButtonCentralBg_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_UI_ButtonCentralBg_C_PreConstruct"); \ +static_assert(sizeof(WBP_UI_ButtonCentralBg_C_PreConstruct) == 0x000001, "Wrong size on WBP_UI_ButtonCentralBg_C_PreConstruct"); \ +static_assert(offsetof(WBP_UI_ButtonCentralBg_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_UI_ButtonCentralBg_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg \ +static_assert(alignof(WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg) == 0x000004, "Wrong alignment on WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg"); \ +static_assert(sizeof(WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg) == 0x000008, "Wrong size on WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg"); \ +static_assert(offsetof(WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg, EntryPoint) == 0x000000, "Member 'WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_UI_ButtonCentralBg_C_ExecuteUbergraph_WBP_UI_ButtonCentralBg::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_UI_ButtonCentralBg_C \ +static_assert(alignof(UWBP_UI_ButtonCentralBg_C) == 0x000008, "Wrong alignment on UWBP_UI_ButtonCentralBg_C"); \ +static_assert(sizeof(UWBP_UI_ButtonCentralBg_C) == 0x0002F0, "Wrong size on UWBP_UI_ButtonCentralBg_C"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_UI_ButtonCentralBg_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, Grad) == 0x0002C8, "Member 'UWBP_UI_ButtonCentralBg_C::Grad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, Line01) == 0x0002D0, "Member 'UWBP_UI_ButtonCentralBg_C::Line01' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, Line02) == 0x0002D8, "Member 'UWBP_UI_ButtonCentralBg_C::Line02' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, SizeBox) == 0x0002E0, "Member 'UWBP_UI_ButtonCentralBg_C::SizeBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralBg_C, SizeBoxHeight) == 0x0002E8, "Member 'UWBP_UI_ButtonCentralBg_C::SizeBoxHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AssembledCharacter_C_AssembleModularCharacter \ +static_assert(alignof(BP_AssembledCharacter_C_AssembleModularCharacter) == 0x000008, "Wrong alignment on BP_AssembledCharacter_C_AssembleModularCharacter"); \ +static_assert(sizeof(BP_AssembledCharacter_C_AssembleModularCharacter) == 0x000040, "Wrong size on BP_AssembledCharacter_C_AssembleModularCharacter"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, bTickComponents) == 0x000000, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::bTickComponents' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, Temp_int_Array_Index_Variable) == 0x000004, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, Temp_int_Loop_Counter_Variable) == 0x000008, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_GetSkeletalMeshComponents_ReturnValue) == 0x000018, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_GetSkeletalMeshComponents_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_Array_Get_Item) == 0x000030, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_AssembleModularCharacter, CallFunc_Less_IntInt_ReturnValue) == 0x000038, "Member 'BP_AssembledCharacter_C_AssembleModularCharacter::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature \ +static_assert(alignof(BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature) == 0x000001, "Wrong alignment on BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature"); \ +static_assert(sizeof(BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature) == 0x000001, "Wrong size on BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature"); \ +static_assert(offsetof(BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature, NewValue) == 0x000000, "Member 'BP_AssembledCharacter_C_BndEvt__BP_AssembledCharacter_HeraPropertyComponentBool_K2Node_ComponentBoundEvent_0_HeraPropertyBoolChanged__DelegateSignature::NewValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter \ +static_assert(alignof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter) == 0x000008, "Wrong alignment on BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter"); \ +static_assert(sizeof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter) == 0x0000E0, "Wrong size on BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, EntryPoint) == 0x000000, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, CallFunc_BreakGameplayTagContainer_GameplayTags) == 0x000008, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::CallFunc_BreakGameplayTagContainer_GameplayTags' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, CallFunc_Array_Get_Item) == 0x000018, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, CallFunc_Greater_IntInt_ReturnValue) == 0x000024, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, K2Node_ComponentBoundEvent_newValue) == 0x000025, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::K2Node_ComponentBoundEvent_newValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter, K2Node_MakeStruct_GameplayEventData) == 0x000030, "Member 'BP_AssembledCharacter_C_ExecuteUbergraph_BP_AssembledCharacter::K2Node_MakeStruct_GameplayEventData' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_AssembledCharacter_C_Set_Audio_Switch \ +static_assert(alignof(BP_AssembledCharacter_C_Set_Audio_Switch) == 0x000008, "Wrong alignment on BP_AssembledCharacter_C_Set_Audio_Switch"); \ +static_assert(sizeof(BP_AssembledCharacter_C_Set_Audio_Switch) == 0x000030, "Wrong size on BP_AssembledCharacter_C_Set_Audio_Switch"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000000, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000008, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_IsValid_ReturnValue) == 0x000010, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x000018, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_RandomFloatInRange_ReturnValue) == 0x000020, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_RandomFloatInRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_AssembledCharacter_C_Set_Audio_Switch, CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast) == 0x000028, "Member 'BP_AssembledCharacter_C_Set_Audio_Switch::CallFunc_SetRTPCOnAllComponents_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_AssembledCharacter_C \ +static_assert(alignof(ABP_AssembledCharacter_C) == 0x000010, "Wrong alignment on ABP_AssembledCharacter_C"); \ +static_assert(sizeof(ABP_AssembledCharacter_C) == 0x000B20, "Wrong size on ABP_AssembledCharacter_C"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, UberGraphFrame) == 0x000AB0, "Member 'ABP_AssembledCharacter_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, HeraMissionActor) == 0x000AB8, "Member 'ABP_AssembledCharacter_C::HeraMissionActor' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, WrestlerHeightenedSensesClue) == 0x000AC0, "Member 'ABP_AssembledCharacter_C::WrestlerHeightenedSensesClue' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, HeraPropertyFeedingBool) == 0x000AC8, "Member 'ABP_AssembledCharacter_C::HeraPropertyFeedingBool' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, Prop_R) == 0x000AD0, "Member 'ABP_AssembledCharacter_C::Prop_R' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, Prop_L) == 0x000AD8, "Member 'ABP_AssembledCharacter_C::Prop_L' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, WrestlerModularCharacter) == 0x000AE0, "Member 'ABP_AssembledCharacter_C::WrestlerModularCharacter' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, ChaProfile) == 0x000AE8, "Member 'ABP_AssembledCharacter_C::ChaProfile' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, charWalkOrRun) == 0x000AF0, "Member 'ABP_AssembledCharacter_C::charWalkOrRun' has a wrong offset!"); \ +static_assert(offsetof(ABP_AssembledCharacter_C, HeightenedSenseSpeciesTag) == 0x000AF8, "Member 'ABP_AssembledCharacter_C::HeightenedSenseSpeciesTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull \ +static_assert(alignof(BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull) == 0x000001, "Wrong alignment on BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull) == 0x000001, "Wrong size on BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull, ReturnValue) == 0x000000, "Member 'BP_TelekinesisInteractable_Elevator_Breaks_C_CanPull::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks \ +static_assert(alignof(BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks) == 0x000004, "Wrong alignment on BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks"); \ +static_assert(sizeof(BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks) == 0x000004, "Wrong size on BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks"); \ +static_assert(offsetof(BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks, EntryPoint) == 0x000000, "Member 'BP_TelekinesisInteractable_Elevator_Breaks_C_ExecuteUbergraph_BP_TelekinesisInteractable_Elevator_Breaks::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_TelekinesisInteractable_Elevator_Breaks_C \ +static_assert(alignof(ABP_TelekinesisInteractable_Elevator_Breaks_C) == 0x000008, "Wrong alignment on ABP_TelekinesisInteractable_Elevator_Breaks_C"); \ +static_assert(sizeof(ABP_TelekinesisInteractable_Elevator_Breaks_C) == 0x000380, "Wrong size on ABP_TelekinesisInteractable_Elevator_Breaks_C"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Elevator_Breaks_C, UberGraphFrame_BP_TelekinesisInteractable_Elevator_Breaks_C) == 0x000368, "Member 'ABP_TelekinesisInteractable_Elevator_Breaks_C::UberGraphFrame_BP_TelekinesisInteractable_Elevator_Breaks_C' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Elevator_Breaks_C, HeraPropertyComponentBool) == 0x000370, "Member 'ABP_TelekinesisInteractable_Elevator_Breaks_C::HeraPropertyComponentBool' has a wrong offset!"); \ +static_assert(offsetof(ABP_TelekinesisInteractable_Elevator_Breaks_C, WrestlerPersistenceComponentBreakable) == 0x000378, "Member 'ABP_TelekinesisInteractable_Elevator_Breaks_C::WrestlerPersistenceComponentBreakable' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP \ +static_assert(alignof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP) == 0x000008, "Wrong alignment on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP"); \ +static_assert(sizeof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP) == 0x000110, "Wrong size on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, EntryPoint) == 0x000000, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams) == 0x000008, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, CallFunc_GetPlayerController_ReturnValue) == 0x000030, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, K2Node_DynamicCast_AsWrestler_Controller_in_Game) == 0x000038, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::K2Node_DynamicCast_AsWrestler_Controller_in_Game' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, CallFunc_GetFrameInput_ReturnValue) == 0x000048, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::CallFunc_GetFrameInput_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue) == 0x0000D0, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, CallFunc_GetWorldSubsystem_ReturnValue_1) == 0x0000D8, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::CallFunc_GetWorldSubsystem_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1) == 0x0000E0, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::K2Node_MakeStruct_MovieSceneSequencePlaybackParams_1' has a wrong offset!"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP, K2Node_CustomEvent_BP_Assembled_Character) == 0x000108, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_ExecuteUbergraph_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP::K2Node_CustomEvent_BP_Assembled_Character' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll \ +static_assert(alignof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll) == 0x000008, "Wrong alignment on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll"); \ +static_assert(sizeof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll) == 0x000008, "Wrong size on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll, BP_Assembled_Character) == 0x000000, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_Ragdoll::BP_Assembled_Character' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2 \ +static_assert(alignof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2) == 0x000008, "Wrong alignment on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2"); \ +static_assert(sizeof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2) == 0x000008, "Wrong size on SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2"); \ +static_assert(offsetof(SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2, BP_Assembled_Character) == 0x000000, "Member 'SEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C_SequenceEvent__ENTRYPOINTSEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_2::BP_Assembled_Character' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C \ +static_assert(alignof(USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C) == 0x000008, "Wrong alignment on USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C"); \ +static_assert(sizeof(USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C) == 0x000050, "Wrong size on USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C"); \ +static_assert(offsetof(USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C, UberGraphFrame) == 0x000038, "Member 'USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C, TutorialOBJ) == 0x000040, "Member 'USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C::TutorialOBJ' has a wrong offset!"); \ +static_assert(offsetof(USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C, Punched) == 0x000048, "Member 'USEQ_RE_Pro_Escape_Frank_Death_V1_DirectorBP_C::Punched' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_Throwable_Bust_Female_C_GetDataAsset \ +static_assert(alignof(BP_Throwable_Bust_Female_C_GetDataAsset) == 0x000008, "Wrong alignment on BP_Throwable_Bust_Female_C_GetDataAsset"); \ +static_assert(sizeof(BP_Throwable_Bust_Female_C_GetDataAsset) == 0x000008, "Wrong size on BP_Throwable_Bust_Female_C_GetDataAsset"); \ +static_assert(offsetof(BP_Throwable_Bust_Female_C_GetDataAsset, ReturnValue) == 0x000000, "Member 'BP_Throwable_Bust_Female_C_GetDataAsset::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Throwable_Bust_Female_C \ +static_assert(alignof(ABP_Throwable_Bust_Female_C) == 0x000008, "Wrong alignment on ABP_Throwable_Bust_Female_C"); \ +static_assert(sizeof(ABP_Throwable_Bust_Female_C) == 0x000328, "Wrong size on ABP_Throwable_Bust_Female_C"); \ +static_assert(offsetof(ABP_Throwable_Bust_Female_C, WrestlerFearEmitter) == 0x000318, "Member 'ABP_Throwable_Bust_Female_C::WrestlerFearEmitter' has a wrong offset!"); \ +static_assert(offsetof(ABP_Throwable_Bust_Female_C, MaxNoise_Range) == 0x000320, "Member 'ABP_Throwable_Bust_Female_C::MaxNoise_Range' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Long__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData, __NameProperty_13) == 0x000004, "Member 'ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData::__NameProperty_13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData, __NameProperty_14) == 0x00000C, "Member 'ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData::__NameProperty_14' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData, __StructProperty_15) == 0x000018, "Member 'ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData::__StructProperty_15' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Phyre_Hair_Long::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Long_C_AnimGraph \ +static_assert(alignof(ABP_Phyre_Hair_Long_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Phyre_Hair_Long_C_AnimGraph"); \ +static_assert(sizeof(ABP_Phyre_Hair_Long_C_AnimGraph) == 0x000010, "Wrong size on ABP_Phyre_Hair_Long_C_AnimGraph"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'ABP_Phyre_Hair_Long_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long \ +static_assert(alignof(ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long) == 0x000004, "Wrong alignment on ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long"); \ +static_assert(sizeof(ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long) == 0x000004, "Wrong size on ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long"); \ +static_assert(offsetof(ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long, EntryPoint) == 0x000000, "Member 'ABP_Phyre_Hair_Long_C_ExecuteUbergraph_ABP_Phyre_Hair_Long::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Phyre_Hair_Long_C \ +static_assert(alignof(UABP_Phyre_Hair_Long_C) == 0x000010, "Wrong alignment on UABP_Phyre_Hair_Long_C"); \ +static_assert(sizeof(UABP_Phyre_Hair_Long_C) == 0x000E70, "Wrong size on UABP_Phyre_Hair_Long_C"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, UberGraphFrame) == 0x000350, "Member 'UABP_Phyre_Hair_Long_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Phyre_Hair_Long_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Phyre_Hair_Long_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Phyre_Hair_Long_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimGraphNode_CopyPoseFromMesh) == 0x000388, "Member 'UABP_Phyre_Hair_Long_C::AnimGraphNode_CopyPoseFromMesh' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimGraphNode_RigidBody) == 0x0004E0, "Member 'UABP_Phyre_Hair_Long_C::AnimGraphNode_RigidBody' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimGraphNode_LocalToComponentSpace) == 0x000E30, "Member 'UABP_Phyre_Hair_Long_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UABP_Phyre_Hair_Long_C, AnimGraphNode_ComponentToLocalSpace) == 0x000E50, "Member 'UABP_Phyre_Hair_Long_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_DisablePlayerOverlay \ +static_assert(alignof(BP_PlayerOverlayManager_C_DisablePlayerOverlay) == 0x000001, "Wrong alignment on BP_PlayerOverlayManager_C_DisablePlayerOverlay"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_DisablePlayerOverlay) == 0x000001, "Wrong size on BP_PlayerOverlayManager_C_DisablePlayerOverlay"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_DisablePlayerOverlay, Overlay) == 0x000000, "Member 'BP_PlayerOverlayManager_C_DisablePlayerOverlay::Overlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_EnablePlayerOverlay \ +static_assert(alignof(BP_PlayerOverlayManager_C_EnablePlayerOverlay) == 0x000001, "Wrong alignment on BP_PlayerOverlayManager_C_EnablePlayerOverlay"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_EnablePlayerOverlay) == 0x000001, "Wrong size on BP_PlayerOverlayManager_C_EnablePlayerOverlay"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_EnablePlayerOverlay, Overlay) == 0x000000, "Member 'BP_PlayerOverlayManager_C_EnablePlayerOverlay::Overlay' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager \ +static_assert(alignof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager) == 0x000008, "Wrong alignment on BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager) == 0x0000A0, "Wrong size on BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, EntryPoint) == 0x000000, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_IsValid_ReturnValue) == 0x000004, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_IsValid_ReturnValue_1) == 0x000005, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_byte_Variable) == 0x000006, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_object_Variable) == 0x000008, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_object_Variable_1) == 0x000010, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_byte_Variable_1) == 0x000018, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_object_Variable_2) == 0x000020, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, Temp_object_Variable_3) == 0x000028, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_CreateDynamicMaterialInstance_ReturnValue) == 0x000030, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_CreateDynamicMaterialInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_CustomEvent_Overlay_2) == 0x000038, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_CustomEvent_Overlay_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_IsOverlayEnabled__Enabled_) == 0x000039, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_IsOverlayEnabled__Enabled_' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_Array_AddUnique_ReturnValue) == 0x00003C, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_Array_AddUnique_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_CustomEvent_Overlay_1) == 0x000040, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_CustomEvent_Overlay_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_Array_RemoveItem_ReturnValue) == 0x000041, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_Array_RemoveItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_Array_Length_ReturnValue) == 0x000044, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x000048, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_CustomEvent_Overlay) == 0x000049, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_CustomEvent_Overlay' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_CustomEvent_Param) == 0x00004C, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_CustomEvent_Param' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_CustomEvent_Scalar) == 0x000058, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_CustomEvent_Scalar' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_Select_Default) == 0x000060, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_GetParameterInfo_ReturnValue) == 0x000068, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_GetParameterInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, K2Node_Select_Default_1) == 0x000078, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::K2Node_Select_Default_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_GetParameterInfo_ReturnValue_1) == 0x000080, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_GetParameterInfo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_IsValid_ReturnValue_2) == 0x000090, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_SetScalarParameterValueByInfo_Value_ImplicitCast) == 0x000094, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_SetScalarParameterValueByInfo_Value_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager, CallFunc_SetScalarParameterValueByInfo_Value_ImplicitCast_1) == 0x000098, "Member 'BP_PlayerOverlayManager_C_ExecuteUbergraph_BP_PlayerOverlayManager::CallFunc_SetScalarParameterValueByInfo_Value_ImplicitCast_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_IsOverlayEnabled_ \ +static_assert(alignof(BP_PlayerOverlayManager_C_IsOverlayEnabled_) == 0x000001, "Wrong alignment on BP_PlayerOverlayManager_C_IsOverlayEnabled_"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_IsOverlayEnabled_) == 0x000003, "Wrong size on BP_PlayerOverlayManager_C_IsOverlayEnabled_"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_IsOverlayEnabled_, Overlay) == 0x000000, "Member 'BP_PlayerOverlayManager_C_IsOverlayEnabled_::Overlay' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_IsOverlayEnabled_, Enabled_) == 0x000001, "Member 'BP_PlayerOverlayManager_C_IsOverlayEnabled_::Enabled_' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_IsOverlayEnabled_, CallFunc_Array_Contains_ReturnValue) == 0x000002, "Member 'BP_PlayerOverlayManager_C_IsOverlayEnabled_::CallFunc_Array_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_ReturnOverlayManager \ +static_assert(alignof(BP_PlayerOverlayManager_C_ReturnOverlayManager) == 0x000008, "Wrong alignment on BP_PlayerOverlayManager_C_ReturnOverlayManager"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_ReturnOverlayManager) == 0x000008, "Wrong size on BP_PlayerOverlayManager_C_ReturnOverlayManager"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_ReturnOverlayManager, Manager) == 0x000000, "Member 'BP_PlayerOverlayManager_C_ReturnOverlayManager::Manager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_PlayerOverlayManager_C_SetScalarParamOnOverlay \ +static_assert(alignof(BP_PlayerOverlayManager_C_SetScalarParamOnOverlay) == 0x000008, "Wrong alignment on BP_PlayerOverlayManager_C_SetScalarParamOnOverlay"); \ +static_assert(sizeof(BP_PlayerOverlayManager_C_SetScalarParamOnOverlay) == 0x000018, "Wrong size on BP_PlayerOverlayManager_C_SetScalarParamOnOverlay"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_SetScalarParamOnOverlay, Overlay) == 0x000000, "Member 'BP_PlayerOverlayManager_C_SetScalarParamOnOverlay::Overlay' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_SetScalarParamOnOverlay, Param) == 0x000004, "Member 'BP_PlayerOverlayManager_C_SetScalarParamOnOverlay::Param' has a wrong offset!"); \ +static_assert(offsetof(BP_PlayerOverlayManager_C_SetScalarParamOnOverlay, Scalar) == 0x000010, "Member 'BP_PlayerOverlayManager_C_SetScalarParamOnOverlay::Scalar' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_PlayerOverlayManager_C \ +static_assert(alignof(ABP_PlayerOverlayManager_C) == 0x000008, "Wrong alignment on ABP_PlayerOverlayManager_C"); \ +static_assert(sizeof(ABP_PlayerOverlayManager_C) == 0x0002D8, "Wrong size on ABP_PlayerOverlayManager_C"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, UberGraphFrame) == 0x000298, "Member 'ABP_PlayerOverlayManager_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, DefaultSceneRoot) == 0x0002A0, "Member 'ABP_PlayerOverlayManager_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, Player) == 0x0002A8, "Member 'ABP_PlayerOverlayManager_C::Player' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, Mat) == 0x0002B0, "Member 'ABP_PlayerOverlayManager_C::Mat' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, EnabledOverlays) == 0x0002B8, "Member 'ABP_PlayerOverlayManager_C::EnabledOverlays' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, OverlayMaterialDynamic) == 0x0002C8, "Member 'ABP_PlayerOverlayManager_C::OverlayMaterialDynamic' has a wrong offset!"); \ +static_assert(offsetof(ABP_PlayerOverlayManager_C, PlayerMesh) == 0x0002D0, "Member 'ABP_PlayerOverlayManager_C::PlayerMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_PlayerOverlays_C_ReturnOverlayManager \ +static_assert(alignof(BPI_PlayerOverlays_C_ReturnOverlayManager) == 0x000008, "Wrong alignment on BPI_PlayerOverlays_C_ReturnOverlayManager"); \ +static_assert(sizeof(BPI_PlayerOverlays_C_ReturnOverlayManager) == 0x000008, "Wrong size on BPI_PlayerOverlays_C_ReturnOverlayManager"); \ +static_assert(offsetof(BPI_PlayerOverlays_C_ReturnOverlayManager, Manager) == 0x000000, "Member 'BPI_PlayerOverlays_C_ReturnOverlayManager::Manager' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_PlayerOverlays_C \ +static_assert(alignof(IBPI_PlayerOverlays_C) == 0x000001, "Wrong alignment on IBPI_PlayerOverlays_C"); \ +static_assert(sizeof(IBPI_PlayerOverlays_C) == 0x000001, "Wrong size on IBPI_PlayerOverlays_C"); \ + +#define DUMPER7_ASSERTS_ABP_Climbable_Ladder_C \ +static_assert(alignof(ABP_Climbable_Ladder_C) == 0x000008, "Wrong alignment on ABP_Climbable_Ladder_C"); \ +static_assert(sizeof(ABP_Climbable_Ladder_C) == 0x0003E8, "Wrong size on ABP_Climbable_Ladder_C"); \ + +#define DUMPER7_ASSERTS_UW_SettingsEntryBackground_C \ +static_assert(alignof(UW_SettingsEntryBackground_C) == 0x000008, "Wrong alignment on UW_SettingsEntryBackground_C"); \ +static_assert(sizeof(UW_SettingsEntryBackground_C) == 0x0002C8, "Wrong size on UW_SettingsEntryBackground_C"); \ +static_assert(offsetof(UW_SettingsEntryBackground_C, Content) == 0x0002C0, "Member 'UW_SettingsEntryBackground_C::Content' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_MothsLights_01_C \ +static_assert(alignof(ABP_StaticFX_MothsLights_01_C) == 0x000008, "Wrong alignment on ABP_StaticFX_MothsLights_01_C"); \ +static_assert(sizeof(ABP_StaticFX_MothsLights_01_C) == 0x000310, "Wrong size on ABP_StaticFX_MothsLights_01_C"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTreeShadow_C_Reset \ +static_assert(alignof(WBP_AbilityTreeShadow_C_Reset) == 0x000001, "Wrong alignment on WBP_AbilityTreeShadow_C_Reset"); \ +static_assert(sizeof(WBP_AbilityTreeShadow_C_Reset) == 0x000001, "Wrong size on WBP_AbilityTreeShadow_C_Reset"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_Reset, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000000, "Member 'WBP_AbilityTreeShadow_C_Reset::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTreeShadow_C_PreConstruct \ +static_assert(alignof(WBP_AbilityTreeShadow_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_AbilityTreeShadow_C_PreConstruct"); \ +static_assert(sizeof(WBP_AbilityTreeShadow_C_PreConstruct) == 0x000001, "Wrong size on WBP_AbilityTreeShadow_C_PreConstruct"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_AbilityTreeShadow_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow \ +static_assert(alignof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow) == 0x000008, "Wrong alignment on WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow"); \ +static_assert(sizeof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow) == 0x000038, "Wrong size on WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, EntryPoint) == 0x000000, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, Temp_int_Variable) == 0x000004, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, K2Node_Event_IsDesignTime) == 0x00000C, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, K2Node_MakeArray_Array) == 0x000010, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, CallFunc_Array_Length_ReturnValue) == 0x000020, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow, CallFunc_Less_IntInt_ReturnValue) == 0x000030, "Member 'WBP_AbilityTreeShadow_C_ExecuteUbergraph_WBP_AbilityTreeShadow::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AbilityTreeShadow_C \ +static_assert(alignof(UWBP_AbilityTreeShadow_C) == 0x000008, "Wrong alignment on UWBP_AbilityTreeShadow_C"); \ +static_assert(sizeof(UWBP_AbilityTreeShadow_C) == 0x000308, "Wrong size on UWBP_AbilityTreeShadow_C"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_AbilityTreeShadow_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, OpenAnim) == 0x0002C8, "Member 'UWBP_AbilityTreeShadow_C::OpenAnim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow) == 0x0002D0, "Member 'UWBP_AbilityTreeShadow_C::Shadow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow_1) == 0x0002D8, "Member 'UWBP_AbilityTreeShadow_C::Shadow_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow_2) == 0x0002E0, "Member 'UWBP_AbilityTreeShadow_C::Shadow_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow_3) == 0x0002E8, "Member 'UWBP_AbilityTreeShadow_C::Shadow_3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow_4) == 0x0002F0, "Member 'UWBP_AbilityTreeShadow_C::Shadow_4' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, Shadow_Main) == 0x0002F8, "Member 'UWBP_AbilityTreeShadow_C::Shadow_Main' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityTreeShadow_C, ShadowTexture) == 0x000300, "Member 'UWBP_AbilityTreeShadow_C::ShadowTexture' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_ambient_dust_mote_fast_C \ +static_assert(alignof(ABP_StaticFX_ambient_dust_mote_fast_C) == 0x000008, "Wrong alignment on ABP_StaticFX_ambient_dust_mote_fast_C"); \ +static_assert(sizeof(ABP_StaticFX_ambient_dust_mote_fast_C) == 0x000310, "Wrong size on ABP_StaticFX_ambient_dust_mote_fast_C"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_Ambient_Dust_Slow_C \ +static_assert(alignof(ABP_StaticFX_Ambient_Dust_Slow_C) == 0x000008, "Wrong alignment on ABP_StaticFX_Ambient_Dust_Slow_C"); \ +static_assert(sizeof(ABP_StaticFX_Ambient_Dust_Slow_C) == 0x000338, "Wrong size on ABP_StaticFX_Ambient_Dust_Slow_C"); \ +static_assert(offsetof(ABP_StaticFX_Ambient_Dust_Slow_C, DebugBox) == 0x000310, "Member 'ABP_StaticFX_Ambient_Dust_Slow_C::DebugBox' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_Ambient_Dust_Slow_C, DrawDebugBox_) == 0x000318, "Member 'ABP_StaticFX_Ambient_Dust_Slow_C::DrawDebugBox_' has a wrong offset!"); \ +static_assert(offsetof(ABP_StaticFX_Ambient_Dust_Slow_C, DebugBoxScale) == 0x000320, "Member 'ABP_StaticFX_Ambient_Dust_Slow_C::DebugBoxScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_StaticFX_Small_Steam_Burst_Pipe_01_C \ +static_assert(alignof(ABP_StaticFX_Small_Steam_Burst_Pipe_01_C) == 0x000008, "Wrong alignment on ABP_StaticFX_Small_Steam_Burst_Pipe_01_C"); \ +static_assert(sizeof(ABP_StaticFX_Small_Steam_Burst_Pipe_01_C) == 0x000310, "Wrong size on ABP_StaticFX_Small_Steam_Burst_Pipe_01_C"); \ + +#define DUMPER7_ASSERTS_ABP_CodexItem_CashEnvelope_C \ +static_assert(alignof(ABP_CodexItem_CashEnvelope_C) == 0x000008, "Wrong alignment on ABP_CodexItem_CashEnvelope_C"); \ +static_assert(sizeof(ABP_CodexItem_CashEnvelope_C) == 0x000438, "Wrong size on ABP_CodexItem_CashEnvelope_C"); \ + +#define DUMPER7_ASSERTS_ABPP_Escape_Basement_StyleGuide_01_C \ +static_assert(alignof(ABPP_Escape_Basement_StyleGuide_01_C) == 0x000008, "Wrong alignment on ABPP_Escape_Basement_StyleGuide_01_C"); \ +static_assert(sizeof(ABPP_Escape_Basement_StyleGuide_01_C) == 0x0009A0, "Wrong size on ABPP_Escape_Basement_StyleGuide_01_C"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh203) == 0x000338, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh203' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh202) == 0x000340, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh202' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh201) == 0x000348, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh201' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh200) == 0x000350, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh200' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh199) == 0x000358, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh199' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh198) == 0x000360, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh198' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh197) == 0x000368, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh197' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh196) == 0x000370, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh196' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh195) == 0x000378, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh195' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh194) == 0x000380, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh194' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh193) == 0x000388, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh193' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh192) == 0x000390, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh192' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh191) == 0x000398, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh191' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh190) == 0x0003A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh190' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh189) == 0x0003A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh189' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh188) == 0x0003B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh188' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh187) == 0x0003B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh187' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh186) == 0x0003C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh186' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh185) == 0x0003C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh185' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh184) == 0x0003D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh184' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh183) == 0x0003D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh183' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh182) == 0x0003E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh182' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh181) == 0x0003E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh181' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh180) == 0x0003F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh180' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh179) == 0x0003F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh179' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh178) == 0x000400, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh178' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh177) == 0x000408, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh177' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh176) == 0x000410, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh176' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh175) == 0x000418, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh175' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh174) == 0x000420, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh174' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh173) == 0x000428, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh173' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh172) == 0x000430, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh172' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh171) == 0x000438, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh171' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh170) == 0x000440, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh170' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh169) == 0x000448, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh169' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh168) == 0x000450, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh168' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh167) == 0x000458, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh167' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh166) == 0x000460, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh166' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh165) == 0x000468, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh165' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh164) == 0x000470, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh164' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh163) == 0x000478, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh163' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh162) == 0x000480, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh162' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh161) == 0x000488, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh161' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh160) == 0x000490, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh160' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh159) == 0x000498, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh159' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh158) == 0x0004A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh158' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh157) == 0x0004A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh157' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh156) == 0x0004B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh156' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh155) == 0x0004B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh155' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh154) == 0x0004C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh154' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh153) == 0x0004C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh153' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh152) == 0x0004D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh152' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh151) == 0x0004D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh151' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh150) == 0x0004E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh150' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh149) == 0x0004E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh149' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh148) == 0x0004F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh148' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh147) == 0x0004F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh147' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh146) == 0x000500, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh146' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh145) == 0x000508, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh145' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh144) == 0x000510, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh144' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh143) == 0x000518, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh143' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh142) == 0x000520, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh142' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh141) == 0x000528, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh141' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh140) == 0x000530, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh140' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh139) == 0x000538, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh139' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh138) == 0x000540, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh138' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh137) == 0x000548, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh137' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh136) == 0x000550, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh136' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh135) == 0x000558, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh135' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh134) == 0x000560, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh134' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh133) == 0x000568, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh133' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh132) == 0x000570, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh132' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh131) == 0x000578, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh131' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh130) == 0x000580, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh130' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh129) == 0x000588, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh129' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh128) == 0x000590, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh128' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh127) == 0x000598, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh127' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh126) == 0x0005A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh126' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh125) == 0x0005A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh125' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh124) == 0x0005B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh124' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh123) == 0x0005B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh123' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh122) == 0x0005C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh122' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh121) == 0x0005C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh121' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh120) == 0x0005D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh120' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh119) == 0x0005D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh119' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh118) == 0x0005E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh118' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh117) == 0x0005E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh117' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh116) == 0x0005F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh116' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh115) == 0x0005F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh115' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh114) == 0x000600, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh114' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh113) == 0x000608, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh113' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh112) == 0x000610, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh112' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh111) == 0x000618, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh111' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh110) == 0x000620, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh110' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh109) == 0x000628, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh109' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh108) == 0x000630, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh108' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh107) == 0x000638, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh107' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh106) == 0x000640, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh106' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh105) == 0x000648, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh105' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh104) == 0x000650, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh104' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh103) == 0x000658, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh103' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh102) == 0x000660, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh102' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh101) == 0x000668, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh101' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh100) == 0x000670, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh100' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh99) == 0x000678, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh99' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh98) == 0x000680, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh98' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh97) == 0x000688, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh97' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh96) == 0x000690, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh96' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh95) == 0x000698, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh95' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh94) == 0x0006A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh94' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh93) == 0x0006A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh93' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh92) == 0x0006B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh92' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh91) == 0x0006B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh91' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh90) == 0x0006C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh90' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh89) == 0x0006C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh89' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh88) == 0x0006D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh88' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh87) == 0x0006D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh87' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh86) == 0x0006E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh86' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh85) == 0x0006E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh85' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh84) == 0x0006F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh84' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh83) == 0x0006F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh83' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh82) == 0x000700, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh82' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh81) == 0x000708, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh81' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh80) == 0x000710, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh80' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh79) == 0x000718, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh79' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh78) == 0x000720, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh78' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh77) == 0x000728, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh77' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh76) == 0x000730, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh76' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh75) == 0x000738, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh75' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh74) == 0x000740, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh74' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh73) == 0x000748, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh73' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh72) == 0x000750, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh72' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh71) == 0x000758, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh71' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh70) == 0x000760, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh70' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh69) == 0x000768, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh69' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh68) == 0x000770, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh68' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh67) == 0x000778, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh67' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh66) == 0x000780, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh66' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh65) == 0x000788, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh65' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh64) == 0x000790, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh64' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh63) == 0x000798, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh63' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh62) == 0x0007A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh62' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh61) == 0x0007A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh61' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh60) == 0x0007B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh60' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh59) == 0x0007B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh59' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, HierarchicalInstancedStaticMesh) == 0x0007C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::HierarchicalInstancedStaticMesh' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh58) == 0x0007C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh58' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh57) == 0x0007D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh57' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh56) == 0x0007D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh56' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh55) == 0x0007E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh55' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh54) == 0x0007E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh54' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh53) == 0x0007F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh53' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh52) == 0x0007F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh52' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh51) == 0x000800, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh51' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh50) == 0x000808, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh50' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh49) == 0x000810, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh49' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh48) == 0x000818, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh48' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh47) == 0x000820, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh47' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh46) == 0x000828, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh46' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh45) == 0x000830, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh45' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh44) == 0x000838, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh44' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh43) == 0x000840, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh43' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh42) == 0x000848, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh42' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh41) == 0x000850, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh41' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh40) == 0x000858, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh40' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh39) == 0x000860, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh39' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh38) == 0x000868, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh38' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh37) == 0x000870, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh37' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh36) == 0x000878, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh36' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh35) == 0x000880, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh35' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh34) == 0x000888, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh34' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh33) == 0x000890, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh33' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh32) == 0x000898, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh32' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh31) == 0x0008A0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh31' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh30) == 0x0008A8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh30' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh29) == 0x0008B0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh29' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh28) == 0x0008B8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh28' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh27) == 0x0008C0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh27' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh26) == 0x0008C8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh26' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh25) == 0x0008D0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh25' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh24) == 0x0008D8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh24' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh23) == 0x0008E0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh23' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh22) == 0x0008E8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh22' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh21) == 0x0008F0, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh21' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh20) == 0x0008F8, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh20' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh19) == 0x000900, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh19' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh18) == 0x000908, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh18' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh17) == 0x000910, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh17' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh16) == 0x000918, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh16' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh15) == 0x000920, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh15' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh14) == 0x000928, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh14' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh13) == 0x000930, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh13' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh12) == 0x000938, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh12' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh11) == 0x000940, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh11' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh10) == 0x000948, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh10' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh9) == 0x000950, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh9' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh8) == 0x000958, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh8' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh7) == 0x000960, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh7' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh6) == 0x000968, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh6' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh5) == 0x000970, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh5' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh4) == 0x000978, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh4' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh3) == 0x000980, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh3' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh2) == 0x000988, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh2' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh1) == 0x000990, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh1' has a wrong offset!"); \ +static_assert(offsetof(ABPP_Escape_Basement_StyleGuide_01_C, InstancedStaticMesh) == 0x000998, "Member 'ABPP_Escape_Basement_StyleGuide_01_C::InstancedStaticMesh' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABPC_lightutility_cage_Rotate_02_Haven_01_C \ +static_assert(alignof(ABPC_lightutility_cage_Rotate_02_Haven_01_C) == 0x000008, "Wrong alignment on ABPC_lightutility_cage_Rotate_02_Haven_01_C"); \ +static_assert(sizeof(ABPC_lightutility_cage_Rotate_02_Haven_01_C) == 0x0007D0, "Wrong size on ABPC_lightutility_cage_Rotate_02_Haven_01_C"); \ + +#define DUMPER7_ASSERTS_ABP_WrestlerLightActor_lightutility_emissiveplane_01_C \ +static_assert(alignof(ABP_WrestlerLightActor_lightutility_emissiveplane_01_C) == 0x000008, "Wrong alignment on ABP_WrestlerLightActor_lightutility_emissiveplane_01_C"); \ +static_assert(sizeof(ABP_WrestlerLightActor_lightutility_emissiveplane_01_C) == 0x0002F0, "Wrong size on ABP_WrestlerLightActor_lightutility_emissiveplane_01_C"); \ +static_assert(offsetof(ABP_WrestlerLightActor_lightutility_emissiveplane_01_C, Plane) == 0x0002E8, "Member 'ABP_WrestlerLightActor_lightutility_emissiveplane_01_C::Plane' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_lightutility_cage_03_ProEscape_01_C \ +static_assert(alignof(ABP_lightutility_cage_03_ProEscape_01_C) == 0x000008, "Wrong alignment on ABP_lightutility_cage_03_ProEscape_01_C"); \ +static_assert(sizeof(ABP_lightutility_cage_03_ProEscape_01_C) == 0x0007A0, "Wrong size on ABP_lightutility_cage_03_ProEscape_01_C"); \ + +#define DUMPER7_ASSERTS_UWBP_BloodResEventPoolWidget_C \ +static_assert(alignof(UWBP_BloodResEventPoolWidget_C) == 0x000008, "Wrong alignment on UWBP_BloodResEventPoolWidget_C"); \ +static_assert(sizeof(UWBP_BloodResEventPoolWidget_C) == 0x000498, "Wrong size on UWBP_BloodResEventPoolWidget_C"); \ + +#define DUMPER7_ASSERTS_UGE_StunDamageSetByCaller_C \ +static_assert(alignof(UGE_StunDamageSetByCaller_C) == 0x000008, "Wrong alignment on UGE_StunDamageSetByCaller_C"); \ +static_assert(sizeof(UGE_StunDamageSetByCaller_C) == 0x000A70, "Wrong size on UGE_StunDamageSetByCaller_C"); \ + +#define DUMPER7_ASSERTS_UCommonSubTabButton_C \ +static_assert(alignof(UCommonSubTabButton_C) == 0x000010, "Wrong alignment on UCommonSubTabButton_C"); \ +static_assert(sizeof(UCommonSubTabButton_C) == 0x0007B0, "Wrong size on UCommonSubTabButton_C"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityUnlocked_C \ +static_assert(alignof(UActiveAbilityUnlocked_C) == 0x000010, "Wrong alignment on UActiveAbilityUnlocked_C"); \ +static_assert(sizeof(UActiveAbilityUnlocked_C) == 0x0007B0, "Wrong size on UActiveAbilityUnlocked_C"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityLocked_C \ +static_assert(alignof(UActiveAbilityLocked_C) == 0x000010, "Wrong alignment on UActiveAbilityLocked_C"); \ +static_assert(sizeof(UActiveAbilityLocked_C) == 0x0007B0, "Wrong size on UActiveAbilityLocked_C"); \ + +#define DUMPER7_ASSERTS_EQC_PlayerContext_C_ProvideSingleActor \ +static_assert(alignof(EQC_PlayerContext_C_ProvideSingleActor) == 0x000008, "Wrong alignment on EQC_PlayerContext_C_ProvideSingleActor"); \ +static_assert(sizeof(EQC_PlayerContext_C_ProvideSingleActor) == 0x000060, "Wrong size on EQC_PlayerContext_C_ProvideSingleActor"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, QuerierObject) == 0x000000, "Member 'EQC_PlayerContext_C_ProvideSingleActor::QuerierObject' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, QuerierActor) == 0x000008, "Member 'EQC_PlayerContext_C_ProvideSingleActor::QuerierActor' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, ResultingActor) == 0x000010, "Member 'EQC_PlayerContext_C_ProvideSingleActor::ResultingActor' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, CallFunc_MakeLiteralName_ReturnValue) == 0x000018, "Member 'EQC_PlayerContext_C_ProvideSingleActor::CallFunc_MakeLiteralName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, K2Node_DynamicCast_AsWrestler_Enemy_Character) == 0x000020, "Member 'EQC_PlayerContext_C_ProvideSingleActor::K2Node_DynamicCast_AsWrestler_Enemy_Character' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'EQC_PlayerContext_C_ProvideSingleActor::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, CallFunc_GetPlayerPawn_ReturnValue) == 0x000030, "Member 'EQC_PlayerContext_C_ProvideSingleActor::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, CallFunc_GetBlackboard_ReturnValue) == 0x000038, "Member 'EQC_PlayerContext_C_ProvideSingleActor::CallFunc_GetBlackboard_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'EQC_PlayerContext_C_ProvideSingleActor::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, CallFunc_GetValueAsObject_ReturnValue) == 0x000048, "Member 'EQC_PlayerContext_C_ProvideSingleActor::CallFunc_GetValueAsObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, K2Node_DynamicCast_AsActor) == 0x000050, "Member 'EQC_PlayerContext_C_ProvideSingleActor::K2Node_DynamicCast_AsActor' has a wrong offset!"); \ +static_assert(offsetof(EQC_PlayerContext_C_ProvideSingleActor, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'EQC_PlayerContext_C_ProvideSingleActor::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UEQC_PlayerContext_C \ +static_assert(alignof(UEQC_PlayerContext_C) == 0x000008, "Wrong alignment on UEQC_PlayerContext_C"); \ +static_assert(sizeof(UEQC_PlayerContext_C) == 0x000030, "Wrong size on UEQC_PlayerContext_C"); \ + +#define DUMPER7_ASSERTS_ABP_MassDialogRig_C \ +static_assert(alignof(ABP_MassDialogRig_C) == 0x000010, "Wrong alignment on ABP_MassDialogRig_C"); \ +static_assert(sizeof(ABP_MassDialogRig_C) == 0x000510, "Wrong size on ABP_MassDialogRig_C"); \ + +#define DUMPER7_ASSERTS_UPTD_Base_C \ +static_assert(alignof(UPTD_Base_C) == 0x000008, "Wrong alignment on UPTD_Base_C"); \ +static_assert(sizeof(UPTD_Base_C) == 0x000080, "Wrong size on UPTD_Base_C"); \ + +#define DUMPER7_ASSERTS_USecondaryAbilityLocked_C \ +static_assert(alignof(USecondaryAbilityLocked_C) == 0x000010, "Wrong alignment on USecondaryAbilityLocked_C"); \ +static_assert(sizeof(USecondaryAbilityLocked_C) == 0x0007B0, "Wrong size on USecondaryAbilityLocked_C"); \ + +#define DUMPER7_ASSERTS_UPassiveAbilityLocked_C \ +static_assert(alignof(UPassiveAbilityLocked_C) == 0x000010, "Wrong alignment on UPassiveAbilityLocked_C"); \ +static_assert(sizeof(UPassiveAbilityLocked_C) == 0x0007B0, "Wrong size on UPassiveAbilityLocked_C"); \ + +#define DUMPER7_ASSERTS_UActiveAbilityUpgradeLocked_C \ +static_assert(alignof(UActiveAbilityUpgradeLocked_C) == 0x000010, "Wrong alignment on UActiveAbilityUpgradeLocked_C"); \ +static_assert(sizeof(UActiveAbilityUpgradeLocked_C) == 0x0007B0, "Wrong size on UActiveAbilityUpgradeLocked_C"); \ + +#define DUMPER7_ASSERTS_UPassiveAbilityAcquired_C \ +static_assert(alignof(UPassiveAbilityAcquired_C) == 0x000010, "Wrong alignment on UPassiveAbilityAcquired_C"); \ +static_assert(sizeof(UPassiveAbilityAcquired_C) == 0x0007B0, "Wrong size on UPassiveAbilityAcquired_C"); \ + +#define DUMPER7_ASSERTS_UPassiveAbilityUnlocked_C \ +static_assert(alignof(UPassiveAbilityUnlocked_C) == 0x000010, "Wrong alignment on UPassiveAbilityUnlocked_C"); \ +static_assert(sizeof(UPassiveAbilityUnlocked_C) == 0x0007B0, "Wrong size on UPassiveAbilityUnlocked_C"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_ParticlePooler_C_OnExecute \ +static_assert(alignof(GC_Telekinesis_ParticlePooler_C_OnExecute) == 0x000008, "Wrong alignment on GC_Telekinesis_ParticlePooler_C_OnExecute"); \ +static_assert(sizeof(GC_Telekinesis_ParticlePooler_C_OnExecute) == 0x000108, "Wrong size on GC_Telekinesis_ParticlePooler_C_OnExecute"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, MyTarget) == 0x000000, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, Parameters) == 0x000008, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, ReturnValue) == 0x0000E0, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, CallFunc_GetOwner_ReturnValue) == 0x0000E8, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::CallFunc_GetOwner_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue) == 0x0000F0, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::CallFunc_GetWrestlerAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, CallFunc_Get_Value) == 0x0000F8, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::CallFunc_Get_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, CallFunc_Get_IsValid) == 0x000100, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::CallFunc_Get_IsValid' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_ParticlePooler_C_OnExecute, CallFunc_IsValid_ReturnValue) == 0x000101, "Member 'GC_Telekinesis_ParticlePooler_C_OnExecute::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_ParticlePooler_C \ +static_assert(alignof(AGC_Telekinesis_ParticlePooler_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_ParticlePooler_C"); \ +static_assert(sizeof(AGC_Telekinesis_ParticlePooler_C) == 0x000310, "Wrong size on AGC_Telekinesis_ParticlePooler_C"); \ +static_assert(offsetof(AGC_Telekinesis_ParticlePooler_C, DefaultSceneRoot) == 0x000308, "Member 'AGC_Telekinesis_ParticlePooler_C::DefaultSceneRoot' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_UpdateViewedItem \ +static_assert(alignof(WBP_CodexEntry_C_UpdateViewedItem) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_UpdateViewedItem"); \ +static_assert(sizeof(WBP_CodexEntry_C_UpdateViewedItem) == 0x000020, "Wrong size on WBP_CodexEntry_C_UpdateViewedItem"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, InItem) == 0x000000, "Member 'WBP_CodexEntry_C_UpdateViewedItem::InItem' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, Item) == 0x000008, "Member 'WBP_CodexEntry_C_UpdateViewedItem::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, CallFunc_IsItemViewed_ReturnValue) == 0x000010, "Member 'WBP_CodexEntry_C_UpdateViewedItem::CallFunc_IsItemViewed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, CallFunc_GetDepth_ReturnValue) == 0x000014, "Member 'WBP_CodexEntry_C_UpdateViewedItem::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000018, "Member 'WBP_CodexEntry_C_UpdateViewedItem::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_UpdateViewedItem, CallFunc_IsValid_ReturnValue) == 0x000019, "Member 'WBP_CodexEntry_C_UpdateViewedItem::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_StrikeThroughName \ +static_assert(alignof(WBP_CodexEntry_C_StrikeThroughName) == 0x000010, "Wrong alignment on WBP_CodexEntry_C_StrikeThroughName"); \ +static_assert(sizeof(WBP_CodexEntry_C_StrikeThroughName) == 0x000230, "Wrong size on WBP_CodexEntry_C_StrikeThroughName"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, InText) == 0x000000, "Member 'WBP_CodexEntry_C_StrikeThroughName::InText' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, OutText) == 0x000018, "Member 'WBP_CodexEntry_C_StrikeThroughName::OutText' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, TmpText) == 0x000030, "Member 'WBP_CodexEntry_C_StrikeThroughName::TmpText' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, NoStrike) == 0x000040, "Member 'WBP_CodexEntry_C_StrikeThroughName::NoStrike' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, Strike) == 0x000110, "Member 'WBP_CodexEntry_C_StrikeThroughName::Strike' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, CallFunc_Conv_TextToString_ReturnValue) == 0x0001E0, "Member 'WBP_CodexEntry_C_StrikeThroughName::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, CallFunc_Conv_StringToText_ReturnValue) == 0x0001F0, "Member 'WBP_CodexEntry_C_StrikeThroughName::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, CallFunc_Split_LeftS) == 0x000208, "Member 'WBP_CodexEntry_C_StrikeThroughName::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, CallFunc_Split_RightS) == 0x000218, "Member 'WBP_CodexEntry_C_StrikeThroughName::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_StrikeThroughName, CallFunc_Split_ReturnValue) == 0x000228, "Member 'WBP_CodexEntry_C_StrikeThroughName::CallFunc_Split_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_SetViewCategory \ +static_assert(alignof(WBP_CodexEntry_C_SetViewCategory) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_SetViewCategory"); \ +static_assert(sizeof(WBP_CodexEntry_C_SetViewCategory) == 0x000048, "Wrong size on WBP_CodexEntry_C_SetViewCategory"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, InItem) == 0x000000, "Member 'WBP_CodexEntry_C_SetViewCategory::InItem' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, Item) == 0x000008, "Member 'WBP_CodexEntry_C_SetViewCategory::Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, Temp_int_Array_Index_Variable) == 0x000010, "Member 'WBP_CodexEntry_C_SetViewCategory::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_IsValid_ReturnValue) == 0x000014, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_GetItems_ReturnValue) == 0x000018, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_GetItems_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_GetDepth_ReturnValue) == 0x000030, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_IsItemViewed_ReturnValue) == 0x000034, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_IsItemViewed_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000035, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_Array_Length_ReturnValue) == 0x000038, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, Temp_int_Loop_Counter_Variable) == 0x00003C, "Member 'WBP_CodexEntry_C_SetViewCategory::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_Less_IntInt_ReturnValue) == 0x000040, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetViewCategory, CallFunc_Add_IntInt_ReturnValue) == 0x000044, "Member 'WBP_CodexEntry_C_SetViewCategory::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_SetHighlightedVisuals \ +static_assert(alignof(WBP_CodexEntry_C_SetHighlightedVisuals) == 0x000001, "Wrong alignment on WBP_CodexEntry_C_SetHighlightedVisuals"); \ +static_assert(sizeof(WBP_CodexEntry_C_SetHighlightedVisuals) == 0x000001, "Wrong size on WBP_CodexEntry_C_SetHighlightedVisuals"); \ +static_assert(offsetof(WBP_CodexEntry_C_SetHighlightedVisuals, IsSelected_0) == 0x000000, "Member 'WBP_CodexEntry_C_SetHighlightedVisuals::IsSelected_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_ReceiveOnCodexUpdate \ +static_assert(alignof(WBP_CodexEntry_C_ReceiveOnCodexUpdate) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_ReceiveOnCodexUpdate"); \ +static_assert(sizeof(WBP_CodexEntry_C_ReceiveOnCodexUpdate) == 0x000008, "Wrong size on WBP_CodexEntry_C_ReceiveOnCodexUpdate"); \ +static_assert(offsetof(WBP_CodexEntry_C_ReceiveOnCodexUpdate, ItemContent) == 0x000000, "Member 'WBP_CodexEntry_C_ReceiveOnCodexUpdate::ItemContent' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_OnFocusReceived \ +static_assert(alignof(WBP_CodexEntry_C_OnFocusReceived) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_OnFocusReceived"); \ +static_assert(sizeof(WBP_CodexEntry_C_OnFocusReceived) == 0x0001B0, "Wrong size on WBP_CodexEntry_C_OnFocusReceived"); \ +static_assert(offsetof(WBP_CodexEntry_C_OnFocusReceived, MyGeometry) == 0x000000, "Member 'WBP_CodexEntry_C_OnFocusReceived::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_OnFocusReceived, InFocusEvent) == 0x000038, "Member 'WBP_CodexEntry_C_OnFocusReceived::InFocusEvent' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_OnFocusReceived, ReturnValue) == 0x000040, "Member 'WBP_CodexEntry_C_OnFocusReceived::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_OnFocusReceived, CallFunc_Handled_ReturnValue) == 0x0000F8, "Member 'WBP_CodexEntry_C_OnFocusReceived::CallFunc_Handled_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_Get_Title_Text \ +static_assert(alignof(WBP_CodexEntry_C_Get_Title_Text) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_Get_Title_Text"); \ +static_assert(sizeof(WBP_CodexEntry_C_Get_Title_Text) == 0x000018, "Wrong size on WBP_CodexEntry_C_Get_Title_Text"); \ +static_assert(offsetof(WBP_CodexEntry_C_Get_Title_Text, ReturnValue) == 0x000000, "Member 'WBP_CodexEntry_C_Get_Title_Text::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_ExpandCodexAudio \ +static_assert(alignof(WBP_CodexEntry_C_ExpandCodexAudio) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_ExpandCodexAudio"); \ +static_assert(sizeof(WBP_CodexEntry_C_ExpandCodexAudio) == 0x000038, "Wrong size on WBP_CodexEntry_C_ExpandCodexAudio"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, Index_0) == 0x000000, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::Index_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, Temp_bool_Variable) == 0x000001, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, Temp_object_Variable) == 0x000008, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, Temp_object_Variable_1) == 0x000010, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, Temp_delegate_Variable) == 0x000018, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, K2Node_Select_Default) == 0x000028, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::K2Node_Select_Default' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, CallFunc_GetDepth_ReturnValue) == 0x000030, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExpandCodexAudio, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000034, "Member 'WBP_CodexEntry_C_ExpandCodexAudio::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry \ +static_assert(alignof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry) == 0x000008, "Wrong alignment on WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry"); \ +static_assert(sizeof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry) == 0x0000F8, "Wrong size on WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, EntryPoint) == 0x000000, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, K2Node_CustomEvent_IsSelected) == 0x000004, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::K2Node_CustomEvent_IsSelected' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, K2Node_Event_ItemContent) == 0x000008, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::K2Node_Event_ItemContent' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, K2Node_Event_bIsSelected) == 0x000010, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::K2Node_Event_bIsSelected' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, K2Node_Event_bIsExpanded) == 0x000011, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::K2Node_Event_bIsExpanded' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_PlayAnimationReverse_ReturnValue) == 0x000018, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_PlayAnimationReverse_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_PlayAnimationForward_ReturnValue) == 0x000020, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, Temp_bool_Has_Been_Initd_Variable) == 0x000028, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_GetItem_ReturnValue) == 0x000030, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_GetItem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_GetName_ReturnValue) == 0x000038, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_GetName_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_StrikeThroughName_OutText) == 0x000050, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_StrikeThroughName_OutText' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_GetDepth_ReturnValue) == 0x000068, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_GetDepth_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x00006C, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_Multiply_IntInt_ReturnValue) == 0x000070, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_Multiply_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_Conv_IntToDouble_ReturnValue) == 0x000078, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_SetExpanded_ReturnValue) == 0x000080, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_SetExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, Temp_delegate_Variable) == 0x000084, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_IsExpanded_ReturnValue) == 0x000094, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_IsExpanded_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_NotEqual_BoolBool_ReturnValue) == 0x000095, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_NotEqual_BoolBool_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_IsExpanded_ReturnValue_1) == 0x000096, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_IsExpanded_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, K2Node_MakeStruct_SlateFontInfo) == 0x000098, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::K2Node_MakeStruct_SlateFontInfo' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, Temp_bool_IsClosed_Variable) == 0x0000F0, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry, CallFunc_SetWidthOverride_InWidthOverride_ImplicitCast) == 0x0000F4, "Member 'WBP_CodexEntry_C_ExecuteUbergraph_WBP_CodexEntry::CallFunc_SetWidthOverride_InWidthOverride_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_BP_OnItemSelectionChanged \ +static_assert(alignof(WBP_CodexEntry_C_BP_OnItemSelectionChanged) == 0x000001, "Wrong alignment on WBP_CodexEntry_C_BP_OnItemSelectionChanged"); \ +static_assert(sizeof(WBP_CodexEntry_C_BP_OnItemSelectionChanged) == 0x000001, "Wrong size on WBP_CodexEntry_C_BP_OnItemSelectionChanged"); \ +static_assert(offsetof(WBP_CodexEntry_C_BP_OnItemSelectionChanged, bIsSelected) == 0x000000, "Member 'WBP_CodexEntry_C_BP_OnItemSelectionChanged::bIsSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CodexEntry_C_BP_OnItemExpansionChanged \ +static_assert(alignof(WBP_CodexEntry_C_BP_OnItemExpansionChanged) == 0x000001, "Wrong alignment on WBP_CodexEntry_C_BP_OnItemExpansionChanged"); \ +static_assert(sizeof(WBP_CodexEntry_C_BP_OnItemExpansionChanged) == 0x000001, "Wrong size on WBP_CodexEntry_C_BP_OnItemExpansionChanged"); \ +static_assert(offsetof(WBP_CodexEntry_C_BP_OnItemExpansionChanged, bIsExpanded) == 0x000000, "Member 'WBP_CodexEntry_C_BP_OnItemExpansionChanged::bIsExpanded' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CodexEntry_C \ +static_assert(alignof(UWBP_CodexEntry_C) == 0x000008, "Wrong alignment on UWBP_CodexEntry_C"); \ +static_assert(sizeof(UWBP_CodexEntry_C) == 0x0003A0, "Wrong size on UWBP_CodexEntry_C"); \ +static_assert(offsetof(UWBP_CodexEntry_C, UberGraphFrame) == 0x000338, "Member 'UWBP_CodexEntry_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, RotateArrow) == 0x000340, "Member 'UWBP_CodexEntry_C::RotateArrow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, DialogueIcon) == 0x000348, "Member 'UWBP_CodexEntry_C::DialogueIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, ExpandButton) == 0x000350, "Member 'UWBP_CodexEntry_C::ExpandButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, FocusBar) == 0x000358, "Member 'UWBP_CodexEntry_C::FocusBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, FocusBorder) == 0x000360, "Member 'UWBP_CodexEntry_C::FocusBorder' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, FocusOffsetLine) == 0x000368, "Member 'UWBP_CodexEntry_C::FocusOffsetLine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, NewItemIcon) == 0x000370, "Member 'UWBP_CodexEntry_C::NewItemIcon' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, Pad) == 0x000378, "Member 'UWBP_CodexEntry_C::Pad' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, Title) == 0x000380, "Member 'UWBP_CodexEntry_C::Title' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, CategoryClickedDispatcher) == 0x000388, "Member 'UWBP_CodexEntry_C::CategoryClickedDispatcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CodexEntry_C, Item_Content) == 0x000398, "Member 'UWBP_CodexEntry_C::Item_Content' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UGE_NoClan_C \ +static_assert(alignof(UGE_NoClan_C) == 0x000008, "Wrong alignment on UGE_NoClan_C"); \ +static_assert(sizeof(UGE_NoClan_C) == 0x000A70, "Wrong size on UGE_NoClan_C"); \ + +#define DUMPER7_ASSERTS_UWBP_QuestEntryWidget_C \ +static_assert(alignof(UWBP_QuestEntryWidget_C) == 0x000008, "Wrong alignment on UWBP_QuestEntryWidget_C"); \ +static_assert(sizeof(UWBP_QuestEntryWidget_C) == 0x000348, "Wrong size on UWBP_QuestEntryWidget_C"); \ + +#define DUMPER7_ASSERTS_WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription \ +static_assert(alignof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription) == 0x000004, "Wrong alignment on WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription"); \ +static_assert(sizeof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription) == 0x000008, "Wrong size on WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription"); \ +static_assert(offsetof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription, EntryPoint) == 0x000000, "Member 'WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription, Temp_bool_Variable) == 0x000004, "Member 'WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription::Temp_bool_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription, Temp_byte_Variable) == 0x000005, "Member 'WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription, Temp_byte_Variable_1) == 0x000006, "Member 'WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription::Temp_byte_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription, K2Node_Select_Default) == 0x000007, "Member 'WBP_MarkerDescription_C_ExecuteUbergraph_WBP_MarkerDescription::K2Node_Select_Default' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MarkerDescription_C \ +static_assert(alignof(UWBP_MarkerDescription_C) == 0x000008, "Wrong alignment on UWBP_MarkerDescription_C"); \ +static_assert(sizeof(UWBP_MarkerDescription_C) == 0x000330, "Wrong size on UWBP_MarkerDescription_C"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, UberGraphFrame) == 0x0002E0, "Member 'UWBP_MarkerDescription_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, TextDivisorSB) == 0x0002E8, "Member 'UWBP_MarkerDescription_C::TextDivisorSB' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, TitleText) == 0x0002F0, "Member 'UWBP_MarkerDescription_C::TitleText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, DescriptionText) == 0x000308, "Member 'UWBP_MarkerDescription_C::DescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, TextDivisorVisibility) == 0x000320, "Member 'UWBP_MarkerDescription_C::TextDivisorVisibility' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MarkerDescription_C, TextDivisorScale) == 0x000328, "Member 'UWBP_MarkerDescription_C::TextDivisorScale' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonCostumeButtonStyle_C \ +static_assert(alignof(UCommonCostumeButtonStyle_C) == 0x000010, "Wrong alignment on UCommonCostumeButtonStyle_C"); \ +static_assert(sizeof(UCommonCostumeButtonStyle_C) == 0x0007B0, "Wrong size on UCommonCostumeButtonStyle_C"); \ + +#define DUMPER7_ASSERTS_UGE_CarAlarmCoolDown_C \ +static_assert(alignof(UGE_CarAlarmCoolDown_C) == 0x000008, "Wrong alignment on UGE_CarAlarmCoolDown_C"); \ +static_assert(sizeof(UGE_CarAlarmCoolDown_C) == 0x000A70, "Wrong size on UGE_CarAlarmCoolDown_C"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw \ +static_assert(alignof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw) == 0x0000F0, "Wrong size on GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw, EntryPoint) == 0x000000, "Member 'GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw, K2Node_Event_MyTarget) == 0x000008, "Member 'GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw::K2Node_Event_MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw, K2Node_Event_EventType) == 0x000010, "Member 'GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw::K2Node_Event_EventType' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw, K2Node_Event_Parameters) == 0x000018, "Member 'GC_Telekinesis_Throw_C_ExecuteUbergraph_GC_Telekinesis_Throw::K2Node_Event_Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_K2_HandleGameplayCue \ +static_assert(alignof(GC_Telekinesis_Throw_C_K2_HandleGameplayCue) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_K2_HandleGameplayCue"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_K2_HandleGameplayCue) == 0x0000E8, "Wrong size on GC_Telekinesis_Throw_C_K2_HandleGameplayCue"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_K2_HandleGameplayCue, MyTarget) == 0x000000, "Member 'GC_Telekinesis_Throw_C_K2_HandleGameplayCue::MyTarget' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_K2_HandleGameplayCue, EventType) == 0x000008, "Member 'GC_Telekinesis_Throw_C_K2_HandleGameplayCue::EventType' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_K2_HandleGameplayCue, Parameters) == 0x000010, "Member 'GC_Telekinesis_Throw_C_K2_HandleGameplayCue::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_OnActiveAudio \ +static_assert(alignof(GC_Telekinesis_Throw_C_OnActiveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_OnActiveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_OnActiveAudio) == 0x000230, "Wrong size on GC_Telekinesis_Throw_C_OnActiveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x0000E8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x0000EC, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x0000F0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000108, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000110, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000118, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000138, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_Location) == 0x000158, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_Normal) == 0x000170, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_Instigator) == 0x000188, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x000190, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x000198, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0001A0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0001A8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0001AC, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0001B0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0001B8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_GetDialogueInfo_ReturnValue) == 0x0001C0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_GetDialogueInfo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x0001C8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, K2Node_DynamicCast_bSuccess) == 0x0001D8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, K2Node_MakeArray_Array) == 0x0001E0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::K2Node_MakeArray_Array' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_GetAudioComponent_AudioComponent) == 0x0001F0, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, K2Node_MakeArray_Array_1) == 0x0001F8, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::K2Node_MakeArray_Array_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, Temp_delegate_Variable) == 0x000208, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000218, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_MakeLiteralGameplayTag_ReturnValue) == 0x000220, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_MakeLiteralGameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnActiveAudio, CallFunc_IsValid_ReturnValue) == 0x000228, "Member 'GC_Telekinesis_Throw_C_OnActiveAudio::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_OnRemoveAudio \ +static_assert(alignof(GC_Telekinesis_Throw_C_OnRemoveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_OnRemoveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_OnRemoveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Throw_C_OnRemoveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnRemoveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Throw_C_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Throw_C_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_OnRemoveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Throw_C_OnRemoveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_Spawn_Particle_FX \ +static_assert(alignof(GC_Telekinesis_Throw_C_Spawn_Particle_FX) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_Spawn_Particle_FX"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_Spawn_Particle_FX) == 0x000020, "Wrong size on GC_Telekinesis_Throw_C_Spawn_Particle_FX"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_Spawn_Particle_FX, CallFunc_K2_GetActorLocation_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Throw_C_Spawn_Particle_FX::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_Spawn_Particle_FX, CallFunc_SpawnSystemAtLocation_ReturnValue) == 0x000018, "Member 'GC_Telekinesis_Throw_C_Spawn_Particle_FX::CallFunc_SpawnSystemAtLocation_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Throw_C_WhileActiveAudio \ +static_assert(alignof(GC_Telekinesis_Throw_C_WhileActiveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Throw_C_WhileActiveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Throw_C_WhileActiveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Throw_C_WhileActiveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_WhileActiveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Throw_C_WhileActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_WhileActiveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Throw_C_WhileActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Throw_C_WhileActiveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Throw_C_WhileActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_Throw_C \ +static_assert(alignof(AGC_Telekinesis_Throw_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_Throw_C"); \ +static_assert(sizeof(AGC_Telekinesis_Throw_C) == 0x0003E0, "Wrong size on AGC_Telekinesis_Throw_C"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, UberGraphFrame) == 0x000308, "Member 'AGC_Telekinesis_Throw_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, DefaultSceneRoot) == 0x000310, "Member 'AGC_Telekinesis_Throw_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, Target) == 0x000318, "Member 'AGC_Telekinesis_Throw_C::Target' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, InitialDistance) == 0x000320, "Member 'AGC_Telekinesis_Throw_C::InitialDistance' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, DebugFX) == 0x000328, "Member 'AGC_Telekinesis_Throw_C::DebugFX' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, SpawnedAudio) == 0x000330, "Member 'AGC_Telekinesis_Throw_C::SpawnedAudio' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, AudioThrowableTypes) == 0x000338, "Member 'AGC_Telekinesis_Throw_C::AudioThrowableTypes' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, FX_Throwable_Types) == 0x000388, "Member 'AGC_Telekinesis_Throw_C::FX_Throwable_Types' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Throw_C, Falling_Particle_FX) == 0x0003D8, "Member 'AGC_Telekinesis_Throw_C::Falling_Particle_FX' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BPI_Movable_C_Moveables_Interact \ +static_assert(alignof(BPI_Movable_C_Moveables_Interact) == 0x000008, "Wrong alignment on BPI_Movable_C_Moveables_Interact"); \ +static_assert(sizeof(BPI_Movable_C_Moveables_Interact) == 0x000018, "Wrong size on BPI_Movable_C_Moveables_Interact"); \ +static_assert(offsetof(BPI_Movable_C_Moveables_Interact, Hit_Causer_Location) == 0x000000, "Member 'BPI_Movable_C_Moveables_Interact::Hit_Causer_Location' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_IBPI_Movable_C \ +static_assert(alignof(IBPI_Movable_C) == 0x000001, "Wrong alignment on IBPI_Movable_C"); \ +static_assert(sizeof(IBPI_Movable_C) == 0x000001, "Wrong size on IBPI_Movable_C"); \ + +#define DUMPER7_ASSERTS_W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget \ +static_assert(alignof(W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong alignment on W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(sizeof(W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget) == 0x000008, "Wrong size on W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget"); \ +static_assert(offsetof(W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget, ReturnValue) == 0x000000, "Member 'W_SettingsListEntry_Missing_C_GetPrimaryGamepadFocusWidget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Missing_C \ +static_assert(alignof(UW_SettingsListEntry_Missing_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_Missing_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Missing_C) == 0x000330, "Wrong size on UW_SettingsListEntry_Missing_C"); \ +static_assert(offsetof(UW_SettingsListEntry_Missing_C, AnimBoundBorder) == 0x000328, "Member 'UW_SettingsListEntry_Missing_C::AnimBoundBorder' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsListEntry_Header_C \ +static_assert(alignof(UW_SettingsListEntry_Header_C) == 0x000008, "Wrong alignment on UW_SettingsListEntry_Header_C"); \ +static_assert(sizeof(UW_SettingsListEntry_Header_C) == 0x000328, "Wrong size on UW_SettingsListEntry_Header_C"); \ + +#define DUMPER7_ASSERTS_TCR_RichWrestlerActionWidget_C_SetOverrideKey \ +static_assert(alignof(TCR_RichWrestlerActionWidget_C_SetOverrideKey) == 0x000008, "Wrong alignment on TCR_RichWrestlerActionWidget_C_SetOverrideKey"); \ +static_assert(sizeof(TCR_RichWrestlerActionWidget_C_SetOverrideKey) == 0x000018, "Wrong size on TCR_RichWrestlerActionWidget_C_SetOverrideKey"); \ +static_assert(offsetof(TCR_RichWrestlerActionWidget_C_SetOverrideKey, NewKey) == 0x000000, "Member 'TCR_RichWrestlerActionWidget_C_SetOverrideKey::NewKey' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_RichWrestlerActionWidget_C \ +static_assert(alignof(UTCR_RichWrestlerActionWidget_C) == 0x000008, "Wrong alignment on UTCR_RichWrestlerActionWidget_C"); \ +static_assert(sizeof(UTCR_RichWrestlerActionWidget_C) == 0x0002F0, "Wrong size on UTCR_RichWrestlerActionWidget_C"); \ +static_assert(offsetof(UTCR_RichWrestlerActionWidget_C, WrestlerActionWidget_0) == 0x0002E8, "Member 'UTCR_RichWrestlerActionWidget_C::WrestlerActionWidget_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator \ +static_assert(alignof(W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator) == 0x000004, "Wrong alignment on W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator"); \ +static_assert(sizeof(W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator) == 0x000004, "Wrong size on W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator"); \ +static_assert(offsetof(W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator, EntryPoint) == 0x000000, "Member 'W_SettingsRotator_C_ExecuteUbergraph_W_SettingsRotator::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UW_SettingsRotator_C \ +static_assert(alignof(UW_SettingsRotator_C) == 0x000010, "Wrong alignment on UW_SettingsRotator_C"); \ +static_assert(sizeof(UW_SettingsRotator_C) == 0x001610, "Wrong size on UW_SettingsRotator_C"); \ +static_assert(offsetof(UW_SettingsRotator_C, UberGraphFrame) == 0x0015E0, "Member 'UW_SettingsRotator_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsRotator_C, OnRotatorFocused) == 0x0015E8, "Member 'UW_SettingsRotator_C::OnRotatorFocused' has a wrong offset!"); \ +static_assert(offsetof(UW_SettingsRotator_C, OnRotatorUnfocus) == 0x0015F8, "Member 'UW_SettingsRotator_C::OnRotatorUnfocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_USelectedButtonFontStyle_C \ +static_assert(alignof(USelectedButtonFontStyle_C) == 0x000010, "Wrong alignment on USelectedButtonFontStyle_C"); \ +static_assert(sizeof(USelectedButtonFontStyle_C) == 0x0001B0, "Wrong size on USelectedButtonFontStyle_C"); \ + +#define DUMPER7_ASSERTS_UW_GameSettingsDetailView_C \ +static_assert(alignof(UW_GameSettingsDetailView_C) == 0x000008, "Wrong alignment on UW_GameSettingsDetailView_C"); \ +static_assert(sizeof(UW_GameSettingsDetailView_C) == 0x000398, "Wrong size on UW_GameSettingsDetailView_C"); \ + +#define DUMPER7_ASSERTS_UCommonMainMenuButton_C \ +static_assert(alignof(UCommonMainMenuButton_C) == 0x000010, "Wrong alignment on UCommonMainMenuButton_C"); \ +static_assert(sizeof(UCommonMainMenuButton_C) == 0x0007B0, "Wrong size on UCommonMainMenuButton_C"); \ + +#define DUMPER7_ASSERTS_UBP_SettingsImageDecorator_C \ +static_assert(alignof(UBP_SettingsImageDecorator_C) == 0x000008, "Wrong alignment on UBP_SettingsImageDecorator_C"); \ +static_assert(sizeof(UBP_SettingsImageDecorator_C) == 0x000030, "Wrong size on UBP_SettingsImageDecorator_C"); \ + +#define DUMPER7_ASSERTS_UDefaultRPGMenuFont_C \ +static_assert(alignof(UDefaultRPGMenuFont_C) == 0x000010, "Wrong alignment on UDefaultRPGMenuFont_C"); \ +static_assert(sizeof(UDefaultRPGMenuFont_C) == 0x0001B0, "Wrong size on UDefaultRPGMenuFont_C"); \ + +#define DUMPER7_ASSERTS_WBP_MapMasqueradeWidget_C_PreConstruct \ +static_assert(alignof(WBP_MapMasqueradeWidget_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_MapMasqueradeWidget_C_PreConstruct"); \ +static_assert(sizeof(WBP_MapMasqueradeWidget_C_PreConstruct) == 0x000001, "Wrong size on WBP_MapMasqueradeWidget_C_PreConstruct"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_MapMasqueradeWidget_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget \ +static_assert(alignof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget) == 0x000008, "Wrong alignment on WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget"); \ +static_assert(sizeof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget) == 0x000048, "Wrong size on WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget, EntryPoint) == 0x000000, "Member 'WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget, CallFunc_MakeVector2D_ReturnValue) == 0x000008, "Member 'WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget::CallFunc_MakeVector2D_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget, K2Node_Event_IsDesignTime) == 0x000018, "Member 'WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget::K2Node_Event_IsDesignTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget, CallFunc_IsValid_ReturnValue) == 0x000040, "Member 'WBP_MapMasqueradeWidget_C_ExecuteUbergraph_WBP_MapMasqueradeWidget::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MapMasqueradeWidget_C \ +static_assert(alignof(UWBP_MapMasqueradeWidget_C) == 0x000008, "Wrong alignment on UWBP_MapMasqueradeWidget_C"); \ +static_assert(sizeof(UWBP_MapMasqueradeWidget_C) == 0x0003F8, "Wrong size on UWBP_MapMasqueradeWidget_C"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, UberGraphFrame) == 0x0002E8, "Member 'UWBP_MapMasqueradeWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, Divider) == 0x0002F0, "Member 'UWBP_MapMasqueradeWidget_C::Divider' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, MasqueradeLevelDescriptionText) == 0x0002F8, "Member 'UWBP_MapMasqueradeWidget_C::MasqueradeLevelDescriptionText' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, WidgetPanel) == 0x000300, "Member 'UWBP_MapMasqueradeWidget_C::WidgetPanel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, DividerHorizontalOffset) == 0x000308, "Member 'UWBP_MapMasqueradeWidget_C::DividerHorizontalOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, MasqueradeTitleFont) == 0x000310, "Member 'UWBP_MapMasqueradeWidget_C::MasqueradeTitleFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, MasqueradeDescritionFont) == 0x000368, "Member 'UWBP_MapMasqueradeWidget_C::MasqueradeDescritionFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, DebugMasqueradeLevel) == 0x0003C0, "Member 'UWBP_MapMasqueradeWidget_C::DebugMasqueradeLevel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, MasqueradeTitleExample) == 0x0003C8, "Member 'UWBP_MapMasqueradeWidget_C::MasqueradeTitleExample' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapMasqueradeWidget_C, MasqueradeDescriptionExample) == 0x0003E0, "Member 'UWBP_MapMasqueradeWidget_C::MasqueradeDescriptionExample' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonButton_C \ +static_assert(alignof(UCommonButton_C) == 0x000010, "Wrong alignment on UCommonButton_C"); \ +static_assert(sizeof(UCommonButton_C) == 0x0007B0, "Wrong size on UCommonButton_C"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_Update_Lengend_Icons \ +static_assert(alignof(WBP_MapIconLegendWidget_C_Update_Lengend_Icons) == 0x000001, "Wrong alignment on WBP_MapIconLegendWidget_C_Update_Lengend_Icons"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_Update_Lengend_Icons) == 0x000003, "Wrong size on WBP_MapIconLegendWidget_C_Update_Lengend_Icons"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_Update_Lengend_Icons, CallFunc_IsPlayerFabien_Return) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_Update_Lengend_Icons::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_Update_Lengend_Icons, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x000001, "Member 'WBP_MapIconLegendWidget_C_Update_Lengend_Icons::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_Update_Lengend_Icons, CallFunc_EqualEqual_GameplayTag_ReturnValue_1) == 0x000002, "Member 'WBP_MapIconLegendWidget_C_Update_Lengend_Icons::CallFunc_EqualEqual_GameplayTag_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ShowMapIconsWithTag \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag) == 0x000004, "Wrong alignment on WBP_MapIconLegendWidget_C_ShowMapIconsWithTag"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag) == 0x000024, "Wrong size on WBP_MapIconLegendWidget_C_ShowMapIconsWithTag"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, GT) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::GT' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, Temp_int_Loop_Counter_Variable) == 0x00000C, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, CallFunc_Array_Get_Item) == 0x000014, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, CallFunc_Array_Length_ReturnValue) == 0x00001C, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsWithTag, CallFunc_Less_IntInt_ReturnValue) == 0x000020, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsWithTag::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ShowMapIconsNone \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ShowMapIconsNone) == 0x000004, "Wrong alignment on WBP_MapIconLegendWidget_C_ShowMapIconsNone"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ShowMapIconsNone) == 0x00001C, "Wrong size on WBP_MapIconLegendWidget_C_ShowMapIconsNone"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, CallFunc_Array_Length_ReturnValue) == 0x00000C, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, CallFunc_Array_Get_Item) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsNone, CallFunc_Less_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsNone::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ShowMapIconsAll \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ShowMapIconsAll) == 0x000004, "Wrong alignment on WBP_MapIconLegendWidget_C_ShowMapIconsAll"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ShowMapIconsAll) == 0x00001C, "Wrong size on WBP_MapIconLegendWidget_C_ShowMapIconsAll"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, CallFunc_Array_Length_ReturnValue) == 0x00000C, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, CallFunc_Array_Get_Item) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowMapIconsAll, CallFunc_Less_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_ShowMapIconsAll::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag) == 0x000008, "Wrong alignment on WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag) == 0x000030, "Wrong size on WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_GetChildrenCount_ReturnValue) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_IsGameplayTagValid_ReturnValue) == 0x000004, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_IsGameplayTagValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_Subtract_IntInt_ReturnValue) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, Temp_int_Variable) == 0x00000C, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_Add_IntInt_ReturnValue) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_GetChildAt_ReturnValue) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget) == 0x000020, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000029, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x00002A, "Member 'WBP_MapIconLegendWidget_C_ShowLegendIconsWithTag::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ShowAllLegendIcons \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons) == 0x000008, "Wrong alignment on WBP_MapIconLegendWidget_C_ShowAllLegendIcons"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons) == 0x000030, "Wrong size on WBP_MapIconLegendWidget_C_ShowAllLegendIcons"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, Temp_int_Variable) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, CallFunc_GetChildAt_ReturnValue) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, CallFunc_GetChildrenCount_ReturnValue) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, CallFunc_Subtract_IntInt_ReturnValue) == 0x000024, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000028, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ShowAllLegendIcons, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WBP_MapIconLegendWidget_C_ShowAllLegendIcons::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_HideAllLegendIcons \ +static_assert(alignof(WBP_MapIconLegendWidget_C_HideAllLegendIcons) == 0x000008, "Wrong alignment on WBP_MapIconLegendWidget_C_HideAllLegendIcons"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_HideAllLegendIcons) == 0x000030, "Wrong size on WBP_MapIconLegendWidget_C_HideAllLegendIcons"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, Temp_int_Variable) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, CallFunc_GetChildAt_ReturnValue) == 0x000008, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, CallFunc_GetChildrenCount_ReturnValue) == 0x000010, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, CallFunc_Subtract_IntInt_ReturnValue) == 0x000024, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, CallFunc_LessEqual_IntInt_ReturnValue) == 0x000028, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_HideAllLegendIcons, CallFunc_Add_IntInt_ReturnValue) == 0x00002C, "Member 'WBP_MapIconLegendWidget_C_HideAllLegendIcons::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget \ +static_assert(alignof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget) == 0x000008, "Wrong alignment on WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget"); \ +static_assert(sizeof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget) == 0x000050, "Wrong size on WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, EntryPoint) == 0x000000, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, Temp_struct_Variable) == 0x000004, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::Temp_struct_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, Temp_struct_Variable_1) == 0x00000C, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::Temp_struct_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, Temp_int_Variable) == 0x000014, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_Add_IntInt_ReturnValue) == 0x000018, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_GetChildAt_ReturnValue) == 0x000020, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_Array_Add_ReturnValue) == 0x000028, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget) == 0x000030, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::K2Node_DynamicCast_AsWBP_Single_Icon_Legend_Widget' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_Array_Add_ReturnValue_1) == 0x00003C, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_GetChildrenCount_ReturnValue) == 0x000040, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_Array_Add_ReturnValue_2) == 0x000044, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_Subtract_IntInt_ReturnValue) == 0x000048, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget, CallFunc_LessEqual_IntInt_ReturnValue) == 0x00004C, "Member 'WBP_MapIconLegendWidget_C_ExecuteUbergraph_WBP_MapIconLegendWidget::CallFunc_LessEqual_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MapIconLegendWidget_C \ +static_assert(alignof(UWBP_MapIconLegendWidget_C) == 0x000008, "Wrong alignment on UWBP_MapIconLegendWidget_C"); \ +static_assert(sizeof(UWBP_MapIconLegendWidget_C) == 0x000418, "Wrong size on UWBP_MapIconLegendWidget_C"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, UberGraphFrame) == 0x0002D8, "Member 'UWBP_MapIconLegendWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Choleric) == 0x0002E0, "Member 'UWBP_MapIconLegendWidget_C::Choleric' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, IconLegendsContainer) == 0x0002E8, "Member 'UWBP_MapIconLegendWidget_C::IconLegendsContainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Image_116) == 0x0002F0, "Member 'UWBP_MapIconLegendWidget_C::Image_116' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Melancholic) == 0x0002F8, "Member 'UWBP_MapIconLegendWidget_C::Melancholic' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Phlegmatic) == 0x000300, "Member 'UWBP_MapIconLegendWidget_C::Phlegmatic' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Quests) == 0x000308, "Member 'UWBP_MapIconLegendWidget_C::Quests' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Sanguine) == 0x000310, "Member 'UWBP_MapIconLegendWidget_C::Sanguine' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, SideQuests) == 0x000318, "Member 'UWBP_MapIconLegendWidget_C::SideQuests' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, Trainer) == 0x000320, "Member 'UWBP_MapIconLegendWidget_C::Trainer' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, DividerHorizontalOffset) == 0x000328, "Member 'UWBP_MapIconLegendWidget_C::DividerHorizontalOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, MapLegendExample) == 0x000330, "Member 'UWBP_MapIconLegendWidget_C::MapLegendExample' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, MapLegendTextFont) == 0x000348, "Member 'UWBP_MapIconLegendWidget_C::MapLegendTextFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, CategoriesTextFont) == 0x0003A0, "Member 'UWBP_MapIconLegendWidget_C::CategoriesTextFont' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, CurrentFilterIndex) == 0x0003F8, "Member 'UWBP_MapIconLegendWidget_C::CurrentFilterIndex' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, CurrentFilterGT) == 0x0003FC, "Member 'UWBP_MapIconLegendWidget_C::CurrentFilterGT' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapIconLegendWidget_C, AvailableMapIconsGameTags) == 0x000408, "Member 'UWBP_MapIconLegendWidget_C::AvailableMapIconsGameTags' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SingleIconLegendWidget_C_SetCategoryFont \ +static_assert(alignof(WBP_SingleIconLegendWidget_C_SetCategoryFont) == 0x000008, "Wrong alignment on WBP_SingleIconLegendWidget_C_SetCategoryFont"); \ +static_assert(sizeof(WBP_SingleIconLegendWidget_C_SetCategoryFont) == 0x000058, "Wrong size on WBP_SingleIconLegendWidget_C_SetCategoryFont"); \ +static_assert(offsetof(WBP_SingleIconLegendWidget_C_SetCategoryFont, InFont) == 0x000000, "Member 'WBP_SingleIconLegendWidget_C_SetCategoryFont::InFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget \ +static_assert(alignof(WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget) == 0x000008, "Wrong alignment on WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget"); \ +static_assert(sizeof(WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget) == 0x000060, "Wrong size on WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget"); \ +static_assert(offsetof(WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget, EntryPoint) == 0x000000, "Member 'WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget, K2Node_CustomEvent_InFont) == 0x000008, "Member 'WBP_SingleIconLegendWidget_C_ExecuteUbergraph_WBP_SingleIconLegendWidget::K2Node_CustomEvent_InFont' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_SingleIconLegendWidget_C \ +static_assert(alignof(UWBP_SingleIconLegendWidget_C) == 0x000008, "Wrong alignment on UWBP_SingleIconLegendWidget_C"); \ +static_assert(sizeof(UWBP_SingleIconLegendWidget_C) == 0x000308, "Wrong size on UWBP_SingleIconLegendWidget_C"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_SingleIconLegendWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, CategoryFriendlyName) == 0x0002D0, "Member 'UWBP_SingleIconLegendWidget_C::CategoryFriendlyName' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, CategoryIconToShow) == 0x0002D8, "Member 'UWBP_SingleIconLegendWidget_C::CategoryIconToShow' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, IconTexture) == 0x0002E0, "Member 'UWBP_SingleIconLegendWidget_C::IconTexture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, Label) == 0x0002E8, "Member 'UWBP_SingleIconLegendWidget_C::Label' has a wrong offset!"); \ +static_assert(offsetof(UWBP_SingleIconLegendWidget_C, IconGamePlayTag) == 0x000300, "Member 'UWBP_SingleIconLegendWidget_C::IconGamePlayTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyle_ConfirmationTittlePrompt_C \ +static_assert(alignof(UCommonTextStyle_ConfirmationTittlePrompt_C) == 0x000010, "Wrong alignment on UCommonTextStyle_ConfirmationTittlePrompt_C"); \ +static_assert(sizeof(UCommonTextStyle_ConfirmationTittlePrompt_C) == 0x0001B0, "Wrong size on UCommonTextStyle_ConfirmationTittlePrompt_C"); \ + +#define DUMPER7_ASSERTS_WBP_UI_ButtonCentralHighlight_C_PreConstruct \ +static_assert(alignof(WBP_UI_ButtonCentralHighlight_C_PreConstruct) == 0x000001, "Wrong alignment on WBP_UI_ButtonCentralHighlight_C_PreConstruct"); \ +static_assert(sizeof(WBP_UI_ButtonCentralHighlight_C_PreConstruct) == 0x000001, "Wrong size on WBP_UI_ButtonCentralHighlight_C_PreConstruct"); \ +static_assert(offsetof(WBP_UI_ButtonCentralHighlight_C_PreConstruct, IsDesignTime) == 0x000000, "Member 'WBP_UI_ButtonCentralHighlight_C_PreConstruct::IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight \ +static_assert(alignof(WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight) == 0x000004, "Wrong alignment on WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight"); \ +static_assert(sizeof(WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight) == 0x000008, "Wrong size on WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight"); \ +static_assert(offsetof(WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight, EntryPoint) == 0x000000, "Member 'WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight, K2Node_Event_IsDesignTime) == 0x000004, "Member 'WBP_UI_ButtonCentralHighlight_C_ExecuteUbergraph_WBP_UI_ButtonCentralHighlight::K2Node_Event_IsDesignTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_UI_ButtonCentralHighlight_C \ +static_assert(alignof(UWBP_UI_ButtonCentralHighlight_C) == 0x000008, "Wrong alignment on UWBP_UI_ButtonCentralHighlight_C"); \ +static_assert(sizeof(UWBP_UI_ButtonCentralHighlight_C) == 0x0002E0, "Wrong size on UWBP_UI_ButtonCentralHighlight_C"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralHighlight_C, UberGraphFrame) == 0x0002C0, "Member 'UWBP_UI_ButtonCentralHighlight_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralHighlight_C, HighlightState) == 0x0002C8, "Member 'UWBP_UI_ButtonCentralHighlight_C::HighlightState' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralHighlight_C, SizeBox) == 0x0002D0, "Member 'UWBP_UI_ButtonCentralHighlight_C::SizeBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_UI_ButtonCentralHighlight_C, SizeBoxHeight) == 0x0002D8, "Member 'UWBP_UI_ButtonCentralHighlight_C::SizeBoxHeight' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold \ +static_assert(alignof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold) == 0x000008, "Wrong alignment on GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold"); \ +static_assert(sizeof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold) == 0x000598, "Wrong size on GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, EntryPoint) == 0x000000, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_delegate_Variable) == 0x000004, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsBPI_Physics_Audio) == 0x000018, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsBPI_Physics_Audio' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess) == 0x000028, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_object_Variable) == 0x000030, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_object_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioComponent_AudioComponent) == 0x000038, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioComponent_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_delegate_Variable_1) == 0x000040, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_object_Variable_1) == 0x000050, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_object_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_object_Variable_2) == 0x000058, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_object_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_delegate_Variable_2) == 0x000060, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_delegate_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_object_Variable_3) == 0x000070, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_object_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_delegate_Variable_3) == 0x000078, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_delegate_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_delegate_Variable_4) == 0x000088, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_delegate_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetWorldDeltaSeconds_ReturnValue) == 0x000098, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetWorldDeltaSeconds_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_object_Variable_4) == 0x0000A0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_object_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_IsValid_ReturnValue) == 0x0000A8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetVelocity_ReturnValue) == 0x0000B0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetVelocity_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_VSize_ReturnValue) == 0x0000C8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_VSize_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate) == 0x0000D0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetVelocity_ReturnValue_1) == 0x0000E0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetVelocity_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_K2_SetTimerDelegate_ReturnValue) == 0x0000F8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_K2_SetTimerDelegate_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_VSize_ReturnValue_1) == 0x000100, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_VSize_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Abs_ReturnValue) == 0x000108, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_1) == 0x000110, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_NormalizeToRange_ReturnValue) == 0x000120, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_K2_SetTimerDelegate_ReturnValue_1) == 0x000128, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_K2_SetTimerDelegate_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Conv_DoubleToString_ReturnValue) == 0x000130, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Conv_DoubleToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Concat_StrStr_ReturnValue) == 0x000140, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Concat_StrStr_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_Character_1) == 0x000150, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_Character_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_AudioComponent_1) == 0x000158, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_AudioComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_Parameters_1) == 0x000160, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_Parameters_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_Character) == 0x000238, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_AudioComponent) == 0x000240, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_Event_Parameters) == 0x000248, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_Event_Parameters' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_NormalizedMagnitude) == 0x000320, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_NormalizedMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_RawMagnitude) == 0x000324, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_RawMagnitude' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_EffectContext) == 0x000328, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_EffectContext' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_MatchedTagName) == 0x000340, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_MatchedTagName' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_OriginalTag) == 0x000348, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_OriginalTag' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_AggregatedSourceTags) == 0x000350, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_AggregatedSourceTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_AggregatedTargetTags) == 0x000370, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_AggregatedTargetTags' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_Location) == 0x000390, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_Location' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_Normal) == 0x0003A8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_Normal' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_Instigator) == 0x0003C0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_Instigator' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_EffectCauser) == 0x0003C8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_EffectCauser' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_SourceObject) == 0x0003D0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_SourceObject' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_PhysicalMaterial) == 0x0003D8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_PhysicalMaterial' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_GameplayEffectLevel) == 0x0003E0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_GameplayEffectLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_AbilityLevel) == 0x0003E4, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_AbilityLevel' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_TargetAttachComponent) == 0x0003E8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_TargetAttachComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy) == 0x0003F0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_BreakGameplayCueParameters_bReplicateLocationWhenUsingMinimalRepProxy' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x0003F8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_1) == 0x000408, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetTargetType_ReturnValue) == 0x000409, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetTargetType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, Temp_byte_Variable) == 0x00040A, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::Temp_byte_Variable' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsHera_Audio_Character_Interface) == 0x000410, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsHera_Audio_Character_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_2) == 0x000420, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioCharacterComponent_ReturnValue) == 0x000428, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioCharacterComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_SwitchEnum_CmpSuccess) == 0x000430, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_2) == 0x000434, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_CreateDelegate_OutputDelegate_3) == 0x000444, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_K2_SetTimerDelegate_ReturnValue_2) == 0x000458, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_K2_SetTimerDelegate_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_K2_SetTimerDelegate_ReturnValue_3) == 0x000460, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_K2_SetTimerDelegate_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_1) == 0x000468, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsHera_Audio_Character_Interface_1) == 0x000470, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsHera_Audio_Character_Interface_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_3) == 0x000480, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioCharacterComponent_ReturnValue_1) == 0x000488, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioCharacterComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_DoesImplementInterface_ReturnValue) == 0x000490, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_DoesImplementInterface_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_2) == 0x000491, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsHera_Audio_Character_Interface_2) == 0x000498, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsHera_Audio_Character_Interface_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_4) == 0x0004A8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioCharacterComponent_ReturnValue_2) == 0x0004B0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioCharacterComponent_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_DoesImplementInterface_ReturnValue_1) == 0x0004B8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_DoesImplementInterface_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_DoesImplementInterface_ReturnValue_2) == 0x0004B9, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_DoesImplementInterface_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsHera_Audio_Character_Interface_3) == 0x0004C0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsHera_Audio_Character_Interface_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_5) == 0x0004D0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioCharacterComponent_ReturnValue_3) == 0x0004D8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioCharacterComponent_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_IsValid_ReturnValue_3) == 0x0004E0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_DoesImplementInterface_ReturnValue_3) == 0x0004E1, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_DoesImplementInterface_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Abs_ReturnValue_1) == 0x0004E8, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Abs_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsBPI_Physics_Audio_1) == 0x0004F0, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsBPI_Physics_Audio_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_6) == 0x000500, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_NormalizeToRange_ReturnValue_1) == 0x000508, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_NormalizeToRange_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioComponent_AudioComponent_1) == 0x000510, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioComponent_AudioComponent_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsHera_Audio_Character_Interface_4) == 0x000518, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsHera_Audio_Character_Interface_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_7) == 0x000528, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000530, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioCharacterComponent_ReturnValue_4) == 0x000538, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioCharacterComponent_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000540, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsBPI_Physics_Audio_2) == 0x000548, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsBPI_Physics_Audio_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_8) == 0x000558, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_AsBPI_Physics_Audio_3) == 0x000560, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_AsBPI_Physics_Audio_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, K2Node_DynamicCast_bSuccess_9) == 0x000570, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioComponent_AudioComponent_2) == 0x000578, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioComponent_AudioComponent_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_GetAudioComponent_AudioComponent_3) == 0x000580, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_GetAudioComponent_AudioComponent_3' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_SetRTPC_InValue_ImplicitCast) == 0x000588, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_SetRTPC_InValue_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_SetRTPC_InValue_ImplicitCast_1) == 0x00058C, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_SetRTPC_InValue_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_SetRTPC_InValue_ImplicitCast_2) == 0x000590, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_SetRTPC_InValue_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold, CallFunc_SetRTPC_InValue_ImplicitCast_3) == 0x000594, "Member 'GC_Telekinesis_Hold_C_ExecuteUbergraph_GC_Telekinesis_Hold::CallFunc_SetRTPC_InValue_ImplicitCast_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hold_C_OnActiveAudio \ +static_assert(alignof(GC_Telekinesis_Hold_C_OnActiveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Hold_C_OnActiveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Hold_C_OnActiveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Hold_C_OnActiveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnActiveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Hold_C_OnActiveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnActiveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Hold_C_OnActiveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnActiveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Hold_C_OnActiveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hold_C_OnRemoveAudio \ +static_assert(alignof(GC_Telekinesis_Hold_C_OnRemoveAudio) == 0x000008, "Wrong alignment on GC_Telekinesis_Hold_C_OnRemoveAudio"); \ +static_assert(sizeof(GC_Telekinesis_Hold_C_OnRemoveAudio) == 0x0000E8, "Wrong size on GC_Telekinesis_Hold_C_OnRemoveAudio"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnRemoveAudio, Character) == 0x000000, "Member 'GC_Telekinesis_Hold_C_OnRemoveAudio::Character' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnRemoveAudio, AudioComponent) == 0x000008, "Member 'GC_Telekinesis_Hold_C_OnRemoveAudio::AudioComponent' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_OnRemoveAudio, Parameters) == 0x000010, "Member 'GC_Telekinesis_Hold_C_OnRemoveAudio::Parameters' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hold_C_RemoveParticleFX \ +static_assert(alignof(GC_Telekinesis_Hold_C_RemoveParticleFX) == 0x000001, "Wrong alignment on GC_Telekinesis_Hold_C_RemoveParticleFX"); \ +static_assert(sizeof(GC_Telekinesis_Hold_C_RemoveParticleFX) == 0x000001, "Wrong size on GC_Telekinesis_Hold_C_RemoveParticleFX"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_RemoveParticleFX, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hold_C_RemoveParticleFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_GC_Telekinesis_Hold_C_SpawnParticleFX \ +static_assert(alignof(GC_Telekinesis_Hold_C_SpawnParticleFX) == 0x000008, "Wrong alignment on GC_Telekinesis_Hold_C_SpawnParticleFX"); \ +static_assert(sizeof(GC_Telekinesis_Hold_C_SpawnParticleFX) == 0x000040, "Wrong size on GC_Telekinesis_Hold_C_SpawnParticleFX"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000000, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_IsValid_ReturnValue) == 0x000008, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface) == 0x000010, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::K2Node_DynamicCast_AsWrestler_Telekinesis_Target_Interface' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, K2Node_DynamicCast_bSuccess) == 0x000020, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_GetThrowableType_ReturnValue) == 0x000021, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_GetThrowableType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_GetValidValue_ReturnValue) == 0x000022, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_GetValidValue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_Map_Find_Value) == 0x000028, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_Map_Find_Value' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_Map_Find_ReturnValue) == 0x000030, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_Map_Find_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(GC_Telekinesis_Hold_C_SpawnParticleFX, CallFunc_SpawnSystemAttached_ReturnValue) == 0x000038, "Member 'GC_Telekinesis_Hold_C_SpawnParticleFX::CallFunc_SpawnSystemAttached_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AGC_Telekinesis_Hold_C \ +static_assert(alignof(AGC_Telekinesis_Hold_C) == 0x000008, "Wrong alignment on AGC_Telekinesis_Hold_C"); \ +static_assert(sizeof(AGC_Telekinesis_Hold_C) == 0x000408, "Wrong size on AGC_Telekinesis_Hold_C"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, UberGraphFrame) == 0x000308, "Member 'AGC_Telekinesis_Hold_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, DefaultSceneRoot) == 0x000310, "Member 'AGC_Telekinesis_Hold_C::DefaultSceneRoot' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, SpawnedAudio) == 0x000318, "Member 'AGC_Telekinesis_Hold_C::SpawnedAudio' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, PickedUpActor) == 0x000320, "Member 'AGC_Telekinesis_Hold_C::PickedUpActor' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, Throwable_Types) == 0x000328, "Member 'AGC_Telekinesis_Hold_C::Throwable_Types' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, CurrentPos) == 0x000378, "Member 'AGC_Telekinesis_Hold_C::CurrentPos' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, HoldFX) == 0x000390, "Member 'AGC_Telekinesis_Hold_C::HoldFX' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, AudioThrowableTypes) == 0x000398, "Member 'AGC_Telekinesis_Hold_C::AudioThrowableTypes' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, Speed) == 0x0003E8, "Member 'AGC_Telekinesis_Hold_C::Speed' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, LastSpeed) == 0x0003F0, "Member 'AGC_Telekinesis_Hold_C::LastSpeed' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, Acceleration) == 0x0003F8, "Member 'AGC_Telekinesis_Hold_C::Acceleration' has a wrong offset!"); \ +static_assert(offsetof(AGC_Telekinesis_Hold_C, AudioDebug) == 0x000400, "Member 'AGC_Telekinesis_Hold_C::AudioDebug' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_WaypointsMapMarkerWidget_C \ +static_assert(alignof(UWBP_WaypointsMapMarkerWidget_C) == 0x000010, "Wrong alignment on UWBP_WaypointsMapMarkerWidget_C"); \ +static_assert(sizeof(UWBP_WaypointsMapMarkerWidget_C) == 0x000500, "Wrong size on UWBP_WaypointsMapMarkerWidget_C"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle \ +static_assert(alignof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle) == 0x000008, "Wrong alignment on WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle"); \ +static_assert(sizeof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle) == 0x0000B8, "Wrong size on WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, EntryPoint) == 0x000000, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_TryShowReticle_ShowingReticle) == 0x000004, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_TryShowReticle_ShowingReticle' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CreateDelegate_OutputDelegate) == 0x000008, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CreateDelegate_OutputDelegate_1) == 0x000018, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_Event_InTarget) == 0x000028, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_Event_InTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_Event_bInIsPrimaryTarget) == 0x000038, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_Event_bInIsPrimaryTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_GetVisibility_ReturnValue) == 0x000039, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_GetVisibility_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_bIsPrimaryTarget) == 0x00003A, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_bIsPrimaryTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_WrestlerInteractionTarget) == 0x000040, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_WrestlerInteractionTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_PlayAnimationForward_ReturnValue) == 0x000050, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_PlayAnimationForward_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_PlayAnimationForward_ReturnValue_1) == 0x000058, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_PlayAnimationForward_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_ShouldShowReticle) == 0x000060, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_ShouldShowReticle' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_PrevState) == 0x000061, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_PrevState' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_NewState) == 0x000062, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_NewState' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CustomEvent_bInPaused) == 0x000063, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CustomEvent_bInPaused' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CreateDelegate_OutputDelegate_2) == 0x000064, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_GetHud_ReturnValue) == 0x000078, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000080, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x000088, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue) == 0x000090, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_WaitGameplayTagRemoveFromActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_WaitGameplayTagAddToActor_ReturnValue) == 0x000098, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_WaitGameplayTagAddToActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_IsValid_ReturnValue) == 0x0000A0, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_IsValid_ReturnValue_1) == 0x0000A1, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, CallFunc_TryShowReticle_ShowingReticle_1) == 0x0000A2, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::CallFunc_TryShowReticle_ShowingReticle_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle, K2Node_CreateDelegate_OutputDelegate_3) == 0x0000A4, "Member 'WBP_InteractionReticle_C_ExecuteUbergraph_WBP_InteractionReticle::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_MasqueradeStateChanged \ +static_assert(alignof(WBP_InteractionReticle_C_MasqueradeStateChanged) == 0x000001, "Wrong alignment on WBP_InteractionReticle_C_MasqueradeStateChanged"); \ +static_assert(sizeof(WBP_InteractionReticle_C_MasqueradeStateChanged) == 0x000002, "Wrong size on WBP_InteractionReticle_C_MasqueradeStateChanged"); \ +static_assert(offsetof(WBP_InteractionReticle_C_MasqueradeStateChanged, PrevState) == 0x000000, "Member 'WBP_InteractionReticle_C_MasqueradeStateChanged::PrevState' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_MasqueradeStateChanged, NewState) == 0x000001, "Member 'WBP_InteractionReticle_C_MasqueradeStateChanged::NewState' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_OnPauseGame \ +static_assert(alignof(WBP_InteractionReticle_C_OnPauseGame) == 0x000001, "Wrong alignment on WBP_InteractionReticle_C_OnPauseGame"); \ +static_assert(sizeof(WBP_InteractionReticle_C_OnPauseGame) == 0x000001, "Wrong size on WBP_InteractionReticle_C_OnPauseGame"); \ +static_assert(offsetof(WBP_InteractionReticle_C_OnPauseGame, bInPaused) == 0x000000, "Member 'WBP_InteractionReticle_C_OnPauseGame::bInPaused' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_OnTargetUpdated \ +static_assert(alignof(WBP_InteractionReticle_C_OnTargetUpdated) == 0x000008, "Wrong alignment on WBP_InteractionReticle_C_OnTargetUpdated"); \ +static_assert(sizeof(WBP_InteractionReticle_C_OnTargetUpdated) == 0x000018, "Wrong size on WBP_InteractionReticle_C_OnTargetUpdated"); \ +static_assert(offsetof(WBP_InteractionReticle_C_OnTargetUpdated, InTarget) == 0x000000, "Member 'WBP_InteractionReticle_C_OnTargetUpdated::InTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_OnTargetUpdated, bInIsPrimaryTarget) == 0x000010, "Member 'WBP_InteractionReticle_C_OnTargetUpdated::bInIsPrimaryTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_ShouldShowReticle \ +static_assert(alignof(WBP_InteractionReticle_C_ShouldShowReticle) == 0x000008, "Wrong alignment on WBP_InteractionReticle_C_ShouldShowReticle"); \ +static_assert(sizeof(WBP_InteractionReticle_C_ShouldShowReticle) == 0x000038, "Wrong size on WBP_InteractionReticle_C_ShouldShowReticle"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, ShowReticle) == 0x000000, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::ShowReticle' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_GetOwningPlayerPawn_ReturnValue) == 0x000008, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_GetOwningPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_GetAbilitySystemComponent_ReturnValue) == 0x000010, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_GetAbilitySystemComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_IsValid_ReturnValue) == 0x000018, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_IsValid_ReturnValue_1) == 0x000019, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_HasMatchingGameplayTag_self_CastInput) == 0x000020, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_HasMatchingGameplayTag_self_CastInput' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_ShouldShowReticle, CallFunc_HasMatchingGameplayTag_ReturnValue) == 0x000030, "Member 'WBP_InteractionReticle_C_ShouldShowReticle::CallFunc_HasMatchingGameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_TryShowReticle \ +static_assert(alignof(WBP_InteractionReticle_C_TryShowReticle) == 0x000001, "Wrong alignment on WBP_InteractionReticle_C_TryShowReticle"); \ +static_assert(sizeof(WBP_InteractionReticle_C_TryShowReticle) == 0x000002, "Wrong size on WBP_InteractionReticle_C_TryShowReticle"); \ +static_assert(offsetof(WBP_InteractionReticle_C_TryShowReticle, ShowingReticle) == 0x000000, "Member 'WBP_InteractionReticle_C_TryShowReticle::ShowingReticle' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_TryShowReticle, CallFunc_ShouldShowReticle_ShowReticle) == 0x000001, "Member 'WBP_InteractionReticle_C_TryShowReticle::CallFunc_ShouldShowReticle_ShowReticle' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_UpdateCurrentTarget \ +static_assert(alignof(WBP_InteractionReticle_C_UpdateCurrentTarget) == 0x000008, "Wrong alignment on WBP_InteractionReticle_C_UpdateCurrentTarget"); \ +static_assert(sizeof(WBP_InteractionReticle_C_UpdateCurrentTarget) == 0x000018, "Wrong size on WBP_InteractionReticle_C_UpdateCurrentTarget"); \ +static_assert(offsetof(WBP_InteractionReticle_C_UpdateCurrentTarget, bIsPrimaryTarget) == 0x000000, "Member 'WBP_InteractionReticle_C_UpdateCurrentTarget::bIsPrimaryTarget' has a wrong offset!"); \ +static_assert(offsetof(WBP_InteractionReticle_C_UpdateCurrentTarget, WrestlerInteractionTarget) == 0x000008, "Member 'WBP_InteractionReticle_C_UpdateCurrentTarget::WrestlerInteractionTarget' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_InteractionReticle_C_UpdatePrompt \ +static_assert(alignof(WBP_InteractionReticle_C_UpdatePrompt) == 0x000001, "Wrong alignment on WBP_InteractionReticle_C_UpdatePrompt"); \ +static_assert(sizeof(WBP_InteractionReticle_C_UpdatePrompt) == 0x000001, "Wrong size on WBP_InteractionReticle_C_UpdatePrompt"); \ +static_assert(offsetof(WBP_InteractionReticle_C_UpdatePrompt, ShouldShowReticle_0) == 0x000000, "Member 'WBP_InteractionReticle_C_UpdatePrompt::ShouldShowReticle_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_InteractionReticle_C \ +static_assert(alignof(UWBP_InteractionReticle_C) == 0x000008, "Wrong alignment on UWBP_InteractionReticle_C"); \ +static_assert(sizeof(UWBP_InteractionReticle_C) == 0x000310, "Wrong size on UWBP_InteractionReticle_C"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, UberGraphFrame) == 0x0002C8, "Member 'UWBP_InteractionReticle_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, OnSwitchToIndicator) == 0x0002D0, "Member 'UWBP_InteractionReticle_C::OnSwitchToIndicator' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, OnSwitchToPrompt) == 0x0002D8, "Member 'UWBP_InteractionReticle_C::OnSwitchToPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, WBP_InteractionIndicator) == 0x0002E0, "Member 'UWBP_InteractionReticle_C::WBP_InteractionIndicator' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, WBP_InteractionPrompt) == 0x0002E8, "Member 'UWBP_InteractionReticle_C::WBP_InteractionPrompt' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, Primary_Target) == 0x0002F0, "Member 'UWBP_InteractionReticle_C::Primary_Target' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, CurrentTarget) == 0x0002F8, "Member 'UWBP_InteractionReticle_C::CurrentTarget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, Initialised) == 0x000308, "Member 'UWBP_InteractionReticle_C::Initialised' has a wrong offset!"); \ +static_assert(offsetof(UWBP_InteractionReticle_C, PerPauseVisibility) == 0x000309, "Member 'UWBP_InteractionReticle_C::PerPauseVisibility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR \ +static_assert(alignof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR) == 0x000008, "Wrong alignment on BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR"); \ +static_assert(sizeof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR) == 0x000028, "Wrong size on BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, CallFunc_GetPlayerController_ReturnValue) == 0x000000, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWidget_ReturnValue) == 0x000008, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWrestlerHUD_OutExecBranches) == 0x000010, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWrestlerHUD_OutExecBranches' has a wrong offset!"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, CallFunc_GetWrestlerHUD_ReturnValue) == 0x000018, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::CallFunc_GetWrestlerHUD_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, K2Node_SwitchEnum_CmpSuccess) == 0x000020, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR, CallFunc_IsPackagedForDistribution_ReturnValue) == 0x000021, "Member 'BP_WorldInteractionReticle_C_DebugCheckHiddenCVAR::CallFunc_IsPackagedForDistribution_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_WorldInteractionReticle_C \ +static_assert(alignof(ABP_WorldInteractionReticle_C) == 0x000008, "Wrong alignment on ABP_WorldInteractionReticle_C"); \ +static_assert(sizeof(ABP_WorldInteractionReticle_C) == 0x0002F0, "Wrong size on ABP_WorldInteractionReticle_C"); \ + +#define DUMPER7_ASSERTS_UWBP_OutfitClanRow_C \ +static_assert(alignof(UWBP_OutfitClanRow_C) == 0x000008, "Wrong alignment on UWBP_OutfitClanRow_C"); \ +static_assert(sizeof(UWBP_OutfitClanRow_C) == 0x0001B0, "Wrong size on UWBP_OutfitClanRow_C"); \ +static_assert(offsetof(UWBP_OutfitClanRow_C, Clan) == 0x0001A8, "Member 'UWBP_OutfitClanRow_C::Clan' has a wrong offset!"); \ +static_assert(offsetof(UWBP_OutfitClanRow_C, Position) == 0x0001AC, "Member 'UWBP_OutfitClanRow_C::Position' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_BottomActionBarLayout_C \ +static_assert(alignof(UTCR_BottomActionBarLayout_C) == 0x000008, "Wrong alignment on UTCR_BottomActionBarLayout_C"); \ +static_assert(sizeof(UTCR_BottomActionBarLayout_C) == 0x000348, "Wrong size on UTCR_BottomActionBarLayout_C"); \ +static_assert(offsetof(UTCR_BottomActionBarLayout_C, BottomActionBar) == 0x000330, "Member 'UTCR_BottomActionBarLayout_C::BottomActionBar' has a wrong offset!"); \ +static_assert(offsetof(UTCR_BottomActionBarLayout_C, Content) == 0x000338, "Member 'UTCR_BottomActionBarLayout_C::Content' has a wrong offset!"); \ +static_assert(offsetof(UTCR_BottomActionBarLayout_C, WidgetToFocus) == 0x000340, "Member 'UTCR_BottomActionBarLayout_C::WidgetToFocus' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget \ +static_assert(alignof(WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget) == 0x000004, "Wrong alignment on WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget"); \ +static_assert(sizeof(WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget) == 0x000004, "Wrong size on WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget"); \ +static_assert(offsetof(WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget, EntryPoint) == 0x000000, "Member 'WBP_BaseMapMarkerWidget_C_ExecuteUbergraph_WBP_BaseMapMarkerWidget::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_BaseMapMarkerWidget_C \ +static_assert(alignof(UWBP_BaseMapMarkerWidget_C) == 0x000010, "Wrong alignment on UWBP_BaseMapMarkerWidget_C"); \ +static_assert(sizeof(UWBP_BaseMapMarkerWidget_C) == 0x000510, "Wrong size on UWBP_BaseMapMarkerWidget_C"); \ +static_assert(offsetof(UWBP_BaseMapMarkerWidget_C, UberGraphFrame) == 0x000500, "Member 'UWBP_BaseMapMarkerWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_BaseMapMarkerWidget_C, ObjectiveSelected) == 0x000508, "Member 'UWBP_BaseMapMarkerWidget_C::ObjectiveSelected' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_KillReticle_C \ +static_assert(alignof(ABP_KillReticle_C) == 0x000008, "Wrong alignment on ABP_KillReticle_C"); \ +static_assert(sizeof(ABP_KillReticle_C) == 0x0002E8, "Wrong size on ABP_KillReticle_C"); \ + +#define DUMPER7_ASSERTS_UDefaultFileMenuFont_C \ +static_assert(alignof(UDefaultFileMenuFont_C) == 0x000010, "Wrong alignment on UDefaultFileMenuFont_C"); \ +static_assert(sizeof(UDefaultFileMenuFont_C) == 0x0001B0, "Wrong size on UDefaultFileMenuFont_C"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_DownAction_K2Node_ComponentBoundEvent_4_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature, CurrentOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_1_K2Node_ComponentBoundEvent_8_OnUserScrolledEvent__DelegateSignature::CurrentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature, CurrentOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_2_K2Node_ComponentBoundEvent_10_OnUserScrolledEvent__DelegateSignature::CurrentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature, CurrentOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_3_K2Node_ComponentBoundEvent_11_OnUserScrolledEvent__DelegateSignature::CurrentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature, CurrentOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_0_OnUserScrolledEvent__DelegateSignature::CurrentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature) == 0x000004, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature, CurrentOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_Panel_K2Node_ComponentBoundEvent_9_OnUserScrolledEvent__DelegateSignature::CurrentOffset' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Eyes_K2Node_ComponentBoundEvent_7_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Gameplay_K2Node_ComponentBoundEvent_2_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_MakeUp_K2Node_ComponentBoundEvent_5_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Outfits_K2Node_ComponentBoundEvent_1_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_TCR_Piercing_K2Node_ComponentBoundEvent_6_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_BndEvt__WBP_CharacteScreenTab_UpAction_K2Node_ComponentBoundEvent_3_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_Disable3DModelTicks \ +static_assert(alignof(WBP_CharacteScreenTab_C_Disable3DModelTicks) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_Disable3DModelTicks"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_Disable3DModelTicks) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_Disable3DModelTicks"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Disable3DModelTicks, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_Disable3DModelTicks::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_DoCustomNavigation \ +static_assert(alignof(WBP_CharacteScreenTab_C_DoCustomNavigation) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_DoCustomNavigation"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_DoCustomNavigation) == 0x0000A0, "Wrong size on WBP_CharacteScreenTab_C_DoCustomNavigation"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, Navigation_0) == 0x000000, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::Navigation_0' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, RowIndex) == 0x000010, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::RowIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, ColumnIndex) == 0x000014, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::ColumnIndex' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildrenCount_ReturnValue) == 0x00001C, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_Add_IntInt_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_Subtract_IntInt_ReturnValue) == 0x000024, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_Greater_IntInt_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x000029, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildAt_ReturnValue) == 0x000030, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildAt_ReturnValue_1) == 0x000038, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_AsHorizontal_Box) == 0x000040, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_AsHorizontal_Box' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_bSuccess) == 0x000048, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_AsHorizontal_Box_1) == 0x000050, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_AsHorizontal_Box_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_bSuccess_1) == 0x000058, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildAt_ReturnValue_2) == 0x000060, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildAt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildAt_ReturnValue_3) == 0x000068, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildAt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetParent_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetParent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_AsHorizontal_Box_2) == 0x000078, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_AsHorizontal_Box_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_bSuccess_2) == 0x000080, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildIndex_ReturnValue) == 0x000084, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetParent_ReturnValue_1) == 0x000088, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetParent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_AsScroll_Box) == 0x000090, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_AsScroll_Box' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, K2Node_DynamicCast_bSuccess_3) == 0x000098, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_DoCustomNavigation, CallFunc_GetChildIndex_ReturnValue_1) == 0x00009C, "Member 'WBP_CharacteScreenTab_C_DoCustomNavigation::CallFunc_GetChildIndex_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_Enable3DModelTicks \ +static_assert(alignof(WBP_CharacteScreenTab_C_Enable3DModelTicks) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_Enable3DModelTicks"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_Enable3DModelTicks) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_Enable3DModelTicks"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Enable3DModelTicks, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_Enable3DModelTicks::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab \ +static_assert(alignof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab) == 0x0009B8, "Wrong size on WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, EntryPoint) == 0x000000, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CustomEvent_NewParam) == 0x000008, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CustomEvent_NewParam' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_bool_Has_Been_Initd_Variable) == 0x000010, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_bool_Has_Been_Initd_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate) == 0x000014, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetPlayerPawn_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Character) == 0x000030, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_CurrentOffset_4) == 0x00003C, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_CurrentOffset_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_6) == 0x000040, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_5) == 0x000048, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_1) == 0x000050, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_bool_IsClosed_Variable) == 0x000060, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_bool_IsClosed_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_2) == 0x000064, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEquippedCostumeButton_ReturnValue) == 0x000078, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEquippedCostumeButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue) == 0x000080, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetGameInstanceSubsystem_ReturnValue) == 0x000088, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetGameInstanceSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_Event_MyGeometry) == 0x000090, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_Event_InDeltaTime) == 0x0000C8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_1) == 0x0000CC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue) == 0x0000D0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsHorizontal_Box) == 0x0000D8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsHorizontal_Box' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_1) == 0x0000E0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue_1) == 0x0000E8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button) == 0x0000F0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_2) == 0x0000F8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEquippedHairButton_ReturnValue) == 0x000100, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEquippedHairButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_2) == 0x000108, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000110, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_3) == 0x000118, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue) == 0x00011C, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_3) == 0x000124, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetHairButtonWithTag_ReturnValue) == 0x000138, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetHairButtonWithTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_3) == 0x000140, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue_2) == 0x000148, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_4) == 0x000150, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_VInterpTo_ReturnValue) == 0x000158, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_VInterpTo_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_VInterpTo_ReturnValue_1) == 0x000170, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_VInterpTo_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetRelativeLocation_SweepHitResult) == 0x000188, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetRelativeLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetRelativeLocation_SweepHitResult_1) == 0x000270, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetRelativeLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000358, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetRelativeLocation_SweepHitResult_2) == 0x000360, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetRelativeLocation_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsTCR_RPGMenu_Screen) == 0x000448, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsTCR_RPGMenu_Screen' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_4) == 0x000450, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_4) == 0x000458, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_3) == 0x000460, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetRPGMenu_ReturnValue_1) == 0x000468, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetRPGMenu_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsTCR_RPGMenu_Screen_1) == 0x000470, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsTCR_RPGMenu_Screen_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_5) == 0x000478, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Array_Length_ReturnValue) == 0x00047C, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_int_Array_Index_Variable) == 0x000480, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Array_Get_Item) == 0x000488, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button) == 0x000490, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_6) == 0x000498, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_1) == 0x0004A0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_7) == 0x0004A8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_SweepHitResult) == 0x0004B0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_SweepHitResult' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_ReturnValue) == 0x000598, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Array_Length_ReturnValue_1) == 0x00059C, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_GetActorLocation_ReturnValue) == 0x0005A0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_GetActorLocation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue_1) == 0x0005B8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GreaterEqual_IntInt_ReturnValue) == 0x0005BC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GreaterEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_2) == 0x0005C0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEquippedMakeUpButton_ReturnValue) == 0x0005C8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEquippedMakeUpButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_5) == 0x0005D0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue_3) == 0x0005D8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_int_Loop_Counter_Variable) == 0x0005E0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1) == 0x0005E8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_8) == 0x0005F0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Less_IntInt_ReturnValue) == 0x0005F1, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue_2) == 0x0005F4, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Add_IntInt_ReturnValue) == 0x0005FC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetMakeUpButtonWithTag_ReturnValue) == 0x000600, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetMakeUpButtonWithTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_6) == 0x000608, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button_1) == 0x000610, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_int_Array_Index_Variable_1) == 0x000618, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Array_Get_Item_1) == 0x000620, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_2) == 0x000628, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_9) == 0x000630, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game_2) == 0x000638, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_10) == 0x000640, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue_3) == 0x000644, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEyesButtonWithTag_ReturnValue) == 0x000650, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEyesButtonWithTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_7) == 0x000658, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_Button) == 0x000660, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWrestler_Player_State_in_Game_3) == 0x000668, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWrestler_Player_State_in_Game_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_11) == 0x000670, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue_4) == 0x000678, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue_4) == 0x000680, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GePiercingButtonWithTag_ReturnValue) == 0x000688, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GePiercingButtonWithTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_8) == 0x000690, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_8' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildAt_ReturnValue_5) == 0x000698, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildAt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetActiveWidgetIndex_ReturnValue) == 0x0006A0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetActiveWidgetIndex_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_SwitchInteger_CmpSuccess) == 0x0006A4, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_SwitchInteger_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetActiveWidgetIndex_ReturnValue_1) == 0x0006A8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetActiveWidgetIndex_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetChildrenCount_ReturnValue) == 0x0006AC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Add_IntInt_ReturnValue_1) == 0x0006B0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Add_IntInt_ReturnValue_2) == 0x0006B4, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Less_IntInt_ReturnValue_1) == 0x0006B8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GreaterEqual_IntInt_ReturnValue_1) == 0x0006B9, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GreaterEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEquippedPiercingButton_ReturnValue) == 0x0006C0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEquippedPiercingButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetEquippedEyesButton_ReturnValue) == 0x0006C8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetEquippedEyesButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_9) == 0x0006D0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_9' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_10) == 0x0006D1, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_10' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_CurrentOffset_3) == 0x0006D4, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_CurrentOffset_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_CurrentOffset_2) == 0x0006D8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_CurrentOffset_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_CurrentOffset_1) == 0x0006DC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_CurrentOffset_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_ComponentBoundEvent_CurrentOffset) == 0x0006E0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_ComponentBoundEvent_CurrentOffset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_int_Loop_Counter_Variable_1) == 0x0006E4, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_GetProperty_ReturnValue_5) == 0x0006E8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_GetProperty_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Less_IntInt_ReturnValue_2) == 0x0006E9, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_Add_IntInt_ReturnValue_3) == 0x0006EC, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_4) == 0x0006F0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_11) == 0x000700, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_11' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CustomEvent_Button_3) == 0x000708, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CustomEvent_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_EqualEqual_ObjectObject_ReturnValue) == 0x000710, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_EqualEqual_ObjectObject_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_3) == 0x000718, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_12) == 0x000720, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CustomEvent_Button_2) == 0x000728, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CustomEvent_Button_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_SweepHitResult_1) == 0x000730, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_SweepHitResult_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_ReturnValue_1) == 0x000818, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsButtonUnlock_ReturnValue) == 0x000819, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsButtonUnlock_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00081A, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_BooleanOR_ReturnValue) == 0x00081B, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_BooleanOR_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_SweepHitResult_2) == 0x000820, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_SweepHitResult_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_K2_SetActorLocation_ReturnValue_2) == 0x000908, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_K2_SetActorLocation_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CustomEvent_Button_1) == 0x000910, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CustomEvent_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_5) == 0x000918, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_6) == 0x000928, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_4) == 0x000938, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_13) == 0x000940, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_13' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CreateDelegate_OutputDelegate_7) == 0x000944, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CreateDelegate_OutputDelegate_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_IsValid_ReturnValue_12) == 0x000954, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_IsValid_ReturnValue_12' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_CustomEvent_Button) == 0x000958, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_CustomEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, Temp_delegate_Variable) == 0x000960, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_5) == 0x000970, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_14) == 0x000978, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_14' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_EqualEqual_ObjectObject_ReturnValue_1) == 0x000979, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_EqualEqual_ObjectObject_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_6) == 0x000980, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, K2Node_DynamicCast_bSuccess_15) == 0x000988, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::K2Node_DynamicCast_bSuccess_15' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_EqualEqual_ObjectObject_ReturnValue_2) == 0x000989, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_EqualEqual_ObjectObject_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast) == 0x000990, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_1) == 0x000998, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_2) == 0x0009A0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_3) == 0x0009A8, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab, CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_4) == 0x0009B0, "Member 'WBP_CharacteScreenTab_C_ExecuteUbergraph_WBP_CharacteScreenTab::CallFunc_UpdateRetainerBoxFade_InScrollOffset_ImplicitCast_4' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_GatherAllButtons \ +static_assert(alignof(WBP_CharacteScreenTab_C_GatherAllButtons) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_GatherAllButtons"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_GatherAllButtons) == 0x000140, "Wrong size on WBP_CharacteScreenTab_C_GatherAllButtons"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable_1) == 0x00000C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue_1) == 0x000010, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable_1) == 0x000014, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable_2) == 0x000018, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable_2) == 0x00001C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable_3) == 0x000024, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable_3) == 0x000028, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable_4) == 0x00002C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue_3) == 0x000030, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue_4) == 0x000034, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Loop_Counter_Variable_5) == 0x000038, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Loop_Counter_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Add_IntInt_ReturnValue_5) == 0x00003C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable_4) == 0x000040, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue) == 0x000048, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue) == 0x00005C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue_1) == 0x000060, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item) == 0x000070, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue_1) == 0x000078, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, Temp_int_Array_Index_Variable_5) == 0x00007C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::Temp_int_Array_Index_Variable_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue_1) == 0x000080, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item_1) == 0x000088, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue_2) == 0x000090, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Add_ReturnValue) == 0x0000A0, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Add_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item_2) == 0x0000A8, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue_2) == 0x0000B0, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Add_ReturnValue_1) == 0x0000B4, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Add_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000B8, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Add_ReturnValue_2) == 0x0000BC, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Add_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue_3) == 0x0000C0, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item_3) == 0x0000D0, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue_4) == 0x0000D8, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, K2Node_DynamicCast_AsHorizontal_Box) == 0x0000E8, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::K2Node_DynamicCast_AsHorizontal_Box' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, K2Node_DynamicCast_bSuccess) == 0x0000F0, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item_4) == 0x0000F8, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_GetAllChildren_ReturnValue_5) == 0x000100, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_GetAllChildren_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Add_ReturnValue_3) == 0x000110, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Add_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Get_Item_5) == 0x000118, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Get_Item_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue_3) == 0x000120, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Add_ReturnValue_4) == 0x000124, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Add_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue_3) == 0x000128, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue_4) == 0x00012C, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue_4) == 0x000130, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Array_Length_ReturnValue_5) == 0x000134, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Array_Length_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GatherAllButtons, CallFunc_Less_IntInt_ReturnValue_5) == 0x000138, "Member 'WBP_CharacteScreenTab_C_GatherAllButtons::CallFunc_Less_IntInt_ReturnValue_5' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_GetGenderVariation \ +static_assert(alignof(WBP_CharacteScreenTab_C_GetGenderVariation) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_GetGenderVariation"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_GetGenderVariation) == 0x0000A0, "Wrong size on WBP_CharacteScreenTab_C_GetGenderVariation"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, SourceString) == 0x000000, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::SourceString' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_GetGameInstance_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_GetGameInstance_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_Split_LeftS) == 0x000030, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_Split_LeftS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_Split_RightS) == 0x000040, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_Split_RightS' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_Split_ReturnValue) == 0x000050, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_Split_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, K2Node_DynamicCast_AsWrestler_Game_Instance) == 0x000058, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::K2Node_DynamicCast_AsWrestler_Game_Instance' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_Conv_StringToText_ReturnValue) == 0x000068, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_GetPlayerVariant_ReturnValue) == 0x000080, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_GetPlayerVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, K2Node_SwitchEnum_CmpSuccess) == 0x000081, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_GetGenderVariation, CallFunc_Conv_StringToText_ReturnValue_1) == 0x000088, "Member 'WBP_CharacteScreenTab_C_GetGenderVariation::CallFunc_Conv_StringToText_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event \ +static_assert(alignof(WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_OnCostumeChangedCallback_Event::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event \ +static_assert(alignof(WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_OnCostumeChangeStartedCallBack_Event::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_OnMouseLeaveCallBack \ +static_assert(alignof(WBP_CharacteScreenTab_C_OnMouseLeaveCallBack) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_OnMouseLeaveCallBack"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_OnMouseLeaveCallBack) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_OnMouseLeaveCallBack"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_OnMouseLeaveCallBack, NewParam) == 0x000000, "Member 'WBP_CharacteScreenTab_C_OnMouseLeaveCallBack::NewParam' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event \ +static_assert(alignof(WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_OnWidgetHoverOnCallback_Event::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event \ +static_assert(alignof(WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event) == 0x000008, "Wrong size on WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event, Button) == 0x000000, "Member 'WBP_CharacteScreenTab_C_OnWidgetReceivedFocusCallback_Event::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_PopulateEyes \ +static_assert(alignof(WBP_CharacteScreenTab_C_PopulateEyes) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_PopulateEyes"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_PopulateEyes) == 0x0000A0, "Wrong size on WBP_CharacteScreenTab_C_PopulateEyes"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_GetProperty_ReturnValue) == 0x00000C, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_GetEyesArray_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_GetEyesArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_HasAnyChildren_ReturnValue) == 0x000048, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_HasAnyChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000050, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, K2Node_DynamicCast_AsWrestler_Character_Eyes_Data_Asset) == 0x000058, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::K2Node_DynamicCast_AsWrestler_Character_Eyes_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, K2Node_DynamicCast_bSuccess) == 0x000060, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Array_Length_ReturnValue) == 0x000064, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Less_IntInt_ReturnValue) == 0x000068, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, K2Node_SwitchEnum_CmpSuccess) == 0x000069, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Create_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_AddChild_ReturnValue) == 0x000078, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_AddChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Add_IntInt_ReturnValue_1) == 0x000080, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, K2Node_DynamicCast_AsUniform_Grid_Slot) == 0x000088, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::K2Node_DynamicCast_AsUniform_Grid_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, K2Node_DynamicCast_bSuccess_1) == 0x000090, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Add_IntInt_ReturnValue_2) == 0x000094, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateEyes, CallFunc_Greater_IntInt_ReturnValue) == 0x000098, "Member 'WBP_CharacteScreenTab_C_PopulateEyes::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_PopulateHair \ +static_assert(alignof(WBP_CharacteScreenTab_C_PopulateHair) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_PopulateHair"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_PopulateHair) == 0x000098, "Wrong size on WBP_CharacteScreenTab_C_PopulateHair"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_PopulateHair::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_PopulateHair::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Create_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_GetProperty_ReturnValue) == 0x000018, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_HasAnyChildren_ReturnValue) == 0x000019, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_HasAnyChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Add_IntInt_ReturnValue_1) == 0x00001C, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Add_IntInt_ReturnValue_2) == 0x000020, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Greater_IntInt_ReturnValue) == 0x000024, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_GetHairArray_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_GetHairArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_AddChild_ReturnValue) == 0x000038, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_AddChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Array_Get_Item) == 0x000040, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, K2Node_DynamicCast_AsUniform_Grid_Slot) == 0x000068, "Member 'WBP_CharacteScreenTab_C_PopulateHair::K2Node_DynamicCast_AsUniform_Grid_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, K2Node_DynamicCast_bSuccess) == 0x000070, "Member 'WBP_CharacteScreenTab_C_PopulateHair::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000078, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset) == 0x000080, "Member 'WBP_CharacteScreenTab_C_PopulateHair::K2Node_DynamicCast_AsWrestler_Character_Hair_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, K2Node_DynamicCast_bSuccess_1) == 0x000088, "Member 'WBP_CharacteScreenTab_C_PopulateHair::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, K2Node_SwitchEnum_CmpSuccess) == 0x000089, "Member 'WBP_CharacteScreenTab_C_PopulateHair::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Array_Length_ReturnValue) == 0x00008C, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateHair, CallFunc_Less_IntInt_ReturnValue) == 0x000090, "Member 'WBP_CharacteScreenTab_C_PopulateHair::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_PopulateMakeUp \ +static_assert(alignof(WBP_CharacteScreenTab_C_PopulateMakeUp) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_PopulateMakeUp"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_PopulateMakeUp) == 0x000098, "Wrong size on WBP_CharacteScreenTab_C_PopulateMakeUp"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_GetProperty_ReturnValue) == 0x00000C, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Create_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_AddChild_ReturnValue) == 0x000018, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_AddChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_GetMakeUpArray_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_GetMakeUpArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, K2Node_DynamicCast_AsUniform_Grid_Slot) == 0x000030, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::K2Node_DynamicCast_AsUniform_Grid_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, K2Node_DynamicCast_bSuccess) == 0x000038, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Array_Get_Item) == 0x000040, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Array_Length_ReturnValue) == 0x000068, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Less_IntInt_ReturnValue) == 0x000078, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, K2Node_DynamicCast_AsWrestler_Character_Make_Up_Data_Asset) == 0x000080, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::K2Node_DynamicCast_AsWrestler_Character_Make_Up_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, K2Node_DynamicCast_bSuccess_1) == 0x000088, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, K2Node_SwitchEnum_CmpSuccess) == 0x000089, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_HasAnyChildren_ReturnValue) == 0x00008A, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_HasAnyChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Add_IntInt_ReturnValue_1) == 0x00008C, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Add_IntInt_ReturnValue_2) == 0x000090, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulateMakeUp, CallFunc_Greater_IntInt_ReturnValue) == 0x000094, "Member 'WBP_CharacteScreenTab_C_PopulateMakeUp::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_PopulatePiercing \ +static_assert(alignof(WBP_CharacteScreenTab_C_PopulatePiercing) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_PopulatePiercing"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_PopulatePiercing) == 0x0000A0, "Wrong size on WBP_CharacteScreenTab_C_PopulatePiercing"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_GetPiercingArray_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_GetPiercingArray_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_HasAnyChildren_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_HasAnyChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Array_Get_Item) == 0x000028, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_LoadAsset_Blocking_ReturnValue) == 0x000050, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_LoadAsset_Blocking_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Array_Length_ReturnValue) == 0x000058, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, K2Node_DynamicCast_AsHera_Data_Asset) == 0x000060, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::K2Node_DynamicCast_AsHera_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, K2Node_DynamicCast_bSuccess) == 0x000068, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Less_IntInt_ReturnValue) == 0x000069, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Create_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Create_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_AddChild_ReturnValue) == 0x000078, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_AddChild_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Add_IntInt_ReturnValue_1) == 0x000080, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, K2Node_DynamicCast_AsUniform_Grid_Slot) == 0x000088, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::K2Node_DynamicCast_AsUniform_Grid_Slot' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, K2Node_DynamicCast_bSuccess_1) == 0x000090, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Add_IntInt_ReturnValue_2) == 0x000094, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_PopulatePiercing, CallFunc_Greater_IntInt_ReturnValue) == 0x000098, "Member 'WBP_CharacteScreenTab_C_PopulatePiercing::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera \ +static_assert(alignof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera) == 0x000038, "Wrong size on WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_GetHud_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_GetHUDWidget_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_IsPlayerLockedIntoDialogue_ReturnValue) == 0x000018, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_IsPlayerLockedIntoDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_GetPlayerController_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_GetAttachParentActor_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000030, "Member 'WBP_CharacteScreenTab_C_Reset_to_Game_Play_Camera::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_Set3DModel \ +static_assert(alignof(WBP_CharacteScreenTab_C_Set3DModel) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_Set3DModel"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_Set3DModel) == 0x000030, "Wrong size on WBP_CharacteScreenTab_C_Set3DModel"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_Set3DModel::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_CharacteScreenTab_C_Set3DModel::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_IsValid_ReturnValue) == 0x00000C, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_IsValid_ReturnValue_1) == 0x00000D, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_GetAllActorsOfClass_OutActors) == 0x000010, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_GetAllActorsOfClass_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_Array_Get_Item) == 0x000020, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_Less_IntInt_ReturnValue) == 0x00002C, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Set3DModel, CallFunc_EqualEqual_GameplayTag_ReturnValue) == 0x00002D, "Member 'WBP_CharacteScreenTab_C_Set3DModel::CallFunc_EqualEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_SetCaptureScene \ +static_assert(alignof(WBP_CharacteScreenTab_C_SetCaptureScene) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_SetCaptureScene"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_SetCaptureScene) == 0x000088, "Wrong size on WBP_CharacteScreenTab_C_SetCaptureScene"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_Add_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetHud_ReturnValue) == 0x000010, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetHud_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetHUDWidget_ReturnValue) == 0x000018, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetHUDWidget_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_K2_GetRootComponent_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_K2_GetRootComponent_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetPlayerController_ReturnValue) == 0x000030, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetPlayerController_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_IsPlayerLockedIntoDialogue_ReturnValue) == 0x000038, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_IsPlayerLockedIntoDialogue_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetAttachParentActor_ReturnValue) == 0x000040, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetAttachParentActor_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_K2_GetRootComponent_ReturnValue_1) == 0x000048, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_K2_GetRootComponent_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_GetAllActorsWithTag_OutActors) == 0x000050, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_GetAllActorsWithTag_OutActors' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_Array_Length_ReturnValue) == 0x000060, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_Array_Get_Item) == 0x000068, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, CallFunc_Less_IntInt_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, K2Node_DynamicCast_AsCine_Camera_Actor) == 0x000078, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::K2Node_DynamicCast_AsCine_Camera_Actor' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCaptureScene, K2Node_DynamicCast_bSuccess) == 0x000080, "Member 'WBP_CharacteScreenTab_C_SetCaptureScene::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_SetCurrentSelectedItems \ +static_assert(alignof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_SetCurrentSelectedItems"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems) == 0x000060, "Wrong size on WBP_CharacteScreenTab_C_SetCurrentSelectedItems"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, CallFunc_GetChildAt_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::CallFunc_GetChildAt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_AsHorizontal_Box) == 0x000008, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_AsHorizontal_Box' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000018, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_bSuccess_1) == 0x000020, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, CallFunc_GetChildAt_ReturnValue_1) == 0x000028, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::CallFunc_GetChildAt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button) == 0x000030, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_bSuccess_2) == 0x000038, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_bSuccess_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, CallFunc_GetProperty_ReturnValue) == 0x00003C, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, CallFunc_GetCostumeButtonWithTag_ReturnValue) == 0x000048, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::CallFunc_GetCostumeButtonWithTag_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_1) == 0x000050, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_AsWBP_Character_Costumisation_Button_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, K2Node_DynamicCast_bSuccess_3) == 0x000058, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::K2Node_DynamicCast_bSuccess_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetCurrentSelectedItems, CallFunc_IsValid_ReturnValue) == 0x000059, "Member 'WBP_CharacteScreenTab_C_SetCurrentSelectedItems::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_SetLastRowNavigation \ +static_assert(alignof(WBP_CharacteScreenTab_C_SetLastRowNavigation) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_SetLastRowNavigation"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_SetLastRowNavigation) == 0x000128, "Wrong size on WBP_CharacteScreenTab_C_SetLastRowNavigation"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Array_Index_Variable) == 0x000000, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Loop_Counter_Variable) == 0x000004, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue) == 0x000008, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue) == 0x00000C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Loop_Counter_Variable_2) == 0x000014, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Loop_Counter_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_1) == 0x000018, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_2) == 0x00001C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Array_Index_Variable_1) == 0x000020, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_1) == 0x000024, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Array_Index_Variable_2) == 0x000028, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Array_Index_Variable_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_2) == 0x00002C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Loop_Counter_Variable_3) == 0x000030, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Loop_Counter_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_3) == 0x000034, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, Temp_int_Array_Index_Variable_3) == 0x000038, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::Temp_int_Array_Index_Variable_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_3) == 0x00003C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetChildrenCount_ReturnValue) == 0x000040, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetChildrenCount_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetAllChildren_ReturnValue) == 0x000048, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_4) == 0x000058, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Get_Item) == 0x000060, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_4) == 0x000068, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_4' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_EqualEqual_IntInt_ReturnValue) == 0x00006C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_EqualEqual_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Length_ReturnValue) == 0x000070, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Less_IntInt_ReturnValue) == 0x000074, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetChildrenCount_ReturnValue_1) == 0x000078, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetChildrenCount_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetChildrenCount_ReturnValue_2) == 0x00007C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetChildrenCount_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_5) == 0x000080, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_IntInt_ReturnValue_6) == 0x000084, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_5) == 0x000088, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_5' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_6) == 0x00008C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_6' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_EqualEqual_IntInt_ReturnValue_1) == 0x000090, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_EqualEqual_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_EqualEqual_IntInt_ReturnValue_2) == 0x000091, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_EqualEqual_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetAllChildren_ReturnValue_1) == 0x000098, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetAllChildren_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetAllChildren_ReturnValue_2) == 0x0000A8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetAllChildren_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Get_Item_1) == 0x0000B8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Get_Item_2) == 0x0000C0, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Get_Item_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Length_ReturnValue_1) == 0x0000C8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Length_ReturnValue_2) == 0x0000CC, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Length_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Less_IntInt_ReturnValue_1) == 0x0000D0, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Less_IntInt_ReturnValue_2) == 0x0000D1, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Less_IntInt_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetAllChildren_ReturnValue_3) == 0x0000D8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetAllChildren_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_GetChildrenCount_ReturnValue_3) == 0x0000E8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_GetChildrenCount_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Get_Item_3) == 0x0000F0, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Get_Item_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Conv_IntToDouble_ReturnValue) == 0x0000F8, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Conv_IntToDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000100, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Array_Length_ReturnValue_3) == 0x000108, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Array_Length_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Round64_ReturnValue) == 0x000110, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Round64_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Less_IntInt_ReturnValue_3) == 0x000118, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Less_IntInt_ReturnValue_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Conv_Int64ToInt_ReturnValue) == 0x00011C, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Conv_Int64ToInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_Add_IntInt_ReturnValue_7) == 0x000120, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_Add_IntInt_ReturnValue_7' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLastRowNavigation, CallFunc_EqualEqual_IntInt_ReturnValue_3) == 0x000124, "Member 'WBP_CharacteScreenTab_C_SetLastRowNavigation::CallFunc_EqualEqual_IntInt_ReturnValue_3' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_SetLogo \ +static_assert(alignof(WBP_CharacteScreenTab_C_SetLogo) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_SetLogo"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_SetLogo) == 0x000030, "Wrong size on WBP_CharacteScreenTab_C_SetLogo"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, CallFunc_GetEquippedCostumeButton_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_SetLogo::CallFunc_GetEquippedCostumeButton_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000008, "Member 'WBP_CharacteScreenTab_C_SetLogo::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_CharacteScreenTab_C_SetLogo::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, CallFunc_GetProperty_ReturnValue) == 0x000014, "Member 'WBP_CharacteScreenTab_C_SetLogo::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, CallFunc_GetClan_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_SetLogo::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_SetLogo, CallFunc_NotEqual_GameplayTag_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_SetLogo::CallFunc_NotEqual_GameplayTag_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_Tick \ +static_assert(alignof(WBP_CharacteScreenTab_C_Tick) == 0x000004, "Wrong alignment on WBP_CharacteScreenTab_C_Tick"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_Tick) == 0x00003C, "Wrong size on WBP_CharacteScreenTab_C_Tick"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_CharacteScreenTab_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_CharacteScreenTab_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_UpdateClanLogoBKG \ +static_assert(alignof(WBP_CharacteScreenTab_C_UpdateClanLogoBKG) == 0x000001, "Wrong alignment on WBP_CharacteScreenTab_C_UpdateClanLogoBKG"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_UpdateClanLogoBKG) == 0x000002, "Wrong size on WBP_CharacteScreenTab_C_UpdateClanLogoBKG"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanLogoBKG, InClan) == 0x000000, "Member 'WBP_CharacteScreenTab_C_UpdateClanLogoBKG::InClan' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanLogoBKG, K2Node_SwitchEnum_CmpSuccess) == 0x000001, "Member 'WBP_CharacteScreenTab_C_UpdateClanLogoBKG::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_UpdateClanPosition \ +static_assert(alignof(WBP_CharacteScreenTab_C_UpdateClanPosition) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_UpdateClanPosition"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_UpdateClanPosition) == 0x000030, "Wrong size on WBP_CharacteScreenTab_C_UpdateClanPosition"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, RowToSwap) == 0x000000, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::RowToSwap' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, MainRow) == 0x000008, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::MainRow' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000010, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, CallFunc_GetClan_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateClanPosition, CallFunc_Conv_ByteToInt_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_UpdateClanPosition::CallFunc_Conv_ByteToInt_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_UpdateDLCVisibility \ +static_assert(alignof(WBP_CharacteScreenTab_C_UpdateDLCVisibility) == 0x000001, "Wrong alignment on WBP_CharacteScreenTab_C_UpdateDLCVisibility"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_UpdateDLCVisibility) == 0x000002, "Wrong size on WBP_CharacteScreenTab_C_UpdateDLCVisibility"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateDLCVisibility, CallFunc_GetProperty_ReturnValue) == 0x000000, "Member 'WBP_CharacteScreenTab_C_UpdateDLCVisibility::CallFunc_GetProperty_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateDLCVisibility, CallFunc_IsValid_ReturnValue) == 0x000001, "Member 'WBP_CharacteScreenTab_C_UpdateDLCVisibility::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_UpdateRetainerBoxFade \ +static_assert(alignof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_UpdateRetainerBoxFade"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade) == 0x000040, "Wrong size on WBP_CharacteScreenTab_C_UpdateRetainerBoxFade"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, InScrollOffset) == 0x000000, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::InScrollOffset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, InGridPanel) == 0x000008, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::InGridPanel' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, MaxElements) == 0x000010, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::MaxElements' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_IsValid_ReturnValue) == 0x000014, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_GetAllChildren_ReturnValue) == 0x000018, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_GetAllChildren_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_Array_Length_ReturnValue) == 0x000028, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_Greater_IntInt_ReturnValue) == 0x00002C, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_GetEffectMaterial_ReturnValue) == 0x000030, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_GetEffectMaterial_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_IsValid_ReturnValue_1) == 0x000038, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateRetainerBoxFade, CallFunc_SetScalarParameterValue_Value_ImplicitCast) == 0x00003C, "Member 'WBP_CharacteScreenTab_C_UpdateRetainerBoxFade::CallFunc_SetScalarParameterValue_Value_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_UpdateSelectionButton \ +static_assert(alignof(WBP_CharacteScreenTab_C_UpdateSelectionButton) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_UpdateSelectionButton"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_UpdateSelectionButton) == 0x000038, "Wrong size on WBP_CharacteScreenTab_C_UpdateSelectionButton"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, InButton) == 0x000000, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::InButton' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, CurrentButton) == 0x000008, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::CurrentButton' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button) == 0x000010, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, K2Node_DynamicCast_bSuccess) == 0x000018, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000020, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x000028, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, K2Node_DynamicCast_bSuccess_1) == 0x000030, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_UpdateSelectionButton, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x000031, "Member 'WBP_CharacteScreenTab_C_UpdateSelectionButton::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_CharacteScreenTab_C_ViewCostume \ +static_assert(alignof(WBP_CharacteScreenTab_C_ViewCostume) == 0x000008, "Wrong alignment on WBP_CharacteScreenTab_C_ViewCostume"); \ +static_assert(sizeof(WBP_CharacteScreenTab_C_ViewCostume) == 0x0001E8, "Wrong size on WBP_CharacteScreenTab_C_ViewCostume"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, InButton) == 0x000000, "Member 'WBP_CharacteScreenTab_C_ViewCostume::InButton' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CurrentOutfit) == 0x000008, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CurrentOutfit' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button) == 0x0000A8, "Member 'WBP_CharacteScreenTab_C_ViewCostume::K2Node_DynamicCast_AsWrestler_Character_Costumisation_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, K2Node_DynamicCast_bSuccess) == 0x0000B0, "Member 'WBP_CharacteScreenTab_C_ViewCostume::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Conv_TextToString_ReturnValue) == 0x0000B8, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Conv_TextToString_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_GetCurrentOutfitVariant_ReturnValue) == 0x0000C8, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_GetCurrentOutfitVariant_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_GetCharacterItemDataAsset_ReturnValue) == 0x000168, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_GetCharacterItemDataAsset_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset) == 0x000170, "Member 'WBP_CharacteScreenTab_C_ViewCostume::K2Node_DynamicCast_AsWrestler_Character_Costume_Data_Asset' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, K2Node_DynamicCast_bSuccess_1) == 0x000178, "Member 'WBP_CharacteScreenTab_C_ViewCostume::K2Node_DynamicCast_bSuccess_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_GetCustomButtonType_ReturnValue) == 0x000179, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_GetCustomButtonType_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_IsCostumeUnlocked_ReturnValue) == 0x00017A, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_IsCostumeUnlocked_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x00017B, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Conv_TextToString_ReturnValue_1) == 0x000180, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Conv_TextToString_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Conv_TextToString_ReturnValue_2) == 0x000190, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Conv_TextToString_ReturnValue_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Replace_ReturnValue) == 0x0001A0, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Replace_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_GetGenderVariation_ReturnValue) == 0x0001B0, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_GetGenderVariation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Conv_StringToText_ReturnValue) == 0x0001C8, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_CharacteScreenTab_C_ViewCostume, CallFunc_Contains_ReturnValue) == 0x0001E0, "Member 'WBP_CharacteScreenTab_C_ViewCostume::CallFunc_Contains_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_CharacteScreenTab_C \ +static_assert(alignof(UWBP_CharacteScreenTab_C) == 0x000008, "Wrong alignment on UWBP_CharacteScreenTab_C"); \ +static_assert(sizeof(UWBP_CharacteScreenTab_C) == 0x000698, "Wrong size on UWBP_CharacteScreenTab_C"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, UberGraphFrame) == 0x0004E0, "Member 'UWBP_CharacteScreenTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Back) == 0x0004E8, "Member 'UWBP_CharacteScreenTab_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Backing_Brujah) == 0x0004F0, "Member 'UWBP_CharacteScreenTab_C::Backing_Brujah' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, BanuHaqim) == 0x0004F8, "Member 'UWBP_CharacteScreenTab_C::BanuHaqim' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Brujah) == 0x000500, "Member 'UWBP_CharacteScreenTab_C::Brujah' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Brujah_1) == 0x000508, "Member 'UWBP_CharacteScreenTab_C::Brujah_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Brujah_2) == 0x000510, "Member 'UWBP_CharacteScreenTab_C::Brujah_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, ClanLogoBKG) == 0x000518, "Member 'UWBP_CharacteScreenTab_C::ClanLogoBKG' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, CostumeDescription) == 0x000520, "Member 'UWBP_CharacteScreenTab_C::CostumeDescription' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, CostumeName) == 0x000528, "Member 'UWBP_CharacteScreenTab_C::CostumeName' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, DownAction) == 0x000530, "Member 'UWBP_CharacteScreenTab_C::DownAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Lasombra) == 0x000538, "Member 'UWBP_CharacteScreenTab_C::Lasombra' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, NavigationAction) == 0x000540, "Member 'UWBP_CharacteScreenTab_C::NavigationAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Panel) == 0x000548, "Member 'UWBP_CharacteScreenTab_C::Panel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Panel_1) == 0x000550, "Member 'UWBP_CharacteScreenTab_C::Panel_1' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Panel_2) == 0x000558, "Member 'UWBP_CharacteScreenTab_C::Panel_2' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Panel_3) == 0x000560, "Member 'UWBP_CharacteScreenTab_C::Panel_3' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, PatternEnd_Left) == 0x000568, "Member 'UWBP_CharacteScreenTab_C::PatternEnd_Left' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, RetainerBox) == 0x000570, "Member 'UWBP_CharacteScreenTab_C::RetainerBox' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Select) == 0x000578, "Member 'UWBP_CharacteScreenTab_C::Select' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, TCR_Eyes) == 0x000580, "Member 'UWBP_CharacteScreenTab_C::TCR_Eyes' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, TCR_Hair) == 0x000588, "Member 'UWBP_CharacteScreenTab_C::TCR_Hair' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, TCR_MakeUp) == 0x000590, "Member 'UWBP_CharacteScreenTab_C::TCR_MakeUp' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, TCR_Outfits) == 0x000598, "Member 'UWBP_CharacteScreenTab_C::TCR_Outfits' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, TCR_Piercing) == 0x0005A0, "Member 'UWBP_CharacteScreenTab_C::TCR_Piercing' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Text) == 0x0005A8, "Member 'UWBP_CharacteScreenTab_C::Text' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Toreador) == 0x0005B0, "Member 'UWBP_CharacteScreenTab_C::Toreador' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Tremere) == 0x0005B8, "Member 'UWBP_CharacteScreenTab_C::Tremere' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, UpAction) == 0x0005C0, "Member 'UWBP_CharacteScreenTab_C::UpAction' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Ventrue) == 0x0005C8, "Member 'UWBP_CharacteScreenTab_C::Ventrue' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, CostumesTrackingList) == 0x0005D0, "Member 'UWBP_CharacteScreenTab_C::CostumesTrackingList' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, LastSelectedButton) == 0x0005D8, "Member 'UWBP_CharacteScreenTab_C::LastSelectedButton' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, WrestlerCharacter) == 0x0005E0, "Member 'UWBP_CharacteScreenTab_C::WrestlerCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, MaxOffset) == 0x0005E8, "Member 'UWBP_CharacteScreenTab_C::MaxOffset' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, IsShadowSilkOwned) == 0x0005F0, "Member 'UWBP_CharacteScreenTab_C::IsShadowSilkOwned' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, CustomasationButtons) == 0x0005F8, "Member 'UWBP_CharacteScreenTab_C::CustomasationButtons' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Row) == 0x000608, "Member 'UWBP_CharacteScreenTab_C::Row' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, colomn) == 0x00060C, "Member 'UWBP_CharacteScreenTab_C::colomn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, PT_Menu_TabID) == 0x000610, "Member 'UWBP_CharacteScreenTab_C::PT_Menu_TabID' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, Phyre3DModel) == 0x000618, "Member 'UWBP_CharacteScreenTab_C::Phyre3DModel' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, LockMessage) == 0x000620, "Member 'UWBP_CharacteScreenTab_C::LockMessage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, ZoomIn) == 0x000638, "Member 'UWBP_CharacteScreenTab_C::ZoomIn' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, As_Scroll_Box) == 0x000640, "Member 'UWBP_CharacteScreenTab_C::As_Scroll_Box' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, InitialBodyCameraPosition) == 0x000648, "Member 'UWBP_CharacteScreenTab_C::InitialBodyCameraPosition' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, LastHovered) == 0x000660, "Member 'UWBP_CharacteScreenTab_C::LastHovered' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, UICamera) == 0x000668, "Member 'UWBP_CharacteScreenTab_C::UICamera' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, InitModelLoc) == 0x000670, "Member 'UWBP_CharacteScreenTab_C::InitModelLoc' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, PI_GamepadType) == 0x000688, "Member 'UWBP_CharacteScreenTab_C::PI_GamepadType' has a wrong offset!"); \ +static_assert(offsetof(UWBP_CharacteScreenTab_C, HalloweenDLC) == 0x000690, "Member 'UWBP_CharacteScreenTab_C::HalloweenDLC' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UDisabledFileMenuFont_C \ +static_assert(alignof(UDisabledFileMenuFont_C) == 0x000010, "Wrong alignment on UDisabledFileMenuFont_C"); \ +static_assert(sizeof(UDisabledFileMenuFont_C) == 0x0001B0, "Wrong size on UDisabledFileMenuFont_C"); \ + +#define DUMPER7_ASSERTS_TCR_Caption_C_SetCaption \ +static_assert(alignof(TCR_Caption_C_SetCaption) == 0x000008, "Wrong alignment on TCR_Caption_C_SetCaption"); \ +static_assert(sizeof(TCR_Caption_C_SetCaption) == 0x000028, "Wrong size on TCR_Caption_C_SetCaption"); \ +static_assert(offsetof(TCR_Caption_C_SetCaption, InCaption) == 0x000000, "Member 'TCR_Caption_C_SetCaption::InCaption' has a wrong offset!"); \ +static_assert(offsetof(TCR_Caption_C_SetCaption, CallFunc_Conv_StringToText_ReturnValue) == 0x000010, "Member 'TCR_Caption_C_SetCaption::CallFunc_Conv_StringToText_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_TCR_Caption_C_ExecuteUbergraph_TCR_Caption \ +static_assert(alignof(TCR_Caption_C_ExecuteUbergraph_TCR_Caption) == 0x000004, "Wrong alignment on TCR_Caption_C_ExecuteUbergraph_TCR_Caption"); \ +static_assert(sizeof(TCR_Caption_C_ExecuteUbergraph_TCR_Caption) == 0x000004, "Wrong size on TCR_Caption_C_ExecuteUbergraph_TCR_Caption"); \ +static_assert(offsetof(TCR_Caption_C_ExecuteUbergraph_TCR_Caption, EntryPoint) == 0x000000, "Member 'TCR_Caption_C_ExecuteUbergraph_TCR_Caption::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UTCR_Caption_C \ +static_assert(alignof(UTCR_Caption_C) == 0x000008, "Wrong alignment on UTCR_Caption_C"); \ +static_assert(sizeof(UTCR_Caption_C) == 0x0002F8, "Wrong size on UTCR_Caption_C"); \ +static_assert(offsetof(UTCR_Caption_C, UberGraphFrame) == 0x0002C8, "Member 'UTCR_Caption_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UTCR_Caption_C, CaptionText) == 0x0002D0, "Member 'UTCR_Caption_C::CaptionText' has a wrong offset!"); \ +static_assert(offsetof(UTCR_Caption_C, Label) == 0x0002D8, "Member 'UTCR_Caption_C::Label' has a wrong offset!"); \ +static_assert(offsetof(UTCR_Caption_C, Justification) == 0x0002F0, "Member 'UTCR_Caption_C::Justification' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleConfirm_Highlight_C \ +static_assert(alignof(UCommonTextStyleConfirm_Highlight_C) == 0x000010, "Wrong alignment on UCommonTextStyleConfirm_Highlight_C"); \ +static_assert(sizeof(UCommonTextStyleConfirm_Highlight_C) == 0x0001B0, "Wrong size on UCommonTextStyleConfirm_Highlight_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleConfirm_Normal_C \ +static_assert(alignof(UCommonTextStyleConfirm_Normal_C) == 0x000010, "Wrong alignment on UCommonTextStyleConfirm_Normal_C"); \ +static_assert(sizeof(UCommonTextStyleConfirm_Normal_C) == 0x0001B0, "Wrong size on UCommonTextStyleConfirm_Normal_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleConfirm_Disabled_C \ +static_assert(alignof(UCommonTextStyleConfirm_Disabled_C) == 0x000010, "Wrong alignment on UCommonTextStyleConfirm_Disabled_C"); \ +static_assert(sizeof(UCommonTextStyleConfirm_Disabled_C) == 0x0001B0, "Wrong size on UCommonTextStyleConfirm_Disabled_C"); \ + +#define DUMPER7_ASSERTS_UCommonButtonStyle_C \ +static_assert(alignof(UCommonButtonStyle_C) == 0x000010, "Wrong alignment on UCommonButtonStyle_C"); \ +static_assert(sizeof(UCommonButtonStyle_C) == 0x0007B0, "Wrong size on UCommonButtonStyle_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleHeading4_Purple_C \ +static_assert(alignof(UCommonTextStyleHeading4_Purple_C) == 0x000010, "Wrong alignment on UCommonTextStyleHeading4_Purple_C"); \ +static_assert(sizeof(UCommonTextStyleHeading4_Purple_C) == 0x0001B0, "Wrong size on UCommonTextStyleHeading4_Purple_C"); \ + +#define DUMPER7_ASSERTS_UCommonTextStyleActionPrompt_Hovered_C \ +static_assert(alignof(UCommonTextStyleActionPrompt_Hovered_C) == 0x000010, "Wrong alignment on UCommonTextStyleActionPrompt_Hovered_C"); \ +static_assert(sizeof(UCommonTextStyleActionPrompt_Hovered_C) == 0x0001B0, "Wrong size on UCommonTextStyleActionPrompt_Hovered_C"); \ + +#define DUMPER7_ASSERTS_ABP_Rosalind_PostProcess__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData) == 0x0000D0, "Wrong size on ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData, __NameProperty_13) == 0x000004, "Member 'ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData::__NameProperty_13' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData, __NameProperty_14) == 0x00000C, "Member 'ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData::__NameProperty_14' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData, __StructProperty_15) == 0x000018, "Member 'ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData::__StructProperty_15' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000038, "Member 'ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x0000B8, "Member 'ABP_Rosalind_PostProcess::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Rosalind_PostProcess_C_AnimGraph \ +static_assert(alignof(ABP_Rosalind_PostProcess_C_AnimGraph) == 0x000008, "Wrong alignment on ABP_Rosalind_PostProcess_C_AnimGraph"); \ +static_assert(sizeof(ABP_Rosalind_PostProcess_C_AnimGraph) == 0x000020, "Wrong size on ABP_Rosalind_PostProcess_C_AnimGraph"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess_C_AnimGraph, InPose) == 0x000000, "Member 'ABP_Rosalind_PostProcess_C_AnimGraph::InPose' has a wrong offset!"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess_C_AnimGraph, AnimGraph_0) == 0x000010, "Member 'ABP_Rosalind_PostProcess_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess \ +static_assert(alignof(ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess) == 0x000004, "Wrong alignment on ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess"); \ +static_assert(sizeof(ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess) == 0x000004, "Wrong size on ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess"); \ +static_assert(offsetof(ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess, EntryPoint) == 0x000000, "Member 'ABP_Rosalind_PostProcess_C_ExecuteUbergraph_ABP_Rosalind_PostProcess::EntryPoint' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UABP_Rosalind_PostProcess_C \ +static_assert(alignof(UABP_Rosalind_PostProcess_C) == 0x000010, "Wrong alignment on UABP_Rosalind_PostProcess_C"); \ +static_assert(sizeof(UABP_Rosalind_PostProcess_C) == 0x000DD0, "Wrong size on UABP_Rosalind_PostProcess_C"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, UberGraphFrame) == 0x000350, "Member 'UABP_Rosalind_PostProcess_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimBlueprintExtension_PropertyAccess) == 0x000358, "Member 'UABP_Rosalind_PostProcess_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimBlueprintExtension_Base) == 0x000360, "Member 'UABP_Rosalind_PostProcess_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimGraphNode_Root) == 0x000368, "Member 'UABP_Rosalind_PostProcess_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimGraphNode_LinkedInputPose) == 0x000388, "Member 'UABP_Rosalind_PostProcess_C::AnimGraphNode_LinkedInputPose' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimGraphNode_RigidBody) == 0x000440, "Member 'UABP_Rosalind_PostProcess_C::AnimGraphNode_RigidBody' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimGraphNode_LocalToComponentSpace) == 0x000D90, "Member 'UABP_Rosalind_PostProcess_C::AnimGraphNode_LocalToComponentSpace' has a wrong offset!"); \ +static_assert(offsetof(UABP_Rosalind_PostProcess_C, AnimGraphNode_ComponentToLocalSpace) == 0x000DB0, "Member 'UABP_Rosalind_PostProcess_C::AnimGraphNode_ComponentToLocalSpace' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Rosalind_1920s__FAnimBlueprintGeneratedConstantData \ +static_assert(alignof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData) == 0x000008, "Wrong alignment on AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData"); \ +static_assert(sizeof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData) == 0x000120, "Wrong size on AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __NameProperty_69) == 0x000004, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__NameProperty_69' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __NameProperty_70) == 0x00000C, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__NameProperty_70' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __IntProperty_71) == 0x000014, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__IntProperty_71' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __BoolProperty_72) == 0x000018, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__BoolProperty_72' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __FloatProperty_73) == 0x00001C, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__FloatProperty_73' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __StructProperty_74) == 0x000020, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__StructProperty_74' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __FloatProperty_75) == 0x00004C, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__FloatProperty_75' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __BoolProperty_76) == 0x000050, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__BoolProperty_76' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __EnumProperty_77) == 0x000051, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__EnumProperty_77' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __ByteProperty_78) == 0x000052, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__ByteProperty_78' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __NameProperty_79) == 0x000054, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__NameProperty_79' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __NameProperty_80) == 0x00005C, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__NameProperty_80' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __IntProperty_81) == 0x000064, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__IntProperty_81' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, __StructProperty_82) == 0x000068, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::__StructProperty_82' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_PropertyAccess) == 0x000088, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData, AnimBlueprintExtension_Base) == 0x000108, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedConstantData::AnimBlueprintExtension_Base' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Rosalind_1920s__FAnimBlueprintGeneratedMutableData \ +static_assert(alignof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData) == 0x000004, "Wrong alignment on AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData"); \ +static_assert(sizeof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData) == 0x000010, "Wrong size on AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData, __BoolProperty) == 0x000001, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData::__BoolProperty' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData, __FloatProperty_0) == 0x000004, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData::__FloatProperty_0' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData, __FloatProperty_1) == 0x000008, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData::__FloatProperty_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData, __FloatProperty_2) == 0x00000C, "Member 'AnimBP_Rosalind_1920s::FAnimBlueprintGeneratedMutableData::__FloatProperty_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Rosalind_1920s_C_AnimGraph \ +static_assert(alignof(AnimBP_Rosalind_1920s_C_AnimGraph) == 0x000008, "Wrong alignment on AnimBP_Rosalind_1920s_C_AnimGraph"); \ +static_assert(sizeof(AnimBP_Rosalind_1920s_C_AnimGraph) == 0x000010, "Wrong size on AnimBP_Rosalind_1920s_C_AnimGraph"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s_C_AnimGraph, AnimGraph_0) == 0x000000, "Member 'AnimBP_Rosalind_1920s_C_AnimGraph::AnimGraph_0' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s \ +static_assert(alignof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s) == 0x000004, "Wrong alignment on AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s"); \ +static_assert(sizeof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s) == 0x000008, "Wrong size on AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s, EntryPoint) == 0x000000, "Member 'AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s, CallFunc_IsBlendingPoses_ReturnValue) == 0x000004, "Member 'AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s::CallFunc_IsBlendingPoses_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s, CallFunc_IsBlendingPoses_ReturnValue_1) == 0x000005, "Member 'AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s::CallFunc_IsBlendingPoses_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s, CallFunc_Not_PreBool_ReturnValue) == 0x000006, "Member 'AnimBP_Rosalind_1920s_C_ExecuteUbergraph_AnimBP_Rosalind_1920s::CallFunc_Not_PreBool_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UAnimBP_Rosalind_1920s_C \ +static_assert(alignof(UAnimBP_Rosalind_1920s_C) == 0x000010, "Wrong alignment on UAnimBP_Rosalind_1920s_C"); \ +static_assert(sizeof(UAnimBP_Rosalind_1920s_C) == 0x0009C0, "Wrong size on UAnimBP_Rosalind_1920s_C"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, UberGraphFrame) == 0x0003A0, "Member 'UAnimBP_Rosalind_1920s_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, __AnimBlueprintMutables) == 0x0003A8, "Member 'UAnimBP_Rosalind_1920s_C::__AnimBlueprintMutables' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimBlueprintExtension_PropertyAccess) == 0x0003B8, "Member 'UAnimBP_Rosalind_1920s_C::AnimBlueprintExtension_PropertyAccess' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimBlueprintExtension_Base) == 0x0003C0, "Member 'UAnimBP_Rosalind_1920s_C::AnimBlueprintExtension_Base' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_Root) == 0x0003C8, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_Root' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_TransitionResult_1) == 0x0003E8, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_TransitionResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_TransitionResult) == 0x000410, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_TransitionResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_SequencePlayer_2) == 0x000438, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_SequencePlayer_2' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_SequencePlayer_1) == 0x000480, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_SequencePlayer_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_TwoWayBlend_1) == 0x0004C8, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_TwoWayBlend_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_PoseSnapshot_1) == 0x000590, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_PoseSnapshot_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_LayeredBoneBlend) == 0x000620, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_LayeredBoneBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_StateResult_1) == 0x000710, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_StateResult_1' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_SequencePlayer) == 0x000730, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_SequencePlayer' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_TwoWayBlend) == 0x000778, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_TwoWayBlend' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_PoseSnapshot) == 0x000840, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_PoseSnapshot' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_StateResult) == 0x0008D0, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_StateResult' has a wrong offset!"); \ +static_assert(offsetof(UAnimBP_Rosalind_1920s_C, AnimGraphNode_StateMachine) == 0x0008F0, "Member 'UAnimBP_Rosalind_1920s_C::AnimGraphNode_StateMachine' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_ABP_Rosalind_C \ +static_assert(alignof(ABP_Rosalind_C) == 0x000008, "Wrong alignment on ABP_Rosalind_C"); \ +static_assert(sizeof(ABP_Rosalind_C) == 0x000388, "Wrong size on ABP_Rosalind_C"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature) == 0x000008, "Wrong size on WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature, Button) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_BndEvt__WBP_AbilityEquipScreenTab_Back_K2Node_ComponentBoundEvent_0_BUIOnClickedSignature__DelegateSignature::Button' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab) == 0x000088, "Wrong size on WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, EntryPoint) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_CreateDelegate_OutputDelegate) == 0x000004, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, Temp_int_Variable) == 0x000014, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::Temp_int_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, Temp_int_Variable_1) == 0x000018, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::Temp_int_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_Greater_IntInt_ReturnValue) == 0x00001C, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_Greater_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_PlayAnimation_ReturnValue) == 0x000020, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_PlayAnimation_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_Subtract_IntInt_ReturnValue) == 0x000028, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_Subtract_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_GetPlayerPawn_ReturnValue) == 0x000030, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_GetPlayerPawn_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_DynamicCast_AsWrestler_Character) == 0x000038, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_DynamicCast_AsWrestler_Character' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_DynamicCast_bSuccess) == 0x000040, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_PlayAnimation_ReturnValue_1) == 0x000048, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_PlayAnimation_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_GetWorldSubsystem_ReturnValue) == 0x000050, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_GetWorldSubsystem_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_Add_IntInt_ReturnValue) == 0x000058, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_CustomEvent_CostumeTag) == 0x00005C, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_CustomEvent_CostumeTag' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_IsAnimationPlaying_ReturnValue) == 0x000064, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_IsAnimationPlaying_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_CustomEvent_InAbility_1) == 0x000068, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_CustomEvent_InAbility_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_CustomEvent_InAbility) == 0x000070, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_CustomEvent_InAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, K2Node_ComponentBoundEvent_Button) == 0x000078, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::K2Node_ComponentBoundEvent_Button' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab, CallFunc_GetRPGMenu_ReturnValue) == 0x000080, "Member 'WBP_AbilityEquipScreenTab_C_ExecuteUbergraph_WBP_AbilityEquipScreenTab::CallFunc_GetRPGMenu_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent) == 0x000008, "Wrong size on WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent, InAbility) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_OnAbilityFocusLostEvent::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent) == 0x000008, "Wrong size on WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent, InAbility) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_OnAbilityFocusReceivedEvent::InAbility' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked) == 0x000004, "Wrong alignment on WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked) == 0x000008, "Wrong size on WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked, CostumeTag) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_OnCostumeUnlocked::CostumeTag' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_RestoreFocus \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_RestoreFocus) == 0x000001, "Wrong alignment on WBP_AbilityEquipScreenTab_C_RestoreFocus"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_RestoreFocus) == 0x000001, "Wrong size on WBP_AbilityEquipScreenTab_C_RestoreFocus"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_RestoreFocus, CallFunc_IsValid_ReturnValue) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_RestoreFocus::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_SetUpActiveTree \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_SetUpActiveTree"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree) == 0x000080, "Wrong size on WBP_AbilityEquipScreenTab_C_SetUpActiveTree"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, Temp_int_Loop_Counter_Variable) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::Temp_int_Loop_Counter_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Add_IntInt_ReturnValue) == 0x000004, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Add_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, Temp_int_Array_Index_Variable) == 0x000008, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::Temp_int_Array_Index_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, Temp_int_Array_Index_Variable_1) == 0x00000C, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::Temp_int_Array_Index_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, Temp_int_Loop_Counter_Variable_1) == 0x000010, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::Temp_int_Loop_Counter_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Add_IntInt_ReturnValue_1) == 0x000014, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Add_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, K2Node_CreateDelegate_OutputDelegate) == 0x000018, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::K2Node_CreateDelegate_OutputDelegate' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, K2Node_CreateDelegate_OutputDelegate_1) == 0x000028, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::K2Node_CreateDelegate_OutputDelegate_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, K2Node_CreateDelegate_OutputDelegate_2) == 0x000038, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::K2Node_CreateDelegate_OutputDelegate_2' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, K2Node_CreateDelegate_OutputDelegate_3) == 0x000048, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::K2Node_CreateDelegate_OutputDelegate_3' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_IsPlayerFabien_Return) == 0x000058, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_IsPlayerFabien_Return' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Array_Get_Item) == 0x000060, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Array_Get_Item' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Array_Length_ReturnValue) == 0x000068, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Array_Length_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Less_IntInt_ReturnValue) == 0x00006C, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Less_IntInt_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_IsValid_ReturnValue) == 0x00006D, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_IsValid_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Array_Get_Item_1) == 0x000070, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Array_Get_Item_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Array_Length_ReturnValue_1) == 0x000078, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Array_Length_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_Less_IntInt_ReturnValue_1) == 0x00007C, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_Less_IntInt_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_SetUpActiveTree, CallFunc_IsValid_ReturnValue_1) == 0x00007D, "Member 'WBP_AbilityEquipScreenTab_C_SetUpActiveTree::CallFunc_IsValid_ReturnValue_1' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_UpdateLogoBackground \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_UpdateLogoBackground"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground) == 0x000020, "Wrong size on WBP_AbilityEquipScreenTab_C_UpdateLogoBackground"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground, K2Node_DynamicCast_AsWrestler_Player_State_in_Game) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_UpdateLogoBackground::K2Node_DynamicCast_AsWrestler_Player_State_in_Game' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground, K2Node_DynamicCast_bSuccess) == 0x000008, "Member 'WBP_AbilityEquipScreenTab_C_UpdateLogoBackground::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground, CallFunc_GetClan_ReturnValue) == 0x000010, "Member 'WBP_AbilityEquipScreenTab_C_UpdateLogoBackground::CallFunc_GetClan_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateLogoBackground, K2Node_SwitchEnum_CmpSuccess) == 0x000018, "Member 'WBP_AbilityEquipScreenTab_C_UpdateLogoBackground::K2Node_SwitchEnum_CmpSuccess' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus) == 0x000020, "Wrong size on WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus, IsFocused) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus::IsFocused' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus, InFocusedAbility) == 0x000008, "Member 'WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus::InFocusedAbility' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus, CallFunc_EqualEqual_ByteByte_ReturnValue) == 0x000010, "Member 'WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus::CallFunc_EqualEqual_ByteByte_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus, CallFunc_GetAbilityVideoclip_ReturnValue) == 0x000018, "Member 'WBP_AbilityEquipScreenTab_C_UpdateOnButtonFocus::CallFunc_GetAbilityVideoclip_ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_UpdateResonancePoints \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_UpdateResonancePoints"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints) == 0x000068, "Wrong size on WBP_AbilityEquipScreenTab_C_UpdateResonancePoints"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, Temp_delegate_Variable) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_GetAvailableCholericPoints_ReturnValue) == 0x000010, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_GetAvailableCholericPoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_GetAvailableMelancholicPoints_ReturnValue) == 0x000014, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_GetAvailableMelancholicPoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_Conv_IntToText_ReturnValue) == 0x000018, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_Conv_IntToText_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_Conv_IntToText_ReturnValue_1) == 0x000030, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_Conv_IntToText_ReturnValue_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_GetAvailableSanguinePoints_ReturnValue) == 0x000048, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_GetAvailableSanguinePoints_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_UpdateResonancePoints, CallFunc_Conv_IntToText_ReturnValue_2) == 0x000050, "Member 'WBP_AbilityEquipScreenTab_C_UpdateResonancePoints::CallFunc_Conv_IntToText_ReturnValue_2' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget \ +static_assert(alignof(WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong alignment on WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(sizeof(WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget) == 0x000008, "Wrong size on WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget"); \ +static_assert(offsetof(WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget, ReturnValue) == 0x000000, "Member 'WBP_AbilityEquipScreenTab_C_BP_GetDesiredFocusTarget::ReturnValue' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_AbilityEquipScreenTab_C \ +static_assert(alignof(UWBP_AbilityEquipScreenTab_C) == 0x000008, "Wrong alignment on UWBP_AbilityEquipScreenTab_C"); \ +static_assert(sizeof(UWBP_AbilityEquipScreenTab_C) == 0x000550, "Wrong size on UWBP_AbilityEquipScreenTab_C"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, UberGraphFrame) == 0x000490, "Member 'UWBP_AbilityEquipScreenTab_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, FadeInOut) == 0x000498, "Member 'UWBP_AbilityEquipScreenTab_C::FadeInOut' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, AbilityTree) == 0x0004A0, "Member 'UWBP_AbilityEquipScreenTab_C::AbilityTree' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, AbiltyNavigation) == 0x0004A8, "Member 'UWBP_AbilityEquipScreenTab_C::AbiltyNavigation' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, Back) == 0x0004B0, "Member 'UWBP_AbilityEquipScreenTab_C::Back' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, CholericPoints) == 0x0004B8, "Member 'UWBP_AbilityEquipScreenTab_C::CholericPoints' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, ClanLogo_BigBackground) == 0x0004C0, "Member 'UWBP_AbilityEquipScreenTab_C::ClanLogo_BigBackground' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, CursorImage) == 0x0004C8, "Member 'UWBP_AbilityEquipScreenTab_C::CursorImage' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, MalkavianAbilityTree) == 0x0004D0, "Member 'UWBP_AbilityEquipScreenTab_C::MalkavianAbilityTree' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, MelancholicPoints) == 0x0004D8, "Member 'UWBP_AbilityEquipScreenTab_C::MelancholicPoints' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, NotificationWidgetOverlay) == 0x0004E0, "Member 'UWBP_AbilityEquipScreenTab_C::NotificationWidgetOverlay' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, SanguinePoints) == 0x0004E8, "Member 'UWBP_AbilityEquipScreenTab_C::SanguinePoints' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, Select) == 0x0004F0, "Member 'UWBP_AbilityEquipScreenTab_C::Select' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, SkillPointsandBloodCurrency) == 0x0004F8, "Member 'UWBP_AbilityEquipScreenTab_C::SkillPointsandBloodCurrency' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, TCR_AbilityTooltipWidget) == 0x000500, "Member 'UWBP_AbilityEquipScreenTab_C::TCR_AbilityTooltipWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, TreeSwitcher) == 0x000508, "Member 'UWBP_AbilityEquipScreenTab_C::TreeSwitcher' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, WBP_OutfitNotification) == 0x000510, "Member 'UWBP_AbilityEquipScreenTab_C::WBP_OutfitNotification' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, WBP_XPFillBar) == 0x000518, "Member 'UWBP_AbilityEquipScreenTab_C::WBP_XPFillBar' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, WCharacter) == 0x000520, "Member 'UWBP_AbilityEquipScreenTab_C::WCharacter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, PlayerClan) == 0x000528, "Member 'UWBP_AbilityEquipScreenTab_C::PlayerClan' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, DesiredFocusToWidget) == 0x000530, "Member 'UWBP_AbilityEquipScreenTab_C::DesiredFocusToWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, NotifCounter) == 0x000538, "Member 'UWBP_AbilityEquipScreenTab_C::NotifCounter' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, LastFocusedWidget) == 0x000540, "Member 'UWBP_AbilityEquipScreenTab_C::LastFocusedWidget' has a wrong offset!"); \ +static_assert(offsetof(UWBP_AbilityEquipScreenTab_C, PT_Menu_TabID) == 0x000548, "Member 'UWBP_AbilityEquipScreenTab_C::PT_Menu_TabID' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget \ +static_assert(alignof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget) == 0x000008, "Wrong alignment on WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget"); \ +static_assert(sizeof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget) == 0x0000B0, "Wrong size on WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, EntryPoint) == 0x000000, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::EntryPoint' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_DynamicCast_AsWBP_Player_Cursor) == 0x000008, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_DynamicCast_AsWBP_Player_Cursor' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_DynamicCast_bSuccess) == 0x000010, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_DynamicCast_bSuccess' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, Temp_delegate_Variable) == 0x000014, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::Temp_delegate_Variable' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, Temp_delegate_Variable_1) == 0x000024, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::Temp_delegate_Variable_1' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_Subtract_DoubleDouble_ReturnValue) == 0x000038, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_Subtract_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_Divide_DoubleDouble_ReturnValue) == 0x000040, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_Divide_DoubleDouble_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_Abs_ReturnValue) == 0x000048, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_Abs_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_NormalizeToRange_ReturnValue) == 0x000050, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_NormalizeToRange_ReturnValue' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_Event_MyGeometry) == 0x000058, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_Event_MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_Event_InDeltaTime) == 0x000090, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_Event_InDeltaTime' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_Event_bIsZoomingIn) == 0x000094, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_Event_bIsZoomingIn' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_Subtract_DoubleDouble_A_ImplicitCast) == 0x000098, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_Subtract_DoubleDouble_A_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, K2Node_VariableSet_RTPCZoomCompare_ImplicitCast) == 0x0000A0, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::K2Node_VariableSet_RTPCZoomCompare_ImplicitCast' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget, CallFunc_SetRTPCGlobal_InValue_ImplicitCast) == 0x0000A8, "Member 'WBP_MapsContainerWidget_C_ExecuteUbergraph_WBP_MapsContainerWidget::CallFunc_SetRTPCGlobal_InValue_ImplicitCast' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapsContainerWidget_C_OnZoomValueChanged \ +static_assert(alignof(WBP_MapsContainerWidget_C_OnZoomValueChanged) == 0x000001, "Wrong alignment on WBP_MapsContainerWidget_C_OnZoomValueChanged"); \ +static_assert(sizeof(WBP_MapsContainerWidget_C_OnZoomValueChanged) == 0x000001, "Wrong size on WBP_MapsContainerWidget_C_OnZoomValueChanged"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_OnZoomValueChanged, bIsZoomingIn) == 0x000000, "Member 'WBP_MapsContainerWidget_C_OnZoomValueChanged::bIsZoomingIn' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_WBP_MapsContainerWidget_C_Tick \ +static_assert(alignof(WBP_MapsContainerWidget_C_Tick) == 0x000004, "Wrong alignment on WBP_MapsContainerWidget_C_Tick"); \ +static_assert(sizeof(WBP_MapsContainerWidget_C_Tick) == 0x00003C, "Wrong size on WBP_MapsContainerWidget_C_Tick"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_Tick, MyGeometry) == 0x000000, "Member 'WBP_MapsContainerWidget_C_Tick::MyGeometry' has a wrong offset!"); \ +static_assert(offsetof(WBP_MapsContainerWidget_C_Tick, InDeltaTime) == 0x000038, "Member 'WBP_MapsContainerWidget_C_Tick::InDeltaTime' has a wrong offset!"); \ + +#define DUMPER7_ASSERTS_UWBP_MapsContainerWidget_C \ +static_assert(alignof(UWBP_MapsContainerWidget_C) == 0x000008, "Wrong alignment on UWBP_MapsContainerWidget_C"); \ +static_assert(sizeof(UWBP_MapsContainerWidget_C) == 0x0007A0, "Wrong size on UWBP_MapsContainerWidget_C"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, UberGraphFrame) == 0x000768, "Member 'UWBP_MapsContainerWidget_C::UberGraphFrame' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, Divider) == 0x000770, "Member 'UWBP_MapsContainerWidget_C::Divider' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, PlayerCursorTexture) == 0x000778, "Member 'UWBP_MapsContainerWidget_C::PlayerCursorTexture' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, PlayerCursorScale) == 0x000780, "Member 'UWBP_MapsContainerWidget_C::PlayerCursorScale' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, RTPCZoomCompare) == 0x000790, "Member 'UWBP_MapsContainerWidget_C::RTPCZoomCompare' has a wrong offset!"); \ +static_assert(offsetof(UWBP_MapsContainerWidget_C, CoolDownAudio) == 0x000798, "Member 'UWBP_MapsContainerWidget_C::CoolDownAudio' has a wrong offset!"); \ + + +} + diff --git a/TormentedSouls2/NameCollisions.inl b/TormentedSouls2/NameCollisions.inl new file mode 100644 index 0000000..e4e5b64 --- /dev/null +++ b/TormentedSouls2/NameCollisions.inl @@ -0,0 +1,99 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// FORWARD DECLARATIONS + + +namespace GameplayAbilities { struct FServerAbilityRPCBatch; } + +namespace ABP_Rosalind_PostProcess { struct FAnimBlueprintGeneratedConstantData; } + +namespace AnimBP_DecapitatedHead_USK { struct FAnimBlueprintGeneratedConstantData; } + +namespace GE_BlockTargeting_0 { class UGE_BlockTargeting_C; } + +namespace GE_BlockTargeting { class UGE_BlockTargeting_C; } + +namespace ABP_Phyre_Hair_MidLong { struct FAnimBlueprintGeneratedConstantData; } + +namespace ABP_Phyre_Hair_Short { struct FAnimBlueprintGeneratedConstantData; } + +namespace AnimBP_ShadowBeing { struct FAnimBlueprintGeneratedConstantData; } + +namespace ABP_Phyre_RetargetTest { struct FAnimBlueprintGeneratedConstantData; } + +namespace ABP_Phyre_Hair_Bun { struct FAnimBlueprintGeneratedConstantData; } + +namespace ABP_Phyre_Hair_Long { struct FAnimBlueprintGeneratedConstantData; } + + +namespace AnimBP_Rosalind_1920s +{ + struct FAnimBlueprintGeneratedMutableData; + struct FAnimBlueprintGeneratedConstantData; +} + +namespace AnimBP_CinematicBlend +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace AnimBP_Tolly +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace AnimBP_Player_Combat +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace AnimBP_Phyre +{ + struct FAnimBlueprintGeneratedMutableData; + struct FAnimBlueprintGeneratedConstantData; +} + +namespace AnimBP_Phyre_StrickNR_378_WillemTalk +{ + struct FAnimBlueprintGeneratedMutableData; + struct FAnimBlueprintGeneratedConstantData; +} + +namespace AnimBP_Player +{ + struct FAnimBlueprintGeneratedMutableData; + struct FAnimBlueprintGeneratedConstantData; +} + +namespace AnimBP_DeadEnemy_USK +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace AnimBP_Player_Locomotion +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace AnimBP_SharedEnemy_USK +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} + +namespace ABP_Weapon +{ + struct FAnimBlueprintGeneratedConstantData; + struct FAnimBlueprintGeneratedMutableData; +} diff --git a/TormentedSouls2/PropertyFixup.hpp b/TormentedSouls2/PropertyFixup.hpp new file mode 100644 index 0000000..6728734 --- /dev/null +++ b/TormentedSouls2/PropertyFixup.hpp @@ -0,0 +1,21 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// PROPERTY-FIXUP + + +namespace SDK +{ + +class alignas(0x01) FMulticastSparseDelegateProperty_ +{ + unsigned __int8 Pad[0x1]; +}; + +} + diff --git a/TormentedSouls2/SDK.hpp b/TormentedSouls2/SDK.hpp new file mode 100644 index 0000000..2b53a7c --- /dev/null +++ b/TormentedSouls2/SDK.hpp @@ -0,0 +1,1712 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Bloodlines2 +// 5.3.2-0+UE5 + +// Includes the entire SDK. Include files directly for faster compilation! + +#include "SDK/Basic.hpp" +#include "SDK/CoreUObject_classes.hpp" +#include "SDK/BP_TransitionDoor_Double_ProEscape_classes.hpp" +#include "SDK/CoreUObject_structs.hpp" +#include "SDK/BP_ClimbableAnimations_classes.hpp" +#include "SDK/InputCore_structs.hpp" +#include "SDK/Chaos_structs.hpp" +#include "SDK/PhysicsCore_structs.hpp" +#include "SDK/Slate_structs.hpp" +#include "SDK/Engine_structs.hpp" +#include "SDK/AudioExtensions_structs.hpp" +#include "SDK/AudioExtensions_classes.hpp" +#include "SDK/PhysicsCore_classes.hpp" +#include "SDK/FieldNotification_structs.hpp" +#include "SDK/AudioPlatformConfiguration_structs.hpp" +#include "SDK/DeveloperSettings_structs.hpp" +#include "SDK/DeveloperSettings_classes.hpp" +#include "SDK/SlateCore_structs.hpp" +#include "SDK/NetCore_structs.hpp" +#include "SDK/NetCore_classes.hpp" +#include "SDK/Engine_classes.hpp" +#include "SDK/DefaultSubTabFont_classes.hpp" +#include "SDK/GE_VV_Cooldown_classes.hpp" +#include "SDK/GameplayTags_structs.hpp" +#include "SDK/DataRegistry_structs.hpp" +#include "SDK/MovieScene_structs.hpp" +#include "SDK/GameplayAbilities_structs.hpp" +#include "SDK/GameplayAbilities_classes.hpp" +#include "SDK/AnimationCore_structs.hpp" +#include "SDK/AnimationCore_classes.hpp" +#include "SDK/BPP_ProEscape_Basement_Hallway_01_classes.hpp" +#include "SDK/BPC_lightutility_torch_03_apartment_01_classes.hpp" +#include "SDK/InputCore_classes.hpp" +#include "SDK/GeometryScriptingCore_structs.hpp" +#include "SDK/GeometryScriptingCore_classes.hpp" +#include "SDK/SlateCore_classes.hpp" +#include "SDK/eReactionMemoryComponent_PlayerStyle_structs.hpp" +#include "SDK/Slate_classes.hpp" +#include "SDK/HeraDialogue_structs.hpp" +#include "SDK/EnhancedInput_structs.hpp" +#include "SDK/StructUtils_structs.hpp" +#include "SDK/MassEntity_structs.hpp" +#include "SDK/AIModule_structs.hpp" +#include "SDK/WorldConditions_structs.hpp" +#include "SDK/SmartObjectsModule_structs.hpp" +#include "SDK/MassMovement_structs.hpp" +#include "SDK/StateTreeModule_structs.hpp" +#include "SDK/ZoneGraph_structs.hpp" +#include "SDK/MassSmartObjects_structs.hpp" +#include "SDK/MassAIBehavior_structs.hpp" +#include "SDK/CommonLoadingScreen_structs.hpp" +#include "SDK/MassSpawner_structs.hpp" +#include "SDK/MassNavigation_structs.hpp" +#include "SDK/Wrestler_structs.hpp" +#include "SDK/HeraCore_structs.hpp" +#include "SDK/HeraCore_classes.hpp" +#include "SDK/AkAudio_structs.hpp" +#include "SDK/HeraAudio_structs.hpp" +#include "SDK/CommonInput_structs.hpp" +#include "SDK/HeraDialogue_classes.hpp" +#include "SDK/HeraAutomata_structs.hpp" +#include "SDK/HeraUI_structs.hpp" +#include "SDK/HeraAutomata_classes.hpp" +#include "SDK/AIModule_classes.hpp" +#include "SDK/EnhancedInput_classes.hpp" +#include "SDK/UMG_structs.hpp" +#include "SDK/MovieScene_classes.hpp" +#include "SDK/UMG_classes.hpp" +#include "SDK/MassEntity_classes.hpp" +#include "SDK/MassLOD_structs.hpp" +#include "SDK/MassLOD_classes.hpp" +#include "SDK/HeraProperty_structs.hpp" +#include "SDK/HeraProperty_classes.hpp" +#include "SDK/CommonUser_structs.hpp" +#include "SDK/Wrestler_classes.hpp" +#include "SDK/TCR_RPGMenuScreen_classes.hpp" +#include "SDK/eReactionMemoryComponent_Actions_structs.hpp" +#include "SDK/EngineSettings_structs.hpp" +#include "SDK/EngineSettings_classes.hpp" +#include "SDK/BuildPatchServices_structs.hpp" +#include "SDK/BuildPatchServices_classes.hpp" +#include "SDK/GA_Enemy_DefensiveDash_Human_classes.hpp" +#include "SDK/GeometryCacheTracks_structs.hpp" +#include "SDK/GeometryCacheTracks_classes.hpp" +#include "SDK/FieldNotification_classes.hpp" +#include "SDK/FadeOverlay_classes.hpp" +#include "SDK/MeshDescription_structs.hpp" +#include "SDK/MeshDescription_classes.hpp" +#include "SDK/DisabledSubTabFont_classes.hpp" +#include "SDK/BP_WeaponInstance_Shotgun_ThinbloodEarly_classes.hpp" +#include "SDK/BPI_Elixir_classes.hpp" +#include "SDK/WBP_TempFeedIcon_classes.hpp" +#include "SDK/StaticMeshDescription_structs.hpp" +#include "SDK/StaticMeshDescription_classes.hpp" +#include "SDK/CommonArrowButtonLeft_classes.hpp" +#include "SDK/DataflowCore_structs.hpp" +#include "SDK/DataflowCore_classes.hpp" +#include "SDK/InterchangeFactoryNodes_structs.hpp" +#include "SDK/CinematicCamera_structs.hpp" +#include "SDK/InterchangeFactoryNodes_classes.hpp" +#include "SDK/PropertyPath_structs.hpp" +#include "SDK/PropertyPath_classes.hpp" +#include "SDK/SpawnGrenades_classes.hpp" +#include "SDK/GE_RestoreBlood_classes.hpp" +#include "SDK/BP_HuskDissolve_classes.hpp" +#include "SDK/TypedElementFramework_structs.hpp" +#include "SDK/TypedElementFramework_classes.hpp" +#include "SDK/TypedElementRuntime_structs.hpp" +#include "SDK/TypedElementRuntime_classes.hpp" +#include "SDK/Enum_QuestStatus_structs.hpp" +#include "SDK/Change_QuestStatus_classes.hpp" +#include "SDK/AudioLinkCore_classes.hpp" +#include "SDK/JsonUtilities_structs.hpp" +#include "SDK/JsonUtilities_classes.hpp" +#include "SDK/AssetRegistry_structs.hpp" +#include "SDK/AssetRegistry_classes.hpp" +#include "SDK/BP_StaticFX_WaterSpray_Pipe_Burst_LowIntensity_classes.hpp" +#include "SDK/UnBlockAllAbilitiesOnPlayer_classes.hpp" +#include "SDK/GA_PlayerPunch_Light_Uppercut_classes.hpp" +#include "SDK/IrisCore_structs.hpp" +#include "SDK/IrisCore_classes.hpp" +#include "SDK/PacketHandler_classes.hpp" +#include "SDK/ClothingSystemRuntimeInterface_structs.hpp" +#include "SDK/ClothingSystemRuntimeInterface_classes.hpp" +#include "SDK/ImageWriteQueue_structs.hpp" +#include "SDK/ImageWriteQueue_classes.hpp" +#include "SDK/MaterialShaderQualitySettings_structs.hpp" +#include "SDK/MaterialShaderQualitySettings_classes.hpp" +#include "SDK/GA_Additive_SniperTargeting_NoCrouch_classes.hpp" +#include "SDK/CamShakeSettings_structs.hpp" +#include "SDK/EyeTracker_structs.hpp" +#include "SDK/EyeTracker_classes.hpp" +#include "SDK/Renderer_structs.hpp" +#include "SDK/Renderer_classes.hpp" +#include "SDK/ImgMedia_structs.hpp" +#include "SDK/ImgMedia_classes.hpp" +#include "SDK/HeadMountedDisplay_structs.hpp" +#include "SDK/HeadMountedDisplay_classes.hpp" +#include "SDK/Foliage_structs.hpp" +#include "SDK/Foliage_classes.hpp" +#include "SDK/Landscape_structs.hpp" +#include "SDK/Landscape_classes.hpp" +#include "SDK/CameraShake_RecallPlace_classes.hpp" +#include "SDK/TimeManagement_structs.hpp" +#include "SDK/TimeManagement_classes.hpp" +#include "SDK/GE_TwitchyReaction_classes.hpp" +#include "SDK/ChaosSolverEngine_structs.hpp" +#include "SDK/ChaosSolverEngine_classes.hpp" +#include "SDK/FieldSystemEngine_structs.hpp" +#include "SDK/FieldSystemEngine_classes.hpp" +#include "SDK/BP_TelekinesisInteractable_ProEscape_Planks_classes.hpp" +#include "SDK/DataflowEngine_structs.hpp" +#include "SDK/DataflowEngine_classes.hpp" +#include "SDK/GE_DamageSetByCaller_classes.hpp" +#include "SDK/GeometryCollectionEngine_structs.hpp" +#include "SDK/GeometryCollectionEngine_classes.hpp" +#include "SDK/AnimGraphRuntime_structs.hpp" +#include "SDK/AnimGraphRuntime_classes.hpp" +#include "SDK/TCR_MultiactionWidget_classes.hpp" +#include "SDK/Constraints_structs.hpp" +#include "SDK/Constraints_classes.hpp" +#include "SDK/AssignCombatTaskBoardConfig_classes.hpp" +#include "SDK/BFL_RequestBark_classes.hpp" +#include "SDK/CameraShake_PunchImpact_Med_classes.hpp" +#include "SDK/MovieRenderPipelineCore_structs.hpp" +#include "SDK/OpenColorIO_structs.hpp" +#include "SDK/MovieRenderPipelineCore_classes.hpp" +#include "SDK/MovieSceneTracks_structs.hpp" +#include "SDK/MovieSceneTracks_classes.hpp" +#include "SDK/CinematicCamera_classes.hpp" +#include "SDK/CheckEnemiesPresent_classes.hpp" +#include "SDK/AudioLinkEngine_classes.hpp" +#include "SDK/AudioMixer_structs.hpp" +#include "SDK/AudioMixer_classes.hpp" +#include "SDK/ChangeElevatorButtonLocation_classes.hpp" +#include "SDK/GameplayTags_classes.hpp" +#include "SDK/TextureUtilitiesCommon_structs.hpp" +#include "SDK/TextureUtilitiesCommon_classes.hpp" +#include "SDK/MovieSceneCapture_structs.hpp" +#include "SDK/MovieSceneCapture_classes.hpp" +#include "SDK/MediaAssets_structs.hpp" +#include "SDK/MediaAssets_classes.hpp" +#include "SDK/LevelSequence_structs.hpp" +#include "SDK/LevelSequence_classes.hpp" +#include "SDK/SetEnemyDetectorHelper_classes.hpp" +#include "SDK/MRMesh_structs.hpp" +#include "SDK/MRMesh_classes.hpp" +#include "SDK/CommonButtonSettingsBox_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_SuggestedAction_classes.hpp" +#include "SDK/MoviePlayer_structs.hpp" +#include "SDK/MoviePlayer_classes.hpp" +#include "SDK/WBP_PassiveDuration_classes.hpp" +#include "SDK/Overlay_structs.hpp" +#include "SDK/Overlay_classes.hpp" +#include "SDK/ClothingSystemRuntimeCommon_structs.hpp" +#include "SDK/ClothingSystemRuntimeCommon_classes.hpp" +#include "SDK/WBP_BR_LightningAmmo_classes.hpp" +#include "SDK/ClothingSystemRuntimeNv_structs.hpp" +#include "SDK/ClothingSystemRuntimeNv_classes.hpp" +#include "SDK/PD_STS_MDCG_MakomBouncer_classes.hpp" +#include "SDK/ToggleBloodResonanceEvents_classes.hpp" +#include "SDK/AkAudio_classes.hpp" +#include "SDK/BP_WrestlerSpectatorPawn_classes.hpp" +#include "SDK/ImGui_structs.hpp" +#include "SDK/ImGui_classes.hpp" +#include "SDK/HeraPhysics_structs.hpp" +#include "SDK/HeraPhysics_classes.hpp" +#include "SDK/NiagaraCore_structs.hpp" +#include "SDK/NiagaraCore_classes.hpp" +#include "SDK/BPRefactor_lightutility_torch_05_POLICE_Attached_classes.hpp" +#include "SDK/NiagaraShader_structs.hpp" +#include "SDK/NiagaraShader_classes.hpp" +#include "SDK/GA_PlayerMovement_LedgeHang_classes.hpp" +#include "SDK/CM_Stealth_classes.hpp" +#include "SDK/GA_Ysabella_BlurredMomentum_Dodge_classes.hpp" +#include "SDK/GE_StunRegen_classes.hpp" +#include "SDK/Niagara_structs.hpp" +#include "SDK/Niagara_classes.hpp" +#include "SDK/CommonInput_classes.hpp" +#include "SDK/CommonUI_structs.hpp" +#include "SDK/CommonUI_classes.hpp" +#include "SDK/StructUtils_classes.hpp" +#include "SDK/GA_Patrol_Action_Aim_Rifle_classes.hpp" +#include "SDK/BP_ThrowableSearchlight_classes.hpp" +#include "SDK/GameplayTasks_structs.hpp" +#include "SDK/GameplayTasks_classes.hpp" +#include "SDK/BP_FireEscapeRung_classes.hpp" +#include "SDK/NavigationSystem_structs.hpp" +#include "SDK/NavigationSystem_classes.hpp" +#include "SDK/MassCommon_structs.hpp" +#include "SDK/MassCommon_classes.hpp" +#include "SDK/MassSignals_classes.hpp" +#include "SDK/BP_Audio_Function_Weapons_classes.hpp" +#include "SDK/MassSimulation_classes.hpp" +#include "SDK/ZoneGraph_classes.hpp" +#include "SDK/MassSpawner_classes.hpp" +#include "SDK/BPI_Physics_Audio_classes.hpp" +#include "SDK/ApexDestruction_structs.hpp" +#include "SDK/ApexDestruction_classes.hpp" +#include "SDK/ZoneGraphDebug_classes.hpp" +#include "SDK/BP_IQA_UnlockDoor_classes.hpp" +#include "SDK/DialogueTop_Controller_classes.hpp" +#include "SDK/ZoneGraphAnnotations_structs.hpp" +#include "SDK/ZoneGraphAnnotations_classes.hpp" +#include "SDK/BP_CauldronOfBlood_activate_classes.hpp" +#include "SDK/MassMovement_classes.hpp" +#include "SDK/MassReplication_structs.hpp" +#include "SDK/MassReplication_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_CheckPath_classes.hpp" +#include "SDK/MassActors_structs.hpp" +#include "SDK/MassActors_classes.hpp" +#include "SDK/BP_SearchLight_classes.hpp" +#include "SDK/BP_BaseDialogueCharacter_classes.hpp" +#include "SDK/TCR_PropertyMenu_structs.hpp" +#include "SDK/TCR_PropertyMenu_classes.hpp" +#include "SDK/CommonTextStyleMediumSubtitle_classes.hpp" +#include "SDK/HeraAudio_classes.hpp" +#include "SDK/GA_Additive_SniperTargeting_Endless_classes.hpp" +#include "SDK/MassRepresentation_structs.hpp" +#include "SDK/MassRepresentation_classes.hpp" +#include "SDK/BP_AssembledCharacter_ProEscapePolice_classes.hpp" +#include "SDK/ChangeElevatorDestination_classes.hpp" +#include "SDK/HeraUI_classes.hpp" +#include "SDK/WBP_BloodResonanceEventWaypointIndicator_classes.hpp" +#include "SDK/OnlineSubsystem_structs.hpp" +#include "SDK/OnlineSubsystem_classes.hpp" +#include "SDK/WBP_DialogueMinimal_classes.hpp" +#include "SDK/HeraAchievements_structs.hpp" +#include "SDK/HeraAchievements_classes.hpp" +#include "SDK/CommonLoadingScreen_classes.hpp" +#include "SDK/BP_Hera_BoxTriggerBase_classes.hpp" +#include "SDK/HeraCaptions_structs.hpp" +#include "SDK/HeraCaptions_classes.hpp" +#include "SDK/GA_Weapon_Fire_InstantShot_classes.hpp" +#include "SDK/HeraFX_classes.hpp" +#include "SDK/HeraReaction_structs.hpp" +#include "SDK/HeraReaction_classes.hpp" +#include "SDK/HeraGraphics_structs.hpp" +#include "SDK/HeraGraphics_classes.hpp" +#include "SDK/AudioSynesthesia_structs.hpp" +#include "SDK/AudioSynesthesia_classes.hpp" +#include "SDK/HeraLighting_classes.hpp" +#include "SDK/RigVM_structs.hpp" +#include "SDK/RigVM_classes.hpp" +#include "SDK/ControlRig_structs.hpp" +#include "SDK/ControlRig_classes.hpp" +#include "SDK/DataRegistry_classes.hpp" +#include "SDK/NiagaraAnimNotifies_structs.hpp" +#include "SDK/NiagaraAnimNotifies_classes.hpp" +#include "SDK/OnlineSubsystemUtils_structs.hpp" +#include "SDK/OnlineSubsystemUtils_classes.hpp" +#include "SDK/SocketSubsystemEOS_classes.hpp" +#include "SDK/DialogueLeft_Controller_classes.hpp" +#include "SDK/OnlineSubsystemEOS_structs.hpp" +#include "SDK/OnlineSubsystemEOS_classes.hpp" +#include "SDK/TCR_SimpleLayout_classes.hpp" +#include "SDK/HeraDLC_structs.hpp" +#include "SDK/HeraDLC_classes.hpp" +#include "SDK/HideBossHealthBar_classes.hpp" +#include "SDK/Ink_structs.hpp" +#include "SDK/Ink_classes.hpp" +#include "SDK/MotionWarping_structs.hpp" +#include "SDK/MotionWarping_classes.hpp" +#include "SDK/HeraAnalytics_structs.hpp" +#include "SDK/HeraAnalytics_classes.hpp" +#include "SDK/SelectedSubTabFont_classes.hpp" +#include "SDK/RadioShow_classes.hpp" +#include "SDK/StructUtilsEngine_structs.hpp" +#include "SDK/StructUtilsEngine_classes.hpp" +#include "SDK/StateTreeModule_classes.hpp" +#include "SDK/GameplayStateTreeModule_classes.hpp" +#include "SDK/MassNavigation_classes.hpp" +#include "SDK/MassZoneGraphNavigation_structs.hpp" +#include "SDK/MassZoneGraphNavigation_classes.hpp" +#include "SDK/NavArea_SmartLinkTraversal_classes.hpp" +#include "SDK/WorldConditions_classes.hpp" +#include "SDK/SmartObjectsModule_classes.hpp" +#include "SDK/WBP_DpadInGame_Controller_classes.hpp" +#include "SDK/MassSmartObjects_classes.hpp" +#include "SDK/MassAIBehavior_classes.hpp" +#include "SDK/ForceHideTutorial_classes.hpp" +#include "SDK/MassAIReplication_structs.hpp" +#include "SDK/MassCrowd_structs.hpp" +#include "SDK/MassCrowd_classes.hpp" +#include "SDK/CameraShake_AttackImpact_Heavy_classes.hpp" +#include "SDK/AnimToTexture_structs.hpp" +#include "SDK/AnimToTexture_classes.hpp" +#include "SDK/Masquerade_Breach_Stake_Death_classes.hpp" +#include "SDK/DLSS_structs.hpp" +#include "SDK/DLSS_classes.hpp" +#include "SDK/BP_TelekinesisInteractable_VanDoor_classes.hpp" +#include "SDK/DLSSBlueprint_structs.hpp" +#include "SDK/DLSSBlueprint_classes.hpp" +#include "SDK/BP_Enemy_Throwable_Grenade_LongFuse_classes.hpp" +#include "SDK/StreamlineRHI_structs.hpp" +#include "SDK/StreamlineRHI_classes.hpp" +#include "SDK/GA_Patrol_Action_WeaponRelaxedOnSholder_classes.hpp" +#include "SDK/StreamlineBlueprint_structs.hpp" +#include "SDK/StreamlineBlueprint_classes.hpp" +#include "SDK/StreamlineDLSSGBlueprint_structs.hpp" +#include "SDK/StreamlineDLSSGBlueprint_classes.hpp" +#include "SDK/StreamlineReflexBlueprint_structs.hpp" +#include "SDK/StreamlineReflexBlueprint_classes.hpp" +#include "SDK/FFXFSR3Settings_structs.hpp" +#include "SDK/FFXFSR3Settings_classes.hpp" +#include "SDK/GE_LightningStrikes_Unleash_classes.hpp" +#include "SDK/OnlineSubsystemSteam_classes.hpp" +#include "SDK/GA_GhoulHitReact_FistOfCaineUltimate_classes.hpp" +#include "SDK/HeraPDX_structs.hpp" +#include "SDK/HeraPDX_classes.hpp" +#include "SDK/ActiveAbilityUpgradeAcquired_classes.hpp" +#include "SDK/CommonUser_classes.hpp" +#include "SDK/GameSettings_structs.hpp" +#include "SDK/GameSettings_classes.hpp" +#include "SDK/ANS_TokenWindowController_classes.hpp" +#include "SDK/EBossPhase_structs.hpp" +#include "SDK/SignificanceManager_classes.hpp" +#include "SDK/AdvancedWidgets_classes.hpp" +#include "SDK/GA_Death_classes.hpp" +#include "SDK/AddRemoveTagsOnPhyre_classes.hpp" +#include "SDK/SequencerScripting_structs.hpp" +#include "SDK/SequencerScripting_classes.hpp" +#include "SDK/CheckEnemiesInCombat_classes.hpp" +#include "SDK/Gauntlet_classes.hpp" +#include "SDK/BP_TKable_Laser_classes.hpp" +#include "SDK/OnlineSubsystemGOG_classes.hpp" +#include "SDK/GA_PlayerPunch_Heavy_Followup_classes.hpp" +#include "SDK/AnalyticsBlueprintLibrary_structs.hpp" +#include "SDK/AnalyticsBlueprintLibrary_classes.hpp" +#include "SDK/HoudiniEngineRuntime_structs.hpp" +#include "SDK/HoudiniEngineRuntime_classes.hpp" +#include "SDK/EnemyDeathChecker_classes.hpp" +#include "SDK/GE_LockDash_classes.hpp" +#include "SDK/CommonStartupLoadingScreen_classes.hpp" +#include "SDK/ConsoleVariablesEditorRuntime_structs.hpp" +#include "SDK/ConsoleVariablesEditorRuntime_classes.hpp" +#include "SDK/AttackDetails_structs.hpp" +#include "SDK/AttackParams_structs.hpp" +#include "SDK/VirtualHeightfieldMesh_classes.hpp" +#include "SDK/OpenColorIO_classes.hpp" +#include "SDK/CommonTextStyleActionPromp_Disabled_classes.hpp" +#include "SDK/GA_EnemyPlayerVanishedReaction_classes.hpp" +#include "SDK/MovieRenderPipelineSettings_structs.hpp" +#include "SDK/MovieRenderPipelineSettings_classes.hpp" +#include "SDK/PD_MoTF_PoS_Silky_classes.hpp" +#include "SDK/ActorLayerUtilities_structs.hpp" +#include "SDK/ActorLayerUtilities_classes.hpp" +#include "SDK/BP_ElixirBlood_classes.hpp" +#include "SDK/MovieRenderPipelineRenderPasses_structs.hpp" +#include "SDK/MovieRenderPipelineRenderPasses_classes.hpp" +#include "SDK/WBP_AbilityTarget_classes.hpp" +#include "SDK/MassGameplayDebug_structs.hpp" +#include "SDK/MassGameplayDebug_classes.hpp" +#include "SDK/MassAIDebug_classes.hpp" +#include "SDK/AnimBP_Player_structs.hpp" +#include "SDK/AnimBP_Player_classes.hpp" +#include "SDK/MassLWI_structs.hpp" +#include "SDK/MassLWI_classes.hpp" +#include "SDK/BP_TransitionDoor_StaticMesh_classes.hpp" +#include "SDK/HoudiniNiagara_structs.hpp" +#include "SDK/HoudiniNiagara_classes.hpp" +#include "SDK/NightclubBlockAbilites_classes.hpp" +#include "SDK/CameraShake_Knocked_Wallsplat_classes.hpp" +#include "SDK/WinDualShock_classes.hpp" +#include "SDK/InteractiveToolsFramework_structs.hpp" +#include "SDK/InteractiveToolsFramework_classes.hpp" +#include "SDK/GeometryCollectionTracks_structs.hpp" +#include "SDK/GeometryCollectionTracks_classes.hpp" +#include "SDK/ModelingOperators_structs.hpp" +#include "SDK/ModelingOperators_classes.hpp" +#include "SDK/CameraShake_Dashjump_classes.hpp" +#include "SDK/GeometryFramework_structs.hpp" +#include "SDK/GeometryFramework_classes.hpp" +#include "SDK/DLSSMoviePipelineSupport_structs.hpp" +#include "SDK/DLSSMoviePipelineSupport_classes.hpp" +#include "SDK/ModelingComponents_structs.hpp" +#include "SDK/ModelingComponents_classes.hpp" +#include "SDK/MeshModelingTools_structs.hpp" +#include "SDK/MeshModelingTools_classes.hpp" +#include "SDK/StreamlineDeepDVCBlueprint_structs.hpp" +#include "SDK/StreamlineDeepDVCBlueprint_classes.hpp" +#include "SDK/NISBlueprint_structs.hpp" +#include "SDK/NISBlueprint_classes.hpp" +#include "SDK/ST_Evaluator_MovementSettings_classes.hpp" +#include "SDK/FSR3MovieRenderPipeline_structs.hpp" +#include "SDK/FSR3MovieRenderPipeline_classes.hpp" +#include "SDK/Text3D_structs.hpp" +#include "SDK/Text3D_classes.hpp" +#include "SDK/CheckEnemiesSeenPlayer_classes.hpp" +#include "SDK/Paper2D_structs.hpp" +#include "SDK/Paper2D_classes.hpp" +#include "SDK/ACLPlugin_structs.hpp" +#include "SDK/ACLPlugin_classes.hpp" +#include "SDK/IKRig_structs.hpp" +#include "SDK/PBIK_structs.hpp" +#include "SDK/IKRig_classes.hpp" +#include "SDK/TemplateSequence_structs.hpp" +#include "SDK/TemplateSequence_classes.hpp" +#include "SDK/WBP_MapScreen_classes.hpp" +#include "SDK/GameplayCameras_structs.hpp" +#include "SDK/GameplayCameras_classes.hpp" +#include "SDK/OodleNetworkHandlerComponent_structs.hpp" +#include "SDK/OodleNetworkHandlerComponent_classes.hpp" +#include "SDK/AnimationSharing_structs.hpp" +#include "SDK/AnimationSharing_classes.hpp" +#include "SDK/UObjectPlugin_structs.hpp" +#include "SDK/UObjectPlugin_classes.hpp" +#include "SDK/FacialAnimation_classes.hpp" +#include "SDK/VariantManagerContent_structs.hpp" +#include "SDK/VariantManagerContent_classes.hpp" +#include "SDK/BP_EQSDefendZone_classes.hpp" +#include "SDK/DatasmithContent_structs.hpp" +#include "SDK/DatasmithContent_classes.hpp" +#include "SDK/GLTFExporter_structs.hpp" +#include "SDK/GLTFExporter_classes.hpp" +#include "SDK/SelectedFileMenuFont_classes.hpp" +#include "SDK/BP_Phyre_classes.hpp" +#include "SDK/AutomationUtils_classes.hpp" +#include "SDK/TCR_BoundActionButton_classes.hpp" +#include "SDK/ChaosCaching_structs.hpp" +#include "SDK/ChaosCaching_classes.hpp" +#include "SDK/ChaosCloth_structs.hpp" +#include "SDK/ChaosCloth_classes.hpp" +#include "SDK/TakeMovieScene_classes.hpp" +#include "SDK/BP_EnemyDetectorHelper_classes.hpp" +#include "SDK/CameraShake_PunchImpact_Light_classes.hpp" +#include "SDK/AudioCapture_structs.hpp" +#include "SDK/AudioCapture_classes.hpp" +#include "SDK/ProceduralMeshComponent_structs.hpp" +#include "SDK/ProceduralMeshComponent_classes.hpp" +#include "SDK/DataflowEnginePlugin_classes.hpp" +#include "SDK/ChaosNiagara_structs.hpp" +#include "SDK/ChaosNiagara_classes.hpp" +#include "SDK/LocalizableMessageBlueprint_classes.hpp" +#include "SDK/GeometryCache_structs.hpp" +#include "SDK/GeometryCache_classes.hpp" +#include "SDK/Enum_ModifyAction_structs.hpp" +#include "SDK/InterchangeCore_structs.hpp" +#include "SDK/InterchangeCore_classes.hpp" +#include "SDK/ClueType_structs.hpp" +#include "SDK/BP_TelekinesisInteractable_classes.hpp" +#include "SDK/DataflowNodes_structs.hpp" +#include "SDK/InterchangeNodes_structs.hpp" +#include "SDK/InterchangeNodes_classes.hpp" +#include "SDK/GA_StunRegen_classes.hpp" +#include "SDK/InterchangeEngine_structs.hpp" +#include "SDK/InterchangeEngine_classes.hpp" +#include "SDK/CommonTextStyleButton_classes.hpp" +#include "SDK/AudioPostEventActor_classes.hpp" +#include "SDK/GA_Additive_Crouch_NonCombat_Endless_classes.hpp" +#include "SDK/InterchangeMessages_classes.hpp" +#include "SDK/InterchangeImport_structs.hpp" +#include "SDK/InterchangeImport_classes.hpp" +#include "SDK/InterchangeExport_classes.hpp" +#include "SDK/InterchangePipelines_structs.hpp" +#include "SDK/InterchangePipelines_classes.hpp" +#include "SDK/ImgMediaEngine_classes.hpp" +#include "SDK/ImgMediaFactory_classes.hpp" +#include "SDK/MediaCompositing_structs.hpp" +#include "SDK/MediaCompositing_classes.hpp" +#include "SDK/PD_STS_MDSK_Informant_classes.hpp" +#include "SDK/GA_Enemy_Taunt_Base_classes.hpp" +#include "SDK/MediaPlate_structs.hpp" +#include "SDK/MediaPlate_classes.hpp" +#include "SDK/TcpMessaging_classes.hpp" +#include "SDK/ActorSequence_structs.hpp" +#include "SDK/ActorSequence_classes.hpp" +#include "SDK/ArchVisCharacter_classes.hpp" +#include "SDK/AssetTags_structs.hpp" +#include "SDK/AssetTags_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_HasBackupWeapon_classes.hpp" +#include "SDK/CableComponent_classes.hpp" +#include "SDK/BP_ElixirBrujah_classes.hpp" +#include "SDK/CustomMeshComponent_structs.hpp" +#include "SDK/CustomMeshComponent_classes.hpp" +#include "SDK/ENUM_VFX_TriggerTypes_structs.hpp" +#include "SDK/LocationServicesBPLibrary_structs.hpp" +#include "SDK/LocationServicesBPLibrary_classes.hpp" +#include "SDK/HidePlayerHUD_classes.hpp" +#include "SDK/MobilePatchingUtils_classes.hpp" +#include "SDK/ResonanceAudio_structs.hpp" +#include "SDK/ResonanceAudio_classes.hpp" +#include "SDK/SoundFields_classes.hpp" +#include "SDK/W_SettingsListEntry_Action_classes.hpp" +#include "SDK/NoticeableProximityComponent_classes.hpp" +#include "SDK/Synthesis_structs.hpp" +#include "SDK/Synthesis_classes.hpp" +#include "SDK/AudioAnalyzer_classes.hpp" +#include "SDK/TraceUtilities_classes.hpp" +#include "SDK/EQC_BehindQuerier_classes.hpp" +#include "SDK/WBP_Fade_classes.hpp" +#include "SDK/InteractionPromptMover_classes.hpp" +#include "SDK/BP_WeaponInstance_Machete_classes.hpp" +#include "SDK/CoreOnline_structs.hpp" +#include "SDK/GA_LockMovementSupport_classes.hpp" +#include "SDK/MediaUtils_structs.hpp" +#include "SDK/LocalFileNetworkReplayStreaming_structs.hpp" +#include "SDK/WBP_TokenDebugTile_classes.hpp" +#include "SDK/HttpNetworkReplayStreaming_structs.hpp" +#include "SDK/WBP_MouseCursor_classes.hpp" +#include "SDK/VectorVM_structs.hpp" +#include "SDK/BPC_lightceiling_bulb_02_PreEscape_01_Generated_classes.hpp" +#include "SDK/GA_Dance_classes.hpp" +#include "SDK/BP_DamageType_HeavyPunch_classes.hpp" +#include "SDK/ControlRigSpline_structs.hpp" +#include "SDK/GE_Feed_Source_classes.hpp" +#include "SDK/FullBodyIK_structs.hpp" +#include "SDK/FractureEngine_structs.hpp" +#include "SDK/GeometryCollectionNodes_structs.hpp" +#include "SDK/WBP_TempText_classes.hpp" +#include "SDK/InterchangeCommonParser_structs.hpp" +#include "SDK/KillAllEnemies_classes.hpp" +#include "SDK/GE_TKPullFatigue_classes.hpp" +#include "SDK/EngineMessages_structs.hpp" +#include "SDK/GA_Patrol_Action_Police_Search_classes.hpp" +#include "SDK/Serialization_structs.hpp" +#include "SDK/SessionMessages_structs.hpp" +#include "SDK/BP_ToggleActorVisibilityKeyframe_classes.hpp" +#include "SDK/WidgetCarousel_structs.hpp" +#include "SDK/HeraDialogueSharedTypes_structs.hpp" +#include "SDK/BP_ThrowableWeapon_classes.hpp" +#include "SDK/Enum_HeraTrigger_structs.hpp" +#include "SDK/WID_Revolver_classes.hpp" +#include "SDK/LocalizableMessage_structs.hpp" +#include "SDK/DmgTypeBP_Environmental_classes.hpp" +#include "SDK/BP_CommonUIRichTextIconSet_classes.hpp" +#include "SDK/CommonTextStyleButton_Disabled_classes.hpp" +#include "SDK/ThrowableKillVolumeTask_classes.hpp" +#include "SDK/WGT_TokenDebug_classes.hpp" +#include "SDK/BP_TokenStealingController_classes.hpp" +#include "SDK/GA_Patrol_Action_Picking_Lock_classes.hpp" +#include "SDK/Struct_KnockBackParameters_structs.hpp" +#include "SDK/ChangeSpeciesTag_Task_classes.hpp" +#include "SDK/BP_KnockParams_classes.hpp" +#include "SDK/GA_Patrol_Action_Photograph_classes.hpp" +#include "SDK/WrestlerReactionMemoryComponent_classes.hpp" +#include "SDK/GA_Patrol_Action_Police_Break_in_classes.hpp" +#include "SDK/WrestlerCameraShake_classes.hpp" +#include "SDK/CameraShake_Explosion_sharp_classes.hpp" +#include "SDK/CameraShake_Gunshot_player_classes.hpp" +#include "SDK/GE_GlideStartDelay_classes.hpp" +#include "SDK/CameraShake_gunshot_stoppedtime_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_SuggestedTargetProfile_classes.hpp" +#include "SDK/SecondaryAbilityUnlocked_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_EnemiesCloseToTargetCount_classes.hpp" +#include "SDK/WBP_SingleMapInputLegend_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_AgentMultiTag_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_TargetInWeaponRange_classes.hpp" +#include "SDK/AN_EnemyDashFX_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_DistanceFromTarget_Z_classes.hpp" +#include "SDK/TCR_RPGMenuLayout_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_DistanceThreshold_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_TargetInLOS_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_AmmoCount_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_InitialAbilityTimeoutElapsed_classes.hpp" +#include "SDK/CameraShake_PunchImpact_Heavy_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_EnemiesInCombatCount_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_IsPathStraight_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_SeenActionNumberTimes_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_TargetIsPlayer_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_BehindTarget_classes.hpp" +#include "SDK/WrestlerDefendZoneComponent_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_IndefendZone_classes.hpp" +#include "SDK/BP_Tolly_classes.hpp" +#include "SDK/structWeaponSwap_structs.hpp" +#include "SDK/ABP_Weapon_structs.hpp" +#include "SDK/ABP_Weapon_classes.hpp" +#include "SDK/WrestlerProjectile_base_classes.hpp" +#include "SDK/WrestlerProjectile_Bullet_classes.hpp" +#include "SDK/WBP_ActiveQuestData_classes.hpp" +#include "SDK/BP_Audio_SplineRTPC_classes.hpp" +#include "SDK/BP_MeleeWeaponInstance_Base_classes.hpp" +#include "SDK/BP_VFX_HeraDialogueEvent_BeginDominate_classes.hpp" +#include "SDK/BP_RangedWeaponInstance_Base_classes.hpp" +#include "SDK/GE_BlockTargeting_variable_classes.hpp" +#include "SDK/CommonArrowButtonRight_classes.hpp" +#include "SDK/BP_Weapon_classes.hpp" +#include "SDK/Enum_FireEscape_Ladder_structs.hpp" +#include "SDK/BP_FireEscape_classes.hpp" +#include "SDK/WrestlerWeaponStowComponent_classes.hpp" +#include "SDK/TriggerYsabella_Off_Stage_classes.hpp" +#include "SDK/BP_WrestlerTaskScore_InitialWeaponEquipped_classes.hpp" +#include "SDK/AN_SetObjective_classes.hpp" +#include "SDK/BP_DynamicPairedSmartObjectActor_classes.hpp" +#include "SDK/Transient_structs.hpp" +#include "SDK/BP_WrestlerViewportClient_classes.hpp" +#include "SDK/ActiveAbilityAcquired_classes.hpp" +#include "SDK/BP_WrestlerPhysicsCollisionHandler_classes.hpp" +#include "SDK/GA_Patrol_Action_PeekOver_classes.hpp" +#include "SDK/GA_EnemyDeadBodyReaction_classes.hpp" +#include "SDK/BP_WrestlerGlobalData_classes.hpp" +#include "SDK/WrestlerProjectile_Shot_classes.hpp" +#include "SDK/BP_WrestlerGameInstance_classes.hpp" +#include "SDK/GA_PlayerHitReact_Heavy_classes.hpp" +#include "SDK/SEQ_ProEscape_First_Feed_classes.hpp" +#include "SDK/BP_ProEscapeGuard_classes.hpp" +#include "SDK/GE_HealthRegen_classes.hpp" +#include "SDK/BP_MixController_classes.hpp" +#include "SDK/BP_MusicController_classes.hpp" +#include "SDK/BP_WrestlerWaypoint_classes.hpp" +#include "SDK/CommonTextStyleSubtitle_classes.hpp" +#include "SDK/CommonTextStyleLargeSubtitle_classes.hpp" +#include "SDK/BP_CodexItem_OldPhotos_classes.hpp" +#include "SDK/BP_CommonUIInputData_classes.hpp" +#include "SDK/BP_StaticFX_WaterDrip_classes.hpp" +#include "SDK/Bp_muiltiple_water_falling_01_classes.hpp" +#include "SDK/WBP_MenuSettingsTab_classes.hpp" +#include "SDK/WrestlerInvisibleWall_Traversable_classes.hpp" +#include "SDK/WBP_MainQuestPoolWidget_classes.hpp" +#include "SDK/GE_Sprint_classes.hpp" +#include "SDK/WrestlerInvisibleWall_classes.hpp" +#include "SDK/CommonTextStyleSubtitleCharacterNameMedium_classes.hpp" +#include "SDK/BP_WrestlerLightActor_classes.hpp" +#include "SDK/CommonTextStyleSubtitleCharacterNameLarge_classes.hpp" +#include "SDK/DialogueBottom_Controller_classes.hpp" +#include "SDK/BP_LightsStateManager_classes.hpp" +#include "SDK/CommonTextStyleSubtitleCharacterName_classes.hpp" +#include "SDK/Struct_ReactionData_structs.hpp" +#include "SDK/SEQ_Intro_classes.hpp" +#include "SDK/GC_Dash_classes.hpp" +#include "SDK/BP_AcidicTouchActivate_classes.hpp" +#include "SDK/CM_Dash_PP_classes.hpp" +#include "SDK/BP_Niagara_TimeIndepenent_classes.hpp" +#include "SDK/BP_lightutility_torch_03_classes.hpp" +#include "SDK/DialogueRight_Controller_classes.hpp" +#include "SDK/WBP_ConsumablesHUDWidgetMK_classes.hpp" +#include "SDK/WBP_DialogueText_classes.hpp" +#include "SDK/GE_Telekinesis_Cooldown_classes.hpp" +#include "SDK/GA_ElixirHealth_classes.hpp" +#include "SDK/AN_Audio_SwitchPostEvent_classes.hpp" +#include "SDK/BP_PointLight_Dialogue_Fill_classes.hpp" +#include "SDK/DialogButton_PC_classes.hpp" +#include "SDK/E_BodyBlendRule_structs.hpp" +#include "SDK/WBP_DialogueButton_classes.hpp" +#include "SDK/W_SettingsListEntry_Input_classes.hpp" +#include "SDK/BP_HeraDialogRig_classes.hpp" +#include "SDK/GlowHS_classes.hpp" +#include "SDK/WBP_MalkavianAbilityTree_classes.hpp" +#include "SDK/CommonTextStyleMainBody_classes.hpp" +#include "SDK/TCR_AbilityTooltipWidget_classes.hpp" +#include "SDK/E_ThrowableTypes_structs.hpp" +#include "SDK/GC_Telekinesis_Pull_classes.hpp" +#include "SDK/CommonInput_KBM_classes.hpp" +#include "SDK/SetMasqueradeState_classes.hpp" +#include "SDK/GA_Ysabella_BlurredMomentum_classes.hpp" +#include "SDK/CommonInput_PS5_classes.hpp" +#include "SDK/CommonInput_XSX_classes.hpp" +#include "SDK/CommonInput_PS4_classes.hpp" +#include "SDK/BF_EditorScriptUtils_classes.hpp" +#include "SDK/CM_WallClimb_classes.hpp" +#include "SDK/GE_WallClimbCooldown_classes.hpp" +#include "SDK/CommonTextStyleConfirm_Selected_classes.hpp" +#include "SDK/BP_EnemeySafetyNet_classes.hpp" +#include "SDK/GE_Crouch_classes.hpp" +#include "SDK/GE_sprintStumbleBlocker_classes.hpp" +#include "SDK/GE_PlayerPunch_Hit_classes.hpp" +#include "SDK/GE_Cooldown_kick_F_classes.hpp" +#include "SDK/GE_ComboDash_Cooldown_classes.hpp" +#include "SDK/GE_WallJumpDelay_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_CatBurglar_classes.hpp" +#include "SDK/BP_WallClimbShake2_classes.hpp" +#include "SDK/e_EncounterType_structs.hpp" +#include "SDK/GE_VampireSprint_classes.hpp" +#include "SDK/GA_Ma_Feed_classes.hpp" +#include "SDK/GE_WalkSpeed_classes.hpp" +#include "SDK/BP_Shake_Swipe_classes.hpp" +#include "SDK/BP_WeaponInstance_Unarmed_classes.hpp" +#include "SDK/Turn_BP_TelekinesisInteractable_Nightclub_TV_OnOff_classes.hpp" +#include "SDK/UnhideEnemy_classes.hpp" +#include "SDK/GE_PlayerPunch_Base_classes.hpp" +#include "SDK/CameraShake_PunchImpact_Sharp_classes.hpp" +#include "SDK/GE_Player_CounterHit_classes.hpp" +#include "SDK/BPC_lightutility_cage_01_warehouse_05_classes.hpp" +#include "SDK/BP_NewClueTrailClue_Base_classes.hpp" +#include "SDK/WrestlerPlayerWeaponManager_classes.hpp" +#include "SDK/GE_BR_lightningstrikes_smallDamage_classes.hpp" +#include "SDK/BP_CopTorchSpawner_classes.hpp" +#include "SDK/WBP_Lightningbullet_classes.hpp" +#include "SDK/GE_Lightning_targeting_slowdown_classes.hpp" +#include "SDK/PD_MOTF_MDM_Guru_classes.hpp" +#include "SDK/WBP_LightningLock_classes.hpp" +#include "SDK/E_LaserProjectorState_structs.hpp" +#include "SDK/WBP_BR_Lightningstrikes_classes.hpp" +#include "SDK/GE_feeddeathPreventer_classes.hpp" +#include "SDK/GE_Feed_DamageVuln_classes.hpp" +#include "SDK/GE_SuppressBarks_FeedReact_classes.hpp" +#include "SDK/BP_FeedReticle_classes.hpp" +#include "SDK/TA_WrestlerStealthFeed_classes.hpp" +#include "SDK/GA_EnemyTraverse_classes.hpp" +#include "SDK/TA_WrestlerCombatFeed_classes.hpp" +#include "SDK/GE_FeedProof_classes.hpp" +#include "SDK/GE_Feed_Visibility_classes.hpp" +#include "SDK/GA_FeedReact_classes.hpp" +#include "SDK/GE_GrantFeedReact_classes.hpp" +#include "SDK/GE_Feed_Target_classes.hpp" +#include "SDK/CameraShake_viewpunch_classes.hpp" +#include "SDK/BP_PostProcessVolume_Sepia_classes.hpp" +#include "SDK/GA_PlayerPunch_Base_classes.hpp" +#include "SDK/GA_Reaction_Detect_classes.hpp" +#include "SDK/CameraShake_AttachStart_classes.hpp" +#include "SDK/GE_HeavySlowdown_classes.hpp" +#include "SDK/GE_TelekinesisHit_MasqueradeBreach_classes.hpp" +#include "SDK/BP_lightutility_cage_03_classes.hpp" +#include "SDK/GE_PlayerPunch_NoHit_classes.hpp" +#include "SDK/WrestlerInvisibleWall_IgnorePlayer_classes.hpp" +#include "SDK/SetFleeingVolumeEnabled_classes.hpp" +#include "SDK/GE_PunchDecay_classes.hpp" +#include "SDK/WrestlerProjectile_EnemySalvo_classes.hpp" +#include "SDK/AN_TogglePlayerHandCollision_classes.hpp" +#include "SDK/AN_Audio_Bark_classes.hpp" +#include "SDK/GA_Punch_Base_Alt_classes.hpp" +#include "SDK/SetDynamicCombatConfig_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Gaurd_classes.hpp" +#include "SDK/GA_PlayerPunch_Heavy_classes.hpp" +#include "SDK/ST_Task_SetAnimState_classes.hpp" +#include "SDK/GE_SuppressBarks_EffortOnly_classes.hpp" +#include "SDK/CM_WrestlerCameraModifier_classes.hpp" +#include "SDK/BP_Explosion_Burning_classes.hpp" +#include "SDK/STT_CombatSight_classes.hpp" +#include "SDK/GA_Patrol_Action_WallLearn_02_classes.hpp" +#include "SDK/ReactiveCrosshairOverride_classes.hpp" +#include "SDK/CheckTaggedEnemyIfTagIsAdded_classes.hpp" +#include "SDK/Emotion_structs.hpp" +#include "SDK/TA_WrestlerStealthFeed_Kill_classes.hpp" +#include "SDK/GE_BloodHeal_Cost_classes.hpp" +#include "SDK/GA_FeedCancelReact_classes.hpp" +#include "SDK/AN_Audio_PostEvent_classes.hpp" +#include "SDK/GA_PlayerPunch_Light_right_classes.hpp" +#include "SDK/GA_PlayerPunch_Light_left_classes.hpp" +#include "SDK/GA_PlayerPunch_Light_left_followup_classes.hpp" +#include "SDK/GA_Patrol_Action_Shovelhead_Standing_classes.hpp" +#include "SDK/WBP_EnemyHealthBar_classes.hpp" +#include "SDK/EFocusPermissibleStates_structs.hpp" +#include "SDK/WB_BossHealthBar_classes.hpp" +#include "SDK/BP_FocusHelper_classes.hpp" +#include "SDK/TCR_CommonButton_classes.hpp" +#include "SDK/WrestlerFocusHelperComponent_classes.hpp" +#include "SDK/OpenOrCloseBasicDoor_classes.hpp" +#include "SDK/AN_GameplayEvent_classes.hpp" +#include "SDK/AN_CameraShake_classes.hpp" +#include "SDK/GA_Player_CounterSwipe_classes.hpp" +#include "SDK/WBP_EnemyAIDebug_classes.hpp" +#include "SDK/GA_Player_CounterHit_classes.hpp" +#include "SDK/WCBP_AIDebugWidget_classes.hpp" +#include "SDK/GE_Prowl_classes.hpp" +#include "SDK/GE_Instakill_classes.hpp" +#include "SDK/GE_initialPause_classes.hpp" +#include "SDK/BP_CoffinSight_Medium_classes.hpp" +#include "SDK/GA_PlayerMovement_VampireSprint_Boost_classes.hpp" +#include "SDK/SSquadLocaiton_structs.hpp" +#include "SDK/AN_Audio_FS_NPC_classes.hpp" +#include "SDK/ST_LampDamageLightVars_structs.hpp" +#include "SDK/CM_WrestlerVampireSprint_classes.hpp" +#include "SDK/BP_EnemyPatrolRoute_classes.hpp" +#include "SDK/AIC_MinorGhoul_classes.hpp" +#include "SDK/ProcessControlCue_classes.hpp" +#include "SDK/GE_Feed_ReceiveBlood_classes.hpp" +#include "SDK/FootstepNoiseComponent_classes.hpp" +#include "SDK/AnimBP_CinematicBlend_structs.hpp" +#include "SDK/AnimBP_CinematicBlend_classes.hpp" +#include "SDK/BPI_Climbable_Surface_classes.hpp" +#include "SDK/AN_ToggleGameplayTags_classes.hpp" +#include "SDK/BP_ElixirVentrue_classes.hpp" +#include "SDK/CM_WrestlerCameraModifier_PPMaterial_classes.hpp" +#include "SDK/GA_EnemyFoundPlayerReaction_classes.hpp" +#include "SDK/WrestlerEmotionComponent_classes.hpp" +#include "SDK/STT_ResetAwareness_classes.hpp" +#include "SDK/STT_StartTimer_classes.hpp" +#include "SDK/AN_Audio_LoopPostEvent_classes.hpp" +#include "SDK/BP_Throwable_Bolt_classes.hpp" +#include "SDK/WBP_AttackWarning_classes.hpp" +#include "SDK/ShowHideConsumableHUD_classes.hpp" +#include "SDK/PDA_Throwable_Data_classes.hpp" +#include "SDK/TA_Interaction_classes.hpp" +#include "SDK/GA_LightningSelector_classes.hpp" +#include "SDK/GA_PlayerMovement_Attach_classes.hpp" +#include "SDK/AbilityFunctionLibrary_classes.hpp" +#include "SDK/CommonButtonNoStyle_classes.hpp" +#include "SDK/BP_Throwable_classes.hpp" +#include "SDK/AN_Audio_Traversal_classes.hpp" +#include "SDK/BP_BoostLedge_classes.hpp" +#include "SDK/GA_BoilingBlood_classes.hpp" +#include "SDK/PDA_EnemyAnimSet_classes.hpp" +#include "SDK/AnimBP_SharedEnemy_USK_structs.hpp" +#include "SDK/AnimBP_SharedEnemy_USK_classes.hpp" +#include "SDK/GA_EnemyReact_NavigationRecovery_classes.hpp" +#include "SDK/CM_Knocked_classes.hpp" +#include "SDK/WrestlerSniperComponent_classes.hpp" +#include "SDK/BP_EnemyCharacterBase_classes.hpp" +#include "SDK/GA_FingerSnap_classes.hpp" +#include "SDK/GA_BR_Lightningstrikes_Constant_classes.hpp" +#include "SDK/GA_BR_Lightningstrikes_classes.hpp" +#include "SDK/GE_BlockTargeting_classes.hpp" +#include "SDK/GE_PreAttack_classes.hpp" +#include "SDK/GE_KissStats_classes.hpp" +#include "SDK/BP_PlayerCostumeInterface_classes.hpp" +#include "SDK/BP_WrestlerCharacterFunctionLibrary_classes.hpp" +#include "SDK/UnblockPlayerMovement_classes.hpp" +#include "SDK/FillPlayersHealthAndAbilities_classes.hpp" +#include "SDK/WBP_TKTarget_classes.hpp" +#include "SDK/WBP_EnemiesIndicatorsContainer_classes.hpp" +#include "SDK/GE_BloodHeal_classes.hpp" +#include "SDK/CameraShake_Explosion_sharp_strong_classes.hpp" +#include "SDK/CameraShake_Explosion_Rumble_strong_classes.hpp" +#include "SDK/CameraShake_Explosion_Rumble_classes.hpp" +#include "SDK/GA_Enemy_Attack_classes.hpp" +#include "SDK/GA_Movement_Mantle_classes.hpp" +#include "SDK/AnimLayerInterface_Player_classes.hpp" +#include "SDK/BPI_HudActions_classes.hpp" +#include "SDK/WBP_HitReaction_classes.hpp" +#include "SDK/GE_VampiricVisionTag_classes.hpp" +#include "SDK/BP_NPC_DeafenVolume_classes.hpp" +#include "SDK/AnimBP_Player_Combat_structs.hpp" +#include "SDK/AnimBP_Player_Combat_classes.hpp" +#include "SDK/BP_BlurredMomentum_AfterImage_classes.hpp" +#include "SDK/StagePresence_Markup_classes.hpp" +#include "SDK/CM_TargetingMode_classes.hpp" +#include "SDK/SecondaryAbilityUnavailable_classes.hpp" +#include "SDK/GE_initialInvis_classes.hpp" +#include "SDK/BP_Audio_TriggerSphere_DistanceToPlayerRTPC_classes.hpp" +#include "SDK/GE_VampiricVision_Deactivate_classes.hpp" +#include "SDK/GE_BM_stumble_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Rumbled_classes.hpp" +#include "SDK/W_SettingsListEntry_Scalar_classes.hpp" +#include "SDK/CM_WrestlerHealthPostProcess_classes.hpp" +#include "SDK/WBP_DebugText_classes.hpp" +#include "SDK/GA_Movement_WallJump_classes.hpp" +#include "SDK/Enum_HeraListOperations_structs.hpp" +#include "SDK/Change_QuestObjectives_classes.hpp" +#include "SDK/GE_PlayerDistractOpening_classes.hpp" +#include "SDK/CM_HS_Pulse_PP_classes.hpp" +#include "SDK/AN_Audio_FS_Player_classes.hpp" +#include "SDK/GA_Patrol_Action_Investigate_Front_02_classes.hpp" +#include "SDK/GA_PlayerDash_classes.hpp" +#include "SDK/CommonTextStyle_classes.hpp" +#include "SDK/WBP_InteractionDefault_classes.hpp" +#include "SDK/CommonTextStyleNotificationSmall_classes.hpp" +#include "SDK/CommonTextStyleTutorial_classes.hpp" +#include "SDK/WBP_CaptionWidget_classes.hpp" +#include "SDK/DepleteBlood_classes.hpp" +#include "SDK/WBP_CaptionWidgetController_classes.hpp" +#include "SDK/PlayerHeraPropertiesComponent_classes.hpp" +#include "SDK/GA_Ysabella_Distracted_classes.hpp" +#include "SDK/BP_AttachWaypointToEnemy_classes.hpp" +#include "SDK/AN_AttackTracker_classes.hpp" +#include "SDK/AN_AttackWarning_classes.hpp" +#include "SDK/GE_BlockCooldown_classes.hpp" +#include "SDK/BP_Music_DiegeticEmitterSystem_classes.hpp" +#include "SDK/UnBlockAbilityOnPlayerHACK_classes.hpp" +#include "SDK/BP_Handgun_classes.hpp" +#include "SDK/CheckTagsAddedRemovedOnPhyr_classes.hpp" +#include "SDK/BPI_MapBoundary_classes.hpp" +#include "SDK/BP_TimestopFX_Temp_classes.hpp" +#include "SDK/AnimBP_DecapitatedHead_USK_structs.hpp" +#include "SDK/AnimBP_DecapitatedHead_USK_classes.hpp" +#include "SDK/GE_Slowmovement_classes.hpp" +#include "SDK/BP_WeaponInstance_Knife_classes.hpp" +#include "SDK/BP_BloodCurse_activate_classes.hpp" +#include "SDK/AnimBP_Tolly_structs.hpp" +#include "SDK/AnimBP_Tolly_classes.hpp" +#include "SDK/BP_IAO_Gate_classes.hpp" +#include "SDK/CinematicFunctionLibrary_classes.hpp" +#include "SDK/WBP_WaypointDistance_classes.hpp" +#include "SDK/CommonTextStyleNotificationBig_classes.hpp" +#include "SDK/WBP_Stealth_classes.hpp" +#include "SDK/ShowTutorial_classes.hpp" +#include "SDK/BPI_SpiritTouchActor_classes.hpp" +#include "SDK/BP_hurtbox_classes.hpp" +#include "SDK/WrestlerProjectile_Bullet_sniper_classes.hpp" +#include "SDK/AN_Hurtbox_classes.hpp" +#include "SDK/GrantXPOrAPFromEventWithTag_classes.hpp" +#include "SDK/GE_KickBlocker_classes.hpp" +#include "SDK/WBP_HitReactionContainer_classes.hpp" +#include "SDK/GE_EngagedNoticeability_classes.hpp" +#include "SDK/BP_Padlock_classes.hpp" +#include "SDK/GE_VampiricVision_Active_classes.hpp" +#include "SDK/BP_ElixirHealth_classes.hpp" +#include "SDK/GE_FullHealth_classes.hpp" +#include "SDK/WBP_GreedAnim_classes.hpp" +#include "SDK/CM_WrestlerMotionBlurTimeScale_classes.hpp" +#include "SDK/GE_ElixirHealthRestore_classes.hpp" +#include "SDK/WBP_NotesPopUp_classes.hpp" +#include "SDK/ToggleSafiaRecallPosition_classes.hpp" +#include "SDK/CombatInputNotify_classes.hpp" +#include "SDK/BP_WeaponInstance_Handgun_classes.hpp" +#include "SDK/BP_WeaponInstance_SMG_classes.hpp" +#include "SDK/GE_ElixirBloodRestore_classes.hpp" +#include "SDK/GE_HeavyLand_classes.hpp" +#include "SDK/GE_enemy_blurredMomentum_classes.hpp" +#include "SDK/GE_Ventrue_Shield_Elixir_classes.hpp" +#include "SDK/GA_ElixirVentrue_classes.hpp" +#include "SDK/DialogRig_SetInteractionPropertyPayload_classes.hpp" +#include "SDK/GE_Player_healthSet_classes.hpp" +#include "SDK/ModifyElevator_classes.hpp" +#include "SDK/WBP_SaveLoadIcon_classes.hpp" +#include "SDK/GA_PlayerMovement_Crouch_classes.hpp" +#include "SDK/GA_ElixirBlood_classes.hpp" +#include "SDK/WBP_PointOfInterestWaypointIndicator_classes.hpp" +#include "SDK/GA_PlayerAttack_Light_classes.hpp" +#include "SDK/GE_Brujah_Passive_classes.hpp" +#include "SDK/GA_EnemyReact_TKPull_classes.hpp" +#include "SDK/GE_ElixirBrujah_Passive_classes.hpp" +#include "SDK/VideoPlayer_classes.hpp" +#include "SDK/WBP_EquippedAbilityWidget_classes.hpp" +#include "SDK/Bool_Toggle_classes.hpp" +#include "SDK/BPI_HudUpdatedEnemyAwerness_classes.hpp" +#include "SDK/BP_WrestlerPlayerStateInGame_classes.hpp" +#include "SDK/BPI_CharacterSnow_classes.hpp" +#include "SDK/BP_VFX_HubSnowKillVolume_classes.hpp" +#include "SDK/BP_SniperSpline_classes.hpp" +#include "SDK/WBP_WrestlerAttributeWidget_classes.hpp" +#include "SDK/BP_ScentTrail_classes.hpp" +#include "SDK/WBP_WrestlerAttributeWidget_Shield_classes.hpp" +#include "SDK/WBP_WrestlerAttributeWidget_Blood_classes.hpp" +#include "SDK/GE_PipeClimbCooldown_classes.hpp" +#include "SDK/WBP_WrestlerAttributeWidget_Health_classes.hpp" +#include "SDK/TCR_IconSwitcher_classes.hpp" +#include "SDK/GA_Movement_LedgeVault_classes.hpp" +#include "SDK/WBP_ABTestAltAbility_classes.hpp" +#include "SDK/WBP_QuestWaypointIndicator_classes.hpp" +#include "SDK/WBP_QuestWaypointContainer_classes.hpp" +#include "SDK/BP_RichTextDecorator_classes.hpp" +#include "SDK/WBP_TutorialWidget_classes.hpp" +#include "SDK/WBP_NotificationPrompt_classes.hpp" +#include "SDK/WID_Unarmed_classes.hpp" +#include "SDK/WBP_StateIndicator_classes.hpp" +#include "SDK/WBP_QuestCentralNotification_classes.hpp" +#include "SDK/WBP_AbilityHotkeySlot_classes.hpp" +#include "SDK/WBP_UI_DialogReaction_classes.hpp" +#include "SDK/GE_BMCooldown_classes.hpp" +#include "SDK/WBP_MasqueradeWidget_classes.hpp" +#include "SDK/ClanTrainer_Toreador_Payoff_classes.hpp" +#include "SDK/GA_PlayerFeed_Base_classes.hpp" +#include "SDK/GA_PlayerStealthKill_classes.hpp" +#include "SDK/GA_PlayerCombatKill_classes.hpp" +#include "SDK/WaitBossPhaseComplete_classes.hpp" +#include "SDK/GA_PlayerCombatFeed_classes.hpp" +#include "SDK/Trigger_Obj_Bool_classes.hpp" +#include "SDK/GA_PlayerStealthFeed_classes.hpp" +#include "SDK/Camshake_Elevator_Shudder_classes.hpp" +#include "SDK/GA_PlayerInteraction_classes.hpp" +#include "SDK/GA_BackAway_classes.hpp" +#include "SDK/ActiveAbilityUpgradeUnlocked_classes.hpp" +#include "SDK/BP_ThrowableWeapon_ThinbloodShotgun_classes.hpp" +#include "SDK/GE_Slide_classes.hpp" +#include "SDK/GE_SlideCooldown_classes.hpp" +#include "SDK/GA_PlayerMovement_Slide_classes.hpp" +#include "SDK/GE_PlayerAirDashCooldown_classes.hpp" +#include "SDK/CheckPlayerInCombat_classes.hpp" +#include "SDK/GE_PlayerDashCooldown_classes.hpp" +#include "SDK/GA_PlayerDash_Omni_classes.hpp" +#include "SDK/GE_PlayerDash_Updated_cooldown_classes.hpp" +#include "SDK/ObjectiveTimerUpdate_classes.hpp" +#include "SDK/WBP_PlayerDash_Updated_Cooldown_classes.hpp" +#include "SDK/BP_Climbable_classes.hpp" +#include "SDK/CM_PipeClimb_classes.hpp" +#include "SDK/HoverFileMenuFont_classes.hpp" +#include "SDK/CameraShake_AttachJump_classes.hpp" +#include "SDK/CM_CamNudge_classes.hpp" +#include "SDK/Trigger_ReinforcementGroup_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Businessman_classes.hpp" +#include "SDK/CM_BoostScreenPP_classes.hpp" +#include "SDK/ESide_structs.hpp" +#include "SDK/CM_GlideScreenPP_classes.hpp" +#include "SDK/BP_lightutility_cage_Rotate_02_classes.hpp" +#include "SDK/GA_PlayerMovement_Sprint_classes.hpp" +#include "SDK/SecondaryAbilityAcquired_classes.hpp" +#include "SDK/WBP_Crosshair_classes.hpp" +#include "SDK/GA_PlayerMovement_Hang_classes.hpp" +#include "SDK/GA_PlayerMovement_PipeClimb_classes.hpp" +#include "SDK/GA_PlayerMovement_Glide_classes.hpp" +#include "SDK/TA_WallClimbBoost_classes.hpp" +#include "SDK/TCR_RPGMenuButton_classes.hpp" +#include "SDK/BP_WallClimbShake_classes.hpp" +#include "SDK/CM_Vsprint_classes.hpp" +#include "SDK/BP_Weapon_Unarmed_classes.hpp" +#include "SDK/BP_DeadEnemy_Base_classes.hpp" +#include "SDK/GA_Enemy_Anger_classes.hpp" +#include "SDK/GC_VampireSprint_classes.hpp" +#include "SDK/BPI_DebugCamera_classes.hpp" +#include "SDK/WBP_ClanSelect_DisciplineSlot_classes.hpp" +#include "SDK/CM_JoystickLookAssist_classes.hpp" +#include "SDK/CM_CombatLensing_classes.hpp" +#include "SDK/WBP_BossHealthMeter_classes.hpp" +#include "SDK/WBP_TargetIndicator_classes.hpp" +#include "SDK/GA_ElixirBrujah_classes.hpp" +#include "SDK/WBP_InteractionPrompt_classes.hpp" +#include "SDK/BP_StuckActorComponent_classes.hpp" +#include "SDK/BP_Enemy_Throwable_classes.hpp" +#include "SDK/BP_BloodCurse_Giblets_classes.hpp" +#include "SDK/GE_BlockTargeting_0_classes.hpp" +#include "SDK/GA_EnemyThrow_Object_classes.hpp" +#include "SDK/WBP_ConsumableSlot_classes.hpp" +#include "SDK/HoverSubTabFont_classes.hpp" +#include "SDK/BP_EntityWitnessMarker_classes.hpp" +#include "SDK/WBP_ConsumablesHUDWidget_classes.hpp" +#include "SDK/Change_VisibilityCollision_classes.hpp" +#include "SDK/GE_SuppressBarks_Deathcommentonly_classes.hpp" +#include "SDK/WBP_InteractionIndicator_classes.hpp" +#include "SDK/WBP_XPFillBar_classes.hpp" +#include "SDK/WBP_MilestoneCentralNotification_classes.hpp" +#include "SDK/TeleportActor_classes.hpp" +#include "SDK/WBP_CentralContainerWidget_classes.hpp" +#include "SDK/GE_NoticabilityReduction_classes.hpp" +#include "SDK/WBP_SideNotification_classes.hpp" +#include "SDK/BP_WrestlerPlayerControllerInGame_classes.hpp" +#include "SDK/WBP_SideContainer_classes.hpp" +#include "SDK/BP_Trigger_Safia_Recall_classes.hpp" +#include "SDK/Enum_Elixir_Action_structs.hpp" +#include "SDK/BP_WeaponInstance_Rifle_classes.hpp" +#include "SDK/BP_WeaponInstance_Revolver_classes.hpp" +#include "SDK/CM_Brujah_LightningStrike_Targeting_classes.hpp" +#include "SDK/CodexCollections_classes.hpp" +#include "SDK/TriggerSafiaRecallOnPlayer_classes.hpp" +#include "SDK/WBP_MultipleEndings_classes.hpp" +#include "SDK/GA_Enemy_Interrupt_HeavyAttack_classes.hpp" +#include "SDK/WBP_AwernessIndicator_classes.hpp" +#include "SDK/ClanPerkFunctionLibrary_classes.hpp" +#include "SDK/TogglePostProcessVolume_classes.hpp" +#include "SDK/CM_EntrancingKiss_Pulse_classes.hpp" +#include "SDK/GE_LandingBoost_classes.hpp" +#include "SDK/ExplosiveChaser_Spline_classes.hpp" +#include "SDK/GA_Enemy_Sidestep_classes.hpp" +#include "SDK/CameraShake_AttackImpact_Light_classes.hpp" +#include "SDK/GE_StrikeCost_classes.hpp" +#include "SDK/GA_Additive_Crouch_classes.hpp" +#include "SDK/WBP_NoTarget_classes.hpp" +#include "SDK/BP_WrestlerPathPoint_classes.hpp" +#include "SDK/GE_WeaponFire_Cost_Rifle_classes.hpp" +#include "SDK/GE_RangedDamage_classes.hpp" +#include "SDK/GE_WeaponAmmoRefresh_classes.hpp" +#include "SDK/GA_WeaponSwap_Base_classes.hpp" +#include "SDK/GA_MeleeWeaponSwap_ReturnToInitial_classes.hpp" +#include "SDK/AN_Audio_AkPostAtLocation_classes.hpp" +#include "SDK/GE_TD_TargetingBlocked_classes.hpp" +#include "SDK/GE_TD_Killresist_classes.hpp" +#include "SDK/GA_Weapon_Fire_classes.hpp" +#include "SDK/GA_EnemyAwarenessReaction_Base_classes.hpp" +#include "SDK/GA_VE_TerminalDecree_Kill_classes.hpp" +#include "SDK/GA_EnemyPropagate_classes.hpp" +#include "SDK/GA_Player_Stuck_Reset_classes.hpp" +#include "SDK/GA_EnemyHeardANoiseReaction_classes.hpp" +#include "SDK/GA_EnemyCalledIntoBattleReaction_classes.hpp" +#include "SDK/GA_EnemyInstantAlertReaction_classes.hpp" +#include "SDK/GA_EnemySawGlimpseReaction_classes.hpp" +#include "SDK/DisabledButtonFontStyle_classes.hpp" +#include "SDK/BP_TransitionDoor_Single_ProEscape_classes.hpp" +#include "SDK/GA_Reaction_Alert_classes.hpp" +#include "SDK/GA_Reaction_LookatActor_classes.hpp" +#include "SDK/GE_HeavyPunch_Cooldown_classes.hpp" +#include "SDK/WBP_BaseQuestMarkerWidget_classes.hpp" +#include "SDK/GE_dashCooldown_classes.hpp" +#include "SDK/GE_sidestepCooldown_classes.hpp" +#include "SDK/PD_FM_REG_Onda_classes.hpp" +#include "SDK/GA_Enemy_DefensiveDash_classes.hpp" +#include "SDK/PTD_Phyre_classes.hpp" +#include "SDK/AN_Temp_Prop_classes.hpp" +#include "SDK/DABP_PlayerAttackConfig_classes.hpp" +#include "SDK/GE_MatrixPunch_cooldown_classes.hpp" +#include "SDK/BP_AttackDetails_classes.hpp" +#include "SDK/GA_PlayerPunch_Charged_base_classes.hpp" +#include "SDK/GA_PlayerAttack_Heavy_classes.hpp" +#include "SDK/GA_PlayerAttack_Light_NoLunge_classes.hpp" +#include "SDK/GE_ChargeupSlowdown_classes.hpp" +#include "SDK/GA_Enemy_DefensiveDash_Weak_classes.hpp" +#include "SDK/GE_SetStunToThreshold_classes.hpp" +#include "SDK/GE_Stun_attackable_classes.hpp" +#include "SDK/GE_Stun_classes.hpp" +#include "SDK/GA_Stun_classes.hpp" +#include "SDK/GA_PlayerMovement_WallClimb_classes.hpp" +#include "SDK/GA_PlayerMovement_VampireSprint_classes.hpp" +#include "SDK/BP_Launchpad_classes.hpp" +#include "SDK/GA_LaunchJump_classes.hpp" +#include "SDK/PD_STS_MDSK_Willem_classes.hpp" +#include "SDK/GameplayTag_Set_classes.hpp" +#include "SDK/E_DataLayersLoadType_structs.hpp" +#include "SDK/GA_Entranced_classes.hpp" +#include "SDK/GA_PlayerWindup_classes.hpp" +#include "SDK/WrestlerCharacterSnowComponent_classes.hpp" +#include "SDK/SEQ_RE_Pro_Escape_Police_Entry_classes.hpp" +#include "SDK/BP_NoisyPlayer_classes.hpp" +#include "SDK/WBP_BaseTree_classes.hpp" +#include "SDK/TCR_AbilityNodeWidget_classes.hpp" +#include "SDK/ShowMasqueradeHUD_classes.hpp" +#include "SDK/LightUtilities_classes.hpp" +#include "SDK/BP_InteractableQuestActorBase_classes.hpp" +#include "SDK/BP_Explosion_classes.hpp" +#include "SDK/BP_Explosion_TickDelay_classes.hpp" +#include "SDK/BP_Enemy_Throwable_Grenade_classes.hpp" +#include "SDK/GA_Enemy_ExplosiveChaser_classes.hpp" +#include "SDK/WBP_TKInputPrompt_classes.hpp" +#include "SDK/GA_Telekenesis_Boltpull_classes.hpp" +#include "SDK/BP_CodexItem_DPackage_classes.hpp" +#include "SDK/BP_IQA_Button_classes.hpp" +#include "SDK/Struct_Face_Morph_Targert_structs.hpp" +#include "SDK/Wrinkles_classes.hpp" +#include "SDK/GE_VampiricVisionEnemy_classes.hpp" +#include "SDK/WBP_Interaction_Parent_classes.hpp" +#include "SDK/BP_QuestRichTextDecorator_classes.hpp" +#include "SDK/WBP_QuestOptionalObjective_classes.hpp" +#include "SDK/WBP_QuestProgress_classes.hpp" +#include "SDK/HusksStartDead_classes.hpp" +#include "SDK/WBP_DpadInGame_MK_classes.hpp" +#include "SDK/GA_EnemyReact_Pause_classes.hpp" +#include "SDK/WBP_MainHUD_VS_classes.hpp" +#include "SDK/WBP_DpadContainer_classes.hpp" +#include "SDK/WBP_HealthAndBlood_classes.hpp" +#include "SDK/WBP_PlayerHUD_classes.hpp" +#include "SDK/BP_ReactiveCrosshairTrigger_classes.hpp" +#include "SDK/BP_Elixir_classes.hpp" +#include "SDK/GA_Ysabella_BlurredMomentum_Activate_classes.hpp" +#include "SDK/GA_Additive_SniperTargeting_NoCrouch_Endless_classes.hpp" +#include "SDK/GA_PlayerHitReact_Light_classes.hpp" +#include "SDK/GA_Ysabella_StagePresence_classes.hpp" +#include "SDK/WrestlerAbilityTargetingComponent_classes.hpp" +#include "SDK/BPFL_WrestlerAbilityTargeting_classes.hpp" +#include "SDK/WBP_PlayerCursor_classes.hpp" +#include "SDK/GA_BR_Lightningstrikes_targeted_classes.hpp" +#include "SDK/AN_Audio_DynamicFoley_LoopPostEvent_classes.hpp" +#include "SDK/BP_EnemyBoss_classes.hpp" +#include "SDK/BP_Beckon_Target_classes.hpp" +#include "SDK/BP_EnemyBoss_Ysabella_classes.hpp" +#include "SDK/BP_decapitated_head_classes.hpp" +#include "SDK/CM_PoliceHighlight_PP_classes.hpp" +#include "SDK/GA_Enemy_Torture_classes.hpp" +#include "SDK/AnimBP_DeadEnemy_USK_structs.hpp" +#include "SDK/AnimBP_DeadEnemy_USK_classes.hpp" +#include "SDK/GA_EnemyReact_Knocked_classes.hpp" +#include "SDK/BP_CharacterAudioFunctions_Player_classes.hpp" +#include "SDK/GA_Telekinesis_Pull_classes.hpp" +#include "SDK/GA_Movement_Vault_classes.hpp" +#include "SDK/GA_TutorialBackaway_classes.hpp" +#include "SDK/AnimBP_Player_Locomotion_structs.hpp" +#include "SDK/AnimBP_Player_Locomotion_classes.hpp" +#include "SDK/CM_DashDip_classes.hpp" +#include "SDK/TA_TelekinesisTrajectory_classes.hpp" +#include "SDK/GA_PlayerDash_Updated_classes.hpp" +#include "SDK/GA_ComboDash_Short_classes.hpp" +#include "SDK/GA_PlayerAttack_base_classes.hpp" +#include "SDK/CommonTextScrollStyle_classes.hpp" +#include "SDK/GA_PlayerAttack_Shunt_classes.hpp" +#include "SDK/BP_WrestlerTestPlayerCharacter_classes.hpp" +#include "SDK/Seq_Out_Of_Bounds_Mechanic_Malkavian_classes.hpp" +#include "SDK/GA_Player_OutOfWorld_Reset_classes.hpp" +#include "SDK/GA_Player_HubBoundary_Reset_classes.hpp" +#include "SDK/GA_Torpor_classes.hpp" +#include "SDK/E_BarkState_structs.hpp" +#include "SDK/BP_SafiaRecallPosition_classes.hpp" +#include "SDK/GA_QuestResponse_classes.hpp" +#include "SDK/GA_Movement_WallJump_Up_classes.hpp" +#include "SDK/GA_Springboard_classes.hpp" +#include "SDK/GE_EnemySequence_BlockDamage_classes.hpp" +#include "SDK/GA_EnemySequence_classes.hpp" +#include "SDK/GC_Telekinesis_BoltPull_classes.hpp" +#include "SDK/WrestlerDataAsset_ReactionConfig_classes.hpp" +#include "SDK/GE_NarrativeMode_BlockMantle_classes.hpp" +#include "SDK/GA_PlayerReact_Picker_classes.hpp" +#include "SDK/GE_NarrativeMode_classes.hpp" +#include "SDK/GA_EnemyReact_Flinch_classes.hpp" +#include "SDK/GA_NarrativeMode_classes.hpp" +#include "SDK/GA_Stealth_classes.hpp" +#include "SDK/AnimBP_ShadowBeing_structs.hpp" +#include "SDK/AnimBP_ShadowBeing_classes.hpp" +#include "SDK/GA_PlayerBloodHeal_classes.hpp" +#include "SDK/GE_PlayerHitReact_MovementSpeed_Override_classes.hpp" +#include "SDK/WID_Knife_classes.hpp" +#include "SDK/GA_LockDashSupport_classes.hpp" +#include "SDK/GE_Subdued_classes.hpp" +#include "SDK/GA_PlayerHitReact_classes.hpp" +#include "SDK/GA_PlayerHitReact_Ranged_classes.hpp" +#include "SDK/GA_PlayerHitReact_Poke_classes.hpp" +#include "SDK/GA_VE_MM_Subdued_classes.hpp" +#include "SDK/GA_OblivionGlimpseReaction_classes.hpp" +#include "SDK/GA_Status_Chaos_classes.hpp" +#include "SDK/GE_Taunted_classes.hpp" +#include "SDK/GE_Knocked_Movespeed_classes.hpp" +#include "SDK/BP_AimAssistLockedOnReticle_classes.hpp" +#include "SDK/WBP_OutfitNotification_classes.hpp" +#include "SDK/BP_AimAssistChosenTargetReticle_classes.hpp" +#include "SDK/BP_AimAssistPotentialTargetReticle_classes.hpp" +#include "SDK/GA_AimAssist_classes.hpp" +#include "SDK/Int_Increment_classes.hpp" +#include "SDK/WBP_TPT_Prompt_classes.hpp" +#include "SDK/GA_PlayerMovement_Prompt_classes.hpp" +#include "SDK/GA_EnemyReact_Picker_classes.hpp" +#include "SDK/TA_WrestlerCombatFeed_Kill_classes.hpp" +#include "SDK/SEQ_ProEscape_DashTut_classes.hpp" +#include "SDK/GA_Enemy_Snatched_classes.hpp" +#include "SDK/GA_PlayerMovement_Prowl_classes.hpp" +#include "SDK/BP_Machete_classes.hpp" +#include "SDK/EEnemyNames_structs.hpp" +#include "SDK/BP_DynamicCombatSpawnVolume_classes.hpp" +#include "SDK/WID_Machete_classes.hpp" +#include "SDK/TA_Telekinesis_classes.hpp" +#include "SDK/GE_BlockTargeting_period_classes.hpp" +#include "SDK/GA_PlayerHitReact_Knocked_classes.hpp" +#include "SDK/GE_Floored_Movespeed_classes.hpp" +#include "SDK/GA_Floored_classes.hpp" +#include "SDK/WBP_CharacterCostumisationButton_classes.hpp" +#include "SDK/CommonButtonPrompt_classes.hpp" +#include "SDK/WBP_MainMap_classes.hpp" +#include "SDK/GA_Burn_classes.hpp" +#include "SDK/GA_PlayerObjectCollect_classes.hpp" +#include "SDK/BP_TKConstraint_classes.hpp" +#include "SDK/HideShowInteractionPointBasedOnIQA_classes.hpp" +#include "SDK/WBP_TKCrosshair_classes.hpp" +#include "SDK/GA_HoldAltControl_classes.hpp" +#include "SDK/GA_Telekinesis_Hold_classes.hpp" +#include "SDK/WBP_ActiveQuestPoolWidget_classes.hpp" +#include "SDK/WBP_SideQuestPoolWidget_classes.hpp" +#include "SDK/BP_Audio_TriggerBox_CustomLocation_classes.hpp" +#include "SDK/GA_Telekinesis_Throw_classes.hpp" +#include "SDK/ABP_Phyre_Hair_MidLong_structs.hpp" +#include "SDK/ABP_Phyre_Hair_MidLong_classes.hpp" +#include "SDK/GA_TR_BloodsalvoCancel_classes.hpp" +#include "SDK/CM_VVInputPulse_classes.hpp" +#include "SDK/BP_VampireVisionPulse_classes.hpp" +#include "SDK/GC_Telekinesis_Release_classes.hpp" +#include "SDK/Trigger_Obj_Bool_Pawns_classes.hpp" +#include "SDK/CM_VVPulse_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_AngryOnPhone_classes.hpp" +#include "SDK/CM_HS_Characters_PP_classes.hpp" +#include "SDK/SettingsTab_classes.hpp" +#include "SDK/W_WrestlerSettingScreen_classes.hpp" +#include "SDK/CM_HeightenedSenses_PP_classes.hpp" +#include "SDK/GA_Enemy_CloudMemory_classes.hpp" +#include "SDK/W_SettingsPanel_classes.hpp" +#include "SDK/GE_BlockMove_classes.hpp" +#include "SDK/GE_BlockCrouch_classes.hpp" +#include "SDK/ShowHideHealthHUD_classes.hpp" +#include "SDK/BP_HeightenedSenses_VFX_02_classes.hpp" +#include "SDK/GA_HeightenedSensesPulse_classes.hpp" +#include "SDK/PDA_Wrestler_DynamicEnemySpawnSystem_classes.hpp" +#include "SDK/GE_InteractStats_classes.hpp" +#include "SDK/CommonTextStyleActionPrompt_classes.hpp" +#include "SDK/CM_RestrictView_classes.hpp" +#include "SDK/WrestlerProjectile_ExplodingBolt_classes.hpp" +#include "SDK/GA_RestrictView_classes.hpp" +#include "SDK/GE_Player_HubBoundary_classes.hpp" +#include "SDK/Enum_IQA_Action_structs.hpp" +#include "SDK/IQA_ModifyActors_classes.hpp" +#include "SDK/GE_LedgeHang_Cooldown_classes.hpp" +#include "SDK/GA_PlayerInteractAnimation_classes.hpp" +#include "SDK/GA_Player_HubBoundary_classes.hpp" +#include "SDK/W_SettingsListEntry_Discrete_classes.hpp" +#include "SDK/CM_Ma_Sprint_classes.hpp" +#include "SDK/GE_Ma_Sprint_Narrative_classes.hpp" +#include "SDK/Objectives_Trigger_classes.hpp" +#include "SDK/GE_Ma_Sprint_classes.hpp" +#include "SDK/GA_PlayerMovement_Glide_Dynamic_classes.hpp" +#include "SDK/GA_Ma_Sprint_classes.hpp" +#include "SDK/ENUM_CharacterOverlays_Player_structs.hpp" +#include "SDK/WBP_SaveLoadSettingsTab_classes.hpp" +#include "SDK/GA_Ve_Beckon_trance_classes.hpp" +#include "SDK/AN_ToggleCollision_classes.hpp" +#include "SDK/GA_EnemyStealthReact_classes.hpp" +#include "SDK/GA_GhoulHitReact_classes.hpp" +#include "SDK/WBP_RemappingWidget_classes.hpp" +#include "SDK/WBP_ConfirmPromptWidget_classes.hpp" +#include "SDK/GA_Enemy_Fear_classes.hpp" +#include "SDK/WBP_ConfirmPromptBg_classes.hpp" +#include "SDK/BP_ShadowBeing_classes.hpp" +#include "SDK/GA_Enemy_Trapped_classes.hpp" +#include "SDK/GA_Status_Anger_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Base_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Light_classes.hpp" +#include "SDK/GA_EnemyReact_WallSlam_classes.hpp" +#include "SDK/GA_EnemyReact_Heavyland_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Counter_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Telekinesis_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_TelekinesisNew_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_LightningStrike_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Salvo_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Ranged_classes.hpp" +#include "SDK/Anim_Prop_Data_classes.hpp" +#include "SDK/GA_Patrol_Action_Base_classes.hpp" +#include "SDK/ST_LightComponent_structs.hpp" +#include "SDK/ST_LightMesh_structs.hpp" +#include "SDK/BP_lightmaster_classes.hpp" +#include "SDK/GA_Patrol_Action_Talk_classes.hpp" +#include "SDK/BP_CodexItem_Base_classes.hpp" +#include "SDK/GA_Patrol_Action_Bouncer_classes.hpp" +#include "SDK/GA_Patrol_Action_DrunkSitting_classes.hpp" +#include "SDK/GA_Patrol_Action_Aim_Shotgun_classes.hpp" +#include "SDK/GA_Patrol_Action_Search_PeekAround_classes.hpp" +#include "SDK/PD_MoTF_PoS_MrsThorn_classes.hpp" +#include "SDK/GA_Patrol_Action_Investigate_Front_01_classes.hpp" +#include "SDK/GA_Patrol_Action_Police_Idle_classes.hpp" +#include "SDK/GA_Patrol_Action_WallLearn_01_classes.hpp" +#include "SDK/GA_Patrol_Action_Crouch_classes.hpp" +#include "SDK/GA_Patrol_Action_Aim_Pistol_classes.hpp" +#include "SDK/GA_Patrol_Action_Urinating_classes.hpp" +#include "SDK/GA_Patrol_Action_KickGround_classes.hpp" +#include "SDK/ShowHideHud_classes.hpp" +#include "SDK/GA_Patrol_Action_Laptop_classes.hpp" +#include "SDK/GA_Patrol_Action_Strange_Noise_classes.hpp" +#include "SDK/GA_Tr_BloodCurse_Target_classes.hpp" +#include "SDK/GA_Patrol_Action_Dead_Body_Reaction_classes.hpp" +#include "SDK/GA_Patrol_Action_PeekUp_classes.hpp" +#include "SDK/GA_Patrol_Action_Investigate_Floor_02_classes.hpp" +#include "SDK/GA_Patrol_Action_React_Curious_classes.hpp" +#include "SDK/GA_Patrol_Action_LookAround_classes.hpp" +#include "SDK/DefaultButtonFontStyle_classes.hpp" +#include "SDK/ABP_Phyre_Hair_Bun_structs.hpp" +#include "SDK/ABP_Phyre_Hair_Bun_classes.hpp" +#include "SDK/GA_Patrol_Action_Investigate_Floor_01_classes.hpp" +#include "SDK/GA_Patrol_Action_Bus_Stop_Complaints_classes.hpp" +#include "SDK/GA_Patrol_Action_Idle_Panicked_classes.hpp" +#include "SDK/GA_Patrol_Action_Attacking_Idle_Bat_classes.hpp" +#include "SDK/BP_DynamicEnemySpawnSystem_classes.hpp" +#include "SDK/GA_Patrol_Action_ReadyToFight_classes.hpp" +#include "SDK/GA_Patrol_Action_Female_Drinking_classes.hpp" +#include "SDK/GA_Patrol_Action_Drinking_classes.hpp" +#include "SDK/GA_Patrol_Action_On_Phone_classes.hpp" +#include "SDK/GA_Patrol_Action_Angry_At_ATM_classes.hpp" +#include "SDK/BP_ClubLight_02_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Heavy_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_BlockBroken_classes.hpp" +#include "SDK/GA_Patrol_Action_Kicking_classes.hpp" +#include "SDK/GA_EnemyReact_Knocked_Getup_classes.hpp" +#include "SDK/GE_RecentlyPulled_classes.hpp" +#include "SDK/SetMasqueradeEnabled_classes.hpp" +#include "SDK/GA_EnemyReact_TK_resist_classes.hpp" +#include "SDK/BP_NPC_button_classes.hpp" +#include "SDK/BP_Knife_classes.hpp" +#include "SDK/BP_Revolver_classes.hpp" +#include "SDK/GA_QuestTarget_classes.hpp" +#include "SDK/CM_SpectatorPawn_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_classes.hpp" +#include "SDK/Modify_BP_MovingElevator_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_CarTheif_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Graffiti_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Dave_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Bikers_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_AngryATM_classes.hpp" +#include "SDK/GC_Tr_BloodExplosion_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_CatCaller_classes.hpp" +#include "SDK/GA_Patrol_Action_smoking_classes.hpp" +#include "SDK/GA_QuestTarget_NikoTargets_Mugger_classes.hpp" +#include "SDK/GA_Patrol_Action_DrunkStanding_Dizzy_classes.hpp" +#include "SDK/TCR_BottomActionBar_classes.hpp" +#include "SDK/GA_EnemyReact_Hit_Stumble_classes.hpp" +#include "SDK/GA_Patrol_Action_SprayPainting_classes.hpp" +#include "SDK/WID_Handgun_classes.hpp" +#include "SDK/GA_Additive_Crouch_NonCombat_classes.hpp" +#include "SDK/BP_ThrowableWeapon_Rifle_classes.hpp" +#include "SDK/BP_PhosphorFire_classes.hpp" +#include "SDK/SetRestrictedBloodResonanceTags_classes.hpp" +#include "SDK/BP_SniperRifle_classes.hpp" +#include "SDK/FadeInScreen_classes.hpp" +#include "SDK/GA_Additive_SniperTargeting_classes.hpp" +#include "SDK/BP_ClubLight_classes.hpp" +#include "SDK/GA_Additive_SniperTargeting_Patrol_classes.hpp" +#include "SDK/GA_Additive_Bartend_classes.hpp" +#include "SDK/ManageLevels_classes.hpp" +#include "SDK/BP_SMG_classes.hpp" +#include "SDK/GA_Patrol_Action_Reaction_Something_Weird_classes.hpp" +#include "SDK/WBP_CodexRPGMenuTab_classes.hpp" +#include "SDK/GA_Patrol_Action_Combat_Idle_Knife_classes.hpp" +#include "SDK/WID_SMG_classes.hpp" +#include "SDK/BP_WrestlerGameStateInGame_classes.hpp" +#include "SDK/ShowPlayerHUD_classes.hpp" +#include "SDK/UnBlockAbilityOnPlayer_classes.hpp" +#include "SDK/PD_MOTF_BS_Bouncer_classes.hpp" +#include "SDK/BlockAbilityOnPlayer_classes.hpp" +#include "SDK/PD_MOTF_CG_Pandora_classes.hpp" +#include "SDK/KillPlayer_classes.hpp" +#include "SDK/SetNarrativeMode_classes.hpp" +#include "SDK/BP_FakeElevator_classes.hpp" +#include "SDK/Camshake_Elevator_Movement_classes.hpp" +#include "SDK/NominateAutosaveToNamedSaveSlot_classes.hpp" +#include "SDK/BP_BasicDoor_Base_classes.hpp" +#include "SDK/ClearObjectiveCounter_classes.hpp" +#include "SDK/DespawnEnemyActors_classes.hpp" +#include "SDK/SetWwiseState_classes.hpp" +#include "SDK/CleanupDeadBodies_classes.hpp" +#include "SDK/WBP_TempKillIcon_classes.hpp" +#include "SDK/BPP_ProEscape_Basement_Hole_01_classes.hpp" +#include "SDK/ToggleCrosshairReaction_classes.hpp" +#include "SDK/Override_Target_Actor_classes.hpp" +#include "SDK/AddRemoveTagFromTaggedEnemies_classes.hpp" +#include "SDK/ChangeStaticMesh_classes.hpp" +#include "SDK/Change_PlayableCharacter_classes.hpp" +#include "SDK/ClanChoiceTask_classes.hpp" +#include "SDK/Teleport_classes.hpp" +#include "SDK/BP_ReinforcementGroup_classes.hpp" +#include "SDK/PD_STS_MDR_Ryong_classes.hpp" +#include "SDK/AudioPostEventGlobal_classes.hpp" +#include "SDK/UnrestrictPlayerView_classes.hpp" +#include "SDK/DestroyActors_classes.hpp" +#include "SDK/Enum_CharacterTargetAction_structs.hpp" +#include "SDK/GC_Telekinesis_Hit_classes.hpp" +#include "SDK/WaitForInterferenceOfEnemy_classes.hpp" +#include "SDK/PlayEnemySequence_classes.hpp" +#include "SDK/BP_TransitionBase_classes.hpp" +#include "SDK/SpawnEnemyActors_classes.hpp" +#include "SDK/ObjectiveCounterUpdate_classes.hpp" +#include "SDK/VictimTagUpdate_classes.hpp" +#include "SDK/PlayBackgroundSequence_classes.hpp" +#include "SDK/WBP_LocationMapMarkerWidget_classes.hpp" +#include "SDK/PD_STS_MDM_Max_classes.hpp" +#include "SDK/WBP_CurseSymbol_classes.hpp" +#include "SDK/IncreaseMasqueradeLevel_classes.hpp" +#include "SDK/BP_DynamicSmartObjectActor_classes.hpp" +#include "SDK/GA_InCutscene_classes.hpp" +#include "SDK/PD_FM_BS_Verona_classes.hpp" +#include "SDK/RefillBlood_classes.hpp" +#include "SDK/BP_GeneratorOn_Shake_classes.hpp" +#include "SDK/AudioStopEventActor_classes.hpp" +#include "SDK/BP_ScentrailReactiveCrosshair_classes.hpp" +#include "SDK/NoiseEventAtLocation_classes.hpp" +#include "SDK/BP_ToggleVisibilityActors_classes.hpp" +#include "SDK/BP_Interactable_Generator_classes.hpp" +#include "SDK/ClearObjectiveTimer_classes.hpp" +#include "SDK/BP_WrestlerCheatManager_classes.hpp" +#include "SDK/BP_TransitionDoor_Base_classes.hpp" +#include "SDK/SetTransitionDoorDataLayers_classes.hpp" +#include "SDK/KillAllEnemiesWithTag_classes.hpp" +#include "SDK/RaiseEvent_classes.hpp" +#include "SDK/GE_markSubdue_classes.hpp" +#include "SDK/BP_VFX_HeraDialogueEvent_EndDominate_classes.hpp" +#include "SDK/TriggerMalkavianFeed_classes.hpp" +#include "SDK/SetEnemyPatrolRoutes_classes.hpp" +#include "SDK/PD_MOTF_MDR_Ryong_classes.hpp" +#include "SDK/Int_Decrement_classes.hpp" +#include "SDK/ShowText_classes.hpp" +#include "SDK/BP_HideEnemy_classes.hpp" +#include "SDK/ChangeObjectiveVisibility_classes.hpp" +#include "SDK/ModifyTransitionDoor_classes.hpp" +#include "SDK/BlockPlayerMovement_classes.hpp" +#include "SDK/PlayCutscene_classes.hpp" +#include "SDK/CM_Recall_classes.hpp" +#include "SDK/IQA_ModifyActorType_classes.hpp" +#include "SDK/DialogueStopWithCharacterTag_classes.hpp" +#include "SDK/QuestEntryFont_classes.hpp" +#include "SDK/SetWhereIsWallySpawnerActive_classes.hpp" +#include "SDK/PD_MoTF_PoS_Bouncer_classes.hpp" +#include "SDK/HoverButtonFontStyle_classes.hpp" +#include "SDK/PDA_Wrestler_DynamicEnemySpawnSystem_QuestMap_classes.hpp" +#include "SDK/BP_ThrowableKillVolume_classes.hpp" +#include "SDK/BP_CustomHusk_HS_VFX_Performance_classes.hpp" +#include "SDK/SaveAndRestoreElixirs_classes.hpp" +#include "SDK/RemoveAllFabiensElixirs_classes.hpp" +#include "SDK/WBP_RPGMenuContainer_classes.hpp" +#include "SDK/BP_ReactiveCrosshairStandalone_classes.hpp" +#include "SDK/ReactiveCrosshairStandaloneTask_classes.hpp" +#include "SDK/BP_StaticFX_Light_Snow_Window_Box_Pro_Lou_Escape_classes.hpp" +#include "SDK/WBP_MissionFailedScreen_classes.hpp" +#include "SDK/ShowMissionFailed_classes.hpp" +#include "SDK/BP_WrestlerHUDInGame_classes.hpp" +#include "SDK/RewardElixir_classes.hpp" +#include "SDK/TriggerYsabella_On_Stage_classes.hpp" +#include "SDK/BP_WrestlerGameModeInGame_classes.hpp" +#include "SDK/BP_Explosion_bloodcurse_classes.hpp" +#include "SDK/PD_STS_MDM_Misty_classes.hpp" +#include "SDK/PauseEnemySequence_classes.hpp" +#include "SDK/TA_Traversal_LedgeHang_classes.hpp" +#include "SDK/NewQuestNotificationTask_classes.hpp" +#include "SDK/Bool_Set_classes.hpp" +#include "SDK/DialogRig_Set_classes.hpp" +#include "SDK/ReloadLastCheckPoint_classes.hpp" +#include "SDK/BP_CheckForActorInVolume_classes.hpp" +#include "SDK/BP_InputRichTextDecorator_classes.hpp" +#include "SDK/CheckForActorsInVolume_classes.hpp" +#include "SDK/BP_CheckForEnemyActors_classes.hpp" +#include "SDK/CheckEnemyActorsInVolume_classes.hpp" +#include "SDK/CancelPhyreAbiltyByTags_classes.hpp" +#include "SDK/ManageDataLayers_classes.hpp" +#include "SDK/StartActivityTask_classes.hpp" +#include "SDK/Enum_CharacterTargetAbility_structs.hpp" +#include "SDK/Modify_AbilityTarget_classes.hpp" +#include "SDK/BP_IC_OpenORClose_BasicDoor_classes.hpp" +#include "SDK/DisableBloodResonance_classes.hpp" +#include "SDK/BP_laserBeam_classes.hpp" +#include "SDK/CloseCurrentNotification_classes.hpp" +#include "SDK/PlayCredits_classes.hpp" +#include "SDK/ForgetSavedDialogueState_classes.hpp" +#include "SDK/BP_DialogueEvent_ToggleLights_classes.hpp" +#include "SDK/Enum_LogMessageType_structs.hpp" +#include "SDK/AutomataTasks_FunctionLibrary_classes.hpp" +#include "SDK/GrantXPOrAPFromCustomEvent_classes.hpp" +#include "SDK/List_Modify_classes.hpp" +#include "SDK/SpawnActorAtLocation_classes.hpp" +#include "SDK/KillAllHusk_classes.hpp" +#include "SDK/ProgressAchievement_classes.hpp" +#include "SDK/ClearMassAI_classes.hpp" +#include "SDK/SetTurnOffVolumeEnabled_classes.hpp" +#include "SDK/FadeOutScreen_classes.hpp" +#include "SDK/GameplayEventToPlayer_classes.hpp" +#include "SDK/SpawnEnemySquadActors_classes.hpp" +#include "SDK/PD_FM_M_Onda_classes.hpp" +#include "SDK/Task_RemoveRecall_classes.hpp" +#include "SDK/TriggerEnemyBark_classes.hpp" +#include "SDK/PD_STS_MDPoS_Patience_classes.hpp" +#include "SDK/Int_Set_classes.hpp" +#include "SDK/UnlockTrainersInMap_classes.hpp" +#include "SDK/BP_Interactable_Laptop_classes.hpp" +#include "SDK/BP_Interactable_Laptop_HB3A_classes.hpp" +#include "SDK/ToggleLaptop_classes.hpp" +#include "SDK/LV_RE_Pro_Escape_classes.hpp" +#include "SDK/PD_FM_CG_Wheeler_classes.hpp" +#include "SDK/SetMassEntityVisibility_classes.hpp" +#include "SDK/ActivateSafetyNet_classes.hpp" +#include "SDK/SpawnEnemiesContinuous_classes.hpp" +#include "SDK/Override_Feed_Sequence_classes.hpp" +#include "SDK/BP_NewClueTrail_classes.hpp" +#include "SDK/EnableClueTrail_classes.hpp" +#include "SDK/DetachWaypointFromSpline_classes.hpp" +#include "SDK/ChangeVampiricVisionAvailability_classes.hpp" +#include "SDK/AttachWaypointToEnemy_classes.hpp" +#include "SDK/Change_Waypoints_classes.hpp" +#include "SDK/PD_STS_MDSK_Tolly_classes.hpp" +#include "SDK/HuskDissolverManager_classes.hpp" +#include "SDK/BF_RotationalShake_classes.hpp" +#include "SDK/ForceOpenVanDoors_classes.hpp" +#include "SDK/ActivateAbilityOnEnemy_classes.hpp" +#include "SDK/BP_CableSpline_HS_classes.hpp" +#include "SDK/ForceUseElevator_classes.hpp" +#include "SDK/ReplaceLightColour_classes.hpp" +#include "SDK/BP_lightutility_cage_01_classes.hpp" +#include "SDK/BP_PoliceHighlight_VFX_classes.hpp" +#include "SDK/StrickNR_Mannequin_LightFlicker_classes.hpp" +#include "SDK/BP_Laser_classes.hpp" +#include "SDK/BP_lighttable_magnifier_01_classes.hpp" +#include "SDK/TA_Traversal_PipeClimb_classes.hpp" +#include "SDK/BPC_lighttable_magnifier_01_Warehouse_01_classes.hpp" +#include "SDK/StrickNR_LightFlicker_classes.hpp" +#include "SDK/BP_Throwable_Prop_Glass_classes.hpp" +#include "SDK/BP_ThrowableLaserProjector_classes.hpp" +#include "SDK/BP_TelekinesisInteractable_Nightclub_TV_classes.hpp" +#include "SDK/BP_MovingElevator_classes.hpp" +#include "SDK/TraversalStyle_structs.hpp" +#include "SDK/BP_WrestlerTraversalPoint_classes.hpp" +#include "SDK/BP_StaticFX_classes.hpp" +#include "SDK/NavArea_Traversal_classes.hpp" +#include "SDK/BP_Enemy_Throwable_PhosphorGrenade_classes.hpp" +#include "SDK/BP_lightutility_emissiveplane_01_WareHouse_classes.hpp" +#include "SDK/BP_HeraCineCamera_classes.hpp" +#include "SDK/LookAtTrigger_classes.hpp" +#include "SDK/BP_ProEscape_Guard_Radio_classes.hpp" +#include "SDK/WBP_BaseMapPoolWidget_classes.hpp" +#include "SDK/BP_lightutility_emissiveplane_01_classes.hpp" +#include "SDK/BP_PerfAnalysis_classes.hpp" +#include "SDK/BP_GrenadeSpawner_classes.hpp" +#include "SDK/SetSearchLightOnOff_classes.hpp" +#include "SDK/BP_IC_GeneratorNoiseEvent_classes.hpp" +#include "SDK/BP_WrestlerBasicDoor_classes.hpp" +#include "SDK/LaserProjectorControl_classes.hpp" +#include "SDK/BP_LaserCoordinator_classes.hpp" +#include "SDK/LaserCoordinatorTask_classes.hpp" +#include "SDK/BP_Audio_Function_Mix_classes.hpp" +#include "SDK/BP_Audio_Ambient_Spline_Automated_classes.hpp" +#include "SDK/BP_Audio_TriggerBox_Generic_classes.hpp" +#include "SDK/BP_Rats_FX_01_classes.hpp" +#include "SDK/BP_Throwable_Prop_Ceramic_classes.hpp" +#include "SDK/BP_TransitionDoor_WideSingle_classes.hpp" +#include "SDK/WrestlerInvisibleWall_Conditional_classes.hpp" +#include "SDK/BP_CodexItem_DustyPackage_classes.hpp" +#include "SDK/BP_CodexItem_BloodyPackage_classes.hpp" +#include "SDK/GE_ShoveAwayDamage_classes.hpp" +#include "SDK/WBP_DLCCodexRPGMenuTab_classes.hpp" +#include "SDK/WBP_ConfirmPromptButtonBg_classes.hpp" +#include "SDK/WBP_MapInputsLegend_classes.hpp" +#include "SDK/WBP_RPGMenuSelector_classes.hpp" +#include "SDK/GA_EnemyBlock_classes.hpp" +#include "SDK/TCR_MenuButtonLeft_classes.hpp" +#include "SDK/Pole_TK_BP_classes.hpp" +#include "SDK/ABP_Phyre_RetargetTest_structs.hpp" +#include "SDK/ABP_Phyre_RetargetTest_classes.hpp" +#include "SDK/W_SettingsListEntry_SubCollection_classes.hpp" +#include "SDK/AnimBP_Phyre_StrickNR_378_WillemTalk_structs.hpp" +#include "SDK/AnimBP_Phyre_StrickNR_378_WillemTalk_classes.hpp" +#include "SDK/AnimBP_Phyre_structs.hpp" +#include "SDK/AnimBP_Phyre_classes.hpp" +#include "SDK/ABP_Phyre_Hair_Short_structs.hpp" +#include "SDK/ABP_Phyre_Hair_Short_classes.hpp" +#include "SDK/WBP_UI_ButtonCentralBg_classes.hpp" +#include "SDK/BP_AssembledCharacter_classes.hpp" +#include "SDK/BP_TelekinesisInteractable_Elevator_Breaks_classes.hpp" +#include "SDK/SEQ_RE_Pro_Escape_Frank_Death_V1_classes.hpp" +#include "SDK/BP_Throwable_Bust_Female_classes.hpp" +#include "SDK/ABP_Phyre_Hair_Long_structs.hpp" +#include "SDK/ABP_Phyre_Hair_Long_classes.hpp" +#include "SDK/BP_PlayerOverlayManager_classes.hpp" +#include "SDK/BPI_PlayerOverlays_classes.hpp" +#include "SDK/BP_Climbable_Ladder_classes.hpp" +#include "SDK/W_SettingsEntryBackground_classes.hpp" +#include "SDK/BP_StaticFX_MothsLights_01_classes.hpp" +#include "SDK/WBP_AbilityTreeShadow_classes.hpp" +#include "SDK/BP_StaticFX_ambient_dust_mote_fast_classes.hpp" +#include "SDK/BP_StaticFX_Ambient_Dust_Slow_classes.hpp" +#include "SDK/BP_StaticFX_Small_Steam_Burst_Pipe_01_classes.hpp" +#include "SDK/BP_CodexItem_CashEnvelope_classes.hpp" +#include "SDK/BPP_Escape_Basement_StyleGuide_01_classes.hpp" +#include "SDK/BPC_lightutility_cage_Rotate_02_Haven_01_classes.hpp" +#include "SDK/BP_WrestlerLightActor_lightutility_emissiveplane_01_classes.hpp" +#include "SDK/BP_lightutility_cage_03_ProEscape_01_classes.hpp" +#include "SDK/WBP_BloodResEventPoolWidget_classes.hpp" +#include "SDK/GE_StunDamageSetByCaller_classes.hpp" +#include "SDK/CommonSubTabButton_classes.hpp" +#include "SDK/ActiveAbilityUnlocked_classes.hpp" +#include "SDK/ActiveAbilityLocked_classes.hpp" +#include "SDK/EQC_PlayerContext_classes.hpp" +#include "SDK/BP_MassDialogRig_classes.hpp" +#include "SDK/PTD_Base_classes.hpp" +#include "SDK/SecondaryAbilityLocked_classes.hpp" +#include "SDK/PassiveAbilityLocked_classes.hpp" +#include "SDK/ActiveAbilityUpgradeLocked_classes.hpp" +#include "SDK/PassiveAbilityAcquired_classes.hpp" +#include "SDK/PassiveAbilityUnlocked_classes.hpp" +#include "SDK/GC_Telekinesis_ParticlePooler_classes.hpp" +#include "SDK/WBP_CodexEntry_classes.hpp" +#include "SDK/GE_NoClan_classes.hpp" +#include "SDK/WBP_QuestEntryWidget_classes.hpp" +#include "SDK/WBP_MarkerDescription_classes.hpp" +#include "SDK/CommonCostumeButtonStyle_classes.hpp" +#include "SDK/GE_CarAlarmCoolDown_classes.hpp" +#include "SDK/GC_Telekinesis_Throw_classes.hpp" +#include "SDK/BPI_Movable_classes.hpp" +#include "SDK/W_SettingsListEntry_Missing_classes.hpp" +#include "SDK/W_SettingsListEntry_Header_classes.hpp" +#include "SDK/TCR_RichWrestlerActionWidget_classes.hpp" +#include "SDK/W_SettingsRotator_classes.hpp" +#include "SDK/SelectedButtonFontStyle_classes.hpp" +#include "SDK/W_GameSettingsDetailView_classes.hpp" +#include "SDK/CommonMainMenuButton_classes.hpp" +#include "SDK/BP_SettingsImageDecorator_classes.hpp" +#include "SDK/DefaultRPGMenuFont_classes.hpp" +#include "SDK/WBP_MapMasqueradeWidget_classes.hpp" +#include "SDK/CommonButton_classes.hpp" +#include "SDK/WBP_MapIconLegendWidget_classes.hpp" +#include "SDK/WBP_SingleIconLegendWidget_classes.hpp" +#include "SDK/CommonTextStyle_ConfirmationTittlePrompt_classes.hpp" +#include "SDK/WBP_UI_ButtonCentralHighlight_classes.hpp" +#include "SDK/GC_Telekinesis_Hold_classes.hpp" +#include "SDK/WBP_WaypointsMapMarkerWidget_classes.hpp" +#include "SDK/WBP_InteractionReticle_classes.hpp" +#include "SDK/BP_WorldInteractionReticle_classes.hpp" +#include "SDK/WBP_OutfitClanRow_classes.hpp" +#include "SDK/TCR_BottomActionBarLayout_classes.hpp" +#include "SDK/WBP_BaseMapMarkerWidget_classes.hpp" +#include "SDK/BP_KillReticle_classes.hpp" +#include "SDK/DefaultFileMenuFont_classes.hpp" +#include "SDK/WBP_CharacteScreenTab_classes.hpp" +#include "SDK/DisabledFileMenuFont_classes.hpp" +#include "SDK/TCR_Caption_classes.hpp" +#include "SDK/CommonTextStyleConfirm_Highlight_classes.hpp" +#include "SDK/CommonTextStyleConfirm_Normal_classes.hpp" +#include "SDK/CommonTextStyleConfirm_Disabled_classes.hpp" +#include "SDK/CommonButtonStyle_classes.hpp" +#include "SDK/CommonTextStyleHeading4_Purple_classes.hpp" +#include "SDK/CommonTextStyleActionPrompt_Hovered_classes.hpp" +#include "SDK/ABP_Rosalind_PostProcess_structs.hpp" +#include "SDK/ABP_Rosalind_PostProcess_classes.hpp" +#include "SDK/AnimBP_Rosalind_1920s_structs.hpp" +#include "SDK/AnimBP_Rosalind_1920s_classes.hpp" +#include "SDK/BP_Rosalind_classes.hpp" +#include "SDK/WBP_AbilityEquipScreenTab_classes.hpp" +#include "SDK/WBP_MapsContainerWidget_classes.hpp" diff --git a/TormentedSouls2/SDK/AudioExtensions_classes.hpp b/TormentedSouls2/SDK/AudioExtensions_classes.hpp new file mode 100644 index 0000000..3006412 --- /dev/null +++ b/TormentedSouls2/SDK/AudioExtensions_classes.hpp @@ -0,0 +1,373 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: AudioExtensions + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class AudioExtensions.AudioPropertiesSheetAssetBase +// 0x0000 (0x0028 - 0x0028) +class UAudioPropertiesSheetAssetBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioPropertiesSheetAssetBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioPropertiesSheetAssetBase") + } + static class UAudioPropertiesSheetAssetBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioPropertiesSheetAssetBase; + +// Class AudioExtensions.SpatializationPluginSourceSettingsBase +// 0x0000 (0x0028 - 0x0028) +class USpatializationPluginSourceSettingsBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpatializationPluginSourceSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpatializationPluginSourceSettingsBase") + } + static class USpatializationPluginSourceSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USpatializationPluginSourceSettingsBase; + +// Class AudioExtensions.SourceDataOverridePluginSourceSettingsBase +// 0x0000 (0x0028 - 0x0028) +class USourceDataOverridePluginSourceSettingsBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SourceDataOverridePluginSourceSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SourceDataOverridePluginSourceSettingsBase") + } + static class USourceDataOverridePluginSourceSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USourceDataOverridePluginSourceSettingsBase; + +// Class AudioExtensions.OcclusionPluginSourceSettingsBase +// 0x0000 (0x0028 - 0x0028) +class UOcclusionPluginSourceSettingsBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("OcclusionPluginSourceSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"OcclusionPluginSourceSettingsBase") + } + static class UOcclusionPluginSourceSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UOcclusionPluginSourceSettingsBase; + +// Class AudioExtensions.ReverbPluginSourceSettingsBase +// 0x0000 (0x0028 - 0x0028) +class UReverbPluginSourceSettingsBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReverbPluginSourceSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReverbPluginSourceSettingsBase") + } + static class UReverbPluginSourceSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReverbPluginSourceSettingsBase; + +// Class AudioExtensions.AudioPropertySheetBaseAsset +// 0x0000 (0x0028 - 0x0028) +class UAudioPropertySheetBaseAsset final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioPropertySheetBaseAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioPropertySheetBaseAsset") + } + static class UAudioPropertySheetBaseAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioPropertySheetBaseAsset; + +// Class AudioExtensions.AudioParameterControllerInterface +// 0x0000 (0x0000 - 0x0000) +class IAudioParameterControllerInterface final +{ +public: + void ResetParameters(); + void SetBoolArrayParameter(class FName InName, const TArray& InValue); + void SetBoolParameter(class FName InName, bool InBool); + void SetFloatArrayParameter(class FName InName, const TArray& InValue); + void SetFloatParameter(class FName InName, float InFloat); + void SetIntArrayParameter(class FName InName, const TArray& InValue); + void SetIntParameter(class FName InName, int32 inInt); + void SetObjectArrayParameter(class FName InName, const TArray& InValue); + void SetObjectParameter(class FName InName, class UObject* InValue); + void SetParameters_Blueprint(const TArray& InParameters); + void SetStringArrayParameter(class FName InName, const TArray& InValue); + void SetStringParameter(class FName InName, const class FString& InValue); + void SetTriggerParameter(class FName InName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioParameterControllerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioParameterControllerInterface") + } + static class IAudioParameterControllerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAudioParameterControllerInterface; + +// Class AudioExtensions.AudioEndpointSettingsBase +// 0x0000 (0x0028 - 0x0028) +class UAudioEndpointSettingsBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioEndpointSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioEndpointSettingsBase") + } + static class UAudioEndpointSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioEndpointSettingsBase; + +// Class AudioExtensions.DummyEndpointSettings +// 0x0000 (0x0028 - 0x0028) +class UDummyEndpointSettings final : public UAudioEndpointSettingsBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DummyEndpointSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DummyEndpointSettings") + } + static class UDummyEndpointSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDummyEndpointSettings; + +// Class AudioExtensions.SoundModulatorBase +// 0x0008 (0x0030 - 0x0028) +class USoundModulatorBase final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundModulatorBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundModulatorBase") + } + static class USoundModulatorBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundModulatorBase; + +// Class AudioExtensions.SoundfieldEndpointSettingsBase +// 0x0000 (0x0028 - 0x0028) +class USoundfieldEndpointSettingsBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldEndpointSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldEndpointSettingsBase") + } + static class USoundfieldEndpointSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldEndpointSettingsBase; + +// Class AudioExtensions.SoundfieldEncodingSettingsBase +// 0x0000 (0x0028 - 0x0028) +class USoundfieldEncodingSettingsBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldEncodingSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldEncodingSettingsBase") + } + static class USoundfieldEncodingSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldEncodingSettingsBase; + +// Class AudioExtensions.SoundfieldEffectSettingsBase +// 0x0000 (0x0028 - 0x0028) +class USoundfieldEffectSettingsBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldEffectSettingsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldEffectSettingsBase") + } + static class USoundfieldEffectSettingsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldEffectSettingsBase; + +// Class AudioExtensions.SoundfieldEffectBase +// 0x0008 (0x0030 - 0x0028) +class USoundfieldEffectBase final : public UObject +{ +public: + class USoundfieldEffectSettingsBase* Settings; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldEffectBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldEffectBase") + } + static class USoundfieldEffectBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldEffectBase; + +// Class AudioExtensions.WaveformTransformationBase +// 0x0000 (0x0028 - 0x0028) +class UWaveformTransformationBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WaveformTransformationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WaveformTransformationBase") + } + static class UWaveformTransformationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWaveformTransformationBase; + +// Class AudioExtensions.WaveformTransformationChain +// 0x0010 (0x0038 - 0x0028) +class UWaveformTransformationChain final : public UObject +{ +public: + TArray Transformations; // 0x0028(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WaveformTransformationChain") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WaveformTransformationChain") + } + static class UWaveformTransformationChain* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWaveformTransformationChain; + +} + diff --git a/TormentedSouls2/SDK/AudioExtensions_structs.hpp b/TormentedSouls2/SDK/AudioExtensions_structs.hpp new file mode 100644 index 0000000..3488018 --- /dev/null +++ b/TormentedSouls2/SDK/AudioExtensions_structs.hpp @@ -0,0 +1,110 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: AudioExtensions + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum AudioExtensions.ESoundWaveCloudStreamingPlatformProjectEnableType +// NumValues: 0x0003 +enum class ESoundWaveCloudStreamingPlatformProjectEnableType : uint8 +{ + Enabled = 0, + Disabled = 1, + ESoundWaveCloudStreamingPlatformProjectEnableType_MAX = 2, +}; + +// Enum AudioExtensions.ESoundWaveCloudStreamingPlatformEnableType +// NumValues: 0x0004 +enum class ESoundWaveCloudStreamingPlatformEnableType : uint8 +{ + Inherited = 0, + Disabled = 1, + SWC_MultipleValues = 2, + ESoundWaveCloudStreamingPlatformEnableType_MAX = 3, +}; + +// Enum AudioExtensions.EAudioParameterType +// NumValues: 0x000F +enum class EAudioParameterType : uint8 +{ + None = 0, + Boolean = 1, + Integer = 2, + Float = 3, + String = 4, + Object = 5, + NoneArray = 6, + BooleanArray = 7, + IntegerArray = 8, + FloatArray = 9, + StringArray = 10, + ObjectArray = 11, + Trigger = 12, + COUNT = 13, + EAudioParameterType_MAX = 14, +}; + +// ScriptStruct AudioExtensions.SoundGeneratorOutput +// 0x0008 (0x0008 - 0x0000) +struct FSoundGeneratorOutput +{ +public: + class FName Name; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSoundGeneratorOutput; + +// ScriptStruct AudioExtensions.SoundWaveCloudStreamingPlatformProjectSettings +// 0x0001 (0x0001 - 0x0000) +struct FSoundWaveCloudStreamingPlatformProjectSettings final +{ +public: + ESoundWaveCloudStreamingPlatformProjectEnableType EnablementSetting; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FSoundWaveCloudStreamingPlatformProjectSettings; + +// ScriptStruct AudioExtensions.SoundWaveCloudStreamingPlatformSettings +// 0x0001 (0x0001 - 0x0000) +struct FSoundWaveCloudStreamingPlatformSettings final +{ +public: + ESoundWaveCloudStreamingPlatformEnableType EnablementSetting; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FSoundWaveCloudStreamingPlatformSettings; + +// ScriptStruct AudioExtensions.AudioParameter +// 0x00A0 (0x00A0 - 0x0000) +struct FAudioParameter +{ +public: + class FName ParamName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FloatParam; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool BoolParam; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 IntParam; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* ObjectParam; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString StringParam; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ArrayFloatParam; // 0x0030(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ArrayBoolParam; // 0x0040(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ArrayIntParam; // 0x0050(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ArrayObjectParam; // 0x0060(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ArrayStringParam; // 0x0070(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + EAudioParameterType ParamType; // 0x0080(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x3]; // 0x0081(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName TypeName; // 0x0084(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8C[0x14]; // 0x008C(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FAudioParameter; + +} + diff --git a/TormentedSouls2/SDK/AudioPlatformConfiguration_structs.hpp b/TormentedSouls2/SDK/AudioPlatformConfiguration_structs.hpp new file mode 100644 index 0000000..30a6bb4 --- /dev/null +++ b/TormentedSouls2/SDK/AudioPlatformConfiguration_structs.hpp @@ -0,0 +1,42 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: AudioPlatformConfiguration + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum AudioPlatformConfiguration.ESoundwaveSampleRateSettings +// NumValues: 0x0005 +enum class ESoundwaveSampleRateSettings : uint8 +{ + Max = 0, + High = 1, + Medium = 2, + Low = 3, + Min = 4, +}; + +// ScriptStruct AudioPlatformConfiguration.PlatformRuntimeAudioCompressionOverrides +// 0x0010 (0x0010 - 0x0000) +struct FPlatformRuntimeAudioCompressionOverrides final +{ +public: + bool bOverrideCompressionTimes; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DurationThreshold; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxNumRandomBranches; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SoundCueQualityIndex; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPlatformRuntimeAudioCompressionOverrides; + +} + diff --git a/TormentedSouls2/SDK/Basic.cpp b/TormentedSouls2/SDK/Basic.cpp new file mode 100644 index 0000000..332e900 --- /dev/null +++ b/TormentedSouls2/SDK/Basic.cpp @@ -0,0 +1,135 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Basic file containing function-implementations from Basic.hpp + +#include +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" +#include "CoreUObject_structs.hpp" +#include "Engine_classes.hpp" + +namespace SDK +{ +uintptr_t InSDKUtils::GetImageBase() +{ + return reinterpret_cast(GetModuleHandle(0)); +} + +class UClass* BasicFilesImpleUtils::FindClassByName(const std::string& Name, bool bByFullName) +{ + return bByFullName ? UObject::FindClass(Name) : UObject::FindClassFast(Name); +} + +class UClass* BasicFilesImpleUtils::FindClassByFullName(const std::string& Name) +{ + return UObject::FindClass(Name); +} + +std::string BasicFilesImpleUtils::GetObjectName(class UClass* Class) +{ + return Class->GetName(); +} + +int32 BasicFilesImpleUtils::GetObjectIndex(class UClass* Class) +{ + return Class->Index; +} + +uint64 BasicFilesImpleUtils::GetObjFNameAsUInt64(class UClass* Class) +{ + return *reinterpret_cast(&Class->Name); +} + +class UObject* BasicFilesImpleUtils::GetObjectByIndex(int32 Index) +{ + return UObject::GObjects->GetByIndex(Index); +} + +UFunction* BasicFilesImpleUtils::FindFunctionByFName(const FName* Name) +{ + for (int i = 0; i < UObject::GObjects->Num(); ++i) + { + UObject* Object = UObject::GObjects->GetByIndex(i); + + if (!Object) + continue; + + if (Object->Name == *Name) + return static_cast(Object); + } + + return nullptr; +} + +FName BasicFilesImpleUtils::StringToName(const wchar_t* Name) +{ + return UKismetStringLibrary::Conv_StringToName(FString(Name)); +} + +const FName& GetStaticName(const wchar_t* Name, FName& StaticName) +{ + if (StaticName.IsNone()) + { + StaticName = BasicFilesImpleUtils::StringToName(Name); + } + + return StaticName; +} + +// Predefined Function + +class UObject* FWeakObjectPtr::Get() const +{ + return UObject::GObjects->GetByIndex(ObjectIndex); +} + + +// Predefined Function + +class UObject* FWeakObjectPtr::operator->() const +{ + return UObject::GObjects->GetByIndex(ObjectIndex); +} + + +// Predefined Function + +bool FWeakObjectPtr::operator==(const FWeakObjectPtr& Other) const +{ + return ObjectIndex == Other.ObjectIndex; +} + + +// Predefined Function + +bool FWeakObjectPtr::operator!=(const FWeakObjectPtr& Other) const +{ + return ObjectIndex != Other.ObjectIndex; +} + + +// Predefined Function + +bool FWeakObjectPtr::operator==(const class UObject* Other) const +{ + return ObjectIndex == Other->Index; +} + + +// Predefined Function + +bool FWeakObjectPtr::operator!=(const class UObject* Other) const +{ + return ObjectIndex != Other->Index; +} + + +} + diff --git a/TormentedSouls2/SDK/Basic.hpp b/TormentedSouls2/SDK/Basic.hpp new file mode 100644 index 0000000..0ea7117 --- /dev/null +++ b/TormentedSouls2/SDK/Basic.hpp @@ -0,0 +1,1271 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Basic file containing structs required by the SDK + +#define VC_EXTRALEAN +#define WIN32_LEAN_AND_MEAN + +#include +#include +#include + +#include "../PropertyFixup.hpp" +#include "../UnrealContainers.hpp" +#include "../Assertions.inl" + +namespace SDK +{ + +using namespace UC; + +#include "../NameCollisions.inl" + +/* +* Disclaimer: +* - The 'GNames' is only a fallback and null by default, FName::AppendString is used +* - THe 'GWorld' offset is not used by the SDK, it's just there for "decoration", use the provided 'UWorld::GetWorld()' function instead +*/ +namespace Offsets +{ + inline int32 GObjects = 0x0949CFB0; + inline int32 AppendString = 0x01265BD0; + inline int32 GNames = 0x09381948; + inline int32 GWorld = 0x091D6780; + inline int32 ProcessEvent = 0x01493590; + inline int32 ProcessEventIdx = 0x0000004F; +} + +namespace InSDKUtils +{ + uintptr_t GetImageBase(); + + template + inline FuncType GetVirtualFunction(const void* ObjectInstance, int32 Index) + { + void** VTable = *reinterpret_cast(const_cast(ObjectInstance)); + + return reinterpret_cast(VTable[Index]); + } + + template + requires std::invocable + inline auto CallGameFunction(FuncType Function, ParamTypes&&... Args) + { + return Function(std::forward(Args)...); + } +} + + +// Forward declarations because in-line forward declarations make the compiler think 'GetStaticClass()' is a class template +class UClass; +class UObject; +class UFunction; + +class FName; + +namespace BasicFilesImpleUtils +{ + // Helper functions for GetStaticClass and GetStaticBPGeneratedClass + UClass* FindClassByName(const std::string& Name, bool bByFullName = false); + UClass* FindClassByFullName(const std::string& Name); + + std::string GetObjectName(class UClass* Class); + int32 GetObjectIndex(class UClass* Class); + + /* FName represented as a uint64. */ + uint64 GetObjFNameAsUInt64(class UClass* Class); + + UObject* GetObjectByIndex(int32 Index); + + UFunction* FindFunctionByFName(const FName* Name); + + FName StringToName(const wchar_t* Name); +} + +const FName& GetStaticName(const wchar_t* Name, FName& StaticName); + +template +class UClass* GetStaticClassImpl(const char* Name, class UClass*& StaticClass) +{ + if (StaticClass == nullptr) + { + if constexpr (bIsFullName) { + StaticClass = BasicFilesImpleUtils::FindClassByFullName(Name); + } + else /* default */ { + StaticClass = BasicFilesImpleUtils::FindClassByName(Name); + } + } + + return StaticClass; +} + +template +class UClass* GetStaticBPGeneratedClass(const char* Name, int32& ClassIdx, uint64& ClassNameIdx) +{ + /* Could be external function, not really unique to this StaticClass functon */ + static auto SetClassIndex = [](UClass* Class, int32& Index, uint64& ClassName) -> UClass* + { + if (Class) + { + Index = BasicFilesImpleUtils::GetObjectIndex(Class); + ClassName = BasicFilesImpleUtils::GetObjFNameAsUInt64(Class); + } + + return Class; + }; + + /* Use the full name to find an object */ + if constexpr (bIsFullName) + { + if (ClassIdx == 0x0) [[unlikely]] + return SetClassIndex(BasicFilesImpleUtils::FindClassByFullName(Name), ClassIdx, ClassNameIdx); + + UClass* ClassObj = static_cast(BasicFilesImpleUtils::GetObjectByIndex(ClassIdx)); + + /* Could use cast flags too to save some string comparisons */ + if (!ClassObj || BasicFilesImpleUtils::GetObjFNameAsUInt64(ClassObj) != ClassNameIdx) + return SetClassIndex(BasicFilesImpleUtils::FindClassByFullName(Name), ClassIdx, ClassNameIdx); + + return ClassObj; + } + else /* Default, use just the name to find an object*/ + { + if (ClassIdx == 0x0) [[unlikely]] + return SetClassIndex(BasicFilesImpleUtils::FindClassByName(Name), ClassIdx, ClassNameIdx); + + UClass* ClassObj = static_cast(BasicFilesImpleUtils::GetObjectByIndex(ClassIdx)); + + /* Could use cast flags too to save some string comparisons */ + if (!ClassObj || BasicFilesImpleUtils::GetObjFNameAsUInt64(ClassObj) != ClassNameIdx) + return SetClassIndex(BasicFilesImpleUtils::FindClassByName(Name), ClassIdx, ClassNameIdx); + + return ClassObj; + } +} + +template +ClassType* GetDefaultObjImpl() +{ + UClass* StaticClass = ClassType::StaticClass(); + + if (StaticClass) + { + return reinterpret_cast(StaticClass->DefaultObject); + } + + return nullptr; +} + +#define STATIC_CLASS_IMPL(NameString) \ +{ \ + static UClass* Clss = nullptr; \ + return GetStaticClassImpl(NameString, Clss); \ +} + +#define STATIC_CLASS_IMPL_FULLNAME(FullNameString) \ +{ \ + static UClass* Clss = nullptr; \ + return GetStaticClassImpl(FullNameString, Clss); \ +} + +#define BP_STATIC_CLASS_IMPL(NameString) \ +{ \ + static int32 ClassIdx = 0; \ + static uint64 ClassName = 0; \ + return GetStaticBPGeneratedClass(NameString, ClassIdx, ClassName); \ +} + +#define BP_STATIC_CLASS_IMPL_FULLNAME(FullNameString) \ +{ \ + static int32 ClassIdx = 0; \ + static uint64 ClassName = 0; \ + return GetStaticBPGeneratedClass(FullNameString, ClassIdx, ClassName); \ +} + +#define STATIC_NAME_IMPL(NameString) \ +{ \ + static FName Name = FName(); \ + return GetStaticName(NameString, Name); \ +} + +// Predefined struct FUObjectItem +// 0x0018 (0x0018 - 0x0000) +struct FUObjectItem final +{ +public: + class UObject* Object; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_8[0x10]; // 0x0008(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUObjectItem; + +// Predefined struct TUObjectArray +// 0x0020 (0x0020 - 0x0000) +class TUObjectArray final +{ +public: + static constexpr auto DecryptPtr = [](void* ObjPtr) -> uint8* + { + return reinterpret_cast(ObjPtr); + }; + + static constexpr int32 ElementsPerChunk = 0x10000; // 0x0000(0x0004)(NOT AUTO-GENERATED PROPERTY) + + struct FUObjectItem** Objects; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaxElements; // 0x0010(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 NumElements; // 0x0014(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 MaxChunks; // 0x0018(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 NumChunks; // 0x001C(0x0004)(NOT AUTO-GENERATED PROPERTY) + +public: + inline int32 Num() const + { + return NumElements; + } + + FUObjectItem** GetDecrytedObjPtr() const + { + return reinterpret_cast(DecryptPtr(Objects)); + } + + inline class UObject* GetByIndex(const int32 Index) const + { + const int32 ChunkIndex = Index / ElementsPerChunk; + const int32 InChunkIdx = Index % ElementsPerChunk; + + if (Index < 0 || ChunkIndex >= NumChunks || Index >= NumElements) + return nullptr; + + FUObjectItem* ChunkPtr = GetDecrytedObjPtr()[ChunkIndex]; + if (!ChunkPtr) return nullptr; + + return ChunkPtr[InChunkIdx].Object; + } +}; +DUMPER7_ASSERTS_TUObjectArray; + +class TUObjectArrayWrapper +{ +private: + friend class UObject; + +private: + void* GObjectsAddress = nullptr; + +private: + TUObjectArrayWrapper() = default; + +public: + TUObjectArrayWrapper(TUObjectArrayWrapper&&) = delete; + TUObjectArrayWrapper(const TUObjectArrayWrapper&) = delete; + + TUObjectArrayWrapper& operator=(TUObjectArrayWrapper&&) = delete; + TUObjectArrayWrapper& operator=(const TUObjectArrayWrapper&) = delete; + +private: + inline void InitGObjects() + { + GObjectsAddress = reinterpret_cast(InSDKUtils::GetImageBase() + Offsets::GObjects); + } + +public: + inline void InitManually(void* GObjectsAddressParameter) + { + GObjectsAddress = GObjectsAddressParameter; + } + + inline class TUObjectArray* operator->() + { + if (!GObjectsAddress) [[unlikely]] + InitGObjects(); + + return reinterpret_cast(GObjectsAddress); + } + + inline TUObjectArray& operator*() const + { + return *reinterpret_cast(GObjectsAddress); + } + + inline operator const void* () + { + if (!GObjectsAddress) [[unlikely]] + InitGObjects(); + + return GObjectsAddress; + } + + inline class TUObjectArray* GetTypedPtr() + { + if (!GObjectsAddress) [[unlikely]] + InitGObjects(); + + return reinterpret_cast(GObjectsAddress); + } +}; + +// Predefined struct FName +// 0x0008 (0x0008 - 0x0000) +class FName final +{ +public: + static inline void* AppendString = nullptr; // 0x0000(0x0004)(NOT AUTO-GENERATED PROPERTY) + + int32 ComparisonIndex; // 0x0000(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint32 Number; // 0x0004(0x0004)(NOT AUTO-GENERATED PROPERTY) + +public: + constexpr FName(int32 ComparisonIndex = 0, uint32 Number = 0) + : ComparisonIndex(ComparisonIndex), Number(Number) + { + } + + static void InitManually(void* Location) + { + AppendString = reinterpret_cast(Location); + } + + constexpr FName(const FName& other) + : ComparisonIndex(other.ComparisonIndex), Number(other.Number) + { + } + + static void InitInternal() + { + AppendString = reinterpret_cast(InSDKUtils::GetImageBase() + Offsets::AppendString); + } + + bool IsNone() const + { + return !ComparisonIndex&& !Number; + } + + int32 GetDisplayIndex() const + { + return ComparisonIndex; + } + + std::string GetRawString() const + { + wchar_t buffer[1024]; + FString TempString(buffer, 0, 1024); + + if (!AppendString) + InitInternal(); + + InSDKUtils::CallGameFunction(reinterpret_cast(AppendString), this, TempString); + + return TempString.ToString(); + } + + std::string ToString() const + { + std::string OutputString = GetRawString(); + + size_t pos = OutputString.rfind('/'); + + if (pos == std::string::npos) + return OutputString; + + return OutputString.substr(pos + 1); + } + + + FName& operator=(const FName& Other) + { + ComparisonIndex = Other.ComparisonIndex; + Number = Other.Number; + + return *this; + } + + bool operator==(const FName& Other) const + { + return ComparisonIndex == Other.ComparisonIndex && Number == Other.Number; + } + bool operator!=(const FName& Other) const + { + return ComparisonIndex != Other.ComparisonIndex || Number != Other.Number; + } +}; +DUMPER7_ASSERTS_FName; + +template +class TSubclassOf +{ + class UClass* ClassPtr; + +public: + TSubclassOf() = default; + + inline TSubclassOf(UClass* Class) + : ClassPtr(Class) + { + } + + inline UClass* Get() + { + return ClassPtr; + } + + inline operator UClass*() const + { + return ClassPtr; + } + + template, bool>::type> + inline operator TSubclassOf() const + { + return ClassPtr; + } + + inline UClass* operator->() + { + return ClassPtr; + } + + inline TSubclassOf& operator=(UClass* Class) + { + ClassPtr = Class; + + return *this; + } + + inline bool operator==(const TSubclassOf& Other) const + { + return ClassPtr == Other.ClassPtr; + } + + inline bool operator!=(const TSubclassOf& Other) const + { + return ClassPtr != Other.ClassPtr; + } + + inline bool operator==(UClass* Other) const + { + return ClassPtr == Other; + } + + inline bool operator!=(UClass* Other) const + { + return ClassPtr != Other; + } +}; +namespace FTextImpl +{ +// Predefined struct FTextData +// 0x0028 (0x0028 - 0x0000) +class FTextData final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class FString TextSource; // 0x0018(0x0010)(NOT AUTO-GENERATED PROPERTY) +}; +//DUMPER7_ASSERTS_FTextData; +} + +// Predefined struct FText +// 0x0010 (0x0010 - 0x0000) +class FText final +{ +public: + class FTextImpl::FTextData* TextData; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + const class FString& GetStringRef() const + { + return TextData->TextSource; + } + std::string ToString() const + { + return TextData->TextSource.ToString(); + } +}; +//DUMPER7_ASSERTS_FText; + +// Predefined struct FWeakObjectPtr +// 0x0008 (0x0008 - 0x0000) +class FWeakObjectPtr +{ +public: + int32 ObjectIndex; // 0x0000(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 ObjectSerialNumber; // 0x0004(0x0004)(NOT AUTO-GENERATED PROPERTY) + +public: + class UObject* Get() const; + class UObject* operator->() const; + bool operator==(const FWeakObjectPtr& Other) const; + bool operator!=(const FWeakObjectPtr& Other) const; + bool operator==(const class UObject* Other) const; + bool operator!=(const class UObject* Other) const; +}; +DUMPER7_ASSERTS_FWeakObjectPtr; + +template +class TWeakObjectPtr : public FWeakObjectPtr +{ +public: + UEType* Get() const + { + return static_cast(FWeakObjectPtr::Get()); + } + + UEType* operator->() const + { + return static_cast(FWeakObjectPtr::Get()); + } +}; + +// Predefined struct FUniqueObjectGuid +// 0x0010 (0x0010 - 0x0000) +class FUniqueObjectGuid final +{ +public: + uint32 A; // 0x0000(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint32 B; // 0x0004(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint32 C; // 0x0008(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint32 D; // 0x000C(0x0004)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FUniqueObjectGuid; + +// Predefined struct TPersistentObjectPtr +// 0x0000 (0x0000 - 0x0000) +template +class TPersistentObjectPtr +{ +public: + FWeakObjectPtr WeakPtr; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + TObjectID ObjectID; // 0x0008(0x0000)(NOT AUTO-GENERATED PROPERTY) + +public: + class UObject* Get() const + { + return WeakPtr.Get(); + } + class UObject* operator->() const + { + return WeakPtr.Get(); + } +}; + +template +class TLazyObjectPtr : public TPersistentObjectPtr +{ +public: + UEType* Get() const + { + return static_cast(TPersistentObjectPtr::Get()); + } + UEType* operator->() const + { + return static_cast(TPersistentObjectPtr::Get()); + } +}; + +namespace FakeSoftObjectPtr +{ + +// ScriptStruct CoreUObject.TopLevelAssetPath +// 0x0010 (0x0010 - 0x0000) +struct FTopLevelAssetPath final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName AssetName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FTopLevelAssetPath; + +// ScriptStruct CoreUObject.SoftObjectPath +// 0x0020 (0x0020 - 0x0000) +struct FSoftObjectPath +{ +public: + struct FTopLevelAssetPath AssetPath; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SubPathString; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSoftObjectPath; + +} + +class FSoftObjectPtr : public TPersistentObjectPtr +{ +}; + +template +class TSoftObjectPtr : public FSoftObjectPtr +{ +public: + UEType* Get() const + { + return static_cast(TPersistentObjectPtr::Get()); + } + UEType* operator->() const + { + return static_cast(TPersistentObjectPtr::Get()); + } +}; + +template +class TSoftClassPtr : public FSoftObjectPtr +{ +public: + UEType* Get() const + { + return static_cast(TPersistentObjectPtr::Get()); + } + UEType* operator->() const + { + return static_cast(TPersistentObjectPtr::Get()); + } +}; + +// Predefined struct FScriptInterface +// 0x0010 (0x0010 - 0x0000) +class FScriptInterface +{ +public: + UObject* ObjectPointer; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + void* InterfacePointer; // 0x0008(0x0008)(NOT AUTO-GENERATED PROPERTY) + +public: + class UObject* GetObjectRef() const + { + return ObjectPointer; + } + + void* GetInterfaceRef() const + { + return InterfacePointer; + } + +}; +DUMPER7_ASSERTS_FScriptInterface; + +// Predefined struct TScriptInterface +// 0x0000 (0x0010 - 0x0010) +template +class TScriptInterface final : public FScriptInterface +{ +}; + +// Predefined struct FFieldPath +// 0x0020 (0x0020 - 0x0000) +class FFieldPath +{ +public: + class FField* ResolvedField; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + TWeakObjectPtr ResolvedOwner; // 0x0008(0x0008)(NOT AUTO-GENERATED PROPERTY) + TArray Path; // 0x0010(0x0010)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FFieldPath; + +// Predefined struct TFieldPath +// 0x0000 (0x0020 - 0x0020) +template +class TFieldPath final : public FFieldPath +{ +}; + + +template +class TOptional +{ +private: + template + struct OptionalWithBool + { + static_assert(TypeSize > 0x0, "TOptional can not store an empty type!"); + + uint8 Value[TypeSize]; + bool bIsSet; + }; + +private: + using ValueType = std::conditional_t>; + +private: + alignas(OptionalType) ValueType StoredValue; + +private: + inline uint8* GetValueBytes() + { + if constexpr (!bIsIntrusiveUnsetCheck) + return StoredValue.Value; + + return StoredValue; + } + + inline const uint8* GetValueBytes() const + { + if constexpr (!bIsIntrusiveUnsetCheck) + return StoredValue.Value; + + return StoredValue; + } +public: + + inline OptionalType& GetValueRef() + { + return *reinterpret_cast(GetValueBytes()); + } + + inline const OptionalType& GetValueRef() const + { + return *reinterpret_cast(GetValueBytes()); + } + + inline bool IsSet() const + { + if constexpr (!bIsIntrusiveUnsetCheck) + return StoredValue.bIsSet; + + constexpr char ZeroBytes[sizeof(OptionalType)]; + + return memcmp(GetValueBytes(), &ZeroBytes, sizeof(OptionalType)) == 0; + } + + inline explicit operator bool() const + { + return IsSet(); + } +}; + + +// Predefined struct FScriptDelegate +// 0x0010 (0x0010 - 0x0000) +struct FScriptDelegate +{ +public: + FWeakObjectPtr Object; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + FName FunctionName; // 0x0008(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FScriptDelegate; + +// Predefined struct TDelegate +// 0x0010 (0x0010 - 0x0000) +template +class TDelegate +{ +public: + struct InvalidUseOfTDelegate TemplateParamIsNotAFunctionSignature; // 0x0000(0x0000)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; + +// Predefined struct TDelegate +// 0x0010 (0x0010 - 0x0000) +template +class TDelegate +{ +public: + FScriptDelegate BoundFunction; // 0x0000(0x0010)(NOT AUTO-GENERATED PROPERTY) +}; + +// Predefined struct TMulticastInlineDelegate +// 0x0010 (0x0010 - 0x0000) +template +class TMulticastInlineDelegate +{ +public: + struct InvalidUseOfTMulticastInlineDelegate TemplateParamIsNotAFunctionSignature; // 0x0000(0x0010)(NOT AUTO-GENERATED PROPERTY) +}; + +// Predefined struct TMulticastInlineDelegate +// 0x0000 (0x0000 - 0x0000) +template +class TMulticastInlineDelegate +{ +public: + TArray InvocationList; // 0x0000(0x0010)(NOT AUTO-GENERATED PROPERTY) +}; + +#define UE_ENUM_OPERATORS(EEnumClass) \ + \ +inline constexpr EEnumClass operator|(EEnumClass Left, EEnumClass Right) \ +{ \ + return (EEnumClass)((std::underlying_type::type)(Left) | (std::underlying_type::type)(Right)); \ +} \ + \ +inline constexpr EEnumClass& operator|=(EEnumClass& Left, EEnumClass Right) \ +{ \ + return (EEnumClass&)((std::underlying_type::type&)(Left) |= (std::underlying_type::type)(Right)); \ +} \ + \ +inline bool operator&(EEnumClass Left, EEnumClass Right) \ +{ \ + return (((std::underlying_type::type)(Left) & (std::underlying_type::type)(Right)) == (std::underlying_type::type)(Right)); \ +} + +enum class EObjectFlags : int32 +{ + NoFlags = 0x00000000, + + Public = 0x00000001, + Standalone = 0x00000002, + MarkAsNative = 0x00000004, + Transactional = 0x00000008, + ClassDefaultObject = 0x00000010, + ArchetypeObject = 0x00000020, + Transient = 0x00000040, + + MarkAsRootSet = 0x00000080, + TagGarbageTemp = 0x00000100, + + NeedInitialization = 0x00000200, + NeedLoad = 0x00000400, + KeepForCooker = 0x00000800, + NeedPostLoad = 0x00001000, + NeedPostLoadSubobjects = 0x00002000, + NewerVersionExists = 0x00004000, + BeginDestroyed = 0x00008000, + FinishDestroyed = 0x00010000, + + BeingRegenerated = 0x00020000, + DefaultSubObject = 0x00040000, + WasLoaded = 0x00080000, + TextExportTransient = 0x00100000, + LoadCompleted = 0x00200000, + InheritableComponentTemplate = 0x00400000, + DuplicateTransient = 0x00800000, + StrongRefOnFrame = 0x01000000, + NonPIEDuplicateTransient = 0x02000000, + Dynamic = 0x04000000, + WillBeLoaded = 0x08000000, + HasExternalPackage = 0x10000000, + + MirroredGarbage = 0x40000000, + AllocatedInSharedPage = 0x80000000, +}; + +enum class EFunctionFlags : uint32 +{ + None = 0x00000000, + + Final = 0x00000001, + RequiredAPI = 0x00000002, + BlueprintAuthorityOnly = 0x00000004, + BlueprintCosmetic = 0x00000008, + Net = 0x00000040, + NetReliable = 0x00000080, + NetRequest = 0x00000100, + Exec = 0x00000200, + Native = 0x00000400, + Event = 0x00000800, + NetResponse = 0x00001000, + Static = 0x00002000, + NetMulticast = 0x00004000, + UbergraphFunction = 0x00008000, + MulticastDelegate = 0x00010000, + Public = 0x00020000, + Private = 0x00040000, + Protected = 0x00080000, + Delegate = 0x00100000, + NetServer = 0x00200000, + HasOutParms = 0x00400000, + HasDefaults = 0x00800000, + NetClient = 0x01000000, + DLLImport = 0x02000000, + BlueprintCallable = 0x04000000, + BlueprintEvent = 0x08000000, + BlueprintPure = 0x10000000, + EditorOnly = 0x20000000, + Const = 0x40000000, + NetValidate = 0x80000000, + + AllFlags = 0xFFFFFFFF, +}; + +enum class EClassFlags : uint32 +{ + CLASS_None = 0x00000000u, + Abstract = 0x00000001u, + DefaultConfig = 0x00000002u, + Config = 0x00000004u, + Transient = 0x00000008u, + Parsed = 0x00000010u, + MatchedSerializers = 0x00000020u, + ProjectUserConfig = 0x00000040u, + Native = 0x00000080u, + NoExport = 0x00000100u, + NotPlaceable = 0x00000200u, + PerObjectConfig = 0x00000400u, + ReplicationDataIsSetUp = 0x00000800u, + EditInlineNew = 0x00001000u, + CollapseCategories = 0x00002000u, + Interface = 0x00004000u, + CustomConstructor = 0x00008000u, + Const = 0x00010000u, + LayoutChanging = 0x00020000u, + CompiledFromBlueprint = 0x00040000u, + MinimalAPI = 0x00080000u, + RequiredAPI = 0x00100000u, + DefaultToInstanced = 0x00200000u, + TokenStreamAssembled = 0x00400000u, + HasInstancedReference = 0x00800000u, + Hidden = 0x01000000u, + Deprecated = 0x02000000u, + HideDropDown = 0x04000000u, + GlobalUserConfig = 0x08000000u, + Intrinsic = 0x10000000u, + Constructed = 0x20000000u, + ConfigDoNotCheckDefaults = 0x40000000u, + NewerVersionExists = 0x80000000u, +}; + +enum class EClassCastFlags : uint64 +{ + None = 0x0000000000000000, + + Field = 0x0000000000000001, + Int8Property = 0x0000000000000002, + Enum = 0x0000000000000004, + Struct = 0x0000000000000008, + ScriptStruct = 0x0000000000000010, + Class = 0x0000000000000020, + ByteProperty = 0x0000000000000040, + IntProperty = 0x0000000000000080, + FloatProperty = 0x0000000000000100, + UInt64Property = 0x0000000000000200, + ClassProperty = 0x0000000000000400, + UInt32Property = 0x0000000000000800, + InterfaceProperty = 0x0000000000001000, + NameProperty = 0x0000000000002000, + StrProperty = 0x0000000000004000, + Property = 0x0000000000008000, + ObjectProperty = 0x0000000000010000, + BoolProperty = 0x0000000000020000, + UInt16Property = 0x0000000000040000, + Function = 0x0000000000080000, + StructProperty = 0x0000000000100000, + ArrayProperty = 0x0000000000200000, + Int64Property = 0x0000000000400000, + DelegateProperty = 0x0000000000800000, + NumericProperty = 0x0000000001000000, + MulticastDelegateProperty = 0x0000000002000000, + ObjectPropertyBase = 0x0000000004000000, + WeakObjectProperty = 0x0000000008000000, + LazyObjectProperty = 0x0000000010000000, + SoftObjectProperty = 0x0000000020000000, + TextProperty = 0x0000000040000000, + Int16Property = 0x0000000080000000, + DoubleProperty = 0x0000000100000000, + SoftClassProperty = 0x0000000200000000, + Package = 0x0000000400000000, + Level = 0x0000000800000000, + Actor = 0x0000001000000000, + PlayerController = 0x0000002000000000, + Pawn = 0x0000004000000000, + SceneComponent = 0x0000008000000000, + PrimitiveComponent = 0x0000010000000000, + SkinnedMeshComponent = 0x0000020000000000, + SkeletalMeshComponent = 0x0000040000000000, + Blueprint = 0x0000080000000000, + DelegateFunction = 0x0000100000000000, + StaticMeshComponent = 0x0000200000000000, + MapProperty = 0x0000400000000000, + SetProperty = 0x0000800000000000, + EnumProperty = 0x0001000000000000, + USparseDelegateFunction = 0x0002000000000000, + MulticastInlineDelegateProperty = 0x0004000000000000, + MulticastSparseDelegateProperty = 0x0008000000000000, + FieldPathProperty = 0x0010000000000000, + LargeWorldCoordinatesRealProperty = 0x0080000000000000, + OptionalProperty = 0x0100000000000000, + VValueProperty = 0x0200000000000000, + VerseVMClass = 0x0400000000000000, + VRestValueProperty = 0x0800000000000000, + Utf8StrProperty = 0x1000000000000000, + AnsiStrProperty = 0x2000000000000000, + VCellProperty = 0x4000000000000000, +}; + +enum class EPropertyFlags : uint64 +{ + None = 0x0000000000000000, + + Edit = 0x0000000000000001, + ConstParm = 0x0000000000000002, + BlueprintVisible = 0x0000000000000004, + ExportObject = 0x0000000000000008, + BlueprintReadOnly = 0x0000000000000010, + Net = 0x0000000000000020, + EditFixedSize = 0x0000000000000040, + Parm = 0x0000000000000080, + OutParm = 0x0000000000000100, + ZeroConstructor = 0x0000000000000200, + ReturnParm = 0x0000000000000400, + DisableEditOnTemplate = 0x0000000000000800, + + Transient = 0x0000000000002000, + Config = 0x0000000000004000, + + DisableEditOnInstance = 0x0000000000010000, + EditConst = 0x0000000000020000, + GlobalConfig = 0x0000000000040000, + InstancedReference = 0x0000000000080000, + + DuplicateTransient = 0x0000000000200000, + SubobjectReference = 0x0000000000400000, + + SaveGame = 0x0000000001000000, + NoClear = 0x0000000002000000, + + ReferenceParm = 0x0000000008000000, + BlueprintAssignable = 0x0000000010000000, + Deprecated = 0x0000000020000000, + IsPlainOldData = 0x0000000040000000, + RepSkip = 0x0000000080000000, + RepNotify = 0x0000000100000000, + Interp = 0x0000000200000000, + NonTransactional = 0x0000000400000000, + EditorOnly = 0x0000000800000000, + NoDestructor = 0x0000001000000000, + + AutoWeak = 0x0000004000000000, + ContainsInstancedReference = 0x0000008000000000, + AssetRegistrySearchable = 0x0000010000000000, + SimpleDisplay = 0x0000020000000000, + AdvancedDisplay = 0x0000040000000000, + Protected = 0x0000080000000000, + BlueprintCallable = 0x0000100000000000, + BlueprintAuthorityOnly = 0x0000200000000000, + TextExportTransient = 0x0000400000000000, + NonPIEDuplicateTransient = 0x0000800000000000, + ExposeOnSpawn = 0x0001000000000000, + PersistentInstance = 0x0002000000000000, + UObjectWrapper = 0x0004000000000000, + HasGetValueTypeHash = 0x0008000000000000, + NativeAccessSpecifierPublic = 0x0010000000000000, + NativeAccessSpecifierProtected = 0x0020000000000000, + NativeAccessSpecifierPrivate = 0x0040000000000000, + SkipSerialization = 0x0080000000000000, +}; + +UE_ENUM_OPERATORS(EObjectFlags); +UE_ENUM_OPERATORS(EFunctionFlags); +UE_ENUM_OPERATORS(EClassFlags); +UE_ENUM_OPERATORS(EClassCastFlags); +UE_ENUM_OPERATORS(EPropertyFlags); + +// Predefined struct FFieldClass +// 0x0028 (0x0028 - 0x0000) +class FFieldClass +{ +public: + FName Name; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint64 Id; // 0x0008(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint64 CastFlags; // 0x0010(0x0008)(NOT AUTO-GENERATED PROPERTY) + EClassFlags ClassFlags; // 0x0018(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FFieldClass* SuperClass; // 0x0020(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FFieldClass; + +// Predefined struct FFieldVariant +// 0x0008 (0x0008 - 0x0000) +class FFieldVariant +{ +public: + using ContainerType = union { class FField* Field; class UObject* Object; }; + + static constexpr uint64 UObjectMask = 0x1; // 0x0000(0x0001)(NOT AUTO-GENERATED PROPERTY) + + ContainerType Container; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FFieldVariant; + +// Predefined struct FField +// 0x0030 (0x0030 - 0x0000) +class FField +{ +public: + void* VTable; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + class FFieldClass* ClassPrivate; // 0x0008(0x0008)(NOT AUTO-GENERATED PROPERTY) + FFieldVariant Owner; // 0x0010(0x0008)(NOT AUTO-GENERATED PROPERTY) + class FField* Next; // 0x0018(0x0008)(NOT AUTO-GENERATED PROPERTY) + FName Name; // 0x0020(0x0008)(NOT AUTO-GENERATED PROPERTY) + int32 ObjFlags; // 0x0028(0x0004)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FField; + +// Predefined struct FProperty +// 0x0040 (0x0070 - 0x0030) +class FProperty : public FField +{ +public: + int32 ArrayDim; // 0x0030(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 ElementSize; // 0x0034(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint64 PropertyFlags; // 0x0038(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_40[0x4]; // 0x0040(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Offset; // 0x0044(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_48[0x28]; // 0x0048(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FProperty; + +// Predefined struct FByteProperty +// 0x0008 (0x0078 - 0x0070) +class FByteProperty final : public FProperty +{ +public: + class UEnum* Enum; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FByteProperty; + +// Predefined struct FBoolProperty +// 0x0008 (0x0078 - 0x0070) +class FBoolProperty final : public FProperty +{ +public: + uint8 FieldSize; // 0x0070(0x0001)(NOT AUTO-GENERATED PROPERTY) + uint8 ByteOffset; // 0x0071(0x0001)(NOT AUTO-GENERATED PROPERTY) + uint8 ByteMask; // 0x0072(0x0001)(NOT AUTO-GENERATED PROPERTY) + uint8 FieldMask; // 0x0073(0x0001)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FBoolProperty; + +// Predefined struct FObjectPropertyBase +// 0x0008 (0x0078 - 0x0070) +class FObjectPropertyBase : public FProperty +{ +public: + class UClass* PropertyClass; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FObjectPropertyBase; + +// Predefined struct FClassProperty +// 0x0008 (0x0080 - 0x0078) +class FClassProperty final : public FObjectPropertyBase +{ +public: + class UClass* MetaClass; // 0x0078(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FClassProperty; + +// Predefined struct FStructProperty +// 0x0008 (0x0078 - 0x0070) +class FStructProperty final : public FProperty +{ +public: + class UStruct* Struct; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FStructProperty; + +// Predefined struct FArrayProperty +// 0x0010 (0x0080 - 0x0070) +class FArrayProperty final : public FProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FProperty* InnerProperty; // 0x0078(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FArrayProperty; + +// Predefined struct FDelegateProperty +// 0x0008 (0x0078 - 0x0070) +class FDelegateProperty final : public FProperty +{ +public: + class UFunction* SignatureFunction; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FDelegateProperty; + +// Predefined struct FMapProperty +// 0x0010 (0x0080 - 0x0070) +class FMapProperty final : public FProperty +{ +public: + class FProperty* KeyProperty; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) + class FProperty* ValueProperty; // 0x0078(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FMapProperty; + +// Predefined struct FSetProperty +// 0x0008 (0x0078 - 0x0070) +class FSetProperty final : public FProperty +{ +public: + class FProperty* ElementProperty; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FSetProperty; + +// Predefined struct FEnumProperty +// 0x0010 (0x0080 - 0x0070) +class FEnumProperty final : public FProperty +{ +public: + class FProperty* UnderlayingProperty; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) + class UEnum* Enum; // 0x0078(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FEnumProperty; + +// Predefined struct FFieldPathProperty +// 0x0008 (0x0078 - 0x0070) +class FFieldPathProperty final : public FProperty +{ +public: + class FFieldClass* FieldClass; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FFieldPathProperty; + +// Predefined struct FOptionalProperty +// 0x0008 (0x0078 - 0x0070) +class FOptionalProperty final : public FProperty +{ +public: + class FProperty* ValueProperty; // 0x0070(0x0008)(NOT AUTO-GENERATED PROPERTY) +}; +DUMPER7_ASSERTS_FOptionalProperty; + +namespace CyclicDependencyFixupImpl +{ + +/* +* A wrapper for a Byte-Array of padding, that allows for casting to the actual underlaiyng type. Used for undefined structs in cylic headers. +*/ +template +struct alignas(Align) TCylicStructFixup +{ +private: + uint8 Pad[Size]; + +public: + UnderlayingStructType& GetTyped() { return reinterpret_cast< UnderlayingStructType&>(*this); } + const UnderlayingStructType& GetTyped() const { return reinterpret_cast(*this); } +}; + +/* +* A wrapper for a Byte-Array of padding, that inherited from UObject allows for casting to the actual underlaiyng type and access to basic UObject functionality. For cyclic classes. +*/ +template +struct alignas(Align) TCyclicClassFixup : public BaseClassType +{ +private: + uint8 Pad[Size]; + +public: + UnderlayingClassType* GetTyped() { return reinterpret_cast< UnderlayingClassType*>(this); } + const UnderlayingClassType* GetTyped() const { return reinterpret_cast(this); } +}; + +} + + +template +using TStructCycleFixup = CyclicDependencyFixupImpl::TCylicStructFixup; + + +template +using TObjectBasedCycleFixup = CyclicDependencyFixupImpl::TCyclicClassFixup; + +template +using TActorBasedCycleFixup = CyclicDependencyFixupImpl::TCyclicClassFixup; + +} + diff --git a/TormentedSouls2/SDK/Chaos_structs.hpp b/TormentedSouls2/SDK/Chaos_structs.hpp new file mode 100644 index 0000000..b8b8b00 --- /dev/null +++ b/TormentedSouls2/SDK/Chaos_structs.hpp @@ -0,0 +1,613 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Chaos + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Enum Chaos.ChaosDeformableSimSpace +// NumValues: 0x0004 +enum class EChaosDeformableSimSpace : uint8 +{ + World = 0, + ComponentXf = 1, + bone = 2, + ChaosDeformableSimSpace_MAX = 3, +}; + +// Enum Chaos.ESetMaskConditionType +// NumValues: 0x0005 +enum class ESetMaskConditionType : uint8 +{ + Field_Set_Always = 0, + Field_Set_IFF_NOT_Interior = 1, + Field_Set_IFF_NOT_Exterior = 2, + Field_MaskCondition_Max = 3, + Field_MAX = 4, +}; + +// Enum Chaos.EWaveFunctionType +// NumValues: 0x0005 +enum class EWaveFunctionType : uint8 +{ + Field_Wave_Cosine = 0, + Field_Wave_Gaussian = 1, + Field_Wave_Falloff = 2, + Field_Wave_Decay = 3, + Field_Wave_Max = 4, +}; + +// Enum Chaos.EFieldOperationType +// NumValues: 0x0005 +enum class EFieldOperationType : uint8 +{ + Field_Multiply = 0, + Field_Divide = 1, + Field_Add = 2, + Field_Substract = 3, + Field_Operation_Max = 4, +}; + +// Enum Chaos.EFieldCullingOperationType +// NumValues: 0x0004 +enum class EFieldCullingOperationType : uint8 +{ + Field_Culling_Inside = 0, + Field_Culling_Outside = 1, + Field_Culling_Operation_Max = 2, + Field_Culling_MAX = 3, +}; + +// Enum Chaos.EFieldResolutionType +// NumValues: 0x0004 +enum class EFieldResolutionType : uint8 +{ + Field_Resolution_Minimal = 0, + Field_Resolution_DisabledParents = 1, + Field_Resolution_Maximum = 2, + Field_Resolution_Max = 3, +}; + +// Enum Chaos.EFieldFilterType +// NumValues: 0x0007 +enum class EFieldFilterType : uint8 +{ + Field_Filter_Dynamic = 0, + Field_Filter_Kinematic = 1, + Field_Filter_Static = 2, + Field_Filter_All = 3, + Field_Filter_Sleeping = 4, + Field_Filter_Disabled = 5, + Field_Filter_Max = 6, +}; + +// Enum Chaos.EFieldObjectType +// NumValues: 0x0006 +enum class EFieldObjectType : uint8 +{ + Field_Object_Rigid = 0, + Field_Object_Cloth = 1, + Field_Object_Destruction = 2, + Field_Object_Character = 3, + Field_Object_All = 4, + Field_Object_Max = 5, +}; + +// Enum Chaos.EFieldPositionType +// NumValues: 0x0003 +enum class EFieldPositionType : uint8 +{ + Field_Position_CenterOfMass = 0, + Field_Position_PivotPoint = 1, + Field_Position_Max = 2, +}; + +// Enum Chaos.EFieldFalloffType +// NumValues: 0x0006 +enum class EFieldFalloffType : uint8 +{ + Field_FallOff_None = 0, + Field_Falloff_Linear = 1, + Field_Falloff_Inverse = 2, + Field_Falloff_Squared = 3, + Field_Falloff_Logarithmic = 4, + Field_Falloff_Max = 5, +}; + +// Enum Chaos.EFieldPhysicsType +// NumValues: 0x0015 +enum class EFieldPhysicsType : uint8 +{ + Field_None = 0, + Field_DynamicState = 1, + Field_LinearForce = 2, + Field_ExternalClusterStrain = 3, + Field_Kill = 4, + Field_LinearVelocity = 5, + Field_AngularVelociy = 6, + Field_AngularTorque = 7, + Field_InternalClusterStrain = 8, + Field_DisableThreshold = 9, + Field_SleepingThreshold = 10, + Field_PositionStatic = 11, + Field_PositionAnimated = 12, + Field_PositionTarget = 13, + Field_DynamicConstraint = 14, + Field_CollisionGroup = 15, + Field_ActivateDisabled = 16, + Field_InitialLinearVelocity = 17, + Field_InitialAngularVelocity = 18, + Field_LinearImpulse = 19, + Field_PhysicsType_Max = 20, +}; + +// Enum Chaos.EFieldVectorType +// NumValues: 0x000A +enum class EFieldVectorType : uint8 +{ + Vector_LinearForce = 0, + Vector_LinearVelocity = 1, + Vector_AngularVelocity = 2, + Vector_AngularTorque = 3, + Vector_PositionTarget = 4, + Vector_InitialLinearVelocity = 5, + Vector_InitialAngularVelocity = 6, + Vector_LinearImpulse = 7, + Vector_TargetMax = 8, + Vector_MAX = 9, +}; + +// Enum Chaos.EFieldScalarType +// NumValues: 0x0008 +enum class EFieldScalarType : uint8 +{ + Scalar_ExternalClusterStrain = 0, + Scalar_Kill = 1, + Scalar_DisableThreshold = 2, + Scalar_SleepingThreshold = 3, + Scalar_InternalClusterStrain = 4, + Scalar_DynamicConstraint = 5, + Scalar_TargetMax = 6, + Scalar_MAX = 7, +}; + +// Enum Chaos.EFieldIntegerType +// NumValues: 0x0007 +enum class EFieldIntegerType : uint8 +{ + Integer_DynamicState = 0, + Integer_ActivateDisabled = 1, + Integer_CollisionGroup = 2, + Integer_PositionAnimated = 3, + Integer_PositionStatic = 4, + Integer_TargetMax = 5, + Integer_MAX = 6, +}; + +// Enum Chaos.EFieldOutputType +// NumValues: 0x0004 +enum class EFieldOutputType : uint8 +{ + Field_Output_Vector = 0, + Field_Output_Scalar = 1, + Field_Output_Integer = 2, + Field_Output_Max = 3, +}; + +// Enum Chaos.EFieldPhysicsDefaultFields +// NumValues: 0x0006 +enum class EFieldPhysicsDefaultFields : uint8 +{ + Field_RadialIntMask = 0, + Field_RadialFalloff = 1, + Field_UniformVector = 2, + Field_RadialVector = 3, + Field_RadialVectorFalloff = 4, + Field_EFieldPhysicsDefaultFields_Max = 5, +}; + +// Enum Chaos.EConvexOverlapRemoval +// NumValues: 0x0005 +enum class EConvexOverlapRemoval : uint8 +{ + None = 0, + All = 1, + OnlyClusters = 2, + OnlyClustersVsClusters = 3, + EConvexOverlapRemoval_MAX = 4, +}; + +// Enum Chaos.EGenerateConvexMethod +// NumValues: 0x0004 +enum class EGenerateConvexMethod : uint8 +{ + ExternalCollision = 0, + ComputedFromGeometry = 1, + IntersectExternalWithComputed = 2, + EGenerateConvexMethod_MAX = 3, +}; + +// Enum Chaos.EAllowConvexMergeMethod +// NumValues: 0x0003 +enum class EAllowConvexMergeMethod : uint8 +{ + ByProximity = 0, + Any = 1, + EAllowConvexMergeMethod_MAX = 2, +}; + +// Enum Chaos.EProximityMethod +// NumValues: 0x0003 +enum class EProximityMethod : uint8 +{ + Precise = 0, + ConvexHull = 1, + EProximityMethod_MAX = 2, +}; + +// Enum Chaos.EProximityContactMethod +// NumValues: 0x0004 +enum class EProximityContactMethod : uint8 +{ + MinOverlapInProjectionToMajorAxes = 0, + ConvexHullSharpContact = 1, + ConvexHullAreaContact = 2, + EProximityContactMethod_MAX = 3, +}; + +// Enum Chaos.EConnectionContactMethod +// NumValues: 0x0003 +enum class EConnectionContactMethod : uint8 +{ + None = 0, + ConvexHullContactArea = 1, + EConnectionContactMethod_MAX = 2, +}; + +// Enum Chaos.ECollisionTypeEnum +// NumValues: 0x0003 +enum class ECollisionTypeEnum : uint8 +{ + Chaos_Volumetric = 0, + Chaos_Surface_Volumetric = 1, + Chaos_Max = 2, +}; + +// Enum Chaos.EImplicitTypeEnum +// NumValues: 0x0007 +enum class EImplicitTypeEnum : uint8 +{ + Chaos_Implicit_Box = 0, + Chaos_Implicit_Sphere = 1, + Chaos_Implicit_Capsule = 2, + Chaos_Implicit_LevelSet = 3, + Chaos_Implicit_None = 4, + Chaos_Implicit_Convex = 5, + Chaos_Max = 6, +}; + +// Enum Chaos.EObjectStateTypeEnum +// NumValues: 0x0007 +enum class EObjectStateTypeEnum : uint8 +{ + Chaos_NONE = 0, + Chaos_Object_Sleeping = 1, + Chaos_Object_Kinematic = 2, + Chaos_Object_Static = 3, + Chaos_Object_Dynamic = 4, + Chaos_Object_UserDefined = 100, + Chaos_Max = 101, +}; + +// Enum Chaos.EGeometryCollectionPhysicsTypeEnum +// NumValues: 0x000E +enum class EGeometryCollectionPhysicsTypeEnum : uint8 +{ + Chaos_AngularVelocity = 0, + Chaos_DynamicState = 1, + Chaos_LinearVelocity = 2, + Chaos_InitialAngularVelocity = 3, + Chaos_InitialLinearVelocity = 4, + Chaos_CollisionGroup = 5, + Chaos_LinearForce = 6, + Chaos_AngularTorque = 7, + Chaos_DisableThreshold = 8, + Chaos_SleepingThreshold = 9, + Chaos_ExternalClusterStrain = 10, + Chaos_InternalClusterStrain = 11, + Chaos_LinearImpulse = 12, + Chaos_Max = 13, +}; + +// Enum Chaos.EInitialVelocityTypeEnum +// NumValues: 0x0003 +enum class EInitialVelocityTypeEnum : uint8 +{ + Chaos_Initial_Velocity_User_Defined = 0, + Chaos_Initial_Velocity_None = 1, + Chaos_Max = 2, +}; + +// Enum Chaos.EEmissionPatternTypeEnum +// NumValues: 0x0003 +enum class EEmissionPatternTypeEnum : uint8 +{ + Chaos_Emission_Pattern_First_Frame = 0, + Chaos_Emission_Pattern_On_Demand = 1, + Chaos_Max = 2, +}; + +// Enum Chaos.EDamageModelTypeEnum +// NumValues: 0x0003 +enum class EDamageModelTypeEnum : uint8 +{ + Chaos_Damage_Model_UserDefined_Damage_Threshold = 0, + Chaos_Damage_Model_Material_Strength_And_Connectivity_DamageThreshold = 1, + Chaos_Max = 2, +}; + +// Enum Chaos.EChaosSolverTickMode +// NumValues: 0x0005 +enum class EChaosSolverTickMode : uint8 +{ + Fixed = 0, + Variable = 1, + VariableCapped = 2, + VariableCappedWithTarget = 3, + EChaosSolverTickMode_MAX = 4, +}; + +// Enum Chaos.EChaosThreadingMode +// NumValues: 0x0006 +enum class EChaosThreadingMode : uint8 +{ + DedicatedThread = 0, + TaskGraph = 1, + SingleThread = 2, + Num = 3, + Invalid = 4, + EChaosThreadingMode_MAX = 5, +}; + +// Enum Chaos.EChaosBufferMode +// NumValues: 0x0005 +enum class EChaosBufferMode : uint8 +{ + Double = 0, + Triple = 1, + Num = 2, + Invalid = 3, + EChaosBufferMode_MAX = 4, +}; + +// Enum Chaos.EChaosSoftsSimulationSpace +// NumValues: 0x0004 +enum class EChaosSoftsSimulationSpace : uint8 +{ + WorldSpace = 0, + ComponentSpace = 1, + ReferenceBoneSpace = 2, + EChaosSoftsSimulationSpace_MAX = 3, +}; + +// Enum Chaos.EClusterUnionMethod +// NumValues: 0x0007 +enum class EClusterUnionMethod : uint8 +{ + PointImplicit = 0, + DelaunayTriangulation = 1, + MinimalSpanningSubsetDelaunayTriangulation = 2, + PointImplicitAugmentedWithMinimalDelaunay = 3, + BoundsOverlapFilteredDelaunayTriangulation = 4, + None = 5, + EClusterUnionMethod_MAX = 6, +}; + +// Enum Chaos.EGeometryCollectionCacheType +// NumValues: 0x0005 +enum class EGeometryCollectionCacheType : uint8 +{ + None = 0, + Record = 1, + Play = 2, + RecordAndPlay = 3, + EGeometryCollectionCacheType_MAX = 4, +}; + +// ScriptStruct Chaos.SolverBreakingFilterSettings +// 0x0010 (0x0010 - 0x0000) +struct FSolverBreakingFilterSettings final +{ +public: + bool FilterEnabled; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinMass; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSpeed; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinVolume; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSolverBreakingFilterSettings; + +// ScriptStruct Chaos.ManagedArrayCollection +// 0x00B0 (0x00B0 - 0x0000) +struct alignas(0x08) FManagedArrayCollection +{ +public: + uint8 Pad_0[0xB0]; // 0x0000(0x00B0)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FManagedArrayCollection; + +// ScriptStruct Chaos.SolverTrailingFilterSettings +// 0x0010 (0x0010 - 0x0000) +struct FSolverTrailingFilterSettings final +{ +public: + bool FilterEnabled; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinMass; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSpeed; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinVolume; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSolverTrailingFilterSettings; + +// ScriptStruct Chaos.FieldCollection +// 0x0000 (0x00B0 - 0x00B0) +struct FFieldCollection final : public FManagedArrayCollection +{ +}; +//DUMPER7_ASSERTS_FFieldCollection; + +// ScriptStruct Chaos.ClosestPhysicsObjectResult +// 0x0028 (0x0028 - 0x0000) +struct alignas(0x08) FClosestPhysicsObjectResult final +{ +public: + uint8 Pad_0[0x28]; // 0x0000(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FClosestPhysicsObjectResult; + +// ScriptStruct Chaos.SolverCollisionFilterSettings +// 0x0010 (0x0010 - 0x0000) +struct FSolverCollisionFilterSettings final +{ +public: + bool FilterEnabled; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinMass; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSpeed; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinImpulse; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSolverCollisionFilterSettings; + +// ScriptStruct Chaos.ChaosSolverConfiguration +// 0x006C (0x006C - 0x0000) +struct FChaosSolverConfiguration final +{ +public: + int32 PositionIterations; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VelocityIterations; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ProjectionIterations; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionMarginFraction; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionMarginMax; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionCullDistance; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionMaxPushOutVelocity; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionInitialOverlapDepenetrationVelocity; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClusterConnectionFactor; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EClusterUnionMethod ClusterUnionConnectionType; // 0x0024(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGenerateCollisionData; // 0x0025(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_26[0x2]; // 0x0026(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSolverCollisionFilterSettings CollisionFilterSettings; // 0x0028(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bGenerateBreakData; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSolverBreakingFilterSettings BreakingFilterSettings; // 0x003C(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bGenerateTrailingData; // 0x004C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSolverTrailingFilterSettings TrailingFilterSettings; // 0x0050(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + int32 Iterations; // 0x0060(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 PushOutIterations; // 0x0064(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bGenerateContactGraph; // 0x0068(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FChaosSolverConfiguration; + +// ScriptStruct Chaos.SolverCollisionData +// 0x00C0 (0x00C0 - 0x0000) +struct FSolverCollisionData final +{ +public: + struct FVector Location; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AccumulatedImpulse; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity1; // 0x0048(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity2; // 0x0060(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity1; // 0x0078(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity2; // 0x0090(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass1; // 0x00A8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass2; // 0x00AC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndex; // 0x00B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LevelsetIndex; // 0x00B4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndexMesh; // 0x00B8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LevelsetIndexMesh; // 0x00BC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSolverCollisionData; + +// ScriptStruct Chaos.SolverBreakingData +// 0x0058 (0x0058 - 0x0000) +struct FSolverBreakingData final +{ +public: + struct FVector Location; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndex; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndexMesh; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSolverBreakingData; + +// ScriptStruct Chaos.SolverTrailingData +// 0x0058 (0x0058 - 0x0000) +struct FSolverTrailingData final +{ +public: + struct FVector Location; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndex; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleIndexMesh; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSolverTrailingData; + +// ScriptStruct Chaos.RecordedFrame +// 0x00B8 (0x00B8 - 0x0000) +struct FRecordedFrame final +{ +public: + TArray Transforms; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray TransformIndices; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray PreviousTransformIndices; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray DisabledFlags; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Collisions; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Breakings; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TSet Trailings; // 0x0060(0x0050)(NativeAccessSpecifierPublic) + float Timestamp; // 0x00B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FRecordedFrame; + +// ScriptStruct Chaos.RecordedTransformTrack +// 0x0010 (0x0010 - 0x0000) +struct FRecordedTransformTrack final +{ +public: + TArray Records; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRecordedTransformTrack; + +// ScriptStruct Chaos.SolverRemovalFilterSettings +// 0x000C (0x000C - 0x0000) +struct FSolverRemovalFilterSettings final +{ +public: + bool FilterEnabled; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinMass; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinVolume; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSolverRemovalFilterSettings; + +} + diff --git a/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_classes.hpp b/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_classes.hpp new file mode 100644 index 0000000..6a36b43 --- /dev/null +++ b/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_classes.hpp @@ -0,0 +1,202 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: ClothingSystemRuntimeInterface + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" +#include "CoreUObject_classes.hpp" +#include "ClothingSystemRuntimeInterface_structs.hpp" + + +namespace SDK +{ + +// Class ClothingSystemRuntimeInterface.ClothingAssetBase +// 0x0020 (0x0048 - 0x0028) +class UClothingAssetBase : public UObject +{ +public: + class FString ImportedFilePath; // 0x0028(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid AssetGuid; // 0x0038(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothingAssetBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothingAssetBase") + } + static class UClothingAssetBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothingAssetBase; + +// Class ClothingSystemRuntimeInterface.ClothConfigBase +// 0x0000 (0x0028 - 0x0028) +class UClothConfigBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothConfigBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothConfigBase") + } + static class UClothConfigBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothConfigBase; + +// Class ClothingSystemRuntimeInterface.ClothSharedSimConfigBase +// 0x0000 (0x0028 - 0x0028) +class UClothSharedSimConfigBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothSharedSimConfigBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothSharedSimConfigBase") + } + static class UClothSharedSimConfigBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothSharedSimConfigBase; + +// Class ClothingSystemRuntimeInterface.ClothingSimulationFactory +// 0x0000 (0x0028 - 0x0028) +class UClothingSimulationFactory : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothingSimulationFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothingSimulationFactory") + } + static class UClothingSimulationFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothingSimulationFactory; + +// Class ClothingSystemRuntimeInterface.ClothingInteractor +// 0x0008 (0x0030 - 0x0028) +class UClothingInteractor : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothingInteractor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothingInteractor") + } + static class UClothingInteractor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothingInteractor; + +// Class ClothingSystemRuntimeInterface.ClothingSimulationInteractor +// 0x0068 (0x0090 - 0x0028) +class UClothingSimulationInteractor : public UObject +{ +public: + TMap ClothingInteractors; // 0x0028(0x0050)(UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_78[0x18]; // 0x0078(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ClothConfigUpdated(); + void DisableGravityOverride(); + void EnableGravityOverride(const struct FVector& InVector); + void PhysicsAssetUpdated(); + void SetAnimDriveSpringStiffness(float InStiffness); + void SetMaxNumIterations(int32 MaxNumIterations); + void SetNumIterations(int32 NumIterations); + void SetNumSubsteps(int32 NumSubsteps); + + class UClothingInteractor* GetClothingInteractor(const class FString& ClothingAssetName) const; + int32 GetNumCloths() const; + int32 GetNumDynamicParticles() const; + int32 GetNumIterations() const; + int32 GetNumKinematicParticles() const; + int32 GetNumSubsteps() const; + float GetSimulationTime() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothingSimulationInteractor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothingSimulationInteractor") + } + static class UClothingSimulationInteractor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothingSimulationInteractor; + +// Class ClothingSystemRuntimeInterface.ClothPhysicalMeshDataBase_Legacy +// 0x00B8 (0x00E0 - 0x0028) +class UClothPhysicalMeshDataBase_Legacy : public UObject +{ +public: + TArray Vertices; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Normals; // 0x0038(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Indices; // 0x0048(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray InverseMasses; // 0x0058(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray BoneData; // 0x0068(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 NumFixedVerts; // 0x0078(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxBoneWeights; // 0x007C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SelfCollisionIndices; // 0x0080(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_90[0x50]; // 0x0090(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClothPhysicalMeshDataBase_Legacy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClothPhysicalMeshDataBase_Legacy") + } + static class UClothPhysicalMeshDataBase_Legacy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClothPhysicalMeshDataBase_Legacy; + +} + diff --git a/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_structs.hpp b/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_structs.hpp new file mode 100644 index 0000000..f6a362e --- /dev/null +++ b/TormentedSouls2/SDK/ClothingSystemRuntimeInterface_structs.hpp @@ -0,0 +1,110 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: ClothingSystemRuntimeInterface + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Enum ClothingSystemRuntimeInterface.EClothingTeleportMode +// NumValues: 0x0005 +enum class EClothingTeleportMode : uint8 +{ + None = 0, + Teleport = 1, + TeleportAndReset = 2, + HardReset = 3, + EClothingTeleportMode_MAX = 4, +}; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_Sphere +// 0x0020 (0x0020 - 0x0000) +struct FClothCollisionPrim_Sphere final +{ +public: + int32 BoneIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocalPosition; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FClothCollisionPrim_Sphere; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_SphereConnection +// 0x0008 (0x0008 - 0x0000) +struct FClothCollisionPrim_SphereConnection final +{ +public: + int32 SphereIndices[0x2]; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FClothCollisionPrim_SphereConnection; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_ConvexFace +// 0x0030 (0x0030 - 0x0000) +struct FClothCollisionPrim_ConvexFace final +{ +public: + struct FPlane Plane; // 0x0000(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Indices; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FClothCollisionPrim_ConvexFace; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_Convex +// 0x0028 (0x0028 - 0x0000) +struct FClothCollisionPrim_Convex final +{ +public: + TArray Faces; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray SurfacePoints; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 BoneIndex; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FClothCollisionPrim_Convex; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_Box +// 0x0060 (0x0060 - 0x0000) +struct FClothCollisionPrim_Box final +{ +public: + struct FVector LocalPosition; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat LocalRotation; // 0x0020(0x0020)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfExtents; // 0x0040(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BoneIndex; // 0x0058(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FClothCollisionPrim_Box; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothVertBoneData +// 0x004C (0x004C - 0x0000) +struct FClothVertBoneData final +{ +public: + int32 NumInfluences; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 BoneIndices[0xC]; // 0x0004(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BoneWeights[0xC]; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FClothVertBoneData; + +// ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionData +// 0x0040 (0x0040 - 0x0000) +struct FClothCollisionData final +{ +public: + TArray Spheres; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SphereConnections; // 0x0010(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray Convexes; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray Boxes; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FClothCollisionData; + +} + diff --git a/TormentedSouls2/SDK/CoreOnline_structs.hpp b/TormentedSouls2/SDK/CoreOnline_structs.hpp new file mode 100644 index 0000000..694f87a --- /dev/null +++ b/TormentedSouls2/SDK/CoreOnline_structs.hpp @@ -0,0 +1,50 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: CoreOnline + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum CoreOnline.ECoreOnlineDummy +// NumValues: 0x0002 +enum class ECoreOnlineDummy : uint8 +{ + Dummy = 0, + ECoreOnlineDummy_MAX = 1, +}; + +// ScriptStruct CoreOnline.JoinabilitySettings +// 0x0014 (0x0014 - 0x0000) +struct FJoinabilitySettings final +{ +public: + class FName SessionName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPublicSearchable; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowInvites; // 0x0009(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bJoinViaPresence; // 0x000A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bJoinViaPresenceFriendsOnly; // 0x000B(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxPlayers; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxPartySize; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FJoinabilitySettings; + +// ScriptStruct CoreOnline.UniqueNetIdWrapper +// 0x0001 (0x0001 - 0x0000) +struct FUniqueNetIdWrapper +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUniqueNetIdWrapper; + +} + diff --git a/TormentedSouls2/SDK/CoreUObject_classes.hpp b/TormentedSouls2/SDK/CoreUObject_classes.hpp new file mode 100644 index 0000000..ce60ada --- /dev/null +++ b/TormentedSouls2/SDK/CoreUObject_classes.hpp @@ -0,0 +1,1635 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: CoreUObject + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Class CoreUObject.Object +// 0x0028 (0x0028 - 0x0000) +class alignas(0x08) UObject +{ +public: + static inline class TUObjectArrayWrapper GObjects; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + + void* VTable; // 0x0000(0x0008)(NOT AUTO-GENERATED PROPERTY) + EObjectFlags Flags; // 0x0008(0x0004)(NOT AUTO-GENERATED PROPERTY) + int32 Index; // 0x000C(0x0004)(NOT AUTO-GENERATED PROPERTY) + class UClass* Class; // 0x0010(0x0008)(NOT AUTO-GENERATED PROPERTY) + class FName Name; // 0x0018(0x0008)(NOT AUTO-GENERATED PROPERTY) + class UObject* Outer; // 0x0020(0x0008)(NOT AUTO-GENERATED PROPERTY) + +public: + static class UObject* FindObjectFastImpl(const std::string& Name, EClassCastFlags RequiredType = EClassCastFlags::None); + static class UObject* FindObjectImpl(const std::string& FullName, EClassCastFlags RequiredType = EClassCastFlags::None); + + std::string GetFullName() const; + std::string GetName() const; + bool HasTypeFlag(EClassCastFlags TypeFlags) const; + bool IsA(EClassCastFlags TypeFlags) const; + bool IsA(const class FName& ClassName) const; + bool IsA(const class UClass* TypeClass) const; + bool IsDefaultObject() const; + + void ExecuteUbergraph(int32 EntryPoint); + +public: + static class UClass* FindClass(const std::string& ClassFullName) + { + return FindObject(ClassFullName, EClassCastFlags::Class); + } + static class UClass* FindClassFast(const std::string& ClassName) + { + return FindObjectFast(ClassName, EClassCastFlags::Class); + } + + template + static UEType* FindObject(const std::string& Name, EClassCastFlags RequiredType = EClassCastFlags::None) + { + return static_cast(FindObjectImpl(Name, RequiredType)); + } + template + static UEType* FindObjectFast(const std::string& Name, EClassCastFlags RequiredType = EClassCastFlags::None) + { + return static_cast(FindObjectFastImpl(Name, RequiredType)); + } + + void ProcessEvent(class UFunction* Function, void* Parms) const + { + InSDKUtils::CallGameFunction(InSDKUtils::GetVirtualFunction(this, Offsets::ProcessEventIdx), this, Function, Parms); + } +}; +DUMPER7_ASSERTS_UObject; + +// Class CoreUObject.TestInstanceDataObjectClass +// 0x0038 (0x0060 - 0x0028) +class UTestInstanceDataObjectClass final : public UObject +{ +public: + int32 int32_0; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTestInstanceDataObjectStruct Struct; // 0x002C(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestInstanceDataObjectClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestInstanceDataObjectClass") + } + static class UTestInstanceDataObjectClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UTestInstanceDataObjectClass; + +// Class CoreUObject.OptionalPropertyTestObject +// 0x0030 (0x0058 - 0x0028) +class UOptionalPropertyTestObject final : public UObject +{ +public: + TOptional OptionalString; // 0x0028(0x0010)(HasGetValueTypeHash, NativeAccessSpecifierPublic) + TOptional OptionalText; // 0x0038(0x0010)(NativeAccessSpecifierPublic) + TOptional OptionalName; // 0x0048(0x0008)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TOptional OptionalInt; // 0x0050(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("OptionalPropertyTestObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"OptionalPropertyTestObject") + } + static class UOptionalPropertyTestObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UOptionalPropertyTestObject; + +// Class CoreUObject.Field +// 0x0008 (0x0030 - 0x0028) +class UField : public UObject +{ +public: + class UField* Next; // 0x0028(0x0008)(NOT AUTO-GENERATED PROPERTY) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Field") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Field") + } + static class UField* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UField; + +// Class CoreUObject.Struct +// 0x0080 (0x00B0 - 0x0030) +class UStruct : public UField +{ +public: + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UStruct* Super; // 0x0040(0x0008)(NOT AUTO-GENERATED PROPERTY) + class UField* Children; // 0x0048(0x0008)(NOT AUTO-GENERATED PROPERTY) + class FField* ChildProperties; // 0x0050(0x0008)(NOT AUTO-GENERATED PROPERTY) + int32 Size; // 0x0058(0x0004)(NOT AUTO-GENERATED PROPERTY) + int16 MinAlignment; // 0x005C(0x0002)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_5E[0x52]; // 0x005E(0x0052)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool IsSubclassOf(const UStruct* Base) const; + bool IsSubclassOf(const FName& baseClassName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Struct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Struct") + } + static class UStruct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UStruct; + +// Class CoreUObject.ScriptStruct +// 0x0010 (0x00C0 - 0x00B0) +class UScriptStruct : public UStruct +{ +public: + uint8 Pad_B0[0x10]; // 0x00B0(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ScriptStruct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ScriptStruct") + } + static class UScriptStruct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UScriptStruct; + +// Class CoreUObject.UserDefinedStruct +// 0x0048 (0x0108 - 0x00C0) +class UUserDefinedStruct : public UScriptStruct +{ +public: + EUserDefinedStructureStatus Status; // 0x00C0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0x3]; // 0x00C1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid Guid; // 0x00C4(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x34]; // 0x00D4(0x0034)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UserDefinedStruct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UserDefinedStruct") + } + static class UUserDefinedStruct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UUserDefinedStruct; + +// Class CoreUObject.UserDefinedStructEditorDataBase +// 0x0000 (0x0028 - 0x0028) +class UUserDefinedStructEditorDataBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UserDefinedStructEditorDataBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UserDefinedStructEditorDataBase") + } + static class UUserDefinedStructEditorDataBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UUserDefinedStructEditorDataBase; + +// Class CoreUObject.Enum +// 0x0038 (0x0068 - 0x0030) +class UEnum : public UField +{ +public: + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class TArray> Names; // 0x0040(0x0010)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_50[0x18]; // 0x0050(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Enum") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Enum") + } + static class UEnum* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEnum; + +// Class CoreUObject.VerseEnum +// 0x0008 (0x0070 - 0x0068) +class UVerseEnum final : public UEnum +{ +public: + EVerseEnumFlags VerseEnumFlags; // 0x0068(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VerseEnum") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VerseEnum") + } + static class UVerseEnum* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UVerseEnum; + +// Class CoreUObject.VerseStruct +// 0x0040 (0x0100 - 0x00C0) +class UVerseStruct final : public UScriptStruct +{ +public: + uint32 VerseClassFlags; // 0x00C0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C4[0x4]; // 0x00C4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UFunction* InitFunction; // 0x00C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ModuleClass; // 0x00D0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid Guid; // 0x00D8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFunction* FactoryFunction; // 0x00E8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFunction* OverrideFactoryFunction; // 0x00F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVerseEffectSet ConstructorEffects; // 0x00F8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F9[0x7]; // 0x00F9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VerseStruct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VerseStruct") + } + static class UVerseStruct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UVerseStruct; + +// Class CoreUObject.Interface +// 0x0000 (0x0000 - 0x0000) +class IInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface") + } + static class IInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_IInterface; + +// Class CoreUObject.EditorPathObjectInterface +// 0x0000 (0x0000 - 0x0000) +class IEditorPathObjectInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EditorPathObjectInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EditorPathObjectInterface") + } + static class IEditorPathObjectInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//DUMPER7_ASSERTS_IEditorPathObjectInterface; + +// Class CoreUObject.GCObjectReferencer +// 0x0010 (0x0038 - 0x0028) +class UGCObjectReferencer final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GCObjectReferencer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GCObjectReferencer") + } + static class UGCObjectReferencer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UGCObjectReferencer; + +// Class CoreUObject.TextBuffer +// 0x0028 (0x0050 - 0x0028) +class UTextBuffer final : public UObject +{ +public: + uint8 Pad_28[0x28]; // 0x0028(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextBuffer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextBuffer") + } + static class UTextBuffer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTextBuffer; + +// Class CoreUObject.PropertyBagMissingObject +// 0x0000 (0x0028 - 0x0028) +class UPropertyBagMissingObject final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PropertyBagMissingObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PropertyBagMissingObject") + } + static class UPropertyBagMissingObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPropertyBagMissingObject; + +// Class CoreUObject.PropertyBag +// 0x0018 (0x00D8 - 0x00C0) +class UPropertyBag final : public UScriptStruct +{ +public: + TArray PropertyDescs; // 0x00C0(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_D0[0x8]; // 0x00D0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PropertyBag") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PropertyBag") + } + static class UPropertyBag* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPropertyBag; + +// Class CoreUObject.Package +// 0x0028 (0x0050 - 0x0028) +class UPackage final : public UObject +{ +public: + uint8 Pad_28[0x28]; // 0x0028(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Package") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Package") + } + static class UPackage* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UPackage; + +// Class CoreUObject.Class +// 0x0150 (0x0200 - 0x00B0) +class UClass : public UStruct +{ +public: + uint8 Pad_B0[0x28]; // 0x00B0(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + enum class EClassCastFlags CastFlags; // 0x00D8(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_E0[0x30]; // 0x00E0(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* DefaultObject; // 0x0110(0x0008)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_118[0xE8]; // 0x0118(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class UFunction* GetFunction(const char* ClassName, const char* FuncName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Class") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Class") + } + static class UClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClass; + +// Class CoreUObject.Function +// 0x0030 (0x00E0 - 0x00B0) +class UFunction : public UStruct +{ +public: + using FNativeFuncPtr = void (*)(void* Context, void* TheStack, void* Result); + + uint32 FunctionFlags; // 0x00B0(0x0004)(NOT AUTO-GENERATED PROPERTY) + uint8 Pad_B4[0x24]; // 0x00B4(0x0024)(Fixing Size After Last Property [ Dumper-7 ]) + FNativeFuncPtr ExecFunction; // 0x00D8(0x0008)(NOT AUTO-GENERATED PROPERTY) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Function") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Function") + } + static class UFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UFunction; + +// Class CoreUObject.DelegateFunction +// 0x0000 (0x00E0 - 0x00E0) +class UDelegateFunction : public UFunction +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DelegateFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DelegateFunction") + } + static class UDelegateFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDelegateFunction; + +// Class CoreUObject.SparseDelegateFunction +// 0x0010 (0x00F0 - 0x00E0) +class USparseDelegateFunction final : public UDelegateFunction +{ +public: + uint8 Pad_E0[0x10]; // 0x00E0(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SparseDelegateFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SparseDelegateFunction") + } + static class USparseDelegateFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USparseDelegateFunction; + +// Class CoreUObject.EnumCookedMetaData +// 0x0050 (0x0078 - 0x0028) +class UEnumCookedMetaData final : public UObject +{ +public: + struct FObjectCookedMetaDataStore EnumMetaData; // 0x0028(0x0050)(Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EnumCookedMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EnumCookedMetaData") + } + static class UEnumCookedMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEnumCookedMetaData; + +// Class CoreUObject.StructCookedMetaData +// 0x00A0 (0x00C8 - 0x0028) +class UStructCookedMetaData final : public UObject +{ +public: + struct FStructCookedMetaDataStore StructMetaData; // 0x0028(0x00A0)(Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StructCookedMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StructCookedMetaData") + } + static class UStructCookedMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UStructCookedMetaData; + +// Class CoreUObject.ClassCookedMetaData +// 0x00F0 (0x0118 - 0x0028) +class UClassCookedMetaData final : public UObject +{ +public: + struct FStructCookedMetaDataStore ClassMetaData; // 0x0028(0x00A0)(Protected, NativeAccessSpecifierProtected) + TMap FunctionsMetaData; // 0x00C8(0x0050)(Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClassCookedMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClassCookedMetaData") + } + static class UClassCookedMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClassCookedMetaData; + +// Class CoreUObject.PackageMap +// 0x00B8 (0x00E0 - 0x0028) +class UPackageMap : public UObject +{ +public: + uint8 Pad_28[0xB8]; // 0x0028(0x00B8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PackageMap") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PackageMap") + } + static class UPackageMap* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPackageMap; + +// Class CoreUObject.ObjectReachabilityStressData +// 0x0010 (0x0038 - 0x0028) +class UObjectReachabilityStressData final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectReachabilityStressData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectReachabilityStressData") + } + static class UObjectReachabilityStressData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UObjectReachabilityStressData; + +// Class CoreUObject.LinkerPlaceholderClass +// 0x01C0 (0x03C0 - 0x0200) +class ULinkerPlaceholderClass final : public UClass +{ +public: + uint8 Pad_200[0x1C0]; // 0x0200(0x01C0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LinkerPlaceholderClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LinkerPlaceholderClass") + } + static class ULinkerPlaceholderClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_ULinkerPlaceholderClass; + +// Class CoreUObject.LinkerPlaceholderExportObject +// 0x00D0 (0x00F8 - 0x0028) +class ULinkerPlaceholderExportObject final : public UObject +{ +public: + uint8 Pad_28[0xD0]; // 0x0028(0x00D0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LinkerPlaceholderExportObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LinkerPlaceholderExportObject") + } + static class ULinkerPlaceholderExportObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_ULinkerPlaceholderExportObject; + +// Class CoreUObject.LinkerPlaceholderFunction +// 0x01C0 (0x02A0 - 0x00E0) +class ULinkerPlaceholderFunction final : public UFunction +{ +public: + uint8 Pad_E0[0x1C0]; // 0x00E0(0x01C0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LinkerPlaceholderFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LinkerPlaceholderFunction") + } + static class ULinkerPlaceholderFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_ULinkerPlaceholderFunction; + +// Class CoreUObject.MetaData +// 0x00A0 (0x00C8 - 0x0028) +class UMetaData final : public UObject +{ +public: + uint8 Pad_28[0xA0]; // 0x0028(0x00A0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MetaData") + } + static class UMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMetaData; + +// Class CoreUObject.ObjectRedirector +// 0x0008 (0x0030 - 0x0028) +class UObjectRedirector final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectRedirector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectRedirector") + } + static class UObjectRedirector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UObjectRedirector; + +// Class CoreUObject.Property +// 0x0040 (0x0070 - 0x0030) +class UProperty : public UField +{ +public: + uint8 Pad_30[0x40]; // 0x0030(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Property") + } + static class UProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UProperty; + +// Class CoreUObject.EnumProperty +// 0x0010 (0x0080 - 0x0070) +class UEnumProperty final : public UProperty +{ +public: + uint8 Pad_70[0x10]; // 0x0070(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EnumProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EnumProperty") + } + static class UEnumProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEnumProperty; + +// Class CoreUObject.ArrayProperty +// 0x0008 (0x0078 - 0x0070) +class UArrayProperty final : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ArrayProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ArrayProperty") + } + static class UArrayProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UArrayProperty; + +// Class CoreUObject.ObjectPropertyBase +// 0x0008 (0x0078 - 0x0070) +class UObjectPropertyBase : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectPropertyBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectPropertyBase") + } + static class UObjectPropertyBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UObjectPropertyBase; + +// Class CoreUObject.BoolProperty +// 0x0008 (0x0078 - 0x0070) +class UBoolProperty final : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoolProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoolProperty") + } + static class UBoolProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UBoolProperty; + +// Class CoreUObject.NumericProperty +// 0x0000 (0x0070 - 0x0070) +class UNumericProperty : public UProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NumericProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NumericProperty") + } + static class UNumericProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNumericProperty; + +// Class CoreUObject.ByteProperty +// 0x0008 (0x0078 - 0x0070) +class UByteProperty final : public UNumericProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ByteProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ByteProperty") + } + static class UByteProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UByteProperty; + +// Class CoreUObject.ObjectProperty +// 0x0000 (0x0078 - 0x0078) +class UObjectProperty : public UObjectPropertyBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectProperty") + } + static class UObjectProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UObjectProperty; + +// Class CoreUObject.ClassProperty +// 0x0008 (0x0080 - 0x0078) +class UClassProperty final : public UObjectProperty +{ +public: + uint8 Pad_78[0x8]; // 0x0078(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClassProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClassProperty") + } + static class UClassProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UClassProperty; + +// Class CoreUObject.DelegateProperty +// 0x0008 (0x0078 - 0x0070) +class UDelegateProperty final : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DelegateProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DelegateProperty") + } + static class UDelegateProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDelegateProperty; + +// Class CoreUObject.DoubleProperty +// 0x0000 (0x0070 - 0x0070) +class UDoubleProperty final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DoubleProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DoubleProperty") + } + static class UDoubleProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDoubleProperty; + +// Class CoreUObject.FloatProperty +// 0x0000 (0x0070 - 0x0070) +class UFloatProperty final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FloatProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FloatProperty") + } + static class UFloatProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UFloatProperty; + +// Class CoreUObject.IntProperty +// 0x0000 (0x0070 - 0x0070) +class UIntProperty final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("IntProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"IntProperty") + } + static class UIntProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UIntProperty; + +// Class CoreUObject.Int8Property +// 0x0000 (0x0070 - 0x0070) +class UInt8Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Int8Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Int8Property") + } + static class UInt8Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UInt8Property; + +// Class CoreUObject.Int16Property +// 0x0000 (0x0070 - 0x0070) +class UInt16Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Int16Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Int16Property") + } + static class UInt16Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UInt16Property; + +// Class CoreUObject.Int64Property +// 0x0000 (0x0070 - 0x0070) +class UInt64Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Int64Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Int64Property") + } + static class UInt64Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UInt64Property; + +// Class CoreUObject.InterfaceProperty +// 0x0008 (0x0078 - 0x0070) +class UInterfaceProperty final : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InterfaceProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InterfaceProperty") + } + static class UInterfaceProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UInterfaceProperty; + +// Class CoreUObject.LazyObjectProperty +// 0x0000 (0x0078 - 0x0078) +class ULazyObjectProperty final : public UObjectPropertyBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LazyObjectProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LazyObjectProperty") + } + static class ULazyObjectProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_ULazyObjectProperty; + +// Class CoreUObject.MapProperty +// 0x0028 (0x0098 - 0x0070) +class UMapProperty final : public UProperty +{ +public: + uint8 Pad_70[0x28]; // 0x0070(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MapProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MapProperty") + } + static class UMapProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMapProperty; + +// Class CoreUObject.MulticastDelegateProperty +// 0x0008 (0x0078 - 0x0070) +class UMulticastDelegateProperty : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MulticastDelegateProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MulticastDelegateProperty") + } + static class UMulticastDelegateProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMulticastDelegateProperty; + +// Class CoreUObject.MulticastInlineDelegateProperty +// 0x0000 (0x0078 - 0x0078) +class UMulticastInlineDelegateProperty final : public UMulticastDelegateProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MulticastInlineDelegateProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MulticastInlineDelegateProperty") + } + static class UMulticastInlineDelegateProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMulticastInlineDelegateProperty; + +// Class CoreUObject.MulticastSparseDelegateProperty +// 0x0000 (0x0078 - 0x0078) +class UMulticastSparseDelegateProperty final : public UMulticastDelegateProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MulticastSparseDelegateProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MulticastSparseDelegateProperty") + } + static class UMulticastSparseDelegateProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMulticastSparseDelegateProperty; + +// Class CoreUObject.NameProperty +// 0x0000 (0x0070 - 0x0070) +class UNameProperty final : public UProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NameProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NameProperty") + } + static class UNameProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNameProperty; + +// Class CoreUObject.SetProperty +// 0x0020 (0x0090 - 0x0070) +class USetProperty final : public UProperty +{ +public: + uint8 Pad_70[0x20]; // 0x0070(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SetProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SetProperty") + } + static class USetProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USetProperty; + +// Class CoreUObject.SoftObjectProperty +// 0x0000 (0x0078 - 0x0078) +class USoftObjectProperty : public UObjectPropertyBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoftObjectProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoftObjectProperty") + } + static class USoftObjectProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USoftObjectProperty; + +// Class CoreUObject.SoftClassProperty +// 0x0008 (0x0080 - 0x0078) +class USoftClassProperty final : public USoftObjectProperty +{ +public: + uint8 Pad_78[0x8]; // 0x0078(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoftClassProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoftClassProperty") + } + static class USoftClassProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USoftClassProperty; + +// Class CoreUObject.StrProperty +// 0x0000 (0x0070 - 0x0070) +class UStrProperty final : public UProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StrProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StrProperty") + } + static class UStrProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UStrProperty; + +// Class CoreUObject.StructProperty +// 0x0008 (0x0078 - 0x0070) +class UStructProperty final : public UProperty +{ +public: + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StructProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StructProperty") + } + static class UStructProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UStructProperty; + +// Class CoreUObject.UInt16Property +// 0x0000 (0x0070 - 0x0070) +class UUInt16Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UInt16Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UInt16Property") + } + static class UUInt16Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UUInt16Property; + +// Class CoreUObject.UInt32Property +// 0x0000 (0x0070 - 0x0070) +class UUInt32Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UInt32Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UInt32Property") + } + static class UUInt32Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UUInt32Property; + +// Class CoreUObject.UInt64Property +// 0x0000 (0x0070 - 0x0070) +class UUInt64Property final : public UNumericProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UInt64Property") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UInt64Property") + } + static class UUInt64Property* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UUInt64Property; + +// Class CoreUObject.WeakObjectProperty +// 0x0000 (0x0078 - 0x0078) +class UWeakObjectProperty final : public UObjectPropertyBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WeakObjectProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WeakObjectProperty") + } + static class UWeakObjectProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UWeakObjectProperty; + +// Class CoreUObject.TextProperty +// 0x0000 (0x0070 - 0x0070) +class UTextProperty final : public UProperty +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextProperty") + } + static class UTextProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTextProperty; + +// Class CoreUObject.PropertyWrapper +// 0x0008 (0x0030 - 0x0028) +class UPropertyWrapper : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PropertyWrapper") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PropertyWrapper") + } + static class UPropertyWrapper* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPropertyWrapper; + +// Class CoreUObject.MulticastDelegatePropertyWrapper +// 0x0000 (0x0030 - 0x0030) +class UMulticastDelegatePropertyWrapper : public UPropertyWrapper +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MulticastDelegatePropertyWrapper") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MulticastDelegatePropertyWrapper") + } + static class UMulticastDelegatePropertyWrapper* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMulticastDelegatePropertyWrapper; + +// Class CoreUObject.MulticastInlineDelegatePropertyWrapper +// 0x0000 (0x0030 - 0x0030) +class UMulticastInlineDelegatePropertyWrapper final : public UMulticastDelegatePropertyWrapper +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MulticastInlineDelegatePropertyWrapper") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MulticastInlineDelegatePropertyWrapper") + } + static class UMulticastInlineDelegatePropertyWrapper* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMulticastInlineDelegatePropertyWrapper; + +// Class CoreUObject.VerseClass +// 0x0108 (0x0308 - 0x0200) +class UVerseClass final : public UClass +{ +public: + uint32 SolClassFlags; // 0x0200(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_204[0x4]; // 0x0204(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> TaskClasses; // 0x0208(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UFunction* InitInstanceFunction; // 0x0218(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PersistentVars; // 0x0220(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray SessionVars; // 0x0230(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TMap VarAccessors; // 0x0240(0x0050)(NativeAccessSpecifierPublic) + EVerseEffectSet ConstructorEffects; // 0x0290(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_291[0x3]; // 0x0291(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName MangledPackageVersePath; // 0x0294(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29C[0x4]; // 0x029C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString PackageRelativeVersePath; // 0x02A0(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap DisplayNameToUENameFunctionMap; // 0x02B0(0x0050)(NativeAccessSpecifierPublic) + uint8 Pad_300[0x8]; // 0x0300(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VerseClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VerseClass") + } + static class UVerseClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UVerseClass; + +} + diff --git a/TormentedSouls2/SDK/CoreUObject_functions.cpp b/TormentedSouls2/SDK/CoreUObject_functions.cpp new file mode 100644 index 0000000..b63ea63 --- /dev/null +++ b/TormentedSouls2/SDK/CoreUObject_functions.cpp @@ -0,0 +1,217 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: CoreUObject + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" +#include "CoreUObject_parameters.hpp" + + +namespace SDK +{ + +// Predefined Function +// Finds a UObject in the global object array by name, optionally with ECastFlags to reduce heavy string comparison + +class UObject* UObject::FindObjectFastImpl(const std::string& Name, EClassCastFlags RequiredType) +{ + for (int i = 0; i < GObjects->Num(); ++i) + { + UObject* Object = GObjects->GetByIndex(i); + + if (!Object) + continue; + + if (Object->HasTypeFlag(RequiredType) && Object->GetName() == Name) + return Object; + } + + return nullptr; +} + + +// Predefined Function +// Finds a UObject in the global object array by full-name, optionally with ECastFlags to reduce heavy string comparison + +class UObject* UObject::FindObjectImpl(const std::string& FullName, EClassCastFlags RequiredType) +{ + for (int i = 0; i < GObjects->Num(); ++i) + { + UObject* Object = GObjects->GetByIndex(i); + + if (!Object) + continue; + + if (Object->HasTypeFlag(RequiredType) && Object->GetFullName() == FullName) + return Object; + } + + return nullptr; +} + + +// Predefined Function +// Returns the name of this object in the format 'Class Package.Outer.Object' + +std::string UObject::GetFullName() const +{ + if (this && Class) + { + std::string Temp; + + for (UObject* NextOuter = Outer; NextOuter; NextOuter = NextOuter->Outer) + { + Temp = NextOuter->GetName() + "." + Temp; + } + + std::string Name = Class->GetName(); + Name += " "; + Name += Temp; + Name += GetName(); + + return Name; + } + + return "None"; +} + + +// Predefined Function +// Retuns the name of this object + +std::string UObject::GetName() const +{ + return this ? Name.ToString() : "None"; +} + + +// Predefined Function +// Checks Class->FunctionFlags for TypeFlags + +bool UObject::HasTypeFlag(EClassCastFlags TypeFlags) const +{ + return (Class->CastFlags & TypeFlags); +} + + +// Predefined Function +// Checks a UObjects' type by TypeFlags + +bool UObject::IsA(EClassCastFlags TypeFlags) const +{ + return (Class->CastFlags & TypeFlags); +} + + +// Predefined Function +// Checks a UObjects' type by Class name + +bool UObject::IsA(const class FName& ClassName) const +{ + return Class->IsSubclassOf(ClassName); +} + + +// Predefined Function +// Checks a UObjects' type by Class + +bool UObject::IsA(const class UClass* TypeClass) const +{ + return Class->IsSubclassOf(TypeClass); +} + + +// Predefined Function +// Checks whether this object is a classes' default-object + +bool UObject::IsDefaultObject() const +{ + return (Flags & EObjectFlags::ClassDefaultObject); +} + + +// Function CoreUObject.Object.ExecuteUbergraph +// (Event, Public, BlueprintEvent) +// Parameters: +// int32 EntryPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UObject::ExecuteUbergraph(int32 EntryPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Object", "ExecuteUbergraph"); + + Params::Object_ExecuteUbergraph Parms{}; + + Parms.EntryPoint = EntryPoint; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Predefined Function +// Checks if this class has a certain base + +bool UStruct::IsSubclassOf(const UStruct* Base) const +{ + if (!Base) + return false; + + for (const UStruct* Struct = this; Struct; Struct = Struct->Super) + { + if (Struct == Base) + return true; + } + + return false; +} + + +// Predefined Function +// Checks if this class has a certain base + +bool UStruct::IsSubclassOf(const FName& baseClassName) const +{ + if (baseClassName.IsNone()) + return false; + + for (const UStruct* Struct = this; Struct; Struct = Struct->Super) + { + if (Struct->Name == baseClassName) + return true; + } + + return false; +} + + +// Predefined Function +// Gets a UFunction from this UClasses' 'Children' list + +class UFunction* UClass::GetFunction(const char* ClassName, const char* FuncName) const +{ + for(const UStruct* Clss = this; Clss; Clss = Clss->Super) + { + if (Clss->GetName() != ClassName) + continue; + + for (UField* Field = Clss->Children; Field; Field = Field->Next) + { + if(Field->HasTypeFlag(EClassCastFlags::Function) && Field->GetName() == FuncName) + return static_cast(Field); + } + } + + return nullptr; +} + +} + diff --git a/TormentedSouls2/SDK/CoreUObject_parameters.hpp b/TormentedSouls2/SDK/CoreUObject_parameters.hpp new file mode 100644 index 0000000..a1fa3b8 --- /dev/null +++ b/TormentedSouls2/SDK/CoreUObject_parameters.hpp @@ -0,0 +1,27 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: CoreUObject + +#include "Basic.hpp" + + +namespace SDK::Params +{ + +// Function CoreUObject.Object.ExecuteUbergraph +// 0x0004 (0x0004 - 0x0000) +struct Object_ExecuteUbergraph final +{ +public: + int32 EntryPoint; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_Object_ExecuteUbergraph; + +} + diff --git a/TormentedSouls2/SDK/CoreUObject_structs.hpp b/TormentedSouls2/SDK/CoreUObject_structs.hpp new file mode 100644 index 0000000..a229f0a --- /dev/null +++ b/TormentedSouls2/SDK/CoreUObject_structs.hpp @@ -0,0 +1,2851 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: CoreUObject + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum CoreUObject.EAutomationEventType +// NumValues: 0x0004 +enum class EAutomationEventType : uint8 +{ + Info = 0, + Warning = 1, + Error = 2, + EAutomationEventType_MAX = 3, +}; + +// Enum CoreUObject.ERangeBoundTypes +// NumValues: 0x0004 +enum class ERangeBoundTypes : uint8 +{ + Exclusive = 0, + Inclusive = 1, + Open = 2, + ERangeBoundTypes_MAX = 3, +}; + +// Enum CoreUObject.EInterpCurveMode +// NumValues: 0x0007 +enum class EInterpCurveMode : uint8 +{ + CIM_Linear = 0, + CIM_CurveAuto = 1, + CIM_Constant = 2, + CIM_CurveUser = 3, + CIM_CurveBreak = 4, + CIM_CurveAutoClamped = 5, + CIM_MAX = 6, +}; + +// Enum CoreUObject.EInputDeviceConnectionState +// NumValues: 0x0005 +enum class EInputDeviceConnectionState : uint8 +{ + Invalid = 0, + Unknown = 1, + Disconnected = 2, + Connected = 3, + EInputDeviceConnectionState_MAX = 4, +}; + +// Enum CoreUObject.ELocalizedTextSourceCategory +// NumValues: 0x0004 +enum class ELocalizedTextSourceCategory : uint8 +{ + Game = 0, + Engine = 1, + Editor = 2, + ELocalizedTextSourceCategory_MAX = 3, +}; + +// Enum CoreUObject.ELifetimeCondition +// NumValues: 0x0012 +enum class ELifetimeCondition : uint8 +{ + COND_None = 0, + COND_InitialOnly = 1, + COND_OwnerOnly = 2, + COND_SkipOwner = 3, + COND_SimulatedOnly = 4, + COND_AutonomousOnly = 5, + COND_SimulatedOrPhysics = 6, + COND_InitialOrOwner = 7, + COND_Custom = 8, + COND_ReplayOrOwner = 9, + COND_ReplayOnly = 10, + COND_SimulatedOnlyNoReplay = 11, + COND_SimulatedOrPhysicsNoReplay = 12, + COND_SkipReplay = 13, + COND_Dynamic = 14, + COND_Never = 15, + COND_NetGroup = 16, + COND_Max = 17, +}; + +// Enum CoreUObject.EDataValidationUsecase +// NumValues: 0x0007 +enum class EDataValidationUsecase : uint8 +{ + None = 0, + Manual = 1, + Commandlet = 2, + Save = 3, + PreSubmit = 4, + Script = 5, + EDataValidationUsecase_MAX = 6, +}; + +// Enum CoreUObject.ETestInstanceDataObjectBird +// NumValues: 0x0008 +enum class ETestInstanceDataObjectBird : uint8 +{ + TIDOB_None = 0, + TIDOB_Cardinal = 1, + TIDOB_Crow = 2, + TIDOB_Eagle = 3, + TIDOB_Hawk = 4, + TIDOB_Owl = 5, + TIDOB_Raven = 6, + TIDOB_MAX = 7, +}; + +// Enum CoreUObject.ETestInstanceDataObjectGrain +// NumValues: 0x0007 +enum class ETestInstanceDataObjectGrain : uint8 +{ + None = 0, + Barley = 1, + Corn = 2, + Quinoa = 3, + Rice = 4, + Wheat = 5, + ETestInstanceDataObjectGrain_MAX = 6, +}; + +// Enum CoreUObject.ETestInstanceDataObjectGrainAlternate +// NumValues: 0x0006 +enum class ETestInstanceDataObjectGrainAlternate : uint8 +{ + None = 0, + Corn = 1, + Rice = 2, + Rye = 3, + Wheat = 4, + ETestInstanceDataObjectGrainAlternate_MAX = 5, +}; + +// Enum CoreUObject.ETestInstanceDataObjectGrainAlternateEnumClass +// NumValues: 0x0006 +enum class ETestInstanceDataObjectGrainAlternateEnumClass : uint8 +{ + None = 0, + Corn = 1, + Rice = 2, + Rye = 3, + Wheat = 4, + ETestInstanceDataObjectGrainAlternateEnumClass_MAX = 5, +}; + +// Enum CoreUObject.ETestInstanceDataObjectFruit +// NumValues: 0x0006 +enum class ETestInstanceDataObjectFruit : uint8 +{ + None = 0, + Apple = 1, + Banana = 2, + Lemon = 3, + Orange = 4, + ETestInstanceDataObjectFruit_MAX = 5, +}; + +// Enum CoreUObject.ETestInstanceDataObjectFruitAlternate +// NumValues: 0x0006 +enum class ETestInstanceDataObjectFruitAlternate : uint8 +{ + None = 0, + Apple = 1, + Cherry = 2, + Orange = 3, + Pear = 4, + ETestInstanceDataObjectFruitAlternate_MAX = 5, +}; + +// Enum CoreUObject.ETestInstanceDataObjectFruitAlternateNamespace +// NumValues: 0x0006 +enum class ETestInstanceDataObjectFruitAlternateNamespace : uint8 +{ + None = 0, + Apple = 1, + Cherry = 2, + Orange = 3, + Pear = 4, + ETestInstanceDataObjectFruitAlternateNamespace_MAX = 5, +}; + +// Enum CoreUObject.ETestInstanceDataObjectDirection +// NumValues: 0x0006 +enum class ETestInstanceDataObjectDirection : uint16 +{ + None = 0, + North = 1, + East = 2, + South = 4, + West = 8, + ETestInstanceDataObjectDirection_MAX = 16, +}; + +// Enum CoreUObject.ETestInstanceDataObjectDirectionAlternate +// NumValues: 0x0008 +enum class ETestInstanceDataObjectDirectionAlternate : uint16 +{ + None = 0, + Up = 1, + Down = 2, + North = 4, + East = 8, + South = 16, + West = 32, + ETestInstanceDataObjectDirectionAlternate_MAX = 64, +}; + +// Enum CoreUObject.ETestInstanceDataObjectFullFlags +// NumValues: 0x0009 +enum class ETestInstanceDataObjectFullFlags : uint8 +{ + None = 0, + Flag0 = 1, + Flag1 = 2, + Flag2 = 4, + Flag4 = 16, + Flag5 = 32, + Flag6 = 64, + Flag7 = 128, + ETestInstanceDataObjectFullFlags_MAX = 248, +}; + +// Enum CoreUObject.ESearchCase +// NumValues: 0x0003 +enum class ESearchCase : uint8 +{ + CaseSensitive = 0, + IgnoreCase = 1, + ESearchCase_MAX = 2, +}; + +// Enum CoreUObject.ESearchDir +// NumValues: 0x0003 +enum class ESearchDir : uint8 +{ + FromStart = 0, + FromEnd = 1, + ESearchDir_MAX = 2, +}; + +// Enum CoreUObject.ELogTimes +// NumValues: 0x0005 +enum class ELogTimes : uint8 +{ + None = 0, + UTC = 1, + SinceGStartTime = 2, + Local = 3, + ELogTimes_MAX = 4, +}; + +// Enum CoreUObject.EAxis +// NumValues: 0x0005 +enum class EAxis : uint8 +{ + None = 0, + X = 1, + Y = 2, + Z = 3, + EAxis_MAX = 4, +}; + +// Enum CoreUObject.EAxisList +// NumValues: 0x000D +enum class EAxisList : uint8 +{ + None = 0, + X = 1, + Y = 2, + Z = 4, + Screen = 8, + XY = 3, + XZ = 5, + YZ = 6, + XYZ = 7, + All = 15, + ZRotation = 6, + Rotate2D = 8, + EAxisList_MAX = 16, +}; + +// Enum CoreUObject.EPixelFormat +// NumValues: 0x005E +enum class EPixelFormat : uint8 +{ + PF_Unknown = 0, + PF_A32B32G32R32F = 1, + PF_B8G8R8A8 = 2, + PF_G8 = 3, + PF_G16 = 4, + PF_DXT1 = 5, + PF_DXT3 = 6, + PF_DXT5 = 7, + PF_UYVY = 8, + PF_FloatRGB = 9, + PF_FloatRGBA = 10, + PF_DepthStencil = 11, + PF_ShadowDepth = 12, + PF_R32_FLOAT = 13, + PF_G16R16 = 14, + PF_G16R16F = 15, + PF_G16R16F_FILTER = 16, + PF_G32R32F = 17, + PF_A2B10G10R10 = 18, + PF_A16B16G16R16 = 19, + PF_D24 = 20, + PF_R16F = 21, + PF_R16F_FILTER = 22, + PF_BC5 = 23, + PF_V8U8 = 24, + PF_A1 = 25, + PF_FloatR11G11B10 = 26, + PF_A8 = 27, + PF_R32_UINT = 28, + PF_R32_SINT = 29, + PF_PVRTC2 = 30, + PF_PVRTC4 = 31, + PF_R16_UINT = 32, + PF_R16_SINT = 33, + PF_R16G16B16A16_UINT = 34, + PF_R16G16B16A16_SINT = 35, + PF_R5G6B5_UNORM = 36, + PF_R8G8B8A8 = 37, + PF_A8R8G8B8 = 38, + PF_BC4 = 39, + PF_R8G8 = 40, + PF_ATC_RGB = 41, + PF_ATC_RGBA_E = 42, + PF_ATC_RGBA_I = 43, + PF_X24_G8 = 44, + PF_ETC1 = 45, + PF_ETC2_RGB = 46, + PF_ETC2_RGBA = 47, + PF_R32G32B32A32_UINT = 48, + PF_R16G16_UINT = 49, + PF_ASTC_4x4 = 50, + PF_ASTC_6x6 = 51, + PF_ASTC_8x8 = 52, + PF_ASTC_10x10 = 53, + PF_ASTC_12x12 = 54, + PF_BC6H = 55, + PF_BC7 = 56, + PF_R8_UINT = 57, + PF_L8 = 58, + PF_XGXR8 = 59, + PF_R8G8B8A8_UINT = 60, + PF_R8G8B8A8_SNORM = 61, + PF_R16G16B16A16_UNORM = 62, + PF_R16G16B16A16_SNORM = 63, + PF_PLATFORM_HDR_0 = 64, + PF_PLATFORM_HDR_1 = 65, + PF_PLATFORM_HDR_2 = 66, + PF_NV12 = 67, + PF_R32G32_UINT = 68, + PF_ETC2_R11_EAC = 69, + PF_ETC2_RG11_EAC = 70, + PF_R8 = 71, + PF_B5G5R5A1_UNORM = 72, + PF_ASTC_4x4_HDR = 73, + PF_ASTC_6x6_HDR = 74, + PF_ASTC_8x8_HDR = 75, + PF_ASTC_10x10_HDR = 76, + PF_ASTC_12x12_HDR = 77, + PF_G16R16_SNORM = 78, + PF_R8G8_UINT = 79, + PF_R32G32B32_UINT = 80, + PF_R32G32B32_SINT = 81, + PF_R32G32B32F = 82, + PF_R8_SINT = 83, + PF_R64_UINT = 84, + PF_R9G9B9EXP5 = 85, + PF_P010 = 86, + PF_ASTC_4x4_NORM_RG = 87, + PF_ASTC_6x6_NORM_RG = 88, + PF_ASTC_8x8_NORM_RG = 89, + PF_ASTC_10x10_NORM_RG = 90, + PF_ASTC_12x12_NORM_RG = 91, + PF_R16G16_SINT = 92, + PF_MAX_0 = 93, +}; + +// Enum CoreUObject.EMouseCursor +// NumValues: 0x0010 +enum class EMouseCursor : uint8 +{ + None = 0, + Default = 1, + TextEditBeam = 2, + ResizeLeftRight = 3, + ResizeUpDown = 4, + ResizeSouthEast = 5, + ResizeSouthWest = 6, + CardinalCross = 7, + Crosshairs = 8, + Hand = 9, + GrabHand = 10, + GrabHandClosed = 11, + SlashedCircle = 12, + EyeDropper = 13, + Custom = 14, + EMouseCursor_MAX = 15, +}; + +// Enum CoreUObject.EUnit +// NumValues: 0x004D +enum class EUnit : uint8 +{ + Micrometers = 0, + Millimeters = 1, + Centimeters = 2, + Meters = 3, + Kilometers = 4, + Inches = 5, + Feet = 6, + Yards = 7, + Miles = 8, + Lightyears = 9, + Degrees = 10, + Radians = 11, + CentimetersPerSecond = 12, + MetersPerSecond = 13, + KilometersPerHour = 14, + MilesPerHour = 15, + DegreesPerSecond = 16, + RadiansPerSecond = 17, + CentimetersPerSecondSquared = 18, + MetersPerSecondSquared = 19, + Celsius = 20, + Farenheit = 21, + Kelvin = 22, + Micrograms = 23, + Milligrams = 24, + Grams = 25, + Kilograms = 26, + MetricTons = 27, + Ounces = 28, + Pounds = 29, + Stones = 30, + GramsPerCubicCentimeter = 31, + GramsPerCubicMeter = 32, + KilogramsPerCubicCentimeter = 33, + KilogramsPerCubicMeter = 34, + Newtons = 35, + PoundsForce = 36, + KilogramsForce = 37, + KilogramCentimetersPerSecondSquared = 38, + NewtonMeters = 39, + KilogramCentimetersSquaredPerSecondSquared = 40, + NewtonSeconds = 41, + KilogramCentimeters = 42, + KilogramMeters = 43, + Hertz = 44, + Kilohertz = 45, + Megahertz = 46, + Gigahertz = 47, + RevolutionsPerMinute = 48, + Bytes = 49, + Kilobytes = 50, + Megabytes = 51, + Gigabytes = 52, + Terabytes = 53, + Lumens = 54, + Candela = 55, + Lux = 56, + CandelaPerMeter2 = 57, + ExposureValue = 58, + Nanoseconds = 59, + Microseconds = 60, + Milliseconds = 61, + Seconds = 62, + Minutes = 63, + Hours = 64, + Days = 65, + Months = 66, + Years = 67, + PixelsPerInch = 68, + Percentage = 69, + Multiplier = 70, + Pascals = 71, + KiloPascals = 72, + MegaPascals = 73, + GigaPascals = 74, + Unspecified = 75, + EUnit_MAX = 76, +}; + +// Enum CoreUObject.EPropertyAccessChangeNotifyMode +// NumValues: 0x0004 +enum class EPropertyAccessChangeNotifyMode : uint8 +{ + Default = 0, + Never = 1, + Always = 2, + EPropertyAccessChangeNotifyMode_MAX = 3, +}; + +// Enum CoreUObject.EAppMsgCategory +// NumValues: 0x0005 +enum class EAppMsgCategory : uint8 +{ + Warning = 0, + Error = 1, + Success = 2, + Info = 3, + EAppMsgCategory_MAX = 4, +}; + +// Enum CoreUObject.EAppReturnType +// NumValues: 0x0009 +enum class EAppReturnType : uint8 +{ + No = 0, + Yes = 1, + YesAll = 2, + NoAll = 3, + Cancel = 4, + Ok = 5, + Retry = 6, + Continue = 7, + EAppReturnType_MAX = 8, +}; + +// Enum CoreUObject.EAppMsgType +// NumValues: 0x0009 +enum class EAppMsgType : uint8 +{ + Ok = 0, + YesNo = 1, + OkCancel = 2, + YesNoCancel = 3, + CancelRetryContinue = 4, + YesNoYesAllNoAll = 5, + YesNoYesAllNoAllCancel = 6, + YesNoYesAll = 7, + EAppMsgType_MAX = 8, +}; + +// Enum CoreUObject.EInputDeviceTriggerMask +// NumValues: 0x0005 +enum class EInputDeviceTriggerMask : uint8 +{ + None = 0, + Left = 1, + Right = 2, + All = 3, + EInputDeviceTriggerMask_MAX = 4, +}; + +// Enum CoreUObject.EInputDeviceAnalogStickMask +// NumValues: 0x0004 +enum class EInputDeviceAnalogStickMask : uint8 +{ + None = 0, + Left = 1, + Right = 2, + EInputDeviceAnalogStickMask_MAX = 3, +}; + +// Enum CoreUObject.EDataValidationResult +// NumValues: 0x0004 +enum class EDataValidationResult : uint8 +{ + Invalid = 0, + Valid = 1, + NotValidated = 2, + EDataValidationResult_MAX = 3, +}; + +// Enum CoreUObject.EOverriddenPropertyOperation +// NumValues: 0x0006 +enum class EOverriddenPropertyOperation : uint8 +{ + None = 0, + Modified = 1, + Replace = 2, + Add = 3, + Remove = 4, + EOverriddenPropertyOperation_MAX = 5, +}; + +// Enum CoreUObject.EFallbackEnum +// NumValues: 0x0001 +enum class EFallbackEnum : uint8 +{ + EFallbackEnum_MAX = 1, +}; + +// Enum CoreUObject.EUserDefinedStructureStatus +// NumValues: 0x0005 +enum class EUserDefinedStructureStatus : uint8 +{ + UDSS_UpToDate = 0, + UDSS_Dirty = 1, + UDSS_Error = 2, + UDSS_Duplicate = 3, + UDSS_MAX = 4, +}; + +// Enum CoreUObject.EVersePackageScope +// NumValues: 0x0005 +enum class EVersePackageScope : uint8 +{ + PublicAPI = 0, + InternalAPI = 1, + PublicUser = 2, + InternalUser = 3, + EVersePackageScope_MAX = 4, +}; + +// Enum CoreUObject.EVersePackageType +// NumValues: 0x0005 +enum class EVersePackageType : uint8 +{ + VNI = 0, + Content = 1, + PublishedContent = 2, + Assets = 3, + EVersePackageType_MAX = 4, +}; + +// Enum CoreUObject.EVerseEnumFlags +// NumValues: 0x0003 +enum class EVerseEnumFlags : uint32 +{ + None = 0, + NativeBound = 1, + EVerseEnumFlags_MAX = 2, +}; + +// Enum CoreUObject.EVerseFalse +// NumValues: 0x0002 +enum class EVerseFalse : uint8 +{ + Value = 0, + EVerseFalse_MAX = 1, +}; + +// Enum CoreUObject.EVerseTrue +// NumValues: 0x0002 +enum class EVerseTrue : uint8 +{ + Value = 0, + EVerseTrue_MAX = 1, +}; + +// Enum CoreUObject.EPropertyBagPropertyType +// NumValues: 0x0014 +enum class EPropertyBagPropertyType : uint8 +{ + None = 0, + Bool = 1, + Byte = 2, + Int32 = 3, + Int64 = 4, + Float = 5, + Double = 6, + Name = 7, + String = 8, + Text = 9, + Enum = 10, + Struct = 11, + Object = 12, + SoftObject = 13, + Class = 14, + SoftClass = 15, + UInt32 = 16, + UInt64 = 17, + Count = 18, + EPropertyBagPropertyType_MAX = 19, +}; + +// Enum CoreUObject.EPropertyBagContainerType +// NumValues: 0x0005 +enum class EPropertyBagContainerType : uint8 +{ + None = 0, + Array = 1, + Set = 2, + Count = 3, + EPropertyBagContainerType_MAX = 4, +}; + +// Enum CoreUObject.EPropertyBagResult +// NumValues: 0x0006 +enum class EPropertyBagResult : uint8 +{ + Success = 0, + TypeMismatch = 1, + OutOfBounds = 2, + PropertyNotFound = 3, + DuplicatedValue = 4, + EPropertyBagResult_MAX = 5, +}; + +// Enum CoreUObject.EPropertyBagMissingEnum +// NumValues: 0x0002 +enum class EPropertyBagMissingEnum : uint8 +{ + Missing = 0, + EPropertyBagMissingEnum_MAX = 1, +}; + +// Enum CoreUObject.EVerseEffectSet +// NumValues: 0x0009 +enum class EVerseEffectSet : uint8 +{ + None = 0, + Suspends = 1, + Decides = 2, + Diverges = 4, + Reads = 8, + Writes = 16, + Allocates = 32, + NoRollback = 64, + EVerseEffectSet_MAX = 128, +}; + +// ScriptStruct CoreUObject.Vector +// 0x0018 (0x0018 - 0x0000) +struct FVector +{ +public: + using UnderlayingType = double; + + double X; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + constexpr FVector(UnderlayingType X = 0, UnderlayingType Y = 0, UnderlayingType Z = 0) + : X(X), Y(Y), Z(Z) + { + } + constexpr FVector(const FVector& other) + : X(other.X), Y(other.Y), Z(other.Z) + { + } + FVector& Normalize() + { + *this /= Magnitude(); + + return *this; + } + FVector& operator*=(UnderlayingType Scalar) + { + *this = *this * Scalar; + + return *this; + } + FVector& operator*=(const FVector& Other) + { + *this = *this * Other; + + return *this; + } + FVector& operator+=(const FVector& Other) + { + *this = *this + Other; + + return *this; + } + FVector& operator-=(const FVector& Other) + { + *this = *this - Other; + + return *this; + } + FVector& operator/=(UnderlayingType Scalar) + { + *this = *this / Scalar; + + return *this; + } + FVector& operator/=(const FVector& Other) + { + *this = *this / Other; + + return *this; + } + FVector& operator=(const FVector& other) + { + X = other.X; + Y = other.Y; + Z = other.Z; + + return *this; + } + + UnderlayingType Dot(const FVector& Other) const + { + return (X * Other.X) + (Y * Other.Y) + (Z * Other.Z); + } + UnderlayingType GetDistanceTo(const FVector& Other) const + { + FVector DiffVector = Other - *this; + + return DiffVector.Magnitude(); + } + UnderlayingType GetDistanceToInMeters(const FVector& Other) const + { + return GetDistanceTo(Other) * static_cast(0.01); + } + FVector GetNormalized() const + { + return *this / Magnitude(); + } + bool IsZero() const + { + return X == 0 && Y == 0 && Z == 0; + } + UnderlayingType Magnitude() const + { + return std::sqrt((X * X) + (Y * Y) + (Z * Z)); + } + bool operator!=(const FVector& Other) const + { + return X != Other.X || Y != Other.Y || Z != Other.Z; + } + FVector operator*(UnderlayingType Scalar) const + { + return { X * Scalar, Y * Scalar, Z * Scalar }; + } + FVector operator*(const FVector& Other) const + { + return { X * Other.X, Y * Other.Y, Z * Other.Z }; + } + FVector operator+(const FVector& Other) const + { + return { X + Other.X, Y + Other.Y, Z + Other.Z }; + } + FVector operator-(const FVector& Other) const + { + return { X - Other.X, Y - Other.Y, Z - Other.Z }; + } + FVector operator/(UnderlayingType Scalar) const + { + if (Scalar == 0) + return *this; + + return { X / Scalar, Y / Scalar, Z / Scalar }; + } + FVector operator/(const FVector& Other) const + { + if (Other.X == 0 || Other.Y == 0 || Other.Z == 0) + return *this; + + return { X / Other.X, Y / Other.Y, Z / Other.Z }; + } + bool operator==(const FVector& Other) const + { + return X == Other.X && Y == Other.Y && Z == Other.Z; + } +}; +DUMPER7_ASSERTS_FVector; + +// ScriptStruct CoreUObject.InterpCurvePointVector +// 0x0058 (0x0058 - 0x0000) +struct FInterpCurvePointVector final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OutVal; // 0x0008(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ArriveTangent; // 0x0020(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LeaveTangent; // 0x0038(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0050(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointVector; + +// ScriptStruct CoreUObject.TopLevelAssetPath +// 0x0010 (0x0010 - 0x0000) +struct FTopLevelAssetPath final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName AssetName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FTopLevelAssetPath; + +// ScriptStruct CoreUObject.SoftObjectPath +// 0x0020 (0x0020 - 0x0000) +struct FSoftObjectPath +{ +public: + struct FTopLevelAssetPath AssetPath; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SubPathString; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSoftObjectPath; + +// ScriptStruct CoreUObject.ARFilter +// 0x0150 (0x0150 - 0x0000) +struct FARFilter final +{ +public: + TArray PackageNames; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, NativeAccessSpecifierPublic) + TArray PackagePaths; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, NativeAccessSpecifierPublic) + TArray SoftObjectPaths; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, NativeAccessSpecifierPublic) + TArray ClassNames; // 0x0030(0x0010)(BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ClassPaths; // 0x0040(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, NativeAccessSpecifierPublic) + uint8 Pad_50[0x50]; // 0x0050(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + TSet RecursiveClassesExclusionSet; // 0x00A0(0x0050)(BlueprintVisible, NativeAccessSpecifierPublic) + TSet RecursiveClassPathsExclusionSet; // 0x00F0(0x0050)(Edit, BlueprintVisible, DisableEditOnInstance, NativeAccessSpecifierPublic) + bool bRecursivePaths; // 0x0140(0x0001)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecursiveClasses; // 0x0141(0x0001)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeOnlyOnDiskAssets; // 0x0142(0x0001)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_143[0xD]; // 0x0143(0x000D)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FARFilter; + +// ScriptStruct CoreUObject.Vector2D +// 0x0010 (0x0010 - 0x0000) +struct FVector2D final +{ +public: + using UnderlayingType = double; + + double X; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + constexpr FVector2D(UnderlayingType X = 0, UnderlayingType Y = 0) + : X(X), Y(Y) + { + } + constexpr FVector2D(const FVector2D& other) + : X(other.X), Y(other.Y) + { + } + FVector2D& Normalize() + { + *this /= Magnitude(); + + return *this; + } + FVector2D& operator*=(UnderlayingType Scalar) + { + *this = *this * Scalar; + + return *this; + } + FVector2D& operator*=(const FVector2D& Other) + { + *this = *this * Other; + + return *this; + } + FVector2D& operator+=(const FVector2D& Other) + { + *this = *this + Other; + + return *this; + } + FVector2D& operator-=(const FVector2D& Other) + { + *this = *this - Other; + + return *this; + } + FVector2D& operator/=(UnderlayingType Scalar) + { + *this = *this / Scalar; + + return *this; + } + FVector2D& operator/=(const FVector2D& Other) + { + *this = *this / Other; + + return *this; + } + FVector2D& operator=(const FVector2D& other) + { + X = other.X; + Y = other.Y; + + return *this; + } + + UnderlayingType Dot(const FVector2D& Other) const + { + return (X * Other.X) + (Y * Other.Y); + } + UnderlayingType GetDistanceTo(const FVector2D& Other) const + { + FVector2D DiffVector = Other - *this; + + return DiffVector.Magnitude(); + } + FVector2D GetNormalized() const + { + return *this / Magnitude(); + } + bool IsZero() const + { + return X == 0 && Y == 0; + } + UnderlayingType Magnitude() const + { + return std::sqrt((X * X) + (Y * Y)); + } + bool operator!=(const FVector2D& Other) const + { + return X != Other.X || Y != Other.Y; + } + FVector2D operator*(UnderlayingType Scalar) const + { + return { X * Scalar, Y * Scalar }; + } + FVector2D operator*(const FVector2D& Other) const + { + return { X * Other.X, Y * Other.Y }; + } + FVector2D operator+(const FVector2D& Other) const + { + return { X + Other.X, Y + Other.Y }; + } + FVector2D operator-(const FVector2D& Other) const + { + return { X - Other.X, Y - Other.Y }; + } + FVector2D operator/(UnderlayingType Scalar) const + { + if (Scalar == 0) + return *this; + + return { X / Scalar, Y / Scalar }; + } + FVector2D operator/(const FVector2D& Other) const + { + if (Other.X == 0 || Other.Y == 0) + return *this; + + return { X / Other.X, Y / Other.Y }; + } + bool operator==(const FVector2D& Other) const + { + return X == Other.X && Y == Other.Y; + } +}; +DUMPER7_ASSERTS_FVector2D; + +// ScriptStruct CoreUObject.InterpCurvePointVector2D +// 0x0040 (0x0040 - 0x0000) +struct FInterpCurvePointVector2D final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D OutVal; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ArriveTangent; // 0x0018(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D LeaveTangent; // 0x0028(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0038(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointVector2D; + +// ScriptStruct CoreUObject.Quat +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x10) FQuat final +{ +public: + double X; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FQuat; + +// ScriptStruct CoreUObject.InterpCurvePointQuat +// 0x0080 (0x0080 - 0x0000) +struct FInterpCurvePointQuat final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat OutVal; // 0x0010(0x0020)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ArriveTangent; // 0x0030(0x0020)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat LeaveTangent; // 0x0050(0x0020)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0070(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointQuat; + +// ScriptStruct CoreUObject.InterpCurveQuat +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveQuat final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveQuat; + +// ScriptStruct CoreUObject.TwoVectors +// 0x0030 (0x0030 - 0x0000) +struct FTwoVectors final +{ +public: + struct FVector v1; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector v2; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTwoVectors; + +// ScriptStruct CoreUObject.InterpCurvePointTwoVectors +// 0x00A0 (0x00A0 - 0x0000) +struct FInterpCurvePointTwoVectors final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTwoVectors OutVal; // 0x0008(0x0030)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FTwoVectors ArriveTangent; // 0x0038(0x0030)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FTwoVectors LeaveTangent; // 0x0068(0x0030)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0098(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointTwoVectors; + +// ScriptStruct CoreUObject.InterpCurveTwoVectors +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveTwoVectors final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveTwoVectors; + +// ScriptStruct CoreUObject.AssetBundleEntry +// 0x0018 (0x0018 - 0x0000) +struct FAssetBundleEntry final +{ +public: + class FName BundleName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray AssetPaths; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FAssetBundleEntry; + +// ScriptStruct CoreUObject.AssetBundleData +// 0x0010 (0x0010 - 0x0000) +struct FAssetBundleData final +{ +public: + TArray Bundles; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FAssetBundleData; + +// ScriptStruct CoreUObject.AssetData +// 0x0068 (0x0068 - 0x0000) +struct alignas(0x08) FAssetData final +{ +public: + class FName PackageName; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PackagePath; // 0x0008(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AssetName; // 0x0010(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AssetClass; // 0x0018(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath AssetClassPath; // 0x0020(0x0010)(BlueprintVisible, BlueprintReadOnly, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30[0x38]; // 0x0030(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FAssetData; + +// ScriptStruct CoreUObject.Guid +// 0x0010 (0x0010 - 0x0000) +struct FGuid final +{ +public: + int32 A; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 C; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 D; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FGuid; + +// ScriptStruct CoreUObject.AutomationEvent +// 0x0038 (0x0038 - 0x0000) +struct FAutomationEvent final +{ +public: + EAutomationEventType Type; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Message; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Context; // 0x0018(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid Artifact; // 0x0028(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FAutomationEvent; + +// ScriptStruct CoreUObject.DateTime +// 0x0008 (0x0008 - 0x0000) +struct FDateTime final +{ +public: + int64 Ticks; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FDateTime; + +// ScriptStruct CoreUObject.AutomationExecutionEntry +// 0x0058 (0x0058 - 0x0000) +struct FAutomationExecutionEntry final +{ +public: + struct FAutomationEvent Event; // 0x0000(0x0038)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Filename; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LineNumber; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDateTime Timestamp; // 0x0050(0x0008)(ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FAutomationExecutionEntry; + +// ScriptStruct CoreUObject.Box +// 0x0038 (0x0038 - 0x0000) +struct FBox final +{ +public: + struct FVector Min; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Max; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IsValid; // 0x0030(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBox; + +// ScriptStruct CoreUObject.Box2D +// 0x0028 (0x0028 - 0x0000) +struct FBox2D final +{ +public: + struct FVector2D Min; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Max; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsValid; // 0x0020(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBox2D; + +// ScriptStruct CoreUObject.Vector2f +// 0x0008 (0x0008 - 0x0000) +struct FVector2f +{ +public: + float X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector2f; + +// ScriptStruct CoreUObject.Box2f +// 0x0014 (0x0014 - 0x0000) +struct FBox2f final +{ +public: + struct FVector2f Min; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2f Max; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsValid; // 0x0010(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBox2f; + +// ScriptStruct CoreUObject.Vector3d +// 0x0018 (0x0018 - 0x0000) +struct FVector3d +{ +public: + double X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector3d; + +// ScriptStruct CoreUObject.Box3d +// 0x0038 (0x0038 - 0x0000) +struct FBox3d final +{ +public: + struct FVector3d Min; // 0x0000(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3d Max; // 0x0018(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IsValid; // 0x0030(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBox3d; + +// ScriptStruct CoreUObject.Vector3f +// 0x000C (0x000C - 0x0000) +struct FVector3f +{ +public: + float X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector3f; + +// ScriptStruct CoreUObject.Box3f +// 0x001C (0x001C - 0x0000) +struct FBox3f final +{ +public: + struct FVector3f Min; // 0x0000(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f Max; // 0x000C(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IsValid; // 0x0018(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBox3f; + +// ScriptStruct CoreUObject.BoxSphereBounds +// 0x0038 (0x0038 - 0x0000) +struct FBoxSphereBounds final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double SphereRadius; // 0x0030(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FBoxSphereBounds; + +// ScriptStruct CoreUObject.BoxSphereBounds3d +// 0x0038 (0x0038 - 0x0000) +struct FBoxSphereBounds3d final +{ +public: + struct FVector3d Origin; // 0x0000(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3d BoxExtent; // 0x0018(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double SphereRadius; // 0x0030(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FBoxSphereBounds3d; + +// ScriptStruct CoreUObject.BoxSphereBounds3f +// 0x001C (0x001C - 0x0000) +struct FBoxSphereBounds3f final +{ +public: + struct FVector3f Origin; // 0x0000(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f BoxExtent; // 0x000C(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0018(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FBoxSphereBounds3f; + +// ScriptStruct CoreUObject.Color +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FColor final +{ +public: + uint8 B; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 G; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 R; // 0x0002(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 A; // 0x0003(0x0001)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FColor; + +// ScriptStruct CoreUObject.DirectoryPath +// 0x0010 (0x0010 - 0x0000) +struct FDirectoryPath final +{ +public: + class FString Path; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FDirectoryPath; + +// ScriptStruct CoreUObject.DoubleRangeBound +// 0x0010 (0x0010 - 0x0000) +struct FDoubleRangeBound final +{ +public: + ERangeBoundTypes Type; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + double Value; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FDoubleRangeBound; + +// ScriptStruct CoreUObject.DoubleRange +// 0x0020 (0x0020 - 0x0000) +struct FDoubleRange final +{ +public: + struct FDoubleRangeBound LowerBound; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FDoubleRangeBound UpperBound; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FDoubleRange; + +// ScriptStruct CoreUObject.FallbackStruct +// 0x0001 (0x0001 - 0x0000) +struct FFallbackStruct final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FFallbackStruct; + +// ScriptStruct CoreUObject.FilePath +// 0x0010 (0x0010 - 0x0000) +struct FFilePath final +{ +public: + class FString FilePath; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFilePath; + +// ScriptStruct CoreUObject.FloatInterval +// 0x0008 (0x0008 - 0x0000) +struct FFloatInterval final +{ +public: + float Min; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Max; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFloatInterval; + +// ScriptStruct CoreUObject.SharedStruct +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FSharedStruct final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FSharedStruct; + +// ScriptStruct CoreUObject.FloatRangeBound +// 0x0008 (0x0008 - 0x0000) +struct FFloatRangeBound final +{ +public: + ERangeBoundTypes Type; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Value; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFloatRangeBound; + +// ScriptStruct CoreUObject.FloatRange +// 0x0010 (0x0010 - 0x0000) +struct FFloatRange final +{ +public: + struct FFloatRangeBound LowerBound; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FFloatRangeBound UpperBound; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFloatRange; + +// ScriptStruct CoreUObject.FreezablePerPlatformInt +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FFreezablePerPlatformInt final +{ +public: + uint8 Pad_0[0x4]; // 0x0000(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FFreezablePerPlatformInt; + +// ScriptStruct CoreUObject.FrameNumber +// 0x0004 (0x0004 - 0x0000) +struct FFrameNumber final +{ +public: + int32 Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFrameNumber; + +// ScriptStruct CoreUObject.FrameNumberRangeBound +// 0x0008 (0x0008 - 0x0000) +struct FFrameNumberRangeBound final +{ +public: + ERangeBoundTypes Type; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FFrameNumber Value; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFrameNumberRangeBound; + +// ScriptStruct CoreUObject.FrameNumberRange +// 0x0010 (0x0010 - 0x0000) +struct FFrameNumberRange final +{ +public: + struct FFrameNumberRangeBound LowerBound; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FFrameNumberRangeBound UpperBound; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFrameNumberRange; + +// ScriptStruct CoreUObject.FrameRate +// 0x0008 (0x0008 - 0x0000) +struct FFrameRate +{ +public: + int32 Numerator; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Denominator; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFrameRate; + +// ScriptStruct CoreUObject.FrameTime +// 0x0008 (0x0008 - 0x0000) +struct FFrameTime final +{ +public: + struct FFrameNumber FrameNumber; // 0x0000(0x0004)(BlueprintVisible, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubFrame; // 0x0004(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFrameTime; + +// ScriptStruct CoreUObject.InputDeviceId +// 0x0004 (0x0004 - 0x0000) +struct FInputDeviceId final +{ +public: + int32 InternalId; // 0x0000(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FInputDeviceId; + +// ScriptStruct CoreUObject.Int32Interval +// 0x0008 (0x0008 - 0x0000) +struct FInt32Interval final +{ +public: + int32 Min; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Max; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt32Interval; + +// ScriptStruct CoreUObject.Int32Point +// 0x0008 (0x0008 - 0x0000) +struct FInt32Point final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt32Point; + +// ScriptStruct CoreUObject.Int32RangeBound +// 0x0008 (0x0008 - 0x0000) +struct FInt32RangeBound final +{ +public: + ERangeBoundTypes Type; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Value; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FInt32RangeBound; + +// ScriptStruct CoreUObject.Int32Range +// 0x0010 (0x0010 - 0x0000) +struct FInt32Range final +{ +public: + struct FInt32RangeBound LowerBound; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FInt32RangeBound UpperBound; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FInt32Range; + +// ScriptStruct CoreUObject.ObjectCookedMetaDataStore +// 0x0050 (0x0050 - 0x0000) +struct FObjectCookedMetaDataStore final +{ +public: + TMap ObjectMetaData; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FObjectCookedMetaDataStore; + +// ScriptStruct CoreUObject.FieldCookedMetaDataStore +// 0x0050 (0x0050 - 0x0000) +struct FFieldCookedMetaDataStore final +{ +public: + TMap FieldMetaData; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFieldCookedMetaDataStore; + +// ScriptStruct CoreUObject.StructCookedMetaDataStore +// 0x00A0 (0x00A0 - 0x0000) +struct FStructCookedMetaDataStore final +{ +public: + struct FObjectCookedMetaDataStore ObjectMetaData; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) + TMap PropertiesMetaData; // 0x0050(0x0050)(NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FStructCookedMetaDataStore; + +// ScriptStruct CoreUObject.Int32Rect +// 0x0010 (0x0010 - 0x0000) +struct FInt32Rect final +{ +public: + struct FInt32Point Min; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInt32Point Max; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FInt32Rect; + +// ScriptStruct CoreUObject.Int32Vector +// 0x000C (0x000C - 0x0000) +struct FInt32Vector final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt32Vector; + +// ScriptStruct CoreUObject.Int32Vector2 +// 0x0008 (0x0008 - 0x0000) +struct FInt32Vector2 final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt32Vector2; + +// ScriptStruct CoreUObject.Int32Vector4 +// 0x0010 (0x0010 - 0x0000) +struct FInt32Vector4 final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt32Vector4; + +// ScriptStruct CoreUObject.Int64Point +// 0x0010 (0x0010 - 0x0000) +struct FInt64Point final +{ +public: + int64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt64Point; + +// ScriptStruct CoreUObject.Int64Rect +// 0x0020 (0x0020 - 0x0000) +struct FInt64Rect final +{ +public: + struct FInt64Point min_0; // 0x0000(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInt64Point max_0; // 0x0010(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FInt64Rect; + +// ScriptStruct CoreUObject.OverriddenPropertyNodeID +// 0x0010 (0x0010 - 0x0000) +struct FOverriddenPropertyNodeID final +{ +public: + class FName Path; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Object; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FOverriddenPropertyNodeID; + +// ScriptStruct CoreUObject.OverriddenPropertyNode +// 0x0068 (0x0068 - 0x0000) +struct FOverriddenPropertyNode final +{ +public: + struct FOverriddenPropertyNodeID NodeID; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EOverriddenPropertyOperation Operation; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TMap SubPropertyNodeKeys; // 0x0018(0x0050)(NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FOverriddenPropertyNode; + +// ScriptStruct CoreUObject.OverriddenPropertySet +// 0x0060 (0x0060 - 0x0000) +struct FOverriddenPropertySet final +{ +public: + class UObject* Owner; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSet OverriddenPropertyNodes; // 0x0008(0x0050)(NativeAccessSpecifierPrivate) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FOverriddenPropertySet; + +// ScriptStruct CoreUObject.Int64Vector +// 0x0018 (0x0018 - 0x0000) +struct FInt64Vector final +{ +public: + int64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt64Vector; + +// ScriptStruct CoreUObject.Int64Vector2 +// 0x0010 (0x0010 - 0x0000) +struct FInt64Vector2 final +{ +public: + int64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt64Vector2; + +// ScriptStruct CoreUObject.Int64Vector4 +// 0x0020 (0x0020 - 0x0000) +struct FInt64Vector4 final +{ +public: + int64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInt64Vector4; + +// ScriptStruct CoreUObject.InterpCurvePointFloat +// 0x0014 (0x0014 - 0x0000) +struct FInterpCurvePointFloat final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutVal; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArriveTangent; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LeaveTangent; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointFloat; + +// ScriptStruct CoreUObject.InterpCurveFloat +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveFloat final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveFloat; + +// ScriptStruct CoreUObject.LinearColor +// 0x0010 (0x0010 - 0x0000) +struct FLinearColor final +{ +public: + float R; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float G; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float B; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FLinearColor; + +// ScriptStruct CoreUObject.InterpCurvePointLinearColor +// 0x0038 (0x0038 - 0x0000) +struct FInterpCurvePointLinearColor final +{ +public: + float InVal; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor OutVal; // 0x0004(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ArriveTangent; // 0x0014(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LeaveTangent; // 0x0024(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpCurveMode InterpMode; // 0x0034(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInterpCurvePointLinearColor; + +// ScriptStruct CoreUObject.InterpCurveLinearColor +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveLinearColor final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveLinearColor; + +// ScriptStruct CoreUObject.PropertyTextFName +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FPropertyTextFName final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FPropertyTextFName; + +// ScriptStruct CoreUObject.InterpCurveVector +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveVector final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveVector; + +// ScriptStruct CoreUObject.InterpCurveVector2D +// 0x0018 (0x0018 - 0x0000) +struct FInterpCurveVector2D final +{ +public: + TArray Points; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsLooped; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopKeyOffset; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FInterpCurveVector2D; + +// ScriptStruct CoreUObject.IntPoint +// 0x0008 (0x0008 - 0x0000) +struct FIntPoint final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FIntPoint; + +// ScriptStruct CoreUObject.IntRect +// 0x0010 (0x0010 - 0x0000) +struct FIntRect final +{ +public: + struct FIntPoint min_0; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint max_0; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FIntRect; + +// ScriptStruct CoreUObject.IntVector +// 0x000C (0x000C - 0x0000) +struct FIntVector final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Z; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FIntVector; + +// ScriptStruct CoreUObject.IntVector2 +// 0x0008 (0x0008 - 0x0000) +struct FIntVector2 final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FIntVector2; + +// ScriptStruct CoreUObject.IntVector4 +// 0x0010 (0x0010 - 0x0000) +struct FIntVector4 final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Z; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 W; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FIntVector4; + +// ScriptStruct CoreUObject.Plane +// 0x0008 (0x0020 - 0x0018) +struct alignas(0x10) FPlane final : public FVector +{ +public: + double W; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPlane; + +// ScriptStruct CoreUObject.Matrix +// 0x0080 (0x0080 - 0x0000) +struct FMatrix final +{ +public: + struct FPlane XPlane; // 0x0000(0x0020)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane YPlane; // 0x0020(0x0020)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane ZPlane; // 0x0040(0x0020)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane WPlane; // 0x0060(0x0020)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FMatrix; + +// ScriptStruct CoreUObject.Plane4d +// 0x0008 (0x0020 - 0x0018) +struct alignas(0x10) FPlane4d final : public FVector3d +{ +public: + double W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPlane4d; + +// ScriptStruct CoreUObject.Matrix44d +// 0x0080 (0x0080 - 0x0000) +struct FMatrix44d final +{ +public: + struct FPlane4d XPlane; // 0x0000(0x0020)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4d YPlane; // 0x0020(0x0020)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4d ZPlane; // 0x0040(0x0020)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4d WPlane; // 0x0060(0x0020)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FMatrix44d; + +// ScriptStruct CoreUObject.Plane4f +// 0x0004 (0x0010 - 0x000C) +struct alignas(0x10) FPlane4f final : public FVector3f +{ +public: + float W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPlane4f; + +// ScriptStruct CoreUObject.Matrix44f +// 0x0040 (0x0040 - 0x0000) +struct FMatrix44f final +{ +public: + struct FPlane4f XPlane; // 0x0000(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4f YPlane; // 0x0010(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4f ZPlane; // 0x0020(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane4f WPlane; // 0x0030(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FMatrix44f; + +// ScriptStruct CoreUObject.OrientedBox +// 0x0078 (0x0078 - 0x0000) +struct FOrientedBox final +{ +public: + struct FVector Center; // 0x0000(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AxisX; // 0x0018(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AxisY; // 0x0030(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AxisZ; // 0x0048(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ExtentX; // 0x0060(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ExtentY; // 0x0068(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ExtentZ; // 0x0070(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FOrientedBox; + +// ScriptStruct CoreUObject.PackedNormal +// 0x0004 (0x0004 - 0x0000) +struct FPackedNormal final +{ +public: + uint8 X; // 0x0000(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Y; // 0x0001(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Z; // 0x0002(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 W; // 0x0003(0x0001)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPackedNormal; + +// ScriptStruct CoreUObject.PackedRGB10A2N +// 0x0004 (0x0004 - 0x0000) +struct FPackedRGB10A2N final +{ +public: + int32 Packed; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPackedRGB10A2N; + +// ScriptStruct CoreUObject.PackedRGBA16N +// 0x0008 (0x0008 - 0x0000) +struct FPackedRGBA16N final +{ +public: + int32 XY; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ZW; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPackedRGBA16N; + +// ScriptStruct CoreUObject.PlatformUserId +// 0x0004 (0x0004 - 0x0000) +struct FPlatformUserId final +{ +public: + int32 InternalId; // 0x0000(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FPlatformUserId; + +// ScriptStruct CoreUObject.PlatformInputDeviceState +// 0x0008 (0x0008 - 0x0000) +struct FPlatformInputDeviceState final +{ +public: + struct FPlatformUserId OwningPlatformUser; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInputDeviceConnectionState ConnectionState; // 0x0004(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPlatformInputDeviceState; + +// ScriptStruct CoreUObject.PolyglotTextData +// 0x00B0 (0x00B0 - 0x0000) +struct FPolyglotTextData final +{ +public: + ELocalizedTextSourceCategory Category; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString NativeCulture; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NameSpace; // 0x0018(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0028(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NativeString; // 0x0038(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap LocalizedStrings; // 0x0048(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + bool bIsMinimalPatch; // 0x0098(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText CachedText; // 0x00A0(0x0010)(Transient, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FPolyglotTextData; + +// ScriptStruct CoreUObject.PrimaryAssetType +// 0x0008 (0x0008 - 0x0000) +struct FPrimaryAssetType final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPrimaryAssetType; + +// ScriptStruct CoreUObject.PrimaryAssetId +// 0x0010 (0x0010 - 0x0000) +struct FPrimaryAssetId final +{ +public: + struct FPrimaryAssetType PrimaryAssetType; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PrimaryAssetName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPrimaryAssetId; + +// ScriptStruct CoreUObject.QualifiedFrameTime +// 0x0010 (0x0010 - 0x0000) +struct FQualifiedFrameTime final +{ +public: + struct FFrameTime Time; // 0x0000(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) + struct FFrameRate Rate; // 0x0008(0x0008)(BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FQualifiedFrameTime; + +// ScriptStruct CoreUObject.Quat4d +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x10) FQuat4d final +{ +public: + double X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FQuat4d; + +// ScriptStruct CoreUObject.Quat4f +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x10) FQuat4f final +{ +public: + float X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FQuat4f; + +// ScriptStruct CoreUObject.RandomStream +// 0x0008 (0x0008 - 0x0000) +struct FRandomStream final +{ +public: + int32 InitialSeed; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seed; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRandomStream; + +// ScriptStruct CoreUObject.Ray +// 0x0030 (0x0030 - 0x0000) +struct FRay final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRay; + +// ScriptStruct CoreUObject.Ray3d +// 0x0030 (0x0030 - 0x0000) +struct FRay3d final +{ +public: + struct FVector3d Origin; // 0x0000(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3d Direction; // 0x0018(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRay3d; + +// ScriptStruct CoreUObject.Ray3f +// 0x0018 (0x0018 - 0x0000) +struct FRay3f final +{ +public: + struct FVector3f Origin; // 0x0000(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f Direction; // 0x000C(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRay3f; + +// ScriptStruct CoreUObject.Rotator +// 0x0018 (0x0018 - 0x0000) +struct FRotator final +{ +public: + using UnderlayingType = double; + + double Pitch; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Yaw; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Roll; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static UnderlayingType ClampAxis(UnderlayingType Angle) + { + Angle = std::fmod(Angle, static_cast(360)); + if (Angle < static_cast(0)) + Angle += static_cast(360); + + return Angle; + } + static UnderlayingType NormalizeAxis(UnderlayingType Angle) + { + Angle = ClampAxis(Angle); + if (Angle > static_cast(180)) + Angle -= static_cast(360); + + return Angle; + } + + FRotator& Clamp() + { + Pitch = ClampAxis(Pitch); + Yaw = ClampAxis(Yaw); + Roll = ClampAxis(Roll); + + return *this; + } + constexpr FRotator(UnderlayingType Pitch = 0, UnderlayingType Yaw = 0, UnderlayingType Roll = 0) + : Pitch(Pitch), Yaw(Yaw), Roll(Roll) + { + } + constexpr FRotator(const FRotator& other) + : Pitch(other.Pitch), Yaw(other.Yaw), Roll(other.Roll) + { + } + FRotator& Normalize() + { + Pitch = NormalizeAxis(Pitch); + Yaw = NormalizeAxis(Yaw); + Roll = NormalizeAxis(Roll); + + return *this; + } + FRotator& operator*=(UnderlayingType Scalar) + { + *this = *this * Scalar; + + return *this; + } + FRotator& operator*=(const FRotator& Other) + { + *this = *this * Other; + + return *this; + } + FRotator& operator+=(const FRotator& Other) + { + *this = *this + Other; + + return *this; + } + FRotator& operator-=(const FRotator& Other) + { + *this = *this - Other; + + return *this; + } + FRotator& operator/=(UnderlayingType Scalar) + { + *this = *this / Scalar; + + return *this; + } + FRotator& operator/=(const FRotator& Other) + { + *this = *this / Other; + + return *this; + } + FRotator& operator=(const FRotator& other) + { + Pitch = other.Pitch; + Yaw = other.Yaw; + Roll = other.Roll; + + return *this; + } + + FRotator GetNormalized() const + { + FRotator rotator = *this; + rotator.Normalize(); + + return rotator; + } + bool IsZero() const + { + return ClampAxis(Pitch) == 0 && ClampAxis(Yaw) == 0 && ClampAxis(Roll) == 0; + } + bool operator!=(const FRotator& Other) const + { + return Pitch != Other.Pitch || Yaw != Other.Yaw || Roll != Other.Roll; + } + FRotator operator*(UnderlayingType Scalar) const + { + return { Pitch * Scalar, Yaw * Scalar, Roll * Scalar }; + } + FRotator operator*(const FRotator& Other) const + { + return { Pitch * Other.Pitch, Yaw * Other.Yaw, Roll * Other.Roll }; + } + FRotator operator+(const FRotator& Other) const + { + return { Pitch + Other.Pitch, Yaw + Other.Yaw, Roll + Other.Roll }; + } + FRotator operator-(const FRotator& Other) const + { + return { Pitch - Other.Pitch, Yaw - Other.Yaw, Roll - Other.Roll }; + } + FRotator operator/(UnderlayingType Scalar) const + { + if (Scalar == 0) + return *this; + + return { Pitch / Scalar, Yaw / Scalar, Roll / Scalar }; + } + FRotator operator/(const FRotator& Other) const + { + if (Other.Pitch == 0 || Other.Yaw == 0 || Other.Roll == 0) + return *this; + + return { Pitch / Other.Pitch, Yaw / Other.Yaw, Roll / Other.Roll }; + } + bool operator==(const FRotator& Other) const + { + return Pitch == Other.Pitch && Yaw == Other.Yaw && Roll == Other.Roll; + } +}; +DUMPER7_ASSERTS_FRotator; + +// ScriptStruct CoreUObject.Rotator3d +// 0x0018 (0x0018 - 0x0000) +struct FRotator3d final +{ +public: + double Pitch; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Yaw; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Roll; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRotator3d; + +// ScriptStruct CoreUObject.Rotator3f +// 0x000C (0x000C - 0x0000) +struct FRotator3f final +{ +public: + float Pitch; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Yaw; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Roll; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FRotator3f; + +// ScriptStruct CoreUObject.SoftClassPath +// 0x0000 (0x0020 - 0x0020) +struct FSoftClassPath final : public FSoftObjectPath +{ +}; +DUMPER7_ASSERTS_FSoftClassPath; + +// ScriptStruct CoreUObject.Sphere +// 0x0020 (0x0020 - 0x0000) +struct FSphere final +{ +public: + struct FVector Center; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSphere; + +// ScriptStruct CoreUObject.Sphere3d +// 0x0020 (0x0020 - 0x0000) +struct FSphere3d final +{ +public: + struct FVector3d Center; // 0x0000(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSphere3d; + +// ScriptStruct CoreUObject.Sphere3f +// 0x0010 (0x0010 - 0x0000) +struct FSphere3f final +{ +public: + struct FVector3f Center; // 0x0000(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FSphere3f; + +// ScriptStruct CoreUObject.TemplateString +// 0x0010 (0x0010 - 0x0000) +struct FTemplateString final +{ +public: + class FString Template; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTemplateString; + +// ScriptStruct CoreUObject.TestUndeclaredScriptStructObjectReferencesTest +// 0x0058 (0x0058 - 0x0000) +struct FTestUndeclaredScriptStructObjectReferencesTest final +{ +public: + class UObject* StrongObjectPointer; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr SoftObjectPointer; // 0x0008(0x0028)(Transient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SoftObjectPath; // 0x0030(0x0020)(ZeroConstructor, Transient, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr WeakObjectPointer; // 0x0050(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTestUndeclaredScriptStructObjectReferencesTest; + +// ScriptStruct CoreUObject.TestUninitializedScriptStructMembersTest +// 0x0018 (0x0018 - 0x0000) +struct FTestUninitializedScriptStructMembersTest final +{ +public: + class UObject* UninitializedObjectReference; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* InitializedObjectReference; // 0x0008(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UnusedValue; // 0x0010(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FTestUninitializedScriptStructMembersTest; + +// ScriptStruct CoreUObject.Timecode +// 0x0018 (0x0018 - 0x0000) +struct FTimecode final +{ +public: + int32 Hours; // 0x0000(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minutes; // 0x0004(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seconds; // 0x0008(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Frames; // 0x000C(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubFrame; // 0x0010(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDropFrameFormat; // 0x0014(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FTimecode; + +// ScriptStruct CoreUObject.Timespan +// 0x0008 (0x0008 - 0x0000) +struct FTimespan final +{ +public: + int64 Ticks; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTimespan; + +// ScriptStruct CoreUObject.Transform +// 0x0060 (0x0060 - 0x0000) +struct FTransform final +{ +public: + struct FQuat Rotation; // 0x0000(0x0020)(Edit, BlueprintVisible, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Translation; // 0x0020(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Scale3D; // 0x0040(0x0018)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FTransform; + +// ScriptStruct CoreUObject.PerPlatformFrameRate +// 0x0008 (0x0008 - 0x0000) +struct FPerPlatformFrameRate final +{ +public: + struct FFrameRate Default; // 0x0000(0x0008)(Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPerPlatformFrameRate; + +// ScriptStruct CoreUObject.Transform3d +// 0x0060 (0x0060 - 0x0000) +struct FTransform3d final +{ +public: + struct FQuat4d Rotation; // 0x0000(0x0020)(Edit, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3d Translation; // 0x0020(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector3d Scale3D; // 0x0040(0x0018)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FTransform3d; + +// ScriptStruct CoreUObject.Transform3f +// 0x0030 (0x0030 - 0x0000) +struct FTransform3f final +{ +public: + struct FQuat4f Rotation; // 0x0000(0x0010)(Edit, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f Translation; // 0x0010(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector3f Scale3D; // 0x0020(0x000C)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FTransform3f; + +// ScriptStruct CoreUObject.Uint32Point +// 0x0008 (0x0008 - 0x0000) +struct FUint32Point final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint32Point; + +// ScriptStruct CoreUObject.Uint32Rect +// 0x0010 (0x0010 - 0x0000) +struct FUint32Rect final +{ +public: + struct FUint32Point Min; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUint32Point Max; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FUint32Rect; + +// ScriptStruct CoreUObject.Uint32Vector +// 0x000C (0x000C - 0x0000) +struct FUint32Vector final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint32Vector; + +// ScriptStruct CoreUObject.Uint32Vector2 +// 0x0008 (0x0008 - 0x0000) +struct FUint32Vector2 final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint32Vector2; + +// ScriptStruct CoreUObject.Uint32Vector4 +// 0x0010 (0x0010 - 0x0000) +struct FUint32Vector4 final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint32Vector4; + +// ScriptStruct CoreUObject.Uint64Point +// 0x0010 (0x0010 - 0x0000) +struct FUint64Point final +{ +public: + int64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint64Point; + +// ScriptStruct CoreUObject.Uint64Rect +// 0x0020 (0x0020 - 0x0000) +struct FUint64Rect final +{ +public: + struct FUint64Point Min; // 0x0000(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUint64Point Max; // 0x0010(0x0010)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FUint64Rect; +//DUMPER7_ASSERTS_FUint64Rect +// ScriptStruct CoreUObject.Uint64Vector +// 0x0018 (0x0018 - 0x0000) +struct FUint64Vector final +{ +public: + uint64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint64Vector; + +// ScriptStruct CoreUObject.Uint64Vector2 +// 0x0010 (0x0010 - 0x0000) +struct FUint64Vector2 final +{ +public: + uint64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint64Vector2; + +// ScriptStruct CoreUObject.Uint64Vector4 +// 0x0020 (0x0020 - 0x0000) +struct FUint64Vector4 final +{ +public: + uint64 X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUint64Vector4; + +// ScriptStruct CoreUObject.UintPoint +// 0x0008 (0x0008 - 0x0000) +struct FUintPoint final +{ +public: + int32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUintPoint; + +// ScriptStruct CoreUObject.UintRect +// 0x0010 (0x0010 - 0x0000) +struct FUintRect final +{ +public: + struct FUintPoint Min; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUintPoint Max; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FUintRect; + +// ScriptStruct CoreUObject.UintVector +// 0x000C (0x000C - 0x0000) +struct FUintVector final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUintVector; + +// ScriptStruct CoreUObject.UintVector2 +// 0x0008 (0x0008 - 0x0000) +struct FUintVector2 final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUintVector2; + +// ScriptStruct CoreUObject.UintVector4 +// 0x0010 (0x0010 - 0x0000) +struct FUintVector4 final +{ +public: + uint32 X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FUintVector4; + +// ScriptStruct CoreUObject.Vector4 +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x10) FVector4 final +{ +public: + double X; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector4; + +// ScriptStruct CoreUObject.Vector4d +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x10) FVector4d final +{ +public: + double X; // 0x0000(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector4d; + +// ScriptStruct CoreUObject.Vector4f +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x10) FVector4f final +{ +public: + float X; // 0x0000(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0008(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x000C(0x0004)(Edit, ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVector4f; + +// ScriptStruct CoreUObject.TestInstanceDataObjectPoint +// 0x0010 (0x0010 - 0x0000) +struct FTestInstanceDataObjectPoint final +{ +public: + int32 X; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Z; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 W; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTestInstanceDataObjectPoint; + +// ScriptStruct CoreUObject.TestInstanceDataObjectPointAlternate +// 0x000C (0x000C - 0x0000) +struct FTestInstanceDataObjectPointAlternate final +{ +public: + int32 U; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 V; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 W; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTestInstanceDataObjectPointAlternate; + +// ScriptStruct CoreUObject.TestInstanceDataObjectStruct +// 0x0030 (0x0030 - 0x0000) +struct FTestInstanceDataObjectStruct final +{ +public: + int32 A; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 C; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 D; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectBird Bird; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrain Grain; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruit Fruit; // 0x0012(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x1]; // 0x0013(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ETestInstanceDataObjectDirection Direction; // 0x0014(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFullFlags FullFlags; // 0x0016(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrain GrainFromEnumClass; // 0x0017(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruit FruitFromNamespace; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrain GrainTypeChange; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruit FruitTypeChange; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrain GrainTypeAndPropertyChange; // 0x001B(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruit FruitTypeAndPropertyChange; // 0x001C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTestInstanceDataObjectPoint Point; // 0x0020(0x0010)(NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTestInstanceDataObjectStruct; + +// ScriptStruct CoreUObject.TestInstanceDataObjectStructAlternate +// 0x0038 (0x0038 - 0x0000) +struct FTestInstanceDataObjectStructAlternate final +{ +public: + float B; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int64 C; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 D; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 E; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectBird Bird; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrainAlternate Grain; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruitAlternate Fruit; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x1]; // 0x001B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ETestInstanceDataObjectDirectionAlternate Direction; // 0x001C(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrainAlternateEnumClass GrainFromEnumClass; // 0x001E(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruitAlternateNamespace FruitFromNamespace; // 0x001F(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrainAlternate GrainTypeChange; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruitAlternate FruitTypeChange; // 0x0021(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrainAlternateEnumClass GrainTypeAndPropertyChange; // 0x0022(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruitAlternateNamespace FruitTypeAndPropertyChange; // 0x0023(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectGrainAlternate DeletedGrain; // 0x0024(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectFruitAlternate DeletedFruit; // 0x0025(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETestInstanceDataObjectDirectionAlternate DeletedDirection; // 0x0026(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTestInstanceDataObjectPointAlternate Point; // 0x0028(0x000C)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FTestInstanceDataObjectStructAlternate; + +// ScriptStruct CoreUObject.PropertyTextString +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FPropertyTextString final +{ +public: + uint8 Pad_0[0x20]; // 0x0000(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FPropertyTextString; + +// ScriptStruct CoreUObject.InstancedStruct +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FInstancedStruct final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInstancedStruct; + +// ScriptStruct CoreUObject.InstancedStructContainer +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FInstancedStructContainer final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInstancedStructContainer; + +// ScriptStruct CoreUObject.PropertyBagContainerTypes +// 0x0003 (0x0003 - 0x0000) +struct FPropertyBagContainerTypes final +{ +public: + uint8 Pad_0[0x3]; // 0x0000(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPropertyBagContainerTypes; + +// ScriptStruct CoreUObject.PropertyBagPropertyDescMetaData +// 0x0018 (0x0018 - 0x0000) +struct FPropertyBagPropertyDescMetaData final +{ +public: + class FName Key; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Value; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPropertyBagPropertyDescMetaData; + +// ScriptStruct CoreUObject.PropertyBagPropertyDesc +// 0x0030 (0x0030 - 0x0000) +struct FPropertyBagPropertyDesc final +{ +public: + class UObject* ValueTypeObject; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ID; // 0x0008(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0018(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPropertyBagPropertyType ValueType; // 0x0020(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPropertyBagContainerTypes ContainerTypes; // 0x0021(0x0003)(Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPropertyBagPropertyDesc; + +// ScriptStruct CoreUObject.InstancedPropertyBag +// 0x0010 (0x0010 - 0x0000) +struct FInstancedPropertyBag +{ +public: + struct FInstancedStruct Value; // 0x0000(0x0010)(Edit, Protected, NativeAccessSpecifierProtected) +}; +DUMPER7_ASSERTS_FInstancedPropertyBag; + +// ScriptStruct CoreUObject.PropertyBagMissingStruct +// 0x0001 (0x0001 - 0x0000) +struct FPropertyBagMissingStruct final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPropertyBagMissingStruct; + +// ScriptStruct CoreUObject.ConstSharedStruct +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FConstSharedStruct final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FConstSharedStruct; + +// ScriptStruct CoreUObject.PerPlatformInt +// 0x0004 (0x0004 - 0x0000) +struct FPerPlatformInt final +{ +public: + int32 Default; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPerPlatformInt; + +// ScriptStruct CoreUObject.PerPlatformFloat +// 0x0004 (0x0004 - 0x0000) +struct FPerPlatformFloat final +{ +public: + float Default; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPerPlatformFloat; + +// ScriptStruct CoreUObject.PerPlatformBool +// 0x0001 (0x0001 - 0x0000) +struct FPerPlatformBool final +{ +public: + bool Default; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPerPlatformBool; + +// ScriptStruct CoreUObject.VersePersistentVar +// 0x0030 (0x0030 - 0x0000) +struct FVersePersistentVar final +{ +public: + class FString Path; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TFieldPath Property; // 0x0010(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FVersePersistentVar; + +// ScriptStruct CoreUObject.VerseSessionVar +// 0x0020 (0x0020 - 0x0000) +struct FVerseSessionVar final +{ +public: + TFieldPath Property; // 0x0000(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FVerseSessionVar; + +// ScriptStruct CoreUObject.VerseClassVarAccessor +// 0x0010 (0x0010 - 0x0000) +struct FVerseClassVarAccessor final +{ +public: + class UFunction* Func; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsInstanceMember; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsFallible; // 0x0009(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FVerseClassVarAccessor; + +// ScriptStruct CoreUObject.VerseClassVarAccessors +// 0x00A0 (0x00A0 - 0x0000) +struct FVerseClassVarAccessors final +{ +public: + TMap Getters; // 0x0000(0x0050)(NativeAccessSpecifierPublic) + TMap Setters; // 0x0050(0x0050)(NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FVerseClassVarAccessors; + +} + diff --git a/TormentedSouls2/SDK/DeveloperSettings_classes.hpp b/TormentedSouls2/SDK/DeveloperSettings_classes.hpp new file mode 100644 index 0000000..d169591 --- /dev/null +++ b/TormentedSouls2/SDK/DeveloperSettings_classes.hpp @@ -0,0 +1,111 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: DeveloperSettings + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" +#include "DeveloperSettings_structs.hpp" + + +namespace SDK +{ + +// Class DeveloperSettings.DeveloperSettings +// 0x0010 (0x0038 - 0x0028) +class UDeveloperSettings : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeveloperSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeveloperSettings") + } + static class UDeveloperSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDeveloperSettings; + +// Class DeveloperSettings.DeveloperSettingsBackedByCVars +// 0x0000 (0x0038 - 0x0038) +class UDeveloperSettingsBackedByCVars : public UDeveloperSettings +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeveloperSettingsBackedByCVars") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeveloperSettingsBackedByCVars") + } + static class UDeveloperSettingsBackedByCVars* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDeveloperSettingsBackedByCVars; + +// Class DeveloperSettings.PlatformSettings +// 0x0018 (0x0040 - 0x0028) +class UPlatformSettings : public UObject +{ +public: + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformSettings") + } + static class UPlatformSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPlatformSettings; + +// Class DeveloperSettings.PlatformSettingsManager +// 0x0058 (0x0080 - 0x0028) +class UPlatformSettingsManager final : public UObject +{ +public: + TMap, struct FPlatformSettingsInstances> SettingsMap; // 0x0028(0x0050)(Transient, NativeAccessSpecifierPrivate) + uint8 Pad_78[0x8]; // 0x0078(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformSettingsManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformSettingsManager") + } + static class UPlatformSettingsManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPlatformSettingsManager; + +} + diff --git a/TormentedSouls2/SDK/DeveloperSettings_structs.hpp b/TormentedSouls2/SDK/DeveloperSettings_structs.hpp new file mode 100644 index 0000000..98eeeac --- /dev/null +++ b/TormentedSouls2/SDK/DeveloperSettings_structs.hpp @@ -0,0 +1,37 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: DeveloperSettings + +#include "Basic.hpp" + + +namespace SDK +{ + +// ScriptStruct DeveloperSettings.PerPlatformSettings +// 0x0010 (0x0010 - 0x0000) +struct FPerPlatformSettings final +{ +public: + TArray Settings; // 0x0000(0x0010)(Edit, ExportObject, EditFixedSize, ZeroConstructor, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FPerPlatformSettings; + +// ScriptStruct DeveloperSettings.PlatformSettingsInstances +// 0x0058 (0x0058 - 0x0000) +struct FPlatformSettingsInstances final +{ +public: + class UPlatformSettings* PlatformInstance; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap OtherPlatforms; // 0x0008(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPlatformSettingsInstances; + +} + diff --git a/TormentedSouls2/SDK/Engine_classes.hpp b/TormentedSouls2/SDK/Engine_classes.hpp new file mode 100644 index 0000000..6a4b71e --- /dev/null +++ b/TormentedSouls2/SDK/Engine_classes.hpp @@ -0,0 +1,41158 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Engine + +#include "Basic.hpp" + +#include "AudioPlatformConfiguration_structs.hpp" +#include "IrisCore_classes.hpp" +#include "CoreUObject_structs.hpp" +#include "CoreUObject_classes.hpp" +#include "ClothingSystemRuntimeInterface_structs.hpp" +#include "Engine_structs.hpp" +#include "DeveloperSettings_structs.hpp" +#include "DeveloperSettings_classes.hpp" +#include "PhysicsCore_structs.hpp" +#include "PhysicsCore_classes.hpp" +#include "AudioExtensions_structs.hpp" +#include "AudioExtensions_classes.hpp" +#include "FieldNotification_structs.hpp" +#include "InputCore_structs.hpp" +#include "Chaos_structs.hpp" +#include "MeshDescription_classes.hpp" +#include "SlateCore_structs.hpp" +#include "NetCore_structs.hpp" +#include "NetCore_classes.hpp" +#include "PacketHandler_classes.hpp" + + +namespace SDK +{ + +// Class Engine.MaterialExpression +// 0x0088 (0x00B0 - 0x0028) +class UMaterialExpression : public UObject +{ +public: + int32 MaterialExpressionEditorX; // 0x0028(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaterialExpressionEditorY; // 0x002C(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UEdGraphNode* GraphNode; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialExpression* SubgraphExpression; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_40[0x10]; // 0x0040(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid MaterialExpressionGuid; // 0x0050(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* Material; // 0x0060(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialFunction* Function; // 0x0068(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Desc; // 0x0070(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_80[0x4]; // 0x0080(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bRealtimePreview : 1; // 0x0084(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNeedToUpdatePreview : 1; // 0x0084(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_84_2 : 6; // 0x0084(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_85[0x3]; // 0x0085(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bIsParameterExpression : 1; // 0x0088(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_88_1 : 7; // 0x0088(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_89[0x3]; // 0x0089(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bCommentBubbleVisible : 1; // 0x008C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowOutputNameOnPin : 1; // 0x008C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowMaskColorsOnPin : 1; // 0x008C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHidePreviewWindow : 1; // 0x008C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCollapsed : 1; // 0x008C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShaderInputData : 1; // 0x008C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowInputs : 1; // 0x008C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowOutputs : 1; // 0x008C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_8D[0x3]; // 0x008D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MenuCategories; // 0x0090(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Outputs; // 0x00A0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpression") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpression") + } + static class UMaterialExpression* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpression; + +// Class Engine.MaterialExpressionGenericConstant +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionGenericConstant : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionGenericConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionGenericConstant") + } + static class UMaterialExpressionGenericConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionGenericConstant; + +// Class Engine.MaterialExpressionConstantDouble +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionConstantDouble final : public UMaterialExpressionGenericConstant +{ +public: + double Value; // 0x00B0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstantDouble") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstantDouble") + } + static class UMaterialExpressionConstantDouble* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstantDouble; + +// Class Engine.DestructibleInterface +// 0x0000 (0x0000 - 0x0000) +class IDestructibleInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DestructibleInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DestructibleInterface") + } + static class IDestructibleInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IDestructibleInterface; + +// Class Engine.ActorComponent +// 0x0078 (0x00A0 - 0x0028) +class UActorComponent : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FActorComponentTickFunction PrimaryComponentTick; // 0x0030(0x0030)(Edit, DisableEditOnInstance, NativeAccessSpecifierPublic) + TArray ComponentTags; // 0x0060(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AssetUserData; // 0x0070(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_80[0x4]; // 0x0080(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 UCSSerializationIndex; // 0x0084(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 BitPad_88_0 : 4; // 0x0088(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bNetAddressable : 1; // 0x0088(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bReplicateUsingRegisteredSubObjectList : 1; // 0x0088(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Config, DisableEditOnInstance, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bReplicates : 1; // 0x0088(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Net, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_88_7 : 1; // 0x0088(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_89[0x1]; // 0x0089(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_8A_0 : 2; // 0x008A(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAutoActivate : 1; // 0x008A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsActive : 1; // 0x008A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Net, Transient, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bEditableWhenInherited : 1; // 0x008A(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_8A_5 : 1; // 0x008A(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bCanEverAffectNavigation : 1; // 0x008A(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_8A_7 : 1; // 0x008A(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 bIsEditorOnly : 1; // 0x008B(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_8C[0x1]; // 0x008C(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + EComponentCreationMethod CreationMethod; // 0x008D(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentActivated; // 0x008E(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentDeactivated; // 0x008F(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_90[0x10]; // 0x0090(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Activate(bool bReset); + void AddTickPrerequisiteActor(class AActor* PrerequisiteActor); + void AddTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent); + void Deactivate(); + void K2_DestroyComponent(class UObject* Object); + void OnRep_IsActive(); + void ReceiveAsyncPhysicsTick(float DeltaSeconds, float SimSeconds); + void ReceiveBeginPlay(); + void ReceiveEndPlay(EEndPlayReason EndPlayReason); + void ReceiveTick(float DeltaSeconds); + void RemoveTickPrerequisiteActor(class AActor* PrerequisiteActor); + void RemoveTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent); + void SetActive(bool bNewActive, bool bReset); + void SetAutoActivate(bool bNewAutoActivate); + void SetComponentTickEnabled(bool bEnabled); + void SetComponentTickInterval(float TickInterval); + void SetComponentTickIntervalAndCooldown(float TickInterval); + void SetIsReplicated(bool ShouldReplicate); + void SetTickableWhenPaused(bool bTickableWhenPaused); + void SetTickGroup(ETickingGroup NewTickGroup); + void ToggleActive(); + + bool ComponentHasTag(class FName Tag) const; + float GetComponentTickInterval() const; + class AActor* GetOwner() const; + bool IsActive() const; + bool IsBeingDestroyed() const; + bool IsComponentTickEnabled() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorComponent") + } + static class UActorComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorComponent; + +// Class Engine.MaterialExpressionPixelDepth +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPixelDepth final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPixelDepth") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPixelDepth") + } + static class UMaterialExpressionPixelDepth* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPixelDepth; + +// Class Engine.Subsystem +// 0x0008 (0x0030 - 0x0028) +class USubsystem : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Subsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Subsystem") + } + static class USubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USubsystem; + +// Class Engine.DynamicSubsystem +// 0x0000 (0x0030 - 0x0030) +class UDynamicSubsystem : public USubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DynamicSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DynamicSubsystem") + } + static class UDynamicSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDynamicSubsystem; + +// Class Engine.WorldPartitionRuntimeCellTransformer +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionRuntimeCellTransformer : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellTransformer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellTransformer") + } + static class UWorldPartitionRuntimeCellTransformer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellTransformer; + +// Class Engine.MaterialExpressionBlendMaterialAttributes +// 0x0090 (0x0140 - 0x00B0) +class UMaterialExpressionBlendMaterialAttributes : public UMaterialExpression +{ +public: + struct FMaterialAttributesInput A; // 0x00B0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FMaterialAttributesInput B; // 0x00E0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Alpha; // 0x0110(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialAttributeBlend PixelAttributeBlendType; // 0x0138(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialAttributeBlend VertexAttributeBlendType; // 0x0139(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13A[0x6]; // 0x013A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBlendMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBlendMaterialAttributes") + } + static class UMaterialExpressionBlendMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBlendMaterialAttributes; + +// Class Engine.ReporterBase +// 0x0008 (0x0030 - 0x0028) +class UReporterBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReporterBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReporterBase") + } + static class UReporterBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReporterBase; + +// Class Engine.ReporterGraph +// 0x0098 (0x00C8 - 0x0030) +class UReporterGraph final : public UReporterBase +{ +public: + uint8 Pad_30[0x98]; // 0x0030(0x0098)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReporterGraph") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReporterGraph") + } + static class UReporterGraph* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReporterGraph; + +// Class Engine.BlueprintFunctionLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintFunctionLibrary : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintFunctionLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintFunctionLibrary") + } + static class UBlueprintFunctionLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintFunctionLibrary; + +// Class Engine.ISMPartitionInstanceManagerProvider +// 0x0000 (0x0000 - 0x0000) +class IISMPartitionInstanceManagerProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ISMPartitionInstanceManagerProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ISMPartitionInstanceManagerProvider") + } + static class IISMPartitionInstanceManagerProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IISMPartitionInstanceManagerProvider; + +// Class Engine.SMInstanceElementIdMapTransactor +// 0x0000 (0x0028 - 0x0028) +class USMInstanceElementIdMapTransactor final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementIdMapTransactor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementIdMapTransactor") + } + static class USMInstanceElementIdMapTransactor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementIdMapTransactor; + +// Class Engine.AssetUserData +// 0x0000 (0x0028 - 0x0028) +class UAssetUserData : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetUserData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetUserData") + } + static class UAssetUserData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetUserData; + +// Class Engine.AnimCurveMetaData +// 0x0078 (0x00A0 - 0x0028) +class UAnimCurveMetaData final : public UAssetUserData +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMap CurveMetaData; // 0x0030(0x0050)(NativeAccessSpecifierPrivate) + uint8 Pad_80[0x20]; // 0x0080(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveMetaData") + } + static class UAnimCurveMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveMetaData; + +// Class Engine.SceneComponent +// 0x0190 (0x0230 - 0x00A0) +class alignas(0x10) USceneComponent : public UActorComponent +{ +public: + uint8 Pad_A0[0x8]; // 0x00A0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr PhysicsVolume; // 0x00A8(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USceneComponent* AttachParent; // 0x00B0(0x0008)(ExportObject, Net, ZeroConstructor, InstancedReference, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName AttachSocketName; // 0x00B8(0x0008)(Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_C0[0x8]; // 0x00C0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AttachChildren; // 0x00C8(0x0010)(ExportObject, Net, ZeroConstructor, Transient, RepNotify, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray ClientAttachedChildren; // 0x00D8(0x0010)(ExportObject, ZeroConstructor, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_E8[0x40]; // 0x00E8(0x0040)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector RelativeLocation; // 0x0128(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FRotator RelativeRotation; // 0x0140(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, NativeAccessSpecifierPrivate) + struct FVector RelativeScale3D; // 0x0158(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FVector ComponentVelocity; // 0x0170(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bComponentToWorldUpdated : 1; // 0x0188(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_188_1 : 1; // 0x0188(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAbsoluteLocation : 1; // 0x0188(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, Net, RepNotify, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bAbsoluteRotation : 1; // 0x0188(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, Net, RepNotify, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bAbsoluteScale : 1; // 0x0188(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, Net, RepNotify, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bVisible : 1; // 0x0188(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldBeAttached : 1; // 0x0188(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Net, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldSnapLocationWhenAttached : 1; // 0x0188(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Net, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldSnapRotationWhenAttached : 1; // 0x0189(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Net, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldSnapScaleWhenAttached : 1; // 0x0189(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Net, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldUpdatePhysicsVolume : 1; // 0x0189(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bHiddenInGame : 1; // 0x0189(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBoundsChangeTriggersStreamingDataRebuild : 1; // 0x0189(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAttachParentBound : 1; // 0x0189(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeFastLocalBounds : 1; // 0x0189(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeBoundsOnceForGame : 1; // 0x0189(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputedBoundsOnceForGame : 1; // 0x018A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsNotRenderAttachmentRoot : 1; // 0x018A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EComponentMobility Mobility; // 0x018B(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetailMode DetailMode; // 0x018C(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ PhysicsVolumeChangedDelegate; // 0x018D(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_18E[0xA2]; // 0x018E(0x00A2)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void DetachFromParent(bool bMaintainWorldPosition, bool bCallModify); + void K2_AddLocalOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddLocalRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddLocalTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddRelativeLocation(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddRelativeRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddWorldOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddWorldRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddWorldTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddWorldTransformKeepScale(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + bool K2_AttachTo(class USceneComponent* InParent, class FName InSocketName, EAttachLocation AttachType, bool bWeldSimulatedBodies); + bool K2_AttachToComponent(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies); + void K2_DetachFromComponent(EDetachmentRule LocationRule, EDetachmentRule RotationRule, EDetachmentRule ScaleRule, bool bCallModify); + void K2_SetRelativeLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetRelativeLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetRelativeRotation(const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetRelativeTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetWorldLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetWorldLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetWorldRotation(const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetWorldTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void OnRep_AttachChildren(); + void OnRep_AttachParent(); + void OnRep_AttachSocketName(); + void OnRep_Transform(); + void OnRep_Visibility(bool OldValue); + void ResetRelativeTransform(); + void SetAbsolute(bool bNewAbsoluteLocation, bool bNewAbsoluteRotation, bool bNewAbsoluteScale); + void SetHiddenInGame(bool NewHidden, bool bPropagateToChildren); + void SetMobility(EComponentMobility NewMobility); + void SetRelativeScale3D(const struct FVector& NewScale3D); + void SetShouldUpdatePhysicsVolume(bool bInShouldUpdatePhysicsVolume); + void SetVisibility(bool bNewVisibility, bool bPropagateToChildren); + void SetWorldScale3D(const struct FVector& NewScale); + void ToggleVisibility(bool bPropagateToChildren); + + bool DoesSocketExist(class FName InSocketName) const; + TArray GetAllSocketNames() const; + class USceneComponent* GetAttachParent() const; + class FName GetAttachSocketName() const; + class USceneComponent* GetChildComponent(int32 ChildIndex) const; + void GetChildrenComponents(bool bIncludeAllDescendants, TArray* Children) const; + struct FVector GetComponentVelocity() const; + struct FVector GetForwardVector() const; + int32 GetNumChildrenComponents() const; + void GetParentComponents(TArray* Parents) const; + class APhysicsVolume* GetPhysicsVolume() const; + struct FTransform GetRelativeTransform() const; + struct FVector GetRightVector() const; + bool GetShouldUpdatePhysicsVolume() const; + struct FVector GetSocketLocation(class FName InSocketName) const; + struct FQuat GetSocketQuaternion(class FName InSocketName) const; + struct FRotator GetSocketRotation(class FName InSocketName) const; + struct FTransform GetSocketTransform(class FName InSocketName, ERelativeTransformSpace TransformSpace) const; + struct FVector GetUpVector() const; + bool IsAnySimulatingPhysics() const; + bool IsSimulatingPhysics(class FName BoneName) const; + bool IsVisible() const; + struct FVector K2_GetComponentLocation() const; + struct FRotator K2_GetComponentRotation() const; + struct FVector K2_GetComponentScale() const; + struct FTransform K2_GetComponentToWorld() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneComponent") + } + static class USceneComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USceneComponent; + +// Class Engine.MaterialExpressionParticleSize +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleSize final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleSize") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleSize") + } + static class UMaterialExpressionParticleSize* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleSize; + +// Class Engine.MaterialExpressionGetLocal +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionGetLocal final : public UMaterialExpression +{ +public: + class FName LocalName; // 0x00B0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionGetLocal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionGetLocal") + } + static class UMaterialExpressionGetLocal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionGetLocal; + +// Class Engine.MaterialExpressionGetMaterialAttributes +// 0x0040 (0x00F0 - 0x00B0) +class UMaterialExpressionGetMaterialAttributes final : public UMaterialExpression +{ +public: + struct FMaterialAttributesInput MaterialAttributes; // 0x00B0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + TArray AttributeGetTypes; // 0x00E0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionGetMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionGetMaterialAttributes") + } + static class UMaterialExpressionGetMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionGetMaterialAttributes; + +// Class Engine.Actor +// 0x0280 (0x02A8 - 0x0028) +class AActor : public UObject +{ +public: + struct FActorTickFunction PrimaryActorTick; // 0x0028(0x0030)(Edit, DisableEditOnInstance, NativeAccessSpecifierPublic) + uint8 bNetTemporary : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_58_1 : 1; // 0x0058(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bOnlyRelevantToOwner : 1; // 0x0058(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlwaysRelevant : 1; // 0x0058(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReplicateMovement : 1; // 0x0058(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Net, DisableEditOnInstance, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bCallPreReplication : 1; // 0x0058(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bCallPreReplicationForReplay : 1; // 0x0058(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bHidden : 1; // 0x0058(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Net, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bTearOff : 1; // 0x0059(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bForceNetAddressable : 1; // 0x0059(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bExchangedRoles : 1; // 0x0059(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetLoadOnClient : 1; // 0x0059(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetUseOwnerRelevancy : 1; // 0x0059(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRelevantForNetworkReplays : 1; // 0x0059(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRelevantForLevelBounds : 1; // 0x0059(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReplayRewindable : 1; // 0x0059(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowTickBeforeBeginPlay : 1; // 0x005A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoDestroyWhenFinished : 1; // 0x005A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bCanBeDamaged : 1; // 0x005A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, Net, SaveGame, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bBlockInput : 1; // 0x005A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCollideWhenPlacing : 1; // 0x005A(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFindCameraComponentWhenViewTarget : 1; // 0x005A(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateOverlapEventsDuringLevelStreaming : 1; // 0x005A(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoresOriginShifting : 1; // 0x005A(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableAutoLODGeneration : 1; // 0x005B(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsEditorOnlyActor : 1; // 0x005B(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_5B_2 : 1; // 0x005B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bReplicates : 1; // 0x005B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnInstance, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bCanBeInCluster : 1; // 0x005B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bAllowReceiveTickEventOnDedicatedServer : 1; // 0x005B(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_5B_6 : 1; // 0x005B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bReplicateUsingRegisteredSubObjectList : 1; // 0x005B(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Config, DisableEditOnInstance, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_5C_0 : 7; // 0x005C(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bActorEnableCollision : 1; // 0x005C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bActorIsBeingDestroyed : 1; // 0x005D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_5D_1 : 4; // 0x005D(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAsyncPhysicsTickEnabled : 1; // 0x005D(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + EActorUpdateOverlapsMethod UpdateOverlapsMethodDuringLevelStreaming; // 0x005E(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EActorUpdateOverlapsMethod DefaultUpdateOverlapsMethodDuringLevelStreaming; // 0x005F(0x0001)(Edit, ZeroConstructor, Config, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + ENetRole RemoteRole; // 0x0060(0x0001)(Edit, Net, ZeroConstructor, DisableEditOnTemplate, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InitialLifeSpan; // 0x0064(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CustomTimeDilation; // 0x0068(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RayTracingGroupId; // 0x006C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FRepAttachment AttachmentReplication; // 0x0070(0x0060)(Net, Transient, RepNotify, NoDestructor, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + struct FRepMovement ReplicatedMovement; // 0x00D0(0x0088)(Edit, Net, DisableEditOnInstance, RepNotify, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPrivate) + class AActor* Owner; // 0x0158(0x0008)(Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NetDriverName; // 0x0160(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ENetRole Role; // 0x0168(0x0001)(Edit, Net, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + ENetDormancy NetDormancy; // 0x0169(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpawnActorCollisionHandlingMethod SpawnCollisionHandlingMethod; // 0x016A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAutoReceiveInput AutoReceiveInput; // 0x016B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InputPriority; // 0x016C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_170[0x8]; // 0x0170(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UInputComponent* InputComponent; // 0x0178(0x0008)(ExportObject, ZeroConstructor, InstancedReference, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NetTag; // 0x0180(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetCullDistanceSquared; // 0x0184(0x0004)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetUpdateFrequency; // 0x0188(0x0004)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinNetUpdateFrequency; // 0x018C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetPriority; // 0x0190(0x0004)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicsReplicationMode PhysicsReplicationMode; // 0x0194(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_195[0xB]; // 0x0195(0x000B)(Fixing Size After Last Property [ Dumper-7 ]) + class APawn* Instigator; // 0x01A0(0x0008)(BlueprintVisible, Net, ZeroConstructor, RepNotify, NoDestructor, ExposeOnSpawn, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Children; // 0x01A8(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + class USceneComponent* RootComponent; // 0x01B8(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_1C0[0x8]; // 0x01C0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Layers; // 0x01C8(0x0010)(Edit, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + TWeakObjectPtr ParentComponent; // 0x01D8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Tags; // 0x01E0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnTakeAnyDamage; // 0x01F0(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnTakePointDamage; // 0x01F1(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnTakeRadialDamage; // 0x01F2(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnActorBeginOverlap; // 0x01F3(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnActorEndOverlap; // 0x01F4(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnBeginCursorOver; // 0x01F5(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnEndCursorOver; // 0x01F6(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnClicked; // 0x01F7(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnReleased; // 0x01F8(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchBegin; // 0x01F9(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchEnd; // 0x01FA(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchEnter; // 0x01FB(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchLeave; // 0x01FC(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnActorHit; // 0x01FD(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnDestroyed; // 0x01FE(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnEndPlay; // 0x01FF(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_200[0x80]; // 0x0200(0x0080)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InstanceComponents; // 0x0280(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray BlueprintCreatedComponents; // 0x0290(0x0010)(ExportObject, ZeroConstructor, NonTransactional, ContainsInstancedReference, TextExportTransient, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_2A0[0x8]; // 0x02A0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class UActorComponent* AddComponent(class FName TemplateName, bool bManualAttachment, const struct FTransform& RelativeTransform, const class UObject* ComponentTemplateContext, bool bDeferredFinish); + class UActorComponent* AddComponentByClass(TSubclassOf Class_0, bool bManualAttachment, const struct FTransform& RelativeTransform, bool bDeferredFinish); + void AddTickPrerequisiteActor(class AActor* PrerequisiteActor); + void AddTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent); + void CreateInputComponent(TSubclassOf InputComponentToCreate); + void DetachRootComponentFromParent(bool bMaintainWorldPosition); + void DisableInput(class APlayerController* PlayerController); + void EnableInput(class APlayerController* PlayerController); + void FinishAddComponent(class UActorComponent* Component, bool bManualAttachment, const struct FTransform& RelativeTransform); + void FlushNetDormancy(); + void ForceNetUpdate(); + EPhysicsReplicationMode GetPhysicsReplicationMode(); + bool GetTickableWhenPaused(); + void K2_AddActorLocalOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorLocalRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorLocalTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorWorldOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorWorldRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorWorldTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AddActorWorldTransformKeepScale(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_AttachRootComponentTo(class USceneComponent* InParent, class FName InSocketName, EAttachLocation AttachLocationType, bool bWeldSimulatedBodies); + void K2_AttachRootComponentToActor(class AActor* InParentActor, class FName InSocketName, EAttachLocation AttachLocationType, bool bWeldSimulatedBodies); + bool K2_AttachToActor(class AActor* ParentActor, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies); + bool K2_AttachToComponent(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies); + void K2_DestroyActor(); + void K2_DetachFromActor(EDetachmentRule LocationRule, EDetachmentRule RotationRule, EDetachmentRule ScaleRule); + void K2_OnBecomeViewTarget(class APlayerController* PC); + void K2_OnEndViewTarget(class APlayerController* PC); + void K2_OnReset(); + bool K2_SetActorLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + bool K2_SetActorLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetActorRelativeLocation(const struct FVector& NewRelativeLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetActorRelativeRotation(const struct FRotator& NewRelativeRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + void K2_SetActorRelativeTransform(const struct FTransform& NewRelativeTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + bool K2_SetActorRotation(const struct FRotator& NewRotation, bool bTeleportPhysics); + bool K2_SetActorTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport); + bool K2_TeleportTo(const struct FVector& DestLocation, const struct FRotator& DestRotation); + void MakeNoise(float Loudness, class APawn* NoiseInstigator, const struct FVector& NoiseLocation, float MaxRange, class FName Tag); + void OnRep_AttachmentReplication(); + void OnRep_Instigator(); + void OnRep_Owner(); + void OnRep_ReplicatedMovement(); + void OnRep_ReplicateMovement(); + void PrestreamTextures(float Seconds, bool bEnableStreaming, int32 CinematicTextureGroups); + void ReceiveActorBeginCursorOver(); + void ReceiveActorBeginOverlap(class AActor* OtherActor); + void ReceiveActorEndCursorOver(); + void ReceiveActorEndOverlap(class AActor* OtherActor); + void ReceiveActorOnClicked(const struct FKey& ButtonPressed); + void ReceiveActorOnInputTouchBegin(const ETouchIndex FingerIndex); + void ReceiveActorOnInputTouchEnd(const ETouchIndex FingerIndex); + void ReceiveActorOnInputTouchEnter(const ETouchIndex FingerIndex); + void ReceiveActorOnInputTouchLeave(const ETouchIndex FingerIndex); + void ReceiveActorOnReleased(const struct FKey& ButtonReleased); + void ReceiveAnyDamage(float Damage, const class UDamageType* DamageType, class AController* InstigatedBy, class AActor* DamageCauser); + void ReceiveAsyncPhysicsTick(float DeltaSeconds, float SimSeconds); + void ReceiveBeginPlay(); + void ReceiveDestroyed(); + void ReceiveEndPlay(EEndPlayReason EndPlayReason); + void ReceiveHit(class UPrimitiveComponent* MyComp, class AActor* Other, class UPrimitiveComponent* OtherComp, bool bSelfMoved, const struct FVector& HitLocation, const struct FVector& HitNormal, const struct FVector& NormalImpulse, const struct FHitResult& Hit); + void ReceivePointDamage(float Damage, const class UDamageType* DamageType, const struct FVector& HitLocation, const struct FVector& HitNormal, class UPrimitiveComponent* HitComponent, class FName BoneName, const struct FVector& ShotFromDirection, class AController* InstigatedBy, class AActor* DamageCauser, const struct FHitResult& HitInfo); + void ReceiveRadialDamage(float DamageReceived, const class UDamageType* DamageType, const struct FVector& Origin, const struct FHitResult& HitInfo, class AController* InstigatedBy, class AActor* DamageCauser); + void ReceiveTick(float DeltaSeconds); + void RemoveTickPrerequisiteActor(class AActor* PrerequisiteActor); + void RemoveTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent); + void SetActorEnableCollision(bool bNewActorEnableCollision); + void SetActorHiddenInGame(bool bNewHidden); + void SetActorRelativeScale3D(const struct FVector& NewRelativeScale); + void SetActorScale3D(const struct FVector& NewScale3D); + void SetActorTickEnabled(bool bEnabled); + void SetActorTickInterval(float TickInterval); + void SetAutoDestroyWhenFinished(bool bVal); + void SetLifeSpan(float InLifespan); + void SetMinNetUpdateFrequency(float MinFrequency); + void SetNetCullDistanceSquared(float DistanceSq); + void SetNetDormancy(ENetDormancy NewDormancy); + void SetNetUpdateFrequency(float Frequency); + void SetOwner(class AActor* NewOwner); + void SetPhysicsReplicationMode(const EPhysicsReplicationMode ReplicationMode); + void SetRayTracingGroupId(int32 InRaytracingGroupId); + void SetReplicateMovement(bool bInReplicateMovement); + void SetReplicates(bool bInReplicates); + void SetTickableWhenPaused(bool bTickableWhenPaused); + void SetTickGroup(ETickingGroup NewTickGroup); + void TearOff(); + void UserConstructionScript(); + + bool ActorHasTag(class FName Tag) const; + bool CanTriggerResimulation() const; + class UActorComponent* FindComponentByTag(TSubclassOf ComponentClass, class FName Tag) const; + void GetActorBounds(bool bOnlyCollidingComponents, struct FVector* Origin, struct FVector* BoxExtent, bool bIncludeFromChildActors) const; + bool GetActorEnableCollision() const; + void GetActorEyesViewPoint(struct FVector* OutLocation, struct FRotator* OutRotation) const; + struct FVector GetActorForwardVector() const; + struct FVector GetActorRelativeScale3D() const; + struct FVector GetActorRightVector() const; + struct FVector GetActorScale3D() const; + float GetActorTickInterval() const; + float GetActorTimeDilation() const; + struct FVector GetActorUpVector() const; + void GetAllChildActors(TArray* ChildActors, bool bIncludeDescendants) const; + void GetAttachedActors(TArray* OutActors, bool bResetArray, bool bRecursivelyIncludeAttachedActors) const; + class AActor* GetAttachParentActor() const; + class FName GetAttachParentSocketName() const; + class UActorComponent* GetComponentByClass(TSubclassOf ComponentClass) const; + TArray GetComponentsByInterface(TSubclassOf Interface) const; + TArray GetComponentsByTag(TSubclassOf ComponentClass, class FName Tag) const; + float GetDistanceTo(const class AActor* OtherActor) const; + float GetDotProductTo(const class AActor* OtherActor) const; + float GetGameTimeSinceCreation() const; + float GetHorizontalDistanceTo(const class AActor* OtherActor) const; + float GetHorizontalDotProductTo(const class AActor* OtherActor) const; + float GetInputAxisKeyValue(const struct FKey& InputAxisKey) const; + float GetInputAxisValue(const class FName InputAxisName) const; + struct FVector GetInputVectorAxisValue(const struct FKey& InputAxisKey) const; + class APawn* GetInstigator() const; + class AController* GetInstigatorController() const; + class ULevel* GetLevel() const; + struct FTransform GetLevelTransform() const; + float GetLifeSpan() const; + ENetRole GetLocalRole() const; + float GetMinNetUpdateFrequency() const; + float GetNetCullDistanceSquared() const; + float GetNetUpdateFrequency() const; + void GetOverlappingActors(TArray* OverlappingActors, TSubclassOf ClassFilter) const; + void GetOverlappingComponents(TArray* OverlappingComponents) const; + class AActor* GetOwner() const; + class AActor* GetParentActor() const; + class UChildActorComponent* GetParentComponent() const; + int32 GetRayTracingGroupId() const; + ENetRole GetRemoteRole() const; + float GetResimulationThreshold() const; + float GetSquaredDistanceTo(const class AActor* OtherActor) const; + float GetSquaredHorizontalDistanceTo(const class AActor* OtherActor) const; + const struct FTransform GetTransform() const; + struct FVector GetVelocity() const; + float GetVerticalDistanceTo(const class AActor* OtherActor) const; + bool HasAuthority() const; + bool IsActorBeingDestroyed() const; + bool IsActorTickEnabled() const; + bool IsChildActor() const; + bool IsOverlappingActor(const class AActor* Other) const; + struct FVector K2_GetActorLocation() const; + struct FRotator K2_GetActorRotation() const; + TArray K2_GetComponentsByClass(TSubclassOf ComponentClass) const; + class USceneComponent* K2_GetRootComponent() const; + bool WasRecentlyRendered(float Tolerance) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Actor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Actor") + } + static class AActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AActor; + +// Class Engine.VectorFieldVolume +// 0x0008 (0x02B0 - 0x02A8) +class AVectorFieldVolume final : public AActor +{ +public: + class UVectorFieldComponent* VectorFieldComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VectorFieldVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VectorFieldVolume") + } + static class AVectorFieldVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AVectorFieldVolume; + +// Class Engine.DebugDrawService +// 0x0000 (0x0028 - 0x0028) +class UDebugDrawService final : public UBlueprintFunctionLibrary +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugDrawService") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugDrawService") + } + static class UDebugDrawService* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDebugDrawService; + +// Class Engine.PrimitiveComponent +// 0x02C0 (0x04F0 - 0x0230) +#pragma pack(push, 0x1) +class alignas(0x10) UPrimitiveComponent : public USceneComponent +{ +public: + uint8 Pad_230[0x18]; // 0x0230(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + float MinDrawDistance; // 0x0248(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LDMaxDrawDistance; // 0x024C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CachedMaxDrawDistance; // 0x0250(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESceneDepthPriorityGroup DepthPriorityGroup; // 0x0254(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESceneDepthPriorityGroup ViewOwnerDepthPriorityGroup; // 0x0255(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EIndirectLightingCacheQuality IndirectLightingCacheQuality; // 0x0256(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELightmapType LightmapType; // 0x0257(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EHLODBatchingPolicy HLODBatchingPolicy; // 0x0258(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EShadowCacheInvalidationBehavior ShadowCacheInvalidationBehavior; // 0x0259(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableAutoLODGeneration : 1; // 0x025A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsActorTextureStreamingBuiltData : 1; // 0x025A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsValidTextureStreamingBuiltData : 1; // 0x025A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNeverDistanceCull : 1; // 0x025A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_25A_4 : 4; // 0x025A(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_25B_0 : 2; // 0x025B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAlwaysCreatePhysicsState : 1; // 0x025B(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateOverlapEvents : 1; // 0x025B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bMultiBodyOverlap : 1; // 0x025B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTraceComplexOnMove : 1; // 0x025B(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReturnMaterialOnMove : 1; // 0x025B(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseViewOwnerDepthPriorityGroup : 1; // 0x025B(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowCullDistanceVolume : 1; // 0x025C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInReflectionCaptures : 1; // 0x025C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInRealTimeSkyCaptures : 1; // 0x025C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInRayTracing : 1; // 0x025C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderInMainPass : 1; // 0x025C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderInDepthPass : 1; // 0x025C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReceivesDecals : 1; // 0x025C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHoldout : 1; // 0x025C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOwnerNoSee : 1; // 0x025D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOnlyOwnerSee : 1; // 0x025D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTreatAsBackgroundForOcclusion : 1; // 0x025D(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAsOccluder : 1; // 0x025D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSelectable : 1; // 0x025D(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWantsEditorEffects : 1; // 0x025D(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceMipStreaming : 1; // 0x025D(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPerInstanceHitProxies : 1; // 0x025D(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastShadow : 1; // 0x025E(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmissiveLightSource : 1; // 0x025E(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDynamicIndirectLighting : 1; // 0x025E(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectIndirectLightingWhileHidden : 1; // 0x025E(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDistanceFieldLighting : 1; // 0x025E(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDynamicShadow : 1; // 0x025E(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastStaticShadow : 1; // 0x025E(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastVolumetricTranslucentShadow : 1; // 0x025E(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastContactShadow : 1; // 0x025F(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSelfShadowOnly : 1; // 0x025F(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastFarShadow : 1; // 0x025F(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastInsetShadow : 1; // 0x025F(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastCinematicShadow : 1; // 0x025F(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastHiddenShadow : 1; // 0x025F(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowAsTwoSided : 1; // 0x025F(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLightAsIfStatic : 1; // 0x025F(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLightAttachmentsAsGroup : 1; // 0x0260(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bExcludeFromLightAttachmentGroup : 1; // 0x0260(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReceiveMobileCSMShadows : 1; // 0x0260(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSingleSampleShadowFromStationaryLights : 1; // 0x0260(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreRadialImpulse : 1; // 0x0260(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreRadialForce : 1; // 0x0260(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyImpulseOnDamage : 1; // 0x0260(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReplicatePhysicsToAutonomousProxy : 1; // 0x0260(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFillCollisionUnderneathForNavmesh : 1; // 0x0261(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 AlwaysLoadOnClient : 1; // 0x0261(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 AlwaysLoadOnServer : 1; // 0x0261(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseEditorCompositing : 1; // 0x0261(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsBeingMovedByEditor : 1; // 0x0261(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderCustomDepth : 1; // 0x0261(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInSceneCaptureOnly : 1; // 0x0261(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHiddenInSceneCapture : 1; // 0x0261(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRayTracingFarField : 1; // 0x0262(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EFirstPersonPrimitiveType FirstPersonPrimitiveType; // 0x0263(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitPad_264_0 : 1; // 0x0264(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bHasNoStreamableTextures : 1; // 0x0264(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bStaticWhenNotMoveable : 1; // 0x0264(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + EHasCustomNavigableGeometry bHasCustomNavigableGeometry; // 0x0265(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_266[0x1]; // 0x0266(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ECanBeCharacterBase CanCharacterStepUpOn; // 0x0267(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightingChannels LightingChannels; // 0x0268(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 Pad_269[0x20]; // 0x0269(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + ERayTracingGroupCullingPriority RayTracingGroupCullingPriority; // 0x0289(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERendererStencilMask CustomDepthStencilWriteMask; // 0x028A(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ExcludeFromHLODLevels; // 0x028B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 RayTracingGroupId; // 0x028C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VisibilityId; // 0x0290(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CustomDepthStencilValue; // 0x0294(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCustomPrimitiveData CustomPrimitiveData; // 0x0298(0x0010)(Edit, NativeAccessSpecifierPrivate) + struct FCustomPrimitiveData CustomPrimitiveDataInternal; // 0x02A8(0x0010)(Transient, NativeAccessSpecifierPrivate) + uint8 Pad_2B8[0x8]; // 0x02B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TranslucencySortPriority; // 0x02C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucencySortDistanceOffset; // 0x02C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RuntimeVirtualTextures; // 0x02C8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + int8 VirtualTextureLodBias; // 0x02D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 VirtualTextureCullMips; // 0x02D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 VirtualTextureMinCoverage; // 0x02DA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureMainPassType VirtualTextureRenderPassType; // 0x02DB(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2DC[0x8]; // 0x02DC(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float BoundsScale; // 0x02E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E8[0x30]; // 0x02E8(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MoveIgnoreActors; // 0x0318(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray MoveIgnoreComponents; // 0x0328(0x0010)(ExportObject, ZeroConstructor, Transient, DuplicateTransient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_338[0x10]; // 0x0338(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBodyInstance BodyInstance; // 0x0348(0x0178)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentHit; // 0x04C0(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentBeginOverlap; // 0x04C1(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentEndOverlap; // 0x04C2(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentWake; // 0x04C3(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnComponentSleep; // 0x04C4(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_4C5[0x1]; // 0x04C5(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + FMulticastSparseDelegateProperty_ OnComponentPhysicsStateChanged; // 0x04C6(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, TextExportTransient, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnBeginCursorOver; // 0x04C7(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnEndCursorOver; // 0x04C8(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnClicked; // 0x04C9(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnReleased; // 0x04CA(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchBegin; // 0x04CB(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchEnd; // 0x04CC(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchEnter; // 0x04CD(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ OnInputTouchLeave; // 0x04CE(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_4CF[0x11]; // 0x04CF(0x0011)(Fixing Size After Last Property [ Dumper-7 ]) + class UPrimitiveComponent* LODParentPrimitive; // 0x04E0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, NonPIEDuplicateTransient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void AddAngularImpulseInDegrees(const struct FVector& Impulse, class FName BoneName, bool bVelChange); + void AddAngularImpulseInRadians(const struct FVector& Impulse, class FName BoneName, bool bVelChange); + void AddForce(const struct FVector& Force, class FName BoneName, bool bAccelChange); + void AddForceAtLocation(const struct FVector& Force, const struct FVector& Location, class FName BoneName); + void AddForceAtLocationLocal(const struct FVector& Force, const struct FVector& Location, class FName BoneName); + void AddImpulse(const struct FVector& Impulse, class FName BoneName, bool bVelChange); + void AddImpulseAtLocation(const struct FVector& Impulse, const struct FVector& Location, class FName BoneName); + void AddRadialForce(const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bAccelChange); + void AddRadialImpulse(const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bVelChange); + void AddTorqueInDegrees(const struct FVector& Torque, class FName BoneName, bool bAccelChange); + void AddTorqueInRadians(const struct FVector& Torque, class FName BoneName, bool bAccelChange); + void AddVelocityChangeImpulseAtLocation(const struct FVector& Impulse, const struct FVector& Location, class FName BoneName); + void ClearMoveIgnoreActors(); + void ClearMoveIgnoreComponents(); + TArray CopyArrayOfMoveIgnoreActors(); + TArray CopyArrayOfMoveIgnoreComponents(); + class UMaterialInstanceDynamic* CreateAndSetMaterialInstanceDynamic(int32 ElementIndex); + class UMaterialInstanceDynamic* CreateAndSetMaterialInstanceDynamicFromMaterial(int32 ElementIndex, class UMaterialInterface* Parent); + class UMaterialInstanceDynamic* CreateDynamicMaterialInstance(int32 ElementIndex, class UMaterialInterface* SourceMaterial, class FName OptionalName); + float GetMaxDepenetrationVelocity(class FName BoneName); + struct FVector GetPhysicsLinearVelocity(class FName BoneName); + struct FVector GetPhysicsLinearVelocityAtPoint(const struct FVector& Point, class FName BoneName); + void IgnoreActorWhenMoving(class AActor* Actor, bool bShouldIgnore); + void IgnoreComponentWhenMoving(class UPrimitiveComponent* Component, bool bShouldIgnore); + void InvalidateLumenSurfaceCache(); + bool IsAnyRigidBodyAwake(); + bool K2_BoxOverlapComponent(const struct FVector& InBoxCentre, const struct FBox& InBox, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit); + bool K2_LineTraceComponent(const struct FVector& TraceStart, const struct FVector& TraceEnd, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit); + bool K2_SphereOverlapComponent(const struct FVector& InSphereCentre, float InSphereRadius, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit); + bool K2_SphereTraceComponent(const struct FVector& TraceStart, const struct FVector& TraceEnd, float SphereRadius, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit); + void PutRigidBodyToSleep(class FName BoneName); + void SetAffectDistanceFieldLighting(bool NewAffectDistanceFieldLighting); + void SetAffectDynamicIndirectLighting(bool bNewAffectDynamicIndirectLighting); + void SetAffectIndirectLightingWhileHidden(bool bNewAffectIndirectLightingWhileHidden); + void SetAllMassScale(float InMassScale); + void SetAllPhysicsAngularVelocityInDegrees(const struct FVector& NewAngVel, bool bAddToCurrent); + void SetAllPhysicsAngularVelocityInRadians(const struct FVector& NewAngVel, bool bAddToCurrent); + void SetAllPhysicsLinearVelocity(const struct FVector& NewVel, bool bAddToCurrent); + void SetAllUseCCD(bool InUseCCD); + void SetAllUseMACD(bool InUseMACD); + void SetAngularDamping(float InDamping); + void SetBoundsScale(float NewBoundsScale); + void SetCastContactShadow(bool bInCastContactShadow); + void SetCastHiddenShadow(bool NewCastHiddenShadow); + void SetCastInsetShadow(bool bInCastInsetShadow); + void SetCastShadow(bool NewCastShadow); + void SetCenterOfMass(const struct FVector& CenterOfMassOffset, class FName BoneName); + void SetCollisionEnabled(ECollisionEnabled NewType); + void SetCollisionObjectType(ECollisionChannel Channel); + void SetCollisionProfileName(class FName InCollisionProfileName, bool bUpdateOverlaps); + void SetCollisionResponseToAllChannels(ECollisionResponse NewResponse); + void SetCollisionResponseToChannel(ECollisionChannel Channel, ECollisionResponse NewResponse); + void SetConstraintMode(EDOFMode ConstraintMode); + void SetCullDistance(float NewCullDistance); + void SetCustomDepthStencilValue(int32 Value); + void SetCustomDepthStencilWriteMask(ERendererStencilMask WriteMaskBit); + void SetCustomPrimitiveDataFloat(int32 DataIndex, float Value); + void SetCustomPrimitiveDataVector2(int32 DataIndex, const struct FVector2D& Value); + void SetCustomPrimitiveDataVector3(int32 DataIndex, const struct FVector& Value); + void SetCustomPrimitiveDataVector4(int32 DataIndex, const struct FVector4& Value); + void SetDefaultCustomPrimitiveDataFloat(int32 DataIndex, float Value); + void SetDefaultCustomPrimitiveDataVector2(int32 DataIndex, const struct FVector2D& Value); + void SetDefaultCustomPrimitiveDataVector3(int32 DataIndex, const struct FVector& Value); + void SetDefaultCustomPrimitiveDataVector4(int32 DataIndex, const struct FVector4& Value); + void SetEmissiveLightSource(bool NewEmissiveLightSource); + void SetEnableGravity(bool bGravityEnabled); + void SetExcludedFromHLODLevel(EHLODLevelExclusion HLODLevel, bool bExcluded); + void SetExcludeForSpecificHLODLevels(const TArray& InExcludeForSpecificHLODLevels); + void SetExcludeFromLightAttachmentGroup(bool bInExcludeFromLightAttachmentGroup); + void SetFirstPersonPrimitiveType(EFirstPersonPrimitiveType Value); + void SetGenerateOverlapEvents(bool bInGenerateOverlapEvents); + void SetHiddenInSceneCapture(bool bValue); + void SetHoldout(bool bNewHoldout); + void SetIgnoreBoundsForEditorFocus(bool bIgnore); + void SetLightAttachmentsAsGroup(bool bInLightAttachmentsAsGroup); + void SetLightingChannels(bool bChannel0, bool bChannel1, bool bChannel2); + void SetLinearDamping(float InDamping); + void SetMassOverrideInKg(class FName BoneName, float MassInKg, bool bOverrideMass); + void SetMassScale(class FName BoneName, float InMassScale); + void SetMaterial(int32 ElementIndex, class UMaterialInterface* Material); + void SetMaterialByName(class FName MaterialSlotName, class UMaterialInterface* Material); + void SetMaxDepenetrationVelocity(class FName BoneName, float InMaxDepenetrationVelocity); + void SetNotifyRigidBodyCollision(bool bNewNotifyRigidBodyCollision); + void SetOnlyOwnerSee(bool bNewOnlyOwnerSee); + void SetOwnerNoSee(bool bNewOwnerNoSee); + void SetPhysicsAngularVelocityInDegrees(const struct FVector& NewAngVel, bool bAddToCurrent, class FName BoneName); + void SetPhysicsAngularVelocityInRadians(const struct FVector& NewAngVel, bool bAddToCurrent, class FName BoneName); + void SetPhysicsLinearVelocity(const struct FVector& NewVel, bool bAddToCurrent, class FName BoneName); + void SetPhysicsMaxAngularVelocityInDegrees(float NewMaxAngVel, bool bAddToCurrent, class FName BoneName); + void SetPhysicsMaxAngularVelocityInRadians(float NewMaxAngVel, bool bAddToCurrent, class FName BoneName); + void SetPhysMaterialOverride(class UPhysicalMaterial* NewPhysMaterial); + void SetReceivesDecals(bool bNewReceivesDecals); + void SetRenderCustomDepth(bool bValue); + void SetRenderInDepthPass(bool bValue); + void SetRenderInMainPass(bool bValue); + void SetScalarParameterForCustomPrimitiveData(class FName ParameterName, float Value); + void SetScalarParameterForDefaultCustomPrimitiveData(class FName ParameterName, float Value); + void SetSimulatePhysics(bool bSimulate); + void SetSingleSampleShadowFromStationaryLights(bool bNewSingleSampleShadowFromStationaryLights); + void SetStaticWhenNotMoveable(bool bInStaticWhenNotMoveable); + void SetTranslucencySortDistanceOffset(float NewTranslucencySortDistanceOffset); + void SetTranslucentSortPriority(int32 NewTranslucentSortPriority); + void SetUpdateKinematicFromSimulation(bool bUpdateKinematicFromSimulation); + void SetUseCCD(bool InUseCCD, class FName BoneName); + void SetUseMACD(bool InUseMACD, class FName BoneName); + void SetVectorParameterForCustomPrimitiveData(class FName ParameterName, const struct FVector4& Value); + void SetVectorParameterForDefaultCustomPrimitiveData(class FName ParameterName, const struct FVector4& Value); + void SetVisibleInRayTracing(bool bNewVisibleInRayTracing); + void SetVisibleInSceneCaptureOnly(bool bValue); + void SetWalkableSlopeOverride(const struct FWalkableSlopeOverride& NewOverride); + void WakeAllRigidBodies(); + void WakeRigidBody(class FName BoneName); + + bool AllowHLODLevelsExclusion() const; + bool CanCharacterStepUp(class APawn* Pawn) const; + float GetAngularDamping() const; + struct FBodyInstanceAsyncPhysicsTickHandle GetBodyInstanceAsyncPhysicsTickHandle(class FName BoneName, bool bGetWelded, int32 Index_0) const; + struct FVector GetCenterOfMass(class FName BoneName) const; + float GetClosestPointOnCollision(const struct FVector& Point, struct FVector* OutPointOnBody, class FName BoneName) const; + ECollisionEnabled GetCollisionEnabled() const; + ECollisionChannel GetCollisionObjectType() const; + class FName GetCollisionProfileName() const; + ECollisionResponse GetCollisionResponseToChannel(ECollisionChannel Channel) const; + int32 GetCustomPrimitiveDataIndexForScalarParameter(class FName ParameterName) const; + int32 GetCustomPrimitiveDataIndexForVectorParameter(class FName ParameterName) const; + TArray GetExcludeForSpecificHLODLevels() const; + bool GetGenerateOverlapEvents() const; + bool GetIgnoreBoundsForEditorFocus() const; + struct FVector GetInertiaTensor(class FName BoneName) const; + float GetLinearDamping() const; + float GetMass() const; + float GetMassScale(class FName BoneName) const; + class UMaterialInterface* GetMaterial(int32 ElementIndex) const; + class UMaterialInterface* GetMaterialByName(class FName MaterialSlotName) const; + class UMaterialInterface* GetMaterialFromCollisionFaceIndex(int32 FaceIndex, int32* SectionIndex) const; + int32 GetMaterialIndex(class FName MaterialSlotName) const; + TArray GetMaterialSlotNames() const; + int32 GetNumMaterials() const; + void GetOverlappingActors(TArray* OverlappingActors, TSubclassOf ClassFilter) const; + void GetOverlappingComponents(TArray* OutOverlappingComponents) const; + struct FVector GetPhysicsAngularVelocityInDegrees(class FName BoneName) const; + struct FVector GetPhysicsAngularVelocityInRadians(class FName BoneName) const; + bool GetStaticWhenNotMoveable() const; + bool GetUpdateKinematicFromSimulation() const; + const struct FWalkableSlopeOverride GetWalkableSlopeOverride() const; + bool IsExcludedFromHLODLevel(EHLODLevelExclusion HLODLevel) const; + bool IsGravityEnabled() const; + bool IsMaterialSlotNameValid(class FName MaterialSlotName) const; + bool IsOverlappingActor(const class AActor* Other) const; + bool IsOverlappingComponent(const class UPrimitiveComponent* OtherComp) const; + bool K2_IsCollisionEnabled() const; + bool K2_IsPhysicsCollisionEnabled() const; + bool K2_IsQueryCollisionEnabled() const; + struct FVector ScaleByMomentOfInertia(const struct FVector& InputVector, class FName BoneName) const; + bool WasRecentlyRendered(float Tolerance) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PrimitiveComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PrimitiveComponent") + } + static class UPrimitiveComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UPrimitiveComponent; + +// Class Engine.MaterialExpressionTextureBase +// 0x0010 (0x00C0 - 0x00B0) +class UMaterialExpressionTextureBase : public UMaterialExpression +{ +public: + class UTexture* Texture; // 0x00B0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialSamplerType SamplerType; // 0x00B8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 IsDefaultMeshpaintTexture : 1; // 0x00B9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BA[0x6]; // 0x00BA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureBase") + } + static class UMaterialExpressionTextureBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureBase; + +// Class Engine.MaterialExpressionTextureSample +// 0x00F8 (0x01B8 - 0x00C0) +class UMaterialExpressionTextureSample : public UMaterialExpressionTextureBase +{ +public: + struct FExpressionInput Coordinates; // 0x00C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput TextureObject; // 0x00E8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MipValue; // 0x0110(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CoordinatesDX; // 0x0138(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CoordinatesDY; // 0x0160(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AutomaticViewMipBiasValue; // 0x0188(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ETextureMipValueMode MipValueMode; // 0x01B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESamplerSourceMode SamplerSource; // 0x01B1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 AutomaticViewMipBias : 1; // 0x01B2(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 ConstCoordinate; // 0x01B3(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ConstMipValue; // 0x01B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSample") + } + static class UMaterialExpressionTextureSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSample; + +// Class Engine.MaterialExpressionParticleSubUV +// 0x0008 (0x01C0 - 0x01B8) +class UMaterialExpressionParticleSubUV final : public UMaterialExpressionTextureSample +{ +public: + uint8 bBlend : 1; // 0x01B8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1B9[0x7]; // 0x01B9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleSubUV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleSubUV") + } + static class UMaterialExpressionParticleSubUV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleSubUV; + +// Class Engine.TextRenderComponent +// 0x0040 (0x0530 - 0x04F0) +class UTextRenderComponent final : public UPrimitiveComponent +{ +public: + class FText Text; // 0x04E8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + class UMaterialInterface* TextMaterial; // 0x04F8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* Font; // 0x0500(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EHorizTextAligment HorizontalAlignment; // 0x0508(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVerticalTextAligment VerticalAlignment; // 0x0509(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_50A[0x2]; // 0x050A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor TextRenderColor; // 0x050C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float XScale; // 0x0510(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float YScale; // 0x0514(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WorldSize; // 0x0518(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InvDefaultSize; // 0x051C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HorizSpacingAdjust; // 0x0520(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VertSpacingAdjust; // 0x0524(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAlwaysRenderAsText : 1; // 0x0528(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_529[0x7]; // 0x0529(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void K2_SetText(const class FText& Value); + void SetFont(class UFont* Value); + void SetHorizontalAlignment(EHorizTextAligment Value); + void SetHorizSpacingAdjust(float Value); + void SetText(const class FText& Value); + void SetTextMaterial(class UMaterialInterface* Material); + void SetTextRenderColor(const struct FColor& Value); + void SetVerticalAlignment(EVerticalTextAligment Value); + void SetVertSpacingAdjust(float Value); + void SetWorldSize(float Value); + void SetXScale(float Value); + void SetYScale(float Value); + + struct FVector GetTextLocalSize() const; + struct FVector GetTextWorldSize() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextRenderComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextRenderComponent") + } + static class UTextRenderComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextRenderComponent; + +// Class Engine.MaterialExpressionParticleSubUVProperties +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleSubUVProperties final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleSubUVProperties") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleSubUVProperties") + } + static class UMaterialExpressionParticleSubUVProperties* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleSubUVProperties; + +// Class Engine.Info +// 0x0000 (0x02A8 - 0x02A8) +class AInfo : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Info") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Info") + } + static class AInfo* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AInfo; + +// Class Engine.MaterialExpressionHairColor +// 0x0078 (0x0128 - 0x00B0) +class UMaterialExpressionHairColor final : public UMaterialExpression +{ +public: + struct FExpressionInput Melanin; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Redness; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput DyeColor; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionHairColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionHairColor") + } + static class UMaterialExpressionHairColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionHairColor; + +// Class Engine.MaterialExpressionParticleDirection +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleDirection final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleDirection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleDirection") + } + static class UMaterialExpressionParticleDirection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleDirection; + +// Class Engine.WorldPartitionEditorLoaderAdapter +// 0x0008 (0x0030 - 0x0028) +class UWorldPartitionEditorLoaderAdapter final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionEditorLoaderAdapter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionEditorLoaderAdapter") + } + static class UWorldPartitionEditorLoaderAdapter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionEditorLoaderAdapter; + +// Class Engine.MeshComponent +// 0x0030 (0x0520 - 0x04F0) +#pragma pack(push, 0x1) +class alignas(0x10) UMeshComponent : public UPrimitiveComponent +{ +public: + TArray OverrideMaterials; // 0x04E8(0x0010)(Edit, ZeroConstructor, AdvancedDisplay, UObjectWrapper, NativeAccessSpecifierPublic) + class UMaterialInterface* OverlayMaterial; // 0x04F8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverlayMaterialMaxDrawDistance; // 0x0500(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableMaterialParameterCaching : 1; // 0x0504(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_505[0x13]; // 0x0505(0x0013)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool PrestreamMeshLODs(float Seconds); + void PrestreamTextures(float Seconds, bool bPrioritizeCharacterTextures, int32 CinematicTextureGroups); + void SetColorParameterValueOnMaterials(const class FName ParameterName, const struct FLinearColor& ParameterValue); + void SetOverlayMaterial(class UMaterialInterface* NewOverlayMaterial); + void SetOverlayMaterialMaxDrawDistance(float InMaxDrawDistance); + void SetScalarParameterValueOnMaterials(const class FName ParameterName, const float ParameterValue); + void SetVectorParameterValueOnMaterials(const class FName ParameterName, const struct FVector& ParameterValue); + + TArray GetMaterials() const; + class UMaterialInterface* GetOverlayMaterial() const; + float GetOverlayMaterialMaxDrawDistance() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshComponent") + } + static class UMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UMeshComponent; + +// Class Engine.MaterialExpressionSRGBColorToWorkingColorSpace +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionSRGBColorToWorkingColorSpace final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSRGBColorToWorkingColorSpace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSRGBColorToWorkingColorSpace") + } + static class UMaterialExpressionSRGBColorToWorkingColorSpace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSRGBColorToWorkingColorSpace; + +// Class Engine.StaticMeshComponent +// 0x00A0 (0x05C0 - 0x0520) +#pragma pack(push, 0x1) +class alignas(0x10) UStaticMeshComponent : public UMeshComponent +{ +public: + int32 ForcedLodModel; // 0x0518(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinLOD; // 0x051C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubDivisionStepSize; // 0x0520(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor WireframeColorOverride; // 0x0524(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UStaticMesh* StaticMesh; // 0x0528(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 WorldPositionOffsetDisableDistance; // 0x0530(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bForceNaniteForMasked : 1; // 0x0534(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisallowNanite : 1; // 0x0534(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceDisableNanite : 1; // 0x0534(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEvaluateWorldPositionOffset : 1; // 0x0534(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWorldPositionOffsetWritesVelocity : 1; // 0x0534(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEvaluateWorldPositionOffsetInRayTracing : 1; // 0x0534(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_534_6 : 2; // 0x0534(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_535_0 : 1; // 0x0535(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bOverrideWireframeColor : 1; // 0x0535(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideMinLOD : 1; // 0x0535(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideNavigationExport : 1; // 0x0535(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceNavigationObstacle : 1; // 0x0535(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisallowMeshPaintPerInstance : 1; // 0x0535(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreInstanceForTextureStreaming : 1; // 0x0535(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideLightMapRes : 1; // 0x0535(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDistanceFieldIndirectShadow : 1; // 0x0536(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideDistanceFieldSelfShadowBias : 1; // 0x0536(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseSubDivisions : 1; // 0x0536(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseDefaultCollision : 1; // 0x0536(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSortTriangles : 1; // 0x0536(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReverseCulling : 1; // 0x0536(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableVertexColorMeshPainting : 1; // 0x0536(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableTextureColorMeshPainting : 1; // 0x0536(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideMeshPaintTextureCoordinateIndex : 1; // 0x0537(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideMeshPaintTextureResolution : 1; // 0x0537(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + int32 OverriddenMeshPaintTextureCoordinateIndex; // 0x0538(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OverriddenMeshPaintTextureResolution; // 0x053C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OverriddenLightMapRes; // 0x0540(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_544[0x4]; // 0x0544(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture* MeshPaintTextureCooked; // 0x0548(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* MeshPaintTextureOverride; // 0x0550(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldIndirectShadowMinVisibility; // 0x0558(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldSelfShadowBias; // 0x055C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StreamingDistanceMultiplier; // 0x0560(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NanitePixelProgrammableDistance; // 0x0564(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LODData; // 0x0568(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + TArray StreamingTextureData; // 0x0578(0x0010)(ZeroConstructor, NonTransactional, NativeAccessSpecifierPublic) + struct FLightmassPrimitiveSettings LightmassSettings; // 0x0588(0x0018)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_5A0[0x18]; // 0x05A0(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool GetInitialEvaluateWorldPositionOffset(); + void OnRep_StaticMesh(class UStaticMesh* OldStaticMesh); + void SetDistanceFieldSelfShadowBias(float NewValue); + void SetEvaluateWorldPositionOffset(bool NewValue); + void SetEvaluateWorldPositionOffsetInRayTracing(bool NewValue); + void SetForceDisableNanite(bool bInForceDisableNanite); + void SetForcedLodModel(int32 NewForcedLodModel); + void SetReverseCulling(bool ReverseCulling); + bool SetStaticMesh(class UStaticMesh* NewMesh); + void SetWorldPositionOffsetDisableDistance(int32 NewValue); + void UpdateInitialEvaluateWorldPositionOffset(); + + void GetLocalBounds(struct FVector* min_0, struct FVector* max_0) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticMeshComponent") + } + static class UStaticMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UStaticMeshComponent; + +// Class Engine.MaterialExpressionGIReplace +// 0x0078 (0x0128 - 0x00B0) +class UMaterialExpressionGIReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput StaticIndirect; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput DynamicIndirect; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionGIReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionGIReplace") + } + static class UMaterialExpressionGIReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionGIReplace; + +// Class Engine.SoundEffectPreset +// 0x0040 (0x0068 - 0x0028) +class USoundEffectPreset : public UObject +{ +public: + uint8 Pad_28[0x40]; // 0x0028(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundEffectPreset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundEffectPreset") + } + static class USoundEffectPreset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundEffectPreset; + +// Class Engine.SoundEffectSubmixPreset +// 0x0000 (0x0068 - 0x0068) +class USoundEffectSubmixPreset : public USoundEffectPreset +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundEffectSubmixPreset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundEffectSubmixPreset") + } + static class USoundEffectSubmixPreset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundEffectSubmixPreset; + +// Class Engine.ParticleModule +// 0x0008 (0x0030 - 0x0028) +class UParticleModule : public UObject +{ +public: + uint8 bSpawnModule : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateModule : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFinalUpdateModule : 1; // 0x0028(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateForGPUEmitter : 1; // 0x0028(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCurvesAsColor : 1; // 0x0028(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 b3DDrawMode : 1; // 0x0028(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupported3DDrawMode : 1; // 0x0028(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnabled : 1; // 0x0028(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEditable : 1; // 0x0029(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 LODDuplicate : 1; // 0x0029(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsRandomSeed : 1; // 0x0029(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRequiresLoopingNotification : 1; // 0x0029(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 LODValidity; // 0x002A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B[0x5]; // 0x002B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModule") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModule") + } + static class UParticleModule* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModule; + +// Class Engine.ParticleModuleOrientationBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleOrientationBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleOrientationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleOrientationBase") + } + static class UParticleModuleOrientationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleOrientationBase; + +// Class Engine.MaterialExpressionVolumetricCloudEmptySpaceSkippingInput +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVolumetricCloudEmptySpaceSkippingInput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVolumetricCloudEmptySpaceSkippingInput") + } + static class UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVolumetricCloudEmptySpaceSkippingInput; + +// Class Engine.AnimNotifyState +// 0x0008 (0x0030 - 0x0028) +class UAnimNotifyState : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + float GetDefaultTriggerWeightThreshold() const; + class FString GetNotifyName() const; + bool Received_NotifyBegin(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, float TotalDuration, const struct FAnimNotifyEventReference& EventReference) const; + bool Received_NotifyEnd(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, const struct FAnimNotifyEventReference& EventReference) const; + bool Received_NotifyTick(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, float FrameDeltaTime, const struct FAnimNotifyEventReference& EventReference) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyState") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyState") + } + static class UAnimNotifyState* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyState; + +// Class Engine.AnimNotifyState_TimedParticleEffect +// 0x0048 (0x0078 - 0x0030) +class UAnimNotifyState_TimedParticleEffect final : public UAnimNotifyState +{ +public: + class UParticleSystem* PSTemplate; // 0x0030(0x0008)(Edit, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0038(0x0008)(Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocationOffset; // 0x0040(0x0018)(Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RotationOffset; // 0x0058(0x0018)(Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bDestroyAtEnd; // 0x0070(0x0001)(Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyState_TimedParticleEffect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyState_TimedParticleEffect") + } + static class UAnimNotifyState_TimedParticleEffect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyState_TimedParticleEffect; + +// Class Engine.MaterialExpressionStaticBool +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionStaticBool final : public UMaterialExpression +{ +public: + uint8 Value : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStaticBool") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStaticBool") + } + static class UMaterialExpressionStaticBool* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStaticBool; + +// Class Engine.TriggerBase +// 0x0008 (0x02B0 - 0x02A8) +class ATriggerBase : public AActor +{ +public: + class UShapeComponent* CollisionComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TriggerBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TriggerBase") + } + static class ATriggerBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATriggerBase; + +// Class Engine.TriggerSphere +// 0x0000 (0x02B0 - 0x02B0) +class ATriggerSphere final : public ATriggerBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TriggerSphere") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TriggerSphere") + } + static class ATriggerSphere* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATriggerSphere; + +// Class Engine.InstancedStaticMeshComponent +// 0x0350 (0x0910 - 0x05C0) +class UInstancedStaticMeshComponent : public UStaticMeshComponent +{ +public: + uint8 Pad_5B8[0x8]; // 0x05B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray PerInstanceSMData; // 0x05C0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray PerInstancePrevTransform; // 0x05D0(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + struct FBox NavigationBounds; // 0x05E0(0x0038)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_618[0x8]; // 0x0618(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform PreviousComponentTransform; // 0x0620(0x0060)(Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCustomDataFloats; // 0x0680(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstancingRandomSeed; // 0x0684(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PerInstanceSMCustomData; // 0x0688(0x0010)(Edit, EditFixedSize, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + TArray AdditionalRandomSeeds; // 0x0698(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float InstanceLODDistanceScale; // 0x06A8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceStartCullDistance; // 0x06AC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceEndCullDistance; // 0x06B0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseGpuLodSelection : 1; // 0x06B4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritPerInstanceData : 1; // 0x06B4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableCollision : 1; // 0x06B4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_6B5[0x3]; // 0x06B5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InstanceReorderTable; // 0x06B8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_6C8[0xB0]; // 0x06C8(0x00B0)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumPendingLightmaps; // 0x0778(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, Protected, TextExportTransient, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_77C[0x184]; // 0x077C(0x0184)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CachedMappings; // 0x0900(0x0010)(ZeroConstructor, Transient, DuplicateTransient, Protected, TextExportTransient, NativeAccessSpecifierProtected) + +public: + int32 AddInstance(const struct FTransform& InstanceTransform, bool bWorldSpace); + TArray AddInstances(const TArray& InstanceTransforms, bool bShouldReturnIndices, bool bWorldSpace, bool bUpdateNavigation); + int32 AddInstanceWorldSpace(const struct FTransform& WorldTransform); + bool BatchUpdateInstancesTransform(int32 StartInstanceIndex, int32 NumInstances, const struct FTransform& NewInstancesTransform, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport); + bool BatchUpdateInstancesTransforms(int32 StartInstanceIndex, const TArray& NewInstancesTransforms, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport); + void ClearInstances(); + bool RemoveInstance(int32 InstanceIndex); + bool RemoveInstances(const TArray& InstancesToRemove); + void SetCullDistances(int32 StartCullDistance, int32 EndCullDistance); + bool SetCustomDataValue(int32 InstanceIndex, int32 CustomDataIndex, float CustomDataValue, bool bMarkRenderStateDirty); + void SetLODDistanceScale(float InLODDistanceScale); + void SetNumCustomDataFloats(int32 InNumCustomDataFloats); + bool UpdateInstanceTransform(int32 InstanceIndex, const struct FTransform& NewInstanceTransform, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport); + + void GetCullDistances(int32* OutStartCullDistance, int32* OutEndCullDistance) const; + int32 GetInstanceCount() const; + TArray GetInstancesOverlappingBox(const struct FBox& Box, bool bBoxInWorldSpace) const; + TArray GetInstancesOverlappingSphere(const struct FVector& Center, float Radius, bool bSphereInWorldSpace) const; + bool GetInstanceTransform(int32 InstanceIndex, struct FTransform* OutInstanceTransform, bool bWorldSpace) const; + float GetLODDistanceScale() const; + bool IsValidInstance(int32 InstanceIndex) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InstancedStaticMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InstancedStaticMeshComponent") + } + static class UInstancedStaticMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInstancedStaticMeshComponent; + +// Class Engine.MaterialExpressionCustomOutput +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionCustomOutput : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCustomOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCustomOutput") + } + static class UMaterialExpressionCustomOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCustomOutput; + +// Class Engine.MaterialExpressionVolumetricAdvancedMaterialOutput +// 0x0140 (0x01F0 - 0x00B0) +class UMaterialExpressionVolumetricAdvancedMaterialOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput PhaseG; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PhaseG2; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PhaseBlend; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MultiScatteringContribution; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MultiScatteringOcclusion; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MultiScatteringEccentricity; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ConservativeDensity; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstPhaseG; // 0x01C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstPhaseG2; // 0x01CC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstPhaseBlend; // 0x01D0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool PerSamplePhaseEvaluation; // 0x01D4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D5[0x3]; // 0x01D5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 MultiScatteringApproximationOctaveCount; // 0x01D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstMultiScatteringContribution; // 0x01DC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstMultiScatteringOcclusion; // 0x01E0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstMultiScatteringEccentricity; // 0x01E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGroundContribution; // 0x01E8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGrayScaleMaterial; // 0x01E9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRayMarchVolumeShadow; // 0x01EA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClampMultiScatteringContribution; // 0x01EB(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1EC[0x4]; // 0x01EC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVolumetricAdvancedMaterialOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVolumetricAdvancedMaterialOutput") + } + static class UMaterialExpressionVolumetricAdvancedMaterialOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVolumetricAdvancedMaterialOutput; + +// Class Engine.MaterialExpressionParameter +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionParameter : public UMaterialExpression +{ +public: + class FName ParameterName; // 0x00B0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x00B8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x00C8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x00D0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParameter") + } + static class UMaterialExpressionParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParameter; + +// Class Engine.MaterialExpressionStaticBoolParameter +// 0x0008 (0x00E0 - 0x00D8) +class UMaterialExpressionStaticBoolParameter : public UMaterialExpressionParameter +{ +public: + uint8 DefaultValue : 1; // 0x00D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DynamicBranch : 1; // 0x00D8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStaticBoolParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStaticBoolParameter") + } + static class UMaterialExpressionStaticBoolParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStaticBoolParameter; + +// Class Engine.HierarchicalInstancedStaticMeshComponent +// 0x01A0 (0x0AB0 - 0x0910) +#pragma pack(push, 0x1) +class alignas(0x10) UHierarchicalInstancedStaticMeshComponent : public UInstancedStaticMeshComponent +{ +public: + uint8 Pad_910[0x10]; // 0x0910(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseTranslatedInstanceSpace : 1; // 0x0920(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_921[0x7]; // 0x0921(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector TranslatedInstanceSpaceOrigin; // 0x0928(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SortedInstances; // 0x0940(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 NumBuiltInstances; // 0x0950(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_954[0x4]; // 0x0954(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBox BuiltInstanceBounds; // 0x0958(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox UnbuiltInstanceBounds; // 0x0990(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray UnbuiltInstanceBoundsList; // 0x09C8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bEnableDensityScaling : 1; // 0x09D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9D9[0x7]; // 0x09D9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + int32 OcclusionLayerNumNodes; // 0x09E0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9E4[0x4]; // 0x09E4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBoxSphereBounds CacheMeshExtendedBounds; // 0x09E8(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + int32 InstanceCountToRender; // 0x0A20(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A24[0x84]; // 0x0A24(0x0084)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HierarchicalInstancedStaticMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HierarchicalInstancedStaticMeshComponent") + } + static class UHierarchicalInstancedStaticMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UHierarchicalInstancedStaticMeshComponent; + +// Class Engine.MaterialExpressionLightmassReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionLightmassReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Realtime; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Lightmass; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLightmassReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLightmassReplace") + } + static class UMaterialExpressionLightmassReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLightmassReplace; + +// Class Engine.MaterialFunctionInterface +// 0x0018 (0x0040 - 0x0028) +class UMaterialFunctionInterface : public UObject +{ +public: + struct FGuid StateId; // 0x0028(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialFunctionUsage MaterialFunctionUsage; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionInterface") + } + static class UMaterialFunctionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionInterface; + +// Class Engine.ParticleModuleVelocityBase +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleVelocityBase : public UParticleModule +{ +public: + uint8 bInWorldSpace : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyOwnerScale : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocityBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocityBase") + } + static class UParticleModuleVelocityBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocityBase; + +// Class Engine.HLODBuilder +// 0x0000 (0x0028 - 0x0028) +class UHLODBuilder : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODBuilder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODBuilder") + } + static class UHLODBuilder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODBuilder; + +// Class Engine.MaterialExpressionSubstrateBSDF +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionSubstrateBSDF : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateBSDF") + } + static class UMaterialExpressionSubstrateBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateBSDF; + +// Class Engine.MaterialExpressionSubstrateShadingModels +// 0x0360 (0x0410 - 0x00B0) +class UMaterialExpressionSubstrateShadingModels final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Metallic; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Anisotropy; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Tangent; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SubsurfaceColor; // 0x01F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoat; // 0x0218(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoatRoughness; // 0x0240(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Opacity; // 0x0268(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput TransmittanceColor; // 0x0290(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterScatteringCoefficients; // 0x02B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterAbsorptionCoefficients; // 0x02E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterPhaseG; // 0x0308(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ColorScaleBehindWater; // 0x0330(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoatNormal; // 0x0358(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CustomTangent; // 0x0380(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FShadingModelMaterialInput ShadingModel; // 0x03A8(0x0028)(ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D0[0x8]; // 0x03D0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput ThinTranslucentSurfaceCoverage; // 0x03D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialShadingModel ShadingModelOverride; // 0x0400(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_401[0x7]; // 0x0401(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class USubsurfaceProfile* SubsurfaceProfile; // 0x0408(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateShadingModels") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateShadingModels") + } + static class UMaterialExpressionSubstrateShadingModels* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateShadingModels; + +// Class Engine.PartitionActor +// 0x0000 (0x02A8 - 0x02A8) +class APartitionActor : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PartitionActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PartitionActor") + } + static class APartitionActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APartitionActor; + +// Class Engine.MaterialExpressionLength +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionLength final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLength") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLength") + } + static class UMaterialExpressionLength* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLength; + +// Class Engine.MaterialExpressionSubstrateSlabBSDF +// 0x02E8 (0x0398 - 0x00B0) +class UMaterialExpressionSubstrateSlabBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput DiffuseAlbedo; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput F0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput F90; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Anisotropy; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Tangent; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SSSMFP; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SSSMFPScale; // 0x01F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SSSPhaseAnisotropy; // 0x0218(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x0240(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SecondRoughness; // 0x0268(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SecondRoughnessWeight; // 0x0290(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput FuzzRoughness; // 0x02B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput FuzzAmount; // 0x02E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput FuzzColor; // 0x0308(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput GlintValue; // 0x0330(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput GlintUV; // 0x0358(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class USubsurfaceProfile* SubsurfaceProfile; // 0x0380(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USpecularProfile* SpecularProfile; // 0x0388(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseSSSDiffusion : 1; // 0x0390(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_391[0x7]; // 0x0391(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateSlabBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateSlabBSDF") + } + static class UMaterialExpressionSubstrateSlabBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateSlabBSDF; + +// Class Engine.VisualLoggerDebugSnapshotInterface +// 0x0000 (0x0000 - 0x0000) +class IVisualLoggerDebugSnapshotInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VisualLoggerDebugSnapshotInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VisualLoggerDebugSnapshotInterface") + } + static class IVisualLoggerDebugSnapshotInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IVisualLoggerDebugSnapshotInterface; + +// Class Engine.ISMPartitionActor +// 0x0010 (0x02B8 - 0x02A8) +class AISMPartitionActor : public APartitionActor +{ +public: + uint8 Pad_2A8[0x10]; // 0x02A8(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ISMPartitionActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ISMPartitionActor") + } + static class AISMPartitionActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AISMPartitionActor; + +// Class Engine.WorldSubsystem +// 0x0000 (0x0030 - 0x0030) +class UWorldSubsystem : public USubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldSubsystem") + } + static class UWorldSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldSubsystem; + +// Class Engine.WorldPartitionHLODRuntimeSubsystem +// 0x00E8 (0x0118 - 0x0030) +class UWorldPartitionHLODRuntimeSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0xE8]; // 0x0030(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODRuntimeSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODRuntimeSubsystem") + } + static class UWorldPartitionHLODRuntimeSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionHLODRuntimeSubsystem; + +// Class Engine.MaterialExpressionRuntimeVirtualTextureOutput +// 0x0168 (0x0218 - 0x00B0) +class UMaterialExpressionRuntimeVirtualTextureOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WorldHeight; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Opacity; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Mask; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Displacement; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Mask4; // 0x01F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRuntimeVirtualTextureOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRuntimeVirtualTextureOutput") + } + static class UMaterialExpressionRuntimeVirtualTextureOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRuntimeVirtualTextureOutput; + +// Class Engine.MaterialExpressionAdd +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionAdd final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAdd") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAdd") + } + static class UMaterialExpressionAdd* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAdd; + +// Class Engine.StaticMeshActor +// 0x0010 (0x02B8 - 0x02A8) +class AStaticMeshActor : public AActor +{ +public: + class UStaticMeshComponent* StaticMeshComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bStaticMeshReplicateMovement; // 0x02B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicsReplicationMode StaticMeshPhysicsReplicationMode; // 0x02B1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENavDataGatheringMode NavigationGeometryGatheringMode; // 0x02B2(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B3[0x5]; // 0x02B3(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetMobility(EComponentMobility InMobility); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticMeshActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticMeshActor") + } + static class AStaticMeshActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AStaticMeshActor; + +// Class Engine.BlueprintAsyncActionBase +// 0x0008 (0x0030 - 0x0028) +class UBlueprintAsyncActionBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Activate(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintAsyncActionBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintAsyncActionBase") + } + static class UBlueprintAsyncActionBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintAsyncActionBase; + +// Class Engine.LODSyncComponent +// 0x0098 (0x0138 - 0x00A0) +class ULODSyncComponent final : public UActorComponent +{ +public: + int32 NumLODs; // 0x00A0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ForcedLOD; // 0x00A4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinLOD; // 0x00A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AC[0x4]; // 0x00AC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ComponentsToSync; // 0x00B0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TMap CustomLODMapping; // 0x00C0(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + int32 CurrentLOD; // 0x0110(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 CurrentNumLODs; // 0x0114(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray DriveComponents; // 0x0118(0x0010)(ExportObject, ZeroConstructor, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray SubComponents; // 0x0128(0x0010)(ExportObject, ZeroConstructor, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + class FString GetLODSyncDebugText() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LODSyncComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LODSyncComponent") + } + static class ULODSyncComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULODSyncComponent; + +// Class Engine.TickableWorldSubsystem +// 0x0010 (0x0040 - 0x0030) +class UTickableWorldSubsystem : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TickableWorldSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TickableWorldSubsystem") + } + static class UTickableWorldSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTickableWorldSubsystem; + +// Class Engine.MaterialExpressionSubstrateLightFunction +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionSubstrateLightFunction final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput Color; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateLightFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateLightFunction") + } + static class UMaterialExpressionSubstrateLightFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateLightFunction; + +// Class Engine.Brush +// 0x0038 (0x02E0 - 0x02A8) +class ABrush : public AActor +{ +public: + EBrushType BrushType; // 0x02A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A9[0x3]; // 0x02A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor BrushColor; // 0x02AC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PolyFlags; // 0x02B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bColored : 1; // 0x02B4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSolidWhenSelected : 1; // 0x02B4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPlaceableFromClassBrowser : 1; // 0x02B4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNotForClientOrServer : 1; // 0x02B4(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B5[0x3]; // 0x02B5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class UModel* Brush; // 0x02B8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBrushComponent* BrushComponent; // 0x02C0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bInManipulation : 1; // 0x02C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2C9[0x7]; // 0x02C9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SavedSelections; // 0x02D0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Brush") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Brush") + } + static class ABrush* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ABrush; + +// Class Engine.MaterialExpressionLogarithm2 +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionLogarithm2 final : public UMaterialExpression +{ +public: + struct FExpressionInput X; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLogarithm2") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLogarithm2") + } + static class UMaterialExpressionLogarithm2* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLogarithm2; + +// Class Engine.MaterialExpressionSubstratePostProcess +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstratePostProcess final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput Color; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Opacity; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstratePostProcess") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstratePostProcess") + } + static class UMaterialExpressionSubstratePostProcess* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstratePostProcess; + +// Class Engine.BlendProfile +// 0x0028 (0x0050 - 0x0028) +class UBlendProfile final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* OwningSkeleton; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ProfileEntries; // 0x0038(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + EBlendProfileMode Mode; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlendProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlendProfile") + } + static class UBlendProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlendProfile; + +// Class Engine.Volume +// 0x0000 (0x02E0 - 0x02E0) +class AVolume : public ABrush +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Volume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Volume") + } + static class AVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AVolume; + +// Class Engine.DynamicBlueprintBinding +// 0x0000 (0x0028 - 0x0028) +class UDynamicBlueprintBinding : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DynamicBlueprintBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DynamicBlueprintBinding") + } + static class UDynamicBlueprintBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDynamicBlueprintBinding; + +// Class Engine.InputDelegateBinding +// 0x0000 (0x0028 - 0x0028) +class UInputDelegateBinding : public UDynamicBlueprintBinding +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDelegateBinding") + } + static class UInputDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDelegateBinding; + +// Class Engine.InputAxisKeyDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UInputAxisKeyDelegateBinding : public UInputDelegateBinding +{ +public: + TArray InputAxisKeyDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputAxisKeyDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputAxisKeyDelegateBinding") + } + static class UInputAxisKeyDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputAxisKeyDelegateBinding; + +// Class Engine.StreamableRenderAsset +// 0x00A0 (0x00C8 - 0x0028) +class UStreamableRenderAsset : public UObject +{ +public: + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + double ForceMipLevelsToBeResidentTimestamp; // 0x0040(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 NumCinematicMipLevels; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerQualityLevelInt NoRefStreamingLODBias; // 0x0050(0x0068)(Protected, NativeAccessSpecifierProtected) + int32 StreamingIndex; // 0x00B8(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NonTransactional, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 NeverStream : 1; // 0x00BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGlobalForceMipLevelsToBeResident : 1; // 0x00BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasStreamingUpdatePending : 1; // 0x00BC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NonTransactional, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceMiplevelsToBeResident : 1; // 0x00BC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreStreamingMipBias : 1; // 0x00BC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseCinematicMipLevels : 1; // 0x00BC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_BD[0xB]; // 0x00BD(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetForceMipLevelsToBeResident(float Seconds, int32 CinematicLODGroupMask); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StreamableRenderAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StreamableRenderAsset") + } + static class UStreamableRenderAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStreamableRenderAsset; + +// Class Engine.AnimationDataModel +// 0x0000 (0x0000 - 0x0000) +class IAnimationDataModel final +{ +public: + class UAnimSequence* GetAnimationSequence() const; + const TArray GetBoneAnimationTracks() const; + const struct FBoneAnimationTrack GetBoneTrackByIndex(int32 TrackIndex) const; + const struct FBoneAnimationTrack GetBoneTrackByName(class FName TrackName) const; + int32 GetBoneTrackIndex(const struct FBoneAnimationTrack& Track) const; + int32 GetBoneTrackIndexByName(class FName TrackName) const; + void GetBoneTrackNames(TArray* OutNames) const; + struct FFrameRate GetFrameRate() const; + int32 GetNumberOfFloatCurves() const; + int32 GetNumberOfFrames() const; + int32 GetNumberOfKeys() const; + int32 GetNumberOfTransformCurves() const; + int32 GetNumBoneTracks() const; + double GetPlayLength() const; + bool IsValidBoneTrackIndex(int32 TrackIndex) const; + bool IsValidBoneTrackName(const class FName& TrackName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationDataModel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationDataModel") + } + static class IAnimationDataModel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAnimationDataModel; + +// Class Engine.ActorInstanceManagerInterface +// 0x0000 (0x0000 - 0x0000) +class IActorInstanceManagerInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorInstanceManagerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorInstanceManagerInterface") + } + static class IActorInstanceManagerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IActorInstanceManagerInterface; + +// Class Engine.MaterialExpressionObjectPositionWS +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionObjectPositionWS final : public UMaterialExpression +{ +public: + EPositionOrigin OriginType; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionObjectPositionWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionObjectPositionWS") + } + static class UMaterialExpressionObjectPositionWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionObjectPositionWS; + +// Class Engine.MaterialExpressionBinaryOp +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionBinaryOp : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBinaryOp") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBinaryOp") + } + static class UMaterialExpressionBinaryOp* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBinaryOp; + +// Class Engine.MaterialExpressionLess +// 0x0000 (0x0108 - 0x0108) +class UMaterialExpressionLess final : public UMaterialExpressionBinaryOp +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLess") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLess") + } + static class UMaterialExpressionLess* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLess; + +// Class Engine.MaterialExpressionComment +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionComment final : public UMaterialExpression +{ +public: + int32 SizeX; // 0x00B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x00B4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x00B8(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor CommentColor; // 0x00C8(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FontSize; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCommentBubbleVisible_InDetailsPanel : 1; // 0x00DC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bColorCommentBubble : 1; // 0x00DC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_DD[0x3]; // 0x00DD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bGroupMode; // 0x00E0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E1[0x7]; // 0x00E1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionComment") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionComment") + } + static class UMaterialExpressionComment* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionComment; + +// Class Engine.EngineSubsystem +// 0x0000 (0x0030 - 0x0030) +class UEngineSubsystem : public UDynamicSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineSubsystem") + } + static class UEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineSubsystem; + +// Class Engine.Distribution +// 0x0008 (0x0030 - 0x0028) +class UDistribution : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Distribution") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Distribution") + } + static class UDistribution* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistribution; + +// Class Engine.DistributionVector +// 0x0008 (0x0038 - 0x0030) +class UDistributionVector : public UDistribution +{ +public: + uint8 bCanBeBaked : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsDirty : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBakedDataSuccesfully : 1; // 0x0030(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVector") + } + static class UDistributionVector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVector; + +// Class Engine.DistributionVectorUniformCurve +// 0x0028 (0x0060 - 0x0038) +class UDistributionVectorUniformCurve final : public UDistributionVector +{ +public: + struct FInterpCurveTwoVectors ConstantCurve; // 0x0038(0x0018)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockAxes1 : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockAxes2 : 1; // 0x0050(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDistributionVectorLockFlags LockedAxes[0x2]; // 0x0054(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDistributionVectorMirrorFlags MirrorFlags[0x3]; // 0x0056(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseExtremes : 1; // 0x005C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5D[0x3]; // 0x005D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorUniformCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorUniformCurve") + } + static class UDistributionVectorUniformCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorUniformCurve; + +// Class Engine.MaterialExpressionPathTracingQualitySwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionPathTracingQualitySwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Normal; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PathTraced; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPathTracingQualitySwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPathTracingQualitySwitch") + } + static class UMaterialExpressionPathTracingQualitySwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPathTracingQualitySwitch; + +// Class Engine.MaterialExpressionCosine +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionCosine final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Period; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCosine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCosine") + } + static class UMaterialExpressionCosine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCosine; + +// Class Engine.MaterialInterface +// 0x00A0 (0x00C8 - 0x0028) +class UMaterialInterface : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class USubsurfaceProfile* SubsurfaceProfile; // 0x0038(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SubsurfaceProfiles; // 0x0040(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SpecularProfiles; // 0x0050(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UNeuralProfile* NeuralProfile; // 0x0060(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_68[0x20]; // 0x0068(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLightmassMaterialInterfaceSettings LightmassSettings; // 0x0088(0x0010)(Edit, NoDestructor, Protected, NativeAccessSpecifierProtected) + TArray TextureStreamingData; // 0x0098(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray AssetUserData; // 0x00A8(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_B8[0x4]; // 0x00B8(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bIncludedInBaseGame : 1; // 0x00BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BD[0xB]; // 0x00BD(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class UMaterial* GetBaseMaterial(); + void SetForceMipLevelsToBeResident(bool OverrideForceMiplevelsToBeResident, bool bForceMiplevelsToBeResidentValue, float ForceDuration, int32 CinematicTextureGroups, bool bFastResponse); + + EBlendMode GetBlendMode() const; + class UMaterialInterface* GetNaniteOverideMaterial() const; + struct FMaterialParameterInfo GetParameterInfo(EMaterialParameterAssociation Association, class FName ParameterName, class UMaterialFunctionInterface* LayerFunction) const; + class UPhysicalMaterial* GetPhysicalMaterial() const; + class UPhysicalMaterial* GetPhysicalMaterialFromMap(int32 Index_0) const; + class UPhysicalMaterialMask* GetPhysicalMaterialMask() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInterface") + } + static class UMaterialInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInterface; + +// Class Engine.ParticleModuleRotationRateBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleRotationRateBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationRateBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationRateBase") + } + static class UParticleModuleRotationRateBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationRateBase; + +// Class Engine.ParticleModuleMeshRotationRate +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleMeshRotationRate : public UParticleModuleRotationRateBase +{ +public: + struct FRawDistributionVector StartRotationRate; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotationRate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotationRate") + } + static class UParticleModuleMeshRotationRate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotationRate; + +// Class Engine.ParticleModuleMeshRotationRate_Seeded +// 0x0020 (0x00B0 - 0x0090) +class UParticleModuleMeshRotationRate_Seeded final : public UParticleModuleMeshRotationRate +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0090(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotationRate_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotationRate_Seeded") + } + static class UParticleModuleMeshRotationRate_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotationRate_Seeded; + +// Class Engine.Interface_AnimCurveMetaData +// 0x0000 (0x0000 - 0x0000) +class IInterface_AnimCurveMetaData final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_AnimCurveMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_AnimCurveMetaData") + } + static class IInterface_AnimCurveMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_AnimCurveMetaData; + +// Class Engine.MaterialExpressionPathTracingRayTypeSwitch +// 0x00C8 (0x0178 - 0x00B0) +class UMaterialExpressionPathTracingRayTypeSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Main; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Shadow; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IndirectDiffuse; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IndirectSpecular; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IndirectVolume; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPathTracingRayTypeSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPathTracingRayTypeSwitch") + } + static class UMaterialExpressionPathTracingRayTypeSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPathTracingRayTypeSwitch; + +// Class Engine.SceneCaptureComponent +// 0x00D0 (0x0300 - 0x0230) +class USceneCaptureComponent : public USceneComponent +{ +public: + ESceneCapturePrimitiveRenderMode PrimitiveRenderMode; // 0x0230(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESceneCaptureSource CaptureSource; // 0x0231(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCaptureEveryFrame : 1; // 0x0232(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCaptureOnMovement : 1; // 0x0232(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCaptureGpuNextRender : 1; // 0x0232(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, Transient, DuplicateTransient, NonTransactional, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDumpGpuNextRender : 1; // 0x0232(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, Transient, DuplicateTransient, NonTransactional, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + bool bAlwaysPersistRenderingState; // 0x0233(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_234[0x4]; // 0x0234(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> HiddenComponents; // 0x0238(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray HiddenActors; // 0x0248(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> ShowOnlyComponents; // 0x0258(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ShowOnlyActors; // 0x0268(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, UObjectWrapper, NativeAccessSpecifierPublic) + float LODDistanceFactor; // 0x0278(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxViewDistanceOverride; // 0x027C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CaptureSortPriority; // 0x0280(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseRayTracingIfEnabled; // 0x0284(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_285[0x3]; // 0x0285(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ShowFlagSettings; // 0x0288(0x0010)(Edit, BlueprintVisible, ZeroConstructor, Interp, NativeAccessSpecifierPublic) + uint8 Pad_298[0x40]; // 0x0298(0x0040)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ProfilingEventName; // 0x02D8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, Interp, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E8[0x18]; // 0x02E8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ClearHiddenComponents(); + void ClearShowOnlyComponents(); + void HideActorComponents(class AActor* InActor, const bool bIncludeFromChildActors); + void HideComponent(class UPrimitiveComponent* InComponent); + void RemoveShowOnlyActorComponents(class AActor* InActor, const bool bIncludeFromChildActors); + void RemoveShowOnlyComponent(class UPrimitiveComponent* InComponent); + void SetCaptureSortPriority(int32 NewCaptureSortPriority); + void SetShowFlagSettings(const TArray& InShowFlagSettings); + void ShowOnlyActorComponents(class AActor* InActor, const bool bIncludeFromChildActors); + void ShowOnlyComponent(class UPrimitiveComponent* InComponent); + + const TArray GetShowFlagSettings() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCaptureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCaptureComponent") + } + static class USceneCaptureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USceneCaptureComponent; + +// Class Engine.PlanarReflectionComponent +// 0x0160 (0x0460 - 0x0300) +class UPlanarReflectionComponent final : public USceneCaptureComponent +{ +public: + class UBoxComponent* PreviewBox; // 0x0300(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalDistortionStrength; // 0x0308(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PrefilterRoughness; // 0x030C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PrefilterRoughnessDistance; // 0x0310(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ScreenPercentage; // 0x0314(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExtraFOV; // 0x0318(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFromPlaneFadeStart; // 0x031C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFromPlaneFadeEnd; // 0x0320(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFromPlaneFadeoutStart; // 0x0324(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFromPlaneFadeoutEnd; // 0x0328(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleFromPlaneFadeStart; // 0x032C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleFromPlaneFadeEnd; // 0x0330(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowPreviewPlane; // 0x0334(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRenderSceneTwoSided; // 0x0335(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_336[0x12A]; // 0x0336(0x012A)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlanarReflectionComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlanarReflectionComponent") + } + static class UPlanarReflectionComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlanarReflectionComponent; + +// Class Engine.BlueprintPlatformLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintPlatformLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void CancelLocalNotification(const class FString& ActivationEvent); + static void CancelLocalNotificationById(int32 NotificationId); + static void ClearAllLocalNotifications(); + static EScreenOrientation GetAllowedDeviceOrientation(); + static EScreenOrientation GetDeviceOrientation(); + static void GetLaunchNotification(bool* NotificationLaunchedApp, class FString* ActivationEvent, int32* FireDate); + static int32 ScheduleLocalNotificationAtTime(const struct FDateTime& FireDateTime, bool LocalTime, const class FText& Title, const class FText& Body, const class FText& Action, const class FString& ActivationEvent); + static int32 ScheduleLocalNotificationBadgeAtTime(const struct FDateTime& FireDateTime, bool LocalTime, const class FString& ActivationEvent); + static void ScheduleLocalNotificationBadgeFromNow(int32 inSecondsFromNow, const class FString& ActivationEvent); + static int32 ScheduleLocalNotificationFromNow(int32 inSecondsFromNow, const class FText& Title, const class FText& Body, const class FText& Action, const class FString& ActivationEvent); + static void SetAllowedDeviceOrientation(EScreenOrientation NewAllowedDeviceOrientation); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintPlatformLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintPlatformLibrary") + } + static class UBlueprintPlatformLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintPlatformLibrary; + +// Class Engine.MaterialInstance +// 0x01F8 (0x02C0 - 0x00C8) +class UMaterialInstance : public UMaterialInterface +{ +public: + class UPhysicalMaterial* PhysMaterial; // 0x00C8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterial* PhysicalMaterialMap[0x8]; // 0x00D0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Parent; // 0x0110(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialOverrideNanite NaniteOverrideMaterial; // 0x0118(0x0038)(Edit, NativeAccessSpecifierPublic) + uint8 bHasStaticPermutationResource : 1; // 0x0150(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideSubsurfaceProfile : 1; // 0x0150(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideBlendableLocation : 1; // 0x0150(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideBlendablePriority : 1; // 0x0150(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_151[0x2]; // 0x0151(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + EBlendableLocation BlendableLocationOverride; // 0x0153(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BlendablePriorityOverride; // 0x0154(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_158[0x20]; // 0x0158(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ScalarParameterValues; // 0x0178(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorParameterValues; // 0x0188(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray DoubleVectorParameterValues; // 0x0198(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureParameterValues; // 0x01A8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureCollectionParameterValues; // 0x01B8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray RuntimeVirtualTextureParameterValues; // 0x01C8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SparseVolumeTextureParameterValues; // 0x01D8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray FontParameterValues; // 0x01E8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + TArray UserSceneTextureOverrides; // 0x01F8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FMaterialInstanceBasePropertyOverrides BasePropertyOverrides; // 0x0208(0x0020)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_228[0x8]; // 0x0228(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FStaticParameterSetRuntimeData StaticParametersRuntime; // 0x0230(0x0060)(NativeAccessSpecifierPrivate) + uint8 Pad_290[0x30]; // 0x0290(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInstance") + } + static class UMaterialInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInstance; + +// Class Engine.SoundNode +// 0x0020 (0x0048 - 0x0028) +class USoundNode : public UObject +{ +public: + TArray ChildNodes; // 0x0028(0x0010)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_38[0x10]; // 0x0038(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNode") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNode") + } + static class USoundNode* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNode; + +// Class Engine.SoundNodeConcatenator +// 0x0010 (0x0058 - 0x0048) +class USoundNodeConcatenator final : public USoundNode +{ +public: + TArray InputVolume; // 0x0048(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeConcatenator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeConcatenator") + } + static class USoundNodeConcatenator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeConcatenator; + +// Class Engine.MaterialExpressionPerInstanceCustomData +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionPerInstanceCustomData final : public UMaterialExpression +{ +public: + struct FExpressionInput DefaultValue; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstDefaultValue; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 DataIndex; // 0x00DC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPerInstanceCustomData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPerInstanceCustomData") + } + static class UMaterialExpressionPerInstanceCustomData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPerInstanceCustomData; + +// Class Engine.KismetNodeHelperLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetNodeHelperLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool BitIsMarked(int32 Data, int32 Index_0); + static void ClearAllBits(int32* Data); + static void ClearBit(int32* Data, int32 Index_0); + static class FName GetEnumeratorName(const class UEnum* Enum, uint8 EnumeratorValue); + static class FString GetEnumeratorUserFriendlyName(const class UEnum* Enum, uint8 EnumeratorValue); + static uint8 GetEnumeratorValueFromIndex(const class UEnum* Enum, uint8 EnumeratorIndex); + static int32 GetFirstUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits); + static int32 GetRandomUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits); + static int32 GetUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits, bool bRandom); + static uint8 GetValidValue(const class UEnum* Enum, uint8 EnumeratorValue); + static bool HasMarkedBit(int32 Data, int32 NumBits); + static bool HasUnmarkedBit(int32 Data, int32 NumBits); + static void MarkBit(int32* Data, int32 Index_0); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetNodeHelperLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetNodeHelperLibrary") + } + static class UKismetNodeHelperLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetNodeHelperLibrary; + +// Class Engine.MaterialExpressionComposite +// 0x0020 (0x00D0 - 0x00B0) +class UMaterialExpressionComposite final : public UMaterialExpression +{ +public: + class FString SubgraphName; // 0x00B0(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialExpressionPinBase* InputExpressions; // 0x00C0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialExpressionPinBase* OutputExpressions; // 0x00C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionComposite") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionComposite") + } + static class UMaterialExpressionComposite* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionComposite; + +// Class Engine.MaterialInstanceConstant +// 0x0008 (0x02C8 - 0x02C0) +class UMaterialInstanceConstant : public UMaterialInstance +{ +public: + class UPhysicalMaterialMask* PhysMaterialMask; // 0x02C0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + float K2_GetScalarParameterValue(class FName ParameterName); + class UTexture* K2_GetTextureParameterValue(class FName ParameterName); + struct FLinearColor K2_GetVectorParameterValue(class FName ParameterName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInstanceConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInstanceConstant") + } + static class UMaterialInstanceConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInstanceConstant; + +// Class Engine.MaterialExpressionVirtualTextureFeatureSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionVirtualTextureFeatureSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput No; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Yes; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVirtualTextureFeatureSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVirtualTextureFeatureSwitch") + } + static class UMaterialExpressionVirtualTextureFeatureSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVirtualTextureFeatureSwitch; + +// Class Engine.DistributionFloat +// 0x0008 (0x0038 - 0x0030) +class UDistributionFloat : public UDistribution +{ +public: + uint8 bCanBeBaked : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_30_1 : 1; // 0x0030(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bBakedDataSuccesfully : 1; // 0x0030(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloat") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloat") + } + static class UDistributionFloat* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloat; + +// Class Engine.DistributionFloatConstantCurve +// 0x0018 (0x0050 - 0x0038) +class UDistributionFloatConstantCurve final : public UDistributionFloat +{ +public: + struct FInterpCurveFloat ConstantCurve; // 0x0038(0x0018)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatConstantCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatConstantCurve") + } + static class UDistributionFloatConstantCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatConstantCurve; + +// Class Engine.ParticleModuleSubUVBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleSubUVBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSubUVBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSubUVBase") + } + static class UParticleModuleSubUVBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSubUVBase; + +// Class Engine.ParticleModuleRotationBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleRotationBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationBase") + } + static class UParticleModuleRotationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationBase; + +// Class Engine.AnimationDataModelNotifiesExtensions +// 0x0000 (0x0028 - 0x0028) +class UAnimationDataModelNotifiesExtensions final : public UBlueprintFunctionLibrary +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationDataModelNotifiesExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationDataModelNotifiesExtensions") + } + static class UAnimationDataModelNotifiesExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationDataModelNotifiesExtensions; + +// Class Engine.MaterialExpressionActorPositionWS +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionActorPositionWS final : public UMaterialExpression +{ +public: + EPositionOrigin OriginType; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionActorPositionWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionActorPositionWS") + } + static class UMaterialExpressionActorPositionWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionActorPositionWS; + +// Class Engine.CameraShakePattern +// 0x0000 (0x0028 - 0x0028) +class UCameraShakePattern : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraShakePattern") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraShakePattern") + } + static class UCameraShakePattern* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraShakePattern; + +// Class Engine.BlueprintGeneratedClass +// 0x0160 (0x0360 - 0x0200) +class UBlueprintGeneratedClass : public UClass +{ +public: + uint8 Pad_200[0x8]; // 0x0200(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumReplicatedProperties; // 0x0208(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHasCookedComponentInstancingData : 1; // 0x020C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_20D[0x3]; // 0x020D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DynamicBindingObjects; // 0x0210(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ComponentTemplates; // 0x0220(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray Timelines; // 0x0230(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ComponentClassOverrides; // 0x0240(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FieldNotifies; // 0x0250(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_260[0x8]; // 0x0260(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USimpleConstructionScript* SimpleConstructionScript; // 0x0268(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UInheritableComponentHandler* InheritableComponentHandler; // 0x0270(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_278[0x8]; // 0x0278(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UFunction* UberGraphFunction; // 0x0280(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap CookedPropertyGuids; // 0x0288(0x0050)(NativeAccessSpecifierPublic) + TMap CookedComponentInstancingData; // 0x02D8(0x0050)(NativeAccessSpecifierPublic) + uint8 Pad_328[0x38]; // 0x0328(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintGeneratedClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintGeneratedClass") + } + static class UBlueprintGeneratedClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintGeneratedClass; + +// Class Engine.MaterialExpressionSine +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSine final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Period; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSine") + } + static class UMaterialExpressionSine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSine; + +// Class Engine.TextureMipDataProviderFactory +// 0x0000 (0x0028 - 0x0028) +class UTextureMipDataProviderFactory : public UAssetUserData +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureMipDataProviderFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureMipDataProviderFactory") + } + static class UTextureMipDataProviderFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureMipDataProviderFactory; + +// Class Engine.AnimCurveCompressionCodec +// 0x0000 (0x0028 - 0x0028) +class UAnimCurveCompressionCodec : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveCompressionCodec") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveCompressionCodec") + } + static class UAnimCurveCompressionCodec* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveCompressionCodec; + +// Class Engine.AnimCurveCompressionCodec_UniformIndexable +// 0x0000 (0x0028 - 0x0028) +class UAnimCurveCompressionCodec_UniformIndexable final : public UAnimCurveCompressionCodec +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveCompressionCodec_UniformIndexable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveCompressionCodec_UniformIndexable") + } + static class UAnimCurveCompressionCodec_UniformIndexable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveCompressionCodec_UniformIndexable; + +// Class Engine.Channel +// 0x0040 (0x0068 - 0x0028) +class UChannel : public UObject +{ +public: + class UNetConnection* Connection; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30[0x38]; // 0x0030(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Channel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Channel") + } + static class UChannel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChannel; + +// Class Engine.Player +// 0x0020 (0x0048 - 0x0028) +class UPlayer : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* PlayerController; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CurrentNetSpeed; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ConfiguredInternetSpeed; // 0x003C(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ConfiguredLanSpeed; // 0x0040(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Player") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Player") + } + static class UPlayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlayer; + +// Class Engine.MaterialExpressionSamplePhysicsIntegerField +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSamplePhysicsIntegerField final : public UMaterialExpression +{ +public: + struct FExpressionInput WorldPosition; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldIntegerType FieldTarget; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSamplePhysicsIntegerField") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSamplePhysicsIntegerField") + } + static class UMaterialExpressionSamplePhysicsIntegerField* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSamplePhysicsIntegerField; + +// Class Engine.MaterialExpressionEyeAdaptation +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionEyeAdaptation final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionEyeAdaptation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionEyeAdaptation") + } + static class UMaterialExpressionEyeAdaptation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionEyeAdaptation; + +// Class Engine.TextureAllMipDataProviderFactory +// 0x0000 (0x0028 - 0x0028) +class UTextureAllMipDataProviderFactory : public UTextureMipDataProviderFactory +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureAllMipDataProviderFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureAllMipDataProviderFactory") + } + static class UTextureAllMipDataProviderFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureAllMipDataProviderFactory; + +// Class Engine.MaterialExpressionSceneDepthWithoutWater +// 0x0048 (0x00F8 - 0x00B0) +class UMaterialExpressionSceneDepthWithoutWater final : public UMaterialExpression +{ +public: + EMaterialSceneAttributeInputMode InputMode; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Input; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FVector2D ConstInput; // 0x00E0(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FallbackDepth; // 0x00F0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F4[0x4]; // 0x00F4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSceneDepthWithoutWater") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSceneDepthWithoutWater") + } + static class UMaterialExpressionSceneDepthWithoutWater* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSceneDepthWithoutWater; + +// Class Engine.EngineCustomTimeStep +// 0x0000 (0x0028 - 0x0028) +class UEngineCustomTimeStep : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineCustomTimeStep") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineCustomTimeStep") + } + static class UEngineCustomTimeStep* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineCustomTimeStep; + +// Class Engine.MaterialExpressionDistanceFieldApproxAO +// 0x00C0 (0x0170 - 0x00B0) +class UMaterialExpressionDistanceFieldApproxAO final : public UMaterialExpression +{ +public: + struct FExpressionInput position; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Normal; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput BaseDistance; // 0x0108(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float BaseDistanceDefault; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Radius; // 0x0138(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float RadiusDefault; // 0x0160(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumSteps; // 0x0164(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StepScaleDefault; // 0x0168(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16C[0x4]; // 0x016C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistanceFieldApproxAO") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistanceFieldApproxAO") + } + static class UMaterialExpressionDistanceFieldApproxAO* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistanceFieldApproxAO; + +// Class Engine.SkinnedMeshComponent +// 0x0370 (0x0890 - 0x0520) +class USkinnedMeshComponent : public UMeshComponent +{ +public: + uint8 Pad_518[0x8]; // 0x0518(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeletalMesh* SkeletalMesh; // 0x0520(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USkinnedAsset* SkinnedAsset; // 0x0528(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TWeakObjectPtr LeaderPoseComponent; // 0x0530(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SkinCacheUsage; // 0x0538(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + bool bSetMeshDeformer; // 0x0548(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_549[0x7]; // 0x0549(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UMeshDeformer* MeshDeformer; // 0x0550(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bAlwaysUseMeshDeformer; // 0x0558(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_559[0x7]; // 0x0559(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UMeshDeformerInstanceSettings* MeshDeformerInstanceSettings; // 0x0560(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, Protected, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FMeshDeformerInstanceSet MeshDeformerInstances; // 0x0568(0x0020)(Transient, Protected, NativeAccessSpecifierProtected) + uint8 Pad_588[0x180]; // 0x0588(0x0180)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicsAsset* PhysicsAssetOverride; // 0x0708(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ForcedLodModel; // 0x0710(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_714[0x4]; // 0x0714(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinLodModel; // 0x0718(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71C[0x8]; // 0x071C(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float StreamingDistanceMultiplier; // 0x0724(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_728[0x8]; // 0x0728(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LODInfo; // 0x0730(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + uint8 Pad_740[0x24]; // 0x0740(0x0024)(Fixing Size After Last Property [ Dumper-7 ]) + EVisibilityBasedAnimTickOption VisibilityBasedAnimTickOption; // 0x0764(0x0001)(Edit, BlueprintVisible, ZeroConstructor, Config, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_765[0x1]; // 0x0765(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_766_0 : 3; // 0x0766(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bOverrideMinLOD : 1; // 0x0766(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseBoundsFromLeaderPoseComponent : 1; // 0x0766(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIncludeComponentLocationIntoBounds : 1; // 0x0766(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceWireframe : 1; // 0x0766(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableMorphTarget : 1; // 0x0766(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHideSkin : 1; // 0x0767(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPerBoneMotionBlur : 1; // 0x0767(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComponentUseFixedSkelBounds : 1; // 0x0767(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bConsiderAllBodiesForBounds : 1; // 0x0767(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSyncAttachParentLOD : 1; // 0x0767(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanHighlightSelectedSections : 1; // 0x0767(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecentlyRendered : 1; // 0x0767(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastCapsuleDirectShadow : 1; // 0x0767(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastCapsuleIndirectShadow : 1; // 0x0768(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCPUSkinning : 1; // 0x0768(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseScreenRenderStateForUpdate : 1; // 0x0768(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableUpdateRateOptimizations : 1; // 0x0768(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisplayDebugUpdateRateOptimizations : 1; // 0x0768(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderStatic : 1; // 0x0768(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreLeaderPoseComponentLOD : 1; // 0x0768(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_768_7 : 1; // 0x0768(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_769_0 : 1; // 0x0769(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bCachedLocalBoundsUpToDate : 1; // 0x0769(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bCachedWorldSpaceBoundsUpToDate : 1; // 0x0769(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_769_3 : 1; // 0x0769(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bForceMeshObjectUpdate : 1; // 0x0769(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_769_5 : 3; // 0x0769(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_76A_0 : 2; // 0x076A(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bFollowerShouldTickPose : 1; // 0x076A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_76B[0x1]; // 0x076B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float CapsuleIndirectShadowMinVisibility; // 0x076C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_770[0x48]; // 0x0770(0x0048)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBoxSphereBounds CachedWorldOrLocalSpaceBounds; // 0x07B8(0x0038)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + struct FMatrix CachedWorldToLocalTransform; // 0x07F0(0x0080)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_870[0x20]; // 0x0870(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ClearAllSkinWeightProfiles(); + void ClearSkinWeightOverride(int32 LODIndex); + void ClearSkinWeightProfile(ESkinWeightProfileLayer InLayer); + void ClearVertexColorOverride(int32 LODIndex); + void HideBoneByName(class FName BoneName, EPhysBodyOp PhysBodyOption); + bool IsBoneHiddenByName(class FName BoneName); + bool IsMaterialSectionShown(int32 MaterialID, int32 LODIndex); + void OverrideMinLOD(int32 InNewMinLOD); + void SetAlwaysUseMeshDeformer(bool bShouldAlwaysUseMeshDeformer); + void SetCapsuleIndirectShadowMinVisibility(float NewValue); + void SetCastCapsuleDirectShadow(bool bNewValue); + void SetCastCapsuleIndirectShadow(bool bNewValue); + void SetForcedLOD(int32 InNewForcedLOD); + void SetLeaderPoseComponent(class USkinnedMeshComponent* NewLeaderBoneComponent, bool bForceUpdate, bool bInFollowerShouldTickPose); + void SetMeshDeformer(class UMeshDeformer* InMeshDeformer); + void SetMinLOD(int32 InNewMinLOD); + void SetPhysicsAsset(class UPhysicsAsset* NewPhysicsAsset, bool bForceReInit); + void SetRenderStatic(bool bNewValue); + void SetSkinnedAssetAndUpdate(class USkinnedAsset* NewMesh, bool bReinitPose); + void SetSkinWeightOverride(int32 LODIndex, const TArray& SkinWeights); + bool SetSkinWeightProfile(class FName InProfileName, ESkinWeightProfileLayer InLayer); + void SetVertexColorOverride_LinearColor(int32 LODIndex, const TArray& VertexColors); + void ShowAllMaterialSections(int32 LODIndex); + void ShowMaterialSection(int32 MaterialID, int32 SectionIndex, bool bShow, int32 LODIndex); + void TransformFromBoneSpace(class FName BoneName, const struct FVector& InPosition, const struct FRotator& InRotation, struct FVector* OutPosition, struct FRotator* OutRotation); + void UnHideBoneByName(class FName BoneName); + void UnloadSkinWeightProfile(class FName InProfileName); + void UnsetMeshDeformer(); + + bool BoneIsChildOf(class FName BoneName, class FName ParentBoneName) const; + class FName FindClosestBone_K2(const struct FVector& TestLocation, struct FVector* BoneLocation, float IgnoreScale, bool bRequirePhysicsAsset) const; + bool GetAlwaysUseMeshDeformer() const; + int32 GetBoneIndex(class FName BoneName) const; + class FName GetBoneName(int32 BoneIndex) const; + struct FTransform GetBoneTransform(class FName InBoneName, ERelativeTransformSpace TransformSpace) const; + TArray GetCurrentSkinWeightProfileLayerNames() const; + class FName GetCurrentSkinWeightProfileName(ESkinWeightProfileLayer InLayer) const; + struct FTransform GetDeltaTransformFromRefPose(class FName BoneName, class FName BaseName) const; + int32 GetForcedLOD() const; + class UMeshDeformerInstance* GetMeshDeformerInstance() const; + int32 GetNumBones() const; + int32 GetNumLODs() const; + class FName GetParentBone(class FName BoneName) const; + int32 GetPredictedLODLevel() const; + struct FVector GetRefPosePosition(int32 BoneIndex) const; + struct FTransform GetRefPoseTransform(int32 BoneIndex) const; + class USkeletalMesh* GetSkeletalMesh_DEPRECATED() const; + class USkinnedAsset* GetSkinnedAsset() const; + class FName GetSocketBoneName(class FName InSocketName) const; + bool GetTwistAndSwingAngleOfDeltaRotationFromRefPose(class FName BoneName, float* OutTwistAngle, float* OutSwingAngle) const; + bool IsUsingSkinWeightProfile() const; + void TransformToBoneSpace(class FName BoneName, const struct FVector& InPosition, const struct FRotator& InRotation, struct FVector* OutPosition, struct FRotator* OutRotation) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkinnedMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkinnedMeshComponent") + } + static class USkinnedMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkinnedMeshComponent; + +// Class Engine.SMInstanceElementHierarchyInterface +// 0x0008 (0x0030 - 0x0028) +class USMInstanceElementHierarchyInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementHierarchyInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementHierarchyInterface") + } + static class USMInstanceElementHierarchyInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementHierarchyInterface; + +// Class Engine.MaterialExpressionPanner +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionPanner final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinate; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Time; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Speed; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float SpeedX; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpeedY; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ConstCoordinate; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFractionalPart; // 0x0134(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_135[0x3]; // 0x0135(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPanner") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPanner") + } + static class UMaterialExpressionPanner* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPanner; + +// Class Engine.StaticMeshSocket +// 0x0060 (0x0088 - 0x0028) +class UStaticMeshSocket final : public UObject +{ +public: + class FName SocketName; // 0x0028(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RelativeLocation; // 0x0030(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RelativeRotation; // 0x0048(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector RelativeScale; // 0x0060(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Tag; // 0x0078(0x0010)(Edit, BlueprintVisible, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticMeshSocket") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticMeshSocket") + } + static class UStaticMeshSocket* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStaticMeshSocket; + +// Class Engine.TimecodeProvider +// 0x0008 (0x0030 - 0x0028) +class UTimecodeProvider : public UObject +{ +public: + float FrameDelay; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void FetchAndUpdate(); + bool FetchTimecode(struct FQualifiedFrameTime* OutFrameTime); + + struct FQualifiedFrameTime GetDelayedQualifiedFrameTime() const; + struct FTimecode GetDelayedTimecode() const; + struct FFrameRate GetFrameRate() const; + struct FQualifiedFrameTime GetQualifiedFrameTime() const; + ETimecodeProviderSynchronizationState GetSynchronizationState() const; + struct FTimecode GetTimecode() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TimecodeProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TimecodeProvider") + } + static class UTimecodeProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTimecodeProvider; + +// Class Engine.SkeletalMeshComponent +// 0x06B0 (0x0F40 - 0x0890) +class USkeletalMeshComponent final : public USkinnedMeshComponent +{ +public: + TSubclassOf AnimBlueprintGeneratedClass; // 0x0890(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf AnimClass; // 0x0898(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* AnimScriptInstance; // 0x08A0(0x0008)(ZeroConstructor, Transient, NonTransactional, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf OverridePostProcessAnimBP; // 0x08A8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* PostProcessAnimInstance; // 0x08B0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSingleAnimationPlayData AnimationData; // 0x08B8(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_8D0[0x10]; // 0x08D0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector RootBoneTranslation; // 0x08E0(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineCheckBoundsScale; // 0x08F8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_910[0x20]; // 0x0910(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LinkedInstances; // 0x0930(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_940[0x10]; // 0x0940(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CachedBoneSpaceTransforms; // 0x0950(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray CachedComponentSpaceTransforms; // 0x0960(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_970[0xA0]; // 0x0970(0x00A0)(Fixing Size After Last Property [ Dumper-7 ]) + float GlobalAnimRateScale; // 0x0A10(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EKinematicBonesUpdateToPhysics KinematicBonesUpdateType; // 0x0A14(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicsTransformUpdateMode PhysicsTransformUpdateMode; // 0x0A15(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EClothingTeleportMode ClothTeleportMode; // 0x0A16(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, EditConst, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimationMode AnimationMode; // 0x0A17(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_A18[0x1]; // 0x0A18(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bDisablePostProcessBlueprint : 1; // 0x0A19(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_A19_1 : 1; // 0x0A19(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bUpdateOverlapsOnAnimationFinalize : 1; // 0x0A19(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_A19_3 : 1; // 0x0A19(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bHasValidBodies : 1; // 0x0A19(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBlendPhysics : 1; // 0x0A19(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePhysicsOnDedicatedServer : 1; // 0x0A19(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateMeshWhenKinematic : 1; // 0x0A19(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateJointsFromAnimation : 1; // 0x0A1A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowClothActors : 1; // 0x0A1A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableClothSimulation : 1; // 0x0A1A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_A1A_3 : 5; // 0x0A1A(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_A1B[0x5]; // 0x0A1B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bDisableRigidBodyAnimNode : 1; // 0x0A20(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bAllowAnimCurveEvaluation : 1; // 0x0A20(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_A20_2 : 3; // 0x0A20(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bCollideWithEnvironment : 1; // 0x0A20(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCollideWithAttachedChildren : 1; // 0x0A20(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceCollisionUpdate : 1; // 0x0A20(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A21[0x3]; // 0x0A21(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ClothVelocityScale; // 0x0A24(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bResetAfterTeleport : 1; // 0x0A28(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_A28_1 : 1; // 0x0A28(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bDeferKinematicBoneUpdate : 1; // 0x0A28(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNoSkeletonUpdate : 1; // 0x0A28(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPauseAnims : 1; // 0x0A28(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableAnimation : 1; // 0x0A28(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseRefPoseOnInitAnim : 1; // 0x0A28(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePerPolyCollision : 1; // 0x0A28(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceRefpose : 1; // 0x0A29(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOnlyAllowAutonomousTickPose : 1; // 0x0A29(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsAutonomousTickPose : 1; // 0x0A29(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOldForceRefPose : 1; // 0x0A29(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowPrePhysBones : 1; // 0x0A29(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRequiredBonesUpToDate : 1; // 0x0A29(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAnimTreeInitialised : 1; // 0x0A29(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableLineCheckWithBounds : 1; // 0x0A29(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPropagateCurvesToFollowers : 1; // 0x0A2A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipKinematicUpdateWhenInterpolating : 1; // 0x0A2A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipBoundsUpdateWhenInterpolating : 1; // 0x0A2A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_A2A_3 : 2; // 0x0A2A(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bNeedsQueuedAnimEventsDispatched : 1; // 0x0A2A(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_A2B[0x1]; // 0x0A2B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint16 CachedAnimCurveUidVersion; // 0x0A2C(0x0002)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A2E[0x2]; // 0x0A2E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ClothBlendWeight; // 0x0A30(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWaitForParallelClothTask; // 0x0A34(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFilteredAnimCurvesIsAllowList; // 0x0A35(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint16 CachedMeshCurveMetaDataVersion; // 0x0A36(0x0002)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray FilteredAnimCurves; // 0x0A38(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + class UBodySetup* BodySetup; // 0x0A48(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A50[0x4]; // 0x0A50(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float ClothMaxDistanceScale; // 0x0A54(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClothGeometryScale; // 0x0A58(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PostProcessAnimBPLODThreshold; // 0x0A5C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TMulticastInlineDelegate OnConstraintBroken; // 0x0A60(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnPlasticDeformation; // 0x0A70(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TSubclassOf ClothingSimulationFactory; // 0x0A80(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A88[0xF8]; // 0x0A88(0x00F8)(Fixing Size After Last Property [ Dumper-7 ]) + float TeleportDistanceThreshold; // 0x0B80(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float TeleportRotationThreshold; // 0x0B84(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_B88[0x98]; // 0x0B88(0x0098)(Fixing Size After Last Property [ Dumper-7 ]) + class UClothingSimulationInteractor* ClothingInteractor; // 0x0C20(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_C28[0xB8]; // 0x0C28(0x00B8)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAnimInitialized; // 0x0CE0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_CF0[0x240]; // 0x0CF0(0x0240)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 LastPoseTickFrame; // 0x0F30(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_F34[0xC]; // 0x0F34(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AccumulateAllBodiesBelowPhysicsBlendWeight(const class FName& InBoneName, float AddPhysicsBlendWeight, bool bSkipCustomPhysicsType); + void AddClothCollisionSource(class USkeletalMeshComponent* InSourceComponent, class UPhysicsAsset* InSourcePhysicsAsset); + void AddForceToAllBodiesBelow(const struct FVector& Force, class FName BoneName, bool bAccelChange, bool bIncludeSelf); + void AddImpulseToAllBodiesBelow(const struct FVector& Impulse, class FName BoneName, bool bVelChange, bool bIncludeSelf); + void AllowAnimCurveEvaluation(class FName NameOfCurve, bool bAllow); + void BindClothToLeaderPoseComponent(); + void BreakConstraint(const struct FVector& Impulse, const struct FVector& HitLocation, class FName InBoneName); + void ClearMorphTargets(); + class FName FindConstraintBoneName(int32 ConstraintIndex); + void ForceClothNextUpdateTeleport(); + void ForceClothNextUpdateTeleportAndReset(); + class UClass* GetAnimClass(); + struct FVector GetBoneLinearVelocity(const class FName& InBoneName); + struct FConstraintInstanceAccessor GetConstraintByName(class FName ConstraintName, bool bIncludesTerminated); + void GetConstraints(bool bIncludesTerminated, TArray* OutConstraints); + void GetConstraintsFromBody(class FName BodyName, bool bParentConstraints, bool bChildConstraints, bool bIncludesTerminated, TArray* OutConstraints); + void GetCurrentJointAngles(class FName InBoneName, float* Swing1Angle, float* TwistAngle, float* Swing2Angle); + bool GetFloatAttribute(const class FName& BoneName, const class FName& AttributeName, float DefaultValue, float* OutValue, ECustomBoneAttributeLookup LookupType); + bool GetFloatAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, float& OutValue, ECustomBoneAttributeLookup LookupType); + bool GetIntegerAttribute(const class FName& BoneName, const class FName& AttributeName, int32 DefaultValue, int32* OutValue, ECustomBoneAttributeLookup LookupType); + bool GetIntegerAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, int32& OutValue, ECustomBoneAttributeLookup LookupType); + bool GetStringAttribute(const class FName& BoneName, const class FName& AttributeName, const class FString& DefaultValue, class FString* OutValue, ECustomBoneAttributeLookup LookupType); + bool GetStringAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, class FString& OutValue, ECustomBoneAttributeLookup LookupType); + bool GetTransformAttribute(const class FName& BoneName, const class FName& AttributeName, const struct FTransform& DefaultValue, struct FTransform* OutValue, ECustomBoneAttributeLookup LookupType); + bool GetTransformAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, struct FTransform& OutValue, ECustomBoneAttributeLookup LookupType); + bool IsBodyGravityEnabled(class FName BoneName); + void LinkAnimClassLayers(TSubclassOf InClass); + void LinkAnimGraphByTag(class FName InTag, TSubclassOf InClass); + void OverrideAnimationData(class UAnimationAsset* InAnimToPlay, bool bIsLooping, bool bIsPlaying, float position, float PlayRate); + void Play(bool bLooping); + void PlayAnimation(class UAnimationAsset* NewAnimToPlay, bool bLooping); + void RecreateClothingActors(); + void RemoveClothCollisionSource(class USkeletalMeshComponent* InSourceComponent, class UPhysicsAsset* InSourcePhysicsAsset); + void RemoveClothCollisionSources(class USkeletalMeshComponent* InSourceComponent); + void ResetAllBodiesSimulatePhysics(); + void ResetAllowedAnimCurveEvaluation(); + void ResetAnimInstanceDynamics(ETeleportType InTeleportType); + void ResetClothCollisionSources(); + void ResetClothTeleportMode(); + void ResumeClothingSimulation(); + void SetAllBodiesBelowLinearVelocity(const class FName& InBoneName, const struct FVector& LinearVelocity, bool bIncludeSelf); + void SetAllBodiesBelowPhysicsBlendWeight(const class FName& InBoneName, float PhysicsBlendWeight, bool bSkipCustomPhysicsType, bool bIncludeSelf); + void SetAllBodiesBelowPhysicsDisabled(const class FName& InBoneName, bool bDisabled, bool bIncludeSelf); + void SetAllBodiesBelowSimulatePhysics(const class FName& InBoneName, bool bNewSimulate, bool bIncludeSelf); + void SetAllBodiesPhysicsBlendWeight(float PhysicsBlendWeight, bool bSkipCustomPhysicsType); + void SetAllBodiesSimulatePhysics(bool bNewSimulate); + void SetAllMotorsAngularDriveParams(float InSpring, float InDamping, float InForceLimit, bool bSkipCustomPhysicsType); + void SetAllMotorsAngularPositionDrive(bool bEnableSwingDrive, bool bEnableTwistDrive, bool bSkipCustomPhysicsType); + void SetAllMotorsAngularVelocityDrive(bool bEnableSwingDrive, bool bEnableTwistDrive, bool bSkipCustomPhysicsType); + void SetAllowAnimCurveEvaluation(bool bInAllow); + void SetAllowClothActors(bool bInAllow); + void SetAllowedAnimCurvesEvaluation(const TArray& List, bool bAllow); + void SetAllowRigidBodyAnimNode(bool bInAllow, bool bReinitAnim); + void SetAngularLimits(class FName InBoneName, float Swing1LimitAngle, float TwistLimitAngle, float Swing2LimitAngle); + void SetAnimation(class UAnimationAsset* NewAnimToPlay); + void SetAnimationMode(EAnimationMode InAnimationMode, bool bForceInitAnimScriptInstance); + void SetAnimInstanceClass(class UClass* NewClass); + void SetBodyNotifyRigidBodyCollision(bool bNewNotifyRigidBodyCollision, class FName BoneName); + void SetBodySimulatePhysics(const class FName& InBoneName, bool bSimulate); + void SetClothMaxDistanceScale(float Scale); + void SetConstraintProfile(class FName JointName, class FName ProfileName, bool bDefaultIfNotFound); + void SetConstraintProfileForAll(class FName ProfileName, bool bDefaultIfNotFound); + void SetDisableAnimCurves(bool bInDisableAnimCurves); + void SetDisablePostProcessBlueprint(bool bInDisablePostProcess); + void SetEnableBodyGravity(bool bEnableGravity, class FName BoneName); + void SetEnableGravityOnAllBodiesBelow(bool bEnableGravity, class FName BoneName, bool bIncludeSelf); + void SetEnablePhysicsBlending(bool bNewBlendPhysics); + void SetMorphTarget(class FName MorphTargetName, float Value, bool bRemoveZeroWeight); + void SetNotifyRigidBodyCollisionBelow(bool bNewNotifyRigidBodyCollision, class FName BoneName, bool bIncludeSelf); + void SetOverridePostProcessAnimBP(TSubclassOf InPostProcessAnimBlueprint, bool ReinitAnimInstances); + void SetPhysicsBlendWeight(float PhysicsBlendWeight); + void SetPlayRate(float Rate); + void SetPosition(float InPos, bool bFireNotifies); + void SetSkeletalMeshAsset(class USkeletalMesh* NewMesh); + void SetTeleportDistanceThreshold(float Threshold); + void SetTeleportRotationThreshold(float Threshold); + void SetUpdateAnimationInEditor(const bool NewUpdateState); + void SetUpdateClothInEditor(const bool NewUpdateState); + void SnapshotPose(struct FPoseSnapshot& Snapshot); + void Stop(); + void SuspendClothingSimulation(); + void TermBodiesBelow(class FName ParentBoneName); + void ToggleDisablePostProcessBlueprint(); + void UnbindClothFromLeaderPoseComponent(bool bRestoreSimulationSpace); + void UnlinkAnimClassLayers(TSubclassOf InClass); + + bool GetAllowClothActors() const; + bool GetAllowedAnimCurveEvaluate() const; + bool GetAllowRigidBodyAnimNode() const; + EAnimationMode GetAnimationMode() const; + class UAnimInstance* GetAnimInstance() const; + float GetBoneMass(class FName BoneName, bool bScaleMass) const; + class UClothingSimulationInteractor* GetClothingSimulationInteractor() const; + float GetClothMaxDistanceScale() const; + bool GetDisableAnimCurves() const; + bool GetDisablePostProcessBlueprint() const; + class UAnimInstance* GetLinkedAnimGraphInstanceByTag(class FName InTag) const; + void GetLinkedAnimGraphInstancesByTag(class FName InTag, TArray* OutLinkedInstances) const; + class UAnimInstance* GetLinkedAnimLayerInstanceByClass(TSubclassOf InClass) const; + class UAnimInstance* GetLinkedAnimLayerInstanceByGroup(class FName InGroup) const; + float GetMorphTarget(class FName MorphTargetName) const; + float GetPlayRate() const; + float GetPosition() const; + class UAnimInstance* GetPostProcessInstance() const; + struct FVector GetSkeletalCenterOfMass() const; + class USkeletalMesh* GetSkeletalMeshAsset() const; + float GetTeleportDistanceThreshold() const; + float GetTeleportRotationThreshold() const; + bool HasValidAnimationInstance() const; + bool IsClothingSimulationSuspended() const; + bool IsPlaying() const; + bool K2_GetClosestPointOnPhysicsAsset(const struct FVector& WorldPosition, struct FVector* ClosestWorldPosition, struct FVector* Normal, class FName* BoneName, float* Distance) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshComponent") + } + static class USkeletalMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshComponent; + +// Class Engine.EdGraphNode +// 0x0070 (0x0098 - 0x0028) +class UEdGraphNode : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DeprecatedPins; // 0x0038(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + int32 NodePosX; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NodePosY; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NodeWidth; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NodeHeight; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENodeAdvancedPins AdvancedPinDisplay; // 0x0058(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENodeEnabledState EnabledState; // 0x0059(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_5A[0x1]; // 0x005A(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_5B_0 : 1; // 0x005B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bDisplayAsDisabled : 1; // 0x005B(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bUserSetEnabledState : 1; // 0x005B(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bIsIntermediateNode : 1; // 0x005B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bHasCompilerMessage : 1; // 0x005B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString NodeComment; // 0x0060(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ErrorType; // 0x0070(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0x4]; // 0x0074(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ErrorMsg; // 0x0078(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid NodeGuid; // 0x0088(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EdGraphNode") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EdGraphNode") + } + static class UEdGraphNode* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEdGraphNode; + +// Class Engine.SoundSubmixWidgetInterface +// 0x0000 (0x0000 - 0x0000) +class ISoundSubmixWidgetInterface final +{ +public: + void OnConstructed(class USoundSubmixBase* SoundSubmix); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundSubmixWidgetInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundSubmixWidgetInterface") + } + static class ISoundSubmixWidgetInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISoundSubmixWidgetInterface; + +// Class Engine.EdGraph +// 0x0038 (0x0060 - 0x0028) +class UEdGraph : public UObject +{ +public: + TSubclassOf Schema; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Nodes; // 0x0030(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 bEditable : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowDeletion : 1; // 0x0040(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowRenaming : 1; // 0x0040(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x1F]; // 0x0041(0x001F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EdGraph") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EdGraph") + } + static class UEdGraph* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEdGraph; + +// Class Engine.DebugDrawComponent +// 0x0050 (0x0540 - 0x04F0) +#pragma pack(push, 0x1) +class alignas(0x10) UDebugDrawComponent : public UPrimitiveComponent +{ +public: + uint8 Pad_4E8[0x50]; // 0x04E8(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugDrawComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugDrawComponent") + } + static class UDebugDrawComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UDebugDrawComponent; + +// Class Engine.AnimNotify +// 0x0010 (0x0038 - 0x0028) +class UAnimNotify : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + float GetDefaultTriggerWeightThreshold() const; + class FString GetNotifyName() const; + bool Received_Notify(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, const struct FAnimNotifyEventReference& EventReference) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify") + } + static class UAnimNotify* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify; + +// Class Engine.ActorChannel +// 0x0230 (0x0298 - 0x0068) +class UActorChannel final : public UChannel +{ +public: + class AActor* Actor; // 0x0068(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_70[0xF0]; // 0x0070(0x00F0)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CreateSubObjects; // 0x0160(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_170[0x128]; // 0x0170(0x0128)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorChannel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorChannel") + } + static class UActorChannel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorChannel; + +// Class Engine.SoundGroups +// 0x0060 (0x0088 - 0x0028) +class USoundGroups final : public UObject +{ +public: + TArray SoundGroupProfiles; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + uint8 Pad_38[0x50]; // 0x0038(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundGroups") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundGroups") + } + static class USoundGroups* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundGroups; + +// Class Engine.AnimInstance +// 0x0398 (0x03C0 - 0x0028) +#pragma pack(push, 0x1) +class alignas(0x10) UAnimInstance : public UObject +{ +public: + class USkeleton* CurrentSkeleton; // 0x0028(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERootMotionMode RootMotionMode; // 0x0030(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseMultiThreadedAnimationUpdate : 1; // 0x0031(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsingCopyPoseFromMesh : 1; // 0x0031(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_31_2 : 2; // 0x0031(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bReceiveNotifiesFromLinkedInstances : 1; // 0x0031(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPropagateNotifiesToLinkedInstances : 1; // 0x0031(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseMainInstanceMontageEvaluationData : 1; // 0x0031(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_31_7 : 1; // 0x0031(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_32[0x1]; // 0x0032(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bQueueMontageEvents : 1; // 0x0033(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnMontageBlendingOut; // 0x0038(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnMontageBlendedIn; // 0x0048(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnMontageStarted; // 0x0058(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnMontageEnded; // 0x0068(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnAllMontageInstancesEnded; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_88[0xB0]; // 0x0088(0x00B0)(Fixing Size After Last Property [ Dumper-7 ]) + TMap SlotGroupInertializationRequestDataMap; // 0x0138(0x0050)(Transient, Protected, NativeAccessSpecifierProtected) + uint8 Pad_188[0x38]; // 0x0188(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAnimNotifyQueue NotifyQueue; // 0x01C0(0x0070)(Transient, NativeAccessSpecifierPublic) + TArray ActiveAnimNotifyState; // 0x0230(0x0010)(ZeroConstructor, Transient, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray ActiveAnimNotifyEventReference; // 0x0240(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + uint8 Pad_250[0x168]; // 0x0250(0x0168)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void BlueprintBeginPlay(); + void BlueprintInitializeAnimation(); + void BlueprintLinkedAnimationLayersInitialized(); + void BlueprintPostEvaluateAnimation(); + void BlueprintThreadSafeUpdateAnimation(float DeltaTime); + void BlueprintUpdateAnimation(float DeltaTimeX); + void ClearAllTransitionEvents(); + void ClearMorphTargets(); + void ClearTransitionEvents(const class FName EventName); + class FName GetCurrentStateName(int32 MachineIndex); + bool GetCurveValueWithDefault(class FName CurveName, float DefaultValue, float* OutValue); + float GetInstanceAssetPlayerLength(int32 AssetPlayerIndex); + float GetInstanceAssetPlayerTime(int32 AssetPlayerIndex); + float GetInstanceAssetPlayerTimeFraction(int32 AssetPlayerIndex); + float GetInstanceAssetPlayerTimeFromEnd(int32 AssetPlayerIndex); + float GetInstanceAssetPlayerTimeFromEndFraction(int32 AssetPlayerIndex); + float GetInstanceCurrentStateElapsedTime(int32 MachineIndex); + float GetInstanceMachineWeight(int32 MachineIndex); + float GetInstanceStateWeight(int32 MachineIndex, int32 StateIndex); + float GetInstanceTransitionCrossfadeDuration(int32 MachineIndex, int32 TransitionIndex); + float GetInstanceTransitionTimeElapsed(int32 MachineIndex, int32 TransitionIndex); + float GetInstanceTransitionTimeElapsedFraction(int32 MachineIndex, int32 TransitionIndex); + float GetRelevantAnimLength(int32 MachineIndex, int32 StateIndex); + float GetRelevantAnimTime(int32 MachineIndex, int32 StateIndex); + float GetRelevantAnimTimeFraction(int32 MachineIndex, int32 StateIndex); + float GetRelevantAnimTimeRemaining(int32 MachineIndex, int32 StateIndex); + float GetRelevantAnimTimeRemainingFraction(int32 MachineIndex, int32 StateIndex); + void LinkAnimClassLayers(TSubclassOf InClass); + void LinkAnimGraphByTag(class FName InTag, TSubclassOf InClass); + void LockAIResources(bool bLockMovement, bool LockAILogic); + void Montage_JumpToSection(class FName SectionName, const class UAnimMontage* Montage); + void Montage_JumpToSectionsEnd(class FName SectionName, const class UAnimMontage* Montage); + void Montage_Pause(const class UAnimMontage* Montage); + float Montage_Play(class UAnimMontage* MontageToPlay, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages); + float Montage_PlayWithBlendIn(class UAnimMontage* MontageToPlay, const struct FAlphaBlendArgs& BlendIn, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages); + float Montage_PlayWithBlendSettings(class UAnimMontage* MontageToPlay, const struct FMontageBlendSettings& BlendInSettings, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages); + void Montage_Resume(const class UAnimMontage* Montage); + void Montage_SetNextSection(class FName SectionNameToChange, class FName NextSection, const class UAnimMontage* Montage); + void Montage_SetPlayRate(const class UAnimMontage* Montage, float NewPlayRate); + void Montage_SetPosition(const class UAnimMontage* Montage, float NewPosition); + void Montage_Stop(float InBlendOutTime, const class UAnimMontage* Montage); + void Montage_StopGroupByName(float InBlendOutTime, class FName GroupName); + void Montage_StopWithBlendOut(const struct FAlphaBlendArgs& BlendOut, const class UAnimMontage* Montage); + void Montage_StopWithBlendSettings(const struct FMontageBlendSettings& BlendOutSettings, const class UAnimMontage* Montage); + void MontageSync_Follow(const class UAnimMontage* MontageFollower, const class UAnimInstance* OtherAnimInstance, const class UAnimMontage* MontageLeader); + void MontageSync_StopFollowing(const class UAnimMontage* MontageFollower); + class UAnimMontage* PlaySlotAnimationAsDynamicMontage(class UAnimSequenceBase* Asset, class FName SlotNodeName, float BlendInTime, float BlendOutTime, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt); + class UAnimMontage* PlaySlotAnimationAsDynamicMontage_WithBlendArgs(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FAlphaBlendArgs& BlendIn, const struct FAlphaBlendArgs& BlendOut, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt); + class UAnimMontage* PlaySlotAnimationAsDynamicMontage_WithBlendSettings(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FMontageBlendSettings& BlendInSettings, const struct FMontageBlendSettings& BlendOutSettings, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt); + bool QueryAndMarkTransitionEvent(int32 MachineIndex, int32 TransitionIndex, class FName EventName); + bool QueryTransitionEvent(int32 MachineIndex, int32 TransitionIndex, class FName EventName); + void RemovePoseSnapshot(class FName SnapshotName); + void RequestSlotGroupInertialization(class FName InSlotGroupName, float duration, const class UBlendProfile* BlendProfile); + bool RequestTransitionEvent(const class FName EventName, const double RequestTimeout, const ETransitionRequestQueueMode QueueMode, const ETransitionRequestOverwriteMode OverwriteMode); + void ResetDynamics(ETeleportType InTeleportType); + void SavePoseSnapshot(class FName SnapshotName); + void SetMorphTarget(class FName MorphTargetName, float Value); + void SetPropagateNotifiesToLinkedInstances(bool bSet); + void SetReceiveNotifiesFromLinkedInstances(bool bSet); + void SetRootMotionMode(ERootMotionMode Value); + void SetUseMainInstanceMontageEvaluationData(bool bSet); + void SnapshotPose(struct FPoseSnapshot& Snapshot); + void StopSlotAnimation(float InBlendOutTime, class FName SlotNodeName); + void UnlinkAnimClassLayers(TSubclassOf InClass); + void UnlockAIResources(bool bUnlockMovement, bool UnlockAILogic); + bool WasAnimNotifyNameTriggeredInAnyState(class FName NotifyName); + bool WasAnimNotifyNameTriggeredInSourceState(int32 MachineIndex, int32 StateIndex, class FName NotifyName); + bool WasAnimNotifyNameTriggeredInStateMachine(int32 MachineIndex, class FName NotifyName); + bool WasAnimNotifyStateActiveInAnyState(TSubclassOf AnimNotifyStateType); + bool WasAnimNotifyStateActiveInSourceState(int32 MachineIndex, int32 StateIndex, TSubclassOf AnimNotifyStateType); + bool WasAnimNotifyStateActiveInStateMachine(int32 MachineIndex, TSubclassOf AnimNotifyStateType); + bool WasAnimNotifyTriggeredInAnyState(TSubclassOf AnimNotifyType); + bool WasAnimNotifyTriggeredInSourceState(int32 MachineIndex, int32 StateIndex, TSubclassOf AnimNotifyType); + bool WasAnimNotifyTriggeredInStateMachine(int32 MachineIndex, TSubclassOf AnimNotifyType); + + class UAnimInstance* Blueprint_GetMainAnimInstance() const; + float Blueprint_GetSlotMontageLocalWeight(class FName SlotNodeName) const; + float CalculateDirection(const struct FVector& Velocity, const struct FRotator& BaseRotation) const; + bool DynamicMontage_IsPlayingFrom(const class UAnimSequenceBase* Animation) const; + void GetActiveCurveNames(EAnimCurveType CurveType, TArray* OutNames) const; + void GetAllCurveNames(TArray* OutNames) const; + const class UBlendProfile* GetBlendProfileByName(class FName InBlendProfileName) const; + class UAnimMontage* GetCurrentActiveMontage() const; + float GetCurveValue(class FName CurveName) const; + float GetDeltaSeconds() const; + class UAnimInstance* GetLinkedAnimGraphInstanceByTag(class FName InTag) const; + void GetLinkedAnimGraphInstancesByTag(class FName InTag, TArray* OutLinkedInstances) const; + class UAnimInstance* GetLinkedAnimLayerInstanceByClass(TSubclassOf InClass, bool bCheckForChildClass) const; + class UAnimInstance* GetLinkedAnimLayerInstanceByGroup(class FName InGroup) const; + class UAnimInstance* GetLinkedAnimLayerInstanceByGroupAndClass(class FName InGroup, TSubclassOf InClass) const; + void GetLinkedAnimLayerInstancesByGroup(class FName InGroup, TArray* OutLinkedInstances) const; + class AActor* GetOwningActor() const; + class USkeletalMeshComponent* GetOwningComponent() const; + bool GetPropagateNotifiesToLinkedInstances() const; + bool GetReceiveNotifiesFromLinkedInstances() const; + struct FMarkerSyncAnimPosition GetSyncGroupPosition(class FName InSyncGroupName) const; + bool GetTimeToClosestMarker(class FName SyncGroup, class FName MarkerName, float* OutMarkerTime) const; + bool HasMarkerBeenHitThisFrame(class FName SyncGroup, class FName MarkerName) const; + bool IsAnyMontagePlaying() const; + bool IsPlayingSlotAnimation(const class UAnimSequenceBase* Asset, class FName SlotNodeName) const; + bool IsSlotActive(class FName SlotNodeName) const; + bool IsSyncGroupBetweenMarkers(class FName InSyncGroupName, class FName PreviousMarker, class FName NextMarker, bool bRespectMarkerOrder) const; + bool IsUsingMainInstanceMontageEvaluationData() const; + float Montage_GetBlendTime(const class UAnimMontage* Montage) const; + class FName Montage_GetCurrentSection(const class UAnimMontage* Montage) const; + float Montage_GetEffectivePlayRate(const class UAnimMontage* Montage) const; + bool Montage_GetIsStopped(const class UAnimMontage* Montage) const; + float Montage_GetPlayRate(const class UAnimMontage* Montage) const; + float Montage_GetPosition(const class UAnimMontage* Montage) const; + bool Montage_IsActive(const class UAnimMontage* Montage) const; + bool Montage_IsPlaying(const class UAnimMontage* Montage) const; + class APawn* TryGetPawnOwner() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimInstance") + } + static class UAnimInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UAnimInstance; + +// Class Engine.TypedElementWorldInterface +// 0x0000 (0x0000 - 0x0000) +class ITypedElementWorldInterface final +{ +public: + bool CanDeleteElement(const struct FScriptTypedElementHandle& InElementHandle); + bool CanDuplicateElement(const struct FScriptTypedElementHandle& InElementHandle); + bool CanEditElement(const struct FScriptTypedElementHandle& InElementHandle); + bool CanMoveElement(const struct FScriptTypedElementHandle& InElementHandle, const ETypedElementWorldType InWorldType); + bool CanPromoteElement(const struct FScriptTypedElementHandle& InElementHandle); + bool CanScaleElement(const struct FScriptTypedElementHandle& InElementHandle); + bool DeleteElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* InWorld, class UTypedElementSelectionSet* InSelectionSet, const struct FTypedElementDeletionOptions& InDeletionOptions); + struct FScriptTypedElementHandle DuplicateElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* InWorld, const struct FVector& InLocationOffset); + bool GetBounds(const struct FScriptTypedElementHandle& InElementHandle, struct FBoxSphereBounds* OutBounds); + class ULevel* GetOwnerLevel(const struct FScriptTypedElementHandle& InElementHandle); + class UWorld* GetOwnerWorld(const struct FScriptTypedElementHandle& InElementHandle); + bool GetPivotOffset(const struct FScriptTypedElementHandle& InElementHandle, struct FVector* OutPivotOffset); + bool GetRelativeTransform(const struct FScriptTypedElementHandle& InElementHandle, struct FTransform* OutTransform); + bool GetWorldTransform(const struct FScriptTypedElementHandle& InElementHandle, struct FTransform* OutTransform); + bool IsTemplateElement(const struct FScriptTypedElementHandle& InElementHandle); + void NotifyMovementEnded(const struct FScriptTypedElementHandle& InElementHandle); + void NotifyMovementOngoing(const struct FScriptTypedElementHandle& InElementHandle); + void NotifyMovementStarted(const struct FScriptTypedElementHandle& InElementHandle); + struct FScriptTypedElementHandle PromoteElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* OverrideWorld); + bool SetPivotOffset(const struct FScriptTypedElementHandle& InElementHandle, const struct FVector& InPivotOffset); + bool SetRelativeTransform(const struct FScriptTypedElementHandle& InElementHandle, const struct FTransform& InTransform); + bool SetWorldTransform(const struct FScriptTypedElementHandle& InElementHandle, const struct FTransform& InTransform); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementWorldInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementWorldInterface") + } + static class ITypedElementWorldInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ITypedElementWorldInterface; + +// Class Engine.ParticleModuleLocationBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleLocationBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationBase") + } + static class UParticleModuleLocationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationBase; + +// Class Engine.ParticleModuleLocationPrimitiveBase +// 0x0098 (0x00C8 - 0x0030) +class UParticleModuleLocationPrimitiveBase : public UParticleModuleLocationBase +{ +public: + uint8 Positive_X : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Positive_Y : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Positive_Z : 1; // 0x0030(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_X : 1; // 0x0030(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_Y : 1; // 0x0030(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_Z : 1; // 0x0030(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 SurfaceOnly : 1; // 0x0030(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Velocity : 1; // 0x0030(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat VelocityScale; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector StartLocation; // 0x0068(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveBase") + } + static class UParticleModuleLocationPrimitiveBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveBase; + +// Class Engine.ParticleModuleLocationPrimitiveSphere +// 0x0030 (0x00F8 - 0x00C8) +class UParticleModuleLocationPrimitiveSphere : public UParticleModuleLocationPrimitiveBase +{ +public: + struct FRawDistributionFloat StartRadius; // 0x00C8(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveSphere") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveSphere") + } + static class UParticleModuleLocationPrimitiveSphere* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveSphere; + +// Class Engine.ParticleModuleLocationPrimitiveSphere_Seeded +// 0x0020 (0x0118 - 0x00F8) +class UParticleModuleLocationPrimitiveSphere_Seeded final : public UParticleModuleLocationPrimitiveSphere +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x00F8(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveSphere_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveSphere_Seeded") + } + static class UParticleModuleLocationPrimitiveSphere_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveSphere_Seeded; + +// Class Engine.ActiveSoundUpdateInterface +// 0x0000 (0x0000 - 0x0000) +class IActiveSoundUpdateInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActiveSoundUpdateInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActiveSoundUpdateInterface") + } + static class IActiveSoundUpdateInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IActiveSoundUpdateInterface; + +// Class Engine.LocalFogVolume +// 0x0008 (0x02B0 - 0x02A8) +class ALocalFogVolume final : public AInfo +{ +public: + class ULocalFogVolumeComponent* LocalFogVolumeVolume; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalFogVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalFogVolume") + } + static class ALocalFogVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALocalFogVolume; + +// Class Engine.AnimBlueprintClassSubsystem_PropertyAccess +// 0x0000 (0x0028 - 0x0028) +class UAnimBlueprintClassSubsystem_PropertyAccess final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBlueprintClassSubsystem_PropertyAccess") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBlueprintClassSubsystem_PropertyAccess") + } + static class UAnimBlueprintClassSubsystem_PropertyAccess* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBlueprintClassSubsystem_PropertyAccess; + +// Class Engine.BlueprintCore +// 0x0028 (0x0050 - 0x0028) +class UBlueprintCore : public UObject +{ +public: + TSubclassOf SkeletonGeneratedClass; // 0x0028(0x0008)(ZeroConstructor, Transient, NonTransactional, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GeneratedClass; // 0x0030(0x0008)(ZeroConstructor, NonTransactional, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLegacyNeedToPurgeSkelRefs; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid BlueprintGuid; // 0x003C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintCore") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintCore") + } + static class UBlueprintCore* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintCore; + +// Class Engine.MovementComponent +// 0x0068 (0x0108 - 0x00A0) +class UMovementComponent : public UActorComponent +{ +public: + class USceneComponent* UpdatedComponent; // 0x00A0(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, Transient, InstancedReference, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* UpdatedPrimitive; // 0x00A8(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, Transient, InstancedReference, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B0[0x8]; // 0x00B0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Velocity; // 0x00B8(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneConstraintNormal; // 0x00D0(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector PlaneConstraintOrigin; // 0x00E8(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bUpdateOnlyIfRendered : 1; // 0x0100(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoUpdateTickRegistration : 1; // 0x0100(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTickBeforeOwner : 1; // 0x0100(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoRegisterUpdatedComponent : 1; // 0x0100(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bConstrainToPlane : 1; // 0x0100(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSnapToPlaneAtStart : 1; // 0x0100(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoRegisterPhysicsVolumeUpdates : 1; // 0x0100(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComponentShouldUpdatePhysicsVolume : 1; // 0x0100(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_101[0x2]; // 0x0101(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + EPlaneConstraintAxisSetting PlaneConstraintAxisSetting; // 0x0103(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool K2_MoveUpdatedComponent(const struct FVector& Delta, const struct FRotator& NewRotation, struct FHitResult* OutHit, bool bSweep, bool bTeleport); + void PhysicsVolumeChanged(class APhysicsVolume* NewVolume); + void SetPlaneConstraintAxisSetting(EPlaneConstraintAxisSetting NewAxisSetting); + void SetPlaneConstraintEnabled(bool bEnabled); + void SetPlaneConstraintFromVectors(const struct FVector& Forward, const struct FVector& Up); + void SetPlaneConstraintNormal(const struct FVector& PlaneNormal); + void SetPlaneConstraintOrigin(const struct FVector& PlaneOrigin); + void SetUpdatedComponent(class USceneComponent* NewUpdatedComponent); + void SnapUpdatedComponentToPlane(); + void StopMovementImmediately(); + + struct FVector ConstrainDirectionToPlane(const struct FVector& Direction) const; + struct FVector ConstrainLocationToPlane(const struct FVector& Location) const; + struct FVector ConstrainNormalToPlane(const struct FVector& Normal) const; + float GetGravityZ() const; + float GetMaxSpeed() const; + class APhysicsVolume* GetPhysicsVolume() const; + EPlaneConstraintAxisSetting GetPlaneConstraintAxisSetting() const; + const struct FVector GetPlaneConstraintNormal() const; + const struct FVector GetPlaneConstraintOrigin() const; + bool IsExceedingMaxSpeed(float MaxSpeed) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MovementComponent") + } + static class UMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMovementComponent; + +// Class Engine.ProjectileMovementComponent +// 0x0158 (0x0260 - 0x0108) +class alignas(0x10) UProjectileMovementComponent final : public UMovementComponent +{ +public: + float InitialSpeed; // 0x0108(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSpeed; // 0x010C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRotationFollowsVelocity : 1; // 0x0110(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRotationRemainsVertical : 1; // 0x0110(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldBounce : 1; // 0x0110(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInitialVelocityInLocalSpace : 1; // 0x0110(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceSubStepping : 1; // 0x0110(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSimulationEnabled : 1; // 0x0110(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSweepCollision : 1; // 0x0110(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsHomingProjectile : 1; // 0x0110(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBounceAngleAffectsFriction : 1; // 0x0111(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsSliding : 1; // 0x0111(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInterpMovement : 1; // 0x0111(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInterpRotation : 1; // 0x0111(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bThrottleInterpolation : 1; // 0x0111(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_111_5 : 3; // 0x0111(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_112[0x6]; // 0x0112(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bSimulationUseScopedMovement : 1; // 0x0118(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInterpolationUseScopedMovement : 1; // 0x0118(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_119[0x3]; // 0x0119(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PreviousHitTime; // 0x011C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousHitNormal; // 0x0120(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectileGravityScale; // 0x0138(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Buoyancy; // 0x013C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bounciness; // 0x0140(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Friction; // 0x0144(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BounceVelocityStopSimulatingThreshold; // 0x0148(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinFrictionFraction; // 0x014C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnProjectileBounce; // 0x0150(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnProjectileStop; // 0x0160(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + float HomingAccelerationMagnitude; // 0x0170(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr HomingTargetComponent; // 0x0174(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, DisableEditOnTemplate, EditConst, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSimulationTimeStep; // 0x017C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxSimulationIterations; // 0x0180(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BounceAdditionalIterations; // 0x0184(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpLocationTime; // 0x0188(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpRotationTime; // 0x018C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpLocationMaxLagDistance; // 0x0190(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpLocationSnapToTargetDistance; // 0x0194(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ThrottleInterpolationThresholdNotRenderedShortTime; // 0x0198(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ThrottleInterpolationThresholdNotRenderedLongTime; // 0x019C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ThrottleInterpolationSkipFramesRecent; // 0x01A0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ThrottleInterpolationSkipFramesNotRecent; // 0x01A4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A8[0xB8]; // 0x01A8(0x00B8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void MoveInterpolationTarget(const struct FVector& NewLocation, const struct FRotator& NewRotation); + void ResetInterpolation(); + void SetInterpolatedComponent(class USceneComponent* Component); + void SetVelocityInLocalSpace(const struct FVector& NewVelocity); + void StopSimulating(const struct FHitResult& HitResult); + + bool IsInterpolationComplete() const; + bool IsVelocityUnderSimulationThreshold() const; + struct FVector LimitVelocity(const struct FVector& NewVelocity) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ProjectileMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ProjectileMovementComponent") + } + static class UProjectileMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UProjectileMovementComponent; + +// Class Engine.MaterialExpressionSceneDepth +// 0x0068 (0x0118 - 0x00B0) +class UMaterialExpressionSceneDepth final : public UMaterialExpression +{ +public: + EMaterialSceneAttributeInputMode InputMode; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Input; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Coordinates; // 0x00E0(0x0028)(Deprecated, NoDestructor, NativeAccessSpecifierPublic) + struct FVector2D ConstInput; // 0x0108(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSceneDepth") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSceneDepth") + } + static class UMaterialExpressionSceneDepth* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSceneDepth; + +// Class Engine.Blueprint +// 0x0058 (0x00A8 - 0x0050) +class UBlueprint : public UBlueprintCore +{ +public: + uint8 Pad_50[0x8]; // 0x0050(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf ParentClass; // 0x0058(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlueprintType BlueprintType; // 0x0060(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRecompileOnLoad : 1; // 0x0061(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasBeenRegenerated : 1; // 0x0061(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsRegeneratingOnLoad : 1; // 0x0061(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 BlueprintSystemVersion; // 0x0064(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USimpleConstructionScript* SimpleConstructionScript; // 0x0068(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ComponentTemplates; // 0x0070(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray Timelines; // 0x0080(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ComponentClassOverrides; // 0x0090(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class UInheritableComponentHandler* InheritableComponentHandler; // 0x00A0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Blueprint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Blueprint") + } + static class UBlueprint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprint; + +// Class Engine.PlatformInterfaceBase +// 0x0010 (0x0038 - 0x0028) +class UPlatformInterfaceBase : public UObject +{ +public: + TArray AllDelegates; // 0x0028(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformInterfaceBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformInterfaceBase") + } + static class UPlatformInterfaceBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlatformInterfaceBase; + +// Class Engine.CloudStorageBase +// 0x0018 (0x0050 - 0x0038) +class UCloudStorageBase final : public UPlatformInterfaceBase +{ +public: + TArray LocalCloudFiles; // 0x0038(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bSuppressDelegateCalls : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CloudStorageBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CloudStorageBase") + } + static class UCloudStorageBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCloudStorageBase; + +// Class Engine.SoundBase +// 0x0140 (0x0168 - 0x0028) +class USoundBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundClass* SoundClassObject; // 0x0030(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDebug : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideConcurrency : 1; // 0x0038(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableBusSends : 1; // 0x0038(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableBaseSubmix : 1; // 0x0038(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableSubmixSends : 1; // 0x0038(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasDelayNode : 1; // 0x0038(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasConcatenatorNode : 1; // 0x0038(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBypassVolumeScaleForPriority : 1; // 0x0038(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EVirtualizationMode VirtualizationMode; // 0x0039(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x56]; // 0x003A(0x0056)(Fixing Size After Last Property [ Dumper-7 ]) + TSet ConcurrencySet; // 0x0090(0x0050)(Edit, BlueprintVisible, UObjectWrapper, NativeAccessSpecifierPublic) + struct FSoundConcurrencySettings ConcurrencyOverrides; // 0x00E0(0x0020)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + float duration; // 0x0100(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDistance; // 0x0104(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TotalSamples; // 0x0108(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Priority; // 0x010C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundAttenuation* AttenuationSettings; // 0x0110(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundSubmixBase* SoundSubmixObject; // 0x0118(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SoundSubmixSends; // 0x0120(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + class USoundEffectSourcePresetChain* SourceEffectChain; // 0x0130(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BusSends; // 0x0138(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray PreEffectBusSends; // 0x0148(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AssetUserData; // 0x0158(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + bool IsAttenuationSettingsEditable() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundBase") + } + static class USoundBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundBase; + +// Class Engine.SoundWave +// 0x0288 (0x03F0 - 0x0168) +class USoundWave : public USoundBase +{ +public: + uint8 Pad_168[0x10]; // 0x0168(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CompressionQuality; // 0x0178(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 StreamingPriority; // 0x017C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESoundwaveSampleRateSettings SampleRateQuality; // 0x0180(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_181[0x1]; // 0x0181(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ESoundGroup SoundGroup; // 0x0182(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLooping : 1; // 0x0183(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStreaming : 1; // 0x0183(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSeekableStreaming : 1; // 0x0183(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bUseBinkAudio : 1; // 0x0183(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + ESoundAssetCompressionType SoundAssetCompressionType; // 0x0184(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_185[0x13]; // 0x0185(0x0013)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoundModulationDefaultRoutingSettings ModulationSettings; // 0x0198(0x0168)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + TArray FrequenciesToAnalyze; // 0x0300(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray CookedSpectralTimeData; // 0x0310(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray CookedEnvelopeTimeData; // 0x0320(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_330[0x1C]; // 0x0330(0x001C)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_34C_0 : 5; // 0x034C(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bMature : 1; // 0x034C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bManualWordWrap : 1; // 0x034C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSingleLine : 1; // 0x034C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsAmbisonics : 1; // 0x034D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ESoundWaveLoadingBehavior LoadingBehavior; // 0x034E(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34F[0x1]; // 0x034F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + class FString SpokenText; // 0x0350(0x0010)(ZeroConstructor, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubtitlePriority; // 0x0360(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Volume; // 0x0364(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x0368(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumChannels; // 0x036C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SampleRate; // 0x0370(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_374[0xC]; // 0x0374(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Subtitles; // 0x0380(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + class UCurveTable* Curves; // 0x0390(0x0008)(Edit, ZeroConstructor, NoDestructor, AdvancedDisplay, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UCurveTable* InternalCurves; // 0x0398(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_3A0[0x50]; // 0x03A0(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetSoundAssetCompressionType(ESoundAssetCompressionType InSoundAssetCompressionType, bool bMarkDirty); + + TArray GetCuePoints() const; + TArray GetLoopRegions() const; + ESoundAssetCompressionType GetSoundAssetCompressionType() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundWave") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundWave") + } + static class USoundWave* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundWave; + +// Class Engine.BoneMaskFilter +// 0x0010 (0x0038 - 0x0028) +class UBoneMaskFilter final : public UObject +{ +public: + TArray BlendPoses; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoneMaskFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoneMaskFilter") + } + static class UBoneMaskFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBoneMaskFilter; + +// Class Engine.MaterialExpressionDotProduct +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionDotProduct final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDotProduct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDotProduct") + } + static class UMaterialExpressionDotProduct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDotProduct; + +// Class Engine.CurveEdPresetCurve +// 0x0000 (0x0028 - 0x0028) +class UCurveEdPresetCurve final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveEdPresetCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveEdPresetCurve") + } + static class UCurveEdPresetCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveEdPresetCurve; + +// Class Engine.Texture +// 0x0068 (0x0130 - 0x00C8) +class UTexture : public UStreamableRenderAsset +{ +public: + uint8 Pad_C8[0x10]; // 0x00C8(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid LightingGuid; // 0x00D8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 LevelIndex; // 0x00E8(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NonTransactional, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODBias; // 0x00EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCompressionSettings CompressionSettings; // 0x00F0(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureFilter Filter; // 0x00F1(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipLoadOptions MipLoadOptions; // 0x00F2(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCookPlatformTilingSettings CookPlatformTilingSettings; // 0x00F3(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOodlePreserveExtremes; // 0x00F4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureGroup LODGroup; // 0x00F5(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F6[0x2]; // 0x00F6(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformFloat Downscale; // 0x00F8(0x0004)(Edit, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + ETextureDownscaleOptions DownscaleOptions; // 0x00FC(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAvailability Availability; // 0x00FD(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 SRGB : 1; // 0x00FE(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNoTiling : 1; // 0x00FE(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 VirtualTextureStreaming : 1; // 0x00FE(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CompressionYCoCg : 1; // 0x00FE(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNotOfflineProcessed : 1; // 0x00FE(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAsyncResourceReleaseHasBeenStarted : 1; // 0x00FE(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_FF[0x1]; // 0x00FF(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AssetUserData; // 0x0100(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_110[0x20]; // 0x0110(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool Blueprint_GetTextureSourceIdString(class FString* OutTextureSourceId); + + bool AreDownscalePropertiesEditable() const; + int64 Blueprint_GetMemorySize() const; + void Blueprint_GetTextureSourceDiskAndMemorySize(int64* OutDiskSize, int64* OutMemorySize) const; + bool ComputeTextureSourceChannelMinMax(struct FLinearColor* OutColorMin, struct FLinearColor* OutColorMax) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Texture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Texture") + } + static class UTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTexture; + +// Class Engine.MaterialExpressionArccosine +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArccosine final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArccosine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArccosine") + } + static class UMaterialExpressionArccosine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArccosine; + +// Class Engine.Controller +// 0x0098 (0x0340 - 0x02A8) +class AController : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerState* PlayerState; // 0x02B0(0x0008)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B8[0x8]; // 0x02B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnInstigatedAnyDamage; // 0x02C0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnPossessedPawnChanged; // 0x02D0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + class FName StateName; // 0x02E0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APawn* Pawn; // 0x02E8(0x0008)(Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2F0[0x8]; // 0x02F0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class ACharacter* Character; // 0x02F8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USceneComponent* TransformComponent; // 0x0300(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_308[0x18]; // 0x0308(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ControlRotation; // 0x0320(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 bAttachToPawn : 1; // 0x0338(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_339[0x7]; // 0x0339(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ClientSetLocation(const struct FVector& NewLocation, const struct FRotator& NewRotation); + void ClientSetRotation(const struct FRotator& NewRotation, bool bResetCamera); + void OnRep_Pawn(); + void OnRep_PlayerState(); + void Possess(class APawn* InPawn); + void ReceiveInstigatedAnyDamage(float Damage, const class UDamageType* DamageType, class AActor* DamagedActor, class AActor* DamageCauser); + void ReceivePossess(class APawn* PossessedPawn); + void ReceiveUnPossess(class APawn* UnpossessedPawn); + void ResetIgnoreInputFlags(); + void ResetIgnoreLookInput(); + void ResetIgnoreMoveInput(); + void SetControlRotation(const struct FRotator& NewRotation); + void SetIgnoreLookInput(bool bNewLookInput); + void SetIgnoreMoveInput(bool bNewMoveInput); + void SetInitialLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation); + void StopMovement(); + void UnPossess(); + + struct FRotator GetControlRotation() const; + struct FRotator GetDesiredRotation() const; + void GetPlayerViewPoint(struct FVector* Location, struct FRotator* Rotation) const; + class AActor* GetViewTarget() const; + bool IsLocalController() const; + bool IsLocalPlayerController() const; + bool IsLookInputIgnored() const; + bool IsMoveInputIgnored() const; + bool IsPlayerController() const; + class APawn* K2_GetPawn() const; + bool LineOfSightTo(const class AActor* Other, const struct FVector& ViewPoint, bool bAlternateChecks) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Controller") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Controller") + } + static class AController* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AController; + +// Class Engine.CameraActor +// 0x0728 (0x09D0 - 0x02A8) +class ACameraActor : public AActor +{ +public: + EAutoReceiveInput AutoActivateForPlayer; // 0x02A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2A9[0x7]; // 0x02A9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCameraComponent* CameraComponent; // 0x02B0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USceneComponent* SceneComponent; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bConstrainAspectRatio : 1; // 0x02C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_2C1[0x3]; // 0x02C1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AspectRatio; // 0x02C4(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float FOVAngle; // 0x02C8(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float PostProcessBlendWeight; // 0x02CC(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FPostProcessSettings PostProcessSettings; // 0x02D0(0x0700)(Deprecated, NativeAccessSpecifierPrivate) + +public: + int32 GetAutoActivatePlayerIndex() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraActor") + } + static class ACameraActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ACameraActor; + +// Class Engine.CameraComponent +// 0x07D0 (0x0A00 - 0x0230) +class UCameraComponent : public USceneComponent +{ +public: + float FieldOfView; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FirstPersonFieldOfView; // 0x0234(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FirstPersonScale; // 0x0238(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoWidth; // 0x023C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoCalculateOrthoPlanes; // 0x0240(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_241[0x3]; // 0x0241(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoPlaneShift; // 0x0244(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoNearClipPlane; // 0x0248(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoFarClipPlane; // 0x024C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOrthoPlanes; // 0x0250(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCameraHeightAsViewTarget; // 0x0251(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_252[0x2]; // 0x0252(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float AspectRatio; // 0x0254(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAspectRatioAxisConstraint AspectRatioAxisConstraint; // 0x0258(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bConstrainAspectRatio : 1; // 0x0259(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideAspectRatioAxisConstraint : 1; // 0x0259(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFieldOfViewForLOD : 1; // 0x0259(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_25A[0x2]; // 0x025A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Overscan; // 0x025C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScaleResolutionWithOverscan; // 0x0260(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCropOverscan; // 0x0261(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockToHmd : 1; // 0x0262(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsePawnControlRotation : 1; // 0x0262(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableFirstPersonFieldOfView : 1; // 0x0262(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableFirstPersonScale : 1; // 0x0262(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ECameraProjectionMode ProjectionMode; // 0x0263(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_264[0x6C]; // 0x0264(0x006C)(Fixing Size After Last Property [ Dumper-7 ]) + float PostProcessBlendWeight; // 0x02D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D4[0x2C]; // 0x02D4(0x002C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings PostProcessSettings; // 0x0300(0x0700)(Edit, BlueprintVisible, Interp, NativeAccessSpecifierPublic) + +public: + void AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight); + void GetCameraView(float DeltaTime, struct FMinimalViewInfo* DesiredView); + void OnCameraMeshHiddenChanged(); + void RemoveBlendable(TScriptInterface InBlendableObject); + void SetAspectRatio(float InAspectRatio); + void SetAspectRatioAxisConstraint(EAspectRatioAxisConstraint InAspectRatioAxisConstraint); + void SetAutoCalculateOrthoPlanes(bool bAutoCalculate); + void SetAutoPlaneShift(float InAutoPlaneShift); + void SetConstraintAspectRatio(bool bInConstrainAspectRatio); + void SetCropOverscan(bool bInCropOverscan); + void SetEnableFirstPersonFieldOfView(bool bInEnableFirstPersonFieldOfView); + void SetEnableFirstPersonScale(bool bInEnableFirstPersonScale); + void SetFieldOfView(float InFieldOfView); + void SetFirstPersonFieldOfView(float InFirstPersonFieldOfView); + void SetFirstPersonScale(float InFirstPersonScale); + void SetOrthoFarClipPlane(float InOrthoFarClipPlane); + void SetOrthoNearClipPlane(float InOrthoNearClipPlane); + void SetOrthoWidth(float InOrthoWidth); + void SetOverscan(float InOverscan); + void SetPostProcessBlendWeight(float InPostProcessBlendWeight); + void SetProjectionMode(ECameraProjectionMode InProjectionMode); + void SetScaleResolutionWithOverscan(bool bInScaleResolutionWithOverscan); + void SetUpdateOrthoPlanes(bool bInUpdateOrthoPlanes); + void SetUseCameraHeightAsViewTarget(bool bInUseCameraHeightAsViewTarget); + void SetUseFieldOfViewForLOD(bool bInUseFieldOfViewForLOD); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraComponent") + } + static class UCameraComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraComponent; + +// Class Engine.MaterialExpressionExponential2 +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionExponential2 final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionExponential2") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionExponential2") + } + static class UMaterialExpressionExponential2* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionExponential2; + +// Class Engine.AudioEngineSubsystem +// 0x0000 (0x0030 - 0x0030) +class UAudioEngineSubsystem : public UDynamicSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioEngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioEngineSubsystem") + } + static class UAudioEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioEngineSubsystem; + +// Class Engine.DataAsset +// 0x0008 (0x0030 - 0x0028) +class UDataAsset : public UObject +{ +public: + TSubclassOf NativeClass; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataAsset") + } + static class UDataAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataAsset; + +// Class Engine.PreviewMeshCollection +// 0x0020 (0x0050 - 0x0030) +class UPreviewMeshCollection final : public UDataAsset +{ +public: + uint8 Pad_30[0x8]; // 0x0030(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* Skeleton; // 0x0038(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SkeletalMeshes; // 0x0040(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PreviewMeshCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PreviewMeshCollection") + } + static class UPreviewMeshCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPreviewMeshCollection; + +// Class Engine.ParticleModuleParameterBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleParameterBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleParameterBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleParameterBase") + } + static class UParticleModuleParameterBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleParameterBase; + +// Class Engine.ParticleModuleSpawnBase +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleSpawnBase : public UParticleModule +{ +public: + uint8 bProcessSpawnRate : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bProcessBurstList : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSpawnBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSpawnBase") + } + static class UParticleModuleSpawnBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSpawnBase; + +// Class Engine.SoundWaveProcedural +// 0x0050 (0x0440 - 0x03F0) +class USoundWaveProcedural : public USoundWave +{ +public: + uint8 Pad_3F0[0x50]; // 0x03F0(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundWaveProcedural") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundWaveProcedural") + } + static class USoundWaveProcedural* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundWaveProcedural; + +// Class Engine.AnimationAssetExtensions +// 0x0000 (0x0028 - 0x0028) +class UAnimationAssetExtensions final : public UBlueprintFunctionLibrary +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationAssetExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationAssetExtensions") + } + static class UAnimationAssetExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationAssetExtensions; + +// Class Engine.ReflectionCapture +// 0x0008 (0x02B0 - 0x02A8) +class AReflectionCapture : public AActor +{ +public: + class UReflectionCaptureComponent* CaptureComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReflectionCapture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReflectionCapture") + } + static class AReflectionCapture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AReflectionCapture; + +// Class Engine.SphereReflectionCapture +// 0x0008 (0x02B8 - 0x02B0) +class ASphereReflectionCapture final : public AReflectionCapture +{ +public: + class UDrawSphereComponent* DrawCaptureRadius; // 0x02B0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereReflectionCapture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereReflectionCapture") + } + static class ASphereReflectionCapture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASphereReflectionCapture; + +// Class Engine.AnimLayerInterface +// 0x0000 (0x0000 - 0x0000) +class IAnimLayerInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimLayerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimLayerInterface") + } + static class IAnimLayerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAnimLayerInterface; + +// Class Engine.DataLayerManager +// 0x00B0 (0x00D8 - 0x0028) +class UDataLayerManager final : public UObject +{ +public: + TMulticastInlineDelegate OnDataLayerInstanceRuntimeStateChanged; // 0x0028(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TSet ReferencedObjects; // 0x0038(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_88[0x50]; // 0x0088(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool SetDataLayerInstanceRuntimeState(const class UDataLayerInstance* InDataLayerInstance, EDataLayerRuntimeState InState, bool bInIsRecursive); + bool SetDataLayerRuntimeState(const class UDataLayerAsset* InDataLayerAsset, EDataLayerRuntimeState InState, bool bInIsRecursive); + + EDataLayerRuntimeState GetDataLayerInstanceEffectiveRuntimeState(const class UDataLayerInstance* InDataLayerInstance) const; + const class UDataLayerInstance* GetDataLayerInstanceFromAsset(const class UDataLayerAsset* InDataLayerAsset) const; + const class UDataLayerInstance* GetDataLayerInstanceFromName(const class FName& InDataLayerInstanceName) const; + EDataLayerRuntimeState GetDataLayerInstanceRuntimeState(const class UDataLayerInstance* InDataLayerInstance) const; + TArray GetDataLayerInstances() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerManager") + } + static class UDataLayerManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerManager; + +// Class Engine.AnimationAsset +// 0x0058 (0x0080 - 0x0028) +class UAnimationAsset : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* Skeleton; // 0x0038(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_40[0x20]; // 0x0040(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MetaData; // 0x0060(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray AssetUserData; // 0x0070(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + +public: + class UAnimMetaData* FindMetaDataByClass(const TSubclassOf MetaDataClass) const; + float GetPlayLength() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationAsset") + } + static class UAnimationAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationAsset; + +// Class Engine.SparseVolumeTexture +// 0x0000 (0x0028 - 0x0028) +class USparseVolumeTexture : public UObject +{ +public: + struct FTransform GetFrameTransform() const; + int32 GetNumFrames() const; + int32 GetNumMipLevels() const; + int32 GetSizeX() const; + int32 GetSizeY() const; + int32 GetSizeZ() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SparseVolumeTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SparseVolumeTexture") + } + static class USparseVolumeTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USparseVolumeTexture; + +// Class Engine.StreamableSparseVolumeTexture +// 0x0088 (0x00B0 - 0x0028) +class UStreamableSparseVolumeTexture : public USparseVolumeTexture +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntVector VolumeResolution; // 0x0030(0x000C)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumMipLevels; // 0x003C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumFrames; // 0x0040(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat FormatA; // 0x0044(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat FormatB; // 0x0045(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_46[0xA]; // 0x0046(0x000A)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4f FallbackValueA; // 0x0050(0x0010)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4f FallbackValueB; // 0x0060(0x0010)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressX; // 0x0070(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressY; // 0x0071(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressZ; // 0x0072(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLocalDDCOnly; // 0x0073(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StreamingPoolSizeFactor; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumberOfPrefetchFrames; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PrefetchPercentageStepSize; // 0x007C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PrefetchPercentageBias; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AssetUserData; // 0x0088(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, UObjectWrapper, NativeAccessSpecifierPublic) + TArray Frames; // 0x0098(0x0010)(ExportObject, ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_A8[0x8]; // 0x00A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StreamableSparseVolumeTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StreamableSparseVolumeTexture") + } + static class UStreamableSparseVolumeTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStreamableSparseVolumeTexture; + +// Class Engine.AnimatedSparseVolumeTexture +// 0x0000 (0x00B0 - 0x00B0) +class UAnimatedSparseVolumeTexture final : public UStreamableSparseVolumeTexture +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimatedSparseVolumeTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimatedSparseVolumeTexture") + } + static class UAnimatedSparseVolumeTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimatedSparseVolumeTexture; + +// Class Engine.InstancedPlacemenClientSettings +// 0x0000 (0x0028 - 0x0028) +class UInstancedPlacemenClientSettings final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InstancedPlacemenClientSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InstancedPlacemenClientSettings") + } + static class UInstancedPlacemenClientSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInstancedPlacemenClientSettings; + +// Class Engine.Interface_PostProcessVolume +// 0x0000 (0x0000 - 0x0000) +class IInterface_PostProcessVolume final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_PostProcessVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_PostProcessVolume") + } + static class IInterface_PostProcessVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_PostProcessVolume; + +// Class Engine.AnimSequenceBase +// 0x0030 (0x00B0 - 0x0080) +class UAnimSequenceBase : public UAnimationAsset +{ +public: + TArray Notifies; // 0x0080(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + float SequenceLength; // 0x0090(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_94[0x4]; // 0x0094(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawCurveTracks RawCurveData; // 0x0098(0x0010)(Protected, NativeAccessSpecifierProtected) + float RateScale; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoop; // 0x00AC(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AD[0x3]; // 0x00AD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimSequenceBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimSequenceBase") + } + static class UAnimSequenceBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimSequenceBase; + +// Class Engine.RawAnimSequenceTrackExtensions +// 0x0000 (0x0028 - 0x0028) +class URawAnimSequenceTrackExtensions final : public UBlueprintFunctionLibrary +{ +public: + static TArray GetPositionalKeys(const struct FRawAnimSequenceTrack& Track); + static TArray GetRotationalKeys(const struct FRawAnimSequenceTrack& Track); + static TArray GetScaleKeys(const struct FRawAnimSequenceTrack& Track); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RawAnimSequenceTrackExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RawAnimSequenceTrackExtensions") + } + static class URawAnimSequenceTrackExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URawAnimSequenceTrackExtensions; + +// Class Engine.ParticleSystemReplay +// 0x0018 (0x0040 - 0x0028) +class UParticleSystemReplay final : public UObject +{ +public: + int32 ClipIDNumber; // 0x0028(0x0004)(Edit, ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x14]; // 0x002C(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleSystemReplay") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleSystemReplay") + } + static class UParticleSystemReplay* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleSystemReplay; + +// Class Engine.DataLayerInstance +// 0x0020 (0x0048 - 0x0028) +class UDataLayerInstance : public UObject +{ +public: + EDataLayerRuntimeState InitialRuntimeState; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UDataLayerInstance* Parent; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Children; // 0x0038(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + const class UDataLayerAsset* GetAsset() const; + class FString GetDataLayerFullName() const; + class FString GetDataLayerShortName() const; + struct FColor GetDebugColor() const; + EDataLayerRuntimeState GetInitialRuntimeState() const; + EDataLayerType GetType() const; + bool IsClientOnly() const; + bool IsEffectiveVisible() const; + bool IsInitiallyVisible() const; + bool IsRuntime() const; + bool IsServerOnly() const; + bool IsVisible() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerInstance") + } + static class UDataLayerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerInstance; + +// Class Engine.DataLayerInstanceWithAsset +// 0x0008 (0x0050 - 0x0048) +class UDataLayerInstanceWithAsset : public UDataLayerInstance +{ +public: + class UDataLayerAsset* DataLayerAsset; // 0x0048(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerInstanceWithAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerInstanceWithAsset") + } + static class UDataLayerInstanceWithAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerInstanceWithAsset; + +// Class Engine.ExternalDataLayerInstance +// 0x0000 (0x0050 - 0x0050) +class UExternalDataLayerInstance final : public UDataLayerInstanceWithAsset +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExternalDataLayerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExternalDataLayerInstance") + } + static class UExternalDataLayerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExternalDataLayerInstance; + +// Class Engine.AssetExportTask +// 0x0050 (0x0078 - 0x0028) +class UAssetExportTask final : public UObject +{ +public: + class UObject* Object; // 0x0028(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UExporter* Exporter; // 0x0030(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Filename; // 0x0038(0x0010)(BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSelected; // 0x0048(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bReplaceIdentical; // 0x0049(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrompt; // 0x004A(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutomated; // 0x004B(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseFileArchive; // 0x004C(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWriteEmptyFiles; // 0x004D(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4E[0x2]; // 0x004E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TArray IgnoreObjectList; // 0x0050(0x0010)(BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UObject* Options; // 0x0060(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Errors; // 0x0068(0x0010)(BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetExportTask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetExportTask") + } + static class UAssetExportTask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetExportTask; + +// Class Engine.ParticleModuleParameterDynamic +// 0x0018 (0x0048 - 0x0030) +class UParticleModuleParameterDynamic : public UParticleModuleParameterBase +{ +public: + TArray DynamicParams; // 0x0030(0x0010)(Edit, EditFixedSize, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + int32 UpdateFlags; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUsesVelocity : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleParameterDynamic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleParameterDynamic") + } + static class UParticleModuleParameterDynamic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleParameterDynamic; + +// Class Engine.ParticleModuleParameterDynamic_Seeded +// 0x0020 (0x0068 - 0x0048) +class UParticleModuleParameterDynamic_Seeded final : public UParticleModuleParameterDynamic +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0048(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleParameterDynamic_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleParameterDynamic_Seeded") + } + static class UParticleModuleParameterDynamic_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleParameterDynamic_Seeded; + +// Class Engine.AssetManagerSettings +// 0x00C8 (0x0100 - 0x0038) +class UAssetManagerSettings final : public UDeveloperSettings +{ +public: + TArray PrimaryAssetTypesToScan; // 0x0038(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray DirectoriesToExclude; // 0x0048(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray PrimaryAssetRules; // 0x0058(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray CustomPrimaryAssetRules; // 0x0068(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + bool bOnlyCookProductionAssets; // 0x0078(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldManagerDetermineTypeAndName; // 0x0079(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldGuessTypeAndNameInEditor; // 0x007A(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldAcquireMissingChunksOnLoad; // 0x007B(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldWarnAboutInvalidAssets; // 0x007C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7D[0x3]; // 0x007D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray PrimaryAssetIdRedirects; // 0x0080(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray PrimaryAssetTypeRedirects; // 0x0090(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray AssetPathRedirects; // 0x00A0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TSet MetaDataTagsForAssetRegistry; // 0x00B0(0x0050)(Edit, Config, AdvancedDisplay, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetManagerSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetManagerSettings") + } + static class UAssetManagerSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetManagerSettings; + +// Class Engine.WorldPartitionPropertyOverride +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionPropertyOverride : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionPropertyOverride") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionPropertyOverride") + } + static class UWorldPartitionPropertyOverride* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionPropertyOverride; + +// Class Engine.LevelInstancePropertyOverrideAsset +// 0x0000 (0x0028 - 0x0028) +class ULevelInstancePropertyOverrideAsset final : public UWorldPartitionPropertyOverride +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstancePropertyOverrideAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstancePropertyOverrideAsset") + } + static class ULevelInstancePropertyOverrideAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstancePropertyOverrideAsset; + +// Class Engine.LODSyncInterface +// 0x0000 (0x0000 - 0x0000) +class ILODSyncInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LODSyncInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LODSyncInterface") + } + static class ILODSyncInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ILODSyncInterface; + +// Class Engine.AsyncLoadingTests_Shared +// 0x0030 (0x0058 - 0x0028) +class UAsyncLoadingTests_Shared final : public UObject +{ +public: + TSoftObjectPtr SoftReference; // 0x0028(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* HardReference; // 0x0050(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncLoadingTests_Shared") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncLoadingTests_Shared") + } + static class UAsyncLoadingTests_Shared* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncLoadingTests_Shared; + +// Class Engine.ParticleModuleOrbitBase +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleOrbitBase : public UParticleModule +{ +public: + uint8 bUseEmitterTime : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleOrbitBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleOrbitBase") + } + static class UParticleModuleOrbitBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleOrbitBase; + +// Class Engine.AsyncPhysicsData +// 0x0008 (0x0030 - 0x0028) +class UAsyncPhysicsData final : public UObject +{ +public: + int32 ServerFrame; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 ReplicationRedundancy; // 0x002C(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncPhysicsData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncPhysicsData") + } + static class UAsyncPhysicsData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncPhysicsData; + +// Class Engine.AudioPanelWidgetInterface +// 0x0000 (0x0000 - 0x0000) +class IAudioPanelWidgetInterface final +{ +public: + class FText GetEditorName(); + class FName GetIconBrushName(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioPanelWidgetInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioPanelWidgetInterface") + } + static class IAudioPanelWidgetInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAudioPanelWidgetInterface; + +// Class Engine.Light +// 0x0010 (0x02B8 - 0x02A8) +class ALight : public AActor +{ +public: + class ULightComponent* LightComponent; // 0x02A8(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bEnabled : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x7]; // 0x02B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_bEnabled(); + void SetAffectTranslucentLighting(bool bNewValue); + void SetBrightness(float NewBrightness); + void SetCastShadows(bool bNewValue); + void SetEnabled(bool bSetEnabled); + void SetLightColor(const struct FLinearColor& NewLightColor); + void SetLightFunctionFadeDistance(float NewLightFunctionFadeDistance); + void SetLightFunctionMaterial(class UMaterialInterface* NewLightFunctionMaterial); + void SetLightFunctionScale(const struct FVector& NewLightFunctionScale); + void ToggleEnabled(); + + float GetBrightness() const; + struct FLinearColor GetLightColor() const; + bool IsEnabled() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Light") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Light") + } + static class ALight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALight; + +// Class Engine.AutoRTFMTestActor +// 0x0008 (0x02B0 - 0x02A8) +class AAutoRTFMTestActor final : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestActor") + } + static class AAutoRTFMTestActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AAutoRTFMTestActor; + +// Class Engine.FXSystemComponent +// 0x0000 (0x04F0 - 0x04F0) +#pragma pack(push, 0x1) +class alignas(0x10) UFXSystemComponent : public UPrimitiveComponent +{ +public: + void ReleaseToPool(); + void SetActorParameter(class FName ParameterName, class AActor* Param); + void SetAutoAttachmentParameters(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule); + void SetBoolParameter(class FName ParameterName, bool Param); + void SetColorParameter(class FName ParameterName, const struct FLinearColor& Param); + void SetEmitterEnable(class FName EmitterName, bool bNewEnableState); + void SetFloatParameter(class FName ParameterName, float Param); + void SetIntParameter(class FName ParameterName, int32 Param); + void SetUseAutoManageAttachment(bool bAutoManage); + void SetVectorParameter(class FName ParameterName, const struct FVector& Param); + + class UFXSystemAsset* GetFXSystemAsset() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FXSystemComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FXSystemComponent") + } + static class UFXSystemComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UFXSystemComponent; + +// Class Engine.KismetInputLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetInputLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void CalibrateTilt(); + static bool EqualEqual_InputChordInputChord(const struct FInputChord& A, const struct FInputChord& B); + static bool EqualEqual_KeyKey(const struct FKey& A, const struct FKey& B); + static float GetAnalogValue(const struct FAnalogInputEvent& Input); + static struct FKey GetKey(const struct FKeyEvent& Input); + static struct FSlateModifierKeysState GetModifierKeysState(); + static int32 GetUserIndex(const struct FKeyEvent& Input); + static class FText InputChord_GetDisplayName(const struct FInputChord& Key); + static bool InputEvent_IsAltDown(const struct FInputEvent& Input); + static bool InputEvent_IsCommandDown(const struct FInputEvent& Input); + static bool InputEvent_IsControlDown(const struct FInputEvent& Input); + static bool InputEvent_IsLeftAltDown(const struct FInputEvent& Input); + static bool InputEvent_IsLeftCommandDown(const struct FInputEvent& Input); + static bool InputEvent_IsLeftControlDown(const struct FInputEvent& Input); + static bool InputEvent_IsLeftShiftDown(const struct FInputEvent& Input); + static bool InputEvent_IsRepeat(const struct FInputEvent& Input); + static bool InputEvent_IsRightAltDown(const struct FInputEvent& Input); + static bool InputEvent_IsRightCommandDown(const struct FInputEvent& Input); + static bool InputEvent_IsRightControlDown(const struct FInputEvent& Input); + static bool InputEvent_IsRightShiftDown(const struct FInputEvent& Input); + static bool InputEvent_IsShiftDown(const struct FInputEvent& Input); + static class FText Key_GetDisplayName(const struct FKey& Key, bool bLongDisplayName); + static EUINavigationAction Key_GetNavigationAction(const struct FKey& InKey); + static EUINavigationAction Key_GetNavigationActionFromKey(const struct FKeyEvent& InKeyEvent); + static EUINavigation Key_GetNavigationDirectionFromAnalog(const struct FAnalogInputEvent& InAnalogEvent); + static EUINavigation Key_GetNavigationDirectionFromKey(const struct FKeyEvent& InKeyEvent); + static bool Key_IsAnalog(const struct FKey& Key); + static bool Key_IsAxis1D(const struct FKey& Key); + static bool Key_IsAxis2D(const struct FKey& Key); + static bool Key_IsAxis3D(const struct FKey& Key); + static bool Key_IsButtonAxis(const struct FKey& Key); + static bool Key_IsDigital(const struct FKey& Key); + static bool Key_IsGamepadKey(const struct FKey& Key); + static bool Key_IsKeyboardKey(const struct FKey& Key); + static bool Key_IsModifierKey(const struct FKey& Key); + static bool Key_IsMouseButton(const struct FKey& Key); + static bool Key_IsValid(const struct FKey& Key); + static bool Key_IsVectorAxis(const struct FKey& Key); + static bool ModifierKeysState_IsAltDown(const struct FSlateModifierKeysState& KeysState); + static bool ModifierKeysState_IsCommandDown(const struct FSlateModifierKeysState& KeysState); + static bool ModifierKeysState_IsControlDown(const struct FSlateModifierKeysState& KeysState); + static bool ModifierKeysState_IsShiftDown(const struct FSlateModifierKeysState& KeysState); + static struct FVector2D PointerEvent_GetCursorDelta(const struct FPointerEvent& Input); + static struct FKey PointerEvent_GetEffectingButton(const struct FPointerEvent& Input); + static struct FVector2D PointerEvent_GetGestureDelta(const struct FPointerEvent& Input); + static ESlateGesture PointerEvent_GetGestureType(const struct FPointerEvent& Input); + static struct FVector2D PointerEvent_GetLastScreenSpacePosition(const struct FPointerEvent& Input); + static int32 PointerEvent_GetPointerIndex(const struct FPointerEvent& Input); + static struct FVector2D PointerEvent_GetScreenSpacePosition(const struct FPointerEvent& Input); + static int32 PointerEvent_GetTouchpadIndex(const struct FPointerEvent& Input); + static int32 PointerEvent_GetUserIndex(const struct FPointerEvent& Input); + static float PointerEvent_GetWheelDelta(const struct FPointerEvent& Input); + static bool PointerEvent_IsMouseButtonDown(const struct FPointerEvent& Input, const struct FKey& MouseButton); + static bool PointerEvent_IsTouchEvent(const struct FPointerEvent& Input); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetInputLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetInputLibrary") + } + static class UKismetInputLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetInputLibrary; + +// Class Engine.MaterialExpressionCloudSampleAttribute +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionCloudSampleAttribute final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCloudSampleAttribute") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCloudSampleAttribute") + } + static class UMaterialExpressionCloudSampleAttribute* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCloudSampleAttribute; + +// Class Engine.AutoRTFMTestAnotherActor +// 0x0008 (0x02B0 - 0x02A8) +class AAutoRTFMTestAnotherActor final : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestAnotherActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestAnotherActor") + } + static class AAutoRTFMTestAnotherActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AAutoRTFMTestAnotherActor; + +// Class Engine.BodySetup +// 0x02C8 (0x0300 - 0x0038) +class UBodySetup : public UBodySetupCore +{ +public: + struct FKAggregateGeom AggGeom; // 0x0038(0x0080)(Edit, NativeAccessSpecifierPublic) + uint8 bAlwaysFullAnimWeight : 1; // 0x00B8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bConsiderForBounds : 1; // 0x00B8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMeshCollideAll : 1; // 0x00B8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDoubleSidedGeometry : 1; // 0x00B8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateNonMirroredCollision : 1; // 0x00B8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSharedCookedData : 1; // 0x00B8(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateMirroredCollision : 1; // 0x00B8(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportUVsAndFaceRemap : 1; // 0x00B8(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_B9_0 : 3; // 0x00B9(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bNeverNeedsCookedCollisionData : 1; // 0x00B9(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BA[0x6]; // 0x00BA(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicalMaterial* PhysMaterial; // 0x00C0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FWalkableSlopeOverride WalkableSlopeOverride; // 0x00C8(0x0010)(Edit, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 Pad_D8[0x70]; // 0x00D8(0x0070)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBodyInstance DefaultInstance; // 0x0148(0x0178)(Edit, NativeAccessSpecifierPublic) + uint8 Pad_2C0[0x8]; // 0x02C0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector BuildScale3D; // 0x02C8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E0[0x20]; // 0x02E0(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BodySetup") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BodySetup") + } + static class UBodySetup* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBodySetup; + +// Class Engine.SceneCapture +// 0x0010 (0x02B8 - 0x02A8) +class ASceneCapture : public AActor +{ +public: + class UStaticMeshComponent* MeshComp; // 0x02A8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USceneComponent* SceneComponent; // 0x02B0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCapture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCapture") + } + static class ASceneCapture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASceneCapture; + +// Class Engine.PlanarReflection +// 0x0010 (0x02C8 - 0x02B8) +class APlanarReflection final : public ASceneCapture +{ +public: + class UPlanarReflectionComponent* PlanarReflectionComponent; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bShowPreviewPlane; // 0x02C0(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C1[0x7]; // 0x02C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnInterpToggle(bool bEnable); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlanarReflection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlanarReflection") + } + static class APlanarReflection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlanarReflection; + +// Class Engine.HapticFeedbackEffect_Base +// 0x0000 (0x0028 - 0x0028) +class UHapticFeedbackEffect_Base : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HapticFeedbackEffect_Base") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HapticFeedbackEffect_Base") + } + static class UHapticFeedbackEffect_Base* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHapticFeedbackEffect_Base; + +// Class Engine.AutoRTFMTestBodySetup +// 0x0008 (0x0308 - 0x0300) +class UAutoRTFMTestBodySetup final : public UBodySetup +{ +public: + uint8 Pad_300[0x8]; // 0x0300(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestBodySetup") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestBodySetup") + } + static class UAutoRTFMTestBodySetup* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoRTFMTestBodySetup; + +// Class Engine.RuntimePartition +// 0x0030 (0x0058 - 0x0028) +class URuntimePartition : public UObject +{ +public: + class FName Name_0; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBlockOnSlowStreaming; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClientOnlyVisible; // 0x0031(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Priority; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimePartitionCellBoundsMethod BoundsMethod; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LoadingRange; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DebugColor; // 0x0040(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 HLODIndex; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimePartition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimePartition") + } + static class URuntimePartition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimePartition; + +// Class Engine.RuntimePartitionPersistent +// 0x0000 (0x0058 - 0x0058) +class URuntimePartitionPersistent final : public URuntimePartition +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimePartitionPersistent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimePartitionPersistent") + } + static class URuntimePartitionPersistent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimePartitionPersistent; + +// Class Engine.ChildActorComponent +// 0x0050 (0x0280 - 0x0230) +class UChildActorComponent : public USceneComponent +{ +public: + TSubclassOf ChildActorClass; // 0x0230(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AActor* ChildActor; // 0x0238(0x0008)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, RepNotify, NoDestructor, TextExportTransient, NonPIEDuplicateTransient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AActor* ChildActorTemplate; // 0x0240(0x0008)(Edit, ZeroConstructor, DisableEditOnInstance, EditConst, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_248[0x18]; // 0x0248(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bChildActorIsTransient : 1; // 0x0260(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_261[0x1F]; // 0x0261(0x001F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnChildActorDestroyed(class AActor* Actor); + void OnRep_ChildActor(); + void SetChildActorClass(TSubclassOf InClass); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ChildActorComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ChildActorComponent") + } + static class UChildActorComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChildActorComponent; + +// Class Engine.BlueprintTypeConversions +// 0x0000 (0x0028 - 0x0028) +class UBlueprintTypeConversions final : public UObject +{ +public: + static TArray ConvertArrayType(const TArray& inArray); + static int32 ConvertFBox2dToFBox2f(int32 InFromData); + static int32 ConvertFBox2fToFBox2d(int32 InFromData); + static int32 ConvertFMatrix44dToFMatrix44f(int32 InFromData); + static int32 ConvertFMatrix44fToFMatrix44d(int32 InFromData); + static int32 ConvertFPlane4dToFPlane4f(int32 InFromData); + static int32 ConvertFPlane4fToFPlane4d(int32 InFromData); + static int32 ConvertFQuat4dToFQuat4f(int32 InFromData); + static int32 ConvertFQuat4fToFQuat4d(int32 InFromData); + static int32 ConvertFRotator3dToFRotator3f(int32 InFromData); + static int32 ConvertFRotator3fToFRotator3d(int32 InFromData); + static int32 ConvertFTransform3dToFTransform3f(int32 InFromData); + static int32 ConvertFTransform3fToFTransform3d(int32 InFromData); + static int32 ConvertFVector2dToFVector2f(int32 InFromData); + static int32 ConvertFVector2fToFVector2d(int32 InFromData); + static int32 ConvertFVector3dToFVector3f(int32 InFromData); + static int32 ConvertFVector3fToFVector3d(int32 InFromData); + static int32 ConvertFVector4dToFVector4f(int32 InFromData); + static int32 ConvertFVector4fToFVector4d(int32 InFromData); + static TMap ConvertMapType(const TMap& InMap); + static TSet ConvertSetType(const TSet& Inset); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintTypeConversions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintTypeConversions") + } + static class UBlueprintTypeConversions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintTypeConversions; + +// Class Engine.LevelStreaming +// 0x0188 (0x01B0 - 0x0028) +class ULevelStreaming : public UObject +{ +public: + TSoftObjectPtr WorldAsset; // 0x0028(0x0028)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 StreamingPriority; // 0x0050(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FName PackageNameToLoad; // 0x0054(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LODPackageNames; // 0x0060(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_70[0x10]; // 0x0070(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform LevelTransform; // 0x0080(0x0060)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClientOnlyVisible; // 0x00E0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E1[0x3]; // 0x00E1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LevelLODIndex; // 0x00E4(0x0004)(BlueprintVisible, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 BitPad_E8_0 : 3; // 0x00E8(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bShouldBeVisible : 1; // 0x00E8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bShouldBeLoaded : 1; // 0x00E8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (BlueprintVisible, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_E8_5 : 3; // 0x00E8(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_E9[0x19]; // 0x00E9(0x0019)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bLocked : 1; // 0x0102(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsStatic : 1; // 0x0102(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldBlockOnLoad : 1; // 0x0102(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldBlockOnUnload : 1; // 0x0102(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableDistanceStreaming : 1; // 0x0102(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (BlueprintVisible, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDrawOnLevelStatusMap : 1; // 0x0102(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_103[0x1]; // 0x0103(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor LevelColor; // 0x0104(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_114[0x4]; // 0x0114(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray EditorStreamingVolumes; // 0x0118(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + float MinTimeBetweenVolumeUnloadRequests; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12C[0x4]; // 0x012C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnLevelLoaded; // 0x0130(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnLevelUnloaded; // 0x0140(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnLevelShown; // 0x0150(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnLevelHidden; // 0x0160(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + class ULevel* LoadedLevel; // 0x0170(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class ULevel* PendingUnloadLevel; // 0x0178(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_180[0x30]; // 0x0180(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class ULevelStreaming* CreateInstance(const class FString& UniqueInstanceName); + class ALevelScriptActor* GetLevelScriptActor(); + void SetIsRequestingUnloadAndRemoval(bool bInIsRequestingUnloadAndRemoval); + void SetLevelLODIndex(int32 LODIndex); + void SetPriority(int32 NewPriority); + void SetShouldBeLoaded(bool bInShouldBeLoaded); + void SetShouldBeVisible(bool bInShouldBeVisible); + + bool GetIsRequestingUnloadAndRemoval() const; + class ULevel* GetLoadedLevel() const; + class FName GetWorldAssetPackageFName() const; + bool IsLevelLoaded() const; + bool IsLevelVisible() const; + bool IsStreamingStatePending() const; + bool ShouldBeLoaded() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreaming") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreaming") + } + static class ULevelStreaming* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreaming; + +// Class Engine.AutoRTFMTestChildActorComponent +// 0x0000 (0x0280 - 0x0280) +class UAutoRTFMTestChildActorComponent final : public UChildActorComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestChildActorComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestChildActorComponent") + } + static class UAutoRTFMTestChildActorComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoRTFMTestChildActorComponent; + +// Class Engine.ParticleModuleRequired +// 0x0140 (0x0170 - 0x0030) +class UParticleModuleRequired final : public UParticleModule +{ +public: + class UMaterialInterface* Material; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinFacingCameraBlendDistance; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxFacingCameraBlendDistance; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EmitterOrigin; // 0x0040(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator EmitterRotation; // 0x0058(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EParticleScreenAlignment ScreenAlignment; // 0x0070(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseLocalSpace : 1; // 0x0071(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bKillOnDeactivate : 1; // 0x0071(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bKillOnCompleted : 1; // 0x0071(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EParticleSortMode SortMode; // 0x0072(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseLegacyEmitterTime : 1; // 0x0073(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRemoveHMDRoll : 1; // 0x0073(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportLargeWorldCoordinates : 1; // 0x0073(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmitterDurationUseRange : 1; // 0x0073(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideUseVelocityForMotionBlur : 1; // 0x0073(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseVelocityForMotionBlur : 1; // 0x0073(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + float EmitterDuration; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat SpawnRate; // 0x0078(0x0030)(ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray BurstList; // 0x00A8(0x0010)(ExportObject, ZeroConstructor, NoClear, NativeAccessSpecifierPublic) + float EmitterDelay; // 0x00B8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmitterDelayLow; // 0x00BC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDelayFirstLoopOnly : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EParticleSubUVInterpMethod InterpolationMethod; // 0x00C1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bScaleUV : 1; // 0x00C2(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmitterDelayUseRange : 1; // 0x00C2(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EParticleBurstMethod ParticleBurstMethod; // 0x00C3(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideSystemMacroUV : 1; // 0x00C4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseMaxDrawCount : 1; // 0x00C4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EOpacitySourceMode OpacitySourceMode; // 0x00C5(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEmitterNormalsMode EmitterNormalsMode; // 0x00C6(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOrbitModuleAffectsVelocityAlignment : 1; // 0x00C7(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + int32 SubImages_Horizontal; // 0x00C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubImages_Vertical; // 0x00CC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RandomImageTime; // 0x00D0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RandomImageChanges; // 0x00D4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MacroUVPosition; // 0x00D8(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MacroUVRadius; // 0x00F0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleUVFlipMode UVFlippingMode; // 0x00F4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESubUVBoundingVertexCount BoundingMode; // 0x00F5(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDurationRecalcEachLoop : 1; // 0x00F6(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F7[0x1]; // 0x00F7(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NormalsSphereCenter; // 0x00F8(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AlphaThreshold; // 0x0110(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EmitterLoops; // 0x0114(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* CutoutTexture; // 0x0118(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxDrawCount; // 0x0120(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmitterDurationLow; // 0x0124(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NormalsCylinderDirection; // 0x0128(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray NamedMaterialOverrides; // 0x0140(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_150[0x20]; // 0x0150(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRequired") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRequired") + } + static class UParticleModuleRequired* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRequired; + +// Class Engine.Level +// 0x02F8 (0x0320 - 0x0028) +class ULevel : public UObject +{ +public: + uint8 Pad_28[0x78]; // 0x0028(0x0078)(Fixing Size After Last Property [ Dumper-7 ]) + class TArray Actors; // 0x00A0(0x0010)(THIS IS THE ARRAY YOU'RE LOOKING FOR! [NOT AUTO-GENERATED PROPERTY]) + uint8 Pad_B0[0x10]; // 0x00B0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorld* OwningWorld; // 0x00C0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UModel* Model; // 0x00C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ModelComponents; // 0x00D0(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + class ULevelActorContainer* ActorCluster; // 0x00E0(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, DuplicateTransient, NonTransactional, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumTextureStreamingUnbuiltComponents; // 0x00E8(0x0004)(ZeroConstructor, IsPlainOldData, NonTransactional, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumTextureStreamingDirtyResources; // 0x00EC(0x0004)(ZeroConstructor, IsPlainOldData, NonTransactional, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ALevelScriptActor* LevelScriptActor; // 0x00F0(0x0008)(ZeroConstructor, NonTransactional, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ANavigationObjectBase* NavListStart; // 0x00F8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ANavigationObjectBase* NavListEnd; // 0x0100(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray NavDataChunks; // 0x0108(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + float LightmapTotalSize; // 0x0118(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowmapTotalSize; // 0x011C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray StaticNavigableGeometry; // 0x0120(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray StreamingTextureGuids; // 0x0130(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray StreamingTextures; // 0x0140(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint32 PackedTextureStreamingQualityLevelFeatureLevel; // 0x0150(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_154[0xBC]; // 0x0154(0x00BC)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid LevelBuildDataId; // 0x0210(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMapBuildDataRegistry* MapBuildData; // 0x0220(0x0008)(ZeroConstructor, NoDestructor, NonPIEDuplicateTransient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector LightBuildLevelOffset; // 0x0228(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_234[0xC]; // 0x0234(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bIsLightingScenario : 1; // 0x0240(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_240_1 : 2; // 0x0240(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bTextureStreamingRotationChanged : 1; // 0x0240(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStaticComponentsRegisteredInStreamingManager : 1; // 0x0240(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, DuplicateTransient, NonTransactional, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsVisible : 1; // 0x0240(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_240_6 : 2; // 0x0240(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_241[0x1]; // 0x0241(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_242_0 : 7; // 0x0242(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bIsPartitioned : 1; // 0x0242(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_243[0x65]; // 0x0243(0x0065)(Fixing Size After Last Property [ Dumper-7 ]) + class AWorldSettings* WorldSettings; // 0x02A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AWorldDataLayers* WorldDataLayers; // 0x02B0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSoftObjectPtr WorldPartitionRuntimeCell; // 0x02B8(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2E0[0x8]; // 0x02E0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AssetUserData; // 0x02E8(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_2F8[0x10]; // 0x02F8(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DestroyedReplicatedStaticActors; // 0x0308(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_318[0x8]; // 0x0318(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Level") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Level") + } + static class ULevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevel; + +// Class Engine.AutoRTFMTestLevel +// 0x0008 (0x0328 - 0x0320) +class UAutoRTFMTestLevel final : public ULevel +{ +public: + uint8 Pad_320[0x8]; // 0x0320(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestLevel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestLevel") + } + static class UAutoRTFMTestLevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoRTFMTestLevel; + +// Class Engine.LevelInstanceEditorPivotInterface +// 0x0000 (0x0000 - 0x0000) +class ILevelInstanceEditorPivotInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceEditorPivotInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceEditorPivotInterface") + } + static class ILevelInstanceEditorPivotInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ILevelInstanceEditorPivotInterface; + +// Class Engine.AutoRTFMTestObject +// 0x0008 (0x0030 - 0x0028) +class UAutoRTFMTestObject final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnComponentPhysicsStateChanged(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestObject") + } + static class UAutoRTFMTestObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoRTFMTestObject; + +// Class Engine.PieFixupTestObject +// 0x00A0 (0x00C8 - 0x0028) +class UPieFixupTestObject final : public UObject +{ +public: + struct FSoftObjectPath Path; // 0x0028(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr TypedPtr; // 0x0048(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPieFixupStructWithSoftObjectPath Struct; // 0x0070(0x0048)(NativeAccessSpecifierPublic) + TArray Array; // 0x00B8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PieFixupTestObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PieFixupTestObject") + } + static class UPieFixupTestObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPieFixupTestObject; + +// Class Engine.MaterialExpressionTextureSampleParameter +// 0x0068 (0x0220 - 0x01B8) +class UMaterialExpressionTextureSampleParameter : public UMaterialExpressionTextureSample +{ +public: + class FName ParameterName; // 0x01B8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x01C0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x01D0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x01D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1DC[0x4]; // 0x01DC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FParameterChannelNames ChannelNames; // 0x01E0(0x0040)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameter") + } + static class UMaterialExpressionTextureSampleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameter; + +// Class Engine.MaterialExpressionTextureSampleParameter2DArray +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureSampleParameter2DArray final : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameter2DArray") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameter2DArray") + } + static class UMaterialExpressionTextureSampleParameter2DArray* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameter2DArray; + +// Class Engine.AutoRTFMTestPrimitiveComponent +// 0x0010 (0x0500 - 0x04F0) +class UAutoRTFMTestPrimitiveComponent final : public UPrimitiveComponent +{ +public: + uint8 Pad_4E8[0x18]; // 0x04E8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoRTFMTestPrimitiveComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoRTFMTestPrimitiveComponent") + } + static class UAutoRTFMTestPrimitiveComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoRTFMTestPrimitiveComponent; + +// Class Engine.SaveGame +// 0x0000 (0x0028 - 0x0028) +class USaveGame : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SaveGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SaveGame") + } + static class USaveGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USaveGame; + +// Class Engine.BlendableInterface +// 0x0000 (0x0000 - 0x0000) +class IBlendableInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlendableInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlendableInterface") + } + static class IBlendableInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IBlendableInterface; + +// Class Engine.MaterialExpressionTextureCollection +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionTextureCollection : public UMaterialExpression +{ +public: + class UTextureCollection* TextureCollection; // 0x00B0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureCollection") + } + static class UMaterialExpressionTextureCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureCollection; + +// Class Engine.MaterialExpressionTextureCollectionParameter +// 0x0028 (0x00E0 - 0x00B8) +class UMaterialExpressionTextureCollectionParameter final : public UMaterialExpressionTextureCollection +{ +public: + class FName ParameterName; // 0x00B8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x00C0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x00D0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureCollectionParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureCollectionParameter") + } + static class UMaterialExpressionTextureCollectionParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureCollectionParameter; + +// Class Engine.AnalysisProperties +// 0x0010 (0x0038 - 0x0028) +class UAnalysisProperties final : public UObject +{ +public: + class FString Function; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnalysisProperties") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnalysisProperties") + } + static class UAnalysisProperties* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnalysisProperties; + +// Class Engine.BlendSpace +// 0x0140 (0x01C0 - 0x0080) +class UBlendSpace : public UAnimationAsset +{ +public: + uint8 Pad_80[0x8]; // 0x0080(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + bool bContainsRotationOffsetMeshSpaceSamples; // 0x0088(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x3]; // 0x0089(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInterpolationParameter InterpolationParam[0x3]; // 0x008C(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float TargetWeightInterpolationSpeedPerSec; // 0x00BC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTargetWeightInterpolationEaseInOut; // 0x00C0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowMeshSpaceBlending; // 0x00C1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoop; // 0x00C2(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowMarkerBasedSync; // 0x00C3(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnimLength; // 0x00C4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENotifyTriggerMode NotifyTriggerMode; // 0x00C8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInterpolateUsingGrid; // 0x00C9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPreferredTriangulationDirection PreferredTriangulationDirection; // 0x00CA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlendSpacePerBoneBlendMode PerBoneBlendMode; // 0x00CB(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_CC[0x4]; // 0x00CC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ManualPerBoneOverrides; // 0x00D0(0x0010)(Edit, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + struct FBlendSpaceBlendProfile PerBoneBlendProfile; // 0x00E0(0x0010)(Edit, NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_F0[0x10]; // 0x00F0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SampleIndexWithMarkers; // 0x0100(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SampleData; // 0x0108(0x0010)(Edit, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray GridSamples; // 0x0118(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + struct FBlendSpaceData BlendSpaceData; // 0x0128(0x0020)(Protected, NativeAccessSpecifierProtected) + struct FBlendParameter BlendParameters[0x3]; // 0x0148(0x0020)(Edit, Protected, NativeAccessSpecifierProtected) + EBlendSpaceAxis AxisToScaleAnimation; // 0x01A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_1A9[0x7]; // 0x01A9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DimensionIndices; // 0x01B0(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlendSpace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlendSpace") + } + static class UBlendSpace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlendSpace; + +// Class Engine.MaterialExpressionSubtract +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionSubtract final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubtract") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubtract") + } + static class UMaterialExpressionSubtract* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubtract; + +// Class Engine.Breakpoint +// 0x0000 (0x0028 - 0x0028) +class UBreakpoint final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Breakpoint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Breakpoint") + } + static class UBreakpoint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBreakpoint; + +// Class Engine.GameInstance +// 0x0198 (0x01C0 - 0x0028) +class UGameInstance : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LocalPlayers; // 0x0038(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + class UOnlineSession* OnlineSession; // 0x0048(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray ReferencedObjects; // 0x0050(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_60[0x18]; // 0x0060(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnPawnControllerChangedDelegates; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, Protected, NativeAccessSpecifierProtected) + uint8 Pad_88[0x18]; // 0x0088(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnInputDeviceConnectionChange; // 0x00A0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnUserInputDevicePairingChange; // 0x00B0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_C0[0x100]; // 0x00C0(0x0100)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void DebugCreatePlayer(int32 ControllerId); + void DebugRemovePlayer(int32 ControllerId); + void HandleNetworkError(ENetworkFailure FailureType, bool bIsServer); + void HandleTravelError(ETravelFailure FailureType); + void ReceiveInit(); + void ReceiveShutdown(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameInstance") + } + static class UGameInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameInstance; + +// Class Engine.BlueprintExtension +// 0x0000 (0x0028 - 0x0028) +class UBlueprintExtension final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintExtension") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintExtension") + } + static class UBlueprintExtension* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintExtension; + +// Class Engine.NetworkMetricsDatabase +// 0x0190 (0x01B8 - 0x0028) +class UNetworkMetricsDatabase final : public UObject +{ +public: + uint8 Pad_28[0x190]; // 0x0028(0x0190)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsDatabase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsDatabase") + } + static class UNetworkMetricsDatabase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsDatabase; + +// Class Engine.MaterialExpressionTextureObjectParameter +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureObjectParameter final : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureObjectParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureObjectParameter") + } + static class UMaterialExpressionTextureObjectParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureObjectParameter; + +// Class Engine.BookmarkBase +// 0x0000 (0x0028 - 0x0028) +class UBookmarkBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BookmarkBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BookmarkBase") + } + static class UBookmarkBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBookmarkBase; + +// Class Engine.BookMark2D +// 0x0010 (0x0038 - 0x0028) +class UBookMark2D final : public UBookmarkBase +{ +public: + float Zoom2D; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint Location; // 0x002C(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BookMark2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BookMark2D") + } + static class UBookMark2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBookMark2D; + +// Class Engine.MaterialExpressionTransformPosition +// 0x0060 (0x0110 - 0x00B0) +class UMaterialExpressionTransformPosition final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialPositionTransformSource TransformSourceType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialPositionTransformSource TransformType; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput PeriodicWorldTileSize; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstPeriodicWorldTileSize; // 0x0108(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUsesPeriodicWorldPosition; // 0x010C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_10D[0x3]; // 0x010D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTransformPosition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTransformPosition") + } + static class UMaterialExpressionTransformPosition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTransformPosition; + +// Class Engine.GameSession +// 0x0028 (0x02D0 - 0x02A8) +class AGameSession final : public AInfo +{ +public: + int32 MaxSpectators; // 0x02A8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxPlayers; // 0x02AC(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxPartySize; // 0x02B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 MaxSplitscreensPerConnection; // 0x02B4(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRequiresPushToTalk; // 0x02B5(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B6[0x2]; // 0x02B6(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + class FName SessionName; // 0x02B8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C0[0x10]; // 0x02C0(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameSession") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameSession") + } + static class AGameSession* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameSession; + +// Class Engine.BoxReflectionCapture +// 0x0000 (0x02B0 - 0x02B0) +class ABoxReflectionCapture final : public AReflectionCapture +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoxReflectionCapture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoxReflectionCapture") + } + static class ABoxReflectionCapture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ABoxReflectionCapture; + +// Class Engine.MaterialExpressionTextureSampleParameterCubeArray +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureSampleParameterCubeArray final : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameterCubeArray") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameterCubeArray") + } + static class UMaterialExpressionTextureSampleParameterCubeArray* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameterCubeArray; + +// Class Engine.ReflectionCaptureComponent +// 0x0070 (0x02A0 - 0x0230) +#pragma pack(push, 0x1) +class alignas(0x10) UReflectionCaptureComponent : public USceneComponent +{ +public: + class UBillboardComponent* CaptureOffsetComponent; // 0x0230(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReflectionSourceType ReflectionSourceType; // 0x0238(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_239[0x7]; // 0x0239(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* Cubemap; // 0x0240(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceCubemapAngle; // 0x0248(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Brightness; // 0x024C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CaptureOffset; // 0x0250(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid MapBuildDataId; // 0x0268(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_278[0x20]; // 0x0278(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReflectionCaptureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReflectionCaptureComponent") + } + static class UReflectionCaptureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UReflectionCaptureComponent; + +// Class Engine.BoxReflectionCaptureComponent +// 0x0010 (0x02B0 - 0x02A0) +class UBoxReflectionCaptureComponent final : public UReflectionCaptureComponent +{ +public: + float BoxTransitionDistance; // 0x0298(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29C[0x4]; // 0x029C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UBoxComponent* PreviewInfluenceBox; // 0x02A0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBoxComponent* PreviewCaptureBox; // 0x02A8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoxReflectionCaptureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoxReflectionCaptureComponent") + } + static class UBoxReflectionCaptureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBoxReflectionCaptureComponent; + +// Class Engine.ObjectLibrary +// 0x0080 (0x00A8 - 0x0028) +class UObjectLibrary final : public UObject +{ +public: + TSubclassOf ObjectBaseClass; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBlueprintClasses; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Objects; // 0x0038(0x0010)(Edit, ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray> WeakObjects; // 0x0048(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + bool bUseWeakReferences; // 0x0058(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIsFullyLoaded; // 0x0059(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_5A[0x4E]; // 0x005A(0x004E)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectLibrary") + } + static class UObjectLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectLibrary; + +// Class Engine.MaterialExpressionTextureObject +// 0x0000 (0x00C0 - 0x00C0) +class UMaterialExpressionTextureObject final : public UMaterialExpressionTextureBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureObject") + } + static class UMaterialExpressionTextureObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureObject; + +// Class Engine.BuiltInAttributesExtensions +// 0x0000 (0x0028 - 0x0028) +class UBuiltInAttributesExtensions final : public UBlueprintFunctionLibrary +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BuiltInAttributesExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BuiltInAttributesExtensions") + } + static class UBuiltInAttributesExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBuiltInAttributesExtensions; + +// Class Engine.ScriptViewportClient +// 0x0010 (0x0038 - 0x0028) +class UScriptViewportClient : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ScriptViewportClient") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ScriptViewportClient") + } + static class UScriptViewportClient* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UScriptViewportClient; + +// Class Engine.ChaosBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UChaosBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static const class UChaosEventRelay* GetEventRelayFromContext(class UObject* ContextObject); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ChaosBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ChaosBlueprintLibrary") + } + static class UChaosBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChaosBlueprintLibrary; + +// Class Engine.MaterialExpressionTime +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionTime final : public UMaterialExpression +{ +public: + uint8 bIgnorePause : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Period : 1; // 0x00B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x3]; // 0x00B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Period; // 0x00B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTime") + } + static class UMaterialExpressionTime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTime; + +// Class Engine.ChaosEventRelay +// 0x0040 (0x0068 - 0x0028) +class UChaosEventRelay final : public UObject +{ +public: + TMulticastInlineDelegate& CollisionEvents)> OnCollisionEvent; // 0x0028(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& BreakEvents)> OnBreakEvent; // 0x0038(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& RemovalEvents)> OnRemovalEvent; // 0x0048(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& CrumblingEvents)> OnCrumblingEvent; // 0x0058(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ChaosEventRelay") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ChaosEventRelay") + } + static class UChaosEventRelay* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChaosEventRelay; + +// Class Engine.MaterialExpressionVertexNormalWS +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionVertexNormalWS final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVertexNormalWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVertexNormalWS") + } + static class UMaterialExpressionVertexNormalWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVertexNormalWS; + +// Class Engine.NetConnection +// 0x1D98 (0x1DE0 - 0x0048) +class UNetConnection : public UPlayer +{ +public: + TArray Children; // 0x0048(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + class UNetDriver* Driver; // 0x0058(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PackageMapClass; // 0x0060(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPackageMap* PackageMap; // 0x0068(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OpenChannels; // 0x0070(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SentTemporaries; // 0x0080(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class AActor* ViewTarget; // 0x0090(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* OwningActor; // 0x0098(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxPacket; // 0x00A0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 InternalAck : 1; // 0x00A4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_A5[0xBB]; // 0x00A5(0x00BB)(Fixing Size After Last Property [ Dumper-7 ]) + struct FUniqueNetIdRepl PlayerId; // 0x0160(0x0030)(HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_190[0x48]; // 0x0190(0x0048)(Fixing Size After Last Property [ Dumper-7 ]) + double LastReceiveTime; // 0x01D8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E0[0x1208]; // 0x01E0(0x1208)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DefaultMaxChannelSize; // 0x13E8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13EC[0x2DC]; // 0x13EC(0x02DC)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ChannelsToTick; // 0x16C8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_16D8[0x708]; // 0x16D8(0x0708)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetConnection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetConnection") + } + static class UNetConnection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetConnection; + +// Class Engine.ChildConnection +// 0x0008 (0x1DE8 - 0x1DE0) +class UChildConnection final : public UNetConnection +{ +public: + class UNetConnection* Parent; // 0x1DE0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ChildConnection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ChildConnection") + } + static class UChildConnection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChildConnection; + +// Class Engine.ActorElementSelectionInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementSelectionInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementSelectionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementSelectionInterface") + } + static class UActorElementSelectionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementSelectionInterface; + +// Class Engine.MaterialExpressionTruncateLWC +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionTruncateLWC final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTruncateLWC") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTruncateLWC") + } + static class UMaterialExpressionTruncateLWC* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTruncateLWC; + +// Class Engine.MaterialExpressionTextureSampleParameterVolume +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureSampleParameterVolume final : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameterVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameterVolume") + } + static class UMaterialExpressionTextureSampleParameterVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameterVolume; + +// Class Engine.ContentBundleTypeFactory +// 0x0000 (0x0028 - 0x0028) +class UContentBundleTypeFactory final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleTypeFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleTypeFactory") + } + static class UContentBundleTypeFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleTypeFactory; + +// Class Engine.ControlChannel +// 0x0018 (0x0080 - 0x0068) +class UControlChannel final : public UChannel +{ +public: + uint8 Pad_68[0x18]; // 0x0068(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ControlChannel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ControlChannel") + } + static class UControlChannel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UControlChannel; + +// Class Engine.ComponentElementObjectInterface +// 0x0008 (0x0030 - 0x0028) +class UComponentElementObjectInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentElementObjectInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentElementObjectInterface") + } + static class UComponentElementObjectInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentElementObjectInterface; + +// Class Engine.SoundNodeEnveloper +// 0x0148 (0x0190 - 0x0048) +class USoundNodeEnveloper final : public USoundNode +{ +public: + float LoopStart; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LoopEnd; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DurationAfterLoop; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopCount; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLoopIndefinitely : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLoop : 1; // 0x0058(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UDistributionFloatConstantCurve* VolumeInterpCurve; // 0x0060(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDistributionFloatConstantCurve* PitchInterpCurve; // 0x0068(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve VolumeCurve; // 0x0070(0x0088)(Edit, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve PitchCurve; // 0x00F8(0x0088)(Edit, NativeAccessSpecifierPublic) + float PitchMin; // 0x0180(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMax; // 0x0184(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMin; // 0x0188(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMax; // 0x018C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeEnveloper") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeEnveloper") + } + static class USoundNodeEnveloper* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeEnveloper; + +// Class Engine.MaterialExpressionVertexColor +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionVertexColor final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVertexColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVertexColor") + } + static class UMaterialExpressionVertexColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVertexColor; + +// Class Engine.WorldPartition +// 0x00D8 (0x0100 - 0x0028) +class alignas(0x10) UWorldPartition final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorldPartitionRuntimeHash* RuntimeHash; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableStreaming; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EWorldPartitionServerStreamingMode ServerStreamingMode; // 0x0039(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EWorldPartitionServerStreamingOutMode ServerStreamingOutMode; // 0x003A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EWorldPartitionDataLayersLogicOperator DataLayersLogicOperator; // 0x003B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bDisableContentBundles : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_3D[0x93]; // 0x003D(0x0093)(Fixing Size After Last Property [ Dumper-7 ]) + class UDataLayerManager* DataLayerManager; // 0x00D0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UExternalDataLayerManager* ExternalDataLayerManager; // 0x00D8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UWorldPartitionStreamingPolicy* StreamingPolicy; // 0x00E0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_E8[0x18]; // 0x00E8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartition") + } + static class UWorldPartition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartition; + +// Class Engine.DebugGarbageCollectionGraph +// 0x0020 (0x0048 - 0x0028) +class UDebugGarbageCollectionGraph final : public UObject +{ +public: + uint8 Pad_28[0x20]; // 0x0028(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugGarbageCollectionGraph") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugGarbageCollectionGraph") + } + static class UDebugGarbageCollectionGraph* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDebugGarbageCollectionGraph; + +// Class Engine.DeletedObjectPlaceholder +// 0x0000 (0x0028 - 0x0028) +class UDeletedObjectPlaceholder final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeletedObjectPlaceholder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeletedObjectPlaceholder") + } + static class UDeletedObjectPlaceholder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDeletedObjectPlaceholder; + +// Class Engine.TypedElementCommonActions +// 0x0800 (0x0828 - 0x0028) +class UTypedElementCommonActions final : public UObject +{ +public: + uint8 Pad_28[0x800]; // 0x0028(0x0800)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool CopyNormalizedElements(const struct FScriptTypedElementListProxy& ElementList); + bool CopyNormalizedElementsToString(const struct FScriptTypedElementListProxy& ElementList, class FString* OutputString); + bool CopySelectedElements(class UTypedElementSelectionSet* SelectionSet); + bool CopySelectedElementsToString(class UTypedElementSelectionSet* SelectionSet, class FString* OutputString); + bool DeleteNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, class UTypedElementSelectionSet* InSelectionSet, const struct FTypedElementDeletionOptions& DeletionOptions); + bool DeleteSelectedElements(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementDeletionOptions& DeletionOptions); + TArray DuplicateNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FVector& LocationOffset); + TArray K2_DuplicateSelectedElements(const class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FVector& LocationOffset); + TArray K2_PasteElements(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption); + TArray K2_PasteNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption); + TArray PasteElementsFromString(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption, const class FString& InputString); + TArray PasteNormalizedElementsFromString(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption, const class FString& InputString); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementCommonActions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementCommonActions") + } + static class UTypedElementCommonActions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTypedElementCommonActions; + +// Class Engine.DemoNetConnection +// 0x0050 (0x1E30 - 0x1DE0) +class UDemoNetConnection final : public UNetConnection +{ +public: + uint8 Pad_1DE0[0x50]; // 0x1DE0(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DemoNetConnection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DemoNetConnection") + } + static class UDemoNetConnection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDemoNetConnection; + +// Class Engine.PendingNetGame +// 0x0098 (0x00C0 - 0x0028) +class UPendingNetGame : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UNetDriver* NetDriver; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDemoNetDriver* DemoNetDriver; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_40[0x80]; // 0x0040(0x0080)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PendingNetGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PendingNetGame") + } + static class UPendingNetGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPendingNetGame; + +// Class Engine.SoundNodeOscillator +// 0x0028 (0x0070 - 0x0048) +class USoundNodeOscillator final : public USoundNode +{ +public: + uint8 bModulateVolume : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bModulatePitch : 1; // 0x0048(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AmplitudeMin; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmplitudeMax; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrequencyMin; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrequencyMax; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OffsetMin; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OffsetMax; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CenterMin; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CenterMax; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeOscillator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeOscillator") + } + static class USoundNodeOscillator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeOscillator; + +// Class Engine.MaterialExpressionUserSceneTexture +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionUserSceneTexture final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class FName UserSceneTexture; // 0x00D8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFiltered; // 0x00E0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClamped; // 0x00E1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E2[0x6]; // 0x00E2(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionUserSceneTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionUserSceneTexture") + } + static class UMaterialExpressionUserSceneTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionUserSceneTexture; + +// Class Engine.DemoPendingNetGame +// 0x0000 (0x00C0 - 0x00C0) +class UDemoPendingNetGame final : public UPendingNetGame +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DemoPendingNetGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DemoPendingNetGame") + } + static class UDemoPendingNetGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDemoPendingNetGame; + +// Class Engine.DeviceProfileFragment +// 0x0010 (0x0038 - 0x0028) +class UDeviceProfileFragment final : public UObject +{ +public: + TArray CVars; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeviceProfileFragment") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeviceProfileFragment") + } + static class UDeviceProfileFragment* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDeviceProfileFragment; + +// Class Engine.ObjectElementObjectInterface +// 0x0008 (0x0030 - 0x0028) +class UObjectElementObjectInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectElementObjectInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectElementObjectInterface") + } + static class UObjectElementObjectInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectElementObjectInterface; + +// Class Engine.DialogueSoundWaveProxy +// 0x0018 (0x0180 - 0x0168) +class UDialogueSoundWaveProxy final : public USoundBase +{ +public: + uint8 Pad_168[0x18]; // 0x0168(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DialogueSoundWaveProxy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DialogueSoundWaveProxy") + } + static class UDialogueSoundWaveProxy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDialogueSoundWaveProxy; + +// Class Engine.DirectionalLight +// 0x0000 (0x02B8 - 0x02B8) +class ADirectionalLight final : public ALight +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DirectionalLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DirectionalLight") + } + static class ADirectionalLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADirectionalLight; + +// Class Engine.VolumetricCloud +// 0x0008 (0x02B0 - 0x02A8) +class AVolumetricCloud final : public AInfo +{ +public: + class UVolumetricCloudComponent* VolumetricCloudComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VolumetricCloud") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VolumetricCloud") + } + static class AVolumetricCloud* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AVolumetricCloud; + +// Class Engine.MaterialExpressionWorldPosition +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionWorldPosition final : public UMaterialExpression +{ +public: + EWorldPositionIncludedOffsets WorldPositionShaderOffset; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionWorldPosition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionWorldPosition") + } + static class UMaterialExpressionWorldPosition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionWorldPosition; + +// Class Engine.AnimNotify_PlaySound +// 0x0020 (0x0058 - 0x0038) +class UAnimNotify_PlaySound final : public UAnimNotify +{ +public: + class USoundBase* Sound; // 0x0038(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, ExposeOnSpawn, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0040(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, ExposeOnSpawn, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0044(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, ExposeOnSpawn, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bFollow : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName AttachName; // 0x004C(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, ExposeOnSpawn, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_PlaySound") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_PlaySound") + } + static class UAnimNotify_PlaySound* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_PlaySound; + +// Class Engine.DistributionFloatConstant +// 0x0008 (0x0040 - 0x0038) +class UDistributionFloatConstant : public UDistributionFloat +{ +public: + float Constant; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatConstant") + } + static class UDistributionFloatConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatConstant; + +// Class Engine.DistributionFloatParameterBase +// 0x0020 (0x0060 - 0x0040) +class UDistributionFloatParameterBase : public UDistributionFloatConstant +{ +public: + class FName ParameterName; // 0x0040(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinInput; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxInput; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinOutput; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxOutput; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDistributionParamMode ParamMode; // 0x0058(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatParameterBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatParameterBase") + } + static class UDistributionFloatParameterBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatParameterBase; + +// Class Engine.DataTable +// 0x0088 (0x00B0 - 0x0028) +class UDataTable : public UObject +{ +public: + class UScriptStruct* RowStruct; // 0x0028(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap RowMap; // 0x0030(0x0050)(So, here's a RowMap. Good luck with it.) + uint8 bStripFromClientBuilds : 1; // 0x0080(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreExtraFields : 1; // 0x0080(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreMissingFields : 1; // 0x0080(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPreserveExistingValues : 1; // 0x0080(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ImportKeyField; // 0x0088(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x18]; // 0x0098(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataTable") + } + static class UDataTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataTable; + +// Class Engine.CompositeDataTable +// 0x0028 (0x00D8 - 0x00B0) +class UCompositeDataTable final : public UDataTable +{ +public: + TArray ParentTables; // 0x00B0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray OldParentTables; // 0x00C0(0x0010)(ZeroConstructor, Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_D0[0x8]; // 0x00D0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CompositeDataTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CompositeDataTable") + } + static class UCompositeDataTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCompositeDataTable; + +// Class Engine.PhysicsSettings +// 0x0130 (0x0218 - 0x00E8) +class UPhysicsSettings final : public UPhysicsSettingsCore +{ +public: + struct FPhysicsPredictionSettings PhysicsPrediction; // 0x00E8(0x0030)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + struct FRigidBodyErrorCorrection PhysicErrorCorrection; // 0x0118(0x0034)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + ESettingsLockedAxis LockedAxis; // 0x014C(0x0001)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESettingsDOF DefaultDegreesOfFreedom; // 0x014D(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSuppressFaceRemapTable; // 0x014E(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSupportUVFromHitResults; // 0x014F(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisableActiveActors; // 0x0150(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisableKinematicStaticPairs; // 0x0151(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisableKinematicKinematicPairs; // 0x0152(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisableCCD; // 0x0153(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnimPhysicsMinDeltaTime; // 0x0154(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSimulateAnimPhysicsAfterReset; // 0x0158(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x3]; // 0x0159(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinPhysicsDeltaTime; // 0x015C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPhysicsDeltaTime; // 0x0160(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSubstepping; // 0x0164(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSubsteppingAsync; // 0x0165(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTickPhysicsAsync; // 0x0166(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_167[0x1]; // 0x0167(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float AsyncFixedTimeStepSize; // 0x0168(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSubstepDeltaTime; // 0x016C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxSubsteps; // 0x0170(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SyncSceneSmoothingFactor; // 0x0174(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialAverageFrameRate; // 0x0178(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PhysXTreeRebuildRate; // 0x017C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PhysicalSurfaces; // 0x0180(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + struct FBroadphaseSettings DefaultBroadphaseSettings; // 0x0190(0x0080)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + float MinDeltaVelocityForHitEvents; // 0x0210(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FChaosPhysicsSettings ChaosSettings; // 0x0214(0x0003)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_217[0x1]; // 0x0217(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + int32 GetPhysicsHistoryCount() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsSettings") + } + static class UPhysicsSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsSettings; + +// Class Engine.MaterialFunction +// 0x0028 (0x0068 - 0x0040) +class UMaterialFunction : public UMaterialFunctionInterface +{ +public: + class FString Description; // 0x0040(0x0010)(Edit, ZeroConstructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString UserExposedCaption; // 0x0050(0x0010)(Edit, ZeroConstructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bExposeToLibrary : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPrefixParameterNames : 1; // 0x0060(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableExecWire : 1; // 0x0060(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableNewHLSLGenerator : 1; // 0x0060(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunction") + } + static class UMaterialFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunction; + +// Class Engine.AnimSequence +// 0x0140 (0x01F0 - 0x00B0) +class UAnimSequence final : public UAnimSequenceBase +{ +public: + class UAnimBoneCompressionSettings* BoneCompressionSettings; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimCurveCompressionSettings* CurveCompressionSettings; // 0x00B8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C0[0x80]; // 0x00C0(0x0080)(Fixing Size After Last Property [ Dumper-7 ]) + class UVariableFrameStrippingSettings* VariableFrameStrippingSettings; // 0x0140(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAdditiveAnimationType AdditiveAnimType; // 0x0148(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAdditiveBasePoseType RefPoseType; // 0x0149(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14A[0x2]; // 0x014A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 RefFrameIndex; // 0x014C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequence* RefPoseSeq; // 0x0150(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RetargetSource; // 0x0158(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RetargetSourceAssetReferencePose; // 0x0160(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + EAnimInterpolationType Interpolation; // 0x0170(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRootMotion; // 0x0171(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERootMotionRootLock RootMotionRootLock; // 0x0172(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceRootLock; // 0x0173(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseNormalizedRootMotionScale; // 0x0174(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRootMotionSettingsCopiedFromMontage; // 0x0175(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EStripAnimDataOnDedicatedServerSettings StripAnimDataOnDedicatedServer; // 0x0176(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_177[0x1]; // 0x0177(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AuthoredSyncMarkers; // 0x0178(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_188[0x10]; // 0x0188(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformFrameRate PlatformTargetFrameRate; // 0x0198(0x0008)(Edit, EditConst, NoDestructor, AssetRegistrySearchable, Protected, NativeAccessSpecifierProtected) + TMap AttributeCurves; // 0x01A0(0x0050)(Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimSequence") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimSequence") + } + static class UAnimSequence* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimSequence; + +// Class Engine.DistributionFloatParticleParameter +// 0x0000 (0x0060 - 0x0060) +class UDistributionFloatParticleParameter final : public UDistributionFloatParameterBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatParticleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatParticleParameter") + } + static class UDistributionFloatParticleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatParticleParameter; + +// Class Engine.DistributionFloatUniform +// 0x0008 (0x0040 - 0x0038) +class UDistributionFloatUniform final : public UDistributionFloat +{ +public: + float min_0; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float max_0; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatUniform") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatUniform") + } + static class UDistributionFloatUniform* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatUniform; + +// Class Engine.DistributionFloatUniformCurve +// 0x0018 (0x0050 - 0x0038) +class UDistributionFloatUniformCurve final : public UDistributionFloat +{ +public: + struct FInterpCurveVector2D ConstantCurve; // 0x0038(0x0018)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionFloatUniformCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionFloatUniformCurve") + } + static class UDistributionFloatUniformCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionFloatUniformCurve; + +// Class Engine.CurveBase +// 0x0008 (0x0030 - 0x0028) +class UCurveBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void GetTimeRange(float* MinTime, float* MaxTime) const; + void GetValueRange(float* MinValue, float* MaxValue) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveBase") + } + static class UCurveBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveBase; + +// Class Engine.DistributionVectorConstant +// 0x0020 (0x0058 - 0x0038) +class UDistributionVectorConstant : public UDistributionVector +{ +public: + struct FVector Constant; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockAxes : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDistributionVectorLockFlags LockedAxes; // 0x0054(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorConstant") + } + static class UDistributionVectorConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorConstant; + +// Class Engine.DistributionVectorConstantCurve +// 0x0020 (0x0058 - 0x0038) +class UDistributionVectorConstantCurve final : public UDistributionVector +{ +public: + struct FInterpCurveVector ConstantCurve; // 0x0038(0x0018)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockAxes : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDistributionVectorLockFlags LockedAxes; // 0x0054(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorConstantCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorConstantCurve") + } + static class UDistributionVectorConstantCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorConstantCurve; + +// Class Engine.NavigationObjectBase +// 0x0028 (0x02D0 - 0x02A8) +class ANavigationObjectBase : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UCapsuleComponent* CapsuleComponent; // 0x02B0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UBillboardComponent* GoodSprite; // 0x02B8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UBillboardComponent* BadSprite; // 0x02C0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bIsPIEPlayerStart : 1; // 0x02C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2C9[0x7]; // 0x02C9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationObjectBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationObjectBase") + } + static class ANavigationObjectBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ANavigationObjectBase; + +// Class Engine.PlayerStart +// 0x0008 (0x02D8 - 0x02D0) +class APlayerStart : public ANavigationObjectBase +{ +public: + class FName PlayerStartTag; // 0x02D0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerStart") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerStart") + } + static class APlayerStart* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlayerStart; + +// Class Engine.PlayerStartPIE +// 0x0000 (0x02D8 - 0x02D8) +class APlayerStartPIE final : public APlayerStart +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerStartPIE") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerStartPIE") + } + static class APlayerStartPIE* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlayerStartPIE; + +// Class Engine.MaterialFunctionInterfaceEditorOnlyData +// 0x0000 (0x0028 - 0x0028) +class UMaterialFunctionInterfaceEditorOnlyData : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionInterfaceEditorOnlyData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionInterfaceEditorOnlyData") + } + static class UMaterialFunctionInterfaceEditorOnlyData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionInterfaceEditorOnlyData; + +// Class Engine.MaterialFunctionEditorOnlyData +// 0x0030 (0x0058 - 0x0028) +class UMaterialFunctionEditorOnlyData final : public UMaterialFunctionInterfaceEditorOnlyData +{ +public: + struct FMaterialExpressionCollection ExpressionCollection; // 0x0028(0x0030)(NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionEditorOnlyData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionEditorOnlyData") + } + static class UMaterialFunctionEditorOnlyData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionEditorOnlyData; + +// Class Engine.DistributionVectorParameterBase +// 0x0070 (0x00C8 - 0x0058) +class UDistributionVectorParameterBase : public UDistributionVectorConstant +{ +public: + class FName ParameterName; // 0x0058(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MinInput; // 0x0060(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MaxInput; // 0x0078(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MinOutput; // 0x0090(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MaxOutput; // 0x00A8(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDistributionParamMode ParamModes[0x3]; // 0x00C0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C3[0x5]; // 0x00C3(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorParameterBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorParameterBase") + } + static class UDistributionVectorParameterBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorParameterBase; + +// Class Engine.DistributionVectorParticleParameter +// 0x0000 (0x00C8 - 0x00C8) +class UDistributionVectorParticleParameter final : public UDistributionVectorParameterBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorParticleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorParticleParameter") + } + static class UDistributionVectorParticleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorParticleParameter; + +// Class Engine.Texture2D +// 0x0020 (0x0150 - 0x0130) +class UTexture2D : public UTexture +{ +public: + int32 FirstResourceMemMip; // 0x0130(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTemporarilyDisableStreaming : 1; // 0x0134(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + ETextureAddress AddressX; // 0x0135(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressY; // 0x0136(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_137[0x1]; // 0x0137(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntPoint ImportedSize; // 0x0138(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_140[0x10]; // 0x0140(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FSharedImageConstRefBlueprint Blueprint_GetCPUCopy() const; + int32 Blueprint_GetSizeX() const; + int32 Blueprint_GetSizeY() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Texture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Texture2D") + } + static class UTexture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTexture2D; + +// Class Engine.CurveLinearColorAtlas +// 0x0020 (0x0170 - 0x0150) +class UCurveLinearColorAtlas final : public UTexture2D +{ +public: + uint32 TextureSize; // 0x0150(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSquareResolution : 1; // 0x0154(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_155[0x3]; // 0x0155(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 TextureHeight; // 0x0158(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15C[0x4]; // 0x015C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray GradientCurves; // 0x0160(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + bool GetCurvePosition(class UCurveLinearColor* InCurve, float* position); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveLinearColorAtlas") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveLinearColorAtlas") + } + static class UCurveLinearColorAtlas* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveLinearColorAtlas; + +// Class Engine.DistributionVectorUniform +// 0x0040 (0x0078 - 0x0038) +class UDistributionVectorUniform final : public UDistributionVector +{ +public: + struct FVector max_0; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector min_0; // 0x0050(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockAxes : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDistributionVectorLockFlags LockedAxes; // 0x006C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDistributionVectorMirrorFlags MirrorFlags[0x3]; // 0x006D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseExtremes : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DistributionVectorUniform") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DistributionVectorUniform") + } + static class UDistributionVectorUniform* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDistributionVectorUniform; + +// Class Engine.GraphNodeContextMenuContext +// 0x0028 (0x0050 - 0x0028) +class UGraphNodeContextMenuContext final : public UObject +{ +public: + class UBlueprint* Blueprint; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UEdGraph* Graph; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UEdGraphNode* Node; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_40[0x8]; // 0x0040(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + bool bIsDebugging; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GraphNodeContextMenuContext") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GraphNodeContextMenuContext") + } + static class UGraphNodeContextMenuContext* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGraphNodeContextMenuContext; + +// Class Engine.EdGraphPin_Deprecated +// 0x00E8 (0x0110 - 0x0028) +class UEdGraphPin_Deprecated final : public UObject +{ +public: + class FString PinName; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PinToolTip; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEdGraphPinDirection Direction; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FEdGraphPinType PinType; // 0x0050(0x0058)(NoDestructor, NativeAccessSpecifierPublic) + class FString DefaultValue; // 0x00A8(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString AutogeneratedDefaultValue; // 0x00B8(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* DefaultObject; // 0x00C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText DefaultTextValue; // 0x00D0(0x0010)(NativeAccessSpecifierPublic) + TArray LinkedTo; // 0x00E0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SubPins; // 0x00F0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UEdGraphPin_Deprecated* ParentPin; // 0x0100(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UEdGraphPin_Deprecated* ReferencePassThroughConnection; // 0x0108(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EdGraphPin_Deprecated") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EdGraphPin_Deprecated") + } + static class UEdGraphPin_Deprecated* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEdGraphPin_Deprecated; + +// Class Engine.NavMovementComponent +// 0x0060 (0x0168 - 0x0108) +class UNavMovementComponent : public UMovementComponent +{ +public: + uint8 Pad_108[0x8]; // 0x0108(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float FixedPathBrakingDistance; // 0x0110(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bUpdateNavAgentWithOwnersCollision : 1; // 0x0114(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bUseAccelerationForPaths : 1; // 0x0114(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Config, GlobalConfig, Deprecated, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bUseFixedBrakingDistanceForPaths : 1; // 0x0114(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_115[0x3]; // 0x0115(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FNavMovementProperties NavMovementProperties; // 0x0118(0x0008)(Edit, NoDestructor, Protected, NativeAccessSpecifierProtected) + struct FNavAgentProperties NavAgentProps; // 0x0120(0x0038)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMovementProperties MovementState; // 0x0158(0x0001)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_159[0x7]; // 0x0159(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* PathFollowingComp; // 0x0160(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + struct FVector GetVelocityForNavMovement() const; + bool IsCrouching() const; + bool IsFalling() const; + bool IsFlying() const; + bool IsMovingOnGround() const; + bool IsSwimming() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavMovementComponent") + } + static class UNavMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavMovementComponent; + +// Class Engine.PawnMovementComponent +// 0x0008 (0x0170 - 0x0168) +class UPawnMovementComponent : public UNavMovementComponent +{ +public: + class APawn* PawnOwner; // 0x0168(0x0008)(ZeroConstructor, Transient, DuplicateTransient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + void AddInputVector(const struct FVector& WorldVector, bool bForce); + struct FVector ConsumeInputVector(); + void MulticastAsyncPhysicsStateAction(const class UPrimitiveComponent* ActionComponent, const class FName BoneName, const struct FAsyncPhysicsTimestamp& Timestamp, const EPhysicsStateAction ActionType, const struct FVector& ActionDatas, const struct FVector& ActionPosition); + void ServerAsyncPhysicsStateAction(const class UPrimitiveComponent* ActionComponent, const class FName BoneName, const struct FAsyncPhysicsTimestamp& Timestamp, const EPhysicsStateAction ActionType, const struct FVector& ActionDatas, const struct FVector& ActionPosition); + + struct FVector GetLastInputVector() const; + class APawn* GetPawnOwner() const; + struct FVector GetPendingInputVector() const; + bool IsMoveInputIgnored() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PawnMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PawnMovementComponent") + } + static class UPawnMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPawnMovementComponent; + +// Class Engine.FloatingPawnMovement +// 0x0018 (0x0188 - 0x0170) +class UFloatingPawnMovement : public UPawnMovementComponent +{ +public: + float MaxSpeed; // 0x0170(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Acceleration; // 0x0174(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Deceleration; // 0x0178(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TurningBoost; // 0x017C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPositionCorrected : 1; // 0x0180(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_181[0x7]; // 0x0181(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FloatingPawnMovement") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FloatingPawnMovement") + } + static class UFloatingPawnMovement* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFloatingPawnMovement; + +// Class Engine.EdGraphSchema +// 0x0000 (0x0028 - 0x0028) +class UEdGraphSchema final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EdGraphSchema") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EdGraphSchema") + } + static class UEdGraphSchema* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEdGraphSchema; + +// Class Engine.Emitter +// 0x0050 (0x02F8 - 0x02A8) +class AEmitter : public AActor +{ +public: + class UParticleSystemComponent* ParticleSystemComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bDestroyOnSystemFinish : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPostUpdateTickGroup : 1; // 0x02B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCurrentlyActive : 1; // 0x02B0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x7]; // 0x02B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnParticleSpawn; // 0x02B8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleBurst; // 0x02C8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleDeath; // 0x02D8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleCollide; // 0x02E8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + void Activate(); + void Deactivate(); + void OnParticleSystemFinished(class UParticleSystemComponent* FinishedComponent); + void OnRep_bCurrentlyActive(); + void SetActorParameter(class FName ParameterName, class AActor* Param); + void SetColorParameter(class FName ParameterName, const struct FLinearColor& Param); + void SetFloatParameter(class FName ParameterName, float Param); + void SetMaterialParameter(class FName ParameterName, class UMaterialInterface* Param); + void SetTemplate(class UParticleSystem* NewTemplate); + void SetVectorParameter(class FName ParameterName, const struct FVector& Param); + void ToggleActive(); + + bool IsActive() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Emitter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Emitter") + } + static class AEmitter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AEmitter; + +// Class Engine.EmitterCameraLensEffectBase +// 0x0098 (0x0390 - 0x02F8) +class AEmitterCameraLensEffectBase final : public AEmitter +{ +public: + uint8 Pad_2F8[0x8]; // 0x02F8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UParticleSystem* PS_CameraEffect; // 0x0300(0x0008)(Edit, ZeroConstructor, DisableEditOnInstance, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class APlayerCameraManager* BaseCamera; // 0x0308(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FTransform RelativeTransform; // 0x0310(0x0060)(Edit, DisableEditOnInstance, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float BaseFOV; // 0x0370(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowMultipleInstances : 1; // 0x0374(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bResetWhenRetriggered : 1; // 0x0374(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_375[0x3]; // 0x0375(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> EmittersToTreatAsSame; // 0x0378(0x0010)(Edit, ZeroConstructor, DisableEditOnInstance, UObjectWrapper, NativeAccessSpecifierPublic) + float DistFromCamera; // 0x0388(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_38C[0x4]; // 0x038C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EmitterCameraLensEffectBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EmitterCameraLensEffectBase") + } + static class AEmitterCameraLensEffectBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AEmitterCameraLensEffectBase; + +// Class Engine.Engine +// 0x11C8 (0x11F0 - 0x0028) +class UEngine : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UFont* TinyFont; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath TinyFontName; // 0x0038(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* SmallFont; // 0x0058(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath SmallFontName; // 0x0060(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* MediumFont; // 0x0080(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath MediumFontName; // 0x0088(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* LargeFont; // 0x00A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath LargeFontName; // 0x00B0(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* SubtitleFont; // 0x00D0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath SubtitleFontName; // 0x00D8(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray AdditionalFonts; // 0x00F8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray AdditionalFontNames; // 0x0108(0x0010)(Edit, ZeroConstructor, Config, GlobalConfig, AdvancedDisplay, NativeAccessSpecifierPublic) + TSubclassOf ConsoleClass; // 0x0118(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath ConsoleClassName; // 0x0120(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GameViewportClientClass; // 0x0140(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath GameViewportClientClassName; // 0x0148(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf LocalPlayerClass; // 0x0168(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath LocalPlayerClassName; // 0x0170(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf WorldSettingsClass; // 0x0190(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath WorldSettingsClassName; // 0x0198(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath NavigationSystemClassName; // 0x01B8(0x0020)(ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf NavigationSystemClass; // 0x01D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath NavigationSystemConfigClassName; // 0x01E0(0x0020)(ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf NavigationSystemConfigClass; // 0x0200(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath AvoidanceManagerClassName; // 0x0208(0x0020)(ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf AvoidanceManagerClass; // 0x0228(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath AIControllerClassName; // 0x0230(0x0020)(ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PhysicsCollisionHandlerClass; // 0x0250(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath PhysicsCollisionHandlerClassName; // 0x0258(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath GameUserSettingsClassName; // 0x0278(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GameUserSettingsClass; // 0x0298(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UGameUserSettings* GameUserSettings; // 0x02A0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf LevelScriptActorClass; // 0x02A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath LevelScriptActorClassName; // 0x02B0(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath DefaultBlueprintBaseClassName; // 0x02D0(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath GameSingletonClassName; // 0x02F0(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* GameSingleton; // 0x0310(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath AssetManagerClassName; // 0x0318(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAssetManager* AssetManager; // 0x0338(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultTexture; // 0x0340(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultTextureName; // 0x0348(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* DefaultDiffuseTexture; // 0x0368(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultDiffuseTextureName; // 0x0370(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultBSPVertexTexture; // 0x0390(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultBSPVertexTextureName; // 0x0398(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* HighFrequencyNoiseTexture; // 0x03B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath HighFrequencyNoiseTextureName; // 0x03C0(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultBokehTexture; // 0x03E0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultBokehTextureName; // 0x03E8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultBloomKernelTexture; // 0x0408(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultBloomKernelTextureName; // 0x0410(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultFilmGrainTexture; // 0x0430(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultFilmGrainTextureName; // 0x0438(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* WireframeMaterial; // 0x0458(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString WireframeMaterialName; // 0x0460(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* DebugMeshMaterial; // 0x0470(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DebugMeshMaterialName; // 0x0478(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* NaniteHiddenSectionMaterial; // 0x0498(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NaniteHiddenSectionMaterialName; // 0x04A0(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* EmissiveMeshMaterial; // 0x04B0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath EmissiveMeshMaterialName; // 0x04B8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* LevelColorationLitMaterial; // 0x04D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LevelColorationLitMaterialName; // 0x04E0(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* LevelColorationUnlitMaterial; // 0x04F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LevelColorationUnlitMaterialName; // 0x04F8(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* LightingTexelDensityMaterial; // 0x0508(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LightingTexelDensityName; // 0x0510(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* ShadedLevelColorationLitMaterial; // 0x0520(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ShadedLevelColorationLitMaterialName; // 0x0528(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* ShadedLevelColorationUnlitMaterial; // 0x0538(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ShadedLevelColorationUnlitMaterialName; // 0x0540(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* RemoveSurfaceMaterial; // 0x0550(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath RemoveSurfaceMaterialName; // 0x0558(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorMaterial; // 0x0578(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorMaterialName; // 0x0580(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorViewModeMaterial_ColorOnly; // 0x0590(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorViewModeMaterialName_ColorOnly; // 0x0598(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorViewModeMaterial_AlphaAsColor; // 0x05A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorViewModeMaterialName_AlphaAsColor; // 0x05B0(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorViewModeMaterial_RedOnly; // 0x05C0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorViewModeMaterialName_RedOnly; // 0x05C8(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorViewModeMaterial_GreenOnly; // 0x05D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorViewModeMaterialName_GreenOnly; // 0x05E0(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* VertexColorViewModeMaterial_BlueOnly; // 0x05F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString VertexColorViewModeMaterialName_BlueOnly; // 0x05F8(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* TextureColorViewModeMaterial; // 0x0608(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString TextureColorViewModeMaterialName; // 0x0610(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DebugEditorMaterialName; // 0x0620(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* ConstraintLimitMaterial; // 0x0640(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialX; // 0x0648(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialXAxis; // 0x0650(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialY; // 0x0658(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialYAxis; // 0x0660(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialZ; // 0x0668(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialZAxis; // 0x0670(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ConstraintLimitMaterialPrismatic; // 0x0678(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* InvalidLightmapSettingsMaterial; // 0x0680(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath InvalidLightmapSettingsMaterialName; // 0x0688(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* PreviewShadowsIndicatorMaterial; // 0x06A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath PreviewShadowsIndicatorMaterialName; // 0x06B0(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterial* ArrowMaterial; // 0x06D0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ArrowMaterialYellow; // 0x06D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath ArrowMaterialName; // 0x06E0(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LightingOnlyBrightness; // 0x0700(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ShaderComplexityColors; // 0x0710(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray QuadComplexityColors; // 0x0720(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray LightComplexityColors; // 0x0730(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray StationaryLightOverlapColors; // 0x0740(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray LODColorationColors; // 0x0750(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray HLODColorationColors; // 0x0760(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray StreamingAccuracyColors; // 0x0770(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationExcludedColor; // 0x0780(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationIncludedColor; // 0x0790(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationRecomputeTangentsColor; // 0x07A0(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GPUSkinCacheVisualizationLowMemoryThresholdInMB; // 0x07B0(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GPUSkinCacheVisualizationHighMemoryThresholdInMB; // 0x07B4(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationLowMemoryColor; // 0x07B8(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationMidMemoryColor; // 0x07C8(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor GPUSkinCacheVisualizationHighMemoryColor; // 0x07D8(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray GPUSkinCacheVisualizationRayTracingLODOffsetColors; // 0x07E8(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + float MaxPixelShaderAdditiveComplexityCount; // 0x07F8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxES3PixelShaderAdditiveComplexityCount; // 0x07FC(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinLightMapDensity; // 0x0800(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IdealLightMapDensity; // 0x0804(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxLightMapDensity; // 0x0808(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRenderLightMapDensityGrayscale : 1; // 0x080C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_80D[0x3]; // 0x080D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RenderLightMapDensityGrayscaleScale; // 0x0810(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RenderLightMapDensityColorScale; // 0x0814(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LightMapDensityVertexMappedColor; // 0x0818(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LightMapDensitySelectedColor; // 0x0828(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray StatColorMappings; // 0x0838(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + class UPhysicalMaterial* DefaultPhysMaterial; // 0x0848(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultPhysMaterialName; // 0x0850(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterial* DefaultDestructiblePhysMaterial; // 0x0870(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultDestructiblePhysMaterialName; // 0x0878(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActiveGameNameRedirects; // 0x0898(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray ActiveClassRedirects; // 0x08A8(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray ActivePluginRedirects; // 0x08B8(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray ActiveStructRedirects; // 0x08C8(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + class UTexture2D* PreIntegratedSkinBRDFTexture; // 0x08D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath PreIntegratedSkinBRDFTextureName; // 0x08E0(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* BlueNoiseScalarTexture; // 0x0900(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* BlueNoiseVec2Texture; // 0x0908(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath BlueNoiseScalarTextureName; // 0x0910(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath BlueNoiseVec2TextureName; // 0x0930(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* GGXLTCAmpTexture; // 0x0950(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GGXLTCAmpTextureName; // 0x0958(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* GGXLTCMatTexture; // 0x0978(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GGXLTCMatTextureName; // 0x0980(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* SheenLTCTexture; // 0x09A0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SheenLTCTextureName; // 0x09A8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* GGXReflectionEnergyTexture; // 0x09C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GGXReflectionEnergyTextureName; // 0x09D0(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* GGXTransmissionEnergyTexture; // 0x09F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GGXTransmissionEnergyTextureName; // 0x09F8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* SheenEnergyTexture; // 0x0A18(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SheenLegacyEnergyTextureName; // 0x0A20(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SheenEnergyTextureName; // 0x0A40(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DiffuseEnergyTexture; // 0x0A60(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DiffuseEnergyTextureName; // 0x0A68(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2DArray* GlintTexture; // 0x0A88(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2DArray* GlintTexture2; // 0x0A90(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GlintTextureName; // 0x0A98(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath GlintTexture2Name; // 0x0AB8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVolumeTexture* SimpleVolumeTexture; // 0x0AD8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SimpleVolumeTextureName; // 0x0AE0(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVolumeTexture* SimpleVolumeEnvTexture; // 0x0B00(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath SimpleVolumeEnvTextureName; // 0x0B08(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* MiniFontTexture; // 0x0B28(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath MiniFontTextureName; // 0x0B30(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* WeightMapPlaceholderTexture; // 0x0B50(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* WeightMapArrayPlaceholderTexture; // 0x0B58(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath WeightMapPlaceholderTextureName; // 0x0B60(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath WeightMapArrayPlaceholderTextureName; // 0x0B80(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* LightMapDensityTexture; // 0x0BA0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath LightMapDensityTextureName; // 0x0BA8(0x0020)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BC8[0x8]; // 0x0BC8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UGameViewportClient* GameViewport; // 0x0BD0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray DeferredCommands; // 0x0BD8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float NearClipPlane; // 0x0BE8(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSubtitlesEnabled : 1; // 0x0BEC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSubtitlesForcedOff : 1; // 0x0BEC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BED[0x3]; // 0x0BED(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaximumLoopIterationCount; // 0x0BF0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCanBlueprintsTickByDefault : 1; // 0x0BF4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOptimizeAnimBlueprintMemberVariableAccess : 1; // 0x0BF4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowMultiThreadedAnimationUpdate : 1; // 0x0BF4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableEditorPSysRealtimeLOD : 1; // 0x0BF4(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_BF4_4 : 1; // 0x0BF4(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bSmoothFrameRate : 1; // 0x0BF4(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFixedFrameRate : 1; // 0x0BF4(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BF5[0x3]; // 0x0BF5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FixedFrameRate; // 0x0BF8(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFloatRange SmoothedFrameRateRange; // 0x0BFC(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C0C[0x4]; // 0x0C0C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UEngineCustomTimeStep* CustomTimeStep; // 0x0C10(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_C18[0x20]; // 0x0C18(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoftClassPath CustomTimeStepClassName; // 0x0C38(0x0020)(Edit, ZeroConstructor, Config, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTimecodeProvider* TimecodeProvider; // 0x0C58(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_C60[0x20]; // 0x0C60(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoftClassPath TimecodeProviderClassName; // 0x0C80(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGenerateDefaultTimecode; // 0x0CA0(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CA1[0x3]; // 0x0CA1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FFrameRate GenerateDefaultTimecodeFrameRate; // 0x0CA4(0x0008)(Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GenerateDefaultTimecodeFrameDelay; // 0x0CAC(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCheckForMultiplePawnsSpawnedInAFrame : 1; // 0x0CB0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_CB1[0x3]; // 0x0CB1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumPawnsAllowedToBeSpawnedInAFrame; // 0x0CB4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShouldGenerateLowQualityLightmaps : 1; // 0x0CB8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, GlobalConfig, Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_CB9[0x3]; // 0x0CB9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor C_WorldBox; // 0x0CBC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_BrushWire; // 0x0CC0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_AddWire; // 0x0CC4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_SubtractWire; // 0x0CC8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_SemiSolidWire; // 0x0CCC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_NonSolidWire; // 0x0CD0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_WireBackground; // 0x0CD4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_ScaleBoxHi; // 0x0CD8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_VolumeCollision; // 0x0CDC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_BSPCollision; // 0x0CE0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_OrthoBackground; // 0x0CE4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_Volume; // 0x0CE8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor C_BrushShape; // 0x0CEC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CF0[0x8]; // 0x0CF0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDirectoryPath GameScreenshotSaveDirectory; // 0x0CF8(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool UseStaticMeshMinLODPerQualityLevels; // 0x0D08(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool UseSkeletalMeshMinLODPerQualityLevels; // 0x0D09(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool UseClothAssetMinLODPerQualityLevels; // 0x0D0A(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool UseGrassVarityPerQualityLevels; // 0x0D0B(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETransitionType TransitionType; // 0x0D0C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D0D[0x3]; // 0x0D0D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FString TransitionDescription; // 0x0D10(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString TransitionGameMode; // 0x0D20(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowMatureLanguage : 1; // 0x0D30(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D31[0x3]; // 0x0D31(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CameraRotationThreshold; // 0x0D34(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraTranslationThreshold; // 0x0D38(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PrimitiveProbablyVisibleTime; // 0x0D3C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxOcclusionPixelsFraction; // 0x0D40(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPauseOnLossOfFocus : 1; // 0x0D44(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D45[0x3]; // 0x0D45(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaxParticleResize; // 0x0D48(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxParticleResizeWarn; // 0x0D4C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PendingDroppedNotes; // 0x0D50(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + float NetClientTicksPerSecond; // 0x0D60(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DisplayGamma; // 0x0D64(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinDesiredFrameRate; // 0x0D68(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DefaultSelectedMaterialColor; // 0x0D6C(0x0010)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FLinearColor SelectedMaterialColor; // 0x0D7C(0x0010)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FLinearColor SelectionOutlineColor; // 0x0D8C(0x0010)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FLinearColor SubduedSelectionOutlineColor; // 0x0D9C(0x0010)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FLinearColor SelectedMaterialColorOverride; // 0x0DAC(0x0010)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bIsOverridingSelectedColor; // 0x0DBC(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_DBD[0x3]; // 0x0DBD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bEnableOnScreenDebugMessages : 1; // 0x0DC0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableOnScreenDebugMessagesDisplay : 1; // 0x0DC0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSuppressMapWarnings : 1; // 0x0DC0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableAILogging : 1; // 0x0DC0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_DC1[0x3]; // 0x0DC1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 bEnableVisualLogRecordingOnStart; // 0x0DC4(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ScreenSaverInhibitorSemaphore; // 0x0DC8(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bLockReadOnlyLevels : 1; // 0x0DCC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_DCD[0x3]; // 0x0DCD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ParticleEventManagerClassPath; // 0x0DD0(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SelectionHighlightIntensity; // 0x0DE0(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BSPSelectionHighlightIntensity; // 0x0DE4(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SelectionHighlightIntensityBillboards; // 0x0DE8(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DEC[0x294]; // 0x0DEC(0x0294)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 GlobalNetTravelCount; // 0x1080(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1084[0x4]; // 0x1084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray NetDriverDefinitions; // 0x1088(0x0010)(ZeroConstructor, Transient, Config, NativeAccessSpecifierPublic) + TArray IrisNetDriverConfigs; // 0x1098(0x0010)(ZeroConstructor, Transient, Config, NativeAccessSpecifierPublic) + TArray ServerActors; // 0x10A8(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray RuntimeServerActors; // 0x10B8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float NetErrorLogInterval; // 0x10C8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bStartedLoadMapMovie : 1; // 0x10CC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_10CD[0x3B]; // 0x10CD(0x003B)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NextWorldContextHandle; // 0x1108(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_110C[0xE4]; // 0x110C(0x00E4)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UEngine* GetEngine(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Engine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Engine") + } + static class UEngine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngine; + +// Class Engine.AsyncActionHandleSaveGame +// 0x0038 (0x0068 - 0x0030) +class UAsyncActionHandleSaveGame final : public UBlueprintAsyncActionBase +{ +public: + TMulticastInlineDelegate Completed; // 0x0030(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_40[0x20]; // 0x0040(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + class USaveGame* SaveGameObject; // 0x0060(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UAsyncActionHandleSaveGame* AsyncLoadGameFromSlot(class UObject* WorldContextObject, const class FString& SlotName, const int32 UserIndex); + static class UAsyncActionHandleSaveGame* AsyncSaveGameToSlot(class UObject* WorldContextObject, class USaveGame* SaveGameObject_0, const class FString& SlotName, const int32 UserIndex); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionHandleSaveGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionHandleSaveGame") + } + static class UAsyncActionHandleSaveGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionHandleSaveGame; + +// Class Engine.ViewModeUtils +// 0x0000 (0x0028 - 0x0028) +class UViewModeUtils final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ViewModeUtils") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ViewModeUtils") + } + static class UViewModeUtils* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UViewModeUtils; + +// Class Engine.EngineBaseTypes +// 0x0000 (0x0028 - 0x0028) +class UEngineBaseTypes final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineBaseTypes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineBaseTypes") + } + static class UEngineBaseTypes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineBaseTypes; + +// Class Engine.MaterialExpressionTemporalSobol +// 0x0068 (0x0118 - 0x00B0) +class UMaterialExpressionTemporalSobol final : public UMaterialExpression +{ +public: + struct FExpressionInput Index_0; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Seed; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint32 ConstIndex; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D ConstSeed; // 0x0108(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTemporalSobol") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTemporalSobol") + } + static class UMaterialExpressionTemporalSobol* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTemporalSobol; + +// Class Engine.EngineTypes +// 0x0000 (0x0028 - 0x0028) +class UEngineTypes final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineTypes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineTypes") + } + static class UEngineTypes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineTypes; + +// Class Engine.ExponentialHeightFog +// 0x0010 (0x02B8 - 0x02A8) +class AExponentialHeightFog final : public AInfo +{ +public: + class UExponentialHeightFogComponent* Component; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bEnabled : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x7]; // 0x02B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_bEnabled(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExponentialHeightFog") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExponentialHeightFog") + } + static class AExponentialHeightFog* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AExponentialHeightFog; + +// Class Engine.InputDeviceProperty +// 0x0008 (0x0030 - 0x0028) +class UInputDeviceProperty : public UObject +{ +public: + float PropertyDuration; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ApplyDeviceProperty(const struct FPlatformUserId& UserId, const struct FInputDeviceId& DeviceID); + void EvaluateDeviceProperty(const struct FPlatformUserId& PlatformUser, const struct FInputDeviceId& DeviceID, const float DeltaTime, const float duration); + void ResetDeviceProperty(const struct FPlatformUserId& PlatformUser, const struct FInputDeviceId& DeviceID, bool bForceReset); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceProperty") + } + static class UInputDeviceProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceProperty; + +// Class Engine.ColorInputDeviceCurveProperty +// 0x0070 (0x00A0 - 0x0030) +class UColorInputDeviceCurveProperty final : public UInputDeviceProperty +{ +public: + struct FDeviceColorCurveData ColorData; // 0x0030(0x0010)(Edit, BlueprintVisible, NoDestructor, Protected, NativeAccessSpecifierProtected) + TMap DeviceOverrideData; // 0x0040(0x0050)(Edit, BlueprintVisible, Protected, NativeAccessSpecifierProtected) + uint8 Pad_90[0x10]; // 0x0090(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ColorInputDeviceCurveProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ColorInputDeviceCurveProperty") + } + static class UColorInputDeviceCurveProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UColorInputDeviceCurveProperty; + +// Class Engine.MaterialExpressionSubstrateUtilityBase +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionSubstrateUtilityBase : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateUtilityBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateUtilityBase") + } + static class UMaterialExpressionSubstrateUtilityBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateUtilityBase; + +// Class Engine.MaterialExpressionSubstrateThinFilm +// 0x00C8 (0x0178 - 0x00B0) +class UMaterialExpressionSubstrateThinFilm final : public UMaterialExpressionSubstrateUtilityBase +{ +public: + struct FExpressionInput Normal; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput F0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput F90; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Thickness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IOR; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateThinFilm") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateThinFilm") + } + static class UMaterialExpressionSubstrateThinFilm* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateThinFilm; + +// Class Engine.ExponentialHeightFogComponent +// 0x00E0 (0x0310 - 0x0230) +class UExponentialHeightFogComponent final : public USceneComponent +{ +public: + float FogDensity; // 0x0230(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogHeightFalloff; // 0x0234(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExponentialHeightFogData SecondFogData; // 0x0238(0x000C)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPublic) + struct FLinearColor FogInscatteringColor; // 0x0244(0x0010)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FogInscatteringLuminance; // 0x0254(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor SkyAtmosphereAmbientContributionColorScale; // 0x0264(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_274[0x4]; // 0x0274(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* InscatteringColorCubemap; // 0x0278(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InscatteringColorCubemapAngle; // 0x0280(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor InscatteringTextureTint; // 0x0284(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FullyDirectionalInscatteringColorDistance; // 0x0294(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonDirectionalInscatteringColorDistance; // 0x0298(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DirectionalInscatteringExponent; // 0x029C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DirectionalInscatteringStartDistance; // 0x02A0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DirectionalInscatteringColor; // 0x02A4(0x0010)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DirectionalInscatteringLuminance; // 0x02B4(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogMaxOpacity; // 0x02C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartDistance; // 0x02C8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndDistance; // 0x02CC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogCutoffDistance; // 0x02D0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableVolumetricFog; // 0x02D4(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D5[0x3]; // 0x02D5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumetricFogScatteringDistribution; // 0x02D8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor VolumetricFogAlbedo; // 0x02DC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor VolumetricFogEmissive; // 0x02E0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricFogExtinctionScale; // 0x02F0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricFogDistance; // 0x02F4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricFogStartDistance; // 0x02F8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricFogNearFadeInDistance; // 0x02FC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricFogStaticLightingScatteringIntensity; // 0x0300(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideLightColorsWithFogInscatteringColors; // 0x0304(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHoldout : 1; // 0x0305(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderInMainPass : 1; // 0x0305(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_306[0xA]; // 0x0306(0x000A)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetDirectionalInscatteringColor(const struct FLinearColor& Value); + void SetDirectionalInscatteringExponent(float Value); + void SetDirectionalInscatteringStartDistance(float Value); + void SetEndDistance(float Value); + void SetFogCutoffDistance(float Value); + void SetFogDensity(float Value); + void SetFogHeightFalloff(float Value); + void SetFogInscatteringColor(const struct FLinearColor& Value); + void SetFogMaxOpacity(float Value); + void SetFullyDirectionalInscatteringColorDistance(float Value); + void SetHoldout(bool bNewHoldout); + void SetInscatteringColorCubemap(class UTextureCube* Value); + void SetInscatteringColorCubemapAngle(float Value); + void SetInscatteringTextureTint(const struct FLinearColor& Value); + void SetNonDirectionalInscatteringColorDistance(float Value); + void SetRenderInMainPass(bool bValue); + void SetSecondFogData(const struct FExponentialHeightFogData& NewValue); + void SetSecondFogDensity(float Value); + void SetSecondFogHeightFalloff(float Value); + void SetSecondFogHeightOffset(float Value); + void SetStartDistance(float Value); + void SetVolumetricFog(bool bNewValue); + void SetVolumetricFogAlbedo(const struct FColor& NewValue); + void SetVolumetricFogDistance(float NewValue); + void SetVolumetricFogEmissive(const struct FLinearColor& NewValue); + void SetVolumetricFogExtinctionScale(float NewValue); + void SetVolumetricFogNearFadeInDistance(float NewValue); + void SetVolumetricFogScatteringDistribution(float NewValue); + void SetVolumetricFogStartDistance(float NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExponentialHeightFogComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExponentialHeightFogComponent") + } + static class UExponentialHeightFogComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExponentialHeightFogComponent; + +// Class Engine.Exporter +// 0x0050 (0x0078 - 0x0028) +class UExporter : public UObject +{ +public: + TSubclassOf SupportedClass; // 0x0028(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ExportRootScope; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray FormatExtension; // 0x0038(0x0010)(BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray FormatDescription; // 0x0048(0x0010)(BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + int32 PreferredFormatIndex; // 0x0058(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TextIndent; // 0x005C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bText : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSelectedOnly : 1; // 0x0060(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceFileOperations : 1; // 0x0060(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAssetExportTask* ExportTask; // 0x0068(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_70[0x8]; // 0x0070(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static bool RunAssetExportTask(class UAssetExportTask* Task); + static bool RunAssetExportTasks(const TArray& ExportTasks); + + bool ScriptRunAssetExportTask(class UAssetExportTask* Task); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Exporter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Exporter") + } + static class UExporter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExporter; + +// Class Engine.DataLayerAsset +// 0x0010 (0x0040 - 0x0030) +class UDataLayerAsset : public UDataAsset +{ +public: + EDataLayerType DataLayerType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bSupportsActorFilters; // 0x0031(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor DebugColor; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EDataLayerLoadFilter LoadFilter; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FColor GetDebugColor() const; + EDataLayerType GetType() const; + bool IsClientOnly() const; + bool IsRuntime() const; + bool IsServerOnly() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerAsset") + } + static class UDataLayerAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerAsset; + +// Class Engine.InputDeviceTriggerEffect +// 0x0010 (0x0040 - 0x0030) +class UInputDeviceTriggerEffect : public UInputDeviceProperty +{ +public: + struct FDeviceTriggerBaseData BaseTriggerData; // 0x0030(0x0002)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_32[0xE]; // 0x0032(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceTriggerEffect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceTriggerEffect") + } + static class UInputDeviceTriggerEffect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceTriggerEffect; + +// Class Engine.InputDeviceTriggerVibrationProperty +// 0x0080 (0x00C0 - 0x0040) +class UInputDeviceTriggerVibrationProperty final : public UInputDeviceTriggerEffect +{ +public: + struct FDeviceTriggerTriggerVibrationData TriggerData; // 0x0040(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + TMap DeviceOverrideData; // 0x0058(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_A8[0x18]; // 0x00A8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceTriggerVibrationProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceTriggerVibrationProperty") + } + static class UInputDeviceTriggerVibrationProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceTriggerVibrationProperty; + +// Class Engine.MaterialExpressionTangent +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionTangent final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Period; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTangent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTangent") + } + static class UMaterialExpressionTangent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTangent; + +// Class Engine.ExternalDataLayerAsset +// 0x0008 (0x0048 - 0x0040) +class UExternalDataLayerAsset final : public UDataLayerAsset +{ +public: + struct FExternalDataLayerUID UID; // 0x0040(0x0004)(Edit, EditConst, DuplicateTransient, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExternalDataLayerAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExternalDataLayerAsset") + } + static class UExternalDataLayerAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExternalDataLayerAsset; + +// Class Engine.ExternalDataLayerEngineSubsystem +// 0x0070 (0x00A0 - 0x0030) +class UExternalDataLayerEngineSubsystem final : public UEngineSubsystem +{ +public: + uint8 Pad_30[0x70]; // 0x0030(0x0070)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExternalDataLayerEngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExternalDataLayerEngineSubsystem") + } + static class UExternalDataLayerEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExternalDataLayerEngineSubsystem; + +// Class Engine.ExternalDataLayerInjectionPolicy +// 0x0000 (0x0028 - 0x0028) +class UExternalDataLayerInjectionPolicy final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExternalDataLayerInjectionPolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExternalDataLayerInjectionPolicy") + } + static class UExternalDataLayerInjectionPolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExternalDataLayerInjectionPolicy; + +// Class Engine.LevelScriptActor +// 0x0008 (0x02B0 - 0x02A8) +class ALevelScriptActor : public AActor +{ +public: + uint8 bInputEnabled : 1; // 0x02A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_2A9[0x7]; // 0x02A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void LevelReset(); + bool RemoteEvent(class FName EventName); + void SetCinematicMode(bool bCinematicMode, bool bHidePlayer, bool bAffectsHUD, bool bAffectsMovement, bool bAffectsTurning); + void WorldOriginLocationChanged(const struct FIntVector& OldOriginLocation, const struct FIntVector& NewOriginLocation); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelScriptActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelScriptActor") + } + static class ALevelScriptActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelScriptActor; + +// Class Engine.ExternalDataLayerManager +// 0x0058 (0x0080 - 0x0028) +class UExternalDataLayerManager final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMap ExternalStreamingObjects; // 0x0030(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ExternalDataLayerManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ExternalDataLayerManager") + } + static class UExternalDataLayerManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UExternalDataLayerManager; + +// Class Engine.LightmassImportanceVolume +// 0x0000 (0x02E0 - 0x02E0) +class ALightmassImportanceVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmassImportanceVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmassImportanceVolume") + } + static class ALightmassImportanceVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALightmassImportanceVolume; + +// Class Engine.FieldNotificationLibrary +// 0x0000 (0x0028 - 0x0028) +class UFieldNotificationLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void BroadcastFieldsValueChanged(class UObject* Object, const TArray& FieldIds); + static void BroadcastFieldValueChanged(class UObject* Object, const struct FFieldNotificationId& FieldId); + static bool SetPropertyValueAndBroadcast(bool NewValueByRef, const int32& OldValue, const int32& NewValue, class UObject* Object, class UObject* NetOwner, bool bHasLocalRepNotify, bool bShouldFlushDormancyOnSet, bool bIsNetProperty); + static bool SetPropertyValueAndBroadcastFields(bool NewValueByRef, const int32& OldValue, const int32& NewValue, class UObject* Object, class UObject* NetOwner, bool bHasLocalRepNotify, bool bShouldFlushDormancyOnSet, bool bIsNetProperty, const TArray& ExtraFieldIds); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FieldNotificationLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FieldNotificationLibrary") + } + static class UFieldNotificationLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFieldNotificationLibrary; + +// Class Engine.FontImportOptions +// 0x00B0 (0x00D8 - 0x0028) +class UFontImportOptions final : public UObject +{ +public: + struct FFontImportOptionsData Data; // 0x0028(0x00B0)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FontImportOptions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FontImportOptions") + } + static class UFontImportOptions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFontImportOptions; + +// Class Engine.ForceFeedbackAttenuation +// 0x00C0 (0x00E8 - 0x0028) +class UForceFeedbackAttenuation final : public UObject +{ +public: + struct FForceFeedbackAttenuationSettings Attenuation; // 0x0028(0x00C0)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ForceFeedbackAttenuation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ForceFeedbackAttenuation") + } + static class UForceFeedbackAttenuation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UForceFeedbackAttenuation; + +// Class Engine.GameNetworkManager +// 0x00A8 (0x0350 - 0x02A8) +class AGameNetworkManager final : public AInfo +{ +public: + float BadPacketLossThreshold; // 0x02A8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SeverePacketLossThreshold; // 0x02AC(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BadPingThreshold; // 0x02B0(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SeverePingThreshold; // 0x02B4(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AdjustedNetSpeed; // 0x02B8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LastNetSpeedUpdateTime; // 0x02BC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TotalNetBandwidth; // 0x02C0(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinDynamicBandwidth; // 0x02C4(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxDynamicBandwidth; // 0x02C8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsStandbyCheckingEnabled : 1; // 0x02CC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasStandbyCheatTriggered : 1; // 0x02CC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2CD[0x3]; // 0x02CD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StandbyRxCheatTime; // 0x02D0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StandbyTxCheatTime; // 0x02D4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PercentMissingForRxStandby; // 0x02D8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PercentMissingForTxStandby; // 0x02DC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PercentForBadPing; // 0x02E0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JoinInProgressStandbyWaitTime; // 0x02E4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MoveRepSize; // 0x02E8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MAXPOSITIONERRORSQUARED; // 0x02EC(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MAXNEARZEROVELOCITYSQUARED; // 0x02F0(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CLIENTADJUSTUPDATECOST; // 0x02F4(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MAXCLIENTUPDATEINTERVAL; // 0x02F8(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxClientForcedUpdateDuration; // 0x02FC(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerForcedUpdateHitchThreshold; // 0x0300(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerForcedUpdateHitchCooldown; // 0x0304(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxMoveDeltaTime; // 0x0308(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxClientSmoothingDeltaTime; // 0x030C(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientNetSendMoveDeltaTime; // 0x0310(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientNetSendMoveDeltaTimeThrottled; // 0x0314(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientNetSendMoveDeltaTimeStationary; // 0x0318(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ClientNetSendMoveThrottleAtNetSpeed; // 0x031C(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ClientNetSendMoveThrottleOverPlayerCount; // 0x0320(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientErrorUpdateRateLimit; // 0x0324(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientNetCamUpdateDeltaTime; // 0x0328(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClientNetCamUpdatePositionLimit; // 0x032C(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ClientAuthorativePosition; // 0x0330(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMovementTimeDiscrepancyDetection; // 0x0331(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMovementTimeDiscrepancyResolution; // 0x0332(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_333[0x1]; // 0x0333(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float MovementTimeDiscrepancyMaxTimeMargin; // 0x0334(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MovementTimeDiscrepancyMinTimeMargin; // 0x0338(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MovementTimeDiscrepancyResolutionRate; // 0x033C(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MovementTimeDiscrepancyDriftAllowance; // 0x0340(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMovementTimeDiscrepancyForceCorrectionsDuringResolution; // 0x0344(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseDistanceBasedRelevancy; // 0x0345(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_346[0xA]; // 0x0346(0x000A)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameNetworkManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameNetworkManager") + } + static class AGameNetworkManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameNetworkManager; + +// Class Engine.LightWeightInstanceManager +// 0x00B8 (0x0360 - 0x02A8) +class ALightWeightInstanceManager : public AActor +{ +public: + uint8 Pad_2A8[0x18]; // 0x02A8(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf RepresentedClass; // 0x02C0(0x0008)(Edit, Net, ZeroConstructor, DisableEditOnInstance, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSubclassOf AcceptedClass; // 0x02C8(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray InstanceTransforms; // 0x02D0(0x0010)(Edit, Net, ZeroConstructor, DisableEditOnTemplate, RepNotify, Protected, NativeAccessSpecifierProtected) + TMap Actors; // 0x02E0(0x0050)(Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_330[0x10]; // 0x0330(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray FreeIndices; // 0x0340(0x0010)(Net, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray ValidIndices; // 0x0350(0x0010)(Net, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + +public: + void OnRep_Transforms(); + void OnSpawnedActorDestroyed(class AActor* DestroyedActor); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightWeightInstanceManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightWeightInstanceManager") + } + static class ALightWeightInstanceManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALightWeightInstanceManager; + +// Class Engine.LightWeightInstanceStaticMeshManager +// 0x0068 (0x03C8 - 0x0360) +class ALightWeightInstanceStaticMeshManager final : public ALightWeightInstanceManager +{ +public: + uint8 Pad_360[0x8]; // 0x0360(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftObjectPtr StaticMesh; // 0x0368(0x0028)(Edit, BlueprintVisible, BlueprintReadOnly, Net, DisableEditOnTemplate, RepNotify, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UInstancedStaticMeshComponent* ISMComponent; // 0x0390(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray RenderingIndicesToDataIndices; // 0x0398(0x0010)(Net, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray DataIndicesToRenderingIndices; // 0x03A8(0x0010)(Net, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_3B8[0x10]; // 0x03B8(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_StaticMesh(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightWeightInstanceStaticMeshManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightWeightInstanceStaticMeshManager") + } + static class ALightWeightInstanceStaticMeshManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALightWeightInstanceStaticMeshManager; + +// Class Engine.SpotLight +// 0x0008 (0x02C0 - 0x02B8) +class ASpotLight : public ALight +{ +public: + class USpotLightComponent* SpotLightComponent; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + void SetInnerConeAngle(float NewInnerConeAngle); + void SetOuterConeAngle(float NewOuterConeAngle); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpotLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpotLight") + } + static class ASpotLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASpotLight; + +// Class Engine.GeneratedMeshAreaLight +// 0x0000 (0x02C0 - 0x02C0) +class AGeneratedMeshAreaLight final : public ASpotLight +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GeneratedMeshAreaLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GeneratedMeshAreaLight") + } + static class AGeneratedMeshAreaLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGeneratedMeshAreaLight; + +// Class Engine.HapticFeedbackEffect_Buffer +// 0x0018 (0x0040 - 0x0028) +class UHapticFeedbackEffect_Buffer final : public UHapticFeedbackEffect_Base +{ +public: + TArray Amplitudes; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + int32 SampleRate; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HapticFeedbackEffect_Buffer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HapticFeedbackEffect_Buffer") + } + static class UHapticFeedbackEffect_Buffer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHapticFeedbackEffect_Buffer; + +// Class Engine.MaterialInstanceActor +// 0x0010 (0x02B8 - 0x02A8) +class AMaterialInstanceActor final : public AActor +{ +public: + TArray TargetActors; // 0x02A8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInstanceActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInstanceActor") + } + static class AMaterialInstanceActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AMaterialInstanceActor; + +// Class Engine.HapticFeedbackEffect_Curve +// 0x0110 (0x0138 - 0x0028) +class UHapticFeedbackEffect_Curve final : public UHapticFeedbackEffect_Base +{ +public: + struct FHapticFeedbackDetails_Curve HapticDetails; // 0x0028(0x0110)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HapticFeedbackEffect_Curve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HapticFeedbackEffect_Curve") + } + static class UHapticFeedbackEffect_Curve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHapticFeedbackEffect_Curve; + +// Class Engine.HapticFeedbackEffect_SoundWave +// 0x0020 (0x0048 - 0x0028) +class UHapticFeedbackEffect_SoundWave final : public UHapticFeedbackEffect_Base +{ +public: + class USoundWave* SoundWave; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseStereo; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x17]; // 0x0031(0x0017)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HapticFeedbackEffect_SoundWave") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HapticFeedbackEffect_SoundWave") + } + static class UHapticFeedbackEffect_SoundWave* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHapticFeedbackEffect_SoundWave; + +// Class Engine.HLODInstancedStaticMeshComponent +// 0x0000 (0x0910 - 0x0910) +class UHLODInstancedStaticMeshComponent final : public UInstancedStaticMeshComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODInstancedStaticMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODInstancedStaticMeshComponent") + } + static class UHLODInstancedStaticMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODInstancedStaticMeshComponent; + +// Class Engine.HierarchicalLODSetup +// 0x0038 (0x0060 - 0x0028) +class UHierarchicalLODSetup final : public UObject +{ +public: + TArray HierarchicalLODSetup; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TSoftObjectPtr OverrideBaseMaterial; // 0x0038(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HierarchicalLODSetup") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HierarchicalLODSetup") + } + static class UHierarchicalLODSetup* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHierarchicalLODSetup; + +// Class Engine.ComponentDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UComponentDelegateBinding final : public UDynamicBlueprintBinding +{ +public: + TArray ComponentDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentDelegateBinding") + } + static class UComponentDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentDelegateBinding; + +// Class Engine.HLODEngineSubsystem +// 0x0000 (0x0030 - 0x0030) +class UHLODEngineSubsystem final : public UEngineSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODEngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODEngineSubsystem") + } + static class UHLODEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODEngineSubsystem; + +// Class Engine.WorldPartitionHLODSourceActors +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionHLODSourceActors : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODSourceActors") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODSourceActors") + } + static class UWorldPartitionHLODSourceActors* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionHLODSourceActors; + +// Class Engine.WorldPartitionHLODSourceActorsFromCell +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionHLODSourceActorsFromCell final : public UWorldPartitionHLODSourceActors +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODSourceActorsFromCell") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODSourceActorsFromCell") + } + static class UWorldPartitionHLODSourceActorsFromCell* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionHLODSourceActorsFromCell; + +// Class Engine.WorldPartitionHLODSourceActorsFromLevel +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionHLODSourceActorsFromLevel final : public UWorldPartitionHLODSourceActors +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODSourceActorsFromLevel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODSourceActorsFromLevel") + } + static class UWorldPartitionHLODSourceActorsFromLevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionHLODSourceActorsFromLevel; + +// Class Engine.AnimationDataController +// 0x0000 (0x0000 - 0x0000) +class IAnimationDataController final +{ +public: + bool AddAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, bool bShouldTransact); + bool AddBoneCurve(class FName BoneName, bool bShouldTransact); + int32 AddBoneTrack(class FName BoneName, bool bShouldTransact); + bool AddCurve(const struct FAnimationCurveIdentifier& CurveId, int32 CurveFlags, bool bShouldTransact); + void CloseBracket(bool bShouldTransact); + bool DuplicateAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, const struct FAnimationAttributeIdentifier& NewAttributeIdentifier, bool bShouldTransact); + bool DuplicateCurve(const struct FAnimationCurveIdentifier& CopyCurveId, const struct FAnimationCurveIdentifier& NewCurveId, bool bShouldTransact); + void FindOrAddCurveNamesOnSkeleton(class USkeleton* Skeleton, ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact); + int32 InsertBoneTrack(class FName BoneName, int32 DesiredIndex, bool bShouldTransact); + void OpenBracket(const class FText& InTitle, bool bShouldTransact); + int32 RemoveAllAttributes(bool bShouldTransact); + int32 RemoveAllAttributesForBone(const class FName& BoneName, bool bShouldTransact); + void RemoveAllBoneTracks(bool bShouldTransact); + void RemoveAllCurvesOfType(ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact); + bool RemoveAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, bool bShouldTransact); + bool RemoveAttributeKey(const struct FAnimationAttributeIdentifier& AttributeIdentifier, float Time, bool bShouldTransact); + bool RemoveBoneTrack(class FName BoneName, bool bShouldTransact); + bool RemoveCurve(const struct FAnimationCurveIdentifier& CurveId, bool bShouldTransact); + bool RemoveCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, bool bShouldTransact); + bool RemoveTransformCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, bool bShouldTransact); + bool RenameCurve(const struct FAnimationCurveIdentifier& CurveToRenameId, const struct FAnimationCurveIdentifier& NewCurveId, bool bShouldTransact); + void Resize(float Length, float T0, float T1, bool bShouldTransact); + void ResizeInFrames(const struct FFrameNumber& NewLengthInFrames, const struct FFrameNumber& T0, const struct FFrameNumber& T1, bool bShouldTransact); + void ResizeNumberOfFrames(const struct FFrameNumber& NewLengthInFrames, const struct FFrameNumber& T0, const struct FFrameNumber& T1, bool bShouldTransact); + void ResizePlayLength(float NewLength, float T0, float T1, bool bShouldTransact); + bool ScaleCurve(const struct FAnimationCurveIdentifier& CurveId, float Origin, float Factor, bool bShouldTransact); + bool SetBoneTrackKeys(class FName BoneName, const TArray& PositionalKeys, const TArray& RotationalKeys, const TArray& ScalingKeys, bool bShouldTransact); + bool SetCurveColor(const struct FAnimationCurveIdentifier& CurveId, const struct FLinearColor& Color, bool bShouldTransact); + bool SetCurveComment(const struct FAnimationCurveIdentifier& CurveId, const class FString& Comment, bool bShouldTransact); + bool SetCurveFlag(const struct FAnimationCurveIdentifier& CurveId, EAnimAssetCurveFlags Flag, bool bState, bool bShouldTransact); + bool SetCurveFlags(const struct FAnimationCurveIdentifier& CurveId, int32 Flags_0, bool bShouldTransact); + bool SetCurveKey(const struct FAnimationCurveIdentifier& CurveId, const struct FRichCurveKey& Key, bool bShouldTransact); + bool SetCurveKeys(const struct FAnimationCurveIdentifier& CurveId, const TArray& CurveKeys, bool bShouldTransact); + void SetFrameRate(const struct FFrameRate& FrameRate, bool bShouldTransact); + void SetModel(TScriptInterface InModel); + void SetNumberOfFrames(const struct FFrameNumber& NewLengthInFrames, bool bShouldTransact); + void SetPlayLength(float Length, bool bShouldTransact); + bool SetTransformCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, const struct FTransform& Value, bool bShouldTransact); + bool SetTransformCurveKeys(const struct FAnimationCurveIdentifier& CurveId, const TArray& TransformValues, const TArray& TimeKeys, bool bShouldTransact); + void UpdateCurveNamesFromSkeleton(const class USkeleton* Skeleton, ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact); + + TScriptInterface GetModelInterface() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationDataController") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationDataController") + } + static class IAnimationDataController* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAnimationDataController; + +// Class Engine.AudioComponent +// 0x09F0 (0x0C20 - 0x0230) +class UAudioComponent : public USceneComponent +{ +public: + uint8 Pad_230[0x1B8]; // 0x0230(0x01B8)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundBase* Sound; // 0x03E8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray DefaultParameters; // 0x03F0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray InstanceParameters; // 0x0400(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + class USoundClass* SoundClassOverride; // 0x0410(0x0008)(Edit, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAutoDestroy : 1; // 0x0418(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStopWhenOwnerDestroyed : 1; // 0x0418(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldRemainActiveIfDropped : 1; // 0x0418(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowSpatialization : 1; // 0x0418(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideAttenuation : 1; // 0x0418(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideSubtitlePriority : 1; // 0x0418(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsUISound : 1; // 0x0418(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableLowPassFilter : 1; // 0x0418(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableHighPassFilter : 1; // 0x0419(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverridePriority : 1; // 0x0419(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSuppressSubtitles : 1; // 0x0419(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanPlayMultipleInstances : 1; // 0x0419(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableParameterUpdatesWhilePlaying : 1; // 0x0419(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_419_5 : 3; // 0x0419(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_41A_0 : 7; // 0x041A(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAutoManageAttachment : 1; // 0x041A(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41B[0x5]; // 0x041B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + class FName AudioComponentUserID; // 0x0420(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchModulationMin; // 0x0428(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchModulationMax; // 0x042C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeModulationMin; // 0x0430(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeModulationMax; // 0x0434(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0438(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EnvelopeFollowerAttackTime; // 0x043C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EnvelopeFollowerReleaseTime; // 0x0440(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Priority; // 0x0444(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubtitlePriority; // 0x0448(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44C[0x4]; // 0x044C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundEffectSourcePresetChain* SourceEffectChain; // 0x0450(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0458(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LowPassFilterFrequency; // 0x045C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HighPassFilterFrequency; // 0x0460(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_464[0x4]; // 0x0464(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundAttenuation* AttenuationSettings; // 0x0468(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoundAttenuationSettings AttenuationOverrides; // 0x0470(0x03D0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + class USoundConcurrency* ConcurrencySettings; // 0x0840(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSet ConcurrencySet; // 0x0848(0x0050)(Edit, BlueprintVisible, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_898[0xC]; // 0x0898(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + EAttachmentRule AutoAttachLocationRule; // 0x08A4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule AutoAttachRotationRule; // 0x08A5(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule AutoAttachScaleRule; // 0x08A6(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8A7[0x1]; // 0x08A7(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoundModulationDefaultRoutingSettings ModulationRouting; // 0x08A8(0x0168)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnAudioPlayStateChanged; // 0x0A10(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_A20[0x18]; // 0x0A20(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAudioVirtualizationChanged; // 0x0A38(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_A48[0x18]; // 0x0A48(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAudioFinished; // 0x0A60(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_A70[0x18]; // 0x0A70(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAudioPlaybackPercent; // 0x0A88(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_A98[0x18]; // 0x0A98(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAudioSingleEnvelopeValue; // 0x0AB0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_AC0[0x18]; // 0x0AC0(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnAudioMultiEnvelopeValue; // 0x0AD8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_AE8[0x18]; // 0x0AE8(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TDelegate& Subtitles, float CueDuration)> OnQueueSubtitles; // 0x0B00(0x0010)(ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B10[0x10]; // 0x0B10(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr AutoAttachParent; // 0x0B20(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, DisableEditOnTemplate, EditConst, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AutoAttachSocketName; // 0x0B28(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B30[0xF0]; // 0x0B30(0x00F0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddModulationRouting(const TSet& Modulators, const EModulationDestination Destination); + void AdjustAttenuation(const struct FSoundAttenuationSettings& InAttenuationSettings); + void AdjustVolume(float AdjustVolumeDuration, float AdjustVolumeLevel, const EAudioFaderCurve FadeCurve); + bool BP_GetAttenuationSettingsToApply(struct FSoundAttenuationSettings* OutAttenuationSettings); + void FadeIn(float FadeInDuration, float FadeVolumeLevel, float StartTime, const EAudioFaderCurve FadeCurve); + void FadeOut(float FadeOutDuration, float FadeVolumeLevel, const EAudioFaderCurve FadeCurve); + bool GetCookedEnvelopeData(float* OutEnvelopeData); + bool GetCookedEnvelopeDataForAllPlayingSounds(TArray* OutEnvelopeData); + bool GetCookedFFTData(const TArray& FrequenciesToGet, TArray* OutSoundWaveSpectralData); + bool GetCookedFFTDataForAllPlayingSounds(TArray* OutSoundWaveSpectralData); + TSet GetModulators(const EModulationDestination Destination); + void Play(float StartTime); + void PlayQuantized(const class UObject* WorldContextObject, class UQuartzClockHandle*& InClockHandle, struct FQuartzQuantizationBoundary& InQuantizationBoundary, const TDelegate& InDelegate, float InStartTime, float InFadeInDuration, float InFadeVolumeLevel, EAudioFaderCurve InFadeCurve); + void RemoveModulationRouting(const TSet& Modulators, const EModulationDestination Destination); + void SetAttenuationOverrides(const struct FSoundAttenuationSettings& InAttenuationOverrides); + void SetAttenuationSettings(class USoundAttenuation* InAttenuationSettings); + void SetAudioBusSendPostEffect(class UAudioBus* AudioBus, float AudioBusSendLevel); + void SetAudioBusSendPreEffect(class UAudioBus* AudioBus, float AudioBusSendLevel); + void SetBoolParameter(class FName InName, bool InBool); + void SetFloatParameter(class FName InName, float InFloat); + void SetHighPassFilterEnabled(bool InHighPassFilterEnabled); + void SetHighPassFilterFrequency(float InHighPassFilterFrequency); + void SetIntParameter(class FName InName, int32 inInt); + void SetLowPassFilterEnabled(bool InLowPassFilterEnabled); + void SetLowPassFilterFrequency(float InLowPassFilterFrequency); + void SetModulationRouting(const TSet& Modulators, const EModulationDestination Destination, const EModulationRouting RoutingMethod); + void SetOutputToBusOnly(bool bInOutputToBusOnly); + void SetOverrideAttenuation(bool bInOverrideAttenuation); + void SetPaused(bool bPause); + void SetPitchMultiplier(float NewPitchMultiplier); + void SetSound(class USoundBase* NewSound); + void SetSourceBusSendPostEffect(class USoundSourceBus* SoundSourceBus, float SourceBusSendLevel); + void SetSourceBusSendPreEffect(class USoundSourceBus* SoundSourceBus, float SourceBusSendLevel); + void SetSubmixSend(class USoundSubmixBase* Submix, float SendLevel); + void SetUISound(bool bInUISound); + void SetVolumeMultiplier(float NewVolumeMultiplier); + void SetWaveParameter(class FName InName, class USoundWave* InWave); + void Stop(); + void StopDelayed(float DelayTime); + + EAudioComponentPlayState GetPlayState() const; + bool HasCookedAmplitudeEnvelopeData() const; + bool HasCookedFFTData() const; + bool IsPlaying() const; + bool IsVirtualized() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioComponent") + } + static class UAudioComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioComponent; + +// Class Engine.AssetRegistryTagProviderInterface +// 0x0000 (0x0000 - 0x0000) +class IAssetRegistryTagProviderInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetRegistryTagProviderInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetRegistryTagProviderInterface") + } + static class IAssetRegistryTagProviderInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAssetRegistryTagProviderInterface; + +// Class Engine.InGameAdManager +// 0x0028 (0x0060 - 0x0038) +class UInGameAdManager final : public UPlatformInterfaceBase +{ +public: + uint8 bShouldPauseWhileAdOpen : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> ClickedBannerDelegates; // 0x0040(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray> ClosedAdDelegates; // 0x0050(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InGameAdManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InGameAdManager") + } + static class UInGameAdManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInGameAdManager; + +// Class Engine.Interface_ActorSubobject +// 0x0000 (0x0000 - 0x0000) +class IInterface_ActorSubobject final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_ActorSubobject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_ActorSubobject") + } + static class IInterface_ActorSubobject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_ActorSubobject; + +// Class Engine.ShapeComponent +// 0x0020 (0x0510 - 0x04F0) +#pragma pack(push, 0x1) +class alignas(0x10) UShapeComponent : public UPrimitiveComponent +{ +public: + class UBodySetup* ShapeBodySetup; // 0x04E8(0x0008)(ZeroConstructor, Transient, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ShapeColor; // 0x04F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDrawOnlyIfSelected : 1; // 0x04F4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldCollideWhenPlacing : 1; // 0x04F4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDynamicObstacle : 1; // 0x04F4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseSystemDefaultObstacleAreaClass : 1; // 0x04F4(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_4F5[0x3]; // 0x04F5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf AreaClassOverride; // 0x04F8(0x0008)(Edit, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LineThickness; // 0x0500(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_504[0x4]; // 0x0504(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetLineThickness(float Thickness); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ShapeComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ShapeComponent") + } + static class UShapeComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UShapeComponent; + +// Class Engine.BoxComponent +// 0x0010 (0x0520 - 0x0510) +class UBoxComponent : public UShapeComponent +{ +public: + struct FVector BoxExtent; // 0x0508(0x0018)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + void SetBoxExtent(const struct FVector& InBoxExtent, bool bUpdateOverlaps); + + struct FVector GetScaledBoxExtent() const; + struct FVector GetUnscaledBoxExtent() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoxComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoxComponent") + } + static class UBoxComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBoxComponent; + +// Class Engine.InputDeviceLibrary +// 0x0000 (0x0028 - 0x0028) +class UInputDeviceLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool EqualEqual_InputDeviceId(const struct FInputDeviceId& A, const struct FInputDeviceId& B); + static bool EqualEqual_PlatformUserId(const struct FPlatformUserId& A, const struct FPlatformUserId& B); + static int32 GetAllActiveUsers(TArray* OutUsers); + static int32 GetAllConnectedInputDevices(TArray* OutInputDevices); + static int32 GetAllInputDevices(TArray* OutInputDevices); + static int32 GetAllInputDevicesForUser(const struct FPlatformUserId& UserId, TArray* OutInputDevices); + static struct FInputDeviceId GetDefaultInputDevice(); + static EInputDeviceConnectionState GetInputDeviceConnectionState(const struct FInputDeviceId& DeviceID); + static class APlayerController* GetPlayerControllerFromInputDevice(const struct FInputDeviceId& DeviceID); + static class APlayerController* GetPlayerControllerFromPlatformUser(const struct FPlatformUserId& UserId); + static struct FInputDeviceId GetPrimaryInputDeviceForUser(const struct FPlatformUserId& UserId); + static struct FPlatformUserId GetPrimaryPlatformUser(); + static struct FPlatformUserId GetUserForInputDevice(const struct FInputDeviceId& DeviceID); + static struct FPlatformUserId GetUserForUnpairedInputDevices(); + static struct FInputDeviceId InputDeviceId_None(); + static bool IsDevicePropertyHandleValid(const struct FInputDevicePropertyHandle& InHandle); + static bool IsInputDeviceMappedToUnpairedUser(const struct FInputDeviceId& InputDevice); + static bool IsUnpairedUserId(const struct FPlatformUserId& PlatformId); + static bool IsValidInputDevice(const struct FInputDeviceId& DeviceID); + static bool IsValidPlatformId(const struct FPlatformUserId& UserId); + static bool NotEqual_InputDeviceId(const struct FInputDeviceId& A, const struct FInputDeviceId& B); + static bool NotEqual_PlatformUserId(const struct FPlatformUserId& A, const struct FPlatformUserId& B); + static struct FPlatformUserId PlatformUserId_None(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceLibrary") + } + static class UInputDeviceLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceLibrary; + +// Class Engine.Interface_AssetUserData +// 0x0000 (0x0000 - 0x0000) +class IInterface_AssetUserData final +{ +public: + bool AddAssetUserDataOfClass(TSubclassOf InUserDataClass); + class UAssetUserData* GetAssetUserDataOfClass(TSubclassOf InUserDataClass); + bool HasAssetUserDataOfClass(TSubclassOf InUserDataClass); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_AssetUserData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_AssetUserData") + } + static class IInterface_AssetUserData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_AssetUserData; + +// Class Engine.Interface_AsyncCompilation +// 0x0000 (0x0000 - 0x0000) +class IInterface_AsyncCompilation final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_AsyncCompilation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_AsyncCompilation") + } + static class IInterface_AsyncCompilation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_AsyncCompilation; + +// Class Engine.BoneReferenceSkeletonProvider +// 0x0000 (0x0000 - 0x0000) +class IBoneReferenceSkeletonProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoneReferenceSkeletonProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoneReferenceSkeletonProvider") + } + static class IBoneReferenceSkeletonProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IBoneReferenceSkeletonProvider; + +// Class Engine.Interface_CollisionDataProvider +// 0x0000 (0x0000 - 0x0000) +class IInterface_CollisionDataProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_CollisionDataProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_CollisionDataProvider") + } + static class IInterface_CollisionDataProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_CollisionDataProvider; + +// Class Engine.Interface_PreviewMeshProvider +// 0x0000 (0x0000 - 0x0000) +class IInterface_PreviewMeshProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Interface_PreviewMeshProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Interface_PreviewMeshProvider") + } + static class IInterface_PreviewMeshProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IInterface_PreviewMeshProvider; + +// Class Engine.PhysicsComponent +// 0x0000 (0x0000 - 0x0000) +class IPhysicsComponent final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsComponent") + } + static class IPhysicsComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IPhysicsComponent; + +// Class Engine.ISMPartitionInstanceManager +// 0x0000 (0x0000 - 0x0000) +class IISMPartitionInstanceManager final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ISMPartitionInstanceManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ISMPartitionInstanceManager") + } + static class IISMPartitionInstanceManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IISMPartitionInstanceManager; + +// Class Engine.ViewportSelectableObject +// 0x0000 (0x0000 - 0x0000) +class IViewportSelectableObject final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ViewportSelectableObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ViewportSelectableObject") + } + static class IViewportSelectableObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IViewportSelectableObject; + +// Class Engine.WorldPartitionObjectResolver +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionObjectResolver final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionObjectResolver") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionObjectResolver") + } + static class IWorldPartitionObjectResolver* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionObjectResolver; + +// Class Engine.KismetTextLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetTextLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class FText AsCurrency_Float(float Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits, const class FString& CurrencyCode); + static class FText AsCurrency_Integer(int32 Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits, const class FString& CurrencyCode); + static class FText AsCurrencyBase(int32 BaseValue, const class FString& CurrencyCode); + static class FText AsDate_DateTime(const struct FDateTime& InDateTime, EDateTimeStyle InDateStyle); + static class FText AsDateTime_DateTime(const struct FDateTime& In, EDateTimeStyle InDateStyle, EDateTimeStyle InTimeStyle); + static class FText AsMemory(int64 NumBytes, EMemoryUnitStandard UnitStandard, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits); + static class FText AsPercent_Float(float Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits); + static class FText AsTime_DateTime(const struct FDateTime& In, EDateTimeStyle InTimeStyle); + static class FText AsTimespan_Timespan(const struct FTimespan& InTimespan); + static class FText AsTimeZoneDate_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InDateStyle); + static class FText AsTimeZoneDateTime_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InDateStyle, EDateTimeStyle InTimeStyle); + static class FText AsTimeZoneTime_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InTimeStyle); + static class FText Conv_BoolToText(bool InBool); + static class FText Conv_ByteToText(uint8 Value); + static class FText Conv_ColorToText(const struct FLinearColor& InColor); + static class FText Conv_DoubleToText(double Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits); + static class FText Conv_Int64ToText(int64 Value, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits); + static class FText Conv_IntToText(int32 Value, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits); + static class FText Conv_NameToText(class FName InName); + static class FText Conv_NumericPropertyToText(const int32& Value); + static class FText Conv_ObjectToText(class UObject* InObj); + static class FText Conv_RotatorToText(const struct FRotator& InRot); + static class FText Conv_StringToText(const class FString& InString); + static class FString Conv_TextToString(const class FText& InText); + static class FText Conv_TransformToText(const struct FTransform& InTrans); + static class FText Conv_Vector2dToText(const struct FVector2D& InVec); + static class FText Conv_VectorToText(const struct FVector& InVec); + static bool EditTextSourceString(class UObject* TextOwner, class FText& Text, const class FString& SourceString); + static bool EqualEqual_IgnoreCase_TextText(const class FText& A, const class FText& B); + static bool EqualEqual_TextText(const class FText& A, const class FText& B); + static bool FindTextInLocalizationTable(const class FString& NameSpace, const class FString& Key, class FText* OutText, const class FString& SourceString); + static class FText Format(const class FText& InPattern, const TArray& InArgs); + static class FText GetEmptyText(); + static bool GetTextId(const class FText& Text, class FString* OutNamespace, class FString* OutKey); + static class FString GetTextSourceString(const class FText& Text); + static void IsPolyglotDataValid(const struct FPolyglotTextData& PolyglotData, bool* IsValid, class FText* ErrorMessage); + static class FText MakeInvariantText(const class FString& InString); + static bool NotEqual_IgnoreCase_TextText(const class FText& A, const class FText& B); + static bool NotEqual_TextText(const class FText& A, const class FText& B); + static class FText PolyglotDataToText(const struct FPolyglotTextData& PolyglotData); + static bool StringTableIdAndKeyFromText(const class FText& Text, class FName* OutTableId, class FString* OutKey); + static class FText TextFromStringTable(const class FName TableId, const class FString& Key); + static bool TextIsCultureInvariant(const class FText& InText); + static bool TextIsEmpty(const class FText& InText); + static bool TextIsFromStringTable(const class FText& Text); + static bool TextIsTransient(const class FText& InText); + static class FText TextToLower(const class FText& InText); + static class FText TextToUpper(const class FText& InText); + static class FText TextTrimPreceding(const class FText& InText); + static class FText TextTrimPrecedingAndTrailing(const class FText& InText); + static class FText TextTrimTrailing(const class FText& InText); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetTextLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetTextLibrary") + } + static class UKismetTextLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetTextLibrary; + +// Class Engine.ActorDescContainerInstance +// 0x0000 (0x0028 - 0x0028) +class UActorDescContainerInstance : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorDescContainerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorDescContainerInstance") + } + static class UActorDescContainerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorDescContainerInstance; + +// Class Engine.LocalMessage +// 0x0000 (0x0028 - 0x0028) +class ULocalMessage : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalMessage") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalMessage") + } + static class ULocalMessage* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULocalMessage; + +// Class Engine.LevelInstanceContainerInstance +// 0x0000 (0x0028 - 0x0028) +class ULevelInstanceContainerInstance final : public UActorDescContainerInstance +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceContainerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceContainerInstance") + } + static class ULevelInstanceContainerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstanceContainerInstance; + +// Class Engine.ActorDescContainer +// 0x0000 (0x0028 - 0x0028) +class UActorDescContainer : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorDescContainer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorDescContainer") + } + static class UActorDescContainer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorDescContainer; + +// Class Engine.LevelInstancePropertyOverrideContainer +// 0x0000 (0x0028 - 0x0028) +class ULevelInstancePropertyOverrideContainer final : public UActorDescContainer +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstancePropertyOverrideContainer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstancePropertyOverrideContainer") + } + static class ULevelInstancePropertyOverrideContainer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstancePropertyOverrideContainer; + +// Class Engine.WorldPartitionPropertyOverridePolicy +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionPropertyOverridePolicy : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionPropertyOverridePolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionPropertyOverridePolicy") + } + static class UWorldPartitionPropertyOverridePolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionPropertyOverridePolicy; + +// Class Engine.LevelInstancePropertyOverridePolicy +// 0x0000 (0x0028 - 0x0028) +class ULevelInstancePropertyOverridePolicy : public UWorldPartitionPropertyOverridePolicy +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstancePropertyOverridePolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstancePropertyOverridePolicy") + } + static class ULevelInstancePropertyOverridePolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstancePropertyOverridePolicy; + +// Class Engine.PoseWatch +// 0x0000 (0x0028 - 0x0028) +class UPoseWatch final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseWatch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseWatch") + } + static class UPoseWatch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseWatch; + +// Class Engine.LevelInstancePropertyOverrideSamplePolicy +// 0x0000 (0x0028 - 0x0028) +class ULevelInstancePropertyOverrideSamplePolicy final : public ULevelInstancePropertyOverridePolicy +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstancePropertyOverrideSamplePolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstancePropertyOverrideSamplePolicy") + } + static class ULevelInstancePropertyOverrideSamplePolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstancePropertyOverrideSamplePolicy; + +// Class Engine.LevelInstanceSettings +// 0x0010 (0x0038 - 0x0028) +class ULevelInstanceSettings final : public UObject +{ +public: + class FString PropertyOverridePolicyClass; // 0x0028(0x0010)(ZeroConstructor, Config, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceSettings") + } + static class ULevelInstanceSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstanceSettings; + +// Class Engine.World +// 0x08E0 (0x0908 - 0x0028) +class UWorld final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class ULevel* PersistentLevel; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UNetDriver* NetDriver; // 0x0038(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULineBatchComponent* LineBatcher; // 0x0040(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULineBatchComponent* PersistentLineBatcher; // 0x0048(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULineBatchComponent* ForegroundLineBatcher; // 0x0050(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameNetworkManager* NetworkManager; // 0x0058(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsCollisionHandler* PhysicsCollisionHandler; // 0x0060(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ExtraReferencedObjects; // 0x0068(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray PerModuleDataObjects; // 0x0078(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray StreamingLevels; // 0x0088(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + struct FStreamingLevelsToConsider StreamingLevelsToConsider; // 0x0098(0x0028)(Transient, DuplicateTransient, NativeAccessSpecifierPrivate) + class AServerStreamingLevelsVisibility* ServerStreamingLevelsVisibility; // 0x00C0(0x0008)(ZeroConstructor, Transient, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FString StreamingLevelsPrefix; // 0x00C8(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D8[0x8]; // 0x00D8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class ULevel* CurrentLevelPendingVisibility; // 0x00E0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class ULevel* CurrentLevelPendingInvisibility; // 0x00E8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDemoNetDriver* DemoNetDriver; // 0x00F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AParticleEventManager* MyParticleEventManager; // 0x00F8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APhysicsVolume* DefaultPhysicsVolume; // 0x0100(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_108[0x36]; // 0x0108(0x0036)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_13E_0 : 2; // 0x013E(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAreConstraintsDirty : 1; // 0x013E(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_13F[0x11]; // 0x013F(0x0011)(Fixing Size After Last Property [ Dumper-7 ]) + class UNavigationSystemBase* NavigationSystem; // 0x0150(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AGameModeBase* AuthorityGameMode; // 0x0158(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AGameStateBase* GameState; // 0x0160(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UAISystemBase* AISystem; // 0x0168(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UAvoidanceManager* AvoidanceManager; // 0x0170(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Levels; // 0x0178(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray LevelCollections; // 0x0188(0x0010)(ZeroConstructor, Transient, NonTransactional, NativeAccessSpecifierPrivate) + uint8 Pad_198[0x40]; // 0x0198(0x0040)(Fixing Size After Last Property [ Dumper-7 ]) + class UGameInstance* OwningGameInstance; // 0x01D8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray ParameterCollectionInstances; // 0x01E0(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + class UCanvas* CanvasForRenderingToTarget; // 0x01F0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UCanvas* CanvasForDrawMaterialToRenderTarget; // 0x01F8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_200[0x70]; // 0x0200(0x0070)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicsFieldComponent* PhysicsField; // 0x0270(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSet ComponentsThatNeedPreEndOfFrameSync; // 0x0278(0x0050)(ExportObject, Transient, NonTransactional, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray ComponentsThatNeedEndOfFrameUpdate; // 0x02C8(0x0010)(ExportObject, ZeroConstructor, Transient, NonTransactional, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray ComponentsThatNeedEndOfFrameUpdate_OnGameThread; // 0x02D8(0x0010)(ExportObject, ZeroConstructor, Transient, NonTransactional, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_2E8[0x438]; // 0x02E8(0x0438)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorldComposition* WorldComposition; // 0x0720(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UContentBundleManager* ContentBundleManager; // 0x0728(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_730[0xC0]; // 0x0730(0x00C0)(Fixing Size After Last Property [ Dumper-7 ]) + struct FWorldPSCPool PSCPool; // 0x07F0(0x0058)(ContainsInstancedReference, NativeAccessSpecifierPrivate) + uint8 Pad_848[0xC0]; // 0x0848(0x00C0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UWorld* GetWorld(); + + void HandleTimelineScrubbed(); + class AWorldSettings* K2_GetWorldSettings(); + + class UDataLayerManager* GetDataLayerManager() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("World") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"World") + } + static class UWorld* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorld; + +// Class Engine.LevelStreamingAlwaysLoaded +// 0x0000 (0x01B0 - 0x01B0) +class ULevelStreamingAlwaysLoaded : public ULevelStreaming +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingAlwaysLoaded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingAlwaysLoaded") + } + static class ULevelStreamingAlwaysLoaded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingAlwaysLoaded; + +// Class Engine.LevelStreamingDynamic +// 0x0010 (0x01C0 - 0x01B0) +#pragma pack(push, 0x1) +class alignas(0x10) ULevelStreamingDynamic : public ULevelStreaming +{ +public: + uint8 bInitiallyLoaded : 1; // 0x01B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInitiallyVisible : 1; // 0x01B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1B1[0x7]; // 0x01B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class ULevelStreamingDynamic* LoadLevelInstance(class UObject* WorldContextObject, const class FString& LevelName, const struct FVector& Location, const struct FRotator& Rotation, bool* bOutSuccess, const class FString& OptionalLevelNameOverride, TSubclassOf OptionalLevelStreamingClass, bool bLoadAsTempPackage); + static class ULevelStreamingDynamic* LoadLevelInstanceBySoftObjectPtr(class UObject* WorldContextObject, TSoftObjectPtr Level, const struct FVector& Location, const struct FRotator& Rotation, bool* bOutSuccess, const class FString& OptionalLevelNameOverride, TSubclassOf OptionalLevelStreamingClass, bool bLoadAsTempPackage); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingDynamic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingDynamic") + } + static class ULevelStreamingDynamic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_ULevelStreamingDynamic; + +// Class Engine.LevelStreamingPersistent +// 0x0000 (0x01B0 - 0x01B0) +class ULevelStreamingPersistent final : public ULevelStreaming +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingPersistent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingPersistent") + } + static class ULevelStreamingPersistent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingPersistent; + +// Class Engine.LevelActorContainer +// 0x0010 (0x0038 - 0x0028) +class ULevelActorContainer final : public UObject +{ +public: + TArray Actors; // 0x0028(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelActorContainer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelActorContainer") + } + static class ULevelActorContainer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelActorContainer; + +// Class Engine.LevelStreamingVolume +// 0x0018 (0x02F8 - 0x02E0) +class ALevelStreamingVolume final : public AVolume +{ +public: + TArray StreamingLevelNames; // 0x02E0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPublic) + uint8 bEditorPreVisOnly : 1; // 0x02F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisabled : 1; // 0x02F0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2F1[0x3]; // 0x02F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EStreamingVolumeUsage StreamingUsage; // 0x02F4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2F5[0x3]; // 0x02F5(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingVolume") + } + static class ALevelStreamingVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelStreamingVolume; + +// Class Engine.LightComponentBase +// 0x0050 (0x0280 - 0x0230) +#pragma pack(push, 0x1) +class alignas(0x10) ULightComponentBase : public USceneComponent +{ +public: + struct FGuid OriginalLightGuid; // 0x0230(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid LightGuid; // 0x0240(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Brightness; // 0x0250(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Intensity; // 0x0254(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor LightColor; // 0x0258(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAffectsWorld : 1; // 0x025C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastShadows : 1; // 0x025C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastStaticShadows : 1; // 0x025C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastDynamicShadows : 1; // 0x025C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectTranslucentLighting : 1; // 0x025C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTransmission : 1; // 0x025C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastVolumetricShadow : 1; // 0x025C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDeepShadow : 1; // 0x025C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastRaytracedShadow : 1; // 0x025D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_25E[0x2]; // 0x025E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + ECastRayTracedShadow CastRaytracedShadow; // 0x0260(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_261[0x3]; // 0x0261(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bAffectReflection : 1; // 0x0264(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectGlobalIllumination : 1; // 0x0264(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_265[0x3]; // 0x0265(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DeepShadowLayerDistribution; // 0x0268(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IndirectLightingIntensity; // 0x026C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricScatteringIntensity; // 0x0270(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SamplesPerPixel; // 0x0274(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + void SetAffectGlobalIllumination(bool bNewValue); + void SetAffectReflection(bool bNewValue); + void SetCastDeepShadow(bool bNewValue); + void SetCastRaytracedShadow(bool bNewValue); + void SetCastRaytracedShadows(ECastRayTracedShadow bNewValue); + void SetCastShadows(bool bNewValue); + void SetCastVolumetricShadow(bool bNewValue); + void SetSamplesPerPixel(int32 NewValue); + + struct FLinearColor GetLightColor() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightComponentBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightComponentBase") + } + static class ULightComponentBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_ULightComponentBase; + +// Class Engine.LightMapTexture2D +// 0x0008 (0x0158 - 0x0150) +class ULightMapTexture2D final : public UTexture2D +{ +public: + uint8 Pad_150[0x8]; // 0x0150(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightMapTexture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightMapTexture2D") + } + static class ULightMapTexture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightMapTexture2D; + +// Class Engine.LevelInstanceEditorInstanceActor +// 0x0000 (0x02A8 - 0x02A8) +class ALevelInstanceEditorInstanceActor final : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceEditorInstanceActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceEditorInstanceActor") + } + static class ALevelInstanceEditorInstanceActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelInstanceEditorInstanceActor; + +// Class Engine.LightmassPortal +// 0x0008 (0x02B0 - 0x02A8) +class ALightmassPortal final : public AActor +{ +public: + class ULightmassPortalComponent* PortalComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmassPortal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmassPortal") + } + static class ALightmassPortal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALightmassPortal; + +// Class Engine.LightmassPortalComponent +// 0x0010 (0x0240 - 0x0230) +class ULightmassPortalComponent final : public USceneComponent +{ +public: + class UBoxComponent* PreviewBox; // 0x0230(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_238[0x8]; // 0x0238(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmassPortalComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmassPortalComponent") + } + static class ULightmassPortalComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightmassPortalComponent; + +// Class Engine.MapBuildDataActor +// 0x0068 (0x0310 - 0x02A8) +class AMapBuildDataActor final : public AActor +{ +public: + class UMapBuildDataRegistry* BuildData; // 0x02A8(0x0008)(ZeroConstructor, NoDestructor, Protected, NonPIEDuplicateTransient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class AActor* ForceLinkToActor; // 0x02B0(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FBox ActorBounds; // 0x02B8(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + class FName CellPackage; // 0x02F0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FGuid LevelBuildDataId; // 0x02F8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_308[0x8]; // 0x0308(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MapBuildDataActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MapBuildDataActor") + } + static class AMapBuildDataActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AMapBuildDataActor; + +// Class Engine.LevelStreamingLevelInstanceEditorPropertyOverride +// 0x0000 (0x01C0 - 0x01C0) +class ULevelStreamingLevelInstanceEditorPropertyOverride final : public ULevelStreamingDynamic +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingLevelInstanceEditorPropertyOverride") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingLevelInstanceEditorPropertyOverride") + } + static class ULevelStreamingLevelInstanceEditorPropertyOverride* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingLevelInstanceEditorPropertyOverride; + +// Class Engine.MapBuildDataRegistry +// 0x0288 (0x02B0 - 0x0028) +class UMapBuildDataRegistry final : public UObject +{ +public: + ELightingBuildQuality LevelLightingQuality; // 0x0028(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x287]; // 0x0029(0x0287)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MapBuildDataRegistry") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MapBuildDataRegistry") + } + static class UMapBuildDataRegistry* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMapBuildDataRegistry; + +// Class Engine.MaterialExpressionAbs +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionAbs final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAbs") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAbs") + } + static class UMaterialExpressionAbs* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAbs; + +// Class Engine.MaterialExpressionAbsorptionMediumMaterialOutput +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionAbsorptionMediumMaterialOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput TransmittanceColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAbsorptionMediumMaterialOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAbsorptionMediumMaterialOutput") + } + static class UMaterialExpressionAbsorptionMediumMaterialOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAbsorptionMediumMaterialOutput; + +// Class Engine.MaterialExpressionRerouteBase +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionRerouteBase : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRerouteBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRerouteBase") + } + static class UMaterialExpressionRerouteBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRerouteBase; + +// Class Engine.MaterialExpressionNamedRerouteBase +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionNamedRerouteBase : public UMaterialExpressionRerouteBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNamedRerouteBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNamedRerouteBase") + } + static class UMaterialExpressionNamedRerouteBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNamedRerouteBase; + +// Class Engine.MaterialExpressionNamedRerouteDeclaration +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionNamedRerouteDeclaration final : public UMaterialExpressionNamedRerouteBase +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class FName Name_0; // 0x00D8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor NodeColor; // 0x00E0(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid VariableGUID; // 0x00F0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNamedRerouteDeclaration") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNamedRerouteDeclaration") + } + static class UMaterialExpressionNamedRerouteDeclaration* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNamedRerouteDeclaration; + +// Class Engine.TextureRenderTarget +// 0x0008 (0x0138 - 0x0130) +class UTextureRenderTarget : public UTexture +{ +public: + float TargetGamma; // 0x0130(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureRenderTarget") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureRenderTarget") + } + static class UTextureRenderTarget* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureRenderTarget; + +// Class Engine.TextureRenderTarget2D +// 0x0028 (0x0160 - 0x0138) +class UTextureRenderTarget2D : public UTextureRenderTarget +{ +public: + int32 SizeX; // 0x0138(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x013C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ClearColor; // 0x0140(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressX; // 0x0150(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressY; // 0x0151(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bForceLinearGamma : 1; // 0x0152(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_152_1 : 1; // 0x0152(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bHDR : 1; // 0x0152(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGPUSharedFlag : 1; // 0x0152(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ETextureRenderTargetFormat RenderTargetFormat; // 0x0153(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSupportsUAV : 1; // 0x0154(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoGenerateMips : 1; // 0x0154(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ETextureFilter MipsSamplerFilter; // 0x0155(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress MipsAddressU; // 0x0156(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress MipsAddressV; // 0x0157(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat OverrideFormat; // 0x0158(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x7]; // 0x0159(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureRenderTarget2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureRenderTarget2D") + } + static class UTextureRenderTarget2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureRenderTarget2D; + +// Class Engine.MaterialExpressionSamplePhysicsVectorField +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSamplePhysicsVectorField final : public UMaterialExpression +{ +public: + struct FExpressionInput WorldPosition; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldVectorType FieldTarget; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSamplePhysicsVectorField") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSamplePhysicsVectorField") + } + static class UMaterialExpressionSamplePhysicsVectorField* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSamplePhysicsVectorField; + +// Class Engine.MaterialExpressionTextureSampleParameter2D +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureSampleParameter2D : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameter2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameter2D") + } + static class UMaterialExpressionTextureSampleParameter2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameter2D; + +// Class Engine.MaterialExpressionAntialiasedTextureMask +// 0x0008 (0x0228 - 0x0220) +class UMaterialExpressionAntialiasedTextureMask final : public UMaterialExpressionTextureSampleParameter2D +{ +public: + float Threshold; // 0x0220(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureColorChannel Channel; // 0x0224(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_225[0x3]; // 0x0225(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAntialiasedTextureMask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAntialiasedTextureMask") + } + static class UMaterialExpressionAntialiasedTextureMask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAntialiasedTextureMask; + +// Class Engine.WorldComposition +// 0x0040 (0x0068 - 0x0028) +class UWorldComposition final : public UObject +{ +public: + uint8 Pad_28[0x20]; // 0x0028(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TilesStreaming; // 0x0048(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + double TilesStreamingTimeThreshold; // 0x0058(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoadAllTilesDuringCinematic; // 0x0060(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRebaseOriginIn3DSpace; // 0x0061(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float RebaseOriginDistance; // 0x0064(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldComposition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldComposition") + } + static class UWorldComposition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldComposition; + +// Class Engine.MaterialExpressionRotator +// 0x0060 (0x0110 - 0x00B0) +class UMaterialExpressionRotator final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinate; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Time; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float CenterX; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CenterY; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Speed; // 0x0108(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ConstCoordinate; // 0x010C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRotator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRotator") + } + static class UMaterialExpressionRotator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRotator; + +// Class Engine.MaterialExpressionAppendVector +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionAppendVector final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAppendVector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAppendVector") + } + static class UMaterialExpressionAppendVector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAppendVector; + +// Class Engine.WorldPartitionHLOD +// 0x0018 (0x02C0 - 0x02A8) +class AWorldPartitionHLOD final : public AActor +{ +public: + uint32 LODLevel; // 0x02A8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bRequireWarmup; // 0x02AC(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2AD[0x3]; // 0x02AD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid SourceCellGuid; // 0x02B0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLOD") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLOD") + } + static class AWorldPartitionHLOD* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldPartitionHLOD; + +// Class Engine.MaterialExpressionArccosineFast +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArccosineFast final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArccosineFast") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArccosineFast") + } + static class UMaterialExpressionArccosineFast* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArccosineFast; + +// Class Engine.MaterialExpressionArcsine +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArcsine final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArcsine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArcsine") + } + static class UMaterialExpressionArcsine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArcsine; + +// Class Engine.MaterialExpressionObjectLocalBounds +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionObjectLocalBounds final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionObjectLocalBounds") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionObjectLocalBounds") + } + static class UMaterialExpressionObjectLocalBounds* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionObjectLocalBounds; + +// Class Engine.MaterialExpressionArcsineFast +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArcsineFast final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArcsineFast") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArcsineFast") + } + static class UMaterialExpressionArcsineFast* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArcsineFast; + +// Class Engine.MaterialExpressionArctangent +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArctangent final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArctangent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArctangent") + } + static class UMaterialExpressionArctangent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArctangent; + +// Class Engine.CollisionProfile +// 0x0138 (0x0170 - 0x0038) +class UCollisionProfile final : public UDeveloperSettings +{ +public: + TArray Profiles; // 0x0038(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPrivate) + TArray DefaultChannelResponses; // 0x0048(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPrivate) + TArray EditProfiles; // 0x0058(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPrivate) + TArray ProfileRedirects; // 0x0068(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPrivate) + TArray CollisionChannelRedirects; // 0x0078(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPrivate) + uint8 Pad_88[0xE8]; // 0x0088(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CollisionProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CollisionProfile") + } + static class UCollisionProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCollisionProfile; + +// Class Engine.MaterialExpressionNaniteReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionNaniteReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Nanite; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNaniteReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNaniteReplace") + } + static class UMaterialExpressionNaniteReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNaniteReplace; + +// Class Engine.MaterialExpressionArctangent2 +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionArctangent2 final : public UMaterialExpression +{ +public: + struct FExpressionInput Y; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput X; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArctangent2") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArctangent2") + } + static class UMaterialExpressionArctangent2* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArctangent2; + +// Class Engine.MaterialExpressionArctangent2Fast +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionArctangent2Fast final : public UMaterialExpression +{ +public: + struct FExpressionInput Y; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput X; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArctangent2Fast") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArctangent2Fast") + } + static class UMaterialExpressionArctangent2Fast* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArctangent2Fast; + +// Class Engine.WorldPartitionHLODModifier +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionHLODModifier final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODModifier") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODModifier") + } + static class UWorldPartitionHLODModifier* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionHLODModifier; + +// Class Engine.MaterialExpressionModulo +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionModulo final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionModulo") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionModulo") + } + static class UMaterialExpressionModulo* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionModulo; + +// Class Engine.MaterialExpressionArctangentFast +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionArctangentFast final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionArctangentFast") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionArctangentFast") + } + static class UMaterialExpressionArctangentFast* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionArctangentFast; + +// Class Engine.MaterialExpressionAtmosphericFogColor +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionAtmosphericFogColor final : public UMaterialExpression +{ +public: + struct FExpressionInput WorldPosition; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAtmosphericFogColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAtmosphericFogColor") + } + static class UMaterialExpressionAtmosphericFogColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAtmosphericFogColor; + +// Class Engine.DataDrivenConsoleVariableSettings +// 0x0038 (0x0070 - 0x0038) +class UDataDrivenConsoleVariableSettings final : public UDeveloperSettings +{ +public: + uint8 Pad_38[0x18]; // 0x0038(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CVarsArray; // 0x0050(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_60[0x10]; // 0x0060(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataDrivenConsoleVariableSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataDrivenConsoleVariableSettings") + } + static class UDataDrivenConsoleVariableSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataDrivenConsoleVariableSettings; + +// Class Engine.RuntimeHashExternalStreamingObjectBase +// 0x0198 (0x01C0 - 0x0028) +class URuntimeHashExternalStreamingObjectBase : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TMap SubObjectsToCellRemapping; // 0x0038(0x0050)(NativeAccessSpecifierPublic) + struct FWorldPartitionRuntimeContainerResolver ContainerResolver; // 0x0088(0x0058)(NativeAccessSpecifierPublic) + uint8 Pad_E0[0x10]; // 0x00E0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftObjectPtr OuterWorld; // 0x00F0(0x0028)(Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TMap CellToStreamingData; // 0x0118(0x0050)(Protected, NativeAccessSpecifierProtected) + TSet DataLayerInstances; // 0x0168(0x0050)(Protected, UObjectWrapper, NativeAccessSpecifierProtected) + class UExternalDataLayerInstance* RootExternalDataLayerInstance; // 0x01B8(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeHashExternalStreamingObjectBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeHashExternalStreamingObjectBase") + } + static class URuntimeHashExternalStreamingObjectBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeHashExternalStreamingObjectBase; + +// Class Engine.RuntimeSpatialHashExternalStreamingObject +// 0x0010 (0x01D0 - 0x01C0) +class URuntimeSpatialHashExternalStreamingObject final : public URuntimeHashExternalStreamingObjectBase +{ +public: + TArray StreamingGrids; // 0x01C0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeSpatialHashExternalStreamingObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeSpatialHashExternalStreamingObject") + } + static class URuntimeSpatialHashExternalStreamingObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeSpatialHashExternalStreamingObject; + +// Class Engine.MaterialExpressionNormalize +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionNormalize final : public UMaterialExpression +{ +public: + struct FExpressionInput VectorInput; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNormalize") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNormalize") + } + static class UMaterialExpressionNormalize* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNormalize; + +// Class Engine.MaterialExpressionAtmosphericLightColor +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionAtmosphericLightColor final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAtmosphericLightColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAtmosphericLightColor") + } + static class UMaterialExpressionAtmosphericLightColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAtmosphericLightColor; + +// Class Engine.MaterialExpressionAtmosphericLightVector +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionAtmosphericLightVector final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionAtmosphericLightVector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionAtmosphericLightVector") + } + static class UMaterialExpressionAtmosphericLightVector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionAtmosphericLightVector; + +// Class Engine.MaterialExpressionParticleMacroUV +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleMacroUV final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleMacroUV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleMacroUV") + } + static class UMaterialExpressionParticleMacroUV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleMacroUV; + +// Class Engine.MaterialExpressionBentNormalCustomOutput +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionBentNormalCustomOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBentNormalCustomOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBentNormalCustomOutput") + } + static class UMaterialExpressionBentNormalCustomOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBentNormalCustomOutput; + +// Class Engine.HUD +// 0x00F0 (0x0398 - 0x02A8) +class AHUD : public AActor +{ +public: + class APlayerController* PlayerOwner; // 0x02A8(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLostFocusPaused : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowHUD : 1; // 0x02B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowDebugInfo : 1; // 0x02B0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x3]; // 0x02B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CurrentTargetIndex; // 0x02B4(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShowHitBoxDebugInfo : 1; // 0x02B8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowOverlays : 1; // 0x02B8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDebugTextShadow : 1; // 0x02B8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B9[0x7]; // 0x02B9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray PostRenderedActors; // 0x02C0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_2D0[0x8]; // 0x02D0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DebugDisplay; // 0x02D8(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + TArray ToggledDebugCategories; // 0x02E8(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + class UCanvas* Canvas; // 0x02F8(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UCanvas* DebugCanvas; // 0x0300(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray DebugTextList; // 0x0308(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TSubclassOf ShowDebugTargetDesiredClass; // 0x0318(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class AActor* ShowDebugTargetActor; // 0x0320(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_328[0x70]; // 0x0328(0x0070)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddDebugText(const class FString& DebugText, class AActor* SrcActor, float duration, const struct FVector& Offset, const struct FVector& DesiredOffset, const struct FColor& TextColor, bool bSkipOverwriteCheck, bool bAbsoluteLocation, bool bKeepAttachedToActor, class UFont* InFont, float FontScale, bool bDrawShadow); + void AddHitBox(const struct FVector2D& position, const struct FVector2D& Size, class FName InName, bool bConsumesInput, int32 Priority); + void DrawLine(float StartScreenX, float StartScreenY, float EndScreenX, float EndScreenY, const struct FLinearColor& LineColor, float LineThickness); + void DrawMaterial(class UMaterialInterface* Material, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float MaterialU, float MaterialV, float MaterialUWidth, float MaterialVHeight, float Scale, bool bScalePosition, float Rotation, const struct FVector2D& RotPivot); + void DrawMaterialSimple(class UMaterialInterface* Material, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float Scale, bool bScalePosition); + void DrawMaterialTriangle(class UMaterialInterface* Material, const struct FVector2D& V0_Pos, const struct FVector2D& V1_Pos, const struct FVector2D& V2_Pos, const struct FVector2D& V0_UV, const struct FVector2D& V1_UV, const struct FVector2D& V2_UV, const struct FLinearColor& V0_Color, const struct FLinearColor& V1_Color, const struct FLinearColor& V2_Color); + void DrawRect(const struct FLinearColor& RectColor, float ScreenX, float ScreenY, float ScreenW, float ScreenH); + void DrawText(const class FString& Text, const struct FLinearColor& TextColor, float ScreenX, float ScreenY, class UFont* Font, float Scale, bool bScalePosition); + void DrawTexture(class UTexture* Texture, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float TextureU, float TextureV, float TextureUWidth, float TextureVHeight, const struct FLinearColor& TintColor, EBlendMode BlendMode, float Scale, bool bScalePosition, float Rotation, const struct FVector2D& RotPivot); + void DrawTextureSimple(class UTexture* Texture, float ScreenX, float ScreenY, float Scale, bool bScalePosition); + void GetActorsInSelectionRectangle(TSubclassOf ClassFilter, const struct FVector2D& FirstPoint, const struct FVector2D& SecondPoint, TArray* OutActors, bool bIncludeNonCollidingComponents, bool bActorMustBeFullyEnclosed); + void NextDebugTarget(); + void PreviousDebugTarget(); + void ReceiveDrawHUD(int32 SizeX, int32 SizeY); + void ReceiveHitBoxBeginCursorOver(const class FName BoxName); + void ReceiveHitBoxClick(const class FName BoxName); + void ReceiveHitBoxEndCursorOver(const class FName BoxName); + void ReceiveHitBoxRelease(const class FName BoxName); + void RemoveAllDebugStrings(); + void RemoveDebugText(class AActor* SrcActor, bool bLeaveDurationText); + void ShowDebug(class FName DebugType); + void ShowDebugForReticleTargetToggle(TSubclassOf DesiredClass); + void ShowDebugToggleSubCategory(class FName Category); + void ShowHUD(); + + void Deproject(float ScreenX, float ScreenY, struct FVector* WorldPosition, struct FVector* WorldDirection) const; + class APawn* GetOwningPawn() const; + class APlayerController* GetOwningPlayerController() const; + void GetTextSize(const class FString& Text, float* OutWidth, float* OutHeight, class UFont* Font, float Scale) const; + struct FVector Project(const struct FVector& Location, bool bClampToZeroPlane) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HUD") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HUD") + } + static class AHUD* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AHUD; + +// Class Engine.MaterialExpressionBindlessSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionBindlessSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Bindless; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBindlessSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBindlessSwitch") + } + static class UMaterialExpressionBindlessSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBindlessSwitch; + +// Class Engine.WorldPartitionDestructibleHLODComponent +// 0x0010 (0x0240 - 0x0230) +class UWorldPartitionDestructibleHLODComponent : public USceneComponent +{ +public: + TArray DestructibleActors; // 0x0230(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionDestructibleHLODComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionDestructibleHLODComponent") + } + static class UWorldPartitionDestructibleHLODComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionDestructibleHLODComponent; + +// Class Engine.MaterialExpressionNeuralNetworkOutput +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionNeuralNetworkOutput final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ENeuralIndexType NeuralIndexType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNeuralNetworkOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNeuralNetworkOutput") + } + static class UMaterialExpressionNeuralNetworkOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNeuralNetworkOutput; + +// Class Engine.MaterialExpressionBlackBody +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionBlackBody final : public UMaterialExpression +{ +public: + struct FExpressionInput Temp; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBlackBody") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBlackBody") + } + static class UMaterialExpressionBlackBody* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBlackBody; + +// Class Engine.TimelineTemplate +// 0x0090 (0x00B8 - 0x0028) +class UTimelineTemplate final : public UObject +{ +public: + float TimelineLength; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETimelineLengthMode LengthMode; // 0x002C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAutoPlay : 1; // 0x002D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLoop : 1; // 0x002D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReplicated : 1; // 0x002D(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreTimeDilation : 1; // 0x002D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2E[0x2]; // 0x002E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TArray EventTracks; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FloatTracks; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorTracks; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LinearColorTracks; // 0x0060(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray MetaDataArray; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FGuid TimelineGuid; // 0x0080(0x0010)(ZeroConstructor, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETickingGroup TimelineTickGroup; // 0x0090(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x3]; // 0x0091(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName VariableName; // 0x0094(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName DirectionPropertyName; // 0x009C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName UpdateFunctionName; // 0x00A4(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName FinishedFunctionName; // 0x00AC(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TimelineTemplate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TimelineTemplate") + } + static class UTimelineTemplate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTimelineTemplate; + +// Class Engine.MaterialExpressionParticleColor +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleColor final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleColor") + } + static class UMaterialExpressionParticleColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleColor; + +// Class Engine.MaterialExpressionLegacyBlendMaterialAttributes +// 0x00A8 (0x01E8 - 0x0140) +class UMaterialExpressionLegacyBlendMaterialAttributes final : public UMaterialExpressionBlendMaterialAttributes +{ +public: + struct FExpressionInput VertexAttribute_UseA; // 0x0140(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput VertexAttribute_UseB; // 0x0168(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PixelAttribute_UseA; // 0x0190(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PixelAttribute_UseB; // 0x01B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialAttributeBlendFunction BlendFunctionType; // 0x01E0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E1[0x7]; // 0x01E1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLegacyBlendMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLegacyBlendMaterialAttributes") + } + static class UMaterialExpressionLegacyBlendMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLegacyBlendMaterialAttributes; + +// Class Engine.MaterialExpressionBounds +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionBounds final : public UMaterialExpression +{ +public: + EMaterialExpressionBoundsType Type; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBounds") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBounds") + } + static class UMaterialExpressionBounds* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBounds; + +// Class Engine.MaterialExpressionParticleSpriteRotation +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleSpriteRotation final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleSpriteRotation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleSpriteRotation") + } + static class UMaterialExpressionParticleSpriteRotation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleSpriteRotation; + +// Class Engine.MaterialExpressionBreakMaterialAttributes +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionBreakMaterialAttributes final : public UMaterialExpression +{ +public: + struct FMaterialAttributesInput MaterialAttributes; // 0x00B0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBreakMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBreakMaterialAttributes") + } + static class UMaterialExpressionBreakMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBreakMaterialAttributes; + +// Class Engine.MaterialExpressionBumpOffset +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionBumpOffset final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinate; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Height; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput HeightRatioInput; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float HeightRatio; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReferencePlane; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ConstCoordinate; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionBumpOffset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionBumpOffset") + } + static class UMaterialExpressionBumpOffset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionBumpOffset; + +// Class Engine.PhysicsVolume +// 0x0010 (0x02F0 - 0x02E0) +class APhysicsVolume : public AVolume +{ +public: + float TerminalVelocity; // 0x02E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Priority; // 0x02E4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FluidFriction; // 0x02E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bWaterVolume : 1; // 0x02EC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPhysicsOnContact : 1; // 0x02EC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2ED[0x3]; // 0x02ED(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsVolume") + } + static class APhysicsVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APhysicsVolume; + +// Class Engine.DefaultPhysicsVolume +// 0x0000 (0x02F0 - 0x02F0) +class ADefaultPhysicsVolume final : public APhysicsVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DefaultPhysicsVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DefaultPhysicsVolume") + } + static class ADefaultPhysicsVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADefaultPhysicsVolume; + +// Class Engine.MaterialExpressionParticlePositionWS +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionParticlePositionWS final : public UMaterialExpression +{ +public: + EPositionOrigin OriginType; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticlePositionWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticlePositionWS") + } + static class UMaterialExpressionParticlePositionWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticlePositionWS; + +// Class Engine.MaterialExpressionCameraPositionWS +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionCameraPositionWS final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCameraPositionWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCameraPositionWS") + } + static class UMaterialExpressionCameraPositionWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCameraPositionWS; + +// Class Engine.MaterialExpressionCameraVectorWS +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionCameraVectorWS final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCameraVectorWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCameraVectorWS") + } + static class UMaterialExpressionCameraVectorWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCameraVectorWS; + +// Class Engine.WorldPartitionRuntimeCell +// 0x0088 (0x00B0 - 0x0028) +class UWorldPartitionRuntimeCell : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + bool bIsAlwaysLoaded; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDataLayerInstanceNames DataLayers; // 0x0040(0x0018)(NativeAccessSpecifierPrivate) + bool bClientOnlyVisible; // 0x0058(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bIsHLOD; // 0x0059(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bBlockOnSlowLoading; // 0x005A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_5B[0x1]; // 0x005B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid ContentBundleID; // 0x005C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FLinearColor CellDebugColor; // 0x006C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid CellGuid; // 0x007C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FGuid SourceCellGuid; // 0x008C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_9C[0xC]; // 0x009C(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorldPartitionRuntimeCellData* RuntimeCellData; // 0x00A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCell") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCell") + } + static class UWorldPartitionRuntimeCell* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCell; + +// Class Engine.WorldPartitionRuntimeLevelStreamingCell +// 0x0008 (0x00B8 - 0x00B0) +class UWorldPartitionRuntimeLevelStreamingCell final : public UWorldPartitionRuntimeCell +{ +public: + class UWorldPartitionLevelStreamingDynamic* LevelStreaming; // 0x00B0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void OnLevelHidden(); + void OnLevelShown(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeLevelStreamingCell") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeLevelStreamingCell") + } + static class UWorldPartitionRuntimeLevelStreamingCell* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeLevelStreamingCell; + +// Class Engine.MaterialExpressionOneMinus +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionOneMinus final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionOneMinus") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionOneMinus") + } + static class UMaterialExpressionOneMinus* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionOneMinus; + +// Class Engine.MaterialExpressionCeil +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionCeil final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCeil") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCeil") + } + static class UMaterialExpressionCeil* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCeil; + +// Class Engine.LightComponent +// 0x0110 (0x0390 - 0x0280) +#pragma pack(push, 0x1) +class alignas(0x10) ULightComponent : public ULightComponentBase +{ +public: + float Temperature; // 0x0278(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDrawDistance; // 0x027C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDistanceFadeRange; // 0x0280(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseTemperature : 1; // 0x0284(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_285[0x3]; // 0x0285(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ShadowMapChannel; // 0x0288(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PreviewShadowMapChannel; // 0x028C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, NonPIEDuplicateTransient, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinRoughness; // 0x0290(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpecularScale; // 0x0294(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DiffuseScale; // 0x0298(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowResolutionScale; // 0x029C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowBias; // 0x02A0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowSlopeBias; // 0x02A4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowSharpen; // 0x02A8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactShadowLength; // 0x02AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ContactShadowLengthInWS : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x3]; // 0x02B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ContactShadowCastingIntensity; // 0x02B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactShadowNonCastingIntensity; // 0x02B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 InverseSquaredFalloff : 1; // 0x02BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastTranslucentShadows : 1; // 0x02BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowsFromCinematicObjectsOnly : 1; // 0x02BC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceCachedShadowsForMovablePrimitives : 1; // 0x02BC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowMegaLights : 1; // 0x02BC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2BD[0x3]; // 0x02BD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EMegaLightsShadowMethod MegaLightsShadowMethod; // 0x02C0(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightingChannels LightingChannels; // 0x02C1(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 Pad_2C2[0x6]; // 0x02C2(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* LightFunctionMaterial; // 0x02C8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LightFunctionScale; // 0x02D0(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureLightProfile* IESTexture; // 0x02E8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseIESBrightness : 1; // 0x02F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2F1[0x3]; // 0x02F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float IESBrightnessScale; // 0x02F4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LightFunctionFadeDistance; // 0x02F8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DisabledBrightness; // 0x02FC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableLightShaftBloom : 1; // 0x0300(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_301[0x3]; // 0x0301(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BloomScale; // 0x0304(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomThreshold; // 0x0308(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomMaxBrightness; // 0x030C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor BloomTint; // 0x0310(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseRayTracedDistanceFieldShadows; // 0x0314(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_315[0x3]; // 0x0315(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RayStartOffsetDepthScale; // 0x0318(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31C[0x6C]; // 0x031C(0x006C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetAffectTranslucentLighting(bool bNewValue); + void SetBloomMaxBrightness(float NewValue); + void SetBloomScale(float NewValue); + void SetBloomThreshold(float NewValue); + void SetBloomTint(const struct FColor& NewValue); + void SetDiffuseScale(float NewValue); + void SetEnableLightShaftBloom(bool bNewValue); + void SetForceCachedShadowsForMovablePrimitives(bool bNewValue); + void SetIESBrightnessScale(float NewValue); + void SetIESTexture(class UTextureLightProfile* NewValue); + void SetIndirectLightingIntensity(float NewIntensity); + void SetIntensity(float NewIntensity); + void SetLightColor(const struct FLinearColor& NewLightColor, bool bSRGB); + void SetLightFColor(const struct FColor& NewLightColor); + void SetLightFunctionDisabledBrightness(float NewValue); + void SetLightFunctionFadeDistance(float NewLightFunctionFadeDistance); + void SetLightFunctionMaterial(class UMaterialInterface* NewLightFunctionMaterial); + void SetLightFunctionScale(const struct FVector& NewLightFunctionScale); + void SetLightingChannels(bool bChannel0, bool bChannel1, bool bChannel2); + void SetShadowBias(float NewValue); + void SetShadowSlopeBias(float NewValue); + void SetSpecularScale(float NewValue); + void SetTemperature(float NewTemperature); + void SetTransmission(bool bNewValue); + void SetUseIESBrightness(bool bNewValue); + void SetUseRayTracedDistanceFieldShadows(bool bNewValue); + void SetUseTemperature(bool bNewValue); + void SetVolumetricScatteringIntensity(float NewIntensity); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightComponent") + } + static class ULightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_ULightComponent; + +// Class Engine.IntSerialization +// 0x0028 (0x0050 - 0x0028) +class UIntSerialization final : public UObject +{ +public: + uint16 UnsignedInt16Variable; // 0x0028(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 UnsignedInt32Variable; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 UnsignedInt64Variable; // 0x0030(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 SignedInt8Variable; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x1]; // 0x0039(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int16 SignedInt16Variable; // 0x003A(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int64 SignedInt64Variable; // 0x0040(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 UnsignedInt8Variable; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SignedInt32Variable; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("IntSerialization") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"IntSerialization") + } + static class UIntSerialization* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UIntSerialization; + +// Class Engine.MaterialExpressionVectorParameter +// 0x0058 (0x0130 - 0x00D8) +class UMaterialExpressionVectorParameter : public UMaterialExpressionParameter +{ +public: + struct FLinearColor DefaultValue; // 0x00D8(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCustomPrimitiveData; // 0x00E8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PrimitiveDataIndex; // 0x00E9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_EA[0x6]; // 0x00EA(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FParameterChannelNames ChannelNames; // 0x00F0(0x0040)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVectorParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVectorParameter") + } + static class UMaterialExpressionVectorParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVectorParameter; + +// Class Engine.MaterialExpressionChannelMaskParameter +// 0x0030 (0x0160 - 0x0130) +class UMaterialExpressionChannelMaskParameter final : public UMaterialExpressionVectorParameter +{ +public: + EChannelMaskParameterColor MaskChannel; // 0x0130(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_131[0x7]; // 0x0131(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Input; // 0x0138(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionChannelMaskParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionChannelMaskParameter") + } + static class UMaterialExpressionChannelMaskParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionChannelMaskParameter; + +// Class Engine.MaterialExpressionPerInstanceFadeAmount +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPerInstanceFadeAmount final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPerInstanceFadeAmount") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPerInstanceFadeAmount") + } + static class UMaterialExpressionPerInstanceFadeAmount* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPerInstanceFadeAmount; + +// Class Engine.MaterialExpressionClamp +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionClamp final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput min_0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput max_0; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EClampMode ClampMode; // 0x0128(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_129[0x3]; // 0x0129(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinDefault; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDefault; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionClamp") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionClamp") + } + static class UMaterialExpressionClamp* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionClamp; + +// Class Engine.MaterialExpressionClearCoatNormalCustomOutput +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionClearCoatNormalCustomOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionClearCoatNormalCustomOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionClearCoatNormalCustomOutput") + } + static class UMaterialExpressionClearCoatNormalCustomOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionClearCoatNormalCustomOutput; + +// Class Engine.SphereComponent +// 0x0000 (0x0510 - 0x0510) +class USphereComponent : public UShapeComponent +{ +public: + float SphereRadius; // 0x0508(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_50C[0x4]; // 0x050C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetSphereRadius(float InSphereRadius, bool bUpdateOverlaps); + + float GetScaledSphereRadius() const; + float GetShapeScale() const; + float GetUnscaledSphereRadius() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereComponent") + } + static class USphereComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USphereComponent; + +// Class Engine.DrawSphereComponent +// 0x0000 (0x0510 - 0x0510) +class UDrawSphereComponent final : public USphereComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DrawSphereComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DrawSphereComponent") + } + static class UDrawSphereComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDrawSphereComponent; + +// Class Engine.MaterialExpressionCollectionParameter +// 0x0020 (0x00D0 - 0x00B0) +class UMaterialExpressionCollectionParameter final : public UMaterialExpression +{ +public: + class UMaterialParameterCollection* Collection; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParameterName; // 0x00B8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ParameterId; // 0x00C0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCollectionParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCollectionParameter") + } + static class UMaterialExpressionCollectionParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCollectionParameter; + +// Class Engine.MaterialExpressionComponentMask +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionComponentMask final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 R : 1; // 0x00D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 G : 1; // 0x00D8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 B : 1; // 0x00D8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 A : 1; // 0x00D8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionComponentMask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionComponentMask") + } + static class UMaterialExpressionComponentMask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionComponentMask; + +// Class Engine.InputComponent +// 0x0088 (0x0128 - 0x00A0) +class UInputComponent : public UActorComponent +{ +public: + uint8 Pad_A0[0x70]; // 0x00A0(0x0070)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CachedKeyToActionInfo; // 0x0110(0x0010)(ZeroConstructor, Transient, DuplicateTransient, NativeAccessSpecifierPrivate) + uint8 Pad_120[0x8]; // 0x0120(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnInputOwnerEndPlayed(class AActor* InOwner, EEndPlayReason EndPlayReason); + + float GetControllerAnalogKeyState(const struct FKey& Key) const; + void GetControllerAnalogStickState(EControllerAnalogStick WhichStick, float* StickX, float* StickY) const; + float GetControllerKeyTimeDown(const struct FKey& Key) const; + void GetControllerMouseDelta(float* DeltaX, float* DeltaY) const; + struct FVector GetControllerVectorKeyState(const struct FKey& Key) const; + void GetTouchState(int32 FingerIndex, float* LocationX, float* LocationY, bool* bIsCurrentlyPressed) const; + bool IsControllerKeyDown(const struct FKey& Key) const; + bool WasControllerKeyJustPressed(const struct FKey& Key) const; + bool WasControllerKeyJustReleased(const struct FKey& Key) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputComponent") + } + static class UInputComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputComponent; + +// Class Engine.MaterialExpressionConstant +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionConstant final : public UMaterialExpression +{ +public: + float R; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstant") + } + static class UMaterialExpressionConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstant; + +// Class Engine.MaterialExpressionPreSkinnedLocalBounds +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPreSkinnedLocalBounds final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPreSkinnedLocalBounds") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPreSkinnedLocalBounds") + } + static class UMaterialExpressionPreSkinnedLocalBounds* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPreSkinnedLocalBounds; + +// Class Engine.MaterialExpressionConstant2Vector +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionConstant2Vector final : public UMaterialExpression +{ +public: + float R; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float G; // 0x00B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstant2Vector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstant2Vector") + } + static class UMaterialExpressionConstant2Vector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstant2Vector; + +// Class Engine.MaterialExpressionConstant3Vector +// 0x0010 (0x00C0 - 0x00B0) +class UMaterialExpressionConstant3Vector final : public UMaterialExpression +{ +public: + struct FLinearColor Constant; // 0x00B0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstant3Vector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstant3Vector") + } + static class UMaterialExpressionConstant3Vector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstant3Vector; + +// Class Engine.LocalLightComponent +// 0x0020 (0x03B0 - 0x0390) +#pragma pack(push, 0x1) +class alignas(0x10) ULocalLightComponent : public ULightComponent +{ +public: + ELightUnits IntensityUnits; // 0x0388(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_389[0x3]; // 0x0389(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InverseExposureBlend; // 0x038C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0390(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AttenuationRadius; // 0x0394(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightmassPointLightSettings LightmassSettings; // 0x0398(0x000C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_3A4[0x4]; // 0x03A4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static float GetUnitsConversionFactor(ELightUnits SrcUnits, ELightUnits TargetUnits, float CosHalfConeAngle); + + void SetAttenuationRadius(float NewRadius); + void SetIntensityUnits(ELightUnits NewIntensityUnits); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalLightComponent") + } + static class ULocalLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_ULocalLightComponent; + +// Class Engine.MaterialExpressionPinBase +// 0x0018 (0x00C8 - 0x00B0) +class UMaterialExpressionPinBase final : public UMaterialExpression +{ +public: + TArray ReroutePins; // 0x00B0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + EEdGraphPinDirection PinDirection; // 0x00C0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPinBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPinBase") + } + static class UMaterialExpressionPinBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPinBase; + +// Class Engine.KismetSystemLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetSystemLibrary final : public UBlueprintFunctionLibrary +{ +public: + static struct FDebugFloatHistory AddFloatHistorySample(float Value, const struct FDebugFloatHistory& FloatHistory); + static int32 BeginTransaction(const class FString& Context, const class FText& Description, class UObject* PrimaryObject); + static bool BoxOverlapActors(const class UObject* WorldContextObject, const struct FVector& BoxPos, const struct FVector& BoxExtent, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors); + static bool BoxOverlapComponents(const class UObject* WorldContextObject, const struct FVector& BoxPos, const struct FVector& Extent, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents); + static bool BoxTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool BoxTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool BoxTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool BoxTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool BoxTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool BoxTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static void BreakARFilter(const struct FARFilter& InARFilter, TArray* PackageNames, TArray* PackagePaths, TArray* SoftObjectPaths, TArray* ClassPaths, TSet* RecursiveClassPathsExclusionSet, TArray* ClassNames, TSet* RecursiveClassesExclusionSet, bool* bRecursivePaths, bool* bRecursiveClasses, bool* bIncludeOnlyOnDiskAssets); + static void BreakSoftClassPath(const struct FSoftClassPath& InSoftClassPath, class FString* PathString); + static void BreakSoftObjectPath(const struct FSoftObjectPath& InSoftObjectPath, class FString* PathString); + static void BreakTopLevelAssetPath(const struct FTopLevelAssetPath& TopLevelAssetPath, class FString* PathString); + static void CancelTransaction(const int32 Index_0); + static bool CanLaunchURL(const class FString& URL); + static bool CapsuleOverlapActors(const class UObject* WorldContextObject, const struct FVector& CapsulePos, float Radius, float HalfHeight, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors); + static bool CapsuleOverlapComponents(const class UObject* WorldContextObject, const struct FVector& CapsulePos, float Radius, float HalfHeight, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents); + static bool CapsuleTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool CapsuleTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool CapsuleTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool CapsuleTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool CapsuleTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool CapsuleTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static void CollectGarbage(); + static bool ComponentOverlapActors(class UPrimitiveComponent* Component, const struct FTransform& ComponentTransform, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors); + static bool ComponentOverlapComponents(class UPrimitiveComponent* Component, const struct FTransform& ComponentTransform, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents); + static void ControlScreensaver(bool bAllowScreenSaver); + static TSoftClassPtr Conv_ClassToSoftClassReference(const TSubclassOf& Class_0); + static struct FSoftComponentReference Conv_ComponentReferenceToSoftComponentReference(const struct FComponentReference& ComponentReference); + static class UObject* Conv_InterfaceToObject(const TScriptInterface& Interface); + static class UClass* Conv_ObjectToClass(class UObject* Object, TSubclassOf Class_0); + static TSoftObjectPtr Conv_ObjectToSoftObjectReference(class UObject* Object); + static class FString Conv_PrimaryAssetIdToString(const struct FPrimaryAssetId& PrimaryAssetId); + static class FString Conv_PrimaryAssetTypeToString(const struct FPrimaryAssetType& PrimaryAssetType); + static TSoftClassPtr Conv_SoftClassPathToSoftClassRef(const struct FSoftClassPath& SoftClassPath); + static TSubclassOf Conv_SoftClassReferenceToClass(const TSoftClassPtr& SoftClass); + static class FString Conv_SoftClassReferenceToString(const TSoftClassPtr& SoftClassReference); + static class UObject* Conv_SoftObjectReferenceToObject(const TSoftObjectPtr& SoftObject); + static class FString Conv_SoftObjectReferenceToString(const TSoftObjectPtr& SoftObjectReference); + static TSoftObjectPtr Conv_SoftObjPathToSoftObjRef(const struct FSoftObjectPath& SoftObjectPath); + static struct FSoftClassPath Conv_SoftObjRefToSoftClassPath(TSoftClassPtr SoftClassReference); + static struct FSoftObjectPath Conv_SoftObjRefToSoftObjPath(TSoftObjectPtr SoftObjectReference); + static class FString ConvertToAbsolutePath(const class FString& Filename); + static class FString ConvertToRelativePath(const class FString& Filename); + static void CreateCopyForUndoBuffer(class UObject* ObjectToModify); + static void Delay(const class UObject* WorldContextObject, float duration, const struct FLatentActionInfo& LatentInfo); + static void DelayUntilNextTick(const class UObject* WorldContextObject, const struct FLatentActionInfo& LatentInfo); + static bool DoesClassImplementInterface(const class UClass* TestClass, TSubclassOf Interface); + static bool DoesImplementInterface(const class UObject* TestObject, TSubclassOf Interface); + static void DrawDebugArrow(const class UObject* WorldContextObject, const struct FVector& LineStart, const struct FVector& LineEnd, float ArrowSize, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugBox(const class UObject* WorldContextObject, const struct FVector& Center, const struct FVector& Extent, const struct FLinearColor& LineColor, const struct FRotator& Rotation, float duration, float Thickness); + static void DrawDebugCamera(const class ACameraActor* CameraActor, const struct FLinearColor& CameraColor, float duration); + static void DrawDebugCapsule(const class UObject* WorldContextObject, const struct FVector& Center, float HalfHeight, float Radius, const struct FRotator& Rotation, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugCircle(const class UObject* WorldContextObject, const struct FVector& Center, float Radius, int32 NumSegments, const struct FLinearColor& LineColor, float duration, float Thickness, const struct FVector& YAxis, const struct FVector& ZAxis, bool bDrawAxis); + static void DrawDebugCone(const class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float AngleWidth, float AngleHeight, int32 NumSides, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugConeInDegrees(const class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float AngleWidth, float AngleHeight, int32 NumSides, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugCoordinateSystem(const class UObject* WorldContextObject, const struct FVector& AxisLoc, const struct FRotator& AxisRot, float Scale, float duration, float Thickness); + static void DrawDebugCylinder(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, int32 Segments, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugFloatHistoryLocation(const class UObject* WorldContextObject, const struct FDebugFloatHistory& FloatHistory, const struct FVector& DrawLocation, const struct FVector2D& DrawSize, const struct FLinearColor& DrawColor, float duration); + static void DrawDebugFloatHistoryTransform(const class UObject* WorldContextObject, const struct FDebugFloatHistory& FloatHistory, const struct FTransform& DrawTransform, const struct FVector2D& DrawSize, const struct FLinearColor& DrawColor, float duration); + static void DrawDebugFrustum(const class UObject* WorldContextObject, const struct FTransform& FrustumTransform, const struct FLinearColor& FrustumColor, float duration, float Thickness); + static void DrawDebugLine(const class UObject* WorldContextObject, const struct FVector& LineStart, const struct FVector& LineEnd, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugPlane(const class UObject* WorldContextObject, const struct FPlane& PlaneCoordinates, const struct FVector& Location, float Size, const struct FLinearColor& PlaneColor, float duration); + static void DrawDebugPoint(const class UObject* WorldContextObject, const struct FVector& position, float Size, const struct FLinearColor& PointColor, float duration); + static void DrawDebugSphere(const class UObject* WorldContextObject, const struct FVector& Center, float Radius, int32 Segments, const struct FLinearColor& LineColor, float duration, float Thickness); + static void DrawDebugString(const class UObject* WorldContextObject, const struct FVector& TextLocation, const class FString& Text, class AActor* TestBaseActor, const struct FLinearColor& TextColor, float duration); + static int32 EndTransaction(); + static bool EqualEqual_PrimaryAssetId(const struct FPrimaryAssetId& A, const struct FPrimaryAssetId& B); + static bool EqualEqual_PrimaryAssetType(const struct FPrimaryAssetType& A, const struct FPrimaryAssetType& B); + static bool EqualEqual_SoftClassReference(const TSoftClassPtr& A, const TSoftClassPtr& B); + static bool EqualEqual_SoftObjectReference(const TSoftObjectPtr& A, const TSoftObjectPtr& B); + static void ExecuteConsoleCommand(const class UObject* WorldContextObject, const class FString& Command, class APlayerController* SpecificPlayer); + static void FlushDebugStrings(const class UObject* WorldContextObject); + static void FlushPersistentDebugLines(const class UObject* WorldContextObject); + static void ForceCloseAdBanner(); + static void GetActorBounds(const class AActor* Actor, struct FVector* Origin, struct FVector* BoxExtent); + static void GetActorListFromComponentList(const TArray& ComponentList, class UClass* ActorClassFilter, TArray* OutActorList); + static int32 GetAdIDCount(); + static class FString GetBuildConfiguration(); + static class FString GetBuildVersion(); + static class FString GetClassDisplayName(const class UClass* Class_0); + static TSubclassOf GetClassFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId); + static struct FTopLevelAssetPath GetClassTopLevelAssetPath(const class UClass* Class_0); + static class FString GetCommandLine(); + static void GetComponentBounds(const class USceneComponent* Component, struct FVector* Origin, struct FVector* BoxExtent, float* SphereRadius); + static bool GetConsoleVariableBoolValue(const class FString& VariableName); + static float GetConsoleVariableFloatValue(const class FString& VariableName); + static int32 GetConsoleVariableIntValue(const class FString& VariableName); + static class FString GetConsoleVariableStringValue(const class FString& VariableName); + static bool GetConvenientWindowedResolutions(TArray* Resolutions); + static bool GetCurrentBundleState(const struct FPrimaryAssetId& PrimaryAssetId, bool bForceCurrentState, TArray* OutBundles); + static class FString GetDefaultLanguage(); + static class FString GetDefaultLocale(); + static class FString GetDeviceId(); + static class FString GetDisplayName(const class UObject* Object); + static class FString GetEngineVersion(); + static struct FTopLevelAssetPath GetEnumTopLevelAssetPath(const class UEnum* Enum); + static int64 GetFrameCount(); + static class FString GetGameBundleId(); + static class FString GetGameName(); + static class UTexture2D* GetGamepadButtonGlyph(const class FString& ButtonKey, int32 ControllerIndex); + static class FString GetGamepadControllerName(int32 ControllerId); + static double GetGameTimeInSeconds(const class UObject* WorldContextObject); + static class FString GetLocalCurrencyCode(); + static class FString GetLocalCurrencySymbol(); + static int32 GetMinYResolutionFor3DView(); + static int32 GetMinYResolutionForUI(); + static class UObject* GetObjectFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId); + static class FString GetObjectName(const class UObject* Object); + static class UObject* GetOuterObject(const class UObject* Object); + static class FString GetPathName(const class UObject* Object); + static class FString GetPlatformUserDir(); + static class FString GetPlatformUserName(); + static TArray GetPreferredLanguages(); + static struct FPrimaryAssetId GetPrimaryAssetIdFromClass(TSubclassOf Class_0); + static struct FPrimaryAssetId GetPrimaryAssetIdFromObject(class UObject* Object); + static struct FPrimaryAssetId GetPrimaryAssetIdFromSoftClassReference(TSoftClassPtr SoftClassReference); + static struct FPrimaryAssetId GetPrimaryAssetIdFromSoftObjectReference(TSoftObjectPtr SoftObjectReference); + static void GetPrimaryAssetIdList(const struct FPrimaryAssetType& PrimaryAssetType, TArray* OutPrimaryAssetIdList); + static void GetPrimaryAssetsWithBundleState(const TArray& RequiredBundles, const TArray& ExcludedBundles, const TArray& ValidTypes, bool bForceCurrentState, TArray* OutPrimaryAssetIdList); + static class FString GetProjectContentDirectory(); + static class FString GetProjectDirectory(); + static class FString GetProjectSavedDirectory(); + static int32 GetRenderingDetailMode(); + static int32 GetRenderingMaterialQualityLevel(); + static struct FSoftClassPath GetSoftClassPath(const class UClass* Class_0); + static TSoftClassPtr GetSoftClassReferenceFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId); + static struct FTopLevelAssetPath GetSoftClassTopLevelAssetPath(TSoftClassPtr SoftClassReference); + static struct FSoftObjectPath GetSoftObjectPath(const class UObject* Object); + static TSoftObjectPtr GetSoftObjectReferenceFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId); + static struct FTopLevelAssetPath GetStructTopLevelAssetPath(const class UScriptStruct* Struct); + static bool GetSupportedFullscreenResolutions(TArray* Resolutions); + static class FString GetSystemPath(const class UObject* Object); + static class FString GetUniqueDeviceId(); + static bool GetVolumeButtonsHandledBySystem(); + static bool HasMultipleLocalPlayers(const class UObject* WorldContextObject); + static void HideAdBanner(); + static bool IsControllerAssignedToGamepad(int32 ControllerId); + static bool IsDedicatedServer(const class UObject* WorldContextObject); + static bool IsInterstitialAdAvailable(); + static bool IsInterstitialAdRequested(); + static bool IsLoggedIn(const class APlayerController* SpecificPlayer); + static bool IsObjectOfSoftClass(const class UObject* Object, TSoftClassPtr SoftClass); + static bool IsPackagedForDistribution(); + static bool IsScreensaverEnabled(); + static bool IsServer(const class UObject* WorldContextObject); + static bool IsSplitScreen(const class UObject* WorldContextObject); + static bool IsStandalone(const class UObject* WorldContextObject); + static bool IsUnattended(); + static bool IsValid(const class UObject* Object); + static bool IsValidClass(class UClass* Class_0); + static bool IsValidInterface(const TScriptInterface& Interface); + static bool IsValidPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId); + static bool IsValidPrimaryAssetType(const struct FPrimaryAssetType& PrimaryAssetType); + static bool IsValidSoftClassReference(const TSoftClassPtr& SoftClassReference); + static bool IsValidSoftObjectReference(const TSoftObjectPtr& SoftObjectReference); + static void K2_ClearAndInvalidateTimerHandle(const class UObject* WorldContextObject, struct FTimerHandle& Handle); + static void K2_ClearTimer(class UObject* Object, const class FString& FunctionName); + static void K2_ClearTimerDelegate(TDelegate Delegate); + static void K2_ClearTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static float K2_GetTimerElapsedTime(class UObject* Object, const class FString& FunctionName); + static float K2_GetTimerElapsedTimeDelegate(TDelegate Delegate); + static float K2_GetTimerElapsedTimeHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static float K2_GetTimerRemainingTime(class UObject* Object, const class FString& FunctionName); + static float K2_GetTimerRemainingTimeDelegate(TDelegate Delegate); + static float K2_GetTimerRemainingTimeHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static struct FTimerHandle K2_InvalidateTimerHandle(struct FTimerHandle& Handle); + static bool K2_IsTimerActive(class UObject* Object, const class FString& FunctionName); + static bool K2_IsTimerActiveDelegate(TDelegate Delegate); + static bool K2_IsTimerActiveHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static bool K2_IsTimerPaused(class UObject* Object, const class FString& FunctionName); + static bool K2_IsTimerPausedDelegate(TDelegate Delegate); + static bool K2_IsTimerPausedHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static bool K2_IsValidTimerHandle(const struct FTimerHandle& Handle); + static void K2_PauseTimer(class UObject* Object, const class FString& FunctionName); + static void K2_PauseTimerDelegate(TDelegate Delegate); + static void K2_PauseTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static struct FTimerHandle K2_SetTimer(class UObject* Object, const class FString& FunctionName, float Time, bool bLooping, bool bMaxOncePerFrame, float InitialStartDelay, float InitialStartDelayVariance); + static struct FTimerHandle K2_SetTimerDelegate(TDelegate Delegate, float Time, bool bLooping, bool bMaxOncePerFrame, float InitialStartDelay, float InitialStartDelayVariance); + static struct FTimerHandle K2_SetTimerForNextTick(class UObject* Object, const class FString& FunctionName); + static struct FTimerHandle K2_SetTimerForNextTickDelegate(TDelegate Delegate); + static bool K2_TimerExists(class UObject* Object, const class FString& FunctionName); + static bool K2_TimerExistsDelegate(TDelegate Delegate); + static bool K2_TimerExistsHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static void K2_UnPauseTimer(class UObject* Object, const class FString& FunctionName); + static void K2_UnPauseTimerDelegate(TDelegate Delegate); + static void K2_UnPauseTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle); + static void LaunchExternalUrl(const TArray& InDomainStrings, const class FString& URL); + static void LaunchURL(const class FString& URL); + static bool LineTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool LineTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool LineTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool LineTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool LineTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool LineTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static void LoadAsset(const class UObject* WorldContextObject, TSoftObjectPtr Asset, TDelegate OnLoaded, const struct FLatentActionInfo& LatentInfo); + static class UObject* LoadAsset_Blocking(TSoftObjectPtr Asset); + static void LoadAssetClass(const class UObject* WorldContextObject, TSoftClassPtr AssetClass, TDelegate Loaded)> OnLoaded, const struct FLatentActionInfo& LatentInfo); + static class UClass* LoadClassAsset_Blocking(TSoftClassPtr AssetClass); + static void LoadInterstitialAd(int32 AdIdIndex); + static void LogString(const class FString& InString, bool bPrintToLog); + static struct FARFilter MakeARFilter(const TArray& PackageNames, const TArray& PackagePaths, const TArray& SoftObjectPaths, const TArray& ClassPaths, const TSet& RecursiveClassPathsExclusionSet, const TArray& ClassNames, const TSet& RecursiveClassesExclusionSet, const bool bRecursivePaths, const bool bRecursiveClasses, const bool bIncludeOnlyOnDiskAssets); + static bool MakeLiteralBool(bool Value); + static uint8 MakeLiteralByte(uint8 Value); + static double MakeLiteralDouble(double Value); + static int32 MakeLiteralInt(int32 Value); + static int64 MakeLiteralInt64(int64 Value); + static class FName MakeLiteralName(class FName Value); + static class FString MakeLiteralString(const class FString& Value); + static class FText MakeLiteralText(const class FText& Value); + static struct FSoftClassPath MakeSoftClassPath(const class FString& PathString); + static struct FSoftObjectPath MakeSoftObjectPath(const class FString& PathString); + static struct FTopLevelAssetPath MakeTopLevelAssetPath(const class FString& PackageName, const class FString& AssetName); + static void MoveComponentTo(class USceneComponent* Component, const struct FVector& TargetRelativeLocation, const struct FRotator& TargetRelativeRotation, bool bEaseOut, bool bEaseIn, float OverTime, bool bForceShortestRotationPath, EMoveComponentAction MoveAction, const struct FLatentActionInfo& LatentInfo); + static class FString NormalizeFilename(const class FString& InFilename); + static bool NotEqual_PrimaryAssetId(const struct FPrimaryAssetId& A, const struct FPrimaryAssetId& B); + static bool NotEqual_PrimaryAssetType(const struct FPrimaryAssetType& A, const struct FPrimaryAssetType& B); + static bool NotEqual_SoftClassReference(const TSoftClassPtr& A, const TSoftClassPtr& B); + static bool NotEqual_SoftObjectReference(const TSoftObjectPtr& A, const TSoftObjectPtr& B); + static void ParseCommandLine(const class FString& InCmdLine, TArray* OutTokens, TArray* OutSwitches, TMap* OutParams); + static bool ParseParam(const class FString& InString, const class FString& InParam); + static bool ParseParamValue(const class FString& InString, const class FString& InParam, class FString* OutValue); + static void PrintString(const class UObject* WorldContextObject, const class FString& InString, bool bPrintToScreen, bool bPrintToLog, const struct FLinearColor& TextColor, float duration, const class FName Key); + static void PrintText(const class UObject* WorldContextObject, const class FText& InText, bool bPrintToScreen, bool bPrintToLog, const struct FLinearColor& TextColor, float duration, const class FName Key); + static void PrintWarning(const class FString& InString); + static void QuitGame(const class UObject* WorldContextObject, class APlayerController* SpecificPlayer, EQuitPreference QuitPreference, bool bIgnorePlatformRestrictions); + static void RegisterForRemoteNotifications(); + static void ResetGamepadAssignments(); + static void ResetGamepadAssignmentToController(int32 ControllerId); + static void RetriggerableDelay(const class UObject* WorldContextObject, float duration, const struct FLatentActionInfo& LatentInfo); + static void SetBoolPropertyByName(class UObject* Object, class FName PropertyName, bool Value); + static void SetBytePropertyByName(class UObject* Object, class FName PropertyName, uint8 Value); + static void SetClassPropertyByName(class UObject* Object, class FName PropertyName, TSubclassOf Value); + static void SetCollisionProfileNameProperty(class UObject* Object, class FName PropertyName, const struct FCollisionProfileName& Value); + static void SetColorPropertyByName(class UObject* Object, class FName PropertyName, const struct FColor& Value); + static void SetDoublePropertyByName(class UObject* Object, class FName PropertyName, double Value); + static void SetFieldPathPropertyByName(class UObject* Object, class FName PropertyName, const TFieldPath& Value); + static void SetGamepadsBlockDeviceFeedback(bool bBlock); + static void SetInt64PropertyByName(class UObject* Object, class FName PropertyName, int64 Value); + static void SetInterfacePropertyByName(class UObject* Object, class FName PropertyName, const TScriptInterface& Value); + static void SetIntPropertyByName(class UObject* Object, class FName PropertyName, int32 Value); + static void SetLinearColorPropertyByName(class UObject* Object, class FName PropertyName, const struct FLinearColor& Value); + static void SetNamePropertyByName(class UObject* Object, class FName PropertyName, const class FName& Value); + static void SetObjectPropertyByName(class UObject* Object, class FName PropertyName, class UObject* Value); + static void SetRotatorPropertyByName(class UObject* Object, class FName PropertyName, const struct FRotator& Value); + static void SetSoftClassPropertyByName(class UObject* Object, class FName PropertyName, const TSoftClassPtr& Value); + static void SetSoftObjectPropertyByName(class UObject* Object, class FName PropertyName, const TSoftObjectPtr& Value); + static void SetStringPropertyByName(class UObject* Object, class FName PropertyName, const class FString& Value); + static void SetStructurePropertyByName(class UObject* Object, class FName PropertyName, const struct FGenericStruct& Value); + static void SetSuppressViewportTransitionMessage(const class UObject* WorldContextObject, bool bState); + static void SetTextPropertyByName(class UObject* Object, class FName PropertyName, const class FText& Value); + static void SetTransformPropertyByName(class UObject* Object, class FName PropertyName, const struct FTransform& Value); + static void SetUserActivity(const struct FUserActivity& UserActivity); + static void SetVector3fPropertyByName(class UObject* Object, class FName PropertyName, const struct FVector3f& Value); + static void SetVectorPropertyByName(class UObject* Object, class FName PropertyName, const struct FVector& Value); + static void SetVolumeButtonsHandledBySystem(bool bEnabled); + static void SetWindowTitle(const class FText& Title); + static void ShowAdBanner(int32 AdIdIndex, bool bShowOnBottomOfScreen); + static void ShowInterstitialAd(); + static void ShowPlatformSpecificAchievementsScreen(const class APlayerController* SpecificPlayer); + static void ShowPlatformSpecificLeaderboardScreen(const class FString& CategoryName); + static void SnapshotObject(class UObject* Object); + static bool SphereOverlapActors(const class UObject* WorldContextObject, const struct FVector& SpherePos, float SphereRadius, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors); + static bool SphereOverlapComponents(const class UObject* WorldContextObject, const struct FVector& SpherePos, float SphereRadius, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents); + static bool SphereTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool SphereTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool SphereTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool SphereTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool SphereTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static bool SphereTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime); + static void StackTrace(); + static void TransactObject(class UObject* Object); + static void UnloadPrimaryAsset(const struct FPrimaryAssetId& PrimaryAssetId); + static void UnloadPrimaryAssetList(const TArray& PrimaryAssetIdList); + static void UnregisterForRemoteNotifications(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetSystemLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetSystemLibrary") + } + static class UKismetSystemLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetSystemLibrary; + +// Class Engine.MaterialExpressionConstant4Vector +// 0x0010 (0x00C0 - 0x00B0) +class UMaterialExpressionConstant4Vector final : public UMaterialExpression +{ +public: + struct FLinearColor Constant; // 0x00B0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstant4Vector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstant4Vector") + } + static class UMaterialExpressionConstant4Vector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstant4Vector; + +// Class Engine.MaterialExpressionConstantBiasScale +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionConstantBiasScale final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Bias; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x00DC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionConstantBiasScale") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionConstantBiasScale") + } + static class UMaterialExpressionConstantBiasScale* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionConstantBiasScale; + +// Class Engine.MaterialExpressionCrossProduct +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionCrossProduct final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCrossProduct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCrossProduct") + } + static class UMaterialExpressionCrossProduct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCrossProduct; + +// Class Engine.SoundParameterControllerInterface +// 0x0000 (0x0000 - 0x0000) +class ISoundParameterControllerInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundParameterControllerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundParameterControllerInterface") + } + static class ISoundParameterControllerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISoundParameterControllerInterface; + +// Class Engine.MaterialExpressionPower +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionPower final : public UMaterialExpression +{ +public: + struct FExpressionInput base; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Exponent; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstExponent; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPower") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPower") + } + static class UMaterialExpressionPower* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPower; + +// Class Engine.MaterialExpressionScalarParameter +// 0x0010 (0x00E8 - 0x00D8) +class UMaterialExpressionScalarParameter : public UMaterialExpressionParameter +{ +public: + float DefaultValue; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCustomPrimitiveData; // 0x00DC(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PrimitiveDataIndex; // 0x00DD(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DE[0x2]; // 0x00DE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float SliderMin; // 0x00E0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SliderMax; // 0x00E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionScalarParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionScalarParameter") + } + static class UMaterialExpressionScalarParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionScalarParameter; + +// Class Engine.MaterialExpressionCurveAtlasRowParameter +// 0x0038 (0x0120 - 0x00E8) +class UMaterialExpressionCurveAtlasRowParameter final : public UMaterialExpressionScalarParameter +{ +public: + class UCurveLinearColor* Curve; // 0x00E8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveLinearColorAtlas* Atlas; // 0x00F0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput InputTime; // 0x00F8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCurveAtlasRowParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCurveAtlasRowParameter") + } + static class UMaterialExpressionCurveAtlasRowParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCurveAtlasRowParameter; + +// Class Engine.MaterialExpressionRequiredSamplersSwitch +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionRequiredSamplersSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput InputTrue; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput InputFalse; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint32 RequiredSamplers; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRequiredSamplersSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRequiredSamplersSwitch") + } + static class UMaterialExpressionRequiredSamplersSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRequiredSamplersSwitch; + +// Class Engine.MaterialExpressionCustom +// 0x0070 (0x0120 - 0x00B0) +class UMaterialExpressionCustom final : public UMaterialExpression +{ +public: + class FString Code; // 0x00B0(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomMaterialOutputType OutputType; // 0x00C0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Description; // 0x00C8(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Inputs; // 0x00D8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AdditionalOutputs; // 0x00E8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AdditionalDefines; // 0x00F8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray IncludeFilePaths; // 0x0108(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + bool ShowCode; // 0x0118(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_119[0x7]; // 0x0119(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionCustom") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionCustom") + } + static class UMaterialExpressionCustom* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionCustom; + +// Class Engine.MaterialExpressionDataDrivenShaderPlatformInfoSwitch +// 0x0068 (0x0118 - 0x00B0) +class UMaterialExpressionDataDrivenShaderPlatformInfoSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput InputTrue; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput InputFalse; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + TArray DDSPIPropertyNames; // 0x0100(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bContainsInvalidProperty : 1; // 0x0110(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_111[0x7]; // 0x0111(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + TArray GetNameOptions() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDataDrivenShaderPlatformInfoSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDataDrivenShaderPlatformInfoSwitch") + } + static class UMaterialExpressionDataDrivenShaderPlatformInfoSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDataDrivenShaderPlatformInfoSwitch; + +// Class Engine.BlueprintMapLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintMapLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void Map_Add(const TMap& TargetMap, const int32& Key, const int32& Value); + static void Map_Clear(const TMap& TargetMap); + static bool Map_Contains(const TMap& TargetMap, const int32& Key); + static bool Map_Find(const TMap& TargetMap, const int32& Key, int32* Value); + static bool Map_IsEmpty(const TMap& TargetMap); + static bool Map_IsNotEmpty(const TMap& TargetMap); + static void Map_Keys(const TMap& TargetMap, TArray* Keys); + static int32 Map_Length(const TMap& TargetMap); + static bool Map_Remove(const TMap& TargetMap, const int32& Key); + static void Map_Values(const TMap& TargetMap, TArray* Values); + static void SetMapPropertyByName(class UObject* Object, class FName PropertyName, const TMap& Value); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintMapLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintMapLibrary") + } + static class UBlueprintMapLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintMapLibrary; + +// Class Engine.MaterialExpressionPreSkinnedPosition +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPreSkinnedPosition final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPreSkinnedPosition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPreSkinnedPosition") + } + static class UMaterialExpressionPreSkinnedPosition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPreSkinnedPosition; + +// Class Engine.MaterialExpressionDBufferTexture +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionDBufferTexture final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EDBufferTextureId DBufferTextureId; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDBufferTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDBufferTexture") + } + static class UMaterialExpressionDBufferTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDBufferTexture; + +// Class Engine.MaterialExpressionDDX +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionDDX final : public UMaterialExpression +{ +public: + struct FExpressionInput Value; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDDX") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDDX") + } + static class UMaterialExpressionDDX* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDDX; + +// Class Engine.SoundNodeAttenuation +// 0x03E0 (0x0428 - 0x0048) +class USoundNodeAttenuation final : public USoundNode +{ +public: + class USoundAttenuation* AttenuationSettings; // 0x0048(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoundAttenuationSettings AttenuationOverrides; // 0x0050(0x03D0)(Edit, NativeAccessSpecifierPublic) + uint8 bOverrideAttenuation : 1; // 0x0420(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_421[0x7]; // 0x0421(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeAttenuation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeAttenuation") + } + static class USoundNodeAttenuation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeAttenuation; + +// Class Engine.MaterialExpressionPixelNormalWS +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPixelNormalWS final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPixelNormalWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPixelNormalWS") + } + static class UMaterialExpressionPixelNormalWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPixelNormalWS; + +// Class Engine.MaterialExpressionDDY +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionDDY final : public UMaterialExpression +{ +public: + struct FExpressionInput Value; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDDY") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDDY") + } + static class UMaterialExpressionDDY* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDDY; + +// Class Engine.MaterialExpressionDecalColor +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionDecalColor final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDecalColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDecalColor") + } + static class UMaterialExpressionDecalColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDecalColor; + +// Class Engine.BrushShape +// 0x0000 (0x02E0 - 0x02E0) +class ABrushShape final : public ABrush +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BrushShape") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BrushShape") + } + static class ABrushShape* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ABrushShape; + +// Class Engine.ActorDescContainerSubsystem +// 0x0000 (0x0030 - 0x0030) +class UActorDescContainerSubsystem final : public UEngineSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorDescContainerSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorDescContainerSubsystem") + } + static class UActorDescContainerSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorDescContainerSubsystem; + +// Class Engine.MaterialExpressionReflectionCapturePassSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionReflectionCapturePassSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Reflection; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionReflectionCapturePassSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionReflectionCapturePassSwitch") + } + static class UMaterialExpressionReflectionCapturePassSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionReflectionCapturePassSwitch; + +// Class Engine.MaterialExpressionDecalDerivative +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionDecalDerivative final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDecalDerivative") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDecalDerivative") + } + static class UMaterialExpressionDecalDerivative* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDecalDerivative; + +// Class Engine.MaterialExpressionDecalLifetimeOpacity +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionDecalLifetimeOpacity final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDecalLifetimeOpacity") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDecalLifetimeOpacity") + } + static class UMaterialExpressionDecalLifetimeOpacity* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDecalLifetimeOpacity; + +// Class Engine.MaterialExpressionRuntimeVirtualTextureSample +// 0x00D8 (0x0188 - 0x00B0) +class UMaterialExpressionRuntimeVirtualTextureSample : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WorldPosition; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MipValue; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput DDX; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput DDY; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class URuntimeVirtualTexture* VirtualTexture; // 0x0178(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureMaterialType MaterialType; // 0x0180(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSinglePhysicalSpace; // 0x0181(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAdaptive; // 0x0182(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x0183(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureTextureAddressMode TextureAddressMode; // 0x0184(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureMipValueMode MipValueMode; // 0x0185(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableFeedback; // 0x0186(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_187[0x1]; // 0x0187(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRuntimeVirtualTextureSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRuntimeVirtualTextureSample") + } + static class UMaterialExpressionRuntimeVirtualTextureSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRuntimeVirtualTextureSample; + +// Class Engine.MaterialExpressionDecalMipmapLevel +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionDecalMipmapLevel final : public UMaterialExpression +{ +public: + struct FExpressionInput TextureSize; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstWidth; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstHeight; // 0x00DC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDecalMipmapLevel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDecalMipmapLevel") + } + static class UMaterialExpressionDecalMipmapLevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDecalMipmapLevel; + +// Class Engine.MaterialExpressionDeltaTime +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionDeltaTime final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDeltaTime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDeltaTime") + } + static class UMaterialExpressionDeltaTime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDeltaTime; + +// Class Engine.CameraLensEffectInterfaceClassSupportLibrary +// 0x0000 (0x0028 - 0x0028) +class UCameraLensEffectInterfaceClassSupportLibrary final : public UBlueprintFunctionLibrary +{ +public: + static TSubclassOf GetInterfaceClass(const struct FCameraLensInterfaceClassSupport& CameraLens); + static void IsInterfaceClassValid(const struct FCameraLensInterfaceClassSupport& CameraLens, EInterfaceValidResult* Result); + static void IsInterfaceValid(const TScriptInterface& CameraLens, EInterfaceValidResult* Result); + static void SetInterfaceClass(TSubclassOf Class_0, struct FCameraLensInterfaceClassSupport& Var, EInterfaceValidResult* Result); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraLensEffectInterfaceClassSupportLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraLensEffectInterfaceClassSupportLibrary") + } + static class UCameraLensEffectInterfaceClassSupportLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraLensEffectInterfaceClassSupportLibrary; + +// Class Engine.MaterialExpressionRgbToHsv +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionRgbToHsv final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRgbToHsv") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRgbToHsv") + } + static class UMaterialExpressionRgbToHsv* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRgbToHsv; + +// Class Engine.MaterialExpressionDepthFade +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionDepthFade final : public UMaterialExpression +{ +public: + struct FExpressionInput InOpacity; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput FadeDistance; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float OpacityDefault; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeDistanceDefault; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDepthFade") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDepthFade") + } + static class UMaterialExpressionDepthFade* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDepthFade; + +// Class Engine.MaterialExpressionDepthOfFieldFunction +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionDepthOfFieldFunction final : public UMaterialExpression +{ +public: + EDepthOfFieldFunctionValue FunctionValue; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Depth; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDepthOfFieldFunction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDepthOfFieldFunction") + } + static class UMaterialExpressionDepthOfFieldFunction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDepthOfFieldFunction; + +// Class Engine.MaterialExpressionQualitySwitch +// 0x00C8 (0x0178 - 0x00B0) +class UMaterialExpressionQualitySwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Inputs[0x4]; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionQualitySwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionQualitySwitch") + } + static class UMaterialExpressionQualitySwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionQualitySwitch; + +// Class Engine.MaterialExpressionDeriveNormalZ +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionDeriveNormalZ final : public UMaterialExpression +{ +public: + struct FExpressionInput InXY; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDeriveNormalZ") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDeriveNormalZ") + } + static class UMaterialExpressionDeriveNormalZ* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDeriveNormalZ; + +// Class Engine.MaterialExpressionDesaturation +// 0x0060 (0x0110 - 0x00B0) +class UMaterialExpressionDesaturation final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Fraction; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FLinearColor LuminanceFactors; // 0x0100(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDesaturation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDesaturation") + } + static class UMaterialExpressionDesaturation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDesaturation; + +// Class Engine.WorldPartitionStreamingSourceComponent +// 0x0060 (0x0100 - 0x00A0) +class UWorldPartitionStreamingSourceComponent final : public UActorComponent +{ +public: + uint8 Pad_A0[0x8]; // 0x00A0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EStreamingSourceTargetBehavior TargetBehavior; // 0x00A8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x7]; // 0x00A9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TargetGrids; // 0x00B0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + class FName TargetGrid; // 0x00C0(0x0008)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor DebugColor; // 0x00C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CC[0x4]; // 0x00CC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TargetHLODLayers; // 0x00D0(0x0010)(ZeroConstructor, Deprecated, UObjectWrapper, NativeAccessSpecifierPublic) + class UHLODLayer* TargetHLODLayer; // 0x00E0(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Shapes; // 0x00E8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + EStreamingSourcePriority Priority; // 0x00F8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStreamingSourceEnabled; // 0x00F9(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EStreamingSourceTargetState TargetState; // 0x00FA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_FB[0x5]; // 0x00FB(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void DisableStreamingSource(); + void EnableStreamingSource(); + + bool IsStreamingCompleted() const; + bool IsStreamingSourceEnabled() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionStreamingSourceComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionStreamingSourceComponent") + } + static class UWorldPartitionStreamingSourceComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionStreamingSourceComponent; + +// Class Engine.MaterialExpressionSubstrateVerticalLayering +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionSubstrateVerticalLayering final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput Top; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput base; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Thickness; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bUseParameterBlending : 1; // 0x0128(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_129[0x7]; // 0x0129(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateVerticalLayering") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateVerticalLayering") + } + static class UMaterialExpressionSubstrateVerticalLayering* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateVerticalLayering; + +// Class Engine.MaterialExpressionDistance +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionDistance final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistance") + } + static class UMaterialExpressionDistance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistance; + +// Class Engine.MaterialExpressionDistanceCullFade +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionDistanceCullFade final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistanceCullFade") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistanceCullFade") + } + static class UMaterialExpressionDistanceCullFade* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistanceCullFade; + +// Class Engine.MaterialExpressionDistanceFieldGradient +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionDistanceFieldGradient final : public UMaterialExpression +{ +public: + struct FExpressionInput position; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistanceFieldGradient") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistanceFieldGradient") + } + static class UMaterialExpressionDistanceFieldGradient* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistanceFieldGradient; + +// Class Engine.StreamingSettings +// 0x0038 (0x0070 - 0x0038) +class UStreamingSettings final : public UDeveloperSettings +{ +public: + uint8 AsyncLoadingThreadEnabled : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 WarnIfTimeLimitExceeded : 1; // 0x0038(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TimeLimitExceededMultiplier; // 0x003C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float TimeLimitExceededMinTime; // 0x0040(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MinBulkDataSizeForAsyncLoading; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 UseBackgroundLevelStreaming : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 AsyncLoadingUseFullTimeLimit : 1; // 0x0048(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AsyncLoadingTimeLimit; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float PriorityAsyncLoadingExtraTime; // 0x0050(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LevelStreamingActorsUpdateTimeLimit; // 0x0054(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float PriorityLevelStreamingActorsUpdateExtraTime; // 0x0058(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LevelStreamingComponentsRegistrationGranularity; // 0x005C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LevelStreamingAddPrimitiveGranularity; // 0x0060(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LevelStreamingUnregisterComponentsTimeLimit; // 0x0064(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LevelStreamingComponentsUnregistrationGranularity; // 0x0068(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 FlushStreamingOnExit : 1; // 0x006C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 EventDrivenLoaderEnabled : 1; // 0x006C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_6D[0x3]; // 0x006D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StreamingSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StreamingSettings") + } + static class UStreamingSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStreamingSettings; + +// Class Engine.MaterialExpressionSubstrateTransmittanceToMFP +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstrateTransmittanceToMFP final : public UMaterialExpressionSubstrateUtilityBase +{ +public: + struct FExpressionInput TransmittanceColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Thickness; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateTransmittanceToMFP") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateTransmittanceToMFP") + } + static class UMaterialExpressionSubstrateTransmittanceToMFP* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateTransmittanceToMFP; + +// Class Engine.MaterialExpressionDistanceFieldsRenderingSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionDistanceFieldsRenderingSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput No; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Yes; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistanceFieldsRenderingSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistanceFieldsRenderingSwitch") + } + static class UMaterialExpressionDistanceFieldsRenderingSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistanceFieldsRenderingSwitch; + +// Class Engine.MaterialExpressionDistanceToNearestSurface +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionDistanceToNearestSurface final : public UMaterialExpression +{ +public: + struct FExpressionInput position; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDistanceToNearestSurface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDistanceToNearestSurface") + } + static class UMaterialExpressionDistanceToNearestSurface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDistanceToNearestSurface; + +// Class Engine.MaterialExpressionSubstrateConvertMaterialAttributes +// 0x00E0 (0x0190 - 0x00B0) +class UMaterialExpressionSubstrateConvertMaterialAttributes final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FMaterialAttributesInput MaterialAttributes; // 0x00B0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterScatteringCoefficients; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterAbsorptionCoefficients; // 0x0108(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterPhaseG; // 0x0130(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ColorScaleBehindWater; // 0x0158(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class USubsurfaceProfile* SubsurfaceProfile; // 0x0180(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialShadingModel ShadingModelOverride; // 0x0188(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateConvertMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateConvertMaterialAttributes") + } + static class UMaterialExpressionSubstrateConvertMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateConvertMaterialAttributes; + +// Class Engine.MaterialExpressionDivide +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionDivide final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDivide") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDivide") + } + static class UMaterialExpressionDivide* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDivide; + +// Class Engine.MaterialExpressionSceneColor +// 0x0068 (0x0118 - 0x00B0) +class UMaterialExpressionSceneColor final : public UMaterialExpression +{ +public: + EMaterialSceneAttributeInputMode InputMode; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Input; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput OffsetFraction; // 0x00E0(0x0028)(Deprecated, NoDestructor, NativeAccessSpecifierPublic) + struct FVector2D ConstInput; // 0x0108(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSceneColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSceneColor") + } + static class UMaterialExpressionSceneColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSceneColor; + +// Class Engine.MaterialExpressionDoubleVectorParameter +// 0x0028 (0x0100 - 0x00D8) +class UMaterialExpressionDoubleVectorParameter final : public UMaterialExpressionParameter +{ +public: + uint8 Pad_D8[0x8]; // 0x00D8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4d DefaultValue; // 0x00E0(0x0020)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDoubleVectorParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDoubleVectorParameter") + } + static class UMaterialExpressionDoubleVectorParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDoubleVectorParameter; + +// Class Engine.MaterialExpressionDynamicParameter +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionDynamicParameter final : public UMaterialExpression +{ +public: + TArray ParamNames; // 0x00B0(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + struct FLinearColor DefaultValue; // 0x00C0(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ParameterIndex; // 0x00D0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionDynamicParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionDynamicParameter") + } + static class UMaterialExpressionDynamicParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionDynamicParameter; + +// Class Engine.MaterialExpressionShadingPathSwitch +// 0x00A0 (0x0150 - 0x00B0) +class UMaterialExpressionShadingPathSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Inputs[0x3]; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionShadingPathSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionShadingPathSwitch") + } + static class UMaterialExpressionShadingPathSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionShadingPathSwitch; + +// Class Engine.MaterialExpressionExecBegin +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionExecBegin final : public UMaterialExpression +{ +public: + struct FExpressionExecOutput Exec; // 0x00B0(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionExecBegin") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionExecBegin") + } + static class UMaterialExpressionExecBegin* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionExecBegin; + +// Class Engine.MaterialExpressionExecEnd +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionExecEnd final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionExecEnd") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionExecEnd") + } + static class UMaterialExpressionExecEnd* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionExecEnd; + +// Class Engine.CurveVector +// 0x0180 (0x01B0 - 0x0030) +class UCurveVector final : public UCurveBase +{ +public: + struct FRichCurve FloatCurves[0x3]; // 0x0030(0x0080)(NativeAccessSpecifierPublic) + +public: + struct FVector GetVectorValue(float InTime) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveVector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveVector") + } + static class UCurveVector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveVector; + +// Class Engine.MaterialExpressionSceneTexture +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSceneTexture final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ESceneTextureId SceneTextureId; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFiltered; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSceneTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSceneTexture") + } + static class UMaterialExpressionSceneTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSceneTexture; + +// Class Engine.MaterialExpressionExponential +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionExponential final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionExponential") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionExponential") + } + static class UMaterialExpressionExponential* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionExponential; + +// Class Engine.MaterialExpressionEyeAdaptationInverse +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionEyeAdaptationInverse final : public UMaterialExpression +{ +public: + struct FExpressionInput LightValueInput; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AlphaInput; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionEyeAdaptationInverse") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionEyeAdaptationInverse") + } + static class UMaterialExpressionEyeAdaptationInverse* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionEyeAdaptationInverse; + +// Class Engine.Font +// 0x01B0 (0x01D8 - 0x0028) +class UFont final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EFontCacheType FontCacheType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Characters; // 0x0038(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray Textures; // 0x0048(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + int32 IsRemapped; // 0x0058(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmScale; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Ascent; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Descent; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Leading; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Kerning; // 0x006C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFontImportOptionsData ImportOptions; // 0x0070(0x00B0)(Edit, NativeAccessSpecifierPublic) + int32 NumCharacters; // 0x0120(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_124[0x4]; // 0x0124(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MaxCharHeight; // 0x0128(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + float ScalingFactor; // 0x0138(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LegacyFontSize; // 0x013C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LegacyFontName; // 0x0140(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCompositeFont CompositeFont; // 0x0148(0x0040)(Edit, NativeAccessSpecifierPublic) + uint8 Pad_188[0x50]; // 0x0188(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Font") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Font") + } + static class UFont* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFont; + +// Class Engine.MaterialExpressionShaderStageSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionShaderStageSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput PixelShader; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput VertexShader; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionShaderStageSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionShaderStageSwitch") + } + static class UMaterialExpressionShaderStageSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionShaderStageSwitch; + +// Class Engine.MaterialExpressionFeatureLevelSwitch +// 0x00F0 (0x01A0 - 0x00B0) +class UMaterialExpressionFeatureLevelSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Inputs[0x5]; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFeatureLevelSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFeatureLevelSwitch") + } + static class UMaterialExpressionFeatureLevelSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFeatureLevelSwitch; + +// Class Engine.MaterialExpressionFirstPersonOutput +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionFirstPersonOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput FirstPersonInterpolationAlpha; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstFirstPersonInterpolationAlpha; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFirstPersonOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFirstPersonOutput") + } + static class UMaterialExpressionFirstPersonOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFirstPersonOutput; + +// Class Engine.MaterialExpressionSkyAtmosphereLightDiskLuminance +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSkyAtmosphereLightDiskLuminance final : public UMaterialExpression +{ +public: + int32 LightIndex; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput DiskAngularDiameterOverride; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereLightDiskLuminance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereLightDiskLuminance") + } + static class UMaterialExpressionSkyAtmosphereLightDiskLuminance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereLightDiskLuminance; + +// Class Engine.ParticleModuleSizeBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleSizeBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSizeBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSizeBase") + } + static class UParticleModuleSizeBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSizeBase; + +// Class Engine.ParticleModuleSizeScaleBySpeed +// 0x0020 (0x0050 - 0x0030) +class UParticleModuleSizeScaleBySpeed final : public UParticleModuleSizeBase +{ +public: + struct FVector2D SpeedScale; // 0x0030(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D MaxScale; // 0x0040(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSizeScaleBySpeed") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSizeScaleBySpeed") + } + static class UParticleModuleSizeScaleBySpeed* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSizeScaleBySpeed; + +// Class Engine.MaterialExpressionFloatToUInt +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionFloatToUInt final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EFloatToIntMode Mode; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFloatToUInt") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFloatToUInt") + } + static class UMaterialExpressionFloatToUInt* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFloatToUInt; + +// Class Engine.MaterialExpressionUIntToFloat +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionUIntToFloat final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionUIntToFloat") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionUIntToFloat") + } + static class UMaterialExpressionUIntToFloat* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionUIntToFloat; + +// Class Engine.ForceFeedbackEffect +// 0x0078 (0x00A0 - 0x0028) +class UForceFeedbackEffect final : public UObject +{ +public: + TArray ChannelDetails; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TMap PerDeviceOverrides; // 0x0038(0x0050)(Edit, NativeAccessSpecifierPublic) + TArray DeviceProperties; // 0x0088(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + float duration; // 0x0098(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9C[0x4]; // 0x009C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ForceFeedbackEffect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ForceFeedbackEffect") + } + static class UForceFeedbackEffect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UForceFeedbackEffect; + +// Class Engine.MaterialExpressionSign +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionSign final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSign") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSign") + } + static class UMaterialExpressionSign* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSign; + +// Class Engine.MaterialExpressionFloor +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionFloor final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFloor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFloor") + } + static class UMaterialExpressionFloor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFloor; + +// Class Engine.MaterialExpressionFmod +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionFmod final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFmod") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFmod") + } + static class UMaterialExpressionFmod* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFmod; + +// Class Engine.MaterialExpressionSetLocal +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionSetLocal final : public UMaterialExpression +{ +public: + struct FExpressionExecOutput Exec; // 0x00B0(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Value; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class FName LocalName; // 0x00E0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSetLocal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSetLocal") + } + static class UMaterialExpressionSetLocal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSetLocal; + +// Class Engine.MaterialExpressionFontSample +// 0x0010 (0x00C0 - 0x00B0) +class UMaterialExpressionFontSample : public UMaterialExpression +{ +public: + class UFont* Font; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FontTexturePage; // 0x00B8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFontSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFontSample") + } + static class UMaterialExpressionFontSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFontSample; + +// Class Engine.MaterialExpressionFontSampleParameter +// 0x0028 (0x00E8 - 0x00C0) +class UMaterialExpressionFontSampleParameter final : public UMaterialExpressionFontSample +{ +public: + class FName ParameterName; // 0x00C0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x00C8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x00D8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x00E0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E4[0x4]; // 0x00E4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFontSampleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFontSampleParameter") + } + static class UMaterialExpressionFontSampleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFontSampleParameter; + +// Class Engine.WorldPartitionStreamingPolicy +// 0x03D0 (0x03F8 - 0x0028) +class UWorldPartitionStreamingPolicy : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FWorldPartitionUpdateStreamingCurrentState CurrentState; // 0x0030(0x0100)(Transient, NativeAccessSpecifierPrivate) + EWorldPartitionStreamingPerformance CurrentStreamingPerformance; // 0x0130(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_131[0x7]; // 0x0131(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FWorldPartitionUpdateStreamingTargetState TargetState; // 0x0138(0x0048)(Transient, NativeAccessSpecifierPrivate) + struct FWorldPartitionUpdateStreamingCurrentState AsyncTaskCurrentState; // 0x0180(0x0100)(Transient, NativeAccessSpecifierPrivate) + struct FWorldPartitionUpdateStreamingTargetState AsyncTaskTargetState; // 0x0280(0x0048)(Transient, NativeAccessSpecifierPrivate) + bool bShouldMergeStreamingSourceInfo; // 0x02C8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2C9[0x12F]; // 0x02C9(0x012F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionStreamingPolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionStreamingPolicy") + } + static class UWorldPartitionStreamingPolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionStreamingPolicy; + +// Class Engine.WorldPartitionLevelStreamingPolicy +// 0x0118 (0x0510 - 0x03F8) +class UWorldPartitionLevelStreamingPolicy final : public UWorldPartitionStreamingPolicy +{ +public: + struct FTopLevelAssetPath SourceWorldAssetPath; // 0x03F8(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TMap SubObjectsToCellRemapping; // 0x0408(0x0050)(NativeAccessSpecifierPrivate) + struct FWorldPartitionRuntimeContainerResolver ContainerResolver; // 0x0458(0x0058)(NativeAccessSpecifierPrivate) + TArray> ExternalStreamingObjects; // 0x04B0(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TMap> SubObjectsToExternalStreamingObjectsRemapping; // 0x04C0(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionLevelStreamingPolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionLevelStreamingPolicy") + } + static class UWorldPartitionLevelStreamingPolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionLevelStreamingPolicy; + +// Class Engine.MaterialExpressionSkyAtmosphereLightIlluminance +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionSkyAtmosphereLightIlluminance final : public UMaterialExpression +{ +public: + int32 LightIndex; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput WorldPosition; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00E0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E1[0x7]; // 0x00E1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereLightIlluminance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereLightIlluminance") + } + static class UMaterialExpressionSkyAtmosphereLightIlluminance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereLightIlluminance; + +// Class Engine.MaterialExpressionFontSignedDistance +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionFontSignedDistance final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFontSignedDistance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFontSignedDistance") + } + static class UMaterialExpressionFontSignedDistance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFontSignedDistance; + +// Class Engine.MaterialExpressionForLoop +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionForLoop final : public UMaterialExpression +{ +public: + struct FExpressionExecOutput LoopBody; // 0x00B0(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionExecOutput Completed; // 0x00B8(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput StartIndex; // 0x00C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EndIndex; // 0x00E8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IndexStep; // 0x0110(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionForLoop") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionForLoop") + } + static class UMaterialExpressionForLoop* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionForLoop; + +// Class Engine.MaterialExpressionSparseVolumeTextureBase +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionSparseVolumeTextureBase : public UMaterialExpression +{ +public: + class USparseVolumeTexture* SparseVolumeTexture; // 0x00B0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSparseVolumeTextureBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSparseVolumeTextureBase") + } + static class UMaterialExpressionSparseVolumeTextureBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSparseVolumeTextureBase; + +// Class Engine.MaterialExpressionSparseVolumeTextureObject +// 0x0000 (0x00B8 - 0x00B8) +class UMaterialExpressionSparseVolumeTextureObject final : public UMaterialExpressionSparseVolumeTextureBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSparseVolumeTextureObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSparseVolumeTextureObject") + } + static class UMaterialExpressionSparseVolumeTextureObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSparseVolumeTextureObject; + +// Class Engine.ParticleModuleSubUV +// 0x0040 (0x0070 - 0x0030) +class UParticleModuleSubUV : public UParticleModuleSubUVBase +{ +public: + class USubUVAnimation* Animation; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat SubImageIndex; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bUseRealTime : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSubUV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSubUV") + } + static class UParticleModuleSubUV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSubUV; + +// Class Engine.ParticleModuleSubUVMovie +// 0x0040 (0x00B0 - 0x0070) +class UParticleModuleSubUVMovie final : public UParticleModuleSubUV +{ +public: + uint8 bUseEmitterTime : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat FrameRate; // 0x0078(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + int32 StartingFrame; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AC[0x4]; // 0x00AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSubUVMovie") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSubUVMovie") + } + static class UParticleModuleSubUVMovie* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSubUVMovie; + +// Class Engine.MaterialExpressionFrac +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionFrac final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFrac") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFrac") + } + static class UMaterialExpressionFrac* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFrac; + +// Class Engine.MaterialExpressionFresnel +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionFresnel final : public UMaterialExpression +{ +public: + struct FExpressionInput ExponentIn; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Exponent; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput BaseReflectFractionIn; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float BaseReflectFraction; // 0x0108(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10C[0x4]; // 0x010C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Normal; // 0x0110(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFresnel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFresnel") + } + static class UMaterialExpressionFresnel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFresnel; + +// Class Engine.InputDeviceAudioBasedVibrationProperty +// 0x0058 (0x0088 - 0x0030) +class UInputDeviceAudioBasedVibrationProperty final : public UInputDeviceProperty +{ +public: + struct FAudioBasedVibrationData Data; // 0x0030(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + TMap DeviceOverrideData; // 0x0038(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceAudioBasedVibrationProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceAudioBasedVibrationProperty") + } + static class UInputDeviceAudioBasedVibrationProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceAudioBasedVibrationProperty; + +// Class Engine.MaterialExpressionSkyAtmosphereDistantLightScatteredLuminance +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereDistantLightScatteredLuminance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereDistantLightScatteredLuminance") + } + static class UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereDistantLightScatteredLuminance; + +// Class Engine.MaterialExpressionFunctionInput +// 0x00B0 (0x0160 - 0x00B0) +class UMaterialExpressionFunctionInput final : public UMaterialExpression +{ +public: + struct FExpressionInput Preview; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class FName InputName; // 0x00D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Description; // 0x00E0(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ID; // 0x00F0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFunctionInputType InputType; // 0x0100(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_101[0xF]; // 0x0101(0x000F)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4f PreviewValue; // 0x0110(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUsePreviewValueAsDefault : 1; // 0x0120(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_121[0x3]; // 0x0121(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SortPriority; // 0x0124(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCompilingFunctionPreview : 1; // 0x0128(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_129[0x37]; // 0x0129(0x0037)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFunctionInput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFunctionInput") + } + static class UMaterialExpressionFunctionInput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFunctionInput; + +// Class Engine.MaterialExpressionFunctionOutput +// 0x0060 (0x0110 - 0x00B0) +class UMaterialExpressionFunctionOutput : public UMaterialExpression +{ +public: + class FName OutputName; // 0x00B0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Description; // 0x00B8(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x00C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CC[0x4]; // 0x00CC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput A; // 0x00D0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bLastPreviewed : 1; // 0x00F8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F9[0x3]; // 0x00F9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid ID; // 0x00FC(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10C[0x4]; // 0x010C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionFunctionOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionFunctionOutput") + } + static class UMaterialExpressionFunctionOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionFunctionOutput; + +// Class Engine.MaterialExpressionSingleLayerWaterMaterialOutput +// 0x00A0 (0x0150 - 0x00B0) +class UMaterialExpressionSingleLayerWaterMaterialOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput ScatteringCoefficients; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AbsorptionCoefficients; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PhaseG; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ColorScaleBehindWater; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSingleLayerWaterMaterialOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSingleLayerWaterMaterialOutput") + } + static class UMaterialExpressionSingleLayerWaterMaterialOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSingleLayerWaterMaterialOutput; + +// Class Engine.MaterialExpressionHairAttributes +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionHairAttributes final : public UMaterialExpression +{ +public: + uint8 bUseTangentSpace : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionHairAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionHairAttributes") + } + static class UMaterialExpressionHairAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionHairAttributes; + +// Class Engine.DialogueVoice +// 0x0018 (0x0040 - 0x0028) +class UDialogueVoice final : public UObject +{ +public: + EGrammaticalGender Gender; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EGrammaticalNumber Plurality; // 0x0029(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid LocalizationGUID; // 0x002C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DialogueVoice") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DialogueVoice") + } + static class UDialogueVoice* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDialogueVoice; + +// Class Engine.MaterialExpressionHsvToRgb +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionHsvToRgb final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionHsvToRgb") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionHsvToRgb") + } + static class UMaterialExpressionHsvToRgb* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionHsvToRgb; + +// Class Engine.TextureRenderTargetCube +// 0x0020 (0x0158 - 0x0138) +class UTextureRenderTargetCube final : public UTextureRenderTarget +{ +public: + int32 SizeX; // 0x0138(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ClearColor; // 0x013C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat OverrideFormat; // 0x014C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHDR : 1; // 0x014D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsUAV : 1; // 0x014D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceLinearGamma : 1; // 0x014D(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoGenerateMips : 1; // 0x014D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ETextureFilter MipsSamplerFilter; // 0x014E(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14F[0x9]; // 0x014F(0x0009)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureRenderTargetCube") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureRenderTargetCube") + } + static class UTextureRenderTargetCube* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureRenderTargetCube; + +// Class Engine.MaterialExpressionParticleRandom +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleRandom final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleRandom") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleRandom") + } + static class UMaterialExpressionParticleRandom* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleRandom; + +// Class Engine.MaterialExpressionIf +// 0x00D8 (0x0188 - 0x00B0) +class UMaterialExpressionIf final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AGreaterThanB; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AEqualsB; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ALessThanB; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float EqualsThreshold; // 0x0178(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x017C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstAEqualsB; // 0x0180(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_184[0x4]; // 0x0184(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionIf") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionIf") + } + static class UMaterialExpressionIf* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionIf; + +// Class Engine.MaterialExpressionIfThenElse +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionIfThenElse final : public UMaterialExpression +{ +public: + struct FExpressionExecOutput Then; // 0x00B0(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionExecOutput Else; // 0x00B8(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Condition; // 0x00C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionIfThenElse") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionIfThenElse") + } + static class UMaterialExpressionIfThenElse* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionIfThenElse; + +// Class Engine.EdGraphNode_Documentation +// 0x0020 (0x00B8 - 0x0098) +class UEdGraphNode_Documentation final : public UEdGraphNode +{ +public: + class FString Link; // 0x0098(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Excerpt; // 0x00A8(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EdGraphNode_Documentation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EdGraphNode_Documentation") + } + static class UEdGraphNode_Documentation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEdGraphNode_Documentation; + +// Class Engine.VOIPStatics +// 0x0000 (0x0028 - 0x0028) +class UVOIPStatics final : public UBlueprintFunctionLibrary +{ +public: + static void SetMicThreshold(float InThreshold); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VOIPStatics") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VOIPStatics") + } + static class UVOIPStatics* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVOIPStatics; + +// Class Engine.MaterialExpressionSphericalParticleOpacity +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSphericalParticleOpacity final : public UMaterialExpression +{ +public: + struct FExpressionInput Density; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstantDensity; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSphericalParticleOpacity") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSphericalParticleOpacity") + } + static class UMaterialExpressionSphericalParticleOpacity* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSphericalParticleOpacity; + +// Class Engine.MaterialExpressionInverseLinearInterpolate +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionInverseLinearInterpolate final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Value; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstValue; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClampResult; // 0x0134(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_135[0x3]; // 0x0135(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionInverseLinearInterpolate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionInverseLinearInterpolate") + } + static class UMaterialExpressionInverseLinearInterpolate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionInverseLinearInterpolate; + +// Class Engine.MaterialExpressionIsOrthographic +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionIsOrthographic final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionIsOrthographic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionIsOrthographic") + } + static class UMaterialExpressionIsOrthographic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionIsOrthographic; + +// Class Engine.MaterialExpressionLightmapUVs +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionLightmapUVs final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLightmapUVs") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLightmapUVs") + } + static class UMaterialExpressionLightmapUVs* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLightmapUVs; + +// Class Engine.ActorElementCounterInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementCounterInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementCounterInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementCounterInterface") + } + static class UActorElementCounterInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementCounterInterface; + +// Class Engine.MaterialExpressionLightVector +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionLightVector final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLightVector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLightVector") + } + static class UMaterialExpressionLightVector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLightVector; + +// Class Engine.MaterialExpressionSpeedTree +// 0x00B0 (0x0160 - 0x00B0) +class UMaterialExpressionSpeedTree final : public UMaterialExpression +{ +public: + struct FExpressionInput GeometryInput; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WindInput; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput LODInput; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ExtraBendWS; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ESpeedTreeGeometryType GeometryType; // 0x0150(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpeedTreeWindType WindType; // 0x0151(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpeedTreeLODType LODType; // 0x0152(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_153[0x1]; // 0x0153(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float BillboardThreshold; // 0x0154(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccurateWindVelocities; // 0x0158(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x7]; // 0x0159(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSpeedTree") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSpeedTree") + } + static class UMaterialExpressionSpeedTree* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSpeedTree; + +// Class Engine.MaterialExpressionLinearInterpolate +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionLinearInterpolate final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Alpha; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstAlpha; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLinearInterpolate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLinearInterpolate") + } + static class UMaterialExpressionLinearInterpolate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLinearInterpolate; + +// Class Engine.MaterialExpressionLocalPosition +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionLocalPosition final : public UMaterialExpression +{ +public: + EPositionIncludedOffsets IncludedOffsets; // 0x00B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELocalPositionOrigin LocalOrigin; // 0x00B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLocalPosition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLocalPosition") + } + static class UMaterialExpressionLocalPosition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLocalPosition; + +// Class Engine.PawnNoiseEmitterComponent +// 0x0038 (0x00D8 - 0x00A0) +class UPawnNoiseEmitterComponent final : public UActorComponent +{ +public: + uint8 bAIPerceptionSystemCompatibilityMode : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_A1[0x7]; // 0x00A1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector LastRemoteNoisePosition; // 0x00A8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NoiseLifetime; // 0x00C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LastRemoteNoiseVolume; // 0x00C4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float LastRemoteNoiseTime; // 0x00C8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float LastLocalNoiseVolume; // 0x00CC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float LastLocalNoiseTime; // 0x00D0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void MakeNoise(class AActor* NoiseMaker, float Loudness, const struct FVector& NoiseLocation); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PawnNoiseEmitterComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PawnNoiseEmitterComponent") + } + static class UPawnNoiseEmitterComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPawnNoiseEmitterComponent; + +// Class Engine.MaterialExpressionStep +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionStep final : public UMaterialExpression +{ +public: + struct FExpressionInput Y; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput X; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstY; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstX; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStep") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStep") + } + static class UMaterialExpressionStep* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStep; + +// Class Engine.MaterialExpressionLogarithm +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionLogarithm final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLogarithm") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLogarithm") + } + static class UMaterialExpressionLogarithm* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLogarithm; + +// Class Engine.MaterialExpressionLogarithm10 +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionLogarithm10 final : public UMaterialExpression +{ +public: + struct FExpressionInput X; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionLogarithm10") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionLogarithm10") + } + static class UMaterialExpressionLogarithm10* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionLogarithm10; + +// Class Engine.MaterialExpressionMakeMaterialAttributes +// 0x0438 (0x04E8 - 0x00B0) +class UMaterialExpressionMakeMaterialAttributes final : public UMaterialExpression +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Metallic; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Anisotropy; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Opacity; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput OpacityMask; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x01F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Tangent; // 0x0218(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WorldPositionOffset; // 0x0240(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SubsurfaceColor; // 0x0268(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoat; // 0x0290(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoatRoughness; // 0x02B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AmbientOcclusion; // 0x02E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Refraction; // 0x0308(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CustomizedUVs[0x8]; // 0x0330(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PixelDepthOffset; // 0x0470(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ShadingModel; // 0x0498(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Displacement; // 0x04C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMakeMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMakeMaterialAttributes") + } + static class UMaterialExpressionMakeMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMakeMaterialAttributes; + +// Class Engine.PostProcessComponent +// 0x0720 (0x0950 - 0x0230) +class UPostProcessComponent final : public USceneComponent +{ +public: + uint8 Pad_230[0x10]; // 0x0230(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings Settings; // 0x0240(0x0700)(Edit, BlueprintVisible, Interp, NativeAccessSpecifierPublic) + float Priority; // 0x0940(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendRadius; // 0x0944(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendWeight; // 0x0948(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnabled : 1; // 0x094C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUnbound : 1; // 0x094C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_94D[0x3]; // 0x094D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PostProcessComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PostProcessComponent") + } + static class UPostProcessComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPostProcessComponent; + +// Class Engine.MaterialExpressionSubstrateSimpleClearCoatBSDF +// 0x0118 (0x01C8 - 0x00B0) +class UMaterialExpressionSubstrateSimpleClearCoatBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput DiffuseAlbedo; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput F0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoatCoverage; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ClearCoatRoughness; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateSimpleClearCoatBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateSimpleClearCoatBSDF") + } + static class UMaterialExpressionSubstrateSimpleClearCoatBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateSimpleClearCoatBSDF; + +// Class Engine.MaterialExpressionMapARPassthroughCameraUV +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionMapARPassthroughCameraUV final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMapARPassthroughCameraUV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMapARPassthroughCameraUV") + } + static class UMaterialExpressionMapARPassthroughCameraUV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMapARPassthroughCameraUV; + +// Class Engine.MaterialExpressionMaterialAttributeLayers +// 0x01A0 (0x0250 - 0x00B0) +class UMaterialExpressionMaterialAttributeLayers final : public UMaterialExpression +{ +public: + struct FMaterialAttributesInput Input; // 0x00B0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctions DefaultLayers; // 0x00E0(0x0128)(Edit, NativeAccessSpecifierPublic) + TArray LayerCallers; // 0x0208(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + int32 NumActiveLayerCallers; // 0x0218(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21C[0x4]; // 0x021C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BlendCallers; // 0x0220(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + int32 NumActiveBlendCallers; // 0x0230(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_234[0x4]; // 0x0234(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialExpressionMaterialFunctionCall* OutputCaller; // 0x0238(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsLayerGraphBuilt; // 0x0240(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_241[0xF]; // 0x0241(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMaterialAttributeLayers") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMaterialAttributeLayers") + } + static class UMaterialExpressionMaterialAttributeLayers* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMaterialAttributeLayers; + +// Class Engine.VoiceChannel +// 0x0010 (0x0078 - 0x0068) +class UVoiceChannel final : public UChannel +{ +public: + uint8 Pad_68[0x10]; // 0x0068(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VoiceChannel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VoiceChannel") + } + static class UVoiceChannel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVoiceChannel; + +// Class Engine.MaterialExpressionStaticSwitch +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionStaticSwitch final : public UMaterialExpression +{ +public: + uint8 DefaultValue : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput A; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Value; // 0x0108(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStaticSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStaticSwitch") + } + static class UMaterialExpressionStaticSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStaticSwitch; + +// Class Engine.MaterialExpressionMaterialFunctionCall +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionMaterialFunctionCall final : public UMaterialExpression +{ +public: + class UMaterialFunctionInterface* MaterialFunction; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray FunctionInputs; // 0x00B8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FunctionOutputs; // 0x00C8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FMaterialParameterInfo FunctionParameterInfo; // 0x00D8(0x0010)(Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMaterialFunctionCall") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMaterialFunctionCall") + } + static class UMaterialExpressionMaterialFunctionCall* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMaterialFunctionCall; + +// Class Engine.MaterialExpressionMaterialLayerOutput +// 0x0000 (0x0110 - 0x0110) +class UMaterialExpressionMaterialLayerOutput final : public UMaterialExpressionFunctionOutput +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMaterialLayerOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMaterialLayerOutput") + } + static class UMaterialExpressionMaterialLayerOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMaterialLayerOutput; + +// Class Engine.RuntimeVirtualTextureComponent +// 0x00A0 (0x02D0 - 0x0230) +class URuntimeVirtualTextureComponent final : public USceneComponent +{ +public: + TSoftObjectPtr BoundsAlignActor; // 0x0230(0x0028)(Edit, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bSetBoundsButton; // 0x0258(0x0001)(Edit, ZeroConstructor, Transient, EditConst, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bSnapBoundsToLandscape; // 0x0259(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_25A[0x2]; // 0x025A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ExpandBounds; // 0x025C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class URuntimeVirtualTexture* VirtualTexture; // 0x0260(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, TextExportTransient, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FPerPlatformBool EnableInGamePerPlatform; // 0x0268(0x0001)(Edit, NoDestructor, AdvancedDisplay, Protected, NativeAccessSpecifierProtected) + bool bEnableForNaniteOnly; // 0x0269(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseMinMaterialQuality; // 0x026A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ERuntimeVirtualTextureMaterialQuality MinInGameMaterialQuality; // 0x026B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bEnableScalability; // 0x026C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_26D[0x3]; // 0x026D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 ScalabilityGroup; // 0x0270(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bHidePrimitives; // 0x0274(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_275[0x3]; // 0x0275(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class UVirtualTextureBuilder* StreamingTexture; // 0x0278(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 StreamLowMips; // 0x0280(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bBuildStreamingMipsButton; // 0x0284(0x0001)(Edit, ZeroConstructor, Transient, EditConst, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ETextureLossyCompressionAmount LossyCompressionAmount; // 0x0285(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseStreamingMipsFixedColor; // 0x0286(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_287[0x1]; // 0x0287(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor StreamingMipsFixedColor; // 0x0288(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseStreamingMipsOnly; // 0x0298(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseStreamingMipsInEditor; // 0x0299(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_29A[0x36]; // 0x029A(0x0036)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Invalidate(const struct FBoxSphereBounds& WorldBounds); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeVirtualTextureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeVirtualTextureComponent") + } + static class URuntimeVirtualTextureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeVirtualTextureComponent; + +// Class Engine.MaterialExpressionSubstrateEyeBSDF +// 0x0148 (0x01F8 - 0x00B0) +class UMaterialExpressionSubstrateEyeBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput DiffuseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CorneaNormal; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IrisNormal; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IrisPlaneNormal; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IrisMask; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput IrisDistance; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class USubsurfaceProfile* SubsurfaceProfile; // 0x01F0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateEyeBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateEyeBSDF") + } + static class UMaterialExpressionSubstrateEyeBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateEyeBSDF; + +// Class Engine.MaterialExpressionMaterialProxyReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionMaterialProxyReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Realtime; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MaterialProxy; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMaterialProxyReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMaterialProxyReplace") + } + static class UMaterialExpressionMaterialProxyReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMaterialProxyReplace; + +// Class Engine.MaterialExpressionMaterialSample +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionMaterialSample final : public UMaterialExpression +{ +public: + class UMaterialInterface* MaterialReference; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMaterialSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMaterialSample") + } + static class UMaterialExpressionMaterialSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMaterialSample; + +// Class Engine.MaterialExpressionSubstrateWeight +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstrateWeight final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Weight; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateWeight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateWeight") + } + static class UMaterialExpressionSubstrateWeight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateWeight; + +// Class Engine.MaterialExpressionMax +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionMax final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMax") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMax") + } + static class UMaterialExpressionMax* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMax; + +// Class Engine.MaterialExpressionMeshPaintTextureCoordinateIndex +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionMeshPaintTextureCoordinateIndex final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMeshPaintTextureCoordinateIndex") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMeshPaintTextureCoordinateIndex") + } + static class UMaterialExpressionMeshPaintTextureCoordinateIndex* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMeshPaintTextureCoordinateIndex; + +// Class Engine.SplineMeshComponent +// 0x0130 (0x06F0 - 0x05C0) +class USplineMeshComponent final : public UStaticMeshComponent +{ +public: + uint8 Pad_5B8[0x8]; // 0x05B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSplineMeshParams SplineParams; // 0x05C0(0x00B0)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FVector SplineUpDir; // 0x0670(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SplineBoundaryMin; // 0x0688(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid CachedMeshBodySetupGuid; // 0x068C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VirtualTextureMainPassMaxDrawDistance; // 0x069C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A0[0x38]; // 0x06A0(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + class UBodySetup* BodySetup; // 0x06D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SplineBoundaryMax; // 0x06E0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineMeshAxis ForwardAxis; // 0x06E4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowSplineEditingPerInstance : 1; // 0x06E5(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSmoothInterpRollScale : 1; // 0x06E5(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMeshDirty : 1; // 0x06E5(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNeverNeedsCookedCollisionData : 1; // 0x06E5(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_6E6[0xA]; // 0x06E6(0x000A)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetBoundaryMax(float InBoundaryMax, bool bUpdateMesh); + void SetBoundaryMin(float InBoundaryMin, bool bUpdateMesh); + void SetEndOffset(const struct FVector2D& EndOffset, bool bUpdateMesh); + void SetEndPosition(const struct FVector& EndPos, bool bUpdateMesh); + void SetEndRoll(float EndRoll, bool bUpdateMesh); + void SetEndRollDegrees(float EndRollDegrees, bool bUpdateMesh); + void SetEndScale(const struct FVector2D& EndScale, bool bUpdateMesh); + void SetEndTangent(const struct FVector& EndTangent, bool bUpdateMesh); + void SetForwardAxis(ESplineMeshAxis InForwardAxis, bool bUpdateMesh); + void SetSplineUpDir(const struct FVector& InSplineUpDir, bool bUpdateMesh); + void SetStartAndEnd(const struct FVector& StartPos, const struct FVector& StartTangent, const struct FVector& EndPos, const struct FVector& EndTangent, bool bUpdateMesh); + void SetStartOffset(const struct FVector2D& StartOffset, bool bUpdateMesh); + void SetStartPosition(const struct FVector& StartPos, bool bUpdateMesh); + void SetStartRoll(float StartRoll, bool bUpdateMesh); + void SetStartRollDegrees(float StartRollDegrees, bool bUpdateMesh); + void SetStartScale(const struct FVector2D& StartScale, bool bUpdateMesh); + void SetStartTangent(const struct FVector& StartTangent, bool bUpdateMesh); + void UpdateMesh(); + + float GetBoundaryMax() const; + float GetBoundaryMin() const; + struct FVector2D GetEndOffset() const; + struct FVector GetEndPosition() const; + float GetEndRoll() const; + struct FVector2D GetEndScale() const; + struct FVector GetEndTangent() const; + ESplineMeshAxis GetForwardAxis() const; + struct FVector GetSplineUpDir() const; + struct FVector2D GetStartOffset() const; + struct FVector GetStartPosition() const; + float GetStartRoll() const; + struct FVector2D GetStartScale() const; + struct FVector GetStartTangent() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SplineMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SplineMeshComponent") + } + static class USplineMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USplineMeshComponent; + +// Class Engine.MaterialExpressionSubstrateUI +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstrateUI final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput Color; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Opacity; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateUI") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateUI") + } + static class UMaterialExpressionSubstrateUI* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateUI; + +// Class Engine.MaterialExpressionMeshPaintTextureObject +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionMeshPaintTextureObject final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMeshPaintTextureObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMeshPaintTextureObject") + } + static class UMaterialExpressionMeshPaintTextureObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMeshPaintTextureObject; + +// Class Engine.MaterialExpressionMeshPaintTextureReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionMeshPaintTextureReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MeshPaintTexture; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMeshPaintTextureReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMeshPaintTextureReplace") + } + static class UMaterialExpressionMeshPaintTextureReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMeshPaintTextureReplace; + +// Class Engine.MaterialExpressionSubstrateUnlitBSDF +// 0x0078 (0x0128 - 0x00B0) +class UMaterialExpressionSubstrateUnlitBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput EmissiveColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput TransmittanceColor; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateUnlitBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateUnlitBSDF") + } + static class UMaterialExpressionSubstrateUnlitBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateUnlitBSDF; + +// Class Engine.MaterialExpressionMin +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionMin final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMin") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMin") + } + static class UMaterialExpressionMin* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMin; + +// Class Engine.MaterialExpressionMultiply +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionMultiply final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstA; // 0x0100(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstB; // 0x0104(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionMultiply") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionMultiply") + } + static class UMaterialExpressionMultiply* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionMultiply; + +// Class Engine.NavigationSystemConfig +// 0x0030 (0x0058 - 0x0028) +class UNavigationSystemConfig : public UObject +{ +public: + struct FSoftClassPath NavigationSystemClass; // 0x0028(0x0020)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNavAgentSelector SupportedAgentsMask; // 0x0048(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + class FName DefaultAgentName; // 0x004C(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsOverriden : 1; // 0x0054(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, EditConst, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationSystemConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationSystemConfig") + } + static class UNavigationSystemConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavigationSystemConfig; + +// Class Engine.MaterialExpressionNamedRerouteUsage +// 0x0018 (0x00C8 - 0x00B0) +class UMaterialExpressionNamedRerouteUsage final : public UMaterialExpressionNamedRerouteBase +{ +public: + class UMaterialExpressionNamedRerouteDeclaration* Declaration; // 0x00B0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid DeclarationGuid; // 0x00B8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNamedRerouteUsage") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNamedRerouteUsage") + } + static class UMaterialExpressionNamedRerouteUsage* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNamedRerouteUsage; + +// Class Engine.NavigationDataChunk +// 0x0008 (0x0030 - 0x0028) +class UNavigationDataChunk : public UObject +{ +public: + class FName NavigationDataName; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationDataChunk") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationDataChunk") + } + static class UNavigationDataChunk* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavigationDataChunk; + +// Class Engine.MaterialExpressionNeuralNetworkInput +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionNeuralNetworkInput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Input0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Mask; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ENeuralIndexType NeuralIndexType; // 0x0128(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_129[0x7]; // 0x0129(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNeuralNetworkInput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNeuralNetworkInput") + } + static class UMaterialExpressionNeuralNetworkInput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNeuralNetworkInput; + +// Class Engine.MaterialExpressionNoise +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionNoise final : public UMaterialExpression +{ +public: + struct FExpressionInput position; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput FilterWidth; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Scale; // 0x0108(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Quality; // 0x010C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENoiseFunction NoiseFunction; // 0x0110(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_111[0x3]; // 0x0111(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bTurbulence : 1; // 0x0114(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_115[0x3]; // 0x0115(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Levels; // 0x0118(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutputMin; // 0x011C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutputMax; // 0x0120(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LevelScale; // 0x0124(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTiling : 1; // 0x0128(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_129[0x3]; // 0x0129(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 RepeatSize; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionNoise") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionNoise") + } + static class UMaterialExpressionNoise* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionNoise; + +// Class Engine.BlendSpace1D +// 0x0008 (0x01C8 - 0x01C0) +class UBlendSpace1D : public UBlendSpace +{ +public: + bool bScaleAnimation; // 0x01C0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C1[0x7]; // 0x01C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlendSpace1D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlendSpace1D") + } + static class UBlendSpace1D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlendSpace1D; + +// Class Engine.AimOffsetBlendSpace1D +// 0x0000 (0x01C8 - 0x01C8) +class UAimOffsetBlendSpace1D final : public UBlendSpace1D +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AimOffsetBlendSpace1D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AimOffsetBlendSpace1D") + } + static class UAimOffsetBlendSpace1D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAimOffsetBlendSpace1D; + +// Class Engine.MaterialExpressionObjectBounds +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionObjectBounds final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionObjectBounds") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionObjectBounds") + } + static class UMaterialExpressionObjectBounds* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionObjectBounds; + +// Class Engine.MaterialExpressionObjectOrientation +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionObjectOrientation final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionObjectOrientation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionObjectOrientation") + } + static class UMaterialExpressionObjectOrientation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionObjectOrientation; + +// Class Engine.AnimBoneCompressionCodec +// 0x0010 (0x0038 - 0x0028) +class UAnimBoneCompressionCodec : public UObject +{ +public: + class FString Description; // 0x0028(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBoneCompressionCodec") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBoneCompressionCodec") + } + static class UAnimBoneCompressionCodec* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBoneCompressionCodec; + +// Class Engine.MaterialExpressionObjectRadius +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionObjectRadius final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionObjectRadius") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionObjectRadius") + } + static class UMaterialExpressionObjectRadius* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionObjectRadius; + +// Class Engine.MaterialExpressionParticleMotionBlurFade +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleMotionBlurFade final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleMotionBlurFade") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleMotionBlurFade") + } + static class UMaterialExpressionParticleMotionBlurFade* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleMotionBlurFade; + +// Class Engine.StereoLayerShape +// 0x0000 (0x0028 - 0x0028) +class UStereoLayerShape : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerShape") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerShape") + } + static class UStereoLayerShape* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerShape; + +// Class Engine.StereoLayerShapeCylinder +// 0x0010 (0x0038 - 0x0028) +class UStereoLayerShapeCylinder final : public UStereoLayerShape +{ +public: + float Radius; // 0x0028(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverlayArc; // 0x002C(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x0030(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetHeight(int32 InHeight); + void SetOverlayArc(float InOverlayArc); + void SetRadius(float InRadius); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerShapeCylinder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerShapeCylinder") + } + static class UStereoLayerShapeCylinder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerShapeCylinder; + +// Class Engine.MaterialExpressionParticleRadius +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleRadius final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleRadius") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleRadius") + } + static class UMaterialExpressionParticleRadius* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleRadius; + +// Class Engine.MaterialExpressionParticleRelativeTime +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleRelativeTime final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleRelativeTime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleRelativeTime") + } + static class UMaterialExpressionParticleRelativeTime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleRelativeTime; + +// Class Engine.StreamingWorldSubsystemInterface +// 0x0000 (0x0000 - 0x0000) +class IStreamingWorldSubsystemInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StreamingWorldSubsystemInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StreamingWorldSubsystemInterface") + } + static class IStreamingWorldSubsystemInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IStreamingWorldSubsystemInterface; + +// Class Engine.MaterialExpressionParticleSpeed +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionParticleSpeed final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionParticleSpeed") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionParticleSpeed") + } + static class UMaterialExpressionParticleSpeed* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionParticleSpeed; + +// Class Engine.MaterialExpressionPathTracingBufferTexture +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionPathTracingBufferTexture final : public UMaterialExpression +{ +public: + struct FExpressionInput Coordinates; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPathTracingBufferTextureId PathTracingBufferTextureId; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPathTracingBufferTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPathTracingBufferTexture") + } + static class UMaterialExpressionPathTracingBufferTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPathTracingBufferTexture; + +// Class Engine.MaterialExpressionPerInstanceCustomData3Vector +// 0x0040 (0x00F0 - 0x00B0) +class UMaterialExpressionPerInstanceCustomData3Vector final : public UMaterialExpression +{ +public: + struct FExpressionInput DefaultValue; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FLinearColor ConstDefaultValue; // 0x00D8(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 DataIndex; // 0x00E8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_EC[0x4]; // 0x00EC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPerInstanceCustomData3Vector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPerInstanceCustomData3Vector") + } + static class UMaterialExpressionPerInstanceCustomData3Vector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPerInstanceCustomData3Vector; + +// Class Engine.MaterialExpressionPerInstanceRandom +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPerInstanceRandom final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPerInstanceRandom") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPerInstanceRandom") + } + static class UMaterialExpressionPerInstanceRandom* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPerInstanceRandom; + +// Class Engine.PlayerCameraManager +// 0x22F8 (0x25A0 - 0x02A8) +class APlayerCameraManager final : public AActor +{ +public: + class APlayerController* PCOwner; // 0x02A8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* TransformComponent; // 0x02B0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2B8[0x8]; // 0x02B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultFOV; // 0x02C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C4[0x4]; // 0x02C4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultOrthoWidth; // 0x02C8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2CC[0x4]; // 0x02CC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultAspectRatio; // 0x02D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D4[0x6C]; // 0x02D4(0x006C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTViewTarget ViewTarget; // 0x0340(0x0850)(Transient, NativeAccessSpecifierPublic) + struct FTViewTarget PendingViewTarget; // 0x0B90(0x0850)(Transient, NativeAccessSpecifierPublic) + uint8 Pad_13E0[0x30]; // 0x13E0(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCameraCacheEntry CameraCachePrivate; // 0x1410(0x0840)(Transient, NativeAccessSpecifierPrivate) + struct FCameraCacheEntry LastFrameCameraCachePrivate; // 0x1C50(0x0840)(Transient, NativeAccessSpecifierPrivate) + TArray ModifierList; // 0x2490(0x0010)(ZeroConstructor, Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray> DefaultModifiers; // 0x24A0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, UObjectWrapper, NativeAccessSpecifierPublic) + float FreeCamDistance; // 0x24B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24B4[0x4]; // 0x24B4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector FreeCamOffset; // 0x24B8(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ViewTargetOffset; // 0x24D0(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnAudioFadeChangeEvent; // 0x24E8(0x0010)(ZeroConstructor, Transient, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_24F8[0x18]; // 0x24F8(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> CameraLensEffects; // 0x2510(0x0010)(ZeroConstructor, Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + class UCameraModifier_CameraShake* CachedCameraShakeMod; // 0x2520(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray PostProcessBlendCache; // 0x2528(0x0010)(ZeroConstructor, Transient, Protected, NativeAccessSpecifierProtected) + uint8 Pad_2538[0x20]; // 0x2538(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + class ACameraActor* AnimCameraActor; // 0x2558(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bIsOrthographic : 1; // 0x2560(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoCalculateOrthoPlanes : 1; // 0x2560(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2561[0x3]; // 0x2561(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoPlaneShift; // 0x2564(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUpdateOrthoPlanes : 1; // 0x2568(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseCameraHeightAsViewTarget : 1; // 0x2568(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultConstrainAspectRatio : 1; // 0x2568(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2568_3 : 4; // 0x2568(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bClientSimulatingViewTarget : 1; // 0x2568(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseClientSideCameraUpdates : 1; // 0x2569(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2569_1 : 2; // 0x2569(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bGameCameraCutThisFrame : 1; // 0x2569(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_256A[0x2]; // 0x256A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ViewPitchMin; // 0x256C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewPitchMax; // 0x2570(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewYawMin; // 0x2574(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewYawMax; // 0x2578(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewRollMin; // 0x257C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewRollMax; // 0x2580(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2584[0x4]; // 0x2584(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float ServerUpdateCameraTimeout; // 0x2588(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_258C[0x14]; // 0x258C(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class AEmitterCameraLensEffectBase* AddCameraLensEffect(TSubclassOf LensEffectEmitterClass); + TScriptInterface AddGenericCameraLensEffect(TSubclassOf LensEffectEmitterClass); + class UCameraModifier* AddNewCameraModifier(TSubclassOf ModifierClass); + bool BlueprintUpdateCamera(class AActor* CameraTarget, struct FVector* NewCameraLocation, struct FRotator* NewCameraRotation, float* NewCameraFOV); + void ClearCameraLensEffects(); + class UCameraModifier* FindCameraModifierByClass(TSubclassOf ModifierClass); + void OnPhotographyMultiPartCaptureEnd(); + void OnPhotographyMultiPartCaptureStart(); + void OnPhotographySessionEnd(); + void OnPhotographySessionStart(); + void PhotographyCameraModify(const struct FVector& NewCameraLocation, const struct FVector& PreviousCameraLocation, const struct FVector& OriginalCameraLocation, struct FVector* ResultCameraLocation); + void RemoveCameraLensEffect(class AEmitterCameraLensEffectBase* Emitter); + bool RemoveCameraModifier(class UCameraModifier* ModifierToRemove); + void RemoveGenericCameraLensEffect(TScriptInterface Emitter); + void SetGameCameraCutThisFrame(); + void SetManualCameraFade(float InFadeAmount, const struct FLinearColor& Color, bool bInFadeAudio); + void StartCameraFade(float FromAlpha, float ToAlpha, float duration, const struct FLinearColor& Color, bool bShouldFadeAudio, bool bHoldWhenFinished); + class UCameraShakeBase* StartCameraShake(TSubclassOf ShakeClass, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot); + class UCameraShakeBase* StartCameraShakeFromSource(TSubclassOf ShakeClass, class UCameraShakeSourceComponent* SourceComponent, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot); + void StopAllCameraShakes(bool bImmediately); + void StopAllCameraShakesFromSource(class UCameraShakeSourceComponent* SourceComponent, bool bImmediately); + void StopAllInstancesOfCameraShake(TSubclassOf Shake, bool bImmediately); + void StopAllInstancesOfCameraShakeFromSource(TSubclassOf Shake, class UCameraShakeSourceComponent* SourceComponent, bool bImmediately); + void StopCameraFade(); + void StopCameraShake(class UCameraShakeBase* ShakeInstance, bool bImmediately); + void SwapPendingViewTargetWhenUsingClientSideCameraUpdates(); + + struct FVector GetCameraLocation() const; + struct FRotator GetCameraRotation() const; + float GetFOVAngle() const; + class APlayerController* GetOwningPlayerController() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerCameraManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerCameraManager") + } + static class APlayerCameraManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlayerCameraManager; + +// Class Engine.MaterialExpressionPostVolumeUserFlagTest +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionPostVolumeUserFlagTest final : public UMaterialExpression +{ +public: + struct FExpressionInput BitIndex; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + int32 ConstBitIndex; // 0x00D8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0x4]; // 0x00DC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPostVolumeUserFlagTest") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPostVolumeUserFlagTest") + } + static class UMaterialExpressionPostVolumeUserFlagTest* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPostVolumeUserFlagTest; + +// Class Engine.PrecomputedVisibilityOverrideVolume +// 0x0030 (0x0310 - 0x02E0) +class APrecomputedVisibilityOverrideVolume final : public AVolume +{ +public: + TArray OverrideVisibleActors; // 0x02E0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray OverrideInvisibleActors; // 0x02F0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray OverrideInvisibleLevels; // 0x0300(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PrecomputedVisibilityOverrideVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PrecomputedVisibilityOverrideVolume") + } + static class APrecomputedVisibilityOverrideVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APrecomputedVisibilityOverrideVolume; + +// Class Engine.MaterialExpressionPrecomputedAOMask +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPrecomputedAOMask final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPrecomputedAOMask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPrecomputedAOMask") + } + static class UMaterialExpressionPrecomputedAOMask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPrecomputedAOMask; + +// Class Engine.MaterialExpressionPreSkinnedNormal +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionPreSkinnedNormal final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPreSkinnedNormal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPreSkinnedNormal") + } + static class UMaterialExpressionPreSkinnedNormal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPreSkinnedNormal; + +// Class Engine.ReplicationConnectionDriver +// 0x0000 (0x0028 - 0x0028) +class UReplicationConnectionDriver final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationConnectionDriver") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationConnectionDriver") + } + static class UReplicationConnectionDriver* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReplicationConnectionDriver; + +// Class Engine.MaterialExpressionPreviousFrameSwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionPreviousFrameSwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput CurrentFrame; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PreviousFrame; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionPreviousFrameSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionPreviousFrameSwitch") + } + static class UMaterialExpressionPreviousFrameSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionPreviousFrameSwitch; + +// Class Engine.MaterialExpressionRayTracingQualitySwitch +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionRayTracingQualitySwitch final : public UMaterialExpression +{ +public: + struct FExpressionInput Normal; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput RayTraced; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRayTracingQualitySwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRayTracingQualitySwitch") + } + static class UMaterialExpressionRayTracingQualitySwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRayTracingQualitySwitch; + +// Class Engine.MaterialExpressionReflectionVectorWS +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionReflectionVectorWS final : public UMaterialExpression +{ +public: + struct FExpressionInput CustomWorldNormal; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bNormalizeCustomWorldNormal : 1; // 0x00D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionReflectionVectorWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionReflectionVectorWS") + } + static class UMaterialExpressionReflectionVectorWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionReflectionVectorWS; + +// Class Engine.MaterialExpressionReroute +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionReroute final : public UMaterialExpressionRerouteBase +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionReroute") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionReroute") + } + static class UMaterialExpressionReroute* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionReroute; + +// Class Engine.WorldPartitionRuntimeCellTransformerLog +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionRuntimeCellTransformerLog final : public UWorldPartitionRuntimeCellTransformer +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellTransformerLog") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellTransformerLog") + } + static class UWorldPartitionRuntimeCellTransformerLog* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellTransformerLog; + +// Class Engine.MaterialExpressionRotateAboutAxis +// 0x00A8 (0x0158 - 0x00B0) +class UMaterialExpressionRotateAboutAxis final : public UMaterialExpression +{ +public: + struct FExpressionInput NormalizedRotationAxis; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput RotationAngle; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput PivotPoint; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput position; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float Period; // 0x0150(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_154[0x4]; // 0x0154(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRotateAboutAxis") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRotateAboutAxis") + } + static class UMaterialExpressionRotateAboutAxis* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRotateAboutAxis; + +// Class Engine.MaterialExpressionRound +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionRound final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRound") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRound") + } + static class UMaterialExpressionRound* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRound; + +// Class Engine.WorldPartitionRuntimeHash +// 0x0050 (0x0078 - 0x0028) +class UWorldPartitionRuntimeHash : public UObject +{ +public: + uint8 Pad_28[0x50]; // 0x0028(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeHash") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeHash") + } + static class UWorldPartitionRuntimeHash* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeHash; + +// Class Engine.WorldPartitionRuntimeHashSet +// 0x00D0 (0x0148 - 0x0078) +class UWorldPartitionRuntimeHashSet final : public UWorldPartitionRuntimeHash +{ +public: + TArray RuntimePartitions; // 0x0078(0x0010)(Edit, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TArray RuntimeStreamingData; // 0x0088(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TMap WorldAssetStreamingObjects; // 0x0098(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_E8[0x60]; // 0x00E8(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeHashSet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeHashSet") + } + static class UWorldPartitionRuntimeHashSet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeHashSet; + +// Class Engine.MaterialExpressionRuntimeVirtualTextureReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionRuntimeVirtualTextureReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput VirtualTextureOutput; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRuntimeVirtualTextureReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRuntimeVirtualTextureReplace") + } + static class UMaterialExpressionRuntimeVirtualTextureReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRuntimeVirtualTextureReplace; + +// Class Engine.MaterialExpressionRuntimeVirtualTextureSampleParameter +// 0x0028 (0x01B0 - 0x0188) +class UMaterialExpressionRuntimeVirtualTextureSampleParameter final : public UMaterialExpressionRuntimeVirtualTextureSample +{ +public: + class FName ParameterName; // 0x0188(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0190(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x01A0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x01A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1AC[0x4]; // 0x01AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionRuntimeVirtualTextureSampleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionRuntimeVirtualTextureSampleParameter") + } + static class UMaterialExpressionRuntimeVirtualTextureSampleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionRuntimeVirtualTextureSampleParameter; + +// Class Engine.ActorFolder +// 0x0000 (0x0028 - 0x0028) +class UActorFolder final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorFolder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorFolder") + } + static class UActorFolder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorFolder; + +// Class Engine.MaterialExpressionSamplePhysicsScalarField +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSamplePhysicsScalarField final : public UMaterialExpression +{ +public: + struct FExpressionInput WorldPosition; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldScalarType FieldTarget; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSamplePhysicsScalarField") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSamplePhysicsScalarField") + } + static class UMaterialExpressionSamplePhysicsScalarField* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSamplePhysicsScalarField; + +// Class Engine.MaterialExpressionSaturate +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionSaturate final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSaturate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSaturate") + } + static class UMaterialExpressionSaturate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSaturate; + +// Class Engine.SkeletalMeshActor +// 0x0080 (0x0328 - 0x02A8) +class ASkeletalMeshActor final : public AActor +{ +public: + uint8 bShouldDoAnimNotifies : 1; // 0x02A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2A9[0x7]; // 0x02A9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeletalMeshComponent* SkeletalMeshComponent; // 0x02B0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USkeletalMesh* ReplicatedMesh; // 0x02B8(0x0008)(Net, ZeroConstructor, Transient, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsAsset* ReplicatedPhysAsset; // 0x02C0(0x0008)(Net, ZeroConstructor, Transient, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* ReplicatedMaterial0; // 0x02C8(0x0008)(Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* ReplicatedMaterial1; // 0x02D0(0x0008)(Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D8[0x50]; // 0x02D8(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_ReplicatedMaterial0(); + void OnRep_ReplicatedMaterial1(); + void OnRep_ReplicatedMesh(); + void OnRep_ReplicatedPhysAsset(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshActor") + } + static class ASkeletalMeshActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASkeletalMeshActor; + +// Class Engine.MaterialExpressionSceneTexelSize +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionSceneTexelSize final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSceneTexelSize") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSceneTexelSize") + } + static class UMaterialExpressionSceneTexelSize* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSceneTexelSize; + +// Class Engine.AsyncActionLoadPrimaryAssetBase +// 0x0048 (0x0078 - 0x0030) +class UAsyncActionLoadPrimaryAssetBase : public UBlueprintAsyncActionBase +{ +public: + uint8 Pad_30[0x48]; // 0x0030(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionLoadPrimaryAssetBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionLoadPrimaryAssetBase") + } + static class UAsyncActionLoadPrimaryAssetBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionLoadPrimaryAssetBase; + +// Class Engine.AsyncActionLoadPrimaryAsset +// 0x0010 (0x0088 - 0x0078) +class UAsyncActionLoadPrimaryAsset final : public UAsyncActionLoadPrimaryAssetBase +{ +public: + TMulticastInlineDelegate Completed; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UAsyncActionLoadPrimaryAsset* AsyncLoadPrimaryAsset(class UObject* WorldContextObject, const struct FPrimaryAssetId& PrimaryAsset, const TArray& LoadBundles); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionLoadPrimaryAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionLoadPrimaryAsset") + } + static class UAsyncActionLoadPrimaryAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionLoadPrimaryAsset; + +// Class Engine.MaterialExpressionScreenPosition +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionScreenPosition final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionScreenPosition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionScreenPosition") + } + static class UMaterialExpressionScreenPosition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionScreenPosition; + +// Class Engine.MaterialExpressionSetMaterialAttributes +// 0x0020 (0x00D0 - 0x00B0) +class UMaterialExpressionSetMaterialAttributes final : public UMaterialExpression +{ +public: + TArray Inputs; // 0x00B0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray AttributeSetTypes; // 0x00C0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSetMaterialAttributes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSetMaterialAttributes") + } + static class UMaterialExpressionSetMaterialAttributes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSetMaterialAttributes; + +// Class Engine.AsyncActionChangePrimaryAssetBundles +// 0x0010 (0x0088 - 0x0078) +class UAsyncActionChangePrimaryAssetBundles final : public UAsyncActionLoadPrimaryAssetBase +{ +public: + TMulticastInlineDelegate Completed; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UAsyncActionChangePrimaryAssetBundles* AsyncChangeBundleStateForMatchingPrimaryAssets(class UObject* WorldContextObject, const TArray& NewBundles, const TArray& OldBundles); + static class UAsyncActionChangePrimaryAssetBundles* AsyncChangeBundleStateForPrimaryAssetList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& AddBundles, const TArray& RemoveBundles); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionChangePrimaryAssetBundles") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionChangePrimaryAssetBundles") + } + static class UAsyncActionChangePrimaryAssetBundles* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionChangePrimaryAssetBundles; + +// Class Engine.MaterialExpressionShadingModel +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionShadingModel final : public UMaterialExpression +{ +public: + EMaterialShadingModel ShadingModel; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionShadingModel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionShadingModel") + } + static class UMaterialExpressionShadingModel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionShadingModel; + +// Class Engine.MaterialExpressionShadowReplace +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionShadowReplace final : public UMaterialExpression +{ +public: + struct FExpressionInput Default; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Shadow; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionShadowReplace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionShadowReplace") + } + static class UMaterialExpressionShadowReplace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionShadowReplace; + +// Class Engine.AudioBus +// 0x0010 (0x0038 - 0x0028) +class UAudioBus final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EAudioBusChannels AudioBusChannels; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioBus") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioBus") + } + static class UAudioBus* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioBus; + +// Class Engine.MaterialExpressionSkyAtmosphereLightDirection +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionSkyAtmosphereLightDirection final : public UMaterialExpression +{ +public: + int32 LightIndex; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereLightDirection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereLightDirection") + } + static class UMaterialExpressionSkyAtmosphereLightDirection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereLightDirection; + +// Class Engine.AnimCompositeBase +// 0x0008 (0x00B8 - 0x00B0) +class UAnimCompositeBase : public UAnimSequenceBase +{ +public: + struct FFrameRate CommonTargetFrameRate; // 0x00B0(0x0008)(Edit, EditConst, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompositeBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompositeBase") + } + static class UAnimCompositeBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompositeBase; + +// Class Engine.AnimComposite +// 0x0010 (0x00C8 - 0x00B8) +class UAnimComposite final : public UAnimCompositeBase +{ +public: + struct FAnimTrack AnimationTrack; // 0x00B8(0x0010)(NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimComposite") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimComposite") + } + static class UAnimComposite* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimComposite; + +// Class Engine.MaterialExpressionSkyAtmosphereLightIlluminanceOnGround +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionSkyAtmosphereLightIlluminanceOnGround final : public UMaterialExpression +{ +public: + int32 LightIndex; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0x4]; // 0x00B4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereLightIlluminanceOnGround") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereLightIlluminanceOnGround") + } + static class UMaterialExpressionSkyAtmosphereLightIlluminanceOnGround* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereLightIlluminanceOnGround; + +// Class Engine.MaterialExpressionSkyAtmosphereAerialPerspective +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionSkyAtmosphereAerialPerspective final : public UMaterialExpression +{ +public: + struct FExpressionInput WorldPosition; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereAerialPerspective") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereAerialPerspective") + } + static class UMaterialExpressionSkyAtmosphereAerialPerspective* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereAerialPerspective; + +// Class Engine.AnimCompress +// 0x0008 (0x0040 - 0x0038) +class UAnimCompress : public UAnimBoneCompressionCodec +{ +public: + uint8 bNeedsSkeleton : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EAnimationCompressionFormat TranslationCompressionFormat; // 0x003C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimationCompressionFormat RotationCompressionFormat; // 0x003D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimationCompressionFormat ScaleCompressionFormat; // 0x003E(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3F[0x1]; // 0x003F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress") + } + static class UAnimCompress* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress; + +// Class Engine.AnimCompress_RemoveLinearKeys +// 0x0020 (0x0060 - 0x0040) +class UAnimCompress_RemoveLinearKeys : public UAnimCompress +{ +public: + float MaxPosDiff; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAngleDiff; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxScaleDiff; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxEffectorDiff; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinEffectorDiff; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EffectorDiffSocket; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParentKeyScale; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRetarget : 1; // 0x005C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bActuallyFilterLinearKeys : 1; // 0x005C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5D[0x3]; // 0x005D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_RemoveLinearKeys") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_RemoveLinearKeys") + } + static class UAnimCompress_RemoveLinearKeys* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_RemoveLinearKeys; + +// Class Engine.MaterialExpressionSkyAtmosphereViewLuminance +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionSkyAtmosphereViewLuminance final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyAtmosphereViewLuminance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyAtmosphereViewLuminance") + } + static class UMaterialExpressionSkyAtmosphereViewLuminance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyAtmosphereViewLuminance; + +// Class Engine.WorldPartitionLevelStreamingDynamic +// 0x0030 (0x01F0 - 0x01C0) +class UWorldPartitionLevelStreamingDynamic final : public ULevelStreamingDynamic +{ +public: + bool bShouldBeAlwaysLoaded; // 0x01B8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1B9[0x3]; // 0x01B9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr StreamingCell; // 0x01BC(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1C4[0x4]; // 0x01C4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftObjectPtr OuterWorldPartition; // 0x01C8(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionLevelStreamingDynamic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionLevelStreamingDynamic") + } + static class UWorldPartitionLevelStreamingDynamic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionLevelStreamingDynamic; + +// Class Engine.MaterialExpressionSkyLightEnvMapSample +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSkyLightEnvMapSample final : public UMaterialExpression +{ +public: + struct FExpressionInput Direction; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSkyLightEnvMapSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSkyLightEnvMapSample") + } + static class UMaterialExpressionSkyLightEnvMapSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSkyLightEnvMapSample; + +// Class Engine.ParticleModuleSpawn +// 0x00A8 (0x00E0 - 0x0038) +class UParticleModuleSpawn final : public UParticleModuleSpawnBase +{ +public: + struct FRawDistributionFloat Rate; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat RateScale; // 0x0068(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray BurstList; // 0x0098(0x0010)(Edit, ExportObject, ZeroConstructor, NoClear, NativeAccessSpecifierPublic) + struct FRawDistributionFloat BurstScale; // 0x00A8(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + EParticleBurstMethod ParticleBurstMethod; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x3]; // 0x00D9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bApplyGlobalSpawnRateScale : 1; // 0x00DC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_DD[0x3]; // 0x00DD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSpawn") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSpawn") + } + static class UParticleModuleSpawn* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSpawn; + +// Class Engine.MaterialExpressionSmoothStep +// 0x0088 (0x0138 - 0x00B0) +class UMaterialExpressionSmoothStep final : public UMaterialExpression +{ +public: + struct FExpressionInput min_0; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput max_0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Value; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstMin; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstMax; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstValue; // 0x0130(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_134[0x4]; // 0x0134(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSmoothStep") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSmoothStep") + } + static class UMaterialExpressionSmoothStep* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSmoothStep; + +// Class Engine.MaterialExpressionSobol +// 0x0090 (0x0140 - 0x00B0) +class UMaterialExpressionSobol final : public UMaterialExpression +{ +public: + struct FExpressionInput Cell; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Index_0; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Seed; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint32 ConstIndex; // 0x0128(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12C[0x4]; // 0x012C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D ConstSeed; // 0x0130(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSobol") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSobol") + } + static class UMaterialExpressionSobol* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSobol; + +// Class Engine.NetworkPhysicsSystem +// 0x0000 (0x0030 - 0x0030) +class UNetworkPhysicsSystem final : public UWorldSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkPhysicsSystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkPhysicsSystem") + } + static class UNetworkPhysicsSystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkPhysicsSystem; + +// Class Engine.ParticleEventManager +// 0x0000 (0x02A8 - 0x02A8) +class AParticleEventManager final : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleEventManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleEventManager") + } + static class AParticleEventManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AParticleEventManager; + +// Class Engine.MaterialExpressionSparseVolumeTextureSample +// 0x00D0 (0x0188 - 0x00B8) +class UMaterialExpressionSparseVolumeTextureSample : public UMaterialExpressionSparseVolumeTextureBase +{ +public: + struct FExpressionInput Coordinates; // 0x00B8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput TextureObject; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput MipValue; // 0x0108(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CoordinatesDX; // 0x0130(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput CoordinatesDY; // 0x0158(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + ETextureMipValueMode MipValueMode; // 0x0180(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESamplerSourceMode SamplerSource; // 0x0181(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_182[0x2]; // 0x0182(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ConstMipValue; // 0x0184(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSparseVolumeTextureSample") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSparseVolumeTextureSample") + } + static class UMaterialExpressionSparseVolumeTextureSample* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSparseVolumeTextureSample; + +// Class Engine.AnimCurveCompressionSettings +// 0x0008 (0x0030 - 0x0028) +class UAnimCurveCompressionSettings final : public UObject +{ +public: + class UAnimCurveCompressionCodec* Codec; // 0x0028(0x0008)(Edit, ExportObject, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveCompressionSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveCompressionSettings") + } + static class UAnimCurveCompressionSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveCompressionSettings; + +// Class Engine.MaterialExpressionSparseVolumeTextureSampleParameter +// 0x0028 (0x01B0 - 0x0188) +class UMaterialExpressionSparseVolumeTextureSampleParameter : public UMaterialExpressionSparseVolumeTextureSample +{ +public: + class FName ParameterName; // 0x0188(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0190(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x01A0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x01A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1AC[0x4]; // 0x01AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSparseVolumeTextureSampleParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSparseVolumeTextureSampleParameter") + } + static class UMaterialExpressionSparseVolumeTextureSampleParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSparseVolumeTextureSampleParameter; + +// Class Engine.MaterialExpressionSparseVolumeTextureObjectParameter +// 0x0000 (0x01B0 - 0x01B0) +class UMaterialExpressionSparseVolumeTextureObjectParameter final : public UMaterialExpressionSparseVolumeTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSparseVolumeTextureObjectParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSparseVolumeTextureObjectParameter") + } + static class UMaterialExpressionSparseVolumeTextureObjectParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSparseVolumeTextureObjectParameter; + +// Class Engine.MaterialExpressionSphereMask +// 0x00A8 (0x0158 - 0x00B0) +class UMaterialExpressionSphereMask final : public UMaterialExpression +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Radius; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Hardness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float AttenuationRadius; // 0x0150(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HardnessPercent; // 0x0154(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSphereMask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSphereMask") + } + static class UMaterialExpressionSphereMask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSphereMask; + +// Class Engine.TimelineComponent +// 0x00A0 (0x0140 - 0x00A0) +class UTimelineComponent final : public UActorComponent +{ +public: + struct FTimeline TheTimeline; // 0x00A0(0x0098)(Net, RepNotify, ContainsInstancedReference, NativeAccessSpecifierPrivate) + uint8 bIgnoreTimeDilation : 1; // 0x0138(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_139[0x7]; // 0x0139(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddEvent(float Time, TDelegate EventFunc); + void AddInterpFloat(class UCurveFloat* FloatCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName); + void AddInterpLinearColor(class UCurveLinearColor* LinearColorCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName); + void AddInterpVector(class UCurveVector* VectorCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName); + void OnRep_Timeline(struct FTimeline* OldTimeline); + void Play(); + void PlayFromStart(); + void Reverse(); + void ReverseFromEnd(); + void SetFloatCurve(class UCurveFloat* NewFloatCurve, class FName FloatTrackName); + void SetIgnoreTimeDilation(bool bNewIgnoreTimeDilation); + void SetLinearColorCurve(class UCurveLinearColor* NewLinearColorCurve, class FName LinearColorTrackName); + void SetLooping(bool bNewLooping); + void SetNewTime(float NewTime); + void SetPlaybackPosition(float NewPosition, bool bFireEvents, bool bFireUpdate); + void SetPlayRate(float NewRate); + void SetTimelineFinishedFunc(TDelegate NewTimelineFinishedFunc); + void SetTimelineLength(float NewLength); + void SetTimelineLengthMode(ETimelineLengthMode NewLengthMode); + void SetTimelinePostUpdateFunc(TDelegate NewTimelinePostUpdateFunc); + void SetVectorCurve(class UCurveVector* NewVectorCurve, class FName VectorTrackName); + void Stop(); + + bool GetIgnoreTimeDilation() const; + float GetPlaybackPosition() const; + float GetPlayRate() const; + float GetScaledTimelineLength() const; + float GetTimelineLength() const; + bool IsLooping() const; + bool IsPlaying() const; + bool IsReversing() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TimelineComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TimelineComponent") + } + static class UTimelineComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTimelineComponent; + +// Class Engine.MaterialExpressionSquareRoot +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionSquareRoot final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSquareRoot") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSquareRoot") + } + static class UMaterialExpressionSquareRoot* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSquareRoot; + +// Class Engine.MaterialExpressionStaticComponentMaskParameter +// 0x0030 (0x0108 - 0x00D8) +class UMaterialExpressionStaticComponentMaskParameter final : public UMaterialExpressionParameter +{ +public: + struct FExpressionInput Input; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 DefaultR : 1; // 0x0100(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DefaultG : 1; // 0x0100(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DefaultB : 1; // 0x0100(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DefaultA : 1; // 0x0100(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStaticComponentMaskParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStaticComponentMaskParameter") + } + static class UMaterialExpressionStaticComponentMaskParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStaticComponentMaskParameter; + +// Class Engine.MaterialExpressionStaticSwitchParameter +// 0x0050 (0x0130 - 0x00E0) +class UMaterialExpressionStaticSwitchParameter final : public UMaterialExpressionStaticBoolParameter +{ +public: + struct FExpressionInput A; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x0108(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionStaticSwitchParameter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionStaticSwitchParameter") + } + static class UMaterialExpressionStaticSwitchParameter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionStaticSwitchParameter; + +// Class Engine.VectorField +// 0x0040 (0x0068 - 0x0028) +class UVectorField : public UObject +{ +public: + struct FBox Bounds; // 0x0028(0x0038)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Intensity; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VectorField") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VectorField") + } + static class UVectorField* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVectorField; + +// Class Engine.MaterialExpressionSubstrateVolumetricFogCloudBSDF +// 0x00A8 (0x0158 - 0x00B0) +class UMaterialExpressionSubstrateVolumetricFogCloudBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput Albedo; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Extinction; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput AmbientOcclusion; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bEmissiveOnly : 1; // 0x0150(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_151[0x7]; // 0x0151(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateVolumetricFogCloudBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateVolumetricFogCloudBSDF") + } + static class UMaterialExpressionSubstrateVolumetricFogCloudBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateVolumetricFogCloudBSDF; + +// Class Engine.MaterialExpressionSubstrateHairBSDF +// 0x0118 (0x01C8 - 0x00B0) +class UMaterialExpressionSubstrateHairBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Scatter; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Backlit; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Tangent; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateHairBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateHairBSDF") + } + static class UMaterialExpressionSubstrateHairBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateHairBSDF; + +// Class Engine.AnimStreamable +// 0x0048 (0x00F8 - 0x00B0) +class UAnimStreamable final : public UAnimSequenceBase +{ +public: + int32 NumberOfKeys; // 0x00B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimInterpolationType Interpolation; // 0x00B4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B5[0x3]; // 0x00B5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName RetargetSource; // 0x00B8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameRate SamplingFrameRate; // 0x00C0(0x0008)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C8[0x10]; // 0x00C8(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimBoneCompressionSettings* BoneCompressionSettings; // 0x00D8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimCurveCompressionSettings* CurveCompressionSettings; // 0x00E0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVariableFrameStrippingSettings* VariableFrameStrippingSettings; // 0x00E8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRootMotion; // 0x00F0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERootMotionRootLock RootMotionRootLock; // 0x00F1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceRootLock; // 0x00F2(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseNormalizedRootMotionScale; // 0x00F3(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F4[0x4]; // 0x00F4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimStreamable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimStreamable") + } + static class UAnimStreamable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimStreamable; + +// Class Engine.MaterialExpressionSubstrateSingleLayerWaterBSDF +// 0x01B8 (0x0268 - 0x00B0) +class UMaterialExpressionSubstrateSingleLayerWaterBSDF final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Metallic; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Roughness; // 0x0128(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Normal; // 0x0150(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput EmissiveColor; // 0x0178(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput TopMaterialOpacity; // 0x01A0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterAlbedo; // 0x01C8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterExtinction; // 0x01F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput WaterPhaseG; // 0x0218(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ColorScaleBehindWater; // 0x0240(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateSingleLayerWaterBSDF") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateSingleLayerWaterBSDF") + } + static class UMaterialExpressionSubstrateSingleLayerWaterBSDF* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateSingleLayerWaterBSDF; + +// Class Engine.MaterialExpressionSubstrateConvertToDecal +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstrateConvertToDecal final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput DecalMaterial; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Coverage; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateConvertToDecal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateConvertToDecal") + } + static class UMaterialExpressionSubstrateConvertToDecal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateConvertToDecal; + +// Class Engine.MaterialExpressionSubstrateHorizontalMixing +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionSubstrateHorizontalMixing final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput background; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Foreground; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Mix; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bUseParameterBlending : 1; // 0x0128(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_129[0x7]; // 0x0129(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateHorizontalMixing") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateHorizontalMixing") + } + static class UMaterialExpressionSubstrateHorizontalMixing* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateHorizontalMixing; + +// Class Engine.CurveSourceInterface +// 0x0000 (0x0000 - 0x0000) +class ICurveSourceInterface final +{ +public: + class FName GetBindingName() const; + void GetCurves(TArray* OutValues) const; + float GetCurveValue(class FName CurveName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveSourceInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveSourceInterface") + } + static class ICurveSourceInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ICurveSourceInterface; + +// Class Engine.MaterialExpressionSubstrateAdd +// 0x0058 (0x0108 - 0x00B0) +class UMaterialExpressionSubstrateAdd final : public UMaterialExpressionSubstrateBSDF +{ +public: + struct FExpressionInput A; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput B; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bUseParameterBlending : 1; // 0x0100(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateAdd") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateAdd") + } + static class UMaterialExpressionSubstrateAdd* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateAdd; + +// Class Engine.NodeMappingProviderInterface +// 0x0000 (0x0000 - 0x0000) +class INodeMappingProviderInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NodeMappingProviderInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NodeMappingProviderInterface") + } + static class INodeMappingProviderInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INodeMappingProviderInterface; + +// Class Engine.MaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0 +// 0x0078 (0x0128 - 0x00B0) +class UMaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0 final : public UMaterialExpressionSubstrateUtilityBase +{ +public: + struct FExpressionInput BaseColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Metallic; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Specular; // 0x0100(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0") + } + static class UMaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateMetalnessToDiffuseAlbedoF0; + +// Class Engine.MaterialExpressionSubstrateHazinessToSecondaryRoughness +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubstrateHazinessToSecondaryRoughness final : public UMaterialExpressionSubstrateUtilityBase +{ +public: + struct FExpressionInput BaseRoughness; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Haziness; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubstrateHazinessToSecondaryRoughness") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubstrateHazinessToSecondaryRoughness") + } + static class UMaterialExpressionSubstrateHazinessToSecondaryRoughness* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubstrateHazinessToSecondaryRoughness; + +// Class Engine.ParticleModuleMeshRotation +// 0x0068 (0x0098 - 0x0030) +class UParticleModuleMeshRotation : public UParticleModuleRotationBase +{ +public: + struct FRawDistributionVector StartRotation; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bInheritParent : 1; // 0x0090(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotation") + } + static class UParticleModuleMeshRotation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotation; + +// Class Engine.ParticleModuleMeshRotation_Seeded +// 0x0020 (0x00B8 - 0x0098) +class UParticleModuleMeshRotation_Seeded final : public UParticleModuleMeshRotation +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0098(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotation_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotation_Seeded") + } + static class UParticleModuleMeshRotation_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotation_Seeded; + +// Class Engine.MaterialExpressionSubsurfaceMediumMaterialOutput +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionSubsurfaceMediumMaterialOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput MeanFreePath; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput ScatteringDistribution; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSubsurfaceMediumMaterialOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSubsurfaceMediumMaterialOutput") + } + static class UMaterialExpressionSubsurfaceMediumMaterialOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSubsurfaceMediumMaterialOutput; + +// Class Engine.MaterialExpressionSwitch +// 0x0080 (0x0130 - 0x00B0) +class UMaterialExpressionSwitch final : public UMaterialExpression +{ +public: + class FString Description; // 0x00B0(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput SwitchValue; // 0x00C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstSwitchValue; // 0x00E8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_EC[0x4]; // 0x00EC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FExpressionInput Default; // 0x00F0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + float ConstDefault; // 0x0118(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11C[0x4]; // 0x011C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Inputs; // 0x0120(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionSwitch") + } + static class UMaterialExpressionSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionSwitch; + +// Class Engine.ParticleModuleOrientationAxisLock +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleOrientationAxisLock final : public UParticleModuleOrientationBase +{ +public: + EParticleAxisLock LockAxisFlags; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleOrientationAxisLock") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleOrientationAxisLock") + } + static class UParticleModuleOrientationAxisLock* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleOrientationAxisLock; + +// Class Engine.MaterialExpressionTangentOutput +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionTangentOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTangentOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTangentOutput") + } + static class UMaterialExpressionTangentOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTangentOutput; + +// Class Engine.ParticleModulePivotOffset +// 0x0010 (0x0040 - 0x0030) +class UParticleModulePivotOffset final : public UParticleModuleLocationBase +{ +public: + struct FVector2D PivotOffset; // 0x0030(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModulePivotOffset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModulePivotOffset") + } + static class UParticleModulePivotOffset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModulePivotOffset; + +// Class Engine.MaterialExpressionTextureCoordinate +// 0x0010 (0x00C0 - 0x00B0) +class UMaterialExpressionTextureCoordinate final : public UMaterialExpression +{ +public: + int32 CoordinateIndex; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UTiling; // 0x00B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VTiling; // 0x00B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 UnMirrorU : 1; // 0x00BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 UnMirrorV : 1; // 0x00BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BD[0x3]; // 0x00BD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureCoordinate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureCoordinate") + } + static class UMaterialExpressionTextureCoordinate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureCoordinate; + +// Class Engine.MaterialExpressionTextureObjectFromCollection +// 0x0060 (0x0110 - 0x00B0) +class UMaterialExpressionTextureObjectFromCollection final : public UMaterialExpression +{ +public: + struct FExpressionInput TextureCollection; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + class UTextureCollection* TextureCollectionObject; // 0x00D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput CollectionIndex; // 0x00E0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + int32 ConstCollectionIndex; // 0x0108(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCollectionMemberType TextureType; // 0x010C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10D[0x3]; // 0x010D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureObjectFromCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureObjectFromCollection") + } + static class UMaterialExpressionTextureObjectFromCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureObjectFromCollection; + +// Class Engine.ParticleModuleRotationRate +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleRotationRate : public UParticleModuleRotationRateBase +{ +public: + struct FRawDistributionFloat StartRotationRate; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationRate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationRate") + } + static class UParticleModuleRotationRate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationRate; + +// Class Engine.MaterialExpressionTextureProperty +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionTextureProperty final : public UMaterialExpression +{ +public: + struct FExpressionInput TextureObject; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialExposedTextureProperty Property; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x7]; // 0x00D9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureProperty") + } + static class UMaterialExpressionTextureProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureProperty; + +// Class Engine.MaterialExpressionTextureSampleParameterCube +// 0x0000 (0x0220 - 0x0220) +class UMaterialExpressionTextureSampleParameterCube final : public UMaterialExpressionTextureSampleParameter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameterCube") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameterCube") + } + static class UMaterialExpressionTextureSampleParameterCube* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameterCube; + +// Class Engine.RVOAvoidanceInterface +// 0x0000 (0x0000 - 0x0000) +class IRVOAvoidanceInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RVOAvoidanceInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RVOAvoidanceInterface") + } + static class IRVOAvoidanceInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IRVOAvoidanceInterface; + +// Class Engine.MaterialExpressionTextureSampleParameterSubUV +// 0x0008 (0x0228 - 0x0220) +class UMaterialExpressionTextureSampleParameterSubUV final : public UMaterialExpressionTextureSampleParameter2D +{ +public: + uint8 bBlend : 1; // 0x0220(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_221[0x7]; // 0x0221(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTextureSampleParameterSubUV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTextureSampleParameterSubUV") + } + static class UMaterialExpressionTextureSampleParameterSubUV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTextureSampleParameterSubUV; + +// Class Engine.MaterialExpressionThinTranslucentMaterialOutput +// 0x0050 (0x0100 - 0x00B0) +class UMaterialExpressionThinTranslucentMaterialOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput TransmittanceColor; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput SurfaceCoverage; // 0x00D8(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionThinTranslucentMaterialOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionThinTranslucentMaterialOutput") + } + static class UMaterialExpressionThinTranslucentMaterialOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionThinTranslucentMaterialOutput; + +// Class Engine.SceneCaptureComponentCube +// 0x0720 (0x0A20 - 0x0300) +class USceneCaptureComponentCube final : public USceneCaptureComponent +{ +public: + class UTextureRenderTargetCube* TextureTarget; // 0x0300(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCaptureRotation; // 0x0308(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_309[0x7]; // 0x0309(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings PostProcessSettings; // 0x0310(0x0700)(Edit, BlueprintVisible, Interp, NativeAccessSpecifierPublic) + float PostProcessBlendWeight; // 0x0A10(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A14[0xC]; // 0x0A14(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void CaptureScene(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCaptureComponentCube") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCaptureComponentCube") + } + static class USceneCaptureComponentCube* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USceneCaptureComponentCube; + +// Class Engine.MaterialExpressionTransform +// 0x0030 (0x00E0 - 0x00B0) +class UMaterialExpressionTransform final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EMaterialVectorCoordTransformSource TransformSourceType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialVectorCoordTransform TransformType; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x6]; // 0x00DA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTransform") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTransform") + } + static class UMaterialExpressionTransform* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTransform; + +// Class Engine.MaterialExpressionTruncate +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionTruncate final : public UMaterialExpression +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTruncate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTruncate") + } + static class UMaterialExpressionTruncate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTruncate; + +// Class Engine.SkeletalMeshSocket +// 0x0060 (0x0088 - 0x0028) +class USkeletalMeshSocket final : public UObject +{ +public: + class FName SocketName; // 0x0028(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RelativeLocation; // 0x0038(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RelativeRotation; // 0x0050(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector RelativeScale; // 0x0068(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceAlwaysAnimated; // 0x0080(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void InitializeSocketFromLocation(const class USkeletalMeshComponent* SkelComp, const struct FVector& WorldLocation, const struct FVector& WorldNormal); + + struct FVector GetSocketLocation(const class USkeletalMeshComponent* SkelComp) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshSocket") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshSocket") + } + static class USkeletalMeshSocket* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshSocket; + +// Class Engine.MaterialExpressionTwoSidedSign +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionTwoSidedSign final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionTwoSidedSign") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionTwoSidedSign") + } + static class UMaterialExpressionTwoSidedSign* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionTwoSidedSign; + +// Class Engine.MaterialExpressionVectorNoise +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionVectorNoise final : public UMaterialExpression +{ +public: + struct FExpressionInput position; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + EPositionOrigin WorldPositionOriginType; // 0x00D8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVectorNoiseFunction NoiseFunction; // 0x00D9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DA[0x2]; // 0x00DA(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Quality; // 0x00DC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTiling : 1; // 0x00E0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_E1[0x3]; // 0x00E1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 TileSize; // 0x00E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVectorNoise") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVectorNoise") + } + static class UMaterialExpressionVectorNoise* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVectorNoise; + +// Class Engine.SMInstanceManager +// 0x0000 (0x0000 - 0x0000) +class ISMInstanceManager final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceManager") + } + static class ISMInstanceManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISMInstanceManager; + +// Class Engine.MaterialExpressionVertexInterpolator +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionVertexInterpolator final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput Input; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_D8[0x10]; // 0x00D8(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVertexInterpolator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVertexInterpolator") + } + static class UMaterialExpressionVertexInterpolator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVertexInterpolator; + +// Class Engine.MaterialExpressionVertexTangentWS +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionVertexTangentWS final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVertexTangentWS") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVertexTangentWS") + } + static class UMaterialExpressionVertexTangentWS* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVertexTangentWS; + +// Class Engine.ParticleModuleTypeDataBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleTypeDataBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataBase") + } + static class UParticleModuleTypeDataBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataBase; + +// Class Engine.ParticleModuleTypeDataAnimTrail +// 0x0018 (0x0048 - 0x0030) +class UParticleModuleTypeDataAnimTrail final : public UParticleModuleTypeDataBase +{ +public: + uint8 bDeadTrailsOnDeactivate : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePreviousTangentRecalculation : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTangentRecalculationEveryFrame : 1; // 0x0030(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TilingDistance; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceTessellationStepSize; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TangentTessellationStepSize; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WidthTessellationStepSize; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataAnimTrail") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataAnimTrail") + } + static class UParticleModuleTypeDataAnimTrail* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataAnimTrail; + +// Class Engine.MaterialExpressionViewProperty +// 0x0008 (0x00B8 - 0x00B0) +class UMaterialExpressionViewProperty final : public UMaterialExpression +{ +public: + EMaterialExposedViewProperty Property; // 0x00B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionViewProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionViewProperty") + } + static class UMaterialExpressionViewProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionViewProperty; + +// Class Engine.AnimNotifyLibrary +// 0x0000 (0x0028 - 0x0028) +class UAnimNotifyLibrary final : public UBlueprintFunctionLibrary +{ +public: + static float GetCurrentAnimationNotifyStateTime(const struct FAnimNotifyEventReference& EventReference); + static float GetCurrentAnimationNotifyStateTimeRatio(const struct FAnimNotifyEventReference& EventReference); + static float GetCurrentAnimationTime(const struct FAnimNotifyEventReference& EventReference); + static float GetCurrentAnimationTimeRatio(const struct FAnimNotifyEventReference& EventReference); + static bool IsBlendingOut(const struct FAnimNotifyEventReference& EventReference); + static bool NotifyStateReachedEnd(const struct FAnimNotifyEventReference& EventReference); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyLibrary") + } + static class UAnimNotifyLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyLibrary; + +// Class Engine.MaterialExpressionViewSize +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionViewSize final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionViewSize") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionViewSize") + } + static class UMaterialExpressionViewSize* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionViewSize; + +// Class Engine.MaterialExpressionVolumetricAdvancedMaterialInput +// 0x0000 (0x00B0 - 0x00B0) +class UMaterialExpressionVolumetricAdvancedMaterialInput final : public UMaterialExpression +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVolumetricAdvancedMaterialInput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVolumetricAdvancedMaterialInput") + } + static class UMaterialExpressionVolumetricAdvancedMaterialInput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVolumetricAdvancedMaterialInput; + +// Class Engine.ParticleModuleTypeDataRibbon +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleTypeDataRibbon final : public UParticleModuleTypeDataBase +{ +public: + int32 MaxTessellationBetweenParticles; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SheetsPerTrail; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTrailCount; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxParticleInTrailCount; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDeadTrailsOnDeactivate : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDeadTrailsOnSourceLoss : 1; // 0x0040(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClipSourceSegement : 1; // 0x0040(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePreviousTangentRecalculation : 1; // 0x0040(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTangentRecalculationEveryFrame : 1; // 0x0040(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSpawnInitialParticle : 1; // 0x0040(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ETrailsRenderAxisOption RenderAxis; // 0x0044(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TangentSpawningScalar; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRenderGeometry : 1; // 0x004C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderSpawnPoints : 1; // 0x004C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderTangents : 1; // 0x004C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderTessellation : 1; // 0x004C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TilingDistance; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceTessellationStepSize; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableTangentDiffInterpScale : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TangentTessellationScalar; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataRibbon") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataRibbon") + } + static class UParticleModuleTypeDataRibbon* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataRibbon; + +// Class Engine.MaterialExpressionVolumetricCloudEmptySpaceSkippingOutput +// 0x0028 (0x00D8 - 0x00B0) +class UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput final : public UMaterialExpressionCustomOutput +{ +public: + struct FExpressionInput ContainsMatter; // 0x00B0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionVolumetricCloudEmptySpaceSkippingOutput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionVolumetricCloudEmptySpaceSkippingOutput") + } + static class UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionVolumetricCloudEmptySpaceSkippingOutput; + +// Class Engine.MaterialExpressionWhileLoop +// 0x0038 (0x00E8 - 0x00B0) +class UMaterialExpressionWhileLoop final : public UMaterialExpression +{ +public: + struct FExpressionExecOutput LoopBody; // 0x00B0(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionExecOutput Completed; // 0x00B8(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + struct FExpressionInput Condition; // 0x00C0(0x0028)(NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialExpressionWhileLoop") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialExpressionWhileLoop") + } + static class UMaterialExpressionWhileLoop* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialExpressionWhileLoop; + +// Class Engine.ParticleModuleVectorFieldBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleVectorFieldBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldBase") + } + static class UParticleModuleVectorFieldBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldBase; + +// Class Engine.ParticleModuleVectorFieldRotation +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleVectorFieldRotation final : public UParticleModuleVectorFieldBase +{ +public: + struct FVector MinInitialRotation; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MaxInitialRotation; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldRotation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldRotation") + } + static class UParticleModuleVectorFieldRotation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldRotation; + +// Class Engine.MaterialFunctionInstance +// 0x00B0 (0x00F0 - 0x0040) +class UMaterialFunctionInstance : public UMaterialFunctionInterface +{ +public: + class UMaterialFunctionInterface* Parent; // 0x0040(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialFunctionInterface* base; // 0x0048(0x0008)(ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ScalarParameterValues; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorParameterValues; // 0x0060(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray DoubleVectorParameterValues; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureParameterValues; // 0x0080(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureCollectionParameterValues; // 0x0090(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray FontParameterValues; // 0x00A0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray StaticSwitchParameterValues; // 0x00B0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray StaticComponentMaskParameterValues; // 0x00C0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray RuntimeVirtualTextureParameterValues; // 0x00D0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SparseVolumeTextureParameterValues; // 0x00E0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionInstance") + } + static class UMaterialFunctionInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionInstance; + +// Class Engine.MaterialFunctionMaterialLayer +// 0x0000 (0x0068 - 0x0068) +class UMaterialFunctionMaterialLayer final : public UMaterialFunction +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionMaterialLayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionMaterialLayer") + } + static class UMaterialFunctionMaterialLayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionMaterialLayer; + +// Class Engine.MaterialFunctionMaterialLayerInstance +// 0x0000 (0x00F0 - 0x00F0) +class UMaterialFunctionMaterialLayerInstance final : public UMaterialFunctionInstance +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionMaterialLayerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionMaterialLayerInstance") + } + static class UMaterialFunctionMaterialLayerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionMaterialLayerInstance; + +// Class Engine.MaterialFunctionMaterialLayerBlend +// 0x0000 (0x0068 - 0x0068) +class UMaterialFunctionMaterialLayerBlend final : public UMaterialFunction +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionMaterialLayerBlend") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionMaterialLayerBlend") + } + static class UMaterialFunctionMaterialLayerBlend* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionMaterialLayerBlend; + +// Class Engine.MaterialFunctionMaterialLayerBlendInstance +// 0x0000 (0x00F0 - 0x00F0) +class UMaterialFunctionMaterialLayerBlendInstance final : public UMaterialFunctionInstance +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialFunctionMaterialLayerBlendInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialFunctionMaterialLayerBlendInstance") + } + static class UMaterialFunctionMaterialLayerBlendInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialFunctionMaterialLayerBlendInstance; + +// Class Engine.MaterialInterfaceEditorOnlyData +// 0x0018 (0x0040 - 0x0028) +class UMaterialInterfaceEditorOnlyData : public UObject +{ +public: + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInterfaceEditorOnlyData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInterfaceEditorOnlyData") + } + static class UMaterialInterfaceEditorOnlyData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInterfaceEditorOnlyData; + +// Class Engine.MaterialParameterCollectionInstance +// 0x00F8 (0x0120 - 0x0028) +class UMaterialParameterCollectionInstance final : public UObject +{ +public: + uint8 Pad_28[0x4]; // 0x0028(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr Collection; // 0x002C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_34[0xEC]; // 0x0034(0x00EC)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialParameterCollectionInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialParameterCollectionInstance") + } + static class UMaterialParameterCollectionInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialParameterCollectionInstance; + +// Class Engine.ParticleModuleLocation +// 0x0068 (0x0098 - 0x0030) +class UParticleModuleLocation : public UParticleModuleLocationBase +{ +public: + struct FRawDistributionVector StartLocation; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + float DistributeOverNPoints; // 0x0090(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistributeThreshold; // 0x0094(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocation") + } + static class UParticleModuleLocation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocation; + +// Class Engine.ParticleModuleLocationWorldOffset +// 0x0000 (0x0098 - 0x0098) +class UParticleModuleLocationWorldOffset : public UParticleModuleLocation +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationWorldOffset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationWorldOffset") + } + static class UParticleModuleLocationWorldOffset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationWorldOffset; + +// Class Engine.MeshBudgetProjectSettings +// 0x0018 (0x0050 - 0x0038) +class UMeshBudgetProjectSettings final : public UDeveloperSettings +{ +public: + bool bEnableStaticMeshBudget; // 0x0038(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray StaticMeshBudgetInfos; // 0x0040(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshBudgetProjectSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshBudgetProjectSettings") + } + static class UMeshBudgetProjectSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshBudgetProjectSettings; + +// Class Engine.MeshDeformer +// 0x0000 (0x0028 - 0x0028) +class UMeshDeformer : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDeformer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDeformer") + } + static class UMeshDeformer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshDeformer; + +// Class Engine.MeshDeformerInstanceSettings +// 0x0000 (0x0028 - 0x0028) +class UMeshDeformerInstanceSettings : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDeformerInstanceSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDeformerInstanceSettings") + } + static class UMeshDeformerInstanceSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshDeformerInstanceSettings; + +// Class Engine.MeshDeformerInstance +// 0x0000 (0x0028 - 0x0028) +class UMeshDeformerInstance : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDeformerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDeformerInstance") + } + static class UMeshDeformerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshDeformerInstance; + +// Class Engine.ParticleModuleMaterialBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleMaterialBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMaterialBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMaterialBase") + } + static class UParticleModuleMaterialBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMaterialBase; + +// Class Engine.ParticleModuleMeshMaterial +// 0x0010 (0x0040 - 0x0030) +class UParticleModuleMeshMaterial final : public UParticleModuleMaterialBase +{ +public: + TArray MeshMaterials; // 0x0030(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshMaterial") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshMaterial") + } + static class UParticleModuleMeshMaterial* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshMaterial; + +// Class Engine.MeshDrawCommandStatsSettings +// 0x0028 (0x0060 - 0x0038) +class UMeshDrawCommandStatsSettings final : public UDeveloperSettings +{ +public: + TArray Budgets; // 0x0038(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray BudgetTotals; // 0x0048(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + int32 CollectionForCsvProfiler; // 0x0058(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDrawCommandStatsSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDrawCommandStatsSettings") + } + static class UMeshDrawCommandStatsSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshDrawCommandStatsSettings; + +// Class Engine.MeshPaintVirtualTexture +// 0x0008 (0x0158 - 0x0150) +class UMeshPaintVirtualTexture final : public UTexture2D +{ +public: + TWeakObjectPtr OwningComponent; // 0x0150(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshPaintVirtualTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshPaintVirtualTexture") + } + static class UMeshPaintVirtualTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshPaintVirtualTexture; + +// Class Engine.NetworkMetricsBaseListener +// 0x0008 (0x0030 - 0x0028) +class UNetworkMetricsBaseListener : public UObject +{ +public: + double IntervalSeconds; // 0x0028(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsBaseListener") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsBaseListener") + } + static class UNetworkMetricsBaseListener* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsBaseListener; + +// Class Engine.MicroTransactionBase +// 0x0030 (0x0068 - 0x0038) +class UMicroTransactionBase final : public UPlatformInterfaceBase +{ +public: + TArray AvailableProducts; // 0x0038(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FString LastError; // 0x0048(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LastErrorSolution; // 0x0058(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MicroTransactionBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MicroTransactionBase") + } + static class UMicroTransactionBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMicroTransactionBase; + +// Class Engine.MorphTarget +// 0x0018 (0x0040 - 0x0028) +class UMorphTarget final : public UObject +{ +public: + class USkeletalMesh* BaseSkelMesh; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MorphTarget") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MorphTarget") + } + static class UMorphTarget* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMorphTarget; + +// Class Engine.MeshMergeCullingVolume +// 0x0000 (0x02E0 - 0x02E0) +class AMeshMergeCullingVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshMergeCullingVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshMergeCullingVolume") + } + static class AMeshMergeCullingVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AMeshMergeCullingVolume; + +// Class Engine.NavAgentInterface +// 0x0000 (0x0000 - 0x0000) +class INavAgentInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavAgentInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavAgentInterface") + } + static class INavAgentInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavAgentInterface; + +// Class Engine.NavAreaBase +// 0x0008 (0x0030 - 0x0028) +class UNavAreaBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavAreaBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavAreaBase") + } + static class UNavAreaBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavAreaBase; + +// Class Engine.NavEdgeProviderInterface +// 0x0000 (0x0000 - 0x0000) +class INavEdgeProviderInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavEdgeProviderInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavEdgeProviderInterface") + } + static class INavEdgeProviderInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavEdgeProviderInterface; + +// Class Engine.NavigationDataInterface +// 0x0000 (0x0000 - 0x0000) +class INavigationDataInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationDataInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationDataInterface") + } + static class INavigationDataInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavigationDataInterface; + +// Class Engine.PlaneReflectionCapture +// 0x0000 (0x02B0 - 0x02B0) +class APlaneReflectionCapture final : public AReflectionCapture +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlaneReflectionCapture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlaneReflectionCapture") + } + static class APlaneReflectionCapture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlaneReflectionCapture; + +// Class Engine.NavigationInvokerInterface +// 0x0000 (0x0000 - 0x0000) +class INavigationInvokerInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationInvokerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationInvokerInterface") + } + static class INavigationInvokerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavigationInvokerInterface; + +// Class Engine.NavLinkDefinition +// 0x0028 (0x0050 - 0x0028) +class UNavLinkDefinition : public UObject +{ +public: + TArray Links; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SegmentLinks; // 0x0038(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavLinkDefinition") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavLinkDefinition") + } + static class UNavLinkDefinition* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavLinkDefinition; + +// Class Engine.MaterialInstanceDynamic +// 0x0050 (0x0310 - 0x02C0) +class UMaterialInstanceDynamic final : public UMaterialInstance +{ +public: + uint8 Pad_2C0[0x50]; // 0x02C0(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void CopyInterpParameters(class UMaterialInstance* Source); + void CopyParameterOverrides(class UMaterialInstance* MaterialInstance); + bool InitializeScalarParameterAndGetIndex(const class FName& ParameterName, float Value, int32* OutParameterIndex); + void K2_CopyMaterialInstanceParameters(class UMaterialInterface* Source, bool bQuickParametersOnly); + float K2_GetScalarParameterValue(class FName ParameterName); + float K2_GetScalarParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo); + class UTexture* K2_GetTextureParameterValue(class FName ParameterName); + class UTexture* K2_GetTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo); + struct FLinearColor K2_GetVectorParameterValue(class FName ParameterName); + struct FLinearColor K2_GetVectorParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo); + void K2_InterpolateMaterialInstanceParams(class UMaterialInstance* SourceA, class UMaterialInstance* SourceB, float Alpha); + void SetDoubleVectorParameterValue(class FName ParameterName, const struct FVector4& Value); + void SetRuntimeVirtualTextureParameterValue(class FName ParameterName, class URuntimeVirtualTexture* Value); + void SetRuntimeVirtualTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, class URuntimeVirtualTexture* Value); + bool SetScalarParameterByIndex(int32 ParameterIndex, float Value); + void SetScalarParameterValue(class FName ParameterName, float Value); + void SetScalarParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, float Value); + void SetSparseVolumeTextureParameterValue(class FName ParameterName, class USparseVolumeTexture* Value); + void SetTextureParameterValue(class FName ParameterName, class UTexture* Value); + void SetTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, class UTexture* Value); + void SetVectorParameterValue(class FName ParameterName, const struct FLinearColor& Value); + void SetVectorParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, const struct FLinearColor& Value); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInstanceDynamic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInstanceDynamic") + } + static class UMaterialInstanceDynamic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInstanceDynamic; + +// Class Engine.NavMovementInterface +// 0x0000 (0x0000 - 0x0000) +class INavMovementInterface final +{ +public: + void RequestDirectMove(const struct FVector& MoveVelocity, bool bForceMaxSpeed); + void RequestPathMove(const struct FVector& MoveInput); + void StopActiveMovement(); + void StopMovementKeepPathing(); + + float GetMaxSpeedForNavMovement() const; + struct FVector GetVelocityForNavMovement() const; + bool IsCrouching() const; + bool IsFalling() const; + bool IsFlying() const; + bool IsMovingOnGround() const; + bool IsSwimming() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavMovementInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavMovementInterface") + } + static class INavMovementInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavMovementInterface; + +// Class Engine.NavPathObserverInterface +// 0x0000 (0x0000 - 0x0000) +class INavPathObserverInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavPathObserverInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavPathObserverInterface") + } + static class INavPathObserverInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavPathObserverInterface; + +// Class Engine.PluginBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UPluginBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static TArray GetAdditionalPluginSearchPaths(); + static const TArray GetAdditionalProjectPluginSearchPaths(); + static TArray GetEnabledPluginNames(); + static bool GetPluginBaseDir(const class FString& PluginName, class FString* OutBaseDir); + static bool GetPluginContentDir(const class FString& PluginName, class FString* OutContentDir); + static bool GetPluginDescription(const class FString& PluginName, class FString* OutDescription); + static bool GetPluginDescriptorFilePath(const class FString& PluginName, class FString* OutFilePath); + static bool GetPluginEditorCustomVirtualPath(const class FString& PluginName, class FString* OutVirtualPath); + static bool GetPluginMountedAssetPath(const class FString& PluginName, class FString* OutAssetPath); + static bool GetPluginNameForObjectPath(const struct FSoftObjectPath& ObjectPath, class FString* OutPluginName); + static bool GetPluginVersion(const class FString& PluginName, int32* OutVersion); + static bool GetPluginVersionName(const class FString& PluginName, class FString* OutVersionName); + static bool IsPluginMounted(const class FString& PluginName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PluginBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PluginBlueprintLibrary") + } + static class UPluginBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPluginBlueprintLibrary; + +// Class Engine.PostProcessVolume +// 0x0720 (0x0A00 - 0x02E0) +class APostProcessVolume final : public AVolume +{ +public: + uint8 Pad_2E0[0x10]; // 0x02E0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings Settings; // 0x02F0(0x0700)(Edit, BlueprintVisible, Interp, NativeAccessSpecifierPublic) + float Priority; // 0x09F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendRadius; // 0x09F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendWeight; // 0x09F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnabled : 1; // 0x09FC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUnbound : 1; // 0x09FC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9FD[0x3]; // 0x09FD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PostProcessVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PostProcessVolume") + } + static class APostProcessVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APostProcessVolume; + +// Class Engine.NavRelevantInterface +// 0x0000 (0x0000 - 0x0000) +class INavRelevantInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavRelevantInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavRelevantInterface") + } + static class INavRelevantInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INavRelevantInterface; + +// Class Engine.NetActorFactory +// 0x0068 (0x00A0 - 0x0038) +class UNetActorFactory final : public UNetObjectFactory +{ +public: + uint8 Pad_38[0x68]; // 0x0038(0x0068)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetActorFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetActorFactory") + } + static class UNetActorFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetActorFactory; + +// Class Engine.NetSubObjectFactory +// 0x0000 (0x0038 - 0x0038) +class UNetSubObjectFactory final : public UNetObjectFactory +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetSubObjectFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetSubObjectFactory") + } + static class UNetSubObjectFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetSubObjectFactory; + +// Class Engine.NetworkPhysicsSettingsComponent +// 0x0158 (0x01F8 - 0x00A0) +class UNetworkPhysicsSettingsComponent final : public UActorComponent +{ +public: + struct FNetworkPhysicsSettings GeneralSettings; // 0x00A0(0x0008)(Edit, DisableEditOnInstance, NoDestructor, NativeAccessSpecifierPublic) + struct FNetworkPhysicsSettingsDefaultReplication DefaultReplicationSettings; // 0x00A8(0x0020)(Edit, DisableEditOnInstance, NoDestructor, NativeAccessSpecifierPublic) + struct FNetworkPhysicsSettingsPredictiveInterpolation PredictiveInterpolationSettings; // 0x00C8(0x0080)(Edit, DisableEditOnInstance, NoDestructor, NativeAccessSpecifierPublic) + struct FNetworkPhysicsSettingsResimulation ResimulationSettings; // 0x0148(0x0060)(Edit, DisableEditOnInstance, NoDestructor, NativeAccessSpecifierPublic) + struct FNetworkPhysicsSettingsNetworkPhysicsComponent NetworkPhysicsComponentSettings; // 0x01A8(0x0048)(Edit, DisableEditOnInstance, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_1F0[0x8]; // 0x01F0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkPhysicsSettingsComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkPhysicsSettingsComponent") + } + static class UNetworkPhysicsSettingsComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkPhysicsSettingsComponent; + +// Class Engine.RigidBodyBase +// 0x0000 (0x02A8 - 0x02A8) +class ARigidBodyBase : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RigidBodyBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RigidBodyBase") + } + static class ARigidBodyBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ARigidBodyBase; + +// Class Engine.NetworkPredictionInterface +// 0x0000 (0x0000 - 0x0000) +class INetworkPredictionInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkPredictionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkPredictionInterface") + } + static class INetworkPredictionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_INetworkPredictionInterface; + +// Class Engine.ParticleEmitter +// 0x0198 (0x01C0 - 0x0028) +class UParticleEmitter : public UObject +{ +public: + class FName EmitterName; // 0x0028(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubUVDataOffset; // 0x0030(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEmitterRenderMode EmitterRenderMode; // 0x0034(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSignificanceLevel SignificanceLevel; // 0x0035(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_36[0x1]; // 0x0036(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseLegacySpawningBehavior : 1; // 0x0037(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_37_1 : 3; // 0x0037(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 ConvertedModules : 1; // 0x0037(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsSoloing : 1; // 0x0037(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCookedOut : 1; // 0x0037(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisabledLODsKeepEmitterAlive : 1; // 0x0037(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableWhenInsignficant : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LODLevels; // 0x0040(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + int32 PeakActiveParticles; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InitialAllocationCount; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float QualityLevelSpawnRateScale; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 DetailModeBitmask; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_60[0x160]; // 0x0060(0x0160)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleEmitter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleEmitter") + } + static class UParticleEmitter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleEmitter; + +// Class Engine.SoundCue +// 0x03F8 (0x0560 - 0x0168) +class USoundCue final : public USoundBase +{ +public: + class USoundNode* FirstNode; // 0x0168(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0170(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0174(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoundAttenuationSettings AttenuationOverrides; // 0x0178(0x03D0)(Edit, NativeAccessSpecifierPublic) + float SubtitlePriority; // 0x0548(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_54C[0x4]; // 0x054C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bPrimeOnLoad : 1; // 0x0550(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideAttenuation : 1; // 0x0550(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bExcludeFromRandomNodeBranchCulling : 1; // 0x0550(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPlayWhenSilent : 1; // 0x0550(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_551[0x3]; // 0x0551(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CookedQualityIndex; // 0x0554(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_558[0x8]; // 0x0558(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundCue") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundCue") + } + static class USoundCue* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundCue; + +// Class Engine.ParticleLODLevel +// 0x0090 (0x00B8 - 0x0028) +class UParticleLODLevel final : public UObject +{ +public: + int32 Level; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnabled : 1; // 0x002C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class UParticleModuleRequired* RequiredModule; // 0x0030(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Modules; // 0x0038(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + class UParticleModuleTypeDataBase* TypeDataModule; // 0x0048(0x0008)(ExportObject, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleModuleSpawn* SpawnModule; // 0x0050(0x0008)(ExportObject, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleModuleEventGenerator* EventGenerator; // 0x0058(0x0008)(ExportObject, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SpawningModules; // 0x0060(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SpawnModules; // 0x0070(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray UpdateModules; // 0x0080(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray OrbitModules; // 0x0090(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray EventReceiverModules; // 0x00A0(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 ConvertedModules : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x3]; // 0x00B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 PeakActiveParticles; // 0x00B4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleLODLevel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleLODLevel") + } + static class UParticleLODLevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleLODLevel; + +// Class Engine.FXSystemAsset +// 0x0028 (0x0050 - 0x0028) +class UFXSystemAsset : public UObject +{ +public: + uint32 MaxPoolSize; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PoolPrimeSize; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30[0x20]; // 0x0030(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FXSystemAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FXSystemAsset") + } + static class UFXSystemAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFXSystemAsset; + +// Class Engine.ButtonStyleAsset +// 0x0378 (0x03A0 - 0x0028) +class UButtonStyleAsset final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FButtonStyle ButtonStyle; // 0x0030(0x0370)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ButtonStyleAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ButtonStyleAsset") + } + static class UButtonStyleAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UButtonStyleAsset; + +// Class Engine.ParticleSystem +// 0x0128 (0x0178 - 0x0050) +class UParticleSystem final : public UFXSystemAsset +{ +public: + float UpdateTime_FPS; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UpdateTime_Delta; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WarmupTime; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WarmupTickRate; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Emitters; // 0x0060(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + class UParticleSystemComponent* PreviewComponent; // 0x0070(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UInterpCurveEdSetup* CurveEdSetup; // 0x0078(0x0008)(ExportObject, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LODDistanceCheckTime; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MacroUVRadius; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LODDistances; // 0x0088(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray LODSettings; // 0x0098(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FBox FixedRelativeBoundingBox; // 0x00A8(0x0038)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float SecondsBeforeInactive; // 0x00E0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Delay; // 0x00E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DelayLow; // 0x00E8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOrientZAxisTowardCamera : 1; // 0x00EC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFixedRelativeBoundingBox : 1; // 0x00EC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldResetPeakCounts : 1; // 0x00EC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPhysics : 1; // 0x00EC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseRealtimeThumbnail : 1; // 0x00EC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 ThumbnailImageOutOfDate : 1; // 0x00EC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_EC_6 : 2; // 0x00EC(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 bUseDelayRange : 1; // 0x00ED(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowManagedTicking : 1; // 0x00ED(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoDeactivate : 1; // 0x00ED(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRegenerateLODDuplicate : 1; // 0x00ED(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EParticleSystemUpdateMode SystemUpdateMode; // 0x00EE(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSystemLODMethod LODMethod; // 0x00EF(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSystemInsignificanceReaction InsignificantReaction; // 0x00F0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSystemOcclusionBoundsMethod OcclusionBoundsMethod; // 0x00F1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F2[0x1]; // 0x00F2(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + EParticleSignificanceLevel MaxSignificanceLevel; // 0x00F3(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MinTimeBetweenTicks; // 0x00F4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InsignificanceDelay; // 0x00F8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_FC[0x4]; // 0x00FC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector MacroUVPosition; // 0x0100(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox CustomOcclusionBounds; // 0x0118(0x0038)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray SoloTracking; // 0x0150(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + TArray NamedMaterialSlots; // 0x0160(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_170[0x8]; // 0x0170(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool ContainsEmitterType(class UClass* TypeData); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleSystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleSystem") + } + static class UParticleSystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleSystem; + +// Class Engine.ParticleModuleAccelerationBase +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleAccelerationBase : public UParticleModule +{ +public: + uint8 bAlwaysInWorldSpace : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAccelerationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAccelerationBase") + } + static class UParticleModuleAccelerationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAccelerationBase; + +// Class Engine.ParticleModuleAcceleration +// 0x0068 (0x00A0 - 0x0038) +class UParticleModuleAcceleration final : public UParticleModuleAccelerationBase +{ +public: + struct FRawDistributionVector Acceleration; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bApplyOwnerScale : 1; // 0x0098(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAcceleration") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAcceleration") + } + static class UParticleModuleAcceleration* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAcceleration; + +// Class Engine.WorldPartitionRuntimeCellData +// 0x00B8 (0x00E0 - 0x0028) +class UWorldPartitionRuntimeCellData : public UObject +{ +public: + uint8 Pad_28[0x28]; // 0x0028(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBox ContentBounds; // 0x0050(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TOptional CellBounds; // 0x0088(0x0040)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FName GridName; // 0x00C8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Priority; // 0x00D0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 HierarchicalLevel; // 0x00D4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D8[0x8]; // 0x00D8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellData") + } + static class UWorldPartitionRuntimeCellData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellData; + +// Class Engine.WorldPartitionRuntimeCellDataHashSet +// 0x0008 (0x00E8 - 0x00E0) +class UWorldPartitionRuntimeCellDataHashSet final : public UWorldPartitionRuntimeCellData +{ +public: + bool bIs2D; // 0x00E0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E1[0x7]; // 0x00E1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellDataHashSet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellDataHashSet") + } + static class UWorldPartitionRuntimeCellDataHashSet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellDataHashSet; + +// Class Engine.ParticleModuleAccelerationConstant +// 0x0018 (0x0050 - 0x0038) +class UParticleModuleAccelerationConstant final : public UParticleModuleAccelerationBase +{ +public: + struct FVector Acceleration; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAccelerationConstant") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAccelerationConstant") + } + static class UParticleModuleAccelerationConstant* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAccelerationConstant; + +// Class Engine.ParticleModuleAccelerationDrag +// 0x0038 (0x0070 - 0x0038) +class UParticleModuleAccelerationDrag final : public UParticleModuleAccelerationBase +{ +public: + class UDistributionFloat* DragCoefficient; // 0x0038(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat DragCoefficientRaw; // 0x0040(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAccelerationDrag") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAccelerationDrag") + } + static class UParticleModuleAccelerationDrag* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAccelerationDrag; + +// Class Engine.NetPushModelHelpers +// 0x0000 (0x0028 - 0x0028) +class UNetPushModelHelpers final : public UBlueprintFunctionLibrary +{ +public: + static void MarkPropertyDirty(class UObject* Object, class FName PropertyName); + static void MarkPropertyDirtyFromRepIndex(class UObject* Object, int32 RepIndex, class FName PropertyName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetPushModelHelpers") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetPushModelHelpers") + } + static class UNetPushModelHelpers* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetPushModelHelpers; + +// Class Engine.ParticleModuleAccelerationDragScaleOverLife +// 0x0038 (0x0070 - 0x0038) +class UParticleModuleAccelerationDragScaleOverLife final : public UParticleModuleAccelerationBase +{ +public: + class UDistributionFloat* DragScale; // 0x0038(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat DragScaleRaw; // 0x0040(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAccelerationDragScaleOverLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAccelerationDragScaleOverLife") + } + static class UParticleModuleAccelerationDragScaleOverLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAccelerationDragScaleOverLife; + +// Class Engine.ParticleModuleAccelerationOverLifetime +// 0x0060 (0x0098 - 0x0038) +class UParticleModuleAccelerationOverLifetime final : public UParticleModuleAccelerationBase +{ +public: + struct FRawDistributionVector AccelOverLife; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAccelerationOverLifetime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAccelerationOverLifetime") + } + static class UParticleModuleAccelerationOverLifetime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAccelerationOverLifetime; + +// Class Engine.NetworkMetricsCSV +// 0x0008 (0x0038 - 0x0030) +class UNetworkMetricsCSV : public UNetworkMetricsBaseListener +{ +public: + uint8 Pad_30[0x8]; // 0x0030(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsCSV") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsCSV") + } + static class UNetworkMetricsCSV* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsCSV; + +// Class Engine.NetworkMetricsCSV_Replication +// 0x0000 (0x0038 - 0x0038) +class UNetworkMetricsCSV_Replication final : public UNetworkMetricsCSV +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsCSV_Replication") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsCSV_Replication") + } + static class UNetworkMetricsCSV_Replication* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsCSV_Replication; + +// Class Engine.ParticleModuleAttractorBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleAttractorBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAttractorBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAttractorBase") + } + static class UParticleModuleAttractorBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAttractorBase; + +// Class Engine.ParticleModuleAttractorLine +// 0x0090 (0x00C0 - 0x0030) +class UParticleModuleAttractorLine final : public UParticleModuleAttractorBase +{ +public: + struct FVector EndPoint0; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndPoint1; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Range; // 0x0060(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Strength; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAttractorLine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAttractorLine") + } + static class UParticleModuleAttractorLine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAttractorLine; + +// Class Engine.ParticleModuleAttractorParticle +// 0x0080 (0x00B0 - 0x0030) +class UParticleModuleAttractorParticle final : public UParticleModuleAttractorBase +{ +public: + class FName EmitterName; // 0x0030(0x0008)(Edit, ExportObject, ZeroConstructor, NoClear, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Range; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bStrengthByDistance : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat Strength; // 0x0070(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bAffectBaseVelocity : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EAttractorParticleSelectionMethod SelectionMethod; // 0x00A4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A5[0x3]; // 0x00A5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bRenewSource : 1; // 0x00A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritSourceVel : 1; // 0x00A8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A9[0x3]; // 0x00A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LastSelIndex; // 0x00AC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAttractorParticle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAttractorParticle") + } + static class UParticleModuleAttractorParticle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAttractorParticle; + +// Class Engine.ParticleModuleAttractorPoint +// 0x00C8 (0x00F8 - 0x0030) +class UParticleModuleAttractorPoint final : public UParticleModuleAttractorBase +{ +public: + struct FRawDistributionVector position; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Range; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Strength; // 0x00C0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 StrengthByDistance : 1; // 0x00F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectBaseVelocity : 1; // 0x00F0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideVelocity : 1; // 0x00F0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseWorldSpacePosition : 1; // 0x00F0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Positive_X : 1; // 0x00F0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Positive_Y : 1; // 0x00F0(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Positive_Z : 1; // 0x00F0(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_X : 1; // 0x00F0(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_Y : 1; // 0x00F1(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Negative_Z : 1; // 0x00F1(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F2[0x6]; // 0x00F2(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAttractorPoint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAttractorPoint") + } + static class UParticleModuleAttractorPoint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAttractorPoint; + +// Class Engine.WorldPartitionSettings +// 0x0020 (0x0058 - 0x0038) +class UWorldPartitionSettings final : public UDeveloperSettings +{ +public: + EWorldPartitionDataLayersLogicOperator NewMapsDataLayersLogicOperator; // 0x0038(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bNewMapsEnableWorldPartition; // 0x0039(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bNewMapsEnableWorldPartitionStreaming; // 0x003A(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_3B[0x5]; // 0x003B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf EditorHashDefaultClass; // 0x0040(0x0008)(ZeroConstructor, Config, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSubclassOf RuntimeHashDefaultClass; // 0x0048(0x0008)(Edit, ZeroConstructor, Config, NoClear, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UWorldPartitionPropertyOverridePolicy* PropertyOverridePolicy; // 0x0050(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionSettings") + } + static class UWorldPartitionSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionSettings; + +// Class Engine.ParticleModuleAttractorPointGravity +// 0x0058 (0x0088 - 0x0030) +class UParticleModuleAttractorPointGravity final : public UParticleModuleAttractorBase +{ +public: + struct FVector position; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UDistributionFloat* Strength; // 0x0050(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat StrengthRaw; // 0x0058(0x0030)(Edit, NoClear, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleAttractorPointGravity") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleAttractorPointGravity") + } + static class UParticleModuleAttractorPointGravity* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleAttractorPointGravity; + +// Class Engine.ParticleModuleBeamBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleBeamBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleBeamBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleBeamBase") + } + static class UParticleModuleBeamBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleBeamBase; + +// Class Engine.VirtualTextureBuilder +// 0x0020 (0x0048 - 0x0028) +class UVirtualTextureBuilder final : public UObject +{ +public: + class UVirtualTexture2D* Texture; // 0x0028(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVirtualTexture2D* TextureMobile; // 0x0030(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 BuildHash; // 0x0038(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSeparateTextureForMobile; // 0x0040(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VirtualTextureBuilder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VirtualTextureBuilder") + } + static class UVirtualTextureBuilder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVirtualTextureBuilder; + +// Class Engine.ParticleModuleBeamModifier +// 0x0108 (0x0138 - 0x0030) +class UParticleModuleBeamModifier final : public UParticleModuleBeamBase +{ +public: + EBeamModifierType ModifierType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBeamModifierOptions PositionOptions; // 0x0034(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FRawDistributionVector position; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FBeamModifierOptions TangentOptions; // 0x0098(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_9C[0x4]; // 0x009C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector Tangent; // 0x00A0(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bAbsoluteTangent : 1; // 0x0100(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_101[0x3]; // 0x0101(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBeamModifierOptions StrengthOptions; // 0x0104(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Strength; // 0x0108(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleBeamModifier") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleBeamModifier") + } + static class UParticleModuleBeamModifier* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleBeamModifier; + +// Class Engine.ParticleModuleBeamNoise +// 0x0190 (0x01C0 - 0x0030) +class UParticleModuleBeamNoise final : public UParticleModuleBeamBase +{ +public: + uint8 bLowFreq_Enabled : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Frequency; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Frequency_LowRange; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector NoiseRange; // 0x0040(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat NoiseRangeScale; // 0x00A0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bNRScaleEmitterTime : 1; // 0x00D0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D1[0x7]; // 0x00D1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector NoiseSpeed; // 0x00D8(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bSmooth : 1; // 0x0138(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_139[0x3]; // 0x0139(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float NoiseLockRadius; // 0x013C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bNoiseLock : 1; // 0x0140(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOscillate : 1; // 0x0140(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_141[0x3]; // 0x0141(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float NoiseLockTime; // 0x0144(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NoiseTension; // 0x0148(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseNoiseTangents : 1; // 0x014C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_14D[0x3]; // 0x014D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat NoiseTangentStrength; // 0x0150(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + int32 NoiseTessellation; // 0x0180(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTargetNoise : 1; // 0x0184(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_185[0x3]; // 0x0185(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FrequencyDistance; // 0x0188(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bApplyNoiseScale : 1; // 0x018C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_18D[0x3]; // 0x018D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat NoiseScale; // 0x0190(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleBeamNoise") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleBeamNoise") + } + static class UParticleModuleBeamNoise* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleBeamNoise; + +// Class Engine.ActorPartitionSubsystem +// 0x0000 (0x0030 - 0x0030) +class UActorPartitionSubsystem final : public UWorldSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorPartitionSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorPartitionSubsystem") + } + static class UActorPartitionSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorPartitionSubsystem; + +// Class Engine.RuntimeVirtualTextureVolume +// 0x0008 (0x02B0 - 0x02A8) +class ARuntimeVirtualTextureVolume final : public AActor +{ +public: + class URuntimeVirtualTextureComponent* VirtualTextureComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeVirtualTextureVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeVirtualTextureVolume") + } + static class ARuntimeVirtualTextureVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ARuntimeVirtualTextureVolume; + +// Class Engine.ParticleModuleBeamSource +// 0x0118 (0x0148 - 0x0030) +class UParticleModuleBeamSource final : public UParticleModuleBeamBase +{ +public: + EBeam2SourceTargetMethod SourceMethod; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName SourceName; // 0x0034(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSourceAbsolute : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector Source; // 0x0040(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockSource : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EBeam2SourceTargetTangentMethod SourceTangentMethod; // 0x00A4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A5[0x3]; // 0x00A5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector SourceTangent; // 0x00A8(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockSourceTangent : 1; // 0x0108(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat SourceStrength; // 0x0110(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockSourceStength : 1; // 0x0140(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_141[0x7]; // 0x0141(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleBeamSource") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleBeamSource") + } + static class UParticleModuleBeamSource* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleBeamSource; + +// Class Engine.ParticleModuleBeamTarget +// 0x0120 (0x0150 - 0x0030) +class UParticleModuleBeamTarget final : public UParticleModuleBeamBase +{ +public: + EBeam2SourceTargetMethod TargetMethod; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName TargetName; // 0x0034(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector Target; // 0x0040(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bTargetAbsolute : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockTarget : 1; // 0x00A0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EBeam2SourceTargetTangentMethod TargetTangentMethod; // 0x00A4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A5[0x3]; // 0x00A5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector TargetTangent; // 0x00A8(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockTargetTangent : 1; // 0x0108(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat TargetStrength; // 0x0110(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockTargetStength : 1; // 0x0140(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_141[0x3]; // 0x0141(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LockRadius; // 0x0144(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_148[0x8]; // 0x0148(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleBeamTarget") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleBeamTarget") + } + static class UParticleModuleBeamTarget* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleBeamTarget; + +// Class Engine.ParticleModuleCameraBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleCameraBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleCameraBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleCameraBase") + } + static class UParticleModuleCameraBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleCameraBase; + +// Class Engine.ParticleModuleCameraOffset +// 0x0038 (0x0068 - 0x0030) +class UParticleModuleCameraOffset final : public UParticleModuleCameraBase +{ +public: + struct FRawDistributionFloat CameraOffset; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bSpawnTimeOnly : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EParticleCameraOffsetUpdateMethod UpdateMethod; // 0x0064(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_65[0x3]; // 0x0065(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleCameraOffset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleCameraOffset") + } + static class UParticleModuleCameraOffset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleCameraOffset; + +// Class Engine.SoundEffectPresetWidgetInterface +// 0x0000 (0x0000 - 0x0000) +class ISoundEffectPresetWidgetInterface final +{ +public: + TSubclassOf GetClass(); + void OnConstructed(class USoundEffectPreset* Preset); + void OnPropertyChanged(class USoundEffectPreset* Preset, class FName PropertyName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundEffectPresetWidgetInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundEffectPresetWidgetInterface") + } + static class ISoundEffectPresetWidgetInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISoundEffectPresetWidgetInterface; + +// Class Engine.ParticleModuleCollisionBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleCollisionBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleCollisionBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleCollisionBase") + } + static class UParticleModuleCollisionBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleCollisionBase; + +// Class Engine.ParticleModuleCollision +// 0x0190 (0x01C0 - 0x0030) +class UParticleModuleCollision final : public UParticleModuleCollisionBase +{ +public: + struct FRawDistributionVector DampingFactor; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector DampingFactorRotation; // 0x0090(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat MaxCollisions; // 0x00F0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + EParticleCollisionComplete CollisionCompletionOption; // 0x0120(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CollisionTypes; // 0x0128(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_138[0x8]; // 0x0138(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bApplyPhysics : 1; // 0x0140(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreTriggerVolumes : 1; // 0x0140(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_141[0x7]; // 0x0141(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat ParticleMass; // 0x0148(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + float DirScalar; // 0x0178(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPawnsDoNotDecrementCount : 1; // 0x017C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOnlyVerticalNormalsDecrementCount : 1; // 0x017C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_17D[0x3]; // 0x017D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VerticalFudgeFactor; // 0x0180(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_184[0x4]; // 0x0184(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat DelayAmount; // 0x0188(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bDropDetail : 1; // 0x01B8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCollideOnlyIfVisible : 1; // 0x01B8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreSourceActor : 1; // 0x01B8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1B9[0x3]; // 0x01B9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxCollisionDistance; // 0x01BC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleCollision") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleCollision") + } + static class UParticleModuleCollision* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleCollision; + +// Class Engine.EngineHandlerComponentFactory +// 0x0000 (0x0028 - 0x0028) +class UEngineHandlerComponentFactory final : public UHandlerComponentFactory +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineHandlerComponentFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineHandlerComponentFactory") + } + static class UEngineHandlerComponentFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineHandlerComponentFactory; + +// Class Engine.ParticleModuleCollisionGPU +// 0x0078 (0x00A8 - 0x0030) +class UParticleModuleCollisionGPU final : public UParticleModuleCollisionBase +{ +public: + struct FRawDistributionFloat Resilience; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat ResilienceScaleOverLife; // 0x0060(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + float Friction; // 0x0090(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RandomSpread; // 0x0094(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RandomDistribution; // 0x0098(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RadiusScale; // 0x009C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RadiusBias; // 0x00A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleCollisionResponse Response; // 0x00A4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleCollisionMode CollisionMode; // 0x00A5(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A6[0x2]; // 0x00A6(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleCollisionGPU") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleCollisionGPU") + } + static class UParticleModuleCollisionGPU* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleCollisionGPU; + +// Class Engine.ParticleModuleColorBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleColorBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleColorBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleColorBase") + } + static class UParticleModuleColorBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleColorBase; + +// Class Engine.ParticleModuleColor +// 0x0098 (0x00C8 - 0x0030) +class UParticleModuleColor : public UParticleModuleColorBase +{ +public: + struct FRawDistributionVector StartColor; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat StartAlpha; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bClampAlpha : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleColor") + } + static class UParticleModuleColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleColor; + +// Class Engine.ParticleModuleColorOverLife +// 0x0098 (0x00C8 - 0x0030) +class UParticleModuleColorOverLife final : public UParticleModuleColorBase +{ +public: + struct FRawDistributionVector ColorOverLife; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat AlphaOverLife; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bClampAlpha : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleColorOverLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleColorOverLife") + } + static class UParticleModuleColorOverLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleColorOverLife; + +// Class Engine.ParticleModuleColorScaleOverLife +// 0x0098 (0x00C8 - 0x0030) +class UParticleModuleColorScaleOverLife final : public UParticleModuleColorBase +{ +public: + struct FRawDistributionVector ColorScaleOverLife; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat AlphaScaleOverLife; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bEmitterTime : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleColorScaleOverLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleColorScaleOverLife") + } + static class UParticleModuleColorScaleOverLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleColorScaleOverLife; + +// Class Engine.ParticleModuleColor_Seeded +// 0x0020 (0x00E8 - 0x00C8) +class UParticleModuleColor_Seeded final : public UParticleModuleColor +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x00C8(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleColor_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleColor_Seeded") + } + static class UParticleModuleColor_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleColor_Seeded; + +// Class Engine.SparseVolumeTextureFrame +// 0x01A8 (0x01D0 - 0x0028) +class USparseVolumeTextureFrame final : public USparseVolumeTexture +{ +public: + class USparseVolumeTexture* Owner; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 FrameIndex; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_34[0xC]; // 0x0034(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0040(0x0060)(Edit, EditConst, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_A0[0x130]; // 0x00A0(0x0130)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SparseVolumeTextureFrame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SparseVolumeTextureFrame") + } + static class USparseVolumeTextureFrame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USparseVolumeTextureFrame; + +// Class Engine.ParticleModuleEventBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleEventBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventBase") + } + static class UParticleModuleEventBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventBase; + +// Class Engine.ParticleModuleEventGenerator +// 0x0010 (0x0040 - 0x0030) +class UParticleModuleEventGenerator final : public UParticleModuleEventBase +{ +public: + TArray Events; // 0x0030(0x0010)(Edit, ExportObject, ZeroConstructor, NoClear, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventGenerator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventGenerator") + } + static class UParticleModuleEventGenerator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventGenerator; + +// Class Engine.SpectatorPawnMovement +// 0x0008 (0x0190 - 0x0188) +class USpectatorPawnMovement final : public UFloatingPawnMovement +{ +public: + uint8 bIgnoreTimeDilation : 1; // 0x0188(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpectatorPawnMovement") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpectatorPawnMovement") + } + static class USpectatorPawnMovement* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USpectatorPawnMovement; + +// Class Engine.ParticleModuleEventReceiverBase +// 0x0010 (0x0040 - 0x0030) +class UParticleModuleEventReceiverBase : public UParticleModuleEventBase +{ +public: + EParticleEventType EventGeneratorType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName EventName; // 0x0034(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventReceiverBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventReceiverBase") + } + static class UParticleModuleEventReceiverBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventReceiverBase; + +// Class Engine.ParticleModuleEventReceiverKillParticles +// 0x0008 (0x0048 - 0x0040) +class UParticleModuleEventReceiverKillParticles final : public UParticleModuleEventReceiverBase +{ +public: + uint8 bStopSpawning : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventReceiverKillParticles") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventReceiverKillParticles") + } + static class UParticleModuleEventReceiverKillParticles* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventReceiverKillParticles; + +// Class Engine.AnimatedSparseVolumeTextureController +// 0x0020 (0x0048 - 0x0028) +class UAnimatedSparseVolumeTextureController final : public UObject +{ +public: + class USparseVolumeTexture* SparseVolumeTexture; // 0x0028(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0030(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsPlaying; // 0x0034(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FrameRate; // 0x0038(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MipLevel; // 0x003C(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBlockingStreamingRequests; // 0x0040(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class USparseVolumeTextureFrame* GetCurrentFrame(); + void GetCurrentFramesForInterpolation(class USparseVolumeTextureFrame** Frame0, class USparseVolumeTextureFrame** Frame1, float* LerpAlpha); + float GetDuration(); + float GetFractionalFrameIndex(); + class USparseVolumeTextureFrame* GetFrameByIndex(int32 FrameIndex); + void Pause(); + void Play(); + void Stop(); + void Update(float DeltaTime); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimatedSparseVolumeTextureController") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimatedSparseVolumeTextureController") + } + static class UAnimatedSparseVolumeTextureController* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimatedSparseVolumeTextureController; + +// Class Engine.SoundSubmixBase +// 0x0068 (0x0090 - 0x0028) +class USoundSubmixBase : public UObject +{ +public: + bool bAutoDisable; // 0x0028(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoDisableTime; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ChildSubmixes; // 0x0030(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, UObjectWrapper, NativeAccessSpecifierPublic) + TMap DynamicChildSubmixes; // 0x0040(0x0050)(Transient, NativeAccessSpecifierPublic) + +public: + bool DynamicConnect(const class UObject* WorldContextObject, class USoundSubmixBase* InParent); + bool DynamicDisconnect(const class UObject* WorldContextObject); + class USoundSubmixBase* FindDynamicAncestor(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundSubmixBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundSubmixBase") + } + static class USoundSubmixBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundSubmixBase; + +// Class Engine.SoundSubmixWithParentBase +// 0x0060 (0x00F0 - 0x0090) +class USoundSubmixWithParentBase : public USoundSubmixBase +{ +public: + class USoundSubmixBase* ParentSubmix; // 0x0090(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap DynamicParentSubmix; // 0x0098(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 bIsDynamic : 1; // 0x00E8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_E9[0x7]; // 0x00E9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundSubmixWithParentBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundSubmixWithParentBase") + } + static class USoundSubmixWithParentBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundSubmixWithParentBase; + +// Class Engine.ParticleModuleEventReceiverSpawn +// 0x00B0 (0x00F0 - 0x0040) +class UParticleModuleEventReceiverSpawn final : public UParticleModuleEventReceiverBase +{ +public: + struct FRawDistributionFloat SpawnCount; // 0x0040(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bUseParticleTime : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsePSysLocation : 1; // 0x0070(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritVelocity : 1; // 0x0070(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector InheritVelocityScale; // 0x0078(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray PhysicalMaterials; // 0x00D8(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 bBanPhysicalMaterials : 1; // 0x00E8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_E9[0x7]; // 0x00E9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventReceiverSpawn") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventReceiverSpawn") + } + static class UParticleModuleEventReceiverSpawn* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventReceiverSpawn; + +// Class Engine.ParticleModuleEventSendToGame +// 0x0000 (0x0028 - 0x0028) +class UParticleModuleEventSendToGame final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleEventSendToGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleEventSendToGame") + } + static class UParticleModuleEventSendToGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleEventSendToGame; + +// Class Engine.ParticleModuleKillBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleKillBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleKillBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleKillBase") + } + static class UParticleModuleKillBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleKillBase; + +// Class Engine.ParticleModuleKillBox +// 0x00C8 (0x00F8 - 0x0030) +class UParticleModuleKillBox final : public UParticleModuleKillBase +{ +public: + struct FRawDistributionVector LowerLeftCorner; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector UpperRightCorner; // 0x0090(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bAbsolute : 1; // 0x00F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bKillInside : 1; // 0x00F0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAxisAlignedAndFixedSize : 1; // 0x00F0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F1[0x7]; // 0x00F1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleKillBox") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleKillBox") + } + static class UParticleModuleKillBox* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleKillBox; + +// Class Engine.ParticleModuleVelocityOverLifetime +// 0x0068 (0x00A0 - 0x0038) +class UParticleModuleVelocityOverLifetime final : public UParticleModuleVelocityBase +{ +public: + struct FRawDistributionVector VelOverLife; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 Absolute : 1; // 0x0098(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, ExportObject, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocityOverLifetime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocityOverLifetime") + } + static class UParticleModuleVelocityOverLifetime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocityOverLifetime; + +// Class Engine.ParticleModuleKillHeight +// 0x0038 (0x0068 - 0x0030) +class UParticleModuleKillHeight final : public UParticleModuleKillBase +{ +public: + struct FRawDistributionFloat Height; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bAbsolute : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFloor : 1; // 0x0060(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyPSysScale : 1; // 0x0060(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleKillHeight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleKillHeight") + } + static class UParticleModuleKillHeight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleKillHeight; + +// Class Engine.ParticleModuleLifetimeBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleLifetimeBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLifetimeBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLifetimeBase") + } + static class UParticleModuleLifetimeBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLifetimeBase; + +// Class Engine.PhysicsConstraintTemplate +// 0x03F8 (0x0420 - 0x0028) +class UPhysicsConstraintTemplate final : public UObject +{ +public: + struct FConstraintInstance DefaultInstance; // 0x0028(0x0288)(Edit, NativeAccessSpecifierPublic) + TArray ProfileHandles; // 0x02B0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FConstraintProfileProperties DefaultProfile; // 0x02C0(0x0160)(Transient, NoDestructor, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsConstraintTemplate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsConstraintTemplate") + } + static class UPhysicsConstraintTemplate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsConstraintTemplate; + +// Class Engine.ParticleModuleLifetime +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleLifetime : public UParticleModuleLifetimeBase +{ +public: + struct FRawDistributionFloat Lifetime; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLifetime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLifetime") + } + static class UParticleModuleLifetime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLifetime; + +// Class Engine.ParticleModuleLifetime_Seeded +// 0x0020 (0x0080 - 0x0060) +class UParticleModuleLifetime_Seeded final : public UParticleModuleLifetime +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0060(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLifetime_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLifetime_Seeded") + } + static class UParticleModuleLifetime_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLifetime_Seeded; + +// Class Engine.ParticleSystemComponent +// 0x0310 (0x0800 - 0x04F0) +class UParticleSystemComponent final : public UFXSystemComponent +{ +public: + class UParticleSystem* Template; // 0x04E8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray EmitterMaterials; // 0x04F0(0x0010)(ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SkelMeshComponents; // 0x0500(0x0010)(ExportObject, ZeroConstructor, Transient, DuplicateTransient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_510[0x1]; // 0x0510(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bResetOnDetach : 1; // 0x0511(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateOnDedicatedServer : 1; // 0x0511(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_511_2 : 2; // 0x0511(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAllowRecycling : 1; // 0x0511(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoManageAttachment : 1; // 0x0511(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoAttachWeldSimulatedBodies : 1; // 0x0511(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_511_7 : 1; // 0x0511(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 BitPad_512_0 : 2; // 0x0512(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bWarmingUp : 1; // 0x0512(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideLODMethod : 1; // 0x0512(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipUpdateDynamicDataDuringTick : 1; // 0x0512(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_513[0xA]; // 0x0513(0x000A)(Fixing Size After Last Property [ Dumper-7 ]) + EParticleSystemLODMethod LODMethod; // 0x051D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSignificanceLevel RequiredSignificance; // 0x051E(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51F[0x1]; // 0x051F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InstanceParameters; // 0x0520(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleSpawn; // 0x0530(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleBurst; // 0x0540(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleDeath; // 0x0550(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnParticleCollide; // 0x0560(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + bool bOldPositionValid; // 0x0570(0x0001)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_571[0x7]; // 0x0571(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OldPosition; // 0x0578(0x0018)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PartSysVelocity; // 0x0590(0x0018)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WarmupTime; // 0x05A8(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WarmupTickRate; // 0x05AC(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5B0[0x4]; // 0x05B0(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float SecondsBeforeInactive; // 0x05B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5B8[0x4]; // 0x05B8(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxTimeBeforeForceUpdateTransform; // 0x05BC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C0[0x20]; // 0x05C0(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReplayClips; // 0x05E0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_5F0[0x8]; // 0x05F0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float CustomTimeDilation; // 0x05F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5FC[0x54]; // 0x05FC(0x0054)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr AutoAttachParent; // 0x0650(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, DisableEditOnTemplate, EditConst, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AutoAttachSocketName; // 0x0658(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule AutoAttachLocationRule; // 0x0660(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule AutoAttachRotationRule; // 0x0661(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule AutoAttachScaleRule; // 0x0662(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_663[0x55]; // 0x0663(0x0055)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnSystemFinished; // 0x06B8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_6C8[0x138]; // 0x06C8(0x0138)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void BeginTrails(class FName InFirstSocketName, class FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth); + class UMaterialInstanceDynamic* CreateNamedDynamicMaterialInstance(class FName InName, class UMaterialInterface* SourceMaterial); + void EndTrails(); + void GenerateParticleEvent(const class FName InEventName, const float InEmitterTime, const struct FVector& InLocation, const struct FVector& InDirection, const struct FVector& InVelocity); + void SetAutoAttachParams(class USceneComponent* Parent, class FName SocketName, EAttachLocation LocationType); + void SetBeamEndPoint(int32 EmitterIndex, const struct FVector& NewEndPoint); + void SetBeamSourcePoint(int32 EmitterIndex, const struct FVector& NewSourcePoint, int32 SourceIndex); + void SetBeamSourceStrength(int32 EmitterIndex, float NewSourceStrength, int32 SourceIndex); + void SetBeamSourceTangent(int32 EmitterIndex, const struct FVector& NewTangentPoint, int32 SourceIndex); + void SetBeamTargetPoint(int32 EmitterIndex, const struct FVector& NewTargetPoint, int32 TargetIndex); + void SetBeamTargetStrength(int32 EmitterIndex, float NewTargetStrength, int32 TargetIndex); + void SetBeamTargetTangent(int32 EmitterIndex, const struct FVector& NewTangentPoint, int32 TargetIndex); + void SetMaterialParameter(class FName ParameterName, class UMaterialInterface* Param); + void SetTemplate(class UParticleSystem* NewTemplate); + void SetTrailSourceData(class FName InFirstSocketName, class FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth); + + bool GetBeamEndPoint(int32 EmitterIndex, struct FVector* OutEndPoint) const; + bool GetBeamSourcePoint(int32 EmitterIndex, int32 SourceIndex, struct FVector* OutSourcePoint) const; + bool GetBeamSourceStrength(int32 EmitterIndex, int32 SourceIndex, float* OutSourceStrength) const; + bool GetBeamSourceTangent(int32 EmitterIndex, int32 SourceIndex, struct FVector* OutTangentPoint) const; + bool GetBeamTargetPoint(int32 EmitterIndex, int32 TargetIndex, struct FVector* OutTargetPoint) const; + bool GetBeamTargetStrength(int32 EmitterIndex, int32 TargetIndex, float* OutTargetStrength) const; + bool GetBeamTargetTangent(int32 EmitterIndex, int32 TargetIndex, struct FVector* OutTangentPoint) const; + class UMaterialInterface* GetNamedMaterial(class FName InName) const; + int32 GetNumActiveParticles() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleSystemComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleSystemComponent") + } + static class UParticleSystemComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleSystemComponent; + +// Class Engine.PhysicalAnimationComponent +// 0x0040 (0x00E0 - 0x00A0) +class UPhysicalAnimationComponent final : public UActorComponent +{ +public: + float StrengthMultiplyer; // 0x00A0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x4]; // 0x00A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeletalMeshComponent* SkeletalMeshComponent; // 0x00A8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_B0[0x30]; // 0x00B0(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ApplyPhysicalAnimationProfileBelow(class FName BodyName, class FName ProfileName, bool bIncludeSelf, bool bClearNotFound); + void ApplyPhysicalAnimationSettings(class FName BodyName, const struct FPhysicalAnimationData& PhysicalAnimationData); + void ApplyPhysicalAnimationSettingsBelow(class FName BodyName, const struct FPhysicalAnimationData& PhysicalAnimationData, bool bIncludeSelf); + void SetSkeletalMeshComponent(class USkeletalMeshComponent* InSkeletalMeshComponent); + void SetStrengthMultiplyer(float InStrengthMultiplyer); + + struct FTransform GetBodyTargetTransform(class FName BodyName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicalAnimationComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicalAnimationComponent") + } + static class UPhysicalAnimationComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicalAnimationComponent; + +// Class Engine.ParticleModuleLightBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleLightBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLightBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLightBase") + } + static class UParticleModuleLightBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLightBase; + +// Class Engine.ParticleModuleLight +// 0x0110 (0x0140 - 0x0030) +class UParticleModuleLight : public UParticleModuleLightBase +{ +public: + bool bUseInverseSquaredFalloff; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsTranslucency; // 0x0031(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideInverseExposureBlend : 1; // 0x0034(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bPreviewLightRadius; // 0x0038(0x0001)(Edit, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SpawnFraction; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionVector ColorScaleOverLife; // 0x0040(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat BrightnessOverLife; // 0x00A0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat RadiusScale; // 0x00D0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat LightExponent; // 0x0100(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + float InverseExposureBlend; // 0x0130(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightingChannels LightingChannels; // 0x0134(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 Pad_135[0x3]; // 0x0135(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumetricScatteringIntensity; // 0x0138(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHighQualityLights; // 0x013C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShadowCastingLights; // 0x013D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13E[0x2]; // 0x013E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLight") + } + static class UParticleModuleLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLight; + +// Class Engine.ParticleModuleLight_Seeded +// 0x0020 (0x0160 - 0x0140) +class UParticleModuleLight_Seeded final : public UParticleModuleLight +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0140(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLight_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLight_Seeded") + } + static class UParticleModuleLight_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLight_Seeded; + +// Class Engine.PhysicsSpringComponent +// 0x0030 (0x0260 - 0x0230) +class UPhysicsSpringComponent final : public USceneComponent +{ +public: + float SpringStiffness; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpringDamping; // 0x0234(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpringLengthAtRest; // 0x0238(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpringRadius; // 0x023C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel SpringChannel; // 0x0240(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0241(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_242[0x2]; // 0x0242(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float SpringCompression; // 0x0244(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_248[0x18]; // 0x0248(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + float GetNormalizedCompressionScalar() const; + struct FVector GetSpringCurrentEndPoint() const; + struct FVector GetSpringDirection() const; + struct FVector GetSpringRestingPoint() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsSpringComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsSpringComponent") + } + static class UPhysicsSpringComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsSpringComponent; + +// Class Engine.ParticleModuleLocationBoneSocket +// 0x0050 (0x0080 - 0x0030) +class UParticleModuleLocationBoneSocket final : public UParticleModuleLocationBase +{ +public: + ELocationBoneSocketSource SourceType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector UniversalOffset; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SourceLocations; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + ELocationBoneSocketSelectionMethod SelectionMethod; // 0x0060(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUpdatePositionEachFrame : 1; // 0x0064(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOrientMeshEmitters : 1; // 0x0064(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritBoneVelocity : 1; // 0x0064(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_65[0x3]; // 0x0065(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InheritVelocityScale; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SkelMeshActorParamName; // 0x006C(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumPreSelectedIndices; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_78[0x8]; // 0x0078(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationBoneSocket") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationBoneSocket") + } + static class UParticleModuleLocationBoneSocket* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationBoneSocket; + +// Class Engine.GameInstanceSubsystem +// 0x0000 (0x0030 - 0x0030) +class UGameInstanceSubsystem : public USubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameInstanceSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameInstanceSubsystem") + } + static class UGameInstanceSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameInstanceSubsystem; + +// Class Engine.ReplaySubsystem +// 0x0010 (0x0040 - 0x0030) +class UReplaySubsystem final : public UGameInstanceSubsystem +{ +public: + bool bLoadDefaultMapOnStop; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0xF]; // 0x0031(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void RequestCheckpoint(); + + class FString GetActiveReplayName() const; + float GetReplayCurrentTime() const; + bool IsPlaying() const; + bool IsRecording() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplaySubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplaySubsystem") + } + static class UReplaySubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReplaySubsystem; + +// Class Engine.ParticleModuleLocationDirect +// 0x0180 (0x01B0 - 0x0030) +class UParticleModuleLocationDirect final : public UParticleModuleLocationBase +{ +public: + struct FRawDistributionVector Location; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector LocationOffset; // 0x0090(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector ScaleFactor; // 0x00F0(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector Direction; // 0x0150(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationDirect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationDirect") + } + static class UParticleModuleLocationDirect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationDirect; + +// Class Engine.ParticleModuleLocationEmitter +// 0x0020 (0x0050 - 0x0030) +class UParticleModuleLocationEmitter final : public UParticleModuleLocationBase +{ +public: + class FName EmitterName; // 0x0030(0x0008)(Edit, ExportObject, ZeroConstructor, NoClear, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELocationEmitterSelectionMethod SelectionMethod; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 InheritSourceVelocity : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InheritSourceVelocityScale; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bInheritSourceRotation : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InheritSourceRotationScale; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationEmitter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationEmitter") + } + static class UParticleModuleLocationEmitter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationEmitter; + +// Class Engine.RendererOverrideSettings +// 0x0008 (0x0040 - 0x0038) +class URendererOverrideSettings final : public UDeveloperSettings +{ +public: + uint8 bSupportAllShaderPermutations : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RendererOverrideSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RendererOverrideSettings") + } + static class URendererOverrideSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URendererOverrideSettings; + +// Class Engine.ParticleModuleLocationEmitterDirect +// 0x0008 (0x0038 - 0x0030) +class UParticleModuleLocationEmitterDirect final : public UParticleModuleLocationBase +{ +public: + class FName EmitterName; // 0x0030(0x0008)(Edit, ExportObject, ZeroConstructor, NoClear, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationEmitterDirect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationEmitterDirect") + } + static class UParticleModuleLocationEmitterDirect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationEmitterDirect; + +// Class Engine.ParticleModuleLocationPrimitiveCylinder +// 0x0070 (0x0138 - 0x00C8) +class UParticleModuleLocationPrimitiveCylinder : public UParticleModuleLocationPrimitiveBase +{ +public: + uint8 RadialVelocity : 1; // 0x00C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C9[0x7]; // 0x00C9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat StartRadius; // 0x00D0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat StartHeight; // 0x0100(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + ECylinderHeightAxis HeightAxis; // 0x0130(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_131[0x7]; // 0x0131(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveCylinder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveCylinder") + } + static class UParticleModuleLocationPrimitiveCylinder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveCylinder; + +// Class Engine.ParticleModuleLocationPrimitiveCylinder_Seeded +// 0x0020 (0x0158 - 0x0138) +class UParticleModuleLocationPrimitiveCylinder_Seeded final : public UParticleModuleLocationPrimitiveCylinder +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0138(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveCylinder_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveCylinder_Seeded") + } + static class UParticleModuleLocationPrimitiveCylinder_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveCylinder_Seeded; + +// Class Engine.ParticleModuleLocationPrimitiveTriangle +// 0x00F0 (0x0120 - 0x0030) +class UParticleModuleLocationPrimitiveTriangle final : public UParticleModuleLocationBase +{ +public: + struct FRawDistributionVector StartOffset; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Height; // 0x0090(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Angle; // 0x00C0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Thickness; // 0x00F0(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationPrimitiveTriangle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationPrimitiveTriangle") + } + static class UParticleModuleLocationPrimitiveTriangle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationPrimitiveTriangle; + +// Class Engine.ParticleModuleLocationSkelVertSurface +// 0x0080 (0x00B0 - 0x0030) +class UParticleModuleLocationSkelVertSurface final : public UParticleModuleLocationBase +{ +public: + ELocationSkelVertSurfaceSource SourceType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector UniversalOffset; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUpdatePositionEachFrame : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOrientMeshEmitters : 1; // 0x0050(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritBoneVelocity : 1; // 0x0050(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InheritVelocityScale; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SkelMeshActorParamName; // 0x0058(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ValidAssociatedBones; // 0x0060(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bEnforceNormalCheck : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NormalToCompare; // 0x0078(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalCheckToleranceDegrees; // 0x0090(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalCheckTolerance; // 0x0094(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ValidMaterialIndices; // 0x0098(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bInheritVertexColor : 1; // 0x00A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritUV : 1; // 0x00A8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A9[0x3]; // 0x00A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 InheritUVChannel; // 0x00AC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationSkelVertSurface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationSkelVertSurface") + } + static class UParticleModuleLocationSkelVertSurface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationSkelVertSurface; + +// Class Engine.ParticleModuleLocationWorldOffset_Seeded +// 0x0020 (0x00B8 - 0x0098) +class UParticleModuleLocationWorldOffset_Seeded final : public UParticleModuleLocationWorldOffset +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0098(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocationWorldOffset_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocationWorldOffset_Seeded") + } + static class UParticleModuleLocationWorldOffset_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocationWorldOffset_Seeded; + +// Class Engine.ParticleModuleLocation_Seeded +// 0x0020 (0x00B8 - 0x0098) +class UParticleModuleLocation_Seeded final : public UParticleModuleLocation +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0098(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleLocation_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleLocation_Seeded") + } + static class UParticleModuleLocation_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleLocation_Seeded; + +// Class Engine.ParticleModuleMeshRotationRateMultiplyLife +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleMeshRotationRateMultiplyLife final : public UParticleModuleRotationRateBase +{ +public: + struct FRawDistributionVector LifeMultiplier; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotationRateMultiplyLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotationRateMultiplyLife") + } + static class UParticleModuleMeshRotationRateMultiplyLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotationRateMultiplyLife; + +// Class Engine.ParticleModuleMeshRotationRateOverLife +// 0x0068 (0x0098 - 0x0030) +class UParticleModuleMeshRotationRateOverLife final : public UParticleModuleRotationRateBase +{ +public: + struct FRawDistributionVector RotRate; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bScaleRotRate : 1; // 0x0090(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleMeshRotationRateOverLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleMeshRotationRateOverLife") + } + static class UParticleModuleMeshRotationRateOverLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleMeshRotationRateOverLife; + +// Class Engine.ParticleModuleOrbit +// 0x0140 (0x0178 - 0x0038) +class UParticleModuleOrbit final : public UParticleModuleOrbitBase +{ +public: + EOrbitChainMode ChainMode; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector OffsetAmount; // 0x0040(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FOrbitOptions OffsetOptions; // 0x00A0(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x4]; // 0x00A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector RotationAmount; // 0x00A8(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FOrbitOptions RotationOptions; // 0x0108(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_10C[0x4]; // 0x010C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector RotationRateAmount; // 0x0110(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FOrbitOptions RotationRateOptions; // 0x0170(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_174[0x4]; // 0x0174(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleOrbit") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleOrbit") + } + static class UParticleModuleOrbit* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleOrbit; + +// Class Engine.ParticleModuleRotation +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleRotation : public UParticleModuleRotationBase +{ +public: + struct FRawDistributionFloat StartRotation; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotation") + } + static class UParticleModuleRotation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotation; + +// Class Engine.ParticleModuleRotationOverLifetime +// 0x0038 (0x0068 - 0x0030) +class UParticleModuleRotationOverLifetime final : public UParticleModuleRotationBase +{ +public: + struct FRawDistributionFloat RotationOverLife; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 Scale : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationOverLifetime") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationOverLifetime") + } + static class UParticleModuleRotationOverLifetime* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationOverLifetime; + +// Class Engine.ParticleModuleRotationRateMultiplyLife +// 0x0030 (0x0060 - 0x0030) +class UParticleModuleRotationRateMultiplyLife final : public UParticleModuleRotationRateBase +{ +public: + struct FRawDistributionFloat LifeMultiplier; // 0x0030(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationRateMultiplyLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationRateMultiplyLife") + } + static class UParticleModuleRotationRateMultiplyLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationRateMultiplyLife; + +// Class Engine.ParticleModuleRotationRate_Seeded +// 0x0020 (0x0080 - 0x0060) +class UParticleModuleRotationRate_Seeded final : public UParticleModuleRotationRate +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0060(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotationRate_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotationRate_Seeded") + } + static class UParticleModuleRotationRate_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotationRate_Seeded; + +// Class Engine.ParticleModuleRotation_Seeded +// 0x0020 (0x0080 - 0x0060) +class UParticleModuleRotation_Seeded final : public UParticleModuleRotation +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0060(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleRotation_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleRotation_Seeded") + } + static class UParticleModuleRotation_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleRotation_Seeded; + +// Class Engine.ParticleModuleSize +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleSize : public UParticleModuleSizeBase +{ +public: + struct FRawDistributionVector StartSize; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSize") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSize") + } + static class UParticleModuleSize* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSize; + +// Class Engine.ParticleModuleSizeMultiplyLife +// 0x0068 (0x0098 - 0x0030) +class UParticleModuleSizeMultiplyLife final : public UParticleModuleSizeBase +{ +public: + struct FRawDistributionVector LifeMultiplier; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 MultiplyX : 1; // 0x0090(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 MultiplyY : 1; // 0x0090(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 MultiplyZ : 1; // 0x0090(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSizeMultiplyLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSizeMultiplyLife") + } + static class UParticleModuleSizeMultiplyLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSizeMultiplyLife; + +// Class Engine.ParticleModuleSizeScale +// 0x0068 (0x0098 - 0x0030) +class UParticleModuleSizeScale final : public UParticleModuleSizeBase +{ +public: + struct FRawDistributionVector SizeScale; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 EnableX : 1; // 0x0090(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 EnableY : 1; // 0x0090(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 EnableZ : 1; // 0x0090(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSizeScale") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSizeScale") + } + static class UParticleModuleSizeScale* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSizeScale; + +// Class Engine.ParticleModuleSize_Seeded +// 0x0020 (0x00B0 - 0x0090) +class UParticleModuleSize_Seeded final : public UParticleModuleSize +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x0090(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSize_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSize_Seeded") + } + static class UParticleModuleSize_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSize_Seeded; + +// Class Engine.ParticleModuleSourceMovement +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleSourceMovement final : public UParticleModuleLocationBase +{ +public: + struct FRawDistributionVector SourceMovementScale; // 0x0030(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSourceMovement") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSourceMovement") + } + static class UParticleModuleSourceMovement* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSourceMovement; + +// Class Engine.ParticleModuleSpawnPerUnit +// 0x0040 (0x0078 - 0x0038) +class UParticleModuleSpawnPerUnit final : public UParticleModuleSpawnBase +{ +public: + float UnitScalar; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MovementTolerance; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat SpawnPerUnit; // 0x0040(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + float MaxFrameDistance; // 0x0070(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIgnoreSpawnRateWhenMoving : 1; // 0x0074(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreMovementAlongX : 1; // 0x0074(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreMovementAlongY : 1; // 0x0074(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreMovementAlongZ : 1; // 0x0074(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_75[0x3]; // 0x0075(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleSpawnPerUnit") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleSpawnPerUnit") + } + static class UParticleModuleSpawnPerUnit* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleSpawnPerUnit; + +// Class Engine.ParticleModuleTrailBase +// 0x0000 (0x0030 - 0x0030) +class UParticleModuleTrailBase : public UParticleModule +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTrailBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTrailBase") + } + static class UParticleModuleTrailBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTrailBase; + +// Class Engine.ParticleModuleTrailSource +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleTrailSource final : public UParticleModuleTrailBase +{ +public: + ETrail2SourceMethod SourceMethod; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName SourceName; // 0x0034(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat SourceStrength; // 0x0040(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bLockSourceStength : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SourceOffsetCount; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SourceOffsetDefaults; // 0x0078(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + EParticleSourceSelectionMethod SelectionMethod; // 0x0088(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x3]; // 0x0089(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bInheritRotation : 1; // 0x008C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_8D[0x3]; // 0x008D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTrailSource") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTrailSource") + } + static class UParticleModuleTrailSource* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTrailSource; + +// Class Engine.ParticleModuleTypeDataBeam2 +// 0x0120 (0x0150 - 0x0030) +class UParticleModuleTypeDataBeam2 final : public UParticleModuleTypeDataBase +{ +public: + EBeam2Method BeamMethod; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TextureTile; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureTileDistance; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Sheets; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxBeamCount; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Speed; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InterpolationPoints; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAlwaysOn : 1; // 0x004C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 UpVectorStepSize; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BranchParentName; // 0x0054(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat Distance; // 0x0060(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + EBeamTaperMethod TaperMethod; // 0x0090(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat TaperFactor; // 0x0098(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat TaperScale; // 0x00C8(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 RenderGeometry : 1; // 0x00F8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 RenderDirectLine : 1; // 0x00F8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 RenderLines : 1; // 0x00F8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 RenderTessellation : 1; // 0x00F8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F9[0x57]; // 0x00F9(0x0057)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataBeam2") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataBeam2") + } + static class UParticleModuleTypeDataBeam2* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataBeam2; + +// Class Engine.ParticleModuleTypeDataGpu +// 0x05A0 (0x05D0 - 0x0030) +class UParticleModuleTypeDataGpu final : public UParticleModuleTypeDataBase +{ +public: + struct FGPUSpriteEmitterInfo EmitterInfo; // 0x0030(0x0350)(ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FGPUSpriteResourceData ResourceData; // 0x0380(0x0240)(NativeAccessSpecifierPublic) + float CameraMotionBlurAmount; // 0x05C0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bClearExistingParticlesOnInit : 1; // 0x05C4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5C5[0xB]; // 0x05C5(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataGpu") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataGpu") + } + static class UParticleModuleTypeDataGpu* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataGpu; + +// Class Engine.ParticleModuleTypeDataMesh +// 0x0080 (0x00B0 - 0x0030) +class UParticleModuleTypeDataMesh final : public UParticleModuleTypeDataBase +{ +public: + class UStaticMesh* Mesh; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float LODSizeScale; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseStaticMeshLODs : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CastShadows : 1; // 0x0044(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DoCollisions : 1; // 0x0044(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMeshScreenAlignment MeshAlignment; // 0x0045(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideMaterial : 1; // 0x0046(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideDefaultMotionBlurSettings : 1; // 0x0046(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMotionBlur : 1; // 0x0046(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_47[0x1]; // 0x0047(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector RollPitchYawRange; // 0x0048(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + EParticleAxisLock AxisLockOption; // 0x00A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCameraFacing : 1; // 0x00A9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMeshCameraFacingUpAxis CameraFacingUpAxisOption; // 0x00AA(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshCameraFacingOptions CameraFacingOption; // 0x00AB(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bApplyParticleRotationAsSpin : 1; // 0x00AC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFaceCameraDirectionRatherThanPosition : 1; // 0x00AC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCollisionsConsiderPartilceSize : 1; // 0x00AC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_AD[0x3]; // 0x00AD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleTypeDataMesh") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleTypeDataMesh") + } + static class UParticleModuleTypeDataMesh* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleTypeDataMesh; + +// Class Engine.ParticleModuleVectorFieldGlobal +// 0x0010 (0x0040 - 0x0030) +class UParticleModuleVectorFieldGlobal final : public UParticleModuleVectorFieldBase +{ +public: + uint8 bOverrideGlobalVectorFieldTightness : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float GlobalVectorFieldScale; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalVectorFieldTightness; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldGlobal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldGlobal") + } + static class UParticleModuleVectorFieldGlobal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldGlobal; + +// Class Engine.ParticleModuleVectorFieldLocal +// 0x0060 (0x0090 - 0x0030) +class UParticleModuleVectorFieldLocal final : public UParticleModuleVectorFieldBase +{ +public: + class UVectorField* VectorField; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RelativeTranslation; // 0x0038(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RelativeRotation; // 0x0050(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector RelativeScale3D; // 0x0068(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Intensity; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tightness; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIgnoreComponentTransform : 1; // 0x0088(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileX : 1; // 0x0088(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileY : 1; // 0x0088(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileZ : 1; // 0x0088(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFixDT : 1; // 0x0088(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_89[0x7]; // 0x0089(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldLocal") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldLocal") + } + static class UParticleModuleVectorFieldLocal* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldLocal; + +// Class Engine.ParticleModuleVectorFieldRotationRate +// 0x0018 (0x0048 - 0x0030) +class UParticleModuleVectorFieldRotationRate final : public UParticleModuleVectorFieldBase +{ +public: + struct FVector RotationRate; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldRotationRate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldRotationRate") + } + static class UParticleModuleVectorFieldRotationRate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldRotationRate; + +// Class Engine.ParticleModuleVectorFieldScale +// 0x0038 (0x0068 - 0x0030) +class UParticleModuleVectorFieldScale final : public UParticleModuleVectorFieldBase +{ +public: + class UDistributionFloat* VectorFieldScale; // 0x0030(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat VectorFieldScaleRaw; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldScale") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldScale") + } + static class UParticleModuleVectorFieldScale* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldScale; + +// Class Engine.ParticleModuleVectorFieldScaleOverLife +// 0x0038 (0x0068 - 0x0030) +class UParticleModuleVectorFieldScaleOverLife final : public UParticleModuleVectorFieldBase +{ +public: + class UDistributionFloat* VectorFieldScaleOverLife; // 0x0030(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRawDistributionFloat VectorFieldScaleOverLifeRaw; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVectorFieldScaleOverLife") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVectorFieldScaleOverLife") + } + static class UParticleModuleVectorFieldScaleOverLife* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVectorFieldScaleOverLife; + +// Class Engine.ParticleModuleVelocity +// 0x0090 (0x00C8 - 0x0038) +class UParticleModuleVelocity : public UParticleModuleVelocityBase +{ +public: + struct FRawDistributionVector StartVelocity; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat StartVelocityRadial; // 0x0098(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocity") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocity") + } + static class UParticleModuleVelocity* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocity; + +// Class Engine.ParticleModuleVelocityCone +// 0x0078 (0x00B0 - 0x0038) +class UParticleModuleVelocityCone final : public UParticleModuleVelocityBase +{ +public: + struct FRawDistributionFloat Angle; // 0x0038(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat Velocity; // 0x0068(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0098(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocityCone") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocityCone") + } + static class UParticleModuleVelocityCone* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocityCone; + +// Class Engine.ParticleModuleVelocityInheritParent +// 0x0060 (0x0098 - 0x0038) +class UParticleModuleVelocityInheritParent final : public UParticleModuleVelocityBase +{ +public: + struct FRawDistributionVector Scale; // 0x0038(0x0060)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocityInheritParent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocityInheritParent") + } + static class UParticleModuleVelocityInheritParent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocityInheritParent; + +// Class Engine.ParticleModuleVelocity_Seeded +// 0x0020 (0x00E8 - 0x00C8) +class UParticleModuleVelocity_Seeded final : public UParticleModuleVelocity +{ +public: + struct FParticleRandomSeedInfo RandomSeedInfo; // 0x00C8(0x0020)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleModuleVelocity_Seeded") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleModuleVelocity_Seeded") + } + static class UParticleModuleVelocity_Seeded* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleModuleVelocity_Seeded; + +// Class Engine.ParticleSpriteEmitter +// 0x0000 (0x01C0 - 0x01C0) +class UParticleSpriteEmitter final : public UParticleEmitter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ParticleSpriteEmitter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ParticleSpriteEmitter") + } + static class UParticleSpriteEmitter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UParticleSpriteEmitter; + +// Class Engine.PathFollowingAgentInterface +// 0x0000 (0x0000 - 0x0000) +class IPathFollowingAgentInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PathFollowingAgentInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PathFollowingAgentInterface") + } + static class IPathFollowingAgentInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IPathFollowingAgentInterface; + +// Class Engine.PhysicsObjectBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UPhysicsObjectBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void ApplyRadialImpulse(class UPrimitiveComponent* Component, const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bApplyStrain, float Strain, bool bVelChange, float MinValue, float MaxValue); + static bool ExtractClosestPhysicsObjectResults(const struct FClosestPhysicsObjectResult& Result, class FName* OutName); + static struct FClosestPhysicsObjectResult GetClosestPhysicsObjectFromWorldLocation(class UPrimitiveComponent* Component, const struct FVector& WorldLocation); + static struct FTransform GetPhysicsObjectWorldTransform(class UPrimitiveComponent* Component, class FName BoneName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsObjectBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsObjectBlueprintLibrary") + } + static class UPhysicsObjectBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsObjectBlueprintLibrary; + +// Class Engine.PhysicsThreadLibrary +// 0x0000 (0x0028 - 0x0028) +class UPhysicsThreadLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void AddForce(const struct FBodyInstanceAsyncPhysicsTickHandle& Handle, const struct FVector& Force, bool bAccelChange); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsThreadLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsThreadLibrary") + } + static class UPhysicsThreadLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsThreadLibrary; + +// Class Engine.PhysicsThrusterComponent +// 0x0010 (0x0240 - 0x0230) +class UPhysicsThrusterComponent final : public USceneComponent +{ +public: + float ThrustStrength; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_234[0xC]; // 0x0234(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsThrusterComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsThrusterComponent") + } + static class UPhysicsThrusterComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsThrusterComponent; + +// Class Engine.PlaneReflectionCaptureComponent +// 0x0010 (0x02B0 - 0x02A0) +class UPlaneReflectionCaptureComponent final : public UReflectionCaptureComponent +{ +public: + float InfluenceRadiusScale; // 0x0298(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29C[0x4]; // 0x029C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UDrawSphereComponent* PreviewInfluenceRadius; // 0x02A0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBoxComponent* PreviewCaptureBox; // 0x02A8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlaneReflectionCaptureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlaneReflectionCaptureComponent") + } + static class UPlaneReflectionCaptureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlaneReflectionCaptureComponent; + +// Class Engine.PlatformInterfaceWebResponse +// 0x0088 (0x00B0 - 0x0028) +class UPlatformInterfaceWebResponse final : public UObject +{ +public: + class FString OriginalURL; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ResponseCode; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Tag; // 0x003C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString StringResponse; // 0x0040(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BinaryResponse; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_60[0x50]; // 0x0060(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void GetHeader(int32 HeaderIndex, class FString* Header, class FString* Value); + class FString GetHeaderValue(const class FString& HeaderName); + int32 GetNumHeaders(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformInterfaceWebResponse") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformInterfaceWebResponse") + } + static class UPlatformInterfaceWebResponse* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlatformInterfaceWebResponse; + +// Class Engine.PointLight +// 0x0008 (0x02C0 - 0x02B8) +class APointLight final : public ALight +{ +public: + class UPointLightComponent* PointLightComponent; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + void SetLightFalloffExponent(float NewLightFalloffExponent); + void SetRadius(float NewRadius); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PointLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PointLight") + } + static class APointLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APointLight; + +// Class Engine.Polys +// 0x0010 (0x0038 - 0x0028) +class UPolys final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Polys") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Polys") + } + static class UPolys* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPolys; + +// Class Engine.RadialForceActor +// 0x0008 (0x02B0 - 0x02A8) +class ARadialForceActor final : public ARigidBodyBase +{ +public: + class URadialForceComponent* ForceComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void DisableForce(); + void EnableForce(); + void FireImpulse(); + void ToggleForce(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RadialForceActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RadialForceActor") + } + static class ARadialForceActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ARadialForceActor; + +// Class Engine.ReplicationDriver +// 0x0000 (0x0028 - 0x0028) +class UReplicationDriver final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationDriver") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationDriver") + } + static class UReplicationDriver* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReplicationDriver; + +// Class Engine.RuntimePartitionLevelStreaming +// 0x0000 (0x0058 - 0x0058) +class URuntimePartitionLevelStreaming final : public URuntimePartition +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimePartitionLevelStreaming") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimePartitionLevelStreaming") + } + static class URuntimePartitionLevelStreaming* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimePartitionLevelStreaming; + +// Class Engine.RuntimePartitionLHGrid +// 0x0000 (0x0058 - 0x0058) +class URuntimePartitionLHGrid final : public URuntimePartition +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimePartitionLHGrid") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimePartitionLHGrid") + } + static class URuntimePartitionLHGrid* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimePartitionLHGrid; + +// Class Engine.Scene +// 0x0000 (0x0028 - 0x0028) +class UScene final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Scene") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Scene") + } + static class UScene* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UScene; + +// Class Engine.SceneCapture2D +// 0x0008 (0x02C0 - 0x02B8) +class ASceneCapture2D final : public ASceneCapture +{ +public: + class USceneCaptureComponent2D* CaptureComponent2D; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void OnInterpToggle(bool bEnable); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCapture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCapture2D") + } + static class ASceneCapture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASceneCapture2D; + +// Class Engine.SceneCaptureComponent2D +// 0x0850 (0x0B50 - 0x0300) +class USceneCaptureComponent2D final : public USceneCaptureComponent +{ +public: + ECameraProjectionMode ProjectionType; // 0x0300(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_301[0x3]; // 0x0301(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FOVAngle; // 0x0304(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoWidth; // 0x0308(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoCalculateOrthoPlanes; // 0x030C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30D[0x3]; // 0x030D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoPlaneShift; // 0x0310(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOrthoPlanes; // 0x0314(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCameraHeightAsViewTarget; // 0x0315(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_316[0x2]; // 0x0316(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Overscan; // 0x0318(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31C[0x4]; // 0x031C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureRenderTarget2D* TextureTarget; // 0x0320(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESceneCaptureCompositeMode CompositeMode; // 0x0328(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_329[0x7]; // 0x0329(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings PostProcessSettings; // 0x0330(0x0700)(Edit, BlueprintVisible, Interp, NativeAccessSpecifierPublic) + float PostProcessBlendWeight; // 0x0A30(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverride_CustomNearClippingPlane : 1; // 0x0A34(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A35[0x3]; // 0x0A35(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CustomNearClippingPlane; // 0x0A38(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCustomProjectionMatrix; // 0x0A3C(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A3D[0x3]; // 0x0A3D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix CustomProjectionMatrix; // 0x0A40(0x0080)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bUseFauxOrthoViewPos; // 0x0AC0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableOrthographicTiling; // 0x0AC1(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AC2[0x2]; // 0x0AC2(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumXTiles; // 0x0AC4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumYTiles; // 0x0AC8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableClipPlane; // 0x0ACC(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_ACD[0x3]; // 0x0ACD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ClipPlaneBase; // 0x0AD0(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ClipPlaneNormal; // 0x0AE8(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRenderInMainRenderer; // 0x0B00(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B01[0x3]; // 0x0B01(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bCameraCutThisFrame : 1; // 0x0B04(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bConsiderUnrenderedOpaquePixelAsFullyTranslucent : 1; // 0x0B04(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMainViewFamily : 1; // 0x0B04(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMainViewResolution : 1; // 0x0B04(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMainViewCamera : 1; // 0x0B04(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreScreenPercentage : 1; // 0x0B04(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B05[0x3]; // 0x0B05(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntPoint MainViewResolutionDivisor; // 0x0B08(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName UserSceneTextureBaseColor; // 0x0B10(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName UserSceneTextureNormal; // 0x0B18(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName UserSceneTextureSceneColor; // 0x0B20(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B28[0x28]; // 0x0B28(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight); + void CaptureScene(); + void RemoveBlendable(TScriptInterface InBlendableObject); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCaptureComponent2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCaptureComponent2D") + } + static class USceneCaptureComponent2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USceneCaptureComponent2D; + +// Class Engine.SceneCaptureCube +// 0x0008 (0x02C0 - 0x02B8) +class ASceneCaptureCube final : public ASceneCapture +{ +public: + class USceneCaptureComponentCube* CaptureComponentCube; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void OnInterpToggle(bool bEnable); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SceneCaptureCube") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SceneCaptureCube") + } + static class ASceneCaptureCube* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASceneCaptureCube; + +// Class Engine.ShadowMapTexture2D +// 0x0008 (0x0158 - 0x0150) +class UShadowMapTexture2D final : public UTexture2D +{ +public: + EShadowMapFlags ShadowmapFlags; // 0x0150(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_151[0x7]; // 0x0151(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ShadowMapTexture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ShadowMapTexture2D") + } + static class UShadowMapTexture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UShadowMapTexture2D; + +// Class Engine.SkeletalBodySetup +// 0x0018 (0x0318 - 0x0300) +class USkeletalBodySetup final : public UBodySetup +{ +public: + bool bSkipScaleFromAnimation; // 0x0300(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_301[0x7]; // 0x0301(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray PhysicalAnimationData; // 0x0308(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalBodySetup") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalBodySetup") + } + static class USkeletalBodySetup* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalBodySetup; + +// Class Engine.SkeletalMeshDescriptionBulkData +// 0x0000 (0x0028 - 0x0028) +class USkeletalMeshDescriptionBulkData final : public UMeshDescriptionBaseBulkData +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshDescriptionBulkData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshDescriptionBulkData") + } + static class USkeletalMeshDescriptionBulkData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshDescriptionBulkData; + +// Class Engine.SkyLight +// 0x0010 (0x02B8 - 0x02A8) +class ASkyLight : public AInfo +{ +public: + class USkyLightComponent* LightComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bEnabled : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B1[0x7]; // 0x02B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_bEnabled(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkyLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkyLight") + } + static class ASkyLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASkyLight; + +// Class Engine.SkyLightComponent +// 0x01D0 (0x0450 - 0x0280) +class USkyLightComponent final : public ULightComponentBase +{ +public: + bool bRealTimeCapture; // 0x0278(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkyLightSourceType SourceType; // 0x0279(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_27A[0x6]; // 0x027A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* Cubemap; // 0x0280(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceCubemapAngle; // 0x0288(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CubemapResolution; // 0x028C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SkyDistanceThreshold; // 0x0290(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCaptureEmissiveOnly; // 0x0294(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLowerHemisphereIsBlack; // 0x0295(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_296[0x2]; // 0x0296(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor LowerHemisphereColor; // 0x0298(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionMaxDistance; // 0x02A8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Contrast; // 0x02AC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionExponent; // 0x02B0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinOcclusion; // 0x02B4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor OcclusionTint; // 0x02B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCloudAmbientOcclusion : 1; // 0x02BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2BD[0x3]; // 0x02BD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CloudAmbientOcclusionStrength; // 0x02C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudAmbientOcclusionExtent; // 0x02C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudAmbientOcclusionMapResolutionScale; // 0x02C8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudAmbientOcclusionApertureScale; // 0x02CC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EOcclusionCombineMode OcclusionCombineMode; // 0x02D0(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D1[0xA7]; // 0x02D1(0x00A7)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* BlendDestinationCubemap; // 0x0378(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_380[0xD0]; // 0x0380(0x00D0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void RecaptureSky(); + void SetCubemap(class UTextureCube* NewCubemap); + void SetCubemapBlend(class UTextureCube* SourceCubemap, class UTextureCube* DestinationCubemap, float InBlendFraction); + void SetIndirectLightingIntensity(float NewIntensity); + void SetIntensity(float NewIntensity); + void SetLightColor(const struct FLinearColor& NewLightColor); + void SetLowerHemisphereColor(const struct FLinearColor& InLowerHemisphereColor); + void SetMinOcclusion(float InMinOcclusion); + void SetOcclusionContrast(float InOcclusionContrast); + void SetOcclusionExponent(float InOcclusionExponent); + void SetOcclusionTint(const struct FColor& InTint); + void SetRealTimeCapture(bool bInRealTimeCapture); + void SetSourceCubemapAngle(float NewValue); + void SetVolumetricScatteringIntensity(float NewIntensity); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkyLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkyLightComponent") + } + static class USkyLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkyLightComponent; + +// Class Engine.SMInstanceManagerProvider +// 0x0000 (0x0000 - 0x0000) +class ISMInstanceManagerProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceManagerProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceManagerProvider") + } + static class ISMInstanceManagerProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISMInstanceManagerProvider; + +// Class Engine.SoundAttenuation +// 0x03D0 (0x03F8 - 0x0028) +class USoundAttenuation final : public UObject +{ +public: + struct FSoundAttenuationSettings Attenuation; // 0x0028(0x03D0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundAttenuation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundAttenuation") + } + static class USoundAttenuation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundAttenuation; + +// Class Engine.SoundAttenuationEditorSettings +// 0x0008 (0x0030 - 0x0028) +class USoundAttenuationEditorSettings final : public UObject +{ +public: + bool bEnableReverbSend; // 0x0028(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSendToAudioLink; // 0x0029(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundAttenuationEditorSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundAttenuationEditorSettings") + } + static class USoundAttenuationEditorSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundAttenuationEditorSettings; + +// Class Engine.SoundEffectSourcePreset +// 0x0000 (0x0068 - 0x0068) +class USoundEffectSourcePreset : public USoundEffectPreset +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundEffectSourcePreset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundEffectSourcePreset") + } + static class USoundEffectSourcePreset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundEffectSourcePreset; + +// Class Engine.SoundEffectSourcePresetChain +// 0x0018 (0x0040 - 0x0028) +class USoundEffectSourcePresetChain final : public UObject +{ +public: + TArray Chain; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bPlayEffectChainTails : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundEffectSourcePresetChain") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundEffectSourcePresetChain") + } + static class USoundEffectSourcePresetChain* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundEffectSourcePresetChain; + +// Class Engine.SoundNodeModulatorContinuous +// 0x0040 (0x0088 - 0x0048) +class USoundNodeModulatorContinuous final : public USoundNode +{ +public: + struct FModulatorContinuousParams PitchModulationParams; // 0x0048(0x0020)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FModulatorContinuousParams VolumeModulationParams; // 0x0068(0x0020)(Edit, NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeModulatorContinuous") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeModulatorContinuous") + } + static class USoundNodeModulatorContinuous* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeModulatorContinuous; + +// Class Engine.StaticSparseVolumeTexture +// 0x0000 (0x00B0 - 0x00B0) +class UStaticSparseVolumeTexture final : public UStreamableSparseVolumeTexture +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticSparseVolumeTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticSparseVolumeTexture") + } + static class UStaticSparseVolumeTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStaticSparseVolumeTexture; + +// Class Engine.SphereReflectionCaptureComponent +// 0x0010 (0x02B0 - 0x02A0) +class USphereReflectionCaptureComponent final : public UReflectionCaptureComponent +{ +public: + float InfluenceRadius; // 0x0298(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CaptureDistanceScale; // 0x029C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDrawSphereComponent* PreviewInfluenceRadius; // 0x02A0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereReflectionCaptureComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereReflectionCaptureComponent") + } + static class USphereReflectionCaptureComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USphereReflectionCaptureComponent; + +// Class Engine.EditorFlagCollector +// 0x0000 (0x0028 - 0x0028) +class UEditorFlagCollector final : public UObject +{ +public: + static TArray GetFlagNames(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EditorFlagCollector") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EditorFlagCollector") + } + static class UEditorFlagCollector* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEditorFlagCollector; + +// Class Engine.StereoLayerShapeQuad +// 0x0000 (0x0028 - 0x0028) +class UStereoLayerShapeQuad final : public UStereoLayerShape +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerShapeQuad") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerShapeQuad") + } + static class UStereoLayerShapeQuad* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerShapeQuad; + +// Class Engine.StereoLayerShapeCubemap +// 0x0000 (0x0028 - 0x0028) +class UStereoLayerShapeCubemap final : public UStereoLayerShape +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerShapeCubemap") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerShapeCubemap") + } + static class UStereoLayerShapeCubemap* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerShapeCubemap; + +// Class Engine.StereoLayerShapeEquirect +// 0x0098 (0x00C0 - 0x0028) +class UStereoLayerShapeEquirect final : public UStereoLayerShape +{ +public: + struct FBox2D LeftUVRect; // 0x0028(0x0028)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox2D RightUVRect; // 0x0050(0x0028)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector2D LeftScale; // 0x0078(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D RightScale; // 0x0088(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D LeftBias; // 0x0098(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D RightBias; // 0x00A8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x00B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetEquirectProps(const struct FEquirectProps& InScaleBiases); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerShapeEquirect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerShapeEquirect") + } + static class UStereoLayerShapeEquirect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerShapeEquirect; + +// Class Engine.StereoLayerComponent +// 0x0100 (0x0330 - 0x0230) +class UStereoLayerComponent final : public USceneComponent +{ +public: + uint8 bLiveTexture : 1; // 0x0230(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsDepth : 1; // 0x0230(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNoAlphaChannel : 1; // 0x0230(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_231[0x7]; // 0x0231(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture* Texture; // 0x0238(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UTexture* LeftTexture; // 0x0240(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bQuadPreserveTextureRatio : 1; // 0x0248(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_249[0x7]; // 0x0249(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AdditionalFlags; // 0x0250(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + struct FVector2D QuadSize; // 0x0260(0x0010)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FBox2D UVRect; // 0x0270(0x0028)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + EStereoLayerType StereoLayerType; // 0x0298(0x0001)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_299[0x7]; // 0x0299(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UStereoLayerShape* Shape; // 0x02A0(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoClear, NoDestructor, Protected, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 Priority; // 0x02A8(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_2AC[0x84]; // 0x02AC(0x0084)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void MarkTextureForUpdate(); + void SetEquirectProps(const struct FEquirectProps& InEquirectProps); + void SetLeftTexture(class UTexture* InTexture); + void SetPriority(int32 InPriority); + void SetQuadSize(const struct FVector2D& InQuadSize); + void SetTexture(class UTexture* InTexture); + void SetUVRect(const struct FBox2D& InUVRect); + + class UTexture* GetLeftTexture() const; + int32 GetPriority() const; + struct FVector2D GetQuadSize() const; + class UTexture* GetTexture() const; + struct FBox2D GetUVRect() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StereoLayerComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StereoLayerComponent") + } + static class UStereoLayerComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStereoLayerComponent; + +// Class Engine.SubUVAnimation +// 0x0038 (0x0060 - 0x0028) +class USubUVAnimation final : public UObject +{ +public: + class UTexture2D* SubUVTexture; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubImages_Horizontal; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubImages_Vertical; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESubUVBoundingVertexCount BoundingMode; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EOpacitySourceMode OpacitySourceMode; // 0x0039(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x2]; // 0x003A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float AlphaThreshold; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_40[0x20]; // 0x0040(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SubUVAnimation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SubUVAnimation") + } + static class USubUVAnimation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USubUVAnimation; + +// Class Engine.TextPropertyTestObject +// 0x0030 (0x0058 - 0x0028) +class UTextPropertyTestObject final : public UObject +{ +public: + class FText DefaultedText; // 0x0028(0x0010)(NativeAccessSpecifierPublic) + class FText UndefaultedText; // 0x0038(0x0010)(NativeAccessSpecifierPublic) + class FText TransientText; // 0x0048(0x0010)(NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextPropertyTestObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextPropertyTestObject") + } + static class UTextPropertyTestObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextPropertyTestObject; + +// Class Engine.TextRenderActor +// 0x0008 (0x02B0 - 0x02A8) +class ATextRenderActor final : public AActor +{ +public: + class UTextRenderComponent* TextRender; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextRenderActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextRenderActor") + } + static class ATextRenderActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATextRenderActor; + +// Class Engine.TextureCollection +// 0x0020 (0x0050 - 0x0030) +class UTextureCollection final : public UDataAsset +{ +public: + TArray Textures; // 0x0030(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_40[0x10]; // 0x0040(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureCollection") + } + static class UTextureCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureCollection; + +// Class Engine.TextureEncodingProjectSettings +// 0x0018 (0x0050 - 0x0038) +class UTextureEncodingProjectSettings final : public UDeveloperSettings +{ +public: + uint8 bSharedLinearTextureEncoding : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFinalUsesRDO : 1; // 0x0038(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int8 FinalRDOLambda; // 0x003C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureEncodeEffort FinalEffortLevel; // 0x003D(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureUniversalTiling FinalUniversalTiling; // 0x003E(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3F[0x1]; // 0x003F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bFastUsesRDO : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int8 FastRDOLambda; // 0x0044(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureEncodeEffort FastEffortLevel; // 0x0045(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureUniversalTiling FastUniversalTiling; // 0x0046(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureEncodeSpeed CookUsesSpeed; // 0x0047(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureEncodeSpeed EditorUsesSpeed; // 0x0048(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureEncodingProjectSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureEncodingProjectSettings") + } + static class UTextureEncodingProjectSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureEncodingProjectSettings; + +// Class Engine.TextureEncodingUserSettings +// 0x0008 (0x0040 - 0x0038) +class UTextureEncodingUserSettings final : public UDeveloperSettings +{ +public: + ETextureEncodeSpeedOverride ForceEncodeSpeed; // 0x0038(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureEncodingUserSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureEncodingUserSettings") + } + static class UTextureEncodingUserSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureEncodingUserSettings; + +// Class Engine.TriggerBox +// 0x0000 (0x02B0 - 0x02B0) +class ATriggerBox : public ATriggerBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TriggerBox") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TriggerBox") + } + static class ATriggerBox* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATriggerBox; + +// Class Engine.TriggerCapsule +// 0x0000 (0x02B0 - 0x02B0) +class ATriggerCapsule final : public ATriggerBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TriggerCapsule") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TriggerCapsule") + } + static class ATriggerCapsule* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATriggerCapsule; + +// Class Engine.TwitterIntegrationBase +// 0x0000 (0x0038 - 0x0038) +class UTwitterIntegrationBase final : public UPlatformInterfaceBase +{ +public: + bool AuthorizeAccounts(); + bool CanShowTweetUI(); + class FString GetAccountName(int32 AccountIndex); + int32 GetNumAccounts(); + void Init(); + bool ShowTweetUI(const class FString& InitialMessage, const class FString& URL, const class FString& Picture); + bool TwitterRequest(const class FString& URL, const TArray& ParamKeysAndValues, ETwitterRequestMethod RequestMethod, int32 AccountIndex); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TwitterIntegrationBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TwitterIntegrationBase") + } + static class UTwitterIntegrationBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTwitterIntegrationBase; + +// Class Engine.UniversalObjectLocatorScriptingExtensions +// 0x0000 (0x0028 - 0x0028) +class UUniversalObjectLocatorScriptingExtensions final : public UBlueprintFunctionLibrary +{ +public: + static bool IsEmpty(const struct FUniversalObjectLocator& Locator); + static struct FUniversalObjectLocator MakeUniversalObjectLocator(class UObject* Object, class UObject* Context); + static class UObject* SyncFind(const struct FUniversalObjectLocator& Locator, class UObject* Context); + static class UObject* SyncLoad(const struct FUniversalObjectLocator& Locator, class UObject* Context); + static void SyncUnload(const struct FUniversalObjectLocator& Locator, class UObject* Context); + static class FString ToString(const struct FUniversalObjectLocator& Locator); + static struct FUniversalObjectLocator UniversalObjectLocatorFromString(const class FString& InString); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UniversalObjectLocatorScriptingExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UniversalObjectLocatorScriptingExtensions") + } + static class UUniversalObjectLocatorScriptingExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UUniversalObjectLocatorScriptingExtensions; + +// Class Engine.VariableFrameStrippingSettings +// 0x0008 (0x0030 - 0x0028) +class UVariableFrameStrippingSettings final : public UObject +{ +public: + struct FPerPlatformBool UseVariableFrameStripping; // 0x0028(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformInt FrameStrippingRate; // 0x002C(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VariableFrameStrippingSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VariableFrameStrippingSettings") + } + static class UVariableFrameStrippingSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVariableFrameStrippingSettings; + +// Class Engine.VectorFieldAnimated +// 0x0040 (0x00A8 - 0x0068) +class UVectorFieldAnimated final : public UVectorField +{ +public: + class UTexture2D* Texture; // 0x0068(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVectorFieldConstructionOp ConstructionOp; // 0x0070(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 VolumeSizeX; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VolumeSizeY; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VolumeSizeZ; // 0x007C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubImagesX; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SubImagesY; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FrameCount; // 0x0088(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FramesPerSecond; // 0x008C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLoop : 1; // 0x0090(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UVectorFieldStatic* NoiseField; // 0x0098(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NoiseScale; // 0x00A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NoiseMax; // 0x00A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VectorFieldAnimated") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VectorFieldAnimated") + } + static class UVectorFieldAnimated* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVectorFieldAnimated; + +// Class Engine.VectorFieldComponent +// 0x0020 (0x0510 - 0x04F0) +class UVectorFieldComponent final : public UPrimitiveComponent +{ +public: + class UVectorField* VectorField; // 0x04E8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Intensity; // 0x04F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tightness; // 0x04F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPreviewVectorField : 1; // 0x04F8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4F9[0x17]; // 0x04F9(0x0017)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetIntensity(float NewIntensity); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VectorFieldComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VectorFieldComponent") + } + static class UVectorFieldComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVectorFieldComponent; + +// Class Engine.VectorFieldStatic +// 0x0050 (0x00B8 - 0x0068) +class UVectorFieldStatic final : public UVectorField +{ +public: + int32 SizeX; // 0x0068(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x006C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeZ; // 0x0070(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowCPUAccess; // 0x0074(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_75[0x43]; // 0x0075(0x0043)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VectorFieldStatic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VectorFieldStatic") + } + static class UVectorFieldStatic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVectorFieldStatic; + +// Class Engine.WindDirectionalSourceComponent +// 0x0020 (0x0250 - 0x0230) +class UWindDirectionalSourceComponent final : public USceneComponent +{ +public: + float Strength; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Speed; // 0x0234(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinGustAmount; // 0x0238(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxGustAmount; // 0x023C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0240(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPointWind : 1; // 0x0244(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_245[0xB]; // 0x0245(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetMaximumGustAmount(float InNewMaxGust); + void SetMinimumGustAmount(float InNewMinGust); + void SetRadius(float InNewRadius); + void SetSpeed(float InNewSpeed); + void SetStrength(float InNewStrength); + void SetWindType(EWindSourceType InNewType); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WindDirectionalSourceComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WindDirectionalSourceComponent") + } + static class UWindDirectionalSourceComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWindDirectionalSourceComponent; + +// Class Engine.WorldPartitionRuntimeCellTransformerISM +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionRuntimeCellTransformerISM final : public UWorldPartitionRuntimeCellTransformer +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellTransformerISM") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellTransformerISM") + } + static class UWorldPartitionRuntimeCellTransformerISM* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellTransformerISM; + +// Class Engine.RuntimeHashSetExternalStreamingObject +// 0x0010 (0x01D0 - 0x01C0) +class URuntimeHashSetExternalStreamingObject final : public URuntimeHashExternalStreamingObjectBase +{ +public: + TArray RuntimeStreamingData; // 0x01C0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeHashSetExternalStreamingObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeHashSetExternalStreamingObject") + } + static class URuntimeHashSetExternalStreamingObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeHashSetExternalStreamingObject; + +// Class Engine.WorldSettings +// 0x0228 (0x04D0 - 0x02A8) +class AWorldSettings final : public AInfo +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 VisibilityCellSize; // 0x02B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVisibilityAggressiveness VisibilityAggressiveness; // 0x02B4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPrecomputeVisibility : 1; // 0x02B5(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPlaceCellsOnlyAlongCameraTracks : 1; // 0x02B5(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableWorldBoundsChecks : 1; // 0x02B5(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableNavigationSystem : 1; // 0x02B5(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bEnableAISystem : 1; // 0x02B5(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Config, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bEnableWorldComposition : 1; // 0x02B5(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseClientSideLevelStreamingVolumes : 1; // 0x02B5(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableWorldOriginRebasing : 1; // 0x02B5(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWorldGravitySet : 1; // 0x02B6(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGlobalGravitySet : 1; // 0x02B6(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMinimizeBSPSections : 1; // 0x02B6(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceNoPrecomputedLighting : 1; // 0x02B6(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceVolumetricLightmapsOnly : 1; // 0x02B6(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHighPriorityLoading : 1; // 0x02B6(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHighPriorityLoadingLocal : 1; // 0x02B6(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideDefaultBroadphaseSettings : 1; // 0x02B6(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateSingleClusterForLevel : 1; // 0x02B7(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReuseAddressAndPort : 1; // 0x02B7(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + TSoftClassPtr AISystemClass; // 0x02B8(0x0028)(Edit, BlueprintVisible, BlueprintReadOnly, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LevelInstancePivotOffset; // 0x02E0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UNavigationSystemConfig* NavigationSystemConfig; // 0x02F8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoClear, NoDestructor, AdvancedDisplay, Protected, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UNavigationSystemConfig* NavigationSystemConfigOverride; // 0x0300(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UWorldPartition* WorldPartition; // 0x0308(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, Protected, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray BaseNavmeshDataLayers; // 0x0310(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + float WorldToMeters; // 0x0320(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float KillZ; // 0x0324(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf KillZDamageType; // 0x0328(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WorldGravityZ; // 0x0330(0x0004)(Net, ZeroConstructor, Transient, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalGravityZ; // 0x0334(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DefaultPhysicsVolumeClass; // 0x0338(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PhysicsCollisionHandlerClass; // 0x0340(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DefaultGameMode; // 0x0348(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GameNetworkManagerClass; // 0x0350(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PackedLightAndShadowMapTextureSize; // 0x0358(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35C[0x4]; // 0x035C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector DefaultColorScale; // 0x0360(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultMaxDistanceFieldOcclusionDistance; // 0x0378(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalDistanceFieldViewDistance; // 0x037C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DynamicIndirectShadowsSelfShadowingIntensity; // 0x0380(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricLightmapLoadingRange; // 0x0384(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNaniteSettings NaniteSettings; // 0x0388(0x0001)(Edit, Net, Config, RepNotify, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_389[0x7]; // 0x0389(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FReverbSettings DefaultReverbSettings; // 0x0390(0x0020)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + struct FInteriorSettings DefaultAmbientZoneSettings; // 0x03B0(0x0024)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_3D4[0x4]; // 0x03D4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundMix* DefaultBaseSoundMix; // 0x03D8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeDilation; // 0x03E0(0x0004)(Net, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CinematicTimeDilation; // 0x03E4(0x0004)(Net, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DemoPlayTimeDilation; // 0x03E8(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinGlobalTimeDilation; // 0x03EC(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxGlobalTimeDilation; // 0x03F0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinUndilatedFrameTime; // 0x03F4(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxUndilatedFrameTime; // 0x03F8(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3FC[0x4]; // 0x03FC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBroadphaseSettings BroadphaseSettings; // 0x0400(0x0080)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + TArray ReplicationViewers; // 0x0480(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray AssetUserData; // 0x0490(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + class APlayerState* PauserPlayerState; // 0x04A0(0x0008)(Net, ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MaxNumberOfBookmarks; // 0x04A8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_4AC[0x4]; // 0x04AC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf DefaultBookmarkClass; // 0x04B0(0x0008)(ZeroConstructor, Config, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray BookmarkArray; // 0x04B8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + TSubclassOf LastBookmarkClass; // 0x04C8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void OnRep_NaniteSettings(); + void OnRep_WorldGravityZ(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldSettings") + } + static class AWorldSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldSettings; + +// Class Engine.Texture2DArray +// 0x0010 (0x0140 - 0x0130) +class UTexture2DArray final : public UTexture +{ +public: + uint8 Pad_130[0x8]; // 0x0130(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + ETextureAddress AddressX; // 0x0138(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressY; // 0x0139(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressZ; // 0x013A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13B[0x5]; // 0x013B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Texture2DArray") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Texture2DArray") + } + static class UTexture2DArray* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTexture2DArray; + +// Class Engine.AISystemBase +// 0x0038 (0x0060 - 0x0028) +class UAISystemBase : public UObject +{ +public: + struct FSoftClassPath AISystemClassName; // 0x0028(0x0020)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName AISystemModuleName; // 0x0048(0x0008)(Edit, ZeroConstructor, Config, GlobalConfig, NoClear, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_50[0x8]; // 0x0050(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + bool bInstantiateAISystemOnClient; // 0x0058(0x0001)(ZeroConstructor, Config, GlobalConfig, NoClear, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AISystemBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AISystemBase") + } + static class UAISystemBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAISystemBase; + +// Class Engine.NavigationSystemBase +// 0x0000 (0x0028 - 0x0028) +class UNavigationSystemBase : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationSystemBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationSystemBase") + } + static class UNavigationSystemBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavigationSystemBase; + +// Class Engine.NullNavSysConfig +// 0x0000 (0x0058 - 0x0058) +class UNullNavSysConfig final : public UNavigationSystemConfig +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NullNavSysConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NullNavSysConfig") + } + static class UNullNavSysConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNullNavSysConfig; + +// Class Engine.AvoidanceManager +// 0x00B8 (0x00E0 - 0x0028) +class UAvoidanceManager final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultTimeToLive; // 0x0030(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LockTimeAfterAvoid; // 0x0034(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LockTimeAfterClean; // 0x0038(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTimeToPredict; // 0x003C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArtificialRadiusExpansion; // 0x0040(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TestHeightDifference; // 0x0044(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HeightCheckMargin; // 0x0048(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x94]; // 0x004C(0x0094)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FVector GetAvoidanceVelocityForComponent(class UMovementComponent* MovementComp); + int32 GetNewAvoidanceUID(); + int32 GetObjectCount(); + bool RegisterMovementComponent(class UMovementComponent* MovementComp, float AvoidanceWeight); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AvoidanceManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AvoidanceManager") + } + static class UAvoidanceManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAvoidanceManager; + +// Class Engine.NavCollisionBase +// 0x0048 (0x0070 - 0x0028) +class UNavCollisionBase : public UObject +{ +public: + uint8 bIsDynamicObstacle : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_29[0x47]; // 0x0029(0x0047)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavCollisionBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavCollisionBase") + } + static class UNavCollisionBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNavCollisionBase; + +// Class Engine.AmbientSound +// 0x0008 (0x02B0 - 0x02A8) +class AAmbientSound final : public AActor +{ +public: + class UAudioComponent* AudioComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void AdjustVolume(float AdjustVolumeDuration, float AdjustVolumeLevel); + void FadeIn(float FadeInDuration, float FadeVolumeLevel); + void FadeOut(float FadeOutDuration, float FadeVolumeLevel); + void Play(float StartTime); + void Stop(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AmbientSound") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AmbientSound") + } + static class AAmbientSound* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AAmbientSound; + +// Class Engine.AimOffsetBlendSpace +// 0x0000 (0x01C0 - 0x01C0) +class UAimOffsetBlendSpace final : public UBlendSpace +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AimOffsetBlendSpace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AimOffsetBlendSpace") + } + static class UAimOffsetBlendSpace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAimOffsetBlendSpace; + +// Class Engine.AnimationSettings +// 0x0110 (0x0148 - 0x0038) +class UAnimationSettings final : public UDeveloperSettings +{ +public: + int32 CompressCommandletVersion; // 0x0038(0x0004)(Edit, ZeroConstructor, Config, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray KeyEndEffectorsMatchNameArray; // 0x0040(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + bool ForceRecompression; // 0x0050(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceBelowThreshold; // 0x0051(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFirstRecompressUsingCurrentOrDefault; // 0x0052(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRaiseMaxErrorToExisting; // 0x0053(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnablePerformanceLog; // 0x0054(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStripAnimationDataOnDedicatedServer; // 0x0055(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTickAnimationOnSkeletalMeshInit; // 0x0056(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_57[0x1]; // 0x0057(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimecodeCustomAttributeNameSettings BoneTimecodeCustomAttributeNameSettings; // 0x0058(0x0038)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + TArray BoneCustomAttributesNames; // 0x0090(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray BoneNamesWithCustomAttributes; // 0x00A0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TMap AttributeBlendModes; // 0x00B0(0x0050)(Edit, Config, NativeAccessSpecifierPublic) + ECustomAttributeBlendType DefaultAttributeBlendMode; // 0x0100(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TransformAttributeNames; // 0x0108(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray> UserDefinedStructAttributes; // 0x0118(0x0010)(Edit, ZeroConstructor, Config, UObjectWrapper, NativeAccessSpecifierPublic) + TArray MirrorFindReplaceExpressions; // 0x0128(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + struct FFrameRate DefaultFrameRate; // 0x0138(0x0008)(Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnforceSupportedFrameRates; // 0x0140(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_141[0x7]; // 0x0141(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + TArray GetBoneCustomAttributeNamesToImport() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationSettings") + } + static class UAnimationSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationSettings; + +// Class Engine.AnimBlueprintGeneratedStruct +// 0x0000 (0x00C0 - 0x00C0) +class UAnimBlueprintGeneratedStruct final : public UScriptStruct +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBlueprintGeneratedStruct") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBlueprintGeneratedStruct") + } + static class UAnimBlueprintGeneratedStruct* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBlueprintGeneratedStruct; + +// Class Engine.AnimBlueprintGeneratedClass +// 0x0268 (0x05C8 - 0x0360) +class UAnimBlueprintGeneratedClass final : public UBlueprintGeneratedClass +{ +public: + uint8 Pad_360[0x8]; // 0x0360(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BakedStateMachines; // 0x0368(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class USkeleton* TargetSkeleton; // 0x0378(0x0008)(ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray AnimNotifies; // 0x0380(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + TMap OrderedSavedPoseIndicesMap; // 0x0390(0x0050)(NativeAccessSpecifierPublic) + uint8 Pad_3E0[0x80]; // 0x03E0(0x0080)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SyncGroupNames; // 0x0460(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TMap GraphAssetPlayerInformation; // 0x0470(0x0050)(NativeAccessSpecifierPublic) + TMap GraphBlendOptions; // 0x04C0(0x0050)(NativeAccessSpecifierPublic) + TArray AnimNodeData; // 0x0510(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TMap NodeTypeMap; // 0x0520(0x0050)(NativeAccessSpecifierPrivate) + uint8 Pad_570[0x58]; // 0x0570(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBlueprintGeneratedClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBlueprintGeneratedClass") + } + static class UAnimBlueprintGeneratedClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBlueprintGeneratedClass; + +// Class Engine.AnimBoneCompressionSettings +// 0x0010 (0x0038 - 0x0028) +class UAnimBoneCompressionSettings final : public UObject +{ +public: + TArray Codecs; // 0x0028(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBoneCompressionSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBoneCompressionSettings") + } + static class UAnimBoneCompressionSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBoneCompressionSettings; + +// Class Engine.AnimClassInterface +// 0x0000 (0x0000 - 0x0000) +class IAnimClassInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimClassInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimClassInterface") + } + static class IAnimClassInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IAnimClassInterface; + +// Class Engine.AnimCompress_BitwiseCompressOnly +// 0x0000 (0x0040 - 0x0040) +class UAnimCompress_BitwiseCompressOnly : public UAnimCompress +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_BitwiseCompressOnly") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_BitwiseCompressOnly") + } + static class UAnimCompress_BitwiseCompressOnly* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_BitwiseCompressOnly; + +// Class Engine.AnimCompress_LeastDestructive +// 0x0000 (0x0040 - 0x0040) +class UAnimCompress_LeastDestructive final : public UAnimCompress_BitwiseCompressOnly +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_LeastDestructive") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_LeastDestructive") + } + static class UAnimCompress_LeastDestructive* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_LeastDestructive; + +// Class Engine.AnimCompress_PerTrackCompression +// 0x0078 (0x00D8 - 0x0060) +class UAnimCompress_PerTrackCompression final : public UAnimCompress_RemoveLinearKeys +{ +public: + float MaxZeroingThreshold; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPosDiffBitwise; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAngleDiffBitwise; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxScaleDiffBitwise; // 0x006C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray AllowedRotationFormats; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AllowedTranslationFormats; // 0x0080(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray AllowedScaleFormats; // 0x0090(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bResampleAnimation : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResampledFramerate; // 0x00A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinKeysForResampling; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseAdaptiveError : 1; // 0x00AC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseOverrideForEndEffectors : 1; // 0x00AC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_AD[0x3]; // 0x00AD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TrackHeightBias; // 0x00B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParentingDivisor; // 0x00B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParentingDivisorExponent; // 0x00B8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseAdaptiveError2 : 1; // 0x00BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BD[0x3]; // 0x00BD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotationErrorSourceRatio; // 0x00C0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslationErrorSourceRatio; // 0x00C4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScaleErrorSourceRatio; // 0x00C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxErrorPerTrackRatio; // 0x00CC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerturbationProbeSize; // 0x00D0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_PerTrackCompression") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_PerTrackCompression") + } + static class UAnimCompress_PerTrackCompression* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_PerTrackCompression; + +// Class Engine.AnimCompress_RemoveEverySecondKey +// 0x0008 (0x0048 - 0x0040) +class UAnimCompress_RemoveEverySecondKey final : public UAnimCompress +{ +public: + int32 MinKeys; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bStartAtSecondKey : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_RemoveEverySecondKey") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_RemoveEverySecondKey") + } + static class UAnimCompress_RemoveEverySecondKey* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_RemoveEverySecondKey; + +// Class Engine.AnimCompress_RemoveTrivialKeys +// 0x0010 (0x0050 - 0x0040) +class UAnimCompress_RemoveTrivialKeys final : public UAnimCompress +{ +public: + float MaxPosDiff; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAngleDiff; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxScaleDiff; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCompress_RemoveTrivialKeys") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCompress_RemoveTrivialKeys") + } + static class UAnimCompress_RemoveTrivialKeys* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCompress_RemoveTrivialKeys; + +// Class Engine.AnimCurveCompressionCodec_CompressedRichCurve +// 0x0000 (0x0028 - 0x0028) +class UAnimCurveCompressionCodec_CompressedRichCurve final : public UAnimCurveCompressionCodec +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveCompressionCodec_CompressedRichCurve") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveCompressionCodec_CompressedRichCurve") + } + static class UAnimCurveCompressionCodec_CompressedRichCurve* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveCompressionCodec_CompressedRichCurve; + +// Class Engine.NetworkPhysicsComponent +// 0x0098 (0x0138 - 0x00A0) +class UNetworkPhysicsComponent final : public UActorComponent +{ +public: + struct FNetworkPhysicsRewindDataImportantInputProxy ReplicatedImportantInput; // 0x00A0(0x0010)(Transient, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + struct FNetworkPhysicsRewindDataImportantStateProxy ReplicatedImportantState; // 0x00B0(0x0010)(Transient, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + struct FNetworkPhysicsRewindDataInputProxy ReplicatedInputs; // 0x00C0(0x0010)(Net, Transient, RepNotify, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + struct FNetworkPhysicsRewindDataStateProxy ReplicatedStates; // 0x00D0(0x0010)(Net, Transient, RepNotify, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + uint8 Pad_E0[0x58]; // 0x00E0(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void MulticastReceiveImportantInputData(const struct FNetworkPhysicsRewindDataImportantInputProxy& ServerInputs); + void MulticastReceiveImportantStateData(const struct FNetworkPhysicsRewindDataImportantStateProxy& ServerStates); + void OnRep_SetReplicatedInputs(); + void OnRep_SetReplicatedStates(); + void ServerReceiveImportantInputData(const struct FNetworkPhysicsRewindDataImportantInputProxy& ClientInputs); + void ServerReceiveInputData(const struct FNetworkPhysicsRewindDataInputProxy& ClientInputs); + void ServerReceiveInputsDatas(const struct FNetworkPhysicsRewindDataInputProxy& ClientInputs); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkPhysicsComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkPhysicsComponent") + } + static class UNetworkPhysicsComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkPhysicsComponent; + +// Class Engine.AnimCurveCompressionCodec_UniformlySampled +// 0x0000 (0x0028 - 0x0028) +class UAnimCurveCompressionCodec_UniformlySampled final : public UAnimCurveCompressionCodec +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimCurveCompressionCodec_UniformlySampled") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimCurveCompressionCodec_UniformlySampled") + } + static class UAnimCurveCompressionCodec_UniformlySampled* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimCurveCompressionCodec_UniformlySampled; + +// Class Engine.AnimDataModel +// 0x00A0 (0x00C8 - 0x0028) +class UAnimDataModel final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 BracketCounter; // 0x0030(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate Model, const struct FAnimDataModelNotifPayload& Payload)> ModifiedEventDynamic; // 0x0038(0x0010)(ZeroConstructor, Transient, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPrivate) + uint8 Pad_48[0x18]; // 0x0048(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BoneAnimationTracks; // 0x0060(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPrivate) + float PlayLength; // 0x0070(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FFrameRate FrameRate; // 0x0074(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 NumberOfFrames; // 0x007C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 NumberOfKeys; // 0x0080(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAnimationCurveData CurveData; // 0x0088(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NativeAccessSpecifierPrivate) + TArray AnimatedBoneAttributes; // 0x00A8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPrivate) + bool bPopulated; // 0x00B8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_B9[0xF]; // 0x00B9(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimDataModel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimDataModel") + } + static class UAnimDataModel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimDataModel; + +// Class Engine.AnimMetaData +// 0x0000 (0x0028 - 0x0028) +class UAnimMetaData final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimMetaData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimMetaData") + } + static class UAnimMetaData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimMetaData; + +// Class Engine.AnimMontage +// 0x0128 (0x01E0 - 0x00B8) +class UAnimMontage final : public UAnimCompositeBase +{ +public: + EMontageBlendMode BlendModeIn; // 0x00B8(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMontageBlendMode BlendModeOut; // 0x00B9(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BA[0x6]; // 0x00BA(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAlphaBlend BlendIn; // 0x00C0(0x0030)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FAlphaBlend BlendOut; // 0x00F0(0x0030)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float BlendOutTriggerTime; // 0x0120(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SyncGroup; // 0x0124(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SyncSlotIndex; // 0x012C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMarkerSyncData MarkerData; // 0x0130(0x0020)(NativeAccessSpecifierPublic) + TArray CompositeSections; // 0x0150(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray SlotAnimTracks; // 0x0160(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + bool bEnableRootMotionTranslation; // 0x0170(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRootMotionRotation; // 0x0171(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableAutoBlendOut; // 0x0172(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_173[0x5]; // 0x0173(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* BlendProfileIn; // 0x0178(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBlendProfile* BlendProfileOut; // 0x0180(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERootMotionRootLock RootMotionRootLock; // 0x0188(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BranchingPointMarkers; // 0x0190(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray BranchingPointStateNotifyIndices; // 0x01A0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FTimeStretchCurve TimeStretchCurve; // 0x01B0(0x0028)(Edit, NativeAccessSpecifierPublic) + class FName TimeStretchCurveName; // 0x01D8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UAnimMontage* CreateSlotAnimationAsDynamicMontage_WithBlendSettings(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FMontageBlendSettings& BlendInSettings, const struct FMontageBlendSettings& BlendOutSettings, float InPlayRate, int32 LoopCount, float InBlendOutTriggerTime); + + struct FAlphaBlendArgs GetBlendInArgs() const; + struct FAlphaBlendArgs GetBlendOutArgs() const; + float GetDefaultBlendInTime() const; + float GetDefaultBlendOutTime() const; + class UAnimSequenceBase* GetFirstAnimReference() const; + class FName GetGroupName() const; + int32 GetNumSections() const; + int32 GetSectionIndex(class FName InSectionName) const; + class FName GetSectionName(int32 SectionIndex) const; + bool IsDynamicMontage() const; + bool IsValidAdditiveSlot(const class FName& SlotNodeName) const; + bool IsValidSectionName(class FName InSectionName) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimMontage") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimMontage") + } + static class UAnimMontage* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimMontage; + +// Class Engine.AnimNotifyMirrorInspectionLibrary +// 0x0000 (0x0028 - 0x0028) +class UAnimNotifyMirrorInspectionLibrary final : public UBlueprintFunctionLibrary +{ +public: + static const class UMirrorDataTable* GetMirrorDataTable(const struct FAnimNotifyEventReference& EventReference); + static bool IsTriggeredByMirroredAnimation(const struct FAnimNotifyEventReference& EventReference); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyMirrorInspectionLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyMirrorInspectionLibrary") + } + static class UAnimNotifyMirrorInspectionLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyMirrorInspectionLibrary; + +// Class Engine.AnimNotifyStateMachineInspectionLibrary +// 0x0000 (0x0028 - 0x0028) +class UAnimNotifyStateMachineInspectionLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool IsTriggeredByState(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateName); + static bool IsTriggeredByStateInStateMachine(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateMachineName, class FName StateName); + static bool IsTriggeredByStateMachine(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateMachineName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyStateMachineInspectionLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyStateMachineInspectionLibrary") + } + static class UAnimNotifyStateMachineInspectionLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyStateMachineInspectionLibrary; + +// Class Engine.AnimNotifyState_DisableRootMotion +// 0x0000 (0x0030 - 0x0030) +class UAnimNotifyState_DisableRootMotion final : public UAnimNotifyState +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyState_DisableRootMotion") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyState_DisableRootMotion") + } + static class UAnimNotifyState_DisableRootMotion* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyState_DisableRootMotion; + +// Class Engine.AnimNotifyState_Trail +// 0x0028 (0x0058 - 0x0030) +class UAnimNotifyState_Trail final : public UAnimNotifyState +{ +public: + class UParticleSystem* PSTemplate; // 0x0030(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FirstSocketName; // 0x0038(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SecondSocketName; // 0x0040(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETrailWidthMode WidthScaleMode; // 0x0048(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName WidthScaleCurve; // 0x004C(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRecycleSpawnedSystems : 1; // 0x0054(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class UParticleSystem* OverridePSTemplate(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotifyState_Trail") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotifyState_Trail") + } + static class UAnimNotifyState_Trail* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotifyState_Trail; + +// Class Engine.AnimNotify_PauseClothingSimulation +// 0x0000 (0x0038 - 0x0038) +class UAnimNotify_PauseClothingSimulation final : public UAnimNotify +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_PauseClothingSimulation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_PauseClothingSimulation") + } + static class UAnimNotify_PauseClothingSimulation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_PauseClothingSimulation; + +// Class Engine.AnimNotify_PlayParticleEffect +// 0x0088 (0x00C0 - 0x0038) +class alignas(0x10) UAnimNotify_PlayParticleEffect final : public UAnimNotify +{ +public: + class UParticleSystem* PSTemplate; // 0x0038(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocationOffset; // 0x0040(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RotationOffset; // 0x0058(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0070(0x0018)(Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x28]; // 0x0088(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 Attached : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x3]; // 0x00B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName SocketName; // 0x00B4(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_PlayParticleEffect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_PlayParticleEffect") + } + static class UAnimNotify_PlayParticleEffect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_PlayParticleEffect; + +// Class Engine.AnimNotify_ResetClothingSimulation +// 0x0000 (0x0038 - 0x0038) +class UAnimNotify_ResetClothingSimulation final : public UAnimNotify +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_ResetClothingSimulation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_ResetClothingSimulation") + } + static class UAnimNotify_ResetClothingSimulation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_ResetClothingSimulation; + +// Class Engine.AnimNotify_ResetDynamics +// 0x0000 (0x0038 - 0x0038) +class UAnimNotify_ResetDynamics final : public UAnimNotify +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_ResetDynamics") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_ResetDynamics") + } + static class UAnimNotify_ResetDynamics* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_ResetDynamics; + +// Class Engine.PlayerState +// 0x00B8 (0x0360 - 0x02A8) +class APlayerState final : public AInfo +{ +public: + float Score; // 0x02A8(0x0004)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 PlayerId; // 0x02AC(0x0004)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 CompressedPing; // 0x02B0(0x0001)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2B1[0x1]; // 0x02B1(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bShouldUpdateReplicatedPing : 1; // 0x02B2(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bIsSpectator : 1; // 0x02B2(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bOnlySpectator : 1; // 0x02B2(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bIsABot : 1; // 0x02B2(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_2B2_4 : 1; // 0x02B2(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bIsInactive : 1; // 0x02B2(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bFromPreviousLevel : 1; // 0x02B2(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Net, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_2B3[0x1]; // 0x02B3(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 StartTime; // 0x02B4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FUniqueNetIdRepl UniqueID; // 0x02B8(0x0030)(Net, RepNotify, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSubclassOf EngineMessageClass; // 0x02E8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2F0[0x8]; // 0x02F0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FString SavedNetworkAddress; // 0x02F8(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_308[0x8]; // 0x0308(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnPawnSet; // 0x0310(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + class APawn* PawnPrivate; // 0x0320(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_328[0x18]; // 0x0328(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class FString PlayerNamePrivate; // 0x0340(0x0010)(Net, ZeroConstructor, RepNotify, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_350[0x10]; // 0x0350(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnPawnPrivateDestroyed(class AActor* InActor); + void OnRep_bIsInactive(); + void OnRep_PlayerId(); + void OnRep_PlayerName(); + void OnRep_Score(); + void OnRep_UniqueId(); + void ReceiveCopyProperties(class APlayerState* NewPlayerState); + void ReceiveOverrideWith(class APlayerState* OldPlayerState); + + struct FUniqueNetIdRepl BP_GetUniqueId() const; + uint8 GetCompressedPing() const; + class APawn* GetPawn() const; + float GetPingInMilliseconds() const; + class APlayerController* GetPlayerController() const; + int32 GetPlayerId() const; + class FString GetPlayerName() const; + float GetScore() const; + bool IsABot() const; + bool IsOnlyASpectator() const; + bool IsSpectator() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerState") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerState") + } + static class APlayerState* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlayerState; + +// Class Engine.AnimNotify_ResumeClothingSimulation +// 0x0000 (0x0038 - 0x0038) +class UAnimNotify_ResumeClothingSimulation final : public UAnimNotify +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimNotify_ResumeClothingSimulation") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimNotify_ResumeClothingSimulation") + } + static class UAnimNotify_ResumeClothingSimulation* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimNotify_ResumeClothingSimulation; + +// Class Engine.AnimSet +// 0x00C8 (0x00F0 - 0x0028) +class UAnimSet final : public UObject +{ +public: + uint8 bAnimRotationOnly : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TrackBoneNames; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LinkupCache; // 0x0040(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray BoneUseAnimTranslation; // 0x0050(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray ForceUseMeshTranslation; // 0x0060(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray UseTranslationBoneNames; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray ForceMeshTranslationBoneNames; // 0x0080(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + class FName PreviewSkelMeshName; // 0x0090(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BestRatioSkelMeshName; // 0x0098(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A0[0x50]; // 0x00A0(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimSet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimSet") + } + static class UAnimSet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimSet; + +// Class Engine.AnimSingleNodeInstance +// 0x0010 (0x03D0 - 0x03C0) +class UAnimSingleNodeInstance final : public UAnimInstance +{ +public: + class UAnimationAsset* CurrentAsset; // 0x03B8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate PostEvaluateAnimEvent; // 0x03C0(0x0010)(ZeroConstructor, Transient, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + float GetLength(); + const class UMirrorDataTable* GetMirrorDataTable(); + void PlayAnim(bool bIsLooping, float InPlayRate, float InStartPosition); + void SetAnimationAsset(class UAnimationAsset* NewAsset, bool bIsLooping, float InPlayRate); + void SetBlendSpacePosition(const struct FVector& InPosition); + void SetLooping(bool bIsLooping); + void SetMirrorDataTable(const class UMirrorDataTable* MirrorDataTable); + void SetPlaying(bool bIsPlaying); + void SetPlayRate(float InPlayRate); + void SetPosition(float InPosition, bool bFireNotifies); + void SetPositionWithPreviousTime(float InPosition, float InPreviousTime, bool bFireNotifies); + void SetPreviewCurveOverride(const class FName& PoseName, float Value, bool bRemoveIfZero); + void SetReverse(bool bInReverse); + void StopAnim(); + + class UAnimationAsset* GetAnimationAsset() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimSingleNodeInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimSingleNodeInstance") + } + static class UAnimSingleNodeInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimSingleNodeInstance; + +// Class Engine.AnimStateMachineTypes +// 0x0000 (0x0028 - 0x0028) +class UAnimStateMachineTypes final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimStateMachineTypes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimStateMachineTypes") + } + static class UAnimStateMachineTypes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimStateMachineTypes; + +// Class Engine.AssetMappingTable +// 0x0010 (0x0038 - 0x0028) +class UAssetMappingTable final : public UObject +{ +public: + TArray MappedAssets; // 0x0028(0x0010)(Edit, EditFixedSize, ZeroConstructor, EditConst, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetMappingTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetMappingTable") + } + static class UAssetMappingTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetMappingTable; + +// Class Engine.AnimationAttributeIdentifierExtensions +// 0x0000 (0x0028 - 0x0028) +class UAnimationAttributeIdentifierExtensions final : public UBlueprintFunctionLibrary +{ +public: + static bool IsValid(struct FAnimationAttributeIdentifier& Identifier); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationAttributeIdentifierExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationAttributeIdentifierExtensions") + } + static class UAnimationAttributeIdentifierExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationAttributeIdentifierExtensions; + +// Class Engine.Skeleton +// 0x0440 (0x0468 - 0x0028) +class USkeleton final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BoneTree; // 0x0038(0x0010)(Edit, ZeroConstructor, EditConst, Protected, NativeAccessSpecifierProtected) + uint8 Pad_48[0x128]; // 0x0048(0x0128)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid VirtualBoneGuid; // 0x0170(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray VirtualBones; // 0x0180(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray> CompatibleSkeletons; // 0x0190(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray Sockets; // 0x01A0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_1B0[0x50]; // 0x01B0(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSmartNameContainer SmartNames; // 0x0200(0x0050)(Deprecated, Protected, NativeAccessSpecifierProtected) + uint8 Pad_250[0x10]; // 0x0250(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BlendProfiles; // 0x0260(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SlotGroups; // 0x0270(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + uint8 Pad_280[0x1D8]; // 0x0280(0x01D8)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AssetUserData; // 0x0458(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + +public: + void AddCompatibleSkeleton(const class USkeleton* SourceSkeleton); + void AddCompatibleSkeletonSoft(const TSoftObjectPtr& SourceSkeleton); + class UBlendProfile* GetBlendProfile(const class FName& InProfileName); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Skeleton") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Skeleton") + } + static class USkeleton* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeleton; + +// Class Engine.CachedAnimDataLibrary +// 0x0000 (0x0028 - 0x0028) +class UCachedAnimDataLibrary final : public UBlueprintFunctionLibrary +{ +public: + static float StateMachine_GetAssetPlayerTime(class UAnimInstance* InAnimInstance, const struct FCachedAnimAssetPlayerData& CachedAnimAssetPlayerData); + static float StateMachine_GetAssetPlayerTimeRatio(class UAnimInstance* InAnimInstance, const struct FCachedAnimAssetPlayerData& CachedAnimAssetPlayerData); + static float StateMachine_GetCrossfadeDuration(class UAnimInstance* InAnimInstance, const struct FCachedAnimTransitionData& CachedAnimTransitionData); + static float StateMachine_GetGlobalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData); + static float StateMachine_GetLocalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData); + static float StateMachine_GetRelevantAnimTime(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData); + static float StateMachine_GetRelevantAnimTimeRemaining(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData); + static float StateMachine_GetRelevantAnimTimeRemainingFraction(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData); + static float StateMachine_GetTotalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray); + static bool StateMachine_IsFullWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray); + static bool StateMachine_IsRelevant(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray); + static bool StateMachine_IsStateRelevant(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CachedAnimDataLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CachedAnimDataLibrary") + } + static class UCachedAnimDataLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCachedAnimDataLibrary; + +// Class Engine.AnimationCurveIdentifierExtensions +// 0x0000 (0x0028 - 0x0028) +class UAnimationCurveIdentifierExtensions final : public UBlueprintFunctionLibrary +{ +public: + static class FName GetName(struct FAnimationCurveIdentifier& Identifier); + static ERawCurveTrackTypes GetType(struct FAnimationCurveIdentifier& Identifier); + static bool IsValid(struct FAnimationCurveIdentifier& Identifier); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimationCurveIdentifierExtensions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimationCurveIdentifierExtensions") + } + static class UAnimationCurveIdentifierExtensions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimationCurveIdentifierExtensions; + +// Class Engine.MirrorDataTable +// 0x0140 (0x01F0 - 0x00B0) +class UMirrorDataTable final : public UDataTable +{ +public: + TArray MirrorFindReplaceExpressions; // 0x00B0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + EAxis MirrorAxis; // 0x00C0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMirrorRootMotion; // 0x00C1(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C2[0x6]; // 0x00C2(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* Skeleton; // 0x00C8(0x0008)(Edit, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D0[0x120]; // 0x00D0(0x0120)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MirrorDataTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MirrorDataTable") + } + static class UMirrorDataTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMirrorDataTable; + +// Class Engine.NodeMappingContainer +// 0x0140 (0x0168 - 0x0028) +class UNodeMappingContainer final : public UObject +{ +public: + TMap SourceItems; // 0x0028(0x0050)(Edit, EditConst, NativeAccessSpecifierPrivate) + TMap TargetItems; // 0x0078(0x0050)(Edit, EditConst, NativeAccessSpecifierPrivate) + TMap SourceToTarget; // 0x00C8(0x0050)(Edit, NativeAccessSpecifierPrivate) + TSoftObjectPtr SourceAsset; // 0x0118(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSoftObjectPtr TargetAsset; // 0x0140(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NodeMappingContainer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NodeMappingContainer") + } + static class UNodeMappingContainer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNodeMappingContainer; + +// Class Engine.PoseAsset +// 0x0090 (0x0110 - 0x0080) +class UPoseAsset final : public UAnimationAsset +{ +public: + struct FPoseDataContainer PoseContainer; // 0x0080(0x0070)(NativeAccessSpecifierPrivate) + bool bAdditivePose; // 0x00F0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_F1[0x3]; // 0x00F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 BasePoseIndex; // 0x00F4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName RetargetSource; // 0x00F8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RetargetSourceAssetReferencePose; // 0x0100(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseAsset") + } + static class UPoseAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseAsset; + +// Class Engine.PreviewCollectionInterface +// 0x0000 (0x0000 - 0x0000) +class IPreviewCollectionInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PreviewCollectionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PreviewCollectionInterface") + } + static class IPreviewCollectionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IPreviewCollectionInterface; + +// Class Engine.AnimBlueprint +// 0x0028 (0x00D0 - 0x00A8) +class UAnimBlueprint final : public UBlueprint +{ +public: + uint8 Pad_A8[0x8]; // 0x00A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* TargetSkeleton; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Groups; // 0x00B8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + bool bIsTemplate; // 0x00C8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseMultiThreadedAnimationUpdate; // 0x00C9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWarnAboutBlueprintUsage; // 0x00CA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableLinkedAnimLayerInstanceSharing : 1; // 0x00CB(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_CC[0x4]; // 0x00CC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AnimBlueprint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AnimBlueprint") + } + static class UAnimBlueprint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAnimBlueprint; + +// Class Engine.AssetManager +// 0x04A8 (0x04D0 - 0x0028) +class UAssetManager final : public UObject +{ +public: + uint8 Pad_28[0x308]; // 0x0028(0x0308)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectReferenceList; // 0x0330(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + bool bIsGlobalAsyncScanEnvironment; // 0x0340(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bShouldGuessTypeAndName; // 0x0341(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bShouldUseSynchronousLoad; // 0x0342(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIsLoadingFromPakFiles; // 0x0343(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bShouldAcquireMissingChunksOnLoad; // 0x0344(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bOnlyCookProductionAssets; // 0x0345(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_346[0x2]; // 0x0346(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumBulkScanRequests; // 0x0348(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIsPrimaryAssetDirectoryCurrent; // 0x034C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIsManagementDatabaseCurrent; // 0x034D(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUpdateManagementDatabaseAfterScan; // 0x034E(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIncludeOnlyOnDiskAssets; // 0x034F(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bHasCompletedInitialScan; // 0x0350(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_351[0x3]; // 0x0351(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumberOfSpawnedNotifications; // 0x0354(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_358[0x178]; // 0x0358(0x0178)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetManager") + } + static class UAssetManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetManager; + +// Class Engine.AsyncActionLoadPrimaryAssetClass +// 0x0010 (0x0088 - 0x0078) +class UAsyncActionLoadPrimaryAssetClass final : public UAsyncActionLoadPrimaryAssetBase +{ +public: + TMulticastInlineDelegate Loaded)> Completed; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UAsyncActionLoadPrimaryAssetClass* AsyncLoadPrimaryAssetClass(class UObject* WorldContextObject, const struct FPrimaryAssetId& PrimaryAsset, const TArray& LoadBundles); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionLoadPrimaryAssetClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionLoadPrimaryAssetClass") + } + static class UAsyncActionLoadPrimaryAssetClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionLoadPrimaryAssetClass; + +// Class Engine.AsyncActionLoadPrimaryAssetList +// 0x0010 (0x0088 - 0x0078) +class UAsyncActionLoadPrimaryAssetList final : public UAsyncActionLoadPrimaryAssetBase +{ +public: + TMulticastInlineDelegate& Loaded)> Completed; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UAsyncActionLoadPrimaryAssetList* AsyncLoadPrimaryAssetList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& LoadBundles); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionLoadPrimaryAssetList") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionLoadPrimaryAssetList") + } + static class UAsyncActionLoadPrimaryAssetList* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionLoadPrimaryAssetList; + +// Class Engine.AsyncActionLoadPrimaryAssetClassList +// 0x0010 (0x0088 - 0x0078) +class UAsyncActionLoadPrimaryAssetClassList final : public UAsyncActionLoadPrimaryAssetBase +{ +public: + TMulticastInlineDelegate>& Loaded)> Completed; // 0x0078(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UAsyncActionLoadPrimaryAssetClassList* AsyncLoadPrimaryAssetClassList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& LoadBundles); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncActionLoadPrimaryAssetClassList") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncActionLoadPrimaryAssetClassList") + } + static class UAsyncActionLoadPrimaryAssetClassList* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncActionLoadPrimaryAssetClassList; + +// Class Engine.AtmosphericFog +// 0x0008 (0x02B0 - 0x02A8) +class AAtmosphericFog final : public AInfo +{ +public: + class UAtmosphericFogComponent* AtmosphericFogComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AtmosphericFog") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AtmosphericFog") + } + static class AAtmosphericFog* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AAtmosphericFog; + +// Class Engine.SkyAtmosphereComponent +// 0x0100 (0x0330 - 0x0230) +class USkyAtmosphereComponent : public USceneComponent +{ +public: + ESkyAtmosphereTransformMode TransformMode; // 0x0230(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_231[0x3]; // 0x0231(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BottomRadius; // 0x0234(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor GroundAlbedo; // 0x0238(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AtmosphereHeight; // 0x023C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MultiScatteringFactor; // 0x0240(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TraceSampleCountScale; // 0x0244(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RayleighScatteringScale; // 0x0248(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RayleighScattering; // 0x024C(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RayleighExponentialDistribution; // 0x025C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MieScatteringScale; // 0x0260(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor MieScattering; // 0x0264(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MieAbsorptionScale; // 0x0274(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor MieAbsorption; // 0x0278(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MieAnisotropy; // 0x0288(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MieExponentialDistribution; // 0x028C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OtherAbsorptionScale; // 0x0290(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor OtherAbsorption; // 0x0294(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTentDistribution OtherTentDistribution; // 0x02A4(0x000C)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPublic) + struct FLinearColor SkyLuminanceFactor; // 0x02B0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPespectiveViewDistanceScale; // 0x02C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HeightFogContribution; // 0x02C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TransmittanceMinLightElevationAngle; // 0x02C8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPerspectiveStartDepth; // 0x02CC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHoldout : 1; // 0x02D0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderInMainPass : 1; // 0x02D0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2D1[0x47]; // 0x02D1(0x0047)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid bStaticLightingBuiltGUID; // 0x0318(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_328[0x8]; // 0x0328(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FLinearColor GetAtmosphereTransmitanceOnGroundAtPlanetTop(class UDirectionalLightComponent* DirectionalLight); + float GetAtmosphericLightToMatchIlluminanceOnGround(const struct FVector& LightDirection, float IlluminanceOnGround); + struct FVector GetOverridenAtmosphereLightDirection(int32 AtmosphereLightIndex); + bool IsAtmosphereLightDirectionOverriden(int32 AtmosphereLightIndex); + void OverrideAtmosphereLightDirection(int32 AtmosphereLightIndex, const struct FVector& LightDirection); + void ResetAtmosphereLightDirectionOverride(int32 AtmosphereLightIndex); + void SetAerialPespectiveViewDistanceScale(float NewValue); + void SetAtmosphereHeight(float NewValue); + void SetBottomRadius(float NewValue); + void SetGroundAlbedo(const struct FColor& NewValue); + void SetHeightFogContribution(float NewValue); + void SetHoldout(bool bNewHoldout); + void SetMieAbsorption(const struct FLinearColor& NewValue); + void SetMieAbsorptionScale(float NewValue); + void SetMieAnisotropy(float NewValue); + void SetMieExponentialDistribution(float NewValue); + void SetMieScattering(const struct FLinearColor& NewValue); + void SetMieScatteringScale(float NewValue); + void SetMultiScatteringFactor(float NewValue); + void SetOtherAbsorption(const struct FLinearColor& NewValue); + void SetOtherAbsorptionScale(float NewValue); + void SetRayleighExponentialDistribution(float NewValue); + void SetRayleighScattering(const struct FLinearColor& NewValue); + void SetRayleighScatteringScale(float NewValue); + void SetRenderInMainPass(bool bValue); + void SetSkyLuminanceFactor(const struct FLinearColor& NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkyAtmosphereComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkyAtmosphereComponent") + } + static class USkyAtmosphereComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkyAtmosphereComponent; + +// Class Engine.AtmosphericFogComponent +// 0x0000 (0x0330 - 0x0330) +class UAtmosphericFogComponent final : public USkyAtmosphereComponent +{ +public: + void DisableGroundScattering(bool NewGroundScattering); + void DisableSunDisk(bool NewSunDisk); + void SetAltitudeScale(float NewAltitudeScale); + void SetDefaultBrightness(float NewBrightness); + void SetDefaultLightColor(const struct FLinearColor& NewLightColor); + void SetDensityMultiplier(float NewDensityMultiplier); + void SetDensityOffset(float NewDensityOffset); + void SetDistanceOffset(float NewDistanceOffset); + void SetDistanceScale(float NewDistanceScale); + void SetFogMultiplier(float NewFogMultiplier); + void SetPrecomputeParams(float DensityHeight, int32 MaxScatteringOrder, int32 InscatterAltitudeSampleNum); + void SetStartDistance(float NewStartDistance); + void SetSunMultiplier(float NewSunMultiplier); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AtmosphericFogComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AtmosphericFogComponent") + } + static class UAtmosphericFogComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAtmosphericFogComponent; + +// Class Engine.AudioSettings +// 0x01B0 (0x01E8 - 0x0038) +class UAudioSettings final : public UDeveloperSettings +{ +public: + struct FSoftObjectPath DefaultSoundClassName; // 0x0038(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultMediaSoundClassName; // 0x0058(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultSoundConcurrencyName; // 0x0078(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath DefaultBaseSoundMix; // 0x0098(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath VoiPSoundClass; // 0x00B8(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath MasterSubmix; // 0x00D8(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath BaseDefaultSubmix; // 0x00F8(0x0020)(Edit, ZeroConstructor, Config, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath ReverbSubmix; // 0x0118(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath EQSubmix; // 0x0138(0x0020)(Edit, ZeroConstructor, Config, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVoiceSampleRate VoiPSampleRate; // 0x0158(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDefaultAudioCompressionType DefaultAudioCompressionType; // 0x015C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15D[0x3]; // 0x015D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DefaultCompressionQuality; // 0x0160(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultReverbSendLevel; // 0x0164(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumConcurrentStreams; // 0x0168(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalMinPitchScale; // 0x016C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalMaxPitchScale; // 0x0170(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_174[0x4]; // 0x0174(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray QualityLevels; // 0x0178(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 bAllowPlayWhenSilent : 1; // 0x0188(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisableMasterEQ : 1; // 0x0188(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowCenterChannel3DPanning : 1; // 0x0188(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_189[0x3]; // 0x0189(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 NumStoppingSources; // 0x018C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPanningMethod PanningMethod; // 0x0190(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMonoChannelUpmixMethod MonoChannelUpmixMethod; // 0x0191(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_192[0x6]; // 0x0192(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class FString DialogueFilenameFormat; // 0x0198(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray DebugSounds; // 0x01A8(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray DefaultAudioBuses; // 0x01B8(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + class USoundClass* DefaultSoundClass; // 0x01C8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USoundClass* DefaultMediaSoundClass; // 0x01D0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USoundConcurrency* DefaultSoundConcurrency; // 0x01D8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1E0[0x8]; // 0x01E0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioSettings") + } + static class UAudioSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioSettings; + +// Class Engine.AudioVolume +// 0x0070 (0x0350 - 0x02E0) +class AAudioVolume final : public AVolume +{ +public: + float Priority; // 0x02E0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bEnabled : 1; // 0x02E4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_2E5[0x3]; // 0x02E5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FReverbSettings Settings; // 0x02E8(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPrivate) + struct FInteriorSettings AmbientZoneSettings; // 0x0308(0x0024)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPrivate) + uint8 Pad_32C[0x4]; // 0x032C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SubmixSendSettings; // 0x0330(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray SubmixOverrideSettings; // 0x0340(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPrivate) + +public: + void OnRep_bEnabled(); + void SetEnabled(bool bNewEnabled); + void SetInteriorSettings(const struct FInteriorSettings& NewInteriorSettings); + void SetPriority(float NewPriority); + void SetReverbSettings(const struct FReverbSettings& NewReverbSettings); + void SetSubmixOverrideSettings(const TArray& NewSubmixOverrideSettings); + void SetSubmixSendSettings(const TArray& NewSubmixSendSettings); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioVolume") + } + static class AAudioVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AAudioVolume; + +// Class Engine.ActorSoundParameterInterface +// 0x0000 (0x0000 - 0x0000) +class IActorSoundParameterInterface final +{ +public: + void GetActorSoundParams(TArray* Params_0) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorSoundParameterInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorSoundParameterInterface") + } + static class IActorSoundParameterInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IActorSoundParameterInterface; + +// Class Engine.AudioWidgetSubsystem +// 0x0000 (0x0030 - 0x0030) +class UAudioWidgetSubsystem final : public UEngineSubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioWidgetSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioWidgetSubsystem") + } + static class UAudioWidgetSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioWidgetSubsystem; + +// Class Engine.AudioParameterConversionStatics +// 0x0000 (0x0028 - 0x0028) +class UAudioParameterConversionStatics final : public UBlueprintFunctionLibrary +{ +public: + static struct FAudioParameter BooleanArrayToAudioParameter(class FName Name_0, const TArray& Bools); + static struct FAudioParameter BooleanToAudioParameter(class FName Name_0, bool Bool); + static struct FAudioParameter FloatArrayToAudioParameter(class FName Name_0, const TArray& Floats); + static struct FAudioParameter FloatToAudioParameter(class FName Name_0, float float_0); + static struct FAudioParameter IntegerArrayToAudioParameter(class FName Name_0, const TArray& Integers); + static struct FAudioParameter IntegerToAudioParameter(class FName Name_0, int32 Integer); + static struct FAudioParameter ObjectArrayToAudioParameter(class FName Name_0, const TArray& Objects); + static struct FAudioParameter ObjectToAudioParameter(class FName Name_0, class UObject* Object); + static struct FAudioParameter StringArrayToAudioParameter(class FName Name_0, const TArray& Strings); + static struct FAudioParameter StringToAudioParameter(class FName Name_0, const class FString& String); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioParameterConversionStatics") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioParameterConversionStatics") + } + static class UAudioParameterConversionStatics* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioParameterConversionStatics; + +// Class Engine.BlockingVolume +// 0x0000 (0x02E0 - 0x02E0) +class ABlockingVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlockingVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlockingVolume") + } + static class ABlockingVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ABlockingVolume; + +// Class Engine.BlueprintInstancedStructLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintInstancedStructLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool EqualEqual_InstancedStruct(const struct FInstancedStruct& A, const struct FInstancedStruct& B); + static void GetInstancedStructValue(EStructUtilsResult* ExecResult, const struct FInstancedStruct& InstancedStruct, int32* Value); + static EStructUtilsResult IsInstancedStructValid(const struct FInstancedStruct& InstancedStruct); + static bool IsValid_InstancedStruct(const struct FInstancedStruct& InstancedStruct); + static struct FInstancedStruct MakeInstancedStruct(const int32& Value); + static bool NotEqual_InstancedStruct(const struct FInstancedStruct& A, const struct FInstancedStruct& B); + static void Reset(struct FInstancedStruct& InstancedStruct, const class UScriptStruct* StructType); + static void SetInstancedStructValue(struct FInstancedStruct& InstancedStruct, const int32& Value); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintInstancedStructLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintInstancedStructLibrary") + } + static class UBlueprintInstancedStructLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintInstancedStructLibrary; + +// Class Engine.BlueprintSetLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintSetLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void Set_Add(const TSet& TargetSet, const int32& NewItem); + static void Set_AddItems(const TSet& TargetSet, const TArray& NewItems); + static void Set_Clear(const TSet& TargetSet); + static bool Set_Contains(const TSet& TargetSet, const int32& ItemToFind); + static void Set_Difference(const TSet& A, const TSet& B, TSet* Result); + static void Set_Intersection(const TSet& A, const TSet& B, TSet* Result); + static bool Set_IsEmpty(const TSet& TargetSet); + static bool Set_IsNotEmpty(const TSet& TargetSet); + static int32 Set_Length(const TSet& TargetSet); + static bool Set_Remove(const TSet& TargetSet, const int32& Item); + static void Set_RemoveItems(const TSet& TargetSet, const TArray& Items); + static void Set_ToArray(const TSet& A, TArray* Result); + static void Set_Union(const TSet& A, const TSet& B, TSet* Result); + static void SetSetPropertyByName(class UObject* Object, class FName PropertyName, const TSet& Value); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintSetLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintSetLibrary") + } + static class UBlueprintSetLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintSetLibrary; + +// Class Engine.DataLayerInstancePrivate +// 0x0018 (0x0060 - 0x0048) +class UDataLayerInstancePrivate final : public UDataLayerInstance +{ +public: + class FString ShortName; // 0x0048(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDataLayerAsset* DataLayerAsset; // 0x0058(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerInstancePrivate") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerInstancePrivate") + } + static class UDataLayerInstancePrivate* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerInstancePrivate; + +// Class Engine.BookMark +// 0x0040 (0x0068 - 0x0028) +class UBookMark final : public UBookmarkBase +{ +public: + struct FVector Location; // 0x0028(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0040(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray HiddenLevels; // 0x0058(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BookMark") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BookMark") + } + static class UBookMark* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBookMark; + +// Class Engine.BrushBuilder +// 0x0058 (0x0080 - 0x0028) +class UBrushBuilder final : public UObject +{ +public: + class FString BitmapFilename; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ToolTip; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NotifyBadParams : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Vertices; // 0x0050(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray Polys; // 0x0060(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + class FName Layer; // 0x0070(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 MergeCoplanars : 1; // 0x0078(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BrushBuilder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BrushBuilder") + } + static class UBrushBuilder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBrushBuilder; + +// Class Engine.CameraBlockingVolume +// 0x0000 (0x02E0 - 0x02E0) +class ACameraBlockingVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraBlockingVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraBlockingVolume") + } + static class ACameraBlockingVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ACameraBlockingVolume; + +// Class Engine.CameraProxyMeshComponent +// 0x0000 (0x05C0 - 0x05C0) +class UCameraProxyMeshComponent final : public UStaticMeshComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraProxyMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraProxyMeshComponent") + } + static class UCameraProxyMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraProxyMeshComponent; + +// Class Engine.CameraLensEffectInterface +// 0x0000 (0x0000 - 0x0000) +class ICameraLensEffectInterface final +{ +public: + TArray GetParticleComponents() const; + class UFXSystemComponent* GetPrimaryParticleComponent() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraLensEffectInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraLensEffectInterface") + } + static class ICameraLensEffectInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ICameraLensEffectInterface; + +// Class Engine.CameraModifier +// 0x0020 (0x0048 - 0x0028) +class UCameraModifier : public UObject +{ +public: + uint8 bDebug : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bExclusive : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 Priority; // 0x002C(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerCameraManager* CameraOwner; // 0x0030(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float AlphaInTime; // 0x0038(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float AlphaOutTime; // 0x003C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float Alpha; // 0x0040(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void BlueprintModifyCamera(float DeltaTime, const struct FVector& ViewLocation, const struct FRotator& ViewRotation, float FOV, struct FVector* NewViewLocation, struct FRotator* NewViewRotation, float* NewFOV); + void BlueprintModifyPostProcess(float DeltaTime, float* PostProcessBlendWeight, struct FPostProcessSettings* PostProcessSettings); + void DisableModifier(bool bImmediate); + void EnableModifier(); + void OnCameraOwnerDestroyed(class AActor* InOwner); + + class AActor* GetViewTarget() const; + bool IsDisabled() const; + bool IsPendingDisable() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraModifier") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraModifier") + } + static class UCameraModifier* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraModifier; + +// Class Engine.WorldPartitionMiniMap +// 0x00D0 (0x0378 - 0x02A8) +class AWorldPartitionMiniMap final : public AInfo +{ +public: + struct FBox MiniMapWorldBounds; // 0x02A8(0x0038)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FBox2D UVOffset; // 0x02E0(0x0028)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + class UTexture2D* MiniMapTexture; // 0x0308(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSet ExcludedDataLayers; // 0x0310(0x0050)(Edit, NativeAccessSpecifierPublic) + int32 WorldUnitsPerPixel; // 0x0360(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BuilderCellSize; // 0x0364(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESceneCaptureSource CaptureSource; // 0x0368(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_369[0x3]; // 0x0369(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 CaptureWarmupFrames; // 0x036C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MiniMapTileSize; // 0x0370(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_374[0x4]; // 0x0374(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionMiniMap") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionMiniMap") + } + static class AWorldPartitionMiniMap* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldPartitionMiniMap; + +// Class Engine.CameraModifier_CameraShake +// 0x0068 (0x00B0 - 0x0048) +class UCameraModifier_CameraShake final : public UCameraModifier +{ +public: + TArray ActiveShakes; // 0x0048(0x0010)(ZeroConstructor, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + TMap, struct FPooledCameraShakes> ExpiredPooledShakesMap; // 0x0058(0x0050)(Protected, NativeAccessSpecifierProtected) + float SplitScreenShakeScale; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_AC[0x4]; // 0x00AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraModifier_CameraShake") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraModifier_CameraShake") + } + static class UCameraModifier_CameraShake* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraModifier_CameraShake; + +// Class Engine.CameraShakeBase +// 0x00B8 (0x00E0 - 0x0028) +#pragma pack(push, 0x1) +class alignas(0x10) UCameraShakeBase : public UObject +{ +public: + bool bSingleInstance; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ShakeScale; // 0x002C(0x0004)(BlueprintVisible, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraShakePattern* RootShakePattern; // 0x0030(0x0008)(Edit, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class APlayerCameraManager* CameraManager; // 0x0038(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_40[0x98]; // 0x0040(0x0098)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetRootShakePattern(class UCameraShakePattern* InPattern); + + class UCameraShakePattern* GetRootShakePattern() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraShakeBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraShakeBase") + } + static class UCameraShakeBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UCameraShakeBase; + +// Class Engine.CameraShakeSourceActor +// 0x0008 (0x02B0 - 0x02A8) +class ACameraShakeSourceActor final : public AActor +{ +public: + class UCameraShakeSourceComponent* CameraShakeSourceComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraShakeSourceActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraShakeSourceActor") + } + static class ACameraShakeSourceActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ACameraShakeSourceActor; + +// Class Engine.CameraShakeSourceComponent +// 0x0020 (0x0250 - 0x0230) +class UCameraShakeSourceComponent final : public USceneComponent +{ +public: + ECameraShakeAttenuation Attenuation; // 0x0230(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_231[0x3]; // 0x0231(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InnerAttenuationRadius; // 0x0234(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterAttenuationRadius; // 0x0238(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23C[0x4]; // 0x023C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf CameraShake; // 0x0240(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoStart; // 0x0248(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_249[0x7]; // 0x0249(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Start(); + void StartCameraShake(TSubclassOf InCameraShake, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot); + void StopAllCameraShakes(bool bImmediately); + void StopAllCameraShakesOfType(TSubclassOf InCameraShake, bool bImmediately); + + float GetAttenuationFactor(const struct FVector& Location) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CameraShakeSourceComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CameraShakeSourceComponent") + } + static class UCameraShakeSourceComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCameraShakeSourceComponent; + +// Class Engine.CanvasRenderTarget2D +// 0x0020 (0x0180 - 0x0160) +class UCanvasRenderTarget2D final : public UTextureRenderTarget2D +{ +public: + TMulticastInlineDelegate OnCanvasRenderTargetUpdate; // 0x0160(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TWeakObjectPtr World; // 0x0170(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ETextureRenderTargetSampleCount SampleCount; // 0x0178(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bShouldClearRenderTargetOnReceiveUpdate; // 0x0179(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_17A[0x6]; // 0x017A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UCanvasRenderTarget2D* CreateCanvasRenderTarget2D(class UObject* WorldContextObject, TSubclassOf CanvasRenderTarget2DClass, int32 Width, int32 Height); + + void GetSize(int32* Width, int32* Height); + void ReceiveUpdate(class UCanvas* Canvas, int32 Width, int32 Height); + void SetSampleCount(ETextureRenderTargetSampleCount InSampleCount); + void UpdateResource(); + + ETextureRenderTargetSampleCount GetSampleCount() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CanvasRenderTarget2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CanvasRenderTarget2D") + } + static class UCanvasRenderTarget2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCanvasRenderTarget2D; + +// Class Engine.Texture2DDynamic +// 0x0018 (0x0148 - 0x0130) +class UTexture2DDynamic final : public UTexture +{ +public: + uint8 Pad_130[0x8]; // 0x0130(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EPixelFormat Format; // 0x0138(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_139[0xF]; // 0x0139(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Texture2DDynamic") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Texture2DDynamic") + } + static class UTexture2DDynamic* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTexture2DDynamic; + +// Class Engine.Pawn +// 0x0080 (0x0328 - 0x02A8) +class APawn : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseControllerRotationPitch : 1; // 0x02B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseControllerRotationYaw : 1; // 0x02B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseControllerRotationRoll : 1; // 0x02B0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanAffectNavigationGeneration : 1; // 0x02B0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2B0_4 : 2; // 0x02B0(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bIsLocalViewTarget : 1; // 0x02B0(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_2B1[0x3]; // 0x02B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BaseEyeHeight; // 0x02B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAutoReceiveInput AutoPossessPlayer; // 0x02B8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAutoPossessAI AutoPossessAI; // 0x02B9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 RemoteViewPitch; // 0x02BA(0x0001)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2BB[0x5]; // 0x02BB(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf AIControllerClass; // 0x02C0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* PlayerState; // 0x02C8(0x0008)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AController* LastHitBy; // 0x02D0(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* Controller; // 0x02D8(0x0008)(Net, ZeroConstructor, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* PreviousController; // 0x02E0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E8[0x4]; // 0x02E8(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + FMulticastSparseDelegateProperty_ ReceiveControllerChangedDelegate; // 0x02EC(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + FMulticastSparseDelegateProperty_ ReceiveRestartedDelegate; // 0x02ED(0x0001)(InstancedReference, BlueprintAssignable, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_2EE[0x2]; // 0x02EE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ControlInputVector; // 0x02F0(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector LastControlInputVector; // 0x0308(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSubclassOf OverrideInputComponentClass; // 0x0320(0x0008)(Edit, ZeroConstructor, DisableEditOnInstance, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class AActor* GetMovementBaseActor(const class APawn* Pawn); + + void AddControllerPitchInput(float Val); + void AddControllerRollInput(float Val); + void AddControllerYawInput(float Val); + void AddMovementInput(const struct FVector& WorldDirection, float ScaleValue, bool bForce); + struct FVector ConsumeMovementInputVector(); + void DetachFromControllerPendingDestroy(); + void OnRep_Controller(); + void OnRep_PlayerState(); + void PawnMakeNoise(float Loudness, const struct FVector& NoiseLocation, bool bUseNoiseMakerLocation, class AActor* NoiseMaker); + void ReceiveControllerChanged(class AController* OldController, class AController* NewController); + void ReceivePossessed(class AController* NewController); + void ReceiveRestarted(); + void ReceiveUnpossessed(class AController* OldController); + void SetCanAffectNavigationGeneration(bool bNewValue, bool bForceUpdate); + void SpawnDefaultController(); + + struct FRotator GetBaseAimRotation() const; + class AController* GetController() const; + struct FRotator GetControlRotation() const; + struct FVector GetLastMovementInputVector() const; + class APlayerController* GetLocalViewingPlayerController() const; + class UPawnMovementComponent* GetMovementComponent() const; + struct FVector GetNavAgentLocation() const; + TSubclassOf GetOverrideInputComponentClass() const; + struct FVector GetPendingMovementInputVector() const; + struct FPlatformUserId GetPlatformUserId() const; + bool IsBotControlled() const; + bool IsControlled() const; + bool IsLocallyControlled() const; + bool IsLocallyViewed() const; + bool IsMoveInputIgnored() const; + bool IsPawnControlled() const; + bool IsPlayerControlled() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Pawn") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Pawn") + } + static class APawn* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APawn; + +// Class Engine.Character +// 0x0328 (0x0650 - 0x0328) +#pragma pack(push, 0x1) +class alignas(0x10) ACharacter : public APawn +{ +public: + class USkeletalMeshComponent* Mesh; // 0x0328(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UCharacterMovementComponent* CharacterMovement; // 0x0330(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UCapsuleComponent* CapsuleComponent; // 0x0338(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FBasedMovementInfo BasedMovement; // 0x0340(0x0048)(NoDestructor, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + struct FBasedMovementInfo ReplicatedBasedMovement; // 0x0388(0x0048)(Net, RepNotify, NoDestructor, ContainsInstancedReference, Protected, NativeAccessSpecifierProtected) + float ReplicatedServerLastTransformUpdateTimeStamp; // 0x03D0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ReplayLastTransformUpdateTimeStamp; // 0x03D4(0x0004)(Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_3D8[0x8]; // 0x03D8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat BaseRotationOffset; // 0x03E0(0x0020)(IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector BaseTranslationOffset; // 0x0400(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector_NetQuantizeNormal ReplicatedGravityDirection; // 0x0418(0x0018)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_430[0x18]; // 0x0430(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + float AnimRootMotionTranslationScale; // 0x0448(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float CrouchedEyeHeight; // 0x044C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bInBaseReplication : 1; // 0x0450(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bIsCrouched : 1; // 0x0450(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, Net, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bProxyIsJumpForceApplied : 1; // 0x0450(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Net, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPressedJump : 1; // 0x0450(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientUpdating : 1; // 0x0450(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientWasFalling : 1; // 0x0450(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientResimulateRootMotion : 1; // 0x0450(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientResimulateRootMotionSources : 1; // 0x0450(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSimGravityDisabled : 1; // 0x0451(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientCheckEncroachmentOnNetUpdate : 1; // 0x0451(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bServerMoveIgnoreRootMotion : 1; // 0x0451(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWasJumping : 1; // 0x0451(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, Transient, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 ReplicatedMovementMode; // 0x0452(0x0001)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_453[0x1]; // 0x0453(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float JumpKeyHoldTime; // 0x0454(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JumpForceTimeRemaining; // 0x0458(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProxyJumpForceStartedTime; // 0x045C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JumpMaxHoldTime; // 0x0460(0x0004)(Edit, BlueprintVisible, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 JumpMaxCount; // 0x0464(0x0004)(Edit, BlueprintVisible, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 JumpCurrentCount; // 0x0468(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 JumpCurrentCountPreJump; // 0x046C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_470[0x8]; // 0x0470(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnReachedJumpApex; // 0x0478(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate LandedDelegate; // 0x0488(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate MovementModeChangedDelegate; // 0x0498(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnCharacterMovementUpdated; // 0x04A8(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + struct FRootMotionSourceGroup SavedRootMotion; // 0x04B8(0x0048)(Transient, NativeAccessSpecifierPublic) + struct FRootMotionMovementParams ClientRootMotionParams; // 0x0500(0x0070)(Transient, NoDestructor, NativeAccessSpecifierPublic) + TArray RootMotionRepMoves; // 0x0570(0x0010)(ZeroConstructor, Transient, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRepRootMotionMontage RepRootMotion; // 0x0580(0x00C8)(Net, RepNotify, ContainsInstancedReference, NativeAccessSpecifierPublic) + +public: + void CacheInitialMeshOffset(const struct FVector& MeshRelativeLocation, const struct FRotator& MeshRelativeRotation); + void ClientAckGoodMove(float Timestamp); + void ClientAdjustPosition(float Timestamp, const struct FVector& NewLoc, const struct FVector& NewVel, class UPrimitiveComponent* NewBase, class FName NewBaseBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode); + void ClientAdjustRootMotionPosition(float Timestamp, float ServerMontageTrackPosition, const struct FVector& ServerLoc, const struct FVector_NetQuantizeNormal& ServerRotation, float ServerVelZ, class UPrimitiveComponent* ServerBase, class FName ServerBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode); + void ClientAdjustRootMotionSourcePosition(float Timestamp, const struct FRootMotionSourceGroup& ServerRootMotion, bool bHasAnimRootMotion, float ServerMontageTrackPosition, const struct FVector& ServerLoc, const struct FVector_NetQuantizeNormal& ServerRotation, float ServerVelZ, class UPrimitiveComponent* ServerBase, class FName ServerBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode); + void ClientCheatFly(); + void ClientCheatGhost(); + void ClientCheatWalk(); + void ClientMoveResponsePacked(const struct FCharacterMoveResponsePackedBits& PackedBits); + void ClientVeryShortAdjustPosition(float Timestamp, const struct FVector& NewLoc, class UPrimitiveComponent* NewBase, class FName NewBaseBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode); + void Crouch(bool bClientSimulation); + void Jump(); + void K2_OnEndCrouch(float HalfHeightAdjust, float ScaledHalfHeightAdjust); + void K2_OnMovementModeChanged(EMovementMode PrevMovementMode, EMovementMode NewMovementMode, uint8 PrevCustomMode, uint8 NewCustomMode); + void K2_OnStartCrouch(float HalfHeightAdjust, float ScaledHalfHeightAdjust); + void K2_UpdateCustomMovement(float DeltaTime); + void LaunchCharacter(const struct FVector& LaunchVelocity, bool bXYOverride, bool bZOverride); + void OnJumped(); + void OnLanded(const struct FHitResult& Hit); + void OnLaunched(const struct FVector& LaunchVelocity, bool bXYOverride, bool bZOverride); + void OnRep_IsCrouched(); + void OnRep_ReplayLastTransformUpdateTimeStamp(); + void OnRep_ReplicatedBasedMovement(); + void OnRep_RootMotion(); + void OnWalkingOffLedge(const struct FVector& PreviousFloorImpactNormal, const struct FVector& PreviousFloorContactNormal, const struct FVector& PreviousLocation, float TimeDelta); + float PlayAnimMontage(class UAnimMontage* AnimMontage, float InPlayRate, class FName StartSectionName); + void RootMotionDebugClientPrintOnScreen(const class FString& InString); + void ServerMove(float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 CompressedMoveFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode); + void ServerMoveDual(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode); + void ServerMoveDualHybridRootMotion(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode); + void ServerMoveDualNoBase(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, uint8 ClientMovementMode); + void ServerMoveNoBase(float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 CompressedMoveFlags, uint8 ClientRoll, uint32 View, uint8 ClientMovementMode); + void ServerMoveOld(float OldTimeStamp, const struct FVector_NetQuantize10& OldAccel, uint8 OldMoveFlags); + void ServerMovePacked(const struct FCharacterServerMovePackedBits& PackedBits); + void StopAnimMontage(class UAnimMontage* AnimMontage); + void StopJumping(); + void UnCrouch(bool bClientSimulation); + + bool CanCrouch() const; + bool CanJump() const; + bool CanJumpInternal() const; + float GetAnimRootMotionTranslationScale() const; + struct FRotator GetBaseRotationOffsetRotator() const; + struct FVector GetBaseTranslationOffset() const; + class UAnimMontage* GetCurrentMontage() const; + bool HasAnyRootMotion() const; + bool IsJumpProvidingForce() const; + bool IsPlayingNetworkedRootMotionMontage() const; + bool IsPlayingRootMotion() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Character") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Character") + } + static class ACharacter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_ACharacter; + +// Class Engine.PlayerController +// 0x0518 (0x0858 - 0x0340) +class APlayerController : public AController +{ +public: + uint8 Pad_340[0x8]; // 0x0340(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UPlayer* Player; // 0x0348(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APawn* AcknowledgedPawn; // 0x0350(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AHUD* MyHUD; // 0x0358(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerCameraManager* PlayerCameraManager; // 0x0360(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PlayerCameraManagerClass; // 0x0368(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoManageActiveCameraTarget; // 0x0370(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_371[0x7]; // 0x0371(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator TargetViewRotation; // 0x0378(0x0018)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_390[0x18]; // 0x0390(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + float SmoothTargetViewRotationSpeed; // 0x03A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3AC[0x4]; // 0x03AC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray HiddenActors; // 0x03B0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> HiddenPrimitiveComponents; // 0x03C0(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_3D0[0x4]; // 0x03D0(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float LastSpectatorStateSynchTime; // 0x03D4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LastSpectatorSyncLocation; // 0x03D8(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator LastSpectatorSyncRotation; // 0x03F0(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + int32 ClientCap; // 0x0408(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_40C[0x4]; // 0x040C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UCheatManager* CheatManager; // 0x0410(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf CheatClass; // 0x0418(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPlayerInput* PlayerInput; // 0x0420(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActiveForceFeedbackEffects; // 0x0428(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + uint8 Pad_438[0x80]; // 0x0438(0x0080)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_4B8_0 : 4; // 0x04B8(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bPlayerIsWaiting : 1; // 0x04B8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4B9[0x3]; // 0x04B9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 NetPlayerIndex; // 0x04BC(0x0001)(ZeroConstructor, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4BD[0x5B]; // 0x04BD(0x005B)(Fixing Size After Last Property [ Dumper-7 ]) + class UNetConnection* PendingSwapConnection; // 0x0518(0x0008)(ZeroConstructor, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UNetConnection* NetConnection; // 0x0520(0x0008)(ZeroConstructor, DuplicateTransient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_528[0x18]; // 0x0528(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + float InputYawScale; // 0x0540(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InputPitchScale; // 0x0544(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InputRollScale; // 0x0548(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShowMouseCursor : 1; // 0x054C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableClickEvents : 1; // 0x054C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableTouchEvents : 1; // 0x054C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMouseOverEvents : 1; // 0x054C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableTouchOverEvents : 1; // 0x054C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceFeedbackEnabled : 1; // 0x054C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMotionControls : 1; // 0x054C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableStreamingSource : 1; // 0x054C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStreamingSourceShouldActivate : 1; // 0x054D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStreamingSourceShouldBlockOnSlowStreaming : 1; // 0x054D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_54E[0x2]; // 0x054E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + EStreamingSourcePriority StreamingSourcePriority; // 0x0550(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_551[0x3]; // 0x0551(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor StreamingSourceDebugColor; // 0x0554(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray StreamingSourceShapes; // 0x0558(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + float ForceFeedbackScale; // 0x0568(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_56C[0x4]; // 0x056C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ClickEventKeys; // 0x0570(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + EMouseCursor DefaultMouseCursor; // 0x0580(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMouseCursor CurrentMouseCursor; // 0x0581(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel DefaultClickTraceChannel; // 0x0582(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel CurrentClickTraceChannel; // 0x0583(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HitResultTraceDistance; // 0x0584(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 SeamlessTravelCount; // 0x0588(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 LastCompletedSeamlessTravelCount; // 0x058A(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58C[0x84]; // 0x058C(0x0084)(Fixing Size After Last Property [ Dumper-7 ]) + class UInputComponent* InactiveStateInputComponent; // 0x0610(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 BitPad_618_0 : 2; // 0x0618(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bShouldPerformFullTickWhenPaused : 1; // 0x0618(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_619[0x17]; // 0x0619(0x0017)(Fixing Size After Last Property [ Dumper-7 ]) + class UTouchInterface* CurrentTouchInterface; // 0x0630(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSubclassOf OverridePlayerInputClass; // 0x0638(0x0008)(Edit, ZeroConstructor, DisableEditOnInstance, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_640[0x78]; // 0x0640(0x0078)(Fixing Size After Last Property [ Dumper-7 ]) + class ASpectatorPawn* SpectatorPawn; // 0x06B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_6C0[0x4]; // 0x06C0(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + bool bIsLocalPlayerController; // 0x06C4(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_6C5[0x3]; // 0x06C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector SpawnLocation; // 0x06C8(0x0018)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_6E0[0x178]; // 0x06E0(0x0178)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ActivateTouchInterface(class UTouchInterface* NewTouchInterface); + void AddPitchInput(float Val); + void AddRollInput(float Val); + void AddYawInput(float Val); + void Camera(class FName NewMode); + bool CanRestartPlayer(); + void ClearAudioListenerAttenuationOverride(); + void ClearAudioListenerOverride(); + void ClientAckTimeDilation(float TimeDilation, int32 ServerStep); + void ClientAckUpdateLevelVisibility(class FName PackageName, const struct FNetLevelVisibilityTransactionId& TransactionId, bool bClientAckCanMakeVisible); + void ClientAddTextureStreamingLoc(const struct FVector& InLoc, float duration, bool bOverrideLocation); + void ClientCancelPendingMapChange(); + void ClientCapBandwidth(int32 cap); + void ClientClearCameraLensEffects(); + void ClientCommitMapChange(); + void ClientCorrectionAsyncPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp); + void ClientEnableNetworkVoice(bool bEnable); + void ClientEndOnlineSession(); + void ClientFlushLevelStreaming(); + void ClientForceGarbageCollection(); + void ClientGameEnded(class AActor* EndGameFocus, bool bIsWinner); + void ClientGotoState(class FName NewState); + void ClientIgnoreLookInput(bool bIgnore); + void ClientIgnoreMoveInput(bool bIgnore); + void ClientMessage(const class FString& S, class FName Type, float MsgLifeTime); + void ClientMutePlayer(const struct FUniqueNetIdRepl& PlayerId); + void ClientPlayForceFeedback_Internal(class UForceFeedbackEffect* ForceFeedbackEffect, const struct FForceFeedbackParameters& Params_0); + void ClientPlaySound(class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier); + void ClientPlaySoundAtLocation(class USoundBase* Sound, const struct FVector& Location, float VolumeMultiplier, float PitchMultiplier); + void ClientPrepareMapChange(class FName LevelName, bool bFirst, bool bLast); + void ClientPrestreamTextures(class AActor* ForcedActor, float ForceDuration, bool bEnableStreaming, int32 CinematicTextureGroups); + void ClientReceiveLocalizedMessage(TSubclassOf Message, int32 SWITCH, class APlayerState* RelatedPlayerState_1, class APlayerState* RelatedPlayerState_2, class UObject* OptionalObject); + void ClientRecvServerAckFrame(int32 LastProcessedInputFrame, int32 RecvServerFrameNumber, int8 TimeDilation); + void ClientRecvServerAckFrameDebug(uint8 NumBuffered, float TargetNumBufferedCmds); + void ClientRepObjRef(class UObject* Object); + void ClientReset(); + void ClientRestart(class APawn* NewPawn); + void ClientRetryClientRestart(class APawn* NewPawn); + void ClientReturnToMainMenuWithTextReason(const class FText& ReturnReason); + void ClientSetBlockOnAsyncLoading(); + void ClientSetCameraFade(bool bEnableFading, const struct FColor& FadeColor, const struct FVector2D& FadeAlpha, float FadeTime, bool bFadeAudio, bool bHoldWhenFinished); + void ClientSetCameraMode(class FName NewCamMode); + void ClientSetCinematicMode(bool bInCinematicMode, bool bAffectsMovement, bool bAffectsTurning, bool bAffectsHUD); + void ClientSetForceMipLevelsToBeResident(class UMaterialInterface* Material, float ForceDuration, int32 CinematicTextureGroups); + void ClientSetHUD(TSubclassOf NewHUDClass); + void ClientSetSpectatorWaiting(bool bWaiting); + void ClientSetupNetworkPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp); + void ClientSetViewTarget(class AActor* A, const struct FViewTargetTransitionParams& TransitionParams); + void ClientSpawnCameraLensEffect(TSubclassOf LensEffectEmitterClass); + void ClientSpawnGenericCameraLensEffect(TSubclassOf LensEffectEmitterClass); + void ClientStartCameraShake(TSubclassOf Shake, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot); + void ClientStartCameraShakeFromSource(TSubclassOf Shake, class UCameraShakeSourceComponent* SourceComponent); + void ClientStartOnlineSession(); + void ClientStopCameraShake(TSubclassOf Shake, bool bImmediately); + void ClientStopCameraShakesFromSource(class UCameraShakeSourceComponent* SourceComponent, bool bImmediately); + void ClientStopForceFeedback(class UForceFeedbackEffect* ForceFeedbackEffect, class FName Tag); + void ClientTeamMessage(class APlayerState* SenderPlayerState, const class FString& S, class FName Type, float MsgLifeTime); + void ClientTravel(const class FString& URL, ETravelType TravelType, bool bSeamless, const struct FGuid& MapPackageGuid); + void ClientTravelInternal(const class FString& URL, ETravelType TravelType, bool bSeamless, const struct FGuid& MapPackageGuid); + void ClientUnmutePlayer(const struct FUniqueNetIdRepl& PlayerId); + void ClientUnmutePlayers(const TArray& PlayerIds); + void ClientUpdateLevelStreamingStatus(class FName PackageName, bool bNewShouldBeLoaded, bool bNewShouldBeVisible, bool bNewShouldBlockOnLoad, int32 LODIndex, const struct FNetLevelVisibilityTransactionId& TransactionId, bool bNewShouldBlockOnUnload); + void ClientUpdateMultipleLevelsStreamingStatus(const TArray& LevelStatuses); + void ClientVoiceHandshakeComplete(); + void ClientWasKicked(const class FText& KickReason); + void ConsoleKey(const struct FKey& Key); + void EnableCheats(); + void FOV(float NewFOV); + void K2_ClientPlayForceFeedback(class UForceFeedbackEffect* ForceFeedbackEffect, class FName Tag, bool bLooping, bool bIgnoreTimeDilation, bool bPlayWhilePaused); + void LocalTravel(const class FString& URL); + void OnServerStartedVisualLogger(bool bIsLogging); + void Pause(); + void PlayDynamicForceFeedback(float Intensity, float duration, bool bAffectsLeftLarge, bool bAffectsLeftSmall, bool bAffectsRightLarge, bool bAffectsRightSmall, EDynamicForceFeedbackAction Action, const struct FLatentActionInfo& LatentInfo); + void PlayHapticEffect(class UHapticFeedbackEffect_Base* HapticEffect, EControllerHand hand, float Scale, bool bLoop); + void ResetControllerDeadZones(); + void ResetControllerLightColor(); + void RestartLevel(); + void SendToConsole(const class FString& Command); + void ServerAcknowledgePossession(class APawn* P); + void ServerBlockPlayer(const struct FUniqueNetIdRepl& PlayerId); + void ServerCamera(class FName NewMode); + void ServerChangeName(const class FString& S); + void ServerCheckClientPossession(); + void ServerCheckClientPossessionReliable(); + void ServerExec(const class FString& Msg); + void ServerExecRPC(const class FString& Msg); + void ServerMutePlayer(const struct FUniqueNetIdRepl& PlayerId); + void ServerNotifyLoadedWorld(class FName WorldPackageName); + void ServerPause(); + void ServerRecvClientInputFrame(int32 RecvClientInputFrame, const TArray& Data); + void ServerRestartPlayer(); + void ServerSendLatestAsyncPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp); + void ServerSetSpectatorLocation(const struct FVector& NewLoc, const struct FRotator& NewRot); + void ServerSetSpectatorWaiting(bool bWaiting); + void ServerShortTimeout(); + void ServerToggleAILogging(); + void ServerUnblockPlayer(const struct FUniqueNetIdRepl& PlayerId); + void ServerUnmutePlayer(const struct FUniqueNetIdRepl& PlayerId); + void ServerUpdateCamera(const struct FVector_NetQuantize& CamLoc, int32 CamPitchAndYaw); + void ServerUpdateLevelVisibility(const struct FUpdateLevelVisibilityLevelInfo& LevelVisibility); + void ServerUpdateMultipleLevelsVisibility(const TArray& LevelVisibilities); + void ServerVerifyViewTarget(); + void ServerViewNextPlayer(); + void ServerViewPrevPlayer(); + void ServerViewSelf(const struct FViewTargetTransitionParams& TransitionParams); + void SetAudioListenerAttenuationOverride(class USceneComponent* AttachToComponent, const struct FVector& AttenuationLocationOVerride); + void SetAudioListenerOverride(class USceneComponent* AttachToComponent, const struct FVector& Location, const struct FRotator& Rotation); + void SetCinematicMode(bool bInCinematicMode, bool bHidePlayer, bool bAffectsHUD, bool bAffectsMovement, bool bAffectsTurning); + void SetControllerDeadZones(const float LeftDeadZone, const float RightDeadZone); + void SetControllerLightColor(const struct FColor& Color); + void SetDeprecatedInputPitchScale(float NewValue); + void SetDeprecatedInputRollScale(float NewValue); + void SetDeprecatedInputYawScale(float NewValue); + void SetDisableHaptics(bool bNewDisabled); + void SetHapticsByValue(const float Frequency, const float Amplitude, EControllerHand hand); + void SetMotionControlsEnabled(bool bEnabled); + void SetMouseCursorWidget(EMouseCursor Cursor, class UUserWidget* CursorWidget); + void SetMouseLocation(const int32 X, const int32 Y); + void SetName(const class FString& S); + void SetViewTargetWithBlend(class AActor* NewViewTarget, float BlendTime, EViewTargetBlendFunction BlendFunc, float BlendExp, bool bLockOutgoing); + void SetVirtualJoystickVisibility(bool bVisible); + void StartFire(uint8 FireModeNum); + void StopHapticEffect(EControllerHand hand); + void SwitchLevel(const class FString& URL); + void TestServerLevelVisibilityChange(const class FName PackageName, const class FName Filename); + void ToggleSpeaking(bool bInSpeaking); + + bool DeprojectMousePositionToWorld(struct FVector* WorldLocation, struct FVector* WorldDirection) const; + bool DeprojectScreenPositionToWorld(float ScreenX, float ScreenY, struct FVector* WorldLocation, struct FVector* WorldDirection) const; + float GetDeprecatedInputPitchScale() const; + float GetDeprecatedInputRollScale() const; + float GetDeprecatedInputYawScale() const; + struct FVector GetFocalLocation() const; + bool GetHitResultUnderCursor(ECollisionChannel TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const; + bool GetHitResultUnderCursorByChannel(ETraceTypeQuery TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const; + bool GetHitResultUnderCursorForObjects(const TArray& ObjectTypes, bool bTraceComplex, struct FHitResult* HitResult) const; + bool GetHitResultUnderFinger(ETouchIndex FingerIndex, ECollisionChannel TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const; + bool GetHitResultUnderFingerByChannel(ETouchIndex FingerIndex, ETraceTypeQuery TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const; + bool GetHitResultUnderFingerForObjects(ETouchIndex FingerIndex, const TArray& ObjectTypes, bool bTraceComplex, struct FHitResult* HitResult) const; + class AHUD* GetHUD() const; + float GetInputAnalogKeyState(const struct FKey& Key) const; + void GetInputAnalogStickState(EControllerAnalogStick WhichStick, float* StickX, float* StickY) const; + float GetInputKeyTimeDown(const struct FKey& Key) const; + void GetInputMotionState(struct FVector* Tilt, struct FVector* RotationRate, struct FVector* Gravity, struct FVector* Acceleration) const; + void GetInputMouseDelta(float* DeltaX, float* DeltaY) const; + void GetInputTouchState(ETouchIndex FingerIndex, float* LocationX, float* LocationY, bool* bIsCurrentlyPressed) const; + struct FVector GetInputVectorKeyState(const struct FKey& Key) const; + bool GetMousePosition(float* LocationX, float* LocationY) const; + TSubclassOf GetOverridePlayerInputClass() const; + struct FPlatformUserId GetPlatformUserId() const; + class ASpectatorPawn* GetSpectatorPawn() const; + void GetStreamingSourceLocationAndRotation(struct FVector* OutLocation, struct FRotator* OutRotation) const; + EStreamingSourcePriority GetStreamingSourcePriority() const; + void GetStreamingSourceShapes(TArray* OutShapes) const; + void GetViewportSize(int32* SizeX, int32* SizeY) const; + bool IsInputKeyDown(const struct FKey& Key) const; + bool IsStreamingSourceEnabled() const; + bool ProjectWorldLocationToScreen(const struct FVector& WorldLocation, struct FVector2D* ScreenLocation, bool bPlayerViewportRelative) const; + bool StreamingSourceShouldActivate() const; + bool StreamingSourceShouldBlockOnSlowStreaming() const; + bool WasInputKeyJustPressed(const struct FKey& Key) const; + bool WasInputKeyJustReleased(const struct FKey& Key) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerController") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerController") + } + static class APlayerController* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APlayerController; + +// Class Engine.CheatManager +// 0x0060 (0x0088 - 0x0028) +class UCheatManager final : public UObject +{ +public: + class ADebugCameraController* DebugCameraControllerRef; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DebugCameraControllerClass; // 0x0030(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x40]; // 0x0038(0x0040)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CheatManagerExtensions; // 0x0078(0x0010)(ZeroConstructor, Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + +public: + void BugIt(const class FString& ScreenShotDescription); + void BugItGo(float X, float Y, float Z, float pitch, float Yaw, float Roll); + void BugItStringCreator(const struct FVector& ViewLocation, const struct FRotator& ViewRotation, class FString* GoString, class FString* LocString); + void ChangeSize(float F); + void CheatScript(const class FString& ScriptName); + void DamageTarget(float DamageAmount); + void DebugCapsuleSweep(); + void DebugCapsuleSweepCapture(); + void DebugCapsuleSweepChannel(ECollisionChannel Channel); + void DebugCapsuleSweepClear(); + void DebugCapsuleSweepComplex(bool bTraceComplex); + void DebugCapsuleSweepPawn(); + void DebugCapsuleSweepSize(float HalfHeight, float Radius); + void DestroyAll(TSubclassOf aClass); + void DestroyAllPawnsExceptTarget(); + void DestroyPawns(TSubclassOf aClass); + void DestroyServerStatReplicator(); + void DestroyTarget(); + void DisableDebugCamera(); + void DumpChatState(); + void DumpOnlineSessionState(); + void DumpPartyState(); + void DumpVoiceMutingState(); + void EnableDebugCamera(); + void FlushLog(); + void Fly(); + void FreezeFrame(float Delay); + void Ghost(); + void God(); + void InvertMouse(); + void LogLoc(); + void OnlyLoadLevel(class FName PackageName); + void OnPlayerEndPlayed(class AActor* Player, EEndPlayReason EndPlayReason); + void PlayersOnly(); + void ReceiveEndPlay(); + void ReceiveInitCheatManager(); + void ServerToggleAILogging(); + void SetMouseSensitivityToDefault(); + void SetWorldOrigin(); + void Slomo(float NewTimeDilation); + void SpawnServerStatReplicator(); + void StreamLevelIn(class FName PackageName); + void StreamLevelOut(class FName PackageName); + void Summon(const class FString& ClassName); + void Teleport(); + void TestCollisionDistance(); + void ToggleAILogging(); + void ToggleDebugCamera(); + void ToggleServerStatReplicatorClientOverwrite(); + void ToggleServerStatReplicatorUpdateStatNet(); + void UpdateSafeArea(); + void ViewActor(class FName ActorName); + void ViewClass(TSubclassOf DesiredClass); + void ViewPlayer(const class FString& S); + void ViewSelf(); + void Walk(); + + class APlayerController* GetPlayerController() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CheatManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CheatManager") + } + static class UCheatManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCheatManager; + +// Class Engine.CheatManagerExtension +// 0x0000 (0x0028 - 0x0028) +class UCheatManagerExtension final : public UObject +{ +public: + void AddedToCheatManager(); + void RemovedFromCheatManager(); + + class APlayerController* GetPlayerController() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CheatManagerExtension") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CheatManagerExtension") + } + static class UCheatManagerExtension* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCheatManagerExtension; + +// Class Engine.Commandlet +// 0x0058 (0x0080 - 0x0028) +class UCommandlet : public UObject +{ +public: + class FString HelpDescription; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString HelpUsage; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString HelpWebLink; // 0x0048(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray HelpParamNames; // 0x0058(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray HelpParamDescriptions; // 0x0068(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 IsServer : 1; // 0x0078(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 IsClient : 1; // 0x0078(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 IsEditor : 1; // 0x0078(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 LogToConsole : 1; // 0x0078(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 ShowErrorCount : 1; // 0x0078(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 ShowProgress : 1; // 0x0078(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 FastExit : 1; // 0x0078(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 UseCommandletResultAsExitCode : 1; // 0x0078(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Commandlet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Commandlet") + } + static class UCommandlet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCommandlet; + +// Class Engine.PluginCommandlet +// 0x0020 (0x00A0 - 0x0080) +class UPluginCommandlet final : public UCommandlet +{ +public: + uint8 Pad_80[0x20]; // 0x0080(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PluginCommandlet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PluginCommandlet") + } + static class UPluginCommandlet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPluginCommandlet; + +// Class Engine.SmokeTestCommandlet +// 0x0000 (0x0080 - 0x0080) +class USmokeTestCommandlet final : public UCommandlet +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SmokeTestCommandlet") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SmokeTestCommandlet") + } + static class USmokeTestCommandlet* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USmokeTestCommandlet; + +// Class Engine.ApplicationLifecycleComponent +// 0x0090 (0x0130 - 0x00A0) +class UApplicationLifecycleComponent final : public UActorComponent +{ +public: + TMulticastInlineDelegate ApplicationWillDeactivateDelegate; // 0x00A0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationHasReactivatedDelegate; // 0x00B0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationWillEnterBackgroundDelegate; // 0x00C0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationHasEnteredForegroundDelegate; // 0x00D0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationWillTerminateDelegate; // 0x00E0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationShouldUnloadResourcesDelegate; // 0x00F0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& StartupArguments)> ApplicationReceivedStartupArgumentsDelegate; // 0x0100(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnTemperatureChangeDelegate; // 0x0110(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnLowPowerModeDelegate; // 0x0120(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ApplicationLifecycleComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ApplicationLifecycleComponent") + } + static class UApplicationLifecycleComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UApplicationLifecycleComponent; + +// Class Engine.ArrowComponent +// 0x0010 (0x0500 - 0x04F0) +class UArrowComponent final : public UPrimitiveComponent +{ +public: + struct FColor ArrowColor; // 0x04E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArrowSize; // 0x04EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArrowLength; // 0x04F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenSize; // 0x04F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsScreenSizeScaled : 1; // 0x04F8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTreatAsASprite : 1; // 0x04F8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4F9[0x7]; // 0x04F9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetArrowColor(const struct FLinearColor& NewColor); + void SetArrowFColor(const struct FColor& NewColor); + void SetArrowLength(float NewLength); + void SetArrowSize(float NewSize); + void SetIsScreenSizeScaled(bool bNewValue); + void SetScreenSize(float NewScreenSize); + void SetTreatAsASprite(bool bNewValue); + void SetUseInEditorScaling(bool bNewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ArrowComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ArrowComponent") + } + static class UArrowComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UArrowComponent; + +// Class Engine.InitialActiveSoundParams +// 0x0010 (0x0038 - 0x0028) +class UInitialActiveSoundParams final : public UObject +{ +public: + TArray AudioParams; // 0x0028(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InitialActiveSoundParams") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InitialActiveSoundParams") + } + static class UInitialActiveSoundParams* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInitialActiveSoundParams; + +// Class Engine.BillboardComponent +// 0x0020 (0x0510 - 0x04F0) +class UBillboardComponent final : public UPrimitiveComponent +{ +public: + class UTexture2D* Sprite; // 0x04E8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsScreenSizeScaled : 1; // 0x04F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4F1[0x3]; // 0x04F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ScreenSize; // 0x04F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float U; // 0x04F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UL; // 0x04FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0500(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VL; // 0x0504(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OpacityMaskRefVal; // 0x0508(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_50C[0x4]; // 0x050C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetOpacityMaskRefVal(float RefVal); + void SetSprite(class UTexture2D* NewSprite); + void SetSpriteAndUV(class UTexture2D* NewSprite, int32 NewU, int32 NewUL, int32 NewV, int32 NewVL); + void SetUV(int32 NewU, int32 NewUL, int32 NewV, int32 NewVL); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BillboardComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BillboardComponent") + } + static class UBillboardComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBillboardComponent; + +// Class Engine.SoundClass +// 0x01C0 (0x01E8 - 0x0028) +class USoundClass final : public UObject +{ +public: + struct FSoundClassProperties Properties; // 0x0028(0x0198)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + TArray ChildClasses; // 0x01C0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray PassiveSoundMixModifiers; // 0x01D0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + class USoundClass* ParentClass; // 0x01E0(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundClass") + } + static class USoundClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundClass; + +// Class Engine.BoundsCopyComponent +// 0x00A0 (0x0140 - 0x00A0) +class UBoundsCopyComponent final : public UActorComponent +{ +public: + TSoftObjectPtr BoundsSourceActor; // 0x00A0(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCollidingComponentsForSourceBounds; // 0x00C8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bKeepOwnBoundsScale; // 0x00C9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCollidingComponentsForOwnBounds; // 0x00CA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CB[0x5]; // 0x00CB(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform PostTransform; // 0x00D0(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCopyXBounds; // 0x0130(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCopyYBounds; // 0x0131(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCopyZBounds; // 0x0132(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_133[0xD]; // 0x0133(0x000D)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BoundsCopyComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BoundsCopyComponent") + } + static class UBoundsCopyComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBoundsCopyComponent; + +// Class Engine.BrushComponent +// 0x0010 (0x0500 - 0x04F0) +class UBrushComponent final : public UPrimitiveComponent +{ +public: + class UModel* Brush; // 0x04E8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBodySetup* BrushBodySetup; // 0x04F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4F8[0x8]; // 0x04F8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BrushComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BrushComponent") + } + static class UBrushComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBrushComponent; + +// Class Engine.CapsuleComponent +// 0x0000 (0x0510 - 0x0510) +class UCapsuleComponent final : public UShapeComponent +{ +public: + float CapsuleHalfHeight; // 0x0508(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float CapsuleRadius; // 0x050C(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + void SetCapsuleHalfHeight(float HalfHeight, bool bUpdateOverlaps); + void SetCapsuleRadius(float Radius, bool bUpdateOverlaps); + void SetCapsuleSize(float InRadius, float InHalfHeight, bool bUpdateOverlaps); + + float GetScaledCapsuleHalfHeight() const; + float GetScaledCapsuleHalfHeight_WithoutHemisphere() const; + float GetScaledCapsuleRadius() const; + void GetScaledCapsuleSize(float* OutRadius, float* OutHalfHeight) const; + void GetScaledCapsuleSize_WithoutHemisphere(float* OutRadius, float* OutHalfHeightWithoutHemisphere) const; + float GetShapeScale() const; + float GetUnscaledCapsuleHalfHeight() const; + float GetUnscaledCapsuleHalfHeight_WithoutHemisphere() const; + float GetUnscaledCapsuleRadius() const; + void GetUnscaledCapsuleSize(float* OutRadius, float* OutHalfHeight) const; + void GetUnscaledCapsuleSize_WithoutHemisphere(float* OutRadius, float* OutHalfHeightWithoutHemisphere) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CapsuleComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CapsuleComponent") + } + static class UCapsuleComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCapsuleComponent; + +// Class Engine.CharacterMovementComponent +// 0x0E50 (0x0FC0 - 0x0170) +#pragma pack(push, 0x1) +class alignas(0x10) UCharacterMovementComponent : public UPawnMovementComponent +{ +public: + uint8 Pad_170[0x10]; // 0x0170(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class ACharacter* CharacterOwner; // 0x0180(0x0008)(ZeroConstructor, Transient, DuplicateTransient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float GravityScale; // 0x0188(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxStepHeight; // 0x018C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JumpZVelocity; // 0x0190(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JumpOffJumpZFactor; // 0x0194(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_198[0x1C]; // 0x0198(0x001C)(Fixing Size After Last Property [ Dumper-7 ]) + float WalkableFloorAngle; // 0x01B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float WalkableFloorZ; // 0x01B8(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1BC[0x4]; // 0x01BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector GravityDirection; // 0x01C0(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1D8[0x8]; // 0x01D8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat WorldToGravityTransform; // 0x01E0(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FQuat GravityToWorldTransform; // 0x0200(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_220[0x1]; // 0x0220(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + EMovementMode MovementMode; // 0x0221(0x0001)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 CustomMovementMode; // 0x0222(0x0001)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENetworkSmoothingMode NetworkSmoothingMode; // 0x0223(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GroundFriction; // 0x0224(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_228[0x40]; // 0x0228(0x0040)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxWalkSpeed; // 0x0268(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxWalkSpeedCrouched; // 0x026C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSwimSpeed; // 0x0270(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxFlySpeed; // 0x0274(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxCustomMovementSpeed; // 0x0278(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAcceleration; // 0x027C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinAnalogWalkSpeed; // 0x0280(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingFrictionFactor; // 0x0284(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingFriction; // 0x0288(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingSubStepTime; // 0x028C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingDecelerationWalking; // 0x0290(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingDecelerationFalling; // 0x0294(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingDecelerationSwimming; // 0x0298(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrakingDecelerationFlying; // 0x029C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AirControl; // 0x02A0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AirControlBoostMultiplier; // 0x02A4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AirControlBoostVelocityThreshold; // 0x02A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FallingLateralFriction; // 0x02AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CrouchedHalfHeight; // 0x02B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Buoyancy; // 0x02B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerchRadiusThreshold; // 0x02B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerchAdditionalHeight; // 0x02BC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RotationRate; // 0x02C0(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 bUseSeparateBrakingFriction : 1; // 0x02D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDontFallBelowJumpZVelocityDuringJump : 1; // 0x02D8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyGravityWhileJumping : 1; // 0x02D8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseControllerDesiredRotation : 1; // 0x02D8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOrientRotationToMovement : 1; // 0x02D8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSweepWhileNavWalking : 1; // 0x02D8(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2D8_6 : 1; // 0x02D8(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bMovementInProgress : 1; // 0x02D8(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bEnableScopedMovementUpdates : 1; // 0x02D9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableServerDualMoveScopedMovementUpdates : 1; // 0x02D9(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceMaxAccel : 1; // 0x02D9(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRunPhysicsWithNoController : 1; // 0x02D9(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceNextFloorCheck : 1; // 0x02D9(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnTemplate, EditConst, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShrinkProxyCapsule : 1; // 0x02D9(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanWalkOffLedges : 1; // 0x02D9(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanWalkOffLedgesWhenCrouching : 1; // 0x02D9(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2DA_0 : 2; // 0x02DA(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bNetworkSkipProxyPredictionOnNetUpdate : 1; // 0x02DA(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetworkAlwaysReplicateTransformUpdateTimestamp : 1; // 0x02DA(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDeferUpdateMoveComponent : 1; // 0x02DA(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePhysicsInteraction : 1; // 0x02DA(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTouchForceScaledToMass : 1; // 0x02DA(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPushForceScaledToMass : 1; // 0x02DA(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPushForceUsingZOffset : 1; // 0x02DB(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bScalePushForceToVelocity : 1; // 0x02DB(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2DC[0x4]; // 0x02DC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USceneComponent* DeferredUpdatedMoveComponent; // 0x02E0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxOutOfWaterStepHeight; // 0x02E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutofWaterZ; // 0x02EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x02F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StandingDownwardForceScale; // 0x02F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialPushForceFactor; // 0x02F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PushForceFactor; // 0x02FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PushForcePointZOffsetFactor; // 0x0300(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TouchForceFactor; // 0x0304(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinTouchForce; // 0x0308(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxTouchForce; // 0x030C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RepulsionForce; // 0x0310(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_314[0x4]; // 0x0314(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Acceleration; // 0x0318(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FQuat LastUpdateRotation; // 0x0330(0x0020)(IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector LastUpdateLocation; // 0x0350(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector LastUpdateVelocity; // 0x0368(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ServerLastTransformUpdateTimeStamp; // 0x0380(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ServerLastClientGoodMoveAckTime; // 0x0384(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ServerLastClientAdjustmentTime; // 0x0388(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_38C[0x4]; // 0x038C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector PendingImpulseToApply; // 0x0390(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector PendingForceToApply; // 0x03A8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float AnalogInputModifier; // 0x03C0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_3C4[0xC]; // 0x03C4(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSimulationTimeStep; // 0x03D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxSimulationIterations; // 0x03D4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxJumpApexAttemptsPerSimulation; // 0x03D8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationWithGeometry; // 0x03DC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationWithGeometryAsProxy; // 0x03E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationWithPawn; // 0x03E4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationWithPawnAsProxy; // 0x03E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkSimulatedSmoothLocationTime; // 0x03EC(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkSimulatedSmoothRotationTime; // 0x03F0(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ListenServerNetworkSimulatedSmoothLocationTime; // 0x03F4(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ListenServerNetworkSimulatedSmoothRotationTime; // 0x03F8(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetProxyShrinkRadius; // 0x03FC(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetProxyShrinkHalfHeight; // 0x0400(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkMaxSmoothUpdateDistance; // 0x0404(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkNoSmoothUpdateDistance; // 0x0408(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkMinTimeBetweenClientAckGoodMoves; // 0x040C(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkMinTimeBetweenClientAdjustments; // 0x0410(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkMinTimeBetweenClientAdjustmentsLargeCorrection; // 0x0414(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NetworkLargeClientCorrectionDistance; // 0x0418(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LedgeCheckThreshold; // 0x041C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float JumpOutOfWaterPitch; // 0x0420(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_424[0x4]; // 0x0424(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FFindFloorResult CurrentFloor; // 0x0428(0x0110)(Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + EMovementMode DefaultLandMovementMode; // 0x0538(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMovementMode DefaultWaterMovementMode; // 0x0539(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMovementMode GroundMovementMode; // 0x053A(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_53B[0x9]; // 0x053B(0x0009)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMaintainHorizontalGroundVelocity : 1; // 0x0544(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImpartBaseVelocityX : 1; // 0x0544(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImpartBaseVelocityY : 1; // 0x0544(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImpartBaseVelocityZ : 1; // 0x0544(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImpartBaseAngularVelocity : 1; // 0x0544(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bJustTeleported : 1; // 0x0544(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnTemplate, Transient, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetworkUpdateReceived : 1; // 0x0544(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetworkMovementModeChanged : 1; // 0x0544(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNetworkGravityDirectionChanged : 1; // 0x0545(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreClientMovementErrorChecksAndCorrection : 1; // 0x0545(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bServerAcceptClientAuthoritativePosition : 1; // 0x0545(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNotifyApex : 1; // 0x0545(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCheatFlying : 1; // 0x0545(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWantsToCrouch : 1; // 0x0545(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCrouchMaintainsBaseLocation : 1; // 0x0545(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, DisableEditOnTemplate, EditConst, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreBaseRotation : 1; // 0x0545(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFastAttachedMove : 1; // 0x0546(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlwaysCheckFloor : 1; // 0x0546(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFlatBaseForFloorChecks : 1; // 0x0546(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPerformingJumpOff : 1; // 0x0546(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWantsToLeaveNavWalking : 1; // 0x0546(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseRVOAvoidance : 1; // 0x0546(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRequestedMoveUseAcceleration : 1; // 0x0546(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_546_7 : 1; // 0x0546(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 bWasSimulatingRootMotion : 1; // 0x0547(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowPhysicsRotationDuringAnimRootMotion : 1; // 0x0547(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + float FormerBaseVelocityDecayHalfLife; // 0x0548(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHasRequestedVelocity : 1; // 0x054C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bRequestedMoveWithMaxSpeed : 1; // 0x054C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bWasAvoidanceUpdated : 1; // 0x054C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_54C_3 : 2; // 0x054C(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bProjectNavMeshWalking : 1; // 0x054C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bProjectNavMeshOnBothWorldChannels : 1; // 0x054C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_54D[0x1F]; // 0x054D(0x001F)(Fixing Size After Last Property [ Dumper-7 ]) + float AvoidanceConsiderationRadius; // 0x056C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RequestedVelocity; // 0x0570(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LastUpdateRequestedVelocity; // 0x0588(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AvoidanceUID; // 0x05A0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNavAvoidanceMask AvoidanceGroup; // 0x05A4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FNavAvoidanceMask GroupsToAvoid; // 0x05A8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FNavAvoidanceMask GroupsToIgnore; // 0x05AC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float AvoidanceWeight; // 0x05B0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5B4[0x4]; // 0x05B4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector PendingLaunchVelocity; // 0x05B8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5D0[0x150]; // 0x05D0(0x0150)(Fixing Size After Last Property [ Dumper-7 ]) + float NavMeshProjectionInterval; // 0x0720(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavMeshProjectionTimer; // 0x0724(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavMeshProjectionInterpSpeed; // 0x0728(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavMeshProjectionHeightScaleUp; // 0x072C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavMeshProjectionHeightScaleDown; // 0x0730(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavWalkingFloorDistTolerance; // 0x0734(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBasedMovementIgnorePhysicsBase; // 0x0738(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBaseOnAttachmentRoot; // 0x0739(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStayBasedInAir; // 0x073A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_73B[0x1]; // 0x073B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float StayBasedInAirHeight; // 0x073C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_740[0x30]; // 0x0740(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCharacterMovementComponentPostPhysicsTickFunction PostPhysicsTickFunction; // 0x0770(0x0030)(NativeAccessSpecifierPublic) + uint8 Pad_7A0[0x18]; // 0x07A0(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + float MinTimeBetweenTimeStampResets; // 0x07B8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7BC[0x55C]; // 0x07BC(0x055C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRootMotionSourceGroup CurrentRootMotion; // 0x0D18(0x0048)(Transient, NativeAccessSpecifierPublic) + struct FRootMotionSourceGroup ServerCorrectionRootMotion; // 0x0D60(0x0048)(Transient, NativeAccessSpecifierPublic) + uint8 Pad_DA8[0x168]; // 0x0DA8(0x0168)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRootMotionMovementParams RootMotionParams; // 0x0F10(0x0070)(Transient, NoDestructor, NativeAccessSpecifierPublic) + struct FVector AnimRootMotionVelocity; // 0x0F80(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F98[0x20]; // 0x0F98(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddForce(const struct FVector& Force); + void AddImpulse(const struct FVector& Impulse, bool bVelocityChange); + void CalcVelocity(float DeltaTime, float Friction, bool bFluid, float BrakingDeceleration); + void CapsuleTouched(class UPrimitiveComponent* OverlappedComp, class AActor* Other, class UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const struct FHitResult& SweepResult); + void ClearAccumulatedForces(); + void DisableMovement(); + void SetAvoidanceEnabled(bool bEnable); + void SetAvoidanceGroup(int32 GroupFlags); + void SetAvoidanceGroupMask(const struct FNavAvoidanceMask& GroupMask); + void SetCrouchedHalfHeight(const float NewValue); + void SetGravityDirection(const struct FVector& GravityDir); + void SetGroupsToAvoid(int32 GroupFlags); + void SetGroupsToAvoidMask(const struct FNavAvoidanceMask& GroupMask); + void SetGroupsToIgnore(int32 GroupFlags); + void SetGroupsToIgnoreMask(const struct FNavAvoidanceMask& GroupMask); + void SetMovementMode(EMovementMode NewMovementMode, uint8 NewCustomMode); + void SetWalkableFloorAngle(float InWalkableFloorAngle); + void SetWalkableFloorZ(float InWalkableFloorZ); + + float GetAnalogInputModifier() const; + class ACharacter* GetCharacterOwner() const; + float GetCrouchedHalfHeight() const; + struct FVector GetCurrentAcceleration() const; + struct FVector GetGravityDirection() const; + struct FVector GetImpartedMovementBaseVelocity() const; + struct FVector GetLastUpdateLocation() const; + struct FVector GetLastUpdateRequestedVelocity() const; + struct FRotator GetLastUpdateRotation() const; + struct FVector GetLastUpdateVelocity() const; + float GetMaxAcceleration() const; + float GetMaxBrakingDeceleration() const; + float GetMaxJumpHeight() const; + float GetMaxJumpHeightWithJumpTime() const; + float GetMinAnalogSpeed() const; + class UPrimitiveComponent* GetMovementBase() const; + float GetPerchRadiusThreshold() const; + float GetValidPerchRadius() const; + bool HasCustomGravity() const; + bool IsWalkable(const struct FHitResult& Hit) const; + bool IsWalking() const; + void K2_ComputeFloorDist(const struct FVector& CapsuleLocation, float LineDistance, float SweepDistance, float SweepRadius, struct FFindFloorResult* FloorResult) const; + void K2_FindFloor(const struct FVector& CapsuleLocation, struct FFindFloorResult* FloorResult) const; + float K2_GetWalkableFloorAngle() const; + float K2_GetWalkableFloorZ() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CharacterMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CharacterMovementComponent") + } + static class UCharacterMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +#pragma pack(pop) +//_UCharacterMovementComponent; + +// Class Engine.DecalComponent +// 0x0070 (0x02A0 - 0x0230) +class UDecalComponent final : public USceneComponent +{ +public: + class UMaterialInterface* DecalMaterial; // 0x0230(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 SortOrder; // 0x0238(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeScreenSize; // 0x023C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeStartDelay; // 0x0240(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeDuration; // 0x0244(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeInDuration; // 0x0248(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeInStartDelay; // 0x024C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDestroyOwnerAfterFade : 1; // 0x0250(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_251[0x7]; // 0x0251(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector DecalSize; // 0x0258(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DecalColor; // 0x0270(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_280[0x20]; // 0x0280(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class UMaterialInstanceDynamic* CreateDynamicMaterialInstance(); + void SetDecalColor(const struct FLinearColor& Color); + void SetDecalMaterial(class UMaterialInterface* NewDecalMaterial); + void SetFadeIn(float StartDelay, float duration); + void SetFadeOut(float StartDelay, float duration, bool DestroyOwnerAfterFade); + void SetFadeScreenSize(float NewFadeScreenSize); + void SetSortOrder(int32 Value); + + class UMaterialInterface* GetDecalMaterial() const; + float GetFadeDuration() const; + float GetFadeInDuration() const; + float GetFadeInStartDelay() const; + float GetFadeStartDelay() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DecalComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DecalComponent") + } + static class UDecalComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDecalComponent; + +// Class Engine.DirectionalLightComponent +// 0x00D0 (0x0460 - 0x0390) +class UDirectionalLightComponent final : public ULightComponent +{ +public: + float ShadowCascadeBiasDistribution; // 0x0388(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableLightShaftOcclusion : 1; // 0x038C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_38D[0x3]; // 0x038D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float OcclusionMaskDarkness; // 0x0390(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionDepthRange; // 0x0394(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LightShaftOverrideDirection; // 0x0398(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WholeSceneDynamicShadowRadius; // 0x03B0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DynamicShadowDistanceMovableLight; // 0x03B4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DynamicShadowDistanceStationaryLight; // 0x03B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DynamicShadowCascades; // 0x03BC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CascadeDistributionExponent; // 0x03C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CascadeTransitionFraction; // 0x03C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowDistanceFadeoutFraction; // 0x03C8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseInsetShadowsForMovableObjects : 1; // 0x03CC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3CD[0x3]; // 0x03CD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 FarShadowCascadeCount; // 0x03D0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FarShadowDistance; // 0x03D4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldShadowDistance; // 0x03D8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ForwardShadingPriority; // 0x03DC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LightSourceAngle; // 0x03E0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LightSourceSoftAngle; // 0x03E4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowSourceAngleFactor; // 0x03E8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TraceDistance; // 0x03EC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUsedAsAtmosphereSunLight : 1; // 0x03F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAtmosphereSunLight : 1; // 0x03F0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3F1[0x3]; // 0x03F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 AtmosphereSunLightIndex; // 0x03F4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor AtmosphereSunDiskColorScale; // 0x03F8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPerPixelAtmosphereTransmittance : 1; // 0x0408(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowsOnClouds : 1; // 0x0408(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowsOnAtmosphere : 1; // 0x0408(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastCloudShadows : 1; // 0x0408(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_409[0x3]; // 0x0409(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CloudShadowStrength; // 0x040C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowOnAtmosphereStrength; // 0x0410(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowOnSurfaceStrength; // 0x0414(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowDepthBias; // 0x0418(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowExtent; // 0x041C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowMapResolutionScale; // 0x0420(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CloudShadowRaySampleCountScale; // 0x0424(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor CloudScatteredLuminanceScale; // 0x0428(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightmassDirectionalLightSettings LightmassSettings; // 0x0438(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 bCastModulatedShadows : 1; // 0x0448(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_449[0x3]; // 0x0449(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor ModulatedShadowColor; // 0x044C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowAmount; // 0x0450(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_454[0xC]; // 0x0454(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetAtmosphereSunDiskColorScale(const struct FLinearColor& NewValue); + void SetAtmosphereSunLight(bool bNewValue); + void SetAtmosphereSunLightIndex(int32 NewValue); + void SetCascadeDistributionExponent(float NewValue); + void SetCascadeTransitionFraction(float NewValue); + void SetDynamicShadowCascades(int32 NewValue); + void SetDynamicShadowDistanceMovableLight(float NewValue); + void SetDynamicShadowDistanceStationaryLight(float NewValue); + void SetEnableLightShaftOcclusion(bool bNewValue); + void SetForwardShadingPriority(int32 NewValue); + void SetLightShaftOverrideDirection(const struct FVector& NewValue); + void SetLightSourceAngle(float NewValue); + void SetLightSourceSoftAngle(float NewValue); + void SetOcclusionDepthRange(float NewValue); + void SetOcclusionMaskDarkness(float NewValue); + void SetShadowAmount(float NewValue); + void SetShadowCascadeBiasDistribution(float NewValue); + void SetShadowDistanceFadeoutFraction(float NewValue); + void SetShadowSourceAngleFactor(float NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DirectionalLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DirectionalLightComponent") + } + static class UDirectionalLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDirectionalLightComponent; + +// Class Engine.DrawFrustumComponent +// 0x0020 (0x0510 - 0x04F0) +class UDrawFrustumComponent final : public UPrimitiveComponent +{ +public: + bool bFrustumEnabled; // 0x04E8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4E9[0x3]; // 0x04E9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor FrustumColor; // 0x04EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrustumAngle; // 0x04F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrustumAspectRatio; // 0x04F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrustumStartDist; // 0x04F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrustumEndDist; // 0x04FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* Texture; // 0x0500(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_508[0x8]; // 0x0508(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DrawFrustumComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DrawFrustumComponent") + } + static class UDrawFrustumComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDrawFrustumComponent; + +// Class Engine.ForceFeedbackComponent +// 0x00F0 (0x0320 - 0x0230) +class UForceFeedbackComponent final : public USceneComponent +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0230(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAutoDestroy : 1; // 0x0238(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStopWhenOwnerDestroyed : 1; // 0x0238(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLooping : 1; // 0x0238(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreTimeDilation : 1; // 0x0238(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideAttenuation : 1; // 0x0238(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_239[0x3]; // 0x0239(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float IntensityMultiplier; // 0x023C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UForceFeedbackAttenuation* AttenuationSettings; // 0x0240(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FForceFeedbackAttenuationSettings AttenuationOverrides; // 0x0248(0x00C0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnForceFeedbackFinished; // 0x0308(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_318[0x8]; // 0x0318(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AdjustAttenuation(const struct FForceFeedbackAttenuationSettings& InAttenuationSettings); + void Play(float StartTime); + void SetForceFeedbackEffect(class UForceFeedbackEffect* NewForceFeedbackEffect); + void SetIntensityMultiplier(float NewIntensityMultiplier); + void Stop(); + + bool BP_GetAttenuationSettingsToApply(struct FForceFeedbackAttenuationSettings* OutAttenuationSettings) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ForceFeedbackComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ForceFeedbackComponent") + } + static class UForceFeedbackComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UForceFeedbackComponent; + +// Class Engine.VirtualTexture2D +// 0x0010 (0x0160 - 0x0150) +class UVirtualTexture2D final : public UTexture2D +{ +public: + struct FVirtualTextureBuildSettings Settings; // 0x0150(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + bool bContinuousUpdate; // 0x0158(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSinglePhysicalSpace; // 0x0159(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15A[0x6]; // 0x015A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VirtualTexture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VirtualTexture2D") + } + static class UVirtualTexture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVirtualTexture2D; + +// Class Engine.HeterogeneousVolumeComponent +// 0x00B0 (0x05D0 - 0x0520) +class UHeterogeneousVolumeComponent final : public UMeshComponent +{ +public: + struct FIntVector VolumeResolution; // 0x0518(0x000C)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_524[0xC]; // 0x0524(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform FrameTransform; // 0x0530(0x0060)(Edit, BlueprintVisible, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Frame; // 0x0590(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrameRate; // 0x0594(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartFrame; // 0x0598(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndFrame; // 0x059C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPlaying : 1; // 0x05A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLooping : 1; // 0x05A0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5A1[0x3]; // 0x05A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StreamingMipBias; // 0x05A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIssueBlockingRequests : 1; // 0x05A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPivotAtCentroid : 1; // 0x05A8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5A9[0x3]; // 0x05A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StepFactor; // 0x05AC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowStepFactor; // 0x05B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowBiasFactor; // 0x05B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LightingDownsampleFactor; // 0x05B8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5BC[0x4]; // 0x05BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInstanceDynamic* MaterialInstanceDynamic; // 0x05C0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C8[0x8]; // 0x05C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Play(); + void SetEndFrame(float NewValue); + void SetFrame(float NewValue); + void SetFrameRate(float NewValue); + void SetLooping(bool NewValue); + void SetPlaying(bool NewValue); + void SetStartFrame(float NewValue); + void SetStreamingMipBias(int32 NewValue); + void SetVolumeResolution(const struct FIntVector& NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HeterogeneousVolumeComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HeterogeneousVolumeComponent") + } + static class UHeterogeneousVolumeComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHeterogeneousVolumeComponent; + +// Class Engine.HeterogeneousVolume +// 0x0008 (0x02B0 - 0x02A8) +class AHeterogeneousVolume final : public AInfo +{ +public: + class UHeterogeneousVolumeComponent* HeterogeneousVolumeComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HeterogeneousVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HeterogeneousVolume") + } + static class AHeterogeneousVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AHeterogeneousVolume; + +// Class Engine.InterpToMovementComponent +// 0x00B8 (0x01C0 - 0x0108) +class UInterpToMovementComponent final : public UMovementComponent +{ +public: + float duration; // 0x0108(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPauseOnImpact : 1; // 0x010C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_10D[0x3]; // 0x010D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bSweep; // 0x0110(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETeleportType TeleportType; // 0x0111(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterpToBehaviourType BehaviourType; // 0x0112(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCheckIfStillInWorld; // 0x0113(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bForceSubStepping : 1; // 0x0114(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_115[0x3]; // 0x0115(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnInterpToReverse; // 0x0118(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnInterpToStop; // 0x0128(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnWaitBeginDelegate; // 0x0138(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnWaitEndDelegate; // 0x0148(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnResetDelegate; // 0x0158(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + float MaxSimulationTimeStep; // 0x0168(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpeedMultiplier; // 0x016C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxSimulationIterations; // 0x0170(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_174[0x4]; // 0x0174(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ControlPoints; // 0x0178(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_188[0x38]; // 0x0188(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddControlPointPosition(const struct FVector& Pos, bool bPositionIsRelative); + void FinaliseControlPoints(); + void ResetControlPoints(); + void RestartMovement(float InitialDirection); + void StopSimulating(const struct FHitResult& HitResult); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InterpToMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InterpToMovementComponent") + } + static class UInterpToMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInterpToMovementComponent; + +// Class Engine.LineBatchComponent +// 0x0040 (0x0530 - 0x04F0) +class ULineBatchComponent final : public UPrimitiveComponent +{ +public: + uint8 Pad_4E8[0x48]; // 0x04E8(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LineBatchComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LineBatchComponent") + } + static class ULineBatchComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULineBatchComponent; + +// Class Engine.LocalFogVolumeComponent +// 0x0040 (0x0270 - 0x0230) +class ULocalFogVolumeComponent final : public USceneComponent +{ +public: + float RadialFogExtinction; // 0x0230(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HeightFogExtinction; // 0x0234(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HeightFogFalloff; // 0x0238(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HeightFogOffset; // 0x023C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogPhaseG; // 0x0240(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FogAlbedo; // 0x0244(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FogEmissive; // 0x0254(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FogSortPriority; // 0x0264(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_268[0x8]; // 0x0268(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetFogAlbedo(const struct FLinearColor& NewValue); + void SetFogEmissive(const struct FLinearColor& NewValue); + void SetFogPhaseG(float NewValue); + void SetHeightFogExtinction(float NewValue); + void SetHeightFogFalloff(float NewValue); + void SetHeightFogOffset(float NewValue); + void SetRadialFogExtinction(float NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalFogVolumeComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalFogVolumeComponent") + } + static class ULocalFogVolumeComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULocalFogVolumeComponent; + +// Class Engine.MaterialBillboardComponent +// 0x0010 (0x0500 - 0x04F0) +class UMaterialBillboardComponent final : public UPrimitiveComponent +{ +public: + TArray Elements; // 0x04E8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_4F8[0x8]; // 0x04F8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddElement(class UMaterialInterface* Material, class UCurveFloat* DistanceToOpacityCurve, bool bSizeIsInScreenSpace, float BaseSizeX, float BaseSizeY, class UCurveFloat* DistanceToSizeCurve); + void SetElements(const TArray& NewElements); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialBillboardComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialBillboardComponent") + } + static class UMaterialBillboardComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialBillboardComponent; + +// Class Engine.ModelComponent +// 0x0040 (0x0530 - 0x04F0) +class UModelComponent final : public UPrimitiveComponent +{ +public: + uint8 Pad_4E8[0x18]; // 0x04E8(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class UBodySetup* ModelBodySetup; // 0x0500(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_508[0x28]; // 0x0508(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ModelComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ModelComponent") + } + static class UModelComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UModelComponent; + +// Class Engine.PlatformEventsComponent +// 0x0020 (0x00C0 - 0x00A0) +class UPlatformEventsComponent final : public UActorComponent +{ +public: + TMulticastInlineDelegate PlatformChangedToLaptopModeDelegate; // 0x00A0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate PlatformChangedToTabletModeDelegate; // 0x00B0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + bool IsInLaptopMode(); + bool IsInTabletMode(); + bool SupportsConvertibleLaptops(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformEventsComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformEventsComponent") + } + static class UPlatformEventsComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlatformEventsComponent; + +// Class Engine.PointLightComponent +// 0x0010 (0x03C0 - 0x03B0) +class UPointLightComponent : public ULocalLightComponent +{ +public: + uint8 bUseInverseSquaredFalloff : 1; // 0x03A8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3A9[0x3]; // 0x03A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LightFalloffExponent; // 0x03AC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceRadius; // 0x03B0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SoftSourceRadius; // 0x03B4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceLength; // 0x03B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3BC[0x4]; // 0x03BC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetInverseExposureBlend(float NewInverseExposureBlend); + void SetLightFalloffExponent(float NewLightFalloffExponent); + void SetSoftSourceRadius(float bNewValue); + void SetSourceLength(float NewValue); + void SetSourceRadius(float bNewValue); + void SetUseInverseSquaredFalloff(bool bNewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PointLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PointLightComponent") + } + static class UPointLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPointLightComponent; + +// Class Engine.PoseableMeshComponent +// 0x0160 (0x09F0 - 0x0890) +class UPoseableMeshComponent final : public USkinnedMeshComponent +{ +public: + uint8 Pad_890[0x160]; // 0x0890(0x0160)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void CopyPoseFromSkeletalComponent(class USkeletalMeshComponent* InComponentToCopy); + struct FVector GetBoneLocationByName(class FName BoneName, EBoneSpaces BoneSpace); + struct FRotator GetBoneRotationByName(class FName BoneName, EBoneSpaces BoneSpace); + struct FVector GetBoneScaleByName(class FName BoneName, EBoneSpaces BoneSpace); + struct FTransform GetBoneTransformByName(class FName BoneName, EBoneSpaces BoneSpace); + void ResetBoneTransformByName(class FName BoneName); + void SetBoneLocationByName(class FName BoneName, const struct FVector& InLocation, EBoneSpaces BoneSpace); + void SetBoneRotationByName(class FName BoneName, const struct FRotator& InRotation, EBoneSpaces BoneSpace); + void SetBoneScaleByName(class FName BoneName, const struct FVector& InScale3D, EBoneSpaces BoneSpace); + void SetBoneTransformByName(class FName BoneName, const struct FTransform& InTransform, EBoneSpaces BoneSpace); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseableMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseableMeshComponent") + } + static class UPoseableMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseableMeshComponent; + +// Class Engine.RectLightComponent +// 0x0020 (0x03D0 - 0x03B0) +class URectLightComponent final : public ULocalLightComponent +{ +public: + float SourceWidth; // 0x03A8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceHeight; // 0x03AC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BarnDoorAngle; // 0x03B0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BarnDoorLength; // 0x03B4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LightFunctionConeAngle; // 0x03B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3BC[0x4]; // 0x03BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture* SourceTexture; // 0x03C0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C8[0x8]; // 0x03C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetBarnDoorAngle(float NewValue); + void SetBarnDoorLength(float NewValue); + void SetSourceHeight(float NewValue); + void SetSourceTexture(class UTexture* NewValue); + void SetSourceWidth(float NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RectLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RectLightComponent") + } + static class URectLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URectLightComponent; + +// Class Engine.RotatingMovementComponent +// 0x0038 (0x0140 - 0x0108) +class URotatingMovementComponent final : public UMovementComponent +{ +public: + struct FRotator RotationRate; // 0x0108(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector PivotTranslation; // 0x0120(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRotationInLocalSpace : 1; // 0x0138(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_139[0x7]; // 0x0139(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RotatingMovementComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RotatingMovementComponent") + } + static class URotatingMovementComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URotatingMovementComponent; + +// Class Engine.SkyAtmosphere +// 0x0008 (0x02B0 - 0x02A8) +class ASkyAtmosphere final : public AInfo +{ +public: + class USkyAtmosphereComponent* SkyAtmosphereComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkyAtmosphere") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkyAtmosphere") + } + static class ASkyAtmosphere* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASkyAtmosphere; + +// Class Engine.SplineMetadata +// 0x0000 (0x0028 - 0x0028) +class USplineMetadata : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SplineMetadata") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SplineMetadata") + } + static class USplineMetadata* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USplineMetadata; + +// Class Engine.SplineComponent +// 0x0090 (0x0580 - 0x04F0) +class USplineComponent : public UPrimitiveComponent +{ +public: + struct FSplineCurves SplineCurves; // 0x04E8(0x0068)(Edit, Net, NativeAccessSpecifierPublic) + int32 ReparamStepsPerSegment; // 0x0550(0x0004)(Edit, Net, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0554(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStationaryEndpoints; // 0x0558(0x0001)(Edit, BlueprintVisible, Net, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSplineHasBeenEdited; // 0x0559(0x0001)(Edit, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bModifiedByConstructionScript; // 0x055A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInputSplinePointsToConstructionScript; // 0x055B(0x0001)(Edit, BlueprintVisible, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDrawDebug; // 0x055C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClosedLoop; // 0x055D(0x0001)(Edit, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bLoopPositionOverride; // 0x055E(0x0001)(Edit, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_55F[0x1]; // 0x055F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float LoopPosition; // 0x0560(0x0004)(Edit, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_564[0x4]; // 0x0564(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector DefaultUpVector; // 0x0568(0x0018)(Edit, BlueprintVisible, Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + void AddPoint(const struct FSplinePoint& Point, bool bUpdateSpline); + void AddPoints(const TArray& Points, bool bUpdateSpline); + void AddSplineLocalPoint(const struct FVector& position); + void AddSplinePoint(const struct FVector& position, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void AddSplinePointAtIndex(const struct FVector& position, int32 Index_0, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void AddSplineWorldPoint(const struct FVector& position); + void ClearSplinePoints(bool bUpdateSpline); + void RemoveSplinePoint(int32 Index_0, bool bUpdateSpline); + void SetClosedLoop(bool bInClosedLoop, bool bUpdateSpline); + void SetClosedLoopAtPosition(bool bInClosedLoop, float Key, bool bUpdateSpline); + void SetDefaultUpVector(const struct FVector& UpVector, ESplineCoordinateSpace CoordinateSpace); + void SetDrawDebug(bool bShow); + void SetLocationAtSplinePoint(int32 PointIndex, const struct FVector& InLocation, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetOverrideConstructionScript(bool InOverride); + void SetRotationAtSplinePoint(int32 PointIndex, const struct FRotator& InRotation, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetScaleAtSplinePoint(int32 PointIndex, const struct FVector& InScaleVector, bool bUpdateSpline); + void SetSelectedSplineSegmentColor(const struct FLinearColor& SegmentColor); + void SetSplineLocalPoints(const TArray& Points); + void SetSplinePoints(const TArray& Points, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetSplinePointType(int32 PointIndex, ESplinePointType Type, bool bUpdateSpline); + void SetSplineWorldPoints(const TArray& Points); + void SetTangentAtSplinePoint(int32 PointIndex, const struct FVector& InTangent, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetTangentColor(const struct FLinearColor& TangentColor); + void SetTangentsAtSplinePoint(int32 PointIndex, const struct FVector& InArriveTangent, const struct FVector& InLeaveTangent, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetUnselectedSplineSegmentColor(const struct FLinearColor& SegmentColor); + void SetUpVectorAtSplinePoint(int32 PointIndex, const struct FVector& InUpVector, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline); + void SetWorldLocationAtSplinePoint(int32 PointIndex, const struct FVector& InLocation); + void UpdateSpline(); + + bool ConvertSplineSegmentToPolyLine(int32 SplinePointStartIndex, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const; + bool ConvertSplineToPolyLine(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const; + bool ConvertSplineToPolyline_InDistanceRange(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, float StartDistAlongSpline, float EndDistAlongSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline, bool bAllowWrappingIfClosed) const; + bool ConvertSplineToPolyline_InTimeRange(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, float StartTimeAlongSpline, float EndTimeAlongSpline, bool bUseConstantVelocity, TArray* OutPoints, TArray* OutDistancesAlongSpline, bool bAllowWrappingIfClosed) const; + bool ConvertSplineToPolyLineWithDistances(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline) const; + bool DivideSplineIntoPolylineRecursive(float StartDistanceAlongSpline, float EndDistanceAlongSpline, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const; + bool DivideSplineIntoPolylineRecursiveWithDistances(float StartDistanceAlongSpline, float EndDistanceAlongSpline, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline) const; + struct FVector FindDirectionClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + float FindInputKeyClosestToWorldLocation(const struct FVector& WorldLocation) const; + struct FVector FindLocationClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector FindRightVectorClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + float FindRollClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + struct FRotator FindRotationClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector FindScaleClosestToWorldLocation(const struct FVector& WorldLocation) const; + struct FVector FindTangentClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + struct FTransform FindTransformClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const; + struct FVector FindUpVectorClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetArriveTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetDefaultUpVector(ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetDirectionAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetDirectionAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetDirectionAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetDirectionAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + float GetDistanceAlongSplineAtLocation(const struct FVector& InLocation, ESplineCoordinateSpace CoordinateSpace) const; + float GetDistanceAlongSplineAtSplineInputKey(float InKey) const; + float GetDistanceAlongSplineAtSplinePoint(int32 PointIndex) const; + float GetFloatPropertyAtSplineInputKey(float InKey, class FName PropertyName) const; + float GetFloatPropertyAtSplinePoint(int32 Index_0, class FName PropertyName) const; + float GetInputKeyAtDistanceAlongSpline(float Distance) const; + float GetInputKeyValueAtDistanceAlongSpline(float Distance) const; + float GetInputKeyValueAtSplinePoint(int32 PointIndex) const; + struct FVector GetLeaveTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + void GetLocalLocationAndTangentAtSplinePoint(int32 PointIndex, struct FVector* LocalLocation, struct FVector* LocalTangent) const; + void GetLocationAndTangentAtSplinePoint(int32 PointIndex, struct FVector* Location, struct FVector* Tangent, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetLocationAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetLocationAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetLocationAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetLocationAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + int32 GetNumberOfSplinePoints() const; + int32 GetNumberOfSplineSegments() const; + struct FVector GetRightVectorAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetRightVectorAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetRightVectorAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetRightVectorAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + float GetRollAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + float GetRollAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + float GetRollAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + float GetRollAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + struct FRotator GetRotationAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FRotator GetRotationAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FRotator GetRotationAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FRotator GetRotationAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + struct FVector GetScaleAtDistanceAlongSpline(float Distance) const; + struct FVector GetScaleAtSplineInputKey(float InKey) const; + struct FVector GetScaleAtSplinePoint(int32 PointIndex) const; + struct FVector GetScaleAtTime(float Time, bool bUseConstantVelocity) const; + float GetSplineLength() const; + struct FSplinePoint GetSplinePointAt(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + ESplinePointType GetSplinePointType(int32 PointIndex) const; + struct FVector GetTangentAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetTangentAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetTangentAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + float GetTimeAtDistanceAlongSpline(float Distance) const; + struct FTransform GetTransformAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const; + struct FTransform GetTransformAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const; + struct FTransform GetTransformAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const; + struct FTransform GetTransformAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity, bool bUseScale) const; + struct FVector GetUpVectorAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetUpVectorAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetUpVectorAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const; + struct FVector GetUpVectorAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const; + struct FVector GetVectorPropertyAtSplineInputKey(float InKey, class FName PropertyName) const; + struct FVector GetVectorPropertyAtSplinePoint(int32 Index_0, class FName PropertyName) const; + struct FVector GetWorldDirectionAtDistanceAlongSpline(float Distance) const; + struct FVector GetWorldDirectionAtTime(float Time, bool bUseConstantVelocity) const; + struct FVector GetWorldLocationAtDistanceAlongSpline(float Distance) const; + struct FVector GetWorldLocationAtSplinePoint(int32 PointIndex) const; + struct FVector GetWorldLocationAtTime(float Time, bool bUseConstantVelocity) const; + struct FRotator GetWorldRotationAtDistanceAlongSpline(float Distance) const; + struct FRotator GetWorldRotationAtTime(float Time, bool bUseConstantVelocity) const; + struct FVector GetWorldTangentAtDistanceAlongSpline(float Distance) const; + bool IsClosedLoop() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SplineComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SplineComponent") + } + static class USplineComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USplineComponent; + +// Class Engine.SpotLightComponent +// 0x0010 (0x03D0 - 0x03C0) +class USpotLightComponent final : public UPointLightComponent +{ +public: + float InnerConeAngle; // 0x03C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterConeAngle; // 0x03C4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C8[0x8]; // 0x03C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetInnerConeAngle(float NewInnerConeAngle); + void SetOuterConeAngle(float NewOuterConeAngle); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpotLightComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpotLightComponent") + } + static class USpotLightComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USpotLightComponent; + +// Class Engine.VolumetricCloudComponent +// 0x0080 (0x02B0 - 0x0230) +class UVolumetricCloudComponent final : public USceneComponent +{ +public: + float LayerBottomAltitude; // 0x0230(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LayerHeight; // 0x0234(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TracingStartMaxDistance; // 0x0238(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TracingStartDistanceFromCamera; // 0x023C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVolumetricCloudTracingMaxDistanceMode TracingMaxDistanceMode; // 0x0240(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_241[0x3]; // 0x0241(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TracingMaxDistance; // 0x0244(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PlanetRadius; // 0x0248(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor GroundAlbedo; // 0x024C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0250(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUsePerSampleAtmosphericLightTransmittance : 1; // 0x0258(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_259[0x3]; // 0x0259(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SkyLightCloudBottomOcclusion; // 0x025C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewSampleCountScale; // 0x0260(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReflectionViewSampleCountScaleValue; // 0x0264(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReflectionViewSampleCountScale; // 0x0268(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReflectionSampleCountScale; // 0x026C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowViewSampleCountScale; // 0x0270(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowReflectionViewSampleCountScaleValue; // 0x0274(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowReflectionViewSampleCountScale; // 0x0278(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowReflectionSampleCountScale; // 0x027C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowTracingDistance; // 0x0280(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StopTracingTransmittanceThreshold; // 0x0284(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPespectiveRayleighScatteringStartDistance; // 0x0288(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPespectiveRayleighScatteringFadeDistance; // 0x028C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPespectiveMieScatteringStartDistance; // 0x0290(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AerialPespectiveMieScatteringFadeDistance; // 0x0294(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHoldout : 1; // 0x0298(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderInMainPass : 1; // 0x0298(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_299[0x17]; // 0x0299(0x0017)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetbUsePerSampleAtmosphericLightTransmittance(bool NewValue); + void SetGroundAlbedo(const struct FColor& NewValue); + void SetHoldout(bool bNewHoldout); + void SetLayerBottomAltitude(float NewValue); + void SetLayerHeight(float NewValue); + void SetMaterial(class UMaterialInterface* NewValue); + void SetPlanetRadius(float NewValue); + void SetReflectionSampleCountScale(float NewValue); + void SetReflectionViewSampleCountScale(float NewValue); + void SetRenderInMainPass(bool bValue); + void SetShadowReflectionSampleCountScale(float NewValue); + void SetShadowReflectionViewSampleCountScale(float NewValue); + void SetShadowTracingDistance(float NewValue); + void SetShadowViewSampleCountScale(float NewValue); + void SetSkyLightCloudBottomOcclusion(float NewValue); + void SetStopTracingTransmittanceThreshold(float NewValue); + void SetTracingMaxDistance(float NewValue); + void SetTracingStartDistanceFromCamera(float NewValue); + void SetTracingStartMaxDistance(float NewValue); + void SetViewSampleCountScale(float NewValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VolumetricCloudComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VolumetricCloudComponent") + } + static class UVolumetricCloudComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVolumetricCloudComponent; + +// Class Engine.CurveTable +// 0x0078 (0x00A0 - 0x0028) +class UCurveTable : public UObject +{ +public: + uint8 Pad_28[0x78]; // 0x0028(0x0078)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveTable") + } + static class UCurveTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveTable; + +// Class Engine.CompositeCurveTable +// 0x0028 (0x00C8 - 0x00A0) +class UCompositeCurveTable final : public UCurveTable +{ +public: + TArray ParentTables; // 0x00A0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray OldParentTables; // 0x00B0(0x0010)(ZeroConstructor, Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_C0[0x8]; // 0x00C0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CompositeCurveTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CompositeCurveTable") + } + static class UCompositeCurveTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCompositeCurveTable; + +// Class Engine.ConstraintInstanceBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UConstraintInstanceBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void CopyParams(struct FConstraintInstanceAccessor& Accessor, struct FConstraintInstanceAccessor& SourceAccessor, bool bKeepPosition, bool bKeepRotation); + static void GetAngularBreakable(struct FConstraintInstanceAccessor& Accessor, bool* bAngularBreakable, float* AngularBreakThreshold); + static void GetAngularDriveMode(struct FConstraintInstanceAccessor& Accessor, EAngularDriveMode* OutDriveMode); + static void GetAngularDriveParams(struct FConstraintInstanceAccessor& Accessor, float* OutPositionStrength, float* OutVelocityStrength, float* OutForceLimit); + static void GetAngularLimits(struct FConstraintInstanceAccessor& Accessor, EAngularConstraintMotion* Swing1MotionType, float* Swing1LimitAngle, EAngularConstraintMotion* Swing2MotionType, float* Swing2LimitAngle, EAngularConstraintMotion* TwistMotionType, float* TwistLimitAngle); + static void GetAngularOrientationTarget(struct FConstraintInstanceAccessor& Accessor, struct FRotator* OutPosTarget); + static void GetAngularPlasticity(struct FConstraintInstanceAccessor& Accessor, bool* bAngularPlasticity, float* AngularPlasticityThreshold); + static void GetAngularSoftSwingLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftSwingLimit, float* SwingLimitStiffness, float* SwingLimitDamping, float* SwingLimitRestitution, float* SwingLimitContactDistance); + static void GetAngularSoftTwistLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftTwistLimit, float* TwistLimitStiffness, float* TwistLimitDamping, float* TwistLimitRestitution, float* TwistLimitContactDistance); + static void GetAngularVelocityDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableSLERP); + static void GetAngularVelocityDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableTwistDrive, bool* bOutEnableSwingDrive); + static void GetAngularVelocityTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutVelTarget); + static void GetAttachedBodyNames(struct FConstraintInstanceAccessor& Accessor, class FName* ParentBody, class FName* ChildBody); + static void GetContactTransferScale(struct FConstraintInstanceAccessor& Accessor, float* ContactTransferScale); + static bool GetDisableCollsion(struct FConstraintInstanceAccessor& Accessor); + static void GetLinearBreakable(struct FConstraintInstanceAccessor& Accessor, bool* bLinearBreakable, float* LinearBreakThreshold); + static void GetLinearDriveParams(struct FConstraintInstanceAccessor& Accessor, float* OutPositionStrength, float* OutVelocityStrength, float* OutForceLimit); + static void GetLinearLimits(struct FConstraintInstanceAccessor& Accessor, ELinearConstraintMotion* XMotion, ELinearConstraintMotion* YMotion, ELinearConstraintMotion* ZMotion, float* Limit); + static void GetLinearPlasticity(struct FConstraintInstanceAccessor& Accessor, bool* bLinearPlasticity, float* LinearPlasticityThreshold, EConstraintPlasticityType* PlasticityType); + static void GetLinearPositionDrive(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableDriveX, bool* bOutEnableDriveY, bool* bOutEnableDriveZ); + static void GetLinearPositionTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutPosTarget); + static void GetLinearSoftLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftLinearLimit, float* LinearLimitStiffness, float* LinearLimitDamping, float* LinearLimitRestitution, float* LinearLimitContactDistance); + static void GetLinearVelocityDrive(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableDriveX, bool* bOutEnableDriveY, bool* bOutEnableDriveZ); + static void GetLinearVelocityTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutVelTarget); + static bool GetMassConditioningEnabled(struct FConstraintInstanceAccessor& Accessor); + static void GetOrientationDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableSLERP); + static void GetOrientationDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableTwistDrive, bool* bOutEnableSwingDrive); + static bool GetParentDominates(struct FConstraintInstanceAccessor& Accessor); + static void GetProjectionParams(struct FConstraintInstanceAccessor& Accessor, bool* bEnableProjection, float* ProjectionLinearAlpha, float* ProjectionAngularAlpha); + static void SetAngularBreakable(struct FConstraintInstanceAccessor& Accessor, bool bAngularBreakable, float AngularBreakThreshold); + static void SetAngularDriveMode(struct FConstraintInstanceAccessor& Accessor, EAngularDriveMode DriveMode); + static void SetAngularDriveParams(struct FConstraintInstanceAccessor& Accessor, float PositionStrength, float VelocityStrength, float InForceLimit); + static void SetAngularLimits(struct FConstraintInstanceAccessor& Accessor, EAngularConstraintMotion Swing1MotionType, float Swing1LimitAngle, EAngularConstraintMotion Swing2MotionType, float Swing2LimitAngle, EAngularConstraintMotion TwistMotionType, float TwistLimitAngle); + static void SetAngularOrientationTarget(struct FConstraintInstanceAccessor& Accessor, const struct FRotator& InPosTarget); + static void SetAngularPlasticity(struct FConstraintInstanceAccessor& Accessor, bool bAngularPlasticity, float AngularPlasticityThreshold); + static void SetAngularSoftSwingLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftSwingLimit, float SwingLimitStiffness, float SwingLimitDamping, float SwingLimitRestitution, float SwingLimitContactDistance); + static void SetAngularSoftTwistLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftTwistLimit, float TwistLimitStiffness, float TwistLimitDamping, float TwistLimitRestitution, float TwistLimitContactDistance); + static void SetAngularVelocityDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool bEnableSLERP); + static void SetAngularVelocityDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool bEnableTwistDrive, bool bEnableSwingDrive); + static void SetAngularVelocityTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InVelTarget); + static void SetContactTransferScale(struct FConstraintInstanceAccessor& Accessor, float ContactTransferScale); + static void SetDisableCollision(struct FConstraintInstanceAccessor& Accessor, bool bDisableCollision); + static void SetLinearBreakable(struct FConstraintInstanceAccessor& Accessor, bool bLinearBreakable, float LinearBreakThreshold); + static void SetLinearDriveParams(struct FConstraintInstanceAccessor& Accessor, float PositionStrength, float VelocityStrength, float InForceLimit); + static void SetLinearLimits(struct FConstraintInstanceAccessor& Accessor, ELinearConstraintMotion XMotion, ELinearConstraintMotion YMotion, ELinearConstraintMotion ZMotion, float Limit); + static void SetLinearPlasticity(struct FConstraintInstanceAccessor& Accessor, bool bLinearPlasticity, float LinearPlasticityThreshold, EConstraintPlasticityType PlasticityType); + static void SetLinearPositionDrive(struct FConstraintInstanceAccessor& Accessor, bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ); + static void SetLinearPositionTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InPosTarget); + static void SetLinearSoftLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftLinearLimit, float LinearLimitStiffness, float LinearLimitDamping, float LinearLimitRestitution, float LinearLimitContactDistance); + static void SetLinearVelocityDrive(struct FConstraintInstanceAccessor& Accessor, bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ); + static void SetLinearVelocityTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InVelTarget); + static void SetMassConditioningEnabled(struct FConstraintInstanceAccessor& Accessor, bool bEnableMassConditioning); + static void SetOrientationDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool bEnableSLERP); + static void SetOrientationDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool bEnableTwistDrive, bool bEnableSwingDrive); + static void SetParentDominates(struct FConstraintInstanceAccessor& Accessor, bool bParentDominates); + static void SetProjectionParams(struct FConstraintInstanceAccessor& Accessor, bool bEnableProjection, float ProjectionLinearAlpha, float ProjectionAngularAlpha); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ConstraintInstanceBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ConstraintInstanceBlueprintLibrary") + } + static class UConstraintInstanceBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UConstraintInstanceBlueprintLibrary; + +// Class Engine.GarbageCollectionSettings +// 0x0020 (0x0058 - 0x0038) +class UGarbageCollectionSettings final : public UDeveloperSettings +{ +public: + float TimeBetweenPurgingPendingKillObjects; // 0x0038(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 FlushStreamingOnGC : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 AllowParallelGC : 1; // 0x003C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 IncrementalBeginDestroyEnabled : 1; // 0x003C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 CreateGCClusters : 1; // 0x003C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 AssetClusteringEnabled : 1; // 0x003C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 ActorClusteringEnabled : 1; // 0x003C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 VerifyUObjectsAreNotFGCObjects : 1; // 0x003C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 GarbageEliminationEnabled : 1; // 0x003C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 DumpObjectCountsToLogWhenMaxObjectLimitExceeded : 1; // 0x003D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_3E[0x2]; // 0x003E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinGCClusterSize; // 0x0040(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 NumRetriesBeforeForcingGC; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MaxObjectsNotConsideredByGC; // 0x0048(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MaxObjectsInGame; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MaxObjectsInEditor; // 0x0050(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GarbageCollectionSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GarbageCollectionSettings") + } + static class UGarbageCollectionSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGarbageCollectionSettings; + +// Class Engine.NavigationDataChunkActor +// 0x0048 (0x02F0 - 0x02A8) +class ANavigationDataChunkActor final : public APartitionActor +{ +public: + TArray NavDataChunks; // 0x02A8(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + struct FBox DataChunkActorBounds; // 0x02B8(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NavigationDataChunkActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NavigationDataChunkActor") + } + static class ANavigationDataChunkActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ANavigationDataChunkActor; + +// Class Engine.CullDistanceVolume +// 0x0018 (0x02F8 - 0x02E0) +class ACullDistanceVolume final : public AVolume +{ +public: + TArray CullDistances; // 0x02E0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bEnabled : 1; // 0x02F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2F1[0x7]; // 0x02F1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CullDistanceVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CullDistanceVolume") + } + static class ACullDistanceVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ACullDistanceVolume; + +// Class Engine.CurveFloat +// 0x0088 (0x00B8 - 0x0030) +class UCurveFloat final : public UCurveBase +{ +public: + struct FRichCurve FloatCurve; // 0x0030(0x0080)(NativeAccessSpecifierPublic) + bool bIsEventCurve; // 0x00B0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + float GetFloatValue(float InTime) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveFloat") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveFloat") + } + static class UCurveFloat* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveFloat; + +// Class Engine.CurveLinearColor +// 0x0220 (0x0250 - 0x0030) +class UCurveLinearColor final : public UCurveBase +{ +public: + struct FRichCurve FloatCurves[0x4]; // 0x0030(0x0080)(NativeAccessSpecifierPublic) + float AdjustHue; // 0x0230(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustSaturation; // 0x0234(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustBrightness; // 0x0238(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustBrightnessCurve; // 0x023C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustVibrance; // 0x0240(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustMinAlpha; // 0x0244(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustMaxAlpha; // 0x0248(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24C[0x4]; // 0x024C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FLinearColor GetClampedLinearColorValue(float InTime) const; + struct FLinearColor GetLinearColorValue(float InTime) const; + struct FLinearColor GetUnadjustedLinearColorValue(float InTime) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CurveLinearColor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CurveLinearColor") + } + static class UCurveLinearColor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCurveLinearColor; + +// Class Engine.DamageType +// 0x0018 (0x0040 - 0x0028) +class UDamageType : public UObject +{ +public: + uint8 bCausedByWorld : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bScaleMomentumByMass : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRadialDamageVelChange : 1; // 0x0028(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DamageImpulse; // 0x002C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DestructibleImpulse; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DestructibleDamageSpreadScale; // 0x0034(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageFalloff; // 0x0038(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DamageType") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DamageType") + } + static class UDamageType* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDamageType; + +// Class Engine.PrimaryDataAsset +// 0x0000 (0x0030 - 0x0030) +class UPrimaryDataAsset : public UDataAsset +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PrimaryDataAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PrimaryDataAsset") + } + static class UPrimaryDataAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPrimaryDataAsset; + +// Class Engine.DataDrivenCVarEngineSubsystem +// 0x0010 (0x0040 - 0x0030) +class UDataDrivenCVarEngineSubsystem final : public UEngineSubsystem +{ +public: + TMulticastInlineDelegate OnDataDrivenCVarDelegate; // 0x0030(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataDrivenCVarEngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataDrivenCVarEngineSubsystem") + } + static class UDataDrivenCVarEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataDrivenCVarEngineSubsystem; + +// Class Engine.DataTableFunctionLibrary +// 0x0000 (0x0028 - 0x0028) +class UDataTableFunctionLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool DoesDataTableRowExist(const class UDataTable* Table, class FName RowName); + static void EvaluateCurveTableRow(class UCurveTable* CurveTable, class FName RowName, float InXY, EEvaluateCurveTableResult* OutResult, float* OutXY, const class FString& ContextString); + static TArray GetDataTableColumnAsString(const class UDataTable* DataTable, class FName PropertyName); + static void GetDataTableColumnExportNames(const class UDataTable* Table, TArray* OutExportColumnNames); + static bool GetDataTableColumnNameFromExportName(const class UDataTable* Table, const class FString& ColumnExportName, class FName* OutColumnName); + static void GetDataTableColumnNames(const class UDataTable* Table, TArray* OutColumnNames); + static bool GetDataTableRowFromName(class UDataTable* Table, class FName RowName, struct FTableRowBase* OutRow); + static void GetDataTableRowNames(const class UDataTable* Table, TArray* OutRowNames); + static const class UScriptStruct* GetDataTableRowStruct(const class UDataTable* Table); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataTableFunctionLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataTableFunctionLibrary") + } + static class UDataTableFunctionLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataTableFunctionLibrary; + +// Class Engine.DebugCameraController +// 0x0198 (0x09F0 - 0x0858) +class ADebugCameraController final : public APlayerController +{ +public: + uint8 bShowSelectedInfo : 1; // 0x0858(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsFrozenRendering : 1; // 0x0858(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsOrbitingSelectedActor : 1; // 0x0858(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOrbitPivotUseCenter : 1; // 0x0858(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableBufferVisualization : 1; // 0x0858(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableBufferVisualizationFullMode : 1; // 0x0858(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsBufferVisualizationInputSetup : 1; // 0x0858(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLastDisplayEnabled : 1; // 0x0858(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_859[0x7]; // 0x0859(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UDrawFrustumComponent* DrawFrustum; // 0x0860(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr SelectedActor; // 0x0868(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr SelectedComponent; // 0x0870(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult SelectedHitPoint; // 0x0878(0x0100)(IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + class APlayerController* OriginalControllerRef; // 0x0978(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPlayer* OriginalPlayer; // 0x0980(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpeedScale; // 0x0988(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialMaxSpeed; // 0x098C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialAccel; // 0x0990(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialDecel; // 0x0994(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_998[0x58]; // 0x0998(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ReceiveOnActivate(class APlayerController* OriginalPC); + void ReceiveOnActorSelected(class AActor* NewSelectedActor, const struct FVector& SelectHitLocation, const struct FVector& SelectHitNormal, const struct FHitResult& Hit); + void ReceiveOnDeactivate(class APlayerController* RestoredPC); + void SetPawnMovementSpeedScale(float NewSpeedScale); + void ShowDebugSelectedInfo(); + void ToggleDisplay(); + + class AActor* GetSelectedActor() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugCameraController") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugCameraController") + } + static class ADebugCameraController* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADebugCameraController; + +// Class Engine.DebugCameraControllerSettings +// 0x0010 (0x0048 - 0x0038) +class UDebugCameraControllerSettings final : public UDeveloperSettings +{ +public: + TArray CycleViewModes; // 0x0038(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugCameraControllerSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugCameraControllerSettings") + } + static class UDebugCameraControllerSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDebugCameraControllerSettings; + +// Class Engine.DebugCameraHUD +// 0x0000 (0x0398 - 0x0398) +class ADebugCameraHUD final : public AHUD +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DebugCameraHUD") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DebugCameraHUD") + } + static class ADebugCameraHUD* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADebugCameraHUD; + +// Class Engine.DecalActor +// 0x0008 (0x02B0 - 0x02A8) +class ADecalActor final : public AActor +{ +public: + class UDecalComponent* Decal; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + class UMaterialInstanceDynamic* CreateDynamicMaterialInstance(); + void SetDecalMaterial(class UMaterialInterface* NewDecalMaterial); + + class UMaterialInterface* GetDecalMaterial() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DecalActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DecalActor") + } + static class ADecalActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADecalActor; + +// Class Engine.DefaultPawn +// 0x0028 (0x0350 - 0x0328) +class ADefaultPawn : public APawn +{ +public: + float BaseTurnRate; // 0x0328(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseLookUpRate; // 0x032C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPawnMovementComponent* MovementComponent; // 0x0330(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class USphereComponent* CollisionComponent; // 0x0338(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UStaticMeshComponent* MeshComponent; // 0x0340(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bAddDefaultMovementBindings : 1; // 0x0348(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_349[0x7]; // 0x0349(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void LookUpAtRate(float Rate); + void MoveForward(float Val); + void MoveRight(float Val); + void MoveUp_World(float Val); + void TurnAtRate(float Rate); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DefaultPawn") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DefaultPawn") + } + static class ADefaultPawn* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADefaultPawn; + +// Class Engine.DeformableInterface +// 0x0000 (0x0000 - 0x0000) +class IDeformableInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeformableInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeformableInterface") + } + static class IDeformableInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IDeformableInterface; + +// Class Engine.NetDriver +// 0x08A8 (0x08D0 - 0x0028) +class UNetDriver : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FString NetConnectionClassName; // 0x0030(0x0010)(ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReplicationDriverClassName; // 0x0040(0x0010)(ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReplicationBridgeClassName; // 0x0050(0x0010)(ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNetDriverReplicationSystemConfig ReplicationSystemConfigServer; // 0x0060(0x001C)(Config, NoDestructor, NativeAccessSpecifierPublic) + struct FNetDriverReplicationSystemConfig ReplicationSystemConfigClient; // 0x007C(0x001C)(Config, NoDestructor, NativeAccessSpecifierPublic) + int32 MaxDownloadSize; // 0x0098(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bClampListenServerTickRate : 1; // 0x009C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9D[0x3]; // 0x009D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NetServerMaxTickRate; // 0x00A0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x1C]; // 0x00A4(0x001C)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaxNetTickRate; // 0x00C0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxInternetClientRate; // 0x00C4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxClientRate; // 0x00C8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerTravelPause; // 0x00CC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpawnPrioritySeconds; // 0x00D0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RelevantTimeout; // 0x00D4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float KeepAliveTime; // 0x00D8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialConnectTimeout; // 0x00DC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConnectionTimeout; // 0x00E0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GracefulCloseConnectionTimeout; // 0x00E4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeoutMultiplierForUnoptimizedBuilds; // 0x00E8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_EC[0x4]; // 0x00EC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UNetConnection* ServerConnection; // 0x00F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ClientConnections; // 0x00F8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_108[0x60]; // 0x0108(0x0060)(Fixing Size After Last Property [ Dumper-7 ]) + int32 RecentlyDisconnectedTrackingTime; // 0x0168(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16C[0x3C]; // 0x016C(0x003C)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorld* World; // 0x01A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPackage* WorldPackage; // 0x01B0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B8[0x20]; // 0x01B8(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf NetConnectionClass; // 0x01D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ReplicationDriverClass; // 0x01E0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ReplicationBridgeClass; // 0x01E8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1F0[0x10]; // 0x01F0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class FName NetDriverName; // 0x0200(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ChannelDefinitions; // 0x0208(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TMap ChannelDefinitionMap; // 0x0218(0x0050)(NativeAccessSpecifierPublic) + TArray ActorChannelPool; // 0x0268(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_278[0x10]; // 0x0278(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UNetworkMetricsDatabase* NetworkMetricsDatabase; // 0x0288(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TMap NetworkMetricsListeners; // 0x0290(0x0050)(UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_2E0[0x29]; // 0x02E0(0x0029)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_309_0 : 6; // 0x0309(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bNoTimeouts : 1; // 0x0309(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNeverApplyNetworkEmulationSettings : 1; // 0x0309(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_30A[0x526]; // 0x030A(0x0526)(Fixing Size After Last Property [ Dumper-7 ]) + class UReplicationDriver* ReplicationDriver; // 0x0830(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_838[0x98]; // 0x0838(0x0098)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetDriver") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetDriver") + } + static class UNetDriver* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetDriver; + +// Class Engine.DemoNetDriver +// 0x0CC0 (0x1590 - 0x08D0) +class alignas(0x10) UDemoNetDriver final : public UNetDriver +{ +public: + uint8 Pad_8D0[0x38]; // 0x08D0(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + TMap RollbackNetStartupActors; // 0x0908(0x0050)(Transient, NativeAccessSpecifierPrivate) + uint8 Pad_958[0xE4]; // 0x0958(0x00E4)(Fixing Size After Last Property [ Dumper-7 ]) + float CheckpointSaveMaxMSPerFrame; // 0x0A3C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_A40[0x18]; // 0x0A40(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MulticastRecordOptions; // 0x0A58(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray SpectatorControllers; // 0x0A68(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_A78[0xB18]; // 0x0A78(0x0B18)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DemoNetDriver") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DemoNetDriver") + } + static class UDemoNetDriver* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDemoNetDriver; + +// Class Engine.TextureLODSettings +// 0x0010 (0x0038 - 0x0028) +class UTextureLODSettings : public UObject +{ +public: + TArray TextureLODGroups; // 0x0028(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureLODSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureLODSettings") + } + static class UTextureLODSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureLODSettings; + +// Class Engine.DeviceProfile +// 0x0098 (0x00D0 - 0x0038) +class UDeviceProfile final : public UTextureLODSettings +{ +public: + class FString DeviceType; // 0x0038(0x0010)(Edit, ZeroConstructor, Config, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString BaseProfileName; // 0x0048(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsVisibleForAssets : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UDeviceProfile* Parent; // 0x0060(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_68[0x28]; // 0x0068(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CVars; // 0x0090(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray MatchingRules; // 0x00A0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_B0[0x20]; // 0x00B0(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeviceProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeviceProfile") + } + static class UDeviceProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDeviceProfile; + +// Class Engine.DeviceProfileManager +// 0x0068 (0x0090 - 0x0028) +class UDeviceProfileManager final : public UObject +{ +public: + TArray Profiles; // 0x0028(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray BackupProfiles; // 0x0038(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_48[0x48]; // 0x0048(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeviceProfileManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeviceProfileManager") + } + static class UDeviceProfileManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDeviceProfileManager; + +// Class Engine.DialogueWave +// 0x0048 (0x0070 - 0x0028) +class UDialogueWave final : public UObject +{ +public: + uint8 bMature : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_SubtitleOverride : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString SpokenText; // 0x0030(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SubtitleOverride; // 0x0040(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ContextMappings; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FGuid LocalizationGUID; // 0x0060(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DialogueWave") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DialogueWave") + } + static class UDialogueWave* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDialogueWave; + +// Class Engine.DocumentationActor +// 0x0008 (0x02B0 - 0x02A8) +class ADocumentationActor final : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DocumentationActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DocumentationActor") + } + static class ADocumentationActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ADocumentationActor; + +// Class Engine.DPICustomScalingRule +// 0x0000 (0x0028 - 0x0028) +class UDPICustomScalingRule final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DPICustomScalingRule") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DPICustomScalingRule") + } + static class UDPICustomScalingRule* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDPICustomScalingRule; + +// Class Engine.AssetImportData +// 0x0000 (0x0028 - 0x0028) +class UAssetImportData : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AssetImportData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AssetImportData") + } + static class UAssetImportData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAssetImportData; + +// Class Engine.ThumbnailInfo +// 0x0000 (0x0028 - 0x0028) +class UThumbnailInfo final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ThumbnailInfo") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ThumbnailInfo") + } + static class UThumbnailInfo* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UThumbnailInfo; + +// Class Engine.ActorElementAssetDataInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementAssetDataInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementAssetDataInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementAssetDataInterface") + } + static class UActorElementAssetDataInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementAssetDataInterface; + +// Class Engine.ActorElementHierarchyInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementHierarchyInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementHierarchyInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementHierarchyInterface") + } + static class UActorElementHierarchyInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementHierarchyInterface; + +// Class Engine.ActorElementObjectInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementObjectInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementObjectInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementObjectInterface") + } + static class UActorElementObjectInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementObjectInterface; + +// Class Engine.ActorElementWorldInterface +// 0x0008 (0x0030 - 0x0028) +class UActorElementWorldInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorElementWorldInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorElementWorldInterface") + } + static class UActorElementWorldInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorElementWorldInterface; + +// Class Engine.ComponentElementCounterInterface +// 0x0008 (0x0030 - 0x0028) +class UComponentElementCounterInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentElementCounterInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentElementCounterInterface") + } + static class UComponentElementCounterInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentElementCounterInterface; + +// Class Engine.ComponentElementHierarchyInterface +// 0x0008 (0x0030 - 0x0028) +class UComponentElementHierarchyInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentElementHierarchyInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentElementHierarchyInterface") + } + static class UComponentElementHierarchyInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentElementHierarchyInterface; + +// Class Engine.ComponentElementSelectionInterface +// 0x0008 (0x0030 - 0x0028) +class UComponentElementSelectionInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentElementSelectionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentElementSelectionInterface") + } + static class UComponentElementSelectionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentElementSelectionInterface; + +// Class Engine.Note +// 0x0000 (0x02A8 - 0x02A8) +class ANote final : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Note") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Note") + } + static class ANote* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ANote; + +// Class Engine.ComponentElementWorldInterface +// 0x0008 (0x0030 - 0x0028) +class UComponentElementWorldInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComponentElementWorldInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComponentElementWorldInterface") + } + static class UComponentElementWorldInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UComponentElementWorldInterface; + +// Class Engine.EngineElementsLibrary +// 0x0000 (0x0028 - 0x0028) +class UEngineElementsLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineElementsLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineElementsLibrary") + } + static class UEngineElementsLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineElementsLibrary; + +// Class Engine.ObjectElementAssetDataInterface +// 0x0008 (0x0030 - 0x0028) +class UObjectElementAssetDataInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectElementAssetDataInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectElementAssetDataInterface") + } + static class UObjectElementAssetDataInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectElementAssetDataInterface; + +// Class Engine.ObjectElementCounterInterface +// 0x0008 (0x0030 - 0x0028) +class UObjectElementCounterInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectElementCounterInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectElementCounterInterface") + } + static class UObjectElementCounterInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectElementCounterInterface; + +// Class Engine.ObjectElementSelectionInterface +// 0x0008 (0x0030 - 0x0028) +class UObjectElementSelectionInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectElementSelectionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectElementSelectionInterface") + } + static class UObjectElementSelectionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectElementSelectionInterface; + +// Class Engine.SMInstanceElementAssetDataInterface +// 0x0008 (0x0030 - 0x0028) +class USMInstanceElementAssetDataInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementAssetDataInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementAssetDataInterface") + } + static class USMInstanceElementAssetDataInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementAssetDataInterface; + +// Class Engine.SMInstanceElementPrimitiveCustomDataInterface +// 0x0008 (0x0030 - 0x0028) +class USMInstanceElementPrimitiveCustomDataInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementPrimitiveCustomDataInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementPrimitiveCustomDataInterface") + } + static class USMInstanceElementPrimitiveCustomDataInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementPrimitiveCustomDataInterface; + +// Class Engine.SMInstanceElementSelectionInterface +// 0x0008 (0x0030 - 0x0028) +class USMInstanceElementSelectionInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementSelectionInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementSelectionInterface") + } + static class USMInstanceElementSelectionInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementSelectionInterface; + +// Class Engine.SMInstanceElementWorldInterface +// 0x0008 (0x0030 - 0x0028) +class USMInstanceElementWorldInterface final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SMInstanceElementWorldInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SMInstanceElementWorldInterface") + } + static class USMInstanceElementWorldInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USMInstanceElementWorldInterface; + +// Class Engine.EngineMessage +// 0x0080 (0x00A8 - 0x0028) +class UEngineMessage final : public ULocalMessage +{ +public: + class FString FailedPlaceMessage; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString MaxedOutMessage; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString EnteredMessage; // 0x0048(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LeftMessage; // 0x0058(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString GlobalNameChange; // 0x0068(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SpecEnteredMessage; // 0x0078(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewPlayerMessage; // 0x0088(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewSpecMessage; // 0x0098(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineMessage") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineMessage") + } + static class UEngineMessage* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineMessage; + +// Class Engine.SoundNodeModulator +// 0x0010 (0x0058 - 0x0048) +class USoundNodeModulator final : public USoundNode +{ +public: + float PitchMin; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMax; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMin; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMax; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeModulator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeModulator") + } + static class USoundNodeModulator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeModulator; + +// Class Engine.AutoDestroySubsystem +// 0x0010 (0x0050 - 0x0040) +class UAutoDestroySubsystem final : public UTickableWorldSubsystem +{ +public: + TArray ActorsToPoll; // 0x0040(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + void OnActorEndPlay(class AActor* Actor, EEndPlayReason EndPlayReason); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutoDestroySubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutoDestroySubsystem") + } + static class UAutoDestroySubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutoDestroySubsystem; + +// Class Engine.CancellableAsyncAction +// 0x0000 (0x0030 - 0x0030) +class UCancellableAsyncAction : public UBlueprintAsyncActionBase +{ +public: + void Cancel(); + + bool IsActive() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CancellableAsyncAction") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CancellableAsyncAction") + } + static class UCancellableAsyncAction* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCancellableAsyncAction; + +// Class Engine.PoseWatchFolder +// 0x0000 (0x0028 - 0x0028) +class UPoseWatchFolder final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseWatchFolder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseWatchFolder") + } + static class UPoseWatchFolder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseWatchFolder; + +// Class Engine.PoseWatchElement +// 0x0000 (0x0028 - 0x0028) +class UPoseWatchElement : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseWatchElement") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseWatchElement") + } + static class UPoseWatchElement* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseWatchElement; + +// Class Engine.PoseWatchPoseElement +// 0x0000 (0x0028 - 0x0028) +class UPoseWatchPoseElement final : public UPoseWatchElement +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PoseWatchPoseElement") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PoseWatchPoseElement") + } + static class UPoseWatchPoseElement* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPoseWatchPoseElement; + +// Class Engine.ServerStatReplicator +// 0x00C8 (0x0370 - 0x02A8) +class AServerStatReplicator final : public AInfo +{ +public: + bool bUpdateStatNet; // 0x02A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverwriteClientStats; // 0x02A9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2AA[0x2]; // 0x02AA(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 Channels; // 0x02AC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InRate; // 0x02B0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutRate; // 0x02B4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B8[0x4]; // 0x02B8(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 MaxPacketOverhead; // 0x02BC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InRateClientMax; // 0x02C0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InRateClientMin; // 0x02C4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InRateClientAvg; // 0x02C8(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InPacketsClientMax; // 0x02CC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InPacketsClientMin; // 0x02D0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InPacketsClientAvg; // 0x02D4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutRateClientMax; // 0x02D8(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutRateClientMin; // 0x02DC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutRateClientAvg; // 0x02E0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutPacketsClientMax; // 0x02E4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutPacketsClientMin; // 0x02E8(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutPacketsClientAvg; // 0x02EC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NetNumClients; // 0x02F0(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InPackets; // 0x02F4(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutPackets; // 0x02F8(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InBunches; // 0x02FC(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutBunches; // 0x0300(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 OutLoss; // 0x0304(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InLoss; // 0x0308(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VoiceBytesSent; // 0x030C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VoiceBytesRecv; // 0x0310(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VoicePacketsSent; // 0x0314(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VoicePacketsRecv; // 0x0318(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PercentInVoice; // 0x031C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PercentOutVoice; // 0x0320(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumActorChannels; // 0x0324(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumConsideredActors; // 0x0328(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PrioritizedActors; // 0x032C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumRelevantActors; // 0x0330(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumRelevantDeletedActors; // 0x0334(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumReplicatedActorAttempts; // 0x0338(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumReplicatedActors; // 0x033C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumActors; // 0x0340(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumNetActors; // 0x0344(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumDormantActors; // 0x0348(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumInitiallyDormantActors; // 0x034C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumNetGUIDsAckd; // 0x0350(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumNetGUIDsPending; // 0x0354(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumNetGUIDsUnAckd; // 0x0358(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ObjPathBytes; // 0x035C(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NetGUIDOutRate; // 0x0360(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NetGUIDInRate; // 0x0364(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NetSaturated; // 0x0368(0x0004)(Net, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_36C[0x4]; // 0x036C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ServerStatReplicator") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ServerStatReplicator") + } + static class AServerStatReplicator* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AServerStatReplicator; + +// Class Engine.SystemTimeTimecodeProvider +// 0x0010 (0x0040 - 0x0030) +class USystemTimeTimecodeProvider final : public UTimecodeProvider +{ +public: + struct FFrameRate FrameRate; // 0x0030(0x0008)(Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGenerateFullFrame; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseHighPerformanceClock; // 0x0039(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SystemTimeTimecodeProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SystemTimeTimecodeProvider") + } + static class USystemTimeTimecodeProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USystemTimeTimecodeProvider; + +// Class Engine.ViewportStatsSubsystem +// 0x0020 (0x0050 - 0x0030) +class UViewportStatsSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x20]; // 0x0030(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + int32 AddDisplayDelegate(const TDelegate& Delegate); + void AddTimedDisplay(const class FText& Text, const struct FLinearColor& Color, float duration, const struct FVector2D& DisplayOffset); + void RemoveDisplayDelegate(const int32 IndexToRemove); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ViewportStatsSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ViewportStatsSubsystem") + } + static class UViewportStatsSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UViewportStatsSubsystem; + +// Class Engine.FontFace +// 0x0068 (0x0090 - 0x0028) +class UFontFace final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FString SourceFilename; // 0x0030(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFontHinting Hinting; // 0x0040(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFontLoadingPolicy LoadingPolicy; // 0x0041(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFontLayoutMethod LayoutMethod; // 0x0042(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_43[0x1]; // 0x0043(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 AscendOverriddenValue; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsAscendOverridden; // 0x0048(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DescendOverriddenValue; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsDescendOverridden; // 0x0050(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 StrikeBrushHeightPercentage; // 0x0054(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0x10]; // 0x0058(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + bool bEnableDistanceFieldRendering; // 0x0068(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinDistanceFieldPpem; // 0x006C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MidDistanceFieldPpem; // 0x0070(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxDistanceFieldPpem; // 0x0074(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinMultiDistanceFieldPpem; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MidMultiDistanceFieldPpem; // 0x007C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxMultiDistanceFieldPpem; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TOptional PlatformRasterizationModeOverrides; // 0x0084(0x0004)(Edit, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FontFace") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FontFace") + } + static class UFontFace* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UFontFace; + +// Class Engine.GameEngine +// 0x0058 (0x1248 - 0x11F0) +class UGameEngine final : public UEngine +{ +public: + float MaxDeltaTime; // 0x11F0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerFlushLogInterval; // 0x11F4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UGameInstance* GameInstance; // 0x11F8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1200[0x48]; // 0x1200(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UGameEngine* GetEngine(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameEngine") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameEngine") + } + static class UGameEngine* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameEngine; + +// Class Engine.WorldPartitionRuntimeSpatialHash +// 0x00C0 (0x0138 - 0x0078) +class UWorldPartitionRuntimeSpatialHash final : public UWorldPartitionRuntimeHash +{ +public: + bool bEnableZCulling; // 0x0078(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSpatialHashSettings Settings; // 0x0079(0x0002)(NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_7B[0x5]; // 0x007B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TArray StreamingGrids; // 0x0080(0x0010)(ZeroConstructor, Protected, NonPIEDuplicateTransient, NativeAccessSpecifierProtected) + uint8 Pad_90[0x58]; // 0x0090(0x0058)(Fixing Size After Last Property [ Dumper-7 ]) + TMap WorldAssetStreamingObjects; // 0x00E8(0x0050)(Transient, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeSpatialHash") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeSpatialHash") + } + static class UWorldPartitionRuntimeSpatialHash* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeSpatialHash; + +// Class Engine.ColorInputDeviceProperty +// 0x0068 (0x0098 - 0x0030) +class UColorInputDeviceProperty final : public UInputDeviceProperty +{ +public: + struct FDeviceColorData ColorData; // 0x0030(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + TMap DeviceOverrideData; // 0x0038(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_88[0x10]; // 0x0088(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ColorInputDeviceProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ColorInputDeviceProperty") + } + static class UColorInputDeviceProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UColorInputDeviceProperty; + +// Class Engine.InputDeviceTriggerFeedbackProperty +// 0x0078 (0x00B8 - 0x0040) +class UInputDeviceTriggerFeedbackProperty final : public UInputDeviceTriggerEffect +{ +public: + struct FDeviceTriggerFeedbackData TriggerData; // 0x0040(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + TMap DeviceOverrideData; // 0x0050(0x0050)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_A0[0x18]; // 0x00A0(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceTriggerFeedbackProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceTriggerFeedbackProperty") + } + static class UInputDeviceTriggerFeedbackProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceTriggerFeedbackProperty; + +// Class Engine.InputDeviceTriggerResistanceProperty +// 0x0080 (0x00C0 - 0x0040) +class UInputDeviceTriggerResistanceProperty final : public UInputDeviceTriggerEffect +{ +public: + struct FDeviceTriggerTriggerResistanceData TriggerData; // 0x0040(0x0010)(Edit, BlueprintVisible, NoDestructor, Protected, NativeAccessSpecifierProtected) + TMap DeviceOverrideData; // 0x0050(0x0050)(Edit, BlueprintVisible, Protected, NativeAccessSpecifierProtected) + uint8 Pad_A0[0x20]; // 0x00A0(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceTriggerResistanceProperty") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceTriggerResistanceProperty") + } + static class UInputDeviceTriggerResistanceProperty* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceTriggerResistanceProperty; + +// Class Engine.InputDeviceSubsystem +// 0x0168 (0x0198 - 0x0030) +class UInputDeviceSubsystem final : public UEngineSubsystem +{ +public: + uint8 Pad_30[0x8]; // 0x0030(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnInputHardwareDeviceChanged; // 0x0038(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TSet ActiveProperties; // 0x0048(0x0050)(Transient, Protected, NativeAccessSpecifierProtected) + TSet PropertiesPendingRemoval; // 0x0098(0x0050)(Transient, Protected, NativeAccessSpecifierProtected) + uint8 Pad_E8[0xB0]; // 0x00E8(0x00B0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FInputDevicePropertyHandle ActivateDevicePropertyOfClass(TSubclassOf PropertyClass, const struct FActivateDevicePropertyParams& Params_0); + void RemoveAllDeviceProperties(); + void RemoveDevicePropertyByHandle(const struct FInputDevicePropertyHandle& HandleToRemove); + void RemoveDevicePropertyHandles(const TSet& HandlesToRemove); + + class UInputDeviceProperty* GetActiveDeviceProperty(const struct FInputDevicePropertyHandle& Handle) const; + struct FHardwareDeviceIdentifier GetInputDeviceHardwareIdentifier(const struct FInputDeviceId& InputDevice) const; + struct FHardwareDeviceIdentifier GetMostRecentlyUsedHardwareDevice(const struct FPlatformUserId& InUserId) const; + struct FInputDeviceId GetMostRecentlyUsedInputDeviceId(const struct FPlatformUserId& InUserId) const; + bool IsPropertyActive(const struct FInputDevicePropertyHandle& Handle) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputDeviceSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputDeviceSubsystem") + } + static class UInputDeviceSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputDeviceSubsystem; + +// Class Engine.PlayerStateCountLimiterConfig +// 0x0000 (0x0040 - 0x0040) +class UPlayerStateCountLimiterConfig final : public UNetObjectCountLimiterConfig +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerStateCountLimiterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerStateCountLimiterConfig") + } + static class UPlayerStateCountLimiterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlayerStateCountLimiterConfig; + +// Class Engine.LocalPlayerSaveGame +// 0x0030 (0x0058 - 0x0028) +class ULocalPlayerSaveGame final : public USaveGame +{ +public: + class ULocalPlayer* OwningPlayer; // 0x0028(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FString SaveSlotName; // 0x0030(0x0010)(ZeroConstructor, Transient, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 SavedDataVersion; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LoadedDataVersion; // 0x0044(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 CurrentSaveRequest; // 0x0048(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastSuccessfulSaveRequest; // 0x004C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastErrorSaveRequest; // 0x0050(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static bool AsyncLoadOrCreateSaveGameForLocalPlayer(TSubclassOf SaveGameClass, class APlayerController* LocalPlayerController, const class FString& SlotName, TDelegate Delegate); + static class ULocalPlayerSaveGame* LoadOrCreateSaveGameForLocalPlayer(TSubclassOf SaveGameClass, class APlayerController* LocalPlayerController, const class FString& SlotName); + + bool AsyncSaveGameToSlotForLocalPlayer(); + void OnPostLoad(); + void OnPostSave(bool bSuccess); + void OnPreSave(); + void OnResetToDefault(); + void ResetToDefault(); + bool SaveGameToSlotForLocalPlayer(); + + int32 GetInvalidDataVersion() const; + int32 GetLatestDataVersion() const; + class APlayerController* GetLocalPlayerController() const; + struct FPlatformUserId GetPlatformUserId() const; + int32 GetPlatformUserIndex() const; + int32 GetSavedDataVersion() const; + class FString GetSaveSlotName() const; + bool IsSaveInProgress() const; + bool WasLastSaveSuccessful() const; + bool WasLoaded() const; + bool WasSaveRequested() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalPlayerSaveGame") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalPlayerSaveGame") + } + static class ULocalPlayerSaveGame* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULocalPlayerSaveGame; + +// Class Engine.SpringArmComponent +// 0x0100 (0x0330 - 0x0230) +class USpringArmComponent final : public USceneComponent +{ +public: + float TargetArmLength; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_234[0x4]; // 0x0234(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector SocketOffset; // 0x0238(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetOffset; // 0x0250(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProbeSize; // 0x0268(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel ProbeChannel; // 0x026C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_26D[0x3]; // 0x026D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bDoCollisionTest : 1; // 0x0270(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsePawnControlRotation : 1; // 0x0270(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritPitch : 1; // 0x0270(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritYaw : 1; // 0x0270(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInheritRoll : 1; // 0x0270(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableCameraLag : 1; // 0x0270(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableCameraRotationLag : 1; // 0x0270(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseCameraLagSubstepping : 1; // 0x0270(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDrawDebugLagMarkers : 1; // 0x0271(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_272[0x2]; // 0x0272(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float CameraLagSpeed; // 0x0274(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraRotationLagSpeed; // 0x0278(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraLagMaxTimeStep; // 0x027C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraLagMaxDistance; // 0x0280(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bClampToMaxPhysicsDeltaTime : 1; // 0x0284(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_285[0xAB]; // 0x0285(0x00AB)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + struct FRotator GetTargetRotation() const; + struct FVector GetUnfixedCameraPosition() const; + bool IsCollisionFixApplied() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpringArmComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpringArmComponent") + } + static class USpringArmComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USpringArmComponent; + +// Class Engine.TouchInterface +// 0x0030 (0x0058 - 0x0028) +class UTouchInterface final : public UObject +{ +public: + TArray Controls; // 0x0028(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + float ActiveOpacity; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InactiveOpacity; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeUntilDeactive; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeUntilReset; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ActivationDelay; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPreventRecenter; // 0x004C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StartupDelay; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TouchInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TouchInterface") + } + static class UTouchInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTouchInterface; + +// Class Engine.GameModeBase +// 0x0098 (0x0340 - 0x02A8) +class AGameModeBase : public AInfo +{ +public: + class FString OptionsString; // 0x02A8(0x0010)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GameSessionClass; // 0x02B8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf GameStateClass; // 0x02C0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PlayerControllerClass; // 0x02C8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf PlayerStateClass; // 0x02D0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf HUDClass; // 0x02D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DefaultPawnClass; // 0x02E0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf SpectatorClass; // 0x02E8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ReplaySpectatorPlayerControllerClass; // 0x02F0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ServerStatReplicatorClass; // 0x02F8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameSession* GameSession; // 0x0300(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameStateBase* GameState; // 0x0308(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AServerStatReplicator* ServerStatReplicator; // 0x0310(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText DefaultPlayerName; // 0x0318(0x0010)(Edit, NativeAccessSpecifierPublic) + uint8 bUseSeamlessTravel : 1; // 0x0328(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStartPlayersAsSpectators : 1; // 0x0328(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bPauseable : 1; // 0x0328(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_329[0x3]; // 0x0329(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EReplicationSystem GameNetDriverReplicationSystem; // 0x032C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_32D[0x13]; // 0x032D(0x0013)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool CanSpectate(class APlayerController* Viewer, class APlayerState* ViewTarget); + void ChangeName(class AController* Controller, const class FString& NewName, bool bNameChange); + class AActor* ChoosePlayerStart(class AController* Player); + class AActor* FindPlayerStart(class AController* Player, const class FString& IncomingName); + class UClass* GetDefaultPawnClassForController(class AController* InController); + int32 GetNumPlayers(); + int32 GetNumSpectators(); + void HandleStartingNewPlayer(class APlayerController* NewPlayer); + void InitializeHUDForPlayer(class APlayerController* NewPlayer); + void InitStartSpot(class AActor* StartSpot, class AController* NewPlayer); + class AActor* K2_FindPlayerStart(class AController* Player, const class FString& IncomingName); + void K2_OnChangeName(class AController* Other, const class FString& NewName, bool bNameChange); + void K2_OnLogout(class AController* ExitingController); + void K2_OnRestartPlayer(class AController* NewPlayer); + void K2_OnSwapPlayerControllers(class APlayerController* OldPC, class APlayerController* NewPC); + void K2_PostLogin(class APlayerController* NewPlayer); + bool PlayerCanRestart(class APlayerController* Player); + void ResetLevel(); + void RestartPlayer(class AController* NewPlayer); + void RestartPlayerAtPlayerStart(class AController* NewPlayer, class AActor* StartSpot); + void RestartPlayerAtTransform(class AController* NewPlayer, const struct FTransform& SpawnTransform); + void ReturnToMainMenuHost(); + bool ShouldReset(class AActor* ActorToReset); + class APawn* SpawnDefaultPawnAtTransform(class AController* NewPlayer, const struct FTransform& SpawnTransform); + class APawn* SpawnDefaultPawnFor(class AController* NewPlayer, class AActor* StartSpot); + void StartPlay(); + + bool HasMatchEnded() const; + bool HasMatchStarted() const; + bool MustSpectate(class APlayerController* NewPlayerController) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameModeBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameModeBase") + } + static class AGameModeBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameModeBase; + +// Class Engine.SimulatedClientNetConnection +// 0x0000 (0x1DE0 - 0x1DE0) +class USimulatedClientNetConnection final : public UNetConnection +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SimulatedClientNetConnection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SimulatedClientNetConnection") + } + static class USimulatedClientNetConnection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USimulatedClientNetConnection; + +// Class Engine.GameMode +// 0x0048 (0x0388 - 0x0340) +class AGameMode : public AGameModeBase +{ +public: + class FName MatchState; // 0x0340(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bDelayedStart : 1; // 0x0348(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_349[0x3]; // 0x0349(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumSpectators; // 0x034C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumPlayers; // 0x0350(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBots; // 0x0354(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinRespawnDelay; // 0x0358(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumTravellingPlayers; // 0x035C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf EngineMessageClass; // 0x0360(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray InactivePlayerArray; // 0x0368(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + float InactivePlayerStateLifeSpan; // 0x0378(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 MaxInactivePlayers; // 0x037C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bHandleDedicatedServerReplays; // 0x0380(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_381[0x7]; // 0x0381(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AbortMatch(); + void EndMatch(); + void K2_OnSetMatchState(class FName NewState); + bool ReadyToEndMatch(); + bool ReadyToStartMatch(); + void RestartGame(); + void Say(const class FString& Msg); + void StartMatch(); + + class FName GetMatchState() const; + bool IsMatchInProgress() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameMode") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameMode") + } + static class AGameMode* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameMode; + +// Class Engine.GameplayStatics +// 0x0000 (0x0028 - 0x0028) +class UGameplayStatics final : public UBlueprintFunctionLibrary +{ +public: + static void ActivateReverbEffect(const class UObject* WorldContextObject, class UReverbEffect* ReverbEffect, class FName TagName, float Priority, float Volume, float FadeTime); + static void AnnounceAccessibleString(const class FString& AnnouncementString); + static float ApplyDamage(class AActor* DamagedActor, float BaseDamage, class AController* EventInstigator, class AActor* DamageCauser, TSubclassOf DamageTypeClass); + static float ApplyPointDamage(class AActor* DamagedActor, float BaseDamage, const struct FVector& HitFromDirection, const struct FHitResult& HitInfo, class AController* EventInstigator, class AActor* DamageCauser, TSubclassOf DamageTypeClass); + static bool ApplyRadialDamage(const class UObject* WorldContextObject, float BaseDamage, const struct FVector& Origin, float DamageRadius, TSubclassOf DamageTypeClass, const TArray& IgnoreActors, class AActor* DamageCauser, class AController* InstigatedByController, bool bDoFullDamage, ECollisionChannel DamagePreventionChannel); + static bool ApplyRadialDamageWithFalloff(const class UObject* WorldContextObject, float BaseDamage, float MinimumDamage, const struct FVector& Origin, float DamageInnerRadius, float DamageOuterRadius, float DamageFalloff, TSubclassOf DamageTypeClass, const TArray& IgnoreActors, class AActor* DamageCauser, class AController* InstigatedByController, ECollisionChannel DamagePreventionChannel); + static bool AreAnyListenersWithinRange(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange); + static bool AreSubtitlesEnabled(); + static class AActor* BeginDeferredActorSpawnFromClass(const class UObject* WorldContextObject, TSubclassOf ActorClass, const struct FTransform& SpawnTransform, ESpawnActorCollisionHandlingMethod CollisionHandlingOverride, class AActor* Owner, ESpawnActorScaleMethod TransformScaleMethod); + static class AActor* BeginSpawningActorFromBlueprint(const class UObject* WorldContextObject, const class UBlueprint* Blueprint, const struct FTransform& SpawnTransform, bool bNoCollisionFail); + static bool Blueprint_PredictProjectilePath_Advanced(const class UObject* WorldContextObject, const struct FPredictProjectilePathParams& PredictParams, struct FPredictProjectilePathResult* PredictResult); + static bool Blueprint_PredictProjectilePath_ByObjectType(const class UObject* WorldContextObject, struct FHitResult* OutHit, TArray* OutPathPositions, struct FVector* OutLastTraceDestination, const struct FVector& StartPos, const struct FVector& LaunchVelocity, bool bTracePath, float ProjectileRadius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, float DrawDebugTime, float SimFrequency, float MaxSimTime, float OverrideGravityZ); + static bool Blueprint_PredictProjectilePath_ByTraceChannel(const class UObject* WorldContextObject, struct FHitResult* OutHit, TArray* OutPathPositions, struct FVector* OutLastTraceDestination, const struct FVector& StartPos, const struct FVector& LaunchVelocity, bool bTracePath, float ProjectileRadius, ECollisionChannel TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, float DrawDebugTime, float SimFrequency, float MaxSimTime, float OverrideGravityZ); + static bool BlueprintSuggestProjectileVelocity(const class UObject* WorldContextObject, struct FVector* TossVelocity, const struct FVector& StartLocation, const struct FVector& EndLocation, float LaunchSpeed, float OverrideGravityZ, ESuggestProjVelocityTraceOption TraceOption, float CollisionRadius, bool bFavorHighArc, bool bDrawDebug, bool bAcceptClosestOnNoSolutions); + static void BreakHitResult(const struct FHitResult& Hit, bool* bBlockingHit, bool* bInitialOverlap, float* Time, float* Distance, struct FVector* Location, struct FVector* ImpactPoint, struct FVector* Normal, struct FVector* ImpactNormal, class UPhysicalMaterial** PhysMat, class AActor** HitActor, class UPrimitiveComponent** HitComponent, class FName* HitBoneName, class FName* BoneName, int32* HitItem, int32* ElementIndex, int32* FaceIndex, struct FVector* TraceStart, struct FVector* TraceEnd); + static void CancelAsyncLoading(); + static void ClearSoundMixClassOverride(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier, class USoundClass* InSoundClass, float FadeOutTime); + static void ClearSoundMixModifiers(const class UObject* WorldContextObject); + static class APlayerController* CreatePlayer(const class UObject* WorldContextObject, int32 ControllerId, bool bSpawnPlayerController); + static class APlayerController* CreatePlayerFromPlatformUser(const class UObject* WorldContextObject, const struct FPlatformUserId& UserId, bool bSpawnPlayerController); + static class USaveGame* CreateSaveGameObject(TSubclassOf SaveGameClass); + static class UAudioComponent* CreateSound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, bool bPersistAcrossLevelTransition, bool bAutoDestroy); + static void DeactivateReverbEffect(const class UObject* WorldContextObject, class FName TagName); + static bool DeleteGameInSlot(const class FString& SlotName, const int32 UserIndex); + static bool DeprojectSceneCaptureComponentToWorld(class USceneCaptureComponent2D* SceneCaptureComponent2D, const struct FVector2D& TargetUV, struct FVector* WorldPosition, struct FVector* WorldDirection); + static bool DeprojectSceneCaptureToWorld(class ASceneCapture2D* SceneCapture2D, const struct FVector2D& TargetUV, struct FVector* WorldPosition, struct FVector* WorldDirection); + static bool DeprojectScreenToWorld(class APlayerController* Player, const struct FVector2D& ScreenPosition, struct FVector* WorldPosition, struct FVector* WorldDirection); + static bool DoesSaveGameExist(const class FString& SlotName, const int32 UserIndex); + static void EnableLiveStreaming(bool Enable); + static bool FindCollisionUV(const struct FHitResult& Hit, int32 UVChannel, struct FVector2D* UV); + static class AActor* FindNearestActor(const struct FVector& Origin, const TArray& ActorsToCheck, float* Distance); + static class AActor* FinishSpawningActor(class AActor* Actor, const struct FTransform& SpawnTransform, ESpawnActorScaleMethod TransformScaleMethod); + static void FlushLevelStreaming(const class UObject* WorldContextObject); + static void GetAccurateRealTime(int32* Seconds, double* PartialSeconds); + static class FName GetActiveSpatialPluginName(const class UObject* WorldContextObject); + static struct FVector GetActorArrayAverageLocation(const TArray& Actors); + static void GetActorArrayBounds(const TArray& Actors, bool bOnlyCollidingComponents, struct FVector* Center, struct FVector* BoxExtent); + static class AActor* GetActorOfClass(const class UObject* WorldContextObject, TSubclassOf ActorClass); + static void GetAllActorsOfClass(const class UObject* WorldContextObject, TSubclassOf ActorClass, TArray* OutActors); + static void GetAllActorsOfClassWithTag(const class UObject* WorldContextObject, TSubclassOf ActorClass, class FName Tag, TArray* OutActors); + static void GetAllActorsWithInterface(const class UObject* WorldContextObject, TSubclassOf Interface, TArray* OutActors); + static void GetAllActorsWithTag(const class UObject* WorldContextObject, class FName Tag, TArray* OutActors); + static double GetAudioTimeSeconds(const class UObject* WorldContextObject); + static TArray GetAvailableSpatialPluginNames(const class UObject* WorldContextObject); + static bool GetClosestListenerLocation(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange, const bool bAllowAttenuationOverride, struct FVector* ListenerPosition); + static class FString GetCurrentLevelName(const class UObject* WorldContextObject, bool bRemovePrefixString); + static class UReverbEffect* GetCurrentReverbEffect(const class UObject* WorldContextObject); + static bool GetEnableWorldRendering(const class UObject* WorldContextObject); + static class UGameInstance* GetGameInstance(const class UObject* WorldContextObject); + static class AGameModeBase* GetGameMode(const class UObject* WorldContextObject); + static class AGameStateBase* GetGameState(const class UObject* WorldContextObject); + static float GetGlobalTimeDilation(const class UObject* WorldContextObject); + static int32 GetIntOption(const class FString& Options, const class FString& Key, int32 DefaultValue); + static void GetKeyValue(const class FString& Pair, class FString* Key, class FString* Value); + static int32 GetMaxAudioChannelCount(const class UObject* WorldContextObject); + static int32 GetNumLocalPlayerControllers(const class UObject* WorldContextObject); + static int32 GetNumPlayerControllers(const class UObject* WorldContextObject); + static int32 GetNumPlayerStates(const class UObject* WorldContextObject); + static class UClass* GetObjectClass(const class UObject* Object); + static class FString GetPlatformName(); + static class APlayerCameraManager* GetPlayerCameraManager(const class UObject* WorldContextObject, int32 PlayerIndex); + static class ACharacter* GetPlayerCharacter(const class UObject* WorldContextObject, int32 PlayerIndex); + static class APlayerController* GetPlayerController(const class UObject* WorldContextObject, int32 PlayerIndex); + static class APlayerController* GetPlayerControllerFromID(const class UObject* WorldContextObject, int32 ControllerId); + static class APlayerController* GetPlayerControllerFromPlatformUser(const class UObject* WorldContextObject, const struct FPlatformUserId& UserId); + static int32 GetPlayerControllerID(class APlayerController* Player); + static class APawn* GetPlayerPawn(const class UObject* WorldContextObject, int32 PlayerIndex); + static class APlayerState* GetPlayerState(const class UObject* WorldContextObject, int32 PlayerStateIndex); + static class APlayerState* GetPlayerStateFromUniqueNetId(const class UObject* WorldContextObject, const struct FUniqueNetIdRepl& UniqueID); + static double GetRealTimeSeconds(const class UObject* WorldContextObject); + static class ULevelStreaming* GetStreamingLevel(const class UObject* WorldContextObject, class FName PackageName); + static EPhysicalSurface GetSurfaceType(const struct FHitResult& Hit); + static double GetTimeSeconds(const class UObject* WorldContextObject); + static double GetUnpausedTimeSeconds(const class UObject* WorldContextObject); + static EMouseCaptureMode GetViewportMouseCaptureMode(const class UObject* WorldContextObject); + static void GetViewProjectionMatrix(const struct FMinimalViewInfo& DesiredView, struct FMatrix* ViewMatrix, struct FMatrix* ProjectionMatrix, struct FMatrix* ViewProjectionMatrix); + static double GetWorldDeltaSeconds(const class UObject* WorldContextObject); + static struct FIntVector GetWorldOriginLocation(const class UObject* WorldContextObject); + static int32 GrassOverlappingSphereCount(const class UObject* WorldContextObject, const class UStaticMesh* StaticMesh, const struct FVector& CenterPosition, float Radius); + static bool HasLaunchOption(const class FString& OptionToCheck); + static bool HasOption(const class FString& Options, const class FString& InKey); + static bool IsAnyLocalPlayerCameraWithinRange(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange); + static bool IsGamePaused(const class UObject* WorldContextObject); + static bool IsSplitscreenForceDisabled(const class UObject* WorldContextObject); + static class USaveGame* LoadGameFromSlot(const class FString& SlotName, const int32 UserIndex); + static void LoadStreamLevel(const class UObject* WorldContextObject, class FName LevelName, bool bMakeVisibleAfterLoad, bool bShouldBlockOnLoad, const struct FLatentActionInfo& LatentInfo); + static void LoadStreamLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, bool bMakeVisibleAfterLoad, bool bShouldBlockOnLoad, const struct FLatentActionInfo& LatentInfo); + static struct FHitResult MakeHitResult(bool bBlockingHit, bool bInitialOverlap, float Time, float Distance, const struct FVector& Location, const struct FVector& ImpactPoint, const struct FVector& Normal, const struct FVector& ImpactNormal, class UPhysicalMaterial* PhysMat, class AActor* HitActor, class UPrimitiveComponent* HitComponent, class FName HitBoneName, class FName BoneName, int32 HitItem, int32 ElementIndex, int32 FaceIndex, const struct FVector& TraceStart, const struct FVector& TraceEnd); + static bool ObjectIsA(const class UObject* Object, TSubclassOf ObjectClass); + static void OpenLevel(const class UObject* WorldContextObject, class FName LevelName, bool bAbsolute, const class FString& Options); + static void OpenLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, bool bAbsolute, const class FString& Options); + static class FString ParseOption(const class FString& Options, const class FString& Key); + static void PlayDialogue2D(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, float VolumeMultiplier, float PitchMultiplier, float StartTime); + static void PlayDialogueAtLocation(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings); + static void PlaySound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, const class AActor* OwningActor, bool bIsUISound); + static void PlaySoundAtLocation(const class UObject* WorldContextObject, class USoundBase* Sound, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, const class AActor* OwningActor, const class UInitialActiveSoundParams* InitialParams); + static void PlayWorldCameraShake(const class UObject* WorldContextObject, TSubclassOf Shake, const struct FVector& Epicenter, float InnerRadius, float OuterRadius, float Falloff, bool bOrientShakeTowardsEpicenter); + static void PopSoundMixModifier(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier); + static void PrimeAllSoundsInSoundClass(class USoundClass* InSoundClass); + static void PrimeSound(class USoundBase* InSound); + static bool ProjectWorldToScreen(class APlayerController* Player, const struct FVector& WorldPosition, struct FVector2D* ScreenPosition, bool bPlayerViewportRelative); + static void PushSoundMixModifier(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier); + static struct FVector RebaseLocalOriginOntoZero(class UObject* WorldContextObject, const struct FVector& WorldLocation); + static struct FVector RebaseZeroOriginOntoLocal(class UObject* WorldContextObject, const struct FVector& WorldLocation); + static void RemovePlayer(class APlayerController* Player, bool bDestroyPawn); + static bool SaveGameToSlot(class USaveGame* SaveGameObject, const class FString& SlotName, const int32 UserIndex); + static bool SetActiveSpatialPluginByName(const class UObject* WorldContextObject, class FName InPluginName); + static void SetBaseSoundMix(const class UObject* WorldContextObject, class USoundMix* InSoundMix); + static void SetEnableWorldRendering(const class UObject* WorldContextObject, bool bEnable); + static void SetForceDisableSplitscreen(const class UObject* WorldContextObject, bool bDisable); + static bool SetGamePaused(const class UObject* WorldContextObject, bool bPaused); + static void SetGlobalListenerFocusParameters(const class UObject* WorldContextObject, float FocusAzimuthScale, float NonFocusAzimuthScale, float FocusDistanceScale, float NonFocusDistanceScale, float FocusVolumeScale, float NonFocusVolumeScale, float FocusPriorityScale, float NonFocusPriorityScale); + static void SetGlobalPitchModulation(const class UObject* WorldContextObject, float PitchModulation, float TimeSec); + static void SetGlobalTimeDilation(const class UObject* WorldContextObject, float TimeDilation); + static void SetMaxAudioChannelsScaled(const class UObject* WorldContextObject, float MaxChannelCountScale); + static void SetPlayerControllerID(class APlayerController* Player, int32 ControllerId); + static void SetPlayerPlatformUserId(class APlayerController* PlayerController, const struct FPlatformUserId& UserId); + static void SetSoundClassDistanceScale(const class UObject* WorldContextObject, class USoundClass* SoundClass, float DistanceAttenuationScale, float TimeSec); + static void SetSoundMixClassOverride(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier, class USoundClass* InSoundClass, float Volume, float pitch, float FadeInTime, bool bApplyToChildren); + static void SetSubtitlesEnabled(bool bEnabled); + static void SetViewportMouseCaptureMode(const class UObject* WorldContextObject, const EMouseCaptureMode MouseCaptureMode); + static void SetWorldOriginLocation(const class UObject* WorldContextObject, const struct FIntVector& NewLocation); + static class UDecalComponent* SpawnDecalAtLocation(const class UObject* WorldContextObject, class UMaterialInterface* DecalMaterial, const struct FVector& DecalSize, const struct FVector& Location, const struct FRotator& Rotation, float LifeSpan); + static class UDecalComponent* SpawnDecalAttached(class UMaterialInterface* DecalMaterial, const struct FVector& DecalSize, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, float LifeSpan); + static class UAudioComponent* SpawnDialogue2D(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, float VolumeMultiplier, float PitchMultiplier, float StartTime, bool bAutoDestroy); + static class UAudioComponent* SpawnDialogueAtLocation(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, bool bAutoDestroy); + static class UAudioComponent* SpawnDialogueAttached(class UDialogueWave* Dialogue, const struct FDialogueContext& Context, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, bool bAutoDestroy); + static class UParticleSystemComponent* SpawnEmitterAtLocation(const class UObject* WorldContextObject, class UParticleSystem* EmitterTemplate, const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale, bool bAutoDestroy, EPSCPoolMethod PoolingMethod, bool bAutoActivateSystem); + static class UParticleSystemComponent* SpawnEmitterAttached(class UParticleSystem* EmitterTemplate, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale, EAttachLocation LocationType, bool bAutoDestroy, EPSCPoolMethod PoolingMethod, bool bAutoActivate); + static class UForceFeedbackComponent* SpawnForceFeedbackAtLocation(const class UObject* WorldContextObject, class UForceFeedbackEffect* ForceFeedbackEffect, const struct FVector& Location, const struct FRotator& Rotation, bool bLooping, float IntensityMultiplier, float StartTime, class UForceFeedbackAttenuation* AttenuationSettings, bool bAutoDestroy); + static class UForceFeedbackComponent* SpawnForceFeedbackAttached(class UForceFeedbackEffect* ForceFeedbackEffect, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, bool bLooping, float IntensityMultiplier, float StartTime, class UForceFeedbackAttenuation* AttenuationSettings, bool bAutoDestroy); + static class UObject* SpawnObject(TSubclassOf ObjectClass, class UObject* Outer_0); + static class UAudioComponent* SpawnSound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, bool bPersistAcrossLevelTransition, bool bAutoDestroy); + static class UAudioComponent* SpawnSoundAtLocation(const class UObject* WorldContextObject, class USoundBase* Sound, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, bool bAutoDestroy); + static class UAudioComponent* SpawnSoundAttached(class USoundBase* Sound, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, bool bAutoDestroy); + static bool SuggestProjectileVelocity_CustomArc(const class UObject* WorldContextObject, struct FVector* OutLaunchVelocity, const struct FVector& StartPos, const struct FVector& EndPos, float OverrideGravityZ, float ArcParam); + static bool SuggestProjectileVelocity_MovingTarget(const class UObject* WorldContextObject, struct FVector* OutLaunchVelocity, const struct FVector& ProjectileStartLocation, class AActor* TargetActor, const struct FVector& TargetLocationOffset, double GravityZOverride, double TimeToTarget, EDrawDebugTrace DrawDebugType, float DrawDebugTime, const struct FLinearColor& DrawDebugColor); + static struct FVector TransformWorldToFirstPerson(const struct FMinimalViewInfo& ViewInfo, const struct FVector& WorldPosition, bool bIgnoreFirstPersonScale); + static void UnloadStreamLevel(const class UObject* WorldContextObject, class FName LevelName, const struct FLatentActionInfo& LatentInfo, bool bShouldBlockOnUnload); + static void UnloadStreamLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, const struct FLatentActionInfo& LatentInfo, bool bShouldBlockOnUnload); + static void UnRetainAllSoundsInSoundClass(class USoundClass* InSoundClass); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameplayStatics") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameplayStatics") + } + static class UGameplayStatics* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameplayStatics; + +// Class Engine.GameStateBase +// 0x0058 (0x0300 - 0x02A8) +class AGameStateBase : public AInfo +{ +public: + TSubclassOf GameModeClass; // 0x02A8(0x0008)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, Transient, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameModeBase* AuthorityGameMode; // 0x02B0(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf SpectatorClass; // 0x02B8(0x0008)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, Transient, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PlayerArray; // 0x02C0(0x0010)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + bool bReplicatedHasBegunPlay; // 0x02D0(0x0001)(Net, ZeroConstructor, Transient, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_2D1[0x3]; // 0x02D1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReplicatedWorldTimeSeconds; // 0x02D4(0x0004)(Net, ZeroConstructor, Transient, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + double ReplicatedWorldTimeSecondsDouble; // 0x02D8(0x0008)(Net, ZeroConstructor, Transient, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ServerWorldTimeSecondsDelta; // 0x02E0(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float ServerWorldTimeSecondsUpdateFrequency; // 0x02E4(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_2E8[0x18]; // 0x02E8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_GameModeClass(); + void OnRep_ReplicatedHasBegunPlay(); + void OnRep_ReplicatedWorldTimeSeconds(); + void OnRep_ReplicatedWorldTimeSecondsDouble(); + void OnRep_SpectatorClass(); + + float GetPlayerRespawnDelay(class AController* Controller) const; + float GetPlayerStartTime(class AController* Controller) const; + double GetServerWorldTimeSeconds() const; + bool HasBegunPlay() const; + bool HasMatchEnded() const; + bool HasMatchStarted() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameStateBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameStateBase") + } + static class AGameStateBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameStateBase; + +// Class Engine.GameState +// 0x0020 (0x0320 - 0x0300) +class AGameState : public AGameStateBase +{ +public: + class FName MatchState; // 0x0300(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FName PreviousMatchState; // 0x0308(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 ElapsedTime; // 0x0310(0x0004)(BlueprintVisible, BlueprintReadOnly, Net, ZeroConstructor, IsPlainOldData, RepNotify, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_314[0xC]; // 0x0314(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_ElapsedTime(); + void OnRep_MatchState(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameState") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameState") + } + static class AGameState* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AGameState; + +// Class Engine.GameUserSettings +// 0x0120 (0x0148 - 0x0028) +class UGameUserSettings final : public UObject +{ +public: + bool bUseVSync; // 0x0028(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseDynamicResolution; // 0x0029(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x5E]; // 0x002A(0x005E)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 ResolutionSizeX; // 0x0088(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint32 ResolutionSizeY; // 0x008C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint32 LastUserConfirmedResolutionSizeX; // 0x0090(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint32 LastUserConfirmedResolutionSizeY; // 0x0094(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 WindowPosX; // 0x0098(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 WindowPosY; // 0x009C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 FullscreenMode; // 0x00A0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastConfirmedFullscreenMode; // 0x00A4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 PreferredFullscreenMode; // 0x00A8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint32 Version; // 0x00AC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 AudioQualityLevel; // 0x00B0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastConfirmedAudioQualityLevel; // 0x00B4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float FrameRateLimit; // 0x00B8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DesiredScreenWidth; // 0x00C0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseDesiredScreenHeight; // 0x00C4(0x0001)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_C5[0x3]; // 0x00C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DesiredScreenHeight; // 0x00C8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastUserConfirmedDesiredScreenWidth; // 0x00CC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LastUserConfirmedDesiredScreenHeight; // 0x00D0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LastRecommendedScreenWidth; // 0x00D4(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LastRecommendedScreenHeight; // 0x00D8(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LastCPUBenchmarkResult; // 0x00DC(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LastGPUBenchmarkResult; // 0x00E0(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_E4[0x4]; // 0x00E4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LastCPUBenchmarkSteps; // 0x00E8(0x0010)(ZeroConstructor, Config, Protected, NativeAccessSpecifierProtected) + TArray LastGPUBenchmarkSteps; // 0x00F8(0x0010)(ZeroConstructor, Config, Protected, NativeAccessSpecifierProtected) + float LastGPUBenchmarkMultiplier; // 0x0108(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseHDRDisplayOutput; // 0x010C(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_10D[0x3]; // 0x010D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 HDRDisplayOutputNits; // 0x0110(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_114[0x24]; // 0x0114(0x0024)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate OnGameUserSettingsUINeedsUpdate; // 0x0138(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPrivate) + +public: + static struct FIntPoint GetDefaultResolution(); + static EWindowMode GetDefaultWindowMode(); + static struct FIntPoint GetDefaultWindowPosition(); + static int32 GetFramePace(); + static class UGameUserSettings* GetGameUserSettings(); + static int32 GetSyncInterval(); + + void ApplyHardwareBenchmarkResults(); + void ApplyNonResolutionSettings(); + void ApplyResolutionSettings(bool bCheckForCommandLineOverrides); + void ApplySettings(bool bCheckForCommandLineOverrides); + void ConfirmVideoMode(); + void EnableHDRDisplayOutput(bool bEnable, int32 DisplayNits); + float GetDefaultResolutionScale(); + float GetRecommendedResolutionScale(); + void LoadSettings(bool bForceReload); + void ResetToCurrentSettings(); + void RevertVideoMode(); + void RunHardwareBenchmark(int32 WorkScale, float CPUMultiplier, float GPUMultiplier); + void SaveSettings(); + void SetAntiAliasingQuality(int32 Value); + void SetAudioQualityLevel(int32 QualityLevel); + void SetBenchmarkFallbackValues(); + void SetDynamicResolutionEnabled(bool bEnable); + void SetFoliageQuality(int32 Value); + void SetFrameRateLimit(float NewLimit); + void SetFullscreenMode(EWindowMode InFullscreenMode); + void SetGlobalIlluminationQuality(int32 Value); + void SetOverallScalabilityLevel(int32 Value); + void SetPostProcessingQuality(int32 Value); + void SetReflectionQuality(int32 Value); + void SetResolutionScaleNormalized(float NewScaleNormalized); + void SetResolutionScaleValueEx(float NewScaleValue); + void SetScreenResolution(const struct FIntPoint& Resolution); + void SetShadingQuality(int32 Value); + void SetShadowQuality(int32 Value); + void SetTextureQuality(int32 Value); + void SetToDefaults(); + void SetViewDistanceQuality(int32 Value); + void SetVisualEffectQuality(int32 Value); + void SetVSyncEnabled(bool bEnable); + void ValidateSettings(); + + int32 GetAntiAliasingQuality() const; + int32 GetAudioQualityLevel() const; + int32 GetCurrentHDRDisplayNits() const; + struct FIntPoint GetDesktopResolution() const; + int32 GetFoliageQuality() const; + float GetFrameRateLimit() const; + EWindowMode GetFullscreenMode() const; + int32 GetGlobalIlluminationQuality() const; + EWindowMode GetLastConfirmedFullscreenMode() const; + struct FIntPoint GetLastConfirmedScreenResolution() const; + int32 GetOverallScalabilityLevel() const; + int32 GetPostProcessingQuality() const; + EWindowMode GetPreferredFullscreenMode() const; + int32 GetReflectionQuality() const; + void GetResolutionScaleInformationEx(float* CurrentScaleNormalized, float* CurrentScaleValue, float* MinScaleValue, float* MaxScaleValue) const; + float GetResolutionScaleNormalized() const; + struct FIntPoint GetScreenResolution() const; + int32 GetShadingQuality() const; + int32 GetShadowQuality() const; + int32 GetTextureQuality() const; + int32 GetViewDistanceQuality() const; + int32 GetVisualEffectQuality() const; + bool IsDirty() const; + bool IsDynamicResolutionDirty() const; + bool IsDynamicResolutionEnabled() const; + bool IsFullscreenModeDirty() const; + bool IsHDREnabled() const; + bool IsScreenResolutionDirty() const; + bool IsVSyncDirty() const; + bool IsVSyncEnabled() const; + bool SupportsHDRDisplayOutput() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameUserSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameUserSettings") + } + static class UGameUserSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameUserSettings; + +// Class Engine.GameViewportClient +// 0x0388 (0x03C0 - 0x0038) +class UGameViewportClient : public UScriptViewportClient +{ +public: + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UConsole* ViewportConsole; // 0x0040(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray DebugProperties; // 0x0048(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_58[0x10]; // 0x0058(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaxSplitscreenPlayers; // 0x0068(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0xC]; // 0x006C(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorld* World; // 0x0078(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UGameInstance* GameInstance; // 0x0080(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_88[0x338]; // 0x0088(0x0338)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetConsoleTarget(int32 PlayerIndex); + void ShowTitleSafeArea(); + void SSSwapControllers(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GameViewportClient") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GameViewportClient") + } + static class UGameViewportClient* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGameViewportClient; + +// Class Engine.GeneratedBlueprintBinding +// 0x0010 (0x0038 - 0x0028) +class UGeneratedBlueprintBinding final : public UDynamicBlueprintBinding +{ +public: + TArray GeneratedBlueprintBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("GeneratedBlueprintBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"GeneratedBlueprintBinding") + } + static class UGeneratedBlueprintBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UGeneratedBlueprintBinding; + +// Class Engine.HLODProxy +// 0x0060 (0x0088 - 0x0028) +class UHLODProxy final : public UObject +{ +public: + TArray ProxyMeshes; // 0x0028(0x0010)(Edit, ZeroConstructor, EditConst, NativeAccessSpecifierPrivate) + TMap HLODActors; // 0x0038(0x0050)(Edit, EditConst, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODProxy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODProxy") + } + static class UHLODProxy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODProxy; + +// Class Engine.HLODProxyDesc +// 0x0000 (0x0028 - 0x0028) +class UHLODProxyDesc final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODProxyDesc") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODProxyDesc") + } + static class UHLODProxyDesc* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODProxyDesc; + +// Class Engine.ImportantToggleSettingInterface +// 0x0000 (0x0000 - 0x0000) +class IImportantToggleSettingInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ImportantToggleSettingInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ImportantToggleSettingInterface") + } + static class IImportantToggleSettingInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IImportantToggleSettingInterface; + +// Class Engine.InheritableComponentHandler +// 0x0020 (0x0048 - 0x0028) +class UInheritableComponentHandler final : public UObject +{ +public: + TArray Records; // 0x0028(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TArray UnnecessaryComponents; // 0x0038(0x0010)(ExportObject, ZeroConstructor, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InheritableComponentHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InheritableComponentHandler") + } + static class UInheritableComponentHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInheritableComponentHandler; + +// Class Engine.InputActionDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UInputActionDelegateBinding final : public UInputDelegateBinding +{ +public: + TArray InputActionDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputActionDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputActionDelegateBinding") + } + static class UInputActionDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputActionDelegateBinding; + +// Class Engine.SoundConcurrency +// 0x0020 (0x0048 - 0x0028) +class USoundConcurrency final : public UObject +{ +public: + struct FSoundConcurrencySettings Concurrency; // 0x0028(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundConcurrency") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundConcurrency") + } + static class USoundConcurrency* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundConcurrency; + +// Class Engine.InputAxisDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UInputAxisDelegateBinding final : public UInputDelegateBinding +{ +public: + TArray InputAxisDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputAxisDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputAxisDelegateBinding") + } + static class UInputAxisDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputAxisDelegateBinding; + +// Class Engine.InputKeyDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UInputKeyDelegateBinding final : public UInputDelegateBinding +{ +public: + TArray InputKeyDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputKeyDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputKeyDelegateBinding") + } + static class UInputKeyDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputKeyDelegateBinding; + +// Class Engine.InputTouchDelegateBinding +// 0x0010 (0x0038 - 0x0028) +class UInputTouchDelegateBinding final : public UInputDelegateBinding +{ +public: + TArray InputTouchDelegateBindings; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputTouchDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputTouchDelegateBinding") + } + static class UInputTouchDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputTouchDelegateBinding; + +// Class Engine.InputVectorAxisDelegateBinding +// 0x0000 (0x0038 - 0x0038) +class UInputVectorAxisDelegateBinding final : public UInputAxisKeyDelegateBinding +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputVectorAxisDelegateBinding") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputVectorAxisDelegateBinding") + } + static class UInputVectorAxisDelegateBinding* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputVectorAxisDelegateBinding; + +// Class Engine.InstancedPlacementPartitionActor +// 0x0000 (0x02B8 - 0x02B8) +class AInstancedPlacementPartitionActor final : public AISMPartitionActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InstancedPlacementPartitionActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InstancedPlacementPartitionActor") + } + static class AInstancedPlacementPartitionActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AInstancedPlacementPartitionActor; + +// Class Engine.NetFaultConfig +// 0x0000 (0x0088 - 0x0088) +class UNetFaultConfig final : public UEscalationManagerConfig +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetFaultConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetFaultConfig") + } + static class UNetFaultConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetFaultConfig; + +// Class Engine.StringTable +// 0x0018 (0x0040 - 0x0028) +class UStringTable final : public UObject +{ +public: + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StringTable") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StringTable") + } + static class UStringTable* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStringTable; + +// Class Engine.InterpCurveEdSetup +// 0x0018 (0x0040 - 0x0028) +class UInterpCurveEdSetup final : public UObject +{ +public: + TArray Tabs; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 ActiveTab; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InterpCurveEdSetup") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InterpCurveEdSetup") + } + static class UInterpCurveEdSetup* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInterpCurveEdSetup; + +// Class Engine.KillZVolume +// 0x0000 (0x02F0 - 0x02F0) +class AKillZVolume final : public APhysicsVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KillZVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KillZVolume") + } + static class AKillZVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AKillZVolume; + +// Class Engine.KismetArrayLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetArrayLibrary final : public UBlueprintFunctionLibrary +{ +public: + static int32 Array_Add(const TArray& TargetArray, const int32& NewItem); + static int32 Array_AddUnique(const TArray& TargetArray, const int32& NewItem); + static void Array_Append(const TArray& TargetArray, const TArray& SourceArray); + static void Array_Clear(const TArray& TargetArray); + static bool Array_Contains(const TArray& TargetArray, const int32& ItemToFind); + static int32 Array_Find(const TArray& TargetArray, const int32& ItemToFind); + static void Array_Get(const TArray& TargetArray, int32 Index_0, int32* Item); + static bool Array_Identical(const TArray& ArrayA, const TArray& ArrayB); + static void Array_Insert(const TArray& TargetArray, const int32& NewItem, int32 Index_0); + static bool Array_IsEmpty(const TArray& TargetArray); + static bool Array_IsNotEmpty(const TArray& TargetArray); + static bool Array_IsValidIndex(const TArray& TargetArray, int32 IndexToTest); + static int32 Array_LastIndex(const TArray& TargetArray); + static int32 Array_Length(const TArray& TargetArray); + static void Array_Random(const TArray& TargetArray, int32* OutItem, int32* OutIndex); + static void Array_RandomFromStream(const TArray& TargetArray, struct FRandomStream& RandomStream, int32* OutItem, int32* OutIndex); + static void Array_Remove(const TArray& TargetArray, int32 IndexToRemove); + static bool Array_RemoveItem(const TArray& TargetArray, const int32& Item); + static void Array_Resize(const TArray& TargetArray, int32 Size); + static void Array_Reverse(const TArray& TargetArray); + static void Array_Set(const TArray& TargetArray, int32 Index_0, const int32& Item, bool bSizeToFit); + static void Array_Shuffle(const TArray& TargetArray); + static void Array_ShuffleFromStream(const TArray& TargetArray, struct FRandomStream& RandomStream); + static void Array_Swap(const TArray& TargetArray, int32 FirstIndex, int32 SecondIndex); + static void FilterArray(const TArray& TargetArray, TSubclassOf FilterClass, TArray* FilteredArray); + static void SetArrayPropertyByName(class UObject* Object, class FName PropertyName, const TArray& Value); + static void SortByteArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder); + static void SortFloatArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder); + static void SortInt64Array(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder); + static void SortIntArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder); + static void SortNameArray(TArray& TargetArray, bool bStableSort, bool bLexicalSort, EArraySortOrder SortOrder); + static void SortStringArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetArrayLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetArrayLibrary") + } + static class UKismetArrayLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetArrayLibrary; + +// Class Engine.KismetGuidLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetGuidLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class FString Conv_GuidToString(const struct FGuid& InGuid); + static bool EqualEqual_GuidGuid(const struct FGuid& A, const struct FGuid& B); + static void Invalidate_Guid(struct FGuid& InGuid); + static bool IsValid_Guid(const struct FGuid& InGuid); + static struct FGuid NewGuid(); + static bool NotEqual_GuidGuid(const struct FGuid& A, const struct FGuid& B); + static void Parse_StringToGuid(const class FString& GuidString, struct FGuid* OutGuid, bool* Success); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetGuidLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetGuidLibrary") + } + static class UKismetGuidLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetGuidLibrary; + +// Class Engine.KismetInternationalizationLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetInternationalizationLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void ClearCurrentAssetGroupCulture(const class FName AssetGroup, const bool SaveToConfig); + static class FString GetCultureDisplayName(const class FString& Culture, const bool Localized); + static class FString GetCurrentAssetGroupCulture(const class FName AssetGroup); + static class FString GetCurrentCulture(); + static class FString GetCurrentLanguage(); + static class FString GetCurrentLocale(); + static TArray GetLocalizedCultures(const bool IncludeGame, const bool IncludeEngine, const bool IncludeEditor, const bool IncludeAdditional); + static class FString GetNativeCulture(const ELocalizedTextSourceCategory TextCategory); + static class FString GetSuitableCulture(const TArray& AvailableCultures, const class FString& CultureToMatch, const class FString& FallbackCulture); + static bool IsCultureRightToLeft(const class FString& Culture); + static bool SetCurrentAssetGroupCulture(const class FName AssetGroup, const class FString& Culture, const bool SaveToConfig); + static bool SetCurrentCulture(const class FString& Culture, const bool SaveToConfig); + static bool SetCurrentLanguage(const class FString& Culture, const bool SaveToConfig); + static bool SetCurrentLanguageAndLocale(const class FString& Culture, const bool SaveToConfig); + static bool SetCurrentLocale(const class FString& Culture, const bool SaveToConfig); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetInternationalizationLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetInternationalizationLibrary") + } + static class UKismetInternationalizationLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetInternationalizationLibrary; + +// Class Engine.VirtualTextureAdapter +// 0x0020 (0x0150 - 0x0130) +class UVirtualTextureAdapter final : public UTexture +{ +public: + class UTexture* Texture; // 0x0130(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* OverrideWithTextureFormat; // 0x0138(0x0008)(Edit, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseDefaultTileSizes; // 0x0140(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_141[0x3]; // 0x0141(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TileSize; // 0x0144(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TileBorderSize; // 0x0148(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14C[0x4]; // 0x014C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VirtualTextureAdapter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VirtualTextureAdapter") + } + static class UVirtualTextureAdapter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVirtualTextureAdapter; + +// Class Engine.KismetMaterialLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetMaterialLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class UMaterialInstanceDynamic* CreateDynamicMaterialInstance(class UObject* WorldContextObject, class UMaterialInterface* Parent, class FName OptionalName, EMIDCreationFlags CreationFlags); + static float GetScalarParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName); + static struct FLinearColor GetVectorParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName); + static void SetScalarParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName, float ParameterValue); + static void SetVectorParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName, const struct FLinearColor& ParameterValue); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetMaterialLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetMaterialLibrary") + } + static class UKismetMaterialLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetMaterialLibrary; + +// Class Engine.KismetMathLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetMathLibrary final : public UBlueprintFunctionLibrary +{ +public: + static double abs(double A); + static int32 Abs_Int(int32 A); + static int64 Abs_Int64(int64 A); + static double acos(double A); + static uint8 Add_ByteByte(uint8 A, uint8 B); + static struct FDateTime Add_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static struct FDateTime Add_DateTimeTimespan(const struct FDateTime& A, const struct FTimespan& B); + static double Add_DoubleDouble(double A, double B); + static int64 Add_Int64Int64(int64 A, int64 B); + static int32 Add_IntInt(int32 A, int32 B); + static struct FIntPoint Add_IntPointInt(const struct FIntPoint& A, int32 B); + static struct FIntPoint Add_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static struct FLinearColor Add_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static struct FMatrix Add_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B); + static struct FQuat Add_QuatQuat(const struct FQuat& A, const struct FQuat& B); + static struct FTimespan Add_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static struct FVector2D Add_Vector2DFloat(const struct FVector2D& A, double B); + static struct FVector2D Add_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static struct FVector4 Add_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static struct FVector Add_VectorFloat(const struct FVector& A, double B); + static struct FVector Add_VectorInt(const struct FVector& A, int32 B); + static struct FVector Add_VectorVector(const struct FVector& A, const struct FVector& B); + static int64 And_Int64Int64(int64 A, int64 B); + static int32 And_IntInt(int32 A, int32 B); + static double asin(double A); + static double atan(double A); + static double Atan2(double Y, double X); + static void AverageOfIntArray(const TArray& IntArray, float* AverageValue); + static uint8 BMax(uint8 A, uint8 B); + static uint8 BMin(uint8 A, uint8 B); + static bool BooleanAND(bool A, bool B); + static bool BooleanNAND(bool A, bool B); + static bool BooleanNOR(bool A, bool B); + static bool BooleanOR(bool A, bool B); + static bool BooleanXOR(bool A, bool B); + static struct FBox Box_ExpandBy(const struct FBox& Box, const struct FVector& Negative, const struct FVector& Positive); + static struct FVector Box_GetClosestPointTo(const struct FBox& Box, const struct FVector& Point); + static bool Box_Intersects(const struct FBox& A, const struct FBox& B); + static bool Box_IsInside(const struct FBox& InnerTest, const struct FBox& OuterTest); + static bool Box_IsInsideOrOn(const struct FBox& InnerTest, const struct FBox& OuterTest); + static bool Box_IsPointInside(const struct FBox& Box, const struct FVector& Point); + static struct FBox Box_Overlap(const struct FBox& A, const struct FBox& B); + static void BreakBoxSphereBounds(const struct FBoxSphereBounds& InBoxSphereBounds, struct FVector* Origin, struct FVector* BoxExtent, float* SphereRadius); + static void BreakColor(const struct FLinearColor& InColor, float* R, float* G, float* B, float* A); + static void BreakDateTime(const struct FDateTime& InDateTime, int32* Year, int32* Month, int32* Day, int32* Hour, int32* Minute, int32* Second, int32* Millisecond); + static void BreakFrameRate(const struct FFrameRate& InFrameRate, int32* Numerator, int32* Denominator); + static void BreakQualifiedFrameTime(const struct FQualifiedFrameTime& InFrameTime, struct FFrameNumber* Frame, struct FFrameRate* FrameRate, float* SubFrame); + static void BreakQuat(const struct FQuat& InQuat, float* X, float* Y, float* Z, float* W); + static void BreakRandomStream(const struct FRandomStream& InRandomStream, int32* InitialSeed); + static void BreakRotator(const struct FRotator& InRot, float* Roll, float* pitch, float* Yaw); + static void BreakRotIntoAxes(const struct FRotator& InRot, struct FVector* X, struct FVector* Y, struct FVector* Z); + static void BreakTimespan(const struct FTimespan& InTimespan, int32* Days, int32* Hours, int32* Minutes, int32* Seconds, int32* Milliseconds); + static void BreakTimespan2(const struct FTimespan& InTimespan, int32* Days, int32* Hours, int32* Minutes, int32* Seconds, int32* FractionNano); + static void BreakTransform(const struct FTransform& InTransform, struct FVector* Location, struct FRotator* Rotation, struct FVector* Scale); + static void BreakVector(const struct FVector& InVec, double* X, double* Y, double* Z); + static void BreakVector2D(const struct FVector2D& InVec, double* X, double* Y); + static void BreakVector4(const struct FVector4& InVec, double* X, double* Y, double* Z, double* W); + static void BreakVector_NetQuantize(const struct FVector_NetQuantize& InVec, double* X, double* Y, double* Z); + static void BreakVector_NetQuantize10(const struct FVector_NetQuantize10& InVec, double* X, double* Y, double* Z); + static void BreakVector_NetQuantize100(const struct FVector_NetQuantize100& InVec, double* X, double* Y, double* Z); + static void BreakVector_NetQuantizeNormal(const struct FVector_NetQuantizeNormal& InVec, double* X, double* Y, double* Z); + static struct FLinearColor CInterpTo(const struct FLinearColor& Current, const struct FLinearColor& Target, float DeltaTime, float InterpSpeed); + static int32 clamp(int32 Value, int32 Param_min_0, int32 Param_max_0); + static double ClampAngle(double AngleDegrees, double MinAngleDegrees, double MaxAngleDegrees); + static struct FVector2D ClampAxes2D(const struct FVector2D& A, double MinAxisVal, double MaxAxisVal); + static float ClampAxis(float Angle); + static int64 ClampInt64(int64 Value, int64 Param_min_0, int64 Param_max_0); + static struct FVector ClampVectorSize(const struct FVector& A, double Param_min_0, double Param_max_0); + static bool ClassIsChildOf(TSubclassOf TestClass, TSubclassOf ParentClass); + static struct FRotator ComposeRotators(const struct FRotator& A, const struct FRotator& B); + static struct FTransform ComposeTransforms(const struct FTransform& A, const struct FTransform& B); + static uint8 Conv_BoolToByte(bool InBool); + static double Conv_BoolToDouble(bool InBool); + static int32 Conv_BoolToInt(bool InBool); + static double Conv_ByteToDouble(uint8 InByte); + static int32 Conv_ByteToInt(uint8 InByte); + static int64 Conv_ByteToInt64(uint8 InByte); + static struct FLinearColor Conv_ColorToLinearColor(const struct FColor& InColor); + static float Conv_DoubleToFloat(double InDouble); + static int64 Conv_DoubleToInt64(double InDouble); + static struct FLinearColor Conv_DoubleToLinearColor(double InDouble); + static struct FVector Conv_DoubleToVector(double InDouble); + static struct FVector2D Conv_DoubleToVector2D(double InDouble); + static double Conv_FloatToDouble(float InFloat); + static uint8 Conv_Int64ToByte(int64 inInt); + static double Conv_Int64ToDouble(int64 inInt); + static int32 Conv_Int64ToInt(int64 inInt); + static struct FVector2D Conv_IntPointToVector2D(const struct FIntPoint& InIntPoint); + static bool Conv_IntToBool(int32 inInt); + static uint8 Conv_IntToByte(int32 inInt); + static double Conv_IntToDouble(int32 inInt); + static int64 Conv_IntToInt64(int32 inInt); + static struct FIntVector Conv_IntToIntVector(int32 inInt); + static struct FVector Conv_IntToVector(int32 inInt); + static struct FVector Conv_IntVectorToVector(const struct FIntVector& InIntVector); + static struct FColor Conv_LinearColorToColor(const struct FLinearColor& InLinearColor, bool InUseSRGB); + static struct FVector Conv_LinearColorToVector(const struct FLinearColor& InLinearColor); + static struct FRotator Conv_MatrixToRotator(const struct FMatrix& InMatrix); + static struct FTransform Conv_MatrixToTransform(const struct FMatrix& InMatrix); + static struct FQuat Conv_RotatorToQuaternion(const struct FRotator& InRot); + static struct FTransform Conv_RotatorToTransform(const struct FRotator& InRotator); + static struct FVector Conv_RotatorToVector(const struct FRotator& InRot); + static struct FMatrix Conv_TransformToMatrix(const struct FTransform& Transform); + static struct FIntPoint Conv_Vector2DToIntPoint(const struct FVector2D& InVector2D); + static struct FVector Conv_Vector2DToVector(const struct FVector2D& InVector2D, float Z); + static struct FQuat Conv_Vector4ToQuaternion(const struct FVector4& InVec); + static struct FRotator Conv_Vector4ToRotator(const struct FVector4& InVec); + static struct FVector Conv_Vector4ToVector(const struct FVector4& InVector4); + static struct FLinearColor Conv_VectorToLinearColor(const struct FVector& InVec); + static struct FQuat Conv_VectorToQuaternion(const struct FVector& InVec); + static struct FRotator Conv_VectorToRotator(const struct FVector& InVec); + static struct FTransform Conv_VectorToTransform(const struct FVector& InLocation); + static struct FVector2D Conv_VectorToVector2D(const struct FVector& InVector); + static struct FIntPoint Convert1DTo2D(int32 Index1D, int32 XSize); + static struct FIntVector Convert1DTo3D(int32 Index1D, int32 XSize, int32 YSize); + static int32 Convert2DTo1D(const struct FIntPoint& Index2D, int32 XSize); + static int32 Convert3DTo1D(const struct FIntVector& Index3D, int32 XSize, int32 YSize); + static double cos(double A); + static struct FVector CreateVectorFromYawPitch(float Yaw, float pitch, float Length); + static struct FVector Cross_VectorVector(const struct FVector& A, const struct FVector& B); + static double CrossProduct2D(const struct FVector2D& A, const struct FVector2D& B); + static bool DateTimeFromIsoString(const class FString& IsoString, struct FDateTime* Result); + static bool DateTimeFromString(const class FString& DateTimeString, struct FDateTime* Result); + static struct FDateTime DateTimeMaxValue(); + static struct FDateTime DateTimeMinValue(); + static int32 DaysInMonth(int32 Year, int32 Month); + static int32 DaysInYear(int32 Year); + static double DegAcos(double A); + static double DegAsin(double A); + static double DegAtan(double A); + static double DegAtan2(double Y, double X); + static double DegCos(double A); + static double DegreesToRadians(double A); + static double DegSin(double A); + static double DegTan(double A); + static double Distance2D(const struct FVector2D& v1, const struct FVector2D& v2); + static double DistanceSquared2D(const struct FVector2D& v1, const struct FVector2D& v2); + static uint8 Divide_ByteByte(uint8 A, uint8 B); + static double Divide_DoubleDouble(double A, double B); + static int64 Divide_Int64Int64(int64 A, int64 B); + static int32 Divide_IntInt(int32 A, int32 B); + static struct FIntPoint Divide_IntPointInt(const struct FIntPoint& A, int32 B); + static struct FIntPoint Divide_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static struct FLinearColor Divide_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static struct FTimespan Divide_TimespanFloat(const struct FTimespan& A, float Scalar); + static struct FVector2D Divide_Vector2DFloat(const struct FVector2D& A, double B); + static struct FVector2D Divide_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static struct FVector4 Divide_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static struct FVector Divide_VectorFloat(const struct FVector& A, double B); + static struct FVector Divide_VectorInt(const struct FVector& A, int32 B); + static struct FVector Divide_VectorVector(const struct FVector& A, const struct FVector& B); + static double Dot_VectorVector(const struct FVector& A, const struct FVector& B); + static double DotProduct2D(const struct FVector2D& A, const struct FVector2D& B); + static float DynamicWeightedMovingAverage_Float(float CurrentSample, float PreviousSample, float MaxDistance, float MinWeight, float MaxWeight); + static struct FRotator DynamicWeightedMovingAverage_FRotator(const struct FRotator& CurrentSample, const struct FRotator& PreviousSample, float MaxDistance, float MinWeight, float MaxWeight); + static struct FVector DynamicWeightedMovingAverage_FVector(const struct FVector& CurrentSample, const struct FVector& PreviousSample, float MaxDistance, float MinWeight, float MaxWeight); + static double Ease(double A, double B, double Alpha, EEasingFunc EasingFunc, double BlendExp, int32 Steps); + static bool Equal_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static bool EqualEqual_BoolBool(bool A, bool B); + static bool EqualEqual_ByteByte(uint8 A, uint8 B); + static bool EqualEqual_ClassClass(class UClass* A, class UClass* B); + static bool EqualEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool EqualEqual_DoubleDouble(double A, double B); + static bool EqualEqual_Int64Int64(int64 A, int64 B); + static bool EqualEqual_IntInt(int32 A, int32 B); + static bool EqualEqual_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static bool EqualEqual_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B, float Tolerance); + static bool EqualEqual_NameName(class FName A, class FName B); + static bool EqualEqual_ObjectObject(class UObject* A, class UObject* B); + static bool EqualEqual_QuatQuat(const struct FQuat& A, const struct FQuat& B, float Tolerance); + static bool EqualEqual_RotatorRotator(const struct FRotator& A, const struct FRotator& B, float ErrorTolerance); + static bool EqualEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static bool EqualEqual_TransformTransform(const struct FTransform& A, const struct FTransform& B); + static bool EqualEqual_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B, float ErrorTolerance); + static bool EqualEqual_Vector4Vector4(const struct FVector4& A, const struct FVector4& B, float ErrorTolerance); + static bool EqualEqual_VectorVector(const struct FVector& A, const struct FVector& B, float ErrorTolerance); + static bool EqualExactly_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static bool EqualExactly_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static bool EqualExactly_VectorVector(const struct FVector& A, const struct FVector& B); + static double exp(double A); + static int32 FCeil(double A); + static int64 FCeil64(double A); + static double FClamp(double Value, double Param_min_0, double Param_max_0); + static int32 FFloor(double A); + static int64 FFloor64(double A); + static struct FVector FindClosestPointOnLine(const struct FVector& Point, const struct FVector& LineOrigin, const struct FVector& LineDirection); + static struct FVector FindClosestPointOnSegment(const struct FVector& Point, const struct FVector& SegmentStart, const struct FVector& SegmentEnd); + static struct FRotator FindLookAtRotation(const struct FVector& Start, const struct FVector& Target); + static void FindNearestPointsOnLineSegments(const struct FVector& Segment1Start, const struct FVector& Segment1End, const struct FVector& Segment2Start, const struct FVector& Segment2End, struct FVector* Segment1Point, struct FVector* Segment2Point); + static struct FRotator FindRelativeLookAtRotation(const struct FTransform& StartTransform, const struct FVector& TargetLocation); + static double FInterpEaseInOut(double A, double B, double Alpha, double Exponent); + static double FInterpTo(double Current, double Target, double DeltaTime, double InterpSpeed); + static double FInterpTo_Constant(double Current, double Target, double DeltaTime, double InterpSpeed); + static float FixedTurn(float InCurrent, float InDesired, float InDeltaRate); + static float FloatSpringInterp(float Current, float Target, struct FFloatSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bClamp, float MinValue, float MaxValue, bool bInitializeFromTarget); + static double FMax(double A, double B); + static double FMin(double A, double B); + static int32 FMod(double Dividend, double Divisor, double* Remainder); + static int64 FMod64(double Dividend, double Divisor, double* Remainder); + static double Fraction(double A); + static struct FTimespan FromDays(float Days); + static struct FTimespan FromHours(float Hours); + static struct FTimespan FromMilliseconds(float Milliseconds); + static struct FTimespan FromMinutes(float Minutes); + static struct FTimespan FromSeconds(float Seconds); + static struct FDateTime FromUnixTimestamp(const int64 UnixTime); + static int32 FTrunc(double A); + static int64 FTrunc64(double A); + static struct FIntVector FTruncVector(const struct FVector& InVector); + static double FWrap(double Value, double Param_min_0, double Param_max_0); + static struct FVector2D GetAbs2D(const struct FVector2D& A); + static double GetAbsMax2D(const struct FVector2D& A); + static void GetAxes(const struct FRotator& A, struct FVector* X, struct FVector* Y, struct FVector* Z); + static void GetAzimuthAndElevation(const struct FVector& InDirection, const struct FTransform& ReferenceFrame, float* Azimuth, float* Elevation); + static struct FVector GetBoxCenter(const struct FBox& InBox); + static struct FVector GetBoxSize(const struct FBox& InBox); + static double GetBoxVolume(const struct FBox& InBox); + static struct FDateTime GetDate(const struct FDateTime& A); + static int32 GetDay(const struct FDateTime& A); + static int32 GetDayOfYear(const struct FDateTime& A); + static int32 GetDays(const struct FTimespan& A); + static struct FVector GetDirectionUnitVector(const struct FVector& From, const struct FVector& To); + static struct FTimespan GetDuration(const struct FTimespan& A); + static struct FVector GetForwardVector(const struct FRotator& InRot); + static int32 GetHour(const struct FDateTime& A); + static int32 GetHour12(const struct FDateTime& A); + static int32 GetHours(const struct FTimespan& A); + static double GetMax2D(const struct FVector2D& A); + static double GetMaxElement(const struct FVector& A); + static int32 GetMillisecond(const struct FDateTime& A); + static int32 GetMilliseconds(const struct FTimespan& A); + static double GetMin2D(const struct FVector2D& A); + static double GetMinElement(const struct FVector& A); + static int32 GetMinute(const struct FDateTime& A); + static int32 GetMinutes(const struct FTimespan& A); + static int32 GetMonth(const struct FDateTime& A); + static double GetPI(); + static float GetPointDistanceToLine(const struct FVector& Point, const struct FVector& LineOrigin, const struct FVector& LineDirection); + static float GetPointDistanceToSegment(const struct FVector& Point, const struct FVector& SegmentStart, const struct FVector& SegmentEnd); + static struct FVector GetReflectionVector(const struct FVector& Direction, const struct FVector& SurfaceNormal); + static struct FVector GetRightVector(const struct FRotator& InRot); + static struct FVector2D GetRotated2D(const struct FVector2D& A, float AngleDeg); + static float GetRuntimeFloatCurveValue(const struct FRuntimeFloatCurve& Curve, const float InTime, const float InDefaultValue); + static int32 GetSecond(const struct FDateTime& A); + static int32 GetSeconds(const struct FTimespan& A); + static void GetSlopeDegreeAngles(const struct FVector& MyRightYAxis, const struct FVector& FloorNormal, const struct FVector& UpVector, float* OutSlopePitchDegreeAngle, float* OutSlopeRollDegreeAngle); + static double GetTAU(); + static struct FTimespan GetTimeOfDay(const struct FDateTime& A); + static float GetTotalDays(const struct FTimespan& A); + static float GetTotalHours(const struct FTimespan& A); + static float GetTotalMilliseconds(const struct FTimespan& A); + static float GetTotalMinutes(const struct FTimespan& A); + static float GetTotalSeconds(const struct FTimespan& A); + static struct FVector GetUpVector(const struct FRotator& InRot); + static struct FVector GetVectorArrayAverage(const TArray& Vectors); + static void GetYawPitchFromVector(const struct FVector& InVec, float* Yaw, float* pitch); + static int32 GetYear(const struct FDateTime& A); + static bool Greater_ByteByte(uint8 A, uint8 B); + static bool Greater_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool Greater_DoubleDouble(double A, double B); + static bool Greater_Int64Int64(int64 A, int64 B); + static bool Greater_IntInt(int32 A, int32 B); + static bool Greater_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static bool GreaterEqual_ByteByte(uint8 A, uint8 B); + static bool GreaterEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool GreaterEqual_DoubleDouble(double A, double B); + static bool GreaterEqual_Int64Int64(int64 A, int64 B); + static bool GreaterEqual_IntInt(int32 A, int32 B); + static bool GreaterEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static struct FVector GreaterGreater_VectorRotator(const struct FVector& A, const struct FRotator& B); + static double GridSnap_Float(double Location, double GridSize); + static struct FLinearColor HSVToRGB(float H, float S, float V, float A); + static void HSVToRGB_Vector(const struct FLinearColor& HSV, struct FLinearColor* RGB); + static struct FLinearColor HSVToRGBLinear(const struct FLinearColor& HSV); + static double Hypotenuse(double Width, double Height); + static bool InRange_FloatFloat(double Value, double Param_min_0, double Param_max_0, bool InclusiveMin, bool InclusiveMax); + static bool InRange_Int64Int64(int64 Value, int64 Param_min_0, int64 Param_max_0, bool InclusiveMin, bool InclusiveMax); + static bool InRange_IntInt(int32 Value, int32 Param_min_0, int32 Param_max_0, bool InclusiveMin, bool InclusiveMax); + static struct FIntPoint IntPoint_Down(); + static struct FIntPoint IntPoint_Left(); + static struct FIntPoint IntPoint_One(); + static struct FIntPoint IntPoint_Right(); + static struct FIntPoint IntPoint_Up(); + static struct FIntPoint IntPoint_Zero(); + static struct FVector InverseTransformDirection(const struct FTransform& T, const struct FVector& Direction); + static struct FVector InverseTransformLocation(const struct FTransform& T, const struct FVector& Location); + static struct FRotator InverseTransformRotation(const struct FTransform& T, const struct FRotator& Rotation); + static struct FTransform InvertTransform(const struct FTransform& T); + static bool IsAfternoon(const struct FDateTime& A); + static bool IsLeapYear(int32 Year); + static bool IsMorning(const struct FDateTime& A); + static bool IsNearlyZero2D(const struct FVector2D& A, float Tolerance); + static bool IsPointInBox(const struct FVector& Point, const struct FVector& BoxOrigin, const struct FVector& BoxExtent); + static bool IsPointInBox_Box(const struct FVector& Point, const struct FBox& Box); + static bool IsPointInBoxWithTransform(const struct FVector& Point, const struct FTransform& BoxWorldTransform, const struct FVector& BoxExtent); + static bool IsPointInBoxWithTransform_Box(const struct FVector& Point, const struct FTransform& BoxWorldTransform, const struct FBox& BoxExtent); + static bool IsZero2D(const struct FVector2D& A); + static double Lerp(double A, double B, double Alpha); + static bool Less_ByteByte(uint8 A, uint8 B); + static bool Less_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool Less_DoubleDouble(double A, double B); + static bool Less_Int64Int64(int64 A, int64 B); + static bool Less_IntInt(int32 A, int32 B); + static bool Less_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static bool LessEqual_ByteByte(uint8 A, uint8 B); + static bool LessEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool LessEqual_DoubleDouble(double A, double B); + static bool LessEqual_Int64Int64(int64 A, int64 B); + static bool LessEqual_IntInt(int32 A, int32 B); + static bool LessEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static struct FVector LessLess_VectorRotator(const struct FVector& A, const struct FRotator& B); + static struct FLinearColor LinearColor_Black(); + static struct FLinearColor LinearColor_Blue(); + static struct FLinearColor LinearColor_Desaturated(const struct FLinearColor& InColor, float InDesaturation); + static float LinearColor_Distance(const struct FLinearColor& C1, const struct FLinearColor& C2); + static float LinearColor_GetLuminance(const struct FLinearColor& InColor); + static float LinearColor_GetMax(const struct FLinearColor& InColor); + static float LinearColor_GetMin(const struct FLinearColor& InColor); + static struct FLinearColor LinearColor_Gray(); + static struct FLinearColor LinearColor_Green(); + static bool LinearColor_IsNearEqual(const struct FLinearColor& A, const struct FLinearColor& B, float Tolerance); + static struct FColor LinearColor_Quantize(const struct FLinearColor& InColor); + static struct FColor LinearColor_QuantizeRound(const struct FLinearColor& InColor); + static struct FLinearColor LinearColor_Red(); + static void LinearColor_Set(struct FLinearColor& InOutColor, const struct FLinearColor& InColor); + static void LinearColor_SetFromHSV(struct FLinearColor& InOutColor, float H, float S, float V, float A); + static void LinearColor_SetFromPow22(struct FLinearColor& InOutColor, const struct FColor& InColor); + static void LinearColor_SetFromSRGB(struct FLinearColor& InOutColor, const struct FColor& InSRGB); + static void LinearColor_SetRandomHue(struct FLinearColor& InOutColor); + static void LinearColor_SetRGBA(struct FLinearColor& InOutColor, float R, float G, float B, float A); + static void LinearColor_SetTemperature(struct FLinearColor& InOutColor, float InTemperature); + static struct FLinearColor LinearColor_ToNewOpacity(const struct FLinearColor& InColor, float InOpacity); + static struct FColor LinearColor_ToRGBE(const struct FLinearColor& InLinearColor); + static struct FLinearColor LinearColor_Transparent(); + static struct FLinearColor LinearColor_White(); + static struct FLinearColor LinearColor_Yellow(); + static struct FLinearColor LinearColorLerp(const struct FLinearColor& A, const struct FLinearColor& B, float Alpha); + static struct FLinearColor LinearColorLerpUsingHSV(const struct FLinearColor& A, const struct FLinearColor& B, float Alpha); + static bool LinePlaneIntersection(const struct FVector& LineStart, const struct FVector& LineEnd, const struct FPlane& APlane, float* T, struct FVector* Intersection); + static bool LinePlaneIntersection_OriginNormal(const struct FVector& LineStart, const struct FVector& LineEnd, const struct FVector& PlaneOrigin, const struct FVector& PlaneNormal, float* T, struct FVector* Intersection); + static double log(double A, double base); + static double Loge(double A); + static struct FBox MakeBox(const struct FVector& Param_min_0, const struct FVector& Param_max_0); + static struct FBox2D MakeBox2D(const struct FVector2D& Param_min_0, const struct FVector2D& Param_max_0); + static struct FBoxSphereBounds MakeBoxSphereBounds(const struct FVector& Origin, const struct FVector& BoxExtent, float SphereRadius); + static struct FBox MakeBoxWithOrigin(const struct FVector& Origin, const struct FVector& Extent); + static struct FLinearColor MakeColor(float R, float G, float B, float A); + static struct FDateTime MakeDateTime(int32 Year, int32 Month, int32 Day, int32 Hour, int32 Minute, int32 Second, int32 Millisecond); + static struct FFrameRate MakeFrameRate(int32 Numerator, int32 Denominator); + static struct FPlane MakePlaneFromPointAndNormal(const struct FVector& Point, const struct FVector& Normal_0); + static float MakePulsatingValue(float InCurrentTime, float InPulsesPerSecond, float InPhase); + static struct FQualifiedFrameTime MakeQualifiedFrameTime(const struct FFrameNumber& Frame, const struct FFrameRate& FrameRate, float SubFrame); + static struct FQuat MakeQuat(float X, float Y, float Z, float W); + static struct FRandomStream MakeRandomStream(int32 InitialSeed); + static struct FTransform MakeRelativeTransform(const struct FTransform& A, const struct FTransform& RelativeTo); + static struct FRotator MakeRotationFromAxes(const struct FVector& Forward, const struct FVector& Right, const struct FVector& Up); + static struct FRotator MakeRotator(float Roll, float pitch, float Yaw); + static struct FRotator MakeRotFromX(const struct FVector& X); + static struct FRotator MakeRotFromXY(const struct FVector& X, const struct FVector& Y); + static struct FRotator MakeRotFromXZ(const struct FVector& X, const struct FVector& Z); + static struct FRotator MakeRotFromY(const struct FVector& Y); + static struct FRotator MakeRotFromYX(const struct FVector& Y, const struct FVector& X); + static struct FRotator MakeRotFromYZ(const struct FVector& Y, const struct FVector& Z); + static struct FRotator MakeRotFromZ(const struct FVector& Z); + static struct FRotator MakeRotFromZX(const struct FVector& Z, const struct FVector& X); + static struct FRotator MakeRotFromZY(const struct FVector& Z, const struct FVector& Y); + static struct FTimespan MakeTimespan(int32 Days, int32 Hours, int32 Minutes, int32 Seconds, int32 Milliseconds); + static struct FTimespan MakeTimespan2(int32 Days, int32 Hours, int32 Minutes, int32 Seconds, int32 FractionNano); + static struct FTransform MakeTransform(const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale); + static struct FVector MakeVector(double X, double Y, double Z); + static struct FVector2D MakeVector2D(double X, double Y); + static struct FVector4 MakeVector4(double X, double Y, double Z, double W); + static struct FVector_NetQuantize MakeVector_NetQuantize(double X, double Y, double Z); + static struct FVector_NetQuantize10 MakeVector_NetQuantize10(double X, double Y, double Z); + static struct FVector_NetQuantize100 MakeVector_NetQuantize100(double X, double Y, double Z); + static struct FVector_NetQuantizeNormal MakeVector_NetQuantizeNormal(double X, double Y, double Z); + static double MapRangeClamped(double Value, double InRangeA, double InRangeB, double OutRangeA, double OutRangeB); + static double MapRangeUnclamped(double Value, double InRangeA, double InRangeB, double OutRangeA, double OutRangeB); + static struct FMatrix Matrix_ApplyScale(const struct FMatrix& M, float Scale); + static struct FMatrix Matrix_ConcatenateTranslation(const struct FMatrix& M, const struct FVector& Translation); + static bool Matrix_ContainsNaN(const struct FMatrix& M); + static struct FVector Matrix_GetColumn(const struct FMatrix& M, EMatrixColumns Column); + static float Matrix_GetDeterminant(const struct FMatrix& M); + static bool Matrix_GetFrustumBottomPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static bool Matrix_GetFrustumFarPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static bool Matrix_GetFrustumLeftPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static bool Matrix_GetFrustumNearPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static bool Matrix_GetFrustumRightPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static bool Matrix_GetFrustumTopPlane(const struct FMatrix& M, struct FPlane* OutPlane); + static struct FMatrix Matrix_GetInverse(const struct FMatrix& M); + static struct FMatrix Matrix_GetMatrixWithoutScale(const struct FMatrix& M, float Tolerance); + static float Matrix_GetMaximumAxisScale(const struct FMatrix& M); + static struct FVector Matrix_GetOrigin(const struct FMatrix& InMatrix); + static struct FRotator Matrix_GetRotator(const struct FMatrix& M); + static float Matrix_GetRotDeterminant(const struct FMatrix& M); + static void Matrix_GetScaledAxes(const struct FMatrix& M, struct FVector* X, struct FVector* Y, struct FVector* Z); + static struct FVector Matrix_GetScaledAxis(const struct FMatrix& M, EAxis Axis); + static struct FVector Matrix_GetScaleVector(const struct FMatrix& M, float Tolerance); + static struct FMatrix Matrix_GetTransposeAdjoint(const struct FMatrix& M); + static struct FMatrix Matrix_GetTransposed(const struct FMatrix& M); + static void Matrix_GetUnitAxes(const struct FMatrix& M, struct FVector* X, struct FVector* Y, struct FVector* Z); + static struct FVector Matrix_GetUnitAxis(const struct FMatrix& M, EAxis Axis); + static struct FMatrix Matrix_Identity(); + static struct FVector Matrix_InverseTransformPosition(const struct FMatrix& M, const struct FVector& V); + static struct FVector Matrix_InverseTransformVector(const struct FMatrix& M, const struct FVector& V); + static struct FMatrix Matrix_Mirror(const struct FMatrix& M, EAxis MirrorAxis, EAxis FlipAxis); + static void Matrix_RemoveScaling(struct FMatrix& M, float Tolerance); + static struct FMatrix Matrix_RemoveTranslation(const struct FMatrix& M); + static struct FMatrix Matrix_ScaleTranslation(const struct FMatrix& M, const struct FVector& Scale3D); + static void Matrix_SetAxis(struct FMatrix& M, EAxis Axis, const struct FVector& AxisVector); + static void Matrix_SetColumn(struct FMatrix& M, EMatrixColumns Column, const struct FVector& Value); + static void Matrix_SetOrigin(struct FMatrix& M, const struct FVector& NewOrigin); + static struct FQuat Matrix_ToQuat(const struct FMatrix& M); + static struct FVector4 Matrix_TransformPosition(const struct FMatrix& M, const struct FVector& V); + static struct FVector4 Matrix_TransformVector(const struct FMatrix& M, const struct FVector& V); + static struct FVector4 Matrix_TransformVector4(const struct FMatrix& M, const struct FVector4& V); + static int32 max_0(int32 A, int32 B); + static int64 MaxInt64(int64 A, int64 B); + static void MaxOfByteArray(const TArray& ByteArray, int32* IndexOfMaxValue, uint8* MaxValue); + static void MaxOfFloatArray(const TArray& FloatArray, int32* IndexOfMaxValue, float* MaxValue); + static void MaxOfIntArray(const TArray& IntArray, int32* IndexOfMaxValue, int32* MaxValue); + static void MedianOfIntArray(const TArray& IntArray, float* MedianValue); + static int32 min_0(int32 A, int32 B); + static void MinAreaRectangle(class UObject* WorldContextObject, const TArray& InPoints, const struct FVector& SampleSurfaceNormal, struct FVector* OutRectCenter, struct FRotator* OutRectRotation, float* OutRectLengthX, float* OutRectLengthY, bool bDebugDraw); + static int64 MinInt64(int64 A, int64 B); + static void MinOfByteArray(const TArray& ByteArray, int32* IndexOfMinValue, uint8* MinValue); + static void MinOfFloatArray(const TArray& FloatArray, int32* IndexOfMinValue, float* MinValue); + static void MinOfIntArray(const TArray& IntArray, int32* IndexOfMinValue, int32* MinValue); + static struct FVector MirrorVectorByNormal(const struct FVector& InVect, const struct FVector& InNormal); + static uint8 Multiply_ByteByte(uint8 A, uint8 B); + static double Multiply_DoubleDouble(double A, double B); + static int64 Multiply_Int64Int64(int64 A, int64 B); + static double Multiply_IntFloat(int32 A, double B); + static int32 Multiply_IntInt(int32 A, int32 B); + static struct FIntPoint Multiply_IntPointInt(const struct FIntPoint& A, int32 B); + static struct FIntPoint Multiply_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static struct FLinearColor Multiply_LinearColorFloat(const struct FLinearColor& A, float B); + static struct FLinearColor Multiply_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static struct FMatrix Multiply_MatrixFloat(const struct FMatrix& A, double B); + static struct FMatrix Multiply_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B); + static struct FQuat Multiply_QuatQuat(const struct FQuat& A, const struct FQuat& B); + static struct FRotator Multiply_RotatorFloat(const struct FRotator& A, float B); + static struct FRotator Multiply_RotatorInt(const struct FRotator& A, int32 B); + static struct FTimespan Multiply_TimespanFloat(const struct FTimespan& A, float Scalar); + static struct FVector2D Multiply_Vector2DFloat(const struct FVector2D& A, double B); + static struct FVector2D Multiply_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static struct FVector4 Multiply_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static struct FVector Multiply_VectorFloat(const struct FVector& A, double B); + static struct FVector Multiply_VectorInt(const struct FVector& A, int32 B); + static struct FVector Multiply_VectorVector(const struct FVector& A, const struct FVector& B); + static double MultiplyByPi(double Value); + static double MultiplyMultiply_FloatFloat(double base, double exp); + static bool NearlyEqual_FloatFloat(double A, double B, double ErrorTolerance); + static bool NearlyEqual_TransformTransform(const struct FTransform& A, const struct FTransform& B, float LocationTolerance, float RotationTolerance, float Scale3DTolerance); + static struct FVector2D Negated2D(const struct FVector2D& A); + static struct FRotator NegateRotator(const struct FRotator& A); + static struct FVector NegateVector(const struct FVector& A); + static struct FVector Normal(const struct FVector& A, float Tolerance); + static struct FVector2D Normal2D(const struct FVector2D& A); + static void Normalize2D(struct FVector2D& A, float Tolerance); + static float NormalizeAxis(float Angle); + static struct FRotator NormalizedDeltaRotator(const struct FRotator& A, const struct FRotator& B); + static double NormalizeToRange(double Value, double RangeMin, double RangeMax); + static struct FVector2D NormalSafe2D(const struct FVector2D& A, float Tolerance); + static int32 Not_Int(int32 A); + static int64 Not_Int64(int64 A); + static bool Not_PreBool(bool A); + static bool NotEqual_BoolBool(bool A, bool B); + static bool NotEqual_ByteByte(uint8 A, uint8 B); + static bool NotEqual_ClassClass(class UClass* A, class UClass* B); + static bool NotEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static bool NotEqual_DoubleDouble(double A, double B); + static bool NotEqual_Int64Int64(int64 A, int64 B); + static bool NotEqual_IntInt(int32 A, int32 B); + static bool NotEqual_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static bool NotEqual_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static bool NotEqual_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B, float Tolerance); + static bool NotEqual_NameName(class FName A, class FName B); + static bool NotEqual_ObjectObject(class UObject* A, class UObject* B); + static bool NotEqual_QuatQuat(const struct FQuat& A, const struct FQuat& B, float ErrorTolerance); + static bool NotEqual_RotatorRotator(const struct FRotator& A, const struct FRotator& B, float ErrorTolerance); + static bool NotEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static bool NotEqual_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B, float ErrorTolerance); + static bool NotEqual_Vector4Vector4(const struct FVector4& A, const struct FVector4& B, float ErrorTolerance); + static bool NotEqual_VectorVector(const struct FVector& A, const struct FVector& B, float ErrorTolerance); + static bool NotEqualExactly_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static bool NotEqualExactly_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static bool NotEqualExactly_VectorVector(const struct FVector& A, const struct FVector& B); + static struct FDateTime Now(); + static int64 Or_Int64Int64(int64 A, int64 B); + static int32 Or_IntInt(int32 A, int32 B); + static uint8 Percent_ByteByte(uint8 A, uint8 B); + static double Percent_FloatFloat(double A, double B); + static int64 Percent_Int64Int64(int64 A, int64 B); + static int32 Percent_IntInt(int32 A, int32 B); + static float PerlinNoise1D(const float Value); + static bool PointsAreCoplanar(const TArray& Points, float Tolerance); + static struct FVector ProjectPointOnToPlane(const struct FVector& Point, const struct FVector& PlaneBase, const struct FVector& PlaneNormal); + static struct FVector ProjectVectorOnToPlane(const struct FVector& V, const struct FVector& PlaneNormal); + static struct FVector ProjectVectorOnToVector(const struct FVector& V, const struct FVector& Target); + static float Quat_AngularDistance(const struct FQuat& A, const struct FQuat& B); + static void Quat_EnforceShortestArcWith(struct FQuat& A, const struct FQuat& B); + static struct FVector Quat_Euler(const struct FQuat& Q); + static struct FQuat Quat_Exp(const struct FQuat& Q); + static struct FQuat Quat_FindBetweenNormals(const struct FVector& StartNormal, const struct FVector& EndNormal); + static struct FQuat Quat_FindBetweenVectors(const struct FVector& Start, const struct FVector& End); + static float Quat_GetAngle(const struct FQuat& Q); + static struct FVector Quat_GetAxisX(const struct FQuat& Q); + static struct FVector Quat_GetAxisY(const struct FQuat& Q); + static struct FVector Quat_GetAxisZ(const struct FQuat& Q); + static struct FVector Quat_GetRotationAxis(const struct FQuat& Q); + static struct FQuat Quat_Identity(); + static struct FQuat Quat_Inversed(const struct FQuat& Q); + static bool Quat_IsFinite(const struct FQuat& Q); + static bool Quat_IsIdentity(const struct FQuat& Q, float Tolerance); + static bool Quat_IsNonFinite(const struct FQuat& Q); + static bool Quat_IsNormalized(const struct FQuat& Q); + static struct FQuat Quat_Log(const struct FQuat& Q); + static struct FQuat Quat_MakeFromEuler(const struct FVector& Euler); + static void Quat_Normalize(struct FQuat& Q, float Tolerance); + static struct FQuat Quat_Normalized(const struct FQuat& Q, float Tolerance); + static struct FVector Quat_RotateVector(const struct FQuat& Q, const struct FVector& V); + static struct FRotator Quat_Rotator(const struct FQuat& Q); + static void Quat_SetComponents(struct FQuat& Q, float X, float Y, float Z, float W); + static void Quat_SetFromEuler(struct FQuat& Q, const struct FVector& Euler); + static float Quat_Size(const struct FQuat& Q); + static float Quat_SizeSquared(const struct FQuat& Q); + static struct FQuat Quat_Slerp(const struct FQuat& A, const struct FQuat& B, double Alpha); + static struct FVector Quat_UnrotateVector(const struct FQuat& Q, const struct FVector& V); + static struct FVector Quat_VectorForward(const struct FQuat& Q); + static struct FVector Quat_VectorRight(const struct FQuat& Q); + static struct FVector Quat_VectorUp(const struct FQuat& Q); + static struct FQuat QuaternionSpringInterp(const struct FQuat& Current, const struct FQuat& Target, struct FQuaternionSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bInitializeFromTarget); + static double RadiansToDegrees(double A); + static bool RandomBool(); + static bool RandomBoolFromStream(const struct FRandomStream& Stream); + static bool RandomBoolWithWeight(float Weight); + static bool RandomBoolWithWeightFromStream(const struct FRandomStream& RandomStream, float Weight); + static double RandomFloat(); + static float RandomFloatFromStream(const struct FRandomStream& Stream); + static double RandomFloatInRange(double min_0, double max_0); + static float RandomFloatInRangeFromStream(const struct FRandomStream& Stream, float min_0, float max_0); + static int32 RandomInteger(int32 max_0); + static int64 RandomInteger64(int64 max_0); + static int64 RandomInteger64InRange(int64 min_0, int64 max_0); + static int32 RandomIntegerFromStream(const struct FRandomStream& Stream, int32 max_0); + static int32 RandomIntegerInRange(int32 min_0, int32 max_0); + static int32 RandomIntegerInRangeFromStream(const struct FRandomStream& Stream, int32 min_0, int32 max_0); + static struct FVector RandomPointInBoundingBox(const struct FVector& Center, const struct FVector& HalfSize); + static struct FVector RandomPointInBoundingBox_Box(const struct FBox& Box); + static struct FVector RandomPointInBoundingBoxFromStream(const struct FRandomStream& Stream, const struct FVector& Center, const struct FVector& HalfSize); + static struct FVector RandomPointInBoundingBoxFromStream_Box(const struct FRandomStream& Stream, const struct FBox& Box); + static struct FRotator RandomRotator(bool bRoll); + static struct FRotator RandomRotatorFromStream(const struct FRandomStream& Stream, bool bRoll); + static struct FVector RandomUnitVector(); + static struct FVector RandomUnitVectorFromStream(const struct FRandomStream& Stream); + static struct FVector RandomUnitVectorInConeInDegrees(const struct FVector& ConeDir, float ConeHalfAngleInDegrees); + static struct FVector RandomUnitVectorInConeInDegreesFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float ConeHalfAngleInDegrees); + static struct FVector RandomUnitVectorInConeInRadians(const struct FVector& ConeDir, float ConeHalfAngleInRadians); + static struct FVector RandomUnitVectorInConeInRadiansFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float ConeHalfAngleInRadians); + static struct FVector RandomUnitVectorInEllipticalConeInDegrees(const struct FVector& ConeDir, float MaxYawInDegrees, float MaxPitchInDegrees); + static struct FVector RandomUnitVectorInEllipticalConeInDegreesFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float MaxYawInDegrees, float MaxPitchInDegrees); + static struct FVector RandomUnitVectorInEllipticalConeInRadians(const struct FVector& ConeDir, float MaxYawInRadians, float MaxPitchInRadians); + static struct FVector RandomUnitVectorInEllipticalConeInRadiansFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float MaxYawInRadians, float MaxPitchInRadians); + static struct FRotator REase(const struct FRotator& A, const struct FRotator& B, float Alpha, bool bShortestPath, EEasingFunc EasingFunc, float BlendExp, int32 Steps); + static void ResetFloatSpringState(struct FFloatSpringState& SpringState); + static void ResetQuaternionSpringState(struct FQuaternionSpringState& SpringState); + static void ResetRandomStream(const struct FRandomStream& Stream); + static void ResetVectorSpringState(struct FVectorSpringState& SpringState); + static struct FLinearColor RGBLinearToHSV(const struct FLinearColor& RGB); + static void RGBToHSV(const struct FLinearColor& InColor, float* H, float* S, float* V, float* A); + static void RGBToHSV_Vector(const struct FLinearColor& RGB, struct FLinearColor* HSV); + static struct FRotator RInterpTo(const struct FRotator& Current, const struct FRotator& Target, float DeltaTime, float InterpSpeed); + static struct FRotator RInterpTo_Constant(const struct FRotator& Current, const struct FRotator& Target, float DeltaTime, float InterpSpeed); + static struct FRotator RLerp(const struct FRotator& A, const struct FRotator& B, float Alpha, bool bShortestPath); + static struct FVector RotateAngleAxis(const struct FVector& InVect, float AngleDeg, const struct FVector& Axis); + static struct FRotator RotatorFromAxisAndAngle(const struct FVector& Axis, float Angle); + static int32 round(double A); + static int64 Round64(double A); + static double SafeDivide(double A, double B); + static void SeedRandomStream(struct FRandomStream& Stream); + static class UClass* SelectClass(class UClass* A, class UClass* B, bool bSelectA); + static struct FLinearColor SelectColor(const struct FLinearColor& A, const struct FLinearColor& B, bool bPickA); + static double SelectFloat(double A, double B, bool bPickA); + static int32 SelectInt(int32 A, int32 B, bool bPickA); + static class FName SelectName(const class FName A, const class FName B, bool bPickA); + static class UObject* SelectObject(class UObject* A, class UObject* B, bool bSelectA); + static struct FRotator SelectRotator(const struct FRotator& A, const struct FRotator& B, bool bPickA); + static class FString SelectString(const class FString& A, const class FString& B, bool bPickA); + static class FText SelectText(const class FText& A, const class FText& B, bool bPickA); + static struct FTransform SelectTransform(const struct FTransform& A, const struct FTransform& B, bool bPickA); + static struct FVector SelectVector(const struct FVector& A, const struct FVector& B, bool bPickA); + static void Set2D(struct FVector2D& A, double X, double Y); + static void SetFloatSpringStateVelocity(struct FFloatSpringState& SpringState, float Velocity); + static void SetQuaternionSpringStateAngularVelocity(struct FQuaternionSpringState& SpringState, const struct FVector& AngularVelocity); + static void SetRandomStreamSeed(struct FRandomStream& Stream, int32 NewSeed); + static void SetVectorSpringStateVelocity(struct FVectorSpringState& SpringState, const struct FVector& Velocity); + static double SignOfFloat(double A); + static int32 SignOfInteger(int32 A); + static int64 SignOfInteger64(int64 A); + static double sin(double A); + static struct FVector Spherical2DToUnitCartesian(const struct FVector2D& A); + static double sqrt(double A); + static double Square(double A); + static uint8 Subtract_ByteByte(uint8 A, uint8 B); + static struct FTimespan Subtract_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B); + static struct FDateTime Subtract_DateTimeTimespan(const struct FDateTime& A, const struct FTimespan& B); + static double Subtract_DoubleDouble(double A, double B); + static int64 Subtract_Int64Int64(int64 A, int64 B); + static int32 Subtract_IntInt(int32 A, int32 B); + static struct FIntPoint Subtract_IntPointInt(const struct FIntPoint& A, int32 B); + static struct FIntPoint Subtract_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B); + static struct FLinearColor Subtract_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B); + static struct FQuat Subtract_QuatQuat(const struct FQuat& A, const struct FQuat& B); + static struct FTimespan Subtract_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B); + static struct FVector2D Subtract_Vector2DFloat(const struct FVector2D& A, double B); + static struct FVector2D Subtract_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B); + static struct FVector4 Subtract_Vector4Vector4(const struct FVector4& A, const struct FVector4& B); + static struct FVector Subtract_VectorFloat(const struct FVector& A, double B); + static struct FVector Subtract_VectorInt(const struct FVector& A, int32 B); + static struct FVector Subtract_VectorVector(const struct FVector& A, const struct FVector& B); + static double tan(double A); + static struct FTransform TEase(const struct FTransform& A, const struct FTransform& B, float Alpha, EEasingFunc EasingFunc, float BlendExp, int32 Steps); + static bool TimespanFromString(const class FString& TimespanString, struct FTimespan* Result); + static struct FTimespan TimespanMaxValue(); + static struct FTimespan TimespanMinValue(); + static float TimespanRatio(const struct FTimespan& A, const struct FTimespan& B); + static struct FTimespan TimespanZeroValue(); + static struct FTransform TInterpTo(const struct FTransform& Current, const struct FTransform& Target, float DeltaTime, float InterpSpeed); + static struct FTransform TLerp(const struct FTransform& A, const struct FTransform& B, float Alpha, ELerpInterpolationMode InterpMode); + static struct FDateTime Today(); + static void ToDirectionAndLength2D(const struct FVector2D& A, struct FVector2D* OutDir, double* OutLength); + static class FString ToHex_LinearColor(const struct FLinearColor& InColor); + static struct FVector2D ToRounded2D(const struct FVector2D& A); + static struct FVector2D ToSign2D(const struct FVector2D& A); + static int64 ToUnixTimestamp(const struct FDateTime& Time); + static double ToUnixTimestampDouble(const struct FDateTime& Time); + static float Transform_Determinant(const struct FTransform& Transform); + static struct FVector TransformDirection(const struct FTransform& T, const struct FVector& Direction); + static struct FVector TransformLocation(const struct FTransform& T, const struct FVector& Location); + static struct FRotator TransformRotation(const struct FTransform& T, const struct FRotator& Rotation); + static struct FVector4 TransformVector4(const struct FMatrix& Matrix, const struct FVector4& Vec4); + static struct FDateTime UtcNow(); + static struct FVector VEase(const struct FVector& A, const struct FVector& B, float Alpha, EEasingFunc EasingFunc, float BlendExp, int32 Steps); + static struct FVector2D Vector2D_One(); + static struct FVector2D Vector2D_Unit45Deg(); + static struct FVector2D Vector2D_Zero(); + static struct FVector2D Vector2DInterpTo(const struct FVector2D& Current, const struct FVector2D& Target, float DeltaTime, float InterpSpeed); + static struct FVector2D Vector2DInterpTo_Constant(const struct FVector2D& Current, const struct FVector2D& Target, float DeltaTime, float InterpSpeed); + static void Vector4_Assign(struct FVector4& A, const struct FVector4& InVector); + static struct FVector4 Vector4_CrossProduct3(const struct FVector4& A, const struct FVector4& B); + static double Vector4_DotProduct(const struct FVector4& A, const struct FVector4& B); + static double Vector4_DotProduct3(const struct FVector4& A, const struct FVector4& B); + static bool Vector4_IsNAN(const struct FVector4& A); + static bool Vector4_IsNearlyZero3(const struct FVector4& A, float Tolerance); + static bool Vector4_IsNormal3(const struct FVector4& A); + static bool Vector4_IsUnit3(const struct FVector4& A, float SquaredLenthTolerance); + static bool Vector4_IsZero(const struct FVector4& A); + static struct FVector4 Vector4_MirrorByVector3(const struct FVector4& Direction, const struct FVector4& SurfaceNormal); + static struct FVector4 Vector4_Negated(const struct FVector4& A); + static struct FVector4 Vector4_Normal3(const struct FVector4& A, float Tolerance); + static void Vector4_Normalize3(struct FVector4& A, float Tolerance); + static struct FVector4 Vector4_NormalUnsafe3(const struct FVector4& A); + static void Vector4_Set(struct FVector4& A, double X, double Y, double Z, double W); + static double Vector4_Size(const struct FVector4& A); + static double Vector4_Size3(const struct FVector4& A); + static double Vector4_SizeSquared(const struct FVector4& A); + static double Vector4_SizeSquared3(const struct FVector4& A); + static struct FVector4 Vector4_Zero(); + static void Vector_AddBounded(struct FVector& A, const struct FVector& InAddVect, float InRadius); + static void Vector_Assign(struct FVector& A, const struct FVector& InVector); + static struct FVector Vector_Backward(); + static struct FVector Vector_BoundedToBox(const struct FVector& InVect, const struct FVector& InBoxMin, const struct FVector& InBoxMax); + static struct FVector Vector_BoundedToCube(const struct FVector& InVect, float InRadius); + static struct FVector Vector_ClampSize2D(const struct FVector& A, double min_0, double max_0); + static struct FVector Vector_ClampSizeMax(const struct FVector& A, double max_0); + static struct FVector Vector_ClampSizeMax2D(const struct FVector& A, double max_0); + static struct FVector Vector_ComponentMax(const struct FVector& A, const struct FVector& B); + static struct FVector Vector_ComponentMin(const struct FVector& A, const struct FVector& B); + static double Vector_CosineAngle2D(const struct FVector& A, const struct FVector& B); + static double Vector_Distance(const struct FVector& v1, const struct FVector& v2); + static double Vector_Distance2D(const struct FVector& v1, const struct FVector& v2); + static double Vector_Distance2DSquared(const struct FVector& v1, const struct FVector& v2); + static double Vector_DistanceSquared(const struct FVector& v1, const struct FVector& v2); + static struct FVector Vector_Down(); + static struct FVector Vector_Forward(); + static struct FVector Vector_GetAbs(const struct FVector& A); + static double Vector_GetAbsMax(const struct FVector& A); + static double Vector_GetAbsMin(const struct FVector& A); + static struct FVector Vector_GetProjection(const struct FVector& A); + static struct FVector Vector_GetSignVector(const struct FVector& A); + static double Vector_HeadingAngle(const struct FVector& A); + static bool Vector_IsNAN(const struct FVector& A); + static bool Vector_IsNearlyZero(const struct FVector& A, float Tolerance); + static bool Vector_IsNormal(const struct FVector& A); + static bool Vector_IsUniform(const struct FVector& A, float Tolerance); + static bool Vector_IsUnit(const struct FVector& A, float SquaredLenthTolerance); + static bool Vector_IsZero(const struct FVector& A); + static struct FVector Vector_Left(); + static struct FVector Vector_MirrorByPlane(const struct FVector& A, const struct FPlane& InPlane); + static struct FVector Vector_Normal2D(const struct FVector& A, float Tolerance); + static void Vector_Normalize(struct FVector& A, float Tolerance); + static struct FVector Vector_NormalUnsafe(const struct FVector& A); + static struct FVector Vector_One(); + static struct FVector Vector_ProjectOnToNormal(const struct FVector& V, const struct FVector& InNormal); + static struct FVector Vector_Reciprocal(const struct FVector& A); + static struct FVector Vector_Right(); + static void Vector_Set(struct FVector& A, double X, double Y, double Z); + static struct FVector Vector_SlerpNormals(const struct FVector& NormalA, const struct FVector& NormalB, double Alpha); + static struct FVector Vector_SlerpVectorToDirection(const struct FVector& Vector, const struct FVector& Direction, double Alpha); + static struct FVector Vector_SnappedToGrid(const struct FVector& InVect, float InGridSize); + static struct FVector Vector_ToDegrees(const struct FVector& A); + static struct FVector Vector_ToRadians(const struct FVector& A); + static struct FVector2D Vector_UnitCartesianToSpherical(const struct FVector& A); + static void Vector_UnwindEuler(struct FVector& A); + static struct FVector Vector_Up(); + static struct FVector Vector_Zero(); + static struct FVector VectorSpringInterp(const struct FVector& Current, const struct FVector& Target, struct FVectorSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bClamp, const struct FVector& MinValue, const struct FVector& MaxValue, bool bInitializeFromTarget); + static struct FVector VInterpTo(const struct FVector& Current, const struct FVector& Target, float DeltaTime, float InterpSpeed); + static struct FVector VInterpTo_Constant(const struct FVector& Current, const struct FVector& Target, float DeltaTime, float InterpSpeed); + static struct FVector VLerp(const struct FVector& A, const struct FVector& B, float Alpha); + static double VSize(const struct FVector& A); + static double VSize2D(const struct FVector2D& A); + static double VSize2DSquared(const struct FVector2D& A); + static double VSizeSquared(const struct FVector& A); + static double VSizeXY(const struct FVector& A); + static double VSizeXYSquared(const struct FVector& A); + static float WeightedMovingAverage_Float(float CurrentSample, float PreviousSample, float Weight); + static struct FRotator WeightedMovingAverage_FRotator(const struct FRotator& CurrentSample, const struct FRotator& PreviousSample, float Weight); + static struct FVector WeightedMovingAverage_FVector(const struct FVector& CurrentSample, const struct FVector& PreviousSample, float Weight); + static int32 Wrap(int32 Value, int32 min_0, int32 max_0); + static int64 Xor_Int64Int64(int64 A, int64 B); + static int32 Xor_IntInt(int32 A, int32 B); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetMathLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetMathLibrary") + } + static class UKismetMathLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetMathLibrary; + +// Class Engine.KismetRenderingLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetRenderingLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void BeginDrawCanvasToRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, class UCanvas** Canvas, struct FVector2D* Size, struct FDrawToRenderTargetContext* Context); + static void BreakSkinWeightInfo(const struct FSkelMeshSkinWeightInfo& InWeight, int32* Bone0, uint8* Weight0, int32* Bone1, uint8* Weight1, int32* Bone2, uint8* Weight2, int32* Bone3, uint8* Weight3); + static struct FMatrix CalculateProjectionMatrix(const struct FMinimalViewInfo& MinimalViewInfo); + static void ClearRenderTarget2D(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const struct FLinearColor& ClearColor); + static void ConvertRenderTargetToTexture2DArrayEditorOnly(class UObject* WorldContextObject, class UTextureRenderTarget2DArray* RenderTarget, class UTexture2DArray* Texture); + static void ConvertRenderTargetToTexture2DEditorOnly(class UObject* WorldContextObject, class UTextureRenderTarget2D* RenderTarget, class UTexture2D* Texture); + static void ConvertRenderTargetToTextureCubeEditorOnly(class UObject* WorldContextObject, class UTextureRenderTargetCube* RenderTarget, class UTextureCube* Texture); + static void ConvertRenderTargetToTextureVolumeEditorOnly(class UObject* WorldContextObject, class UTextureRenderTargetVolume* RenderTarget, class UVolumeTexture* Texture); + static class UTextureRenderTarget2D* CreateRenderTarget2D(class UObject* WorldContextObject, int32 Width, int32 Height, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs); + static class UTextureRenderTarget2DArray* CreateRenderTarget2DArray(class UObject* WorldContextObject, int32 Width, int32 Height, int32 Slices, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs); + static class UTextureRenderTargetVolume* CreateRenderTargetVolume(class UObject* WorldContextObject, int32 Width, int32 Height, int32 Depth, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs); + static void DrawMaterialToRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, class UMaterialInterface* Material); + static void EnablePathTracing(bool bEnablePathTracer); + static void EndDrawCanvasToRenderTarget(class UObject* WorldContextObject, const struct FDrawToRenderTargetContext& Context); + static void ExportRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const class FString& FilePath, const class FString& Filename); + static void ExportTexture2D(class UObject* WorldContextObject, class UTexture2D* Texture, const class FString& FilePath, const class FString& Filename); + static class UTexture2D* ImportBufferAsTexture2D(class UObject* WorldContextObject, const TArray& Buffer); + static class UTexture2D* ImportFileAsTexture2D(class UObject* WorldContextObject, const class FString& Filename); + static struct FSkelMeshSkinWeightInfo MakeSkinWeightInfo(int32 Bone0, uint8 Weight0, int32 Bone1, uint8 Weight1, int32 Bone2, uint8 Weight2, int32 Bone3, uint8 Weight3); + static bool ReadRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, TArray* OutSamples, bool bNormalize); + static struct FColor ReadRenderTargetPixel(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 X, int32 Y); + static bool ReadRenderTargetRaw(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, TArray* OutLinearSamples, bool bNormalize); + static struct FLinearColor ReadRenderTargetRawPixel(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 X, int32 Y, bool bNormalize); + static TArray ReadRenderTargetRawPixelArea(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 MinX, int32 MinY, int32 MaxX, int32 MaxY, bool bNormalize); + static struct FLinearColor ReadRenderTargetRawUV(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, float U, float V, bool bNormalize); + static TArray ReadRenderTargetRawUVArea(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const struct FBox2D& Area, bool bNormalize); + static struct FColor ReadRenderTargetUV(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, float U, float V); + static void RefreshPathTracingOutput(); + static void ReleaseRenderTarget2D(class UTextureRenderTarget2D* TextureRenderTarget); + static class UTexture2DArray* RenderTargetCreateStaticTexture2DArrayEditorOnly(class UTextureRenderTarget2DArray* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings); + static class UTexture2D* RenderTargetCreateStaticTexture2DEditorOnly(class UTextureRenderTarget2D* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings); + static class UTextureCube* RenderTargetCreateStaticTextureCubeEditorOnly(class UTextureRenderTargetCube* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings); + static class UVolumeTexture* RenderTargetCreateStaticVolumeTextureEditorOnly(class UTextureRenderTargetVolume* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings); + static void ResizeRenderTarget2D(class UTextureRenderTarget2D* TextureRenderTarget, int32 Width, int32 Height); + static void SetCastInsetShadowForAllAttachments(class UPrimitiveComponent* PrimitiveComponent, bool bCastInsetShadow, bool bLightAttachmentsAsGroup); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetRenderingLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetRenderingLibrary") + } + static class UKismetRenderingLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetRenderingLibrary; + +// Class Engine.KismetStringLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetStringLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class FString BuildString_Bool(const class FString& AppendTo, const class FString& Prefix, bool InBool, const class FString& Suffix); + static class FString BuildString_Color(const class FString& AppendTo, const class FString& Prefix, const struct FLinearColor& InColor, const class FString& Suffix); + static class FString BuildString_Double(const class FString& AppendTo, const class FString& Prefix, double InDouble, const class FString& Suffix); + static class FString BuildString_Int(const class FString& AppendTo, const class FString& Prefix, int32 inInt, const class FString& Suffix); + static class FString BuildString_IntVector(const class FString& AppendTo, const class FString& Prefix, const struct FIntVector& InIntVector, const class FString& Suffix); + static class FString BuildString_Name(const class FString& AppendTo, const class FString& Prefix, class FName InName, const class FString& Suffix); + static class FString BuildString_Object(const class FString& AppendTo, const class FString& Prefix, class UObject* InObj, const class FString& Suffix); + static class FString BuildString_Rotator(const class FString& AppendTo, const class FString& Prefix, const struct FRotator& InRot, const class FString& Suffix); + static class FString BuildString_Vector(const class FString& AppendTo, const class FString& Prefix, const struct FVector& InVector, const class FString& Suffix); + static class FString BuildString_Vector2d(const class FString& AppendTo, const class FString& Prefix, const struct FVector2D& InVector2D, const class FString& Suffix); + static class FString Concat_StrStr(const class FString& A, const class FString& B); + static bool Contains(const class FString& SearchIn, const class FString& Substring, bool bUseCase, bool bSearchFromEnd); + static class FString Conv_BoolToString(bool InBool); + static class FString Conv_BoxCenterAndExtentsToString(const struct FBox& Box); + static class FString Conv_BoxToString(const struct FBox& Box); + static class FString Conv_ByteToString(uint8 InByte); + static class FString Conv_ColorToString(const struct FLinearColor& InColor); + static class FString Conv_DoubleToString(double InDouble); + static class FString Conv_InputDeviceIdToString(const struct FInputDeviceId& InDeviceId); + static class FString Conv_Int64ToString(int64 inInt); + static class FString Conv_IntPointToString(const struct FIntPoint& InIntPoint); + static class FString Conv_IntToString(int32 inInt); + static class FString Conv_IntVectorToString(const struct FIntVector& InIntVec); + static class FString Conv_MatrixToString(const struct FMatrix& InMatrix); + static class FString Conv_NameToString(class FName InName); + static class FString Conv_ObjectToString(class UObject* InObj); + static class FString Conv_PlatformUserIdToString(const struct FPlatformUserId& InPlatformUserId); + static class FString Conv_RotatorToString(const struct FRotator& InRot); + static void Conv_StringToColor(const class FString& InString, struct FLinearColor* OutConvertedColor, bool* OutIsValid); + static double Conv_StringToDouble(const class FString& InString); + static int32 Conv_StringToInt(const class FString& InString); + static int64 Conv_StringToInt64(const class FString& InString); + static class FName Conv_StringToName(const class FString& InString); + static void Conv_StringToRotator(const class FString& InString, struct FRotator* OutConvertedRotator, bool* OutIsValid); + static void Conv_StringToVector(const class FString& InString, struct FVector* OutConvertedVector, bool* OutIsValid); + static void Conv_StringToVector2D(const class FString& InString, struct FVector2D* OutConvertedVector2D, bool* OutIsValid); + static void Conv_StringToVector3f(const class FString& InString, struct FVector3f* OutConvertedVector, bool* OutIsValid); + static class FString Conv_TransformToString(const struct FTransform& InTrans); + static class FString Conv_Vector2dToString(const struct FVector2D& InVec); + static class FString Conv_Vector3fToString(const struct FVector3f& InVec); + static class FString Conv_VectorToString(const struct FVector& InVec); + static int32 CullArray(const class FString& SourceString, TArray* inArray); + static bool EndsWith(const class FString& SourceString, const class FString& InSuffix, ESearchCase SearchCase); + static bool EqualEqual_StriStri(const class FString& A, const class FString& B); + static bool EqualEqual_StrStr(const class FString& A, const class FString& B); + static int32 FindSubstring(const class FString& SearchIn, const class FString& Substring, bool bUseCase, bool bSearchFromEnd, int32 StartPosition); + static TArray GetCharacterArrayFromString(const class FString& SourceString); + static int32 GetCharacterAsNumber(const class FString& SourceString, int32 Index_0); + static class FString GetSubstring(const class FString& SourceString, int32 StartIndex, int32 Length); + static bool IsEmpty(const class FString& InString); + static bool IsNumeric(const class FString& SourceString); + static class FString JoinStringArray(const TArray& SourceArray, const class FString& Separator); + static class FString Left(const class FString& SourceString, int32 Count); + static class FString LeftChop(const class FString& SourceString, int32 Count); + static class FString LeftPad(const class FString& SourceString, int32 ChCount); + static int32 Len(const class FString& S); + static bool MatchesWildcard(const class FString& SourceString, const class FString& Wildcard, ESearchCase SearchCase); + static class FString Mid(const class FString& SourceString, int32 Start, int32 Count); + static bool NotEqual_StriStri(const class FString& A, const class FString& B); + static bool NotEqual_StrStr(const class FString& A, const class FString& B); + static TArray ParseIntoArray(const class FString& SourceString, const class FString& Delimiter, const bool CullEmptyStrings); + static class FString Replace(const class FString& SourceString, const class FString& From, const class FString& To, ESearchCase SearchCase); + static int32 ReplaceInline(class FString& SourceString, const class FString& SearchText, const class FString& ReplacementText, ESearchCase SearchCase); + static class FString Reverse(const class FString& SourceString); + static class FString Right(const class FString& SourceString, int32 Count); + static class FString RightChop(const class FString& SourceString, int32 Count); + static class FString RightPad(const class FString& SourceString, int32 ChCount); + static bool Split(const class FString& SourceString, const class FString& InStr, class FString* LeftS, class FString* RightS, ESearchCase SearchCase, ESearchDir SearchDir); + static bool StartsWith(const class FString& SourceString, const class FString& InPrefix, ESearchCase SearchCase); + static class FString TimeSecondsToString(float InSeconds); + static class FString ToLower(const class FString& SourceString); + static class FString ToUpper(const class FString& SourceString); + static class FString Trim(const class FString& SourceString); + static class FString TrimTrailing(const class FString& SourceString); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetStringLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetStringLibrary") + } + static class UKismetStringLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetStringLibrary; + +// Class Engine.KismetStringTableLibrary +// 0x0000 (0x0028 - 0x0028) +class UKismetStringTableLibrary final : public UBlueprintFunctionLibrary +{ +public: + static TArray GetKeysFromStringTable(const class FName TableId); + static TArray GetMetaDataIdsFromStringTableEntry(const class FName TableId, const class FString& Key); + static TArray GetRegisteredStringTables(); + static class FString GetTableEntryMetaData(const class FName TableId, const class FString& Key, const class FName MetaDataId); + static class FString GetTableEntrySourceString(const class FName TableId, const class FString& Key); + static class FString GetTableNamespace(const class FName TableId); + static bool IsRegisteredTableEntry(const class FName TableId, const class FString& Key); + static bool IsRegisteredTableId(const class FName TableId); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("KismetStringTableLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"KismetStringTableLibrary") + } + static class UKismetStringTableLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UKismetStringTableLibrary; + +// Class Engine.BlueprintPathsLibrary +// 0x0000 (0x0028 - 0x0028) +class UBlueprintPathsLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class FString AutomationDir(); + static class FString AutomationLogDir(); + static class FString AutomationTransientDir(); + static class FString BugItDir(); + static class FString ChangeExtension(const class FString& InPath, const class FString& InNewExtension); + static class FString CloudDir(); + static bool CollapseRelativeDirectories(const class FString& InPath, class FString* OutPath); + static class FString Combine(const TArray& InPaths); + static class FString ConvertFromSandboxPath(const class FString& InPath, const class FString& InSandboxName); + static class FString ConvertRelativePathToFull(const class FString& InPath, const class FString& InBasePath); + static class FString ConvertToSandboxPath(const class FString& InPath, const class FString& InSandboxName); + static class FString CreateTempFilename(const class FString& Path, const class FString& Prefix, const class FString& Extension); + static class FString DiffDir(); + static bool DirectoryExists(const class FString& InPath); + static class FString EngineConfigDir(); + static class FString EngineContentDir(); + static class FString EngineDir(); + static class FString EngineIntermediateDir(); + static class FString EnginePluginsDir(); + static class FString EngineSavedDir(); + static class FString EngineSourceDir(); + static class FString EngineUserDir(); + static class FString EngineVersionAgnosticUserDir(); + static class FString EnterpriseDir(); + static class FString EnterpriseFeaturePackDir(); + static class FString EnterprisePluginsDir(); + static class FString FeaturePackDir(); + static bool FileExists(const class FString& InPath); + static class FString GameAgnosticSavedDir(); + static class FString GameDevelopersDir(); + static class FString GameSourceDir(); + static class FString GameUserDeveloperDir(); + static class FString GeneratedConfigDir(); + static class FString GetBaseFilename(const class FString& InPath, bool bRemovePath); + static class FString GetCleanFilename(const class FString& InPath); + static const TArray GetEditorLocalizationPaths(); + static const TArray GetEngineLocalizationPaths(); + static class FString GetExtension(const class FString& InPath, bool bIncludeDot); + static const TArray GetGameLocalizationPaths(); + static class FString GetInvalidFileSystemChars(); + static class FString GetPath(const class FString& InPath); + static class FString GetProjectFilePath(); + static const TArray GetPropertyNameLocalizationPaths(); + static class FString GetRelativePathToRoot(); + static const TArray GetRestrictedFolderNames(); + static const TArray GetToolTipLocalizationPaths(); + static bool HasProjectPersistentDownloadDir(); + static bool IsDrive(const class FString& InPath); + static bool IsProjectFilePathSet(); + static bool IsRelative(const class FString& InPath); + static bool IsRestrictedPath(const class FString& InPath); + static bool IsSamePath(const class FString& PathA, const class FString& PathB); + static class FString LaunchDir(); + static bool MakePathRelativeTo(const class FString& InPath, const class FString& InRelativeTo, class FString* OutPath); + static void MakePlatformFilename(const class FString& InPath, class FString* OutPath); + static void MakeStandardFilename(const class FString& InPath, class FString* OutPath); + static class FString MakeValidFileName(const class FString& InString, const class FString& InReplacementChar); + static void NormalizeDirectoryName(const class FString& InPath, class FString* OutPath); + static void NormalizeFilename(const class FString& InPath, class FString* OutPath); + static class FString ProfilingDir(); + static class FString ProjectConfigDir(); + static class FString ProjectContentDir(); + static class FString ProjectDir(); + static class FString ProjectIntermediateDir(); + static class FString ProjectLogDir(); + static class FString ProjectModsDir(); + static class FString ProjectPersistentDownloadDir(); + static class FString ProjectPluginsDir(); + static class FString ProjectSavedDir(); + static class FString ProjectUserDir(); + static void RemoveDuplicateSlashes(const class FString& InPath, class FString* OutPath); + static class FString RootDir(); + static class FString SandboxesDir(); + static class FString ScreenShotDir(); + static class FString SetExtension(const class FString& InPath, const class FString& InNewExtension); + static void SetProjectFilePath(const class FString& NewGameProjectFilePath); + static class FString ShaderWorkingDir(); + static bool ShouldSaveToUserDir(); + static class FString SourceConfigDir(); + static void Split(const class FString& InPath, class FString* PathPart, class FString* FilenamePart, class FString* ExtensionPart); + static void ValidatePath(const class FString& InPath, bool* bDidSucceed, class FText* OutReason); + static class FString VideoCaptureDir(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BlueprintPathsLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BlueprintPathsLibrary") + } + static class UBlueprintPathsLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBlueprintPathsLibrary; + +// Class Engine.LevelInstance +// 0x00A0 (0x0348 - 0x02A8) +class ALevelInstance : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class ULevelInstanceComponent* LevelInstanceComponent; // 0x02B0(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSoftObjectPtr CookedWorldAsset; // 0x02B8(0x0028)(Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FGuid LevelInstanceSpawnGuid; // 0x02E0(0x0010)(Net, ZeroConstructor, Transient, IsPlainOldData, RepNotify, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_2F0[0x58]; // 0x02F0(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnRep_LevelInstanceSpawnGuid(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstance") + } + static class ALevelInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelInstance; + +// Class Engine.PackedLevelActor +// 0x0000 (0x0348 - 0x0348) +class APackedLevelActor final : public ALevelInstance +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PackedLevelActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PackedLevelActor") + } + static class APackedLevelActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APackedLevelActor; + +// Class Engine.PlatformGameInstance +// 0x00D0 (0x0290 - 0x01C0) +class UPlatformGameInstance final : public UGameInstance +{ +public: + TMulticastInlineDelegate ApplicationWillDeactivateDelegate; // 0x01C0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationHasReactivatedDelegate; // 0x01D0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationWillEnterBackgroundDelegate; // 0x01E0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationHasEnteredForegroundDelegate; // 0x01F0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationWillTerminateDelegate; // 0x0200(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationShouldUnloadResourcesDelegate; // 0x0210(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& StartupArguments)> ApplicationReceivedStartupArgumentsDelegate; // 0x0220(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate& inArray)> ApplicationRegisteredForRemoteNotificationsDelegate; // 0x0230(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationRegisteredForUserNotificationsDelegate; // 0x0240(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationFailedToRegisterForRemoteNotificationsDelegate; // 0x0250(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationReceivedRemoteNotificationDelegate; // 0x0260(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationReceivedLocalNotificationDelegate; // 0x0270(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate ApplicationReceivedScreenOrientationChangedNotificationDelegate; // 0x0280(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlatformGameInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlatformGameInstance") + } + static class UPlatformGameInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlatformGameInstance; + +// Class Engine.ImportanceSamplingLibrary +// 0x0000 (0x0028 - 0x0028) +class UImportanceSamplingLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void BreakImportanceTexture(const struct FImportanceTexture& ImportanceTexture, class UTexture2D** Texture, EImportanceWeight* WeightingFunc); + static void ImportanceSample(const struct FImportanceTexture& Texture, const struct FVector2D& Rand, int32 Samples, float Intensity, struct FVector2D* SamplePosition, struct FLinearColor* SampleColor, float* SampleIntensity, float* SampleSize); + static struct FImportanceTexture MakeImportanceTexture(class UTexture2D* Texture, EImportanceWeight WeightingFunc); + static struct FVector2D NextSobolCell2D(int32 Index_0, int32 NumCells, const struct FVector2D& PreviousValue); + static struct FVector NextSobolCell3D(int32 Index_0, int32 NumCells, const struct FVector& PreviousValue); + static float NextSobolFloat(int32 Index_0, int32 Dimension, float PreviousValue); + static struct FVector2D RandomSobolCell2D(int32 Index_0, int32 NumCells, const struct FVector2D& Cell, const struct FVector2D& Seed); + static struct FVector RandomSobolCell3D(int32 Index_0, int32 NumCells, const struct FVector& Cell, const struct FVector& Seed); + static float RandomSobolFloat(int32 Index_0, int32 Dimension, float Seed); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ImportanceSamplingLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ImportanceSamplingLibrary") + } + static class UImportanceSamplingLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UImportanceSamplingLibrary; + +// Class Engine.Layer +// 0x0020 (0x0048 - 0x0028) +class ULayer final : public UObject +{ +public: + class FName LayerName; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bIsVisible : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorStats; // 0x0038(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Layer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Layer") + } + static class ULayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULayer; + +// Class Engine.ActorContainer +// 0x0050 (0x0078 - 0x0028) +class UActorContainer final : public UObject +{ +public: + TMap Actors; // 0x0028(0x0050)(UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorContainer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorContainer") + } + static class UActorContainer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorContainer; + +// Class Engine.LevelBounds +// 0x0010 (0x02B8 - 0x02A8) +class ALevelBounds final : public AActor +{ +public: + class UBoxComponent* BoxComponent; // 0x02A8(0x0008)(Edit, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoUpdateBounds; // 0x02B0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B1[0x7]; // 0x02B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelBounds") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelBounds") + } + static class ALevelBounds* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelBounds; + +// Class Engine.SpectatorPawn +// 0x0000 (0x0350 - 0x0350) +class ASpectatorPawn final : public ADefaultPawn +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpectatorPawn") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpectatorPawn") + } + static class ASpectatorPawn* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASpectatorPawn; + +// Class Engine.LevelInstanceComponent +// 0x0000 (0x0230 - 0x0230) +class ULevelInstanceComponent final : public USceneComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceComponent") + } + static class ULevelInstanceComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstanceComponent; + +// Class Engine.LevelStreamingLevelInstanceEditor +// 0x0000 (0x01B0 - 0x01B0) +class ULevelStreamingLevelInstanceEditor final : public ULevelStreamingAlwaysLoaded +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingLevelInstanceEditor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingLevelInstanceEditor") + } + static class ULevelStreamingLevelInstanceEditor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingLevelInstanceEditor; + +// Class Engine.LevelInstanceEditorObject +// 0x0000 (0x0028 - 0x0028) +class ULevelInstanceEditorObject final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceEditorObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceEditorObject") + } + static class ULevelInstanceEditorObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstanceEditorObject; + +// Class Engine.LevelInstancePivot +// 0x0008 (0x02B0 - 0x02A8) +class ALevelInstancePivot final : public AActor +{ +public: + uint8 Pad_2A8[0x8]; // 0x02A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstancePivot") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstancePivot") + } + static class ALevelInstancePivot* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALevelInstancePivot; + +// Class Engine.LevelInstanceInterface +// 0x0000 (0x0000 - 0x0000) +class ILevelInstanceInterface final +{ +public: + void LoadLevelInstance(); + bool SetWorldAsset(TSoftObjectPtr WorldAsset); + void UnloadLevelInstance(); + + class ULevel* GetLoadedLevel() const; + const TSoftObjectPtr GetWorldAsset() const; + bool IsLoaded() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceInterface") + } + static class ILevelInstanceInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ILevelInstanceInterface; + +// Class Engine.PhysicsConstraintComponent +// 0x02E0 (0x0510 - 0x0230) +class UPhysicsConstraintComponent final : public USceneComponent +{ +public: + class AActor* ConstraintActor1; // 0x0230(0x0008)(Edit, ZeroConstructor, DisableEditOnTemplate, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FConstrainComponentPropName ComponentName1; // 0x0238(0x0008)(Edit, NoDestructor, NativeAccessSpecifierPublic) + class AActor* ConstraintActor2; // 0x0240(0x0008)(Edit, ZeroConstructor, DisableEditOnTemplate, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FConstrainComponentPropName ComponentName2; // 0x0248(0x0008)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_250[0x10]; // 0x0250(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicsConstraintTemplate* ConstraintSetup; // 0x0260(0x0008)(ExportObject, ZeroConstructor, InstancedReference, Deprecated, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnConstraintBroken; // 0x0268(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnPlasticDeformation; // 0x0278(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + struct FConstraintInstance ConstraintInstance; // 0x0288(0x0288)(Edit, NativeAccessSpecifierPublic) + +public: + void BreakConstraint(); + void GetConstrainedComponents(class UPrimitiveComponent** OutComponent1, class FName* OutBoneName1, class UPrimitiveComponent** OutComponent2, class FName* OutBoneName2); + struct FConstraintInstanceAccessor GetConstraint(); + void GetConstraintForce(struct FVector* OutLinearForce, struct FVector* OutAngularForce); + bool IsBroken(); + void SetAngularBreakable(bool bAngularBreakable, float AngularBreakThreshold); + void SetAngularDriveAccelerationMode(bool bAccelerationMode); + void SetAngularDriveMode(EAngularDriveMode DriveMode); + void SetAngularDriveParams(float PositionStrength, float VelocityStrength, float InForceLimit); + void SetAngularOrientationDrive(bool bEnableSwingDrive, bool bEnableTwistDrive); + void SetAngularOrientationTarget(const struct FRotator& InPosTarget); + void SetAngularPlasticity(bool bAngularPlasticity, float AngularPlasticityThreshold); + void SetAngularSwing1Limit(EAngularConstraintMotion MotionType, float Swing1LimitAngle); + void SetAngularSwing2Limit(EAngularConstraintMotion MotionType, float Swing2LimitAngle); + void SetAngularTwistLimit(EAngularConstraintMotion ConstraintType, float TwistLimitAngle); + void SetAngularVelocityDrive(bool bEnableSwingDrive, bool bEnableTwistDrive); + void SetAngularVelocityDriveSLERP(bool bEnableSLERP); + void SetAngularVelocityDriveTwistAndSwing(bool bEnableTwistDrive, bool bEnableSwingDrive); + void SetAngularVelocityTarget(const struct FVector& InVelTarget); + void SetConstrainedComponents(class UPrimitiveComponent* Component1, class FName BoneName1, class UPrimitiveComponent* Component2, class FName BoneName2); + void SetConstraintReferenceFrame(EConstraintFrame Frame, const struct FTransform& RefFrame); + void SetConstraintReferenceOrientation(EConstraintFrame Frame, const struct FVector& PriAxis, const struct FVector& SecAxis); + void SetConstraintReferencePosition(EConstraintFrame Frame, const struct FVector& RefPosition); + void SetContactTransferScale(float ContactTransferScale); + void SetDisableCollision(bool bDisableCollision); + void SetLinearBreakable(bool bLinearBreakable, float LinearBreakThreshold); + void SetLinearDriveAccelerationMode(bool bAccelerationMode); + void SetLinearDriveParams(float PositionStrength, float VelocityStrength, float InForceLimit); + void SetLinearPlasticity(bool bLinearPlasticity, float LinearPlasticityThreshold, EConstraintPlasticityType PlasticityType); + void SetLinearPositionDrive(bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ); + void SetLinearPositionTarget(const struct FVector& InPosTarget); + void SetLinearVelocityDrive(bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ); + void SetLinearVelocityTarget(const struct FVector& InVelTarget); + void SetLinearXLimit(ELinearConstraintMotion ConstraintType, float LimitSize); + void SetLinearYLimit(ELinearConstraintMotion ConstraintType, float LimitSize); + void SetLinearZLimit(ELinearConstraintMotion ConstraintType, float LimitSize); + void SetOrientationDriveSLERP(bool bEnableSLERP); + void SetOrientationDriveTwistAndSwing(bool bEnableTwistDrive, bool bEnableSwingDrive); + void SetProjectionEnabled(bool bProjectionEnabled); + void SetProjectionParams(float ProjectionLinearAlpha, float ProjectionAngularAlpha, float ProjectionLinearTolerance, float ProjectionAngularTolerance); + + float GetCurrentSwing1() const; + float GetCurrentSwing2() const; + float GetCurrentTwist() const; + bool IsProjectionEnabled() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsConstraintComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsConstraintComponent") + } + static class UPhysicsConstraintComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsConstraintComponent; + +// Class Engine.LevelStreamingLevelInstance +// 0x0030 (0x01F0 - 0x01C0) +class ULevelStreamingLevelInstance final : public ULevelStreamingDynamic +{ +public: + uint8 Pad_1B8[0x38]; // 0x01B8(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingLevelInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingLevelInstance") + } + static class ULevelStreamingLevelInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingLevelInstance; + +// Class Engine.LevelInstanceSubsystem +// 0x0198 (0x01C8 - 0x0030) +class ULevelInstanceSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x198]; // 0x0030(0x0198)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelInstanceSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelInstanceSubsystem") + } + static class ULevelInstanceSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelInstanceSubsystem; + +// Class Engine.LevelScriptBlueprint +// 0x0000 (0x00A8 - 0x00A8) +class ULevelScriptBlueprint final : public UBlueprint +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelScriptBlueprint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelScriptBlueprint") + } + static class ULevelScriptBlueprint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelScriptBlueprint; + +// Class Engine.LightmappedSurfaceCollection +// 0x0018 (0x0040 - 0x0028) +class ULightmappedSurfaceCollection final : public UObject +{ +public: + class UModel* SourceModel; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Surfaces; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmappedSurfaceCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmappedSurfaceCollection") + } + static class ULightmappedSurfaceCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightmappedSurfaceCollection; + +// Class Engine.LightmassCharacterIndirectDetailVolume +// 0x0000 (0x02E0 - 0x02E0) +class ALightmassCharacterIndirectDetailVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmassCharacterIndirectDetailVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmassCharacterIndirectDetailVolume") + } + static class ALightmassCharacterIndirectDetailVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALightmassCharacterIndirectDetailVolume; + +// Class Engine.LightmassPrimitiveSettingsObject +// 0x0018 (0x0040 - 0x0028) +class ULightmassPrimitiveSettingsObject final : public UObject +{ +public: + struct FLightmassPrimitiveSettings LightmassSettings; // 0x0028(0x0018)(Edit, NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightmassPrimitiveSettingsObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightmassPrimitiveSettingsObject") + } + static class ULightmassPrimitiveSettingsObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightmassPrimitiveSettingsObject; + +// Class Engine.LightWeightInstanceBlueprintFunctionLibrary +// 0x0000 (0x0028 - 0x0028) +class ULightWeightInstanceBlueprintFunctionLibrary final : public UBlueprintFunctionLibrary +{ +public: + static struct FActorInstanceHandle ConvertActorToLightWeightInstance(class AActor* Actor); + static struct FActorInstanceHandle CreateNewLightWeightInstance(class UClass* ActorClass, const struct FTransform& Transform, class UDataLayerInstance* Layer, class UWorld* World); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightWeightInstanceBlueprintFunctionLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightWeightInstanceBlueprintFunctionLibrary") + } + static class ULightWeightInstanceBlueprintFunctionLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightWeightInstanceBlueprintFunctionLibrary; + +// Class Engine.LocalPlayer +// 0x0268 (0x02B0 - 0x0048) +class ULocalPlayer final : public UPlayer +{ +public: + uint8 Pad_48[0x30]; // 0x0048(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + class UGameViewportClient* ViewportClient; // 0x0078(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_80[0x38]; // 0x0080(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + EAspectRatioAxisConstraint AspectRatioAxisConstraint; // 0x00B8(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B9[0x7]; // 0x00B9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf PendingLevelPlayerControllerClass; // 0x00C0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSentSplitJoin : 1; // 0x00C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Transient, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C9[0x17]; // 0x00C9(0x0017)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ControllerId; // 0x00E0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_E4[0x1CC]; // 0x00E4(0x01CC)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalPlayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalPlayer") + } + static class ULocalPlayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULocalPlayer; + +// Class Engine.LocationVolume +// 0x0010 (0x02F0 - 0x02E0) +class ALocationVolume final : public AVolume +{ +public: + uint8 Pad_2E0[0x8]; // 0x02E0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor DebugColor; // 0x02E8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2EC[0x4]; // 0x02EC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void Load(); + void Unload(); + + bool IsLoaded() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocationVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocationVolume") + } + static class ALocationVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALocationVolume; + +// Class Engine.LODActor +// 0x0088 (0x0330 - 0x02A8) +class ALODActor final : public AActor +{ +public: + class UStaticMeshComponent* StaticMeshComponent; // 0x02A8(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TMap InstancedStaticMeshComponents; // 0x02B0(0x0050)(ExportObject, Transient, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + class UHLODProxy* Proxy; // 0x0300(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName Key; // 0x0308(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float LODDrawDistance; // 0x0310(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 LODLevel; // 0x0314(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SubActors; // 0x0318(0x0010)(Edit, ZeroConstructor, EditConst, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 CachedNumHLODLevels; // 0x0328(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_329[0x7]; // 0x0329(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnSubActorEndPlay(class AActor* Actor, EEndPlayReason Reason); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LODActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LODActor") + } + static class ALODActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ALODActor; + +// Class Engine.MaterialEditorOnlyData +// 0x0640 (0x0680 - 0x0040) +class UMaterialEditorOnlyData final : public UMaterialInterfaceEditorOnlyData +{ +public: + struct FColorMaterialInput BaseColor; // 0x0040(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Metallic; // 0x0070(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Specular; // 0x00A0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Roughness; // 0x00D0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Anisotropy; // 0x0100(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FVectorMaterialInput Normal; // 0x0130(0x0038)(NoDestructor, NativeAccessSpecifierPublic) + struct FVectorMaterialInput Tangent; // 0x0168(0x0038)(NoDestructor, NativeAccessSpecifierPublic) + struct FColorMaterialInput EmissiveColor; // 0x01A0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Opacity; // 0x01D0(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput OpacityMask; // 0x0200(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FVectorMaterialInput WorldPositionOffset; // 0x0230(0x0038)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Displacement; // 0x0268(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FColorMaterialInput SubsurfaceColor; // 0x0298(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput ClearCoat; // 0x02C8(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput ClearCoatRoughness; // 0x02F8(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput AmbientOcclusion; // 0x0328(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput Refraction; // 0x0358(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FVector2MaterialInput CustomizedUVs[0x8]; // 0x0388(0x0038)(NoDestructor, NativeAccessSpecifierPublic) + struct FMaterialAttributesInput MaterialAttributes; // 0x0548(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FScalarMaterialInput PixelDepthOffset; // 0x0578(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FShadingModelMaterialInput ShadingModelFromMaterialExpression; // 0x05A8(0x0028)(ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5D0[0x8]; // 0x05D0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FScalarMaterialInput SurfaceThickness; // 0x05D8(0x0030)(NoDestructor, NativeAccessSpecifierPublic) + struct FSubstrateMaterialInput FrontMaterial; // 0x0608(0x0028)(ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_630[0x8]; // 0x0630(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMaterialExpressionCollection ExpressionCollection; // 0x0638(0x0030)(NativeAccessSpecifierPublic) + TArray ParameterGroupData; // 0x0668(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + int32 SubstrateConversionVersion; // 0x0678(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_67C[0x4]; // 0x067C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialEditorOnlyData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialEditorOnlyData") + } + static class UMaterialEditorOnlyData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialEditorOnlyData; + +// Class Engine.ProxyLODMeshSimplificationSettings +// 0x0008 (0x0040 - 0x0038) +class UProxyLODMeshSimplificationSettings final : public UDeveloperSettings +{ +public: + class FName ProxyLODMeshReductionModuleName; // 0x0038(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ProxyLODMeshSimplificationSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ProxyLODMeshSimplificationSettings") + } + static class UProxyLODMeshSimplificationSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UProxyLODMeshSimplificationSettings; + +// Class Engine.Material +// 0x0188 (0x0250 - 0x00C8) +class UMaterial final : public UMaterialInterface +{ +public: + class UPhysicalMaterial* PhysMaterial; // 0x00C8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterialMask* PhysMaterialMask; // 0x00D0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterial* PhysicalMaterialMap[0x8]; // 0x00D8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RenderTracePhysicalMaterialOutputs; // 0x0118(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + EMaterialDomain MaterialDomain; // 0x0128(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlendMode BlendMode; // 0x0129(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDecalBlendMode DecalBlendMode; // 0x012A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialDecalResponse MaterialDecalResponse; // 0x012B(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12C[0x4]; // 0x012C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMaterialOverrideNanite NaniteOverrideMaterial; // 0x0130(0x0038)(Edit, NativeAccessSpecifierPublic) + struct FDisplacementScaling DisplacementScaling; // 0x0168(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FDisplacementFadeRange DisplacementFadeRange; // 0x0170(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + EMaterialShadingModel ShadingModel; // 0x0178(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bCastDynamicShadowAsMasked : 1; // 0x0179(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + struct FMaterialShadingModelField ShadingModels; // 0x017A(0x0002)(NoDestructor, AssetRegistrySearchable, NativeAccessSpecifierPrivate) + float OpacityMaskClipValue; // 0x017C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableSeparateTranslucency : 1; // 0x0180(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bEnableResponsiveAA : 1; // 0x0180(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bScreenSpaceReflections : 1; // 0x0180(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bContactShadows : 1; // 0x0180(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 TwoSided : 1; // 0x0180(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsThinSurface : 1; // 0x0180(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DitheredLODTransition : 1; // 0x0180(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DitherOpacityMask : 1; // 0x0180(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowNegativeEmissiveColor : 1; // 0x0181(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPixelAnimation : 1; // 0x0181(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableTessellation : 1; // 0x0181(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDisplacementFade : 1; // 0x0181(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMaterialTranslucencyPass TranslucencyPass; // 0x0182(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETranslucencyLightingMode TranslucencyLightingMode; // 0x0183(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableMobileSeparateTranslucency : 1; // 0x0184(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_185[0x3]; // 0x0185(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumCustomizedUVs; // 0x0188(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucencyDirectionalLightingIntensity; // 0x018C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentShadowDensityScale; // 0x0190(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentSelfShadowDensityScale; // 0x0194(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentSelfShadowSecondDensityScale; // 0x0198(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentSelfShadowSecondOpacity; // 0x019C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentBackscatteringExponent; // 0x01A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TranslucentMultipleScatteringExtinction; // 0x01A4(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TranslucentShadowStartOffset; // 0x01B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDisableDepthTest : 1; // 0x01B8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWriteOnlyAlpha : 1; // 0x01B8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateSphericalParticleNormals : 1; // 0x01B8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTangentSpaceNormal : 1; // 0x01B8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseEmissiveForDynamicAreaLighting : 1; // 0x01B8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedAsSpecialEngineMaterial : 1; // 0x01B8(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithSkeletalMesh : 1; // 0x01B8(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithEditorCompositing : 1; // 0x01B8(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithParticleSprites : 1; // 0x01B9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithBeamTrails : 1; // 0x01B9(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithMeshParticles : 1; // 0x01B9(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithNiagaraSprites : 1; // 0x01B9(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithNiagaraRibbons : 1; // 0x01B9(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithNiagaraMeshParticles : 1; // 0x01B9(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithGeometryCache : 1; // 0x01B9(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithStaticLighting : 1; // 0x01B9(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithMorphTargets : 1; // 0x01BA(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithSplineMeshes : 1; // 0x01BA(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithInstancedStaticMeshes : 1; // 0x01BA(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithGeometryCollections : 1; // 0x01BA(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsesDistortion : 1; // 0x01BA(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRootNodeOverridesDefaultDistortion : 1; // 0x01BA(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithClothing : 1; // 0x01BA(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_1BA_7 : 1; // 0x01BA(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_1BB[0x1]; // 0x01BB(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUsedWithWater : 1; // 0x01BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithHairStrands : 1; // 0x01BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithLidarPointCloud : 1; // 0x01BC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithVirtualHeightfieldMesh : 1; // 0x01BC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithNanite : 1; // 0x01BC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithVolumetricCloud : 1; // 0x01BC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithHeterogeneousVolumes : 1; // 0x01BC(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_1BC_7 : 1; // 0x01BC(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_1BD[0x3]; // 0x01BD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUsedWithUI : 1; // 0x01C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceCompatibleWithLightFunctionAtlas : 1; // 0x01C0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutomaticallySetUsageInEditor : 1; // 0x01C0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFullyRough : 1; // 0x01C0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFullPrecision : 1; // 0x01C0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMaterialFloatPrecisionMode FloatPrecisionMode; // 0x01C1(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseLightmapDirectionality : 1; // 0x01C2(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileEnableHighQualityBRDF : 1; // 0x01C2(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAlphaToCoverage : 1; // 0x01C2(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_1C2_3 : 5; // 0x01C2(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_1C3[0x1]; // 0x01C3(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bForwardRenderUsePreintegratedGFForSimpleIBL : 1; // 0x01C4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_1C4_1 : 7; // 0x01C4(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_1C5[0x3]; // 0x01C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseHQForwardReflections : 1; // 0x01C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForwardBlendsSkyLightCubemaps : 1; // 0x01C8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsePlanarForwardReflections : 1; // 0x01C8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNormalCurvatureToRoughness : 1; // 0x01C8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 AllowTranslucentCustomDepthWrites : 1; // 0x01C8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowFrontLayerTranslucency : 1; // 0x01C8(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Wireframe : 1; // 0x01C8(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMaterialShadingRate ShadingRate; // 0x01C9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowVariableRateShading : 1; // 0x01CA(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanMaskedBeAssumedOpaque : 1; // 0x01CA(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsMasked : 1; // 0x01CA(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsPreviewMaterial : 1; // 0x01CA(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsFunctionPreviewMaterial : 1; // 0x01CA(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseMaterialAttributes : 1; // 0x01CA(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableExecWire : 1; // 0x01CA(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableNewHLSLGenerator : 1; // 0x01CA(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastRayTracedShadows : 1; // 0x01CB(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseTranslucencyVertexFog : 1; // 0x01CB(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyCloudFogging : 1; // 0x01CB(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsSky : 1; // 0x01CB(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeFogPerPixel : 1; // 0x01CB(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOutputTranslucentVelocity : 1; // 0x01CB(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowDevelopmentShaderCompile : 1; // 0x01CB(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsMaterialEditorStatsMaterial : 1; // 0x01CB(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Transient, DuplicateTransient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EBlendableLocation BlendableLocation; // 0x01CC(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BlendableOutputAlpha : 1; // 0x01CD(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1CE[0x2]; // 0x01CE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + class FName UserSceneTexture; // 0x01D0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint UserTextureDivisor; // 0x01D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ResolutionRelativeToInput; // 0x01E0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDisablePreExposureScale : 1; // 0x01E8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUsedWithNeuralNetworks : 1; // 0x01E8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableStencilTest : 1; // 0x01E8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMaterialStencilCompare StencilCompare; // 0x01E9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 StencilRefValue; // 0x01EA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 NeuralProfileId; // 0x01EB(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERefractionMode RefractionMode; // 0x01EC(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERefractionMode RefractionMethod; // 0x01ED(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERefractionCoverageMode RefractionCoverageMode; // 0x01EE(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelDepthOffsetMode PixelDepthOffsetMode; // 0x01EF(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BlendablePriority; // 0x01F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsBlendable : 1; // 0x01F4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1F5[0x1]; // 0x01F5(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint16 PreshaderGap; // 0x01F6(0x0002)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 UsageFlagWarnings; // 0x01F8(0x0004)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1FC[0x4]; // 0x01FC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + float RefractionDepthBias; // 0x0200(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxWorldPositionOffsetDisplacement; // 0x0204(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysEvaluateWorldPositionOffset; // 0x0208(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_209[0x7]; // 0x0209(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid StateId; // 0x0210(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_220[0x30]; // 0x0220(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Material") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Material") + } + static class UMaterial* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterial; + +// Class Engine.MaterialInstanceEditorOnlyData +// 0x00A0 (0x00E0 - 0x0040) +class UMaterialInstanceEditorOnlyData final : public UMaterialInterfaceEditorOnlyData +{ +public: + struct FStaticParameterSetEditorOnlyData StaticParameters; // 0x0040(0x00A0)(NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialInstanceEditorOnlyData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialInstanceEditorOnlyData") + } + static class UMaterialInstanceEditorOnlyData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialInstanceEditorOnlyData; + +// Class Engine.MaterialParameterCollection +// 0x0048 (0x0070 - 0x0028) +class UMaterialParameterCollection final : public UObject +{ +public: + struct FGuid StateId; // 0x0028(0x0010)(ZeroConstructor, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ScalarParameters; // 0x0038(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorParameters; // 0x0048(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_58[0x18]; // 0x0058(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + float GetScalarParameterDefaultValue(class FName ParameterName, bool* bParameterFound) const; + TArray GetScalarParameterNames() const; + struct FLinearColor GetVectorParameterDefaultValue(class FName ParameterName, bool* bParameterFound) const; + TArray GetVectorParameterNames() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MaterialParameterCollection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MaterialParameterCollection") + } + static class UMaterialParameterCollection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMaterialParameterCollection; + +// Class Engine.MeshSimplificationSettings +// 0x0010 (0x0048 - 0x0038) +class UMeshSimplificationSettings final : public UDeveloperSettings +{ +public: + class FName MeshReductionModuleName; // 0x0038(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMeshReductionBackwardCompatible; // 0x0040(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshSimplificationSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshSimplificationSettings") + } + static class UMeshSimplificationSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshSimplificationSettings; + +// Class Engine.MeshVertexPainterKismetLibrary +// 0x0000 (0x0028 - 0x0028) +class UMeshVertexPainterKismetLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void PaintVerticesLerpAlongAxis(class UStaticMeshComponent* StaticMeshComponent, const struct FLinearColor& StartColor, const struct FLinearColor& EndColor, EVertexPaintAxis Axis, bool bConvertToSRGB); + static void PaintVerticesSingleColor(class UStaticMeshComponent* StaticMeshComponent, const struct FLinearColor& FillColor, bool bConvertToSRGB); + static void RemovePaintedVertices(class UStaticMeshComponent* StaticMeshComponent); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshVertexPainterKismetLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshVertexPainterKismetLibrary") + } + static class UMeshVertexPainterKismetLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UMeshVertexPainterKismetLibrary; + +// Class Engine.Model +// 0x0240 (0x0268 - 0x0028) +class UModel final : public UObject +{ +public: + uint8 Pad_28[0x240]; // 0x0028(0x0240)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Model") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Model") + } + static class UModel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UModel; + +// Class Engine.NetworkSettings +// 0x0018 (0x0050 - 0x0038) +class UNetworkSettings final : public UDeveloperSettings +{ +public: + uint8 bVerifyPeer : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMultiplayerWorldOriginRebasing : 1; // 0x0038(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray NetworkEmulationProfiles; // 0x0040(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkSettings") + } + static class UNetworkSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkSettings; + +// Class Engine.BandwidthTestActor +// 0x0020 (0x02C8 - 0x02A8) +class ABandwidthTestActor final : public AActor +{ +public: + struct FBandwidthTestGenerator BandwidthGenerator; // 0x02A8(0x0020)(Net, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BandwidthTestActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BandwidthTestActor") + } + static class ABandwidthTestActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ABandwidthTestActor; + +// Class Engine.DataStreamChannel +// 0x2030 (0x2098 - 0x0068) +class UDataStreamChannel final : public UChannel +{ +public: + uint8 Pad_68[0x2030]; // 0x0068(0x2030)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataStreamChannel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataStreamChannel") + } + static class UDataStreamChannel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataStreamChannel; + +// Class Engine.EngineReplicationBridge +// 0x0020 (0x0610 - 0x05F0) +class UEngineReplicationBridge final : public UObjectReplicationBridge +{ +public: + uint8 Pad_5F0[0x10]; // 0x05F0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UIrisObjectReferencePackageMap* ObjectReferencePackageMap; // 0x0600(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_608[0x8]; // 0x0608(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EngineReplicationBridge") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EngineReplicationBridge") + } + static class UEngineReplicationBridge* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEngineReplicationBridge; + +// Class Engine.NetworkMetricsConfig +// 0x0010 (0x0038 - 0x0028) +class UNetworkMetricsConfig final : public UObject +{ +public: + TArray Listeners; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsConfig") + } + static class UNetworkMetricsConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsConfig; + +// Class Engine.NetworkMetricsPerfCounters +// 0x0000 (0x0030 - 0x0030) +class UNetworkMetricsPerfCounters final : public UNetworkMetricsBaseListener +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsPerfCounters") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsPerfCounters") + } + static class UNetworkMetricsPerfCounters* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsPerfCounters; + +// Class Engine.NetworkMetricsStats +// 0x0008 (0x0038 - 0x0030) +class UNetworkMetricsStats final : public UNetworkMetricsBaseListener +{ +public: + uint8 Pad_30[0x8]; // 0x0030(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkMetricsStats") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkMetricsStats") + } + static class UNetworkMetricsStats* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkMetricsStats; + +// Class Engine.RPCDoSDetectionConfig +// 0x0060 (0x0088 - 0x0028) +class URPCDoSDetectionConfig final : public UObject +{ +public: + bool bRPCDoSDetection; // 0x0028(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRPCDoSAnalytics; // 0x0029(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 HitchTimeQuotaMS; // 0x002C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 HitchSuspendDetectionTimeMS; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DetectionSeverity; // 0x0038(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + int32 InitialConnectToleranceMS; // 0x0048(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray RPCBlockWhitelist; // 0x0050(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray RPCBlockAllowlist; // 0x0060(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray RPCAnalyticsThresholds; // 0x0070(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + double RPCAnalyticsOverrideChance; // 0x0080(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RPCDoSDetectionConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RPCDoSDetectionConfig") + } + static class URPCDoSDetectionConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URPCDoSDetectionConfig; + +// Class Engine.NetworkSubsystem +// 0x0050 (0x0080 - 0x0030) +class UNetworkSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x50]; // 0x0030(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetworkSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetworkSubsystem") + } + static class UNetworkSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNetworkSubsystem; + +// Class Engine.ObjectReferencer +// 0x0010 (0x0038 - 0x0028) +class UObjectReferencer final : public UObject +{ +public: + TArray ReferencedObjects; // 0x0028(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectReferencer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectReferencer") + } + static class UObjectReferencer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectReferencer; + +// Class Engine.ObjectTraceWorldSubsystem +// 0x0010 (0x0040 - 0x0030) +class UObjectTraceWorldSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectTraceWorldSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectTraceWorldSubsystem") + } + static class UObjectTraceWorldSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UObjectTraceWorldSubsystem; + +// Class Engine.OnlineBlueprintCallProxyBase +// 0x0000 (0x0030 - 0x0030) +class UOnlineBlueprintCallProxyBase : public UBlueprintAsyncActionBase +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("OnlineBlueprintCallProxyBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"OnlineBlueprintCallProxyBase") + } + static class UOnlineBlueprintCallProxyBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UOnlineBlueprintCallProxyBase; + +// Class Engine.OnlineEngineInterface +// 0x0000 (0x0028 - 0x0028) +class UOnlineEngineInterface : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("OnlineEngineInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"OnlineEngineInterface") + } + static class UOnlineEngineInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UOnlineEngineInterface; + +// Class Engine.OnlineSession +// 0x0000 (0x0028 - 0x0028) +class UOnlineSession : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("OnlineSession") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"OnlineSession") + } + static class UOnlineSession* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UOnlineSession; + +// Class Engine.PackageMapClient +// 0x03D8 (0x04B8 - 0x00E0) +class UPackageMapClient final : public UPackageMap +{ +public: + uint8 Pad_E0[0x3D8]; // 0x00E0(0x03D8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PackageMapClient") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PackageMapClient") + } + static class UPackageMapClient* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPackageMapClient; + +// Class Engine.PainCausingVolume +// 0x0028 (0x0318 - 0x02F0) +class APainCausingVolume final : public APhysicsVolume +{ +public: + uint8 bPainCausing : 1; // 0x02F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2F1[0x3]; // 0x02F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DamagePerSec; // 0x02F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DamageType; // 0x02F8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PainInterval; // 0x0300(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEntryPain : 1; // 0x0304(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BACKUP_bPainCausing : 1; // 0x0304(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_305[0x3]; // 0x0305(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class AController* DamageInstigator; // 0x0308(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_310[0x8]; // 0x0310(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PainCausingVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PainCausingVolume") + } + static class APainCausingVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APainCausingVolume; + +// Class Engine.AsyncPhysicsInputComponent +// 0x0028 (0x00C8 - 0x00A0) +class UAsyncPhysicsInputComponent final : public UActorComponent +{ +public: + TSubclassOf DataClass; // 0x00A0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray BufferedData; // 0x00A8(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + class UAsyncPhysicsData* DataToConsume; // 0x00B8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UAsyncPhysicsData* DataToWrite; // 0x00C0(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void ServerRPCBufferInput(class UAsyncPhysicsData* AsyncPhysicsData); + + const class UAsyncPhysicsData* GetDataToConsume() const; + class UAsyncPhysicsData* GetDataToWrite() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncPhysicsInputComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncPhysicsInputComponent") + } + static class UAsyncPhysicsInputComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncPhysicsInputComponent; + +// Class Engine.ClusterUnionActor +// 0x0008 (0x02B0 - 0x02A8) +class AClusterUnionActor final : public AActor +{ +public: + class UClusterUnionComponent* ClusterUnion; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + class UClusterUnionComponent* GetClusterUnionComponent() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClusterUnionActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClusterUnionActor") + } + static class AClusterUnionActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AClusterUnionActor; + +// Class Engine.ClusterUnionComponent +// 0x0250 (0x0740 - 0x04F0) +class UClusterUnionComponent final : public UPrimitiveComponent +{ +public: + bool bEnableDamageFromCollision; // 0x04E8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4E9[0x7]; // 0x04E9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TMulticastInlineDelegate& BoneIds, bool bIsNew)> OnComponentAddedEvent; // 0x04F0(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnComponentRemovedEvent; // 0x0500(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnComponentBoundsChangedEvent; // 0x0510(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_520[0x98]; // 0x0520(0x0098)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ClusteredComponentsReferences; // 0x05B8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + int32 GravityGroupIndexOverride; // 0x05C8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_5CC[0x104]; // 0x05CC(0x0104)(Fixing Size After Last Property [ Dumper-7 ]) + struct FClusterUnionReplicatedData ReplicatedRigidState; // 0x06D0(0x0002)(Net, RepNotify, NoDestructor, NativeAccessSpecifierPrivate) + uint8 Pad_6D2[0x6E]; // 0x06D2(0x006E)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddComponentToCluster(class UPrimitiveComponent* InComponent, const TArray& BoneIds, bool bRebuildGeometry); + void ForceSetChildToParent(class UPrimitiveComponent* InComponent, const TArray& BoneIds, const TArray& ChildToParent); + TArray GetActors(); + TArray GetPrimitiveComponents(); + void HandleComponentPhysicsStateChange(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange); + void HandleComponentPhysicsStateChangePostAddIntoClusterUnion(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange); + bool IsComponentAdded(class UPrimitiveComponent* Component); + void OnRep_RigidState(); + void RemoveComponentBonesFromCluster(class UPrimitiveComponent* InComponent, const TArray& BoneIds); + void RemoveComponentFromCluster(class UPrimitiveComponent* InComponent); + void SetEnableDamageFromCollision(bool bValue); + void SetIsAnchored(bool bIsAnchored); + + bool IsAuthority() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClusterUnionComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClusterUnionComponent") + } + static class UClusterUnionComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UClusterUnionComponent; + +// Class Engine.ClusterUnionReplicatedProxyComponent +// 0x0090 (0x0130 - 0x00A0) +class UClusterUnionReplicatedProxyComponent final : public UActorComponent +{ +public: + TWeakObjectPtr ParentClusterUnion; // 0x00A0(0x0008)(ExportObject, Net, ZeroConstructor, InstancedReference, IsPlainOldData, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TWeakObjectPtr ChildClusteredComponent; // 0x00A8(0x0008)(ExportObject, Net, ZeroConstructor, InstancedReference, IsPlainOldData, RepNotify, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray ParticleBoneIds; // 0x00B0(0x0010)(Net, ZeroConstructor, RepNotify, NativeAccessSpecifierPrivate) + uint8 Pad_C0[0x50]; // 0x00C0(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ParticleChildToParents; // 0x0110(0x0010)(Net, ZeroConstructor, RepNotify, NativeAccessSpecifierPrivate) + bool bNetUpdateParentClusterUnion; // 0x0120(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bNetUpdateChildClusteredComponent; // 0x0121(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bNetUpdateParticleBoneIds; // 0x0122(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bNetUpdateParticleChildToParents; // 0x0123(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bIsPendingDeletion; // 0x0124(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_125[0xB]; // 0x0125(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool IsPendingDeletion(); + void MarkPendingDeletion(); + void OnRep_ChildClusteredComponent(); + void OnRep_ParentClusterUnion(); + void OnRep_ParticleBoneIds(); + void OnRep_ParticleChildToParents(); + void SetChildClusteredComponent(class UPrimitiveComponent* InComponent); + void SetParentClusterUnion(class UClusterUnionComponent* InComponent); + void SetParticleBoneIds(const TArray& InIds); + void SetParticleChildToParent(int32 BoneID, const struct FTransform& ChildToParent); + + class UPrimitiveComponent* GetChildClusteredComponent() const; + class UClusterUnionComponent* GetParentClusterUnionComponent() const; + const TArray GetParticleBoneIds() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ClusterUnionReplicatedProxyComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ClusterUnionReplicatedProxyComponent") + } + static class UClusterUnionReplicatedProxyComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UClusterUnionReplicatedProxyComponent; + +// Class Engine.PhysicalMaterialMask +// 0x0010 (0x0038 - 0x0028) +class UPhysicalMaterialMask final : public UObject +{ +public: + int32 UVChannelIndex; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressX; // 0x002C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureAddress AddressY; // 0x002D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E[0xA]; // 0x002E(0x000A)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicalMaterialMask") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicalMaterialMask") + } + static class UPhysicalMaterialMask* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicalMaterialMask; + +// Class Engine.PhysicsAsset +// 0x0128 (0x0150 - 0x0028) +class UPhysicsAsset final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BoundsBodies; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray SkeletalBodySetups; // 0x0040(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ConstraintSetup; // 0x0050(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) + struct FPhysicsAssetSolverSettings SolverSettings; // 0x0060(0x001C)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + struct FSolverIterations SolverIterations; // 0x007C(0x0018)(Edit, Config, EditConst, NoDestructor, NativeAccessSpecifierPublic) + EPhysicsAssetSolverType SolverType; // 0x0094(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bNotForDedicatedServer : 1; // 0x0095(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_96[0xA2]; // 0x0096(0x00A2)(Fixing Size After Last Property [ Dumper-7 ]) + class UThumbnailInfo* ThumbnailInfo; // 0x0138(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BodySetup; // 0x0140(0x0010)(ExportObject, ZeroConstructor, Deprecated, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsAsset") + } + static class UPhysicsAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsAsset; + +// Class Engine.PhysicsCollisionHandler +// 0x0018 (0x0040 - 0x0028) +class UPhysicsCollisionHandler final : public UObject +{ +public: + float ImpactThreshold; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ImpactReFireDelay; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* DefaultImpactSound; // 0x0030(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LastImpactSoundTime; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsCollisionHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsCollisionHandler") + } + static class UPhysicsCollisionHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsCollisionHandler; + +// Class Engine.PhysicsConstraintActor +// 0x0020 (0x02C8 - 0x02A8) +class APhysicsConstraintActor final : public ARigidBodyBase +{ +public: + class UPhysicsConstraintComponent* ConstraintComp; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class AActor* ConstraintActor1; // 0x02B0(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ConstraintActor2; // 0x02B8(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDisableCollision : 1; // 0x02C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2C1[0x7]; // 0x02C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsConstraintActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsConstraintActor") + } + static class APhysicsConstraintActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APhysicsConstraintActor; + +// Class Engine.PhysicsHandleComponent +// 0x0450 (0x04F0 - 0x00A0) +class alignas(0x10) UPhysicsHandleComponent final : public UActorComponent +{ +public: + class UPrimitiveComponent* GrabbedComponent; // 0x00A0(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A8[0x8]; // 0x00A8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_B0_0 : 1; // 0x00B0(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bSoftAngularConstraint : 1; // 0x00B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSoftLinearConstraint : 1; // 0x00B0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInterpolateTarget : 1; // 0x00B0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x3]; // 0x00B1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearDamping; // 0x00B4(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearStiffness; // 0x00B8(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularDamping; // 0x00BC(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularStiffness; // 0x00C0(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C4[0xCC]; // 0x00C4(0x00CC)(Fixing Size After Last Property [ Dumper-7 ]) + float InterpolationSpeed; // 0x0190(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_194[0x35C]; // 0x0194(0x035C)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void GrabComponent(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& GrabLocation, bool bConstrainRotation); + void GrabComponentAtLocation(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& GrabLocation); + void GrabComponentAtLocationWithRotation(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& Location, const struct FRotator& Rotation); + void ReleaseComponent(); + void SetAngularDamping(float NewAngularDamping); + void SetAngularStiffness(float NewAngularStiffness); + void SetInterpolationSpeed(float NewInterpolationSpeed); + void SetLinearDamping(float NewLinearDamping); + void SetLinearStiffness(float NewLinearStiffness); + void SetTargetLocation(const struct FVector& NewLocation); + void SetTargetLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation); + void SetTargetRotation(const struct FRotator& NewRotation); + + class UPrimitiveComponent* GetGrabbedComponent() const; + void GetTargetLocationAndRotation(struct FVector* TargetLocation, struct FRotator* TargetRotation) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsHandleComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsHandleComponent") + } + static class UPhysicsHandleComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsHandleComponent; + +// Class Engine.PhysicsThruster +// 0x0008 (0x02B0 - 0x02A8) +class APhysicsThruster final : public ARigidBodyBase +{ +public: + class UPhysicsThrusterComponent* ThrusterComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsThruster") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsThruster") + } + static class APhysicsThruster* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APhysicsThruster; + +// Class Engine.RadialForceComponent +// 0x0030 (0x0260 - 0x0230) +class URadialForceComponent final : public USceneComponent +{ +public: + float Radius; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERadialImpulseFalloff Falloff; // 0x0234(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_235[0x3]; // 0x0235(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ImpulseStrength; // 0x0238(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bImpulseVelChange : 1; // 0x023C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreOwningActor : 1; // 0x023C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_23D[0x3]; // 0x023D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ForceStrength; // 0x0240(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DestructibleDamage; // 0x0244(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypesToAffect; // 0x0248(0x0010)(Edit, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_258[0x8]; // 0x0258(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddObjectTypeToAffect(EObjectTypeQuery ObjectType); + void FireImpulse(); + void RemoveObjectTypeToAffect(EObjectTypeQuery ObjectType); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RadialForceComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RadialForceComponent") + } + static class URadialForceComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URadialForceComponent; + +// Class Engine.PhysicsFieldComponent +// 0x00E0 (0x0310 - 0x0230) +class UPhysicsFieldComponent final : public USceneComponent +{ +public: + uint8 Pad_230[0xE0]; // 0x0230(0x00E0)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsFieldComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsFieldComponent") + } + static class UPhysicsFieldComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsFieldComponent; + +// Class Engine.PhysicsFieldStatics +// 0x0000 (0x0028 - 0x0028) +class UPhysicsFieldStatics final : public UBlueprintFunctionLibrary +{ +public: + static int32 EvalPhysicsIntegerField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldIntegerType IntegerType); + static float EvalPhysicsScalarField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldScalarType ScalarType); + static struct FVector EvalPhysicsVectorField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldVectorType VectorType); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsFieldStatics") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsFieldStatics") + } + static class UPhysicsFieldStatics* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsFieldStatics; + +// Class Engine.PrecomputedVisibilityVolume +// 0x0000 (0x02E0 - 0x02E0) +class APrecomputedVisibilityVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PrecomputedVisibilityVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PrecomputedVisibilityVolume") + } + static class APrecomputedVisibilityVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_APrecomputedVisibilityVolume; + +// Class Engine.PrimaryAssetLabel +// 0x0038 (0x0068 - 0x0030) +class UPrimaryAssetLabel final : public UPrimaryDataAsset +{ +public: + struct FPrimaryAssetRules Rules; // 0x0030(0x000C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 bLabelAssetsInMyDirectory : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsRuntimeLabel : 1; // 0x003C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIncludeRedirectors : 1; // 0x003C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray> ExplicitAssets; // 0x0040(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> ExplicitBlueprints; // 0x0050(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + struct FCollectionReference AssetCollection; // 0x0060(0x0008)(Edit, NoDestructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PrimaryAssetLabel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PrimaryAssetLabel") + } + static class UPrimaryAssetLabel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPrimaryAssetLabel; + +// Class Engine.HealthSnapshotBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UHealthSnapshotBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void LogPerformanceSnapshot(const class FString& SnapshotTitle, bool bResetStats); + static void StartPerformanceSnapshots(); + static void StopPerformanceSnapshots(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HealthSnapshotBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HealthSnapshotBlueprintLibrary") + } + static class UHealthSnapshotBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHealthSnapshotBlueprintLibrary; + +// Class Engine.LevelStreamingProfilingSubsystem +// 0x0090 (0x00C0 - 0x0030) +class ULevelStreamingProfilingSubsystem final : public UWorldSubsystem +{ +public: + uint8 Pad_30[0x90]; // 0x0030(0x0090)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LevelStreamingProfilingSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LevelStreamingProfilingSubsystem") + } + static class ULevelStreamingProfilingSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULevelStreamingProfilingSubsystem; + +// Class Engine.RectLight +// 0x0008 (0x02C0 - 0x02B8) +class ARectLight final : public ALight +{ +public: + class URectLightComponent* RectLightComponent; // 0x02B8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RectLight") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RectLight") + } + static class ARectLight* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ARectLight; + +// Class Engine.RendererSettings +// 0x01F0 (0x0228 - 0x0038) +class URendererSettings final : public UDeveloperSettings +{ +public: + EMobileShadingPath MobileShadingPath; // 0x0038(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMobileSupportDeferredOnOpenGL : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileSupportGPUScene : 1; // 0x003C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EMobileAntiAliasingMethod MobileAntiAliasing; // 0x0040(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMobileFloatPrecisionMode MobileFloatPrecisionMode; // 0x0041(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x2]; // 0x0042(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMobileAllowDitheredLODTransition : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileVirtualTextures : 1; // 0x0044(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDiscardUnusedQualityLevels : 1; // 0x0044(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EShaderCompressionFormat ShaderCompressionFormat; // 0x0048(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOcclusionCulling : 1; // 0x004C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinScreenRadiusForLights; // 0x0050(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinScreenRadiusForEarlyZPass; // 0x0054(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bPrecomputedVisibilityWarning : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTextureStreaming : 1; // 0x0058(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseDXT5NormalMaps : 1; // 0x0058(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVirtualTextures : 1; // 0x0058(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVirtualTextureEnableAutoImport : 1; // 0x0058(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVirtualTexturedLightmaps : 1; // 0x0058(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVirtualTextureAnisotropicFiltering : 1; // 0x0058(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableVirtualTextureOpacityMask : 1; // 0x0058(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableVirtualTexturePostProcessing : 1; // 0x0059(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5A[0x2]; // 0x005A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 VirtualTextureTileSize; // 0x005C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VirtualTextureTileBorderSize; // 0x0060(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 VirtualTextureFeedbackFactor; // 0x0064(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MeshPaintVirtualTextureTileSize; // 0x0068(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MeshPaintVirtualTextureTileBorderSize; // 0x006C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool MeshPaintVirtualTextureUseCompression; // 0x0070(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool MeshPaintDefaultOnStaticMesh; // 0x0071(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_72[0x2]; // 0x0072(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MeshPaintDefaultTexelsPerVertex; // 0x0074(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MeshPaintVirtualTextureMaxTextureSize; // 0x0078(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTBaseColor; // 0x007C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTBaseColorRoughness; // 0x007D(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTBaseColorSpecular; // 0x007E(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTMask4; // 0x007F(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTWorldHeight; // 0x0080(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableRVTDisplacement; // 0x0081(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseHighQualityRVTHeightSampling; // 0x0082(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EWorkingColorSpace WorkingColorSpaceChoice; // 0x0083(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D RedChromaticityCoordinate; // 0x0088(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D GreenChromaticityCoordinate; // 0x0098(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D BlueChromaticityCoordinate; // 0x00A8(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D WhiteChromaticityCoordinate; // 0x00B8(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseLegacyLuminanceFactors : 1; // 0x00C8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClearCoatEnableSecondNormal : 1; // 0x00C8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C9[0x3]; // 0x00C9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDynamicGlobalIlluminationMethod DynamicGlobalIllumination; // 0x00CC(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReflectionMethod Reflections; // 0x00CD(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CE[0x2]; // 0x00CE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReflectionCaptureResolution; // 0x00D0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReflectionEnvironmentLightmapMixBasedOnRoughness : 1; // 0x00D4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHardwareRayTracingForLumen : 1; // 0x00D4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D5[0x3]; // 0x00D5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ELumenRayLightingMode LumenRayLightingMode; // 0x00D8(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D9[0x3]; // 0x00D9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 LumenFrontLayerTranslucencyReflections : 1; // 0x00DC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_DD[0x3]; // 0x00DD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ELumenSoftwareTracingMode LumenSoftwareTracingMode; // 0x00E0(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELumenScreenTracingSource LumenScreenTracingSource; // 0x00E1(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E2[0x2]; // 0x00E2(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 LumenRayTracedTranslucentRefractions : 1; // 0x00E4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMegaLights : 1; // 0x00E4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableRayTracingShadows : 1; // 0x00E4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_E5[0x3]; // 0x00E5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EShadowMapMethod ShadowMapMethod; // 0x00E8(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E9[0x3]; // 0x00E9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bEnableRayTracing : 1; // 0x00EC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableRayTracingSkylight : 1; // 0x00EC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableRayTracingTextureLOD : 1; // 0x00EC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePathTracing : 1; // 0x00EC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateMeshDistanceFields : 1; // 0x00EC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_ED[0x3]; // 0x00ED(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DistanceFieldVoxelDensity; // 0x00F0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bNanite : 1; // 0x00F4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowStaticLighting : 1; // 0x00F4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseNormalMapsForStaticLighting : 1; // 0x00F4(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForwardShading : 1; // 0x00F4(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVertexFoggingForOpaque : 1; // 0x00F4(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSeparateTranslucency : 1; // 0x00F4(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F5[0x3]; // 0x00F5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ETranslucentSortPolicy TranslucentSortPolicy; // 0x00F8(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F9[0x7]; // 0x00F9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector TranslucentSortAxis; // 0x0100(0x0018)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLocalFogVolumeApplyOnTranslucent : 1; // 0x0118(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_119[0x3]; // 0x0119(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EFixedFoveationLevels FoveationLevel; // 0x011C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11D[0x3]; // 0x011D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bDynamicFoveation : 1; // 0x0120(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_121[0x3]; // 0x0121(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ECustomDepthStencil CustomDepthStencil; // 0x0124(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_125[0x3]; // 0x0125(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bCustomDepthTaaJitter : 1; // 0x0128(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableAlphaChannelInPostProcessing : 1; // 0x0128(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDeferredSupportPrimitiveAlphaHoldout : 1; // 0x0128(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultFeatureBloom : 1; // 0x0128(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultFeatureAmbientOcclusion : 1; // 0x0128(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultFeatureAmbientOcclusionStaticFraction : 1; // 0x0128(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultFeatureAutoExposure : 1; // 0x0128(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_129[0x3]; // 0x0129(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EAutoExposureMethodUI DefaultFeatureAutoExposure; // 0x012C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12D[0x3]; // 0x012D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultFeatureAutoExposureBias; // 0x0130(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bExtendDefaultLuminanceRangeInAutoExposureSettings : 1; // 0x0134(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_135[0x3]; // 0x0135(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultFeatureLocalExposureHighlightContrast; // 0x0138(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultFeatureLocalExposureShadowContrast; // 0x013C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bDefaultFeatureMotionBlur : 1; // 0x0140(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultFeatureLensFlare : 1; // 0x0140(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTemporalUpsampling : 1; // 0x0140(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_141[0x3]; // 0x0141(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EAntiAliasingMethod DefaultFeatureAntiAliasing; // 0x0144(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECompositingSampleCount MSAASampleCount; // 0x0145(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELightUnits DefaultLightUnits; // 0x0146(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDefaultBackBufferPixelFormat DefaultBackBufferPixelFormat; // 0x0147(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultManualScreenPercentage; // 0x0148(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EScreenPercentageMode DefaultScreenPercentageDesktopMode; // 0x014C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EScreenPercentageMode DefaultScreenPercentageMobileMode; // 0x0150(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EScreenPercentageMode DefaultScreenPercentageVRMode; // 0x0154(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EScreenPercentageMode DefaultScreenPercentagePathTracerMode; // 0x0158(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRenderUnbuiltPreviewShadowsInGame : 1; // 0x015C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStencilForLODDither : 1; // 0x015C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_15D[0x3]; // 0x015D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EEarlyZPass EarlyZPass; // 0x0160(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bEarlyZPassOnlyMaterialMasking : 1; // 0x0164(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableCSMCaching : 1; // 0x0164(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDBuffer : 1; // 0x0164(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_165[0x3]; // 0x0165(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EClearSceneOptions ClearSceneMethod; // 0x0168(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVelocityOutputPass VelocityPass; // 0x0169(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVertexDeformationOutputsVelocity VertexDeformationOutputsVelocity; // 0x016A(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16B[0x1]; // 0x016B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bSelectiveBasePassOutputs : 1; // 0x016C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDefaultParticleCutouts : 1; // 0x016C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_16D[0x3]; // 0x016D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 GPUSimulationTextureSizeX; // 0x0170(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 GPUSimulationTextureSizeY; // 0x0174(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bGlobalClipPlane : 1; // 0x0178(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_179[0x3]; // 0x0179(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EGBufferFormat GBufferFormat; // 0x017C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_17D[0x3]; // 0x017D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseGPUMorphTargets : 1; // 0x0180(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_181[0x3]; // 0x0181(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MorphTargetMaxBlendWeight; // 0x0184(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSupportSkyAtmosphere : 1; // 0x0188(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportSkyAtmosphereAffectsHeightFog : 1; // 0x0188(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportExpFogMatchesVolumetricFog : 1; // 0x0188(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportLocalFogVolumes : 1; // 0x0188(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportCloudShadowOnForwardLitTranslucent : 1; // 0x0188(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_189[0x3]; // 0x0189(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ELightFunctionAtlasPixelFormat LightFunctionAtlasPixelFormat; // 0x018C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18D[0x3]; // 0x018D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bVolumetricFogUsesLightFunctionAtlas : 1; // 0x0190(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDeferredLightingUsesLightFunctionAtlas : 1; // 0x0190(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSingleLayerWaterUsesLightFunctionAtlas : 1; // 0x0190(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTranslucentUsesLightFunctionAtlas : 1; // 0x0190(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportIESProfileOnTranslucent : 1; // 0x0190(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportRectLightOnTranslucent : 1; // 0x0190(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGpuCrashDebugging : 1; // 0x0190(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMultiView : 1; // 0x0190(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobilePostProcessing : 1; // 0x0191(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileMultiView : 1; // 0x0191(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileUseHWsRGBEncoding : 1; // 0x0191(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRoundRobinOcclusion : 1; // 0x0191(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMeshStreaming : 1; // 0x0191(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableHeterogeneousVolumes : 1; // 0x0191(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldHeterogeneousVolumesCastShadows : 1; // 0x0191(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCompositeHeterogeneousVolumesWithTranslucency : 1; // 0x0191(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_192[0x2]; // 0x0192(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float WireframeCullThreshold; // 0x0194(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSupportStationarySkylight : 1; // 0x0198(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportLowQualityLightmaps : 1; // 0x0198(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportPointLightWholeSceneShadows : 1; // 0x0198(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportTranslucentPerObjectShadow : 1; // 0x0198(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportCloudShadowOnSingleLayerWater : 1; // 0x0198(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableSubstrate : 1; // 0x0198(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 SubstrateOpaqueMaterialRoughRefraction : 1; // 0x0198(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 SubstrateTranslucentMaterialRoughRefraction : 1; // 0x0198(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 SubstrateDebugAdvancedVisualizationShaders : 1; // 0x0199(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMaterialRoughDiffuse : 1; // 0x0199(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMaterialEnergyConservation : 1; // 0x0199(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutomaticallySetMaterialUsageInEditorDefault : 1; // 0x0199(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOrderedIndependentTransparencyEnable : 1; // 0x0199(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHairStrandsAutoLODMode : 1; // 0x0199(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportSkinCacheShaders : 1; // 0x0199(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportHardwareVariableRateShading : 1; // 0x0199(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipCompilingGPUSkinVF : 1; // 0x019A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19B[0x1]; // 0x019B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ESkinCacheDefaultBehavior DefaultSkinCacheBehavior; // 0x019C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19D[0x3]; // 0x019D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SkinCacheSceneMemoryLimitInMB; // 0x01A0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bMobileEnableStaticAndCSMShadowReceivers : 1; // 0x01A4(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileEnableMovableLightCSMShaderCulling : 1; // 0x01A4(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1A5[0x3]; // 0x01A5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EMobileLocalLightSetting MobileLocalLightSetting; // 0x01A8(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A9[0x3]; // 0x01A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMobileForwardEnableClusteredReflections : 1; // 0x01AC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileAllowDistanceFieldShadows : 1; // 0x01AC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileAllowMovableSpotlightShadows : 1; // 0x01AC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupport16BitBoneIndex : 1; // 0x01AC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGPUSkinLimit2BoneInfluences : 1; // 0x01AC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportDepthOnlyIndexBuffers : 1; // 0x01AC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportReversedIndexBuffers : 1; // 0x01AC(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileAmbientOcclusion : 1; // 0x01AC(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileDBuffer : 1; // 0x01AD(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseUnlimitedBoneInfluences : 1; // 0x01AD(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlwaysUseDeformerForUnlimitedBoneInfluences : 1; // 0x01AD(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1AE[0x2]; // 0x01AE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 UnlimitedBonInfluencesThreshold; // 0x01B0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPerPlatformInt DefaultBoneInfluenceLimit; // 0x01B4(0x0004)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + struct FPerPlatformInt MaxSkinBones; // 0x01B8(0x0004)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + EMobilePlanarReflectionMode MobilePlanarReflectionMode; // 0x01BC(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1BD[0x3]; // 0x01BD(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMobileScreenSpaceReflections : 1; // 0x01C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMobileSupportsGen4TAA : 1; // 0x01C0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1C1[0x3]; // 0x01C1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformBool bStreamSkeletalMeshLODs; // 0x01C4(0x0001)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + struct FPerPlatformBool bDiscardSkeletalMeshOptionalLODs; // 0x01C5(0x0001)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_1C6[0x2]; // 0x01C6(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoftObjectPath VisualizeCalibrationColorMaterialPath; // 0x01C8(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath VisualizeCalibrationCustomMaterialPath; // 0x01E8(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath VisualizeCalibrationGrayscaleMaterialPath; // 0x0208(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RendererSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RendererSettings") + } + static class URendererSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URendererSettings; + +// Class Engine.NeuralProfile +// 0x0058 (0x0080 - 0x0028) +class UNeuralProfile final : public UObject +{ +public: + struct FNeuralProfileStruct Settings; // 0x0028(0x0048)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FGuid Guid; // 0x0070(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NeuralProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NeuralProfile") + } + static class UNeuralProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNeuralProfile; + +// Class Engine.SpecularProfile +// 0x0430 (0x0458 - 0x0028) +class USpecularProfile final : public UObject +{ +public: + struct FSpecularProfileStruct Settings; // 0x0028(0x0420)(Edit, NativeAccessSpecifierPublic) + struct FGuid Guid; // 0x0448(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpecularProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpecularProfile") + } + static class USpecularProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USpecularProfile; + +// Class Engine.SubsurfaceProfile +// 0x00B0 (0x00D8 - 0x0028) +class USubsurfaceProfile final : public UObject +{ +public: + struct FSubsurfaceProfileStruct Settings; // 0x0028(0x009C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FGuid Guid; // 0x00C4(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SubsurfaceProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SubsurfaceProfile") + } + static class USubsurfaceProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USubsurfaceProfile; + +// Class Engine.ReplayNetConnection +// 0x0A80 (0x2860 - 0x1DE0) +class UReplayNetConnection final : public UNetConnection +{ +public: + uint8 Pad_1DE0[0xA80]; // 0x1DE0(0x0A80)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplayNetConnection") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplayNetConnection") + } + static class UReplayNetConnection* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReplayNetConnection; + +// Class Engine.ReverbEffect +// 0x0038 (0x0060 - 0x0028) +class UReverbEffect : public UObject +{ +public: + bool bBypassEarlyReflections; // 0x0028(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReflectionsDelay; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GainHF; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReflectionsGain; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBypassLateReflections; // 0x0038(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LateDelay; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DecayTime; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Density; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Diffusion; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AirAbsorptionGainHF; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DecayHFRatio; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LateGain; // 0x0054(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Gain; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RoomRolloffFactor; // 0x005C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReverbEffect") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReverbEffect") + } + static class UReverbEffect* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UReverbEffect; + +// Class Engine.RuntimeOptionsBase +// 0x0010 (0x0038 - 0x0028) +class URuntimeOptionsBase final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeOptionsBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeOptionsBase") + } + static class URuntimeOptionsBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeOptionsBase; + +// Class Engine.SCS_Node +// 0x00B0 (0x00D8 - 0x0028) +class USCS_Node final : public UObject +{ +public: + TSubclassOf ComponentClass; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UActorComponent* ComponentTemplate; // 0x0030(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBlueprintCookedComponentInstancingData CookedComponentInstancingData; // 0x0038(0x0048)(NativeAccessSpecifierPublic) + class FName AttachToName; // 0x0080(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParentComponentOrVariableName; // 0x0088(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParentComponentOwnerClassName; // 0x0090(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsParentComponentNative; // 0x0098(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ChildNodes; // 0x00A0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray MetaDataArray; // 0x00B0(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FGuid VariableGUID; // 0x00C0(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InternalVariableName; // 0x00D0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SCS_Node") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SCS_Node") + } + static class USCS_Node* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USCS_Node; + +// Class Engine.SimpleConstructionScript +// 0x0088 (0x00B0 - 0x0028) +class USimpleConstructionScript final : public UObject +{ +public: + TArray RootNodes; // 0x0028(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray AllNodes; // 0x0038(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + class USCS_Node* DefaultSceneRootNode; // 0x0048(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_50[0x60]; // 0x0050(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SimpleConstructionScript") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SimpleConstructionScript") + } + static class USimpleConstructionScript* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USimpleConstructionScript; + +// Class Engine.SkinnedAsset +// 0x0008 (0x00D0 - 0x00C8) +class USkinnedAsset : public UStreamableRenderAsset +{ +public: + uint8 Pad_C8[0x8]; // 0x00C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + class USkeletalMeshSocket* FindSocket(class FName InSocketName) const; + class USkeletalMeshSocket* FindSocketInfo(class FName InSocketName, struct FTransform* OutTransform, int32* OutBoneIndex, int32* OutIndex) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkinnedAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkinnedAsset") + } + static class USkinnedAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkinnedAsset; + +// Class Engine.SkeletalMesh +// 0x0458 (0x0528 - 0x00D0) +class USkeletalMesh final : public USkinnedAsset +{ +public: + uint8 Pad_D0[0x20]; // 0x00D0(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeleton* Skeleton; // 0x00F0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, EditConst, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBoxSphereBounds ImportedBounds; // 0x00F8(0x0038)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, NativeAccessSpecifierPrivate) + struct FBoxSphereBounds ExtendedBounds; // 0x0130(0x0038)(ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData, NoDestructor, NativeAccessSpecifierPrivate) + struct FVector PositiveBoundsExtension; // 0x0168(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FVector NegativeBoundsExtension; // 0x0180(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray Materials; // 0x0198(0x0010)(Edit, BlueprintVisible, ZeroConstructor, Transient, DuplicateTransient, NativeAccessSpecifierPublic) + struct FMeshNaniteSettings NaniteSettings; // 0x01A8(0x0040)(Edit, NativeAccessSpecifierPublic) + TArray LODInfo; // 0x01E8(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPrivate) + uint8 Pad_1F8[0x50]; // 0x01F8(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerQualityLevelInt MinQualityLevelLOD; // 0x0248(0x0068)(Edit, NativeAccessSpecifierPublic) + struct FPerPlatformInt MinLOD; // 0x02B0(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FPerPlatformBool DisableBelowMinLodStripping; // 0x02B4(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 bUseFullPrecisionUVs : 1; // 0x02B5(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHighPrecisionTangentBasis : 1; // 0x02B5(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasVertexColors : 1; // 0x02B5(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2B5_3 : 1; // 0x02B5(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bEnablePerPolyCollision : 1; // 0x02B5(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B6[0x2]; // 0x02B6(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + class UBodySetup* BodySetup; // 0x02B8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsAsset* PhysicsAsset; // 0x02C0(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsAsset* ShadowPhysicsAsset; // 0x02C8(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, AssetRegistrySearchable, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray NodeMappingData; // 0x02D0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, EditFixedSize, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 bSupportRayTracing : 1; // 0x02E0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2E1[0x3]; // 0x02E1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 RayTracingMinLOD; // 0x02E4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EClothLODBiasMode ClothLODBiasMode; // 0x02E8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E9[0x7]; // 0x02E9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MorphTargets; // 0x02F0(0x0010)(BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_300[0x180]; // 0x0300(0x0180)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf PostProcessAnimBlueprint; // 0x0480(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PostProcessAnimBPLODThreshold; // 0x0488(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_48C[0x4]; // 0x048C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MeshClothingAssets; // 0x0490(0x0010)(Edit, BlueprintVisible, EditFixedSize, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + struct FSkeletalMeshSamplingInfo SamplingInfo; // 0x04A0(0x0030)(Edit, Protected, NativeAccessSpecifierProtected) + TArray AssetUserData; // 0x04D0(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray Sockets; // 0x04E0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_4F0[0x10]; // 0x04F0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SkinWeightProfiles; // 0x0500(0x0010)(Edit, EditFixedSize, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + class UMeshDeformer* DefaultMeshDeformer; // 0x0510(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UMaterialInterface* OverlayMaterial; // 0x0518(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float OverlayMaterialMaxDrawDistance; // 0x0520(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_524[0x4]; // 0x0524(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void SetDefaultAnimatingRig(TSoftObjectPtr InAnimatingRig); + void SetLODSettings(class USkeletalMeshLODSettings* InLODSettings); + void SetMaterials(const TArray& InMaterials); + void SetMeshClothingAssets(const TArray& InMeshClothingAssets); + void SetMinLODForQualityLevels(const TMap& QualityLevelMinimumLODs, int32 Default); + void SetMorphTargets(const TArray& InMorphTargets); + void SetOverlayMaterial(class UMaterialInterface* NewOverlayMaterial); + void SetOverlayMaterialMaxDrawDistance(float InMaxDrawDistance); + void SetSkeleton(class USkeleton* InSkeleton); + + class USkeletalMeshSocket* FindSocketAndIndex(class FName InSocketName, int32* OutIndex) const; + struct FBoxSphereBounds GetBounds() const; + TSoftObjectPtr GetDefaultAnimatingRig() const; + class UMeshDeformer* GetDefaultMeshDeformer() const; + bool GetHasVertexColors() const; + struct FBoxSphereBounds GetImportedBounds() const; + const class USkeletalMeshLODSettings* GetLODSettings() const; + const TArray GetMaterials() const; + const TArray GetMeshClothingAssets() const; + void GetMinLODForQualityLevels(TMap* QualityLevelMinimumLODs, int32* Default) const; + TArray GetMorphTargetsPtrConv() const; + class UNodeMappingContainer* GetNodeMappingContainer(class UBlueprint* SourceAsset) const; + const TArray GetNodeMappingData() const; + class UMaterialInterface* GetOverlayMaterial() const; + float GetOverlayMaterialMaxDrawDistance() const; + class UPhysicsAsset* GetPhysicsAsset() const; + class UPhysicsAsset* GetShadowPhysicsAsset() const; + const class USkeleton* GetSkeleton() const; + class USkeletalMeshSocket* GetSocketByIndex(int32 Index_0) const; + bool IsSectionUsingCloth(int32 InSectionIndex, bool bCheckCorrespondingSections) const; + TArray K2_GetAllMorphTargetNames() const; + int32 NumSockets() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMesh") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMesh") + } + static class USkeletalMesh* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMesh; + +// Class Engine.SkeletalMeshEditorData +// 0x0000 (0x0028 - 0x0028) +class USkeletalMeshEditorData final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshEditorData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshEditorData") + } + static class USkeletalMeshEditorData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshEditorData; + +// Class Engine.SkeletalMeshLODSettings +// 0x0088 (0x00B8 - 0x0030) +class USkeletalMeshLODSettings final : public UDataAsset +{ +public: + struct FPerQualityLevelInt MinQualityLevelLOD; // 0x0030(0x0068)(Edit, Config, GlobalConfig, Protected, NativeAccessSpecifierProtected) + struct FPerPlatformInt MinLOD; // 0x0098(0x0004)(Edit, Config, GlobalConfig, NoDestructor, Protected, NativeAccessSpecifierProtected) + struct FPerPlatformBool DisableBelowMinLodStripping; // 0x009C(0x0001)(Edit, Config, GlobalConfig, NoDestructor, Protected, NativeAccessSpecifierProtected) + bool bOverrideLODStreamingSettings; // 0x009D(0x0001)(Edit, ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FPerPlatformBool bSupportLODStreaming; // 0x009E(0x0001)(Edit, Config, GlobalConfig, NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 Pad_9F[0x1]; // 0x009F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformInt MaxNumStreamedLODs; // 0x00A0(0x0004)(Edit, Config, GlobalConfig, NoDestructor, Protected, NativeAccessSpecifierProtected) + struct FPerPlatformInt MaxNumOptionalLODs; // 0x00A4(0x0004)(Edit, Config, GlobalConfig, NoDestructor, Protected, NativeAccessSpecifierProtected) + TArray LODGroups; // 0x00A8(0x0010)(Edit, ZeroConstructor, Config, GlobalConfig, Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshLODSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshLODSettings") + } + static class USkeletalMeshLODSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshLODSettings; + +// Class Engine.SkeletalMeshSimplificationSettings +// 0x0008 (0x0040 - 0x0038) +class USkeletalMeshSimplificationSettings final : public UDeveloperSettings +{ +public: + class FName SkeletalMeshReductionModuleName; // 0x0038(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SkeletalMeshSimplificationSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SkeletalMeshSimplificationSettings") + } + static class USkeletalMeshSimplificationSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USkeletalMeshSimplificationSettings; + +// Class Engine.CheckBoxStyleAsset +// 0x0958 (0x0980 - 0x0028) +class UCheckBoxStyleAsset final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCheckBoxStyle CheckBoxStyle; // 0x0030(0x0950)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CheckBoxStyleAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CheckBoxStyleAsset") + } + static class UCheckBoxStyleAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCheckBoxStyleAsset; + +// Class Engine.SlateBrushAsset +// 0x00B8 (0x00E0 - 0x0028) +class USlateBrushAsset final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush Brush; // 0x0030(0x00B0)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateBrushAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateBrushAsset") + } + static class USlateBrushAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USlateBrushAsset; + +// Class Engine.SlateTextureAtlasInterface +// 0x0000 (0x0000 - 0x0000) +class ISlateTextureAtlasInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateTextureAtlasInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateTextureAtlasInterface") + } + static class ISlateTextureAtlasInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_ISlateTextureAtlasInterface; + +// Class Engine.SoundMix +// 0x0068 (0x0090 - 0x0028) +class USoundMix final : public UObject +{ +public: + uint8 bApplyEQ : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float EQPriority; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAudioEQEffect EQSettings; // 0x0030(0x0040)(Edit, NativeAccessSpecifierPublic) + TArray SoundClassEffects; // 0x0070(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + float InitialDelay; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeInTime; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0088(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeOutTime; // 0x008C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundMix") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundMix") + } + static class USoundMix* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundMix; + +// Class Engine.SoundNodeAssetReferencer +// 0x0000 (0x0048 - 0x0048) +class USoundNodeAssetReferencer : public USoundNode +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeAssetReferencer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeAssetReferencer") + } + static class USoundNodeAssetReferencer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeAssetReferencer; + +// Class Engine.SoundNodeBranch +// 0x0008 (0x0050 - 0x0048) +class USoundNodeBranch final : public USoundNode +{ +public: + class FName BoolParameterName; // 0x0048(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeBranch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeBranch") + } + static class USoundNodeBranch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeBranch; + +// Class Engine.SoundNodeDelay +// 0x0008 (0x0050 - 0x0048) +class USoundNodeDelay final : public USoundNode +{ +public: + float DelayMin; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DelayMax; // 0x004C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeDelay") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeDelay") + } + static class USoundNodeDelay* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeDelay; + +// Class Engine.SoundNodeDialoguePlayer +// 0x0028 (0x0070 - 0x0048) +class USoundNodeDialoguePlayer final : public USoundNode +{ +public: + struct FDialogueWaveParameter DialogueWaveParameter; // 0x0048(0x0020)(Edit, NativeAccessSpecifierPublic) + uint8 bLooping : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeDialoguePlayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeDialoguePlayer") + } + static class USoundNodeDialoguePlayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeDialoguePlayer; + +// Class Engine.SoundNodeDistanceCrossFade +// 0x0010 (0x0058 - 0x0048) +class USoundNodeDistanceCrossFade : public USoundNode +{ +public: + TArray CrossFadeInput; // 0x0048(0x0010)(Edit, ExportObject, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeDistanceCrossFade") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeDistanceCrossFade") + } + static class USoundNodeDistanceCrossFade* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeDistanceCrossFade; + +// Class Engine.SoundNodeDoppler +// 0x0010 (0x0058 - 0x0048) +class USoundNodeDoppler final : public USoundNode +{ +public: + float DopplerIntensity; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseSmoothing; // 0x004C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SmoothingInterpSpeed; // 0x0050(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeDoppler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeDoppler") + } + static class USoundNodeDoppler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeDoppler; + +// Class Engine.SoundNodeGroupControl +// 0x0010 (0x0058 - 0x0048) +class USoundNodeGroupControl final : public USoundNode +{ +public: + TArray GroupSizes; // 0x0048(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeGroupControl") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeGroupControl") + } + static class USoundNodeGroupControl* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeGroupControl; + +// Class Engine.SoundNodeLooping +// 0x0008 (0x0050 - 0x0048) +class USoundNodeLooping final : public USoundNode +{ +public: + int32 LoopCount; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLoopIndefinitely : 1; // 0x004C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeLooping") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeLooping") + } + static class USoundNodeLooping* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeLooping; + +// Class Engine.SoundNodeMature +// 0x0000 (0x0048 - 0x0048) +class USoundNodeMature final : public USoundNode +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeMature") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeMature") + } + static class USoundNodeMature* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeMature; + +// Class Engine.SoundNodeMixer +// 0x0010 (0x0058 - 0x0048) +class USoundNodeMixer final : public USoundNode +{ +public: + TArray InputVolume; // 0x0048(0x0010)(Edit, ExportObject, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeMixer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeMixer") + } + static class USoundNodeMixer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeMixer; + +// Class Engine.SoundNodeParamCrossFade +// 0x0008 (0x0060 - 0x0058) +class USoundNodeParamCrossFade final : public USoundNodeDistanceCrossFade +{ +public: + class FName ParamName; // 0x0058(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeParamCrossFade") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeParamCrossFade") + } + static class USoundNodeParamCrossFade* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeParamCrossFade; + +// Class Engine.SoundNodeQualityLevel +// 0x0008 (0x0050 - 0x0048) +class USoundNodeQualityLevel final : public USoundNode +{ +public: + int32 CookedQualityLevelIndex; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeQualityLevel") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeQualityLevel") + } + static class USoundNodeQualityLevel* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeQualityLevel; + +// Class Engine.SoundNodeRandom +// 0x0030 (0x0078 - 0x0048) +class USoundNodeRandom final : public USoundNode +{ +public: + TArray Weights; // 0x0048(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray HasBeenUsed; // 0x0058(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + int32 NumRandomUsed; // 0x0068(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PreselectAtLevelLoad; // 0x006C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShouldExcludeFromBranchCulling : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSoundCueExcludedFromBranchCulling : 1; // 0x0070(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRandomizeWithoutReplacement : 1; // 0x0070(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeRandom") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeRandom") + } + static class USoundNodeRandom* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeRandom; + +// Class Engine.SoundNodeSoundClass +// 0x0010 (0x0058 - 0x0048) +class USoundNodeSoundClass final : public USoundNode +{ +public: + class USoundClass* SoundClassOverride; // 0x0048(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_50[0x8]; // 0x0050(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeSoundClass") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeSoundClass") + } + static class USoundNodeSoundClass* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeSoundClass; + +// Class Engine.SoundNodeSwitch +// 0x0008 (0x0050 - 0x0048) +class USoundNodeSwitch final : public USoundNode +{ +public: + class FName IntParameterName; // 0x0048(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeSwitch") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeSwitch") + } + static class USoundNodeSwitch* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeSwitch; + +// Class Engine.SoundNodeWaveParam +// 0x0008 (0x0050 - 0x0048) +class USoundNodeWaveParam final : public USoundNode +{ +public: + class FName WaveParameterName; // 0x0048(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeWaveParam") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeWaveParam") + } + static class USoundNodeWaveParam* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeWaveParam; + +// Class Engine.SoundNodeWavePlayer +// 0x0038 (0x0080 - 0x0048) +class USoundNodeWavePlayer final : public USoundNodeAssetReferencer +{ +public: + TSoftObjectPtr SoundWaveAssetPtr; // 0x0048(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class USoundWave* SoundWave; // 0x0070(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 BitPad_78_0 : 1; // 0x0078(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bLooping : 1; // 0x0078(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundNodeWavePlayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundNodeWavePlayer") + } + static class USoundNodeWavePlayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundNodeWavePlayer; + +// Class Engine.SoundSourceBus +// 0x0018 (0x0408 - 0x03F0) +class USoundSourceBus final : public USoundWave +{ +public: + ESourceBusChannels SourceBusChannels; // 0x03F0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3F1[0x3]; // 0x03F1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SourceBusDuration; // 0x03F4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAudioBus* AudioBus; // 0x03F8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAutoDeactivateWhenSilent : 1; // 0x0400(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_401[0x7]; // 0x0401(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundSourceBus") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundSourceBus") + } + static class USoundSourceBus* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundSourceBus; + +// Class Engine.SoundSubmix +// 0x0158 (0x0248 - 0x00F0) +class USoundSubmix final : public USoundSubmixWithParentBase +{ +public: + uint8 bMuteWhenBackgrounded : 1; // 0x00F0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_F1[0x7]; // 0x00F1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SubmixEffectChain; // 0x00F8(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class USoundfieldEncodingSettingsBase* AmbisonicsPluginSettings; // 0x0108(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EnvelopeFollowerAttackTime; // 0x0110(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EnvelopeFollowerReleaseTime; // 0x0114(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings OutputVolumeModulation; // 0x0118(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings WetLevelModulation; // 0x0170(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings DryLevelModulation; // 0x01C8(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 bSendToAudioLink : 1; // 0x0220(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_221[0x7]; // 0x0221(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioLinkSettingsAbstract* AudioLinkSettings; // 0x0228(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMulticastInlineDelegate OnSubmixRecordedFileDone; // 0x0230(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + uint8 Pad_240[0x8]; // 0x0240(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void AddEnvelopeFollowerDelegate(const class UObject* WorldContextObject, const TDelegate& Envelope)>& OnSubmixEnvelopeBP); + void AddSpectralAnalysisDelegate(const class UObject* WorldContextObject, const TArray& InBandSettings, const TDelegate& Magnitude)>& OnSubmixSpectralAnalysisBP, float UpdateRate, float DecibelNoiseFloor, bool bDoNormalize, bool bDoAutoRange, float AutoRangeAttackTime, float AutoRangeReleaseTime); + void RemoveEnvelopeFollowerDelegate(const class UObject* WorldContextObject, const TDelegate& Envelope)>& OnSubmixEnvelopeBP); + void RemoveSpectralAnalysisDelegate(const class UObject* WorldContextObject, const TDelegate& Magnitude)>& OnSubmixSpectralAnalysisBP); + void SetDryVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod); + void SetOutputVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod); + void SetSubmixDryLevel(const class UObject* WorldContextObject, float InDryLevel); + void SetSubmixOutputVolume(const class UObject* WorldContextObject, float InOutputVolume); + void SetSubmixWetLevel(const class UObject* WorldContextObject, float InWetLevel); + void SetWetVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod); + void StartEnvelopeFollowing(const class UObject* WorldContextObject); + void StartRecordingOutput(const class UObject* WorldContextObject, float ExpectedDuration); + void StartSpectralAnalysis(const class UObject* WorldContextObject, EFFTSize FFTSize, EFFTPeakInterpolationMethod InterpolationMethod, EFFTWindowType WindowType, float HopSize, EAudioSpectrumType SpectrumType); + void StopEnvelopeFollowing(const class UObject* WorldContextObject); + void StopRecordingOutput(const class UObject* WorldContextObject, EAudioRecordingExportType ExportType, const class FString& Name_0, const class FString& Path, class USoundWave* ExistingSoundWaveToOverwrite); + void StopSpectralAnalysis(const class UObject* WorldContextObject); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundSubmix") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundSubmix") + } + static class USoundSubmix* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundSubmix; + +// Class Engine.SoundfieldSubmix +// 0x0028 (0x0118 - 0x00F0) +class USoundfieldSubmix final : public USoundSubmixWithParentBase +{ +public: + class FName SoundfieldEncodingFormat; // 0x00F0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundfieldEncodingSettingsBase* EncodingSettings; // 0x00F8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SoundfieldEffectChain; // 0x0100(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TSubclassOf EncodingSettingsClass; // 0x0110(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldSubmix") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldSubmix") + } + static class USoundfieldSubmix* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldSubmix; + +// Class Engine.EndpointSubmix +// 0x0018 (0x00A8 - 0x0090) +class UEndpointSubmix final : public USoundSubmixBase +{ +public: + class FName EndpointType; // 0x0090(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf EndpointSettingsClass; // 0x0098(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAudioEndpointSettingsBase* EndpointSettings; // 0x00A0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EndpointSubmix") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EndpointSubmix") + } + static class UEndpointSubmix* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UEndpointSubmix; + +// Class Engine.SoundfieldEndpointSubmix +// 0x0038 (0x00C8 - 0x0090) +class USoundfieldEndpointSubmix final : public USoundSubmixBase +{ +public: + class FName SoundfieldEndpointType; // 0x0090(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf EndpointSettingsClass; // 0x0098(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundfieldEndpointSettingsBase* EndpointSettings; // 0x00A0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf EncodingSettingsClass; // 0x00A8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundfieldEncodingSettingsBase* EncodingSettings; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SoundfieldEffectChain; // 0x00B8(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SoundfieldEndpointSubmix") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SoundfieldEndpointSubmix") + } + static class USoundfieldEndpointSubmix* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USoundfieldEndpointSubmix; + +// Class Engine.SplineMeshActor +// 0x0008 (0x02B0 - 0x02A8) +class ASplineMeshActor final : public AActor +{ +public: + class USplineMeshComponent* SplineMeshComponent; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SplineMeshActor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SplineMeshActor") + } + static class ASplineMeshActor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASplineMeshActor; + +// Class Engine.StaticMesh +// 0x0188 (0x0250 - 0x00C8) +class UStaticMesh final : public UStreamableRenderAsset +{ +public: + uint8 Pad_C8[0x20]; // 0x00C8(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerQualityLevelInt MinQualityLevelLOD; // 0x00E8(0x0068)(NativeAccessSpecifierPublic) + struct FPerPlatformInt MinLOD; // 0x0150(0x0004)(NoDestructor, NativeAccessSpecifierPublic) + int32 ElementToIgnoreForTexFactor; // 0x0154(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TArray StaticMaterials; // 0x0158(0x0010)(BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPrivate) + float LightmapUVDensity; // 0x0168(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 LightMapResolution; // 0x016C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LightMapCoordinateIndex; // 0x0170(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EStaticMeshPaintSupport StaticMeshPaintSupport; // 0x0174(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_175[0x3]; // 0x0175(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MeshPaintTextureCoordinateIndex; // 0x0178(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MeshPaintTextureResolution; // 0x017C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldSelfShadowBias; // 0x0180(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_184[0x4]; // 0x0184(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UBodySetup* BodySetup; // 0x0188(0x0008)(Edit, ExportObject, ZeroConstructor, Transient, InstancedReference, DuplicateTransient, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 LODForCollision; // 0x0190(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bGenerateMeshDistanceField : 1; // 0x0194(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStripComplexCollisionForConsole : 1; // 0x0194(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasNavigationData : 1; // 0x0194(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportUniformlyDistributedSampling : 1; // 0x0194(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportPhysicalMaterialMasks : 1; // 0x0194(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportRayTracing : 1; // 0x0194(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDoFastBuild : 1; // 0x0194(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsBuiltAtRuntime : 1; // 0x0194(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 BitPad_195_0 : 1; // 0x0195(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bAllowCPUAccess : 1; // 0x0195(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportGpuUniformlyDistributedSampling : 1; // 0x0195(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_196[0x1A]; // 0x0196(0x001A)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Sockets; // 0x01B0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_1C0[0x10]; // 0x01C0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector PositiveBoundsExtension; // 0x01D0(0x0018)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NegativeBoundsExtension; // 0x01E8(0x0018)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBoxSphereBounds ExtendedBounds; // 0x0200(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray AssetUserData; // 0x0238(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, AdvancedDisplay, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + class UNavCollisionBase* NavCollision; // 0x0248(0x0008)(Edit, ExportObject, ZeroConstructor, Transient, EditConst, InstancedReference, DuplicateTransient, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UStaticMeshDescription* CreateStaticMeshDescription(class UObject* Outer_0); + + class FName AddMaterial(class UMaterialInterface* Material); + void AddSocket(class UStaticMeshSocket* Socket); + void BuildFromStaticMeshDescriptions(const TArray& StaticMeshDescriptions, bool bBuildSimpleCollision, bool bFastBuild); + class UStaticMeshDescription* GetStaticMeshDescription(int32 LODIndex); + void RemoveSocket(class UStaticMeshSocket* Socket); + void SetMinimumLODForPlatform(const class FName& PlatformName, int32 InMinLOD); + void SetMinimumLODForPlatforms(const TMap& PlatformMinimumLODs); + void SetMinLODForQualityLevels(const TMap& QualityLevelMinimumLODs, int32 Default); + void SetStaticMaterials(const TArray& InStaticMaterials); + + class UStaticMeshSocket* FindSocket(class FName InSocketName) const; + struct FBox GetBoundingBox() const; + struct FBoxSphereBounds GetBounds() const; + class UMaterialInterface* GetMaterial(int32 MaterialIndex) const; + int32 GetMaterialIndex(class FName MaterialSlotName) const; + int32 GetMinimumLODForPlatform(const class FName& PlatformName) const; + void GetMinimumLODForPlatforms(TMap* PlatformMinimumLODs) const; + int32 GetMinimumLODForQualityLevel(const class FName& QualityLevel) const; + void GetMinimumLODForQualityLevels(TMap* QualityLevelMinimumLODs) const; + void GetMinLODForQualityLevels(TMap* QualityLevelMinimumLODs, int32* Default) const; + int32 GetNumLODs() const; + int32 GetNumSections(int32 InLOD) const; + int32 GetNumTriangles(int32 LODIndex) const; + TArray GetSocketsByTag(const class FString& InSocketTag) const; + const TArray GetStaticMaterials() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticMesh") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticMesh") + } + static class UStaticMesh* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStaticMesh; + +// Class Engine.StaticMeshDescriptionBulkData +// 0x0000 (0x0028 - 0x0028) +class UStaticMeshDescriptionBulkData final : public UMeshDescriptionBaseBulkData +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StaticMeshDescriptionBulkData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StaticMeshDescriptionBulkData") + } + static class UStaticMeshDescriptionBulkData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UStaticMeshDescriptionBulkData; + +// Class Engine.ActorTextureStreamingBuildDataComponent +// 0x0000 (0x00A0 - 0x00A0) +class UActorTextureStreamingBuildDataComponent final : public UActorComponent +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ActorTextureStreamingBuildDataComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ActorTextureStreamingBuildDataComponent") + } + static class UActorTextureStreamingBuildDataComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UActorTextureStreamingBuildDataComponent; + +// Class Engine.ServerStreamingLevelsVisibility +// 0x0050 (0x02F8 - 0x02A8) +class AServerStreamingLevelsVisibility final : public AActor +{ +public: + uint8 Pad_2A8[0x50]; // 0x02A8(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ServerStreamingLevelsVisibility") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ServerStreamingLevelsVisibility") + } + static class AServerStreamingLevelsVisibility* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AServerStreamingLevelsVisibility; + +// Class Engine.AudioSubsystemCollectionRoot +// 0x0008 (0x0030 - 0x0028) +class UAudioSubsystemCollectionRoot final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AudioSubsystemCollectionRoot") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AudioSubsystemCollectionRoot") + } + static class UAudioSubsystemCollectionRoot* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAudioSubsystemCollectionRoot; + +// Class Engine.LocalPlayerSubsystem +// 0x0000 (0x0030 - 0x0030) +class ULocalPlayerSubsystem : public USubsystem +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocalPlayerSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocalPlayerSubsystem") + } + static class ULocalPlayerSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULocalPlayerSubsystem; + +// Class Engine.SubsystemBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class USubsystemBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static class UAudioEngineSubsystem* GetAudioEngineSubsystem(class UObject* ContextObject, TSubclassOf Class_0); + static class UEngineSubsystem* GetEngineSubsystem(TSubclassOf Class_0); + static class UGameInstanceSubsystem* GetGameInstanceSubsystem(class UObject* ContextObject, TSubclassOf Class_0); + static class ULocalPlayerSubsystem* GetLocalPlayerSubsystem(class UObject* ContextObject, TSubclassOf Class_0); + static class ULocalPlayerSubsystem* GetLocalPlayerSubSystemFromPlayerController(class APlayerController* PlayerController, TSubclassOf Class_0); + static class UWorldSubsystem* GetWorldSubsystem(class UObject* ContextObject, TSubclassOf Class_0); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SubsystemBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SubsystemBlueprintLibrary") + } + static class USubsystemBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_USubsystemBlueprintLibrary; + +// Class Engine.TargetPoint +// 0x0000 (0x02A8 - 0x02A8) +class ATargetPoint final : public AActor +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TargetPoint") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TargetPoint") + } + static class ATargetPoint* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATargetPoint; + +// Class Engine.AutomationTestSettings +// 0x0330 (0x0358 - 0x0028) +class UAutomationTestSettings final : public UObject +{ +public: + TArray EngineTestModules; // 0x0028(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray EditorTestModules; // 0x0038(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + struct FSoftObjectPath AutomationTestmap; // 0x0048(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray EditorPerformanceTestMaps; // 0x0068(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray AssetsToOpen; // 0x0078(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray MapsToPIETest; // 0x0088(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + bool bUseAllProjectMapsToPlayInPIE; // 0x0098(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBuildPromotionTestSettings BuildPromotionTest; // 0x00A0(0x01F0)(Edit, Config, NativeAccessSpecifierPublic) + struct FMaterialEditorPromotionSettings MaterialEditorPromotionTest; // 0x0290(0x0030)(Edit, Config, NativeAccessSpecifierPublic) + struct FParticleEditorPromotionSettings ParticleEditorPromotionTest; // 0x02C0(0x0010)(Edit, Config, NativeAccessSpecifierPublic) + struct FBlueprintEditorPromotionSettings BlueprintEditorPromotionTest; // 0x02D0(0x0030)(Edit, Config, NativeAccessSpecifierPublic) + TArray TestLevelFolders; // 0x0300(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray ExternalTools; // 0x0310(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray ImportExportTestDefinitions; // 0x0320(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray LaunchOnSettings; // 0x0330(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + struct FIntPoint DefaultScreenshotResolution; // 0x0340(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PIETestDuration; // 0x0348(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultInteractiveFramerate; // 0x034C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultInteractiveFramerateWaitTime; // 0x0350(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultInteractiveFramerateDuration; // 0x0354(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AutomationTestSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AutomationTestSettings") + } + static class UAutomationTestSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAutomationTestSettings; + +// Class Engine.AsyncLoadingTests_ConvertFromType_V1 +// 0x0028 (0x0050 - 0x0028) +class UAsyncLoadingTests_ConvertFromType_V1 final : public UObject +{ +public: + TSoftObjectPtr Reference; // 0x0028(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncLoadingTests_ConvertFromType_V1") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncLoadingTests_ConvertFromType_V1") + } + static class UAsyncLoadingTests_ConvertFromType_V1* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncLoadingTests_ConvertFromType_V1; + +// Class Engine.AsyncLoadingTests_ConvertFromType_V2 +// 0x0008 (0x0030 - 0x0028) +class UAsyncLoadingTests_ConvertFromType_V2 final : public UObject +{ +public: + class UObject* Reference; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("AsyncLoadingTests_ConvertFromType_V2") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"AsyncLoadingTests_ConvertFromType_V2") + } + static class UAsyncLoadingTests_ConvertFromType_V2* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UAsyncLoadingTests_ConvertFromType_V2; + +// Class Engine.TransactionDiffingTestObject +// 0x0070 (0x0098 - 0x0028) +class UTransactionDiffingTestObject final : public UObject +{ +public: + TArray NamesArray; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FName AdditionalName; // 0x0038(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectsArray; // 0x0040(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UObject* AdditionalObject; // 0x0050(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray> SoftObjectsArray; // 0x0058(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TSoftObjectPtr AdditionalSoftObject; // 0x0068(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PropertyData; // 0x0090(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_94[0x4]; // 0x0094(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TransactionDiffingTestObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TransactionDiffingTestObject") + } + static class UTransactionDiffingTestObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTransactionDiffingTestObject; + +// Class Engine.TextureCube +// 0x0008 (0x0138 - 0x0130) +class UTextureCube : public UTexture +{ +public: + uint8 Pad_130[0x8]; // 0x0130(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureCube") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureCube") + } + static class UTextureCube* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureCube; + +// Class Engine.TextureCubeArray +// 0x0008 (0x0138 - 0x0130) +class UTextureCubeArray final : public UTexture +{ +public: + uint8 Pad_130[0x8]; // 0x0130(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureCubeArray") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureCubeArray") + } + static class UTextureCubeArray* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureCubeArray; + +// Class Engine.TextureLightProfile +// 0x0008 (0x0158 - 0x0150) +class UTextureLightProfile final : public UTexture2D +{ +public: + float Brightness; // 0x0150(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureMultiplier; // 0x0154(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureLightProfile") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureLightProfile") + } + static class UTextureLightProfile* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureLightProfile; + +// Class Engine.TextureRenderTarget2DArray +// 0x0020 (0x0158 - 0x0138) +class UTextureRenderTarget2DArray final : public UTextureRenderTarget +{ +public: + int32 SizeX; // 0x0138(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x013C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Slices; // 0x0140(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ClearColor; // 0x0144(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat OverrideFormat; // 0x0154(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHDR : 1; // 0x0155(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsUAV : 1; // 0x0155(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceLinearGamma : 1; // 0x0155(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_156[0x2]; // 0x0156(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureRenderTarget2DArray") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureRenderTarget2DArray") + } + static class UTextureRenderTarget2DArray* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureRenderTarget2DArray; + +// Class Engine.TextureRenderTargetVolume +// 0x0020 (0x0158 - 0x0138) +class UTextureRenderTargetVolume final : public UTextureRenderTarget +{ +public: + int32 SizeX; // 0x0138(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x013C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeZ; // 0x0140(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ClearColor; // 0x0144(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPixelFormat OverrideFormat; // 0x0154(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHDR : 1; // 0x0155(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsUAV : 1; // 0x0155(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceLinearGamma : 1; // 0x0155(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_156[0x2]; // 0x0156(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextureRenderTargetVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextureRenderTargetVolume") + } + static class UTextureRenderTargetVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTextureRenderTargetVolume; + +// Class Engine.TriggerVolume +// 0x0000 (0x02E0 - 0x02E0) +class ATriggerVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TriggerVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TriggerVolume") + } + static class ATriggerVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ATriggerVolume; + +// Class Engine.UserDefinedEnum +// 0x0050 (0x00B8 - 0x0068) +class UUserDefinedEnum final : public UEnum +{ +public: + TMap DisplayNameMap; // 0x0068(0x0050)(NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UserDefinedEnum") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UserDefinedEnum") + } + static class UUserDefinedEnum* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UUserDefinedEnum; + +// Class Engine.UserInterfaceSettings +// 0x0278 (0x02B0 - 0x0038) +class UUserInterfaceSettings final : public UDeveloperSettings +{ +public: + ERenderFocusRule RenderFocusRule; // 0x0038(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TMap HardwareCursors; // 0x0040(0x0050)(Edit, Config, NativeAccessSpecifierPublic) + TMap SoftwareCursors; // 0x0090(0x0050)(Edit, Config, NativeAccessSpecifierPublic) + struct FSoftClassPath DefaultCursor; // 0x00E0(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath TextEditBeamCursor; // 0x0100(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath CrosshairsCursor; // 0x0120(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath HandCursor; // 0x0140(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath GrabHandCursor; // 0x0160(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath GrabHandClosedCursor; // 0x0180(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath SlashedCircleCursor; // 0x01A0(0x0020)(ZeroConstructor, Config, Deprecated, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ApplicationScale; // 0x01C0(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EUIScalingRule UIScaleRule; // 0x01C4(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C5[0x3]; // 0x01C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoftClassPath CustomScalingRuleClass; // 0x01C8(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve UIScaleCurve; // 0x01E8(0x0088)(Edit, Config, NativeAccessSpecifierPublic) + bool bAllowHighDPIInGameMode; // 0x0270(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_271[0x3]; // 0x0271(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntPoint DesignScreenSize; // 0x0274(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoadWidgetsOnDedicatedServer; // 0x027C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAuthorizeAutomaticWidgetVariableCreation; // 0x027D(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDistanceFieldFontRasterization; // 0x027E(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_27F[0x1]; // 0x027F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CursorClasses; // 0x0280(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TSubclassOf CustomScalingRuleClassInstance; // 0x0290(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDPICustomScalingRule* CustomScalingRule; // 0x0298(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2A0[0x10]; // 0x02A0(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static bool ShouldDisplayDistanceFieldFontSettings(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("UserInterfaceSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"UserInterfaceSettings") + } + static class UUserInterfaceSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UUserInterfaceSettings; + +// Class Engine.Canvas +// 0x0368 (0x0390 - 0x0028) +class UCanvas final : public UObject +{ +public: + float OrgX; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrgY; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClipX; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClipY; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor DrawColor; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCenterX : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCenterY : 1; // 0x003C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNoSmooth : 1; // 0x003C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SizeX; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x0044(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPlane ColorModulate; // 0x0050(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultTexture; // 0x0070(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* GradientTexture0; // 0x0078(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UReporterGraph* ReporterGraph; // 0x0080(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x308]; // 0x0088(0x0308)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void K2_Deproject(const struct FVector2D& ScreenPosition, struct FVector* WorldOrigin, struct FVector* WorldDirection); + void K2_DrawBorder(class UTexture* BorderTexture, class UTexture* BackgroundTexture, class UTexture* LeftBorderTexture, class UTexture* RightBorderTexture, class UTexture* TopBorderTexture, class UTexture* BottomBorderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, const struct FLinearColor& RenderColor, const struct FVector2D& BorderScale, const struct FVector2D& BackgroundScale, float Rotation, const struct FVector2D& PivotPoint, const struct FVector2D& CornerSize); + void K2_DrawBox(const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, float Thickness, const struct FLinearColor& RenderColor); + void K2_DrawLine(const struct FVector2D& ScreenPositionA, const struct FVector2D& ScreenPositionB, float Thickness, const struct FLinearColor& RenderColor); + void K2_DrawMaterial(class UMaterialInterface* RenderMaterial, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, float Rotation, const struct FVector2D& PivotPoint); + void K2_DrawMaterialTriangle(class UMaterialInterface* RenderMaterial, const TArray& Triangles); + void K2_DrawPolygon(class UTexture* RenderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& Radius, int32 NumberOfSides, const struct FLinearColor& RenderColor); + void K2_DrawText(class UFont* RenderFont, const class FString& RenderText, const struct FVector2D& ScreenPosition, const struct FVector2D& Scale, const struct FLinearColor& RenderColor, float Kerning, const struct FLinearColor& ShadowColor, const struct FVector2D& ShadowOffset, bool bCentreX, bool bCentreY, bool bOutlined, const struct FLinearColor& OutlineColor); + void K2_DrawTexture(class UTexture* RenderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, const struct FLinearColor& RenderColor, EBlendMode BlendMode, float Rotation, const struct FVector2D& PivotPoint); + void K2_DrawTriangle(class UTexture* RenderTexture, const TArray& Triangles); + struct FVector K2_Project(const struct FVector& WorldLocation); + struct FVector2D K2_StrLen(class UFont* RenderFont, const class FString& RenderText); + struct FVector2D K2_TextSize(class UFont* RenderFont, const class FString& RenderText, const struct FVector2D& Scale); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Canvas") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Canvas") + } + static class UCanvas* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UCanvas; + +// Class Engine.Console +// 0x0138 (0x0160 - 0x0028) +class UConsole final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class ULocalPlayer* ConsoleTargetPlayer; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultTexture_Black; // 0x0040(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* DefaultTexture_White; // 0x0048(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_50[0x18]; // 0x0050(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray HistoryBuffer; // 0x0068(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_78[0xE8]; // 0x0078(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Console") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Console") + } + static class UConsole* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UConsole; + +// Class Engine.InputSettings +// 0x0118 (0x0140 - 0x0028) +class UInputSettings final : public UObject +{ +public: + TArray AxisConfig; // 0x0028(0x0010)(Edit, EditFixedSize, ZeroConstructor, Config, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FPerPlatformSettings PlatformSettings; // 0x0038(0x0010)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 bAltEnterTogglesFullscreen : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bF11TogglesFullscreen : 1; // 0x0048(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseMouseForTouch : 1; // 0x0048(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMouseSmoothing : 1; // 0x0048(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableFOVScaling : 1; // 0x0048(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCaptureMouseOnLaunch : 1; // 0x0048(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableLegacyInputScales : 1; // 0x0048(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMotionControls : 1; // 0x0048(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFilterInputByPlatformUser : 1; // 0x0049(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableInputDeviceSubsystem : 1; // 0x0049(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldFlushPressedKeysOnViewportFocusLost : 1; // 0x0049(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDynamicComponentInputBinding : 1; // 0x0049(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlwaysShowTouchInterface : 1; // 0x0049(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShowConsoleOnFourFingerTap : 1; // 0x0049(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableGestureRecognizer : 1; // 0x0049(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAutocorrect : 1; // 0x0049(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_4A[0x6]; // 0x004A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ExcludedAutocorrectOS; // 0x0050(0x0010)(Edit, ZeroConstructor, Config, AdvancedDisplay, NativeAccessSpecifierPublic) + TArray ExcludedAutocorrectCultures; // 0x0060(0x0010)(Edit, ZeroConstructor, Config, AdvancedDisplay, NativeAccessSpecifierPublic) + TArray ExcludedAutocorrectDeviceModels; // 0x0070(0x0010)(Edit, ZeroConstructor, Config, AdvancedDisplay, NativeAccessSpecifierPublic) + EMouseCaptureMode DefaultViewportMouseCaptureMode; // 0x0080(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMouseLockMode DefaultViewportMouseLockMode; // 0x0081(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_82[0x2]; // 0x0082(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float FOVScale; // 0x0084(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DoubleClickTime; // 0x0088(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8C[0x4]; // 0x008C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActionMappings; // 0x0090(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray AxisMappings; // 0x00A0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray SpeechMappings; // 0x00B0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TSoftClassPtr DefaultPlayerInputClass; // 0x00C0(0x0028)(Edit, Config, NoClear, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSoftClassPtr DefaultInputComponentClass; // 0x00E8(0x0028)(Edit, Config, NoClear, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSoftObjectPath DefaultTouchInterface; // 0x0110(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ConsoleKeys; // 0x0130(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UInputSettings* GetInputSettings(); + + void AddActionMapping(const struct FInputActionKeyMapping& KeyMapping, bool bForceRebuildKeymaps); + void AddAxisMapping(const struct FInputAxisKeyMapping& KeyMapping, bool bForceRebuildKeymaps); + void ForceRebuildKeymaps(); + void RemoveActionMapping(const struct FInputActionKeyMapping& KeyMapping, bool bForceRebuildKeymaps); + void RemoveAxisMapping(const struct FInputAxisKeyMapping& KeyMapping, bool bForceRebuildKeymaps); + void SaveKeyMappings(); + + void GetActionMappingByName(const class FName InActionName, TArray* OutMappings) const; + void GetActionNames(TArray* ActionNames) const; + void GetAxisMappingByName(const class FName InAxisName, TArray* OutMappings) const; + void GetAxisNames(TArray* AxisNames) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputSettings") + } + static class UInputSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputSettings; + +// Class Engine.InputPlatformSettings +// 0x0028 (0x0068 - 0x0040) +class UInputPlatformSettings final : public UPlatformSettings +{ +public: + int32 MaxPlatformUserCount; // 0x0040(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTriggerFeedbackPosition; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTriggerFeedbackStrength; // 0x0048(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTriggerVibrationTriggerPosition; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTriggerVibrationFrequency; // 0x0050(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTriggerVibrationAmplitude; // 0x0054(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray HardwareDevices; // 0x0058(0x0010)(Edit, ZeroConstructor, Config, Protected, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputPlatformSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputPlatformSettings") + } + static class UInputPlatformSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UInputPlatformSettings; + +// Class Engine.PlayerInput +// 0x0470 (0x0498 - 0x0028) +class UPlayerInput : public UObject +{ +public: + uint8 Pad_28[0x178]; // 0x0028(0x0178)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DebugExecBindings; // 0x01A0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_1B0[0x30]; // 0x01B0(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InvertedAxis; // 0x01E0(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_1F0[0x2A8]; // 0x01F0(0x02A8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ClearSmoothing(); + void InvertAxis(const class FName AxisName); + void InvertAxisKey(const struct FKey& AxisKey); + void SetBind(class FName BindName, const class FString& Command); + void SetMouseSensitivity(const float Sensitivity); + + class APlayerController* GetOuterAPlayerController() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PlayerInput") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PlayerInput") + } + static class UPlayerInput* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPlayerInput; + +// Class Engine.TireType +// 0x0008 (0x0038 - 0x0030) +class UTireType final : public UDataAsset +{ +public: + float FrictionScale; // 0x0030(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TireType") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TireType") + } + static class UTireType* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UTireType; + +// Class Engine.VisualLoggerAutomationTests +// 0x0000 (0x0028 - 0x0028) +class UVisualLoggerAutomationTests final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VisualLoggerAutomationTests") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VisualLoggerAutomationTests") + } + static class UVisualLoggerAutomationTests* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVisualLoggerAutomationTests; + +// Class Engine.VisualLoggerFilterVolume +// 0x0000 (0x02E0 - 0x02E0) +class AVisualLoggerFilterVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VisualLoggerFilterVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VisualLoggerFilterVolume") + } + static class AVisualLoggerFilterVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AVisualLoggerFilterVolume; + +// Class Engine.VisualLoggerKismetLibrary +// 0x0000 (0x0028 - 0x0028) +class UVisualLoggerKismetLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void EnableRecording(bool bEnabled); + static void LogArrow(class UObject* WorldContextObject, const struct FVector& SegmentStart, const struct FVector& SegmentEnd, const class FString& Text, const struct FLinearColor& ObjectColor, class FName CategoryName, bool bAddToMessageLog); + static void LogBox(class UObject* WorldContextObject, const struct FBox& BoxShape, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogCapsule(class UObject* WorldContextObject, const struct FVector& base, float HalfHeight, float Radius, const struct FQuat& Rotation, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogCircle(class UObject* WorldContextObject, const struct FVector& Center, const struct FVector& UpAxis, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, const float Thickness, class FName CategoryName, bool bAddToMessageLog); + static void LogCone(class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float Angle, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogCylinder(class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogLocation(class UObject* WorldContextObject, const struct FVector& Location, const class FString& Text, const struct FLinearColor& ObjectColor, float Radius, class FName LogCategory, bool bAddToMessageLog); + static void LogOrientedBox(class UObject* WorldContextObject, const struct FBox& BoxShape, const struct FTransform& Transform, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogSegment(class UObject* WorldContextObject, const struct FVector& SegmentStart, const struct FVector& SegmentEnd, const class FString& Text, const struct FLinearColor& ObjectColor, const float Thickness, class FName CategoryName, bool bAddToMessageLog); + static void LogSphere(class UObject* WorldContextObject, const struct FVector& Center, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe); + static void LogText(class UObject* WorldContextObject, const class FString& Text, class FName LogCategory, bool bAddToMessageLog); + static void RedirectVislog(class UObject* SourceOwner, class UObject* DestinationOwner); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VisualLoggerKismetLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VisualLoggerKismetLibrary") + } + static class UVisualLoggerKismetLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVisualLoggerKismetLibrary; + +// Class Engine.VOIPTalker +// 0x0040 (0x00E0 - 0x00A0) +class UVOIPTalker final : public UActorComponent +{ +public: + struct FVoiceSettings Settings; // 0x00A0(0x0018)(Edit, BlueprintVisible, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 Pad_B8[0x28]; // 0x00B8(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UVOIPTalker* CreateTalkerForPlayer(class APlayerState* OwningState); + + void BPOnTalkingBegin(class UAudioComponent* AudioComponent); + void BPOnTalkingEnd(); + float GetVoiceLevel(); + void RegisterWithPlayerState(class APlayerState* OwningState); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VOIPTalker") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VOIPTalker") + } + static class UVOIPTalker* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVOIPTalker; + +// Class Engine.VolumeTexture +// 0x0010 (0x0140 - 0x0130) +class UVolumeTexture final : public UTexture +{ +public: + uint8 Pad_130[0x8]; // 0x0130(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + ETextureAddress AddressMode; // 0x0138(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_139[0x7]; // 0x0139(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VolumeTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VolumeTexture") + } + static class UVolumeTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVolumeTexture; + +// Class Engine.VolumetricLightmapDensityVolume +// 0x0008 (0x02E8 - 0x02E0) +class AVolumetricLightmapDensityVolume final : public AVolume +{ +public: + struct FInt32Interval AllowedMipLevelRange; // 0x02E0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VolumetricLightmapDensityVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VolumetricLightmapDensityVolume") + } + static class AVolumetricLightmapDensityVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AVolumetricLightmapDensityVolume; + +// Class Engine.LightMapVirtualTexture2D +// 0x0018 (0x0168 - 0x0150) +class ULightMapVirtualTexture2D final : public UTexture2D +{ +public: + TArray TypeToLayer; // 0x0150(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_160[0x8]; // 0x0160(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightMapVirtualTexture2D") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightMapVirtualTexture2D") + } + static class ULightMapVirtualTexture2D* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightMapVirtualTexture2D; + +// Class Engine.RuntimeVirtualTexture +// 0x00B8 (0x00E0 - 0x0028) +class alignas(0x10) URuntimeVirtualTexture final : public UObject +{ +public: + int32 TileCount; // 0x0028(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 TileSize; // 0x002C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 TileBorderSize; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ERuntimeVirtualTextureMaterialType MaterialType; // 0x0034(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bCompressTextures; // 0x0035(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bUseLowQualityCompression; // 0x0036(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bClearTextures; // 0x0037(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bSinglePhysicalSpace; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bPrivateSpace; // 0x0039(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bAdaptive; // 0x003A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bContinuousUpdate; // 0x003B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 RemoveLowMips; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ETextureGroup LODGroup; // 0x0040(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Size; // 0x0044(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class URuntimeVirtualTextureStreamingProxy* StreamingTexture; // 0x0048(0x0008)(ZeroConstructor, Deprecated, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_50[0x90]; // 0x0050(0x0090)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + int32 GetPageTableSize() const; + int32 GetSize() const; + int32 GetTileBorderSize() const; + int32 GetTileCount() const; + int32 GetTileSize() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeVirtualTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeVirtualTexture") + } + static class URuntimeVirtualTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeVirtualTexture; + +// Class Engine.VirtualTexture +// 0x0000 (0x0028 - 0x0028) +class UVirtualTexture : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VirtualTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VirtualTexture") + } + static class UVirtualTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVirtualTexture; + +// Class Engine.LightMapVirtualTexture +// 0x0000 (0x0028 - 0x0028) +class ULightMapVirtualTexture final : public UVirtualTexture +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LightMapVirtualTexture") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LightMapVirtualTexture") + } + static class ULightMapVirtualTexture* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ULightMapVirtualTexture; + +// Class Engine.RuntimeVirtualTextureStreamingProxy +// 0x0000 (0x0150 - 0x0150) +class URuntimeVirtualTextureStreamingProxy final : public UTexture2D +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("RuntimeVirtualTextureStreamingProxy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"RuntimeVirtualTextureStreamingProxy") + } + static class URuntimeVirtualTextureStreamingProxy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_URuntimeVirtualTextureStreamingProxy; + +// Class Engine.VirtualTexturePoolConfig +// 0x0028 (0x0060 - 0x0038) +class UVirtualTexturePoolConfig final : public UDeveloperSettings +{ +public: + int32 DefaultSizeInMegabyte; // 0x0038(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPoolAutoGrowInEditor; // 0x003C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Pools; // 0x0040(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray TransientPools; // 0x0050(0x0010)(Edit, ZeroConstructor, Transient, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("VirtualTexturePoolConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"VirtualTexturePoolConfig") + } + static class UVirtualTexturePoolConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UVirtualTexturePoolConfig; + +// Class Engine.WindDirectionalSource +// 0x0008 (0x02B0 - 0x02A8) +class AWindDirectionalSource final : public AInfo +{ +public: + class UWindDirectionalSourceComponent* Component; // 0x02A8(0x0008)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, EditConst, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WindDirectionalSource") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WindDirectionalSource") + } + static class AWindDirectionalSource* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWindDirectionalSource; + +// Class Engine.WorldPartitionBlueprintLibrary +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionBlueprintLibrary final : public UBlueprintFunctionLibrary +{ +public: + static bool GetActorDescs(TArray* OutActorDescs); + static bool GetActorDescsForActors(const TArray& InActors, TArray* OutActorDescs); + static class UDataLayerManager* GetDataLayerManager(class UObject* WorldContextObject); + static struct FBox GetEditorWorldBounds(); + static bool GetIntersectingActorDescs(const struct FBox& InBox, TArray* OutActorDescs); + static struct FBox GetRuntimeWorldBounds(); + static void LoadActors(const TArray& InActorsToLoad); + static void PinActors(const TArray& InActorsToPin); + static void UnloadActors(const TArray& InActorsToUnload); + static void UnpinActors(const TArray& InActorsToUnpin); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionBlueprintLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionBlueprintLibrary") + } + static class UWorldPartitionBlueprintLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionBlueprintLibrary; + +// Class Engine.ContentBundleDescriptor +// 0x0028 (0x0050 - 0x0028) +class UContentBundleDescriptor final : public UObject +{ +public: + class FString DisplayName; // 0x0028(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FColor DebugColor; // 0x0038(0x0004)(Edit, ZeroConstructor, DuplicateTransient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid Guid; // 0x003C(0x0010)(Edit, ZeroConstructor, EditConst, DuplicateTransient, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleDescriptor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleDescriptor") + } + static class UContentBundleDescriptor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleDescriptor; + +// Class Engine.ContentBundleUnsavedActorMonitor +// 0x0000 (0x0028 - 0x0028) +class UContentBundleUnsavedActorMonitor final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleUnsavedActorMonitor") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleUnsavedActorMonitor") + } + static class UContentBundleUnsavedActorMonitor* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleUnsavedActorMonitor; + +// Class Engine.ContentBundleEngineSubsystem +// 0x00A0 (0x00D0 - 0x0030) +class UContentBundleEngineSubsystem final : public UEngineSubsystem +{ +public: + uint8 Pad_30[0x70]; // 0x0030(0x0070)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftClassPtr ContentBundleTypeFactoryClass; // 0x00A0(0x0028)(Config, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UContentBundleTypeFactory* ContentBundleTypeFactory; // 0x00C8(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleEngineSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleEngineSubsystem") + } + static class UContentBundleEngineSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleEngineSubsystem; + +// Class Engine.ContentBundleManager +// 0x0010 (0x0038 - 0x0028) +class UContentBundleManager final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleManager") + } + static class UContentBundleManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleManager; + +// Class Engine.ContentBundleDuplicateForPIEHelper +// 0x0000 (0x0028 - 0x0028) +class UContentBundleDuplicateForPIEHelper final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ContentBundleDuplicateForPIEHelper") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ContentBundleDuplicateForPIEHelper") + } + static class UContentBundleDuplicateForPIEHelper* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UContentBundleDuplicateForPIEHelper; + +// Class Engine.WorldPartitionCookPackageObject +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionCookPackageObject final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionCookPackageObject") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionCookPackageObject") + } + static class IWorldPartitionCookPackageObject* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionCookPackageObject; + +// Class Engine.WorldDataLayers +// 0x0588 (0x0830 - 0x02A8) +class AWorldDataLayers final : public AInfo +{ +public: + uint8 Pad_2A8[0xA8]; // 0x02A8(0x00A8)(Fixing Size After Last Property [ Dumper-7 ]) + class UExternalDataLayerInstance* RootExternalDataLayerInstance; // 0x0350(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSet DataLayerInstances; // 0x0358(0x0050)(UObjectWrapper, NativeAccessSpecifierPrivate) + TSet ExternalPackageDataLayerInstances; // 0x03A8(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray LoadedExternalPackageDataLayerInstances; // 0x03F8(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray TransientDataLayerInstances; // 0x0408(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + TMap> DeprecatedDataLayerNameToDataLayerInstance; // 0x0418(0x0050)(UObjectWrapper, NativeAccessSpecifierPrivate) + TSet WorldDataLayers; // 0x0468(0x0050)(Deprecated, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray RepActiveDataLayerNames; // 0x04B8(0x0010)(Net, ZeroConstructor, Transient, RepNotify, NativeAccessSpecifierPrivate) + TArray RepLoadedDataLayerNames; // 0x04C8(0x0010)(Net, ZeroConstructor, Transient, RepNotify, NativeAccessSpecifierPrivate) + uint8 Pad_4D8[0x140]; // 0x04D8(0x0140)(Fixing Size After Last Property [ Dumper-7 ]) + TArray RepEffectiveActiveDataLayerNames; // 0x0618(0x0010)(Net, ZeroConstructor, Transient, RepNotify, NativeAccessSpecifierPrivate) + TArray RepEffectiveLoadedDataLayerNames; // 0x0628(0x0010)(Net, ZeroConstructor, Transient, RepNotify, NativeAccessSpecifierPrivate) + uint8 Pad_638[0x1F8]; // 0x0638(0x01F8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void OnDataLayerRuntimeStateChanged(const class UDataLayerInstance* InDataLayer, EDataLayerRuntimeState InState); + void OnRep_ActiveDataLayerNames(); + void OnRep_EffectiveActiveDataLayerNames(); + void OnRep_EffectiveLoadedDataLayerNames(); + void OnRep_LoadedDataLayerNames(); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldDataLayers") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldDataLayers") + } + static class AWorldDataLayers* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldDataLayers; + +// Class Engine.DataLayer +// 0x0030 (0x0058 - 0x0028) +class UDataLayer final : public UObject +{ +public: + class FName DataLayerLabel; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bIsRuntime : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EDataLayerRuntimeState InitialRuntimeState; // 0x0034(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor DebugColor; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UDataLayer* Parent; // 0x0040(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Children; // 0x0048(0x0010)(ZeroConstructor, Transient, Deprecated, UObjectWrapper, NativeAccessSpecifierPrivate) + +public: + bool Equals(const struct FActorDataLayer& ActorDataLayer) const; + class FName GetDataLayerLabel() const; + struct FColor GetDebugColor() const; + EDataLayerRuntimeState GetInitialRuntimeState() const; + EDataLayerState GetInitialState() const; + bool IsDynamicallyLoaded() const; + bool IsEffectiveVisible() const; + bool IsInitiallyActive() const; + bool IsInitiallyVisible() const; + bool IsRuntime() const; + bool IsVisible() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayer") + } + static class UDataLayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayer; + +// Class Engine.DataLayerInstanceProvider +// 0x0000 (0x0000 - 0x0000) +class IDataLayerInstanceProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerInstanceProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerInstanceProvider") + } + static class IDataLayerInstanceProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IDataLayerInstanceProvider; + +// Class Engine.DataLayerLoadingPolicy +// 0x0000 (0x0028 - 0x0028) +class UDataLayerLoadingPolicy final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerLoadingPolicy") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerLoadingPolicy") + } + static class UDataLayerLoadingPolicy* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerLoadingPolicy; + +// Class Engine.DataLayerSubsystem +// 0x0038 (0x0068 - 0x0030) +class UDataLayerSubsystem final : public UWorldSubsystem +{ +public: + TMulticastInlineDelegate OnDataLayerRuntimeStateChanged; // 0x0030(0x0010)(ZeroConstructor, InstancedReference, BlueprintAssignable, NativeAccessSpecifierPublic) + TSoftClassPtr DataLayerLoadingPolicyClass; // 0x0040(0x0028)(Config, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + void SetDataLayerInstanceRuntimeState(const class UDataLayerAsset* InDataLayerAsset, EDataLayerRuntimeState InState, bool bInIsRecursive); + void SetDataLayerRuntimeState(const struct FActorDataLayer& InDataLayer, EDataLayerRuntimeState InState, bool bInIsRecursive); + void SetDataLayerRuntimeStateByLabel(const class FName& InDataLayerLabel, EDataLayerRuntimeState InState, bool bInIsRecursive); + void SetDataLayerState(const struct FActorDataLayer& InDataLayer, EDataLayerState InState); + void SetDataLayerStateByLabel(const class FName& InDataLayerLabel, EDataLayerState InState); + + const TSet GetActiveDataLayerNames() const; + class UDataLayerInstance* GetDataLayer(const struct FActorDataLayer& InDataLayer) const; + EDataLayerRuntimeState GetDataLayerEffectiveRuntimeState(const struct FActorDataLayer& InDataLayer) const; + EDataLayerRuntimeState GetDataLayerEffectiveRuntimeStateByLabel(const class FName& InDataLayerLabel) const; + class UDataLayerInstance* GetDataLayerFromLabel(class FName InDataLayerLabel) const; + class UDataLayerInstance* GetDataLayerFromName(class FName InDataLayerName) const; + EDataLayerRuntimeState GetDataLayerInstanceEffectiveRuntimeState(const class UDataLayerAsset* InDataLayerAsset) const; + class UDataLayerInstance* GetDataLayerInstanceFromAsset(const class UDataLayerAsset* InDataLayerAsset) const; + EDataLayerRuntimeState GetDataLayerInstanceRuntimeState(const class UDataLayerAsset* InDataLayerAsset) const; + EDataLayerRuntimeState GetDataLayerRuntimeState(const struct FActorDataLayer& InDataLayer) const; + EDataLayerRuntimeState GetDataLayerRuntimeStateByLabel(const class FName& InDataLayerLabel) const; + EDataLayerState GetDataLayerState(const struct FActorDataLayer& InDataLayer) const; + EDataLayerState GetDataLayerStateByLabel(const class FName& InDataLayerLabel) const; + const TSet GetLoadedDataLayerNames() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataLayerSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataLayerSubsystem") + } + static class UDataLayerSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDataLayerSubsystem; + +// Class Engine.DeprecatedDataLayerInstance +// 0x0018 (0x0060 - 0x0048) +class UDeprecatedDataLayerInstance final : public UDataLayerInstance +{ +public: + class FName Label; // 0x0048(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName DeprecatedDataLayerFName; // 0x0050(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EDataLayerType DataLayerType; // 0x0058(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor DebugColor; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DeprecatedDataLayerInstance") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DeprecatedDataLayerInstance") + } + static class UDeprecatedDataLayerInstance* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UDeprecatedDataLayerInstance; + +// Class Engine.WorldPartitionDestructibleHLODMeshComponent +// 0x0160 (0x03A0 - 0x0240) +class UWorldPartitionDestructibleHLODMeshComponent final : public UWorldPartitionDestructibleHLODComponent +{ +public: + class UMaterialInterface* DestructibleHLODMaterial; // 0x0240(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FWorldPartitionDestructibleHLODState DestructibleHLODState; // 0x0248(0x0148)(Net, Transient, ContainsInstancedReference, NativeAccessSpecifierPrivate) + class UMaterialInstanceDynamic* VisibilityMaterial; // 0x0390(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UTexture2DDynamic* VisibilityTexture; // 0x0398(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionDestructibleHLODMeshComponent") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionDestructibleHLODMeshComponent") + } + static class UWorldPartitionDestructibleHLODMeshComponent* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionDestructibleHLODMeshComponent; + +// Class Engine.HLODBuilderSettings +// 0x0000 (0x0028 - 0x0028) +class UHLODBuilderSettings final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODBuilderSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODBuilderSettings") + } + static class UHLODBuilderSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODBuilderSettings; + +// Class Engine.NullHLODBuilder +// 0x0000 (0x0028 - 0x0028) +class UNullHLODBuilder final : public UHLODBuilder +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NullHLODBuilder") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NullHLODBuilder") + } + static class UNullHLODBuilder* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UNullHLODBuilder; + +// Class Engine.WorldPartitionDestructibleInHLODInterface +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionDestructibleInHLODInterface final +{ +public: + void SetHLODDestructionTag(const struct FWorldPartitionHLODDestructionTag& InDestructionTag); + + struct FWorldPartitionHLODDestructionTag GetHLODDestructionTag() const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionDestructibleInHLODInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionDestructibleInHLODInterface") + } + static class IWorldPartitionDestructibleInHLODInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionDestructibleInHLODInterface; + +// Class Engine.WorldPartitionDestructibleInHLODSupportLibrary +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionDestructibleInHLODSupportLibrary final : public UBlueprintFunctionLibrary +{ +public: + static void DamageInHLOD(const TScriptInterface& DestructibleInHLOD, float DamagePercent); + static void DestroyInHLOD(const TScriptInterface& DestructibleInHLOD); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionDestructibleInHLODSupportLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionDestructibleInHLODSupportLibrary") + } + static class UWorldPartitionDestructibleInHLODSupportLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionDestructibleInHLODSupportLibrary; + +// Class Engine.HLODLayer +// 0x0040 (0x0068 - 0x0028) +class UHLODLayer final : public UObject +{ +public: + EHLODLayerType LayerType; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf HLODBuilderClass; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UHLODBuilderSettings* HLODBuilderSettings; // 0x0038(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bIsSpatiallyLoaded : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CellSize; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + double LoadingRange; // 0x0048(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UHLODLayer* ParentLayer; // 0x0050(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSubclassOf HLODActorClass; // 0x0058(0x0008)(Edit, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSubclassOf HLODModifierClass; // 0x0060(0x0008)(Edit, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HLODLayer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HLODLayer") + } + static class UHLODLayer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UHLODLayer; + +// Class Engine.WorldPartitionHLODProvider +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionHLODProvider final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionHLODProvider") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionHLODProvider") + } + static class IWorldPartitionHLODProvider* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionHLODProvider; + +// Class Engine.WorldPartitionActorLoaderInterface +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionActorLoaderInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionActorLoaderInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionActorLoaderInterface") + } + static class IWorldPartitionActorLoaderInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionActorLoaderInterface; + +// Class Engine.WorldPartitionEditorHash +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionEditorHash : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionEditorHash") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionEditorHash") + } + static class UWorldPartitionEditorHash* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionEditorHash; + +// Class Engine.WorldPartitionEditorPerProjectUserSettings +// 0x0000 (0x0038 - 0x0038) +class UWorldPartitionEditorPerProjectUserSettings final : public UDeveloperSettings +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionEditorPerProjectUserSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionEditorPerProjectUserSettings") + } + static class UWorldPartitionEditorPerProjectUserSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionEditorPerProjectUserSettings; + +// Class Engine.WorldPartitionEditorSpatialHash +// 0x0000 (0x0028 - 0x0028) +class UWorldPartitionEditorSpatialHash final : public UWorldPartitionEditorHash +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionEditorSpatialHash") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionEditorSpatialHash") + } + static class UWorldPartitionEditorSpatialHash* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionEditorSpatialHash; + +// Class Engine.WorldPartitionMiniMapVolume +// 0x0000 (0x02E0 - 0x02E0) +class AWorldPartitionMiniMapVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionMiniMapVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionMiniMapVolume") + } + static class AWorldPartitionMiniMapVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldPartitionMiniMapVolume; + +// Class Engine.WorldPartitionReplay +// 0x0020 (0x02C8 - 0x02A8) +class AWorldPartitionReplay final : public AActor +{ +public: + TArray StreamingSourceNames; // 0x02A8(0x0010)(Net, ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_2B8[0x10]; // 0x02B8(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionReplay") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionReplay") + } + static class AWorldPartitionReplay* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldPartitionReplay; + +// Class Engine.WorldPartitionRuntimeCellDataSpatialHash +// 0x0070 (0x0150 - 0x00E0) +class UWorldPartitionRuntimeCellDataSpatialHash final : public UWorldPartitionRuntimeCellData +{ +public: + struct FVector position; // 0x00E0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Extent; // 0x00F8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_FC[0x54]; // 0x00FC(0x0054)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionRuntimeCellDataSpatialHash") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionRuntimeCellDataSpatialHash") + } + static class UWorldPartitionRuntimeCellDataSpatialHash* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionRuntimeCellDataSpatialHash; + +// Class Engine.WorldPartitionCell +// 0x0000 (0x0000 - 0x0000) +class IWorldPartitionCell final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionCell") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionCell") + } + static class IWorldPartitionCell* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +//_IWorldPartitionCell; + +// Class Engine.SpatialHashRuntimeGridInfo +// 0x0008 (0x02B0 - 0x02A8) +class ASpatialHashRuntimeGridInfo final : public AInfo +{ +public: + struct FSpatialHashRuntimeGrid GridSettings; // 0x02A8(0x0001)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_2A9[0x7]; // 0x02A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpatialHashRuntimeGridInfo") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpatialHashRuntimeGridInfo") + } + static class ASpatialHashRuntimeGridInfo* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_ASpatialHashRuntimeGridInfo; + +// Class Engine.WorldPartitionSubsystem +// 0x02B8 (0x02F8 - 0x0040) +class UWorldPartitionSubsystem final : public UTickableWorldSubsystem +{ +public: + uint8 Pad_40[0x2B8]; // 0x0040(0x02B8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + bool IsAllStreamingCompleted(); + + bool IsStreamingCompleted(EWorldPartitionRuntimeCellState QueryState, const TArray& QuerySources, bool bExactState) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionSubsystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionSubsystem") + } + static class UWorldPartitionSubsystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UWorldPartitionSubsystem; + +// Class Engine.WorldPartitionVolume +// 0x0000 (0x02E0 - 0x02E0) +class AWorldPartitionVolume final : public AVolume +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldPartitionVolume") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldPartitionVolume") + } + static class AWorldPartitionVolume* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_AWorldPartitionVolume; + +} + diff --git a/TormentedSouls2/SDK/Engine_functions.cpp b/TormentedSouls2/SDK/Engine_functions.cpp new file mode 100644 index 0000000..7ea5c0e --- /dev/null +++ b/TormentedSouls2/SDK/Engine_functions.cpp @@ -0,0 +1,125555 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Engine + +#include "Basic.hpp" + +#include "Engine_classes.hpp" +#include "Engine_parameters.hpp" + + +namespace SDK +{ + +// Function Engine.ActorComponent.Activate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bReset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::Activate(bool bReset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "Activate"); + + Params::ActorComponent_Activate Parms{}; + + Parms.bReset = bReset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.AddTickPrerequisiteActor +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* PrerequisiteActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::AddTickPrerequisiteActor(class AActor* PrerequisiteActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "AddTickPrerequisiteActor"); + + Params::ActorComponent_AddTickPrerequisiteActor Parms{}; + + Parms.PrerequisiteActor = PrerequisiteActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.AddTickPrerequisiteComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UActorComponent* PrerequisiteComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::AddTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "AddTickPrerequisiteComponent"); + + Params::ActorComponent_AddTickPrerequisiteComponent Parms{}; + + Parms.PrerequisiteComponent = PrerequisiteComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.Deactivate +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UActorComponent::Deactivate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "Deactivate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.K2_DestroyComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::K2_DestroyComponent(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "K2_DestroyComponent"); + + Params::ActorComponent_K2_DestroyComponent Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.OnRep_IsActive +// (RequiredAPI, Native, Public) + +void UActorComponent::OnRep_IsActive() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "OnRep_IsActive"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.ReceiveAsyncPhysicsTick +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SimSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::ReceiveAsyncPhysicsTick(float DeltaSeconds, float SimSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ReceiveAsyncPhysicsTick"); + + Params::ActorComponent_ReceiveAsyncPhysicsTick Parms{}; + + Parms.DeltaSeconds = DeltaSeconds; + Parms.SimSeconds = SimSeconds; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.ActorComponent.ReceiveBeginPlay +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UActorComponent::ReceiveBeginPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ReceiveBeginPlay"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.ActorComponent.ReceiveEndPlay +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// EEndPlayReason EndPlayReason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::ReceiveEndPlay(EEndPlayReason EndPlayReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ReceiveEndPlay"); + + Params::ActorComponent_ReceiveEndPlay Parms{}; + + Parms.EndPlayReason = EndPlayReason; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.ActorComponent.ReceiveTick +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::ReceiveTick(float DeltaSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ReceiveTick"); + + Params::ActorComponent_ReceiveTick Parms{}; + + Parms.DeltaSeconds = DeltaSeconds; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.ActorComponent.RemoveTickPrerequisiteActor +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* PrerequisiteActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::RemoveTickPrerequisiteActor(class AActor* PrerequisiteActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "RemoveTickPrerequisiteActor"); + + Params::ActorComponent_RemoveTickPrerequisiteActor Parms{}; + + Parms.PrerequisiteActor = PrerequisiteActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.RemoveTickPrerequisiteComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UActorComponent* PrerequisiteComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::RemoveTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "RemoveTickPrerequisiteComponent"); + + Params::ActorComponent_RemoveTickPrerequisiteComponent Parms{}; + + Parms.PrerequisiteComponent = PrerequisiteComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetActive +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewActive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bReset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetActive(bool bNewActive, bool bReset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetActive"); + + Params::ActorComponent_SetActive Parms{}; + + Parms.bNewActive = bNewActive; + Parms.bReset = bReset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetAutoActivate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewAutoActivate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetAutoActivate(bool bNewAutoActivate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetAutoActivate"); + + Params::ActorComponent_SetAutoActivate Parms{}; + + Parms.bNewAutoActivate = bNewAutoActivate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetComponentTickEnabled +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetComponentTickEnabled(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetComponentTickEnabled"); + + Params::ActorComponent_SetComponentTickEnabled Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetComponentTickInterval +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float TickInterval (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetComponentTickInterval(float TickInterval) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetComponentTickInterval"); + + Params::ActorComponent_SetComponentTickInterval Parms{}; + + Parms.TickInterval = TickInterval; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetComponentTickIntervalAndCooldown +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float TickInterval (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetComponentTickIntervalAndCooldown(float TickInterval) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetComponentTickIntervalAndCooldown"); + + Params::ActorComponent_SetComponentTickIntervalAndCooldown Parms{}; + + Parms.TickInterval = TickInterval; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetIsReplicated +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ShouldReplicate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetIsReplicated(bool ShouldReplicate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetIsReplicated"); + + Params::ActorComponent_SetIsReplicated Parms{}; + + Parms.ShouldReplicate = ShouldReplicate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetTickableWhenPaused +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bTickableWhenPaused (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetTickableWhenPaused(bool bTickableWhenPaused) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetTickableWhenPaused"); + + Params::ActorComponent_SetTickableWhenPaused Parms{}; + + Parms.bTickableWhenPaused = bTickableWhenPaused; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.SetTickGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETickingGroup NewTickGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UActorComponent::SetTickGroup(ETickingGroup NewTickGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "SetTickGroup"); + + Params::ActorComponent_SetTickGroup Parms{}; + + Parms.NewTickGroup = NewTickGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.ToggleActive +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UActorComponent::ToggleActive() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ToggleActive"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorComponent.ComponentHasTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UActorComponent::ComponentHasTag(class FName Tag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "ComponentHasTag"); + + Params::ActorComponent_ComponentHasTag Parms{}; + + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ActorComponent.GetComponentTickInterval +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UActorComponent::GetComponentTickInterval() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "GetComponentTickInterval"); + + Params::ActorComponent_GetComponentTickInterval Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ActorComponent.GetOwner +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UActorComponent::GetOwner() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "GetOwner"); + + Params::ActorComponent_GetOwner Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ActorComponent.IsActive +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UActorComponent::IsActive() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "IsActive"); + + Params::ActorComponent_IsActive Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ActorComponent.IsBeingDestroyed +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UActorComponent::IsBeingDestroyed() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "IsBeingDestroyed"); + + Params::ActorComponent_IsBeingDestroyed Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ActorComponent.IsComponentTickEnabled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UActorComponent::IsComponentTickEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ActorComponent", "IsComponentTickEnabled"); + + Params::ActorComponent_IsComponentTickEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.DetachFromParent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bMaintainWorldPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCallModify (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::DetachFromParent(bool bMaintainWorldPosition, bool bCallModify) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "DetachFromParent"); + + Params::SceneComponent_DetachFromParent Parms{}; + + Parms.bMaintainWorldPosition = bMaintainWorldPosition; + Parms.bCallModify = bCallModify; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.K2_AddLocalOffset +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DeltaLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddLocalOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddLocalOffset"); + + Params::SceneComponent_K2_AddLocalOffset Parms{}; + + Parms.DeltaLocation = std::move(DeltaLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddLocalRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& DeltaRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddLocalRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddLocalRotation"); + + Params::SceneComponent_K2_AddLocalRotation Parms{}; + + Parms.DeltaRotation = std::move(DeltaRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddLocalTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& DeltaTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddLocalTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddLocalTransform"); + + Params::SceneComponent_K2_AddLocalTransform Parms{}; + + Parms.DeltaTransform = std::move(DeltaTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddRelativeLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DeltaLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddRelativeLocation(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddRelativeLocation"); + + Params::SceneComponent_K2_AddRelativeLocation Parms{}; + + Parms.DeltaLocation = std::move(DeltaLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddRelativeRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& DeltaRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddRelativeRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddRelativeRotation"); + + Params::SceneComponent_K2_AddRelativeRotation Parms{}; + + Parms.DeltaRotation = std::move(DeltaRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddWorldOffset +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DeltaLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddWorldOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddWorldOffset"); + + Params::SceneComponent_K2_AddWorldOffset Parms{}; + + Parms.DeltaLocation = std::move(DeltaLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddWorldRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& DeltaRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddWorldRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddWorldRotation"); + + Params::SceneComponent_K2_AddWorldRotation Parms{}; + + Parms.DeltaRotation = std::move(DeltaRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddWorldTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& DeltaTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddWorldTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddWorldTransform"); + + Params::SceneComponent_K2_AddWorldTransform Parms{}; + + Parms.DeltaTransform = std::move(DeltaTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AddWorldTransformKeepScale +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& DeltaTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_AddWorldTransformKeepScale(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AddWorldTransformKeepScale"); + + Params::SceneComponent_K2_AddWorldTransformKeepScale Parms{}; + + Parms.DeltaTransform = std::move(DeltaTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_AttachTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* InParent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachLocation AttachType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::K2_AttachTo(class USceneComponent* InParent, class FName InSocketName, EAttachLocation AttachType, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AttachTo"); + + Params::SceneComponent_K2_AttachTo Parms{}; + + Parms.InParent = InParent; + Parms.InSocketName = InSocketName; + Parms.AttachType = AttachType; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_AttachToComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* Parent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::K2_AttachToComponent(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_AttachToComponent"); + + Params::SceneComponent_K2_AttachToComponent Parms{}; + + Parms.Parent = Parent; + Parms.SocketName = SocketName; + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_DetachFromComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EDetachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDetachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDetachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCallModify (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_DetachFromComponent(EDetachmentRule LocationRule, EDetachmentRule RotationRule, EDetachmentRule ScaleRule, bool bCallModify) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_DetachFromComponent"); + + Params::SceneComponent_K2_DetachFromComponent Parms{}; + + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + Parms.bCallModify = bCallModify; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.K2_SetRelativeLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetRelativeLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetRelativeLocation"); + + Params::SceneComponent_K2_SetRelativeLocation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetRelativeLocationAndRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetRelativeLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetRelativeLocationAndRotation"); + + Params::SceneComponent_K2_SetRelativeLocationAndRotation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetRelativeRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetRelativeRotation(const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetRelativeRotation"); + + Params::SceneComponent_K2_SetRelativeRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetRelativeTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& NewTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetRelativeTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetRelativeTransform"); + + Params::SceneComponent_K2_SetRelativeTransform Parms{}; + + Parms.NewTransform = std::move(NewTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetWorldLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetWorldLocation"); + + Params::SceneComponent_K2_SetWorldLocation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetWorldLocationAndRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetWorldLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetWorldLocationAndRotation"); + + Params::SceneComponent_K2_SetWorldLocationAndRotation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetWorldRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetWorldRotation(const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetWorldRotation"); + + Params::SceneComponent_K2_SetWorldRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.K2_SetWorldTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& NewTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::K2_SetWorldTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_SetWorldTransform"); + + Params::SceneComponent_K2_SetWorldTransform Parms{}; + + Parms.NewTransform = std::move(NewTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.SceneComponent.OnRep_AttachChildren +// (Final, RequiredAPI, Native, Private) + +void USceneComponent::OnRep_AttachChildren() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "OnRep_AttachChildren"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.OnRep_AttachParent +// (Final, RequiredAPI, Native, Private) + +void USceneComponent::OnRep_AttachParent() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "OnRep_AttachParent"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.OnRep_AttachSocketName +// (Final, RequiredAPI, Native, Private) + +void USceneComponent::OnRep_AttachSocketName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "OnRep_AttachSocketName"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.OnRep_Transform +// (Final, RequiredAPI, Native, Private) + +void USceneComponent::OnRep_Transform() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "OnRep_Transform"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.OnRep_Visibility +// (Final, RequiredAPI, Native, Private) +// Parameters: +// bool OldValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::OnRep_Visibility(bool OldValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "OnRep_Visibility"); + + Params::SceneComponent_OnRep_Visibility Parms{}; + + Parms.OldValue = OldValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.ResetRelativeTransform +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USceneComponent::ResetRelativeTransform() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "ResetRelativeTransform"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetAbsolute +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewAbsoluteLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewAbsoluteRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewAbsoluteScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetAbsolute(bool bNewAbsoluteLocation, bool bNewAbsoluteRotation, bool bNewAbsoluteScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetAbsolute"); + + Params::SceneComponent_SetAbsolute Parms{}; + + Parms.bNewAbsoluteLocation = bNewAbsoluteLocation; + Parms.bNewAbsoluteRotation = bNewAbsoluteRotation; + Parms.bNewAbsoluteScale = bNewAbsoluteScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetHiddenInGame +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool NewHidden (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPropagateToChildren (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetHiddenInGame(bool NewHidden, bool bPropagateToChildren) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetHiddenInGame"); + + Params::SceneComponent_SetHiddenInGame Parms{}; + + Parms.NewHidden = NewHidden; + Parms.bPropagateToChildren = bPropagateToChildren; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetMobility +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EComponentMobility NewMobility (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetMobility(EComponentMobility NewMobility) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetMobility"); + + Params::SceneComponent_SetMobility Parms{}; + + Parms.NewMobility = NewMobility; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetRelativeScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewScale3D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetRelativeScale3D(const struct FVector& NewScale3D) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetRelativeScale3D"); + + Params::SceneComponent_SetRelativeScale3D Parms{}; + + Parms.NewScale3D = std::move(NewScale3D); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetShouldUpdatePhysicsVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInShouldUpdatePhysicsVolume (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetShouldUpdatePhysicsVolume(bool bInShouldUpdatePhysicsVolume) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetShouldUpdatePhysicsVolume"); + + Params::SceneComponent_SetShouldUpdatePhysicsVolume Parms{}; + + Parms.bInShouldUpdatePhysicsVolume = bInShouldUpdatePhysicsVolume; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetVisibility +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewVisibility (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPropagateToChildren (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetVisibility(bool bNewVisibility, bool bPropagateToChildren) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetVisibility"); + + Params::SceneComponent_SetVisibility Parms{}; + + Parms.bNewVisibility = bNewVisibility; + Parms.bPropagateToChildren = bPropagateToChildren; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.SetWorldScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::SetWorldScale3D(const struct FVector& NewScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "SetWorldScale3D"); + + Params::SceneComponent_SetWorldScale3D Parms{}; + + Parms.NewScale = std::move(NewScale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.ToggleVisibility +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bPropagateToChildren (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneComponent::ToggleVisibility(bool bPropagateToChildren) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "ToggleVisibility"); + + Params::SceneComponent_ToggleVisibility Parms{}; + + Parms.bPropagateToChildren = bPropagateToChildren; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneComponent.DoesSocketExist +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::DoesSocketExist(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "DoesSocketExist"); + + Params::SceneComponent_DoesSocketExist Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetAllSocketNames +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USceneComponent::GetAllSocketNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetAllSocketNames"); + + Params::SceneComponent_GetAllSocketNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetAttachParent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USceneComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USceneComponent* USceneComponent::GetAttachParent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetAttachParent"); + + Params::SceneComponent_GetAttachParent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetAttachSocketName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USceneComponent::GetAttachSocketName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetAttachSocketName"); + + Params::SceneComponent_GetAttachSocketName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetChildComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ChildIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USceneComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USceneComponent* USceneComponent::GetChildComponent(int32 ChildIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetChildComponent"); + + Params::SceneComponent_GetChildComponent Parms{}; + + Parms.ChildIndex = ChildIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetChildrenComponents +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool bIncludeAllDescendants (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* Children (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void USceneComponent::GetChildrenComponents(bool bIncludeAllDescendants, TArray* Children) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetChildrenComponents"); + + Params::SceneComponent_GetChildrenComponents Parms{}; + + Parms.bIncludeAllDescendants = bIncludeAllDescendants; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Children != nullptr) + *Children = std::move(Parms.Children); +} + + +// Function Engine.SceneComponent.GetComponentVelocity +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::GetComponentVelocity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetComponentVelocity"); + + Params::SceneComponent_GetComponentVelocity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetForwardVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::GetForwardVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetForwardVector"); + + Params::SceneComponent_GetForwardVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetNumChildrenComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USceneComponent::GetNumChildrenComponents() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetNumChildrenComponents"); + + Params::SceneComponent_GetNumChildrenComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetParentComponents +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* Parents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void USceneComponent::GetParentComponents(TArray* Parents) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetParentComponents"); + + Params::SceneComponent_GetParentComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Parents != nullptr) + *Parents = std::move(Parms.Parents); +} + + +// Function Engine.SceneComponent.GetPhysicsVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APhysicsVolume* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APhysicsVolume* USceneComponent::GetPhysicsVolume() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetPhysicsVolume"); + + Params::SceneComponent_GetPhysicsVolume Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetRelativeTransform +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USceneComponent::GetRelativeTransform() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetRelativeTransform"); + + Params::SceneComponent_GetRelativeTransform Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetRightVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::GetRightVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetRightVector"); + + Params::SceneComponent_GetRightVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetShouldUpdatePhysicsVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::GetShouldUpdatePhysicsVolume() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetShouldUpdatePhysicsVolume"); + + Params::SceneComponent_GetShouldUpdatePhysicsVolume Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetSocketLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::GetSocketLocation(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetSocketLocation"); + + Params::SceneComponent_GetSocketLocation Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetSocketQuaternion +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat USceneComponent::GetSocketQuaternion(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetSocketQuaternion"); + + Params::SceneComponent_GetSocketQuaternion Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetSocketRotation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USceneComponent::GetSocketRotation(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetSocketRotation"); + + Params::SceneComponent_GetSocketRotation Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetSocketTransform +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERelativeTransformSpace TransformSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USceneComponent::GetSocketTransform(class FName InSocketName, ERelativeTransformSpace TransformSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetSocketTransform"); + + Params::SceneComponent_GetSocketTransform Parms{}; + + Parms.InSocketName = InSocketName; + Parms.TransformSpace = TransformSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.GetUpVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::GetUpVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "GetUpVector"); + + Params::SceneComponent_GetUpVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.IsAnySimulatingPhysics +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::IsAnySimulatingPhysics() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "IsAnySimulatingPhysics"); + + Params::SceneComponent_IsAnySimulatingPhysics Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.IsSimulatingPhysics +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::IsSimulatingPhysics(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "IsSimulatingPhysics"); + + Params::SceneComponent_IsSimulatingPhysics Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.IsVisible +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USceneComponent::IsVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "IsVisible"); + + Params::SceneComponent_IsVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_GetComponentLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::K2_GetComponentLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_GetComponentLocation"); + + Params::SceneComponent_K2_GetComponentLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_GetComponentRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USceneComponent::K2_GetComponentRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_GetComponentRotation"); + + Params::SceneComponent_K2_GetComponentRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_GetComponentScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USceneComponent::K2_GetComponentScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_GetComponentScale"); + + Params::SceneComponent_K2_GetComponentScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneComponent.K2_GetComponentToWorld +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USceneComponent::K2_GetComponentToWorld() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneComponent", "K2_GetComponentToWorld"); + + Params::SceneComponent_K2_GetComponentToWorld Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.AddComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class FName TemplateName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bManualAttachment (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& RelativeTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UObject* ComponentTemplateContext (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDeferredFinish (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UActorComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UActorComponent* AActor::AddComponent(class FName TemplateName, bool bManualAttachment, const struct FTransform& RelativeTransform, const class UObject* ComponentTemplateContext, bool bDeferredFinish) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "AddComponent"); + + Params::Actor_AddComponent Parms{}; + + Parms.TemplateName = TemplateName; + Parms.bManualAttachment = bManualAttachment; + Parms.RelativeTransform = std::move(RelativeTransform); + Parms.ComponentTemplateContext = ComponentTemplateContext; + Parms.bDeferredFinish = bDeferredFinish; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.AddComponentByClass +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bManualAttachment (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& RelativeTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDeferredFinish (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UActorComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UActorComponent* AActor::AddComponentByClass(TSubclassOf Class_0, bool bManualAttachment, const struct FTransform& RelativeTransform, bool bDeferredFinish) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "AddComponentByClass"); + + Params::Actor_AddComponentByClass Parms{}; + + Parms.Class_0 = Class_0; + Parms.bManualAttachment = bManualAttachment; + Parms.RelativeTransform = std::move(RelativeTransform); + Parms.bDeferredFinish = bDeferredFinish; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.AddTickPrerequisiteActor +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* PrerequisiteActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::AddTickPrerequisiteActor(class AActor* PrerequisiteActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "AddTickPrerequisiteActor"); + + Params::Actor_AddTickPrerequisiteActor Parms{}; + + Parms.PrerequisiteActor = PrerequisiteActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.AddTickPrerequisiteComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UActorComponent* PrerequisiteComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::AddTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "AddTickPrerequisiteComponent"); + + Params::Actor_AddTickPrerequisiteComponent Parms{}; + + Parms.PrerequisiteComponent = PrerequisiteComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.CreateInputComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InputComponentToCreate (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::CreateInputComponent(TSubclassOf InputComponentToCreate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "CreateInputComponent"); + + Params::Actor_CreateInputComponent Parms{}; + + Parms.InputComponentToCreate = InputComponentToCreate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.DetachRootComponentFromParent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bMaintainWorldPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::DetachRootComponentFromParent(bool bMaintainWorldPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "DetachRootComponentFromParent"); + + Params::Actor_DetachRootComponentFromParent Parms{}; + + Parms.bMaintainWorldPosition = bMaintainWorldPosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.DisableInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class APlayerController* PlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::DisableInput(class APlayerController* PlayerController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "DisableInput"); + + Params::Actor_DisableInput Parms{}; + + Parms.PlayerController = PlayerController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.EnableInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class APlayerController* PlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::EnableInput(class APlayerController* PlayerController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "EnableInput"); + + Params::Actor_EnableInput Parms{}; + + Parms.PlayerController = PlayerController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.FinishAddComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UActorComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bManualAttachment (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& RelativeTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::FinishAddComponent(class UActorComponent* Component, bool bManualAttachment, const struct FTransform& RelativeTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "FinishAddComponent"); + + Params::Actor_FinishAddComponent Parms{}; + + Parms.Component = Component; + Parms.bManualAttachment = bManualAttachment; + Parms.RelativeTransform = std::move(RelativeTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.FlushNetDormancy +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) + +void AActor::FlushNetDormancy() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "FlushNetDormancy"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.ForceNetUpdate +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AActor::ForceNetUpdate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ForceNetUpdate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.GetPhysicsReplicationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EPhysicsReplicationMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EPhysicsReplicationMode AActor::GetPhysicsReplicationMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetPhysicsReplicationMode"); + + Params::Actor_GetPhysicsReplicationMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetTickableWhenPaused +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::GetTickableWhenPaused() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetTickableWhenPaused"); + + Params::Actor_GetTickableWhenPaused Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_AddActorLocalOffset +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DeltaLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorLocalOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorLocalOffset"); + + Params::Actor_K2_AddActorLocalOffset Parms{}; + + Parms.DeltaLocation = std::move(DeltaLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorLocalRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& DeltaRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorLocalRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorLocalRotation"); + + Params::Actor_K2_AddActorLocalRotation Parms{}; + + Parms.DeltaRotation = std::move(DeltaRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorLocalTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& NewTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorLocalTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorLocalTransform"); + + Params::Actor_K2_AddActorLocalTransform Parms{}; + + Parms.NewTransform = std::move(NewTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorWorldOffset +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DeltaLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorWorldOffset(const struct FVector& DeltaLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorWorldOffset"); + + Params::Actor_K2_AddActorWorldOffset Parms{}; + + Parms.DeltaLocation = std::move(DeltaLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorWorldRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& DeltaRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorWorldRotation(const struct FRotator& DeltaRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorWorldRotation"); + + Params::Actor_K2_AddActorWorldRotation Parms{}; + + Parms.DeltaRotation = std::move(DeltaRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorWorldTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& DeltaTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorWorldTransform(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorWorldTransform"); + + Params::Actor_K2_AddActorWorldTransform Parms{}; + + Parms.DeltaTransform = std::move(DeltaTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AddActorWorldTransformKeepScale +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& DeltaTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AddActorWorldTransformKeepScale(const struct FTransform& DeltaTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AddActorWorldTransformKeepScale"); + + Params::Actor_K2_AddActorWorldTransformKeepScale Parms{}; + + Parms.DeltaTransform = std::move(DeltaTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_AttachRootComponentTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* InParent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachLocation AttachLocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AttachRootComponentTo(class USceneComponent* InParent, class FName InSocketName, EAttachLocation AttachLocationType, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AttachRootComponentTo"); + + Params::Actor_K2_AttachRootComponentTo Parms{}; + + Parms.InParent = InParent; + Parms.InSocketName = InSocketName; + Parms.AttachLocationType = AttachLocationType; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.K2_AttachRootComponentToActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* InParentActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachLocation AttachLocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_AttachRootComponentToActor(class AActor* InParentActor, class FName InSocketName, EAttachLocation AttachLocationType, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AttachRootComponentToActor"); + + Params::Actor_K2_AttachRootComponentToActor Parms{}; + + Parms.InParentActor = InParentActor; + Parms.InSocketName = InSocketName; + Parms.AttachLocationType = AttachLocationType; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.K2_AttachToActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* ParentActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_AttachToActor(class AActor* ParentActor, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AttachToActor"); + + Params::Actor_K2_AttachToActor Parms{}; + + Parms.ParentActor = ParentActor; + Parms.SocketName = SocketName; + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_AttachToComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* Parent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWeldSimulatedBodies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_AttachToComponent(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule, bool bWeldSimulatedBodies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_AttachToComponent"); + + Params::Actor_K2_AttachToComponent Parms{}; + + Parms.Parent = Parent; + Parms.SocketName = SocketName; + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + Parms.bWeldSimulatedBodies = bWeldSimulatedBodies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_DestroyActor +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AActor::K2_DestroyActor() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_DestroyActor"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.K2_DetachFromActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EDetachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDetachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDetachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_DetachFromActor(EDetachmentRule LocationRule, EDetachmentRule RotationRule, EDetachmentRule ScaleRule) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_DetachFromActor"); + + Params::Actor_K2_DetachFromActor Parms{}; + + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.K2_OnBecomeViewTarget +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* PC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_OnBecomeViewTarget(class APlayerController* PC) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_OnBecomeViewTarget"); + + Params::Actor_K2_OnBecomeViewTarget Parms{}; + + Parms.PC = PC; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.K2_OnEndViewTarget +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* PC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_OnEndViewTarget(class APlayerController* PC) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_OnEndViewTarget"); + + Params::Actor_K2_OnEndViewTarget Parms{}; + + Parms.PC = PC; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.K2_OnReset +// (RequiredAPI, Event, Public, BlueprintEvent) + +void AActor::K2_OnReset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_OnReset"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.K2_SetActorLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_SetActorLocation(const struct FVector& NewLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorLocation"); + + Params::Actor_K2_SetActorLocation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_SetActorLocationAndRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_SetActorLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorLocationAndRotation"); + + Params::Actor_K2_SetActorLocationAndRotation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_SetActorRelativeLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewRelativeLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_SetActorRelativeLocation(const struct FVector& NewRelativeLocation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorRelativeLocation"); + + Params::Actor_K2_SetActorRelativeLocation Parms{}; + + Parms.NewRelativeLocation = std::move(NewRelativeLocation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_SetActorRelativeRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRelativeRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_SetActorRelativeRotation(const struct FRotator& NewRelativeRotation, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorRelativeRotation"); + + Params::Actor_K2_SetActorRelativeRotation Parms{}; + + Parms.NewRelativeRotation = std::move(NewRelativeRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_SetActorRelativeTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& NewRelativeTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::K2_SetActorRelativeTransform(const struct FTransform& NewRelativeTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorRelativeTransform"); + + Params::Actor_K2_SetActorRelativeTransform Parms{}; + + Parms.NewRelativeTransform = std::move(NewRelativeTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); +} + + +// Function Engine.Actor.K2_SetActorRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bTeleportPhysics (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_SetActorRotation(const struct FRotator& NewRotation, bool bTeleportPhysics) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorRotation"); + + Params::Actor_K2_SetActorRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + Parms.bTeleportPhysics = bTeleportPhysics; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_SetActorTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& NewTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* SweepHitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_SetActorTransform(const struct FTransform& NewTransform, bool bSweep, struct FHitResult* SweepHitResult, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_SetActorTransform"); + + Params::Actor_K2_SetActorTransform Parms{}; + + Parms.NewTransform = std::move(NewTransform); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SweepHitResult != nullptr) + *SweepHitResult = std::move(Parms.SweepHitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_TeleportTo +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& DestLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& DestRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::K2_TeleportTo(const struct FVector& DestLocation, const struct FRotator& DestRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_TeleportTo"); + + Params::Actor_K2_TeleportTo Parms{}; + + Parms.DestLocation = std::move(DestLocation); + Parms.DestRotation = std::move(DestRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.MakeNoise +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// float Loudness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APawn* NoiseInstigator (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NoiseLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxRange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::MakeNoise(float Loudness, class APawn* NoiseInstigator, const struct FVector& NoiseLocation, float MaxRange, class FName Tag) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "MakeNoise"); + + Params::Actor_MakeNoise Parms{}; + + Parms.Loudness = Loudness; + Parms.NoiseInstigator = NoiseInstigator; + Parms.NoiseLocation = std::move(NoiseLocation); + Parms.MaxRange = MaxRange; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.OnRep_AttachmentReplication +// (RequiredAPI, Native, Public) + +void AActor::OnRep_AttachmentReplication() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "OnRep_AttachmentReplication"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.OnRep_Instigator +// (RequiredAPI, Native, Public) + +void AActor::OnRep_Instigator() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "OnRep_Instigator"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.OnRep_Owner +// (RequiredAPI, Native, Protected) + +void AActor::OnRep_Owner() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "OnRep_Owner"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.OnRep_ReplicatedMovement +// (RequiredAPI, Native, Public) + +void AActor::OnRep_ReplicatedMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "OnRep_ReplicatedMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.OnRep_ReplicateMovement +// (RequiredAPI, Native, Public) + +void AActor::OnRep_ReplicateMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "OnRep_ReplicateMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.PrestreamTextures +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableStreaming (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicTextureGroups (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::PrestreamTextures(float Seconds, bool bEnableStreaming, int32 CinematicTextureGroups) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "PrestreamTextures"); + + Params::Actor_PrestreamTextures Parms{}; + + Parms.Seconds = Seconds; + Parms.bEnableStreaming = bEnableStreaming; + Parms.CinematicTextureGroups = CinematicTextureGroups; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.ReceiveActorBeginCursorOver +// (RequiredAPI, Event, Public, BlueprintEvent) + +void AActor::ReceiveActorBeginCursorOver() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorBeginCursorOver"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.ReceiveActorBeginOverlap +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AActor* OtherActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorBeginOverlap(class AActor* OtherActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorBeginOverlap"); + + Params::Actor_ReceiveActorBeginOverlap Parms{}; + + Parms.OtherActor = OtherActor; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorEndCursorOver +// (RequiredAPI, Event, Public, BlueprintEvent) + +void AActor::ReceiveActorEndCursorOver() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorEndCursorOver"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.ReceiveActorEndOverlap +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AActor* OtherActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorEndOverlap(class AActor* OtherActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorEndOverlap"); + + Params::Actor_ReceiveActorEndOverlap Parms{}; + + Parms.OtherActor = OtherActor; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnClicked +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const struct FKey& ButtonPressed (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnClicked(const struct FKey& ButtonPressed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnClicked"); + + Params::Actor_ReceiveActorOnClicked Parms{}; + + Parms.ButtonPressed = std::move(ButtonPressed); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnInputTouchBegin +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const ETouchIndex FingerIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnInputTouchBegin(const ETouchIndex FingerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnInputTouchBegin"); + + Params::Actor_ReceiveActorOnInputTouchBegin Parms{}; + + Parms.FingerIndex = FingerIndex; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnInputTouchEnd +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const ETouchIndex FingerIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnInputTouchEnd(const ETouchIndex FingerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnInputTouchEnd"); + + Params::Actor_ReceiveActorOnInputTouchEnd Parms{}; + + Parms.FingerIndex = FingerIndex; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnInputTouchEnter +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const ETouchIndex FingerIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnInputTouchEnter(const ETouchIndex FingerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnInputTouchEnter"); + + Params::Actor_ReceiveActorOnInputTouchEnter Parms{}; + + Parms.FingerIndex = FingerIndex; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnInputTouchLeave +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const ETouchIndex FingerIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnInputTouchLeave(const ETouchIndex FingerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnInputTouchLeave"); + + Params::Actor_ReceiveActorOnInputTouchLeave Parms{}; + + Parms.FingerIndex = FingerIndex; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveActorOnReleased +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// const struct FKey& ButtonReleased (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveActorOnReleased(const struct FKey& ButtonReleased) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveActorOnReleased"); + + Params::Actor_ReceiveActorOnReleased Parms{}; + + Parms.ButtonReleased = std::move(ButtonReleased); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveAnyDamage +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, BlueprintEvent) +// Parameters: +// float Damage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDamageType* DamageType (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* InstigatedBy (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveAnyDamage(float Damage, const class UDamageType* DamageType, class AController* InstigatedBy, class AActor* DamageCauser) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveAnyDamage"); + + Params::Actor_ReceiveAnyDamage Parms{}; + + Parms.Damage = Damage; + Parms.DamageType = DamageType; + Parms.InstigatedBy = InstigatedBy; + Parms.DamageCauser = DamageCauser; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveAsyncPhysicsTick +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SimSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveAsyncPhysicsTick(float DeltaSeconds, float SimSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveAsyncPhysicsTick"); + + Params::Actor_ReceiveAsyncPhysicsTick Parms{}; + + Parms.DeltaSeconds = DeltaSeconds; + Parms.SimSeconds = SimSeconds; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveBeginPlay +// (RequiredAPI, Event, Protected, BlueprintEvent) + +void AActor::ReceiveBeginPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveBeginPlay"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.ReceiveDestroyed +// (RequiredAPI, Event, Public, BlueprintEvent) + +void AActor::ReceiveDestroyed() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveDestroyed"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.ReceiveEndPlay +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// EEndPlayReason EndPlayReason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveEndPlay(EEndPlayReason EndPlayReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveEndPlay"); + + Params::Actor_ReceiveEndPlay Parms{}; + + Parms.EndPlayReason = EndPlayReason; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveHit +// (RequiredAPI, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// class UPrimitiveComponent* MyComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* Other (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* OtherComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSelfMoved (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NormalImpulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void AActor::ReceiveHit(class UPrimitiveComponent* MyComp, class AActor* Other, class UPrimitiveComponent* OtherComp, bool bSelfMoved, const struct FVector& HitLocation, const struct FVector& HitNormal, const struct FVector& NormalImpulse, const struct FHitResult& Hit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveHit"); + + Params::Actor_ReceiveHit Parms{}; + + Parms.MyComp = MyComp; + Parms.Other = Other; + Parms.OtherComp = OtherComp; + Parms.bSelfMoved = bSelfMoved; + Parms.HitLocation = std::move(HitLocation); + Parms.HitNormal = std::move(HitNormal); + Parms.NormalImpulse = std::move(NormalImpulse); + Parms.Hit = std::move(Hit); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceivePointDamage +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// float Damage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDamageType* DamageType (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* HitComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ShotFromDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* InstigatedBy (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& HitInfo (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void AActor::ReceivePointDamage(float Damage, const class UDamageType* DamageType, const struct FVector& HitLocation, const struct FVector& HitNormal, class UPrimitiveComponent* HitComponent, class FName BoneName, const struct FVector& ShotFromDirection, class AController* InstigatedBy, class AActor* DamageCauser, const struct FHitResult& HitInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceivePointDamage"); + + Params::Actor_ReceivePointDamage Parms{}; + + Parms.Damage = Damage; + Parms.DamageType = DamageType; + Parms.HitLocation = std::move(HitLocation); + Parms.HitNormal = std::move(HitNormal); + Parms.HitComponent = HitComponent; + Parms.BoneName = BoneName; + Parms.ShotFromDirection = std::move(ShotFromDirection); + Parms.InstigatedBy = InstigatedBy; + Parms.DamageCauser = DamageCauser; + Parms.HitInfo = std::move(HitInfo); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveRadialDamage +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// float DamageReceived (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDamageType* DamageType (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& HitInfo (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// class AController* InstigatedBy (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveRadialDamage(float DamageReceived, const class UDamageType* DamageType, const struct FVector& Origin, const struct FHitResult& HitInfo, class AController* InstigatedBy, class AActor* DamageCauser) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveRadialDamage"); + + Params::Actor_ReceiveRadialDamage Parms{}; + + Parms.DamageReceived = DamageReceived; + Parms.DamageType = DamageType; + Parms.Origin = std::move(Origin); + Parms.HitInfo = std::move(HitInfo); + Parms.InstigatedBy = InstigatedBy; + Parms.DamageCauser = DamageCauser; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.ReceiveTick +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::ReceiveTick(float DeltaSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ReceiveTick"); + + Params::Actor_ReceiveTick Parms{}; + + Parms.DeltaSeconds = DeltaSeconds; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Actor.RemoveTickPrerequisiteActor +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* PrerequisiteActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::RemoveTickPrerequisiteActor(class AActor* PrerequisiteActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "RemoveTickPrerequisiteActor"); + + Params::Actor_RemoveTickPrerequisiteActor Parms{}; + + Parms.PrerequisiteActor = PrerequisiteActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.RemoveTickPrerequisiteComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UActorComponent* PrerequisiteComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::RemoveTickPrerequisiteComponent(class UActorComponent* PrerequisiteComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "RemoveTickPrerequisiteComponent"); + + Params::Actor_RemoveTickPrerequisiteComponent Parms{}; + + Parms.PrerequisiteComponent = PrerequisiteComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorEnableCollision +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewActorEnableCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorEnableCollision(bool bNewActorEnableCollision) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorEnableCollision"); + + Params::Actor_SetActorEnableCollision Parms{}; + + Parms.bNewActorEnableCollision = bNewActorEnableCollision; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorHiddenInGame +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewHidden (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorHiddenInGame(bool bNewHidden) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorHiddenInGame"); + + Params::Actor_SetActorHiddenInGame Parms{}; + + Parms.bNewHidden = bNewHidden; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorRelativeScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewRelativeScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorRelativeScale3D(const struct FVector& NewRelativeScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorRelativeScale3D"); + + Params::Actor_SetActorRelativeScale3D Parms{}; + + Parms.NewRelativeScale = std::move(NewRelativeScale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewScale3D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorScale3D(const struct FVector& NewScale3D) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorScale3D"); + + Params::Actor_SetActorScale3D Parms{}; + + Parms.NewScale3D = std::move(NewScale3D); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorTickEnabled +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorTickEnabled(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorTickEnabled"); + + Params::Actor_SetActorTickEnabled Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetActorTickInterval +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float TickInterval (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetActorTickInterval(float TickInterval) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetActorTickInterval"); + + Params::Actor_SetActorTickInterval Parms{}; + + Parms.TickInterval = TickInterval; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetAutoDestroyWhenFinished +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bVal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetAutoDestroyWhenFinished(bool bVal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetAutoDestroyWhenFinished"); + + Params::Actor_SetAutoDestroyWhenFinished Parms{}; + + Parms.bVal = bVal; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetLifeSpan +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InLifespan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetLifeSpan(float InLifespan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetLifeSpan"); + + Params::Actor_SetLifeSpan Parms{}; + + Parms.InLifespan = InLifespan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetMinNetUpdateFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float MinFrequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetMinNetUpdateFrequency(float MinFrequency) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetMinNetUpdateFrequency"); + + Params::Actor_SetMinNetUpdateFrequency Parms{}; + + Parms.MinFrequency = MinFrequency; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetNetCullDistanceSquared +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float DistanceSq (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetNetCullDistanceSquared(float DistanceSq) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetNetCullDistanceSquared"); + + Params::Actor_SetNetCullDistanceSquared Parms{}; + + Parms.DistanceSq = DistanceSq; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetNetDormancy +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// ENetDormancy NewDormancy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetNetDormancy(ENetDormancy NewDormancy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetNetDormancy"); + + Params::Actor_SetNetDormancy Parms{}; + + Parms.NewDormancy = NewDormancy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetNetUpdateFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Frequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetNetUpdateFrequency(float Frequency) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetNetUpdateFrequency"); + + Params::Actor_SetNetUpdateFrequency Parms{}; + + Parms.Frequency = Frequency; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetOwner +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* NewOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetOwner(class AActor* NewOwner) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetOwner"); + + Params::Actor_SetOwner Parms{}; + + Parms.NewOwner = NewOwner; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetPhysicsReplicationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const EPhysicsReplicationMode ReplicationMode (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetPhysicsReplicationMode(const EPhysicsReplicationMode ReplicationMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetPhysicsReplicationMode"); + + Params::Actor_SetPhysicsReplicationMode Parms{}; + + Parms.ReplicationMode = ReplicationMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetRayTracingGroupId +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InRaytracingGroupId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetRayTracingGroupId(int32 InRaytracingGroupId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetRayTracingGroupId"); + + Params::Actor_SetRayTracingGroupId Parms{}; + + Parms.InRaytracingGroupId = InRaytracingGroupId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetReplicateMovement +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInReplicateMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetReplicateMovement(bool bInReplicateMovement) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetReplicateMovement"); + + Params::Actor_SetReplicateMovement Parms{}; + + Parms.bInReplicateMovement = bInReplicateMovement; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetReplicates +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// bool bInReplicates (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetReplicates(bool bInReplicates) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetReplicates"); + + Params::Actor_SetReplicates Parms{}; + + Parms.bInReplicates = bInReplicates; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetTickableWhenPaused +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bTickableWhenPaused (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetTickableWhenPaused(bool bTickableWhenPaused) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetTickableWhenPaused"); + + Params::Actor_SetTickableWhenPaused Parms{}; + + Parms.bTickableWhenPaused = bTickableWhenPaused; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.SetTickGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETickingGroup NewTickGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::SetTickGroup(ETickingGroup NewTickGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "SetTickGroup"); + + Params::Actor_SetTickGroup Parms{}; + + Parms.NewTickGroup = NewTickGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.TearOff +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AActor::TearOff() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "TearOff"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Actor.UserConstructionScript +// (RequiredAPI, Event, Public, BlueprintEvent) + +void AActor::UserConstructionScript() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "UserConstructionScript"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Actor.ActorHasTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::ActorHasTag(class FName Tag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "ActorHasTag"); + + Params::Actor_ActorHasTag Parms{}; + + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.CanTriggerResimulation +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::CanTriggerResimulation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "CanTriggerResimulation"); + + Params::Actor_CanTriggerResimulation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.FindComponentByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ComponentClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UActorComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UActorComponent* AActor::FindComponentByTag(TSubclassOf ComponentClass, class FName Tag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "FindComponentByTag"); + + Params::Actor_FindComponentByTag Parms{}; + + Parms.ComponentClass = ComponentClass; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorBounds +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool bOnlyCollidingComponents (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Origin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoxExtent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeFromChildActors (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::GetActorBounds(bool bOnlyCollidingComponents, struct FVector* Origin, struct FVector* BoxExtent, bool bIncludeFromChildActors) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorBounds"); + + Params::Actor_GetActorBounds Parms{}; + + Parms.bOnlyCollidingComponents = bOnlyCollidingComponents; + Parms.bIncludeFromChildActors = bIncludeFromChildActors; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Origin != nullptr) + *Origin = std::move(Parms.Origin); + + if (BoxExtent != nullptr) + *BoxExtent = std::move(Parms.BoxExtent); +} + + +// Function Engine.Actor.GetActorEnableCollision +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::GetActorEnableCollision() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorEnableCollision"); + + Params::Actor_GetActorEnableCollision Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorEyesViewPoint +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* OutLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void AActor::GetActorEyesViewPoint(struct FVector* OutLocation, struct FRotator* OutRotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorEyesViewPoint"); + + Params::Actor_GetActorEyesViewPoint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLocation != nullptr) + *OutLocation = std::move(Parms.OutLocation); + + if (OutRotation != nullptr) + *OutRotation = std::move(Parms.OutRotation); +} + + +// Function Engine.Actor.GetActorForwardVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetActorForwardVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorForwardVector"); + + Params::Actor_GetActorForwardVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorRelativeScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetActorRelativeScale3D() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorRelativeScale3D"); + + Params::Actor_GetActorRelativeScale3D Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorRightVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetActorRightVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorRightVector"); + + Params::Actor_GetActorRightVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorScale3D +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetActorScale3D() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorScale3D"); + + Params::Actor_GetActorScale3D Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorTickInterval +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetActorTickInterval() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorTickInterval"); + + Params::Actor_GetActorTickInterval Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorTimeDilation +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetActorTimeDilation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorTimeDilation"); + + Params::Actor_GetActorTimeDilation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetActorUpVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetActorUpVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetActorUpVector"); + + Params::Actor_GetActorUpVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetAllChildActors +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* ChildActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bIncludeDescendants (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::GetAllChildActors(TArray* ChildActors, bool bIncludeDescendants) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetAllChildActors"); + + Params::Actor_GetAllChildActors Parms{}; + + Parms.bIncludeDescendants = bIncludeDescendants; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ChildActors != nullptr) + *ChildActors = std::move(Parms.ChildActors); +} + + +// Function Engine.Actor.GetAttachedActors +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bResetArray (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRecursivelyIncludeAttachedActors (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::GetAttachedActors(TArray* OutActors, bool bResetArray, bool bRecursivelyIncludeAttachedActors) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetAttachedActors"); + + Params::Actor_GetAttachedActors Parms{}; + + Parms.bResetArray = bResetArray; + Parms.bRecursivelyIncludeAttachedActors = bRecursivelyIncludeAttachedActors; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.Actor.GetAttachParentActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AActor::GetAttachParentActor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetAttachParentActor"); + + Params::Actor_GetAttachParentActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetAttachParentSocketName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName AActor::GetAttachParentSocketName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetAttachParentSocketName"); + + Params::Actor_GetAttachParentSocketName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetComponentByClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ComponentClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UActorComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UActorComponent* AActor::GetComponentByClass(TSubclassOf ComponentClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetComponentByClass"); + + Params::Actor_GetComponentByClass Parms{}; + + Parms.ComponentClass = ComponentClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetComponentsByInterface +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf Interface (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray AActor::GetComponentsByInterface(TSubclassOf Interface) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetComponentsByInterface"); + + Params::Actor_GetComponentsByInterface Parms{}; + + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetComponentsByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ComponentClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray AActor::GetComponentsByTag(TSubclassOf ComponentClass, class FName Tag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetComponentsByTag"); + + Params::Actor_GetComponentsByTag Parms{}; + + Parms.ComponentClass = ComponentClass; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetDistanceTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetDistanceTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetDistanceTo"); + + Params::Actor_GetDistanceTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetDotProductTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetDotProductTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetDotProductTo"); + + Params::Actor_GetDotProductTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetGameTimeSinceCreation +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetGameTimeSinceCreation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetGameTimeSinceCreation"); + + Params::Actor_GetGameTimeSinceCreation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetHorizontalDistanceTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetHorizontalDistanceTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetHorizontalDistanceTo"); + + Params::Actor_GetHorizontalDistanceTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetHorizontalDotProductTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetHorizontalDotProductTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetHorizontalDotProductTo"); + + Params::Actor_GetHorizontalDotProductTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetInputAxisKeyValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& InputAxisKey (ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetInputAxisKeyValue(const struct FKey& InputAxisKey) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetInputAxisKeyValue"); + + Params::Actor_GetInputAxisKeyValue Parms{}; + + Parms.InputAxisKey = std::move(InputAxisKey); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetInputAxisValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName InputAxisName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetInputAxisValue(const class FName InputAxisName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetInputAxisValue"); + + Params::Actor_GetInputAxisValue Parms{}; + + Parms.InputAxisName = InputAxisName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetInputVectorAxisValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& InputAxisKey (ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetInputVectorAxisValue(const struct FKey& InputAxisKey) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetInputVectorAxisValue"); + + Params::Actor_GetInputVectorAxisValue Parms{}; + + Parms.InputAxisKey = std::move(InputAxisKey); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetInstigator +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* AActor::GetInstigator() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetInstigator"); + + Params::Actor_GetInstigator Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetInstigatorController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AController* AActor::GetInstigatorController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetInstigatorController"); + + Params::Actor_GetInstigatorController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class ULevel* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevel* AActor::GetLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetLevel"); + + Params::Actor_GetLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetLevelTransform +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform AActor::GetLevelTransform() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetLevelTransform"); + + Params::Actor_GetLevelTransform Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetLifeSpan +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetLifeSpan() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetLifeSpan"); + + Params::Actor_GetLifeSpan Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetLocalRole +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ENetRole ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ENetRole AActor::GetLocalRole() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetLocalRole"); + + Params::Actor_GetLocalRole Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetMinNetUpdateFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetMinNetUpdateFrequency() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetMinNetUpdateFrequency"); + + Params::Actor_GetMinNetUpdateFrequency Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetNetCullDistanceSquared +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetNetCullDistanceSquared() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetNetCullDistanceSquared"); + + Params::Actor_GetNetCullDistanceSquared Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetNetUpdateFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetNetUpdateFrequency() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetNetUpdateFrequency"); + + Params::Actor_GetNetUpdateFrequency Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetOverlappingActors +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OverlappingActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TSubclassOf ClassFilter (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AActor::GetOverlappingActors(TArray* OverlappingActors, TSubclassOf ClassFilter) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetOverlappingActors"); + + Params::Actor_GetOverlappingActors Parms{}; + + Parms.ClassFilter = ClassFilter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OverlappingActors != nullptr) + *OverlappingActors = std::move(Parms.OverlappingActors); +} + + +// Function Engine.Actor.GetOverlappingComponents +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OverlappingComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void AActor::GetOverlappingComponents(TArray* OverlappingComponents) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetOverlappingComponents"); + + Params::Actor_GetOverlappingComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OverlappingComponents != nullptr) + *OverlappingComponents = std::move(Parms.OverlappingComponents); +} + + +// Function Engine.Actor.GetOwner +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AActor::GetOwner() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetOwner"); + + Params::Actor_GetOwner Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetParentActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AActor::GetParentActor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetParentActor"); + + Params::Actor_GetParentActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetParentComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UChildActorComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UChildActorComponent* AActor::GetParentComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetParentComponent"); + + Params::Actor_GetParentComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetRayTracingGroupId +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 AActor::GetRayTracingGroupId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetRayTracingGroupId"); + + Params::Actor_GetRayTracingGroupId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetRemoteRole +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ENetRole ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ENetRole AActor::GetRemoteRole() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetRemoteRole"); + + Params::Actor_GetRemoteRole Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetResimulationThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetResimulationThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetResimulationThreshold"); + + Params::Actor_GetResimulationThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetSquaredDistanceTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetSquaredDistanceTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetSquaredDistanceTo"); + + Params::Actor_GetSquaredDistanceTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetSquaredHorizontalDistanceTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetSquaredHorizontalDistanceTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetSquaredHorizontalDistanceTo"); + + Params::Actor_GetSquaredHorizontalDistanceTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetTransform +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FTransform ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const struct FTransform AActor::GetTransform() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetTransform"); + + Params::Actor_GetTransform Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetVelocity +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::GetVelocity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetVelocity"); + + Params::Actor_GetVelocity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.GetVerticalDistanceTo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* OtherActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AActor::GetVerticalDistanceTo(const class AActor* OtherActor) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "GetVerticalDistanceTo"); + + Params::Actor_GetVerticalDistanceTo Parms{}; + + Parms.OtherActor = OtherActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.HasAuthority +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::HasAuthority() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "HasAuthority"); + + Params::Actor_HasAuthority Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.IsActorBeingDestroyed +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::IsActorBeingDestroyed() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "IsActorBeingDestroyed"); + + Params::Actor_IsActorBeingDestroyed Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.IsActorTickEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::IsActorTickEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "IsActorTickEnabled"); + + Params::Actor_IsActorTickEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.IsChildActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::IsChildActor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "IsChildActor"); + + Params::Actor_IsChildActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.IsOverlappingActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* Other (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::IsOverlappingActor(const class AActor* Other) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "IsOverlappingActor"); + + Params::Actor_IsOverlappingActor Parms{}; + + Parms.Other = Other; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_GetActorLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AActor::K2_GetActorLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_GetActorLocation"); + + Params::Actor_K2_GetActorLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_GetActorRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator AActor::K2_GetActorRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_GetActorRotation"); + + Params::Actor_K2_GetActorRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_GetComponentsByClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ComponentClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray AActor::K2_GetComponentsByClass(TSubclassOf ComponentClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_GetComponentsByClass"); + + Params::Actor_K2_GetComponentsByClass Parms{}; + + Parms.ComponentClass = ComponentClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.K2_GetRootComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USceneComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USceneComponent* AActor::K2_GetRootComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "K2_GetRootComponent"); + + Params::Actor_K2_GetRootComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Actor.WasRecentlyRendered +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AActor::WasRecentlyRendered(float Tolerance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Actor", "WasRecentlyRendered"); + + Params::Actor_WasRecentlyRendered Parms{}; + + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.AddAngularImpulseInDegrees +// (Final, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddAngularImpulseInDegrees(const struct FVector& Impulse, class FName BoneName, bool bVelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddAngularImpulseInDegrees"); + + Params::PrimitiveComponent_AddAngularImpulseInDegrees Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.BoneName = BoneName; + Parms.bVelChange = bVelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddAngularImpulseInRadians +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddAngularImpulseInRadians(const struct FVector& Impulse, class FName BoneName, bool bVelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddAngularImpulseInRadians"); + + Params::PrimitiveComponent_AddAngularImpulseInRadians Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.BoneName = BoneName; + Parms.bVelChange = bVelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddForce +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddForce(const struct FVector& Force, class FName BoneName, bool bAccelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddForce"); + + Params::PrimitiveComponent_AddForce Parms{}; + + Parms.Force = std::move(Force); + Parms.BoneName = BoneName; + Parms.bAccelChange = bAccelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddForceAtLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddForceAtLocation(const struct FVector& Force, const struct FVector& Location, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddForceAtLocation"); + + Params::PrimitiveComponent_AddForceAtLocation Parms{}; + + Parms.Force = std::move(Force); + Parms.Location = std::move(Location); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddForceAtLocationLocal +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddForceAtLocationLocal(const struct FVector& Force, const struct FVector& Location, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddForceAtLocationLocal"); + + Params::PrimitiveComponent_AddForceAtLocationLocal Parms{}; + + Parms.Force = std::move(Force); + Parms.Location = std::move(Location); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddImpulse +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddImpulse(const struct FVector& Impulse, class FName BoneName, bool bVelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddImpulse"); + + Params::PrimitiveComponent_AddImpulse Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.BoneName = BoneName; + Parms.bVelChange = bVelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddImpulseAtLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddImpulseAtLocation(const struct FVector& Impulse, const struct FVector& Location, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddImpulseAtLocation"); + + Params::PrimitiveComponent_AddImpulseAtLocation Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.Location = std::move(Location); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddRadialForce +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Strength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERadialImpulseFalloff Falloff (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddRadialForce(const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bAccelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddRadialForce"); + + Params::PrimitiveComponent_AddRadialForce Parms{}; + + Parms.Origin = std::move(Origin); + Parms.Radius = Radius; + Parms.Strength = Strength; + Parms.Falloff = Falloff; + Parms.bAccelChange = bAccelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddRadialImpulse +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Strength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERadialImpulseFalloff Falloff (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddRadialImpulse(const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bVelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddRadialImpulse"); + + Params::PrimitiveComponent_AddRadialImpulse Parms{}; + + Parms.Origin = std::move(Origin); + Parms.Radius = Radius; + Parms.Strength = Strength; + Parms.Falloff = Falloff; + Parms.bVelChange = bVelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddTorqueInDegrees +// (Final, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Torque (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddTorqueInDegrees(const struct FVector& Torque, class FName BoneName, bool bAccelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddTorqueInDegrees"); + + Params::PrimitiveComponent_AddTorqueInDegrees Parms{}; + + Parms.Torque = std::move(Torque); + Parms.BoneName = BoneName; + Parms.bAccelChange = bAccelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddTorqueInRadians +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Torque (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddTorqueInRadians(const struct FVector& Torque, class FName BoneName, bool bAccelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddTorqueInRadians"); + + Params::PrimitiveComponent_AddTorqueInRadians Parms{}; + + Parms.Torque = std::move(Torque); + Parms.BoneName = BoneName; + Parms.bAccelChange = bAccelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AddVelocityChangeImpulseAtLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::AddVelocityChangeImpulseAtLocation(const struct FVector& Impulse, const struct FVector& Location, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AddVelocityChangeImpulseAtLocation"); + + Params::PrimitiveComponent_AddVelocityChangeImpulseAtLocation Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.Location = std::move(Location); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.ClearMoveIgnoreActors +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UPrimitiveComponent::ClearMoveIgnoreActors() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "ClearMoveIgnoreActors"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.ClearMoveIgnoreComponents +// (Final, Native, Public, BlueprintCallable) + +void UPrimitiveComponent::ClearMoveIgnoreComponents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "ClearMoveIgnoreComponents"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.CopyArrayOfMoveIgnoreActors +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UPrimitiveComponent::CopyArrayOfMoveIgnoreActors() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CopyArrayOfMoveIgnoreActors"); + + Params::PrimitiveComponent_CopyArrayOfMoveIgnoreActors Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.CopyArrayOfMoveIgnoreComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray UPrimitiveComponent::CopyArrayOfMoveIgnoreComponents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CopyArrayOfMoveIgnoreComponents"); + + Params::PrimitiveComponent_CopyArrayOfMoveIgnoreComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.CreateAndSetMaterialInstanceDynamic +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UPrimitiveComponent::CreateAndSetMaterialInstanceDynamic(int32 ElementIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CreateAndSetMaterialInstanceDynamic"); + + Params::PrimitiveComponent_CreateAndSetMaterialInstanceDynamic Parms{}; + + Parms.ElementIndex = ElementIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.CreateAndSetMaterialInstanceDynamicFromMaterial +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Parent (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UPrimitiveComponent::CreateAndSetMaterialInstanceDynamicFromMaterial(int32 ElementIndex, class UMaterialInterface* Parent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CreateAndSetMaterialInstanceDynamicFromMaterial"); + + Params::PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial Parms{}; + + Parms.ElementIndex = ElementIndex; + Parms.Parent = Parent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.CreateDynamicMaterialInstance +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* SourceMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName OptionalName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UPrimitiveComponent::CreateDynamicMaterialInstance(int32 ElementIndex, class UMaterialInterface* SourceMaterial, class FName OptionalName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CreateDynamicMaterialInstance"); + + Params::PrimitiveComponent_CreateDynamicMaterialInstance Parms{}; + + Parms.ElementIndex = ElementIndex; + Parms.SourceMaterial = SourceMaterial; + Parms.OptionalName = OptionalName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaxDepenetrationVelocity +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetMaxDepenetrationVelocity(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaxDepenetrationVelocity"); + + Params::PrimitiveComponent_GetMaxDepenetrationVelocity Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetPhysicsLinearVelocity +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetPhysicsLinearVelocity(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetPhysicsLinearVelocity"); + + Params::PrimitiveComponent_GetPhysicsLinearVelocity Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetPhysicsLinearVelocityAtPoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetPhysicsLinearVelocityAtPoint(const struct FVector& Point, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetPhysicsLinearVelocityAtPoint"); + + Params::PrimitiveComponent_GetPhysicsLinearVelocityAtPoint Parms{}; + + Parms.Point = std::move(Point); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IgnoreActorWhenMoving +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldIgnore (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::IgnoreActorWhenMoving(class AActor* Actor, bool bShouldIgnore) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IgnoreActorWhenMoving"); + + Params::PrimitiveComponent_IgnoreActorWhenMoving Parms{}; + + Parms.Actor = Actor; + Parms.bShouldIgnore = bShouldIgnore; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.IgnoreComponentWhenMoving +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldIgnore (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::IgnoreComponentWhenMoving(class UPrimitiveComponent* Component, bool bShouldIgnore) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IgnoreComponentWhenMoving"); + + Params::PrimitiveComponent_IgnoreComponentWhenMoving Parms{}; + + Parms.Component = Component; + Parms.bShouldIgnore = bShouldIgnore; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.InvalidateLumenSurfaceCache +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UPrimitiveComponent::InvalidateLumenSurfaceCache() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "InvalidateLumenSurfaceCache"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.IsAnyRigidBodyAwake +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsAnyRigidBodyAwake() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsAnyRigidBodyAwake"); + + Params::PrimitiveComponent_IsAnyRigidBodyAwake Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_BoxOverlapComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InBoxCentre (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox& InBox (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistentShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitNormal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_BoxOverlapComponent(const struct FVector& InBoxCentre, const struct FBox& InBox, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_BoxOverlapComponent"); + + Params::PrimitiveComponent_K2_BoxOverlapComponent Parms{}; + + Parms.InBoxCentre = std::move(InBoxCentre); + Parms.InBox = std::move(InBox); + Parms.bTraceComplex = bTraceComplex; + Parms.bShowTrace = bShowTrace; + Parms.bPersistentShowTrace = bPersistentShowTrace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitLocation != nullptr) + *HitLocation = std::move(Parms.HitLocation); + + if (HitNormal != nullptr) + *HitNormal = std::move(Parms.HitNormal); + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_LineTraceComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& TraceStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TraceEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistentShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitNormal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_LineTraceComponent(const struct FVector& TraceStart, const struct FVector& TraceEnd, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_LineTraceComponent"); + + Params::PrimitiveComponent_K2_LineTraceComponent Parms{}; + + Parms.TraceStart = std::move(TraceStart); + Parms.TraceEnd = std::move(TraceEnd); + Parms.bTraceComplex = bTraceComplex; + Parms.bShowTrace = bShowTrace; + Parms.bPersistentShowTrace = bPersistentShowTrace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitLocation != nullptr) + *HitLocation = std::move(Parms.HitLocation); + + if (HitNormal != nullptr) + *HitNormal = std::move(Parms.HitNormal); + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_SphereOverlapComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InSphereCentre (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InSphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistentShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitNormal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_SphereOverlapComponent(const struct FVector& InSphereCentre, float InSphereRadius, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_SphereOverlapComponent"); + + Params::PrimitiveComponent_K2_SphereOverlapComponent Parms{}; + + Parms.InSphereCentre = std::move(InSphereCentre); + Parms.InSphereRadius = InSphereRadius; + Parms.bTraceComplex = bTraceComplex; + Parms.bShowTrace = bShowTrace; + Parms.bPersistentShowTrace = bPersistentShowTrace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitLocation != nullptr) + *HitLocation = std::move(Parms.HitLocation); + + if (HitNormal != nullptr) + *HitNormal = std::move(Parms.HitNormal); + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_SphereTraceComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& TraceStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TraceEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistentShowTrace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* HitNormal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_SphereTraceComponent(const struct FVector& TraceStart, const struct FVector& TraceEnd, float SphereRadius, bool bTraceComplex, bool bShowTrace, bool bPersistentShowTrace, struct FVector* HitLocation, struct FVector* HitNormal, class FName* BoneName, struct FHitResult* OutHit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_SphereTraceComponent"); + + Params::PrimitiveComponent_K2_SphereTraceComponent Parms{}; + + Parms.TraceStart = std::move(TraceStart); + Parms.TraceEnd = std::move(TraceEnd); + Parms.SphereRadius = SphereRadius; + Parms.bTraceComplex = bTraceComplex; + Parms.bShowTrace = bShowTrace; + Parms.bPersistentShowTrace = bPersistentShowTrace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitLocation != nullptr) + *HitLocation = std::move(Parms.HitLocation); + + if (HitNormal != nullptr) + *HitNormal = std::move(Parms.HitNormal); + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.PutRigidBodyToSleep +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::PutRigidBodyToSleep(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "PutRigidBodyToSleep"); + + Params::PrimitiveComponent_PutRigidBodyToSleep Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAffectDistanceFieldLighting +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewAffectDistanceFieldLighting (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAffectDistanceFieldLighting(bool NewAffectDistanceFieldLighting) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAffectDistanceFieldLighting"); + + Params::PrimitiveComponent_SetAffectDistanceFieldLighting Parms{}; + + Parms.NewAffectDistanceFieldLighting = NewAffectDistanceFieldLighting; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAffectDynamicIndirectLighting +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewAffectDynamicIndirectLighting (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAffectDynamicIndirectLighting(bool bNewAffectDynamicIndirectLighting) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAffectDynamicIndirectLighting"); + + Params::PrimitiveComponent_SetAffectDynamicIndirectLighting Parms{}; + + Parms.bNewAffectDynamicIndirectLighting = bNewAffectDynamicIndirectLighting; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAffectIndirectLightingWhileHidden +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewAffectIndirectLightingWhileHidden (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAffectIndirectLightingWhileHidden(bool bNewAffectIndirectLightingWhileHidden) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAffectIndirectLightingWhileHidden"); + + Params::PrimitiveComponent_SetAffectIndirectLightingWhileHidden Parms{}; + + Parms.bNewAffectIndirectLightingWhileHidden = bNewAffectIndirectLightingWhileHidden; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllMassScale +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InMassScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllMassScale(float InMassScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllMassScale"); + + Params::PrimitiveComponent_SetAllMassScale Parms{}; + + Parms.InMassScale = InMassScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllPhysicsAngularVelocityInDegrees +// (Final, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewAngVel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllPhysicsAngularVelocityInDegrees(const struct FVector& NewAngVel, bool bAddToCurrent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllPhysicsAngularVelocityInDegrees"); + + Params::PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees Parms{}; + + Parms.NewAngVel = std::move(NewAngVel); + Parms.bAddToCurrent = bAddToCurrent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllPhysicsAngularVelocityInRadians +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewAngVel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllPhysicsAngularVelocityInRadians(const struct FVector& NewAngVel, bool bAddToCurrent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllPhysicsAngularVelocityInRadians"); + + Params::PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians Parms{}; + + Parms.NewAngVel = std::move(NewAngVel); + Parms.bAddToCurrent = bAddToCurrent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllPhysicsLinearVelocity +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllPhysicsLinearVelocity(const struct FVector& NewVel, bool bAddToCurrent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllPhysicsLinearVelocity"); + + Params::PrimitiveComponent_SetAllPhysicsLinearVelocity Parms{}; + + Parms.NewVel = std::move(NewVel); + Parms.bAddToCurrent = bAddToCurrent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllUseCCD +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InUseCCD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllUseCCD(bool InUseCCD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllUseCCD"); + + Params::PrimitiveComponent_SetAllUseCCD Parms{}; + + Parms.InUseCCD = InUseCCD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAllUseMACD +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InUseMACD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAllUseMACD(bool InUseMACD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAllUseMACD"); + + Params::PrimitiveComponent_SetAllUseMACD Parms{}; + + Parms.InUseMACD = InUseMACD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetAngularDamping +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetAngularDamping(float InDamping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetAngularDamping"); + + Params::PrimitiveComponent_SetAngularDamping Parms{}; + + Parms.InDamping = InDamping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetBoundsScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewBoundsScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetBoundsScale(float NewBoundsScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetBoundsScale"); + + Params::PrimitiveComponent_SetBoundsScale Parms{}; + + Parms.NewBoundsScale = NewBoundsScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCastContactShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInCastContactShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCastContactShadow(bool bInCastContactShadow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCastContactShadow"); + + Params::PrimitiveComponent_SetCastContactShadow Parms{}; + + Parms.bInCastContactShadow = bInCastContactShadow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCastHiddenShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewCastHiddenShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCastHiddenShadow(bool NewCastHiddenShadow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCastHiddenShadow"); + + Params::PrimitiveComponent_SetCastHiddenShadow Parms{}; + + Parms.NewCastHiddenShadow = NewCastHiddenShadow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCastInsetShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInCastInsetShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCastInsetShadow(bool bInCastInsetShadow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCastInsetShadow"); + + Params::PrimitiveComponent_SetCastInsetShadow Parms{}; + + Parms.bInCastInsetShadow = bInCastInsetShadow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCastShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewCastShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCastShadow(bool NewCastShadow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCastShadow"); + + Params::PrimitiveComponent_SetCastShadow Parms{}; + + Parms.NewCastShadow = NewCastShadow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCenterOfMass +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& CenterOfMassOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCenterOfMass(const struct FVector& CenterOfMassOffset, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCenterOfMass"); + + Params::PrimitiveComponent_SetCenterOfMass Parms{}; + + Parms.CenterOfMassOffset = std::move(CenterOfMassOffset); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCollisionEnabled +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ECollisionEnabled NewType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCollisionEnabled(ECollisionEnabled NewType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCollisionEnabled"); + + Params::PrimitiveComponent_SetCollisionEnabled Parms{}; + + Parms.NewType = NewType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCollisionObjectType +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ECollisionChannel Channel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCollisionObjectType(ECollisionChannel Channel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCollisionObjectType"); + + Params::PrimitiveComponent_SetCollisionObjectType Parms{}; + + Parms.Channel = Channel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCollisionProfileName +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InCollisionProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCollisionProfileName(class FName InCollisionProfileName, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCollisionProfileName"); + + Params::PrimitiveComponent_SetCollisionProfileName Parms{}; + + Parms.InCollisionProfileName = InCollisionProfileName; + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCollisionResponseToAllChannels +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ECollisionResponse NewResponse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCollisionResponseToAllChannels(ECollisionResponse NewResponse) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCollisionResponseToAllChannels"); + + Params::PrimitiveComponent_SetCollisionResponseToAllChannels Parms{}; + + Parms.NewResponse = NewResponse; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCollisionResponseToChannel +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ECollisionChannel Channel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionResponse NewResponse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCollisionResponseToChannel(ECollisionChannel Channel, ECollisionResponse NewResponse) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCollisionResponseToChannel"); + + Params::PrimitiveComponent_SetCollisionResponseToChannel Parms{}; + + Parms.Channel = Channel; + Parms.NewResponse = NewResponse; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetConstraintMode +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EDOFMode ConstraintMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetConstraintMode(EDOFMode ConstraintMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetConstraintMode"); + + Params::PrimitiveComponent_SetConstraintMode Parms{}; + + Parms.ConstraintMode = ConstraintMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCullDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewCullDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCullDistance(float NewCullDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCullDistance"); + + Params::PrimitiveComponent_SetCullDistance Parms{}; + + Parms.NewCullDistance = NewCullDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomDepthStencilValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomDepthStencilValue(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomDepthStencilValue"); + + Params::PrimitiveComponent_SetCustomDepthStencilValue Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomDepthStencilWriteMask +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ERendererStencilMask WriteMaskBit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomDepthStencilWriteMask(ERendererStencilMask WriteMaskBit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomDepthStencilWriteMask"); + + Params::PrimitiveComponent_SetCustomDepthStencilWriteMask Parms{}; + + Parms.WriteMaskBit = WriteMaskBit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataFloat +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomPrimitiveDataFloat(int32 DataIndex, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomPrimitiveDataFloat"); + + Params::PrimitiveComponent_SetCustomPrimitiveDataFloat Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector2 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomPrimitiveDataVector2(int32 DataIndex, const struct FVector2D& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomPrimitiveDataVector2"); + + Params::PrimitiveComponent_SetCustomPrimitiveDataVector2 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector3 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomPrimitiveDataVector3(int32 DataIndex, const struct FVector& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomPrimitiveDataVector3"); + + Params::PrimitiveComponent_SetCustomPrimitiveDataVector3 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector4 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetCustomPrimitiveDataVector4(int32 DataIndex, const struct FVector4& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetCustomPrimitiveDataVector4"); + + Params::PrimitiveComponent_SetCustomPrimitiveDataVector4 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataFloat +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetDefaultCustomPrimitiveDataFloat(int32 DataIndex, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetDefaultCustomPrimitiveDataFloat"); + + Params::PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector2 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetDefaultCustomPrimitiveDataVector2(int32 DataIndex, const struct FVector2D& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetDefaultCustomPrimitiveDataVector2"); + + Params::PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector3 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetDefaultCustomPrimitiveDataVector3(int32 DataIndex, const struct FVector& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetDefaultCustomPrimitiveDataVector3"); + + Params::PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector4 +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 DataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetDefaultCustomPrimitiveDataVector4(int32 DataIndex, const struct FVector4& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetDefaultCustomPrimitiveDataVector4"); + + Params::PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4 Parms{}; + + Parms.DataIndex = DataIndex; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetEmissiveLightSource +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewEmissiveLightSource (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetEmissiveLightSource(bool NewEmissiveLightSource) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetEmissiveLightSource"); + + Params::PrimitiveComponent_SetEmissiveLightSource Parms{}; + + Parms.NewEmissiveLightSource = NewEmissiveLightSource; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetEnableGravity +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bGravityEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetEnableGravity(bool bGravityEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetEnableGravity"); + + Params::PrimitiveComponent_SetEnableGravity Parms{}; + + Parms.bGravityEnabled = bGravityEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetExcludedFromHLODLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EHLODLevelExclusion HLODLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bExcluded (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetExcludedFromHLODLevel(EHLODLevelExclusion HLODLevel, bool bExcluded) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetExcludedFromHLODLevel"); + + Params::PrimitiveComponent_SetExcludedFromHLODLevel Parms{}; + + Parms.HLODLevel = HLODLevel; + Parms.bExcluded = bExcluded; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetExcludeForSpecificHLODLevels +// (Final, RequiredAPI, Native, Private, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InExcludeForSpecificHLODLevels (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetExcludeForSpecificHLODLevels(const TArray& InExcludeForSpecificHLODLevels) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetExcludeForSpecificHLODLevels"); + + Params::PrimitiveComponent_SetExcludeForSpecificHLODLevels Parms{}; + + Parms.InExcludeForSpecificHLODLevels = std::move(InExcludeForSpecificHLODLevels); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetExcludeFromLightAttachmentGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInExcludeFromLightAttachmentGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetExcludeFromLightAttachmentGroup(bool bInExcludeFromLightAttachmentGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetExcludeFromLightAttachmentGroup"); + + Params::PrimitiveComponent_SetExcludeFromLightAttachmentGroup Parms{}; + + Parms.bInExcludeFromLightAttachmentGroup = bInExcludeFromLightAttachmentGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetFirstPersonPrimitiveType +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EFirstPersonPrimitiveType Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetFirstPersonPrimitiveType(EFirstPersonPrimitiveType Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetFirstPersonPrimitiveType"); + + Params::PrimitiveComponent_SetFirstPersonPrimitiveType Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetGenerateOverlapEvents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInGenerateOverlapEvents (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetGenerateOverlapEvents(bool bInGenerateOverlapEvents) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetGenerateOverlapEvents"); + + Params::PrimitiveComponent_SetGenerateOverlapEvents Parms{}; + + Parms.bInGenerateOverlapEvents = bInGenerateOverlapEvents; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetHiddenInSceneCapture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetHiddenInSceneCapture(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetHiddenInSceneCapture"); + + Params::PrimitiveComponent_SetHiddenInSceneCapture Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetHoldout +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewHoldout (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetHoldout(bool bNewHoldout) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetHoldout"); + + Params::PrimitiveComponent_SetHoldout Parms{}; + + Parms.bNewHoldout = bNewHoldout; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetIgnoreBoundsForEditorFocus +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bIgnore (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetIgnoreBoundsForEditorFocus(bool bIgnore) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetIgnoreBoundsForEditorFocus"); + + Params::PrimitiveComponent_SetIgnoreBoundsForEditorFocus Parms{}; + + Parms.bIgnore = bIgnore; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetLightAttachmentsAsGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInLightAttachmentsAsGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetLightAttachmentsAsGroup(bool bInLightAttachmentsAsGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetLightAttachmentsAsGroup"); + + Params::PrimitiveComponent_SetLightAttachmentsAsGroup Parms{}; + + Parms.bInLightAttachmentsAsGroup = bInLightAttachmentsAsGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetLightingChannels +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bChannel0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bChannel1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bChannel2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetLightingChannels(bool bChannel0, bool bChannel1, bool bChannel2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetLightingChannels"); + + Params::PrimitiveComponent_SetLightingChannels Parms{}; + + Parms.bChannel0 = bChannel0; + Parms.bChannel1 = bChannel1; + Parms.bChannel2 = bChannel2; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetLinearDamping +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetLinearDamping(float InDamping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetLinearDamping"); + + Params::PrimitiveComponent_SetLinearDamping Parms{}; + + Parms.InDamping = InDamping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetMassOverrideInKg +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MassInKg (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bOverrideMass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetMassOverrideInKg(class FName BoneName, float MassInKg, bool bOverrideMass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetMassOverrideInKg"); + + Params::PrimitiveComponent_SetMassOverrideInKg Parms{}; + + Parms.BoneName = BoneName; + Parms.MassInKg = MassInKg; + Parms.bOverrideMass = bOverrideMass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetMassScale +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InMassScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetMassScale(class FName BoneName, float InMassScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetMassScale"); + + Params::PrimitiveComponent_SetMassScale Parms{}; + + Parms.BoneName = BoneName; + Parms.InMassScale = InMassScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetMaterial +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetMaterial(int32 ElementIndex, class UMaterialInterface* Material) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetMaterial"); + + Params::PrimitiveComponent_SetMaterial Parms{}; + + Parms.ElementIndex = ElementIndex; + Parms.Material = Material; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetMaterialByName +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName MaterialSlotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetMaterialByName(class FName MaterialSlotName, class UMaterialInterface* Material) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetMaterialByName"); + + Params::PrimitiveComponent_SetMaterialByName Parms{}; + + Parms.MaterialSlotName = MaterialSlotName; + Parms.Material = Material; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetMaxDepenetrationVelocity +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InMaxDepenetrationVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetMaxDepenetrationVelocity(class FName BoneName, float InMaxDepenetrationVelocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetMaxDepenetrationVelocity"); + + Params::PrimitiveComponent_SetMaxDepenetrationVelocity Parms{}; + + Parms.BoneName = BoneName; + Parms.InMaxDepenetrationVelocity = InMaxDepenetrationVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetNotifyRigidBodyCollision +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewNotifyRigidBodyCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetNotifyRigidBodyCollision(bool bNewNotifyRigidBodyCollision) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetNotifyRigidBodyCollision"); + + Params::PrimitiveComponent_SetNotifyRigidBodyCollision Parms{}; + + Parms.bNewNotifyRigidBodyCollision = bNewNotifyRigidBodyCollision; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetOnlyOwnerSee +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewOnlyOwnerSee (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetOnlyOwnerSee(bool bNewOnlyOwnerSee) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetOnlyOwnerSee"); + + Params::PrimitiveComponent_SetOnlyOwnerSee Parms{}; + + Parms.bNewOnlyOwnerSee = bNewOnlyOwnerSee; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetOwnerNoSee +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewOwnerNoSee (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetOwnerNoSee(bool bNewOwnerNoSee) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetOwnerNoSee"); + + Params::PrimitiveComponent_SetOwnerNoSee Parms{}; + + Parms.bNewOwnerNoSee = bNewOwnerNoSee; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysicsAngularVelocityInDegrees +// (Final, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewAngVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysicsAngularVelocityInDegrees(const struct FVector& NewAngVel, bool bAddToCurrent, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysicsAngularVelocityInDegrees"); + + Params::PrimitiveComponent_SetPhysicsAngularVelocityInDegrees Parms{}; + + Parms.NewAngVel = std::move(NewAngVel); + Parms.bAddToCurrent = bAddToCurrent; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysicsAngularVelocityInRadians +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewAngVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysicsAngularVelocityInRadians(const struct FVector& NewAngVel, bool bAddToCurrent, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysicsAngularVelocityInRadians"); + + Params::PrimitiveComponent_SetPhysicsAngularVelocityInRadians Parms{}; + + Parms.NewAngVel = std::move(NewAngVel); + Parms.bAddToCurrent = bAddToCurrent; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysicsLinearVelocity +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysicsLinearVelocity(const struct FVector& NewVel, bool bAddToCurrent, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysicsLinearVelocity"); + + Params::PrimitiveComponent_SetPhysicsLinearVelocity Parms{}; + + Parms.NewVel = std::move(NewVel); + Parms.bAddToCurrent = bAddToCurrent; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysicsMaxAngularVelocityInDegrees +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float NewMaxAngVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysicsMaxAngularVelocityInDegrees(float NewMaxAngVel, bool bAddToCurrent, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysicsMaxAngularVelocityInDegrees"); + + Params::PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees Parms{}; + + Parms.NewMaxAngVel = NewMaxAngVel; + Parms.bAddToCurrent = bAddToCurrent; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysicsMaxAngularVelocityInRadians +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewMaxAngVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysicsMaxAngularVelocityInRadians(float NewMaxAngVel, bool bAddToCurrent, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysicsMaxAngularVelocityInRadians"); + + Params::PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians Parms{}; + + Parms.NewMaxAngVel = NewMaxAngVel; + Parms.bAddToCurrent = bAddToCurrent; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetPhysMaterialOverride +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPhysicalMaterial* NewPhysMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetPhysMaterialOverride(class UPhysicalMaterial* NewPhysMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetPhysMaterialOverride"); + + Params::PrimitiveComponent_SetPhysMaterialOverride Parms{}; + + Parms.NewPhysMaterial = NewPhysMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetReceivesDecals +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewReceivesDecals (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetReceivesDecals(bool bNewReceivesDecals) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetReceivesDecals"); + + Params::PrimitiveComponent_SetReceivesDecals Parms{}; + + Parms.bNewReceivesDecals = bNewReceivesDecals; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetRenderCustomDepth +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetRenderCustomDepth(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetRenderCustomDepth"); + + Params::PrimitiveComponent_SetRenderCustomDepth Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetRenderInDepthPass +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetRenderInDepthPass(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetRenderInDepthPass"); + + Params::PrimitiveComponent_SetRenderInDepthPass Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetRenderInMainPass +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetRenderInMainPass(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetRenderInMainPass"); + + Params::PrimitiveComponent_SetRenderInMainPass Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetScalarParameterForCustomPrimitiveData +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetScalarParameterForCustomPrimitiveData(class FName ParameterName, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetScalarParameterForCustomPrimitiveData"); + + Params::PrimitiveComponent_SetScalarParameterForCustomPrimitiveData Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetScalarParameterForDefaultCustomPrimitiveData +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetScalarParameterForDefaultCustomPrimitiveData(class FName ParameterName, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetScalarParameterForDefaultCustomPrimitiveData"); + + Params::PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetSimulatePhysics +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bSimulate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetSimulatePhysics(bool bSimulate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetSimulatePhysics"); + + Params::PrimitiveComponent_SetSimulatePhysics Parms{}; + + Parms.bSimulate = bSimulate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetSingleSampleShadowFromStationaryLights +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewSingleSampleShadowFromStationaryLights (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetSingleSampleShadowFromStationaryLights(bool bNewSingleSampleShadowFromStationaryLights) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetSingleSampleShadowFromStationaryLights"); + + Params::PrimitiveComponent_SetSingleSampleShadowFromStationaryLights Parms{}; + + Parms.bNewSingleSampleShadowFromStationaryLights = bNewSingleSampleShadowFromStationaryLights; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetStaticWhenNotMoveable +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInStaticWhenNotMoveable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetStaticWhenNotMoveable(bool bInStaticWhenNotMoveable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetStaticWhenNotMoveable"); + + Params::PrimitiveComponent_SetStaticWhenNotMoveable Parms{}; + + Parms.bInStaticWhenNotMoveable = bInStaticWhenNotMoveable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetTranslucencySortDistanceOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewTranslucencySortDistanceOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetTranslucencySortDistanceOffset(float NewTranslucencySortDistanceOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetTranslucencySortDistanceOffset"); + + Params::PrimitiveComponent_SetTranslucencySortDistanceOffset Parms{}; + + Parms.NewTranslucencySortDistanceOffset = NewTranslucencySortDistanceOffset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetTranslucentSortPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewTranslucentSortPriority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetTranslucentSortPriority(int32 NewTranslucentSortPriority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetTranslucentSortPriority"); + + Params::PrimitiveComponent_SetTranslucentSortPriority Parms{}; + + Parms.NewTranslucentSortPriority = NewTranslucentSortPriority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetUpdateKinematicFromSimulation +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bUpdateKinematicFromSimulation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetUpdateKinematicFromSimulation(bool bUpdateKinematicFromSimulation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetUpdateKinematicFromSimulation"); + + Params::PrimitiveComponent_SetUpdateKinematicFromSimulation Parms{}; + + Parms.bUpdateKinematicFromSimulation = bUpdateKinematicFromSimulation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetUseCCD +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InUseCCD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetUseCCD(bool InUseCCD, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetUseCCD"); + + Params::PrimitiveComponent_SetUseCCD Parms{}; + + Parms.InUseCCD = InUseCCD; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetUseMACD +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InUseMACD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetUseMACD(bool InUseMACD, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetUseMACD"); + + Params::PrimitiveComponent_SetUseMACD Parms{}; + + Parms.InUseMACD = InUseMACD; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetVectorParameterForCustomPrimitiveData +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetVectorParameterForCustomPrimitiveData(class FName ParameterName, const struct FVector4& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetVectorParameterForCustomPrimitiveData"); + + Params::PrimitiveComponent_SetVectorParameterForCustomPrimitiveData Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetVectorParameterForDefaultCustomPrimitiveData +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetVectorParameterForDefaultCustomPrimitiveData(class FName ParameterName, const struct FVector4& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetVectorParameterForDefaultCustomPrimitiveData"); + + Params::PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetVisibleInRayTracing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewVisibleInRayTracing (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetVisibleInRayTracing(bool bNewVisibleInRayTracing) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetVisibleInRayTracing"); + + Params::PrimitiveComponent_SetVisibleInRayTracing Parms{}; + + Parms.bNewVisibleInRayTracing = bNewVisibleInRayTracing; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetVisibleInSceneCaptureOnly +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetVisibleInSceneCaptureOnly(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetVisibleInSceneCaptureOnly"); + + Params::PrimitiveComponent_SetVisibleInSceneCaptureOnly Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.SetWalkableSlopeOverride +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FWalkableSlopeOverride& NewOverride (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::SetWalkableSlopeOverride(const struct FWalkableSlopeOverride& NewOverride) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "SetWalkableSlopeOverride"); + + Params::PrimitiveComponent_SetWalkableSlopeOverride Parms{}; + + Parms.NewOverride = std::move(NewOverride); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.WakeAllRigidBodies +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UPrimitiveComponent::WakeAllRigidBodies() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "WakeAllRigidBodies"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.WakeRigidBody +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::WakeRigidBody(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "WakeRigidBody"); + + Params::PrimitiveComponent_WakeRigidBody Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PrimitiveComponent.AllowHLODLevelsExclusion +// (Final, Native, Private, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::AllowHLODLevelsExclusion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "AllowHLODLevelsExclusion"); + + Params::PrimitiveComponent_AllowHLODLevelsExclusion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.CanCharacterStepUp +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* Pawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::CanCharacterStepUp(class APawn* Pawn) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "CanCharacterStepUp"); + + Params::PrimitiveComponent_CanCharacterStepUp Parms{}; + + Parms.Pawn = Pawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetAngularDamping +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetAngularDamping() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetAngularDamping"); + + Params::PrimitiveComponent_GetAngularDamping Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetBodyInstanceAsyncPhysicsTickHandle +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bGetWelded (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBodyInstanceAsyncPhysicsTickHandleReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FBodyInstanceAsyncPhysicsTickHandle UPrimitiveComponent::GetBodyInstanceAsyncPhysicsTickHandle(class FName BoneName, bool bGetWelded, int32 Index_0) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetBodyInstanceAsyncPhysicsTickHandle"); + + Params::PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle Parms{}; + + Parms.BoneName = BoneName; + Parms.bGetWelded = bGetWelded; + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCenterOfMass +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetCenterOfMass(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCenterOfMass"); + + Params::PrimitiveComponent_GetCenterOfMass Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetClosestPointOnCollision +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Point (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutPointOnBody (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetClosestPointOnCollision(const struct FVector& Point, struct FVector* OutPointOnBody, class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetClosestPointOnCollision"); + + Params::PrimitiveComponent_GetClosestPointOnCollision Parms{}; + + Parms.Point = std::move(Point); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPointOnBody != nullptr) + *OutPointOnBody = std::move(Parms.OutPointOnBody); + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCollisionEnabled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ECollisionEnabled ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ECollisionEnabled UPrimitiveComponent::GetCollisionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCollisionEnabled"); + + Params::PrimitiveComponent_GetCollisionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCollisionObjectType +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ECollisionChannel ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ECollisionChannel UPrimitiveComponent::GetCollisionObjectType() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCollisionObjectType"); + + Params::PrimitiveComponent_GetCollisionObjectType Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCollisionProfileName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UPrimitiveComponent::GetCollisionProfileName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCollisionProfileName"); + + Params::PrimitiveComponent_GetCollisionProfileName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCollisionResponseToChannel +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ECollisionChannel Channel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionResponse ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ECollisionResponse UPrimitiveComponent::GetCollisionResponseToChannel(ECollisionChannel Channel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCollisionResponseToChannel"); + + Params::PrimitiveComponent_GetCollisionResponseToChannel Parms{}; + + Parms.Channel = Channel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCustomPrimitiveDataIndexForScalarParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPrimitiveComponent::GetCustomPrimitiveDataIndexForScalarParameter(class FName ParameterName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCustomPrimitiveDataIndexForScalarParameter"); + + Params::PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetCustomPrimitiveDataIndexForVectorParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPrimitiveComponent::GetCustomPrimitiveDataIndexForVectorParameter(class FName ParameterName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetCustomPrimitiveDataIndexForVectorParameter"); + + Params::PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetExcludeForSpecificHLODLevels +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UPrimitiveComponent::GetExcludeForSpecificHLODLevels() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetExcludeForSpecificHLODLevels"); + + Params::PrimitiveComponent_GetExcludeForSpecificHLODLevels Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetGenerateOverlapEvents +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::GetGenerateOverlapEvents() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetGenerateOverlapEvents"); + + Params::PrimitiveComponent_GetGenerateOverlapEvents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetIgnoreBoundsForEditorFocus +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::GetIgnoreBoundsForEditorFocus() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetIgnoreBoundsForEditorFocus"); + + Params::PrimitiveComponent_GetIgnoreBoundsForEditorFocus Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetInertiaTensor +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetInertiaTensor(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetInertiaTensor"); + + Params::PrimitiveComponent_GetInertiaTensor Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetLinearDamping +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetLinearDamping() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetLinearDamping"); + + Params::PrimitiveComponent_GetLinearDamping Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMass +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetMass() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMass"); + + Params::PrimitiveComponent_GetMass Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMassScale +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPrimitiveComponent::GetMassScale(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMassScale"); + + Params::PrimitiveComponent_GetMassScale Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaterial +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UPrimitiveComponent::GetMaterial(int32 ElementIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaterial"); + + Params::PrimitiveComponent_GetMaterial Parms{}; + + Parms.ElementIndex = ElementIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaterialByName +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName MaterialSlotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UPrimitiveComponent::GetMaterialByName(class FName MaterialSlotName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaterialByName"); + + Params::PrimitiveComponent_GetMaterialByName Parms{}; + + Parms.MaterialSlotName = MaterialSlotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaterialFromCollisionFaceIndex +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 FaceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* SectionIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UPrimitiveComponent::GetMaterialFromCollisionFaceIndex(int32 FaceIndex, int32* SectionIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaterialFromCollisionFaceIndex"); + + Params::PrimitiveComponent_GetMaterialFromCollisionFaceIndex Parms{}; + + Parms.FaceIndex = FaceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SectionIndex != nullptr) + *SectionIndex = Parms.SectionIndex; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaterialIndex +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName MaterialSlotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPrimitiveComponent::GetMaterialIndex(class FName MaterialSlotName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaterialIndex"); + + Params::PrimitiveComponent_GetMaterialIndex Parms{}; + + Parms.MaterialSlotName = MaterialSlotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetMaterialSlotNames +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UPrimitiveComponent::GetMaterialSlotNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetMaterialSlotNames"); + + Params::PrimitiveComponent_GetMaterialSlotNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetNumMaterials +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPrimitiveComponent::GetNumMaterials() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetNumMaterials"); + + Params::PrimitiveComponent_GetNumMaterials Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetOverlappingActors +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OverlappingActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TSubclassOf ClassFilter (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::GetOverlappingActors(TArray* OverlappingActors, TSubclassOf ClassFilter) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetOverlappingActors"); + + Params::PrimitiveComponent_GetOverlappingActors Parms{}; + + Parms.ClassFilter = ClassFilter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OverlappingActors != nullptr) + *OverlappingActors = std::move(Parms.OverlappingActors); +} + + +// Function Engine.PrimitiveComponent.GetOverlappingComponents +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OutOverlappingComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UPrimitiveComponent::GetOverlappingComponents(TArray* OutOverlappingComponents) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetOverlappingComponents"); + + Params::PrimitiveComponent_GetOverlappingComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutOverlappingComponents != nullptr) + *OutOverlappingComponents = std::move(Parms.OutOverlappingComponents); +} + + +// Function Engine.PrimitiveComponent.GetPhysicsAngularVelocityInDegrees +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetPhysicsAngularVelocityInDegrees(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetPhysicsAngularVelocityInDegrees"); + + Params::PrimitiveComponent_GetPhysicsAngularVelocityInDegrees Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetPhysicsAngularVelocityInRadians +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::GetPhysicsAngularVelocityInRadians(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetPhysicsAngularVelocityInRadians"); + + Params::PrimitiveComponent_GetPhysicsAngularVelocityInRadians Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetStaticWhenNotMoveable +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::GetStaticWhenNotMoveable() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetStaticWhenNotMoveable"); + + Params::PrimitiveComponent_GetStaticWhenNotMoveable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetUpdateKinematicFromSimulation +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::GetUpdateKinematicFromSimulation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetUpdateKinematicFromSimulation"); + + Params::PrimitiveComponent_GetUpdateKinematicFromSimulation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.GetWalkableSlopeOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FWalkableSlopeOverride ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +const struct FWalkableSlopeOverride UPrimitiveComponent::GetWalkableSlopeOverride() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "GetWalkableSlopeOverride"); + + Params::PrimitiveComponent_GetWalkableSlopeOverride Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IsExcludedFromHLODLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EHLODLevelExclusion HLODLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsExcludedFromHLODLevel(EHLODLevelExclusion HLODLevel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsExcludedFromHLODLevel"); + + Params::PrimitiveComponent_IsExcludedFromHLODLevel Parms{}; + + Parms.HLODLevel = HLODLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IsGravityEnabled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsGravityEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsGravityEnabled"); + + Params::PrimitiveComponent_IsGravityEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IsMaterialSlotNameValid +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName MaterialSlotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsMaterialSlotNameValid(class FName MaterialSlotName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsMaterialSlotNameValid"); + + Params::PrimitiveComponent_IsMaterialSlotNameValid Parms{}; + + Parms.MaterialSlotName = MaterialSlotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IsOverlappingActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* Other (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsOverlappingActor(const class AActor* Other) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsOverlappingActor"); + + Params::PrimitiveComponent_IsOverlappingActor Parms{}; + + Parms.Other = Other; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.IsOverlappingComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UPrimitiveComponent* OtherComp (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::IsOverlappingComponent(const class UPrimitiveComponent* OtherComp) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "IsOverlappingComponent"); + + Params::PrimitiveComponent_IsOverlappingComponent Parms{}; + + Parms.OtherComp = OtherComp; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_IsCollisionEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_IsCollisionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_IsCollisionEnabled"); + + Params::PrimitiveComponent_K2_IsCollisionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_IsPhysicsCollisionEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_IsPhysicsCollisionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_IsPhysicsCollisionEnabled"); + + Params::PrimitiveComponent_K2_IsPhysicsCollisionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.K2_IsQueryCollisionEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::K2_IsQueryCollisionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "K2_IsQueryCollisionEnabled"); + + Params::PrimitiveComponent_K2_IsQueryCollisionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.ScaleByMomentOfInertia +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& InputVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPrimitiveComponent::ScaleByMomentOfInertia(const struct FVector& InputVector, class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "ScaleByMomentOfInertia"); + + Params::PrimitiveComponent_ScaleByMomentOfInertia Parms{}; + + Parms.InputVector = std::move(InputVector); + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PrimitiveComponent.WasRecentlyRendered +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPrimitiveComponent::WasRecentlyRendered(float Tolerance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PrimitiveComponent", "WasRecentlyRendered"); + + Params::PrimitiveComponent_WasRecentlyRendered Parms{}; + + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TextRenderComponent.K2_SetText +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FText& Value (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UTextRenderComponent::K2_SetText(const class FText& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "K2_SetText"); + + Params::TextRenderComponent_K2_SetText Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetFont +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UFont* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetFont(class UFont* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetFont"); + + Params::TextRenderComponent_SetFont Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetHorizontalAlignment +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EHorizTextAligment Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetHorizontalAlignment(EHorizTextAligment Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetHorizontalAlignment"); + + Params::TextRenderComponent_SetHorizontalAlignment Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetHorizSpacingAdjust +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetHorizSpacingAdjust(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetHorizSpacingAdjust"); + + Params::TextRenderComponent_SetHorizSpacingAdjust Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetText +// (Final, RequiredAPI, Native, Public, HasOutParams) +// Parameters: +// const class FText& Value (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetText(const class FText& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetText"); + + Params::TextRenderComponent_SetText Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetTextMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetTextMaterial(class UMaterialInterface* Material) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetTextMaterial"); + + Params::TextRenderComponent_SetTextMaterial Parms{}; + + Parms.Material = Material; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetTextRenderColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetTextRenderColor(const struct FColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetTextRenderColor"); + + Params::TextRenderComponent_SetTextRenderColor Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetVerticalAlignment +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EVerticalTextAligment Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetVerticalAlignment(EVerticalTextAligment Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetVerticalAlignment"); + + Params::TextRenderComponent_SetVerticalAlignment Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetVertSpacingAdjust +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetVertSpacingAdjust(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetVertSpacingAdjust"); + + Params::TextRenderComponent_SetVertSpacingAdjust Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetWorldSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetWorldSize(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetWorldSize"); + + Params::TextRenderComponent_SetWorldSize Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetXScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetXScale(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetXScale"); + + Params::TextRenderComponent_SetXScale Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.SetYScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTextRenderComponent::SetYScale(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "SetYScale"); + + Params::TextRenderComponent_SetYScale Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TextRenderComponent.GetTextLocalSize +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UTextRenderComponent::GetTextLocalSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "GetTextLocalSize"); + + Params::TextRenderComponent_GetTextLocalSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TextRenderComponent.GetTextWorldSize +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UTextRenderComponent::GetTextWorldSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TextRenderComponent", "GetTextWorldSize"); + + Params::TextRenderComponent_GetTextWorldSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MeshComponent.PrestreamMeshLODs +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UMeshComponent::PrestreamMeshLODs(float Seconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "PrestreamMeshLODs"); + + Params::MeshComponent_PrestreamMeshLODs Parms{}; + + Parms.Seconds = Seconds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MeshComponent.PrestreamTextures +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPrioritizeCharacterTextures (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicTextureGroups (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::PrestreamTextures(float Seconds, bool bPrioritizeCharacterTextures, int32 CinematicTextureGroups) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "PrestreamTextures"); + + Params::MeshComponent_PrestreamTextures Parms{}; + + Parms.Seconds = Seconds; + Parms.bPrioritizeCharacterTextures = bPrioritizeCharacterTextures; + Parms.CinematicTextureGroups = CinematicTextureGroups; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.SetColorParameterValueOnMaterials +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName ParameterName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ParameterValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::SetColorParameterValueOnMaterials(const class FName ParameterName, const struct FLinearColor& ParameterValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "SetColorParameterValueOnMaterials"); + + Params::MeshComponent_SetColorParameterValueOnMaterials Parms{}; + + Parms.ParameterName = ParameterName; + Parms.ParameterValue = std::move(ParameterValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.SetOverlayMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewOverlayMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::SetOverlayMaterial(class UMaterialInterface* NewOverlayMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "SetOverlayMaterial"); + + Params::MeshComponent_SetOverlayMaterial Parms{}; + + Parms.NewOverlayMaterial = NewOverlayMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.SetOverlayMaterialMaxDrawDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InMaxDrawDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::SetOverlayMaterialMaxDrawDistance(float InMaxDrawDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "SetOverlayMaterialMaxDrawDistance"); + + Params::MeshComponent_SetOverlayMaterialMaxDrawDistance Parms{}; + + Parms.InMaxDrawDistance = InMaxDrawDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.SetScalarParameterValueOnMaterials +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class FName ParameterName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float ParameterValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::SetScalarParameterValueOnMaterials(const class FName ParameterName, const float ParameterValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "SetScalarParameterValueOnMaterials"); + + Params::MeshComponent_SetScalarParameterValueOnMaterials Parms{}; + + Parms.ParameterName = ParameterName; + Parms.ParameterValue = ParameterValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.SetVectorParameterValueOnMaterials +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName ParameterName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ParameterValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshComponent::SetVectorParameterValueOnMaterials(const class FName ParameterName, const struct FVector& ParameterValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "SetVectorParameterValueOnMaterials"); + + Params::MeshComponent_SetVectorParameterValueOnMaterials Parms{}; + + Parms.ParameterName = ParameterName; + Parms.ParameterValue = std::move(ParameterValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshComponent.GetMaterials +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UMeshComponent::GetMaterials() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "GetMaterials"); + + Params::MeshComponent_GetMaterials Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MeshComponent.GetOverlayMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UMeshComponent::GetOverlayMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "GetOverlayMaterial"); + + Params::MeshComponent_GetOverlayMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MeshComponent.GetOverlayMaterialMaxDrawDistance +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMeshComponent::GetOverlayMaterialMaxDrawDistance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MeshComponent", "GetOverlayMaterialMaxDrawDistance"); + + Params::MeshComponent_GetOverlayMaterialMaxDrawDistance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMeshComponent.GetInitialEvaluateWorldPositionOffset +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UStaticMeshComponent::GetInitialEvaluateWorldPositionOffset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "GetInitialEvaluateWorldPositionOffset"); + + Params::StaticMeshComponent_GetInitialEvaluateWorldPositionOffset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMeshComponent.OnRep_StaticMesh +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UStaticMesh* OldStaticMesh (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::OnRep_StaticMesh(class UStaticMesh* OldStaticMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "OnRep_StaticMesh"); + + Params::StaticMeshComponent_OnRep_StaticMesh Parms{}; + + Parms.OldStaticMesh = OldStaticMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetDistanceFieldSelfShadowBias +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetDistanceFieldSelfShadowBias(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetDistanceFieldSelfShadowBias"); + + Params::StaticMeshComponent_SetDistanceFieldSelfShadowBias Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetEvaluateWorldPositionOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetEvaluateWorldPositionOffset(bool NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetEvaluateWorldPositionOffset"); + + Params::StaticMeshComponent_SetEvaluateWorldPositionOffset Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetEvaluateWorldPositionOffsetInRayTracing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetEvaluateWorldPositionOffsetInRayTracing(bool NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetEvaluateWorldPositionOffsetInRayTracing"); + + Params::StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetForceDisableNanite +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInForceDisableNanite (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetForceDisableNanite(bool bInForceDisableNanite) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetForceDisableNanite"); + + Params::StaticMeshComponent_SetForceDisableNanite Parms{}; + + Parms.bInForceDisableNanite = bInForceDisableNanite; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetForcedLodModel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewForcedLodModel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetForcedLodModel(int32 NewForcedLodModel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetForcedLodModel"); + + Params::StaticMeshComponent_SetForcedLodModel Parms{}; + + Parms.NewForcedLodModel = NewForcedLodModel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetReverseCulling +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReverseCulling (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetReverseCulling(bool ReverseCulling) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetReverseCulling"); + + Params::StaticMeshComponent_SetReverseCulling Parms{}; + + Parms.ReverseCulling = ReverseCulling; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.SetStaticMesh +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UStaticMesh* NewMesh (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UStaticMeshComponent::SetStaticMesh(class UStaticMesh* NewMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetStaticMesh"); + + Params::StaticMeshComponent_SetStaticMesh Parms{}; + + Parms.NewMesh = NewMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMeshComponent.SetWorldPositionOffsetDisableDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::SetWorldPositionOffsetDisableDistance(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "SetWorldPositionOffsetDisableDistance"); + + Params::StaticMeshComponent_SetWorldPositionOffsetDisableDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.UpdateInitialEvaluateWorldPositionOffset +// (Final, Native, Public, BlueprintCallable) + +void UStaticMeshComponent::UpdateInitialEvaluateWorldPositionOffset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "UpdateInitialEvaluateWorldPositionOffset"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMeshComponent.GetLocalBounds +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* min_0 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* max_0 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMeshComponent::GetLocalBounds(struct FVector* min_0, struct FVector* max_0) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshComponent", "GetLocalBounds"); + + Params::StaticMeshComponent_GetLocalBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (min_0 != nullptr) + *min_0 = std::move(Parms.min_0); + + if (max_0 != nullptr) + *max_0 = std::move(Parms.max_0); +} + + +// Function Engine.AnimNotifyState.GetDefaultTriggerWeightThreshold +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotifyState::GetDefaultTriggerWeightThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState", "GetDefaultTriggerWeightThreshold"); + + Params::AnimNotifyState_GetDefaultTriggerWeightThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyState.GetNotifyName +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UAnimNotifyState::GetNotifyName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState", "GetNotifyName"); + + Params::AnimNotifyState_GetNotifyName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyState.Received_NotifyBegin +// (RequiredAPI, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TotalDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyState::Received_NotifyBegin(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, float TotalDuration, const struct FAnimNotifyEventReference& EventReference) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState", "Received_NotifyBegin"); + + Params::AnimNotifyState_Received_NotifyBegin Parms{}; + + Parms.MeshComp = MeshComp; + Parms.Animation = Animation; + Parms.TotalDuration = TotalDuration; + Parms.EventReference = std::move(EventReference); + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyState.Received_NotifyEnd +// (RequiredAPI, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyState::Received_NotifyEnd(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, const struct FAnimNotifyEventReference& EventReference) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState", "Received_NotifyEnd"); + + Params::AnimNotifyState_Received_NotifyEnd Parms{}; + + Parms.MeshComp = MeshComp; + Parms.Animation = Animation; + Parms.EventReference = std::move(EventReference); + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyState.Received_NotifyTick +// (RequiredAPI, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FrameDeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyState::Received_NotifyTick(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, float FrameDeltaTime, const struct FAnimNotifyEventReference& EventReference) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState", "Received_NotifyTick"); + + Params::AnimNotifyState_Received_NotifyTick Parms{}; + + Parms.MeshComp = MeshComp; + Parms.Animation = Animation; + Parms.FrameDeltaTime = FrameDeltaTime; + Parms.EventReference = std::move(EventReference); + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.AddInstance +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& InstanceTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInstancedStaticMeshComponent::AddInstance(const struct FTransform& InstanceTransform, bool bWorldSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "AddInstance"); + + Params::InstancedStaticMeshComponent_AddInstance Parms{}; + + Parms.InstanceTransform = std::move(InstanceTransform); + Parms.bWorldSpace = bWorldSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.AddInstances +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InstanceTransforms (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bShouldReturnIndices (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateNavigation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UInstancedStaticMeshComponent::AddInstances(const TArray& InstanceTransforms, bool bShouldReturnIndices, bool bWorldSpace, bool bUpdateNavigation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "AddInstances"); + + Params::InstancedStaticMeshComponent_AddInstances Parms{}; + + Parms.InstanceTransforms = std::move(InstanceTransforms); + Parms.bShouldReturnIndices = bShouldReturnIndices; + Parms.bWorldSpace = bWorldSpace; + Parms.bUpdateNavigation = bUpdateNavigation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.AddInstanceWorldSpace +// (Final, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FTransform& WorldTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInstancedStaticMeshComponent::AddInstanceWorldSpace(const struct FTransform& WorldTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "AddInstanceWorldSpace"); + + Params::InstancedStaticMeshComponent_AddInstanceWorldSpace Parms{}; + + Parms.WorldTransform = std::move(WorldTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.BatchUpdateInstancesTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 StartInstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumInstances (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& NewInstancesTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMarkRenderStateDirty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::BatchUpdateInstancesTransform(int32 StartInstanceIndex, int32 NumInstances, const struct FTransform& NewInstancesTransform, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "BatchUpdateInstancesTransform"); + + Params::InstancedStaticMeshComponent_BatchUpdateInstancesTransform Parms{}; + + Parms.StartInstanceIndex = StartInstanceIndex; + Parms.NumInstances = NumInstances; + Parms.NewInstancesTransform = std::move(NewInstancesTransform); + Parms.bWorldSpace = bWorldSpace; + Parms.bMarkRenderStateDirty = bMarkRenderStateDirty; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.BatchUpdateInstancesTransforms +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32 StartInstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& NewInstancesTransforms (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMarkRenderStateDirty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::BatchUpdateInstancesTransforms(int32 StartInstanceIndex, const TArray& NewInstancesTransforms, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "BatchUpdateInstancesTransforms"); + + Params::InstancedStaticMeshComponent_BatchUpdateInstancesTransforms Parms{}; + + Parms.StartInstanceIndex = StartInstanceIndex; + Parms.NewInstancesTransforms = std::move(NewInstancesTransforms); + Parms.bWorldSpace = bWorldSpace; + Parms.bMarkRenderStateDirty = bMarkRenderStateDirty; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.ClearInstances +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UInstancedStaticMeshComponent::ClearInstances() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "ClearInstances"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InstancedStaticMeshComponent.RemoveInstance +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::RemoveInstance(int32 InstanceIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "RemoveInstance"); + + Params::InstancedStaticMeshComponent_RemoveInstance Parms{}; + + Parms.InstanceIndex = InstanceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.RemoveInstances +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InstancesToRemove (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::RemoveInstances(const TArray& InstancesToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "RemoveInstances"); + + Params::InstancedStaticMeshComponent_RemoveInstances Parms{}; + + Parms.InstancesToRemove = std::move(InstancesToRemove); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.SetCullDistances +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 StartCullDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 EndCullDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInstancedStaticMeshComponent::SetCullDistances(int32 StartCullDistance, int32 EndCullDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "SetCullDistances"); + + Params::InstancedStaticMeshComponent_SetCullDistances Parms{}; + + Parms.StartCullDistance = StartCullDistance; + Parms.EndCullDistance = EndCullDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InstancedStaticMeshComponent.SetCustomDataValue +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CustomDataIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CustomDataValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMarkRenderStateDirty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::SetCustomDataValue(int32 InstanceIndex, int32 CustomDataIndex, float CustomDataValue, bool bMarkRenderStateDirty) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "SetCustomDataValue"); + + Params::InstancedStaticMeshComponent_SetCustomDataValue Parms{}; + + Parms.InstanceIndex = InstanceIndex; + Parms.CustomDataIndex = CustomDataIndex; + Parms.CustomDataValue = CustomDataValue; + Parms.bMarkRenderStateDirty = bMarkRenderStateDirty; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.SetLODDistanceScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InLODDistanceScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInstancedStaticMeshComponent::SetLODDistanceScale(float InLODDistanceScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "SetLODDistanceScale"); + + Params::InstancedStaticMeshComponent_SetLODDistanceScale Parms{}; + + Parms.InLODDistanceScale = InLODDistanceScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InstancedStaticMeshComponent.SetNumCustomDataFloats +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InNumCustomDataFloats (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInstancedStaticMeshComponent::SetNumCustomDataFloats(int32 InNumCustomDataFloats) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "SetNumCustomDataFloats"); + + Params::InstancedStaticMeshComponent_SetNumCustomDataFloats Parms{}; + + Parms.InNumCustomDataFloats = InNumCustomDataFloats; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InstancedStaticMeshComponent.UpdateInstanceTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 InstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& NewInstanceTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMarkRenderStateDirty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::UpdateInstanceTransform(int32 InstanceIndex, const struct FTransform& NewInstanceTransform, bool bWorldSpace, bool bMarkRenderStateDirty, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "UpdateInstanceTransform"); + + Params::InstancedStaticMeshComponent_UpdateInstanceTransform Parms{}; + + Parms.InstanceIndex = InstanceIndex; + Parms.NewInstanceTransform = std::move(NewInstanceTransform); + Parms.bWorldSpace = bWorldSpace; + Parms.bMarkRenderStateDirty = bMarkRenderStateDirty; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.GetCullDistances +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32* OutStartCullDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutEndCullDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInstancedStaticMeshComponent::GetCullDistances(int32* OutStartCullDistance, int32* OutEndCullDistance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetCullDistances"); + + Params::InstancedStaticMeshComponent_GetCullDistances Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutStartCullDistance != nullptr) + *OutStartCullDistance = Parms.OutStartCullDistance; + + if (OutEndCullDistance != nullptr) + *OutEndCullDistance = Parms.OutEndCullDistance; +} + + +// Function Engine.InstancedStaticMeshComponent.GetInstanceCount +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInstancedStaticMeshComponent::GetInstanceCount() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetInstanceCount"); + + Params::InstancedStaticMeshComponent_GetInstanceCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.GetInstancesOverlappingBox +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bBoxInWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UInstancedStaticMeshComponent::GetInstancesOverlappingBox(const struct FBox& Box, bool bBoxInWorldSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetInstancesOverlappingBox"); + + Params::InstancedStaticMeshComponent_GetInstancesOverlappingBox Parms{}; + + Parms.Box = std::move(Box); + Parms.bBoxInWorldSpace = bBoxInWorldSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.GetInstancesOverlappingSphere +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Center (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSphereInWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UInstancedStaticMeshComponent::GetInstancesOverlappingSphere(const struct FVector& Center, float Radius, bool bSphereInWorldSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetInstancesOverlappingSphere"); + + Params::InstancedStaticMeshComponent_GetInstancesOverlappingSphere Parms{}; + + Parms.Center = std::move(Center); + Parms.Radius = Radius; + Parms.bSphereInWorldSpace = bSphereInWorldSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.GetInstanceTransform +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 InstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform* OutInstanceTransform (Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWorldSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::GetInstanceTransform(int32 InstanceIndex, struct FTransform* OutInstanceTransform, bool bWorldSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetInstanceTransform"); + + Params::InstancedStaticMeshComponent_GetInstanceTransform Parms{}; + + Parms.InstanceIndex = InstanceIndex; + Parms.bWorldSpace = bWorldSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutInstanceTransform != nullptr) + *OutInstanceTransform = std::move(Parms.OutInstanceTransform); + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.GetLODDistanceScale +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UInstancedStaticMeshComponent::GetLODDistanceScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "GetLODDistanceScale"); + + Params::InstancedStaticMeshComponent_GetLODDistanceScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InstancedStaticMeshComponent.IsValidInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 InstanceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInstancedStaticMeshComponent::IsValidInstance(int32 InstanceIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InstancedStaticMeshComponent", "IsValidInstance"); + + Params::InstancedStaticMeshComponent_IsValidInstance Parms{}; + + Parms.InstanceIndex = InstanceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMeshActor.SetMobility +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EComponentMobility InMobility (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AStaticMeshActor::SetMobility(EComponentMobility InMobility) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMeshActor", "SetMobility"); + + Params::StaticMeshActor_SetMobility Parms{}; + + Parms.InMobility = InMobility; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintAsyncActionBase.Activate +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UBlueprintAsyncActionBase::Activate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BlueprintAsyncActionBase", "Activate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LODSyncComponent.GetLODSyncDebugText +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString ULODSyncComponent::GetLODSyncDebugText() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LODSyncComponent", "GetLODSyncDebugText"); + + Params::LODSyncComponent_GetLODSyncDebugText Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StreamableRenderAsset.SetForceMipLevelsToBeResident +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicLODGroupMask (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStreamableRenderAsset::SetForceMipLevelsToBeResident(float Seconds, int32 CinematicLODGroupMask) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StreamableRenderAsset", "SetForceMipLevelsToBeResident"); + + Params::StreamableRenderAsset_SetForceMipLevelsToBeResident Parms{}; + + Parms.Seconds = Seconds; + Parms.CinematicLODGroupMask = CinematicLODGroupMask; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataModel.GetAnimationSequence +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimSequence* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimSequence* IAnimationDataModel::GetAnimationSequence() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetAnimationSequence"); + + Params::AnimationDataModel_GetAnimationSequence Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneAnimationTracks +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArrayReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray IAnimationDataModel::GetBoneAnimationTracks() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneAnimationTracks"); + + Params::AnimationDataModel_GetBoneAnimationTracks Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneTrackByIndex +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 TrackIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBoneAnimationTrack ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const struct FBoneAnimationTrack IAnimationDataModel::GetBoneTrackByIndex(int32 TrackIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneTrackByIndex"); + + Params::AnimationDataModel_GetBoneTrackByIndex Parms{}; + + Parms.TrackIndex = TrackIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneTrackByName +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName TrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBoneAnimationTrack ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const struct FBoneAnimationTrack IAnimationDataModel::GetBoneTrackByName(class FName TrackName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneTrackByName"); + + Params::AnimationDataModel_GetBoneTrackByName Parms{}; + + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneTrackIndex +// (Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FBoneAnimationTrack& Track (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetBoneTrackIndex(const struct FBoneAnimationTrack& Track) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneTrackIndex"); + + Params::AnimationDataModel_GetBoneTrackIndex Parms{}; + + Parms.Track = std::move(Track); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneTrackIndexByName +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName TrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetBoneTrackIndexByName(class FName TrackName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneTrackIndexByName"); + + Params::AnimationDataModel_GetBoneTrackIndexByName Parms{}; + + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetBoneTrackNames +// (Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OutNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void IAnimationDataModel::GetBoneTrackNames(TArray* OutNames) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetBoneTrackNames"); + + Params::AnimationDataModel_GetBoneTrackNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutNames != nullptr) + *OutNames = std::move(Parms.OutNames); +} + + +// Function Engine.AnimationDataModel.GetFrameRate +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FFrameRate ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FFrameRate IAnimationDataModel::GetFrameRate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetFrameRate"); + + Params::AnimationDataModel_GetFrameRate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetNumberOfFloatCurves +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetNumberOfFloatCurves() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetNumberOfFloatCurves"); + + Params::AnimationDataModel_GetNumberOfFloatCurves Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetNumberOfFrames +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetNumberOfFrames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetNumberOfFrames"); + + Params::AnimationDataModel_GetNumberOfFrames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetNumberOfKeys +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetNumberOfKeys() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetNumberOfKeys"); + + Params::AnimationDataModel_GetNumberOfKeys Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetNumberOfTransformCurves +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetNumberOfTransformCurves() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetNumberOfTransformCurves"); + + Params::AnimationDataModel_GetNumberOfTransformCurves Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetNumBoneTracks +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataModel::GetNumBoneTracks() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetNumBoneTracks"); + + Params::AnimationDataModel_GetNumBoneTracks Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.GetPlayLength +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double IAnimationDataModel::GetPlayLength() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "GetPlayLength"); + + Params::AnimationDataModel_GetPlayLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.IsValidBoneTrackIndex +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 TrackIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataModel::IsValidBoneTrackIndex(int32 TrackIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "IsValidBoneTrackIndex"); + + Params::AnimationDataModel_IsValidBoneTrackIndex Parms{}; + + Parms.TrackIndex = TrackIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataModel.IsValidBoneTrackName +// (Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& TrackName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataModel::IsValidBoneTrackName(const class FName& TrackName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataModel", "IsValidBoneTrackName"); + + Params::AnimationDataModel_IsValidBoneTrackName Parms{}; + + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetBaseMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterial* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterial* UMaterialInterface::GetBaseMaterial() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetBaseMaterial"); + + Params::MaterialInterface_GetBaseMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.SetForceMipLevelsToBeResident +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool OverrideForceMiplevelsToBeResident (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceMiplevelsToBeResidentValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ForceDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicTextureGroups (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFastResponse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInterface::SetForceMipLevelsToBeResident(bool OverrideForceMiplevelsToBeResident, bool bForceMiplevelsToBeResidentValue, float ForceDuration, int32 CinematicTextureGroups, bool bFastResponse) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "SetForceMipLevelsToBeResident"); + + Params::MaterialInterface_SetForceMipLevelsToBeResident Parms{}; + + Parms.OverrideForceMiplevelsToBeResident = OverrideForceMiplevelsToBeResident; + Parms.bForceMiplevelsToBeResidentValue = bForceMiplevelsToBeResidentValue; + Parms.ForceDuration = ForceDuration; + Parms.CinematicTextureGroups = CinematicTextureGroups; + Parms.bFastResponse = bFastResponse; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInterface.GetBlendMode +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EBlendMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EBlendMode UMaterialInterface::GetBlendMode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetBlendMode"); + + Params::MaterialInterface_GetBlendMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetNaniteOverideMaterial +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UMaterialInterface::GetNaniteOverideMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetNaniteOverideMaterial"); + + Params::MaterialInterface_GetNaniteOverideMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetParameterInfo +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EMaterialParameterAssociation Association (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialFunctionInterface* LayerFunction (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMaterialParameterInfo ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FMaterialParameterInfo UMaterialInterface::GetParameterInfo(EMaterialParameterAssociation Association, class FName ParameterName, class UMaterialFunctionInterface* LayerFunction) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetParameterInfo"); + + Params::MaterialInterface_GetParameterInfo Parms{}; + + Parms.Association = Association; + Parms.ParameterName = ParameterName; + Parms.LayerFunction = LayerFunction; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetPhysicalMaterial +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPhysicalMaterial* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPhysicalMaterial* UMaterialInterface::GetPhysicalMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetPhysicalMaterial"); + + Params::MaterialInterface_GetPhysicalMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetPhysicalMaterialFromMap +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPhysicalMaterial* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPhysicalMaterial* UMaterialInterface::GetPhysicalMaterialFromMap(int32 Index_0) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetPhysicalMaterialFromMap"); + + Params::MaterialInterface_GetPhysicalMaterialFromMap Parms{}; + + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInterface.GetPhysicalMaterialMask +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPhysicalMaterialMask* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPhysicalMaterialMask* UMaterialInterface::GetPhysicalMaterialMask() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInterface", "GetPhysicalMaterialMask"); + + Params::MaterialInterface_GetPhysicalMaterialMask Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneCaptureComponent.ClearHiddenComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USceneCaptureComponent::ClearHiddenComponents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "ClearHiddenComponents"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.ClearShowOnlyComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USceneCaptureComponent::ClearShowOnlyComponents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "ClearShowOnlyComponents"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.HideActorComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* InActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bIncludeFromChildActors (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::HideActorComponents(class AActor* InActor, const bool bIncludeFromChildActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "HideActorComponents"); + + Params::SceneCaptureComponent_HideActorComponents Parms{}; + + Parms.InActor = InActor; + Parms.bIncludeFromChildActors = bIncludeFromChildActors; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.HideComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::HideComponent(class UPrimitiveComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "HideComponent"); + + Params::SceneCaptureComponent_HideComponent Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.RemoveShowOnlyActorComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* InActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bIncludeFromChildActors (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::RemoveShowOnlyActorComponents(class AActor* InActor, const bool bIncludeFromChildActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "RemoveShowOnlyActorComponents"); + + Params::SceneCaptureComponent_RemoveShowOnlyActorComponents Parms{}; + + Parms.InActor = InActor; + Parms.bIncludeFromChildActors = bIncludeFromChildActors; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.RemoveShowOnlyComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::RemoveShowOnlyComponent(class UPrimitiveComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "RemoveShowOnlyComponent"); + + Params::SceneCaptureComponent_RemoveShowOnlyComponent Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.SetCaptureSortPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewCaptureSortPriority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::SetCaptureSortPriority(int32 NewCaptureSortPriority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "SetCaptureSortPriority"); + + Params::SceneCaptureComponent_SetCaptureSortPriority Parms{}; + + Parms.NewCaptureSortPriority = NewCaptureSortPriority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.SetShowFlagSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&InShowFlagSettings (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::SetShowFlagSettings(const TArray& InShowFlagSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "SetShowFlagSettings"); + + Params::SceneCaptureComponent_SetShowFlagSettings Parms{}; + + Parms.InShowFlagSettings = std::move(InShowFlagSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.ShowOnlyActorComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* InActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bIncludeFromChildActors (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::ShowOnlyActorComponents(class AActor* InActor, const bool bIncludeFromChildActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "ShowOnlyActorComponents"); + + Params::SceneCaptureComponent_ShowOnlyActorComponents Parms{}; + + Parms.InActor = InActor; + Parms.bIncludeFromChildActors = bIncludeFromChildActors; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.ShowOnlyComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent::ShowOnlyComponent(class UPrimitiveComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "ShowOnlyComponent"); + + Params::SceneCaptureComponent_ShowOnlyComponent Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent.GetShowFlagSettings +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArrayReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray USceneCaptureComponent::GetShowFlagSettings() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent", "GetShowFlagSettings"); + + Params::SceneCaptureComponent_GetShowFlagSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.CancelLocalNotification +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& ActivationEvent (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPlatformLibrary::CancelLocalNotification(const class FString& ActivationEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "CancelLocalNotification"); + + Params::BlueprintPlatformLibrary_CancelLocalNotification Parms{}; + + Parms.ActivationEvent = std::move(ActivationEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintPlatformLibrary.CancelLocalNotificationById +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 NotificationId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPlatformLibrary::CancelLocalNotificationById(int32 NotificationId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "CancelLocalNotificationById"); + + Params::BlueprintPlatformLibrary_CancelLocalNotificationById Parms{}; + + Parms.NotificationId = NotificationId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintPlatformLibrary.ClearAllLocalNotifications +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UBlueprintPlatformLibrary::ClearAllLocalNotifications() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "ClearAllLocalNotifications"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintPlatformLibrary.GetAllowedDeviceOrientation +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// EScreenOrientation ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EScreenOrientation UBlueprintPlatformLibrary::GetAllowedDeviceOrientation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "GetAllowedDeviceOrientation"); + + Params::BlueprintPlatformLibrary_GetAllowedDeviceOrientation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.GetDeviceOrientation +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// EScreenOrientation ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EScreenOrientation UBlueprintPlatformLibrary::GetDeviceOrientation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "GetDeviceOrientation"); + + Params::BlueprintPlatformLibrary_GetDeviceOrientation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.GetLaunchNotification +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// bool* NotificationLaunchedApp (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* ActivationEvent (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* FireDate (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPlatformLibrary::GetLaunchNotification(bool* NotificationLaunchedApp, class FString* ActivationEvent, int32* FireDate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "GetLaunchNotification"); + + Params::BlueprintPlatformLibrary_GetLaunchNotification Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (NotificationLaunchedApp != nullptr) + *NotificationLaunchedApp = Parms.NotificationLaunchedApp; + + if (ActivationEvent != nullptr) + *ActivationEvent = std::move(Parms.ActivationEvent); + + if (FireDate != nullptr) + *FireDate = Parms.FireDate; +} + + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationAtTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FDateTime& FireDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool LocalTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FText& Title (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& Body (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& Action (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& ActivationEvent (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintPlatformLibrary::ScheduleLocalNotificationAtTime(const struct FDateTime& FireDateTime, bool LocalTime, const class FText& Title, const class FText& Body, const class FText& Action, const class FString& ActivationEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "ScheduleLocalNotificationAtTime"); + + Params::BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime Parms{}; + + Parms.FireDateTime = std::move(FireDateTime); + Parms.LocalTime = LocalTime; + Parms.Title = std::move(Title); + Parms.Body = std::move(Body); + Parms.Action = std::move(Action); + Parms.ActivationEvent = std::move(ActivationEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationBadgeAtTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FDateTime& FireDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool LocalTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& ActivationEvent (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintPlatformLibrary::ScheduleLocalNotificationBadgeAtTime(const struct FDateTime& FireDateTime, bool LocalTime, const class FString& ActivationEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "ScheduleLocalNotificationBadgeAtTime"); + + Params::BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime Parms{}; + + Parms.FireDateTime = std::move(FireDateTime); + Parms.LocalTime = LocalTime; + Parms.ActivationEvent = std::move(ActivationEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationBadgeFromNow +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 inSecondsFromNow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& ActivationEvent (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPlatformLibrary::ScheduleLocalNotificationBadgeFromNow(int32 inSecondsFromNow, const class FString& ActivationEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "ScheduleLocalNotificationBadgeFromNow"); + + Params::BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow Parms{}; + + Parms.inSecondsFromNow = inSecondsFromNow; + Parms.ActivationEvent = std::move(ActivationEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationFromNow +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32 inSecondsFromNow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FText& Title (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& Body (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& Action (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& ActivationEvent (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintPlatformLibrary::ScheduleLocalNotificationFromNow(int32 inSecondsFromNow, const class FText& Title, const class FText& Body, const class FText& Action, const class FString& ActivationEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "ScheduleLocalNotificationFromNow"); + + Params::BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow Parms{}; + + Parms.inSecondsFromNow = inSecondsFromNow; + Parms.Title = std::move(Title); + Parms.Body = std::move(Body); + Parms.Action = std::move(Action); + Parms.ActivationEvent = std::move(ActivationEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPlatformLibrary.SetAllowedDeviceOrientation +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// EScreenOrientation NewAllowedDeviceOrientation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPlatformLibrary::SetAllowedDeviceOrientation(EScreenOrientation NewAllowedDeviceOrientation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPlatformLibrary", "SetAllowedDeviceOrientation"); + + Params::BlueprintPlatformLibrary_SetAllowedDeviceOrientation Parms{}; + + Parms.NewAllowedDeviceOrientation = NewAllowedDeviceOrientation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetNodeHelperLibrary.BitIsMarked +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetNodeHelperLibrary::BitIsMarked(int32 Data, int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "BitIsMarked"); + + Params::KismetNodeHelperLibrary_BitIsMarked Parms{}; + + Parms.Data = Data; + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.ClearAllBits +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32* Data (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetNodeHelperLibrary::ClearAllBits(int32* Data) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "ClearAllBits"); + + Params::KismetNodeHelperLibrary_ClearAllBits Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Data != nullptr) + *Data = Parms.Data; +} + + +// Function Engine.KismetNodeHelperLibrary.ClearBit +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32* Data (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetNodeHelperLibrary::ClearBit(int32* Data, int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "ClearBit"); + + Params::KismetNodeHelperLibrary_ClearBit Parms{}; + + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Data != nullptr) + *Data = Parms.Data; +} + + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UEnum* Enum (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 EnumeratorValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UKismetNodeHelperLibrary::GetEnumeratorName(const class UEnum* Enum, uint8 EnumeratorValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetEnumeratorName"); + + Params::KismetNodeHelperLibrary_GetEnumeratorName Parms{}; + + Parms.Enum = Enum; + Parms.EnumeratorValue = EnumeratorValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorUserFriendlyName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UEnum* Enum (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 EnumeratorValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetNodeHelperLibrary::GetEnumeratorUserFriendlyName(const class UEnum* Enum, uint8 EnumeratorValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetEnumeratorUserFriendlyName"); + + Params::KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName Parms{}; + + Parms.Enum = Enum; + Parms.EnumeratorValue = EnumeratorValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorValueFromIndex +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UEnum* Enum (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 EnumeratorIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetNodeHelperLibrary::GetEnumeratorValueFromIndex(const class UEnum* Enum, uint8 EnumeratorIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetEnumeratorValueFromIndex"); + + Params::KismetNodeHelperLibrary_GetEnumeratorValueFromIndex Parms{}; + + Parms.Enum = Enum; + Parms.EnumeratorIndex = EnumeratorIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetFirstUnmarkedBit +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StartIdx (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumBits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetNodeHelperLibrary::GetFirstUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetFirstUnmarkedBit"); + + Params::KismetNodeHelperLibrary_GetFirstUnmarkedBit Parms{}; + + Parms.Data = Data; + Parms.StartIdx = StartIdx; + Parms.NumBits = NumBits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetRandomUnmarkedBit +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StartIdx (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumBits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetNodeHelperLibrary::GetRandomUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetRandomUnmarkedBit"); + + Params::KismetNodeHelperLibrary_GetRandomUnmarkedBit Parms{}; + + Parms.Data = Data; + Parms.StartIdx = StartIdx; + Parms.NumBits = NumBits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetUnmarkedBit +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StartIdx (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumBits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRandom (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetNodeHelperLibrary::GetUnmarkedBit(int32 Data, int32 StartIdx, int32 NumBits, bool bRandom) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetUnmarkedBit"); + + Params::KismetNodeHelperLibrary_GetUnmarkedBit Parms{}; + + Parms.Data = Data; + Parms.StartIdx = StartIdx; + Parms.NumBits = NumBits; + Parms.bRandom = bRandom; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.GetValidValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UEnum* Enum (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 EnumeratorValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetNodeHelperLibrary::GetValidValue(const class UEnum* Enum, uint8 EnumeratorValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "GetValidValue"); + + Params::KismetNodeHelperLibrary_GetValidValue Parms{}; + + Parms.Enum = Enum; + Parms.EnumeratorValue = EnumeratorValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.HasMarkedBit +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumBits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetNodeHelperLibrary::HasMarkedBit(int32 Data, int32 NumBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "HasMarkedBit"); + + Params::KismetNodeHelperLibrary_HasMarkedBit Parms{}; + + Parms.Data = Data; + Parms.NumBits = NumBits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.HasUnmarkedBit +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 Data (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumBits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetNodeHelperLibrary::HasUnmarkedBit(int32 Data, int32 NumBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "HasUnmarkedBit"); + + Params::KismetNodeHelperLibrary_HasUnmarkedBit Parms{}; + + Parms.Data = Data; + Parms.NumBits = NumBits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetNodeHelperLibrary.MarkBit +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32* Data (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetNodeHelperLibrary::MarkBit(int32* Data, int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetNodeHelperLibrary", "MarkBit"); + + Params::KismetNodeHelperLibrary_MarkBit Parms{}; + + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Data != nullptr) + *Data = Parms.Data; +} + + +// Function Engine.MaterialInstanceConstant.K2_GetScalarParameterValue +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMaterialInstanceConstant::K2_GetScalarParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceConstant", "K2_GetScalarParameterValue"); + + Params::MaterialInstanceConstant_K2_GetScalarParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceConstant.K2_GetTextureParameterValue +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture* UMaterialInstanceConstant::K2_GetTextureParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceConstant", "K2_GetTextureParameterValue"); + + Params::MaterialInstanceConstant_K2_GetTextureParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceConstant.K2_GetVectorParameterValue +// (Final, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UMaterialInstanceConstant::K2_GetVectorParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceConstant", "K2_GetVectorParameterValue"); + + Params::MaterialInstanceConstant_K2_GetVectorParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.ClearAllSkinWeightProfiles +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkinnedMeshComponent::ClearAllSkinWeightProfiles() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ClearAllSkinWeightProfiles"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.ClearSkinWeightOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::ClearSkinWeightOverride(int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ClearSkinWeightOverride"); + + Params::SkinnedMeshComponent_ClearSkinWeightOverride Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.ClearSkinWeightProfile +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ESkinWeightProfileLayer InLayer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::ClearSkinWeightProfile(ESkinWeightProfileLayer InLayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ClearSkinWeightProfile"); + + Params::SkinnedMeshComponent_ClearSkinWeightProfile Parms{}; + + Parms.InLayer = InLayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.ClearVertexColorOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::ClearVertexColorOverride(int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ClearVertexColorOverride"); + + Params::SkinnedMeshComponent_ClearVertexColorOverride Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.HideBoneByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EPhysBodyOp PhysBodyOption (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::HideBoneByName(class FName BoneName, EPhysBodyOp PhysBodyOption) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "HideBoneByName"); + + Params::SkinnedMeshComponent_HideBoneByName Parms{}; + + Parms.BoneName = BoneName; + Parms.PhysBodyOption = PhysBodyOption; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.IsBoneHiddenByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::IsBoneHiddenByName(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "IsBoneHiddenByName"); + + Params::SkinnedMeshComponent_IsBoneHiddenByName Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.IsMaterialSectionShown +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 MaterialID (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::IsMaterialSectionShown(int32 MaterialID, int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "IsMaterialSectionShown"); + + Params::SkinnedMeshComponent_IsMaterialSectionShown Parms{}; + + Parms.MaterialID = MaterialID; + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.OverrideMinLOD +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InNewMinLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::OverrideMinLOD(int32 InNewMinLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "OverrideMinLOD"); + + Params::SkinnedMeshComponent_OverrideMinLOD Parms{}; + + Parms.InNewMinLOD = InNewMinLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetAlwaysUseMeshDeformer +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bShouldAlwaysUseMeshDeformer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetAlwaysUseMeshDeformer(bool bShouldAlwaysUseMeshDeformer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetAlwaysUseMeshDeformer"); + + Params::SkinnedMeshComponent_SetAlwaysUseMeshDeformer Parms{}; + + Parms.bShouldAlwaysUseMeshDeformer = bShouldAlwaysUseMeshDeformer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetCapsuleIndirectShadowMinVisibility +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetCapsuleIndirectShadowMinVisibility(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetCapsuleIndirectShadowMinVisibility"); + + Params::SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetCastCapsuleDirectShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetCastCapsuleDirectShadow(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetCastCapsuleDirectShadow"); + + Params::SkinnedMeshComponent_SetCastCapsuleDirectShadow Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetCastCapsuleIndirectShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetCastCapsuleIndirectShadow(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetCastCapsuleIndirectShadow"); + + Params::SkinnedMeshComponent_SetCastCapsuleIndirectShadow Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetForcedLOD +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InNewForcedLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetForcedLOD(int32 InNewForcedLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetForcedLOD"); + + Params::SkinnedMeshComponent_SetForcedLOD Parms{}; + + Parms.InNewForcedLOD = InNewForcedLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetLeaderPoseComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkinnedMeshComponent* NewLeaderBoneComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceUpdate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInFollowerShouldTickPose (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetLeaderPoseComponent(class USkinnedMeshComponent* NewLeaderBoneComponent, bool bForceUpdate, bool bInFollowerShouldTickPose) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetLeaderPoseComponent"); + + Params::SkinnedMeshComponent_SetLeaderPoseComponent Parms{}; + + Parms.NewLeaderBoneComponent = NewLeaderBoneComponent; + Parms.bForceUpdate = bForceUpdate; + Parms.bInFollowerShouldTickPose = bInFollowerShouldTickPose; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetMeshDeformer +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMeshDeformer* InMeshDeformer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetMeshDeformer(class UMeshDeformer* InMeshDeformer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetMeshDeformer"); + + Params::SkinnedMeshComponent_SetMeshDeformer Parms{}; + + Parms.InMeshDeformer = InMeshDeformer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetMinLOD +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InNewMinLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetMinLOD(int32 InNewMinLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetMinLOD"); + + Params::SkinnedMeshComponent_SetMinLOD Parms{}; + + Parms.InNewMinLOD = InNewMinLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetPhysicsAsset +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPhysicsAsset* NewPhysicsAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceReInit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetPhysicsAsset(class UPhysicsAsset* NewPhysicsAsset, bool bForceReInit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetPhysicsAsset"); + + Params::SkinnedMeshComponent_SetPhysicsAsset Parms{}; + + Parms.NewPhysicsAsset = NewPhysicsAsset; + Parms.bForceReInit = bForceReInit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetRenderStatic +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetRenderStatic(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetRenderStatic"); + + Params::SkinnedMeshComponent_SetRenderStatic Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetSkinnedAssetAndUpdate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkinnedAsset* NewMesh (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bReinitPose (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetSkinnedAssetAndUpdate(class USkinnedAsset* NewMesh, bool bReinitPose) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetSkinnedAssetAndUpdate"); + + Params::SkinnedMeshComponent_SetSkinnedAssetAndUpdate Parms{}; + + Parms.NewMesh = NewMesh; + Parms.bReinitPose = bReinitPose; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetSkinWeightOverride +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray&SkinWeights (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetSkinWeightOverride(int32 LODIndex, const TArray& SkinWeights) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetSkinWeightOverride"); + + Params::SkinnedMeshComponent_SetSkinWeightOverride Parms{}; + + Parms.LODIndex = LODIndex; + Parms.SkinWeights = std::move(SkinWeights); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.SetSkinWeightProfile +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESkinWeightProfileLayer InLayer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::SetSkinWeightProfile(class FName InProfileName, ESkinWeightProfileLayer InLayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetSkinWeightProfile"); + + Params::SkinnedMeshComponent_SetSkinWeightProfile Parms{}; + + Parms.InProfileName = InProfileName; + Parms.InLayer = InLayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.SetVertexColorOverride_LinearColor +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& VertexColors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::SetVertexColorOverride_LinearColor(int32 LODIndex, const TArray& VertexColors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "SetVertexColorOverride_LinearColor"); + + Params::SkinnedMeshComponent_SetVertexColorOverride_LinearColor Parms{}; + + Parms.LODIndex = LODIndex; + Parms.VertexColors = std::move(VertexColors); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.ShowAllMaterialSections +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::ShowAllMaterialSections(int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ShowAllMaterialSections"); + + Params::SkinnedMeshComponent_ShowAllMaterialSections Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.ShowMaterialSection +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 MaterialID (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SectionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::ShowMaterialSection(int32 MaterialID, int32 SectionIndex, bool bShow, int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "ShowMaterialSection"); + + Params::SkinnedMeshComponent_ShowMaterialSection Parms{}; + + Parms.MaterialID = MaterialID; + Parms.SectionIndex = SectionIndex; + Parms.bShow = bShow; + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.TransformFromBoneSpace +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& InRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* OutPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::TransformFromBoneSpace(class FName BoneName, const struct FVector& InPosition, const struct FRotator& InRotation, struct FVector* OutPosition, struct FRotator* OutRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "TransformFromBoneSpace"); + + Params::SkinnedMeshComponent_TransformFromBoneSpace Parms{}; + + Parms.BoneName = BoneName; + Parms.InPosition = std::move(InPosition); + Parms.InRotation = std::move(InRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPosition != nullptr) + *OutPosition = std::move(Parms.OutPosition); + + if (OutRotation != nullptr) + *OutRotation = std::move(Parms.OutRotation); +} + + +// Function Engine.SkinnedMeshComponent.UnHideBoneByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::UnHideBoneByName(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "UnHideBoneByName"); + + Params::SkinnedMeshComponent_UnHideBoneByName Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.UnloadSkinWeightProfile +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::UnloadSkinWeightProfile(class FName InProfileName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "UnloadSkinWeightProfile"); + + Params::SkinnedMeshComponent_UnloadSkinWeightProfile Parms{}; + + Parms.InProfileName = InProfileName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.UnsetMeshDeformer +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkinnedMeshComponent::UnsetMeshDeformer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "UnsetMeshDeformer"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedMeshComponent.BoneIsChildOf +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParentBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::BoneIsChildOf(class FName BoneName, class FName ParentBoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "BoneIsChildOf"); + + Params::SkinnedMeshComponent_BoneIsChildOf Parms{}; + + Parms.BoneName = BoneName; + Parms.ParentBoneName = ParentBoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.FindClosestBone_K2 +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& TestLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoneLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float IgnoreScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRequirePhysicsAsset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkinnedMeshComponent::FindClosestBone_K2(const struct FVector& TestLocation, struct FVector* BoneLocation, float IgnoreScale, bool bRequirePhysicsAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "FindClosestBone_K2"); + + Params::SkinnedMeshComponent_FindClosestBone_K2 Parms{}; + + Parms.TestLocation = std::move(TestLocation); + Parms.IgnoreScale = IgnoreScale; + Parms.bRequirePhysicsAsset = bRequirePhysicsAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (BoneLocation != nullptr) + *BoneLocation = std::move(Parms.BoneLocation); + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetAlwaysUseMeshDeformer +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::GetAlwaysUseMeshDeformer() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetAlwaysUseMeshDeformer"); + + Params::SkinnedMeshComponent_GetAlwaysUseMeshDeformer Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetBoneIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkinnedMeshComponent::GetBoneIndex(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetBoneIndex"); + + Params::SkinnedMeshComponent_GetBoneIndex Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetBoneName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 BoneIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkinnedMeshComponent::GetBoneName(int32 BoneIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetBoneName"); + + Params::SkinnedMeshComponent_GetBoneName Parms{}; + + Parms.BoneIndex = BoneIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetBoneTransform +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERelativeTransformSpace TransformSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USkinnedMeshComponent::GetBoneTransform(class FName InBoneName, ERelativeTransformSpace TransformSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetBoneTransform"); + + Params::SkinnedMeshComponent_GetBoneTransform Parms{}; + + Parms.InBoneName = InBoneName; + Parms.TransformSpace = TransformSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetCurrentSkinWeightProfileLayerNames +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USkinnedMeshComponent::GetCurrentSkinWeightProfileLayerNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetCurrentSkinWeightProfileLayerNames"); + + Params::SkinnedMeshComponent_GetCurrentSkinWeightProfileLayerNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetCurrentSkinWeightProfileName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ESkinWeightProfileLayer InLayer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkinnedMeshComponent::GetCurrentSkinWeightProfileName(ESkinWeightProfileLayer InLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetCurrentSkinWeightProfileName"); + + Params::SkinnedMeshComponent_GetCurrentSkinWeightProfileName Parms{}; + + Parms.InLayer = InLayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetDeltaTransformFromRefPose +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BaseName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USkinnedMeshComponent::GetDeltaTransformFromRefPose(class FName BoneName, class FName BaseName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetDeltaTransformFromRefPose"); + + Params::SkinnedMeshComponent_GetDeltaTransformFromRefPose Parms{}; + + Parms.BoneName = BoneName; + Parms.BaseName = BaseName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetForcedLOD +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkinnedMeshComponent::GetForcedLOD() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetForcedLOD"); + + Params::SkinnedMeshComponent_GetForcedLOD Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetMeshDeformerInstance +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMeshDeformerInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMeshDeformerInstance* USkinnedMeshComponent::GetMeshDeformerInstance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetMeshDeformerInstance"); + + Params::SkinnedMeshComponent_GetMeshDeformerInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetNumBones +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkinnedMeshComponent::GetNumBones() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetNumBones"); + + Params::SkinnedMeshComponent_GetNumBones Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetNumLODs +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkinnedMeshComponent::GetNumLODs() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetNumLODs"); + + Params::SkinnedMeshComponent_GetNumLODs Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetParentBone +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkinnedMeshComponent::GetParentBone(class FName BoneName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetParentBone"); + + Params::SkinnedMeshComponent_GetParentBone Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetPredictedLODLevel +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkinnedMeshComponent::GetPredictedLODLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetPredictedLODLevel"); + + Params::SkinnedMeshComponent_GetPredictedLODLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetRefPosePosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 BoneIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USkinnedMeshComponent::GetRefPosePosition(int32 BoneIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetRefPosePosition"); + + Params::SkinnedMeshComponent_GetRefPosePosition Parms{}; + + Parms.BoneIndex = BoneIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetRefPoseTransform +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 BoneIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USkinnedMeshComponent::GetRefPoseTransform(int32 BoneIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetRefPoseTransform"); + + Params::SkinnedMeshComponent_GetRefPoseTransform Parms{}; + + Parms.BoneIndex = BoneIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetSkeletalMesh_DEPRECATED +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USkeletalMesh* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMesh* USkinnedMeshComponent::GetSkeletalMesh_DEPRECATED() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetSkeletalMesh_DEPRECATED"); + + Params::SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetSkinnedAsset +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USkinnedAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkinnedAsset* USkinnedMeshComponent::GetSkinnedAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetSkinnedAsset"); + + Params::SkinnedMeshComponent_GetSkinnedAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetSocketBoneName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkinnedMeshComponent::GetSocketBoneName(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetSocketBoneName"); + + Params::SkinnedMeshComponent_GetSocketBoneName Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.GetTwistAndSwingAngleOfDeltaRotationFromRefPose +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutTwistAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutSwingAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::GetTwistAndSwingAngleOfDeltaRotationFromRefPose(class FName BoneName, float* OutTwistAngle, float* OutSwingAngle) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "GetTwistAndSwingAngleOfDeltaRotationFromRefPose"); + + Params::SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTwistAngle != nullptr) + *OutTwistAngle = Parms.OutTwistAngle; + + if (OutSwingAngle != nullptr) + *OutSwingAngle = Parms.OutSwingAngle; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.IsUsingSkinWeightProfile +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkinnedMeshComponent::IsUsingSkinWeightProfile() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "IsUsingSkinWeightProfile"); + + Params::SkinnedMeshComponent_IsUsingSkinWeightProfile Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedMeshComponent.TransformToBoneSpace +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& InRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* OutPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void USkinnedMeshComponent::TransformToBoneSpace(class FName BoneName, const struct FVector& InPosition, const struct FRotator& InRotation, struct FVector* OutPosition, struct FRotator* OutRotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedMeshComponent", "TransformToBoneSpace"); + + Params::SkinnedMeshComponent_TransformToBoneSpace Parms{}; + + Parms.BoneName = BoneName; + Parms.InPosition = std::move(InPosition); + Parms.InRotation = std::move(InRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPosition != nullptr) + *OutPosition = std::move(Parms.OutPosition); + + if (OutRotation != nullptr) + *OutRotation = std::move(Parms.OutRotation); +} + + +// Function Engine.TimecodeProvider.FetchAndUpdate +// (Native, Public, BlueprintCallable) + +void UTimecodeProvider::FetchAndUpdate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "FetchAndUpdate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimecodeProvider.FetchTimecode +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FQualifiedFrameTime* OutFrameTime (Parm, OutParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTimecodeProvider::FetchTimecode(struct FQualifiedFrameTime* OutFrameTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "FetchTimecode"); + + Params::TimecodeProvider_FetchTimecode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutFrameTime != nullptr) + *OutFrameTime = std::move(Parms.OutFrameTime); + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetDelayedQualifiedFrameTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FQualifiedFrameTime ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FQualifiedFrameTime UTimecodeProvider::GetDelayedQualifiedFrameTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetDelayedQualifiedFrameTime"); + + Params::TimecodeProvider_GetDelayedQualifiedFrameTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetDelayedTimecode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTimecode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FTimecode UTimecodeProvider::GetDelayedTimecode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetDelayedTimecode"); + + Params::TimecodeProvider_GetDelayedTimecode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetFrameRate +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FFrameRate ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FFrameRate UTimecodeProvider::GetFrameRate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetFrameRate"); + + Params::TimecodeProvider_GetFrameRate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetQualifiedFrameTime +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FQualifiedFrameTime ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FQualifiedFrameTime UTimecodeProvider::GetQualifiedFrameTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetQualifiedFrameTime"); + + Params::TimecodeProvider_GetQualifiedFrameTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetSynchronizationState +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETimecodeProviderSynchronizationState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ETimecodeProviderSynchronizationState UTimecodeProvider::GetSynchronizationState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetSynchronizationState"); + + Params::TimecodeProvider_GetSynchronizationState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimecodeProvider.GetTimecode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTimecode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FTimecode UTimecodeProvider::GetTimecode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimecodeProvider", "GetTimecode"); + + Params::TimecodeProvider_GetTimecode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.AccumulateAllBodiesBelowPhysicsBlendWeight +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AddPhysicsBlendWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::AccumulateAllBodiesBelowPhysicsBlendWeight(const class FName& InBoneName, float AddPhysicsBlendWeight, bool bSkipCustomPhysicsType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "AccumulateAllBodiesBelowPhysicsBlendWeight"); + + Params::SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight Parms{}; + + Parms.InBoneName = InBoneName; + Parms.AddPhysicsBlendWeight = AddPhysicsBlendWeight; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.AddClothCollisionSource +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshComponent* InSourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPhysicsAsset* InSourcePhysicsAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::AddClothCollisionSource(class USkeletalMeshComponent* InSourceComponent, class UPhysicsAsset* InSourcePhysicsAsset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "AddClothCollisionSource"); + + Params::SkeletalMeshComponent_AddClothCollisionSource Parms{}; + + Parms.InSourceComponent = InSourceComponent; + Parms.InSourcePhysicsAsset = InSourcePhysicsAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.AddForceToAllBodiesBelow +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::AddForceToAllBodiesBelow(const struct FVector& Force, class FName BoneName, bool bAccelChange, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "AddForceToAllBodiesBelow"); + + Params::SkeletalMeshComponent_AddForceToAllBodiesBelow Parms{}; + + Parms.Force = std::move(Force); + Parms.BoneName = BoneName; + Parms.bAccelChange = bAccelChange; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.AddImpulseToAllBodiesBelow +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::AddImpulseToAllBodiesBelow(const struct FVector& Impulse, class FName BoneName, bool bVelChange, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "AddImpulseToAllBodiesBelow"); + + Params::SkeletalMeshComponent_AddImpulseToAllBodiesBelow Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.BoneName = BoneName; + Parms.bVelChange = bVelChange; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.AllowAnimCurveEvaluation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName NameOfCurve (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAllow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::AllowAnimCurveEvaluation(class FName NameOfCurve, bool bAllow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "AllowAnimCurveEvaluation"); + + Params::SkeletalMeshComponent_AllowAnimCurveEvaluation Parms{}; + + Parms.NameOfCurve = NameOfCurve; + Parms.bAllow = bAllow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.BindClothToLeaderPoseComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::BindClothToLeaderPoseComponent() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "BindClothToLeaderPoseComponent"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.BreakConstraint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::BreakConstraint(const struct FVector& Impulse, const struct FVector& HitLocation, class FName InBoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "BreakConstraint"); + + Params::SkeletalMeshComponent_BreakConstraint Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.HitLocation = std::move(HitLocation); + Parms.InBoneName = InBoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ClearMorphTargets +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ClearMorphTargets() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ClearMorphTargets"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.FindConstraintBoneName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ConstraintIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName USkeletalMeshComponent::FindConstraintBoneName(int32 ConstraintIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "FindConstraintBoneName"); + + Params::SkeletalMeshComponent_FindConstraintBoneName Parms{}; + + Parms.ConstraintIndex = ConstraintIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.ForceClothNextUpdateTeleport +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ForceClothNextUpdateTeleport() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ForceClothNextUpdateTeleport"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ForceClothNextUpdateTeleportAndReset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ForceClothNextUpdateTeleportAndReset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ForceClothNextUpdateTeleportAndReset"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.GetAnimClass +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* USkeletalMeshComponent::GetAnimClass() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAnimClass"); + + Params::SkeletalMeshComponent_GetAnimClass Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetBoneLinearVelocity +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USkeletalMeshComponent::GetBoneLinearVelocity(const class FName& InBoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetBoneLinearVelocity"); + + Params::SkeletalMeshComponent_GetBoneLinearVelocity Parms{}; + + Parms.InBoneName = InBoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetConstraintByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ConstraintName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludesTerminated (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FConstraintInstanceAccessor ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FConstraintInstanceAccessor USkeletalMeshComponent::GetConstraintByName(class FName ConstraintName, bool bIncludesTerminated) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetConstraintByName"); + + Params::SkeletalMeshComponent_GetConstraintByName Parms{}; + + Parms.ConstraintName = ConstraintName; + Parms.bIncludesTerminated = bIncludesTerminated; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetConstraints +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// bool bIncludesTerminated (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray*OutConstraints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::GetConstraints(bool bIncludesTerminated, TArray* OutConstraints) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetConstraints"); + + Params::SkeletalMeshComponent_GetConstraints Parms{}; + + Parms.bIncludesTerminated = bIncludesTerminated; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConstraints != nullptr) + *OutConstraints = std::move(Parms.OutConstraints); +} + + +// Function Engine.SkeletalMeshComponent.GetConstraintsFromBody +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FName BodyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bParentConstraints (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bChildConstraints (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludesTerminated (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray*OutConstraints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::GetConstraintsFromBody(class FName BodyName, bool bParentConstraints, bool bChildConstraints, bool bIncludesTerminated, TArray* OutConstraints) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetConstraintsFromBody"); + + Params::SkeletalMeshComponent_GetConstraintsFromBody Parms{}; + + Parms.BodyName = BodyName; + Parms.bParentConstraints = bParentConstraints; + Parms.bChildConstraints = bChildConstraints; + Parms.bIncludesTerminated = bIncludesTerminated; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConstraints != nullptr) + *OutConstraints = std::move(Parms.OutConstraints); +} + + +// Function Engine.SkeletalMeshComponent.GetCurrentJointAngles +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Swing1Angle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Swing2Angle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::GetCurrentJointAngles(class FName InBoneName, float* Swing1Angle, float* TwistAngle, float* Swing2Angle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetCurrentJointAngles"); + + Params::SkeletalMeshComponent_GetCurrentJointAngles Parms{}; + + Parms.InBoneName = InBoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Swing1Angle != nullptr) + *Swing1Angle = Parms.Swing1Angle; + + if (TwistAngle != nullptr) + *TwistAngle = Parms.TwistAngle; + + if (Swing2Angle != nullptr) + *Swing2Angle = Parms.Swing2Angle; +} + + +// Function Engine.SkeletalMeshComponent.GetFloatAttribute +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DefaultValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetFloatAttribute(const class FName& BoneName, const class FName& AttributeName, float DefaultValue, float* OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetFloatAttribute"); + + Params::SkeletalMeshComponent_GetFloatAttribute Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.DefaultValue = DefaultValue; + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = Parms.OutValue; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetFloatAttribute_Ref +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float& OutValue (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetFloatAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, float& OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetFloatAttribute_Ref"); + + Params::SkeletalMeshComponent_GetFloatAttribute_Ref Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.OutValue = OutValue; + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + OutValue = Parms.OutValue; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetIntegerAttribute +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 DefaultValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetIntegerAttribute(const class FName& BoneName, const class FName& AttributeName, int32 DefaultValue, int32* OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetIntegerAttribute"); + + Params::SkeletalMeshComponent_GetIntegerAttribute Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.DefaultValue = DefaultValue; + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = Parms.OutValue; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetIntegerAttribute_Ref +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32& OutValue (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetIntegerAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, int32& OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetIntegerAttribute_Ref"); + + Params::SkeletalMeshComponent_GetIntegerAttribute_Ref Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.OutValue = OutValue; + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + OutValue = Parms.OutValue; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetStringAttribute +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& DefaultValue (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutValue (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetStringAttribute(const class FName& BoneName, const class FName& AttributeName, const class FString& DefaultValue, class FString* OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetStringAttribute"); + + Params::SkeletalMeshComponent_GetStringAttribute Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.DefaultValue = std::move(DefaultValue); + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = std::move(Parms.OutValue); + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetStringAttribute_Ref +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString& OutValue (Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetStringAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, class FString& OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetStringAttribute_Ref"); + + Params::SkeletalMeshComponent_GetStringAttribute_Ref Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.OutValue = std::move(OutValue); + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + OutValue = std::move(Parms.OutValue); + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetTransformAttribute +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& DefaultValue (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform* OutValue (Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetTransformAttribute(const class FName& BoneName, const class FName& AttributeName, const struct FTransform& DefaultValue, struct FTransform* OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetTransformAttribute"); + + Params::SkeletalMeshComponent_GetTransformAttribute Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.DefaultValue = std::move(DefaultValue); + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = std::move(Parms.OutValue); + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetTransformAttribute_Ref +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& AttributeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform& OutValue (Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECustomBoneAttributeLookup LookupType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetTransformAttribute_Ref(const class FName& BoneName, const class FName& AttributeName, struct FTransform& OutValue, ECustomBoneAttributeLookup LookupType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetTransformAttribute_Ref"); + + Params::SkeletalMeshComponent_GetTransformAttribute_Ref Parms{}; + + Parms.BoneName = BoneName; + Parms.AttributeName = AttributeName; + Parms.OutValue = std::move(OutValue); + Parms.LookupType = LookupType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + OutValue = std::move(Parms.OutValue); + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.IsBodyGravityEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::IsBodyGravityEnabled(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "IsBodyGravityEnabled"); + + Params::SkeletalMeshComponent_IsBodyGravityEnabled Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.LinkAnimClassLayers +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::LinkAnimClassLayers(TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "LinkAnimClassLayers"); + + Params::SkeletalMeshComponent_LinkAnimClassLayers Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.LinkAnimGraphByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::LinkAnimGraphByTag(class FName InTag, TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "LinkAnimGraphByTag"); + + Params::SkeletalMeshComponent_LinkAnimGraphByTag Parms{}; + + Parms.InTag = InTag; + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.OverrideAnimationData +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimationAsset* InAnimToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsPlaying (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float position (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::OverrideAnimationData(class UAnimationAsset* InAnimToPlay, bool bIsLooping, bool bIsPlaying, float position, float PlayRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "OverrideAnimationData"); + + Params::SkeletalMeshComponent_OverrideAnimationData Parms{}; + + Parms.InAnimToPlay = InAnimToPlay; + Parms.bIsLooping = bIsLooping; + Parms.bIsPlaying = bIsPlaying; + Parms.position = position; + Parms.PlayRate = PlayRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::Play(bool bLooping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "Play"); + + Params::SkeletalMeshComponent_Play Parms{}; + + Parms.bLooping = bLooping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.PlayAnimation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimationAsset* NewAnimToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::PlayAnimation(class UAnimationAsset* NewAnimToPlay, bool bLooping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "PlayAnimation"); + + Params::SkeletalMeshComponent_PlayAnimation Parms{}; + + Parms.NewAnimToPlay = NewAnimToPlay; + Parms.bLooping = bLooping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.RecreateClothingActors +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::RecreateClothingActors() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "RecreateClothingActors"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.RemoveClothCollisionSource +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshComponent* InSourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPhysicsAsset* InSourcePhysicsAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::RemoveClothCollisionSource(class USkeletalMeshComponent* InSourceComponent, class UPhysicsAsset* InSourcePhysicsAsset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "RemoveClothCollisionSource"); + + Params::SkeletalMeshComponent_RemoveClothCollisionSource Parms{}; + + Parms.InSourceComponent = InSourceComponent; + Parms.InSourcePhysicsAsset = InSourcePhysicsAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.RemoveClothCollisionSources +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshComponent* InSourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::RemoveClothCollisionSources(class USkeletalMeshComponent* InSourceComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "RemoveClothCollisionSources"); + + Params::SkeletalMeshComponent_RemoveClothCollisionSources Parms{}; + + Parms.InSourceComponent = InSourceComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResetAllBodiesSimulatePhysics +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ResetAllBodiesSimulatePhysics() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResetAllBodiesSimulatePhysics"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResetAllowedAnimCurveEvaluation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ResetAllowedAnimCurveEvaluation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResetAllowedAnimCurveEvaluation"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResetAnimInstanceDynamics +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETeleportType InTeleportType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::ResetAnimInstanceDynamics(ETeleportType InTeleportType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResetAnimInstanceDynamics"); + + Params::SkeletalMeshComponent_ResetAnimInstanceDynamics Parms{}; + + Parms.InTeleportType = InTeleportType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResetClothCollisionSources +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ResetClothCollisionSources() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResetClothCollisionSources"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResetClothTeleportMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ResetClothTeleportMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResetClothTeleportMode"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ResumeClothingSimulation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ResumeClothingSimulation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ResumeClothingSimulation"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowLinearVelocity +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LinearVelocity (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesBelowLinearVelocity(const class FName& InBoneName, const struct FVector& LinearVelocity, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesBelowLinearVelocity"); + + Params::SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity Parms{}; + + Parms.InBoneName = InBoneName; + Parms.LinearVelocity = std::move(LinearVelocity); + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowPhysicsBlendWeight +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PhysicsBlendWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesBelowPhysicsBlendWeight(const class FName& InBoneName, float PhysicsBlendWeight, bool bSkipCustomPhysicsType, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesBelowPhysicsBlendWeight"); + + Params::SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight Parms{}; + + Parms.InBoneName = InBoneName; + Parms.PhysicsBlendWeight = PhysicsBlendWeight; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowPhysicsDisabled +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDisabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesBelowPhysicsDisabled(const class FName& InBoneName, bool bDisabled, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesBelowPhysicsDisabled"); + + Params::SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled Parms{}; + + Parms.InBoneName = InBoneName; + Parms.bDisabled = bDisabled; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowSimulatePhysics +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewSimulate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesBelowSimulatePhysics(const class FName& InBoneName, bool bNewSimulate, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesBelowSimulatePhysics"); + + Params::SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics Parms{}; + + Parms.InBoneName = InBoneName; + Parms.bNewSimulate = bNewSimulate; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesPhysicsBlendWeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float PhysicsBlendWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesPhysicsBlendWeight(float PhysicsBlendWeight, bool bSkipCustomPhysicsType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesPhysicsBlendWeight"); + + Params::SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight Parms{}; + + Parms.PhysicsBlendWeight = PhysicsBlendWeight; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllBodiesSimulatePhysics +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewSimulate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllBodiesSimulatePhysics(bool bNewSimulate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllBodiesSimulatePhysics"); + + Params::SkeletalMeshComponent_SetAllBodiesSimulatePhysics Parms{}; + + Parms.bNewSimulate = bNewSimulate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularDriveParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InSpring (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InForceLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllMotorsAngularDriveParams(float InSpring, float InDamping, float InForceLimit, bool bSkipCustomPhysicsType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllMotorsAngularDriveParams"); + + Params::SkeletalMeshComponent_SetAllMotorsAngularDriveParams Parms{}; + + Parms.InSpring = InSpring; + Parms.InDamping = InDamping; + Parms.InForceLimit = InForceLimit; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularPositionDrive +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllMotorsAngularPositionDrive(bool bEnableSwingDrive, bool bEnableTwistDrive, bool bSkipCustomPhysicsType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllMotorsAngularPositionDrive"); + + Params::SkeletalMeshComponent_SetAllMotorsAngularPositionDrive Parms{}; + + Parms.bEnableSwingDrive = bEnableSwingDrive; + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularVelocityDrive +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipCustomPhysicsType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllMotorsAngularVelocityDrive(bool bEnableSwingDrive, bool bEnableTwistDrive, bool bSkipCustomPhysicsType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllMotorsAngularVelocityDrive"); + + Params::SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive Parms{}; + + Parms.bEnableSwingDrive = bEnableSwingDrive; + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bSkipCustomPhysicsType = bSkipCustomPhysicsType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllowAnimCurveEvaluation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInAllow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllowAnimCurveEvaluation(bool bInAllow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllowAnimCurveEvaluation"); + + Params::SkeletalMeshComponent_SetAllowAnimCurveEvaluation Parms{}; + + Parms.bInAllow = bInAllow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllowClothActors +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInAllow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllowClothActors(bool bInAllow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllowClothActors"); + + Params::SkeletalMeshComponent_SetAllowClothActors Parms{}; + + Parms.bInAllow = bInAllow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllowedAnimCurvesEvaluation +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& List (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bAllow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllowedAnimCurvesEvaluation(const TArray& List, bool bAllow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllowedAnimCurvesEvaluation"); + + Params::SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation Parms{}; + + Parms.List = std::move(List); + Parms.bAllow = bAllow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAllowRigidBodyAnimNode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInAllow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bReinitAnim (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAllowRigidBodyAnimNode(bool bInAllow, bool bReinitAnim) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAllowRigidBodyAnimNode"); + + Params::SkeletalMeshComponent_SetAllowRigidBodyAnimNode Parms{}; + + Parms.bInAllow = bInAllow; + Parms.bReinitAnim = bReinitAnim; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAngularLimits +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing1LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing2LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAngularLimits(class FName InBoneName, float Swing1LimitAngle, float TwistLimitAngle, float Swing2LimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAngularLimits"); + + Params::SkeletalMeshComponent_SetAngularLimits Parms{}; + + Parms.InBoneName = InBoneName; + Parms.Swing1LimitAngle = Swing1LimitAngle; + Parms.TwistLimitAngle = TwistLimitAngle; + Parms.Swing2LimitAngle = Swing2LimitAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAnimation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimationAsset* NewAnimToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAnimation(class UAnimationAsset* NewAnimToPlay) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAnimation"); + + Params::SkeletalMeshComponent_SetAnimation Parms{}; + + Parms.NewAnimToPlay = NewAnimToPlay; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAnimationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EAnimationMode InAnimationMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceInitAnimScriptInstance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAnimationMode(EAnimationMode InAnimationMode, bool bForceInitAnimScriptInstance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAnimationMode"); + + Params::SkeletalMeshComponent_SetAnimationMode Parms{}; + + Parms.InAnimationMode = InAnimationMode; + Parms.bForceInitAnimScriptInstance = bForceInitAnimScriptInstance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetAnimInstanceClass +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UClass* NewClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetAnimInstanceClass(class UClass* NewClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetAnimInstanceClass"); + + Params::SkeletalMeshComponent_SetAnimInstanceClass Parms{}; + + Parms.NewClass = NewClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetBodyNotifyRigidBodyCollision +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewNotifyRigidBodyCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetBodyNotifyRigidBodyCollision(bool bNewNotifyRigidBodyCollision, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetBodyNotifyRigidBodyCollision"); + + Params::SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision Parms{}; + + Parms.bNewNotifyRigidBodyCollision = bNewNotifyRigidBodyCollision; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetBodySimulatePhysics +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InBoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSimulate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetBodySimulatePhysics(const class FName& InBoneName, bool bSimulate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetBodySimulatePhysics"); + + Params::SkeletalMeshComponent_SetBodySimulatePhysics Parms{}; + + Parms.InBoneName = InBoneName; + Parms.bSimulate = bSimulate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetClothMaxDistanceScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetClothMaxDistanceScale(float Scale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetClothMaxDistanceScale"); + + Params::SkeletalMeshComponent_SetClothMaxDistanceScale Parms{}; + + Parms.Scale = Scale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetConstraintProfile +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName JointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDefaultIfNotFound (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetConstraintProfile(class FName JointName, class FName ProfileName, bool bDefaultIfNotFound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetConstraintProfile"); + + Params::SkeletalMeshComponent_SetConstraintProfile Parms{}; + + Parms.JointName = JointName; + Parms.ProfileName = ProfileName; + Parms.bDefaultIfNotFound = bDefaultIfNotFound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetConstraintProfileForAll +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDefaultIfNotFound (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetConstraintProfileForAll(class FName ProfileName, bool bDefaultIfNotFound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetConstraintProfileForAll"); + + Params::SkeletalMeshComponent_SetConstraintProfileForAll Parms{}; + + Parms.ProfileName = ProfileName; + Parms.bDefaultIfNotFound = bDefaultIfNotFound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetDisableAnimCurves +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInDisableAnimCurves (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetDisableAnimCurves(bool bInDisableAnimCurves) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetDisableAnimCurves"); + + Params::SkeletalMeshComponent_SetDisableAnimCurves Parms{}; + + Parms.bInDisableAnimCurves = bInDisableAnimCurves; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetDisablePostProcessBlueprint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInDisablePostProcess (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetDisablePostProcessBlueprint(bool bInDisablePostProcess) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetDisablePostProcessBlueprint"); + + Params::SkeletalMeshComponent_SetDisablePostProcessBlueprint Parms{}; + + Parms.bInDisablePostProcess = bInDisablePostProcess; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetEnableBodyGravity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableGravity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetEnableBodyGravity(bool bEnableGravity, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetEnableBodyGravity"); + + Params::SkeletalMeshComponent_SetEnableBodyGravity Parms{}; + + Parms.bEnableGravity = bEnableGravity; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetEnableGravityOnAllBodiesBelow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableGravity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetEnableGravityOnAllBodiesBelow(bool bEnableGravity, class FName BoneName, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetEnableGravityOnAllBodiesBelow"); + + Params::SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow Parms{}; + + Parms.bEnableGravity = bEnableGravity; + Parms.BoneName = BoneName; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetEnablePhysicsBlending +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewBlendPhysics (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetEnablePhysicsBlending(bool bNewBlendPhysics) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetEnablePhysicsBlending"); + + Params::SkeletalMeshComponent_SetEnablePhysicsBlending Parms{}; + + Parms.bNewBlendPhysics = bNewBlendPhysics; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetMorphTarget +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName MorphTargetName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRemoveZeroWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetMorphTarget(class FName MorphTargetName, float Value, bool bRemoveZeroWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetMorphTarget"); + + Params::SkeletalMeshComponent_SetMorphTarget Parms{}; + + Parms.MorphTargetName = MorphTargetName; + Parms.Value = Value; + Parms.bRemoveZeroWeight = bRemoveZeroWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetNotifyRigidBodyCollisionBelow +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewNotifyRigidBodyCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetNotifyRigidBodyCollisionBelow(bool bNewNotifyRigidBodyCollision, class FName BoneName, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetNotifyRigidBodyCollisionBelow"); + + Params::SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow Parms{}; + + Parms.bNewNotifyRigidBodyCollision = bNewNotifyRigidBodyCollision; + Parms.BoneName = BoneName; + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetOverridePostProcessAnimBP +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InPostProcessAnimBlueprint (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReinitAnimInstances (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetOverridePostProcessAnimBP(TSubclassOf InPostProcessAnimBlueprint, bool ReinitAnimInstances) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetOverridePostProcessAnimBP"); + + Params::SkeletalMeshComponent_SetOverridePostProcessAnimBP Parms{}; + + Parms.InPostProcessAnimBlueprint = InPostProcessAnimBlueprint; + Parms.ReinitAnimInstances = ReinitAnimInstances; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetPhysicsBlendWeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float PhysicsBlendWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetPhysicsBlendWeight(float PhysicsBlendWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetPhysicsBlendWeight"); + + Params::SkeletalMeshComponent_SetPhysicsBlendWeight Parms{}; + + Parms.PhysicsBlendWeight = PhysicsBlendWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Rate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetPlayRate(float Rate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetPlayRate"); + + Params::SkeletalMeshComponent_SetPlayRate Parms{}; + + Parms.Rate = Rate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFireNotifies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetPosition(float InPos, bool bFireNotifies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetPosition"); + + Params::SkeletalMeshComponent_SetPosition Parms{}; + + Parms.InPos = InPos; + Parms.bFireNotifies = bFireNotifies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetSkeletalMeshAsset +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMesh* NewMesh (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetSkeletalMeshAsset(class USkeletalMesh* NewMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetSkeletalMeshAsset"); + + Params::SkeletalMeshComponent_SetSkeletalMeshAsset Parms{}; + + Parms.NewMesh = NewMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetTeleportDistanceThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Threshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetTeleportDistanceThreshold(float Threshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetTeleportDistanceThreshold"); + + Params::SkeletalMeshComponent_SetTeleportDistanceThreshold Parms{}; + + Parms.Threshold = Threshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetTeleportRotationThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Threshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetTeleportRotationThreshold(float Threshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetTeleportRotationThreshold"); + + Params::SkeletalMeshComponent_SetTeleportRotationThreshold Parms{}; + + Parms.Threshold = Threshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetUpdateAnimationInEditor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const bool NewUpdateState (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetUpdateAnimationInEditor(const bool NewUpdateState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetUpdateAnimationInEditor"); + + Params::SkeletalMeshComponent_SetUpdateAnimationInEditor Parms{}; + + Parms.NewUpdateState = NewUpdateState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SetUpdateClothInEditor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const bool NewUpdateState (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SetUpdateClothInEditor(const bool NewUpdateState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SetUpdateClothInEditor"); + + Params::SkeletalMeshComponent_SetUpdateClothInEditor Parms{}; + + Parms.NewUpdateState = NewUpdateState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SnapshotPose +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FPoseSnapshot& Snapshot (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::SnapshotPose(struct FPoseSnapshot& Snapshot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SnapshotPose"); + + Params::SkeletalMeshComponent_SnapshotPose Parms{}; + + Parms.Snapshot = std::move(Snapshot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Snapshot = std::move(Parms.Snapshot); +} + + +// Function Engine.SkeletalMeshComponent.Stop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.SuspendClothingSimulation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::SuspendClothingSimulation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "SuspendClothingSimulation"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.TermBodiesBelow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParentBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::TermBodiesBelow(class FName ParentBoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "TermBodiesBelow"); + + Params::SkeletalMeshComponent_TermBodiesBelow Parms{}; + + Parms.ParentBoneName = ParentBoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.ToggleDisablePostProcessBlueprint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkeletalMeshComponent::ToggleDisablePostProcessBlueprint() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "ToggleDisablePostProcessBlueprint"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.UnbindClothFromLeaderPoseComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bRestoreSimulationSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::UnbindClothFromLeaderPoseComponent(bool bRestoreSimulationSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "UnbindClothFromLeaderPoseComponent"); + + Params::SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent Parms{}; + + Parms.bRestoreSimulationSpace = bRestoreSimulationSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.UnlinkAnimClassLayers +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::UnlinkAnimClassLayers(TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "UnlinkAnimClassLayers"); + + Params::SkeletalMeshComponent_UnlinkAnimClassLayers Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshComponent.GetAllowClothActors +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetAllowClothActors() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAllowClothActors"); + + Params::SkeletalMeshComponent_GetAllowClothActors Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetAllowedAnimCurveEvaluate +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetAllowedAnimCurveEvaluate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAllowedAnimCurveEvaluate"); + + Params::SkeletalMeshComponent_GetAllowedAnimCurveEvaluate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetAllowRigidBodyAnimNode +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetAllowRigidBodyAnimNode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAllowRigidBodyAnimNode"); + + Params::SkeletalMeshComponent_GetAllowRigidBodyAnimNode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetAnimationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EAnimationMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EAnimationMode USkeletalMeshComponent::GetAnimationMode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAnimationMode"); + + Params::SkeletalMeshComponent_GetAnimationMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetAnimInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* USkeletalMeshComponent::GetAnimInstance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetAnimInstance"); + + Params::SkeletalMeshComponent_GetAnimInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetBoneMass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScaleMass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetBoneMass(class FName BoneName, bool bScaleMass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetBoneMass"); + + Params::SkeletalMeshComponent_GetBoneMass Parms{}; + + Parms.BoneName = BoneName; + Parms.bScaleMass = bScaleMass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetClothingSimulationInteractor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UClothingSimulationInteractor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClothingSimulationInteractor* USkeletalMeshComponent::GetClothingSimulationInteractor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetClothingSimulationInteractor"); + + Params::SkeletalMeshComponent_GetClothingSimulationInteractor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetClothMaxDistanceScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetClothMaxDistanceScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetClothMaxDistanceScale"); + + Params::SkeletalMeshComponent_GetClothMaxDistanceScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetDisableAnimCurves +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetDisableAnimCurves() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetDisableAnimCurves"); + + Params::SkeletalMeshComponent_GetDisableAnimCurves Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetDisablePostProcessBlueprint +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::GetDisablePostProcessBlueprint() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetDisablePostProcessBlueprint"); + + Params::SkeletalMeshComponent_GetDisablePostProcessBlueprint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimGraphInstanceByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* USkeletalMeshComponent::GetLinkedAnimGraphInstanceByTag(class FName InTag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetLinkedAnimGraphInstanceByTag"); + + Params::SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag Parms{}; + + Parms.InTag = InTag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimGraphInstancesByTag +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutLinkedInstances (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void USkeletalMeshComponent::GetLinkedAnimGraphInstancesByTag(class FName InTag, TArray* OutLinkedInstances) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetLinkedAnimGraphInstancesByTag"); + + Params::SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag Parms{}; + + Parms.InTag = InTag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLinkedInstances != nullptr) + *OutLinkedInstances = std::move(Parms.OutLinkedInstances); +} + + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimLayerInstanceByClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* USkeletalMeshComponent::GetLinkedAnimLayerInstanceByClass(TSubclassOf InClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetLinkedAnimLayerInstanceByClass"); + + Params::SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimLayerInstanceByGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* USkeletalMeshComponent::GetLinkedAnimLayerInstanceByGroup(class FName InGroup) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetLinkedAnimLayerInstanceByGroup"); + + Params::SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup Parms{}; + + Parms.InGroup = InGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetMorphTarget +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName MorphTargetName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetMorphTarget(class FName MorphTargetName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetMorphTarget"); + + Params::SkeletalMeshComponent_GetMorphTarget Parms{}; + + Parms.MorphTargetName = MorphTargetName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetPlayRate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetPlayRate"); + + Params::SkeletalMeshComponent_GetPlayRate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetPosition() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetPosition"); + + Params::SkeletalMeshComponent_GetPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetPostProcessInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* USkeletalMeshComponent::GetPostProcessInstance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetPostProcessInstance"); + + Params::SkeletalMeshComponent_GetPostProcessInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetSkeletalCenterOfMass +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USkeletalMeshComponent::GetSkeletalCenterOfMass() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetSkeletalCenterOfMass"); + + Params::SkeletalMeshComponent_GetSkeletalCenterOfMass Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetSkeletalMeshAsset +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USkeletalMesh* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMesh* USkeletalMeshComponent::GetSkeletalMeshAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetSkeletalMeshAsset"); + + Params::SkeletalMeshComponent_GetSkeletalMeshAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetTeleportDistanceThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetTeleportDistanceThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetTeleportDistanceThreshold"); + + Params::SkeletalMeshComponent_GetTeleportDistanceThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.GetTeleportRotationThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMeshComponent::GetTeleportRotationThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "GetTeleportRotationThreshold"); + + Params::SkeletalMeshComponent_GetTeleportRotationThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.HasValidAnimationInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::HasValidAnimationInstance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "HasValidAnimationInstance"); + + Params::SkeletalMeshComponent_HasValidAnimationInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.IsClothingSimulationSuspended +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::IsClothingSimulationSuspended() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "IsClothingSimulationSuspended"); + + Params::SkeletalMeshComponent_IsClothingSimulationSuspended Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.IsPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::IsPlaying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "IsPlaying"); + + Params::SkeletalMeshComponent_IsPlaying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshComponent.K2_GetClosestPointOnPhysicsAsset +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* ClosestWorldPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Normal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Distance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMeshComponent::K2_GetClosestPointOnPhysicsAsset(const struct FVector& WorldPosition, struct FVector* ClosestWorldPosition, struct FVector* Normal, class FName* BoneName, float* Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshComponent", "K2_GetClosestPointOnPhysicsAsset"); + + Params::SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset Parms{}; + + Parms.WorldPosition = std::move(WorldPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ClosestWorldPosition != nullptr) + *ClosestWorldPosition = std::move(Parms.ClosestWorldPosition); + + if (Normal != nullptr) + *Normal = std::move(Parms.Normal); + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (Distance != nullptr) + *Distance = Parms.Distance; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundSubmixWidgetInterface.OnConstructed +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class USoundSubmixBase* SoundSubmix (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ISoundSubmixWidgetInterface::OnConstructed(class USoundSubmixBase* SoundSubmix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("SoundSubmixWidgetInterface", "OnConstructed"); + + Params::SoundSubmixWidgetInterface_OnConstructed Parms{}; + + Parms.SoundSubmix = SoundSubmix; + + AsUObject()->ProcessEvent(Func, &Parms); +} + + +// Function Engine.AnimNotify.GetDefaultTriggerWeightThreshold +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotify::GetDefaultTriggerWeightThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotify", "GetDefaultTriggerWeightThreshold"); + + Params::AnimNotify_GetDefaultTriggerWeightThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotify.GetNotifyName +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UAnimNotify::GetNotifyName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotify", "GetNotifyName"); + + Params::AnimNotify_GetNotifyName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotify.Received_Notify +// (RequiredAPI, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotify::Received_Notify(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation, const struct FAnimNotifyEventReference& EventReference) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotify", "Received_Notify"); + + Params::AnimNotify_Received_Notify Parms{}; + + Parms.MeshComp = MeshComp; + Parms.Animation = Animation; + Parms.EventReference = std::move(EventReference); + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.BlueprintBeginPlay +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UAnimInstance::BlueprintBeginPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintBeginPlay"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.AnimInstance.BlueprintInitializeAnimation +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UAnimInstance::BlueprintInitializeAnimation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintInitializeAnimation"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.AnimInstance.BlueprintLinkedAnimationLayersInitialized +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UAnimInstance::BlueprintLinkedAnimationLayersInitialized() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintLinkedAnimationLayersInitialized"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.AnimInstance.BlueprintPostEvaluateAnimation +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UAnimInstance::BlueprintPostEvaluateAnimation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintPostEvaluateAnimation"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.AnimInstance.BlueprintThreadSafeUpdateAnimation +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::BlueprintThreadSafeUpdateAnimation(float DeltaTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintThreadSafeUpdateAnimation"); + + Params::AnimInstance_BlueprintThreadSafeUpdateAnimation Parms{}; + + Parms.DeltaTime = DeltaTime; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.AnimInstance.BlueprintUpdateAnimation +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaTimeX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::BlueprintUpdateAnimation(float DeltaTimeX) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "BlueprintUpdateAnimation"); + + Params::AnimInstance_BlueprintUpdateAnimation Parms{}; + + Parms.DeltaTimeX = DeltaTimeX; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.AnimInstance.ClearAllTransitionEvents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimInstance::ClearAllTransitionEvents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "ClearAllTransitionEvents"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.ClearMorphTargets +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimInstance::ClearMorphTargets() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "ClearMorphTargets"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.ClearTransitionEvents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class FName EventName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::ClearTransitionEvents(const class FName EventName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "ClearTransitionEvents"); + + Params::AnimInstance_ClearTransitionEvents Parms{}; + + Parms.EventName = EventName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.GetCurrentStateName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UAnimInstance::GetCurrentStateName(int32 MachineIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetCurrentStateName"); + + Params::AnimInstance_GetCurrentStateName Parms{}; + + Parms.MachineIndex = MachineIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetCurveValueWithDefault +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName CurveName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DefaultValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::GetCurveValueWithDefault(class FName CurveName, float DefaultValue, float* OutValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetCurveValueWithDefault"); + + Params::AnimInstance_GetCurveValueWithDefault Parms{}; + + Parms.CurveName = CurveName; + Parms.DefaultValue = DefaultValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = Parms.OutValue; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceAssetPlayerLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 AssetPlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceAssetPlayerLength(int32 AssetPlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceAssetPlayerLength"); + + Params::AnimInstance_GetInstanceAssetPlayerLength Parms{}; + + Parms.AssetPlayerIndex = AssetPlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 AssetPlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceAssetPlayerTime(int32 AssetPlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceAssetPlayerTime"); + + Params::AnimInstance_GetInstanceAssetPlayerTime Parms{}; + + Parms.AssetPlayerIndex = AssetPlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 AssetPlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceAssetPlayerTimeFraction(int32 AssetPlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceAssetPlayerTimeFraction"); + + Params::AnimInstance_GetInstanceAssetPlayerTimeFraction Parms{}; + + Parms.AssetPlayerIndex = AssetPlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFromEnd +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 AssetPlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceAssetPlayerTimeFromEnd(int32 AssetPlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceAssetPlayerTimeFromEnd"); + + Params::AnimInstance_GetInstanceAssetPlayerTimeFromEnd Parms{}; + + Parms.AssetPlayerIndex = AssetPlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFromEndFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 AssetPlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceAssetPlayerTimeFromEndFraction(int32 AssetPlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceAssetPlayerTimeFromEndFraction"); + + Params::AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction Parms{}; + + Parms.AssetPlayerIndex = AssetPlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceCurrentStateElapsedTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceCurrentStateElapsedTime(int32 MachineIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceCurrentStateElapsedTime"); + + Params::AnimInstance_GetInstanceCurrentStateElapsedTime Parms{}; + + Parms.MachineIndex = MachineIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceMachineWeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceMachineWeight(int32 MachineIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceMachineWeight"); + + Params::AnimInstance_GetInstanceMachineWeight Parms{}; + + Parms.MachineIndex = MachineIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceStateWeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceStateWeight(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceStateWeight"); + + Params::AnimInstance_GetInstanceStateWeight Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceTransitionCrossfadeDuration +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TransitionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceTransitionCrossfadeDuration(int32 MachineIndex, int32 TransitionIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceTransitionCrossfadeDuration"); + + Params::AnimInstance_GetInstanceTransitionCrossfadeDuration Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.TransitionIndex = TransitionIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceTransitionTimeElapsed +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TransitionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceTransitionTimeElapsed(int32 MachineIndex, int32 TransitionIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceTransitionTimeElapsed"); + + Params::AnimInstance_GetInstanceTransitionTimeElapsed Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.TransitionIndex = TransitionIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetInstanceTransitionTimeElapsedFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TransitionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetInstanceTransitionTimeElapsedFraction(int32 MachineIndex, int32 TransitionIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetInstanceTransitionTimeElapsedFraction"); + + Params::AnimInstance_GetInstanceTransitionTimeElapsedFraction Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.TransitionIndex = TransitionIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetRelevantAnimLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetRelevantAnimLength(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetRelevantAnimLength"); + + Params::AnimInstance_GetRelevantAnimLength Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetRelevantAnimTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetRelevantAnimTime(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetRelevantAnimTime"); + + Params::AnimInstance_GetRelevantAnimTime Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetRelevantAnimTimeFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetRelevantAnimTimeFraction(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetRelevantAnimTimeFraction"); + + Params::AnimInstance_GetRelevantAnimTimeFraction Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetRelevantAnimTimeRemaining +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetRelevantAnimTimeRemaining(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetRelevantAnimTimeRemaining"); + + Params::AnimInstance_GetRelevantAnimTimeRemaining Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetRelevantAnimTimeRemainingFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetRelevantAnimTimeRemainingFraction(int32 MachineIndex, int32 StateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetRelevantAnimTimeRemainingFraction"); + + Params::AnimInstance_GetRelevantAnimTimeRemainingFraction Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.LinkAnimClassLayers +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::LinkAnimClassLayers(TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "LinkAnimClassLayers"); + + Params::AnimInstance_LinkAnimClassLayers Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.LinkAnimGraphByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::LinkAnimGraphByTag(class FName InTag, TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "LinkAnimGraphByTag"); + + Params::AnimInstance_LinkAnimGraphByTag Parms{}; + + Parms.InTag = InTag; + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.LockAIResources +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// bool bLockMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool LockAILogic (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::LockAIResources(bool bLockMovement, bool LockAILogic) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "LockAIResources"); + + Params::AnimInstance_LockAIResources Parms{}; + + Parms.bLockMovement = bLockMovement; + Parms.LockAILogic = LockAILogic; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_JumpToSection +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName SectionName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_JumpToSection(class FName SectionName, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_JumpToSection"); + + Params::AnimInstance_Montage_JumpToSection Parms{}; + + Parms.SectionName = SectionName; + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_JumpToSectionsEnd +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName SectionName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_JumpToSectionsEnd(class FName SectionName, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_JumpToSectionsEnd"); + + Params::AnimInstance_Montage_JumpToSectionsEnd Parms{}; + + Parms.SectionName = SectionName; + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_Pause +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_Pause(const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_Pause"); + + Params::AnimInstance_Montage_Pause Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimMontage* MontageToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMontagePlayReturnType ReturnValueType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopAllMontages (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_Play(class UAnimMontage* MontageToPlay, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_Play"); + + Params::AnimInstance_Montage_Play Parms{}; + + Parms.MontageToPlay = MontageToPlay; + Parms.InPlayRate = InPlayRate; + Parms.ReturnValueType = ReturnValueType; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + Parms.bStopAllMontages = bStopAllMontages; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_PlayWithBlendIn +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UAnimMontage* MontageToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAlphaBlendArgs& BlendIn (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMontagePlayReturnType ReturnValueType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopAllMontages (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_PlayWithBlendIn(class UAnimMontage* MontageToPlay, const struct FAlphaBlendArgs& BlendIn, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_PlayWithBlendIn"); + + Params::AnimInstance_Montage_PlayWithBlendIn Parms{}; + + Parms.MontageToPlay = MontageToPlay; + Parms.BlendIn = std::move(BlendIn); + Parms.InPlayRate = InPlayRate; + Parms.ReturnValueType = ReturnValueType; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + Parms.bStopAllMontages = bStopAllMontages; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_PlayWithBlendSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UAnimMontage* MontageToPlay (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FMontageBlendSettings& BlendInSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMontagePlayReturnType ReturnValueType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopAllMontages (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_PlayWithBlendSettings(class UAnimMontage* MontageToPlay, const struct FMontageBlendSettings& BlendInSettings, float InPlayRate, EMontagePlayReturnType ReturnValueType, float InTimeToStartMontageAt, bool bStopAllMontages) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_PlayWithBlendSettings"); + + Params::AnimInstance_Montage_PlayWithBlendSettings Parms{}; + + Parms.MontageToPlay = MontageToPlay; + Parms.BlendInSettings = std::move(BlendInSettings); + Parms.InPlayRate = InPlayRate; + Parms.ReturnValueType = ReturnValueType; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + Parms.bStopAllMontages = bStopAllMontages; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_Resume +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_Resume(const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_Resume"); + + Params::AnimInstance_Montage_Resume Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_SetNextSection +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName SectionNameToChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NextSection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_SetNextSection(class FName SectionNameToChange, class FName NextSection, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_SetNextSection"); + + Params::AnimInstance_Montage_SetNextSection Parms{}; + + Parms.SectionNameToChange = SectionNameToChange; + Parms.NextSection = NextSection; + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_SetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NewPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_SetPlayRate(const class UAnimMontage* Montage, float NewPlayRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_SetPlayRate"); + + Params::AnimInstance_Montage_SetPlayRate Parms{}; + + Parms.Montage = Montage; + Parms.NewPlayRate = NewPlayRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_SetPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NewPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_SetPosition(const class UAnimMontage* Montage, float NewPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_SetPosition"); + + Params::AnimInstance_Montage_SetPosition Parms{}; + + Parms.Montage = Montage; + Parms.NewPosition = NewPosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_Stop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InBlendOutTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_Stop(float InBlendOutTime, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_Stop"); + + Params::AnimInstance_Montage_Stop Parms{}; + + Parms.InBlendOutTime = InBlendOutTime; + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_StopGroupByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InBlendOutTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName GroupName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_StopGroupByName(float InBlendOutTime, class FName GroupName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_StopGroupByName"); + + Params::AnimInstance_Montage_StopGroupByName Parms{}; + + Parms.InBlendOutTime = InBlendOutTime; + Parms.GroupName = GroupName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_StopWithBlendOut +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAlphaBlendArgs& BlendOut (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_StopWithBlendOut(const struct FAlphaBlendArgs& BlendOut, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_StopWithBlendOut"); + + Params::AnimInstance_Montage_StopWithBlendOut Parms{}; + + Parms.BlendOut = std::move(BlendOut); + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.Montage_StopWithBlendSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMontageBlendSettings& BlendOutSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::Montage_StopWithBlendSettings(const struct FMontageBlendSettings& BlendOutSettings, const class UAnimMontage* Montage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_StopWithBlendSettings"); + + Params::AnimInstance_Montage_StopWithBlendSettings Parms{}; + + Parms.BlendOutSettings = std::move(BlendOutSettings); + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.MontageSync_Follow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* MontageFollower (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimInstance* OtherAnimInstance (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UAnimMontage* MontageLeader (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::MontageSync_Follow(const class UAnimMontage* MontageFollower, const class UAnimInstance* OtherAnimInstance, const class UAnimMontage* MontageLeader) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "MontageSync_Follow"); + + Params::AnimInstance_MontageSync_Follow Parms{}; + + Parms.MontageFollower = MontageFollower; + Parms.OtherAnimInstance = OtherAnimInstance; + Parms.MontageLeader = MontageLeader; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.MontageSync_StopFollowing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UAnimMontage* MontageFollower (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::MontageSync_StopFollowing(const class UAnimMontage* MontageFollower) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "MontageSync_StopFollowing"); + + Params::AnimInstance_MontageSync_StopFollowing Parms{}; + + Parms.MontageFollower = MontageFollower; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimSequenceBase* Asset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendInTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendOutTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LoopCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendOutTriggerTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* UAnimInstance::PlaySlotAnimationAsDynamicMontage(class UAnimSequenceBase* Asset, class FName SlotNodeName, float BlendInTime, float BlendOutTime, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "PlaySlotAnimationAsDynamicMontage"); + + Params::AnimInstance_PlaySlotAnimationAsDynamicMontage Parms{}; + + Parms.Asset = Asset; + Parms.SlotNodeName = SlotNodeName; + Parms.BlendInTime = BlendInTime; + Parms.BlendOutTime = BlendOutTime; + Parms.InPlayRate = InPlayRate; + Parms.LoopCount = LoopCount; + Parms.BlendOutTriggerTime = BlendOutTriggerTime; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage_WithBlendArgs +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UAnimSequenceBase* Asset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAlphaBlendArgs& BlendIn (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FAlphaBlendArgs& BlendOut (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LoopCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendOutTriggerTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* UAnimInstance::PlaySlotAnimationAsDynamicMontage_WithBlendArgs(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FAlphaBlendArgs& BlendIn, const struct FAlphaBlendArgs& BlendOut, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "PlaySlotAnimationAsDynamicMontage_WithBlendArgs"); + + Params::AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs Parms{}; + + Parms.Asset = Asset; + Parms.SlotNodeName = SlotNodeName; + Parms.BlendIn = std::move(BlendIn); + Parms.BlendOut = std::move(BlendOut); + Parms.InPlayRate = InPlayRate; + Parms.LoopCount = LoopCount; + Parms.BlendOutTriggerTime = BlendOutTriggerTime; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage_WithBlendSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UAnimSequenceBase* Asset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FMontageBlendSettings& BlendInSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMontageBlendSettings& BlendOutSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LoopCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendOutTriggerTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTimeToStartMontageAt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* UAnimInstance::PlaySlotAnimationAsDynamicMontage_WithBlendSettings(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FMontageBlendSettings& BlendInSettings, const struct FMontageBlendSettings& BlendOutSettings, float InPlayRate, int32 LoopCount, float BlendOutTriggerTime, float InTimeToStartMontageAt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "PlaySlotAnimationAsDynamicMontage_WithBlendSettings"); + + Params::AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings Parms{}; + + Parms.Asset = Asset; + Parms.SlotNodeName = SlotNodeName; + Parms.BlendInSettings = std::move(BlendInSettings); + Parms.BlendOutSettings = std::move(BlendOutSettings); + Parms.InPlayRate = InPlayRate; + Parms.LoopCount = LoopCount; + Parms.BlendOutTriggerTime = BlendOutTriggerTime; + Parms.InTimeToStartMontageAt = InTimeToStartMontageAt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.QueryAndMarkTransitionEvent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TransitionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName EventName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::QueryAndMarkTransitionEvent(int32 MachineIndex, int32 TransitionIndex, class FName EventName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "QueryAndMarkTransitionEvent"); + + Params::AnimInstance_QueryAndMarkTransitionEvent Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.TransitionIndex = TransitionIndex; + Parms.EventName = EventName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.QueryTransitionEvent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TransitionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName EventName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::QueryTransitionEvent(int32 MachineIndex, int32 TransitionIndex, class FName EventName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "QueryTransitionEvent"); + + Params::AnimInstance_QueryTransitionEvent Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.TransitionIndex = TransitionIndex; + Parms.EventName = EventName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.RemovePoseSnapshot +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName SnapshotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::RemovePoseSnapshot(class FName SnapshotName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "RemovePoseSnapshot"); + + Params::AnimInstance_RemovePoseSnapshot Parms{}; + + Parms.SnapshotName = SnapshotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.RequestSlotGroupInertialization +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InSlotGroupName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UBlendProfile* BlendProfile (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::RequestSlotGroupInertialization(class FName InSlotGroupName, float duration, const class UBlendProfile* BlendProfile) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "RequestSlotGroupInertialization"); + + Params::AnimInstance_RequestSlotGroupInertialization Parms{}; + + Parms.InSlotGroupName = InSlotGroupName; + Parms.duration = duration; + Parms.BlendProfile = BlendProfile; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.RequestTransitionEvent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class FName EventName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const double RequestTimeout (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const ETransitionRequestQueueMode QueueMode (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const ETransitionRequestOverwriteMode OverwriteMode (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::RequestTransitionEvent(const class FName EventName, const double RequestTimeout, const ETransitionRequestQueueMode QueueMode, const ETransitionRequestOverwriteMode OverwriteMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "RequestTransitionEvent"); + + Params::AnimInstance_RequestTransitionEvent Parms{}; + + Parms.EventName = EventName; + Parms.RequestTimeout = RequestTimeout; + Parms.QueueMode = QueueMode; + Parms.OverwriteMode = OverwriteMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.ResetDynamics +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETeleportType InTeleportType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::ResetDynamics(ETeleportType InTeleportType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "ResetDynamics"); + + Params::AnimInstance_ResetDynamics Parms{}; + + Parms.InTeleportType = InTeleportType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SavePoseSnapshot +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName SnapshotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SavePoseSnapshot(class FName SnapshotName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SavePoseSnapshot"); + + Params::AnimInstance_SavePoseSnapshot Parms{}; + + Parms.SnapshotName = SnapshotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SetMorphTarget +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName MorphTargetName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SetMorphTarget(class FName MorphTargetName, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SetMorphTarget"); + + Params::AnimInstance_SetMorphTarget Parms{}; + + Parms.MorphTargetName = MorphTargetName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SetPropagateNotifiesToLinkedInstances +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bSet (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SetPropagateNotifiesToLinkedInstances(bool bSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SetPropagateNotifiesToLinkedInstances"); + + Params::AnimInstance_SetPropagateNotifiesToLinkedInstances Parms{}; + + Parms.bSet = bSet; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SetReceiveNotifiesFromLinkedInstances +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bSet (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SetReceiveNotifiesFromLinkedInstances(bool bSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SetReceiveNotifiesFromLinkedInstances"); + + Params::AnimInstance_SetReceiveNotifiesFromLinkedInstances Parms{}; + + Parms.bSet = bSet; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SetRootMotionMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ERootMotionMode Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SetRootMotionMode(ERootMotionMode Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SetRootMotionMode"); + + Params::AnimInstance_SetRootMotionMode Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SetUseMainInstanceMontageEvaluationData +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bSet (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::SetUseMainInstanceMontageEvaluationData(bool bSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SetUseMainInstanceMontageEvaluationData"); + + Params::AnimInstance_SetUseMainInstanceMontageEvaluationData Parms{}; + + Parms.bSet = bSet; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.SnapshotPose +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FPoseSnapshot& Snapshot (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UAnimInstance::SnapshotPose(struct FPoseSnapshot& Snapshot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "SnapshotPose"); + + Params::AnimInstance_SnapshotPose Parms{}; + + Parms.Snapshot = std::move(Snapshot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Snapshot = std::move(Parms.Snapshot); +} + + +// Function Engine.AnimInstance.StopSlotAnimation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InBlendOutTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::StopSlotAnimation(float InBlendOutTime, class FName SlotNodeName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "StopSlotAnimation"); + + Params::AnimInstance_StopSlotAnimation Parms{}; + + Parms.InBlendOutTime = InBlendOutTime; + Parms.SlotNodeName = SlotNodeName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.UnlinkAnimClassLayers +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::UnlinkAnimClassLayers(TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "UnlinkAnimClassLayers"); + + Params::AnimInstance_UnlinkAnimClassLayers Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.UnlockAIResources +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// bool bUnlockMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool UnlockAILogic (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimInstance::UnlockAIResources(bool bUnlockMovement, bool UnlockAILogic) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "UnlockAIResources"); + + Params::AnimInstance_UnlockAIResources Parms{}; + + Parms.bUnlockMovement = bUnlockMovement; + Parms.UnlockAILogic = UnlockAILogic; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInAnyState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName NotifyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyNameTriggeredInAnyState(class FName NotifyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyNameTriggeredInAnyState"); + + Params::AnimInstance_WasAnimNotifyNameTriggeredInAnyState Parms{}; + + Parms.NotifyName = NotifyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInSourceState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NotifyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyNameTriggeredInSourceState(int32 MachineIndex, int32 StateIndex, class FName NotifyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyNameTriggeredInSourceState"); + + Params::AnimInstance_WasAnimNotifyNameTriggeredInSourceState Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + Parms.NotifyName = NotifyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInStateMachine +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NotifyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyNameTriggeredInStateMachine(int32 MachineIndex, class FName NotifyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyNameTriggeredInStateMachine"); + + Params::AnimInstance_WasAnimNotifyNameTriggeredInStateMachine Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.NotifyName = NotifyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInAnyState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf AnimNotifyStateType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyStateActiveInAnyState(TSubclassOf AnimNotifyStateType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyStateActiveInAnyState"); + + Params::AnimInstance_WasAnimNotifyStateActiveInAnyState Parms{}; + + Parms.AnimNotifyStateType = AnimNotifyStateType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInSourceState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf AnimNotifyStateType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyStateActiveInSourceState(int32 MachineIndex, int32 StateIndex, TSubclassOf AnimNotifyStateType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyStateActiveInSourceState"); + + Params::AnimInstance_WasAnimNotifyStateActiveInSourceState Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + Parms.AnimNotifyStateType = AnimNotifyStateType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInStateMachine +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf AnimNotifyStateType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyStateActiveInStateMachine(int32 MachineIndex, TSubclassOf AnimNotifyStateType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyStateActiveInStateMachine"); + + Params::AnimInstance_WasAnimNotifyStateActiveInStateMachine Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.AnimNotifyStateType = AnimNotifyStateType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInAnyState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf AnimNotifyType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyTriggeredInAnyState(TSubclassOf AnimNotifyType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyTriggeredInAnyState"); + + Params::AnimInstance_WasAnimNotifyTriggeredInAnyState Parms{}; + + Parms.AnimNotifyType = AnimNotifyType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInSourceState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf AnimNotifyType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyTriggeredInSourceState(int32 MachineIndex, int32 StateIndex, TSubclassOf AnimNotifyType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyTriggeredInSourceState"); + + Params::AnimInstance_WasAnimNotifyTriggeredInSourceState Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.StateIndex = StateIndex; + Parms.AnimNotifyType = AnimNotifyType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInStateMachine +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 MachineIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf AnimNotifyType (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::WasAnimNotifyTriggeredInStateMachine(int32 MachineIndex, TSubclassOf AnimNotifyType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "WasAnimNotifyTriggeredInStateMachine"); + + Params::AnimInstance_WasAnimNotifyTriggeredInStateMachine Parms{}; + + Parms.MachineIndex = MachineIndex; + Parms.AnimNotifyType = AnimNotifyType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Blueprint_GetMainAnimInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* UAnimInstance::Blueprint_GetMainAnimInstance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Blueprint_GetMainAnimInstance"); + + Params::AnimInstance_Blueprint_GetMainAnimInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Blueprint_GetSlotMontageLocalWeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Blueprint_GetSlotMontageLocalWeight(class FName SlotNodeName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Blueprint_GetSlotMontageLocalWeight"); + + Params::AnimInstance_Blueprint_GetSlotMontageLocalWeight Parms{}; + + Parms.SlotNodeName = SlotNodeName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.CalculateDirection +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Velocity (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& BaseRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::CalculateDirection(const struct FVector& Velocity, const struct FRotator& BaseRotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "CalculateDirection"); + + Params::AnimInstance_CalculateDirection Parms{}; + + Parms.Velocity = std::move(Velocity); + Parms.BaseRotation = std::move(BaseRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.DynamicMontage_IsPlayingFrom +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimSequenceBase* Animation (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::DynamicMontage_IsPlayingFrom(const class UAnimSequenceBase* Animation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "DynamicMontage_IsPlayingFrom"); + + Params::AnimInstance_DynamicMontage_IsPlayingFrom Parms{}; + + Parms.Animation = Animation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetActiveCurveNames +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EAnimCurveType CurveType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UAnimInstance::GetActiveCurveNames(EAnimCurveType CurveType, TArray* OutNames) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetActiveCurveNames"); + + Params::AnimInstance_GetActiveCurveNames Parms{}; + + Parms.CurveType = CurveType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutNames != nullptr) + *OutNames = std::move(Parms.OutNames); +} + + +// Function Engine.AnimInstance.GetAllCurveNames +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OutNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UAnimInstance::GetAllCurveNames(TArray* OutNames) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetAllCurveNames"); + + Params::AnimInstance_GetAllCurveNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutNames != nullptr) + *OutNames = std::move(Parms.OutNames); +} + + +// Function Engine.AnimInstance.GetBlendProfileByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InBlendProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UBlendProfile* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UBlendProfile* UAnimInstance::GetBlendProfileByName(class FName InBlendProfileName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetBlendProfileByName"); + + Params::AnimInstance_GetBlendProfileByName Parms{}; + + Parms.InBlendProfileName = InBlendProfileName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetCurrentActiveMontage +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* UAnimInstance::GetCurrentActiveMontage() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetCurrentActiveMontage"); + + Params::AnimInstance_GetCurrentActiveMontage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetCurveValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName CurveName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetCurveValue(class FName CurveName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetCurveValue"); + + Params::AnimInstance_GetCurveValue Parms{}; + + Parms.CurveName = CurveName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetDeltaSeconds +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::GetDeltaSeconds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetDeltaSeconds"); + + Params::AnimInstance_GetDeltaSeconds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetLinkedAnimGraphInstanceByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* UAnimInstance::GetLinkedAnimGraphInstanceByTag(class FName InTag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimGraphInstanceByTag"); + + Params::AnimInstance_GetLinkedAnimGraphInstanceByTag Parms{}; + + Parms.InTag = InTag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetLinkedAnimGraphInstancesByTag +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InTag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutLinkedInstances (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UAnimInstance::GetLinkedAnimGraphInstancesByTag(class FName InTag, TArray* OutLinkedInstances) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimGraphInstancesByTag"); + + Params::AnimInstance_GetLinkedAnimGraphInstancesByTag Parms{}; + + Parms.InTag = InTag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLinkedInstances != nullptr) + *OutLinkedInstances = std::move(Parms.OutLinkedInstances); +} + + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCheckForChildClass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* UAnimInstance::GetLinkedAnimLayerInstanceByClass(TSubclassOf InClass, bool bCheckForChildClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimLayerInstanceByClass"); + + Params::AnimInstance_GetLinkedAnimLayerInstanceByClass Parms{}; + + Parms.InClass = InClass; + Parms.bCheckForChildClass = bCheckForChildClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* UAnimInstance::GetLinkedAnimLayerInstanceByGroup(class FName InGroup) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimLayerInstanceByGroup"); + + Params::AnimInstance_GetLinkedAnimLayerInstanceByGroup Parms{}; + + Parms.InGroup = InGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByGroupAndClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimInstance* UAnimInstance::GetLinkedAnimLayerInstanceByGroupAndClass(class FName InGroup, TSubclassOf InClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimLayerInstanceByGroupAndClass"); + + Params::AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass Parms{}; + + Parms.InGroup = InGroup; + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstancesByGroup +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutLinkedInstances (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UAnimInstance::GetLinkedAnimLayerInstancesByGroup(class FName InGroup, TArray* OutLinkedInstances) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetLinkedAnimLayerInstancesByGroup"); + + Params::AnimInstance_GetLinkedAnimLayerInstancesByGroup Parms{}; + + Parms.InGroup = InGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLinkedInstances != nullptr) + *OutLinkedInstances = std::move(Parms.OutLinkedInstances); +} + + +// Function Engine.AnimInstance.GetOwningActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UAnimInstance::GetOwningActor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetOwningActor"); + + Params::AnimInstance_GetOwningActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetOwningComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class USkeletalMeshComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMeshComponent* UAnimInstance::GetOwningComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetOwningComponent"); + + Params::AnimInstance_GetOwningComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetPropagateNotifiesToLinkedInstances +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::GetPropagateNotifiesToLinkedInstances() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetPropagateNotifiesToLinkedInstances"); + + Params::AnimInstance_GetPropagateNotifiesToLinkedInstances Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetReceiveNotifiesFromLinkedInstances +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::GetReceiveNotifiesFromLinkedInstances() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetReceiveNotifiesFromLinkedInstances"); + + Params::AnimInstance_GetReceiveNotifiesFromLinkedInstances Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetSyncGroupPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSyncGroupName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMarkerSyncAnimPosition ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FMarkerSyncAnimPosition UAnimInstance::GetSyncGroupPosition(class FName InSyncGroupName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetSyncGroupPosition"); + + Params::AnimInstance_GetSyncGroupPosition Parms{}; + + Parms.InSyncGroupName = InSyncGroupName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.GetTimeToClosestMarker +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName SyncGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName MarkerName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutMarkerTime (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::GetTimeToClosestMarker(class FName SyncGroup, class FName MarkerName, float* OutMarkerTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "GetTimeToClosestMarker"); + + Params::AnimInstance_GetTimeToClosestMarker Parms{}; + + Parms.SyncGroup = SyncGroup; + Parms.MarkerName = MarkerName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutMarkerTime != nullptr) + *OutMarkerTime = Parms.OutMarkerTime; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.HasMarkerBeenHitThisFrame +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName SyncGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName MarkerName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::HasMarkerBeenHitThisFrame(class FName SyncGroup, class FName MarkerName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "HasMarkerBeenHitThisFrame"); + + Params::AnimInstance_HasMarkerBeenHitThisFrame Parms{}; + + Parms.SyncGroup = SyncGroup; + Parms.MarkerName = MarkerName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.IsAnyMontagePlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::IsAnyMontagePlaying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "IsAnyMontagePlaying"); + + Params::AnimInstance_IsAnyMontagePlaying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.IsPlayingSlotAnimation +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimSequenceBase* Asset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::IsPlayingSlotAnimation(const class UAnimSequenceBase* Asset, class FName SlotNodeName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "IsPlayingSlotAnimation"); + + Params::AnimInstance_IsPlayingSlotAnimation Parms{}; + + Parms.Asset = Asset; + Parms.SlotNodeName = SlotNodeName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.IsSlotActive +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::IsSlotActive(class FName SlotNodeName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "IsSlotActive"); + + Params::AnimInstance_IsSlotActive Parms{}; + + Parms.SlotNodeName = SlotNodeName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.IsSyncGroupBetweenMarkers +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSyncGroupName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PreviousMarker (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NextMarker (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRespectMarkerOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::IsSyncGroupBetweenMarkers(class FName InSyncGroupName, class FName PreviousMarker, class FName NextMarker, bool bRespectMarkerOrder) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "IsSyncGroupBetweenMarkers"); + + Params::AnimInstance_IsSyncGroupBetweenMarkers Parms{}; + + Parms.InSyncGroupName = InSyncGroupName; + Parms.PreviousMarker = PreviousMarker; + Parms.NextMarker = NextMarker; + Parms.bRespectMarkerOrder = bRespectMarkerOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.IsUsingMainInstanceMontageEvaluationData +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::IsUsingMainInstanceMontageEvaluationData() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "IsUsingMainInstanceMontageEvaluationData"); + + Params::AnimInstance_IsUsingMainInstanceMontageEvaluationData Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetBlendTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_GetBlendTime(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetBlendTime"); + + Params::AnimInstance_Montage_GetBlendTime Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetCurrentSection +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UAnimInstance::Montage_GetCurrentSection(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetCurrentSection"); + + Params::AnimInstance_Montage_GetCurrentSection Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetEffectivePlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_GetEffectivePlayRate(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetEffectivePlayRate"); + + Params::AnimInstance_Montage_GetEffectivePlayRate Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetIsStopped +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::Montage_GetIsStopped(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetIsStopped"); + + Params::AnimInstance_Montage_GetIsStopped Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_GetPlayRate(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetPlayRate"); + + Params::AnimInstance_Montage_GetPlayRate Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_GetPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimInstance::Montage_GetPosition(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_GetPosition"); + + Params::AnimInstance_Montage_GetPosition Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_IsActive +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::Montage_IsActive(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_IsActive"); + + Params::AnimInstance_Montage_IsActive Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.Montage_IsPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAnimMontage* Montage (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimInstance::Montage_IsPlaying(const class UAnimMontage* Montage) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "Montage_IsPlaying"); + + Params::AnimInstance_Montage_IsPlaying Parms{}; + + Parms.Montage = Montage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimInstance.TryGetPawnOwner +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* UAnimInstance::TryGetPawnOwner() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimInstance", "TryGetPawnOwner"); + + Params::AnimInstance_TryGetPawnOwner Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanDeleteElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanDeleteElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanDeleteElement"); + + Params::TypedElementWorldInterface_CanDeleteElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanDuplicateElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanDuplicateElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanDuplicateElement"); + + Params::TypedElementWorldInterface_CanDuplicateElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanEditElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanEditElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanEditElement"); + + Params::TypedElementWorldInterface_CanEditElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanMoveElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const ETypedElementWorldType InWorldType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanMoveElement(const struct FScriptTypedElementHandle& InElementHandle, const ETypedElementWorldType InWorldType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanMoveElement"); + + Params::TypedElementWorldInterface_CanMoveElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InWorldType = InWorldType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanPromoteElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanPromoteElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanPromoteElement"); + + Params::TypedElementWorldInterface_CanPromoteElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.CanScaleElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::CanScaleElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "CanScaleElement"); + + Params::TypedElementWorldInterface_CanScaleElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.DeleteElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* InWorld (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTypedElementSelectionSet* InSelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementDeletionOptions&InDeletionOptions (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::DeleteElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* InWorld, class UTypedElementSelectionSet* InSelectionSet, const struct FTypedElementDeletionOptions& InDeletionOptions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "DeleteElement"); + + Params::TypedElementWorldInterface_DeleteElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InWorld = InWorld; + Parms.InSelectionSet = InSelectionSet; + Parms.InDeletionOptions = std::move(InDeletionOptions); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.DuplicateElement +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* InWorld (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLocationOffset (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FScriptTypedElementHandle ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FScriptTypedElementHandle ITypedElementWorldInterface::DuplicateElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* InWorld, const struct FVector& InLocationOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "DuplicateElement"); + + Params::TypedElementWorldInterface_DuplicateElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InWorld = InWorld; + Parms.InLocationOffset = std::move(InLocationOffset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetBounds +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FBoxSphereBounds* OutBounds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::GetBounds(const struct FScriptTypedElementHandle& InElementHandle, struct FBoxSphereBounds* OutBounds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetBounds"); + + Params::TypedElementWorldInterface_GetBounds Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutBounds != nullptr) + *OutBounds = std::move(Parms.OutBounds); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetOwnerLevel +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class ULevel* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevel* ITypedElementWorldInterface::GetOwnerLevel(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetOwnerLevel"); + + Params::TypedElementWorldInterface_GetOwnerLevel Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetOwnerWorld +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UWorld* ITypedElementWorldInterface::GetOwnerWorld(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetOwnerWorld"); + + Params::TypedElementWorldInterface_GetOwnerWorld Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetPivotOffset +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector* OutPivotOffset (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::GetPivotOffset(const struct FScriptTypedElementHandle& InElementHandle, struct FVector* OutPivotOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetPivotOffset"); + + Params::TypedElementWorldInterface_GetPivotOffset Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPivotOffset != nullptr) + *OutPivotOffset = std::move(Parms.OutPivotOffset); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetRelativeTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FTransform* OutTransform (Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::GetRelativeTransform(const struct FScriptTypedElementHandle& InElementHandle, struct FTransform* OutTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetRelativeTransform"); + + Params::TypedElementWorldInterface_GetRelativeTransform Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTransform != nullptr) + *OutTransform = std::move(Parms.OutTransform); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.GetWorldTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FTransform* OutTransform (Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::GetWorldTransform(const struct FScriptTypedElementHandle& InElementHandle, struct FTransform* OutTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "GetWorldTransform"); + + Params::TypedElementWorldInterface_GetWorldTransform Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTransform != nullptr) + *OutTransform = std::move(Parms.OutTransform); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.IsTemplateElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::IsTemplateElement(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "IsTemplateElement"); + + Params::TypedElementWorldInterface_IsTemplateElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.NotifyMovementEnded +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void ITypedElementWorldInterface::NotifyMovementEnded(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "NotifyMovementEnded"); + + Params::TypedElementWorldInterface_NotifyMovementEnded Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TypedElementWorldInterface.NotifyMovementOngoing +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void ITypedElementWorldInterface::NotifyMovementOngoing(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "NotifyMovementOngoing"); + + Params::TypedElementWorldInterface_NotifyMovementOngoing Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TypedElementWorldInterface.NotifyMovementStarted +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void ITypedElementWorldInterface::NotifyMovementStarted(const struct FScriptTypedElementHandle& InElementHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "NotifyMovementStarted"); + + Params::TypedElementWorldInterface_NotifyMovementStarted Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TypedElementWorldInterface.PromoteElement +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* OverrideWorld (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FScriptTypedElementHandle ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FScriptTypedElementHandle ITypedElementWorldInterface::PromoteElement(const struct FScriptTypedElementHandle& InElementHandle, class UWorld* OverrideWorld) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "PromoteElement"); + + Params::TypedElementWorldInterface_PromoteElement Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.OverrideWorld = OverrideWorld; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.SetPivotOffset +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& InPivotOffset (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::SetPivotOffset(const struct FScriptTypedElementHandle& InElementHandle, const struct FVector& InPivotOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "SetPivotOffset"); + + Params::TypedElementWorldInterface_SetPivotOffset Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InPivotOffset = std::move(InPivotOffset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.SetRelativeTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FTransform& InTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::SetRelativeTransform(const struct FScriptTypedElementHandle& InElementHandle, const struct FTransform& InTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "SetRelativeTransform"); + + Params::TypedElementWorldInterface_SetRelativeTransform Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InTransform = std::move(InTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementWorldInterface.SetWorldTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementHandle& InElementHandle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FTransform& InTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ITypedElementWorldInterface::SetWorldTransform(const struct FScriptTypedElementHandle& InElementHandle, const struct FTransform& InTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("TypedElementWorldInterface", "SetWorldTransform"); + + Params::TypedElementWorldInterface_SetWorldTransform Parms{}; + + Parms.InElementHandle = std::move(InElementHandle); + Parms.InTransform = std::move(InTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.K2_MoveUpdatedComponent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Delta (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTeleport (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UMovementComponent::K2_MoveUpdatedComponent(const struct FVector& Delta, const struct FRotator& NewRotation, struct FHitResult* OutHit, bool bSweep, bool bTeleport) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "K2_MoveUpdatedComponent"); + + Params::MovementComponent_K2_MoveUpdatedComponent Parms{}; + + Parms.Delta = std::move(Delta); + Parms.NewRotation = std::move(NewRotation); + Parms.bSweep = bSweep; + Parms.bTeleport = bTeleport; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.PhysicsVolumeChanged +// (RequiredAPI, Native, Public) +// Parameters: +// class APhysicsVolume* NewVolume (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::PhysicsVolumeChanged(class APhysicsVolume* NewVolume) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "PhysicsVolumeChanged"); + + Params::MovementComponent_PhysicsVolumeChanged Parms{}; + + Parms.NewVolume = NewVolume; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetPlaneConstraintAxisSetting +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EPlaneConstraintAxisSetting NewAxisSetting (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetPlaneConstraintAxisSetting(EPlaneConstraintAxisSetting NewAxisSetting) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetPlaneConstraintAxisSetting"); + + Params::MovementComponent_SetPlaneConstraintAxisSetting Parms{}; + + Parms.NewAxisSetting = NewAxisSetting; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetPlaneConstraintEnabled +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetPlaneConstraintEnabled(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetPlaneConstraintEnabled"); + + Params::MovementComponent_SetPlaneConstraintEnabled Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetPlaneConstraintFromVectors +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Forward (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Up (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetPlaneConstraintFromVectors(const struct FVector& Forward, const struct FVector& Up) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetPlaneConstraintFromVectors"); + + Params::MovementComponent_SetPlaneConstraintFromVectors Parms{}; + + Parms.Forward = std::move(Forward); + Parms.Up = std::move(Up); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetPlaneConstraintNormal +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& PlaneNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetPlaneConstraintNormal(const struct FVector& PlaneNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetPlaneConstraintNormal"); + + Params::MovementComponent_SetPlaneConstraintNormal Parms{}; + + Parms.PlaneNormal = std::move(PlaneNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetPlaneConstraintOrigin +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& PlaneOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetPlaneConstraintOrigin(const struct FVector& PlaneOrigin) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetPlaneConstraintOrigin"); + + Params::MovementComponent_SetPlaneConstraintOrigin Parms{}; + + Parms.PlaneOrigin = std::move(PlaneOrigin); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SetUpdatedComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* NewUpdatedComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMovementComponent::SetUpdatedComponent(class USceneComponent* NewUpdatedComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SetUpdatedComponent"); + + Params::MovementComponent_SetUpdatedComponent Parms{}; + + Parms.NewUpdatedComponent = NewUpdatedComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.SnapUpdatedComponentToPlane +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UMovementComponent::SnapUpdatedComponentToPlane() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "SnapUpdatedComponentToPlane"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.StopMovementImmediately +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UMovementComponent::StopMovementImmediately() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "StopMovementImmediately"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MovementComponent.ConstrainDirectionToPlane +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UMovementComponent::ConstrainDirectionToPlane(const struct FVector& Direction) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "ConstrainDirectionToPlane"); + + Params::MovementComponent_ConstrainDirectionToPlane Parms{}; + + Parms.Direction = std::move(Direction); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.ConstrainLocationToPlane +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UMovementComponent::ConstrainLocationToPlane(const struct FVector& Location) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "ConstrainLocationToPlane"); + + Params::MovementComponent_ConstrainLocationToPlane Parms{}; + + Parms.Location = std::move(Location); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.ConstrainNormalToPlane +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Normal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UMovementComponent::ConstrainNormalToPlane(const struct FVector& Normal) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "ConstrainNormalToPlane"); + + Params::MovementComponent_ConstrainNormalToPlane Parms{}; + + Parms.Normal = std::move(Normal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetGravityZ +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMovementComponent::GetGravityZ() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetGravityZ"); + + Params::MovementComponent_GetGravityZ Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetMaxSpeed +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMovementComponent::GetMaxSpeed() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetMaxSpeed"); + + Params::MovementComponent_GetMaxSpeed Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetPhysicsVolume +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APhysicsVolume* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APhysicsVolume* UMovementComponent::GetPhysicsVolume() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetPhysicsVolume"); + + Params::MovementComponent_GetPhysicsVolume Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetPlaneConstraintAxisSetting +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EPlaneConstraintAxisSetting ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EPlaneConstraintAxisSetting UMovementComponent::GetPlaneConstraintAxisSetting() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetPlaneConstraintAxisSetting"); + + Params::MovementComponent_GetPlaneConstraintAxisSetting Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetPlaneConstraintNormal +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const struct FVector UMovementComponent::GetPlaneConstraintNormal() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetPlaneConstraintNormal"); + + Params::MovementComponent_GetPlaneConstraintNormal Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.GetPlaneConstraintOrigin +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const struct FVector UMovementComponent::GetPlaneConstraintOrigin() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "GetPlaneConstraintOrigin"); + + Params::MovementComponent_GetPlaneConstraintOrigin Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MovementComponent.IsExceedingMaxSpeed +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float MaxSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UMovementComponent::IsExceedingMaxSpeed(float MaxSpeed) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MovementComponent", "IsExceedingMaxSpeed"); + + Params::MovementComponent_IsExceedingMaxSpeed Parms{}; + + Parms.MaxSpeed = MaxSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ProjectileMovementComponent.MoveInterpolationTarget +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UProjectileMovementComponent::MoveInterpolationTarget(const struct FVector& NewLocation, const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "MoveInterpolationTarget"); + + Params::ProjectileMovementComponent_MoveInterpolationTarget Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ProjectileMovementComponent.ResetInterpolation +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UProjectileMovementComponent::ResetInterpolation() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "ResetInterpolation"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ProjectileMovementComponent.SetInterpolatedComponent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UProjectileMovementComponent::SetInterpolatedComponent(class USceneComponent* Component) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "SetInterpolatedComponent"); + + Params::ProjectileMovementComponent_SetInterpolatedComponent Parms{}; + + Parms.Component = Component; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ProjectileMovementComponent.SetVelocityInLocalSpace +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UProjectileMovementComponent::SetVelocityInLocalSpace(const struct FVector& NewVelocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "SetVelocityInLocalSpace"); + + Params::ProjectileMovementComponent_SetVelocityInLocalSpace Parms{}; + + Parms.NewVelocity = std::move(NewVelocity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ProjectileMovementComponent.StopSimulating +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FHitResult& HitResult (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UProjectileMovementComponent::StopSimulating(const struct FHitResult& HitResult) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "StopSimulating"); + + Params::ProjectileMovementComponent_StopSimulating Parms{}; + + Parms.HitResult = std::move(HitResult); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ProjectileMovementComponent.IsInterpolationComplete +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UProjectileMovementComponent::IsInterpolationComplete() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "IsInterpolationComplete"); + + Params::ProjectileMovementComponent_IsInterpolationComplete Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ProjectileMovementComponent.IsVelocityUnderSimulationThreshold +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UProjectileMovementComponent::IsVelocityUnderSimulationThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "IsVelocityUnderSimulationThreshold"); + + Params::ProjectileMovementComponent_IsVelocityUnderSimulationThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ProjectileMovementComponent.LimitVelocity +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& NewVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UProjectileMovementComponent::LimitVelocity(const struct FVector& NewVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ProjectileMovementComponent", "LimitVelocity"); + + Params::ProjectileMovementComponent_LimitVelocity Parms{}; + + Parms.NewVelocity = std::move(NewVelocity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundBase.IsAttenuationSettingsEditable +// (Native, Public, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USoundBase::IsAttenuationSettingsEditable() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundBase", "IsAttenuationSettingsEditable"); + + Params::SoundBase_IsAttenuationSettingsEditable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundWave.SetSoundAssetCompressionType +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ESoundAssetCompressionType InSoundAssetCompressionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMarkDirty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundWave::SetSoundAssetCompressionType(ESoundAssetCompressionType InSoundAssetCompressionType, bool bMarkDirty) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundWave", "SetSoundAssetCompressionType"); + + Params::SoundWave_SetSoundAssetCompressionType Parms{}; + + Parms.InSoundAssetCompressionType = InSoundAssetCompressionType; + Parms.bMarkDirty = bMarkDirty; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundWave.GetCuePoints +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USoundWave::GetCuePoints() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundWave", "GetCuePoints"); + + Params::SoundWave_GetCuePoints Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundWave.GetLoopRegions +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USoundWave::GetLoopRegions() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundWave", "GetLoopRegions"); + + Params::SoundWave_GetLoopRegions Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundWave.GetSoundAssetCompressionType +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ESoundAssetCompressionType ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ESoundAssetCompressionType USoundWave::GetSoundAssetCompressionType() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundWave", "GetSoundAssetCompressionType"); + + Params::SoundWave_GetSoundAssetCompressionType Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Texture.Blueprint_GetTextureSourceIdString +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FString* OutTextureSourceId (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTexture::Blueprint_GetTextureSourceIdString(class FString* OutTextureSourceId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture", "Blueprint_GetTextureSourceIdString"); + + Params::Texture_Blueprint_GetTextureSourceIdString Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTextureSourceId != nullptr) + *OutTextureSourceId = std::move(Parms.OutTextureSourceId); + + return Parms.ReturnValue; +} + + +// Function Engine.Texture.AreDownscalePropertiesEditable +// (Native, Public, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTexture::AreDownscalePropertiesEditable() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture", "AreDownscalePropertiesEditable"); + + Params::Texture_AreDownscalePropertiesEditable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Texture.Blueprint_GetMemorySize +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UTexture::Blueprint_GetMemorySize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture", "Blueprint_GetMemorySize"); + + Params::Texture_Blueprint_GetMemorySize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Texture.Blueprint_GetTextureSourceDiskAndMemorySize +// (Final, Native, Public, HasOutParams, BlueprintCallable, Const) +// Parameters: +// int64* OutDiskSize (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64* OutMemorySize (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTexture::Blueprint_GetTextureSourceDiskAndMemorySize(int64* OutDiskSize, int64* OutMemorySize) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture", "Blueprint_GetTextureSourceDiskAndMemorySize"); + + Params::Texture_Blueprint_GetTextureSourceDiskAndMemorySize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutDiskSize != nullptr) + *OutDiskSize = Parms.OutDiskSize; + + if (OutMemorySize != nullptr) + *OutMemorySize = Parms.OutMemorySize; +} + + +// Function Engine.Texture.ComputeTextureSourceChannelMinMax +// (Final, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, Const) +// Parameters: +// struct FLinearColor* OutColorMin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor* OutColorMax (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTexture::ComputeTextureSourceChannelMinMax(struct FLinearColor* OutColorMin, struct FLinearColor* OutColorMax) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture", "ComputeTextureSourceChannelMinMax"); + + Params::Texture_ComputeTextureSourceChannelMinMax Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutColorMin != nullptr) + *OutColorMin = std::move(Parms.OutColorMin); + + if (OutColorMax != nullptr) + *OutColorMax = std::move(Parms.OutColorMax); + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.ClientSetLocation +// (RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient, NetValidate) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void AController::ClientSetLocation(const struct FVector& NewLocation, const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ClientSetLocation"); + + Params::Controller_ClientSetLocation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.ClientSetRotation +// (RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient, NetValidate) +// Parameters: +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bResetCamera (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::ClientSetRotation(const struct FRotator& NewRotation, bool bResetCamera) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ClientSetRotation"); + + Params::Controller_ClientSetRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + Parms.bResetCamera = bResetCamera; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.OnRep_Pawn +// (RequiredAPI, Native, Public) + +void AController::OnRep_Pawn() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "OnRep_Pawn"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.OnRep_PlayerState +// (RequiredAPI, Native, Public) + +void AController::OnRep_PlayerState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "OnRep_PlayerState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.Possess +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// class APawn* InPawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::Possess(class APawn* InPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "Possess"); + + Params::Controller_Possess Parms{}; + + Parms.InPawn = InPawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.ReceiveInstigatedAnyDamage +// (RequiredAPI, BlueprintAuthorityOnly, Event, Protected, BlueprintEvent) +// Parameters: +// float Damage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDamageType* DamageType (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamagedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::ReceiveInstigatedAnyDamage(float Damage, const class UDamageType* DamageType, class AActor* DamagedActor, class AActor* DamageCauser) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ReceiveInstigatedAnyDamage"); + + Params::Controller_ReceiveInstigatedAnyDamage Parms{}; + + Parms.Damage = Damage; + Parms.DamageType = DamageType; + Parms.DamagedActor = DamagedActor; + Parms.DamageCauser = DamageCauser; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Controller.ReceivePossess +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class APawn* PossessedPawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::ReceivePossess(class APawn* PossessedPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ReceivePossess"); + + Params::Controller_ReceivePossess Parms{}; + + Parms.PossessedPawn = PossessedPawn; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Controller.ReceiveUnPossess +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class APawn* UnpossessedPawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::ReceiveUnPossess(class APawn* UnpossessedPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ReceiveUnPossess"); + + Params::Controller_ReceiveUnPossess Parms{}; + + Parms.UnpossessedPawn = UnpossessedPawn; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Controller.ResetIgnoreInputFlags +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AController::ResetIgnoreInputFlags() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ResetIgnoreInputFlags"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.ResetIgnoreLookInput +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AController::ResetIgnoreLookInput() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ResetIgnoreLookInput"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.ResetIgnoreMoveInput +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AController::ResetIgnoreMoveInput() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "ResetIgnoreMoveInput"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.SetControlRotation +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void AController::SetControlRotation(const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "SetControlRotation"); + + Params::Controller_SetControlRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.SetIgnoreLookInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewLookInput (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::SetIgnoreLookInput(bool bNewLookInput) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "SetIgnoreLookInput"); + + Params::Controller_SetIgnoreLookInput Parms{}; + + Parms.bNewLookInput = bNewLookInput; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.SetIgnoreMoveInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewMoveInput (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AController::SetIgnoreMoveInput(bool bNewMoveInput) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "SetIgnoreMoveInput"); + + Params::Controller_SetIgnoreMoveInput Parms{}; + + Parms.bNewMoveInput = bNewMoveInput; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.SetInitialLocationAndRotation +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void AController::SetInitialLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "SetInitialLocationAndRotation"); + + Params::Controller_SetInitialLocationAndRotation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.StopMovement +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AController::StopMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "StopMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.UnPossess +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void AController::UnPossess() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "UnPossess"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Controller.GetControlRotation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator AController::GetControlRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "GetControlRotation"); + + Params::Controller_GetControlRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.GetDesiredRotation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator AController::GetDesiredRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "GetDesiredRotation"); + + Params::Controller_GetDesiredRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.GetPlayerViewPoint +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* Location (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* Rotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void AController::GetPlayerViewPoint(struct FVector* Location, struct FRotator* Rotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "GetPlayerViewPoint"); + + Params::Controller_GetPlayerViewPoint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Location != nullptr) + *Location = std::move(Parms.Location); + + if (Rotation != nullptr) + *Rotation = std::move(Parms.Rotation); +} + + +// Function Engine.Controller.GetViewTarget +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AController::GetViewTarget() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "GetViewTarget"); + + Params::Controller_GetViewTarget Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.IsLocalController +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::IsLocalController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "IsLocalController"); + + Params::Controller_IsLocalController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.IsLocalPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::IsLocalPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "IsLocalPlayerController"); + + Params::Controller_IsLocalPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.IsLookInputIgnored +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::IsLookInputIgnored() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "IsLookInputIgnored"); + + Params::Controller_IsLookInputIgnored Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.IsMoveInputIgnored +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::IsMoveInputIgnored() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "IsMoveInputIgnored"); + + Params::Controller_IsMoveInputIgnored Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.IsPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::IsPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "IsPlayerController"); + + Params::Controller_IsPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.K2_GetPawn +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* AController::K2_GetPawn() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "K2_GetPawn"); + + Params::Controller_K2_GetPawn Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Controller.LineOfSightTo +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class AActor* Other (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ViewPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlternateChecks (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AController::LineOfSightTo(const class AActor* Other, const struct FVector& ViewPoint, bool bAlternateChecks) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Controller", "LineOfSightTo"); + + Params::Controller_LineOfSightTo Parms{}; + + Parms.Other = Other; + Parms.ViewPoint = std::move(ViewPoint); + Parms.bAlternateChecks = bAlternateChecks; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraActor.GetAutoActivatePlayerIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 ACameraActor::GetAutoActivatePlayerIndex() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraActor", "GetAutoActivatePlayerIndex"); + + Params::CameraActor_GetAutoActivatePlayerIndex Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraComponent.AddOrUpdateBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "AddOrUpdateBlendable"); + + Params::CameraComponent_AddOrUpdateBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + Parms.InWeight = InWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.GetCameraView +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMinimalViewInfo* DesiredView (Parm, OutParm, NativeAccessSpecifierPublic) + +void UCameraComponent::GetCameraView(float DeltaTime, struct FMinimalViewInfo* DesiredView) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "GetCameraView"); + + Params::CameraComponent_GetCameraView Parms{}; + + Parms.DeltaTime = DeltaTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (DesiredView != nullptr) + *DesiredView = std::move(Parms.DesiredView); +} + + +// Function Engine.CameraComponent.OnCameraMeshHiddenChanged +// (Final, RequiredAPI, Native, Protected, BlueprintCallable) + +void UCameraComponent::OnCameraMeshHiddenChanged() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "OnCameraMeshHiddenChanged"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.RemoveBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::RemoveBlendable(TScriptInterface InBlendableObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "RemoveBlendable"); + + Params::CameraComponent_RemoveBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetAspectRatio +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InAspectRatio (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetAspectRatio(float InAspectRatio) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetAspectRatio"); + + Params::CameraComponent_SetAspectRatio Parms{}; + + Parms.InAspectRatio = InAspectRatio; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetAspectRatioAxisConstraint +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// EAspectRatioAxisConstraint InAspectRatioAxisConstraint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetAspectRatioAxisConstraint(EAspectRatioAxisConstraint InAspectRatioAxisConstraint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetAspectRatioAxisConstraint"); + + Params::CameraComponent_SetAspectRatioAxisConstraint Parms{}; + + Parms.InAspectRatioAxisConstraint = InAspectRatioAxisConstraint; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetAutoCalculateOrthoPlanes +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bAutoCalculate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetAutoCalculateOrthoPlanes(bool bAutoCalculate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetAutoCalculateOrthoPlanes"); + + Params::CameraComponent_SetAutoCalculateOrthoPlanes Parms{}; + + Parms.bAutoCalculate = bAutoCalculate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetAutoPlaneShift +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InAutoPlaneShift (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetAutoPlaneShift(float InAutoPlaneShift) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetAutoPlaneShift"); + + Params::CameraComponent_SetAutoPlaneShift Parms{}; + + Parms.InAutoPlaneShift = InAutoPlaneShift; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetConstraintAspectRatio +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInConstrainAspectRatio (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetConstraintAspectRatio(bool bInConstrainAspectRatio) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetConstraintAspectRatio"); + + Params::CameraComponent_SetConstraintAspectRatio Parms{}; + + Parms.bInConstrainAspectRatio = bInConstrainAspectRatio; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetCropOverscan +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInCropOverscan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetCropOverscan(bool bInCropOverscan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetCropOverscan"); + + Params::CameraComponent_SetCropOverscan Parms{}; + + Parms.bInCropOverscan = bInCropOverscan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetEnableFirstPersonFieldOfView +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInEnableFirstPersonFieldOfView (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetEnableFirstPersonFieldOfView(bool bInEnableFirstPersonFieldOfView) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetEnableFirstPersonFieldOfView"); + + Params::CameraComponent_SetEnableFirstPersonFieldOfView Parms{}; + + Parms.bInEnableFirstPersonFieldOfView = bInEnableFirstPersonFieldOfView; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetEnableFirstPersonScale +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInEnableFirstPersonScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetEnableFirstPersonScale(bool bInEnableFirstPersonScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetEnableFirstPersonScale"); + + Params::CameraComponent_SetEnableFirstPersonScale Parms{}; + + Parms.bInEnableFirstPersonScale = bInEnableFirstPersonScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetFieldOfView +// (Native, Public, BlueprintCallable) +// Parameters: +// float InFieldOfView (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetFieldOfView(float InFieldOfView) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetFieldOfView"); + + Params::CameraComponent_SetFieldOfView Parms{}; + + Parms.InFieldOfView = InFieldOfView; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetFirstPersonFieldOfView +// (Native, Public, BlueprintCallable) +// Parameters: +// float InFirstPersonFieldOfView (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetFirstPersonFieldOfView(float InFirstPersonFieldOfView) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetFirstPersonFieldOfView"); + + Params::CameraComponent_SetFirstPersonFieldOfView Parms{}; + + Parms.InFirstPersonFieldOfView = InFirstPersonFieldOfView; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetFirstPersonScale +// (Native, Public, BlueprintCallable) +// Parameters: +// float InFirstPersonScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetFirstPersonScale(float InFirstPersonScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetFirstPersonScale"); + + Params::CameraComponent_SetFirstPersonScale Parms{}; + + Parms.InFirstPersonScale = InFirstPersonScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetOrthoFarClipPlane +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InOrthoFarClipPlane (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetOrthoFarClipPlane(float InOrthoFarClipPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetOrthoFarClipPlane"); + + Params::CameraComponent_SetOrthoFarClipPlane Parms{}; + + Parms.InOrthoFarClipPlane = InOrthoFarClipPlane; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetOrthoNearClipPlane +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InOrthoNearClipPlane (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetOrthoNearClipPlane(float InOrthoNearClipPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetOrthoNearClipPlane"); + + Params::CameraComponent_SetOrthoNearClipPlane Parms{}; + + Parms.InOrthoNearClipPlane = InOrthoNearClipPlane; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetOrthoWidth +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InOrthoWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetOrthoWidth(float InOrthoWidth) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetOrthoWidth"); + + Params::CameraComponent_SetOrthoWidth Parms{}; + + Parms.InOrthoWidth = InOrthoWidth; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetOverscan +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InOverscan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetOverscan(float InOverscan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetOverscan"); + + Params::CameraComponent_SetOverscan Parms{}; + + Parms.InOverscan = InOverscan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetPostProcessBlendWeight +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InPostProcessBlendWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetPostProcessBlendWeight(float InPostProcessBlendWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetPostProcessBlendWeight"); + + Params::CameraComponent_SetPostProcessBlendWeight Parms{}; + + Parms.InPostProcessBlendWeight = InPostProcessBlendWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetProjectionMode +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// ECameraProjectionMode InProjectionMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetProjectionMode(ECameraProjectionMode InProjectionMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetProjectionMode"); + + Params::CameraComponent_SetProjectionMode Parms{}; + + Parms.InProjectionMode = InProjectionMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetScaleResolutionWithOverscan +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInScaleResolutionWithOverscan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetScaleResolutionWithOverscan(bool bInScaleResolutionWithOverscan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetScaleResolutionWithOverscan"); + + Params::CameraComponent_SetScaleResolutionWithOverscan Parms{}; + + Parms.bInScaleResolutionWithOverscan = bInScaleResolutionWithOverscan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetUpdateOrthoPlanes +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInUpdateOrthoPlanes (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetUpdateOrthoPlanes(bool bInUpdateOrthoPlanes) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetUpdateOrthoPlanes"); + + Params::CameraComponent_SetUpdateOrthoPlanes Parms{}; + + Parms.bInUpdateOrthoPlanes = bInUpdateOrthoPlanes; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetUseCameraHeightAsViewTarget +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInUseCameraHeightAsViewTarget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetUseCameraHeightAsViewTarget(bool bInUseCameraHeightAsViewTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetUseCameraHeightAsViewTarget"); + + Params::CameraComponent_SetUseCameraHeightAsViewTarget Parms{}; + + Parms.bInUseCameraHeightAsViewTarget = bInUseCameraHeightAsViewTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraComponent.SetUseFieldOfViewForLOD +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bInUseFieldOfViewForLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraComponent::SetUseFieldOfViewForLOD(bool bInUseFieldOfViewForLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraComponent", "SetUseFieldOfViewForLOD"); + + Params::CameraComponent_SetUseFieldOfViewForLOD Parms{}; + + Parms.bInUseFieldOfViewForLOD = bInUseFieldOfViewForLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerManager.SetDataLayerInstanceRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UDataLayerInstance* InDataLayerInstance (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInIsRecursive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerManager::SetDataLayerInstanceRuntimeState(const class UDataLayerInstance* InDataLayerInstance, EDataLayerRuntimeState InState, bool bInIsRecursive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "SetDataLayerInstanceRuntimeState"); + + Params::DataLayerManager_SetDataLayerInstanceRuntimeState Parms{}; + + Parms.InDataLayerInstance = InDataLayerInstance; + Parms.InState = InState; + Parms.bInIsRecursive = bInIsRecursive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.SetDataLayerRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInIsRecursive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerManager::SetDataLayerRuntimeState(const class UDataLayerAsset* InDataLayerAsset, EDataLayerRuntimeState InState, bool bInIsRecursive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "SetDataLayerRuntimeState"); + + Params::DataLayerManager_SetDataLayerRuntimeState Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + Parms.InState = InState; + Parms.bInIsRecursive = bInIsRecursive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.GetDataLayerInstanceEffectiveRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerInstance* InDataLayerInstance (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerManager::GetDataLayerInstanceEffectiveRuntimeState(const class UDataLayerInstance* InDataLayerInstance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "GetDataLayerInstanceEffectiveRuntimeState"); + + Params::DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState Parms{}; + + Parms.InDataLayerInstance = InDataLayerInstance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.GetDataLayerInstanceFromAsset +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDataLayerInstance* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UDataLayerInstance* UDataLayerManager::GetDataLayerInstanceFromAsset(const class UDataLayerAsset* InDataLayerAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "GetDataLayerInstanceFromAsset"); + + Params::DataLayerManager_GetDataLayerInstanceFromAsset Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.GetDataLayerInstanceFromName +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& InDataLayerInstanceName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UDataLayerInstance* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UDataLayerInstance* UDataLayerManager::GetDataLayerInstanceFromName(const class FName& InDataLayerInstanceName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "GetDataLayerInstanceFromName"); + + Params::DataLayerManager_GetDataLayerInstanceFromName Parms{}; + + Parms.InDataLayerInstanceName = InDataLayerInstanceName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.GetDataLayerInstanceRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerInstance* InDataLayerInstance (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerManager::GetDataLayerInstanceRuntimeState(const class UDataLayerInstance* InDataLayerInstance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "GetDataLayerInstanceRuntimeState"); + + Params::DataLayerManager_GetDataLayerInstanceRuntimeState Parms{}; + + Parms.InDataLayerInstance = InDataLayerInstance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerManager.GetDataLayerInstances +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UDataLayerManager::GetDataLayerInstances() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerManager", "GetDataLayerInstances"); + + Params::DataLayerManager_GetDataLayerInstances Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationAsset.FindMetaDataByClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TSubclassOf MetaDataClass (ConstParm, Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimMetaData* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMetaData* UAnimationAsset::FindMetaDataByClass(const TSubclassOf MetaDataClass) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimationAsset", "FindMetaDataByClass"); + + Params::AnimationAsset_FindMetaDataByClass Parms{}; + + Parms.MetaDataClass = MetaDataClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationAsset.GetPlayLength +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimationAsset::GetPlayLength() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimationAsset", "GetPlayLength"); + + Params::AnimationAsset_GetPlayLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetFrameTransform +// (Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USparseVolumeTexture::GetFrameTransform() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetFrameTransform"); + + Params::SparseVolumeTexture_GetFrameTransform Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetNumFrames +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USparseVolumeTexture::GetNumFrames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetNumFrames"); + + Params::SparseVolumeTexture_GetNumFrames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetNumMipLevels +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USparseVolumeTexture::GetNumMipLevels() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetNumMipLevels"); + + Params::SparseVolumeTexture_GetNumMipLevels Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetSizeX +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USparseVolumeTexture::GetSizeX() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetSizeX"); + + Params::SparseVolumeTexture_GetSizeX Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetSizeY +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USparseVolumeTexture::GetSizeY() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetSizeY"); + + Params::SparseVolumeTexture_GetSizeY Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SparseVolumeTexture.GetSizeZ +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USparseVolumeTexture::GetSizeZ() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SparseVolumeTexture", "GetSizeZ"); + + Params::SparseVolumeTexture_GetSizeZ Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RawAnimSequenceTrackExtensions.GetPositionalKeys +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRawAnimSequenceTrack& Track (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray URawAnimSequenceTrackExtensions::GetPositionalKeys(const struct FRawAnimSequenceTrack& Track) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("RawAnimSequenceTrackExtensions", "GetPositionalKeys"); + + Params::RawAnimSequenceTrackExtensions_GetPositionalKeys Parms{}; + + Parms.Track = std::move(Track); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RawAnimSequenceTrackExtensions.GetRotationalKeys +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRawAnimSequenceTrack& Track (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray URawAnimSequenceTrackExtensions::GetRotationalKeys(const struct FRawAnimSequenceTrack& Track) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("RawAnimSequenceTrackExtensions", "GetRotationalKeys"); + + Params::RawAnimSequenceTrackExtensions_GetRotationalKeys Parms{}; + + Parms.Track = std::move(Track); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RawAnimSequenceTrackExtensions.GetScaleKeys +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRawAnimSequenceTrack& Track (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray URawAnimSequenceTrackExtensions::GetScaleKeys(const struct FRawAnimSequenceTrack& Track) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("RawAnimSequenceTrackExtensions", "GetScaleKeys"); + + Params::RawAnimSequenceTrackExtensions_GetScaleKeys Parms{}; + + Parms.Track = std::move(Track); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetAsset +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerAsset* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UDataLayerAsset* UDataLayerInstance::GetAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetAsset"); + + Params::DataLayerInstance_GetAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetDataLayerFullName +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UDataLayerInstance::GetDataLayerFullName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetDataLayerFullName"); + + Params::DataLayerInstance_GetDataLayerFullName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetDataLayerShortName +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UDataLayerInstance::GetDataLayerShortName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetDataLayerShortName"); + + Params::DataLayerInstance_GetDataLayerShortName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetDebugColor +// (Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UDataLayerInstance::GetDebugColor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetDebugColor"); + + Params::DataLayerInstance_GetDebugColor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetInitialRuntimeState +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerInstance::GetInitialRuntimeState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetInitialRuntimeState"); + + Params::DataLayerInstance_GetInitialRuntimeState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.GetType +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EDataLayerType ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerType UDataLayerInstance::GetType() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "GetType"); + + Params::DataLayerInstance_GetType Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsClientOnly +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsClientOnly() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsClientOnly"); + + Params::DataLayerInstance_IsClientOnly Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsEffectiveVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsEffectiveVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsEffectiveVisible"); + + Params::DataLayerInstance_IsEffectiveVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsInitiallyVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsInitiallyVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsInitiallyVisible"); + + Params::DataLayerInstance_IsInitiallyVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsRuntime +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsRuntime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsRuntime"); + + Params::DataLayerInstance_IsRuntime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsServerOnly +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsServerOnly() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsServerOnly"); + + Params::DataLayerInstance_IsServerOnly Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerInstance.IsVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerInstance::IsVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerInstance", "IsVisible"); + + Params::DataLayerInstance_IsVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioPanelWidgetInterface.GetEditorName +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText IAudioPanelWidgetInterface::GetEditorName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AudioPanelWidgetInterface", "GetEditorName"); + + Params::AudioPanelWidgetInterface_GetEditorName Parms{}; + + AsUObject()->ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.AudioPanelWidgetInterface.GetIconBrushName +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName IAudioPanelWidgetInterface::GetIconBrushName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AudioPanelWidgetInterface", "GetIconBrushName"); + + Params::AudioPanelWidgetInterface_GetIconBrushName Parms{}; + + AsUObject()->ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.Light.OnRep_bEnabled +// (RequiredAPI, Native, Public) + +void ALight::OnRep_bEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "OnRep_bEnabled"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetAffectTranslucentLighting +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetAffectTranslucentLighting(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetAffectTranslucentLighting"); + + Params::Light_SetAffectTranslucentLighting Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewBrightness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetBrightness(float NewBrightness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetBrightness"); + + Params::Light_SetBrightness Parms{}; + + Parms.NewBrightness = NewBrightness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetCastShadows +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetCastShadows(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetCastShadows"); + + Params::Light_SetCastShadows Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bSetEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetEnabled(bool bSetEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetEnabled"); + + Params::Light_SetEnabled Parms{}; + + Parms.bSetEnabled = bSetEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewLightColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetLightColor(const struct FLinearColor& NewLightColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetLightColor"); + + Params::Light_SetLightColor Parms{}; + + Parms.NewLightColor = std::move(NewLightColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetLightFunctionFadeDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLightFunctionFadeDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetLightFunctionFadeDistance(float NewLightFunctionFadeDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetLightFunctionFadeDistance"); + + Params::Light_SetLightFunctionFadeDistance Parms{}; + + Parms.NewLightFunctionFadeDistance = NewLightFunctionFadeDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetLightFunctionMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewLightFunctionMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetLightFunctionMaterial(class UMaterialInterface* NewLightFunctionMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetLightFunctionMaterial"); + + Params::Light_SetLightFunctionMaterial Parms{}; + + Parms.NewLightFunctionMaterial = NewLightFunctionMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.SetLightFunctionScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLightFunctionScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALight::SetLightFunctionScale(const struct FVector& NewLightFunctionScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "SetLightFunctionScale"); + + Params::Light_SetLightFunctionScale Parms{}; + + Parms.NewLightFunctionScale = std::move(NewLightFunctionScale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.ToggleEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void ALight::ToggleEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "ToggleEnabled"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Light.GetBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float ALight::GetBrightness() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "GetBrightness"); + + Params::Light_GetBrightness Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Light.GetLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor ALight::GetLightColor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "GetLightColor"); + + Params::Light_GetLightColor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Light.IsEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ALight::IsEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Light", "IsEnabled"); + + Params::Light_IsEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.FXSystemComponent.ReleaseToPool +// (Native, Public, BlueprintCallable) + +void UFXSystemComponent::ReleaseToPool() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "ReleaseToPool"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetActorParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* Param (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetActorParameter(class FName ParameterName, class AActor* Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetActorParameter"); + + Params::FXSystemComponent_SetActorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetAutoAttachmentParameters +// (Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* Parent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule LocationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule RotationRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachmentRule ScaleRule (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetAutoAttachmentParameters(class USceneComponent* Parent, class FName SocketName, EAttachmentRule LocationRule, EAttachmentRule RotationRule, EAttachmentRule ScaleRule) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetAutoAttachmentParameters"); + + Params::FXSystemComponent_SetAutoAttachmentParameters Parms{}; + + Parms.Parent = Parent; + Parms.SocketName = SocketName; + Parms.LocationRule = LocationRule; + Parms.RotationRule = RotationRule; + Parms.ScaleRule = ScaleRule; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetBoolParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetBoolParameter(class FName ParameterName, bool Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetBoolParameter"); + + Params::FXSystemComponent_SetBoolParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetColorParameter +// (Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetColorParameter(class FName ParameterName, const struct FLinearColor& Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetColorParameter"); + + Params::FXSystemComponent_SetColorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = std::move(Param); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetEmitterEnable +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName EmitterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewEnableState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetEmitterEnable(class FName EmitterName, bool bNewEnableState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetEmitterEnable"); + + Params::FXSystemComponent_SetEmitterEnable Parms{}; + + Parms.EmitterName = EmitterName; + Parms.bNewEnableState = bNewEnableState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetFloatParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetFloatParameter(class FName ParameterName, float Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetFloatParameter"); + + Params::FXSystemComponent_SetFloatParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetIntParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetIntParameter(class FName ParameterName, int32 Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetIntParameter"); + + Params::FXSystemComponent_SetIntParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetUseAutoManageAttachment +// (Native, Public, BlueprintCallable) +// Parameters: +// bool bAutoManage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetUseAutoManageAttachment(bool bAutoManage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetUseAutoManageAttachment"); + + Params::FXSystemComponent_SetUseAutoManageAttachment Parms{}; + + Parms.bAutoManage = bAutoManage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.SetVectorParameter +// (Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFXSystemComponent::SetVectorParameter(class FName ParameterName, const struct FVector& Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "SetVectorParameter"); + + Params::FXSystemComponent_SetVectorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = std::move(Param); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FXSystemComponent.GetFXSystemAsset +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UFXSystemAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UFXSystemAsset* UFXSystemComponent::GetFXSystemAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("FXSystemComponent", "GetFXSystemAsset"); + + Params::FXSystemComponent_GetFXSystemAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.CalibrateTilt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetInputLibrary::CalibrateTilt() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "CalibrateTilt"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetInputLibrary.EqualEqual_InputChordInputChord +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputChord& A (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputChord& B (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::EqualEqual_InputChordInputChord(const struct FInputChord& A, const struct FInputChord& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "EqualEqual_InputChordInputChord"); + + Params::KismetInputLibrary_EqualEqual_InputChordInputChord Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.EqualEqual_KeyKey +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& A (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FKey& B (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::EqualEqual_KeyKey(const struct FKey& A, const struct FKey& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "EqualEqual_KeyKey"); + + Params::KismetInputLibrary_EqualEqual_KeyKey Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.GetAnalogValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnalogInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetInputLibrary::GetAnalogValue(const struct FAnalogInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "GetAnalogValue"); + + Params::KismetInputLibrary_GetAnalogValue Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.GetKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKeyEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FKey ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FKey UKismetInputLibrary::GetKey(const struct FKeyEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "GetKey"); + + Params::KismetInputLibrary_GetKey Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.GetModifierKeysState +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FSlateModifierKeysState ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FSlateModifierKeysState UKismetInputLibrary::GetModifierKeysState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "GetModifierKeysState"); + + Params::KismetInputLibrary_GetModifierKeysState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.GetUserIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKeyEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetInputLibrary::GetUserIndex(const struct FKeyEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "GetUserIndex"); + + Params::KismetInputLibrary_GetUserIndex Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputChord_GetDisplayName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputChord& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetInputLibrary::InputChord_GetDisplayName(const struct FInputChord& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputChord_GetDisplayName"); + + Params::KismetInputLibrary_InputChord_GetDisplayName Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsAltDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsAltDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsAltDown"); + + Params::KismetInputLibrary_InputEvent_IsAltDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsCommandDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsCommandDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsCommandDown"); + + Params::KismetInputLibrary_InputEvent_IsCommandDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsControlDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsControlDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsControlDown"); + + Params::KismetInputLibrary_InputEvent_IsControlDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftAltDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsLeftAltDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsLeftAltDown"); + + Params::KismetInputLibrary_InputEvent_IsLeftAltDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftCommandDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsLeftCommandDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsLeftCommandDown"); + + Params::KismetInputLibrary_InputEvent_IsLeftCommandDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftControlDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsLeftControlDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsLeftControlDown"); + + Params::KismetInputLibrary_InputEvent_IsLeftControlDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftShiftDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsLeftShiftDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsLeftShiftDown"); + + Params::KismetInputLibrary_InputEvent_IsLeftShiftDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsRepeat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsRepeat(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsRepeat"); + + Params::KismetInputLibrary_InputEvent_IsRepeat Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsRightAltDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsRightAltDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsRightAltDown"); + + Params::KismetInputLibrary_InputEvent_IsRightAltDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsRightCommandDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsRightCommandDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsRightCommandDown"); + + Params::KismetInputLibrary_InputEvent_IsRightCommandDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsRightControlDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsRightControlDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsRightControlDown"); + + Params::KismetInputLibrary_InputEvent_IsRightControlDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsRightShiftDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsRightShiftDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsRightShiftDown"); + + Params::KismetInputLibrary_InputEvent_IsRightShiftDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.InputEvent_IsShiftDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::InputEvent_IsShiftDown(const struct FInputEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "InputEvent_IsShiftDown"); + + Params::KismetInputLibrary_InputEvent_IsShiftDown Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_GetDisplayName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLongDisplayName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetInputLibrary::Key_GetDisplayName(const struct FKey& Key, bool bLongDisplayName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_GetDisplayName"); + + Params::KismetInputLibrary_Key_GetDisplayName Parms{}; + + Parms.Key = std::move(Key); + Parms.bLongDisplayName = bLongDisplayName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_GetNavigationAction +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& InKey (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EUINavigationAction ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EUINavigationAction UKismetInputLibrary::Key_GetNavigationAction(const struct FKey& InKey) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_GetNavigationAction"); + + Params::KismetInputLibrary_Key_GetNavigationAction Parms{}; + + Parms.InKey = std::move(InKey); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_GetNavigationActionFromKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKeyEvent& InKeyEvent (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// EUINavigationAction ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EUINavigationAction UKismetInputLibrary::Key_GetNavigationActionFromKey(const struct FKeyEvent& InKeyEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_GetNavigationActionFromKey"); + + Params::KismetInputLibrary_Key_GetNavigationActionFromKey Parms{}; + + Parms.InKeyEvent = std::move(InKeyEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_GetNavigationDirectionFromAnalog +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnalogInputEvent& InAnalogEvent (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// EUINavigation ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EUINavigation UKismetInputLibrary::Key_GetNavigationDirectionFromAnalog(const struct FAnalogInputEvent& InAnalogEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_GetNavigationDirectionFromAnalog"); + + Params::KismetInputLibrary_Key_GetNavigationDirectionFromAnalog Parms{}; + + Parms.InAnalogEvent = std::move(InAnalogEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_GetNavigationDirectionFromKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKeyEvent& InKeyEvent (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// EUINavigation ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EUINavigation UKismetInputLibrary::Key_GetNavigationDirectionFromKey(const struct FKeyEvent& InKeyEvent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_GetNavigationDirectionFromKey"); + + Params::KismetInputLibrary_Key_GetNavigationDirectionFromKey Parms{}; + + Parms.InKeyEvent = std::move(InKeyEvent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsAnalog +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsAnalog(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsAnalog"); + + Params::KismetInputLibrary_Key_IsAnalog Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsAxis1D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsAxis1D(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsAxis1D"); + + Params::KismetInputLibrary_Key_IsAxis1D Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsAxis2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsAxis2D(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsAxis2D"); + + Params::KismetInputLibrary_Key_IsAxis2D Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsAxis3D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsAxis3D(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsAxis3D"); + + Params::KismetInputLibrary_Key_IsAxis3D Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsButtonAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsButtonAxis(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsButtonAxis"); + + Params::KismetInputLibrary_Key_IsButtonAxis Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsDigital +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsDigital(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsDigital"); + + Params::KismetInputLibrary_Key_IsDigital Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsGamepadKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsGamepadKey(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsGamepadKey"); + + Params::KismetInputLibrary_Key_IsGamepadKey Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsKeyboardKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsKeyboardKey(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsKeyboardKey"); + + Params::KismetInputLibrary_Key_IsKeyboardKey Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsModifierKey +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsModifierKey(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsModifierKey"); + + Params::KismetInputLibrary_Key_IsModifierKey Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsMouseButton +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsMouseButton(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsMouseButton"); + + Params::KismetInputLibrary_Key_IsMouseButton Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsValid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsValid(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsValid"); + + Params::KismetInputLibrary_Key_IsValid Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.Key_IsVectorAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FKey& Key (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::Key_IsVectorAxis(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "Key_IsVectorAxis"); + + Params::KismetInputLibrary_Key_IsVectorAxis Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsAltDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSlateModifierKeysState& KeysState (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::ModifierKeysState_IsAltDown(const struct FSlateModifierKeysState& KeysState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "ModifierKeysState_IsAltDown"); + + Params::KismetInputLibrary_ModifierKeysState_IsAltDown Parms{}; + + Parms.KeysState = std::move(KeysState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsCommandDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSlateModifierKeysState& KeysState (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::ModifierKeysState_IsCommandDown(const struct FSlateModifierKeysState& KeysState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "ModifierKeysState_IsCommandDown"); + + Params::KismetInputLibrary_ModifierKeysState_IsCommandDown Parms{}; + + Parms.KeysState = std::move(KeysState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsControlDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSlateModifierKeysState& KeysState (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::ModifierKeysState_IsControlDown(const struct FSlateModifierKeysState& KeysState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "ModifierKeysState_IsControlDown"); + + Params::KismetInputLibrary_ModifierKeysState_IsControlDown Parms{}; + + Parms.KeysState = std::move(KeysState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsShiftDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSlateModifierKeysState& KeysState (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::ModifierKeysState_IsShiftDown(const struct FSlateModifierKeysState& KeysState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "ModifierKeysState_IsShiftDown"); + + Params::KismetInputLibrary_ModifierKeysState_IsShiftDown Parms{}; + + Parms.KeysState = std::move(KeysState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetCursorDelta +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetInputLibrary::PointerEvent_GetCursorDelta(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetCursorDelta"); + + Params::KismetInputLibrary_PointerEvent_GetCursorDelta Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetEffectingButton +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FKey ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FKey UKismetInputLibrary::PointerEvent_GetEffectingButton(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetEffectingButton"); + + Params::KismetInputLibrary_PointerEvent_GetEffectingButton Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetGestureDelta +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetInputLibrary::PointerEvent_GetGestureDelta(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetGestureDelta"); + + Params::KismetInputLibrary_PointerEvent_GetGestureDelta Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetGestureType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// ESlateGesture ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ESlateGesture UKismetInputLibrary::PointerEvent_GetGestureType(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetGestureType"); + + Params::KismetInputLibrary_PointerEvent_GetGestureType Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetLastScreenSpacePosition +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetInputLibrary::PointerEvent_GetLastScreenSpacePosition(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetLastScreenSpacePosition"); + + Params::KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetPointerIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetInputLibrary::PointerEvent_GetPointerIndex(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetPointerIndex"); + + Params::KismetInputLibrary_PointerEvent_GetPointerIndex Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetScreenSpacePosition +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetInputLibrary::PointerEvent_GetScreenSpacePosition(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetScreenSpacePosition"); + + Params::KismetInputLibrary_PointerEvent_GetScreenSpacePosition Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetTouchpadIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetInputLibrary::PointerEvent_GetTouchpadIndex(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetTouchpadIndex"); + + Params::KismetInputLibrary_PointerEvent_GetTouchpadIndex Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetUserIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetInputLibrary::PointerEvent_GetUserIndex(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetUserIndex"); + + Params::KismetInputLibrary_PointerEvent_GetUserIndex Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_GetWheelDelta +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetInputLibrary::PointerEvent_GetWheelDelta(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_GetWheelDelta"); + + Params::KismetInputLibrary_PointerEvent_GetWheelDelta Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_IsMouseButtonDown +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FKey& MouseButton (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::PointerEvent_IsMouseButtonDown(const struct FPointerEvent& Input, const struct FKey& MouseButton) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_IsMouseButtonDown"); + + Params::KismetInputLibrary_PointerEvent_IsMouseButtonDown Parms{}; + + Parms.Input = std::move(Input); + Parms.MouseButton = std::move(MouseButton); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInputLibrary.PointerEvent_IsTouchEvent +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPointerEvent& Input (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInputLibrary::PointerEvent_IsTouchEvent(const struct FPointerEvent& Input) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInputLibrary", "PointerEvent_IsTouchEvent"); + + Params::KismetInputLibrary_PointerEvent_IsTouchEvent Parms{}; + + Parms.Input = std::move(Input); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlanarReflection.OnInterpToggle +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlanarReflection::OnInterpToggle(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlanarReflection", "OnInterpToggle"); + + Params::PlanarReflection_OnInterpToggle Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ChildActorComponent.OnChildActorDestroyed +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UChildActorComponent::OnChildActorDestroyed(class AActor* Actor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ChildActorComponent", "OnChildActorDestroyed"); + + Params::ChildActorComponent_OnChildActorDestroyed Parms{}; + + Parms.Actor = Actor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ChildActorComponent.OnRep_ChildActor +// (Final, Native, Private) + +void UChildActorComponent::OnRep_ChildActor() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ChildActorComponent", "OnRep_ChildActor"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ChildActorComponent.SetChildActorClass +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UChildActorComponent::SetChildActorClass(TSubclassOf InClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ChildActorComponent", "SetChildActorClass"); + + Params::ChildActorComponent_SetChildActorClass Parms{}; + + Parms.InClass = InClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintTypeConversions.ConvertArrayType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams) +// Parameters: +// const TArray& inArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UBlueprintTypeConversions::ConvertArrayType(const TArray& inArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertArrayType"); + + Params::BlueprintTypeConversions_ConvertArrayType Parms{}; + + Parms.inArray = std::move(inArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFBox2dToFBox2f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFBox2dToFBox2f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFBox2dToFBox2f"); + + Params::BlueprintTypeConversions_ConvertFBox2dToFBox2f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFBox2fToFBox2d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFBox2fToFBox2d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFBox2fToFBox2d"); + + Params::BlueprintTypeConversions_ConvertFBox2fToFBox2d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFMatrix44dToFMatrix44f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFMatrix44dToFMatrix44f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFMatrix44dToFMatrix44f"); + + Params::BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFMatrix44fToFMatrix44d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFMatrix44fToFMatrix44d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFMatrix44fToFMatrix44d"); + + Params::BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFPlane4dToFPlane4f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFPlane4dToFPlane4f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFPlane4dToFPlane4f"); + + Params::BlueprintTypeConversions_ConvertFPlane4dToFPlane4f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFPlane4fToFPlane4d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFPlane4fToFPlane4d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFPlane4fToFPlane4d"); + + Params::BlueprintTypeConversions_ConvertFPlane4fToFPlane4d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFQuat4dToFQuat4f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFQuat4dToFQuat4f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFQuat4dToFQuat4f"); + + Params::BlueprintTypeConversions_ConvertFQuat4dToFQuat4f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFQuat4fToFQuat4d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFQuat4fToFQuat4d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFQuat4fToFQuat4d"); + + Params::BlueprintTypeConversions_ConvertFQuat4fToFQuat4d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFRotator3dToFRotator3f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFRotator3dToFRotator3f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFRotator3dToFRotator3f"); + + Params::BlueprintTypeConversions_ConvertFRotator3dToFRotator3f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFRotator3fToFRotator3d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFRotator3fToFRotator3d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFRotator3fToFRotator3d"); + + Params::BlueprintTypeConversions_ConvertFRotator3fToFRotator3d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFTransform3dToFTransform3f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFTransform3dToFTransform3f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFTransform3dToFTransform3f"); + + Params::BlueprintTypeConversions_ConvertFTransform3dToFTransform3f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFTransform3fToFTransform3d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFTransform3fToFTransform3d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFTransform3fToFTransform3d"); + + Params::BlueprintTypeConversions_ConvertFTransform3fToFTransform3d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector2dToFVector2f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector2dToFVector2f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector2dToFVector2f"); + + Params::BlueprintTypeConversions_ConvertFVector2dToFVector2f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector2fToFVector2d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector2fToFVector2d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector2fToFVector2d"); + + Params::BlueprintTypeConversions_ConvertFVector2fToFVector2d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector3dToFVector3f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector3dToFVector3f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector3dToFVector3f"); + + Params::BlueprintTypeConversions_ConvertFVector3dToFVector3f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector3fToFVector3d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector3fToFVector3d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector3fToFVector3d"); + + Params::BlueprintTypeConversions_ConvertFVector3fToFVector3d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector4dToFVector4f +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector4dToFVector4f(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector4dToFVector4f"); + + Params::BlueprintTypeConversions_ConvertFVector4dToFVector4f Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertFVector4fToFVector4d +// (Final, RequiredAPI, Native, Static, Public) +// Parameters: +// int32 InFromData (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintTypeConversions::ConvertFVector4fToFVector4d(int32 InFromData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertFVector4fToFVector4d"); + + Params::BlueprintTypeConversions_ConvertFVector4fToFVector4d Parms{}; + + Parms.InFromData = InFromData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertMapType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams) +// Parameters: +// const TMap& InMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TMap ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +TMap UBlueprintTypeConversions::ConvertMapType(const TMap& InMap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertMapType"); + + Params::BlueprintTypeConversions_ConvertMapType Parms{}; + + Parms.InMap = std::move(InMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintTypeConversions.ConvertSetType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams) +// Parameters: +// const TSet& Inset (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TSet ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +TSet UBlueprintTypeConversions::ConvertSetType(const TSet& Inset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintTypeConversions", "ConvertSetType"); + + Params::BlueprintTypeConversions_ConvertSetType Parms{}; + + Parms.Inset = std::move(Inset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.CreateInstance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class FString& UniqueInstanceName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULevelStreaming* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevelStreaming* ULevelStreaming::CreateInstance(const class FString& UniqueInstanceName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "CreateInstance"); + + Params::LevelStreaming_CreateInstance Parms{}; + + Parms.UniqueInstanceName = std::move(UniqueInstanceName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.GetLevelScriptActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class ALevelScriptActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ALevelScriptActor* ULevelStreaming::GetLevelScriptActor() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "GetLevelScriptActor"); + + Params::LevelStreaming_GetLevelScriptActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.SetIsRequestingUnloadAndRemoval +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInIsRequestingUnloadAndRemoval (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULevelStreaming::SetIsRequestingUnloadAndRemoval(bool bInIsRequestingUnloadAndRemoval) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "SetIsRequestingUnloadAndRemoval"); + + Params::LevelStreaming_SetIsRequestingUnloadAndRemoval Parms{}; + + Parms.bInIsRequestingUnloadAndRemoval = bInIsRequestingUnloadAndRemoval; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelStreaming.SetLevelLODIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULevelStreaming::SetLevelLODIndex(int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "SetLevelLODIndex"); + + Params::LevelStreaming_SetLevelLODIndex Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelStreaming.SetPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewPriority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULevelStreaming::SetPriority(int32 NewPriority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "SetPriority"); + + Params::LevelStreaming_SetPriority Parms{}; + + Parms.NewPriority = NewPriority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelStreaming.SetShouldBeLoaded +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInShouldBeLoaded (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULevelStreaming::SetShouldBeLoaded(bool bInShouldBeLoaded) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "SetShouldBeLoaded"); + + Params::LevelStreaming_SetShouldBeLoaded Parms{}; + + Parms.bInShouldBeLoaded = bInShouldBeLoaded; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelStreaming.SetShouldBeVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInShouldBeVisible (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULevelStreaming::SetShouldBeVisible(bool bInShouldBeVisible) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "SetShouldBeVisible"); + + Params::LevelStreaming_SetShouldBeVisible Parms{}; + + Parms.bInShouldBeVisible = bInShouldBeVisible; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelStreaming.GetIsRequestingUnloadAndRemoval +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULevelStreaming::GetIsRequestingUnloadAndRemoval() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "GetIsRequestingUnloadAndRemoval"); + + Params::LevelStreaming_GetIsRequestingUnloadAndRemoval Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.GetLoadedLevel +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class ULevel* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevel* ULevelStreaming::GetLoadedLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "GetLoadedLevel"); + + Params::LevelStreaming_GetLoadedLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.GetWorldAssetPackageFName +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName ULevelStreaming::GetWorldAssetPackageFName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "GetWorldAssetPackageFName"); + + Params::LevelStreaming_GetWorldAssetPackageFName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.IsLevelLoaded +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULevelStreaming::IsLevelLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "IsLevelLoaded"); + + Params::LevelStreaming_IsLevelLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.IsLevelVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULevelStreaming::IsLevelVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "IsLevelVisible"); + + Params::LevelStreaming_IsLevelVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.IsStreamingStatePending +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULevelStreaming::IsStreamingStatePending() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "IsStreamingStatePending"); + + Params::LevelStreaming_IsStreamingStatePending Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreaming.ShouldBeLoaded +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULevelStreaming::ShouldBeLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelStreaming", "ShouldBeLoaded"); + + Params::LevelStreaming_ShouldBeLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AutoRTFMTestObject.OnComponentPhysicsStateChanged +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UPrimitiveComponent* ChangedComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EComponentPhysicsStateChange StateChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAutoRTFMTestObject::OnComponentPhysicsStateChanged(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AutoRTFMTestObject", "OnComponentPhysicsStateChanged"); + + Params::AutoRTFMTestObject_OnComponentPhysicsStateChanged Parms{}; + + Parms.ChangedComponent = ChangedComponent; + Parms.StateChange = StateChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameInstance.DebugCreatePlayer +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameInstance::DebugCreatePlayer(int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "DebugCreatePlayer"); + + Params::GameInstance_DebugCreatePlayer Parms{}; + + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameInstance.DebugRemovePlayer +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameInstance::DebugRemovePlayer(int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "DebugRemovePlayer"); + + Params::GameInstance_DebugRemovePlayer Parms{}; + + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameInstance.HandleNetworkError +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// ENetworkFailure FailureType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsServer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameInstance::HandleNetworkError(ENetworkFailure FailureType, bool bIsServer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "HandleNetworkError"); + + Params::GameInstance_HandleNetworkError Parms{}; + + Parms.FailureType = FailureType; + Parms.bIsServer = bIsServer; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameInstance.HandleTravelError +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// ETravelFailure FailureType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameInstance::HandleTravelError(ETravelFailure FailureType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "HandleTravelError"); + + Params::GameInstance_HandleTravelError Parms{}; + + Parms.FailureType = FailureType; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameInstance.ReceiveInit +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UGameInstance::ReceiveInit() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "ReceiveInit"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.GameInstance.ReceiveShutdown +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UGameInstance::ReceiveShutdown() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameInstance", "ReceiveShutdown"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.ChaosBlueprintLibrary.GetEventRelayFromContext +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* ContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UChaosEventRelay* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UChaosEventRelay* UChaosBlueprintLibrary::GetEventRelayFromContext(class UObject* ContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ChaosBlueprintLibrary", "GetEventRelayFromContext"); + + Params::ChaosBlueprintLibrary_GetEventRelayFromContext Parms{}; + + Parms.ContextObject = ContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.CopyNormalizedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::CopyNormalizedElements(const struct FScriptTypedElementListProxy& ElementList) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "CopyNormalizedElements"); + + Params::TypedElementCommonActions_CopyNormalizedElements Parms{}; + + Parms.ElementList = std::move(ElementList); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.CopyNormalizedElementsToString +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FString* OutputString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::CopyNormalizedElementsToString(const struct FScriptTypedElementListProxy& ElementList, class FString* OutputString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "CopyNormalizedElementsToString"); + + Params::TypedElementCommonActions_CopyNormalizedElementsToString Parms{}; + + Parms.ElementList = std::move(ElementList); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutputString != nullptr) + *OutputString = std::move(Parms.OutputString); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.CopySelectedElements +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTypedElementSelectionSet* SelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::CopySelectedElements(class UTypedElementSelectionSet* SelectionSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "CopySelectedElements"); + + Params::TypedElementCommonActions_CopySelectedElements Parms{}; + + Parms.SelectionSet = SelectionSet; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.CopySelectedElementsToString +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UTypedElementSelectionSet* SelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutputString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::CopySelectedElementsToString(class UTypedElementSelectionSet* SelectionSet, class FString* OutputString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "CopySelectedElementsToString"); + + Params::TypedElementCommonActions_CopySelectedElementsToString Parms{}; + + Parms.SelectionSet = SelectionSet; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutputString != nullptr) + *OutputString = std::move(Parms.OutputString); + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.DeleteNormalizedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTypedElementSelectionSet* InSelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementDeletionOptions&DeletionOptions (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::DeleteNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, class UTypedElementSelectionSet* InSelectionSet, const struct FTypedElementDeletionOptions& DeletionOptions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "DeleteNormalizedElements"); + + Params::TypedElementCommonActions_DeleteNormalizedElements Parms{}; + + Parms.ElementList = std::move(ElementList); + Parms.World = World; + Parms.InSelectionSet = InSelectionSet; + Parms.DeletionOptions = std::move(DeletionOptions); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.DeleteSelectedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UTypedElementSelectionSet* SelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementDeletionOptions&DeletionOptions (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTypedElementCommonActions::DeleteSelectedElements(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementDeletionOptions& DeletionOptions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "DeleteSelectedElements"); + + Params::TypedElementCommonActions_DeleteSelectedElements Parms{}; + + Parms.SelectionSet = SelectionSet; + Parms.World = World; + Parms.DeletionOptions = std::move(DeletionOptions); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.DuplicateNormalizedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LocationOffset (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::DuplicateNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FVector& LocationOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "DuplicateNormalizedElements"); + + Params::TypedElementCommonActions_DuplicateNormalizedElements Parms{}; + + Parms.ElementList = std::move(ElementList); + Parms.World = World; + Parms.LocationOffset = std::move(LocationOffset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.K2_DuplicateSelectedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UTypedElementSelectionSet* SelectionSet (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LocationOffset (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::K2_DuplicateSelectedElements(const class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FVector& LocationOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "K2_DuplicateSelectedElements"); + + Params::TypedElementCommonActions_K2_DuplicateSelectedElements Parms{}; + + Parms.SelectionSet = SelectionSet; + Parms.World = World; + Parms.LocationOffset = std::move(LocationOffset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.K2_PasteElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UTypedElementSelectionSet* SelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementPasteOptions& PasteOption (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::K2_PasteElements(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "K2_PasteElements"); + + Params::TypedElementCommonActions_K2_PasteElements Parms{}; + + Parms.SelectionSet = SelectionSet; + Parms.World = World; + Parms.PasteOption = std::move(PasteOption); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.K2_PasteNormalizedElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementPasteOptions& PasteOption (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::K2_PasteNormalizedElements(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "K2_PasteNormalizedElements"); + + Params::TypedElementCommonActions_K2_PasteNormalizedElements Parms{}; + + Parms.ElementList = std::move(ElementList); + Parms.World = World; + Parms.PasteOption = std::move(PasteOption); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.PasteElementsFromString +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UTypedElementSelectionSet* SelectionSet (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementPasteOptions& PasteOption (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& InputString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::PasteElementsFromString(class UTypedElementSelectionSet* SelectionSet, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption, const class FString& InputString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "PasteElementsFromString"); + + Params::TypedElementCommonActions_PasteElementsFromString Parms{}; + + Parms.SelectionSet = SelectionSet; + Parms.World = World; + Parms.PasteOption = std::move(PasteOption); + Parms.InputString = std::move(InputString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TypedElementCommonActions.PasteNormalizedElementsFromString +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FScriptTypedElementListProxy&ElementList (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTypedElementPasteOptions& PasteOption (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& InputString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArrayReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UTypedElementCommonActions::PasteNormalizedElementsFromString(const struct FScriptTypedElementListProxy& ElementList, class UWorld* World, const struct FTypedElementPasteOptions& PasteOption, const class FString& InputString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TypedElementCommonActions", "PasteNormalizedElementsFromString"); + + Params::TypedElementCommonActions_PasteNormalizedElementsFromString Parms{}; + + Parms.ElementList = std::move(ElementList); + Parms.World = World; + Parms.PasteOption = std::move(PasteOption); + Parms.InputString = std::move(InputString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsSettings.GetPhysicsHistoryCount +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPhysicsSettings::GetPhysicsHistoryCount() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsSettings", "GetPhysicsHistoryCount"); + + Params::PhysicsSettings_GetPhysicsHistoryCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveBase.GetTimeRange +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* MinTime (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MaxTime (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCurveBase::GetTimeRange(float* MinTime, float* MaxTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveBase", "GetTimeRange"); + + Params::CurveBase_GetTimeRange Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (MinTime != nullptr) + *MinTime = Parms.MinTime; + + if (MaxTime != nullptr) + *MaxTime = Parms.MaxTime; +} + + +// Function Engine.CurveBase.GetValueRange +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* MinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCurveBase::GetValueRange(float* MinValue, float* MaxValue) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveBase", "GetValueRange"); + + Params::CurveBase_GetValueRange Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (MinValue != nullptr) + *MinValue = Parms.MinValue; + + if (MaxValue != nullptr) + *MaxValue = Parms.MaxValue; +} + + +// Function Engine.Texture2D.Blueprint_GetCPUCopy +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FSharedImageConstRefBlueprint ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FSharedImageConstRefBlueprint UTexture2D::Blueprint_GetCPUCopy() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture2D", "Blueprint_GetCPUCopy"); + + Params::Texture2D_Blueprint_GetCPUCopy Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Texture2D.Blueprint_GetSizeX +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UTexture2D::Blueprint_GetSizeX() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture2D", "Blueprint_GetSizeX"); + + Params::Texture2D_Blueprint_GetSizeX Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Texture2D.Blueprint_GetSizeY +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UTexture2D::Blueprint_GetSizeY() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Texture2D", "Blueprint_GetSizeY"); + + Params::Texture2D_Blueprint_GetSizeY Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveLinearColorAtlas.GetCurvePosition +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UCurveLinearColor* InCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* position (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCurveLinearColorAtlas::GetCurvePosition(class UCurveLinearColor* InCurve, float* position) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveLinearColorAtlas", "GetCurvePosition"); + + Params::CurveLinearColorAtlas_GetCurvePosition Parms{}; + + Parms.InCurve = InCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (position != nullptr) + *position = Parms.position; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.GetVelocityForNavMovement +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UNavMovementComponent::GetVelocityForNavMovement() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "GetVelocityForNavMovement"); + + Params::NavMovementComponent_GetVelocityForNavMovement Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.IsCrouching +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UNavMovementComponent::IsCrouching() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "IsCrouching"); + + Params::NavMovementComponent_IsCrouching Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.IsFalling +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UNavMovementComponent::IsFalling() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "IsFalling"); + + Params::NavMovementComponent_IsFalling Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.IsFlying +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UNavMovementComponent::IsFlying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "IsFlying"); + + Params::NavMovementComponent_IsFlying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.IsMovingOnGround +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UNavMovementComponent::IsMovingOnGround() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "IsMovingOnGround"); + + Params::NavMovementComponent_IsMovingOnGround Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementComponent.IsSwimming +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UNavMovementComponent::IsSwimming() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NavMovementComponent", "IsSwimming"); + + Params::NavMovementComponent_IsSwimming Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PawnMovementComponent.AddInputVector +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& WorldVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForce (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPawnMovementComponent::AddInputVector(const struct FVector& WorldVector, bool bForce) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "AddInputVector"); + + Params::PawnMovementComponent_AddInputVector Parms{}; + + Parms.WorldVector = std::move(WorldVector); + Parms.bForce = bForce; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PawnMovementComponent.ConsumeInputVector +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPawnMovementComponent::ConsumeInputVector() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "ConsumeInputVector"); + + Params::PawnMovementComponent_ConsumeInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PawnMovementComponent.MulticastAsyncPhysicsStateAction +// (Final, RequiredAPI, Net, NetReliable, Native, Event, NetMulticast, Private, HasDefaults) +// Parameters: +// const class UPrimitiveComponent* ActionComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName BoneName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAsyncPhysicsTimestamp& Timestamp (ConstParm, Parm, NoDestructor, NativeAccessSpecifierPublic) +// const EPhysicsStateAction ActionType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ActionDatas (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ActionPosition (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPawnMovementComponent::MulticastAsyncPhysicsStateAction(const class UPrimitiveComponent* ActionComponent, const class FName BoneName, const struct FAsyncPhysicsTimestamp& Timestamp, const EPhysicsStateAction ActionType, const struct FVector& ActionDatas, const struct FVector& ActionPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "MulticastAsyncPhysicsStateAction"); + + Params::PawnMovementComponent_MulticastAsyncPhysicsStateAction Parms{}; + + Parms.ActionComponent = ActionComponent; + Parms.BoneName = BoneName; + Parms.Timestamp = std::move(Timestamp); + Parms.ActionType = ActionType; + Parms.ActionDatas = std::move(ActionDatas); + Parms.ActionPosition = std::move(ActionPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PawnMovementComponent.ServerAsyncPhysicsStateAction +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Private, NetServer, HasDefaults) +// Parameters: +// const class UPrimitiveComponent* ActionComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName BoneName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAsyncPhysicsTimestamp& Timestamp (ConstParm, Parm, NoDestructor, NativeAccessSpecifierPublic) +// const EPhysicsStateAction ActionType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ActionDatas (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ActionPosition (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPawnMovementComponent::ServerAsyncPhysicsStateAction(const class UPrimitiveComponent* ActionComponent, const class FName BoneName, const struct FAsyncPhysicsTimestamp& Timestamp, const EPhysicsStateAction ActionType, const struct FVector& ActionDatas, const struct FVector& ActionPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "ServerAsyncPhysicsStateAction"); + + Params::PawnMovementComponent_ServerAsyncPhysicsStateAction Parms{}; + + Parms.ActionComponent = ActionComponent; + Parms.BoneName = BoneName; + Parms.Timestamp = std::move(Timestamp); + Parms.ActionType = ActionType; + Parms.ActionDatas = std::move(ActionDatas); + Parms.ActionPosition = std::move(ActionPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PawnMovementComponent.GetLastInputVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPawnMovementComponent::GetLastInputVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "GetLastInputVector"); + + Params::PawnMovementComponent_GetLastInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PawnMovementComponent.GetPawnOwner +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* UPawnMovementComponent::GetPawnOwner() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "GetPawnOwner"); + + Params::PawnMovementComponent_GetPawnOwner Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PawnMovementComponent.GetPendingInputVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPawnMovementComponent::GetPendingInputVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "GetPendingInputVector"); + + Params::PawnMovementComponent_GetPendingInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PawnMovementComponent.IsMoveInputIgnored +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPawnMovementComponent::IsMoveInputIgnored() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnMovementComponent", "IsMoveInputIgnored"); + + Params::PawnMovementComponent_IsMoveInputIgnored Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Emitter.Activate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void AEmitter::Activate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "Activate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.Deactivate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void AEmitter::Deactivate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "Deactivate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.OnParticleSystemFinished +// (RequiredAPI, Native, Public) +// Parameters: +// class UParticleSystemComponent* FinishedComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::OnParticleSystemFinished(class UParticleSystemComponent* FinishedComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "OnParticleSystemFinished"); + + Params::Emitter_OnParticleSystemFinished Parms{}; + + Parms.FinishedComponent = FinishedComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.OnRep_bCurrentlyActive +// (RequiredAPI, Native, Public) + +void AEmitter::OnRep_bCurrentlyActive() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "OnRep_bCurrentlyActive"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetActorParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* Param (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetActorParameter(class FName ParameterName, class AActor* Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetActorParameter"); + + Params::Emitter_SetActorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetColorParameter +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetColorParameter(class FName ParameterName, const struct FLinearColor& Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetColorParameter"); + + Params::Emitter_SetColorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = std::move(Param); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetFloatParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetFloatParameter(class FName ParameterName, float Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetFloatParameter"); + + Params::Emitter_SetFloatParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetMaterialParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Param (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetMaterialParameter(class FName ParameterName, class UMaterialInterface* Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetMaterialParameter"); + + Params::Emitter_SetMaterialParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetTemplate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UParticleSystem* NewTemplate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetTemplate(class UParticleSystem* NewTemplate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetTemplate"); + + Params::Emitter_SetTemplate Parms{}; + + Parms.NewTemplate = NewTemplate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.SetVectorParameter +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Param (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AEmitter::SetVectorParameter(class FName ParameterName, const struct FVector& Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "SetVectorParameter"); + + Params::Emitter_SetVectorParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = std::move(Param); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.ToggleActive +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void AEmitter::ToggleActive() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "ToggleActive"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Emitter.IsActive +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AEmitter::IsActive() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Emitter", "IsActive"); + + Params::Emitter_IsActive Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Predefined Function +// Gets a pointer to a valid UObject of type UEngine + +class UEngine* UEngine::GetEngine() +{ + static UEngine* GEngine = nullptr; + + if (GEngine) + return GEngine; + + /* (Re-)Initialize if GEngine is nullptr */ + for (int i = 0; i < UObject::GObjects->Num(); i++) + { + UObject* Obj = UObject::GObjects->GetByIndex(i); + + if (!Obj) + continue; + + if (Obj->IsA(UEngine::StaticClass()) && !Obj->IsDefaultObject()) + { + GEngine = static_cast(Obj); + break; + } + } + + return GEngine; +} + + +// Function Engine.AsyncActionHandleSaveGame.AsyncLoadGameFromSlot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAsyncActionHandleSaveGame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionHandleSaveGame* UAsyncActionHandleSaveGame::AsyncLoadGameFromSlot(class UObject* WorldContextObject, const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionHandleSaveGame", "AsyncLoadGameFromSlot"); + + Params::AsyncActionHandleSaveGame_AsyncLoadGameFromSlot Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionHandleSaveGame.AsyncSaveGameToSlot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USaveGame* SaveGameObject_0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAsyncActionHandleSaveGame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionHandleSaveGame* UAsyncActionHandleSaveGame::AsyncSaveGameToSlot(class UObject* WorldContextObject, class USaveGame* SaveGameObject_0, const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionHandleSaveGame", "AsyncSaveGameToSlot"); + + Params::AsyncActionHandleSaveGame_AsyncSaveGameToSlot Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SaveGameObject_0 = SaveGameObject_0; + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ExponentialHeightFog.OnRep_bEnabled +// (Native, Public) + +void AExponentialHeightFog::OnRep_bEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFog", "OnRep_bEnabled"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceProperty.ApplyDeviceProperty +// (RequiredAPI, Native, Protected) +// Parameters: +// const struct FPlatformUserId& UserId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputDeviceId& DeviceID (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputDeviceProperty::ApplyDeviceProperty(const struct FPlatformUserId& UserId, const struct FInputDeviceId& DeviceID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceProperty", "ApplyDeviceProperty"); + + Params::InputDeviceProperty_ApplyDeviceProperty Parms{}; + + Parms.UserId = std::move(UserId); + Parms.DeviceID = std::move(DeviceID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceProperty.EvaluateDeviceProperty +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// const struct FPlatformUserId& PlatformUser (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputDeviceId& DeviceID (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float DeltaTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float duration (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputDeviceProperty::EvaluateDeviceProperty(const struct FPlatformUserId& PlatformUser, const struct FInputDeviceId& DeviceID, const float DeltaTime, const float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceProperty", "EvaluateDeviceProperty"); + + Params::InputDeviceProperty_EvaluateDeviceProperty Parms{}; + + Parms.PlatformUser = std::move(PlatformUser); + Parms.DeviceID = std::move(DeviceID); + Parms.DeltaTime = DeltaTime; + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceProperty.ResetDeviceProperty +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// const struct FPlatformUserId& PlatformUser (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputDeviceId& DeviceID (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceReset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputDeviceProperty::ResetDeviceProperty(const struct FPlatformUserId& PlatformUser, const struct FInputDeviceId& DeviceID, bool bForceReset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceProperty", "ResetDeviceProperty"); + + Params::InputDeviceProperty_ResetDeviceProperty Parms{}; + + Parms.PlatformUser = std::move(PlatformUser); + Parms.DeviceID = std::move(DeviceID); + Parms.bForceReset = bForceReset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetDirectionalInscatteringColor(const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetDirectionalInscatteringColor"); + + Params::ExponentialHeightFogComponent_SetDirectionalInscatteringColor Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringExponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetDirectionalInscatteringExponent(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetDirectionalInscatteringExponent"); + + Params::ExponentialHeightFogComponent_SetDirectionalInscatteringExponent Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringStartDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetDirectionalInscatteringStartDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetDirectionalInscatteringStartDistance"); + + Params::ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetEndDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetEndDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetEndDistance"); + + Params::ExponentialHeightFogComponent_SetEndDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFogCutoffDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFogCutoffDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFogCutoffDistance"); + + Params::ExponentialHeightFogComponent_SetFogCutoffDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFogDensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFogDensity(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFogDensity"); + + Params::ExponentialHeightFogComponent_SetFogDensity Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFogHeightFalloff +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFogHeightFalloff(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFogHeightFalloff"); + + Params::ExponentialHeightFogComponent_SetFogHeightFalloff Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFogInscatteringColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFogInscatteringColor(const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFogInscatteringColor"); + + Params::ExponentialHeightFogComponent_SetFogInscatteringColor Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFogMaxOpacity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFogMaxOpacity(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFogMaxOpacity"); + + Params::ExponentialHeightFogComponent_SetFogMaxOpacity Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetFullyDirectionalInscatteringColorDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetFullyDirectionalInscatteringColorDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetFullyDirectionalInscatteringColorDistance"); + + Params::ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetHoldout +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewHoldout (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetHoldout(bool bNewHoldout) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetHoldout"); + + Params::ExponentialHeightFogComponent_SetHoldout Parms{}; + + Parms.bNewHoldout = bNewHoldout; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringColorCubemap +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTextureCube* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetInscatteringColorCubemap(class UTextureCube* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetInscatteringColorCubemap"); + + Params::ExponentialHeightFogComponent_SetInscatteringColorCubemap Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringColorCubemapAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetInscatteringColorCubemapAngle(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetInscatteringColorCubemapAngle"); + + Params::ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringTextureTint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetInscatteringTextureTint(const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetInscatteringTextureTint"); + + Params::ExponentialHeightFogComponent_SetInscatteringTextureTint Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetNonDirectionalInscatteringColorDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetNonDirectionalInscatteringColorDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetNonDirectionalInscatteringColorDistance"); + + Params::ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetRenderInMainPass +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetRenderInMainPass(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetRenderInMainPass"); + + Params::ExponentialHeightFogComponent_SetRenderInMainPass Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogData +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const struct FExponentialHeightFogData& NewValue (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetSecondFogData(const struct FExponentialHeightFogData& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetSecondFogData"); + + Params::ExponentialHeightFogComponent_SetSecondFogData Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogDensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetSecondFogDensity(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetSecondFogDensity"); + + Params::ExponentialHeightFogComponent_SetSecondFogDensity Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogHeightFalloff +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetSecondFogHeightFalloff(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetSecondFogHeightFalloff"); + + Params::ExponentialHeightFogComponent_SetSecondFogHeightFalloff Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogHeightOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetSecondFogHeightOffset(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetSecondFogHeightOffset"); + + Params::ExponentialHeightFogComponent_SetSecondFogHeightOffset Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetStartDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetStartDistance(float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetStartDistance"); + + Params::ExponentialHeightFogComponent_SetStartDistance Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFog +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFog(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFog"); + + Params::ExponentialHeightFogComponent_SetVolumetricFog Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogAlbedo +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogAlbedo(const struct FColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogAlbedo"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogAlbedo Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogDistance"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogEmissive +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogEmissive(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogEmissive"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogEmissive Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogExtinctionScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogExtinctionScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogExtinctionScale"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogNearFadeInDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogNearFadeInDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogNearFadeInDistance"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogNearFadeInDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogScatteringDistribution +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogScatteringDistribution(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogScatteringDistribution"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogStartDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UExponentialHeightFogComponent::SetVolumetricFogStartDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ExponentialHeightFogComponent", "SetVolumetricFogStartDistance"); + + Params::ExponentialHeightFogComponent_SetVolumetricFogStartDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Exporter.RunAssetExportTask +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UAssetExportTask* Task (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UExporter::RunAssetExportTask(class UAssetExportTask* Task) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("Exporter", "RunAssetExportTask"); + + Params::Exporter_RunAssetExportTask Parms{}; + + Parms.Task = Task; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Exporter.RunAssetExportTasks +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& ExportTasks (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UExporter::RunAssetExportTasks(const TArray& ExportTasks) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("Exporter", "RunAssetExportTasks"); + + Params::Exporter_RunAssetExportTasks Parms{}; + + Parms.ExportTasks = std::move(ExportTasks); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Exporter.ScriptRunAssetExportTask +// (Event, Public, BlueprintEvent) +// Parameters: +// class UAssetExportTask* Task (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UExporter::ScriptRunAssetExportTask(class UAssetExportTask* Task) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Exporter", "ScriptRunAssetExportTask"); + + Params::Exporter_ScriptRunAssetExportTask Parms{}; + + Parms.Task = Task; + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerAsset.GetDebugColor +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UDataLayerAsset::GetDebugColor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerAsset", "GetDebugColor"); + + Params::DataLayerAsset_GetDebugColor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerAsset.GetType +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EDataLayerType ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerType UDataLayerAsset::GetType() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerAsset", "GetType"); + + Params::DataLayerAsset_GetType Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerAsset.IsClientOnly +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerAsset::IsClientOnly() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerAsset", "IsClientOnly"); + + Params::DataLayerAsset_IsClientOnly Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerAsset.IsRuntime +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerAsset::IsRuntime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerAsset", "IsRuntime"); + + Params::DataLayerAsset_IsRuntime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerAsset.IsServerOnly +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayerAsset::IsServerOnly() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerAsset", "IsServerOnly"); + + Params::DataLayerAsset_IsServerOnly Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelScriptActor.LevelReset +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, BlueprintEvent) + +void ALevelScriptActor::LevelReset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelScriptActor", "LevelReset"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.LevelScriptActor.RemoteEvent +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName EventName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ALevelScriptActor::RemoteEvent(class FName EventName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelScriptActor", "RemoteEvent"); + + Params::LevelScriptActor_RemoteEvent Parms{}; + + Parms.EventName = EventName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelScriptActor.SetCinematicMode +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bCinematicMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHidePlayer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsHUD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsTurning (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALevelScriptActor::SetCinematicMode(bool bCinematicMode, bool bHidePlayer, bool bAffectsHUD, bool bAffectsMovement, bool bAffectsTurning) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelScriptActor", "SetCinematicMode"); + + Params::LevelScriptActor_SetCinematicMode Parms{}; + + Parms.bCinematicMode = bCinematicMode; + Parms.bHidePlayer = bHidePlayer; + Parms.bAffectsHUD = bAffectsHUD; + Parms.bAffectsMovement = bAffectsMovement; + Parms.bAffectsTurning = bAffectsTurning; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelScriptActor.WorldOriginLocationChanged +// (RequiredAPI, Event, Public, HasDefaults, BlueprintEvent) +// Parameters: +// const struct FIntVector& OldOriginLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntVector& NewOriginLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALevelScriptActor::WorldOriginLocationChanged(const struct FIntVector& OldOriginLocation, const struct FIntVector& NewOriginLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelScriptActor", "WorldOriginLocationChanged"); + + Params::LevelScriptActor_WorldOriginLocationChanged Parms{}; + + Parms.OldOriginLocation = std::move(OldOriginLocation); + Parms.NewOriginLocation = std::move(NewOriginLocation); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.FieldNotificationLibrary.BroadcastFieldsValueChanged +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray&FieldIds (Parm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UFieldNotificationLibrary::BroadcastFieldsValueChanged(class UObject* Object, const TArray& FieldIds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("FieldNotificationLibrary", "BroadcastFieldsValueChanged"); + + Params::FieldNotificationLibrary_BroadcastFieldsValueChanged Parms{}; + + Parms.Object = Object; + Parms.FieldIds = std::move(FieldIds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FieldNotificationLibrary.BroadcastFieldValueChanged +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFieldNotificationId& FieldId (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UFieldNotificationLibrary::BroadcastFieldValueChanged(class UObject* Object, const struct FFieldNotificationId& FieldId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("FieldNotificationLibrary", "BroadcastFieldValueChanged"); + + Params::FieldNotificationLibrary_BroadcastFieldValueChanged Parms{}; + + Parms.Object = Object; + Parms.FieldId = std::move(FieldId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.FieldNotificationLibrary.SetPropertyValueAndBroadcast +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// bool NewValueByRef (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& OldValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& NewValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* NetOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasLocalRepNotify (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldFlushDormancyOnSet (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsNetProperty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UFieldNotificationLibrary::SetPropertyValueAndBroadcast(bool NewValueByRef, const int32& OldValue, const int32& NewValue, class UObject* Object, class UObject* NetOwner, bool bHasLocalRepNotify, bool bShouldFlushDormancyOnSet, bool bIsNetProperty) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("FieldNotificationLibrary", "SetPropertyValueAndBroadcast"); + + Params::FieldNotificationLibrary_SetPropertyValueAndBroadcast Parms{}; + + Parms.NewValueByRef = NewValueByRef; + Parms.OldValue = OldValue; + Parms.NewValue = NewValue; + Parms.Object = Object; + Parms.NetOwner = NetOwner; + Parms.bHasLocalRepNotify = bHasLocalRepNotify; + Parms.bShouldFlushDormancyOnSet = bShouldFlushDormancyOnSet; + Parms.bIsNetProperty = bIsNetProperty; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.FieldNotificationLibrary.SetPropertyValueAndBroadcastFields +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// bool NewValueByRef (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& OldValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& NewValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* NetOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasLocalRepNotify (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldFlushDormancyOnSet (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsNetProperty (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray&ExtraFieldIds (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UFieldNotificationLibrary::SetPropertyValueAndBroadcastFields(bool NewValueByRef, const int32& OldValue, const int32& NewValue, class UObject* Object, class UObject* NetOwner, bool bHasLocalRepNotify, bool bShouldFlushDormancyOnSet, bool bIsNetProperty, const TArray& ExtraFieldIds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("FieldNotificationLibrary", "SetPropertyValueAndBroadcastFields"); + + Params::FieldNotificationLibrary_SetPropertyValueAndBroadcastFields Parms{}; + + Parms.NewValueByRef = NewValueByRef; + Parms.OldValue = OldValue; + Parms.NewValue = NewValue; + Parms.Object = Object; + Parms.NetOwner = NetOwner; + Parms.bHasLocalRepNotify = bHasLocalRepNotify; + Parms.bShouldFlushDormancyOnSet = bShouldFlushDormancyOnSet; + Parms.bIsNetProperty = bIsNetProperty; + Parms.ExtraFieldIds = std::move(ExtraFieldIds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LightWeightInstanceManager.OnRep_Transforms +// (RequiredAPI, Native, Protected) + +void ALightWeightInstanceManager::OnRep_Transforms() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightWeightInstanceManager", "OnRep_Transforms"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightWeightInstanceManager.OnSpawnedActorDestroyed +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class AActor* DestroyedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALightWeightInstanceManager::OnSpawnedActorDestroyed(class AActor* DestroyedActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightWeightInstanceManager", "OnSpawnedActorDestroyed"); + + Params::LightWeightInstanceManager_OnSpawnedActorDestroyed Parms{}; + + Parms.DestroyedActor = DestroyedActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightWeightInstanceStaticMeshManager.OnRep_StaticMesh +// (Final, RequiredAPI, Native, Protected) + +void ALightWeightInstanceStaticMeshManager::OnRep_StaticMesh() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightWeightInstanceStaticMeshManager", "OnRep_StaticMesh"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SpotLight.SetInnerConeAngle +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float NewInnerConeAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ASpotLight::SetInnerConeAngle(float NewInnerConeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpotLight", "SetInnerConeAngle"); + + Params::SpotLight_SetInnerConeAngle Parms{}; + + Parms.NewInnerConeAngle = NewInnerConeAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SpotLight.SetOuterConeAngle +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float NewOuterConeAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ASpotLight::SetOuterConeAngle(float NewOuterConeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpotLight", "SetOuterConeAngle"); + + Params::SpotLight_SetOuterConeAngle Parms{}; + + Parms.NewOuterConeAngle = NewOuterConeAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.AddAttribute +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationAttributeIdentifier&AttributeIdentifier (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::AddAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "AddAttribute"); + + Params::AnimationDataController_AddAttribute Parms{}; + + Parms.AttributeIdentifier = std::move(AttributeIdentifier); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.AddBoneCurve +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::AddBoneCurve(class FName BoneName, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "AddBoneCurve"); + + Params::AnimationDataController_AddBoneCurve Parms{}; + + Parms.BoneName = BoneName; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.AddBoneTrack +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataController::AddBoneTrack(class FName BoneName, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "AddBoneTrack"); + + Params::AnimationDataController_AddBoneTrack Parms{}; + + Parms.BoneName = BoneName; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.AddCurve +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CurveFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::AddCurve(const struct FAnimationCurveIdentifier& CurveId, int32 CurveFlags, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "AddCurve"); + + Params::AnimationDataController_AddCurve Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.CurveFlags = CurveFlags; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.CloseBracket +// (Native, Public, BlueprintCallable) +// Parameters: +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::CloseBracket(bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "CloseBracket"); + + Params::AnimationDataController_CloseBracket Parms{}; + + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.DuplicateAttribute +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationAttributeIdentifier&AttributeIdentifier (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimationAttributeIdentifier&NewAttributeIdentifier (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::DuplicateAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, const struct FAnimationAttributeIdentifier& NewAttributeIdentifier, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "DuplicateAttribute"); + + Params::AnimationDataController_DuplicateAttribute Parms{}; + + Parms.AttributeIdentifier = std::move(AttributeIdentifier); + Parms.NewAttributeIdentifier = std::move(NewAttributeIdentifier); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.DuplicateCurve +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CopyCurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimationCurveIdentifier& NewCurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::DuplicateCurve(const struct FAnimationCurveIdentifier& CopyCurveId, const struct FAnimationCurveIdentifier& NewCurveId, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "DuplicateCurve"); + + Params::AnimationDataController_DuplicateCurve Parms{}; + + Parms.CopyCurveId = std::move(CopyCurveId); + Parms.NewCurveId = std::move(NewCurveId); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.FindOrAddCurveNamesOnSkeleton +// (Native, Public, BlueprintCallable) +// Parameters: +// class USkeleton* Skeleton (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERawCurveTrackTypes SupportedCurveType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::FindOrAddCurveNamesOnSkeleton(class USkeleton* Skeleton, ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "FindOrAddCurveNamesOnSkeleton"); + + Params::AnimationDataController_FindOrAddCurveNamesOnSkeleton Parms{}; + + Parms.Skeleton = Skeleton; + Parms.SupportedCurveType = SupportedCurveType; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.InsertBoneTrack +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 DesiredIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataController::InsertBoneTrack(class FName BoneName, int32 DesiredIndex, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "InsertBoneTrack"); + + Params::AnimationDataController_InsertBoneTrack Parms{}; + + Parms.BoneName = BoneName; + Parms.DesiredIndex = DesiredIndex; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.OpenBracket +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FText& InTitle (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::OpenBracket(const class FText& InTitle, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "OpenBracket"); + + Params::AnimationDataController_OpenBracket Parms{}; + + Parms.InTitle = std::move(InTitle); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.RemoveAllAttributes +// (Native, Public, BlueprintCallable) +// Parameters: +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataController::RemoveAllAttributes(bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAllAttributes"); + + Params::AnimationDataController_RemoveAllAttributes Parms{}; + + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveAllAttributesForBone +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& BoneName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 IAnimationDataController::RemoveAllAttributesForBone(const class FName& BoneName, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAllAttributesForBone"); + + Params::AnimationDataController_RemoveAllAttributesForBone Parms{}; + + Parms.BoneName = BoneName; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveAllBoneTracks +// (Native, Public, BlueprintCallable) +// Parameters: +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::RemoveAllBoneTracks(bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAllBoneTracks"); + + Params::AnimationDataController_RemoveAllBoneTracks Parms{}; + + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.RemoveAllCurvesOfType +// (Native, Public, BlueprintCallable) +// Parameters: +// ERawCurveTrackTypes SupportedCurveType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::RemoveAllCurvesOfType(ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAllCurvesOfType"); + + Params::AnimationDataController_RemoveAllCurvesOfType Parms{}; + + Parms.SupportedCurveType = SupportedCurveType; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.RemoveAttribute +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationAttributeIdentifier&AttributeIdentifier (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveAttribute(const struct FAnimationAttributeIdentifier& AttributeIdentifier, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAttribute"); + + Params::AnimationDataController_RemoveAttribute Parms{}; + + Parms.AttributeIdentifier = std::move(AttributeIdentifier); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveAttributeKey +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationAttributeIdentifier&AttributeIdentifier (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveAttributeKey(const struct FAnimationAttributeIdentifier& AttributeIdentifier, float Time, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveAttributeKey"); + + Params::AnimationDataController_RemoveAttributeKey Parms{}; + + Parms.AttributeIdentifier = std::move(AttributeIdentifier); + Parms.Time = Time; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveBoneTrack +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveBoneTrack(class FName BoneName, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveBoneTrack"); + + Params::AnimationDataController_RemoveBoneTrack Parms{}; + + Parms.BoneName = BoneName; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveCurve +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveCurve(const struct FAnimationCurveIdentifier& CurveId, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveCurve"); + + Params::AnimationDataController_RemoveCurve Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveCurveKey +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveCurveKey"); + + Params::AnimationDataController_RemoveCurveKey Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Time = Time; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RemoveTransformCurveKey +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RemoveTransformCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RemoveTransformCurveKey"); + + Params::AnimationDataController_RemoveTransformCurveKey Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Time = Time; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.RenameCurve +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveToRenameId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FAnimationCurveIdentifier& NewCurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::RenameCurve(const struct FAnimationCurveIdentifier& CurveToRenameId, const struct FAnimationCurveIdentifier& NewCurveId, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "RenameCurve"); + + Params::AnimationDataController_RenameCurve Parms{}; + + Parms.CurveToRenameId = std::move(CurveToRenameId); + Parms.NewCurveId = std::move(NewCurveId); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.Resize +// (Native, Public, BlueprintCallable) +// Parameters: +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float T0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float T1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::Resize(float Length, float T0, float T1, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "Resize"); + + Params::AnimationDataController_Resize Parms{}; + + Parms.Length = Length; + Parms.T0 = T0; + Parms.T1 = T1; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.ResizeInFrames +// (Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FFrameNumber& NewLengthInFrames (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFrameNumber& T0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFrameNumber& T1 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::ResizeInFrames(const struct FFrameNumber& NewLengthInFrames, const struct FFrameNumber& T0, const struct FFrameNumber& T1, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "ResizeInFrames"); + + Params::AnimationDataController_ResizeInFrames Parms{}; + + Parms.NewLengthInFrames = std::move(NewLengthInFrames); + Parms.T0 = std::move(T0); + Parms.T1 = std::move(T1); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.ResizeNumberOfFrames +// (Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FFrameNumber& NewLengthInFrames (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFrameNumber& T0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFrameNumber& T1 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::ResizeNumberOfFrames(const struct FFrameNumber& NewLengthInFrames, const struct FFrameNumber& T0, const struct FFrameNumber& T1, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "ResizeNumberOfFrames"); + + Params::AnimationDataController_ResizeNumberOfFrames Parms{}; + + Parms.NewLengthInFrames = std::move(NewLengthInFrames); + Parms.T0 = std::move(T0); + Parms.T1 = std::move(T1); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.ResizePlayLength +// (Native, Public, BlueprintCallable) +// Parameters: +// float NewLength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float T0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float T1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::ResizePlayLength(float NewLength, float T0, float T1, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "ResizePlayLength"); + + Params::AnimationDataController_ResizePlayLength Parms{}; + + Parms.NewLength = NewLength; + Parms.T0 = T0; + Parms.T1 = T1; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.ScaleCurve +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Factor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::ScaleCurve(const struct FAnimationCurveIdentifier& CurveId, float Origin, float Factor, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "ScaleCurve"); + + Params::AnimationDataController_ScaleCurve Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Origin = Origin; + Parms.Factor = Factor; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetBoneTrackKeys +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& PositionalKeys (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& RotationalKeys (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ScalingKeys (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetBoneTrackKeys(class FName BoneName, const TArray& PositionalKeys, const TArray& RotationalKeys, const TArray& ScalingKeys, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetBoneTrackKeys"); + + Params::AnimationDataController_SetBoneTrackKeys Parms{}; + + Parms.BoneName = BoneName; + Parms.PositionalKeys = std::move(PositionalKeys); + Parms.RotationalKeys = std::move(RotationalKeys); + Parms.ScalingKeys = std::move(ScalingKeys); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveColor +// (Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveColor(const struct FAnimationCurveIdentifier& CurveId, const struct FLinearColor& Color, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveColor"); + + Params::AnimationDataController_SetCurveColor Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Color = std::move(Color); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveComment +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Comment (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveComment(const struct FAnimationCurveIdentifier& CurveId, const class FString& Comment, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveComment"); + + Params::AnimationDataController_SetCurveComment Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Comment = std::move(Comment); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveFlag +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAnimAssetCurveFlags Flag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveFlag(const struct FAnimationCurveIdentifier& CurveId, EAnimAssetCurveFlags Flag, bool bState, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveFlag"); + + Params::AnimationDataController_SetCurveFlag Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Flag = Flag; + Parms.bState = bState; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveFlags +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Flags_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveFlags(const struct FAnimationCurveIdentifier& CurveId, int32 Flags_0, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveFlags"); + + Params::AnimationDataController_SetCurveFlags Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Flags_0 = Flags_0; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveKey +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRichCurveKey& Key (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveKey(const struct FAnimationCurveIdentifier& CurveId, const struct FRichCurveKey& Key, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveKey"); + + Params::AnimationDataController_SetCurveKey Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Key = std::move(Key); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetCurveKeys +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& CurveKeys (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetCurveKeys(const struct FAnimationCurveIdentifier& CurveId, const TArray& CurveKeys, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetCurveKeys"); + + Params::AnimationDataController_SetCurveKeys Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.CurveKeys = std::move(CurveKeys); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetFrameRate +// (Native, Public, BlueprintCallable) +// Parameters: +// const struct FFrameRate& FrameRate (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::SetFrameRate(const struct FFrameRate& FrameRate, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetFrameRate"); + + Params::AnimationDataController_SetFrameRate Parms{}; + + Parms.FrameRate = std::move(FrameRate); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.SetModel +// (Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInModel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::SetModel(TScriptInterface InModel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetModel"); + + Params::AnimationDataController_SetModel Parms{}; + + Parms.InModel = InModel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.SetNumberOfFrames +// (Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FFrameNumber& NewLengthInFrames (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::SetNumberOfFrames(const struct FFrameNumber& NewLengthInFrames, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetNumberOfFrames"); + + Params::AnimationDataController_SetNumberOfFrames Parms{}; + + Parms.NewLengthInFrames = std::move(NewLengthInFrames); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.SetPlayLength +// (Native, Public, BlueprintCallable) +// Parameters: +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::SetPlayLength(float Length, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetPlayLength"); + + Params::AnimationDataController_SetPlayLength Parms{}; + + Parms.Length = Length; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.SetTransformCurveKey +// (Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& Value (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetTransformCurveKey(const struct FAnimationCurveIdentifier& CurveId, float Time, const struct FTransform& Value, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetTransformCurveKey"); + + Params::AnimationDataController_SetTransformCurveKey Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.Time = Time; + Parms.Value = std::move(Value); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.SetTransformCurveKeys +// (Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FAnimationCurveIdentifier& CurveId (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& TransformValues (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& TimeKeys (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IAnimationDataController::SetTransformCurveKeys(const struct FAnimationCurveIdentifier& CurveId, const TArray& TransformValues, const TArray& TimeKeys, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "SetTransformCurveKeys"); + + Params::AnimationDataController_SetTransformCurveKeys Parms{}; + + Parms.CurveId = std::move(CurveId); + Parms.TransformValues = std::move(TransformValues); + Parms.TimeKeys = std::move(TimeKeys); + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationDataController.UpdateCurveNamesFromSkeleton +// (Native, Public, BlueprintCallable) +// Parameters: +// const class USkeleton* Skeleton (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERawCurveTrackTypes SupportedCurveType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldTransact (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void IAnimationDataController::UpdateCurveNamesFromSkeleton(const class USkeleton* Skeleton, ERawCurveTrackTypes SupportedCurveType, bool bShouldTransact) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "UpdateCurveNamesFromSkeleton"); + + Params::AnimationDataController_UpdateCurveNamesFromSkeleton Parms{}; + + Parms.Skeleton = Skeleton; + Parms.SupportedCurveType = SupportedCurveType; + Parms.bShouldTransact = bShouldTransact; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationDataController.GetModelInterface +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TScriptInterfaceReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TScriptInterface IAnimationDataController::GetModelInterface() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("AnimationDataController", "GetModelInterface"); + + Params::AnimationDataController_GetModelInterface Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.AddModulationRouting +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& Modulators (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const EModulationDestination Destination (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::AddModulationRouting(const TSet& Modulators, const EModulationDestination Destination) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "AddModulationRouting"); + + Params::AudioComponent_AddModulationRouting Parms{}; + + Parms.Modulators = std::move(Modulators); + Parms.Destination = Destination; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.AdjustAttenuation +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSoundAttenuationSettings& InAttenuationSettings (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UAudioComponent::AdjustAttenuation(const struct FSoundAttenuationSettings& InAttenuationSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "AdjustAttenuation"); + + Params::AudioComponent_AdjustAttenuation Parms{}; + + Parms.InAttenuationSettings = std::move(InAttenuationSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.AdjustVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float AdjustVolumeDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AdjustVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EAudioFaderCurve FadeCurve (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::AdjustVolume(float AdjustVolumeDuration, float AdjustVolumeLevel, const EAudioFaderCurve FadeCurve) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "AdjustVolume"); + + Params::AudioComponent_AdjustVolume Parms{}; + + Parms.AdjustVolumeDuration = AdjustVolumeDuration; + Parms.AdjustVolumeLevel = AdjustVolumeLevel; + Parms.FadeCurve = FadeCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.BP_GetAttenuationSettingsToApply +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FSoundAttenuationSettings* OutAttenuationSettings (Parm, OutParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::BP_GetAttenuationSettingsToApply(struct FSoundAttenuationSettings* OutAttenuationSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "BP_GetAttenuationSettingsToApply"); + + Params::AudioComponent_BP_GetAttenuationSettingsToApply Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutAttenuationSettings != nullptr) + *OutAttenuationSettings = std::move(Parms.OutAttenuationSettings); + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.FadeIn +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float FadeInDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EAudioFaderCurve FadeCurve (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::FadeIn(float FadeInDuration, float FadeVolumeLevel, float StartTime, const EAudioFaderCurve FadeCurve) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "FadeIn"); + + Params::AudioComponent_FadeIn Parms{}; + + Parms.FadeInDuration = FadeInDuration; + Parms.FadeVolumeLevel = FadeVolumeLevel; + Parms.StartTime = StartTime; + Parms.FadeCurve = FadeCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.FadeOut +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float FadeOutDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EAudioFaderCurve FadeCurve (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::FadeOut(float FadeOutDuration, float FadeVolumeLevel, const EAudioFaderCurve FadeCurve) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "FadeOut"); + + Params::AudioComponent_FadeOut Parms{}; + + Parms.FadeOutDuration = FadeOutDuration; + Parms.FadeVolumeLevel = FadeVolumeLevel; + Parms.FadeCurve = FadeCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.GetCookedEnvelopeData +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// float* OutEnvelopeData (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::GetCookedEnvelopeData(float* OutEnvelopeData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetCookedEnvelopeData"); + + Params::AudioComponent_GetCookedEnvelopeData Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutEnvelopeData != nullptr) + *OutEnvelopeData = Parms.OutEnvelopeData; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.GetCookedEnvelopeDataForAllPlayingSounds +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray*OutEnvelopeData (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::GetCookedEnvelopeDataForAllPlayingSounds(TArray* OutEnvelopeData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetCookedEnvelopeDataForAllPlayingSounds"); + + Params::AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutEnvelopeData != nullptr) + *OutEnvelopeData = std::move(Parms.OutEnvelopeData); + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.GetCookedFFTData +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& FrequenciesToGet (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutSoundWaveSpectralData (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::GetCookedFFTData(const TArray& FrequenciesToGet, TArray* OutSoundWaveSpectralData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetCookedFFTData"); + + Params::AudioComponent_GetCookedFFTData Parms{}; + + Parms.FrequenciesToGet = std::move(FrequenciesToGet); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSoundWaveSpectralData != nullptr) + *OutSoundWaveSpectralData = std::move(Parms.OutSoundWaveSpectralData); + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.GetCookedFFTDataForAllPlayingSounds +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray*OutSoundWaveSpectralData (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::GetCookedFFTDataForAllPlayingSounds(TArray* OutSoundWaveSpectralData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetCookedFFTDataForAllPlayingSounds"); + + Params::AudioComponent_GetCookedFFTDataForAllPlayingSounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSoundWaveSpectralData != nullptr) + *OutSoundWaveSpectralData = std::move(Parms.OutSoundWaveSpectralData); + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.GetModulators +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const EModulationDestination Destination (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSet ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +TSet UAudioComponent::GetModulators(const EModulationDestination Destination) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetModulators"); + + Params::AudioComponent_GetModulators Parms{}; + + Parms.Destination = Destination; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.Play +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::Play(float StartTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "Play"); + + Params::AudioComponent_Play Parms{}; + + Parms.StartTime = StartTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.PlayQuantized +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UQuartzClockHandle*& InClockHandle (Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuartzQuantizationBoundary& InQuantizationBoundary (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TDelegate&InDelegate (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InStartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InFadeInDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InFadeVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAudioFaderCurve InFadeCurve (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::PlayQuantized(const class UObject* WorldContextObject, class UQuartzClockHandle*& InClockHandle, struct FQuartzQuantizationBoundary& InQuantizationBoundary, const TDelegate& InDelegate, float InStartTime, float InFadeInDuration, float InFadeVolumeLevel, EAudioFaderCurve InFadeCurve) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "PlayQuantized"); + + Params::AudioComponent_PlayQuantized Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InClockHandle = InClockHandle; + Parms.InQuantizationBoundary = std::move(InQuantizationBoundary); + Parms.InDelegate = InDelegate; + Parms.InStartTime = InStartTime; + Parms.InFadeInDuration = InFadeInDuration; + Parms.InFadeVolumeLevel = InFadeVolumeLevel; + Parms.InFadeCurve = InFadeCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InClockHandle = Parms.InClockHandle; + InQuantizationBoundary = std::move(Parms.InQuantizationBoundary); +} + + +// Function Engine.AudioComponent.RemoveModulationRouting +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& Modulators (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const EModulationDestination Destination (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::RemoveModulationRouting(const TSet& Modulators, const EModulationDestination Destination) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "RemoveModulationRouting"); + + Params::AudioComponent_RemoveModulationRouting Parms{}; + + Parms.Modulators = std::move(Modulators); + Parms.Destination = Destination; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetAttenuationOverrides +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSoundAttenuationSettings& InAttenuationOverrides (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UAudioComponent::SetAttenuationOverrides(const struct FSoundAttenuationSettings& InAttenuationOverrides) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetAttenuationOverrides"); + + Params::AudioComponent_SetAttenuationOverrides Parms{}; + + Parms.InAttenuationOverrides = std::move(InAttenuationOverrides); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetAttenuationSettings +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundAttenuation* InAttenuationSettings (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetAttenuationSettings(class USoundAttenuation* InAttenuationSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetAttenuationSettings"); + + Params::AudioComponent_SetAttenuationSettings Parms{}; + + Parms.InAttenuationSettings = InAttenuationSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetAudioBusSendPostEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAudioBus* AudioBus (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AudioBusSendLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetAudioBusSendPostEffect(class UAudioBus* AudioBus, float AudioBusSendLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetAudioBusSendPostEffect"); + + Params::AudioComponent_SetAudioBusSendPostEffect Parms{}; + + Parms.AudioBus = AudioBus; + Parms.AudioBusSendLevel = AudioBusSendLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetAudioBusSendPreEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAudioBus* AudioBus (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AudioBusSendLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetAudioBusSendPreEffect(class UAudioBus* AudioBus, float AudioBusSendLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetAudioBusSendPreEffect"); + + Params::AudioComponent_SetAudioBusSendPreEffect Parms{}; + + Parms.AudioBus = AudioBus; + Parms.AudioBusSendLevel = AudioBusSendLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetBoolParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetBoolParameter(class FName InName, bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetBoolParameter"); + + Params::AudioComponent_SetBoolParameter Parms{}; + + Parms.InName = InName; + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetFloatParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InFloat (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetFloatParameter(class FName InName, float InFloat) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetFloatParameter"); + + Params::AudioComponent_SetFloatParameter Parms{}; + + Parms.InName = InName; + Parms.InFloat = InFloat; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetHighPassFilterEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InHighPassFilterEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetHighPassFilterEnabled(bool InHighPassFilterEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetHighPassFilterEnabled"); + + Params::AudioComponent_SetHighPassFilterEnabled Parms{}; + + Parms.InHighPassFilterEnabled = InHighPassFilterEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetHighPassFilterFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InHighPassFilterFrequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetHighPassFilterFrequency(float InHighPassFilterFrequency) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetHighPassFilterFrequency"); + + Params::AudioComponent_SetHighPassFilterFrequency Parms{}; + + Parms.InHighPassFilterFrequency = InHighPassFilterFrequency; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetIntParameter +// (Native, Public, BlueprintCallable) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetIntParameter(class FName InName, int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetIntParameter"); + + Params::AudioComponent_SetIntParameter Parms{}; + + Parms.InName = InName; + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetLowPassFilterEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InLowPassFilterEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetLowPassFilterEnabled(bool InLowPassFilterEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetLowPassFilterEnabled"); + + Params::AudioComponent_SetLowPassFilterEnabled Parms{}; + + Parms.InLowPassFilterEnabled = InLowPassFilterEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetLowPassFilterFrequency +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InLowPassFilterFrequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetLowPassFilterFrequency(float InLowPassFilterFrequency) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetLowPassFilterFrequency"); + + Params::AudioComponent_SetLowPassFilterFrequency Parms{}; + + Parms.InLowPassFilterFrequency = InLowPassFilterFrequency; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetModulationRouting +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& Modulators (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const EModulationDestination Destination (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EModulationRouting RoutingMethod (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetModulationRouting(const TSet& Modulators, const EModulationDestination Destination, const EModulationRouting RoutingMethod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetModulationRouting"); + + Params::AudioComponent_SetModulationRouting Parms{}; + + Parms.Modulators = std::move(Modulators); + Parms.Destination = Destination; + Parms.RoutingMethod = RoutingMethod; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetOutputToBusOnly +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInOutputToBusOnly (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetOutputToBusOnly(bool bInOutputToBusOnly) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetOutputToBusOnly"); + + Params::AudioComponent_SetOutputToBusOnly Parms{}; + + Parms.bInOutputToBusOnly = bInOutputToBusOnly; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetOverrideAttenuation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInOverrideAttenuation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetOverrideAttenuation(bool bInOverrideAttenuation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetOverrideAttenuation"); + + Params::AudioComponent_SetOverrideAttenuation Parms{}; + + Parms.bInOverrideAttenuation = bInOverrideAttenuation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetPaused +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bPause (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetPaused(bool bPause) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetPaused"); + + Params::AudioComponent_SetPaused Parms{}; + + Parms.bPause = bPause; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetPitchMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewPitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetPitchMultiplier(float NewPitchMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetPitchMultiplier"); + + Params::AudioComponent_SetPitchMultiplier Parms{}; + + Parms.NewPitchMultiplier = NewPitchMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetSound +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundBase* NewSound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetSound(class USoundBase* NewSound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetSound"); + + Params::AudioComponent_SetSound Parms{}; + + Parms.NewSound = NewSound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetSourceBusSendPostEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundSourceBus* SoundSourceBus (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SourceBusSendLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetSourceBusSendPostEffect(class USoundSourceBus* SoundSourceBus, float SourceBusSendLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetSourceBusSendPostEffect"); + + Params::AudioComponent_SetSourceBusSendPostEffect Parms{}; + + Parms.SoundSourceBus = SoundSourceBus; + Parms.SourceBusSendLevel = SourceBusSendLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetSourceBusSendPreEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundSourceBus* SoundSourceBus (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SourceBusSendLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetSourceBusSendPreEffect(class USoundSourceBus* SoundSourceBus, float SourceBusSendLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetSourceBusSendPreEffect"); + + Params::AudioComponent_SetSourceBusSendPreEffect Parms{}; + + Parms.SoundSourceBus = SoundSourceBus; + Parms.SourceBusSendLevel = SourceBusSendLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetSubmixSend +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundSubmixBase* Submix (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SendLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetSubmixSend(class USoundSubmixBase* Submix, float SendLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetSubmixSend"); + + Params::AudioComponent_SetSubmixSend Parms{}; + + Parms.Submix = Submix; + Parms.SendLevel = SendLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetUISound +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInUISound (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetUISound(bool bInUISound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetUISound"); + + Params::AudioComponent_SetUISound Parms{}; + + Parms.bInUISound = bInUISound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetVolumeMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewVolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetVolumeMultiplier(float NewVolumeMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetVolumeMultiplier"); + + Params::AudioComponent_SetVolumeMultiplier Parms{}; + + Parms.NewVolumeMultiplier = NewVolumeMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.SetWaveParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundWave* InWave (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::SetWaveParameter(class FName InName, class USoundWave* InWave) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "SetWaveParameter"); + + Params::AudioComponent_SetWaveParameter Parms{}; + + Parms.InName = InName; + Parms.InWave = InWave; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.Stop +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UAudioComponent::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.StopDelayed +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float DelayTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAudioComponent::StopDelayed(float DelayTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "StopDelayed"); + + Params::AudioComponent_StopDelayed Parms{}; + + Parms.DelayTime = DelayTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioComponent.GetPlayState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EAudioComponentPlayState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EAudioComponentPlayState UAudioComponent::GetPlayState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "GetPlayState"); + + Params::AudioComponent_GetPlayState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.HasCookedAmplitudeEnvelopeData +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::HasCookedAmplitudeEnvelopeData() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "HasCookedAmplitudeEnvelopeData"); + + Params::AudioComponent_HasCookedAmplitudeEnvelopeData Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.HasCookedFFTData +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::HasCookedFFTData() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "HasCookedFFTData"); + + Params::AudioComponent_HasCookedFFTData Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.IsPlaying +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::IsPlaying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "IsPlaying"); + + Params::AudioComponent_IsPlaying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioComponent.IsVirtualized +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAudioComponent::IsVirtualized() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioComponent", "IsVirtualized"); + + Params::AudioComponent_IsVirtualized Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ShapeComponent.SetLineThickness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UShapeComponent::SetLineThickness(float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ShapeComponent", "SetLineThickness"); + + Params::ShapeComponent_SetLineThickness Parms{}; + + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BoxComponent.SetBoxExtent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InBoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBoxComponent::SetBoxExtent(const struct FVector& InBoxExtent, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BoxComponent", "SetBoxExtent"); + + Params::BoxComponent_SetBoxExtent Parms{}; + + Parms.InBoxExtent = std::move(InBoxExtent); + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BoxComponent.GetScaledBoxExtent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UBoxComponent::GetScaledBoxExtent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BoxComponent", "GetScaledBoxExtent"); + + Params::BoxComponent_GetScaledBoxExtent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BoxComponent.GetUnscaledBoxExtent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UBoxComponent::GetUnscaledBoxExtent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BoxComponent", "GetUnscaledBoxExtent"); + + Params::BoxComponent_GetUnscaledBoxExtent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.EqualEqual_InputDeviceId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDeviceId& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputDeviceId& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::EqualEqual_InputDeviceId(const struct FInputDeviceId& A, const struct FInputDeviceId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "EqualEqual_InputDeviceId"); + + Params::InputDeviceLibrary_EqualEqual_InputDeviceId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.EqualEqual_PlatformUserId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPlatformUserId& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlatformUserId& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::EqualEqual_PlatformUserId(const struct FPlatformUserId& A, const struct FPlatformUserId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "EqualEqual_PlatformUserId"); + + Params::InputDeviceLibrary_EqualEqual_PlatformUserId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetAllActiveUsers +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* OutUsers (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInputDeviceLibrary::GetAllActiveUsers(TArray* OutUsers) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetAllActiveUsers"); + + Params::InputDeviceLibrary_GetAllActiveUsers Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutUsers != nullptr) + *OutUsers = std::move(Parms.OutUsers); + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetAllConnectedInputDevices +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* OutInputDevices (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInputDeviceLibrary::GetAllConnectedInputDevices(TArray* OutInputDevices) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetAllConnectedInputDevices"); + + Params::InputDeviceLibrary_GetAllConnectedInputDevices Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutInputDevices != nullptr) + *OutInputDevices = std::move(Parms.OutInputDevices); + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetAllInputDevices +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* OutInputDevices (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInputDeviceLibrary::GetAllInputDevices(TArray* OutInputDevices) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetAllInputDevices"); + + Params::InputDeviceLibrary_GetAllInputDevices Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutInputDevices != nullptr) + *OutInputDevices = std::move(Parms.OutInputDevices); + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetAllInputDevicesForUser +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FPlatformUserId& UserId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutInputDevices (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UInputDeviceLibrary::GetAllInputDevicesForUser(const struct FPlatformUserId& UserId, TArray* OutInputDevices) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetAllInputDevicesForUser"); + + Params::InputDeviceLibrary_GetAllInputDevicesForUser Parms{}; + + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutInputDevices != nullptr) + *OutInputDevices = std::move(Parms.OutInputDevices); + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetDefaultInputDevice +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FInputDeviceId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FInputDeviceId UInputDeviceLibrary::GetDefaultInputDevice() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetDefaultInputDevice"); + + Params::InputDeviceLibrary_GetDefaultInputDevice Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetInputDeviceConnectionState +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const struct FInputDeviceId& DeviceID (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EInputDeviceConnectionState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EInputDeviceConnectionState UInputDeviceLibrary::GetInputDeviceConnectionState(const struct FInputDeviceId& DeviceID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetInputDeviceConnectionState"); + + Params::InputDeviceLibrary_GetInputDeviceConnectionState Parms{}; + + Parms.DeviceID = std::move(DeviceID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetPlayerControllerFromInputDevice +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const struct FInputDeviceId& DeviceID (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UInputDeviceLibrary::GetPlayerControllerFromInputDevice(const struct FInputDeviceId& DeviceID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetPlayerControllerFromInputDevice"); + + Params::InputDeviceLibrary_GetPlayerControllerFromInputDevice Parms{}; + + Parms.DeviceID = std::move(DeviceID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetPlayerControllerFromPlatformUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const struct FPlatformUserId& UserId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UInputDeviceLibrary::GetPlayerControllerFromPlatformUser(const struct FPlatformUserId& UserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetPlayerControllerFromPlatformUser"); + + Params::InputDeviceLibrary_GetPlayerControllerFromPlatformUser Parms{}; + + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetPrimaryInputDeviceForUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const struct FPlatformUserId& UserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FInputDeviceId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FInputDeviceId UInputDeviceLibrary::GetPrimaryInputDeviceForUser(const struct FPlatformUserId& UserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetPrimaryInputDeviceForUser"); + + Params::InputDeviceLibrary_GetPrimaryInputDeviceForUser Parms{}; + + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetPrimaryPlatformUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId UInputDeviceLibrary::GetPrimaryPlatformUser() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetPrimaryPlatformUser"); + + Params::InputDeviceLibrary_GetPrimaryPlatformUser Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetUserForInputDevice +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const struct FInputDeviceId& DeviceID (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId UInputDeviceLibrary::GetUserForInputDevice(const struct FInputDeviceId& DeviceID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetUserForInputDevice"); + + Params::InputDeviceLibrary_GetUserForInputDevice Parms{}; + + Parms.DeviceID = std::move(DeviceID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.GetUserForUnpairedInputDevices +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId UInputDeviceLibrary::GetUserForUnpairedInputDevices() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "GetUserForUnpairedInputDevices"); + + Params::InputDeviceLibrary_GetUserForUnpairedInputDevices Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.InputDeviceId_None +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FInputDeviceId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FInputDeviceId UInputDeviceLibrary::InputDeviceId_None() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "InputDeviceId_None"); + + Params::InputDeviceLibrary_InputDeviceId_None Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.IsDevicePropertyHandleValid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDevicePropertyHandle&InHandle (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::IsDevicePropertyHandleValid(const struct FInputDevicePropertyHandle& InHandle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "IsDevicePropertyHandleValid"); + + Params::InputDeviceLibrary_IsDevicePropertyHandleValid Parms{}; + + Parms.InHandle = std::move(InHandle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.IsInputDeviceMappedToUnpairedUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDeviceId& InputDevice (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::IsInputDeviceMappedToUnpairedUser(const struct FInputDeviceId& InputDevice) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "IsInputDeviceMappedToUnpairedUser"); + + Params::InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser Parms{}; + + Parms.InputDevice = std::move(InputDevice); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.IsUnpairedUserId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPlatformUserId& PlatformId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::IsUnpairedUserId(const struct FPlatformUserId& PlatformId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "IsUnpairedUserId"); + + Params::InputDeviceLibrary_IsUnpairedUserId Parms{}; + + Parms.PlatformId = std::move(PlatformId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.IsValidInputDevice +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDeviceId& DeviceID (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::IsValidInputDevice(const struct FInputDeviceId& DeviceID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "IsValidInputDevice"); + + Params::InputDeviceLibrary_IsValidInputDevice Parms{}; + + Parms.DeviceID = std::move(DeviceID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.IsValidPlatformId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPlatformUserId& UserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::IsValidPlatformId(const struct FPlatformUserId& UserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "IsValidPlatformId"); + + Params::InputDeviceLibrary_IsValidPlatformId Parms{}; + + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.NotEqual_InputDeviceId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDeviceId& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInputDeviceId& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::NotEqual_InputDeviceId(const struct FInputDeviceId& A, const struct FInputDeviceId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "NotEqual_InputDeviceId"); + + Params::InputDeviceLibrary_NotEqual_InputDeviceId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.NotEqual_PlatformUserId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPlatformUserId& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlatformUserId& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceLibrary::NotEqual_PlatformUserId(const struct FPlatformUserId& A, const struct FPlatformUserId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "NotEqual_PlatformUserId"); + + Params::InputDeviceLibrary_NotEqual_PlatformUserId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceLibrary.PlatformUserId_None +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId UInputDeviceLibrary::PlatformUserId_None() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputDeviceLibrary", "PlatformUserId_None"); + + Params::InputDeviceLibrary_PlatformUserId_None Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Interface_AssetUserData.AddAssetUserDataOfClass +// (Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InUserDataClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IInterface_AssetUserData::AddAssetUserDataOfClass(TSubclassOf InUserDataClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("Interface_AssetUserData", "AddAssetUserDataOfClass"); + + Params::Interface_AssetUserData_AddAssetUserDataOfClass Parms{}; + + Parms.InUserDataClass = InUserDataClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Interface_AssetUserData.GetAssetUserDataOfClass +// (Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InUserDataClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAssetUserData* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAssetUserData* IInterface_AssetUserData::GetAssetUserDataOfClass(TSubclassOf InUserDataClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("Interface_AssetUserData", "GetAssetUserDataOfClass"); + + Params::Interface_AssetUserData_GetAssetUserDataOfClass Parms{}; + + Parms.InUserDataClass = InUserDataClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Interface_AssetUserData.HasAssetUserDataOfClass +// (Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InUserDataClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool IInterface_AssetUserData::HasAssetUserDataOfClass(TSubclassOf InUserDataClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("Interface_AssetUserData", "HasAssetUserDataOfClass"); + + Params::Interface_AssetUserData_HasAssetUserDataOfClass Parms{}; + + Parms.InUserDataClass = InUserDataClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsCurrency_Float +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERoundingMode RoundingMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& CurrencyCode (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsCurrency_Float(float Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits, const class FString& CurrencyCode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsCurrency_Float"); + + Params::KismetTextLibrary_AsCurrency_Float Parms{}; + + Parms.Value = Value; + Parms.RoundingMode = RoundingMode; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + Parms.MinimumFractionalDigits = MinimumFractionalDigits; + Parms.MaximumFractionalDigits = MaximumFractionalDigits; + Parms.CurrencyCode = std::move(CurrencyCode); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsCurrency_Integer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERoundingMode RoundingMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& CurrencyCode (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsCurrency_Integer(int32 Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits, const class FString& CurrencyCode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsCurrency_Integer"); + + Params::KismetTextLibrary_AsCurrency_Integer Parms{}; + + Parms.Value = Value; + Parms.RoundingMode = RoundingMode; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + Parms.MinimumFractionalDigits = MinimumFractionalDigits; + Parms.MaximumFractionalDigits = MaximumFractionalDigits; + Parms.CurrencyCode = std::move(CurrencyCode); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsCurrencyBase +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 BaseValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& CurrencyCode (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsCurrencyBase(int32 BaseValue, const class FString& CurrencyCode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsCurrencyBase"); + + Params::KismetTextLibrary_AsCurrencyBase Parms{}; + + Parms.BaseValue = BaseValue; + Parms.CurrencyCode = std::move(CurrencyCode); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsDate_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& InDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InDateStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsDate_DateTime(const struct FDateTime& InDateTime, EDateTimeStyle InDateStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsDate_DateTime"); + + Params::KismetTextLibrary_AsDate_DateTime Parms{}; + + Parms.InDateTime = std::move(InDateTime); + Parms.InDateStyle = InDateStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsDateTime_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& In (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InDateStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InTimeStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsDateTime_DateTime(const struct FDateTime& In, EDateTimeStyle InDateStyle, EDateTimeStyle InTimeStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsDateTime_DateTime"); + + Params::KismetTextLibrary_AsDateTime_DateTime Parms{}; + + Parms.In = std::move(In); + Parms.InDateStyle = InDateStyle; + Parms.InTimeStyle = InTimeStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsMemory +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 NumBytes (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMemoryUnitStandard UnitStandard (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsMemory(int64 NumBytes, EMemoryUnitStandard UnitStandard, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsMemory"); + + Params::KismetTextLibrary_AsMemory Parms{}; + + Parms.NumBytes = NumBytes; + Parms.UnitStandard = UnitStandard; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + Parms.MinimumFractionalDigits = MinimumFractionalDigits; + Parms.MaximumFractionalDigits = MaximumFractionalDigits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsPercent_Float +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERoundingMode RoundingMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsPercent_Float(float Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsPercent_Float"); + + Params::KismetTextLibrary_AsPercent_Float Parms{}; + + Parms.Value = Value; + Parms.RoundingMode = RoundingMode; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + Parms.MinimumFractionalDigits = MinimumFractionalDigits; + Parms.MaximumFractionalDigits = MaximumFractionalDigits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsTime_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& In (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InTimeStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsTime_DateTime(const struct FDateTime& In, EDateTimeStyle InTimeStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsTime_DateTime"); + + Params::KismetTextLibrary_AsTime_DateTime Parms{}; + + Parms.In = std::move(In); + Parms.InTimeStyle = InTimeStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsTimespan_Timespan +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& InTimespan (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsTimespan_Timespan(const struct FTimespan& InTimespan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsTimespan_Timespan"); + + Params::KismetTextLibrary_AsTimespan_Timespan Parms{}; + + Parms.InTimespan = std::move(InTimespan); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsTimeZoneDate_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& InDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InTimeZone (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InDateStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsTimeZoneDate_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InDateStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsTimeZoneDate_DateTime"); + + Params::KismetTextLibrary_AsTimeZoneDate_DateTime Parms{}; + + Parms.InDateTime = std::move(InDateTime); + Parms.InTimeZone = std::move(InTimeZone); + Parms.InDateStyle = InDateStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsTimeZoneDateTime_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& InDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InTimeZone (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InDateStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InTimeStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsTimeZoneDateTime_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InDateStyle, EDateTimeStyle InTimeStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsTimeZoneDateTime_DateTime"); + + Params::KismetTextLibrary_AsTimeZoneDateTime_DateTime Parms{}; + + Parms.InDateTime = std::move(InDateTime); + Parms.InTimeZone = std::move(InTimeZone); + Parms.InDateStyle = InDateStyle; + Parms.InTimeStyle = InTimeStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.AsTimeZoneTime_DateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& InDateTime (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InTimeZone (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDateTimeStyle InTimeStyle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::AsTimeZoneTime_DateTime(const struct FDateTime& InDateTime, const class FString& InTimeZone, EDateTimeStyle InTimeStyle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "AsTimeZoneTime_DateTime"); + + Params::KismetTextLibrary_AsTimeZoneTime_DateTime Parms{}; + + Parms.InDateTime = std::move(InDateTime); + Parms.InTimeZone = std::move(InTimeZone); + Parms.InTimeStyle = InTimeStyle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_BoolToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_BoolToText(bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_BoolToText"); + + Params::KismetTextLibrary_Conv_BoolToText Parms{}; + + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_ByteToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_ByteToText(uint8 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_ByteToText"); + + Params::KismetTextLibrary_Conv_ByteToText Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_ColorToText +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_ColorToText(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_ColorToText"); + + Params::KismetTextLibrary_Conv_ColorToText Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_DoubleToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERoundingMode RoundingMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumFractionalDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_DoubleToText(double Value, ERoundingMode RoundingMode, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits, int32 MinimumFractionalDigits, int32 MaximumFractionalDigits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_DoubleToText"); + + Params::KismetTextLibrary_Conv_DoubleToText Parms{}; + + Parms.Value = Value; + Parms.RoundingMode = RoundingMode; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + Parms.MinimumFractionalDigits = MinimumFractionalDigits; + Parms.MaximumFractionalDigits = MaximumFractionalDigits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_Int64ToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_Int64ToText(int64 Value, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_Int64ToText"); + + Params::KismetTextLibrary_Conv_Int64ToText Parms{}; + + Parms.Value = Value; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_IntToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAlwaysSign (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseGrouping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinimumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaximumIntegralDigits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_IntToText(int32 Value, bool bAlwaysSign, bool bUseGrouping, int32 MinimumIntegralDigits, int32 MaximumIntegralDigits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_IntToText"); + + Params::KismetTextLibrary_Conv_IntToText Parms{}; + + Parms.Value = Value; + Parms.bAlwaysSign = bAlwaysSign; + Parms.bUseGrouping = bUseGrouping; + Parms.MinimumIntegralDigits = MinimumIntegralDigits; + Parms.MaximumIntegralDigits = MaximumIntegralDigits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_NameToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_NameToText(class FName InName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_NameToText"); + + Params::KismetTextLibrary_Conv_NameToText Parms{}; + + Parms.InName = InName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_NumericPropertyToText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const int32& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_NumericPropertyToText(const int32& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_NumericPropertyToText"); + + Params::KismetTextLibrary_Conv_NumericPropertyToText Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_ObjectToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* InObj (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_ObjectToText(class UObject* InObj) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_ObjectToText"); + + Params::KismetTextLibrary_Conv_ObjectToText Parms{}; + + Parms.InObj = InObj; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_RotatorToText +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_RotatorToText(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_RotatorToText"); + + Params::KismetTextLibrary_Conv_RotatorToText Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_StringToText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_StringToText(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_StringToText"); + + Params::KismetTextLibrary_Conv_StringToText Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_TextToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetTextLibrary::Conv_TextToString(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_TextToString"); + + Params::KismetTextLibrary_Conv_TextToString Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_TransformToText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& InTrans (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_TransformToText(const struct FTransform& InTrans) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_TransformToText"); + + Params::KismetTextLibrary_Conv_TransformToText Parms{}; + + Parms.InTrans = std::move(InTrans); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_Vector2dToText +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_Vector2dToText(const struct FVector2D& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_Vector2dToText"); + + Params::KismetTextLibrary_Conv_Vector2dToText Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Conv_VectorToText +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Conv_VectorToText(const struct FVector& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Conv_VectorToText"); + + Params::KismetTextLibrary_Conv_VectorToText Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.EditTextSourceString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* TextOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText& Text (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::EditTextSourceString(class UObject* TextOwner, class FText& Text, const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "EditTextSourceString"); + + Params::KismetTextLibrary_EditTextSourceString Parms{}; + + Parms.TextOwner = TextOwner; + Parms.Text = std::move(Text); + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Text = std::move(Parms.Text); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.EqualEqual_IgnoreCase_TextText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::EqualEqual_IgnoreCase_TextText(const class FText& A, const class FText& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "EqualEqual_IgnoreCase_TextText"); + + Params::KismetTextLibrary_EqualEqual_IgnoreCase_TextText Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.EqualEqual_TextText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::EqualEqual_TextText(const class FText& A, const class FText& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "EqualEqual_TextText"); + + Params::KismetTextLibrary_EqualEqual_TextText Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.FindTextInLocalizationTable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& NameSpace (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText* OutText (Parm, OutParm, NativeAccessSpecifierPublic) +// const class FString& SourceString (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::FindTextInLocalizationTable(const class FString& NameSpace, const class FString& Key, class FText* OutText, const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "FindTextInLocalizationTable"); + + Params::KismetTextLibrary_FindTextInLocalizationTable Parms{}; + + Parms.NameSpace = std::move(NameSpace); + Parms.Key = std::move(Key); + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutText != nullptr) + *OutText = std::move(Parms.OutText); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.Format +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InPattern (Parm, NativeAccessSpecifierPublic) +// const TArray&InArgs (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::Format(const class FText& InPattern, const TArray& InArgs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "Format"); + + Params::KismetTextLibrary_Format Parms{}; + + Parms.InPattern = std::move(InPattern); + Parms.InArgs = std::move(InArgs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.GetEmptyText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::GetEmptyText() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "GetEmptyText"); + + Params::KismetTextLibrary_GetEmptyText Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.GetTextId +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& Text (Parm, NativeAccessSpecifierPublic) +// class FString* OutNamespace (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutKey (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::GetTextId(const class FText& Text, class FString* OutNamespace, class FString* OutKey) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "GetTextId"); + + Params::KismetTextLibrary_GetTextId Parms{}; + + Parms.Text = std::move(Text); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutNamespace != nullptr) + *OutNamespace = std::move(Parms.OutNamespace); + + if (OutKey != nullptr) + *OutKey = std::move(Parms.OutKey); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.GetTextSourceString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& Text (Parm, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetTextLibrary::GetTextSourceString(const class FText& Text) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "GetTextSourceString"); + + Params::KismetTextLibrary_GetTextSourceString Parms{}; + + Parms.Text = std::move(Text); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.IsPolyglotDataValid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPolyglotTextData& PolyglotData (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* IsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText* ErrorMessage (Parm, OutParm, NativeAccessSpecifierPublic) + +void UKismetTextLibrary::IsPolyglotDataValid(const struct FPolyglotTextData& PolyglotData, bool* IsValid, class FText* ErrorMessage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "IsPolyglotDataValid"); + + Params::KismetTextLibrary_IsPolyglotDataValid Parms{}; + + Parms.PolyglotData = std::move(PolyglotData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IsValid != nullptr) + *IsValid = Parms.IsValid; + + if (ErrorMessage != nullptr) + *ErrorMessage = std::move(Parms.ErrorMessage); +} + + +// Function Engine.KismetTextLibrary.MakeInvariantText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::MakeInvariantText(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "MakeInvariantText"); + + Params::KismetTextLibrary_MakeInvariantText Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.NotEqual_IgnoreCase_TextText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::NotEqual_IgnoreCase_TextText(const class FText& A, const class FText& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "NotEqual_IgnoreCase_TextText"); + + Params::KismetTextLibrary_NotEqual_IgnoreCase_TextText Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.NotEqual_TextText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class FText& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::NotEqual_TextText(const class FText& A, const class FText& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "NotEqual_TextText"); + + Params::KismetTextLibrary_NotEqual_TextText Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.PolyglotDataToText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPolyglotTextData& PolyglotData (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::PolyglotDataToText(const struct FPolyglotTextData& PolyglotData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "PolyglotDataToText"); + + Params::KismetTextLibrary_PolyglotDataToText Parms{}; + + Parms.PolyglotData = std::move(PolyglotData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.StringTableIdAndKeyFromText +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& Text (Parm, NativeAccessSpecifierPublic) +// class FName* OutTableId (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutKey (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::StringTableIdAndKeyFromText(const class FText& Text, class FName* OutTableId, class FString* OutKey) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "StringTableIdAndKeyFromText"); + + Params::KismetTextLibrary_StringTableIdAndKeyFromText Parms{}; + + Parms.Text = std::move(Text); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTableId != nullptr) + *OutTableId = Parms.OutTableId; + + if (OutKey != nullptr) + *OutKey = std::move(Parms.OutKey); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextFromStringTable +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextFromStringTable(const class FName TableId, const class FString& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextFromStringTable"); + + Params::KismetTextLibrary_TextFromStringTable Parms{}; + + Parms.TableId = TableId; + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextIsCultureInvariant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::TextIsCultureInvariant(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextIsCultureInvariant"); + + Params::KismetTextLibrary_TextIsCultureInvariant Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextIsEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::TextIsEmpty(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextIsEmpty"); + + Params::KismetTextLibrary_TextIsEmpty Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextIsFromStringTable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& Text (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::TextIsFromStringTable(const class FText& Text) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextIsFromStringTable"); + + Params::KismetTextLibrary_TextIsFromStringTable Parms{}; + + Parms.Text = std::move(Text); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextIsTransient +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetTextLibrary::TextIsTransient(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextIsTransient"); + + Params::KismetTextLibrary_TextIsTransient Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextToLower +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextToLower(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextToLower"); + + Params::KismetTextLibrary_TextToLower Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextToUpper +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextToUpper(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextToUpper"); + + Params::KismetTextLibrary_TextToUpper Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextTrimPreceding +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextTrimPreceding(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextTrimPreceding"); + + Params::KismetTextLibrary_TextTrimPreceding Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextTrimPrecedingAndTrailing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextTrimPrecedingAndTrailing(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextTrimPrecedingAndTrailing"); + + Params::KismetTextLibrary_TextTrimPrecedingAndTrailing Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetTextLibrary.TextTrimTrailing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& InText (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetTextLibrary::TextTrimTrailing(const class FText& InText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetTextLibrary", "TextTrimTrailing"); + + Params::KismetTextLibrary_TextTrimTrailing Parms{}; + + Parms.InText = std::move(InText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Predefined Function +// Gets a pointer to the current World of the GameViewport + +class UWorld* UWorld::GetWorld() +{ + if (Offsets::GWorld != 0) + return *reinterpret_cast(InSDKUtils::GetImageBase() + Offsets::GWorld); + + if (UEngine* Engine = UEngine::GetEngine()) + { + if (!Engine->GameViewport) + return nullptr; + + return Engine->GameViewport->World; + } + + return nullptr; +} + + +// Function Engine.World.HandleTimelineScrubbed +// (Final, Native, Public) + +void UWorld::HandleTimelineScrubbed() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("World", "HandleTimelineScrubbed"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.World.K2_GetWorldSettings +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class AWorldSettings* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AWorldSettings* UWorld::K2_GetWorldSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("World", "K2_GetWorldSettings"); + + Params::World_K2_GetWorldSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.World.GetDataLayerManager +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UDataLayerManager* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerManager* UWorld::GetDataLayerManager() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("World", "GetDataLayerManager"); + + Params::World_GetDataLayerManager Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreamingDynamic.LoadLevelInstance +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& LevelName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutSuccess (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& OptionalLevelNameOverride (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfOptionalLevelStreamingClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLoadAsTempPackage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULevelStreamingDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevelStreamingDynamic* ULevelStreamingDynamic::LoadLevelInstance(class UObject* WorldContextObject, const class FString& LevelName, const struct FVector& Location, const struct FRotator& Rotation, bool* bOutSuccess, const class FString& OptionalLevelNameOverride, TSubclassOf OptionalLevelStreamingClass, bool bLoadAsTempPackage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LevelStreamingDynamic", "LoadLevelInstance"); + + Params::LevelStreamingDynamic_LoadLevelInstance Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LevelName = std::move(LevelName); + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.OptionalLevelNameOverride = std::move(OptionalLevelNameOverride); + Parms.OptionalLevelStreamingClass = OptionalLevelStreamingClass; + Parms.bLoadAsTempPackage = bLoadAsTempPackage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bOutSuccess != nullptr) + *bOutSuccess = Parms.bOutSuccess; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelStreamingDynamic.LoadLevelInstanceBySoftObjectPtr +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftObjectPtr Level (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutSuccess (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& OptionalLevelNameOverride (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfOptionalLevelStreamingClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLoadAsTempPackage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULevelStreamingDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevelStreamingDynamic* ULevelStreamingDynamic::LoadLevelInstanceBySoftObjectPtr(class UObject* WorldContextObject, TSoftObjectPtr Level, const struct FVector& Location, const struct FRotator& Rotation, bool* bOutSuccess, const class FString& OptionalLevelNameOverride, TSubclassOf OptionalLevelStreamingClass, bool bLoadAsTempPackage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LevelStreamingDynamic", "LoadLevelInstanceBySoftObjectPtr"); + + Params::LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Level = Level; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.OptionalLevelNameOverride = std::move(OptionalLevelNameOverride); + Parms.OptionalLevelStreamingClass = OptionalLevelStreamingClass; + Parms.bLoadAsTempPackage = bLoadAsTempPackage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bOutSuccess != nullptr) + *bOutSuccess = Parms.bOutSuccess; + + return Parms.ReturnValue; +} + + +// Function Engine.LightComponentBase.SetAffectGlobalIllumination +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetAffectGlobalIllumination(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetAffectGlobalIllumination"); + + Params::LightComponentBase_SetAffectGlobalIllumination Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetAffectReflection +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetAffectReflection(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetAffectReflection"); + + Params::LightComponentBase_SetAffectReflection Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetCastDeepShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetCastDeepShadow(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetCastDeepShadow"); + + Params::LightComponentBase_SetCastDeepShadow Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetCastRaytracedShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetCastRaytracedShadow(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetCastRaytracedShadow"); + + Params::LightComponentBase_SetCastRaytracedShadow Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetCastRaytracedShadows +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ECastRayTracedShadow bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetCastRaytracedShadows(ECastRayTracedShadow bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetCastRaytracedShadows"); + + Params::LightComponentBase_SetCastRaytracedShadows Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetCastShadows +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetCastShadows(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetCastShadows"); + + Params::LightComponentBase_SetCastShadows Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetCastVolumetricShadow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetCastVolumetricShadow(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetCastVolumetricShadow"); + + Params::LightComponentBase_SetCastVolumetricShadow Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.SetSamplesPerPixel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponentBase::SetSamplesPerPixel(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "SetSamplesPerPixel"); + + Params::LightComponentBase_SetSamplesPerPixel Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponentBase.GetLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor ULightComponentBase::GetLightColor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponentBase", "GetLightColor"); + + Params::LightComponentBase_GetLightColor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.HUD.AddDebugText +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// const class FString& DebugText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* SrcActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Offset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& DesiredOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FColor& TextColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSkipOverwriteCheck (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAbsoluteLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bKeepAttachedToActor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UFont* InFont (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FontScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDrawShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::AddDebugText(const class FString& DebugText, class AActor* SrcActor, float duration, const struct FVector& Offset, const struct FVector& DesiredOffset, const struct FColor& TextColor, bool bSkipOverwriteCheck, bool bAbsoluteLocation, bool bKeepAttachedToActor, class UFont* InFont, float FontScale, bool bDrawShadow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "AddDebugText"); + + Params::HUD_AddDebugText Parms{}; + + Parms.DebugText = std::move(DebugText); + Parms.SrcActor = SrcActor; + Parms.duration = duration; + Parms.Offset = std::move(Offset); + Parms.DesiredOffset = std::move(DesiredOffset); + Parms.TextColor = std::move(TextColor); + Parms.bSkipOverwriteCheck = bSkipOverwriteCheck; + Parms.bAbsoluteLocation = bAbsoluteLocation; + Parms.bKeepAttachedToActor = bKeepAttachedToActor; + Parms.InFont = InFont; + Parms.FontScale = FontScale; + Parms.bDrawShadow = bDrawShadow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.AddHitBox +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& position (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Size (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bConsumesInput (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Priority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::AddHitBox(const struct FVector2D& position, const struct FVector2D& Size, class FName InName, bool bConsumesInput, int32 Priority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "AddHitBox"); + + Params::HUD_AddHitBox Parms{}; + + Parms.position = std::move(position); + Parms.Size = std::move(Size); + Parms.InName = InName; + Parms.bConsumesInput = bConsumesInput; + Parms.Priority = Priority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawLine +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// float StartScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LineThickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawLine(float StartScreenX, float StartScreenY, float EndScreenX, float EndScreenY, const struct FLinearColor& LineColor, float LineThickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawLine"); + + Params::HUD_DrawLine Parms{}; + + Parms.StartScreenX = StartScreenX; + Parms.StartScreenY = StartScreenY; + Parms.EndScreenX = EndScreenX; + Parms.EndScreenY = EndScreenY; + Parms.LineColor = std::move(LineColor); + Parms.LineThickness = LineThickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawMaterial +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenW (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenH (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaterialU (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaterialV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaterialUWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaterialVHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScalePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& RotPivot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawMaterial(class UMaterialInterface* Material, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float MaterialU, float MaterialV, float MaterialUWidth, float MaterialVHeight, float Scale, bool bScalePosition, float Rotation, const struct FVector2D& RotPivot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawMaterial"); + + Params::HUD_DrawMaterial Parms{}; + + Parms.Material = Material; + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.ScreenW = ScreenW; + Parms.ScreenH = ScreenH; + Parms.MaterialU = MaterialU; + Parms.MaterialV = MaterialV; + Parms.MaterialUWidth = MaterialUWidth; + Parms.MaterialVHeight = MaterialVHeight; + Parms.Scale = Scale; + Parms.bScalePosition = bScalePosition; + Parms.Rotation = Rotation; + Parms.RotPivot = std::move(RotPivot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawMaterialSimple +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenW (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenH (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScalePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawMaterialSimple(class UMaterialInterface* Material, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float Scale, bool bScalePosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawMaterialSimple"); + + Params::HUD_DrawMaterialSimple Parms{}; + + Parms.Material = Material; + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.ScreenW = ScreenW; + Parms.ScreenH = ScreenH; + Parms.Scale = Scale; + Parms.bScalePosition = bScalePosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawMaterialTriangle +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V0_Pos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V1_Pos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V2_Pos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V0_UV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V1_UV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& V2_UV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& V0_Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& V1_Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& V2_Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawMaterialTriangle(class UMaterialInterface* Material, const struct FVector2D& V0_Pos, const struct FVector2D& V1_Pos, const struct FVector2D& V2_Pos, const struct FVector2D& V0_UV, const struct FVector2D& V1_UV, const struct FVector2D& V2_UV, const struct FLinearColor& V0_Color, const struct FLinearColor& V1_Color, const struct FLinearColor& V2_Color) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawMaterialTriangle"); + + Params::HUD_DrawMaterialTriangle Parms{}; + + Parms.Material = Material; + Parms.V0_Pos = std::move(V0_Pos); + Parms.V1_Pos = std::move(V1_Pos); + Parms.V2_Pos = std::move(V2_Pos); + Parms.V0_UV = std::move(V0_UV); + Parms.V1_UV = std::move(V1_UV); + Parms.V2_UV = std::move(V2_UV); + Parms.V0_Color = std::move(V0_Color); + Parms.V1_Color = std::move(V1_Color); + Parms.V2_Color = std::move(V2_Color); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawRect +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& RectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenW (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenH (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawRect(const struct FLinearColor& RectColor, float ScreenX, float ScreenY, float ScreenW, float ScreenH) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawRect"); + + Params::HUD_DrawRect Parms{}; + + Parms.RectColor = std::move(RectColor); + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.ScreenW = ScreenW; + Parms.ScreenH = ScreenH; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawText +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TextColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UFont* Font (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScalePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawText(const class FString& Text, const struct FLinearColor& TextColor, float ScreenX, float ScreenY, class UFont* Font, float Scale, bool bScalePosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawText"); + + Params::HUD_DrawText Parms{}; + + Parms.Text = std::move(Text); + Parms.TextColor = std::move(TextColor); + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.Font = Font; + Parms.Scale = Scale; + Parms.bScalePosition = bScalePosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawTexture +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UTexture* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenW (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenH (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TextureU (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TextureV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TextureUWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TextureVHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TintColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBlendMode BlendMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScalePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& RotPivot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawTexture(class UTexture* Texture, float ScreenX, float ScreenY, float ScreenW, float ScreenH, float TextureU, float TextureV, float TextureUWidth, float TextureVHeight, const struct FLinearColor& TintColor, EBlendMode BlendMode, float Scale, bool bScalePosition, float Rotation, const struct FVector2D& RotPivot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawTexture"); + + Params::HUD_DrawTexture Parms{}; + + Parms.Texture = Texture; + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.ScreenW = ScreenW; + Parms.ScreenH = ScreenH; + Parms.TextureU = TextureU; + Parms.TextureV = TextureV; + Parms.TextureUWidth = TextureUWidth; + Parms.TextureVHeight = TextureVHeight; + Parms.TintColor = std::move(TintColor); + Parms.BlendMode = BlendMode; + Parms.Scale = Scale; + Parms.bScalePosition = bScalePosition; + Parms.Rotation = Rotation; + Parms.RotPivot = std::move(RotPivot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.DrawTextureSimple +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bScalePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::DrawTextureSimple(class UTexture* Texture, float ScreenX, float ScreenY, float Scale, bool bScalePosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "DrawTextureSimple"); + + Params::HUD_DrawTextureSimple Parms{}; + + Parms.Texture = Texture; + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + Parms.Scale = Scale; + Parms.bScalePosition = bScalePosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.GetActorsInSelectionRectangle +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf ClassFilter (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& FirstPoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& SecondPoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bIncludeNonCollidingComponents (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bActorMustBeFullyEnclosed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::GetActorsInSelectionRectangle(TSubclassOf ClassFilter, const struct FVector2D& FirstPoint, const struct FVector2D& SecondPoint, TArray* OutActors, bool bIncludeNonCollidingComponents, bool bActorMustBeFullyEnclosed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "GetActorsInSelectionRectangle"); + + Params::HUD_GetActorsInSelectionRectangle Parms{}; + + Parms.ClassFilter = ClassFilter; + Parms.FirstPoint = std::move(FirstPoint); + Parms.SecondPoint = std::move(SecondPoint); + Parms.bIncludeNonCollidingComponents = bIncludeNonCollidingComponents; + Parms.bActorMustBeFullyEnclosed = bActorMustBeFullyEnclosed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.HUD.NextDebugTarget +// (RequiredAPI, Exec, Native, Public) + +void AHUD::NextDebugTarget() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "NextDebugTarget"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.PreviousDebugTarget +// (RequiredAPI, Exec, Native, Public) + +void AHUD::PreviousDebugTarget() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "PreviousDebugTarget"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.ReceiveDrawHUD +// (RequiredAPI, BlueprintCosmetic, Event, Public, BlueprintEvent) +// Parameters: +// int32 SizeX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SizeY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ReceiveDrawHUD(int32 SizeX, int32 SizeY) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ReceiveDrawHUD"); + + Params::HUD_ReceiveDrawHUD Parms{}; + + Parms.SizeX = SizeX; + Parms.SizeY = SizeY; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.HUD.ReceiveHitBoxBeginCursorOver +// (RequiredAPI, BlueprintCosmetic, Event, Public, BlueprintEvent) +// Parameters: +// const class FName BoxName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ReceiveHitBoxBeginCursorOver(const class FName BoxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ReceiveHitBoxBeginCursorOver"); + + Params::HUD_ReceiveHitBoxBeginCursorOver Parms{}; + + Parms.BoxName = BoxName; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.HUD.ReceiveHitBoxClick +// (RequiredAPI, BlueprintCosmetic, Event, Public, BlueprintEvent) +// Parameters: +// const class FName BoxName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ReceiveHitBoxClick(const class FName BoxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ReceiveHitBoxClick"); + + Params::HUD_ReceiveHitBoxClick Parms{}; + + Parms.BoxName = BoxName; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.HUD.ReceiveHitBoxEndCursorOver +// (RequiredAPI, BlueprintCosmetic, Event, Public, BlueprintEvent) +// Parameters: +// const class FName BoxName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ReceiveHitBoxEndCursorOver(const class FName BoxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ReceiveHitBoxEndCursorOver"); + + Params::HUD_ReceiveHitBoxEndCursorOver Parms{}; + + Parms.BoxName = BoxName; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.HUD.ReceiveHitBoxRelease +// (RequiredAPI, BlueprintCosmetic, Event, Public, BlueprintEvent) +// Parameters: +// const class FName BoxName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ReceiveHitBoxRelease(const class FName BoxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ReceiveHitBoxRelease"); + + Params::HUD_ReceiveHitBoxRelease Parms{}; + + Parms.BoxName = BoxName; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.HUD.RemoveAllDebugStrings +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void AHUD::RemoveAllDebugStrings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "RemoveAllDebugStrings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.RemoveDebugText +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class AActor* SrcActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLeaveDurationText (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::RemoveDebugText(class AActor* SrcActor, bool bLeaveDurationText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "RemoveDebugText"); + + Params::HUD_RemoveDebugText Parms{}; + + Parms.SrcActor = SrcActor; + Parms.bLeaveDurationText = bLeaveDurationText; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.ShowDebug +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName DebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ShowDebug(class FName DebugType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ShowDebug"); + + Params::HUD_ShowDebug Parms{}; + + Parms.DebugType = DebugType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.ShowDebugForReticleTargetToggle +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// TSubclassOf DesiredClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ShowDebugForReticleTargetToggle(TSubclassOf DesiredClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ShowDebugForReticleTargetToggle"); + + Params::HUD_ShowDebugForReticleTargetToggle Parms{}; + + Parms.DesiredClass = DesiredClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.ShowDebugToggleSubCategory +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName Category (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::ShowDebugToggleSubCategory(class FName Category) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ShowDebugToggleSubCategory"); + + Params::HUD_ShowDebugToggleSubCategory Parms{}; + + Parms.Category = Category; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.ShowHUD +// (RequiredAPI, Exec, Native, Public) + +void AHUD::ShowHUD() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "ShowHUD"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HUD.Deproject +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::Deproject(float ScreenX, float ScreenY, struct FVector* WorldPosition, struct FVector* WorldDirection) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "Deproject"); + + Params::HUD_Deproject Parms{}; + + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldPosition != nullptr) + *WorldPosition = std::move(Parms.WorldPosition); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); +} + + +// Function Engine.HUD.GetOwningPawn +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* AHUD::GetOwningPawn() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "GetOwningPawn"); + + Params::HUD_GetOwningPawn Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.HUD.GetOwningPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* AHUD::GetOwningPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "GetOwningPlayerController"); + + Params::HUD_GetOwningPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.HUD.GetTextSize +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutWidth (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutHeight (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UFont* Font (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AHUD::GetTextSize(const class FString& Text, float* OutWidth, float* OutHeight, class UFont* Font, float Scale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "GetTextSize"); + + Params::HUD_GetTextSize Parms{}; + + Parms.Text = std::move(Text); + Parms.Font = Font; + Parms.Scale = Scale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutWidth != nullptr) + *OutWidth = Parms.OutWidth; + + if (OutHeight != nullptr) + *OutHeight = Parms.OutHeight; +} + + +// Function Engine.HUD.Project +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bClampToZeroPlane (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector AHUD::Project(const struct FVector& Location, bool bClampToZeroPlane) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HUD", "Project"); + + Params::HUD_Project Parms{}; + + Parms.Location = std::move(Location); + Parms.bClampToZeroPlane = bClampToZeroPlane; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionRuntimeLevelStreamingCell.OnLevelHidden +// (Final, RequiredAPI, Native, Private) + +void UWorldPartitionRuntimeLevelStreamingCell::OnLevelHidden() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionRuntimeLevelStreamingCell", "OnLevelHidden"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionRuntimeLevelStreamingCell.OnLevelShown +// (Final, RequiredAPI, Native, Private) + +void UWorldPartitionRuntimeLevelStreamingCell::OnLevelShown() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionRuntimeLevelStreamingCell", "OnLevelShown"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetAffectTranslucentLighting +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetAffectTranslucentLighting(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetAffectTranslucentLighting"); + + Params::LightComponent_SetAffectTranslucentLighting Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetBloomMaxBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetBloomMaxBrightness(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetBloomMaxBrightness"); + + Params::LightComponent_SetBloomMaxBrightness Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetBloomScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetBloomScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetBloomScale"); + + Params::LightComponent_SetBloomScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetBloomThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetBloomThreshold(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetBloomThreshold"); + + Params::LightComponent_SetBloomThreshold Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetBloomTint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetBloomTint(const struct FColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetBloomTint"); + + Params::LightComponent_SetBloomTint Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetDiffuseScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetDiffuseScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetDiffuseScale"); + + Params::LightComponent_SetDiffuseScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetEnableLightShaftBloom +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetEnableLightShaftBloom(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetEnableLightShaftBloom"); + + Params::LightComponent_SetEnableLightShaftBloom Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetForceCachedShadowsForMovablePrimitives +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetForceCachedShadowsForMovablePrimitives(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetForceCachedShadowsForMovablePrimitives"); + + Params::LightComponent_SetForceCachedShadowsForMovablePrimitives Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetIESBrightnessScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetIESBrightnessScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetIESBrightnessScale"); + + Params::LightComponent_SetIESBrightnessScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetIESTexture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTextureLightProfile* NewValue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetIESTexture(class UTextureLightProfile* NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetIESTexture"); + + Params::LightComponent_SetIESTexture Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetIndirectLightingIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetIndirectLightingIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetIndirectLightingIntensity"); + + Params::LightComponent_SetIndirectLightingIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetIntensity"); + + Params::LightComponent_SetIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewLightColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSRGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightColor(const struct FLinearColor& NewLightColor, bool bSRGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightColor"); + + Params::LightComponent_SetLightColor Parms{}; + + Parms.NewLightColor = std::move(NewLightColor); + Parms.bSRGB = bSRGB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightFColor +// (Final, RequiredAPI, Native, Public, HasDefaults) +// Parameters: +// const struct FColor& NewLightColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightFColor(const struct FColor& NewLightColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightFColor"); + + Params::LightComponent_SetLightFColor Parms{}; + + Parms.NewLightColor = std::move(NewLightColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightFunctionDisabledBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightFunctionDisabledBrightness(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightFunctionDisabledBrightness"); + + Params::LightComponent_SetLightFunctionDisabledBrightness Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightFunctionFadeDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLightFunctionFadeDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightFunctionFadeDistance(float NewLightFunctionFadeDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightFunctionFadeDistance"); + + Params::LightComponent_SetLightFunctionFadeDistance Parms{}; + + Parms.NewLightFunctionFadeDistance = NewLightFunctionFadeDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightFunctionMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewLightFunctionMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightFunctionMaterial(class UMaterialInterface* NewLightFunctionMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightFunctionMaterial"); + + Params::LightComponent_SetLightFunctionMaterial Parms{}; + + Parms.NewLightFunctionMaterial = NewLightFunctionMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightFunctionScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLightFunctionScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightFunctionScale(const struct FVector& NewLightFunctionScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightFunctionScale"); + + Params::LightComponent_SetLightFunctionScale Parms{}; + + Parms.NewLightFunctionScale = std::move(NewLightFunctionScale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetLightingChannels +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bChannel0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bChannel1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bChannel2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetLightingChannels(bool bChannel0, bool bChannel1, bool bChannel2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetLightingChannels"); + + Params::LightComponent_SetLightingChannels Parms{}; + + Parms.bChannel0 = bChannel0; + Parms.bChannel1 = bChannel1; + Parms.bChannel2 = bChannel2; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetShadowBias +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetShadowBias(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetShadowBias"); + + Params::LightComponent_SetShadowBias Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetShadowSlopeBias +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetShadowSlopeBias(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetShadowSlopeBias"); + + Params::LightComponent_SetShadowSlopeBias Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetSpecularScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetSpecularScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetSpecularScale"); + + Params::LightComponent_SetSpecularScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetTemperature +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewTemperature (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetTemperature(float NewTemperature) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetTemperature"); + + Params::LightComponent_SetTemperature Parms{}; + + Parms.NewTemperature = NewTemperature; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetTransmission +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetTransmission(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetTransmission"); + + Params::LightComponent_SetTransmission Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetUseIESBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetUseIESBrightness(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetUseIESBrightness"); + + Params::LightComponent_SetUseIESBrightness Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetUseRayTracedDistanceFieldShadows +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetUseRayTracedDistanceFieldShadows(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetUseRayTracedDistanceFieldShadows"); + + Params::LightComponent_SetUseRayTracedDistanceFieldShadows Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetUseTemperature +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetUseTemperature(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetUseTemperature"); + + Params::LightComponent_SetUseTemperature Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LightComponent.SetVolumetricScatteringIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULightComponent::SetVolumetricScatteringIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LightComponent", "SetVolumetricScatteringIntensity"); + + Params::LightComponent_SetVolumetricScatteringIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SphereComponent.SetSphereRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InSphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USphereComponent::SetSphereRadius(float InSphereRadius, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SphereComponent", "SetSphereRadius"); + + Params::SphereComponent_SetSphereRadius Parms{}; + + Parms.InSphereRadius = InSphereRadius; + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SphereComponent.GetScaledSphereRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USphereComponent::GetScaledSphereRadius() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SphereComponent", "GetScaledSphereRadius"); + + Params::SphereComponent_GetScaledSphereRadius Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SphereComponent.GetShapeScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USphereComponent::GetShapeScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SphereComponent", "GetShapeScale"); + + Params::SphereComponent_GetShapeScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SphereComponent.GetUnscaledSphereRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USphereComponent::GetUnscaledSphereRadius() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SphereComponent", "GetUnscaledSphereRadius"); + + Params::SphereComponent_GetUnscaledSphereRadius Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.OnInputOwnerEndPlayed +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class AActor* InOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEndPlayReason EndPlayReason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputComponent::OnInputOwnerEndPlayed(class AActor* InOwner, EEndPlayReason EndPlayReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "OnInputOwnerEndPlayed"); + + Params::InputComponent_OnInputOwnerEndPlayed Parms{}; + + Parms.InOwner = InOwner; + Parms.EndPlayReason = EndPlayReason; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputComponent.GetControllerAnalogKeyState +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UInputComponent::GetControllerAnalogKeyState(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetControllerAnalogKeyState"); + + Params::InputComponent_GetControllerAnalogKeyState Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.GetControllerAnalogStickState +// (Final, RequiredAPI, Native, Private, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EControllerAnalogStick WhichStick (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* StickX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* StickY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputComponent::GetControllerAnalogStickState(EControllerAnalogStick WhichStick, float* StickX, float* StickY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetControllerAnalogStickState"); + + Params::InputComponent_GetControllerAnalogStickState Parms{}; + + Parms.WhichStick = WhichStick; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (StickX != nullptr) + *StickX = Parms.StickX; + + if (StickY != nullptr) + *StickY = Parms.StickY; +} + + +// Function Engine.InputComponent.GetControllerKeyTimeDown +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UInputComponent::GetControllerKeyTimeDown(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetControllerKeyTimeDown"); + + Params::InputComponent_GetControllerKeyTimeDown Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.GetControllerMouseDelta +// (Final, RequiredAPI, Native, Private, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* DeltaX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* DeltaY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputComponent::GetControllerMouseDelta(float* DeltaX, float* DeltaY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetControllerMouseDelta"); + + Params::InputComponent_GetControllerMouseDelta Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (DeltaX != nullptr) + *DeltaX = Parms.DeltaX; + + if (DeltaY != nullptr) + *DeltaY = Parms.DeltaY; +} + + +// Function Engine.InputComponent.GetControllerVectorKeyState +// (Final, RequiredAPI, Native, Private, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UInputComponent::GetControllerVectorKeyState(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetControllerVectorKeyState"); + + Params::InputComponent_GetControllerVectorKeyState Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.GetTouchState +// (Final, RequiredAPI, Native, Private, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 FingerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LocationX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LocationY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bIsCurrentlyPressed (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputComponent::GetTouchState(int32 FingerIndex, float* LocationX, float* LocationY, bool* bIsCurrentlyPressed) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "GetTouchState"); + + Params::InputComponent_GetTouchState Parms{}; + + Parms.FingerIndex = FingerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (LocationX != nullptr) + *LocationX = Parms.LocationX; + + if (LocationY != nullptr) + *LocationY = Parms.LocationY; + + if (bIsCurrentlyPressed != nullptr) + *bIsCurrentlyPressed = Parms.bIsCurrentlyPressed; +} + + +// Function Engine.InputComponent.IsControllerKeyDown +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputComponent::IsControllerKeyDown(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "IsControllerKeyDown"); + + Params::InputComponent_IsControllerKeyDown Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.WasControllerKeyJustPressed +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputComponent::WasControllerKeyJustPressed(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "WasControllerKeyJustPressed"); + + Params::InputComponent_WasControllerKeyJustPressed Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputComponent.WasControllerKeyJustReleased +// (Final, RequiredAPI, Native, Private, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputComponent::WasControllerKeyJustReleased(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputComponent", "WasControllerKeyJustReleased"); + + Params::InputComponent_WasControllerKeyJustReleased Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalLightComponent.GetUnitsConversionFactor +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// ELightUnits SrcUnits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELightUnits TargetUnits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CosHalfConeAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float ULocalLightComponent::GetUnitsConversionFactor(ELightUnits SrcUnits, ELightUnits TargetUnits, float CosHalfConeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LocalLightComponent", "GetUnitsConversionFactor"); + + Params::LocalLightComponent_GetUnitsConversionFactor Parms{}; + + Parms.SrcUnits = SrcUnits; + Parms.TargetUnits = TargetUnits; + Parms.CosHalfConeAngle = CosHalfConeAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalLightComponent.SetAttenuationRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalLightComponent::SetAttenuationRadius(float NewRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalLightComponent", "SetAttenuationRadius"); + + Params::LocalLightComponent_SetAttenuationRadius Parms{}; + + Parms.NewRadius = NewRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalLightComponent.SetIntensityUnits +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ELightUnits NewIntensityUnits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalLightComponent::SetIntensityUnits(ELightUnits NewIntensityUnits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalLightComponent", "SetIntensityUnits"); + + Params::LocalLightComponent_SetIntensityUnits Parms{}; + + Parms.NewIntensityUnits = NewIntensityUnits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.AddFloatHistorySample +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDebugFloatHistory& FloatHistory (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FDebugFloatHistory ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FDebugFloatHistory UKismetSystemLibrary::AddFloatHistorySample(float Value, const struct FDebugFloatHistory& FloatHistory) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "AddFloatHistorySample"); + + Params::KismetSystemLibrary_AddFloatHistorySample Parms{}; + + Parms.Value = Value; + Parms.FloatHistory = std::move(FloatHistory); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BeginTransaction +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& Context (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FText& Description (Parm, NativeAccessSpecifierPublic) +// class UObject* PrimaryObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::BeginTransaction(const class FString& Context, const class FText& Description, class UObject* PrimaryObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BeginTransaction"); + + Params::KismetSystemLibrary_BeginTransaction Parms{}; + + Parms.Context = std::move(Context); + Parms.Description = std::move(Description); + Parms.PrimaryObject = PrimaryObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxOverlapActors +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxPos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ActorClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxOverlapActors(const class UObject* WorldContextObject, const struct FVector& BoxPos, const struct FVector& BoxExtent, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxOverlapActors"); + + Params::KismetSystemLibrary_BoxOverlapActors Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BoxPos = std::move(BoxPos); + Parms.BoxExtent = std::move(BoxExtent); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ActorClassFilter = ActorClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxOverlapComponents +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxPos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Extent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ComponentClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxOverlapComponents(const class UObject* WorldContextObject, const struct FVector& BoxPos, const struct FVector& Extent, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxOverlapComponents"); + + Params::KismetSystemLibrary_BoxOverlapComponents Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BoxPos = std::move(BoxPos); + Parms.Extent = std::move(Extent); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ComponentClassFilter = ComponentClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutComponents != nullptr) + *OutComponents = std::move(Parms.OutComponents); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceMulti +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceMulti"); + + Params::KismetSystemLibrary_BoxTraceMulti Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceMultiByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceMultiByProfile"); + + Params::KismetSystemLibrary_BoxTraceMultiByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceMultiForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceMultiForObjects"); + + Params::KismetSystemLibrary_BoxTraceMultiForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceSingle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceSingle"); + + Params::KismetSystemLibrary_BoxTraceSingle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceSingleByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceSingleByProfile"); + + Params::KismetSystemLibrary_BoxTraceSingleByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BoxTraceSingleForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& orientation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::BoxTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const struct FVector& HalfSize, const struct FRotator& orientation, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BoxTraceSingleForObjects"); + + Params::KismetSystemLibrary_BoxTraceSingleForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.HalfSize = std::move(HalfSize); + Parms.orientation = std::move(orientation); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.BreakARFilter +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FARFilter& InARFilter (Parm, NativeAccessSpecifierPublic) +// TArray* PackageNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* PackagePaths (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* SoftObjectPaths (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* ClassPaths (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TSet* RecursiveClassPathsExclusionSet (Parm, OutParm, NativeAccessSpecifierPublic) +// TArray* ClassNames (Parm, OutParm, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// TSet* RecursiveClassesExclusionSet (Parm, OutParm, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool* bRecursivePaths (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bRecursiveClasses (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bIncludeOnlyOnDiskAssets (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::BreakARFilter(const struct FARFilter& InARFilter, TArray* PackageNames, TArray* PackagePaths, TArray* SoftObjectPaths, TArray* ClassPaths, TSet* RecursiveClassPathsExclusionSet, TArray* ClassNames, TSet* RecursiveClassesExclusionSet, bool* bRecursivePaths, bool* bRecursiveClasses, bool* bIncludeOnlyOnDiskAssets) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BreakARFilter"); + + Params::KismetSystemLibrary_BreakARFilter Parms{}; + + Parms.InARFilter = std::move(InARFilter); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PackageNames != nullptr) + *PackageNames = std::move(Parms.PackageNames); + + if (PackagePaths != nullptr) + *PackagePaths = std::move(Parms.PackagePaths); + + if (SoftObjectPaths != nullptr) + *SoftObjectPaths = std::move(Parms.SoftObjectPaths); + + if (ClassPaths != nullptr) + *ClassPaths = std::move(Parms.ClassPaths); + + if (RecursiveClassPathsExclusionSet != nullptr) + *RecursiveClassPathsExclusionSet = std::move(Parms.RecursiveClassPathsExclusionSet); + + if (ClassNames != nullptr) + *ClassNames = std::move(Parms.ClassNames); + + if (RecursiveClassesExclusionSet != nullptr) + *RecursiveClassesExclusionSet = std::move(Parms.RecursiveClassesExclusionSet); + + if (bRecursivePaths != nullptr) + *bRecursivePaths = Parms.bRecursivePaths; + + if (bRecursiveClasses != nullptr) + *bRecursiveClasses = Parms.bRecursiveClasses; + + if (bIncludeOnlyOnDiskAssets != nullptr) + *bIncludeOnlyOnDiskAssets = Parms.bIncludeOnlyOnDiskAssets; +} + + +// Function Engine.KismetSystemLibrary.BreakSoftClassPath +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSoftClassPath& InSoftClassPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* PathString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::BreakSoftClassPath(const struct FSoftClassPath& InSoftClassPath, class FString* PathString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BreakSoftClassPath"); + + Params::KismetSystemLibrary_BreakSoftClassPath Parms{}; + + Parms.InSoftClassPath = std::move(InSoftClassPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PathString != nullptr) + *PathString = std::move(Parms.PathString); +} + + +// Function Engine.KismetSystemLibrary.BreakSoftObjectPath +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSoftObjectPath& InSoftObjectPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* PathString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::BreakSoftObjectPath(const struct FSoftObjectPath& InSoftObjectPath, class FString* PathString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BreakSoftObjectPath"); + + Params::KismetSystemLibrary_BreakSoftObjectPath Parms{}; + + Parms.InSoftObjectPath = std::move(InSoftObjectPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PathString != nullptr) + *PathString = std::move(Parms.PathString); +} + + +// Function Engine.KismetSystemLibrary.BreakTopLevelAssetPath +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTopLevelAssetPath& TopLevelAssetPath (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* PathString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::BreakTopLevelAssetPath(const struct FTopLevelAssetPath& TopLevelAssetPath, class FString* PathString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "BreakTopLevelAssetPath"); + + Params::KismetSystemLibrary_BreakTopLevelAssetPath Parms{}; + + Parms.TopLevelAssetPath = std::move(TopLevelAssetPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PathString != nullptr) + *PathString = std::move(Parms.PathString); +} + + +// Function Engine.KismetSystemLibrary.CancelTransaction +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const int32 Index_0 (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::CancelTransaction(const int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CancelTransaction"); + + Params::KismetSystemLibrary_CancelTransaction Parms{}; + + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.CanLaunchURL +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CanLaunchURL(const class FString& URL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CanLaunchURL"); + + Params::KismetSystemLibrary_CanLaunchURL Parms{}; + + Parms.URL = std::move(URL); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleOverlapActors +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& CapsulePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ActorClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleOverlapActors(const class UObject* WorldContextObject, const struct FVector& CapsulePos, float Radius, float HalfHeight, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleOverlapActors"); + + Params::KismetSystemLibrary_CapsuleOverlapActors Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.CapsulePos = std::move(CapsulePos); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ActorClassFilter = ActorClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleOverlapComponents +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& CapsulePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ComponentClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleOverlapComponents(const class UObject* WorldContextObject, const struct FVector& CapsulePos, float Radius, float HalfHeight, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleOverlapComponents"); + + Params::KismetSystemLibrary_CapsuleOverlapComponents Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.CapsulePos = std::move(CapsulePos); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ComponentClassFilter = ComponentClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutComponents != nullptr) + *OutComponents = std::move(Parms.OutComponents); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceMulti +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceMulti"); + + Params::KismetSystemLibrary_CapsuleTraceMulti Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceMultiByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceMultiByProfile"); + + Params::KismetSystemLibrary_CapsuleTraceMultiByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceMultiForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceMultiForObjects"); + + Params::KismetSystemLibrary_CapsuleTraceMultiForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceSingle"); + + Params::KismetSystemLibrary_CapsuleTraceSingle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingleByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceSingleByProfile"); + + Params::KismetSystemLibrary_CapsuleTraceSingleByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingleForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::CapsuleTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, float HalfHeight, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CapsuleTraceSingleForObjects"); + + Params::KismetSystemLibrary_CapsuleTraceSingleForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.HalfHeight = HalfHeight; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CollectGarbage +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::CollectGarbage() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CollectGarbage"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ComponentOverlapActors +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& ComponentTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ActorClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::ComponentOverlapActors(class UPrimitiveComponent* Component, const struct FTransform& ComponentTransform, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ComponentOverlapActors"); + + Params::KismetSystemLibrary_ComponentOverlapActors Parms{}; + + Parms.Component = Component; + Parms.ComponentTransform = std::move(ComponentTransform); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ActorClassFilter = ActorClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ComponentOverlapComponents +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& ComponentTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ComponentClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::ComponentOverlapComponents(class UPrimitiveComponent* Component, const struct FTransform& ComponentTransform, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ComponentOverlapComponents"); + + Params::KismetSystemLibrary_ComponentOverlapComponents Parms{}; + + Parms.Component = Component; + Parms.ComponentTransform = std::move(ComponentTransform); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ComponentClassFilter = ComponentClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutComponents != nullptr) + *OutComponents = std::move(Parms.OutComponents); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ControlScreensaver +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bAllowScreenSaver (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ControlScreensaver(bool bAllowScreenSaver) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ControlScreensaver"); + + Params::KismetSystemLibrary_ControlScreensaver Parms{}; + + Parms.bAllowScreenSaver = bAllowScreenSaver; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.Conv_ClassToSoftClassReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSubclassOf& Class_0 (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftClassPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftClassPtr UKismetSystemLibrary::Conv_ClassToSoftClassReference(const TSubclassOf& Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_ClassToSoftClassReference"); + + Params::KismetSystemLibrary_Conv_ClassToSoftClassReference Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_ComponentReferenceToSoftComponentReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FComponentReference& ComponentReference (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftComponentReference ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftComponentReference UKismetSystemLibrary::Conv_ComponentReferenceToSoftComponentReference(const struct FComponentReference& ComponentReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_ComponentReferenceToSoftComponentReference"); + + Params::KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference Parms{}; + + Parms.ComponentReference = std::move(ComponentReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_InterfaceToObject +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TScriptInterface&Interface (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetSystemLibrary::Conv_InterfaceToObject(const TScriptInterface& Interface) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_InterfaceToObject"); + + Params::KismetSystemLibrary_Conv_InterfaceToObject Parms{}; + + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_ObjectToClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* UKismetSystemLibrary::Conv_ObjectToClass(class UObject* Object, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_ObjectToClass"); + + Params::KismetSystemLibrary_Conv_ObjectToClass Parms{}; + + Parms.Object = Object; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_ObjectToSoftObjectReference +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftObjectPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftObjectPtr UKismetSystemLibrary::Conv_ObjectToSoftObjectReference(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_ObjectToSoftObjectReference"); + + Params::KismetSystemLibrary_Conv_ObjectToSoftObjectReference Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_PrimaryAssetIdToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::Conv_PrimaryAssetIdToString(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_PrimaryAssetIdToString"); + + Params::KismetSystemLibrary_Conv_PrimaryAssetIdToString Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_PrimaryAssetTypeToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetType& PrimaryAssetType (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::Conv_PrimaryAssetTypeToString(const struct FPrimaryAssetType& PrimaryAssetType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_PrimaryAssetTypeToString"); + + Params::KismetSystemLibrary_Conv_PrimaryAssetTypeToString Parms{}; + + Parms.PrimaryAssetType = std::move(PrimaryAssetType); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftClassPathToSoftClassRef +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSoftClassPath& SoftClassPath (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftClassPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftClassPtr UKismetSystemLibrary::Conv_SoftClassPathToSoftClassRef(const struct FSoftClassPath& SoftClassPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftClassPathToSoftClassRef"); + + Params::KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef Parms{}; + + Parms.SoftClassPath = std::move(SoftClassPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftClassReferenceToClass +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftClassPtr& SoftClass (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf UKismetSystemLibrary::Conv_SoftClassReferenceToClass(const TSoftClassPtr& SoftClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftClassReferenceToClass"); + + Params::KismetSystemLibrary_Conv_SoftClassReferenceToClass Parms{}; + + Parms.SoftClass = SoftClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftClassReferenceToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftClassPtr& SoftClassReference (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::Conv_SoftClassReferenceToString(const TSoftClassPtr& SoftClassReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftClassReferenceToString"); + + Params::KismetSystemLibrary_Conv_SoftClassReferenceToString Parms{}; + + Parms.SoftClassReference = SoftClassReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftObjectReferenceToObject +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftObjectPtr& SoftObject (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetSystemLibrary::Conv_SoftObjectReferenceToObject(const TSoftObjectPtr& SoftObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftObjectReferenceToObject"); + + Params::KismetSystemLibrary_Conv_SoftObjectReferenceToObject Parms{}; + + Parms.SoftObject = SoftObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftObjectReferenceToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftObjectPtr& SoftObjectReference (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::Conv_SoftObjectReferenceToString(const TSoftObjectPtr& SoftObjectReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftObjectReferenceToString"); + + Params::KismetSystemLibrary_Conv_SoftObjectReferenceToString Parms{}; + + Parms.SoftObjectReference = SoftObjectReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftObjPathToSoftObjRef +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSoftObjectPath& SoftObjectPath (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftObjectPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftObjectPtr UKismetSystemLibrary::Conv_SoftObjPathToSoftObjRef(const struct FSoftObjectPath& SoftObjectPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftObjPathToSoftObjRef"); + + Params::KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef Parms{}; + + Parms.SoftObjectPath = std::move(SoftObjectPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftObjRefToSoftClassPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSoftClassPtr SoftClassReference (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftClassPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftClassPath UKismetSystemLibrary::Conv_SoftObjRefToSoftClassPath(TSoftClassPtr SoftClassReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftObjRefToSoftClassPath"); + + Params::KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath Parms{}; + + Parms.SoftClassReference = SoftClassReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.Conv_SoftObjRefToSoftObjPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSoftObjectPtr SoftObjectReference (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftObjectPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftObjectPath UKismetSystemLibrary::Conv_SoftObjRefToSoftObjPath(TSoftObjectPtr SoftObjectReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Conv_SoftObjRefToSoftObjPath"); + + Params::KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath Parms{}; + + Parms.SoftObjectReference = SoftObjectReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ConvertToAbsolutePath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Filename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::ConvertToAbsolutePath(const class FString& Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ConvertToAbsolutePath"); + + Params::KismetSystemLibrary_ConvertToAbsolutePath Parms{}; + + Parms.Filename = std::move(Filename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ConvertToRelativePath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Filename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::ConvertToRelativePath(const class FString& Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ConvertToRelativePath"); + + Params::KismetSystemLibrary_ConvertToRelativePath Parms{}; + + Parms.Filename = std::move(Filename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.CreateCopyForUndoBuffer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* ObjectToModify (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::CreateCopyForUndoBuffer(class UObject* ObjectToModify) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "CreateCopyForUndoBuffer"); + + Params::KismetSystemLibrary_CreateCopyForUndoBuffer Parms{}; + + Parms.ObjectToModify = ObjectToModify; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.Delay +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::Delay(const class UObject* WorldContextObject, float duration, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "Delay"); + + Params::KismetSystemLibrary_Delay Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.duration = duration; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DelayUntilNextTick +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DelayUntilNextTick(const class UObject* WorldContextObject, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DelayUntilNextTick"); + + Params::KismetSystemLibrary_DelayUntilNextTick Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DoesClassImplementInterface +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UClass* TestClass (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Interface (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::DoesClassImplementInterface(const class UClass* TestClass, TSubclassOf Interface) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DoesClassImplementInterface"); + + Params::KismetSystemLibrary_DoesClassImplementInterface Parms{}; + + Parms.TestClass = TestClass; + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.DoesImplementInterface +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* TestObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Interface (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::DoesImplementInterface(const class UObject* TestObject, TSubclassOf Interface) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DoesImplementInterface"); + + Params::KismetSystemLibrary_DoesImplementInterface Parms{}; + + Parms.TestObject = TestObject; + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugArrow +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ArrowSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugArrow(const class UObject* WorldContextObject, const struct FVector& LineStart, const struct FVector& LineEnd, float ArrowSize, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugArrow"); + + Params::KismetSystemLibrary_DrawDebugArrow Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LineStart = std::move(LineStart); + Parms.LineEnd = std::move(LineEnd); + Parms.ArrowSize = ArrowSize; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugBox +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Extent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugBox(const class UObject* WorldContextObject, const struct FVector& Center, const struct FVector& Extent, const struct FLinearColor& LineColor, const struct FRotator& Rotation, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugBox"); + + Params::KismetSystemLibrary_DrawDebugBox Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.Extent = std::move(Extent); + Parms.LineColor = std::move(LineColor); + Parms.Rotation = std::move(Rotation); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCamera +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class ACameraActor* CameraActor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& CameraColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCamera(const class ACameraActor* CameraActor, const struct FLinearColor& CameraColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCamera"); + + Params::KismetSystemLibrary_DrawDebugCamera Parms{}; + + Parms.CameraActor = CameraActor; + Parms.CameraColor = std::move(CameraColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCapsule +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCapsule(const class UObject* WorldContextObject, const struct FVector& Center, float HalfHeight, float Radius, const struct FRotator& Rotation, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCapsule"); + + Params::KismetSystemLibrary_DrawDebugCapsule Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.HalfHeight = HalfHeight; + Parms.Radius = Radius; + Parms.Rotation = std::move(Rotation); + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCircle +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumSegments (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& YAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ZAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDrawAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCircle(const class UObject* WorldContextObject, const struct FVector& Center, float Radius, int32 NumSegments, const struct FLinearColor& LineColor, float duration, float Thickness, const struct FVector& YAxis, const struct FVector& ZAxis, bool bDrawAxis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCircle"); + + Params::KismetSystemLibrary_DrawDebugCircle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.Radius = Radius; + Parms.NumSegments = NumSegments; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + Parms.YAxis = std::move(YAxis); + Parms.ZAxis = std::move(ZAxis); + Parms.bDrawAxis = bDrawAxis; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCone +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumSides (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCone(const class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float AngleWidth, float AngleHeight, int32 NumSides, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCone"); + + Params::KismetSystemLibrary_DrawDebugCone Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Origin = std::move(Origin); + Parms.Direction = std::move(Direction); + Parms.Length = Length; + Parms.AngleWidth = AngleWidth; + Parms.AngleHeight = AngleHeight; + Parms.NumSides = NumSides; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugConeInDegrees +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumSides (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugConeInDegrees(const class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float AngleWidth, float AngleHeight, int32 NumSides, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugConeInDegrees"); + + Params::KismetSystemLibrary_DrawDebugConeInDegrees Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Origin = std::move(Origin); + Parms.Direction = std::move(Direction); + Parms.Length = Length; + Parms.AngleWidth = AngleWidth; + Parms.AngleHeight = AngleHeight; + Parms.NumSides = NumSides; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCoordinateSystem +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& AxisLoc (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& AxisRot (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCoordinateSystem(const class UObject* WorldContextObject, const struct FVector& AxisLoc, const struct FRotator& AxisRot, float Scale, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCoordinateSystem"); + + Params::KismetSystemLibrary_DrawDebugCoordinateSystem Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.AxisLoc = std::move(AxisLoc); + Parms.AxisRot = std::move(AxisRot); + Parms.Scale = Scale; + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugCylinder +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Segments (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugCylinder(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, int32 Segments, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugCylinder"); + + Params::KismetSystemLibrary_DrawDebugCylinder Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.Segments = Segments; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugFloatHistoryLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDebugFloatHistory& FloatHistory (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& DrawLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& DrawSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& DrawColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugFloatHistoryLocation(const class UObject* WorldContextObject, const struct FDebugFloatHistory& FloatHistory, const struct FVector& DrawLocation, const struct FVector2D& DrawSize, const struct FLinearColor& DrawColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugFloatHistoryLocation"); + + Params::KismetSystemLibrary_DrawDebugFloatHistoryLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.FloatHistory = std::move(FloatHistory); + Parms.DrawLocation = std::move(DrawLocation); + Parms.DrawSize = std::move(DrawSize); + Parms.DrawColor = std::move(DrawColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugFloatHistoryTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDebugFloatHistory& FloatHistory (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FTransform& DrawTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& DrawSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& DrawColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugFloatHistoryTransform(const class UObject* WorldContextObject, const struct FDebugFloatHistory& FloatHistory, const struct FTransform& DrawTransform, const struct FVector2D& DrawSize, const struct FLinearColor& DrawColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugFloatHistoryTransform"); + + Params::KismetSystemLibrary_DrawDebugFloatHistoryTransform Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.FloatHistory = std::move(FloatHistory); + Parms.DrawTransform = std::move(DrawTransform); + Parms.DrawSize = std::move(DrawSize); + Parms.DrawColor = std::move(DrawColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugFrustum +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& FrustumTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& FrustumColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugFrustum(const class UObject* WorldContextObject, const struct FTransform& FrustumTransform, const struct FLinearColor& FrustumColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugFrustum"); + + Params::KismetSystemLibrary_DrawDebugFrustum Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.FrustumTransform = std::move(FrustumTransform); + Parms.FrustumColor = std::move(FrustumColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugLine +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugLine(const class UObject* WorldContextObject, const struct FVector& LineStart, const struct FVector& LineEnd, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugLine"); + + Params::KismetSystemLibrary_DrawDebugLine Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LineStart = std::move(LineStart); + Parms.LineEnd = std::move(LineEnd); + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlane& PlaneCoordinates (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Size (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& PlaneColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugPlane(const class UObject* WorldContextObject, const struct FPlane& PlaneCoordinates, const struct FVector& Location, float Size, const struct FLinearColor& PlaneColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugPlane"); + + Params::KismetSystemLibrary_DrawDebugPlane Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlaneCoordinates = std::move(PlaneCoordinates); + Parms.Location = std::move(Location); + Parms.Size = Size; + Parms.PlaneColor = std::move(PlaneColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& position (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Size (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& PointColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugPoint(const class UObject* WorldContextObject, const struct FVector& position, float Size, const struct FLinearColor& PointColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugPoint"); + + Params::KismetSystemLibrary_DrawDebugPoint Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.position = std::move(position); + Parms.Size = Size; + Parms.PointColor = std::move(PointColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugSphere +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Segments (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& LineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugSphere(const class UObject* WorldContextObject, const struct FVector& Center, float Radius, int32 Segments, const struct FLinearColor& LineColor, float duration, float Thickness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugSphere"); + + Params::KismetSystemLibrary_DrawDebugSphere Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.Radius = Radius; + Parms.Segments = Segments; + Parms.LineColor = std::move(LineColor); + Parms.duration = duration; + Parms.Thickness = Thickness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.DrawDebugString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TextLocation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* TestBaseActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TextColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::DrawDebugString(const class UObject* WorldContextObject, const struct FVector& TextLocation, const class FString& Text, class AActor* TestBaseActor, const struct FLinearColor& TextColor, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "DrawDebugString"); + + Params::KismetSystemLibrary_DrawDebugString Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextLocation = std::move(TextLocation); + Parms.Text = std::move(Text); + Parms.TestBaseActor = TestBaseActor; + Parms.TextColor = std::move(TextColor); + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.EndTransaction +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::EndTransaction() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "EndTransaction"); + + Params::KismetSystemLibrary_EndTransaction Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.EqualEqual_PrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetId& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::EqualEqual_PrimaryAssetId(const struct FPrimaryAssetId& A, const struct FPrimaryAssetId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "EqualEqual_PrimaryAssetId"); + + Params::KismetSystemLibrary_EqualEqual_PrimaryAssetId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.EqualEqual_PrimaryAssetType +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetType& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetType& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::EqualEqual_PrimaryAssetType(const struct FPrimaryAssetType& A, const struct FPrimaryAssetType& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "EqualEqual_PrimaryAssetType"); + + Params::KismetSystemLibrary_EqualEqual_PrimaryAssetType Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.EqualEqual_SoftClassReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftClassPtr& A (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftClassPtr& B (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::EqualEqual_SoftClassReference(const TSoftClassPtr& A, const TSoftClassPtr& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "EqualEqual_SoftClassReference"); + + Params::KismetSystemLibrary_EqualEqual_SoftClassReference Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.EqualEqual_SoftObjectReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftObjectPtr& A (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr& B (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::EqualEqual_SoftObjectReference(const TSoftObjectPtr& A, const TSoftObjectPtr& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "EqualEqual_SoftObjectReference"); + + Params::KismetSystemLibrary_EqualEqual_SoftObjectReference Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ExecuteConsoleCommand +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Command (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* SpecificPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ExecuteConsoleCommand(const class UObject* WorldContextObject, const class FString& Command, class APlayerController* SpecificPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ExecuteConsoleCommand"); + + Params::KismetSystemLibrary_ExecuteConsoleCommand Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Command = std::move(Command); + Parms.SpecificPlayer = SpecificPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.FlushDebugStrings +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::FlushDebugStrings(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "FlushDebugStrings"); + + Params::KismetSystemLibrary_FlushDebugStrings Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.FlushPersistentDebugLines +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::FlushPersistentDebugLines(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "FlushPersistentDebugLines"); + + Params::KismetSystemLibrary_FlushPersistentDebugLines Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ForceCloseAdBanner +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::ForceCloseAdBanner() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ForceCloseAdBanner"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.GetActorBounds +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class AActor* Actor (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Origin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoxExtent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::GetActorBounds(const class AActor* Actor, struct FVector* Origin, struct FVector* BoxExtent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetActorBounds"); + + Params::KismetSystemLibrary_GetActorBounds Parms{}; + + Parms.Actor = Actor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Origin != nullptr) + *Origin = std::move(Parms.Origin); + + if (BoxExtent != nullptr) + *BoxExtent = std::move(Parms.BoxExtent); +} + + +// Function Engine.KismetSystemLibrary.GetActorListFromComponentList +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&ComponentList (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +// class UClass* ActorClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActorList (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::GetActorListFromComponentList(const TArray& ComponentList, class UClass* ActorClassFilter, TArray* OutActorList) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetActorListFromComponentList"); + + Params::KismetSystemLibrary_GetActorListFromComponentList Parms{}; + + Parms.ComponentList = std::move(ComponentList); + Parms.ActorClassFilter = ActorClassFilter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActorList != nullptr) + *OutActorList = std::move(Parms.OutActorList); +} + + +// Function Engine.KismetSystemLibrary.GetAdIDCount +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetAdIDCount() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetAdIDCount"); + + Params::KismetSystemLibrary_GetAdIDCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetBuildConfiguration +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetBuildConfiguration() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetBuildConfiguration"); + + Params::KismetSystemLibrary_GetBuildConfiguration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetBuildVersion +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetBuildVersion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetBuildVersion"); + + Params::KismetSystemLibrary_GetBuildVersion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetClassDisplayName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UClass* Class_0 (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetClassDisplayName(const class UClass* Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetClassDisplayName"); + + Params::KismetSystemLibrary_GetClassDisplayName Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetClassFromPrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf UKismetSystemLibrary::GetClassFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetClassFromPrimaryAssetId"); + + Params::KismetSystemLibrary_GetClassFromPrimaryAssetId Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetClassTopLevelAssetPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UClass* Class_0 (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTopLevelAssetPath ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTopLevelAssetPath UKismetSystemLibrary::GetClassTopLevelAssetPath(const class UClass* Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetClassTopLevelAssetPath"); + + Params::KismetSystemLibrary_GetClassTopLevelAssetPath Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetCommandLine +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetCommandLine() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetCommandLine"); + + Params::KismetSystemLibrary_GetCommandLine Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetComponentBounds +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class USceneComponent* Component (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Origin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoxExtent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SphereRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::GetComponentBounds(const class USceneComponent* Component, struct FVector* Origin, struct FVector* BoxExtent, float* SphereRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetComponentBounds"); + + Params::KismetSystemLibrary_GetComponentBounds Parms{}; + + Parms.Component = Component; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Origin != nullptr) + *Origin = std::move(Parms.Origin); + + if (BoxExtent != nullptr) + *BoxExtent = std::move(Parms.BoxExtent); + + if (SphereRadius != nullptr) + *SphereRadius = Parms.SphereRadius; +} + + +// Function Engine.KismetSystemLibrary.GetConsoleVariableBoolValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& VariableName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::GetConsoleVariableBoolValue(const class FString& VariableName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetConsoleVariableBoolValue"); + + Params::KismetSystemLibrary_GetConsoleVariableBoolValue Parms{}; + + Parms.VariableName = std::move(VariableName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetConsoleVariableFloatValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& VariableName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::GetConsoleVariableFloatValue(const class FString& VariableName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetConsoleVariableFloatValue"); + + Params::KismetSystemLibrary_GetConsoleVariableFloatValue Parms{}; + + Parms.VariableName = std::move(VariableName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetConsoleVariableIntValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& VariableName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetConsoleVariableIntValue(const class FString& VariableName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetConsoleVariableIntValue"); + + Params::KismetSystemLibrary_GetConsoleVariableIntValue Parms{}; + + Parms.VariableName = std::move(VariableName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetConsoleVariableStringValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& VariableName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetConsoleVariableStringValue(const class FString& VariableName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetConsoleVariableStringValue"); + + Params::KismetSystemLibrary_GetConsoleVariableStringValue Parms{}; + + Parms.VariableName = std::move(VariableName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetConvenientWindowedResolutions +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* Resolutions (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::GetConvenientWindowedResolutions(TArray* Resolutions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetConvenientWindowedResolutions"); + + Params::KismetSystemLibrary_GetConvenientWindowedResolutions Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Resolutions != nullptr) + *Resolutions = std::move(Parms.Resolutions); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetCurrentBundleState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceCurrentState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutBundles (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::GetCurrentBundleState(const struct FPrimaryAssetId& PrimaryAssetId, bool bForceCurrentState, TArray* OutBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetCurrentBundleState"); + + Params::KismetSystemLibrary_GetCurrentBundleState Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + Parms.bForceCurrentState = bForceCurrentState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutBundles != nullptr) + *OutBundles = std::move(Parms.OutBundles); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetDefaultLanguage +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetDefaultLanguage() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetDefaultLanguage"); + + Params::KismetSystemLibrary_GetDefaultLanguage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetDefaultLocale +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetDefaultLocale() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetDefaultLocale"); + + Params::KismetSystemLibrary_GetDefaultLocale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetDeviceId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetDeviceId() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetDeviceId"); + + Params::KismetSystemLibrary_GetDeviceId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetDisplayName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetDisplayName(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetDisplayName"); + + Params::KismetSystemLibrary_GetDisplayName Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetEngineVersion +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetEngineVersion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetEngineVersion"); + + Params::KismetSystemLibrary_GetEngineVersion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetEnumTopLevelAssetPath +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UEnum* Enum (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTopLevelAssetPath ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTopLevelAssetPath UKismetSystemLibrary::GetEnumTopLevelAssetPath(const class UEnum* Enum) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetEnumTopLevelAssetPath"); + + Params::KismetSystemLibrary_GetEnumTopLevelAssetPath Parms{}; + + Parms.Enum = Enum; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetFrameCount +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetSystemLibrary::GetFrameCount() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetFrameCount"); + + Params::KismetSystemLibrary_GetFrameCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetGameBundleId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetGameBundleId() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetGameBundleId"); + + Params::KismetSystemLibrary_GetGameBundleId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetGameName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetGameName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetGameName"); + + Params::KismetSystemLibrary_GetGameName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetGamepadButtonGlyph +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& ButtonKey (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ControllerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture2D* UKismetSystemLibrary::GetGamepadButtonGlyph(const class FString& ButtonKey, int32 ControllerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetGamepadButtonGlyph"); + + Params::KismetSystemLibrary_GetGamepadButtonGlyph Parms{}; + + Parms.ButtonKey = std::move(ButtonKey); + Parms.ControllerIndex = ControllerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetGamepadControllerName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetGamepadControllerName(int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetGamepadControllerName"); + + Params::KismetSystemLibrary_GetGamepadControllerName Parms{}; + + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetGameTimeInSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetSystemLibrary::GetGameTimeInSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetGameTimeInSeconds"); + + Params::KismetSystemLibrary_GetGameTimeInSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetLocalCurrencyCode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetLocalCurrencyCode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetLocalCurrencyCode"); + + Params::KismetSystemLibrary_GetLocalCurrencyCode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetLocalCurrencySymbol +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetLocalCurrencySymbol() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetLocalCurrencySymbol"); + + Params::KismetSystemLibrary_GetLocalCurrencySymbol Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetMinYResolutionFor3DView +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetMinYResolutionFor3DView() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetMinYResolutionFor3DView"); + + Params::KismetSystemLibrary_GetMinYResolutionFor3DView Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetMinYResolutionForUI +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetMinYResolutionForUI() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetMinYResolutionForUI"); + + Params::KismetSystemLibrary_GetMinYResolutionForUI Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetObjectFromPrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetSystemLibrary::GetObjectFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetObjectFromPrimaryAssetId"); + + Params::KismetSystemLibrary_GetObjectFromPrimaryAssetId Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetObjectName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetObjectName(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetObjectName"); + + Params::KismetSystemLibrary_GetObjectName Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetOuterObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetSystemLibrary::GetOuterObject(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetOuterObject"); + + Params::KismetSystemLibrary_GetOuterObject Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPathName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetPathName(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPathName"); + + Params::KismetSystemLibrary_GetPathName Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPlatformUserDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetPlatformUserDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPlatformUserDir"); + + Params::KismetSystemLibrary_GetPlatformUserDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPlatformUserName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetPlatformUserName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPlatformUserName"); + + Params::KismetSystemLibrary_GetPlatformUserName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPreferredLanguages +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetSystemLibrary::GetPreferredLanguages() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPreferredLanguages"); + + Params::KismetSystemLibrary_GetPreferredLanguages Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromClass +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPrimaryAssetId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPrimaryAssetId UKismetSystemLibrary::GetPrimaryAssetIdFromClass(TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetIdFromClass"); + + Params::KismetSystemLibrary_GetPrimaryAssetIdFromClass Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromObject +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPrimaryAssetId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPrimaryAssetId UKismetSystemLibrary::GetPrimaryAssetIdFromObject(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetIdFromObject"); + + Params::KismetSystemLibrary_GetPrimaryAssetIdFromObject Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromSoftClassReference +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSoftClassPtr SoftClassReference (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPrimaryAssetId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPrimaryAssetId UKismetSystemLibrary::GetPrimaryAssetIdFromSoftClassReference(TSoftClassPtr SoftClassReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetIdFromSoftClassReference"); + + Params::KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference Parms{}; + + Parms.SoftClassReference = SoftClassReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromSoftObjectReference +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// TSoftObjectPtr SoftObjectReference (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPrimaryAssetId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPrimaryAssetId UKismetSystemLibrary::GetPrimaryAssetIdFromSoftObjectReference(TSoftObjectPtr SoftObjectReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetIdFromSoftObjectReference"); + + Params::KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference Parms{}; + + Parms.SoftObjectReference = SoftObjectReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdList +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FPrimaryAssetType& PrimaryAssetType (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPrimaryAssetIdList (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::GetPrimaryAssetIdList(const struct FPrimaryAssetType& PrimaryAssetType, TArray* OutPrimaryAssetIdList) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetIdList"); + + Params::KismetSystemLibrary_GetPrimaryAssetIdList Parms{}; + + Parms.PrimaryAssetType = std::move(PrimaryAssetType); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPrimaryAssetIdList != nullptr) + *OutPrimaryAssetIdList = std::move(Parms.OutPrimaryAssetIdList); +} + + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetsWithBundleState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& RequiredBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ExcludedBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ValidTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bForceCurrentState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPrimaryAssetIdList (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::GetPrimaryAssetsWithBundleState(const TArray& RequiredBundles, const TArray& ExcludedBundles, const TArray& ValidTypes, bool bForceCurrentState, TArray* OutPrimaryAssetIdList) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetPrimaryAssetsWithBundleState"); + + Params::KismetSystemLibrary_GetPrimaryAssetsWithBundleState Parms{}; + + Parms.RequiredBundles = std::move(RequiredBundles); + Parms.ExcludedBundles = std::move(ExcludedBundles); + Parms.ValidTypes = std::move(ValidTypes); + Parms.bForceCurrentState = bForceCurrentState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPrimaryAssetIdList != nullptr) + *OutPrimaryAssetIdList = std::move(Parms.OutPrimaryAssetIdList); +} + + +// Function Engine.KismetSystemLibrary.GetProjectContentDirectory +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetProjectContentDirectory() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetProjectContentDirectory"); + + Params::KismetSystemLibrary_GetProjectContentDirectory Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetProjectDirectory +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetProjectDirectory() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetProjectDirectory"); + + Params::KismetSystemLibrary_GetProjectDirectory Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetProjectSavedDirectory +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetProjectSavedDirectory() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetProjectSavedDirectory"); + + Params::KismetSystemLibrary_GetProjectSavedDirectory Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetRenderingDetailMode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetRenderingDetailMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetRenderingDetailMode"); + + Params::KismetSystemLibrary_GetRenderingDetailMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetRenderingMaterialQualityLevel +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::GetRenderingMaterialQualityLevel() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetRenderingMaterialQualityLevel"); + + Params::KismetSystemLibrary_GetRenderingMaterialQualityLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSoftClassPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UClass* Class_0 (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftClassPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftClassPath UKismetSystemLibrary::GetSoftClassPath(const class UClass* Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSoftClassPath"); + + Params::KismetSystemLibrary_GetSoftClassPath Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSoftClassReferenceFromPrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftClassPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftClassPtr UKismetSystemLibrary::GetSoftClassReferenceFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSoftClassReferenceFromPrimaryAssetId"); + + Params::KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSoftClassTopLevelAssetPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TSoftClassPtr SoftClassReference (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTopLevelAssetPath ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTopLevelAssetPath UKismetSystemLibrary::GetSoftClassTopLevelAssetPath(TSoftClassPtr SoftClassReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSoftClassTopLevelAssetPath"); + + Params::KismetSystemLibrary_GetSoftClassTopLevelAssetPath Parms{}; + + Parms.SoftClassReference = SoftClassReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSoftObjectPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftObjectPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftObjectPath UKismetSystemLibrary::GetSoftObjectPath(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSoftObjectPath"); + + Params::KismetSystemLibrary_GetSoftObjectPath Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSoftObjectReferenceFromPrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftObjectPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftObjectPtr UKismetSystemLibrary::GetSoftObjectReferenceFromPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSoftObjectReferenceFromPrimaryAssetId"); + + Params::KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetStructTopLevelAssetPath +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UScriptStruct* Struct (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTopLevelAssetPath ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTopLevelAssetPath UKismetSystemLibrary::GetStructTopLevelAssetPath(const class UScriptStruct* Struct) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetStructTopLevelAssetPath"); + + Params::KismetSystemLibrary_GetStructTopLevelAssetPath Parms{}; + + Parms.Struct = Struct; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSupportedFullscreenResolutions +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* Resolutions (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::GetSupportedFullscreenResolutions(TArray* Resolutions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSupportedFullscreenResolutions"); + + Params::KismetSystemLibrary_GetSupportedFullscreenResolutions Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Resolutions != nullptr) + *Resolutions = std::move(Parms.Resolutions); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetSystemPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetSystemPath(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetSystemPath"); + + Params::KismetSystemLibrary_GetSystemPath Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetUniqueDeviceId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::GetUniqueDeviceId() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetUniqueDeviceId"); + + Params::KismetSystemLibrary_GetUniqueDeviceId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.GetVolumeButtonsHandledBySystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::GetVolumeButtonsHandledBySystem() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "GetVolumeButtonsHandledBySystem"); + + Params::KismetSystemLibrary_GetVolumeButtonsHandledBySystem Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.HasMultipleLocalPlayers +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::HasMultipleLocalPlayers(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "HasMultipleLocalPlayers"); + + Params::KismetSystemLibrary_HasMultipleLocalPlayers Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.HideAdBanner +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::HideAdBanner() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "HideAdBanner"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.IsControllerAssignedToGamepad +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsControllerAssignedToGamepad(int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsControllerAssignedToGamepad"); + + Params::KismetSystemLibrary_IsControllerAssignedToGamepad Parms{}; + + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsDedicatedServer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsDedicatedServer(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsDedicatedServer"); + + Params::KismetSystemLibrary_IsDedicatedServer Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsInterstitialAdAvailable +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsInterstitialAdAvailable() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsInterstitialAdAvailable"); + + Params::KismetSystemLibrary_IsInterstitialAdAvailable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsInterstitialAdRequested +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsInterstitialAdRequested() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsInterstitialAdRequested"); + + Params::KismetSystemLibrary_IsInterstitialAdRequested Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsLoggedIn +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class APlayerController* SpecificPlayer (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsLoggedIn(const class APlayerController* SpecificPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsLoggedIn"); + + Params::KismetSystemLibrary_IsLoggedIn Parms{}; + + Parms.SpecificPlayer = SpecificPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsObjectOfSoftClass +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftClassPtr SoftClass (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsObjectOfSoftClass(const class UObject* Object, TSoftClassPtr SoftClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsObjectOfSoftClass"); + + Params::KismetSystemLibrary_IsObjectOfSoftClass Parms{}; + + Parms.Object = Object; + Parms.SoftClass = SoftClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsPackagedForDistribution +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsPackagedForDistribution() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsPackagedForDistribution"); + + Params::KismetSystemLibrary_IsPackagedForDistribution Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsScreensaverEnabled +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsScreensaverEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsScreensaverEnabled"); + + Params::KismetSystemLibrary_IsScreensaverEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsServer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsServer(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsServer"); + + Params::KismetSystemLibrary_IsServer Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsSplitScreen +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsSplitScreen(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsSplitScreen"); + + Params::KismetSystemLibrary_IsSplitScreen Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsStandalone +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsStandalone(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsStandalone"); + + Params::KismetSystemLibrary_IsStandalone Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsUnattended +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsUnattended() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsUnattended"); + + Params::KismetSystemLibrary_IsUnattended Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValid +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValid(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValid"); + + Params::KismetSystemLibrary_IsValid Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UClass* Class_0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidClass(class UClass* Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidClass"); + + Params::KismetSystemLibrary_IsValidClass Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidInterface +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TScriptInterface&Interface (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidInterface(const TScriptInterface& Interface) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidInterface"); + + Params::KismetSystemLibrary_IsValidInterface Parms{}; + + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidPrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidPrimaryAssetId(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidPrimaryAssetId"); + + Params::KismetSystemLibrary_IsValidPrimaryAssetId Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidPrimaryAssetType +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetType& PrimaryAssetType (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidPrimaryAssetType(const struct FPrimaryAssetType& PrimaryAssetType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidPrimaryAssetType"); + + Params::KismetSystemLibrary_IsValidPrimaryAssetType Parms{}; + + Parms.PrimaryAssetType = std::move(PrimaryAssetType); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidSoftClassReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftClassPtr& SoftClassReference (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidSoftClassReference(const TSoftClassPtr& SoftClassReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidSoftClassReference"); + + Params::KismetSystemLibrary_IsValidSoftClassReference Parms{}; + + Parms.SoftClassReference = SoftClassReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.IsValidSoftObjectReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftObjectPtr& SoftObjectReference (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::IsValidSoftObjectReference(const TSoftObjectPtr& SoftObjectReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "IsValidSoftObjectReference"); + + Params::KismetSystemLibrary_IsValidSoftObjectReference Parms{}; + + Parms.SoftObjectReference = SoftObjectReference; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_ClearAndInvalidateTimerHandle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle& Handle (Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_ClearAndInvalidateTimerHandle(const class UObject* WorldContextObject, struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_ClearAndInvalidateTimerHandle"); + + Params::KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Handle = std::move(Parms.Handle); +} + + +// Function Engine.KismetSystemLibrary.K2_ClearTimer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_ClearTimer(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_ClearTimer"); + + Params::KismetSystemLibrary_K2_ClearTimer Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_ClearTimerDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_ClearTimerDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_ClearTimerDelegate"); + + Params::KismetSystemLibrary_K2_ClearTimerDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_ClearTimerHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_ClearTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_ClearTimerHandle"); + + Params::KismetSystemLibrary_K2_ClearTimerHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTime +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerElapsedTime(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerElapsedTime"); + + Params::KismetSystemLibrary_K2_GetTimerElapsedTime Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTimeDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerElapsedTimeDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerElapsedTimeDelegate"); + + Params::KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTimeHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerElapsedTimeHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerElapsedTimeHandle"); + + Params::KismetSystemLibrary_K2_GetTimerElapsedTimeHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTime +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerRemainingTime(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerRemainingTime"); + + Params::KismetSystemLibrary_K2_GetTimerRemainingTime Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTimeDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerRemainingTimeDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerRemainingTimeDelegate"); + + Params::KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTimeHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetSystemLibrary::K2_GetTimerRemainingTimeHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_GetTimerRemainingTimeHandle"); + + Params::KismetSystemLibrary_K2_GetTimerRemainingTimeHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_InvalidateTimerHandle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FTimerHandle& Handle (Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimerHandle UKismetSystemLibrary::K2_InvalidateTimerHandle(struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_InvalidateTimerHandle"); + + Params::KismetSystemLibrary_K2_InvalidateTimerHandle Parms{}; + + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Handle = std::move(Parms.Handle); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerActive +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerActive(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerActive"); + + Params::KismetSystemLibrary_K2_IsTimerActive Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerActiveDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerActiveDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerActiveDelegate"); + + Params::KismetSystemLibrary_K2_IsTimerActiveDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerActiveHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerActiveHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerActiveHandle"); + + Params::KismetSystemLibrary_K2_IsTimerActiveHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerPaused +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerPaused(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerPaused"); + + Params::KismetSystemLibrary_K2_IsTimerPaused Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerPausedDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerPausedDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerPausedDelegate"); + + Params::KismetSystemLibrary_K2_IsTimerPausedDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsTimerPausedHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsTimerPausedHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsTimerPausedHandle"); + + Params::KismetSystemLibrary_K2_IsTimerPausedHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_IsValidTimerHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_IsValidTimerHandle(const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_IsValidTimerHandle"); + + Params::KismetSystemLibrary_K2_IsValidTimerHandle Parms{}; + + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_PauseTimer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_PauseTimer(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_PauseTimer"); + + Params::KismetSystemLibrary_K2_PauseTimer Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_PauseTimerDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_PauseTimerDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_PauseTimerDelegate"); + + Params::KismetSystemLibrary_K2_PauseTimerDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_PauseTimerHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_PauseTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_PauseTimerHandle"); + + Params::KismetSystemLibrary_K2_PauseTimerHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_SetTimer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMaxOncePerFrame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InitialStartDelay (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InitialStartDelayVariance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimerHandle UKismetSystemLibrary::K2_SetTimer(class UObject* Object, const class FString& FunctionName, float Time, bool bLooping, bool bMaxOncePerFrame, float InitialStartDelay, float InitialStartDelayVariance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_SetTimer"); + + Params::KismetSystemLibrary_K2_SetTimer Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + Parms.Time = Time; + Parms.bLooping = bLooping; + Parms.bMaxOncePerFrame = bMaxOncePerFrame; + Parms.InitialStartDelay = InitialStartDelay; + Parms.InitialStartDelayVariance = InitialStartDelayVariance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_SetTimerDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMaxOncePerFrame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InitialStartDelay (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InitialStartDelayVariance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimerHandle UKismetSystemLibrary::K2_SetTimerDelegate(TDelegate Delegate, float Time, bool bLooping, bool bMaxOncePerFrame, float InitialStartDelay, float InitialStartDelayVariance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_SetTimerDelegate"); + + Params::KismetSystemLibrary_K2_SetTimerDelegate Parms{}; + + Parms.Delegate = Delegate; + Parms.Time = Time; + Parms.bLooping = bLooping; + Parms.bMaxOncePerFrame = bMaxOncePerFrame; + Parms.InitialStartDelay = InitialStartDelay; + Parms.InitialStartDelayVariance = InitialStartDelayVariance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_SetTimerForNextTick +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimerHandle UKismetSystemLibrary::K2_SetTimerForNextTick(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_SetTimerForNextTick"); + + Params::KismetSystemLibrary_K2_SetTimerForNextTick Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_SetTimerForNextTickDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimerHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimerHandle UKismetSystemLibrary::K2_SetTimerForNextTickDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_SetTimerForNextTickDelegate"); + + Params::KismetSystemLibrary_K2_SetTimerForNextTickDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_TimerExists +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_TimerExists(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_TimerExists"); + + Params::KismetSystemLibrary_K2_TimerExists Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_TimerExistsDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_TimerExistsDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_TimerExistsDelegate"); + + Params::KismetSystemLibrary_K2_TimerExistsDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_TimerExistsHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::K2_TimerExistsHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_TimerExistsHandle"); + + Params::KismetSystemLibrary_K2_TimerExistsHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FunctionName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_UnPauseTimer(class UObject* Object, const class FString& FunctionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_UnPauseTimer"); + + Params::KismetSystemLibrary_K2_UnPauseTimer Parms{}; + + Parms.Object = Object; + Parms.FunctionName = std::move(FunctionName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimerDelegate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TDelegate Delegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_UnPauseTimerDelegate(TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_UnPauseTimerDelegate"); + + Params::KismetSystemLibrary_K2_UnPauseTimerDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimerHandle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimerHandle& Handle (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::K2_UnPauseTimerHandle(const class UObject* WorldContextObject, const struct FTimerHandle& Handle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "K2_UnPauseTimerHandle"); + + Params::KismetSystemLibrary_K2_UnPauseTimerHandle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LaunchExternalUrl +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InDomainStrings (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LaunchExternalUrl(const TArray& InDomainStrings, const class FString& URL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LaunchExternalUrl"); + + Params::KismetSystemLibrary_LaunchExternalUrl Parms{}; + + Parms.InDomainStrings = std::move(InDomainStrings); + Parms.URL = std::move(URL); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LaunchURL +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LaunchURL(const class FString& URL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LaunchURL"); + + Params::KismetSystemLibrary_LaunchURL Parms{}; + + Parms.URL = std::move(URL); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LineTraceMulti +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceMulti"); + + Params::KismetSystemLibrary_LineTraceMulti Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LineTraceMultiByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceMultiByProfile"); + + Params::KismetSystemLibrary_LineTraceMultiByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LineTraceMultiForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceMultiForObjects"); + + Params::KismetSystemLibrary_LineTraceMultiForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LineTraceSingle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceSingle"); + + Params::KismetSystemLibrary_LineTraceSingle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LineTraceSingleByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceSingleByProfile"); + + Params::KismetSystemLibrary_LineTraceSingleByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LineTraceSingleForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::LineTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LineTraceSingleForObjects"); + + Params::KismetSystemLibrary_LineTraceSingleForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LoadAsset +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftObjectPtr Asset (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegate OnLoaded (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LoadAsset(const class UObject* WorldContextObject, TSoftObjectPtr Asset, TDelegate OnLoaded, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LoadAsset"); + + Params::KismetSystemLibrary_LoadAsset Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Asset = Asset; + Parms.OnLoaded = OnLoaded; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LoadAsset_Blocking +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSoftObjectPtr Asset (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetSystemLibrary::LoadAsset_Blocking(TSoftObjectPtr Asset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LoadAsset_Blocking"); + + Params::KismetSystemLibrary_LoadAsset_Blocking Parms{}; + + Parms.Asset = Asset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LoadAssetClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSoftClassPtr AssetClass (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegate Loaded)>OnLoaded (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LoadAssetClass(const class UObject* WorldContextObject, TSoftClassPtr AssetClass, TDelegate Loaded)> OnLoaded, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LoadAssetClass"); + + Params::KismetSystemLibrary_LoadAssetClass Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.AssetClass = AssetClass; + Parms.OnLoaded = OnLoaded; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LoadClassAsset_Blocking +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSoftClassPtr AssetClass (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* UKismetSystemLibrary::LoadClassAsset_Blocking(TSoftClassPtr AssetClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LoadClassAsset_Blocking"); + + Params::KismetSystemLibrary_LoadClassAsset_Blocking Parms{}; + + Parms.AssetClass = AssetClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.LoadInterstitialAd +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 AdIdIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LoadInterstitialAd(int32 AdIdIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LoadInterstitialAd"); + + Params::KismetSystemLibrary_LoadInterstitialAd Parms{}; + + Parms.AdIdIndex = AdIdIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.LogString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPrintToLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::LogString(const class FString& InString, bool bPrintToLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "LogString"); + + Params::KismetSystemLibrary_LogString Parms{}; + + Parms.InString = std::move(InString); + Parms.bPrintToLog = bPrintToLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.MakeARFilter +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& PackageNames (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& PackagePaths (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& SoftObjectPaths (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray&ClassPaths (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TSet& RecursiveClassPathsExclusionSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ClassNames (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, AdvancedDisplay, NativeAccessSpecifierPublic) +// const TSet& RecursiveClassesExclusionSet (ConstParm, Parm, OutParm, ReferenceParm, AdvancedDisplay, NativeAccessSpecifierPublic) +// const bool bRecursivePaths (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bRecursiveClasses (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bIncludeOnlyOnDiskAssets (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FARFilter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FARFilter UKismetSystemLibrary::MakeARFilter(const TArray& PackageNames, const TArray& PackagePaths, const TArray& SoftObjectPaths, const TArray& ClassPaths, const TSet& RecursiveClassPathsExclusionSet, const TArray& ClassNames, const TSet& RecursiveClassesExclusionSet, const bool bRecursivePaths, const bool bRecursiveClasses, const bool bIncludeOnlyOnDiskAssets) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeARFilter"); + + Params::KismetSystemLibrary_MakeARFilter Parms{}; + + Parms.PackageNames = std::move(PackageNames); + Parms.PackagePaths = std::move(PackagePaths); + Parms.SoftObjectPaths = std::move(SoftObjectPaths); + Parms.ClassPaths = std::move(ClassPaths); + Parms.RecursiveClassPathsExclusionSet = std::move(RecursiveClassPathsExclusionSet); + Parms.ClassNames = std::move(ClassNames); + Parms.RecursiveClassesExclusionSet = std::move(RecursiveClassesExclusionSet); + Parms.bRecursivePaths = bRecursivePaths; + Parms.bRecursiveClasses = bRecursiveClasses; + Parms.bIncludeOnlyOnDiskAssets = bIncludeOnlyOnDiskAssets; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::MakeLiteralBool(bool Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralBool"); + + Params::KismetSystemLibrary_MakeLiteralBool Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetSystemLibrary::MakeLiteralByte(uint8 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralByte"); + + Params::KismetSystemLibrary_MakeLiteralByte Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetSystemLibrary::MakeLiteralDouble(double Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralDouble"); + + Params::KismetSystemLibrary_MakeLiteralDouble Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetSystemLibrary::MakeLiteralInt(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralInt"); + + Params::KismetSystemLibrary_MakeLiteralInt Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetSystemLibrary::MakeLiteralInt64(int64 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralInt64"); + + Params::KismetSystemLibrary_MakeLiteralInt64 Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UKismetSystemLibrary::MakeLiteralName(class FName Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralName"); + + Params::KismetSystemLibrary_MakeLiteralName Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Value (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::MakeLiteralString(const class FString& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralString"); + + Params::KismetSystemLibrary_MakeLiteralString Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeLiteralText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& Value (Parm, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetSystemLibrary::MakeLiteralText(const class FText& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeLiteralText"); + + Params::KismetSystemLibrary_MakeLiteralText Parms{}; + + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeSoftClassPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& PathString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftClassPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftClassPath UKismetSystemLibrary::MakeSoftClassPath(const class FString& PathString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeSoftClassPath"); + + Params::KismetSystemLibrary_MakeSoftClassPath Parms{}; + + Parms.PathString = std::move(PathString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeSoftObjectPath +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& PathString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSoftObjectPath ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FSoftObjectPath UKismetSystemLibrary::MakeSoftObjectPath(const class FString& PathString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeSoftObjectPath"); + + Params::KismetSystemLibrary_MakeSoftObjectPath Parms{}; + + Parms.PathString = std::move(PathString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MakeTopLevelAssetPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& PackageName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& AssetName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTopLevelAssetPath ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTopLevelAssetPath UKismetSystemLibrary::MakeTopLevelAssetPath(const class FString& PackageName, const class FString& AssetName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MakeTopLevelAssetPath"); + + Params::KismetSystemLibrary_MakeTopLevelAssetPath Parms{}; + + Parms.PackageName = std::move(PackageName); + Parms.AssetName = std::move(AssetName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.MoveComponentTo +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class USceneComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TargetRelativeLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& TargetRelativeRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bEaseOut (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEaseIn (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OverTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceShortestRotationPath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMoveComponentAction MoveAction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::MoveComponentTo(class USceneComponent* Component, const struct FVector& TargetRelativeLocation, const struct FRotator& TargetRelativeRotation, bool bEaseOut, bool bEaseIn, float OverTime, bool bForceShortestRotationPath, EMoveComponentAction MoveAction, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "MoveComponentTo"); + + Params::KismetSystemLibrary_MoveComponentTo Parms{}; + + Parms.Component = Component; + Parms.TargetRelativeLocation = std::move(TargetRelativeLocation); + Parms.TargetRelativeRotation = std::move(TargetRelativeRotation); + Parms.bEaseOut = bEaseOut; + Parms.bEaseIn = bEaseIn; + Parms.OverTime = OverTime; + Parms.bForceShortestRotationPath = bForceShortestRotationPath; + Parms.MoveAction = MoveAction; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.NormalizeFilename +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InFilename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetSystemLibrary::NormalizeFilename(const class FString& InFilename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "NormalizeFilename"); + + Params::KismetSystemLibrary_NormalizeFilename Parms{}; + + Parms.InFilename = std::move(InFilename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.NotEqual_PrimaryAssetId +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetId& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetId& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::NotEqual_PrimaryAssetId(const struct FPrimaryAssetId& A, const struct FPrimaryAssetId& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "NotEqual_PrimaryAssetId"); + + Params::KismetSystemLibrary_NotEqual_PrimaryAssetId Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.NotEqual_PrimaryAssetType +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPrimaryAssetType& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetType& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::NotEqual_PrimaryAssetType(const struct FPrimaryAssetType& A, const struct FPrimaryAssetType& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "NotEqual_PrimaryAssetType"); + + Params::KismetSystemLibrary_NotEqual_PrimaryAssetType Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.NotEqual_SoftClassReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftClassPtr& A (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftClassPtr& B (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::NotEqual_SoftClassReference(const TSoftClassPtr& A, const TSoftClassPtr& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "NotEqual_SoftClassReference"); + + Params::KismetSystemLibrary_NotEqual_SoftClassReference Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.NotEqual_SoftObjectReference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSoftObjectPtr& A (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr& B (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::NotEqual_SoftObjectReference(const TSoftObjectPtr& A, const TSoftObjectPtr& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "NotEqual_SoftObjectReference"); + + Params::KismetSystemLibrary_NotEqual_SoftObjectReference Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ParseCommandLine +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& InCmdLine (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutTokens (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* OutSwitches (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TMap* OutParams (Parm, OutParm, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ParseCommandLine(const class FString& InCmdLine, TArray* OutTokens, TArray* OutSwitches, TMap* OutParams) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ParseCommandLine"); + + Params::KismetSystemLibrary_ParseCommandLine Parms{}; + + Parms.InCmdLine = std::move(InCmdLine); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTokens != nullptr) + *OutTokens = std::move(Parms.OutTokens); + + if (OutSwitches != nullptr) + *OutSwitches = std::move(Parms.OutSwitches); + + if (OutParams != nullptr) + *OutParams = std::move(Parms.OutParams); +} + + +// Function Engine.KismetSystemLibrary.ParseParam +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InParam (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::ParseParam(const class FString& InString, const class FString& InParam) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ParseParam"); + + Params::KismetSystemLibrary_ParseParam Parms{}; + + Parms.InString = std::move(InString); + Parms.InParam = std::move(InParam); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.ParseParamValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InParam (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutValue (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::ParseParamValue(const class FString& InString, const class FString& InParam, class FString* OutValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ParseParamValue"); + + Params::KismetSystemLibrary_ParseParamValue Parms{}; + + Parms.InString = std::move(InString); + Parms.InParam = std::move(InParam); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValue != nullptr) + *OutValue = std::move(Parms.OutValue); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.PrintString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPrintToScreen (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPrintToLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TextColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName Key (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::PrintString(const class UObject* WorldContextObject, const class FString& InString, bool bPrintToScreen, bool bPrintToLog, const struct FLinearColor& TextColor, float duration, const class FName Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "PrintString"); + + Params::KismetSystemLibrary_PrintString Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InString = std::move(InString); + Parms.bPrintToScreen = bPrintToScreen; + Parms.bPrintToLog = bPrintToLog; + Parms.TextColor = std::move(TextColor); + Parms.duration = duration; + Parms.Key = Key; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.PrintText +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FText& InText (ConstParm, Parm, NativeAccessSpecifierPublic) +// bool bPrintToScreen (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPrintToLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TextColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName Key (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::PrintText(const class UObject* WorldContextObject, const class FText& InText, bool bPrintToScreen, bool bPrintToLog, const struct FLinearColor& TextColor, float duration, const class FName Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "PrintText"); + + Params::KismetSystemLibrary_PrintText Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InText = std::move(InText); + Parms.bPrintToScreen = bPrintToScreen; + Parms.bPrintToLog = bPrintToLog; + Parms.TextColor = std::move(TextColor); + Parms.duration = duration; + Parms.Key = Key; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.PrintWarning +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::PrintWarning(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "PrintWarning"); + + Params::KismetSystemLibrary_PrintWarning Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.QuitGame +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* SpecificPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EQuitPreference QuitPreference (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIgnorePlatformRestrictions (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::QuitGame(const class UObject* WorldContextObject, class APlayerController* SpecificPlayer, EQuitPreference QuitPreference, bool bIgnorePlatformRestrictions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "QuitGame"); + + Params::KismetSystemLibrary_QuitGame Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SpecificPlayer = SpecificPlayer; + Parms.QuitPreference = QuitPreference; + Parms.bIgnorePlatformRestrictions = bIgnorePlatformRestrictions; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.RegisterForRemoteNotifications +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::RegisterForRemoteNotifications() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "RegisterForRemoteNotifications"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ResetGamepadAssignments +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::ResetGamepadAssignments() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ResetGamepadAssignments"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ResetGamepadAssignmentToController +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ResetGamepadAssignmentToController(int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ResetGamepadAssignmentToController"); + + Params::KismetSystemLibrary_ResetGamepadAssignmentToController Parms{}; + + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.RetriggerableDelay +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::RetriggerableDelay(const class UObject* WorldContextObject, float duration, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "RetriggerableDelay"); + + Params::KismetSystemLibrary_RetriggerableDelay Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.duration = duration; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetBoolPropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetBoolPropertyByName(class UObject* Object, class FName PropertyName, bool Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetBoolPropertyByName"); + + Params::KismetSystemLibrary_SetBoolPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetBytePropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetBytePropertyByName(class UObject* Object, class FName PropertyName, uint8 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetBytePropertyByName"); + + Params::KismetSystemLibrary_SetBytePropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetClassPropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Value (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetClassPropertyByName(class UObject* Object, class FName PropertyName, TSubclassOf Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetClassPropertyByName"); + + Params::KismetSystemLibrary_SetClassPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetCollisionProfileNameProperty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCollisionProfileName& Value (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetCollisionProfileNameProperty(class UObject* Object, class FName PropertyName, const struct FCollisionProfileName& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetCollisionProfileNameProperty"); + + Params::KismetSystemLibrary_SetCollisionProfileNameProperty Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetColorPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FColor& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetColorPropertyByName(class UObject* Object, class FName PropertyName, const struct FColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetColorPropertyByName"); + + Params::KismetSystemLibrary_SetColorPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetDoublePropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetDoublePropertyByName(class UObject* Object, class FName PropertyName, double Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetDoublePropertyByName"); + + Params::KismetSystemLibrary_SetDoublePropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetFieldPathPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TFieldPath& Value (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetFieldPathPropertyByName(class UObject* Object, class FName PropertyName, const TFieldPath& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetFieldPathPropertyByName"); + + Params::KismetSystemLibrary_SetFieldPathPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetGamepadsBlockDeviceFeedback +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bBlock (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetGamepadsBlockDeviceFeedback(bool bBlock) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetGamepadsBlockDeviceFeedback"); + + Params::KismetSystemLibrary_SetGamepadsBlockDeviceFeedback Parms{}; + + Parms.bBlock = bBlock; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetInt64PropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetInt64PropertyByName(class UObject* Object, class FName PropertyName, int64 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetInt64PropertyByName"); + + Params::KismetSystemLibrary_SetInt64PropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetInterfacePropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TScriptInterface&Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetInterfacePropertyByName(class UObject* Object, class FName PropertyName, const TScriptInterface& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetInterfacePropertyByName"); + + Params::KismetSystemLibrary_SetInterfacePropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetIntPropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetIntPropertyByName(class UObject* Object, class FName PropertyName, int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetIntPropertyByName"); + + Params::KismetSystemLibrary_SetIntPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetLinearColorPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetLinearColorPropertyByName(class UObject* Object, class FName PropertyName, const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetLinearColorPropertyByName"); + + Params::KismetSystemLibrary_SetLinearColorPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetNamePropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetNamePropertyByName(class UObject* Object, class FName PropertyName, const class FName& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetNamePropertyByName"); + + Params::KismetSystemLibrary_SetNamePropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetObjectPropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetObjectPropertyByName(class UObject* Object, class FName PropertyName, class UObject* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetObjectPropertyByName"); + + Params::KismetSystemLibrary_SetObjectPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetRotatorPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetRotatorPropertyByName(class UObject* Object, class FName PropertyName, const struct FRotator& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetRotatorPropertyByName"); + + Params::KismetSystemLibrary_SetRotatorPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetSoftClassPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftClassPtr& Value (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetSoftClassPropertyByName(class UObject* Object, class FName PropertyName, const TSoftClassPtr& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetSoftClassPropertyByName"); + + Params::KismetSystemLibrary_SetSoftClassPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetSoftObjectPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr& Value (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetSoftObjectPropertyByName(class UObject* Object, class FName PropertyName, const TSoftObjectPtr& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetSoftObjectPropertyByName"); + + Params::KismetSystemLibrary_SetSoftObjectPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetStringPropertyByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Value (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetStringPropertyByName(class UObject* Object, class FName PropertyName, const class FString& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetStringPropertyByName"); + + Params::KismetSystemLibrary_SetStringPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetStructurePropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FGenericStruct& Value (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetStructurePropertyByName(class UObject* Object, class FName PropertyName, const struct FGenericStruct& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetStructurePropertyByName"); + + Params::KismetSystemLibrary_SetStructurePropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetSuppressViewportTransitionMessage +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetSuppressViewportTransitionMessage(const class UObject* WorldContextObject, bool bState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetSuppressViewportTransitionMessage"); + + Params::KismetSystemLibrary_SetSuppressViewportTransitionMessage Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.bState = bState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetTextPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FText& Value (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetTextPropertyByName(class UObject* Object, class FName PropertyName, const class FText& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetTextPropertyByName"); + + Params::KismetSystemLibrary_SetTextPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetTransformPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& Value (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetTransformPropertyByName(class UObject* Object, class FName PropertyName, const struct FTransform& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetTransformPropertyByName"); + + Params::KismetSystemLibrary_SetTransformPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetUserActivity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FUserActivity& UserActivity (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetUserActivity(const struct FUserActivity& UserActivity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetUserActivity"); + + Params::KismetSystemLibrary_SetUserActivity Parms{}; + + Parms.UserActivity = std::move(UserActivity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetVector3fPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector3f& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetVector3fPropertyByName(class UObject* Object, class FName PropertyName, const struct FVector3f& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetVector3fPropertyByName"); + + Params::KismetSystemLibrary_SetVector3fPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetVectorPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetVectorPropertyByName(class UObject* Object, class FName PropertyName, const struct FVector& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetVectorPropertyByName"); + + Params::KismetSystemLibrary_SetVectorPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetVolumeButtonsHandledBySystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetVolumeButtonsHandledBySystem(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetVolumeButtonsHandledBySystem"); + + Params::KismetSystemLibrary_SetVolumeButtonsHandledBySystem Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SetWindowTitle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FText& Title (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SetWindowTitle(const class FText& Title) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SetWindowTitle"); + + Params::KismetSystemLibrary_SetWindowTitle Parms{}; + + Parms.Title = std::move(Title); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ShowAdBanner +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// int32 AdIdIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShowOnBottomOfScreen (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ShowAdBanner(int32 AdIdIndex, bool bShowOnBottomOfScreen) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ShowAdBanner"); + + Params::KismetSystemLibrary_ShowAdBanner Parms{}; + + Parms.AdIdIndex = AdIdIndex; + Parms.bShowOnBottomOfScreen = bShowOnBottomOfScreen; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ShowInterstitialAd +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::ShowInterstitialAd() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ShowInterstitialAd"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ShowPlatformSpecificAchievementsScreen +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class APlayerController* SpecificPlayer (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ShowPlatformSpecificAchievementsScreen(const class APlayerController* SpecificPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ShowPlatformSpecificAchievementsScreen"); + + Params::KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen Parms{}; + + Parms.SpecificPlayer = SpecificPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.ShowPlatformSpecificLeaderboardScreen +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& CategoryName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::ShowPlatformSpecificLeaderboardScreen(const class FString& CategoryName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "ShowPlatformSpecificLeaderboardScreen"); + + Params::KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen Parms{}; + + Parms.CategoryName = std::move(CategoryName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SnapshotObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::SnapshotObject(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SnapshotObject"); + + Params::KismetSystemLibrary_SnapshotObject Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.SphereOverlapActors +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SpherePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ActorClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereOverlapActors(const class UObject* WorldContextObject, const struct FVector& SpherePos, float SphereRadius, const TArray& ObjectTypes, class UClass* ActorClassFilter, const TArray& ActorsToIgnore, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereOverlapActors"); + + Params::KismetSystemLibrary_SphereOverlapActors Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SpherePos = std::move(SpherePos); + Parms.SphereRadius = SphereRadius; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ActorClassFilter = ActorClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereOverlapComponents +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SpherePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UClass* ComponentClassFilter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutComponents (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereOverlapComponents(const class UObject* WorldContextObject, const struct FVector& SpherePos, float SphereRadius, const TArray& ObjectTypes, class UClass* ComponentClassFilter, const TArray& ActorsToIgnore, TArray* OutComponents) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereOverlapComponents"); + + Params::KismetSystemLibrary_SphereOverlapComponents Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SpherePos = std::move(SpherePos); + Parms.SphereRadius = SphereRadius; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.ComponentClassFilter = ComponentClassFilter; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutComponents != nullptr) + *OutComponents = std::move(Parms.OutComponents); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceMulti +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceMulti(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceMulti"); + + Params::KismetSystemLibrary_SphereTraceMulti Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceMultiByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceMultiByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceMultiByProfile"); + + Params::KismetSystemLibrary_SphereTraceMultiByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceMultiForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutHits (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceMultiForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, TArray* OutHits, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceMultiForObjects"); + + Params::KismetSystemLibrary_SphereTraceMultiForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHits != nullptr) + *OutHits = std::move(Parms.OutHits); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceSingle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceSingle(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, ETraceTypeQuery TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceSingle"); + + Params::KismetSystemLibrary_SphereTraceSingle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceSingleByProfile +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceSingleByProfile(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, class FName ProfileName, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceSingleByProfile"); + + Params::KismetSystemLibrary_SphereTraceSingleByProfile Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.ProfileName = ProfileName; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.SphereTraceSingleForObjects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool bIgnoreSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& TraceHitColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetSystemLibrary::SphereTraceSingleForObjects(const class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, struct FHitResult* OutHit, bool bIgnoreSelf, const struct FLinearColor& TraceColor, const struct FLinearColor& TraceHitColor, float DrawTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "SphereTraceSingleForObjects"); + + Params::KismetSystemLibrary_SphereTraceSingleForObjects Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.bIgnoreSelf = bIgnoreSelf; + Parms.TraceColor = std::move(TraceColor); + Parms.TraceHitColor = std::move(TraceHitColor); + Parms.DrawTime = DrawTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetSystemLibrary.StackTrace +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::StackTrace() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "StackTrace"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.TransactObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::TransactObject(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "TransactObject"); + + Params::KismetSystemLibrary_TransactObject Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.UnloadPrimaryAsset +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FPrimaryAssetId& PrimaryAssetId (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::UnloadPrimaryAsset(const struct FPrimaryAssetId& PrimaryAssetId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "UnloadPrimaryAsset"); + + Params::KismetSystemLibrary_UnloadPrimaryAsset Parms{}; + + Parms.PrimaryAssetId = std::move(PrimaryAssetId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.UnloadPrimaryAssetList +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& PrimaryAssetIdList (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetSystemLibrary::UnloadPrimaryAssetList(const TArray& PrimaryAssetIdList) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "UnloadPrimaryAssetList"); + + Params::KismetSystemLibrary_UnloadPrimaryAssetList Parms{}; + + Parms.PrimaryAssetIdList = std::move(PrimaryAssetIdList); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetSystemLibrary.UnregisterForRemoteNotifications +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetSystemLibrary::UnregisterForRemoteNotifications() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetSystemLibrary", "UnregisterForRemoteNotifications"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialExpressionDataDrivenShaderPlatformInfoSwitch.GetNameOptions +// (Final, Native, Public, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UMaterialExpressionDataDrivenShaderPlatformInfoSwitch::GetNameOptions() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialExpressionDataDrivenShaderPlatformInfoSwitch", "GetNameOptions"); + + Params::MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_Add +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Key (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintMapLibrary::Map_Add(const TMap& TargetMap, const int32& Key, const int32& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Add"); + + Params::BlueprintMapLibrary_Map_Add Parms{}; + + Parms.TargetMap = std::move(TargetMap); + Parms.Key = Key; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintMapLibrary.Map_Clear +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintMapLibrary::Map_Clear(const TMap& TargetMap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Clear"); + + Params::BlueprintMapLibrary_Map_Clear Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintMapLibrary.Map_Contains +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Key (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintMapLibrary::Map_Contains(const TMap& TargetMap, const int32& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Contains"); + + Params::BlueprintMapLibrary_Map_Contains Parms{}; + + Parms.TargetMap = std::move(TargetMap); + Parms.Key = Key; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_Find +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Key (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Value (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintMapLibrary::Map_Find(const TMap& TargetMap, const int32& Key, int32* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Find"); + + Params::BlueprintMapLibrary_Map_Find Parms{}; + + Parms.TargetMap = std::move(TargetMap); + Parms.Key = Key; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Value != nullptr) + *Value = Parms.Value; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_IsEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintMapLibrary::Map_IsEmpty(const TMap& TargetMap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_IsEmpty"); + + Params::BlueprintMapLibrary_Map_IsEmpty Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_IsNotEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintMapLibrary::Map_IsNotEmpty(const TMap& TargetMap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_IsNotEmpty"); + + Params::BlueprintMapLibrary_Map_IsNotEmpty Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_Keys +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* Keys (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UBlueprintMapLibrary::Map_Keys(const TMap& TargetMap, TArray* Keys) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Keys"); + + Params::BlueprintMapLibrary_Map_Keys Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Keys != nullptr) + *Keys = std::move(Parms.Keys); +} + + +// Function Engine.BlueprintMapLibrary.Map_Length +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintMapLibrary::Map_Length(const TMap& TargetMap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Length"); + + Params::BlueprintMapLibrary_Map_Length Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_Remove +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Key (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintMapLibrary::Map_Remove(const TMap& TargetMap, const int32& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Remove"); + + Params::BlueprintMapLibrary_Map_Remove Parms{}; + + Parms.TargetMap = std::move(TargetMap); + Parms.Key = Key; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintMapLibrary.Map_Values +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& TargetMap (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* Values (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UBlueprintMapLibrary::Map_Values(const TMap& TargetMap, TArray* Values) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "Map_Values"); + + Params::BlueprintMapLibrary_Map_Values Parms{}; + + Parms.TargetMap = std::move(TargetMap); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Values != nullptr) + *Values = std::move(Parms.Values); +} + + +// Function Engine.BlueprintMapLibrary.SetMapPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TMap& Value (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintMapLibrary::SetMapPropertyByName(class UObject* Object, class FName PropertyName, const TMap& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintMapLibrary", "SetMapPropertyByName"); + + Params::BlueprintMapLibrary_SetMapPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.GetInterfaceClass +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FCameraLensInterfaceClassSupport&CameraLens (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf UCameraLensEffectInterfaceClassSupportLibrary::GetInterfaceClass(const struct FCameraLensInterfaceClassSupport& CameraLens) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CameraLensEffectInterfaceClassSupportLibrary", "GetInterfaceClass"); + + Params::CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass Parms{}; + + Parms.CameraLens = std::move(CameraLens); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.IsInterfaceClassValid +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FCameraLensInterfaceClassSupport&CameraLens (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EInterfaceValidResult* Result (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraLensEffectInterfaceClassSupportLibrary::IsInterfaceClassValid(const struct FCameraLensInterfaceClassSupport& CameraLens, EInterfaceValidResult* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CameraLensEffectInterfaceClassSupportLibrary", "IsInterfaceClassValid"); + + Params::CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid Parms{}; + + Parms.CameraLens = std::move(CameraLens); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = Parms.Result; +} + + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.IsInterfaceValid +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TScriptInterface&CameraLens (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EInterfaceValidResult* Result (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraLensEffectInterfaceClassSupportLibrary::IsInterfaceValid(const TScriptInterface& CameraLens, EInterfaceValidResult* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CameraLensEffectInterfaceClassSupportLibrary", "IsInterfaceValid"); + + Params::CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid Parms{}; + + Parms.CameraLens = CameraLens; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = Parms.Result; +} + + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.SetInterfaceClass +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FCameraLensInterfaceClassSupport&Var (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EInterfaceValidResult* Result (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraLensEffectInterfaceClassSupportLibrary::SetInterfaceClass(TSubclassOf Class_0, struct FCameraLensInterfaceClassSupport& Var, EInterfaceValidResult* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CameraLensEffectInterfaceClassSupportLibrary", "SetInterfaceClass"); + + Params::CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass Parms{}; + + Parms.Class_0 = Class_0; + Parms.Var = std::move(Var); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Var = std::move(Parms.Var); + + if (Result != nullptr) + *Result = Parms.Result; +} + + +// Function Engine.WorldPartitionStreamingSourceComponent.DisableStreamingSource +// (Final, Native, Public, BlueprintCallable) + +void UWorldPartitionStreamingSourceComponent::DisableStreamingSource() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionStreamingSourceComponent", "DisableStreamingSource"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionStreamingSourceComponent.EnableStreamingSource +// (Final, Native, Public, BlueprintCallable) + +void UWorldPartitionStreamingSourceComponent::EnableStreamingSource() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionStreamingSourceComponent", "EnableStreamingSource"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionStreamingSourceComponent.IsStreamingCompleted +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionStreamingSourceComponent::IsStreamingCompleted() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionStreamingSourceComponent", "IsStreamingCompleted"); + + Params::WorldPartitionStreamingSourceComponent_IsStreamingCompleted Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionStreamingSourceComponent.IsStreamingSourceEnabled +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionStreamingSourceComponent::IsStreamingSourceEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionStreamingSourceComponent", "IsStreamingSourceEnabled"); + + Params::WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveVector.GetVectorValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCurveVector::GetVectorValue(float InTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveVector", "GetVectorValue"); + + Params::CurveVector_GetVectorValue Parms{}; + + Parms.InTime = InTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.VOIPStatics.SetMicThreshold +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// float InThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVOIPStatics::SetMicThreshold(float InThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VOIPStatics", "SetMicThreshold"); + + Params::VOIPStatics_SetMicThreshold Parms{}; + + Parms.InThreshold = InThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PawnNoiseEmitterComponent.MakeNoise +// (RequiredAPI, BlueprintAuthorityOnly, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class AActor* NoiseMaker (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Loudness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NoiseLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPawnNoiseEmitterComponent::MakeNoise(class AActor* NoiseMaker, float Loudness, const struct FVector& NoiseLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PawnNoiseEmitterComponent", "MakeNoise"); + + Params::PawnNoiseEmitterComponent_MakeNoise Parms{}; + + Parms.NoiseMaker = NoiseMaker; + Parms.Loudness = Loudness; + Parms.NoiseLocation = std::move(NoiseLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PostProcessComponent.AddOrUpdateBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPostProcessComponent::AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PostProcessComponent", "AddOrUpdateBlendable"); + + Params::PostProcessComponent_AddOrUpdateBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + Parms.InWeight = InWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RuntimeVirtualTextureComponent.Invalidate +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FBoxSphereBounds& WorldBounds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void URuntimeVirtualTextureComponent::Invalidate(const struct FBoxSphereBounds& WorldBounds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTextureComponent", "Invalidate"); + + Params::RuntimeVirtualTextureComponent_Invalidate Parms{}; + + Parms.WorldBounds = std::move(WorldBounds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetBoundaryMax +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InBoundaryMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetBoundaryMax(float InBoundaryMax, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetBoundaryMax"); + + Params::SplineMeshComponent_SetBoundaryMax Parms{}; + + Parms.InBoundaryMax = InBoundaryMax; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetBoundaryMin +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InBoundaryMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetBoundaryMin(float InBoundaryMin, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetBoundaryMin"); + + Params::SplineMeshComponent_SetBoundaryMin Parms{}; + + Parms.InBoundaryMin = InBoundaryMin; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndOffset +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& EndOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndOffset(const struct FVector2D& EndOffset, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndOffset"); + + Params::SplineMeshComponent_SetEndOffset Parms{}; + + Parms.EndOffset = std::move(EndOffset); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndPosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& EndPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndPosition(const struct FVector& EndPos, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndPosition"); + + Params::SplineMeshComponent_SetEndPosition Parms{}; + + Parms.EndPos = std::move(EndPos); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndRoll +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float EndRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndRoll(float EndRoll, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndRoll"); + + Params::SplineMeshComponent_SetEndRoll Parms{}; + + Parms.EndRoll = EndRoll; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndRollDegrees +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float EndRollDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndRollDegrees(float EndRollDegrees, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndRollDegrees"); + + Params::SplineMeshComponent_SetEndRollDegrees Parms{}; + + Parms.EndRollDegrees = EndRollDegrees; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& EndScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndScale(const struct FVector2D& EndScale, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndScale"); + + Params::SplineMeshComponent_SetEndScale Parms{}; + + Parms.EndScale = std::move(EndScale); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetEndTangent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& EndTangent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetEndTangent(const struct FVector& EndTangent, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetEndTangent"); + + Params::SplineMeshComponent_SetEndTangent Parms{}; + + Parms.EndTangent = std::move(EndTangent); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetForwardAxis +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ESplineMeshAxis InForwardAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetForwardAxis(ESplineMeshAxis InForwardAxis, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetForwardAxis"); + + Params::SplineMeshComponent_SetForwardAxis Parms{}; + + Parms.InForwardAxis = InForwardAxis; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetSplineUpDir +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InSplineUpDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetSplineUpDir(const struct FVector& InSplineUpDir, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetSplineUpDir"); + + Params::SplineMeshComponent_SetSplineUpDir Parms{}; + + Parms.InSplineUpDir = std::move(InSplineUpDir); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartAndEnd +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& StartPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& StartTangent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& EndPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& EndTangent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartAndEnd(const struct FVector& StartPos, const struct FVector& StartTangent, const struct FVector& EndPos, const struct FVector& EndTangent, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartAndEnd"); + + Params::SplineMeshComponent_SetStartAndEnd Parms{}; + + Parms.StartPos = std::move(StartPos); + Parms.StartTangent = std::move(StartTangent); + Parms.EndPos = std::move(EndPos); + Parms.EndTangent = std::move(EndTangent); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartOffset +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& StartOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartOffset(const struct FVector2D& StartOffset, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartOffset"); + + Params::SplineMeshComponent_SetStartOffset Parms{}; + + Parms.StartOffset = std::move(StartOffset); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartPosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& StartPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartPosition(const struct FVector& StartPos, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartPosition"); + + Params::SplineMeshComponent_SetStartPosition Parms{}; + + Parms.StartPos = std::move(StartPos); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartRoll +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartRoll(float StartRoll, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartRoll"); + + Params::SplineMeshComponent_SetStartRoll Parms{}; + + Parms.StartRoll = StartRoll; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartRollDegrees +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartRollDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartRollDegrees(float StartRollDegrees, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartRollDegrees"); + + Params::SplineMeshComponent_SetStartRollDegrees Parms{}; + + Parms.StartRollDegrees = StartRollDegrees; + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& StartScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartScale(const struct FVector2D& StartScale, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartScale"); + + Params::SplineMeshComponent_SetStartScale Parms{}; + + Parms.StartScale = std::move(StartScale); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.SetStartTangent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& StartTangent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateMesh (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineMeshComponent::SetStartTangent(const struct FVector& StartTangent, bool bUpdateMesh) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "SetStartTangent"); + + Params::SplineMeshComponent_SetStartTangent Parms{}; + + Parms.StartTangent = std::move(StartTangent); + Parms.bUpdateMesh = bUpdateMesh; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.UpdateMesh +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USplineMeshComponent::UpdateMesh() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "UpdateMesh"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineMeshComponent.GetBoundaryMax +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineMeshComponent::GetBoundaryMax() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetBoundaryMax"); + + Params::SplineMeshComponent_GetBoundaryMax Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetBoundaryMin +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineMeshComponent::GetBoundaryMin() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetBoundaryMin"); + + Params::SplineMeshComponent_GetBoundaryMin Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetEndOffset +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D USplineMeshComponent::GetEndOffset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetEndOffset"); + + Params::SplineMeshComponent_GetEndOffset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetEndPosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineMeshComponent::GetEndPosition() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetEndPosition"); + + Params::SplineMeshComponent_GetEndPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetEndRoll +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineMeshComponent::GetEndRoll() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetEndRoll"); + + Params::SplineMeshComponent_GetEndRoll Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetEndScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D USplineMeshComponent::GetEndScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetEndScale"); + + Params::SplineMeshComponent_GetEndScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetEndTangent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineMeshComponent::GetEndTangent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetEndTangent"); + + Params::SplineMeshComponent_GetEndTangent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetForwardAxis +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ESplineMeshAxis ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ESplineMeshAxis USplineMeshComponent::GetForwardAxis() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetForwardAxis"); + + Params::SplineMeshComponent_GetForwardAxis Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetSplineUpDir +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineMeshComponent::GetSplineUpDir() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetSplineUpDir"); + + Params::SplineMeshComponent_GetSplineUpDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetStartOffset +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D USplineMeshComponent::GetStartOffset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetStartOffset"); + + Params::SplineMeshComponent_GetStartOffset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetStartPosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineMeshComponent::GetStartPosition() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetStartPosition"); + + Params::SplineMeshComponent_GetStartPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetStartRoll +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineMeshComponent::GetStartRoll() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetStartRoll"); + + Params::SplineMeshComponent_GetStartRoll Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetStartScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D USplineMeshComponent::GetStartScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetStartScale"); + + Params::SplineMeshComponent_GetStartScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineMeshComponent.GetStartTangent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineMeshComponent::GetStartTangent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineMeshComponent", "GetStartTangent"); + + Params::SplineMeshComponent_GetStartTangent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerShapeCylinder.SetHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerShapeCylinder::SetHeight(int32 InHeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerShapeCylinder", "SetHeight"); + + Params::StereoLayerShapeCylinder_SetHeight Parms{}; + + Parms.InHeight = InHeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerShapeCylinder.SetOverlayArc +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InOverlayArc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerShapeCylinder::SetOverlayArc(float InOverlayArc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerShapeCylinder", "SetOverlayArc"); + + Params::StereoLayerShapeCylinder_SetOverlayArc Parms{}; + + Parms.InOverlayArc = InOverlayArc; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerShapeCylinder.SetRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerShapeCylinder::SetRadius(float InRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerShapeCylinder", "SetRadius"); + + Params::StereoLayerShapeCylinder_SetRadius Parms{}; + + Parms.InRadius = InRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.AddCameraLensEffect +// (RequiredAPI, Native, Public) +// Parameters: +// TSubclassOfLensEffectEmitterClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AEmitterCameraLensEffectBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AEmitterCameraLensEffectBase* APlayerCameraManager::AddCameraLensEffect(TSubclassOf LensEffectEmitterClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "AddCameraLensEffect"); + + Params::PlayerCameraManager_AddCameraLensEffect Parms{}; + + Parms.LensEffectEmitterClass = LensEffectEmitterClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.AddGenericCameraLensEffect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf LensEffectEmitterClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TScriptInterfaceReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TScriptInterface APlayerCameraManager::AddGenericCameraLensEffect(TSubclassOf LensEffectEmitterClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "AddGenericCameraLensEffect"); + + Params::PlayerCameraManager_AddGenericCameraLensEffect Parms{}; + + Parms.LensEffectEmitterClass = LensEffectEmitterClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.AddNewCameraModifier +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf ModifierClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCameraModifier* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCameraModifier* APlayerCameraManager::AddNewCameraModifier(TSubclassOf ModifierClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "AddNewCameraModifier"); + + Params::PlayerCameraManager_AddNewCameraModifier Parms{}; + + Parms.ModifierClass = ModifierClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.BlueprintUpdateCamera +// (RequiredAPI, BlueprintCosmetic, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// class AActor* CameraTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* NewCameraLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* NewCameraRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float* NewCameraFOV (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerCameraManager::BlueprintUpdateCamera(class AActor* CameraTarget, struct FVector* NewCameraLocation, struct FRotator* NewCameraRotation, float* NewCameraFOV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "BlueprintUpdateCamera"); + + Params::PlayerCameraManager_BlueprintUpdateCamera Parms{}; + + Parms.CameraTarget = CameraTarget; + + UObject::ProcessEvent(Func, &Parms); + + if (NewCameraLocation != nullptr) + *NewCameraLocation = std::move(Parms.NewCameraLocation); + + if (NewCameraRotation != nullptr) + *NewCameraRotation = std::move(Parms.NewCameraRotation); + + if (NewCameraFOV != nullptr) + *NewCameraFOV = Parms.NewCameraFOV; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.ClearCameraLensEffects +// (RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerCameraManager::ClearCameraLensEffects() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "ClearCameraLensEffects"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.FindCameraModifierByClass +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf ModifierClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCameraModifier* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCameraModifier* APlayerCameraManager::FindCameraModifierByClass(TSubclassOf ModifierClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "FindCameraModifierByClass"); + + Params::PlayerCameraManager_FindCameraModifierByClass Parms{}; + + Parms.ModifierClass = ModifierClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.OnPhotographyMultiPartCaptureEnd +// (RequiredAPI, BlueprintCosmetic, Native, Event, Public, BlueprintEvent) + +void APlayerCameraManager::OnPhotographyMultiPartCaptureEnd() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "OnPhotographyMultiPartCaptureEnd"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.OnPhotographyMultiPartCaptureStart +// (RequiredAPI, BlueprintCosmetic, Native, Event, Public, BlueprintEvent) + +void APlayerCameraManager::OnPhotographyMultiPartCaptureStart() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "OnPhotographyMultiPartCaptureStart"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.OnPhotographySessionEnd +// (RequiredAPI, BlueprintCosmetic, Native, Event, Public, BlueprintEvent) + +void APlayerCameraManager::OnPhotographySessionEnd() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "OnPhotographySessionEnd"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.OnPhotographySessionStart +// (RequiredAPI, BlueprintCosmetic, Native, Event, Public, BlueprintEvent) + +void APlayerCameraManager::OnPhotographySessionStart() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "OnPhotographySessionStart"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.PhotographyCameraModify +// (RequiredAPI, BlueprintCosmetic, Native, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// const struct FVector& NewCameraLocation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousCameraLocation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& OriginalCameraLocation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* ResultCameraLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::PhotographyCameraModify(const struct FVector& NewCameraLocation, const struct FVector& PreviousCameraLocation, const struct FVector& OriginalCameraLocation, struct FVector* ResultCameraLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "PhotographyCameraModify"); + + Params::PlayerCameraManager_PhotographyCameraModify Parms{}; + + Parms.NewCameraLocation = std::move(NewCameraLocation); + Parms.PreviousCameraLocation = std::move(PreviousCameraLocation); + Parms.OriginalCameraLocation = std::move(OriginalCameraLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ResultCameraLocation != nullptr) + *ResultCameraLocation = std::move(Parms.ResultCameraLocation); +} + + +// Function Engine.PlayerCameraManager.RemoveCameraLensEffect +// (RequiredAPI, Native, Public) +// Parameters: +// class AEmitterCameraLensEffectBase* Emitter (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::RemoveCameraLensEffect(class AEmitterCameraLensEffectBase* Emitter) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "RemoveCameraLensEffect"); + + Params::PlayerCameraManager_RemoveCameraLensEffect Parms{}; + + Parms.Emitter = Emitter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.RemoveCameraModifier +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCameraModifier* ModifierToRemove (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerCameraManager::RemoveCameraModifier(class UCameraModifier* ModifierToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "RemoveCameraModifier"); + + Params::PlayerCameraManager_RemoveCameraModifier Parms{}; + + Parms.ModifierToRemove = ModifierToRemove; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.RemoveGenericCameraLensEffect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceEmitter (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::RemoveGenericCameraLensEffect(TScriptInterface Emitter) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "RemoveGenericCameraLensEffect"); + + Params::PlayerCameraManager_RemoveGenericCameraLensEffect Parms{}; + + Parms.Emitter = Emitter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.SetGameCameraCutThisFrame +// (Native, Public, BlueprintCallable) + +void APlayerCameraManager::SetGameCameraCutThisFrame() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "SetGameCameraCutThisFrame"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.SetManualCameraFade +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// float InFadeAmount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInFadeAudio (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::SetManualCameraFade(float InFadeAmount, const struct FLinearColor& Color, bool bInFadeAudio) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "SetManualCameraFade"); + + Params::PlayerCameraManager_SetManualCameraFade Parms{}; + + Parms.InFadeAmount = InFadeAmount; + Parms.Color = std::move(Color); + Parms.bInFadeAudio = bInFadeAudio; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StartCameraFade +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// float FromAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ToAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldFadeAudio (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHoldWhenFinished (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StartCameraFade(float FromAlpha, float ToAlpha, float duration, const struct FLinearColor& Color, bool bShouldFadeAudio, bool bHoldWhenFinished) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StartCameraFade"); + + Params::PlayerCameraManager_StartCameraFade Parms{}; + + Parms.FromAlpha = FromAlpha; + Parms.ToAlpha = ToAlpha; + Parms.duration = duration; + Parms.Color = std::move(Color); + Parms.bShouldFadeAudio = bShouldFadeAudio; + Parms.bHoldWhenFinished = bHoldWhenFinished; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StartCameraShake +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// TSubclassOf ShakeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECameraShakePlaySpace PlaySpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& UserPlaySpaceRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class UCameraShakeBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCameraShakeBase* APlayerCameraManager::StartCameraShake(TSubclassOf ShakeClass, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StartCameraShake"); + + Params::PlayerCameraManager_StartCameraShake Parms{}; + + Parms.ShakeClass = ShakeClass; + Parms.Scale = Scale; + Parms.PlaySpace = PlaySpace; + Parms.UserPlaySpaceRot = std::move(UserPlaySpaceRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.StartCameraShakeFromSource +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// TSubclassOf ShakeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCameraShakeSourceComponent* SourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECameraShakePlaySpace PlaySpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& UserPlaySpaceRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class UCameraShakeBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCameraShakeBase* APlayerCameraManager::StartCameraShakeFromSource(TSubclassOf ShakeClass, class UCameraShakeSourceComponent* SourceComponent, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StartCameraShakeFromSource"); + + Params::PlayerCameraManager_StartCameraShakeFromSource Parms{}; + + Parms.ShakeClass = ShakeClass; + Parms.SourceComponent = SourceComponent; + Parms.Scale = Scale; + Parms.PlaySpace = PlaySpace; + Parms.UserPlaySpaceRot = std::move(UserPlaySpaceRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.StopAllCameraShakes +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StopAllCameraShakes(bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopAllCameraShakes"); + + Params::PlayerCameraManager_StopAllCameraShakes Parms{}; + + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StopAllCameraShakesFromSource +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCameraShakeSourceComponent* SourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StopAllCameraShakesFromSource(class UCameraShakeSourceComponent* SourceComponent, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopAllCameraShakesFromSource"); + + Params::PlayerCameraManager_StopAllCameraShakesFromSource Parms{}; + + Parms.SourceComponent = SourceComponent; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StopAllInstancesOfCameraShake +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StopAllInstancesOfCameraShake(TSubclassOf Shake, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopAllInstancesOfCameraShake"); + + Params::PlayerCameraManager_StopAllInstancesOfCameraShake Parms{}; + + Parms.Shake = Shake; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StopAllInstancesOfCameraShakeFromSource +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCameraShakeSourceComponent* SourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StopAllInstancesOfCameraShakeFromSource(TSubclassOf Shake, class UCameraShakeSourceComponent* SourceComponent, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopAllInstancesOfCameraShakeFromSource"); + + Params::PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource Parms{}; + + Parms.Shake = Shake; + Parms.SourceComponent = SourceComponent; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StopCameraFade +// (RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerCameraManager::StopCameraFade() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopCameraFade"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.StopCameraShake +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCameraShakeBase* ShakeInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerCameraManager::StopCameraShake(class UCameraShakeBase* ShakeInstance, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "StopCameraShake"); + + Params::PlayerCameraManager_StopCameraShake Parms{}; + + Parms.ShakeInstance = ShakeInstance; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.SwapPendingViewTargetWhenUsingClientSideCameraUpdates +// (Final, RequiredAPI, Native, Protected) + +void APlayerCameraManager::SwapPendingViewTargetWhenUsingClientSideCameraUpdates() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "SwapPendingViewTargetWhenUsingClientSideCameraUpdates"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerCameraManager.GetCameraLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APlayerCameraManager::GetCameraLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "GetCameraLocation"); + + Params::PlayerCameraManager_GetCameraLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.GetCameraRotation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator APlayerCameraManager::GetCameraRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "GetCameraRotation"); + + Params::PlayerCameraManager_GetCameraRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.GetFOVAngle +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerCameraManager::GetFOVAngle() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "GetFOVAngle"); + + Params::PlayerCameraManager_GetFOVAngle Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerCameraManager.GetOwningPlayerController +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* APlayerCameraManager::GetOwningPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerCameraManager", "GetOwningPlayerController"); + + Params::PlayerCameraManager_GetOwningPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMeshActor.OnRep_ReplicatedMaterial0 +// (RequiredAPI, Native, Public) + +void ASkeletalMeshActor::OnRep_ReplicatedMaterial0() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshActor", "OnRep_ReplicatedMaterial0"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshActor.OnRep_ReplicatedMaterial1 +// (RequiredAPI, Native, Public) + +void ASkeletalMeshActor::OnRep_ReplicatedMaterial1() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshActor", "OnRep_ReplicatedMaterial1"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshActor.OnRep_ReplicatedMesh +// (RequiredAPI, Native, Public) + +void ASkeletalMeshActor::OnRep_ReplicatedMesh() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshActor", "OnRep_ReplicatedMesh"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshActor.OnRep_ReplicatedPhysAsset +// (RequiredAPI, Native, Public) + +void ASkeletalMeshActor::OnRep_ReplicatedPhysAsset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshActor", "OnRep_ReplicatedPhysAsset"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AsyncActionLoadPrimaryAsset.AsyncLoadPrimaryAsset +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetId& PrimaryAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& LoadBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionLoadPrimaryAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionLoadPrimaryAsset* UAsyncActionLoadPrimaryAsset::AsyncLoadPrimaryAsset(class UObject* WorldContextObject, const struct FPrimaryAssetId& PrimaryAsset, const TArray& LoadBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionLoadPrimaryAsset", "AsyncLoadPrimaryAsset"); + + Params::AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PrimaryAsset = std::move(PrimaryAsset); + Parms.LoadBundles = std::move(LoadBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionChangePrimaryAssetBundles.AsyncChangeBundleStateForMatchingPrimaryAssets +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& NewBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& OldBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionChangePrimaryAssetBundles*ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionChangePrimaryAssetBundles* UAsyncActionChangePrimaryAssetBundles::AsyncChangeBundleStateForMatchingPrimaryAssets(class UObject* WorldContextObject, const TArray& NewBundles, const TArray& OldBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionChangePrimaryAssetBundles", "AsyncChangeBundleStateForMatchingPrimaryAssets"); + + Params::AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.NewBundles = std::move(NewBundles); + Parms.OldBundles = std::move(OldBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionChangePrimaryAssetBundles.AsyncChangeBundleStateForPrimaryAssetList +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& PrimaryAssetList (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& AddBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& RemoveBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionChangePrimaryAssetBundles*ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionChangePrimaryAssetBundles* UAsyncActionChangePrimaryAssetBundles::AsyncChangeBundleStateForPrimaryAssetList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& AddBundles, const TArray& RemoveBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionChangePrimaryAssetBundles", "AsyncChangeBundleStateForPrimaryAssetList"); + + Params::AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PrimaryAssetList = std::move(PrimaryAssetList); + Parms.AddBundles = std::move(AddBundles); + Parms.RemoveBundles = std::move(RemoveBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.AddEvent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegate EventFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::AddEvent(float Time, TDelegate EventFunc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "AddEvent"); + + Params::TimelineComponent_AddEvent Parms{}; + + Parms.Time = Time; + Parms.EventFunc = EventFunc; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.AddInterpFloat +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveFloat* FloatCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegate InterpFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName TrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::AddInterpFloat(class UCurveFloat* FloatCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "AddInterpFloat"); + + Params::TimelineComponent_AddInterpFloat Parms{}; + + Parms.FloatCurve = FloatCurve; + Parms.InterpFunc = InterpFunc; + Parms.PropertyName = PropertyName; + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.AddInterpLinearColor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveLinearColor* LinearColorCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegateInterpFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName TrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::AddInterpLinearColor(class UCurveLinearColor* LinearColorCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "AddInterpLinearColor"); + + Params::TimelineComponent_AddInterpLinearColor Parms{}; + + Parms.LinearColorCurve = LinearColorCurve; + Parms.InterpFunc = InterpFunc; + Parms.PropertyName = PropertyName; + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.AddInterpVector +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveVector* VectorCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegateInterpFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName TrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::AddInterpVector(class UCurveVector* VectorCurve, TDelegate InterpFunc, class FName PropertyName, class FName TrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "AddInterpVector"); + + Params::TimelineComponent_AddInterpVector Parms{}; + + Parms.VectorCurve = VectorCurve; + Parms.InterpFunc = InterpFunc; + Parms.PropertyName = PropertyName; + Parms.TrackName = TrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.OnRep_Timeline +// (Final, Native, Public, HasOutParams) +// Parameters: +// struct FTimeline* OldTimeline (Parm, OutParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UTimelineComponent::OnRep_Timeline(struct FTimeline* OldTimeline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "OnRep_Timeline"); + + Params::TimelineComponent_OnRep_Timeline Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OldTimeline != nullptr) + *OldTimeline = std::move(Parms.OldTimeline); +} + + +// Function Engine.TimelineComponent.Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UTimelineComponent::Play() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "Play"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.PlayFromStart +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UTimelineComponent::PlayFromStart() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "PlayFromStart"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.Reverse +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UTimelineComponent::Reverse() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "Reverse"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.ReverseFromEnd +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UTimelineComponent::ReverseFromEnd() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "ReverseFromEnd"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetFloatCurve +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveFloat* NewFloatCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName FloatTrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetFloatCurve(class UCurveFloat* NewFloatCurve, class FName FloatTrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetFloatCurve"); + + Params::TimelineComponent_SetFloatCurve Parms{}; + + Parms.NewFloatCurve = NewFloatCurve; + Parms.FloatTrackName = FloatTrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetIgnoreTimeDilation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewIgnoreTimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetIgnoreTimeDilation(bool bNewIgnoreTimeDilation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetIgnoreTimeDilation"); + + Params::TimelineComponent_SetIgnoreTimeDilation Parms{}; + + Parms.bNewIgnoreTimeDilation = bNewIgnoreTimeDilation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetLinearColorCurve +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveLinearColor* NewLinearColorCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LinearColorTrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetLinearColorCurve(class UCurveLinearColor* NewLinearColorCurve, class FName LinearColorTrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetLinearColorCurve"); + + Params::TimelineComponent_SetLinearColorCurve Parms{}; + + Parms.NewLinearColorCurve = NewLinearColorCurve; + Parms.LinearColorTrackName = LinearColorTrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetLooping +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetLooping(bool bNewLooping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetLooping"); + + Params::TimelineComponent_SetLooping Parms{}; + + Parms.bNewLooping = bNewLooping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetNewTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetNewTime(float NewTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetNewTime"); + + Params::TimelineComponent_SetNewTime Parms{}; + + Parms.NewTime = NewTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetPlaybackPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFireEvents (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFireUpdate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetPlaybackPosition(float NewPosition, bool bFireEvents, bool bFireUpdate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetPlaybackPosition"); + + Params::TimelineComponent_SetPlaybackPosition Parms{}; + + Parms.NewPosition = NewPosition; + Parms.bFireEvents = bFireEvents; + Parms.bFireUpdate = bFireUpdate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetPlayRate(float NewRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetPlayRate"); + + Params::TimelineComponent_SetPlayRate Parms{}; + + Parms.NewRate = NewRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetTimelineFinishedFunc +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TDelegate NewTimelineFinishedFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetTimelineFinishedFunc(TDelegate NewTimelineFinishedFunc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetTimelineFinishedFunc"); + + Params::TimelineComponent_SetTimelineFinishedFunc Parms{}; + + Parms.NewTimelineFinishedFunc = NewTimelineFinishedFunc; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetTimelineLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetTimelineLength(float NewLength) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetTimelineLength"); + + Params::TimelineComponent_SetTimelineLength Parms{}; + + Parms.NewLength = NewLength; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetTimelineLengthMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETimelineLengthMode NewLengthMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetTimelineLengthMode(ETimelineLengthMode NewLengthMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetTimelineLengthMode"); + + Params::TimelineComponent_SetTimelineLengthMode Parms{}; + + Parms.NewLengthMode = NewLengthMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetTimelinePostUpdateFunc +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TDelegate NewTimelinePostUpdateFunc (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetTimelinePostUpdateFunc(TDelegate NewTimelinePostUpdateFunc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetTimelinePostUpdateFunc"); + + Params::TimelineComponent_SetTimelinePostUpdateFunc Parms{}; + + Parms.NewTimelinePostUpdateFunc = NewTimelinePostUpdateFunc; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.SetVectorCurve +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCurveVector* NewVectorCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName VectorTrackName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UTimelineComponent::SetVectorCurve(class UCurveVector* NewVectorCurve, class FName VectorTrackName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "SetVectorCurve"); + + Params::TimelineComponent_SetVectorCurve Parms{}; + + Parms.NewVectorCurve = NewVectorCurve; + Parms.VectorTrackName = VectorTrackName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.Stop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UTimelineComponent::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TimelineComponent.GetIgnoreTimeDilation +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTimelineComponent::GetIgnoreTimeDilation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "GetIgnoreTimeDilation"); + + Params::TimelineComponent_GetIgnoreTimeDilation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.GetPlaybackPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UTimelineComponent::GetPlaybackPosition() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "GetPlaybackPosition"); + + Params::TimelineComponent_GetPlaybackPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.GetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UTimelineComponent::GetPlayRate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "GetPlayRate"); + + Params::TimelineComponent_GetPlayRate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.GetScaledTimelineLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UTimelineComponent::GetScaledTimelineLength() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "GetScaledTimelineLength"); + + Params::TimelineComponent_GetScaledTimelineLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.GetTimelineLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UTimelineComponent::GetTimelineLength() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "GetTimelineLength"); + + Params::TimelineComponent_GetTimelineLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.IsLooping +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTimelineComponent::IsLooping() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "IsLooping"); + + Params::TimelineComponent_IsLooping Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.IsPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTimelineComponent::IsPlaying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "IsPlaying"); + + Params::TimelineComponent_IsPlaying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TimelineComponent.IsReversing +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTimelineComponent::IsReversing() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TimelineComponent", "IsReversing"); + + Params::TimelineComponent_IsReversing Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveSourceInterface.GetBindingName +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName ICurveSourceInterface::GetBindingName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("CurveSourceInterface", "GetBindingName"); + + Params::CurveSourceInterface_GetBindingName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveSourceInterface.GetCurves +// (RequiredAPI, Native, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// TArray* OutValues (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void ICurveSourceInterface::GetCurves(TArray* OutValues) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("CurveSourceInterface", "GetCurves"); + + Params::CurveSourceInterface_GetCurves Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutValues != nullptr) + *OutValues = std::move(Parms.OutValues); +} + + +// Function Engine.CurveSourceInterface.GetCurveValue +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// class FName CurveName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float ICurveSourceInterface::GetCurveValue(class FName CurveName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("CurveSourceInterface", "GetCurveValue"); + + Params::CurveSourceInterface_GetCurveValue Parms{}; + + Parms.CurveName = CurveName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SceneCaptureComponentCube.CaptureScene +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USceneCaptureComponentCube::CaptureScene() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponentCube", "CaptureScene"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshSocket.InitializeSocketFromLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class USkeletalMeshComponent* SkelComp (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMeshSocket::InitializeSocketFromLocation(const class USkeletalMeshComponent* SkelComp, const struct FVector& WorldLocation, const struct FVector& WorldNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshSocket", "InitializeSocketFromLocation"); + + Params::SkeletalMeshSocket_InitializeSocketFromLocation Parms{}; + + Parms.SkelComp = SkelComp; + Parms.WorldLocation = std::move(WorldLocation); + Parms.WorldNormal = std::move(WorldNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMeshSocket.GetSocketLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class USkeletalMeshComponent* SkelComp (ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USkeletalMeshSocket::GetSocketLocation(const class USkeletalMeshComponent* SkelComp) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMeshSocket", "GetSocketLocation"); + + Params::SkeletalMeshSocket_GetSocketLocation Parms{}; + + Parms.SkelComp = SkelComp; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationNotifyStateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotifyLibrary::GetCurrentAnimationNotifyStateTime(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "GetCurrentAnimationNotifyStateTime"); + + Params::AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationNotifyStateTimeRatio +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotifyLibrary::GetCurrentAnimationNotifyStateTimeRatio(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "GetCurrentAnimationNotifyStateTimeRatio"); + + Params::AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotifyLibrary::GetCurrentAnimationTime(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "GetCurrentAnimationTime"); + + Params::AnimNotifyLibrary_GetCurrentAnimationTime Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationTimeRatio +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimNotifyLibrary::GetCurrentAnimationTimeRatio(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "GetCurrentAnimationTimeRatio"); + + Params::AnimNotifyLibrary_GetCurrentAnimationTimeRatio Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.IsBlendingOut +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyLibrary::IsBlendingOut(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "IsBlendingOut"); + + Params::AnimNotifyLibrary_IsBlendingOut Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyLibrary.NotifyStateReachedEnd +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyLibrary::NotifyStateReachedEnd(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyLibrary", "NotifyStateReachedEnd"); + + Params::AnimNotifyLibrary_NotifyStateReachedEnd Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.CopyInterpParameters +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UMaterialInstance* Source (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::CopyInterpParameters(class UMaterialInstance* Source) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "CopyInterpParameters"); + + Params::MaterialInstanceDynamic_CopyInterpParameters Parms{}; + + Parms.Source = Source; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.CopyParameterOverrides +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInstance* MaterialInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::CopyParameterOverrides(class UMaterialInstance* MaterialInstance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "CopyParameterOverrides"); + + Params::MaterialInstanceDynamic_CopyParameterOverrides Parms{}; + + Parms.MaterialInstance = MaterialInstance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.InitializeScalarParameterAndGetIndex +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& ParameterName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutParameterIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UMaterialInstanceDynamic::InitializeScalarParameterAndGetIndex(const class FName& ParameterName, float Value, int32* OutParameterIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "InitializeScalarParameterAndGetIndex"); + + Params::MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutParameterIndex != nullptr) + *OutParameterIndex = Parms.OutParameterIndex; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_CopyMaterialInstanceParameters +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Source (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bQuickParametersOnly (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::K2_CopyMaterialInstanceParameters(class UMaterialInterface* Source, bool bQuickParametersOnly) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_CopyMaterialInstanceParameters"); + + Params::MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters Parms{}; + + Parms.Source = Source; + Parms.bQuickParametersOnly = bQuickParametersOnly; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetScalarParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMaterialInstanceDynamic::K2_GetScalarParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetScalarParameterValue"); + + Params::MaterialInstanceDynamic_K2_GetScalarParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetScalarParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMaterialInstanceDynamic::K2_GetScalarParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetScalarParameterValueByInfo"); + + Params::MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetTextureParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture* UMaterialInstanceDynamic::K2_GetTextureParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetTextureParameterValue"); + + Params::MaterialInstanceDynamic_K2_GetTextureParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetTextureParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture* UMaterialInstanceDynamic::K2_GetTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetTextureParameterValueByInfo"); + + Params::MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetVectorParameterValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UMaterialInstanceDynamic::K2_GetVectorParameterValue(class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetVectorParameterValue"); + + Params::MaterialInstanceDynamic_K2_GetVectorParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_GetVectorParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UMaterialInstanceDynamic::K2_GetVectorParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_GetVectorParameterValueByInfo"); + + Params::MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInstance* SourceA (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstance* SourceB (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::K2_InterpolateMaterialInstanceParams(class UMaterialInstance* SourceA, class UMaterialInstance* SourceB, float Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "K2_InterpolateMaterialInstanceParams"); + + Params::MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams Parms{}; + + Parms.SourceA = SourceA; + Parms.SourceB = SourceB; + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetDoubleVectorParameterValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetDoubleVectorParameterValue(class FName ParameterName, const struct FVector4& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetDoubleVectorParameterValue"); + + Params::MaterialInstanceDynamic_SetDoubleVectorParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetRuntimeVirtualTextureParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class URuntimeVirtualTexture* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetRuntimeVirtualTextureParameterValue(class FName ParameterName, class URuntimeVirtualTexture* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetRuntimeVirtualTextureParameterValue"); + + Params::MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetRuntimeVirtualTextureParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class URuntimeVirtualTexture* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetRuntimeVirtualTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, class URuntimeVirtualTexture* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetRuntimeVirtualTextureParameterValueByInfo"); + + Params::MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterByIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ParameterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UMaterialInstanceDynamic::SetScalarParameterByIndex(int32 ParameterIndex, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetScalarParameterByIndex"); + + Params::MaterialInstanceDynamic_SetScalarParameterByIndex Parms{}; + + Parms.ParameterIndex = ParameterIndex; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetScalarParameterValue(class FName ParameterName, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetScalarParameterValue"); + + Params::MaterialInstanceDynamic_SetScalarParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetScalarParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetScalarParameterValueByInfo"); + + Params::MaterialInstanceDynamic_SetScalarParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetSparseVolumeTextureParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USparseVolumeTexture* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetSparseVolumeTextureParameterValue(class FName ParameterName, class USparseVolumeTexture* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetSparseVolumeTextureParameterValue"); + + Params::MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetTextureParameterValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetTextureParameterValue(class FName ParameterName, class UTexture* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetTextureParameterValue"); + + Params::MaterialInstanceDynamic_SetTextureParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetTextureParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* Value (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetTextureParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, class UTexture* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetTextureParameterValueByInfo"); + + Params::MaterialInstanceDynamic_SetTextureParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetVectorParameterValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetVectorParameterValue(class FName ParameterName, const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetVectorParameterValue"); + + Params::MaterialInstanceDynamic_SetVectorParameterValue Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialInstanceDynamic.SetVectorParameterValueByInfo +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FMaterialParameterInfo& ParameterInfo (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialInstanceDynamic::SetVectorParameterValueByInfo(const struct FMaterialParameterInfo& ParameterInfo, const struct FLinearColor& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialInstanceDynamic", "SetVectorParameterValueByInfo"); + + Params::MaterialInstanceDynamic_SetVectorParameterValueByInfo Parms{}; + + Parms.ParameterInfo = std::move(ParameterInfo); + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NavMovementInterface.RequestDirectMove +// (Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& MoveVelocity (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceMaxSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void INavMovementInterface::RequestDirectMove(const struct FVector& MoveVelocity, bool bForceMaxSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "RequestDirectMove"); + + Params::NavMovementInterface_RequestDirectMove Parms{}; + + Parms.MoveVelocity = std::move(MoveVelocity); + Parms.bForceMaxSpeed = bForceMaxSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NavMovementInterface.RequestPathMove +// (Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& MoveInput (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void INavMovementInterface::RequestPathMove(const struct FVector& MoveInput) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "RequestPathMove"); + + Params::NavMovementInterface_RequestPathMove Parms{}; + + Parms.MoveInput = std::move(MoveInput); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NavMovementInterface.StopActiveMovement +// (Native, Public, BlueprintCallable) + +void INavMovementInterface::StopActiveMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "StopActiveMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NavMovementInterface.StopMovementKeepPathing +// (Native, Public, BlueprintCallable) + +void INavMovementInterface::StopMovementKeepPathing() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "StopMovementKeepPathing"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NavMovementInterface.GetMaxSpeedForNavMovement +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float INavMovementInterface::GetMaxSpeedForNavMovement() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "GetMaxSpeedForNavMovement"); + + Params::NavMovementInterface_GetMaxSpeedForNavMovement Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.GetVelocityForNavMovement +// (Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector INavMovementInterface::GetVelocityForNavMovement() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "GetVelocityForNavMovement"); + + Params::NavMovementInterface_GetVelocityForNavMovement Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.IsCrouching +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool INavMovementInterface::IsCrouching() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "IsCrouching"); + + Params::NavMovementInterface_IsCrouching Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.IsFalling +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool INavMovementInterface::IsFalling() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "IsFalling"); + + Params::NavMovementInterface_IsFalling Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.IsFlying +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool INavMovementInterface::IsFlying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "IsFlying"); + + Params::NavMovementInterface_IsFlying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.IsMovingOnGround +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool INavMovementInterface::IsMovingOnGround() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "IsMovingOnGround"); + + Params::NavMovementInterface_IsMovingOnGround Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NavMovementInterface.IsSwimming +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool INavMovementInterface::IsSwimming() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("NavMovementInterface", "IsSwimming"); + + Params::NavMovementInterface_IsSwimming Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetAdditionalPluginSearchPaths +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UPluginBlueprintLibrary::GetAdditionalPluginSearchPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetAdditionalPluginSearchPaths"); + + Params::PluginBlueprintLibrary_GetAdditionalPluginSearchPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetAdditionalProjectPluginSearchPaths +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UPluginBlueprintLibrary::GetAdditionalProjectPluginSearchPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetAdditionalProjectPluginSearchPaths"); + + Params::PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetEnabledPluginNames +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UPluginBlueprintLibrary::GetEnabledPluginNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetEnabledPluginNames"); + + Params::PluginBlueprintLibrary_GetEnabledPluginNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginBaseDir +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutBaseDir (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginBaseDir(const class FString& PluginName, class FString* OutBaseDir) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginBaseDir"); + + Params::PluginBlueprintLibrary_GetPluginBaseDir Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutBaseDir != nullptr) + *OutBaseDir = std::move(Parms.OutBaseDir); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginContentDir +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutContentDir (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginContentDir(const class FString& PluginName, class FString* OutContentDir) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginContentDir"); + + Params::PluginBlueprintLibrary_GetPluginContentDir Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutContentDir != nullptr) + *OutContentDir = std::move(Parms.OutContentDir); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginDescription +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutDescription (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginDescription(const class FString& PluginName, class FString* OutDescription) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginDescription"); + + Params::PluginBlueprintLibrary_GetPluginDescription Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutDescription != nullptr) + *OutDescription = std::move(Parms.OutDescription); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginDescriptorFilePath +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutFilePath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginDescriptorFilePath(const class FString& PluginName, class FString* OutFilePath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginDescriptorFilePath"); + + Params::PluginBlueprintLibrary_GetPluginDescriptorFilePath Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutFilePath != nullptr) + *OutFilePath = std::move(Parms.OutFilePath); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginEditorCustomVirtualPath +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutVirtualPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginEditorCustomVirtualPath(const class FString& PluginName, class FString* OutVirtualPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginEditorCustomVirtualPath"); + + Params::PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutVirtualPath != nullptr) + *OutVirtualPath = std::move(Parms.OutVirtualPath); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginMountedAssetPath +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutAssetPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginMountedAssetPath(const class FString& PluginName, class FString* OutAssetPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginMountedAssetPath"); + + Params::PluginBlueprintLibrary_GetPluginMountedAssetPath Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutAssetPath != nullptr) + *OutAssetPath = std::move(Parms.OutAssetPath); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginNameForObjectPath +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FSoftObjectPath& ObjectPath (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPluginName (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginNameForObjectPath(const struct FSoftObjectPath& ObjectPath, class FString* OutPluginName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginNameForObjectPath"); + + Params::PluginBlueprintLibrary_GetPluginNameForObjectPath Parms{}; + + Parms.ObjectPath = std::move(ObjectPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPluginName != nullptr) + *OutPluginName = std::move(Parms.OutPluginName); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginVersion +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutVersion (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginVersion(const class FString& PluginName, int32* OutVersion) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginVersion"); + + Params::PluginBlueprintLibrary_GetPluginVersion Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutVersion != nullptr) + *OutVersion = Parms.OutVersion; + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.GetPluginVersionName +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutVersionName (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::GetPluginVersionName(const class FString& PluginName, class FString* OutVersionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "GetPluginVersionName"); + + Params::PluginBlueprintLibrary_GetPluginVersionName Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutVersionName != nullptr) + *OutVersionName = std::move(Parms.OutVersionName); + + return Parms.ReturnValue; +} + + +// Function Engine.PluginBlueprintLibrary.IsPluginMounted +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& PluginName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPluginBlueprintLibrary::IsPluginMounted(const class FString& PluginName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PluginBlueprintLibrary", "IsPluginMounted"); + + Params::PluginBlueprintLibrary_IsPluginMounted Parms{}; + + Parms.PluginName = std::move(PluginName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PostProcessVolume.AddOrUpdateBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APostProcessVolume::AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PostProcessVolume", "AddOrUpdateBlendable"); + + Params::PostProcessVolume_AddOrUpdateBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + Parms.InWeight = InWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystem.ContainsEmitterType +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class UClass* TypeData (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystem::ContainsEmitterType(class UClass* TypeData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystem", "ContainsEmitterType"); + + Params::ParticleSystem_ContainsEmitterType Parms{}; + + Parms.TypeData = TypeData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NetPushModelHelpers.MarkPropertyDirty +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UNetPushModelHelpers::MarkPropertyDirty(class UObject* Object, class FName PropertyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("NetPushModelHelpers", "MarkPropertyDirty"); + + Params::NetPushModelHelpers_MarkPropertyDirty Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetPushModelHelpers.MarkPropertyDirtyFromRepIndex +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 RepIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UNetPushModelHelpers::MarkPropertyDirtyFromRepIndex(class UObject* Object, int32 RepIndex, class FName PropertyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("NetPushModelHelpers", "MarkPropertyDirtyFromRepIndex"); + + Params::NetPushModelHelpers_MarkPropertyDirtyFromRepIndex Parms{}; + + Parms.Object = Object; + Parms.RepIndex = RepIndex; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundEffectPresetWidgetInterface.GetClass +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf ISoundEffectPresetWidgetInterface::GetClass() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("SoundEffectPresetWidgetInterface", "GetClass"); + + Params::SoundEffectPresetWidgetInterface_GetClass Parms{}; + + AsUObject()->ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.SoundEffectPresetWidgetInterface.OnConstructed +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class USoundEffectPreset* Preset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ISoundEffectPresetWidgetInterface::OnConstructed(class USoundEffectPreset* Preset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("SoundEffectPresetWidgetInterface", "OnConstructed"); + + Params::SoundEffectPresetWidgetInterface_OnConstructed Parms{}; + + Parms.Preset = Preset; + + AsUObject()->ProcessEvent(Func, &Parms); +} + + +// Function Engine.SoundEffectPresetWidgetInterface.OnPropertyChanged +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class USoundEffectPreset* Preset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ISoundEffectPresetWidgetInterface::OnPropertyChanged(class USoundEffectPreset* Preset, class FName PropertyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("SoundEffectPresetWidgetInterface", "OnPropertyChanged"); + + Params::SoundEffectPresetWidgetInterface_OnPropertyChanged Parms{}; + + Parms.Preset = Preset; + Parms.PropertyName = PropertyName; + + AsUObject()->ProcessEvent(Func, &Parms); +} + + +// Function Engine.AnimatedSparseVolumeTextureController.GetCurrentFrame +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USparseVolumeTextureFrame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USparseVolumeTextureFrame* UAnimatedSparseVolumeTextureController::GetCurrentFrame() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "GetCurrentFrame"); + + Params::AnimatedSparseVolumeTextureController_GetCurrentFrame Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.GetCurrentFramesForInterpolation +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class USparseVolumeTextureFrame** Frame0 (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USparseVolumeTextureFrame** Frame1 (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LerpAlpha (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimatedSparseVolumeTextureController::GetCurrentFramesForInterpolation(class USparseVolumeTextureFrame** Frame0, class USparseVolumeTextureFrame** Frame1, float* LerpAlpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "GetCurrentFramesForInterpolation"); + + Params::AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Frame0 != nullptr) + *Frame0 = Parms.Frame0; + + if (Frame1 != nullptr) + *Frame1 = Parms.Frame1; + + if (LerpAlpha != nullptr) + *LerpAlpha = Parms.LerpAlpha; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.GetDuration +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimatedSparseVolumeTextureController::GetDuration() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "GetDuration"); + + Params::AnimatedSparseVolumeTextureController_GetDuration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.GetFractionalFrameIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimatedSparseVolumeTextureController::GetFractionalFrameIndex() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "GetFractionalFrameIndex"); + + Params::AnimatedSparseVolumeTextureController_GetFractionalFrameIndex Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.GetFrameByIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 FrameIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USparseVolumeTextureFrame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USparseVolumeTextureFrame* UAnimatedSparseVolumeTextureController::GetFrameByIndex(int32 FrameIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "GetFrameByIndex"); + + Params::AnimatedSparseVolumeTextureController_GetFrameByIndex Parms{}; + + Parms.FrameIndex = FrameIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.Pause +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimatedSparseVolumeTextureController::Pause() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "Pause"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimatedSparseVolumeTextureController::Play() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "Play"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.Stop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimatedSparseVolumeTextureController::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimatedSparseVolumeTextureController.Update +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimatedSparseVolumeTextureController::Update(float DeltaTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimatedSparseVolumeTextureController", "Update"); + + Params::AnimatedSparseVolumeTextureController_Update Parms{}; + + Parms.DeltaTime = DeltaTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmixBase.DynamicConnect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundSubmixBase* InParent (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USoundSubmixBase::DynamicConnect(const class UObject* WorldContextObject, class USoundSubmixBase* InParent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmixBase", "DynamicConnect"); + + Params::SoundSubmixBase_DynamicConnect Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InParent = InParent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundSubmixBase.DynamicDisconnect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USoundSubmixBase::DynamicDisconnect(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmixBase", "DynamicDisconnect"); + + Params::SoundSubmixBase_DynamicDisconnect Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundSubmixBase.FindDynamicAncestor +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USoundSubmixBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USoundSubmixBase* USoundSubmixBase::FindDynamicAncestor() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmixBase", "FindDynamicAncestor"); + + Params::SoundSubmixBase_FindDynamicAncestor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.BeginTrails +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InFirstSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InSecondSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETrailWidthMode InWidthMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::BeginTrails(class FName InFirstSocketName, class FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "BeginTrails"); + + Params::ParticleSystemComponent_BeginTrails Parms{}; + + Parms.InFirstSocketName = InFirstSocketName; + Parms.InSecondSocketName = InSecondSocketName; + Parms.InWidthMode = InWidthMode; + Parms.InWidth = InWidth; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.CreateNamedDynamicMaterialInstance +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* SourceMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UParticleSystemComponent::CreateNamedDynamicMaterialInstance(class FName InName, class UMaterialInterface* SourceMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "CreateNamedDynamicMaterialInstance"); + + Params::ParticleSystemComponent_CreateNamedDynamicMaterialInstance Parms{}; + + Parms.InName = InName; + Parms.SourceMaterial = SourceMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.EndTrails +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UParticleSystemComponent::EndTrails() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "EndTrails"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.GenerateParticleEvent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class FName InEventName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float InEmitterTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLocation (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InDirection (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InVelocity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::GenerateParticleEvent(const class FName InEventName, const float InEmitterTime, const struct FVector& InLocation, const struct FVector& InDirection, const struct FVector& InVelocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GenerateParticleEvent"); + + Params::ParticleSystemComponent_GenerateParticleEvent Parms{}; + + Parms.InEventName = InEventName; + Parms.InEmitterTime = InEmitterTime; + Parms.InLocation = std::move(InLocation); + Parms.InDirection = std::move(InDirection); + Parms.InVelocity = std::move(InVelocity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetAutoAttachParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USceneComponent* Parent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetAutoAttachParams(class USceneComponent* Parent, class FName SocketName, EAttachLocation LocationType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetAutoAttachParams"); + + Params::ParticleSystemComponent_SetAutoAttachParams Parms{}; + + Parms.Parent = Parent; + Parms.SocketName = SocketName; + Parms.LocationType = LocationType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamEndPoint +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewEndPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamEndPoint(int32 EmitterIndex, const struct FVector& NewEndPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamEndPoint"); + + Params::ParticleSystemComponent_SetBeamEndPoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewEndPoint = std::move(NewEndPoint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamSourcePoint +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewSourcePoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamSourcePoint(int32 EmitterIndex, const struct FVector& NewSourcePoint, int32 SourceIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamSourcePoint"); + + Params::ParticleSystemComponent_SetBeamSourcePoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewSourcePoint = std::move(NewSourcePoint); + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamSourceStrength +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NewSourceStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamSourceStrength(int32 EmitterIndex, float NewSourceStrength, int32 SourceIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamSourceStrength"); + + Params::ParticleSystemComponent_SetBeamSourceStrength Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewSourceStrength = NewSourceStrength; + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamSourceTangent +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewTangentPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamSourceTangent(int32 EmitterIndex, const struct FVector& NewTangentPoint, int32 SourceIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamSourceTangent"); + + Params::ParticleSystemComponent_SetBeamSourceTangent Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewTangentPoint = std::move(NewTangentPoint); + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamTargetPoint +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewTargetPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamTargetPoint(int32 EmitterIndex, const struct FVector& NewTargetPoint, int32 TargetIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamTargetPoint"); + + Params::ParticleSystemComponent_SetBeamTargetPoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewTargetPoint = std::move(NewTargetPoint); + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamTargetStrength +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NewTargetStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamTargetStrength(int32 EmitterIndex, float NewTargetStrength, int32 TargetIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamTargetStrength"); + + Params::ParticleSystemComponent_SetBeamTargetStrength Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewTargetStrength = NewTargetStrength; + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetBeamTargetTangent +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewTangentPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetBeamTargetTangent(int32 EmitterIndex, const struct FVector& NewTangentPoint, int32 TargetIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetBeamTargetTangent"); + + Params::ParticleSystemComponent_SetBeamTargetTangent Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.NewTangentPoint = std::move(NewTangentPoint); + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetMaterialParameter +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Param (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetMaterialParameter(class FName ParameterName, class UMaterialInterface* Param) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetMaterialParameter"); + + Params::ParticleSystemComponent_SetMaterialParameter Parms{}; + + Parms.ParameterName = ParameterName; + Parms.Param = Param; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetTemplate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UParticleSystem* NewTemplate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetTemplate(class UParticleSystem* NewTemplate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetTemplate"); + + Params::ParticleSystemComponent_SetTemplate Parms{}; + + Parms.NewTemplate = NewTemplate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.SetTrailSourceData +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName InFirstSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InSecondSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETrailWidthMode InWidthMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWidth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UParticleSystemComponent::SetTrailSourceData(class FName InFirstSocketName, class FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "SetTrailSourceData"); + + Params::ParticleSystemComponent_SetTrailSourceData Parms{}; + + Parms.InFirstSocketName = InFirstSocketName; + Parms.InSecondSocketName = InSecondSocketName; + Parms.InWidthMode = InWidthMode; + Parms.InWidth = InWidth; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ParticleSystemComponent.GetBeamEndPoint +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutEndPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamEndPoint(int32 EmitterIndex, struct FVector* OutEndPoint) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamEndPoint"); + + Params::ParticleSystemComponent_GetBeamEndPoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutEndPoint != nullptr) + *OutEndPoint = std::move(Parms.OutEndPoint); + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamSourcePoint +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutSourcePoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamSourcePoint(int32 EmitterIndex, int32 SourceIndex, struct FVector* OutSourcePoint) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamSourcePoint"); + + Params::ParticleSystemComponent_GetBeamSourcePoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSourcePoint != nullptr) + *OutSourcePoint = std::move(Parms.OutSourcePoint); + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamSourceStrength +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutSourceStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamSourceStrength(int32 EmitterIndex, int32 SourceIndex, float* OutSourceStrength) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamSourceStrength"); + + Params::ParticleSystemComponent_GetBeamSourceStrength Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSourceStrength != nullptr) + *OutSourceStrength = Parms.OutSourceStrength; + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamSourceTangent +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SourceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutTangentPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamSourceTangent(int32 EmitterIndex, int32 SourceIndex, struct FVector* OutTangentPoint) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamSourceTangent"); + + Params::ParticleSystemComponent_GetBeamSourceTangent Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.SourceIndex = SourceIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTangentPoint != nullptr) + *OutTangentPoint = std::move(Parms.OutTangentPoint); + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamTargetPoint +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutTargetPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamTargetPoint(int32 EmitterIndex, int32 TargetIndex, struct FVector* OutTargetPoint) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamTargetPoint"); + + Params::ParticleSystemComponent_GetBeamTargetPoint Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTargetPoint != nullptr) + *OutTargetPoint = std::move(Parms.OutTargetPoint); + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamTargetStrength +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutTargetStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamTargetStrength(int32 EmitterIndex, int32 TargetIndex, float* OutTargetStrength) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamTargetStrength"); + + Params::ParticleSystemComponent_GetBeamTargetStrength Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTargetStrength != nullptr) + *OutTargetStrength = Parms.OutTargetStrength; + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetBeamTargetTangent +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 EmitterIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 TargetIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutTangentPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UParticleSystemComponent::GetBeamTargetTangent(int32 EmitterIndex, int32 TargetIndex, struct FVector* OutTangentPoint) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetBeamTargetTangent"); + + Params::ParticleSystemComponent_GetBeamTargetTangent Parms{}; + + Parms.EmitterIndex = EmitterIndex; + Parms.TargetIndex = TargetIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTangentPoint != nullptr) + *OutTangentPoint = std::move(Parms.OutTangentPoint); + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetNamedMaterial +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UParticleSystemComponent::GetNamedMaterial(class FName InName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetNamedMaterial"); + + Params::ParticleSystemComponent_GetNamedMaterial Parms{}; + + Parms.InName = InName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ParticleSystemComponent.GetNumActiveParticles +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UParticleSystemComponent::GetNumActiveParticles() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ParticleSystemComponent", "GetNumActiveParticles"); + + Params::ParticleSystemComponent_GetNumActiveParticles Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationProfileBelow +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BodyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ProfileName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bClearNotFound (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicalAnimationComponent::ApplyPhysicalAnimationProfileBelow(class FName BodyName, class FName ProfileName, bool bIncludeSelf, bool bClearNotFound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "ApplyPhysicalAnimationProfileBelow"); + + Params::PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow Parms{}; + + Parms.BodyName = BodyName; + Parms.ProfileName = ProfileName; + Parms.bIncludeSelf = bIncludeSelf; + Parms.bClearNotFound = bClearNotFound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FName BodyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPhysicalAnimationData& PhysicalAnimationData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicalAnimationComponent::ApplyPhysicalAnimationSettings(class FName BodyName, const struct FPhysicalAnimationData& PhysicalAnimationData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "ApplyPhysicalAnimationSettings"); + + Params::PhysicalAnimationComponent_ApplyPhysicalAnimationSettings Parms{}; + + Parms.BodyName = BodyName; + Parms.PhysicalAnimationData = std::move(PhysicalAnimationData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationSettingsBelow +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FName BodyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPhysicalAnimationData& PhysicalAnimationData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bIncludeSelf (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicalAnimationComponent::ApplyPhysicalAnimationSettingsBelow(class FName BodyName, const struct FPhysicalAnimationData& PhysicalAnimationData, bool bIncludeSelf) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "ApplyPhysicalAnimationSettingsBelow"); + + Params::PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow Parms{}; + + Parms.BodyName = BodyName; + Parms.PhysicalAnimationData = std::move(PhysicalAnimationData); + Parms.bIncludeSelf = bIncludeSelf; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicalAnimationComponent.SetSkeletalMeshComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshComponent* InSkeletalMeshComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicalAnimationComponent::SetSkeletalMeshComponent(class USkeletalMeshComponent* InSkeletalMeshComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "SetSkeletalMeshComponent"); + + Params::PhysicalAnimationComponent_SetSkeletalMeshComponent Parms{}; + + Parms.InSkeletalMeshComponent = InSkeletalMeshComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicalAnimationComponent.SetStrengthMultiplyer +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InStrengthMultiplyer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicalAnimationComponent::SetStrengthMultiplyer(float InStrengthMultiplyer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "SetStrengthMultiplyer"); + + Params::PhysicalAnimationComponent_SetStrengthMultiplyer Parms{}; + + Parms.InStrengthMultiplyer = InStrengthMultiplyer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicalAnimationComponent.GetBodyTargetTransform +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName BodyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UPhysicalAnimationComponent::GetBodyTargetTransform(class FName BodyName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicalAnimationComponent", "GetBodyTargetTransform"); + + Params::PhysicalAnimationComponent_GetBodyTargetTransform Parms{}; + + Parms.BodyName = BodyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsSpringComponent.GetNormalizedCompressionScalar +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPhysicsSpringComponent::GetNormalizedCompressionScalar() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsSpringComponent", "GetNormalizedCompressionScalar"); + + Params::PhysicsSpringComponent_GetNormalizedCompressionScalar Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsSpringComponent.GetSpringCurrentEndPoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPhysicsSpringComponent::GetSpringCurrentEndPoint() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsSpringComponent", "GetSpringCurrentEndPoint"); + + Params::PhysicsSpringComponent_GetSpringCurrentEndPoint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsSpringComponent.GetSpringDirection +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPhysicsSpringComponent::GetSpringDirection() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsSpringComponent", "GetSpringDirection"); + + Params::PhysicsSpringComponent_GetSpringDirection Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsSpringComponent.GetSpringRestingPoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPhysicsSpringComponent::GetSpringRestingPoint() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsSpringComponent", "GetSpringRestingPoint"); + + Params::PhysicsSpringComponent_GetSpringRestingPoint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ReplaySubsystem.RequestCheckpoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UReplaySubsystem::RequestCheckpoint() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ReplaySubsystem", "RequestCheckpoint"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ReplaySubsystem.GetActiveReplayName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UReplaySubsystem::GetActiveReplayName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ReplaySubsystem", "GetActiveReplayName"); + + Params::ReplaySubsystem_GetActiveReplayName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ReplaySubsystem.GetReplayCurrentTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UReplaySubsystem::GetReplayCurrentTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ReplaySubsystem", "GetReplayCurrentTime"); + + Params::ReplaySubsystem_GetReplayCurrentTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ReplaySubsystem.IsPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UReplaySubsystem::IsPlaying() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ReplaySubsystem", "IsPlaying"); + + Params::ReplaySubsystem_IsPlaying Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ReplaySubsystem.IsRecording +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UReplaySubsystem::IsRecording() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ReplaySubsystem", "IsRecording"); + + Params::ReplaySubsystem_IsRecording Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsObjectBlueprintLibrary.ApplyRadialImpulse +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Strength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERadialImpulseFalloff Falloff (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bApplyStrain (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Strain (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsObjectBlueprintLibrary::ApplyRadialImpulse(class UPrimitiveComponent* Component, const struct FVector& Origin, float Radius, float Strength, ERadialImpulseFalloff Falloff, bool bApplyStrain, float Strain, bool bVelChange, float MinValue, float MaxValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsObjectBlueprintLibrary", "ApplyRadialImpulse"); + + Params::PhysicsObjectBlueprintLibrary_ApplyRadialImpulse Parms{}; + + Parms.Component = Component; + Parms.Origin = std::move(Origin); + Parms.Radius = Radius; + Parms.Strength = Strength; + Parms.Falloff = Falloff; + Parms.bApplyStrain = bApplyStrain; + Parms.Strain = Strain; + Parms.bVelChange = bVelChange; + Parms.MinValue = MinValue; + Parms.MaxValue = MaxValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsObjectBlueprintLibrary.ExtractClosestPhysicsObjectResults +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FClosestPhysicsObjectResult&Result (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// class FName* OutName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPhysicsObjectBlueprintLibrary::ExtractClosestPhysicsObjectResults(const struct FClosestPhysicsObjectResult& Result, class FName* OutName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsObjectBlueprintLibrary", "ExtractClosestPhysicsObjectResults"); + + Params::PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults Parms{}; + + Parms.Result = std::move(Result); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutName != nullptr) + *OutName = Parms.OutName; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsObjectBlueprintLibrary.GetClosestPhysicsObjectFromWorldLocation +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FClosestPhysicsObjectResult ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FClosestPhysicsObjectResult UPhysicsObjectBlueprintLibrary::GetClosestPhysicsObjectFromWorldLocation(class UPrimitiveComponent* Component, const struct FVector& WorldLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsObjectBlueprintLibrary", "GetClosestPhysicsObjectFromWorldLocation"); + + Params::PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation Parms{}; + + Parms.Component = Component; + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsObjectBlueprintLibrary.GetPhysicsObjectWorldTransform +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UPhysicsObjectBlueprintLibrary::GetPhysicsObjectWorldTransform(class UPrimitiveComponent* Component, class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsObjectBlueprintLibrary", "GetPhysicsObjectWorldTransform"); + + Params::PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform Parms{}; + + Parms.Component = Component; + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsThreadLibrary.AddForce +// (Final, Native, Static, Private, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FBodyInstanceAsyncPhysicsTickHandle&Handle (Parm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAccelChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsThreadLibrary::AddForce(const struct FBodyInstanceAsyncPhysicsTickHandle& Handle, const struct FVector& Force, bool bAccelChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsThreadLibrary", "AddForce"); + + Params::PhysicsThreadLibrary_AddForce Parms{}; + + Parms.Handle = std::move(Handle); + Parms.Force = std::move(Force); + Parms.bAccelChange = bAccelChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlatformInterfaceWebResponse.GetHeader +// (Native, Public, HasOutParams) +// Parameters: +// int32 HeaderIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* Header (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* Value (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPlatformInterfaceWebResponse::GetHeader(int32 HeaderIndex, class FString* Header, class FString* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformInterfaceWebResponse", "GetHeader"); + + Params::PlatformInterfaceWebResponse_GetHeader Parms{}; + + Parms.HeaderIndex = HeaderIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Header != nullptr) + *Header = std::move(Parms.Header); + + if (Value != nullptr) + *Value = std::move(Parms.Value); +} + + +// Function Engine.PlatformInterfaceWebResponse.GetHeaderValue +// (Native, Public) +// Parameters: +// const class FString& HeaderName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UPlatformInterfaceWebResponse::GetHeaderValue(const class FString& HeaderName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformInterfaceWebResponse", "GetHeaderValue"); + + Params::PlatformInterfaceWebResponse_GetHeaderValue Parms{}; + + Parms.HeaderName = std::move(HeaderName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlatformInterfaceWebResponse.GetNumHeaders +// (Native, Public) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPlatformInterfaceWebResponse::GetNumHeaders() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformInterfaceWebResponse", "GetNumHeaders"); + + Params::PlatformInterfaceWebResponse_GetNumHeaders Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PointLight.SetLightFalloffExponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLightFalloffExponent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APointLight::SetLightFalloffExponent(float NewLightFalloffExponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLight", "SetLightFalloffExponent"); + + Params::PointLight_SetLightFalloffExponent Parms{}; + + Parms.NewLightFalloffExponent = NewLightFalloffExponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLight.SetRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APointLight::SetRadius(float NewRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLight", "SetRadius"); + + Params::PointLight_SetRadius Parms{}; + + Parms.NewRadius = NewRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceActor.DisableForce +// (Native, Public, BlueprintCallable) + +void ARadialForceActor::DisableForce() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceActor", "DisableForce"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceActor.EnableForce +// (Native, Public, BlueprintCallable) + +void ARadialForceActor::EnableForce() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceActor", "EnableForce"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceActor.FireImpulse +// (Native, Public, BlueprintCallable) + +void ARadialForceActor::FireImpulse() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceActor", "FireImpulse"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceActor.ToggleForce +// (Native, Public, BlueprintCallable) + +void ARadialForceActor::ToggleForce() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceActor", "ToggleForce"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCapture2D.OnInterpToggle +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ASceneCapture2D::OnInterpToggle(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCapture2D", "OnInterpToggle"); + + Params::SceneCapture2D_OnInterpToggle Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent2D.AddOrUpdateBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent2D::AddOrUpdateBlendable(TScriptInterface InBlendableObject, float InWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent2D", "AddOrUpdateBlendable"); + + Params::SceneCaptureComponent2D_AddOrUpdateBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + Parms.InWeight = InWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent2D.CaptureScene +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USceneCaptureComponent2D::CaptureScene() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent2D", "CaptureScene"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureComponent2D.RemoveBlendable +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// TScriptInterfaceInBlendableObject (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USceneCaptureComponent2D::RemoveBlendable(TScriptInterface InBlendableObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureComponent2D", "RemoveBlendable"); + + Params::SceneCaptureComponent2D_RemoveBlendable Parms{}; + + Parms.InBlendableObject = InBlendableObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SceneCaptureCube.OnInterpToggle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ASceneCaptureCube::OnInterpToggle(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SceneCaptureCube", "OnInterpToggle"); + + Params::SceneCaptureCube_OnInterpToggle Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLight.OnRep_bEnabled +// (RequiredAPI, Native, Public) + +void ASkyLight::OnRep_bEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLight", "OnRep_bEnabled"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.RecaptureSky +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void USkyLightComponent::RecaptureSky() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "RecaptureSky"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetCubemap +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTextureCube* NewCubemap (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetCubemap(class UTextureCube* NewCubemap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetCubemap"); + + Params::SkyLightComponent_SetCubemap Parms{}; + + Parms.NewCubemap = NewCubemap; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetCubemapBlend +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTextureCube* SourceCubemap (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureCube* DestinationCubemap (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InBlendFraction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetCubemapBlend(class UTextureCube* SourceCubemap, class UTextureCube* DestinationCubemap, float InBlendFraction) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetCubemapBlend"); + + Params::SkyLightComponent_SetCubemapBlend Parms{}; + + Parms.SourceCubemap = SourceCubemap; + Parms.DestinationCubemap = DestinationCubemap; + Parms.InBlendFraction = InBlendFraction; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetIndirectLightingIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetIndirectLightingIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetIndirectLightingIntensity"); + + Params::SkyLightComponent_SetIndirectLightingIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetIntensity"); + + Params::SkyLightComponent_SetIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewLightColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetLightColor(const struct FLinearColor& NewLightColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetLightColor"); + + Params::SkyLightComponent_SetLightColor Parms{}; + + Parms.NewLightColor = std::move(NewLightColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetLowerHemisphereColor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& InLowerHemisphereColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetLowerHemisphereColor(const struct FLinearColor& InLowerHemisphereColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetLowerHemisphereColor"); + + Params::SkyLightComponent_SetLowerHemisphereColor Parms{}; + + Parms.InLowerHemisphereColor = std::move(InLowerHemisphereColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetMinOcclusion +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InMinOcclusion (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetMinOcclusion(float InMinOcclusion) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetMinOcclusion"); + + Params::SkyLightComponent_SetMinOcclusion Parms{}; + + Parms.InMinOcclusion = InMinOcclusion; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetOcclusionContrast +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InOcclusionContrast (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetOcclusionContrast(float InOcclusionContrast) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetOcclusionContrast"); + + Params::SkyLightComponent_SetOcclusionContrast Parms{}; + + Parms.InOcclusionContrast = InOcclusionContrast; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetOcclusionExponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InOcclusionExponent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetOcclusionExponent(float InOcclusionExponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetOcclusionExponent"); + + Params::SkyLightComponent_SetOcclusionExponent Parms{}; + + Parms.InOcclusionExponent = InOcclusionExponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetOcclusionTint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& InTint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetOcclusionTint(const struct FColor& InTint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetOcclusionTint"); + + Params::SkyLightComponent_SetOcclusionTint Parms{}; + + Parms.InTint = std::move(InTint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetRealTimeCapture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInRealTimeCapture (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetRealTimeCapture(bool bInRealTimeCapture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetRealTimeCapture"); + + Params::SkyLightComponent_SetRealTimeCapture Parms{}; + + Parms.bInRealTimeCapture = bInRealTimeCapture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetSourceCubemapAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetSourceCubemapAngle(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetSourceCubemapAngle"); + + Params::SkyLightComponent_SetSourceCubemapAngle Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyLightComponent.SetVolumetricScatteringIntensity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyLightComponent::SetVolumetricScatteringIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyLightComponent", "SetVolumetricScatteringIntensity"); + + Params::SkyLightComponent_SetVolumetricScatteringIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.EditorFlagCollector.GetFlagNames +// (Final, Native, Static, Public) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UEditorFlagCollector::GetFlagNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("EditorFlagCollector", "GetFlagNames"); + + Params::EditorFlagCollector_GetFlagNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerShapeEquirect.SetEquirectProps +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const struct FEquirectProps& InScaleBiases (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UStereoLayerShapeEquirect::SetEquirectProps(const struct FEquirectProps& InScaleBiases) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerShapeEquirect", "SetEquirectProps"); + + Params::StereoLayerShapeEquirect_SetEquirectProps Parms{}; + + Parms.InScaleBiases = std::move(InScaleBiases); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.MarkTextureForUpdate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UStereoLayerComponent::MarkTextureForUpdate() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "MarkTextureForUpdate"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetEquirectProps +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const struct FEquirectProps& InEquirectProps (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetEquirectProps(const struct FEquirectProps& InEquirectProps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetEquirectProps"); + + Params::StereoLayerComponent_SetEquirectProps Parms{}; + + Parms.InEquirectProps = std::move(InEquirectProps); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetLeftTexture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture* InTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetLeftTexture(class UTexture* InTexture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetLeftTexture"); + + Params::StereoLayerComponent_SetLeftTexture Parms{}; + + Parms.InTexture = InTexture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 InPriority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetPriority(int32 InPriority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetPriority"); + + Params::StereoLayerComponent_SetPriority Parms{}; + + Parms.InPriority = InPriority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetQuadSize +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& InQuadSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetQuadSize(const struct FVector2D& InQuadSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetQuadSize"); + + Params::StereoLayerComponent_SetQuadSize Parms{}; + + Parms.InQuadSize = std::move(InQuadSize); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetTexture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture* InTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetTexture(class UTexture* InTexture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetTexture"); + + Params::StereoLayerComponent_SetTexture Parms{}; + + Parms.InTexture = InTexture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.SetUVRect +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FBox2D& InUVRect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UStereoLayerComponent::SetUVRect(const struct FBox2D& InUVRect) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "SetUVRect"); + + Params::StereoLayerComponent_SetUVRect Parms{}; + + Parms.InUVRect = std::move(InUVRect); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StereoLayerComponent.GetLeftTexture +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture* UStereoLayerComponent::GetLeftTexture() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "GetLeftTexture"); + + Params::StereoLayerComponent_GetLeftTexture Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerComponent.GetPriority +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStereoLayerComponent::GetPriority() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "GetPriority"); + + Params::StereoLayerComponent_GetPriority Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerComponent.GetQuadSize +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UStereoLayerComponent::GetQuadSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "GetQuadSize"); + + Params::StereoLayerComponent_GetQuadSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerComponent.GetTexture +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture* UStereoLayerComponent::GetTexture() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "GetTexture"); + + Params::StereoLayerComponent_GetTexture Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StereoLayerComponent.GetUVRect +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FBox2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox2D UStereoLayerComponent::GetUVRect() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StereoLayerComponent", "GetUVRect"); + + Params::StereoLayerComponent_GetUVRect Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.AuthorizeAccounts +// (Native, Public) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTwitterIntegrationBase::AuthorizeAccounts() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "AuthorizeAccounts"); + + Params::TwitterIntegrationBase_AuthorizeAccounts Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.CanShowTweetUI +// (Native, Public) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTwitterIntegrationBase::CanShowTweetUI() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "CanShowTweetUI"); + + Params::TwitterIntegrationBase_CanShowTweetUI Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.GetAccountName +// (Native, Public) +// Parameters: +// int32 AccountIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UTwitterIntegrationBase::GetAccountName(int32 AccountIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "GetAccountName"); + + Params::TwitterIntegrationBase_GetAccountName Parms{}; + + Parms.AccountIndex = AccountIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.GetNumAccounts +// (Native, Public) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UTwitterIntegrationBase::GetNumAccounts() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "GetNumAccounts"); + + Params::TwitterIntegrationBase_GetNumAccounts Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.Init +// (Native, Public) + +void UTwitterIntegrationBase::Init() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "Init"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.TwitterIntegrationBase.ShowTweetUI +// (Native, Public) +// Parameters: +// const class FString& InitialMessage (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Picture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTwitterIntegrationBase::ShowTweetUI(const class FString& InitialMessage, const class FString& URL, const class FString& Picture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "ShowTweetUI"); + + Params::TwitterIntegrationBase_ShowTweetUI Parms{}; + + Parms.InitialMessage = std::move(InitialMessage); + Parms.URL = std::move(URL); + Parms.Picture = std::move(Picture); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.TwitterIntegrationBase.TwitterRequest +// (Native, Public, HasOutParams) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ParamKeysAndValues (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// ETwitterRequestMethod RequestMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 AccountIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UTwitterIntegrationBase::TwitterRequest(const class FString& URL, const TArray& ParamKeysAndValues, ETwitterRequestMethod RequestMethod, int32 AccountIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("TwitterIntegrationBase", "TwitterRequest"); + + Params::TwitterIntegrationBase_TwitterRequest Parms{}; + + Parms.URL = std::move(URL); + Parms.ParamKeysAndValues = std::move(ParamKeysAndValues); + Parms.RequestMethod = RequestMethod; + Parms.AccountIndex = AccountIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.IsEmpty +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FUniversalObjectLocator& Locator (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UUniversalObjectLocatorScriptingExtensions::IsEmpty(const struct FUniversalObjectLocator& Locator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "IsEmpty"); + + Params::UniversalObjectLocatorScriptingExtensions_IsEmpty Parms{}; + + Parms.Locator = std::move(Locator); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.MakeUniversalObjectLocator +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Context (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FUniversalObjectLocator ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FUniversalObjectLocator UUniversalObjectLocatorScriptingExtensions::MakeUniversalObjectLocator(class UObject* Object, class UObject* Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "MakeUniversalObjectLocator"); + + Params::UniversalObjectLocatorScriptingExtensions_MakeUniversalObjectLocator Parms{}; + + Parms.Object = Object; + Parms.Context = Context; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncFind +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FUniversalObjectLocator& Locator (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Context (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UUniversalObjectLocatorScriptingExtensions::SyncFind(const struct FUniversalObjectLocator& Locator, class UObject* Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "SyncFind"); + + Params::UniversalObjectLocatorScriptingExtensions_SyncFind Parms{}; + + Parms.Locator = std::move(Locator); + Parms.Context = Context; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncLoad +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FUniversalObjectLocator& Locator (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Context (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UUniversalObjectLocatorScriptingExtensions::SyncLoad(const struct FUniversalObjectLocator& Locator, class UObject* Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "SyncLoad"); + + Params::UniversalObjectLocatorScriptingExtensions_SyncLoad Parms{}; + + Parms.Locator = std::move(Locator); + Parms.Context = Context; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncUnload +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FUniversalObjectLocator& Locator (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Context (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UUniversalObjectLocatorScriptingExtensions::SyncUnload(const struct FUniversalObjectLocator& Locator, class UObject* Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "SyncUnload"); + + Params::UniversalObjectLocatorScriptingExtensions_SyncUnload Parms{}; + + Parms.Locator = std::move(Locator); + Parms.Context = Context; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.ToString +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FUniversalObjectLocator& Locator (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UUniversalObjectLocatorScriptingExtensions::ToString(const struct FUniversalObjectLocator& Locator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "ToString"); + + Params::UniversalObjectLocatorScriptingExtensions_ToString Parms{}; + + Parms.Locator = std::move(Locator); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UniversalObjectLocatorScriptingExtensions.UniversalObjectLocatorFromString +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FUniversalObjectLocator ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FUniversalObjectLocator UUniversalObjectLocatorScriptingExtensions::UniversalObjectLocatorFromString(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UniversalObjectLocatorScriptingExtensions", "UniversalObjectLocatorFromString"); + + Params::UniversalObjectLocatorScriptingExtensions_UniversalObjectLocatorFromString Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.VectorFieldComponent.SetIntensity +// (Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVectorFieldComponent::SetIntensity(float NewIntensity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VectorFieldComponent", "SetIntensity"); + + Params::VectorFieldComponent_SetIntensity Parms{}; + + Parms.NewIntensity = NewIntensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetMaximumGustAmount +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InNewMaxGust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetMaximumGustAmount(float InNewMaxGust) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetMaximumGustAmount"); + + Params::WindDirectionalSourceComponent_SetMaximumGustAmount Parms{}; + + Parms.InNewMaxGust = InNewMaxGust; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetMinimumGustAmount +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InNewMinGust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetMinimumGustAmount(float InNewMinGust) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetMinimumGustAmount"); + + Params::WindDirectionalSourceComponent_SetMinimumGustAmount Parms{}; + + Parms.InNewMinGust = InNewMinGust; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InNewRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetRadius(float InNewRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetRadius"); + + Params::WindDirectionalSourceComponent_SetRadius Parms{}; + + Parms.InNewRadius = InNewRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetSpeed +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InNewSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetSpeed(float InNewSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetSpeed"); + + Params::WindDirectionalSourceComponent_SetSpeed Parms{}; + + Parms.InNewSpeed = InNewSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetStrength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InNewStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetStrength(float InNewStrength) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetStrength"); + + Params::WindDirectionalSourceComponent_SetStrength Parms{}; + + Parms.InNewStrength = InNewStrength; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WindDirectionalSourceComponent.SetWindType +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EWindSourceType InNewType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWindDirectionalSourceComponent::SetWindType(EWindSourceType InNewType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WindDirectionalSourceComponent", "SetWindType"); + + Params::WindDirectionalSourceComponent_SetWindType Parms{}; + + Parms.InNewType = InNewType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldSettings.OnRep_NaniteSettings +// (RequiredAPI, Native, Public) + +void AWorldSettings::OnRep_NaniteSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldSettings", "OnRep_NaniteSettings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldSettings.OnRep_WorldGravityZ +// (RequiredAPI, Native, Public) + +void AWorldSettings::OnRep_WorldGravityZ() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldSettings", "OnRep_WorldGravityZ"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AvoidanceManager.GetAvoidanceVelocityForComponent +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UMovementComponent* MovementComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UAvoidanceManager::GetAvoidanceVelocityForComponent(class UMovementComponent* MovementComp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AvoidanceManager", "GetAvoidanceVelocityForComponent"); + + Params::AvoidanceManager_GetAvoidanceVelocityForComponent Parms{}; + + Parms.MovementComp = MovementComp; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AvoidanceManager.GetNewAvoidanceUID +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UAvoidanceManager::GetNewAvoidanceUID() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AvoidanceManager", "GetNewAvoidanceUID"); + + Params::AvoidanceManager_GetNewAvoidanceUID Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AvoidanceManager.GetObjectCount +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UAvoidanceManager::GetObjectCount() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AvoidanceManager", "GetObjectCount"); + + Params::AvoidanceManager_GetObjectCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AvoidanceManager.RegisterMovementComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMovementComponent* MovementComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AvoidanceWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAvoidanceManager::RegisterMovementComponent(class UMovementComponent* MovementComp, float AvoidanceWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AvoidanceManager", "RegisterMovementComponent"); + + Params::AvoidanceManager_RegisterMovementComponent Parms{}; + + Parms.MovementComp = MovementComp; + Parms.AvoidanceWeight = AvoidanceWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AmbientSound.AdjustVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float AdjustVolumeDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AdjustVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAmbientSound::AdjustVolume(float AdjustVolumeDuration, float AdjustVolumeLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AmbientSound", "AdjustVolume"); + + Params::AmbientSound_AdjustVolume Parms{}; + + Parms.AdjustVolumeDuration = AdjustVolumeDuration; + Parms.AdjustVolumeLevel = AdjustVolumeLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AmbientSound.FadeIn +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float FadeInDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAmbientSound::FadeIn(float FadeInDuration, float FadeVolumeLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AmbientSound", "FadeIn"); + + Params::AmbientSound_FadeIn Parms{}; + + Parms.FadeInDuration = FadeInDuration; + Parms.FadeVolumeLevel = FadeVolumeLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AmbientSound.FadeOut +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float FadeOutDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeVolumeLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAmbientSound::FadeOut(float FadeOutDuration, float FadeVolumeLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AmbientSound", "FadeOut"); + + Params::AmbientSound_FadeOut Parms{}; + + Parms.FadeOutDuration = FadeOutDuration; + Parms.FadeVolumeLevel = FadeVolumeLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AmbientSound.Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAmbientSound::Play(float StartTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AmbientSound", "Play"); + + Params::AmbientSound_Play Parms{}; + + Parms.StartTime = StartTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AmbientSound.Stop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void AAmbientSound::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AmbientSound", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimationSettings.GetBoneCustomAttributeNamesToImport +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UAnimationSettings::GetBoneCustomAttributeNamesToImport() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimationSettings", "GetBoneCustomAttributeNamesToImport"); + + Params::AnimationSettings_GetBoneCustomAttributeNamesToImport Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.NetworkPhysicsComponent.MulticastReceiveImportantInputData +// (RequiredAPI, Net, NetReliable, Native, Event, NetMulticast, Protected) +// Parameters: +// const struct FNetworkPhysicsRewindDataImportantInputProxy&ServerInputs (ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UNetworkPhysicsComponent::MulticastReceiveImportantInputData(const struct FNetworkPhysicsRewindDataImportantInputProxy& ServerInputs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "MulticastReceiveImportantInputData"); + + Params::NetworkPhysicsComponent_MulticastReceiveImportantInputData Parms{}; + + Parms.ServerInputs = std::move(ServerInputs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.MulticastReceiveImportantStateData +// (RequiredAPI, Net, NetReliable, Native, Event, NetMulticast, Protected) +// Parameters: +// const struct FNetworkPhysicsRewindDataImportantStateProxy&ServerStates (ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UNetworkPhysicsComponent::MulticastReceiveImportantStateData(const struct FNetworkPhysicsRewindDataImportantStateProxy& ServerStates) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "MulticastReceiveImportantStateData"); + + Params::NetworkPhysicsComponent_MulticastReceiveImportantStateData Parms{}; + + Parms.ServerStates = std::move(ServerStates); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.OnRep_SetReplicatedInputs +// (Final, RequiredAPI, Native, Protected) + +void UNetworkPhysicsComponent::OnRep_SetReplicatedInputs() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "OnRep_SetReplicatedInputs"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.OnRep_SetReplicatedStates +// (Final, RequiredAPI, Native, Protected) + +void UNetworkPhysicsComponent::OnRep_SetReplicatedStates() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "OnRep_SetReplicatedStates"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.ServerReceiveImportantInputData +// (RequiredAPI, Net, NetReliable, Native, Event, Protected, NetServer) +// Parameters: +// const struct FNetworkPhysicsRewindDataImportantInputProxy&ClientInputs (ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UNetworkPhysicsComponent::ServerReceiveImportantInputData(const struct FNetworkPhysicsRewindDataImportantInputProxy& ClientInputs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "ServerReceiveImportantInputData"); + + Params::NetworkPhysicsComponent_ServerReceiveImportantInputData Parms{}; + + Parms.ClientInputs = std::move(ClientInputs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.ServerReceiveInputData +// (RequiredAPI, Net, Native, Event, Protected, NetServer) +// Parameters: +// const struct FNetworkPhysicsRewindDataInputProxy&ClientInputs (ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UNetworkPhysicsComponent::ServerReceiveInputData(const struct FNetworkPhysicsRewindDataInputProxy& ClientInputs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "ServerReceiveInputData"); + + Params::NetworkPhysicsComponent_ServerReceiveInputData Parms{}; + + Parms.ClientInputs = std::move(ClientInputs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.NetworkPhysicsComponent.ServerReceiveInputsDatas +// (RequiredAPI, Net, Native, Event, Public, NetServer) +// Parameters: +// const struct FNetworkPhysicsRewindDataInputProxy&ClientInputs (ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UNetworkPhysicsComponent::ServerReceiveInputsDatas(const struct FNetworkPhysicsRewindDataInputProxy& ClientInputs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("NetworkPhysicsComponent", "ServerReceiveInputsDatas"); + + Params::NetworkPhysicsComponent_ServerReceiveInputsDatas Parms{}; + + Parms.ClientInputs = std::move(ClientInputs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimMontage.CreateSlotAnimationAsDynamicMontage_WithBlendSettings +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UAnimSequenceBase* Asset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName SlotNodeName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FMontageBlendSettings& BlendInSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMontageBlendSettings& BlendOutSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LoopCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InBlendOutTriggerTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* UAnimMontage::CreateSlotAnimationAsDynamicMontage_WithBlendSettings(class UAnimSequenceBase* Asset, class FName SlotNodeName, const struct FMontageBlendSettings& BlendInSettings, const struct FMontageBlendSettings& BlendOutSettings, float InPlayRate, int32 LoopCount, float InBlendOutTriggerTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimMontage", "CreateSlotAnimationAsDynamicMontage_WithBlendSettings"); + + Params::AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings Parms{}; + + Parms.Asset = Asset; + Parms.SlotNodeName = SlotNodeName; + Parms.BlendInSettings = std::move(BlendInSettings); + Parms.BlendOutSettings = std::move(BlendOutSettings); + Parms.InPlayRate = InPlayRate; + Parms.LoopCount = LoopCount; + Parms.InBlendOutTriggerTime = InBlendOutTriggerTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetBlendInArgs +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FAlphaBlendArgs ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FAlphaBlendArgs UAnimMontage::GetBlendInArgs() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetBlendInArgs"); + + Params::AnimMontage_GetBlendInArgs Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetBlendOutArgs +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FAlphaBlendArgs ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FAlphaBlendArgs UAnimMontage::GetBlendOutArgs() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetBlendOutArgs"); + + Params::AnimMontage_GetBlendOutArgs Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetDefaultBlendInTime +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimMontage::GetDefaultBlendInTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetDefaultBlendInTime"); + + Params::AnimMontage_GetDefaultBlendInTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetDefaultBlendOutTime +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimMontage::GetDefaultBlendOutTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetDefaultBlendOutTime"); + + Params::AnimMontage_GetDefaultBlendOutTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetFirstAnimReference +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimSequenceBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimSequenceBase* UAnimMontage::GetFirstAnimReference() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetFirstAnimReference"); + + Params::AnimMontage_GetFirstAnimReference Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetGroupName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UAnimMontage::GetGroupName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetGroupName"); + + Params::AnimMontage_GetGroupName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetNumSections +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UAnimMontage::GetNumSections() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetNumSections"); + + Params::AnimMontage_GetNumSections Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetSectionIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSectionName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UAnimMontage::GetSectionIndex(class FName InSectionName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetSectionIndex"); + + Params::AnimMontage_GetSectionIndex Parms{}; + + Parms.InSectionName = InSectionName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.GetSectionName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 SectionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UAnimMontage::GetSectionName(int32 SectionIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "GetSectionName"); + + Params::AnimMontage_GetSectionName Parms{}; + + Parms.SectionIndex = SectionIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.IsDynamicMontage +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimMontage::IsDynamicMontage() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "IsDynamicMontage"); + + Params::AnimMontage_IsDynamicMontage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.IsValidAdditiveSlot +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& SlotNodeName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimMontage::IsValidAdditiveSlot(const class FName& SlotNodeName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "IsValidAdditiveSlot"); + + Params::AnimMontage_IsValidAdditiveSlot Parms{}; + + Parms.SlotNodeName = SlotNodeName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimMontage.IsValidSectionName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSectionName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimMontage::IsValidSectionName(class FName InSectionName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimMontage", "IsValidSectionName"); + + Params::AnimMontage_IsValidSectionName Parms{}; + + Parms.InSectionName = InSectionName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyMirrorInspectionLibrary.GetMirrorDataTable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class UMirrorDataTable* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UMirrorDataTable* UAnimNotifyMirrorInspectionLibrary::GetMirrorDataTable(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyMirrorInspectionLibrary", "GetMirrorDataTable"); + + Params::AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyMirrorInspectionLibrary.IsTriggeredByMirroredAnimation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyMirrorInspectionLibrary::IsTriggeredByMirroredAnimation(const struct FAnimNotifyEventReference& EventReference) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyMirrorInspectionLibrary", "IsTriggeredByMirroredAnimation"); + + Params::AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation Parms{}; + + Parms.EventReference = std::move(EventReference); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UAnimInstance* AnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName StateName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyStateMachineInspectionLibrary::IsTriggeredByState(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyStateMachineInspectionLibrary", "IsTriggeredByState"); + + Params::AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState Parms{}; + + Parms.EventReference = std::move(EventReference); + Parms.AnimInstance = AnimInstance; + Parms.StateName = StateName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByStateInStateMachine +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UAnimInstance* AnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName StateMachineName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName StateName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyStateMachineInspectionLibrary::IsTriggeredByStateInStateMachine(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateMachineName, class FName StateName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyStateMachineInspectionLibrary", "IsTriggeredByStateInStateMachine"); + + Params::AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine Parms{}; + + Parms.EventReference = std::move(EventReference); + Parms.AnimInstance = AnimInstance; + Parms.StateMachineName = StateMachineName; + Parms.StateName = StateName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByStateMachine +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FAnimNotifyEventReference& EventReference (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UAnimInstance* AnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName StateMachineName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimNotifyStateMachineInspectionLibrary::IsTriggeredByStateMachine(const struct FAnimNotifyEventReference& EventReference, class UAnimInstance* AnimInstance, class FName StateMachineName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimNotifyStateMachineInspectionLibrary", "IsTriggeredByStateMachine"); + + Params::AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine Parms{}; + + Parms.EventReference = std::move(EventReference); + Parms.AnimInstance = AnimInstance; + Parms.StateMachineName = StateMachineName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimNotifyState_Trail.OverridePSTemplate +// (RequiredAPI, Event, Public, BlueprintEvent, Const) +// Parameters: +// class USkeletalMeshComponent* MeshComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAnimSequenceBase* Animation (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UParticleSystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UParticleSystem* UAnimNotifyState_Trail::OverridePSTemplate(class USkeletalMeshComponent* MeshComp, class UAnimSequenceBase* Animation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimNotifyState_Trail", "OverridePSTemplate"); + + Params::AnimNotifyState_Trail_OverridePSTemplate Parms{}; + + Parms.MeshComp = MeshComp; + Parms.Animation = Animation; + + UObject::ProcessEvent(Func, &Parms); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.OnPawnPrivateDestroyed +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class AActor* InActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerState::OnPawnPrivateDestroyed(class AActor* InActor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnPawnPrivateDestroyed"); + + Params::PlayerState_OnPawnPrivateDestroyed Parms{}; + + Parms.InActor = InActor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.OnRep_bIsInactive +// (RequiredAPI, Native, Public) + +void APlayerState::OnRep_bIsInactive() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnRep_bIsInactive"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.OnRep_PlayerId +// (RequiredAPI, Native, Public) + +void APlayerState::OnRep_PlayerId() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnRep_PlayerId"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.OnRep_PlayerName +// (RequiredAPI, Native, Public) + +void APlayerState::OnRep_PlayerName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnRep_PlayerName"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.OnRep_Score +// (RequiredAPI, Native, Public) + +void APlayerState::OnRep_Score() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnRep_Score"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.OnRep_UniqueId +// (RequiredAPI, Native, Public) + +void APlayerState::OnRep_UniqueId() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "OnRep_UniqueId"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerState.ReceiveCopyProperties +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class APlayerState* NewPlayerState (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerState::ReceiveCopyProperties(class APlayerState* NewPlayerState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "ReceiveCopyProperties"); + + Params::PlayerState_ReceiveCopyProperties Parms{}; + + Parms.NewPlayerState = NewPlayerState; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.PlayerState.ReceiveOverrideWith +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class APlayerState* OldPlayerState (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerState::ReceiveOverrideWith(class APlayerState* OldPlayerState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "ReceiveOverrideWith"); + + Params::PlayerState_ReceiveOverrideWith Parms{}; + + Parms.OldPlayerState = OldPlayerState; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.PlayerState.BP_GetUniqueId +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FUniqueNetIdRepl ReturnValue (Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FUniqueNetIdRepl APlayerState::BP_GetUniqueId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "BP_GetUniqueId"); + + Params::PlayerState_BP_GetUniqueId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetCompressedPing +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 APlayerState::GetCompressedPing() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetCompressedPing"); + + Params::PlayerState_GetCompressedPing Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetPawn +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* APlayerState::GetPawn() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetPawn"); + + Params::PlayerState_GetPawn Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetPingInMilliseconds +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerState::GetPingInMilliseconds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetPingInMilliseconds"); + + Params::PlayerState_GetPingInMilliseconds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* APlayerState::GetPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetPlayerController"); + + Params::PlayerState_GetPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetPlayerId +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 APlayerState::GetPlayerId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetPlayerId"); + + Params::PlayerState_GetPlayerId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetPlayerName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString APlayerState::GetPlayerName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetPlayerName"); + + Params::PlayerState_GetPlayerName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.GetScore +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerState::GetScore() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "GetScore"); + + Params::PlayerState_GetScore Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.IsABot +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerState::IsABot() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "IsABot"); + + Params::PlayerState_IsABot Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.IsOnlyASpectator +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerState::IsOnlyASpectator() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "IsOnlyASpectator"); + + Params::PlayerState_IsOnlyASpectator Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerState.IsSpectator +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerState::IsSpectator() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerState", "IsSpectator"); + + Params::PlayerState_IsSpectator Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimSingleNodeInstance.GetLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UAnimSingleNodeInstance::GetLength() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "GetLength"); + + Params::AnimSingleNodeInstance_GetLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimSingleNodeInstance.GetMirrorDataTable +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UMirrorDataTable* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UMirrorDataTable* UAnimSingleNodeInstance::GetMirrorDataTable() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "GetMirrorDataTable"); + + Params::AnimSingleNodeInstance_GetMirrorDataTable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimSingleNodeInstance.PlayAnim +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bIsLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InStartPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::PlayAnim(bool bIsLooping, float InPlayRate, float InStartPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "PlayAnim"); + + Params::AnimSingleNodeInstance_PlayAnim Parms{}; + + Parms.bIsLooping = bIsLooping; + Parms.InPlayRate = InPlayRate; + Parms.InStartPosition = InStartPosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetAnimationAsset +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimationAsset* NewAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetAnimationAsset(class UAnimationAsset* NewAsset, bool bIsLooping, float InPlayRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetAnimationAsset"); + + Params::AnimSingleNodeInstance_SetAnimationAsset Parms{}; + + Parms.NewAsset = NewAsset; + Parms.bIsLooping = bIsLooping; + Parms.InPlayRate = InPlayRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetBlendSpacePosition +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetBlendSpacePosition(const struct FVector& InPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetBlendSpacePosition"); + + Params::AnimSingleNodeInstance_SetBlendSpacePosition Parms{}; + + Parms.InPosition = std::move(InPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetLooping +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bIsLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetLooping(bool bIsLooping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetLooping"); + + Params::AnimSingleNodeInstance_SetLooping Parms{}; + + Parms.bIsLooping = bIsLooping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetMirrorDataTable +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UMirrorDataTable* MirrorDataTable (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetMirrorDataTable(const class UMirrorDataTable* MirrorDataTable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetMirrorDataTable"); + + Params::AnimSingleNodeInstance_SetMirrorDataTable Parms{}; + + Parms.MirrorDataTable = MirrorDataTable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bIsPlaying (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetPlaying(bool bIsPlaying) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetPlaying"); + + Params::AnimSingleNodeInstance_SetPlaying Parms{}; + + Parms.bIsPlaying = bIsPlaying; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetPlayRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetPlayRate(float InPlayRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetPlayRate"); + + Params::AnimSingleNodeInstance_SetPlayRate Parms{}; + + Parms.InPlayRate = InPlayRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFireNotifies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetPosition(float InPosition, bool bFireNotifies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetPosition"); + + Params::AnimSingleNodeInstance_SetPosition Parms{}; + + Parms.InPosition = InPosition; + Parms.bFireNotifies = bFireNotifies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetPositionWithPreviousTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPreviousTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFireNotifies (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetPositionWithPreviousTime(float InPosition, float InPreviousTime, bool bFireNotifies) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetPositionWithPreviousTime"); + + Params::AnimSingleNodeInstance_SetPositionWithPreviousTime Parms{}; + + Parms.InPosition = InPosition; + Parms.InPreviousTime = InPreviousTime; + Parms.bFireNotifies = bFireNotifies; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetPreviewCurveOverride +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& PoseName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRemoveIfZero (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetPreviewCurveOverride(const class FName& PoseName, float Value, bool bRemoveIfZero) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetPreviewCurveOverride"); + + Params::AnimSingleNodeInstance_SetPreviewCurveOverride Parms{}; + + Parms.PoseName = PoseName; + Parms.Value = Value; + Parms.bRemoveIfZero = bRemoveIfZero; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.SetReverse +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInReverse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAnimSingleNodeInstance::SetReverse(bool bInReverse) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "SetReverse"); + + Params::AnimSingleNodeInstance_SetReverse Parms{}; + + Parms.bInReverse = bInReverse; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.StopAnim +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UAnimSingleNodeInstance::StopAnim() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "StopAnim"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AnimSingleNodeInstance.GetAnimationAsset +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimationAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimationAsset* UAnimSingleNodeInstance::GetAnimationAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AnimSingleNodeInstance", "GetAnimationAsset"); + + Params::AnimSingleNodeInstance_GetAnimationAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationAttributeIdentifierExtensions.IsValid +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FAnimationAttributeIdentifier& Identifier (Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimationAttributeIdentifierExtensions::IsValid(struct FAnimationAttributeIdentifier& Identifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimationAttributeIdentifierExtensions", "IsValid"); + + Params::AnimationAttributeIdentifierExtensions_IsValid Parms{}; + + Parms.Identifier = std::move(Identifier); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Identifier = std::move(Parms.Identifier); + + return Parms.ReturnValue; +} + + +// Function Engine.Skeleton.AddCompatibleSkeleton +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class USkeleton* SourceSkeleton (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeleton::AddCompatibleSkeleton(const class USkeleton* SourceSkeleton) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Skeleton", "AddCompatibleSkeleton"); + + Params::Skeleton_AddCompatibleSkeleton Parms{}; + + Parms.SourceSkeleton = SourceSkeleton; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Skeleton.AddCompatibleSkeletonSoft +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSoftObjectPtr& SourceSkeleton (ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeleton::AddCompatibleSkeletonSoft(const TSoftObjectPtr& SourceSkeleton) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Skeleton", "AddCompatibleSkeletonSoft"); + + Params::Skeleton_AddCompatibleSkeletonSoft Parms{}; + + Parms.SourceSkeleton = SourceSkeleton; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Skeleton.GetBlendProfile +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName& InProfileName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UBlendProfile* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UBlendProfile* USkeleton::GetBlendProfile(const class FName& InProfileName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Skeleton", "GetBlendProfile"); + + Params::Skeleton_GetBlendProfile Parms{}; + + Parms.InProfileName = InProfileName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetAssetPlayerTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimAssetPlayerData&CachedAnimAssetPlayerData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetAssetPlayerTime(class UAnimInstance* InAnimInstance, const struct FCachedAnimAssetPlayerData& CachedAnimAssetPlayerData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetAssetPlayerTime"); + + Params::CachedAnimDataLibrary_StateMachine_GetAssetPlayerTime Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimAssetPlayerData = std::move(CachedAnimAssetPlayerData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetAssetPlayerTimeRatio +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimAssetPlayerData&CachedAnimAssetPlayerData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetAssetPlayerTimeRatio(class UAnimInstance* InAnimInstance, const struct FCachedAnimAssetPlayerData& CachedAnimAssetPlayerData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetAssetPlayerTimeRatio"); + + Params::CachedAnimDataLibrary_StateMachine_GetAssetPlayerTimeRatio Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimAssetPlayerData = std::move(CachedAnimAssetPlayerData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetCrossfadeDuration +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimTransitionData& CachedAnimTransitionData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetCrossfadeDuration(class UAnimInstance* InAnimInstance, const struct FCachedAnimTransitionData& CachedAnimTransitionData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetCrossfadeDuration"); + + Params::CachedAnimDataLibrary_StateMachine_GetCrossfadeDuration Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimTransitionData = std::move(CachedAnimTransitionData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetGlobalWeight +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateData& CachedAnimStateData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetGlobalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetGlobalWeight"); + + Params::CachedAnimDataLibrary_StateMachine_GetGlobalWeight Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateData = std::move(CachedAnimStateData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetLocalWeight +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateData& CachedAnimStateData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetLocalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetLocalWeight"); + + Params::CachedAnimDataLibrary_StateMachine_GetLocalWeight Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateData = std::move(CachedAnimStateData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimRelevancyData& CachedAnimRelevancyData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetRelevantAnimTime(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetRelevantAnimTime"); + + Params::CachedAnimDataLibrary_StateMachine_GetRelevantAnimTime Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimRelevancyData = std::move(CachedAnimRelevancyData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTimeRemaining +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimRelevancyData& CachedAnimRelevancyData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetRelevantAnimTimeRemaining(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetRelevantAnimTimeRemaining"); + + Params::CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemaining Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimRelevancyData = std::move(CachedAnimRelevancyData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTimeRemainingFraction +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimRelevancyData& CachedAnimRelevancyData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetRelevantAnimTimeRemainingFraction(class UAnimInstance* InAnimInstance, const struct FCachedAnimRelevancyData& CachedAnimRelevancyData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetRelevantAnimTimeRemainingFraction"); + + Params::CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemainingFraction Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimRelevancyData = std::move(CachedAnimRelevancyData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetTotalWeight +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateArray& CachedAnimStateArray (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCachedAnimDataLibrary::StateMachine_GetTotalWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_GetTotalWeight"); + + Params::CachedAnimDataLibrary_StateMachine_GetTotalWeight Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateArray = std::move(CachedAnimStateArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsFullWeight +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateArray& CachedAnimStateArray (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCachedAnimDataLibrary::StateMachine_IsFullWeight(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_IsFullWeight"); + + Params::CachedAnimDataLibrary_StateMachine_IsFullWeight Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateArray = std::move(CachedAnimStateArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsRelevant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateArray& CachedAnimStateArray (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCachedAnimDataLibrary::StateMachine_IsRelevant(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateArray& CachedAnimStateArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_IsRelevant"); + + Params::CachedAnimDataLibrary_StateMachine_IsRelevant Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateArray = std::move(CachedAnimStateArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsStateRelevant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// class UAnimInstance* InAnimInstance (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FCachedAnimStateData& CachedAnimStateData (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCachedAnimDataLibrary::StateMachine_IsStateRelevant(class UAnimInstance* InAnimInstance, const struct FCachedAnimStateData& CachedAnimStateData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CachedAnimDataLibrary", "StateMachine_IsStateRelevant"); + + Params::CachedAnimDataLibrary_StateMachine_IsStateRelevant Parms{}; + + Parms.InAnimInstance = InAnimInstance; + Parms.CachedAnimStateData = std::move(CachedAnimStateData); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationCurveIdentifierExtensions.GetName +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FAnimationCurveIdentifier& Identifier (Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UAnimationCurveIdentifierExtensions::GetName(struct FAnimationCurveIdentifier& Identifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimationCurveIdentifierExtensions", "GetName"); + + Params::AnimationCurveIdentifierExtensions_GetName Parms{}; + + Parms.Identifier = std::move(Identifier); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Identifier = std::move(Parms.Identifier); + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationCurveIdentifierExtensions.GetType +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FAnimationCurveIdentifier& Identifier (Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ERawCurveTrackTypes ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ERawCurveTrackTypes UAnimationCurveIdentifierExtensions::GetType(struct FAnimationCurveIdentifier& Identifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimationCurveIdentifierExtensions", "GetType"); + + Params::AnimationCurveIdentifierExtensions_GetType Parms{}; + + Parms.Identifier = std::move(Identifier); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Identifier = std::move(Parms.Identifier); + + return Parms.ReturnValue; +} + + +// Function Engine.AnimationCurveIdentifierExtensions.IsValid +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FAnimationCurveIdentifier& Identifier (Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UAnimationCurveIdentifierExtensions::IsValid(struct FAnimationCurveIdentifier& Identifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AnimationCurveIdentifierExtensions", "IsValid"); + + Params::AnimationCurveIdentifierExtensions_IsValid Parms{}; + + Parms.Identifier = std::move(Identifier); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Identifier = std::move(Parms.Identifier); + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionLoadPrimaryAssetClass.AsyncLoadPrimaryAssetClass +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPrimaryAssetId& PrimaryAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& LoadBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionLoadPrimaryAssetClass*ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionLoadPrimaryAssetClass* UAsyncActionLoadPrimaryAssetClass::AsyncLoadPrimaryAssetClass(class UObject* WorldContextObject, const struct FPrimaryAssetId& PrimaryAsset, const TArray& LoadBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionLoadPrimaryAssetClass", "AsyncLoadPrimaryAssetClass"); + + Params::AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PrimaryAsset = std::move(PrimaryAsset); + Parms.LoadBundles = std::move(LoadBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionLoadPrimaryAssetList.AsyncLoadPrimaryAssetList +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& PrimaryAssetList (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& LoadBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionLoadPrimaryAssetList* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionLoadPrimaryAssetList* UAsyncActionLoadPrimaryAssetList::AsyncLoadPrimaryAssetList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& LoadBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionLoadPrimaryAssetList", "AsyncLoadPrimaryAssetList"); + + Params::AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PrimaryAssetList = std::move(PrimaryAssetList); + Parms.LoadBundles = std::move(LoadBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncActionLoadPrimaryAssetClassList.AsyncLoadPrimaryAssetClassList +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& PrimaryAssetList (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& LoadBundles (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UAsyncActionLoadPrimaryAssetClassList*ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncActionLoadPrimaryAssetClassList* UAsyncActionLoadPrimaryAssetClassList::AsyncLoadPrimaryAssetClassList(class UObject* WorldContextObject, const TArray& PrimaryAssetList, const TArray& LoadBundles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AsyncActionLoadPrimaryAssetClassList", "AsyncLoadPrimaryAssetClassList"); + + Params::AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PrimaryAssetList = std::move(PrimaryAssetList); + Parms.LoadBundles = std::move(LoadBundles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkyAtmosphereComponent.GetAtmosphereTransmitanceOnGroundAtPlanetTop +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UDirectionalLightComponent* DirectionalLight (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor USkyAtmosphereComponent::GetAtmosphereTransmitanceOnGroundAtPlanetTop(class UDirectionalLightComponent* DirectionalLight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "GetAtmosphereTransmitanceOnGroundAtPlanetTop"); + + Params::SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop Parms{}; + + Parms.DirectionalLight = DirectionalLight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkyAtmosphereComponent.GetAtmosphericLightToMatchIlluminanceOnGround +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& LightDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float IlluminanceOnGround (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkyAtmosphereComponent::GetAtmosphericLightToMatchIlluminanceOnGround(const struct FVector& LightDirection, float IlluminanceOnGround) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "GetAtmosphericLightToMatchIlluminanceOnGround"); + + Params::SkyAtmosphereComponent_GetAtmosphericLightToMatchIlluminanceOnGround Parms{}; + + Parms.LightDirection = std::move(LightDirection); + Parms.IlluminanceOnGround = IlluminanceOnGround; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkyAtmosphereComponent.GetOverridenAtmosphereLightDirection +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// int32 AtmosphereLightIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USkyAtmosphereComponent::GetOverridenAtmosphereLightDirection(int32 AtmosphereLightIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "GetOverridenAtmosphereLightDirection"); + + Params::SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection Parms{}; + + Parms.AtmosphereLightIndex = AtmosphereLightIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkyAtmosphereComponent.IsAtmosphereLightDirectionOverriden +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 AtmosphereLightIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkyAtmosphereComponent::IsAtmosphereLightDirectionOverriden(int32 AtmosphereLightIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "IsAtmosphereLightDirectionOverriden"); + + Params::SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden Parms{}; + + Parms.AtmosphereLightIndex = AtmosphereLightIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkyAtmosphereComponent.OverrideAtmosphereLightDirection +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 AtmosphereLightIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LightDirection (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::OverrideAtmosphereLightDirection(int32 AtmosphereLightIndex, const struct FVector& LightDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "OverrideAtmosphereLightDirection"); + + Params::SkyAtmosphereComponent_OverrideAtmosphereLightDirection Parms{}; + + Parms.AtmosphereLightIndex = AtmosphereLightIndex; + Parms.LightDirection = std::move(LightDirection); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.ResetAtmosphereLightDirectionOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 AtmosphereLightIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::ResetAtmosphereLightDirectionOverride(int32 AtmosphereLightIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "ResetAtmosphereLightDirectionOverride"); + + Params::SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride Parms{}; + + Parms.AtmosphereLightIndex = AtmosphereLightIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetAerialPespectiveViewDistanceScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetAerialPespectiveViewDistanceScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetAerialPespectiveViewDistanceScale"); + + Params::SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetAtmosphereHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetAtmosphereHeight(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetAtmosphereHeight"); + + Params::SkyAtmosphereComponent_SetAtmosphereHeight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetBottomRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetBottomRadius(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetBottomRadius"); + + Params::SkyAtmosphereComponent_SetBottomRadius Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetGroundAlbedo +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& NewValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetGroundAlbedo(const struct FColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetGroundAlbedo"); + + Params::SkyAtmosphereComponent_SetGroundAlbedo Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetHeightFogContribution +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetHeightFogContribution(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetHeightFogContribution"); + + Params::SkyAtmosphereComponent_SetHeightFogContribution Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetHoldout +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewHoldout (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetHoldout(bool bNewHoldout) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetHoldout"); + + Params::SkyAtmosphereComponent_SetHoldout Parms{}; + + Parms.bNewHoldout = bNewHoldout; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieAbsorption +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieAbsorption(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieAbsorption"); + + Params::SkyAtmosphereComponent_SetMieAbsorption Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieAbsorptionScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieAbsorptionScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieAbsorptionScale"); + + Params::SkyAtmosphereComponent_SetMieAbsorptionScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieAnisotropy +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieAnisotropy(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieAnisotropy"); + + Params::SkyAtmosphereComponent_SetMieAnisotropy Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieExponentialDistribution +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieExponentialDistribution(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieExponentialDistribution"); + + Params::SkyAtmosphereComponent_SetMieExponentialDistribution Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieScattering +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieScattering(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieScattering"); + + Params::SkyAtmosphereComponent_SetMieScattering Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMieScatteringScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMieScatteringScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMieScatteringScale"); + + Params::SkyAtmosphereComponent_SetMieScatteringScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetMultiScatteringFactor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetMultiScatteringFactor(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetMultiScatteringFactor"); + + Params::SkyAtmosphereComponent_SetMultiScatteringFactor Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetOtherAbsorption +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetOtherAbsorption(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetOtherAbsorption"); + + Params::SkyAtmosphereComponent_SetOtherAbsorption Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetOtherAbsorptionScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetOtherAbsorptionScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetOtherAbsorptionScale"); + + Params::SkyAtmosphereComponent_SetOtherAbsorptionScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetRayleighExponentialDistribution +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetRayleighExponentialDistribution(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetRayleighExponentialDistribution"); + + Params::SkyAtmosphereComponent_SetRayleighExponentialDistribution Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetRayleighScattering +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetRayleighScattering(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetRayleighScattering"); + + Params::SkyAtmosphereComponent_SetRayleighScattering Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetRayleighScatteringScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetRayleighScatteringScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetRayleighScatteringScale"); + + Params::SkyAtmosphereComponent_SetRayleighScatteringScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetRenderInMainPass +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetRenderInMainPass(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetRenderInMainPass"); + + Params::SkyAtmosphereComponent_SetRenderInMainPass Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkyAtmosphereComponent.SetSkyLuminanceFactor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkyAtmosphereComponent::SetSkyLuminanceFactor(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkyAtmosphereComponent", "SetSkyLuminanceFactor"); + + Params::SkyAtmosphereComponent_SetSkyLuminanceFactor Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.DisableGroundScattering +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewGroundScattering (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::DisableGroundScattering(bool NewGroundScattering) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "DisableGroundScattering"); + + Params::AtmosphericFogComponent_DisableGroundScattering Parms{}; + + Parms.NewGroundScattering = NewGroundScattering; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.DisableSunDisk +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewSunDisk (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::DisableSunDisk(bool NewSunDisk) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "DisableSunDisk"); + + Params::AtmosphericFogComponent_DisableSunDisk Parms{}; + + Parms.NewSunDisk = NewSunDisk; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetAltitudeScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewAltitudeScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetAltitudeScale(float NewAltitudeScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetAltitudeScale"); + + Params::AtmosphericFogComponent_SetAltitudeScale Parms{}; + + Parms.NewAltitudeScale = NewAltitudeScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDefaultBrightness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewBrightness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDefaultBrightness(float NewBrightness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDefaultBrightness"); + + Params::AtmosphericFogComponent_SetDefaultBrightness Parms{}; + + Parms.NewBrightness = NewBrightness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDefaultLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewLightColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDefaultLightColor(const struct FLinearColor& NewLightColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDefaultLightColor"); + + Params::AtmosphericFogComponent_SetDefaultLightColor Parms{}; + + Parms.NewLightColor = std::move(NewLightColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDensityMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewDensityMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDensityMultiplier(float NewDensityMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDensityMultiplier"); + + Params::AtmosphericFogComponent_SetDensityMultiplier Parms{}; + + Parms.NewDensityMultiplier = NewDensityMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDensityOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewDensityOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDensityOffset(float NewDensityOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDensityOffset"); + + Params::AtmosphericFogComponent_SetDensityOffset Parms{}; + + Parms.NewDensityOffset = NewDensityOffset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDistanceOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewDistanceOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDistanceOffset(float NewDistanceOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDistanceOffset"); + + Params::AtmosphericFogComponent_SetDistanceOffset Parms{}; + + Parms.NewDistanceOffset = NewDistanceOffset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetDistanceScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewDistanceScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetDistanceScale(float NewDistanceScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetDistanceScale"); + + Params::AtmosphericFogComponent_SetDistanceScale Parms{}; + + Parms.NewDistanceScale = NewDistanceScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetFogMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewFogMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetFogMultiplier(float NewFogMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetFogMultiplier"); + + Params::AtmosphericFogComponent_SetFogMultiplier Parms{}; + + Parms.NewFogMultiplier = NewFogMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetPrecomputeParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float DensityHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaxScatteringOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 InscatterAltitudeSampleNum (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetPrecomputeParams(float DensityHeight, int32 MaxScatteringOrder, int32 InscatterAltitudeSampleNum) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetPrecomputeParams"); + + Params::AtmosphericFogComponent_SetPrecomputeParams Parms{}; + + Parms.DensityHeight = DensityHeight; + Parms.MaxScatteringOrder = MaxScatteringOrder; + Parms.InscatterAltitudeSampleNum = InscatterAltitudeSampleNum; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetStartDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewStartDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetStartDistance(float NewStartDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetStartDistance"); + + Params::AtmosphericFogComponent_SetStartDistance Parms{}; + + Parms.NewStartDistance = NewStartDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AtmosphericFogComponent.SetSunMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewSunMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAtmosphericFogComponent::SetSunMultiplier(float NewSunMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AtmosphericFogComponent", "SetSunMultiplier"); + + Params::AtmosphericFogComponent_SetSunMultiplier Parms{}; + + Parms.NewSunMultiplier = NewSunMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.OnRep_bEnabled +// (Final, RequiredAPI, Native, Private) + +void AAudioVolume::OnRep_bEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "OnRep_bEnabled"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAudioVolume::SetEnabled(bool bNewEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetEnabled"); + + Params::AudioVolume_SetEnabled Parms{}; + + Parms.bNewEnabled = bNewEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetInteriorSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInteriorSettings& NewInteriorSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void AAudioVolume::SetInteriorSettings(const struct FInteriorSettings& NewInteriorSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetInteriorSettings"); + + Params::AudioVolume_SetInteriorSettings Parms{}; + + Parms.NewInteriorSettings = std::move(NewInteriorSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewPriority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AAudioVolume::SetPriority(float NewPriority) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetPriority"); + + Params::AudioVolume_SetPriority Parms{}; + + Parms.NewPriority = NewPriority; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetReverbSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FReverbSettings& NewReverbSettings (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void AAudioVolume::SetReverbSettings(const struct FReverbSettings& NewReverbSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetReverbSettings"); + + Params::AudioVolume_SetReverbSettings Parms{}; + + Parms.NewReverbSettings = std::move(NewReverbSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetSubmixOverrideSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&NewSubmixOverrideSettings (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void AAudioVolume::SetSubmixOverrideSettings(const TArray& NewSubmixOverrideSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetSubmixOverrideSettings"); + + Params::AudioVolume_SetSubmixOverrideSettings Parms{}; + + Parms.NewSubmixOverrideSettings = std::move(NewSubmixOverrideSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AudioVolume.SetSubmixSendSettings +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&NewSubmixSendSettings (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void AAudioVolume::SetSubmixSendSettings(const TArray& NewSubmixSendSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AudioVolume", "SetSubmixSendSettings"); + + Params::AudioVolume_SetSubmixSendSettings Parms{}; + + Parms.NewSubmixSendSettings = std::move(NewSubmixSendSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ActorSoundParameterInterface.GetActorSoundParams +// (RequiredAPI, Native, Event, Public, HasOutParams, BlueprintEvent, Const) +// Parameters: +// TArray* Params_0 (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void IActorSoundParameterInterface::GetActorSoundParams(TArray* Params_0) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("ActorSoundParameterInterface", "GetActorSoundParams"); + + Params::ActorSoundParameterInterface_GetActorSoundParams Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Params_0 != nullptr) + *Params_0 = std::move(Parms.Params_0); +} + + +// Function Engine.AudioParameterConversionStatics.BooleanArrayToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Bools (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::BooleanArrayToAudioParameter(class FName Name_0, const TArray& Bools) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "BooleanArrayToAudioParameter"); + + Params::AudioParameterConversionStatics_BooleanArrayToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Bools = std::move(Bools); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.BooleanToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool Bool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::BooleanToAudioParameter(class FName Name_0, bool Bool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "BooleanToAudioParameter"); + + Params::AudioParameterConversionStatics_BooleanToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Bool = Bool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.FloatArrayToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Floats (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::FloatArrayToAudioParameter(class FName Name_0, const TArray& Floats) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "FloatArrayToAudioParameter"); + + Params::AudioParameterConversionStatics_FloatArrayToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Floats = std::move(Floats); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.FloatToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float float_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::FloatToAudioParameter(class FName Name_0, float float_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "FloatToAudioParameter"); + + Params::AudioParameterConversionStatics_FloatToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.float_0 = float_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.IntegerArrayToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Integers (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::IntegerArrayToAudioParameter(class FName Name_0, const TArray& Integers) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "IntegerArrayToAudioParameter"); + + Params::AudioParameterConversionStatics_IntegerArrayToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Integers = std::move(Integers); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.IntegerToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Integer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::IntegerToAudioParameter(class FName Name_0, int32 Integer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "IntegerToAudioParameter"); + + Params::AudioParameterConversionStatics_IntegerToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Integer = Integer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.ObjectArrayToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Objects (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::ObjectArrayToAudioParameter(class FName Name_0, const TArray& Objects) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "ObjectArrayToAudioParameter"); + + Params::AudioParameterConversionStatics_ObjectArrayToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Objects = std::move(Objects); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.ObjectToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::ObjectToAudioParameter(class FName Name_0, class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "ObjectToAudioParameter"); + + Params::AudioParameterConversionStatics_ObjectToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.StringArrayToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Strings (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::StringArrayToAudioParameter(class FName Name_0, const TArray& Strings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "StringArrayToAudioParameter"); + + Params::AudioParameterConversionStatics_StringArrayToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.Strings = std::move(Strings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AudioParameterConversionStatics.StringToAudioParameter +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName Name_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& String (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FAudioParameter ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FAudioParameter UAudioParameterConversionStatics::StringToAudioParameter(class FName Name_0, const class FString& String) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("AudioParameterConversionStatics", "StringToAudioParameter"); + + Params::AudioParameterConversionStatics_StringToAudioParameter Parms{}; + + Parms.Name_0 = Name_0; + Parms.String = std::move(String); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.EqualEqual_InstancedStruct +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInstancedStruct& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FInstancedStruct& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintInstancedStructLibrary::EqualEqual_InstancedStruct(const struct FInstancedStruct& A, const struct FInstancedStruct& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "EqualEqual_InstancedStruct"); + + Params::BlueprintInstancedStructLibrary_EqualEqual_InstancedStruct Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.GetInstancedStructValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// EStructUtilsResult* ExecResult (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FInstancedStruct& InstancedStruct (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32* Value (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintInstancedStructLibrary::GetInstancedStructValue(EStructUtilsResult* ExecResult, const struct FInstancedStruct& InstancedStruct, int32* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "GetInstancedStructValue"); + + Params::BlueprintInstancedStructLibrary_GetInstancedStructValue Parms{}; + + Parms.InstancedStruct = std::move(InstancedStruct); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ExecResult != nullptr) + *ExecResult = Parms.ExecResult; + + if (Value != nullptr) + *Value = Parms.Value; +} + + +// Function Engine.BlueprintInstancedStructLibrary.IsInstancedStructValid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInstancedStruct& InstancedStruct (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// EStructUtilsResult ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EStructUtilsResult UBlueprintInstancedStructLibrary::IsInstancedStructValid(const struct FInstancedStruct& InstancedStruct) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "IsInstancedStructValid"); + + Params::BlueprintInstancedStructLibrary_IsInstancedStructValid Parms{}; + + Parms.InstancedStruct = std::move(InstancedStruct); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.IsValid_InstancedStruct +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInstancedStruct& InstancedStruct (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintInstancedStructLibrary::IsValid_InstancedStruct(const struct FInstancedStruct& InstancedStruct) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "IsValid_InstancedStruct"); + + Params::BlueprintInstancedStructLibrary_IsValid_InstancedStruct Parms{}; + + Parms.InstancedStruct = std::move(InstancedStruct); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.MakeInstancedStruct +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const int32& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FInstancedStruct ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FInstancedStruct UBlueprintInstancedStructLibrary::MakeInstancedStruct(const int32& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "MakeInstancedStruct"); + + Params::BlueprintInstancedStructLibrary_MakeInstancedStruct Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.NotEqual_InstancedStruct +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInstancedStruct& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FInstancedStruct& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintInstancedStructLibrary::NotEqual_InstancedStruct(const struct FInstancedStruct& A, const struct FInstancedStruct& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "NotEqual_InstancedStruct"); + + Params::BlueprintInstancedStructLibrary_NotEqual_InstancedStruct Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintInstancedStructLibrary.Reset +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FInstancedStruct& InstancedStruct (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const class UScriptStruct* StructType (ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintInstancedStructLibrary::Reset(struct FInstancedStruct& InstancedStruct, const class UScriptStruct* StructType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "Reset"); + + Params::BlueprintInstancedStructLibrary_Reset Parms{}; + + Parms.InstancedStruct = std::move(InstancedStruct); + Parms.StructType = StructType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InstancedStruct = std::move(Parms.InstancedStruct); +} + + +// Function Engine.BlueprintInstancedStructLibrary.SetInstancedStructValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FInstancedStruct& InstancedStruct (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintInstancedStructLibrary::SetInstancedStructValue(struct FInstancedStruct& InstancedStruct, const int32& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintInstancedStructLibrary", "SetInstancedStructValue"); + + Params::BlueprintInstancedStructLibrary_SetInstancedStructValue Parms{}; + + Parms.InstancedStruct = std::move(InstancedStruct); + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InstancedStruct = std::move(Parms.InstancedStruct); +} + + +// Function Engine.BlueprintSetLibrary.Set_Add +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& NewItem (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_Add(const TSet& TargetSet, const int32& NewItem) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Add"); + + Params::BlueprintSetLibrary_Set_Add Parms{}; + + Parms.TargetSet = std::move(TargetSet); + Parms.NewItem = NewItem; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintSetLibrary.Set_AddItems +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& NewItems (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_AddItems(const TSet& TargetSet, const TArray& NewItems) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_AddItems"); + + Params::BlueprintSetLibrary_Set_AddItems Parms{}; + + Parms.TargetSet = std::move(TargetSet); + Parms.NewItems = std::move(NewItems); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintSetLibrary.Set_Clear +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_Clear(const TSet& TargetSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Clear"); + + Params::BlueprintSetLibrary_Set_Clear Parms{}; + + Parms.TargetSet = std::move(TargetSet); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintSetLibrary.Set_Contains +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& ItemToFind (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintSetLibrary::Set_Contains(const TSet& TargetSet, const int32& ItemToFind) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Contains"); + + Params::BlueprintSetLibrary_Set_Contains Parms{}; + + Parms.TargetSet = std::move(TargetSet); + Parms.ItemToFind = ItemToFind; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintSetLibrary.Set_Difference +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TSet& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TSet* Result (Parm, OutParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_Difference(const TSet& A, const TSet& B, TSet* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Difference"); + + Params::BlueprintSetLibrary_Set_Difference Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); +} + + +// Function Engine.BlueprintSetLibrary.Set_Intersection +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TSet& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TSet* Result (Parm, OutParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_Intersection(const TSet& A, const TSet& B, TSet* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Intersection"); + + Params::BlueprintSetLibrary_Set_Intersection Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); +} + + +// Function Engine.BlueprintSetLibrary.Set_IsEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintSetLibrary::Set_IsEmpty(const TSet& TargetSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_IsEmpty"); + + Params::BlueprintSetLibrary_Set_IsEmpty Parms{}; + + Parms.TargetSet = std::move(TargetSet); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintSetLibrary.Set_IsNotEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintSetLibrary::Set_IsNotEmpty(const TSet& TargetSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_IsNotEmpty"); + + Params::BlueprintSetLibrary_Set_IsNotEmpty Parms{}; + + Parms.TargetSet = std::move(TargetSet); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintSetLibrary.Set_Length +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UBlueprintSetLibrary::Set_Length(const TSet& TargetSet) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Length"); + + Params::BlueprintSetLibrary_Set_Length Parms{}; + + Parms.TargetSet = std::move(TargetSet); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintSetLibrary.Set_Remove +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Item (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintSetLibrary::Set_Remove(const TSet& TargetSet, const int32& Item) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Remove"); + + Params::BlueprintSetLibrary_Set_Remove Parms{}; + + Parms.TargetSet = std::move(TargetSet); + Parms.Item = Item; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintSetLibrary.Set_RemoveItems +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& TargetSet (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& Items (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_RemoveItems(const TSet& TargetSet, const TArray& Items) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_RemoveItems"); + + Params::BlueprintSetLibrary_Set_RemoveItems Parms{}; + + Parms.TargetSet = std::move(TargetSet); + Parms.Items = std::move(Items); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintSetLibrary.Set_ToArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* Result (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_ToArray(const TSet& A, TArray* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_ToArray"); + + Params::BlueprintSetLibrary_Set_ToArray Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); +} + + +// Function Engine.BlueprintSetLibrary.Set_Union +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet& A (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const TSet& B (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// TSet* Result (Parm, OutParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::Set_Union(const TSet& A, const TSet& B, TSet* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "Set_Union"); + + Params::BlueprintSetLibrary_Set_Union Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); +} + + +// Function Engine.BlueprintSetLibrary.SetSetPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSet& Value (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UBlueprintSetLibrary::SetSetPropertyByName(class UObject* Object, class FName PropertyName, const TSet& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintSetLibrary", "SetSetPropertyByName"); + + Params::BlueprintSetLibrary_SetSetPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraLensEffectInterface.GetParticleComponents +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray ICameraLensEffectInterface::GetParticleComponents() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("CameraLensEffectInterface", "GetParticleComponents"); + + Params::CameraLensEffectInterface_GetParticleComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraLensEffectInterface.GetPrimaryParticleComponent +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UFXSystemComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UFXSystemComponent* ICameraLensEffectInterface::GetPrimaryParticleComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("CameraLensEffectInterface", "GetPrimaryParticleComponent"); + + Params::CameraLensEffectInterface_GetPrimaryParticleComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraModifier.BlueprintModifyCamera +// (RequiredAPI, BlueprintCosmetic, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ViewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& ViewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float FOV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* NewViewLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* NewViewRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float* NewFOV (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraModifier::BlueprintModifyCamera(float DeltaTime, const struct FVector& ViewLocation, const struct FRotator& ViewRotation, float FOV, struct FVector* NewViewLocation, struct FRotator* NewViewRotation, float* NewFOV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "BlueprintModifyCamera"); + + Params::CameraModifier_BlueprintModifyCamera Parms{}; + + Parms.DeltaTime = DeltaTime; + Parms.ViewLocation = std::move(ViewLocation); + Parms.ViewRotation = std::move(ViewRotation); + Parms.FOV = FOV; + + UObject::ProcessEvent(Func, &Parms); + + if (NewViewLocation != nullptr) + *NewViewLocation = std::move(Parms.NewViewLocation); + + if (NewViewRotation != nullptr) + *NewViewRotation = std::move(Parms.NewViewRotation); + + if (NewFOV != nullptr) + *NewFOV = Parms.NewFOV; +} + + +// Function Engine.CameraModifier.BlueprintModifyPostProcess +// (RequiredAPI, BlueprintCosmetic, Event, Public, HasOutParams, BlueprintEvent) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* PostProcessBlendWeight (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPostProcessSettings* PostProcessSettings (Parm, OutParm, NativeAccessSpecifierPublic) + +void UCameraModifier::BlueprintModifyPostProcess(float DeltaTime, float* PostProcessBlendWeight, struct FPostProcessSettings* PostProcessSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "BlueprintModifyPostProcess"); + + Params::CameraModifier_BlueprintModifyPostProcess Parms{}; + + Parms.DeltaTime = DeltaTime; + + UObject::ProcessEvent(Func, &Parms); + + if (PostProcessBlendWeight != nullptr) + *PostProcessBlendWeight = Parms.PostProcessBlendWeight; + + if (PostProcessSettings != nullptr) + *PostProcessSettings = std::move(Parms.PostProcessSettings); +} + + +// Function Engine.CameraModifier.DisableModifier +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bImmediate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraModifier::DisableModifier(bool bImmediate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "DisableModifier"); + + Params::CameraModifier_DisableModifier Parms{}; + + Parms.bImmediate = bImmediate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraModifier.EnableModifier +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UCameraModifier::EnableModifier() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "EnableModifier"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraModifier.OnCameraOwnerDestroyed +// (Final, RequiredAPI, Native, Protected) +// Parameters: +// class AActor* InOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraModifier::OnCameraOwnerDestroyed(class AActor* InOwner) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "OnCameraOwnerDestroyed"); + + Params::CameraModifier_OnCameraOwnerDestroyed Parms{}; + + Parms.InOwner = InOwner; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraModifier.GetViewTarget +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UCameraModifier::GetViewTarget() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "GetViewTarget"); + + Params::CameraModifier_GetViewTarget Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraModifier.IsDisabled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCameraModifier::IsDisabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "IsDisabled"); + + Params::CameraModifier_IsDisabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraModifier.IsPendingDisable +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCameraModifier::IsPendingDisable() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraModifier", "IsPendingDisable"); + + Params::CameraModifier_IsPendingDisable Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraShakeBase.SetRootShakePattern +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCameraShakePattern* InPattern (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraShakeBase::SetRootShakePattern(class UCameraShakePattern* InPattern) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeBase", "SetRootShakePattern"); + + Params::CameraShakeBase_SetRootShakePattern Parms{}; + + Parms.InPattern = InPattern; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraShakeBase.GetRootShakePattern +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UCameraShakePattern* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCameraShakePattern* UCameraShakeBase::GetRootShakePattern() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeBase", "GetRootShakePattern"); + + Params::CameraShakeBase_GetRootShakePattern Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CameraShakeSourceComponent.Start +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UCameraShakeSourceComponent::Start() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeSourceComponent", "Start"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraShakeSourceComponent.StartCameraShake +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// TSubclassOf InCameraShake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECameraShakePlaySpace PlaySpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& UserPlaySpaceRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UCameraShakeSourceComponent::StartCameraShake(TSubclassOf InCameraShake, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeSourceComponent", "StartCameraShake"); + + Params::CameraShakeSourceComponent_StartCameraShake Parms{}; + + Parms.InCameraShake = InCameraShake; + Parms.Scale = Scale; + Parms.PlaySpace = PlaySpace; + Parms.UserPlaySpaceRot = std::move(UserPlaySpaceRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraShakeSourceComponent.StopAllCameraShakes +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraShakeSourceComponent::StopAllCameraShakes(bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeSourceComponent", "StopAllCameraShakes"); + + Params::CameraShakeSourceComponent_StopAllCameraShakes Parms{}; + + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraShakeSourceComponent.StopAllCameraShakesOfType +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf InCameraShake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCameraShakeSourceComponent::StopAllCameraShakesOfType(TSubclassOf InCameraShake, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeSourceComponent", "StopAllCameraShakesOfType"); + + Params::CameraShakeSourceComponent_StopAllCameraShakesOfType Parms{}; + + Parms.InCameraShake = InCameraShake; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CameraShakeSourceComponent.GetAttenuationFactor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& Location (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCameraShakeSourceComponent::GetAttenuationFactor(const struct FVector& Location) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CameraShakeSourceComponent", "GetAttenuationFactor"); + + Params::CameraShakeSourceComponent_GetAttenuationFactor Parms{}; + + Parms.Location = std::move(Location); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CanvasRenderTarget2D.CreateCanvasRenderTarget2D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfCanvasRenderTarget2DClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCanvasRenderTarget2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UCanvasRenderTarget2D* UCanvasRenderTarget2D::CreateCanvasRenderTarget2D(class UObject* WorldContextObject, TSubclassOf CanvasRenderTarget2DClass, int32 Width, int32 Height) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("CanvasRenderTarget2D", "CreateCanvasRenderTarget2D"); + + Params::CanvasRenderTarget2D_CreateCanvasRenderTarget2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.CanvasRenderTarget2DClass = CanvasRenderTarget2DClass; + Parms.Width = Width; + Parms.Height = Height; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CanvasRenderTarget2D.GetSize +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// int32* Width (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Height (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvasRenderTarget2D::GetSize(int32* Width, int32* Height) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CanvasRenderTarget2D", "GetSize"); + + Params::CanvasRenderTarget2D_GetSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Width != nullptr) + *Width = Parms.Width; + + if (Height != nullptr) + *Height = Parms.Height; +} + + +// Function Engine.CanvasRenderTarget2D.ReceiveUpdate +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class UCanvas* Canvas (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvasRenderTarget2D::ReceiveUpdate(class UCanvas* Canvas, int32 Width, int32 Height) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CanvasRenderTarget2D", "ReceiveUpdate"); + + Params::CanvasRenderTarget2D_ReceiveUpdate Parms{}; + + Parms.Canvas = Canvas; + Parms.Width = Width; + Parms.Height = Height; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.CanvasRenderTarget2D.SetSampleCount +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ETextureRenderTargetSampleCount InSampleCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvasRenderTarget2D::SetSampleCount(ETextureRenderTargetSampleCount InSampleCount) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CanvasRenderTarget2D", "SetSampleCount"); + + Params::CanvasRenderTarget2D_SetSampleCount Parms{}; + + Parms.InSampleCount = InSampleCount; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CanvasRenderTarget2D.UpdateResource +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UCanvasRenderTarget2D::UpdateResource() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CanvasRenderTarget2D", "UpdateResource"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CanvasRenderTarget2D.GetSampleCount +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETextureRenderTargetSampleCount ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ETextureRenderTargetSampleCount UCanvasRenderTarget2D::GetSampleCount() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CanvasRenderTarget2D", "GetSampleCount"); + + Params::CanvasRenderTarget2D_GetSampleCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetMovementBaseActor +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class APawn* Pawn (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* APawn::GetMovementBaseActor(const class APawn* Pawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("Pawn", "GetMovementBaseActor"); + + Params::Pawn_GetMovementBaseActor Parms{}; + + Parms.Pawn = Pawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.AddControllerPitchInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::AddControllerPitchInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "AddControllerPitchInput"); + + Params::Pawn_AddControllerPitchInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.AddControllerRollInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::AddControllerRollInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "AddControllerRollInput"); + + Params::Pawn_AddControllerRollInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.AddControllerYawInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::AddControllerYawInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "AddControllerYawInput"); + + Params::Pawn_AddControllerYawInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.AddMovementInput +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& WorldDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScaleValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForce (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::AddMovementInput(const struct FVector& WorldDirection, float ScaleValue, bool bForce) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "AddMovementInput"); + + Params::Pawn_AddMovementInput Parms{}; + + Parms.WorldDirection = std::move(WorldDirection); + Parms.ScaleValue = ScaleValue; + Parms.bForce = bForce; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.ConsumeMovementInputVector +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APawn::ConsumeMovementInputVector() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "ConsumeMovementInputVector"); + + Params::Pawn_ConsumeMovementInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.DetachFromControllerPendingDestroy +// (RequiredAPI, Native, Public, BlueprintCallable) + +void APawn::DetachFromControllerPendingDestroy() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "DetachFromControllerPendingDestroy"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.OnRep_Controller +// (RequiredAPI, Native, Public) + +void APawn::OnRep_Controller() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "OnRep_Controller"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.OnRep_PlayerState +// (RequiredAPI, Native, Public) + +void APawn::OnRep_PlayerState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "OnRep_PlayerState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.PawnMakeNoise +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// float Loudness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NoiseLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseNoiseMakerLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* NoiseMaker (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::PawnMakeNoise(float Loudness, const struct FVector& NoiseLocation, bool bUseNoiseMakerLocation, class AActor* NoiseMaker) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "PawnMakeNoise"); + + Params::Pawn_PawnMakeNoise Parms{}; + + Parms.Loudness = Loudness; + Parms.NoiseLocation = std::move(NoiseLocation); + Parms.bUseNoiseMakerLocation = bUseNoiseMakerLocation; + Parms.NoiseMaker = NoiseMaker; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.ReceiveControllerChanged +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AController* OldController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* NewController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::ReceiveControllerChanged(class AController* OldController, class AController* NewController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "ReceiveControllerChanged"); + + Params::Pawn_ReceiveControllerChanged Parms{}; + + Parms.OldController = OldController; + Parms.NewController = NewController; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Pawn.ReceivePossessed +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, BlueprintEvent) +// Parameters: +// class AController* NewController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::ReceivePossessed(class AController* NewController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "ReceivePossessed"); + + Params::Pawn_ReceivePossessed Parms{}; + + Parms.NewController = NewController; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Pawn.ReceiveRestarted +// (RequiredAPI, Event, Public, BlueprintEvent) + +void APawn::ReceiveRestarted() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "ReceiveRestarted"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.Pawn.ReceiveUnpossessed +// (RequiredAPI, BlueprintAuthorityOnly, Event, Public, BlueprintEvent) +// Parameters: +// class AController* OldController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::ReceiveUnpossessed(class AController* OldController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "ReceiveUnpossessed"); + + Params::Pawn_ReceiveUnpossessed Parms{}; + + Parms.OldController = OldController; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Pawn.SetCanAffectNavigationGeneration +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bForceUpdate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APawn::SetCanAffectNavigationGeneration(bool bNewValue, bool bForceUpdate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "SetCanAffectNavigationGeneration"); + + Params::Pawn_SetCanAffectNavigationGeneration Parms{}; + + Parms.bNewValue = bNewValue; + Parms.bForceUpdate = bForceUpdate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.SpawnDefaultController +// (RequiredAPI, Native, Public, BlueprintCallable) + +void APawn::SpawnDefaultController() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "SpawnDefaultController"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Pawn.GetBaseAimRotation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator APawn::GetBaseAimRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetBaseAimRotation"); + + Params::Pawn_GetBaseAimRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AController* APawn::GetController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetController"); + + Params::Pawn_GetController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetControlRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator APawn::GetControlRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetControlRotation"); + + Params::Pawn_GetControlRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetLastMovementInputVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APawn::GetLastMovementInputVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetLastMovementInputVector"); + + Params::Pawn_GetLastMovementInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetLocalViewingPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* APawn::GetLocalViewingPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetLocalViewingPlayerController"); + + Params::Pawn_GetLocalViewingPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetMovementComponent +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPawnMovementComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPawnMovementComponent* APawn::GetMovementComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetMovementComponent"); + + Params::Pawn_GetMovementComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetNavAgentLocation +// (Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APawn::GetNavAgentLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetNavAgentLocation"); + + Params::Pawn_GetNavAgentLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetOverrideInputComponentClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf APawn::GetOverrideInputComponentClass() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetOverrideInputComponentClass"); + + Params::Pawn_GetOverrideInputComponentClass Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetPendingMovementInputVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APawn::GetPendingMovementInputVector() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetPendingMovementInputVector"); + + Params::Pawn_GetPendingMovementInputVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.GetPlatformUserId +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId APawn::GetPlatformUserId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "GetPlatformUserId"); + + Params::Pawn_GetPlatformUserId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsBotControlled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsBotControlled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsBotControlled"); + + Params::Pawn_IsBotControlled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsControlled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsControlled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsControlled"); + + Params::Pawn_IsControlled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsLocallyControlled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsLocallyControlled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsLocallyControlled"); + + Params::Pawn_IsLocallyControlled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsLocallyViewed +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsLocallyViewed() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsLocallyViewed"); + + Params::Pawn_IsLocallyViewed Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsMoveInputIgnored +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsMoveInputIgnored() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsMoveInputIgnored"); + + Params::Pawn_IsMoveInputIgnored Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsPawnControlled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsPawnControlled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsPawnControlled"); + + Params::Pawn_IsPawnControlled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Pawn.IsPlayerControlled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APawn::IsPlayerControlled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Pawn", "IsPlayerControlled"); + + Params::Pawn_IsPlayerControlled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.CacheInitialMeshOffset +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& MeshRelativeLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& MeshRelativeRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void ACharacter::CacheInitialMeshOffset(const struct FVector& MeshRelativeLocation, const struct FRotator& MeshRelativeRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "CacheInitialMeshOffset"); + + Params::Character_CacheInitialMeshOffset Parms{}; + + Parms.MeshRelativeLocation = std::move(MeshRelativeLocation); + Parms.MeshRelativeRotation = std::move(MeshRelativeRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientAckGoodMove +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ClientAckGoodMove(float Timestamp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientAckGoodMove"); + + Params::Character_ClientAckGoodMove Parms{}; + + Parms.Timestamp = Timestamp; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientAdjustPosition +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewVel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* NewBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NewBaseBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasBase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bBaseRelativePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ServerMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ClientAdjustPosition(float Timestamp, const struct FVector& NewLoc, const struct FVector& NewVel, class UPrimitiveComponent* NewBase, class FName NewBaseBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientAdjustPosition"); + + Params::Character_ClientAdjustPosition Parms{}; + + Parms.Timestamp = Timestamp; + Parms.NewLoc = std::move(NewLoc); + Parms.NewVel = std::move(NewVel); + Parms.NewBase = NewBase; + Parms.NewBaseBoneName = NewBaseBoneName; + Parms.bHasBase = bHasBase; + Parms.bBaseRelativePosition = bBaseRelativePosition; + Parms.ServerMovementMode = ServerMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientAdjustRootMotionPosition +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ServerMontageTrackPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ServerLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantizeNormal& ServerRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ServerVelZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* ServerBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ServerBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasBase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bBaseRelativePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ServerMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ClientAdjustRootMotionPosition(float Timestamp, float ServerMontageTrackPosition, const struct FVector& ServerLoc, const struct FVector_NetQuantizeNormal& ServerRotation, float ServerVelZ, class UPrimitiveComponent* ServerBase, class FName ServerBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientAdjustRootMotionPosition"); + + Params::Character_ClientAdjustRootMotionPosition Parms{}; + + Parms.Timestamp = Timestamp; + Parms.ServerMontageTrackPosition = ServerMontageTrackPosition; + Parms.ServerLoc = std::move(ServerLoc); + Parms.ServerRotation = std::move(ServerRotation); + Parms.ServerVelZ = ServerVelZ; + Parms.ServerBase = ServerBase; + Parms.ServerBoneName = ServerBoneName; + Parms.bHasBase = bHasBase; + Parms.bBaseRelativePosition = bBaseRelativePosition; + Parms.ServerMovementMode = ServerMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientAdjustRootMotionSourcePosition +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRootMotionSourceGroup& ServerRootMotion (Parm, NativeAccessSpecifierPublic) +// bool bHasAnimRootMotion (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ServerMontageTrackPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ServerLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantizeNormal& ServerRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ServerVelZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* ServerBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ServerBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasBase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bBaseRelativePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ServerMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ClientAdjustRootMotionSourcePosition(float Timestamp, const struct FRootMotionSourceGroup& ServerRootMotion, bool bHasAnimRootMotion, float ServerMontageTrackPosition, const struct FVector& ServerLoc, const struct FVector_NetQuantizeNormal& ServerRotation, float ServerVelZ, class UPrimitiveComponent* ServerBase, class FName ServerBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientAdjustRootMotionSourcePosition"); + + Params::Character_ClientAdjustRootMotionSourcePosition Parms{}; + + Parms.Timestamp = Timestamp; + Parms.ServerRootMotion = std::move(ServerRootMotion); + Parms.bHasAnimRootMotion = bHasAnimRootMotion; + Parms.ServerMontageTrackPosition = ServerMontageTrackPosition; + Parms.ServerLoc = std::move(ServerLoc); + Parms.ServerRotation = std::move(ServerRotation); + Parms.ServerVelZ = ServerVelZ; + Parms.ServerBase = ServerBase; + Parms.ServerBoneName = ServerBoneName; + Parms.bHasBase = bHasBase; + Parms.bBaseRelativePosition = bBaseRelativePosition; + Parms.ServerMovementMode = ServerMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientCheatFly +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void ACharacter::ClientCheatFly() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientCheatFly"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientCheatGhost +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void ACharacter::ClientCheatGhost() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientCheatGhost"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientCheatWalk +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void ACharacter::ClientCheatWalk() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientCheatWalk"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientMoveResponsePacked +// (RequiredAPI, Net, Native, Event, Public, NetClient, NetValidate) +// Parameters: +// const struct FCharacterMoveResponsePackedBits&PackedBits (ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) + +void ACharacter::ClientMoveResponsePacked(const struct FCharacterMoveResponsePackedBits& PackedBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientMoveResponsePacked"); + + Params::Character_ClientMoveResponsePacked Parms{}; + + Parms.PackedBits = std::move(PackedBits); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ClientVeryShortAdjustPosition +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NewLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* NewBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName NewBaseBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHasBase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bBaseRelativePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ServerMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ClientVeryShortAdjustPosition(float Timestamp, const struct FVector& NewLoc, class UPrimitiveComponent* NewBase, class FName NewBaseBoneName, bool bHasBase, bool bBaseRelativePosition, uint8 ServerMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ClientVeryShortAdjustPosition"); + + Params::Character_ClientVeryShortAdjustPosition Parms{}; + + Parms.Timestamp = Timestamp; + Parms.NewLoc = std::move(NewLoc); + Parms.NewBase = NewBase; + Parms.NewBaseBoneName = NewBaseBoneName; + Parms.bHasBase = bHasBase; + Parms.bBaseRelativePosition = bBaseRelativePosition; + Parms.ServerMovementMode = ServerMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.Crouch +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bClientSimulation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::Crouch(bool bClientSimulation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "Crouch"); + + Params::Character_Crouch Parms{}; + + Parms.bClientSimulation = bClientSimulation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.Jump +// (RequiredAPI, Native, Public, BlueprintCallable) + +void ACharacter::Jump() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "Jump"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.K2_OnEndCrouch +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float HalfHeightAdjust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScaledHalfHeightAdjust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::K2_OnEndCrouch(float HalfHeightAdjust, float ScaledHalfHeightAdjust) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "K2_OnEndCrouch"); + + Params::Character_K2_OnEndCrouch Parms{}; + + Parms.HalfHeightAdjust = HalfHeightAdjust; + Parms.ScaledHalfHeightAdjust = ScaledHalfHeightAdjust; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.K2_OnMovementModeChanged +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// EMovementMode PrevMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMovementMode NewMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 PrevCustomMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 NewCustomMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::K2_OnMovementModeChanged(EMovementMode PrevMovementMode, EMovementMode NewMovementMode, uint8 PrevCustomMode, uint8 NewCustomMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "K2_OnMovementModeChanged"); + + Params::Character_K2_OnMovementModeChanged Parms{}; + + Parms.PrevMovementMode = PrevMovementMode; + Parms.NewMovementMode = NewMovementMode; + Parms.PrevCustomMode = PrevCustomMode; + Parms.NewCustomMode = NewCustomMode; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.K2_OnStartCrouch +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float HalfHeightAdjust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScaledHalfHeightAdjust (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::K2_OnStartCrouch(float HalfHeightAdjust, float ScaledHalfHeightAdjust) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "K2_OnStartCrouch"); + + Params::Character_K2_OnStartCrouch Parms{}; + + Parms.HalfHeightAdjust = HalfHeightAdjust; + Parms.ScaledHalfHeightAdjust = ScaledHalfHeightAdjust; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.K2_UpdateCustomMovement +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::K2_UpdateCustomMovement(float DeltaTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "K2_UpdateCustomMovement"); + + Params::Character_K2_UpdateCustomMovement Parms{}; + + Parms.DeltaTime = DeltaTime; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.LaunchCharacter +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& LaunchVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bXYOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bZOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::LaunchCharacter(const struct FVector& LaunchVelocity, bool bXYOverride, bool bZOverride) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "LaunchCharacter"); + + Params::Character_LaunchCharacter Parms{}; + + Parms.LaunchVelocity = std::move(LaunchVelocity); + Parms.bXYOverride = bXYOverride; + Parms.bZOverride = bZOverride; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnJumped +// (RequiredAPI, Native, Event, Public, BlueprintEvent) + +void ACharacter::OnJumped() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnJumped"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnLanded +// (RequiredAPI, Event, Public, HasOutParams, BlueprintEvent) +// Parameters: +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void ACharacter::OnLanded(const struct FHitResult& Hit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnLanded"); + + Params::Character_OnLanded Parms{}; + + Parms.Hit = std::move(Hit); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.OnLaunched +// (RequiredAPI, Event, Public, HasDefaults, BlueprintEvent) +// Parameters: +// const struct FVector& LaunchVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bXYOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bZOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::OnLaunched(const struct FVector& LaunchVelocity, bool bXYOverride, bool bZOverride) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnLaunched"); + + Params::Character_OnLaunched Parms{}; + + Parms.LaunchVelocity = std::move(LaunchVelocity); + Parms.bXYOverride = bXYOverride; + Parms.bZOverride = bZOverride; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.Character.OnRep_IsCrouched +// (RequiredAPI, Native, Public) + +void ACharacter::OnRep_IsCrouched() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnRep_IsCrouched"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnRep_ReplayLastTransformUpdateTimeStamp +// (Final, RequiredAPI, Native, Public) + +void ACharacter::OnRep_ReplayLastTransformUpdateTimeStamp() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnRep_ReplayLastTransformUpdateTimeStamp"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnRep_ReplicatedBasedMovement +// (RequiredAPI, Native, Public) + +void ACharacter::OnRep_ReplicatedBasedMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnRep_ReplicatedBasedMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnRep_RootMotion +// (Final, RequiredAPI, Native, Public) + +void ACharacter::OnRep_RootMotion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnRep_RootMotion"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.OnWalkingOffLedge +// (RequiredAPI, Native, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// const struct FVector& PreviousFloorImpactNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousFloorContactNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TimeDelta (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::OnWalkingOffLedge(const struct FVector& PreviousFloorImpactNormal, const struct FVector& PreviousFloorContactNormal, const struct FVector& PreviousLocation, float TimeDelta) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "OnWalkingOffLedge"); + + Params::Character_OnWalkingOffLedge Parms{}; + + Parms.PreviousFloorImpactNormal = std::move(PreviousFloorImpactNormal); + Parms.PreviousFloorContactNormal = std::move(PreviousFloorContactNormal); + Parms.PreviousLocation = std::move(PreviousLocation); + Parms.TimeDelta = TimeDelta; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.PlayAnimMontage +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimMontage* AnimMontage (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPlayRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName StartSectionName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float ACharacter::PlayAnimMontage(class UAnimMontage* AnimMontage, float InPlayRate, class FName StartSectionName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "PlayAnimMontage"); + + Params::Character_PlayAnimMontage Parms{}; + + Parms.AnimMontage = AnimMontage; + Parms.InPlayRate = InPlayRate; + Parms.StartSectionName = StartSectionName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.RootMotionDebugClientPrintOnScreen +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::RootMotionDebugClientPrintOnScreen(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "RootMotionDebugClientPrintOnScreen"); + + Params::Character_RootMotionDebugClientPrintOnScreen Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMove +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize100& ClientLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 CompressedMoveFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* ClientMovementBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ClientBaseBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMove(float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 CompressedMoveFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMove"); + + Params::Character_ServerMove Parms{}; + + Parms.Timestamp = Timestamp; + Parms.InAccel = std::move(InAccel); + Parms.ClientLoc = std::move(ClientLoc); + Parms.CompressedMoveFlags = CompressedMoveFlags; + Parms.ClientRoll = ClientRoll; + Parms.View = View; + Parms.ClientMovementBase = ClientMovementBase; + Parms.ClientBaseBoneName = ClientBaseBoneName; + Parms.ClientMovementMode = ClientMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMoveDual +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float TimeStamp0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 PendingFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize100& ClientLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 NewFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* ClientMovementBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ClientBaseBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMoveDual(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMoveDual"); + + Params::Character_ServerMoveDual Parms{}; + + Parms.TimeStamp0 = TimeStamp0; + Parms.InAccel0 = std::move(InAccel0); + Parms.PendingFlags = PendingFlags; + Parms.View0 = View0; + Parms.Timestamp = Timestamp; + Parms.InAccel = std::move(InAccel); + Parms.ClientLoc = std::move(ClientLoc); + Parms.NewFlags = NewFlags; + Parms.ClientRoll = ClientRoll; + Parms.View = View; + Parms.ClientMovementBase = ClientMovementBase; + Parms.ClientBaseBoneName = ClientBaseBoneName; + Parms.ClientMovementMode = ClientMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMoveDualHybridRootMotion +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float TimeStamp0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 PendingFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize100& ClientLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 NewFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* ClientMovementBase (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ClientBaseBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMoveDualHybridRootMotion(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, class UPrimitiveComponent* ClientMovementBase, class FName ClientBaseBoneName, uint8 ClientMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMoveDualHybridRootMotion"); + + Params::Character_ServerMoveDualHybridRootMotion Parms{}; + + Parms.TimeStamp0 = TimeStamp0; + Parms.InAccel0 = std::move(InAccel0); + Parms.PendingFlags = PendingFlags; + Parms.View0 = View0; + Parms.Timestamp = Timestamp; + Parms.InAccel = std::move(InAccel); + Parms.ClientLoc = std::move(ClientLoc); + Parms.NewFlags = NewFlags; + Parms.ClientRoll = ClientRoll; + Parms.View = View; + Parms.ClientMovementBase = ClientMovementBase; + Parms.ClientBaseBoneName = ClientBaseBoneName; + Parms.ClientMovementMode = ClientMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMoveDualNoBase +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float TimeStamp0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 PendingFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize100& ClientLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 NewFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMoveDualNoBase(float TimeStamp0, const struct FVector_NetQuantize10& InAccel0, uint8 PendingFlags, uint32 View0, float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 NewFlags, uint8 ClientRoll, uint32 View, uint8 ClientMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMoveDualNoBase"); + + Params::Character_ServerMoveDualNoBase Parms{}; + + Parms.TimeStamp0 = TimeStamp0; + Parms.InAccel0 = std::move(InAccel0); + Parms.PendingFlags = PendingFlags; + Parms.View0 = View0; + Parms.Timestamp = Timestamp; + Parms.InAccel = std::move(InAccel); + Parms.ClientLoc = std::move(ClientLoc); + Parms.NewFlags = NewFlags; + Parms.ClientRoll = ClientRoll; + Parms.View = View; + Parms.ClientMovementMode = ClientMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMoveNoBase +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float Timestamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& InAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize100& ClientLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 CompressedMoveFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint32 View (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ClientMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMoveNoBase(float Timestamp, const struct FVector_NetQuantize10& InAccel, const struct FVector_NetQuantize100& ClientLoc, uint8 CompressedMoveFlags, uint8 ClientRoll, uint32 View, uint8 ClientMovementMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMoveNoBase"); + + Params::Character_ServerMoveNoBase Parms{}; + + Parms.Timestamp = Timestamp; + Parms.InAccel = std::move(InAccel); + Parms.ClientLoc = std::move(ClientLoc); + Parms.CompressedMoveFlags = CompressedMoveFlags; + Parms.ClientRoll = ClientRoll; + Parms.View = View; + Parms.ClientMovementMode = ClientMovementMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMoveOld +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// float OldTimeStamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector_NetQuantize10& OldAccel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 OldMoveFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::ServerMoveOld(float OldTimeStamp, const struct FVector_NetQuantize10& OldAccel, uint8 OldMoveFlags) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMoveOld"); + + Params::Character_ServerMoveOld Parms{}; + + Parms.OldTimeStamp = OldTimeStamp; + Parms.OldAccel = std::move(OldAccel); + Parms.OldMoveFlags = OldMoveFlags; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.ServerMovePacked +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FCharacterServerMovePackedBits&PackedBits (ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) + +void ACharacter::ServerMovePacked(const struct FCharacterServerMovePackedBits& PackedBits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "ServerMovePacked"); + + Params::Character_ServerMovePacked Parms{}; + + Parms.PackedBits = std::move(PackedBits); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.StopAnimMontage +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UAnimMontage* AnimMontage (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::StopAnimMontage(class UAnimMontage* AnimMontage) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "StopAnimMontage"); + + Params::Character_StopAnimMontage Parms{}; + + Parms.AnimMontage = AnimMontage; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.StopJumping +// (RequiredAPI, Native, Public, BlueprintCallable) + +void ACharacter::StopJumping() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "StopJumping"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.UnCrouch +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bClientSimulation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ACharacter::UnCrouch(bool bClientSimulation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "UnCrouch"); + + Params::Character_UnCrouch Parms{}; + + Parms.bClientSimulation = bClientSimulation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Character.CanCrouch +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::CanCrouch() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "CanCrouch"); + + Params::Character_CanCrouch Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.CanJump +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::CanJump() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "CanJump"); + + Params::Character_CanJump Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.CanJumpInternal +// (RequiredAPI, Native, Event, Protected, BlueprintEvent, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::CanJumpInternal() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "CanJumpInternal"); + + Params::Character_CanJumpInternal Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.GetAnimRootMotionTranslationScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float ACharacter::GetAnimRootMotionTranslationScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "GetAnimRootMotionTranslationScale"); + + Params::Character_GetAnimRootMotionTranslationScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.GetBaseRotationOffsetRotator +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator ACharacter::GetBaseRotationOffsetRotator() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "GetBaseRotationOffsetRotator"); + + Params::Character_GetBaseRotationOffsetRotator Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.GetBaseTranslationOffset +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector ACharacter::GetBaseTranslationOffset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "GetBaseTranslationOffset"); + + Params::Character_GetBaseTranslationOffset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.GetCurrentMontage +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAnimMontage* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAnimMontage* ACharacter::GetCurrentMontage() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "GetCurrentMontage"); + + Params::Character_GetCurrentMontage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.HasAnyRootMotion +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::HasAnyRootMotion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "HasAnyRootMotion"); + + Params::Character_HasAnyRootMotion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.IsJumpProvidingForce +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::IsJumpProvidingForce() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "IsJumpProvidingForce"); + + Params::Character_IsJumpProvidingForce Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.IsPlayingNetworkedRootMotionMontage +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::IsPlayingNetworkedRootMotionMontage() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "IsPlayingNetworkedRootMotionMontage"); + + Params::Character_IsPlayingNetworkedRootMotionMontage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Character.IsPlayingRootMotion +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ACharacter::IsPlayingRootMotion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Character", "IsPlayingRootMotion"); + + Params::Character_IsPlayingRootMotion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.ActivateTouchInterface +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTouchInterface* NewTouchInterface (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ActivateTouchInterface(class UTouchInterface* NewTouchInterface) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ActivateTouchInterface"); + + Params::PlayerController_ActivateTouchInterface Parms{}; + + Parms.NewTouchInterface = NewTouchInterface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.AddPitchInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::AddPitchInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "AddPitchInput"); + + Params::PlayerController_AddPitchInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.AddRollInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::AddRollInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "AddRollInput"); + + Params::PlayerController_AddRollInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.AddYawInput +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::AddYawInput(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "AddYawInput"); + + Params::PlayerController_AddYawInput Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.Camera +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName NewMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::Camera(class FName NewMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "Camera"); + + Params::PlayerController_Camera Parms{}; + + Parms.NewMode = NewMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.CanRestartPlayer +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::CanRestartPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "CanRestartPlayer"); + + Params::PlayerController_CanRestartPlayer Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.ClearAudioListenerAttenuationOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerController::ClearAudioListenerAttenuationOverride() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClearAudioListenerAttenuationOverride"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClearAudioListenerOverride +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerController::ClearAudioListenerOverride() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClearAudioListenerOverride"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientAckTimeDilation +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// float TimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ServerStep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientAckTimeDilation(float TimeDilation, int32 ServerStep) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientAckTimeDilation"); + + Params::PlayerController_ClientAckTimeDilation Parms{}; + + Parms.TimeDilation = TimeDilation; + Parms.ServerStep = ServerStep; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientAckUpdateLevelVisibility +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FNetLevelVisibilityTransactionId&TransactionId (Parm, NoDestructor, NativeAccessSpecifierPublic) +// bool bClientAckCanMakeVisible (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientAckUpdateLevelVisibility(class FName PackageName, const struct FNetLevelVisibilityTransactionId& TransactionId, bool bClientAckCanMakeVisible) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientAckUpdateLevelVisibility"); + + Params::PlayerController_ClientAckUpdateLevelVisibility Parms{}; + + Parms.PackageName = PackageName; + Parms.TransactionId = std::move(TransactionId); + Parms.bClientAckCanMakeVisible = bClientAckCanMakeVisible; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientAddTextureStreamingLoc +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// const struct FVector& InLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bOverrideLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientAddTextureStreamingLoc(const struct FVector& InLoc, float duration, bool bOverrideLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientAddTextureStreamingLoc"); + + Params::PlayerController_ClientAddTextureStreamingLoc Parms{}; + + Parms.InLoc = std::move(InLoc); + Parms.duration = duration; + Parms.bOverrideLocation = bOverrideLocation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientCancelPendingMapChange +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientCancelPendingMapChange() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientCancelPendingMapChange"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientCapBandwidth +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// int32 cap (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientCapBandwidth(int32 cap) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientCapBandwidth"); + + Params::PlayerController_ClientCapBandwidth Parms{}; + + Parms.cap = cap; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientClearCameraLensEffects +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient, BlueprintCallable) + +void APlayerController::ClientClearCameraLensEffects() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientClearCameraLensEffects"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientCommitMapChange +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientCommitMapChange() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientCommitMapChange"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientCorrectionAsyncPhysicsTimestamp +// (Final, RequiredAPI, Net, Native, Event, Private, NetClient) +// Parameters: +// const struct FAsyncPhysicsTimestamp& Timestamp (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ClientCorrectionAsyncPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientCorrectionAsyncPhysicsTimestamp"); + + Params::PlayerController_ClientCorrectionAsyncPhysicsTimestamp Parms{}; + + Parms.Timestamp = std::move(Timestamp); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientEnableNetworkVoice +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientEnableNetworkVoice(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientEnableNetworkVoice"); + + Params::PlayerController_ClientEnableNetworkVoice Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientEndOnlineSession +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientEndOnlineSession() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientEndOnlineSession"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientFlushLevelStreaming +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientFlushLevelStreaming() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientFlushLevelStreaming"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientForceGarbageCollection +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientForceGarbageCollection() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientForceGarbageCollection"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientGameEnded +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class AActor* EndGameFocus (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsWinner (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientGameEnded(class AActor* EndGameFocus, bool bIsWinner) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientGameEnded"); + + Params::PlayerController_ClientGameEnded Parms{}; + + Parms.EndGameFocus = EndGameFocus; + Parms.bIsWinner = bIsWinner; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientGotoState +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class FName NewState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientGotoState(class FName NewState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientGotoState"); + + Params::PlayerController_ClientGotoState Parms{}; + + Parms.NewState = NewState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientIgnoreLookInput +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bIgnore (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientIgnoreLookInput(bool bIgnore) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientIgnoreLookInput"); + + Params::PlayerController_ClientIgnoreLookInput Parms{}; + + Parms.bIgnore = bIgnore; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientIgnoreMoveInput +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bIgnore (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientIgnoreMoveInput(bool bIgnore) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientIgnoreMoveInput"); + + Params::PlayerController_ClientIgnoreMoveInput Parms{}; + + Parms.bIgnore = bIgnore; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientMessage +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Type (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MsgLifeTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientMessage(const class FString& S, class FName Type, float MsgLifeTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientMessage"); + + Params::PlayerController_ClientMessage Parms{}; + + Parms.S = std::move(S); + Parms.Type = Type; + Parms.MsgLifeTime = MsgLifeTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientMutePlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientMutePlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientMutePlayer"); + + Params::PlayerController_ClientMutePlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientPlayForceFeedback_Internal +// (Final, RequiredAPI, Net, Native, Event, Private, NetClient) +// Parameters: +// class UForceFeedbackEffect* ForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FForceFeedbackParameters& Params_0 (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ClientPlayForceFeedback_Internal(class UForceFeedbackEffect* ForceFeedbackEffect, const struct FForceFeedbackParameters& Params_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientPlayForceFeedback_Internal"); + + Params::PlayerController_ClientPlayForceFeedback_Internal Parms{}; + + Parms.ForceFeedbackEffect = ForceFeedbackEffect; + Parms.Params_0 = std::move(Params_0); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientPlaySound +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientPlaySound(class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientPlaySound"); + + Params::PlayerController_ClientPlaySound Parms{}; + + Parms.Sound = Sound; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientPlaySoundAtLocation +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientPlaySoundAtLocation(class USoundBase* Sound, const struct FVector& Location, float VolumeMultiplier, float PitchMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientPlaySoundAtLocation"); + + Params::PlayerController_ClientPlaySoundAtLocation Parms{}; + + Parms.Sound = Sound; + Parms.Location = std::move(Location); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientPrepareMapChange +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class FName LevelName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFirst (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLast (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientPrepareMapChange(class FName LevelName, bool bFirst, bool bLast) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientPrepareMapChange"); + + Params::PlayerController_ClientPrepareMapChange Parms{}; + + Parms.LevelName = LevelName; + Parms.bFirst = bFirst; + Parms.bLast = bLast; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientPrestreamTextures +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class AActor* ForcedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ForceDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableStreaming (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicTextureGroups (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientPrestreamTextures(class AActor* ForcedActor, float ForceDuration, bool bEnableStreaming, int32 CinematicTextureGroups) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientPrestreamTextures"); + + Params::PlayerController_ClientPrestreamTextures Parms{}; + + Parms.ForcedActor = ForcedActor; + Parms.ForceDuration = ForceDuration; + Parms.bEnableStreaming = bEnableStreaming; + Parms.CinematicTextureGroups = CinematicTextureGroups; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientReceiveLocalizedMessage +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// TSubclassOf Message (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SWITCH (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerState* RelatedPlayerState_1 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerState* RelatedPlayerState_2 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* OptionalObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientReceiveLocalizedMessage(TSubclassOf Message, int32 SWITCH, class APlayerState* RelatedPlayerState_1, class APlayerState* RelatedPlayerState_2, class UObject* OptionalObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientReceiveLocalizedMessage"); + + Params::PlayerController_ClientReceiveLocalizedMessage Parms{}; + + Parms.Message = Message; + Parms.SWITCH = SWITCH; + Parms.RelatedPlayerState_1 = RelatedPlayerState_1; + Parms.RelatedPlayerState_2 = RelatedPlayerState_2; + Parms.OptionalObject = OptionalObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientRecvServerAckFrame +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// int32 LastProcessedInputFrame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 RecvServerFrameNumber (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int8 TimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientRecvServerAckFrame(int32 LastProcessedInputFrame, int32 RecvServerFrameNumber, int8 TimeDilation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientRecvServerAckFrame"); + + Params::PlayerController_ClientRecvServerAckFrame Parms{}; + + Parms.LastProcessedInputFrame = LastProcessedInputFrame; + Parms.RecvServerFrameNumber = RecvServerFrameNumber; + Parms.TimeDilation = TimeDilation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientRecvServerAckFrameDebug +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// uint8 NumBuffered (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TargetNumBufferedCmds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientRecvServerAckFrameDebug(uint8 NumBuffered, float TargetNumBufferedCmds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientRecvServerAckFrameDebug"); + + Params::PlayerController_ClientRecvServerAckFrameDebug Parms{}; + + Parms.NumBuffered = NumBuffered; + Parms.TargetNumBufferedCmds = TargetNumBufferedCmds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientRepObjRef +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientRepObjRef(class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientRepObjRef"); + + Params::PlayerController_ClientRepObjRef Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientReset +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientReset() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientReset"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientRestart +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class APawn* NewPawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientRestart(class APawn* NewPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientRestart"); + + Params::PlayerController_ClientRestart Parms{}; + + Parms.NewPawn = NewPawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientRetryClientRestart +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class APawn* NewPawn (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientRetryClientRestart(class APawn* NewPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientRetryClientRestart"); + + Params::PlayerController_ClientRetryClientRestart Parms{}; + + Parms.NewPawn = NewPawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientReturnToMainMenuWithTextReason +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const class FText& ReturnReason (ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ClientReturnToMainMenuWithTextReason(const class FText& ReturnReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientReturnToMainMenuWithTextReason"); + + Params::PlayerController_ClientReturnToMainMenuWithTextReason Parms{}; + + Parms.ReturnReason = std::move(ReturnReason); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetBlockOnAsyncLoading +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientSetBlockOnAsyncLoading() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetBlockOnAsyncLoading"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetCameraFade +// (RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// bool bEnableFading (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FColor& FadeColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& FadeAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFadeAudio (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHoldWhenFinished (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetCameraFade(bool bEnableFading, const struct FColor& FadeColor, const struct FVector2D& FadeAlpha, float FadeTime, bool bFadeAudio, bool bHoldWhenFinished) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetCameraFade"); + + Params::PlayerController_ClientSetCameraFade Parms{}; + + Parms.bEnableFading = bEnableFading; + Parms.FadeColor = std::move(FadeColor); + Parms.FadeAlpha = std::move(FadeAlpha); + Parms.FadeTime = FadeTime; + Parms.bFadeAudio = bFadeAudio; + Parms.bHoldWhenFinished = bHoldWhenFinished; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetCameraMode +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class FName NewCamMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetCameraMode(class FName NewCamMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetCameraMode"); + + Params::PlayerController_ClientSetCameraMode Parms{}; + + Parms.NewCamMode = NewCamMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetCinematicMode +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bInCinematicMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsTurning (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsHUD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetCinematicMode(bool bInCinematicMode, bool bAffectsMovement, bool bAffectsTurning, bool bAffectsHUD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetCinematicMode"); + + Params::PlayerController_ClientSetCinematicMode Parms{}; + + Parms.bInCinematicMode = bInCinematicMode; + Parms.bAffectsMovement = bAffectsMovement; + Parms.bAffectsTurning = bAffectsTurning; + Parms.bAffectsHUD = bAffectsHUD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetForceMipLevelsToBeResident +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ForceDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CinematicTextureGroups (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetForceMipLevelsToBeResident(class UMaterialInterface* Material, float ForceDuration, int32 CinematicTextureGroups) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetForceMipLevelsToBeResident"); + + Params::PlayerController_ClientSetForceMipLevelsToBeResident Parms{}; + + Parms.Material = Material; + Parms.ForceDuration = ForceDuration; + Parms.CinematicTextureGroups = CinematicTextureGroups; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetHUD +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient, BlueprintCallable) +// Parameters: +// TSubclassOf NewHUDClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetHUD(TSubclassOf NewHUDClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetHUD"); + + Params::PlayerController_ClientSetHUD Parms{}; + + Parms.NewHUDClass = NewHUDClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetSpectatorWaiting +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bWaiting (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetSpectatorWaiting(bool bWaiting) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetSpectatorWaiting"); + + Params::PlayerController_ClientSetSpectatorWaiting Parms{}; + + Parms.bWaiting = bWaiting; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetupNetworkPhysicsTimestamp +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const struct FAsyncPhysicsTimestamp& Timestamp (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetupNetworkPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetupNetworkPhysicsTimestamp"); + + Params::PlayerController_ClientSetupNetworkPhysicsTimestamp Parms{}; + + Parms.Timestamp = std::move(Timestamp); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSetViewTarget +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class AActor* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FViewTargetTransitionParams&TransitionParams (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ClientSetViewTarget(class AActor* A, const struct FViewTargetTransitionParams& TransitionParams) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSetViewTarget"); + + Params::PlayerController_ClientSetViewTarget Parms{}; + + Parms.A = A; + Parms.TransitionParams = std::move(TransitionParams); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSpawnCameraLensEffect +// (RequiredAPI, Net, Native, Event, Public, NetClient) +// Parameters: +// TSubclassOfLensEffectEmitterClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSpawnCameraLensEffect(TSubclassOf LensEffectEmitterClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSpawnCameraLensEffect"); + + Params::PlayerController_ClientSpawnCameraLensEffect Parms{}; + + Parms.LensEffectEmitterClass = LensEffectEmitterClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientSpawnGenericCameraLensEffect +// (RequiredAPI, Net, Native, Event, Public, NetClient, BlueprintCallable) +// Parameters: +// TSubclassOf LensEffectEmitterClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientSpawnGenericCameraLensEffect(TSubclassOf LensEffectEmitterClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientSpawnGenericCameraLensEffect"); + + Params::PlayerController_ClientSpawnGenericCameraLensEffect Parms{}; + + Parms.LensEffectEmitterClass = LensEffectEmitterClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStartCameraShake +// (RequiredAPI, Net, Native, Event, Public, HasDefaults, NetClient, BlueprintCallable) +// Parameters: +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECameraShakePlaySpace PlaySpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& UserPlaySpaceRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ClientStartCameraShake(TSubclassOf Shake, float Scale, ECameraShakePlaySpace PlaySpace, const struct FRotator& UserPlaySpaceRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStartCameraShake"); + + Params::PlayerController_ClientStartCameraShake Parms{}; + + Parms.Shake = Shake; + Parms.Scale = Scale; + Parms.PlaySpace = PlaySpace; + Parms.UserPlaySpaceRot = std::move(UserPlaySpaceRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStartCameraShakeFromSource +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCameraShakeSourceComponent* SourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientStartCameraShakeFromSource(TSubclassOf Shake, class UCameraShakeSourceComponent* SourceComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStartCameraShakeFromSource"); + + Params::PlayerController_ClientStartCameraShakeFromSource Parms{}; + + Parms.Shake = Shake; + Parms.SourceComponent = SourceComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStartOnlineSession +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientStartOnlineSession() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStartOnlineSession"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStopCameraShake +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient, BlueprintCallable) +// Parameters: +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientStopCameraShake(TSubclassOf Shake, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStopCameraShake"); + + Params::PlayerController_ClientStopCameraShake Parms{}; + + Parms.Shake = Shake; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStopCameraShakesFromSource +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UCameraShakeSourceComponent* SourceComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bImmediately (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientStopCameraShakesFromSource(class UCameraShakeSourceComponent* SourceComponent, bool bImmediately) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStopCameraShakesFromSource"); + + Params::PlayerController_ClientStopCameraShakesFromSource Parms{}; + + Parms.SourceComponent = SourceComponent; + Parms.bImmediately = bImmediately; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientStopForceFeedback +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient, BlueprintCallable) +// Parameters: +// class UForceFeedbackEffect* ForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientStopForceFeedback(class UForceFeedbackEffect* ForceFeedbackEffect, class FName Tag) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientStopForceFeedback"); + + Params::PlayerController_ClientStopForceFeedback Parms{}; + + Parms.ForceFeedbackEffect = ForceFeedbackEffect; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientTeamMessage +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class APlayerState* SenderPlayerState (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Type (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MsgLifeTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientTeamMessage(class APlayerState* SenderPlayerState, const class FString& S, class FName Type, float MsgLifeTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientTeamMessage"); + + Params::PlayerController_ClientTeamMessage Parms{}; + + Parms.SenderPlayerState = SenderPlayerState; + Parms.S = std::move(S); + Parms.Type = Type; + Parms.MsgLifeTime = MsgLifeTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientTravel +// (Final, RequiredAPI, Native, Public, HasDefaults) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETravelType TravelType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSeamless (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FGuid& MapPackageGuid (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientTravel(const class FString& URL, ETravelType TravelType, bool bSeamless, const struct FGuid& MapPackageGuid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientTravel"); + + Params::PlayerController_ClientTravel Parms{}; + + Parms.URL = std::move(URL); + Parms.TravelType = TravelType; + Parms.bSeamless = bSeamless; + Parms.MapPackageGuid = std::move(MapPackageGuid); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientTravelInternal +// (RequiredAPI, Net, NetReliable, Native, Event, Public, HasDefaults, NetClient) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETravelType TravelType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSeamless (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FGuid& MapPackageGuid (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientTravelInternal(const class FString& URL, ETravelType TravelType, bool bSeamless, const struct FGuid& MapPackageGuid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientTravelInternal"); + + Params::PlayerController_ClientTravelInternal Parms{}; + + Parms.URL = std::move(URL); + Parms.TravelType = TravelType; + Parms.bSeamless = bSeamless; + Parms.MapPackageGuid = std::move(MapPackageGuid); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientUnmutePlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientUnmutePlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientUnmutePlayer"); + + Params::PlayerController_ClientUnmutePlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientUnmutePlayers +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const TArray& PlayerIds (ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ClientUnmutePlayers(const TArray& PlayerIds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientUnmutePlayers"); + + Params::PlayerController_ClientUnmutePlayers Parms{}; + + Parms.PlayerIds = std::move(PlayerIds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientUpdateLevelStreamingStatus +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewShouldBeLoaded (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewShouldBeVisible (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNewShouldBlockOnLoad (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FNetLevelVisibilityTransactionId&TransactionId (Parm, NoDestructor, NativeAccessSpecifierPublic) +// bool bNewShouldBlockOnUnload (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ClientUpdateLevelStreamingStatus(class FName PackageName, bool bNewShouldBeLoaded, bool bNewShouldBeVisible, bool bNewShouldBlockOnLoad, int32 LODIndex, const struct FNetLevelVisibilityTransactionId& TransactionId, bool bNewShouldBlockOnUnload) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientUpdateLevelStreamingStatus"); + + Params::PlayerController_ClientUpdateLevelStreamingStatus Parms{}; + + Parms.PackageName = PackageName; + Parms.bNewShouldBeLoaded = bNewShouldBeLoaded; + Parms.bNewShouldBeVisible = bNewShouldBeVisible; + Parms.bNewShouldBlockOnLoad = bNewShouldBlockOnLoad; + Parms.LODIndex = LODIndex; + Parms.TransactionId = std::move(TransactionId); + Parms.bNewShouldBlockOnUnload = bNewShouldBlockOnUnload; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientUpdateMultipleLevelsStreamingStatus +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const TArray&LevelStatuses (ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ClientUpdateMultipleLevelsStreamingStatus(const TArray& LevelStatuses) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientUpdateMultipleLevelsStreamingStatus"); + + Params::PlayerController_ClientUpdateMultipleLevelsStreamingStatus Parms{}; + + Parms.LevelStatuses = std::move(LevelStatuses); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientVoiceHandshakeComplete +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) + +void APlayerController::ClientVoiceHandshakeComplete() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientVoiceHandshakeComplete"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ClientWasKicked +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// const class FText& KickReason (ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ClientWasKicked(const class FText& KickReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ClientWasKicked"); + + Params::PlayerController_ClientWasKicked Parms{}; + + Parms.KickReason = std::move(KickReason); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ConsoleKey +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ConsoleKey(const struct FKey& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ConsoleKey"); + + Params::PlayerController_ConsoleKey Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.EnableCheats +// (RequiredAPI, Exec, Native, Public) + +void APlayerController::EnableCheats() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "EnableCheats"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.FOV +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// float NewFOV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::FOV(float NewFOV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "FOV"); + + Params::PlayerController_FOV Parms{}; + + Parms.NewFOV = NewFOV; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.K2_ClientPlayForceFeedback +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UForceFeedbackEffect* ForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIgnoreTimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPlayWhilePaused (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::K2_ClientPlayForceFeedback(class UForceFeedbackEffect* ForceFeedbackEffect, class FName Tag, bool bLooping, bool bIgnoreTimeDilation, bool bPlayWhilePaused) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "K2_ClientPlayForceFeedback"); + + Params::PlayerController_K2_ClientPlayForceFeedback Parms{}; + + Parms.ForceFeedbackEffect = ForceFeedbackEffect; + Parms.Tag = Tag; + Parms.bLooping = bLooping; + Parms.bIgnoreTimeDilation = bIgnoreTimeDilation; + Parms.bPlayWhilePaused = bPlayWhilePaused; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.LocalTravel +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::LocalTravel(const class FString& URL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "LocalTravel"); + + Params::PlayerController_LocalTravel Parms{}; + + Parms.URL = std::move(URL); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.OnServerStartedVisualLogger +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetClient) +// Parameters: +// bool bIsLogging (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::OnServerStartedVisualLogger(bool bIsLogging) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "OnServerStartedVisualLogger"); + + Params::PlayerController_OnServerStartedVisualLogger Parms{}; + + Parms.bIsLogging = bIsLogging; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.Pause +// (RequiredAPI, Exec, Native, Public) + +void APlayerController::Pause() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "Pause"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.PlayDynamicForceFeedback +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Intensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsLeftLarge (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsLeftSmall (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsRightLarge (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsRightSmall (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDynamicForceFeedbackAction Action (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::PlayDynamicForceFeedback(float Intensity, float duration, bool bAffectsLeftLarge, bool bAffectsLeftSmall, bool bAffectsRightLarge, bool bAffectsRightSmall, EDynamicForceFeedbackAction Action, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "PlayDynamicForceFeedback"); + + Params::PlayerController_PlayDynamicForceFeedback Parms{}; + + Parms.Intensity = Intensity; + Parms.duration = duration; + Parms.bAffectsLeftLarge = bAffectsLeftLarge; + Parms.bAffectsLeftSmall = bAffectsLeftSmall; + Parms.bAffectsRightLarge = bAffectsRightLarge; + Parms.bAffectsRightSmall = bAffectsRightSmall; + Parms.Action = Action; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.PlayHapticEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UHapticFeedbackEffect_Base* HapticEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EControllerHand hand (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLoop (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::PlayHapticEffect(class UHapticFeedbackEffect_Base* HapticEffect, EControllerHand hand, float Scale, bool bLoop) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "PlayHapticEffect"); + + Params::PlayerController_PlayHapticEffect Parms{}; + + Parms.HapticEffect = HapticEffect; + Parms.hand = hand; + Parms.Scale = Scale; + Parms.bLoop = bLoop; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ResetControllerDeadZones +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerController::ResetControllerDeadZones() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ResetControllerDeadZones"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ResetControllerLightColor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void APlayerController::ResetControllerLightColor() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ResetControllerLightColor"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.RestartLevel +// (RequiredAPI, Exec, Native, Public) + +void APlayerController::RestartLevel() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "RestartLevel"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SendToConsole +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& Command (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SendToConsole(const class FString& Command) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SendToConsole"); + + Params::PlayerController_SendToConsole Parms{}; + + Parms.Command = std::move(Command); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerAcknowledgePossession +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// class APawn* P (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerAcknowledgePossession(class APawn* P) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerAcknowledgePossession"); + + Params::PlayerController_ServerAcknowledgePossession Parms{}; + + Parms.P = P; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerBlockPlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerBlockPlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerBlockPlayer"); + + Params::PlayerController_ServerBlockPlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerCamera +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// class FName NewMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerCamera(class FName NewMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerCamera"); + + Params::PlayerController_ServerCamera Parms{}; + + Parms.NewMode = NewMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerChangeName +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerChangeName(const class FString& S) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerChangeName"); + + Params::PlayerController_ServerChangeName Parms{}; + + Parms.S = std::move(S); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerCheckClientPossession +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerCheckClientPossession() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerCheckClientPossession"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerCheckClientPossessionReliable +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerCheckClientPossessionReliable() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerCheckClientPossessionReliable"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerExec +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& Msg (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerExec(const class FString& Msg) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerExec"); + + Params::PlayerController_ServerExec Parms{}; + + Parms.Msg = std::move(Msg); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerExecRPC +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const class FString& Msg (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerExecRPC(const class FString& Msg) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerExecRPC"); + + Params::PlayerController_ServerExecRPC Parms{}; + + Parms.Msg = std::move(Msg); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerMutePlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerMutePlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerMutePlayer"); + + Params::PlayerController_ServerMutePlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerNotifyLoadedWorld +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// class FName WorldPackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerNotifyLoadedWorld(class FName WorldPackageName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerNotifyLoadedWorld"); + + Params::PlayerController_ServerNotifyLoadedWorld Parms{}; + + Parms.WorldPackageName = WorldPackageName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerPause +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerPause() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerPause"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerRecvClientInputFrame +// (RequiredAPI, Net, Native, Event, Public, NetServer) +// Parameters: +// int32 RecvClientInputFrame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Data (ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ServerRecvClientInputFrame(int32 RecvClientInputFrame, const TArray& Data) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerRecvClientInputFrame"); + + Params::PlayerController_ServerRecvClientInputFrame Parms{}; + + Parms.RecvClientInputFrame = RecvClientInputFrame; + Parms.Data = std::move(Data); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerRestartPlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerRestartPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerRestartPlayer"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerSendLatestAsyncPhysicsTimestamp +// (RequiredAPI, Net, Native, Event, Public, NetServer) +// Parameters: +// const struct FAsyncPhysicsTimestamp& Timestamp (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ServerSendLatestAsyncPhysicsTimestamp(const struct FAsyncPhysicsTimestamp& Timestamp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerSendLatestAsyncPhysicsTimestamp"); + + Params::PlayerController_ServerSendLatestAsyncPhysicsTimestamp Parms{}; + + Parms.Timestamp = std::move(Timestamp); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerSetSpectatorLocation +// (RequiredAPI, Net, Native, Event, Public, NetServer, HasDefaults, NetValidate) +// Parameters: +// const struct FVector& NewLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ServerSetSpectatorLocation(const struct FVector& NewLoc, const struct FRotator& NewRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerSetSpectatorLocation"); + + Params::PlayerController_ServerSetSpectatorLocation Parms{}; + + Parms.NewLoc = std::move(NewLoc); + Parms.NewRot = std::move(NewRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerSetSpectatorWaiting +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// bool bWaiting (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerSetSpectatorWaiting(bool bWaiting) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerSetSpectatorWaiting"); + + Params::PlayerController_ServerSetSpectatorWaiting Parms{}; + + Parms.bWaiting = bWaiting; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerShortTimeout +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerShortTimeout() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerShortTimeout"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerToggleAILogging +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerToggleAILogging() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerToggleAILogging"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerUnblockPlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerUnblockPlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerUnblockPlayer"); + + Params::PlayerController_ServerUnblockPlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerUnmutePlayer +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FUniqueNetIdRepl& PlayerId (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerUnmutePlayer(const struct FUniqueNetIdRepl& PlayerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerUnmutePlayer"); + + Params::PlayerController_ServerUnmutePlayer Parms{}; + + Parms.PlayerId = std::move(PlayerId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerUpdateCamera +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FVector_NetQuantize& CamLoc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 CamPitchAndYaw (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ServerUpdateCamera(const struct FVector_NetQuantize& CamLoc, int32 CamPitchAndYaw) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerUpdateCamera"); + + Params::PlayerController_ServerUpdateCamera Parms{}; + + Parms.CamLoc = std::move(CamLoc); + Parms.CamPitchAndYaw = CamPitchAndYaw; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerUpdateLevelVisibility +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FUpdateLevelVisibilityLevelInfo&LevelVisibility (ConstParm, Parm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ServerUpdateLevelVisibility(const struct FUpdateLevelVisibilityLevelInfo& LevelVisibility) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerUpdateLevelVisibility"); + + Params::PlayerController_ServerUpdateLevelVisibility Parms{}; + + Parms.LevelVisibility = std::move(LevelVisibility); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerUpdateMultipleLevelsVisibility +// (Final, RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const TArray&LevelVisibilities (ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void APlayerController::ServerUpdateMultipleLevelsVisibility(const TArray& LevelVisibilities) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerUpdateMultipleLevelsVisibility"); + + Params::PlayerController_ServerUpdateMultipleLevelsVisibility Parms{}; + + Parms.LevelVisibilities = std::move(LevelVisibilities); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerVerifyViewTarget +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerVerifyViewTarget() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerVerifyViewTarget"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerViewNextPlayer +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerViewNextPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerViewNextPlayer"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerViewPrevPlayer +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) + +void APlayerController::ServerViewPrevPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerViewPrevPlayer"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ServerViewSelf +// (RequiredAPI, Net, Native, Event, Public, NetServer, NetValidate) +// Parameters: +// const struct FViewTargetTransitionParams&TransitionParams (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::ServerViewSelf(const struct FViewTargetTransitionParams& TransitionParams) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ServerViewSelf"); + + Params::PlayerController_ServerViewSelf Parms{}; + + Parms.TransitionParams = std::move(TransitionParams); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetAudioListenerAttenuationOverride +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& AttenuationLocationOVerride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetAudioListenerAttenuationOverride(class USceneComponent* AttachToComponent, const struct FVector& AttenuationLocationOVerride) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetAudioListenerAttenuationOverride"); + + Params::PlayerController_SetAudioListenerAttenuationOverride Parms{}; + + Parms.AttachToComponent = AttachToComponent; + Parms.AttenuationLocationOVerride = std::move(AttenuationLocationOVerride); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetAudioListenerOverride +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::SetAudioListenerOverride(class USceneComponent* AttachToComponent, const struct FVector& Location, const struct FRotator& Rotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetAudioListenerOverride"); + + Params::PlayerController_SetAudioListenerOverride Parms{}; + + Parms.AttachToComponent = AttachToComponent; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetCinematicMode +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInCinematicMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bHidePlayer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsHUD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsMovement (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAffectsTurning (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetCinematicMode(bool bInCinematicMode, bool bHidePlayer, bool bAffectsHUD, bool bAffectsMovement, bool bAffectsTurning) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetCinematicMode"); + + Params::PlayerController_SetCinematicMode Parms{}; + + Parms.bInCinematicMode = bInCinematicMode; + Parms.bHidePlayer = bHidePlayer; + Parms.bAffectsHUD = bAffectsHUD; + Parms.bAffectsMovement = bAffectsMovement; + Parms.bAffectsTurning = bAffectsTurning; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetControllerDeadZones +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const float LeftDeadZone (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float RightDeadZone (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetControllerDeadZones(const float LeftDeadZone, const float RightDeadZone) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetControllerDeadZones"); + + Params::PlayerController_SetControllerDeadZones Parms{}; + + Parms.LeftDeadZone = LeftDeadZone; + Parms.RightDeadZone = RightDeadZone; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetControllerLightColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetControllerLightColor(const struct FColor& Color) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetControllerLightColor"); + + Params::PlayerController_SetControllerLightColor Parms{}; + + Parms.Color = std::move(Color); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetDeprecatedInputPitchScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetDeprecatedInputPitchScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetDeprecatedInputPitchScale"); + + Params::PlayerController_SetDeprecatedInputPitchScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetDeprecatedInputRollScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetDeprecatedInputRollScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetDeprecatedInputRollScale"); + + Params::PlayerController_SetDeprecatedInputRollScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetDeprecatedInputYawScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetDeprecatedInputYawScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetDeprecatedInputYawScale"); + + Params::PlayerController_SetDeprecatedInputYawScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetDisableHaptics +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewDisabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetDisableHaptics(bool bNewDisabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetDisableHaptics"); + + Params::PlayerController_SetDisableHaptics Parms{}; + + Parms.bNewDisabled = bNewDisabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetHapticsByValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const float Frequency (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float Amplitude (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EControllerHand hand (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetHapticsByValue(const float Frequency, const float Amplitude, EControllerHand hand) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetHapticsByValue"); + + Params::PlayerController_SetHapticsByValue Parms{}; + + Parms.Frequency = Frequency; + Parms.Amplitude = Amplitude; + Parms.hand = hand; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetMotionControlsEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetMotionControlsEnabled(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetMotionControlsEnabled"); + + Params::PlayerController_SetMotionControlsEnabled Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetMouseCursorWidget +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EMouseCursor Cursor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UUserWidget* CursorWidget (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetMouseCursorWidget(EMouseCursor Cursor, class UUserWidget* CursorWidget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetMouseCursorWidget"); + + Params::PlayerController_SetMouseCursorWidget Parms{}; + + Parms.Cursor = Cursor; + Parms.CursorWidget = CursorWidget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetMouseLocation +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const int32 X (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 Y (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetMouseLocation(const int32 X, const int32 Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetMouseLocation"); + + Params::PlayerController_SetMouseLocation Parms{}; + + Parms.X = X; + Parms.Y = Y; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetName +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetName(const class FString& S) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetName"); + + Params::PlayerController_SetName Parms{}; + + Parms.S = std::move(S); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetViewTargetWithBlend +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AActor* NewViewTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EViewTargetBlendFunction BlendFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendExp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLockOutgoing (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetViewTargetWithBlend(class AActor* NewViewTarget, float BlendTime, EViewTargetBlendFunction BlendFunc, float BlendExp, bool bLockOutgoing) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetViewTargetWithBlend"); + + Params::PlayerController_SetViewTargetWithBlend Parms{}; + + Parms.NewViewTarget = NewViewTarget; + Parms.BlendTime = BlendTime; + Parms.BlendFunc = BlendFunc; + Parms.BlendExp = BlendExp; + Parms.bLockOutgoing = bLockOutgoing; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SetVirtualJoystickVisibility +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bVisible (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SetVirtualJoystickVisibility(bool bVisible) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SetVirtualJoystickVisibility"); + + Params::PlayerController_SetVirtualJoystickVisibility Parms{}; + + Parms.bVisible = bVisible; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.StartFire +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// uint8 FireModeNum (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::StartFire(uint8 FireModeNum) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "StartFire"); + + Params::PlayerController_StartFire Parms{}; + + Parms.FireModeNum = FireModeNum; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.StopHapticEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EControllerHand hand (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::StopHapticEffect(EControllerHand hand) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "StopHapticEffect"); + + Params::PlayerController_StopHapticEffect Parms{}; + + Parms.hand = hand; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.SwitchLevel +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& URL (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::SwitchLevel(const class FString& URL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "SwitchLevel"); + + Params::PlayerController_SwitchLevel Parms{}; + + Parms.URL = std::move(URL); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.TestServerLevelVisibilityChange +// (Final, RequiredAPI, Exec, Native, Private) +// Parameters: +// const class FName PackageName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName Filename (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::TestServerLevelVisibilityChange(const class FName PackageName, const class FName Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "TestServerLevelVisibilityChange"); + + Params::PlayerController_TestServerLevelVisibilityChange Parms{}; + + Parms.PackageName = PackageName; + Parms.Filename = Filename; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.ToggleSpeaking +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// bool bInSpeaking (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::ToggleSpeaking(bool bInSpeaking) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ToggleSpeaking"); + + Params::PlayerController_ToggleSpeaking Parms{}; + + Parms.bInSpeaking = bInSpeaking; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerController.DeprojectMousePositionToWorld +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* WorldLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::DeprojectMousePositionToWorld(struct FVector* WorldLocation, struct FVector* WorldDirection) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "DeprojectMousePositionToWorld"); + + Params::PlayerController_DeprojectMousePositionToWorld Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldLocation != nullptr) + *WorldLocation = std::move(Parms.WorldLocation); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.DeprojectScreenPositionToWorld +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ScreenX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ScreenY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::DeprojectScreenPositionToWorld(float ScreenX, float ScreenY, struct FVector* WorldLocation, struct FVector* WorldDirection) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "DeprojectScreenPositionToWorld"); + + Params::PlayerController_DeprojectScreenPositionToWorld Parms{}; + + Parms.ScreenX = ScreenX; + Parms.ScreenY = ScreenY; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldLocation != nullptr) + *WorldLocation = std::move(Parms.WorldLocation); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetDeprecatedInputPitchScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerController::GetDeprecatedInputPitchScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetDeprecatedInputPitchScale"); + + Params::PlayerController_GetDeprecatedInputPitchScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetDeprecatedInputRollScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerController::GetDeprecatedInputRollScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetDeprecatedInputRollScale"); + + Params::PlayerController_GetDeprecatedInputRollScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetDeprecatedInputYawScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerController::GetDeprecatedInputYawScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetDeprecatedInputYawScale"); + + Params::PlayerController_GetDeprecatedInputYawScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetFocalLocation +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APlayerController::GetFocalLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetFocalLocation"); + + Params::PlayerController_GetFocalLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderCursor +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ECollisionChannel TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderCursor(ECollisionChannel TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderCursor"); + + Params::PlayerController_GetHitResultUnderCursor Parms{}; + + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderCursorByChannel +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderCursorByChannel(ETraceTypeQuery TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderCursorByChannel"); + + Params::PlayerController_GetHitResultUnderCursorByChannel Parms{}; + + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderCursorForObjects +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderCursorForObjects(const TArray& ObjectTypes, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderCursorForObjects"); + + Params::PlayerController_GetHitResultUnderCursorForObjects Parms{}; + + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderFinger +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETouchIndex FingerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionChannel TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderFinger(ETouchIndex FingerIndex, ECollisionChannel TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderFinger"); + + Params::PlayerController_GetHitResultUnderFinger Parms{}; + + Parms.FingerIndex = FingerIndex; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderFingerByChannel +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETouchIndex FingerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETraceTypeQuery TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderFingerByChannel(ETouchIndex FingerIndex, ETraceTypeQuery TraceChannel, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderFingerByChannel"); + + Params::PlayerController_GetHitResultUnderFingerByChannel Parms{}; + + Parms.FingerIndex = FingerIndex; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHitResultUnderFingerForObjects +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETouchIndex FingerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* HitResult (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetHitResultUnderFingerForObjects(ETouchIndex FingerIndex, const TArray& ObjectTypes, bool bTraceComplex, struct FHitResult* HitResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHitResultUnderFingerForObjects"); + + Params::PlayerController_GetHitResultUnderFingerForObjects Parms{}; + + Parms.FingerIndex = FingerIndex; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HitResult != nullptr) + *HitResult = std::move(Parms.HitResult); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetHUD +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AHUD* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AHUD* APlayerController::GetHUD() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetHUD"); + + Params::PlayerController_GetHUD Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetInputAnalogKeyState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerController::GetInputAnalogKeyState(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputAnalogKeyState"); + + Params::PlayerController_GetInputAnalogKeyState Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetInputAnalogStickState +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EControllerAnalogStick WhichStick (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* StickX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* StickY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::GetInputAnalogStickState(EControllerAnalogStick WhichStick, float* StickX, float* StickY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputAnalogStickState"); + + Params::PlayerController_GetInputAnalogStickState Parms{}; + + Parms.WhichStick = WhichStick; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (StickX != nullptr) + *StickX = Parms.StickX; + + if (StickY != nullptr) + *StickY = Parms.StickY; +} + + +// Function Engine.PlayerController.GetInputKeyTimeDown +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float APlayerController::GetInputKeyTimeDown(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputKeyTimeDown"); + + Params::PlayerController_GetInputKeyTimeDown Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetInputMotionState +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* Tilt (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* RotationRate (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Gravity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Acceleration (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::GetInputMotionState(struct FVector* Tilt, struct FVector* RotationRate, struct FVector* Gravity, struct FVector* Acceleration) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputMotionState"); + + Params::PlayerController_GetInputMotionState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Tilt != nullptr) + *Tilt = std::move(Parms.Tilt); + + if (RotationRate != nullptr) + *RotationRate = std::move(Parms.RotationRate); + + if (Gravity != nullptr) + *Gravity = std::move(Parms.Gravity); + + if (Acceleration != nullptr) + *Acceleration = std::move(Parms.Acceleration); +} + + +// Function Engine.PlayerController.GetInputMouseDelta +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* DeltaX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* DeltaY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::GetInputMouseDelta(float* DeltaX, float* DeltaY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputMouseDelta"); + + Params::PlayerController_GetInputMouseDelta Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (DeltaX != nullptr) + *DeltaX = Parms.DeltaX; + + if (DeltaY != nullptr) + *DeltaY = Parms.DeltaY; +} + + +// Function Engine.PlayerController.GetInputTouchState +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ETouchIndex FingerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LocationX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LocationY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bIsCurrentlyPressed (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::GetInputTouchState(ETouchIndex FingerIndex, float* LocationX, float* LocationY, bool* bIsCurrentlyPressed) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputTouchState"); + + Params::PlayerController_GetInputTouchState Parms{}; + + Parms.FingerIndex = FingerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (LocationX != nullptr) + *LocationX = Parms.LocationX; + + if (LocationY != nullptr) + *LocationY = Parms.LocationY; + + if (bIsCurrentlyPressed != nullptr) + *bIsCurrentlyPressed = Parms.bIsCurrentlyPressed; +} + + +// Function Engine.PlayerController.GetInputVectorKeyState +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector APlayerController::GetInputVectorKeyState(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetInputVectorKeyState"); + + Params::PlayerController_GetInputVectorKeyState Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetMousePosition +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* LocationX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LocationY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::GetMousePosition(float* LocationX, float* LocationY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetMousePosition"); + + Params::PlayerController_GetMousePosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (LocationX != nullptr) + *LocationX = Parms.LocationX; + + if (LocationY != nullptr) + *LocationY = Parms.LocationY; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetOverridePlayerInputClass +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSubclassOf ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSubclassOf APlayerController::GetOverridePlayerInputClass() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetOverridePlayerInputClass"); + + Params::PlayerController_GetOverridePlayerInputClass Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetPlatformUserId +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId APlayerController::GetPlatformUserId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetPlatformUserId"); + + Params::PlayerController_GetPlatformUserId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetSpectatorPawn +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class ASpectatorPawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ASpectatorPawn* APlayerController::GetSpectatorPawn() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetSpectatorPawn"); + + Params::PlayerController_GetSpectatorPawn Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetStreamingSourceLocationAndRotation +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* OutLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void APlayerController::GetStreamingSourceLocationAndRotation(struct FVector* OutLocation, struct FRotator* OutRotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetStreamingSourceLocationAndRotation"); + + Params::PlayerController_GetStreamingSourceLocationAndRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLocation != nullptr) + *OutLocation = std::move(Parms.OutLocation); + + if (OutRotation != nullptr) + *OutRotation = std::move(Parms.OutRotation); +} + + +// Function Engine.PlayerController.GetStreamingSourcePriority +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EStreamingSourcePriority ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EStreamingSourcePriority APlayerController::GetStreamingSourcePriority() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetStreamingSourcePriority"); + + Params::PlayerController_GetStreamingSourcePriority Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.GetStreamingSourceShapes +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* OutShapes (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void APlayerController::GetStreamingSourceShapes(TArray* OutShapes) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetStreamingSourceShapes"); + + Params::PlayerController_GetStreamingSourceShapes Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutShapes != nullptr) + *OutShapes = std::move(Parms.OutShapes); +} + + +// Function Engine.PlayerController.GetViewportSize +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32* SizeX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* SizeY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void APlayerController::GetViewportSize(int32* SizeX, int32* SizeY) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "GetViewportSize"); + + Params::PlayerController_GetViewportSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SizeX != nullptr) + *SizeX = Parms.SizeX; + + if (SizeY != nullptr) + *SizeY = Parms.SizeY; +} + + +// Function Engine.PlayerController.IsInputKeyDown +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::IsInputKeyDown(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "IsInputKeyDown"); + + Params::PlayerController_IsInputKeyDown Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.IsStreamingSourceEnabled +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::IsStreamingSourceEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "IsStreamingSourceEnabled"); + + Params::PlayerController_IsStreamingSourceEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.ProjectWorldLocationToScreen +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* ScreenLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPlayerViewportRelative (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::ProjectWorldLocationToScreen(const struct FVector& WorldLocation, struct FVector2D* ScreenLocation, bool bPlayerViewportRelative) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "ProjectWorldLocationToScreen"); + + Params::PlayerController_ProjectWorldLocationToScreen Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.bPlayerViewportRelative = bPlayerViewportRelative; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ScreenLocation != nullptr) + *ScreenLocation = std::move(Parms.ScreenLocation); + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.StreamingSourceShouldActivate +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::StreamingSourceShouldActivate() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "StreamingSourceShouldActivate"); + + Params::PlayerController_StreamingSourceShouldActivate Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.StreamingSourceShouldBlockOnSlowStreaming +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::StreamingSourceShouldBlockOnSlowStreaming() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "StreamingSourceShouldBlockOnSlowStreaming"); + + Params::PlayerController_StreamingSourceShouldBlockOnSlowStreaming Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.WasInputKeyJustPressed +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::WasInputKeyJustPressed(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "WasInputKeyJustPressed"); + + Params::PlayerController_WasInputKeyJustPressed Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlayerController.WasInputKeyJustReleased +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FKey& Key (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool APlayerController::WasInputKeyJustReleased(const struct FKey& Key) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerController", "WasInputKeyJustReleased"); + + Params::PlayerController_WasInputKeyJustReleased Parms{}; + + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CheatManager.BugIt +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& ScreenShotDescription (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::BugIt(const class FString& ScreenShotDescription) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "BugIt"); + + Params::CheatManager_BugIt Parms{}; + + Parms.ScreenShotDescription = std::move(ScreenShotDescription); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.BugItGo +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// float X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float pitch (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Yaw (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Roll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::BugItGo(float X, float Y, float Z, float pitch, float Yaw, float Roll) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "BugItGo"); + + Params::CheatManager_BugItGo Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + Parms.pitch = pitch; + Parms.Yaw = Yaw; + Parms.Roll = Roll; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.BugItStringCreator +// (RequiredAPI, Exec, Native, Public, HasOutParams, HasDefaults) +// Parameters: +// const struct FVector& ViewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& ViewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FString* GoString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* LocString (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::BugItStringCreator(const struct FVector& ViewLocation, const struct FRotator& ViewRotation, class FString* GoString, class FString* LocString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "BugItStringCreator"); + + Params::CheatManager_BugItStringCreator Parms{}; + + Parms.ViewLocation = std::move(ViewLocation); + Parms.ViewRotation = std::move(ViewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (GoString != nullptr) + *GoString = std::move(Parms.GoString); + + if (LocString != nullptr) + *LocString = std::move(Parms.LocString); +} + + +// Function Engine.CheatManager.ChangeSize +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) +// Parameters: +// float F (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::ChangeSize(float F) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ChangeSize"); + + Params::CheatManager_ChangeSize Parms{}; + + Parms.F = F; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.CheatScript +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& ScriptName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::CheatScript(const class FString& ScriptName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "CheatScript"); + + Params::CheatManager_CheatScript Parms{}; + + Parms.ScriptName = std::move(ScriptName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DamageTarget +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) +// Parameters: +// float DamageAmount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DamageTarget(float DamageAmount) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DamageTarget"); + + Params::CheatManager_DamageTarget Parms{}; + + Parms.DamageAmount = DamageAmount; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweep +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DebugCapsuleSweep() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweep"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepCapture +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DebugCapsuleSweepCapture() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepCapture"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepChannel +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// ECollisionChannel Channel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DebugCapsuleSweepChannel(ECollisionChannel Channel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepChannel"); + + Params::CheatManager_DebugCapsuleSweepChannel Parms{}; + + Parms.Channel = Channel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepClear +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DebugCapsuleSweepClear() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepClear"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepComplex +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DebugCapsuleSweepComplex(bool bTraceComplex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepComplex"); + + Params::CheatManager_DebugCapsuleSweepComplex Parms{}; + + Parms.bTraceComplex = bTraceComplex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepPawn +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DebugCapsuleSweepPawn() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepPawn"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DebugCapsuleSweepSize +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DebugCapsuleSweepSize(float HalfHeight, float Radius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DebugCapsuleSweepSize"); + + Params::CheatManager_DebugCapsuleSweepSize Parms{}; + + Parms.HalfHeight = HalfHeight; + Parms.Radius = Radius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DestroyAll +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// TSubclassOf aClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DestroyAll(TSubclassOf aClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DestroyAll"); + + Params::CheatManager_DestroyAll Parms{}; + + Parms.aClass = aClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DestroyAllPawnsExceptTarget +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DestroyAllPawnsExceptTarget() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DestroyAllPawnsExceptTarget"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DestroyPawns +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// TSubclassOf aClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::DestroyPawns(TSubclassOf aClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DestroyPawns"); + + Params::CheatManager_DestroyPawns Parms{}; + + Parms.aClass = aClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DestroyServerStatReplicator +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::DestroyServerStatReplicator() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DestroyServerStatReplicator"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DestroyTarget +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::DestroyTarget() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DestroyTarget"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DisableDebugCamera +// (RequiredAPI, Native, Protected, BlueprintCallable) + +void UCheatManager::DisableDebugCamera() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DisableDebugCamera"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DumpChatState +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DumpChatState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DumpChatState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DumpOnlineSessionState +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DumpOnlineSessionState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DumpOnlineSessionState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DumpPartyState +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DumpPartyState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DumpPartyState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.DumpVoiceMutingState +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::DumpVoiceMutingState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "DumpVoiceMutingState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.EnableDebugCamera +// (RequiredAPI, Native, Protected, BlueprintCallable) + +void UCheatManager::EnableDebugCamera() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "EnableDebugCamera"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.FlushLog +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::FlushLog() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "FlushLog"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Fly +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::Fly() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Fly"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.FreezeFrame +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) +// Parameters: +// float Delay (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::FreezeFrame(float Delay) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "FreezeFrame"); + + Params::CheatManager_FreezeFrame Parms{}; + + Parms.Delay = Delay; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Ghost +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::Ghost() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Ghost"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.God +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::God() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "God"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.InvertMouse +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::InvertMouse() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "InvertMouse"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.LogLoc +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::LogLoc() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "LogLoc"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.OnlyLoadLevel +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::OnlyLoadLevel(class FName PackageName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "OnlyLoadLevel"); + + Params::CheatManager_OnlyLoadLevel Parms{}; + + Parms.PackageName = PackageName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.OnPlayerEndPlayed +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class AActor* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEndPlayReason EndPlayReason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::OnPlayerEndPlayed(class AActor* Player, EEndPlayReason EndPlayReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "OnPlayerEndPlayed"); + + Params::CheatManager_OnPlayerEndPlayed Parms{}; + + Parms.Player = Player; + Parms.EndPlayReason = EndPlayReason; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.PlayersOnly +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::PlayersOnly() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "PlayersOnly"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ReceiveEndPlay +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UCheatManager::ReceiveEndPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ReceiveEndPlay"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.CheatManager.ReceiveInitCheatManager +// (RequiredAPI, Event, Public, BlueprintEvent) + +void UCheatManager::ReceiveInitCheatManager() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ReceiveInitCheatManager"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.CheatManager.ServerToggleAILogging +// (RequiredAPI, Net, NetReliable, Native, Event, Public, NetServer, NetValidate) + +void UCheatManager::ServerToggleAILogging() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ServerToggleAILogging"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.SetMouseSensitivityToDefault +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::SetMouseSensitivityToDefault() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "SetMouseSensitivityToDefault"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.SetWorldOrigin +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::SetWorldOrigin() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "SetWorldOrigin"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Slomo +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) +// Parameters: +// float NewTimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::Slomo(float NewTimeDilation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Slomo"); + + Params::CheatManager_Slomo Parms{}; + + Parms.NewTimeDilation = NewTimeDilation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.SpawnServerStatReplicator +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::SpawnServerStatReplicator() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "SpawnServerStatReplicator"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.StreamLevelIn +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::StreamLevelIn(class FName PackageName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "StreamLevelIn"); + + Params::CheatManager_StreamLevelIn Parms{}; + + Parms.PackageName = PackageName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.StreamLevelOut +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::StreamLevelOut(class FName PackageName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "StreamLevelOut"); + + Params::CheatManager_StreamLevelOut Parms{}; + + Parms.PackageName = PackageName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Summon +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& ClassName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::Summon(const class FString& ClassName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Summon"); + + Params::CheatManager_Summon Parms{}; + + Parms.ClassName = std::move(ClassName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Teleport +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::Teleport() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Teleport"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.TestCollisionDistance +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::TestCollisionDistance() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "TestCollisionDistance"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ToggleAILogging +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::ToggleAILogging() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ToggleAILogging"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ToggleDebugCamera +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::ToggleDebugCamera() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ToggleDebugCamera"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ToggleServerStatReplicatorClientOverwrite +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::ToggleServerStatReplicatorClientOverwrite() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ToggleServerStatReplicatorClientOverwrite"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ToggleServerStatReplicatorUpdateStatNet +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::ToggleServerStatReplicatorUpdateStatNet() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ToggleServerStatReplicatorUpdateStatNet"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.UpdateSafeArea +// (Final, RequiredAPI, Exec, Native, Public) + +void UCheatManager::UpdateSafeArea() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "UpdateSafeArea"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ViewActor +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName ActorName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::ViewActor(class FName ActorName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ViewActor"); + + Params::CheatManager_ViewActor Parms{}; + + Parms.ActorName = ActorName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ViewClass +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// TSubclassOf DesiredClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::ViewClass(TSubclassOf DesiredClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ViewClass"); + + Params::CheatManager_ViewClass Parms{}; + + Parms.DesiredClass = DesiredClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ViewPlayer +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCheatManager::ViewPlayer(const class FString& S) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ViewPlayer"); + + Params::CheatManager_ViewPlayer Parms{}; + + Parms.S = std::move(S); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.ViewSelf +// (RequiredAPI, Exec, Native, Public) + +void UCheatManager::ViewSelf() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "ViewSelf"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.Walk +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) + +void UCheatManager::Walk() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "Walk"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManager.GetPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UCheatManager::GetPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManager", "GetPlayerController"); + + Params::CheatManager_GetPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CheatManagerExtension.AddedToCheatManager +// (RequiredAPI, Native, Event, Public, BlueprintEvent) + +void UCheatManagerExtension::AddedToCheatManager() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManagerExtension", "AddedToCheatManager"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManagerExtension.RemovedFromCheatManager +// (RequiredAPI, Native, Event, Public, BlueprintEvent) + +void UCheatManagerExtension::RemovedFromCheatManager() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManagerExtension", "RemovedFromCheatManager"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CheatManagerExtension.GetPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UCheatManagerExtension::GetPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CheatManagerExtension", "GetPlayerController"); + + Params::CheatManagerExtension_GetPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ArrowComponent.SetArrowColor +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetArrowColor(const struct FLinearColor& NewColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetArrowColor"); + + Params::ArrowComponent_SetArrowColor Parms{}; + + Parms.NewColor = std::move(NewColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetArrowFColor +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& NewColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetArrowFColor(const struct FColor& NewColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetArrowFColor"); + + Params::ArrowComponent_SetArrowFColor Parms{}; + + Parms.NewColor = std::move(NewColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetArrowLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetArrowLength(float NewLength) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetArrowLength"); + + Params::ArrowComponent_SetArrowLength Parms{}; + + Parms.NewLength = NewLength; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetArrowSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetArrowSize(float NewSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetArrowSize"); + + Params::ArrowComponent_SetArrowSize Parms{}; + + Parms.NewSize = NewSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetIsScreenSizeScaled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetIsScreenSizeScaled(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetIsScreenSizeScaled"); + + Params::ArrowComponent_SetIsScreenSizeScaled Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetScreenSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetScreenSize(float NewScreenSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetScreenSize"); + + Params::ArrowComponent_SetScreenSize Parms{}; + + Parms.NewScreenSize = NewScreenSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetTreatAsASprite +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetTreatAsASprite(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetTreatAsASprite"); + + Params::ArrowComponent_SetTreatAsASprite Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ArrowComponent.SetUseInEditorScaling +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UArrowComponent::SetUseInEditorScaling(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ArrowComponent", "SetUseInEditorScaling"); + + Params::ArrowComponent_SetUseInEditorScaling Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BillboardComponent.SetOpacityMaskRefVal +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float RefVal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBillboardComponent::SetOpacityMaskRefVal(float RefVal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BillboardComponent", "SetOpacityMaskRefVal"); + + Params::BillboardComponent_SetOpacityMaskRefVal Parms{}; + + Parms.RefVal = RefVal; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BillboardComponent.SetSprite +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture2D* NewSprite (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBillboardComponent::SetSprite(class UTexture2D* NewSprite) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BillboardComponent", "SetSprite"); + + Params::BillboardComponent_SetSprite Parms{}; + + Parms.NewSprite = NewSprite; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BillboardComponent.SetSpriteAndUV +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture2D* NewSprite (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewU (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewUL (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewVL (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBillboardComponent::SetSpriteAndUV(class UTexture2D* NewSprite, int32 NewU, int32 NewUL, int32 NewV, int32 NewVL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BillboardComponent", "SetSpriteAndUV"); + + Params::BillboardComponent_SetSpriteAndUV Parms{}; + + Parms.NewSprite = NewSprite; + Parms.NewU = NewU; + Parms.NewUL = NewUL; + Parms.NewV = NewV; + Parms.NewVL = NewVL; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BillboardComponent.SetUV +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewU (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewUL (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NewVL (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBillboardComponent::SetUV(int32 NewU, int32 NewUL, int32 NewV, int32 NewVL) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("BillboardComponent", "SetUV"); + + Params::BillboardComponent_SetUV Parms{}; + + Parms.NewU = NewU; + Parms.NewUL = NewUL; + Parms.NewV = NewV; + Parms.NewVL = NewVL; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CapsuleComponent.SetCapsuleHalfHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::SetCapsuleHalfHeight(float HalfHeight, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "SetCapsuleHalfHeight"); + + Params::CapsuleComponent_SetCapsuleHalfHeight Parms{}; + + Parms.HalfHeight = HalfHeight; + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CapsuleComponent.SetCapsuleRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::SetCapsuleRadius(float Radius, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "SetCapsuleRadius"); + + Params::CapsuleComponent_SetCapsuleRadius Parms{}; + + Parms.Radius = Radius; + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CapsuleComponent.SetCapsuleSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InHalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateOverlaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::SetCapsuleSize(float InRadius, float InHalfHeight, bool bUpdateOverlaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "SetCapsuleSize"); + + Params::CapsuleComponent_SetCapsuleSize Parms{}; + + Parms.InRadius = InRadius; + Parms.InHalfHeight = InHalfHeight; + Parms.bUpdateOverlaps = bUpdateOverlaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CapsuleComponent.GetScaledCapsuleHalfHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetScaledCapsuleHalfHeight() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetScaledCapsuleHalfHeight"); + + Params::CapsuleComponent_GetScaledCapsuleHalfHeight Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetScaledCapsuleHalfHeight_WithoutHemisphere +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetScaledCapsuleHalfHeight_WithoutHemisphere() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetScaledCapsuleHalfHeight_WithoutHemisphere"); + + Params::CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetScaledCapsuleRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetScaledCapsuleRadius() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetScaledCapsuleRadius"); + + Params::CapsuleComponent_GetScaledCapsuleRadius Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetScaledCapsuleSize +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* OutRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutHalfHeight (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::GetScaledCapsuleSize(float* OutRadius, float* OutHalfHeight) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetScaledCapsuleSize"); + + Params::CapsuleComponent_GetScaledCapsuleSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRadius != nullptr) + *OutRadius = Parms.OutRadius; + + if (OutHalfHeight != nullptr) + *OutHalfHeight = Parms.OutHalfHeight; +} + + +// Function Engine.CapsuleComponent.GetScaledCapsuleSize_WithoutHemisphere +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* OutRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutHalfHeightWithoutHemisphere (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::GetScaledCapsuleSize_WithoutHemisphere(float* OutRadius, float* OutHalfHeightWithoutHemisphere) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetScaledCapsuleSize_WithoutHemisphere"); + + Params::CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRadius != nullptr) + *OutRadius = Parms.OutRadius; + + if (OutHalfHeightWithoutHemisphere != nullptr) + *OutHalfHeightWithoutHemisphere = Parms.OutHalfHeightWithoutHemisphere; +} + + +// Function Engine.CapsuleComponent.GetShapeScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetShapeScale() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetShapeScale"); + + Params::CapsuleComponent_GetShapeScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleHalfHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetUnscaledCapsuleHalfHeight() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetUnscaledCapsuleHalfHeight"); + + Params::CapsuleComponent_GetUnscaledCapsuleHalfHeight Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleHalfHeight_WithoutHemisphere +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetUnscaledCapsuleHalfHeight_WithoutHemisphere() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetUnscaledCapsuleHalfHeight_WithoutHemisphere"); + + Params::CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCapsuleComponent::GetUnscaledCapsuleRadius() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetUnscaledCapsuleRadius"); + + Params::CapsuleComponent_GetUnscaledCapsuleRadius Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleSize +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* OutRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutHalfHeight (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::GetUnscaledCapsuleSize(float* OutRadius, float* OutHalfHeight) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetUnscaledCapsuleSize"); + + Params::CapsuleComponent_GetUnscaledCapsuleSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRadius != nullptr) + *OutRadius = Parms.OutRadius; + + if (OutHalfHeight != nullptr) + *OutHalfHeight = Parms.OutHalfHeight; +} + + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleSize_WithoutHemisphere +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* OutRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutHalfHeightWithoutHemisphere (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCapsuleComponent::GetUnscaledCapsuleSize_WithoutHemisphere(float* OutRadius, float* OutHalfHeightWithoutHemisphere) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CapsuleComponent", "GetUnscaledCapsuleSize_WithoutHemisphere"); + + Params::CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRadius != nullptr) + *OutRadius = Parms.OutRadius; + + if (OutHalfHeightWithoutHemisphere != nullptr) + *OutHalfHeightWithoutHemisphere = Parms.OutHalfHeightWithoutHemisphere; +} + + +// Function Engine.CharacterMovementComponent.AddForce +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Force (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::AddForce(const struct FVector& Force) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "AddForce"); + + Params::CharacterMovementComponent_AddForce Parms{}; + + Parms.Force = std::move(Force); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.AddImpulse +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Impulse (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bVelocityChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::AddImpulse(const struct FVector& Impulse, bool bVelocityChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "AddImpulse"); + + Params::CharacterMovementComponent_AddImpulse Parms{}; + + Parms.Impulse = std::move(Impulse); + Parms.bVelocityChange = bVelocityChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.CalcVelocity +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Friction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFluid (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BrakingDeceleration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::CalcVelocity(float DeltaTime, float Friction, bool bFluid, float BrakingDeceleration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "CalcVelocity"); + + Params::CharacterMovementComponent_CalcVelocity Parms{}; + + Parms.DeltaTime = DeltaTime; + Parms.Friction = Friction; + Parms.bFluid = bFluid; + Parms.BrakingDeceleration = BrakingDeceleration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.CapsuleTouched +// (RequiredAPI, Native, Protected, HasOutParams) +// Parameters: +// class UPrimitiveComponent* OverlappedComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* Other (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* OtherComp (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 OtherBodyIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFromSweep (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& SweepResult (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::CapsuleTouched(class UPrimitiveComponent* OverlappedComp, class AActor* Other, class UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const struct FHitResult& SweepResult) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "CapsuleTouched"); + + Params::CharacterMovementComponent_CapsuleTouched Parms{}; + + Parms.OverlappedComp = OverlappedComp; + Parms.Other = Other; + Parms.OtherComp = OtherComp; + Parms.OtherBodyIndex = OtherBodyIndex; + Parms.bFromSweep = bFromSweep; + Parms.SweepResult = std::move(SweepResult); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.ClearAccumulatedForces +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UCharacterMovementComponent::ClearAccumulatedForces() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "ClearAccumulatedForces"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.DisableMovement +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UCharacterMovementComponent::DisableMovement() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "DisableMovement"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetAvoidanceEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetAvoidanceEnabled(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetAvoidanceEnabled"); + + Params::CharacterMovementComponent_SetAvoidanceEnabled Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetAvoidanceGroup +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 GroupFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetAvoidanceGroup(int32 GroupFlags) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetAvoidanceGroup"); + + Params::CharacterMovementComponent_SetAvoidanceGroup Parms{}; + + Parms.GroupFlags = GroupFlags; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetAvoidanceGroupMask +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FNavAvoidanceMask& GroupMask (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetAvoidanceGroupMask(const struct FNavAvoidanceMask& GroupMask) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetAvoidanceGroupMask"); + + Params::CharacterMovementComponent_SetAvoidanceGroupMask Parms{}; + + Parms.GroupMask = std::move(GroupMask); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetCrouchedHalfHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const float NewValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetCrouchedHalfHeight(const float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetCrouchedHalfHeight"); + + Params::CharacterMovementComponent_SetCrouchedHalfHeight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetGravityDirection +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& GravityDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetGravityDirection(const struct FVector& GravityDir) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetGravityDirection"); + + Params::CharacterMovementComponent_SetGravityDirection Parms{}; + + Parms.GravityDir = std::move(GravityDir); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetGroupsToAvoid +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 GroupFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetGroupsToAvoid(int32 GroupFlags) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetGroupsToAvoid"); + + Params::CharacterMovementComponent_SetGroupsToAvoid Parms{}; + + Parms.GroupFlags = GroupFlags; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetGroupsToAvoidMask +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FNavAvoidanceMask& GroupMask (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetGroupsToAvoidMask(const struct FNavAvoidanceMask& GroupMask) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetGroupsToAvoidMask"); + + Params::CharacterMovementComponent_SetGroupsToAvoidMask Parms{}; + + Parms.GroupMask = std::move(GroupMask); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetGroupsToIgnore +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 GroupFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetGroupsToIgnore(int32 GroupFlags) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetGroupsToIgnore"); + + Params::CharacterMovementComponent_SetGroupsToIgnore Parms{}; + + Parms.GroupFlags = GroupFlags; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetGroupsToIgnoreMask +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FNavAvoidanceMask& GroupMask (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetGroupsToIgnoreMask(const struct FNavAvoidanceMask& GroupMask) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetGroupsToIgnoreMask"); + + Params::CharacterMovementComponent_SetGroupsToIgnoreMask Parms{}; + + Parms.GroupMask = std::move(GroupMask); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetMovementMode +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EMovementMode NewMovementMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 NewCustomMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetMovementMode(EMovementMode NewMovementMode, uint8 NewCustomMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetMovementMode"); + + Params::CharacterMovementComponent_SetMovementMode Parms{}; + + Parms.NewMovementMode = NewMovementMode; + Parms.NewCustomMode = NewCustomMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetWalkableFloorAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InWalkableFloorAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetWalkableFloorAngle(float InWalkableFloorAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetWalkableFloorAngle"); + + Params::CharacterMovementComponent_SetWalkableFloorAngle Parms{}; + + Parms.InWalkableFloorAngle = InWalkableFloorAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.SetWalkableFloorZ +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InWalkableFloorZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::SetWalkableFloorZ(float InWalkableFloorZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "SetWalkableFloorZ"); + + Params::CharacterMovementComponent_SetWalkableFloorZ Parms{}; + + Parms.InWalkableFloorZ = InWalkableFloorZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CharacterMovementComponent.GetAnalogInputModifier +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetAnalogInputModifier() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetAnalogInputModifier"); + + Params::CharacterMovementComponent_GetAnalogInputModifier Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetCharacterOwner +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class ACharacter* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ACharacter* UCharacterMovementComponent::GetCharacterOwner() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetCharacterOwner"); + + Params::CharacterMovementComponent_GetCharacterOwner Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetCrouchedHalfHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetCrouchedHalfHeight() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetCrouchedHalfHeight"); + + Params::CharacterMovementComponent_GetCrouchedHalfHeight Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetCurrentAcceleration +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetCurrentAcceleration() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetCurrentAcceleration"); + + Params::CharacterMovementComponent_GetCurrentAcceleration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetGravityDirection +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetGravityDirection() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetGravityDirection"); + + Params::CharacterMovementComponent_GetGravityDirection Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetImpartedMovementBaseVelocity +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetImpartedMovementBaseVelocity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetImpartedMovementBaseVelocity"); + + Params::CharacterMovementComponent_GetImpartedMovementBaseVelocity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetLastUpdateLocation +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetLastUpdateLocation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetLastUpdateLocation"); + + Params::CharacterMovementComponent_GetLastUpdateLocation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetLastUpdateRequestedVelocity +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetLastUpdateRequestedVelocity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetLastUpdateRequestedVelocity"); + + Params::CharacterMovementComponent_GetLastUpdateRequestedVelocity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetLastUpdateRotation +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UCharacterMovementComponent::GetLastUpdateRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetLastUpdateRotation"); + + Params::CharacterMovementComponent_GetLastUpdateRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetLastUpdateVelocity +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCharacterMovementComponent::GetLastUpdateVelocity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetLastUpdateVelocity"); + + Params::CharacterMovementComponent_GetLastUpdateVelocity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMaxAcceleration +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetMaxAcceleration() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMaxAcceleration"); + + Params::CharacterMovementComponent_GetMaxAcceleration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMaxBrakingDeceleration +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetMaxBrakingDeceleration() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMaxBrakingDeceleration"); + + Params::CharacterMovementComponent_GetMaxBrakingDeceleration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMaxJumpHeight +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetMaxJumpHeight() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMaxJumpHeight"); + + Params::CharacterMovementComponent_GetMaxJumpHeight Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMaxJumpHeightWithJumpTime +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetMaxJumpHeightWithJumpTime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMaxJumpHeightWithJumpTime"); + + Params::CharacterMovementComponent_GetMaxJumpHeightWithJumpTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMinAnalogSpeed +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetMinAnalogSpeed() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMinAnalogSpeed"); + + Params::CharacterMovementComponent_GetMinAnalogSpeed Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetMovementBase +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPrimitiveComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPrimitiveComponent* UCharacterMovementComponent::GetMovementBase() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetMovementBase"); + + Params::CharacterMovementComponent_GetMovementBase Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetPerchRadiusThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetPerchRadiusThreshold() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetPerchRadiusThreshold"); + + Params::CharacterMovementComponent_GetPerchRadiusThreshold Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.GetValidPerchRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::GetValidPerchRadius() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "GetValidPerchRadius"); + + Params::CharacterMovementComponent_GetValidPerchRadius Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.HasCustomGravity +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCharacterMovementComponent::HasCustomGravity() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "HasCustomGravity"); + + Params::CharacterMovementComponent_HasCustomGravity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.IsWalkable +// (RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCharacterMovementComponent::IsWalkable(const struct FHitResult& Hit) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "IsWalkable"); + + Params::CharacterMovementComponent_IsWalkable Parms{}; + + Parms.Hit = std::move(Hit); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.IsWalking +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCharacterMovementComponent::IsWalking() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "IsWalking"); + + Params::CharacterMovementComponent_IsWalking Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.K2_ComputeFloorDist +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& CapsuleLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LineDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SweepDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SweepRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FFindFloorResult* FloorResult (Parm, OutParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::K2_ComputeFloorDist(const struct FVector& CapsuleLocation, float LineDistance, float SweepDistance, float SweepRadius, struct FFindFloorResult* FloorResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "K2_ComputeFloorDist"); + + Params::CharacterMovementComponent_K2_ComputeFloorDist Parms{}; + + Parms.CapsuleLocation = std::move(CapsuleLocation); + Parms.LineDistance = LineDistance; + Parms.SweepDistance = SweepDistance; + Parms.SweepRadius = SweepRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (FloorResult != nullptr) + *FloorResult = std::move(Parms.FloorResult); +} + + +// Function Engine.CharacterMovementComponent.K2_FindFloor +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& CapsuleLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FFindFloorResult* FloorResult (Parm, OutParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UCharacterMovementComponent::K2_FindFloor(const struct FVector& CapsuleLocation, struct FFindFloorResult* FloorResult) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "K2_FindFloor"); + + Params::CharacterMovementComponent_K2_FindFloor Parms{}; + + Parms.CapsuleLocation = std::move(CapsuleLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (FloorResult != nullptr) + *FloorResult = std::move(Parms.FloorResult); +} + + +// Function Engine.CharacterMovementComponent.K2_GetWalkableFloorAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::K2_GetWalkableFloorAngle() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "K2_GetWalkableFloorAngle"); + + Params::CharacterMovementComponent_K2_GetWalkableFloorAngle Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CharacterMovementComponent.K2_GetWalkableFloorZ +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCharacterMovementComponent::K2_GetWalkableFloorZ() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CharacterMovementComponent", "K2_GetWalkableFloorZ"); + + Params::CharacterMovementComponent_K2_GetWalkableFloorZ Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.CreateDynamicMaterialInstance +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UDecalComponent::CreateDynamicMaterialInstance() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "CreateDynamicMaterialInstance"); + + Params::DecalComponent_CreateDynamicMaterialInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.SetDecalColor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& Color (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetDecalColor(const struct FLinearColor& Color) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetDecalColor"); + + Params::DecalComponent_SetDecalColor Parms{}; + + Parms.Color = std::move(Color); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.SetDecalMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewDecalMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetDecalMaterial(class UMaterialInterface* NewDecalMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetDecalMaterial"); + + Params::DecalComponent_SetDecalMaterial Parms{}; + + Parms.NewDecalMaterial = NewDecalMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.SetFadeIn +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartDelay (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetFadeIn(float StartDelay, float duration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetFadeIn"); + + Params::DecalComponent_SetFadeIn Parms{}; + + Parms.StartDelay = StartDelay; + Parms.duration = duration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.SetFadeOut +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartDelay (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool DestroyOwnerAfterFade (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetFadeOut(float StartDelay, float duration, bool DestroyOwnerAfterFade) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetFadeOut"); + + Params::DecalComponent_SetFadeOut Parms{}; + + Parms.StartDelay = StartDelay; + Parms.duration = duration; + Parms.DestroyOwnerAfterFade = DestroyOwnerAfterFade; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.SetFadeScreenSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewFadeScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetFadeScreenSize(float NewFadeScreenSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetFadeScreenSize"); + + Params::DecalComponent_SetFadeScreenSize Parms{}; + + Parms.NewFadeScreenSize = NewFadeScreenSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.SetSortOrder +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDecalComponent::SetSortOrder(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "SetSortOrder"); + + Params::DecalComponent_SetSortOrder Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalComponent.GetDecalMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UDecalComponent::GetDecalMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "GetDecalMaterial"); + + Params::DecalComponent_GetDecalMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.GetFadeDuration +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UDecalComponent::GetFadeDuration() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "GetFadeDuration"); + + Params::DecalComponent_GetFadeDuration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.GetFadeInDuration +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UDecalComponent::GetFadeInDuration() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "GetFadeInDuration"); + + Params::DecalComponent_GetFadeInDuration Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.GetFadeInStartDelay +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UDecalComponent::GetFadeInStartDelay() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "GetFadeInStartDelay"); + + Params::DecalComponent_GetFadeInStartDelay Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalComponent.GetFadeStartDelay +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UDecalComponent::GetFadeStartDelay() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalComponent", "GetFadeStartDelay"); + + Params::DecalComponent_GetFadeStartDelay Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunDiskColorScale +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetAtmosphereSunDiskColorScale(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetAtmosphereSunDiskColorScale"); + + Params::DirectionalLightComponent_SetAtmosphereSunDiskColorScale Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunLight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetAtmosphereSunLight(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetAtmosphereSunLight"); + + Params::DirectionalLightComponent_SetAtmosphereSunLight Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunLightIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetAtmosphereSunLightIndex(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetAtmosphereSunLightIndex"); + + Params::DirectionalLightComponent_SetAtmosphereSunLightIndex Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetCascadeDistributionExponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetCascadeDistributionExponent(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetCascadeDistributionExponent"); + + Params::DirectionalLightComponent_SetCascadeDistributionExponent Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetCascadeTransitionFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetCascadeTransitionFraction(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetCascadeTransitionFraction"); + + Params::DirectionalLightComponent_SetCascadeTransitionFraction Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetDynamicShadowCascades +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetDynamicShadowCascades(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetDynamicShadowCascades"); + + Params::DirectionalLightComponent_SetDynamicShadowCascades Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetDynamicShadowDistanceMovableLight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetDynamicShadowDistanceMovableLight(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetDynamicShadowDistanceMovableLight"); + + Params::DirectionalLightComponent_SetDynamicShadowDistanceMovableLight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetDynamicShadowDistanceStationaryLight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetDynamicShadowDistanceStationaryLight(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetDynamicShadowDistanceStationaryLight"); + + Params::DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetEnableLightShaftOcclusion +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetEnableLightShaftOcclusion(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetEnableLightShaftOcclusion"); + + Params::DirectionalLightComponent_SetEnableLightShaftOcclusion Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetForwardShadingPriority +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetForwardShadingPriority(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetForwardShadingPriority"); + + Params::DirectionalLightComponent_SetForwardShadingPriority Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetLightShaftOverrideDirection +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetLightShaftOverrideDirection(const struct FVector& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetLightShaftOverrideDirection"); + + Params::DirectionalLightComponent_SetLightShaftOverrideDirection Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetLightSourceAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetLightSourceAngle(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetLightSourceAngle"); + + Params::DirectionalLightComponent_SetLightSourceAngle Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetLightSourceSoftAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetLightSourceSoftAngle(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetLightSourceSoftAngle"); + + Params::DirectionalLightComponent_SetLightSourceSoftAngle Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetOcclusionDepthRange +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetOcclusionDepthRange(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetOcclusionDepthRange"); + + Params::DirectionalLightComponent_SetOcclusionDepthRange Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetOcclusionMaskDarkness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetOcclusionMaskDarkness(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetOcclusionMaskDarkness"); + + Params::DirectionalLightComponent_SetOcclusionMaskDarkness Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetShadowAmount +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetShadowAmount(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetShadowAmount"); + + Params::DirectionalLightComponent_SetShadowAmount Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetShadowCascadeBiasDistribution +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetShadowCascadeBiasDistribution(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetShadowCascadeBiasDistribution"); + + Params::DirectionalLightComponent_SetShadowCascadeBiasDistribution Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetShadowDistanceFadeoutFraction +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetShadowDistanceFadeoutFraction(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetShadowDistanceFadeoutFraction"); + + Params::DirectionalLightComponent_SetShadowDistanceFadeoutFraction Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DirectionalLightComponent.SetShadowSourceAngleFactor +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDirectionalLightComponent::SetShadowSourceAngleFactor(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DirectionalLightComponent", "SetShadowSourceAngleFactor"); + + Params::DirectionalLightComponent_SetShadowSourceAngleFactor Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.AdjustAttenuation +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FForceFeedbackAttenuationSettings&InAttenuationSettings (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UForceFeedbackComponent::AdjustAttenuation(const struct FForceFeedbackAttenuationSettings& InAttenuationSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "AdjustAttenuation"); + + Params::ForceFeedbackComponent_AdjustAttenuation Parms{}; + + Parms.InAttenuationSettings = std::move(InAttenuationSettings); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.Play +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UForceFeedbackComponent::Play(float StartTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "Play"); + + Params::ForceFeedbackComponent_Play Parms{}; + + Parms.StartTime = StartTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.SetForceFeedbackEffect +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UForceFeedbackEffect* NewForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UForceFeedbackComponent::SetForceFeedbackEffect(class UForceFeedbackEffect* NewForceFeedbackEffect) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "SetForceFeedbackEffect"); + + Params::ForceFeedbackComponent_SetForceFeedbackEffect Parms{}; + + Parms.NewForceFeedbackEffect = NewForceFeedbackEffect; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.SetIntensityMultiplier +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewIntensityMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UForceFeedbackComponent::SetIntensityMultiplier(float NewIntensityMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "SetIntensityMultiplier"); + + Params::ForceFeedbackComponent_SetIntensityMultiplier Parms{}; + + Parms.NewIntensityMultiplier = NewIntensityMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.Stop +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UForceFeedbackComponent::Stop() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "Stop"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ForceFeedbackComponent.BP_GetAttenuationSettingsToApply +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FForceFeedbackAttenuationSettings*OutAttenuationSettings (Parm, OutParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UForceFeedbackComponent::BP_GetAttenuationSettingsToApply(struct FForceFeedbackAttenuationSettings* OutAttenuationSettings) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ForceFeedbackComponent", "BP_GetAttenuationSettingsToApply"); + + Params::ForceFeedbackComponent_BP_GetAttenuationSettingsToApply Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutAttenuationSettings != nullptr) + *OutAttenuationSettings = std::move(Parms.OutAttenuationSettings); + + return Parms.ReturnValue; +} + + +// Function Engine.HeterogeneousVolumeComponent.Play +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UHeterogeneousVolumeComponent::Play() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "Play"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetEndFrame +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetEndFrame(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetEndFrame"); + + Params::HeterogeneousVolumeComponent_SetEndFrame Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetFrame +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetFrame(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetFrame"); + + Params::HeterogeneousVolumeComponent_SetFrame Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetFrameRate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetFrameRate(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetFrameRate"); + + Params::HeterogeneousVolumeComponent_SetFrameRate Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetLooping +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetLooping(bool NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetLooping"); + + Params::HeterogeneousVolumeComponent_SetLooping Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetPlaying +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetPlaying(bool NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetPlaying"); + + Params::HeterogeneousVolumeComponent_SetPlaying Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetStartFrame +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetStartFrame(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetStartFrame"); + + Params::HeterogeneousVolumeComponent_SetStartFrame Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetStreamingMipBias +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetStreamingMipBias(int32 NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetStreamingMipBias"); + + Params::HeterogeneousVolumeComponent_SetStreamingMipBias Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HeterogeneousVolumeComponent.SetVolumeResolution +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FIntVector& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHeterogeneousVolumeComponent::SetVolumeResolution(const struct FIntVector& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("HeterogeneousVolumeComponent", "SetVolumeResolution"); + + Params::HeterogeneousVolumeComponent_SetVolumeResolution Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InterpToMovementComponent.AddControlPointPosition +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Pos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPositionIsRelative (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInterpToMovementComponent::AddControlPointPosition(const struct FVector& Pos, bool bPositionIsRelative) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InterpToMovementComponent", "AddControlPointPosition"); + + Params::InterpToMovementComponent_AddControlPointPosition Parms{}; + + Parms.Pos = std::move(Pos); + Parms.bPositionIsRelative = bPositionIsRelative; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InterpToMovementComponent.FinaliseControlPoints +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UInterpToMovementComponent::FinaliseControlPoints() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InterpToMovementComponent", "FinaliseControlPoints"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InterpToMovementComponent.ResetControlPoints +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UInterpToMovementComponent::ResetControlPoints() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InterpToMovementComponent", "ResetControlPoints"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InterpToMovementComponent.RestartMovement +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float InitialDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInterpToMovementComponent::RestartMovement(float InitialDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InterpToMovementComponent", "RestartMovement"); + + Params::InterpToMovementComponent_RestartMovement Parms{}; + + Parms.InitialDirection = InitialDirection; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InterpToMovementComponent.StopSimulating +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FHitResult& HitResult (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void UInterpToMovementComponent::StopSimulating(const struct FHitResult& HitResult) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InterpToMovementComponent", "StopSimulating"); + + Params::InterpToMovementComponent_StopSimulating Parms{}; + + Parms.HitResult = std::move(HitResult); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetFogAlbedo +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetFogAlbedo(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetFogAlbedo"); + + Params::LocalFogVolumeComponent_SetFogAlbedo Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetFogEmissive +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetFogEmissive(const struct FLinearColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetFogEmissive"); + + Params::LocalFogVolumeComponent_SetFogEmissive Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetFogPhaseG +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetFogPhaseG(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetFogPhaseG"); + + Params::LocalFogVolumeComponent_SetFogPhaseG Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetHeightFogExtinction +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetHeightFogExtinction(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetHeightFogExtinction"); + + Params::LocalFogVolumeComponent_SetHeightFogExtinction Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetHeightFogFalloff +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetHeightFogFalloff(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetHeightFogFalloff"); + + Params::LocalFogVolumeComponent_SetHeightFogFalloff Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetHeightFogOffset +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetHeightFogOffset(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetHeightFogOffset"); + + Params::LocalFogVolumeComponent_SetHeightFogOffset Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalFogVolumeComponent.SetRadialFogExtinction +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalFogVolumeComponent::SetRadialFogExtinction(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalFogVolumeComponent", "SetRadialFogExtinction"); + + Params::LocalFogVolumeComponent_SetRadialFogExtinction Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialBillboardComponent.AddElement +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCurveFloat* DistanceToOpacityCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSizeIsInScreenSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseSizeX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseSizeY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCurveFloat* DistanceToSizeCurve (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMaterialBillboardComponent::AddElement(class UMaterialInterface* Material, class UCurveFloat* DistanceToOpacityCurve, bool bSizeIsInScreenSpace, float BaseSizeX, float BaseSizeY, class UCurveFloat* DistanceToSizeCurve) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialBillboardComponent", "AddElement"); + + Params::MaterialBillboardComponent_AddElement Parms{}; + + Parms.Material = Material; + Parms.DistanceToOpacityCurve = DistanceToOpacityCurve; + Parms.bSizeIsInScreenSpace = bSizeIsInScreenSpace; + Parms.BaseSizeX = BaseSizeX; + Parms.BaseSizeY = BaseSizeY; + Parms.DistanceToSizeCurve = DistanceToSizeCurve; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialBillboardComponent.SetElements +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&NewElements (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UMaterialBillboardComponent::SetElements(const TArray& NewElements) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialBillboardComponent", "SetElements"); + + Params::MaterialBillboardComponent_SetElements Parms{}; + + Parms.NewElements = std::move(NewElements); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlatformEventsComponent.IsInLaptopMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPlatformEventsComponent::IsInLaptopMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformEventsComponent", "IsInLaptopMode"); + + Params::PlatformEventsComponent_IsInLaptopMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlatformEventsComponent.IsInTabletMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPlatformEventsComponent::IsInTabletMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformEventsComponent", "IsInTabletMode"); + + Params::PlatformEventsComponent_IsInTabletMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PlatformEventsComponent.SupportsConvertibleLaptops +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPlatformEventsComponent::SupportsConvertibleLaptops() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlatformEventsComponent", "SupportsConvertibleLaptops"); + + Params::PlatformEventsComponent_SupportsConvertibleLaptops Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PointLightComponent.SetInverseExposureBlend +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewInverseExposureBlend (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetInverseExposureBlend(float NewInverseExposureBlend) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetInverseExposureBlend"); + + Params::PointLightComponent_SetInverseExposureBlend Parms{}; + + Parms.NewInverseExposureBlend = NewInverseExposureBlend; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLightComponent.SetLightFalloffExponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLightFalloffExponent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetLightFalloffExponent(float NewLightFalloffExponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetLightFalloffExponent"); + + Params::PointLightComponent_SetLightFalloffExponent Parms{}; + + Parms.NewLightFalloffExponent = NewLightFalloffExponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLightComponent.SetSoftSourceRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetSoftSourceRadius(float bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetSoftSourceRadius"); + + Params::PointLightComponent_SetSoftSourceRadius Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLightComponent.SetSourceLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetSourceLength(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetSourceLength"); + + Params::PointLightComponent_SetSourceLength Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLightComponent.SetSourceRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetSourceRadius(float bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetSourceRadius"); + + Params::PointLightComponent_SetSourceRadius Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PointLightComponent.SetUseInverseSquaredFalloff +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPointLightComponent::SetUseInverseSquaredFalloff(bool bNewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PointLightComponent", "SetUseInverseSquaredFalloff"); + + Params::PointLightComponent_SetUseInverseSquaredFalloff Parms{}; + + Parms.bNewValue = bNewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.CopyPoseFromSkeletalComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshComponent* InComponentToCopy (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::CopyPoseFromSkeletalComponent(class USkeletalMeshComponent* InComponentToCopy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "CopyPoseFromSkeletalComponent"); + + Params::PoseableMeshComponent_CopyPoseFromSkeletalComponent Parms{}; + + Parms.InComponentToCopy = InComponentToCopy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.GetBoneLocationByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPoseableMeshComponent::GetBoneLocationByName(class FName BoneName, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "GetBoneLocationByName"); + + Params::PoseableMeshComponent_GetBoneLocationByName Parms{}; + + Parms.BoneName = BoneName; + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PoseableMeshComponent.GetBoneRotationByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UPoseableMeshComponent::GetBoneRotationByName(class FName BoneName, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "GetBoneRotationByName"); + + Params::PoseableMeshComponent_GetBoneRotationByName Parms{}; + + Parms.BoneName = BoneName; + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PoseableMeshComponent.GetBoneScaleByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPoseableMeshComponent::GetBoneScaleByName(class FName BoneName, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "GetBoneScaleByName"); + + Params::PoseableMeshComponent_GetBoneScaleByName Parms{}; + + Parms.BoneName = BoneName; + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PoseableMeshComponent.GetBoneTransformByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UPoseableMeshComponent::GetBoneTransformByName(class FName BoneName, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "GetBoneTransformByName"); + + Params::PoseableMeshComponent_GetBoneTransformByName Parms{}; + + Parms.BoneName = BoneName; + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PoseableMeshComponent.ResetBoneTransformByName +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::ResetBoneTransformByName(class FName BoneName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "ResetBoneTransformByName"); + + Params::PoseableMeshComponent_ResetBoneTransformByName Parms{}; + + Parms.BoneName = BoneName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.SetBoneLocationByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::SetBoneLocationByName(class FName BoneName, const struct FVector& InLocation, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "SetBoneLocationByName"); + + Params::PoseableMeshComponent_SetBoneLocationByName Parms{}; + + Parms.BoneName = BoneName; + Parms.InLocation = std::move(InLocation); + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.SetBoneRotationByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& InRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::SetBoneRotationByName(class FName BoneName, const struct FRotator& InRotation, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "SetBoneRotationByName"); + + Params::PoseableMeshComponent_SetBoneRotationByName Parms{}; + + Parms.BoneName = BoneName; + Parms.InRotation = std::move(InRotation); + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.SetBoneScaleByName +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InScale3D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::SetBoneScaleByName(class FName BoneName, const struct FVector& InScale3D, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "SetBoneScaleByName"); + + Params::PoseableMeshComponent_SetBoneScaleByName Parms{}; + + Parms.BoneName = BoneName; + Parms.InScale3D = std::move(InScale3D); + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PoseableMeshComponent.SetBoneTransformByName +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& InTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBoneSpaces BoneSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPoseableMeshComponent::SetBoneTransformByName(class FName BoneName, const struct FTransform& InTransform, EBoneSpaces BoneSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PoseableMeshComponent", "SetBoneTransformByName"); + + Params::PoseableMeshComponent_SetBoneTransformByName Parms{}; + + Parms.BoneName = BoneName; + Parms.InTransform = std::move(InTransform); + Parms.BoneSpace = BoneSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RectLightComponent.SetBarnDoorAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URectLightComponent::SetBarnDoorAngle(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RectLightComponent", "SetBarnDoorAngle"); + + Params::RectLightComponent_SetBarnDoorAngle Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RectLightComponent.SetBarnDoorLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URectLightComponent::SetBarnDoorLength(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RectLightComponent", "SetBarnDoorLength"); + + Params::RectLightComponent_SetBarnDoorLength Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RectLightComponent.SetSourceHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URectLightComponent::SetSourceHeight(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RectLightComponent", "SetSourceHeight"); + + Params::RectLightComponent_SetSourceHeight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RectLightComponent.SetSourceTexture +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture* NewValue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URectLightComponent::SetSourceTexture(class UTexture* NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RectLightComponent", "SetSourceTexture"); + + Params::RectLightComponent_SetSourceTexture Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RectLightComponent.SetSourceWidth +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URectLightComponent::SetSourceWidth(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RectLightComponent", "SetSourceWidth"); + + Params::RectLightComponent_SetSourceWidth Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddPoint +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSplinePoint& Point (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddPoint(const struct FSplinePoint& Point, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddPoint"); + + Params::SplineComponent_AddPoint Parms{}; + + Parms.Point = std::move(Point); + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddPoints +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& Points (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddPoints(const TArray& Points, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddPoints"); + + Params::SplineComponent_AddPoints Parms{}; + + Parms.Points = std::move(Points); + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddSplineLocalPoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& position (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddSplineLocalPoint(const struct FVector& position) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddSplineLocalPoint"); + + Params::SplineComponent_AddSplineLocalPoint Parms{}; + + Parms.position = std::move(position); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& position (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddSplinePoint(const struct FVector& position, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddSplinePoint"); + + Params::SplineComponent_AddSplinePoint Parms{}; + + Parms.position = std::move(position); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddSplinePointAtIndex +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& position (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddSplinePointAtIndex(const struct FVector& position, int32 Index_0, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddSplinePointAtIndex"); + + Params::SplineComponent_AddSplinePointAtIndex Parms{}; + + Parms.position = std::move(position); + Parms.Index_0 = Index_0; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.AddSplineWorldPoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& position (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::AddSplineWorldPoint(const struct FVector& position) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "AddSplineWorldPoint"); + + Params::SplineComponent_AddSplineWorldPoint Parms{}; + + Parms.position = std::move(position); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.ClearSplinePoints +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::ClearSplinePoints(bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ClearSplinePoints"); + + Params::SplineComponent_ClearSplinePoints Parms{}; + + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.RemoveSplinePoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::RemoveSplinePoint(int32 Index_0, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "RemoveSplinePoint"); + + Params::SplineComponent_RemoveSplinePoint Parms{}; + + Parms.Index_0 = Index_0; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetClosedLoop +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInClosedLoop (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetClosedLoop(bool bInClosedLoop, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetClosedLoop"); + + Params::SplineComponent_SetClosedLoop Parms{}; + + Parms.bInClosedLoop = bInClosedLoop; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetClosedLoopAtPosition +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bInClosedLoop (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Key (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetClosedLoopAtPosition(bool bInClosedLoop, float Key, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetClosedLoopAtPosition"); + + Params::SplineComponent_SetClosedLoopAtPosition Parms{}; + + Parms.bInClosedLoop = bInClosedLoop; + Parms.Key = Key; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetDefaultUpVector +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& UpVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetDefaultUpVector(const struct FVector& UpVector, ESplineCoordinateSpace CoordinateSpace) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetDefaultUpVector"); + + Params::SplineComponent_SetDefaultUpVector Parms{}; + + Parms.UpVector = std::move(UpVector); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetDrawDebug +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bShow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetDrawDebug(bool bShow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetDrawDebug"); + + Params::SplineComponent_SetDrawDebug Parms{}; + + Parms.bShow = bShow; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetLocationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetLocationAtSplinePoint(int32 PointIndex, const struct FVector& InLocation, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetLocationAtSplinePoint"); + + Params::SplineComponent_SetLocationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InLocation = std::move(InLocation); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetOverrideConstructionScript +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool InOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetOverrideConstructionScript(bool InOverride) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetOverrideConstructionScript"); + + Params::SplineComponent_SetOverrideConstructionScript Parms{}; + + Parms.InOverride = InOverride; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetRotationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& InRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetRotationAtSplinePoint(int32 PointIndex, const struct FRotator& InRotation, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetRotationAtSplinePoint"); + + Params::SplineComponent_SetRotationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InRotation = std::move(InRotation); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetScaleAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InScaleVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetScaleAtSplinePoint(int32 PointIndex, const struct FVector& InScaleVector, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetScaleAtSplinePoint"); + + Params::SplineComponent_SetScaleAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InScaleVector = std::move(InScaleVector); + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetSelectedSplineSegmentColor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& SegmentColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetSelectedSplineSegmentColor(const struct FLinearColor& SegmentColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetSelectedSplineSegmentColor"); + + Params::SplineComponent_SetSelectedSplineSegmentColor Parms{}; + + Parms.SegmentColor = std::move(SegmentColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetSplineLocalPoints +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& Points (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USplineComponent::SetSplineLocalPoints(const TArray& Points) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetSplineLocalPoints"); + + Params::SplineComponent_SetSplineLocalPoints Parms{}; + + Parms.Points = std::move(Points); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetSplinePoints +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& Points (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetSplinePoints(const TArray& Points, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetSplinePoints"); + + Params::SplineComponent_SetSplinePoints Parms{}; + + Parms.Points = std::move(Points); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetSplinePointType +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplinePointType Type (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetSplinePointType(int32 PointIndex, ESplinePointType Type, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetSplinePointType"); + + Params::SplineComponent_SetSplinePointType Parms{}; + + Parms.PointIndex = PointIndex; + Parms.Type = Type; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetSplineWorldPoints +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& Points (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USplineComponent::SetSplineWorldPoints(const TArray& Points) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetSplineWorldPoints"); + + Params::SplineComponent_SetSplineWorldPoints Parms{}; + + Parms.Points = std::move(Points); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InTangent (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetTangentAtSplinePoint(int32 PointIndex, const struct FVector& InTangent, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetTangentAtSplinePoint"); + + Params::SplineComponent_SetTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InTangent = std::move(InTangent); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetTangentColor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& TangentColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetTangentColor(const struct FLinearColor& TangentColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetTangentColor"); + + Params::SplineComponent_SetTangentColor Parms{}; + + Parms.TangentColor = std::move(TangentColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetTangentsAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InArriveTangent (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLeaveTangent (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetTangentsAtSplinePoint(int32 PointIndex, const struct FVector& InArriveTangent, const struct FVector& InLeaveTangent, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetTangentsAtSplinePoint"); + + Params::SplineComponent_SetTangentsAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InArriveTangent = std::move(InArriveTangent); + Parms.InLeaveTangent = std::move(InLeaveTangent); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetUnselectedSplineSegmentColor +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FLinearColor& SegmentColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetUnselectedSplineSegmentColor(const struct FLinearColor& SegmentColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetUnselectedSplineSegmentColor"); + + Params::SplineComponent_SetUnselectedSplineSegmentColor Parms{}; + + Parms.SegmentColor = std::move(SegmentColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetUpVectorAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InUpVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUpdateSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetUpVectorAtSplinePoint(int32 PointIndex, const struct FVector& InUpVector, ESplineCoordinateSpace CoordinateSpace, bool bUpdateSpline) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetUpVectorAtSplinePoint"); + + Params::SplineComponent_SetUpVectorAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InUpVector = std::move(InUpVector); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUpdateSpline = bUpdateSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.SetWorldLocationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::SetWorldLocationAtSplinePoint(int32 PointIndex, const struct FVector& InLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "SetWorldLocationAtSplinePoint"); + + Params::SplineComponent_SetWorldLocationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.InLocation = std::move(InLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.UpdateSpline +// (RequiredAPI, Native, Public, BlueprintCallable) + +void USplineComponent::UpdateSpline() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "UpdateSpline"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SplineComponent.ConvertSplineSegmentToPolyLine +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 SplinePointStartIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::ConvertSplineSegmentToPolyLine(int32 SplinePointStartIndex, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ConvertSplineSegmentToPolyLine"); + + Params::SplineComponent_ConvertSplineSegmentToPolyLine Parms{}; + + Parms.SplinePointStartIndex = SplinePointStartIndex; + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.ConvertSplineToPolyLine +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::ConvertSplineToPolyLine(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ConvertSplineToPolyLine"); + + Params::SplineComponent_ConvertSplineToPolyLine Parms{}; + + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.ConvertSplineToPolyline_InDistanceRange +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, Const) +// Parameters: +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartDistAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndDistAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* OutDistancesAlongSpline (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bAllowWrappingIfClosed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::ConvertSplineToPolyline_InDistanceRange(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, float StartDistAlongSpline, float EndDistAlongSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline, bool bAllowWrappingIfClosed) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ConvertSplineToPolyline_InDistanceRange"); + + Params::SplineComponent_ConvertSplineToPolyline_InDistanceRange Parms{}; + + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + Parms.StartDistAlongSpline = StartDistAlongSpline; + Parms.EndDistAlongSpline = EndDistAlongSpline; + Parms.bAllowWrappingIfClosed = bAllowWrappingIfClosed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + if (OutDistancesAlongSpline != nullptr) + *OutDistancesAlongSpline = std::move(Parms.OutDistancesAlongSpline); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.ConvertSplineToPolyline_InTimeRange +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, Const) +// Parameters: +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTimeAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndTimeAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* OutDistancesAlongSpline (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bAllowWrappingIfClosed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::ConvertSplineToPolyline_InTimeRange(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, float StartTimeAlongSpline, float EndTimeAlongSpline, bool bUseConstantVelocity, TArray* OutPoints, TArray* OutDistancesAlongSpline, bool bAllowWrappingIfClosed) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ConvertSplineToPolyline_InTimeRange"); + + Params::SplineComponent_ConvertSplineToPolyline_InTimeRange Parms{}; + + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + Parms.StartTimeAlongSpline = StartTimeAlongSpline; + Parms.EndTimeAlongSpline = EndTimeAlongSpline; + Parms.bUseConstantVelocity = bUseConstantVelocity; + Parms.bAllowWrappingIfClosed = bAllowWrappingIfClosed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + if (OutDistancesAlongSpline != nullptr) + *OutDistancesAlongSpline = std::move(Parms.OutDistancesAlongSpline); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.ConvertSplineToPolyLineWithDistances +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, Const) +// Parameters: +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* OutDistancesAlongSpline (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::ConvertSplineToPolyLineWithDistances(ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "ConvertSplineToPolyLineWithDistances"); + + Params::SplineComponent_ConvertSplineToPolyLineWithDistances Parms{}; + + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + if (OutDistancesAlongSpline != nullptr) + *OutDistancesAlongSpline = std::move(Parms.OutDistancesAlongSpline); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.DivideSplineIntoPolylineRecursive +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float StartDistanceAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndDistanceAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::DivideSplineIntoPolylineRecursive(float StartDistanceAlongSpline, float EndDistanceAlongSpline, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "DivideSplineIntoPolylineRecursive"); + + Params::SplineComponent_DivideSplineIntoPolylineRecursive Parms{}; + + Parms.StartDistanceAlongSpline = StartDistanceAlongSpline; + Parms.EndDistanceAlongSpline = EndDistanceAlongSpline; + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.DivideSplineIntoPolylineRecursiveWithDistances +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float StartDistanceAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float EndDistanceAlongSpline (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float MaxSquareDistanceFromSpline (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutPoints (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// TArray* OutDistancesAlongSpline (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::DivideSplineIntoPolylineRecursiveWithDistances(float StartDistanceAlongSpline, float EndDistanceAlongSpline, ESplineCoordinateSpace CoordinateSpace, const float MaxSquareDistanceFromSpline, TArray* OutPoints, TArray* OutDistancesAlongSpline) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "DivideSplineIntoPolylineRecursiveWithDistances"); + + Params::SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances Parms{}; + + Parms.StartDistanceAlongSpline = StartDistanceAlongSpline; + Parms.EndDistanceAlongSpline = EndDistanceAlongSpline; + Parms.CoordinateSpace = CoordinateSpace; + Parms.MaxSquareDistanceFromSpline = MaxSquareDistanceFromSpline; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPoints != nullptr) + *OutPoints = std::move(Parms.OutPoints); + + if (OutDistancesAlongSpline != nullptr) + *OutDistancesAlongSpline = std::move(Parms.OutDistancesAlongSpline); + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindDirectionClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindDirectionClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindDirectionClosestToWorldLocation"); + + Params::SplineComponent_FindDirectionClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindInputKeyClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::FindInputKeyClosestToWorldLocation(const struct FVector& WorldLocation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindInputKeyClosestToWorldLocation"); + + Params::SplineComponent_FindInputKeyClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindLocationClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindLocationClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindLocationClosestToWorldLocation"); + + Params::SplineComponent_FindLocationClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindRightVectorClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindRightVectorClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindRightVectorClosestToWorldLocation"); + + Params::SplineComponent_FindRightVectorClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindRollClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::FindRollClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindRollClosestToWorldLocation"); + + Params::SplineComponent_FindRollClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindRotationClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::FindRotationClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindRotationClosestToWorldLocation"); + + Params::SplineComponent_FindRotationClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindScaleClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindScaleClosestToWorldLocation(const struct FVector& WorldLocation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindScaleClosestToWorldLocation"); + + Params::SplineComponent_FindScaleClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindTangentClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindTangentClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindTangentClosestToWorldLocation"); + + Params::SplineComponent_FindTangentClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindTransformClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USplineComponent::FindTransformClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindTransformClosestToWorldLocation"); + + Params::SplineComponent_FindTransformClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseScale = bUseScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.FindUpVectorClosestToWorldLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& WorldLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::FindUpVectorClosestToWorldLocation(const struct FVector& WorldLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "FindUpVectorClosestToWorldLocation"); + + Params::SplineComponent_FindUpVectorClosestToWorldLocation Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetArriveTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetArriveTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetArriveTangentAtSplinePoint"); + + Params::SplineComponent_GetArriveTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDefaultUpVector +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetDefaultUpVector(ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDefaultUpVector"); + + Params::SplineComponent_GetDefaultUpVector Parms{}; + + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDirectionAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetDirectionAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDirectionAtDistanceAlongSpline"); + + Params::SplineComponent_GetDirectionAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDirectionAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetDirectionAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDirectionAtSplineInputKey"); + + Params::SplineComponent_GetDirectionAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDirectionAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetDirectionAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDirectionAtSplinePoint"); + + Params::SplineComponent_GetDirectionAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDirectionAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetDirectionAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDirectionAtTime"); + + Params::SplineComponent_GetDirectionAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtLocation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FVector& InLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetDistanceAlongSplineAtLocation(const struct FVector& InLocation, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDistanceAlongSplineAtLocation"); + + Params::SplineComponent_GetDistanceAlongSplineAtLocation Parms{}; + + Parms.InLocation = std::move(InLocation); + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtSplineInputKey +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetDistanceAlongSplineAtSplineInputKey(float InKey) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDistanceAlongSplineAtSplineInputKey"); + + Params::SplineComponent_GetDistanceAlongSplineAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtSplinePoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetDistanceAlongSplineAtSplinePoint(int32 PointIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetDistanceAlongSplineAtSplinePoint"); + + Params::SplineComponent_GetDistanceAlongSplineAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetFloatPropertyAtSplineInputKey +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetFloatPropertyAtSplineInputKey(float InKey, class FName PropertyName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetFloatPropertyAtSplineInputKey"); + + Params::SplineComponent_GetFloatPropertyAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetFloatPropertyAtSplinePoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetFloatPropertyAtSplinePoint(int32 Index_0, class FName PropertyName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetFloatPropertyAtSplinePoint"); + + Params::SplineComponent_GetFloatPropertyAtSplinePoint Parms{}; + + Parms.Index_0 = Index_0; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetInputKeyAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetInputKeyAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetInputKeyAtDistanceAlongSpline"); + + Params::SplineComponent_GetInputKeyAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetInputKeyValueAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetInputKeyValueAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetInputKeyValueAtDistanceAlongSpline"); + + Params::SplineComponent_GetInputKeyValueAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetInputKeyValueAtSplinePoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetInputKeyValueAtSplinePoint(int32 PointIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetInputKeyValueAtSplinePoint"); + + Params::SplineComponent_GetInputKeyValueAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetLeaveTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetLeaveTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLeaveTangentAtSplinePoint"); + + Params::SplineComponent_GetLeaveTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetLocalLocationAndTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* LocalLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* LocalTangent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::GetLocalLocationAndTangentAtSplinePoint(int32 PointIndex, struct FVector* LocalLocation, struct FVector* LocalTangent) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocalLocationAndTangentAtSplinePoint"); + + Params::SplineComponent_GetLocalLocationAndTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (LocalLocation != nullptr) + *LocalLocation = std::move(Parms.LocalLocation); + + if (LocalTangent != nullptr) + *LocalTangent = std::move(Parms.LocalTangent); +} + + +// Function Engine.SplineComponent.GetLocationAndTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Location (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Tangent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USplineComponent::GetLocationAndTangentAtSplinePoint(int32 PointIndex, struct FVector* Location, struct FVector* Tangent, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocationAndTangentAtSplinePoint"); + + Params::SplineComponent_GetLocationAndTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Location != nullptr) + *Location = std::move(Parms.Location); + + if (Tangent != nullptr) + *Tangent = std::move(Parms.Tangent); +} + + +// Function Engine.SplineComponent.GetLocationAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetLocationAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocationAtDistanceAlongSpline"); + + Params::SplineComponent_GetLocationAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetLocationAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetLocationAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocationAtSplineInputKey"); + + Params::SplineComponent_GetLocationAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetLocationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetLocationAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocationAtSplinePoint"); + + Params::SplineComponent_GetLocationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetLocationAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetLocationAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetLocationAtTime"); + + Params::SplineComponent_GetLocationAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetNumberOfSplinePoints +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USplineComponent::GetNumberOfSplinePoints() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetNumberOfSplinePoints"); + + Params::SplineComponent_GetNumberOfSplinePoints Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetNumberOfSplineSegments +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USplineComponent::GetNumberOfSplineSegments() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetNumberOfSplineSegments"); + + Params::SplineComponent_GetNumberOfSplineSegments Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRightVectorAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetRightVectorAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRightVectorAtDistanceAlongSpline"); + + Params::SplineComponent_GetRightVectorAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRightVectorAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetRightVectorAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRightVectorAtSplineInputKey"); + + Params::SplineComponent_GetRightVectorAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRightVectorAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetRightVectorAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRightVectorAtSplinePoint"); + + Params::SplineComponent_GetRightVectorAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRightVectorAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetRightVectorAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRightVectorAtTime"); + + Params::SplineComponent_GetRightVectorAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRollAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetRollAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRollAtDistanceAlongSpline"); + + Params::SplineComponent_GetRollAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRollAtSplineInputKey +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetRollAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRollAtSplineInputKey"); + + Params::SplineComponent_GetRollAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRollAtSplinePoint +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetRollAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRollAtSplinePoint"); + + Params::SplineComponent_GetRollAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRollAtTime +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetRollAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRollAtTime"); + + Params::SplineComponent_GetRollAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRotationAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetRotationAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRotationAtDistanceAlongSpline"); + + Params::SplineComponent_GetRotationAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRotationAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetRotationAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRotationAtSplineInputKey"); + + Params::SplineComponent_GetRotationAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRotationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetRotationAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRotationAtSplinePoint"); + + Params::SplineComponent_GetRotationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetRotationAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetRotationAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetRotationAtTime"); + + Params::SplineComponent_GetRotationAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetScaleAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetScaleAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetScaleAtDistanceAlongSpline"); + + Params::SplineComponent_GetScaleAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetScaleAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetScaleAtSplineInputKey(float InKey) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetScaleAtSplineInputKey"); + + Params::SplineComponent_GetScaleAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetScaleAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetScaleAtSplinePoint(int32 PointIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetScaleAtSplinePoint"); + + Params::SplineComponent_GetScaleAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetScaleAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetScaleAtTime(float Time, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetScaleAtTime"); + + Params::SplineComponent_GetScaleAtTime Parms{}; + + Parms.Time = Time; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetSplineLength +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetSplineLength() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetSplineLength"); + + Params::SplineComponent_GetSplineLength Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetSplinePointAt +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSplinePoint ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FSplinePoint USplineComponent::GetSplinePointAt(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetSplinePointAt"); + + Params::SplineComponent_GetSplinePointAt Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetSplinePointType +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplinePointType ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +ESplinePointType USplineComponent::GetSplinePointType(int32 PointIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetSplinePointType"); + + Params::SplineComponent_GetSplinePointType Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTangentAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetTangentAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTangentAtDistanceAlongSpline"); + + Params::SplineComponent_GetTangentAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTangentAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetTangentAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTangentAtSplineInputKey"); + + Params::SplineComponent_GetTangentAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTangentAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetTangentAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTangentAtSplinePoint"); + + Params::SplineComponent_GetTangentAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTangentAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetTangentAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTangentAtTime"); + + Params::SplineComponent_GetTangentAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTimeAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USplineComponent::GetTimeAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTimeAtDistanceAlongSpline"); + + Params::SplineComponent_GetTimeAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTransformAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USplineComponent::GetTransformAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTransformAtDistanceAlongSpline"); + + Params::SplineComponent_GetTransformAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseScale = bUseScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTransformAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USplineComponent::GetTransformAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTransformAtSplineInputKey"); + + Params::SplineComponent_GetTransformAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseScale = bUseScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTransformAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USplineComponent::GetTransformAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace, bool bUseScale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTransformAtSplinePoint"); + + Params::SplineComponent_GetTransformAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseScale = bUseScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetTransformAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform USplineComponent::GetTransformAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity, bool bUseScale) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetTransformAtTime"); + + Params::SplineComponent_GetTransformAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + Parms.bUseScale = bUseScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetUpVectorAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetUpVectorAtDistanceAlongSpline(float Distance, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetUpVectorAtDistanceAlongSpline"); + + Params::SplineComponent_GetUpVectorAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetUpVectorAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetUpVectorAtSplineInputKey(float InKey, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetUpVectorAtSplineInputKey"); + + Params::SplineComponent_GetUpVectorAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetUpVectorAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetUpVectorAtSplinePoint(int32 PointIndex, ESplineCoordinateSpace CoordinateSpace) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetUpVectorAtSplinePoint"); + + Params::SplineComponent_GetUpVectorAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + Parms.CoordinateSpace = CoordinateSpace; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetUpVectorAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESplineCoordinateSpace CoordinateSpace (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetUpVectorAtTime(float Time, ESplineCoordinateSpace CoordinateSpace, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetUpVectorAtTime"); + + Params::SplineComponent_GetUpVectorAtTime Parms{}; + + Parms.Time = Time; + Parms.CoordinateSpace = CoordinateSpace; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetVectorPropertyAtSplineInputKey +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InKey (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetVectorPropertyAtSplineInputKey(float InKey, class FName PropertyName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetVectorPropertyAtSplineInputKey"); + + Params::SplineComponent_GetVectorPropertyAtSplineInputKey Parms{}; + + Parms.InKey = InKey; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetVectorPropertyAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetVectorPropertyAtSplinePoint(int32 Index_0, class FName PropertyName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetVectorPropertyAtSplinePoint"); + + Params::SplineComponent_GetVectorPropertyAtSplinePoint Parms{}; + + Parms.Index_0 = Index_0; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldDirectionAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldDirectionAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldDirectionAtDistanceAlongSpline"); + + Params::SplineComponent_GetWorldDirectionAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldDirectionAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldDirectionAtTime(float Time, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldDirectionAtTime"); + + Params::SplineComponent_GetWorldDirectionAtTime Parms{}; + + Parms.Time = Time; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldLocationAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldLocationAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldLocationAtDistanceAlongSpline"); + + Params::SplineComponent_GetWorldLocationAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldLocationAtSplinePoint +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 PointIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldLocationAtSplinePoint(int32 PointIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldLocationAtSplinePoint"); + + Params::SplineComponent_GetWorldLocationAtSplinePoint Parms{}; + + Parms.PointIndex = PointIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldLocationAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldLocationAtTime(float Time, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldLocationAtTime"); + + Params::SplineComponent_GetWorldLocationAtTime Parms{}; + + Parms.Time = Time; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldRotationAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetWorldRotationAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldRotationAtDistanceAlongSpline"); + + Params::SplineComponent_GetWorldRotationAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldRotationAtTime +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseConstantVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USplineComponent::GetWorldRotationAtTime(float Time, bool bUseConstantVelocity) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldRotationAtTime"); + + Params::SplineComponent_GetWorldRotationAtTime Parms{}; + + Parms.Time = Time; + Parms.bUseConstantVelocity = bUseConstantVelocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.GetWorldTangentAtDistanceAlongSpline +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USplineComponent::GetWorldTangentAtDistanceAlongSpline(float Distance) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "GetWorldTangentAtDistanceAlongSpline"); + + Params::SplineComponent_GetWorldTangentAtDistanceAlongSpline Parms{}; + + Parms.Distance = Distance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SplineComponent.IsClosedLoop +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USplineComponent::IsClosedLoop() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SplineComponent", "IsClosedLoop"); + + Params::SplineComponent_IsClosedLoop Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SpotLightComponent.SetInnerConeAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewInnerConeAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USpotLightComponent::SetInnerConeAngle(float NewInnerConeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpotLightComponent", "SetInnerConeAngle"); + + Params::SpotLightComponent_SetInnerConeAngle Parms{}; + + Parms.NewInnerConeAngle = NewInnerConeAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SpotLightComponent.SetOuterConeAngle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewOuterConeAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USpotLightComponent::SetOuterConeAngle(float NewOuterConeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpotLightComponent", "SetOuterConeAngle"); + + Params::SpotLightComponent_SetOuterConeAngle Parms{}; + + Parms.NewOuterConeAngle = NewOuterConeAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetbUsePerSampleAtmosphericLightTransmittance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetbUsePerSampleAtmosphericLightTransmittance(bool NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetbUsePerSampleAtmosphericLightTransmittance"); + + Params::VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetGroundAlbedo +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FColor& NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetGroundAlbedo(const struct FColor& NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetGroundAlbedo"); + + Params::VolumetricCloudComponent_SetGroundAlbedo Parms{}; + + Parms.NewValue = std::move(NewValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetHoldout +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bNewHoldout (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetHoldout(bool bNewHoldout) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetHoldout"); + + Params::VolumetricCloudComponent_SetHoldout Parms{}; + + Parms.bNewHoldout = bNewHoldout; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetLayerBottomAltitude +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetLayerBottomAltitude(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetLayerBottomAltitude"); + + Params::VolumetricCloudComponent_SetLayerBottomAltitude Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetLayerHeight +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetLayerHeight(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetLayerHeight"); + + Params::VolumetricCloudComponent_SetLayerHeight Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewValue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetMaterial(class UMaterialInterface* NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetMaterial"); + + Params::VolumetricCloudComponent_SetMaterial Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetPlanetRadius +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetPlanetRadius(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetPlanetRadius"); + + Params::VolumetricCloudComponent_SetPlanetRadius Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetReflectionSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetReflectionSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetReflectionSampleCountScale"); + + Params::VolumetricCloudComponent_SetReflectionSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetReflectionViewSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetReflectionViewSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetReflectionViewSampleCountScale"); + + Params::VolumetricCloudComponent_SetReflectionViewSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetRenderInMainPass +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetRenderInMainPass(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetRenderInMainPass"); + + Params::VolumetricCloudComponent_SetRenderInMainPass Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetShadowReflectionSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetShadowReflectionSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetShadowReflectionSampleCountScale"); + + Params::VolumetricCloudComponent_SetShadowReflectionSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetShadowReflectionViewSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetShadowReflectionViewSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetShadowReflectionViewSampleCountScale"); + + Params::VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetShadowTracingDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetShadowTracingDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetShadowTracingDistance"); + + Params::VolumetricCloudComponent_SetShadowTracingDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetShadowViewSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetShadowViewSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetShadowViewSampleCountScale"); + + Params::VolumetricCloudComponent_SetShadowViewSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetSkyLightCloudBottomOcclusion +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetSkyLightCloudBottomOcclusion(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetSkyLightCloudBottomOcclusion"); + + Params::VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetStopTracingTransmittanceThreshold +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetStopTracingTransmittanceThreshold(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetStopTracingTransmittanceThreshold"); + + Params::VolumetricCloudComponent_SetStopTracingTransmittanceThreshold Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetTracingMaxDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetTracingMaxDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetTracingMaxDistance"); + + Params::VolumetricCloudComponent_SetTracingMaxDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetTracingStartDistanceFromCamera +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetTracingStartDistanceFromCamera(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetTracingStartDistanceFromCamera"); + + Params::VolumetricCloudComponent_SetTracingStartDistanceFromCamera Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetTracingStartMaxDistance +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetTracingStartMaxDistance(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetTracingStartMaxDistance"); + + Params::VolumetricCloudComponent_SetTracingStartMaxDistance Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VolumetricCloudComponent.SetViewSampleCountScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVolumetricCloudComponent::SetViewSampleCountScale(float NewValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VolumetricCloudComponent", "SetViewSampleCountScale"); + + Params::VolumetricCloudComponent_SetViewSampleCountScale Parms{}; + + Parms.NewValue = NewValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.CopyParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FConstraintInstanceAccessor& SourceAccessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bKeepPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bKeepRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::CopyParams(struct FConstraintInstanceAccessor& Accessor, struct FConstraintInstanceAccessor& SourceAccessor, bool bKeepPosition, bool bKeepRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "CopyParams"); + + Params::ConstraintInstanceBlueprintLibrary_CopyParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.SourceAccessor = std::move(SourceAccessor); + Parms.bKeepPosition = bKeepPosition; + Parms.bKeepRotation = bKeepRotation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + SourceAccessor = std::move(Parms.SourceAccessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularBreakable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bAngularBreakable (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* AngularBreakThreshold (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularBreakable(struct FConstraintInstanceAccessor& Accessor, bool* bAngularBreakable, float* AngularBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularBreakable"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularBreakable Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bAngularBreakable != nullptr) + *bAngularBreakable = Parms.bAngularBreakable; + + if (AngularBreakThreshold != nullptr) + *AngularBreakThreshold = Parms.AngularBreakThreshold; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularDriveMode +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EAngularDriveMode* OutDriveMode (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularDriveMode(struct FConstraintInstanceAccessor& Accessor, EAngularDriveMode* OutDriveMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularDriveMode"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularDriveMode Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutDriveMode != nullptr) + *OutDriveMode = Parms.OutDriveMode; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularDriveParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float* OutPositionStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutVelocityStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutForceLimit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularDriveParams(struct FConstraintInstanceAccessor& Accessor, float* OutPositionStrength, float* OutVelocityStrength, float* OutForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularDriveParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularDriveParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutPositionStrength != nullptr) + *OutPositionStrength = Parms.OutPositionStrength; + + if (OutVelocityStrength != nullptr) + *OutVelocityStrength = Parms.OutVelocityStrength; + + if (OutForceLimit != nullptr) + *OutForceLimit = Parms.OutForceLimit; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularLimits +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EAngularConstraintMotion* Swing1MotionType (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Swing1LimitAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAngularConstraintMotion* Swing2MotionType (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Swing2LimitAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAngularConstraintMotion* TwistMotionType (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistLimitAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularLimits(struct FConstraintInstanceAccessor& Accessor, EAngularConstraintMotion* Swing1MotionType, float* Swing1LimitAngle, EAngularConstraintMotion* Swing2MotionType, float* Swing2LimitAngle, EAngularConstraintMotion* TwistMotionType, float* TwistLimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularLimits"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularLimits Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (Swing1MotionType != nullptr) + *Swing1MotionType = Parms.Swing1MotionType; + + if (Swing1LimitAngle != nullptr) + *Swing1LimitAngle = Parms.Swing1LimitAngle; + + if (Swing2MotionType != nullptr) + *Swing2MotionType = Parms.Swing2MotionType; + + if (Swing2LimitAngle != nullptr) + *Swing2LimitAngle = Parms.Swing2LimitAngle; + + if (TwistMotionType != nullptr) + *TwistMotionType = Parms.TwistMotionType; + + if (TwistLimitAngle != nullptr) + *TwistLimitAngle = Parms.TwistLimitAngle; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularOrientationTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator* OutPosTarget (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularOrientationTarget(struct FConstraintInstanceAccessor& Accessor, struct FRotator* OutPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularOrientationTarget"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutPosTarget != nullptr) + *OutPosTarget = std::move(Parms.OutPosTarget); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularPlasticity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bAngularPlasticity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* AngularPlasticityThreshold (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularPlasticity(struct FConstraintInstanceAccessor& Accessor, bool* bAngularPlasticity, float* AngularPlasticityThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularPlasticity"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularPlasticity Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bAngularPlasticity != nullptr) + *bAngularPlasticity = Parms.bAngularPlasticity; + + if (AngularPlasticityThreshold != nullptr) + *AngularPlasticityThreshold = Parms.AngularPlasticityThreshold; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularSoftSwingLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bSoftSwingLimit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SwingLimitStiffness (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SwingLimitDamping (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SwingLimitRestitution (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SwingLimitContactDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularSoftSwingLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftSwingLimit, float* SwingLimitStiffness, float* SwingLimitDamping, float* SwingLimitRestitution, float* SwingLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularSoftSwingLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bSoftSwingLimit != nullptr) + *bSoftSwingLimit = Parms.bSoftSwingLimit; + + if (SwingLimitStiffness != nullptr) + *SwingLimitStiffness = Parms.SwingLimitStiffness; + + if (SwingLimitDamping != nullptr) + *SwingLimitDamping = Parms.SwingLimitDamping; + + if (SwingLimitRestitution != nullptr) + *SwingLimitRestitution = Parms.SwingLimitRestitution; + + if (SwingLimitContactDistance != nullptr) + *SwingLimitContactDistance = Parms.SwingLimitContactDistance; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularSoftTwistLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bSoftTwistLimit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistLimitStiffness (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistLimitDamping (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistLimitRestitution (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* TwistLimitContactDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularSoftTwistLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftTwistLimit, float* TwistLimitStiffness, float* TwistLimitDamping, float* TwistLimitRestitution, float* TwistLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularSoftTwistLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bSoftTwistLimit != nullptr) + *bSoftTwistLimit = Parms.bSoftTwistLimit; + + if (TwistLimitStiffness != nullptr) + *TwistLimitStiffness = Parms.TwistLimitStiffness; + + if (TwistLimitDamping != nullptr) + *TwistLimitDamping = Parms.TwistLimitDamping; + + if (TwistLimitRestitution != nullptr) + *TwistLimitRestitution = Parms.TwistLimitRestitution; + + if (TwistLimitContactDistance != nullptr) + *TwistLimitContactDistance = Parms.TwistLimitContactDistance; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityDriveSLERP +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableSLERP (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularVelocityDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularVelocityDriveSLERP"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableSLERP != nullptr) + *bOutEnableSLERP = Parms.bOutEnableSLERP; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityDriveTwistAndSwing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableTwistDrive (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableSwingDrive (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularVelocityDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableTwistDrive, bool* bOutEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularVelocityDriveTwistAndSwing"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableTwistDrive != nullptr) + *bOutEnableTwistDrive = Parms.bOutEnableTwistDrive; + + if (bOutEnableSwingDrive != nullptr) + *bOutEnableSwingDrive = Parms.bOutEnableSwingDrive; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* OutVelTarget (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAngularVelocityTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAngularVelocityTarget"); + + Params::ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutVelTarget != nullptr) + *OutVelTarget = std::move(Parms.OutVelTarget); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAttachedBodyNames +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// class FName* ParentBody (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* ChildBody (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetAttachedBodyNames(struct FConstraintInstanceAccessor& Accessor, class FName* ParentBody, class FName* ChildBody) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetAttachedBodyNames"); + + Params::ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (ParentBody != nullptr) + *ParentBody = Parms.ParentBody; + + if (ChildBody != nullptr) + *ChildBody = Parms.ChildBody; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetContactTransferScale +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float* ContactTransferScale (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetContactTransferScale(struct FConstraintInstanceAccessor& Accessor, float* ContactTransferScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetContactTransferScale"); + + Params::ConstraintInstanceBlueprintLibrary_GetContactTransferScale Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (ContactTransferScale != nullptr) + *ContactTransferScale = Parms.ContactTransferScale; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetDisableCollsion +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UConstraintInstanceBlueprintLibrary::GetDisableCollsion(struct FConstraintInstanceAccessor& Accessor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetDisableCollsion"); + + Params::ConstraintInstanceBlueprintLibrary_GetDisableCollsion Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + return Parms.ReturnValue; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearBreakable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bLinearBreakable (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearBreakThreshold (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearBreakable(struct FConstraintInstanceAccessor& Accessor, bool* bLinearBreakable, float* LinearBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearBreakable"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearBreakable Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bLinearBreakable != nullptr) + *bLinearBreakable = Parms.bLinearBreakable; + + if (LinearBreakThreshold != nullptr) + *LinearBreakThreshold = Parms.LinearBreakThreshold; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearDriveParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float* OutPositionStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutVelocityStrength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutForceLimit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearDriveParams(struct FConstraintInstanceAccessor& Accessor, float* OutPositionStrength, float* OutVelocityStrength, float* OutForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearDriveParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearDriveParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutPositionStrength != nullptr) + *OutPositionStrength = Parms.OutPositionStrength; + + if (OutVelocityStrength != nullptr) + *OutVelocityStrength = Parms.OutVelocityStrength; + + if (OutForceLimit != nullptr) + *OutForceLimit = Parms.OutForceLimit; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearLimits +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// ELinearConstraintMotion* XMotion (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELinearConstraintMotion* YMotion (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELinearConstraintMotion* ZMotion (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Limit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearLimits(struct FConstraintInstanceAccessor& Accessor, ELinearConstraintMotion* XMotion, ELinearConstraintMotion* YMotion, ELinearConstraintMotion* ZMotion, float* Limit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearLimits"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearLimits Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (XMotion != nullptr) + *XMotion = Parms.XMotion; + + if (YMotion != nullptr) + *YMotion = Parms.YMotion; + + if (ZMotion != nullptr) + *ZMotion = Parms.ZMotion; + + if (Limit != nullptr) + *Limit = Parms.Limit; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPlasticity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bLinearPlasticity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearPlasticityThreshold (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EConstraintPlasticityType* PlasticityType (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearPlasticity(struct FConstraintInstanceAccessor& Accessor, bool* bLinearPlasticity, float* LinearPlasticityThreshold, EConstraintPlasticityType* PlasticityType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearPlasticity"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearPlasticity Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bLinearPlasticity != nullptr) + *bLinearPlasticity = Parms.bLinearPlasticity; + + if (LinearPlasticityThreshold != nullptr) + *LinearPlasticityThreshold = Parms.LinearPlasticityThreshold; + + if (PlasticityType != nullptr) + *PlasticityType = Parms.PlasticityType; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPositionDrive +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveZ (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearPositionDrive(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableDriveX, bool* bOutEnableDriveY, bool* bOutEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearPositionDrive"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableDriveX != nullptr) + *bOutEnableDriveX = Parms.bOutEnableDriveX; + + if (bOutEnableDriveY != nullptr) + *bOutEnableDriveY = Parms.bOutEnableDriveY; + + if (bOutEnableDriveZ != nullptr) + *bOutEnableDriveZ = Parms.bOutEnableDriveZ; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPositionTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* OutPosTarget (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearPositionTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearPositionTarget"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutPosTarget != nullptr) + *OutPosTarget = std::move(Parms.OutPosTarget); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearSoftLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bSoftLinearLimit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearLimitStiffness (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearLimitDamping (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearLimitRestitution (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* LinearLimitContactDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearSoftLimitParams(struct FConstraintInstanceAccessor& Accessor, bool* bSoftLinearLimit, float* LinearLimitStiffness, float* LinearLimitDamping, float* LinearLimitRestitution, float* LinearLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearSoftLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bSoftLinearLimit != nullptr) + *bSoftLinearLimit = Parms.bSoftLinearLimit; + + if (LinearLimitStiffness != nullptr) + *LinearLimitStiffness = Parms.LinearLimitStiffness; + + if (LinearLimitDamping != nullptr) + *LinearLimitDamping = Parms.LinearLimitDamping; + + if (LinearLimitRestitution != nullptr) + *LinearLimitRestitution = Parms.LinearLimitRestitution; + + if (LinearLimitContactDistance != nullptr) + *LinearLimitContactDistance = Parms.LinearLimitContactDistance; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearVelocityDrive +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableDriveZ (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearVelocityDrive(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableDriveX, bool* bOutEnableDriveY, bool* bOutEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearVelocityDrive"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableDriveX != nullptr) + *bOutEnableDriveX = Parms.bOutEnableDriveX; + + if (bOutEnableDriveY != nullptr) + *bOutEnableDriveY = Parms.bOutEnableDriveY; + + if (bOutEnableDriveZ != nullptr) + *bOutEnableDriveZ = Parms.bOutEnableDriveZ; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearVelocityTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* OutVelTarget (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetLinearVelocityTarget(struct FConstraintInstanceAccessor& Accessor, struct FVector* OutVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetLinearVelocityTarget"); + + Params::ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (OutVelTarget != nullptr) + *OutVelTarget = std::move(Parms.OutVelTarget); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetMassConditioningEnabled +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UConstraintInstanceBlueprintLibrary::GetMassConditioningEnabled(struct FConstraintInstanceAccessor& Accessor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetMassConditioningEnabled"); + + Params::ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + return Parms.ReturnValue; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetOrientationDriveSLERP +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableSLERP (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetOrientationDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetOrientationDriveSLERP"); + + Params::ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableSLERP != nullptr) + *bOutEnableSLERP = Parms.bOutEnableSLERP; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetOrientationDriveTwistAndSwing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bOutEnableTwistDrive (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bOutEnableSwingDrive (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetOrientationDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool* bOutEnableTwistDrive, bool* bOutEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetOrientationDriveTwistAndSwing"); + + Params::ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bOutEnableTwistDrive != nullptr) + *bOutEnableTwistDrive = Parms.bOutEnableTwistDrive; + + if (bOutEnableSwingDrive != nullptr) + *bOutEnableSwingDrive = Parms.bOutEnableSwingDrive; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetParentDominates +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UConstraintInstanceBlueprintLibrary::GetParentDominates(struct FConstraintInstanceAccessor& Accessor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetParentDominates"); + + Params::ConstraintInstanceBlueprintLibrary_GetParentDominates Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + return Parms.ReturnValue; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetProjectionParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool* bEnableProjection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* ProjectionLinearAlpha (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* ProjectionAngularAlpha (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::GetProjectionParams(struct FConstraintInstanceAccessor& Accessor, bool* bEnableProjection, float* ProjectionLinearAlpha, float* ProjectionAngularAlpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "GetProjectionParams"); + + Params::ConstraintInstanceBlueprintLibrary_GetProjectionParams Parms{}; + + Parms.Accessor = std::move(Accessor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); + + if (bEnableProjection != nullptr) + *bEnableProjection = Parms.bEnableProjection; + + if (ProjectionLinearAlpha != nullptr) + *ProjectionLinearAlpha = Parms.ProjectionLinearAlpha; + + if (ProjectionAngularAlpha != nullptr) + *ProjectionAngularAlpha = Parms.ProjectionAngularAlpha; +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularBreakable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bAngularBreakable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngularBreakThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularBreakable(struct FConstraintInstanceAccessor& Accessor, bool bAngularBreakable, float AngularBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularBreakable"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularBreakable Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bAngularBreakable = bAngularBreakable; + Parms.AngularBreakThreshold = AngularBreakThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularDriveMode +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EAngularDriveMode DriveMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularDriveMode(struct FConstraintInstanceAccessor& Accessor, EAngularDriveMode DriveMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularDriveMode"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularDriveMode Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.DriveMode = DriveMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularDriveParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float PositionStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VelocityStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InForceLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularDriveParams(struct FConstraintInstanceAccessor& Accessor, float PositionStrength, float VelocityStrength, float InForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularDriveParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularDriveParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.PositionStrength = PositionStrength; + Parms.VelocityStrength = VelocityStrength; + Parms.InForceLimit = InForceLimit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularLimits +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// EAngularConstraintMotion Swing1MotionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing1LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAngularConstraintMotion Swing2MotionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing2LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAngularConstraintMotion TwistMotionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularLimits(struct FConstraintInstanceAccessor& Accessor, EAngularConstraintMotion Swing1MotionType, float Swing1LimitAngle, EAngularConstraintMotion Swing2MotionType, float Swing2LimitAngle, EAngularConstraintMotion TwistMotionType, float TwistLimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularLimits"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularLimits Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.Swing1MotionType = Swing1MotionType; + Parms.Swing1LimitAngle = Swing1LimitAngle; + Parms.Swing2MotionType = Swing2MotionType; + Parms.Swing2LimitAngle = Swing2LimitAngle; + Parms.TwistMotionType = TwistMotionType; + Parms.TwistLimitAngle = TwistLimitAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularOrientationTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& InPosTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularOrientationTarget(struct FConstraintInstanceAccessor& Accessor, const struct FRotator& InPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularOrientationTarget"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.InPosTarget = std::move(InPosTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularPlasticity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bAngularPlasticity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngularPlasticityThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularPlasticity(struct FConstraintInstanceAccessor& Accessor, bool bAngularPlasticity, float AngularPlasticityThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularPlasticity"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularPlasticity Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bAngularPlasticity = bAngularPlasticity; + Parms.AngularPlasticityThreshold = AngularPlasticityThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularSoftSwingLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bSoftSwingLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SwingLimitStiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SwingLimitDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SwingLimitRestitution (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SwingLimitContactDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularSoftSwingLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftSwingLimit, float SwingLimitStiffness, float SwingLimitDamping, float SwingLimitRestitution, float SwingLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularSoftSwingLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bSoftSwingLimit = bSoftSwingLimit; + Parms.SwingLimitStiffness = SwingLimitStiffness; + Parms.SwingLimitDamping = SwingLimitDamping; + Parms.SwingLimitRestitution = SwingLimitRestitution; + Parms.SwingLimitContactDistance = SwingLimitContactDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularSoftTwistLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bSoftTwistLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitStiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitRestitution (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitContactDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularSoftTwistLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftTwistLimit, float TwistLimitStiffness, float TwistLimitDamping, float TwistLimitRestitution, float TwistLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularSoftTwistLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bSoftTwistLimit = bSoftTwistLimit; + Parms.TwistLimitStiffness = TwistLimitStiffness; + Parms.TwistLimitDamping = TwistLimitDamping; + Parms.TwistLimitRestitution = TwistLimitRestitution; + Parms.TwistLimitContactDistance = TwistLimitContactDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityDriveSLERP +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableSLERP (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularVelocityDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool bEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularVelocityDriveSLERP"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableSLERP = bEnableSLERP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityDriveTwistAndSwing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularVelocityDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool bEnableTwistDrive, bool bEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularVelocityDriveTwistAndSwing"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bEnableSwingDrive = bEnableSwingDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& InVelTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetAngularVelocityTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetAngularVelocityTarget"); + + Params::ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.InVelTarget = std::move(InVelTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetContactTransferScale +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ContactTransferScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetContactTransferScale(struct FConstraintInstanceAccessor& Accessor, float ContactTransferScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetContactTransferScale"); + + Params::ConstraintInstanceBlueprintLibrary_SetContactTransferScale Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.ContactTransferScale = ContactTransferScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetDisableCollision +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bDisableCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetDisableCollision(struct FConstraintInstanceAccessor& Accessor, bool bDisableCollision) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetDisableCollision"); + + Params::ConstraintInstanceBlueprintLibrary_SetDisableCollision Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bDisableCollision = bDisableCollision; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearBreakable +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bLinearBreakable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearBreakThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearBreakable(struct FConstraintInstanceAccessor& Accessor, bool bLinearBreakable, float LinearBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearBreakable"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearBreakable Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bLinearBreakable = bLinearBreakable; + Parms.LinearBreakThreshold = LinearBreakThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearDriveParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float PositionStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VelocityStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InForceLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearDriveParams(struct FConstraintInstanceAccessor& Accessor, float PositionStrength, float VelocityStrength, float InForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearDriveParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearDriveParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.PositionStrength = PositionStrength; + Parms.VelocityStrength = VelocityStrength; + Parms.InForceLimit = InForceLimit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearLimits +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// ELinearConstraintMotion XMotion (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELinearConstraintMotion YMotion (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELinearConstraintMotion ZMotion (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Limit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearLimits(struct FConstraintInstanceAccessor& Accessor, ELinearConstraintMotion XMotion, ELinearConstraintMotion YMotion, ELinearConstraintMotion ZMotion, float Limit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearLimits"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearLimits Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.XMotion = XMotion; + Parms.YMotion = YMotion; + Parms.ZMotion = ZMotion; + Parms.Limit = Limit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPlasticity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bLinearPlasticity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearPlasticityThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EConstraintPlasticityType PlasticityType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearPlasticity(struct FConstraintInstanceAccessor& Accessor, bool bLinearPlasticity, float LinearPlasticityThreshold, EConstraintPlasticityType PlasticityType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearPlasticity"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearPlasticity Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bLinearPlasticity = bLinearPlasticity; + Parms.LinearPlasticityThreshold = LinearPlasticityThreshold; + Parms.PlasticityType = PlasticityType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPositionDrive +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableDriveX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearPositionDrive(struct FConstraintInstanceAccessor& Accessor, bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearPositionDrive"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableDriveX = bEnableDriveX; + Parms.bEnableDriveY = bEnableDriveY; + Parms.bEnableDriveZ = bEnableDriveZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPositionTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& InPosTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearPositionTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearPositionTarget"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.InPosTarget = std::move(InPosTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearSoftLimitParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bSoftLinearLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearLimitStiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearLimitDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearLimitRestitution (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearLimitContactDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearSoftLimitParams(struct FConstraintInstanceAccessor& Accessor, bool bSoftLinearLimit, float LinearLimitStiffness, float LinearLimitDamping, float LinearLimitRestitution, float LinearLimitContactDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearSoftLimitParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bSoftLinearLimit = bSoftLinearLimit; + Parms.LinearLimitStiffness = LinearLimitStiffness; + Parms.LinearLimitDamping = LinearLimitDamping; + Parms.LinearLimitRestitution = LinearLimitRestitution; + Parms.LinearLimitContactDistance = LinearLimitContactDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearVelocityDrive +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableDriveX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearVelocityDrive(struct FConstraintInstanceAccessor& Accessor, bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearVelocityDrive"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableDriveX = bEnableDriveX; + Parms.bEnableDriveY = bEnableDriveY; + Parms.bEnableDriveZ = bEnableDriveZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearVelocityTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& InVelTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetLinearVelocityTarget(struct FConstraintInstanceAccessor& Accessor, const struct FVector& InVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetLinearVelocityTarget"); + + Params::ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.InVelTarget = std::move(InVelTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetMassConditioningEnabled +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableMassConditioning (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetMassConditioningEnabled(struct FConstraintInstanceAccessor& Accessor, bool bEnableMassConditioning) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetMassConditioningEnabled"); + + Params::ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableMassConditioning = bEnableMassConditioning; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetOrientationDriveSLERP +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableSLERP (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetOrientationDriveSLERP(struct FConstraintInstanceAccessor& Accessor, bool bEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetOrientationDriveSLERP"); + + Params::ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableSLERP = bEnableSLERP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetOrientationDriveTwistAndSwing +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetOrientationDriveTwistAndSwing(struct FConstraintInstanceAccessor& Accessor, bool bEnableTwistDrive, bool bEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetOrientationDriveTwistAndSwing"); + + Params::ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bEnableSwingDrive = bEnableSwingDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetParentDominates +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bParentDominates (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetParentDominates(struct FConstraintInstanceAccessor& Accessor, bool bParentDominates) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetParentDominates"); + + Params::ConstraintInstanceBlueprintLibrary_SetParentDominates Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bParentDominates = bParentDominates; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetProjectionParams +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor& Accessor (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bEnableProjection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectionLinearAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectionAngularAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UConstraintInstanceBlueprintLibrary::SetProjectionParams(struct FConstraintInstanceAccessor& Accessor, bool bEnableProjection, float ProjectionLinearAlpha, float ProjectionAngularAlpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ConstraintInstanceBlueprintLibrary", "SetProjectionParams"); + + Params::ConstraintInstanceBlueprintLibrary_SetProjectionParams Parms{}; + + Parms.Accessor = std::move(Accessor); + Parms.bEnableProjection = bEnableProjection; + Parms.ProjectionLinearAlpha = ProjectionLinearAlpha; + Parms.ProjectionAngularAlpha = ProjectionAngularAlpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Accessor = std::move(Parms.Accessor); +} + + +// Function Engine.CurveFloat.GetFloatValue +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UCurveFloat::GetFloatValue(float InTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveFloat", "GetFloatValue"); + + Params::CurveFloat_GetFloatValue Parms{}; + + Parms.InTime = InTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveLinearColor.GetClampedLinearColorValue +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UCurveLinearColor::GetClampedLinearColorValue(float InTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveLinearColor", "GetClampedLinearColorValue"); + + Params::CurveLinearColor_GetClampedLinearColorValue Parms{}; + + Parms.InTime = InTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveLinearColor.GetLinearColorValue +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UCurveLinearColor::GetLinearColorValue(float InTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveLinearColor", "GetLinearColorValue"); + + Params::CurveLinearColor_GetLinearColorValue Parms{}; + + Parms.InTime = InTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.CurveLinearColor.GetUnadjustedLinearColorValue +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float InTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UCurveLinearColor::GetUnadjustedLinearColorValue(float InTime) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CurveLinearColor", "GetUnadjustedLinearColorValue"); + + Params::CurveLinearColor_GetUnadjustedLinearColorValue Parms{}; + + Parms.InTime = InTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataTableFunctionLibrary.DoesDataTableRowExist +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName RowName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataTableFunctionLibrary::DoesDataTableRowExist(const class UDataTable* Table, class FName RowName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "DoesDataTableRowExist"); + + Params::DataTableFunctionLibrary_DoesDataTableRowExist Parms{}; + + Parms.Table = Table; + Parms.RowName = RowName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataTableFunctionLibrary.EvaluateCurveTableRow +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UCurveTable* CurveTable (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName RowName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InXY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEvaluateCurveTableResult* OutResult (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutXY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& ContextString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataTableFunctionLibrary::EvaluateCurveTableRow(class UCurveTable* CurveTable, class FName RowName, float InXY, EEvaluateCurveTableResult* OutResult, float* OutXY, const class FString& ContextString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "EvaluateCurveTableRow"); + + Params::DataTableFunctionLibrary_EvaluateCurveTableRow Parms{}; + + Parms.CurveTable = CurveTable; + Parms.RowName = RowName; + Parms.InXY = InXY; + Parms.ContextString = std::move(ContextString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutResult != nullptr) + *OutResult = Parms.OutResult; + + if (OutXY != nullptr) + *OutXY = Parms.OutXY; +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnAsString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UDataTable* DataTable (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UDataTableFunctionLibrary::GetDataTableColumnAsString(const class UDataTable* DataTable, class FName PropertyName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableColumnAsString"); + + Params::DataTableFunctionLibrary_GetDataTableColumnAsString Parms{}; + + Parms.DataTable = DataTable; + Parms.PropertyName = PropertyName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnExportNames +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutExportColumnNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UDataTableFunctionLibrary::GetDataTableColumnExportNames(const class UDataTable* Table, TArray* OutExportColumnNames) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableColumnExportNames"); + + Params::DataTableFunctionLibrary_GetDataTableColumnExportNames Parms{}; + + Parms.Table = Table; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutExportColumnNames != nullptr) + *OutExportColumnNames = std::move(Parms.OutExportColumnNames); +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnNameFromExportName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& ColumnExportName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* OutColumnName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataTableFunctionLibrary::GetDataTableColumnNameFromExportName(const class UDataTable* Table, const class FString& ColumnExportName, class FName* OutColumnName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableColumnNameFromExportName"); + + Params::DataTableFunctionLibrary_GetDataTableColumnNameFromExportName Parms{}; + + Parms.Table = Table; + Parms.ColumnExportName = std::move(ColumnExportName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutColumnName != nullptr) + *OutColumnName = Parms.OutColumnName; + + return Parms.ReturnValue; +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnNames +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutColumnNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UDataTableFunctionLibrary::GetDataTableColumnNames(const class UDataTable* Table, TArray* OutColumnNames) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableColumnNames"); + + Params::DataTableFunctionLibrary_GetDataTableColumnNames Parms{}; + + Parms.Table = Table; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutColumnNames != nullptr) + *OutColumnNames = std::move(Parms.OutColumnNames); +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowFromName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UDataTable* Table (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName RowName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTableRowBase* OutRow (Parm, OutParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataTableFunctionLibrary::GetDataTableRowFromName(class UDataTable* Table, class FName RowName, struct FTableRowBase* OutRow) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableRowFromName"); + + Params::DataTableFunctionLibrary_GetDataTableRowFromName Parms{}; + + Parms.Table = Table; + Parms.RowName = RowName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRow != nullptr) + *OutRow = std::move(Parms.OutRow); + + return Parms.ReturnValue; +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowNames +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutRowNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UDataTableFunctionLibrary::GetDataTableRowNames(const class UDataTable* Table, TArray* OutRowNames) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableRowNames"); + + Params::DataTableFunctionLibrary_GetDataTableRowNames Parms{}; + + Parms.Table = Table; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRowNames != nullptr) + *OutRowNames = std::move(Parms.OutRowNames); +} + + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowStruct +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UDataTable* Table (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UScriptStruct* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UScriptStruct* UDataTableFunctionLibrary::GetDataTableRowStruct(const class UDataTable* Table) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("DataTableFunctionLibrary", "GetDataTableRowStruct"); + + Params::DataTableFunctionLibrary_GetDataTableRowStruct Parms{}; + + Parms.Table = Table; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DebugCameraController.ReceiveOnActivate +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* OriginalPC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADebugCameraController::ReceiveOnActivate(class APlayerController* OriginalPC) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "ReceiveOnActivate"); + + Params::DebugCameraController_ReceiveOnActivate Parms{}; + + Parms.OriginalPC = OriginalPC; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.DebugCameraController.ReceiveOnActorSelected +// (RequiredAPI, Event, Protected, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// class AActor* NewSelectedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SelectHitLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SelectHitNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void ADebugCameraController::ReceiveOnActorSelected(class AActor* NewSelectedActor, const struct FVector& SelectHitLocation, const struct FVector& SelectHitNormal, const struct FHitResult& Hit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "ReceiveOnActorSelected"); + + Params::DebugCameraController_ReceiveOnActorSelected Parms{}; + + Parms.NewSelectedActor = NewSelectedActor; + Parms.SelectHitLocation = std::move(SelectHitLocation); + Parms.SelectHitNormal = std::move(SelectHitNormal); + Parms.Hit = std::move(Hit); + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.DebugCameraController.ReceiveOnDeactivate +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* RestoredPC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADebugCameraController::ReceiveOnDeactivate(class APlayerController* RestoredPC) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "ReceiveOnDeactivate"); + + Params::DebugCameraController_ReceiveOnDeactivate Parms{}; + + Parms.RestoredPC = RestoredPC; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.DebugCameraController.SetPawnMovementSpeedScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewSpeedScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADebugCameraController::SetPawnMovementSpeedScale(float NewSpeedScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "SetPawnMovementSpeedScale"); + + Params::DebugCameraController_SetPawnMovementSpeedScale Parms{}; + + Parms.NewSpeedScale = NewSpeedScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DebugCameraController.ShowDebugSelectedInfo +// (RequiredAPI, Exec, Native, Public) + +void ADebugCameraController::ShowDebugSelectedInfo() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "ShowDebugSelectedInfo"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DebugCameraController.ToggleDisplay +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void ADebugCameraController::ToggleDisplay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "ToggleDisplay"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DebugCameraController.GetSelectedActor +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* ADebugCameraController::GetSelectedActor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DebugCameraController", "GetSelectedActor"); + + Params::DebugCameraController_GetSelectedActor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalActor.CreateDynamicMaterialInstance +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* ADecalActor::CreateDynamicMaterialInstance() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalActor", "CreateDynamicMaterialInstance"); + + Params::DecalActor_CreateDynamicMaterialInstance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DecalActor.SetDecalMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewDecalMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADecalActor::SetDecalMaterial(class UMaterialInterface* NewDecalMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalActor", "SetDecalMaterial"); + + Params::DecalActor_SetDecalMaterial Parms{}; + + Parms.NewDecalMaterial = NewDecalMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DecalActor.GetDecalMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* ADecalActor::GetDecalMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DecalActor", "GetDecalMaterial"); + + Params::DecalActor_GetDecalMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DefaultPawn.LookUpAtRate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Rate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADefaultPawn::LookUpAtRate(float Rate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DefaultPawn", "LookUpAtRate"); + + Params::DefaultPawn_LookUpAtRate Parms{}; + + Parms.Rate = Rate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DefaultPawn.MoveForward +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADefaultPawn::MoveForward(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DefaultPawn", "MoveForward"); + + Params::DefaultPawn_MoveForward Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DefaultPawn.MoveRight +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADefaultPawn::MoveRight(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DefaultPawn", "MoveRight"); + + Params::DefaultPawn_MoveRight Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DefaultPawn.MoveUp_World +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Val (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADefaultPawn::MoveUp_World(float Val) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DefaultPawn", "MoveUp_World"); + + Params::DefaultPawn_MoveUp_World Parms{}; + + Parms.Val = Val; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DefaultPawn.TurnAtRate +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float Rate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ADefaultPawn::TurnAtRate(float Rate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DefaultPawn", "TurnAtRate"); + + Params::DefaultPawn_TurnAtRate Parms{}; + + Parms.Rate = Rate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AutoDestroySubsystem.OnActorEndPlay +// (Final, Native, Private) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEndPlayReason EndPlayReason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAutoDestroySubsystem::OnActorEndPlay(class AActor* Actor, EEndPlayReason EndPlayReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AutoDestroySubsystem", "OnActorEndPlay"); + + Params::AutoDestroySubsystem_OnActorEndPlay Parms{}; + + Parms.Actor = Actor; + Parms.EndPlayReason = EndPlayReason; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CancellableAsyncAction.Cancel +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UCancellableAsyncAction::Cancel() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CancellableAsyncAction", "Cancel"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.CancellableAsyncAction.IsActive +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UCancellableAsyncAction::IsActive() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("CancellableAsyncAction", "IsActive"); + + Params::CancellableAsyncAction_IsActive Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ViewportStatsSubsystem.AddDisplayDelegate +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TDelegate&Delegate (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UViewportStatsSubsystem::AddDisplayDelegate(const TDelegate& Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ViewportStatsSubsystem", "AddDisplayDelegate"); + + Params::ViewportStatsSubsystem_AddDisplayDelegate Parms{}; + + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ViewportStatsSubsystem.AddTimedDisplay +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class FText& Text (Parm, NativeAccessSpecifierPublic) +// const struct FLinearColor& Color (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float duration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& DisplayOffset (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UViewportStatsSubsystem::AddTimedDisplay(const class FText& Text, const struct FLinearColor& Color, float duration, const struct FVector2D& DisplayOffset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ViewportStatsSubsystem", "AddTimedDisplay"); + + Params::ViewportStatsSubsystem_AddTimedDisplay Parms{}; + + Parms.Text = std::move(Text); + Parms.Color = std::move(Color); + Parms.duration = duration; + Parms.DisplayOffset = std::move(DisplayOffset); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ViewportStatsSubsystem.RemoveDisplayDelegate +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const int32 IndexToRemove (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UViewportStatsSubsystem::RemoveDisplayDelegate(const int32 IndexToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ViewportStatsSubsystem", "RemoveDisplayDelegate"); + + Params::ViewportStatsSubsystem_RemoveDisplayDelegate Parms{}; + + Parms.IndexToRemove = IndexToRemove; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Predefined Function +// Returns the result of UEngine::GetEngine() without a type-check, might be dangerous + +class UGameEngine* UGameEngine::GetEngine() +{ + return static_cast(UEngine::GetEngine()); +} + + +// Function Engine.InputDeviceSubsystem.ActivateDevicePropertyOfClass +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TSubclassOf PropertyClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FActivateDevicePropertyParams&Params_0 (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FInputDevicePropertyHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FInputDevicePropertyHandle UInputDeviceSubsystem::ActivateDevicePropertyOfClass(TSubclassOf PropertyClass, const struct FActivateDevicePropertyParams& Params_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "ActivateDevicePropertyOfClass"); + + Params::InputDeviceSubsystem_ActivateDevicePropertyOfClass Parms{}; + + Parms.PropertyClass = PropertyClass; + Parms.Params_0 = std::move(Params_0); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceSubsystem.RemoveAllDeviceProperties +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UInputDeviceSubsystem::RemoveAllDeviceProperties() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "RemoveAllDeviceProperties"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceSubsystem.RemoveDevicePropertyByHandle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const struct FInputDevicePropertyHandle&HandleToRemove (ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputDeviceSubsystem::RemoveDevicePropertyByHandle(const struct FInputDevicePropertyHandle& HandleToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "RemoveDevicePropertyByHandle"); + + Params::InputDeviceSubsystem_RemoveDevicePropertyByHandle Parms{}; + + Parms.HandleToRemove = std::move(HandleToRemove); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceSubsystem.RemoveDevicePropertyHandles +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TSet&HandlesToRemove (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UInputDeviceSubsystem::RemoveDevicePropertyHandles(const TSet& HandlesToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "RemoveDevicePropertyHandles"); + + Params::InputDeviceSubsystem_RemoveDevicePropertyHandles Parms{}; + + Parms.HandlesToRemove = std::move(HandlesToRemove); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputDeviceSubsystem.GetActiveDeviceProperty +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FInputDevicePropertyHandle&Handle (ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UInputDeviceProperty* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UInputDeviceProperty* UInputDeviceSubsystem::GetActiveDeviceProperty(const struct FInputDevicePropertyHandle& Handle) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "GetActiveDeviceProperty"); + + Params::InputDeviceSubsystem_GetActiveDeviceProperty Parms{}; + + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceSubsystem.GetInputDeviceHardwareIdentifier +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FInputDeviceId& InputDevice (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHardwareDeviceIdentifier ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FHardwareDeviceIdentifier UInputDeviceSubsystem::GetInputDeviceHardwareIdentifier(const struct FInputDeviceId& InputDevice) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "GetInputDeviceHardwareIdentifier"); + + Params::InputDeviceSubsystem_GetInputDeviceHardwareIdentifier Parms{}; + + Parms.InputDevice = std::move(InputDevice); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceSubsystem.GetMostRecentlyUsedHardwareDevice +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FPlatformUserId& InUserId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHardwareDeviceIdentifier ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FHardwareDeviceIdentifier UInputDeviceSubsystem::GetMostRecentlyUsedHardwareDevice(const struct FPlatformUserId& InUserId) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "GetMostRecentlyUsedHardwareDevice"); + + Params::InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice Parms{}; + + Parms.InUserId = std::move(InUserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceSubsystem.GetMostRecentlyUsedInputDeviceId +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FPlatformUserId& InUserId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FInputDeviceId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FInputDeviceId UInputDeviceSubsystem::GetMostRecentlyUsedInputDeviceId(const struct FPlatformUserId& InUserId) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "GetMostRecentlyUsedInputDeviceId"); + + Params::InputDeviceSubsystem_GetMostRecentlyUsedInputDeviceId Parms{}; + + Parms.InUserId = std::move(InUserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputDeviceSubsystem.IsPropertyActive +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FInputDevicePropertyHandle&Handle (ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UInputDeviceSubsystem::IsPropertyActive(const struct FInputDevicePropertyHandle& Handle) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputDeviceSubsystem", "IsPropertyActive"); + + Params::InputDeviceSubsystem_IsPropertyActive Parms{}; + + Parms.Handle = std::move(Handle); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.AsyncLoadOrCreateSaveGameForLocalPlayer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSubclassOf SaveGameClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* LocalPlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TDelegateDelegate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::AsyncLoadOrCreateSaveGameForLocalPlayer(TSubclassOf SaveGameClass, class APlayerController* LocalPlayerController, const class FString& SlotName, TDelegate Delegate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LocalPlayerSaveGame", "AsyncLoadOrCreateSaveGameForLocalPlayer"); + + Params::LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer Parms{}; + + Parms.SaveGameClass = SaveGameClass; + Parms.LocalPlayerController = LocalPlayerController; + Parms.SlotName = std::move(SlotName); + Parms.Delegate = Delegate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.LoadOrCreateSaveGameForLocalPlayer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSubclassOf SaveGameClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* LocalPlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULocalPlayerSaveGame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULocalPlayerSaveGame* ULocalPlayerSaveGame::LoadOrCreateSaveGameForLocalPlayer(TSubclassOf SaveGameClass, class APlayerController* LocalPlayerController, const class FString& SlotName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LocalPlayerSaveGame", "LoadOrCreateSaveGameForLocalPlayer"); + + Params::LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer Parms{}; + + Parms.SaveGameClass = SaveGameClass; + Parms.LocalPlayerController = LocalPlayerController; + Parms.SlotName = std::move(SlotName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.AsyncSaveGameToSlotForLocalPlayer +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::AsyncSaveGameToSlotForLocalPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "AsyncSaveGameToSlotForLocalPlayer"); + + Params::LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.OnPostLoad +// (RequiredAPI, Event, Public, BlueprintEvent) + +void ULocalPlayerSaveGame::OnPostLoad() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "OnPostLoad"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.LocalPlayerSaveGame.OnPostSave +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// bool bSuccess (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ULocalPlayerSaveGame::OnPostSave(bool bSuccess) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "OnPostSave"); + + Params::LocalPlayerSaveGame_OnPostSave Parms{}; + + Parms.bSuccess = bSuccess; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.LocalPlayerSaveGame.OnPreSave +// (RequiredAPI, Event, Public, BlueprintEvent) + +void ULocalPlayerSaveGame::OnPreSave() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "OnPreSave"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.LocalPlayerSaveGame.OnResetToDefault +// (RequiredAPI, Event, Public, BlueprintEvent) + +void ULocalPlayerSaveGame::OnResetToDefault() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "OnResetToDefault"); + + UObject::ProcessEvent(Func, nullptr); +} + + +// Function Engine.LocalPlayerSaveGame.ResetToDefault +// (RequiredAPI, Native, Public, BlueprintCallable) + +void ULocalPlayerSaveGame::ResetToDefault() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "ResetToDefault"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocalPlayerSaveGame.SaveGameToSlotForLocalPlayer +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::SaveGameToSlotForLocalPlayer() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "SaveGameToSlotForLocalPlayer"); + + Params::LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetInvalidDataVersion +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 ULocalPlayerSaveGame::GetInvalidDataVersion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetInvalidDataVersion"); + + Params::LocalPlayerSaveGame_GetInvalidDataVersion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetLatestDataVersion +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 ULocalPlayerSaveGame::GetLatestDataVersion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetLatestDataVersion"); + + Params::LocalPlayerSaveGame_GetLatestDataVersion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetLocalPlayerController +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* ULocalPlayerSaveGame::GetLocalPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetLocalPlayerController"); + + Params::LocalPlayerSaveGame_GetLocalPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetPlatformUserId +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FPlatformUserId ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlatformUserId ULocalPlayerSaveGame::GetPlatformUserId() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetPlatformUserId"); + + Params::LocalPlayerSaveGame_GetPlatformUserId Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetPlatformUserIndex +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 ULocalPlayerSaveGame::GetPlatformUserIndex() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetPlatformUserIndex"); + + Params::LocalPlayerSaveGame_GetPlatformUserIndex Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetSavedDataVersion +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 ULocalPlayerSaveGame::GetSavedDataVersion() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetSavedDataVersion"); + + Params::LocalPlayerSaveGame_GetSavedDataVersion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.GetSaveSlotName +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString ULocalPlayerSaveGame::GetSaveSlotName() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "GetSaveSlotName"); + + Params::LocalPlayerSaveGame_GetSaveSlotName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.IsSaveInProgress +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::IsSaveInProgress() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "IsSaveInProgress"); + + Params::LocalPlayerSaveGame_IsSaveInProgress Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.WasLastSaveSuccessful +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::WasLastSaveSuccessful() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "WasLastSaveSuccessful"); + + Params::LocalPlayerSaveGame_WasLastSaveSuccessful Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.WasLoaded +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::WasLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "WasLoaded"); + + Params::LocalPlayerSaveGame_WasLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocalPlayerSaveGame.WasSaveRequested +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ULocalPlayerSaveGame::WasSaveRequested() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocalPlayerSaveGame", "WasSaveRequested"); + + Params::LocalPlayerSaveGame_WasSaveRequested Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SpringArmComponent.GetTargetRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator USpringArmComponent::GetTargetRotation() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpringArmComponent", "GetTargetRotation"); + + Params::SpringArmComponent_GetTargetRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SpringArmComponent.GetUnfixedCameraPosition +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector USpringArmComponent::GetUnfixedCameraPosition() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpringArmComponent", "GetUnfixedCameraPosition"); + + Params::SpringArmComponent_GetUnfixedCameraPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SpringArmComponent.IsCollisionFixApplied +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USpringArmComponent::IsCollisionFixApplied() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SpringArmComponent", "IsCollisionFixApplied"); + + Params::SpringArmComponent_IsCollisionFixApplied Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.CanSpectate +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* Viewer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerState* ViewTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::CanSpectate(class APlayerController* Viewer, class APlayerState* ViewTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "CanSpectate"); + + Params::GameModeBase_CanSpectate Parms{}; + + Parms.Viewer = Viewer; + Parms.ViewTarget = ViewTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.ChangeName +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AController* Controller (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& NewName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNameChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::ChangeName(class AController* Controller, const class FString& NewName, bool bNameChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "ChangeName"); + + Params::GameModeBase_ChangeName Parms{}; + + Parms.Controller = Controller; + Parms.NewName = std::move(NewName); + Parms.bNameChange = bNameChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.ChoosePlayerStart +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class AController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AGameModeBase::ChoosePlayerStart(class AController* Player) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "ChoosePlayerStart"); + + Params::GameModeBase_ChoosePlayerStart Parms{}; + + Parms.Player = Player; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.FindPlayerStart +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class AController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& IncomingName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AGameModeBase::FindPlayerStart(class AController* Player, const class FString& IncomingName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "FindPlayerStart"); + + Params::GameModeBase_FindPlayerStart Parms{}; + + Parms.Player = Player; + Parms.IncomingName = std::move(IncomingName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.GetDefaultPawnClassForController +// (RequiredAPI, Native, Event, Public, BlueprintCallable, BlueprintEvent) +// Parameters: +// class AController* InController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* AGameModeBase::GetDefaultPawnClassForController(class AController* InController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "GetDefaultPawnClassForController"); + + Params::GameModeBase_GetDefaultPawnClassForController Parms{}; + + Parms.InController = InController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.GetNumPlayers +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 AGameModeBase::GetNumPlayers() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "GetNumPlayers"); + + Params::GameModeBase_GetNumPlayers Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.GetNumSpectators +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 AGameModeBase::GetNumSpectators() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "GetNumSpectators"); + + Params::GameModeBase_GetNumSpectators Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.HandleStartingNewPlayer +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::HandleStartingNewPlayer(class APlayerController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "HandleStartingNewPlayer"); + + Params::GameModeBase_HandleStartingNewPlayer Parms{}; + + Parms.NewPlayer = NewPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.InitializeHUDForPlayer +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// class APlayerController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::InitializeHUDForPlayer(class APlayerController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "InitializeHUDForPlayer"); + + Params::GameModeBase_InitializeHUDForPlayer Parms{}; + + Parms.NewPlayer = NewPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.InitStartSpot +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class AActor* StartSpot (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::InitStartSpot(class AActor* StartSpot, class AController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "InitStartSpot"); + + Params::GameModeBase_InitStartSpot Parms{}; + + Parms.StartSpot = StartSpot; + Parms.NewPlayer = NewPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.K2_FindPlayerStart +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class AController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& IncomingName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* AGameModeBase::K2_FindPlayerStart(class AController* Player, const class FString& IncomingName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_FindPlayerStart"); + + Params::GameModeBase_K2_FindPlayerStart Parms{}; + + Parms.Player = Player; + Parms.IncomingName = std::move(IncomingName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.K2_OnChangeName +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AController* Other (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& NewName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNameChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::K2_OnChangeName(class AController* Other, const class FString& NewName, bool bNameChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_OnChangeName"); + + Params::GameModeBase_K2_OnChangeName Parms{}; + + Parms.Other = Other; + Parms.NewName = std::move(NewName); + Parms.bNameChange = bNameChange; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameModeBase.K2_OnLogout +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AController* ExitingController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::K2_OnLogout(class AController* ExitingController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_OnLogout"); + + Params::GameModeBase_K2_OnLogout Parms{}; + + Parms.ExitingController = ExitingController; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameModeBase.K2_OnRestartPlayer +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::K2_OnRestartPlayer(class AController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_OnRestartPlayer"); + + Params::GameModeBase_K2_OnRestartPlayer Parms{}; + + Parms.NewPlayer = NewPlayer; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameModeBase.K2_OnSwapPlayerControllers +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class APlayerController* OldPC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* NewPC (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::K2_OnSwapPlayerControllers(class APlayerController* OldPC, class APlayerController* NewPC) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_OnSwapPlayerControllers"); + + Params::GameModeBase_K2_OnSwapPlayerControllers Parms{}; + + Parms.OldPC = OldPC; + Parms.NewPC = NewPC; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameModeBase.K2_PostLogin +// (RequiredAPI, Event, Public, BlueprintEvent) +// Parameters: +// class APlayerController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::K2_PostLogin(class APlayerController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "K2_PostLogin"); + + Params::GameModeBase_K2_PostLogin Parms{}; + + Parms.NewPlayer = NewPlayer; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameModeBase.PlayerCanRestart +// (RequiredAPI, Native, Event, Public, BlueprintCallable, BlueprintEvent) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::PlayerCanRestart(class APlayerController* Player) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "PlayerCanRestart"); + + Params::GameModeBase_PlayerCanRestart Parms{}; + + Parms.Player = Player; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.ResetLevel +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameModeBase::ResetLevel() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "ResetLevel"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.RestartPlayer +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::RestartPlayer(class AController* NewPlayer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "RestartPlayer"); + + Params::GameModeBase_RestartPlayer Parms{}; + + Parms.NewPlayer = NewPlayer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.RestartPlayerAtPlayerStart +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* StartSpot (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::RestartPlayerAtPlayerStart(class AController* NewPlayer, class AActor* StartSpot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "RestartPlayerAtPlayerStart"); + + Params::GameModeBase_RestartPlayerAtPlayerStart Parms{}; + + Parms.NewPlayer = NewPlayer; + Parms.StartSpot = StartSpot; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.RestartPlayerAtTransform +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& SpawnTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameModeBase::RestartPlayerAtTransform(class AController* NewPlayer, const struct FTransform& SpawnTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "RestartPlayerAtTransform"); + + Params::GameModeBase_RestartPlayerAtTransform Parms{}; + + Parms.NewPlayer = NewPlayer; + Parms.SpawnTransform = std::move(SpawnTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.ReturnToMainMenuHost +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameModeBase::ReturnToMainMenuHost() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "ReturnToMainMenuHost"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.ShouldReset +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class AActor* ActorToReset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::ShouldReset(class AActor* ActorToReset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "ShouldReset"); + + Params::GameModeBase_ShouldReset Parms{}; + + Parms.ActorToReset = ActorToReset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.SpawnDefaultPawnAtTransform +// (RequiredAPI, Native, Event, Public, HasOutParams, HasDefaults, BlueprintEvent) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& SpawnTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* AGameModeBase::SpawnDefaultPawnAtTransform(class AController* NewPlayer, const struct FTransform& SpawnTransform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "SpawnDefaultPawnAtTransform"); + + Params::GameModeBase_SpawnDefaultPawnAtTransform Parms{}; + + Parms.NewPlayer = NewPlayer; + Parms.SpawnTransform = std::move(SpawnTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.SpawnDefaultPawnFor +// (RequiredAPI, Native, Event, Public, BlueprintEvent) +// Parameters: +// class AController* NewPlayer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* StartSpot (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* AGameModeBase::SpawnDefaultPawnFor(class AController* NewPlayer, class AActor* StartSpot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "SpawnDefaultPawnFor"); + + Params::GameModeBase_SpawnDefaultPawnFor Parms{}; + + Parms.NewPlayer = NewPlayer; + Parms.StartSpot = StartSpot; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.StartPlay +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameModeBase::StartPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "StartPlay"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameModeBase.HasMatchEnded +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::HasMatchEnded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "HasMatchEnded"); + + Params::GameModeBase_HasMatchEnded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.HasMatchStarted +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::HasMatchStarted() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "HasMatchStarted"); + + Params::GameModeBase_HasMatchStarted Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameModeBase.MustSpectate +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// class APlayerController* NewPlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameModeBase::MustSpectate(class APlayerController* NewPlayerController) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameModeBase", "MustSpectate"); + + Params::GameModeBase_MustSpectate Parms{}; + + Parms.NewPlayerController = NewPlayerController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameMode.AbortMatch +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameMode::AbortMatch() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "AbortMatch"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameMode.EndMatch +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameMode::EndMatch() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "EndMatch"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameMode.K2_OnSetMatchState +// (RequiredAPI, Event, Protected, BlueprintEvent) +// Parameters: +// class FName NewState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameMode::K2_OnSetMatchState(class FName NewState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "K2_OnSetMatchState"); + + Params::GameMode_K2_OnSetMatchState Parms{}; + + Parms.NewState = NewState; + + UObject::ProcessEvent(Func, &Parms); +} + + +// Function Engine.GameMode.ReadyToEndMatch +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameMode::ReadyToEndMatch() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "ReadyToEndMatch"); + + Params::GameMode_ReadyToEndMatch Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameMode.ReadyToStartMatch +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameMode::ReadyToStartMatch() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "ReadyToStartMatch"); + + Params::GameMode_ReadyToStartMatch Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameMode.RestartGame +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameMode::RestartGame() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "RestartGame"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameMode.Say +// (RequiredAPI, Exec, Native, Public, BlueprintCallable) +// Parameters: +// const class FString& Msg (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AGameMode::Say(const class FString& Msg) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "Say"); + + Params::GameMode_Say Parms{}; + + Parms.Msg = std::move(Msg); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameMode.StartMatch +// (RequiredAPI, Native, Public, BlueprintCallable) + +void AGameMode::StartMatch() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "StartMatch"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameMode.GetMatchState +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName AGameMode::GetMatchState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "GetMatchState"); + + Params::GameMode_GetMatchState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameMode.IsMatchInProgress +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameMode::IsMatchInProgress() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameMode", "IsMatchInProgress"); + + Params::GameMode_IsMatchInProgress Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.ActivateReverbEffect +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UReverbEffect* ReverbEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName TagName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Priority (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Volume (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::ActivateReverbEffect(const class UObject* WorldContextObject, class UReverbEffect* ReverbEffect, class FName TagName, float Priority, float Volume, float FadeTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ActivateReverbEffect"); + + Params::GameplayStatics_ActivateReverbEffect Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ReverbEffect = ReverbEffect; + Parms.TagName = TagName; + Parms.Priority = Priority; + Parms.Volume = Volume; + Parms.FadeTime = FadeTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.AnnounceAccessibleString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& AnnouncementString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::AnnounceAccessibleString(const class FString& AnnouncementString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "AnnounceAccessibleString"); + + Params::GameplayStatics_AnnounceAccessibleString Parms{}; + + Parms.AnnouncementString = std::move(AnnouncementString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.ApplyDamage +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Static, Public, BlueprintCallable) +// Parameters: +// class AActor* DamagedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* EventInstigator (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf DamageTypeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameplayStatics::ApplyDamage(class AActor* DamagedActor, float BaseDamage, class AController* EventInstigator, class AActor* DamageCauser, TSubclassOf DamageTypeClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ApplyDamage"); + + Params::GameplayStatics_ApplyDamage Parms{}; + + Parms.DamagedActor = DamagedActor; + Parms.BaseDamage = BaseDamage; + Parms.EventInstigator = EventInstigator; + Parms.DamageCauser = DamageCauser; + Parms.DamageTypeClass = DamageTypeClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.ApplyPointDamage +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class AActor* DamagedActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HitFromDirection (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FHitResult& HitInfo (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// class AController* EventInstigator (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf DamageTypeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameplayStatics::ApplyPointDamage(class AActor* DamagedActor, float BaseDamage, const struct FVector& HitFromDirection, const struct FHitResult& HitInfo, class AController* EventInstigator, class AActor* DamageCauser, TSubclassOf DamageTypeClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ApplyPointDamage"); + + Params::GameplayStatics_ApplyPointDamage Parms{}; + + Parms.DamagedActor = DamagedActor; + Parms.BaseDamage = BaseDamage; + Parms.HitFromDirection = std::move(HitFromDirection); + Parms.HitInfo = std::move(HitInfo); + Parms.EventInstigator = EventInstigator; + Parms.DamageCauser = DamageCauser; + Parms.DamageTypeClass = DamageTypeClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.ApplyRadialDamage +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DamageRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf DamageTypeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& IgnoreActors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* InstigatedByController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDoFullDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionChannel DamagePreventionChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::ApplyRadialDamage(const class UObject* WorldContextObject, float BaseDamage, const struct FVector& Origin, float DamageRadius, TSubclassOf DamageTypeClass, const TArray& IgnoreActors, class AActor* DamageCauser, class AController* InstigatedByController, bool bDoFullDamage, ECollisionChannel DamagePreventionChannel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ApplyRadialDamage"); + + Params::GameplayStatics_ApplyRadialDamage Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BaseDamage = BaseDamage; + Parms.Origin = std::move(Origin); + Parms.DamageRadius = DamageRadius; + Parms.DamageTypeClass = DamageTypeClass; + Parms.IgnoreActors = std::move(IgnoreActors); + Parms.DamageCauser = DamageCauser; + Parms.InstigatedByController = InstigatedByController; + Parms.bDoFullDamage = bDoFullDamage; + Parms.DamagePreventionChannel = DamagePreventionChannel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.ApplyRadialDamageWithFalloff +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BaseDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinimumDamage (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DamageInnerRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DamageOuterRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DamageFalloff (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf DamageTypeClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& IgnoreActors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class AActor* DamageCauser (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AController* InstigatedByController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionChannel DamagePreventionChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::ApplyRadialDamageWithFalloff(const class UObject* WorldContextObject, float BaseDamage, float MinimumDamage, const struct FVector& Origin, float DamageInnerRadius, float DamageOuterRadius, float DamageFalloff, TSubclassOf DamageTypeClass, const TArray& IgnoreActors, class AActor* DamageCauser, class AController* InstigatedByController, ECollisionChannel DamagePreventionChannel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ApplyRadialDamageWithFalloff"); + + Params::GameplayStatics_ApplyRadialDamageWithFalloff Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BaseDamage = BaseDamage; + Parms.MinimumDamage = MinimumDamage; + Parms.Origin = std::move(Origin); + Parms.DamageInnerRadius = DamageInnerRadius; + Parms.DamageOuterRadius = DamageOuterRadius; + Parms.DamageFalloff = DamageFalloff; + Parms.DamageTypeClass = DamageTypeClass; + Parms.IgnoreActors = std::move(IgnoreActors); + Parms.DamageCauser = DamageCauser; + Parms.InstigatedByController = InstigatedByController; + Parms.DamagePreventionChannel = DamagePreventionChannel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.AreAnyListenersWithinRange +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaximumRange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::AreAnyListenersWithinRange(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "AreAnyListenersWithinRange"); + + Params::GameplayStatics_AreAnyListenersWithinRange Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Location = std::move(Location); + Parms.MaximumRange = MaximumRange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.AreSubtitlesEnabled +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::AreSubtitlesEnabled() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "AreSubtitlesEnabled"); + + Params::GameplayStatics_AreSubtitlesEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.BeginDeferredActorSpawnFromClass +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ActorClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& SpawnTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESpawnActorCollisionHandlingMethod CollisionHandlingOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* Owner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESpawnActorScaleMethod TransformScaleMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UGameplayStatics::BeginDeferredActorSpawnFromClass(const class UObject* WorldContextObject, TSubclassOf ActorClass, const struct FTransform& SpawnTransform, ESpawnActorCollisionHandlingMethod CollisionHandlingOverride, class AActor* Owner, ESpawnActorScaleMethod TransformScaleMethod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "BeginDeferredActorSpawnFromClass"); + + Params::GameplayStatics_BeginDeferredActorSpawnFromClass Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ActorClass = ActorClass; + Parms.SpawnTransform = std::move(SpawnTransform); + Parms.CollisionHandlingOverride = CollisionHandlingOverride; + Parms.Owner = Owner; + Parms.TransformScaleMethod = TransformScaleMethod; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.BeginSpawningActorFromBlueprint +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UBlueprint* Blueprint (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& SpawnTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNoCollisionFail (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UGameplayStatics::BeginSpawningActorFromBlueprint(const class UObject* WorldContextObject, const class UBlueprint* Blueprint, const struct FTransform& SpawnTransform, bool bNoCollisionFail) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "BeginSpawningActorFromBlueprint"); + + Params::GameplayStatics_BeginSpawningActorFromBlueprint Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Blueprint = Blueprint; + Parms.SpawnTransform = std::move(SpawnTransform); + Parms.bNoCollisionFail = bNoCollisionFail; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_Advanced +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPredictProjectilePathParams&PredictParams (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FPredictProjectilePathResult* PredictResult (Parm, OutParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::Blueprint_PredictProjectilePath_Advanced(const class UObject* WorldContextObject, const struct FPredictProjectilePathParams& PredictParams, struct FPredictProjectilePathResult* PredictResult) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "Blueprint_PredictProjectilePath_Advanced"); + + Params::GameplayStatics_Blueprint_PredictProjectilePath_Advanced Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PredictParams = std::move(PredictParams); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PredictResult != nullptr) + *PredictResult = std::move(Parms.PredictResult); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_ByObjectType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// TArray* OutPathPositions (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FVector* OutLastTraceDestination (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& StartPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LaunchVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTracePath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectileRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ObjectTypes (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawDebugTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SimFrequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxSimTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OverrideGravityZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::Blueprint_PredictProjectilePath_ByObjectType(const class UObject* WorldContextObject, struct FHitResult* OutHit, TArray* OutPathPositions, struct FVector* OutLastTraceDestination, const struct FVector& StartPos, const struct FVector& LaunchVelocity, bool bTracePath, float ProjectileRadius, const TArray& ObjectTypes, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, float DrawDebugTime, float SimFrequency, float MaxSimTime, float OverrideGravityZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "Blueprint_PredictProjectilePath_ByObjectType"); + + Params::GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.StartPos = std::move(StartPos); + Parms.LaunchVelocity = std::move(LaunchVelocity); + Parms.bTracePath = bTracePath; + Parms.ProjectileRadius = ProjectileRadius; + Parms.ObjectTypes = std::move(ObjectTypes); + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.DrawDebugTime = DrawDebugTime; + Parms.SimFrequency = SimFrequency; + Parms.MaxSimTime = MaxSimTime; + Parms.OverrideGravityZ = OverrideGravityZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + if (OutPathPositions != nullptr) + *OutPathPositions = std::move(Parms.OutPathPositions); + + if (OutLastTraceDestination != nullptr) + *OutLastTraceDestination = std::move(Parms.OutLastTraceDestination); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_ByTraceChannel +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult* OutHit (Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// TArray* OutPathPositions (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// struct FVector* OutLastTraceDestination (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& StartPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LaunchVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTracePath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectileRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ECollisionChannel TraceChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bTraceComplex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToIgnore (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawDebugTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SimFrequency (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxSimTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OverrideGravityZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::Blueprint_PredictProjectilePath_ByTraceChannel(const class UObject* WorldContextObject, struct FHitResult* OutHit, TArray* OutPathPositions, struct FVector* OutLastTraceDestination, const struct FVector& StartPos, const struct FVector& LaunchVelocity, bool bTracePath, float ProjectileRadius, ECollisionChannel TraceChannel, bool bTraceComplex, const TArray& ActorsToIgnore, EDrawDebugTrace DrawDebugType, float DrawDebugTime, float SimFrequency, float MaxSimTime, float OverrideGravityZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "Blueprint_PredictProjectilePath_ByTraceChannel"); + + Params::GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.StartPos = std::move(StartPos); + Parms.LaunchVelocity = std::move(LaunchVelocity); + Parms.bTracePath = bTracePath; + Parms.ProjectileRadius = ProjectileRadius; + Parms.TraceChannel = TraceChannel; + Parms.bTraceComplex = bTraceComplex; + Parms.ActorsToIgnore = std::move(ActorsToIgnore); + Parms.DrawDebugType = DrawDebugType; + Parms.DrawDebugTime = DrawDebugTime; + Parms.SimFrequency = SimFrequency; + Parms.MaxSimTime = MaxSimTime; + Parms.OverrideGravityZ = OverrideGravityZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutHit != nullptr) + *OutHit = std::move(Parms.OutHit); + + if (OutPathPositions != nullptr) + *OutPathPositions = std::move(Parms.OutPathPositions); + + if (OutLastTraceDestination != nullptr) + *OutLastTraceDestination = std::move(Parms.OutLastTraceDestination); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.BlueprintSuggestProjectileVelocity +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* TossVelocity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& StartLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& EndLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LaunchSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OverrideGravityZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESuggestProjVelocityTraceOption TraceOption (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CollisionRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFavorHighArc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDrawDebug (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAcceptClosestOnNoSolutions (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::BlueprintSuggestProjectileVelocity(const class UObject* WorldContextObject, struct FVector* TossVelocity, const struct FVector& StartLocation, const struct FVector& EndLocation, float LaunchSpeed, float OverrideGravityZ, ESuggestProjVelocityTraceOption TraceOption, float CollisionRadius, bool bFavorHighArc, bool bDrawDebug, bool bAcceptClosestOnNoSolutions) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "BlueprintSuggestProjectileVelocity"); + + Params::GameplayStatics_BlueprintSuggestProjectileVelocity Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.StartLocation = std::move(StartLocation); + Parms.EndLocation = std::move(EndLocation); + Parms.LaunchSpeed = LaunchSpeed; + Parms.OverrideGravityZ = OverrideGravityZ; + Parms.TraceOption = TraceOption; + Parms.CollisionRadius = CollisionRadius; + Parms.bFavorHighArc = bFavorHighArc; + Parms.bDrawDebug = bDrawDebug; + Parms.bAcceptClosestOnNoSolutions = bAcceptClosestOnNoSolutions; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (TossVelocity != nullptr) + *TossVelocity = std::move(Parms.TossVelocity); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.BreakHitResult +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// bool* bBlockingHit (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bInitialOverlap (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Time (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Distance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Location (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* ImpactPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Normal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* ImpactNormal (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPhysicalMaterial** PhysMat (Parm, OutParm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor** HitActor (Parm, OutParm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent** HitComponent (Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* HitBoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* BoneName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* HitItem (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* ElementIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* FaceIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* TraceStart (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* TraceEnd (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::BreakHitResult(const struct FHitResult& Hit, bool* bBlockingHit, bool* bInitialOverlap, float* Time, float* Distance, struct FVector* Location, struct FVector* ImpactPoint, struct FVector* Normal, struct FVector* ImpactNormal, class UPhysicalMaterial** PhysMat, class AActor** HitActor, class UPrimitiveComponent** HitComponent, class FName* HitBoneName, class FName* BoneName, int32* HitItem, int32* ElementIndex, int32* FaceIndex, struct FVector* TraceStart, struct FVector* TraceEnd) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "BreakHitResult"); + + Params::GameplayStatics_BreakHitResult Parms{}; + + Parms.Hit = std::move(Hit); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bBlockingHit != nullptr) + *bBlockingHit = Parms.bBlockingHit; + + if (bInitialOverlap != nullptr) + *bInitialOverlap = Parms.bInitialOverlap; + + if (Time != nullptr) + *Time = Parms.Time; + + if (Distance != nullptr) + *Distance = Parms.Distance; + + if (Location != nullptr) + *Location = std::move(Parms.Location); + + if (ImpactPoint != nullptr) + *ImpactPoint = std::move(Parms.ImpactPoint); + + if (Normal != nullptr) + *Normal = std::move(Parms.Normal); + + if (ImpactNormal != nullptr) + *ImpactNormal = std::move(Parms.ImpactNormal); + + if (PhysMat != nullptr) + *PhysMat = Parms.PhysMat; + + if (HitActor != nullptr) + *HitActor = Parms.HitActor; + + if (HitComponent != nullptr) + *HitComponent = Parms.HitComponent; + + if (HitBoneName != nullptr) + *HitBoneName = Parms.HitBoneName; + + if (BoneName != nullptr) + *BoneName = Parms.BoneName; + + if (HitItem != nullptr) + *HitItem = Parms.HitItem; + + if (ElementIndex != nullptr) + *ElementIndex = Parms.ElementIndex; + + if (FaceIndex != nullptr) + *FaceIndex = Parms.FaceIndex; + + if (TraceStart != nullptr) + *TraceStart = std::move(Parms.TraceStart); + + if (TraceEnd != nullptr) + *TraceEnd = std::move(Parms.TraceEnd); +} + + +// Function Engine.GameplayStatics.CancelAsyncLoading +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UGameplayStatics::CancelAsyncLoading() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "CancelAsyncLoading"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.ClearSoundMixClassOverride +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundMix* InSoundMixModifier (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundClass* InSoundClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeOutTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::ClearSoundMixClassOverride(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier, class USoundClass* InSoundClass, float FadeOutTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ClearSoundMixClassOverride"); + + Params::GameplayStatics_ClearSoundMixClassOverride Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InSoundMixModifier = InSoundMixModifier; + Parms.InSoundClass = InSoundClass; + Parms.FadeOutTime = FadeOutTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.ClearSoundMixModifiers +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::ClearSoundMixModifiers(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ClearSoundMixModifiers"); + + Params::GameplayStatics_ClearSoundMixModifiers Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.CreatePlayer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSpawnPlayerController (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UGameplayStatics::CreatePlayer(const class UObject* WorldContextObject, int32 ControllerId, bool bSpawnPlayerController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "CreatePlayer"); + + Params::GameplayStatics_CreatePlayer Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ControllerId = ControllerId; + Parms.bSpawnPlayerController = bSpawnPlayerController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.CreatePlayerFromPlatformUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlatformUserId& UserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSpawnPlayerController (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UGameplayStatics::CreatePlayerFromPlatformUser(const class UObject* WorldContextObject, const struct FPlatformUserId& UserId, bool bSpawnPlayerController) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "CreatePlayerFromPlatformUser"); + + Params::GameplayStatics_CreatePlayerFromPlatformUser Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.UserId = std::move(UserId); + Parms.bSpawnPlayerController = bSpawnPlayerController; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.CreateSaveGameObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSubclassOf SaveGameClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USaveGame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USaveGame* UGameplayStatics::CreateSaveGameObject(TSubclassOf SaveGameClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "CreateSaveGameObject"); + + Params::GameplayStatics_CreateSaveGameObject Parms{}; + + Parms.SaveGameClass = SaveGameClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.CreateSound2D +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistAcrossLevelTransition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::CreateSound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, bool bPersistAcrossLevelTransition, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "CreateSound2D"); + + Params::GameplayStatics_CreateSound2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Sound = Sound; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.bPersistAcrossLevelTransition = bPersistAcrossLevelTransition; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.DeactivateReverbEffect +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName TagName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::DeactivateReverbEffect(const class UObject* WorldContextObject, class FName TagName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DeactivateReverbEffect"); + + Params::GameplayStatics_DeactivateReverbEffect Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TagName = TagName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.DeleteGameInSlot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::DeleteGameInSlot(const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DeleteGameInSlot"); + + Params::GameplayStatics_DeleteGameInSlot Parms{}; + + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.DeprojectSceneCaptureComponentToWorld +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class USceneCaptureComponent2D* SceneCaptureComponent2D (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& TargetUV (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::DeprojectSceneCaptureComponentToWorld(class USceneCaptureComponent2D* SceneCaptureComponent2D, const struct FVector2D& TargetUV, struct FVector* WorldPosition, struct FVector* WorldDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DeprojectSceneCaptureComponentToWorld"); + + Params::GameplayStatics_DeprojectSceneCaptureComponentToWorld Parms{}; + + Parms.SceneCaptureComponent2D = SceneCaptureComponent2D; + Parms.TargetUV = std::move(TargetUV); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldPosition != nullptr) + *WorldPosition = std::move(Parms.WorldPosition); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.DeprojectSceneCaptureToWorld +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class ASceneCapture2D* SceneCapture2D (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& TargetUV (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::DeprojectSceneCaptureToWorld(class ASceneCapture2D* SceneCapture2D, const struct FVector2D& TargetUV, struct FVector* WorldPosition, struct FVector* WorldDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DeprojectSceneCaptureToWorld"); + + Params::GameplayStatics_DeprojectSceneCaptureToWorld Parms{}; + + Parms.SceneCapture2D = SceneCapture2D; + Parms.TargetUV = std::move(TargetUV); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldPosition != nullptr) + *WorldPosition = std::move(Parms.WorldPosition); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.DeprojectScreenToWorld +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::DeprojectScreenToWorld(class APlayerController* Player, const struct FVector2D& ScreenPosition, struct FVector* WorldPosition, struct FVector* WorldDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DeprojectScreenToWorld"); + + Params::GameplayStatics_DeprojectScreenToWorld Parms{}; + + Parms.Player = Player; + Parms.ScreenPosition = std::move(ScreenPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldPosition != nullptr) + *WorldPosition = std::move(Parms.WorldPosition); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.DoesSaveGameExist +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::DoesSaveGameExist(const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "DoesSaveGameExist"); + + Params::GameplayStatics_DoesSaveGameExist Parms{}; + + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.EnableLiveStreaming +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool Enable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::EnableLiveStreaming(bool Enable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "EnableLiveStreaming"); + + Params::GameplayStatics_EnableLiveStreaming Parms{}; + + Parms.Enable = Enable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.FindCollisionUV +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// int32 UVChannel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* UV (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::FindCollisionUV(const struct FHitResult& Hit, int32 UVChannel, struct FVector2D* UV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "FindCollisionUV"); + + Params::GameplayStatics_FindCollisionUV Parms{}; + + Parms.Hit = std::move(Hit); + Parms.UVChannel = UVChannel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (UV != nullptr) + *UV = std::move(Parms.UV); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.FindNearestActor +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& ActorsToCheck (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// float* Distance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UGameplayStatics::FindNearestActor(const struct FVector& Origin, const TArray& ActorsToCheck, float* Distance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "FindNearestActor"); + + Params::GameplayStatics_FindNearestActor Parms{}; + + Parms.Origin = std::move(Origin); + Parms.ActorsToCheck = std::move(ActorsToCheck); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Distance != nullptr) + *Distance = Parms.Distance; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.FinishSpawningActor +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& SpawnTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESpawnActorScaleMethod TransformScaleMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UGameplayStatics::FinishSpawningActor(class AActor* Actor, const struct FTransform& SpawnTransform, ESpawnActorScaleMethod TransformScaleMethod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "FinishSpawningActor"); + + Params::GameplayStatics_FinishSpawningActor Parms{}; + + Parms.Actor = Actor; + Parms.SpawnTransform = std::move(SpawnTransform); + Parms.TransformScaleMethod = TransformScaleMethod; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.FlushLevelStreaming +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::FlushLevelStreaming(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "FlushLevelStreaming"); + + Params::GameplayStatics_FlushLevelStreaming Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.GetAccurateRealTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// int32* Seconds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* PartialSeconds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetAccurateRealTime(int32* Seconds, double* PartialSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAccurateRealTime"); + + Params::GameplayStatics_GetAccurateRealTime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Seconds != nullptr) + *Seconds = Parms.Seconds; + + if (PartialSeconds != nullptr) + *PartialSeconds = Parms.PartialSeconds; +} + + +// Function Engine.GameplayStatics.GetActiveSpatialPluginName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UGameplayStatics::GetActiveSpatialPluginName(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetActiveSpatialPluginName"); + + Params::GameplayStatics_GetActiveSpatialPluginName Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetActorArrayAverageLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const TArray& Actors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UGameplayStatics::GetActorArrayAverageLocation(const TArray& Actors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetActorArrayAverageLocation"); + + Params::GameplayStatics_GetActorArrayAverageLocation Parms{}; + + Parms.Actors = std::move(Actors); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetActorArrayBounds +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const TArray& Actors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bOnlyCollidingComponents (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Center (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoxExtent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetActorArrayBounds(const TArray& Actors, bool bOnlyCollidingComponents, struct FVector* Center, struct FVector* BoxExtent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetActorArrayBounds"); + + Params::GameplayStatics_GetActorArrayBounds Parms{}; + + Parms.Actors = std::move(Actors); + Parms.bOnlyCollidingComponents = bOnlyCollidingComponents; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Center != nullptr) + *Center = std::move(Parms.Center); + + if (BoxExtent != nullptr) + *BoxExtent = std::move(Parms.BoxExtent); +} + + +// Function Engine.GameplayStatics.GetActorOfClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ActorClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AActor* UGameplayStatics::GetActorOfClass(const class UObject* WorldContextObject, TSubclassOf ActorClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetActorOfClass"); + + Params::GameplayStatics_GetActorOfClass Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ActorClass = ActorClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetAllActorsOfClass +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ActorClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetAllActorsOfClass(const class UObject* WorldContextObject, TSubclassOf ActorClass, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAllActorsOfClass"); + + Params::GameplayStatics_GetAllActorsOfClass Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ActorClass = ActorClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.GameplayStatics.GetAllActorsOfClassWithTag +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ActorClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetAllActorsOfClassWithTag(const class UObject* WorldContextObject, TSubclassOf ActorClass, class FName Tag, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAllActorsOfClassWithTag"); + + Params::GameplayStatics_GetAllActorsOfClassWithTag Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ActorClass = ActorClass; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.GameplayStatics.GetAllActorsWithInterface +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Interface (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetAllActorsWithInterface(const class UObject* WorldContextObject, TSubclassOf Interface, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAllActorsWithInterface"); + + Params::GameplayStatics_GetAllActorsWithInterface Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Interface = Interface; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.GameplayStatics.GetAllActorsWithTag +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName Tag (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutActors (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetAllActorsWithTag(const class UObject* WorldContextObject, class FName Tag, TArray* OutActors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAllActorsWithTag"); + + Params::GameplayStatics_GetAllActorsWithTag Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Tag = Tag; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActors != nullptr) + *OutActors = std::move(Parms.OutActors); +} + + +// Function Engine.GameplayStatics.GetAudioTimeSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UGameplayStatics::GetAudioTimeSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAudioTimeSeconds"); + + Params::GameplayStatics_GetAudioTimeSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetAvailableSpatialPluginNames +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UGameplayStatics::GetAvailableSpatialPluginNames(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetAvailableSpatialPluginNames"); + + Params::GameplayStatics_GetAvailableSpatialPluginNames Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetClosestListenerLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaximumRange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool bAllowAttenuationOverride (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* ListenerPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::GetClosestListenerLocation(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange, const bool bAllowAttenuationOverride, struct FVector* ListenerPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetClosestListenerLocation"); + + Params::GameplayStatics_GetClosestListenerLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Location = std::move(Location); + Parms.MaximumRange = MaximumRange; + Parms.bAllowAttenuationOverride = bAllowAttenuationOverride; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ListenerPosition != nullptr) + *ListenerPosition = std::move(Parms.ListenerPosition); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetCurrentLevelName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRemovePrefixString (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UGameplayStatics::GetCurrentLevelName(const class UObject* WorldContextObject, bool bRemovePrefixString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetCurrentLevelName"); + + Params::GameplayStatics_GetCurrentLevelName Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.bRemovePrefixString = bRemovePrefixString; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetCurrentReverbEffect +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UReverbEffect* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UReverbEffect* UGameplayStatics::GetCurrentReverbEffect(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetCurrentReverbEffect"); + + Params::GameplayStatics_GetCurrentReverbEffect Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetEnableWorldRendering +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::GetEnableWorldRendering(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetEnableWorldRendering"); + + Params::GameplayStatics_GetEnableWorldRendering Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetGameInstance +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UGameInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UGameInstance* UGameplayStatics::GetGameInstance(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetGameInstance"); + + Params::GameplayStatics_GetGameInstance Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetGameMode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AGameModeBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AGameModeBase* UGameplayStatics::GetGameMode(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetGameMode"); + + Params::GameplayStatics_GetGameMode Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetGameState +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AGameStateBase* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class AGameStateBase* UGameplayStatics::GetGameState(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetGameState"); + + Params::GameplayStatics_GetGameState Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetGlobalTimeDilation +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameplayStatics::GetGlobalTimeDilation(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetGlobalTimeDilation"); + + Params::GameplayStatics_GetGlobalTimeDilation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetIntOption +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Options (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 DefaultValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetIntOption(const class FString& Options, const class FString& Key, int32 DefaultValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetIntOption"); + + Params::GameplayStatics_GetIntOption Parms{}; + + Parms.Options = std::move(Options); + Parms.Key = std::move(Key); + Parms.DefaultValue = DefaultValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetKeyValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Pair (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* Key (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* Value (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetKeyValue(const class FString& Pair, class FString* Key, class FString* Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetKeyValue"); + + Params::GameplayStatics_GetKeyValue Parms{}; + + Parms.Pair = std::move(Pair); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Key != nullptr) + *Key = std::move(Parms.Key); + + if (Value != nullptr) + *Value = std::move(Parms.Value); +} + + +// Function Engine.GameplayStatics.GetMaxAudioChannelCount +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetMaxAudioChannelCount(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetMaxAudioChannelCount"); + + Params::GameplayStatics_GetMaxAudioChannelCount Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetNumLocalPlayerControllers +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetNumLocalPlayerControllers(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetNumLocalPlayerControllers"); + + Params::GameplayStatics_GetNumLocalPlayerControllers Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetNumPlayerControllers +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetNumPlayerControllers(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetNumPlayerControllers"); + + Params::GameplayStatics_GetNumPlayerControllers Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetNumPlayerStates +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetNumPlayerStates(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetNumPlayerStates"); + + Params::GameplayStatics_GetNumPlayerStates Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetObjectClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* UGameplayStatics::GetObjectClass(const class UObject* Object) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetObjectClass"); + + Params::GameplayStatics_GetObjectClass Parms{}; + + Parms.Object = Object; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlatformName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UGameplayStatics::GetPlatformName() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlatformName"); + + Params::GameplayStatics_GetPlatformName Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerCameraManager +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 PlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerCameraManager* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerCameraManager* UGameplayStatics::GetPlayerCameraManager(const class UObject* WorldContextObject, int32 PlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerCameraManager"); + + Params::GameplayStatics_GetPlayerCameraManager Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlayerIndex = PlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerCharacter +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 PlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ACharacter* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ACharacter* UGameplayStatics::GetPlayerCharacter(const class UObject* WorldContextObject, int32 PlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerCharacter"); + + Params::GameplayStatics_GetPlayerCharacter Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlayerIndex = PlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerController +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 PlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UGameplayStatics::GetPlayerController(const class UObject* WorldContextObject, int32 PlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerController"); + + Params::GameplayStatics_GetPlayerController Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlayerIndex = PlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerControllerFromID +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UGameplayStatics::GetPlayerControllerFromID(const class UObject* WorldContextObject, int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerControllerFromID"); + + Params::GameplayStatics_GetPlayerControllerFromID Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerControllerFromPlatformUser +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlatformUserId& UserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UGameplayStatics::GetPlayerControllerFromPlatformUser(const class UObject* WorldContextObject, const struct FPlatformUserId& UserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerControllerFromPlatformUser"); + + Params::GameplayStatics_GetPlayerControllerFromPlatformUser Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerControllerID +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GetPlayerControllerID(class APlayerController* Player) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerControllerID"); + + Params::GameplayStatics_GetPlayerControllerID Parms{}; + + Parms.Player = Player; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerPawn +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 PlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APawn* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APawn* UGameplayStatics::GetPlayerPawn(const class UObject* WorldContextObject, int32 PlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerPawn"); + + Params::GameplayStatics_GetPlayerPawn Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlayerIndex = PlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerState +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 PlayerStateIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerState* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerState* UGameplayStatics::GetPlayerState(const class UObject* WorldContextObject, int32 PlayerStateIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerState"); + + Params::GameplayStatics_GetPlayerState Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PlayerStateIndex = PlayerStateIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetPlayerStateFromUniqueNetId +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FUniqueNetIdRepl& UniqueID (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class APlayerState* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerState* UGameplayStatics::GetPlayerStateFromUniqueNetId(const class UObject* WorldContextObject, const struct FUniqueNetIdRepl& UniqueID) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetPlayerStateFromUniqueNetId"); + + Params::GameplayStatics_GetPlayerStateFromUniqueNetId Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.UniqueID = std::move(UniqueID); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetRealTimeSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UGameplayStatics::GetRealTimeSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetRealTimeSeconds"); + + Params::GameplayStatics_GetRealTimeSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetStreamingLevel +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PackageName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULevelStreaming* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevelStreaming* UGameplayStatics::GetStreamingLevel(const class UObject* WorldContextObject, class FName PackageName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetStreamingLevel"); + + Params::GameplayStatics_GetStreamingLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PackageName = PackageName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetSurfaceType +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FHitResult& Hit (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +// EPhysicalSurface ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EPhysicalSurface UGameplayStatics::GetSurfaceType(const struct FHitResult& Hit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetSurfaceType"); + + Params::GameplayStatics_GetSurfaceType Parms{}; + + Parms.Hit = std::move(Hit); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetTimeSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UGameplayStatics::GetTimeSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetTimeSeconds"); + + Params::GameplayStatics_GetTimeSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetUnpausedTimeSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UGameplayStatics::GetUnpausedTimeSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetUnpausedTimeSeconds"); + + Params::GameplayStatics_GetUnpausedTimeSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetViewportMouseCaptureMode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMouseCaptureMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EMouseCaptureMode UGameplayStatics::GetViewportMouseCaptureMode(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetViewportMouseCaptureMode"); + + Params::GameplayStatics_GetViewportMouseCaptureMode Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetViewProjectionMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMinimalViewInfo& DesiredView (Parm, NativeAccessSpecifierPublic) +// struct FMatrix* ViewMatrix (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix* ProjectionMatrix (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix* ViewProjectionMatrix (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::GetViewProjectionMatrix(const struct FMinimalViewInfo& DesiredView, struct FMatrix* ViewMatrix, struct FMatrix* ProjectionMatrix, struct FMatrix* ViewProjectionMatrix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetViewProjectionMatrix"); + + Params::GameplayStatics_GetViewProjectionMatrix Parms{}; + + Parms.DesiredView = std::move(DesiredView); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ViewMatrix != nullptr) + *ViewMatrix = std::move(Parms.ViewMatrix); + + if (ProjectionMatrix != nullptr) + *ProjectionMatrix = std::move(Parms.ProjectionMatrix); + + if (ViewProjectionMatrix != nullptr) + *ViewProjectionMatrix = std::move(Parms.ViewProjectionMatrix); +} + + +// Function Engine.GameplayStatics.GetWorldDeltaSeconds +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UGameplayStatics::GetWorldDeltaSeconds(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetWorldDeltaSeconds"); + + Params::GameplayStatics_GetWorldDeltaSeconds Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GetWorldOriginLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntVector UGameplayStatics::GetWorldOriginLocation(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GetWorldOriginLocation"); + + Params::GameplayStatics_GetWorldOriginLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.GrassOverlappingSphereCount +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UStaticMesh* StaticMesh (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& CenterPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameplayStatics::GrassOverlappingSphereCount(const class UObject* WorldContextObject, const class UStaticMesh* StaticMesh, const struct FVector& CenterPosition, float Radius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "GrassOverlappingSphereCount"); + + Params::GameplayStatics_GrassOverlappingSphereCount Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.StaticMesh = StaticMesh; + Parms.CenterPosition = std::move(CenterPosition); + Parms.Radius = Radius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.HasLaunchOption +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& OptionToCheck (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::HasLaunchOption(const class FString& OptionToCheck) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "HasLaunchOption"); + + Params::GameplayStatics_HasLaunchOption Parms{}; + + Parms.OptionToCheck = std::move(OptionToCheck); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.HasOption +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Options (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InKey (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::HasOption(const class FString& Options, const class FString& InKey) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "HasOption"); + + Params::GameplayStatics_HasOption Parms{}; + + Parms.Options = std::move(Options); + Parms.InKey = std::move(InKey); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.IsAnyLocalPlayerCameraWithinRange +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaximumRange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::IsAnyLocalPlayerCameraWithinRange(const class UObject* WorldContextObject, const struct FVector& Location, float MaximumRange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "IsAnyLocalPlayerCameraWithinRange"); + + Params::GameplayStatics_IsAnyLocalPlayerCameraWithinRange Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Location = std::move(Location); + Parms.MaximumRange = MaximumRange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.IsGamePaused +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::IsGamePaused(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "IsGamePaused"); + + Params::GameplayStatics_IsGamePaused Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.IsSplitscreenForceDisabled +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::IsSplitscreenForceDisabled(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "IsSplitscreenForceDisabled"); + + Params::GameplayStatics_IsSplitscreenForceDisabled Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.LoadGameFromSlot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USaveGame* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USaveGame* UGameplayStatics::LoadGameFromSlot(const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "LoadGameFromSlot"); + + Params::GameplayStatics_LoadGameFromSlot Parms{}; + + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.LoadStreamLevel +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LevelName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMakeVisibleAfterLoad (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldBlockOnLoad (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::LoadStreamLevel(const class UObject* WorldContextObject, class FName LevelName, bool bMakeVisibleAfterLoad, bool bShouldBlockOnLoad, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "LoadStreamLevel"); + + Params::GameplayStatics_LoadStreamLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LevelName = LevelName; + Parms.bMakeVisibleAfterLoad = bMakeVisibleAfterLoad; + Parms.bShouldBlockOnLoad = bShouldBlockOnLoad; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.LoadStreamLevelBySoftObjectPtr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr Level (ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bMakeVisibleAfterLoad (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShouldBlockOnLoad (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) + +void UGameplayStatics::LoadStreamLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, bool bMakeVisibleAfterLoad, bool bShouldBlockOnLoad, const struct FLatentActionInfo& LatentInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "LoadStreamLevelBySoftObjectPtr"); + + Params::GameplayStatics_LoadStreamLevelBySoftObjectPtr Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Level = Level; + Parms.bMakeVisibleAfterLoad = bMakeVisibleAfterLoad; + Parms.bShouldBlockOnLoad = bShouldBlockOnLoad; + Parms.LatentInfo = std::move(LatentInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.MakeHitResult +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// bool bBlockingHit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInitialOverlap (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Time (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Distance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ImpactPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Normal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ImpactNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPhysicalMaterial* PhysMat (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* HitActor (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* HitComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName HitBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 HitItem (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ElementIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 FaceIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TraceStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TraceEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FHitResult ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +struct FHitResult UGameplayStatics::MakeHitResult(bool bBlockingHit, bool bInitialOverlap, float Time, float Distance, const struct FVector& Location, const struct FVector& ImpactPoint, const struct FVector& Normal, const struct FVector& ImpactNormal, class UPhysicalMaterial* PhysMat, class AActor* HitActor, class UPrimitiveComponent* HitComponent, class FName HitBoneName, class FName BoneName, int32 HitItem, int32 ElementIndex, int32 FaceIndex, const struct FVector& TraceStart, const struct FVector& TraceEnd) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "MakeHitResult"); + + Params::GameplayStatics_MakeHitResult Parms{}; + + Parms.bBlockingHit = bBlockingHit; + Parms.bInitialOverlap = bInitialOverlap; + Parms.Time = Time; + Parms.Distance = Distance; + Parms.Location = std::move(Location); + Parms.ImpactPoint = std::move(ImpactPoint); + Parms.Normal = std::move(Normal); + Parms.ImpactNormal = std::move(ImpactNormal); + Parms.PhysMat = PhysMat; + Parms.HitActor = HitActor; + Parms.HitComponent = HitComponent; + Parms.HitBoneName = HitBoneName; + Parms.BoneName = BoneName; + Parms.HitItem = HitItem; + Parms.ElementIndex = ElementIndex; + Parms.FaceIndex = FaceIndex; + Parms.TraceStart = std::move(TraceStart); + Parms.TraceEnd = std::move(TraceEnd); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.ObjectIsA +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class UObject* Object (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ObjectClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::ObjectIsA(const class UObject* Object, TSubclassOf ObjectClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ObjectIsA"); + + Params::GameplayStatics_ObjectIsA Parms{}; + + Parms.Object = Object; + Parms.ObjectClass = ObjectClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.OpenLevel +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LevelName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAbsolute (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Options (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::OpenLevel(const class UObject* WorldContextObject, class FName LevelName, bool bAbsolute, const class FString& Options) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "OpenLevel"); + + Params::GameplayStatics_OpenLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LevelName = LevelName; + Parms.bAbsolute = bAbsolute; + Parms.Options = std::move(Options); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.OpenLevelBySoftObjectPtr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr Level (ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAbsolute (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Options (Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::OpenLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, bool bAbsolute, const class FString& Options) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "OpenLevelBySoftObjectPtr"); + + Params::GameplayStatics_OpenLevelBySoftObjectPtr Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Level = Level; + Parms.bAbsolute = bAbsolute; + Parms.Options = std::move(Options); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.ParseOption +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Options (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UGameplayStatics::ParseOption(const class FString& Options, const class FString& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ParseOption"); + + Params::GameplayStatics_ParseOption Parms{}; + + Parms.Options = std::move(Options); + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.PlayDialogue2D +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDialogueWave* Dialogue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDialogueContext& Context (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PlayDialogue2D(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, float VolumeMultiplier, float PitchMultiplier, float StartTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PlayDialogue2D"); + + Params::GameplayStatics_PlayDialogue2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Dialogue = Dialogue; + Parms.Context = std::move(Context); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PlayDialogueAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDialogueWave* Dialogue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDialogueContext& Context (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PlayDialogueAtLocation(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PlayDialogueAtLocation"); + + Params::GameplayStatics_PlayDialogueAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Dialogue = Dialogue; + Parms.Context = std::move(Context); + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PlaySound2D +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class AActor* OwningActor (ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIsUISound (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PlaySound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, const class AActor* OwningActor, bool bIsUISound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PlaySound2D"); + + Params::GameplayStatics_PlaySound2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Sound = Sound; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.OwningActor = OwningActor; + Parms.bIsUISound = bIsUISound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PlaySoundAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class AActor* OwningActor (ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class UInitialActiveSoundParams* InitialParams (ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PlaySoundAtLocation(const class UObject* WorldContextObject, class USoundBase* Sound, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, const class AActor* OwningActor, const class UInitialActiveSoundParams* InitialParams) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PlaySoundAtLocation"); + + Params::GameplayStatics_PlaySoundAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Sound = Sound; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.OwningActor = OwningActor; + Parms.InitialParams = InitialParams; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PlayWorldCameraShake +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Shake (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Epicenter (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InnerRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OuterRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Falloff (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bOrientShakeTowardsEpicenter (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PlayWorldCameraShake(const class UObject* WorldContextObject, TSubclassOf Shake, const struct FVector& Epicenter, float InnerRadius, float OuterRadius, float Falloff, bool bOrientShakeTowardsEpicenter) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PlayWorldCameraShake"); + + Params::GameplayStatics_PlayWorldCameraShake Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Shake = Shake; + Parms.Epicenter = std::move(Epicenter); + Parms.InnerRadius = InnerRadius; + Parms.OuterRadius = OuterRadius; + Parms.Falloff = Falloff; + Parms.bOrientShakeTowardsEpicenter = bOrientShakeTowardsEpicenter; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PopSoundMixModifier +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundMix* InSoundMixModifier (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PopSoundMixModifier(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PopSoundMixModifier"); + + Params::GameplayStatics_PopSoundMixModifier Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InSoundMixModifier = InSoundMixModifier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PrimeAllSoundsInSoundClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class USoundClass* InSoundClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PrimeAllSoundsInSoundClass(class USoundClass* InSoundClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PrimeAllSoundsInSoundClass"); + + Params::GameplayStatics_PrimeAllSoundsInSoundClass Parms{}; + + Parms.InSoundClass = InSoundClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.PrimeSound +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class USoundBase* InSound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PrimeSound(class USoundBase* InSound) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PrimeSound"); + + Params::GameplayStatics_PrimeSound Parms{}; + + Parms.InSound = InSound; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.ProjectWorldToScreen +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* ScreenPosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPlayerViewportRelative (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::ProjectWorldToScreen(class APlayerController* Player, const struct FVector& WorldPosition, struct FVector2D* ScreenPosition, bool bPlayerViewportRelative) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "ProjectWorldToScreen"); + + Params::GameplayStatics_ProjectWorldToScreen Parms{}; + + Parms.Player = Player; + Parms.WorldPosition = std::move(WorldPosition); + Parms.bPlayerViewportRelative = bPlayerViewportRelative; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ScreenPosition != nullptr) + *ScreenPosition = std::move(Parms.ScreenPosition); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.PushSoundMixModifier +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundMix* InSoundMixModifier (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::PushSoundMixModifier(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "PushSoundMixModifier"); + + Params::GameplayStatics_PushSoundMixModifier Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InSoundMixModifier = InSoundMixModifier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.RebaseLocalOriginOntoZero +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UGameplayStatics::RebaseLocalOriginOntoZero(class UObject* WorldContextObject, const struct FVector& WorldLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "RebaseLocalOriginOntoZero"); + + Params::GameplayStatics_RebaseLocalOriginOntoZero Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.RebaseZeroOriginOntoLocal +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UGameplayStatics::RebaseZeroOriginOntoLocal(class UObject* WorldContextObject, const struct FVector& WorldLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "RebaseZeroOriginOntoLocal"); + + Params::GameplayStatics_RebaseZeroOriginOntoLocal Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.RemovePlayer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDestroyPawn (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::RemovePlayer(class APlayerController* Player, bool bDestroyPawn) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "RemovePlayer"); + + Params::GameplayStatics_RemovePlayer Parms{}; + + Parms.Player = Player; + Parms.bDestroyPawn = bDestroyPawn; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SaveGameToSlot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class USaveGame* SaveGameObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SlotName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32 UserIndex (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::SaveGameToSlot(class USaveGame* SaveGameObject, const class FString& SlotName, const int32 UserIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SaveGameToSlot"); + + Params::GameplayStatics_SaveGameToSlot Parms{}; + + Parms.SaveGameObject = SaveGameObject; + Parms.SlotName = std::move(SlotName); + Parms.UserIndex = UserIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SetActiveSpatialPluginByName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InPluginName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::SetActiveSpatialPluginByName(const class UObject* WorldContextObject, class FName InPluginName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetActiveSpatialPluginByName"); + + Params::GameplayStatics_SetActiveSpatialPluginByName Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InPluginName = InPluginName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SetBaseSoundMix +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundMix* InSoundMix (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetBaseSoundMix(const class UObject* WorldContextObject, class USoundMix* InSoundMix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetBaseSoundMix"); + + Params::GameplayStatics_SetBaseSoundMix Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InSoundMix = InSoundMix; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetEnableWorldRendering +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetEnableWorldRendering(const class UObject* WorldContextObject, bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetEnableWorldRendering"); + + Params::GameplayStatics_SetEnableWorldRendering Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetForceDisableSplitscreen +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDisable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetForceDisableSplitscreen(const class UObject* WorldContextObject, bool bDisable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetForceDisableSplitscreen"); + + Params::GameplayStatics_SetForceDisableSplitscreen Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.bDisable = bDisable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetGamePaused +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPaused (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::SetGamePaused(const class UObject* WorldContextObject, bool bPaused) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetGamePaused"); + + Params::GameplayStatics_SetGamePaused Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.bPaused = bPaused; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SetGlobalListenerFocusParameters +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FocusAzimuthScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NonFocusAzimuthScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FocusDistanceScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NonFocusDistanceScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FocusVolumeScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NonFocusVolumeScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FocusPriorityScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float NonFocusPriorityScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetGlobalListenerFocusParameters(const class UObject* WorldContextObject, float FocusAzimuthScale, float NonFocusAzimuthScale, float FocusDistanceScale, float NonFocusDistanceScale, float FocusVolumeScale, float NonFocusVolumeScale, float FocusPriorityScale, float NonFocusPriorityScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetGlobalListenerFocusParameters"); + + Params::GameplayStatics_SetGlobalListenerFocusParameters Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.FocusAzimuthScale = FocusAzimuthScale; + Parms.NonFocusAzimuthScale = NonFocusAzimuthScale; + Parms.FocusDistanceScale = FocusDistanceScale; + Parms.NonFocusDistanceScale = NonFocusDistanceScale; + Parms.FocusVolumeScale = FocusVolumeScale; + Parms.NonFocusVolumeScale = NonFocusVolumeScale; + Parms.FocusPriorityScale = FocusPriorityScale; + Parms.NonFocusPriorityScale = NonFocusPriorityScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetGlobalPitchModulation +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchModulation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TimeSec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetGlobalPitchModulation(const class UObject* WorldContextObject, float PitchModulation, float TimeSec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetGlobalPitchModulation"); + + Params::GameplayStatics_SetGlobalPitchModulation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.PitchModulation = PitchModulation; + Parms.TimeSec = TimeSec; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetGlobalTimeDilation +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TimeDilation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetGlobalTimeDilation(const class UObject* WorldContextObject, float TimeDilation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetGlobalTimeDilation"); + + Params::GameplayStatics_SetGlobalTimeDilation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TimeDilation = TimeDilation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetMaxAudioChannelsScaled +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxChannelCountScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetMaxAudioChannelsScaled(const class UObject* WorldContextObject, float MaxChannelCountScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetMaxAudioChannelsScaled"); + + Params::GameplayStatics_SetMaxAudioChannelsScaled Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.MaxChannelCountScale = MaxChannelCountScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetPlayerControllerID +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class APlayerController* Player (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ControllerId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetPlayerControllerID(class APlayerController* Player, int32 ControllerId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetPlayerControllerID"); + + Params::GameplayStatics_SetPlayerControllerID Parms{}; + + Parms.Player = Player; + Parms.ControllerId = ControllerId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetPlayerPlatformUserId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class APlayerController* PlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlatformUserId& UserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetPlayerPlatformUserId(class APlayerController* PlayerController, const struct FPlatformUserId& UserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetPlayerPlatformUserId"); + + Params::GameplayStatics_SetPlayerPlatformUserId Parms{}; + + Parms.PlayerController = PlayerController; + Parms.UserId = std::move(UserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetSoundClassDistanceScale +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundClass* SoundClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DistanceAttenuationScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TimeSec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetSoundClassDistanceScale(const class UObject* WorldContextObject, class USoundClass* SoundClass, float DistanceAttenuationScale, float TimeSec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetSoundClassDistanceScale"); + + Params::GameplayStatics_SetSoundClassDistanceScale Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SoundClass = SoundClass; + Parms.DistanceAttenuationScale = DistanceAttenuationScale; + Parms.TimeSec = TimeSec; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetSoundMixClassOverride +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundMix* InSoundMixModifier (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundClass* InSoundClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Volume (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float pitch (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float FadeInTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bApplyToChildren (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetSoundMixClassOverride(const class UObject* WorldContextObject, class USoundMix* InSoundMixModifier, class USoundClass* InSoundClass, float Volume, float pitch, float FadeInTime, bool bApplyToChildren) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetSoundMixClassOverride"); + + Params::GameplayStatics_SetSoundMixClassOverride Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InSoundMixModifier = InSoundMixModifier; + Parms.InSoundClass = InSoundClass; + Parms.Volume = Volume; + Parms.pitch = pitch; + Parms.FadeInTime = FadeInTime; + Parms.bApplyToChildren = bApplyToChildren; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetSubtitlesEnabled +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetSubtitlesEnabled(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetSubtitlesEnabled"); + + Params::GameplayStatics_SetSubtitlesEnabled Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetViewportMouseCaptureMode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EMouseCaptureMode MouseCaptureMode (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetViewportMouseCaptureMode(const class UObject* WorldContextObject, const EMouseCaptureMode MouseCaptureMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetViewportMouseCaptureMode"); + + Params::GameplayStatics_SetViewportMouseCaptureMode Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.MouseCaptureMode = MouseCaptureMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SetWorldOriginLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::SetWorldOriginLocation(const class UObject* WorldContextObject, const struct FIntVector& NewLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SetWorldOriginLocation"); + + Params::GameplayStatics_SetWorldOriginLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.NewLocation = std::move(NewLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.SpawnDecalAtLocation +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* DecalMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& DecalSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float LifeSpan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDecalComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDecalComponent* UGameplayStatics::SpawnDecalAtLocation(const class UObject* WorldContextObject, class UMaterialInterface* DecalMaterial, const struct FVector& DecalSize, const struct FVector& Location, const struct FRotator& Rotation, float LifeSpan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnDecalAtLocation"); + + Params::GameplayStatics_SpawnDecalAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.DecalMaterial = DecalMaterial; + Parms.DecalSize = std::move(DecalSize); + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.LifeSpan = LifeSpan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnDecalAttached +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UMaterialInterface* DecalMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& DecalSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName AttachPointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LifeSpan (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDecalComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDecalComponent* UGameplayStatics::SpawnDecalAttached(class UMaterialInterface* DecalMaterial, const struct FVector& DecalSize, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, float LifeSpan) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnDecalAttached"); + + Params::GameplayStatics_SpawnDecalAttached Parms{}; + + Parms.DecalMaterial = DecalMaterial; + Parms.DecalSize = std::move(DecalSize); + Parms.AttachToComponent = AttachToComponent; + Parms.AttachPointName = AttachPointName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.LocationType = LocationType; + Parms.LifeSpan = LifeSpan; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnDialogue2D +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDialogueWave* Dialogue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDialogueContext& Context (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnDialogue2D(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, float VolumeMultiplier, float PitchMultiplier, float StartTime, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnDialogue2D"); + + Params::GameplayStatics_SpawnDialogue2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Dialogue = Dialogue; + Parms.Context = std::move(Context); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnDialogueAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDialogueWave* Dialogue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDialogueContext& Context (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnDialogueAtLocation(const class UObject* WorldContextObject, class UDialogueWave* Dialogue, const struct FDialogueContext& Context, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnDialogueAtLocation"); + + Params::GameplayStatics_SpawnDialogueAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Dialogue = Dialogue; + Parms.Context = std::move(Context); + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnDialogueAttached +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UDialogueWave* Dialogue (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDialogueContext& Context (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName AttachPointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopWhenAttachedToDestroyed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnDialogueAttached(class UDialogueWave* Dialogue, const struct FDialogueContext& Context, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnDialogueAttached"); + + Params::GameplayStatics_SpawnDialogueAttached Parms{}; + + Parms.Dialogue = Dialogue; + Parms.Context = std::move(Context); + Parms.AttachToComponent = AttachToComponent; + Parms.AttachPointName = AttachPointName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.LocationType = LocationType; + Parms.bStopWhenAttachedToDestroyed = bStopWhenAttachedToDestroyed; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnEmitterAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UParticleSystem* EmitterTemplate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EPSCPoolMethod PoolingMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoActivateSystem (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UParticleSystemComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UParticleSystemComponent* UGameplayStatics::SpawnEmitterAtLocation(const class UObject* WorldContextObject, class UParticleSystem* EmitterTemplate, const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale, bool bAutoDestroy, EPSCPoolMethod PoolingMethod, bool bAutoActivateSystem) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnEmitterAtLocation"); + + Params::GameplayStatics_SpawnEmitterAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.EmitterTemplate = EmitterTemplate; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.Scale = std::move(Scale); + Parms.bAutoDestroy = bAutoDestroy; + Parms.PoolingMethod = PoolingMethod; + Parms.bAutoActivateSystem = bAutoActivateSystem; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnEmitterAttached +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UParticleSystem* EmitterTemplate (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName AttachPointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EPSCPoolMethod PoolingMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoActivate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UParticleSystemComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UParticleSystemComponent* UGameplayStatics::SpawnEmitterAttached(class UParticleSystem* EmitterTemplate, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale, EAttachLocation LocationType, bool bAutoDestroy, EPSCPoolMethod PoolingMethod, bool bAutoActivate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnEmitterAttached"); + + Params::GameplayStatics_SpawnEmitterAttached Parms{}; + + Parms.EmitterTemplate = EmitterTemplate; + Parms.AttachToComponent = AttachToComponent; + Parms.AttachPointName = AttachPointName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.Scale = std::move(Scale); + Parms.LocationType = LocationType; + Parms.bAutoDestroy = bAutoDestroy; + Parms.PoolingMethod = PoolingMethod; + Parms.bAutoActivate = bAutoActivate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnForceFeedbackAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UForceFeedbackEffect* ForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float IntensityMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UForceFeedbackAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UForceFeedbackComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UForceFeedbackComponent* UGameplayStatics::SpawnForceFeedbackAtLocation(const class UObject* WorldContextObject, class UForceFeedbackEffect* ForceFeedbackEffect, const struct FVector& Location, const struct FRotator& Rotation, bool bLooping, float IntensityMultiplier, float StartTime, class UForceFeedbackAttenuation* AttenuationSettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnForceFeedbackAtLocation"); + + Params::GameplayStatics_SpawnForceFeedbackAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ForceFeedbackEffect = ForceFeedbackEffect; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.bLooping = bLooping; + Parms.IntensityMultiplier = IntensityMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnForceFeedbackAttached +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UForceFeedbackEffect* ForceFeedbackEffect (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName AttachPointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopWhenAttachedToDestroyed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLooping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float IntensityMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UForceFeedbackAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UForceFeedbackComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UForceFeedbackComponent* UGameplayStatics::SpawnForceFeedbackAttached(class UForceFeedbackEffect* ForceFeedbackEffect, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, bool bLooping, float IntensityMultiplier, float StartTime, class UForceFeedbackAttenuation* AttenuationSettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnForceFeedbackAttached"); + + Params::GameplayStatics_SpawnForceFeedbackAttached Parms{}; + + Parms.ForceFeedbackEffect = ForceFeedbackEffect; + Parms.AttachToComponent = AttachToComponent; + Parms.AttachPointName = AttachPointName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.LocationType = LocationType; + Parms.bStopWhenAttachedToDestroyed = bStopWhenAttachedToDestroyed; + Parms.bLooping = bLooping; + Parms.IntensityMultiplier = IntensityMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// TSubclassOf ObjectClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* Outer_0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UGameplayStatics::SpawnObject(TSubclassOf ObjectClass, class UObject* Outer_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnObject"); + + Params::GameplayStatics_SpawnObject Parms{}; + + Parms.ObjectClass = ObjectClass; + Parms.Outer_0 = Outer_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnSound2D +// (Final, RequiredAPI, BlueprintCosmetic, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPersistAcrossLevelTransition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnSound2D(const class UObject* WorldContextObject, class USoundBase* Sound, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundConcurrency* ConcurrencySettings, bool bPersistAcrossLevelTransition, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnSound2D"); + + Params::GameplayStatics_SpawnSound2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Sound = Sound; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.bPersistAcrossLevelTransition = bPersistAcrossLevelTransition; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnSoundAtLocation +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnSoundAtLocation(const class UObject* WorldContextObject, class USoundBase* Sound, const struct FVector& Location, const struct FRotator& Rotation, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnSoundAtLocation"); + + Params::GameplayStatics_SpawnSoundAtLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Sound = Sound; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SpawnSoundAttached +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class USoundBase* Sound (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USceneComponent* AttachToComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName AttachPointName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) +// EAttachLocation LocationType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bStopWhenAttachedToDestroyed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VolumeMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PitchMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float StartTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundAttenuation* AttenuationSettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundConcurrency* ConcurrencySettings (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoDestroy (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioComponent* UGameplayStatics::SpawnSoundAttached(class USoundBase* Sound, class USceneComponent* AttachToComponent, class FName AttachPointName, const struct FVector& Location, const struct FRotator& Rotation, EAttachLocation LocationType, bool bStopWhenAttachedToDestroyed, float VolumeMultiplier, float PitchMultiplier, float StartTime, class USoundAttenuation* AttenuationSettings, class USoundConcurrency* ConcurrencySettings, bool bAutoDestroy) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SpawnSoundAttached"); + + Params::GameplayStatics_SpawnSoundAttached Parms{}; + + Parms.Sound = Sound; + Parms.AttachToComponent = AttachToComponent; + Parms.AttachPointName = AttachPointName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.LocationType = LocationType; + Parms.bStopWhenAttachedToDestroyed = bStopWhenAttachedToDestroyed; + Parms.VolumeMultiplier = VolumeMultiplier; + Parms.PitchMultiplier = PitchMultiplier; + Parms.StartTime = StartTime; + Parms.AttenuationSettings = AttenuationSettings; + Parms.ConcurrencySettings = ConcurrencySettings; + Parms.bAutoDestroy = bAutoDestroy; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SuggestProjectileVelocity_CustomArc +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutLaunchVelocity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& StartPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& EndPos (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float OverrideGravityZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ArcParam (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::SuggestProjectileVelocity_CustomArc(const class UObject* WorldContextObject, struct FVector* OutLaunchVelocity, const struct FVector& StartPos, const struct FVector& EndPos, float OverrideGravityZ, float ArcParam) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SuggestProjectileVelocity_CustomArc"); + + Params::GameplayStatics_SuggestProjectileVelocity_CustomArc Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.StartPos = std::move(StartPos); + Parms.EndPos = std::move(EndPos); + Parms.OverrideGravityZ = OverrideGravityZ; + Parms.ArcParam = ArcParam; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLaunchVelocity != nullptr) + *OutLaunchVelocity = std::move(Parms.OutLaunchVelocity); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.SuggestProjectileVelocity_MovingTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutLaunchVelocity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& ProjectileStartLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class AActor* TargetActor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TargetLocationOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double GravityZOverride (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double TimeToTarget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDrawDebugTrace DrawDebugType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DrawDebugTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& DrawDebugColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameplayStatics::SuggestProjectileVelocity_MovingTarget(const class UObject* WorldContextObject, struct FVector* OutLaunchVelocity, const struct FVector& ProjectileStartLocation, class AActor* TargetActor, const struct FVector& TargetLocationOffset, double GravityZOverride, double TimeToTarget, EDrawDebugTrace DrawDebugType, float DrawDebugTime, const struct FLinearColor& DrawDebugColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "SuggestProjectileVelocity_MovingTarget"); + + Params::GameplayStatics_SuggestProjectileVelocity_MovingTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ProjectileStartLocation = std::move(ProjectileStartLocation); + Parms.TargetActor = TargetActor; + Parms.TargetLocationOffset = std::move(TargetLocationOffset); + Parms.GravityZOverride = GravityZOverride; + Parms.TimeToTarget = TimeToTarget; + Parms.DrawDebugType = DrawDebugType; + Parms.DrawDebugTime = DrawDebugTime; + Parms.DrawDebugColor = std::move(DrawDebugColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLaunchVelocity != nullptr) + *OutLaunchVelocity = std::move(Parms.OutLaunchVelocity); + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.TransformWorldToFirstPerson +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMinimalViewInfo& ViewInfo (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIgnoreFirstPersonScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UGameplayStatics::TransformWorldToFirstPerson(const struct FMinimalViewInfo& ViewInfo, const struct FVector& WorldPosition, bool bIgnoreFirstPersonScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "TransformWorldToFirstPerson"); + + Params::GameplayStatics_TransformWorldToFirstPerson Parms{}; + + Parms.ViewInfo = std::move(ViewInfo); + Parms.WorldPosition = std::move(WorldPosition); + Parms.bIgnoreFirstPersonScale = bIgnoreFirstPersonScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameplayStatics.UnloadStreamLevel +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LevelName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) +// bool bShouldBlockOnUnload (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::UnloadStreamLevel(const class UObject* WorldContextObject, class FName LevelName, const struct FLatentActionInfo& LatentInfo, bool bShouldBlockOnUnload) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "UnloadStreamLevel"); + + Params::GameplayStatics_UnloadStreamLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.LevelName = LevelName; + Parms.LatentInfo = std::move(LatentInfo); + Parms.bShouldBlockOnUnload = bShouldBlockOnUnload; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.UnloadStreamLevelBySoftObjectPtr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TSoftObjectPtr Level (ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLatentActionInfo& LatentInfo (Parm, NoDestructor, NativeAccessSpecifierPublic) +// bool bShouldBlockOnUnload (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::UnloadStreamLevelBySoftObjectPtr(const class UObject* WorldContextObject, const TSoftObjectPtr Level, const struct FLatentActionInfo& LatentInfo, bool bShouldBlockOnUnload) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "UnloadStreamLevelBySoftObjectPtr"); + + Params::GameplayStatics_UnloadStreamLevelBySoftObjectPtr Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Level = Level; + Parms.LatentInfo = std::move(LatentInfo); + Parms.bShouldBlockOnUnload = bShouldBlockOnUnload; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameplayStatics.UnRetainAllSoundsInSoundClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class USoundClass* InSoundClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameplayStatics::UnRetainAllSoundsInSoundClass(class USoundClass* InSoundClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameplayStatics", "UnRetainAllSoundsInSoundClass"); + + Params::GameplayStatics_UnRetainAllSoundsInSoundClass Parms{}; + + Parms.InSoundClass = InSoundClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.OnRep_GameModeClass +// (RequiredAPI, Native, Protected) + +void AGameStateBase::OnRep_GameModeClass() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "OnRep_GameModeClass"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.OnRep_ReplicatedHasBegunPlay +// (RequiredAPI, Native, Protected) + +void AGameStateBase::OnRep_ReplicatedHasBegunPlay() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "OnRep_ReplicatedHasBegunPlay"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.OnRep_ReplicatedWorldTimeSeconds +// (Final, RequiredAPI, Native, Protected) + +void AGameStateBase::OnRep_ReplicatedWorldTimeSeconds() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "OnRep_ReplicatedWorldTimeSeconds"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.OnRep_ReplicatedWorldTimeSecondsDouble +// (RequiredAPI, Native, Protected) + +void AGameStateBase::OnRep_ReplicatedWorldTimeSecondsDouble() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "OnRep_ReplicatedWorldTimeSecondsDouble"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.OnRep_SpectatorClass +// (RequiredAPI, Native, Protected) + +void AGameStateBase::OnRep_SpectatorClass() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "OnRep_SpectatorClass"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameStateBase.GetPlayerRespawnDelay +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AController* Controller (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AGameStateBase::GetPlayerRespawnDelay(class AController* Controller) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "GetPlayerRespawnDelay"); + + Params::GameStateBase_GetPlayerRespawnDelay Parms{}; + + Parms.Controller = Controller; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameStateBase.GetPlayerStartTime +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class AController* Controller (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float AGameStateBase::GetPlayerStartTime(class AController* Controller) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "GetPlayerStartTime"); + + Params::GameStateBase_GetPlayerStartTime Parms{}; + + Parms.Controller = Controller; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameStateBase.GetServerWorldTimeSeconds +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double AGameStateBase::GetServerWorldTimeSeconds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "GetServerWorldTimeSeconds"); + + Params::GameStateBase_GetServerWorldTimeSeconds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameStateBase.HasBegunPlay +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameStateBase::HasBegunPlay() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "HasBegunPlay"); + + Params::GameStateBase_HasBegunPlay Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameStateBase.HasMatchEnded +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameStateBase::HasMatchEnded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "HasMatchEnded"); + + Params::GameStateBase_HasMatchEnded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameStateBase.HasMatchStarted +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool AGameStateBase::HasMatchStarted() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameStateBase", "HasMatchStarted"); + + Params::GameStateBase_HasMatchStarted Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameState.OnRep_ElapsedTime +// (RequiredAPI, Native, Public) + +void AGameState::OnRep_ElapsedTime() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameState", "OnRep_ElapsedTime"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameState.OnRep_MatchState +// (RequiredAPI, Native, Public) + +void AGameState::OnRep_MatchState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameState", "OnRep_MatchState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.GetDefaultResolution +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UGameUserSettings::GetDefaultResolution() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetDefaultResolution"); + + Params::GameUserSettings_GetDefaultResolution Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetDefaultWindowMode +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// EWindowMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EWindowMode UGameUserSettings::GetDefaultWindowMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetDefaultWindowMode"); + + Params::GameUserSettings_GetDefaultWindowMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetDefaultWindowPosition +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UGameUserSettings::GetDefaultWindowPosition() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetDefaultWindowPosition"); + + Params::GameUserSettings_GetDefaultWindowPosition Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetFramePace +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetFramePace() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetFramePace"); + + Params::GameUserSettings_GetFramePace Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetGameUserSettings +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UGameUserSettings* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UGameUserSettings* UGameUserSettings::GetGameUserSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetGameUserSettings"); + + Params::GameUserSettings_GetGameUserSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetSyncInterval +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetSyncInterval() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("GameUserSettings", "GetSyncInterval"); + + Params::GameUserSettings_GetSyncInterval Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.ApplyHardwareBenchmarkResults +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::ApplyHardwareBenchmarkResults() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ApplyHardwareBenchmarkResults"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ApplyNonResolutionSettings +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::ApplyNonResolutionSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ApplyNonResolutionSettings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ApplyResolutionSettings +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bCheckForCommandLineOverrides (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::ApplyResolutionSettings(bool bCheckForCommandLineOverrides) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ApplyResolutionSettings"); + + Params::GameUserSettings_ApplyResolutionSettings Parms{}; + + Parms.bCheckForCommandLineOverrides = bCheckForCommandLineOverrides; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ApplySettings +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bCheckForCommandLineOverrides (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::ApplySettings(bool bCheckForCommandLineOverrides) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ApplySettings"); + + Params::GameUserSettings_ApplySettings Parms{}; + + Parms.bCheckForCommandLineOverrides = bCheckForCommandLineOverrides; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ConfirmVideoMode +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::ConfirmVideoMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ConfirmVideoMode"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.EnableHDRDisplayOutput +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 DisplayNits (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::EnableHDRDisplayOutput(bool bEnable, int32 DisplayNits) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "EnableHDRDisplayOutput"); + + Params::GameUserSettings_EnableHDRDisplayOutput Parms{}; + + Parms.bEnable = bEnable; + Parms.DisplayNits = DisplayNits; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.GetDefaultResolutionScale +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameUserSettings::GetDefaultResolutionScale() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetDefaultResolutionScale"); + + Params::GameUserSettings_GetDefaultResolutionScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetRecommendedResolutionScale +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameUserSettings::GetRecommendedResolutionScale() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetRecommendedResolutionScale"); + + Params::GameUserSettings_GetRecommendedResolutionScale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.LoadSettings +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bForceReload (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::LoadSettings(bool bForceReload) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "LoadSettings"); + + Params::GameUserSettings_LoadSettings Parms{}; + + Parms.bForceReload = bForceReload; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ResetToCurrentSettings +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::ResetToCurrentSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ResetToCurrentSettings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.RevertVideoMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::RevertVideoMode() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "RevertVideoMode"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.RunHardwareBenchmark +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 WorkScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CPUMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float GPUMultiplier (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::RunHardwareBenchmark(int32 WorkScale, float CPUMultiplier, float GPUMultiplier) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "RunHardwareBenchmark"); + + Params::GameUserSettings_RunHardwareBenchmark Parms{}; + + Parms.WorkScale = WorkScale; + Parms.CPUMultiplier = CPUMultiplier; + Parms.GPUMultiplier = GPUMultiplier; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SaveSettings +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::SaveSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SaveSettings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetAntiAliasingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetAntiAliasingQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetAntiAliasingQuality"); + + Params::GameUserSettings_SetAntiAliasingQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetAudioQualityLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 QualityLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetAudioQualityLevel(int32 QualityLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetAudioQualityLevel"); + + Params::GameUserSettings_SetAudioQualityLevel Parms{}; + + Parms.QualityLevel = QualityLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetBenchmarkFallbackValues +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::SetBenchmarkFallbackValues() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetBenchmarkFallbackValues"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetDynamicResolutionEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetDynamicResolutionEnabled(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetDynamicResolutionEnabled"); + + Params::GameUserSettings_SetDynamicResolutionEnabled Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetFoliageQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetFoliageQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetFoliageQuality"); + + Params::GameUserSettings_SetFoliageQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetFrameRateLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetFrameRateLimit(float NewLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetFrameRateLimit"); + + Params::GameUserSettings_SetFrameRateLimit Parms{}; + + Parms.NewLimit = NewLimit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetFullscreenMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EWindowMode InFullscreenMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetFullscreenMode(EWindowMode InFullscreenMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetFullscreenMode"); + + Params::GameUserSettings_SetFullscreenMode Parms{}; + + Parms.InFullscreenMode = InFullscreenMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetGlobalIlluminationQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetGlobalIlluminationQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetGlobalIlluminationQuality"); + + Params::GameUserSettings_SetGlobalIlluminationQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetOverallScalabilityLevel +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetOverallScalabilityLevel(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetOverallScalabilityLevel"); + + Params::GameUserSettings_SetOverallScalabilityLevel Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetPostProcessingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetPostProcessingQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetPostProcessingQuality"); + + Params::GameUserSettings_SetPostProcessingQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetReflectionQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetReflectionQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetReflectionQuality"); + + Params::GameUserSettings_SetReflectionQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetResolutionScaleNormalized +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewScaleNormalized (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetResolutionScaleNormalized(float NewScaleNormalized) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetResolutionScaleNormalized"); + + Params::GameUserSettings_SetResolutionScaleNormalized Parms{}; + + Parms.NewScaleNormalized = NewScaleNormalized; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetResolutionScaleValueEx +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewScaleValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetResolutionScaleValueEx(float NewScaleValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetResolutionScaleValueEx"); + + Params::GameUserSettings_SetResolutionScaleValueEx Parms{}; + + Parms.NewScaleValue = NewScaleValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetScreenResolution +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FIntPoint& Resolution (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetScreenResolution(const struct FIntPoint& Resolution) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetScreenResolution"); + + Params::GameUserSettings_SetScreenResolution Parms{}; + + Parms.Resolution = std::move(Resolution); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetShadingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetShadingQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetShadingQuality"); + + Params::GameUserSettings_SetShadingQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetShadowQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetShadowQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetShadowQuality"); + + Params::GameUserSettings_SetShadowQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetTextureQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetTextureQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetTextureQuality"); + + Params::GameUserSettings_SetTextureQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetToDefaults +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::SetToDefaults() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetToDefaults"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetViewDistanceQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetViewDistanceQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetViewDistanceQuality"); + + Params::GameUserSettings_SetViewDistanceQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetVisualEffectQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetVisualEffectQuality(int32 Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetVisualEffectQuality"); + + Params::GameUserSettings_SetVisualEffectQuality Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.SetVSyncEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::SetVSyncEnabled(bool bEnable) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SetVSyncEnabled"); + + Params::GameUserSettings_SetVSyncEnabled Parms{}; + + Parms.bEnable = bEnable; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.ValidateSettings +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UGameUserSettings::ValidateSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "ValidateSettings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameUserSettings.GetAntiAliasingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetAntiAliasingQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetAntiAliasingQuality"); + + Params::GameUserSettings_GetAntiAliasingQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetAudioQualityLevel +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetAudioQualityLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetAudioQualityLevel"); + + Params::GameUserSettings_GetAudioQualityLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetCurrentHDRDisplayNits +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetCurrentHDRDisplayNits() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetCurrentHDRDisplayNits"); + + Params::GameUserSettings_GetCurrentHDRDisplayNits Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetDesktopResolution +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UGameUserSettings::GetDesktopResolution() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetDesktopResolution"); + + Params::GameUserSettings_GetDesktopResolution Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetFoliageQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetFoliageQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetFoliageQuality"); + + Params::GameUserSettings_GetFoliageQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetFrameRateLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameUserSettings::GetFrameRateLimit() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetFrameRateLimit"); + + Params::GameUserSettings_GetFrameRateLimit Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetFullscreenMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EWindowMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EWindowMode UGameUserSettings::GetFullscreenMode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetFullscreenMode"); + + Params::GameUserSettings_GetFullscreenMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetGlobalIlluminationQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetGlobalIlluminationQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetGlobalIlluminationQuality"); + + Params::GameUserSettings_GetGlobalIlluminationQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetLastConfirmedFullscreenMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EWindowMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EWindowMode UGameUserSettings::GetLastConfirmedFullscreenMode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetLastConfirmedFullscreenMode"); + + Params::GameUserSettings_GetLastConfirmedFullscreenMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetLastConfirmedScreenResolution +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UGameUserSettings::GetLastConfirmedScreenResolution() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetLastConfirmedScreenResolution"); + + Params::GameUserSettings_GetLastConfirmedScreenResolution Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetOverallScalabilityLevel +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetOverallScalabilityLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetOverallScalabilityLevel"); + + Params::GameUserSettings_GetOverallScalabilityLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetPostProcessingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetPostProcessingQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetPostProcessingQuality"); + + Params::GameUserSettings_GetPostProcessingQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetPreferredFullscreenMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EWindowMode ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EWindowMode UGameUserSettings::GetPreferredFullscreenMode() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetPreferredFullscreenMode"); + + Params::GameUserSettings_GetPreferredFullscreenMode Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetReflectionQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetReflectionQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetReflectionQuality"); + + Params::GameUserSettings_GetReflectionQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetResolutionScaleInformationEx +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float* CurrentScaleNormalized (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* CurrentScaleValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MinScaleValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MaxScaleValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameUserSettings::GetResolutionScaleInformationEx(float* CurrentScaleNormalized, float* CurrentScaleValue, float* MinScaleValue, float* MaxScaleValue) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetResolutionScaleInformationEx"); + + Params::GameUserSettings_GetResolutionScaleInformationEx Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (CurrentScaleNormalized != nullptr) + *CurrentScaleNormalized = Parms.CurrentScaleNormalized; + + if (CurrentScaleValue != nullptr) + *CurrentScaleValue = Parms.CurrentScaleValue; + + if (MinScaleValue != nullptr) + *MinScaleValue = Parms.MinScaleValue; + + if (MaxScaleValue != nullptr) + *MaxScaleValue = Parms.MaxScaleValue; +} + + +// Function Engine.GameUserSettings.GetResolutionScaleNormalized +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UGameUserSettings::GetResolutionScaleNormalized() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetResolutionScaleNormalized"); + + Params::GameUserSettings_GetResolutionScaleNormalized Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetScreenResolution +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UGameUserSettings::GetScreenResolution() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetScreenResolution"); + + Params::GameUserSettings_GetScreenResolution Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetShadingQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetShadingQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetShadingQuality"); + + Params::GameUserSettings_GetShadingQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetShadowQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetShadowQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetShadowQuality"); + + Params::GameUserSettings_GetShadowQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetTextureQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetTextureQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetTextureQuality"); + + Params::GameUserSettings_GetTextureQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetViewDistanceQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetViewDistanceQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetViewDistanceQuality"); + + Params::GameUserSettings_GetViewDistanceQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.GetVisualEffectQuality +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UGameUserSettings::GetVisualEffectQuality() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "GetVisualEffectQuality"); + + Params::GameUserSettings_GetVisualEffectQuality Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsDirty +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsDirty() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsDirty"); + + Params::GameUserSettings_IsDirty Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsDynamicResolutionDirty +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsDynamicResolutionDirty() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsDynamicResolutionDirty"); + + Params::GameUserSettings_IsDynamicResolutionDirty Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsDynamicResolutionEnabled +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsDynamicResolutionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsDynamicResolutionEnabled"); + + Params::GameUserSettings_IsDynamicResolutionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsFullscreenModeDirty +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsFullscreenModeDirty() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsFullscreenModeDirty"); + + Params::GameUserSettings_IsFullscreenModeDirty Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsHDREnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsHDREnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsHDREnabled"); + + Params::GameUserSettings_IsHDREnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsScreenResolutionDirty +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsScreenResolutionDirty() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsScreenResolutionDirty"); + + Params::GameUserSettings_IsScreenResolutionDirty Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsVSyncDirty +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsVSyncDirty() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsVSyncDirty"); + + Params::GameUserSettings_IsVSyncDirty Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.IsVSyncEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::IsVSyncEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "IsVSyncEnabled"); + + Params::GameUserSettings_IsVSyncEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameUserSettings.SupportsHDRDisplayOutput +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UGameUserSettings::SupportsHDRDisplayOutput() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameUserSettings", "SupportsHDRDisplayOutput"); + + Params::GameUserSettings_SupportsHDRDisplayOutput Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.GameViewportClient.SetConsoleTarget +// (RequiredAPI, Exec, Native, Public) +// Parameters: +// int32 PlayerIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UGameViewportClient::SetConsoleTarget(int32 PlayerIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameViewportClient", "SetConsoleTarget"); + + Params::GameViewportClient_SetConsoleTarget Parms{}; + + Parms.PlayerIndex = PlayerIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameViewportClient.ShowTitleSafeArea +// (RequiredAPI, Exec, Native, Public) + +void UGameViewportClient::ShowTitleSafeArea() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameViewportClient", "ShowTitleSafeArea"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.GameViewportClient.SSSwapControllers +// (RequiredAPI, Exec, Native, Public) + +void UGameViewportClient::SSSwapControllers() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("GameViewportClient", "SSSwapControllers"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Add +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& NewItem (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetArrayLibrary::Array_Add(const TArray& TargetArray, const int32& NewItem) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Add"); + + Params::KismetArrayLibrary_Array_Add Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.NewItem = NewItem; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_AddUnique +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& NewItem (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetArrayLibrary::Array_AddUnique(const TArray& TargetArray, const int32& NewItem) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_AddUnique"); + + Params::KismetArrayLibrary_Array_AddUnique Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.NewItem = NewItem; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Append +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& SourceArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Append(const TArray& TargetArray, const TArray& SourceArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Append"); + + Params::KismetArrayLibrary_Array_Append Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.SourceArray = std::move(SourceArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Clear +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Clear(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Clear"); + + Params::KismetArrayLibrary_Array_Clear Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Contains +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& ItemToFind (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_Contains(const TArray& TargetArray, const int32& ItemToFind) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Contains"); + + Params::KismetArrayLibrary_Array_Contains Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.ItemToFind = ItemToFind; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Find +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& ItemToFind (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetArrayLibrary::Array_Find(const TArray& TargetArray, const int32& ItemToFind) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Find"); + + Params::KismetArrayLibrary_Array_Find Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.ItemToFind = ItemToFind; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Get +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Item (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Get(const TArray& TargetArray, int32 Index_0, int32* Item) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Get"); + + Params::KismetArrayLibrary_Array_Get Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Item != nullptr) + *Item = Parms.Item; +} + + +// Function Engine.KismetArrayLibrary.Array_Identical +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& ArrayA (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ArrayB (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_Identical(const TArray& ArrayA, const TArray& ArrayB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Identical"); + + Params::KismetArrayLibrary_Array_Identical Parms{}; + + Parms.ArrayA = std::move(ArrayA); + Parms.ArrayB = std::move(ArrayB); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Insert +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& NewItem (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Insert(const TArray& TargetArray, const int32& NewItem, int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Insert"); + + Params::KismetArrayLibrary_Array_Insert Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.NewItem = NewItem; + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_IsEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_IsEmpty(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_IsEmpty"); + + Params::KismetArrayLibrary_Array_IsEmpty Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_IsNotEmpty +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_IsNotEmpty(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_IsNotEmpty"); + + Params::KismetArrayLibrary_Array_IsNotEmpty Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_IsValidIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 IndexToTest (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_IsValidIndex(const TArray& TargetArray, int32 IndexToTest) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_IsValidIndex"); + + Params::KismetArrayLibrary_Array_IsValidIndex Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.IndexToTest = IndexToTest; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_LastIndex +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetArrayLibrary::Array_LastIndex(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_LastIndex"); + + Params::KismetArrayLibrary_Array_LastIndex Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Length +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetArrayLibrary::Array_Length(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Length"); + + Params::KismetArrayLibrary_Array_Length Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Random +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* OutItem (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Random(const TArray& TargetArray, int32* OutItem, int32* OutIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Random"); + + Params::KismetArrayLibrary_Array_Random Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutItem != nullptr) + *OutItem = Parms.OutItem; + + if (OutIndex != nullptr) + *OutIndex = Parms.OutIndex; +} + + +// Function Engine.KismetArrayLibrary.Array_RandomFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// struct FRandomStream& RandomStream (Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// int32* OutItem (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_RandomFromStream(const TArray& TargetArray, struct FRandomStream& RandomStream, int32* OutItem, int32* OutIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_RandomFromStream"); + + Params::KismetArrayLibrary_Array_RandomFromStream Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.RandomStream = std::move(RandomStream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + RandomStream = std::move(Parms.RandomStream); + + if (OutItem != nullptr) + *OutItem = Parms.OutItem; + + if (OutIndex != nullptr) + *OutIndex = Parms.OutIndex; +} + + +// Function Engine.KismetArrayLibrary.Array_Remove +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 IndexToRemove (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Remove(const TArray& TargetArray, int32 IndexToRemove) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Remove"); + + Params::KismetArrayLibrary_Array_Remove Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.IndexToRemove = IndexToRemove; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_RemoveItem +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const int32& Item (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetArrayLibrary::Array_RemoveItem(const TArray& TargetArray, const int32& Item) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_RemoveItem"); + + Params::KismetArrayLibrary_Array_RemoveItem Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.Item = Item; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetArrayLibrary.Array_Resize +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 Size (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Resize(const TArray& TargetArray, int32 Size) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Resize"); + + Params::KismetArrayLibrary_Array_Resize Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.Size = Size; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Reverse +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Reverse(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Reverse"); + + Params::KismetArrayLibrary_Array_Reverse Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Set +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const int32& Item (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSizeToFit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Set(const TArray& TargetArray, int32 Index_0, const int32& Item, bool bSizeToFit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Set"); + + Params::KismetArrayLibrary_Array_Set Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.Index_0 = Index_0; + Parms.Item = Item; + Parms.bSizeToFit = bSizeToFit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_Shuffle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Shuffle(const TArray& TargetArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Shuffle"); + + Params::KismetArrayLibrary_Array_Shuffle Parms{}; + + Parms.TargetArray = std::move(TargetArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.Array_ShuffleFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// struct FRandomStream& RandomStream (Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_ShuffleFromStream(const TArray& TargetArray, struct FRandomStream& RandomStream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_ShuffleFromStream"); + + Params::KismetArrayLibrary_Array_ShuffleFromStream Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.RandomStream = std::move(RandomStream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + RandomStream = std::move(Parms.RandomStream); +} + + +// Function Engine.KismetArrayLibrary.Array_Swap +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32 FirstIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 SecondIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::Array_Swap(const TArray& TargetArray, int32 FirstIndex, int32 SecondIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "Array_Swap"); + + Params::KismetArrayLibrary_Array_Swap Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.FirstIndex = FirstIndex; + Parms.SecondIndex = SecondIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.FilterArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& TargetArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TSubclassOf FilterClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* FilteredArray (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::FilterArray(const TArray& TargetArray, TSubclassOf FilterClass, TArray* FilteredArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "FilterArray"); + + Params::KismetArrayLibrary_FilterArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.FilterClass = FilterClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (FilteredArray != nullptr) + *FilteredArray = std::move(Parms.FilteredArray); +} + + +// Function Engine.KismetArrayLibrary.SetArrayPropertyByName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* Object (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName PropertyName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Value (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SetArrayPropertyByName(class UObject* Object, class FName PropertyName, const TArray& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SetArrayPropertyByName"); + + Params::KismetArrayLibrary_SetArrayPropertyByName Parms{}; + + Parms.Object = Object; + Parms.PropertyName = PropertyName; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetArrayLibrary.SortByteArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortByteArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortByteArray"); + + Params::KismetArrayLibrary_SortByteArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetArrayLibrary.SortFloatArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortFloatArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortFloatArray"); + + Params::KismetArrayLibrary_SortFloatArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetArrayLibrary.SortInt64Array +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortInt64Array(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortInt64Array"); + + Params::KismetArrayLibrary_SortInt64Array Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetArrayLibrary.SortIntArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortIntArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortIntArray"); + + Params::KismetArrayLibrary_SortIntArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetArrayLibrary.SortNameArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLexicalSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortNameArray(TArray& TargetArray, bool bStableSort, bool bLexicalSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortNameArray"); + + Params::KismetArrayLibrary_SortNameArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.bLexicalSort = bLexicalSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetArrayLibrary.SortStringArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray& TargetArray (Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bStableSort (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EArraySortOrder SortOrder (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetArrayLibrary::SortStringArray(TArray& TargetArray, bool bStableSort, EArraySortOrder SortOrder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetArrayLibrary", "SortStringArray"); + + Params::KismetArrayLibrary_SortStringArray Parms{}; + + Parms.TargetArray = std::move(TargetArray); + Parms.bStableSort = bStableSort; + Parms.SortOrder = SortOrder; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + TargetArray = std::move(Parms.TargetArray); +} + + +// Function Engine.KismetGuidLibrary.Conv_GuidToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FGuid& InGuid (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetGuidLibrary::Conv_GuidToString(const struct FGuid& InGuid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "Conv_GuidToString"); + + Params::KismetGuidLibrary_Conv_GuidToString Parms{}; + + Parms.InGuid = std::move(InGuid); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetGuidLibrary.EqualEqual_GuidGuid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FGuid& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FGuid& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetGuidLibrary::EqualEqual_GuidGuid(const struct FGuid& A, const struct FGuid& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "EqualEqual_GuidGuid"); + + Params::KismetGuidLibrary_EqualEqual_GuidGuid Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetGuidLibrary.Invalidate_Guid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FGuid& InGuid (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetGuidLibrary::Invalidate_Guid(struct FGuid& InGuid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "Invalidate_Guid"); + + Params::KismetGuidLibrary_Invalidate_Guid Parms{}; + + Parms.InGuid = std::move(InGuid); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InGuid = std::move(Parms.InGuid); +} + + +// Function Engine.KismetGuidLibrary.IsValid_Guid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FGuid& InGuid (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetGuidLibrary::IsValid_Guid(const struct FGuid& InGuid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "IsValid_Guid"); + + Params::KismetGuidLibrary_IsValid_Guid Parms{}; + + Parms.InGuid = std::move(InGuid); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetGuidLibrary.NewGuid +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FGuid ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FGuid UKismetGuidLibrary::NewGuid() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "NewGuid"); + + Params::KismetGuidLibrary_NewGuid Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetGuidLibrary.NotEqual_GuidGuid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FGuid& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FGuid& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetGuidLibrary::NotEqual_GuidGuid(const struct FGuid& A, const struct FGuid& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "NotEqual_GuidGuid"); + + Params::KismetGuidLibrary_NotEqual_GuidGuid Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetGuidLibrary.Parse_StringToGuid +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& GuidString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FGuid* OutGuid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* Success (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetGuidLibrary::Parse_StringToGuid(const class FString& GuidString, struct FGuid* OutGuid, bool* Success) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetGuidLibrary", "Parse_StringToGuid"); + + Params::KismetGuidLibrary_Parse_StringToGuid Parms{}; + + Parms.GuidString = std::move(GuidString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutGuid != nullptr) + *OutGuid = std::move(Parms.OutGuid); + + if (Success != nullptr) + *Success = Parms.Success; +} + + +// Function Engine.KismetInternationalizationLibrary.ClearCurrentAssetGroupCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FName AssetGroup (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetInternationalizationLibrary::ClearCurrentAssetGroupCulture(const class FName AssetGroup, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "ClearCurrentAssetGroupCulture"); + + Params::KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture Parms{}; + + Parms.AssetGroup = AssetGroup; + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetInternationalizationLibrary.GetCultureDisplayName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool Localized (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetCultureDisplayName(const class FString& Culture, const bool Localized) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetCultureDisplayName"); + + Params::KismetInternationalizationLibrary_GetCultureDisplayName Parms{}; + + Parms.Culture = std::move(Culture); + Parms.Localized = Localized; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetCurrentAssetGroupCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName AssetGroup (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetCurrentAssetGroupCulture(const class FName AssetGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetCurrentAssetGroupCulture"); + + Params::KismetInternationalizationLibrary_GetCurrentAssetGroupCulture Parms{}; + + Parms.AssetGroup = AssetGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetCurrentCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetCurrentCulture() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetCurrentCulture"); + + Params::KismetInternationalizationLibrary_GetCurrentCulture Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetCurrentLanguage +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetCurrentLanguage() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetCurrentLanguage"); + + Params::KismetInternationalizationLibrary_GetCurrentLanguage Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetCurrentLocale +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetCurrentLocale() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetCurrentLocale"); + + Params::KismetInternationalizationLibrary_GetCurrentLocale Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetLocalizedCultures +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const bool IncludeGame (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool IncludeEngine (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool IncludeEditor (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool IncludeAdditional (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetInternationalizationLibrary::GetLocalizedCultures(const bool IncludeGame, const bool IncludeEngine, const bool IncludeEditor, const bool IncludeAdditional) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetLocalizedCultures"); + + Params::KismetInternationalizationLibrary_GetLocalizedCultures Parms{}; + + Parms.IncludeGame = IncludeGame; + Parms.IncludeEngine = IncludeEngine; + Parms.IncludeEditor = IncludeEditor; + Parms.IncludeAdditional = IncludeAdditional; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetNativeCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const ELocalizedTextSourceCategory TextCategory (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetNativeCulture(const ELocalizedTextSourceCategory TextCategory) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetNativeCulture"); + + Params::KismetInternationalizationLibrary_GetNativeCulture Parms{}; + + Parms.TextCategory = TextCategory; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.GetSuitableCulture +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& AvailableCultures (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& CultureToMatch (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FallbackCulture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetInternationalizationLibrary::GetSuitableCulture(const TArray& AvailableCultures, const class FString& CultureToMatch, const class FString& FallbackCulture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "GetSuitableCulture"); + + Params::KismetInternationalizationLibrary_GetSuitableCulture Parms{}; + + Parms.AvailableCultures = std::move(AvailableCultures); + Parms.CultureToMatch = std::move(CultureToMatch); + Parms.FallbackCulture = std::move(FallbackCulture); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.IsCultureRightToLeft +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::IsCultureRightToLeft(const class FString& Culture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "IsCultureRightToLeft"); + + Params::KismetInternationalizationLibrary_IsCultureRightToLeft Parms{}; + + Parms.Culture = std::move(Culture); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.SetCurrentAssetGroupCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FName AssetGroup (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::SetCurrentAssetGroupCulture(const class FName AssetGroup, const class FString& Culture, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "SetCurrentAssetGroupCulture"); + + Params::KismetInternationalizationLibrary_SetCurrentAssetGroupCulture Parms{}; + + Parms.AssetGroup = AssetGroup; + Parms.Culture = std::move(Culture); + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.SetCurrentCulture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::SetCurrentCulture(const class FString& Culture, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "SetCurrentCulture"); + + Params::KismetInternationalizationLibrary_SetCurrentCulture Parms{}; + + Parms.Culture = std::move(Culture); + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLanguage +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::SetCurrentLanguage(const class FString& Culture, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "SetCurrentLanguage"); + + Params::KismetInternationalizationLibrary_SetCurrentLanguage Parms{}; + + Parms.Culture = std::move(Culture); + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLanguageAndLocale +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::SetCurrentLanguageAndLocale(const class FString& Culture, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "SetCurrentLanguageAndLocale"); + + Params::KismetInternationalizationLibrary_SetCurrentLanguageAndLocale Parms{}; + + Parms.Culture = std::move(Culture); + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLocale +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& Culture (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool SaveToConfig (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetInternationalizationLibrary::SetCurrentLocale(const class FString& Culture, const bool SaveToConfig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetInternationalizationLibrary", "SetCurrentLocale"); + + Params::KismetInternationalizationLibrary_SetCurrentLocale Parms{}; + + Parms.Culture = std::move(Culture); + Parms.SaveToConfig = SaveToConfig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMaterialLibrary.CreateDynamicMaterialInstance +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Parent (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName OptionalName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EMIDCreationFlags CreationFlags (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInstanceDynamic* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInstanceDynamic* UKismetMaterialLibrary::CreateDynamicMaterialInstance(class UObject* WorldContextObject, class UMaterialInterface* Parent, class FName OptionalName, EMIDCreationFlags CreationFlags) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMaterialLibrary", "CreateDynamicMaterialInstance"); + + Params::KismetMaterialLibrary_CreateDynamicMaterialInstance Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Parent = Parent; + Parms.OptionalName = OptionalName; + Parms.CreationFlags = CreationFlags; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMaterialLibrary.GetScalarParameterValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialParameterCollection* Collection (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMaterialLibrary::GetScalarParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMaterialLibrary", "GetScalarParameterValue"); + + Params::KismetMaterialLibrary_GetScalarParameterValue Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Collection = Collection; + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMaterialLibrary.GetVectorParameterValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialParameterCollection* Collection (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMaterialLibrary::GetVectorParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMaterialLibrary", "GetVectorParameterValue"); + + Params::KismetMaterialLibrary_GetVectorParameterValue Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Collection = Collection; + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMaterialLibrary.SetScalarParameterValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialParameterCollection* Collection (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ParameterValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMaterialLibrary::SetScalarParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName, float ParameterValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMaterialLibrary", "SetScalarParameterValue"); + + Params::KismetMaterialLibrary_SetScalarParameterValue Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Collection = Collection; + Parms.ParameterName = ParameterName; + Parms.ParameterValue = ParameterValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetMaterialLibrary.SetVectorParameterValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialParameterCollection* Collection (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ParameterValue (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMaterialLibrary::SetVectorParameterValue(class UObject* WorldContextObject, class UMaterialParameterCollection* Collection, class FName ParameterName, const struct FLinearColor& ParameterValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMaterialLibrary", "SetVectorParameterValue"); + + Params::KismetMaterialLibrary_SetVectorParameterValue Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Collection = Collection; + Parms.ParameterName = ParameterName; + Parms.ParameterValue = std::move(ParameterValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetMathLibrary.abs +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::abs(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "abs"); + + Params::KismetMathLibrary_abs Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Abs_Int +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Abs_Int(int32 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Abs_Int"); + + Params::KismetMathLibrary_Abs_Int Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Abs_Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Abs_Int64(int64 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Abs_Int64"); + + Params::KismetMathLibrary_Abs_Int64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.acos +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::acos(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "acos"); + + Params::KismetMathLibrary_acos Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Add_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_ByteByte"); + + Params::KismetMathLibrary_Add_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::Add_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_DateTimeDateTime"); + + Params::KismetMathLibrary_Add_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_DateTimeTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::Add_DateTimeTimespan(const struct FDateTime& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_DateTimeTimespan"); + + Params::KismetMathLibrary_Add_DateTimeTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Add_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_DoubleDouble"); + + Params::KismetMathLibrary_Add_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Add_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_Int64Int64"); + + Params::KismetMathLibrary_Add_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Add_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_IntInt"); + + Params::KismetMathLibrary_Add_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_IntPointInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Add_IntPointInt(const struct FIntPoint& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_IntPointInt"); + + Params::KismetMathLibrary_Add_IntPointInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Add_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_IntPointIntPoint"); + + Params::KismetMathLibrary_Add_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Add_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_LinearColorLinearColor"); + + Params::KismetMathLibrary_Add_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_MatrixMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMatrix& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Add_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_MatrixMatrix"); + + Params::KismetMathLibrary_Add_MatrixMatrix Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_QuatQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Add_QuatQuat(const struct FQuat& A, const struct FQuat& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_QuatQuat"); + + Params::KismetMathLibrary_Add_QuatQuat Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::Add_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_TimespanTimespan"); + + Params::KismetMathLibrary_Add_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_Vector2DFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Add_Vector2DFloat(const struct FVector2D& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_Vector2DFloat"); + + Params::KismetMathLibrary_Add_Vector2DFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Add_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_Vector2DVector2D"); + + Params::KismetMathLibrary_Add_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Add_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_Vector4Vector4"); + + Params::KismetMathLibrary_Add_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_VectorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Add_VectorFloat(const struct FVector& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_VectorFloat"); + + Params::KismetMathLibrary_Add_VectorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_VectorInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Add_VectorInt(const struct FVector& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_VectorInt"); + + Params::KismetMathLibrary_Add_VectorInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Add_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Add_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Add_VectorVector"); + + Params::KismetMathLibrary_Add_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.And_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::And_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "And_Int64Int64"); + + Params::KismetMathLibrary_And_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.And_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::And_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "And_IntInt"); + + Params::KismetMathLibrary_And_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.asin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::asin(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "asin"); + + Params::KismetMathLibrary_asin Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.atan +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::atan(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "atan"); + + Params::KismetMathLibrary_atan Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Atan2 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Atan2(double Y, double X) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Atan2"); + + Params::KismetMathLibrary_Atan2 Parms{}; + + Parms.Y = Y; + Parms.X = X; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.AverageOfIntArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& IntArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// float* AverageValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::AverageOfIntArray(const TArray& IntArray, float* AverageValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "AverageOfIntArray"); + + Params::KismetMathLibrary_AverageOfIntArray Parms{}; + + Parms.IntArray = std::move(IntArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (AverageValue != nullptr) + *AverageValue = Parms.AverageValue; +} + + +// Function Engine.KismetMathLibrary.BMax +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::BMax(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BMax"); + + Params::KismetMathLibrary_BMax Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BMin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::BMin(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BMin"); + + Params::KismetMathLibrary_BMin Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BooleanAND +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::BooleanAND(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BooleanAND"); + + Params::KismetMathLibrary_BooleanAND Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BooleanNAND +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::BooleanNAND(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BooleanNAND"); + + Params::KismetMathLibrary_BooleanNAND Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BooleanNOR +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::BooleanNOR(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BooleanNOR"); + + Params::KismetMathLibrary_BooleanNOR Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BooleanOR +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::BooleanOR(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BooleanOR"); + + Params::KismetMathLibrary_BooleanOR Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BooleanXOR +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::BooleanXOR(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BooleanXOR"); + + Params::KismetMathLibrary_BooleanXOR Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_ExpandBy +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Negative (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Positive (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UKismetMathLibrary::Box_ExpandBy(const struct FBox& Box, const struct FVector& Negative, const struct FVector& Positive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_ExpandBy"); + + Params::KismetMathLibrary_Box_ExpandBy Parms{}; + + Parms.Box = std::move(Box); + Parms.Negative = std::move(Negative); + Parms.Positive = std::move(Positive); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_GetClosestPointTo +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Point (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Box_GetClosestPointTo(const struct FBox& Box, const struct FVector& Point) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_GetClosestPointTo"); + + Params::KismetMathLibrary_Box_GetClosestPointTo Parms{}; + + Parms.Box = std::move(Box); + Parms.Point = std::move(Point); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_Intersects +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FBox& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Box_Intersects(const struct FBox& A, const struct FBox& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_Intersects"); + + Params::KismetMathLibrary_Box_Intersects Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_IsInside +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& InnerTest (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FBox& OuterTest (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Box_IsInside(const struct FBox& InnerTest, const struct FBox& OuterTest) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_IsInside"); + + Params::KismetMathLibrary_Box_IsInside Parms{}; + + Parms.InnerTest = std::move(InnerTest); + Parms.OuterTest = std::move(OuterTest); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_IsInsideOrOn +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& InnerTest (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FBox& OuterTest (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Box_IsInsideOrOn(const struct FBox& InnerTest, const struct FBox& OuterTest) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_IsInsideOrOn"); + + Params::KismetMathLibrary_Box_IsInsideOrOn Parms{}; + + Parms.InnerTest = std::move(InnerTest); + Parms.OuterTest = std::move(OuterTest); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_IsPointInside +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Point (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Box_IsPointInside(const struct FBox& Box, const struct FVector& Point) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_IsPointInside"); + + Params::KismetMathLibrary_Box_IsPointInside Parms{}; + + Parms.Box = std::move(Box); + Parms.Point = std::move(Point); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Box_Overlap +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FBox& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UKismetMathLibrary::Box_Overlap(const struct FBox& A, const struct FBox& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Box_Overlap"); + + Params::KismetMathLibrary_Box_Overlap Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.BreakBoxSphereBounds +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBoxSphereBounds& InBoxSphereBounds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* Origin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* BoxExtent (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SphereRadius (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakBoxSphereBounds(const struct FBoxSphereBounds& InBoxSphereBounds, struct FVector* Origin, struct FVector* BoxExtent, float* SphereRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakBoxSphereBounds"); + + Params::KismetMathLibrary_BreakBoxSphereBounds Parms{}; + + Parms.InBoxSphereBounds = std::move(InBoxSphereBounds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Origin != nullptr) + *Origin = std::move(Parms.Origin); + + if (BoxExtent != nullptr) + *BoxExtent = std::move(Parms.BoxExtent); + + if (SphereRadius != nullptr) + *SphereRadius = Parms.SphereRadius; +} + + +// Function Engine.KismetMathLibrary.BreakColor +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* R (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* G (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* B (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* A (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakColor(const struct FLinearColor& InColor, float* R, float* G, float* B, float* A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakColor"); + + Params::KismetMathLibrary_BreakColor Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (R != nullptr) + *R = Parms.R; + + if (G != nullptr) + *G = Parms.G; + + if (B != nullptr) + *B = Parms.B; + + if (A != nullptr) + *A = Parms.A; +} + + +// Function Engine.KismetMathLibrary.BreakDateTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& InDateTime (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Year (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Month (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Day (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Hour (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Minute (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Second (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Millisecond (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakDateTime(const struct FDateTime& InDateTime, int32* Year, int32* Month, int32* Day, int32* Hour, int32* Minute, int32* Second, int32* Millisecond) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakDateTime"); + + Params::KismetMathLibrary_BreakDateTime Parms{}; + + Parms.InDateTime = std::move(InDateTime); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Year != nullptr) + *Year = Parms.Year; + + if (Month != nullptr) + *Month = Parms.Month; + + if (Day != nullptr) + *Day = Parms.Day; + + if (Hour != nullptr) + *Hour = Parms.Hour; + + if (Minute != nullptr) + *Minute = Parms.Minute; + + if (Second != nullptr) + *Second = Parms.Second; + + if (Millisecond != nullptr) + *Millisecond = Parms.Millisecond; +} + + +// Function Engine.KismetMathLibrary.BreakFrameRate +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FFrameRate& InFrameRate (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Numerator (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Denominator (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakFrameRate(const struct FFrameRate& InFrameRate, int32* Numerator, int32* Denominator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakFrameRate"); + + Params::KismetMathLibrary_BreakFrameRate Parms{}; + + Parms.InFrameRate = std::move(InFrameRate); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Numerator != nullptr) + *Numerator = Parms.Numerator; + + if (Denominator != nullptr) + *Denominator = Parms.Denominator; +} + + +// Function Engine.KismetMathLibrary.BreakQualifiedFrameTime +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQualifiedFrameTime& InFrameTime (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FFrameNumber* Frame (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FFrameRate* FrameRate (Parm, OutParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SubFrame (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakQualifiedFrameTime(const struct FQualifiedFrameTime& InFrameTime, struct FFrameNumber* Frame, struct FFrameRate* FrameRate, float* SubFrame) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakQualifiedFrameTime"); + + Params::KismetMathLibrary_BreakQualifiedFrameTime Parms{}; + + Parms.InFrameTime = std::move(InFrameTime); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Frame != nullptr) + *Frame = std::move(Parms.Frame); + + if (FrameRate != nullptr) + *FrameRate = std::move(Parms.FrameRate); + + if (SubFrame != nullptr) + *SubFrame = Parms.SubFrame; +} + + +// Function Engine.KismetMathLibrary.BreakQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& InQuat (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* W (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakQuat(const struct FQuat& InQuat, float* X, float* Y, float* Z, float* W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakQuat"); + + Params::KismetMathLibrary_BreakQuat Parms{}; + + Parms.InQuat = std::move(InQuat); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; + + if (W != nullptr) + *W = Parms.W; +} + + +// Function Engine.KismetMathLibrary.BreakRandomStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& InRandomStream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// int32* InitialSeed (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakRandomStream(const struct FRandomStream& InRandomStream, int32* InitialSeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakRandomStream"); + + Params::KismetMathLibrary_BreakRandomStream Parms{}; + + Parms.InRandomStream = std::move(InRandomStream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (InitialSeed != nullptr) + *InitialSeed = Parms.InitialSeed; +} + + +// Function Engine.KismetMathLibrary.BreakRotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float* Roll (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* pitch (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Yaw (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakRotator(const struct FRotator& InRot, float* Roll, float* pitch, float* Yaw) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakRotator"); + + Params::KismetMathLibrary_BreakRotator Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Roll != nullptr) + *Roll = Parms.Roll; + + if (pitch != nullptr) + *pitch = Parms.pitch; + + if (Yaw != nullptr) + *Yaw = Parms.Yaw; +} + + +// Function Engine.KismetMathLibrary.BreakRotIntoAxes +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakRotIntoAxes(const struct FRotator& InRot, struct FVector* X, struct FVector* Y, struct FVector* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakRotIntoAxes"); + + Params::KismetMathLibrary_BreakRotIntoAxes Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = std::move(Parms.X); + + if (Y != nullptr) + *Y = std::move(Parms.Y); + + if (Z != nullptr) + *Z = std::move(Parms.Z); +} + + +// Function Engine.KismetMathLibrary.BreakTimespan +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& InTimespan (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Days (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Hours (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Minutes (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Seconds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Milliseconds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakTimespan(const struct FTimespan& InTimespan, int32* Days, int32* Hours, int32* Minutes, int32* Seconds, int32* Milliseconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakTimespan"); + + Params::KismetMathLibrary_BreakTimespan Parms{}; + + Parms.InTimespan = std::move(InTimespan); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Days != nullptr) + *Days = Parms.Days; + + if (Hours != nullptr) + *Hours = Parms.Hours; + + if (Minutes != nullptr) + *Minutes = Parms.Minutes; + + if (Seconds != nullptr) + *Seconds = Parms.Seconds; + + if (Milliseconds != nullptr) + *Milliseconds = Parms.Milliseconds; +} + + +// Function Engine.KismetMathLibrary.BreakTimespan2 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& InTimespan (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Days (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Hours (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Minutes (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Seconds (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* FractionNano (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakTimespan2(const struct FTimespan& InTimespan, int32* Days, int32* Hours, int32* Minutes, int32* Seconds, int32* FractionNano) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakTimespan2"); + + Params::KismetMathLibrary_BreakTimespan2 Parms{}; + + Parms.InTimespan = std::move(InTimespan); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Days != nullptr) + *Days = Parms.Days; + + if (Hours != nullptr) + *Hours = Parms.Hours; + + if (Minutes != nullptr) + *Minutes = Parms.Minutes; + + if (Seconds != nullptr) + *Seconds = Parms.Seconds; + + if (FractionNano != nullptr) + *FractionNano = Parms.FractionNano; +} + + +// Function Engine.KismetMathLibrary.BreakTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& InTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Location (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* Rotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* Scale (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakTransform(const struct FTransform& InTransform, struct FVector* Location, struct FRotator* Rotation, struct FVector* Scale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakTransform"); + + Params::KismetMathLibrary_BreakTransform Parms{}; + + Parms.InTransform = std::move(InTransform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Location != nullptr) + *Location = std::move(Parms.Location); + + if (Rotation != nullptr) + *Rotation = std::move(Parms.Rotation); + + if (Scale != nullptr) + *Scale = std::move(Parms.Scale); +} + + +// Function Engine.KismetMathLibrary.BreakVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector(const struct FVector& InVec, double* X, double* Y, double* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector"); + + Params::KismetMathLibrary_BreakVector Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; +} + + +// Function Engine.KismetMathLibrary.BreakVector2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector2D(const struct FVector2D& InVec, double* X, double* Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector2D"); + + Params::KismetMathLibrary_BreakVector2D Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; +} + + +// Function Engine.KismetMathLibrary.BreakVector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& InVec (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* W (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector4(const struct FVector4& InVec, double* X, double* Y, double* Z, double* W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector4"); + + Params::KismetMathLibrary_BreakVector4 Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; + + if (W != nullptr) + *W = Parms.W; +} + + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector_NetQuantize& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector_NetQuantize(const struct FVector_NetQuantize& InVec, double* X, double* Y, double* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector_NetQuantize"); + + Params::KismetMathLibrary_BreakVector_NetQuantize Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; +} + + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize10 +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector_NetQuantize10& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector_NetQuantize10(const struct FVector_NetQuantize10& InVec, double* X, double* Y, double* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector_NetQuantize10"); + + Params::KismetMathLibrary_BreakVector_NetQuantize10 Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; +} + + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize100 +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector_NetQuantize100& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector_NetQuantize100(const struct FVector_NetQuantize100& InVec, double* X, double* Y, double* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector_NetQuantize100"); + + Params::KismetMathLibrary_BreakVector_NetQuantize100 Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; +} + + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantizeNormal +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector_NetQuantizeNormal& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::BreakVector_NetQuantizeNormal(const struct FVector_NetQuantizeNormal& InVec, double* X, double* Y, double* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "BreakVector_NetQuantizeNormal"); + + Params::KismetMathLibrary_BreakVector_NetQuantizeNormal Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = Parms.X; + + if (Y != nullptr) + *Y = Parms.Y; + + if (Z != nullptr) + *Z = Parms.Z; +} + + +// Function Engine.KismetMathLibrary.CInterpTo +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::CInterpTo(const struct FLinearColor& Current, const struct FLinearColor& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "CInterpTo"); + + Params::KismetMathLibrary_CInterpTo Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.clamp +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::clamp(int32 Value, int32 Param_min_0, int32 Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "clamp"); + + Params::KismetMathLibrary_clamp Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClampAngle +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double AngleDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double MinAngleDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double MaxAngleDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::ClampAngle(double AngleDegrees, double MinAngleDegrees, double MaxAngleDegrees) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClampAngle"); + + Params::KismetMathLibrary_ClampAngle Parms{}; + + Parms.AngleDegrees = AngleDegrees; + Parms.MinAngleDegrees = MinAngleDegrees; + Parms.MaxAngleDegrees = MaxAngleDegrees; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClampAxes2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double MinAxisVal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double MaxAxisVal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::ClampAxes2D(const struct FVector2D& A, double MinAxisVal, double MaxAxisVal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClampAxes2D"); + + Params::KismetMathLibrary_ClampAxes2D Parms{}; + + Parms.A = std::move(A); + Parms.MinAxisVal = MinAxisVal; + Parms.MaxAxisVal = MaxAxisVal; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClampAxis +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float Angle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::ClampAxis(float Angle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClampAxis"); + + Params::KismetMathLibrary_ClampAxis Parms{}; + + Parms.Angle = Angle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClampInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::ClampInt64(int64 Value, int64 Param_min_0, int64 Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClampInt64"); + + Params::KismetMathLibrary_ClampInt64 Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClampVectorSize +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::ClampVectorSize(const struct FVector& A, double Param_min_0, double Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClampVectorSize"); + + Params::KismetMathLibrary_ClampVectorSize Parms{}; + + Parms.A = std::move(A); + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ClassIsChildOf +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf TestClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf ParentClass (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::ClassIsChildOf(TSubclassOf TestClass, TSubclassOf ParentClass) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ClassIsChildOf"); + + Params::KismetMathLibrary_ClassIsChildOf Parms{}; + + Parms.TestClass = TestClass; + Parms.ParentClass = ParentClass; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ComposeRotators +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::ComposeRotators(const struct FRotator& A, const struct FRotator& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ComposeRotators"); + + Params::KismetMathLibrary_ComposeRotators Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ComposeTransforms +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::ComposeTransforms(const struct FTransform& A, const struct FTransform& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ComposeTransforms"); + + Params::KismetMathLibrary_ComposeTransforms Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_BoolToByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Conv_BoolToByte(bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_BoolToByte"); + + Params::KismetMathLibrary_Conv_BoolToByte Parms{}; + + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_BoolToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Conv_BoolToDouble(bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_BoolToDouble"); + + Params::KismetMathLibrary_Conv_BoolToDouble Parms{}; + + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_BoolToInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Conv_BoolToInt(bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_BoolToInt"); + + Params::KismetMathLibrary_Conv_BoolToInt Parms{}; + + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_ByteToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 InByte (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Conv_ByteToDouble(uint8 InByte) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_ByteToDouble"); + + Params::KismetMathLibrary_Conv_ByteToDouble Parms{}; + + Parms.InByte = InByte; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_ByteToInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 InByte (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Conv_ByteToInt(uint8 InByte) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_ByteToInt"); + + Params::KismetMathLibrary_Conv_ByteToInt Parms{}; + + Parms.InByte = InByte; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_ByteToInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 InByte (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Conv_ByteToInt64(uint8 InByte) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_ByteToInt64"); + + Params::KismetMathLibrary_Conv_ByteToInt64 Parms{}; + + Parms.InByte = InByte; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_ColorToLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Conv_ColorToLinearColor(const struct FColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_ColorToLinearColor"); + + Params::KismetMathLibrary_Conv_ColorToLinearColor Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_DoubleToFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Conv_DoubleToFloat(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_DoubleToFloat"); + + Params::KismetMathLibrary_Conv_DoubleToFloat Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_DoubleToInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Conv_DoubleToInt64(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_DoubleToInt64"); + + Params::KismetMathLibrary_Conv_DoubleToInt64 Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_DoubleToLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Conv_DoubleToLinearColor(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_DoubleToLinearColor"); + + Params::KismetMathLibrary_Conv_DoubleToLinearColor Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_DoubleToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_DoubleToVector(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_DoubleToVector"); + + Params::KismetMathLibrary_Conv_DoubleToVector Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_DoubleToVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Conv_DoubleToVector2D(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_DoubleToVector2D"); + + Params::KismetMathLibrary_Conv_DoubleToVector2D Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_FloatToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float InFloat (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Conv_FloatToDouble(float InFloat) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_FloatToDouble"); + + Params::KismetMathLibrary_Conv_FloatToDouble Parms{}; + + Parms.InFloat = InFloat; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Int64ToByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Conv_Int64ToByte(int64 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Int64ToByte"); + + Params::KismetMathLibrary_Conv_Int64ToByte Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Int64ToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Conv_Int64ToDouble(int64 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Int64ToDouble"); + + Params::KismetMathLibrary_Conv_Int64ToDouble Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Int64ToInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Conv_Int64ToInt(int64 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Int64ToInt"); + + Params::KismetMathLibrary_Conv_Int64ToInt Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntPointToVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& InIntPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Conv_IntPointToVector2D(const struct FIntPoint& InIntPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntPointToVector2D"); + + Params::KismetMathLibrary_Conv_IntPointToVector2D Parms{}; + + Parms.InIntPoint = std::move(InIntPoint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Conv_IntToBool(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToBool"); + + Params::KismetMathLibrary_Conv_IntToBool Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Conv_IntToByte(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToByte"); + + Params::KismetMathLibrary_Conv_IntToByte Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Conv_IntToDouble(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToDouble"); + + Params::KismetMathLibrary_Conv_IntToDouble Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Conv_IntToInt64(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToInt64"); + + Params::KismetMathLibrary_Conv_IntToInt64 Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToIntVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntVector UKismetMathLibrary::Conv_IntToIntVector(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToIntVector"); + + Params::KismetMathLibrary_Conv_IntToIntVector Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_IntToVector(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntToVector"); + + Params::KismetMathLibrary_Conv_IntToVector Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_IntVectorToVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntVector& InIntVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_IntVectorToVector(const struct FIntVector& InIntVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_IntVectorToVector"); + + Params::KismetMathLibrary_Conv_IntVectorToVector Parms{}; + + Parms.InIntVector = std::move(InIntVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_LinearColorToColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InLinearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InUseSRGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetMathLibrary::Conv_LinearColorToColor(const struct FLinearColor& InLinearColor, bool InUseSRGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_LinearColorToColor"); + + Params::KismetMathLibrary_Conv_LinearColorToColor Parms{}; + + Parms.InLinearColor = std::move(InLinearColor); + Parms.InUseSRGB = InUseSRGB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_LinearColorToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InLinearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_LinearColorToVector(const struct FLinearColor& InLinearColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_LinearColorToVector"); + + Params::KismetMathLibrary_Conv_LinearColorToVector Parms{}; + + Parms.InLinearColor = std::move(InLinearColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_MatrixToRotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& InMatrix (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Conv_MatrixToRotator(const struct FMatrix& InMatrix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_MatrixToRotator"); + + Params::KismetMathLibrary_Conv_MatrixToRotator Parms{}; + + Parms.InMatrix = std::move(InMatrix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_MatrixToTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& InMatrix (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::Conv_MatrixToTransform(const struct FMatrix& InMatrix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_MatrixToTransform"); + + Params::KismetMathLibrary_Conv_MatrixToTransform Parms{}; + + Parms.InMatrix = std::move(InMatrix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_RotatorToQuaternion +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Conv_RotatorToQuaternion(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_RotatorToQuaternion"); + + Params::KismetMathLibrary_Conv_RotatorToQuaternion Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_RotatorToTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRotator (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::Conv_RotatorToTransform(const struct FRotator& InRotator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_RotatorToTransform"); + + Params::KismetMathLibrary_Conv_RotatorToTransform Parms{}; + + Parms.InRotator = std::move(InRotator); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_RotatorToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_RotatorToVector(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_RotatorToVector"); + + Params::KismetMathLibrary_Conv_RotatorToVector Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_TransformToMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& Transform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Conv_TransformToMatrix(const struct FTransform& Transform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_TransformToMatrix"); + + Params::KismetMathLibrary_Conv_TransformToMatrix Parms{}; + + Parms.Transform = std::move(Transform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Vector2DToIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& InVector2D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Conv_Vector2DToIntPoint(const struct FVector2D& InVector2D) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Vector2DToIntPoint"); + + Params::KismetMathLibrary_Conv_Vector2DToIntPoint Parms{}; + + Parms.InVector2D = std::move(InVector2D); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Vector2DToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& InVector2D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_Vector2DToVector(const struct FVector2D& InVector2D, float Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Vector2DToVector"); + + Params::KismetMathLibrary_Conv_Vector2DToVector Parms{}; + + Parms.InVector2D = std::move(InVector2D); + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Vector4ToQuaternion +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& InVec (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Conv_Vector4ToQuaternion(const struct FVector4& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Vector4ToQuaternion"); + + Params::KismetMathLibrary_Conv_Vector4ToQuaternion Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Vector4ToRotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& InVec (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Conv_Vector4ToRotator(const struct FVector4& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Vector4ToRotator"); + + Params::KismetMathLibrary_Conv_Vector4ToRotator Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_Vector4ToVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& InVector4 (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Conv_Vector4ToVector(const struct FVector4& InVector4) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_Vector4ToVector"); + + Params::KismetMathLibrary_Conv_Vector4ToVector Parms{}; + + Parms.InVector4 = std::move(InVector4); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_VectorToLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Conv_VectorToLinearColor(const struct FVector& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_VectorToLinearColor"); + + Params::KismetMathLibrary_Conv_VectorToLinearColor Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_VectorToQuaternion +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Conv_VectorToQuaternion(const struct FVector& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_VectorToQuaternion"); + + Params::KismetMathLibrary_Conv_VectorToQuaternion Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_VectorToRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Conv_VectorToRotator(const struct FVector& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_VectorToRotator"); + + Params::KismetMathLibrary_Conv_VectorToRotator Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_VectorToTransform +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::Conv_VectorToTransform(const struct FVector& InLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_VectorToTransform"); + + Params::KismetMathLibrary_Conv_VectorToTransform Parms{}; + + Parms.InLocation = std::move(InLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Conv_VectorToVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Conv_VectorToVector2D(const struct FVector& InVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Conv_VectorToVector2D"); + + Params::KismetMathLibrary_Conv_VectorToVector2D Parms{}; + + Parms.InVector = std::move(InVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Convert1DTo2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index1D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 XSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Convert1DTo2D(int32 Index1D, int32 XSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Convert1DTo2D"); + + Params::KismetMathLibrary_Convert1DTo2D Parms{}; + + Parms.Index1D = Index1D; + Parms.XSize = XSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Convert1DTo3D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index1D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 XSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 YSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntVector UKismetMathLibrary::Convert1DTo3D(int32 Index1D, int32 XSize, int32 YSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Convert1DTo3D"); + + Params::KismetMathLibrary_Convert1DTo3D Parms{}; + + Parms.Index1D = Index1D; + Parms.XSize = XSize; + Parms.YSize = YSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Convert2DTo1D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& Index2D (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 XSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Convert2DTo1D(const struct FIntPoint& Index2D, int32 XSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Convert2DTo1D"); + + Params::KismetMathLibrary_Convert2DTo1D Parms{}; + + Parms.Index2D = std::move(Index2D); + Parms.XSize = XSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Convert3DTo1D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntVector& Index3D (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 XSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 YSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Convert3DTo1D(const struct FIntVector& Index3D, int32 XSize, int32 YSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Convert3DTo1D"); + + Params::KismetMathLibrary_Convert3DTo1D Parms{}; + + Parms.Index3D = std::move(Index3D); + Parms.XSize = XSize; + Parms.YSize = YSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.cos +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::cos(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "cos"); + + Params::KismetMathLibrary_cos Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.CreateVectorFromYawPitch +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Yaw (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float pitch (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::CreateVectorFromYawPitch(float Yaw, float pitch, float Length) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "CreateVectorFromYawPitch"); + + Params::KismetMathLibrary_CreateVectorFromYawPitch Parms{}; + + Parms.Yaw = Yaw; + Parms.pitch = pitch; + Parms.Length = Length; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Cross_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Cross_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Cross_VectorVector"); + + Params::KismetMathLibrary_Cross_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.CrossProduct2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::CrossProduct2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "CrossProduct2D"); + + Params::KismetMathLibrary_CrossProduct2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DateTimeFromIsoString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& IsoString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime* Result (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::DateTimeFromIsoString(const class FString& IsoString, struct FDateTime* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DateTimeFromIsoString"); + + Params::KismetMathLibrary_DateTimeFromIsoString Parms{}; + + Parms.IsoString = std::move(IsoString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DateTimeFromString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& DateTimeString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime* Result (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::DateTimeFromString(const class FString& DateTimeString, struct FDateTime* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DateTimeFromString"); + + Params::KismetMathLibrary_DateTimeFromString Parms{}; + + Parms.DateTimeString = std::move(DateTimeString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DateTimeMaxValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::DateTimeMaxValue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DateTimeMaxValue"); + + Params::KismetMathLibrary_DateTimeMaxValue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DateTimeMinValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::DateTimeMinValue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DateTimeMinValue"); + + Params::KismetMathLibrary_DateTimeMinValue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DaysInMonth +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Year (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Month (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::DaysInMonth(int32 Year, int32 Month) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DaysInMonth"); + + Params::KismetMathLibrary_DaysInMonth Parms{}; + + Parms.Year = Year; + Parms.Month = Month; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DaysInYear +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Year (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::DaysInYear(int32 Year) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DaysInYear"); + + Params::KismetMathLibrary_DaysInYear Parms{}; + + Parms.Year = Year; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegAcos +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegAcos(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegAcos"); + + Params::KismetMathLibrary_DegAcos Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegAsin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegAsin(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegAsin"); + + Params::KismetMathLibrary_DegAsin Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegAtan +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegAtan(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegAtan"); + + Params::KismetMathLibrary_DegAtan Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegAtan2 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegAtan2(double Y, double X) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegAtan2"); + + Params::KismetMathLibrary_DegAtan2 Parms{}; + + Parms.Y = Y; + Parms.X = X; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegCos +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegCos(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegCos"); + + Params::KismetMathLibrary_DegCos Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegreesToRadians +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegreesToRadians(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegreesToRadians"); + + Params::KismetMathLibrary_DegreesToRadians Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegSin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegSin(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegSin"); + + Params::KismetMathLibrary_DegSin Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DegTan +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DegTan(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DegTan"); + + Params::KismetMathLibrary_DegTan Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Distance2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Distance2D(const struct FVector2D& v1, const struct FVector2D& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Distance2D"); + + Params::KismetMathLibrary_Distance2D Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DistanceSquared2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DistanceSquared2D(const struct FVector2D& v1, const struct FVector2D& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DistanceSquared2D"); + + Params::KismetMathLibrary_DistanceSquared2D Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Divide_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_ByteByte"); + + Params::KismetMathLibrary_Divide_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Divide_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_DoubleDouble"); + + Params::KismetMathLibrary_Divide_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Divide_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_Int64Int64"); + + Params::KismetMathLibrary_Divide_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Divide_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_IntInt"); + + Params::KismetMathLibrary_Divide_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_IntPointInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Divide_IntPointInt(const struct FIntPoint& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_IntPointInt"); + + Params::KismetMathLibrary_Divide_IntPointInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Divide_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_IntPointIntPoint"); + + Params::KismetMathLibrary_Divide_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Divide_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_LinearColorLinearColor"); + + Params::KismetMathLibrary_Divide_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_TimespanFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scalar (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::Divide_TimespanFloat(const struct FTimespan& A, float Scalar) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_TimespanFloat"); + + Params::KismetMathLibrary_Divide_TimespanFloat Parms{}; + + Parms.A = std::move(A); + Parms.Scalar = Scalar; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_Vector2DFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Divide_Vector2DFloat(const struct FVector2D& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_Vector2DFloat"); + + Params::KismetMathLibrary_Divide_Vector2DFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Divide_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_Vector2DVector2D"); + + Params::KismetMathLibrary_Divide_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Divide_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_Vector4Vector4"); + + Params::KismetMathLibrary_Divide_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_VectorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Divide_VectorFloat(const struct FVector& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_VectorFloat"); + + Params::KismetMathLibrary_Divide_VectorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_VectorInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Divide_VectorInt(const struct FVector& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_VectorInt"); + + Params::KismetMathLibrary_Divide_VectorInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Divide_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Divide_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Divide_VectorVector"); + + Params::KismetMathLibrary_Divide_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Dot_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Dot_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Dot_VectorVector"); + + Params::KismetMathLibrary_Dot_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DotProduct2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::DotProduct2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DotProduct2D"); + + Params::KismetMathLibrary_DotProduct2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_Float +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::DynamicWeightedMovingAverage_Float(float CurrentSample, float PreviousSample, float MaxDistance, float MinWeight, float MaxWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DynamicWeightedMovingAverage_Float"); + + Params::KismetMathLibrary_DynamicWeightedMovingAverage_Float Parms{}; + + Parms.CurrentSample = CurrentSample; + Parms.PreviousSample = PreviousSample; + Parms.MaxDistance = MaxDistance; + Parms.MinWeight = MinWeight; + Parms.MaxWeight = MaxWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_FRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float MaxDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::DynamicWeightedMovingAverage_FRotator(const struct FRotator& CurrentSample, const struct FRotator& PreviousSample, float MaxDistance, float MinWeight, float MaxWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DynamicWeightedMovingAverage_FRotator"); + + Params::KismetMathLibrary_DynamicWeightedMovingAverage_FRotator Parms{}; + + Parms.CurrentSample = std::move(CurrentSample); + Parms.PreviousSample = std::move(PreviousSample); + Parms.MaxDistance = MaxDistance; + Parms.MinWeight = MinWeight; + Parms.MaxWeight = MaxWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_FVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxWeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::DynamicWeightedMovingAverage_FVector(const struct FVector& CurrentSample, const struct FVector& PreviousSample, float MaxDistance, float MinWeight, float MaxWeight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "DynamicWeightedMovingAverage_FVector"); + + Params::KismetMathLibrary_DynamicWeightedMovingAverage_FVector Parms{}; + + Parms.CurrentSample = std::move(CurrentSample); + Parms.PreviousSample = std::move(PreviousSample); + Parms.MaxDistance = MaxDistance; + Parms.MinWeight = MinWeight; + Parms.MaxWeight = MaxWeight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Ease +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEasingFunc EasingFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double BlendExp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Steps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Ease(double A, double B, double Alpha, EEasingFunc EasingFunc, double BlendExp, int32 Steps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Ease"); + + Params::KismetMathLibrary_Ease Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.Alpha = Alpha; + Parms.EasingFunc = EasingFunc; + Parms.BlendExp = BlendExp; + Parms.Steps = Steps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Equal_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Equal_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Equal_IntPointIntPoint"); + + Params::KismetMathLibrary_Equal_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_BoolBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_BoolBool(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_BoolBool"); + + Params::KismetMathLibrary_EqualEqual_BoolBool Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_ByteByte"); + + Params::KismetMathLibrary_EqualEqual_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_ClassClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UClass* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_ClassClass(class UClass* A, class UClass* B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_ClassClass"); + + Params::KismetMathLibrary_EqualEqual_ClassClass Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_DateTimeDateTime"); + + Params::KismetMathLibrary_EqualEqual_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_DoubleDouble"); + + Params::KismetMathLibrary_EqualEqual_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_Int64Int64"); + + Params::KismetMathLibrary_EqualEqual_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_IntInt"); + + Params::KismetMathLibrary_EqualEqual_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_LinearColorLinearColor"); + + Params::KismetMathLibrary_EqualEqual_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_MatrixMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMatrix& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_MatrixMatrix"); + + Params::KismetMathLibrary_EqualEqual_MatrixMatrix Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_NameName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_NameName(class FName A, class FName B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_NameName"); + + Params::KismetMathLibrary_EqualEqual_NameName Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_ObjectObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_ObjectObject(class UObject* A, class UObject* B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_ObjectObject"); + + Params::KismetMathLibrary_EqualEqual_ObjectObject Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_QuatQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_QuatQuat(const struct FQuat& A, const struct FQuat& B, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_QuatQuat"); + + Params::KismetMathLibrary_EqualEqual_QuatQuat Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_RotatorRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_RotatorRotator(const struct FRotator& A, const struct FRotator& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_RotatorRotator"); + + Params::KismetMathLibrary_EqualEqual_RotatorRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_TimespanTimespan"); + + Params::KismetMathLibrary_EqualEqual_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_TransformTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_TransformTransform(const struct FTransform& A, const struct FTransform& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_TransformTransform"); + + Params::KismetMathLibrary_EqualEqual_TransformTransform Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_Vector2DVector2D"); + + Params::KismetMathLibrary_EqualEqual_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_Vector4Vector4(const struct FVector4& A, const struct FVector4& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_Vector4Vector4"); + + Params::KismetMathLibrary_EqualEqual_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualEqual_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualEqual_VectorVector(const struct FVector& A, const struct FVector& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualEqual_VectorVector"); + + Params::KismetMathLibrary_EqualEqual_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualExactly_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualExactly_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualExactly_Vector2DVector2D"); + + Params::KismetMathLibrary_EqualExactly_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualExactly_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualExactly_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualExactly_Vector4Vector4"); + + Params::KismetMathLibrary_EqualExactly_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.EqualExactly_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::EqualExactly_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "EqualExactly_VectorVector"); + + Params::KismetMathLibrary_EqualExactly_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.exp +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::exp(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "exp"); + + Params::KismetMathLibrary_exp Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FCeil +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::FCeil(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FCeil"); + + Params::KismetMathLibrary_FCeil Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FCeil64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::FCeil64(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FCeil64"); + + Params::KismetMathLibrary_FCeil64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FClamp +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FClamp(double Value, double Param_min_0, double Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FClamp"); + + Params::KismetMathLibrary_FClamp Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FFloor +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::FFloor(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FFloor"); + + Params::KismetMathLibrary_FFloor Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FFloor64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::FFloor64(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FFloor64"); + + Params::KismetMathLibrary_FFloor64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FindClosestPointOnLine +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::FindClosestPointOnLine(const struct FVector& Point, const struct FVector& LineOrigin, const struct FVector& LineDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FindClosestPointOnLine"); + + Params::KismetMathLibrary_FindClosestPointOnLine Parms{}; + + Parms.Point = std::move(Point); + Parms.LineOrigin = std::move(LineOrigin); + Parms.LineDirection = std::move(LineDirection); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FindClosestPointOnSegment +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::FindClosestPointOnSegment(const struct FVector& Point, const struct FVector& SegmentStart, const struct FVector& SegmentEnd) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FindClosestPointOnSegment"); + + Params::KismetMathLibrary_FindClosestPointOnSegment Parms{}; + + Parms.Point = std::move(Point); + Parms.SegmentStart = std::move(SegmentStart); + Parms.SegmentEnd = std::move(SegmentEnd); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FindLookAtRotation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Start (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Target (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::FindLookAtRotation(const struct FVector& Start, const struct FVector& Target) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FindLookAtRotation"); + + Params::KismetMathLibrary_FindLookAtRotation Parms{}; + + Parms.Start = std::move(Start); + Parms.Target = std::move(Target); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FindNearestPointsOnLineSegments +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Segment1Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Segment1End (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Segment2Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Segment2End (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Segment1Point (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Segment2Point (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::FindNearestPointsOnLineSegments(const struct FVector& Segment1Start, const struct FVector& Segment1End, const struct FVector& Segment2Start, const struct FVector& Segment2End, struct FVector* Segment1Point, struct FVector* Segment2Point) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FindNearestPointsOnLineSegments"); + + Params::KismetMathLibrary_FindNearestPointsOnLineSegments Parms{}; + + Parms.Segment1Start = std::move(Segment1Start); + Parms.Segment1End = std::move(Segment1End); + Parms.Segment2Start = std::move(Segment2Start); + Parms.Segment2End = std::move(Segment2End); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Segment1Point != nullptr) + *Segment1Point = std::move(Parms.Segment1Point); + + if (Segment2Point != nullptr) + *Segment2Point = std::move(Parms.Segment2Point); +} + + +// Function Engine.KismetMathLibrary.FindRelativeLookAtRotation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& StartTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& TargetLocation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::FindRelativeLookAtRotation(const struct FTransform& StartTransform, const struct FVector& TargetLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FindRelativeLookAtRotation"); + + Params::KismetMathLibrary_FindRelativeLookAtRotation Parms{}; + + Parms.StartTransform = std::move(StartTransform); + Parms.TargetLocation = std::move(TargetLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FInterpEaseInOut +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Exponent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FInterpEaseInOut(double A, double B, double Alpha, double Exponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FInterpEaseInOut"); + + Params::KismetMathLibrary_FInterpEaseInOut Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.Alpha = Alpha; + Parms.Exponent = Exponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FInterpTo +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FInterpTo(double Current, double Target, double DeltaTime, double InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FInterpTo"); + + Params::KismetMathLibrary_FInterpTo Parms{}; + + Parms.Current = Current; + Parms.Target = Target; + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FInterpTo_Constant +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FInterpTo_Constant(double Current, double Target, double DeltaTime, double InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FInterpTo_Constant"); + + Params::KismetMathLibrary_FInterpTo_Constant Parms{}; + + Parms.Current = Current; + Parms.Target = Target; + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FixedTurn +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float InCurrent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InDesired (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InDeltaRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::FixedTurn(float InCurrent, float InDesired, float InDeltaRate) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FixedTurn"); + + Params::KismetMathLibrary_FixedTurn Parms{}; + + Parms.InCurrent = InCurrent; + Parms.InDesired = InDesired; + Parms.InDeltaRate = InDeltaRate; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FloatSpringInterp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// float Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FFloatSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float Stiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CriticalDampingFactor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Mass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TargetVelocityAmount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bClamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MinValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInitializeFromTarget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::FloatSpringInterp(float Current, float Target, struct FFloatSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bClamp, float MinValue, float MaxValue, bool bInitializeFromTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FloatSpringInterp"); + + Params::KismetMathLibrary_FloatSpringInterp Parms{}; + + Parms.Current = Current; + Parms.Target = Target; + Parms.SpringState = std::move(SpringState); + Parms.Stiffness = Stiffness; + Parms.CriticalDampingFactor = CriticalDampingFactor; + Parms.DeltaTime = DeltaTime; + Parms.Mass = Mass; + Parms.TargetVelocityAmount = TargetVelocityAmount; + Parms.bClamp = bClamp; + Parms.MinValue = MinValue; + Parms.MaxValue = MaxValue; + Parms.bInitializeFromTarget = bInitializeFromTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FMax +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FMax(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FMax"); + + Params::KismetMathLibrary_FMax Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FMin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FMin(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FMin"); + + Params::KismetMathLibrary_FMin Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FMod +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// double Dividend (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Divisor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Remainder (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::FMod(double Dividend, double Divisor, double* Remainder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FMod"); + + Params::KismetMathLibrary_FMod Parms{}; + + Parms.Dividend = Dividend; + Parms.Divisor = Divisor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Remainder != nullptr) + *Remainder = Parms.Remainder; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FMod64 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// double Dividend (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Divisor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* Remainder (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::FMod64(double Dividend, double Divisor, double* Remainder) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FMod64"); + + Params::KismetMathLibrary_FMod64 Parms{}; + + Parms.Dividend = Dividend; + Parms.Divisor = Divisor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Remainder != nullptr) + *Remainder = Parms.Remainder; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Fraction +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Fraction(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Fraction"); + + Params::KismetMathLibrary_Fraction Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromDays +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Days (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::FromDays(float Days) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromDays"); + + Params::KismetMathLibrary_FromDays Parms{}; + + Parms.Days = Days; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromHours +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Hours (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::FromHours(float Hours) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromHours"); + + Params::KismetMathLibrary_FromHours Parms{}; + + Parms.Hours = Hours; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromMilliseconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Milliseconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::FromMilliseconds(float Milliseconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromMilliseconds"); + + Params::KismetMathLibrary_FromMilliseconds Parms{}; + + Parms.Milliseconds = Milliseconds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromMinutes +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Minutes (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::FromMinutes(float Minutes) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromMinutes"); + + Params::KismetMathLibrary_FromMinutes Parms{}; + + Parms.Minutes = Minutes; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromSeconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::FromSeconds(float Seconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromSeconds"); + + Params::KismetMathLibrary_FromSeconds Parms{}; + + Parms.Seconds = Seconds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FromUnixTimestamp +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const int64 UnixTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::FromUnixTimestamp(const int64 UnixTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FromUnixTimestamp"); + + Params::KismetMathLibrary_FromUnixTimestamp Parms{}; + + Parms.UnixTime = UnixTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FTrunc +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::FTrunc(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FTrunc"); + + Params::KismetMathLibrary_FTrunc Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FTrunc64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::FTrunc64(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FTrunc64"); + + Params::KismetMathLibrary_FTrunc64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FTruncVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntVector UKismetMathLibrary::FTruncVector(const struct FVector& InVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FTruncVector"); + + Params::KismetMathLibrary_FTruncVector Parms{}; + + Parms.InVector = std::move(InVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.FWrap +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::FWrap(double Value, double Param_min_0, double Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "FWrap"); + + Params::KismetMathLibrary_FWrap Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetAbs2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::GetAbs2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetAbs2D"); + + Params::KismetMathLibrary_GetAbs2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetAbsMax2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetAbsMax2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetAbsMax2D"); + + Params::KismetMathLibrary_GetAbsMax2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetAxes +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::GetAxes(const struct FRotator& A, struct FVector* X, struct FVector* Y, struct FVector* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetAxes"); + + Params::KismetMathLibrary_GetAxes Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = std::move(Parms.X); + + if (Y != nullptr) + *Y = std::move(Parms.Y); + + if (Z != nullptr) + *Z = std::move(Parms.Z); +} + + +// Function Engine.KismetMathLibrary.GetAzimuthAndElevation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& ReferenceFrame (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Azimuth (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Elevation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::GetAzimuthAndElevation(const struct FVector& InDirection, const struct FTransform& ReferenceFrame, float* Azimuth, float* Elevation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetAzimuthAndElevation"); + + Params::KismetMathLibrary_GetAzimuthAndElevation Parms{}; + + Parms.InDirection = std::move(InDirection); + Parms.ReferenceFrame = std::move(ReferenceFrame); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Azimuth != nullptr) + *Azimuth = Parms.Azimuth; + + if (Elevation != nullptr) + *Elevation = Parms.Elevation; +} + + +// Function Engine.KismetMathLibrary.GetBoxCenter +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& InBox (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetBoxCenter(const struct FBox& InBox) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetBoxCenter"); + + Params::KismetMathLibrary_GetBoxCenter Parms{}; + + Parms.InBox = std::move(InBox); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetBoxSize +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& InBox (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetBoxSize(const struct FBox& InBox) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetBoxSize"); + + Params::KismetMathLibrary_GetBoxSize Parms{}; + + Parms.InBox = std::move(InBox); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetBoxVolume +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& InBox (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetBoxVolume(const struct FBox& InBox) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetBoxVolume"); + + Params::KismetMathLibrary_GetBoxVolume Parms{}; + + Parms.InBox = std::move(InBox); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDate +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::GetDate(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDate"); + + Params::KismetMathLibrary_GetDate Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDay +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetDay(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDay"); + + Params::KismetMathLibrary_GetDay Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDayOfYear +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetDayOfYear(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDayOfYear"); + + Params::KismetMathLibrary_GetDayOfYear Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDays +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetDays(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDays"); + + Params::KismetMathLibrary_GetDays Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDirectionUnitVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& From (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& To (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetDirectionUnitVector(const struct FVector& From, const struct FVector& To) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDirectionUnitVector"); + + Params::KismetMathLibrary_GetDirectionUnitVector Parms{}; + + Parms.From = std::move(From); + Parms.To = std::move(To); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetDuration +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::GetDuration(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetDuration"); + + Params::KismetMathLibrary_GetDuration Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetForwardVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetForwardVector(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetForwardVector"); + + Params::KismetMathLibrary_GetForwardVector Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetHour +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetHour(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetHour"); + + Params::KismetMathLibrary_GetHour Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetHour12 +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetHour12(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetHour12"); + + Params::KismetMathLibrary_GetHour12 Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetHours +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetHours(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetHours"); + + Params::KismetMathLibrary_GetHours Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMax2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetMax2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMax2D"); + + Params::KismetMathLibrary_GetMax2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMaxElement +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetMaxElement(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMaxElement"); + + Params::KismetMathLibrary_GetMaxElement Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMillisecond +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetMillisecond(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMillisecond"); + + Params::KismetMathLibrary_GetMillisecond Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMilliseconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetMilliseconds(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMilliseconds"); + + Params::KismetMathLibrary_GetMilliseconds Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMin2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetMin2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMin2D"); + + Params::KismetMathLibrary_GetMin2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMinElement +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetMinElement(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMinElement"); + + Params::KismetMathLibrary_GetMinElement Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMinute +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetMinute(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMinute"); + + Params::KismetMathLibrary_GetMinute Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMinutes +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetMinutes(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMinutes"); + + Params::KismetMathLibrary_GetMinutes Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetMonth +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetMonth(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetMonth"); + + Params::KismetMathLibrary_GetMonth Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetPI +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetPI() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetPI"); + + Params::KismetMathLibrary_GetPI Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetPointDistanceToLine +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineDirection (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetPointDistanceToLine(const struct FVector& Point, const struct FVector& LineOrigin, const struct FVector& LineDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetPointDistanceToLine"); + + Params::KismetMathLibrary_GetPointDistanceToLine Parms{}; + + Parms.Point = std::move(Point); + Parms.LineOrigin = std::move(LineOrigin); + Parms.LineDirection = std::move(LineDirection); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetPointDistanceToSegment +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetPointDistanceToSegment(const struct FVector& Point, const struct FVector& SegmentStart, const struct FVector& SegmentEnd) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetPointDistanceToSegment"); + + Params::KismetMathLibrary_GetPointDistanceToSegment Parms{}; + + Parms.Point = std::move(Point); + Parms.SegmentStart = std::move(SegmentStart); + Parms.SegmentEnd = std::move(SegmentEnd); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetReflectionVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SurfaceNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetReflectionVector(const struct FVector& Direction, const struct FVector& SurfaceNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetReflectionVector"); + + Params::KismetMathLibrary_GetReflectionVector Parms{}; + + Parms.Direction = std::move(Direction); + Parms.SurfaceNormal = std::move(SurfaceNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetRightVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetRightVector(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetRightVector"); + + Params::KismetMathLibrary_GetRightVector Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetRotated2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleDeg (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::GetRotated2D(const struct FVector2D& A, float AngleDeg) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetRotated2D"); + + Params::KismetMathLibrary_GetRotated2D Parms{}; + + Parms.A = std::move(A); + Parms.AngleDeg = AngleDeg; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetRuntimeFloatCurveValue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRuntimeFloatCurve& Curve (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const float InTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float InDefaultValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetRuntimeFloatCurveValue(const struct FRuntimeFloatCurve& Curve, const float InTime, const float InDefaultValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetRuntimeFloatCurveValue"); + + Params::KismetMathLibrary_GetRuntimeFloatCurveValue Parms{}; + + Parms.Curve = std::move(Curve); + Parms.InTime = InTime; + Parms.InDefaultValue = InDefaultValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetSecond +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetSecond(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetSecond"); + + Params::KismetMathLibrary_GetSecond Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetSeconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetSeconds(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetSeconds"); + + Params::KismetMathLibrary_GetSeconds Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetSlopeDegreeAngles +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& MyRightYAxis (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& FloorNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& UpVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutSlopePitchDegreeAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutSlopeRollDegreeAngle (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::GetSlopeDegreeAngles(const struct FVector& MyRightYAxis, const struct FVector& FloorNormal, const struct FVector& UpVector, float* OutSlopePitchDegreeAngle, float* OutSlopeRollDegreeAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetSlopeDegreeAngles"); + + Params::KismetMathLibrary_GetSlopeDegreeAngles Parms{}; + + Parms.MyRightYAxis = std::move(MyRightYAxis); + Parms.FloorNormal = std::move(FloorNormal); + Parms.UpVector = std::move(UpVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSlopePitchDegreeAngle != nullptr) + *OutSlopePitchDegreeAngle = Parms.OutSlopePitchDegreeAngle; + + if (OutSlopeRollDegreeAngle != nullptr) + *OutSlopeRollDegreeAngle = Parms.OutSlopeRollDegreeAngle; +} + + +// Function Engine.KismetMathLibrary.GetTAU +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GetTAU() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTAU"); + + Params::KismetMathLibrary_GetTAU Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTimeOfDay +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::GetTimeOfDay(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTimeOfDay"); + + Params::KismetMathLibrary_GetTimeOfDay Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTotalDays +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetTotalDays(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTotalDays"); + + Params::KismetMathLibrary_GetTotalDays Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTotalHours +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetTotalHours(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTotalHours"); + + Params::KismetMathLibrary_GetTotalHours Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTotalMilliseconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetTotalMilliseconds(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTotalMilliseconds"); + + Params::KismetMathLibrary_GetTotalMilliseconds Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTotalMinutes +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetTotalMinutes(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTotalMinutes"); + + Params::KismetMathLibrary_GetTotalMinutes Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetTotalSeconds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::GetTotalSeconds(const struct FTimespan& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetTotalSeconds"); + + Params::KismetMathLibrary_GetTotalSeconds Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetUpVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetUpVector(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetUpVector"); + + Params::KismetMathLibrary_GetUpVector Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetVectorArrayAverage +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& Vectors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GetVectorArrayAverage(const TArray& Vectors) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetVectorArrayAverage"); + + Params::KismetMathLibrary_GetVectorArrayAverage Parms{}; + + Parms.Vectors = std::move(Vectors); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GetYawPitchFromVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* Yaw (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* pitch (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::GetYawPitchFromVector(const struct FVector& InVec, float* Yaw, float* pitch) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetYawPitchFromVector"); + + Params::KismetMathLibrary_GetYawPitchFromVector Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Yaw != nullptr) + *Yaw = Parms.Yaw; + + if (pitch != nullptr) + *pitch = Parms.pitch; +} + + +// Function Engine.KismetMathLibrary.GetYear +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::GetYear(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GetYear"); + + Params::KismetMathLibrary_GetYear Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_ByteByte"); + + Params::KismetMathLibrary_Greater_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_DateTimeDateTime"); + + Params::KismetMathLibrary_Greater_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_DoubleDouble"); + + Params::KismetMathLibrary_Greater_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_Int64Int64"); + + Params::KismetMathLibrary_Greater_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_IntInt"); + + Params::KismetMathLibrary_Greater_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Greater_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Greater_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Greater_TimespanTimespan"); + + Params::KismetMathLibrary_Greater_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_ByteByte"); + + Params::KismetMathLibrary_GreaterEqual_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_DateTimeDateTime"); + + Params::KismetMathLibrary_GreaterEqual_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_DoubleDouble"); + + Params::KismetMathLibrary_GreaterEqual_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_Int64Int64"); + + Params::KismetMathLibrary_GreaterEqual_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_IntInt"); + + Params::KismetMathLibrary_GreaterEqual_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterEqual_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::GreaterEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterEqual_TimespanTimespan"); + + Params::KismetMathLibrary_GreaterEqual_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GreaterGreater_VectorRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::GreaterGreater_VectorRotator(const struct FVector& A, const struct FRotator& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GreaterGreater_VectorRotator"); + + Params::KismetMathLibrary_GreaterGreater_VectorRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.GridSnap_Float +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double GridSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::GridSnap_Float(double Location, double GridSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "GridSnap_Float"); + + Params::KismetMathLibrary_GridSnap_Float Parms{}; + + Parms.Location = Location; + Parms.GridSize = GridSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.HSVToRGB +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float H (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float S (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::HSVToRGB(float H, float S, float V, float A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "HSVToRGB"); + + Params::KismetMathLibrary_HSVToRGB Parms{}; + + Parms.H = H; + Parms.S = S; + Parms.V = V; + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.HSVToRGB_Vector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& HSV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor* RGB (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::HSVToRGB_Vector(const struct FLinearColor& HSV, struct FLinearColor* RGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "HSVToRGB_Vector"); + + Params::KismetMathLibrary_HSVToRGB_Vector Parms{}; + + Parms.HSV = std::move(HSV); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (RGB != nullptr) + *RGB = std::move(Parms.RGB); +} + + +// Function Engine.KismetMathLibrary.HSVToRGBLinear +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& HSV (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::HSVToRGBLinear(const struct FLinearColor& HSV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "HSVToRGBLinear"); + + Params::KismetMathLibrary_HSVToRGBLinear Parms{}; + + Parms.HSV = std::move(HSV); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Hypotenuse +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Hypotenuse(double Width, double Height) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Hypotenuse"); + + Params::KismetMathLibrary_Hypotenuse Parms{}; + + Parms.Width = Width; + Parms.Height = Height; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InRange_FloatFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::InRange_FloatFloat(double Value, double Param_min_0, double Param_max_0, bool InclusiveMin, bool InclusiveMax) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InRange_FloatFloat"); + + Params::KismetMathLibrary_InRange_FloatFloat Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + Parms.InclusiveMin = InclusiveMin; + Parms.InclusiveMax = InclusiveMax; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InRange_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::InRange_Int64Int64(int64 Value, int64 Param_min_0, int64 Param_max_0, bool InclusiveMin, bool InclusiveMax) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InRange_Int64Int64"); + + Params::KismetMathLibrary_InRange_Int64Int64 Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + Parms.InclusiveMin = InclusiveMin; + Parms.InclusiveMax = InclusiveMax; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InRange_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InclusiveMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::InRange_IntInt(int32 Value, int32 Param_min_0, int32 Param_max_0, bool InclusiveMin, bool InclusiveMax) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InRange_IntInt"); + + Params::KismetMathLibrary_InRange_IntInt Parms{}; + + Parms.Value = Value; + Parms.Param_min_0 = Param_min_0; + Parms.Param_max_0 = Param_max_0; + Parms.InclusiveMin = InclusiveMin; + Parms.InclusiveMax = InclusiveMax; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_Down +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_Down() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_Down"); + + Params::KismetMathLibrary_IntPoint_Down Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_Left +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_Left() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_Left"); + + Params::KismetMathLibrary_IntPoint_Left Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_One +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_One() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_One"); + + Params::KismetMathLibrary_IntPoint_One Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_Right +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_Right() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_Right"); + + Params::KismetMathLibrary_IntPoint_Right Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_Up +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_Up() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_Up"); + + Params::KismetMathLibrary_IntPoint_Up Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IntPoint_Zero +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::IntPoint_Zero() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IntPoint_Zero"); + + Params::KismetMathLibrary_IntPoint_Zero Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InverseTransformDirection +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::InverseTransformDirection(const struct FTransform& T, const struct FVector& Direction) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InverseTransformDirection"); + + Params::KismetMathLibrary_InverseTransformDirection Parms{}; + + Parms.T = std::move(T); + Parms.Direction = std::move(Direction); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InverseTransformLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::InverseTransformLocation(const struct FTransform& T, const struct FVector& Location) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InverseTransformLocation"); + + Params::KismetMathLibrary_InverseTransformLocation Parms{}; + + Parms.T = std::move(T); + Parms.Location = std::move(Location); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InverseTransformRotation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::InverseTransformRotation(const struct FTransform& T, const struct FRotator& Rotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InverseTransformRotation"); + + Params::KismetMathLibrary_InverseTransformRotation Parms{}; + + Parms.T = std::move(T); + Parms.Rotation = std::move(Rotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.InvertTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::InvertTransform(const struct FTransform& T) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "InvertTransform"); + + Params::KismetMathLibrary_InvertTransform Parms{}; + + Parms.T = std::move(T); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsAfternoon +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsAfternoon(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsAfternoon"); + + Params::KismetMathLibrary_IsAfternoon Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsLeapYear +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Year (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsLeapYear(int32 Year) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsLeapYear"); + + Params::KismetMathLibrary_IsLeapYear Parms{}; + + Parms.Year = Year; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsMorning +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsMorning(const struct FDateTime& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsMorning"); + + Params::KismetMathLibrary_IsMorning Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsNearlyZero2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsNearlyZero2D(const struct FVector2D& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsNearlyZero2D"); + + Params::KismetMathLibrary_IsNearlyZero2D Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsPointInBox +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsPointInBox(const struct FVector& Point, const struct FVector& BoxOrigin, const struct FVector& BoxExtent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsPointInBox"); + + Params::KismetMathLibrary_IsPointInBox Parms{}; + + Parms.Point = std::move(Point); + Parms.BoxOrigin = std::move(BoxOrigin); + Parms.BoxExtent = std::move(BoxExtent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsPointInBox_Box +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox& Box (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsPointInBox_Box(const struct FVector& Point, const struct FBox& Box) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsPointInBox_Box"); + + Params::KismetMathLibrary_IsPointInBox_Box Parms{}; + + Parms.Point = std::move(Point); + Parms.Box = std::move(Box); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsPointInBoxWithTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& BoxWorldTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsPointInBoxWithTransform(const struct FVector& Point, const struct FTransform& BoxWorldTransform, const struct FVector& BoxExtent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsPointInBoxWithTransform"); + + Params::KismetMathLibrary_IsPointInBoxWithTransform Parms{}; + + Parms.Point = std::move(Point); + Parms.BoxWorldTransform = std::move(BoxWorldTransform); + Parms.BoxExtent = std::move(BoxExtent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsPointInBoxWithTransform_Box +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& BoxWorldTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox& BoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsPointInBoxWithTransform_Box(const struct FVector& Point, const struct FTransform& BoxWorldTransform, const struct FBox& BoxExtent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsPointInBoxWithTransform_Box"); + + Params::KismetMathLibrary_IsPointInBoxWithTransform_Box Parms{}; + + Parms.Point = std::move(Point); + Parms.BoxWorldTransform = std::move(BoxWorldTransform); + Parms.BoxExtent = std::move(BoxExtent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.IsZero2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::IsZero2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "IsZero2D"); + + Params::KismetMathLibrary_IsZero2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Lerp +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Lerp(double A, double B, double Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Lerp"); + + Params::KismetMathLibrary_Lerp Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_ByteByte"); + + Params::KismetMathLibrary_Less_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_DateTimeDateTime"); + + Params::KismetMathLibrary_Less_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_DoubleDouble"); + + Params::KismetMathLibrary_Less_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_Int64Int64"); + + Params::KismetMathLibrary_Less_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_IntInt"); + + Params::KismetMathLibrary_Less_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Less_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Less_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Less_TimespanTimespan"); + + Params::KismetMathLibrary_Less_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_ByteByte"); + + Params::KismetMathLibrary_LessEqual_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_DateTimeDateTime"); + + Params::KismetMathLibrary_LessEqual_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_DoubleDouble"); + + Params::KismetMathLibrary_LessEqual_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_Int64Int64"); + + Params::KismetMathLibrary_LessEqual_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_IntInt"); + + Params::KismetMathLibrary_LessEqual_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessEqual_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LessEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessEqual_TimespanTimespan"); + + Params::KismetMathLibrary_LessEqual_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LessLess_VectorRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::LessLess_VectorRotator(const struct FVector& A, const struct FRotator& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LessLess_VectorRotator"); + + Params::KismetMathLibrary_LessLess_VectorRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Black +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Black() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Black"); + + Params::KismetMathLibrary_LinearColor_Black Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Blue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Blue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Blue"); + + Params::KismetMathLibrary_LinearColor_Blue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Desaturated +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InDesaturation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Desaturated(const struct FLinearColor& InColor, float InDesaturation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Desaturated"); + + Params::KismetMathLibrary_LinearColor_Desaturated Parms{}; + + Parms.InColor = std::move(InColor); + Parms.InDesaturation = InDesaturation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Distance +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& C1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& C2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::LinearColor_Distance(const struct FLinearColor& C1, const struct FLinearColor& C2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Distance"); + + Params::KismetMathLibrary_LinearColor_Distance Parms{}; + + Parms.C1 = std::move(C1); + Parms.C2 = std::move(C2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_GetLuminance +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::LinearColor_GetLuminance(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_GetLuminance"); + + Params::KismetMathLibrary_LinearColor_GetLuminance Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_GetMax +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::LinearColor_GetMax(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_GetMax"); + + Params::KismetMathLibrary_LinearColor_GetMax Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_GetMin +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::LinearColor_GetMin(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_GetMin"); + + Params::KismetMathLibrary_LinearColor_GetMin Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Gray +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Gray() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Gray"); + + Params::KismetMathLibrary_LinearColor_Gray Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Green +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Green() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Green"); + + Params::KismetMathLibrary_LinearColor_Green Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_IsNearEqual +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LinearColor_IsNearEqual(const struct FLinearColor& A, const struct FLinearColor& B, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_IsNearEqual"); + + Params::KismetMathLibrary_LinearColor_IsNearEqual Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Quantize +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetMathLibrary::LinearColor_Quantize(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Quantize"); + + Params::KismetMathLibrary_LinearColor_Quantize Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_QuantizeRound +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetMathLibrary::LinearColor_QuantizeRound(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_QuantizeRound"); + + Params::KismetMathLibrary_LinearColor_QuantizeRound Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Red +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Red() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Red"); + + Params::KismetMathLibrary_LinearColor_Red Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Set +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_Set(struct FLinearColor& InOutColor, const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Set"); + + Params::KismetMathLibrary_LinearColor_Set Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetFromHSV +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float H (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float S (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetFromHSV(struct FLinearColor& InOutColor, float H, float S, float V, float A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetFromHSV"); + + Params::KismetMathLibrary_LinearColor_SetFromHSV Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.H = H; + Parms.S = S; + Parms.V = V; + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetFromPow22 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FColor& InColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetFromPow22(struct FLinearColor& InOutColor, const struct FColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetFromPow22"); + + Params::KismetMathLibrary_LinearColor_SetFromPow22 Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetFromSRGB +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FColor& InSRGB (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetFromSRGB(struct FLinearColor& InOutColor, const struct FColor& InSRGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetFromSRGB"); + + Params::KismetMathLibrary_LinearColor_SetFromSRGB Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.InSRGB = std::move(InSRGB); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetRandomHue +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetRandomHue(struct FLinearColor& InOutColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetRandomHue"); + + Params::KismetMathLibrary_LinearColor_SetRandomHue Parms{}; + + Parms.InOutColor = std::move(InOutColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetRGBA +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float R (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float G (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetRGBA(struct FLinearColor& InOutColor, float R, float G, float B, float A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetRGBA"); + + Params::KismetMathLibrary_LinearColor_SetRGBA Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.R = R; + Parms.G = G; + Parms.B = B; + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_SetTemperature +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FLinearColor& InOutColor (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InTemperature (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::LinearColor_SetTemperature(struct FLinearColor& InOutColor, float InTemperature) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_SetTemperature"); + + Params::KismetMathLibrary_LinearColor_SetTemperature Parms{}; + + Parms.InOutColor = std::move(InOutColor); + Parms.InTemperature = InTemperature; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + InOutColor = std::move(Parms.InOutColor); +} + + +// Function Engine.KismetMathLibrary.LinearColor_ToNewOpacity +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InOpacity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_ToNewOpacity(const struct FLinearColor& InColor, float InOpacity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_ToNewOpacity"); + + Params::KismetMathLibrary_LinearColor_ToNewOpacity Parms{}; + + Parms.InColor = std::move(InColor); + Parms.InOpacity = InOpacity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_ToRGBE +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InLinearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetMathLibrary::LinearColor_ToRGBE(const struct FLinearColor& InLinearColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_ToRGBE"); + + Params::KismetMathLibrary_LinearColor_ToRGBE Parms{}; + + Parms.InLinearColor = std::move(InLinearColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Transparent +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Transparent() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Transparent"); + + Params::KismetMathLibrary_LinearColor_Transparent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_White +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_White() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_White"); + + Params::KismetMathLibrary_LinearColor_White Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColor_Yellow +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColor_Yellow() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColor_Yellow"); + + Params::KismetMathLibrary_LinearColor_Yellow Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColorLerp +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColorLerp(const struct FLinearColor& A, const struct FLinearColor& B, float Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColorLerp"); + + Params::KismetMathLibrary_LinearColorLerp Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinearColorLerpUsingHSV +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::LinearColorLerpUsingHSV(const struct FLinearColor& A, const struct FLinearColor& B, float Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinearColorLerpUsingHSV"); + + Params::KismetMathLibrary_LinearColorLerpUsingHSV Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinePlaneIntersection +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& LineStart (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineEnd (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlane& APlane (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* T (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Intersection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LinePlaneIntersection(const struct FVector& LineStart, const struct FVector& LineEnd, const struct FPlane& APlane, float* T, struct FVector* Intersection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinePlaneIntersection"); + + Params::KismetMathLibrary_LinePlaneIntersection Parms{}; + + Parms.LineStart = std::move(LineStart); + Parms.LineEnd = std::move(LineEnd); + Parms.APlane = std::move(APlane); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (T != nullptr) + *T = Parms.T; + + if (Intersection != nullptr) + *Intersection = std::move(Parms.Intersection); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.LinePlaneIntersection_OriginNormal +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& LineStart (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& LineEnd (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PlaneOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PlaneNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* T (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Intersection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::LinePlaneIntersection_OriginNormal(const struct FVector& LineStart, const struct FVector& LineEnd, const struct FVector& PlaneOrigin, const struct FVector& PlaneNormal, float* T, struct FVector* Intersection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "LinePlaneIntersection_OriginNormal"); + + Params::KismetMathLibrary_LinePlaneIntersection_OriginNormal Parms{}; + + Parms.LineStart = std::move(LineStart); + Parms.LineEnd = std::move(LineEnd); + Parms.PlaneOrigin = std::move(PlaneOrigin); + Parms.PlaneNormal = std::move(PlaneNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (T != nullptr) + *T = Parms.T; + + if (Intersection != nullptr) + *Intersection = std::move(Parms.Intersection); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.log +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double base (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::log(double A, double base) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "log"); + + Params::KismetMathLibrary_log Parms{}; + + Parms.A = A; + Parms.base = base; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Loge +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Loge(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Loge"); + + Params::KismetMathLibrary_Loge Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeBox +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UKismetMathLibrary::MakeBox(const struct FVector& Param_min_0, const struct FVector& Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeBox"); + + Params::KismetMathLibrary_MakeBox Parms{}; + + Parms.Param_min_0 = std::move(Param_min_0); + Parms.Param_max_0 = std::move(Param_max_0); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeBox2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& Param_min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Param_max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBox2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox2D UKismetMathLibrary::MakeBox2D(const struct FVector2D& Param_min_0, const struct FVector2D& Param_max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeBox2D"); + + Params::KismetMathLibrary_MakeBox2D Parms{}; + + Parms.Param_min_0 = std::move(Param_min_0); + Parms.Param_max_0 = std::move(Param_max_0); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeBoxSphereBounds +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& BoxExtent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBoxSphereBounds ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBoxSphereBounds UKismetMathLibrary::MakeBoxSphereBounds(const struct FVector& Origin, const struct FVector& BoxExtent, float SphereRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeBoxSphereBounds"); + + Params::KismetMathLibrary_MakeBoxSphereBounds Parms{}; + + Parms.Origin = std::move(Origin); + Parms.BoxExtent = std::move(BoxExtent); + Parms.SphereRadius = SphereRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeBoxWithOrigin +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Origin (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Extent (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UKismetMathLibrary::MakeBoxWithOrigin(const struct FVector& Origin, const struct FVector& Extent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeBoxWithOrigin"); + + Params::KismetMathLibrary_MakeBoxWithOrigin Parms{}; + + Parms.Origin = std::move(Origin); + Parms.Extent = std::move(Extent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float R (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float G (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::MakeColor(float R, float G, float B, float A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeColor"); + + Params::KismetMathLibrary_MakeColor Parms{}; + + Parms.R = R; + Parms.G = G; + Parms.B = B; + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Year (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Month (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Day (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Hour (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Minute (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Second (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Millisecond (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::MakeDateTime(int32 Year, int32 Month, int32 Day, int32 Hour, int32 Minute, int32 Second, int32 Millisecond) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeDateTime"); + + Params::KismetMathLibrary_MakeDateTime Parms{}; + + Parms.Year = Year; + Parms.Month = Month; + Parms.Day = Day; + Parms.Hour = Hour; + Parms.Minute = Minute; + Parms.Second = Second; + Parms.Millisecond = Millisecond; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeFrameRate +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Numerator (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Denominator (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FFrameRate ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FFrameRate UKismetMathLibrary::MakeFrameRate(int32 Numerator, int32 Denominator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeFrameRate"); + + Params::KismetMathLibrary_MakeFrameRate Parms{}; + + Parms.Numerator = Numerator; + Parms.Denominator = Denominator; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakePlaneFromPointAndNormal +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Normal_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FPlane ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FPlane UKismetMathLibrary::MakePlaneFromPointAndNormal(const struct FVector& Point, const struct FVector& Normal_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakePlaneFromPointAndNormal"); + + Params::KismetMathLibrary_MakePlaneFromPointAndNormal Parms{}; + + Parms.Point = std::move(Point); + Parms.Normal_0 = std::move(Normal_0); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakePulsatingValue +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float InCurrentTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPulsesPerSecond (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InPhase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::MakePulsatingValue(float InCurrentTime, float InPulsesPerSecond, float InPhase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakePulsatingValue"); + + Params::KismetMathLibrary_MakePulsatingValue Parms{}; + + Parms.InCurrentTime = InCurrentTime; + Parms.InPulsesPerSecond = InPulsesPerSecond; + Parms.InPhase = InPhase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeQualifiedFrameTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FFrameNumber& Frame (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FFrameRate& FrameRate (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SubFrame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQualifiedFrameTime ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FQualifiedFrameTime UKismetMathLibrary::MakeQualifiedFrameTime(const struct FFrameNumber& Frame, const struct FFrameRate& FrameRate, float SubFrame) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeQualifiedFrameTime"); + + Params::KismetMathLibrary_MakeQualifiedFrameTime Parms{}; + + Parms.Frame = std::move(Frame); + Parms.FrameRate = std::move(FrameRate); + Parms.SubFrame = SubFrame; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeQuat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float W (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::MakeQuat(float X, float Y, float Z, float W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeQuat"); + + Params::KismetMathLibrary_MakeQuat Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + Parms.W = W; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRandomStream +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 InitialSeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRandomStream ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FRandomStream UKismetMathLibrary::MakeRandomStream(int32 InitialSeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRandomStream"); + + Params::KismetMathLibrary_MakeRandomStream Parms{}; + + Parms.InitialSeed = InitialSeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRelativeTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& RelativeTo (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::MakeRelativeTransform(const struct FTransform& A, const struct FTransform& RelativeTo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRelativeTransform"); + + Params::KismetMathLibrary_MakeRelativeTransform Parms{}; + + Parms.A = std::move(A); + Parms.RelativeTo = std::move(RelativeTo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotationFromAxes +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Forward (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Right (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Up (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotationFromAxes(const struct FVector& Forward, const struct FVector& Right, const struct FVector& Up) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotationFromAxes"); + + Params::KismetMathLibrary_MakeRotationFromAxes Parms{}; + + Parms.Forward = std::move(Forward); + Parms.Right = std::move(Right); + Parms.Up = std::move(Up); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// float Roll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float pitch (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Yaw (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotator(float Roll, float pitch, float Yaw) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotator"); + + Params::KismetMathLibrary_MakeRotator Parms{}; + + Parms.Roll = Roll; + Parms.pitch = pitch; + Parms.Yaw = Yaw; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromX +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& X (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromX(const struct FVector& X) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromX"); + + Params::KismetMathLibrary_MakeRotFromX Parms{}; + + Parms.X = std::move(X); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromXY +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& X (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Y (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromXY(const struct FVector& X, const struct FVector& Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromXY"); + + Params::KismetMathLibrary_MakeRotFromXY Parms{}; + + Parms.X = std::move(X); + Parms.Y = std::move(Y); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromXZ +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& X (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Z (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromXZ(const struct FVector& X, const struct FVector& Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromXZ"); + + Params::KismetMathLibrary_MakeRotFromXZ Parms{}; + + Parms.X = std::move(X); + Parms.Z = std::move(Z); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromY +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Y (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromY(const struct FVector& Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromY"); + + Params::KismetMathLibrary_MakeRotFromY Parms{}; + + Parms.Y = std::move(Y); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromYX +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Y (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& X (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromYX(const struct FVector& Y, const struct FVector& X) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromYX"); + + Params::KismetMathLibrary_MakeRotFromYX Parms{}; + + Parms.Y = std::move(Y); + Parms.X = std::move(X); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromYZ +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Y (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Z (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromYZ(const struct FVector& Y, const struct FVector& Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromYZ"); + + Params::KismetMathLibrary_MakeRotFromYZ Parms{}; + + Parms.Y = std::move(Y); + Parms.Z = std::move(Z); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromZ +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Z (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromZ(const struct FVector& Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromZ"); + + Params::KismetMathLibrary_MakeRotFromZ Parms{}; + + Parms.Z = std::move(Z); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromZX +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Z (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& X (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromZX(const struct FVector& Z, const struct FVector& X) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromZX"); + + Params::KismetMathLibrary_MakeRotFromZX Parms{}; + + Parms.Z = std::move(Z); + Parms.X = std::move(X); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeRotFromZY +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Z (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Y (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::MakeRotFromZY(const struct FVector& Z, const struct FVector& Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeRotFromZY"); + + Params::KismetMathLibrary_MakeRotFromZY Parms{}; + + Parms.Z = std::move(Z); + Parms.Y = std::move(Y); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Days (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Hours (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Minutes (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Milliseconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::MakeTimespan(int32 Days, int32 Hours, int32 Minutes, int32 Seconds, int32 Milliseconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeTimespan"); + + Params::KismetMathLibrary_MakeTimespan Parms{}; + + Parms.Days = Days; + Parms.Hours = Hours; + Parms.Minutes = Minutes; + Parms.Seconds = Seconds; + Parms.Milliseconds = Milliseconds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeTimespan2 +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Days (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Hours (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Minutes (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Seconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 FractionNano (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::MakeTimespan2(int32 Days, int32 Hours, int32 Minutes, int32 Seconds, int32 FractionNano) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeTimespan2"); + + Params::KismetMathLibrary_MakeTimespan2 Parms{}; + + Parms.Days = Days; + Parms.Hours = Hours; + Parms.Minutes = Minutes; + Parms.Seconds = Seconds; + Parms.FractionNano = FractionNano; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeTransform +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::MakeTransform(const struct FVector& Location, const struct FRotator& Rotation, const struct FVector& Scale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeTransform"); + + Params::KismetMathLibrary_MakeTransform Parms{}; + + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + Parms.Scale = std::move(Scale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::MakeVector(double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector"); + + Params::KismetMathLibrary_MakeVector Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::MakeVector2D(double X, double Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector2D"); + + Params::KismetMathLibrary_MakeVector2D Parms{}; + + Parms.X = X; + Parms.Y = Y; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector4 +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double W (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::MakeVector4(double X, double Y, double Z, double W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector4"); + + Params::KismetMathLibrary_MakeVector4 Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + Parms.W = W; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector_NetQuantize ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector_NetQuantize UKismetMathLibrary::MakeVector_NetQuantize(double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector_NetQuantize"); + + Params::KismetMathLibrary_MakeVector_NetQuantize Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize10 +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector_NetQuantize10 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector_NetQuantize10 UKismetMathLibrary::MakeVector_NetQuantize10(double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector_NetQuantize10"); + + Params::KismetMathLibrary_MakeVector_NetQuantize10 Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize100 +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector_NetQuantize100 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector_NetQuantize100 UKismetMathLibrary::MakeVector_NetQuantize100(double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector_NetQuantize100"); + + Params::KismetMathLibrary_MakeVector_NetQuantize100 Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantizeNormal +// (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector_NetQuantizeNormal ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector_NetQuantizeNormal UKismetMathLibrary::MakeVector_NetQuantizeNormal(double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MakeVector_NetQuantizeNormal"); + + Params::KismetMathLibrary_MakeVector_NetQuantizeNormal Parms{}; + + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MapRangeClamped +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InRangeA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InRangeB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double OutRangeA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double OutRangeB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::MapRangeClamped(double Value, double InRangeA, double InRangeB, double OutRangeA, double OutRangeB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MapRangeClamped"); + + Params::KismetMathLibrary_MapRangeClamped Parms{}; + + Parms.Value = Value; + Parms.InRangeA = InRangeA; + Parms.InRangeB = InRangeB; + Parms.OutRangeA = OutRangeA; + Parms.OutRangeB = OutRangeB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MapRangeUnclamped +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InRangeA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InRangeB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double OutRangeA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double OutRangeB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::MapRangeUnclamped(double Value, double InRangeA, double InRangeB, double OutRangeA, double OutRangeB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MapRangeUnclamped"); + + Params::KismetMathLibrary_MapRangeUnclamped Parms{}; + + Parms.Value = Value; + Parms.InRangeA = InRangeA; + Parms.InRangeB = InRangeB; + Parms.OutRangeA = OutRangeA; + Parms.OutRangeB = OutRangeB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_ApplyScale +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_ApplyScale(const struct FMatrix& M, float Scale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_ApplyScale"); + + Params::KismetMathLibrary_Matrix_ApplyScale Parms{}; + + Parms.M = std::move(M); + Parms.Scale = Scale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_ConcatenateTranslation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Translation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_ConcatenateTranslation(const struct FMatrix& M, const struct FVector& Translation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_ConcatenateTranslation"); + + Params::KismetMathLibrary_Matrix_ConcatenateTranslation Parms{}; + + Parms.M = std::move(M); + Parms.Translation = std::move(Translation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_ContainsNaN +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_ContainsNaN(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_ContainsNaN"); + + Params::KismetMathLibrary_Matrix_ContainsNaN Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetColumn +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EMatrixColumns Column (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_GetColumn(const struct FMatrix& M, EMatrixColumns Column) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetColumn"); + + Params::KismetMathLibrary_Matrix_GetColumn Parms{}; + + Parms.M = std::move(M); + Parms.Column = Column; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetDeterminant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Matrix_GetDeterminant(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetDeterminant"); + + Params::KismetMathLibrary_Matrix_GetDeterminant Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumBottomPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumBottomPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumBottomPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumBottomPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumFarPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumFarPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumFarPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumFarPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumLeftPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumLeftPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumLeftPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumLeftPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumNearPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumNearPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumNearPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumNearPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumRightPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumRightPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumRightPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumRightPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumTopPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FPlane* OutPlane (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Matrix_GetFrustumTopPlane(const struct FMatrix& M, struct FPlane* OutPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetFrustumTopPlane"); + + Params::KismetMathLibrary_Matrix_GetFrustumTopPlane Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPlane != nullptr) + *OutPlane = std::move(Parms.OutPlane); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetInverse +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_GetInverse(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetInverse"); + + Params::KismetMathLibrary_Matrix_GetInverse Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetMatrixWithoutScale +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_GetMatrixWithoutScale(const struct FMatrix& M, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetMatrixWithoutScale"); + + Params::KismetMathLibrary_Matrix_GetMatrixWithoutScale Parms{}; + + Parms.M = std::move(M); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetMaximumAxisScale +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Matrix_GetMaximumAxisScale(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetMaximumAxisScale"); + + Params::KismetMathLibrary_Matrix_GetMaximumAxisScale Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetOrigin +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& InMatrix (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_GetOrigin(const struct FMatrix& InMatrix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetOrigin"); + + Params::KismetMathLibrary_Matrix_GetOrigin Parms{}; + + Parms.InMatrix = std::move(InMatrix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetRotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Matrix_GetRotator(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetRotator"); + + Params::KismetMathLibrary_Matrix_GetRotator Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetRotDeterminant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Matrix_GetRotDeterminant(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetRotDeterminant"); + + Params::KismetMathLibrary_Matrix_GetRotDeterminant Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetScaledAxes +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_GetScaledAxes(const struct FMatrix& M, struct FVector* X, struct FVector* Y, struct FVector* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetScaledAxes"); + + Params::KismetMathLibrary_Matrix_GetScaledAxes Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = std::move(Parms.X); + + if (Y != nullptr) + *Y = std::move(Parms.Y); + + if (Z != nullptr) + *Z = std::move(Parms.Z); +} + + +// Function Engine.KismetMathLibrary.Matrix_GetScaledAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EAxis Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_GetScaledAxis(const struct FMatrix& M, EAxis Axis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetScaledAxis"); + + Params::KismetMathLibrary_Matrix_GetScaledAxis Parms{}; + + Parms.M = std::move(M); + Parms.Axis = Axis; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetScaleVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_GetScaleVector(const struct FMatrix& M, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetScaleVector"); + + Params::KismetMathLibrary_Matrix_GetScaleVector Parms{}; + + Parms.M = std::move(M); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetTransposeAdjoint +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_GetTransposeAdjoint(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetTransposeAdjoint"); + + Params::KismetMathLibrary_Matrix_GetTransposeAdjoint Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetTransposed +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_GetTransposed(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetTransposed"); + + Params::KismetMathLibrary_Matrix_GetTransposed Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_GetUnitAxes +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector* X (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Y (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* Z (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_GetUnitAxes(const struct FMatrix& M, struct FVector* X, struct FVector* Y, struct FVector* Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetUnitAxes"); + + Params::KismetMathLibrary_Matrix_GetUnitAxes Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (X != nullptr) + *X = std::move(Parms.X); + + if (Y != nullptr) + *Y = std::move(Parms.Y); + + if (Z != nullptr) + *Z = std::move(Parms.Z); +} + + +// Function Engine.KismetMathLibrary.Matrix_GetUnitAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EAxis Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_GetUnitAxis(const struct FMatrix& M, EAxis Axis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_GetUnitAxis"); + + Params::KismetMathLibrary_Matrix_GetUnitAxis Parms{}; + + Parms.M = std::move(M); + Parms.Axis = Axis; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_Identity +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_Identity() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_Identity"); + + Params::KismetMathLibrary_Matrix_Identity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_InverseTransformPosition +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_InverseTransformPosition(const struct FMatrix& M, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_InverseTransformPosition"); + + Params::KismetMathLibrary_Matrix_InverseTransformPosition Parms{}; + + Parms.M = std::move(M); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_InverseTransformVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Matrix_InverseTransformVector(const struct FMatrix& M, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_InverseTransformVector"); + + Params::KismetMathLibrary_Matrix_InverseTransformVector Parms{}; + + Parms.M = std::move(M); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_Mirror +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EAxis MirrorAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAxis FlipAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_Mirror(const struct FMatrix& M, EAxis MirrorAxis, EAxis FlipAxis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_Mirror"); + + Params::KismetMathLibrary_Matrix_Mirror Parms{}; + + Parms.M = std::move(M); + Parms.MirrorAxis = MirrorAxis; + Parms.FlipAxis = FlipAxis; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_RemoveScaling +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FMatrix& M (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_RemoveScaling(struct FMatrix& M, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_RemoveScaling"); + + Params::KismetMathLibrary_Matrix_RemoveScaling Parms{}; + + Parms.M = std::move(M); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + M = std::move(Parms.M); +} + + +// Function Engine.KismetMathLibrary.Matrix_RemoveTranslation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_RemoveTranslation(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_RemoveTranslation"); + + Params::KismetMathLibrary_Matrix_RemoveTranslation Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_ScaleTranslation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Scale3D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Matrix_ScaleTranslation(const struct FMatrix& M, const struct FVector& Scale3D) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_ScaleTranslation"); + + Params::KismetMathLibrary_Matrix_ScaleTranslation Parms{}; + + Parms.M = std::move(M); + Parms.Scale3D = std::move(Scale3D); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_SetAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FMatrix& M (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EAxis Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& AxisVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_SetAxis(struct FMatrix& M, EAxis Axis, const struct FVector& AxisVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_SetAxis"); + + Params::KismetMathLibrary_Matrix_SetAxis Parms{}; + + Parms.M = std::move(M); + Parms.Axis = Axis; + Parms.AxisVector = std::move(AxisVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + M = std::move(Parms.M); +} + + +// Function Engine.KismetMathLibrary.Matrix_SetColumn +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FMatrix& M (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// EMatrixColumns Column (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_SetColumn(struct FMatrix& M, EMatrixColumns Column, const struct FVector& Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_SetColumn"); + + Params::KismetMathLibrary_Matrix_SetColumn Parms{}; + + Parms.M = std::move(M); + Parms.Column = Column; + Parms.Value = std::move(Value); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + M = std::move(Parms.M); +} + + +// Function Engine.KismetMathLibrary.Matrix_SetOrigin +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FMatrix& M (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& NewOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Matrix_SetOrigin(struct FMatrix& M, const struct FVector& NewOrigin) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_SetOrigin"); + + Params::KismetMathLibrary_Matrix_SetOrigin Parms{}; + + Parms.M = std::move(M); + Parms.NewOrigin = std::move(NewOrigin); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + M = std::move(Parms.M); +} + + +// Function Engine.KismetMathLibrary.Matrix_ToQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Matrix_ToQuat(const struct FMatrix& M) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_ToQuat"); + + Params::KismetMathLibrary_Matrix_ToQuat Parms{}; + + Parms.M = std::move(M); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_TransformPosition +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Matrix_TransformPosition(const struct FMatrix& M, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_TransformPosition"); + + Params::KismetMathLibrary_Matrix_TransformPosition Parms{}; + + Parms.M = std::move(M); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_TransformVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Matrix_TransformVector(const struct FMatrix& M, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_TransformVector"); + + Params::KismetMathLibrary_Matrix_TransformVector Parms{}; + + Parms.M = std::move(M); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Matrix_TransformVector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& M (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector4& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Matrix_TransformVector4(const struct FMatrix& M, const struct FVector4& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Matrix_TransformVector4"); + + Params::KismetMathLibrary_Matrix_TransformVector4 Parms{}; + + Parms.M = std::move(M); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.max +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::max_0(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "max"); + + Params::KismetMathLibrary_max_0 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MaxInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::MaxInt64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MaxInt64"); + + Params::KismetMathLibrary_MaxInt64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MaxOfByteArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& ByteArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* MaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MaxOfByteArray(const TArray& ByteArray, int32* IndexOfMaxValue, uint8* MaxValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MaxOfByteArray"); + + Params::KismetMathLibrary_MaxOfByteArray Parms{}; + + Parms.ByteArray = std::move(ByteArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMaxValue != nullptr) + *IndexOfMaxValue = Parms.IndexOfMaxValue; + + if (MaxValue != nullptr) + *MaxValue = Parms.MaxValue; +} + + +// Function Engine.KismetMathLibrary.MaxOfFloatArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& FloatArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MaxOfFloatArray(const TArray& FloatArray, int32* IndexOfMaxValue, float* MaxValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MaxOfFloatArray"); + + Params::KismetMathLibrary_MaxOfFloatArray Parms{}; + + Parms.FloatArray = std::move(FloatArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMaxValue != nullptr) + *IndexOfMaxValue = Parms.IndexOfMaxValue; + + if (MaxValue != nullptr) + *MaxValue = Parms.MaxValue; +} + + +// Function Engine.KismetMathLibrary.MaxOfIntArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& IntArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* MaxValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MaxOfIntArray(const TArray& IntArray, int32* IndexOfMaxValue, int32* MaxValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MaxOfIntArray"); + + Params::KismetMathLibrary_MaxOfIntArray Parms{}; + + Parms.IntArray = std::move(IntArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMaxValue != nullptr) + *IndexOfMaxValue = Parms.IndexOfMaxValue; + + if (MaxValue != nullptr) + *MaxValue = Parms.MaxValue; +} + + +// Function Engine.KismetMathLibrary.MedianOfIntArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& IntArray (Parm, ZeroConstructor, NativeAccessSpecifierPublic) +// float* MedianValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MedianOfIntArray(const TArray& IntArray, float* MedianValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MedianOfIntArray"); + + Params::KismetMathLibrary_MedianOfIntArray Parms{}; + + Parms.IntArray = std::move(IntArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (MedianValue != nullptr) + *MedianValue = Parms.MedianValue; +} + + +// Function Engine.KismetMathLibrary.min +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::min_0(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "min"); + + Params::KismetMathLibrary_min_0 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MinAreaRectangle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& InPoints (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector& SampleSurfaceNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutRectCenter (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutRectRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float* OutRectLengthX (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* OutRectLengthY (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDebugDraw (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MinAreaRectangle(class UObject* WorldContextObject, const TArray& InPoints, const struct FVector& SampleSurfaceNormal, struct FVector* OutRectCenter, struct FRotator* OutRectRotation, float* OutRectLengthX, float* OutRectLengthY, bool bDebugDraw) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MinAreaRectangle"); + + Params::KismetMathLibrary_MinAreaRectangle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InPoints = std::move(InPoints); + Parms.SampleSurfaceNormal = std::move(SampleSurfaceNormal); + Parms.bDebugDraw = bDebugDraw; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutRectCenter != nullptr) + *OutRectCenter = std::move(Parms.OutRectCenter); + + if (OutRectRotation != nullptr) + *OutRectRotation = std::move(Parms.OutRectRotation); + + if (OutRectLengthX != nullptr) + *OutRectLengthX = Parms.OutRectLengthX; + + if (OutRectLengthY != nullptr) + *OutRectLengthY = Parms.OutRectLengthY; +} + + +// Function Engine.KismetMathLibrary.MinInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::MinInt64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MinInt64"); + + Params::KismetMathLibrary_MinInt64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MinOfByteArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& ByteArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* MinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MinOfByteArray(const TArray& ByteArray, int32* IndexOfMinValue, uint8* MinValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MinOfByteArray"); + + Params::KismetMathLibrary_MinOfByteArray Parms{}; + + Parms.ByteArray = std::move(ByteArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMinValue != nullptr) + *IndexOfMinValue = Parms.IndexOfMinValue; + + if (MinValue != nullptr) + *MinValue = Parms.MinValue; +} + + +// Function Engine.KismetMathLibrary.MinOfFloatArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& FloatArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* MinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MinOfFloatArray(const TArray& FloatArray, int32* IndexOfMinValue, float* MinValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MinOfFloatArray"); + + Params::KismetMathLibrary_MinOfFloatArray Parms{}; + + Parms.FloatArray = std::move(FloatArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMinValue != nullptr) + *IndexOfMinValue = Parms.IndexOfMinValue; + + if (MinValue != nullptr) + *MinValue = Parms.MinValue; +} + + +// Function Engine.KismetMathLibrary.MinOfIntArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& IntArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// int32* IndexOfMinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* MinValue (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::MinOfIntArray(const TArray& IntArray, int32* IndexOfMinValue, int32* MinValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MinOfIntArray"); + + Params::KismetMathLibrary_MinOfIntArray Parms{}; + + Parms.IntArray = std::move(IntArray); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (IndexOfMinValue != nullptr) + *IndexOfMinValue = Parms.IndexOfMinValue; + + if (MinValue != nullptr) + *MinValue = Parms.MinValue; +} + + +// Function Engine.KismetMathLibrary.MirrorVectorByNormal +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::MirrorVectorByNormal(const struct FVector& InVect, const struct FVector& InNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MirrorVectorByNormal"); + + Params::KismetMathLibrary_MirrorVectorByNormal Parms{}; + + Parms.InVect = std::move(InVect); + Parms.InNormal = std::move(InNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Multiply_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_ByteByte"); + + Params::KismetMathLibrary_Multiply_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Multiply_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_DoubleDouble"); + + Params::KismetMathLibrary_Multiply_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Multiply_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_Int64Int64"); + + Params::KismetMathLibrary_Multiply_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_IntFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Multiply_IntFloat(int32 A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_IntFloat"); + + Params::KismetMathLibrary_Multiply_IntFloat Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Multiply_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_IntInt"); + + Params::KismetMathLibrary_Multiply_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_IntPointInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Multiply_IntPointInt(const struct FIntPoint& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_IntPointInt"); + + Params::KismetMathLibrary_Multiply_IntPointInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Multiply_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_IntPointIntPoint"); + + Params::KismetMathLibrary_Multiply_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_LinearColorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Multiply_LinearColorFloat(const struct FLinearColor& A, float B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_LinearColorFloat"); + + Params::KismetMathLibrary_Multiply_LinearColorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Multiply_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_LinearColorLinearColor"); + + Params::KismetMathLibrary_Multiply_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_MatrixFloat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Multiply_MatrixFloat(const struct FMatrix& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_MatrixFloat"); + + Params::KismetMathLibrary_Multiply_MatrixFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_MatrixMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMatrix& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetMathLibrary::Multiply_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_MatrixMatrix"); + + Params::KismetMathLibrary_Multiply_MatrixMatrix Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_QuatQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Multiply_QuatQuat(const struct FQuat& A, const struct FQuat& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_QuatQuat"); + + Params::KismetMathLibrary_Multiply_QuatQuat Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_RotatorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Multiply_RotatorFloat(const struct FRotator& A, float B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_RotatorFloat"); + + Params::KismetMathLibrary_Multiply_RotatorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_RotatorInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Multiply_RotatorInt(const struct FRotator& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_RotatorInt"); + + Params::KismetMathLibrary_Multiply_RotatorInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_TimespanFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scalar (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::Multiply_TimespanFloat(const struct FTimespan& A, float Scalar) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_TimespanFloat"); + + Params::KismetMathLibrary_Multiply_TimespanFloat Parms{}; + + Parms.A = std::move(A); + Parms.Scalar = Scalar; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_Vector2DFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Multiply_Vector2DFloat(const struct FVector2D& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_Vector2DFloat"); + + Params::KismetMathLibrary_Multiply_Vector2DFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Multiply_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_Vector2DVector2D"); + + Params::KismetMathLibrary_Multiply_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Multiply_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_Vector4Vector4"); + + Params::KismetMathLibrary_Multiply_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_VectorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Multiply_VectorFloat(const struct FVector& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_VectorFloat"); + + Params::KismetMathLibrary_Multiply_VectorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_VectorInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Multiply_VectorInt(const struct FVector& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_VectorInt"); + + Params::KismetMathLibrary_Multiply_VectorInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Multiply_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Multiply_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Multiply_VectorVector"); + + Params::KismetMathLibrary_Multiply_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MultiplyByPi +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::MultiplyByPi(double Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MultiplyByPi"); + + Params::KismetMathLibrary_MultiplyByPi Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.MultiplyMultiply_FloatFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double base (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double exp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::MultiplyMultiply_FloatFloat(double base, double exp) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "MultiplyMultiply_FloatFloat"); + + Params::KismetMathLibrary_MultiplyMultiply_FloatFloat Parms{}; + + Parms.base = base; + Parms.exp = exp; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NearlyEqual_FloatFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NearlyEqual_FloatFloat(double A, double B, double ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NearlyEqual_FloatFloat"); + + Params::KismetMathLibrary_NearlyEqual_FloatFloat Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NearlyEqual_TransformTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LocationTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float RotationTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Scale3DTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NearlyEqual_TransformTransform(const struct FTransform& A, const struct FTransform& B, float LocationTolerance, float RotationTolerance, float Scale3DTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NearlyEqual_TransformTransform"); + + Params::KismetMathLibrary_NearlyEqual_TransformTransform Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.LocationTolerance = LocationTolerance; + Parms.RotationTolerance = RotationTolerance; + Parms.Scale3DTolerance = Scale3DTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Negated2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Negated2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Negated2D"); + + Params::KismetMathLibrary_Negated2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NegateRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::NegateRotator(const struct FRotator& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NegateRotator"); + + Params::KismetMathLibrary_NegateRotator Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NegateVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::NegateVector(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NegateVector"); + + Params::KismetMathLibrary_NegateVector Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Normal +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Normal(const struct FVector& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Normal"); + + Params::KismetMathLibrary_Normal Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Normal2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Normal2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Normal2D"); + + Params::KismetMathLibrary_Normal2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Normalize2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector2D& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Normalize2D(struct FVector2D& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Normalize2D"); + + Params::KismetMathLibrary_Normalize2D Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.NormalizeAxis +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float Angle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::NormalizeAxis(float Angle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NormalizeAxis"); + + Params::KismetMathLibrary_NormalizeAxis Parms{}; + + Parms.Angle = Angle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NormalizedDeltaRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::NormalizedDeltaRotator(const struct FRotator& A, const struct FRotator& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NormalizedDeltaRotator"); + + Params::KismetMathLibrary_NormalizedDeltaRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NormalizeToRange +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double RangeMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double RangeMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::NormalizeToRange(double Value, double RangeMin, double RangeMax) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NormalizeToRange"); + + Params::KismetMathLibrary_NormalizeToRange Parms{}; + + Parms.Value = Value; + Parms.RangeMin = RangeMin; + Parms.RangeMax = RangeMax; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NormalSafe2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::NormalSafe2D(const struct FVector2D& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NormalSafe2D"); + + Params::KismetMathLibrary_NormalSafe2D Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Not_Int +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Not_Int(int32 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Not_Int"); + + Params::KismetMathLibrary_Not_Int Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Not_Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Not_Int64(int64 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Not_Int64"); + + Params::KismetMathLibrary_Not_Int64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Not_PreBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Not_PreBool(bool A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Not_PreBool"); + + Params::KismetMathLibrary_Not_PreBool Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_BoolBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_BoolBool(bool A, bool B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_BoolBool"); + + Params::KismetMathLibrary_NotEqual_BoolBool Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_ByteByte"); + + Params::KismetMathLibrary_NotEqual_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_ClassClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UClass* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_ClassClass(class UClass* A, class UClass* B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_ClassClass"); + + Params::KismetMathLibrary_NotEqual_ClassClass Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_DateTimeDateTime"); + + Params::KismetMathLibrary_NotEqual_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_DoubleDouble"); + + Params::KismetMathLibrary_NotEqual_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_Int64Int64"); + + Params::KismetMathLibrary_NotEqual_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_IntInt"); + + Params::KismetMathLibrary_NotEqual_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_IntPointIntPoint"); + + Params::KismetMathLibrary_NotEqual_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_LinearColorLinearColor"); + + Params::KismetMathLibrary_NotEqual_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_MatrixMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FMatrix& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_MatrixMatrix(const struct FMatrix& A, const struct FMatrix& B, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_MatrixMatrix"); + + Params::KismetMathLibrary_NotEqual_MatrixMatrix Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_NameName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_NameName(class FName A, class FName B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_NameName"); + + Params::KismetMathLibrary_NotEqual_NameName Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_ObjectObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_ObjectObject(class UObject* A, class UObject* B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_ObjectObject"); + + Params::KismetMathLibrary_NotEqual_ObjectObject Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_QuatQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_QuatQuat(const struct FQuat& A, const struct FQuat& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_QuatQuat"); + + Params::KismetMathLibrary_NotEqual_QuatQuat Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_RotatorRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_RotatorRotator(const struct FRotator& A, const struct FRotator& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_RotatorRotator"); + + Params::KismetMathLibrary_NotEqual_RotatorRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_TimespanTimespan"); + + Params::KismetMathLibrary_NotEqual_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_Vector2DVector2D"); + + Params::KismetMathLibrary_NotEqual_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_Vector4Vector4(const struct FVector4& A, const struct FVector4& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_Vector4Vector4"); + + Params::KismetMathLibrary_NotEqual_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqual_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ErrorTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqual_VectorVector(const struct FVector& A, const struct FVector& B, float ErrorTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqual_VectorVector"); + + Params::KismetMathLibrary_NotEqual_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.ErrorTolerance = ErrorTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqualExactly_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqualExactly_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqualExactly_Vector2DVector2D"); + + Params::KismetMathLibrary_NotEqualExactly_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqualExactly_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqualExactly_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqualExactly_Vector4Vector4"); + + Params::KismetMathLibrary_NotEqualExactly_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.NotEqualExactly_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::NotEqualExactly_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "NotEqualExactly_VectorVector"); + + Params::KismetMathLibrary_NotEqualExactly_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Now +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::Now() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Now"); + + Params::KismetMathLibrary_Now Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Or_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Or_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Or_Int64Int64"); + + Params::KismetMathLibrary_Or_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Or_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Or_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Or_IntInt"); + + Params::KismetMathLibrary_Or_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Percent_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Percent_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Percent_ByteByte"); + + Params::KismetMathLibrary_Percent_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Percent_FloatFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Percent_FloatFloat(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Percent_FloatFloat"); + + Params::KismetMathLibrary_Percent_FloatFloat Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Percent_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Percent_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Percent_Int64Int64"); + + Params::KismetMathLibrary_Percent_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Percent_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Percent_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Percent_IntInt"); + + Params::KismetMathLibrary_Percent_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.PerlinNoise1D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const float Value (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::PerlinNoise1D(const float Value) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "PerlinNoise1D"); + + Params::KismetMathLibrary_PerlinNoise1D Parms{}; + + Parms.Value = Value; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.PointsAreCoplanar +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& Points (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::PointsAreCoplanar(const TArray& Points, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "PointsAreCoplanar"); + + Params::KismetMathLibrary_PointsAreCoplanar Parms{}; + + Parms.Points = std::move(Points); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ProjectPointOnToPlane +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Point (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PlaneBase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PlaneNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::ProjectPointOnToPlane(const struct FVector& Point, const struct FVector& PlaneBase, const struct FVector& PlaneNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ProjectPointOnToPlane"); + + Params::KismetMathLibrary_ProjectPointOnToPlane Parms{}; + + Parms.Point = std::move(Point); + Parms.PlaneBase = std::move(PlaneBase); + Parms.PlaneNormal = std::move(PlaneNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ProjectVectorOnToPlane +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PlaneNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::ProjectVectorOnToPlane(const struct FVector& V, const struct FVector& PlaneNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ProjectVectorOnToPlane"); + + Params::KismetMathLibrary_ProjectVectorOnToPlane Parms{}; + + Parms.V = std::move(V); + Parms.PlaneNormal = std::move(PlaneNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ProjectVectorOnToVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::ProjectVectorOnToVector(const struct FVector& V, const struct FVector& Target) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ProjectVectorOnToVector"); + + Params::KismetMathLibrary_ProjectVectorOnToVector Parms{}; + + Parms.V = std::move(V); + Parms.Target = std::move(Target); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_AngularDistance +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Quat_AngularDistance(const struct FQuat& A, const struct FQuat& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_AngularDistance"); + + Params::KismetMathLibrary_Quat_AngularDistance Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_EnforceShortestArcWith +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FQuat& A (Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Quat_EnforceShortestArcWith(struct FQuat& A, const struct FQuat& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_EnforceShortestArcWith"); + + Params::KismetMathLibrary_Quat_EnforceShortestArcWith Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Quat_Euler +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_Euler(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Euler"); + + Params::KismetMathLibrary_Quat_Euler Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Exp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Exp(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Exp"); + + Params::KismetMathLibrary_Quat_Exp Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_FindBetweenNormals +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& StartNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& EndNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_FindBetweenNormals(const struct FVector& StartNormal, const struct FVector& EndNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_FindBetweenNormals"); + + Params::KismetMathLibrary_Quat_FindBetweenNormals Parms{}; + + Parms.StartNormal = std::move(StartNormal); + Parms.EndNormal = std::move(EndNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_FindBetweenVectors +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_FindBetweenVectors(const struct FVector& Start, const struct FVector& End) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_FindBetweenVectors"); + + Params::KismetMathLibrary_Quat_FindBetweenVectors Parms{}; + + Parms.Start = std::move(Start); + Parms.End = std::move(End); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_GetAngle +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Quat_GetAngle(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_GetAngle"); + + Params::KismetMathLibrary_Quat_GetAngle Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_GetAxisX +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_GetAxisX(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_GetAxisX"); + + Params::KismetMathLibrary_Quat_GetAxisX Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_GetAxisY +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_GetAxisY(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_GetAxisY"); + + Params::KismetMathLibrary_Quat_GetAxisY Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_GetAxisZ +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_GetAxisZ(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_GetAxisZ"); + + Params::KismetMathLibrary_Quat_GetAxisZ Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_GetRotationAxis +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_GetRotationAxis(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_GetRotationAxis"); + + Params::KismetMathLibrary_Quat_GetRotationAxis Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Identity +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Identity() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Identity"); + + Params::KismetMathLibrary_Quat_Identity Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Inversed +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Inversed(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Inversed"); + + Params::KismetMathLibrary_Quat_Inversed Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_IsFinite +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Quat_IsFinite(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_IsFinite"); + + Params::KismetMathLibrary_Quat_IsFinite Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_IsIdentity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Quat_IsIdentity(const struct FQuat& Q, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_IsIdentity"); + + Params::KismetMathLibrary_Quat_IsIdentity Parms{}; + + Parms.Q = std::move(Q); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_IsNonFinite +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Quat_IsNonFinite(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_IsNonFinite"); + + Params::KismetMathLibrary_Quat_IsNonFinite Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_IsNormalized +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Quat_IsNormalized(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_IsNormalized"); + + Params::KismetMathLibrary_Quat_IsNormalized Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Log +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Log(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Log"); + + Params::KismetMathLibrary_Quat_Log Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_MakeFromEuler +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Euler (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_MakeFromEuler(const struct FVector& Euler) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_MakeFromEuler"); + + Params::KismetMathLibrary_Quat_MakeFromEuler Parms{}; + + Parms.Euler = std::move(Euler); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Normalize +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FQuat& Q (Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Quat_Normalize(struct FQuat& Q, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Normalize"); + + Params::KismetMathLibrary_Quat_Normalize Parms{}; + + Parms.Q = std::move(Q); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Q = std::move(Parms.Q); +} + + +// Function Engine.KismetMathLibrary.Quat_Normalized +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Normalized(const struct FQuat& Q, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Normalized"); + + Params::KismetMathLibrary_Quat_Normalized Parms{}; + + Parms.Q = std::move(Q); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_RotateVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& V (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_RotateVector(const struct FQuat& Q, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_RotateVector"); + + Params::KismetMathLibrary_Quat_RotateVector Parms{}; + + Parms.Q = std::move(Q); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Rotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::Quat_Rotator(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Rotator"); + + Params::KismetMathLibrary_Quat_Rotator Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_SetComponents +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FQuat& Q (Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float W (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Quat_SetComponents(struct FQuat& Q, float X, float Y, float Z, float W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_SetComponents"); + + Params::KismetMathLibrary_Quat_SetComponents Parms{}; + + Parms.Q = std::move(Q); + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + Parms.W = W; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Q = std::move(Parms.Q); +} + + +// Function Engine.KismetMathLibrary.Quat_SetFromEuler +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FQuat& Q (Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Euler (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Quat_SetFromEuler(struct FQuat& Q, const struct FVector& Euler) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_SetFromEuler"); + + Params::KismetMathLibrary_Quat_SetFromEuler Parms{}; + + Parms.Q = std::move(Q); + Parms.Euler = std::move(Euler); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Q = std::move(Parms.Q); +} + + +// Function Engine.KismetMathLibrary.Quat_Size +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Quat_Size(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Size"); + + Params::KismetMathLibrary_Quat_Size Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_SizeSquared +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Quat_SizeSquared(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_SizeSquared"); + + Params::KismetMathLibrary_Quat_SizeSquared Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_Slerp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Quat_Slerp(const struct FQuat& A, const struct FQuat& B, double Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_Slerp"); + + Params::KismetMathLibrary_Quat_Slerp Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_UnrotateVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& V (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_UnrotateVector(const struct FQuat& Q, const struct FVector& V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_UnrotateVector"); + + Params::KismetMathLibrary_Quat_UnrotateVector Parms{}; + + Parms.Q = std::move(Q); + Parms.V = std::move(V); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_VectorForward +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_VectorForward(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_VectorForward"); + + Params::KismetMathLibrary_Quat_VectorForward Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_VectorRight +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_VectorRight(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_VectorRight"); + + Params::KismetMathLibrary_Quat_VectorRight Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Quat_VectorUp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& Q (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Quat_VectorUp(const struct FQuat& Q) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Quat_VectorUp"); + + Params::KismetMathLibrary_Quat_VectorUp Parms{}; + + Parms.Q = std::move(Q); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.QuaternionSpringInterp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FQuat& Current (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& Target (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuaternionSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float Stiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CriticalDampingFactor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Mass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TargetVelocityAmount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInitializeFromTarget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::QuaternionSpringInterp(const struct FQuat& Current, const struct FQuat& Target, struct FQuaternionSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bInitializeFromTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "QuaternionSpringInterp"); + + Params::KismetMathLibrary_QuaternionSpringInterp Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.SpringState = std::move(SpringState); + Parms.Stiffness = Stiffness; + Parms.CriticalDampingFactor = CriticalDampingFactor; + Parms.DeltaTime = DeltaTime; + Parms.Mass = Mass; + Parms.TargetVelocityAmount = TargetVelocityAmount; + Parms.bInitializeFromTarget = bInitializeFromTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RadiansToDegrees +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::RadiansToDegrees(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RadiansToDegrees"); + + Params::KismetMathLibrary_RadiansToDegrees Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomBool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::RandomBool() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomBool"); + + Params::KismetMathLibrary_RandomBool Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomBoolFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::RandomBoolFromStream(const struct FRandomStream& Stream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomBoolFromStream"); + + Params::KismetMathLibrary_RandomBoolFromStream Parms{}; + + Parms.Stream = std::move(Stream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomBoolWithWeight +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float Weight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::RandomBoolWithWeight(float Weight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomBoolWithWeight"); + + Params::KismetMathLibrary_RandomBoolWithWeight Parms{}; + + Parms.Weight = Weight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomBoolWithWeightFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& RandomStream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float Weight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::RandomBoolWithWeightFromStream(const struct FRandomStream& RandomStream, float Weight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomBoolWithWeightFromStream"); + + Params::KismetMathLibrary_RandomBoolWithWeightFromStream Parms{}; + + Parms.RandomStream = std::move(RandomStream); + Parms.Weight = Weight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::RandomFloat() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomFloat"); + + Params::KismetMathLibrary_RandomFloat Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomFloatFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::RandomFloatFromStream(const struct FRandomStream& Stream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomFloatFromStream"); + + Params::KismetMathLibrary_RandomFloatFromStream Parms{}; + + Parms.Stream = std::move(Stream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomFloatInRange +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::RandomFloatInRange(double min_0, double max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomFloatInRange"); + + Params::KismetMathLibrary_RandomFloatInRange Parms{}; + + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomFloatInRangeFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::RandomFloatInRangeFromStream(const struct FRandomStream& Stream, float min_0, float max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomFloatInRangeFromStream"); + + Params::KismetMathLibrary_RandomFloatInRangeFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomInteger +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::RandomInteger(int32 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomInteger"); + + Params::KismetMathLibrary_RandomInteger Parms{}; + + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomInteger64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::RandomInteger64(int64 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomInteger64"); + + Params::KismetMathLibrary_RandomInteger64 Parms{}; + + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomInteger64InRange +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::RandomInteger64InRange(int64 min_0, int64 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomInteger64InRange"); + + Params::KismetMathLibrary_RandomInteger64InRange Parms{}; + + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomIntegerFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// int32 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::RandomIntegerFromStream(const struct FRandomStream& Stream, int32 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomIntegerFromStream"); + + Params::KismetMathLibrary_RandomIntegerFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomIntegerInRange +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::RandomIntegerInRange(int32 min_0, int32 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomIntegerInRange"); + + Params::KismetMathLibrary_RandomIntegerInRange Parms{}; + + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomIntegerInRangeFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// int32 min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::RandomIntegerInRangeFromStream(const struct FRandomStream& Stream, int32 min_0, int32 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomIntegerInRangeFromStream"); + + Params::KismetMathLibrary_RandomIntegerInRangeFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBox +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Center (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomPointInBoundingBox(const struct FVector& Center, const struct FVector& HalfSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomPointInBoundingBox"); + + Params::KismetMathLibrary_RandomPointInBoundingBox Parms{}; + + Parms.Center = std::move(Center); + Parms.HalfSize = std::move(HalfSize); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBox_Box +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomPointInBoundingBox_Box(const struct FBox& Box) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomPointInBoundingBox_Box"); + + Params::KismetMathLibrary_RandomPointInBoundingBox_Box Parms{}; + + Parms.Box = std::move(Box); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBoxFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Center (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& HalfSize (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomPointInBoundingBoxFromStream(const struct FRandomStream& Stream, const struct FVector& Center, const struct FVector& HalfSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomPointInBoundingBoxFromStream"); + + Params::KismetMathLibrary_RandomPointInBoundingBoxFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.Center = std::move(Center); + Parms.HalfSize = std::move(HalfSize); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBoxFromStream_Box +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FBox& Box (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomPointInBoundingBoxFromStream_Box(const struct FRandomStream& Stream, const struct FBox& Box) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomPointInBoundingBoxFromStream_Box"); + + Params::KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box Parms{}; + + Parms.Stream = std::move(Stream); + Parms.Box = std::move(Box); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// bool bRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RandomRotator(bool bRoll) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomRotator"); + + Params::KismetMathLibrary_RandomRotator Parms{}; + + Parms.bRoll = bRoll; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomRotatorFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// bool bRoll (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RandomRotatorFromStream(const struct FRandomStream& Stream, bool bRoll) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomRotatorFromStream"); + + Params::KismetMathLibrary_RandomRotatorFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.bRoll = bRoll; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVector() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVector"); + + Params::KismetMathLibrary_RandomUnitVector Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorFromStream(const struct FRandomStream& Stream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorFromStream"); + + Params::KismetMathLibrary_RandomUnitVectorFromStream Parms{}; + + Parms.Stream = std::move(Stream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInDegrees +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& ConeDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ConeHalfAngleInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInConeInDegrees(const struct FVector& ConeDir, float ConeHalfAngleInDegrees) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInConeInDegrees"); + + Params::KismetMathLibrary_RandomUnitVectorInConeInDegrees Parms{}; + + Parms.ConeDir = std::move(ConeDir); + Parms.ConeHalfAngleInDegrees = ConeHalfAngleInDegrees; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInDegreesFromStream +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& ConeDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ConeHalfAngleInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInConeInDegreesFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float ConeHalfAngleInDegrees) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInConeInDegreesFromStream"); + + Params::KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.ConeDir = std::move(ConeDir); + Parms.ConeHalfAngleInDegrees = ConeHalfAngleInDegrees; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInRadians +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& ConeDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ConeHalfAngleInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInConeInRadians(const struct FVector& ConeDir, float ConeHalfAngleInRadians) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInConeInRadians"); + + Params::KismetMathLibrary_RandomUnitVectorInConeInRadians Parms{}; + + Parms.ConeDir = std::move(ConeDir); + Parms.ConeHalfAngleInRadians = ConeHalfAngleInRadians; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInRadiansFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& ConeDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ConeHalfAngleInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInConeInRadiansFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float ConeHalfAngleInRadians) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInConeInRadiansFromStream"); + + Params::KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.ConeDir = std::move(ConeDir); + Parms.ConeHalfAngleInRadians = ConeHalfAngleInRadians; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInDegrees +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& ConeDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxYawInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxPitchInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInEllipticalConeInDegrees(const struct FVector& ConeDir, float MaxYawInDegrees, float MaxPitchInDegrees) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInEllipticalConeInDegrees"); + + Params::KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees Parms{}; + + Parms.ConeDir = std::move(ConeDir); + Parms.MaxYawInDegrees = MaxYawInDegrees; + Parms.MaxPitchInDegrees = MaxPitchInDegrees; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInDegreesFromStream +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& ConeDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxYawInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxPitchInDegrees (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInEllipticalConeInDegreesFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float MaxYawInDegrees, float MaxPitchInDegrees) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInEllipticalConeInDegreesFromStream"); + + Params::KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.ConeDir = std::move(ConeDir); + Parms.MaxYawInDegrees = MaxYawInDegrees; + Parms.MaxPitchInDegrees = MaxPitchInDegrees; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInRadians +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& ConeDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxYawInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxPitchInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInEllipticalConeInRadians(const struct FVector& ConeDir, float MaxYawInRadians, float MaxPitchInRadians) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInEllipticalConeInRadians"); + + Params::KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians Parms{}; + + Parms.ConeDir = std::move(ConeDir); + Parms.MaxYawInRadians = MaxYawInRadians; + Parms.MaxPitchInRadians = MaxPitchInRadians; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInRadiansFromStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& ConeDir (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxYawInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float MaxPitchInRadians (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RandomUnitVectorInEllipticalConeInRadiansFromStream(const struct FRandomStream& Stream, const struct FVector& ConeDir, float MaxYawInRadians, float MaxPitchInRadians) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RandomUnitVectorInEllipticalConeInRadiansFromStream"); + + Params::KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream Parms{}; + + Parms.Stream = std::move(Stream); + Parms.ConeDir = std::move(ConeDir); + Parms.MaxYawInRadians = MaxYawInRadians; + Parms.MaxPitchInRadians = MaxPitchInRadians; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.REase +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShortestPath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEasingFunc EasingFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendExp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Steps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::REase(const struct FRotator& A, const struct FRotator& B, float Alpha, bool bShortestPath, EEasingFunc EasingFunc, float BlendExp, int32 Steps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "REase"); + + Params::KismetMathLibrary_REase Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + Parms.bShortestPath = bShortestPath; + Parms.EasingFunc = EasingFunc; + Parms.BlendExp = BlendExp; + Parms.Steps = Steps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ResetFloatSpringState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FFloatSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::ResetFloatSpringState(struct FFloatSpringState& SpringState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ResetFloatSpringState"); + + Params::KismetMathLibrary_ResetFloatSpringState Parms{}; + + Parms.SpringState = std::move(SpringState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.ResetQuaternionSpringState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FQuaternionSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::ResetQuaternionSpringState(struct FQuaternionSpringState& SpringState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ResetQuaternionSpringState"); + + Params::KismetMathLibrary_ResetQuaternionSpringState Parms{}; + + Parms.SpringState = std::move(SpringState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.ResetRandomStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRandomStream& Stream (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::ResetRandomStream(const struct FRandomStream& Stream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ResetRandomStream"); + + Params::KismetMathLibrary_ResetRandomStream Parms{}; + + Parms.Stream = std::move(Stream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetMathLibrary.ResetVectorSpringState +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FVectorSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::ResetVectorSpringState(struct FVectorSpringState& SpringState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ResetVectorSpringState"); + + Params::KismetMathLibrary_ResetVectorSpringState Parms{}; + + Parms.SpringState = std::move(SpringState); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.RGBLinearToHSV +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& RGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::RGBLinearToHSV(const struct FLinearColor& RGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RGBLinearToHSV"); + + Params::KismetMathLibrary_RGBLinearToHSV Parms{}; + + Parms.RGB = std::move(RGB); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RGBToHSV +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* H (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* S (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* V (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* A (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::RGBToHSV(const struct FLinearColor& InColor, float* H, float* S, float* V, float* A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RGBToHSV"); + + Params::KismetMathLibrary_RGBToHSV Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (H != nullptr) + *H = Parms.H; + + if (S != nullptr) + *S = Parms.S; + + if (V != nullptr) + *V = Parms.V; + + if (A != nullptr) + *A = Parms.A; +} + + +// Function Engine.KismetMathLibrary.RGBToHSV_Vector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& RGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor* HSV (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::RGBToHSV_Vector(const struct FLinearColor& RGB, struct FLinearColor* HSV) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RGBToHSV_Vector"); + + Params::KismetMathLibrary_RGBToHSV_Vector Parms{}; + + Parms.RGB = std::move(RGB); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (HSV != nullptr) + *HSV = std::move(Parms.HSV); +} + + +// Function Engine.KismetMathLibrary.RInterpTo +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RInterpTo(const struct FRotator& Current, const struct FRotator& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RInterpTo"); + + Params::KismetMathLibrary_RInterpTo Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RInterpTo_Constant +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RInterpTo_Constant(const struct FRotator& Current, const struct FRotator& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RInterpTo_Constant"); + + Params::KismetMathLibrary_RInterpTo_Constant Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RLerp +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bShortestPath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RLerp(const struct FRotator& A, const struct FRotator& B, float Alpha, bool bShortestPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RLerp"); + + Params::KismetMathLibrary_RLerp Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + Parms.bShortestPath = bShortestPath; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RotateAngleAxis +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngleDeg (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::RotateAngleAxis(const struct FVector& InVect, float AngleDeg, const struct FVector& Axis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RotateAngleAxis"); + + Params::KismetMathLibrary_RotateAngleAxis Parms{}; + + Parms.InVect = std::move(InVect); + Parms.AngleDeg = AngleDeg; + Parms.Axis = std::move(Axis); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.RotatorFromAxisAndAngle +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Angle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::RotatorFromAxisAndAngle(const struct FVector& Axis, float Angle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "RotatorFromAxisAndAngle"); + + Params::KismetMathLibrary_RotatorFromAxisAndAngle Parms{}; + + Parms.Axis = std::move(Axis); + Parms.Angle = Angle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.round +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::round(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "round"); + + Params::KismetMathLibrary_round Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Round64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Round64(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Round64"); + + Params::KismetMathLibrary_Round64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SafeDivide +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::SafeDivide(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SafeDivide"); + + Params::KismetMathLibrary_SafeDivide Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SeedRandomStream +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FRandomStream& Stream (Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::SeedRandomStream(struct FRandomStream& Stream) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SeedRandomStream"); + + Params::KismetMathLibrary_SeedRandomStream Parms{}; + + Parms.Stream = std::move(Stream); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Stream = std::move(Parms.Stream); +} + + +// Function Engine.KismetMathLibrary.SelectClass +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UClass* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSelectA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UClass* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClass* UKismetMathLibrary::SelectClass(class UClass* A, class UClass* B, bool bSelectA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectClass"); + + Params::KismetMathLibrary_SelectClass Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.bSelectA = bSelectA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::SelectColor(const struct FLinearColor& A, const struct FLinearColor& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectColor"); + + Params::KismetMathLibrary_SelectColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::SelectFloat(double A, double B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectFloat"); + + Params::KismetMathLibrary_SelectFloat Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::SelectInt(int32 A, int32 B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectInt"); + + Params::KismetMathLibrary_SelectInt Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName A (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName B (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UKismetMathLibrary::SelectName(const class FName A, const class FName B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectName"); + + Params::KismetMathLibrary_SelectName Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectObject +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSelectA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UObject* UKismetMathLibrary::SelectObject(class UObject* A, class UObject* B, bool bSelectA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectObject"); + + Params::KismetMathLibrary_SelectObject Parms{}; + + Parms.A = A; + Parms.B = B; + Parms.bSelectA = bSelectA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::SelectRotator(const struct FRotator& A, const struct FRotator& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectRotator"); + + Params::KismetMathLibrary_SelectRotator Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetMathLibrary::SelectString(const class FString& A, const class FString& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectString"); + + Params::KismetMathLibrary_SelectString Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectText +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FText& A (ConstParm, Parm, NativeAccessSpecifierPublic) +// const class FText& B (ConstParm, Parm, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +class FText UKismetMathLibrary::SelectText(const class FText& A, const class FText& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectText"); + + Params::KismetMathLibrary_SelectText Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectTransform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::SelectTransform(const struct FTransform& A, const struct FTransform& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectTransform"); + + Params::KismetMathLibrary_SelectTransform Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SelectVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bPickA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::SelectVector(const struct FVector& A, const struct FVector& B, bool bPickA) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SelectVector"); + + Params::KismetMathLibrary_SelectVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.bPickA = bPickA; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Set2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector2D& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Set2D(struct FVector2D& A, double X, double Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Set2D"); + + Params::KismetMathLibrary_Set2D Parms{}; + + Parms.A = std::move(A); + Parms.X = X; + Parms.Y = Y; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.SetFloatSpringStateVelocity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// struct FFloatSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float Velocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::SetFloatSpringStateVelocity(struct FFloatSpringState& SpringState, float Velocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SetFloatSpringStateVelocity"); + + Params::KismetMathLibrary_SetFloatSpringStateVelocity Parms{}; + + Parms.SpringState = std::move(SpringState); + Parms.Velocity = Velocity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.SetQuaternionSpringStateAngularVelocity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FQuaternionSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& AngularVelocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::SetQuaternionSpringStateAngularVelocity(struct FQuaternionSpringState& SpringState, const struct FVector& AngularVelocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SetQuaternionSpringStateAngularVelocity"); + + Params::KismetMathLibrary_SetQuaternionSpringStateAngularVelocity Parms{}; + + Parms.SpringState = std::move(SpringState); + Parms.AngularVelocity = std::move(AngularVelocity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.SetRandomStreamSeed +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FRandomStream& Stream (Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// int32 NewSeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::SetRandomStreamSeed(struct FRandomStream& Stream, int32 NewSeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SetRandomStreamSeed"); + + Params::KismetMathLibrary_SetRandomStreamSeed Parms{}; + + Parms.Stream = std::move(Stream); + Parms.NewSeed = NewSeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + Stream = std::move(Parms.Stream); +} + + +// Function Engine.KismetMathLibrary.SetVectorSpringStateVelocity +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVectorSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector& Velocity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::SetVectorSpringStateVelocity(struct FVectorSpringState& SpringState, const struct FVector& Velocity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SetVectorSpringStateVelocity"); + + Params::KismetMathLibrary_SetVectorSpringStateVelocity Parms{}; + + Parms.SpringState = std::move(SpringState); + Parms.Velocity = std::move(Velocity); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); +} + + +// Function Engine.KismetMathLibrary.SignOfFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::SignOfFloat(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SignOfFloat"); + + Params::KismetMathLibrary_SignOfFloat Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SignOfInteger +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::SignOfInteger(int32 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SignOfInteger"); + + Params::KismetMathLibrary_SignOfInteger Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.SignOfInteger64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::SignOfInteger64(int64 A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "SignOfInteger64"); + + Params::KismetMathLibrary_SignOfInteger64 Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.sin +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::sin(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "sin"); + + Params::KismetMathLibrary_sin Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Spherical2DToUnitCartesian +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Spherical2DToUnitCartesian(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Spherical2DToUnitCartesian"); + + Params::KismetMathLibrary_Spherical2DToUnitCartesian Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.sqrt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::sqrt(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "sqrt"); + + Params::KismetMathLibrary_sqrt Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Square +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Square(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Square"); + + Params::KismetMathLibrary_Square Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_ByteByte +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +uint8 UKismetMathLibrary::Subtract_ByteByte(uint8 A, uint8 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_ByteByte"); + + Params::KismetMathLibrary_Subtract_ByteByte Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_DateTimeDateTime +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDateTime& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::Subtract_DateTimeDateTime(const struct FDateTime& A, const struct FDateTime& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_DateTimeDateTime"); + + Params::KismetMathLibrary_Subtract_DateTimeDateTime Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_DateTimeTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::Subtract_DateTimeTimespan(const struct FDateTime& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_DateTimeTimespan"); + + Params::KismetMathLibrary_Subtract_DateTimeTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_DoubleDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Subtract_DoubleDouble(double A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_DoubleDouble"); + + Params::KismetMathLibrary_Subtract_DoubleDouble Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Subtract_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_Int64Int64"); + + Params::KismetMathLibrary_Subtract_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Subtract_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_IntInt"); + + Params::KismetMathLibrary_Subtract_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_IntPointInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Subtract_IntPointInt(const struct FIntPoint& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_IntPointInt"); + + Params::KismetMathLibrary_Subtract_IntPointInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_IntPointIntPoint +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntPoint& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FIntPoint ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FIntPoint UKismetMathLibrary::Subtract_IntPointIntPoint(const struct FIntPoint& A, const struct FIntPoint& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_IntPointIntPoint"); + + Params::KismetMathLibrary_Subtract_IntPointIntPoint Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_LinearColorLinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetMathLibrary::Subtract_LinearColorLinearColor(const struct FLinearColor& A, const struct FLinearColor& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_LinearColorLinearColor"); + + Params::KismetMathLibrary_Subtract_LinearColorLinearColor Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_QuatQuat +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FQuat& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FQuat UKismetMathLibrary::Subtract_QuatQuat(const struct FQuat& A, const struct FQuat& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_QuatQuat"); + + Params::KismetMathLibrary_Subtract_QuatQuat Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_TimespanTimespan +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::Subtract_TimespanTimespan(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_TimespanTimespan"); + + Params::KismetMathLibrary_Subtract_TimespanTimespan Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_Vector2DFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Subtract_Vector2DFloat(const struct FVector2D& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_Vector2DFloat"); + + Params::KismetMathLibrary_Subtract_Vector2DFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_Vector2DVector2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Subtract_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_Vector2DVector2D"); + + Params::KismetMathLibrary_Subtract_Vector2DVector2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_Vector4Vector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Subtract_Vector4Vector4(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_Vector4Vector4"); + + Params::KismetMathLibrary_Subtract_Vector4Vector4 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_VectorFloat +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Subtract_VectorFloat(const struct FVector& A, double B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_VectorFloat"); + + Params::KismetMathLibrary_Subtract_VectorFloat Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_VectorInt +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Subtract_VectorInt(const struct FVector& A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_VectorInt"); + + Params::KismetMathLibrary_Subtract_VectorInt Parms{}; + + Parms.A = std::move(A); + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Subtract_VectorVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Subtract_VectorVector(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Subtract_VectorVector"); + + Params::KismetMathLibrary_Subtract_VectorVector Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.tan +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::tan(double A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "tan"); + + Params::KismetMathLibrary_tan Parms{}; + + Parms.A = A; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TEase +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEasingFunc EasingFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendExp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Steps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::TEase(const struct FTransform& A, const struct FTransform& B, float Alpha, EEasingFunc EasingFunc, float BlendExp, int32 Steps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TEase"); + + Params::KismetMathLibrary_TEase Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + Parms.EasingFunc = EasingFunc; + Parms.BlendExp = BlendExp; + Parms.Steps = Steps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TimespanFromString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& TimespanString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTimespan* Result (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::TimespanFromString(const class FString& TimespanString, struct FTimespan* Result) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TimespanFromString"); + + Params::KismetMathLibrary_TimespanFromString Parms{}; + + Parms.TimespanString = std::move(TimespanString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Result != nullptr) + *Result = std::move(Parms.Result); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TimespanMaxValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::TimespanMaxValue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TimespanMaxValue"); + + Params::KismetMathLibrary_TimespanMaxValue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TimespanMinValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::TimespanMinValue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TimespanMinValue"); + + Params::KismetMathLibrary_TimespanMinValue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TimespanRatio +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTimespan& A (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTimespan& B (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::TimespanRatio(const struct FTimespan& A, const struct FTimespan& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TimespanRatio"); + + Params::KismetMathLibrary_TimespanRatio Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TimespanZeroValue +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTimespan UKismetMathLibrary::TimespanZeroValue() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TimespanZeroValue"); + + Params::KismetMathLibrary_TimespanZeroValue Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TInterpTo +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& Current (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& Target (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::TInterpTo(const struct FTransform& Current, const struct FTransform& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TInterpTo"); + + Params::KismetMathLibrary_TInterpTo Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TLerp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& A (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& B (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ELerpInterpolationMode InterpMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FTransform UKismetMathLibrary::TLerp(const struct FTransform& A, const struct FTransform& B, float Alpha, ELerpInterpolationMode InterpMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TLerp"); + + Params::KismetMathLibrary_TLerp Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + Parms.InterpMode = InterpMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Today +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::Today() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Today"); + + Params::KismetMathLibrary_Today Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ToDirectionAndLength2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* OutDir (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double* OutLength (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::ToDirectionAndLength2D(const struct FVector2D& A, struct FVector2D* OutDir, double* OutLength) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToDirectionAndLength2D"); + + Params::KismetMathLibrary_ToDirectionAndLength2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutDir != nullptr) + *OutDir = std::move(Parms.OutDir); + + if (OutLength != nullptr) + *OutLength = Parms.OutLength; +} + + +// Function Engine.KismetMathLibrary.ToHex_LinearColor +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetMathLibrary::ToHex_LinearColor(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToHex_LinearColor"); + + Params::KismetMathLibrary_ToHex_LinearColor Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ToRounded2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::ToRounded2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToRounded2D"); + + Params::KismetMathLibrary_ToRounded2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ToSign2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::ToSign2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToSign2D"); + + Params::KismetMathLibrary_ToSign2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ToUnixTimestamp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& Time (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::ToUnixTimestamp(const struct FDateTime& Time) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToUnixTimestamp"); + + Params::KismetMathLibrary_ToUnixTimestamp Parms{}; + + Parms.Time = std::move(Time); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.ToUnixTimestampDouble +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FDateTime& Time (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::ToUnixTimestampDouble(const struct FDateTime& Time) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "ToUnixTimestampDouble"); + + Params::KismetMathLibrary_ToUnixTimestampDouble Parms{}; + + Parms.Time = std::move(Time); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Transform_Determinant +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& Transform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::Transform_Determinant(const struct FTransform& Transform) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Transform_Determinant"); + + Params::KismetMathLibrary_Transform_Determinant Parms{}; + + Parms.Transform = std::move(Transform); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TransformDirection +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::TransformDirection(const struct FTransform& T, const struct FVector& Direction) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TransformDirection"); + + Params::KismetMathLibrary_TransformDirection Parms{}; + + Parms.T = std::move(T); + Parms.Direction = std::move(Direction); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TransformLocation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::TransformLocation(const struct FTransform& T, const struct FVector& Location) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TransformLocation"); + + Params::KismetMathLibrary_TransformLocation Parms{}; + + Parms.T = std::move(T); + Parms.Location = std::move(Location); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TransformRotation +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& T (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::TransformRotation(const struct FTransform& T, const struct FRotator& Rotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TransformRotation"); + + Params::KismetMathLibrary_TransformRotation Parms{}; + + Parms.T = std::move(T); + Parms.Rotation = std::move(Rotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.TransformVector4 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& Matrix (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FVector4& Vec4 (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::TransformVector4(const struct FMatrix& Matrix, const struct FVector4& Vec4) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "TransformVector4"); + + Params::KismetMathLibrary_TransformVector4 Parms{}; + + Parms.Matrix = std::move(Matrix); + Parms.Vec4 = std::move(Vec4); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.UtcNow +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FDateTime ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FDateTime UKismetMathLibrary::UtcNow() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "UtcNow"); + + Params::KismetMathLibrary_UtcNow Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VEase +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEasingFunc EasingFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float BlendExp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Steps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::VEase(const struct FVector& A, const struct FVector& B, float Alpha, EEasingFunc EasingFunc, float BlendExp, int32 Steps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VEase"); + + Params::KismetMathLibrary_VEase Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + Parms.EasingFunc = EasingFunc; + Parms.BlendExp = BlendExp; + Parms.Steps = Steps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector2D_One +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector2D_One() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector2D_One"); + + Params::KismetMathLibrary_Vector2D_One Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector2D_Unit45Deg +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector2D_Unit45Deg() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector2D_Unit45Deg"); + + Params::KismetMathLibrary_Vector2D_Unit45Deg Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector2D_Zero +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector2D_Zero() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector2D_Zero"); + + Params::KismetMathLibrary_Vector2D_Zero Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector2DInterpTo +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector2DInterpTo(const struct FVector2D& Current, const struct FVector2D& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector2DInterpTo"); + + Params::KismetMathLibrary_Vector2DInterpTo Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector2DInterpTo_Constant +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector2DInterpTo_Constant(const struct FVector2D& Current, const struct FVector2D& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector2DInterpTo_Constant"); + + Params::KismetMathLibrary_Vector2DInterpTo_Constant Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Assign +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector4& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& InVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector4_Assign(struct FVector4& A, const struct FVector4& InVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Assign"); + + Params::KismetMathLibrary_Vector4_Assign Parms{}; + + Parms.A = std::move(A); + Parms.InVector = std::move(InVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector4_CrossProduct3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_CrossProduct3(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_CrossProduct3"); + + Params::KismetMathLibrary_Vector4_CrossProduct3 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_DotProduct +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_DotProduct(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_DotProduct"); + + Params::KismetMathLibrary_Vector4_DotProduct Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_DotProduct3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_DotProduct3(const struct FVector4& A, const struct FVector4& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_DotProduct3"); + + Params::KismetMathLibrary_Vector4_DotProduct3 Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_IsNAN +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector4_IsNAN(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_IsNAN"); + + Params::KismetMathLibrary_Vector4_IsNAN Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_IsNearlyZero3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector4_IsNearlyZero3(const struct FVector4& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_IsNearlyZero3"); + + Params::KismetMathLibrary_Vector4_IsNearlyZero3 Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_IsNormal3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector4_IsNormal3(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_IsNormal3"); + + Params::KismetMathLibrary_Vector4_IsNormal3 Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_IsUnit3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SquaredLenthTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector4_IsUnit3(const struct FVector4& A, float SquaredLenthTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_IsUnit3"); + + Params::KismetMathLibrary_Vector4_IsUnit3 Parms{}; + + Parms.A = std::move(A); + Parms.SquaredLenthTolerance = SquaredLenthTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_IsZero +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector4_IsZero(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_IsZero"); + + Params::KismetMathLibrary_Vector4_IsZero Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_MirrorByVector3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& Direction (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector4& SurfaceNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_MirrorByVector3(const struct FVector4& Direction, const struct FVector4& SurfaceNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_MirrorByVector3"); + + Params::KismetMathLibrary_Vector4_MirrorByVector3 Parms{}; + + Parms.Direction = std::move(Direction); + Parms.SurfaceNormal = std::move(SurfaceNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Negated +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_Negated(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Negated"); + + Params::KismetMathLibrary_Vector4_Negated Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Normal3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_Normal3(const struct FVector4& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Normal3"); + + Params::KismetMathLibrary_Vector4_Normal3 Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Normalize3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector4& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector4_Normalize3(struct FVector4& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Normalize3"); + + Params::KismetMathLibrary_Vector4_Normalize3 Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector4_NormalUnsafe3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_NormalUnsafe3(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_NormalUnsafe3"); + + Params::KismetMathLibrary_Vector4_NormalUnsafe3 Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Set +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector4& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double W (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector4_Set(struct FVector4& A, double X, double Y, double Z, double W) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Set"); + + Params::KismetMathLibrary_Vector4_Set Parms{}; + + Parms.A = std::move(A); + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + Parms.W = W; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector4_Size +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_Size(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Size"); + + Params::KismetMathLibrary_Vector4_Size Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Size3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_Size3(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Size3"); + + Params::KismetMathLibrary_Vector4_Size3 Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_SizeSquared +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_SizeSquared(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_SizeSquared"); + + Params::KismetMathLibrary_Vector4_SizeSquared Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_SizeSquared3 +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector4& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector4_SizeSquared3(const struct FVector4& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_SizeSquared3"); + + Params::KismetMathLibrary_Vector4_SizeSquared3 Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector4_Zero +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector4 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector4 UKismetMathLibrary::Vector4_Zero() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector4_Zero"); + + Params::KismetMathLibrary_Vector4_Zero Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_AddBounded +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InAddVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector_AddBounded(struct FVector& A, const struct FVector& InAddVect, float InRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_AddBounded"); + + Params::KismetMathLibrary_Vector_AddBounded Parms{}; + + Parms.A = std::move(A); + Parms.InAddVect = std::move(InAddVect); + Parms.InRadius = InRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector_Assign +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InVector (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector_Assign(struct FVector& A, const struct FVector& InVector) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Assign"); + + Params::KismetMathLibrary_Vector_Assign Parms{}; + + Parms.A = std::move(A); + Parms.InVector = std::move(InVector); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector_Backward +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Backward() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Backward"); + + Params::KismetMathLibrary_Vector_Backward Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_BoundedToBox +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InBoxMin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InBoxMax (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_BoundedToBox(const struct FVector& InVect, const struct FVector& InBoxMin, const struct FVector& InBoxMax) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_BoundedToBox"); + + Params::KismetMathLibrary_Vector_BoundedToBox Parms{}; + + Parms.InVect = std::move(InVect); + Parms.InBoxMin = std::move(InBoxMin); + Parms.InBoxMax = std::move(InBoxMax); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_BoundedToCube +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_BoundedToCube(const struct FVector& InVect, float InRadius) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_BoundedToCube"); + + Params::KismetMathLibrary_Vector_BoundedToCube Parms{}; + + Parms.InVect = std::move(InVect); + Parms.InRadius = InRadius; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ClampSize2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ClampSize2D(const struct FVector& A, double min_0, double max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ClampSize2D"); + + Params::KismetMathLibrary_Vector_ClampSize2D Parms{}; + + Parms.A = std::move(A); + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ClampSizeMax +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ClampSizeMax(const struct FVector& A, double max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ClampSizeMax"); + + Params::KismetMathLibrary_Vector_ClampSizeMax Parms{}; + + Parms.A = std::move(A); + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ClampSizeMax2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ClampSizeMax2D(const struct FVector& A, double max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ClampSizeMax2D"); + + Params::KismetMathLibrary_Vector_ClampSizeMax2D Parms{}; + + Parms.A = std::move(A); + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ComponentMax +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ComponentMax(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ComponentMax"); + + Params::KismetMathLibrary_Vector_ComponentMax Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ComponentMin +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ComponentMin(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ComponentMin"); + + Params::KismetMathLibrary_Vector_ComponentMin Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_CosineAngle2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_CosineAngle2D(const struct FVector& A, const struct FVector& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_CosineAngle2D"); + + Params::KismetMathLibrary_Vector_CosineAngle2D Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Distance +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_Distance(const struct FVector& v1, const struct FVector& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Distance"); + + Params::KismetMathLibrary_Vector_Distance Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Distance2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_Distance2D(const struct FVector& v1, const struct FVector& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Distance2D"); + + Params::KismetMathLibrary_Vector_Distance2D Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Distance2DSquared +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_Distance2DSquared(const struct FVector& v1, const struct FVector& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Distance2DSquared"); + + Params::KismetMathLibrary_Vector_Distance2DSquared Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_DistanceSquared +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& v1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& v2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_DistanceSquared(const struct FVector& v1, const struct FVector& v2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_DistanceSquared"); + + Params::KismetMathLibrary_Vector_DistanceSquared Parms{}; + + Parms.v1 = std::move(v1); + Parms.v2 = std::move(v2); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Down +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Down() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Down"); + + Params::KismetMathLibrary_Vector_Down Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Forward +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Forward() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Forward"); + + Params::KismetMathLibrary_Vector_Forward Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_GetAbs +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_GetAbs(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_GetAbs"); + + Params::KismetMathLibrary_Vector_GetAbs Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_GetAbsMax +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_GetAbsMax(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_GetAbsMax"); + + Params::KismetMathLibrary_Vector_GetAbsMax Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_GetAbsMin +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_GetAbsMin(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_GetAbsMin"); + + Params::KismetMathLibrary_Vector_GetAbsMin Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_GetProjection +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_GetProjection(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_GetProjection"); + + Params::KismetMathLibrary_Vector_GetProjection Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_GetSignVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_GetSignVector(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_GetSignVector"); + + Params::KismetMathLibrary_Vector_GetSignVector Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_HeadingAngle +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::Vector_HeadingAngle(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_HeadingAngle"); + + Params::KismetMathLibrary_Vector_HeadingAngle Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsNAN +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsNAN(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsNAN"); + + Params::KismetMathLibrary_Vector_IsNAN Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsNearlyZero +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsNearlyZero(const struct FVector& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsNearlyZero"); + + Params::KismetMathLibrary_Vector_IsNearlyZero Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsNormal +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsNormal(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsNormal"); + + Params::KismetMathLibrary_Vector_IsNormal Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsUniform +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsUniform(const struct FVector& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsUniform"); + + Params::KismetMathLibrary_Vector_IsUniform Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsUnit +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float SquaredLenthTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsUnit(const struct FVector& A, float SquaredLenthTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsUnit"); + + Params::KismetMathLibrary_Vector_IsUnit Parms{}; + + Parms.A = std::move(A); + Parms.SquaredLenthTolerance = SquaredLenthTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_IsZero +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetMathLibrary::Vector_IsZero(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_IsZero"); + + Params::KismetMathLibrary_Vector_IsZero Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Left +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Left() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Left"); + + Params::KismetMathLibrary_Vector_Left Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_MirrorByPlane +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FPlane& InPlane (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_MirrorByPlane(const struct FVector& A, const struct FPlane& InPlane) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_MirrorByPlane"); + + Params::KismetMathLibrary_Vector_MirrorByPlane Parms{}; + + Parms.A = std::move(A); + Parms.InPlane = std::move(InPlane); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Normal2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Normal2D(const struct FVector& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Normal2D"); + + Params::KismetMathLibrary_Vector_Normal2D Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Normalize +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Tolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector_Normalize(struct FVector& A, float Tolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Normalize"); + + Params::KismetMathLibrary_Vector_Normalize Parms{}; + + Parms.A = std::move(A); + Parms.Tolerance = Tolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector_NormalUnsafe +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_NormalUnsafe(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_NormalUnsafe"); + + Params::KismetMathLibrary_Vector_NormalUnsafe Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_One +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_One() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_One"); + + Params::KismetMathLibrary_Vector_One Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ProjectOnToNormal +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InNormal (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ProjectOnToNormal(const struct FVector& V, const struct FVector& InNormal) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ProjectOnToNormal"); + + Params::KismetMathLibrary_Vector_ProjectOnToNormal Parms{}; + + Parms.V = std::move(V); + Parms.InNormal = std::move(InNormal); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Reciprocal +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Reciprocal(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Reciprocal"); + + Params::KismetMathLibrary_Vector_Reciprocal Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Right +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Right() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Right"); + + Params::KismetMathLibrary_Vector_Right Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Set +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Z (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector_Set(struct FVector& A, double X, double Y, double Z) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Set"); + + Params::KismetMathLibrary_Vector_Set Parms{}; + + Parms.A = std::move(A); + Parms.X = X; + Parms.Y = Y; + Parms.Z = Z; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector_SlerpNormals +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& NormalA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& NormalB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_SlerpNormals(const struct FVector& NormalA, const struct FVector& NormalB, double Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_SlerpNormals"); + + Params::KismetMathLibrary_Vector_SlerpNormals Parms{}; + + Parms.NormalA = std::move(NormalA); + Parms.NormalB = std::move(NormalB); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_SlerpVectorToDirection +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Vector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_SlerpVectorToDirection(const struct FVector& Vector, const struct FVector& Direction, double Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_SlerpVectorToDirection"); + + Params::KismetMathLibrary_Vector_SlerpVectorToDirection Parms{}; + + Parms.Vector = std::move(Vector); + Parms.Direction = std::move(Direction); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_SnappedToGrid +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVect (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InGridSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_SnappedToGrid(const struct FVector& InVect, float InGridSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_SnappedToGrid"); + + Params::KismetMathLibrary_Vector_SnappedToGrid Parms{}; + + Parms.InVect = std::move(InVect); + Parms.InGridSize = InGridSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ToDegrees +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ToDegrees(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ToDegrees"); + + Params::KismetMathLibrary_Vector_ToDegrees Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_ToRadians +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_ToRadians(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_ToRadians"); + + Params::KismetMathLibrary_Vector_ToRadians Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_UnitCartesianToSpherical +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UKismetMathLibrary::Vector_UnitCartesianToSpherical(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_UnitCartesianToSpherical"); + + Params::KismetMathLibrary_Vector_UnitCartesianToSpherical Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_UnwindEuler +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector& A (Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetMathLibrary::Vector_UnwindEuler(struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_UnwindEuler"); + + Params::KismetMathLibrary_Vector_UnwindEuler Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + A = std::move(Parms.A); +} + + +// Function Engine.KismetMathLibrary.Vector_Up +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Up() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Up"); + + Params::KismetMathLibrary_Vector_Up Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Vector_Zero +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::Vector_Zero() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Vector_Zero"); + + Params::KismetMathLibrary_Vector_Zero Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VectorSpringInterp +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVectorSpringState& SpringState (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +// float Stiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float CriticalDampingFactor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Mass (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TargetVelocityAmount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bClamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& MinValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& MaxValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInitializeFromTarget (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::VectorSpringInterp(const struct FVector& Current, const struct FVector& Target, struct FVectorSpringState& SpringState, float Stiffness, float CriticalDampingFactor, float DeltaTime, float Mass, float TargetVelocityAmount, bool bClamp, const struct FVector& MinValue, const struct FVector& MaxValue, bool bInitializeFromTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VectorSpringInterp"); + + Params::KismetMathLibrary_VectorSpringInterp Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.SpringState = std::move(SpringState); + Parms.Stiffness = Stiffness; + Parms.CriticalDampingFactor = CriticalDampingFactor; + Parms.DeltaTime = DeltaTime; + Parms.Mass = Mass; + Parms.TargetVelocityAmount = TargetVelocityAmount; + Parms.bClamp = bClamp; + Parms.MinValue = std::move(MinValue); + Parms.MaxValue = std::move(MaxValue); + Parms.bInitializeFromTarget = bInitializeFromTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SpringState = std::move(Parms.SpringState); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VInterpTo +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::VInterpTo(const struct FVector& Current, const struct FVector& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VInterpTo"); + + Params::KismetMathLibrary_VInterpTo Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VInterpTo_Constant +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& Current (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Target (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DeltaTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InterpSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::VInterpTo_Constant(const struct FVector& Current, const struct FVector& Target, float DeltaTime, float InterpSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VInterpTo_Constant"); + + Params::KismetMathLibrary_VInterpTo_Constant Parms{}; + + Parms.Current = std::move(Current); + Parms.Target = std::move(Target); + Parms.DeltaTime = DeltaTime; + Parms.InterpSpeed = InterpSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VLerp +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Alpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::VLerp(const struct FVector& A, const struct FVector& B, float Alpha) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VLerp"); + + Params::KismetMathLibrary_VLerp Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + Parms.Alpha = Alpha; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSize +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSize(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSize"); + + Params::KismetMathLibrary_VSize Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSize2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSize2D(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSize2D"); + + Params::KismetMathLibrary_VSize2D Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSize2DSquared +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSize2DSquared(const struct FVector2D& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSize2DSquared"); + + Params::KismetMathLibrary_VSize2DSquared Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSizeSquared +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSizeSquared(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSizeSquared"); + + Params::KismetMathLibrary_VSizeSquared Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSizeXY +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSizeXY(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSizeXY"); + + Params::KismetMathLibrary_VSizeXY Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.VSizeXYSquared +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetMathLibrary::VSizeXYSquared(const struct FVector& A) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "VSizeXYSquared"); + + Params::KismetMathLibrary_VSizeXYSquared Parms{}; + + Parms.A = std::move(A); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_Float +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Weight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UKismetMathLibrary::WeightedMovingAverage_Float(float CurrentSample, float PreviousSample, float Weight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "WeightedMovingAverage_Float"); + + Params::KismetMathLibrary_WeightedMovingAverage_Float Parms{}; + + Parms.CurrentSample = CurrentSample; + Parms.PreviousSample = PreviousSample; + Parms.Weight = Weight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_FRotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FRotator& PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// float Weight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FRotator UKismetMathLibrary::WeightedMovingAverage_FRotator(const struct FRotator& CurrentSample, const struct FRotator& PreviousSample, float Weight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "WeightedMovingAverage_FRotator"); + + Params::KismetMathLibrary_WeightedMovingAverage_FRotator Parms{}; + + Parms.CurrentSample = std::move(CurrentSample); + Parms.PreviousSample = std::move(PreviousSample); + Parms.Weight = Weight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_FVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& CurrentSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousSample (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Weight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UKismetMathLibrary::WeightedMovingAverage_FVector(const struct FVector& CurrentSample, const struct FVector& PreviousSample, float Weight) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "WeightedMovingAverage_FVector"); + + Params::KismetMathLibrary_WeightedMovingAverage_FVector Parms{}; + + Parms.CurrentSample = std::move(CurrentSample); + Parms.PreviousSample = std::move(PreviousSample); + Parms.Weight = Weight; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Wrap +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Value (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 min_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 max_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Wrap(int32 Value, int32 min_0, int32 max_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Wrap"); + + Params::KismetMathLibrary_Wrap Parms{}; + + Parms.Value = Value; + Parms.min_0 = min_0; + Parms.max_0 = max_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Xor_Int64Int64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetMathLibrary::Xor_Int64Int64(int64 A, int64 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Xor_Int64Int64"); + + Params::KismetMathLibrary_Xor_Int64Int64 Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetMathLibrary.Xor_IntInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetMathLibrary::Xor_IntInt(int32 A, int32 B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetMathLibrary", "Xor_IntInt"); + + Params::KismetMathLibrary_Xor_IntInt Parms{}; + + Parms.A = A; + Parms.B = B; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.BeginDrawCanvasToRenderTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UCanvas** Canvas (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* Size (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FDrawToRenderTargetContext* Context (Parm, OutParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::BeginDrawCanvasToRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, class UCanvas** Canvas, struct FVector2D* Size, struct FDrawToRenderTargetContext* Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "BeginDrawCanvasToRenderTarget"); + + Params::KismetRenderingLibrary_BeginDrawCanvasToRenderTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Canvas != nullptr) + *Canvas = Parms.Canvas; + + if (Size != nullptr) + *Size = std::move(Parms.Size); + + if (Context != nullptr) + *Context = std::move(Parms.Context); +} + + +// Function Engine.KismetRenderingLibrary.BreakSkinWeightInfo +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FSkelMeshSkinWeightInfo& InWeight (Parm, NoDestructor, NativeAccessSpecifierPublic) +// int32* Bone0 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* Weight0 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Bone1 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* Weight1 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Bone2 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* Weight2 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* Bone3 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8* Weight3 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::BreakSkinWeightInfo(const struct FSkelMeshSkinWeightInfo& InWeight, int32* Bone0, uint8* Weight0, int32* Bone1, uint8* Weight1, int32* Bone2, uint8* Weight2, int32* Bone3, uint8* Weight3) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "BreakSkinWeightInfo"); + + Params::KismetRenderingLibrary_BreakSkinWeightInfo Parms{}; + + Parms.InWeight = std::move(InWeight); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Bone0 != nullptr) + *Bone0 = Parms.Bone0; + + if (Weight0 != nullptr) + *Weight0 = Parms.Weight0; + + if (Bone1 != nullptr) + *Bone1 = Parms.Bone1; + + if (Weight1 != nullptr) + *Weight1 = Parms.Weight1; + + if (Bone2 != nullptr) + *Bone2 = Parms.Bone2; + + if (Weight2 != nullptr) + *Weight2 = Parms.Weight2; + + if (Bone3 != nullptr) + *Bone3 = Parms.Bone3; + + if (Weight3 != nullptr) + *Weight3 = Parms.Weight3; +} + + +// Function Engine.KismetRenderingLibrary.CalculateProjectionMatrix +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMinimalViewInfo& MinimalViewInfo (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// struct FMatrix ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FMatrix UKismetRenderingLibrary::CalculateProjectionMatrix(const struct FMinimalViewInfo& MinimalViewInfo) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "CalculateProjectionMatrix"); + + Params::KismetRenderingLibrary_CalculateProjectionMatrix Parms{}; + + Parms.MinimalViewInfo = std::move(MinimalViewInfo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ClearRenderTarget2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ClearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ClearRenderTarget2D(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const struct FLinearColor& ClearColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ClearRenderTarget2D"); + + Params::KismetRenderingLibrary_ClearRenderTarget2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.ClearColor = std::move(ClearColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTexture2DArrayEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2DArray* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2DArray* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ConvertRenderTargetToTexture2DArrayEditorOnly(class UObject* WorldContextObject, class UTextureRenderTarget2DArray* RenderTarget, class UTexture2DArray* Texture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ConvertRenderTargetToTexture2DArrayEditorOnly"); + + Params::KismetRenderingLibrary_ConvertRenderTargetToTexture2DArrayEditorOnly Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.RenderTarget = RenderTarget; + Parms.Texture = Texture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTexture2DEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2D* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ConvertRenderTargetToTexture2DEditorOnly(class UObject* WorldContextObject, class UTextureRenderTarget2D* RenderTarget, class UTexture2D* Texture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ConvertRenderTargetToTexture2DEditorOnly"); + + Params::KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.RenderTarget = RenderTarget; + Parms.Texture = Texture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTextureCubeEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTargetCube* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureCube* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ConvertRenderTargetToTextureCubeEditorOnly(class UObject* WorldContextObject, class UTextureRenderTargetCube* RenderTarget, class UTextureCube* Texture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ConvertRenderTargetToTextureCubeEditorOnly"); + + Params::KismetRenderingLibrary_ConvertRenderTargetToTextureCubeEditorOnly Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.RenderTarget = RenderTarget; + Parms.Texture = Texture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTextureVolumeEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTargetVolume* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UVolumeTexture* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ConvertRenderTargetToTextureVolumeEditorOnly(class UObject* WorldContextObject, class UTextureRenderTargetVolume* RenderTarget, class UVolumeTexture* Texture) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ConvertRenderTargetToTextureVolumeEditorOnly"); + + Params::KismetRenderingLibrary_ConvertRenderTargetToTextureVolumeEditorOnly Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.RenderTarget = RenderTarget; + Parms.Texture = Texture; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.CreateRenderTarget2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureRenderTargetFormat Format (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ClearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoGenerateMipMaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSupportUAVs (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTextureRenderTarget2D* UKismetRenderingLibrary::CreateRenderTarget2D(class UObject* WorldContextObject, int32 Width, int32 Height, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "CreateRenderTarget2D"); + + Params::KismetRenderingLibrary_CreateRenderTarget2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Width = Width; + Parms.Height = Height; + Parms.Format = Format; + Parms.ClearColor = std::move(ClearColor); + Parms.bAutoGenerateMipMaps = bAutoGenerateMipMaps; + Parms.bSupportUAVs = bSupportUAVs; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.CreateRenderTarget2DArray +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Slices (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureRenderTargetFormat Format (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ClearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoGenerateMipMaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSupportUAVs (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2DArray* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTextureRenderTarget2DArray* UKismetRenderingLibrary::CreateRenderTarget2DArray(class UObject* WorldContextObject, int32 Width, int32 Height, int32 Slices, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "CreateRenderTarget2DArray"); + + Params::KismetRenderingLibrary_CreateRenderTarget2DArray Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Width = Width; + Parms.Height = Height; + Parms.Slices = Slices; + Parms.Format = Format; + Parms.ClearColor = std::move(ClearColor); + Parms.bAutoGenerateMipMaps = bAutoGenerateMipMaps; + Parms.bSupportUAVs = bSupportUAVs; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.CreateRenderTargetVolume +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Depth (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureRenderTargetFormat Format (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ClearColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAutoGenerateMipMaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSupportUAVs (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTargetVolume* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTextureRenderTargetVolume* UKismetRenderingLibrary::CreateRenderTargetVolume(class UObject* WorldContextObject, int32 Width, int32 Height, int32 Depth, ETextureRenderTargetFormat Format, const struct FLinearColor& ClearColor, bool bAutoGenerateMipMaps, bool bSupportUAVs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "CreateRenderTargetVolume"); + + Params::KismetRenderingLibrary_CreateRenderTargetVolume Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Width = Width; + Parms.Height = Height; + Parms.Depth = Depth; + Parms.Format = Format; + Parms.ClearColor = std::move(ClearColor); + Parms.bAutoGenerateMipMaps = bAutoGenerateMipMaps; + Parms.bSupportUAVs = bSupportUAVs; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.DrawMaterialToRenderTarget +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::DrawMaterialToRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, class UMaterialInterface* Material) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "DrawMaterialToRenderTarget"); + + Params::KismetRenderingLibrary_DrawMaterialToRenderTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.Material = Material; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.EnablePathTracing +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bEnablePathTracer (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::EnablePathTracing(bool bEnablePathTracer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "EnablePathTracing"); + + Params::KismetRenderingLibrary_EnablePathTracing Parms{}; + + Parms.bEnablePathTracer = bEnablePathTracer; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.EndDrawCanvasToRenderTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FDrawToRenderTargetContext&Context (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::EndDrawCanvasToRenderTarget(class UObject* WorldContextObject, const struct FDrawToRenderTargetContext& Context) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "EndDrawCanvasToRenderTarget"); + + Params::KismetRenderingLibrary_EndDrawCanvasToRenderTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Context = std::move(Context); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ExportRenderTarget +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FilePath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Filename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ExportRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const class FString& FilePath, const class FString& Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ExportRenderTarget"); + + Params::KismetRenderingLibrary_ExportRenderTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.FilePath = std::move(FilePath); + Parms.Filename = std::move(Filename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ExportTexture2D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2D* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& FilePath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Filename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ExportTexture2D(class UObject* WorldContextObject, class UTexture2D* Texture, const class FString& FilePath, const class FString& Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ExportTexture2D"); + + Params::KismetRenderingLibrary_ExportTexture2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Texture = Texture; + Parms.FilePath = std::move(FilePath); + Parms.Filename = std::move(Filename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ImportBufferAsTexture2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Buffer (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class UTexture2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture2D* UKismetRenderingLibrary::ImportBufferAsTexture2D(class UObject* WorldContextObject, const TArray& Buffer) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ImportBufferAsTexture2D"); + + Params::KismetRenderingLibrary_ImportBufferAsTexture2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Buffer = std::move(Buffer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ImportFileAsTexture2D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Filename (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture2D* UKismetRenderingLibrary::ImportFileAsTexture2D(class UObject* WorldContextObject, const class FString& Filename) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ImportFileAsTexture2D"); + + Params::KismetRenderingLibrary_ImportFileAsTexture2D Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Filename = std::move(Filename); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.MakeSkinWeightInfo +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Bone0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 Weight0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Bone1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 Weight1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Bone2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 Weight2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Bone3 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// uint8 Weight3 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FSkelMeshSkinWeightInfo ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FSkelMeshSkinWeightInfo UKismetRenderingLibrary::MakeSkinWeightInfo(int32 Bone0, uint8 Weight0, int32 Bone1, uint8 Weight1, int32 Bone2, uint8 Weight2, int32 Bone3, uint8 Weight3) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "MakeSkinWeightInfo"); + + Params::KismetRenderingLibrary_MakeSkinWeightInfo Parms{}; + + Parms.Bone0 = Bone0; + Parms.Weight0 = Weight0; + Parms.Bone1 = Bone1; + Parms.Weight1 = Weight1; + Parms.Bone2 = Bone2; + Parms.Weight2 = Weight2; + Parms.Bone3 = Bone3; + Parms.Weight3 = Weight3; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTarget +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutSamples (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetRenderingLibrary::ReadRenderTarget(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, TArray* OutSamples, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTarget"); + + Params::KismetRenderingLibrary_ReadRenderTarget Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutSamples != nullptr) + *OutSamples = std::move(Parms.OutSamples); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetPixel +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetRenderingLibrary::ReadRenderTargetPixel(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 X, int32 Y) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetPixel"); + + Params::KismetRenderingLibrary_ReadRenderTargetPixel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.X = X; + Parms.Y = Y; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRaw +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutLinearSamples (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetRenderingLibrary::ReadRenderTargetRaw(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, TArray* OutLinearSamples, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetRaw"); + + Params::KismetRenderingLibrary_ReadRenderTargetRaw Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLinearSamples != nullptr) + *OutLinearSamples = std::move(Parms.OutLinearSamples); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawPixel +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 X (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Y (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetRenderingLibrary::ReadRenderTargetRawPixel(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 X, int32 Y, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetRawPixel"); + + Params::KismetRenderingLibrary_ReadRenderTargetRawPixel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.X = X; + Parms.Y = Y; + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawPixelArea +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MinY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaxX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 MaxY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetRenderingLibrary::ReadRenderTargetRawPixelArea(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, int32 MinX, int32 MinY, int32 MaxX, int32 MaxY, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetRawPixelArea"); + + Params::KismetRenderingLibrary_ReadRenderTargetRawPixelArea Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.MinX = MinX; + Parms.MinY = MinY; + Parms.MaxX = MaxX; + Parms.MaxY = MaxY; + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawUV +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float U (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UKismetRenderingLibrary::ReadRenderTargetRawUV(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, float U, float V, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetRawUV"); + + Params::KismetRenderingLibrary_ReadRenderTargetRawUV Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.U = U; + Parms.V = V; + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawUVArea +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox2D& Area (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool bNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetRenderingLibrary::ReadRenderTargetRawUVArea(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, const struct FBox2D& Area, bool bNormalize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetRawUVArea"); + + Params::KismetRenderingLibrary_ReadRenderTargetRawUVArea Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.Area = std::move(Area); + Parms.bNormalize = bNormalize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetUV +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float U (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float V (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UKismetRenderingLibrary::ReadRenderTargetUV(class UObject* WorldContextObject, class UTextureRenderTarget2D* TextureRenderTarget, float U, float V) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReadRenderTargetUV"); + + Params::KismetRenderingLibrary_ReadRenderTargetUV Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.U = U; + Parms.V = V; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.RefreshPathTracingOutput +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) + +void UKismetRenderingLibrary::RefreshPathTracingOutput() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "RefreshPathTracingOutput"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.ReleaseRenderTarget2D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ReleaseRenderTarget2D(class UTextureRenderTarget2D* TextureRenderTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ReleaseRenderTarget2D"); + + Params::KismetRenderingLibrary_ReleaseRenderTarget2D Parms{}; + + Parms.TextureRenderTarget = TextureRenderTarget; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTexture2DArrayEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTarget2DArray* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Name_0 (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureCompressionSettings CompressionSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureMipGenSettings MipSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2DArray* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture2DArray* UKismetRenderingLibrary::RenderTargetCreateStaticTexture2DArrayEditorOnly(class UTextureRenderTarget2DArray* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "RenderTargetCreateStaticTexture2DArrayEditorOnly"); + + Params::KismetRenderingLibrary_RenderTargetCreateStaticTexture2DArrayEditorOnly Parms{}; + + Parms.RenderTarget = RenderTarget; + Parms.Name_0 = std::move(Name_0); + Parms.CompressionSettings = CompressionSettings; + Parms.MipSettings = MipSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTexture2DEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTarget2D* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Name_0 (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureCompressionSettings CompressionSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureMipGenSettings MipSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture2D* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTexture2D* UKismetRenderingLibrary::RenderTargetCreateStaticTexture2DEditorOnly(class UTextureRenderTarget2D* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "RenderTargetCreateStaticTexture2DEditorOnly"); + + Params::KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly Parms{}; + + Parms.RenderTarget = RenderTarget; + Parms.Name_0 = std::move(Name_0); + Parms.CompressionSettings = CompressionSettings; + Parms.MipSettings = MipSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTextureCubeEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTargetCube* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Name_0 (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureCompressionSettings CompressionSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureMipGenSettings MipSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTextureCube* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UTextureCube* UKismetRenderingLibrary::RenderTargetCreateStaticTextureCubeEditorOnly(class UTextureRenderTargetCube* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "RenderTargetCreateStaticTextureCubeEditorOnly"); + + Params::KismetRenderingLibrary_RenderTargetCreateStaticTextureCubeEditorOnly Parms{}; + + Parms.RenderTarget = RenderTarget; + Parms.Name_0 = std::move(Name_0); + Parms.CompressionSettings = CompressionSettings; + Parms.MipSettings = MipSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticVolumeTextureEditorOnly +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTargetVolume* RenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Name_0 (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureCompressionSettings CompressionSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ETextureMipGenSettings MipSettings (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UVolumeTexture* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UVolumeTexture* UKismetRenderingLibrary::RenderTargetCreateStaticVolumeTextureEditorOnly(class UTextureRenderTargetVolume* RenderTarget, const class FString& Name_0, ETextureCompressionSettings CompressionSettings, ETextureMipGenSettings MipSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "RenderTargetCreateStaticVolumeTextureEditorOnly"); + + Params::KismetRenderingLibrary_RenderTargetCreateStaticVolumeTextureEditorOnly Parms{}; + + Parms.RenderTarget = RenderTarget; + Parms.Name_0 = std::move(Name_0); + Parms.CompressionSettings = CompressionSettings; + Parms.MipSettings = MipSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetRenderingLibrary.ResizeRenderTarget2D +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UTextureRenderTarget2D* TextureRenderTarget (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Width (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Height (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::ResizeRenderTarget2D(class UTextureRenderTarget2D* TextureRenderTarget, int32 Width, int32 Height) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "ResizeRenderTarget2D"); + + Params::KismetRenderingLibrary_ResizeRenderTarget2D Parms{}; + + Parms.TextureRenderTarget = TextureRenderTarget; + Parms.Width = Width; + Parms.Height = Height; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetRenderingLibrary.SetCastInsetShadowForAllAttachments +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* PrimitiveComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCastInsetShadow (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bLightAttachmentsAsGroup (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetRenderingLibrary::SetCastInsetShadowForAllAttachments(class UPrimitiveComponent* PrimitiveComponent, bool bCastInsetShadow, bool bLightAttachmentsAsGroup) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetRenderingLibrary", "SetCastInsetShadowForAllAttachments"); + + Params::KismetRenderingLibrary_SetCastInsetShadowForAllAttachments Parms{}; + + Parms.PrimitiveComponent = PrimitiveComponent; + Parms.bCastInsetShadow = bCastInsetShadow; + Parms.bLightAttachmentsAsGroup = bLightAttachmentsAsGroup; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.KismetStringLibrary.BuildString_Bool +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Bool(const class FString& AppendTo, const class FString& Prefix, bool InBool, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Bool"); + + Params::KismetStringLibrary_BuildString_Bool Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InBool = InBool; + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Color +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Color(const class FString& AppendTo, const class FString& Prefix, const struct FLinearColor& InColor, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Color"); + + Params::KismetStringLibrary_BuildString_Color Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InColor = std::move(InColor); + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Double +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Double(const class FString& AppendTo, const class FString& Prefix, double InDouble, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Double"); + + Params::KismetStringLibrary_BuildString_Double Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InDouble = InDouble; + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Int +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Int(const class FString& AppendTo, const class FString& Prefix, int32 inInt, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Int"); + + Params::KismetStringLibrary_BuildString_Int Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.inInt = inInt; + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_IntVector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FIntVector& InIntVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_IntVector(const class FString& AppendTo, const class FString& Prefix, const struct FIntVector& InIntVector, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_IntVector"); + + Params::KismetStringLibrary_BuildString_IntVector Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InIntVector = std::move(InIntVector); + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Name +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Name(const class FString& AppendTo, const class FString& Prefix, class FName InName, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Name"); + + Params::KismetStringLibrary_BuildString_Name Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InName = InName; + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Object +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* InObj (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Object(const class FString& AppendTo, const class FString& Prefix, class UObject* InObj, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Object"); + + Params::KismetStringLibrary_BuildString_Object Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InObj = InObj; + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Rotator +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Rotator(const class FString& AppendTo, const class FString& Prefix, const struct FRotator& InRot, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Rotator"); + + Params::KismetStringLibrary_BuildString_Rotator Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InRot = std::move(InRot); + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Vector +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& InVector (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Vector(const class FString& AppendTo, const class FString& Prefix, const struct FVector& InVector, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Vector"); + + Params::KismetStringLibrary_BuildString_Vector Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InVector = std::move(InVector); + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.BuildString_Vector2d +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& AppendTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& InVector2D (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Suffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::BuildString_Vector2d(const class FString& AppendTo, const class FString& Prefix, const struct FVector2D& InVector2D, const class FString& Suffix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "BuildString_Vector2d"); + + Params::KismetStringLibrary_BuildString_Vector2d Parms{}; + + Parms.AppendTo = std::move(AppendTo); + Parms.Prefix = std::move(Prefix); + Parms.InVector2D = std::move(InVector2D); + Parms.Suffix = std::move(Suffix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Concat_StrStr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Concat_StrStr(const class FString& A, const class FString& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Concat_StrStr"); + + Params::KismetStringLibrary_Concat_StrStr Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Contains +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SearchIn (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Substring (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSearchFromEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::Contains(const class FString& SearchIn, const class FString& Substring, bool bUseCase, bool bSearchFromEnd) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Contains"); + + Params::KismetStringLibrary_Contains Parms{}; + + Parms.SearchIn = std::move(SearchIn); + Parms.Substring = std::move(Substring); + Parms.bUseCase = bUseCase; + Parms.bSearchFromEnd = bSearchFromEnd; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_BoolToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool InBool (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_BoolToString(bool InBool) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_BoolToString"); + + Params::KismetStringLibrary_Conv_BoolToString Parms{}; + + Parms.InBool = InBool; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_BoxCenterAndExtentsToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_BoxCenterAndExtentsToString(const struct FBox& Box) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_BoxCenterAndExtentsToString"); + + Params::KismetStringLibrary_Conv_BoxCenterAndExtentsToString Parms{}; + + Parms.Box = std::move(Box); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_BoxToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FBox& Box (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_BoxToString(const struct FBox& Box) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_BoxToString"); + + Params::KismetStringLibrary_Conv_BoxToString Parms{}; + + Parms.Box = std::move(Box); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_ByteToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// uint8 InByte (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_ByteToString(uint8 InByte) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_ByteToString"); + + Params::KismetStringLibrary_Conv_ByteToString Parms{}; + + Parms.InByte = InByte; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_ColorToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FLinearColor& InColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_ColorToString(const struct FLinearColor& InColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_ColorToString"); + + Params::KismetStringLibrary_Conv_ColorToString Parms{}; + + Parms.InColor = std::move(InColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_DoubleToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// double InDouble (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_DoubleToString(double InDouble) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_DoubleToString"); + + Params::KismetStringLibrary_Conv_DoubleToString Parms{}; + + Parms.InDouble = InDouble; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_InputDeviceIdToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FInputDeviceId& InDeviceId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_InputDeviceIdToString(const struct FInputDeviceId& InDeviceId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_InputDeviceIdToString"); + + Params::KismetStringLibrary_Conv_InputDeviceIdToString Parms{}; + + Parms.InDeviceId = std::move(InDeviceId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_Int64ToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int64 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_Int64ToString(int64 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_Int64ToString"); + + Params::KismetStringLibrary_Conv_Int64ToString Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_IntPointToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntPoint& InIntPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_IntPointToString(const struct FIntPoint& InIntPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_IntPointToString"); + + Params::KismetStringLibrary_Conv_IntPointToString Parms{}; + + Parms.InIntPoint = std::move(InIntPoint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_IntToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 inInt (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_IntToString(int32 inInt) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_IntToString"); + + Params::KismetStringLibrary_Conv_IntToString Parms{}; + + Parms.inInt = inInt; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_IntVectorToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FIntVector& InIntVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_IntVectorToString(const struct FIntVector& InIntVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_IntVectorToString"); + + Params::KismetStringLibrary_Conv_IntVectorToString Parms{}; + + Parms.InIntVec = std::move(InIntVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_MatrixToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FMatrix& InMatrix (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_MatrixToString(const struct FMatrix& InMatrix) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_MatrixToString"); + + Params::KismetStringLibrary_Conv_MatrixToString Parms{}; + + Parms.InMatrix = std::move(InMatrix); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_NameToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FName InName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_NameToString(class FName InName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_NameToString"); + + Params::KismetStringLibrary_Conv_NameToString Parms{}; + + Parms.InName = InName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_ObjectToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* InObj (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_ObjectToString(class UObject* InObj) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_ObjectToString"); + + Params::KismetStringLibrary_Conv_ObjectToString Parms{}; + + Parms.InObj = InObj; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_PlatformUserIdToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FPlatformUserId& InPlatformUserId (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_PlatformUserIdToString(const struct FPlatformUserId& InPlatformUserId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_PlatformUserIdToString"); + + Params::KismetStringLibrary_Conv_PlatformUserIdToString Parms{}; + + Parms.InPlatformUserId = std::move(InPlatformUserId); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_RotatorToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FRotator& InRot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_RotatorToString(const struct FRotator& InRot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_RotatorToString"); + + Params::KismetStringLibrary_Conv_RotatorToString Parms{}; + + Parms.InRot = std::move(InRot); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToColor +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor* OutConvertedColor (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* OutIsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetStringLibrary::Conv_StringToColor(const class FString& InString, struct FLinearColor* OutConvertedColor, bool* OutIsValid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToColor"); + + Params::KismetStringLibrary_Conv_StringToColor Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConvertedColor != nullptr) + *OutConvertedColor = std::move(Parms.OutConvertedColor); + + if (OutIsValid != nullptr) + *OutIsValid = Parms.OutIsValid; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToDouble +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// double ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +double UKismetStringLibrary::Conv_StringToDouble(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToDouble"); + + Params::KismetStringLibrary_Conv_StringToDouble Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToInt +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::Conv_StringToInt(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToInt"); + + Params::KismetStringLibrary_Conv_StringToInt Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToInt64 +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int64 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int64 UKismetStringLibrary::Conv_StringToInt64(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToInt64"); + + Params::KismetStringLibrary_Conv_StringToInt64 Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UKismetStringLibrary::Conv_StringToName(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToName"); + + Params::KismetStringLibrary_Conv_StringToName Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToRotator +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* OutConvertedRotator (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// bool* OutIsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetStringLibrary::Conv_StringToRotator(const class FString& InString, struct FRotator* OutConvertedRotator, bool* OutIsValid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToRotator"); + + Params::KismetStringLibrary_Conv_StringToRotator Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConvertedRotator != nullptr) + *OutConvertedRotator = std::move(Parms.OutConvertedRotator); + + if (OutIsValid != nullptr) + *OutIsValid = Parms.OutIsValid; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToVector +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutConvertedVector (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* OutIsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetStringLibrary::Conv_StringToVector(const class FString& InString, struct FVector* OutConvertedVector, bool* OutIsValid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToVector"); + + Params::KismetStringLibrary_Conv_StringToVector Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConvertedVector != nullptr) + *OutConvertedVector = std::move(Parms.OutConvertedVector); + + if (OutIsValid != nullptr) + *OutIsValid = Parms.OutIsValid; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToVector2D +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* OutConvertedVector2D (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* OutIsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetStringLibrary::Conv_StringToVector2D(const class FString& InString, struct FVector2D* OutConvertedVector2D, bool* OutIsValid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToVector2D"); + + Params::KismetStringLibrary_Conv_StringToVector2D Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConvertedVector2D != nullptr) + *OutConvertedVector2D = std::move(Parms.OutConvertedVector2D); + + if (OutIsValid != nullptr) + *OutIsValid = Parms.OutIsValid; +} + + +// Function Engine.KismetStringLibrary.Conv_StringToVector3f +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector3f* OutConvertedVector (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* OutIsValid (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UKismetStringLibrary::Conv_StringToVector3f(const class FString& InString, struct FVector3f* OutConvertedVector, bool* OutIsValid) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_StringToVector3f"); + + Params::KismetStringLibrary_Conv_StringToVector3f Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutConvertedVector != nullptr) + *OutConvertedVector = std::move(Parms.OutConvertedVector); + + if (OutIsValid != nullptr) + *OutIsValid = Parms.OutIsValid; +} + + +// Function Engine.KismetStringLibrary.Conv_TransformToString +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FTransform& InTrans (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_TransformToString(const struct FTransform& InTrans) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_TransformToString"); + + Params::KismetStringLibrary_Conv_TransformToString Parms{}; + + Parms.InTrans = std::move(InTrans); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_Vector2dToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector2D& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_Vector2dToString(const struct FVector2D& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_Vector2dToString"); + + Params::KismetStringLibrary_Conv_Vector2dToString Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_Vector3fToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector3f& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_Vector3fToString(const struct FVector3f& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_Vector3fToString"); + + Params::KismetStringLibrary_Conv_Vector3fToString Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Conv_VectorToString +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FVector& InVec (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Conv_VectorToString(const struct FVector& InVec) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Conv_VectorToString"); + + Params::KismetStringLibrary_Conv_VectorToString Parms{}; + + Parms.InVec = std::move(InVec); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.CullArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* inArray (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::CullArray(const class FString& SourceString, TArray* inArray) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "CullArray"); + + Params::KismetStringLibrary_CullArray Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (inArray != nullptr) + *inArray = std::move(Parms.inArray); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.EndsWith +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InSuffix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::EndsWith(const class FString& SourceString, const class FString& InSuffix, ESearchCase SearchCase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "EndsWith"); + + Params::KismetStringLibrary_EndsWith Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.InSuffix = std::move(InSuffix); + Parms.SearchCase = SearchCase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.EqualEqual_StriStri +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::EqualEqual_StriStri(const class FString& A, const class FString& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "EqualEqual_StriStri"); + + Params::KismetStringLibrary_EqualEqual_StriStri Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.EqualEqual_StrStr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::EqualEqual_StrStr(const class FString& A, const class FString& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "EqualEqual_StrStr"); + + Params::KismetStringLibrary_EqualEqual_StrStr Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.FindSubstring +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SearchIn (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Substring (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bUseCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bSearchFromEnd (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StartPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::FindSubstring(const class FString& SearchIn, const class FString& Substring, bool bUseCase, bool bSearchFromEnd, int32 StartPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "FindSubstring"); + + Params::KismetStringLibrary_FindSubstring Parms{}; + + Parms.SearchIn = std::move(SearchIn); + Parms.Substring = std::move(Substring); + Parms.bUseCase = bUseCase; + Parms.bSearchFromEnd = bSearchFromEnd; + Parms.StartPosition = StartPosition; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.GetCharacterArrayFromString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetStringLibrary::GetCharacterArrayFromString(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "GetCharacterArrayFromString"); + + Params::KismetStringLibrary_GetCharacterArrayFromString Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.GetCharacterAsNumber +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::GetCharacterAsNumber(const class FString& SourceString, int32 Index_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "GetCharacterAsNumber"); + + Params::KismetStringLibrary_GetCharacterAsNumber Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.GetSubstring +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 StartIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::GetSubstring(const class FString& SourceString, int32 StartIndex, int32 Length) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "GetSubstring"); + + Params::KismetStringLibrary_GetSubstring Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.StartIndex = StartIndex; + Parms.Length = Length; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.IsEmpty +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::IsEmpty(const class FString& InString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "IsEmpty"); + + Params::KismetStringLibrary_IsEmpty Parms{}; + + Parms.InString = std::move(InString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.IsNumeric +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::IsNumeric(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "IsNumeric"); + + Params::KismetStringLibrary_IsNumeric Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.JoinStringArray +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& SourceArray (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const class FString& Separator (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::JoinStringArray(const TArray& SourceArray, const class FString& Separator) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "JoinStringArray"); + + Params::KismetStringLibrary_JoinStringArray Parms{}; + + Parms.SourceArray = std::move(SourceArray); + Parms.Separator = std::move(Separator); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Left +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Count (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Left(const class FString& SourceString, int32 Count) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Left"); + + Params::KismetStringLibrary_Left Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Count = Count; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.LeftChop +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Count (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::LeftChop(const class FString& SourceString, int32 Count) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "LeftChop"); + + Params::KismetStringLibrary_LeftChop Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Count = Count; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.LeftPad +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ChCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::LeftPad(const class FString& SourceString, int32 ChCount) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "LeftPad"); + + Params::KismetStringLibrary_LeftPad Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.ChCount = ChCount; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Len +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& S (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::Len(const class FString& S) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Len"); + + Params::KismetStringLibrary_Len Parms{}; + + Parms.S = std::move(S); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.MatchesWildcard +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Wildcard (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::MatchesWildcard(const class FString& SourceString, const class FString& Wildcard, ESearchCase SearchCase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "MatchesWildcard"); + + Params::KismetStringLibrary_MatchesWildcard Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Wildcard = std::move(Wildcard); + Parms.SearchCase = SearchCase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Mid +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Count (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Mid(const class FString& SourceString, int32 Start, int32 Count) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Mid"); + + Params::KismetStringLibrary_Mid Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Start = Start; + Parms.Count = Count; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.NotEqual_StriStri +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::NotEqual_StriStri(const class FString& A, const class FString& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "NotEqual_StriStri"); + + Params::KismetStringLibrary_NotEqual_StriStri Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.NotEqual_StrStr +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& A (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& B (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::NotEqual_StrStr(const class FString& A, const class FString& B) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "NotEqual_StrStr"); + + Params::KismetStringLibrary_NotEqual_StrStr Parms{}; + + Parms.A = std::move(A); + Parms.B = std::move(B); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.ParseIntoArray +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Delimiter (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const bool CullEmptyStrings (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetStringLibrary::ParseIntoArray(const class FString& SourceString, const class FString& Delimiter, const bool CullEmptyStrings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "ParseIntoArray"); + + Params::KismetStringLibrary_ParseIntoArray Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Delimiter = std::move(Delimiter); + Parms.CullEmptyStrings = CullEmptyStrings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Replace +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& From (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& To (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Replace(const class FString& SourceString, const class FString& From, const class FString& To, ESearchCase SearchCase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Replace"); + + Params::KismetStringLibrary_Replace Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.From = std::move(From); + Parms.To = std::move(To); + Parms.SearchCase = SearchCase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.ReplaceInline +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class FString& SourceString (Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& SearchText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& ReplacementText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UKismetStringLibrary::ReplaceInline(class FString& SourceString, const class FString& SearchText, const class FString& ReplacementText, ESearchCase SearchCase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "ReplaceInline"); + + Params::KismetStringLibrary_ReplaceInline Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.SearchText = std::move(SearchText); + Parms.ReplacementText = std::move(ReplacementText); + Parms.SearchCase = SearchCase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + SourceString = std::move(Parms.SourceString); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Reverse +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Reverse(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Reverse"); + + Params::KismetStringLibrary_Reverse Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Right +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Count (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Right(const class FString& SourceString, int32 Count) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Right"); + + Params::KismetStringLibrary_Right Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Count = Count; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.RightChop +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Count (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::RightChop(const class FString& SourceString, int32 Count) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "RightChop"); + + Params::KismetStringLibrary_RightChop Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.Count = Count; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.RightPad +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ChCount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::RightPad(const class FString& SourceString, int32 ChCount) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "RightPad"); + + Params::KismetStringLibrary_RightPad Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.ChCount = ChCount; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Split +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InStr (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* LeftS (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* RightS (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchDir SearchDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::Split(const class FString& SourceString, const class FString& InStr, class FString* LeftS, class FString* RightS, ESearchCase SearchCase, ESearchDir SearchDir) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Split"); + + Params::KismetStringLibrary_Split Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.InStr = std::move(InStr); + Parms.SearchCase = SearchCase; + Parms.SearchDir = SearchDir; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (LeftS != nullptr) + *LeftS = std::move(Parms.LeftS); + + if (RightS != nullptr) + *RightS = std::move(Parms.RightS); + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.StartsWith +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InPrefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// ESearchCase SearchCase (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringLibrary::StartsWith(const class FString& SourceString, const class FString& InPrefix, ESearchCase SearchCase) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "StartsWith"); + + Params::KismetStringLibrary_StartsWith Parms{}; + + Parms.SourceString = std::move(SourceString); + Parms.InPrefix = std::move(InPrefix); + Parms.SearchCase = SearchCase; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.TimeSecondsToString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// float InSeconds (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::TimeSecondsToString(float InSeconds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "TimeSecondsToString"); + + Params::KismetStringLibrary_TimeSecondsToString Parms{}; + + Parms.InSeconds = InSeconds; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.ToLower +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::ToLower(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "ToLower"); + + Params::KismetStringLibrary_ToLower Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.ToUpper +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::ToUpper(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "ToUpper"); + + Params::KismetStringLibrary_ToUpper Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.Trim +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::Trim(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "Trim"); + + Params::KismetStringLibrary_Trim Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringLibrary.TrimTrailing +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& SourceString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringLibrary::TrimTrailing(const class FString& SourceString) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringLibrary", "TrimTrailing"); + + Params::KismetStringLibrary_TrimTrailing Parms{}; + + Parms.SourceString = std::move(SourceString); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetKeysFromStringTable +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetStringTableLibrary::GetKeysFromStringTable(const class FName TableId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetKeysFromStringTable"); + + Params::KismetStringTableLibrary_GetKeysFromStringTable Parms{}; + + Parms.TableId = TableId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetMetaDataIdsFromStringTableEntry +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetStringTableLibrary::GetMetaDataIdsFromStringTableEntry(const class FName TableId, const class FString& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetMetaDataIdsFromStringTableEntry"); + + Params::KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry Parms{}; + + Parms.TableId = TableId; + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetRegisteredStringTables +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UKismetStringTableLibrary::GetRegisteredStringTables() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetRegisteredStringTables"); + + Params::KismetStringTableLibrary_GetRegisteredStringTables Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetTableEntryMetaData +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FName MetaDataId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringTableLibrary::GetTableEntryMetaData(const class FName TableId, const class FString& Key, const class FName MetaDataId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetTableEntryMetaData"); + + Params::KismetStringTableLibrary_GetTableEntryMetaData Parms{}; + + Parms.TableId = TableId; + Parms.Key = std::move(Key); + Parms.MetaDataId = MetaDataId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetTableEntrySourceString +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringTableLibrary::GetTableEntrySourceString(const class FName TableId, const class FString& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetTableEntrySourceString"); + + Params::KismetStringTableLibrary_GetTableEntrySourceString Parms{}; + + Parms.TableId = TableId; + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.GetTableNamespace +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UKismetStringTableLibrary::GetTableNamespace(const class FName TableId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "GetTableNamespace"); + + Params::KismetStringTableLibrary_GetTableNamespace Parms{}; + + Parms.TableId = TableId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.IsRegisteredTableEntry +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Key (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringTableLibrary::IsRegisteredTableEntry(const class FName TableId, const class FString& Key) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "IsRegisteredTableEntry"); + + Params::KismetStringTableLibrary_IsRegisteredTableEntry Parms{}; + + Parms.TableId = TableId; + Parms.Key = std::move(Key); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.KismetStringTableLibrary.IsRegisteredTableId +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FName TableId (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UKismetStringTableLibrary::IsRegisteredTableId(const class FName TableId) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("KismetStringTableLibrary", "IsRegisteredTableId"); + + Params::KismetStringTableLibrary_IsRegisteredTableId Parms{}; + + Parms.TableId = TableId; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.AutomationDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::AutomationDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "AutomationDir"); + + Params::BlueprintPathsLibrary_AutomationDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.AutomationLogDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::AutomationLogDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "AutomationLogDir"); + + Params::BlueprintPathsLibrary_AutomationLogDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.AutomationTransientDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::AutomationTransientDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "AutomationTransientDir"); + + Params::BlueprintPathsLibrary_AutomationTransientDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.BugItDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::BugItDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "BugItDir"); + + Params::BlueprintPathsLibrary_BugItDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ChangeExtension +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InNewExtension (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ChangeExtension(const class FString& InPath, const class FString& InNewExtension) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ChangeExtension"); + + Params::BlueprintPathsLibrary_ChangeExtension Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InNewExtension = std::move(InNewExtension); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.CloudDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::CloudDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "CloudDir"); + + Params::BlueprintPathsLibrary_CloudDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.CollapseRelativeDirectories +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::CollapseRelativeDirectories(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "CollapseRelativeDirectories"); + + Params::BlueprintPathsLibrary_CollapseRelativeDirectories Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.Combine +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray& InPaths (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::Combine(const TArray& InPaths) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "Combine"); + + Params::BlueprintPathsLibrary_Combine Parms{}; + + Parms.InPaths = std::move(InPaths); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ConvertFromSandboxPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InSandboxName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ConvertFromSandboxPath(const class FString& InPath, const class FString& InSandboxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ConvertFromSandboxPath"); + + Params::BlueprintPathsLibrary_ConvertFromSandboxPath Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InSandboxName = std::move(InSandboxName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ConvertRelativePathToFull +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InBasePath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ConvertRelativePathToFull(const class FString& InPath, const class FString& InBasePath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ConvertRelativePathToFull"); + + Params::BlueprintPathsLibrary_ConvertRelativePathToFull Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InBasePath = std::move(InBasePath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ConvertToSandboxPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InSandboxName (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ConvertToSandboxPath(const class FString& InPath, const class FString& InSandboxName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ConvertToSandboxPath"); + + Params::BlueprintPathsLibrary_ConvertToSandboxPath Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InSandboxName = std::move(InSandboxName); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.CreateTempFilename +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& Path (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Prefix (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Extension (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::CreateTempFilename(const class FString& Path, const class FString& Prefix, const class FString& Extension) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "CreateTempFilename"); + + Params::BlueprintPathsLibrary_CreateTempFilename Parms{}; + + Parms.Path = std::move(Path); + Parms.Prefix = std::move(Prefix); + Parms.Extension = std::move(Extension); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.DiffDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::DiffDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "DiffDir"); + + Params::BlueprintPathsLibrary_DiffDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.DirectoryExists +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::DirectoryExists(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "DirectoryExists"); + + Params::BlueprintPathsLibrary_DirectoryExists Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineConfigDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineConfigDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineConfigDir"); + + Params::BlueprintPathsLibrary_EngineConfigDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineContentDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineContentDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineContentDir"); + + Params::BlueprintPathsLibrary_EngineContentDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineDir"); + + Params::BlueprintPathsLibrary_EngineDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineIntermediateDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineIntermediateDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineIntermediateDir"); + + Params::BlueprintPathsLibrary_EngineIntermediateDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EnginePluginsDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EnginePluginsDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EnginePluginsDir"); + + Params::BlueprintPathsLibrary_EnginePluginsDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineSavedDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineSavedDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineSavedDir"); + + Params::BlueprintPathsLibrary_EngineSavedDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineSourceDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineSourceDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineSourceDir"); + + Params::BlueprintPathsLibrary_EngineSourceDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineUserDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineUserDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineUserDir"); + + Params::BlueprintPathsLibrary_EngineUserDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EngineVersionAgnosticUserDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EngineVersionAgnosticUserDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EngineVersionAgnosticUserDir"); + + Params::BlueprintPathsLibrary_EngineVersionAgnosticUserDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EnterpriseDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EnterpriseDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EnterpriseDir"); + + Params::BlueprintPathsLibrary_EnterpriseDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EnterpriseFeaturePackDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EnterpriseFeaturePackDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EnterpriseFeaturePackDir"); + + Params::BlueprintPathsLibrary_EnterpriseFeaturePackDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.EnterprisePluginsDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::EnterprisePluginsDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "EnterprisePluginsDir"); + + Params::BlueprintPathsLibrary_EnterprisePluginsDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.FeaturePackDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::FeaturePackDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "FeaturePackDir"); + + Params::BlueprintPathsLibrary_FeaturePackDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.FileExists +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::FileExists(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "FileExists"); + + Params::BlueprintPathsLibrary_FileExists Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GameAgnosticSavedDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GameAgnosticSavedDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GameAgnosticSavedDir"); + + Params::BlueprintPathsLibrary_GameAgnosticSavedDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GameDevelopersDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GameDevelopersDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GameDevelopersDir"); + + Params::BlueprintPathsLibrary_GameDevelopersDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GameSourceDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GameSourceDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GameSourceDir"); + + Params::BlueprintPathsLibrary_GameSourceDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GameUserDeveloperDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GameUserDeveloperDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GameUserDeveloperDir"); + + Params::BlueprintPathsLibrary_GameUserDeveloperDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GeneratedConfigDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GeneratedConfigDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GeneratedConfigDir"); + + Params::BlueprintPathsLibrary_GeneratedConfigDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetBaseFilename +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bRemovePath (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetBaseFilename(const class FString& InPath, bool bRemovePath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetBaseFilename"); + + Params::BlueprintPathsLibrary_GetBaseFilename Parms{}; + + Parms.InPath = std::move(InPath); + Parms.bRemovePath = bRemovePath; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetCleanFilename +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetCleanFilename(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetCleanFilename"); + + Params::BlueprintPathsLibrary_GetCleanFilename Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetEditorLocalizationPaths +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetEditorLocalizationPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetEditorLocalizationPaths"); + + Params::BlueprintPathsLibrary_GetEditorLocalizationPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetEngineLocalizationPaths +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetEngineLocalizationPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetEngineLocalizationPaths"); + + Params::BlueprintPathsLibrary_GetEngineLocalizationPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetExtension +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bIncludeDot (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetExtension(const class FString& InPath, bool bIncludeDot) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetExtension"); + + Params::BlueprintPathsLibrary_GetExtension Parms{}; + + Parms.InPath = std::move(InPath); + Parms.bIncludeDot = bIncludeDot; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetGameLocalizationPaths +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetGameLocalizationPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetGameLocalizationPaths"); + + Params::BlueprintPathsLibrary_GetGameLocalizationPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetInvalidFileSystemChars +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetInvalidFileSystemChars() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetInvalidFileSystemChars"); + + Params::BlueprintPathsLibrary_GetInvalidFileSystemChars Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetPath(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetPath"); + + Params::BlueprintPathsLibrary_GetPath Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetProjectFilePath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetProjectFilePath() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetProjectFilePath"); + + Params::BlueprintPathsLibrary_GetProjectFilePath Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetPropertyNameLocalizationPaths +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetPropertyNameLocalizationPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetPropertyNameLocalizationPaths"); + + Params::BlueprintPathsLibrary_GetPropertyNameLocalizationPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetRelativePathToRoot +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::GetRelativePathToRoot() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetRelativePathToRoot"); + + Params::BlueprintPathsLibrary_GetRelativePathToRoot Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetRestrictedFolderNames +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetRestrictedFolderNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetRestrictedFolderNames"); + + Params::BlueprintPathsLibrary_GetRestrictedFolderNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.GetToolTipLocalizationPaths +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UBlueprintPathsLibrary::GetToolTipLocalizationPaths() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "GetToolTipLocalizationPaths"); + + Params::BlueprintPathsLibrary_GetToolTipLocalizationPaths Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.HasProjectPersistentDownloadDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::HasProjectPersistentDownloadDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "HasProjectPersistentDownloadDir"); + + Params::BlueprintPathsLibrary_HasProjectPersistentDownloadDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.IsDrive +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::IsDrive(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "IsDrive"); + + Params::BlueprintPathsLibrary_IsDrive Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.IsProjectFilePathSet +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::IsProjectFilePathSet() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "IsProjectFilePathSet"); + + Params::BlueprintPathsLibrary_IsProjectFilePathSet Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.IsRelative +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::IsRelative(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "IsRelative"); + + Params::BlueprintPathsLibrary_IsRelative Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.IsRestrictedPath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::IsRestrictedPath(const class FString& InPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "IsRestrictedPath"); + + Params::BlueprintPathsLibrary_IsRestrictedPath Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.IsSamePath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& PathA (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& PathB (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::IsSamePath(const class FString& PathA, const class FString& PathB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "IsSamePath"); + + Params::BlueprintPathsLibrary_IsSamePath Parms{}; + + Parms.PathA = std::move(PathA); + Parms.PathB = std::move(PathB); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.LaunchDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::LaunchDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "LaunchDir"); + + Params::BlueprintPathsLibrary_LaunchDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.MakePathRelativeTo +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InRelativeTo (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::MakePathRelativeTo(const class FString& InPath, const class FString& InRelativeTo, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "MakePathRelativeTo"); + + Params::BlueprintPathsLibrary_MakePathRelativeTo Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InRelativeTo = std::move(InRelativeTo); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.MakePlatformFilename +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::MakePlatformFilename(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "MakePlatformFilename"); + + Params::BlueprintPathsLibrary_MakePlatformFilename Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); +} + + +// Function Engine.BlueprintPathsLibrary.MakeStandardFilename +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::MakeStandardFilename(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "MakeStandardFilename"); + + Params::BlueprintPathsLibrary_MakeStandardFilename Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); +} + + +// Function Engine.BlueprintPathsLibrary.MakeValidFileName +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InString (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InReplacementChar (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::MakeValidFileName(const class FString& InString, const class FString& InReplacementChar) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "MakeValidFileName"); + + Params::BlueprintPathsLibrary_MakeValidFileName Parms{}; + + Parms.InString = std::move(InString); + Parms.InReplacementChar = std::move(InReplacementChar); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.NormalizeDirectoryName +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::NormalizeDirectoryName(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "NormalizeDirectoryName"); + + Params::BlueprintPathsLibrary_NormalizeDirectoryName Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); +} + + +// Function Engine.BlueprintPathsLibrary.NormalizeFilename +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::NormalizeFilename(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "NormalizeFilename"); + + Params::BlueprintPathsLibrary_NormalizeFilename Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); +} + + +// Function Engine.BlueprintPathsLibrary.ProfilingDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProfilingDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProfilingDir"); + + Params::BlueprintPathsLibrary_ProfilingDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectConfigDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectConfigDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectConfigDir"); + + Params::BlueprintPathsLibrary_ProjectConfigDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectContentDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectContentDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectContentDir"); + + Params::BlueprintPathsLibrary_ProjectContentDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectDir"); + + Params::BlueprintPathsLibrary_ProjectDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectIntermediateDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectIntermediateDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectIntermediateDir"); + + Params::BlueprintPathsLibrary_ProjectIntermediateDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectLogDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectLogDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectLogDir"); + + Params::BlueprintPathsLibrary_ProjectLogDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectModsDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectModsDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectModsDir"); + + Params::BlueprintPathsLibrary_ProjectModsDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectPersistentDownloadDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectPersistentDownloadDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectPersistentDownloadDir"); + + Params::BlueprintPathsLibrary_ProjectPersistentDownloadDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectPluginsDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectPluginsDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectPluginsDir"); + + Params::BlueprintPathsLibrary_ProjectPluginsDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectSavedDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectSavedDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectSavedDir"); + + Params::BlueprintPathsLibrary_ProjectSavedDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ProjectUserDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ProjectUserDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ProjectUserDir"); + + Params::BlueprintPathsLibrary_ProjectUserDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.RemoveDuplicateSlashes +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* OutPath (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::RemoveDuplicateSlashes(const class FString& InPath, class FString* OutPath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "RemoveDuplicateSlashes"); + + Params::BlueprintPathsLibrary_RemoveDuplicateSlashes Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutPath != nullptr) + *OutPath = std::move(Parms.OutPath); +} + + +// Function Engine.BlueprintPathsLibrary.RootDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::RootDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "RootDir"); + + Params::BlueprintPathsLibrary_RootDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.SandboxesDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::SandboxesDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "SandboxesDir"); + + Params::BlueprintPathsLibrary_SandboxesDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ScreenShotDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ScreenShotDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ScreenShotDir"); + + Params::BlueprintPathsLibrary_ScreenShotDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.SetExtension +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& InNewExtension (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::SetExtension(const class FString& InPath, const class FString& InNewExtension) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "SetExtension"); + + Params::BlueprintPathsLibrary_SetExtension Parms{}; + + Parms.InPath = std::move(InPath); + Parms.InNewExtension = std::move(InNewExtension); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.SetProjectFilePath +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& NewGameProjectFilePath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::SetProjectFilePath(const class FString& NewGameProjectFilePath) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "SetProjectFilePath"); + + Params::BlueprintPathsLibrary_SetProjectFilePath Parms{}; + + Parms.NewGameProjectFilePath = std::move(NewGameProjectFilePath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.BlueprintPathsLibrary.ShaderWorkingDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::ShaderWorkingDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ShaderWorkingDir"); + + Params::BlueprintPathsLibrary_ShaderWorkingDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.ShouldSaveToUserDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UBlueprintPathsLibrary::ShouldSaveToUserDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ShouldSaveToUserDir"); + + Params::BlueprintPathsLibrary_ShouldSaveToUserDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.SourceConfigDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::SourceConfigDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "SourceConfigDir"); + + Params::BlueprintPathsLibrary_SourceConfigDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.BlueprintPathsLibrary.Split +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* PathPart (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* FilenamePart (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FString* ExtensionPart (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::Split(const class FString& InPath, class FString* PathPart, class FString* FilenamePart, class FString* ExtensionPart) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "Split"); + + Params::BlueprintPathsLibrary_Split Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PathPart != nullptr) + *PathPart = std::move(Parms.PathPart); + + if (FilenamePart != nullptr) + *FilenamePart = std::move(Parms.FilenamePart); + + if (ExtensionPart != nullptr) + *ExtensionPart = std::move(Parms.ExtensionPart); +} + + +// Function Engine.BlueprintPathsLibrary.ValidatePath +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const class FString& InPath (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bDidSucceed (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FText* OutReason (Parm, OutParm, NativeAccessSpecifierPublic) + +void UBlueprintPathsLibrary::ValidatePath(const class FString& InPath, bool* bDidSucceed, class FText* OutReason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "ValidatePath"); + + Params::BlueprintPathsLibrary_ValidatePath Parms{}; + + Parms.InPath = std::move(InPath); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bDidSucceed != nullptr) + *bDidSucceed = Parms.bDidSucceed; + + if (OutReason != nullptr) + *OutReason = std::move(Parms.OutReason); +} + + +// Function Engine.BlueprintPathsLibrary.VideoCaptureDir +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class FString ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FString UBlueprintPathsLibrary::VideoCaptureDir() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("BlueprintPathsLibrary", "VideoCaptureDir"); + + Params::BlueprintPathsLibrary_VideoCaptureDir Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelInstance.OnRep_LevelInstanceSpawnGuid +// (Final, RequiredAPI, Native, Public) + +void ALevelInstance::OnRep_LevelInstanceSpawnGuid() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LevelInstance", "OnRep_LevelInstanceSpawnGuid"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ImportanceSamplingLibrary.BreakImportanceTexture +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FImportanceTexture& ImportanceTexture (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// class UTexture2D** Texture (Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EImportanceWeight* WeightingFunc (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UImportanceSamplingLibrary::BreakImportanceTexture(const struct FImportanceTexture& ImportanceTexture, class UTexture2D** Texture, EImportanceWeight* WeightingFunc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "BreakImportanceTexture"); + + Params::ImportanceSamplingLibrary_BreakImportanceTexture Parms{}; + + Parms.ImportanceTexture = std::move(ImportanceTexture); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (Texture != nullptr) + *Texture = Parms.Texture; + + if (WeightingFunc != nullptr) + *WeightingFunc = Parms.WeightingFunc; +} + + +// Function Engine.ImportanceSamplingLibrary.ImportanceSample +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// const struct FImportanceTexture& Texture (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// const struct FVector2D& Rand (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Samples (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Intensity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D* SamplePosition (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor* SampleColor (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SampleIntensity (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float* SampleSize (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UImportanceSamplingLibrary::ImportanceSample(const struct FImportanceTexture& Texture, const struct FVector2D& Rand, int32 Samples, float Intensity, struct FVector2D* SamplePosition, struct FLinearColor* SampleColor, float* SampleIntensity, float* SampleSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "ImportanceSample"); + + Params::ImportanceSamplingLibrary_ImportanceSample Parms{}; + + Parms.Texture = std::move(Texture); + Parms.Rand = std::move(Rand); + Parms.Samples = Samples; + Parms.Intensity = Intensity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (SamplePosition != nullptr) + *SamplePosition = std::move(Parms.SamplePosition); + + if (SampleColor != nullptr) + *SampleColor = std::move(Parms.SampleColor); + + if (SampleIntensity != nullptr) + *SampleIntensity = Parms.SampleIntensity; + + if (SampleSize != nullptr) + *SampleSize = Parms.SampleSize; +} + + +// Function Engine.ImportanceSamplingLibrary.MakeImportanceTexture +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UTexture2D* Texture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EImportanceWeight WeightingFunc (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FImportanceTexture ReturnValue (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) + +struct FImportanceTexture UImportanceSamplingLibrary::MakeImportanceTexture(class UTexture2D* Texture, EImportanceWeight WeightingFunc) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "MakeImportanceTexture"); + + Params::ImportanceSamplingLibrary_MakeImportanceTexture Parms{}; + + Parms.Texture = Texture; + Parms.WeightingFunc = WeightingFunc; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.NextSobolCell2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumCells (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& PreviousValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UImportanceSamplingLibrary::NextSobolCell2D(int32 Index_0, int32 NumCells, const struct FVector2D& PreviousValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "NextSobolCell2D"); + + Params::ImportanceSamplingLibrary_NextSobolCell2D Parms{}; + + Parms.Index_0 = Index_0; + Parms.NumCells = NumCells; + Parms.PreviousValue = std::move(PreviousValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.NextSobolCell3D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumCells (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PreviousValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UImportanceSamplingLibrary::NextSobolCell3D(int32 Index_0, int32 NumCells, const struct FVector& PreviousValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "NextSobolCell3D"); + + Params::ImportanceSamplingLibrary_NextSobolCell3D Parms{}; + + Parms.Index_0 = Index_0; + Parms.NumCells = NumCells; + Parms.PreviousValue = std::move(PreviousValue); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.NextSobolFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Dimension (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float PreviousValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UImportanceSamplingLibrary::NextSobolFloat(int32 Index_0, int32 Dimension, float PreviousValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "NextSobolFloat"); + + Params::ImportanceSamplingLibrary_NextSobolFloat Parms{}; + + Parms.Index_0 = Index_0; + Parms.Dimension = Dimension; + Parms.PreviousValue = PreviousValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.RandomSobolCell2D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumCells (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Cell (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Seed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UImportanceSamplingLibrary::RandomSobolCell2D(int32 Index_0, int32 NumCells, const struct FVector2D& Cell, const struct FVector2D& Seed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "RandomSobolCell2D"); + + Params::ImportanceSamplingLibrary_RandomSobolCell2D Parms{}; + + Parms.Index_0 = Index_0; + Parms.NumCells = NumCells; + Parms.Cell = std::move(Cell); + Parms.Seed = std::move(Seed); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.RandomSobolCell3D +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumCells (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Cell (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Seed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UImportanceSamplingLibrary::RandomSobolCell3D(int32 Index_0, int32 NumCells, const struct FVector& Cell, const struct FVector& Seed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "RandomSobolCell3D"); + + Params::ImportanceSamplingLibrary_RandomSobolCell3D Parms{}; + + Parms.Index_0 = Index_0; + Parms.NumCells = NumCells; + Parms.Cell = std::move(Cell); + Parms.Seed = std::move(Seed); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ImportanceSamplingLibrary.RandomSobolFloat +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 Dimension (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Seed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UImportanceSamplingLibrary::RandomSobolFloat(int32 Index_0, int32 Dimension, float Seed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("ImportanceSamplingLibrary", "RandomSobolFloat"); + + Params::ImportanceSamplingLibrary_RandomSobolFloat Parms{}; + + Parms.Index_0 = Index_0; + Parms.Dimension = Dimension; + Parms.Seed = Seed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelInstanceInterface.LoadLevelInstance +// (RequiredAPI, Native, Public, BlueprintCallable) + +void ILevelInstanceInterface::LoadLevelInstance() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "LoadLevelInstance"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelInstanceInterface.SetWorldAsset +// (Native, Public, BlueprintCallable) +// Parameters: +// TSoftObjectPtr WorldAsset (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ILevelInstanceInterface::SetWorldAsset(TSoftObjectPtr WorldAsset) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "SetWorldAsset"); + + Params::LevelInstanceInterface_SetWorldAsset Parms{}; + + Parms.WorldAsset = WorldAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelInstanceInterface.UnloadLevelInstance +// (RequiredAPI, Native, Public, BlueprintCallable) + +void ILevelInstanceInterface::UnloadLevelInstance() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "UnloadLevelInstance"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LevelInstanceInterface.GetLoadedLevel +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class ULevel* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULevel* ILevelInstanceInterface::GetLoadedLevel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "GetLoadedLevel"); + + Params::LevelInstanceInterface_GetLoadedLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelInstanceInterface.GetWorldAsset +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TSoftObjectPtr ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const TSoftObjectPtr ILevelInstanceInterface::GetWorldAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "GetWorldAsset"); + + Params::LevelInstanceInterface_GetWorldAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LevelInstanceInterface.IsLoaded +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ILevelInstanceInterface::IsLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("LevelInstanceInterface", "IsLoaded"); + + Params::LevelInstanceInterface_IsLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.BreakConstraint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UPhysicsConstraintComponent::BreakConstraint() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "BreakConstraint"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.GetConstrainedComponents +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent** OutComponent1 (Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* OutBoneName1 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent** OutComponent2 (Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName* OutBoneName2 (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::GetConstrainedComponents(class UPrimitiveComponent** OutComponent1, class FName* OutBoneName1, class UPrimitiveComponent** OutComponent2, class FName* OutBoneName2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetConstrainedComponents"); + + Params::PhysicsConstraintComponent_GetConstrainedComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutComponent1 != nullptr) + *OutComponent1 = Parms.OutComponent1; + + if (OutBoneName1 != nullptr) + *OutBoneName1 = Parms.OutBoneName1; + + if (OutComponent2 != nullptr) + *OutComponent2 = Parms.OutComponent2; + + if (OutBoneName2 != nullptr) + *OutBoneName2 = Parms.OutBoneName2; +} + + +// Function Engine.PhysicsConstraintComponent.GetConstraint +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// struct FConstraintInstanceAccessor ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) + +struct FConstraintInstanceAccessor UPhysicsConstraintComponent::GetConstraint() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetConstraint"); + + Params::PhysicsConstraintComponent_GetConstraint Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.GetConstraintForce +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// struct FVector* OutLinearForce (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* OutAngularForce (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::GetConstraintForce(struct FVector* OutLinearForce, struct FVector* OutAngularForce) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetConstraintForce"); + + Params::PhysicsConstraintComponent_GetConstraintForce Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutLinearForce != nullptr) + *OutLinearForce = std::move(Parms.OutLinearForce); + + if (OutAngularForce != nullptr) + *OutAngularForce = std::move(Parms.OutAngularForce); +} + + +// Function Engine.PhysicsConstraintComponent.IsBroken +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPhysicsConstraintComponent::IsBroken() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "IsBroken"); + + Params::PhysicsConstraintComponent_IsBroken Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularBreakable +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bAngularBreakable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngularBreakThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularBreakable(bool bAngularBreakable, float AngularBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularBreakable"); + + Params::PhysicsConstraintComponent_SetAngularBreakable Parms{}; + + Parms.bAngularBreakable = bAngularBreakable; + Parms.AngularBreakThreshold = AngularBreakThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveAccelerationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bAccelerationMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularDriveAccelerationMode(bool bAccelerationMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularDriveAccelerationMode"); + + Params::PhysicsConstraintComponent_SetAngularDriveAccelerationMode Parms{}; + + Parms.bAccelerationMode = bAccelerationMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EAngularDriveMode DriveMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularDriveMode(EAngularDriveMode DriveMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularDriveMode"); + + Params::PhysicsConstraintComponent_SetAngularDriveMode Parms{}; + + Parms.DriveMode = DriveMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float PositionStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VelocityStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InForceLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularDriveParams(float PositionStrength, float VelocityStrength, float InForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularDriveParams"); + + Params::PhysicsConstraintComponent_SetAngularDriveParams Parms{}; + + Parms.PositionStrength = PositionStrength; + Parms.VelocityStrength = VelocityStrength; + Parms.InForceLimit = InForceLimit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularOrientationDrive +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularOrientationDrive(bool bEnableSwingDrive, bool bEnableTwistDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularOrientationDrive"); + + Params::PhysicsConstraintComponent_SetAngularOrientationDrive Parms{}; + + Parms.bEnableSwingDrive = bEnableSwingDrive; + Parms.bEnableTwistDrive = bEnableTwistDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularOrientationTarget +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& InPosTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularOrientationTarget(const struct FRotator& InPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularOrientationTarget"); + + Params::PhysicsConstraintComponent_SetAngularOrientationTarget Parms{}; + + Parms.InPosTarget = std::move(InPosTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularPlasticity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bAngularPlasticity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AngularPlasticityThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularPlasticity(bool bAngularPlasticity, float AngularPlasticityThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularPlasticity"); + + Params::PhysicsConstraintComponent_SetAngularPlasticity Parms{}; + + Parms.bAngularPlasticity = bAngularPlasticity; + Parms.AngularPlasticityThreshold = AngularPlasticityThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularSwing1Limit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EAngularConstraintMotion MotionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing1LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularSwing1Limit(EAngularConstraintMotion MotionType, float Swing1LimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularSwing1Limit"); + + Params::PhysicsConstraintComponent_SetAngularSwing1Limit Parms{}; + + Parms.MotionType = MotionType; + Parms.Swing1LimitAngle = Swing1LimitAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularSwing2Limit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EAngularConstraintMotion MotionType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Swing2LimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularSwing2Limit(EAngularConstraintMotion MotionType, float Swing2LimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularSwing2Limit"); + + Params::PhysicsConstraintComponent_SetAngularSwing2Limit Parms{}; + + Parms.MotionType = MotionType; + Parms.Swing2LimitAngle = Swing2LimitAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularTwistLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EAngularConstraintMotion ConstraintType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float TwistLimitAngle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularTwistLimit(EAngularConstraintMotion ConstraintType, float TwistLimitAngle) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularTwistLimit"); + + Params::PhysicsConstraintComponent_SetAngularTwistLimit Parms{}; + + Parms.ConstraintType = ConstraintType; + Parms.TwistLimitAngle = TwistLimitAngle; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDrive +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularVelocityDrive(bool bEnableSwingDrive, bool bEnableTwistDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularVelocityDrive"); + + Params::PhysicsConstraintComponent_SetAngularVelocityDrive Parms{}; + + Parms.bEnableSwingDrive = bEnableSwingDrive; + Parms.bEnableTwistDrive = bEnableTwistDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDriveSLERP +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSLERP (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularVelocityDriveSLERP(bool bEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularVelocityDriveSLERP"); + + Params::PhysicsConstraintComponent_SetAngularVelocityDriveSLERP Parms{}; + + Parms.bEnableSLERP = bEnableSLERP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDriveTwistAndSwing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularVelocityDriveTwistAndSwing(bool bEnableTwistDrive, bool bEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularVelocityDriveTwistAndSwing"); + + Params::PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing Parms{}; + + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bEnableSwingDrive = bEnableSwingDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityTarget +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InVelTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetAngularVelocityTarget(const struct FVector& InVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetAngularVelocityTarget"); + + Params::PhysicsConstraintComponent_SetAngularVelocityTarget Parms{}; + + Parms.InVelTarget = std::move(InVelTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetConstrainedComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component1 (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UPrimitiveComponent* Component2 (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName BoneName2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetConstrainedComponents(class UPrimitiveComponent* Component1, class FName BoneName1, class UPrimitiveComponent* Component2, class FName BoneName2) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetConstrainedComponents"); + + Params::PhysicsConstraintComponent_SetConstrainedComponents Parms{}; + + Parms.Component1 = Component1; + Parms.BoneName1 = BoneName1; + Parms.Component2 = Component2; + Parms.BoneName2 = BoneName2; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferenceFrame +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// EConstraintFrame Frame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& RefFrame (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetConstraintReferenceFrame(EConstraintFrame Frame, const struct FTransform& RefFrame) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetConstraintReferenceFrame"); + + Params::PhysicsConstraintComponent_SetConstraintReferenceFrame Parms{}; + + Parms.Frame = Frame; + Parms.RefFrame = std::move(RefFrame); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferenceOrientation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// EConstraintFrame Frame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& PriAxis (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SecAxis (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetConstraintReferenceOrientation(EConstraintFrame Frame, const struct FVector& PriAxis, const struct FVector& SecAxis) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetConstraintReferenceOrientation"); + + Params::PhysicsConstraintComponent_SetConstraintReferenceOrientation Parms{}; + + Parms.Frame = Frame; + Parms.PriAxis = std::move(PriAxis); + Parms.SecAxis = std::move(SecAxis); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferencePosition +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// EConstraintFrame Frame (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& RefPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetConstraintReferencePosition(EConstraintFrame Frame, const struct FVector& RefPosition) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetConstraintReferencePosition"); + + Params::PhysicsConstraintComponent_SetConstraintReferencePosition Parms{}; + + Parms.Frame = Frame; + Parms.RefPosition = std::move(RefPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetContactTransferScale +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ContactTransferScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetContactTransferScale(float ContactTransferScale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetContactTransferScale"); + + Params::PhysicsConstraintComponent_SetContactTransferScale Parms{}; + + Parms.ContactTransferScale = ContactTransferScale; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetDisableCollision +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bDisableCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetDisableCollision(bool bDisableCollision) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetDisableCollision"); + + Params::PhysicsConstraintComponent_SetDisableCollision Parms{}; + + Parms.bDisableCollision = bDisableCollision; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearBreakable +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bLinearBreakable (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearBreakThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearBreakable(bool bLinearBreakable, float LinearBreakThreshold) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearBreakable"); + + Params::PhysicsConstraintComponent_SetLinearBreakable Parms{}; + + Parms.bLinearBreakable = bLinearBreakable; + Parms.LinearBreakThreshold = LinearBreakThreshold; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearDriveAccelerationMode +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bAccelerationMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearDriveAccelerationMode(bool bAccelerationMode) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearDriveAccelerationMode"); + + Params::PhysicsConstraintComponent_SetLinearDriveAccelerationMode Parms{}; + + Parms.bAccelerationMode = bAccelerationMode; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearDriveParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float PositionStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float VelocityStrength (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InForceLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearDriveParams(float PositionStrength, float VelocityStrength, float InForceLimit) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearDriveParams"); + + Params::PhysicsConstraintComponent_SetLinearDriveParams Parms{}; + + Parms.PositionStrength = PositionStrength; + Parms.VelocityStrength = VelocityStrength; + Parms.InForceLimit = InForceLimit; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearPlasticity +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bLinearPlasticity (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LinearPlasticityThreshold (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EConstraintPlasticityType PlasticityType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearPlasticity(bool bLinearPlasticity, float LinearPlasticityThreshold, EConstraintPlasticityType PlasticityType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearPlasticity"); + + Params::PhysicsConstraintComponent_SetLinearPlasticity Parms{}; + + Parms.bLinearPlasticity = bLinearPlasticity; + Parms.LinearPlasticityThreshold = LinearPlasticityThreshold; + Parms.PlasticityType = PlasticityType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearPositionDrive +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableDriveX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearPositionDrive(bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearPositionDrive"); + + Params::PhysicsConstraintComponent_SetLinearPositionDrive Parms{}; + + Parms.bEnableDriveX = bEnableDriveX; + Parms.bEnableDriveY = bEnableDriveY; + Parms.bEnableDriveZ = bEnableDriveZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearPositionTarget +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InPosTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearPositionTarget(const struct FVector& InPosTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearPositionTarget"); + + Params::PhysicsConstraintComponent_SetLinearPositionTarget Parms{}; + + Parms.InPosTarget = std::move(InPosTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearVelocityDrive +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableDriveX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableDriveZ (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearVelocityDrive(bool bEnableDriveX, bool bEnableDriveY, bool bEnableDriveZ) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearVelocityDrive"); + + Params::PhysicsConstraintComponent_SetLinearVelocityDrive Parms{}; + + Parms.bEnableDriveX = bEnableDriveX; + Parms.bEnableDriveY = bEnableDriveY; + Parms.bEnableDriveZ = bEnableDriveZ; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearVelocityTarget +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& InVelTarget (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearVelocityTarget(const struct FVector& InVelTarget) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearVelocityTarget"); + + Params::PhysicsConstraintComponent_SetLinearVelocityTarget Parms{}; + + Parms.InVelTarget = std::move(InVelTarget); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearXLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ELinearConstraintMotion ConstraintType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LimitSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearXLimit(ELinearConstraintMotion ConstraintType, float LimitSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearXLimit"); + + Params::PhysicsConstraintComponent_SetLinearXLimit Parms{}; + + Parms.ConstraintType = ConstraintType; + Parms.LimitSize = LimitSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearYLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ELinearConstraintMotion ConstraintType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LimitSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearYLimit(ELinearConstraintMotion ConstraintType, float LimitSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearYLimit"); + + Params::PhysicsConstraintComponent_SetLinearYLimit Parms{}; + + Parms.ConstraintType = ConstraintType; + Parms.LimitSize = LimitSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetLinearZLimit +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// ELinearConstraintMotion ConstraintType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float LimitSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetLinearZLimit(ELinearConstraintMotion ConstraintType, float LimitSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetLinearZLimit"); + + Params::PhysicsConstraintComponent_SetLinearZLimit Parms{}; + + Parms.ConstraintType = ConstraintType; + Parms.LimitSize = LimitSize; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetOrientationDriveSLERP +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableSLERP (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetOrientationDriveSLERP(bool bEnableSLERP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetOrientationDriveSLERP"); + + Params::PhysicsConstraintComponent_SetOrientationDriveSLERP Parms{}; + + Parms.bEnableSLERP = bEnableSLERP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetOrientationDriveTwistAndSwing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bEnableTwistDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bEnableSwingDrive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetOrientationDriveTwistAndSwing(bool bEnableTwistDrive, bool bEnableSwingDrive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetOrientationDriveTwistAndSwing"); + + Params::PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing Parms{}; + + Parms.bEnableTwistDrive = bEnableTwistDrive; + Parms.bEnableSwingDrive = bEnableSwingDrive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetProjectionEnabled +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bProjectionEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetProjectionEnabled(bool bProjectionEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetProjectionEnabled"); + + Params::PhysicsConstraintComponent_SetProjectionEnabled Parms{}; + + Parms.bProjectionEnabled = bProjectionEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.SetProjectionParams +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ProjectionLinearAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectionAngularAlpha (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectionLinearTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ProjectionAngularTolerance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsConstraintComponent::SetProjectionParams(float ProjectionLinearAlpha, float ProjectionAngularAlpha, float ProjectionLinearTolerance, float ProjectionAngularTolerance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "SetProjectionParams"); + + Params::PhysicsConstraintComponent_SetProjectionParams Parms{}; + + Parms.ProjectionLinearAlpha = ProjectionLinearAlpha; + Parms.ProjectionAngularAlpha = ProjectionAngularAlpha; + Parms.ProjectionLinearTolerance = ProjectionLinearTolerance; + Parms.ProjectionAngularTolerance = ProjectionAngularTolerance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsConstraintComponent.GetCurrentSwing1 +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPhysicsConstraintComponent::GetCurrentSwing1() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetCurrentSwing1"); + + Params::PhysicsConstraintComponent_GetCurrentSwing1 Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.GetCurrentSwing2 +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPhysicsConstraintComponent::GetCurrentSwing2() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetCurrentSwing2"); + + Params::PhysicsConstraintComponent_GetCurrentSwing2 Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.GetCurrentTwist +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPhysicsConstraintComponent::GetCurrentTwist() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "GetCurrentTwist"); + + Params::PhysicsConstraintComponent_GetCurrentTwist Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsConstraintComponent.IsProjectionEnabled +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UPhysicsConstraintComponent::IsProjectionEnabled() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsConstraintComponent", "IsProjectionEnabled"); + + Params::PhysicsConstraintComponent_IsProjectionEnabled Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LightWeightInstanceBlueprintFunctionLibrary.ConvertActorToLightWeightInstance +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FActorInstanceHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FActorInstanceHandle ULightWeightInstanceBlueprintFunctionLibrary::ConvertActorToLightWeightInstance(class AActor* Actor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LightWeightInstanceBlueprintFunctionLibrary", "ConvertActorToLightWeightInstance"); + + Params::LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance Parms{}; + + Parms.Actor = Actor; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LightWeightInstanceBlueprintFunctionLibrary.CreateNewLightWeightInstance +// (Final, RequiredAPI, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UClass* ActorClass (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& Transform (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerInstance* Layer (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorld* World (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FActorInstanceHandle ReturnValue (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FActorInstanceHandle ULightWeightInstanceBlueprintFunctionLibrary::CreateNewLightWeightInstance(class UClass* ActorClass, const struct FTransform& Transform, class UDataLayerInstance* Layer, class UWorld* World) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("LightWeightInstanceBlueprintFunctionLibrary", "CreateNewLightWeightInstance"); + + Params::LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance Parms{}; + + Parms.ActorClass = ActorClass; + Parms.Transform = std::move(Transform); + Parms.Layer = Layer; + Parms.World = World; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LocationVolume.Load +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void ALocationVolume::Load() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocationVolume", "Load"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocationVolume.Unload +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void ALocationVolume::Unload() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocationVolume", "Unload"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.LocationVolume.IsLoaded +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool ALocationVolume::IsLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LocationVolume", "IsLoaded"); + + Params::LocationVolume_IsLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.LODActor.OnSubActorEndPlay +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class AActor* Actor (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EEndPlayReason Reason (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void ALODActor::OnSubActorEndPlay(class AActor* Actor, EEndPlayReason Reason) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("LODActor", "OnSubActorEndPlay"); + + Params::LODActor_OnSubActorEndPlay Parms{}; + + Parms.Actor = Actor; + Parms.Reason = Reason; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MaterialParameterCollection.GetScalarParameterDefaultValue +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bParameterFound (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UMaterialParameterCollection::GetScalarParameterDefaultValue(class FName ParameterName, bool* bParameterFound) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialParameterCollection", "GetScalarParameterDefaultValue"); + + Params::MaterialParameterCollection_GetScalarParameterDefaultValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bParameterFound != nullptr) + *bParameterFound = Parms.bParameterFound; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialParameterCollection.GetScalarParameterNames +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UMaterialParameterCollection::GetScalarParameterNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialParameterCollection", "GetScalarParameterNames"); + + Params::MaterialParameterCollection_GetScalarParameterNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialParameterCollection.GetVectorParameterDefaultValue +// (Final, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ParameterName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool* bParameterFound (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FLinearColor UMaterialParameterCollection::GetVectorParameterDefaultValue(class FName ParameterName, bool* bParameterFound) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialParameterCollection", "GetVectorParameterDefaultValue"); + + Params::MaterialParameterCollection_GetVectorParameterDefaultValue Parms{}; + + Parms.ParameterName = ParameterName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (bParameterFound != nullptr) + *bParameterFound = Parms.bParameterFound; + + return Parms.ReturnValue; +} + + +// Function Engine.MaterialParameterCollection.GetVectorParameterNames +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UMaterialParameterCollection::GetVectorParameterNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("MaterialParameterCollection", "GetVectorParameterNames"); + + Params::MaterialParameterCollection_GetVectorParameterNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.MeshVertexPainterKismetLibrary.PaintVerticesLerpAlongAxis +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UStaticMeshComponent* StaticMeshComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& StartColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& EndColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EVertexPaintAxis Axis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bConvertToSRGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshVertexPainterKismetLibrary::PaintVerticesLerpAlongAxis(class UStaticMeshComponent* StaticMeshComponent, const struct FLinearColor& StartColor, const struct FLinearColor& EndColor, EVertexPaintAxis Axis, bool bConvertToSRGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("MeshVertexPainterKismetLibrary", "PaintVerticesLerpAlongAxis"); + + Params::MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis Parms{}; + + Parms.StaticMeshComponent = StaticMeshComponent; + Parms.StartColor = std::move(StartColor); + Parms.EndColor = std::move(EndColor); + Parms.Axis = Axis; + Parms.bConvertToSRGB = bConvertToSRGB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshVertexPainterKismetLibrary.PaintVerticesSingleColor +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// class UStaticMeshComponent* StaticMeshComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& FillColor (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bConvertToSRGB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshVertexPainterKismetLibrary::PaintVerticesSingleColor(class UStaticMeshComponent* StaticMeshComponent, const struct FLinearColor& FillColor, bool bConvertToSRGB) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("MeshVertexPainterKismetLibrary", "PaintVerticesSingleColor"); + + Params::MeshVertexPainterKismetLibrary_PaintVerticesSingleColor Parms{}; + + Parms.StaticMeshComponent = StaticMeshComponent; + Parms.FillColor = std::move(FillColor); + Parms.bConvertToSRGB = bConvertToSRGB; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.MeshVertexPainterKismetLibrary.RemovePaintedVertices +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UStaticMeshComponent* StaticMeshComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UMeshVertexPainterKismetLibrary::RemovePaintedVertices(class UStaticMeshComponent* StaticMeshComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("MeshVertexPainterKismetLibrary", "RemovePaintedVertices"); + + Params::MeshVertexPainterKismetLibrary_RemovePaintedVertices Parms{}; + + Parms.StaticMeshComponent = StaticMeshComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AsyncPhysicsInputComponent.ServerRPCBufferInput +// (RequiredAPI, Net, Native, Event, Public, NetServer) +// Parameters: +// class UAsyncPhysicsData* AsyncPhysicsData (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UAsyncPhysicsInputComponent::ServerRPCBufferInput(class UAsyncPhysicsData* AsyncPhysicsData) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AsyncPhysicsInputComponent", "ServerRPCBufferInput"); + + Params::AsyncPhysicsInputComponent_ServerRPCBufferInput Parms{}; + + Parms.AsyncPhysicsData = AsyncPhysicsData; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.AsyncPhysicsInputComponent.GetDataToConsume +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UAsyncPhysicsData* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class UAsyncPhysicsData* UAsyncPhysicsInputComponent::GetDataToConsume() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AsyncPhysicsInputComponent", "GetDataToConsume"); + + Params::AsyncPhysicsInputComponent_GetDataToConsume Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.AsyncPhysicsInputComponent.GetDataToWrite +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UAsyncPhysicsData* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAsyncPhysicsData* UAsyncPhysicsInputComponent::GetDataToWrite() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("AsyncPhysicsInputComponent", "GetDataToWrite"); + + Params::AsyncPhysicsInputComponent_GetDataToWrite Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionActor.GetClusterUnionComponent +// (Final, Native, Public, Const) +// Parameters: +// class UClusterUnionComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClusterUnionComponent* AClusterUnionActor::GetClusterUnionComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionActor", "GetClusterUnionComponent"); + + Params::ClusterUnionActor_GetClusterUnionComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionComponent.AddComponentToCluster +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& BoneIds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bRebuildGeometry (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::AddComponentToCluster(class UPrimitiveComponent* InComponent, const TArray& BoneIds, bool bRebuildGeometry) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "AddComponentToCluster"); + + Params::ClusterUnionComponent_AddComponentToCluster Parms{}; + + Parms.InComponent = InComponent; + Parms.BoneIds = std::move(BoneIds); + Parms.bRebuildGeometry = bRebuildGeometry; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.ForceSetChildToParent +// (Final, RequiredAPI, Native, Public, HasOutParams) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& BoneIds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TArray& ChildToParent (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::ForceSetChildToParent(class UPrimitiveComponent* InComponent, const TArray& BoneIds, const TArray& ChildToParent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "ForceSetChildToParent"); + + Params::ClusterUnionComponent_ForceSetChildToParent Parms{}; + + Parms.InComponent = InComponent; + Parms.BoneIds = std::move(BoneIds); + Parms.ChildToParent = std::move(ChildToParent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.GetActors +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UClusterUnionComponent::GetActors() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "GetActors"); + + Params::ClusterUnionComponent_GetActors Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionComponent.GetPrimitiveComponents +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TArray ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + +TArray UClusterUnionComponent::GetPrimitiveComponents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "GetPrimitiveComponents"); + + Params::ClusterUnionComponent_GetPrimitiveComponents Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionComponent.HandleComponentPhysicsStateChange +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class UPrimitiveComponent* ChangedComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EComponentPhysicsStateChange StateChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::HandleComponentPhysicsStateChange(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "HandleComponentPhysicsStateChange"); + + Params::ClusterUnionComponent_HandleComponentPhysicsStateChange Parms{}; + + Parms.ChangedComponent = ChangedComponent; + Parms.StateChange = StateChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.HandleComponentPhysicsStateChangePostAddIntoClusterUnion +// (Final, RequiredAPI, Native, Private) +// Parameters: +// class UPrimitiveComponent* ChangedComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EComponentPhysicsStateChange StateChange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::HandleComponentPhysicsStateChangePostAddIntoClusterUnion(class UPrimitiveComponent* ChangedComponent, EComponentPhysicsStateChange StateChange) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "HandleComponentPhysicsStateChangePostAddIntoClusterUnion"); + + Params::ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion Parms{}; + + Parms.ChangedComponent = ChangedComponent; + Parms.StateChange = StateChange; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.IsComponentAdded +// (Final, Native, Public) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UClusterUnionComponent::IsComponentAdded(class UPrimitiveComponent* Component) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "IsComponentAdded"); + + Params::ClusterUnionComponent_IsComponentAdded Parms{}; + + Parms.Component = Component; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionComponent.OnRep_RigidState +// (RequiredAPI, Native, Protected) + +void UClusterUnionComponent::OnRep_RigidState() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "OnRep_RigidState"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.RemoveComponentBonesFromCluster +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& BoneIds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::RemoveComponentBonesFromCluster(class UPrimitiveComponent* InComponent, const TArray& BoneIds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "RemoveComponentBonesFromCluster"); + + Params::ClusterUnionComponent_RemoveComponentBonesFromCluster Parms{}; + + Parms.InComponent = InComponent; + Parms.BoneIds = std::move(BoneIds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.RemoveComponentFromCluster +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::RemoveComponentFromCluster(class UPrimitiveComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "RemoveComponentFromCluster"); + + Params::ClusterUnionComponent_RemoveComponentFromCluster Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.SetEnableDamageFromCollision +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bValue (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::SetEnableDamageFromCollision(bool bValue) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "SetEnableDamageFromCollision"); + + Params::ClusterUnionComponent_SetEnableDamageFromCollision Parms{}; + + Parms.bValue = bValue; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.SetIsAnchored +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool bIsAnchored (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionComponent::SetIsAnchored(bool bIsAnchored) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "SetIsAnchored"); + + Params::ClusterUnionComponent_SetIsAnchored Parms{}; + + Parms.bIsAnchored = bIsAnchored; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionComponent.IsAuthority +// (Final, RequiredAPI, Native, Protected, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UClusterUnionComponent::IsAuthority() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionComponent", "IsAuthority"); + + Params::ClusterUnionComponent_IsAuthority Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.IsPendingDeletion +// (Final, Native, Public) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UClusterUnionReplicatedProxyComponent::IsPendingDeletion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "IsPendingDeletion"); + + Params::ClusterUnionReplicatedProxyComponent_IsPendingDeletion Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.MarkPendingDeletion +// (Final, Native, Public) + +void UClusterUnionReplicatedProxyComponent::MarkPendingDeletion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "MarkPendingDeletion"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.OnRep_ChildClusteredComponent +// (Final, RequiredAPI, Native, Protected) + +void UClusterUnionReplicatedProxyComponent::OnRep_ChildClusteredComponent() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "OnRep_ChildClusteredComponent"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.OnRep_ParentClusterUnion +// (Final, RequiredAPI, Native, Protected) + +void UClusterUnionReplicatedProxyComponent::OnRep_ParentClusterUnion() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "OnRep_ParentClusterUnion"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.OnRep_ParticleBoneIds +// (Final, RequiredAPI, Native, Protected) + +void UClusterUnionReplicatedProxyComponent::OnRep_ParticleBoneIds() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "OnRep_ParticleBoneIds"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.OnRep_ParticleChildToParents +// (Final, RequiredAPI, Native, Protected) + +void UClusterUnionReplicatedProxyComponent::OnRep_ParticleChildToParents() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "OnRep_ParticleChildToParents"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetChildClusteredComponent +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UPrimitiveComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionReplicatedProxyComponent::SetChildClusteredComponent(class UPrimitiveComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "SetChildClusteredComponent"); + + Params::ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParentClusterUnion +// (Final, RequiredAPI, Native, Public) +// Parameters: +// class UClusterUnionComponent* InComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionReplicatedProxyComponent::SetParentClusterUnion(class UClusterUnionComponent* InComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "SetParentClusterUnion"); + + Params::ClusterUnionReplicatedProxyComponent_SetParentClusterUnion Parms{}; + + Parms.InComponent = InComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParticleBoneIds +// (Final, RequiredAPI, Native, Public, HasOutParams) +// Parameters: +// const TArray& InIds (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UClusterUnionReplicatedProxyComponent::SetParticleBoneIds(const TArray& InIds) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "SetParticleBoneIds"); + + Params::ClusterUnionReplicatedProxyComponent_SetParticleBoneIds Parms{}; + + Parms.InIds = std::move(InIds); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParticleChildToParent +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults) +// Parameters: +// int32 BoneID (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FTransform& ChildToParent (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UClusterUnionReplicatedProxyComponent::SetParticleChildToParent(int32 BoneID, const struct FTransform& ChildToParent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "SetParticleChildToParent"); + + Params::ClusterUnionReplicatedProxyComponent_SetParticleChildToParent Parms{}; + + Parms.BoneID = BoneID; + Parms.ChildToParent = std::move(ChildToParent); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetChildClusteredComponent +// (Final, RequiredAPI, Native, Public, Const) +// Parameters: +// class UPrimitiveComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPrimitiveComponent* UClusterUnionReplicatedProxyComponent::GetChildClusteredComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "GetChildClusteredComponent"); + + Params::ClusterUnionReplicatedProxyComponent_GetChildClusteredComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetParentClusterUnionComponent +// (Final, RequiredAPI, Native, Public, Const) +// Parameters: +// class UClusterUnionComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UClusterUnionComponent* UClusterUnionReplicatedProxyComponent::GetParentClusterUnionComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "GetParentClusterUnionComponent"); + + Params::ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetParticleBoneIds +// (Final, RequiredAPI, Native, Public, Const) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UClusterUnionReplicatedProxyComponent::GetParticleBoneIds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("ClusterUnionReplicatedProxyComponent", "GetParticleBoneIds"); + + Params::ClusterUnionReplicatedProxyComponent_GetParticleBoneIds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsHandleComponent.GrabComponent +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& GrabLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bConstrainRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::GrabComponent(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& GrabLocation, bool bConstrainRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "GrabComponent"); + + Params::PhysicsHandleComponent_GrabComponent Parms{}; + + Parms.Component = Component; + Parms.InBoneName = InBoneName; + Parms.GrabLocation = std::move(GrabLocation); + Parms.bConstrainRotation = bConstrainRotation; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.GrabComponentAtLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& GrabLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::GrabComponentAtLocation(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& GrabLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "GrabComponentAtLocation"); + + Params::PhysicsHandleComponent_GrabComponentAtLocation Parms{}; + + Parms.Component = Component; + Parms.InBoneName = InBoneName; + Parms.GrabLocation = std::move(GrabLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.GrabComponentAtLocationWithRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UPrimitiveComponent* Component (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName InBoneName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::GrabComponentAtLocationWithRotation(class UPrimitiveComponent* Component, class FName InBoneName, const struct FVector& Location, const struct FRotator& Rotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "GrabComponentAtLocationWithRotation"); + + Params::PhysicsHandleComponent_GrabComponentAtLocationWithRotation Parms{}; + + Parms.Component = Component; + Parms.InBoneName = InBoneName; + Parms.Location = std::move(Location); + Parms.Rotation = std::move(Rotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.ReleaseComponent +// (RequiredAPI, Native, Public, BlueprintCallable) + +void UPhysicsHandleComponent::ReleaseComponent() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "ReleaseComponent"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetAngularDamping +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewAngularDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetAngularDamping(float NewAngularDamping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetAngularDamping"); + + Params::PhysicsHandleComponent_SetAngularDamping Parms{}; + + Parms.NewAngularDamping = NewAngularDamping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetAngularStiffness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewAngularStiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetAngularStiffness(float NewAngularStiffness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetAngularStiffness"); + + Params::PhysicsHandleComponent_SetAngularStiffness Parms{}; + + Parms.NewAngularStiffness = NewAngularStiffness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetInterpolationSpeed +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewInterpolationSpeed (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetInterpolationSpeed(float NewInterpolationSpeed) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetInterpolationSpeed"); + + Params::PhysicsHandleComponent_SetInterpolationSpeed Parms{}; + + Parms.NewInterpolationSpeed = NewInterpolationSpeed; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetLinearDamping +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLinearDamping (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetLinearDamping(float NewLinearDamping) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetLinearDamping"); + + Params::PhysicsHandleComponent_SetLinearDamping Parms{}; + + Parms.NewLinearDamping = NewLinearDamping; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetLinearStiffness +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float NewLinearStiffness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetLinearStiffness(float NewLinearStiffness) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetLinearStiffness"); + + Params::PhysicsHandleComponent_SetLinearStiffness Parms{}; + + Parms.NewLinearStiffness = NewLinearStiffness; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetTargetLocation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetTargetLocation(const struct FVector& NewLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetTargetLocation"); + + Params::PhysicsHandleComponent_SetTargetLocation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetTargetLocationAndRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& NewLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetTargetLocationAndRotation(const struct FVector& NewLocation, const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetTargetLocationAndRotation"); + + Params::PhysicsHandleComponent_SetTargetLocationAndRotation Parms{}; + + Parms.NewLocation = std::move(NewLocation); + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.SetTargetRotation +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FRotator& NewRotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::SetTargetRotation(const struct FRotator& NewRotation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "SetTargetRotation"); + + Params::PhysicsHandleComponent_SetTargetRotation Parms{}; + + Parms.NewRotation = std::move(NewRotation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsHandleComponent.GetGrabbedComponent +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPrimitiveComponent* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPrimitiveComponent* UPhysicsHandleComponent::GetGrabbedComponent() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "GetGrabbedComponent"); + + Params::PhysicsHandleComponent_GetGrabbedComponent Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsHandleComponent.GetTargetLocationAndRotation +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FVector* TargetLocation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FRotator* TargetRotation (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +void UPhysicsHandleComponent::GetTargetLocationAndRotation(struct FVector* TargetLocation, struct FRotator* TargetRotation) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PhysicsHandleComponent", "GetTargetLocationAndRotation"); + + Params::PhysicsHandleComponent_GetTargetLocationAndRotation Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (TargetLocation != nullptr) + *TargetLocation = std::move(Parms.TargetLocation); + + if (TargetRotation != nullptr) + *TargetRotation = std::move(Parms.TargetRotation); +} + + +// Function Engine.RadialForceComponent.AddObjectTypeToAffect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EObjectTypeQuery ObjectType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URadialForceComponent::AddObjectTypeToAffect(EObjectTypeQuery ObjectType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceComponent", "AddObjectTypeToAffect"); + + Params::RadialForceComponent_AddObjectTypeToAffect Parms{}; + + Parms.ObjectType = ObjectType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceComponent.FireImpulse +// (RequiredAPI, Native, Public, BlueprintCallable) + +void URadialForceComponent::FireImpulse() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceComponent", "FireImpulse"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RadialForceComponent.RemoveObjectTypeToAffect +// (RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// EObjectTypeQuery ObjectType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void URadialForceComponent::RemoveObjectTypeToAffect(EObjectTypeQuery ObjectType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RadialForceComponent", "RemoveObjectTypeToAffect"); + + Params::RadialForceComponent_RemoveObjectTypeToAffect Parms{}; + + Parms.ObjectType = ObjectType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PhysicsFieldStatics.EvalPhysicsIntegerField +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EFieldIntegerType IntegerType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UPhysicsFieldStatics::EvalPhysicsIntegerField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldIntegerType IntegerType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsFieldStatics", "EvalPhysicsIntegerField"); + + Params::PhysicsFieldStatics_EvalPhysicsIntegerField Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.WorldPosition = std::move(WorldPosition); + Parms.IntegerType = IntegerType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsFieldStatics.EvalPhysicsScalarField +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EFieldScalarType ScalarType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UPhysicsFieldStatics::EvalPhysicsScalarField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldScalarType ScalarType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsFieldStatics", "EvalPhysicsScalarField"); + + Params::PhysicsFieldStatics_EvalPhysicsScalarField Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.WorldPosition = std::move(WorldPosition); + Parms.ScalarType = ScalarType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.PhysicsFieldStatics.EvalPhysicsVectorField +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& WorldPosition (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const EFieldVectorType VectorType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UPhysicsFieldStatics::EvalPhysicsVectorField(const class UObject* WorldContextObject, const struct FVector& WorldPosition, const EFieldVectorType VectorType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("PhysicsFieldStatics", "EvalPhysicsVectorField"); + + Params::PhysicsFieldStatics_EvalPhysicsVectorField Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.WorldPosition = std::move(WorldPosition); + Parms.VectorType = VectorType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.HealthSnapshotBlueprintLibrary.LogPerformanceSnapshot +// (Final, RequiredAPI, Exec, Native, Static, Public, BlueprintCallable) +// Parameters: +// const class FString& SnapshotTitle (ConstParm, Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bResetStats (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UHealthSnapshotBlueprintLibrary::LogPerformanceSnapshot(const class FString& SnapshotTitle, bool bResetStats) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("HealthSnapshotBlueprintLibrary", "LogPerformanceSnapshot"); + + Params::HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot Parms{}; + + Parms.SnapshotTitle = std::move(SnapshotTitle); + Parms.bResetStats = bResetStats; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HealthSnapshotBlueprintLibrary.StartPerformanceSnapshots +// (Final, RequiredAPI, Exec, Native, Static, Public, BlueprintCallable) + +void UHealthSnapshotBlueprintLibrary::StartPerformanceSnapshots() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("HealthSnapshotBlueprintLibrary", "StartPerformanceSnapshots"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.HealthSnapshotBlueprintLibrary.StopPerformanceSnapshots +// (Final, RequiredAPI, Exec, Native, Static, Public, BlueprintCallable) + +void UHealthSnapshotBlueprintLibrary::StopPerformanceSnapshots() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("HealthSnapshotBlueprintLibrary", "StopPerformanceSnapshots"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkinnedAsset.FindSocket +// (RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USkeletalMeshSocket* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMeshSocket* USkinnedAsset::FindSocket(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedAsset", "FindSocket"); + + Params::SkinnedAsset_FindSocket Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkinnedAsset.FindSocketInfo +// (RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FTransform* OutTransform (Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutBoneIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USkeletalMeshSocket* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMeshSocket* USkinnedAsset::FindSocketInfo(class FName InSocketName, struct FTransform* OutTransform, int32* OutBoneIndex, int32* OutIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkinnedAsset", "FindSocketInfo"); + + Params::SkinnedAsset_FindSocketInfo Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutTransform != nullptr) + *OutTransform = std::move(Parms.OutTransform); + + if (OutBoneIndex != nullptr) + *OutBoneIndex = Parms.OutBoneIndex; + + if (OutIndex != nullptr) + *OutIndex = Parms.OutIndex; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.SetDefaultAnimatingRig +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// TSoftObjectPtr InAnimatingRig (Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetDefaultAnimatingRig(TSoftObjectPtr InAnimatingRig) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetDefaultAnimatingRig"); + + Params::SkeletalMesh_SetDefaultAnimatingRig Parms{}; + + Parms.InAnimatingRig = InAnimatingRig; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetLODSettings +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class USkeletalMeshLODSettings* InLODSettings (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetLODSettings(class USkeletalMeshLODSettings* InLODSettings) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetLODSettings"); + + Params::SkeletalMesh_SetLODSettings Parms{}; + + Parms.InLODSettings = InLODSettings; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetMaterials +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InMaterials (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetMaterials(const TArray& InMaterials) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetMaterials"); + + Params::SkeletalMesh_SetMaterials Parms{}; + + Parms.InMaterials = std::move(InMaterials); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetMeshClothingAssets +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&InMeshClothingAssets (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetMeshClothingAssets(const TArray& InMeshClothingAssets) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetMeshClothingAssets"); + + Params::SkeletalMesh_SetMeshClothingAssets Parms{}; + + Parms.InMeshClothingAssets = std::move(InMeshClothingAssets); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetMinLODForQualityLevels +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& QualityLevelMinimumLODs (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 Default (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetMinLODForQualityLevels(const TMap& QualityLevelMinimumLODs, int32 Default) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetMinLODForQualityLevels"); + + Params::SkeletalMesh_SetMinLODForQualityLevels Parms{}; + + Parms.QualityLevelMinimumLODs = std::move(QualityLevelMinimumLODs); + Parms.Default = Default; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetMorphTargets +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InMorphTargets (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetMorphTargets(const TArray& InMorphTargets) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetMorphTargets"); + + Params::SkeletalMesh_SetMorphTargets Parms{}; + + Parms.InMorphTargets = std::move(InMorphTargets); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetOverlayMaterial +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* NewOverlayMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetOverlayMaterial(class UMaterialInterface* NewOverlayMaterial) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetOverlayMaterial"); + + Params::SkeletalMesh_SetOverlayMaterial Parms{}; + + Parms.NewOverlayMaterial = NewOverlayMaterial; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetOverlayMaterialMaxDrawDistance +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// float InMaxDrawDistance (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetOverlayMaterialMaxDrawDistance(float InMaxDrawDistance) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetOverlayMaterialMaxDrawDistance"); + + Params::SkeletalMesh_SetOverlayMaterialMaxDrawDistance Parms{}; + + Parms.InMaxDrawDistance = InMaxDrawDistance; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.SetSkeleton +// (Final, Native, Public, BlueprintCallable) +// Parameters: +// class USkeleton* InSkeleton (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::SetSkeleton(class USkeleton* InSkeleton) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "SetSkeleton"); + + Params::SkeletalMesh_SetSkeleton Parms{}; + + Parms.InSkeleton = InSkeleton; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SkeletalMesh.FindSocketAndIndex +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32* OutIndex (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USkeletalMeshSocket* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMeshSocket* USkeletalMesh::FindSocketAndIndex(class FName InSocketName, int32* OutIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "FindSocketAndIndex"); + + Params::SkeletalMesh_FindSocketAndIndex Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutIndex != nullptr) + *OutIndex = Parms.OutIndex; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetBounds +// (RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FBoxSphereBounds ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBoxSphereBounds USkeletalMesh::GetBounds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetBounds"); + + Params::SkeletalMesh_GetBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetDefaultAnimatingRig +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TSoftObjectPtr ReturnValue (Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +TSoftObjectPtr USkeletalMesh::GetDefaultAnimatingRig() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetDefaultAnimatingRig"); + + Params::SkeletalMesh_GetDefaultAnimatingRig Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetDefaultMeshDeformer +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMeshDeformer* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMeshDeformer* USkeletalMesh::GetDefaultMeshDeformer() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetDefaultMeshDeformer"); + + Params::SkeletalMesh_GetDefaultMeshDeformer Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetHasVertexColors +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMesh::GetHasVertexColors() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetHasVertexColors"); + + Params::SkeletalMesh_GetHasVertexColors Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetImportedBounds +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FBoxSphereBounds ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBoxSphereBounds USkeletalMesh::GetImportedBounds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetImportedBounds"); + + Params::SkeletalMesh_GetImportedBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetLODSettings +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class USkeletalMeshLODSettings* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class USkeletalMeshLODSettings* USkeletalMesh::GetLODSettings() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetLODSettings"); + + Params::SkeletalMesh_GetLODSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetMaterials +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray USkeletalMesh::GetMaterials() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetMaterials"); + + Params::SkeletalMesh_GetMaterials Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetMeshClothingAssets +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray USkeletalMesh::GetMeshClothingAssets() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetMeshClothingAssets"); + + Params::SkeletalMesh_GetMeshClothingAssets Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetMinLODForQualityLevels +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TMap* QualityLevelMinimumLODs (Parm, OutParm, NativeAccessSpecifierPublic) +// int32* Default (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USkeletalMesh::GetMinLODForQualityLevels(TMap* QualityLevelMinimumLODs, int32* Default) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetMinLODForQualityLevels"); + + Params::SkeletalMesh_GetMinLODForQualityLevels Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (QualityLevelMinimumLODs != nullptr) + *QualityLevelMinimumLODs = std::move(Parms.QualityLevelMinimumLODs); + + if (Default != nullptr) + *Default = Parms.Default; +} + + +// Function Engine.SkeletalMesh.GetMorphTargetsPtrConv +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USkeletalMesh::GetMorphTargetsPtrConv() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetMorphTargetsPtrConv"); + + Params::SkeletalMesh_GetMorphTargetsPtrConv Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetNodeMappingContainer +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UBlueprint* SourceAsset (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UNodeMappingContainer* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UNodeMappingContainer* USkeletalMesh::GetNodeMappingContainer(class UBlueprint* SourceAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetNodeMappingContainer"); + + Params::SkeletalMesh_GetNodeMappingContainer Parms{}; + + Parms.SourceAsset = SourceAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetNodeMappingData +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArrayReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray USkeletalMesh::GetNodeMappingData() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetNodeMappingData"); + + Params::SkeletalMesh_GetNodeMappingData Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetOverlayMaterial +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* USkeletalMesh::GetOverlayMaterial() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetOverlayMaterial"); + + Params::SkeletalMesh_GetOverlayMaterial Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetOverlayMaterialMaxDrawDistance +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float USkeletalMesh::GetOverlayMaterialMaxDrawDistance() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetOverlayMaterialMaxDrawDistance"); + + Params::SkeletalMesh_GetOverlayMaterialMaxDrawDistance Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetPhysicsAsset +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPhysicsAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPhysicsAsset* USkeletalMesh::GetPhysicsAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetPhysicsAsset"); + + Params::SkeletalMesh_GetPhysicsAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetShadowPhysicsAsset +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class UPhysicsAsset* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UPhysicsAsset* USkeletalMesh::GetShadowPhysicsAsset() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetShadowPhysicsAsset"); + + Params::SkeletalMesh_GetShadowPhysicsAsset Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetSkeleton +// (Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class USkeleton* ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +const class USkeleton* USkeletalMesh::GetSkeleton() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetSkeleton"); + + Params::SkeletalMesh_GetSkeleton Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.GetSocketByIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 Index_0 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USkeletalMeshSocket* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class USkeletalMeshSocket* USkeletalMesh::GetSocketByIndex(int32 Index_0) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "GetSocketByIndex"); + + Params::SkeletalMesh_GetSocketByIndex Parms{}; + + Parms.Index_0 = Index_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.IsSectionUsingCloth +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 InSectionIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCheckCorrespondingSections (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool USkeletalMesh::IsSectionUsingCloth(int32 InSectionIndex, bool bCheckCorrespondingSections) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "IsSectionUsingCloth"); + + Params::SkeletalMesh_IsSectionUsingCloth Parms{}; + + Parms.InSectionIndex = InSectionIndex; + Parms.bCheckCorrespondingSections = bCheckCorrespondingSections; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.K2_GetAllMorphTargetNames +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray USkeletalMesh::K2_GetAllMorphTargetNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "K2_GetAllMorphTargetNames"); + + Params::SkeletalMesh_K2_GetAllMorphTargetNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SkeletalMesh.NumSockets +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 USkeletalMesh::NumSockets() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SkeletalMesh", "NumSockets"); + + Params::SkeletalMesh_NumSockets Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SoundSubmix.AddEnvelopeFollowerDelegate +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TDelegate& Envelope)>&OnSubmixEnvelopeBP (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::AddEnvelopeFollowerDelegate(const class UObject* WorldContextObject, const TDelegate& Envelope)>& OnSubmixEnvelopeBP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "AddEnvelopeFollowerDelegate"); + + Params::SoundSubmix_AddEnvelopeFollowerDelegate Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.OnSubmixEnvelopeBP = OnSubmixEnvelopeBP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.AddSpectralAnalysisDelegate +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray&InBandSettings (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// const TDelegate& Magnitude)>&OnSubmixSpectralAnalysisBP (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float UpdateRate (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DecibelNoiseFloor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDoNormalize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bDoAutoRange (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AutoRangeAttackTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float AutoRangeReleaseTime (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::AddSpectralAnalysisDelegate(const class UObject* WorldContextObject, const TArray& InBandSettings, const TDelegate& Magnitude)>& OnSubmixSpectralAnalysisBP, float UpdateRate, float DecibelNoiseFloor, bool bDoNormalize, bool bDoAutoRange, float AutoRangeAttackTime, float AutoRangeReleaseTime) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "AddSpectralAnalysisDelegate"); + + Params::SoundSubmix_AddSpectralAnalysisDelegate Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InBandSettings = std::move(InBandSettings); + Parms.OnSubmixSpectralAnalysisBP = OnSubmixSpectralAnalysisBP; + Parms.UpdateRate = UpdateRate; + Parms.DecibelNoiseFloor = DecibelNoiseFloor; + Parms.bDoNormalize = bDoNormalize; + Parms.bDoAutoRange = bDoAutoRange; + Parms.AutoRangeAttackTime = AutoRangeAttackTime; + Parms.AutoRangeReleaseTime = AutoRangeReleaseTime; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.RemoveEnvelopeFollowerDelegate +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TDelegate& Envelope)>&OnSubmixEnvelopeBP (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::RemoveEnvelopeFollowerDelegate(const class UObject* WorldContextObject, const TDelegate& Envelope)>& OnSubmixEnvelopeBP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "RemoveEnvelopeFollowerDelegate"); + + Params::SoundSubmix_RemoveEnvelopeFollowerDelegate Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.OnSubmixEnvelopeBP = OnSubmixEnvelopeBP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.RemoveSpectralAnalysisDelegate +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TDelegate& Magnitude)>&OnSubmixSpectralAnalysisBP (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::RemoveSpectralAnalysisDelegate(const class UObject* WorldContextObject, const TDelegate& Magnitude)>& OnSubmixSpectralAnalysisBP) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "RemoveSpectralAnalysisDelegate"); + + Params::SoundSubmix_RemoveSpectralAnalysisDelegate Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.OnSubmixSpectralAnalysisBP = OnSubmixSpectralAnalysisBP; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetDryVolumeModulation +// (Final, Native, Protected, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSoundModulationDestinationSettings&InVolMod (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void USoundSubmix::SetDryVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetDryVolumeModulation"); + + Params::SoundSubmix_SetDryVolumeModulation Parms{}; + + Parms.InVolMod = std::move(InVolMod); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetOutputVolumeModulation +// (Final, Native, Protected, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSoundModulationDestinationSettings&InVolMod (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void USoundSubmix::SetOutputVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetOutputVolumeModulation"); + + Params::SoundSubmix_SetOutputVolumeModulation Parms{}; + + Parms.InVolMod = std::move(InVolMod); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetSubmixDryLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InDryLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::SetSubmixDryLevel(const class UObject* WorldContextObject, float InDryLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetSubmixDryLevel"); + + Params::SoundSubmix_SetSubmixDryLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InDryLevel = InDryLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetSubmixOutputVolume +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InOutputVolume (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::SetSubmixOutputVolume(const class UObject* WorldContextObject, float InOutputVolume) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetSubmixOutputVolume"); + + Params::SoundSubmix_SetSubmixOutputVolume Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InOutputVolume = InOutputVolume; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetSubmixWetLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float InWetLevel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::SetSubmixWetLevel(const class UObject* WorldContextObject, float InWetLevel) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetSubmixWetLevel"); + + Params::SoundSubmix_SetSubmixWetLevel Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.InWetLevel = InWetLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.SetWetVolumeModulation +// (Final, Native, Protected, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FSoundModulationDestinationSettings&InVolMod (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void USoundSubmix::SetWetVolumeModulation(const struct FSoundModulationDestinationSettings& InVolMod) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "SetWetVolumeModulation"); + + Params::SoundSubmix_SetWetVolumeModulation Parms{}; + + Parms.InVolMod = std::move(InVolMod); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StartEnvelopeFollowing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StartEnvelopeFollowing(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StartEnvelopeFollowing"); + + Params::SoundSubmix_StartEnvelopeFollowing Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StartRecordingOutput +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float ExpectedDuration (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StartRecordingOutput(const class UObject* WorldContextObject, float ExpectedDuration) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StartRecordingOutput"); + + Params::SoundSubmix_StartRecordingOutput Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ExpectedDuration = ExpectedDuration; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StartSpectralAnalysis +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EFFTSize FFTSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EFFTPeakInterpolationMethod InterpolationMethod (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EFFTWindowType WindowType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HopSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAudioSpectrumType SpectrumType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StartSpectralAnalysis(const class UObject* WorldContextObject, EFFTSize FFTSize, EFFTPeakInterpolationMethod InterpolationMethod, EFFTWindowType WindowType, float HopSize, EAudioSpectrumType SpectrumType) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StartSpectralAnalysis"); + + Params::SoundSubmix_StartSpectralAnalysis Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.FFTSize = FFTSize; + Parms.InterpolationMethod = InterpolationMethod; + Parms.WindowType = WindowType; + Parms.HopSize = HopSize; + Parms.SpectrumType = SpectrumType; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StopEnvelopeFollowing +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StopEnvelopeFollowing(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StopEnvelopeFollowing"); + + Params::SoundSubmix_StopEnvelopeFollowing Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StopRecordingOutput +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EAudioRecordingExportType ExportType (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Name_0 (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Path (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class USoundWave* ExistingSoundWaveToOverwrite (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StopRecordingOutput(const class UObject* WorldContextObject, EAudioRecordingExportType ExportType, const class FString& Name_0, const class FString& Path, class USoundWave* ExistingSoundWaveToOverwrite) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StopRecordingOutput"); + + Params::SoundSubmix_StopRecordingOutput Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.ExportType = ExportType; + Parms.Name_0 = std::move(Name_0); + Parms.Path = std::move(Path); + Parms.ExistingSoundWaveToOverwrite = ExistingSoundWaveToOverwrite; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.SoundSubmix.StopSpectralAnalysis +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// const class UObject* WorldContextObject (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void USoundSubmix::StopSpectralAnalysis(const class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("SoundSubmix", "StopSpectralAnalysis"); + + Params::SoundSubmix_StopSpectralAnalysis Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.CreateStaticMeshDescription +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* Outer_0 (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UStaticMeshDescription* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UStaticMeshDescription* UStaticMesh::CreateStaticMeshDescription(class UObject* Outer_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("StaticMesh", "CreateStaticMeshDescription"); + + Params::StaticMesh_CreateStaticMeshDescription Parms{}; + + Parms.Outer_0 = Outer_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.AddMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* Material (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UStaticMesh::AddMaterial(class UMaterialInterface* Material) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "AddMaterial"); + + Params::StaticMesh_AddMaterial Parms{}; + + Parms.Material = Material; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.AddSocket +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UStaticMeshSocket* Socket (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::AddSocket(class UStaticMeshSocket* Socket) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "AddSocket"); + + Params::StaticMesh_AddSocket Parms{}; + + Parms.Socket = Socket; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.BuildFromStaticMeshDescriptions +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray&StaticMeshDescriptions (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bBuildSimpleCollision (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bFastBuild (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::BuildFromStaticMeshDescriptions(const TArray& StaticMeshDescriptions, bool bBuildSimpleCollision, bool bFastBuild) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "BuildFromStaticMeshDescriptions"); + + Params::StaticMesh_BuildFromStaticMeshDescriptions Parms{}; + + Parms.StaticMeshDescriptions = std::move(StaticMeshDescriptions); + Parms.bBuildSimpleCollision = bBuildSimpleCollision; + Parms.bFastBuild = bFastBuild; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.GetStaticMeshDescription +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UStaticMeshDescription* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UStaticMeshDescription* UStaticMesh::GetStaticMeshDescription(int32 LODIndex) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetStaticMeshDescription"); + + Params::StaticMesh_GetStaticMeshDescription Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.RemoveSocket +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UStaticMeshSocket* Socket (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::RemoveSocket(class UStaticMeshSocket* Socket) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "RemoveSocket"); + + Params::StaticMesh_RemoveSocket Parms{}; + + Parms.Socket = Socket; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.SetMinimumLODForPlatform +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& PlatformName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 InMinLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::SetMinimumLODForPlatform(const class FName& PlatformName, int32 InMinLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "SetMinimumLODForPlatform"); + + Params::StaticMesh_SetMinimumLODForPlatform Parms{}; + + Parms.PlatformName = PlatformName; + Parms.InMinLOD = InMinLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.SetMinimumLODForPlatforms +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& PlatformMinimumLODs (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + +void UStaticMesh::SetMinimumLODForPlatforms(const TMap& PlatformMinimumLODs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "SetMinimumLODForPlatforms"); + + Params::StaticMesh_SetMinimumLODForPlatforms Parms{}; + + Parms.PlatformMinimumLODs = std::move(PlatformMinimumLODs); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.SetMinLODForQualityLevels +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TMap& QualityLevelMinimumLODs (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// int32 Default (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::SetMinLODForQualityLevels(const TMap& QualityLevelMinimumLODs, int32 Default) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "SetMinLODForQualityLevels"); + + Params::StaticMesh_SetMinLODForQualityLevels Parms{}; + + Parms.QualityLevelMinimumLODs = std::move(QualityLevelMinimumLODs); + Parms.Default = Default; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.SetStaticMaterials +// (Final, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InStaticMaterials (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UStaticMesh::SetStaticMaterials(const TArray& InStaticMaterials) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "SetStaticMaterials"); + + Params::StaticMesh_SetStaticMaterials Parms{}; + + Parms.InStaticMaterials = std::move(InStaticMaterials); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.StaticMesh.FindSocket +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InSocketName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UStaticMeshSocket* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UStaticMeshSocket* UStaticMesh::FindSocket(class FName InSocketName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "FindSocket"); + + Params::StaticMesh_FindSocket Parms{}; + + Parms.InSocketName = InSocketName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetBoundingBox +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UStaticMesh::GetBoundingBox() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetBoundingBox"); + + Params::StaticMesh_GetBoundingBox Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetBounds +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FBoxSphereBounds ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBoxSphereBounds UStaticMesh::GetBounds() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetBounds"); + + Params::StaticMesh_GetBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetMaterial +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 MaterialIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UMaterialInterface* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UMaterialInterface* UStaticMesh::GetMaterial(int32 MaterialIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMaterial"); + + Params::StaticMesh_GetMaterial Parms{}; + + Parms.MaterialIndex = MaterialIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetMaterialIndex +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName MaterialSlotName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetMaterialIndex(class FName MaterialSlotName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMaterialIndex"); + + Params::StaticMesh_GetMaterialIndex Parms{}; + + Parms.MaterialSlotName = MaterialSlotName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetMinimumLODForPlatform +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& PlatformName (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetMinimumLODForPlatform(const class FName& PlatformName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMinimumLODForPlatform"); + + Params::StaticMesh_GetMinimumLODForPlatform Parms{}; + + Parms.PlatformName = PlatformName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetMinimumLODForPlatforms +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TMap* PlatformMinimumLODs (Parm, OutParm, NativeAccessSpecifierPublic) + +void UStaticMesh::GetMinimumLODForPlatforms(TMap* PlatformMinimumLODs) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMinimumLODForPlatforms"); + + Params::StaticMesh_GetMinimumLODForPlatforms Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (PlatformMinimumLODs != nullptr) + *PlatformMinimumLODs = std::move(Parms.PlatformMinimumLODs); +} + + +// Function Engine.StaticMesh.GetMinimumLODForQualityLevel +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& QualityLevel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetMinimumLODForQualityLevel(const class FName& QualityLevel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMinimumLODForQualityLevel"); + + Params::StaticMesh_GetMinimumLODForQualityLevel Parms{}; + + Parms.QualityLevel = QualityLevel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetMinimumLODForQualityLevels +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TMap* QualityLevelMinimumLODs (Parm, OutParm, NativeAccessSpecifierPublic) + +void UStaticMesh::GetMinimumLODForQualityLevels(TMap* QualityLevelMinimumLODs) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMinimumLODForQualityLevels"); + + Params::StaticMesh_GetMinimumLODForQualityLevels Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (QualityLevelMinimumLODs != nullptr) + *QualityLevelMinimumLODs = std::move(Parms.QualityLevelMinimumLODs); +} + + +// Function Engine.StaticMesh.GetMinLODForQualityLevels +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TMap* QualityLevelMinimumLODs (Parm, OutParm, NativeAccessSpecifierPublic) +// int32* Default (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UStaticMesh::GetMinLODForQualityLevels(TMap* QualityLevelMinimumLODs, int32* Default) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetMinLODForQualityLevels"); + + Params::StaticMesh_GetMinLODForQualityLevels Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (QualityLevelMinimumLODs != nullptr) + *QualityLevelMinimumLODs = std::move(Parms.QualityLevelMinimumLODs); + + if (Default != nullptr) + *Default = Parms.Default; +} + + +// Function Engine.StaticMesh.GetNumLODs +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetNumLODs() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetNumLODs"); + + Params::StaticMesh_GetNumLODs Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetNumSections +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 InLOD (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetNumSections(int32 InLOD) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetNumSections"); + + Params::StaticMesh_GetNumSections Parms{}; + + Parms.InLOD = InLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetNumTriangles +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 LODIndex (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 UStaticMesh::GetNumTriangles(int32 LODIndex) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetNumTriangles"); + + Params::StaticMesh_GetNumTriangles Parms{}; + + Parms.LODIndex = LODIndex; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetSocketsByTag +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FString& InSocketTag (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) + +TArray UStaticMesh::GetSocketsByTag(const class FString& InSocketTag) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetSocketsByTag"); + + Params::StaticMesh_GetSocketsByTag Parms{}; + + Parms.InSocketTag = std::move(InSocketTag); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.StaticMesh.GetStaticMaterials +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TArray ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TArray UStaticMesh::GetStaticMaterials() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("StaticMesh", "GetStaticMaterials"); + + Params::StaticMesh_GetStaticMaterials Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetAudioEngineSubsystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* ContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfClass_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UAudioEngineSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UAudioEngineSubsystem* USubsystemBlueprintLibrary::GetAudioEngineSubsystem(class UObject* ContextObject, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetAudioEngineSubsystem"); + + Params::SubsystemBlueprintLibrary_GetAudioEngineSubsystem Parms{}; + + Parms.ContextObject = ContextObject; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetEngineSubsystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UEngineSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UEngineSubsystem* USubsystemBlueprintLibrary::GetEngineSubsystem(TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetEngineSubsystem"); + + Params::SubsystemBlueprintLibrary_GetEngineSubsystem Parms{}; + + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetGameInstanceSubsystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* ContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfClass_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UGameInstanceSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UGameInstanceSubsystem* USubsystemBlueprintLibrary::GetGameInstanceSubsystem(class UObject* ContextObject, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetGameInstanceSubsystem"); + + Params::SubsystemBlueprintLibrary_GetGameInstanceSubsystem Parms{}; + + Parms.ContextObject = ContextObject; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetLocalPlayerSubsystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* ContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfClass_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULocalPlayerSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULocalPlayerSubsystem* USubsystemBlueprintLibrary::GetLocalPlayerSubsystem(class UObject* ContextObject, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetLocalPlayerSubsystem"); + + Params::SubsystemBlueprintLibrary_GetLocalPlayerSubsystem Parms{}; + + Parms.ContextObject = ContextObject; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetLocalPlayerSubSystemFromPlayerController +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class APlayerController* PlayerController (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOfClass_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class ULocalPlayerSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class ULocalPlayerSubsystem* USubsystemBlueprintLibrary::GetLocalPlayerSubSystemFromPlayerController(class APlayerController* PlayerController, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetLocalPlayerSubSystemFromPlayerController"); + + Params::SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController Parms{}; + + Parms.PlayerController = PlayerController; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.SubsystemBlueprintLibrary.GetWorldSubsystem +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UObject* ContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TSubclassOf Class_0 (Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UWorldSubsystem* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UWorldSubsystem* USubsystemBlueprintLibrary::GetWorldSubsystem(class UObject* ContextObject, TSubclassOf Class_0) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("SubsystemBlueprintLibrary", "GetWorldSubsystem"); + + Params::SubsystemBlueprintLibrary_GetWorldSubsystem Parms{}; + + Parms.ContextObject = ContextObject; + Parms.Class_0 = Class_0; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.UserInterfaceSettings.ShouldDisplayDistanceFieldFontSettings +// (Final, Native, Static, Private) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UUserInterfaceSettings::ShouldDisplayDistanceFieldFontSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("UserInterfaceSettings", "ShouldDisplayDistanceFieldFontSettings"); + + Params::UserInterfaceSettings_ShouldDisplayDistanceFieldFontSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Canvas.K2_Deproject +// (Final, RequiredAPI, Native, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldOrigin (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector* WorldDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_Deproject(const struct FVector2D& ScreenPosition, struct FVector* WorldOrigin, struct FVector* WorldDirection) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_Deproject"); + + Params::Canvas_K2_Deproject Parms{}; + + Parms.ScreenPosition = std::move(ScreenPosition); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (WorldOrigin != nullptr) + *WorldOrigin = std::move(Parms.WorldOrigin); + + if (WorldDirection != nullptr) + *WorldDirection = std::move(Parms.WorldDirection); +} + + +// Function Engine.Canvas.K2_DrawBorder +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UTexture* BorderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* BackgroundTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* LeftBorderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* RightBorderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* TopBorderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UTexture* BottomBorderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinatePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinateSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& BorderScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& BackgroundScale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& PivotPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CornerSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawBorder(class UTexture* BorderTexture, class UTexture* BackgroundTexture, class UTexture* LeftBorderTexture, class UTexture* RightBorderTexture, class UTexture* TopBorderTexture, class UTexture* BottomBorderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, const struct FLinearColor& RenderColor, const struct FVector2D& BorderScale, const struct FVector2D& BackgroundScale, float Rotation, const struct FVector2D& PivotPoint, const struct FVector2D& CornerSize) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawBorder"); + + Params::Canvas_K2_DrawBorder Parms{}; + + Parms.BorderTexture = BorderTexture; + Parms.BackgroundTexture = BackgroundTexture; + Parms.LeftBorderTexture = LeftBorderTexture; + Parms.RightBorderTexture = RightBorderTexture; + Parms.TopBorderTexture = TopBorderTexture; + Parms.BottomBorderTexture = BottomBorderTexture; + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.ScreenSize = std::move(ScreenSize); + Parms.CoordinatePosition = std::move(CoordinatePosition); + Parms.CoordinateSize = std::move(CoordinateSize); + Parms.RenderColor = std::move(RenderColor); + Parms.BorderScale = std::move(BorderScale); + Parms.BackgroundScale = std::move(BackgroundScale); + Parms.Rotation = Rotation; + Parms.PivotPoint = std::move(PivotPoint); + Parms.CornerSize = std::move(CornerSize); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawBox +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawBox(const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, float Thickness, const struct FLinearColor& RenderColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawBox"); + + Params::Canvas_K2_DrawBox Parms{}; + + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.ScreenSize = std::move(ScreenSize); + Parms.Thickness = Thickness; + Parms.RenderColor = std::move(RenderColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawLine +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector2D& ScreenPositionA (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPositionB (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Thickness (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawLine(const struct FVector2D& ScreenPositionA, const struct FVector2D& ScreenPositionB, float Thickness, const struct FLinearColor& RenderColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawLine"); + + Params::Canvas_K2_DrawLine Parms{}; + + Parms.ScreenPositionA = std::move(ScreenPositionA); + Parms.ScreenPositionB = std::move(ScreenPositionB); + Parms.Thickness = Thickness; + Parms.RenderColor = std::move(RenderColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawMaterial +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UMaterialInterface* RenderMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinatePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinateSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& PivotPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawMaterial(class UMaterialInterface* RenderMaterial, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, float Rotation, const struct FVector2D& PivotPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawMaterial"); + + Params::Canvas_K2_DrawMaterial Parms{}; + + Parms.RenderMaterial = RenderMaterial; + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.ScreenSize = std::move(ScreenSize); + Parms.CoordinatePosition = std::move(CoordinatePosition); + Parms.CoordinateSize = std::move(CoordinateSize); + Parms.Rotation = Rotation; + Parms.PivotPoint = std::move(PivotPoint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawMaterialTriangle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UMaterialInterface* RenderMaterial (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Triangles (Parm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawMaterialTriangle(class UMaterialInterface* RenderMaterial, const TArray& Triangles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawMaterialTriangle"); + + Params::Canvas_K2_DrawMaterialTriangle Parms{}; + + Parms.RenderMaterial = RenderMaterial; + Parms.Triangles = std::move(Triangles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawPolygon +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UTexture* RenderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// int32 NumberOfSides (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawPolygon(class UTexture* RenderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& Radius, int32 NumberOfSides, const struct FLinearColor& RenderColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawPolygon"); + + Params::Canvas_K2_DrawPolygon Parms{}; + + Parms.RenderTexture = RenderTexture; + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.Radius = std::move(Radius); + Parms.NumberOfSides = NumberOfSides; + Parms.RenderColor = std::move(RenderColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawText +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UFont* RenderFont (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& RenderText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Kerning (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ShadowColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ShadowOffset (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCentreX (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bCentreY (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bOutlined (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& OutlineColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawText(class UFont* RenderFont, const class FString& RenderText, const struct FVector2D& ScreenPosition, const struct FVector2D& Scale, const struct FLinearColor& RenderColor, float Kerning, const struct FLinearColor& ShadowColor, const struct FVector2D& ShadowOffset, bool bCentreX, bool bCentreY, bool bOutlined, const struct FLinearColor& OutlineColor) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawText"); + + Params::Canvas_K2_DrawText Parms{}; + + Parms.RenderFont = RenderFont; + Parms.RenderText = std::move(RenderText); + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.Scale = std::move(Scale); + Parms.RenderColor = std::move(RenderColor); + Parms.Kerning = Kerning; + Parms.ShadowColor = std::move(ShadowColor); + Parms.ShadowOffset = std::move(ShadowOffset); + Parms.bCentreX = bCentreX; + Parms.bCentreY = bCentreY; + Parms.bOutlined = bOutlined; + Parms.OutlineColor = std::move(OutlineColor); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawTexture +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UTexture* RenderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenPosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& ScreenSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinatePosition (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& CoordinateSize (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& RenderColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EBlendMode BlendMode (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Rotation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& PivotPoint (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawTexture(class UTexture* RenderTexture, const struct FVector2D& ScreenPosition, const struct FVector2D& ScreenSize, const struct FVector2D& CoordinatePosition, const struct FVector2D& CoordinateSize, const struct FLinearColor& RenderColor, EBlendMode BlendMode, float Rotation, const struct FVector2D& PivotPoint) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawTexture"); + + Params::Canvas_K2_DrawTexture Parms{}; + + Parms.RenderTexture = RenderTexture; + Parms.ScreenPosition = std::move(ScreenPosition); + Parms.ScreenSize = std::move(ScreenSize); + Parms.CoordinatePosition = std::move(CoordinatePosition); + Parms.CoordinateSize = std::move(CoordinateSize); + Parms.RenderColor = std::move(RenderColor); + Parms.BlendMode = BlendMode; + Parms.Rotation = Rotation; + Parms.PivotPoint = std::move(PivotPoint); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_DrawTriangle +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class UTexture* RenderTexture (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray& Triangles (Parm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UCanvas::K2_DrawTriangle(class UTexture* RenderTexture, const TArray& Triangles) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_DrawTriangle"); + + Params::Canvas_K2_DrawTriangle Parms{}; + + Parms.RenderTexture = RenderTexture; + Parms.Triangles = std::move(Triangles); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.Canvas.K2_Project +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FVector& WorldLocation (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector UCanvas::K2_Project(const struct FVector& WorldLocation) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_Project"); + + Params::Canvas_K2_Project Parms{}; + + Parms.WorldLocation = std::move(WorldLocation); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Canvas.K2_StrLen +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UFont* RenderFont (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& RenderText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UCanvas::K2_StrLen(class UFont* RenderFont, const class FString& RenderText) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_StrLen"); + + Params::Canvas_K2_StrLen Parms{}; + + Parms.RenderFont = RenderFont; + Parms.RenderText = std::move(RenderText); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.Canvas.K2_TextSize +// (Final, RequiredAPI, Native, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UFont* RenderFont (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& RenderText (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector2D& Scale (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// struct FVector2D ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FVector2D UCanvas::K2_TextSize(class UFont* RenderFont, const class FString& RenderText, const struct FVector2D& Scale) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("Canvas", "K2_TextSize"); + + Params::Canvas_K2_TextSize Parms{}; + + Parms.RenderFont = RenderFont; + Parms.RenderText = std::move(RenderText); + Parms.Scale = std::move(Scale); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputSettings.GetInputSettings +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable, BlueprintPure) +// Parameters: +// class UInputSettings* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UInputSettings* UInputSettings::GetInputSettings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("InputSettings", "GetInputSettings"); + + Params::InputSettings_GetInputSettings Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.InputSettings.AddActionMapping +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInputActionKeyMapping& KeyMapping (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool bForceRebuildKeymaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputSettings::AddActionMapping(const struct FInputActionKeyMapping& KeyMapping, bool bForceRebuildKeymaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "AddActionMapping"); + + Params::InputSettings_AddActionMapping Parms{}; + + Parms.KeyMapping = std::move(KeyMapping); + Parms.bForceRebuildKeymaps = bForceRebuildKeymaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.AddAxisMapping +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInputAxisKeyMapping& KeyMapping (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool bForceRebuildKeymaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputSettings::AddAxisMapping(const struct FInputAxisKeyMapping& KeyMapping, bool bForceRebuildKeymaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "AddAxisMapping"); + + Params::InputSettings_AddAxisMapping Parms{}; + + Parms.KeyMapping = std::move(KeyMapping); + Parms.bForceRebuildKeymaps = bForceRebuildKeymaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.ForceRebuildKeymaps +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UInputSettings::ForceRebuildKeymaps() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "ForceRebuildKeymaps"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.RemoveActionMapping +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInputActionKeyMapping& KeyMapping (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool bForceRebuildKeymaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputSettings::RemoveActionMapping(const struct FInputActionKeyMapping& KeyMapping, bool bForceRebuildKeymaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "RemoveActionMapping"); + + Params::InputSettings_RemoveActionMapping Parms{}; + + Parms.KeyMapping = std::move(KeyMapping); + Parms.bForceRebuildKeymaps = bForceRebuildKeymaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.RemoveAxisMapping +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FInputAxisKeyMapping& KeyMapping (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +// bool bForceRebuildKeymaps (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UInputSettings::RemoveAxisMapping(const struct FInputAxisKeyMapping& KeyMapping, bool bForceRebuildKeymaps) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "RemoveAxisMapping"); + + Params::InputSettings_RemoveAxisMapping Parms{}; + + Parms.KeyMapping = std::move(KeyMapping); + Parms.bForceRebuildKeymaps = bForceRebuildKeymaps; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.SaveKeyMappings +// (Final, RequiredAPI, Native, Public, BlueprintCallable) + +void UInputSettings::SaveKeyMappings() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "SaveKeyMappings"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.InputSettings.GetActionMappingByName +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName InActionName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutMappings (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UInputSettings::GetActionMappingByName(const class FName InActionName, TArray* OutMappings) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "GetActionMappingByName"); + + Params::InputSettings_GetActionMappingByName Parms{}; + + Parms.InActionName = InActionName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutMappings != nullptr) + *OutMappings = std::move(Parms.OutMappings); +} + + +// Function Engine.InputSettings.GetActionNames +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* ActionNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UInputSettings::GetActionNames(TArray* ActionNames) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "GetActionNames"); + + Params::InputSettings_GetActionNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (ActionNames != nullptr) + *ActionNames = std::move(Parms.ActionNames); +} + + +// Function Engine.InputSettings.GetAxisMappingByName +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName InAxisName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// TArray* OutMappings (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UInputSettings::GetAxisMappingByName(const class FName InAxisName, TArray* OutMappings) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "GetAxisMappingByName"); + + Params::InputSettings_GetAxisMappingByName Parms{}; + + Parms.InAxisName = InAxisName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutMappings != nullptr) + *OutMappings = std::move(Parms.OutMappings); +} + + +// Function Engine.InputSettings.GetAxisNames +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// TArray* AxisNames (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + +void UInputSettings::GetAxisNames(TArray* AxisNames) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("InputSettings", "GetAxisNames"); + + Params::InputSettings_GetAxisNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (AxisNames != nullptr) + *AxisNames = std::move(Parms.AxisNames); +} + + +// Function Engine.PlayerInput.ClearSmoothing +// (Final, RequiredAPI, Exec, Native, Public) + +void UPlayerInput::ClearSmoothing() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "ClearSmoothing"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerInput.InvertAxis +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// const class FName AxisName (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPlayerInput::InvertAxis(const class FName AxisName) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "InvertAxis"); + + Params::PlayerInput_InvertAxis Parms{}; + + Parms.AxisName = AxisName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerInput.InvertAxisKey +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// const struct FKey& AxisKey (ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPlayerInput::InvertAxisKey(const struct FKey& AxisKey) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "InvertAxisKey"); + + Params::PlayerInput_InvertAxisKey Parms{}; + + Parms.AxisKey = std::move(AxisKey); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerInput.SetBind +// (Final, RequiredAPI, Exec, Native, Public) +// Parameters: +// class FName BindName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Command (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPlayerInput::SetBind(class FName BindName, const class FString& Command) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "SetBind"); + + Params::PlayerInput_SetBind Parms{}; + + Parms.BindName = BindName; + Parms.Command = std::move(Command); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerInput.SetMouseSensitivity +// (Final, Exec, Native, Public) +// Parameters: +// const float Sensitivity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UPlayerInput::SetMouseSensitivity(const float Sensitivity) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "SetMouseSensitivity"); + + Params::PlayerInput_SetMouseSensitivity Parms{}; + + Parms.Sensitivity = Sensitivity; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.PlayerInput.GetOuterAPlayerController +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class APlayerController* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class APlayerController* UPlayerInput::GetOuterAPlayerController() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("PlayerInput", "GetOuterAPlayerController"); + + Params::PlayerInput_GetOuterAPlayerController Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.VisualLoggerKismetLibrary.EnableRecording +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// bool bEnabled (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::EnableRecording(bool bEnabled) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "EnableRecording"); + + Params::VisualLoggerKismetLibrary_EnableRecording Parms{}; + + Parms.bEnabled = bEnabled; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogArrow +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName CategoryName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogArrow(class UObject* WorldContextObject, const struct FVector& SegmentStart, const struct FVector& SegmentEnd, const class FString& Text, const struct FLinearColor& ObjectColor, class FName CategoryName, bool bAddToMessageLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogArrow"); + + Params::VisualLoggerKismetLibrary_LogArrow Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SegmentStart = std::move(SegmentStart); + Parms.SegmentEnd = std::move(SegmentEnd); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.CategoryName = CategoryName; + Parms.bAddToMessageLog = bAddToMessageLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogBox +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox& BoxShape (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogBox(class UObject* WorldContextObject, const struct FBox& BoxShape, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogBox"); + + Params::VisualLoggerKismetLibrary_LogBox Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BoxShape = std::move(BoxShape); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogCapsule +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& base (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float HalfHeight (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FQuat& Rotation (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogCapsule(class UObject* WorldContextObject, const struct FVector& base, float HalfHeight, float Radius, const struct FQuat& Rotation, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogCapsule"); + + Params::VisualLoggerKismetLibrary_LogCapsule Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.base = std::move(base); + Parms.HalfHeight = HalfHeight; + Parms.Radius = Radius; + Parms.Rotation = std::move(Rotation); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogCircle +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& UpAxis (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float Thickness (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName CategoryName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogCircle(class UObject* WorldContextObject, const struct FVector& Center, const struct FVector& UpAxis, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, const float Thickness, class FName CategoryName, bool bAddToMessageLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogCircle"); + + Params::VisualLoggerKismetLibrary_LogCircle Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.UpAxis = std::move(UpAxis); + Parms.Radius = Radius; + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.Thickness = Thickness; + Parms.CategoryName = CategoryName; + Parms.bAddToMessageLog = bAddToMessageLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogCone +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Origin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Direction (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Length (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Angle (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogCone(class UObject* WorldContextObject, const struct FVector& Origin, const struct FVector& Direction, float Length, float Angle, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogCone"); + + Params::VisualLoggerKismetLibrary_LogCone Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Origin = std::move(Origin); + Parms.Direction = std::move(Direction); + Parms.Length = Length; + Parms.Angle = Angle; + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogCylinder +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& End (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogCylinder(class UObject* WorldContextObject, const struct FVector& Start, const struct FVector& End, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogCylinder"); + + Params::VisualLoggerKismetLibrary_LogCylinder Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Start = std::move(Start); + Parms.End = std::move(End); + Parms.Radius = Radius; + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogLocation +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Location (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogLocation(class UObject* WorldContextObject, const struct FVector& Location, const class FString& Text, const struct FLinearColor& ObjectColor, float Radius, class FName LogCategory, bool bAddToMessageLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogLocation"); + + Params::VisualLoggerKismetLibrary_LogLocation Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Location = std::move(Location); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.Radius = Radius; + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogOrientedBox +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FBox& BoxShape (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// const struct FTransform& Transform (Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogOrientedBox(class UObject* WorldContextObject, const struct FBox& BoxShape, const struct FTransform& Transform, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogOrientedBox"); + + Params::VisualLoggerKismetLibrary_LogOrientedBox Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.BoxShape = std::move(BoxShape); + Parms.Transform = std::move(Transform); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogSegment +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& SegmentEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const float Thickness (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName CategoryName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogSegment(class UObject* WorldContextObject, const struct FVector& SegmentStart, const struct FVector& SegmentEnd, const class FString& Text, const struct FLinearColor& ObjectColor, const float Thickness, class FName CategoryName, bool bAddToMessageLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogSegment"); + + Params::VisualLoggerKismetLibrary_LogSegment Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.SegmentStart = std::move(SegmentStart); + Parms.SegmentEnd = std::move(SegmentEnd); + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.Thickness = Thickness; + Parms.CategoryName = CategoryName; + Parms.bAddToMessageLog = bAddToMessageLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogSphere +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FVector& Center (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float Radius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const struct FLinearColor& ObjectColor (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bWireframe (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogSphere(class UObject* WorldContextObject, const struct FVector& Center, float Radius, const class FString& Text, const struct FLinearColor& ObjectColor, class FName LogCategory, bool bAddToMessageLog, bool bWireframe) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogSphere"); + + Params::VisualLoggerKismetLibrary_LogSphere Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Center = std::move(Center); + Parms.Radius = Radius; + Parms.Text = std::move(Text); + Parms.ObjectColor = std::move(ObjectColor); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + Parms.bWireframe = bWireframe; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.LogText +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const class FString& Text (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class FName LogCategory (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bAddToMessageLog (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::LogText(class UObject* WorldContextObject, const class FString& Text, class FName LogCategory, bool bAddToMessageLog) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "LogText"); + + Params::VisualLoggerKismetLibrary_LogText Parms{}; + + Parms.WorldContextObject = WorldContextObject; + Parms.Text = std::move(Text); + Parms.LogCategory = LogCategory; + Parms.bAddToMessageLog = bAddToMessageLog; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VisualLoggerKismetLibrary.RedirectVislog +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* SourceOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UObject* DestinationOwner (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVisualLoggerKismetLibrary::RedirectVislog(class UObject* SourceOwner, class UObject* DestinationOwner) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VisualLoggerKismetLibrary", "RedirectVislog"); + + Params::VisualLoggerKismetLibrary_RedirectVislog Parms{}; + + Parms.SourceOwner = SourceOwner; + Parms.DestinationOwner = DestinationOwner; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VOIPTalker.CreateTalkerForPlayer +// (Final, RequiredAPI, Native, Static, Public, BlueprintCallable) +// Parameters: +// class APlayerState* OwningState (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UVOIPTalker* ReturnValue (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UVOIPTalker* UVOIPTalker::CreateTalkerForPlayer(class APlayerState* OwningState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("VOIPTalker", "CreateTalkerForPlayer"); + + Params::VOIPTalker_CreateTalkerForPlayer Parms{}; + + Parms.OwningState = OwningState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.VOIPTalker.BPOnTalkingBegin +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) +// Parameters: +// class UAudioComponent* AudioComponent (Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVOIPTalker::BPOnTalkingBegin(class UAudioComponent* AudioComponent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VOIPTalker", "BPOnTalkingBegin"); + + Params::VOIPTalker_BPOnTalkingBegin Parms{}; + + Parms.AudioComponent = AudioComponent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VOIPTalker.BPOnTalkingEnd +// (RequiredAPI, Native, Event, Protected, BlueprintEvent) + +void UVOIPTalker::BPOnTalkingEnd() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VOIPTalker", "BPOnTalkingEnd"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.VOIPTalker.GetVoiceLevel +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +float UVOIPTalker::GetVoiceLevel() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VOIPTalker", "GetVoiceLevel"); + + Params::VOIPTalker_GetVoiceLevel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.VOIPTalker.RegisterWithPlayerState +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// class APlayerState* OwningState (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UVOIPTalker::RegisterWithPlayerState(class APlayerState* OwningState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("VOIPTalker", "RegisterWithPlayerState"); + + Params::VOIPTalker_RegisterWithPlayerState Parms{}; + + Parms.OwningState = OwningState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.RuntimeVirtualTexture.GetPageTableSize +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 URuntimeVirtualTexture::GetPageTableSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTexture", "GetPageTableSize"); + + Params::RuntimeVirtualTexture_GetPageTableSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RuntimeVirtualTexture.GetSize +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 URuntimeVirtualTexture::GetSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTexture", "GetSize"); + + Params::RuntimeVirtualTexture_GetSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RuntimeVirtualTexture.GetTileBorderSize +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 URuntimeVirtualTexture::GetTileBorderSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTexture", "GetTileBorderSize"); + + Params::RuntimeVirtualTexture_GetTileBorderSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RuntimeVirtualTexture.GetTileCount +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 URuntimeVirtualTexture::GetTileCount() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTexture", "GetTileCount"); + + Params::RuntimeVirtualTexture_GetTileCount Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.RuntimeVirtualTexture.GetTileSize +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// int32 ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +int32 URuntimeVirtualTexture::GetTileSize() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("RuntimeVirtualTexture", "GetTileSize"); + + Params::RuntimeVirtualTexture_GetTileSize Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetActorDescs +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// TArray* OutActorDescs (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionBlueprintLibrary::GetActorDescs(TArray* OutActorDescs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetActorDescs"); + + Params::WorldPartitionBlueprintLibrary_GetActorDescs Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActorDescs != nullptr) + *OutActorDescs = std::move(Parms.OutActorDescs); + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetActorDescsForActors +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InActors (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// TArray* OutActorDescs (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionBlueprintLibrary::GetActorDescsForActors(const TArray& InActors, TArray* OutActorDescs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetActorDescsForActors"); + + Params::WorldPartitionBlueprintLibrary_GetActorDescsForActors Parms{}; + + Parms.InActors = std::move(InActors); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActorDescs != nullptr) + *OutActorDescs = std::move(Parms.OutActorDescs); + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetDataLayerManager +// (Final, Native, Static, Public, BlueprintCallable) +// Parameters: +// class UObject* WorldContextObject (Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerManager* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerManager* UWorldPartitionBlueprintLibrary::GetDataLayerManager(class UObject* WorldContextObject) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetDataLayerManager"); + + Params::WorldPartitionBlueprintLibrary_GetDataLayerManager Parms{}; + + Parms.WorldContextObject = WorldContextObject; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetEditorWorldBounds +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UWorldPartitionBlueprintLibrary::GetEditorWorldBounds() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetEditorWorldBounds"); + + Params::WorldPartitionBlueprintLibrary_GetEditorWorldBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetIntersectingActorDescs +// (Final, Native, Static, Public, HasOutParams, HasDefaults, BlueprintCallable) +// Parameters: +// const struct FBox& InBox (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +// TArray* OutActorDescs (Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionBlueprintLibrary::GetIntersectingActorDescs(const struct FBox& InBox, TArray* OutActorDescs) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetIntersectingActorDescs"); + + Params::WorldPartitionBlueprintLibrary_GetIntersectingActorDescs Parms{}; + + Parms.InBox = std::move(InBox); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + if (OutActorDescs != nullptr) + *OutActorDescs = std::move(Parms.OutActorDescs); + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.GetRuntimeWorldBounds +// (Final, Native, Static, Public, HasDefaults, BlueprintCallable) +// Parameters: +// struct FBox ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + +struct FBox UWorldPartitionBlueprintLibrary::GetRuntimeWorldBounds() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "GetRuntimeWorldBounds"); + + Params::WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.LoadActors +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InActorsToLoad (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UWorldPartitionBlueprintLibrary::LoadActors(const TArray& InActorsToLoad) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "LoadActors"); + + Params::WorldPartitionBlueprintLibrary_LoadActors Parms{}; + + Parms.InActorsToLoad = std::move(InActorsToLoad); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.PinActors +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InActorsToPin (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UWorldPartitionBlueprintLibrary::PinActors(const TArray& InActorsToPin) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "PinActors"); + + Params::WorldPartitionBlueprintLibrary_PinActors Parms{}; + + Parms.InActorsToPin = std::move(InActorsToPin); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.UnloadActors +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InActorsToUnload (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UWorldPartitionBlueprintLibrary::UnloadActors(const TArray& InActorsToUnload) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "UnloadActors"); + + Params::WorldPartitionBlueprintLibrary_UnloadActors Parms{}; + + Parms.InActorsToUnload = std::move(InActorsToUnload); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionBlueprintLibrary.UnpinActors +// (Final, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TArray& InActorsToUnpin (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + +void UWorldPartitionBlueprintLibrary::UnpinActors(const TArray& InActorsToUnpin) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionBlueprintLibrary", "UnpinActors"); + + Params::WorldPartitionBlueprintLibrary_UnpinActors Parms{}; + + Parms.InActorsToUnpin = std::move(InActorsToUnpin); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldDataLayers.OnDataLayerRuntimeStateChanged +// (RequiredAPI, Net, NetReliable, Native, Event, NetMulticast, Public) +// Parameters: +// const class UDataLayerInstance* InDataLayer (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void AWorldDataLayers::OnDataLayerRuntimeStateChanged(const class UDataLayerInstance* InDataLayer, EDataLayerRuntimeState InState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldDataLayers", "OnDataLayerRuntimeStateChanged"); + + Params::WorldDataLayers_OnDataLayerRuntimeStateChanged Parms{}; + + Parms.InDataLayer = InDataLayer; + Parms.InState = InState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldDataLayers.OnRep_ActiveDataLayerNames +// (Final, RequiredAPI, Native, Protected) + +void AWorldDataLayers::OnRep_ActiveDataLayerNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldDataLayers", "OnRep_ActiveDataLayerNames"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldDataLayers.OnRep_EffectiveActiveDataLayerNames +// (Final, RequiredAPI, Native, Protected) + +void AWorldDataLayers::OnRep_EffectiveActiveDataLayerNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldDataLayers", "OnRep_EffectiveActiveDataLayerNames"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldDataLayers.OnRep_EffectiveLoadedDataLayerNames +// (Final, RequiredAPI, Native, Protected) + +void AWorldDataLayers::OnRep_EffectiveLoadedDataLayerNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldDataLayers", "OnRep_EffectiveLoadedDataLayerNames"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldDataLayers.OnRep_LoadedDataLayerNames +// (Final, RequiredAPI, Native, Protected) + +void AWorldDataLayers::OnRep_LoadedDataLayerNames() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldDataLayers", "OnRep_LoadedDataLayerNames"); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, nullptr); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayer.Equals +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FActorDataLayer& ActorDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::Equals(const struct FActorDataLayer& ActorDataLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "Equals"); + + Params::DataLayer_Equals Parms{}; + + Parms.ActorDataLayer = std::move(ActorDataLayer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.GetDataLayerLabel +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class FName UDataLayer::GetDataLayerLabel() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "GetDataLayerLabel"); + + Params::DataLayer_GetDataLayerLabel Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.GetDebugColor +// (Final, Native, Public, HasDefaults, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// struct FColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +struct FColor UDataLayer::GetDebugColor() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "GetDebugColor"); + + Params::DataLayer_GetDebugColor Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.GetInitialRuntimeState +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayer::GetInitialRuntimeState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "GetInitialRuntimeState"); + + Params::DataLayer_GetInitialRuntimeState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.GetInitialState +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EDataLayerState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerState UDataLayer::GetInitialState() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "GetInitialState"); + + Params::DataLayer_GetInitialState Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsDynamicallyLoaded +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsDynamicallyLoaded() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsDynamicallyLoaded"); + + Params::DataLayer_IsDynamicallyLoaded Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsEffectiveVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsEffectiveVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsEffectiveVisible"); + + Params::DataLayer_IsEffectiveVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsInitiallyActive +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsInitiallyActive() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsInitiallyActive"); + + Params::DataLayer_IsInitiallyActive Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsInitiallyVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsInitiallyVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsInitiallyVisible"); + + Params::DataLayer_IsInitiallyVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsRuntime +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsRuntime() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsRuntime"); + + Params::DataLayer_IsRuntime Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayer.IsVisible +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UDataLayer::IsVisible() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayer", "IsVisible"); + + Params::DataLayer_IsVisible Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.SetDataLayerInstanceRuntimeState +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, BlueprintCallable) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInIsRecursive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataLayerSubsystem::SetDataLayerInstanceRuntimeState(const class UDataLayerAsset* InDataLayerAsset, EDataLayerRuntimeState InState, bool bInIsRecursive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "SetDataLayerInstanceRuntimeState"); + + Params::DataLayerSubsystem_SetDataLayerInstanceRuntimeState Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + Parms.InState = InState; + Parms.bInIsRecursive = bInIsRecursive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerSubsystem.SetDataLayerRuntimeState +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInIsRecursive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataLayerSubsystem::SetDataLayerRuntimeState(const struct FActorDataLayer& InDataLayer, EDataLayerRuntimeState InState, bool bInIsRecursive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "SetDataLayerRuntimeState"); + + Params::DataLayerSubsystem_SetDataLayerRuntimeState Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + Parms.InState = InState; + Parms.bInIsRecursive = bInIsRecursive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerSubsystem.SetDataLayerRuntimeStateByLabel +// (Final, RequiredAPI, BlueprintAuthorityOnly, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InDataLayerLabel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool bInIsRecursive (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataLayerSubsystem::SetDataLayerRuntimeStateByLabel(const class FName& InDataLayerLabel, EDataLayerRuntimeState InState, bool bInIsRecursive) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "SetDataLayerRuntimeStateByLabel"); + + Params::DataLayerSubsystem_SetDataLayerRuntimeStateByLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + Parms.InState = InState; + Parms.bInIsRecursive = bInIsRecursive; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerSubsystem.SetDataLayerState +// (Final, BlueprintAuthorityOnly, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataLayerSubsystem::SetDataLayerState(const struct FActorDataLayer& InDataLayer, EDataLayerState InState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "SetDataLayerState"); + + Params::DataLayerSubsystem_SetDataLayerState Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + Parms.InState = InState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerSubsystem.SetDataLayerStateByLabel +// (Final, BlueprintAuthorityOnly, Native, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const class FName& InDataLayerLabel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerState InState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UDataLayerSubsystem::SetDataLayerStateByLabel(const class FName& InDataLayerLabel, EDataLayerState InState) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "SetDataLayerStateByLabel"); + + Params::DataLayerSubsystem_SetDataLayerStateByLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + Parms.InState = InState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.DataLayerSubsystem.GetActiveDataLayerNames +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TSet ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TSet UDataLayerSubsystem::GetActiveDataLayerNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetActiveDataLayerNames"); + + Params::DataLayerSubsystem_GetActiveDataLayerNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayer +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerInstance* UDataLayerSubsystem::GetDataLayer(const struct FActorDataLayer& InDataLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayer"); + + Params::DataLayerSubsystem_GetDataLayer Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerEffectiveRuntimeState +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerEffectiveRuntimeState(const struct FActorDataLayer& InDataLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerEffectiveRuntimeState"); + + Params::DataLayerSubsystem_GetDataLayerEffectiveRuntimeState Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerEffectiveRuntimeStateByLabel +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& InDataLayerLabel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerEffectiveRuntimeStateByLabel(const class FName& InDataLayerLabel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerEffectiveRuntimeStateByLabel"); + + Params::DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerFromLabel +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InDataLayerLabel (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerInstance* UDataLayerSubsystem::GetDataLayerFromLabel(class FName InDataLayerLabel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerFromLabel"); + + Params::DataLayerSubsystem_GetDataLayerFromLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerFromName +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// class FName InDataLayerName (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerInstance* UDataLayerSubsystem::GetDataLayerFromName(class FName InDataLayerName) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerFromName"); + + Params::DataLayerSubsystem_GetDataLayerFromName Parms{}; + + Parms.InDataLayerName = InDataLayerName; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceEffectiveRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerInstanceEffectiveRuntimeState(const class UDataLayerAsset* InDataLayerAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerInstanceEffectiveRuntimeState"); + + Params::DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceFromAsset +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// class UDataLayerInstance* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +class UDataLayerInstance* UDataLayerSubsystem::GetDataLayerInstanceFromAsset(const class UDataLayerAsset* InDataLayerAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerInstanceFromAsset"); + + Params::DataLayerSubsystem_GetDataLayerInstanceFromAsset Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceRuntimeState +// (Final, RequiredAPI, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class UDataLayerAsset* InDataLayerAsset (ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerInstanceRuntimeState(const class UDataLayerAsset* InDataLayerAsset) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerInstanceRuntimeState"); + + Params::DataLayerSubsystem_GetDataLayerInstanceRuntimeState Parms{}; + + Parms.InDataLayerAsset = InDataLayerAsset; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerRuntimeState +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerRuntimeState(const struct FActorDataLayer& InDataLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerRuntimeState"); + + Params::DataLayerSubsystem_GetDataLayerRuntimeState Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerRuntimeStateByLabel +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& InDataLayerLabel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerRuntimeState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerRuntimeState UDataLayerSubsystem::GetDataLayerRuntimeStateByLabel(const class FName& InDataLayerLabel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerRuntimeStateByLabel"); + + Params::DataLayerSubsystem_GetDataLayerRuntimeStateByLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerState +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const struct FActorDataLayer& InDataLayer (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerState UDataLayerSubsystem::GetDataLayerState(const struct FActorDataLayer& InDataLayer) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerState"); + + Params::DataLayerSubsystem_GetDataLayerState Parms{}; + + Parms.InDataLayer = std::move(InDataLayer); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetDataLayerStateByLabel +// (Final, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const class FName& InDataLayerLabel (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// EDataLayerState ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +EDataLayerState UDataLayerSubsystem::GetDataLayerStateByLabel(const class FName& InDataLayerLabel) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetDataLayerStateByLabel"); + + Params::DataLayerSubsystem_GetDataLayerStateByLabel Parms{}; + + Parms.InDataLayerLabel = InDataLayerLabel; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.DataLayerSubsystem.GetLoadedDataLayerNames +// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// const TSet ReturnValue (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) + +const TSet UDataLayerSubsystem::GetLoadedDataLayerNames() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("DataLayerSubsystem", "GetLoadedDataLayerNames"); + + Params::DataLayerSubsystem_GetLoadedDataLayerNames Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionDestructibleInHLODInterface.SetHLODDestructionTag +// (RequiredAPI, Native, Event, Public, HasOutParams, BlueprintEvent) +// Parameters: +// const struct FWorldPartitionHLODDestructionTag&InDestructionTag (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +void IWorldPartitionDestructibleInHLODInterface::SetHLODDestructionTag(const struct FWorldPartitionHLODDestructionTag& InDestructionTag) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("WorldPartitionDestructibleInHLODInterface", "SetHLODDestructionTag"); + + Params::WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag Parms{}; + + Parms.InDestructionTag = std::move(InDestructionTag); + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionDestructibleInHLODInterface.GetHLODDestructionTag +// (RequiredAPI, Native, Event, Public, BlueprintEvent, Const) +// Parameters: +// struct FWorldPartitionHLODDestructionTagReturnValue (Parm, OutParm, ReturnParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + +struct FWorldPartitionHLODDestructionTag IWorldPartitionDestructibleInHLODInterface::GetHLODDestructionTag() const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = AsUObject()->Class->GetFunction("WorldPartitionDestructibleInHLODInterface", "GetHLODDestructionTag"); + + Params::WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + AsUObject()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionDestructibleInHLODSupportLibrary.DamageInHLOD +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TScriptInterface&DestructibleInHLOD (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// float DamagePercent (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWorldPartitionDestructibleInHLODSupportLibrary::DamageInHLOD(const TScriptInterface& DestructibleInHLOD, float DamagePercent) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionDestructibleInHLODSupportLibrary", "DamageInHLOD"); + + Params::WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD Parms{}; + + Parms.DestructibleInHLOD = DestructibleInHLOD; + Parms.DamagePercent = DamagePercent; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionDestructibleInHLODSupportLibrary.DestroyInHLOD +// (Final, RequiredAPI, Native, Static, Public, HasOutParams, BlueprintCallable) +// Parameters: +// const TScriptInterface&DestructibleInHLOD (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +void UWorldPartitionDestructibleInHLODSupportLibrary::DestroyInHLOD(const TScriptInterface& DestructibleInHLOD) +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = StaticClass()->GetFunction("WorldPartitionDestructibleInHLODSupportLibrary", "DestroyInHLOD"); + + Params::WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD Parms{}; + + Parms.DestructibleInHLOD = DestructibleInHLOD; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + GetDefaultObj()->ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; +} + + +// Function Engine.WorldPartitionSubsystem.IsAllStreamingCompleted +// (Final, RequiredAPI, Native, Public, BlueprintCallable) +// Parameters: +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionSubsystem::IsAllStreamingCompleted() +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionSubsystem", "IsAllStreamingCompleted"); + + Params::WorldPartitionSubsystem_IsAllStreamingCompleted Parms{}; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + + +// Function Engine.WorldPartitionSubsystem.IsStreamingCompleted +// (Final, RequiredAPI, Native, Public, HasOutParams, BlueprintCallable, BlueprintPure, Const) +// Parameters: +// EWorldPartitionRuntimeCellState QueryState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// const TArray&QuerySources (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +// bool bExactState (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +// bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +bool UWorldPartitionSubsystem::IsStreamingCompleted(EWorldPartitionRuntimeCellState QueryState, const TArray& QuerySources, bool bExactState) const +{ + static class UFunction* Func = nullptr; + + if (Func == nullptr) + Func = Class->GetFunction("WorldPartitionSubsystem", "IsStreamingCompleted"); + + Params::WorldPartitionSubsystem_IsStreamingCompleted Parms{}; + + Parms.QueryState = QueryState; + Parms.QuerySources = std::move(QuerySources); + Parms.bExactState = bExactState; + + auto Flgs = Func->FunctionFlags; + Func->FunctionFlags |= 0x400; + + UObject::ProcessEvent(Func, &Parms); + + Func->FunctionFlags = Flgs; + + return Parms.ReturnValue; +} + +} + diff --git a/TormentedSouls2/SDK/Engine_parameters.hpp b/TormentedSouls2/SDK/Engine_parameters.hpp new file mode 100644 index 0000000..89c2926 --- /dev/null +++ b/TormentedSouls2/SDK/Engine_parameters.hpp @@ -0,0 +1,45738 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Engine + +#include "Basic.hpp" + +#include "Engine_structs.hpp" +#include "CoreUObject_structs.hpp" +#include "PhysicsCore_structs.hpp" +#include "Chaos_structs.hpp" +#include "ImageCore_structs.hpp" +#include "AudioExtensions_structs.hpp" +#include "FieldNotification_structs.hpp" +#include "InputCore_structs.hpp" +#include "UniversalObjectLocator_structs.hpp" +#include "TypedElementFramework_structs.hpp" +#include "NetCore_structs.hpp" +#include "SlateCore_structs.hpp" +#include "Slate_structs.hpp" + + +namespace SDK::Params +{ + +// Function Engine.ActorComponent.Activate +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_Activate final +{ +public: + bool bReset; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_Activate; + +// Function Engine.ActorComponent.AddTickPrerequisiteActor +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_AddTickPrerequisiteActor final +{ +public: + class AActor* PrerequisiteActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_AddTickPrerequisiteActor; + +// Function Engine.ActorComponent.AddTickPrerequisiteComponent +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_AddTickPrerequisiteComponent final +{ +public: + class UActorComponent* PrerequisiteComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_AddTickPrerequisiteComponent; + +// Function Engine.ActorComponent.K2_DestroyComponent +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_K2_DestroyComponent final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_K2_DestroyComponent; + +// Function Engine.ActorComponent.ReceiveAsyncPhysicsTick +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_ReceiveAsyncPhysicsTick final +{ +public: + float DeltaSeconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SimSeconds; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_ReceiveAsyncPhysicsTick; + +// Function Engine.ActorComponent.ReceiveEndPlay +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_ReceiveEndPlay final +{ +public: + EEndPlayReason EndPlayReason; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_ReceiveEndPlay; + +// Function Engine.ActorComponent.ReceiveTick +// 0x0004 (0x0004 - 0x0000) +struct ActorComponent_ReceiveTick final +{ +public: + float DeltaSeconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_ReceiveTick; + +// Function Engine.ActorComponent.RemoveTickPrerequisiteActor +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_RemoveTickPrerequisiteActor final +{ +public: + class AActor* PrerequisiteActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_RemoveTickPrerequisiteActor; + +// Function Engine.ActorComponent.RemoveTickPrerequisiteComponent +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_RemoveTickPrerequisiteComponent final +{ +public: + class UActorComponent* PrerequisiteComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_RemoveTickPrerequisiteComponent; + +// Function Engine.ActorComponent.SetActive +// 0x0002 (0x0002 - 0x0000) +struct ActorComponent_SetActive final +{ +public: + bool bNewActive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bReset; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetActive; + +// Function Engine.ActorComponent.SetAutoActivate +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_SetAutoActivate final +{ +public: + bool bNewAutoActivate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetAutoActivate; + +// Function Engine.ActorComponent.SetComponentTickEnabled +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_SetComponentTickEnabled final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetComponentTickEnabled; + +// Function Engine.ActorComponent.SetComponentTickInterval +// 0x0004 (0x0004 - 0x0000) +struct ActorComponent_SetComponentTickInterval final +{ +public: + float TickInterval; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetComponentTickInterval; + +// Function Engine.ActorComponent.SetComponentTickIntervalAndCooldown +// 0x0004 (0x0004 - 0x0000) +struct ActorComponent_SetComponentTickIntervalAndCooldown final +{ +public: + float TickInterval; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetComponentTickIntervalAndCooldown; + +// Function Engine.ActorComponent.SetIsReplicated +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_SetIsReplicated final +{ +public: + bool ShouldReplicate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetIsReplicated; + +// Function Engine.ActorComponent.SetTickableWhenPaused +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_SetTickableWhenPaused final +{ +public: + bool bTickableWhenPaused; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetTickableWhenPaused; + +// Function Engine.ActorComponent.SetTickGroup +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_SetTickGroup final +{ +public: + ETickingGroup NewTickGroup; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_SetTickGroup; + +// Function Engine.ActorComponent.ComponentHasTag +// 0x000C (0x000C - 0x0000) +struct ActorComponent_ComponentHasTag final +{ +public: + class FName Tag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ActorComponent_ComponentHasTag; + +// Function Engine.ActorComponent.GetComponentTickInterval +// 0x0004 (0x0004 - 0x0000) +struct ActorComponent_GetComponentTickInterval final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_GetComponentTickInterval; + +// Function Engine.ActorComponent.GetOwner +// 0x0008 (0x0008 - 0x0000) +struct ActorComponent_GetOwner final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_GetOwner; + +// Function Engine.ActorComponent.IsActive +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_IsActive final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_IsActive; + +// Function Engine.ActorComponent.IsBeingDestroyed +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_IsBeingDestroyed final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_IsBeingDestroyed; + +// Function Engine.ActorComponent.IsComponentTickEnabled +// 0x0001 (0x0001 - 0x0000) +struct ActorComponent_IsComponentTickEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ActorComponent_IsComponentTickEnabled; + +// Function Engine.SceneComponent.DetachFromParent +// 0x0002 (0x0002 - 0x0000) +struct SceneComponent_DetachFromParent final +{ +public: + bool bMaintainWorldPosition; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCallModify; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_DetachFromParent; + +// Function Engine.SceneComponent.K2_AddLocalOffset +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddLocalOffset final +{ +public: + struct FVector DeltaLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddLocalOffset; + +// Function Engine.SceneComponent.K2_AddLocalRotation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddLocalRotation final +{ +public: + struct FRotator DeltaRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddLocalRotation; + +// Function Engine.SceneComponent.K2_AddLocalTransform +// 0x0170 (0x0170 - 0x0000) +struct SceneComponent_K2_AddLocalTransform final +{ +public: + struct FTransform DeltaTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddLocalTransform; + +// Function Engine.SceneComponent.K2_AddRelativeLocation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddRelativeLocation final +{ +public: + struct FVector DeltaLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddRelativeLocation; + +// Function Engine.SceneComponent.K2_AddRelativeRotation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddRelativeRotation final +{ +public: + struct FRotator DeltaRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddRelativeRotation; + +// Function Engine.SceneComponent.K2_AddWorldOffset +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddWorldOffset final +{ +public: + struct FVector DeltaLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddWorldOffset; + +// Function Engine.SceneComponent.K2_AddWorldRotation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_AddWorldRotation final +{ +public: + struct FRotator DeltaRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddWorldRotation; + +// Function Engine.SceneComponent.K2_AddWorldTransform +// 0x0170 (0x0170 - 0x0000) +struct SceneComponent_K2_AddWorldTransform final +{ +public: + struct FTransform DeltaTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddWorldTransform; + +// Function Engine.SceneComponent.K2_AddWorldTransformKeepScale +// 0x0170 (0x0170 - 0x0000) +struct SceneComponent_K2_AddWorldTransformKeepScale final +{ +public: + struct FTransform DeltaTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AddWorldTransformKeepScale; + +// Function Engine.SceneComponent.K2_AttachTo +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_K2_AttachTo final +{ +public: + class USceneComponent* InParent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InSocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation AttachType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0012(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AttachTo; + +// Function Engine.SceneComponent.K2_AttachToComponent +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_K2_AttachToComponent final +{ +public: + class USceneComponent* Parent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule LocationRule; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule RotationRule; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule ScaleRule; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0013(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_AttachToComponent; + +// Function Engine.SceneComponent.K2_DetachFromComponent +// 0x0004 (0x0004 - 0x0000) +struct SceneComponent_K2_DetachFromComponent final +{ +public: + EDetachmentRule LocationRule; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetachmentRule RotationRule; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetachmentRule ScaleRule; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCallModify; // 0x0003(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_K2_DetachFromComponent; + +// Function Engine.SceneComponent.K2_SetRelativeLocation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_SetRelativeLocation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetRelativeLocation; + +// Function Engine.SceneComponent.K2_SetRelativeLocationAndRotation +// 0x0140 (0x0140 - 0x0000) +struct SceneComponent_K2_SetRelativeLocationAndRotation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0038(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0138(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_139[0x7]; // 0x0139(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetRelativeLocationAndRotation; + +// Function Engine.SceneComponent.K2_SetRelativeRotation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_SetRelativeRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetRelativeRotation; + +// Function Engine.SceneComponent.K2_SetRelativeTransform +// 0x0170 (0x0170 - 0x0000) +struct SceneComponent_K2_SetRelativeTransform final +{ +public: + struct FTransform NewTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetRelativeTransform; + +// Function Engine.SceneComponent.K2_SetWorldLocation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_SetWorldLocation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetWorldLocation; + +// Function Engine.SceneComponent.K2_SetWorldLocationAndRotation +// 0x0140 (0x0140 - 0x0000) +struct SceneComponent_K2_SetWorldLocationAndRotation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0038(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0138(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_139[0x7]; // 0x0139(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetWorldLocationAndRotation; + +// Function Engine.SceneComponent.K2_SetWorldRotation +// 0x0128 (0x0128 - 0x0000) +struct SceneComponent_K2_SetWorldRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetWorldRotation; + +// Function Engine.SceneComponent.K2_SetWorldTransform +// 0x0170 (0x0170 - 0x0000) +struct SceneComponent_K2_SetWorldTransform final +{ +public: + struct FTransform NewTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_K2_SetWorldTransform; + +// Function Engine.SceneComponent.OnRep_Visibility +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_OnRep_Visibility final +{ +public: + bool OldValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_OnRep_Visibility; + +// Function Engine.SceneComponent.SetAbsolute +// 0x0003 (0x0003 - 0x0000) +struct SceneComponent_SetAbsolute final +{ +public: + bool bNewAbsoluteLocation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewAbsoluteRotation; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewAbsoluteScale; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetAbsolute; + +// Function Engine.SceneComponent.SetHiddenInGame +// 0x0002 (0x0002 - 0x0000) +struct SceneComponent_SetHiddenInGame final +{ +public: + bool NewHidden; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPropagateToChildren; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetHiddenInGame; + +// Function Engine.SceneComponent.SetMobility +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_SetMobility final +{ +public: + EComponentMobility NewMobility; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetMobility; + +// Function Engine.SceneComponent.SetRelativeScale3D +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_SetRelativeScale3D final +{ +public: + struct FVector NewScale3D; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetRelativeScale3D; + +// Function Engine.SceneComponent.SetShouldUpdatePhysicsVolume +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_SetShouldUpdatePhysicsVolume final +{ +public: + bool bInShouldUpdatePhysicsVolume; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetShouldUpdatePhysicsVolume; + +// Function Engine.SceneComponent.SetVisibility +// 0x0002 (0x0002 - 0x0000) +struct SceneComponent_SetVisibility final +{ +public: + bool bNewVisibility; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPropagateToChildren; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetVisibility; + +// Function Engine.SceneComponent.SetWorldScale3D +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_SetWorldScale3D final +{ +public: + struct FVector NewScale; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_SetWorldScale3D; + +// Function Engine.SceneComponent.ToggleVisibility +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_ToggleVisibility final +{ +public: + bool bPropagateToChildren; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_ToggleVisibility; + +// Function Engine.SceneComponent.DoesSocketExist +// 0x000C (0x000C - 0x0000) +struct SceneComponent_DoesSocketExist final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_DoesSocketExist; + +// Function Engine.SceneComponent.GetAllSocketNames +// 0x0010 (0x0010 - 0x0000) +struct SceneComponent_GetAllSocketNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetAllSocketNames; + +// Function Engine.SceneComponent.GetAttachParent +// 0x0008 (0x0008 - 0x0000) +struct SceneComponent_GetAttachParent final +{ +public: + class USceneComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetAttachParent; + +// Function Engine.SceneComponent.GetAttachSocketName +// 0x0008 (0x0008 - 0x0000) +struct SceneComponent_GetAttachSocketName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetAttachSocketName; + +// Function Engine.SceneComponent.GetChildComponent +// 0x0010 (0x0010 - 0x0000) +struct SceneComponent_GetChildComponent final +{ +public: + int32 ChildIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USceneComponent* ReturnValue; // 0x0008(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetChildComponent; + +// Function Engine.SceneComponent.GetChildrenComponents +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_GetChildrenComponents final +{ +public: + bool bIncludeAllDescendants; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Children; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetChildrenComponents; + +// Function Engine.SceneComponent.GetComponentVelocity +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_GetComponentVelocity final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetComponentVelocity; + +// Function Engine.SceneComponent.GetForwardVector +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_GetForwardVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetForwardVector; + +// Function Engine.SceneComponent.GetNumChildrenComponents +// 0x0004 (0x0004 - 0x0000) +struct SceneComponent_GetNumChildrenComponents final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetNumChildrenComponents; + +// Function Engine.SceneComponent.GetParentComponents +// 0x0010 (0x0010 - 0x0000) +struct SceneComponent_GetParentComponents final +{ +public: + TArray Parents; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetParentComponents; + +// Function Engine.SceneComponent.GetPhysicsVolume +// 0x0008 (0x0008 - 0x0000) +struct SceneComponent_GetPhysicsVolume final +{ +public: + class APhysicsVolume* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetPhysicsVolume; + +// Function Engine.SceneComponent.GetRelativeTransform +// 0x0060 (0x0060 - 0x0000) +struct SceneComponent_GetRelativeTransform final +{ +public: + struct FTransform ReturnValue; // 0x0000(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetRelativeTransform; + +// Function Engine.SceneComponent.GetRightVector +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_GetRightVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetRightVector; + +// Function Engine.SceneComponent.GetShouldUpdatePhysicsVolume +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_GetShouldUpdatePhysicsVolume final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetShouldUpdatePhysicsVolume; + +// Function Engine.SceneComponent.GetSocketLocation +// 0x0020 (0x0020 - 0x0000) +struct SceneComponent_GetSocketLocation final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetSocketLocation; + +// Function Engine.SceneComponent.GetSocketQuaternion +// 0x0030 (0x0030 - 0x0000) +struct SceneComponent_GetSocketQuaternion final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0010(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetSocketQuaternion; + +// Function Engine.SceneComponent.GetSocketRotation +// 0x0020 (0x0020 - 0x0000) +struct SceneComponent_GetSocketRotation final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetSocketRotation; + +// Function Engine.SceneComponent.GetSocketTransform +// 0x0070 (0x0070 - 0x0000) +struct SceneComponent_GetSocketTransform final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERelativeTransformSpace TransformSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetSocketTransform; + +// Function Engine.SceneComponent.GetUpVector +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_GetUpVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_GetUpVector; + +// Function Engine.SceneComponent.IsAnySimulatingPhysics +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_IsAnySimulatingPhysics final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_IsAnySimulatingPhysics; + +// Function Engine.SceneComponent.IsSimulatingPhysics +// 0x000C (0x000C - 0x0000) +struct SceneComponent_IsSimulatingPhysics final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneComponent_IsSimulatingPhysics; + +// Function Engine.SceneComponent.IsVisible +// 0x0001 (0x0001 - 0x0000) +struct SceneComponent_IsVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_IsVisible; + +// Function Engine.SceneComponent.K2_GetComponentLocation +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_K2_GetComponentLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_K2_GetComponentLocation; + +// Function Engine.SceneComponent.K2_GetComponentRotation +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_K2_GetComponentRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SceneComponent_K2_GetComponentRotation; + +// Function Engine.SceneComponent.K2_GetComponentScale +// 0x0018 (0x0018 - 0x0000) +struct SceneComponent_K2_GetComponentScale final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_K2_GetComponentScale; + +// Function Engine.SceneComponent.K2_GetComponentToWorld +// 0x0060 (0x0060 - 0x0000) +struct SceneComponent_K2_GetComponentToWorld final +{ +public: + struct FTransform ReturnValue; // 0x0000(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneComponent_K2_GetComponentToWorld; + +// Function Engine.Actor.AddComponent +// 0x0090 (0x0090 - 0x0000) +struct Actor_AddComponent final +{ +public: + class FName TemplateName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bManualAttachment; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform RelativeTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UObject* ComponentTemplateContext; // 0x0070(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDeferredFinish; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UActorComponent* ReturnValue; // 0x0080(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_AddComponent; + +// Function Engine.Actor.AddComponentByClass +// 0x0080 (0x0080 - 0x0000) +struct Actor_AddComponentByClass final +{ +public: + TSubclassOf Class_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bManualAttachment; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform RelativeTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDeferredFinish; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UActorComponent* ReturnValue; // 0x0078(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_AddComponentByClass; + +// Function Engine.Actor.AddTickPrerequisiteActor +// 0x0008 (0x0008 - 0x0000) +struct Actor_AddTickPrerequisiteActor final +{ +public: + class AActor* PrerequisiteActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_AddTickPrerequisiteActor; + +// Function Engine.Actor.AddTickPrerequisiteComponent +// 0x0008 (0x0008 - 0x0000) +struct Actor_AddTickPrerequisiteComponent final +{ +public: + class UActorComponent* PrerequisiteComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_AddTickPrerequisiteComponent; + +// Function Engine.Actor.CreateInputComponent +// 0x0008 (0x0008 - 0x0000) +struct Actor_CreateInputComponent final +{ +public: + TSubclassOf InputComponentToCreate; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_CreateInputComponent; + +// Function Engine.Actor.DetachRootComponentFromParent +// 0x0001 (0x0001 - 0x0000) +struct Actor_DetachRootComponentFromParent final +{ +public: + bool bMaintainWorldPosition; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_DetachRootComponentFromParent; + +// Function Engine.Actor.DisableInput +// 0x0008 (0x0008 - 0x0000) +struct Actor_DisableInput final +{ +public: + class APlayerController* PlayerController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_DisableInput; + +// Function Engine.Actor.EnableInput +// 0x0008 (0x0008 - 0x0000) +struct Actor_EnableInput final +{ +public: + class APlayerController* PlayerController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_EnableInput; + +// Function Engine.Actor.FinishAddComponent +// 0x0070 (0x0070 - 0x0000) +struct Actor_FinishAddComponent final +{ +public: + class UActorComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bManualAttachment; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform RelativeTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_FinishAddComponent; + +// Function Engine.Actor.GetPhysicsReplicationMode +// 0x0001 (0x0001 - 0x0000) +struct Actor_GetPhysicsReplicationMode final +{ +public: + EPhysicsReplicationMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetPhysicsReplicationMode; + +// Function Engine.Actor.GetTickableWhenPaused +// 0x0001 (0x0001 - 0x0000) +struct Actor_GetTickableWhenPaused final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetTickableWhenPaused; + +// Function Engine.Actor.K2_AddActorLocalOffset +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_AddActorLocalOffset final +{ +public: + struct FVector DeltaLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorLocalOffset; + +// Function Engine.Actor.K2_AddActorLocalRotation +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_AddActorLocalRotation final +{ +public: + struct FRotator DeltaRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorLocalRotation; + +// Function Engine.Actor.K2_AddActorLocalTransform +// 0x0170 (0x0170 - 0x0000) +struct Actor_K2_AddActorLocalTransform final +{ +public: + struct FTransform NewTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorLocalTransform; + +// Function Engine.Actor.K2_AddActorWorldOffset +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_AddActorWorldOffset final +{ +public: + struct FVector DeltaLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorWorldOffset; + +// Function Engine.Actor.K2_AddActorWorldRotation +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_AddActorWorldRotation final +{ +public: + struct FRotator DeltaRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorWorldRotation; + +// Function Engine.Actor.K2_AddActorWorldTransform +// 0x0170 (0x0170 - 0x0000) +struct Actor_K2_AddActorWorldTransform final +{ +public: + struct FTransform DeltaTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorWorldTransform; + +// Function Engine.Actor.K2_AddActorWorldTransformKeepScale +// 0x0170 (0x0170 - 0x0000) +struct Actor_K2_AddActorWorldTransformKeepScale final +{ +public: + struct FTransform DeltaTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AddActorWorldTransformKeepScale; + +// Function Engine.Actor.K2_AttachRootComponentTo +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_AttachRootComponentTo final +{ +public: + class USceneComponent* InParent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InSocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation AttachLocationType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AttachRootComponentTo; + +// Function Engine.Actor.K2_AttachRootComponentToActor +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_AttachRootComponentToActor final +{ +public: + class AActor* InParentActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InSocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation AttachLocationType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AttachRootComponentToActor; + +// Function Engine.Actor.K2_AttachToActor +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_AttachToActor final +{ +public: + class AActor* ParentActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule LocationRule; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule RotationRule; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule ScaleRule; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0013(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AttachToActor; + +// Function Engine.Actor.K2_AttachToComponent +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_AttachToComponent final +{ +public: + class USceneComponent* Parent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule LocationRule; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule RotationRule; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule ScaleRule; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeldSimulatedBodies; // 0x0013(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_AttachToComponent; + +// Function Engine.Actor.K2_DetachFromActor +// 0x0003 (0x0003 - 0x0000) +struct Actor_K2_DetachFromActor final +{ +public: + EDetachmentRule LocationRule; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetachmentRule RotationRule; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetachmentRule ScaleRule; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_K2_DetachFromActor; + +// Function Engine.Actor.K2_OnBecomeViewTarget +// 0x0008 (0x0008 - 0x0000) +struct Actor_K2_OnBecomeViewTarget final +{ +public: + class APlayerController* PC; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_K2_OnBecomeViewTarget; + +// Function Engine.Actor.K2_OnEndViewTarget +// 0x0008 (0x0008 - 0x0000) +struct Actor_K2_OnEndViewTarget final +{ +public: + class APlayerController* PC; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_K2_OnEndViewTarget; + +// Function Engine.Actor.K2_SetActorLocation +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_SetActorLocation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0121(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_122[0x6]; // 0x0122(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorLocation; + +// Function Engine.Actor.K2_SetActorLocationAndRotation +// 0x0140 (0x0140 - 0x0000) +struct Actor_K2_SetActorLocationAndRotation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0038(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0138(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0139(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13A[0x6]; // 0x013A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorLocationAndRotation; + +// Function Engine.Actor.K2_SetActorRelativeLocation +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_SetActorRelativeLocation final +{ +public: + struct FVector NewRelativeLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorRelativeLocation; + +// Function Engine.Actor.K2_SetActorRelativeRotation +// 0x0128 (0x0128 - 0x0000) +struct Actor_K2_SetActorRelativeRotation final +{ +public: + struct FRotator NewRelativeRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bSweep; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0120(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorRelativeRotation; + +// Function Engine.Actor.K2_SetActorRelativeTransform +// 0x0170 (0x0170 - 0x0000) +struct Actor_K2_SetActorRelativeTransform final +{ +public: + struct FTransform NewRelativeTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x7]; // 0x0169(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorRelativeTransform; + +// Function Engine.Actor.K2_SetActorRotation +// 0x0020 (0x0020 - 0x0000) +struct Actor_K2_SetActorRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bTeleportPhysics; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorRotation; + +// Function Engine.Actor.K2_SetActorTransform +// 0x0170 (0x0170 - 0x0000) +struct Actor_K2_SetActorTransform final +{ +public: + struct FTransform NewTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSweep; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepHitResult; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0169(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16A[0x6]; // 0x016A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_SetActorTransform; + +// Function Engine.Actor.K2_TeleportTo +// 0x0038 (0x0038 - 0x0000) +struct Actor_K2_TeleportTo final +{ +public: + struct FVector DestLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator DestRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_K2_TeleportTo; + +// Function Engine.Actor.MakeNoise +// 0x0038 (0x0038 - 0x0000) +struct Actor_MakeNoise final +{ +public: + float Loudness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APawn* NoiseInstigator; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NoiseLocation; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxRange; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x002C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_MakeNoise; + +// Function Engine.Actor.PrestreamTextures +// 0x000C (0x000C - 0x0000) +struct Actor_PrestreamTextures final +{ +public: + float Seconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableStreaming; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CinematicTextureGroups; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_PrestreamTextures; + +// Function Engine.Actor.ReceiveActorBeginOverlap +// 0x0008 (0x0008 - 0x0000) +struct Actor_ReceiveActorBeginOverlap final +{ +public: + class AActor* OtherActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorBeginOverlap; + +// Function Engine.Actor.ReceiveActorEndOverlap +// 0x0008 (0x0008 - 0x0000) +struct Actor_ReceiveActorEndOverlap final +{ +public: + class AActor* OtherActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorEndOverlap; + +// Function Engine.Actor.ReceiveActorOnClicked +// 0x0018 (0x0018 - 0x0000) +struct Actor_ReceiveActorOnClicked final +{ +public: + struct FKey ButtonPressed; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnClicked; + +// Function Engine.Actor.ReceiveActorOnInputTouchBegin +// 0x0001 (0x0001 - 0x0000) +struct Actor_ReceiveActorOnInputTouchBegin final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnInputTouchBegin; + +// Function Engine.Actor.ReceiveActorOnInputTouchEnd +// 0x0001 (0x0001 - 0x0000) +struct Actor_ReceiveActorOnInputTouchEnd final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnInputTouchEnd; + +// Function Engine.Actor.ReceiveActorOnInputTouchEnter +// 0x0001 (0x0001 - 0x0000) +struct Actor_ReceiveActorOnInputTouchEnter final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnInputTouchEnter; + +// Function Engine.Actor.ReceiveActorOnInputTouchLeave +// 0x0001 (0x0001 - 0x0000) +struct Actor_ReceiveActorOnInputTouchLeave final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnInputTouchLeave; + +// Function Engine.Actor.ReceiveActorOnReleased +// 0x0018 (0x0018 - 0x0000) +struct Actor_ReceiveActorOnReleased final +{ +public: + struct FKey ButtonReleased; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveActorOnReleased; + +// Function Engine.Actor.ReceiveAnyDamage +// 0x0020 (0x0020 - 0x0000) +struct Actor_ReceiveAnyDamage final +{ +public: + float Damage; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UDamageType* DamageType; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* InstigatedBy; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveAnyDamage; + +// Function Engine.Actor.ReceiveAsyncPhysicsTick +// 0x0008 (0x0008 - 0x0000) +struct Actor_ReceiveAsyncPhysicsTick final +{ +public: + float DeltaSeconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SimSeconds; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveAsyncPhysicsTick; + +// Function Engine.Actor.ReceiveEndPlay +// 0x0001 (0x0001 - 0x0000) +struct Actor_ReceiveEndPlay final +{ +public: + EEndPlayReason EndPlayReason; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveEndPlay; + +// Function Engine.Actor.ReceiveHit +// 0x0168 (0x0168 - 0x0000) +struct Actor_ReceiveHit final +{ +public: + class UPrimitiveComponent* MyComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* Other; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* OtherComp; // 0x0010(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSelfMoved; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitLocation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NormalImpulse; // 0x0050(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult Hit; // 0x0068(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveHit; + +// Function Engine.Actor.ReceivePointDamage +// 0x0178 (0x0178 - 0x0000) +struct Actor_ReceivePointDamage final +{ +public: + float Damage; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UDamageType* DamageType; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitLocation; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* HitComponent; // 0x0040(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0048(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ShotFromDirection; // 0x0050(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* InstigatedBy; // 0x0068(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0070(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult HitInfo; // 0x0078(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_ReceivePointDamage; + +// Function Engine.Actor.ReceiveRadialDamage +// 0x0138 (0x0138 - 0x0000) +struct Actor_ReceiveRadialDamage final +{ +public: + float DamageReceived; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UDamageType* DamageType; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult HitInfo; // 0x0028(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + class AController* InstigatedBy; // 0x0128(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0130(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveRadialDamage; + +// Function Engine.Actor.ReceiveTick +// 0x0004 (0x0004 - 0x0000) +struct Actor_ReceiveTick final +{ +public: + float DeltaSeconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_ReceiveTick; + +// Function Engine.Actor.RemoveTickPrerequisiteActor +// 0x0008 (0x0008 - 0x0000) +struct Actor_RemoveTickPrerequisiteActor final +{ +public: + class AActor* PrerequisiteActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_RemoveTickPrerequisiteActor; + +// Function Engine.Actor.RemoveTickPrerequisiteComponent +// 0x0008 (0x0008 - 0x0000) +struct Actor_RemoveTickPrerequisiteComponent final +{ +public: + class UActorComponent* PrerequisiteComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_RemoveTickPrerequisiteComponent; + +// Function Engine.Actor.SetActorEnableCollision +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetActorEnableCollision final +{ +public: + bool bNewActorEnableCollision; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorEnableCollision; + +// Function Engine.Actor.SetActorHiddenInGame +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetActorHiddenInGame final +{ +public: + bool bNewHidden; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorHiddenInGame; + +// Function Engine.Actor.SetActorRelativeScale3D +// 0x0018 (0x0018 - 0x0000) +struct Actor_SetActorRelativeScale3D final +{ +public: + struct FVector NewRelativeScale; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorRelativeScale3D; + +// Function Engine.Actor.SetActorScale3D +// 0x0018 (0x0018 - 0x0000) +struct Actor_SetActorScale3D final +{ +public: + struct FVector NewScale3D; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorScale3D; + +// Function Engine.Actor.SetActorTickEnabled +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetActorTickEnabled final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorTickEnabled; + +// Function Engine.Actor.SetActorTickInterval +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetActorTickInterval final +{ +public: + float TickInterval; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetActorTickInterval; + +// Function Engine.Actor.SetAutoDestroyWhenFinished +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetAutoDestroyWhenFinished final +{ +public: + bool bVal; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetAutoDestroyWhenFinished; + +// Function Engine.Actor.SetLifeSpan +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetLifeSpan final +{ +public: + float InLifespan; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetLifeSpan; + +// Function Engine.Actor.SetMinNetUpdateFrequency +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetMinNetUpdateFrequency final +{ +public: + float MinFrequency; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetMinNetUpdateFrequency; + +// Function Engine.Actor.SetNetCullDistanceSquared +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetNetCullDistanceSquared final +{ +public: + float DistanceSq; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetNetCullDistanceSquared; + +// Function Engine.Actor.SetNetDormancy +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetNetDormancy final +{ +public: + ENetDormancy NewDormancy; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetNetDormancy; + +// Function Engine.Actor.SetNetUpdateFrequency +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetNetUpdateFrequency final +{ +public: + float Frequency; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetNetUpdateFrequency; + +// Function Engine.Actor.SetOwner +// 0x0008 (0x0008 - 0x0000) +struct Actor_SetOwner final +{ +public: + class AActor* NewOwner; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetOwner; + +// Function Engine.Actor.SetPhysicsReplicationMode +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetPhysicsReplicationMode final +{ +public: + EPhysicsReplicationMode ReplicationMode; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetPhysicsReplicationMode; + +// Function Engine.Actor.SetRayTracingGroupId +// 0x0004 (0x0004 - 0x0000) +struct Actor_SetRayTracingGroupId final +{ +public: + int32 InRaytracingGroupId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetRayTracingGroupId; + +// Function Engine.Actor.SetReplicateMovement +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetReplicateMovement final +{ +public: + bool bInReplicateMovement; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetReplicateMovement; + +// Function Engine.Actor.SetReplicates +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetReplicates final +{ +public: + bool bInReplicates; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetReplicates; + +// Function Engine.Actor.SetTickableWhenPaused +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetTickableWhenPaused final +{ +public: + bool bTickableWhenPaused; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetTickableWhenPaused; + +// Function Engine.Actor.SetTickGroup +// 0x0001 (0x0001 - 0x0000) +struct Actor_SetTickGroup final +{ +public: + ETickingGroup NewTickGroup; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_SetTickGroup; + +// Function Engine.Actor.ActorHasTag +// 0x000C (0x000C - 0x0000) +struct Actor_ActorHasTag final +{ +public: + class FName Tag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_ActorHasTag; + +// Function Engine.Actor.CanTriggerResimulation +// 0x0001 (0x0001 - 0x0000) +struct Actor_CanTriggerResimulation final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_CanTriggerResimulation; + +// Function Engine.Actor.FindComponentByTag +// 0x0018 (0x0018 - 0x0000) +struct Actor_FindComponentByTag final +{ +public: + TSubclassOf ComponentClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UActorComponent* ReturnValue; // 0x0010(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_FindComponentByTag; + +// Function Engine.Actor.GetActorBounds +// 0x0040 (0x0040 - 0x0000) +struct Actor_GetActorBounds final +{ +public: + bool bOnlyCollidingComponents; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Origin; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeFromChildActors; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetActorBounds; + +// Function Engine.Actor.GetActorEnableCollision +// 0x0001 (0x0001 - 0x0000) +struct Actor_GetActorEnableCollision final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorEnableCollision; + +// Function Engine.Actor.GetActorEyesViewPoint +// 0x0030 (0x0030 - 0x0000) +struct Actor_GetActorEyesViewPoint final +{ +public: + struct FVector OutLocation; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutRotation; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Actor_GetActorEyesViewPoint; + +// Function Engine.Actor.GetActorForwardVector +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetActorForwardVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorForwardVector; + +// Function Engine.Actor.GetActorRelativeScale3D +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetActorRelativeScale3D final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorRelativeScale3D; + +// Function Engine.Actor.GetActorRightVector +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetActorRightVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorRightVector; + +// Function Engine.Actor.GetActorScale3D +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetActorScale3D final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorScale3D; + +// Function Engine.Actor.GetActorTickInterval +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetActorTickInterval final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorTickInterval; + +// Function Engine.Actor.GetActorTimeDilation +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetActorTimeDilation final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorTimeDilation; + +// Function Engine.Actor.GetActorUpVector +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetActorUpVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetActorUpVector; + +// Function Engine.Actor.GetAllChildActors +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetAllChildActors final +{ +public: + TArray ChildActors; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIncludeDescendants; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetAllChildActors; + +// Function Engine.Actor.GetAttachedActors +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetAttachedActors final +{ +public: + TArray OutActors; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bResetArray; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecursivelyIncludeAttachedActors; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetAttachedActors; + +// Function Engine.Actor.GetAttachParentActor +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetAttachParentActor final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetAttachParentActor; + +// Function Engine.Actor.GetAttachParentSocketName +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetAttachParentSocketName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetAttachParentSocketName; + +// Function Engine.Actor.GetComponentByClass +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetComponentByClass final +{ +public: + TSubclassOf ComponentClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UActorComponent* ReturnValue; // 0x0008(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetComponentByClass; + +// Function Engine.Actor.GetComponentsByInterface +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetComponentsByInterface final +{ +public: + TSubclassOf Interface; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0008(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_GetComponentsByInterface; + +// Function Engine.Actor.GetComponentsByTag +// 0x0020 (0x0020 - 0x0000) +struct Actor_GetComponentsByTag final +{ +public: + TSubclassOf ComponentClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0010(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_GetComponentsByTag; + +// Function Engine.Actor.GetDistanceTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetDistanceTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetDistanceTo; + +// Function Engine.Actor.GetDotProductTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetDotProductTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetDotProductTo; + +// Function Engine.Actor.GetGameTimeSinceCreation +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetGameTimeSinceCreation final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetGameTimeSinceCreation; + +// Function Engine.Actor.GetHorizontalDistanceTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetHorizontalDistanceTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetHorizontalDistanceTo; + +// Function Engine.Actor.GetHorizontalDotProductTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetHorizontalDotProductTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetHorizontalDotProductTo; + +// Function Engine.Actor.GetInputAxisKeyValue +// 0x0020 (0x0020 - 0x0000) +struct Actor_GetInputAxisKeyValue final +{ +public: + struct FKey InputAxisKey; // 0x0000(0x0018)(ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetInputAxisKeyValue; + +// Function Engine.Actor.GetInputAxisValue +// 0x000C (0x000C - 0x0000) +struct Actor_GetInputAxisValue final +{ +public: + class FName InputAxisName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetInputAxisValue; + +// Function Engine.Actor.GetInputVectorAxisValue +// 0x0030 (0x0030 - 0x0000) +struct Actor_GetInputVectorAxisValue final +{ +public: + struct FKey InputAxisKey; // 0x0000(0x0018)(ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetInputVectorAxisValue; + +// Function Engine.Actor.GetInstigator +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetInstigator final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetInstigator; + +// Function Engine.Actor.GetInstigatorController +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetInstigatorController final +{ +public: + class AController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetInstigatorController; + +// Function Engine.Actor.GetLevel +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetLevel final +{ +public: + class ULevel* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetLevel; + +// Function Engine.Actor.GetLevelTransform +// 0x0060 (0x0060 - 0x0000) +struct Actor_GetLevelTransform final +{ +public: + struct FTransform ReturnValue; // 0x0000(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetLevelTransform; + +// Function Engine.Actor.GetLifeSpan +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetLifeSpan final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetLifeSpan; + +// Function Engine.Actor.GetLocalRole +// 0x0001 (0x0001 - 0x0000) +struct Actor_GetLocalRole final +{ +public: + ENetRole ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetLocalRole; + +// Function Engine.Actor.GetMinNetUpdateFrequency +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetMinNetUpdateFrequency final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetMinNetUpdateFrequency; + +// Function Engine.Actor.GetNetCullDistanceSquared +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetNetCullDistanceSquared final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetNetCullDistanceSquared; + +// Function Engine.Actor.GetNetUpdateFrequency +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetNetUpdateFrequency final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetNetUpdateFrequency; + +// Function Engine.Actor.GetOverlappingActors +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetOverlappingActors final +{ +public: + TArray OverlappingActors; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TSubclassOf ClassFilter; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetOverlappingActors; + +// Function Engine.Actor.GetOverlappingComponents +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetOverlappingComponents final +{ +public: + TArray OverlappingComponents; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_GetOverlappingComponents; + +// Function Engine.Actor.GetOwner +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetOwner final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetOwner; + +// Function Engine.Actor.GetParentActor +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetParentActor final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetParentActor; + +// Function Engine.Actor.GetParentComponent +// 0x0008 (0x0008 - 0x0000) +struct Actor_GetParentComponent final +{ +public: + class UChildActorComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetParentComponent; + +// Function Engine.Actor.GetRayTracingGroupId +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetRayTracingGroupId final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetRayTracingGroupId; + +// Function Engine.Actor.GetRemoteRole +// 0x0001 (0x0001 - 0x0000) +struct Actor_GetRemoteRole final +{ +public: + ENetRole ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetRemoteRole; + +// Function Engine.Actor.GetResimulationThreshold +// 0x0004 (0x0004 - 0x0000) +struct Actor_GetResimulationThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetResimulationThreshold; + +// Function Engine.Actor.GetSquaredDistanceTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetSquaredDistanceTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetSquaredDistanceTo; + +// Function Engine.Actor.GetSquaredHorizontalDistanceTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetSquaredHorizontalDistanceTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetSquaredHorizontalDistanceTo; + +// Function Engine.Actor.GetTransform +// 0x0060 (0x0060 - 0x0000) +struct Actor_GetTransform final +{ +public: + struct FTransform ReturnValue; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetTransform; + +// Function Engine.Actor.GetVelocity +// 0x0018 (0x0018 - 0x0000) +struct Actor_GetVelocity final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_GetVelocity; + +// Function Engine.Actor.GetVerticalDistanceTo +// 0x0010 (0x0010 - 0x0000) +struct Actor_GetVerticalDistanceTo final +{ +public: + const class AActor* OtherActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_GetVerticalDistanceTo; + +// Function Engine.Actor.HasAuthority +// 0x0001 (0x0001 - 0x0000) +struct Actor_HasAuthority final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_HasAuthority; + +// Function Engine.Actor.IsActorBeingDestroyed +// 0x0001 (0x0001 - 0x0000) +struct Actor_IsActorBeingDestroyed final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_IsActorBeingDestroyed; + +// Function Engine.Actor.IsActorTickEnabled +// 0x0001 (0x0001 - 0x0000) +struct Actor_IsActorTickEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_IsActorTickEnabled; + +// Function Engine.Actor.IsChildActor +// 0x0001 (0x0001 - 0x0000) +struct Actor_IsChildActor final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_IsChildActor; + +// Function Engine.Actor.IsOverlappingActor +// 0x0010 (0x0010 - 0x0000) +struct Actor_IsOverlappingActor final +{ +public: + const class AActor* Other; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_IsOverlappingActor; + +// Function Engine.Actor.K2_GetActorLocation +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_GetActorLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_K2_GetActorLocation; + +// Function Engine.Actor.K2_GetActorRotation +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_GetActorRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Actor_K2_GetActorRotation; + +// Function Engine.Actor.K2_GetComponentsByClass +// 0x0018 (0x0018 - 0x0000) +struct Actor_K2_GetComponentsByClass final +{ +public: + TSubclassOf ComponentClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0008(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Actor_K2_GetComponentsByClass; + +// Function Engine.Actor.K2_GetRootComponent +// 0x0008 (0x0008 - 0x0000) +struct Actor_K2_GetRootComponent final +{ +public: + class USceneComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Actor_K2_GetRootComponent; + +// Function Engine.Actor.WasRecentlyRendered +// 0x0008 (0x0008 - 0x0000) +struct Actor_WasRecentlyRendered final +{ +public: + float Tolerance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Actor_WasRecentlyRendered; + +// Function Engine.PrimitiveComponent.AddAngularImpulseInDegrees +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddAngularImpulseInDegrees final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddAngularImpulseInDegrees; + +// Function Engine.PrimitiveComponent.AddAngularImpulseInRadians +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddAngularImpulseInRadians final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddAngularImpulseInRadians; + +// Function Engine.PrimitiveComponent.AddForce +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddForce final +{ +public: + struct FVector Force; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddForce; + +// Function Engine.PrimitiveComponent.AddForceAtLocation +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_AddForceAtLocation final +{ +public: + struct FVector Force; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_AddForceAtLocation; + +// Function Engine.PrimitiveComponent.AddForceAtLocationLocal +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_AddForceAtLocationLocal final +{ +public: + struct FVector Force; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_AddForceAtLocationLocal; + +// Function Engine.PrimitiveComponent.AddImpulse +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddImpulse final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddImpulse; + +// Function Engine.PrimitiveComponent.AddImpulseAtLocation +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_AddImpulseAtLocation final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_AddImpulseAtLocation; + +// Function Engine.PrimitiveComponent.AddRadialForce +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddRadialForce final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Strength; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERadialImpulseFalloff Falloff; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddRadialForce; + +// Function Engine.PrimitiveComponent.AddRadialImpulse +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddRadialImpulse final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Strength; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERadialImpulseFalloff Falloff; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddRadialImpulse; + +// Function Engine.PrimitiveComponent.AddTorqueInDegrees +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddTorqueInDegrees final +{ +public: + struct FVector Torque; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddTorqueInDegrees; + +// Function Engine.PrimitiveComponent.AddTorqueInRadians +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_AddTorqueInRadians final +{ +public: + struct FVector Torque; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_AddTorqueInRadians; + +// Function Engine.PrimitiveComponent.AddVelocityChangeImpulseAtLocation +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_AddVelocityChangeImpulseAtLocation final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_AddVelocityChangeImpulseAtLocation; + +// Function Engine.PrimitiveComponent.CopyArrayOfMoveIgnoreActors +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_CopyArrayOfMoveIgnoreActors final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_CopyArrayOfMoveIgnoreActors; + +// Function Engine.PrimitiveComponent.CopyArrayOfMoveIgnoreComponents +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_CopyArrayOfMoveIgnoreComponents final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_CopyArrayOfMoveIgnoreComponents; + +// Function Engine.PrimitiveComponent.CreateAndSetMaterialInstanceDynamic +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_CreateAndSetMaterialInstanceDynamic final +{ +public: + int32 ElementIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInstanceDynamic* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_CreateAndSetMaterialInstanceDynamic; + +// Function Engine.PrimitiveComponent.CreateAndSetMaterialInstanceDynamicFromMaterial +// 0x0018 (0x0018 - 0x0000) +struct PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial final +{ +public: + int32 ElementIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* Parent; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_CreateAndSetMaterialInstanceDynamicFromMaterial; + +// Function Engine.PrimitiveComponent.CreateDynamicMaterialInstance +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_CreateDynamicMaterialInstance final +{ +public: + int32 ElementIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* SourceMaterial; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OptionalName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_CreateDynamicMaterialInstance; + +// Function Engine.PrimitiveComponent.GetMaxDepenetrationVelocity +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_GetMaxDepenetrationVelocity final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaxDepenetrationVelocity; + +// Function Engine.PrimitiveComponent.GetPhysicsLinearVelocity +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_GetPhysicsLinearVelocity final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetPhysicsLinearVelocity; + +// Function Engine.PrimitiveComponent.GetPhysicsLinearVelocityAtPoint +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_GetPhysicsLinearVelocityAtPoint final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetPhysicsLinearVelocityAtPoint; + +// Function Engine.PrimitiveComponent.IgnoreActorWhenMoving +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_IgnoreActorWhenMoving final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldIgnore; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_IgnoreActorWhenMoving; + +// Function Engine.PrimitiveComponent.IgnoreComponentWhenMoving +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_IgnoreComponentWhenMoving final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldIgnore; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_IgnoreComponentWhenMoving; + +// Function Engine.PrimitiveComponent.IsAnyRigidBodyAwake +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_IsAnyRigidBodyAwake final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_IsAnyRigidBodyAwake; + +// Function Engine.PrimitiveComponent.K2_BoxOverlapComponent +// 0x0198 (0x0198 - 0x0000) +struct PrimitiveComponent_K2_BoxOverlapComponent final +{ +public: + struct FVector InBoxCentre; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox InBox; // 0x0018(0x0038)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowTrace; // 0x0051(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistentShowTrace; // 0x0052(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_53[0x5]; // 0x0053(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitLocation; // 0x0058(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0070(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0088(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0090(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0190(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_191[0x7]; // 0x0191(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_K2_BoxOverlapComponent; + +// Function Engine.PrimitiveComponent.K2_LineTraceComponent +// 0x0178 (0x0178 - 0x0000) +struct PrimitiveComponent_K2_LineTraceComponent final +{ +public: + struct FVector TraceStart; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TraceEnd; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowTrace; // 0x0031(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistentShowTrace; // 0x0032(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_33[0x5]; // 0x0033(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitLocation; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0068(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0070(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0170(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_171[0x7]; // 0x0171(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_K2_LineTraceComponent; + +// Function Engine.PrimitiveComponent.K2_SphereOverlapComponent +// 0x0160 (0x0160 - 0x0000) +struct PrimitiveComponent_K2_SphereOverlapComponent final +{ +public: + struct FVector InSphereCentre; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InSphereRadius; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowTrace; // 0x001D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistentShowTrace; // 0x001E(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1F[0x1]; // 0x001F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitLocation; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0050(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0058(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0158(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x7]; // 0x0159(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_K2_SphereOverlapComponent; + +// Function Engine.PrimitiveComponent.K2_SphereTraceComponent +// 0x0178 (0x0178 - 0x0000) +struct PrimitiveComponent_K2_SphereTraceComponent final +{ +public: + struct FVector TraceStart; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TraceEnd; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowTrace; // 0x0035(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistentShowTrace; // 0x0036(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_37[0x1]; // 0x0037(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitLocation; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitNormal; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0068(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0070(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0170(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_171[0x7]; // 0x0171(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_K2_SphereTraceComponent; + +// Function Engine.PrimitiveComponent.PutRigidBodyToSleep +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_PutRigidBodyToSleep final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_PutRigidBodyToSleep; + +// Function Engine.PrimitiveComponent.SetAffectDistanceFieldLighting +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetAffectDistanceFieldLighting final +{ +public: + bool NewAffectDistanceFieldLighting; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAffectDistanceFieldLighting; + +// Function Engine.PrimitiveComponent.SetAffectDynamicIndirectLighting +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetAffectDynamicIndirectLighting final +{ +public: + bool bNewAffectDynamicIndirectLighting; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAffectDynamicIndirectLighting; + +// Function Engine.PrimitiveComponent.SetAffectIndirectLightingWhileHidden +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetAffectIndirectLightingWhileHidden final +{ +public: + bool bNewAffectIndirectLightingWhileHidden; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAffectIndirectLightingWhileHidden; + +// Function Engine.PrimitiveComponent.SetAllMassScale +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetAllMassScale final +{ +public: + float InMassScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAllMassScale; + +// Function Engine.PrimitiveComponent.SetAllPhysicsAngularVelocityInDegrees +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees final +{ +public: + struct FVector NewAngVel; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetAllPhysicsAngularVelocityInDegrees; + +// Function Engine.PrimitiveComponent.SetAllPhysicsAngularVelocityInRadians +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians final +{ +public: + struct FVector NewAngVel; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetAllPhysicsAngularVelocityInRadians; + +// Function Engine.PrimitiveComponent.SetAllPhysicsLinearVelocity +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetAllPhysicsLinearVelocity final +{ +public: + struct FVector NewVel; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetAllPhysicsLinearVelocity; + +// Function Engine.PrimitiveComponent.SetAllUseCCD +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetAllUseCCD final +{ +public: + bool InUseCCD; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAllUseCCD; + +// Function Engine.PrimitiveComponent.SetAllUseMACD +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetAllUseMACD final +{ +public: + bool InUseMACD; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAllUseMACD; + +// Function Engine.PrimitiveComponent.SetAngularDamping +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetAngularDamping final +{ +public: + float InDamping; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetAngularDamping; + +// Function Engine.PrimitiveComponent.SetBoundsScale +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetBoundsScale final +{ +public: + float NewBoundsScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetBoundsScale; + +// Function Engine.PrimitiveComponent.SetCastContactShadow +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCastContactShadow final +{ +public: + bool bInCastContactShadow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCastContactShadow; + +// Function Engine.PrimitiveComponent.SetCastHiddenShadow +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCastHiddenShadow final +{ +public: + bool NewCastHiddenShadow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCastHiddenShadow; + +// Function Engine.PrimitiveComponent.SetCastInsetShadow +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCastInsetShadow final +{ +public: + bool bInCastInsetShadow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCastInsetShadow; + +// Function Engine.PrimitiveComponent.SetCastShadow +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCastShadow final +{ +public: + bool NewCastShadow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCastShadow; + +// Function Engine.PrimitiveComponent.SetCenterOfMass +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetCenterOfMass final +{ +public: + struct FVector CenterOfMassOffset; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCenterOfMass; + +// Function Engine.PrimitiveComponent.SetCollisionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCollisionEnabled final +{ +public: + ECollisionEnabled NewType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCollisionEnabled; + +// Function Engine.PrimitiveComponent.SetCollisionObjectType +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCollisionObjectType final +{ +public: + ECollisionChannel Channel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCollisionObjectType; + +// Function Engine.PrimitiveComponent.SetCollisionProfileName +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetCollisionProfileName final +{ +public: + class FName InCollisionProfileName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetCollisionProfileName; + +// Function Engine.PrimitiveComponent.SetCollisionResponseToAllChannels +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCollisionResponseToAllChannels final +{ +public: + ECollisionResponse NewResponse; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCollisionResponseToAllChannels; + +// Function Engine.PrimitiveComponent.SetCollisionResponseToChannel +// 0x0002 (0x0002 - 0x0000) +struct PrimitiveComponent_SetCollisionResponseToChannel final +{ +public: + ECollisionChannel Channel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse NewResponse; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCollisionResponseToChannel; + +// Function Engine.PrimitiveComponent.SetConstraintMode +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetConstraintMode final +{ +public: + EDOFMode ConstraintMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetConstraintMode; + +// Function Engine.PrimitiveComponent.SetCullDistance +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetCullDistance final +{ +public: + float NewCullDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCullDistance; + +// Function Engine.PrimitiveComponent.SetCustomDepthStencilValue +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetCustomDepthStencilValue final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomDepthStencilValue; + +// Function Engine.PrimitiveComponent.SetCustomDepthStencilWriteMask +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetCustomDepthStencilWriteMask final +{ +public: + ERendererStencilMask WriteMaskBit; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomDepthStencilWriteMask; + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataFloat +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_SetCustomPrimitiveDataFloat final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomPrimitiveDataFloat; + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector2 +// 0x0018 (0x0018 - 0x0000) +struct PrimitiveComponent_SetCustomPrimitiveDataVector2 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D Value; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomPrimitiveDataVector2; + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector3 +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetCustomPrimitiveDataVector3 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Value; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomPrimitiveDataVector3; + +// Function Engine.PrimitiveComponent.SetCustomPrimitiveDataVector4 +// 0x0030 (0x0030 - 0x0000) +struct PrimitiveComponent_SetCustomPrimitiveDataVector4 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Value; // 0x0010(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetCustomPrimitiveDataVector4; + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataFloat +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetDefaultCustomPrimitiveDataFloat; + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector2 +// 0x0018 (0x0018 - 0x0000) +struct PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D Value; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetDefaultCustomPrimitiveDataVector2; + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector3 +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Value; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetDefaultCustomPrimitiveDataVector3; + +// Function Engine.PrimitiveComponent.SetDefaultCustomPrimitiveDataVector4 +// 0x0030 (0x0030 - 0x0000) +struct PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4 final +{ +public: + int32 DataIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Value; // 0x0010(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetDefaultCustomPrimitiveDataVector4; + +// Function Engine.PrimitiveComponent.SetEmissiveLightSource +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetEmissiveLightSource final +{ +public: + bool NewEmissiveLightSource; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetEmissiveLightSource; + +// Function Engine.PrimitiveComponent.SetEnableGravity +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetEnableGravity final +{ +public: + bool bGravityEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetEnableGravity; + +// Function Engine.PrimitiveComponent.SetExcludedFromHLODLevel +// 0x0002 (0x0002 - 0x0000) +struct PrimitiveComponent_SetExcludedFromHLODLevel final +{ +public: + EHLODLevelExclusion HLODLevel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bExcluded; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetExcludedFromHLODLevel; + +// Function Engine.PrimitiveComponent.SetExcludeForSpecificHLODLevels +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetExcludeForSpecificHLODLevels final +{ +public: + TArray InExcludeForSpecificHLODLevels; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetExcludeForSpecificHLODLevels; + +// Function Engine.PrimitiveComponent.SetExcludeFromLightAttachmentGroup +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetExcludeFromLightAttachmentGroup final +{ +public: + bool bInExcludeFromLightAttachmentGroup; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetExcludeFromLightAttachmentGroup; + +// Function Engine.PrimitiveComponent.SetFirstPersonPrimitiveType +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetFirstPersonPrimitiveType final +{ +public: + EFirstPersonPrimitiveType Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetFirstPersonPrimitiveType; + +// Function Engine.PrimitiveComponent.SetGenerateOverlapEvents +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetGenerateOverlapEvents final +{ +public: + bool bInGenerateOverlapEvents; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetGenerateOverlapEvents; + +// Function Engine.PrimitiveComponent.SetHiddenInSceneCapture +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetHiddenInSceneCapture final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetHiddenInSceneCapture; + +// Function Engine.PrimitiveComponent.SetHoldout +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetHoldout final +{ +public: + bool bNewHoldout; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetHoldout; + +// Function Engine.PrimitiveComponent.SetIgnoreBoundsForEditorFocus +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetIgnoreBoundsForEditorFocus final +{ +public: + bool bIgnore; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetIgnoreBoundsForEditorFocus; + +// Function Engine.PrimitiveComponent.SetLightAttachmentsAsGroup +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetLightAttachmentsAsGroup final +{ +public: + bool bInLightAttachmentsAsGroup; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetLightAttachmentsAsGroup; + +// Function Engine.PrimitiveComponent.SetLightingChannels +// 0x0003 (0x0003 - 0x0000) +struct PrimitiveComponent_SetLightingChannels final +{ +public: + bool bChannel0; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bChannel1; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bChannel2; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetLightingChannels; + +// Function Engine.PrimitiveComponent.SetLinearDamping +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetLinearDamping final +{ +public: + float InDamping; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetLinearDamping; + +// Function Engine.PrimitiveComponent.SetMassOverrideInKg +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetMassOverrideInKg final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MassInKg; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideMass; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetMassOverrideInKg; + +// Function Engine.PrimitiveComponent.SetMassScale +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetMassScale final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InMassScale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetMassScale; + +// Function Engine.PrimitiveComponent.SetMaterial +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetMaterial final +{ +public: + int32 ElementIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* Material; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetMaterial; + +// Function Engine.PrimitiveComponent.SetMaterialByName +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetMaterialByName final +{ +public: + class FName MaterialSlotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetMaterialByName; + +// Function Engine.PrimitiveComponent.SetMaxDepenetrationVelocity +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetMaxDepenetrationVelocity final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InMaxDepenetrationVelocity; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetMaxDepenetrationVelocity; + +// Function Engine.PrimitiveComponent.SetNotifyRigidBodyCollision +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetNotifyRigidBodyCollision final +{ +public: + bool bNewNotifyRigidBodyCollision; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetNotifyRigidBodyCollision; + +// Function Engine.PrimitiveComponent.SetOnlyOwnerSee +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetOnlyOwnerSee final +{ +public: + bool bNewOnlyOwnerSee; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetOnlyOwnerSee; + +// Function Engine.PrimitiveComponent.SetOwnerNoSee +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetOwnerNoSee final +{ +public: + bool bNewOwnerNoSee; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetOwnerNoSee; + +// Function Engine.PrimitiveComponent.SetPhysicsAngularVelocityInDegrees +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_SetPhysicsAngularVelocityInDegrees final +{ +public: + struct FVector NewAngVel; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x001C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetPhysicsAngularVelocityInDegrees; + +// Function Engine.PrimitiveComponent.SetPhysicsAngularVelocityInRadians +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_SetPhysicsAngularVelocityInRadians final +{ +public: + struct FVector NewAngVel; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x001C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetPhysicsAngularVelocityInRadians; + +// Function Engine.PrimitiveComponent.SetPhysicsLinearVelocity +// 0x0028 (0x0028 - 0x0000) +struct PrimitiveComponent_SetPhysicsLinearVelocity final +{ +public: + struct FVector NewVel; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x001C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_SetPhysicsLinearVelocity; + +// Function Engine.PrimitiveComponent.SetPhysicsMaxAngularVelocityInDegrees +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees final +{ +public: + float NewMaxAngVel; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetPhysicsMaxAngularVelocityInDegrees; + +// Function Engine.PrimitiveComponent.SetPhysicsMaxAngularVelocityInRadians +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians final +{ +public: + float NewMaxAngVel; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToCurrent; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetPhysicsMaxAngularVelocityInRadians; + +// Function Engine.PrimitiveComponent.SetPhysMaterialOverride +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_SetPhysMaterialOverride final +{ +public: + class UPhysicalMaterial* NewPhysMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetPhysMaterialOverride; + +// Function Engine.PrimitiveComponent.SetReceivesDecals +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetReceivesDecals final +{ +public: + bool bNewReceivesDecals; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetReceivesDecals; + +// Function Engine.PrimitiveComponent.SetRenderCustomDepth +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetRenderCustomDepth final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetRenderCustomDepth; + +// Function Engine.PrimitiveComponent.SetRenderInDepthPass +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetRenderInDepthPass final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetRenderInDepthPass; + +// Function Engine.PrimitiveComponent.SetRenderInMainPass +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetRenderInMainPass final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetRenderInMainPass; + +// Function Engine.PrimitiveComponent.SetScalarParameterForCustomPrimitiveData +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetScalarParameterForCustomPrimitiveData final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetScalarParameterForCustomPrimitiveData; + +// Function Engine.PrimitiveComponent.SetScalarParameterForDefaultCustomPrimitiveData +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetScalarParameterForDefaultCustomPrimitiveData; + +// Function Engine.PrimitiveComponent.SetSimulatePhysics +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetSimulatePhysics final +{ +public: + bool bSimulate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetSimulatePhysics; + +// Function Engine.PrimitiveComponent.SetSingleSampleShadowFromStationaryLights +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetSingleSampleShadowFromStationaryLights final +{ +public: + bool bNewSingleSampleShadowFromStationaryLights; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetSingleSampleShadowFromStationaryLights; + +// Function Engine.PrimitiveComponent.SetStaticWhenNotMoveable +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetStaticWhenNotMoveable final +{ +public: + bool bInStaticWhenNotMoveable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetStaticWhenNotMoveable; + +// Function Engine.PrimitiveComponent.SetTranslucencySortDistanceOffset +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetTranslucencySortDistanceOffset final +{ +public: + float NewTranslucencySortDistanceOffset; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetTranslucencySortDistanceOffset; + +// Function Engine.PrimitiveComponent.SetTranslucentSortPriority +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_SetTranslucentSortPriority final +{ +public: + int32 NewTranslucentSortPriority; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetTranslucentSortPriority; + +// Function Engine.PrimitiveComponent.SetUpdateKinematicFromSimulation +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetUpdateKinematicFromSimulation final +{ +public: + bool bUpdateKinematicFromSimulation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetUpdateKinematicFromSimulation; + +// Function Engine.PrimitiveComponent.SetUseCCD +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetUseCCD final +{ +public: + bool InUseCCD; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetUseCCD; + +// Function Engine.PrimitiveComponent.SetUseMACD +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_SetUseMACD final +{ +public: + bool InUseMACD; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetUseMACD; + +// Function Engine.PrimitiveComponent.SetVectorParameterForCustomPrimitiveData +// 0x0030 (0x0030 - 0x0000) +struct PrimitiveComponent_SetVectorParameterForCustomPrimitiveData final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Value; // 0x0010(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetVectorParameterForCustomPrimitiveData; + +// Function Engine.PrimitiveComponent.SetVectorParameterForDefaultCustomPrimitiveData +// 0x0030 (0x0030 - 0x0000) +struct PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Value; // 0x0010(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetVectorParameterForDefaultCustomPrimitiveData; + +// Function Engine.PrimitiveComponent.SetVisibleInRayTracing +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetVisibleInRayTracing final +{ +public: + bool bNewVisibleInRayTracing; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetVisibleInRayTracing; + +// Function Engine.PrimitiveComponent.SetVisibleInSceneCaptureOnly +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_SetVisibleInSceneCaptureOnly final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetVisibleInSceneCaptureOnly; + +// Function Engine.PrimitiveComponent.SetWalkableSlopeOverride +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_SetWalkableSlopeOverride final +{ +public: + struct FWalkableSlopeOverride NewOverride; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_SetWalkableSlopeOverride; + +// Function Engine.PrimitiveComponent.WakeRigidBody +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_WakeRigidBody final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_WakeRigidBody; + +// Function Engine.PrimitiveComponent.AllowHLODLevelsExclusion +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_AllowHLODLevelsExclusion final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_AllowHLODLevelsExclusion; + +// Function Engine.PrimitiveComponent.CanCharacterStepUp +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_CanCharacterStepUp final +{ +public: + class APawn* Pawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_CanCharacterStepUp; + +// Function Engine.PrimitiveComponent.GetAngularDamping +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_GetAngularDamping final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetAngularDamping; + +// Function Engine.PrimitiveComponent.GetBodyInstanceAsyncPhysicsTickHandle +// 0x0018 (0x0018 - 0x0000) +struct PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGetWelded; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Index_0; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBodyInstanceAsyncPhysicsTickHandle ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetBodyInstanceAsyncPhysicsTickHandle; + +// Function Engine.PrimitiveComponent.GetCenterOfMass +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_GetCenterOfMass final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCenterOfMass; + +// Function Engine.PrimitiveComponent.GetClosestPointOnCollision +// 0x0040 (0x0040 - 0x0000) +struct PrimitiveComponent_GetClosestPointOnCollision final +{ +public: + struct FVector Point; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutPointOnBody; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0038(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_GetClosestPointOnCollision; + +// Function Engine.PrimitiveComponent.GetCollisionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetCollisionEnabled final +{ +public: + ECollisionEnabled ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCollisionEnabled; + +// Function Engine.PrimitiveComponent.GetCollisionObjectType +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetCollisionObjectType final +{ +public: + ECollisionChannel ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCollisionObjectType; + +// Function Engine.PrimitiveComponent.GetCollisionProfileName +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_GetCollisionProfileName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCollisionProfileName; + +// Function Engine.PrimitiveComponent.GetCollisionResponseToChannel +// 0x0002 (0x0002 - 0x0000) +struct PrimitiveComponent_GetCollisionResponseToChannel final +{ +public: + ECollisionChannel Channel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCollisionResponseToChannel; + +// Function Engine.PrimitiveComponent.GetCustomPrimitiveDataIndexForScalarParameter +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCustomPrimitiveDataIndexForScalarParameter; + +// Function Engine.PrimitiveComponent.GetCustomPrimitiveDataIndexForVectorParameter +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetCustomPrimitiveDataIndexForVectorParameter; + +// Function Engine.PrimitiveComponent.GetExcludeForSpecificHLODLevels +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetExcludeForSpecificHLODLevels final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetExcludeForSpecificHLODLevels; + +// Function Engine.PrimitiveComponent.GetGenerateOverlapEvents +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetGenerateOverlapEvents final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetGenerateOverlapEvents; + +// Function Engine.PrimitiveComponent.GetIgnoreBoundsForEditorFocus +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetIgnoreBoundsForEditorFocus final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetIgnoreBoundsForEditorFocus; + +// Function Engine.PrimitiveComponent.GetInertiaTensor +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_GetInertiaTensor final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetInertiaTensor; + +// Function Engine.PrimitiveComponent.GetLinearDamping +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_GetLinearDamping final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetLinearDamping; + +// Function Engine.PrimitiveComponent.GetMass +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_GetMass final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMass; + +// Function Engine.PrimitiveComponent.GetMassScale +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_GetMassScale final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMassScale; + +// Function Engine.PrimitiveComponent.GetMaterial +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetMaterial final +{ +public: + int32 ElementIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaterial; + +// Function Engine.PrimitiveComponent.GetMaterialByName +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetMaterialByName final +{ +public: + class FName MaterialSlotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaterialByName; + +// Function Engine.PrimitiveComponent.GetMaterialFromCollisionFaceIndex +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetMaterialFromCollisionFaceIndex final +{ +public: + int32 FaceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SectionIndex; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaterialFromCollisionFaceIndex; + +// Function Engine.PrimitiveComponent.GetMaterialIndex +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_GetMaterialIndex final +{ +public: + class FName MaterialSlotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaterialIndex; + +// Function Engine.PrimitiveComponent.GetMaterialSlotNames +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetMaterialSlotNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetMaterialSlotNames; + +// Function Engine.PrimitiveComponent.GetNumMaterials +// 0x0004 (0x0004 - 0x0000) +struct PrimitiveComponent_GetNumMaterials final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetNumMaterials; + +// Function Engine.PrimitiveComponent.GetOverlappingActors +// 0x0018 (0x0018 - 0x0000) +struct PrimitiveComponent_GetOverlappingActors final +{ +public: + TArray OverlappingActors; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TSubclassOf ClassFilter; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetOverlappingActors; + +// Function Engine.PrimitiveComponent.GetOverlappingComponents +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetOverlappingComponents final +{ +public: + TArray OutOverlappingComponents; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetOverlappingComponents; + +// Function Engine.PrimitiveComponent.GetPhysicsAngularVelocityInDegrees +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_GetPhysicsAngularVelocityInDegrees final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetPhysicsAngularVelocityInDegrees; + +// Function Engine.PrimitiveComponent.GetPhysicsAngularVelocityInRadians +// 0x0020 (0x0020 - 0x0000) +struct PrimitiveComponent_GetPhysicsAngularVelocityInRadians final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetPhysicsAngularVelocityInRadians; + +// Function Engine.PrimitiveComponent.GetStaticWhenNotMoveable +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetStaticWhenNotMoveable final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetStaticWhenNotMoveable; + +// Function Engine.PrimitiveComponent.GetUpdateKinematicFromSimulation +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_GetUpdateKinematicFromSimulation final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetUpdateKinematicFromSimulation; + +// Function Engine.PrimitiveComponent.GetWalkableSlopeOverride +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_GetWalkableSlopeOverride final +{ +public: + struct FWalkableSlopeOverride ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_GetWalkableSlopeOverride; + +// Function Engine.PrimitiveComponent.IsExcludedFromHLODLevel +// 0x0002 (0x0002 - 0x0000) +struct PrimitiveComponent_IsExcludedFromHLODLevel final +{ +public: + EHLODLevelExclusion HLODLevel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_IsExcludedFromHLODLevel; + +// Function Engine.PrimitiveComponent.IsGravityEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_IsGravityEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_IsGravityEnabled; + +// Function Engine.PrimitiveComponent.IsMaterialSlotNameValid +// 0x000C (0x000C - 0x0000) +struct PrimitiveComponent_IsMaterialSlotNameValid final +{ +public: + class FName MaterialSlotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_IsMaterialSlotNameValid; + +// Function Engine.PrimitiveComponent.IsOverlappingActor +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_IsOverlappingActor final +{ +public: + const class AActor* Other; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_IsOverlappingActor; + +// Function Engine.PrimitiveComponent.IsOverlappingComponent +// 0x0010 (0x0010 - 0x0000) +struct PrimitiveComponent_IsOverlappingComponent final +{ +public: + const class UPrimitiveComponent* OtherComp; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_IsOverlappingComponent; + +// Function Engine.PrimitiveComponent.K2_IsCollisionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_K2_IsCollisionEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_K2_IsCollisionEnabled; + +// Function Engine.PrimitiveComponent.K2_IsPhysicsCollisionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_K2_IsPhysicsCollisionEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_K2_IsPhysicsCollisionEnabled; + +// Function Engine.PrimitiveComponent.K2_IsQueryCollisionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PrimitiveComponent_K2_IsQueryCollisionEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_K2_IsQueryCollisionEnabled; + +// Function Engine.PrimitiveComponent.ScaleByMomentOfInertia +// 0x0038 (0x0038 - 0x0000) +struct PrimitiveComponent_ScaleByMomentOfInertia final +{ +public: + struct FVector InputVector; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PrimitiveComponent_ScaleByMomentOfInertia; + +// Function Engine.PrimitiveComponent.WasRecentlyRendered +// 0x0008 (0x0008 - 0x0000) +struct PrimitiveComponent_WasRecentlyRendered final +{ +public: + float Tolerance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PrimitiveComponent_WasRecentlyRendered; + +// Function Engine.TextRenderComponent.K2_SetText +// 0x0010 (0x0010 - 0x0000) +struct TextRenderComponent_K2_SetText final +{ +public: + class FText Value; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_K2_SetText; + +// Function Engine.TextRenderComponent.SetFont +// 0x0008 (0x0008 - 0x0000) +struct TextRenderComponent_SetFont final +{ +public: + class UFont* Value; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetFont; + +// Function Engine.TextRenderComponent.SetHorizontalAlignment +// 0x0001 (0x0001 - 0x0000) +struct TextRenderComponent_SetHorizontalAlignment final +{ +public: + EHorizTextAligment Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetHorizontalAlignment; + +// Function Engine.TextRenderComponent.SetHorizSpacingAdjust +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetHorizSpacingAdjust final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetHorizSpacingAdjust; + +// Function Engine.TextRenderComponent.SetText +// 0x0010 (0x0010 - 0x0000) +struct TextRenderComponent_SetText final +{ +public: + class FText Value; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetText; + +// Function Engine.TextRenderComponent.SetTextMaterial +// 0x0008 (0x0008 - 0x0000) +struct TextRenderComponent_SetTextMaterial final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetTextMaterial; + +// Function Engine.TextRenderComponent.SetTextRenderColor +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetTextRenderColor final +{ +public: + struct FColor Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetTextRenderColor; + +// Function Engine.TextRenderComponent.SetVerticalAlignment +// 0x0001 (0x0001 - 0x0000) +struct TextRenderComponent_SetVerticalAlignment final +{ +public: + EVerticalTextAligment Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetVerticalAlignment; + +// Function Engine.TextRenderComponent.SetVertSpacingAdjust +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetVertSpacingAdjust final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetVertSpacingAdjust; + +// Function Engine.TextRenderComponent.SetWorldSize +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetWorldSize final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetWorldSize; + +// Function Engine.TextRenderComponent.SetXScale +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetXScale final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetXScale; + +// Function Engine.TextRenderComponent.SetYScale +// 0x0004 (0x0004 - 0x0000) +struct TextRenderComponent_SetYScale final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_SetYScale; + +// Function Engine.TextRenderComponent.GetTextLocalSize +// 0x0018 (0x0018 - 0x0000) +struct TextRenderComponent_GetTextLocalSize final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_GetTextLocalSize; + +// Function Engine.TextRenderComponent.GetTextWorldSize +// 0x0018 (0x0018 - 0x0000) +struct TextRenderComponent_GetTextWorldSize final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TextRenderComponent_GetTextWorldSize; + +// Function Engine.MeshComponent.PrestreamMeshLODs +// 0x0008 (0x0008 - 0x0000) +struct MeshComponent_PrestreamMeshLODs final +{ +public: + float Seconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MeshComponent_PrestreamMeshLODs; + +// Function Engine.MeshComponent.PrestreamTextures +// 0x000C (0x000C - 0x0000) +struct MeshComponent_PrestreamTextures final +{ +public: + float Seconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrioritizeCharacterTextures; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CinematicTextureGroups; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_PrestreamTextures; + +// Function Engine.MeshComponent.SetColorParameterValueOnMaterials +// 0x0018 (0x0018 - 0x0000) +struct MeshComponent_SetColorParameterValueOnMaterials final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ParameterValue; // 0x0008(0x0010)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_SetColorParameterValueOnMaterials; + +// Function Engine.MeshComponent.SetOverlayMaterial +// 0x0008 (0x0008 - 0x0000) +struct MeshComponent_SetOverlayMaterial final +{ +public: + class UMaterialInterface* NewOverlayMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_SetOverlayMaterial; + +// Function Engine.MeshComponent.SetOverlayMaterialMaxDrawDistance +// 0x0004 (0x0004 - 0x0000) +struct MeshComponent_SetOverlayMaterialMaxDrawDistance final +{ +public: + float InMaxDrawDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_SetOverlayMaterialMaxDrawDistance; + +// Function Engine.MeshComponent.SetScalarParameterValueOnMaterials +// 0x000C (0x000C - 0x0000) +struct MeshComponent_SetScalarParameterValueOnMaterials final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParameterValue; // 0x0008(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_SetScalarParameterValueOnMaterials; + +// Function Engine.MeshComponent.SetVectorParameterValueOnMaterials +// 0x0020 (0x0020 - 0x0000) +struct MeshComponent_SetVectorParameterValueOnMaterials final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ParameterValue; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_SetVectorParameterValueOnMaterials; + +// Function Engine.MeshComponent.GetMaterials +// 0x0010 (0x0010 - 0x0000) +struct MeshComponent_GetMaterials final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//MeshComponent_GetMaterials; + +// Function Engine.MeshComponent.GetOverlayMaterial +// 0x0008 (0x0008 - 0x0000) +struct MeshComponent_GetOverlayMaterial final +{ +public: + class UMaterialInterface* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_GetOverlayMaterial; + +// Function Engine.MeshComponent.GetOverlayMaterialMaxDrawDistance +// 0x0004 (0x0004 - 0x0000) +struct MeshComponent_GetOverlayMaterialMaxDrawDistance final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshComponent_GetOverlayMaterialMaxDrawDistance; + +// Function Engine.StaticMeshComponent.GetInitialEvaluateWorldPositionOffset +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshComponent_GetInitialEvaluateWorldPositionOffset final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_GetInitialEvaluateWorldPositionOffset; + +// Function Engine.StaticMeshComponent.OnRep_StaticMesh +// 0x0008 (0x0008 - 0x0000) +struct StaticMeshComponent_OnRep_StaticMesh final +{ +public: + class UStaticMesh* OldStaticMesh; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_OnRep_StaticMesh; + +// Function Engine.StaticMeshComponent.SetDistanceFieldSelfShadowBias +// 0x0004 (0x0004 - 0x0000) +struct StaticMeshComponent_SetDistanceFieldSelfShadowBias final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetDistanceFieldSelfShadowBias; + +// Function Engine.StaticMeshComponent.SetEvaluateWorldPositionOffset +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshComponent_SetEvaluateWorldPositionOffset final +{ +public: + bool NewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetEvaluateWorldPositionOffset; + +// Function Engine.StaticMeshComponent.SetEvaluateWorldPositionOffsetInRayTracing +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing final +{ +public: + bool NewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetEvaluateWorldPositionOffsetInRayTracing; + +// Function Engine.StaticMeshComponent.SetForceDisableNanite +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshComponent_SetForceDisableNanite final +{ +public: + bool bInForceDisableNanite; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetForceDisableNanite; + +// Function Engine.StaticMeshComponent.SetForcedLodModel +// 0x0004 (0x0004 - 0x0000) +struct StaticMeshComponent_SetForcedLodModel final +{ +public: + int32 NewForcedLodModel; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetForcedLodModel; + +// Function Engine.StaticMeshComponent.SetReverseCulling +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshComponent_SetReverseCulling final +{ +public: + bool ReverseCulling; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetReverseCulling; + +// Function Engine.StaticMeshComponent.SetStaticMesh +// 0x0010 (0x0010 - 0x0000) +struct StaticMeshComponent_SetStaticMesh final +{ +public: + class UStaticMesh* NewMesh; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//StaticMeshComponent_SetStaticMesh; + +// Function Engine.StaticMeshComponent.SetWorldPositionOffsetDisableDistance +// 0x0004 (0x0004 - 0x0000) +struct StaticMeshComponent_SetWorldPositionOffsetDisableDistance final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_SetWorldPositionOffsetDisableDistance; + +// Function Engine.StaticMeshComponent.GetLocalBounds +// 0x0030 (0x0030 - 0x0000) +struct StaticMeshComponent_GetLocalBounds final +{ +public: + struct FVector min_0; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector max_0; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshComponent_GetLocalBounds; + +// Function Engine.AnimNotifyState.GetDefaultTriggerWeightThreshold +// 0x0004 (0x0004 - 0x0000) +struct AnimNotifyState_GetDefaultTriggerWeightThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotifyState_GetDefaultTriggerWeightThreshold; + +// Function Engine.AnimNotifyState.GetNotifyName +// 0x0010 (0x0010 - 0x0000) +struct AnimNotifyState_GetNotifyName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotifyState_GetNotifyName; + +// Function Engine.AnimNotifyState.Received_NotifyBegin +// 0x0050 (0x0050 - 0x0000) +struct AnimNotifyState_Received_NotifyBegin final +{ +public: + class USkeletalMeshComponent* MeshComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequenceBase* Animation; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TotalDuration; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAnimNotifyEventReference EventReference; // 0x0018(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyState_Received_NotifyBegin; + +// Function Engine.AnimNotifyState.Received_NotifyEnd +// 0x0048 (0x0048 - 0x0000) +struct AnimNotifyState_Received_NotifyEnd final +{ +public: + class USkeletalMeshComponent* MeshComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequenceBase* Animation; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimNotifyEventReference EventReference; // 0x0010(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyState_Received_NotifyEnd; + +// Function Engine.AnimNotifyState.Received_NotifyTick +// 0x0050 (0x0050 - 0x0000) +struct AnimNotifyState_Received_NotifyTick final +{ +public: + class USkeletalMeshComponent* MeshComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequenceBase* Animation; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrameDeltaTime; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAnimNotifyEventReference EventReference; // 0x0018(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyState_Received_NotifyTick; + +// Function Engine.InstancedStaticMeshComponent.AddInstance +// 0x0070 (0x0070 - 0x0000) +struct InstancedStaticMeshComponent_AddInstance final +{ +public: + struct FTransform InstanceTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0064(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_68[0x8]; // 0x0068(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_AddInstance; + +// Function Engine.InstancedStaticMeshComponent.AddInstances +// 0x0028 (0x0028 - 0x0000) +struct InstancedStaticMeshComponent_AddInstances final +{ +public: + TArray InstanceTransforms; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bShouldReturnIndices; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateNavigation; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_AddInstances; + +// Function Engine.InstancedStaticMeshComponent.AddInstanceWorldSpace +// 0x0070 (0x0070 - 0x0000) +struct InstancedStaticMeshComponent_AddInstanceWorldSpace final +{ +public: + struct FTransform WorldTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0060(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0xC]; // 0x0064(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_AddInstanceWorldSpace; + +// Function Engine.InstancedStaticMeshComponent.BatchUpdateInstancesTransform +// 0x0080 (0x0080 - 0x0000) +struct InstancedStaticMeshComponent_BatchUpdateInstancesTransform final +{ +public: + int32 StartInstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumInstances; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform NewInstancesTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMarkRenderStateDirty; // 0x0071(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0072(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0073(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0xC]; // 0x0074(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_BatchUpdateInstancesTransform; + +// Function Engine.InstancedStaticMeshComponent.BatchUpdateInstancesTransforms +// 0x0020 (0x0020 - 0x0000) +struct InstancedStaticMeshComponent_BatchUpdateInstancesTransforms final +{ +public: + int32 StartInstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray NewInstancesTransforms; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMarkRenderStateDirty; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTeleport; // 0x001A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001B(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_BatchUpdateInstancesTransforms; + +// Function Engine.InstancedStaticMeshComponent.RemoveInstance +// 0x0008 (0x0008 - 0x0000) +struct InstancedStaticMeshComponent_RemoveInstance final +{ +public: + int32 InstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_RemoveInstance; + +// Function Engine.InstancedStaticMeshComponent.RemoveInstances +// 0x0018 (0x0018 - 0x0000) +struct InstancedStaticMeshComponent_RemoveInstances final +{ +public: + TArray InstancesToRemove; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_RemoveInstances; + +// Function Engine.InstancedStaticMeshComponent.SetCullDistances +// 0x0008 (0x0008 - 0x0000) +struct InstancedStaticMeshComponent_SetCullDistances final +{ +public: + int32 StartCullDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndCullDistance; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_SetCullDistances; + +// Function Engine.InstancedStaticMeshComponent.SetCustomDataValue +// 0x0010 (0x0010 - 0x0000) +struct InstancedStaticMeshComponent_SetCustomDataValue final +{ +public: + int32 InstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CustomDataIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CustomDataValue; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMarkRenderStateDirty; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_SetCustomDataValue; + +// Function Engine.InstancedStaticMeshComponent.SetLODDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct InstancedStaticMeshComponent_SetLODDistanceScale final +{ +public: + float InLODDistanceScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_SetLODDistanceScale; + +// Function Engine.InstancedStaticMeshComponent.SetNumCustomDataFloats +// 0x0004 (0x0004 - 0x0000) +struct InstancedStaticMeshComponent_SetNumCustomDataFloats final +{ +public: + int32 InNumCustomDataFloats; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_SetNumCustomDataFloats; + +// Function Engine.InstancedStaticMeshComponent.UpdateInstanceTransform +// 0x0080 (0x0080 - 0x0000) +struct InstancedStaticMeshComponent_UpdateInstanceTransform final +{ +public: + int32 InstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform NewInstanceTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMarkRenderStateDirty; // 0x0071(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0072(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0073(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0xC]; // 0x0074(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_UpdateInstanceTransform; + +// Function Engine.InstancedStaticMeshComponent.GetCullDistances +// 0x0008 (0x0008 - 0x0000) +struct InstancedStaticMeshComponent_GetCullDistances final +{ +public: + int32 OutStartCullDistance; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutEndCullDistance; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_GetCullDistances; + +// Function Engine.InstancedStaticMeshComponent.GetInstanceCount +// 0x0004 (0x0004 - 0x0000) +struct InstancedStaticMeshComponent_GetInstanceCount final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_GetInstanceCount; + +// Function Engine.InstancedStaticMeshComponent.GetInstancesOverlappingBox +// 0x0050 (0x0050 - 0x0000) +struct InstancedStaticMeshComponent_GetInstancesOverlappingBox final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bBoxInWorldSpace; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_GetInstancesOverlappingBox; + +// Function Engine.InstancedStaticMeshComponent.GetInstancesOverlappingSphere +// 0x0030 (0x0030 - 0x0000) +struct InstancedStaticMeshComponent_GetInstancesOverlappingSphere final +{ +public: + struct FVector Center; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSphereInWorldSpace; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_GetInstancesOverlappingSphere; + +// Function Engine.InstancedStaticMeshComponent.GetInstanceTransform +// 0x0080 (0x0080 - 0x0000) +struct InstancedStaticMeshComponent_GetInstanceTransform final +{ +public: + int32 InstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform OutInstanceTransform; // 0x0010(0x0060)(Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldSpace; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0071(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_72[0xE]; // 0x0072(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_GetInstanceTransform; + +// Function Engine.InstancedStaticMeshComponent.GetLODDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct InstancedStaticMeshComponent_GetLODDistanceScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InstancedStaticMeshComponent_GetLODDistanceScale; + +// Function Engine.InstancedStaticMeshComponent.IsValidInstance +// 0x0008 (0x0008 - 0x0000) +struct InstancedStaticMeshComponent_IsValidInstance final +{ +public: + int32 InstanceIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InstancedStaticMeshComponent_IsValidInstance; + +// Function Engine.StaticMeshActor.SetMobility +// 0x0001 (0x0001 - 0x0000) +struct StaticMeshActor_SetMobility final +{ +public: + EComponentMobility InMobility; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMeshActor_SetMobility; + +// Function Engine.LODSyncComponent.GetLODSyncDebugText +// 0x0010 (0x0010 - 0x0000) +struct LODSyncComponent_GetLODSyncDebugText final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LODSyncComponent_GetLODSyncDebugText; + +// Function Engine.StreamableRenderAsset.SetForceMipLevelsToBeResident +// 0x0008 (0x0008 - 0x0000) +struct StreamableRenderAsset_SetForceMipLevelsToBeResident final +{ +public: + float Seconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CinematicLODGroupMask; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StreamableRenderAsset_SetForceMipLevelsToBeResident; + +// Function Engine.AnimationDataModel.GetAnimationSequence +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataModel_GetAnimationSequence final +{ +public: + class UAnimSequence* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetAnimationSequence; + +// Function Engine.AnimationDataModel.GetBoneAnimationTracks +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataModel_GetBoneAnimationTracks final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetBoneAnimationTracks; + +// Function Engine.AnimationDataModel.GetBoneTrackByIndex +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataModel_GetBoneTrackByIndex final +{ +public: + int32 TrackIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBoneAnimationTrack ReturnValue; // 0x0008(0x0040)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetBoneTrackByIndex; + +// Function Engine.AnimationDataModel.GetBoneTrackByName +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataModel_GetBoneTrackByName final +{ +public: + class FName TrackName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBoneAnimationTrack ReturnValue; // 0x0008(0x0040)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetBoneTrackByName; + +// Function Engine.AnimationDataModel.GetBoneTrackIndex +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataModel_GetBoneTrackIndex final +{ +public: + struct FBoneAnimationTrack Track; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0040(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataModel_GetBoneTrackIndex; + +// Function Engine.AnimationDataModel.GetBoneTrackIndexByName +// 0x000C (0x000C - 0x0000) +struct AnimationDataModel_GetBoneTrackIndexByName final +{ +public: + class FName TrackName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetBoneTrackIndexByName; + +// Function Engine.AnimationDataModel.GetBoneTrackNames +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataModel_GetBoneTrackNames final +{ +public: + TArray OutNames; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetBoneTrackNames; + +// Function Engine.AnimationDataModel.GetFrameRate +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataModel_GetFrameRate final +{ +public: + struct FFrameRate ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetFrameRate; + +// Function Engine.AnimationDataModel.GetNumberOfFloatCurves +// 0x0004 (0x0004 - 0x0000) +struct AnimationDataModel_GetNumberOfFloatCurves final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetNumberOfFloatCurves; + +// Function Engine.AnimationDataModel.GetNumberOfFrames +// 0x0004 (0x0004 - 0x0000) +struct AnimationDataModel_GetNumberOfFrames final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetNumberOfFrames; + +// Function Engine.AnimationDataModel.GetNumberOfKeys +// 0x0004 (0x0004 - 0x0000) +struct AnimationDataModel_GetNumberOfKeys final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetNumberOfKeys; + +// Function Engine.AnimationDataModel.GetNumberOfTransformCurves +// 0x0004 (0x0004 - 0x0000) +struct AnimationDataModel_GetNumberOfTransformCurves final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetNumberOfTransformCurves; + +// Function Engine.AnimationDataModel.GetNumBoneTracks +// 0x0004 (0x0004 - 0x0000) +struct AnimationDataModel_GetNumBoneTracks final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetNumBoneTracks; + +// Function Engine.AnimationDataModel.GetPlayLength +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataModel_GetPlayLength final +{ +public: + double ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataModel_GetPlayLength; + +// Function Engine.AnimationDataModel.IsValidBoneTrackIndex +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataModel_IsValidBoneTrackIndex final +{ +public: + int32 TrackIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataModel_IsValidBoneTrackIndex; + +// Function Engine.AnimationDataModel.IsValidBoneTrackName +// 0x000C (0x000C - 0x0000) +struct AnimationDataModel_IsValidBoneTrackName final +{ +public: + class FName TrackName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataModel_IsValidBoneTrackName; + +// Function Engine.MaterialInterface.GetBaseMaterial +// 0x0008 (0x0008 - 0x0000) +struct MaterialInterface_GetBaseMaterial final +{ +public: + class UMaterial* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetBaseMaterial; + +// Function Engine.MaterialInterface.SetForceMipLevelsToBeResident +// 0x0010 (0x0010 - 0x0000) +struct MaterialInterface_SetForceMipLevelsToBeResident final +{ +public: + bool OverrideForceMiplevelsToBeResident; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceMiplevelsToBeResidentValue; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ForceDuration; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CinematicTextureGroups; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFastResponse; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MaterialInterface_SetForceMipLevelsToBeResident; + +// Function Engine.MaterialInterface.GetBlendMode +// 0x0001 (0x0001 - 0x0000) +struct MaterialInterface_GetBlendMode final +{ +public: + EBlendMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetBlendMode; + +// Function Engine.MaterialInterface.GetNaniteOverideMaterial +// 0x0008 (0x0008 - 0x0000) +struct MaterialInterface_GetNaniteOverideMaterial final +{ +public: + class UMaterialInterface* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetNaniteOverideMaterial; + +// Function Engine.MaterialInterface.GetParameterInfo +// 0x0028 (0x0028 - 0x0000) +struct MaterialInterface_GetParameterInfo final +{ +public: + EMaterialParameterAssociation Association; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ParameterName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialFunctionInterface* LayerFunction; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialParameterInfo ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetParameterInfo; + +// Function Engine.MaterialInterface.GetPhysicalMaterial +// 0x0008 (0x0008 - 0x0000) +struct MaterialInterface_GetPhysicalMaterial final +{ +public: + class UPhysicalMaterial* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetPhysicalMaterial; + +// Function Engine.MaterialInterface.GetPhysicalMaterialFromMap +// 0x0010 (0x0010 - 0x0000) +struct MaterialInterface_GetPhysicalMaterialFromMap final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicalMaterial* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetPhysicalMaterialFromMap; + +// Function Engine.MaterialInterface.GetPhysicalMaterialMask +// 0x0008 (0x0008 - 0x0000) +struct MaterialInterface_GetPhysicalMaterialMask final +{ +public: + class UPhysicalMaterialMask* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInterface_GetPhysicalMaterialMask; + +// Function Engine.SceneCaptureComponent.HideActorComponents +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent_HideActorComponents final +{ +public: + class AActor* InActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeFromChildActors; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneCaptureComponent_HideActorComponents; + +// Function Engine.SceneCaptureComponent.HideComponent +// 0x0008 (0x0008 - 0x0000) +struct SceneCaptureComponent_HideComponent final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_HideComponent; + +// Function Engine.SceneCaptureComponent.RemoveShowOnlyActorComponents +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent_RemoveShowOnlyActorComponents final +{ +public: + class AActor* InActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeFromChildActors; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneCaptureComponent_RemoveShowOnlyActorComponents; + +// Function Engine.SceneCaptureComponent.RemoveShowOnlyComponent +// 0x0008 (0x0008 - 0x0000) +struct SceneCaptureComponent_RemoveShowOnlyComponent final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_RemoveShowOnlyComponent; + +// Function Engine.SceneCaptureComponent.SetCaptureSortPriority +// 0x0004 (0x0004 - 0x0000) +struct SceneCaptureComponent_SetCaptureSortPriority final +{ +public: + int32 NewCaptureSortPriority; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_SetCaptureSortPriority; + +// Function Engine.SceneCaptureComponent.SetShowFlagSettings +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent_SetShowFlagSettings final +{ +public: + TArray InShowFlagSettings; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_SetShowFlagSettings; + +// Function Engine.SceneCaptureComponent.ShowOnlyActorComponents +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent_ShowOnlyActorComponents final +{ +public: + class AActor* InActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeFromChildActors; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneCaptureComponent_ShowOnlyActorComponents; + +// Function Engine.SceneCaptureComponent.ShowOnlyComponent +// 0x0008 (0x0008 - 0x0000) +struct SceneCaptureComponent_ShowOnlyComponent final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_ShowOnlyComponent; + +// Function Engine.SceneCaptureComponent.GetShowFlagSettings +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent_GetShowFlagSettings final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent_GetShowFlagSettings; + +// Function Engine.BlueprintPlatformLibrary.CancelLocalNotification +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPlatformLibrary_CancelLocalNotification final +{ +public: + class FString ActivationEvent; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_CancelLocalNotification; + +// Function Engine.BlueprintPlatformLibrary.CancelLocalNotificationById +// 0x0004 (0x0004 - 0x0000) +struct BlueprintPlatformLibrary_CancelLocalNotificationById final +{ +public: + int32 NotificationId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_CancelLocalNotificationById; + +// Function Engine.BlueprintPlatformLibrary.GetAllowedDeviceOrientation +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPlatformLibrary_GetAllowedDeviceOrientation final +{ +public: + EScreenOrientation ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_GetAllowedDeviceOrientation; + +// Function Engine.BlueprintPlatformLibrary.GetDeviceOrientation +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPlatformLibrary_GetDeviceOrientation final +{ +public: + EScreenOrientation ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_GetDeviceOrientation; + +// Function Engine.BlueprintPlatformLibrary.GetLaunchNotification +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPlatformLibrary_GetLaunchNotification final +{ +public: + bool NotificationLaunchedApp; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ActivationEvent; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FireDate; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPlatformLibrary_GetLaunchNotification; + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationAtTime +// 0x0058 (0x0058 - 0x0000) +struct BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime final +{ +public: + struct FDateTime FireDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool LocalTime; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText Title; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText Body; // 0x0020(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText Action; // 0x0030(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString ActivationEvent; // 0x0040(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPlatformLibrary_ScheduleLocalNotificationAtTime; + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationBadgeAtTime +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime final +{ +public: + struct FDateTime FireDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool LocalTime; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ActivationEvent; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeAtTime; + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationBadgeFromNow +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow final +{ +public: + int32 inSecondsFromNow; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ActivationEvent; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_ScheduleLocalNotificationBadgeFromNow; + +// Function Engine.BlueprintPlatformLibrary.ScheduleLocalNotificationFromNow +// 0x0050 (0x0050 - 0x0000) +struct BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow final +{ +public: + int32 inSecondsFromNow; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FText Title; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText Body; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText Action; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString ActivationEvent; // 0x0038(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0048(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPlatformLibrary_ScheduleLocalNotificationFromNow; + +// Function Engine.BlueprintPlatformLibrary.SetAllowedDeviceOrientation +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPlatformLibrary_SetAllowedDeviceOrientation final +{ +public: + EScreenOrientation NewAllowedDeviceOrientation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPlatformLibrary_SetAllowedDeviceOrientation; + +// Function Engine.KismetNodeHelperLibrary.BitIsMarked +// 0x000C (0x000C - 0x0000) +struct KismetNodeHelperLibrary_BitIsMarked final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_BitIsMarked; + +// Function Engine.KismetNodeHelperLibrary.ClearAllBits +// 0x0004 (0x0004 - 0x0000) +struct KismetNodeHelperLibrary_ClearAllBits final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_ClearAllBits; + +// Function Engine.KismetNodeHelperLibrary.ClearBit +// 0x0008 (0x0008 - 0x0000) +struct KismetNodeHelperLibrary_ClearBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_ClearBit; + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorName +// 0x0018 (0x0018 - 0x0000) +struct KismetNodeHelperLibrary_GetEnumeratorName final +{ +public: + const class UEnum* Enum; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EnumeratorValue; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_GetEnumeratorName; + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorUserFriendlyName +// 0x0020 (0x0020 - 0x0000) +struct KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName final +{ +public: + const class UEnum* Enum; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EnumeratorValue; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_GetEnumeratorUserFriendlyName; + +// Function Engine.KismetNodeHelperLibrary.GetEnumeratorValueFromIndex +// 0x0010 (0x0010 - 0x0000) +struct KismetNodeHelperLibrary_GetEnumeratorValueFromIndex final +{ +public: + const class UEnum* Enum; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EnumeratorIndex; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_GetEnumeratorValueFromIndex; + +// Function Engine.KismetNodeHelperLibrary.GetFirstUnmarkedBit +// 0x0010 (0x0010 - 0x0000) +struct KismetNodeHelperLibrary_GetFirstUnmarkedBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartIdx; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_GetFirstUnmarkedBit; + +// Function Engine.KismetNodeHelperLibrary.GetRandomUnmarkedBit +// 0x0010 (0x0010 - 0x0000) +struct KismetNodeHelperLibrary_GetRandomUnmarkedBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartIdx; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_GetRandomUnmarkedBit; + +// Function Engine.KismetNodeHelperLibrary.GetUnmarkedBit +// 0x0014 (0x0014 - 0x0000) +struct KismetNodeHelperLibrary_GetUnmarkedBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartIdx; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRandom; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_GetUnmarkedBit; + +// Function Engine.KismetNodeHelperLibrary.GetValidValue +// 0x0010 (0x0010 - 0x0000) +struct KismetNodeHelperLibrary_GetValidValue final +{ +public: + const class UEnum* Enum; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EnumeratorValue; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_GetValidValue; + +// Function Engine.KismetNodeHelperLibrary.HasMarkedBit +// 0x000C (0x000C - 0x0000) +struct KismetNodeHelperLibrary_HasMarkedBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBits; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_HasMarkedBit; + +// Function Engine.KismetNodeHelperLibrary.HasUnmarkedBit +// 0x000C (0x000C - 0x0000) +struct KismetNodeHelperLibrary_HasUnmarkedBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumBits; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetNodeHelperLibrary_HasUnmarkedBit; + +// Function Engine.KismetNodeHelperLibrary.MarkBit +// 0x0008 (0x0008 - 0x0000) +struct KismetNodeHelperLibrary_MarkBit final +{ +public: + int32 Data; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetNodeHelperLibrary_MarkBit; + +// Function Engine.MaterialInstanceConstant.K2_GetScalarParameterValue +// 0x000C (0x000C - 0x0000) +struct MaterialInstanceConstant_K2_GetScalarParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceConstant_K2_GetScalarParameterValue; + +// Function Engine.MaterialInstanceConstant.K2_GetTextureParameterValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceConstant_K2_GetTextureParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceConstant_K2_GetTextureParameterValue; + +// Function Engine.MaterialInstanceConstant.K2_GetVectorParameterValue +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceConstant_K2_GetVectorParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceConstant_K2_GetVectorParameterValue; + +// Function Engine.SkinnedMeshComponent.ClearSkinWeightOverride +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_ClearSkinWeightOverride final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_ClearSkinWeightOverride; + +// Function Engine.SkinnedMeshComponent.ClearSkinWeightProfile +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_ClearSkinWeightProfile final +{ +public: + ESkinWeightProfileLayer InLayer; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_ClearSkinWeightProfile; + +// Function Engine.SkinnedMeshComponent.ClearVertexColorOverride +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_ClearVertexColorOverride final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_ClearVertexColorOverride; + +// Function Engine.SkinnedMeshComponent.HideBoneByName +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_HideBoneByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysBodyOp PhysBodyOption; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_HideBoneByName; + +// Function Engine.SkinnedMeshComponent.IsBoneHiddenByName +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_IsBoneHiddenByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_IsBoneHiddenByName; + +// Function Engine.SkinnedMeshComponent.IsMaterialSectionShown +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_IsMaterialSectionShown final +{ +public: + int32 MaterialID; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_IsMaterialSectionShown; + +// Function Engine.SkinnedMeshComponent.OverrideMinLOD +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_OverrideMinLOD final +{ +public: + int32 InNewMinLOD; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_OverrideMinLOD; + +// Function Engine.SkinnedMeshComponent.SetAlwaysUseMeshDeformer +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_SetAlwaysUseMeshDeformer final +{ +public: + bool bShouldAlwaysUseMeshDeformer; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetAlwaysUseMeshDeformer; + +// Function Engine.SkinnedMeshComponent.SetCapsuleIndirectShadowMinVisibility +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetCapsuleIndirectShadowMinVisibility; + +// Function Engine.SkinnedMeshComponent.SetCastCapsuleDirectShadow +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_SetCastCapsuleDirectShadow final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetCastCapsuleDirectShadow; + +// Function Engine.SkinnedMeshComponent.SetCastCapsuleIndirectShadow +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_SetCastCapsuleIndirectShadow final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetCastCapsuleIndirectShadow; + +// Function Engine.SkinnedMeshComponent.SetForcedLOD +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_SetForcedLOD final +{ +public: + int32 InNewForcedLOD; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetForcedLOD; + +// Function Engine.SkinnedMeshComponent.SetLeaderPoseComponent +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_SetLeaderPoseComponent final +{ +public: + class USkinnedMeshComponent* NewLeaderBoneComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceUpdate; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInFollowerShouldTickPose; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_SetLeaderPoseComponent; + +// Function Engine.SkinnedMeshComponent.SetMeshDeformer +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_SetMeshDeformer final +{ +public: + class UMeshDeformer* InMeshDeformer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetMeshDeformer; + +// Function Engine.SkinnedMeshComponent.SetMinLOD +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_SetMinLOD final +{ +public: + int32 InNewMinLOD; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetMinLOD; + +// Function Engine.SkinnedMeshComponent.SetPhysicsAsset +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_SetPhysicsAsset final +{ +public: + class UPhysicsAsset* NewPhysicsAsset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceReInit; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_SetPhysicsAsset; + +// Function Engine.SkinnedMeshComponent.SetRenderStatic +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_SetRenderStatic final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetRenderStatic; + +// Function Engine.SkinnedMeshComponent.SetSkinnedAssetAndUpdate +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_SetSkinnedAssetAndUpdate final +{ +public: + class USkinnedAsset* NewMesh; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bReinitPose; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_SetSkinnedAssetAndUpdate; + +// Function Engine.SkinnedMeshComponent.SetSkinWeightOverride +// 0x0018 (0x0018 - 0x0000) +struct SkinnedMeshComponent_SetSkinWeightOverride final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SkinWeights; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetSkinWeightOverride; + +// Function Engine.SkinnedMeshComponent.SetSkinWeightProfile +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_SetSkinWeightProfile final +{ +public: + class FName InProfileName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkinWeightProfileLayer InLayer; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_SetSkinWeightProfile; + +// Function Engine.SkinnedMeshComponent.SetVertexColorOverride_LinearColor +// 0x0018 (0x0018 - 0x0000) +struct SkinnedMeshComponent_SetVertexColorOverride_LinearColor final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray VertexColors; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_SetVertexColorOverride_LinearColor; + +// Function Engine.SkinnedMeshComponent.ShowAllMaterialSections +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_ShowAllMaterialSections final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_ShowAllMaterialSections; + +// Function Engine.SkinnedMeshComponent.ShowMaterialSection +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_ShowMaterialSection final +{ +public: + int32 MaterialID; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SectionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShow; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LODIndex; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_ShowMaterialSection; + +// Function Engine.SkinnedMeshComponent.TransformFromBoneSpace +// 0x0068 (0x0068 - 0x0000) +struct SkinnedMeshComponent_TransformFromBoneSpace final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InPosition; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator InRotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector OutPosition; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutRotation; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_TransformFromBoneSpace; + +// Function Engine.SkinnedMeshComponent.UnHideBoneByName +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_UnHideBoneByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_UnHideBoneByName; + +// Function Engine.SkinnedMeshComponent.UnloadSkinWeightProfile +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_UnloadSkinWeightProfile final +{ +public: + class FName InProfileName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_UnloadSkinWeightProfile; + +// Function Engine.SkinnedMeshComponent.BoneIsChildOf +// 0x0014 (0x0014 - 0x0000) +struct SkinnedMeshComponent_BoneIsChildOf final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParentBoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_BoneIsChildOf; + +// Function Engine.SkinnedMeshComponent.FindClosestBone_K2 +// 0x0040 (0x0040 - 0x0000) +struct SkinnedMeshComponent_FindClosestBone_K2 final +{ +public: + struct FVector TestLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoneLocation; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IgnoreScale; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRequirePhysicsAsset; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ReturnValue; // 0x0038(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_FindClosestBone_K2; + +// Function Engine.SkinnedMeshComponent.GetAlwaysUseMeshDeformer +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_GetAlwaysUseMeshDeformer final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetAlwaysUseMeshDeformer; + +// Function Engine.SkinnedMeshComponent.GetBoneIndex +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_GetBoneIndex final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetBoneIndex; + +// Function Engine.SkinnedMeshComponent.GetBoneName +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_GetBoneName final +{ +public: + int32 BoneIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetBoneName; + +// Function Engine.SkinnedMeshComponent.GetBoneTransform +// 0x0070 (0x0070 - 0x0000) +struct SkinnedMeshComponent_GetBoneTransform final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERelativeTransformSpace TransformSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetBoneTransform; + +// Function Engine.SkinnedMeshComponent.GetCurrentSkinWeightProfileLayerNames +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_GetCurrentSkinWeightProfileLayerNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetCurrentSkinWeightProfileLayerNames; + +// Function Engine.SkinnedMeshComponent.GetCurrentSkinWeightProfileName +// 0x000C (0x000C - 0x0000) +struct SkinnedMeshComponent_GetCurrentSkinWeightProfileName final +{ +public: + ESkinWeightProfileLayer InLayer; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetCurrentSkinWeightProfileName; + +// Function Engine.SkinnedMeshComponent.GetDeltaTransformFromRefPose +// 0x0070 (0x0070 - 0x0000) +struct SkinnedMeshComponent_GetDeltaTransformFromRefPose final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BaseName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetDeltaTransformFromRefPose; + +// Function Engine.SkinnedMeshComponent.GetForcedLOD +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_GetForcedLOD final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetForcedLOD; + +// Function Engine.SkinnedMeshComponent.GetMeshDeformerInstance +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_GetMeshDeformerInstance final +{ +public: + class UMeshDeformerInstance* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetMeshDeformerInstance; + +// Function Engine.SkinnedMeshComponent.GetNumBones +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_GetNumBones final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetNumBones; + +// Function Engine.SkinnedMeshComponent.GetNumLODs +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_GetNumLODs final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetNumLODs; + +// Function Engine.SkinnedMeshComponent.GetParentBone +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_GetParentBone final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetParentBone; + +// Function Engine.SkinnedMeshComponent.GetPredictedLODLevel +// 0x0004 (0x0004 - 0x0000) +struct SkinnedMeshComponent_GetPredictedLODLevel final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetPredictedLODLevel; + +// Function Engine.SkinnedMeshComponent.GetRefPosePosition +// 0x0020 (0x0020 - 0x0000) +struct SkinnedMeshComponent_GetRefPosePosition final +{ +public: + int32 BoneIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetRefPosePosition; + +// Function Engine.SkinnedMeshComponent.GetRefPoseTransform +// 0x0070 (0x0070 - 0x0000) +struct SkinnedMeshComponent_GetRefPoseTransform final +{ +public: + int32 BoneIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetRefPoseTransform; + +// Function Engine.SkinnedMeshComponent.GetSkeletalMesh_DEPRECATED +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED final +{ +public: + class USkeletalMesh* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetSkeletalMesh_DEPRECATED; + +// Function Engine.SkinnedMeshComponent.GetSkinnedAsset +// 0x0008 (0x0008 - 0x0000) +struct SkinnedMeshComponent_GetSkinnedAsset final +{ +public: + class USkinnedAsset* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetSkinnedAsset; + +// Function Engine.SkinnedMeshComponent.GetSocketBoneName +// 0x0010 (0x0010 - 0x0000) +struct SkinnedMeshComponent_GetSocketBoneName final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_GetSocketBoneName; + +// Function Engine.SkinnedMeshComponent.GetTwistAndSwingAngleOfDeltaRotationFromRefPose +// 0x0014 (0x0014 - 0x0000) +struct SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutTwistAngle; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutSwingAngle; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkinnedMeshComponent_GetTwistAndSwingAngleOfDeltaRotationFromRefPose; + +// Function Engine.SkinnedMeshComponent.IsUsingSkinWeightProfile +// 0x0001 (0x0001 - 0x0000) +struct SkinnedMeshComponent_IsUsingSkinWeightProfile final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_IsUsingSkinWeightProfile; + +// Function Engine.SkinnedMeshComponent.TransformToBoneSpace +// 0x0068 (0x0068 - 0x0000) +struct SkinnedMeshComponent_TransformToBoneSpace final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InPosition; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator InRotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector OutPosition; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutRotation; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SkinnedMeshComponent_TransformToBoneSpace; + +// Function Engine.TimecodeProvider.FetchTimecode +// 0x0014 (0x0014 - 0x0000) +struct TimecodeProvider_FetchTimecode final +{ +public: + struct FQualifiedFrameTime OutFrameTime; // 0x0000(0x0010)(Parm, OutParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TimecodeProvider_FetchTimecode; + +// Function Engine.TimecodeProvider.GetDelayedQualifiedFrameTime +// 0x0010 (0x0010 - 0x0000) +struct TimecodeProvider_GetDelayedQualifiedFrameTime final +{ +public: + struct FQualifiedFrameTime ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetDelayedQualifiedFrameTime; + +// Function Engine.TimecodeProvider.GetDelayedTimecode +// 0x0018 (0x0018 - 0x0000) +struct TimecodeProvider_GetDelayedTimecode final +{ +public: + struct FTimecode ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetDelayedTimecode; + +// Function Engine.TimecodeProvider.GetFrameRate +// 0x0008 (0x0008 - 0x0000) +struct TimecodeProvider_GetFrameRate final +{ +public: + struct FFrameRate ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetFrameRate; + +// Function Engine.TimecodeProvider.GetQualifiedFrameTime +// 0x0010 (0x0010 - 0x0000) +struct TimecodeProvider_GetQualifiedFrameTime final +{ +public: + struct FQualifiedFrameTime ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetQualifiedFrameTime; + +// Function Engine.TimecodeProvider.GetSynchronizationState +// 0x0004 (0x0004 - 0x0000) +struct TimecodeProvider_GetSynchronizationState final +{ +public: + ETimecodeProviderSynchronizationState ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetSynchronizationState; + +// Function Engine.TimecodeProvider.GetTimecode +// 0x0018 (0x0018 - 0x0000) +struct TimecodeProvider_GetTimecode final +{ +public: + struct FTimecode ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//TimecodeProvider_GetTimecode; + +// Function Engine.SkeletalMeshComponent.AccumulateAllBodiesBelowPhysicsBlendWeight +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AddPhysicsBlendWeight; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_AccumulateAllBodiesBelowPhysicsBlendWeight; + +// Function Engine.SkeletalMeshComponent.AddClothCollisionSource +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_AddClothCollisionSource final +{ +public: + class USkeletalMeshComponent* InSourceComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsAsset* InSourcePhysicsAsset; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_AddClothCollisionSource; + +// Function Engine.SkeletalMeshComponent.AddForceToAllBodiesBelow +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMeshComponent_AddForceToAllBodiesBelow final +{ +public: + struct FVector Force; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_AddForceToAllBodiesBelow; + +// Function Engine.SkeletalMeshComponent.AddImpulseToAllBodiesBelow +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMeshComponent_AddImpulseToAllBodiesBelow final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_AddImpulseToAllBodiesBelow; + +// Function Engine.SkeletalMeshComponent.AllowAnimCurveEvaluation +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_AllowAnimCurveEvaluation final +{ +public: + class FName NameOfCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllow; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_AllowAnimCurveEvaluation; + +// Function Engine.SkeletalMeshComponent.BreakConstraint +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMeshComponent_BreakConstraint final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HitLocation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InBoneName; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_BreakConstraint; + +// Function Engine.SkeletalMeshComponent.FindConstraintBoneName +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_FindConstraintBoneName final +{ +public: + int32 ConstraintIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_FindConstraintBoneName; + +// Function Engine.SkeletalMeshComponent.GetAnimClass +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_GetAnimClass final +{ +public: + class UClass* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAnimClass; + +// Function Engine.SkeletalMeshComponent.GetBoneLinearVelocity +// 0x0020 (0x0020 - 0x0000) +struct SkeletalMeshComponent_GetBoneLinearVelocity final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetBoneLinearVelocity; + +// Function Engine.SkeletalMeshComponent.GetConstraintByName +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetConstraintByName final +{ +public: + class FName ConstraintName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludesTerminated; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FConstraintInstanceAccessor ReturnValue; // 0x000C(0x000C)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetConstraintByName; + +// Function Engine.SkeletalMeshComponent.GetConstraints +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetConstraints final +{ +public: + bool bIncludesTerminated; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutConstraints; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetConstraints; + +// Function Engine.SkeletalMeshComponent.GetConstraintsFromBody +// 0x0020 (0x0020 - 0x0000) +struct SkeletalMeshComponent_GetConstraintsFromBody final +{ +public: + class FName BodyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bParentConstraints; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bChildConstraints; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludesTerminated; // 0x000A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x5]; // 0x000B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutConstraints; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetConstraintsFromBody; + +// Function Engine.SkeletalMeshComponent.GetCurrentJointAngles +// 0x0014 (0x0014 - 0x0000) +struct SkeletalMeshComponent_GetCurrentJointAngles final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Swing1Angle; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistAngle; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Swing2Angle; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetCurrentJointAngles; + +// Function Engine.SkeletalMeshComponent.GetFloatAttribute +// 0x001C (0x001C - 0x0000) +struct SkeletalMeshComponent_GetFloatAttribute final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultValue; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetFloatAttribute; + +// Function Engine.SkeletalMeshComponent.GetFloatAttribute_Ref +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetFloatAttribute_Ref final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0015(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16[0x2]; // 0x0016(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetFloatAttribute_Ref; + +// Function Engine.SkeletalMeshComponent.GetIntegerAttribute +// 0x001C (0x001C - 0x0000) +struct SkeletalMeshComponent_GetIntegerAttribute final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DefaultValue; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetIntegerAttribute; + +// Function Engine.SkeletalMeshComponent.GetIntegerAttribute_Ref +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetIntegerAttribute_Ref final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0015(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16[0x2]; // 0x0016(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetIntegerAttribute_Ref; + +// Function Engine.SkeletalMeshComponent.GetStringAttribute +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMeshComponent_GetStringAttribute final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DefaultValue; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0031(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetStringAttribute; + +// Function Engine.SkeletalMeshComponent.GetStringAttribute_Ref +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMeshComponent_GetStringAttribute_Ref final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetStringAttribute_Ref; + +// Function Engine.SkeletalMeshComponent.GetTransformAttribute +// 0x00E0 (0x00E0 - 0x0000) +struct SkeletalMeshComponent_GetTransformAttribute final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform DefaultValue; // 0x0010(0x0060)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform OutValue; // 0x0070(0x0060)(Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x00D0(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00D1(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D2[0xE]; // 0x00D2(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetTransformAttribute; + +// Function Engine.SkeletalMeshComponent.GetTransformAttribute_Ref +// 0x0080 (0x0080 - 0x0000) +struct SkeletalMeshComponent_GetTransformAttribute_Ref final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttributeName; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform OutValue; // 0x0010(0x0060)(Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomBoneAttributeLookup LookupType; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0071(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_72[0xE]; // 0x0072(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_GetTransformAttribute_Ref; + +// Function Engine.SkeletalMeshComponent.IsBodyGravityEnabled +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_IsBodyGravityEnabled final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_IsBodyGravityEnabled; + +// Function Engine.SkeletalMeshComponent.LinkAnimClassLayers +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_LinkAnimClassLayers final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_LinkAnimClassLayers; + +// Function Engine.SkeletalMeshComponent.LinkAnimGraphByTag +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_LinkAnimGraphByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf InClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_LinkAnimGraphByTag; + +// Function Engine.SkeletalMeshComponent.OverrideAnimationData +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_OverrideAnimationData final +{ +public: + class UAnimationAsset* InAnimToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsLooping; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsPlaying; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float position; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PlayRate; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_OverrideAnimationData; + +// Function Engine.SkeletalMeshComponent.Play +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_Play final +{ +public: + bool bLooping; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_Play; + +// Function Engine.SkeletalMeshComponent.PlayAnimation +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_PlayAnimation final +{ +public: + class UAnimationAsset* NewAnimToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_PlayAnimation; + +// Function Engine.SkeletalMeshComponent.RemoveClothCollisionSource +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_RemoveClothCollisionSource final +{ +public: + class USkeletalMeshComponent* InSourceComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicsAsset* InSourcePhysicsAsset; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_RemoveClothCollisionSource; + +// Function Engine.SkeletalMeshComponent.RemoveClothCollisionSources +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_RemoveClothCollisionSources final +{ +public: + class USkeletalMeshComponent* InSourceComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_RemoveClothCollisionSources; + +// Function Engine.SkeletalMeshComponent.ResetAnimInstanceDynamics +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_ResetAnimInstanceDynamics final +{ +public: + ETeleportType InTeleportType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_ResetAnimInstanceDynamics; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowLinearVelocity +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LinearVelocity; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllBodiesBelowLinearVelocity; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowPhysicsBlendWeight +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PhysicsBlendWeight; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllBodiesBelowPhysicsBlendWeight; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowPhysicsDisabled +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisabled; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllBodiesBelowPhysicsDisabled; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesBelowSimulatePhysics +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewSimulate; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllBodiesBelowSimulatePhysics; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesPhysicsBlendWeight +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight final +{ +public: + float PhysicsBlendWeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllBodiesPhysicsBlendWeight; + +// Function Engine.SkeletalMeshComponent.SetAllBodiesSimulatePhysics +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetAllBodiesSimulatePhysics final +{ +public: + bool bNewSimulate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllBodiesSimulatePhysics; + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularDriveParams +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetAllMotorsAngularDriveParams final +{ +public: + float InSpring; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDamping; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InForceLimit; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllMotorsAngularDriveParams; + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularPositionDrive +// 0x0003 (0x0003 - 0x0000) +struct SkeletalMeshComponent_SetAllMotorsAngularPositionDrive final +{ +public: + bool bEnableSwingDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllMotorsAngularPositionDrive; + +// Function Engine.SkeletalMeshComponent.SetAllMotorsAngularVelocityDrive +// 0x0003 (0x0003 - 0x0000) +struct SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive final +{ +public: + bool bEnableSwingDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipCustomPhysicsType; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllMotorsAngularVelocityDrive; + +// Function Engine.SkeletalMeshComponent.SetAllowAnimCurveEvaluation +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetAllowAnimCurveEvaluation final +{ +public: + bool bInAllow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllowAnimCurveEvaluation; + +// Function Engine.SkeletalMeshComponent.SetAllowClothActors +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetAllowClothActors final +{ +public: + bool bInAllow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllowClothActors; + +// Function Engine.SkeletalMeshComponent.SetAllowedAnimCurvesEvaluation +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation final +{ +public: + TArray List; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bAllow; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetAllowedAnimCurvesEvaluation; + +// Function Engine.SkeletalMeshComponent.SetAllowRigidBodyAnimNode +// 0x0002 (0x0002 - 0x0000) +struct SkeletalMeshComponent_SetAllowRigidBodyAnimNode final +{ +public: + bool bInAllow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bReinitAnim; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAllowRigidBodyAnimNode; + +// Function Engine.SkeletalMeshComponent.SetAngularLimits +// 0x0014 (0x0014 - 0x0000) +struct SkeletalMeshComponent_SetAngularLimits final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Swing1LimitAngle; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitAngle; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Swing2LimitAngle; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAngularLimits; + +// Function Engine.SkeletalMeshComponent.SetAnimation +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_SetAnimation final +{ +public: + class UAnimationAsset* NewAnimToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAnimation; + +// Function Engine.SkeletalMeshComponent.SetAnimationMode +// 0x0002 (0x0002 - 0x0000) +struct SkeletalMeshComponent_SetAnimationMode final +{ +public: + EAnimationMode InAnimationMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceInitAnimScriptInstance; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAnimationMode; + +// Function Engine.SkeletalMeshComponent.SetAnimInstanceClass +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_SetAnimInstanceClass final +{ +public: + class UClass* NewClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetAnimInstanceClass; + +// Function Engine.SkeletalMeshComponent.SetBodyNotifyRigidBodyCollision +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision final +{ +public: + bool bNewNotifyRigidBodyCollision; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetBodyNotifyRigidBodyCollision; + +// Function Engine.SkeletalMeshComponent.SetBodySimulatePhysics +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetBodySimulatePhysics final +{ +public: + class FName InBoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSimulate; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetBodySimulatePhysics; + +// Function Engine.SkeletalMeshComponent.SetClothMaxDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_SetClothMaxDistanceScale final +{ +public: + float Scale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetClothMaxDistanceScale; + +// Function Engine.SkeletalMeshComponent.SetConstraintProfile +// 0x0014 (0x0014 - 0x0000) +struct SkeletalMeshComponent_SetConstraintProfile final +{ +public: + class FName JointName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDefaultIfNotFound; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetConstraintProfile; + +// Function Engine.SkeletalMeshComponent.SetConstraintProfileForAll +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetConstraintProfileForAll final +{ +public: + class FName ProfileName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDefaultIfNotFound; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetConstraintProfileForAll; + +// Function Engine.SkeletalMeshComponent.SetDisableAnimCurves +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetDisableAnimCurves final +{ +public: + bool bInDisableAnimCurves; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetDisableAnimCurves; + +// Function Engine.SkeletalMeshComponent.SetDisablePostProcessBlueprint +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetDisablePostProcessBlueprint final +{ +public: + bool bInDisablePostProcess; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetDisablePostProcessBlueprint; + +// Function Engine.SkeletalMeshComponent.SetEnableBodyGravity +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_SetEnableBodyGravity final +{ +public: + bool bEnableGravity; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetEnableBodyGravity; + +// Function Engine.SkeletalMeshComponent.SetEnableGravityOnAllBodiesBelow +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow final +{ +public: + bool bEnableGravity; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetEnableGravityOnAllBodiesBelow; + +// Function Engine.SkeletalMeshComponent.SetEnablePhysicsBlending +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetEnablePhysicsBlending final +{ +public: + bool bNewBlendPhysics; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetEnablePhysicsBlending; + +// Function Engine.SkeletalMeshComponent.SetMorphTarget +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetMorphTarget final +{ +public: + class FName MorphTargetName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemoveZeroWeight; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetMorphTarget; + +// Function Engine.SkeletalMeshComponent.SetNotifyRigidBodyCollisionBelow +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow final +{ +public: + bool bNewNotifyRigidBodyCollision; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetNotifyRigidBodyCollisionBelow; + +// Function Engine.SkeletalMeshComponent.SetOverridePostProcessAnimBP +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_SetOverridePostProcessAnimBP final +{ +public: + TSubclassOf InPostProcessAnimBlueprint; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReinitAnimInstances; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetOverridePostProcessAnimBP; + +// Function Engine.SkeletalMeshComponent.SetPhysicsBlendWeight +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_SetPhysicsBlendWeight final +{ +public: + float PhysicsBlendWeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetPhysicsBlendWeight; + +// Function Engine.SkeletalMeshComponent.SetPlayRate +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_SetPlayRate final +{ +public: + float Rate; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetPlayRate; + +// Function Engine.SkeletalMeshComponent.SetPosition +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_SetPosition final +{ +public: + float InPos; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireNotifies; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_SetPosition; + +// Function Engine.SkeletalMeshComponent.SetSkeletalMeshAsset +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_SetSkeletalMeshAsset final +{ +public: + class USkeletalMesh* NewMesh; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetSkeletalMeshAsset; + +// Function Engine.SkeletalMeshComponent.SetTeleportDistanceThreshold +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_SetTeleportDistanceThreshold final +{ +public: + float Threshold; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetTeleportDistanceThreshold; + +// Function Engine.SkeletalMeshComponent.SetTeleportRotationThreshold +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_SetTeleportRotationThreshold final +{ +public: + float Threshold; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetTeleportRotationThreshold; + +// Function Engine.SkeletalMeshComponent.SetUpdateAnimationInEditor +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetUpdateAnimationInEditor final +{ +public: + bool NewUpdateState; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetUpdateAnimationInEditor; + +// Function Engine.SkeletalMeshComponent.SetUpdateClothInEditor +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_SetUpdateClothInEditor final +{ +public: + bool NewUpdateState; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SetUpdateClothInEditor; + +// Function Engine.SkeletalMeshComponent.SnapshotPose +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMeshComponent_SnapshotPose final +{ +public: + struct FPoseSnapshot Snapshot; // 0x0000(0x0038)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_SnapshotPose; + +// Function Engine.SkeletalMeshComponent.TermBodiesBelow +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_TermBodiesBelow final +{ +public: + class FName ParentBoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_TermBodiesBelow; + +// Function Engine.SkeletalMeshComponent.UnbindClothFromLeaderPoseComponent +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent final +{ +public: + bool bRestoreSimulationSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_UnbindClothFromLeaderPoseComponent; + +// Function Engine.SkeletalMeshComponent.UnlinkAnimClassLayers +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_UnlinkAnimClassLayers final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_UnlinkAnimClassLayers; + +// Function Engine.SkeletalMeshComponent.GetAllowClothActors +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetAllowClothActors final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAllowClothActors; + +// Function Engine.SkeletalMeshComponent.GetAllowedAnimCurveEvaluate +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetAllowedAnimCurveEvaluate final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAllowedAnimCurveEvaluate; + +// Function Engine.SkeletalMeshComponent.GetAllowRigidBodyAnimNode +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetAllowRigidBodyAnimNode final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAllowRigidBodyAnimNode; + +// Function Engine.SkeletalMeshComponent.GetAnimationMode +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetAnimationMode final +{ +public: + EAnimationMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAnimationMode; + +// Function Engine.SkeletalMeshComponent.GetAnimInstance +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_GetAnimInstance final +{ +public: + class UAnimInstance* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetAnimInstance; + +// Function Engine.SkeletalMeshComponent.GetBoneMass +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_GetBoneMass final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScaleMass; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetBoneMass; + +// Function Engine.SkeletalMeshComponent.GetClothingSimulationInteractor +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_GetClothingSimulationInteractor final +{ +public: + class UClothingSimulationInteractor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetClothingSimulationInteractor; + +// Function Engine.SkeletalMeshComponent.GetClothMaxDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_GetClothMaxDistanceScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetClothMaxDistanceScale; + +// Function Engine.SkeletalMeshComponent.GetDisableAnimCurves +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetDisableAnimCurves final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetDisableAnimCurves; + +// Function Engine.SkeletalMeshComponent.GetDisablePostProcessBlueprint +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_GetDisablePostProcessBlueprint final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetDisablePostProcessBlueprint; + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimGraphInstanceByTag +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetLinkedAnimGraphInstanceByTag; + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimGraphInstancesByTag +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutLinkedInstances; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetLinkedAnimGraphInstancesByTag; + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimLayerInstanceByClass +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetLinkedAnimLayerInstanceByClass; + +// Function Engine.SkeletalMeshComponent.GetLinkedAnimLayerInstanceByGroup +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup final +{ +public: + class FName InGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetLinkedAnimLayerInstanceByGroup; + +// Function Engine.SkeletalMeshComponent.GetMorphTarget +// 0x000C (0x000C - 0x0000) +struct SkeletalMeshComponent_GetMorphTarget final +{ +public: + class FName MorphTargetName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetMorphTarget; + +// Function Engine.SkeletalMeshComponent.GetPlayRate +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_GetPlayRate final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetPlayRate; + +// Function Engine.SkeletalMeshComponent.GetPosition +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_GetPosition final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetPosition; + +// Function Engine.SkeletalMeshComponent.GetPostProcessInstance +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_GetPostProcessInstance final +{ +public: + class UAnimInstance* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetPostProcessInstance; + +// Function Engine.SkeletalMeshComponent.GetSkeletalCenterOfMass +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMeshComponent_GetSkeletalCenterOfMass final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetSkeletalCenterOfMass; + +// Function Engine.SkeletalMeshComponent.GetSkeletalMeshAsset +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMeshComponent_GetSkeletalMeshAsset final +{ +public: + class USkeletalMesh* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetSkeletalMeshAsset; + +// Function Engine.SkeletalMeshComponent.GetTeleportDistanceThreshold +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_GetTeleportDistanceThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetTeleportDistanceThreshold; + +// Function Engine.SkeletalMeshComponent.GetTeleportRotationThreshold +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMeshComponent_GetTeleportRotationThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_GetTeleportRotationThreshold; + +// Function Engine.SkeletalMeshComponent.HasValidAnimationInstance +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_HasValidAnimationInstance final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_HasValidAnimationInstance; + +// Function Engine.SkeletalMeshComponent.IsClothingSimulationSuspended +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_IsClothingSimulationSuspended final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_IsClothingSimulationSuspended; + +// Function Engine.SkeletalMeshComponent.IsPlaying +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMeshComponent_IsPlaying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshComponent_IsPlaying; + +// Function Engine.SkeletalMeshComponent.K2_GetClosestPointOnPhysicsAsset +// 0x0058 (0x0058 - 0x0000) +struct SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset final +{ +public: + struct FVector WorldPosition; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ClosestWorldPosition; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0048(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Distance; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0054(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMeshComponent_K2_GetClosestPointOnPhysicsAsset; + +// Function Engine.SoundSubmixWidgetInterface.OnConstructed +// 0x0008 (0x0008 - 0x0000) +struct SoundSubmixWidgetInterface_OnConstructed final +{ +public: + class USoundSubmixBase* SoundSubmix; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmixWidgetInterface_OnConstructed; + +// Function Engine.AnimNotify.GetDefaultTriggerWeightThreshold +// 0x0004 (0x0004 - 0x0000) +struct AnimNotify_GetDefaultTriggerWeightThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotify_GetDefaultTriggerWeightThreshold; + +// Function Engine.AnimNotify.GetNotifyName +// 0x0010 (0x0010 - 0x0000) +struct AnimNotify_GetNotifyName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotify_GetNotifyName; + +// Function Engine.AnimNotify.Received_Notify +// 0x0048 (0x0048 - 0x0000) +struct AnimNotify_Received_Notify final +{ +public: + class USkeletalMeshComponent* MeshComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequenceBase* Animation; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimNotifyEventReference EventReference; // 0x0010(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotify_Received_Notify; + +// Function Engine.AnimInstance.BlueprintThreadSafeUpdateAnimation +// 0x0004 (0x0004 - 0x0000) +struct AnimInstance_BlueprintThreadSafeUpdateAnimation final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_BlueprintThreadSafeUpdateAnimation; + +// Function Engine.AnimInstance.BlueprintUpdateAnimation +// 0x0004 (0x0004 - 0x0000) +struct AnimInstance_BlueprintUpdateAnimation final +{ +public: + float DeltaTimeX; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_BlueprintUpdateAnimation; + +// Function Engine.AnimInstance.ClearTransitionEvents +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_ClearTransitionEvents final +{ +public: + class FName EventName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_ClearTransitionEvents; + +// Function Engine.AnimInstance.GetCurrentStateName +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetCurrentStateName final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetCurrentStateName; + +// Function Engine.AnimInstance.GetCurveValueWithDefault +// 0x0014 (0x0014 - 0x0000) +struct AnimInstance_GetCurveValueWithDefault final +{ +public: + class FName CurveName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultValue; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_GetCurveValueWithDefault; + +// Function Engine.AnimInstance.GetInstanceAssetPlayerLength +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceAssetPlayerLength final +{ +public: + int32 AssetPlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceAssetPlayerLength; + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTime +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceAssetPlayerTime final +{ +public: + int32 AssetPlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceAssetPlayerTime; + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFraction +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceAssetPlayerTimeFraction final +{ +public: + int32 AssetPlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceAssetPlayerTimeFraction; + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFromEnd +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceAssetPlayerTimeFromEnd final +{ +public: + int32 AssetPlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceAssetPlayerTimeFromEnd; + +// Function Engine.AnimInstance.GetInstanceAssetPlayerTimeFromEndFraction +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction final +{ +public: + int32 AssetPlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceAssetPlayerTimeFromEndFraction; + +// Function Engine.AnimInstance.GetInstanceCurrentStateElapsedTime +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceCurrentStateElapsedTime final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceCurrentStateElapsedTime; + +// Function Engine.AnimInstance.GetInstanceMachineWeight +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetInstanceMachineWeight final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceMachineWeight; + +// Function Engine.AnimInstance.GetInstanceStateWeight +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetInstanceStateWeight final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceStateWeight; + +// Function Engine.AnimInstance.GetInstanceTransitionCrossfadeDuration +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetInstanceTransitionCrossfadeDuration final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceTransitionCrossfadeDuration; + +// Function Engine.AnimInstance.GetInstanceTransitionTimeElapsed +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetInstanceTransitionTimeElapsed final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceTransitionTimeElapsed; + +// Function Engine.AnimInstance.GetInstanceTransitionTimeElapsedFraction +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetInstanceTransitionTimeElapsedFraction final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetInstanceTransitionTimeElapsedFraction; + +// Function Engine.AnimInstance.GetRelevantAnimLength +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetRelevantAnimLength final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetRelevantAnimLength; + +// Function Engine.AnimInstance.GetRelevantAnimTime +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetRelevantAnimTime final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetRelevantAnimTime; + +// Function Engine.AnimInstance.GetRelevantAnimTimeFraction +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetRelevantAnimTimeFraction final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetRelevantAnimTimeFraction; + +// Function Engine.AnimInstance.GetRelevantAnimTimeRemaining +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetRelevantAnimTimeRemaining final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetRelevantAnimTimeRemaining; + +// Function Engine.AnimInstance.GetRelevantAnimTimeRemainingFraction +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetRelevantAnimTimeRemainingFraction final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetRelevantAnimTimeRemainingFraction; + +// Function Engine.AnimInstance.LinkAnimClassLayers +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_LinkAnimClassLayers final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_LinkAnimClassLayers; + +// Function Engine.AnimInstance.LinkAnimGraphByTag +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_LinkAnimGraphByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf InClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_LinkAnimGraphByTag; + +// Function Engine.AnimInstance.LockAIResources +// 0x0002 (0x0002 - 0x0000) +struct AnimInstance_LockAIResources final +{ +public: + bool bLockMovement; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool LockAILogic; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_LockAIResources; + +// Function Engine.AnimInstance.Montage_JumpToSection +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_JumpToSection final +{ +public: + class FName SectionName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UAnimMontage* Montage; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_JumpToSection; + +// Function Engine.AnimInstance.Montage_JumpToSectionsEnd +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_JumpToSectionsEnd final +{ +public: + class FName SectionName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UAnimMontage* Montage; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_JumpToSectionsEnd; + +// Function Engine.AnimInstance.Montage_Pause +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_Montage_Pause final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_Pause; + +// Function Engine.AnimInstance.Montage_Play +// 0x0020 (0x0020 - 0x0000) +struct AnimInstance_Montage_Play final +{ +public: + class UAnimMontage* MontageToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMontagePlayReturnType ReturnValueType; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InTimeToStartMontageAt; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopAllMontages; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_Play; + +// Function Engine.AnimInstance.Montage_PlayWithBlendIn +// 0x0030 (0x0030 - 0x0000) +struct AnimInstance_Montage_PlayWithBlendIn final +{ +public: + class UAnimMontage* MontageToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAlphaBlendArgs BlendIn; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMontagePlayReturnType ReturnValueType; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InTimeToStartMontageAt; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopAllMontages; // 0x0024(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_PlayWithBlendIn; + +// Function Engine.AnimInstance.Montage_PlayWithBlendSettings +// 0x0040 (0x0040 - 0x0000) +struct AnimInstance_Montage_PlayWithBlendSettings final +{ +public: + class UAnimMontage* MontageToPlay; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMontageBlendSettings BlendInSettings; // 0x0008(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMontagePlayReturnType ReturnValueType; // 0x002C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InTimeToStartMontageAt; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopAllMontages; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0038(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_PlayWithBlendSettings; + +// Function Engine.AnimInstance.Montage_Resume +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_Montage_Resume final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_Resume; + +// Function Engine.AnimInstance.Montage_SetNextSection +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_Montage_SetNextSection final +{ +public: + class FName SectionNameToChange; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NextSection; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UAnimMontage* Montage; // 0x0010(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_SetNextSection; + +// Function Engine.AnimInstance.Montage_SetPlayRate +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_SetPlayRate final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NewPlayRate; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_SetPlayRate; + +// Function Engine.AnimInstance.Montage_SetPosition +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_SetPosition final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NewPosition; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_SetPosition; + +// Function Engine.AnimInstance.Montage_Stop +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_Stop final +{ +public: + float InBlendOutTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UAnimMontage* Montage; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_Stop; + +// Function Engine.AnimInstance.Montage_StopGroupByName +// 0x000C (0x000C - 0x0000) +struct AnimInstance_Montage_StopGroupByName final +{ +public: + float InBlendOutTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName GroupName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_StopGroupByName; + +// Function Engine.AnimInstance.Montage_StopWithBlendOut +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_Montage_StopWithBlendOut final +{ +public: + struct FAlphaBlendArgs BlendOut; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + const class UAnimMontage* Montage; // 0x0010(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_StopWithBlendOut; + +// Function Engine.AnimInstance.Montage_StopWithBlendSettings +// 0x0028 (0x0028 - 0x0000) +struct AnimInstance_Montage_StopWithBlendSettings final +{ +public: + struct FMontageBlendSettings BlendOutSettings; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + const class UAnimMontage* Montage; // 0x0020(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_StopWithBlendSettings; + +// Function Engine.AnimInstance.MontageSync_Follow +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_MontageSync_Follow final +{ +public: + const class UAnimMontage* MontageFollower; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UAnimInstance* OtherAnimInstance; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UAnimMontage* MontageLeader; // 0x0010(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_MontageSync_Follow; + +// Function Engine.AnimInstance.MontageSync_StopFollowing +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_MontageSync_StopFollowing final +{ +public: + const class UAnimMontage* MontageFollower; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_MontageSync_StopFollowing; + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage +// 0x0030 (0x0030 - 0x0000) +struct AnimInstance_PlaySlotAnimationAsDynamicMontage final +{ +public: + class UAnimSequenceBase* Asset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendInTime; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTime; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopCount; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTriggerTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InTimeToStartMontageAt; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimMontage* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_PlaySlotAnimationAsDynamicMontage; + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage_WithBlendArgs +// 0x0048 (0x0048 - 0x0000) +struct AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs final +{ +public: + class UAnimSequenceBase* Asset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAlphaBlendArgs BlendIn; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FAlphaBlendArgs BlendOut; // 0x0020(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopCount; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTriggerTime; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InTimeToStartMontageAt; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimMontage* ReturnValue; // 0x0040(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendArgs; + +// Function Engine.AnimInstance.PlaySlotAnimationAsDynamicMontage_WithBlendSettings +// 0x0068 (0x0068 - 0x0000) +struct AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings final +{ +public: + class UAnimSequenceBase* Asset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMontageBlendSettings BlendInSettings; // 0x0010(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FMontageBlendSettings BlendOutSettings; // 0x0030(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopCount; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTriggerTime; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InTimeToStartMontageAt; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimMontage* ReturnValue; // 0x0060(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_PlaySlotAnimationAsDynamicMontage_WithBlendSettings; + +// Function Engine.AnimInstance.QueryAndMarkTransitionEvent +// 0x0014 (0x0014 - 0x0000) +struct AnimInstance_QueryAndMarkTransitionEvent final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName EventName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_QueryAndMarkTransitionEvent; + +// Function Engine.AnimInstance.QueryTransitionEvent +// 0x0014 (0x0014 - 0x0000) +struct AnimInstance_QueryTransitionEvent final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName EventName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_QueryTransitionEvent; + +// Function Engine.AnimInstance.RemovePoseSnapshot +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_RemovePoseSnapshot final +{ +public: + class FName SnapshotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_RemovePoseSnapshot; + +// Function Engine.AnimInstance.RequestSlotGroupInertialization +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_RequestSlotGroupInertialization final +{ +public: + class FName InSlotGroupName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UBlendProfile* BlendProfile; // 0x0010(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_RequestSlotGroupInertialization; + +// Function Engine.AnimInstance.RequestTransitionEvent +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_RequestTransitionEvent final +{ +public: + class FName EventName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double RequestTimeout; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETransitionRequestQueueMode QueueMode; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETransitionRequestOverwriteMode OverwriteMode; // 0x0011(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0012(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_RequestTransitionEvent; + +// Function Engine.AnimInstance.ResetDynamics +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_ResetDynamics final +{ +public: + ETeleportType InTeleportType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_ResetDynamics; + +// Function Engine.AnimInstance.SavePoseSnapshot +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_SavePoseSnapshot final +{ +public: + class FName SnapshotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SavePoseSnapshot; + +// Function Engine.AnimInstance.SetMorphTarget +// 0x000C (0x000C - 0x0000) +struct AnimInstance_SetMorphTarget final +{ +public: + class FName MorphTargetName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SetMorphTarget; + +// Function Engine.AnimInstance.SetPropagateNotifiesToLinkedInstances +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_SetPropagateNotifiesToLinkedInstances final +{ +public: + bool bSet; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SetPropagateNotifiesToLinkedInstances; + +// Function Engine.AnimInstance.SetReceiveNotifiesFromLinkedInstances +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_SetReceiveNotifiesFromLinkedInstances final +{ +public: + bool bSet; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SetReceiveNotifiesFromLinkedInstances; + +// Function Engine.AnimInstance.SetRootMotionMode +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_SetRootMotionMode final +{ +public: + ERootMotionMode Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SetRootMotionMode; + +// Function Engine.AnimInstance.SetUseMainInstanceMontageEvaluationData +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_SetUseMainInstanceMontageEvaluationData final +{ +public: + bool bSet; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_SetUseMainInstanceMontageEvaluationData; + +// Function Engine.AnimInstance.SnapshotPose +// 0x0038 (0x0038 - 0x0000) +struct AnimInstance_SnapshotPose final +{ +public: + struct FPoseSnapshot Snapshot; // 0x0000(0x0038)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AnimInstance_SnapshotPose; + +// Function Engine.AnimInstance.StopSlotAnimation +// 0x000C (0x000C - 0x0000) +struct AnimInstance_StopSlotAnimation final +{ +public: + float InBlendOutTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_StopSlotAnimation; + +// Function Engine.AnimInstance.UnlinkAnimClassLayers +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_UnlinkAnimClassLayers final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_UnlinkAnimClassLayers; + +// Function Engine.AnimInstance.UnlockAIResources +// 0x0002 (0x0002 - 0x0000) +struct AnimInstance_UnlockAIResources final +{ +public: + bool bUnlockMovement; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool UnlockAILogic; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_UnlockAIResources; + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInAnyState +// 0x000C (0x000C - 0x0000) +struct AnimInstance_WasAnimNotifyNameTriggeredInAnyState final +{ +public: + class FName NotifyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyNameTriggeredInAnyState; + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInSourceState +// 0x0014 (0x0014 - 0x0000) +struct AnimInstance_WasAnimNotifyNameTriggeredInSourceState final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NotifyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyNameTriggeredInSourceState; + +// Function Engine.AnimInstance.WasAnimNotifyNameTriggeredInStateMachine +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_WasAnimNotifyNameTriggeredInStateMachine final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NotifyName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyNameTriggeredInStateMachine; + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInAnyState +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_WasAnimNotifyStateActiveInAnyState final +{ +public: + TSubclassOf AnimNotifyStateType; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyStateActiveInAnyState; + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInSourceState +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_WasAnimNotifyStateActiveInSourceState final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf AnimNotifyStateType; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyStateActiveInSourceState; + +// Function Engine.AnimInstance.WasAnimNotifyStateActiveInStateMachine +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_WasAnimNotifyStateActiveInStateMachine final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf AnimNotifyStateType; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyStateActiveInStateMachine; + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInAnyState +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_WasAnimNotifyTriggeredInAnyState final +{ +public: + TSubclassOf AnimNotifyType; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyTriggeredInAnyState; + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInSourceState +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_WasAnimNotifyTriggeredInSourceState final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StateIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf AnimNotifyType; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyTriggeredInSourceState; + +// Function Engine.AnimInstance.WasAnimNotifyTriggeredInStateMachine +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_WasAnimNotifyTriggeredInStateMachine final +{ +public: + int32 MachineIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf AnimNotifyType; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_WasAnimNotifyTriggeredInStateMachine; + +// Function Engine.AnimInstance.Blueprint_GetMainAnimInstance +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_Blueprint_GetMainAnimInstance final +{ +public: + class UAnimInstance* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Blueprint_GetMainAnimInstance; + +// Function Engine.AnimInstance.Blueprint_GetSlotMontageLocalWeight +// 0x000C (0x000C - 0x0000) +struct AnimInstance_Blueprint_GetSlotMontageLocalWeight final +{ +public: + class FName SlotNodeName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Blueprint_GetSlotMontageLocalWeight; + +// Function Engine.AnimInstance.CalculateDirection +// 0x0038 (0x0038 - 0x0000) +struct AnimInstance_CalculateDirection final +{ +public: + struct FVector Velocity; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator BaseRotation; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0030(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_CalculateDirection; + +// Function Engine.AnimInstance.DynamicMontage_IsPlayingFrom +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_DynamicMontage_IsPlayingFrom final +{ +public: + const class UAnimSequenceBase* Animation; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_DynamicMontage_IsPlayingFrom; + +// Function Engine.AnimInstance.GetActiveCurveNames +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetActiveCurveNames final +{ +public: + EAnimCurveType CurveType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutNames; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetActiveCurveNames; + +// Function Engine.AnimInstance.GetAllCurveNames +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_GetAllCurveNames final +{ +public: + TArray OutNames; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetAllCurveNames; + +// Function Engine.AnimInstance.GetBlendProfileByName +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_GetBlendProfileByName final +{ +public: + class FName InBlendProfileName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UBlendProfile* ReturnValue; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetBlendProfileByName; + +// Function Engine.AnimInstance.GetCurrentActiveMontage +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetCurrentActiveMontage final +{ +public: + class UAnimMontage* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetCurrentActiveMontage; + +// Function Engine.AnimInstance.GetCurveValue +// 0x000C (0x000C - 0x0000) +struct AnimInstance_GetCurveValue final +{ +public: + class FName CurveName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetCurveValue; + +// Function Engine.AnimInstance.GetDeltaSeconds +// 0x0004 (0x0004 - 0x0000) +struct AnimInstance_GetDeltaSeconds final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetDeltaSeconds; + +// Function Engine.AnimInstance.GetLinkedAnimGraphInstanceByTag +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_GetLinkedAnimGraphInstanceByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimGraphInstanceByTag; + +// Function Engine.AnimInstance.GetLinkedAnimGraphInstancesByTag +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetLinkedAnimGraphInstancesByTag final +{ +public: + class FName InTag; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutLinkedInstances; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimGraphInstancesByTag; + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByClass +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetLinkedAnimLayerInstanceByClass final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCheckForChildClass; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimInstance* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimLayerInstanceByClass; + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByGroup +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_GetLinkedAnimLayerInstanceByGroup final +{ +public: + class FName InGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimLayerInstanceByGroup; + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstanceByGroupAndClass +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass final +{ +public: + class FName InGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf InClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimInstance* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimLayerInstanceByGroupAndClass; + +// Function Engine.AnimInstance.GetLinkedAnimLayerInstancesByGroup +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetLinkedAnimLayerInstancesByGroup final +{ +public: + class FName InGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutLinkedInstances; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetLinkedAnimLayerInstancesByGroup; + +// Function Engine.AnimInstance.GetOwningActor +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetOwningActor final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetOwningActor; + +// Function Engine.AnimInstance.GetOwningComponent +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_GetOwningComponent final +{ +public: + class USkeletalMeshComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetOwningComponent; + +// Function Engine.AnimInstance.GetPropagateNotifiesToLinkedInstances +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_GetPropagateNotifiesToLinkedInstances final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetPropagateNotifiesToLinkedInstances; + +// Function Engine.AnimInstance.GetReceiveNotifiesFromLinkedInstances +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_GetReceiveNotifiesFromLinkedInstances final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetReceiveNotifiesFromLinkedInstances; + +// Function Engine.AnimInstance.GetSyncGroupPosition +// 0x001C (0x001C - 0x0000) +struct AnimInstance_GetSyncGroupPosition final +{ +public: + class FName InSyncGroupName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMarkerSyncAnimPosition ReturnValue; // 0x0008(0x0014)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//AnimInstance_GetSyncGroupPosition; + +// Function Engine.AnimInstance.GetTimeToClosestMarker +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_GetTimeToClosestMarker final +{ +public: + class FName SyncGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MarkerName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutMarkerTime; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_GetTimeToClosestMarker; + +// Function Engine.AnimInstance.HasMarkerBeenHitThisFrame +// 0x0014 (0x0014 - 0x0000) +struct AnimInstance_HasMarkerBeenHitThisFrame final +{ +public: + class FName SyncGroup; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MarkerName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_HasMarkerBeenHitThisFrame; + +// Function Engine.AnimInstance.IsAnyMontagePlaying +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_IsAnyMontagePlaying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_IsAnyMontagePlaying; + +// Function Engine.AnimInstance.IsPlayingSlotAnimation +// 0x0018 (0x0018 - 0x0000) +struct AnimInstance_IsPlayingSlotAnimation final +{ +public: + const class UAnimSequenceBase* Asset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_IsPlayingSlotAnimation; + +// Function Engine.AnimInstance.IsSlotActive +// 0x000C (0x000C - 0x0000) +struct AnimInstance_IsSlotActive final +{ +public: + class FName SlotNodeName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_IsSlotActive; + +// Function Engine.AnimInstance.IsSyncGroupBetweenMarkers +// 0x001C (0x001C - 0x0000) +struct AnimInstance_IsSyncGroupBetweenMarkers final +{ +public: + class FName InSyncGroupName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PreviousMarker; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NextMarker; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRespectMarkerOrder; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_IsSyncGroupBetweenMarkers; + +// Function Engine.AnimInstance.IsUsingMainInstanceMontageEvaluationData +// 0x0001 (0x0001 - 0x0000) +struct AnimInstance_IsUsingMainInstanceMontageEvaluationData final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_IsUsingMainInstanceMontageEvaluationData; + +// Function Engine.AnimInstance.Montage_GetBlendTime +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetBlendTime final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_GetBlendTime; + +// Function Engine.AnimInstance.Montage_GetCurrentSection +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetCurrentSection final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_Montage_GetCurrentSection; + +// Function Engine.AnimInstance.Montage_GetEffectivePlayRate +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetEffectivePlayRate final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_GetEffectivePlayRate; + +// Function Engine.AnimInstance.Montage_GetIsStopped +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetIsStopped final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_GetIsStopped; + +// Function Engine.AnimInstance.Montage_GetPlayRate +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetPlayRate final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_GetPlayRate; + +// Function Engine.AnimInstance.Montage_GetPosition +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_GetPosition final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_GetPosition; + +// Function Engine.AnimInstance.Montage_IsActive +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_IsActive final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_IsActive; + +// Function Engine.AnimInstance.Montage_IsPlaying +// 0x0010 (0x0010 - 0x0000) +struct AnimInstance_Montage_IsPlaying final +{ +public: + const class UAnimMontage* Montage; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimInstance_Montage_IsPlaying; + +// Function Engine.AnimInstance.TryGetPawnOwner +// 0x0008 (0x0008 - 0x0000) +struct AnimInstance_TryGetPawnOwner final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimInstance_TryGetPawnOwner; + +// Function Engine.TypedElementWorldInterface.CanDeleteElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanDeleteElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanDeleteElement; + +// Function Engine.TypedElementWorldInterface.CanDuplicateElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanDuplicateElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanDuplicateElement; + +// Function Engine.TypedElementWorldInterface.CanEditElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanEditElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanEditElement; + +// Function Engine.TypedElementWorldInterface.CanMoveElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanMoveElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + ETypedElementWorldType InWorldType; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanMoveElement; + +// Function Engine.TypedElementWorldInterface.CanPromoteElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanPromoteElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanPromoteElement; + +// Function Engine.TypedElementWorldInterface.CanScaleElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_CanScaleElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_CanScaleElement; + +// Function Engine.TypedElementWorldInterface.DeleteElement +// 0x0020 (0x0020 - 0x0000) +struct TypedElementWorldInterface_DeleteElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* InWorld; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTypedElementSelectionSet* InSelectionSet; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementDeletionOptions InDeletionOptions; // 0x0018(0x0003)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001B(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_DeleteElement; + +// Function Engine.TypedElementWorldInterface.DuplicateElement +// 0x0030 (0x0030 - 0x0000) +struct TypedElementWorldInterface_DuplicateElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* InWorld; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InLocationOffset; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FScriptTypedElementHandle ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_DuplicateElement; + +// Function Engine.TypedElementWorldInterface.GetBounds +// 0x0048 (0x0048 - 0x0000) +struct TypedElementWorldInterface_GetBounds final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FBoxSphereBounds OutBounds; // 0x0008(0x0038)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_GetBounds; + +// Function Engine.TypedElementWorldInterface.GetOwnerLevel +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_GetOwnerLevel final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class ULevel* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_GetOwnerLevel; + +// Function Engine.TypedElementWorldInterface.GetOwnerWorld +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_GetOwnerWorld final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_GetOwnerWorld; + +// Function Engine.TypedElementWorldInterface.GetPivotOffset +// 0x0028 (0x0028 - 0x0000) +struct TypedElementWorldInterface_GetPivotOffset final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector OutPivotOffset; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_GetPivotOffset; + +// Function Engine.TypedElementWorldInterface.GetRelativeTransform +// 0x0080 (0x0080 - 0x0000) +struct TypedElementWorldInterface_GetRelativeTransform final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform OutTransform; // 0x0010(0x0060)(Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_GetRelativeTransform; + +// Function Engine.TypedElementWorldInterface.GetWorldTransform +// 0x0080 (0x0080 - 0x0000) +struct TypedElementWorldInterface_GetWorldTransform final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform OutTransform; // 0x0010(0x0060)(Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_GetWorldTransform; + +// Function Engine.TypedElementWorldInterface.IsTemplateElement +// 0x0010 (0x0010 - 0x0000) +struct TypedElementWorldInterface_IsTemplateElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_IsTemplateElement; + +// Function Engine.TypedElementWorldInterface.NotifyMovementEnded +// 0x0008 (0x0008 - 0x0000) +struct TypedElementWorldInterface_NotifyMovementEnded final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_NotifyMovementEnded; + +// Function Engine.TypedElementWorldInterface.NotifyMovementOngoing +// 0x0008 (0x0008 - 0x0000) +struct TypedElementWorldInterface_NotifyMovementOngoing final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_NotifyMovementOngoing; + +// Function Engine.TypedElementWorldInterface.NotifyMovementStarted +// 0x0008 (0x0008 - 0x0000) +struct TypedElementWorldInterface_NotifyMovementStarted final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_NotifyMovementStarted; + +// Function Engine.TypedElementWorldInterface.PromoteElement +// 0x0018 (0x0018 - 0x0000) +struct TypedElementWorldInterface_PromoteElement final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* OverrideWorld; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FScriptTypedElementHandle ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementWorldInterface_PromoteElement; + +// Function Engine.TypedElementWorldInterface.SetPivotOffset +// 0x0028 (0x0028 - 0x0000) +struct TypedElementWorldInterface_SetPivotOffset final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector InPivotOffset; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_SetPivotOffset; + +// Function Engine.TypedElementWorldInterface.SetRelativeTransform +// 0x0080 (0x0080 - 0x0000) +struct TypedElementWorldInterface_SetRelativeTransform final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform InTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_SetRelativeTransform; + +// Function Engine.TypedElementWorldInterface.SetWorldTransform +// 0x0080 (0x0080 - 0x0000) +struct TypedElementWorldInterface_SetWorldTransform final +{ +public: + struct FScriptTypedElementHandle InElementHandle; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform InTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementWorldInterface_SetWorldTransform; + +// Function Engine.MovementComponent.K2_MoveUpdatedComponent +// 0x0138 (0x0138 - 0x0000) +struct MovementComponent_K2_MoveUpdatedComponent final +{ +public: + struct FVector Delta; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0030(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bSweep; // 0x0130(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTeleport; // 0x0131(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0132(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_133[0x5]; // 0x0133(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MovementComponent_K2_MoveUpdatedComponent; + +// Function Engine.MovementComponent.PhysicsVolumeChanged +// 0x0008 (0x0008 - 0x0000) +struct MovementComponent_PhysicsVolumeChanged final +{ +public: + class APhysicsVolume* NewVolume; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_PhysicsVolumeChanged; + +// Function Engine.MovementComponent.SetPlaneConstraintAxisSetting +// 0x0001 (0x0001 - 0x0000) +struct MovementComponent_SetPlaneConstraintAxisSetting final +{ +public: + EPlaneConstraintAxisSetting NewAxisSetting; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetPlaneConstraintAxisSetting; + +// Function Engine.MovementComponent.SetPlaneConstraintEnabled +// 0x0001 (0x0001 - 0x0000) +struct MovementComponent_SetPlaneConstraintEnabled final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetPlaneConstraintEnabled; + +// Function Engine.MovementComponent.SetPlaneConstraintFromVectors +// 0x0030 (0x0030 - 0x0000) +struct MovementComponent_SetPlaneConstraintFromVectors final +{ +public: + struct FVector Forward; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Up; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetPlaneConstraintFromVectors; + +// Function Engine.MovementComponent.SetPlaneConstraintNormal +// 0x0018 (0x0018 - 0x0000) +struct MovementComponent_SetPlaneConstraintNormal final +{ +public: + struct FVector PlaneNormal; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetPlaneConstraintNormal; + +// Function Engine.MovementComponent.SetPlaneConstraintOrigin +// 0x0018 (0x0018 - 0x0000) +struct MovementComponent_SetPlaneConstraintOrigin final +{ +public: + struct FVector PlaneOrigin; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetPlaneConstraintOrigin; + +// Function Engine.MovementComponent.SetUpdatedComponent +// 0x0008 (0x0008 - 0x0000) +struct MovementComponent_SetUpdatedComponent final +{ +public: + class USceneComponent* NewUpdatedComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_SetUpdatedComponent; + +// Function Engine.MovementComponent.ConstrainDirectionToPlane +// 0x0030 (0x0030 - 0x0000) +struct MovementComponent_ConstrainDirectionToPlane final +{ +public: + struct FVector Direction; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_ConstrainDirectionToPlane; + +// Function Engine.MovementComponent.ConstrainLocationToPlane +// 0x0030 (0x0030 - 0x0000) +struct MovementComponent_ConstrainLocationToPlane final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_ConstrainLocationToPlane; + +// Function Engine.MovementComponent.ConstrainNormalToPlane +// 0x0030 (0x0030 - 0x0000) +struct MovementComponent_ConstrainNormalToPlane final +{ +public: + struct FVector Normal; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_ConstrainNormalToPlane; + +// Function Engine.MovementComponent.GetGravityZ +// 0x0004 (0x0004 - 0x0000) +struct MovementComponent_GetGravityZ final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetGravityZ; + +// Function Engine.MovementComponent.GetMaxSpeed +// 0x0004 (0x0004 - 0x0000) +struct MovementComponent_GetMaxSpeed final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetMaxSpeed; + +// Function Engine.MovementComponent.GetPhysicsVolume +// 0x0008 (0x0008 - 0x0000) +struct MovementComponent_GetPhysicsVolume final +{ +public: + class APhysicsVolume* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetPhysicsVolume; + +// Function Engine.MovementComponent.GetPlaneConstraintAxisSetting +// 0x0001 (0x0001 - 0x0000) +struct MovementComponent_GetPlaneConstraintAxisSetting final +{ +public: + EPlaneConstraintAxisSetting ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetPlaneConstraintAxisSetting; + +// Function Engine.MovementComponent.GetPlaneConstraintNormal +// 0x0018 (0x0018 - 0x0000) +struct MovementComponent_GetPlaneConstraintNormal final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetPlaneConstraintNormal; + +// Function Engine.MovementComponent.GetPlaneConstraintOrigin +// 0x0018 (0x0018 - 0x0000) +struct MovementComponent_GetPlaneConstraintOrigin final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MovementComponent_GetPlaneConstraintOrigin; + +// Function Engine.MovementComponent.IsExceedingMaxSpeed +// 0x0008 (0x0008 - 0x0000) +struct MovementComponent_IsExceedingMaxSpeed final +{ +public: + float MaxSpeed; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MovementComponent_IsExceedingMaxSpeed; + +// Function Engine.ProjectileMovementComponent.MoveInterpolationTarget +// 0x0030 (0x0030 - 0x0000) +struct ProjectileMovementComponent_MoveInterpolationTarget final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_MoveInterpolationTarget; + +// Function Engine.ProjectileMovementComponent.SetInterpolatedComponent +// 0x0008 (0x0008 - 0x0000) +struct ProjectileMovementComponent_SetInterpolatedComponent final +{ +public: + class USceneComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_SetInterpolatedComponent; + +// Function Engine.ProjectileMovementComponent.SetVelocityInLocalSpace +// 0x0018 (0x0018 - 0x0000) +struct ProjectileMovementComponent_SetVelocityInLocalSpace final +{ +public: + struct FVector NewVelocity; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_SetVelocityInLocalSpace; + +// Function Engine.ProjectileMovementComponent.StopSimulating +// 0x0100 (0x0100 - 0x0000) +struct ProjectileMovementComponent_StopSimulating final +{ +public: + struct FHitResult HitResult; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_StopSimulating; + +// Function Engine.ProjectileMovementComponent.IsInterpolationComplete +// 0x0001 (0x0001 - 0x0000) +struct ProjectileMovementComponent_IsInterpolationComplete final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_IsInterpolationComplete; + +// Function Engine.ProjectileMovementComponent.IsVelocityUnderSimulationThreshold +// 0x0001 (0x0001 - 0x0000) +struct ProjectileMovementComponent_IsVelocityUnderSimulationThreshold final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_IsVelocityUnderSimulationThreshold; + +// Function Engine.ProjectileMovementComponent.LimitVelocity +// 0x0030 (0x0030 - 0x0000) +struct ProjectileMovementComponent_LimitVelocity final +{ +public: + struct FVector NewVelocity; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ProjectileMovementComponent_LimitVelocity; + +// Function Engine.SoundBase.IsAttenuationSettingsEditable +// 0x0001 (0x0001 - 0x0000) +struct SoundBase_IsAttenuationSettingsEditable final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundBase_IsAttenuationSettingsEditable; + +// Function Engine.SoundWave.SetSoundAssetCompressionType +// 0x0002 (0x0002 - 0x0000) +struct SoundWave_SetSoundAssetCompressionType final +{ +public: + ESoundAssetCompressionType InSoundAssetCompressionType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMarkDirty; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundWave_SetSoundAssetCompressionType; + +// Function Engine.SoundWave.GetCuePoints +// 0x0010 (0x0010 - 0x0000) +struct SoundWave_GetCuePoints final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SoundWave_GetCuePoints; + +// Function Engine.SoundWave.GetLoopRegions +// 0x0010 (0x0010 - 0x0000) +struct SoundWave_GetLoopRegions final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SoundWave_GetLoopRegions; + +// Function Engine.SoundWave.GetSoundAssetCompressionType +// 0x0001 (0x0001 - 0x0000) +struct SoundWave_GetSoundAssetCompressionType final +{ +public: + ESoundAssetCompressionType ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundWave_GetSoundAssetCompressionType; + +// Function Engine.Texture.Blueprint_GetTextureSourceIdString +// 0x0018 (0x0018 - 0x0000) +struct Texture_Blueprint_GetTextureSourceIdString final +{ +public: + class FString OutTextureSourceId; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Texture_Blueprint_GetTextureSourceIdString; + +// Function Engine.Texture.AreDownscalePropertiesEditable +// 0x0001 (0x0001 - 0x0000) +struct Texture_AreDownscalePropertiesEditable final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Texture_AreDownscalePropertiesEditable; + +// Function Engine.Texture.Blueprint_GetMemorySize +// 0x0008 (0x0008 - 0x0000) +struct Texture_Blueprint_GetMemorySize final +{ +public: + int64 ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Texture_Blueprint_GetMemorySize; + +// Function Engine.Texture.Blueprint_GetTextureSourceDiskAndMemorySize +// 0x0010 (0x0010 - 0x0000) +struct Texture_Blueprint_GetTextureSourceDiskAndMemorySize final +{ +public: + int64 OutDiskSize; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 OutMemorySize; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Texture_Blueprint_GetTextureSourceDiskAndMemorySize; + +// Function Engine.Texture.ComputeTextureSourceChannelMinMax +// 0x0024 (0x0024 - 0x0000) +struct Texture_ComputeTextureSourceChannelMinMax final +{ +public: + struct FLinearColor OutColorMin; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor OutColorMax; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Texture_ComputeTextureSourceChannelMinMax; + +// Function Engine.Controller.ClientSetLocation +// 0x0030 (0x0030 - 0x0000) +struct Controller_ClientSetLocation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_ClientSetLocation; + +// Function Engine.Controller.ClientSetRotation +// 0x0020 (0x0020 - 0x0000) +struct Controller_ClientSetRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bResetCamera; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Controller_ClientSetRotation; + +// Function Engine.Controller.Possess +// 0x0008 (0x0008 - 0x0000) +struct Controller_Possess final +{ +public: + class APawn* InPawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_Possess; + +// Function Engine.Controller.ReceiveInstigatedAnyDamage +// 0x0020 (0x0020 - 0x0000) +struct Controller_ReceiveInstigatedAnyDamage final +{ +public: + float Damage; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + const class UDamageType* DamageType; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamagedActor; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_ReceiveInstigatedAnyDamage; + +// Function Engine.Controller.ReceivePossess +// 0x0008 (0x0008 - 0x0000) +struct Controller_ReceivePossess final +{ +public: + class APawn* PossessedPawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_ReceivePossess; + +// Function Engine.Controller.ReceiveUnPossess +// 0x0008 (0x0008 - 0x0000) +struct Controller_ReceiveUnPossess final +{ +public: + class APawn* UnpossessedPawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_ReceiveUnPossess; + +// Function Engine.Controller.SetControlRotation +// 0x0018 (0x0018 - 0x0000) +struct Controller_SetControlRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_SetControlRotation; + +// Function Engine.Controller.SetIgnoreLookInput +// 0x0001 (0x0001 - 0x0000) +struct Controller_SetIgnoreLookInput final +{ +public: + bool bNewLookInput; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_SetIgnoreLookInput; + +// Function Engine.Controller.SetIgnoreMoveInput +// 0x0001 (0x0001 - 0x0000) +struct Controller_SetIgnoreMoveInput final +{ +public: + bool bNewMoveInput; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_SetIgnoreMoveInput; + +// Function Engine.Controller.SetInitialLocationAndRotation +// 0x0030 (0x0030 - 0x0000) +struct Controller_SetInitialLocationAndRotation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_SetInitialLocationAndRotation; + +// Function Engine.Controller.GetControlRotation +// 0x0018 (0x0018 - 0x0000) +struct Controller_GetControlRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_GetControlRotation; + +// Function Engine.Controller.GetDesiredRotation +// 0x0018 (0x0018 - 0x0000) +struct Controller_GetDesiredRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_GetDesiredRotation; + +// Function Engine.Controller.GetPlayerViewPoint +// 0x0030 (0x0030 - 0x0000) +struct Controller_GetPlayerViewPoint final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Controller_GetPlayerViewPoint; + +// Function Engine.Controller.GetViewTarget +// 0x0008 (0x0008 - 0x0000) +struct Controller_GetViewTarget final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_GetViewTarget; + +// Function Engine.Controller.IsLocalController +// 0x0001 (0x0001 - 0x0000) +struct Controller_IsLocalController final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_IsLocalController; + +// Function Engine.Controller.IsLocalPlayerController +// 0x0001 (0x0001 - 0x0000) +struct Controller_IsLocalPlayerController final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_IsLocalPlayerController; + +// Function Engine.Controller.IsLookInputIgnored +// 0x0001 (0x0001 - 0x0000) +struct Controller_IsLookInputIgnored final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_IsLookInputIgnored; + +// Function Engine.Controller.IsMoveInputIgnored +// 0x0001 (0x0001 - 0x0000) +struct Controller_IsMoveInputIgnored final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_IsMoveInputIgnored; + +// Function Engine.Controller.IsPlayerController +// 0x0001 (0x0001 - 0x0000) +struct Controller_IsPlayerController final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_IsPlayerController; + +// Function Engine.Controller.K2_GetPawn +// 0x0008 (0x0008 - 0x0000) +struct Controller_K2_GetPawn final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Controller_K2_GetPawn; + +// Function Engine.Controller.LineOfSightTo +// 0x0028 (0x0028 - 0x0000) +struct Controller_LineOfSightTo final +{ +public: + const class AActor* Other; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ViewPoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlternateChecks; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Controller_LineOfSightTo; + +// Function Engine.CameraActor.GetAutoActivatePlayerIndex +// 0x0004 (0x0004 - 0x0000) +struct CameraActor_GetAutoActivatePlayerIndex final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraActor_GetAutoActivatePlayerIndex; + +// Function Engine.CameraComponent.AddOrUpdateBlendable +// 0x0018 (0x0018 - 0x0000) +struct CameraComponent_AddOrUpdateBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InWeight; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraComponent_AddOrUpdateBlendable; + +// Function Engine.CameraComponent.GetCameraView +// 0x0840 (0x0840 - 0x0000) +struct CameraComponent_GetCameraView final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMinimalViewInfo DesiredView; // 0x0010(0x0830)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//CameraComponent_GetCameraView; + +// Function Engine.CameraComponent.RemoveBlendable +// 0x0010 (0x0010 - 0x0000) +struct CameraComponent_RemoveBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_RemoveBlendable; + +// Function Engine.CameraComponent.SetAspectRatio +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetAspectRatio final +{ +public: + float InAspectRatio; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetAspectRatio; + +// Function Engine.CameraComponent.SetAspectRatioAxisConstraint +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetAspectRatioAxisConstraint final +{ +public: + EAspectRatioAxisConstraint InAspectRatioAxisConstraint; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetAspectRatioAxisConstraint; + +// Function Engine.CameraComponent.SetAutoCalculateOrthoPlanes +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetAutoCalculateOrthoPlanes final +{ +public: + bool bAutoCalculate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetAutoCalculateOrthoPlanes; + +// Function Engine.CameraComponent.SetAutoPlaneShift +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetAutoPlaneShift final +{ +public: + float InAutoPlaneShift; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetAutoPlaneShift; + +// Function Engine.CameraComponent.SetConstraintAspectRatio +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetConstraintAspectRatio final +{ +public: + bool bInConstrainAspectRatio; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetConstraintAspectRatio; + +// Function Engine.CameraComponent.SetCropOverscan +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetCropOverscan final +{ +public: + bool bInCropOverscan; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetCropOverscan; + +// Function Engine.CameraComponent.SetEnableFirstPersonFieldOfView +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetEnableFirstPersonFieldOfView final +{ +public: + bool bInEnableFirstPersonFieldOfView; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetEnableFirstPersonFieldOfView; + +// Function Engine.CameraComponent.SetEnableFirstPersonScale +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetEnableFirstPersonScale final +{ +public: + bool bInEnableFirstPersonScale; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetEnableFirstPersonScale; + +// Function Engine.CameraComponent.SetFieldOfView +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetFieldOfView final +{ +public: + float InFieldOfView; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetFieldOfView; + +// Function Engine.CameraComponent.SetFirstPersonFieldOfView +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetFirstPersonFieldOfView final +{ +public: + float InFirstPersonFieldOfView; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetFirstPersonFieldOfView; + +// Function Engine.CameraComponent.SetFirstPersonScale +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetFirstPersonScale final +{ +public: + float InFirstPersonScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetFirstPersonScale; + +// Function Engine.CameraComponent.SetOrthoFarClipPlane +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetOrthoFarClipPlane final +{ +public: + float InOrthoFarClipPlane; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetOrthoFarClipPlane; + +// Function Engine.CameraComponent.SetOrthoNearClipPlane +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetOrthoNearClipPlane final +{ +public: + float InOrthoNearClipPlane; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetOrthoNearClipPlane; + +// Function Engine.CameraComponent.SetOrthoWidth +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetOrthoWidth final +{ +public: + float InOrthoWidth; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetOrthoWidth; + +// Function Engine.CameraComponent.SetOverscan +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetOverscan final +{ +public: + float InOverscan; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetOverscan; + +// Function Engine.CameraComponent.SetPostProcessBlendWeight +// 0x0004 (0x0004 - 0x0000) +struct CameraComponent_SetPostProcessBlendWeight final +{ +public: + float InPostProcessBlendWeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetPostProcessBlendWeight; + +// Function Engine.CameraComponent.SetProjectionMode +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetProjectionMode final +{ +public: + ECameraProjectionMode InProjectionMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetProjectionMode; + +// Function Engine.CameraComponent.SetScaleResolutionWithOverscan +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetScaleResolutionWithOverscan final +{ +public: + bool bInScaleResolutionWithOverscan; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetScaleResolutionWithOverscan; + +// Function Engine.CameraComponent.SetUpdateOrthoPlanes +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetUpdateOrthoPlanes final +{ +public: + bool bInUpdateOrthoPlanes; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetUpdateOrthoPlanes; + +// Function Engine.CameraComponent.SetUseCameraHeightAsViewTarget +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetUseCameraHeightAsViewTarget final +{ +public: + bool bInUseCameraHeightAsViewTarget; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetUseCameraHeightAsViewTarget; + +// Function Engine.CameraComponent.SetUseFieldOfViewForLOD +// 0x0001 (0x0001 - 0x0000) +struct CameraComponent_SetUseFieldOfViewForLOD final +{ +public: + bool bInUseFieldOfViewForLOD; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraComponent_SetUseFieldOfViewForLOD; + +// Function Engine.DataLayerManager.SetDataLayerInstanceRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_SetDataLayerInstanceRuntimeState final +{ +public: + const class UDataLayerInstance* InDataLayerInstance; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInIsRecursive; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000A(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x5]; // 0x000B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerManager_SetDataLayerInstanceRuntimeState; + +// Function Engine.DataLayerManager.SetDataLayerRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_SetDataLayerRuntimeState final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInIsRecursive; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000A(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x5]; // 0x000B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerManager_SetDataLayerRuntimeState; + +// Function Engine.DataLayerManager.GetDataLayerInstanceEffectiveRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState final +{ +public: + const class UDataLayerInstance* InDataLayerInstance; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerManager_GetDataLayerInstanceEffectiveRuntimeState; + +// Function Engine.DataLayerManager.GetDataLayerInstanceFromAsset +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_GetDataLayerInstanceFromAsset final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerManager_GetDataLayerInstanceFromAsset; + +// Function Engine.DataLayerManager.GetDataLayerInstanceFromName +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_GetDataLayerInstanceFromName final +{ +public: + class FName InDataLayerInstanceName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerManager_GetDataLayerInstanceFromName; + +// Function Engine.DataLayerManager.GetDataLayerInstanceRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_GetDataLayerInstanceRuntimeState final +{ +public: + const class UDataLayerInstance* InDataLayerInstance; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerManager_GetDataLayerInstanceRuntimeState; + +// Function Engine.DataLayerManager.GetDataLayerInstances +// 0x0010 (0x0010 - 0x0000) +struct DataLayerManager_GetDataLayerInstances final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//DataLayerManager_GetDataLayerInstances; + +// Function Engine.AnimationAsset.FindMetaDataByClass +// 0x0010 (0x0010 - 0x0000) +struct AnimationAsset_FindMetaDataByClass final +{ +public: + TSubclassOf MetaDataClass; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimMetaData* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationAsset_FindMetaDataByClass; + +// Function Engine.AnimationAsset.GetPlayLength +// 0x0004 (0x0004 - 0x0000) +struct AnimationAsset_GetPlayLength final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationAsset_GetPlayLength; + +// Function Engine.SparseVolumeTexture.GetFrameTransform +// 0x0060 (0x0060 - 0x0000) +struct SparseVolumeTexture_GetFrameTransform final +{ +public: + struct FTransform ReturnValue; // 0x0000(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetFrameTransform; + +// Function Engine.SparseVolumeTexture.GetNumFrames +// 0x0004 (0x0004 - 0x0000) +struct SparseVolumeTexture_GetNumFrames final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetNumFrames; + +// Function Engine.SparseVolumeTexture.GetNumMipLevels +// 0x0004 (0x0004 - 0x0000) +struct SparseVolumeTexture_GetNumMipLevels final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetNumMipLevels; + +// Function Engine.SparseVolumeTexture.GetSizeX +// 0x0004 (0x0004 - 0x0000) +struct SparseVolumeTexture_GetSizeX final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetSizeX; + +// Function Engine.SparseVolumeTexture.GetSizeY +// 0x0004 (0x0004 - 0x0000) +struct SparseVolumeTexture_GetSizeY final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetSizeY; + +// Function Engine.SparseVolumeTexture.GetSizeZ +// 0x0004 (0x0004 - 0x0000) +struct SparseVolumeTexture_GetSizeZ final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SparseVolumeTexture_GetSizeZ; + +// Function Engine.RawAnimSequenceTrackExtensions.GetPositionalKeys +// 0x0040 (0x0040 - 0x0000) +struct RawAnimSequenceTrackExtensions_GetPositionalKeys final +{ +public: + struct FRawAnimSequenceTrack Track; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//RawAnimSequenceTrackExtensions_GetPositionalKeys; + +// Function Engine.RawAnimSequenceTrackExtensions.GetRotationalKeys +// 0x0040 (0x0040 - 0x0000) +struct RawAnimSequenceTrackExtensions_GetRotationalKeys final +{ +public: + struct FRawAnimSequenceTrack Track; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//RawAnimSequenceTrackExtensions_GetRotationalKeys; + +// Function Engine.RawAnimSequenceTrackExtensions.GetScaleKeys +// 0x0040 (0x0040 - 0x0000) +struct RawAnimSequenceTrackExtensions_GetScaleKeys final +{ +public: + struct FRawAnimSequenceTrack Track; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//RawAnimSequenceTrackExtensions_GetScaleKeys; + +// Function Engine.DataLayerInstance.GetAsset +// 0x0008 (0x0008 - 0x0000) +struct DataLayerInstance_GetAsset final +{ +public: + const class UDataLayerAsset* ReturnValue; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetAsset; + +// Function Engine.DataLayerInstance.GetDataLayerFullName +// 0x0010 (0x0010 - 0x0000) +struct DataLayerInstance_GetDataLayerFullName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetDataLayerFullName; + +// Function Engine.DataLayerInstance.GetDataLayerShortName +// 0x0010 (0x0010 - 0x0000) +struct DataLayerInstance_GetDataLayerShortName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetDataLayerShortName; + +// Function Engine.DataLayerInstance.GetDebugColor +// 0x0004 (0x0004 - 0x0000) +struct DataLayerInstance_GetDebugColor final +{ +public: + struct FColor ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetDebugColor; + +// Function Engine.DataLayerInstance.GetInitialRuntimeState +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_GetInitialRuntimeState final +{ +public: + EDataLayerRuntimeState ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetInitialRuntimeState; + +// Function Engine.DataLayerInstance.GetType +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_GetType final +{ +public: + EDataLayerType ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_GetType; + +// Function Engine.DataLayerInstance.IsClientOnly +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsClientOnly final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsClientOnly; + +// Function Engine.DataLayerInstance.IsEffectiveVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsEffectiveVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsEffectiveVisible; + +// Function Engine.DataLayerInstance.IsInitiallyVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsInitiallyVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsInitiallyVisible; + +// Function Engine.DataLayerInstance.IsRuntime +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsRuntime final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsRuntime; + +// Function Engine.DataLayerInstance.IsServerOnly +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsServerOnly final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsServerOnly; + +// Function Engine.DataLayerInstance.IsVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayerInstance_IsVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerInstance_IsVisible; + +// Function Engine.AudioPanelWidgetInterface.GetEditorName +// 0x0010 (0x0010 - 0x0000) +struct AudioPanelWidgetInterface_GetEditorName final +{ +public: + class FText ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioPanelWidgetInterface_GetEditorName; + +// Function Engine.AudioPanelWidgetInterface.GetIconBrushName +// 0x0008 (0x0008 - 0x0000) +struct AudioPanelWidgetInterface_GetIconBrushName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioPanelWidgetInterface_GetIconBrushName; + +// Function Engine.Light.SetAffectTranslucentLighting +// 0x0001 (0x0001 - 0x0000) +struct Light_SetAffectTranslucentLighting final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetAffectTranslucentLighting; + +// Function Engine.Light.SetBrightness +// 0x0004 (0x0004 - 0x0000) +struct Light_SetBrightness final +{ +public: + float NewBrightness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetBrightness; + +// Function Engine.Light.SetCastShadows +// 0x0001 (0x0001 - 0x0000) +struct Light_SetCastShadows final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetCastShadows; + +// Function Engine.Light.SetEnabled +// 0x0001 (0x0001 - 0x0000) +struct Light_SetEnabled final +{ +public: + bool bSetEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetEnabled; + +// Function Engine.Light.SetLightColor +// 0x0010 (0x0010 - 0x0000) +struct Light_SetLightColor final +{ +public: + struct FLinearColor NewLightColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetLightColor; + +// Function Engine.Light.SetLightFunctionFadeDistance +// 0x0004 (0x0004 - 0x0000) +struct Light_SetLightFunctionFadeDistance final +{ +public: + float NewLightFunctionFadeDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetLightFunctionFadeDistance; + +// Function Engine.Light.SetLightFunctionMaterial +// 0x0008 (0x0008 - 0x0000) +struct Light_SetLightFunctionMaterial final +{ +public: + class UMaterialInterface* NewLightFunctionMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetLightFunctionMaterial; + +// Function Engine.Light.SetLightFunctionScale +// 0x0018 (0x0018 - 0x0000) +struct Light_SetLightFunctionScale final +{ +public: + struct FVector NewLightFunctionScale; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_SetLightFunctionScale; + +// Function Engine.Light.GetBrightness +// 0x0004 (0x0004 - 0x0000) +struct Light_GetBrightness final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_GetBrightness; + +// Function Engine.Light.GetLightColor +// 0x0010 (0x0010 - 0x0000) +struct Light_GetLightColor final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_GetLightColor; + +// Function Engine.Light.IsEnabled +// 0x0001 (0x0001 - 0x0000) +struct Light_IsEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Light_IsEnabled; + +// Function Engine.FXSystemComponent.SetActorParameter +// 0x0010 (0x0010 - 0x0000) +struct FXSystemComponent_SetActorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* Param; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetActorParameter; + +// Function Engine.FXSystemComponent.SetAutoAttachmentParameters +// 0x0018 (0x0018 - 0x0000) +struct FXSystemComponent_SetAutoAttachmentParameters final +{ +public: + class USceneComponent* Parent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule LocationRule; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule RotationRule; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachmentRule ScaleRule; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FXSystemComponent_SetAutoAttachmentParameters; + +// Function Engine.FXSystemComponent.SetBoolParameter +// 0x000C (0x000C - 0x0000) +struct FXSystemComponent_SetBoolParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Param; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FXSystemComponent_SetBoolParameter; + +// Function Engine.FXSystemComponent.SetColorParameter +// 0x0018 (0x0018 - 0x0000) +struct FXSystemComponent_SetColorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Param; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetColorParameter; + +// Function Engine.FXSystemComponent.SetEmitterEnable +// 0x000C (0x000C - 0x0000) +struct FXSystemComponent_SetEmitterEnable final +{ +public: + class FName EmitterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewEnableState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FXSystemComponent_SetEmitterEnable; + +// Function Engine.FXSystemComponent.SetFloatParameter +// 0x000C (0x000C - 0x0000) +struct FXSystemComponent_SetFloatParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Param; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetFloatParameter; + +// Function Engine.FXSystemComponent.SetIntParameter +// 0x000C (0x000C - 0x0000) +struct FXSystemComponent_SetIntParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Param; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetIntParameter; + +// Function Engine.FXSystemComponent.SetUseAutoManageAttachment +// 0x0001 (0x0001 - 0x0000) +struct FXSystemComponent_SetUseAutoManageAttachment final +{ +public: + bool bAutoManage; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetUseAutoManageAttachment; + +// Function Engine.FXSystemComponent.SetVectorParameter +// 0x0020 (0x0020 - 0x0000) +struct FXSystemComponent_SetVectorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Param; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_SetVectorParameter; + +// Function Engine.FXSystemComponent.GetFXSystemAsset +// 0x0008 (0x0008 - 0x0000) +struct FXSystemComponent_GetFXSystemAsset final +{ +public: + class UFXSystemAsset* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FXSystemComponent_GetFXSystemAsset; + +// Function Engine.KismetInputLibrary.EqualEqual_InputChordInputChord +// 0x0048 (0x0048 - 0x0000) +struct KismetInputLibrary_EqualEqual_InputChordInputChord final +{ +public: + struct FInputChord A; // 0x0000(0x0020)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputChord B; // 0x0020(0x0020)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_EqualEqual_InputChordInputChord; + +// Function Engine.KismetInputLibrary.EqualEqual_KeyKey +// 0x0038 (0x0038 - 0x0000) +struct KismetInputLibrary_EqualEqual_KeyKey final +{ +public: + struct FKey A; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FKey B; // 0x0018(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_EqualEqual_KeyKey; + +// Function Engine.KismetInputLibrary.GetAnalogValue +// 0x0050 (0x0050 - 0x0000) +struct KismetInputLibrary_GetAnalogValue final +{ +public: + struct FAnalogInputEvent Input; // 0x0000(0x0048)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0048(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_GetAnalogValue; + +// Function Engine.KismetInputLibrary.GetKey +// 0x0058 (0x0058 - 0x0000) +struct KismetInputLibrary_GetKey final +{ +public: + struct FKeyEvent Input; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FKey ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_GetKey; + +// Function Engine.KismetInputLibrary.GetModifierKeysState +// 0x0001 (0x0001 - 0x0000) +struct KismetInputLibrary_GetModifierKeysState final +{ +public: + struct FSlateModifierKeysState ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_GetModifierKeysState; + +// Function Engine.KismetInputLibrary.GetUserIndex +// 0x0048 (0x0048 - 0x0000) +struct KismetInputLibrary_GetUserIndex final +{ +public: + struct FKeyEvent Input; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0040(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_GetUserIndex; + +// Function Engine.KismetInputLibrary.InputChord_GetDisplayName +// 0x0030 (0x0030 - 0x0000) +struct KismetInputLibrary_InputChord_GetDisplayName final +{ +public: + struct FInputChord Key; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_InputChord_GetDisplayName; + +// Function Engine.KismetInputLibrary.InputEvent_IsAltDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsAltDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsAltDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsCommandDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsCommandDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsCommandDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsControlDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsControlDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsControlDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftAltDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsLeftAltDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsLeftAltDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftCommandDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsLeftCommandDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsLeftCommandDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftControlDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsLeftControlDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsLeftControlDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsLeftShiftDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsLeftShiftDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsLeftShiftDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsRepeat +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsRepeat final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsRepeat; + +// Function Engine.KismetInputLibrary.InputEvent_IsRightAltDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsRightAltDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsRightAltDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsRightCommandDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsRightCommandDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsRightCommandDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsRightControlDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsRightControlDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsRightControlDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsRightShiftDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsRightShiftDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsRightShiftDown; + +// Function Engine.KismetInputLibrary.InputEvent_IsShiftDown +// 0x0028 (0x0028 - 0x0000) +struct KismetInputLibrary_InputEvent_IsShiftDown final +{ +public: + struct FInputEvent Input; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_InputEvent_IsShiftDown; + +// Function Engine.KismetInputLibrary.Key_GetDisplayName +// 0x0030 (0x0030 - 0x0000) +struct KismetInputLibrary_Key_GetDisplayName final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLongDisplayName; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_Key_GetDisplayName; + +// Function Engine.KismetInputLibrary.Key_GetNavigationAction +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_GetNavigationAction final +{ +public: + struct FKey InKey; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EUINavigationAction ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_GetNavigationAction; + +// Function Engine.KismetInputLibrary.Key_GetNavigationActionFromKey +// 0x0048 (0x0048 - 0x0000) +struct KismetInputLibrary_Key_GetNavigationActionFromKey final +{ +public: + struct FKeyEvent InKeyEvent; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EUINavigationAction ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_GetNavigationActionFromKey; + +// Function Engine.KismetInputLibrary.Key_GetNavigationDirectionFromAnalog +// 0x0050 (0x0050 - 0x0000) +struct KismetInputLibrary_Key_GetNavigationDirectionFromAnalog final +{ +public: + struct FAnalogInputEvent InAnalogEvent; // 0x0000(0x0048)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EUINavigation ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_GetNavigationDirectionFromAnalog; + +// Function Engine.KismetInputLibrary.Key_GetNavigationDirectionFromKey +// 0x0048 (0x0048 - 0x0000) +struct KismetInputLibrary_Key_GetNavigationDirectionFromKey final +{ +public: + struct FKeyEvent InKeyEvent; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EUINavigation ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_GetNavigationDirectionFromKey; + +// Function Engine.KismetInputLibrary.Key_IsAnalog +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsAnalog final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsAnalog; + +// Function Engine.KismetInputLibrary.Key_IsAxis1D +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsAxis1D final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsAxis1D; + +// Function Engine.KismetInputLibrary.Key_IsAxis2D +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsAxis2D final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsAxis2D; + +// Function Engine.KismetInputLibrary.Key_IsAxis3D +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsAxis3D final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsAxis3D; + +// Function Engine.KismetInputLibrary.Key_IsButtonAxis +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsButtonAxis final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsButtonAxis; + +// Function Engine.KismetInputLibrary.Key_IsDigital +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsDigital final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsDigital; + +// Function Engine.KismetInputLibrary.Key_IsGamepadKey +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsGamepadKey final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsGamepadKey; + +// Function Engine.KismetInputLibrary.Key_IsKeyboardKey +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsKeyboardKey final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsKeyboardKey; + +// Function Engine.KismetInputLibrary.Key_IsModifierKey +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsModifierKey final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsModifierKey; + +// Function Engine.KismetInputLibrary.Key_IsMouseButton +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsMouseButton final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsMouseButton; + +// Function Engine.KismetInputLibrary.Key_IsValid +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsValid final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsValid; + +// Function Engine.KismetInputLibrary.Key_IsVectorAxis +// 0x0020 (0x0020 - 0x0000) +struct KismetInputLibrary_Key_IsVectorAxis final +{ +public: + struct FKey Key; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_Key_IsVectorAxis; + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsAltDown +// 0x0002 (0x0002 - 0x0000) +struct KismetInputLibrary_ModifierKeysState_IsAltDown final +{ +public: + struct FSlateModifierKeysState KeysState; // 0x0000(0x0001)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_ModifierKeysState_IsAltDown; + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsCommandDown +// 0x0002 (0x0002 - 0x0000) +struct KismetInputLibrary_ModifierKeysState_IsCommandDown final +{ +public: + struct FSlateModifierKeysState KeysState; // 0x0000(0x0001)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_ModifierKeysState_IsCommandDown; + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsControlDown +// 0x0002 (0x0002 - 0x0000) +struct KismetInputLibrary_ModifierKeysState_IsControlDown final +{ +public: + struct FSlateModifierKeysState KeysState; // 0x0000(0x0001)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_ModifierKeysState_IsControlDown; + +// Function Engine.KismetInputLibrary.ModifierKeysState_IsShiftDown +// 0x0002 (0x0002 - 0x0000) +struct KismetInputLibrary_ModifierKeysState_IsShiftDown final +{ +public: + struct FSlateModifierKeysState KeysState; // 0x0000(0x0001)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_ModifierKeysState_IsShiftDown; + +// Function Engine.KismetInputLibrary.PointerEvent_GetCursorDelta +// 0x0088 (0x0088 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetCursorDelta final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0078(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_PointerEvent_GetCursorDelta; + +// Function Engine.KismetInputLibrary.PointerEvent_GetEffectingButton +// 0x0090 (0x0090 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetEffectingButton final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FKey ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_PointerEvent_GetEffectingButton; + +// Function Engine.KismetInputLibrary.PointerEvent_GetGestureDelta +// 0x0088 (0x0088 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetGestureDelta final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0078(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_PointerEvent_GetGestureDelta; + +// Function Engine.KismetInputLibrary.PointerEvent_GetGestureType +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetGestureType final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + ESlateGesture ReturnValue; // 0x0078(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_GetGestureType; + +// Function Engine.KismetInputLibrary.PointerEvent_GetLastScreenSpacePosition +// 0x0088 (0x0088 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0078(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_PointerEvent_GetLastScreenSpacePosition; + +// Function Engine.KismetInputLibrary.PointerEvent_GetPointerIndex +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetPointerIndex final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0078(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_GetPointerIndex; + +// Function Engine.KismetInputLibrary.PointerEvent_GetScreenSpacePosition +// 0x0088 (0x0088 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetScreenSpacePosition final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0078(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInputLibrary_PointerEvent_GetScreenSpacePosition; + +// Function Engine.KismetInputLibrary.PointerEvent_GetTouchpadIndex +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetTouchpadIndex final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0078(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_GetTouchpadIndex; + +// Function Engine.KismetInputLibrary.PointerEvent_GetUserIndex +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetUserIndex final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0078(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_GetUserIndex; + +// Function Engine.KismetInputLibrary.PointerEvent_GetWheelDelta +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_GetWheelDelta final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0078(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_GetWheelDelta; + +// Function Engine.KismetInputLibrary.PointerEvent_IsMouseButtonDown +// 0x0098 (0x0098 - 0x0000) +struct KismetInputLibrary_PointerEvent_IsMouseButtonDown final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FKey MouseButton; // 0x0078(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0090(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_IsMouseButtonDown; + +// Function Engine.KismetInputLibrary.PointerEvent_IsTouchEvent +// 0x0080 (0x0080 - 0x0000) +struct KismetInputLibrary_PointerEvent_IsTouchEvent final +{ +public: + struct FPointerEvent Input; // 0x0000(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0078(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInputLibrary_PointerEvent_IsTouchEvent; + +// Function Engine.PlanarReflection.OnInterpToggle +// 0x0001 (0x0001 - 0x0000) +struct PlanarReflection_OnInterpToggle final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlanarReflection_OnInterpToggle; + +// Function Engine.ChildActorComponent.OnChildActorDestroyed +// 0x0008 (0x0008 - 0x0000) +struct ChildActorComponent_OnChildActorDestroyed final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ChildActorComponent_OnChildActorDestroyed; + +// Function Engine.ChildActorComponent.SetChildActorClass +// 0x0008 (0x0008 - 0x0000) +struct ChildActorComponent_SetChildActorClass final +{ +public: + TSubclassOf InClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ChildActorComponent_SetChildActorClass; + +// Function Engine.BlueprintTypeConversions.ConvertArrayType +// 0x0020 (0x0020 - 0x0000) +struct BlueprintTypeConversions_ConvertArrayType final +{ +public: + TArray inArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertArrayType; + +// Function Engine.BlueprintTypeConversions.ConvertFBox2dToFBox2f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFBox2dToFBox2f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFBox2dToFBox2f; + +// Function Engine.BlueprintTypeConversions.ConvertFBox2fToFBox2d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFBox2fToFBox2d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFBox2fToFBox2d; + +// Function Engine.BlueprintTypeConversions.ConvertFMatrix44dToFMatrix44f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFMatrix44dToFMatrix44f; + +// Function Engine.BlueprintTypeConversions.ConvertFMatrix44fToFMatrix44d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFMatrix44fToFMatrix44d; + +// Function Engine.BlueprintTypeConversions.ConvertFPlane4dToFPlane4f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFPlane4dToFPlane4f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFPlane4dToFPlane4f; + +// Function Engine.BlueprintTypeConversions.ConvertFPlane4fToFPlane4d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFPlane4fToFPlane4d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFPlane4fToFPlane4d; + +// Function Engine.BlueprintTypeConversions.ConvertFQuat4dToFQuat4f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFQuat4dToFQuat4f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFQuat4dToFQuat4f; + +// Function Engine.BlueprintTypeConversions.ConvertFQuat4fToFQuat4d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFQuat4fToFQuat4d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFQuat4fToFQuat4d; + +// Function Engine.BlueprintTypeConversions.ConvertFRotator3dToFRotator3f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFRotator3dToFRotator3f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFRotator3dToFRotator3f; + +// Function Engine.BlueprintTypeConversions.ConvertFRotator3fToFRotator3d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFRotator3fToFRotator3d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFRotator3fToFRotator3d; + +// Function Engine.BlueprintTypeConversions.ConvertFTransform3dToFTransform3f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFTransform3dToFTransform3f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFTransform3dToFTransform3f; + +// Function Engine.BlueprintTypeConversions.ConvertFTransform3fToFTransform3d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFTransform3fToFTransform3d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFTransform3fToFTransform3d; + +// Function Engine.BlueprintTypeConversions.ConvertFVector2dToFVector2f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector2dToFVector2f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector2dToFVector2f; + +// Function Engine.BlueprintTypeConversions.ConvertFVector2fToFVector2d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector2fToFVector2d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector2fToFVector2d; + +// Function Engine.BlueprintTypeConversions.ConvertFVector3dToFVector3f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector3dToFVector3f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector3dToFVector3f; + +// Function Engine.BlueprintTypeConversions.ConvertFVector3fToFVector3d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector3fToFVector3d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector3fToFVector3d; + +// Function Engine.BlueprintTypeConversions.ConvertFVector4dToFVector4f +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector4dToFVector4f final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector4dToFVector4f; + +// Function Engine.BlueprintTypeConversions.ConvertFVector4fToFVector4d +// 0x0008 (0x0008 - 0x0000) +struct BlueprintTypeConversions_ConvertFVector4fToFVector4d final +{ +public: + int32 InFromData; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertFVector4fToFVector4d; + +// Function Engine.BlueprintTypeConversions.ConvertMapType +// 0x00A0 (0x00A0 - 0x0000) +struct BlueprintTypeConversions_ConvertMapType final +{ +public: + TMap InMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TMap ReturnValue; // 0x0050(0x0050)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertMapType; + +// Function Engine.BlueprintTypeConversions.ConvertSetType +// 0x00A0 (0x00A0 - 0x0000) +struct BlueprintTypeConversions_ConvertSetType final +{ +public: + TSet Inset; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet ReturnValue; // 0x0050(0x0050)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//BlueprintTypeConversions_ConvertSetType; + +// Function Engine.LevelStreaming.CreateInstance +// 0x0018 (0x0018 - 0x0000) +struct LevelStreaming_CreateInstance final +{ +public: + class FString UniqueInstanceName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULevelStreaming* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_CreateInstance; + +// Function Engine.LevelStreaming.GetLevelScriptActor +// 0x0008 (0x0008 - 0x0000) +struct LevelStreaming_GetLevelScriptActor final +{ +public: + class ALevelScriptActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_GetLevelScriptActor; + +// Function Engine.LevelStreaming.SetIsRequestingUnloadAndRemoval +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_SetIsRequestingUnloadAndRemoval final +{ +public: + bool bInIsRequestingUnloadAndRemoval; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_SetIsRequestingUnloadAndRemoval; + +// Function Engine.LevelStreaming.SetLevelLODIndex +// 0x0004 (0x0004 - 0x0000) +struct LevelStreaming_SetLevelLODIndex final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_SetLevelLODIndex; + +// Function Engine.LevelStreaming.SetPriority +// 0x0004 (0x0004 - 0x0000) +struct LevelStreaming_SetPriority final +{ +public: + int32 NewPriority; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_SetPriority; + +// Function Engine.LevelStreaming.SetShouldBeLoaded +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_SetShouldBeLoaded final +{ +public: + bool bInShouldBeLoaded; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_SetShouldBeLoaded; + +// Function Engine.LevelStreaming.SetShouldBeVisible +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_SetShouldBeVisible final +{ +public: + bool bInShouldBeVisible; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_SetShouldBeVisible; + +// Function Engine.LevelStreaming.GetIsRequestingUnloadAndRemoval +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_GetIsRequestingUnloadAndRemoval final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_GetIsRequestingUnloadAndRemoval; + +// Function Engine.LevelStreaming.GetLoadedLevel +// 0x0008 (0x0008 - 0x0000) +struct LevelStreaming_GetLoadedLevel final +{ +public: + class ULevel* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_GetLoadedLevel; + +// Function Engine.LevelStreaming.GetWorldAssetPackageFName +// 0x0008 (0x0008 - 0x0000) +struct LevelStreaming_GetWorldAssetPackageFName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_GetWorldAssetPackageFName; + +// Function Engine.LevelStreaming.IsLevelLoaded +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_IsLevelLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_IsLevelLoaded; + +// Function Engine.LevelStreaming.IsLevelVisible +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_IsLevelVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_IsLevelVisible; + +// Function Engine.LevelStreaming.IsStreamingStatePending +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_IsStreamingStatePending final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_IsStreamingStatePending; + +// Function Engine.LevelStreaming.ShouldBeLoaded +// 0x0001 (0x0001 - 0x0000) +struct LevelStreaming_ShouldBeLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreaming_ShouldBeLoaded; + +// Function Engine.AutoRTFMTestObject.OnComponentPhysicsStateChanged +// 0x0010 (0x0010 - 0x0000) +struct AutoRTFMTestObject_OnComponentPhysicsStateChanged final +{ +public: + class UPrimitiveComponent* ChangedComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EComponentPhysicsStateChange StateChange; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AutoRTFMTestObject_OnComponentPhysicsStateChanged; + +// Function Engine.GameInstance.DebugCreatePlayer +// 0x0004 (0x0004 - 0x0000) +struct GameInstance_DebugCreatePlayer final +{ +public: + int32 ControllerId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameInstance_DebugCreatePlayer; + +// Function Engine.GameInstance.DebugRemovePlayer +// 0x0004 (0x0004 - 0x0000) +struct GameInstance_DebugRemovePlayer final +{ +public: + int32 ControllerId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameInstance_DebugRemovePlayer; + +// Function Engine.GameInstance.HandleNetworkError +// 0x0002 (0x0002 - 0x0000) +struct GameInstance_HandleNetworkError final +{ +public: + ENetworkFailure FailureType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsServer; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameInstance_HandleNetworkError; + +// Function Engine.GameInstance.HandleTravelError +// 0x0001 (0x0001 - 0x0000) +struct GameInstance_HandleTravelError final +{ +public: + ETravelFailure FailureType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameInstance_HandleTravelError; + +// Function Engine.ChaosBlueprintLibrary.GetEventRelayFromContext +// 0x0010 (0x0010 - 0x0000) +struct ChaosBlueprintLibrary_GetEventRelayFromContext final +{ +public: + class UObject* ContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UChaosEventRelay* ReturnValue; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ChaosBlueprintLibrary_GetEventRelayFromContext; + +// Function Engine.TypedElementCommonActions.CopyNormalizedElements +// 0x0018 (0x0018 - 0x0000) +struct TypedElementCommonActions_CopyNormalizedElements final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_CopyNormalizedElements; + +// Function Engine.TypedElementCommonActions.CopyNormalizedElementsToString +// 0x0028 (0x0028 - 0x0000) +struct TypedElementCommonActions_CopyNormalizedElementsToString final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString OutputString; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_CopyNormalizedElementsToString; + +// Function Engine.TypedElementCommonActions.CopySelectedElements +// 0x0010 (0x0010 - 0x0000) +struct TypedElementCommonActions_CopySelectedElements final +{ +public: + class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_CopySelectedElements; + +// Function Engine.TypedElementCommonActions.CopySelectedElementsToString +// 0x0020 (0x0020 - 0x0000) +struct TypedElementCommonActions_CopySelectedElementsToString final +{ +public: + class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutputString; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_CopySelectedElementsToString; + +// Function Engine.TypedElementCommonActions.DeleteNormalizedElements +// 0x0028 (0x0028 - 0x0000) +struct TypedElementCommonActions_DeleteNormalizedElements final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTypedElementSelectionSet* InSelectionSet; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementDeletionOptions DeletionOptions; // 0x0020(0x0003)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0023(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_DeleteNormalizedElements; + +// Function Engine.TypedElementCommonActions.DeleteSelectedElements +// 0x0018 (0x0018 - 0x0000) +struct TypedElementCommonActions_DeleteSelectedElements final +{ +public: + class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementDeletionOptions DeletionOptions; // 0x0010(0x0003)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0013(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TypedElementCommonActions_DeleteSelectedElements; + +// Function Engine.TypedElementCommonActions.DuplicateNormalizedElements +// 0x0040 (0x0040 - 0x0000) +struct TypedElementCommonActions_DuplicateNormalizedElements final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocationOffset; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_DuplicateNormalizedElements; + +// Function Engine.TypedElementCommonActions.K2_DuplicateSelectedElements +// 0x0038 (0x0038 - 0x0000) +struct TypedElementCommonActions_K2_DuplicateSelectedElements final +{ +public: + const class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocationOffset; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_K2_DuplicateSelectedElements; + +// Function Engine.TypedElementCommonActions.K2_PasteElements +// 0x0098 (0x0098 - 0x0000) +struct TypedElementCommonActions_K2_PasteElements final +{ +public: + class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementPasteOptions PasteOption; // 0x0010(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0088(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_K2_PasteElements; + +// Function Engine.TypedElementCommonActions.K2_PasteNormalizedElements +// 0x00A0 (0x00A0 - 0x0000) +struct TypedElementCommonActions_K2_PasteNormalizedElements final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementPasteOptions PasteOption; // 0x0018(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0090(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_K2_PasteNormalizedElements; + +// Function Engine.TypedElementCommonActions.PasteElementsFromString +// 0x00A8 (0x00A8 - 0x0000) +struct TypedElementCommonActions_PasteElementsFromString final +{ +public: + class UTypedElementSelectionSet* SelectionSet; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementPasteOptions PasteOption; // 0x0010(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString InputString; // 0x0088(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0098(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_PasteElementsFromString; + +// Function Engine.TypedElementCommonActions.PasteNormalizedElementsFromString +// 0x00B0 (0x00B0 - 0x0000) +struct TypedElementCommonActions_PasteNormalizedElementsFromString final +{ +public: + struct FScriptTypedElementListProxy ElementList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTypedElementPasteOptions PasteOption; // 0x0018(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString InputString; // 0x0090(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x00A0(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//TypedElementCommonActions_PasteNormalizedElementsFromString; + +// Function Engine.PhysicsSettings.GetPhysicsHistoryCount +// 0x0004 (0x0004 - 0x0000) +struct PhysicsSettings_GetPhysicsHistoryCount final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsSettings_GetPhysicsHistoryCount; + +// Function Engine.CurveBase.GetTimeRange +// 0x0008 (0x0008 - 0x0000) +struct CurveBase_GetTimeRange final +{ +public: + float MinTime; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxTime; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveBase_GetTimeRange; + +// Function Engine.CurveBase.GetValueRange +// 0x0008 (0x0008 - 0x0000) +struct CurveBase_GetValueRange final +{ +public: + float MinValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveBase_GetValueRange; + +// Function Engine.Texture2D.Blueprint_GetCPUCopy +// 0x0008 (0x0008 - 0x0000) +struct Texture2D_Blueprint_GetCPUCopy final +{ +public: + struct FSharedImageConstRefBlueprint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//Texture2D_Blueprint_GetCPUCopy; + +// Function Engine.Texture2D.Blueprint_GetSizeX +// 0x0004 (0x0004 - 0x0000) +struct Texture2D_Blueprint_GetSizeX final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Texture2D_Blueprint_GetSizeX; + +// Function Engine.Texture2D.Blueprint_GetSizeY +// 0x0004 (0x0004 - 0x0000) +struct Texture2D_Blueprint_GetSizeY final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Texture2D_Blueprint_GetSizeY; + +// Function Engine.CurveLinearColorAtlas.GetCurvePosition +// 0x0010 (0x0010 - 0x0000) +struct CurveLinearColorAtlas_GetCurvePosition final +{ +public: + class UCurveLinearColor* InCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float position; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CurveLinearColorAtlas_GetCurvePosition; + +// Function Engine.NavMovementComponent.GetVelocityForNavMovement +// 0x0018 (0x0018 - 0x0000) +struct NavMovementComponent_GetVelocityForNavMovement final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_GetVelocityForNavMovement; + +// Function Engine.NavMovementComponent.IsCrouching +// 0x0001 (0x0001 - 0x0000) +struct NavMovementComponent_IsCrouching final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_IsCrouching; + +// Function Engine.NavMovementComponent.IsFalling +// 0x0001 (0x0001 - 0x0000) +struct NavMovementComponent_IsFalling final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_IsFalling; + +// Function Engine.NavMovementComponent.IsFlying +// 0x0001 (0x0001 - 0x0000) +struct NavMovementComponent_IsFlying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_IsFlying; + +// Function Engine.NavMovementComponent.IsMovingOnGround +// 0x0001 (0x0001 - 0x0000) +struct NavMovementComponent_IsMovingOnGround final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_IsMovingOnGround; + +// Function Engine.NavMovementComponent.IsSwimming +// 0x0001 (0x0001 - 0x0000) +struct NavMovementComponent_IsSwimming final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementComponent_IsSwimming; + +// Function Engine.PawnMovementComponent.AddInputVector +// 0x0020 (0x0020 - 0x0000) +struct PawnMovementComponent_AddInputVector final +{ +public: + struct FVector WorldVector; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForce; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PawnMovementComponent_AddInputVector; + +// Function Engine.PawnMovementComponent.ConsumeInputVector +// 0x0018 (0x0018 - 0x0000) +struct PawnMovementComponent_ConsumeInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_ConsumeInputVector; + +// Function Engine.PawnMovementComponent.MulticastAsyncPhysicsStateAction +// 0x0050 (0x0050 - 0x0000) +struct PawnMovementComponent_MulticastAsyncPhysicsStateAction final +{ +public: + const class UPrimitiveComponent* ActionComponent; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAsyncPhysicsTimestamp Timestamp; // 0x0010(0x0008)(ConstParm, Parm, NoDestructor, NativeAccessSpecifierPublic) + EPhysicsStateAction ActionType; // 0x0018(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ActionDatas; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ActionPosition; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_MulticastAsyncPhysicsStateAction; + +// Function Engine.PawnMovementComponent.ServerAsyncPhysicsStateAction +// 0x0050 (0x0050 - 0x0000) +struct PawnMovementComponent_ServerAsyncPhysicsStateAction final +{ +public: + const class UPrimitiveComponent* ActionComponent; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAsyncPhysicsTimestamp Timestamp; // 0x0010(0x0008)(ConstParm, Parm, NoDestructor, NativeAccessSpecifierPublic) + EPhysicsStateAction ActionType; // 0x0018(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ActionDatas; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ActionPosition; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_ServerAsyncPhysicsStateAction; + +// Function Engine.PawnMovementComponent.GetLastInputVector +// 0x0018 (0x0018 - 0x0000) +struct PawnMovementComponent_GetLastInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_GetLastInputVector; + +// Function Engine.PawnMovementComponent.GetPawnOwner +// 0x0008 (0x0008 - 0x0000) +struct PawnMovementComponent_GetPawnOwner final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_GetPawnOwner; + +// Function Engine.PawnMovementComponent.GetPendingInputVector +// 0x0018 (0x0018 - 0x0000) +struct PawnMovementComponent_GetPendingInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_GetPendingInputVector; + +// Function Engine.PawnMovementComponent.IsMoveInputIgnored +// 0x0001 (0x0001 - 0x0000) +struct PawnMovementComponent_IsMoveInputIgnored final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnMovementComponent_IsMoveInputIgnored; + +// Function Engine.Emitter.OnParticleSystemFinished +// 0x0008 (0x0008 - 0x0000) +struct Emitter_OnParticleSystemFinished final +{ +public: + class UParticleSystemComponent* FinishedComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_OnParticleSystemFinished; + +// Function Engine.Emitter.SetActorParameter +// 0x0010 (0x0010 - 0x0000) +struct Emitter_SetActorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* Param; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetActorParameter; + +// Function Engine.Emitter.SetColorParameter +// 0x0018 (0x0018 - 0x0000) +struct Emitter_SetColorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Param; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetColorParameter; + +// Function Engine.Emitter.SetFloatParameter +// 0x000C (0x000C - 0x0000) +struct Emitter_SetFloatParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Param; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetFloatParameter; + +// Function Engine.Emitter.SetMaterialParameter +// 0x0010 (0x0010 - 0x0000) +struct Emitter_SetMaterialParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Param; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetMaterialParameter; + +// Function Engine.Emitter.SetTemplate +// 0x0008 (0x0008 - 0x0000) +struct Emitter_SetTemplate final +{ +public: + class UParticleSystem* NewTemplate; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetTemplate; + +// Function Engine.Emitter.SetVectorParameter +// 0x0020 (0x0020 - 0x0000) +struct Emitter_SetVectorParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Param; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_SetVectorParameter; + +// Function Engine.Emitter.IsActive +// 0x0001 (0x0001 - 0x0000) +struct Emitter_IsActive final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Emitter_IsActive; + +// Function Engine.AsyncActionHandleSaveGame.AsyncLoadGameFromSlot +// 0x0028 (0x0028 - 0x0000) +struct AsyncActionHandleSaveGame_AsyncLoadGameFromSlot final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SlotName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0018(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAsyncActionHandleSaveGame* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionHandleSaveGame_AsyncLoadGameFromSlot; + +// Function Engine.AsyncActionHandleSaveGame.AsyncSaveGameToSlot +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionHandleSaveGame_AsyncSaveGameToSlot final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USaveGame* SaveGameObject_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SlotName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0020(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAsyncActionHandleSaveGame* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionHandleSaveGame_AsyncSaveGameToSlot; + +// Function Engine.InputDeviceProperty.ApplyDeviceProperty +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceProperty_ApplyDeviceProperty final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId DeviceID; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceProperty_ApplyDeviceProperty; + +// Function Engine.InputDeviceProperty.EvaluateDeviceProperty +// 0x0010 (0x0010 - 0x0000) +struct InputDeviceProperty_EvaluateDeviceProperty final +{ +public: + struct FPlatformUserId PlatformUser; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId DeviceID; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0008(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x000C(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceProperty_EvaluateDeviceProperty; + +// Function Engine.InputDeviceProperty.ResetDeviceProperty +// 0x000C (0x000C - 0x0000) +struct InputDeviceProperty_ResetDeviceProperty final +{ +public: + struct FPlatformUserId PlatformUser; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId DeviceID; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceReset; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceProperty_ResetDeviceProperty; + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringColor +// 0x0010 (0x0010 - 0x0000) +struct ExponentialHeightFogComponent_SetDirectionalInscatteringColor final +{ +public: + struct FLinearColor Value; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetDirectionalInscatteringColor; + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringExponent +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetDirectionalInscatteringExponent final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetDirectionalInscatteringExponent; + +// Function Engine.ExponentialHeightFogComponent.SetDirectionalInscatteringStartDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetDirectionalInscatteringStartDistance; + +// Function Engine.ExponentialHeightFogComponent.SetEndDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetEndDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetEndDistance; + +// Function Engine.ExponentialHeightFogComponent.SetFogCutoffDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetFogCutoffDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFogCutoffDistance; + +// Function Engine.ExponentialHeightFogComponent.SetFogDensity +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetFogDensity final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFogDensity; + +// Function Engine.ExponentialHeightFogComponent.SetFogHeightFalloff +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetFogHeightFalloff final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFogHeightFalloff; + +// Function Engine.ExponentialHeightFogComponent.SetFogInscatteringColor +// 0x0010 (0x0010 - 0x0000) +struct ExponentialHeightFogComponent_SetFogInscatteringColor final +{ +public: + struct FLinearColor Value; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFogInscatteringColor; + +// Function Engine.ExponentialHeightFogComponent.SetFogMaxOpacity +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetFogMaxOpacity final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFogMaxOpacity; + +// Function Engine.ExponentialHeightFogComponent.SetFullyDirectionalInscatteringColorDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetFullyDirectionalInscatteringColorDistance; + +// Function Engine.ExponentialHeightFogComponent.SetHoldout +// 0x0001 (0x0001 - 0x0000) +struct ExponentialHeightFogComponent_SetHoldout final +{ +public: + bool bNewHoldout; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetHoldout; + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringColorCubemap +// 0x0008 (0x0008 - 0x0000) +struct ExponentialHeightFogComponent_SetInscatteringColorCubemap final +{ +public: + class UTextureCube* Value; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetInscatteringColorCubemap; + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringColorCubemapAngle +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetInscatteringColorCubemapAngle; + +// Function Engine.ExponentialHeightFogComponent.SetInscatteringTextureTint +// 0x0010 (0x0010 - 0x0000) +struct ExponentialHeightFogComponent_SetInscatteringTextureTint final +{ +public: + struct FLinearColor Value; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetInscatteringTextureTint; + +// Function Engine.ExponentialHeightFogComponent.SetNonDirectionalInscatteringColorDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetNonDirectionalInscatteringColorDistance; + +// Function Engine.ExponentialHeightFogComponent.SetRenderInMainPass +// 0x0001 (0x0001 - 0x0000) +struct ExponentialHeightFogComponent_SetRenderInMainPass final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetRenderInMainPass; + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogData +// 0x000C (0x000C - 0x0000) +struct ExponentialHeightFogComponent_SetSecondFogData final +{ +public: + struct FExponentialHeightFogData NewValue; // 0x0000(0x000C)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetSecondFogData; + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogDensity +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetSecondFogDensity final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetSecondFogDensity; + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogHeightFalloff +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetSecondFogHeightFalloff final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetSecondFogHeightFalloff; + +// Function Engine.ExponentialHeightFogComponent.SetSecondFogHeightOffset +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetSecondFogHeightOffset final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetSecondFogHeightOffset; + +// Function Engine.ExponentialHeightFogComponent.SetStartDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetStartDistance final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetStartDistance; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFog +// 0x0001 (0x0001 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFog final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFog; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogAlbedo +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogAlbedo final +{ +public: + struct FColor NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogAlbedo; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogDistance; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogEmissive +// 0x0010 (0x0010 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogEmissive final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogEmissive; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogExtinctionScale +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogExtinctionScale; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogNearFadeInDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogNearFadeInDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogNearFadeInDistance; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogScatteringDistribution +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogScatteringDistribution; + +// Function Engine.ExponentialHeightFogComponent.SetVolumetricFogStartDistance +// 0x0004 (0x0004 - 0x0000) +struct ExponentialHeightFogComponent_SetVolumetricFogStartDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ExponentialHeightFogComponent_SetVolumetricFogStartDistance; + +// Function Engine.Exporter.RunAssetExportTask +// 0x0010 (0x0010 - 0x0000) +struct Exporter_RunAssetExportTask final +{ +public: + class UAssetExportTask* Task; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Exporter_RunAssetExportTask; + +// Function Engine.Exporter.RunAssetExportTasks +// 0x0018 (0x0018 - 0x0000) +struct Exporter_RunAssetExportTasks final +{ +public: + TArray ExportTasks; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Exporter_RunAssetExportTasks; + +// Function Engine.Exporter.ScriptRunAssetExportTask +// 0x0010 (0x0010 - 0x0000) +struct Exporter_ScriptRunAssetExportTask final +{ +public: + class UAssetExportTask* Task; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Exporter_ScriptRunAssetExportTask; + +// Function Engine.DataLayerAsset.GetDebugColor +// 0x0004 (0x0004 - 0x0000) +struct DataLayerAsset_GetDebugColor final +{ +public: + struct FColor ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerAsset_GetDebugColor; + +// Function Engine.DataLayerAsset.GetType +// 0x0001 (0x0001 - 0x0000) +struct DataLayerAsset_GetType final +{ +public: + EDataLayerType ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerAsset_GetType; + +// Function Engine.DataLayerAsset.IsClientOnly +// 0x0001 (0x0001 - 0x0000) +struct DataLayerAsset_IsClientOnly final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerAsset_IsClientOnly; + +// Function Engine.DataLayerAsset.IsRuntime +// 0x0001 (0x0001 - 0x0000) +struct DataLayerAsset_IsRuntime final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerAsset_IsRuntime; + +// Function Engine.DataLayerAsset.IsServerOnly +// 0x0001 (0x0001 - 0x0000) +struct DataLayerAsset_IsServerOnly final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerAsset_IsServerOnly; + +// Function Engine.LevelScriptActor.RemoteEvent +// 0x000C (0x000C - 0x0000) +struct LevelScriptActor_RemoteEvent final +{ +public: + class FName EventName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//LevelScriptActor_RemoteEvent; + +// Function Engine.LevelScriptActor.SetCinematicMode +// 0x0005 (0x0005 - 0x0000) +struct LevelScriptActor_SetCinematicMode final +{ +public: + bool bCinematicMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHidePlayer; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsHUD; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsMovement; // 0x0003(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsTurning; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelScriptActor_SetCinematicMode; + +// Function Engine.LevelScriptActor.WorldOriginLocationChanged +// 0x0018 (0x0018 - 0x0000) +struct LevelScriptActor_WorldOriginLocationChanged final +{ +public: + struct FIntVector OldOriginLocation; // 0x0000(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector NewOriginLocation; // 0x000C(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelScriptActor_WorldOriginLocationChanged; + +// Function Engine.FieldNotificationLibrary.BroadcastFieldsValueChanged +// 0x0018 (0x0018 - 0x0000) +struct FieldNotificationLibrary_BroadcastFieldsValueChanged final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray FieldIds; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//FieldNotificationLibrary_BroadcastFieldsValueChanged; + +// Function Engine.FieldNotificationLibrary.BroadcastFieldValueChanged +// 0x0010 (0x0010 - 0x0000) +struct FieldNotificationLibrary_BroadcastFieldValueChanged final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFieldNotificationId FieldId; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FieldNotificationLibrary_BroadcastFieldValueChanged; + +// Function Engine.FieldNotificationLibrary.SetPropertyValueAndBroadcast +// 0x0028 (0x0028 - 0x0000) +struct FieldNotificationLibrary_SetPropertyValueAndBroadcast final +{ +public: + bool NewValueByRef; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 OldValue; // 0x0004(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewValue; // 0x0008(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* Object; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* NetOwner; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasLocalRepNotify; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldFlushDormancyOnSet; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsNetProperty; // 0x0022(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0023(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FieldNotificationLibrary_SetPropertyValueAndBroadcast; + +// Function Engine.FieldNotificationLibrary.SetPropertyValueAndBroadcastFields +// 0x0040 (0x0040 - 0x0000) +struct FieldNotificationLibrary_SetPropertyValueAndBroadcastFields final +{ +public: + bool NewValueByRef; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 OldValue; // 0x0004(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewValue; // 0x0008(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* Object; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* NetOwner; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasLocalRepNotify; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldFlushDormancyOnSet; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsNetProperty; // 0x0022(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23[0x5]; // 0x0023(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ExtraFieldIds; // 0x0028(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0038(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FieldNotificationLibrary_SetPropertyValueAndBroadcastFields; + +// Function Engine.LightWeightInstanceManager.OnSpawnedActorDestroyed +// 0x0008 (0x0008 - 0x0000) +struct LightWeightInstanceManager_OnSpawnedActorDestroyed final +{ +public: + class AActor* DestroyedActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightWeightInstanceManager_OnSpawnedActorDestroyed; + +// Function Engine.SpotLight.SetInnerConeAngle +// 0x0004 (0x0004 - 0x0000) +struct SpotLight_SetInnerConeAngle final +{ +public: + float NewInnerConeAngle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpotLight_SetInnerConeAngle; + +// Function Engine.SpotLight.SetOuterConeAngle +// 0x0004 (0x0004 - 0x0000) +struct SpotLight_SetOuterConeAngle final +{ +public: + float NewOuterConeAngle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpotLight_SetOuterConeAngle; + +// Function Engine.AnimationDataController.AddAttribute +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataController_AddAttribute final +{ +public: + struct FAnimationAttributeIdentifier AttributeIdentifier; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0041(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x6]; // 0x0042(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_AddAttribute; + +// Function Engine.AnimationDataController.AddBoneCurve +// 0x000C (0x000C - 0x0000) +struct AnimationDataController_AddBoneCurve final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_AddBoneCurve; + +// Function Engine.AnimationDataController.AddBoneTrack +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_AddBoneTrack final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_AddBoneTrack; + +// Function Engine.AnimationDataController.AddCurve +// 0x0014 (0x0014 - 0x0000) +struct AnimationDataController_AddCurve final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CurveFlags; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_AddCurve; + +// Function Engine.AnimationDataController.CloseBracket +// 0x0001 (0x0001 - 0x0000) +struct AnimationDataController_CloseBracket final +{ +public: + bool bShouldTransact; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_CloseBracket; + +// Function Engine.AnimationDataController.DuplicateAttribute +// 0x0088 (0x0088 - 0x0000) +struct AnimationDataController_DuplicateAttribute final +{ +public: + struct FAnimationAttributeIdentifier AttributeIdentifier; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimationAttributeIdentifier NewAttributeIdentifier; // 0x0040(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0081(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_82[0x6]; // 0x0082(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_DuplicateAttribute; + +// Function Engine.AnimationDataController.DuplicateCurve +// 0x001C (0x001C - 0x0000) +struct AnimationDataController_DuplicateCurve final +{ +public: + struct FAnimationCurveIdentifier CopyCurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimationCurveIdentifier NewCurveId; // 0x000C(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_DuplicateCurve; + +// Function Engine.AnimationDataController.FindOrAddCurveNamesOnSkeleton +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_FindOrAddCurveNamesOnSkeleton final +{ +public: + class USkeleton* Skeleton; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERawCurveTrackTypes SupportedCurveType; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_FindOrAddCurveNamesOnSkeleton; + +// Function Engine.AnimationDataController.InsertBoneTrack +// 0x0014 (0x0014 - 0x0000) +struct AnimationDataController_InsertBoneTrack final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DesiredIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_InsertBoneTrack; + +// Function Engine.AnimationDataController.OpenBracket +// 0x0018 (0x0018 - 0x0000) +struct AnimationDataController_OpenBracket final +{ +public: + class FText InTitle; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_OpenBracket; + +// Function Engine.AnimationDataController.RemoveAllAttributes +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataController_RemoveAllAttributes final +{ +public: + bool bShouldTransact; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_RemoveAllAttributes; + +// Function Engine.AnimationDataController.RemoveAllAttributesForBone +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_RemoveAllAttributesForBone final +{ +public: + class FName BoneName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_RemoveAllAttributesForBone; + +// Function Engine.AnimationDataController.RemoveAllBoneTracks +// 0x0001 (0x0001 - 0x0000) +struct AnimationDataController_RemoveAllBoneTracks final +{ +public: + bool bShouldTransact; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_RemoveAllBoneTracks; + +// Function Engine.AnimationDataController.RemoveAllCurvesOfType +// 0x0002 (0x0002 - 0x0000) +struct AnimationDataController_RemoveAllCurvesOfType final +{ +public: + ERawCurveTrackTypes SupportedCurveType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_RemoveAllCurvesOfType; + +// Function Engine.AnimationDataController.RemoveAttribute +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataController_RemoveAttribute final +{ +public: + struct FAnimationAttributeIdentifier AttributeIdentifier; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0041(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x6]; // 0x0042(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveAttribute; + +// Function Engine.AnimationDataController.RemoveAttributeKey +// 0x0048 (0x0048 - 0x0000) +struct AnimationDataController_RemoveAttributeKey final +{ +public: + struct FAnimationAttributeIdentifier AttributeIdentifier; // 0x0000(0x0040)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0044(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0045(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_46[0x2]; // 0x0046(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveAttributeKey; + +// Function Engine.AnimationDataController.RemoveBoneTrack +// 0x000C (0x000C - 0x0000) +struct AnimationDataController_RemoveBoneTrack final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveBoneTrack; + +// Function Engine.AnimationDataController.RemoveCurve +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_RemoveCurve final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveCurve; + +// Function Engine.AnimationDataController.RemoveCurveKey +// 0x0014 (0x0014 - 0x0000) +struct AnimationDataController_RemoveCurveKey final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveCurveKey; + +// Function Engine.AnimationDataController.RemoveTransformCurveKey +// 0x0014 (0x0014 - 0x0000) +struct AnimationDataController_RemoveTransformCurveKey final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RemoveTransformCurveKey; + +// Function Engine.AnimationDataController.RenameCurve +// 0x001C (0x001C - 0x0000) +struct AnimationDataController_RenameCurve final +{ +public: + struct FAnimationCurveIdentifier CurveToRenameId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimationCurveIdentifier NewCurveId; // 0x000C(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_RenameCurve; + +// Function Engine.AnimationDataController.Resize +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_Resize final +{ +public: + float Length; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T1; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_Resize; + +// Function Engine.AnimationDataController.ResizeInFrames +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_ResizeInFrames final +{ +public: + struct FFrameNumber NewLengthInFrames; // 0x0000(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber T0; // 0x0004(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber T1; // 0x0008(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_ResizeInFrames; + +// Function Engine.AnimationDataController.ResizeNumberOfFrames +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_ResizeNumberOfFrames final +{ +public: + struct FFrameNumber NewLengthInFrames; // 0x0000(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber T0; // 0x0004(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber T1; // 0x0008(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_ResizeNumberOfFrames; + +// Function Engine.AnimationDataController.ResizePlayLength +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_ResizePlayLength final +{ +public: + float NewLength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T1; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_ResizePlayLength; + +// Function Engine.AnimationDataController.ScaleCurve +// 0x0018 (0x0018 - 0x0000) +struct AnimationDataController_ScaleCurve final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Origin; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Factor; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0015(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16[0x2]; // 0x0016(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_ScaleCurve; + +// Function Engine.AnimationDataController.SetBoneTrackKeys +// 0x0040 (0x0040 - 0x0000) +struct AnimationDataController_SetBoneTrackKeys final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PositionalKeys; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray RotationalKeys; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ScalingKeys; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0039(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetBoneTrackKeys; + +// Function Engine.AnimationDataController.SetCurveColor +// 0x0020 (0x0020 - 0x0000) +struct AnimationDataController_SetCurveColor final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x000C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001D(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetCurveColor; + +// Function Engine.AnimationDataController.SetCurveComment +// 0x0028 (0x0028 - 0x0000) +struct AnimationDataController_SetCurveComment final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Comment; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetCurveComment; + +// Function Engine.AnimationDataController.SetCurveFlag +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_SetCurveFlag final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimAssetCurveFlags Flag; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bState; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x000E(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000F(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_SetCurveFlag; + +// Function Engine.AnimationDataController.SetCurveFlags +// 0x0014 (0x0014 - 0x0000) +struct AnimationDataController_SetCurveFlags final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Flags_0; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetCurveFlags; + +// Function Engine.AnimationDataController.SetCurveKey +// 0x002C (0x002C - 0x0000) +struct AnimationDataController_SetCurveKey final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRichCurveKey Key; // 0x000C(0x001C)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0029(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetCurveKey; + +// Function Engine.AnimationDataController.SetCurveKeys +// 0x0028 (0x0028 - 0x0000) +struct AnimationDataController_SetCurveKeys final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CurveKeys; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetCurveKeys; + +// Function Engine.AnimationDataController.SetFrameRate +// 0x000C (0x000C - 0x0000) +struct AnimationDataController_SetFrameRate final +{ +public: + struct FFrameRate FrameRate; // 0x0000(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetFrameRate; + +// Function Engine.AnimationDataController.SetModel +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_SetModel final +{ +public: + TScriptInterface InModel; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_SetModel; + +// Function Engine.AnimationDataController.SetNumberOfFrames +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataController_SetNumberOfFrames final +{ +public: + struct FFrameNumber NewLengthInFrames; // 0x0000(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetNumberOfFrames; + +// Function Engine.AnimationDataController.SetPlayLength +// 0x0008 (0x0008 - 0x0000) +struct AnimationDataController_SetPlayLength final +{ +public: + float Length; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetPlayLength; + +// Function Engine.AnimationDataController.SetTransformCurveKey +// 0x0080 (0x0080 - 0x0000) +struct AnimationDataController_SetTransformCurveKey final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform Value; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0071(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_72[0xE]; // 0x0072(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetTransformCurveKey; + +// Function Engine.AnimationDataController.SetTransformCurveKeys +// 0x0038 (0x0038 - 0x0000) +struct AnimationDataController_SetTransformCurveKeys final +{ +public: + struct FAnimationCurveIdentifier CurveId; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TransformValues; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray TimeKeys; // 0x0020(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0031(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_SetTransformCurveKeys; + +// Function Engine.AnimationDataController.UpdateCurveNamesFromSkeleton +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_UpdateCurveNamesFromSkeleton final +{ +public: + const class USkeleton* Skeleton; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERawCurveTrackTypes SupportedCurveType; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldTransact; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationDataController_UpdateCurveNamesFromSkeleton; + +// Function Engine.AnimationDataController.GetModelInterface +// 0x0010 (0x0010 - 0x0000) +struct AnimationDataController_GetModelInterface final +{ +public: + TScriptInterface ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationDataController_GetModelInterface; + +// Function Engine.AudioComponent.AddModulationRouting +// 0x0058 (0x0058 - 0x0000) +struct AudioComponent_AddModulationRouting final +{ +public: + TSet Modulators; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EModulationDestination Destination; // 0x0050(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_AddModulationRouting; + +// Function Engine.AudioComponent.AdjustAttenuation +// 0x03D0 (0x03D0 - 0x0000) +struct AudioComponent_AdjustAttenuation final +{ +public: + struct FSoundAttenuationSettings InAttenuationSettings; // 0x0000(0x03D0)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AudioComponent_AdjustAttenuation; + +// Function Engine.AudioComponent.AdjustVolume +// 0x000C (0x000C - 0x0000) +struct AudioComponent_AdjustVolume final +{ +public: + float AdjustVolumeDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioFaderCurve FadeCurve; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_AdjustVolume; + +// Function Engine.AudioComponent.BP_GetAttenuationSettingsToApply +// 0x03D8 (0x03D8 - 0x0000) +struct AudioComponent_BP_GetAttenuationSettingsToApply final +{ +public: + struct FSoundAttenuationSettings OutAttenuationSettings; // 0x0000(0x03D0)(Parm, OutParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x03D0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D1[0x7]; // 0x03D1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_BP_GetAttenuationSettingsToApply; + +// Function Engine.AudioComponent.FadeIn +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_FadeIn final +{ +public: + float FadeInDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioFaderCurve FadeCurve; // 0x000C(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_FadeIn; + +// Function Engine.AudioComponent.FadeOut +// 0x000C (0x000C - 0x0000) +struct AudioComponent_FadeOut final +{ +public: + float FadeOutDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioFaderCurve FadeCurve; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_FadeOut; + +// Function Engine.AudioComponent.GetCookedEnvelopeData +// 0x0008 (0x0008 - 0x0000) +struct AudioComponent_GetCookedEnvelopeData final +{ +public: + float OutEnvelopeData; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_GetCookedEnvelopeData; + +// Function Engine.AudioComponent.GetCookedEnvelopeDataForAllPlayingSounds +// 0x0018 (0x0018 - 0x0000) +struct AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds final +{ +public: + TArray OutEnvelopeData; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_GetCookedEnvelopeDataForAllPlayingSounds; + +// Function Engine.AudioComponent.GetCookedFFTData +// 0x0028 (0x0028 - 0x0000) +struct AudioComponent_GetCookedFFTData final +{ +public: + TArray FrequenciesToGet; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutSoundWaveSpectralData; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_GetCookedFFTData; + +// Function Engine.AudioComponent.GetCookedFFTDataForAllPlayingSounds +// 0x0018 (0x0018 - 0x0000) +struct AudioComponent_GetCookedFFTDataForAllPlayingSounds final +{ +public: + TArray OutSoundWaveSpectralData; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_GetCookedFFTDataForAllPlayingSounds; + +// Function Engine.AudioComponent.GetModulators +// 0x0058 (0x0058 - 0x0000) +struct AudioComponent_GetModulators final +{ +public: + EModulationDestination Destination; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSet ReturnValue; // 0x0008(0x0050)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioComponent_GetModulators; + +// Function Engine.AudioComponent.Play +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_Play final +{ +public: + float StartTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_Play; + +// Function Engine.AudioComponent.PlayQuantized +// 0x0050 (0x0050 - 0x0000) +struct AudioComponent_PlayQuantized final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UQuartzClockHandle* InClockHandle; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuartzQuantizationBoundary InQuantizationBoundary; // 0x0010(0x0020)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TDelegate InDelegate; // 0x0030(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InStartTime; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InFadeInDuration; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InFadeVolumeLevel; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioFaderCurve InFadeCurve; // 0x004C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_PlayQuantized; + +// Function Engine.AudioComponent.RemoveModulationRouting +// 0x0058 (0x0058 - 0x0000) +struct AudioComponent_RemoveModulationRouting final +{ +public: + TSet Modulators; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EModulationDestination Destination; // 0x0050(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_RemoveModulationRouting; + +// Function Engine.AudioComponent.SetAttenuationOverrides +// 0x03D0 (0x03D0 - 0x0000) +struct AudioComponent_SetAttenuationOverrides final +{ +public: + struct FSoundAttenuationSettings InAttenuationOverrides; // 0x0000(0x03D0)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetAttenuationOverrides; + +// Function Engine.AudioComponent.SetAttenuationSettings +// 0x0008 (0x0008 - 0x0000) +struct AudioComponent_SetAttenuationSettings final +{ +public: + class USoundAttenuation* InAttenuationSettings; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetAttenuationSettings; + +// Function Engine.AudioComponent.SetAudioBusSendPostEffect +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetAudioBusSendPostEffect final +{ +public: + class UAudioBus* AudioBus; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AudioBusSendLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetAudioBusSendPostEffect; + +// Function Engine.AudioComponent.SetAudioBusSendPreEffect +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetAudioBusSendPreEffect final +{ +public: + class UAudioBus* AudioBus; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AudioBusSendLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetAudioBusSendPreEffect; + +// Function Engine.AudioComponent.SetBoolParameter +// 0x000C (0x000C - 0x0000) +struct AudioComponent_SetBoolParameter final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InBool; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetBoolParameter; + +// Function Engine.AudioComponent.SetFloatParameter +// 0x000C (0x000C - 0x0000) +struct AudioComponent_SetFloatParameter final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InFloat; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetFloatParameter; + +// Function Engine.AudioComponent.SetHighPassFilterEnabled +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetHighPassFilterEnabled final +{ +public: + bool InHighPassFilterEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetHighPassFilterEnabled; + +// Function Engine.AudioComponent.SetHighPassFilterFrequency +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_SetHighPassFilterFrequency final +{ +public: + float InHighPassFilterFrequency; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetHighPassFilterFrequency; + +// Function Engine.AudioComponent.SetIntParameter +// 0x000C (0x000C - 0x0000) +struct AudioComponent_SetIntParameter final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 inInt; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetIntParameter; + +// Function Engine.AudioComponent.SetLowPassFilterEnabled +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetLowPassFilterEnabled final +{ +public: + bool InLowPassFilterEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetLowPassFilterEnabled; + +// Function Engine.AudioComponent.SetLowPassFilterFrequency +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_SetLowPassFilterFrequency final +{ +public: + float InLowPassFilterFrequency; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetLowPassFilterFrequency; + +// Function Engine.AudioComponent.SetModulationRouting +// 0x0058 (0x0058 - 0x0000) +struct AudioComponent_SetModulationRouting final +{ +public: + TSet Modulators; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EModulationDestination Destination; // 0x0050(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EModulationRouting RoutingMethod; // 0x0051(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_52[0x6]; // 0x0052(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetModulationRouting; + +// Function Engine.AudioComponent.SetOutputToBusOnly +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetOutputToBusOnly final +{ +public: + bool bInOutputToBusOnly; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetOutputToBusOnly; + +// Function Engine.AudioComponent.SetOverrideAttenuation +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetOverrideAttenuation final +{ +public: + bool bInOverrideAttenuation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetOverrideAttenuation; + +// Function Engine.AudioComponent.SetPaused +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetPaused final +{ +public: + bool bPause; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetPaused; + +// Function Engine.AudioComponent.SetPitchMultiplier +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_SetPitchMultiplier final +{ +public: + float NewPitchMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetPitchMultiplier; + +// Function Engine.AudioComponent.SetSound +// 0x0008 (0x0008 - 0x0000) +struct AudioComponent_SetSound final +{ +public: + class USoundBase* NewSound; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetSound; + +// Function Engine.AudioComponent.SetSourceBusSendPostEffect +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetSourceBusSendPostEffect final +{ +public: + class USoundSourceBus* SoundSourceBus; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceBusSendLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetSourceBusSendPostEffect; + +// Function Engine.AudioComponent.SetSourceBusSendPreEffect +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetSourceBusSendPreEffect final +{ +public: + class USoundSourceBus* SoundSourceBus; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SourceBusSendLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetSourceBusSendPreEffect; + +// Function Engine.AudioComponent.SetSubmixSend +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetSubmixSend final +{ +public: + class USoundSubmixBase* Submix; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SendLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AudioComponent_SetSubmixSend; + +// Function Engine.AudioComponent.SetUISound +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_SetUISound final +{ +public: + bool bInUISound; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetUISound; + +// Function Engine.AudioComponent.SetVolumeMultiplier +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_SetVolumeMultiplier final +{ +public: + float NewVolumeMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetVolumeMultiplier; + +// Function Engine.AudioComponent.SetWaveParameter +// 0x0010 (0x0010 - 0x0000) +struct AudioComponent_SetWaveParameter final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundWave* InWave; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_SetWaveParameter; + +// Function Engine.AudioComponent.StopDelayed +// 0x0004 (0x0004 - 0x0000) +struct AudioComponent_StopDelayed final +{ +public: + float DelayTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_StopDelayed; + +// Function Engine.AudioComponent.GetPlayState +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_GetPlayState final +{ +public: + EAudioComponentPlayState ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_GetPlayState; + +// Function Engine.AudioComponent.HasCookedAmplitudeEnvelopeData +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_HasCookedAmplitudeEnvelopeData final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_HasCookedAmplitudeEnvelopeData; + +// Function Engine.AudioComponent.HasCookedFFTData +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_HasCookedFFTData final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_HasCookedFFTData; + +// Function Engine.AudioComponent.IsPlaying +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_IsPlaying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_IsPlaying; + +// Function Engine.AudioComponent.IsVirtualized +// 0x0001 (0x0001 - 0x0000) +struct AudioComponent_IsVirtualized final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioComponent_IsVirtualized; + +// Function Engine.ShapeComponent.SetLineThickness +// 0x0004 (0x0004 - 0x0000) +struct ShapeComponent_SetLineThickness final +{ +public: + float Thickness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ShapeComponent_SetLineThickness; + +// Function Engine.BoxComponent.SetBoxExtent +// 0x0020 (0x0020 - 0x0000) +struct BoxComponent_SetBoxExtent final +{ +public: + struct FVector InBoxExtent; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BoxComponent_SetBoxExtent; + +// Function Engine.BoxComponent.GetScaledBoxExtent +// 0x0018 (0x0018 - 0x0000) +struct BoxComponent_GetScaledBoxExtent final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BoxComponent_GetScaledBoxExtent; + +// Function Engine.BoxComponent.GetUnscaledBoxExtent +// 0x0018 (0x0018 - 0x0000) +struct BoxComponent_GetUnscaledBoxExtent final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BoxComponent_GetUnscaledBoxExtent; + +// Function Engine.InputDeviceLibrary.EqualEqual_InputDeviceId +// 0x000C (0x000C - 0x0000) +struct InputDeviceLibrary_EqualEqual_InputDeviceId final +{ +public: + struct FInputDeviceId A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_EqualEqual_InputDeviceId; + +// Function Engine.InputDeviceLibrary.EqualEqual_PlatformUserId +// 0x000C (0x000C - 0x0000) +struct InputDeviceLibrary_EqualEqual_PlatformUserId final +{ +public: + struct FPlatformUserId A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_EqualEqual_PlatformUserId; + +// Function Engine.InputDeviceLibrary.GetAllActiveUsers +// 0x0018 (0x0018 - 0x0000) +struct InputDeviceLibrary_GetAllActiveUsers final +{ +public: + TArray OutUsers; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_GetAllActiveUsers; + +// Function Engine.InputDeviceLibrary.GetAllConnectedInputDevices +// 0x0018 (0x0018 - 0x0000) +struct InputDeviceLibrary_GetAllConnectedInputDevices final +{ +public: + TArray OutInputDevices; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_GetAllConnectedInputDevices; + +// Function Engine.InputDeviceLibrary.GetAllInputDevices +// 0x0018 (0x0018 - 0x0000) +struct InputDeviceLibrary_GetAllInputDevices final +{ +public: + TArray OutInputDevices; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_GetAllInputDevices; + +// Function Engine.InputDeviceLibrary.GetAllInputDevicesForUser +// 0x0020 (0x0020 - 0x0000) +struct InputDeviceLibrary_GetAllInputDevicesForUser final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutInputDevices; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_GetAllInputDevicesForUser; + +// Function Engine.InputDeviceLibrary.GetDefaultInputDevice +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceLibrary_GetDefaultInputDevice final +{ +public: + struct FInputDeviceId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetDefaultInputDevice; + +// Function Engine.InputDeviceLibrary.GetInputDeviceConnectionState +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_GetInputDeviceConnectionState final +{ +public: + struct FInputDeviceId DeviceID; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInputDeviceConnectionState ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_GetInputDeviceConnectionState; + +// Function Engine.InputDeviceLibrary.GetPlayerControllerFromInputDevice +// 0x0010 (0x0010 - 0x0000) +struct InputDeviceLibrary_GetPlayerControllerFromInputDevice final +{ +public: + struct FInputDeviceId DeviceID; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetPlayerControllerFromInputDevice; + +// Function Engine.InputDeviceLibrary.GetPlayerControllerFromPlatformUser +// 0x0010 (0x0010 - 0x0000) +struct InputDeviceLibrary_GetPlayerControllerFromPlatformUser final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetPlayerControllerFromPlatformUser; + +// Function Engine.InputDeviceLibrary.GetPrimaryInputDeviceForUser +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_GetPrimaryInputDeviceForUser final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetPrimaryInputDeviceForUser; + +// Function Engine.InputDeviceLibrary.GetPrimaryPlatformUser +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceLibrary_GetPrimaryPlatformUser final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetPrimaryPlatformUser; + +// Function Engine.InputDeviceLibrary.GetUserForInputDevice +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_GetUserForInputDevice final +{ +public: + struct FInputDeviceId DeviceID; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetUserForInputDevice; + +// Function Engine.InputDeviceLibrary.GetUserForUnpairedInputDevices +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceLibrary_GetUserForUnpairedInputDevices final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_GetUserForUnpairedInputDevices; + +// Function Engine.InputDeviceLibrary.InputDeviceId_None +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceLibrary_InputDeviceId_None final +{ +public: + struct FInputDeviceId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_InputDeviceId_None; + +// Function Engine.InputDeviceLibrary.IsDevicePropertyHandleValid +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_IsDevicePropertyHandleValid final +{ +public: + struct FInputDevicePropertyHandle InHandle; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_IsDevicePropertyHandleValid; + +// Function Engine.InputDeviceLibrary.IsInputDeviceMappedToUnpairedUser +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser final +{ +public: + struct FInputDeviceId InputDevice; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_IsInputDeviceMappedToUnpairedUser; + +// Function Engine.InputDeviceLibrary.IsUnpairedUserId +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_IsUnpairedUserId final +{ +public: + struct FPlatformUserId PlatformId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_IsUnpairedUserId; + +// Function Engine.InputDeviceLibrary.IsValidInputDevice +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_IsValidInputDevice final +{ +public: + struct FInputDeviceId DeviceID; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_IsValidInputDevice; + +// Function Engine.InputDeviceLibrary.IsValidPlatformId +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceLibrary_IsValidPlatformId final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_IsValidPlatformId; + +// Function Engine.InputDeviceLibrary.NotEqual_InputDeviceId +// 0x000C (0x000C - 0x0000) +struct InputDeviceLibrary_NotEqual_InputDeviceId final +{ +public: + struct FInputDeviceId A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_NotEqual_InputDeviceId; + +// Function Engine.InputDeviceLibrary.NotEqual_PlatformUserId +// 0x000C (0x000C - 0x0000) +struct InputDeviceLibrary_NotEqual_PlatformUserId final +{ +public: + struct FPlatformUserId A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceLibrary_NotEqual_PlatformUserId; + +// Function Engine.InputDeviceLibrary.PlatformUserId_None +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceLibrary_PlatformUserId_None final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceLibrary_PlatformUserId_None; + +// Function Engine.Interface_AssetUserData.AddAssetUserDataOfClass +// 0x0010 (0x0010 - 0x0000) +struct Interface_AssetUserData_AddAssetUserDataOfClass final +{ +public: + TSubclassOf InUserDataClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Interface_AssetUserData_AddAssetUserDataOfClass; + +// Function Engine.Interface_AssetUserData.GetAssetUserDataOfClass +// 0x0010 (0x0010 - 0x0000) +struct Interface_AssetUserData_GetAssetUserDataOfClass final +{ +public: + TSubclassOf InUserDataClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAssetUserData* ReturnValue; // 0x0008(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Interface_AssetUserData_GetAssetUserDataOfClass; + +// Function Engine.Interface_AssetUserData.HasAssetUserDataOfClass +// 0x0010 (0x0010 - 0x0000) +struct Interface_AssetUserData_HasAssetUserDataOfClass final +{ +public: + TSubclassOf InUserDataClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Interface_AssetUserData_HasAssetUserDataOfClass; + +// Function Engine.KismetTextLibrary.AsCurrency_Float +// 0x0038 (0x0038 - 0x0000) +struct KismetTextLibrary_AsCurrency_Float final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERoundingMode RoundingMode; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0006(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7[0x1]; // 0x0007(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinimumFractionalDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumFractionalDigits; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString CurrencyCode; // 0x0018(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsCurrency_Float; + +// Function Engine.KismetTextLibrary.AsCurrency_Integer +// 0x0038 (0x0038 - 0x0000) +struct KismetTextLibrary_AsCurrency_Integer final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERoundingMode RoundingMode; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0006(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7[0x1]; // 0x0007(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinimumFractionalDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumFractionalDigits; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString CurrencyCode; // 0x0018(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsCurrency_Integer; + +// Function Engine.KismetTextLibrary.AsCurrencyBase +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_AsCurrencyBase final +{ +public: + int32 BaseValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString CurrencyCode; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsCurrencyBase; + +// Function Engine.KismetTextLibrary.AsDate_DateTime +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_AsDate_DateTime final +{ +public: + struct FDateTime InDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InDateStyle; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsDate_DateTime; + +// Function Engine.KismetTextLibrary.AsDateTime_DateTime +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_AsDateTime_DateTime final +{ +public: + struct FDateTime In; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InDateStyle; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InTimeStyle; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsDateTime_DateTime; + +// Function Engine.KismetTextLibrary.AsMemory +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_AsMemory final +{ +public: + int64 NumBytes; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMemoryUnitStandard UnitStandard; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinimumFractionalDigits; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumFractionalDigits; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsMemory; + +// Function Engine.KismetTextLibrary.AsPercent_Float +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_AsPercent_Float final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERoundingMode RoundingMode; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0006(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7[0x1]; // 0x0007(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinimumFractionalDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumFractionalDigits; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsPercent_Float; + +// Function Engine.KismetTextLibrary.AsTime_DateTime +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_AsTime_DateTime final +{ +public: + struct FDateTime In; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InTimeStyle; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsTime_DateTime; + +// Function Engine.KismetTextLibrary.AsTimespan_Timespan +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_AsTimespan_Timespan final +{ +public: + struct FTimespan InTimespan; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsTimespan_Timespan; + +// Function Engine.KismetTextLibrary.AsTimeZoneDate_DateTime +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_AsTimeZoneDate_DateTime final +{ +public: + struct FDateTime InDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InTimeZone; // 0x0008(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InDateStyle; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsTimeZoneDate_DateTime; + +// Function Engine.KismetTextLibrary.AsTimeZoneDateTime_DateTime +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_AsTimeZoneDateTime_DateTime final +{ +public: + struct FDateTime InDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InTimeZone; // 0x0008(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InDateStyle; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InTimeStyle; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsTimeZoneDateTime_DateTime; + +// Function Engine.KismetTextLibrary.AsTimeZoneTime_DateTime +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_AsTimeZoneTime_DateTime final +{ +public: + struct FDateTime InDateTime; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InTimeZone; // 0x0008(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDateTimeStyle InTimeStyle; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_AsTimeZoneTime_DateTime; + +// Function Engine.KismetTextLibrary.Conv_BoolToText +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_Conv_BoolToText final +{ +public: + bool InBool; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_BoolToText; + +// Function Engine.KismetTextLibrary.Conv_ByteToText +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_Conv_ByteToText final +{ +public: + uint8 Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_ByteToText; + +// Function Engine.KismetTextLibrary.Conv_ColorToText +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_Conv_ColorToText final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_ColorToText; + +// Function Engine.KismetTextLibrary.Conv_DoubleToText +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_Conv_DoubleToText final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERoundingMode RoundingMode; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x000A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinimumFractionalDigits; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumFractionalDigits; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_DoubleToText; + +// Function Engine.KismetTextLibrary.Conv_Int64ToText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_Conv_Int64ToText final +{ +public: + int64 Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_Int64ToText; + +// Function Engine.KismetTextLibrary.Conv_IntToText +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_Conv_IntToText final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysSign; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGrouping; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinimumIntegralDigits; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaximumIntegralDigits; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_IntToText; + +// Function Engine.KismetTextLibrary.Conv_NameToText +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_Conv_NameToText final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_NameToText; + +// Function Engine.KismetTextLibrary.Conv_NumericPropertyToText +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_Conv_NumericPropertyToText final +{ +public: + int32 Value; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_NumericPropertyToText; + +// Function Engine.KismetTextLibrary.Conv_ObjectToText +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_Conv_ObjectToText final +{ +public: + class UObject* InObj; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_ObjectToText; + +// Function Engine.KismetTextLibrary.Conv_RotatorToText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_Conv_RotatorToText final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_RotatorToText; + +// Function Engine.KismetTextLibrary.Conv_StringToText +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_Conv_StringToText final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_StringToText; + +// Function Engine.KismetTextLibrary.Conv_TextToString +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_Conv_TextToString final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_TextToString; + +// Function Engine.KismetTextLibrary.Conv_TransformToText +// 0x0070 (0x0070 - 0x0000) +struct KismetTextLibrary_Conv_TransformToText final +{ +public: + struct FTransform InTrans; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0060(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_TransformToText; + +// Function Engine.KismetTextLibrary.Conv_Vector2dToText +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_Conv_Vector2dToText final +{ +public: + struct FVector2D InVec; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_Vector2dToText; + +// Function Engine.KismetTextLibrary.Conv_VectorToText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_Conv_VectorToText final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Conv_VectorToText; + +// Function Engine.KismetTextLibrary.EditTextSourceString +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_EditTextSourceString final +{ +public: + class UObject* TextOwner; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText Text; // 0x0008(0x0010)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FString SourceString; // 0x0018(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_EditTextSourceString; + +// Function Engine.KismetTextLibrary.EqualEqual_IgnoreCase_TextText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_EqualEqual_IgnoreCase_TextText final +{ +public: + class FText A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_EqualEqual_IgnoreCase_TextText; + +// Function Engine.KismetTextLibrary.EqualEqual_TextText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_EqualEqual_TextText final +{ +public: + class FText A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_EqualEqual_TextText; + +// Function Engine.KismetTextLibrary.FindTextInLocalizationTable +// 0x0048 (0x0048 - 0x0000) +struct KismetTextLibrary_FindTextInLocalizationTable final +{ +public: + class FString NameSpace; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText OutText; // 0x0020(0x0010)(Parm, OutParm, NativeAccessSpecifierPublic) + class FString SourceString; // 0x0030(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_FindTextInLocalizationTable; + +// Function Engine.KismetTextLibrary.Format +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_Format final +{ +public: + class FText InPattern; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + TArray InArgs; // 0x0010(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_Format; + +// Function Engine.KismetTextLibrary.GetEmptyText +// 0x0010 (0x0010 - 0x0000) +struct KismetTextLibrary_GetEmptyText final +{ +public: + class FText ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_GetEmptyText; + +// Function Engine.KismetTextLibrary.GetTextId +// 0x0038 (0x0038 - 0x0000) +struct KismetTextLibrary_GetTextId final +{ +public: + class FText Text; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + class FString OutNamespace; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutKey; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_GetTextId; + +// Function Engine.KismetTextLibrary.GetTextSourceString +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_GetTextSourceString final +{ +public: + class FText Text; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_GetTextSourceString; + +// Function Engine.KismetTextLibrary.IsPolyglotDataValid +// 0x00C8 (0x00C8 - 0x0000) +struct KismetTextLibrary_IsPolyglotDataValid final +{ +public: + struct FPolyglotTextData PolyglotData; // 0x0000(0x00B0)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IsValid; // 0x00B0(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ErrorMessage; // 0x00B8(0x0010)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_IsPolyglotDataValid; + +// Function Engine.KismetTextLibrary.MakeInvariantText +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_MakeInvariantText final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_MakeInvariantText; + +// Function Engine.KismetTextLibrary.NotEqual_IgnoreCase_TextText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_NotEqual_IgnoreCase_TextText final +{ +public: + class FText A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_NotEqual_IgnoreCase_TextText; + +// Function Engine.KismetTextLibrary.NotEqual_TextText +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_NotEqual_TextText final +{ +public: + class FText A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_NotEqual_TextText; + +// Function Engine.KismetTextLibrary.PolyglotDataToText +// 0x00C0 (0x00C0 - 0x0000) +struct KismetTextLibrary_PolyglotDataToText final +{ +public: + struct FPolyglotTextData PolyglotData; // 0x0000(0x00B0)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x00B0(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_PolyglotDataToText; + +// Function Engine.KismetTextLibrary.StringTableIdAndKeyFromText +// 0x0030 (0x0030 - 0x0000) +struct KismetTextLibrary_StringTableIdAndKeyFromText final +{ +public: + class FText Text; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + class FName OutTableId; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutKey; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_StringTableIdAndKeyFromText; + +// Function Engine.KismetTextLibrary.TextFromStringTable +// 0x0028 (0x0028 - 0x0000) +struct KismetTextLibrary_TextFromStringTable final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextFromStringTable; + +// Function Engine.KismetTextLibrary.TextIsCultureInvariant +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_TextIsCultureInvariant final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_TextIsCultureInvariant; + +// Function Engine.KismetTextLibrary.TextIsEmpty +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_TextIsEmpty final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_TextIsEmpty; + +// Function Engine.KismetTextLibrary.TextIsFromStringTable +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_TextIsFromStringTable final +{ +public: + class FText Text; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_TextIsFromStringTable; + +// Function Engine.KismetTextLibrary.TextIsTransient +// 0x0018 (0x0018 - 0x0000) +struct KismetTextLibrary_TextIsTransient final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetTextLibrary_TextIsTransient; + +// Function Engine.KismetTextLibrary.TextToLower +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_TextToLower final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextToLower; + +// Function Engine.KismetTextLibrary.TextToUpper +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_TextToUpper final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextToUpper; + +// Function Engine.KismetTextLibrary.TextTrimPreceding +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_TextTrimPreceding final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextTrimPreceding; + +// Function Engine.KismetTextLibrary.TextTrimPrecedingAndTrailing +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_TextTrimPrecedingAndTrailing final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextTrimPrecedingAndTrailing; + +// Function Engine.KismetTextLibrary.TextTrimTrailing +// 0x0020 (0x0020 - 0x0000) +struct KismetTextLibrary_TextTrimTrailing final +{ +public: + class FText InText; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetTextLibrary_TextTrimTrailing; + +// Function Engine.World.K2_GetWorldSettings +// 0x0008 (0x0008 - 0x0000) +struct World_K2_GetWorldSettings final +{ +public: + class AWorldSettings* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//World_K2_GetWorldSettings; + +// Function Engine.World.GetDataLayerManager +// 0x0008 (0x0008 - 0x0000) +struct World_GetDataLayerManager final +{ +public: + class UDataLayerManager* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//World_GetDataLayerManager; + +// Function Engine.LevelStreamingDynamic.LoadLevelInstance +// 0x0078 (0x0078 - 0x0000) +struct LevelStreamingDynamic_LoadLevelInstance final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LevelName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bOutSuccess; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString OptionalLevelNameOverride; // 0x0050(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf OptionalLevelStreamingClass; // 0x0060(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoadAsTempPackage; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class ULevelStreamingDynamic* ReturnValue; // 0x0070(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreamingDynamic_LoadLevelInstance; + +// Function Engine.LevelStreamingDynamic.LoadLevelInstanceBySoftObjectPtr +// 0x0090 (0x0090 - 0x0000) +struct LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Level; // 0x0008(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bOutSuccess; // 0x0060(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString OptionalLevelNameOverride; // 0x0068(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf OptionalLevelStreamingClass; // 0x0078(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoadAsTempPackage; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class ULevelStreamingDynamic* ReturnValue; // 0x0088(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelStreamingDynamic_LoadLevelInstanceBySoftObjectPtr; + +// Function Engine.LightComponentBase.SetAffectGlobalIllumination +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetAffectGlobalIllumination final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetAffectGlobalIllumination; + +// Function Engine.LightComponentBase.SetAffectReflection +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetAffectReflection final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetAffectReflection; + +// Function Engine.LightComponentBase.SetCastDeepShadow +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetCastDeepShadow final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetCastDeepShadow; + +// Function Engine.LightComponentBase.SetCastRaytracedShadow +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetCastRaytracedShadow final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetCastRaytracedShadow; + +// Function Engine.LightComponentBase.SetCastRaytracedShadows +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetCastRaytracedShadows final +{ +public: + ECastRayTracedShadow bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetCastRaytracedShadows; + +// Function Engine.LightComponentBase.SetCastShadows +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetCastShadows final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetCastShadows; + +// Function Engine.LightComponentBase.SetCastVolumetricShadow +// 0x0001 (0x0001 - 0x0000) +struct LightComponentBase_SetCastVolumetricShadow final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetCastVolumetricShadow; + +// Function Engine.LightComponentBase.SetSamplesPerPixel +// 0x0004 (0x0004 - 0x0000) +struct LightComponentBase_SetSamplesPerPixel final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_SetSamplesPerPixel; + +// Function Engine.LightComponentBase.GetLightColor +// 0x0010 (0x0010 - 0x0000) +struct LightComponentBase_GetLightColor final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponentBase_GetLightColor; + +// Function Engine.HUD.AddDebugText +// 0x0068 (0x0068 - 0x0000) +struct HUD_AddDebugText final +{ +public: + class FString DebugText; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* SrcActor; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Offset; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector DesiredOffset; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor TextColor; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipOverwriteCheck; // 0x0054(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAbsoluteLocation; // 0x0055(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bKeepAttachedToActor; // 0x0056(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_57[0x1]; // 0x0057(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + class UFont* InFont; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FontScale; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDrawShadow; // 0x0064(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_65[0x3]; // 0x0065(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_AddDebugText; + +// Function Engine.HUD.AddHitBox +// 0x0030 (0x0030 - 0x0000) +struct HUD_AddHitBox final +{ +public: + struct FVector2D position; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Size; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InName; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bConsumesInput; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Priority; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_AddHitBox; + +// Function Engine.HUD.DrawLine +// 0x0024 (0x0024 - 0x0000) +struct HUD_DrawLine final +{ +public: + float StartScreenX; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartScreenY; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndScreenX; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndScreenY; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LineThickness; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_DrawLine; + +// Function Engine.HUD.DrawMaterial +// 0x0048 (0x0048 - 0x0000) +struct HUD_DrawMaterial final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenW; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenH; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaterialU; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaterialV; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaterialUWidth; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaterialVHeight; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScalePosition; // 0x002C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Rotation; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D RotPivot; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_DrawMaterial; + +// Function Engine.HUD.DrawMaterialSimple +// 0x0020 (0x0020 - 0x0000) +struct HUD_DrawMaterialSimple final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenW; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenH; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScalePosition; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_DrawMaterialSimple; + +// Function Engine.HUD.DrawMaterialTriangle +// 0x0098 (0x0098 - 0x0000) +struct HUD_DrawMaterialTriangle final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V0_Pos; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V1_Pos; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V2_Pos; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V0_UV; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V1_UV; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V2_UV; // 0x0058(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V0_Color; // 0x0068(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V1_Color; // 0x0078(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V2_Color; // 0x0088(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_DrawMaterialTriangle; + +// Function Engine.HUD.DrawRect +// 0x0020 (0x0020 - 0x0000) +struct HUD_DrawRect final +{ +public: + struct FLinearColor RectColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenW; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenH; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_DrawRect; + +// Function Engine.HUD.DrawText +// 0x0038 (0x0038 - 0x0000) +struct HUD_DrawText final +{ +public: + class FString Text; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TextColor; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* Font; // 0x0028(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScalePosition; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_DrawText; + +// Function Engine.HUD.DrawTexture +// 0x0058 (0x0058 - 0x0000) +struct HUD_DrawTexture final +{ +public: + class UTexture* Texture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenW; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenH; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureU; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureV; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureUWidth; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TextureVHeight; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TintColor; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlendMode BlendMode; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Scale; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScalePosition; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Rotation; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D RotPivot; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_DrawTexture; + +// Function Engine.HUD.DrawTextureSimple +// 0x0018 (0x0018 - 0x0000) +struct HUD_DrawTextureSimple final +{ +public: + class UTexture* Texture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenX; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bScalePosition; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_DrawTextureSimple; + +// Function Engine.HUD.GetActorsInSelectionRectangle +// 0x0040 (0x0040 - 0x0000) +struct HUD_GetActorsInSelectionRectangle final +{ +public: + TSubclassOf ClassFilter; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D FirstPoint; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D SecondPoint; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bIncludeNonCollidingComponents; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bActorMustBeFullyEnclosed; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_GetActorsInSelectionRectangle; + +// Function Engine.HUD.ReceiveDrawHUD +// 0x0008 (0x0008 - 0x0000) +struct HUD_ReceiveDrawHUD final +{ +public: + int32 SizeX; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ReceiveDrawHUD; + +// Function Engine.HUD.ReceiveHitBoxBeginCursorOver +// 0x0008 (0x0008 - 0x0000) +struct HUD_ReceiveHitBoxBeginCursorOver final +{ +public: + class FName BoxName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ReceiveHitBoxBeginCursorOver; + +// Function Engine.HUD.ReceiveHitBoxClick +// 0x0008 (0x0008 - 0x0000) +struct HUD_ReceiveHitBoxClick final +{ +public: + class FName BoxName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ReceiveHitBoxClick; + +// Function Engine.HUD.ReceiveHitBoxEndCursorOver +// 0x0008 (0x0008 - 0x0000) +struct HUD_ReceiveHitBoxEndCursorOver final +{ +public: + class FName BoxName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ReceiveHitBoxEndCursorOver; + +// Function Engine.HUD.ReceiveHitBoxRelease +// 0x0008 (0x0008 - 0x0000) +struct HUD_ReceiveHitBoxRelease final +{ +public: + class FName BoxName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ReceiveHitBoxRelease; + +// Function Engine.HUD.RemoveDebugText +// 0x0010 (0x0010 - 0x0000) +struct HUD_RemoveDebugText final +{ +public: + class AActor* SrcActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLeaveDurationText; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_RemoveDebugText; + +// Function Engine.HUD.ShowDebug +// 0x0008 (0x0008 - 0x0000) +struct HUD_ShowDebug final +{ +public: + class FName DebugType; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ShowDebug; + +// Function Engine.HUD.ShowDebugForReticleTargetToggle +// 0x0008 (0x0008 - 0x0000) +struct HUD_ShowDebugForReticleTargetToggle final +{ +public: + TSubclassOf DesiredClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ShowDebugForReticleTargetToggle; + +// Function Engine.HUD.ShowDebugToggleSubCategory +// 0x0008 (0x0008 - 0x0000) +struct HUD_ShowDebugToggleSubCategory final +{ +public: + class FName Category; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_ShowDebugToggleSubCategory; + +// Function Engine.HUD.Deproject +// 0x0038 (0x0038 - 0x0000) +struct HUD_Deproject final +{ +public: + float ScreenX; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_Deproject; + +// Function Engine.HUD.GetOwningPawn +// 0x0008 (0x0008 - 0x0000) +struct HUD_GetOwningPawn final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_GetOwningPawn; + +// Function Engine.HUD.GetOwningPlayerController +// 0x0008 (0x0008 - 0x0000) +struct HUD_GetOwningPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_GetOwningPlayerController; + +// Function Engine.HUD.GetTextSize +// 0x0028 (0x0028 - 0x0000) +struct HUD_GetTextSize final +{ +public: + class FString Text; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutWidth; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutHeight; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* Font; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HUD_GetTextSize; + +// Function Engine.HUD.Project +// 0x0038 (0x0038 - 0x0000) +struct HUD_Project final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClampToZeroPlane; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HUD_Project; + +// Function Engine.LightComponent.SetAffectTranslucentLighting +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetAffectTranslucentLighting final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetAffectTranslucentLighting; + +// Function Engine.LightComponent.SetBloomMaxBrightness +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetBloomMaxBrightness final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetBloomMaxBrightness; + +// Function Engine.LightComponent.SetBloomScale +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetBloomScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetBloomScale; + +// Function Engine.LightComponent.SetBloomThreshold +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetBloomThreshold final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetBloomThreshold; + +// Function Engine.LightComponent.SetBloomTint +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetBloomTint final +{ +public: + struct FColor NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetBloomTint; + +// Function Engine.LightComponent.SetDiffuseScale +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetDiffuseScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetDiffuseScale; + +// Function Engine.LightComponent.SetEnableLightShaftBloom +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetEnableLightShaftBloom final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetEnableLightShaftBloom; + +// Function Engine.LightComponent.SetForceCachedShadowsForMovablePrimitives +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetForceCachedShadowsForMovablePrimitives final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetForceCachedShadowsForMovablePrimitives; + +// Function Engine.LightComponent.SetIESBrightnessScale +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetIESBrightnessScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetIESBrightnessScale; + +// Function Engine.LightComponent.SetIESTexture +// 0x0008 (0x0008 - 0x0000) +struct LightComponent_SetIESTexture final +{ +public: + class UTextureLightProfile* NewValue; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetIESTexture; + +// Function Engine.LightComponent.SetIndirectLightingIntensity +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetIndirectLightingIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetIndirectLightingIntensity; + +// Function Engine.LightComponent.SetIntensity +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetIntensity; + +// Function Engine.LightComponent.SetLightColor +// 0x0014 (0x0014 - 0x0000) +struct LightComponent_SetLightColor final +{ +public: + struct FLinearColor NewLightColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSRGB; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//LightComponent_SetLightColor; + +// Function Engine.LightComponent.SetLightFColor +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetLightFColor final +{ +public: + struct FColor NewLightColor; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightFColor; + +// Function Engine.LightComponent.SetLightFunctionDisabledBrightness +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetLightFunctionDisabledBrightness final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightFunctionDisabledBrightness; + +// Function Engine.LightComponent.SetLightFunctionFadeDistance +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetLightFunctionFadeDistance final +{ +public: + float NewLightFunctionFadeDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightFunctionFadeDistance; + +// Function Engine.LightComponent.SetLightFunctionMaterial +// 0x0008 (0x0008 - 0x0000) +struct LightComponent_SetLightFunctionMaterial final +{ +public: + class UMaterialInterface* NewLightFunctionMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightFunctionMaterial; + +// Function Engine.LightComponent.SetLightFunctionScale +// 0x0018 (0x0018 - 0x0000) +struct LightComponent_SetLightFunctionScale final +{ +public: + struct FVector NewLightFunctionScale; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightFunctionScale; + +// Function Engine.LightComponent.SetLightingChannels +// 0x0003 (0x0003 - 0x0000) +struct LightComponent_SetLightingChannels final +{ +public: + bool bChannel0; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bChannel1; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bChannel2; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetLightingChannels; + +// Function Engine.LightComponent.SetShadowBias +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetShadowBias final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetShadowBias; + +// Function Engine.LightComponent.SetShadowSlopeBias +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetShadowSlopeBias final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetShadowSlopeBias; + +// Function Engine.LightComponent.SetSpecularScale +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetSpecularScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetSpecularScale; + +// Function Engine.LightComponent.SetTemperature +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetTemperature final +{ +public: + float NewTemperature; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetTemperature; + +// Function Engine.LightComponent.SetTransmission +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetTransmission final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetTransmission; + +// Function Engine.LightComponent.SetUseIESBrightness +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetUseIESBrightness final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetUseIESBrightness; + +// Function Engine.LightComponent.SetUseRayTracedDistanceFieldShadows +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetUseRayTracedDistanceFieldShadows final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetUseRayTracedDistanceFieldShadows; + +// Function Engine.LightComponent.SetUseTemperature +// 0x0001 (0x0001 - 0x0000) +struct LightComponent_SetUseTemperature final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetUseTemperature; + +// Function Engine.LightComponent.SetVolumetricScatteringIntensity +// 0x0004 (0x0004 - 0x0000) +struct LightComponent_SetVolumetricScatteringIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightComponent_SetVolumetricScatteringIntensity; + +// Function Engine.SphereComponent.SetSphereRadius +// 0x0008 (0x0008 - 0x0000) +struct SphereComponent_SetSphereRadius final +{ +public: + float InSphereRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SphereComponent_SetSphereRadius; + +// Function Engine.SphereComponent.GetScaledSphereRadius +// 0x0004 (0x0004 - 0x0000) +struct SphereComponent_GetScaledSphereRadius final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SphereComponent_GetScaledSphereRadius; + +// Function Engine.SphereComponent.GetShapeScale +// 0x0004 (0x0004 - 0x0000) +struct SphereComponent_GetShapeScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SphereComponent_GetShapeScale; + +// Function Engine.SphereComponent.GetUnscaledSphereRadius +// 0x0004 (0x0004 - 0x0000) +struct SphereComponent_GetUnscaledSphereRadius final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SphereComponent_GetUnscaledSphereRadius; + +// Function Engine.InputComponent.OnInputOwnerEndPlayed +// 0x0010 (0x0010 - 0x0000) +struct InputComponent_OnInputOwnerEndPlayed final +{ +public: + class AActor* InOwner; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEndPlayReason EndPlayReason; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_OnInputOwnerEndPlayed; + +// Function Engine.InputComponent.GetControllerAnalogKeyState +// 0x0020 (0x0020 - 0x0000) +struct InputComponent_GetControllerAnalogKeyState final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_GetControllerAnalogKeyState; + +// Function Engine.InputComponent.GetControllerAnalogStickState +// 0x000C (0x000C - 0x0000) +struct InputComponent_GetControllerAnalogStickState final +{ +public: + EControllerAnalogStick WhichStick; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StickX; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StickY; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputComponent_GetControllerAnalogStickState; + +// Function Engine.InputComponent.GetControllerKeyTimeDown +// 0x0020 (0x0020 - 0x0000) +struct InputComponent_GetControllerKeyTimeDown final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_GetControllerKeyTimeDown; + +// Function Engine.InputComponent.GetControllerMouseDelta +// 0x0008 (0x0008 - 0x0000) +struct InputComponent_GetControllerMouseDelta final +{ +public: + float DeltaX; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaY; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputComponent_GetControllerMouseDelta; + +// Function Engine.InputComponent.GetControllerVectorKeyState +// 0x0030 (0x0030 - 0x0000) +struct InputComponent_GetControllerVectorKeyState final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputComponent_GetControllerVectorKeyState; + +// Function Engine.InputComponent.GetTouchState +// 0x0010 (0x0010 - 0x0000) +struct InputComponent_GetTouchState final +{ +public: + int32 FingerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocationX; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocationY; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsCurrentlyPressed; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_GetTouchState; + +// Function Engine.InputComponent.IsControllerKeyDown +// 0x0020 (0x0020 - 0x0000) +struct InputComponent_IsControllerKeyDown final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_IsControllerKeyDown; + +// Function Engine.InputComponent.WasControllerKeyJustPressed +// 0x0020 (0x0020 - 0x0000) +struct InputComponent_WasControllerKeyJustPressed final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_WasControllerKeyJustPressed; + +// Function Engine.InputComponent.WasControllerKeyJustReleased +// 0x0020 (0x0020 - 0x0000) +struct InputComponent_WasControllerKeyJustReleased final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputComponent_WasControllerKeyJustReleased; + +// Function Engine.LocalLightComponent.GetUnitsConversionFactor +// 0x000C (0x000C - 0x0000) +struct LocalLightComponent_GetUnitsConversionFactor final +{ +public: + ELightUnits SrcUnits; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELightUnits TargetUnits; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float CosHalfConeAngle; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalLightComponent_GetUnitsConversionFactor; + +// Function Engine.LocalLightComponent.SetAttenuationRadius +// 0x0004 (0x0004 - 0x0000) +struct LocalLightComponent_SetAttenuationRadius final +{ +public: + float NewRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalLightComponent_SetAttenuationRadius; + +// Function Engine.LocalLightComponent.SetIntensityUnits +// 0x0001 (0x0001 - 0x0000) +struct LocalLightComponent_SetIntensityUnits final +{ +public: + ELightUnits NewIntensityUnits; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalLightComponent_SetIntensityUnits; + +// Function Engine.KismetSystemLibrary.AddFloatHistorySample +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_AddFloatHistorySample final +{ +public: + float Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDebugFloatHistory FloatHistory; // 0x0008(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FDebugFloatHistory ReturnValue; // 0x0028(0x0020)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_AddFloatHistorySample; + +// Function Engine.KismetSystemLibrary.BeginTransaction +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_BeginTransaction final +{ +public: + class FString Context; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText Description; // 0x0010(0x0010)(Parm, NativeAccessSpecifierPublic) + class UObject* PrimaryObject; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BeginTransaction; + +// Function Engine.KismetSystemLibrary.BoxOverlapActors +// 0x0078 (0x0078 - 0x0000) +struct KismetSystemLibrary_BoxOverlapActors final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxPos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0038(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ActorClassFilter; // 0x0048(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxOverlapActors; + +// Function Engine.KismetSystemLibrary.BoxOverlapComponents +// 0x0078 (0x0078 - 0x0000) +struct KismetSystemLibrary_BoxOverlapComponents final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxPos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Extent; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0038(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ComponentClassFilter; // 0x0048(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutComponents; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxOverlapComponents; + +// Function Engine.KismetSystemLibrary.BoxTraceMulti +// 0x00C8 (0x00C8 - 0x0000) +struct KismetSystemLibrary_BoxTraceMulti final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0069(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A[0x6]; // 0x006A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0070(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0088(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0098(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x3]; // 0x0099(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x009C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x00AC(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x00BC(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00C0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceMulti; + +// Function Engine.KismetSystemLibrary.BoxTraceMultiByProfile +// 0x00D0 (0x00D0 - 0x0000) +struct KismetSystemLibrary_BoxTraceMultiByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0068(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0078(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0088(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x7]; // 0x0089(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0090(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x00A0(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x00A4(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x00B4(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x00C4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00C8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C9[0x7]; // 0x00C9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceMultiByProfile; + +// Function Engine.KismetSystemLibrary.BoxTraceMultiForObjects +// 0x00D8 (0x00D8 - 0x0000) +struct KismetSystemLibrary_BoxTraceMultiForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0068(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0080(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0090(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0098(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x00A8(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x3]; // 0x00A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x00AC(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x00BC(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x00CC(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00D0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D1[0x7]; // 0x00D1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceMultiForObjects; + +// Function Engine.KismetSystemLibrary.BoxTraceSingle +// 0x01B8 (0x01B8 - 0x0000) +struct KismetSystemLibrary_BoxTraceSingle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0069(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A[0x6]; // 0x006A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0070(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0088(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0188(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x3]; // 0x0189(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x018C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x019C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x01AC(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x01B0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B1[0x7]; // 0x01B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceSingle; + +// Function Engine.KismetSystemLibrary.BoxTraceSingleByProfile +// 0x01C0 (0x01C0 - 0x0000) +struct KismetSystemLibrary_BoxTraceSingleByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0068(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0078(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0088(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x7]; // 0x0089(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0090(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0190(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_191[0x3]; // 0x0191(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0194(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x01A4(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x01B4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x01B8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B9[0x7]; // 0x01B9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceSingleByProfile; + +// Function Engine.KismetSystemLibrary.BoxTraceSingleForObjects +// 0x01C8 (0x01C8 - 0x0000) +struct KismetSystemLibrary_BoxTraceSingleForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0038(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator orientation; // 0x0050(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0068(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0080(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0090(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0098(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0198(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_199[0x3]; // 0x0199(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x019C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x01AC(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x01BC(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x01C0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C1[0x7]; // 0x01C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BoxTraceSingleForObjects; + +// Function Engine.KismetSystemLibrary.BreakARFilter +// 0x0248 (0x0248 - 0x0000) +struct KismetSystemLibrary_BreakARFilter final +{ +public: + struct FARFilter InARFilter; // 0x0000(0x0150)(Parm, NativeAccessSpecifierPublic) + TArray PackageNames; // 0x0150(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray PackagePaths; // 0x0160(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SoftObjectPaths; // 0x0170(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ClassPaths; // 0x0180(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TSet RecursiveClassPathsExclusionSet; // 0x0190(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) + TArray ClassNames; // 0x01E0(0x0010)(Parm, OutParm, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + TSet RecursiveClassesExclusionSet; // 0x01F0(0x0050)(Parm, OutParm, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bRecursivePaths; // 0x0240(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecursiveClasses; // 0x0241(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeOnlyOnDiskAssets; // 0x0242(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_243[0x5]; // 0x0243(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_BreakARFilter; + +// Function Engine.KismetSystemLibrary.BreakSoftClassPath +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_BreakSoftClassPath final +{ +public: + struct FSoftClassPath InSoftClassPath; // 0x0000(0x0020)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathString; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_BreakSoftClassPath; + +// Function Engine.KismetSystemLibrary.BreakSoftObjectPath +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_BreakSoftObjectPath final +{ +public: + struct FSoftObjectPath InSoftObjectPath; // 0x0000(0x0020)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathString; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_BreakSoftObjectPath; + +// Function Engine.KismetSystemLibrary.BreakTopLevelAssetPath +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_BreakTopLevelAssetPath final +{ +public: + struct FTopLevelAssetPath TopLevelAssetPath; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathString; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_BreakTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.CancelTransaction +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_CancelTransaction final +{ +public: + int32 Index_0; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_CancelTransaction; + +// Function Engine.KismetSystemLibrary.CanLaunchURL +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_CanLaunchURL final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CanLaunchURL; + +// Function Engine.KismetSystemLibrary.CapsuleOverlapActors +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_CapsuleOverlapActors final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CapsulePos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ActorClassFilter; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0060(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleOverlapActors; + +// Function Engine.KismetSystemLibrary.CapsuleOverlapComponents +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_CapsuleOverlapComponents final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CapsulePos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ComponentClassFilter; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutComponents; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0060(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleOverlapComponents; + +// Function Engine.KismetSystemLibrary.CapsuleTraceMulti +// 0x00A0 (0x00A0 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceMulti final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0041(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x6]; // 0x0042(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0074(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0084(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0094(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0098(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceMulti; + +// Function Engine.KismetSystemLibrary.CapsuleTraceMultiByProfile +// 0x00A8 (0x00A8 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceMultiByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0040(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0068(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x3]; // 0x0079(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x007C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x008C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x009C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0x7]; // 0x00A1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceMultiByProfile; + +// Function Engine.KismetSystemLibrary.CapsuleTraceMultiForObjects +// 0x00B0 (0x00B0 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceMultiForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0058(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0070(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x3]; // 0x0081(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0084(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0094(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x00A4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x7]; // 0x00A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceMultiForObjects; + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingle +// 0x0190 (0x0190 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceSingle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0041(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x6]; // 0x0042(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0060(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0160(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0164(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0174(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0184(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0188(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceSingle; + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingleByProfile +// 0x0198 (0x0198 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceSingleByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0040(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x3]; // 0x0169(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x016C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x017C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x018C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0190(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_191[0x7]; // 0x0191(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceSingleByProfile; + +// Function Engine.KismetSystemLibrary.CapsuleTraceSingleForObjects +// 0x01A0 (0x01A0 - 0x0000) +struct KismetSystemLibrary_CapsuleTraceSingleForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0058(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0070(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0170(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_171[0x3]; // 0x0171(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0174(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0184(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0194(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0198(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_199[0x7]; // 0x0199(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_CapsuleTraceSingleForObjects; + +// Function Engine.KismetSystemLibrary.ComponentOverlapActors +// 0x00B0 (0x00B0 - 0x0000) +struct KismetSystemLibrary_ComponentOverlapActors final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ComponentTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0070(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ActorClassFilter; // 0x0080(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0088(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0098(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x7]; // 0x00A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_ComponentOverlapActors; + +// Function Engine.KismetSystemLibrary.ComponentOverlapComponents +// 0x00B0 (0x00B0 - 0x0000) +struct KismetSystemLibrary_ComponentOverlapComponents final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ComponentTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0070(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ComponentClassFilter; // 0x0080(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0088(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutComponents; // 0x0098(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x7]; // 0x00A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_ComponentOverlapComponents; + +// Function Engine.KismetSystemLibrary.ControlScreensaver +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_ControlScreensaver final +{ +public: + bool bAllowScreenSaver; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ControlScreensaver; + +// Function Engine.KismetSystemLibrary.Conv_ClassToSoftClassReference +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_Conv_ClassToSoftClassReference final +{ +public: + TSubclassOf Class_0; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr ReturnValue; // 0x0008(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_ClassToSoftClassReference; + +// Function Engine.KismetSystemLibrary.Conv_ComponentReferenceToSoftComponentReference +// 0x0070 (0x0070 - 0x0000) +struct KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference final +{ +public: + struct FComponentReference ComponentReference; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftComponentReference ReturnValue; // 0x0028(0x0048)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_ComponentReferenceToSoftComponentReference; + +// Function Engine.KismetSystemLibrary.Conv_InterfaceToObject +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_Conv_InterfaceToObject final +{ +public: + TScriptInterface Interface; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_InterfaceToObject; + +// Function Engine.KismetSystemLibrary.Conv_ObjectToClass +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_Conv_ObjectToClass final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_ObjectToClass; + +// Function Engine.KismetSystemLibrary.Conv_ObjectToSoftObjectReference +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_Conv_ObjectToSoftObjectReference final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr ReturnValue; // 0x0008(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_ObjectToSoftObjectReference; + +// Function Engine.KismetSystemLibrary.Conv_PrimaryAssetIdToString +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_Conv_PrimaryAssetIdToString final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_PrimaryAssetIdToString; + +// Function Engine.KismetSystemLibrary.Conv_PrimaryAssetTypeToString +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_Conv_PrimaryAssetTypeToString final +{ +public: + struct FPrimaryAssetType PrimaryAssetType; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_PrimaryAssetTypeToString; + +// Function Engine.KismetSystemLibrary.Conv_SoftClassPathToSoftClassRef +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef final +{ +public: + struct FSoftClassPath SoftClassPath; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr ReturnValue; // 0x0020(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftClassPathToSoftClassRef; + +// Function Engine.KismetSystemLibrary.Conv_SoftClassReferenceToClass +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_Conv_SoftClassReferenceToClass final +{ +public: + TSoftClassPtr SoftClass; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftClassReferenceToClass; + +// Function Engine.KismetSystemLibrary.Conv_SoftClassReferenceToString +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_Conv_SoftClassReferenceToString final +{ +public: + TSoftClassPtr SoftClassReference; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftClassReferenceToString; + +// Function Engine.KismetSystemLibrary.Conv_SoftObjectReferenceToObject +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_Conv_SoftObjectReferenceToObject final +{ +public: + TSoftObjectPtr SoftObject; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftObjectReferenceToObject; + +// Function Engine.KismetSystemLibrary.Conv_SoftObjectReferenceToString +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_Conv_SoftObjectReferenceToString final +{ +public: + TSoftObjectPtr SoftObjectReference; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftObjectReferenceToString; + +// Function Engine.KismetSystemLibrary.Conv_SoftObjPathToSoftObjRef +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef final +{ +public: + struct FSoftObjectPath SoftObjectPath; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr ReturnValue; // 0x0020(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftObjPathToSoftObjRef; + +// Function Engine.KismetSystemLibrary.Conv_SoftObjRefToSoftClassPath +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath final +{ +public: + TSoftClassPtr SoftClassReference; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath ReturnValue; // 0x0028(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftObjRefToSoftClassPath; + +// Function Engine.KismetSystemLibrary.Conv_SoftObjRefToSoftObjPath +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath final +{ +public: + TSoftObjectPtr SoftObjectReference; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath ReturnValue; // 0x0028(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Conv_SoftObjRefToSoftObjPath; + +// Function Engine.KismetSystemLibrary.ConvertToAbsolutePath +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_ConvertToAbsolutePath final +{ +public: + class FString Filename; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ConvertToAbsolutePath; + +// Function Engine.KismetSystemLibrary.ConvertToRelativePath +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_ConvertToRelativePath final +{ +public: + class FString Filename; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ConvertToRelativePath; + +// Function Engine.KismetSystemLibrary.CreateCopyForUndoBuffer +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_CreateCopyForUndoBuffer final +{ +public: + class UObject* ObjectToModify; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_CreateCopyForUndoBuffer; + +// Function Engine.KismetSystemLibrary.Delay +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_Delay final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0010(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_Delay; + +// Function Engine.KismetSystemLibrary.DelayUntilNextTick +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_DelayUntilNextTick final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLatentActionInfo LatentInfo; // 0x0008(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DelayUntilNextTick; + +// Function Engine.KismetSystemLibrary.DoesClassImplementInterface +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_DoesClassImplementInterface final +{ +public: + const class UClass* TestClass; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Interface; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DoesClassImplementInterface; + +// Function Engine.KismetSystemLibrary.DoesImplementInterface +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_DoesImplementInterface final +{ +public: + const class UObject* TestObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Interface; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DoesImplementInterface; + +// Function Engine.KismetSystemLibrary.DrawDebugArrow +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_DrawDebugArrow final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineStart; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineEnd; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArrowSize; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x003C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x004C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugArrow; + +// Function Engine.KismetSystemLibrary.DrawDebugBox +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_DrawDebugBox final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Extent; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float duration; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugBox; + +// Function Engine.KismetSystemLibrary.DrawDebugCamera +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_DrawDebugCamera final +{ +public: + const class ACameraActor* CameraActor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor CameraColor; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugCamera; + +// Function Engine.KismetSystemLibrary.DrawDebugCapsule +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_DrawDebugCapsule final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0040(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugCapsule; + +// Function Engine.KismetSystemLibrary.DrawDebugCircle +// 0x0078 (0x0078 - 0x0000) +struct KismetSystemLibrary_DrawDebugCircle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumSegments; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector YAxis; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ZAxis; // 0x0058(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDrawAxis; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugCircle; + +// Function Engine.KismetSystemLibrary.DrawDebugCone +// 0x0060 (0x0060 - 0x0000) +struct KismetSystemLibrary_DrawDebugCone final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleWidth; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleHeight; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumSides; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugCone; + +// Function Engine.KismetSystemLibrary.DrawDebugConeInDegrees +// 0x0060 (0x0060 - 0x0000) +struct KismetSystemLibrary_DrawDebugConeInDegrees final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleWidth; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleHeight; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumSides; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugConeInDegrees; + +// Function Engine.KismetSystemLibrary.DrawDebugCoordinateSystem +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_DrawDebugCoordinateSystem final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AxisLoc; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator AxisRot; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Scale; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugCoordinateSystem; + +// Function Engine.KismetSystemLibrary.DrawDebugCylinder +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_DrawDebugCylinder final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Segments; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0040(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugCylinder; + +// Function Engine.KismetSystemLibrary.DrawDebugFloatHistoryLocation +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_DrawDebugFloatHistoryLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDebugFloatHistory FloatHistory; // 0x0008(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector DrawLocation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D DrawSize; // 0x0040(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DrawColor; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugFloatHistoryLocation; + +// Function Engine.KismetSystemLibrary.DrawDebugFloatHistoryTransform +// 0x00C0 (0x00C0 - 0x0000) +struct KismetSystemLibrary_DrawDebugFloatHistoryTransform final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDebugFloatHistory FloatHistory; // 0x0008(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform DrawTransform; // 0x0030(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D DrawSize; // 0x0090(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DrawColor; // 0x00A0(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x00B0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B4[0xC]; // 0x00B4(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugFloatHistoryTransform; + +// Function Engine.KismetSystemLibrary.DrawDebugFrustum +// 0x0090 (0x0090 - 0x0000) +struct KismetSystemLibrary_DrawDebugFrustum final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform FrustumTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FrustumColor; // 0x0070(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0084(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugFrustum; + +// Function Engine.KismetSystemLibrary.DrawDebugLine +// 0x0050 (0x0050 - 0x0000) +struct KismetSystemLibrary_DrawDebugLine final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineStart; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineEnd; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x004C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugLine; + +// Function Engine.KismetSystemLibrary.DrawDebugPlane +// 0x0060 (0x0060 - 0x0000) +struct KismetSystemLibrary_DrawDebugPlane final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPlane PlaneCoordinates; // 0x0010(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0030(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Size; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor PlaneColor; // 0x004C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugPlane; + +// Function Engine.KismetSystemLibrary.DrawDebugPoint +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_DrawDebugPoint final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector position; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Size; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor PointColor; // 0x0024(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugPoint; + +// Function Engine.KismetSystemLibrary.DrawDebugSphere +// 0x0040 (0x0040 - 0x0000) +struct KismetSystemLibrary_DrawDebugSphere final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Segments; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LineColor; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_DrawDebugSphere; + +// Function Engine.KismetSystemLibrary.DrawDebugString +// 0x0050 (0x0050 - 0x0000) +struct KismetSystemLibrary_DrawDebugString final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TextLocation; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* TestBaseActor; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TextColor; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_DrawDebugString; + +// Function Engine.KismetSystemLibrary.EndTransaction +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_EndTransaction final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_EndTransaction; + +// Function Engine.KismetSystemLibrary.EqualEqual_PrimaryAssetId +// 0x0024 (0x0024 - 0x0000) +struct KismetSystemLibrary_EqualEqual_PrimaryAssetId final +{ +public: + struct FPrimaryAssetId A; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId B; // 0x0010(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_EqualEqual_PrimaryAssetId; + +// Function Engine.KismetSystemLibrary.EqualEqual_PrimaryAssetType +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_EqualEqual_PrimaryAssetType final +{ +public: + struct FPrimaryAssetType A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetType B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_EqualEqual_PrimaryAssetType; + +// Function Engine.KismetSystemLibrary.EqualEqual_SoftClassReference +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_EqualEqual_SoftClassReference final +{ +public: + TSoftClassPtr A; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr B; // 0x0028(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_EqualEqual_SoftClassReference; + +// Function Engine.KismetSystemLibrary.EqualEqual_SoftObjectReference +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_EqualEqual_SoftObjectReference final +{ +public: + TSoftObjectPtr A; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr B; // 0x0028(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_EqualEqual_SoftObjectReference; + +// Function Engine.KismetSystemLibrary.ExecuteConsoleCommand +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_ExecuteConsoleCommand final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Command; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerController* SpecificPlayer; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ExecuteConsoleCommand; + +// Function Engine.KismetSystemLibrary.FlushDebugStrings +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_FlushDebugStrings final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_FlushDebugStrings; + +// Function Engine.KismetSystemLibrary.FlushPersistentDebugLines +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_FlushPersistentDebugLines final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_FlushPersistentDebugLines; + +// Function Engine.KismetSystemLibrary.GetActorBounds +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetActorBounds final +{ +public: + const class AActor* Actor; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetActorBounds; + +// Function Engine.KismetSystemLibrary.GetActorListFromComponentList +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_GetActorListFromComponentList final +{ +public: + TArray ComponentList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + class UClass* ActorClassFilter; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActorList; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetActorListFromComponentList; + +// Function Engine.KismetSystemLibrary.GetAdIDCount +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_GetAdIDCount final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetAdIDCount; + +// Function Engine.KismetSystemLibrary.GetBuildConfiguration +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetBuildConfiguration final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetBuildConfiguration; + +// Function Engine.KismetSystemLibrary.GetBuildVersion +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetBuildVersion final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetBuildVersion; + +// Function Engine.KismetSystemLibrary.GetClassDisplayName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetClassDisplayName final +{ +public: + const class UClass* Class_0; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetClassDisplayName; + +// Function Engine.KismetSystemLibrary.GetClassFromPrimaryAssetId +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetClassFromPrimaryAssetId final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetClassFromPrimaryAssetId; + +// Function Engine.KismetSystemLibrary.GetClassTopLevelAssetPath +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetClassTopLevelAssetPath final +{ +public: + const class UClass* Class_0; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetClassTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.GetCommandLine +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetCommandLine final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetCommandLine; + +// Function Engine.KismetSystemLibrary.GetComponentBounds +// 0x0040 (0x0040 - 0x0000) +struct KismetSystemLibrary_GetComponentBounds final +{ +public: + const class USceneComponent* Component; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0038(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetComponentBounds; + +// Function Engine.KismetSystemLibrary.GetConsoleVariableBoolValue +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetConsoleVariableBoolValue final +{ +public: + class FString VariableName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetConsoleVariableBoolValue; + +// Function Engine.KismetSystemLibrary.GetConsoleVariableFloatValue +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetConsoleVariableFloatValue final +{ +public: + class FString VariableName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetConsoleVariableFloatValue; + +// Function Engine.KismetSystemLibrary.GetConsoleVariableIntValue +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetConsoleVariableIntValue final +{ +public: + class FString VariableName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetConsoleVariableIntValue; + +// Function Engine.KismetSystemLibrary.GetConsoleVariableStringValue +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_GetConsoleVariableStringValue final +{ +public: + class FString VariableName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetConsoleVariableStringValue; + +// Function Engine.KismetSystemLibrary.GetConvenientWindowedResolutions +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetConvenientWindowedResolutions final +{ +public: + TArray Resolutions; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetConvenientWindowedResolutions; + +// Function Engine.KismetSystemLibrary.GetCurrentBundleState +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_GetCurrentBundleState final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceCurrentState; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutBundles; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetCurrentBundleState; + +// Function Engine.KismetSystemLibrary.GetDefaultLanguage +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetDefaultLanguage final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetDefaultLanguage; + +// Function Engine.KismetSystemLibrary.GetDefaultLocale +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetDefaultLocale final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetDefaultLocale; + +// Function Engine.KismetSystemLibrary.GetDeviceId +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetDeviceId final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetDeviceId; + +// Function Engine.KismetSystemLibrary.GetDisplayName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetDisplayName final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetDisplayName; + +// Function Engine.KismetSystemLibrary.GetEngineVersion +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetEngineVersion final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetEngineVersion; + +// Function Engine.KismetSystemLibrary.GetEnumTopLevelAssetPath +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetEnumTopLevelAssetPath final +{ +public: + const class UEnum* Enum; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetEnumTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.GetFrameCount +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_GetFrameCount final +{ +public: + int64 ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetFrameCount; + +// Function Engine.KismetSystemLibrary.GetGameBundleId +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetGameBundleId final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetGameBundleId; + +// Function Engine.KismetSystemLibrary.GetGameName +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetGameName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetGameName; + +// Function Engine.KismetSystemLibrary.GetGamepadButtonGlyph +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_GetGamepadButtonGlyph final +{ +public: + class FString ButtonKey; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ControllerIndex; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture2D* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetGamepadButtonGlyph; + +// Function Engine.KismetSystemLibrary.GetGamepadControllerName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetGamepadControllerName final +{ +public: + int32 ControllerId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetGamepadControllerName; + +// Function Engine.KismetSystemLibrary.GetGameTimeInSeconds +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetGameTimeInSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetGameTimeInSeconds; + +// Function Engine.KismetSystemLibrary.GetLocalCurrencyCode +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetLocalCurrencyCode final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetLocalCurrencyCode; + +// Function Engine.KismetSystemLibrary.GetLocalCurrencySymbol +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetLocalCurrencySymbol final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetLocalCurrencySymbol; + +// Function Engine.KismetSystemLibrary.GetMinYResolutionFor3DView +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_GetMinYResolutionFor3DView final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetMinYResolutionFor3DView; + +// Function Engine.KismetSystemLibrary.GetMinYResolutionForUI +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_GetMinYResolutionForUI final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetMinYResolutionForUI; + +// Function Engine.KismetSystemLibrary.GetObjectFromPrimaryAssetId +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetObjectFromPrimaryAssetId final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetObjectFromPrimaryAssetId; + +// Function Engine.KismetSystemLibrary.GetObjectName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetObjectName final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetObjectName; + +// Function Engine.KismetSystemLibrary.GetOuterObject +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetOuterObject final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetOuterObject; + +// Function Engine.KismetSystemLibrary.GetPathName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetPathName final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPathName; + +// Function Engine.KismetSystemLibrary.GetPlatformUserDir +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetPlatformUserDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPlatformUserDir; + +// Function Engine.KismetSystemLibrary.GetPlatformUserName +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetPlatformUserName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPlatformUserName; + +// Function Engine.KismetSystemLibrary.GetPreferredLanguages +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetPreferredLanguages final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPreferredLanguages; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromClass +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetIdFromClass final +{ +public: + TSubclassOf Class_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetIdFromClass; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromObject +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetIdFromObject final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetIdFromObject; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromSoftClassReference +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference final +{ +public: + TSoftClassPtr SoftClassReference; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetIdFromSoftClassReference; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdFromSoftObjectReference +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference final +{ +public: + TSoftObjectPtr SoftObjectReference; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetIdFromSoftObjectReference; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetIdList +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetIdList final +{ +public: + struct FPrimaryAssetType PrimaryAssetType; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPrimaryAssetIdList; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetIdList; + +// Function Engine.KismetSystemLibrary.GetPrimaryAssetsWithBundleState +// 0x0048 (0x0048 - 0x0000) +struct KismetSystemLibrary_GetPrimaryAssetsWithBundleState final +{ +public: + TArray RequiredBundles; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ExcludedBundles; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ValidTypes; // 0x0020(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bForceCurrentState; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutPrimaryAssetIdList; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetPrimaryAssetsWithBundleState; + +// Function Engine.KismetSystemLibrary.GetProjectContentDirectory +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetProjectContentDirectory final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetProjectContentDirectory; + +// Function Engine.KismetSystemLibrary.GetProjectDirectory +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetProjectDirectory final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetProjectDirectory; + +// Function Engine.KismetSystemLibrary.GetProjectSavedDirectory +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetProjectSavedDirectory final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetProjectSavedDirectory; + +// Function Engine.KismetSystemLibrary.GetRenderingDetailMode +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_GetRenderingDetailMode final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetRenderingDetailMode; + +// Function Engine.KismetSystemLibrary.GetRenderingMaterialQualityLevel +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_GetRenderingMaterialQualityLevel final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetRenderingMaterialQualityLevel; + +// Function Engine.KismetSystemLibrary.GetSoftClassPath +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_GetSoftClassPath final +{ +public: + const class UClass* Class_0; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath ReturnValue; // 0x0008(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSoftClassPath; + +// Function Engine.KismetSystemLibrary.GetSoftClassReferenceFromPrimaryAssetId +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr ReturnValue; // 0x0010(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSoftClassReferenceFromPrimaryAssetId; + +// Function Engine.KismetSystemLibrary.GetSoftClassTopLevelAssetPath +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetSoftClassTopLevelAssetPath final +{ +public: + TSoftClassPtr SoftClassReference; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSoftClassTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.GetSoftObjectPath +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_GetSoftObjectPath final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath ReturnValue; // 0x0008(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSoftObjectPath; + +// Function Engine.KismetSystemLibrary.GetSoftObjectReferenceFromPrimaryAssetId +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr ReturnValue; // 0x0010(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSoftObjectReferenceFromPrimaryAssetId; + +// Function Engine.KismetSystemLibrary.GetStructTopLevelAssetPath +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetStructTopLevelAssetPath final +{ +public: + const class UScriptStruct* Struct; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetStructTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.GetSupportedFullscreenResolutions +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetSupportedFullscreenResolutions final +{ +public: + TArray Resolutions; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_GetSupportedFullscreenResolutions; + +// Function Engine.KismetSystemLibrary.GetSystemPath +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_GetSystemPath final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetSystemPath; + +// Function Engine.KismetSystemLibrary.GetUniqueDeviceId +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_GetUniqueDeviceId final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetUniqueDeviceId; + +// Function Engine.KismetSystemLibrary.GetVolumeButtonsHandledBySystem +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_GetVolumeButtonsHandledBySystem final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_GetVolumeButtonsHandledBySystem; + +// Function Engine.KismetSystemLibrary.HasMultipleLocalPlayers +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_HasMultipleLocalPlayers final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_HasMultipleLocalPlayers; + +// Function Engine.KismetSystemLibrary.IsControllerAssignedToGamepad +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_IsControllerAssignedToGamepad final +{ +public: + int32 ControllerId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsControllerAssignedToGamepad; + +// Function Engine.KismetSystemLibrary.IsDedicatedServer +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsDedicatedServer final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsDedicatedServer; + +// Function Engine.KismetSystemLibrary.IsInterstitialAdAvailable +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_IsInterstitialAdAvailable final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_IsInterstitialAdAvailable; + +// Function Engine.KismetSystemLibrary.IsInterstitialAdRequested +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_IsInterstitialAdRequested final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_IsInterstitialAdRequested; + +// Function Engine.KismetSystemLibrary.IsLoggedIn +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsLoggedIn final +{ +public: + const class APlayerController* SpecificPlayer; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsLoggedIn; + +// Function Engine.KismetSystemLibrary.IsObjectOfSoftClass +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_IsObjectOfSoftClass final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr SoftClass; // 0x0008(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsObjectOfSoftClass; + +// Function Engine.KismetSystemLibrary.IsPackagedForDistribution +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_IsPackagedForDistribution final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_IsPackagedForDistribution; + +// Function Engine.KismetSystemLibrary.IsScreensaverEnabled +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_IsScreensaverEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_IsScreensaverEnabled; + +// Function Engine.KismetSystemLibrary.IsServer +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsServer final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsServer; + +// Function Engine.KismetSystemLibrary.IsSplitScreen +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsSplitScreen final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsSplitScreen; + +// Function Engine.KismetSystemLibrary.IsStandalone +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsStandalone final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsStandalone; + +// Function Engine.KismetSystemLibrary.IsUnattended +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_IsUnattended final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_IsUnattended; + +// Function Engine.KismetSystemLibrary.IsValid +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsValid final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValid; + +// Function Engine.KismetSystemLibrary.IsValidClass +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_IsValidClass final +{ +public: + class UClass* Class_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidClass; + +// Function Engine.KismetSystemLibrary.IsValidInterface +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_IsValidInterface final +{ +public: + TScriptInterface Interface; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidInterface; + +// Function Engine.KismetSystemLibrary.IsValidPrimaryAssetId +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_IsValidPrimaryAssetId final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidPrimaryAssetId; + +// Function Engine.KismetSystemLibrary.IsValidPrimaryAssetType +// 0x000C (0x000C - 0x0000) +struct KismetSystemLibrary_IsValidPrimaryAssetType final +{ +public: + struct FPrimaryAssetType PrimaryAssetType; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidPrimaryAssetType; + +// Function Engine.KismetSystemLibrary.IsValidSoftClassReference +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_IsValidSoftClassReference final +{ +public: + TSoftClassPtr SoftClassReference; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidSoftClassReference; + +// Function Engine.KismetSystemLibrary.IsValidSoftObjectReference +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_IsValidSoftObjectReference final +{ +public: + TSoftObjectPtr SoftObjectReference; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_IsValidSoftObjectReference; + +// Function Engine.KismetSystemLibrary.K2_ClearAndInvalidateTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_ClearAndInvalidateTimerHandle; + +// Function Engine.KismetSystemLibrary.K2_ClearTimer +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_ClearTimer final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_ClearTimer; + +// Function Engine.KismetSystemLibrary.K2_ClearTimerDelegate +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_ClearTimerDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_ClearTimerDelegate; + +// Function Engine.KismetSystemLibrary.K2_ClearTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_ClearTimerHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_ClearTimerHandle; + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTime +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerElapsedTime final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_GetTimerElapsedTime; + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTimeDelegate +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_GetTimerElapsedTimeDelegate; + +// Function Engine.KismetSystemLibrary.K2_GetTimerElapsedTimeHandle +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerElapsedTimeHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_GetTimerElapsedTimeHandle; + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTime +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerRemainingTime final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_GetTimerRemainingTime; + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTimeDelegate +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_GetTimerRemainingTimeDelegate; + +// Function Engine.KismetSystemLibrary.K2_GetTimerRemainingTimeHandle +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_GetTimerRemainingTimeHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_GetTimerRemainingTimeHandle; + +// Function Engine.KismetSystemLibrary.K2_InvalidateTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_InvalidateTimerHandle final +{ +public: + struct FTimerHandle Handle; // 0x0000(0x0008)(Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_InvalidateTimerHandle; + +// Function Engine.KismetSystemLibrary.K2_IsTimerActive +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerActive final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerActive; + +// Function Engine.KismetSystemLibrary.K2_IsTimerActiveDelegate +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerActiveDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerActiveDelegate; + +// Function Engine.KismetSystemLibrary.K2_IsTimerActiveHandle +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerActiveHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerActiveHandle; + +// Function Engine.KismetSystemLibrary.K2_IsTimerPaused +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerPaused final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerPaused; + +// Function Engine.KismetSystemLibrary.K2_IsTimerPausedDelegate +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerPausedDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerPausedDelegate; + +// Function Engine.KismetSystemLibrary.K2_IsTimerPausedHandle +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_IsTimerPausedHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsTimerPausedHandle; + +// Function Engine.KismetSystemLibrary.K2_IsValidTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_IsValidTimerHandle final +{ +public: + struct FTimerHandle Handle; // 0x0000(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_IsValidTimerHandle; + +// Function Engine.KismetSystemLibrary.K2_PauseTimer +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_PauseTimer final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_PauseTimer; + +// Function Engine.KismetSystemLibrary.K2_PauseTimerDelegate +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_PauseTimerDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_PauseTimerDelegate; + +// Function Engine.KismetSystemLibrary.K2_PauseTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_PauseTimerHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_PauseTimerHandle; + +// Function Engine.KismetSystemLibrary.K2_SetTimer +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_K2_SetTimer final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMaxOncePerFrame; // 0x001D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float InitialStartDelay; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialStartDelayVariance; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_SetTimer; + +// Function Engine.KismetSystemLibrary.K2_SetTimerDelegate +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_K2_SetTimerDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMaxOncePerFrame; // 0x0015(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16[0x2]; // 0x0016(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float InitialStartDelay; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InitialStartDelayVariance; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_SetTimerDelegate; + +// Function Engine.KismetSystemLibrary.K2_SetTimerForNextTick +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_SetTimerForNextTick final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_SetTimerForNextTick; + +// Function Engine.KismetSystemLibrary.K2_SetTimerForNextTickDelegate +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_SetTimerForNextTickDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_SetTimerForNextTickDelegate; + +// Function Engine.KismetSystemLibrary.K2_TimerExists +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_K2_TimerExists final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_TimerExists; + +// Function Engine.KismetSystemLibrary.K2_TimerExistsDelegate +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_K2_TimerExistsDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_TimerExistsDelegate; + +// Function Engine.KismetSystemLibrary.K2_TimerExistsHandle +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_TimerExistsHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_K2_TimerExistsHandle; + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimer +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_K2_UnPauseTimer final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FunctionName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_UnPauseTimer; + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimerDelegate +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_UnPauseTimerDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_UnPauseTimerDelegate; + +// Function Engine.KismetSystemLibrary.K2_UnPauseTimerHandle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_K2_UnPauseTimerHandle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimerHandle Handle; // 0x0008(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_K2_UnPauseTimerHandle; + +// Function Engine.KismetSystemLibrary.LaunchExternalUrl +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_LaunchExternalUrl final +{ +public: + TArray InDomainStrings; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class FString URL; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LaunchExternalUrl; + +// Function Engine.KismetSystemLibrary.LaunchURL +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_LaunchURL final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LaunchURL; + +// Function Engine.KismetSystemLibrary.LineTraceMulti +// 0x0098 (0x0098 - 0x0000) +struct KismetSystemLibrary_LineTraceMulti final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0058(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x006C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x007C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x008C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0090(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceMulti; + +// Function Engine.KismetSystemLibrary.LineTraceMultiByProfile +// 0x00A0 (0x00A0 - 0x0000) +struct KismetSystemLibrary_LineTraceMultiByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0074(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0084(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0094(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0098(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceMultiByProfile; + +// Function Engine.KismetSystemLibrary.LineTraceMultiForObjects +// 0x00A8 (0x00A8 - 0x0000) +struct KismetSystemLibrary_LineTraceMultiForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0038(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0068(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x3]; // 0x0079(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x007C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x008C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x009C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0x7]; // 0x00A1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceMultiForObjects; + +// Function Engine.KismetSystemLibrary.LineTraceSingle +// 0x0188 (0x0188 - 0x0000) +struct KismetSystemLibrary_LineTraceSingle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0058(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0158(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x3]; // 0x0159(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x015C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x016C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x017C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0180(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_181[0x7]; // 0x0181(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceSingle; + +// Function Engine.KismetSystemLibrary.LineTraceSingleByProfile +// 0x0190 (0x0190 - 0x0000) +struct KismetSystemLibrary_LineTraceSingleByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0060(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0160(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0164(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0174(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0184(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0188(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceSingleByProfile; + +// Function Engine.KismetSystemLibrary.LineTraceSingleForObjects +// 0x0198 (0x0198 - 0x0000) +struct KismetSystemLibrary_LineTraceSingleForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0038(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0068(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_169[0x3]; // 0x0169(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x016C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x017C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x018C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0190(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_191[0x7]; // 0x0191(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LineTraceSingleForObjects; + +// Function Engine.KismetSystemLibrary.LoadAsset +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_LoadAsset final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Asset; // 0x0008(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate OnLoaded; // 0x0030(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLatentActionInfo LatentInfo; // 0x0040(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LoadAsset; + +// Function Engine.KismetSystemLibrary.LoadAsset_Blocking +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_LoadAsset_Blocking final +{ +public: + TSoftObjectPtr Asset; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LoadAsset_Blocking; + +// Function Engine.KismetSystemLibrary.LoadAssetClass +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_LoadAssetClass final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr AssetClass; // 0x0008(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate Loaded)> OnLoaded; // 0x0030(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLatentActionInfo LatentInfo; // 0x0040(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LoadAssetClass; + +// Function Engine.KismetSystemLibrary.LoadClassAsset_Blocking +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_LoadClassAsset_Blocking final +{ +public: + TSoftClassPtr AssetClass; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LoadClassAsset_Blocking; + +// Function Engine.KismetSystemLibrary.LoadInterstitialAd +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_LoadInterstitialAd final +{ +public: + int32 AdIdIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_LoadInterstitialAd; + +// Function Engine.KismetSystemLibrary.LogString +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_LogString final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrintToLog; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_LogString; + +// Function Engine.KismetSystemLibrary.MakeARFilter +// 0x0248 (0x0248 - 0x0000) +struct KismetSystemLibrary_MakeARFilter final +{ +public: + TArray PackageNames; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray PackagePaths; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray SoftObjectPaths; // 0x0020(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ClassPaths; // 0x0030(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TSet RecursiveClassPathsExclusionSet; // 0x0040(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray ClassNames; // 0x0090(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, AdvancedDisplay, NativeAccessSpecifierPublic) + TSet RecursiveClassesExclusionSet; // 0x00A0(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bRecursivePaths; // 0x00F0(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecursiveClasses; // 0x00F1(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeOnlyOnDiskAssets; // 0x00F2(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F3[0x5]; // 0x00F3(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FARFilter ReturnValue; // 0x00F8(0x0150)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeARFilter; + +// Function Engine.KismetSystemLibrary.MakeLiteralBool +// 0x0002 (0x0002 - 0x0000) +struct KismetSystemLibrary_MakeLiteralBool final +{ +public: + bool Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralBool; + +// Function Engine.KismetSystemLibrary.MakeLiteralByte +// 0x0002 (0x0002 - 0x0000) +struct KismetSystemLibrary_MakeLiteralByte final +{ +public: + uint8 Value; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralByte; + +// Function Engine.KismetSystemLibrary.MakeLiteralDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_MakeLiteralDouble final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralDouble; + +// Function Engine.KismetSystemLibrary.MakeLiteralInt +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_MakeLiteralInt final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralInt; + +// Function Engine.KismetSystemLibrary.MakeLiteralInt64 +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_MakeLiteralInt64 final +{ +public: + int64 Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralInt64; + +// Function Engine.KismetSystemLibrary.MakeLiteralName +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_MakeLiteralName final +{ +public: + class FName Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralName; + +// Function Engine.KismetSystemLibrary.MakeLiteralString +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_MakeLiteralString final +{ +public: + class FString Value; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralString; + +// Function Engine.KismetSystemLibrary.MakeLiteralText +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_MakeLiteralText final +{ +public: + class FText Value; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + class FText ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeLiteralText; + +// Function Engine.KismetSystemLibrary.MakeSoftClassPath +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_MakeSoftClassPath final +{ +public: + class FString PathString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftClassPath ReturnValue; // 0x0010(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeSoftClassPath; + +// Function Engine.KismetSystemLibrary.MakeSoftObjectPath +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_MakeSoftObjectPath final +{ +public: + class FString PathString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath ReturnValue; // 0x0010(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeSoftObjectPath; + +// Function Engine.KismetSystemLibrary.MakeTopLevelAssetPath +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_MakeTopLevelAssetPath final +{ +public: + class FString PackageName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString AssetName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MakeTopLevelAssetPath; + +// Function Engine.KismetSystemLibrary.MoveComponentTo +// 0x0060 (0x0060 - 0x0000) +struct KismetSystemLibrary_MoveComponentTo final +{ +public: + class USceneComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetRelativeLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator TargetRelativeRotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bEaseOut; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEaseIn; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x2]; // 0x003A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float OverTime; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceShortestRotationPath; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMoveComponentAction MoveAction; // 0x0041(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_42[0x6]; // 0x0042(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0048(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_MoveComponentTo; + +// Function Engine.KismetSystemLibrary.NormalizeFilename +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_NormalizeFilename final +{ +public: + class FString InFilename; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_NormalizeFilename; + +// Function Engine.KismetSystemLibrary.NotEqual_PrimaryAssetId +// 0x0024 (0x0024 - 0x0000) +struct KismetSystemLibrary_NotEqual_PrimaryAssetId final +{ +public: + struct FPrimaryAssetId A; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId B; // 0x0010(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_NotEqual_PrimaryAssetId; + +// Function Engine.KismetSystemLibrary.NotEqual_PrimaryAssetType +// 0x0014 (0x0014 - 0x0000) +struct KismetSystemLibrary_NotEqual_PrimaryAssetType final +{ +public: + struct FPrimaryAssetType A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetType B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_NotEqual_PrimaryAssetType; + +// Function Engine.KismetSystemLibrary.NotEqual_SoftClassReference +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_NotEqual_SoftClassReference final +{ +public: + TSoftClassPtr A; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr B; // 0x0028(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_NotEqual_SoftClassReference; + +// Function Engine.KismetSystemLibrary.NotEqual_SoftObjectReference +// 0x0058 (0x0058 - 0x0000) +struct KismetSystemLibrary_NotEqual_SoftObjectReference final +{ +public: + TSoftObjectPtr A; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr B; // 0x0028(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_NotEqual_SoftObjectReference; + +// Function Engine.KismetSystemLibrary.ParseCommandLine +// 0x0080 (0x0080 - 0x0000) +struct KismetSystemLibrary_ParseCommandLine final +{ +public: + class FString InCmdLine; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutTokens; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray OutSwitches; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TMap OutParams; // 0x0030(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ParseCommandLine; + +// Function Engine.KismetSystemLibrary.ParseParam +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_ParseParam final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InParam; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_ParseParam; + +// Function Engine.KismetSystemLibrary.ParseParamValue +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_ParseParamValue final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InParam; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_ParseParamValue; + +// Function Engine.KismetSystemLibrary.PrintString +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_PrintString final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InString; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrintToScreen; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrintToLog; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TextColor; // 0x001C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Key; // 0x0030(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_PrintString; + +// Function Engine.KismetSystemLibrary.PrintText +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_PrintText final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText InText; // 0x0008(0x0010)(ConstParm, Parm, NativeAccessSpecifierPublic) + bool bPrintToScreen; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrintToLog; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TextColor; // 0x001C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Key; // 0x0030(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_PrintText; + +// Function Engine.KismetSystemLibrary.PrintWarning +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_PrintWarning final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_PrintWarning; + +// Function Engine.KismetSystemLibrary.QuitGame +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_QuitGame final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerController* SpecificPlayer; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EQuitPreference QuitPreference; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnorePlatformRestrictions; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_QuitGame; + +// Function Engine.KismetSystemLibrary.ResetGamepadAssignmentToController +// 0x0004 (0x0004 - 0x0000) +struct KismetSystemLibrary_ResetGamepadAssignmentToController final +{ +public: + int32 ControllerId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ResetGamepadAssignmentToController; + +// Function Engine.KismetSystemLibrary.RetriggerableDelay +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_RetriggerableDelay final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0010(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_RetriggerableDelay; + +// Function Engine.KismetSystemLibrary.SetBoolPropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetBoolPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Value; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetBoolPropertyByName; + +// Function Engine.KismetSystemLibrary.SetBytePropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetBytePropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Value; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetBytePropertyByName; + +// Function Engine.KismetSystemLibrary.SetClassPropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetClassPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Value; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetClassPropertyByName; + +// Function Engine.KismetSystemLibrary.SetCollisionProfileNameProperty +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetCollisionProfileNameProperty final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCollisionProfileName Value; // 0x0010(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetCollisionProfileNameProperty; + +// Function Engine.KismetSystemLibrary.SetColorPropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetColorPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor Value; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetColorPropertyByName; + +// Function Engine.KismetSystemLibrary.SetDoublePropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetDoublePropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Value; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetDoublePropertyByName; + +// Function Engine.KismetSystemLibrary.SetFieldPathPropertyByName +// 0x0030 (0x0030 - 0x0000) +struct KismetSystemLibrary_SetFieldPathPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TFieldPath Value; // 0x0010(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetFieldPathPropertyByName; + +// Function Engine.KismetSystemLibrary.SetGamepadsBlockDeviceFeedback +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_SetGamepadsBlockDeviceFeedback final +{ +public: + bool bBlock; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetGamepadsBlockDeviceFeedback; + +// Function Engine.KismetSystemLibrary.SetInt64PropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetInt64PropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Value; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetInt64PropertyByName; + +// Function Engine.KismetSystemLibrary.SetInterfacePropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_SetInterfacePropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TScriptInterface Value; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetInterfacePropertyByName; + +// Function Engine.KismetSystemLibrary.SetIntPropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetIntPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Value; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetIntPropertyByName; + +// Function Engine.KismetSystemLibrary.SetLinearColorPropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_SetLinearColorPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Value; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetLinearColorPropertyByName; + +// Function Engine.KismetSystemLibrary.SetNamePropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetNamePropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Value; // 0x0010(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetNamePropertyByName; + +// Function Engine.KismetSystemLibrary.SetObjectPropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetObjectPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Value; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetObjectPropertyByName; + +// Function Engine.KismetSystemLibrary.SetRotatorPropertyByName +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_SetRotatorPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Value; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetRotatorPropertyByName; + +// Function Engine.KismetSystemLibrary.SetSoftClassPropertyByName +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_SetSoftClassPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr Value; // 0x0010(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetSoftClassPropertyByName; + +// Function Engine.KismetSystemLibrary.SetSoftObjectPropertyByName +// 0x0038 (0x0038 - 0x0000) +struct KismetSystemLibrary_SetSoftObjectPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Value; // 0x0010(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetSoftObjectPropertyByName; + +// Function Engine.KismetSystemLibrary.SetStringPropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_SetStringPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Value; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetStringPropertyByName; + +// Function Engine.KismetSystemLibrary.SetStructurePropertyByName +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetStructurePropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGenericStruct Value; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetStructurePropertyByName; + +// Function Engine.KismetSystemLibrary.SetSuppressViewportTransitionMessage +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_SetSuppressViewportTransitionMessage final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetSuppressViewportTransitionMessage; + +// Function Engine.KismetSystemLibrary.SetTextPropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_SetTextPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText Value; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetTextPropertyByName; + +// Function Engine.KismetSystemLibrary.SetTransformPropertyByName +// 0x0070 (0x0070 - 0x0000) +struct KismetSystemLibrary_SetTransformPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform Value; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetTransformPropertyByName; + +// Function Engine.KismetSystemLibrary.SetUserActivity +// 0x0018 (0x0018 - 0x0000) +struct KismetSystemLibrary_SetUserActivity final +{ +public: + struct FUserActivity UserActivity; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetUserActivity; + +// Function Engine.KismetSystemLibrary.SetVector3fPropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetSystemLibrary_SetVector3fPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f Value; // 0x0010(0x000C)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SetVector3fPropertyByName; + +// Function Engine.KismetSystemLibrary.SetVectorPropertyByName +// 0x0028 (0x0028 - 0x0000) +struct KismetSystemLibrary_SetVectorPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Value; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetVectorPropertyByName; + +// Function Engine.KismetSystemLibrary.SetVolumeButtonsHandledBySystem +// 0x0001 (0x0001 - 0x0000) +struct KismetSystemLibrary_SetVolumeButtonsHandledBySystem final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetVolumeButtonsHandledBySystem; + +// Function Engine.KismetSystemLibrary.SetWindowTitle +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_SetWindowTitle final +{ +public: + class FText Title; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SetWindowTitle; + +// Function Engine.KismetSystemLibrary.ShowAdBanner +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_ShowAdBanner final +{ +public: + int32 AdIdIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowOnBottomOfScreen; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_ShowAdBanner; + +// Function Engine.KismetSystemLibrary.ShowPlatformSpecificAchievementsScreen +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen final +{ +public: + const class APlayerController* SpecificPlayer; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ShowPlatformSpecificAchievementsScreen; + +// Function Engine.KismetSystemLibrary.ShowPlatformSpecificLeaderboardScreen +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen final +{ +public: + class FString CategoryName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_ShowPlatformSpecificLeaderboardScreen; + +// Function Engine.KismetSystemLibrary.SnapshotObject +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_SnapshotObject final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_SnapshotObject; + +// Function Engine.KismetSystemLibrary.SphereOverlapActors +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_SphereOverlapActors final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SpherePos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ActorClassFilter; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0060(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereOverlapActors; + +// Function Engine.KismetSystemLibrary.SphereOverlapComponents +// 0x0068 (0x0068 - 0x0000) +struct KismetSystemLibrary_SphereOverlapComponents final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SpherePos; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UClass* ComponentClassFilter; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutComponents; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0060(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereOverlapComponents; + +// Function Engine.KismetSystemLibrary.SphereTraceMulti +// 0x0098 (0x0098 - 0x0000) +struct KismetSystemLibrary_SphereTraceMulti final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x003C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x003D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3E[0x2]; // 0x003E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0058(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x006C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x007C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x008C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0090(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_91[0x7]; // 0x0091(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceMulti; + +// Function Engine.KismetSystemLibrary.SphereTraceMultiByProfile +// 0x00A0 (0x00A0 - 0x0000) +struct KismetSystemLibrary_SphereTraceMultiByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x003C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0044(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0074(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0084(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0094(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0098(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceMultiByProfile; + +// Function Engine.KismetSystemLibrary.SphereTraceMultiForObjects +// 0x00B0 (0x00B0 - 0x0000) +struct KismetSystemLibrary_SphereTraceMultiForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0058(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutHits; // 0x0070(0x0010)(Parm, OutParm, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x3]; // 0x0081(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0084(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0094(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x00A4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x7]; // 0x00A9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceMultiForObjects; + +// Function Engine.KismetSystemLibrary.SphereTraceSingle +// 0x0188 (0x0188 - 0x0000) +struct KismetSystemLibrary_SphereTraceSingle final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x003C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x003D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3E[0x2]; // 0x003E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0058(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0158(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x3]; // 0x0159(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x015C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x016C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x017C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0180(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_181[0x7]; // 0x0181(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceSingle; + +// Function Engine.KismetSystemLibrary.SphereTraceSingleByProfile +// 0x0190 (0x0190 - 0x0000) +struct KismetSystemLibrary_SphereTraceSingleByProfile final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x003C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0044(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0048(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0060(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0160(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0164(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0174(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0184(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0188(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_189[0x7]; // 0x0189(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceSingleByProfile; + +// Function Engine.KismetSystemLibrary.SphereTraceSingleForObjects +// 0x01A0 (0x01A0 - 0x0000) +struct KismetSystemLibrary_SphereTraceSingleForObjects final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0058(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult OutHit; // 0x0070(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bIgnoreSelf; // 0x0170(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_171[0x3]; // 0x0171(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor TraceColor; // 0x0174(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TraceHitColor; // 0x0184(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawTime; // 0x0194(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0198(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_199[0x7]; // 0x0199(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetSystemLibrary_SphereTraceSingleForObjects; + +// Function Engine.KismetSystemLibrary.TransactObject +// 0x0008 (0x0008 - 0x0000) +struct KismetSystemLibrary_TransactObject final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_TransactObject; + +// Function Engine.KismetSystemLibrary.UnloadPrimaryAsset +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_UnloadPrimaryAsset final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_UnloadPrimaryAsset; + +// Function Engine.KismetSystemLibrary.UnloadPrimaryAssetList +// 0x0010 (0x0010 - 0x0000) +struct KismetSystemLibrary_UnloadPrimaryAssetList final +{ +public: + TArray PrimaryAssetIdList; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetSystemLibrary_UnloadPrimaryAssetList; + +// Function Engine.MaterialExpressionDataDrivenShaderPlatformInfoSwitch.GetNameOptions +// 0x0010 (0x0010 - 0x0000) +struct MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//MaterialExpressionDataDrivenShaderPlatformInfoSwitch_GetNameOptions; + +// Function Engine.BlueprintMapLibrary.Map_Add +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_Add final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Key; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Value; // 0x0054(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintMapLibrary_Map_Add; + +// Function Engine.BlueprintMapLibrary.Map_Clear +// 0x0050 (0x0050 - 0x0000) +struct BlueprintMapLibrary_Map_Clear final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintMapLibrary_Map_Clear; + +// Function Engine.BlueprintMapLibrary.Map_Contains +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_Contains final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Key; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0054(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_Contains; + +// Function Engine.BlueprintMapLibrary.Map_Find +// 0x0060 (0x0060 - 0x0000) +struct BlueprintMapLibrary_Map_Find final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Key; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Value; // 0x0054(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0058(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_Find; + +// Function Engine.BlueprintMapLibrary.Map_IsEmpty +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_IsEmpty final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_IsEmpty; + +// Function Engine.BlueprintMapLibrary.Map_IsNotEmpty +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_IsNotEmpty final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_IsNotEmpty; + +// Function Engine.BlueprintMapLibrary.Map_Keys +// 0x0060 (0x0060 - 0x0000) +struct BlueprintMapLibrary_Map_Keys final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray Keys; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//BlueprintMapLibrary_Map_Keys; + +// Function Engine.BlueprintMapLibrary.Map_Length +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_Length final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_Length; + +// Function Engine.BlueprintMapLibrary.Map_Remove +// 0x0058 (0x0058 - 0x0000) +struct BlueprintMapLibrary_Map_Remove final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Key; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0054(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintMapLibrary_Map_Remove; + +// Function Engine.BlueprintMapLibrary.Map_Values +// 0x0060 (0x0060 - 0x0000) +struct BlueprintMapLibrary_Map_Values final +{ +public: + TMap TargetMap; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray Values; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//BlueprintMapLibrary_Map_Values; + +// Function Engine.BlueprintMapLibrary.SetMapPropertyByName +// 0x0060 (0x0060 - 0x0000) +struct BlueprintMapLibrary_SetMapPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap Value; // 0x0010(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintMapLibrary_SetMapPropertyByName; + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.GetInterfaceClass +// 0x0010 (0x0010 - 0x0000) +struct CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass final +{ +public: + struct FCameraLensInterfaceClassSupport CameraLens; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + TSubclassOf ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraLensEffectInterfaceClassSupportLibrary_GetInterfaceClass; + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.IsInterfaceClassValid +// 0x0010 (0x0010 - 0x0000) +struct CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid final +{ +public: + struct FCameraLensInterfaceClassSupport CameraLens; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EInterfaceValidResult Result; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceClassValid; + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.IsInterfaceValid +// 0x0018 (0x0018 - 0x0000) +struct CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid final +{ +public: + TScriptInterface CameraLens; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInterfaceValidResult Result; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraLensEffectInterfaceClassSupportLibrary_IsInterfaceValid; + +// Function Engine.CameraLensEffectInterfaceClassSupportLibrary.SetInterfaceClass +// 0x0018 (0x0018 - 0x0000) +struct CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass final +{ +public: + TSubclassOf Class_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCameraLensInterfaceClassSupport Var; // 0x0008(0x0008)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EInterfaceValidResult Result; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraLensEffectInterfaceClassSupportLibrary_SetInterfaceClass; + +// Function Engine.WorldPartitionStreamingSourceComponent.IsStreamingCompleted +// 0x0001 (0x0001 - 0x0000) +struct WorldPartitionStreamingSourceComponent_IsStreamingCompleted final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WorldPartitionStreamingSourceComponent_IsStreamingCompleted; + +// Function Engine.WorldPartitionStreamingSourceComponent.IsStreamingSourceEnabled +// 0x0001 (0x0001 - 0x0000) +struct WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WorldPartitionStreamingSourceComponent_IsStreamingSourceEnabled; + +// Function Engine.CurveVector.GetVectorValue +// 0x0020 (0x0020 - 0x0000) +struct CurveVector_GetVectorValue final +{ +public: + float InTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveVector_GetVectorValue; + +// Function Engine.VOIPStatics.SetMicThreshold +// 0x0004 (0x0004 - 0x0000) +struct VOIPStatics_SetMicThreshold final +{ +public: + float InThreshold; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VOIPStatics_SetMicThreshold; + +// Function Engine.PawnNoiseEmitterComponent.MakeNoise +// 0x0028 (0x0028 - 0x0000) +struct PawnNoiseEmitterComponent_MakeNoise final +{ +public: + class AActor* NoiseMaker; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Loudness; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NoiseLocation; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PawnNoiseEmitterComponent_MakeNoise; + +// Function Engine.PostProcessComponent.AddOrUpdateBlendable +// 0x0018 (0x0018 - 0x0000) +struct PostProcessComponent_AddOrUpdateBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InWeight; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PostProcessComponent_AddOrUpdateBlendable; + +// Function Engine.RuntimeVirtualTextureComponent.Invalidate +// 0x0038 (0x0038 - 0x0000) +struct RuntimeVirtualTextureComponent_Invalidate final +{ +public: + struct FBoxSphereBounds WorldBounds; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTextureComponent_Invalidate; + +// Function Engine.SplineMeshComponent.SetBoundaryMax +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetBoundaryMax final +{ +public: + float InBoundaryMax; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetBoundaryMax; + +// Function Engine.SplineMeshComponent.SetBoundaryMin +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetBoundaryMin final +{ +public: + float InBoundaryMin; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetBoundaryMin; + +// Function Engine.SplineMeshComponent.SetEndOffset +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_SetEndOffset final +{ +public: + struct FVector2D EndOffset; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndOffset; + +// Function Engine.SplineMeshComponent.SetEndPosition +// 0x0020 (0x0020 - 0x0000) +struct SplineMeshComponent_SetEndPosition final +{ +public: + struct FVector EndPos; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndPosition; + +// Function Engine.SplineMeshComponent.SetEndRoll +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetEndRoll final +{ +public: + float EndRoll; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndRoll; + +// Function Engine.SplineMeshComponent.SetEndRollDegrees +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetEndRollDegrees final +{ +public: + float EndRollDegrees; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndRollDegrees; + +// Function Engine.SplineMeshComponent.SetEndScale +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_SetEndScale final +{ +public: + struct FVector2D EndScale; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndScale; + +// Function Engine.SplineMeshComponent.SetEndTangent +// 0x0020 (0x0020 - 0x0000) +struct SplineMeshComponent_SetEndTangent final +{ +public: + struct FVector EndTangent; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetEndTangent; + +// Function Engine.SplineMeshComponent.SetForwardAxis +// 0x0002 (0x0002 - 0x0000) +struct SplineMeshComponent_SetForwardAxis final +{ +public: + ESplineMeshAxis InForwardAxis; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_SetForwardAxis; + +// Function Engine.SplineMeshComponent.SetSplineUpDir +// 0x0020 (0x0020 - 0x0000) +struct SplineMeshComponent_SetSplineUpDir final +{ +public: + struct FVector InSplineUpDir; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetSplineUpDir; + +// Function Engine.SplineMeshComponent.SetStartAndEnd +// 0x0068 (0x0068 - 0x0000) +struct SplineMeshComponent_SetStartAndEnd final +{ +public: + struct FVector StartPos; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartTangent; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndPos; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndTangent; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartAndEnd; + +// Function Engine.SplineMeshComponent.SetStartOffset +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_SetStartOffset final +{ +public: + struct FVector2D StartOffset; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartOffset; + +// Function Engine.SplineMeshComponent.SetStartPosition +// 0x0020 (0x0020 - 0x0000) +struct SplineMeshComponent_SetStartPosition final +{ +public: + struct FVector StartPos; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartPosition; + +// Function Engine.SplineMeshComponent.SetStartRoll +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetStartRoll final +{ +public: + float StartRoll; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartRoll; + +// Function Engine.SplineMeshComponent.SetStartRollDegrees +// 0x0008 (0x0008 - 0x0000) +struct SplineMeshComponent_SetStartRollDegrees final +{ +public: + float StartRollDegrees; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartRollDegrees; + +// Function Engine.SplineMeshComponent.SetStartScale +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_SetStartScale final +{ +public: + struct FVector2D StartScale; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartScale; + +// Function Engine.SplineMeshComponent.SetStartTangent +// 0x0020 (0x0020 - 0x0000) +struct SplineMeshComponent_SetStartTangent final +{ +public: + struct FVector StartTangent; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateMesh; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineMeshComponent_SetStartTangent; + +// Function Engine.SplineMeshComponent.GetBoundaryMax +// 0x0004 (0x0004 - 0x0000) +struct SplineMeshComponent_GetBoundaryMax final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetBoundaryMax; + +// Function Engine.SplineMeshComponent.GetBoundaryMin +// 0x0004 (0x0004 - 0x0000) +struct SplineMeshComponent_GetBoundaryMin final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetBoundaryMin; + +// Function Engine.SplineMeshComponent.GetEndOffset +// 0x0010 (0x0010 - 0x0000) +struct SplineMeshComponent_GetEndOffset final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetEndOffset; + +// Function Engine.SplineMeshComponent.GetEndPosition +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_GetEndPosition final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetEndPosition; + +// Function Engine.SplineMeshComponent.GetEndRoll +// 0x0004 (0x0004 - 0x0000) +struct SplineMeshComponent_GetEndRoll final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetEndRoll; + +// Function Engine.SplineMeshComponent.GetEndScale +// 0x0010 (0x0010 - 0x0000) +struct SplineMeshComponent_GetEndScale final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetEndScale; + +// Function Engine.SplineMeshComponent.GetEndTangent +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_GetEndTangent final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetEndTangent; + +// Function Engine.SplineMeshComponent.GetForwardAxis +// 0x0001 (0x0001 - 0x0000) +struct SplineMeshComponent_GetForwardAxis final +{ +public: + ESplineMeshAxis ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetForwardAxis; + +// Function Engine.SplineMeshComponent.GetSplineUpDir +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_GetSplineUpDir final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetSplineUpDir; + +// Function Engine.SplineMeshComponent.GetStartOffset +// 0x0010 (0x0010 - 0x0000) +struct SplineMeshComponent_GetStartOffset final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetStartOffset; + +// Function Engine.SplineMeshComponent.GetStartPosition +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_GetStartPosition final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetStartPosition; + +// Function Engine.SplineMeshComponent.GetStartRoll +// 0x0004 (0x0004 - 0x0000) +struct SplineMeshComponent_GetStartRoll final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetStartRoll; + +// Function Engine.SplineMeshComponent.GetStartScale +// 0x0010 (0x0010 - 0x0000) +struct SplineMeshComponent_GetStartScale final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetStartScale; + +// Function Engine.SplineMeshComponent.GetStartTangent +// 0x0018 (0x0018 - 0x0000) +struct SplineMeshComponent_GetStartTangent final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineMeshComponent_GetStartTangent; + +// Function Engine.StereoLayerShapeCylinder.SetHeight +// 0x0004 (0x0004 - 0x0000) +struct StereoLayerShapeCylinder_SetHeight final +{ +public: + int32 InHeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerShapeCylinder_SetHeight; + +// Function Engine.StereoLayerShapeCylinder.SetOverlayArc +// 0x0004 (0x0004 - 0x0000) +struct StereoLayerShapeCylinder_SetOverlayArc final +{ +public: + float InOverlayArc; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerShapeCylinder_SetOverlayArc; + +// Function Engine.StereoLayerShapeCylinder.SetRadius +// 0x0004 (0x0004 - 0x0000) +struct StereoLayerShapeCylinder_SetRadius final +{ +public: + float InRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerShapeCylinder_SetRadius; + +// Function Engine.PlayerCameraManager.AddCameraLensEffect +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_AddCameraLensEffect final +{ +public: + TSubclassOf LensEffectEmitterClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AEmitterCameraLensEffectBase* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_AddCameraLensEffect; + +// Function Engine.PlayerCameraManager.AddGenericCameraLensEffect +// 0x0018 (0x0018 - 0x0000) +struct PlayerCameraManager_AddGenericCameraLensEffect final +{ +public: + TSubclassOf LensEffectEmitterClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TScriptInterface ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_AddGenericCameraLensEffect; + +// Function Engine.PlayerCameraManager.AddNewCameraModifier +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_AddNewCameraModifier final +{ +public: + TSubclassOf ModifierClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraModifier* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_AddNewCameraModifier; + +// Function Engine.PlayerCameraManager.BlueprintUpdateCamera +// 0x0040 (0x0040 - 0x0000) +struct PlayerCameraManager_BlueprintUpdateCamera final +{ +public: + class AActor* CameraTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NewCameraLocation; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewCameraRotation; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float NewCameraFOV; // 0x0038(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x003C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_BlueprintUpdateCamera; + +// Function Engine.PlayerCameraManager.FindCameraModifierByClass +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_FindCameraModifierByClass final +{ +public: + TSubclassOf ModifierClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraModifier* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_FindCameraModifierByClass; + +// Function Engine.PlayerCameraManager.PhotographyCameraModify +// 0x0060 (0x0060 - 0x0000) +struct PlayerCameraManager_PhotographyCameraModify final +{ +public: + struct FVector NewCameraLocation; // 0x0000(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousCameraLocation; // 0x0018(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OriginalCameraLocation; // 0x0030(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ResultCameraLocation; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_PhotographyCameraModify; + +// Function Engine.PlayerCameraManager.RemoveCameraLensEffect +// 0x0008 (0x0008 - 0x0000) +struct PlayerCameraManager_RemoveCameraLensEffect final +{ +public: + class AEmitterCameraLensEffectBase* Emitter; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_RemoveCameraLensEffect; + +// Function Engine.PlayerCameraManager.RemoveCameraModifier +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_RemoveCameraModifier final +{ +public: + class UCameraModifier* ModifierToRemove; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_RemoveCameraModifier; + +// Function Engine.PlayerCameraManager.RemoveGenericCameraLensEffect +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_RemoveGenericCameraLensEffect final +{ +public: + TScriptInterface Emitter; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_RemoveGenericCameraLensEffect; + +// Function Engine.PlayerCameraManager.SetManualCameraFade +// 0x0018 (0x0018 - 0x0000) +struct PlayerCameraManager_SetManualCameraFade final +{ +public: + float InFadeAmount; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x0004(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInFadeAudio; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_SetManualCameraFade; + +// Function Engine.PlayerCameraManager.StartCameraFade +// 0x0020 (0x0020 - 0x0000) +struct PlayerCameraManager_StartCameraFade final +{ +public: + float FromAlpha; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ToAlpha; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x000C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldFadeAudio; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHoldWhenFinished; // 0x001D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_StartCameraFade; + +// Function Engine.PlayerCameraManager.StartCameraShake +// 0x0030 (0x0030 - 0x0000) +struct PlayerCameraManager_StartCameraShake final +{ +public: + TSubclassOf ShakeClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECameraShakePlaySpace PlaySpace; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator UserPlaySpaceRot; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class UCameraShakeBase* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_StartCameraShake; + +// Function Engine.PlayerCameraManager.StartCameraShakeFromSource +// 0x0038 (0x0038 - 0x0000) +struct PlayerCameraManager_StartCameraShakeFromSource final +{ +public: + TSubclassOf ShakeClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraShakeSourceComponent* SourceComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECameraShakePlaySpace PlaySpace; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator UserPlaySpaceRot; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class UCameraShakeBase* ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_StartCameraShakeFromSource; + +// Function Engine.PlayerCameraManager.StopAllCameraShakes +// 0x0001 (0x0001 - 0x0000) +struct PlayerCameraManager_StopAllCameraShakes final +{ +public: + bool bImmediately; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_StopAllCameraShakes; + +// Function Engine.PlayerCameraManager.StopAllCameraShakesFromSource +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_StopAllCameraShakesFromSource final +{ +public: + class UCameraShakeSourceComponent* SourceComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_StopAllCameraShakesFromSource; + +// Function Engine.PlayerCameraManager.StopAllInstancesOfCameraShake +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_StopAllInstancesOfCameraShake final +{ +public: + TSubclassOf Shake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_StopAllInstancesOfCameraShake; + +// Function Engine.PlayerCameraManager.StopAllInstancesOfCameraShakeFromSource +// 0x0018 (0x0018 - 0x0000) +struct PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource final +{ +public: + TSubclassOf Shake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraShakeSourceComponent* SourceComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_StopAllInstancesOfCameraShakeFromSource; + +// Function Engine.PlayerCameraManager.StopCameraShake +// 0x0010 (0x0010 - 0x0000) +struct PlayerCameraManager_StopCameraShake final +{ +public: + class UCameraShakeBase* ShakeInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerCameraManager_StopCameraShake; + +// Function Engine.PlayerCameraManager.GetCameraLocation +// 0x0018 (0x0018 - 0x0000) +struct PlayerCameraManager_GetCameraLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_GetCameraLocation; + +// Function Engine.PlayerCameraManager.GetCameraRotation +// 0x0018 (0x0018 - 0x0000) +struct PlayerCameraManager_GetCameraRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_GetCameraRotation; + +// Function Engine.PlayerCameraManager.GetFOVAngle +// 0x0004 (0x0004 - 0x0000) +struct PlayerCameraManager_GetFOVAngle final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_GetFOVAngle; + +// Function Engine.PlayerCameraManager.GetOwningPlayerController +// 0x0008 (0x0008 - 0x0000) +struct PlayerCameraManager_GetOwningPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerCameraManager_GetOwningPlayerController; + +// Function Engine.AsyncActionLoadPrimaryAsset.AsyncLoadPrimaryAsset +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId PrimaryAsset; // 0x0008(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LoadBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionLoadPrimaryAsset* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionLoadPrimaryAsset_AsyncLoadPrimaryAsset; + +// Function Engine.AsyncActionChangePrimaryAssetBundles.AsyncChangeBundleStateForMatchingPrimaryAssets +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray NewBundles; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OldBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionChangePrimaryAssetBundles* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForMatchingPrimaryAssets; + +// Function Engine.AsyncActionChangePrimaryAssetBundles.AsyncChangeBundleStateForPrimaryAssetList +// 0x0040 (0x0040 - 0x0000) +struct AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PrimaryAssetList; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray AddBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray RemoveBundles; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionChangePrimaryAssetBundles* ReturnValue; // 0x0038(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionChangePrimaryAssetBundles_AsyncChangeBundleStateForPrimaryAssetList; + +// Function Engine.TimelineComponent.AddEvent +// 0x0014 (0x0014 - 0x0000) +struct TimelineComponent_AddEvent final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate EventFunc; // 0x0004(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_AddEvent; + +// Function Engine.TimelineComponent.AddInterpFloat +// 0x0028 (0x0028 - 0x0000) +struct TimelineComponent_AddInterpFloat final +{ +public: + class UCurveFloat* FloatCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_AddInterpFloat; + +// Function Engine.TimelineComponent.AddInterpLinearColor +// 0x0028 (0x0028 - 0x0000) +struct TimelineComponent_AddInterpLinearColor final +{ +public: + class UCurveLinearColor* LinearColorCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_AddInterpLinearColor; + +// Function Engine.TimelineComponent.AddInterpVector +// 0x0028 (0x0028 - 0x0000) +struct TimelineComponent_AddInterpVector final +{ +public: + class UCurveVector* VectorCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_AddInterpVector; + +// Function Engine.TimelineComponent.OnRep_Timeline +// 0x0098 (0x0098 - 0x0000) +struct TimelineComponent_OnRep_Timeline final +{ +public: + struct FTimeline OldTimeline; // 0x0000(0x0098)(Parm, OutParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//TimelineComponent_OnRep_Timeline; + +// Function Engine.TimelineComponent.SetFloatCurve +// 0x0010 (0x0010 - 0x0000) +struct TimelineComponent_SetFloatCurve final +{ +public: + class UCurveFloat* NewFloatCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FloatTrackName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetFloatCurve; + +// Function Engine.TimelineComponent.SetIgnoreTimeDilation +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_SetIgnoreTimeDilation final +{ +public: + bool bNewIgnoreTimeDilation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetIgnoreTimeDilation; + +// Function Engine.TimelineComponent.SetLinearColorCurve +// 0x0010 (0x0010 - 0x0000) +struct TimelineComponent_SetLinearColorCurve final +{ +public: + class UCurveLinearColor* NewLinearColorCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LinearColorTrackName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetLinearColorCurve; + +// Function Engine.TimelineComponent.SetLooping +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_SetLooping final +{ +public: + bool bNewLooping; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetLooping; + +// Function Engine.TimelineComponent.SetNewTime +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_SetNewTime final +{ +public: + float NewTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetNewTime; + +// Function Engine.TimelineComponent.SetPlaybackPosition +// 0x0008 (0x0008 - 0x0000) +struct TimelineComponent_SetPlaybackPosition final +{ +public: + float NewPosition; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireEvents; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireUpdate; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TimelineComponent_SetPlaybackPosition; + +// Function Engine.TimelineComponent.SetPlayRate +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_SetPlayRate final +{ +public: + float NewRate; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetPlayRate; + +// Function Engine.TimelineComponent.SetTimelineFinishedFunc +// 0x0010 (0x0010 - 0x0000) +struct TimelineComponent_SetTimelineFinishedFunc final +{ +public: + TDelegate NewTimelineFinishedFunc; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetTimelineFinishedFunc; + +// Function Engine.TimelineComponent.SetTimelineLength +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_SetTimelineLength final +{ +public: + float NewLength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetTimelineLength; + +// Function Engine.TimelineComponent.SetTimelineLengthMode +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_SetTimelineLengthMode final +{ +public: + ETimelineLengthMode NewLengthMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetTimelineLengthMode; + +// Function Engine.TimelineComponent.SetTimelinePostUpdateFunc +// 0x0010 (0x0010 - 0x0000) +struct TimelineComponent_SetTimelinePostUpdateFunc final +{ +public: + TDelegate NewTimelinePostUpdateFunc; // 0x0000(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetTimelinePostUpdateFunc; + +// Function Engine.TimelineComponent.SetVectorCurve +// 0x0010 (0x0010 - 0x0000) +struct TimelineComponent_SetVectorCurve final +{ +public: + class UCurveVector* NewVectorCurve; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName VectorTrackName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_SetVectorCurve; + +// Function Engine.TimelineComponent.GetIgnoreTimeDilation +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_GetIgnoreTimeDilation final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_GetIgnoreTimeDilation; + +// Function Engine.TimelineComponent.GetPlaybackPosition +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_GetPlaybackPosition final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_GetPlaybackPosition; + +// Function Engine.TimelineComponent.GetPlayRate +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_GetPlayRate final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_GetPlayRate; + +// Function Engine.TimelineComponent.GetScaledTimelineLength +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_GetScaledTimelineLength final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_GetScaledTimelineLength; + +// Function Engine.TimelineComponent.GetTimelineLength +// 0x0004 (0x0004 - 0x0000) +struct TimelineComponent_GetTimelineLength final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_GetTimelineLength; + +// Function Engine.TimelineComponent.IsLooping +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_IsLooping final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_IsLooping; + +// Function Engine.TimelineComponent.IsPlaying +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_IsPlaying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_IsPlaying; + +// Function Engine.TimelineComponent.IsReversing +// 0x0001 (0x0001 - 0x0000) +struct TimelineComponent_IsReversing final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TimelineComponent_IsReversing; + +// Function Engine.CurveSourceInterface.GetBindingName +// 0x0008 (0x0008 - 0x0000) +struct CurveSourceInterface_GetBindingName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveSourceInterface_GetBindingName; + +// Function Engine.CurveSourceInterface.GetCurves +// 0x0010 (0x0010 - 0x0000) +struct CurveSourceInterface_GetCurves final +{ +public: + TArray OutValues; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//CurveSourceInterface_GetCurves; + +// Function Engine.CurveSourceInterface.GetCurveValue +// 0x000C (0x000C - 0x0000) +struct CurveSourceInterface_GetCurveValue final +{ +public: + class FName CurveName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveSourceInterface_GetCurveValue; + +// Function Engine.SkeletalMeshSocket.InitializeSocketFromLocation +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMeshSocket_InitializeSocketFromLocation final +{ +public: + const class USkeletalMeshComponent* SkelComp; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldNormal; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshSocket_InitializeSocketFromLocation; + +// Function Engine.SkeletalMeshSocket.GetSocketLocation +// 0x0020 (0x0020 - 0x0000) +struct SkeletalMeshSocket_GetSocketLocation final +{ +public: + const class USkeletalMeshComponent* SkelComp; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMeshSocket_GetSocketLocation; + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationNotifyStateTime +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0030(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_GetCurrentAnimationNotifyStateTime; + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationNotifyStateTimeRatio +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0030(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_GetCurrentAnimationNotifyStateTimeRatio; + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationTime +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_GetCurrentAnimationTime final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0030(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_GetCurrentAnimationTime; + +// Function Engine.AnimNotifyLibrary.GetCurrentAnimationTimeRatio +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_GetCurrentAnimationTimeRatio final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0030(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_GetCurrentAnimationTimeRatio; + +// Function Engine.AnimNotifyLibrary.IsBlendingOut +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_IsBlendingOut final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_IsBlendingOut; + +// Function Engine.AnimNotifyLibrary.NotifyStateReachedEnd +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyLibrary_NotifyStateReachedEnd final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyLibrary_NotifyStateReachedEnd; + +// Function Engine.MaterialInstanceDynamic.CopyInterpParameters +// 0x0008 (0x0008 - 0x0000) +struct MaterialInstanceDynamic_CopyInterpParameters final +{ +public: + class UMaterialInstance* Source; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_CopyInterpParameters; + +// Function Engine.MaterialInstanceDynamic.CopyParameterOverrides +// 0x0008 (0x0008 - 0x0000) +struct MaterialInstanceDynamic_CopyParameterOverrides final +{ +public: + class UMaterialInstance* MaterialInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_CopyParameterOverrides; + +// Function Engine.MaterialInstanceDynamic.InitializeScalarParameterAndGetIndex +// 0x0014 (0x0014 - 0x0000) +struct MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutParameterIndex; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MaterialInstanceDynamic_InitializeScalarParameterAndGetIndex; + +// Function Engine.MaterialInstanceDynamic.K2_CopyMaterialInstanceParameters +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters final +{ +public: + class UMaterialInterface* Source; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bQuickParametersOnly; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MaterialInstanceDynamic_K2_CopyMaterialInstanceParameters; + +// Function Engine.MaterialInstanceDynamic.K2_GetScalarParameterValue +// 0x000C (0x000C - 0x0000) +struct MaterialInstanceDynamic_K2_GetScalarParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetScalarParameterValue; + +// Function Engine.MaterialInstanceDynamic.K2_GetScalarParameterValueByInfo +// 0x0014 (0x0014 - 0x0000) +struct MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetScalarParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.K2_GetTextureParameterValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceDynamic_K2_GetTextureParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetTextureParameterValue; + +// Function Engine.MaterialInstanceDynamic.K2_GetTextureParameterValueByInfo +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetTextureParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.K2_GetVectorParameterValue +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_K2_GetVectorParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetVectorParameterValue; + +// Function Engine.MaterialInstanceDynamic.K2_GetVectorParameterValueByInfo +// 0x0020 (0x0020 - 0x0000) +struct MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_K2_GetVectorParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams final +{ +public: + class UMaterialInstance* SourceA; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstance* SourceB; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MaterialInstanceDynamic_K2_InterpolateMaterialInstanceParams; + +// Function Engine.MaterialInstanceDynamic.SetDoubleVectorParameterValue +// 0x0030 (0x0030 - 0x0000) +struct MaterialInstanceDynamic_SetDoubleVectorParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Value; // 0x0010(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetDoubleVectorParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetRuntimeVirtualTextureParameterValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class URuntimeVirtualTexture* Value; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetRuntimeVirtualTextureParameterValueByInfo +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class URuntimeVirtualTexture* Value; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetRuntimeVirtualTextureParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterByIndex +// 0x000C (0x000C - 0x0000) +struct MaterialInstanceDynamic_SetScalarParameterByIndex final +{ +public: + int32 ParameterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MaterialInstanceDynamic_SetScalarParameterByIndex; + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterValue +// 0x000C (0x000C - 0x0000) +struct MaterialInstanceDynamic_SetScalarParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetScalarParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetScalarParameterValueByInfo +// 0x0014 (0x0014 - 0x0000) +struct MaterialInstanceDynamic_SetScalarParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetScalarParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.SetSparseVolumeTextureParameterValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USparseVolumeTexture* Value; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetSparseVolumeTextureParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetTextureParameterValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialInstanceDynamic_SetTextureParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* Value; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetTextureParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetTextureParameterValueByInfo +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_SetTextureParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* Value; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetTextureParameterValueByInfo; + +// Function Engine.MaterialInstanceDynamic.SetVectorParameterValue +// 0x0018 (0x0018 - 0x0000) +struct MaterialInstanceDynamic_SetVectorParameterValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Value; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetVectorParameterValue; + +// Function Engine.MaterialInstanceDynamic.SetVectorParameterValueByInfo +// 0x0020 (0x0020 - 0x0000) +struct MaterialInstanceDynamic_SetVectorParameterValueByInfo final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Value; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialInstanceDynamic_SetVectorParameterValueByInfo; + +// Function Engine.NavMovementInterface.RequestDirectMove +// 0x0020 (0x0020 - 0x0000) +struct NavMovementInterface_RequestDirectMove final +{ +public: + struct FVector MoveVelocity; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceMaxSpeed; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//NavMovementInterface_RequestDirectMove; + +// Function Engine.NavMovementInterface.RequestPathMove +// 0x0018 (0x0018 - 0x0000) +struct NavMovementInterface_RequestPathMove final +{ +public: + struct FVector MoveInput; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_RequestPathMove; + +// Function Engine.NavMovementInterface.GetMaxSpeedForNavMovement +// 0x0004 (0x0004 - 0x0000) +struct NavMovementInterface_GetMaxSpeedForNavMovement final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_GetMaxSpeedForNavMovement; + +// Function Engine.NavMovementInterface.GetVelocityForNavMovement +// 0x0018 (0x0018 - 0x0000) +struct NavMovementInterface_GetVelocityForNavMovement final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_GetVelocityForNavMovement; + +// Function Engine.NavMovementInterface.IsCrouching +// 0x0001 (0x0001 - 0x0000) +struct NavMovementInterface_IsCrouching final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_IsCrouching; + +// Function Engine.NavMovementInterface.IsFalling +// 0x0001 (0x0001 - 0x0000) +struct NavMovementInterface_IsFalling final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_IsFalling; + +// Function Engine.NavMovementInterface.IsFlying +// 0x0001 (0x0001 - 0x0000) +struct NavMovementInterface_IsFlying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_IsFlying; + +// Function Engine.NavMovementInterface.IsMovingOnGround +// 0x0001 (0x0001 - 0x0000) +struct NavMovementInterface_IsMovingOnGround final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_IsMovingOnGround; + +// Function Engine.NavMovementInterface.IsSwimming +// 0x0001 (0x0001 - 0x0000) +struct NavMovementInterface_IsSwimming final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NavMovementInterface_IsSwimming; + +// Function Engine.PluginBlueprintLibrary.GetAdditionalPluginSearchPaths +// 0x0010 (0x0010 - 0x0000) +struct PluginBlueprintLibrary_GetAdditionalPluginSearchPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//PluginBlueprintLibrary_GetAdditionalPluginSearchPaths; + +// Function Engine.PluginBlueprintLibrary.GetAdditionalProjectPluginSearchPaths +// 0x0010 (0x0010 - 0x0000) +struct PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PluginBlueprintLibrary_GetAdditionalProjectPluginSearchPaths; + +// Function Engine.PluginBlueprintLibrary.GetEnabledPluginNames +// 0x0010 (0x0010 - 0x0000) +struct PluginBlueprintLibrary_GetEnabledPluginNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//PluginBlueprintLibrary_GetEnabledPluginNames; + +// Function Engine.PluginBlueprintLibrary.GetPluginBaseDir +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginBaseDir final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutBaseDir; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginBaseDir; + +// Function Engine.PluginBlueprintLibrary.GetPluginContentDir +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginContentDir final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutContentDir; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginContentDir; + +// Function Engine.PluginBlueprintLibrary.GetPluginDescription +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginDescription final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutDescription; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginDescription; + +// Function Engine.PluginBlueprintLibrary.GetPluginDescriptorFilePath +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginDescriptorFilePath final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutFilePath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginDescriptorFilePath; + +// Function Engine.PluginBlueprintLibrary.GetPluginEditorCustomVirtualPath +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutVirtualPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginEditorCustomVirtualPath; + +// Function Engine.PluginBlueprintLibrary.GetPluginMountedAssetPath +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginMountedAssetPath final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutAssetPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginMountedAssetPath; + +// Function Engine.PluginBlueprintLibrary.GetPluginNameForObjectPath +// 0x0038 (0x0038 - 0x0000) +struct PluginBlueprintLibrary_GetPluginNameForObjectPath final +{ +public: + struct FSoftObjectPath ObjectPath; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPluginName; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginNameForObjectPath; + +// Function Engine.PluginBlueprintLibrary.GetPluginVersion +// 0x0018 (0x0018 - 0x0000) +struct PluginBlueprintLibrary_GetPluginVersion final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutVersion; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginVersion; + +// Function Engine.PluginBlueprintLibrary.GetPluginVersionName +// 0x0028 (0x0028 - 0x0000) +struct PluginBlueprintLibrary_GetPluginVersionName final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutVersionName; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_GetPluginVersionName; + +// Function Engine.PluginBlueprintLibrary.IsPluginMounted +// 0x0018 (0x0018 - 0x0000) +struct PluginBlueprintLibrary_IsPluginMounted final +{ +public: + class FString PluginName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PluginBlueprintLibrary_IsPluginMounted; + +// Function Engine.PostProcessVolume.AddOrUpdateBlendable +// 0x0018 (0x0018 - 0x0000) +struct PostProcessVolume_AddOrUpdateBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InWeight; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PostProcessVolume_AddOrUpdateBlendable; + +// Function Engine.ParticleSystem.ContainsEmitterType +// 0x0010 (0x0010 - 0x0000) +struct ParticleSystem_ContainsEmitterType final +{ +public: + class UClass* TypeData; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystem_ContainsEmitterType; + +// Function Engine.NetPushModelHelpers.MarkPropertyDirty +// 0x0010 (0x0010 - 0x0000) +struct NetPushModelHelpers_MarkPropertyDirty final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//NetPushModelHelpers_MarkPropertyDirty; + +// Function Engine.NetPushModelHelpers.MarkPropertyDirtyFromRepIndex +// 0x0018 (0x0018 - 0x0000) +struct NetPushModelHelpers_MarkPropertyDirtyFromRepIndex final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RepIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x000C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//NetPushModelHelpers_MarkPropertyDirtyFromRepIndex; + +// Function Engine.SoundEffectPresetWidgetInterface.GetClass +// 0x0008 (0x0008 - 0x0000) +struct SoundEffectPresetWidgetInterface_GetClass final +{ +public: + TSubclassOf ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundEffectPresetWidgetInterface_GetClass; + +// Function Engine.SoundEffectPresetWidgetInterface.OnConstructed +// 0x0008 (0x0008 - 0x0000) +struct SoundEffectPresetWidgetInterface_OnConstructed final +{ +public: + class USoundEffectPreset* Preset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundEffectPresetWidgetInterface_OnConstructed; + +// Function Engine.SoundEffectPresetWidgetInterface.OnPropertyChanged +// 0x0010 (0x0010 - 0x0000) +struct SoundEffectPresetWidgetInterface_OnPropertyChanged final +{ +public: + class USoundEffectPreset* Preset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundEffectPresetWidgetInterface_OnPropertyChanged; + +// Function Engine.AnimatedSparseVolumeTextureController.GetCurrentFrame +// 0x0008 (0x0008 - 0x0000) +struct AnimatedSparseVolumeTextureController_GetCurrentFrame final +{ +public: + class USparseVolumeTextureFrame* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimatedSparseVolumeTextureController_GetCurrentFrame; + +// Function Engine.AnimatedSparseVolumeTextureController.GetCurrentFramesForInterpolation +// 0x0018 (0x0018 - 0x0000) +struct AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation final +{ +public: + class USparseVolumeTextureFrame* Frame0; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USparseVolumeTextureFrame* Frame1; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LerpAlpha; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimatedSparseVolumeTextureController_GetCurrentFramesForInterpolation; + +// Function Engine.AnimatedSparseVolumeTextureController.GetDuration +// 0x0004 (0x0004 - 0x0000) +struct AnimatedSparseVolumeTextureController_GetDuration final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimatedSparseVolumeTextureController_GetDuration; + +// Function Engine.AnimatedSparseVolumeTextureController.GetFractionalFrameIndex +// 0x0004 (0x0004 - 0x0000) +struct AnimatedSparseVolumeTextureController_GetFractionalFrameIndex final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimatedSparseVolumeTextureController_GetFractionalFrameIndex; + +// Function Engine.AnimatedSparseVolumeTextureController.GetFrameByIndex +// 0x0010 (0x0010 - 0x0000) +struct AnimatedSparseVolumeTextureController_GetFrameByIndex final +{ +public: + int32 FrameIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USparseVolumeTextureFrame* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimatedSparseVolumeTextureController_GetFrameByIndex; + +// Function Engine.AnimatedSparseVolumeTextureController.Update +// 0x0004 (0x0004 - 0x0000) +struct AnimatedSparseVolumeTextureController_Update final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimatedSparseVolumeTextureController_Update; + +// Function Engine.SoundSubmixBase.DynamicConnect +// 0x0018 (0x0018 - 0x0000) +struct SoundSubmixBase_DynamicConnect final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundSubmixBase* InParent; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmixBase_DynamicConnect; + +// Function Engine.SoundSubmixBase.DynamicDisconnect +// 0x0010 (0x0010 - 0x0000) +struct SoundSubmixBase_DynamicDisconnect final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmixBase_DynamicDisconnect; + +// Function Engine.SoundSubmixBase.FindDynamicAncestor +// 0x0008 (0x0008 - 0x0000) +struct SoundSubmixBase_FindDynamicAncestor final +{ +public: + class USoundSubmixBase* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmixBase_FindDynamicAncestor; + +// Function Engine.ParticleSystemComponent.BeginTrails +// 0x0018 (0x0018 - 0x0000) +struct ParticleSystemComponent_BeginTrails final +{ +public: + class FName InFirstSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InSecondSocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETrailWidthMode InWidthMode; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InWidth; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_BeginTrails; + +// Function Engine.ParticleSystemComponent.CreateNamedDynamicMaterialInstance +// 0x0018 (0x0018 - 0x0000) +struct ParticleSystemComponent_CreateNamedDynamicMaterialInstance final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* SourceMaterial; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInstanceDynamic* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_CreateNamedDynamicMaterialInstance; + +// Function Engine.ParticleSystemComponent.GenerateParticleEvent +// 0x0058 (0x0058 - 0x0000) +struct ParticleSystemComponent_GenerateParticleEvent final +{ +public: + class FName InEventName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InEmitterTime; // 0x0008(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InLocation; // 0x0010(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InDirection; // 0x0028(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InVelocity; // 0x0040(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_GenerateParticleEvent; + +// Function Engine.ParticleSystemComponent.SetAutoAttachParams +// 0x0018 (0x0018 - 0x0000) +struct ParticleSystemComponent_SetAutoAttachParams final +{ +public: + class USceneComponent* Parent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_SetAutoAttachParams; + +// Function Engine.ParticleSystemComponent.SetBeamEndPoint +// 0x0020 (0x0020 - 0x0000) +struct ParticleSystemComponent_SetBeamEndPoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewEndPoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetBeamEndPoint; + +// Function Engine.ParticleSystemComponent.SetBeamSourcePoint +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_SetBeamSourcePoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewSourcePoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_SetBeamSourcePoint; + +// Function Engine.ParticleSystemComponent.SetBeamSourceStrength +// 0x000C (0x000C - 0x0000) +struct ParticleSystemComponent_SetBeamSourceStrength final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NewSourceStrength; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetBeamSourceStrength; + +// Function Engine.ParticleSystemComponent.SetBeamSourceTangent +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_SetBeamSourceTangent final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewTangentPoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_SetBeamSourceTangent; + +// Function Engine.ParticleSystemComponent.SetBeamTargetPoint +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_SetBeamTargetPoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewTargetPoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_SetBeamTargetPoint; + +// Function Engine.ParticleSystemComponent.SetBeamTargetStrength +// 0x000C (0x000C - 0x0000) +struct ParticleSystemComponent_SetBeamTargetStrength final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NewTargetStrength; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetBeamTargetStrength; + +// Function Engine.ParticleSystemComponent.SetBeamTargetTangent +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_SetBeamTargetTangent final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewTangentPoint; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_SetBeamTargetTangent; + +// Function Engine.ParticleSystemComponent.SetMaterialParameter +// 0x0010 (0x0010 - 0x0000) +struct ParticleSystemComponent_SetMaterialParameter final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Param; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetMaterialParameter; + +// Function Engine.ParticleSystemComponent.SetTemplate +// 0x0008 (0x0008 - 0x0000) +struct ParticleSystemComponent_SetTemplate final +{ +public: + class UParticleSystem* NewTemplate; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetTemplate; + +// Function Engine.ParticleSystemComponent.SetTrailSourceData +// 0x0018 (0x0018 - 0x0000) +struct ParticleSystemComponent_SetTrailSourceData final +{ +public: + class FName InFirstSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InSecondSocketName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETrailWidthMode InWidthMode; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InWidth; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_SetTrailSourceData; + +// Function Engine.ParticleSystemComponent.GetBeamEndPoint +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_GetBeamEndPoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OutEndPoint; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamEndPoint; + +// Function Engine.ParticleSystemComponent.GetBeamSourcePoint +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_GetBeamSourcePoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutSourcePoint; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamSourcePoint; + +// Function Engine.ParticleSystemComponent.GetBeamSourceStrength +// 0x0010 (0x0010 - 0x0000) +struct ParticleSystemComponent_GetBeamSourceStrength final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutSourceStrength; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamSourceStrength; + +// Function Engine.ParticleSystemComponent.GetBeamSourceTangent +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_GetBeamSourceTangent final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutTangentPoint; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamSourceTangent; + +// Function Engine.ParticleSystemComponent.GetBeamTargetPoint +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_GetBeamTargetPoint final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutTargetPoint; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamTargetPoint; + +// Function Engine.ParticleSystemComponent.GetBeamTargetStrength +// 0x0010 (0x0010 - 0x0000) +struct ParticleSystemComponent_GetBeamTargetStrength final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutTargetStrength; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamTargetStrength; + +// Function Engine.ParticleSystemComponent.GetBeamTargetTangent +// 0x0028 (0x0028 - 0x0000) +struct ParticleSystemComponent_GetBeamTargetTangent final +{ +public: + int32 EmitterIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetIndex; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutTangentPoint; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ParticleSystemComponent_GetBeamTargetTangent; + +// Function Engine.ParticleSystemComponent.GetNamedMaterial +// 0x0010 (0x0010 - 0x0000) +struct ParticleSystemComponent_GetNamedMaterial final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_GetNamedMaterial; + +// Function Engine.ParticleSystemComponent.GetNumActiveParticles +// 0x0004 (0x0004 - 0x0000) +struct ParticleSystemComponent_GetNumActiveParticles final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ParticleSystemComponent_GetNumActiveParticles; + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationProfileBelow +// 0x0014 (0x0014 - 0x0000) +struct PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow final +{ +public: + class FName BodyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClearNotFound; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicalAnimationComponent_ApplyPhysicalAnimationProfileBelow; + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationSettings +// 0x002C (0x002C - 0x0000) +struct PhysicalAnimationComponent_ApplyPhysicalAnimationSettings final +{ +public: + class FName BodyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPhysicalAnimationData PhysicalAnimationData; // 0x0008(0x0024)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicalAnimationComponent_ApplyPhysicalAnimationSettings; + +// Function Engine.PhysicalAnimationComponent.ApplyPhysicalAnimationSettingsBelow +// 0x0030 (0x0030 - 0x0000) +struct PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow final +{ +public: + class FName BodyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPhysicalAnimationData PhysicalAnimationData; // 0x0008(0x0024)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bIncludeSelf; // 0x002C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicalAnimationComponent_ApplyPhysicalAnimationSettingsBelow; + +// Function Engine.PhysicalAnimationComponent.SetSkeletalMeshComponent +// 0x0008 (0x0008 - 0x0000) +struct PhysicalAnimationComponent_SetSkeletalMeshComponent final +{ +public: + class USkeletalMeshComponent* InSkeletalMeshComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicalAnimationComponent_SetSkeletalMeshComponent; + +// Function Engine.PhysicalAnimationComponent.SetStrengthMultiplyer +// 0x0004 (0x0004 - 0x0000) +struct PhysicalAnimationComponent_SetStrengthMultiplyer final +{ +public: + float InStrengthMultiplyer; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicalAnimationComponent_SetStrengthMultiplyer; + +// Function Engine.PhysicalAnimationComponent.GetBodyTargetTransform +// 0x0070 (0x0070 - 0x0000) +struct PhysicalAnimationComponent_GetBodyTargetTransform final +{ +public: + class FName BodyName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicalAnimationComponent_GetBodyTargetTransform; + +// Function Engine.PhysicsSpringComponent.GetNormalizedCompressionScalar +// 0x0004 (0x0004 - 0x0000) +struct PhysicsSpringComponent_GetNormalizedCompressionScalar final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsSpringComponent_GetNormalizedCompressionScalar; + +// Function Engine.PhysicsSpringComponent.GetSpringCurrentEndPoint +// 0x0018 (0x0018 - 0x0000) +struct PhysicsSpringComponent_GetSpringCurrentEndPoint final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsSpringComponent_GetSpringCurrentEndPoint; + +// Function Engine.PhysicsSpringComponent.GetSpringDirection +// 0x0018 (0x0018 - 0x0000) +struct PhysicsSpringComponent_GetSpringDirection final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsSpringComponent_GetSpringDirection; + +// Function Engine.PhysicsSpringComponent.GetSpringRestingPoint +// 0x0018 (0x0018 - 0x0000) +struct PhysicsSpringComponent_GetSpringRestingPoint final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsSpringComponent_GetSpringRestingPoint; + +// Function Engine.ReplaySubsystem.GetActiveReplayName +// 0x0010 (0x0010 - 0x0000) +struct ReplaySubsystem_GetActiveReplayName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ReplaySubsystem_GetActiveReplayName; + +// Function Engine.ReplaySubsystem.GetReplayCurrentTime +// 0x0004 (0x0004 - 0x0000) +struct ReplaySubsystem_GetReplayCurrentTime final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ReplaySubsystem_GetReplayCurrentTime; + +// Function Engine.ReplaySubsystem.IsPlaying +// 0x0001 (0x0001 - 0x0000) +struct ReplaySubsystem_IsPlaying final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ReplaySubsystem_IsPlaying; + +// Function Engine.ReplaySubsystem.IsRecording +// 0x0001 (0x0001 - 0x0000) +struct ReplaySubsystem_IsRecording final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ReplaySubsystem_IsRecording; + +// Function Engine.PhysicsObjectBlueprintLibrary.ApplyRadialImpulse +// 0x0040 (0x0040 - 0x0000) +struct PhysicsObjectBlueprintLibrary_ApplyRadialImpulse final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Strength; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERadialImpulseFalloff Falloff; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bApplyStrain; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Strain; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelChange; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinValue; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxValue; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicsObjectBlueprintLibrary_ApplyRadialImpulse; + +// Function Engine.PhysicsObjectBlueprintLibrary.ExtractClosestPhysicsObjectResults +// 0x0038 (0x0038 - 0x0000) +struct PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults final +{ +public: + struct FClosestPhysicsObjectResult Result; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + class FName OutName; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicsObjectBlueprintLibrary_ExtractClosestPhysicsObjectResults; + +// Function Engine.PhysicsObjectBlueprintLibrary.GetClosestPhysicsObjectFromWorldLocation +// 0x0048 (0x0048 - 0x0000) +struct PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldLocation; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FClosestPhysicsObjectResult ReturnValue; // 0x0020(0x0028)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsObjectBlueprintLibrary_GetClosestPhysicsObjectFromWorldLocation; + +// Function Engine.PhysicsObjectBlueprintLibrary.GetPhysicsObjectWorldTransform +// 0x0070 (0x0070 - 0x0000) +struct PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsObjectBlueprintLibrary_GetPhysicsObjectWorldTransform; + +// Function Engine.PhysicsThreadLibrary.AddForce +// 0x0028 (0x0028 - 0x0000) +struct PhysicsThreadLibrary_AddForce final +{ +public: + struct FBodyInstanceAsyncPhysicsTickHandle Handle; // 0x0000(0x0008)(Parm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Force; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelChange; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicsThreadLibrary_AddForce; + +// Function Engine.PlatformInterfaceWebResponse.GetHeader +// 0x0028 (0x0028 - 0x0000) +struct PlatformInterfaceWebResponse_GetHeader final +{ +public: + int32 HeaderIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Header; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Value; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformInterfaceWebResponse_GetHeader; + +// Function Engine.PlatformInterfaceWebResponse.GetHeaderValue +// 0x0020 (0x0020 - 0x0000) +struct PlatformInterfaceWebResponse_GetHeaderValue final +{ +public: + class FString HeaderName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformInterfaceWebResponse_GetHeaderValue; + +// Function Engine.PlatformInterfaceWebResponse.GetNumHeaders +// 0x0004 (0x0004 - 0x0000) +struct PlatformInterfaceWebResponse_GetNumHeaders final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformInterfaceWebResponse_GetNumHeaders; + +// Function Engine.PointLight.SetLightFalloffExponent +// 0x0004 (0x0004 - 0x0000) +struct PointLight_SetLightFalloffExponent final +{ +public: + float NewLightFalloffExponent; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLight_SetLightFalloffExponent; + +// Function Engine.PointLight.SetRadius +// 0x0004 (0x0004 - 0x0000) +struct PointLight_SetRadius final +{ +public: + float NewRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLight_SetRadius; + +// Function Engine.SceneCapture2D.OnInterpToggle +// 0x0001 (0x0001 - 0x0000) +struct SceneCapture2D_OnInterpToggle final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCapture2D_OnInterpToggle; + +// Function Engine.SceneCaptureComponent2D.AddOrUpdateBlendable +// 0x0018 (0x0018 - 0x0000) +struct SceneCaptureComponent2D_AddOrUpdateBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InWeight; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SceneCaptureComponent2D_AddOrUpdateBlendable; + +// Function Engine.SceneCaptureComponent2D.RemoveBlendable +// 0x0010 (0x0010 - 0x0000) +struct SceneCaptureComponent2D_RemoveBlendable final +{ +public: + TScriptInterface InBlendableObject; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureComponent2D_RemoveBlendable; + +// Function Engine.SceneCaptureCube.OnInterpToggle +// 0x0001 (0x0001 - 0x0000) +struct SceneCaptureCube_OnInterpToggle final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SceneCaptureCube_OnInterpToggle; + +// Function Engine.SkyLightComponent.SetCubemap +// 0x0008 (0x0008 - 0x0000) +struct SkyLightComponent_SetCubemap final +{ +public: + class UTextureCube* NewCubemap; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetCubemap; + +// Function Engine.SkyLightComponent.SetCubemapBlend +// 0x0018 (0x0018 - 0x0000) +struct SkyLightComponent_SetCubemapBlend final +{ +public: + class UTextureCube* SourceCubemap; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureCube* DestinationCubemap; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InBlendFraction; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkyLightComponent_SetCubemapBlend; + +// Function Engine.SkyLightComponent.SetIndirectLightingIntensity +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetIndirectLightingIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetIndirectLightingIntensity; + +// Function Engine.SkyLightComponent.SetIntensity +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetIntensity; + +// Function Engine.SkyLightComponent.SetLightColor +// 0x0010 (0x0010 - 0x0000) +struct SkyLightComponent_SetLightColor final +{ +public: + struct FLinearColor NewLightColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetLightColor; + +// Function Engine.SkyLightComponent.SetLowerHemisphereColor +// 0x0010 (0x0010 - 0x0000) +struct SkyLightComponent_SetLowerHemisphereColor final +{ +public: + struct FLinearColor InLowerHemisphereColor; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetLowerHemisphereColor; + +// Function Engine.SkyLightComponent.SetMinOcclusion +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetMinOcclusion final +{ +public: + float InMinOcclusion; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetMinOcclusion; + +// Function Engine.SkyLightComponent.SetOcclusionContrast +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetOcclusionContrast final +{ +public: + float InOcclusionContrast; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetOcclusionContrast; + +// Function Engine.SkyLightComponent.SetOcclusionExponent +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetOcclusionExponent final +{ +public: + float InOcclusionExponent; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetOcclusionExponent; + +// Function Engine.SkyLightComponent.SetOcclusionTint +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetOcclusionTint final +{ +public: + struct FColor InTint; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetOcclusionTint; + +// Function Engine.SkyLightComponent.SetRealTimeCapture +// 0x0001 (0x0001 - 0x0000) +struct SkyLightComponent_SetRealTimeCapture final +{ +public: + bool bInRealTimeCapture; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetRealTimeCapture; + +// Function Engine.SkyLightComponent.SetSourceCubemapAngle +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetSourceCubemapAngle final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetSourceCubemapAngle; + +// Function Engine.SkyLightComponent.SetVolumetricScatteringIntensity +// 0x0004 (0x0004 - 0x0000) +struct SkyLightComponent_SetVolumetricScatteringIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyLightComponent_SetVolumetricScatteringIntensity; + +// Function Engine.EditorFlagCollector.GetFlagNames +// 0x0010 (0x0010 - 0x0000) +struct EditorFlagCollector_GetFlagNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//EditorFlagCollector_GetFlagNames; + +// Function Engine.StereoLayerShapeEquirect.SetEquirectProps +// 0x0098 (0x0098 - 0x0000) +struct StereoLayerShapeEquirect_SetEquirectProps final +{ +public: + struct FEquirectProps InScaleBiases; // 0x0000(0x0098)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//StereoLayerShapeEquirect_SetEquirectProps; + +// Function Engine.StereoLayerComponent.SetEquirectProps +// 0x0098 (0x0098 - 0x0000) +struct StereoLayerComponent_SetEquirectProps final +{ +public: + struct FEquirectProps InEquirectProps; // 0x0000(0x0098)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetEquirectProps; + +// Function Engine.StereoLayerComponent.SetLeftTexture +// 0x0008 (0x0008 - 0x0000) +struct StereoLayerComponent_SetLeftTexture final +{ +public: + class UTexture* InTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetLeftTexture; + +// Function Engine.StereoLayerComponent.SetPriority +// 0x0004 (0x0004 - 0x0000) +struct StereoLayerComponent_SetPriority final +{ +public: + int32 InPriority; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetPriority; + +// Function Engine.StereoLayerComponent.SetQuadSize +// 0x0010 (0x0010 - 0x0000) +struct StereoLayerComponent_SetQuadSize final +{ +public: + struct FVector2D InQuadSize; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetQuadSize; + +// Function Engine.StereoLayerComponent.SetTexture +// 0x0008 (0x0008 - 0x0000) +struct StereoLayerComponent_SetTexture final +{ +public: + class UTexture* InTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetTexture; + +// Function Engine.StereoLayerComponent.SetUVRect +// 0x0028 (0x0028 - 0x0000) +struct StereoLayerComponent_SetUVRect final +{ +public: + struct FBox2D InUVRect; // 0x0000(0x0028)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_SetUVRect; + +// Function Engine.StereoLayerComponent.GetLeftTexture +// 0x0008 (0x0008 - 0x0000) +struct StereoLayerComponent_GetLeftTexture final +{ +public: + class UTexture* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_GetLeftTexture; + +// Function Engine.StereoLayerComponent.GetPriority +// 0x0004 (0x0004 - 0x0000) +struct StereoLayerComponent_GetPriority final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_GetPriority; + +// Function Engine.StereoLayerComponent.GetQuadSize +// 0x0010 (0x0010 - 0x0000) +struct StereoLayerComponent_GetQuadSize final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_GetQuadSize; + +// Function Engine.StereoLayerComponent.GetTexture +// 0x0008 (0x0008 - 0x0000) +struct StereoLayerComponent_GetTexture final +{ +public: + class UTexture* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_GetTexture; + +// Function Engine.StereoLayerComponent.GetUVRect +// 0x0028 (0x0028 - 0x0000) +struct StereoLayerComponent_GetUVRect final +{ +public: + struct FBox2D ReturnValue; // 0x0000(0x0028)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//StereoLayerComponent_GetUVRect; + +// Function Engine.TwitterIntegrationBase.AuthorizeAccounts +// 0x0001 (0x0001 - 0x0000) +struct TwitterIntegrationBase_AuthorizeAccounts final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TwitterIntegrationBase_AuthorizeAccounts; + +// Function Engine.TwitterIntegrationBase.CanShowTweetUI +// 0x0001 (0x0001 - 0x0000) +struct TwitterIntegrationBase_CanShowTweetUI final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TwitterIntegrationBase_CanShowTweetUI; + +// Function Engine.TwitterIntegrationBase.GetAccountName +// 0x0018 (0x0018 - 0x0000) +struct TwitterIntegrationBase_GetAccountName final +{ +public: + int32 AccountIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TwitterIntegrationBase_GetAccountName; + +// Function Engine.TwitterIntegrationBase.GetNumAccounts +// 0x0004 (0x0004 - 0x0000) +struct TwitterIntegrationBase_GetNumAccounts final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//TwitterIntegrationBase_GetNumAccounts; + +// Function Engine.TwitterIntegrationBase.ShowTweetUI +// 0x0038 (0x0038 - 0x0000) +struct TwitterIntegrationBase_ShowTweetUI final +{ +public: + class FString InitialMessage; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString URL; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Picture; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TwitterIntegrationBase_ShowTweetUI; + +// Function Engine.TwitterIntegrationBase.TwitterRequest +// 0x0030 (0x0030 - 0x0000) +struct TwitterIntegrationBase_TwitterRequest final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ParamKeysAndValues; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + ETwitterRequestMethod RequestMethod; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 AccountIndex; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//TwitterIntegrationBase_TwitterRequest; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.IsEmpty +// 0x0018 (0x0018 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_IsEmpty final +{ +public: + struct FUniversalObjectLocator Locator; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//UniversalObjectLocatorScriptingExtensions_IsEmpty; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.MakeUniversalObjectLocator +// 0x0020 (0x0020 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_MakeUniversalObjectLocator final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Context; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUniversalObjectLocator ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_MakeUniversalObjectLocator; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncFind +// 0x0020 (0x0020 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_SyncFind final +{ +public: + struct FUniversalObjectLocator Locator; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Context; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_SyncFind; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncLoad +// 0x0020 (0x0020 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_SyncLoad final +{ +public: + struct FUniversalObjectLocator Locator; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Context; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_SyncLoad; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.SyncUnload +// 0x0018 (0x0018 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_SyncUnload final +{ +public: + struct FUniversalObjectLocator Locator; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Context; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_SyncUnload; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.ToString +// 0x0020 (0x0020 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_ToString final +{ +public: + struct FUniversalObjectLocator Locator; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_ToString; + +// Function Engine.UniversalObjectLocatorScriptingExtensions.UniversalObjectLocatorFromString +// 0x0020 (0x0020 - 0x0000) +struct UniversalObjectLocatorScriptingExtensions_UniversalObjectLocatorFromString final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUniversalObjectLocator ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UniversalObjectLocatorScriptingExtensions_UniversalObjectLocatorFromString; + +// Function Engine.VectorFieldComponent.SetIntensity +// 0x0004 (0x0004 - 0x0000) +struct VectorFieldComponent_SetIntensity final +{ +public: + float NewIntensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VectorFieldComponent_SetIntensity; + +// Function Engine.WindDirectionalSourceComponent.SetMaximumGustAmount +// 0x0004 (0x0004 - 0x0000) +struct WindDirectionalSourceComponent_SetMaximumGustAmount final +{ +public: + float InNewMaxGust; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetMaximumGustAmount; + +// Function Engine.WindDirectionalSourceComponent.SetMinimumGustAmount +// 0x0004 (0x0004 - 0x0000) +struct WindDirectionalSourceComponent_SetMinimumGustAmount final +{ +public: + float InNewMinGust; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetMinimumGustAmount; + +// Function Engine.WindDirectionalSourceComponent.SetRadius +// 0x0004 (0x0004 - 0x0000) +struct WindDirectionalSourceComponent_SetRadius final +{ +public: + float InNewRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetRadius; + +// Function Engine.WindDirectionalSourceComponent.SetSpeed +// 0x0004 (0x0004 - 0x0000) +struct WindDirectionalSourceComponent_SetSpeed final +{ +public: + float InNewSpeed; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetSpeed; + +// Function Engine.WindDirectionalSourceComponent.SetStrength +// 0x0004 (0x0004 - 0x0000) +struct WindDirectionalSourceComponent_SetStrength final +{ +public: + float InNewStrength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetStrength; + +// Function Engine.WindDirectionalSourceComponent.SetWindType +// 0x0001 (0x0001 - 0x0000) +struct WindDirectionalSourceComponent_SetWindType final +{ +public: + EWindSourceType InNewType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WindDirectionalSourceComponent_SetWindType; + +// Function Engine.AvoidanceManager.GetAvoidanceVelocityForComponent +// 0x0020 (0x0020 - 0x0000) +struct AvoidanceManager_GetAvoidanceVelocityForComponent final +{ +public: + class UMovementComponent* MovementComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AvoidanceManager_GetAvoidanceVelocityForComponent; + +// Function Engine.AvoidanceManager.GetNewAvoidanceUID +// 0x0004 (0x0004 - 0x0000) +struct AvoidanceManager_GetNewAvoidanceUID final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AvoidanceManager_GetNewAvoidanceUID; + +// Function Engine.AvoidanceManager.GetObjectCount +// 0x0004 (0x0004 - 0x0000) +struct AvoidanceManager_GetObjectCount final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AvoidanceManager_GetObjectCount; + +// Function Engine.AvoidanceManager.RegisterMovementComponent +// 0x0010 (0x0010 - 0x0000) +struct AvoidanceManager_RegisterMovementComponent final +{ +public: + class UMovementComponent* MovementComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AvoidanceWeight; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AvoidanceManager_RegisterMovementComponent; + +// Function Engine.AmbientSound.AdjustVolume +// 0x0008 (0x0008 - 0x0000) +struct AmbientSound_AdjustVolume final +{ +public: + float AdjustVolumeDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AmbientSound_AdjustVolume; + +// Function Engine.AmbientSound.FadeIn +// 0x0008 (0x0008 - 0x0000) +struct AmbientSound_FadeIn final +{ +public: + float FadeInDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AmbientSound_FadeIn; + +// Function Engine.AmbientSound.FadeOut +// 0x0008 (0x0008 - 0x0000) +struct AmbientSound_FadeOut final +{ +public: + float FadeOutDuration; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeVolumeLevel; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AmbientSound_FadeOut; + +// Function Engine.AmbientSound.Play +// 0x0004 (0x0004 - 0x0000) +struct AmbientSound_Play final +{ +public: + float StartTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AmbientSound_Play; + +// Function Engine.AnimationSettings.GetBoneCustomAttributeNamesToImport +// 0x0010 (0x0010 - 0x0000) +struct AnimationSettings_GetBoneCustomAttributeNamesToImport final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//AnimationSettings_GetBoneCustomAttributeNamesToImport; + +// Function Engine.NetworkPhysicsComponent.MulticastReceiveImportantInputData +// 0x0010 (0x0010 - 0x0000) +struct NetworkPhysicsComponent_MulticastReceiveImportantInputData final +{ +public: + struct FNetworkPhysicsRewindDataImportantInputProxy ServerInputs; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//NetworkPhysicsComponent_MulticastReceiveImportantInputData; + +// Function Engine.NetworkPhysicsComponent.MulticastReceiveImportantStateData +// 0x0010 (0x0010 - 0x0000) +struct NetworkPhysicsComponent_MulticastReceiveImportantStateData final +{ +public: + struct FNetworkPhysicsRewindDataImportantStateProxy ServerStates; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//NetworkPhysicsComponent_MulticastReceiveImportantStateData; + +// Function Engine.NetworkPhysicsComponent.ServerReceiveImportantInputData +// 0x0010 (0x0010 - 0x0000) +struct NetworkPhysicsComponent_ServerReceiveImportantInputData final +{ +public: + struct FNetworkPhysicsRewindDataImportantInputProxy ClientInputs; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//NetworkPhysicsComponent_ServerReceiveImportantInputData; + +// Function Engine.NetworkPhysicsComponent.ServerReceiveInputData +// 0x0010 (0x0010 - 0x0000) +struct NetworkPhysicsComponent_ServerReceiveInputData final +{ +public: + struct FNetworkPhysicsRewindDataInputProxy ClientInputs; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//NetworkPhysicsComponent_ServerReceiveInputData; + +// Function Engine.NetworkPhysicsComponent.ServerReceiveInputsDatas +// 0x0010 (0x0010 - 0x0000) +struct NetworkPhysicsComponent_ServerReceiveInputsDatas final +{ +public: + struct FNetworkPhysicsRewindDataInputProxy ClientInputs; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//NetworkPhysicsComponent_ServerReceiveInputsDatas; + +// Function Engine.AnimMontage.CreateSlotAnimationAsDynamicMontage_WithBlendSettings +// 0x0068 (0x0068 - 0x0000) +struct AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings final +{ +public: + class UAnimSequenceBase* Asset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SlotNodeName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMontageBlendSettings BlendInSettings; // 0x0010(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FMontageBlendSettings BlendOutSettings; // 0x0030(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopCount; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InBlendOutTriggerTime; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimMontage* ReturnValue; // 0x0060(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_CreateSlotAnimationAsDynamicMontage_WithBlendSettings; + +// Function Engine.AnimMontage.GetBlendInArgs +// 0x0010 (0x0010 - 0x0000) +struct AnimMontage_GetBlendInArgs final +{ +public: + struct FAlphaBlendArgs ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetBlendInArgs; + +// Function Engine.AnimMontage.GetBlendOutArgs +// 0x0010 (0x0010 - 0x0000) +struct AnimMontage_GetBlendOutArgs final +{ +public: + struct FAlphaBlendArgs ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetBlendOutArgs; + +// Function Engine.AnimMontage.GetDefaultBlendInTime +// 0x0004 (0x0004 - 0x0000) +struct AnimMontage_GetDefaultBlendInTime final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetDefaultBlendInTime; + +// Function Engine.AnimMontage.GetDefaultBlendOutTime +// 0x0004 (0x0004 - 0x0000) +struct AnimMontage_GetDefaultBlendOutTime final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetDefaultBlendOutTime; + +// Function Engine.AnimMontage.GetFirstAnimReference +// 0x0008 (0x0008 - 0x0000) +struct AnimMontage_GetFirstAnimReference final +{ +public: + class UAnimSequenceBase* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetFirstAnimReference; + +// Function Engine.AnimMontage.GetGroupName +// 0x0008 (0x0008 - 0x0000) +struct AnimMontage_GetGroupName final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetGroupName; + +// Function Engine.AnimMontage.GetNumSections +// 0x0004 (0x0004 - 0x0000) +struct AnimMontage_GetNumSections final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetNumSections; + +// Function Engine.AnimMontage.GetSectionIndex +// 0x000C (0x000C - 0x0000) +struct AnimMontage_GetSectionIndex final +{ +public: + class FName InSectionName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetSectionIndex; + +// Function Engine.AnimMontage.GetSectionName +// 0x000C (0x000C - 0x0000) +struct AnimMontage_GetSectionName final +{ +public: + int32 SectionIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_GetSectionName; + +// Function Engine.AnimMontage.IsDynamicMontage +// 0x0001 (0x0001 - 0x0000) +struct AnimMontage_IsDynamicMontage final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimMontage_IsDynamicMontage; + +// Function Engine.AnimMontage.IsValidAdditiveSlot +// 0x000C (0x000C - 0x0000) +struct AnimMontage_IsValidAdditiveSlot final +{ +public: + class FName SlotNodeName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimMontage_IsValidAdditiveSlot; + +// Function Engine.AnimMontage.IsValidSectionName +// 0x000C (0x000C - 0x0000) +struct AnimMontage_IsValidSectionName final +{ +public: + class FName InSectionName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimMontage_IsValidSectionName; + +// Function Engine.AnimNotifyMirrorInspectionLibrary.GetMirrorDataTable +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + const class UMirrorDataTable* ReturnValue; // 0x0030(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotifyMirrorInspectionLibrary_GetMirrorDataTable; + +// Function Engine.AnimNotifyMirrorInspectionLibrary.IsTriggeredByMirroredAnimation +// 0x0038 (0x0038 - 0x0000) +struct AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyMirrorInspectionLibrary_IsTriggeredByMirroredAnimation; + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByState +// 0x0048 (0x0048 - 0x0000) +struct AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UAnimInstance* AnimInstance; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateName; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyStateMachineInspectionLibrary_IsTriggeredByState; + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByStateInStateMachine +// 0x0050 (0x0050 - 0x0000) +struct AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UAnimInstance* AnimInstance; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateMachineName; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateName; // 0x0040(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateInStateMachine; + +// Function Engine.AnimNotifyStateMachineInspectionLibrary.IsTriggeredByStateMachine +// 0x0048 (0x0048 - 0x0000) +struct AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine final +{ +public: + struct FAnimNotifyEventReference EventReference; // 0x0000(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UAnimInstance* AnimInstance; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateMachineName; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimNotifyStateMachineInspectionLibrary_IsTriggeredByStateMachine; + +// Function Engine.AnimNotifyState_Trail.OverridePSTemplate +// 0x0018 (0x0018 - 0x0000) +struct AnimNotifyState_Trail_OverridePSTemplate final +{ +public: + class USkeletalMeshComponent* MeshComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequenceBase* Animation; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleSystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimNotifyState_Trail_OverridePSTemplate; + +// Function Engine.PlayerState.OnPawnPrivateDestroyed +// 0x0008 (0x0008 - 0x0000) +struct PlayerState_OnPawnPrivateDestroyed final +{ +public: + class AActor* InActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_OnPawnPrivateDestroyed; + +// Function Engine.PlayerState.ReceiveCopyProperties +// 0x0008 (0x0008 - 0x0000) +struct PlayerState_ReceiveCopyProperties final +{ +public: + class APlayerState* NewPlayerState; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_ReceiveCopyProperties; + +// Function Engine.PlayerState.ReceiveOverrideWith +// 0x0008 (0x0008 - 0x0000) +struct PlayerState_ReceiveOverrideWith final +{ +public: + class APlayerState* OldPlayerState; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_ReceiveOverrideWith; + +// Function Engine.PlayerState.BP_GetUniqueId +// 0x0030 (0x0030 - 0x0000) +struct PlayerState_BP_GetUniqueId final +{ +public: + struct FUniqueNetIdRepl ReturnValue; // 0x0000(0x0030)(Parm, OutParm, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_BP_GetUniqueId; + +// Function Engine.PlayerState.GetCompressedPing +// 0x0001 (0x0001 - 0x0000) +struct PlayerState_GetCompressedPing final +{ +public: + uint8 ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetCompressedPing; + +// Function Engine.PlayerState.GetPawn +// 0x0008 (0x0008 - 0x0000) +struct PlayerState_GetPawn final +{ +public: + class APawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetPawn; + +// Function Engine.PlayerState.GetPingInMilliseconds +// 0x0004 (0x0004 - 0x0000) +struct PlayerState_GetPingInMilliseconds final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetPingInMilliseconds; + +// Function Engine.PlayerState.GetPlayerController +// 0x0008 (0x0008 - 0x0000) +struct PlayerState_GetPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetPlayerController; + +// Function Engine.PlayerState.GetPlayerId +// 0x0004 (0x0004 - 0x0000) +struct PlayerState_GetPlayerId final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetPlayerId; + +// Function Engine.PlayerState.GetPlayerName +// 0x0010 (0x0010 - 0x0000) +struct PlayerState_GetPlayerName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetPlayerName; + +// Function Engine.PlayerState.GetScore +// 0x0004 (0x0004 - 0x0000) +struct PlayerState_GetScore final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_GetScore; + +// Function Engine.PlayerState.IsABot +// 0x0001 (0x0001 - 0x0000) +struct PlayerState_IsABot final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_IsABot; + +// Function Engine.PlayerState.IsOnlyASpectator +// 0x0001 (0x0001 - 0x0000) +struct PlayerState_IsOnlyASpectator final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_IsOnlyASpectator; + +// Function Engine.PlayerState.IsSpectator +// 0x0001 (0x0001 - 0x0000) +struct PlayerState_IsSpectator final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerState_IsSpectator; + +// Function Engine.AnimSingleNodeInstance.GetLength +// 0x0004 (0x0004 - 0x0000) +struct AnimSingleNodeInstance_GetLength final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_GetLength; + +// Function Engine.AnimSingleNodeInstance.GetMirrorDataTable +// 0x0008 (0x0008 - 0x0000) +struct AnimSingleNodeInstance_GetMirrorDataTable final +{ +public: + const class UMirrorDataTable* ReturnValue; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_GetMirrorDataTable; + +// Function Engine.AnimSingleNodeInstance.PlayAnim +// 0x000C (0x000C - 0x0000) +struct AnimSingleNodeInstance_PlayAnim final +{ +public: + bool bIsLooping; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InPlayRate; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InStartPosition; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_PlayAnim; + +// Function Engine.AnimSingleNodeInstance.SetAnimationAsset +// 0x0010 (0x0010 - 0x0000) +struct AnimSingleNodeInstance_SetAnimationAsset final +{ +public: + class UAnimationAsset* NewAsset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsLooping; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float InPlayRate; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetAnimationAsset; + +// Function Engine.AnimSingleNodeInstance.SetBlendSpacePosition +// 0x0018 (0x0018 - 0x0000) +struct AnimSingleNodeInstance_SetBlendSpacePosition final +{ +public: + struct FVector InPosition; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetBlendSpacePosition; + +// Function Engine.AnimSingleNodeInstance.SetLooping +// 0x0001 (0x0001 - 0x0000) +struct AnimSingleNodeInstance_SetLooping final +{ +public: + bool bIsLooping; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetLooping; + +// Function Engine.AnimSingleNodeInstance.SetMirrorDataTable +// 0x0008 (0x0008 - 0x0000) +struct AnimSingleNodeInstance_SetMirrorDataTable final +{ +public: + const class UMirrorDataTable* MirrorDataTable; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetMirrorDataTable; + +// Function Engine.AnimSingleNodeInstance.SetPlaying +// 0x0001 (0x0001 - 0x0000) +struct AnimSingleNodeInstance_SetPlaying final +{ +public: + bool bIsPlaying; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetPlaying; + +// Function Engine.AnimSingleNodeInstance.SetPlayRate +// 0x0004 (0x0004 - 0x0000) +struct AnimSingleNodeInstance_SetPlayRate final +{ +public: + float InPlayRate; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetPlayRate; + +// Function Engine.AnimSingleNodeInstance.SetPosition +// 0x0008 (0x0008 - 0x0000) +struct AnimSingleNodeInstance_SetPosition final +{ +public: + float InPosition; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireNotifies; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimSingleNodeInstance_SetPosition; + +// Function Engine.AnimSingleNodeInstance.SetPositionWithPreviousTime +// 0x000C (0x000C - 0x0000) +struct AnimSingleNodeInstance_SetPositionWithPreviousTime final +{ +public: + float InPosition; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPreviousTime; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireNotifies; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimSingleNodeInstance_SetPositionWithPreviousTime; + +// Function Engine.AnimSingleNodeInstance.SetPreviewCurveOverride +// 0x0010 (0x0010 - 0x0000) +struct AnimSingleNodeInstance_SetPreviewCurveOverride final +{ +public: + class FName PoseName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemoveIfZero; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimSingleNodeInstance_SetPreviewCurveOverride; + +// Function Engine.AnimSingleNodeInstance.SetReverse +// 0x0001 (0x0001 - 0x0000) +struct AnimSingleNodeInstance_SetReverse final +{ +public: + bool bInReverse; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_SetReverse; + +// Function Engine.AnimSingleNodeInstance.GetAnimationAsset +// 0x0008 (0x0008 - 0x0000) +struct AnimSingleNodeInstance_GetAnimationAsset final +{ +public: + class UAnimationAsset* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimSingleNodeInstance_GetAnimationAsset; + +// Function Engine.AnimationAttributeIdentifierExtensions.IsValid +// 0x0048 (0x0048 - 0x0000) +struct AnimationAttributeIdentifierExtensions_IsValid final +{ +public: + struct FAnimationAttributeIdentifier Identifier; // 0x0000(0x0040)(Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationAttributeIdentifierExtensions_IsValid; + +// Function Engine.Skeleton.AddCompatibleSkeleton +// 0x0008 (0x0008 - 0x0000) +struct Skeleton_AddCompatibleSkeleton final +{ +public: + const class USkeleton* SourceSkeleton; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Skeleton_AddCompatibleSkeleton; + +// Function Engine.Skeleton.AddCompatibleSkeletonSoft +// 0x0028 (0x0028 - 0x0000) +struct Skeleton_AddCompatibleSkeletonSoft final +{ +public: + TSoftObjectPtr SourceSkeleton; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Skeleton_AddCompatibleSkeletonSoft; + +// Function Engine.Skeleton.GetBlendProfile +// 0x0010 (0x0010 - 0x0000) +struct Skeleton_GetBlendProfile final +{ +public: + class FName InProfileName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBlendProfile* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Skeleton_GetBlendProfile; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetAssetPlayerTime +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetAssetPlayerTime final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimAssetPlayerData CachedAnimAssetPlayerData; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_GetAssetPlayerTime; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetAssetPlayerTimeRatio +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetAssetPlayerTimeRatio final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimAssetPlayerData CachedAnimAssetPlayerData; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_GetAssetPlayerTimeRatio; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetCrossfadeDuration +// 0x0030 (0x0030 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetCrossfadeDuration final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimTransitionData CachedAnimTransitionData; // 0x0008(0x0024)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x002C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetCrossfadeDuration; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetGlobalWeight +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetGlobalWeight final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateData CachedAnimStateData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetGlobalWeight; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetLocalWeight +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetLocalWeight final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateData CachedAnimStateData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetLocalWeight; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTime +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetRelevantAnimTime final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimRelevancyData CachedAnimRelevancyData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetRelevantAnimTime; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTimeRemaining +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemaining final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimRelevancyData CachedAnimRelevancyData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemaining; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetRelevantAnimTimeRemainingFraction +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemainingFraction final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimRelevancyData CachedAnimRelevancyData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CachedAnimDataLibrary_StateMachine_GetRelevantAnimTimeRemainingFraction; + +// Function Engine.CachedAnimDataLibrary.StateMachine_GetTotalWeight +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_GetTotalWeight final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateArray CachedAnimStateArray; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_GetTotalWeight; + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsFullWeight +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_IsFullWeight final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateArray CachedAnimStateArray; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_IsFullWeight; + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsRelevant +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_IsRelevant final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateArray CachedAnimStateArray; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_IsRelevant; + +// Function Engine.CachedAnimDataLibrary.StateMachine_IsStateRelevant +// 0x0028 (0x0028 - 0x0000) +struct CachedAnimDataLibrary_StateMachine_IsStateRelevant final +{ +public: + class UAnimInstance* InAnimInstance; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FCachedAnimStateData CachedAnimStateData; // 0x0008(0x001C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CachedAnimDataLibrary_StateMachine_IsStateRelevant; + +// Function Engine.AnimationCurveIdentifierExtensions.GetName +// 0x0014 (0x0014 - 0x0000) +struct AnimationCurveIdentifierExtensions_GetName final +{ +public: + struct FAnimationCurveIdentifier Identifier; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AnimationCurveIdentifierExtensions_GetName; + +// Function Engine.AnimationCurveIdentifierExtensions.GetType +// 0x0010 (0x0010 - 0x0000) +struct AnimationCurveIdentifierExtensions_GetType final +{ +public: + struct FAnimationCurveIdentifier Identifier; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERawCurveTrackTypes ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationCurveIdentifierExtensions_GetType; + +// Function Engine.AnimationCurveIdentifierExtensions.IsValid +// 0x0010 (0x0010 - 0x0000) +struct AnimationCurveIdentifierExtensions_IsValid final +{ +public: + struct FAnimationCurveIdentifier Identifier; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AnimationCurveIdentifierExtensions_IsValid; + +// Function Engine.AsyncActionLoadPrimaryAssetClass.AsyncLoadPrimaryAssetClass +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetId PrimaryAsset; // 0x0008(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LoadBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionLoadPrimaryAssetClass* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionLoadPrimaryAssetClass_AsyncLoadPrimaryAssetClass; + +// Function Engine.AsyncActionLoadPrimaryAssetList.AsyncLoadPrimaryAssetList +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PrimaryAssetList; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray LoadBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionLoadPrimaryAssetList* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionLoadPrimaryAssetList_AsyncLoadPrimaryAssetList; + +// Function Engine.AsyncActionLoadPrimaryAssetClassList.AsyncLoadPrimaryAssetClassList +// 0x0030 (0x0030 - 0x0000) +struct AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PrimaryAssetList; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray LoadBundles; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UAsyncActionLoadPrimaryAssetClassList* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncActionLoadPrimaryAssetClassList_AsyncLoadPrimaryAssetClassList; + +// Function Engine.SkyAtmosphereComponent.GetAtmosphereTransmitanceOnGroundAtPlanetTop +// 0x0018 (0x0018 - 0x0000) +struct SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop final +{ +public: + class UDirectionalLightComponent* DirectionalLight; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_GetAtmosphereTransmitanceOnGroundAtPlanetTop; + +// Function Engine.SkyAtmosphereComponent.GetAtmosphericLightToMatchIlluminanceOnGround +// 0x0020 (0x0020 - 0x0000) +struct SkyAtmosphereComponent_GetAtmosphericLightToMatchIlluminanceOnGround final +{ +public: + struct FVector LightDirection; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IlluminanceOnGround; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_GetAtmosphericLightToMatchIlluminanceOnGround; + +// Function Engine.SkyAtmosphereComponent.GetOverridenAtmosphereLightDirection +// 0x0020 (0x0020 - 0x0000) +struct SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection final +{ +public: + int32 AtmosphereLightIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_GetOverridenAtmosphereLightDirection; + +// Function Engine.SkyAtmosphereComponent.IsAtmosphereLightDirectionOverriden +// 0x0008 (0x0008 - 0x0000) +struct SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden final +{ +public: + int32 AtmosphereLightIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkyAtmosphereComponent_IsAtmosphereLightDirectionOverriden; + +// Function Engine.SkyAtmosphereComponent.OverrideAtmosphereLightDirection +// 0x0020 (0x0020 - 0x0000) +struct SkyAtmosphereComponent_OverrideAtmosphereLightDirection final +{ +public: + int32 AtmosphereLightIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector LightDirection; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_OverrideAtmosphereLightDirection; + +// Function Engine.SkyAtmosphereComponent.ResetAtmosphereLightDirectionOverride +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride final +{ +public: + int32 AtmosphereLightIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_ResetAtmosphereLightDirectionOverride; + +// Function Engine.SkyAtmosphereComponent.SetAerialPespectiveViewDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetAerialPespectiveViewDistanceScale; + +// Function Engine.SkyAtmosphereComponent.SetAtmosphereHeight +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetAtmosphereHeight final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetAtmosphereHeight; + +// Function Engine.SkyAtmosphereComponent.SetBottomRadius +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetBottomRadius final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetBottomRadius; + +// Function Engine.SkyAtmosphereComponent.SetGroundAlbedo +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetGroundAlbedo final +{ +public: + struct FColor NewValue; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetGroundAlbedo; + +// Function Engine.SkyAtmosphereComponent.SetHeightFogContribution +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetHeightFogContribution final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetHeightFogContribution; + +// Function Engine.SkyAtmosphereComponent.SetHoldout +// 0x0001 (0x0001 - 0x0000) +struct SkyAtmosphereComponent_SetHoldout final +{ +public: + bool bNewHoldout; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetHoldout; + +// Function Engine.SkyAtmosphereComponent.SetMieAbsorption +// 0x0010 (0x0010 - 0x0000) +struct SkyAtmosphereComponent_SetMieAbsorption final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieAbsorption; + +// Function Engine.SkyAtmosphereComponent.SetMieAbsorptionScale +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetMieAbsorptionScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieAbsorptionScale; + +// Function Engine.SkyAtmosphereComponent.SetMieAnisotropy +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetMieAnisotropy final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieAnisotropy; + +// Function Engine.SkyAtmosphereComponent.SetMieExponentialDistribution +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetMieExponentialDistribution final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieExponentialDistribution; + +// Function Engine.SkyAtmosphereComponent.SetMieScattering +// 0x0010 (0x0010 - 0x0000) +struct SkyAtmosphereComponent_SetMieScattering final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieScattering; + +// Function Engine.SkyAtmosphereComponent.SetMieScatteringScale +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetMieScatteringScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMieScatteringScale; + +// Function Engine.SkyAtmosphereComponent.SetMultiScatteringFactor +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetMultiScatteringFactor final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetMultiScatteringFactor; + +// Function Engine.SkyAtmosphereComponent.SetOtherAbsorption +// 0x0010 (0x0010 - 0x0000) +struct SkyAtmosphereComponent_SetOtherAbsorption final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetOtherAbsorption; + +// Function Engine.SkyAtmosphereComponent.SetOtherAbsorptionScale +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetOtherAbsorptionScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetOtherAbsorptionScale; + +// Function Engine.SkyAtmosphereComponent.SetRayleighExponentialDistribution +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetRayleighExponentialDistribution final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetRayleighExponentialDistribution; + +// Function Engine.SkyAtmosphereComponent.SetRayleighScattering +// 0x0010 (0x0010 - 0x0000) +struct SkyAtmosphereComponent_SetRayleighScattering final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetRayleighScattering; + +// Function Engine.SkyAtmosphereComponent.SetRayleighScatteringScale +// 0x0004 (0x0004 - 0x0000) +struct SkyAtmosphereComponent_SetRayleighScatteringScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetRayleighScatteringScale; + +// Function Engine.SkyAtmosphereComponent.SetRenderInMainPass +// 0x0001 (0x0001 - 0x0000) +struct SkyAtmosphereComponent_SetRenderInMainPass final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetRenderInMainPass; + +// Function Engine.SkyAtmosphereComponent.SetSkyLuminanceFactor +// 0x0010 (0x0010 - 0x0000) +struct SkyAtmosphereComponent_SetSkyLuminanceFactor final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkyAtmosphereComponent_SetSkyLuminanceFactor; + +// Function Engine.AtmosphericFogComponent.DisableGroundScattering +// 0x0001 (0x0001 - 0x0000) +struct AtmosphericFogComponent_DisableGroundScattering final +{ +public: + bool NewGroundScattering; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_DisableGroundScattering; + +// Function Engine.AtmosphericFogComponent.DisableSunDisk +// 0x0001 (0x0001 - 0x0000) +struct AtmosphericFogComponent_DisableSunDisk final +{ +public: + bool NewSunDisk; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_DisableSunDisk; + +// Function Engine.AtmosphericFogComponent.SetAltitudeScale +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetAltitudeScale final +{ +public: + float NewAltitudeScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetAltitudeScale; + +// Function Engine.AtmosphericFogComponent.SetDefaultBrightness +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetDefaultBrightness final +{ +public: + float NewBrightness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDefaultBrightness; + +// Function Engine.AtmosphericFogComponent.SetDefaultLightColor +// 0x0010 (0x0010 - 0x0000) +struct AtmosphericFogComponent_SetDefaultLightColor final +{ +public: + struct FLinearColor NewLightColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDefaultLightColor; + +// Function Engine.AtmosphericFogComponent.SetDensityMultiplier +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetDensityMultiplier final +{ +public: + float NewDensityMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDensityMultiplier; + +// Function Engine.AtmosphericFogComponent.SetDensityOffset +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetDensityOffset final +{ +public: + float NewDensityOffset; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDensityOffset; + +// Function Engine.AtmosphericFogComponent.SetDistanceOffset +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetDistanceOffset final +{ +public: + float NewDistanceOffset; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDistanceOffset; + +// Function Engine.AtmosphericFogComponent.SetDistanceScale +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetDistanceScale final +{ +public: + float NewDistanceScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetDistanceScale; + +// Function Engine.AtmosphericFogComponent.SetFogMultiplier +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetFogMultiplier final +{ +public: + float NewFogMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetFogMultiplier; + +// Function Engine.AtmosphericFogComponent.SetPrecomputeParams +// 0x000C (0x000C - 0x0000) +struct AtmosphericFogComponent_SetPrecomputeParams final +{ +public: + float DensityHeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxScatteringOrder; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InscatterAltitudeSampleNum; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetPrecomputeParams; + +// Function Engine.AtmosphericFogComponent.SetStartDistance +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetStartDistance final +{ +public: + float NewStartDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetStartDistance; + +// Function Engine.AtmosphericFogComponent.SetSunMultiplier +// 0x0004 (0x0004 - 0x0000) +struct AtmosphericFogComponent_SetSunMultiplier final +{ +public: + float NewSunMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AtmosphericFogComponent_SetSunMultiplier; + +// Function Engine.AudioVolume.SetEnabled +// 0x0001 (0x0001 - 0x0000) +struct AudioVolume_SetEnabled final +{ +public: + bool bNewEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetEnabled; + +// Function Engine.AudioVolume.SetInteriorSettings +// 0x0024 (0x0024 - 0x0000) +struct AudioVolume_SetInteriorSettings final +{ +public: + struct FInteriorSettings NewInteriorSettings; // 0x0000(0x0024)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetInteriorSettings; + +// Function Engine.AudioVolume.SetPriority +// 0x0004 (0x0004 - 0x0000) +struct AudioVolume_SetPriority final +{ +public: + float NewPriority; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetPriority; + +// Function Engine.AudioVolume.SetReverbSettings +// 0x0020 (0x0020 - 0x0000) +struct AudioVolume_SetReverbSettings final +{ +public: + struct FReverbSettings NewReverbSettings; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetReverbSettings; + +// Function Engine.AudioVolume.SetSubmixOverrideSettings +// 0x0010 (0x0010 - 0x0000) +struct AudioVolume_SetSubmixOverrideSettings final +{ +public: + TArray NewSubmixOverrideSettings; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetSubmixOverrideSettings; + +// Function Engine.AudioVolume.SetSubmixSendSettings +// 0x0010 (0x0010 - 0x0000) +struct AudioVolume_SetSubmixSendSettings final +{ +public: + TArray NewSubmixSendSettings; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//AudioVolume_SetSubmixSendSettings; + +// Function Engine.ActorSoundParameterInterface.GetActorSoundParams +// 0x0010 (0x0010 - 0x0000) +struct ActorSoundParameterInterface_GetActorSoundParams final +{ +public: + TArray Params_0; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//ActorSoundParameterInterface_GetActorSoundParams; + +// Function Engine.AudioParameterConversionStatics.BooleanArrayToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_BooleanArrayToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Bools; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_BooleanArrayToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.BooleanToAudioParameter +// 0x00B0 (0x00B0 - 0x0000) +struct AudioParameterConversionStatics_BooleanToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Bool; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAudioParameter ReturnValue; // 0x0010(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_BooleanToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.FloatArrayToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_FloatArrayToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Floats; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_FloatArrayToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.FloatToAudioParameter +// 0x00B0 (0x00B0 - 0x0000) +struct AudioParameterConversionStatics_FloatToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float float_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAudioParameter ReturnValue; // 0x0010(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_FloatToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.IntegerArrayToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_IntegerArrayToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Integers; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_IntegerArrayToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.IntegerToAudioParameter +// 0x00B0 (0x00B0 - 0x0000) +struct AudioParameterConversionStatics_IntegerToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Integer; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAudioParameter ReturnValue; // 0x0010(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_IntegerToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.ObjectArrayToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_ObjectArrayToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Objects; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_ObjectArrayToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.ObjectToAudioParameter +// 0x00B0 (0x00B0 - 0x0000) +struct AudioParameterConversionStatics_ObjectToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Object; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0010(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_ObjectToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.StringArrayToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_StringArrayToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Strings; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_StringArrayToAudioParameter; + +// Function Engine.AudioParameterConversionStatics.StringToAudioParameter +// 0x00B8 (0x00B8 - 0x0000) +struct AudioParameterConversionStatics_StringToAudioParameter final +{ +public: + class FName Name_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString String; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAudioParameter ReturnValue; // 0x0018(0x00A0)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//AudioParameterConversionStatics_StringToAudioParameter; + +// Function Engine.BlueprintInstancedStructLibrary.EqualEqual_InstancedStruct +// 0x0028 (0x0028 - 0x0000) +struct BlueprintInstancedStructLibrary_EqualEqual_InstancedStruct final +{ +public: + struct FInstancedStruct A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FInstancedStruct B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_EqualEqual_InstancedStruct; + +// Function Engine.BlueprintInstancedStructLibrary.GetInstancedStructValue +// 0x0020 (0x0020 - 0x0000) +struct BlueprintInstancedStructLibrary_GetInstancedStructValue final +{ +public: + EStructUtilsResult ExecResult; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInstancedStruct InstancedStruct; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Value; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_GetInstancedStructValue; + +// Function Engine.BlueprintInstancedStructLibrary.IsInstancedStructValid +// 0x0018 (0x0018 - 0x0000) +struct BlueprintInstancedStructLibrary_IsInstancedStructValid final +{ +public: + struct FInstancedStruct InstancedStruct; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + EStructUtilsResult ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_IsInstancedStructValid; + +// Function Engine.BlueprintInstancedStructLibrary.IsValid_InstancedStruct +// 0x0018 (0x0018 - 0x0000) +struct BlueprintInstancedStructLibrary_IsValid_InstancedStruct final +{ +public: + struct FInstancedStruct InstancedStruct; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_IsValid_InstancedStruct; + +// Function Engine.BlueprintInstancedStructLibrary.MakeInstancedStruct +// 0x0018 (0x0018 - 0x0000) +struct BlueprintInstancedStructLibrary_MakeInstancedStruct final +{ +public: + int32 Value; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInstancedStruct ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//BlueprintInstancedStructLibrary_MakeInstancedStruct; + +// Function Engine.BlueprintInstancedStructLibrary.NotEqual_InstancedStruct +// 0x0028 (0x0028 - 0x0000) +struct BlueprintInstancedStructLibrary_NotEqual_InstancedStruct final +{ +public: + struct FInstancedStruct A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FInstancedStruct B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_NotEqual_InstancedStruct; + +// Function Engine.BlueprintInstancedStructLibrary.Reset +// 0x0018 (0x0018 - 0x0000) +struct BlueprintInstancedStructLibrary_Reset final +{ +public: + struct FInstancedStruct InstancedStruct; // 0x0000(0x0010)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + const class UScriptStruct* StructType; // 0x0010(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintInstancedStructLibrary_Reset; + +// Function Engine.BlueprintInstancedStructLibrary.SetInstancedStructValue +// 0x0018 (0x0018 - 0x0000) +struct BlueprintInstancedStructLibrary_SetInstancedStructValue final +{ +public: + struct FInstancedStruct InstancedStruct; // 0x0000(0x0010)(Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Value; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintInstancedStructLibrary_SetInstancedStructValue; + +// Function Engine.BlueprintSetLibrary.Set_Add +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_Add final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 NewItem; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_Add; + +// Function Engine.BlueprintSetLibrary.Set_AddItems +// 0x0060 (0x0060 - 0x0000) +struct BlueprintSetLibrary_Set_AddItems final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray NewItems; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_AddItems; + +// Function Engine.BlueprintSetLibrary.Set_Clear +// 0x0050 (0x0050 - 0x0000) +struct BlueprintSetLibrary_Set_Clear final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_Clear; + +// Function Engine.BlueprintSetLibrary.Set_Contains +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_Contains final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ItemToFind; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0054(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_Contains; + +// Function Engine.BlueprintSetLibrary.Set_Difference +// 0x00F0 (0x00F0 - 0x0000) +struct BlueprintSetLibrary_Set_Difference final +{ +public: + TSet A; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet B; // 0x0050(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet Result; // 0x00A0(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_Difference; + +// Function Engine.BlueprintSetLibrary.Set_Intersection +// 0x00F0 (0x00F0 - 0x0000) +struct BlueprintSetLibrary_Set_Intersection final +{ +public: + TSet A; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet B; // 0x0050(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet Result; // 0x00A0(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_Intersection; + +// Function Engine.BlueprintSetLibrary.Set_IsEmpty +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_IsEmpty final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_IsEmpty; + +// Function Engine.BlueprintSetLibrary.Set_IsNotEmpty +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_IsNotEmpty final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_IsNotEmpty; + +// Function Engine.BlueprintSetLibrary.Set_Length +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_Length final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_Length; + +// Function Engine.BlueprintSetLibrary.Set_Remove +// 0x0058 (0x0058 - 0x0000) +struct BlueprintSetLibrary_Set_Remove final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Item; // 0x0050(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0054(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintSetLibrary_Set_Remove; + +// Function Engine.BlueprintSetLibrary.Set_RemoveItems +// 0x0060 (0x0060 - 0x0000) +struct BlueprintSetLibrary_Set_RemoveItems final +{ +public: + TSet TargetSet; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray Items; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_RemoveItems; + +// Function Engine.BlueprintSetLibrary.Set_ToArray +// 0x0060 (0x0060 - 0x0000) +struct BlueprintSetLibrary_Set_ToArray final +{ +public: + TSet A; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TArray Result; // 0x0050(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_ToArray; + +// Function Engine.BlueprintSetLibrary.Set_Union +// 0x00F0 (0x00F0 - 0x0000) +struct BlueprintSetLibrary_Set_Union final +{ +public: + TSet A; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet B; // 0x0050(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + TSet Result; // 0x00A0(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_Set_Union; + +// Function Engine.BlueprintSetLibrary.SetSetPropertyByName +// 0x0060 (0x0060 - 0x0000) +struct BlueprintSetLibrary_SetSetPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSet Value; // 0x0010(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintSetLibrary_SetSetPropertyByName; + +// Function Engine.CameraLensEffectInterface.GetParticleComponents +// 0x0010 (0x0010 - 0x0000) +struct CameraLensEffectInterface_GetParticleComponents final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//CameraLensEffectInterface_GetParticleComponents; + +// Function Engine.CameraLensEffectInterface.GetPrimaryParticleComponent +// 0x0008 (0x0008 - 0x0000) +struct CameraLensEffectInterface_GetPrimaryParticleComponent final +{ +public: + class UFXSystemComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraLensEffectInterface_GetPrimaryParticleComponent; + +// Function Engine.CameraModifier.BlueprintModifyCamera +// 0x0078 (0x0078 - 0x0000) +struct CameraModifier_BlueprintModifyCamera final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ViewLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ViewRotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float FOV; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewViewLocation; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewViewRotation; // 0x0058(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float NewFOV; // 0x0070(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0x4]; // 0x0074(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraModifier_BlueprintModifyCamera; + +// Function Engine.CameraModifier.BlueprintModifyPostProcess +// 0x0710 (0x0710 - 0x0000) +struct CameraModifier_BlueprintModifyPostProcess final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PostProcessBlendWeight; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings PostProcessSettings; // 0x0010(0x0700)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//CameraModifier_BlueprintModifyPostProcess; + +// Function Engine.CameraModifier.DisableModifier +// 0x0001 (0x0001 - 0x0000) +struct CameraModifier_DisableModifier final +{ +public: + bool bImmediate; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraModifier_DisableModifier; + +// Function Engine.CameraModifier.OnCameraOwnerDestroyed +// 0x0008 (0x0008 - 0x0000) +struct CameraModifier_OnCameraOwnerDestroyed final +{ +public: + class AActor* InOwner; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraModifier_OnCameraOwnerDestroyed; + +// Function Engine.CameraModifier.GetViewTarget +// 0x0008 (0x0008 - 0x0000) +struct CameraModifier_GetViewTarget final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraModifier_GetViewTarget; + +// Function Engine.CameraModifier.IsDisabled +// 0x0001 (0x0001 - 0x0000) +struct CameraModifier_IsDisabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraModifier_IsDisabled; + +// Function Engine.CameraModifier.IsPendingDisable +// 0x0001 (0x0001 - 0x0000) +struct CameraModifier_IsPendingDisable final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraModifier_IsPendingDisable; + +// Function Engine.CameraShakeBase.SetRootShakePattern +// 0x0008 (0x0008 - 0x0000) +struct CameraShakeBase_SetRootShakePattern final +{ +public: + class UCameraShakePattern* InPattern; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraShakeBase_SetRootShakePattern; + +// Function Engine.CameraShakeBase.GetRootShakePattern +// 0x0008 (0x0008 - 0x0000) +struct CameraShakeBase_GetRootShakePattern final +{ +public: + class UCameraShakePattern* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraShakeBase_GetRootShakePattern; + +// Function Engine.CameraShakeSourceComponent.StartCameraShake +// 0x0028 (0x0028 - 0x0000) +struct CameraShakeSourceComponent_StartCameraShake final +{ +public: + TSubclassOf InCameraShake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECameraShakePlaySpace PlaySpace; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator UserPlaySpaceRot; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//CameraShakeSourceComponent_StartCameraShake; + +// Function Engine.CameraShakeSourceComponent.StopAllCameraShakes +// 0x0001 (0x0001 - 0x0000) +struct CameraShakeSourceComponent_StopAllCameraShakes final +{ +public: + bool bImmediately; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CameraShakeSourceComponent_StopAllCameraShakes; + +// Function Engine.CameraShakeSourceComponent.StopAllCameraShakesOfType +// 0x0010 (0x0010 - 0x0000) +struct CameraShakeSourceComponent_StopAllCameraShakesOfType final +{ +public: + TSubclassOf InCameraShake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraShakeSourceComponent_StopAllCameraShakesOfType; + +// Function Engine.CameraShakeSourceComponent.GetAttenuationFactor +// 0x0020 (0x0020 - 0x0000) +struct CameraShakeSourceComponent_GetAttenuationFactor final +{ +public: + struct FVector Location; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CameraShakeSourceComponent_GetAttenuationFactor; + +// Function Engine.CanvasRenderTarget2D.CreateCanvasRenderTarget2D +// 0x0020 (0x0020 - 0x0000) +struct CanvasRenderTarget2D_CreateCanvasRenderTarget2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf CanvasRenderTarget2DClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCanvasRenderTarget2D* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CanvasRenderTarget2D_CreateCanvasRenderTarget2D; + +// Function Engine.CanvasRenderTarget2D.GetSize +// 0x0008 (0x0008 - 0x0000) +struct CanvasRenderTarget2D_GetSize final +{ +public: + int32 Width; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CanvasRenderTarget2D_GetSize; + +// Function Engine.CanvasRenderTarget2D.ReceiveUpdate +// 0x0010 (0x0010 - 0x0000) +struct CanvasRenderTarget2D_ReceiveUpdate final +{ +public: + class UCanvas* Canvas; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CanvasRenderTarget2D_ReceiveUpdate; + +// Function Engine.CanvasRenderTarget2D.SetSampleCount +// 0x0001 (0x0001 - 0x0000) +struct CanvasRenderTarget2D_SetSampleCount final +{ +public: + ETextureRenderTargetSampleCount InSampleCount; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CanvasRenderTarget2D_SetSampleCount; + +// Function Engine.CanvasRenderTarget2D.GetSampleCount +// 0x0001 (0x0001 - 0x0000) +struct CanvasRenderTarget2D_GetSampleCount final +{ +public: + ETextureRenderTargetSampleCount ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CanvasRenderTarget2D_GetSampleCount; + +// Function Engine.Pawn.GetMovementBaseActor +// 0x0010 (0x0010 - 0x0000) +struct Pawn_GetMovementBaseActor final +{ +public: + const class APawn* Pawn; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetMovementBaseActor; + +// Function Engine.Pawn.AddControllerPitchInput +// 0x0004 (0x0004 - 0x0000) +struct Pawn_AddControllerPitchInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_AddControllerPitchInput; + +// Function Engine.Pawn.AddControllerRollInput +// 0x0004 (0x0004 - 0x0000) +struct Pawn_AddControllerRollInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_AddControllerRollInput; + +// Function Engine.Pawn.AddControllerYawInput +// 0x0004 (0x0004 - 0x0000) +struct Pawn_AddControllerYawInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_AddControllerYawInput; + +// Function Engine.Pawn.AddMovementInput +// 0x0020 (0x0020 - 0x0000) +struct Pawn_AddMovementInput final +{ +public: + struct FVector WorldDirection; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScaleValue; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForce; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Pawn_AddMovementInput; + +// Function Engine.Pawn.ConsumeMovementInputVector +// 0x0018 (0x0018 - 0x0000) +struct Pawn_ConsumeMovementInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_ConsumeMovementInputVector; + +// Function Engine.Pawn.PawnMakeNoise +// 0x0030 (0x0030 - 0x0000) +struct Pawn_PawnMakeNoise final +{ +public: + float Loudness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NoiseLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseNoiseMakerLocation; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* NoiseMaker; // 0x0028(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_PawnMakeNoise; + +// Function Engine.Pawn.ReceiveControllerChanged +// 0x0010 (0x0010 - 0x0000) +struct Pawn_ReceiveControllerChanged final +{ +public: + class AController* OldController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* NewController; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_ReceiveControllerChanged; + +// Function Engine.Pawn.ReceivePossessed +// 0x0008 (0x0008 - 0x0000) +struct Pawn_ReceivePossessed final +{ +public: + class AController* NewController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_ReceivePossessed; + +// Function Engine.Pawn.ReceiveUnpossessed +// 0x0008 (0x0008 - 0x0000) +struct Pawn_ReceiveUnpossessed final +{ +public: + class AController* OldController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_ReceiveUnpossessed; + +// Function Engine.Pawn.SetCanAffectNavigationGeneration +// 0x0002 (0x0002 - 0x0000) +struct Pawn_SetCanAffectNavigationGeneration final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceUpdate; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_SetCanAffectNavigationGeneration; + +// Function Engine.Pawn.GetBaseAimRotation +// 0x0018 (0x0018 - 0x0000) +struct Pawn_GetBaseAimRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Pawn_GetBaseAimRotation; + +// Function Engine.Pawn.GetController +// 0x0008 (0x0008 - 0x0000) +struct Pawn_GetController final +{ +public: + class AController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetController; + +// Function Engine.Pawn.GetControlRotation +// 0x0018 (0x0018 - 0x0000) +struct Pawn_GetControlRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Pawn_GetControlRotation; + +// Function Engine.Pawn.GetLastMovementInputVector +// 0x0018 (0x0018 - 0x0000) +struct Pawn_GetLastMovementInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetLastMovementInputVector; + +// Function Engine.Pawn.GetLocalViewingPlayerController +// 0x0008 (0x0008 - 0x0000) +struct Pawn_GetLocalViewingPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetLocalViewingPlayerController; + +// Function Engine.Pawn.GetMovementComponent +// 0x0008 (0x0008 - 0x0000) +struct Pawn_GetMovementComponent final +{ +public: + class UPawnMovementComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetMovementComponent; + +// Function Engine.Pawn.GetNavAgentLocation +// 0x0018 (0x0018 - 0x0000) +struct Pawn_GetNavAgentLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetNavAgentLocation; + +// Function Engine.Pawn.GetOverrideInputComponentClass +// 0x0008 (0x0008 - 0x0000) +struct Pawn_GetOverrideInputComponentClass final +{ +public: + TSubclassOf ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetOverrideInputComponentClass; + +// Function Engine.Pawn.GetPendingMovementInputVector +// 0x0018 (0x0018 - 0x0000) +struct Pawn_GetPendingMovementInputVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetPendingMovementInputVector; + +// Function Engine.Pawn.GetPlatformUserId +// 0x0004 (0x0004 - 0x0000) +struct Pawn_GetPlatformUserId final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_GetPlatformUserId; + +// Function Engine.Pawn.IsBotControlled +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsBotControlled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsBotControlled; + +// Function Engine.Pawn.IsControlled +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsControlled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsControlled; + +// Function Engine.Pawn.IsLocallyControlled +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsLocallyControlled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsLocallyControlled; + +// Function Engine.Pawn.IsLocallyViewed +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsLocallyViewed final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsLocallyViewed; + +// Function Engine.Pawn.IsMoveInputIgnored +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsMoveInputIgnored final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsMoveInputIgnored; + +// Function Engine.Pawn.IsPawnControlled +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsPawnControlled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsPawnControlled; + +// Function Engine.Pawn.IsPlayerControlled +// 0x0001 (0x0001 - 0x0000) +struct Pawn_IsPlayerControlled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Pawn_IsPlayerControlled; + +// Function Engine.Character.CacheInitialMeshOffset +// 0x0030 (0x0030 - 0x0000) +struct Character_CacheInitialMeshOffset final +{ +public: + struct FVector MeshRelativeLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator MeshRelativeRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Character_CacheInitialMeshOffset; + +// Function Engine.Character.ClientAckGoodMove +// 0x0004 (0x0004 - 0x0000) +struct Character_ClientAckGoodMove final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_ClientAckGoodMove; + +// Function Engine.Character.ClientAdjustPosition +// 0x0050 (0x0050 - 0x0000) +struct Character_ClientAdjustPosition final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewLoc; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NewVel; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* NewBase; // 0x0038(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewBaseBoneName; // 0x0040(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBase; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBaseRelativePosition; // 0x0049(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ServerMovementMode; // 0x004A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4B[0x5]; // 0x004B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ClientAdjustPosition; + +// Function Engine.Character.ClientAdjustRootMotionPosition +// 0x0058 (0x0058 - 0x0000) +struct Character_ClientAdjustRootMotionPosition final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerMontageTrackPosition; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ServerLoc; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantizeNormal ServerRotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerVelZ; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPrimitiveComponent* ServerBase; // 0x0040(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ServerBoneName; // 0x0048(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBase; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBaseRelativePosition; // 0x0051(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ServerMovementMode; // 0x0052(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_53[0x5]; // 0x0053(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ClientAdjustRootMotionPosition; + +// Function Engine.Character.ClientAdjustRootMotionSourcePosition +// 0x00A8 (0x00A8 - 0x0000) +struct Character_ClientAdjustRootMotionSourcePosition final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRootMotionSourceGroup ServerRootMotion; // 0x0008(0x0048)(Parm, NativeAccessSpecifierPublic) + bool bHasAnimRootMotion; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ServerMontageTrackPosition; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ServerLoc; // 0x0058(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantizeNormal ServerRotation; // 0x0070(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ServerVelZ; // 0x0088(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8C[0x4]; // 0x008C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPrimitiveComponent* ServerBase; // 0x0090(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ServerBoneName; // 0x0098(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBase; // 0x00A0(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBaseRelativePosition; // 0x00A1(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ServerMovementMode; // 0x00A2(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A3[0x5]; // 0x00A3(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ClientAdjustRootMotionSourcePosition; + +// Function Engine.Character.ClientMoveResponsePacked +// 0x0118 (0x0118 - 0x0000) +struct Character_ClientMoveResponsePacked final +{ +public: + struct FCharacterMoveResponsePackedBits PackedBits; // 0x0000(0x0118)(ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//Character_ClientMoveResponsePacked; + +// Function Engine.Character.ClientVeryShortAdjustPosition +// 0x0038 (0x0038 - 0x0000) +struct Character_ClientVeryShortAdjustPosition final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector NewLoc; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* NewBase; // 0x0020(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewBaseBoneName; // 0x0028(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBase; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBaseRelativePosition; // 0x0031(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ServerMovementMode; // 0x0032(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_33[0x5]; // 0x0033(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ClientVeryShortAdjustPosition; + +// Function Engine.Character.Crouch +// 0x0001 (0x0001 - 0x0000) +struct Character_Crouch final +{ +public: + bool bClientSimulation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_Crouch; + +// Function Engine.Character.K2_OnEndCrouch +// 0x0008 (0x0008 - 0x0000) +struct Character_K2_OnEndCrouch final +{ +public: + float HalfHeightAdjust; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScaledHalfHeightAdjust; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_K2_OnEndCrouch; + +// Function Engine.Character.K2_OnMovementModeChanged +// 0x0004 (0x0004 - 0x0000) +struct Character_K2_OnMovementModeChanged final +{ +public: + EMovementMode PrevMovementMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMovementMode NewMovementMode; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PrevCustomMode; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NewCustomMode; // 0x0003(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_K2_OnMovementModeChanged; + +// Function Engine.Character.K2_OnStartCrouch +// 0x0008 (0x0008 - 0x0000) +struct Character_K2_OnStartCrouch final +{ +public: + float HalfHeightAdjust; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScaledHalfHeightAdjust; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_K2_OnStartCrouch; + +// Function Engine.Character.K2_UpdateCustomMovement +// 0x0004 (0x0004 - 0x0000) +struct Character_K2_UpdateCustomMovement final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_K2_UpdateCustomMovement; + +// Function Engine.Character.LaunchCharacter +// 0x0020 (0x0020 - 0x0000) +struct Character_LaunchCharacter final +{ +public: + struct FVector LaunchVelocity; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bXYOverride; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bZOverride; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_LaunchCharacter; + +// Function Engine.Character.OnLanded +// 0x0100 (0x0100 - 0x0000) +struct Character_OnLanded final +{ +public: + struct FHitResult Hit; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//Character_OnLanded; + +// Function Engine.Character.OnLaunched +// 0x0020 (0x0020 - 0x0000) +struct Character_OnLaunched final +{ +public: + struct FVector LaunchVelocity; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bXYOverride; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bZOverride; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_OnLaunched; + +// Function Engine.Character.OnWalkingOffLedge +// 0x0050 (0x0050 - 0x0000) +struct Character_OnWalkingOffLedge final +{ +public: + struct FVector PreviousFloorImpactNormal; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousFloorContactNormal; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousLocation; // 0x0030(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeDelta; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_OnWalkingOffLedge; + +// Function Engine.Character.PlayAnimMontage +// 0x0018 (0x0018 - 0x0000) +struct Character_PlayAnimMontage final +{ +public: + class UAnimMontage* AnimMontage; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPlayRate; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StartSectionName; // 0x000C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_PlayAnimMontage; + +// Function Engine.Character.RootMotionDebugClientPrintOnScreen +// 0x0010 (0x0010 - 0x0000) +struct Character_RootMotionDebugClientPrintOnScreen final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_RootMotionDebugClientPrintOnScreen; + +// Function Engine.Character.ServerMove +// 0x0058 (0x0058 - 0x0000) +struct Character_ServerMove final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ClientLoc; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 CompressedMoveFlags; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientRoll; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x2]; // 0x003A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* ClientMovementBase; // 0x0040(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClientBaseBoneName; // 0x0048(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientMovementMode; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMove; + +// Function Engine.Character.ServerMoveDual +// 0x0080 (0x0080 - 0x0000) +struct Character_ServerMoveDual final +{ +public: + float TimeStamp0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel0; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PendingFlags; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View0; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Timestamp; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ClientLoc; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NewFlags; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientRoll; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* ClientMovementBase; // 0x0068(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClientBaseBoneName; // 0x0070(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientMovementMode; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMoveDual; + +// Function Engine.Character.ServerMoveDualHybridRootMotion +// 0x0080 (0x0080 - 0x0000) +struct Character_ServerMoveDualHybridRootMotion final +{ +public: + float TimeStamp0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel0; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PendingFlags; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View0; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Timestamp; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ClientLoc; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NewFlags; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientRoll; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* ClientMovementBase; // 0x0068(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClientBaseBoneName; // 0x0070(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientMovementMode; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMoveDualHybridRootMotion; + +// Function Engine.Character.ServerMoveDualNoBase +// 0x0070 (0x0070 - 0x0000) +struct Character_ServerMoveDualNoBase final +{ +public: + float TimeStamp0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel0; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PendingFlags; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View0; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Timestamp; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ClientLoc; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NewFlags; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientRoll; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientMovementMode; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMoveDualNoBase; + +// Function Engine.Character.ServerMoveNoBase +// 0x0048 (0x0048 - 0x0000) +struct Character_ServerMoveNoBase final +{ +public: + float Timestamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 InAccel; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ClientLoc; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 CompressedMoveFlags; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientRoll; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x2]; // 0x003A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 View; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ClientMovementMode; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMoveNoBase; + +// Function Engine.Character.ServerMoveOld +// 0x0028 (0x0028 - 0x0000) +struct Character_ServerMoveOld final +{ +public: + float OldTimeStamp; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 OldAccel; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 OldMoveFlags; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Character_ServerMoveOld; + +// Function Engine.Character.ServerMovePacked +// 0x0118 (0x0118 - 0x0000) +struct Character_ServerMovePacked final +{ +public: + struct FCharacterServerMovePackedBits PackedBits; // 0x0000(0x0118)(ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//Character_ServerMovePacked; + +// Function Engine.Character.StopAnimMontage +// 0x0008 (0x0008 - 0x0000) +struct Character_StopAnimMontage final +{ +public: + class UAnimMontage* AnimMontage; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_StopAnimMontage; + +// Function Engine.Character.UnCrouch +// 0x0001 (0x0001 - 0x0000) +struct Character_UnCrouch final +{ +public: + bool bClientSimulation; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_UnCrouch; + +// Function Engine.Character.CanCrouch +// 0x0001 (0x0001 - 0x0000) +struct Character_CanCrouch final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_CanCrouch; + +// Function Engine.Character.CanJump +// 0x0001 (0x0001 - 0x0000) +struct Character_CanJump final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_CanJump; + +// Function Engine.Character.CanJumpInternal +// 0x0001 (0x0001 - 0x0000) +struct Character_CanJumpInternal final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_CanJumpInternal; + +// Function Engine.Character.GetAnimRootMotionTranslationScale +// 0x0004 (0x0004 - 0x0000) +struct Character_GetAnimRootMotionTranslationScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_GetAnimRootMotionTranslationScale; + +// Function Engine.Character.GetBaseRotationOffsetRotator +// 0x0018 (0x0018 - 0x0000) +struct Character_GetBaseRotationOffsetRotator final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//Character_GetBaseRotationOffsetRotator; + +// Function Engine.Character.GetBaseTranslationOffset +// 0x0018 (0x0018 - 0x0000) +struct Character_GetBaseTranslationOffset final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_GetBaseTranslationOffset; + +// Function Engine.Character.GetCurrentMontage +// 0x0008 (0x0008 - 0x0000) +struct Character_GetCurrentMontage final +{ +public: + class UAnimMontage* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_GetCurrentMontage; + +// Function Engine.Character.HasAnyRootMotion +// 0x0001 (0x0001 - 0x0000) +struct Character_HasAnyRootMotion final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_HasAnyRootMotion; + +// Function Engine.Character.IsJumpProvidingForce +// 0x0001 (0x0001 - 0x0000) +struct Character_IsJumpProvidingForce final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_IsJumpProvidingForce; + +// Function Engine.Character.IsPlayingNetworkedRootMotionMontage +// 0x0001 (0x0001 - 0x0000) +struct Character_IsPlayingNetworkedRootMotionMontage final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_IsPlayingNetworkedRootMotionMontage; + +// Function Engine.Character.IsPlayingRootMotion +// 0x0001 (0x0001 - 0x0000) +struct Character_IsPlayingRootMotion final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Character_IsPlayingRootMotion; + +// Function Engine.PlayerController.ActivateTouchInterface +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ActivateTouchInterface final +{ +public: + class UTouchInterface* NewTouchInterface; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ActivateTouchInterface; + +// Function Engine.PlayerController.AddPitchInput +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_AddPitchInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_AddPitchInput; + +// Function Engine.PlayerController.AddRollInput +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_AddRollInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_AddRollInput; + +// Function Engine.PlayerController.AddYawInput +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_AddYawInput final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_AddYawInput; + +// Function Engine.PlayerController.Camera +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_Camera final +{ +public: + class FName NewMode; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_Camera; + +// Function Engine.PlayerController.CanRestartPlayer +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_CanRestartPlayer final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_CanRestartPlayer; + +// Function Engine.PlayerController.ClientAckTimeDilation +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientAckTimeDilation final +{ +public: + float TimeDilation; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ServerStep; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientAckTimeDilation; + +// Function Engine.PlayerController.ClientAckUpdateLevelVisibility +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientAckUpdateLevelVisibility final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNetLevelVisibilityTransactionId TransactionId; // 0x0008(0x0004)(Parm, NoDestructor, NativeAccessSpecifierPublic) + bool bClientAckCanMakeVisible; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientAckUpdateLevelVisibility; + +// Function Engine.PlayerController.ClientAddTextureStreamingLoc +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_ClientAddTextureStreamingLoc final +{ +public: + struct FVector InLoc; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideLocation; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientAddTextureStreamingLoc; + +// Function Engine.PlayerController.ClientCapBandwidth +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_ClientCapBandwidth final +{ +public: + int32 cap; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientCapBandwidth; + +// Function Engine.PlayerController.ClientCorrectionAsyncPhysicsTimestamp +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientCorrectionAsyncPhysicsTimestamp final +{ +public: + struct FAsyncPhysicsTimestamp Timestamp; // 0x0000(0x0008)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientCorrectionAsyncPhysicsTimestamp; + +// Function Engine.PlayerController.ClientEnableNetworkVoice +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ClientEnableNetworkVoice final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientEnableNetworkVoice; + +// Function Engine.PlayerController.ClientGameEnded +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientGameEnded final +{ +public: + class AActor* EndGameFocus; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsWinner; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientGameEnded; + +// Function Engine.PlayerController.ClientGotoState +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientGotoState final +{ +public: + class FName NewState; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientGotoState; + +// Function Engine.PlayerController.ClientIgnoreLookInput +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ClientIgnoreLookInput final +{ +public: + bool bIgnore; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientIgnoreLookInput; + +// Function Engine.PlayerController.ClientIgnoreMoveInput +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ClientIgnoreMoveInput final +{ +public: + bool bIgnore; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientIgnoreMoveInput; + +// Function Engine.PlayerController.ClientMessage +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_ClientMessage final +{ +public: + class FString S; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Type; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MsgLifeTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientMessage; + +// Function Engine.PlayerController.ClientMutePlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ClientMutePlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientMutePlayer; + +// Function Engine.PlayerController.ClientPlayForceFeedback_Internal +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ClientPlayForceFeedback_Internal final +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FForceFeedbackParameters Params_0; // 0x0008(0x000C)(Parm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientPlayForceFeedback_Internal; + +// Function Engine.PlayerController.ClientPlaySound +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientPlaySound final +{ +public: + class USoundBase* Sound; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientPlaySound; + +// Function Engine.PlayerController.ClientPlaySoundAtLocation +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientPlaySoundAtLocation final +{ +public: + class USoundBase* Sound; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientPlaySoundAtLocation; + +// Function Engine.PlayerController.ClientPrepareMapChange +// 0x000C (0x000C - 0x0000) +struct PlayerController_ClientPrepareMapChange final +{ +public: + class FName LevelName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFirst; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLast; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientPrepareMapChange; + +// Function Engine.PlayerController.ClientPrestreamTextures +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ClientPrestreamTextures final +{ +public: + class AActor* ForcedActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ForceDuration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableStreaming; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 CinematicTextureGroups; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientPrestreamTextures; + +// Function Engine.PlayerController.ClientReceiveLocalizedMessage +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientReceiveLocalizedMessage final +{ +public: + TSubclassOf Message; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SWITCH; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerState* RelatedPlayerState_1; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* RelatedPlayerState_2; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* OptionalObject; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientReceiveLocalizedMessage; + +// Function Engine.PlayerController.ClientRecvServerAckFrame +// 0x000C (0x000C - 0x0000) +struct PlayerController_ClientRecvServerAckFrame final +{ +public: + int32 LastProcessedInputFrame; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RecvServerFrameNumber; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 TimeDilation; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientRecvServerAckFrame; + +// Function Engine.PlayerController.ClientRecvServerAckFrameDebug +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientRecvServerAckFrameDebug final +{ +public: + uint8 NumBuffered; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TargetNumBufferedCmds; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientRecvServerAckFrameDebug; + +// Function Engine.PlayerController.ClientRepObjRef +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientRepObjRef final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientRepObjRef; + +// Function Engine.PlayerController.ClientRestart +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientRestart final +{ +public: + class APawn* NewPawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientRestart; + +// Function Engine.PlayerController.ClientRetryClientRestart +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientRetryClientRestart final +{ +public: + class APawn* NewPawn; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientRetryClientRestart; + +// Function Engine.PlayerController.ClientReturnToMainMenuWithTextReason +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientReturnToMainMenuWithTextReason final +{ +public: + class FText ReturnReason; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientReturnToMainMenuWithTextReason; + +// Function Engine.PlayerController.ClientSetCameraFade +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_ClientSetCameraFade final +{ +public: + bool bEnableFading; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor FadeColor; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D FadeAlpha; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFadeAudio; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHoldWhenFinished; // 0x001D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientSetCameraFade; + +// Function Engine.PlayerController.ClientSetCameraMode +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientSetCameraMode final +{ +public: + class FName NewCamMode; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetCameraMode; + +// Function Engine.PlayerController.ClientSetCinematicMode +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_ClientSetCinematicMode final +{ +public: + bool bInCinematicMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsMovement; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsTurning; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsHUD; // 0x0003(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetCinematicMode; + +// Function Engine.PlayerController.ClientSetForceMipLevelsToBeResident +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientSetForceMipLevelsToBeResident final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ForceDuration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CinematicTextureGroups; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetForceMipLevelsToBeResident; + +// Function Engine.PlayerController.ClientSetHUD +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientSetHUD final +{ +public: + TSubclassOf NewHUDClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetHUD; + +// Function Engine.PlayerController.ClientSetSpectatorWaiting +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ClientSetSpectatorWaiting final +{ +public: + bool bWaiting; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetSpectatorWaiting; + +// Function Engine.PlayerController.ClientSetupNetworkPhysicsTimestamp +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientSetupNetworkPhysicsTimestamp final +{ +public: + struct FAsyncPhysicsTimestamp Timestamp; // 0x0000(0x0008)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetupNetworkPhysicsTimestamp; + +// Function Engine.PlayerController.ClientSetViewTarget +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ClientSetViewTarget final +{ +public: + class AActor* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FViewTargetTransitionParams TransitionParams; // 0x0008(0x0010)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSetViewTarget; + +// Function Engine.PlayerController.ClientSpawnCameraLensEffect +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientSpawnCameraLensEffect final +{ +public: + TSubclassOf LensEffectEmitterClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSpawnCameraLensEffect; + +// Function Engine.PlayerController.ClientSpawnGenericCameraLensEffect +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ClientSpawnGenericCameraLensEffect final +{ +public: + TSubclassOf LensEffectEmitterClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientSpawnGenericCameraLensEffect; + +// Function Engine.PlayerController.ClientStartCameraShake +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientStartCameraShake final +{ +public: + TSubclassOf Shake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECameraShakePlaySpace PlaySpace; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator UserPlaySpaceRot; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientStartCameraShake; + +// Function Engine.PlayerController.ClientStartCameraShakeFromSource +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientStartCameraShakeFromSource final +{ +public: + TSubclassOf Shake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCameraShakeSourceComponent* SourceComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientStartCameraShakeFromSource; + +// Function Engine.PlayerController.ClientStopCameraShake +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientStopCameraShake final +{ +public: + TSubclassOf Shake; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientStopCameraShake; + +// Function Engine.PlayerController.ClientStopCameraShakesFromSource +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientStopCameraShakesFromSource final +{ +public: + class UCameraShakeSourceComponent* SourceComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bImmediately; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientStopCameraShakesFromSource; + +// Function Engine.PlayerController.ClientStopForceFeedback +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientStopForceFeedback final +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientStopForceFeedback; + +// Function Engine.PlayerController.ClientTeamMessage +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientTeamMessage final +{ +public: + class APlayerState* SenderPlayerState; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString S; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Type; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MsgLifeTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientTeamMessage; + +// Function Engine.PlayerController.ClientTravel +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientTravel final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETravelType TravelType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSeamless; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid MapPackageGuid; // 0x0014(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientTravel; + +// Function Engine.PlayerController.ClientTravelInternal +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_ClientTravelInternal final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETravelType TravelType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSeamless; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x2]; // 0x0012(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid MapPackageGuid; // 0x0014(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientTravelInternal; + +// Function Engine.PlayerController.ClientUnmutePlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ClientUnmutePlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientUnmutePlayer; + +// Function Engine.PlayerController.ClientUnmutePlayers +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientUnmutePlayers final +{ +public: + TArray PlayerIds; // 0x0000(0x0010)(ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientUnmutePlayers; + +// Function Engine.PlayerController.ClientUpdateLevelStreamingStatus +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ClientUpdateLevelStreamingStatus final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBeLoaded; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBeVisible; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBlockOnLoad; // 0x000A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LODIndex; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNetLevelVisibilityTransactionId TransactionId; // 0x0010(0x0004)(Parm, NoDestructor, NativeAccessSpecifierPublic) + bool bNewShouldBlockOnUnload; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ClientUpdateLevelStreamingStatus; + +// Function Engine.PlayerController.ClientUpdateMultipleLevelsStreamingStatus +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientUpdateMultipleLevelsStreamingStatus final +{ +public: + TArray LevelStatuses; // 0x0000(0x0010)(ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientUpdateMultipleLevelsStreamingStatus; + +// Function Engine.PlayerController.ClientWasKicked +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ClientWasKicked final +{ +public: + class FText KickReason; // 0x0000(0x0010)(ConstParm, Parm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ClientWasKicked; + +// Function Engine.PlayerController.ConsoleKey +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ConsoleKey final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ConsoleKey; + +// Function Engine.PlayerController.FOV +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_FOV final +{ +public: + float NewFOV; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_FOV; + +// Function Engine.PlayerController.K2_ClientPlayForceFeedback +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_K2_ClientPlayForceFeedback final +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnoreTimeDilation; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPlayWhilePaused; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_K2_ClientPlayForceFeedback; + +// Function Engine.PlayerController.LocalTravel +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_LocalTravel final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_LocalTravel; + +// Function Engine.PlayerController.OnServerStartedVisualLogger +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_OnServerStartedVisualLogger final +{ +public: + bool bIsLogging; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_OnServerStartedVisualLogger; + +// Function Engine.PlayerController.PlayDynamicForceFeedback +// 0x0028 (0x0028 - 0x0000) +struct PlayerController_PlayDynamicForceFeedback final +{ +public: + float Intensity; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsLeftLarge; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsLeftSmall; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsRightLarge; // 0x000A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsRightSmall; // 0x000B(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDynamicForceFeedbackAction Action; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0010(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_PlayDynamicForceFeedback; + +// Function Engine.PlayerController.PlayHapticEffect +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_PlayHapticEffect final +{ +public: + class UHapticFeedbackEffect_Base* HapticEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EControllerHand hand; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Scale; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLoop; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_PlayHapticEffect; + +// Function Engine.PlayerController.SendToConsole +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_SendToConsole final +{ +public: + class FString Command; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SendToConsole; + +// Function Engine.PlayerController.ServerAcknowledgePossession +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ServerAcknowledgePossession final +{ +public: + class APawn* P; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerAcknowledgePossession; + +// Function Engine.PlayerController.ServerBlockPlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ServerBlockPlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerBlockPlayer; + +// Function Engine.PlayerController.ServerCamera +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ServerCamera final +{ +public: + class FName NewMode; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerCamera; + +// Function Engine.PlayerController.ServerChangeName +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ServerChangeName final +{ +public: + class FString S; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerChangeName; + +// Function Engine.PlayerController.ServerExec +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ServerExec final +{ +public: + class FString Msg; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerExec; + +// Function Engine.PlayerController.ServerExecRPC +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ServerExecRPC final +{ +public: + class FString Msg; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerExecRPC; + +// Function Engine.PlayerController.ServerMutePlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ServerMutePlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerMutePlayer; + +// Function Engine.PlayerController.ServerNotifyLoadedWorld +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ServerNotifyLoadedWorld final +{ +public: + class FName WorldPackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerNotifyLoadedWorld; + +// Function Engine.PlayerController.ServerRecvClientInputFrame +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ServerRecvClientInputFrame final +{ +public: + int32 RecvClientInputFrame; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Data; // 0x0008(0x0010)(ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerRecvClientInputFrame; + +// Function Engine.PlayerController.ServerSendLatestAsyncPhysicsTimestamp +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_ServerSendLatestAsyncPhysicsTimestamp final +{ +public: + struct FAsyncPhysicsTimestamp Timestamp; // 0x0000(0x0008)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerSendLatestAsyncPhysicsTimestamp; + +// Function Engine.PlayerController.ServerSetSpectatorLocation +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ServerSetSpectatorLocation final +{ +public: + struct FVector NewLoc; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRot; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerSetSpectatorLocation; + +// Function Engine.PlayerController.ServerSetSpectatorWaiting +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ServerSetSpectatorWaiting final +{ +public: + bool bWaiting; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerSetSpectatorWaiting; + +// Function Engine.PlayerController.ServerUnblockPlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ServerUnblockPlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerUnblockPlayer; + +// Function Engine.PlayerController.ServerUnmutePlayer +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ServerUnmutePlayer final +{ +public: + struct FUniqueNetIdRepl PlayerId; // 0x0000(0x0030)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerUnmutePlayer; + +// Function Engine.PlayerController.ServerUpdateCamera +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_ServerUpdateCamera final +{ +public: + struct FVector_NetQuantize CamLoc; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CamPitchAndYaw; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ServerUpdateCamera; + +// Function Engine.PlayerController.ServerUpdateLevelVisibility +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_ServerUpdateLevelVisibility final +{ +public: + struct FUpdateLevelVisibilityLevelInfo LevelVisibility; // 0x0000(0x0018)(ConstParm, Parm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerUpdateLevelVisibility; + +// Function Engine.PlayerController.ServerUpdateMultipleLevelsVisibility +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ServerUpdateMultipleLevelsVisibility final +{ +public: + TArray LevelVisibilities; // 0x0000(0x0010)(ConstParm, Parm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerUpdateMultipleLevelsVisibility; + +// Function Engine.PlayerController.ServerViewSelf +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_ServerViewSelf final +{ +public: + struct FViewTargetTransitionParams TransitionParams; // 0x0000(0x0010)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_ServerViewSelf; + +// Function Engine.PlayerController.SetAudioListenerAttenuationOverride +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_SetAudioListenerAttenuationOverride final +{ +public: + class USceneComponent* AttachToComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AttenuationLocationOVerride; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetAudioListenerAttenuationOverride; + +// Function Engine.PlayerController.SetAudioListenerOverride +// 0x0038 (0x0038 - 0x0000) +struct PlayerController_SetAudioListenerOverride final +{ +public: + class USceneComponent* AttachToComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_SetAudioListenerOverride; + +// Function Engine.PlayerController.SetCinematicMode +// 0x0005 (0x0005 - 0x0000) +struct PlayerController_SetCinematicMode final +{ +public: + bool bInCinematicMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHidePlayer; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsHUD; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsMovement; // 0x0003(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectsTurning; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetCinematicMode; + +// Function Engine.PlayerController.SetControllerDeadZones +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_SetControllerDeadZones final +{ +public: + float LeftDeadZone; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RightDeadZone; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetControllerDeadZones; + +// Function Engine.PlayerController.SetControllerLightColor +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_SetControllerLightColor final +{ +public: + struct FColor Color; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetControllerLightColor; + +// Function Engine.PlayerController.SetDeprecatedInputPitchScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_SetDeprecatedInputPitchScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetDeprecatedInputPitchScale; + +// Function Engine.PlayerController.SetDeprecatedInputRollScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_SetDeprecatedInputRollScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetDeprecatedInputRollScale; + +// Function Engine.PlayerController.SetDeprecatedInputYawScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_SetDeprecatedInputYawScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetDeprecatedInputYawScale; + +// Function Engine.PlayerController.SetDisableHaptics +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_SetDisableHaptics final +{ +public: + bool bNewDisabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetDisableHaptics; + +// Function Engine.PlayerController.SetHapticsByValue +// 0x000C (0x000C - 0x0000) +struct PlayerController_SetHapticsByValue final +{ +public: + float Frequency; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Amplitude; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EControllerHand hand; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_SetHapticsByValue; + +// Function Engine.PlayerController.SetMotionControlsEnabled +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_SetMotionControlsEnabled final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetMotionControlsEnabled; + +// Function Engine.PlayerController.SetMouseCursorWidget +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_SetMouseCursorWidget final +{ +public: + EMouseCursor Cursor; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UUserWidget* CursorWidget; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetMouseCursorWidget; + +// Function Engine.PlayerController.SetMouseLocation +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_SetMouseLocation final +{ +public: + int32 X; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetMouseLocation; + +// Function Engine.PlayerController.SetName +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_SetName final +{ +public: + class FString S; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetName; + +// Function Engine.PlayerController.SetViewTargetWithBlend +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_SetViewTargetWithBlend final +{ +public: + class AActor* NewViewTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendTime; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EViewTargetBlendFunction BlendFunc; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendExp; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLockOutgoing; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_SetViewTargetWithBlend; + +// Function Engine.PlayerController.SetVirtualJoystickVisibility +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_SetVirtualJoystickVisibility final +{ +public: + bool bVisible; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SetVirtualJoystickVisibility; + +// Function Engine.PlayerController.StartFire +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_StartFire final +{ +public: + uint8 FireModeNum; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_StartFire; + +// Function Engine.PlayerController.StopHapticEffect +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_StopHapticEffect final +{ +public: + EControllerHand hand; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_StopHapticEffect; + +// Function Engine.PlayerController.SwitchLevel +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_SwitchLevel final +{ +public: + class FString URL; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_SwitchLevel; + +// Function Engine.PlayerController.TestServerLevelVisibilityChange +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_TestServerLevelVisibilityChange final +{ +public: + class FName PackageName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Filename; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_TestServerLevelVisibilityChange; + +// Function Engine.PlayerController.ToggleSpeaking +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_ToggleSpeaking final +{ +public: + bool bInSpeaking; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_ToggleSpeaking; + +// Function Engine.PlayerController.DeprojectMousePositionToWorld +// 0x0038 (0x0038 - 0x0000) +struct PlayerController_DeprojectMousePositionToWorld final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_DeprojectMousePositionToWorld; + +// Function Engine.PlayerController.DeprojectScreenPositionToWorld +// 0x0040 (0x0040 - 0x0000) +struct PlayerController_DeprojectScreenPositionToWorld final +{ +public: + float ScreenX; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenY; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldLocation; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0038(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_DeprojectScreenPositionToWorld; + +// Function Engine.PlayerController.GetDeprecatedInputPitchScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_GetDeprecatedInputPitchScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetDeprecatedInputPitchScale; + +// Function Engine.PlayerController.GetDeprecatedInputRollScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_GetDeprecatedInputRollScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetDeprecatedInputRollScale; + +// Function Engine.PlayerController.GetDeprecatedInputYawScale +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_GetDeprecatedInputYawScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetDeprecatedInputYawScale; + +// Function Engine.PlayerController.GetFocalLocation +// 0x0018 (0x0018 - 0x0000) +struct PlayerController_GetFocalLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetFocalLocation; + +// Function Engine.PlayerController.GetHitResultUnderCursor +// 0x0110 (0x0110 - 0x0000) +struct PlayerController_GetHitResultUnderCursor final +{ +public: + ECollisionChannel TraceChannel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0108(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderCursor; + +// Function Engine.PlayerController.GetHitResultUnderCursorByChannel +// 0x0110 (0x0110 - 0x0000) +struct PlayerController_GetHitResultUnderCursorByChannel final +{ +public: + ETraceTypeQuery TraceChannel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0108(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderCursorByChannel; + +// Function Engine.PlayerController.GetHitResultUnderCursorForObjects +// 0x0120 (0x0120 - 0x0000) +struct PlayerController_GetHitResultUnderCursorForObjects final +{ +public: + TArray ObjectTypes; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0018(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0118(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_119[0x7]; // 0x0119(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderCursorForObjects; + +// Function Engine.PlayerController.GetHitResultUnderFinger +// 0x0110 (0x0110 - 0x0000) +struct PlayerController_GetHitResultUnderFinger final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel TraceChannel; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x5]; // 0x0003(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0108(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderFinger; + +// Function Engine.PlayerController.GetHitResultUnderFingerByChannel +// 0x0110 (0x0110 - 0x0000) +struct PlayerController_GetHitResultUnderFingerByChannel final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETraceTypeQuery TraceChannel; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x5]; // 0x0003(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0108(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderFingerByChannel; + +// Function Engine.PlayerController.GetHitResultUnderFingerForObjects +// 0x0128 (0x0128 - 0x0000) +struct PlayerController_GetHitResultUnderFingerForObjects final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0020(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0120(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_121[0x7]; // 0x0121(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetHitResultUnderFingerForObjects; + +// Function Engine.PlayerController.GetHUD +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_GetHUD final +{ +public: + class AHUD* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetHUD; + +// Function Engine.PlayerController.GetInputAnalogKeyState +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_GetInputAnalogKeyState final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetInputAnalogKeyState; + +// Function Engine.PlayerController.GetInputAnalogStickState +// 0x000C (0x000C - 0x0000) +struct PlayerController_GetInputAnalogStickState final +{ +public: + EControllerAnalogStick WhichStick; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StickX; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StickY; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetInputAnalogStickState; + +// Function Engine.PlayerController.GetInputKeyTimeDown +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_GetInputKeyTimeDown final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetInputKeyTimeDown; + +// Function Engine.PlayerController.GetInputMotionState +// 0x0060 (0x0060 - 0x0000) +struct PlayerController_GetInputMotionState final +{ +public: + struct FVector Tilt; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RotationRate; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Gravity; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Acceleration; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetInputMotionState; + +// Function Engine.PlayerController.GetInputMouseDelta +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_GetInputMouseDelta final +{ +public: + float DeltaX; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaY; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetInputMouseDelta; + +// Function Engine.PlayerController.GetInputTouchState +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_GetInputTouchState final +{ +public: + ETouchIndex FingerIndex; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LocationX; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocationY; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsCurrentlyPressed; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetInputTouchState; + +// Function Engine.PlayerController.GetInputVectorKeyState +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_GetInputVectorKeyState final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetInputVectorKeyState; + +// Function Engine.PlayerController.GetMousePosition +// 0x000C (0x000C - 0x0000) +struct PlayerController_GetMousePosition final +{ +public: + float LocationX; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocationY; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_GetMousePosition; + +// Function Engine.PlayerController.GetOverridePlayerInputClass +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_GetOverridePlayerInputClass final +{ +public: + TSubclassOf ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetOverridePlayerInputClass; + +// Function Engine.PlayerController.GetPlatformUserId +// 0x0004 (0x0004 - 0x0000) +struct PlayerController_GetPlatformUserId final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetPlatformUserId; + +// Function Engine.PlayerController.GetSpectatorPawn +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_GetSpectatorPawn final +{ +public: + class ASpectatorPawn* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetSpectatorPawn; + +// Function Engine.PlayerController.GetStreamingSourceLocationAndRotation +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_GetStreamingSourceLocationAndRotation final +{ +public: + struct FVector OutLocation; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutRotation; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PlayerController_GetStreamingSourceLocationAndRotation; + +// Function Engine.PlayerController.GetStreamingSourcePriority +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_GetStreamingSourcePriority final +{ +public: + EStreamingSourcePriority ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetStreamingSourcePriority; + +// Function Engine.PlayerController.GetStreamingSourceShapes +// 0x0010 (0x0010 - 0x0000) +struct PlayerController_GetStreamingSourceShapes final +{ +public: + TArray OutShapes; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//PlayerController_GetStreamingSourceShapes; + +// Function Engine.PlayerController.GetViewportSize +// 0x0008 (0x0008 - 0x0000) +struct PlayerController_GetViewportSize final +{ +public: + int32 SizeX; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_GetViewportSize; + +// Function Engine.PlayerController.IsInputKeyDown +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_IsInputKeyDown final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_IsInputKeyDown; + +// Function Engine.PlayerController.IsStreamingSourceEnabled +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_IsStreamingSourceEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_IsStreamingSourceEnabled; + +// Function Engine.PlayerController.ProjectWorldLocationToScreen +// 0x0030 (0x0030 - 0x0000) +struct PlayerController_ProjectWorldLocationToScreen final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenLocation; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPlayerViewportRelative; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0029(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_ProjectWorldLocationToScreen; + +// Function Engine.PlayerController.StreamingSourceShouldActivate +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_StreamingSourceShouldActivate final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_StreamingSourceShouldActivate; + +// Function Engine.PlayerController.StreamingSourceShouldBlockOnSlowStreaming +// 0x0001 (0x0001 - 0x0000) +struct PlayerController_StreamingSourceShouldBlockOnSlowStreaming final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerController_StreamingSourceShouldBlockOnSlowStreaming; + +// Function Engine.PlayerController.WasInputKeyJustPressed +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_WasInputKeyJustPressed final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_WasInputKeyJustPressed; + +// Function Engine.PlayerController.WasInputKeyJustReleased +// 0x0020 (0x0020 - 0x0000) +struct PlayerController_WasInputKeyJustReleased final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PlayerController_WasInputKeyJustReleased; + +// Function Engine.CheatManager.BugIt +// 0x0010 (0x0010 - 0x0000) +struct CheatManager_BugIt final +{ +public: + class FString ScreenShotDescription; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_BugIt; + +// Function Engine.CheatManager.BugItGo +// 0x0018 (0x0018 - 0x0000) +struct CheatManager_BugItGo final +{ +public: + float X; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Yaw; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Roll; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_BugItGo; + +// Function Engine.CheatManager.BugItStringCreator +// 0x0050 (0x0050 - 0x0000) +struct CheatManager_BugItStringCreator final +{ +public: + struct FVector ViewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ViewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString GoString; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LocString; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_BugItStringCreator; + +// Function Engine.CheatManager.ChangeSize +// 0x0004 (0x0004 - 0x0000) +struct CheatManager_ChangeSize final +{ +public: + float F; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_ChangeSize; + +// Function Engine.CheatManager.CheatScript +// 0x0010 (0x0010 - 0x0000) +struct CheatManager_CheatScript final +{ +public: + class FString ScriptName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_CheatScript; + +// Function Engine.CheatManager.DamageTarget +// 0x0004 (0x0004 - 0x0000) +struct CheatManager_DamageTarget final +{ +public: + float DamageAmount; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DamageTarget; + +// Function Engine.CheatManager.DebugCapsuleSweepChannel +// 0x0001 (0x0001 - 0x0000) +struct CheatManager_DebugCapsuleSweepChannel final +{ +public: + ECollisionChannel Channel; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DebugCapsuleSweepChannel; + +// Function Engine.CheatManager.DebugCapsuleSweepComplex +// 0x0001 (0x0001 - 0x0000) +struct CheatManager_DebugCapsuleSweepComplex final +{ +public: + bool bTraceComplex; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DebugCapsuleSweepComplex; + +// Function Engine.CheatManager.DebugCapsuleSweepSize +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_DebugCapsuleSweepSize final +{ +public: + float HalfHeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DebugCapsuleSweepSize; + +// Function Engine.CheatManager.DestroyAll +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_DestroyAll final +{ +public: + TSubclassOf aClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DestroyAll; + +// Function Engine.CheatManager.DestroyPawns +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_DestroyPawns final +{ +public: + TSubclassOf aClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_DestroyPawns; + +// Function Engine.CheatManager.FreezeFrame +// 0x0004 (0x0004 - 0x0000) +struct CheatManager_FreezeFrame final +{ +public: + float Delay; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_FreezeFrame; + +// Function Engine.CheatManager.OnlyLoadLevel +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_OnlyLoadLevel final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_OnlyLoadLevel; + +// Function Engine.CheatManager.OnPlayerEndPlayed +// 0x0010 (0x0010 - 0x0000) +struct CheatManager_OnPlayerEndPlayed final +{ +public: + class AActor* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEndPlayReason EndPlayReason; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CheatManager_OnPlayerEndPlayed; + +// Function Engine.CheatManager.Slomo +// 0x0004 (0x0004 - 0x0000) +struct CheatManager_Slomo final +{ +public: + float NewTimeDilation; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_Slomo; + +// Function Engine.CheatManager.StreamLevelIn +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_StreamLevelIn final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_StreamLevelIn; + +// Function Engine.CheatManager.StreamLevelOut +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_StreamLevelOut final +{ +public: + class FName PackageName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_StreamLevelOut; + +// Function Engine.CheatManager.Summon +// 0x0010 (0x0010 - 0x0000) +struct CheatManager_Summon final +{ +public: + class FString ClassName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_Summon; + +// Function Engine.CheatManager.ViewActor +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_ViewActor final +{ +public: + class FName ActorName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_ViewActor; + +// Function Engine.CheatManager.ViewClass +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_ViewClass final +{ +public: + TSubclassOf DesiredClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_ViewClass; + +// Function Engine.CheatManager.ViewPlayer +// 0x0010 (0x0010 - 0x0000) +struct CheatManager_ViewPlayer final +{ +public: + class FString S; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_ViewPlayer; + +// Function Engine.CheatManager.GetPlayerController +// 0x0008 (0x0008 - 0x0000) +struct CheatManager_GetPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManager_GetPlayerController; + +// Function Engine.CheatManagerExtension.GetPlayerController +// 0x0008 (0x0008 - 0x0000) +struct CheatManagerExtension_GetPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CheatManagerExtension_GetPlayerController; + +// Function Engine.ArrowComponent.SetArrowColor +// 0x0010 (0x0010 - 0x0000) +struct ArrowComponent_SetArrowColor final +{ +public: + struct FLinearColor NewColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetArrowColor; + +// Function Engine.ArrowComponent.SetArrowFColor +// 0x0004 (0x0004 - 0x0000) +struct ArrowComponent_SetArrowFColor final +{ +public: + struct FColor NewColor; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetArrowFColor; + +// Function Engine.ArrowComponent.SetArrowLength +// 0x0004 (0x0004 - 0x0000) +struct ArrowComponent_SetArrowLength final +{ +public: + float NewLength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetArrowLength; + +// Function Engine.ArrowComponent.SetArrowSize +// 0x0004 (0x0004 - 0x0000) +struct ArrowComponent_SetArrowSize final +{ +public: + float NewSize; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetArrowSize; + +// Function Engine.ArrowComponent.SetIsScreenSizeScaled +// 0x0001 (0x0001 - 0x0000) +struct ArrowComponent_SetIsScreenSizeScaled final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetIsScreenSizeScaled; + +// Function Engine.ArrowComponent.SetScreenSize +// 0x0004 (0x0004 - 0x0000) +struct ArrowComponent_SetScreenSize final +{ +public: + float NewScreenSize; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetScreenSize; + +// Function Engine.ArrowComponent.SetTreatAsASprite +// 0x0001 (0x0001 - 0x0000) +struct ArrowComponent_SetTreatAsASprite final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetTreatAsASprite; + +// Function Engine.ArrowComponent.SetUseInEditorScaling +// 0x0001 (0x0001 - 0x0000) +struct ArrowComponent_SetUseInEditorScaling final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ArrowComponent_SetUseInEditorScaling; + +// Function Engine.BillboardComponent.SetOpacityMaskRefVal +// 0x0004 (0x0004 - 0x0000) +struct BillboardComponent_SetOpacityMaskRefVal final +{ +public: + float RefVal; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BillboardComponent_SetOpacityMaskRefVal; + +// Function Engine.BillboardComponent.SetSprite +// 0x0008 (0x0008 - 0x0000) +struct BillboardComponent_SetSprite final +{ +public: + class UTexture2D* NewSprite; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BillboardComponent_SetSprite; + +// Function Engine.BillboardComponent.SetSpriteAndUV +// 0x0018 (0x0018 - 0x0000) +struct BillboardComponent_SetSpriteAndUV final +{ +public: + class UTexture2D* NewSprite; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewU; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewUL; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewV; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewVL; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BillboardComponent_SetSpriteAndUV; + +// Function Engine.BillboardComponent.SetUV +// 0x0010 (0x0010 - 0x0000) +struct BillboardComponent_SetUV final +{ +public: + int32 NewU; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewUL; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewV; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NewVL; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BillboardComponent_SetUV; + +// Function Engine.CapsuleComponent.SetCapsuleHalfHeight +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_SetCapsuleHalfHeight final +{ +public: + float HalfHeight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CapsuleComponent_SetCapsuleHalfHeight; + +// Function Engine.CapsuleComponent.SetCapsuleRadius +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_SetCapsuleRadius final +{ +public: + float Radius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CapsuleComponent_SetCapsuleRadius; + +// Function Engine.CapsuleComponent.SetCapsuleSize +// 0x000C (0x000C - 0x0000) +struct CapsuleComponent_SetCapsuleSize final +{ +public: + float InRadius; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InHalfHeight; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOverlaps; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CapsuleComponent_SetCapsuleSize; + +// Function Engine.CapsuleComponent.GetScaledCapsuleHalfHeight +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetScaledCapsuleHalfHeight final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetScaledCapsuleHalfHeight; + +// Function Engine.CapsuleComponent.GetScaledCapsuleHalfHeight_WithoutHemisphere +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetScaledCapsuleHalfHeight_WithoutHemisphere; + +// Function Engine.CapsuleComponent.GetScaledCapsuleRadius +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetScaledCapsuleRadius final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetScaledCapsuleRadius; + +// Function Engine.CapsuleComponent.GetScaledCapsuleSize +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_GetScaledCapsuleSize final +{ +public: + float OutRadius; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutHalfHeight; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetScaledCapsuleSize; + +// Function Engine.CapsuleComponent.GetScaledCapsuleSize_WithoutHemisphere +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere final +{ +public: + float OutRadius; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutHalfHeightWithoutHemisphere; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetScaledCapsuleSize_WithoutHemisphere; + +// Function Engine.CapsuleComponent.GetShapeScale +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetShapeScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetShapeScale; + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleHalfHeight +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetUnscaledCapsuleHalfHeight final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetUnscaledCapsuleHalfHeight; + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleHalfHeight_WithoutHemisphere +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetUnscaledCapsuleHalfHeight_WithoutHemisphere; + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleRadius +// 0x0004 (0x0004 - 0x0000) +struct CapsuleComponent_GetUnscaledCapsuleRadius final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetUnscaledCapsuleRadius; + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleSize +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_GetUnscaledCapsuleSize final +{ +public: + float OutRadius; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutHalfHeight; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetUnscaledCapsuleSize; + +// Function Engine.CapsuleComponent.GetUnscaledCapsuleSize_WithoutHemisphere +// 0x0008 (0x0008 - 0x0000) +struct CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere final +{ +public: + float OutRadius; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutHalfHeightWithoutHemisphere; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CapsuleComponent_GetUnscaledCapsuleSize_WithoutHemisphere; + +// Function Engine.CharacterMovementComponent.AddForce +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_AddForce final +{ +public: + struct FVector Force; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_AddForce; + +// Function Engine.CharacterMovementComponent.AddImpulse +// 0x0020 (0x0020 - 0x0000) +struct CharacterMovementComponent_AddImpulse final +{ +public: + struct FVector Impulse; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVelocityChange; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CharacterMovementComponent_AddImpulse; + +// Function Engine.CharacterMovementComponent.CalcVelocity +// 0x0010 (0x0010 - 0x0000) +struct CharacterMovementComponent_CalcVelocity final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Friction; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFluid; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BrakingDeceleration; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_CalcVelocity; + +// Function Engine.CharacterMovementComponent.CapsuleTouched +// 0x0120 (0x0120 - 0x0000) +struct CharacterMovementComponent_CapsuleTouched final +{ +public: + class UPrimitiveComponent* OverlappedComp; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* Other; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* OtherComp; // 0x0010(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OtherBodyIndex; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFromSweep; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult SweepResult; // 0x0020(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_CapsuleTouched; + +// Function Engine.CharacterMovementComponent.SetAvoidanceEnabled +// 0x0001 (0x0001 - 0x0000) +struct CharacterMovementComponent_SetAvoidanceEnabled final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetAvoidanceEnabled; + +// Function Engine.CharacterMovementComponent.SetAvoidanceGroup +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetAvoidanceGroup final +{ +public: + int32 GroupFlags; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetAvoidanceGroup; + +// Function Engine.CharacterMovementComponent.SetAvoidanceGroupMask +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetAvoidanceGroupMask final +{ +public: + struct FNavAvoidanceMask GroupMask; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetAvoidanceGroupMask; + +// Function Engine.CharacterMovementComponent.SetCrouchedHalfHeight +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetCrouchedHalfHeight final +{ +public: + float NewValue; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetCrouchedHalfHeight; + +// Function Engine.CharacterMovementComponent.SetGravityDirection +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_SetGravityDirection final +{ +public: + struct FVector GravityDir; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetGravityDirection; + +// Function Engine.CharacterMovementComponent.SetGroupsToAvoid +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetGroupsToAvoid final +{ +public: + int32 GroupFlags; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetGroupsToAvoid; + +// Function Engine.CharacterMovementComponent.SetGroupsToAvoidMask +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetGroupsToAvoidMask final +{ +public: + struct FNavAvoidanceMask GroupMask; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetGroupsToAvoidMask; + +// Function Engine.CharacterMovementComponent.SetGroupsToIgnore +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetGroupsToIgnore final +{ +public: + int32 GroupFlags; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetGroupsToIgnore; + +// Function Engine.CharacterMovementComponent.SetGroupsToIgnoreMask +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetGroupsToIgnoreMask final +{ +public: + struct FNavAvoidanceMask GroupMask; // 0x0000(0x0004)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetGroupsToIgnoreMask; + +// Function Engine.CharacterMovementComponent.SetMovementMode +// 0x0002 (0x0002 - 0x0000) +struct CharacterMovementComponent_SetMovementMode final +{ +public: + EMovementMode NewMovementMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 NewCustomMode; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetMovementMode; + +// Function Engine.CharacterMovementComponent.SetWalkableFloorAngle +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetWalkableFloorAngle final +{ +public: + float InWalkableFloorAngle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetWalkableFloorAngle; + +// Function Engine.CharacterMovementComponent.SetWalkableFloorZ +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_SetWalkableFloorZ final +{ +public: + float InWalkableFloorZ; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_SetWalkableFloorZ; + +// Function Engine.CharacterMovementComponent.GetAnalogInputModifier +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetAnalogInputModifier final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetAnalogInputModifier; + +// Function Engine.CharacterMovementComponent.GetCharacterOwner +// 0x0008 (0x0008 - 0x0000) +struct CharacterMovementComponent_GetCharacterOwner final +{ +public: + class ACharacter* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetCharacterOwner; + +// Function Engine.CharacterMovementComponent.GetCrouchedHalfHeight +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetCrouchedHalfHeight final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetCrouchedHalfHeight; + +// Function Engine.CharacterMovementComponent.GetCurrentAcceleration +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetCurrentAcceleration final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetCurrentAcceleration; + +// Function Engine.CharacterMovementComponent.GetGravityDirection +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetGravityDirection final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetGravityDirection; + +// Function Engine.CharacterMovementComponent.GetImpartedMovementBaseVelocity +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetImpartedMovementBaseVelocity final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetImpartedMovementBaseVelocity; + +// Function Engine.CharacterMovementComponent.GetLastUpdateLocation +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetLastUpdateLocation final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetLastUpdateLocation; + +// Function Engine.CharacterMovementComponent.GetLastUpdateRequestedVelocity +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetLastUpdateRequestedVelocity final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetLastUpdateRequestedVelocity; + +// Function Engine.CharacterMovementComponent.GetLastUpdateRotation +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetLastUpdateRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetLastUpdateRotation; + +// Function Engine.CharacterMovementComponent.GetLastUpdateVelocity +// 0x0018 (0x0018 - 0x0000) +struct CharacterMovementComponent_GetLastUpdateVelocity final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetLastUpdateVelocity; + +// Function Engine.CharacterMovementComponent.GetMaxAcceleration +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetMaxAcceleration final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMaxAcceleration; + +// Function Engine.CharacterMovementComponent.GetMaxBrakingDeceleration +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetMaxBrakingDeceleration final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMaxBrakingDeceleration; + +// Function Engine.CharacterMovementComponent.GetMaxJumpHeight +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetMaxJumpHeight final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMaxJumpHeight; + +// Function Engine.CharacterMovementComponent.GetMaxJumpHeightWithJumpTime +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetMaxJumpHeightWithJumpTime final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMaxJumpHeightWithJumpTime; + +// Function Engine.CharacterMovementComponent.GetMinAnalogSpeed +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetMinAnalogSpeed final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMinAnalogSpeed; + +// Function Engine.CharacterMovementComponent.GetMovementBase +// 0x0008 (0x0008 - 0x0000) +struct CharacterMovementComponent_GetMovementBase final +{ +public: + class UPrimitiveComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetMovementBase; + +// Function Engine.CharacterMovementComponent.GetPerchRadiusThreshold +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetPerchRadiusThreshold final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetPerchRadiusThreshold; + +// Function Engine.CharacterMovementComponent.GetValidPerchRadius +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_GetValidPerchRadius final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_GetValidPerchRadius; + +// Function Engine.CharacterMovementComponent.HasCustomGravity +// 0x0001 (0x0001 - 0x0000) +struct CharacterMovementComponent_HasCustomGravity final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_HasCustomGravity; + +// Function Engine.CharacterMovementComponent.IsWalkable +// 0x0108 (0x0108 - 0x0000) +struct CharacterMovementComponent_IsWalkable final +{ +public: + struct FHitResult Hit; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0100(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//CharacterMovementComponent_IsWalkable; + +// Function Engine.CharacterMovementComponent.IsWalking +// 0x0001 (0x0001 - 0x0000) +struct CharacterMovementComponent_IsWalking final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_IsWalking; + +// Function Engine.CharacterMovementComponent.K2_ComputeFloorDist +// 0x0138 (0x0138 - 0x0000) +struct CharacterMovementComponent_K2_ComputeFloorDist final +{ +public: + struct FVector CapsuleLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LineDistance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SweepDistance; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SweepRadius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FFindFloorResult FloorResult; // 0x0028(0x0110)(Parm, OutParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_K2_ComputeFloorDist; + +// Function Engine.CharacterMovementComponent.K2_FindFloor +// 0x0128 (0x0128 - 0x0000) +struct CharacterMovementComponent_K2_FindFloor final +{ +public: + struct FVector CapsuleLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFindFloorResult FloorResult; // 0x0018(0x0110)(Parm, OutParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_K2_FindFloor; + +// Function Engine.CharacterMovementComponent.K2_GetWalkableFloorAngle +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_K2_GetWalkableFloorAngle final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_K2_GetWalkableFloorAngle; + +// Function Engine.CharacterMovementComponent.K2_GetWalkableFloorZ +// 0x0004 (0x0004 - 0x0000) +struct CharacterMovementComponent_K2_GetWalkableFloorZ final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CharacterMovementComponent_K2_GetWalkableFloorZ; + +// Function Engine.DecalComponent.CreateDynamicMaterialInstance +// 0x0008 (0x0008 - 0x0000) +struct DecalComponent_CreateDynamicMaterialInstance final +{ +public: + class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_CreateDynamicMaterialInstance; + +// Function Engine.DecalComponent.SetDecalColor +// 0x0010 (0x0010 - 0x0000) +struct DecalComponent_SetDecalColor final +{ +public: + struct FLinearColor Color; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_SetDecalColor; + +// Function Engine.DecalComponent.SetDecalMaterial +// 0x0008 (0x0008 - 0x0000) +struct DecalComponent_SetDecalMaterial final +{ +public: + class UMaterialInterface* NewDecalMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_SetDecalMaterial; + +// Function Engine.DecalComponent.SetFadeIn +// 0x0008 (0x0008 - 0x0000) +struct DecalComponent_SetFadeIn final +{ +public: + float StartDelay; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_SetFadeIn; + +// Function Engine.DecalComponent.SetFadeOut +// 0x000C (0x000C - 0x0000) +struct DecalComponent_SetFadeOut final +{ +public: + float StartDelay; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool DestroyOwnerAfterFade; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DecalComponent_SetFadeOut; + +// Function Engine.DecalComponent.SetFadeScreenSize +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_SetFadeScreenSize final +{ +public: + float NewFadeScreenSize; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_SetFadeScreenSize; + +// Function Engine.DecalComponent.SetSortOrder +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_SetSortOrder final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_SetSortOrder; + +// Function Engine.DecalComponent.GetDecalMaterial +// 0x0008 (0x0008 - 0x0000) +struct DecalComponent_GetDecalMaterial final +{ +public: + class UMaterialInterface* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_GetDecalMaterial; + +// Function Engine.DecalComponent.GetFadeDuration +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_GetFadeDuration final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_GetFadeDuration; + +// Function Engine.DecalComponent.GetFadeInDuration +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_GetFadeInDuration final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_GetFadeInDuration; + +// Function Engine.DecalComponent.GetFadeInStartDelay +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_GetFadeInStartDelay final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_GetFadeInStartDelay; + +// Function Engine.DecalComponent.GetFadeStartDelay +// 0x0004 (0x0004 - 0x0000) +struct DecalComponent_GetFadeStartDelay final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalComponent_GetFadeStartDelay; + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunDiskColorScale +// 0x0010 (0x0010 - 0x0000) +struct DirectionalLightComponent_SetAtmosphereSunDiskColorScale final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetAtmosphereSunDiskColorScale; + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunLight +// 0x0001 (0x0001 - 0x0000) +struct DirectionalLightComponent_SetAtmosphereSunLight final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetAtmosphereSunLight; + +// Function Engine.DirectionalLightComponent.SetAtmosphereSunLightIndex +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetAtmosphereSunLightIndex final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetAtmosphereSunLightIndex; + +// Function Engine.DirectionalLightComponent.SetCascadeDistributionExponent +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetCascadeDistributionExponent final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetCascadeDistributionExponent; + +// Function Engine.DirectionalLightComponent.SetCascadeTransitionFraction +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetCascadeTransitionFraction final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetCascadeTransitionFraction; + +// Function Engine.DirectionalLightComponent.SetDynamicShadowCascades +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetDynamicShadowCascades final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetDynamicShadowCascades; + +// Function Engine.DirectionalLightComponent.SetDynamicShadowDistanceMovableLight +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetDynamicShadowDistanceMovableLight final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetDynamicShadowDistanceMovableLight; + +// Function Engine.DirectionalLightComponent.SetDynamicShadowDistanceStationaryLight +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetDynamicShadowDistanceStationaryLight; + +// Function Engine.DirectionalLightComponent.SetEnableLightShaftOcclusion +// 0x0001 (0x0001 - 0x0000) +struct DirectionalLightComponent_SetEnableLightShaftOcclusion final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetEnableLightShaftOcclusion; + +// Function Engine.DirectionalLightComponent.SetForwardShadingPriority +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetForwardShadingPriority final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetForwardShadingPriority; + +// Function Engine.DirectionalLightComponent.SetLightShaftOverrideDirection +// 0x0018 (0x0018 - 0x0000) +struct DirectionalLightComponent_SetLightShaftOverrideDirection final +{ +public: + struct FVector NewValue; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetLightShaftOverrideDirection; + +// Function Engine.DirectionalLightComponent.SetLightSourceAngle +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetLightSourceAngle final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetLightSourceAngle; + +// Function Engine.DirectionalLightComponent.SetLightSourceSoftAngle +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetLightSourceSoftAngle final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetLightSourceSoftAngle; + +// Function Engine.DirectionalLightComponent.SetOcclusionDepthRange +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetOcclusionDepthRange final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetOcclusionDepthRange; + +// Function Engine.DirectionalLightComponent.SetOcclusionMaskDarkness +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetOcclusionMaskDarkness final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetOcclusionMaskDarkness; + +// Function Engine.DirectionalLightComponent.SetShadowAmount +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetShadowAmount final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetShadowAmount; + +// Function Engine.DirectionalLightComponent.SetShadowCascadeBiasDistribution +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetShadowCascadeBiasDistribution final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetShadowCascadeBiasDistribution; + +// Function Engine.DirectionalLightComponent.SetShadowDistanceFadeoutFraction +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetShadowDistanceFadeoutFraction final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetShadowDistanceFadeoutFraction; + +// Function Engine.DirectionalLightComponent.SetShadowSourceAngleFactor +// 0x0004 (0x0004 - 0x0000) +struct DirectionalLightComponent_SetShadowSourceAngleFactor final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DirectionalLightComponent_SetShadowSourceAngleFactor; + +// Function Engine.ForceFeedbackComponent.AdjustAttenuation +// 0x00C0 (0x00C0 - 0x0000) +struct ForceFeedbackComponent_AdjustAttenuation final +{ +public: + struct FForceFeedbackAttenuationSettings InAttenuationSettings; // 0x0000(0x00C0)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//ForceFeedbackComponent_AdjustAttenuation; + +// Function Engine.ForceFeedbackComponent.Play +// 0x0004 (0x0004 - 0x0000) +struct ForceFeedbackComponent_Play final +{ +public: + float StartTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ForceFeedbackComponent_Play; + +// Function Engine.ForceFeedbackComponent.SetForceFeedbackEffect +// 0x0008 (0x0008 - 0x0000) +struct ForceFeedbackComponent_SetForceFeedbackEffect final +{ +public: + class UForceFeedbackEffect* NewForceFeedbackEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ForceFeedbackComponent_SetForceFeedbackEffect; + +// Function Engine.ForceFeedbackComponent.SetIntensityMultiplier +// 0x0004 (0x0004 - 0x0000) +struct ForceFeedbackComponent_SetIntensityMultiplier final +{ +public: + float NewIntensityMultiplier; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ForceFeedbackComponent_SetIntensityMultiplier; + +// Function Engine.ForceFeedbackComponent.BP_GetAttenuationSettingsToApply +// 0x00C8 (0x00C8 - 0x0000) +struct ForceFeedbackComponent_BP_GetAttenuationSettingsToApply final +{ +public: + struct FForceFeedbackAttenuationSettings OutAttenuationSettings; // 0x0000(0x00C0)(Parm, OutParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00C0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0x7]; // 0x00C1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ForceFeedbackComponent_BP_GetAttenuationSettingsToApply; + +// Function Engine.HeterogeneousVolumeComponent.SetEndFrame +// 0x0004 (0x0004 - 0x0000) +struct HeterogeneousVolumeComponent_SetEndFrame final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetEndFrame; + +// Function Engine.HeterogeneousVolumeComponent.SetFrame +// 0x0004 (0x0004 - 0x0000) +struct HeterogeneousVolumeComponent_SetFrame final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetFrame; + +// Function Engine.HeterogeneousVolumeComponent.SetFrameRate +// 0x0004 (0x0004 - 0x0000) +struct HeterogeneousVolumeComponent_SetFrameRate final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetFrameRate; + +// Function Engine.HeterogeneousVolumeComponent.SetLooping +// 0x0001 (0x0001 - 0x0000) +struct HeterogeneousVolumeComponent_SetLooping final +{ +public: + bool NewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetLooping; + +// Function Engine.HeterogeneousVolumeComponent.SetPlaying +// 0x0001 (0x0001 - 0x0000) +struct HeterogeneousVolumeComponent_SetPlaying final +{ +public: + bool NewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetPlaying; + +// Function Engine.HeterogeneousVolumeComponent.SetStartFrame +// 0x0004 (0x0004 - 0x0000) +struct HeterogeneousVolumeComponent_SetStartFrame final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetStartFrame; + +// Function Engine.HeterogeneousVolumeComponent.SetStreamingMipBias +// 0x0004 (0x0004 - 0x0000) +struct HeterogeneousVolumeComponent_SetStreamingMipBias final +{ +public: + int32 NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetStreamingMipBias; + +// Function Engine.HeterogeneousVolumeComponent.SetVolumeResolution +// 0x000C (0x000C - 0x0000) +struct HeterogeneousVolumeComponent_SetVolumeResolution final +{ +public: + struct FIntVector NewValue; // 0x0000(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//HeterogeneousVolumeComponent_SetVolumeResolution; + +// Function Engine.InterpToMovementComponent.AddControlPointPosition +// 0x0020 (0x0020 - 0x0000) +struct InterpToMovementComponent_AddControlPointPosition final +{ +public: + struct FVector Pos; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPositionIsRelative; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InterpToMovementComponent_AddControlPointPosition; + +// Function Engine.InterpToMovementComponent.RestartMovement +// 0x0004 (0x0004 - 0x0000) +struct InterpToMovementComponent_RestartMovement final +{ +public: + float InitialDirection; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InterpToMovementComponent_RestartMovement; + +// Function Engine.InterpToMovementComponent.StopSimulating +// 0x0100 (0x0100 - 0x0000) +struct InterpToMovementComponent_StopSimulating final +{ +public: + struct FHitResult HitResult; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//InterpToMovementComponent_StopSimulating; + +// Function Engine.LocalFogVolumeComponent.SetFogAlbedo +// 0x0010 (0x0010 - 0x0000) +struct LocalFogVolumeComponent_SetFogAlbedo final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetFogAlbedo; + +// Function Engine.LocalFogVolumeComponent.SetFogEmissive +// 0x0010 (0x0010 - 0x0000) +struct LocalFogVolumeComponent_SetFogEmissive final +{ +public: + struct FLinearColor NewValue; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetFogEmissive; + +// Function Engine.LocalFogVolumeComponent.SetFogPhaseG +// 0x0004 (0x0004 - 0x0000) +struct LocalFogVolumeComponent_SetFogPhaseG final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetFogPhaseG; + +// Function Engine.LocalFogVolumeComponent.SetHeightFogExtinction +// 0x0004 (0x0004 - 0x0000) +struct LocalFogVolumeComponent_SetHeightFogExtinction final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetHeightFogExtinction; + +// Function Engine.LocalFogVolumeComponent.SetHeightFogFalloff +// 0x0004 (0x0004 - 0x0000) +struct LocalFogVolumeComponent_SetHeightFogFalloff final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetHeightFogFalloff; + +// Function Engine.LocalFogVolumeComponent.SetHeightFogOffset +// 0x0004 (0x0004 - 0x0000) +struct LocalFogVolumeComponent_SetHeightFogOffset final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetHeightFogOffset; + +// Function Engine.LocalFogVolumeComponent.SetRadialFogExtinction +// 0x0004 (0x0004 - 0x0000) +struct LocalFogVolumeComponent_SetRadialFogExtinction final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalFogVolumeComponent_SetRadialFogExtinction; + +// Function Engine.MaterialBillboardComponent.AddElement +// 0x0028 (0x0028 - 0x0000) +struct MaterialBillboardComponent_AddElement final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* DistanceToOpacityCurve; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSizeIsInScreenSpace; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BaseSizeX; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseSizeY; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* DistanceToSizeCurve; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialBillboardComponent_AddElement; + +// Function Engine.MaterialBillboardComponent.SetElements +// 0x0010 (0x0010 - 0x0000) +struct MaterialBillboardComponent_SetElements final +{ +public: + TArray NewElements; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//MaterialBillboardComponent_SetElements; + +// Function Engine.PlatformEventsComponent.IsInLaptopMode +// 0x0001 (0x0001 - 0x0000) +struct PlatformEventsComponent_IsInLaptopMode final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformEventsComponent_IsInLaptopMode; + +// Function Engine.PlatformEventsComponent.IsInTabletMode +// 0x0001 (0x0001 - 0x0000) +struct PlatformEventsComponent_IsInTabletMode final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformEventsComponent_IsInTabletMode; + +// Function Engine.PlatformEventsComponent.SupportsConvertibleLaptops +// 0x0001 (0x0001 - 0x0000) +struct PlatformEventsComponent_SupportsConvertibleLaptops final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlatformEventsComponent_SupportsConvertibleLaptops; + +// Function Engine.PointLightComponent.SetInverseExposureBlend +// 0x0004 (0x0004 - 0x0000) +struct PointLightComponent_SetInverseExposureBlend final +{ +public: + float NewInverseExposureBlend; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetInverseExposureBlend; + +// Function Engine.PointLightComponent.SetLightFalloffExponent +// 0x0004 (0x0004 - 0x0000) +struct PointLightComponent_SetLightFalloffExponent final +{ +public: + float NewLightFalloffExponent; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetLightFalloffExponent; + +// Function Engine.PointLightComponent.SetSoftSourceRadius +// 0x0004 (0x0004 - 0x0000) +struct PointLightComponent_SetSoftSourceRadius final +{ +public: + float bNewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetSoftSourceRadius; + +// Function Engine.PointLightComponent.SetSourceLength +// 0x0004 (0x0004 - 0x0000) +struct PointLightComponent_SetSourceLength final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetSourceLength; + +// Function Engine.PointLightComponent.SetSourceRadius +// 0x0004 (0x0004 - 0x0000) +struct PointLightComponent_SetSourceRadius final +{ +public: + float bNewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetSourceRadius; + +// Function Engine.PointLightComponent.SetUseInverseSquaredFalloff +// 0x0001 (0x0001 - 0x0000) +struct PointLightComponent_SetUseInverseSquaredFalloff final +{ +public: + bool bNewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PointLightComponent_SetUseInverseSquaredFalloff; + +// Function Engine.PoseableMeshComponent.CopyPoseFromSkeletalComponent +// 0x0008 (0x0008 - 0x0000) +struct PoseableMeshComponent_CopyPoseFromSkeletalComponent final +{ +public: + class USkeletalMeshComponent* InComponentToCopy; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_CopyPoseFromSkeletalComponent; + +// Function Engine.PoseableMeshComponent.GetBoneLocationByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_GetBoneLocationByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_GetBoneLocationByName; + +// Function Engine.PoseableMeshComponent.GetBoneRotationByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_GetBoneRotationByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_GetBoneRotationByName; + +// Function Engine.PoseableMeshComponent.GetBoneScaleByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_GetBoneScaleByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_GetBoneScaleByName; + +// Function Engine.PoseableMeshComponent.GetBoneTransformByName +// 0x0070 (0x0070 - 0x0000) +struct PoseableMeshComponent_GetBoneTransformByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_GetBoneTransformByName; + +// Function Engine.PoseableMeshComponent.ResetBoneTransformByName +// 0x0008 (0x0008 - 0x0000) +struct PoseableMeshComponent_ResetBoneTransformByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PoseableMeshComponent_ResetBoneTransformByName; + +// Function Engine.PoseableMeshComponent.SetBoneLocationByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_SetBoneLocationByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PoseableMeshComponent_SetBoneLocationByName; + +// Function Engine.PoseableMeshComponent.SetBoneRotationByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_SetBoneRotationByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator InRotation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PoseableMeshComponent_SetBoneRotationByName; + +// Function Engine.PoseableMeshComponent.SetBoneScaleByName +// 0x0028 (0x0028 - 0x0000) +struct PoseableMeshComponent_SetBoneScaleByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InScale3D; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PoseableMeshComponent_SetBoneScaleByName; + +// Function Engine.PoseableMeshComponent.SetBoneTransformByName +// 0x0080 (0x0080 - 0x0000) +struct PoseableMeshComponent_SetBoneTransformByName final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform InTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneSpaces BoneSpace; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PoseableMeshComponent_SetBoneTransformByName; + +// Function Engine.RectLightComponent.SetBarnDoorAngle +// 0x0004 (0x0004 - 0x0000) +struct RectLightComponent_SetBarnDoorAngle final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RectLightComponent_SetBarnDoorAngle; + +// Function Engine.RectLightComponent.SetBarnDoorLength +// 0x0004 (0x0004 - 0x0000) +struct RectLightComponent_SetBarnDoorLength final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RectLightComponent_SetBarnDoorLength; + +// Function Engine.RectLightComponent.SetSourceHeight +// 0x0004 (0x0004 - 0x0000) +struct RectLightComponent_SetSourceHeight final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RectLightComponent_SetSourceHeight; + +// Function Engine.RectLightComponent.SetSourceTexture +// 0x0008 (0x0008 - 0x0000) +struct RectLightComponent_SetSourceTexture final +{ +public: + class UTexture* NewValue; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RectLightComponent_SetSourceTexture; + +// Function Engine.RectLightComponent.SetSourceWidth +// 0x0004 (0x0004 - 0x0000) +struct RectLightComponent_SetSourceWidth final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RectLightComponent_SetSourceWidth; + +// Function Engine.SplineComponent.AddPoint +// 0x0090 (0x0090 - 0x0000) +struct SplineComponent_AddPoint final +{ +public: + struct FSplinePoint Point; // 0x0000(0x0088)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0088(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x7]; // 0x0089(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_AddPoint; + +// Function Engine.SplineComponent.AddPoints +// 0x0018 (0x0018 - 0x0000) +struct SplineComponent_AddPoints final +{ +public: + TArray Points; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_AddPoints; + +// Function Engine.SplineComponent.AddSplineLocalPoint +// 0x0018 (0x0018 - 0x0000) +struct SplineComponent_AddSplineLocalPoint final +{ +public: + struct FVector position; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_AddSplineLocalPoint; + +// Function Engine.SplineComponent.AddSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_AddSplinePoint final +{ +public: + struct FVector position; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_AddSplinePoint; + +// Function Engine.SplineComponent.AddSplinePointAtIndex +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_AddSplinePointAtIndex final +{ +public: + struct FVector position; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x001D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_AddSplinePointAtIndex; + +// Function Engine.SplineComponent.AddSplineWorldPoint +// 0x0018 (0x0018 - 0x0000) +struct SplineComponent_AddSplineWorldPoint final +{ +public: + struct FVector position; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_AddSplineWorldPoint; + +// Function Engine.SplineComponent.ClearSplinePoints +// 0x0001 (0x0001 - 0x0000) +struct SplineComponent_ClearSplinePoints final +{ +public: + bool bUpdateSpline; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_ClearSplinePoints; + +// Function Engine.SplineComponent.RemoveSplinePoint +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_RemoveSplinePoint final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_RemoveSplinePoint; + +// Function Engine.SplineComponent.SetClosedLoop +// 0x0002 (0x0002 - 0x0000) +struct SplineComponent_SetClosedLoop final +{ +public: + bool bInClosedLoop; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetClosedLoop; + +// Function Engine.SplineComponent.SetClosedLoopAtPosition +// 0x000C (0x000C - 0x0000) +struct SplineComponent_SetClosedLoopAtPosition final +{ +public: + bool bInClosedLoop; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Key; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetClosedLoopAtPosition; + +// Function Engine.SplineComponent.SetDefaultUpVector +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_SetDefaultUpVector final +{ +public: + struct FVector UpVector; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetDefaultUpVector; + +// Function Engine.SplineComponent.SetDrawDebug +// 0x0001 (0x0001 - 0x0000) +struct SplineComponent_SetDrawDebug final +{ +public: + bool bShow; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetDrawDebug; + +// Function Engine.SplineComponent.SetLocationAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_SetLocationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InLocation; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetLocationAtSplinePoint; + +// Function Engine.SplineComponent.SetOverrideConstructionScript +// 0x0001 (0x0001 - 0x0000) +struct SplineComponent_SetOverrideConstructionScript final +{ +public: + bool InOverride; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetOverrideConstructionScript; + +// Function Engine.SplineComponent.SetRotationAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_SetRotationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator InRotation; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetRotationAtSplinePoint; + +// Function Engine.SplineComponent.SetScaleAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_SetScaleAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InScaleVector; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetScaleAtSplinePoint; + +// Function Engine.SplineComponent.SetSelectedSplineSegmentColor +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_SetSelectedSplineSegmentColor final +{ +public: + struct FLinearColor SegmentColor; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetSelectedSplineSegmentColor; + +// Function Engine.SplineComponent.SetSplineLocalPoints +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_SetSplineLocalPoints final +{ +public: + TArray Points; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetSplineLocalPoints; + +// Function Engine.SplineComponent.SetSplinePoints +// 0x0018 (0x0018 - 0x0000) +struct SplineComponent_SetSplinePoints final +{ +public: + TArray Points; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetSplinePoints; + +// Function Engine.SplineComponent.SetSplinePointType +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_SetSplinePointType final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplinePointType Type; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetSplinePointType; + +// Function Engine.SplineComponent.SetSplineWorldPoints +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_SetSplineWorldPoints final +{ +public: + TArray Points; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetSplineWorldPoints; + +// Function Engine.SplineComponent.SetTangentAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_SetTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InTangent; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetTangentAtSplinePoint; + +// Function Engine.SplineComponent.SetTangentColor +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_SetTangentColor final +{ +public: + struct FLinearColor TangentColor; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetTangentColor; + +// Function Engine.SplineComponent.SetTangentsAtSplinePoint +// 0x0040 (0x0040 - 0x0000) +struct SplineComponent_SetTangentsAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InArriveTangent; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InLeaveTangent; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0039(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetTangentsAtSplinePoint; + +// Function Engine.SplineComponent.SetUnselectedSplineSegmentColor +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_SetUnselectedSplineSegmentColor final +{ +public: + struct FLinearColor SegmentColor; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetUnselectedSplineSegmentColor; + +// Function Engine.SplineComponent.SetUpVectorAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_SetUpVectorAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InUpVector; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateSpline; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_SetUpVectorAtSplinePoint; + +// Function Engine.SplineComponent.SetWorldLocationAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_SetWorldLocationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InLocation; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_SetWorldLocationAtSplinePoint; + +// Function Engine.SplineComponent.ConvertSplineSegmentToPolyLine +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_ConvertSplineSegmentToPolyLine final +{ +public: + int32 SplinePointStartIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x0008(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutPoints; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_ConvertSplineSegmentToPolyLine; + +// Function Engine.SplineComponent.ConvertSplineToPolyLine +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_ConvertSplineToPolyLine final +{ +public: + ESplineCoordinateSpace CoordinateSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPoints; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_ConvertSplineToPolyLine; + +// Function Engine.SplineComponent.ConvertSplineToPolyline_InDistanceRange +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_ConvertSplineToPolyline_InDistanceRange final +{ +public: + ESplineCoordinateSpace CoordinateSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartDistAlongSpline; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndDistAlongSpline; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPoints; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray OutDistancesAlongSpline; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bAllowWrappingIfClosed; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0031(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_ConvertSplineToPolyline_InDistanceRange; + +// Function Engine.SplineComponent.ConvertSplineToPolyline_InTimeRange +// 0x0040 (0x0040 - 0x0000) +struct SplineComponent_ConvertSplineToPolyline_InTimeRange final +{ +public: + ESplineCoordinateSpace CoordinateSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTimeAlongSpline; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndTimeAlongSpline; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OutPoints; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray OutDistancesAlongSpline; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bAllowWrappingIfClosed; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0039(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_ConvertSplineToPolyline_InTimeRange; + +// Function Engine.SplineComponent.ConvertSplineToPolyLineWithDistances +// 0x0030 (0x0030 - 0x0000) +struct SplineComponent_ConvertSplineToPolyLineWithDistances final +{ +public: + ESplineCoordinateSpace CoordinateSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x0004(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPoints; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray OutDistancesAlongSpline; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_ConvertSplineToPolyLineWithDistances; + +// Function Engine.SplineComponent.DivideSplineIntoPolylineRecursive +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_DivideSplineIntoPolylineRecursive final +{ +public: + float StartDistanceAlongSpline; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndDistanceAlongSpline; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x000C(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPoints; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_DivideSplineIntoPolylineRecursive; + +// Function Engine.SplineComponent.DivideSplineIntoPolylineRecursiveWithDistances +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances final +{ +public: + float StartDistanceAlongSpline; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndDistanceAlongSpline; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSquareDistanceFromSpline; // 0x000C(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutPoints; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + TArray OutDistancesAlongSpline; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_DivideSplineIntoPolylineRecursiveWithDistances; + +// Function Engine.SplineComponent.FindDirectionClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindDirectionClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindDirectionClosestToWorldLocation; + +// Function Engine.SplineComponent.FindInputKeyClosestToWorldLocation +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_FindInputKeyClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_FindInputKeyClosestToWorldLocation; + +// Function Engine.SplineComponent.FindLocationClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindLocationClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindLocationClosestToWorldLocation; + +// Function Engine.SplineComponent.FindRightVectorClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindRightVectorClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindRightVectorClosestToWorldLocation; + +// Function Engine.SplineComponent.FindRollClosestToWorldLocation +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_FindRollClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindRollClosestToWorldLocation; + +// Function Engine.SplineComponent.FindRotationClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindRotationClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindRotationClosestToWorldLocation; + +// Function Engine.SplineComponent.FindScaleClosestToWorldLocation +// 0x0030 (0x0030 - 0x0000) +struct SplineComponent_FindScaleClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindScaleClosestToWorldLocation; + +// Function Engine.SplineComponent.FindTangentClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindTangentClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindTangentClosestToWorldLocation; + +// Function Engine.SplineComponent.FindTransformClosestToWorldLocation +// 0x0080 (0x0080 - 0x0000) +struct SplineComponent_FindTransformClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseScale; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0020(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindTransformClosestToWorldLocation; + +// Function Engine.SplineComponent.FindUpVectorClosestToWorldLocation +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_FindUpVectorClosestToWorldLocation final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_FindUpVectorClosestToWorldLocation; + +// Function Engine.SplineComponent.GetArriveTangentAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetArriveTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetArriveTangentAtSplinePoint; + +// Function Engine.SplineComponent.GetDefaultUpVector +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDefaultUpVector final +{ +public: + ESplineCoordinateSpace CoordinateSpace; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDefaultUpVector; + +// Function Engine.SplineComponent.GetDirectionAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDirectionAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDirectionAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetDirectionAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDirectionAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDirectionAtSplineInputKey; + +// Function Engine.SplineComponent.GetDirectionAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDirectionAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDirectionAtSplinePoint; + +// Function Engine.SplineComponent.GetDirectionAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDirectionAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDirectionAtTime; + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtLocation +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetDistanceAlongSplineAtLocation final +{ +public: + struct FVector InLocation; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDistanceAlongSplineAtLocation; + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtSplineInputKey +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetDistanceAlongSplineAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDistanceAlongSplineAtSplineInputKey; + +// Function Engine.SplineComponent.GetDistanceAlongSplineAtSplinePoint +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetDistanceAlongSplineAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetDistanceAlongSplineAtSplinePoint; + +// Function Engine.SplineComponent.GetFloatPropertyAtSplineInputKey +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_GetFloatPropertyAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetFloatPropertyAtSplineInputKey; + +// Function Engine.SplineComponent.GetFloatPropertyAtSplinePoint +// 0x0010 (0x0010 - 0x0000) +struct SplineComponent_GetFloatPropertyAtSplinePoint final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetFloatPropertyAtSplinePoint; + +// Function Engine.SplineComponent.GetInputKeyAtDistanceAlongSpline +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetInputKeyAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetInputKeyAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetInputKeyValueAtDistanceAlongSpline +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetInputKeyValueAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetInputKeyValueAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetInputKeyValueAtSplinePoint +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetInputKeyValueAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetInputKeyValueAtSplinePoint; + +// Function Engine.SplineComponent.GetLeaveTangentAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetLeaveTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLeaveTangentAtSplinePoint; + +// Function Engine.SplineComponent.GetLocalLocationAndTangentAtSplinePoint +// 0x0038 (0x0038 - 0x0000) +struct SplineComponent_GetLocalLocationAndTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector LocalLocation; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LocalTangent; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLocalLocationAndTangentAtSplinePoint; + +// Function Engine.SplineComponent.GetLocationAndTangentAtSplinePoint +// 0x0040 (0x0040 - 0x0000) +struct SplineComponent_GetLocationAndTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Location; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Tangent; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_GetLocationAndTangentAtSplinePoint; + +// Function Engine.SplineComponent.GetLocationAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetLocationAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLocationAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetLocationAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetLocationAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLocationAtSplineInputKey; + +// Function Engine.SplineComponent.GetLocationAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetLocationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLocationAtSplinePoint; + +// Function Engine.SplineComponent.GetLocationAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetLocationAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetLocationAtTime; + +// Function Engine.SplineComponent.GetNumberOfSplinePoints +// 0x0004 (0x0004 - 0x0000) +struct SplineComponent_GetNumberOfSplinePoints final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetNumberOfSplinePoints; + +// Function Engine.SplineComponent.GetNumberOfSplineSegments +// 0x0004 (0x0004 - 0x0000) +struct SplineComponent_GetNumberOfSplineSegments final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetNumberOfSplineSegments; + +// Function Engine.SplineComponent.GetRightVectorAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRightVectorAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRightVectorAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetRightVectorAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRightVectorAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRightVectorAtSplineInputKey; + +// Function Engine.SplineComponent.GetRightVectorAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRightVectorAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRightVectorAtSplinePoint; + +// Function Engine.SplineComponent.GetRightVectorAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRightVectorAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRightVectorAtTime; + +// Function Engine.SplineComponent.GetRollAtDistanceAlongSpline +// 0x000C (0x000C - 0x0000) +struct SplineComponent_GetRollAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRollAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetRollAtSplineInputKey +// 0x000C (0x000C - 0x0000) +struct SplineComponent_GetRollAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRollAtSplineInputKey; + +// Function Engine.SplineComponent.GetRollAtSplinePoint +// 0x000C (0x000C - 0x0000) +struct SplineComponent_GetRollAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRollAtSplinePoint; + +// Function Engine.SplineComponent.GetRollAtTime +// 0x000C (0x000C - 0x0000) +struct SplineComponent_GetRollAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRollAtTime; + +// Function Engine.SplineComponent.GetRotationAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRotationAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRotationAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetRotationAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRotationAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRotationAtSplineInputKey; + +// Function Engine.SplineComponent.GetRotationAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRotationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRotationAtSplinePoint; + +// Function Engine.SplineComponent.GetRotationAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetRotationAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetRotationAtTime; + +// Function Engine.SplineComponent.GetScaleAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetScaleAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetScaleAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetScaleAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetScaleAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetScaleAtSplineInputKey; + +// Function Engine.SplineComponent.GetScaleAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetScaleAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetScaleAtSplinePoint; + +// Function Engine.SplineComponent.GetScaleAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetScaleAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetScaleAtTime; + +// Function Engine.SplineComponent.GetSplineLength +// 0x0004 (0x0004 - 0x0000) +struct SplineComponent_GetSplineLength final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetSplineLength; + +// Function Engine.SplineComponent.GetSplinePointAt +// 0x0090 (0x0090 - 0x0000) +struct SplineComponent_GetSplinePointAt final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSplinePoint ReturnValue; // 0x0008(0x0088)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetSplinePointAt; + +// Function Engine.SplineComponent.GetSplinePointType +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetSplinePointType final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplinePointType ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SplineComponent_GetSplinePointType; + +// Function Engine.SplineComponent.GetTangentAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetTangentAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTangentAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetTangentAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetTangentAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTangentAtSplineInputKey; + +// Function Engine.SplineComponent.GetTangentAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetTangentAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTangentAtSplinePoint; + +// Function Engine.SplineComponent.GetTangentAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetTangentAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTangentAtTime; + +// Function Engine.SplineComponent.GetTimeAtDistanceAlongSpline +// 0x0008 (0x0008 - 0x0000) +struct SplineComponent_GetTimeAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTimeAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetTransformAtDistanceAlongSpline +// 0x0070 (0x0070 - 0x0000) +struct SplineComponent_GetTransformAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseScale; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0xA]; // 0x0006(0x000A)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTransformAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetTransformAtSplineInputKey +// 0x0070 (0x0070 - 0x0000) +struct SplineComponent_GetTransformAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseScale; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0xA]; // 0x0006(0x000A)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTransformAtSplineInputKey; + +// Function Engine.SplineComponent.GetTransformAtSplinePoint +// 0x0070 (0x0070 - 0x0000) +struct SplineComponent_GetTransformAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseScale; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0xA]; // 0x0006(0x000A)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTransformAtSplinePoint; + +// Function Engine.SplineComponent.GetTransformAtTime +// 0x0070 (0x0070 - 0x0000) +struct SplineComponent_GetTransformAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseScale; // 0x0006(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7[0x9]; // 0x0007(0x0009)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0010(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetTransformAtTime; + +// Function Engine.SplineComponent.GetUpVectorAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetUpVectorAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetUpVectorAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetUpVectorAtSplineInputKey +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetUpVectorAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetUpVectorAtSplineInputKey; + +// Function Engine.SplineComponent.GetUpVectorAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetUpVectorAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetUpVectorAtSplinePoint; + +// Function Engine.SplineComponent.GetUpVectorAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetUpVectorAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplineCoordinateSpace CoordinateSpace; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0005(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetUpVectorAtTime; + +// Function Engine.SplineComponent.GetVectorPropertyAtSplineInputKey +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_GetVectorPropertyAtSplineInputKey final +{ +public: + float InKey; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetVectorPropertyAtSplineInputKey; + +// Function Engine.SplineComponent.GetVectorPropertyAtSplinePoint +// 0x0028 (0x0028 - 0x0000) +struct SplineComponent_GetVectorPropertyAtSplinePoint final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0004(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetVectorPropertyAtSplinePoint; + +// Function Engine.SplineComponent.GetWorldDirectionAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldDirectionAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldDirectionAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetWorldDirectionAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldDirectionAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldDirectionAtTime; + +// Function Engine.SplineComponent.GetWorldLocationAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldLocationAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldLocationAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetWorldLocationAtSplinePoint +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldLocationAtSplinePoint final +{ +public: + int32 PointIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldLocationAtSplinePoint; + +// Function Engine.SplineComponent.GetWorldLocationAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldLocationAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldLocationAtTime; + +// Function Engine.SplineComponent.GetWorldRotationAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldRotationAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldRotationAtDistanceAlongSpline; + +// Function Engine.SplineComponent.GetWorldRotationAtTime +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldRotationAtTime final +{ +public: + float Time; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseConstantVelocity; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldRotationAtTime; + +// Function Engine.SplineComponent.GetWorldTangentAtDistanceAlongSpline +// 0x0020 (0x0020 - 0x0000) +struct SplineComponent_GetWorldTangentAtDistanceAlongSpline final +{ +public: + float Distance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_GetWorldTangentAtDistanceAlongSpline; + +// Function Engine.SplineComponent.IsClosedLoop +// 0x0001 (0x0001 - 0x0000) +struct SplineComponent_IsClosedLoop final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SplineComponent_IsClosedLoop; + +// Function Engine.SpotLightComponent.SetInnerConeAngle +// 0x0004 (0x0004 - 0x0000) +struct SpotLightComponent_SetInnerConeAngle final +{ +public: + float NewInnerConeAngle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpotLightComponent_SetInnerConeAngle; + +// Function Engine.SpotLightComponent.SetOuterConeAngle +// 0x0004 (0x0004 - 0x0000) +struct SpotLightComponent_SetOuterConeAngle final +{ +public: + float NewOuterConeAngle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpotLightComponent_SetOuterConeAngle; + +// Function Engine.VolumetricCloudComponent.SetbUsePerSampleAtmosphericLightTransmittance +// 0x0001 (0x0001 - 0x0000) +struct VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance final +{ +public: + bool NewValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetbUsePerSampleAtmosphericLightTransmittance; + +// Function Engine.VolumetricCloudComponent.SetGroundAlbedo +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetGroundAlbedo final +{ +public: + struct FColor NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetGroundAlbedo; + +// Function Engine.VolumetricCloudComponent.SetHoldout +// 0x0001 (0x0001 - 0x0000) +struct VolumetricCloudComponent_SetHoldout final +{ +public: + bool bNewHoldout; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetHoldout; + +// Function Engine.VolumetricCloudComponent.SetLayerBottomAltitude +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetLayerBottomAltitude final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetLayerBottomAltitude; + +// Function Engine.VolumetricCloudComponent.SetLayerHeight +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetLayerHeight final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetLayerHeight; + +// Function Engine.VolumetricCloudComponent.SetMaterial +// 0x0008 (0x0008 - 0x0000) +struct VolumetricCloudComponent_SetMaterial final +{ +public: + class UMaterialInterface* NewValue; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetMaterial; + +// Function Engine.VolumetricCloudComponent.SetPlanetRadius +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetPlanetRadius final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetPlanetRadius; + +// Function Engine.VolumetricCloudComponent.SetReflectionSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetReflectionSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetReflectionSampleCountScale; + +// Function Engine.VolumetricCloudComponent.SetReflectionViewSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetReflectionViewSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetReflectionViewSampleCountScale; + +// Function Engine.VolumetricCloudComponent.SetRenderInMainPass +// 0x0001 (0x0001 - 0x0000) +struct VolumetricCloudComponent_SetRenderInMainPass final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetRenderInMainPass; + +// Function Engine.VolumetricCloudComponent.SetShadowReflectionSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetShadowReflectionSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetShadowReflectionSampleCountScale; + +// Function Engine.VolumetricCloudComponent.SetShadowReflectionViewSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetShadowReflectionViewSampleCountScale; + +// Function Engine.VolumetricCloudComponent.SetShadowTracingDistance +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetShadowTracingDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetShadowTracingDistance; + +// Function Engine.VolumetricCloudComponent.SetShadowViewSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetShadowViewSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetShadowViewSampleCountScale; + +// Function Engine.VolumetricCloudComponent.SetSkyLightCloudBottomOcclusion +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetSkyLightCloudBottomOcclusion; + +// Function Engine.VolumetricCloudComponent.SetStopTracingTransmittanceThreshold +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetStopTracingTransmittanceThreshold final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetStopTracingTransmittanceThreshold; + +// Function Engine.VolumetricCloudComponent.SetTracingMaxDistance +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetTracingMaxDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetTracingMaxDistance; + +// Function Engine.VolumetricCloudComponent.SetTracingStartDistanceFromCamera +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetTracingStartDistanceFromCamera final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetTracingStartDistanceFromCamera; + +// Function Engine.VolumetricCloudComponent.SetTracingStartMaxDistance +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetTracingStartMaxDistance final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetTracingStartMaxDistance; + +// Function Engine.VolumetricCloudComponent.SetViewSampleCountScale +// 0x0004 (0x0004 - 0x0000) +struct VolumetricCloudComponent_SetViewSampleCountScale final +{ +public: + float NewValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VolumetricCloudComponent_SetViewSampleCountScale; + +// Function Engine.ConstraintInstanceBlueprintLibrary.CopyParams +// 0x001C (0x001C - 0x0000) +struct ConstraintInstanceBlueprintLibrary_CopyParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FConstraintInstanceAccessor SourceAccessor; // 0x000C(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bKeepPosition; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bKeepRotation; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_CopyParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularBreakable +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularBreakable final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bAngularBreakable; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularBreakThreshold; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularBreakable; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularDriveMode +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularDriveMode final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EAngularDriveMode OutDriveMode; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularDriveMode; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularDriveParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularDriveParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float OutPositionStrength; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutVelocityStrength; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutForceLimit; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularDriveParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularLimits +// 0x0024 (0x0024 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularLimits final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing1MotionType; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing1LimitAngle; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing2MotionType; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing2LimitAngle; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion TwistMotionType; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TwistLimitAngle; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularLimits; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularOrientationTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator OutPosTarget; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularOrientationTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularPlasticity +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularPlasticity final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bAngularPlasticity; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularPlasticityThreshold; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularPlasticity; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularSoftSwingLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftSwingLimit; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SwingLimitStiffness; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitDamping; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitRestitution; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitContactDistance; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularSoftSwingLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularSoftTwistLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftTwistLimit; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TwistLimitStiffness; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitDamping; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitRestitution; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitContactDistance; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularSoftTwistLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityDriveSLERP +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableSLERP; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveSLERP; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityDriveTwistAndSwing +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableTwistDrive; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableSwingDrive; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularVelocityDriveTwistAndSwing; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAngularVelocityTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OutVelTarget; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAngularVelocityTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetAttachedBodyNames +// 0x001C (0x001C - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + class FName ParentBody; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ChildBody; // 0x0014(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetAttachedBodyNames; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetContactTransferScale +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetContactTransferScale final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ContactTransferScale; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetContactTransferScale; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetDisableCollsion +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetDisableCollsion final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetDisableCollsion; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearBreakable +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearBreakable final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bLinearBreakable; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearBreakThreshold; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearBreakable; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearDriveParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearDriveParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float OutPositionStrength; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutVelocityStrength; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutForceLimit; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearDriveParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearLimits +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearLimits final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + ELinearConstraintMotion XMotion; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion YMotion; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion ZMotion; // 0x000E(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float Limit; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearLimits; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPlasticity +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearPlasticity final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bLinearPlasticity; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearPlasticityThreshold; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EConstraintPlasticityType PlasticityType; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearPlasticity; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPositionDrive +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableDriveX; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableDriveY; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableDriveZ; // 0x000E(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearPositionDrive; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearPositionTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OutPosTarget; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearPositionTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearSoftLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftLinearLimit; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearLimitStiffness; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitDamping; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitRestitution; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitContactDistance; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearSoftLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearVelocityDrive +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableDriveX; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableDriveY; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableDriveZ; // 0x000E(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearVelocityDrive; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetLinearVelocityTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OutVelTarget; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetLinearVelocityTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetMassConditioningEnabled +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetMassConditioningEnabled; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetOrientationDriveSLERP +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableSLERP; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetOrientationDriveSLERP; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetOrientationDriveTwistAndSwing +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bOutEnableTwistDrive; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutEnableSwingDrive; // 0x000D(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetOrientationDriveTwistAndSwing; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetParentDominates +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetParentDominates final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_GetParentDominates; + +// Function Engine.ConstraintInstanceBlueprintLibrary.GetProjectionParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_GetProjectionParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableProjection; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ProjectionLinearAlpha; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularAlpha; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_GetProjectionParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularBreakable +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularBreakable final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bAngularBreakable; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularBreakThreshold; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularBreakable; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularDriveMode +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularDriveMode final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EAngularDriveMode DriveMode; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularDriveMode; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularDriveParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularDriveParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float PositionStrength; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VelocityStrength; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InForceLimit; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularDriveParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularLimits +// 0x0024 (0x0024 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularLimits final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing1MotionType; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing1LimitAngle; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing2MotionType; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing2LimitAngle; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion TwistMotionType; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TwistLimitAngle; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularLimits; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularOrientationTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator InPosTarget; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularOrientationTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularPlasticity +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularPlasticity final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bAngularPlasticity; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularPlasticityThreshold; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularPlasticity; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularSoftSwingLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftSwingLimit; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SwingLimitStiffness; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitDamping; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitRestitution; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SwingLimitContactDistance; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularSoftSwingLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularSoftTwistLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftTwistLimit; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TwistLimitStiffness; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitDamping; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitRestitution; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TwistLimitContactDistance; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularSoftTwistLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityDriveSLERP +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableSLERP; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveSLERP; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityDriveTwistAndSwing +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSwingDrive; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularVelocityDriveTwistAndSwing; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetAngularVelocityTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InVelTarget; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetAngularVelocityTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetContactTransferScale +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetContactTransferScale final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ContactTransferScale; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetContactTransferScale; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetDisableCollision +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetDisableCollision final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bDisableCollision; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetDisableCollision; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearBreakable +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearBreakable final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bLinearBreakable; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearBreakThreshold; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearBreakable; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearDriveParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearDriveParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float PositionStrength; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VelocityStrength; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InForceLimit; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearDriveParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearLimits +// 0x0014 (0x0014 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearLimits final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + ELinearConstraintMotion XMotion; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion YMotion; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion ZMotion; // 0x000E(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float Limit; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearLimits; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPlasticity +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearPlasticity final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bLinearPlasticity; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearPlasticityThreshold; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EConstraintPlasticityType PlasticityType; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearPlasticity; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPositionDrive +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableDriveX; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveY; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveZ; // 0x000E(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearPositionDrive; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearPositionTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InPosTarget; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearPositionTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearSoftLimitParams +// 0x0020 (0x0020 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bSoftLinearLimit; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearLimitStiffness; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitDamping; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitRestitution; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearLimitContactDistance; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearSoftLimitParams; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearVelocityDrive +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableDriveX; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveY; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveZ; // 0x000E(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearVelocityDrive; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetLinearVelocityTarget +// 0x0028 (0x0028 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InVelTarget; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetLinearVelocityTarget; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetMassConditioningEnabled +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableMassConditioning; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetMassConditioningEnabled; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetOrientationDriveSLERP +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableSLERP; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetOrientationDriveSLERP; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetOrientationDriveTwistAndSwing +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSwingDrive; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetOrientationDriveTwistAndSwing; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetParentDominates +// 0x0010 (0x0010 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetParentDominates final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bParentDominates; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ConstraintInstanceBlueprintLibrary_SetParentDominates; + +// Function Engine.ConstraintInstanceBlueprintLibrary.SetProjectionParams +// 0x0018 (0x0018 - 0x0000) +struct ConstraintInstanceBlueprintLibrary_SetProjectionParams final +{ +public: + struct FConstraintInstanceAccessor Accessor; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bEnableProjection; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ProjectionLinearAlpha; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularAlpha; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ConstraintInstanceBlueprintLibrary_SetProjectionParams; + +// Function Engine.CurveFloat.GetFloatValue +// 0x0008 (0x0008 - 0x0000) +struct CurveFloat_GetFloatValue final +{ +public: + float InTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveFloat_GetFloatValue; + +// Function Engine.CurveLinearColor.GetClampedLinearColorValue +// 0x0014 (0x0014 - 0x0000) +struct CurveLinearColor_GetClampedLinearColorValue final +{ +public: + float InTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0004(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveLinearColor_GetClampedLinearColorValue; + +// Function Engine.CurveLinearColor.GetLinearColorValue +// 0x0014 (0x0014 - 0x0000) +struct CurveLinearColor_GetLinearColorValue final +{ +public: + float InTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0004(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveLinearColor_GetLinearColorValue; + +// Function Engine.CurveLinearColor.GetUnadjustedLinearColorValue +// 0x0014 (0x0014 - 0x0000) +struct CurveLinearColor_GetUnadjustedLinearColorValue final +{ +public: + float InTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0004(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CurveLinearColor_GetUnadjustedLinearColorValue; + +// Function Engine.DataTableFunctionLibrary.DoesDataTableRowExist +// 0x0018 (0x0018 - 0x0000) +struct DataTableFunctionLibrary_DoesDataTableRowExist final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataTableFunctionLibrary_DoesDataTableRowExist; + +// Function Engine.DataTableFunctionLibrary.EvaluateCurveTableRow +// 0x0030 (0x0030 - 0x0000) +struct DataTableFunctionLibrary_EvaluateCurveTableRow final +{ +public: + class UCurveTable* CurveTable; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InXY; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEvaluateCurveTableResult OutResult; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float OutXY; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ContextString; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_EvaluateCurveTableRow; + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnAsString +// 0x0020 (0x0020 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableColumnAsString final +{ +public: + const class UDataTable* DataTable; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_GetDataTableColumnAsString; + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnExportNames +// 0x0018 (0x0018 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableColumnExportNames final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutExportColumnNames; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_GetDataTableColumnExportNames; + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnNameFromExportName +// 0x0028 (0x0028 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableColumnNameFromExportName final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ColumnExportName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OutColumnName; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataTableFunctionLibrary_GetDataTableColumnNameFromExportName; + +// Function Engine.DataTableFunctionLibrary.GetDataTableColumnNames +// 0x0018 (0x0018 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableColumnNames final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutColumnNames; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_GetDataTableColumnNames; + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowFromName +// 0x0020 (0x0020 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableRowFromName final +{ +public: + class UDataTable* Table; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTableRowBase OutRow; // 0x0010(0x0008)(Parm, OutParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataTableFunctionLibrary_GetDataTableRowFromName; + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowNames +// 0x0018 (0x0018 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableRowNames final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutRowNames; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_GetDataTableRowNames; + +// Function Engine.DataTableFunctionLibrary.GetDataTableRowStruct +// 0x0010 (0x0010 - 0x0000) +struct DataTableFunctionLibrary_GetDataTableRowStruct final +{ +public: + const class UDataTable* Table; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UScriptStruct* ReturnValue; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataTableFunctionLibrary_GetDataTableRowStruct; + +// Function Engine.DebugCameraController.ReceiveOnActivate +// 0x0008 (0x0008 - 0x0000) +struct DebugCameraController_ReceiveOnActivate final +{ +public: + class APlayerController* OriginalPC; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DebugCameraController_ReceiveOnActivate; + +// Function Engine.DebugCameraController.ReceiveOnActorSelected +// 0x0138 (0x0138 - 0x0000) +struct DebugCameraController_ReceiveOnActorSelected final +{ +public: + class AActor* NewSelectedActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SelectHitLocation; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SelectHitNormal; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult Hit; // 0x0038(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//DebugCameraController_ReceiveOnActorSelected; + +// Function Engine.DebugCameraController.ReceiveOnDeactivate +// 0x0008 (0x0008 - 0x0000) +struct DebugCameraController_ReceiveOnDeactivate final +{ +public: + class APlayerController* RestoredPC; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DebugCameraController_ReceiveOnDeactivate; + +// Function Engine.DebugCameraController.SetPawnMovementSpeedScale +// 0x0004 (0x0004 - 0x0000) +struct DebugCameraController_SetPawnMovementSpeedScale final +{ +public: + float NewSpeedScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DebugCameraController_SetPawnMovementSpeedScale; + +// Function Engine.DebugCameraController.GetSelectedActor +// 0x0008 (0x0008 - 0x0000) +struct DebugCameraController_GetSelectedActor final +{ +public: + class AActor* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DebugCameraController_GetSelectedActor; + +// Function Engine.DecalActor.CreateDynamicMaterialInstance +// 0x0008 (0x0008 - 0x0000) +struct DecalActor_CreateDynamicMaterialInstance final +{ +public: + class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalActor_CreateDynamicMaterialInstance; + +// Function Engine.DecalActor.SetDecalMaterial +// 0x0008 (0x0008 - 0x0000) +struct DecalActor_SetDecalMaterial final +{ +public: + class UMaterialInterface* NewDecalMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalActor_SetDecalMaterial; + +// Function Engine.DecalActor.GetDecalMaterial +// 0x0008 (0x0008 - 0x0000) +struct DecalActor_GetDecalMaterial final +{ +public: + class UMaterialInterface* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DecalActor_GetDecalMaterial; + +// Function Engine.DefaultPawn.LookUpAtRate +// 0x0004 (0x0004 - 0x0000) +struct DefaultPawn_LookUpAtRate final +{ +public: + float Rate; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DefaultPawn_LookUpAtRate; + +// Function Engine.DefaultPawn.MoveForward +// 0x0004 (0x0004 - 0x0000) +struct DefaultPawn_MoveForward final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DefaultPawn_MoveForward; + +// Function Engine.DefaultPawn.MoveRight +// 0x0004 (0x0004 - 0x0000) +struct DefaultPawn_MoveRight final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DefaultPawn_MoveRight; + +// Function Engine.DefaultPawn.MoveUp_World +// 0x0004 (0x0004 - 0x0000) +struct DefaultPawn_MoveUp_World final +{ +public: + float Val; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DefaultPawn_MoveUp_World; + +// Function Engine.DefaultPawn.TurnAtRate +// 0x0004 (0x0004 - 0x0000) +struct DefaultPawn_TurnAtRate final +{ +public: + float Rate; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DefaultPawn_TurnAtRate; + +// Function Engine.AutoDestroySubsystem.OnActorEndPlay +// 0x0010 (0x0010 - 0x0000) +struct AutoDestroySubsystem_OnActorEndPlay final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEndPlayReason EndPlayReason; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//AutoDestroySubsystem_OnActorEndPlay; + +// Function Engine.CancellableAsyncAction.IsActive +// 0x0001 (0x0001 - 0x0000) +struct CancellableAsyncAction_IsActive final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//CancellableAsyncAction_IsActive; + +// Function Engine.ViewportStatsSubsystem.AddDisplayDelegate +// 0x0014 (0x0014 - 0x0000) +struct ViewportStatsSubsystem_AddDisplayDelegate final +{ +public: + TDelegate Delegate; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ViewportStatsSubsystem_AddDisplayDelegate; + +// Function Engine.ViewportStatsSubsystem.AddTimedDisplay +// 0x0038 (0x0038 - 0x0000) +struct ViewportStatsSubsystem_AddTimedDisplay final +{ +public: + class FText Text; // 0x0000(0x0010)(Parm, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D DisplayOffset; // 0x0028(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ViewportStatsSubsystem_AddTimedDisplay; + +// Function Engine.ViewportStatsSubsystem.RemoveDisplayDelegate +// 0x0004 (0x0004 - 0x0000) +struct ViewportStatsSubsystem_RemoveDisplayDelegate final +{ +public: + int32 IndexToRemove; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ViewportStatsSubsystem_RemoveDisplayDelegate; + +// Function Engine.InputDeviceSubsystem.ActivateDevicePropertyOfClass +// 0x0018 (0x0018 - 0x0000) +struct InputDeviceSubsystem_ActivateDevicePropertyOfClass final +{ +public: + TSubclassOf PropertyClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FActivateDevicePropertyParams Params_0; // 0x0008(0x000C)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FInputDevicePropertyHandle ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_ActivateDevicePropertyOfClass; + +// Function Engine.InputDeviceSubsystem.RemoveDevicePropertyByHandle +// 0x0004 (0x0004 - 0x0000) +struct InputDeviceSubsystem_RemoveDevicePropertyByHandle final +{ +public: + struct FInputDevicePropertyHandle HandleToRemove; // 0x0000(0x0004)(ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_RemoveDevicePropertyByHandle; + +// Function Engine.InputDeviceSubsystem.RemoveDevicePropertyHandles +// 0x0050 (0x0050 - 0x0000) +struct InputDeviceSubsystem_RemoveDevicePropertyHandles final +{ +public: + TSet HandlesToRemove; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_RemoveDevicePropertyHandles; + +// Function Engine.InputDeviceSubsystem.GetActiveDeviceProperty +// 0x0010 (0x0010 - 0x0000) +struct InputDeviceSubsystem_GetActiveDeviceProperty final +{ +public: + struct FInputDevicePropertyHandle Handle; // 0x0000(0x0004)(ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UInputDeviceProperty* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_GetActiveDeviceProperty; + +// Function Engine.InputDeviceSubsystem.GetInputDeviceHardwareIdentifier +// 0x001C (0x001C - 0x0000) +struct InputDeviceSubsystem_GetInputDeviceHardwareIdentifier final +{ +public: + struct FInputDeviceId InputDevice; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHardwareDeviceIdentifier ReturnValue; // 0x0004(0x0018)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_GetInputDeviceHardwareIdentifier; + +// Function Engine.InputDeviceSubsystem.GetMostRecentlyUsedHardwareDevice +// 0x001C (0x001C - 0x0000) +struct InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice final +{ +public: + struct FPlatformUserId InUserId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHardwareDeviceIdentifier ReturnValue; // 0x0004(0x0018)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_GetMostRecentlyUsedHardwareDevice; + +// Function Engine.InputDeviceSubsystem.GetMostRecentlyUsedInputDeviceId +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceSubsystem_GetMostRecentlyUsedInputDeviceId final +{ +public: + struct FPlatformUserId InUserId; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputDeviceSubsystem_GetMostRecentlyUsedInputDeviceId; + +// Function Engine.InputDeviceSubsystem.IsPropertyActive +// 0x0008 (0x0008 - 0x0000) +struct InputDeviceSubsystem_IsPropertyActive final +{ +public: + struct FInputDevicePropertyHandle Handle; // 0x0000(0x0004)(ConstParm, Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputDeviceSubsystem_IsPropertyActive; + +// Function Engine.LocalPlayerSaveGame.AsyncLoadOrCreateSaveGameForLocalPlayer +// 0x0038 (0x0038 - 0x0000) +struct LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer final +{ +public: + TSubclassOf SaveGameClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerController* LocalPlayerController; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SlotName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate Delegate; // 0x0020(0x0010)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//LocalPlayerSaveGame_AsyncLoadOrCreateSaveGameForLocalPlayer; + +// Function Engine.LocalPlayerSaveGame.LoadOrCreateSaveGameForLocalPlayer +// 0x0028 (0x0028 - 0x0000) +struct LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer final +{ +public: + TSubclassOf SaveGameClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerController* LocalPlayerController; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SlotName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULocalPlayerSaveGame* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_LoadOrCreateSaveGameForLocalPlayer; + +// Function Engine.LocalPlayerSaveGame.AsyncSaveGameToSlotForLocalPlayer +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_AsyncSaveGameToSlotForLocalPlayer; + +// Function Engine.LocalPlayerSaveGame.OnPostSave +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_OnPostSave final +{ +public: + bool bSuccess; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_OnPostSave; + +// Function Engine.LocalPlayerSaveGame.SaveGameToSlotForLocalPlayer +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_SaveGameToSlotForLocalPlayer; + +// Function Engine.LocalPlayerSaveGame.GetInvalidDataVersion +// 0x0004 (0x0004 - 0x0000) +struct LocalPlayerSaveGame_GetInvalidDataVersion final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetInvalidDataVersion; + +// Function Engine.LocalPlayerSaveGame.GetLatestDataVersion +// 0x0004 (0x0004 - 0x0000) +struct LocalPlayerSaveGame_GetLatestDataVersion final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetLatestDataVersion; + +// Function Engine.LocalPlayerSaveGame.GetLocalPlayerController +// 0x0008 (0x0008 - 0x0000) +struct LocalPlayerSaveGame_GetLocalPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetLocalPlayerController; + +// Function Engine.LocalPlayerSaveGame.GetPlatformUserId +// 0x0004 (0x0004 - 0x0000) +struct LocalPlayerSaveGame_GetPlatformUserId final +{ +public: + struct FPlatformUserId ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetPlatformUserId; + +// Function Engine.LocalPlayerSaveGame.GetPlatformUserIndex +// 0x0004 (0x0004 - 0x0000) +struct LocalPlayerSaveGame_GetPlatformUserIndex final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetPlatformUserIndex; + +// Function Engine.LocalPlayerSaveGame.GetSavedDataVersion +// 0x0004 (0x0004 - 0x0000) +struct LocalPlayerSaveGame_GetSavedDataVersion final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetSavedDataVersion; + +// Function Engine.LocalPlayerSaveGame.GetSaveSlotName +// 0x0010 (0x0010 - 0x0000) +struct LocalPlayerSaveGame_GetSaveSlotName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_GetSaveSlotName; + +// Function Engine.LocalPlayerSaveGame.IsSaveInProgress +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_IsSaveInProgress final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_IsSaveInProgress; + +// Function Engine.LocalPlayerSaveGame.WasLastSaveSuccessful +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_WasLastSaveSuccessful final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_WasLastSaveSuccessful; + +// Function Engine.LocalPlayerSaveGame.WasLoaded +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_WasLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_WasLoaded; + +// Function Engine.LocalPlayerSaveGame.WasSaveRequested +// 0x0001 (0x0001 - 0x0000) +struct LocalPlayerSaveGame_WasSaveRequested final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocalPlayerSaveGame_WasSaveRequested; + +// Function Engine.SpringArmComponent.GetTargetRotation +// 0x0018 (0x0018 - 0x0000) +struct SpringArmComponent_GetTargetRotation final +{ +public: + struct FRotator ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SpringArmComponent_GetTargetRotation; + +// Function Engine.SpringArmComponent.GetUnfixedCameraPosition +// 0x0018 (0x0018 - 0x0000) +struct SpringArmComponent_GetUnfixedCameraPosition final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpringArmComponent_GetUnfixedCameraPosition; + +// Function Engine.SpringArmComponent.IsCollisionFixApplied +// 0x0001 (0x0001 - 0x0000) +struct SpringArmComponent_IsCollisionFixApplied final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SpringArmComponent_IsCollisionFixApplied; + +// Function Engine.GameModeBase.CanSpectate +// 0x0018 (0x0018 - 0x0000) +struct GameModeBase_CanSpectate final +{ +public: + class APlayerController* Viewer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* ViewTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_CanSpectate; + +// Function Engine.GameModeBase.ChangeName +// 0x0020 (0x0020 - 0x0000) +struct GameModeBase_ChangeName final +{ +public: + class AController* Controller; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNameChange; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_ChangeName; + +// Function Engine.GameModeBase.ChoosePlayerStart +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_ChoosePlayerStart final +{ +public: + class AController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_ChoosePlayerStart; + +// Function Engine.GameModeBase.FindPlayerStart +// 0x0020 (0x0020 - 0x0000) +struct GameModeBase_FindPlayerStart final +{ +public: + class AController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString IncomingName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_FindPlayerStart; + +// Function Engine.GameModeBase.GetDefaultPawnClassForController +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_GetDefaultPawnClassForController final +{ +public: + class AController* InController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_GetDefaultPawnClassForController; + +// Function Engine.GameModeBase.GetNumPlayers +// 0x0004 (0x0004 - 0x0000) +struct GameModeBase_GetNumPlayers final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_GetNumPlayers; + +// Function Engine.GameModeBase.GetNumSpectators +// 0x0004 (0x0004 - 0x0000) +struct GameModeBase_GetNumSpectators final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_GetNumSpectators; + +// Function Engine.GameModeBase.HandleStartingNewPlayer +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_HandleStartingNewPlayer final +{ +public: + class APlayerController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_HandleStartingNewPlayer; + +// Function Engine.GameModeBase.InitializeHUDForPlayer +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_InitializeHUDForPlayer final +{ +public: + class APlayerController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_InitializeHUDForPlayer; + +// Function Engine.GameModeBase.InitStartSpot +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_InitStartSpot final +{ +public: + class AActor* StartSpot; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* NewPlayer; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_InitStartSpot; + +// Function Engine.GameModeBase.K2_FindPlayerStart +// 0x0020 (0x0020 - 0x0000) +struct GameModeBase_K2_FindPlayerStart final +{ +public: + class AController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString IncomingName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_K2_FindPlayerStart; + +// Function Engine.GameModeBase.K2_OnChangeName +// 0x0020 (0x0020 - 0x0000) +struct GameModeBase_K2_OnChangeName final +{ +public: + class AController* Other; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNameChange; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_K2_OnChangeName; + +// Function Engine.GameModeBase.K2_OnLogout +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_K2_OnLogout final +{ +public: + class AController* ExitingController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_K2_OnLogout; + +// Function Engine.GameModeBase.K2_OnRestartPlayer +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_K2_OnRestartPlayer final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_K2_OnRestartPlayer; + +// Function Engine.GameModeBase.K2_OnSwapPlayerControllers +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_K2_OnSwapPlayerControllers final +{ +public: + class APlayerController* OldPC; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerController* NewPC; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_K2_OnSwapPlayerControllers; + +// Function Engine.GameModeBase.K2_PostLogin +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_K2_PostLogin final +{ +public: + class APlayerController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_K2_PostLogin; + +// Function Engine.GameModeBase.PlayerCanRestart +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_PlayerCanRestart final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_PlayerCanRestart; + +// Function Engine.GameModeBase.RestartPlayer +// 0x0008 (0x0008 - 0x0000) +struct GameModeBase_RestartPlayer final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_RestartPlayer; + +// Function Engine.GameModeBase.RestartPlayerAtPlayerStart +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_RestartPlayerAtPlayerStart final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* StartSpot; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_RestartPlayerAtPlayerStart; + +// Function Engine.GameModeBase.RestartPlayerAtTransform +// 0x0070 (0x0070 - 0x0000) +struct GameModeBase_RestartPlayerAtTransform final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform SpawnTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_RestartPlayerAtTransform; + +// Function Engine.GameModeBase.ShouldReset +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_ShouldReset final +{ +public: + class AActor* ActorToReset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_ShouldReset; + +// Function Engine.GameModeBase.SpawnDefaultPawnAtTransform +// 0x0080 (0x0080 - 0x0000) +struct GameModeBase_SpawnDefaultPawnAtTransform final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform SpawnTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APawn* ReturnValue; // 0x0070(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_78[0x8]; // 0x0078(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_SpawnDefaultPawnAtTransform; + +// Function Engine.GameModeBase.SpawnDefaultPawnFor +// 0x0018 (0x0018 - 0x0000) +struct GameModeBase_SpawnDefaultPawnFor final +{ +public: + class AController* NewPlayer; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* StartSpot; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APawn* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_SpawnDefaultPawnFor; + +// Function Engine.GameModeBase.HasMatchEnded +// 0x0001 (0x0001 - 0x0000) +struct GameModeBase_HasMatchEnded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_HasMatchEnded; + +// Function Engine.GameModeBase.HasMatchStarted +// 0x0001 (0x0001 - 0x0000) +struct GameModeBase_HasMatchStarted final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameModeBase_HasMatchStarted; + +// Function Engine.GameModeBase.MustSpectate +// 0x0010 (0x0010 - 0x0000) +struct GameModeBase_MustSpectate final +{ +public: + class APlayerController* NewPlayerController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameModeBase_MustSpectate; + +// Function Engine.GameMode.K2_OnSetMatchState +// 0x0008 (0x0008 - 0x0000) +struct GameMode_K2_OnSetMatchState final +{ +public: + class FName NewState; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_K2_OnSetMatchState; + +// Function Engine.GameMode.ReadyToEndMatch +// 0x0001 (0x0001 - 0x0000) +struct GameMode_ReadyToEndMatch final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_ReadyToEndMatch; + +// Function Engine.GameMode.ReadyToStartMatch +// 0x0001 (0x0001 - 0x0000) +struct GameMode_ReadyToStartMatch final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_ReadyToStartMatch; + +// Function Engine.GameMode.Say +// 0x0010 (0x0010 - 0x0000) +struct GameMode_Say final +{ +public: + class FString Msg; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_Say; + +// Function Engine.GameMode.GetMatchState +// 0x0008 (0x0008 - 0x0000) +struct GameMode_GetMatchState final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_GetMatchState; + +// Function Engine.GameMode.IsMatchInProgress +// 0x0001 (0x0001 - 0x0000) +struct GameMode_IsMatchInProgress final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameMode_IsMatchInProgress; + +// Function Engine.GameplayStatics.ActivateReverbEffect +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_ActivateReverbEffect final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UReverbEffect* ReverbEffect; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TagName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Priority; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Volume; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ActivateReverbEffect; + +// Function Engine.GameplayStatics.AnnounceAccessibleString +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_AnnounceAccessibleString final +{ +public: + class FString AnnouncementString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_AnnounceAccessibleString; + +// Function Engine.GameplayStatics.ApplyDamage +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_ApplyDamage final +{ +public: + class AActor* DamagedActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseDamage; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class AController* EventInstigator; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DamageTypeClass; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ApplyDamage; + +// Function Engine.GameplayStatics.ApplyPointDamage +// 0x0148 (0x0148 - 0x0000) +struct GameplayStatics_ApplyPointDamage final +{ +public: + class AActor* DamagedActor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseDamage; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector HitFromDirection; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult HitInfo; // 0x0028(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + class AController* EventInstigator; // 0x0128(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0130(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf DamageTypeClass; // 0x0138(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0140(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_144[0x4]; // 0x0144(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ApplyPointDamage; + +// Function Engine.GameplayStatics.ApplyRadialDamage +// 0x0060 (0x0060 - 0x0000) +struct GameplayStatics_ApplyRadialDamage final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseDamage; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Origin; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageRadius; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf DamageTypeClass; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray IgnoreActors; // 0x0038(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0048(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* InstigatedByController; // 0x0050(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDoFullDamage; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel DamagePreventionChannel; // 0x0059(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x005A(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5B[0x5]; // 0x005B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ApplyRadialDamage; + +// Function Engine.GameplayStatics.ApplyRadialDamageWithFalloff +// 0x0068 (0x0068 - 0x0000) +struct GameplayStatics_ApplyRadialDamageWithFalloff final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseDamage; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinimumDamage; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageInnerRadius; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageOuterRadius; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageFalloff; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf DamageTypeClass; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray IgnoreActors; // 0x0040(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class AActor* DamageCauser; // 0x0050(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AController* InstigatedByController; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel DamagePreventionChannel; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0061(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x6]; // 0x0062(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ApplyRadialDamageWithFalloff; + +// Function Engine.GameplayStatics.AreAnyListenersWithinRange +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_AreAnyListenersWithinRange final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaximumRange; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_AreAnyListenersWithinRange; + +// Function Engine.GameplayStatics.AreSubtitlesEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameplayStatics_AreSubtitlesEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_AreSubtitlesEnabled; + +// Function Engine.GameplayStatics.BeginDeferredActorSpawnFromClass +// 0x0090 (0x0090 - 0x0000) +struct GameplayStatics_BeginDeferredActorSpawnFromClass final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ActorClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform SpawnTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpawnActorCollisionHandlingMethod CollisionHandlingOverride; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* Owner; // 0x0078(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpawnActorScaleMethod TransformScaleMethod; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* ReturnValue; // 0x0088(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_BeginDeferredActorSpawnFromClass; + +// Function Engine.GameplayStatics.BeginSpawningActorFromBlueprint +// 0x0080 (0x0080 - 0x0000) +struct GameplayStatics_BeginSpawningActorFromBlueprint final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UBlueprint* Blueprint; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform SpawnTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNoCollisionFail; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* ReturnValue; // 0x0078(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_BeginSpawningActorFromBlueprint; + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_Advanced +// 0x01D0 (0x01D0 - 0x0000) +struct GameplayStatics_Blueprint_PredictProjectilePath_Advanced final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPredictProjectilePathParams PredictParams; // 0x0008(0x0078)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FPredictProjectilePathResult PredictResult; // 0x0080(0x0148)(Parm, OutParm, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x01C8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C9[0x7]; // 0x01C9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_Blueprint_PredictProjectilePath_Advanced; + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_ByObjectType +// 0x01A8 (0x01A8 - 0x0000) +struct GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray OutPathPositions; // 0x0108(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FVector OutLastTraceDestination; // 0x0118(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartPos; // 0x0130(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LaunchVelocity; // 0x0148(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTracePath; // 0x0160(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ProjectileRadius; // 0x0164(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ObjectTypes; // 0x0168(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0178(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_179[0x7]; // 0x0179(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0180(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0190(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_191[0x3]; // 0x0191(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DrawDebugTime; // 0x0194(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SimFrequency; // 0x0198(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSimTime; // 0x019C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideGravityZ; // 0x01A0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x01A4(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A5[0x3]; // 0x01A5(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_Blueprint_PredictProjectilePath_ByObjectType; + +// Function Engine.GameplayStatics.Blueprint_PredictProjectilePath_ByTraceChannel +// 0x0198 (0x0198 - 0x0000) +struct GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult OutHit; // 0x0008(0x0100)(Parm, OutParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + TArray OutPathPositions; // 0x0108(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + struct FVector OutLastTraceDestination; // 0x0118(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartPos; // 0x0130(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LaunchVelocity; // 0x0148(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTracePath; // 0x0160(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_161[0x3]; // 0x0161(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ProjectileRadius; // 0x0164(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel TraceChannel; // 0x0168(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0169(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_16A[0x6]; // 0x016A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActorsToIgnore; // 0x0170(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0180(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_181[0x3]; // 0x0181(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DrawDebugTime; // 0x0184(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SimFrequency; // 0x0188(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSimTime; // 0x018C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideGravityZ; // 0x0190(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0194(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_195[0x3]; // 0x0195(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_Blueprint_PredictProjectilePath_ByTraceChannel; + +// Function Engine.GameplayStatics.BlueprintSuggestProjectileVelocity +// 0x0068 (0x0068 - 0x0000) +struct GameplayStatics_BlueprintSuggestProjectileVelocity final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TossVelocity; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartLocation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndLocation; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LaunchSpeed; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideGravityZ; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESuggestProjVelocityTraceOption TraceOption; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CollisionRadius; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFavorHighArc; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDrawDebug; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAcceptClosestOnNoSolutions; // 0x0062(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0063(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_BlueprintSuggestProjectileVelocity; + +// Function Engine.GameplayStatics.BreakHitResult +// 0x01D8 (0x01D8 - 0x0000) +struct GameplayStatics_BreakHitResult final +{ +public: + struct FHitResult Hit; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + bool bBlockingHit; // 0x0100(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitialOverlap; // 0x0101(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_102[0x2]; // 0x0102(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Time; // 0x0104(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Distance; // 0x0108(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10C[0x4]; // 0x010C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Location; // 0x0110(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ImpactPoint; // 0x0128(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal; // 0x0140(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ImpactNormal; // 0x0158(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterial* PhysMat; // 0x0170(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* HitActor; // 0x0178(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* HitComponent; // 0x0180(0x0008)(Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName HitBoneName; // 0x0188(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0190(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 HitItem; // 0x0198(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ElementIndex; // 0x019C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FaceIndex; // 0x01A0(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A4[0x4]; // 0x01A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector TraceStart; // 0x01A8(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TraceEnd; // 0x01C0(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_BreakHitResult; + +// Function Engine.GameplayStatics.ClearSoundMixClassOverride +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_ClearSoundMixClassOverride final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundMix* InSoundMixModifier; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundClass* InSoundClass; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeOutTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ClearSoundMixClassOverride; + +// Function Engine.GameplayStatics.ClearSoundMixModifiers +// 0x0008 (0x0008 - 0x0000) +struct GameplayStatics_ClearSoundMixModifiers final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_ClearSoundMixModifiers; + +// Function Engine.GameplayStatics.CreatePlayer +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_CreatePlayer final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ControllerId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSpawnPlayerController; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_CreatePlayer; + +// Function Engine.GameplayStatics.CreatePlayerFromPlatformUser +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_CreatePlayerFromPlatformUser final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId UserId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSpawnPlayerController; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_CreatePlayerFromPlatformUser; + +// Function Engine.GameplayStatics.CreateSaveGameObject +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_CreateSaveGameObject final +{ +public: + TSubclassOf SaveGameClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USaveGame* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_CreateSaveGameObject; + +// Function Engine.GameplayStatics.CreateSound2D +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_CreateSound2D final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundConcurrency* ConcurrencySettings; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistAcrossLevelTransition; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0030(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_CreateSound2D; + +// Function Engine.GameplayStatics.DeactivateReverbEffect +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_DeactivateReverbEffect final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TagName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_DeactivateReverbEffect; + +// Function Engine.GameplayStatics.DeleteGameInSlot +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_DeleteGameInSlot final +{ +public: + class FString SlotName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0010(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_DeleteGameInSlot; + +// Function Engine.GameplayStatics.DeprojectSceneCaptureComponentToWorld +// 0x0050 (0x0050 - 0x0000) +struct GameplayStatics_DeprojectSceneCaptureComponentToWorld final +{ +public: + class USceneCaptureComponent2D* SceneCaptureComponent2D; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D TargetUV; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_DeprojectSceneCaptureComponentToWorld; + +// Function Engine.GameplayStatics.DeprojectSceneCaptureToWorld +// 0x0050 (0x0050 - 0x0000) +struct GameplayStatics_DeprojectSceneCaptureToWorld final +{ +public: + class ASceneCapture2D* SceneCapture2D; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D TargetUV; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_DeprojectSceneCaptureToWorld; + +// Function Engine.GameplayStatics.DeprojectScreenToWorld +// 0x0050 (0x0050 - 0x0000) +struct GameplayStatics_DeprojectScreenToWorld final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_DeprojectScreenToWorld; + +// Function Engine.GameplayStatics.DoesSaveGameExist +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_DoesSaveGameExist final +{ +public: + class FString SlotName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0010(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_DoesSaveGameExist; + +// Function Engine.GameplayStatics.EnableLiveStreaming +// 0x0001 (0x0001 - 0x0000) +struct GameplayStatics_EnableLiveStreaming final +{ +public: + bool Enable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_EnableLiveStreaming; + +// Function Engine.GameplayStatics.FindCollisionUV +// 0x0120 (0x0120 - 0x0000) +struct GameplayStatics_FindCollisionUV final +{ +public: + struct FHitResult Hit; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + int32 UVChannel; // 0x0100(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_104[0x4]; // 0x0104(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D UV; // 0x0108(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0118(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_119[0x7]; // 0x0119(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_FindCollisionUV; + +// Function Engine.GameplayStatics.FindNearestActor +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_FindNearestActor final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActorsToCheck; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + float Distance; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_FindNearestActor; + +// Function Engine.GameplayStatics.FinishSpawningActor +// 0x0080 (0x0080 - 0x0000) +struct GameplayStatics_FinishSpawningActor final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform SpawnTransform; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESpawnActorScaleMethod TransformScaleMethod; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* ReturnValue; // 0x0078(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_FinishSpawningActor; + +// Function Engine.GameplayStatics.FlushLevelStreaming +// 0x0008 (0x0008 - 0x0000) +struct GameplayStatics_FlushLevelStreaming final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_FlushLevelStreaming; + +// Function Engine.GameplayStatics.GetAccurateRealTime +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetAccurateRealTime final +{ +public: + int32 Seconds; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double PartialSeconds; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAccurateRealTime; + +// Function Engine.GameplayStatics.GetActiveSpatialPluginName +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetActiveSpatialPluginName final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetActiveSpatialPluginName; + +// Function Engine.GameplayStatics.GetActorArrayAverageLocation +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_GetActorArrayAverageLocation final +{ +public: + TArray Actors; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetActorArrayAverageLocation; + +// Function Engine.GameplayStatics.GetActorArrayBounds +// 0x0048 (0x0048 - 0x0000) +struct GameplayStatics_GetActorArrayBounds final +{ +public: + TArray Actors; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bOnlyCollidingComponents; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Center; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetActorArrayBounds; + +// Function Engine.GameplayStatics.GetActorOfClass +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetActorOfClass final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ActorClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetActorOfClass; + +// Function Engine.GameplayStatics.GetAllActorsOfClass +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_GetAllActorsOfClass final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ActorClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAllActorsOfClass; + +// Function Engine.GameplayStatics.GetAllActorsOfClassWithTag +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_GetAllActorsOfClassWithTag final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ActorClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAllActorsOfClassWithTag; + +// Function Engine.GameplayStatics.GetAllActorsWithInterface +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_GetAllActorsWithInterface final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Interface; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAllActorsWithInterface; + +// Function Engine.GameplayStatics.GetAllActorsWithTag +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_GetAllActorsWithTag final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Tag; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutActors; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAllActorsWithTag; + +// Function Engine.GameplayStatics.GetAudioTimeSeconds +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetAudioTimeSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAudioTimeSeconds; + +// Function Engine.GameplayStatics.GetAvailableSpatialPluginNames +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetAvailableSpatialPluginNames final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetAvailableSpatialPluginNames; + +// Function Engine.GameplayStatics.GetClosestListenerLocation +// 0x0048 (0x0048 - 0x0000) +struct GameplayStatics_GetClosestListenerLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaximumRange; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowAttenuationOverride; // 0x0024(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ListenerPosition; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetClosestListenerLocation; + +// Function Engine.GameplayStatics.GetCurrentLevelName +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_GetCurrentLevelName final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemovePrefixString; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetCurrentLevelName; + +// Function Engine.GameplayStatics.GetCurrentReverbEffect +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetCurrentReverbEffect final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UReverbEffect* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetCurrentReverbEffect; + +// Function Engine.GameplayStatics.GetEnableWorldRendering +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetEnableWorldRendering final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetEnableWorldRendering; + +// Function Engine.GameplayStatics.GetGameInstance +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetGameInstance final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UGameInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetGameInstance; + +// Function Engine.GameplayStatics.GetGameMode +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetGameMode final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameModeBase* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetGameMode; + +// Function Engine.GameplayStatics.GetGameState +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetGameState final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AGameStateBase* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetGameState; + +// Function Engine.GameplayStatics.GetGlobalTimeDilation +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetGlobalTimeDilation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetGlobalTimeDilation; + +// Function Engine.GameplayStatics.GetIntOption +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_GetIntOption final +{ +public: + class FString Options; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DefaultValue; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetIntOption; + +// Function Engine.GameplayStatics.GetKeyValue +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_GetKeyValue final +{ +public: + class FString Pair; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Value; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetKeyValue; + +// Function Engine.GameplayStatics.GetMaxAudioChannelCount +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetMaxAudioChannelCount final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetMaxAudioChannelCount; + +// Function Engine.GameplayStatics.GetNumLocalPlayerControllers +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetNumLocalPlayerControllers final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetNumLocalPlayerControllers; + +// Function Engine.GameplayStatics.GetNumPlayerControllers +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetNumPlayerControllers final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetNumPlayerControllers; + +// Function Engine.GameplayStatics.GetNumPlayerStates +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetNumPlayerStates final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetNumPlayerStates; + +// Function Engine.GameplayStatics.GetObjectClass +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetObjectClass final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetObjectClass; + +// Function Engine.GameplayStatics.GetPlatformName +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetPlatformName final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlatformName; + +// Function Engine.GameplayStatics.GetPlayerCameraManager +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerCameraManager final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PlayerIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerCameraManager* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerCameraManager; + +// Function Engine.GameplayStatics.GetPlayerCharacter +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerCharacter final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PlayerIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class ACharacter* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerCharacter; + +// Function Engine.GameplayStatics.GetPlayerController +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerController final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PlayerIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerController; + +// Function Engine.GameplayStatics.GetPlayerControllerFromID +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerControllerFromID final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ControllerId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerControllerFromID; + +// Function Engine.GameplayStatics.GetPlayerControllerFromPlatformUser +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerControllerFromPlatformUser final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId UserId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerController* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerControllerFromPlatformUser; + +// Function Engine.GameplayStatics.GetPlayerControllerID +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetPlayerControllerID final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetPlayerControllerID; + +// Function Engine.GameplayStatics.GetPlayerPawn +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerPawn final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PlayerIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APawn* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerPawn; + +// Function Engine.GameplayStatics.GetPlayerState +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetPlayerState final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PlayerStateIndex; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class APlayerState* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerState; + +// Function Engine.GameplayStatics.GetPlayerStateFromUniqueNetId +// 0x0040 (0x0040 - 0x0000) +struct GameplayStatics_GetPlayerStateFromUniqueNetId final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FUniqueNetIdRepl UniqueID; // 0x0008(0x0030)(ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* ReturnValue; // 0x0038(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetPlayerStateFromUniqueNetId; + +// Function Engine.GameplayStatics.GetRealTimeSeconds +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetRealTimeSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetRealTimeSeconds; + +// Function Engine.GameplayStatics.GetStreamingLevel +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetStreamingLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PackageName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULevelStreaming* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetStreamingLevel; + +// Function Engine.GameplayStatics.GetSurfaceType +// 0x0108 (0x0108 - 0x0000) +struct GameplayStatics_GetSurfaceType final +{ +public: + struct FHitResult Hit; // 0x0000(0x0100)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + EPhysicalSurface ReturnValue; // 0x0100(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetSurfaceType; + +// Function Engine.GameplayStatics.GetTimeSeconds +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetTimeSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetTimeSeconds; + +// Function Engine.GameplayStatics.GetUnpausedTimeSeconds +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetUnpausedTimeSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetUnpausedTimeSeconds; + +// Function Engine.GameplayStatics.GetViewportMouseCaptureMode +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetViewportMouseCaptureMode final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMouseCaptureMode ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetViewportMouseCaptureMode; + +// Function Engine.GameplayStatics.GetViewProjectionMatrix +// 0x09B0 (0x09B0 - 0x0000) +struct GameplayStatics_GetViewProjectionMatrix final +{ +public: + struct FMinimalViewInfo DesiredView; // 0x0000(0x0830)(Parm, NativeAccessSpecifierPublic) + struct FMatrix ViewMatrix; // 0x0830(0x0080)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ProjectionMatrix; // 0x08B0(0x0080)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ViewProjectionMatrix; // 0x0930(0x0080)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetViewProjectionMatrix; + +// Function Engine.GameplayStatics.GetWorldDeltaSeconds +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_GetWorldDeltaSeconds final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GetWorldDeltaSeconds; + +// Function Engine.GameplayStatics.GetWorldOriginLocation +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_GetWorldOriginLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector ReturnValue; // 0x0008(0x000C)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_GetWorldOriginLocation; + +// Function Engine.GameplayStatics.GrassOverlappingSphereCount +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_GrassOverlappingSphereCount final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UStaticMesh* StaticMesh; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CenterPosition; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x002C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_GrassOverlappingSphereCount; + +// Function Engine.GameplayStatics.HasLaunchOption +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_HasLaunchOption final +{ +public: + class FString OptionToCheck; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_HasLaunchOption; + +// Function Engine.GameplayStatics.HasOption +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_HasOption final +{ +public: + class FString Options; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InKey; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_HasOption; + +// Function Engine.GameplayStatics.IsAnyLocalPlayerCameraWithinRange +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_IsAnyLocalPlayerCameraWithinRange final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaximumRange; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_IsAnyLocalPlayerCameraWithinRange; + +// Function Engine.GameplayStatics.IsGamePaused +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_IsGamePaused final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_IsGamePaused; + +// Function Engine.GameplayStatics.IsSplitscreenForceDisabled +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_IsSplitscreenForceDisabled final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_IsSplitscreenForceDisabled; + +// Function Engine.GameplayStatics.LoadGameFromSlot +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_LoadGameFromSlot final +{ +public: + class FString SlotName; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0010(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USaveGame* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_LoadGameFromSlot; + +// Function Engine.GameplayStatics.LoadStreamLevel +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_LoadStreamLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LevelName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMakeVisibleAfterLoad; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldBlockOnLoad; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0018(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_LoadStreamLevel; + +// Function Engine.GameplayStatics.LoadStreamLevelBySoftObjectPtr +// 0x0050 (0x0050 - 0x0000) +struct GameplayStatics_LoadStreamLevelBySoftObjectPtr final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Level; // 0x0008(0x0028)(ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMakeVisibleAfterLoad; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShouldBlockOnLoad; // 0x0031(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLatentActionInfo LatentInfo; // 0x0038(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) +}; +//GameplayStatics_LoadStreamLevelBySoftObjectPtr; + +// Function Engine.GameplayStatics.MakeHitResult +// 0x01D8 (0x01D8 - 0x0000) +struct GameplayStatics_MakeHitResult final +{ +public: + bool bBlockingHit; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitialOverlap; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Time; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Distance; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ImpactPoint; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ImpactNormal; // 0x0058(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPhysicalMaterial* PhysMat; // 0x0070(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* HitActor; // 0x0078(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* HitComponent; // 0x0080(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName HitBoneName; // 0x0088(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0090(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 HitItem; // 0x0098(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ElementIndex; // 0x009C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FaceIndex; // 0x00A0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x4]; // 0x00A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector TraceStart; // 0x00A8(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TraceEnd; // 0x00C0(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult ReturnValue; // 0x00D8(0x0100)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//GameplayStatics_MakeHitResult; + +// Function Engine.GameplayStatics.ObjectIsA +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_ObjectIsA final +{ +public: + const class UObject* Object; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ObjectClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ObjectIsA; + +// Function Engine.GameplayStatics.OpenLevel +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_OpenLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LevelName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAbsolute; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Options; // 0x0018(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_OpenLevel; + +// Function Engine.GameplayStatics.OpenLevelBySoftObjectPtr +// 0x0048 (0x0048 - 0x0000) +struct GameplayStatics_OpenLevelBySoftObjectPtr final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Level; // 0x0008(0x0028)(ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAbsolute; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Options; // 0x0038(0x0010)(Parm, ZeroConstructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_OpenLevelBySoftObjectPtr; + +// Function Engine.GameplayStatics.ParseOption +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_ParseOption final +{ +public: + class FString Options; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_ParseOption; + +// Function Engine.GameplayStatics.PlayDialogue2D +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_PlayDialogue2D final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDialogueWave* Dialogue; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_PlayDialogue2D; + +// Function Engine.GameplayStatics.PlayDialogueAtLocation +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_PlayDialogueAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDialogueWave* Dialogue; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundAttenuation* AttenuationSettings; // 0x0068(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PlayDialogueAtLocation; + +// Function Engine.GameplayStatics.PlaySound2D +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_PlaySound2D final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundConcurrency* ConcurrencySettings; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class AActor* OwningActor; // 0x0028(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsUISound; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_PlaySound2D; + +// Function Engine.GameplayStatics.PlaySoundAtLocation +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_PlaySoundAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundAttenuation* AttenuationSettings; // 0x0050(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundConcurrency* ConcurrencySettings; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class AActor* OwningActor; // 0x0060(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + const class UInitialActiveSoundParams* InitialParams; // 0x0068(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PlaySoundAtLocation; + +// Function Engine.GameplayStatics.PlayWorldCameraShake +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_PlayWorldCameraShake final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Shake; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Epicenter; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InnerRadius; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterRadius; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Falloff; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOrientShakeTowardsEpicenter; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_PlayWorldCameraShake; + +// Function Engine.GameplayStatics.PopSoundMixModifier +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_PopSoundMixModifier final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundMix* InSoundMixModifier; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PopSoundMixModifier; + +// Function Engine.GameplayStatics.PrimeAllSoundsInSoundClass +// 0x0008 (0x0008 - 0x0000) +struct GameplayStatics_PrimeAllSoundsInSoundClass final +{ +public: + class USoundClass* InSoundClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PrimeAllSoundsInSoundClass; + +// Function Engine.GameplayStatics.PrimeSound +// 0x0008 (0x0008 - 0x0000) +struct GameplayStatics_PrimeSound final +{ +public: + class USoundBase* InSound; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PrimeSound; + +// Function Engine.GameplayStatics.ProjectWorldToScreen +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_ProjectWorldToScreen final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPlayerViewportRelative; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0031(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_ProjectWorldToScreen; + +// Function Engine.GameplayStatics.PushSoundMixModifier +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_PushSoundMixModifier final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundMix* InSoundMixModifier; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_PushSoundMixModifier; + +// Function Engine.GameplayStatics.RebaseLocalOriginOntoZero +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_RebaseLocalOriginOntoZero final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_RebaseLocalOriginOntoZero; + +// Function Engine.GameplayStatics.RebaseZeroOriginOntoLocal +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_RebaseZeroOriginOntoLocal final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldLocation; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_RebaseZeroOriginOntoLocal; + +// Function Engine.GameplayStatics.RemovePlayer +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_RemovePlayer final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDestroyPawn; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_RemovePlayer; + +// Function Engine.GameplayStatics.SaveGameToSlot +// 0x0020 (0x0020 - 0x0000) +struct GameplayStatics_SaveGameToSlot final +{ +public: + class USaveGame* SaveGameObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SlotName; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserIndex; // 0x0018(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SaveGameToSlot; + +// Function Engine.GameplayStatics.SetActiveSpatialPluginByName +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_SetActiveSpatialPluginByName final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InPluginName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetActiveSpatialPluginByName; + +// Function Engine.GameplayStatics.SetBaseSoundMix +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetBaseSoundMix final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundMix* InSoundMix; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SetBaseSoundMix; + +// Function Engine.GameplayStatics.SetEnableWorldRendering +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetEnableWorldRendering final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnable; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetEnableWorldRendering; + +// Function Engine.GameplayStatics.SetForceDisableSplitscreen +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetForceDisableSplitscreen final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisable; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetForceDisableSplitscreen; + +// Function Engine.GameplayStatics.SetGamePaused +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetGamePaused final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPaused; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0009(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetGamePaused; + +// Function Engine.GameplayStatics.SetGlobalListenerFocusParameters +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_SetGlobalListenerFocusParameters final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusAzimuthScale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusAzimuthScale; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusDistanceScale; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusDistanceScale; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusVolumeScale; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusVolumeScale; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusPriorityScale; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusPriorityScale; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SetGlobalListenerFocusParameters; + +// Function Engine.GameplayStatics.SetGlobalPitchModulation +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetGlobalPitchModulation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchModulation; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeSec; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SetGlobalPitchModulation; + +// Function Engine.GameplayStatics.SetGlobalTimeDilation +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetGlobalTimeDilation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeDilation; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetGlobalTimeDilation; + +// Function Engine.GameplayStatics.SetMaxAudioChannelsScaled +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetMaxAudioChannelsScaled final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxChannelCountScale; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetMaxAudioChannelsScaled; + +// Function Engine.GameplayStatics.SetPlayerControllerID +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetPlayerControllerID final +{ +public: + class APlayerController* Player; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ControllerId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetPlayerControllerID; + +// Function Engine.GameplayStatics.SetPlayerPlatformUserId +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetPlayerPlatformUserId final +{ +public: + class APlayerController* PlayerController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlatformUserId UserId; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetPlayerPlatformUserId; + +// Function Engine.GameplayStatics.SetSoundClassDistanceScale +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_SetSoundClassDistanceScale final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundClass* SoundClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceAttenuationScale; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeSec; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SetSoundClassDistanceScale; + +// Function Engine.GameplayStatics.SetSoundMixClassOverride +// 0x0028 (0x0028 - 0x0000) +struct GameplayStatics_SetSoundMixClassOverride final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundMix* InSoundMixModifier; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundClass* InSoundClass; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Volume; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeInTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bApplyToChildren; // 0x0024(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetSoundMixClassOverride; + +// Function Engine.GameplayStatics.SetSubtitlesEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameplayStatics_SetSubtitlesEnabled final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SetSubtitlesEnabled; + +// Function Engine.GameplayStatics.SetViewportMouseCaptureMode +// 0x0010 (0x0010 - 0x0000) +struct GameplayStatics_SetViewportMouseCaptureMode final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMouseCaptureMode MouseCaptureMode; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetViewportMouseCaptureMode; + +// Function Engine.GameplayStatics.SetWorldOriginLocation +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_SetWorldOriginLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector NewLocation; // 0x0008(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SetWorldOriginLocation; + +// Function Engine.GameplayStatics.SpawnDecalAtLocation +// 0x0068 (0x0068 - 0x0000) +struct GameplayStatics_SpawnDecalAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* DecalMaterial; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector DecalSize; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float LifeSpan; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UDecalComponent* ReturnValue; // 0x0060(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnDecalAtLocation; + +// Function Engine.GameplayStatics.SpawnDecalAttached +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_SpawnDecalAttached final +{ +public: + class UMaterialInterface* DecalMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector DecalSize; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0020(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0028(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LifeSpan; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDecalComponent* ReturnValue; // 0x0068(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnDecalAttached; + +// Function Engine.GameplayStatics.SpawnDialogue2D +// 0x0040 (0x0040 - 0x0000) +struct GameplayStatics_SpawnDialogue2D final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDialogueWave* Dialogue; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0038(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnDialogue2D; + +// Function Engine.GameplayStatics.SpawnDialogueAtLocation +// 0x0080 (0x0080 - 0x0000) +struct GameplayStatics_SpawnDialogueAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDialogueWave* Dialogue; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0010(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0058(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundAttenuation* AttenuationSettings; // 0x0068(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0078(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnDialogueAtLocation; + +// Function Engine.GameplayStatics.SpawnDialogueAttached +// 0x0088 (0x0088 - 0x0000) +struct GameplayStatics_SpawnDialogueAttached final +{ +public: + class UDialogueWave* Dialogue; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0020(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0028(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopWhenAttachedToDestroyed; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumeMultiplier; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0068(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x006C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundAttenuation* AttenuationSettings; // 0x0070(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0080(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnDialogueAttached; + +// Function Engine.GameplayStatics.SpawnEmitterAtLocation +// 0x0068 (0x0068 - 0x0000) +struct GameplayStatics_SpawnEmitterAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleSystem* EmitterTemplate; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPSCPoolMethod PoolingMethod; // 0x0059(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoActivateSystem; // 0x005A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5B[0x5]; // 0x005B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + class UParticleSystemComponent* ReturnValue; // 0x0060(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnEmitterAtLocation; + +// Function Engine.GameplayStatics.SpawnEmitterAttached +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_SpawnEmitterAttached final +{ +public: + class UParticleSystem* EmitterTemplate; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0061(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPSCPoolMethod PoolingMethod; // 0x0062(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoActivate; // 0x0063(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UParticleSystemComponent* ReturnValue; // 0x0068(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnEmitterAttached; + +// Function Engine.GameplayStatics.SpawnForceFeedbackAtLocation +// 0x0068 (0x0068 - 0x0000) +struct GameplayStatics_SpawnForceFeedbackAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + bool bLooping; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float IntensityMultiplier; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UForceFeedbackAttenuation* AttenuationSettings; // 0x0050(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UForceFeedbackComponent* ReturnValue; // 0x0060(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnForceFeedbackAtLocation; + +// Function Engine.GameplayStatics.SpawnForceFeedbackAttached +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_SpawnForceFeedbackAttached final +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopWhenAttachedToDestroyed; // 0x0049(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x004A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4B[0x1]; // 0x004B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float IntensityMultiplier; // 0x004C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UForceFeedbackAttenuation* AttenuationSettings; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UForceFeedbackComponent* ReturnValue; // 0x0068(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnForceFeedbackAttached; + +// Function Engine.GameplayStatics.SpawnObject +// 0x0018 (0x0018 - 0x0000) +struct GameplayStatics_SpawnObject final +{ +public: + TSubclassOf ObjectClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* Outer_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnObject; + +// Function Engine.GameplayStatics.SpawnSound2D +// 0x0038 (0x0038 - 0x0000) +struct GameplayStatics_SpawnSound2D final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundConcurrency* ConcurrencySettings; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPersistAcrossLevelTransition; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0030(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnSound2D; + +// Function Engine.GameplayStatics.SpawnSoundAtLocation +// 0x0070 (0x0070 - 0x0000) +struct GameplayStatics_SpawnSoundAtLocation final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float VolumeMultiplier; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0044(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundAttenuation* AttenuationSettings; // 0x0050(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundConcurrency* ConcurrencySettings; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0068(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnSoundAtLocation; + +// Function Engine.GameplayStatics.SpawnSoundAttached +// 0x0078 (0x0078 - 0x0000) +struct GameplayStatics_SpawnSoundAttached final +{ +public: + class USoundBase* Sound; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0008(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopWhenAttachedToDestroyed; // 0x0049(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4A[0x2]; // 0x004A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumeMultiplier; // 0x004C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchMultiplier; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundAttenuation* AttenuationSettings; // 0x0058(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundConcurrency* ConcurrencySettings; // 0x0060(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioComponent* ReturnValue; // 0x0070(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_SpawnSoundAttached; + +// Function Engine.GameplayStatics.SuggestProjectileVelocity_CustomArc +// 0x0060 (0x0060 - 0x0000) +struct GameplayStatics_SuggestProjectileVelocity_CustomArc final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutLaunchVelocity; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartPos; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndPos; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideGravityZ; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArcParam; // 0x0054(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0058(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SuggestProjectileVelocity_CustomArc; + +// Function Engine.GameplayStatics.SuggestProjectileVelocity_MovingTarget +// 0x0088 (0x0088 - 0x0000) +struct GameplayStatics_SuggestProjectileVelocity_MovingTarget final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutLaunchVelocity; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ProjectileStartLocation; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* TargetActor; // 0x0038(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetLocationOffset; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double GravityZOverride; // 0x0058(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double TimeToTarget; // 0x0060(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DrawDebugTime; // 0x006C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DrawDebugColor; // 0x0070(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0080(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_SuggestProjectileVelocity_MovingTarget; + +// Function Engine.GameplayStatics.TransformWorldToFirstPerson +// 0x0870 (0x0870 - 0x0000) +struct GameplayStatics_TransformWorldToFirstPerson final +{ +public: + struct FMinimalViewInfo ViewInfo; // 0x0000(0x0830)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0830(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnoreFirstPersonScale; // 0x0848(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_849[0x7]; // 0x0849(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0850(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_868[0x8]; // 0x0868(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_TransformWorldToFirstPerson; + +// Function Engine.GameplayStatics.UnloadStreamLevel +// 0x0030 (0x0030 - 0x0000) +struct GameplayStatics_UnloadStreamLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LevelName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLatentActionInfo LatentInfo; // 0x0010(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) + bool bShouldBlockOnUnload; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_UnloadStreamLevel; + +// Function Engine.GameplayStatics.UnloadStreamLevelBySoftObjectPtr +// 0x0050 (0x0050 - 0x0000) +struct GameplayStatics_UnloadStreamLevelBySoftObjectPtr final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Level; // 0x0008(0x0028)(ConstParm, Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLatentActionInfo LatentInfo; // 0x0030(0x0018)(Parm, NoDestructor, NativeAccessSpecifierPublic) + bool bShouldBlockOnUnload; // 0x0048(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameplayStatics_UnloadStreamLevelBySoftObjectPtr; + +// Function Engine.GameplayStatics.UnRetainAllSoundsInSoundClass +// 0x0008 (0x0008 - 0x0000) +struct GameplayStatics_UnRetainAllSoundsInSoundClass final +{ +public: + class USoundClass* InSoundClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameplayStatics_UnRetainAllSoundsInSoundClass; + +// Function Engine.GameStateBase.GetPlayerRespawnDelay +// 0x0010 (0x0010 - 0x0000) +struct GameStateBase_GetPlayerRespawnDelay final +{ +public: + class AController* Controller; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameStateBase_GetPlayerRespawnDelay; + +// Function Engine.GameStateBase.GetPlayerStartTime +// 0x0010 (0x0010 - 0x0000) +struct GameStateBase_GetPlayerStartTime final +{ +public: + class AController* Controller; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//GameStateBase_GetPlayerStartTime; + +// Function Engine.GameStateBase.GetServerWorldTimeSeconds +// 0x0008 (0x0008 - 0x0000) +struct GameStateBase_GetServerWorldTimeSeconds final +{ +public: + double ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameStateBase_GetServerWorldTimeSeconds; + +// Function Engine.GameStateBase.HasBegunPlay +// 0x0001 (0x0001 - 0x0000) +struct GameStateBase_HasBegunPlay final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameStateBase_HasBegunPlay; + +// Function Engine.GameStateBase.HasMatchEnded +// 0x0001 (0x0001 - 0x0000) +struct GameStateBase_HasMatchEnded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameStateBase_HasMatchEnded; + +// Function Engine.GameStateBase.HasMatchStarted +// 0x0001 (0x0001 - 0x0000) +struct GameStateBase_HasMatchStarted final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameStateBase_HasMatchStarted; + +// Function Engine.GameUserSettings.GetDefaultResolution +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetDefaultResolution final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetDefaultResolution; + +// Function Engine.GameUserSettings.GetDefaultWindowMode +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_GetDefaultWindowMode final +{ +public: + EWindowMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetDefaultWindowMode; + +// Function Engine.GameUserSettings.GetDefaultWindowPosition +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetDefaultWindowPosition final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetDefaultWindowPosition; + +// Function Engine.GameUserSettings.GetFramePace +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetFramePace final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetFramePace; + +// Function Engine.GameUserSettings.GetGameUserSettings +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetGameUserSettings final +{ +public: + class UGameUserSettings* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetGameUserSettings; + +// Function Engine.GameUserSettings.GetSyncInterval +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetSyncInterval final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetSyncInterval; + +// Function Engine.GameUserSettings.ApplyResolutionSettings +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_ApplyResolutionSettings final +{ +public: + bool bCheckForCommandLineOverrides; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_ApplyResolutionSettings; + +// Function Engine.GameUserSettings.ApplySettings +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_ApplySettings final +{ +public: + bool bCheckForCommandLineOverrides; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_ApplySettings; + +// Function Engine.GameUserSettings.EnableHDRDisplayOutput +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_EnableHDRDisplayOutput final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DisplayNits; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_EnableHDRDisplayOutput; + +// Function Engine.GameUserSettings.GetDefaultResolutionScale +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetDefaultResolutionScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetDefaultResolutionScale; + +// Function Engine.GameUserSettings.GetRecommendedResolutionScale +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetRecommendedResolutionScale final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetRecommendedResolutionScale; + +// Function Engine.GameUserSettings.LoadSettings +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_LoadSettings final +{ +public: + bool bForceReload; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_LoadSettings; + +// Function Engine.GameUserSettings.RunHardwareBenchmark +// 0x000C (0x000C - 0x0000) +struct GameUserSettings_RunHardwareBenchmark final +{ +public: + int32 WorkScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CPUMultiplier; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GPUMultiplier; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_RunHardwareBenchmark; + +// Function Engine.GameUserSettings.SetAntiAliasingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetAntiAliasingQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetAntiAliasingQuality; + +// Function Engine.GameUserSettings.SetAudioQualityLevel +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetAudioQualityLevel final +{ +public: + int32 QualityLevel; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetAudioQualityLevel; + +// Function Engine.GameUserSettings.SetDynamicResolutionEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_SetDynamicResolutionEnabled final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetDynamicResolutionEnabled; + +// Function Engine.GameUserSettings.SetFoliageQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetFoliageQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetFoliageQuality; + +// Function Engine.GameUserSettings.SetFrameRateLimit +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetFrameRateLimit final +{ +public: + float NewLimit; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetFrameRateLimit; + +// Function Engine.GameUserSettings.SetFullscreenMode +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_SetFullscreenMode final +{ +public: + EWindowMode InFullscreenMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetFullscreenMode; + +// Function Engine.GameUserSettings.SetGlobalIlluminationQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetGlobalIlluminationQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetGlobalIlluminationQuality; + +// Function Engine.GameUserSettings.SetOverallScalabilityLevel +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetOverallScalabilityLevel final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetOverallScalabilityLevel; + +// Function Engine.GameUserSettings.SetPostProcessingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetPostProcessingQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetPostProcessingQuality; + +// Function Engine.GameUserSettings.SetReflectionQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetReflectionQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetReflectionQuality; + +// Function Engine.GameUserSettings.SetResolutionScaleNormalized +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetResolutionScaleNormalized final +{ +public: + float NewScaleNormalized; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetResolutionScaleNormalized; + +// Function Engine.GameUserSettings.SetResolutionScaleValueEx +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetResolutionScaleValueEx final +{ +public: + float NewScaleValue; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetResolutionScaleValueEx; + +// Function Engine.GameUserSettings.SetScreenResolution +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_SetScreenResolution final +{ +public: + struct FIntPoint Resolution; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetScreenResolution; + +// Function Engine.GameUserSettings.SetShadingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetShadingQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetShadingQuality; + +// Function Engine.GameUserSettings.SetShadowQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetShadowQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetShadowQuality; + +// Function Engine.GameUserSettings.SetTextureQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetTextureQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetTextureQuality; + +// Function Engine.GameUserSettings.SetViewDistanceQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetViewDistanceQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetViewDistanceQuality; + +// Function Engine.GameUserSettings.SetVisualEffectQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_SetVisualEffectQuality final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetVisualEffectQuality; + +// Function Engine.GameUserSettings.SetVSyncEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_SetVSyncEnabled final +{ +public: + bool bEnable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SetVSyncEnabled; + +// Function Engine.GameUserSettings.GetAntiAliasingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetAntiAliasingQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetAntiAliasingQuality; + +// Function Engine.GameUserSettings.GetAudioQualityLevel +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetAudioQualityLevel final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetAudioQualityLevel; + +// Function Engine.GameUserSettings.GetCurrentHDRDisplayNits +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetCurrentHDRDisplayNits final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetCurrentHDRDisplayNits; + +// Function Engine.GameUserSettings.GetDesktopResolution +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetDesktopResolution final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetDesktopResolution; + +// Function Engine.GameUserSettings.GetFoliageQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetFoliageQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetFoliageQuality; + +// Function Engine.GameUserSettings.GetFrameRateLimit +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetFrameRateLimit final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetFrameRateLimit; + +// Function Engine.GameUserSettings.GetFullscreenMode +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_GetFullscreenMode final +{ +public: + EWindowMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetFullscreenMode; + +// Function Engine.GameUserSettings.GetGlobalIlluminationQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetGlobalIlluminationQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetGlobalIlluminationQuality; + +// Function Engine.GameUserSettings.GetLastConfirmedFullscreenMode +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_GetLastConfirmedFullscreenMode final +{ +public: + EWindowMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetLastConfirmedFullscreenMode; + +// Function Engine.GameUserSettings.GetLastConfirmedScreenResolution +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetLastConfirmedScreenResolution final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetLastConfirmedScreenResolution; + +// Function Engine.GameUserSettings.GetOverallScalabilityLevel +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetOverallScalabilityLevel final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetOverallScalabilityLevel; + +// Function Engine.GameUserSettings.GetPostProcessingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetPostProcessingQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetPostProcessingQuality; + +// Function Engine.GameUserSettings.GetPreferredFullscreenMode +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_GetPreferredFullscreenMode final +{ +public: + EWindowMode ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetPreferredFullscreenMode; + +// Function Engine.GameUserSettings.GetReflectionQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetReflectionQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetReflectionQuality; + +// Function Engine.GameUserSettings.GetResolutionScaleInformationEx +// 0x0010 (0x0010 - 0x0000) +struct GameUserSettings_GetResolutionScaleInformationEx final +{ +public: + float CurrentScaleNormalized; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CurrentScaleValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinScaleValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxScaleValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetResolutionScaleInformationEx; + +// Function Engine.GameUserSettings.GetResolutionScaleNormalized +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetResolutionScaleNormalized final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetResolutionScaleNormalized; + +// Function Engine.GameUserSettings.GetScreenResolution +// 0x0008 (0x0008 - 0x0000) +struct GameUserSettings_GetScreenResolution final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetScreenResolution; + +// Function Engine.GameUserSettings.GetShadingQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetShadingQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetShadingQuality; + +// Function Engine.GameUserSettings.GetShadowQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetShadowQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetShadowQuality; + +// Function Engine.GameUserSettings.GetTextureQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetTextureQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetTextureQuality; + +// Function Engine.GameUserSettings.GetViewDistanceQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetViewDistanceQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetViewDistanceQuality; + +// Function Engine.GameUserSettings.GetVisualEffectQuality +// 0x0004 (0x0004 - 0x0000) +struct GameUserSettings_GetVisualEffectQuality final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_GetVisualEffectQuality; + +// Function Engine.GameUserSettings.IsDirty +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsDirty final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsDirty; + +// Function Engine.GameUserSettings.IsDynamicResolutionDirty +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsDynamicResolutionDirty final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsDynamicResolutionDirty; + +// Function Engine.GameUserSettings.IsDynamicResolutionEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsDynamicResolutionEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsDynamicResolutionEnabled; + +// Function Engine.GameUserSettings.IsFullscreenModeDirty +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsFullscreenModeDirty final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsFullscreenModeDirty; + +// Function Engine.GameUserSettings.IsHDREnabled +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsHDREnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsHDREnabled; + +// Function Engine.GameUserSettings.IsScreenResolutionDirty +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsScreenResolutionDirty final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsScreenResolutionDirty; + +// Function Engine.GameUserSettings.IsVSyncDirty +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsVSyncDirty final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsVSyncDirty; + +// Function Engine.GameUserSettings.IsVSyncEnabled +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_IsVSyncEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_IsVSyncEnabled; + +// Function Engine.GameUserSettings.SupportsHDRDisplayOutput +// 0x0001 (0x0001 - 0x0000) +struct GameUserSettings_SupportsHDRDisplayOutput final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameUserSettings_SupportsHDRDisplayOutput; + +// Function Engine.GameViewportClient.SetConsoleTarget +// 0x0004 (0x0004 - 0x0000) +struct GameViewportClient_SetConsoleTarget final +{ +public: + int32 PlayerIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//GameViewportClient_SetConsoleTarget; + +// Function Engine.KismetArrayLibrary.Array_Add +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Add final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 NewItem; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Add; + +// Function Engine.KismetArrayLibrary.Array_AddUnique +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_AddUnique final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 NewItem; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_AddUnique; + +// Function Engine.KismetArrayLibrary.Array_Append +// 0x0020 (0x0020 - 0x0000) +struct KismetArrayLibrary_Array_Append final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray SourceArray; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Append; + +// Function Engine.KismetArrayLibrary.Array_Clear +// 0x0010 (0x0010 - 0x0000) +struct KismetArrayLibrary_Array_Clear final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Clear; + +// Function Engine.KismetArrayLibrary.Array_Contains +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Contains final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 ItemToFind; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Contains; + +// Function Engine.KismetArrayLibrary.Array_Find +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Find final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 ItemToFind; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Find; + +// Function Engine.KismetArrayLibrary.Array_Get +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Get final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Item; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Get; + +// Function Engine.KismetArrayLibrary.Array_Identical +// 0x0028 (0x0028 - 0x0000) +struct KismetArrayLibrary_Array_Identical final +{ +public: + TArray ArrayA; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ArrayB; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Identical; + +// Function Engine.KismetArrayLibrary.Array_Insert +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Insert final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 NewItem; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Insert; + +// Function Engine.KismetArrayLibrary.Array_IsEmpty +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_IsEmpty final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_IsEmpty; + +// Function Engine.KismetArrayLibrary.Array_IsNotEmpty +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_IsNotEmpty final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_IsNotEmpty; + +// Function Engine.KismetArrayLibrary.Array_IsValidIndex +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_IsValidIndex final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexToTest; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_IsValidIndex; + +// Function Engine.KismetArrayLibrary.Array_LastIndex +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_LastIndex final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_LastIndex; + +// Function Engine.KismetArrayLibrary.Array_Length +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Length final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Length; + +// Function Engine.KismetArrayLibrary.Array_Random +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Random final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 OutItem; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutIndex; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Random; + +// Function Engine.KismetArrayLibrary.Array_RandomFromStream +// 0x0020 (0x0020 - 0x0000) +struct KismetArrayLibrary_Array_RandomFromStream final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + struct FRandomStream RandomStream; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + int32 OutItem; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutIndex; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_RandomFromStream; + +// Function Engine.KismetArrayLibrary.Array_Remove +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Remove final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexToRemove; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Remove; + +// Function Engine.KismetArrayLibrary.Array_RemoveItem +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_RemoveItem final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 Item; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_RemoveItem; + +// Function Engine.KismetArrayLibrary.Array_Resize +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Resize final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 Size; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Resize; + +// Function Engine.KismetArrayLibrary.Array_Reverse +// 0x0010 (0x0010 - 0x0000) +struct KismetArrayLibrary_Array_Reverse final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Reverse; + +// Function Engine.KismetArrayLibrary.Array_Set +// 0x0020 (0x0020 - 0x0000) +struct KismetArrayLibrary_Array_Set final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Item; // 0x0014(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSizeToFit; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_Array_Set; + +// Function Engine.KismetArrayLibrary.Array_Shuffle +// 0x0010 (0x0010 - 0x0000) +struct KismetArrayLibrary_Array_Shuffle final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Shuffle; + +// Function Engine.KismetArrayLibrary.Array_ShuffleFromStream +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_ShuffleFromStream final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + struct FRandomStream RandomStream; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_ShuffleFromStream; + +// Function Engine.KismetArrayLibrary.Array_Swap +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_Array_Swap final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 FirstIndex; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SecondIndex; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_Array_Swap; + +// Function Engine.KismetArrayLibrary.FilterArray +// 0x0028 (0x0028 - 0x0000) +struct KismetArrayLibrary_FilterArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TSubclassOf FilterClass; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray FilteredArray; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_FilterArray; + +// Function Engine.KismetArrayLibrary.SetArrayPropertyByName +// 0x0020 (0x0020 - 0x0000) +struct KismetArrayLibrary_SetArrayPropertyByName final +{ +public: + class UObject* Object; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PropertyName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Value; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//KismetArrayLibrary_SetArrayPropertyByName; + +// Function Engine.KismetArrayLibrary.SortByteArray +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortByteArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortByteArray; + +// Function Engine.KismetArrayLibrary.SortFloatArray +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortFloatArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortFloatArray; + +// Function Engine.KismetArrayLibrary.SortInt64Array +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortInt64Array final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortInt64Array; + +// Function Engine.KismetArrayLibrary.SortIntArray +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortIntArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortIntArray; + +// Function Engine.KismetArrayLibrary.SortNameArray +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortNameArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLexicalSort; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0012(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortNameArray; + +// Function Engine.KismetArrayLibrary.SortStringArray +// 0x0018 (0x0018 - 0x0000) +struct KismetArrayLibrary_SortStringArray final +{ +public: + TArray TargetArray; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bStableSort; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EArraySortOrder SortOrder; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetArrayLibrary_SortStringArray; + +// Function Engine.KismetGuidLibrary.Conv_GuidToString +// 0x0020 (0x0020 - 0x0000) +struct KismetGuidLibrary_Conv_GuidToString final +{ +public: + struct FGuid InGuid; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetGuidLibrary_Conv_GuidToString; + +// Function Engine.KismetGuidLibrary.EqualEqual_GuidGuid +// 0x0024 (0x0024 - 0x0000) +struct KismetGuidLibrary_EqualEqual_GuidGuid final +{ +public: + struct FGuid A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetGuidLibrary_EqualEqual_GuidGuid; + +// Function Engine.KismetGuidLibrary.Invalidate_Guid +// 0x0010 (0x0010 - 0x0000) +struct KismetGuidLibrary_Invalidate_Guid final +{ +public: + struct FGuid InGuid; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetGuidLibrary_Invalidate_Guid; + +// Function Engine.KismetGuidLibrary.IsValid_Guid +// 0x0014 (0x0014 - 0x0000) +struct KismetGuidLibrary_IsValid_Guid final +{ +public: + struct FGuid InGuid; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetGuidLibrary_IsValid_Guid; + +// Function Engine.KismetGuidLibrary.NewGuid +// 0x0010 (0x0010 - 0x0000) +struct KismetGuidLibrary_NewGuid final +{ +public: + struct FGuid ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetGuidLibrary_NewGuid; + +// Function Engine.KismetGuidLibrary.NotEqual_GuidGuid +// 0x0024 (0x0024 - 0x0000) +struct KismetGuidLibrary_NotEqual_GuidGuid final +{ +public: + struct FGuid A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid B; // 0x0010(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetGuidLibrary_NotEqual_GuidGuid; + +// Function Engine.KismetGuidLibrary.Parse_StringToGuid +// 0x0028 (0x0028 - 0x0000) +struct KismetGuidLibrary_Parse_StringToGuid final +{ +public: + class FString GuidString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid OutGuid; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Success; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetGuidLibrary_Parse_StringToGuid; + +// Function Engine.KismetInternationalizationLibrary.ClearCurrentAssetGroupCulture +// 0x000C (0x000C - 0x0000) +struct KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture final +{ +public: + class FName AssetGroup; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0008(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_ClearCurrentAssetGroupCulture; + +// Function Engine.KismetInternationalizationLibrary.GetCultureDisplayName +// 0x0028 (0x0028 - 0x0000) +struct KismetInternationalizationLibrary_GetCultureDisplayName final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Localized; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetCultureDisplayName; + +// Function Engine.KismetInternationalizationLibrary.GetCurrentAssetGroupCulture +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_GetCurrentAssetGroupCulture final +{ +public: + class FName AssetGroup; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetCurrentAssetGroupCulture; + +// Function Engine.KismetInternationalizationLibrary.GetCurrentCulture +// 0x0010 (0x0010 - 0x0000) +struct KismetInternationalizationLibrary_GetCurrentCulture final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetCurrentCulture; + +// Function Engine.KismetInternationalizationLibrary.GetCurrentLanguage +// 0x0010 (0x0010 - 0x0000) +struct KismetInternationalizationLibrary_GetCurrentLanguage final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetCurrentLanguage; + +// Function Engine.KismetInternationalizationLibrary.GetCurrentLocale +// 0x0010 (0x0010 - 0x0000) +struct KismetInternationalizationLibrary_GetCurrentLocale final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetCurrentLocale; + +// Function Engine.KismetInternationalizationLibrary.GetLocalizedCultures +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_GetLocalizedCultures final +{ +public: + bool IncludeGame; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IncludeEngine; // 0x0001(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IncludeEditor; // 0x0002(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool IncludeAdditional; // 0x0003(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetLocalizedCultures; + +// Function Engine.KismetInternationalizationLibrary.GetNativeCulture +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_GetNativeCulture final +{ +public: + ELocalizedTextSourceCategory TextCategory; // 0x0000(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetNativeCulture; + +// Function Engine.KismetInternationalizationLibrary.GetSuitableCulture +// 0x0040 (0x0040 - 0x0000) +struct KismetInternationalizationLibrary_GetSuitableCulture final +{ +public: + TArray AvailableCultures; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class FString CultureToMatch; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FallbackCulture; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetInternationalizationLibrary_GetSuitableCulture; + +// Function Engine.KismetInternationalizationLibrary.IsCultureRightToLeft +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_IsCultureRightToLeft final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_IsCultureRightToLeft; + +// Function Engine.KismetInternationalizationLibrary.SetCurrentAssetGroupCulture +// 0x0020 (0x0020 - 0x0000) +struct KismetInternationalizationLibrary_SetCurrentAssetGroupCulture final +{ +public: + class FName AssetGroup; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Culture; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0018(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_SetCurrentAssetGroupCulture; + +// Function Engine.KismetInternationalizationLibrary.SetCurrentCulture +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_SetCurrentCulture final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_SetCurrentCulture; + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLanguage +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_SetCurrentLanguage final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_SetCurrentLanguage; + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLanguageAndLocale +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_SetCurrentLanguageAndLocale final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_SetCurrentLanguageAndLocale; + +// Function Engine.KismetInternationalizationLibrary.SetCurrentLocale +// 0x0018 (0x0018 - 0x0000) +struct KismetInternationalizationLibrary_SetCurrentLocale final +{ +public: + class FString Culture; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool SaveToConfig; // 0x0010(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0011(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetInternationalizationLibrary_SetCurrentLocale; + +// Function Engine.KismetMaterialLibrary.CreateDynamicMaterialInstance +// 0x0028 (0x0028 - 0x0000) +struct KismetMaterialLibrary_CreateDynamicMaterialInstance final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Parent; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OptionalName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMIDCreationFlags CreationFlags; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInstanceDynamic* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMaterialLibrary_CreateDynamicMaterialInstance; + +// Function Engine.KismetMaterialLibrary.GetScalarParameterValue +// 0x0020 (0x0020 - 0x0000) +struct KismetMaterialLibrary_GetScalarParameterValue final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialParameterCollection* Collection; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParameterName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMaterialLibrary_GetScalarParameterValue; + +// Function Engine.KismetMaterialLibrary.GetVectorParameterValue +// 0x0028 (0x0028 - 0x0000) +struct KismetMaterialLibrary_GetVectorParameterValue final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialParameterCollection* Collection; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParameterName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMaterialLibrary_GetVectorParameterValue; + +// Function Engine.KismetMaterialLibrary.SetScalarParameterValue +// 0x0020 (0x0020 - 0x0000) +struct KismetMaterialLibrary_SetScalarParameterValue final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialParameterCollection* Collection; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParameterName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParameterValue; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMaterialLibrary_SetScalarParameterValue; + +// Function Engine.KismetMaterialLibrary.SetVectorParameterValue +// 0x0028 (0x0028 - 0x0000) +struct KismetMaterialLibrary_SetVectorParameterValue final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialParameterCollection* Collection; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ParameterName; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ParameterValue; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMaterialLibrary_SetVectorParameterValue; + +// Function Engine.KismetMathLibrary.abs +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_abs final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_abs; + +// Function Engine.KismetMathLibrary.Abs_Int +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Abs_Int final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Abs_Int; + +// Function Engine.KismetMathLibrary.Abs_Int64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Abs_Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Abs_Int64; + +// Function Engine.KismetMathLibrary.acos +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_acos final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_acos; + +// Function Engine.KismetMathLibrary.Add_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Add_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_ByteByte; + +// Function Engine.KismetMathLibrary.Add_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.Add_DateTimeTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_DateTimeTimespan final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_DateTimeTimespan; + +// Function Engine.KismetMathLibrary.Add_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_DoubleDouble; + +// Function Engine.KismetMathLibrary.Add_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_Int64Int64; + +// Function Engine.KismetMathLibrary.Add_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Add_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_IntInt; + +// Function Engine.KismetMathLibrary.Add_IntPointInt +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Add_IntPointInt final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_IntPointInt; + +// Function Engine.KismetMathLibrary.Add_IntPointIntPoint +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.Add_LinearColorLinearColor +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Add_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.Add_MatrixMatrix +// 0x0180 (0x0180 - 0x0000) +struct KismetMathLibrary_Add_MatrixMatrix final +{ +public: + struct FMatrix A; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix B; // 0x0080(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0100(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_MatrixMatrix; + +// Function Engine.KismetMathLibrary.Add_QuatQuat +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Add_QuatQuat final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_QuatQuat; + +// Function Engine.KismetMathLibrary.Add_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Add_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_TimespanTimespan; + +// Function Engine.KismetMathLibrary.Add_Vector2DFloat +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Add_Vector2DFloat final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_Vector2DFloat; + +// Function Engine.KismetMathLibrary.Add_Vector2DVector2D +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Add_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.Add_Vector4Vector4 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Add_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_Vector4Vector4; + +// Function Engine.KismetMathLibrary.Add_VectorFloat +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Add_VectorFloat final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_VectorFloat; + +// Function Engine.KismetMathLibrary.Add_VectorInt +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Add_VectorInt final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_VectorInt; + +// Function Engine.KismetMathLibrary.Add_VectorVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Add_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Add_VectorVector; + +// Function Engine.KismetMathLibrary.And_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_And_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_And_Int64Int64; + +// Function Engine.KismetMathLibrary.And_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_And_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_And_IntInt; + +// Function Engine.KismetMathLibrary.asin +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_asin final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_asin; + +// Function Engine.KismetMathLibrary.atan +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_atan final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_atan; + +// Function Engine.KismetMathLibrary.Atan2 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Atan2 final +{ +public: + double Y; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Atan2; + +// Function Engine.KismetMathLibrary.AverageOfIntArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_AverageOfIntArray final +{ +public: + TArray IntArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + float AverageValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_AverageOfIntArray; + +// Function Engine.KismetMathLibrary.BMax +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BMax final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BMax; + +// Function Engine.KismetMathLibrary.BMin +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BMin final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BMin; + +// Function Engine.KismetMathLibrary.BooleanAND +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BooleanAND final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BooleanAND; + +// Function Engine.KismetMathLibrary.BooleanNAND +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BooleanNAND final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BooleanNAND; + +// Function Engine.KismetMathLibrary.BooleanNOR +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BooleanNOR final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BooleanNOR; + +// Function Engine.KismetMathLibrary.BooleanOR +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BooleanOR final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BooleanOR; + +// Function Engine.KismetMathLibrary.BooleanXOR +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_BooleanXOR final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BooleanXOR; + +// Function Engine.KismetMathLibrary.Box_ExpandBy +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Box_ExpandBy final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Negative; // 0x0038(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Positive; // 0x0050(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox ReturnValue; // 0x0068(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Box_ExpandBy; + +// Function Engine.KismetMathLibrary.Box_GetClosestPointTo +// 0x0068 (0x0068 - 0x0000) +struct KismetMathLibrary_Box_GetClosestPointTo final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Point; // 0x0038(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Box_GetClosestPointTo; + +// Function Engine.KismetMathLibrary.Box_Intersects +// 0x0078 (0x0078 - 0x0000) +struct KismetMathLibrary_Box_Intersects final +{ +public: + struct FBox A; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox B; // 0x0038(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Box_Intersects; + +// Function Engine.KismetMathLibrary.Box_IsInside +// 0x0078 (0x0078 - 0x0000) +struct KismetMathLibrary_Box_IsInside final +{ +public: + struct FBox InnerTest; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox OuterTest; // 0x0038(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Box_IsInside; + +// Function Engine.KismetMathLibrary.Box_IsInsideOrOn +// 0x0078 (0x0078 - 0x0000) +struct KismetMathLibrary_Box_IsInsideOrOn final +{ +public: + struct FBox InnerTest; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox OuterTest; // 0x0038(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Box_IsInsideOrOn; + +// Function Engine.KismetMathLibrary.Box_IsPointInside +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_Box_IsPointInside final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Point; // 0x0038(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Box_IsPointInside; + +// Function Engine.KismetMathLibrary.Box_Overlap +// 0x00A8 (0x00A8 - 0x0000) +struct KismetMathLibrary_Box_Overlap final +{ +public: + struct FBox A; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox B; // 0x0038(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox ReturnValue; // 0x0070(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Box_Overlap; + +// Function Engine.KismetMathLibrary.BreakBoxSphereBounds +// 0x0070 (0x0070 - 0x0000) +struct KismetMathLibrary_BreakBoxSphereBounds final +{ +public: + struct FBoxSphereBounds InBoxSphereBounds; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0050(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0068(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakBoxSphereBounds; + +// Function Engine.KismetMathLibrary.BreakColor +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_BreakColor final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float R; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float G; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float B; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakColor; + +// Function Engine.KismetMathLibrary.BreakDateTime +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_BreakDateTime final +{ +public: + struct FDateTime InDateTime; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Year; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Month; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Day; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hour; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minute; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Second; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Millisecond; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakDateTime; + +// Function Engine.KismetMathLibrary.BreakFrameRate +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_BreakFrameRate final +{ +public: + struct FFrameRate InFrameRate; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Numerator; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Denominator; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakFrameRate; + +// Function Engine.KismetMathLibrary.BreakQualifiedFrameTime +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_BreakQualifiedFrameTime final +{ +public: + struct FQualifiedFrameTime InFrameTime; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FFrameNumber Frame; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameRate FrameRate; // 0x0014(0x0008)(Parm, OutParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubFrame; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakQualifiedFrameTime; + +// Function Engine.KismetMathLibrary.BreakQuat +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakQuat final +{ +public: + struct FQuat InQuat; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float X; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x002C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakQuat; + +// Function Engine.KismetMathLibrary.BreakRandomStream +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_BreakRandomStream final +{ +public: + struct FRandomStream InRandomStream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + int32 InitialSeed; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakRandomStream; + +// Function Engine.KismetMathLibrary.BreakRotator +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_BreakRotator final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Roll; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Yaw; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakRotator; + +// Function Engine.KismetMathLibrary.BreakRotIntoAxes +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_BreakRotIntoAxes final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector X; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakRotIntoAxes; + +// Function Engine.KismetMathLibrary.BreakTimespan +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_BreakTimespan final +{ +public: + struct FTimespan InTimespan; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Days; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hours; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minutes; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seconds; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Milliseconds; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakTimespan; + +// Function Engine.KismetMathLibrary.BreakTimespan2 +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_BreakTimespan2 final +{ +public: + struct FTimespan InTimespan; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Days; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hours; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minutes; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seconds; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FractionNano; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakTimespan2; + +// Function Engine.KismetMathLibrary.BreakTransform +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_BreakTransform final +{ +public: + struct FTransform InTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0060(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0090(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A8[0x8]; // 0x00A8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_BreakTransform; + +// Function Engine.KismetMathLibrary.BreakVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakVector final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector; + +// Function Engine.KismetMathLibrary.BreakVector2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_BreakVector2D final +{ +public: + struct FVector2D InVec; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector2D; + +// Function Engine.KismetMathLibrary.BreakVector4 +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_BreakVector4 final +{ +public: + struct FVector4 InVec; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0038(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector4; + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakVector_NetQuantize final +{ +public: + struct FVector_NetQuantize InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector_NetQuantize; + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize10 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakVector_NetQuantize10 final +{ +public: + struct FVector_NetQuantize10 InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector_NetQuantize10; + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantize100 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakVector_NetQuantize100 final +{ +public: + struct FVector_NetQuantize100 InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector_NetQuantize100; + +// Function Engine.KismetMathLibrary.BreakVector_NetQuantizeNormal +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_BreakVector_NetQuantizeNormal final +{ +public: + struct FVector_NetQuantizeNormal InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_BreakVector_NetQuantizeNormal; + +// Function Engine.KismetMathLibrary.CInterpTo +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_CInterpTo final +{ +public: + struct FLinearColor Current; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Target; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_CInterpTo; + +// Function Engine.KismetMathLibrary.clamp +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_clamp final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Param_min_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Param_max_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_clamp; + +// Function Engine.KismetMathLibrary.ClampAngle +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_ClampAngle final +{ +public: + double AngleDegrees; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MinAngleDegrees; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaxAngleDegrees; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ClampAngle; + +// Function Engine.KismetMathLibrary.ClampAxes2D +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_ClampAxes2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MinAxisVal; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaxAxisVal; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ClampAxes2D; + +// Function Engine.KismetMathLibrary.ClampAxis +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_ClampAxis final +{ +public: + float Angle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ClampAxis; + +// Function Engine.KismetMathLibrary.ClampInt64 +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_ClampInt64 final +{ +public: + int64 Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Param_min_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Param_max_0; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ClampInt64; + +// Function Engine.KismetMathLibrary.ClampVectorSize +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_ClampVectorSize final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_min_0; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_max_0; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ClampVectorSize; + +// Function Engine.KismetMathLibrary.ClassIsChildOf +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_ClassIsChildOf final +{ +public: + TSubclassOf TestClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ParentClass; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_ClassIsChildOf; + +// Function Engine.KismetMathLibrary.ComposeRotators +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_ComposeRotators final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ComposeRotators; + +// Function Engine.KismetMathLibrary.ComposeTransforms +// 0x0120 (0x0120 - 0x0000) +struct KismetMathLibrary_ComposeTransforms final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x00C0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ComposeTransforms; + +// Function Engine.KismetMathLibrary.Conv_BoolToByte +// 0x0002 (0x0002 - 0x0000) +struct KismetMathLibrary_Conv_BoolToByte final +{ +public: + bool InBool; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_BoolToByte; + +// Function Engine.KismetMathLibrary.Conv_BoolToDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_BoolToDouble final +{ +public: + bool InBool; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_BoolToDouble; + +// Function Engine.KismetMathLibrary.Conv_BoolToInt +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Conv_BoolToInt final +{ +public: + bool InBool; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_BoolToInt; + +// Function Engine.KismetMathLibrary.Conv_ByteToDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_ByteToDouble final +{ +public: + uint8 InByte; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_ByteToDouble; + +// Function Engine.KismetMathLibrary.Conv_ByteToInt +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Conv_ByteToInt final +{ +public: + uint8 InByte; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_ByteToInt; + +// Function Engine.KismetMathLibrary.Conv_ByteToInt64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_ByteToInt64 final +{ +public: + uint8 InByte; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_ByteToInt64; + +// Function Engine.KismetMathLibrary.Conv_ColorToLinearColor +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Conv_ColorToLinearColor final +{ +public: + struct FColor InColor; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0004(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_ColorToLinearColor; + +// Function Engine.KismetMathLibrary.Conv_DoubleToFloat +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_DoubleToFloat final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_DoubleToFloat; + +// Function Engine.KismetMathLibrary.Conv_DoubleToInt64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_DoubleToInt64 final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_DoubleToInt64; + +// Function Engine.KismetMathLibrary.Conv_DoubleToLinearColor +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Conv_DoubleToLinearColor final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_DoubleToLinearColor; + +// Function Engine.KismetMathLibrary.Conv_DoubleToVector +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Conv_DoubleToVector final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_DoubleToVector; + +// Function Engine.KismetMathLibrary.Conv_DoubleToVector2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Conv_DoubleToVector2D final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_DoubleToVector2D; + +// Function Engine.KismetMathLibrary.Conv_FloatToDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_FloatToDouble final +{ +public: + float InFloat; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_FloatToDouble; + +// Function Engine.KismetMathLibrary.Conv_Int64ToByte +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_Int64ToByte final +{ +public: + int64 inInt; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_Int64ToByte; + +// Function Engine.KismetMathLibrary.Conv_Int64ToDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_Int64ToDouble final +{ +public: + int64 inInt; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_Int64ToDouble; + +// Function Engine.KismetMathLibrary.Conv_Int64ToInt +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_Int64ToInt final +{ +public: + int64 inInt; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_Int64ToInt; + +// Function Engine.KismetMathLibrary.Conv_IntPointToVector2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Conv_IntPointToVector2D final +{ +public: + struct FIntPoint InIntPoint; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntPointToVector2D; + +// Function Engine.KismetMathLibrary.Conv_IntToBool +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Conv_IntToBool final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_IntToBool; + +// Function Engine.KismetMathLibrary.Conv_IntToByte +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Conv_IntToByte final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_IntToByte; + +// Function Engine.KismetMathLibrary.Conv_IntToDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_IntToDouble final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntToDouble; + +// Function Engine.KismetMathLibrary.Conv_IntToInt64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_IntToInt64 final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntToInt64; + +// Function Engine.KismetMathLibrary.Conv_IntToIntVector +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Conv_IntToIntVector final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector ReturnValue; // 0x0004(0x000C)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntToIntVector; + +// Function Engine.KismetMathLibrary.Conv_IntToVector +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Conv_IntToVector final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntToVector; + +// Function Engine.KismetMathLibrary.Conv_IntVectorToVector +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Conv_IntVectorToVector final +{ +public: + struct FIntVector InIntVector; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_IntVectorToVector; + +// Function Engine.KismetMathLibrary.Conv_LinearColorToColor +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Conv_LinearColorToColor final +{ +public: + struct FLinearColor InLinearColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InUseSRGB; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_LinearColorToColor; + +// Function Engine.KismetMathLibrary.Conv_LinearColorToVector +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Conv_LinearColorToVector final +{ +public: + struct FLinearColor InLinearColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_LinearColorToVector; + +// Function Engine.KismetMathLibrary.Conv_MatrixToRotator +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Conv_MatrixToRotator final +{ +public: + struct FMatrix InMatrix; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0080(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_MatrixToRotator; + +// Function Engine.KismetMathLibrary.Conv_MatrixToTransform +// 0x00E0 (0x00E0 - 0x0000) +struct KismetMathLibrary_Conv_MatrixToTransform final +{ +public: + struct FMatrix InMatrix; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x0080(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_MatrixToTransform; + +// Function Engine.KismetMathLibrary.Conv_RotatorToQuaternion +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Conv_RotatorToQuaternion final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_RotatorToQuaternion; + +// Function Engine.KismetMathLibrary.Conv_RotatorToTransform +// 0x0080 (0x0080 - 0x0000) +struct KismetMathLibrary_Conv_RotatorToTransform final +{ +public: + struct FRotator InRotator; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0020(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_RotatorToTransform; + +// Function Engine.KismetMathLibrary.Conv_RotatorToVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Conv_RotatorToVector final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_RotatorToVector; + +// Function Engine.KismetMathLibrary.Conv_TransformToMatrix +// 0x00E0 (0x00E0 - 0x0000) +struct KismetMathLibrary_Conv_TransformToMatrix final +{ +public: + struct FTransform Transform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0060(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_TransformToMatrix; + +// Function Engine.KismetMathLibrary.Conv_Vector2DToIntPoint +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Conv_Vector2DToIntPoint final +{ +public: + struct FVector2D InVector2D; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_Vector2DToIntPoint; + +// Function Engine.KismetMathLibrary.Conv_Vector2DToVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Conv_Vector2DToVector final +{ +public: + struct FVector2D InVector2D; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_Vector2DToVector; + +// Function Engine.KismetMathLibrary.Conv_Vector4ToQuaternion +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Conv_Vector4ToQuaternion final +{ +public: + struct FVector4 InVec; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_Vector4ToQuaternion; + +// Function Engine.KismetMathLibrary.Conv_Vector4ToRotator +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Conv_Vector4ToRotator final +{ +public: + struct FVector4 InVec; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_Vector4ToRotator; + +// Function Engine.KismetMathLibrary.Conv_Vector4ToVector +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Conv_Vector4ToVector final +{ +public: + struct FVector4 InVector4; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Conv_Vector4ToVector; + +// Function Engine.KismetMathLibrary.Conv_VectorToLinearColor +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Conv_VectorToLinearColor final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_VectorToLinearColor; + +// Function Engine.KismetMathLibrary.Conv_VectorToQuaternion +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Conv_VectorToQuaternion final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_VectorToQuaternion; + +// Function Engine.KismetMathLibrary.Conv_VectorToRotator +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Conv_VectorToRotator final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_VectorToRotator; + +// Function Engine.KismetMathLibrary.Conv_VectorToTransform +// 0x0080 (0x0080 - 0x0000) +struct KismetMathLibrary_Conv_VectorToTransform final +{ +public: + struct FVector InLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0020(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_VectorToTransform; + +// Function Engine.KismetMathLibrary.Conv_VectorToVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Conv_VectorToVector2D final +{ +public: + struct FVector InVector; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Conv_VectorToVector2D; + +// Function Engine.KismetMathLibrary.Convert1DTo2D +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Convert1DTo2D final +{ +public: + int32 Index1D; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 XSize; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Convert1DTo2D; + +// Function Engine.KismetMathLibrary.Convert1DTo3D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Convert1DTo3D final +{ +public: + int32 Index1D; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 XSize; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 YSize; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector ReturnValue; // 0x000C(0x000C)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Convert1DTo3D; + +// Function Engine.KismetMathLibrary.Convert2DTo1D +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Convert2DTo1D final +{ +public: + struct FIntPoint Index2D; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 XSize; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Convert2DTo1D; + +// Function Engine.KismetMathLibrary.Convert3DTo1D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Convert3DTo1D final +{ +public: + struct FIntVector Index3D; // 0x0000(0x000C)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 XSize; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 YSize; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Convert3DTo1D; + +// Function Engine.KismetMathLibrary.cos +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_cos final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_cos; + +// Function Engine.KismetMathLibrary.CreateVectorFromYawPitch +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_CreateVectorFromYawPitch final +{ +public: + float Yaw; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_CreateVectorFromYawPitch; + +// Function Engine.KismetMathLibrary.Cross_VectorVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Cross_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Cross_VectorVector; + +// Function Engine.KismetMathLibrary.CrossProduct2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_CrossProduct2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_CrossProduct2D; + +// Function Engine.KismetMathLibrary.DateTimeFromIsoString +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_DateTimeFromIsoString final +{ +public: + class FString IsoString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime Result; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_DateTimeFromIsoString; + +// Function Engine.KismetMathLibrary.DateTimeFromString +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_DateTimeFromString final +{ +public: + class FString DateTimeString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime Result; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_DateTimeFromString; + +// Function Engine.KismetMathLibrary.DateTimeMaxValue +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_DateTimeMaxValue final +{ +public: + struct FDateTime ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DateTimeMaxValue; + +// Function Engine.KismetMathLibrary.DateTimeMinValue +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_DateTimeMinValue final +{ +public: + struct FDateTime ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DateTimeMinValue; + +// Function Engine.KismetMathLibrary.DaysInMonth +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_DaysInMonth final +{ +public: + int32 Year; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Month; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DaysInMonth; + +// Function Engine.KismetMathLibrary.DaysInYear +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_DaysInYear final +{ +public: + int32 Year; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DaysInYear; + +// Function Engine.KismetMathLibrary.DegAcos +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegAcos final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegAcos; + +// Function Engine.KismetMathLibrary.DegAsin +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegAsin final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegAsin; + +// Function Engine.KismetMathLibrary.DegAtan +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegAtan final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegAtan; + +// Function Engine.KismetMathLibrary.DegAtan2 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_DegAtan2 final +{ +public: + double Y; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegAtan2; + +// Function Engine.KismetMathLibrary.DegCos +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegCos final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegCos; + +// Function Engine.KismetMathLibrary.DegreesToRadians +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegreesToRadians final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegreesToRadians; + +// Function Engine.KismetMathLibrary.DegSin +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegSin final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegSin; + +// Function Engine.KismetMathLibrary.DegTan +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_DegTan final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DegTan; + +// Function Engine.KismetMathLibrary.Distance2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Distance2D final +{ +public: + struct FVector2D v1; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D v2; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Distance2D; + +// Function Engine.KismetMathLibrary.DistanceSquared2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_DistanceSquared2D final +{ +public: + struct FVector2D v1; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D v2; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DistanceSquared2D; + +// Function Engine.KismetMathLibrary.Divide_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Divide_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_ByteByte; + +// Function Engine.KismetMathLibrary.Divide_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Divide_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_DoubleDouble; + +// Function Engine.KismetMathLibrary.Divide_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Divide_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_Int64Int64; + +// Function Engine.KismetMathLibrary.Divide_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Divide_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_IntInt; + +// Function Engine.KismetMathLibrary.Divide_IntPointInt +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Divide_IntPointInt final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_IntPointInt; + +// Function Engine.KismetMathLibrary.Divide_IntPointIntPoint +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Divide_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.Divide_LinearColorLinearColor +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Divide_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.Divide_TimespanFloat +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Divide_TimespanFloat final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scalar; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_TimespanFloat; + +// Function Engine.KismetMathLibrary.Divide_Vector2DFloat +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Divide_Vector2DFloat final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_Vector2DFloat; + +// Function Engine.KismetMathLibrary.Divide_Vector2DVector2D +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Divide_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.Divide_Vector4Vector4 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Divide_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_Vector4Vector4; + +// Function Engine.KismetMathLibrary.Divide_VectorFloat +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Divide_VectorFloat final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_VectorFloat; + +// Function Engine.KismetMathLibrary.Divide_VectorInt +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Divide_VectorInt final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_VectorInt; + +// Function Engine.KismetMathLibrary.Divide_VectorVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Divide_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Divide_VectorVector; + +// Function Engine.KismetMathLibrary.Dot_VectorVector +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Dot_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Dot_VectorVector; + +// Function Engine.KismetMathLibrary.DotProduct2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_DotProduct2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DotProduct2D; + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_Float +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_DynamicWeightedMovingAverage_Float final +{ +public: + float CurrentSample; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreviousSample; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDistance; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinWeight; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxWeight; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DynamicWeightedMovingAverage_Float; + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_FRotator +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_DynamicWeightedMovingAverage_FRotator final +{ +public: + struct FRotator CurrentSample; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator PreviousSample; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float MaxDistance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinWeight; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxWeight; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DynamicWeightedMovingAverage_FRotator; + +// Function Engine.KismetMathLibrary.DynamicWeightedMovingAverage_FVector +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_DynamicWeightedMovingAverage_FVector final +{ +public: + struct FVector CurrentSample; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousSample; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDistance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinWeight; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxWeight; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_DynamicWeightedMovingAverage_FVector; + +// Function Engine.KismetMathLibrary.Ease +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Ease final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEasingFunc EasingFunc; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + double BlendExp; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Steps; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Ease; + +// Function Engine.KismetMathLibrary.Equal_IntPointIntPoint +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Equal_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Equal_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.EqualEqual_BoolBool +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_EqualEqual_BoolBool final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_EqualEqual_BoolBool; + +// Function Engine.KismetMathLibrary.EqualEqual_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_EqualEqual_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_EqualEqual_ByteByte; + +// Function Engine.KismetMathLibrary.EqualEqual_ClassClass +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_ClassClass final +{ +public: + class UClass* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_ClassClass; + +// Function Engine.KismetMathLibrary.EqualEqual_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.EqualEqual_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_DoubleDouble; + +// Function Engine.KismetMathLibrary.EqualEqual_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_Int64Int64; + +// Function Engine.KismetMathLibrary.EqualEqual_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_EqualEqual_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_IntInt; + +// Function Engine.KismetMathLibrary.EqualEqual_LinearColorLinearColor +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_EqualEqual_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.EqualEqual_MatrixMatrix +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_EqualEqual_MatrixMatrix final +{ +public: + struct FMatrix A; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix B; // 0x0080(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Tolerance; // 0x0100(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0104(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_105[0xB]; // 0x0105(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_MatrixMatrix; + +// Function Engine.KismetMathLibrary.EqualEqual_NameName +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_EqualEqual_NameName final +{ +public: + class FName A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_NameName; + +// Function Engine.KismetMathLibrary.EqualEqual_ObjectObject +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_ObjectObject final +{ +public: + class UObject* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_ObjectObject; + +// Function Engine.KismetMathLibrary.EqualEqual_QuatQuat +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_EqualEqual_QuatQuat final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0044(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0xB]; // 0x0045(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_QuatQuat; + +// Function Engine.KismetMathLibrary.EqualEqual_RotatorRotator +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_EqualEqual_RotatorRotator final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0034(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_RotatorRotator; + +// Function Engine.KismetMathLibrary.EqualEqual_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_EqualEqual_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_TimespanTimespan; + +// Function Engine.KismetMathLibrary.EqualEqual_TransformTransform +// 0x00D0 (0x00D0 - 0x0000) +struct KismetMathLibrary_EqualEqual_TransformTransform final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00C0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0xF]; // 0x00C1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_TransformTransform; + +// Function Engine.KismetMathLibrary.EqualEqual_Vector2DVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_EqualEqual_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.EqualEqual_Vector4Vector4 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_EqualEqual_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0044(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0xB]; // 0x0045(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_Vector4Vector4; + +// Function Engine.KismetMathLibrary.EqualEqual_VectorVector +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_EqualEqual_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0034(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualEqual_VectorVector; + +// Function Engine.KismetMathLibrary.EqualExactly_Vector2DVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_EqualExactly_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualExactly_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.EqualExactly_Vector4Vector4 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_EqualExactly_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0xF]; // 0x0041(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualExactly_Vector4Vector4; + +// Function Engine.KismetMathLibrary.EqualExactly_VectorVector +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_EqualExactly_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_EqualExactly_VectorVector; + +// Function Engine.KismetMathLibrary.exp +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_exp final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_exp; + +// Function Engine.KismetMathLibrary.FCeil +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FCeil final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_FCeil; + +// Function Engine.KismetMathLibrary.FCeil64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FCeil64 final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FCeil64; + +// Function Engine.KismetMathLibrary.FClamp +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_FClamp final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_min_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_max_0; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FClamp; + +// Function Engine.KismetMathLibrary.FFloor +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FFloor final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_FFloor; + +// Function Engine.KismetMathLibrary.FFloor64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FFloor64 final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FFloor64; + +// Function Engine.KismetMathLibrary.FindClosestPointOnLine +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_FindClosestPointOnLine final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineOrigin; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineDirection; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FindClosestPointOnLine; + +// Function Engine.KismetMathLibrary.FindClosestPointOnSegment +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_FindClosestPointOnSegment final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentStart; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentEnd; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FindClosestPointOnSegment; + +// Function Engine.KismetMathLibrary.FindLookAtRotation +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_FindLookAtRotation final +{ +public: + struct FVector Start; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Target; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FindLookAtRotation; + +// Function Engine.KismetMathLibrary.FindNearestPointsOnLineSegments +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_FindNearestPointsOnLineSegments final +{ +public: + struct FVector Segment1Start; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Segment1End; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Segment2Start; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Segment2End; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Segment1Point; // 0x0060(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Segment2Point; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FindNearestPointsOnLineSegments; + +// Function Engine.KismetMathLibrary.FindRelativeLookAtRotation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_FindRelativeLookAtRotation final +{ +public: + struct FTransform StartTransform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetLocation; // 0x0060(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FindRelativeLookAtRotation; + +// Function Engine.KismetMathLibrary.FInterpEaseInOut +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_FInterpEaseInOut final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Exponent; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FInterpEaseInOut; + +// Function Engine.KismetMathLibrary.FInterpTo +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_FInterpTo final +{ +public: + double Current; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Target; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double DeltaTime; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InterpSpeed; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FInterpTo; + +// Function Engine.KismetMathLibrary.FInterpTo_Constant +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_FInterpTo_Constant final +{ +public: + double Current; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Target; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double DeltaTime; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InterpSpeed; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FInterpTo_Constant; + +// Function Engine.KismetMathLibrary.FixedTurn +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FixedTurn final +{ +public: + float InCurrent; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDesired; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDeltaRate; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FixedTurn; + +// Function Engine.KismetMathLibrary.FloatSpringInterp +// 0x003C (0x003C - 0x0000) +struct KismetMathLibrary_FloatSpringInterp final +{ +public: + float Current; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Target; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFloatSpringState SpringState; // 0x0008(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float Stiffness; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CriticalDampingFactor; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetVelocityAmount; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClamp; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinValue; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxValue; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitializeFromTarget; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0038(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FloatSpringInterp; + +// Function Engine.KismetMathLibrary.FMax +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_FMax final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FMax; + +// Function Engine.KismetMathLibrary.FMin +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_FMin final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FMin; + +// Function Engine.KismetMathLibrary.FMod +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_FMod final +{ +public: + double Dividend; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Divisor; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Remainder; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_FMod; + +// Function Engine.KismetMathLibrary.FMod64 +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_FMod64 final +{ +public: + double Dividend; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Divisor; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Remainder; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FMod64; + +// Function Engine.KismetMathLibrary.Fraction +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Fraction final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Fraction; + +// Function Engine.KismetMathLibrary.FromDays +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromDays final +{ +public: + float Days; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromDays; + +// Function Engine.KismetMathLibrary.FromHours +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromHours final +{ +public: + float Hours; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromHours; + +// Function Engine.KismetMathLibrary.FromMilliseconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromMilliseconds final +{ +public: + float Milliseconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromMilliseconds; + +// Function Engine.KismetMathLibrary.FromMinutes +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromMinutes final +{ +public: + float Minutes; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromMinutes; + +// Function Engine.KismetMathLibrary.FromSeconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromSeconds final +{ +public: + float Seconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromSeconds; + +// Function Engine.KismetMathLibrary.FromUnixTimestamp +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FromUnixTimestamp final +{ +public: + int64 UnixTime; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FromUnixTimestamp; + +// Function Engine.KismetMathLibrary.FTrunc +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FTrunc final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_FTrunc; + +// Function Engine.KismetMathLibrary.FTrunc64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_FTrunc64 final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FTrunc64; + +// Function Engine.KismetMathLibrary.FTruncVector +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_FTruncVector final +{ +public: + struct FVector InVector; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector ReturnValue; // 0x0018(0x000C)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_FTruncVector; + +// Function Engine.KismetMathLibrary.FWrap +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_FWrap final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_min_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_max_0; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_FWrap; + +// Function Engine.KismetMathLibrary.GetAbs2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_GetAbs2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetAbs2D; + +// Function Engine.KismetMathLibrary.GetAbsMax2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GetAbsMax2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetAbsMax2D; + +// Function Engine.KismetMathLibrary.GetAxes +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_GetAxes final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector X; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetAxes; + +// Function Engine.KismetMathLibrary.GetAzimuthAndElevation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_GetAzimuthAndElevation final +{ +public: + struct FVector InDirection; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReferenceFrame; // 0x0020(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Azimuth; // 0x0080(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Elevation; // 0x0084(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetAzimuthAndElevation; + +// Function Engine.KismetMathLibrary.GetBoxCenter +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_GetBoxCenter final +{ +public: + struct FBox InBox; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetBoxCenter; + +// Function Engine.KismetMathLibrary.GetBoxSize +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_GetBoxSize final +{ +public: + struct FBox InBox; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetBoxSize; + +// Function Engine.KismetMathLibrary.GetBoxVolume +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_GetBoxVolume final +{ +public: + struct FBox InBox; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0038(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetBoxVolume; + +// Function Engine.KismetMathLibrary.GetDate +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetDate final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetDate; + +// Function Engine.KismetMathLibrary.GetDay +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetDay final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetDay; + +// Function Engine.KismetMathLibrary.GetDayOfYear +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetDayOfYear final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetDayOfYear; + +// Function Engine.KismetMathLibrary.GetDays +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetDays final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetDays; + +// Function Engine.KismetMathLibrary.GetDirectionUnitVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_GetDirectionUnitVector final +{ +public: + struct FVector From; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector To; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetDirectionUnitVector; + +// Function Engine.KismetMathLibrary.GetDuration +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetDuration final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetDuration; + +// Function Engine.KismetMathLibrary.GetForwardVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_GetForwardVector final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetForwardVector; + +// Function Engine.KismetMathLibrary.GetHour +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetHour final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetHour; + +// Function Engine.KismetMathLibrary.GetHour12 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetHour12 final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetHour12; + +// Function Engine.KismetMathLibrary.GetHours +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetHours final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetHours; + +// Function Engine.KismetMathLibrary.GetMax2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GetMax2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetMax2D; + +// Function Engine.KismetMathLibrary.GetMaxElement +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_GetMaxElement final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetMaxElement; + +// Function Engine.KismetMathLibrary.GetMillisecond +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetMillisecond final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetMillisecond; + +// Function Engine.KismetMathLibrary.GetMilliseconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetMilliseconds final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetMilliseconds; + +// Function Engine.KismetMathLibrary.GetMin2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GetMin2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetMin2D; + +// Function Engine.KismetMathLibrary.GetMinElement +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_GetMinElement final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetMinElement; + +// Function Engine.KismetMathLibrary.GetMinute +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetMinute final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetMinute; + +// Function Engine.KismetMathLibrary.GetMinutes +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetMinutes final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetMinutes; + +// Function Engine.KismetMathLibrary.GetMonth +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetMonth final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetMonth; + +// Function Engine.KismetMathLibrary.GetPI +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_GetPI final +{ +public: + double ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetPI; + +// Function Engine.KismetMathLibrary.GetPointDistanceToLine +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_GetPointDistanceToLine final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineOrigin; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineDirection; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0048(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetPointDistanceToLine; + +// Function Engine.KismetMathLibrary.GetPointDistanceToSegment +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_GetPointDistanceToSegment final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentStart; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentEnd; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0048(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetPointDistanceToSegment; + +// Function Engine.KismetMathLibrary.GetReflectionVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_GetReflectionVector final +{ +public: + struct FVector Direction; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SurfaceNormal; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetReflectionVector; + +// Function Engine.KismetMathLibrary.GetRightVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_GetRightVector final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetRightVector; + +// Function Engine.KismetMathLibrary.GetRotated2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_GetRotated2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleDeg; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetRotated2D; + +// Function Engine.KismetMathLibrary.GetRuntimeFloatCurveValue +// 0x0098 (0x0098 - 0x0000) +struct KismetMathLibrary_GetRuntimeFloatCurveValue final +{ +public: + struct FRuntimeFloatCurve Curve; // 0x0000(0x0088)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + float InTime; // 0x0088(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDefaultValue; // 0x008C(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0090(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_94[0x4]; // 0x0094(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetRuntimeFloatCurveValue; + +// Function Engine.KismetMathLibrary.GetSecond +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetSecond final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetSecond; + +// Function Engine.KismetMathLibrary.GetSeconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetSeconds final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetSeconds; + +// Function Engine.KismetMathLibrary.GetSlopeDegreeAngles +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_GetSlopeDegreeAngles final +{ +public: + struct FVector MyRightYAxis; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector FloorNormal; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector UpVector; // 0x0030(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutSlopePitchDegreeAngle; // 0x0048(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutSlopeRollDegreeAngle; // 0x004C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetSlopeDegreeAngles; + +// Function Engine.KismetMathLibrary.GetTAU +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_GetTAU final +{ +public: + double ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetTAU; + +// Function Engine.KismetMathLibrary.GetTimeOfDay +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTimeOfDay final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetTimeOfDay; + +// Function Engine.KismetMathLibrary.GetTotalDays +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTotalDays final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetTotalDays; + +// Function Engine.KismetMathLibrary.GetTotalHours +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTotalHours final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetTotalHours; + +// Function Engine.KismetMathLibrary.GetTotalMilliseconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTotalMilliseconds final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetTotalMilliseconds; + +// Function Engine.KismetMathLibrary.GetTotalMinutes +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTotalMinutes final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetTotalMinutes; + +// Function Engine.KismetMathLibrary.GetTotalSeconds +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetTotalSeconds final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetTotalSeconds; + +// Function Engine.KismetMathLibrary.GetUpVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_GetUpVector final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetUpVector; + +// Function Engine.KismetMathLibrary.GetVectorArrayAverage +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_GetVectorArrayAverage final +{ +public: + TArray Vectors; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetVectorArrayAverage; + +// Function Engine.KismetMathLibrary.GetYawPitchFromVector +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_GetYawPitchFromVector final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Yaw; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GetYawPitchFromVector; + +// Function Engine.KismetMathLibrary.GetYear +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_GetYear final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GetYear; + +// Function Engine.KismetMathLibrary.Greater_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Greater_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Greater_ByteByte; + +// Function Engine.KismetMathLibrary.Greater_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Greater_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Greater_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.Greater_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Greater_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Greater_DoubleDouble; + +// Function Engine.KismetMathLibrary.Greater_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Greater_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Greater_Int64Int64; + +// Function Engine.KismetMathLibrary.Greater_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Greater_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Greater_IntInt; + +// Function Engine.KismetMathLibrary.Greater_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Greater_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Greater_TimespanTimespan; + +// Function Engine.KismetMathLibrary.GreaterEqual_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_GreaterEqual_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GreaterEqual_ByteByte; + +// Function Engine.KismetMathLibrary.GreaterEqual_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GreaterEqual_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GreaterEqual_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.GreaterEqual_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GreaterEqual_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GreaterEqual_DoubleDouble; + +// Function Engine.KismetMathLibrary.GreaterEqual_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GreaterEqual_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GreaterEqual_Int64Int64; + +// Function Engine.KismetMathLibrary.GreaterEqual_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_GreaterEqual_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GreaterEqual_IntInt; + +// Function Engine.KismetMathLibrary.GreaterEqual_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GreaterEqual_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_GreaterEqual_TimespanTimespan; + +// Function Engine.KismetMathLibrary.GreaterGreater_VectorRotator +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_GreaterGreater_VectorRotator final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GreaterGreater_VectorRotator; + +// Function Engine.KismetMathLibrary.GridSnap_Float +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_GridSnap_Float final +{ +public: + double Location; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double GridSize; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_GridSnap_Float; + +// Function Engine.KismetMathLibrary.HSVToRGB +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_HSVToRGB final +{ +public: + float H; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float S; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_HSVToRGB; + +// Function Engine.KismetMathLibrary.HSVToRGB_Vector +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_HSVToRGB_Vector final +{ +public: + struct FLinearColor HSV; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RGB; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_HSVToRGB_Vector; + +// Function Engine.KismetMathLibrary.HSVToRGBLinear +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_HSVToRGBLinear final +{ +public: + struct FLinearColor HSV; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_HSVToRGBLinear; + +// Function Engine.KismetMathLibrary.Hypotenuse +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Hypotenuse final +{ +public: + double Width; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Height; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Hypotenuse; + +// Function Engine.KismetMathLibrary.InRange_FloatFloat +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_InRange_FloatFloat final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_min_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Param_max_0; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMin; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMax; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001A(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x5]; // 0x001B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_InRange_FloatFloat; + +// Function Engine.KismetMathLibrary.InRange_Int64Int64 +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_InRange_Int64Int64 final +{ +public: + int64 Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Param_min_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 Param_max_0; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMin; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMax; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001A(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x5]; // 0x001B(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_InRange_Int64Int64; + +// Function Engine.KismetMathLibrary.InRange_IntInt +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_InRange_IntInt final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Param_min_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Param_max_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMin; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InclusiveMax; // 0x000D(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000E(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F[0x1]; // 0x000F(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_InRange_IntInt; + +// Function Engine.KismetMathLibrary.IntPoint_Down +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_Down final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_Down; + +// Function Engine.KismetMathLibrary.IntPoint_Left +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_Left final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_Left; + +// Function Engine.KismetMathLibrary.IntPoint_One +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_One final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_One; + +// Function Engine.KismetMathLibrary.IntPoint_Right +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_Right final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_Right; + +// Function Engine.KismetMathLibrary.IntPoint_Up +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_Up final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_Up; + +// Function Engine.KismetMathLibrary.IntPoint_Zero +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IntPoint_Zero final +{ +public: + struct FIntPoint ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_IntPoint_Zero; + +// Function Engine.KismetMathLibrary.InverseTransformDirection +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_InverseTransformDirection final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_InverseTransformDirection; + +// Function Engine.KismetMathLibrary.InverseTransformLocation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_InverseTransformLocation final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_InverseTransformLocation; + +// Function Engine.KismetMathLibrary.InverseTransformRotation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_InverseTransformRotation final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_InverseTransformRotation; + +// Function Engine.KismetMathLibrary.InvertTransform +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_InvertTransform final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x0060(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_InvertTransform; + +// Function Engine.KismetMathLibrary.IsAfternoon +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_IsAfternoon final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsAfternoon; + +// Function Engine.KismetMathLibrary.IsLeapYear +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_IsLeapYear final +{ +public: + int32 Year; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsLeapYear; + +// Function Engine.KismetMathLibrary.IsMorning +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_IsMorning final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsMorning; + +// Function Engine.KismetMathLibrary.IsNearlyZero2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_IsNearlyZero2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsNearlyZero2D; + +// Function Engine.KismetMathLibrary.IsPointInBox +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_IsPointInBox final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxOrigin; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsPointInBox; + +// Function Engine.KismetMathLibrary.IsPointInBox_Box +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_IsPointInBox_Box final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox Box; // 0x0018(0x0038)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsPointInBox_Box; + +// Function Engine.KismetMathLibrary.IsPointInBoxWithTransform +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_IsPointInBoxWithTransform final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform BoxWorldTransform; // 0x0020(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0098(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x7]; // 0x0099(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsPointInBoxWithTransform; + +// Function Engine.KismetMathLibrary.IsPointInBoxWithTransform_Box +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_IsPointInBoxWithTransform_Box final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform BoxWorldTransform; // 0x0020(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox BoxExtent; // 0x0080(0x0038)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00B8(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B9[0x7]; // 0x00B9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsPointInBoxWithTransform_Box; + +// Function Engine.KismetMathLibrary.IsZero2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_IsZero2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_IsZero2D; + +// Function Engine.KismetMathLibrary.Lerp +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Lerp final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Lerp; + +// Function Engine.KismetMathLibrary.Less_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Less_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Less_ByteByte; + +// Function Engine.KismetMathLibrary.Less_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Less_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Less_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.Less_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Less_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Less_DoubleDouble; + +// Function Engine.KismetMathLibrary.Less_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Less_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Less_Int64Int64; + +// Function Engine.KismetMathLibrary.Less_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Less_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Less_IntInt; + +// Function Engine.KismetMathLibrary.Less_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Less_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Less_TimespanTimespan; + +// Function Engine.KismetMathLibrary.LessEqual_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_LessEqual_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LessEqual_ByteByte; + +// Function Engine.KismetMathLibrary.LessEqual_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_LessEqual_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LessEqual_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.LessEqual_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_LessEqual_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LessEqual_DoubleDouble; + +// Function Engine.KismetMathLibrary.LessEqual_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_LessEqual_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LessEqual_Int64Int64; + +// Function Engine.KismetMathLibrary.LessEqual_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_LessEqual_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LessEqual_IntInt; + +// Function Engine.KismetMathLibrary.LessEqual_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_LessEqual_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LessEqual_TimespanTimespan; + +// Function Engine.KismetMathLibrary.LessLess_VectorRotator +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_LessLess_VectorRotator final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LessLess_VectorRotator; + +// Function Engine.KismetMathLibrary.LinearColor_Black +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Black final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Black; + +// Function Engine.KismetMathLibrary.LinearColor_Blue +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Blue final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Blue; + +// Function Engine.KismetMathLibrary.LinearColor_Desaturated +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_LinearColor_Desaturated final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDesaturation; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0014(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Desaturated; + +// Function Engine.KismetMathLibrary.LinearColor_Distance +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_LinearColor_Distance final +{ +public: + struct FLinearColor C1; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor C2; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Distance; + +// Function Engine.KismetMathLibrary.LinearColor_GetLuminance +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_GetLuminance final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_GetLuminance; + +// Function Engine.KismetMathLibrary.LinearColor_GetMax +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_GetMax final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_GetMax; + +// Function Engine.KismetMathLibrary.LinearColor_GetMin +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_GetMin final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_GetMin; + +// Function Engine.KismetMathLibrary.LinearColor_Gray +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Gray final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Gray; + +// Function Engine.KismetMathLibrary.LinearColor_Green +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Green final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Green; + +// Function Engine.KismetMathLibrary.LinearColor_IsNearEqual +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_LinearColor_IsNearEqual final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LinearColor_IsNearEqual; + +// Function Engine.KismetMathLibrary.LinearColor_Quantize +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_Quantize final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Quantize; + +// Function Engine.KismetMathLibrary.LinearColor_QuantizeRound +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_QuantizeRound final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_QuantizeRound; + +// Function Engine.KismetMathLibrary.LinearColor_Red +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Red final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Red; + +// Function Engine.KismetMathLibrary.LinearColor_Set +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_LinearColor_Set final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor InColor; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Set; + +// Function Engine.KismetMathLibrary.LinearColor_SetFromHSV +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_LinearColor_SetFromHSV final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float H; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float S; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetFromHSV; + +// Function Engine.KismetMathLibrary.LinearColor_SetFromPow22 +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_SetFromPow22 final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor InColor; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetFromPow22; + +// Function Engine.KismetMathLibrary.LinearColor_SetFromSRGB +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_SetFromSRGB final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor InSRGB; // 0x0010(0x0004)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetFromSRGB; + +// Function Engine.KismetMathLibrary.LinearColor_SetRandomHue +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_SetRandomHue final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetRandomHue; + +// Function Engine.KismetMathLibrary.LinearColor_SetRGBA +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_LinearColor_SetRGBA final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float R; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float G; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetRGBA; + +// Function Engine.KismetMathLibrary.LinearColor_SetTemperature +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_SetTemperature final +{ +public: + struct FLinearColor InOutColor; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InTemperature; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_SetTemperature; + +// Function Engine.KismetMathLibrary.LinearColor_ToNewOpacity +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_LinearColor_ToNewOpacity final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InOpacity; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0014(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_ToNewOpacity; + +// Function Engine.KismetMathLibrary.LinearColor_ToRGBE +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_LinearColor_ToRGBE final +{ +public: + struct FLinearColor InLinearColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_ToRGBE; + +// Function Engine.KismetMathLibrary.LinearColor_Transparent +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Transparent final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Transparent; + +// Function Engine.KismetMathLibrary.LinearColor_White +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_White final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_White; + +// Function Engine.KismetMathLibrary.LinearColor_Yellow +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_LinearColor_Yellow final +{ +public: + struct FLinearColor ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColor_Yellow; + +// Function Engine.KismetMathLibrary.LinearColorLerp +// 0x0034 (0x0034 - 0x0000) +struct KismetMathLibrary_LinearColorLerp final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0024(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColorLerp; + +// Function Engine.KismetMathLibrary.LinearColorLerpUsingHSV +// 0x0034 (0x0034 - 0x0000) +struct KismetMathLibrary_LinearColorLerpUsingHSV final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0024(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_LinearColorLerpUsingHSV; + +// Function Engine.KismetMathLibrary.LinePlaneIntersection +// 0x0080 (0x0080 - 0x0000) +struct KismetMathLibrary_LinePlaneIntersection final +{ +public: + struct FVector LineStart; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineEnd; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane APlane; // 0x0030(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Intersection; // 0x0058(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0070(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LinePlaneIntersection; + +// Function Engine.KismetMathLibrary.LinePlaneIntersection_OriginNormal +// 0x0088 (0x0088 - 0x0000) +struct KismetMathLibrary_LinePlaneIntersection_OriginNormal final +{ +public: + struct FVector LineStart; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LineEnd; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneOrigin; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneNormal; // 0x0048(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T; // 0x0060(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Intersection; // 0x0068(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0080(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_LinePlaneIntersection_OriginNormal; + +// Function Engine.KismetMathLibrary.log +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_log final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double base; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_log; + +// Function Engine.KismetMathLibrary.Loge +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Loge final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Loge; + +// Function Engine.KismetMathLibrary.MakeBox +// 0x0068 (0x0068 - 0x0000) +struct KismetMathLibrary_MakeBox final +{ +public: + struct FVector Param_min_0; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Param_max_0; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox ReturnValue; // 0x0030(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeBox; + +// Function Engine.KismetMathLibrary.MakeBox2D +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeBox2D final +{ +public: + struct FVector2D Param_min_0; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Param_max_0; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox2D ReturnValue; // 0x0020(0x0028)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeBox2D; + +// Function Engine.KismetMathLibrary.MakeBoxSphereBounds +// 0x0070 (0x0070 - 0x0000) +struct KismetMathLibrary_MakeBoxSphereBounds final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector BoxExtent; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SphereRadius; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBoxSphereBounds ReturnValue; // 0x0038(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeBoxSphereBounds; + +// Function Engine.KismetMathLibrary.MakeBoxWithOrigin +// 0x0068 (0x0068 - 0x0000) +struct KismetMathLibrary_MakeBoxWithOrigin final +{ +public: + struct FVector Origin; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Extent; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox ReturnValue; // 0x0030(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeBoxWithOrigin; + +// Function Engine.KismetMathLibrary.MakeColor +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_MakeColor final +{ +public: + float R; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float G; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float B; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeColor; + +// Function Engine.KismetMathLibrary.MakeDateTime +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_MakeDateTime final +{ +public: + int32 Year; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Month; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Day; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hour; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minute; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Second; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Millisecond; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDateTime ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeDateTime; + +// Function Engine.KismetMathLibrary.MakeFrameRate +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_MakeFrameRate final +{ +public: + int32 Numerator; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Denominator; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameRate ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeFrameRate; + +// Function Engine.KismetMathLibrary.MakePlaneFromPointAndNormal +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_MakePlaneFromPointAndNormal final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal_0; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPlane ReturnValue; // 0x0030(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakePlaneFromPointAndNormal; + +// Function Engine.KismetMathLibrary.MakePulsatingValue +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_MakePulsatingValue final +{ +public: + float InCurrentTime; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPulsesPerSecond; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InPhase; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakePulsatingValue; + +// Function Engine.KismetMathLibrary.MakeQualifiedFrameTime +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_MakeQualifiedFrameTime final +{ +public: + struct FFrameNumber Frame; // 0x0000(0x0004)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameRate FrameRate; // 0x0004(0x0008)(Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SubFrame; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQualifiedFrameTime ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeQualifiedFrameTime; + +// Function Engine.KismetMathLibrary.MakeQuat +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeQuat final +{ +public: + float X; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0010(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeQuat; + +// Function Engine.KismetMathLibrary.MakeRandomStream +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_MakeRandomStream final +{ +public: + int32 InitialSeed; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRandomStream ReturnValue; // 0x0004(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRandomStream; + +// Function Engine.KismetMathLibrary.MakeRelativeTransform +// 0x0120 (0x0120 - 0x0000) +struct KismetMathLibrary_MakeRelativeTransform final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform RelativeTo; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x00C0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRelativeTransform; + +// Function Engine.KismetMathLibrary.MakeRotationFromAxes +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_MakeRotationFromAxes final +{ +public: + struct FVector Forward; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Right; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Up; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotationFromAxes; + +// Function Engine.KismetMathLibrary.MakeRotator +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_MakeRotator final +{ +public: + float Roll; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Yaw; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotator; + +// Function Engine.KismetMathLibrary.MakeRotFromX +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeRotFromX final +{ +public: + struct FVector X; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromX; + +// Function Engine.KismetMathLibrary.MakeRotFromXY +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromXY final +{ +public: + struct FVector X; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromXY; + +// Function Engine.KismetMathLibrary.MakeRotFromXZ +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromXZ final +{ +public: + struct FVector X; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromXZ; + +// Function Engine.KismetMathLibrary.MakeRotFromY +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeRotFromY final +{ +public: + struct FVector Y; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromY; + +// Function Engine.KismetMathLibrary.MakeRotFromYX +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromYX final +{ +public: + struct FVector Y; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector X; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromYX; + +// Function Engine.KismetMathLibrary.MakeRotFromYZ +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromYZ final +{ +public: + struct FVector Y; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromYZ; + +// Function Engine.KismetMathLibrary.MakeRotFromZ +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeRotFromZ final +{ +public: + struct FVector Z; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromZ; + +// Function Engine.KismetMathLibrary.MakeRotFromZX +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromZX final +{ +public: + struct FVector Z; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector X; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromZX; + +// Function Engine.KismetMathLibrary.MakeRotFromZY +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MakeRotFromZY final +{ +public: + struct FVector Z; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeRotFromZY; + +// Function Engine.KismetMathLibrary.MakeTimespan +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_MakeTimespan final +{ +public: + int32 Days; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hours; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minutes; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seconds; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Milliseconds; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeTimespan; + +// Function Engine.KismetMathLibrary.MakeTimespan2 +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_MakeTimespan2 final +{ +public: + int32 Days; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Hours; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Minutes; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Seconds; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FractionNano; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeTimespan2; + +// Function Engine.KismetMathLibrary.MakeTransform +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_MakeTransform final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x0050(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeTransform; + +// Function Engine.KismetMathLibrary.MakeVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeVector final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector; + +// Function Engine.KismetMathLibrary.MakeVector2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_MakeVector2D final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector2D; + +// Function Engine.KismetMathLibrary.MakeVector4 +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_MakeVector4 final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector4; + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeVector_NetQuantize final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector_NetQuantize; + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize10 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeVector_NetQuantize10 final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize10 ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector_NetQuantize10; + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantize100 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeVector_NetQuantize100 final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector_NetQuantize100; + +// Function Engine.KismetMathLibrary.MakeVector_NetQuantizeNormal +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MakeVector_NetQuantizeNormal final +{ +public: + double X; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantizeNormal ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MakeVector_NetQuantizeNormal; + +// Function Engine.KismetMathLibrary.MapRangeClamped +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MapRangeClamped final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InRangeA; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InRangeB; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double OutRangeA; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double OutRangeB; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MapRangeClamped; + +// Function Engine.KismetMathLibrary.MapRangeUnclamped +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_MapRangeUnclamped final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InRangeA; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InRangeB; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double OutRangeA; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double OutRangeB; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MapRangeUnclamped; + +// Function Engine.KismetMathLibrary.Matrix_ApplyScale +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_Matrix_ApplyScale final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Scale; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x0090(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_ApplyScale; + +// Function Engine.KismetMathLibrary.Matrix_ConcatenateTranslation +// 0x0120 (0x0120 - 0x0000) +struct KismetMathLibrary_Matrix_ConcatenateTranslation final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Translation; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x00A0(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_ConcatenateTranslation; + +// Function Engine.KismetMathLibrary.Matrix_ContainsNaN +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_Matrix_ContainsNaN final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0080(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0xF]; // 0x0081(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_ContainsNaN; + +// Function Engine.KismetMathLibrary.Matrix_GetColumn +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetColumn final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EMatrixColumns Column; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0088(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetColumn; + +// Function Engine.KismetMathLibrary.Matrix_GetDeterminant +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_Matrix_GetDeterminant final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0080(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetDeterminant; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumBottomPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumBottomPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumBottomPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumFarPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumFarPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumFarPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumLeftPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumLeftPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumLeftPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumNearPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumNearPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumNearPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumRightPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumRightPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumRightPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetFrustumTopPlane +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_GetFrustumTopPlane final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FPlane OutPlane; // 0x0080(0x0020)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00A0(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetFrustumTopPlane; + +// Function Engine.KismetMathLibrary.Matrix_GetInverse +// 0x0100 (0x0100 - 0x0000) +struct KismetMathLibrary_Matrix_GetInverse final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0080(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetInverse; + +// Function Engine.KismetMathLibrary.Matrix_GetMatrixWithoutScale +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_Matrix_GetMatrixWithoutScale final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Tolerance; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x0090(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetMatrixWithoutScale; + +// Function Engine.KismetMathLibrary.Matrix_GetMaximumAxisScale +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_Matrix_GetMaximumAxisScale final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0080(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetMaximumAxisScale; + +// Function Engine.KismetMathLibrary.Matrix_GetOrigin +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetOrigin final +{ +public: + struct FMatrix InMatrix; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0080(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetOrigin; + +// Function Engine.KismetMathLibrary.Matrix_GetRotator +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetRotator final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0080(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetRotator; + +// Function Engine.KismetMathLibrary.Matrix_GetRotDeterminant +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_Matrix_GetRotDeterminant final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0080(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetRotDeterminant; + +// Function Engine.KismetMathLibrary.Matrix_GetScaledAxes +// 0x00D0 (0x00D0 - 0x0000) +struct KismetMathLibrary_Matrix_GetScaledAxes final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector X; // 0x0080(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0098(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x00B0(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C8[0x8]; // 0x00C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetScaledAxes; + +// Function Engine.KismetMathLibrary.Matrix_GetScaledAxis +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetScaledAxis final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EAxis Axis; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0088(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetScaledAxis; + +// Function Engine.KismetMathLibrary.Matrix_GetScaleVector +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetScaleVector final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Tolerance; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0088(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetScaleVector; + +// Function Engine.KismetMathLibrary.Matrix_GetTransposeAdjoint +// 0x0100 (0x0100 - 0x0000) +struct KismetMathLibrary_Matrix_GetTransposeAdjoint final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0080(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetTransposeAdjoint; + +// Function Engine.KismetMathLibrary.Matrix_GetTransposed +// 0x0100 (0x0100 - 0x0000) +struct KismetMathLibrary_Matrix_GetTransposed final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0080(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetTransposed; + +// Function Engine.KismetMathLibrary.Matrix_GetUnitAxes +// 0x00D0 (0x00D0 - 0x0000) +struct KismetMathLibrary_Matrix_GetUnitAxes final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector X; // 0x0080(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Y; // 0x0098(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Z; // 0x00B0(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C8[0x8]; // 0x00C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_GetUnitAxes; + +// Function Engine.KismetMathLibrary.Matrix_GetUnitAxis +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_GetUnitAxis final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EAxis Axis; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0088(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_GetUnitAxis; + +// Function Engine.KismetMathLibrary.Matrix_Identity +// 0x0080 (0x0080 - 0x0000) +struct KismetMathLibrary_Matrix_Identity final +{ +public: + struct FMatrix ReturnValue; // 0x0000(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_Identity; + +// Function Engine.KismetMathLibrary.Matrix_InverseTransformPosition +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_InverseTransformPosition final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector V; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0098(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_InverseTransformPosition; + +// Function Engine.KismetMathLibrary.Matrix_InverseTransformVector +// 0x00B0 (0x00B0 - 0x0000) +struct KismetMathLibrary_Matrix_InverseTransformVector final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector V; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0098(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_InverseTransformVector; + +// Function Engine.KismetMathLibrary.Matrix_Mirror +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_Matrix_Mirror final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EAxis MirrorAxis; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAxis FlipAxis; // 0x0081(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_82[0xE]; // 0x0082(0x000E)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x0090(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_Mirror; + +// Function Engine.KismetMathLibrary.Matrix_RemoveScaling +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_Matrix_RemoveScaling final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Tolerance; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0xC]; // 0x0084(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_RemoveScaling; + +// Function Engine.KismetMathLibrary.Matrix_RemoveTranslation +// 0x0100 (0x0100 - 0x0000) +struct KismetMathLibrary_Matrix_RemoveTranslation final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0080(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_RemoveTranslation; + +// Function Engine.KismetMathLibrary.Matrix_ScaleTranslation +// 0x0120 (0x0120 - 0x0000) +struct KismetMathLibrary_Matrix_ScaleTranslation final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale3D; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x00A0(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_ScaleTranslation; + +// Function Engine.KismetMathLibrary.Matrix_SetAxis +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_SetAxis final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EAxis Axis; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector AxisVector; // 0x0088(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_SetAxis; + +// Function Engine.KismetMathLibrary.Matrix_SetColumn +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_SetColumn final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EMatrixColumns Column; // 0x0080(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Value; // 0x0088(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_SetColumn; + +// Function Engine.KismetMathLibrary.Matrix_SetOrigin +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_SetOrigin final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector NewOrigin; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Matrix_SetOrigin; + +// Function Engine.KismetMathLibrary.Matrix_ToQuat +// 0x00A0 (0x00A0 - 0x0000) +struct KismetMathLibrary_Matrix_ToQuat final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0080(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_ToQuat; + +// Function Engine.KismetMathLibrary.Matrix_TransformPosition +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_Matrix_TransformPosition final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector V; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 ReturnValue; // 0x00A0(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_TransformPosition; + +// Function Engine.KismetMathLibrary.Matrix_TransformVector +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_Matrix_TransformVector final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector V; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_98[0x8]; // 0x0098(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 ReturnValue; // 0x00A0(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_TransformVector; + +// Function Engine.KismetMathLibrary.Matrix_TransformVector4 +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_Matrix_TransformVector4 final +{ +public: + struct FMatrix M; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector4 V; // 0x0080(0x0020)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x00A0(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Matrix_TransformVector4; + +// Function Engine.KismetMathLibrary.max +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_max_0 final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_max_0; + +// Function Engine.KismetMathLibrary.MaxInt64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MaxInt64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MaxInt64; + +// Function Engine.KismetMathLibrary.MaxOfByteArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MaxOfByteArray final +{ +public: + TArray ByteArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMaxValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 MaxValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_MaxOfByteArray; + +// Function Engine.KismetMathLibrary.MaxOfFloatArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MaxOfFloatArray final +{ +public: + TArray FloatArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMaxValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MaxOfFloatArray; + +// Function Engine.KismetMathLibrary.MaxOfIntArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MaxOfIntArray final +{ +public: + TArray IntArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMaxValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MaxOfIntArray; + +// Function Engine.KismetMathLibrary.MedianOfIntArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MedianOfIntArray final +{ +public: + TArray IntArray; // 0x0000(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) + float MedianValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_MedianOfIntArray; + +// Function Engine.KismetMathLibrary.min +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_min_0 final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_min_0; + +// Function Engine.KismetMathLibrary.MinAreaRectangle +// 0x0070 (0x0070 - 0x0000) +struct KismetMathLibrary_MinAreaRectangle final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray InPoints; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector SampleSurfaceNormal; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutRectCenter; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutRectRotation; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float OutRectLengthX; // 0x0060(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutRectLengthY; // 0x0064(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDebugDraw; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_MinAreaRectangle; + +// Function Engine.KismetMathLibrary.MinInt64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MinInt64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MinInt64; + +// Function Engine.KismetMathLibrary.MinOfByteArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MinOfByteArray final +{ +public: + TArray ByteArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMinValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 MinValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_MinOfByteArray; + +// Function Engine.KismetMathLibrary.MinOfFloatArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MinOfFloatArray final +{ +public: + TArray FloatArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMinValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MinOfFloatArray; + +// Function Engine.KismetMathLibrary.MinOfIntArray +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MinOfIntArray final +{ +public: + TArray IntArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + int32 IndexOfMinValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MinOfIntArray; + +// Function Engine.KismetMathLibrary.MirrorVectorByNormal +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_MirrorVectorByNormal final +{ +public: + struct FVector InVect; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InNormal; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MirrorVectorByNormal; + +// Function Engine.KismetMathLibrary.Multiply_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Multiply_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_ByteByte; + +// Function Engine.KismetMathLibrary.Multiply_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Multiply_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_DoubleDouble; + +// Function Engine.KismetMathLibrary.Multiply_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Multiply_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_Int64Int64; + +// Function Engine.KismetMathLibrary.Multiply_IntFloat +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Multiply_IntFloat final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_IntFloat; + +// Function Engine.KismetMathLibrary.Multiply_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Multiply_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_IntInt; + +// Function Engine.KismetMathLibrary.Multiply_IntPointInt +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Multiply_IntPointInt final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_IntPointInt; + +// Function Engine.KismetMathLibrary.Multiply_IntPointIntPoint +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Multiply_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.Multiply_LinearColorFloat +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_Multiply_LinearColorFloat final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float B; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0014(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_LinearColorFloat; + +// Function Engine.KismetMathLibrary.Multiply_LinearColorLinearColor +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Multiply_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.Multiply_MatrixFloat +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_Multiply_MatrixFloat final +{ +public: + struct FMatrix A; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + double B; // 0x0080(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMatrix ReturnValue; // 0x0090(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_MatrixFloat; + +// Function Engine.KismetMathLibrary.Multiply_MatrixMatrix +// 0x0180 (0x0180 - 0x0000) +struct KismetMathLibrary_Multiply_MatrixMatrix final +{ +public: + struct FMatrix A; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix B; // 0x0080(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0100(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_MatrixMatrix; + +// Function Engine.KismetMathLibrary.Multiply_QuatQuat +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Multiply_QuatQuat final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_QuatQuat; + +// Function Engine.KismetMathLibrary.Multiply_RotatorFloat +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Multiply_RotatorFloat final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_RotatorFloat; + +// Function Engine.KismetMathLibrary.Multiply_RotatorInt +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Multiply_RotatorInt final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + int32 B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_RotatorInt; + +// Function Engine.KismetMathLibrary.Multiply_TimespanFloat +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Multiply_TimespanFloat final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scalar; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTimespan ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_TimespanFloat; + +// Function Engine.KismetMathLibrary.Multiply_Vector2DFloat +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Multiply_Vector2DFloat final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_Vector2DFloat; + +// Function Engine.KismetMathLibrary.Multiply_Vector2DVector2D +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Multiply_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.Multiply_Vector4Vector4 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Multiply_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_Vector4Vector4; + +// Function Engine.KismetMathLibrary.Multiply_VectorFloat +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Multiply_VectorFloat final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_VectorFloat; + +// Function Engine.KismetMathLibrary.Multiply_VectorInt +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Multiply_VectorInt final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_VectorInt; + +// Function Engine.KismetMathLibrary.Multiply_VectorVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Multiply_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Multiply_VectorVector; + +// Function Engine.KismetMathLibrary.MultiplyByPi +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_MultiplyByPi final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MultiplyByPi; + +// Function Engine.KismetMathLibrary.MultiplyMultiply_FloatFloat +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_MultiplyMultiply_FloatFloat final +{ +public: + double base; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double exp; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_MultiplyMultiply_FloatFloat; + +// Function Engine.KismetMathLibrary.NearlyEqual_FloatFloat +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_NearlyEqual_FloatFloat final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ErrorTolerance; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NearlyEqual_FloatFloat; + +// Function Engine.KismetMathLibrary.NearlyEqual_TransformTransform +// 0x00D0 (0x00D0 - 0x0000) +struct KismetMathLibrary_NearlyEqual_TransformTransform final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocationTolerance; // 0x00C0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RotationTolerance; // 0x00C4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale3DTolerance; // 0x00C8(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x00CC(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CD[0x3]; // 0x00CD(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NearlyEqual_TransformTransform; + +// Function Engine.KismetMathLibrary.Negated2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Negated2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Negated2D; + +// Function Engine.KismetMathLibrary.NegateRotator +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_NegateRotator final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NegateRotator; + +// Function Engine.KismetMathLibrary.NegateVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_NegateVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NegateVector; + +// Function Engine.KismetMathLibrary.Normal +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Normal final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Normal; + +// Function Engine.KismetMathLibrary.Normal2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Normal2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Normal2D; + +// Function Engine.KismetMathLibrary.Normalize2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Normalize2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Normalize2D; + +// Function Engine.KismetMathLibrary.NormalizeAxis +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_NormalizeAxis final +{ +public: + float Angle; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NormalizeAxis; + +// Function Engine.KismetMathLibrary.NormalizedDeltaRotator +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_NormalizedDeltaRotator final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NormalizedDeltaRotator; + +// Function Engine.KismetMathLibrary.NormalizeToRange +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_NormalizeToRange final +{ +public: + double Value; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double RangeMin; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double RangeMax; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NormalizeToRange; + +// Function Engine.KismetMathLibrary.NormalSafe2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_NormalSafe2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NormalSafe2D; + +// Function Engine.KismetMathLibrary.Not_Int +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Not_Int final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Not_Int; + +// Function Engine.KismetMathLibrary.Not_Int64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Not_Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Not_Int64; + +// Function Engine.KismetMathLibrary.Not_PreBool +// 0x0002 (0x0002 - 0x0000) +struct KismetMathLibrary_Not_PreBool final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0001(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Not_PreBool; + +// Function Engine.KismetMathLibrary.NotEqual_BoolBool +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_NotEqual_BoolBool final +{ +public: + bool A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NotEqual_BoolBool; + +// Function Engine.KismetMathLibrary.NotEqual_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_NotEqual_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_NotEqual_ByteByte; + +// Function Engine.KismetMathLibrary.NotEqual_ClassClass +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_ClassClass final +{ +public: + class UClass* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_ClassClass; + +// Function Engine.KismetMathLibrary.NotEqual_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.NotEqual_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_DoubleDouble; + +// Function Engine.KismetMathLibrary.NotEqual_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_Int64Int64; + +// Function Engine.KismetMathLibrary.NotEqual_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_NotEqual_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_IntInt; + +// Function Engine.KismetMathLibrary.NotEqual_IntPointIntPoint +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_NotEqual_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.NotEqual_LinearColorLinearColor +// 0x0024 (0x0024 - 0x0000) +struct KismetMathLibrary_NotEqual_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.NotEqual_MatrixMatrix +// 0x0110 (0x0110 - 0x0000) +struct KismetMathLibrary_NotEqual_MatrixMatrix final +{ +public: + struct FMatrix A; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMatrix B; // 0x0080(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Tolerance; // 0x0100(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0104(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_105[0xB]; // 0x0105(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_MatrixMatrix; + +// Function Engine.KismetMathLibrary.NotEqual_NameName +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_NotEqual_NameName final +{ +public: + class FName A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_NameName; + +// Function Engine.KismetMathLibrary.NotEqual_ObjectObject +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_ObjectObject final +{ +public: + class UObject* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_ObjectObject; + +// Function Engine.KismetMathLibrary.NotEqual_QuatQuat +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_NotEqual_QuatQuat final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0044(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0xB]; // 0x0045(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_QuatQuat; + +// Function Engine.KismetMathLibrary.NotEqual_RotatorRotator +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_NotEqual_RotatorRotator final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0034(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_RotatorRotator; + +// Function Engine.KismetMathLibrary.NotEqual_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_NotEqual_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_TimespanTimespan; + +// Function Engine.KismetMathLibrary.NotEqual_Vector2DVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_NotEqual_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.NotEqual_Vector4Vector4 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_NotEqual_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0044(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0xB]; // 0x0045(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_Vector4Vector4; + +// Function Engine.KismetMathLibrary.NotEqual_VectorVector +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_NotEqual_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorTolerance; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0034(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqual_VectorVector; + +// Function Engine.KismetMathLibrary.NotEqualExactly_Vector2DVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_NotEqualExactly_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqualExactly_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.NotEqualExactly_Vector4Vector4 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_NotEqualExactly_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0xF]; // 0x0041(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqualExactly_Vector4Vector4; + +// Function Engine.KismetMathLibrary.NotEqualExactly_VectorVector +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_NotEqualExactly_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_NotEqualExactly_VectorVector; + +// Function Engine.KismetMathLibrary.Now +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Now final +{ +public: + struct FDateTime ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Now; + +// Function Engine.KismetMathLibrary.Or_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Or_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Or_Int64Int64; + +// Function Engine.KismetMathLibrary.Or_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Or_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Or_IntInt; + +// Function Engine.KismetMathLibrary.Percent_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Percent_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Percent_ByteByte; + +// Function Engine.KismetMathLibrary.Percent_FloatFloat +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Percent_FloatFloat final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Percent_FloatFloat; + +// Function Engine.KismetMathLibrary.Percent_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Percent_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Percent_Int64Int64; + +// Function Engine.KismetMathLibrary.Percent_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Percent_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Percent_IntInt; + +// Function Engine.KismetMathLibrary.PerlinNoise1D +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_PerlinNoise1D final +{ +public: + float Value; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_PerlinNoise1D; + +// Function Engine.KismetMathLibrary.PointsAreCoplanar +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_PointsAreCoplanar final +{ +public: + TArray Points; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + float Tolerance; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0014(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_PointsAreCoplanar; + +// Function Engine.KismetMathLibrary.ProjectPointOnToPlane +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_ProjectPointOnToPlane final +{ +public: + struct FVector Point; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneBase; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneNormal; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ProjectPointOnToPlane; + +// Function Engine.KismetMathLibrary.ProjectVectorOnToPlane +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_ProjectVectorOnToPlane final +{ +public: + struct FVector V; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PlaneNormal; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ProjectVectorOnToPlane; + +// Function Engine.KismetMathLibrary.ProjectVectorOnToVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_ProjectVectorOnToVector final +{ +public: + struct FVector V; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ProjectVectorOnToVector; + +// Function Engine.KismetMathLibrary.Quat_AngularDistance +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_AngularDistance final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0040(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0xC]; // 0x0044(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_AngularDistance; + +// Function Engine.KismetMathLibrary.Quat_EnforceShortestArcWith +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_EnforceShortestArcWith final +{ +public: + struct FQuat A; // 0x0000(0x0020)(Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_EnforceShortestArcWith; + +// Function Engine.KismetMathLibrary.Quat_Euler +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_Euler final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_Euler; + +// Function Engine.KismetMathLibrary.Quat_Exp +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_Exp final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Exp; + +// Function Engine.KismetMathLibrary.Quat_FindBetweenNormals +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_FindBetweenNormals final +{ +public: + struct FVector StartNormal; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndNormal; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0030(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_FindBetweenNormals; + +// Function Engine.KismetMathLibrary.Quat_FindBetweenVectors +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_FindBetweenVectors final +{ +public: + struct FVector Start; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0030(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_FindBetweenVectors; + +// Function Engine.KismetMathLibrary.Quat_GetAngle +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_GetAngle final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_GetAngle; + +// Function Engine.KismetMathLibrary.Quat_GetAxisX +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_GetAxisX final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_GetAxisX; + +// Function Engine.KismetMathLibrary.Quat_GetAxisY +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_GetAxisY final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_GetAxisY; + +// Function Engine.KismetMathLibrary.Quat_GetAxisZ +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_GetAxisZ final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_GetAxisZ; + +// Function Engine.KismetMathLibrary.Quat_GetRotationAxis +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_GetRotationAxis final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_GetRotationAxis; + +// Function Engine.KismetMathLibrary.Quat_Identity +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Quat_Identity final +{ +public: + struct FQuat ReturnValue; // 0x0000(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Identity; + +// Function Engine.KismetMathLibrary.Quat_Inversed +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_Inversed final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Inversed; + +// Function Engine.KismetMathLibrary.Quat_IsFinite +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_IsFinite final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_IsFinite; + +// Function Engine.KismetMathLibrary.Quat_IsIdentity +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_IsIdentity final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0xB]; // 0x0025(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_IsIdentity; + +// Function Engine.KismetMathLibrary.Quat_IsNonFinite +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_IsNonFinite final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_IsNonFinite; + +// Function Engine.KismetMathLibrary.Quat_IsNormalized +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_IsNormalized final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_IsNormalized; + +// Function Engine.KismetMathLibrary.Quat_Log +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_Log final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Log; + +// Function Engine.KismetMathLibrary.Quat_MakeFromEuler +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_MakeFromEuler final +{ +public: + struct FVector Euler; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_MakeFromEuler; + +// Function Engine.KismetMathLibrary.Quat_Normalize +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_Normalize final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_Normalize; + +// Function Engine.KismetMathLibrary.Quat_Normalized +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_Normalized final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0030(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Normalized; + +// Function Engine.KismetMathLibrary.Quat_RotateVector +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_RotateVector final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector V; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_RotateVector; + +// Function Engine.KismetMathLibrary.Quat_Rotator +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_Rotator final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_Rotator; + +// Function Engine.KismetMathLibrary.Quat_SetComponents +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_SetComponents final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float X; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float W; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_SetComponents; + +// Function Engine.KismetMathLibrary.Quat_SetFromEuler +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_SetFromEuler final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Euler; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_SetFromEuler; + +// Function Engine.KismetMathLibrary.Quat_Size +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_Size final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_Size; + +// Function Engine.KismetMathLibrary.Quat_SizeSquared +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Quat_SizeSquared final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_SizeSquared; + +// Function Engine.KismetMathLibrary.Quat_Slerp +// 0x0070 (0x0070 - 0x0000) +struct KismetMathLibrary_Quat_Slerp final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0040(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x0050(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_Slerp; + +// Function Engine.KismetMathLibrary.Quat_UnrotateVector +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Quat_UnrotateVector final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector V; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Quat_UnrotateVector; + +// Function Engine.KismetMathLibrary.Quat_VectorForward +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_VectorForward final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_VectorForward; + +// Function Engine.KismetMathLibrary.Quat_VectorRight +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_VectorRight final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_VectorRight; + +// Function Engine.KismetMathLibrary.Quat_VectorUp +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Quat_VectorUp final +{ +public: + struct FQuat Q; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Quat_VectorUp; + +// Function Engine.KismetMathLibrary.QuaternionSpringInterp +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_QuaternionSpringInterp final +{ +public: + struct FQuat Current; // 0x0000(0x0020)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat Target; // 0x0020(0x0020)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuaternionSpringState SpringState; // 0x0040(0x0040)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float Stiffness; // 0x0080(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CriticalDampingFactor; // 0x0084(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0088(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x008C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetVelocityAmount; // 0x0090(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitializeFromTarget; // 0x0094(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_95[0xB]; // 0x0095(0x000B)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat ReturnValue; // 0x00A0(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_QuaternionSpringInterp; + +// Function Engine.KismetMathLibrary.RadiansToDegrees +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_RadiansToDegrees final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RadiansToDegrees; + +// Function Engine.KismetMathLibrary.RandomBool +// 0x0001 (0x0001 - 0x0000) +struct KismetMathLibrary_RandomBool final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomBool; + +// Function Engine.KismetMathLibrary.RandomBoolFromStream +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_RandomBoolFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_RandomBoolFromStream; + +// Function Engine.KismetMathLibrary.RandomBoolWithWeight +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_RandomBoolWithWeight final +{ +public: + float Weight; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0004(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_RandomBoolWithWeight; + +// Function Engine.KismetMathLibrary.RandomBoolWithWeightFromStream +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_RandomBoolWithWeightFromStream final +{ +public: + struct FRandomStream RandomStream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float Weight; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x000C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_RandomBoolWithWeightFromStream; + +// Function Engine.KismetMathLibrary.RandomFloat +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_RandomFloat final +{ +public: + double ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomFloat; + +// Function Engine.KismetMathLibrary.RandomFloatFromStream +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_RandomFloatFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomFloatFromStream; + +// Function Engine.KismetMathLibrary.RandomFloatInRange +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_RandomFloatInRange final +{ +public: + double min_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double max_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomFloatInRange; + +// Function Engine.KismetMathLibrary.RandomFloatInRangeFromStream +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_RandomFloatInRangeFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float min_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float max_0; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomFloatInRangeFromStream; + +// Function Engine.KismetMathLibrary.RandomInteger +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_RandomInteger final +{ +public: + int32 max_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomInteger; + +// Function Engine.KismetMathLibrary.RandomInteger64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_RandomInteger64 final +{ +public: + int64 max_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomInteger64; + +// Function Engine.KismetMathLibrary.RandomInteger64InRange +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_RandomInteger64InRange final +{ +public: + int64 min_0; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 max_0; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomInteger64InRange; + +// Function Engine.KismetMathLibrary.RandomIntegerFromStream +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_RandomIntegerFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + int32 max_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomIntegerFromStream; + +// Function Engine.KismetMathLibrary.RandomIntegerInRange +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_RandomIntegerInRange final +{ +public: + int32 min_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 max_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomIntegerInRange; + +// Function Engine.KismetMathLibrary.RandomIntegerInRangeFromStream +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_RandomIntegerInRangeFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + int32 min_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 max_0; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomIntegerInRangeFromStream; + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBox +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_RandomPointInBoundingBox final +{ +public: + struct FVector Center; // 0x0000(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0018(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomPointInBoundingBox; + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBox_Box +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RandomPointInBoundingBox_Box final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomPointInBoundingBox_Box; + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBoxFromStream +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RandomPointInBoundingBoxFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector HalfSize; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomPointInBoundingBoxFromStream; + +// Function Engine.KismetMathLibrary.RandomPointInBoundingBoxFromStream_Box +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FBox Box; // 0x0008(0x0038)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomPointInBoundingBoxFromStream_Box; + +// Function Engine.KismetMathLibrary.RandomRotator +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_RandomRotator final +{ +public: + bool bRoll; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomRotator; + +// Function Engine.KismetMathLibrary.RandomRotatorFromStream +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_RandomRotatorFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + bool bRoll; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomRotatorFromStream; + +// Function Engine.KismetMathLibrary.RandomUnitVector +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_RandomUnitVector final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVector; + +// Function Engine.KismetMathLibrary.RandomUnitVectorFromStream +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0008(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorFromStream; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInDegrees +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInConeInDegrees final +{ +public: + struct FVector ConeDir; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeHalfAngleInDegrees; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInConeInDegrees; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInDegreesFromStream +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ConeDir; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeHalfAngleInDegrees; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInConeInDegreesFromStream; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInRadians +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInConeInRadians final +{ +public: + struct FVector ConeDir; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeHalfAngleInRadians; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInConeInRadians; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInConeInRadiansFromStream +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ConeDir; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeHalfAngleInRadians; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInConeInRadiansFromStream; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInDegrees +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees final +{ +public: + struct FVector ConeDir; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxYawInDegrees; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPitchInDegrees; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegrees; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInDegreesFromStream +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ConeDir; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxYawInDegrees; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPitchInDegrees; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInEllipticalConeInDegreesFromStream; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInRadians +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians final +{ +public: + struct FVector ConeDir; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxYawInRadians; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPitchInRadians; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadians; + +// Function Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInRadiansFromStream +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector ConeDir; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxYawInRadians; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxPitchInRadians; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RandomUnitVectorInEllipticalConeInRadiansFromStream; + +// Function Engine.KismetMathLibrary.REase +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_REase final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Alpha; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShortestPath; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEasingFunc EasingFunc; // 0x0035(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_36[0x2]; // 0x0036(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendExp; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Steps; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_REase; + +// Function Engine.KismetMathLibrary.ResetFloatSpringState +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_ResetFloatSpringState final +{ +public: + struct FFloatSpringState SpringState; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ResetFloatSpringState; + +// Function Engine.KismetMathLibrary.ResetQuaternionSpringState +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_ResetQuaternionSpringState final +{ +public: + struct FQuaternionSpringState SpringState; // 0x0000(0x0040)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ResetQuaternionSpringState; + +// Function Engine.KismetMathLibrary.ResetRandomStream +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_ResetRandomStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ResetRandomStream; + +// Function Engine.KismetMathLibrary.ResetVectorSpringState +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_ResetVectorSpringState final +{ +public: + struct FVectorSpringState SpringState; // 0x0000(0x0038)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ResetVectorSpringState; + +// Function Engine.KismetMathLibrary.RGBLinearToHSV +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_RGBLinearToHSV final +{ +public: + struct FLinearColor RGB; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RGBLinearToHSV; + +// Function Engine.KismetMathLibrary.RGBToHSV +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_RGBToHSV final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float H; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float S; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float A; // 0x001C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RGBToHSV; + +// Function Engine.KismetMathLibrary.RGBToHSV_Vector +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_RGBToHSV_Vector final +{ +public: + struct FLinearColor RGB; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor HSV; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RGBToHSV_Vector; + +// Function Engine.KismetMathLibrary.RInterpTo +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RInterpTo final +{ +public: + struct FRotator Current; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RInterpTo; + +// Function Engine.KismetMathLibrary.RInterpTo_Constant +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RInterpTo_Constant final +{ +public: + struct FRotator Current; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RInterpTo_Constant; + +// Function Engine.KismetMathLibrary.RLerp +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RLerp final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Alpha; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShortestPath; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RLerp; + +// Function Engine.KismetMathLibrary.RotateAngleAxis +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_RotateAngleAxis final +{ +public: + struct FVector InVect; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleDeg; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Axis; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RotateAngleAxis; + +// Function Engine.KismetMathLibrary.RotatorFromAxisAndAngle +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_RotatorFromAxisAndAngle final +{ +public: + struct FVector Axis; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Angle; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_RotatorFromAxisAndAngle; + +// Function Engine.KismetMathLibrary.round +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_round final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_round; + +// Function Engine.KismetMathLibrary.Round64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Round64 final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Round64; + +// Function Engine.KismetMathLibrary.SafeDivide +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_SafeDivide final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SafeDivide; + +// Function Engine.KismetMathLibrary.SeedRandomStream +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_SeedRandomStream final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SeedRandomStream; + +// Function Engine.KismetMathLibrary.SelectClass +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_SelectClass final +{ +public: + class UClass* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UClass* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSelectA; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UClass* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectClass; + +// Function Engine.KismetMathLibrary.SelectColor +// 0x0034 (0x0034 - 0x0000) +struct KismetMathLibrary_SelectColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ReturnValue; // 0x0024(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectColor; + +// Function Engine.KismetMathLibrary.SelectFloat +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_SelectFloat final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectFloat; + +// Function Engine.KismetMathLibrary.SelectInt +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_SelectInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectInt; + +// Function Engine.KismetMathLibrary.SelectName +// 0x001C (0x001C - 0x0000) +struct KismetMathLibrary_SelectName final +{ +public: + class FName A; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName B; // 0x0008(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ReturnValue; // 0x0014(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectName; + +// Function Engine.KismetMathLibrary.SelectObject +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_SelectObject final +{ +public: + class UObject* A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSelectA; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectObject; + +// Function Engine.KismetMathLibrary.SelectRotator +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_SelectRotator final +{ +public: + struct FRotator A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bPickA; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectRotator; + +// Function Engine.KismetMathLibrary.SelectString +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_SelectString final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectString; + +// Function Engine.KismetMathLibrary.SelectText +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_SelectText final +{ +public: + class FText A; // 0x0000(0x0010)(ConstParm, Parm, NativeAccessSpecifierPublic) + class FText B; // 0x0010(0x0010)(ConstParm, Parm, NativeAccessSpecifierPublic) + bool bPickA; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectText; + +// Function Engine.KismetMathLibrary.SelectTransform +// 0x0130 (0x0130 - 0x0000) +struct KismetMathLibrary_SelectTransform final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x00C0(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C1[0xF]; // 0x00C1(0x000F)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x00D0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectTransform; + +// Function Engine.KismetMathLibrary.SelectVector +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_SelectVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPickA; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SelectVector; + +// Function Engine.KismetMathLibrary.Set2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Set2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Set2D; + +// Function Engine.KismetMathLibrary.SetFloatSpringStateVelocity +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_SetFloatSpringStateVelocity final +{ +public: + struct FFloatSpringState SpringState; // 0x0000(0x000C)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float Velocity; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SetFloatSpringStateVelocity; + +// Function Engine.KismetMathLibrary.SetQuaternionSpringStateAngularVelocity +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_SetQuaternionSpringStateAngularVelocity final +{ +public: + struct FQuaternionSpringState SpringState; // 0x0000(0x0040)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0040(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_SetQuaternionSpringStateAngularVelocity; + +// Function Engine.KismetMathLibrary.SetRandomStreamSeed +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_SetRandomStreamSeed final +{ +public: + struct FRandomStream Stream; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + int32 NewSeed; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SetRandomStreamSeed; + +// Function Engine.KismetMathLibrary.SetVectorSpringStateVelocity +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_SetVectorSpringStateVelocity final +{ +public: + struct FVectorSpringState SpringState; // 0x0000(0x0038)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Velocity; // 0x0038(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SetVectorSpringStateVelocity; + +// Function Engine.KismetMathLibrary.SignOfFloat +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_SignOfFloat final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SignOfFloat; + +// Function Engine.KismetMathLibrary.SignOfInteger +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_SignOfInteger final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SignOfInteger; + +// Function Engine.KismetMathLibrary.SignOfInteger64 +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_SignOfInteger64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_SignOfInteger64; + +// Function Engine.KismetMathLibrary.sin +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_sin final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_sin; + +// Function Engine.KismetMathLibrary.Spherical2DToUnitCartesian +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Spherical2DToUnitCartesian final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Spherical2DToUnitCartesian; + +// Function Engine.KismetMathLibrary.sqrt +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_sqrt final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_sqrt; + +// Function Engine.KismetMathLibrary.Square +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Square final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Square; + +// Function Engine.KismetMathLibrary.Subtract_ByteByte +// 0x0003 (0x0003 - 0x0000) +struct KismetMathLibrary_Subtract_ByteByte final +{ +public: + uint8 A; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 B; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ReturnValue; // 0x0002(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_ByteByte; + +// Function Engine.KismetMathLibrary.Subtract_DateTimeDateTime +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_DateTimeDateTime final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_DateTimeDateTime; + +// Function Engine.KismetMathLibrary.Subtract_DateTimeTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_DateTimeTimespan final +{ +public: + struct FDateTime A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDateTime ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_DateTimeTimespan; + +// Function Engine.KismetMathLibrary.Subtract_DoubleDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_DoubleDouble final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_DoubleDouble; + +// Function Engine.KismetMathLibrary.Subtract_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_Int64Int64; + +// Function Engine.KismetMathLibrary.Subtract_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Subtract_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_IntInt; + +// Function Engine.KismetMathLibrary.Subtract_IntPointInt +// 0x0014 (0x0014 - 0x0000) +struct KismetMathLibrary_Subtract_IntPointInt final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x000C(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_IntPointInt; + +// Function Engine.KismetMathLibrary.Subtract_IntPointIntPoint +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_IntPointIntPoint final +{ +public: + struct FIntPoint A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_IntPointIntPoint; + +// Function Engine.KismetMathLibrary.Subtract_LinearColorLinearColor +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Subtract_LinearColorLinearColor final +{ +public: + struct FLinearColor A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_LinearColorLinearColor; + +// Function Engine.KismetMathLibrary.Subtract_QuatQuat +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Subtract_QuatQuat final +{ +public: + struct FQuat A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_QuatQuat; + +// Function Engine.KismetMathLibrary.Subtract_TimespanTimespan +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Subtract_TimespanTimespan final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_TimespanTimespan; + +// Function Engine.KismetMathLibrary.Subtract_Vector2DFloat +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Subtract_Vector2DFloat final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0010(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_Vector2DFloat; + +// Function Engine.KismetMathLibrary.Subtract_Vector2DVector2D +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Subtract_Vector2DVector2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D B; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_Vector2DVector2D; + +// Function Engine.KismetMathLibrary.Subtract_Vector4Vector4 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Subtract_Vector4Vector4 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_Vector4Vector4; + +// Function Engine.KismetMathLibrary.Subtract_VectorFloat +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Subtract_VectorFloat final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double B; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_VectorFloat; + +// Function Engine.KismetMathLibrary.Subtract_VectorInt +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Subtract_VectorInt final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_VectorInt; + +// Function Engine.KismetMathLibrary.Subtract_VectorVector +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Subtract_VectorVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Subtract_VectorVector; + +// Function Engine.KismetMathLibrary.tan +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_tan final +{ +public: + double A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_tan; + +// Function Engine.KismetMathLibrary.TEase +// 0x0130 (0x0130 - 0x0000) +struct KismetMathLibrary_TEase final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x00C0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEasingFunc EasingFunc; // 0x00C4(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C5[0x3]; // 0x00C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendExp; // 0x00C8(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Steps; // 0x00CC(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform ReturnValue; // 0x00D0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TEase; + +// Function Engine.KismetMathLibrary.TimespanFromString +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_TimespanFromString final +{ +public: + class FString TimespanString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan Result; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_TimespanFromString; + +// Function Engine.KismetMathLibrary.TimespanMaxValue +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_TimespanMaxValue final +{ +public: + struct FTimespan ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TimespanMaxValue; + +// Function Engine.KismetMathLibrary.TimespanMinValue +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_TimespanMinValue final +{ +public: + struct FTimespan ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TimespanMinValue; + +// Function Engine.KismetMathLibrary.TimespanRatio +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_TimespanRatio final +{ +public: + struct FTimespan A; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTimespan B; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_TimespanRatio; + +// Function Engine.KismetMathLibrary.TimespanZeroValue +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_TimespanZeroValue final +{ +public: + struct FTimespan ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TimespanZeroValue; + +// Function Engine.KismetMathLibrary.TInterpTo +// 0x0130 (0x0130 - 0x0000) +struct KismetMathLibrary_TInterpTo final +{ +public: + struct FTransform Current; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform Target; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x00C0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x00C4(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C8[0x8]; // 0x00C8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x00D0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TInterpTo; + +// Function Engine.KismetMathLibrary.TLerp +// 0x0130 (0x0130 - 0x0000) +struct KismetMathLibrary_TLerp final +{ +public: + struct FTransform A; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform B; // 0x0060(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x00C0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELerpInterpolationMode InterpMode; // 0x00C4(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C5[0xB]; // 0x00C5(0x000B)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ReturnValue; // 0x00D0(0x0060)(Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TLerp; + +// Function Engine.KismetMathLibrary.Today +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_Today final +{ +public: + struct FDateTime ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Today; + +// Function Engine.KismetMathLibrary.ToDirectionAndLength2D +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_ToDirectionAndLength2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D OutDir; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double OutLength; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToDirectionAndLength2D; + +// Function Engine.KismetMathLibrary.ToHex_LinearColor +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_ToHex_LinearColor final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToHex_LinearColor; + +// Function Engine.KismetMathLibrary.ToRounded2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_ToRounded2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToRounded2D; + +// Function Engine.KismetMathLibrary.ToSign2D +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_ToSign2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToSign2D; + +// Function Engine.KismetMathLibrary.ToUnixTimestamp +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_ToUnixTimestamp final +{ +public: + struct FDateTime Time; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToUnixTimestamp; + +// Function Engine.KismetMathLibrary.ToUnixTimestampDouble +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_ToUnixTimestampDouble final +{ +public: + struct FDateTime Time; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_ToUnixTimestampDouble; + +// Function Engine.KismetMathLibrary.Transform_Determinant +// 0x0070 (0x0070 - 0x0000) +struct KismetMathLibrary_Transform_Determinant final +{ +public: + struct FTransform Transform; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x0060(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0xC]; // 0x0064(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Transform_Determinant; + +// Function Engine.KismetMathLibrary.TransformDirection +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_TransformDirection final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TransformDirection; + +// Function Engine.KismetMathLibrary.TransformLocation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_TransformLocation final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TransformLocation; + +// Function Engine.KismetMathLibrary.TransformRotation +// 0x0090 (0x0090 - 0x0000) +struct KismetMathLibrary_TransformRotation final +{ +public: + struct FTransform T; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0060(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator ReturnValue; // 0x0078(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TransformRotation; + +// Function Engine.KismetMathLibrary.TransformVector4 +// 0x00C0 (0x00C0 - 0x0000) +struct KismetMathLibrary_TransformVector4 final +{ +public: + struct FMatrix Matrix; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector4 Vec4; // 0x0080(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x00A0(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_TransformVector4; + +// Function Engine.KismetMathLibrary.UtcNow +// 0x0008 (0x0008 - 0x0000) +struct KismetMathLibrary_UtcNow final +{ +public: + struct FDateTime ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_UtcNow; + +// Function Engine.KismetMathLibrary.VEase +// 0x0058 (0x0058 - 0x0000) +struct KismetMathLibrary_VEase final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEasingFunc EasingFunc; // 0x0034(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendExp; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Steps; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VEase; + +// Function Engine.KismetMathLibrary.Vector2D_One +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Vector2D_One final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector2D_One; + +// Function Engine.KismetMathLibrary.Vector2D_Unit45Deg +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Vector2D_Unit45Deg final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector2D_Unit45Deg; + +// Function Engine.KismetMathLibrary.Vector2D_Zero +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Vector2D_Zero final +{ +public: + struct FVector2D ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector2D_Zero; + +// Function Engine.KismetMathLibrary.Vector2DInterpTo +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector2DInterpTo final +{ +public: + struct FVector2D Current; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Target; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector2DInterpTo; + +// Function Engine.KismetMathLibrary.Vector2DInterpTo_Constant +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector2DInterpTo_Constant final +{ +public: + struct FVector2D Current; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Target; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector2DInterpTo_Constant; + +// Function Engine.KismetMathLibrary.Vector4_Assign +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Vector4_Assign final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 InVector; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_Assign; + +// Function Engine.KismetMathLibrary.Vector4_CrossProduct3 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Vector4_CrossProduct3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_CrossProduct3; + +// Function Engine.KismetMathLibrary.Vector4_DotProduct +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Vector4_DotProduct final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0040(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_DotProduct; + +// Function Engine.KismetMathLibrary.Vector4_DotProduct3 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Vector4_DotProduct3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 B; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0040(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_48[0x8]; // 0x0048(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_DotProduct3; + +// Function Engine.KismetMathLibrary.Vector4_IsNAN +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_IsNAN final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_IsNAN; + +// Function Engine.KismetMathLibrary.Vector4_IsNearlyZero3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_IsNearlyZero3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0xB]; // 0x0025(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_IsNearlyZero3; + +// Function Engine.KismetMathLibrary.Vector4_IsNormal3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_IsNormal3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_IsNormal3; + +// Function Engine.KismetMathLibrary.Vector4_IsUnit3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_IsUnit3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SquaredLenthTolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0024(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0xB]; // 0x0025(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_IsUnit3; + +// Function Engine.KismetMathLibrary.Vector4_IsZero +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_IsZero final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_IsZero; + +// Function Engine.KismetMathLibrary.Vector4_MirrorByVector3 +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Vector4_MirrorByVector3 final +{ +public: + struct FVector4 Direction; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 SurfaceNormal; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0040(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_MirrorByVector3; + +// Function Engine.KismetMathLibrary.Vector4_Negated +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Vector4_Negated final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_Negated; + +// Function Engine.KismetMathLibrary.Vector4_Normal3 +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Vector4_Normal3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 ReturnValue; // 0x0030(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_Normal3; + +// Function Engine.KismetMathLibrary.Vector4_Normalize3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_Normalize3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0xC]; // 0x0024(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_Normalize3; + +// Function Engine.KismetMathLibrary.Vector4_NormalUnsafe3 +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Vector4_NormalUnsafe3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ReturnValue; // 0x0020(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_NormalUnsafe3; + +// Function Engine.KismetMathLibrary.Vector4_Set +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Vector4_Set final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0028(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double W; // 0x0038(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_Set; + +// Function Engine.KismetMathLibrary.Vector4_Size +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_Size final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_Size; + +// Function Engine.KismetMathLibrary.Vector4_Size3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_Size3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_Size3; + +// Function Engine.KismetMathLibrary.Vector4_SizeSquared +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_SizeSquared final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_SizeSquared; + +// Function Engine.KismetMathLibrary.Vector4_SizeSquared3 +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector4_SizeSquared3 final +{ +public: + struct FVector4 A; // 0x0000(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector4_SizeSquared3; + +// Function Engine.KismetMathLibrary.Vector4_Zero +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector4_Zero final +{ +public: + struct FVector4 ReturnValue; // 0x0000(0x0020)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector4_Zero; + +// Function Engine.KismetMathLibrary.Vector_AddBounded +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_AddBounded final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InAddVect; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InRadius; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_AddBounded; + +// Function Engine.KismetMathLibrary.Vector_Assign +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_Assign final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InVector; // 0x0018(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Assign; + +// Function Engine.KismetMathLibrary.Vector_Backward +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Backward final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Backward; + +// Function Engine.KismetMathLibrary.Vector_BoundedToBox +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Vector_BoundedToBox final +{ +public: + struct FVector InVect; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InBoxMin; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InBoxMax; // 0x0030(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0048(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_BoundedToBox; + +// Function Engine.KismetMathLibrary.Vector_BoundedToCube +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_BoundedToCube final +{ +public: + struct FVector InVect; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InRadius; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_BoundedToCube; + +// Function Engine.KismetMathLibrary.Vector_ClampSize2D +// 0x0040 (0x0040 - 0x0000) +struct KismetMathLibrary_Vector_ClampSize2D final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double min_0; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double max_0; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ClampSize2D; + +// Function Engine.KismetMathLibrary.Vector_ClampSizeMax +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_ClampSizeMax final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double max_0; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ClampSizeMax; + +// Function Engine.KismetMathLibrary.Vector_ClampSizeMax2D +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_ClampSizeMax2D final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double max_0; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ClampSizeMax2D; + +// Function Engine.KismetMathLibrary.Vector_ComponentMax +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Vector_ComponentMax final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ComponentMax; + +// Function Engine.KismetMathLibrary.Vector_ComponentMin +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Vector_ComponentMin final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ComponentMin; + +// Function Engine.KismetMathLibrary.Vector_CosineAngle2D +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_CosineAngle2D final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_CosineAngle2D; + +// Function Engine.KismetMathLibrary.Vector_Distance +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_Distance final +{ +public: + struct FVector v1; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector v2; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Distance; + +// Function Engine.KismetMathLibrary.Vector_Distance2D +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_Distance2D final +{ +public: + struct FVector v1; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector v2; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Distance2D; + +// Function Engine.KismetMathLibrary.Vector_Distance2DSquared +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_Distance2DSquared final +{ +public: + struct FVector v1; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector v2; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Distance2DSquared; + +// Function Engine.KismetMathLibrary.Vector_DistanceSquared +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_DistanceSquared final +{ +public: + struct FVector v1; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector v2; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_DistanceSquared; + +// Function Engine.KismetMathLibrary.Vector_Down +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Down final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Down; + +// Function Engine.KismetMathLibrary.Vector_Forward +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Forward final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Forward; + +// Function Engine.KismetMathLibrary.Vector_GetAbs +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_GetAbs final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_GetAbs; + +// Function Engine.KismetMathLibrary.Vector_GetAbsMax +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_GetAbsMax final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_GetAbsMax; + +// Function Engine.KismetMathLibrary.Vector_GetAbsMin +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_GetAbsMin final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_GetAbsMin; + +// Function Engine.KismetMathLibrary.Vector_GetProjection +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_GetProjection final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_GetProjection; + +// Function Engine.KismetMathLibrary.Vector_GetSignVector +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_GetSignVector final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_GetSignVector; + +// Function Engine.KismetMathLibrary.Vector_HeadingAngle +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_HeadingAngle final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_HeadingAngle; + +// Function Engine.KismetMathLibrary.Vector_IsNAN +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsNAN final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsNAN; + +// Function Engine.KismetMathLibrary.Vector_IsNearlyZero +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsNearlyZero final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsNearlyZero; + +// Function Engine.KismetMathLibrary.Vector_IsNormal +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsNormal final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsNormal; + +// Function Engine.KismetMathLibrary.Vector_IsUniform +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsUniform final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsUniform; + +// Function Engine.KismetMathLibrary.Vector_IsUnit +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsUnit final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SquaredLenthTolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsUnit; + +// Function Engine.KismetMathLibrary.Vector_IsZero +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_IsZero final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_IsZero; + +// Function Engine.KismetMathLibrary.Vector_Left +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Left final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Left; + +// Function Engine.KismetMathLibrary.Vector_MirrorByPlane +// 0x0060 (0x0060 - 0x0000) +struct KismetMathLibrary_Vector_MirrorByPlane final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPlane InPlane; // 0x0020(0x0020)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0040(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_MirrorByPlane; + +// Function Engine.KismetMathLibrary.Vector_Normal2D +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_Normal2D final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Normal2D; + +// Function Engine.KismetMathLibrary.Vector_Normalize +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_Vector_Normalize final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tolerance; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetMathLibrary_Vector_Normalize; + +// Function Engine.KismetMathLibrary.Vector_NormalUnsafe +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_NormalUnsafe final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_NormalUnsafe; + +// Function Engine.KismetMathLibrary.Vector_One +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_One final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_One; + +// Function Engine.KismetMathLibrary.Vector_ProjectOnToNormal +// 0x0048 (0x0048 - 0x0000) +struct KismetMathLibrary_Vector_ProjectOnToNormal final +{ +public: + struct FVector V; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InNormal; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0030(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ProjectOnToNormal; + +// Function Engine.KismetMathLibrary.Vector_Reciprocal +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_Reciprocal final +{ +public: + struct FVector A; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Reciprocal; + +// Function Engine.KismetMathLibrary.Vector_Right +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Right final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Right; + +// Function Engine.KismetMathLibrary.Vector_Set +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_Set final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double X; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Y; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Z; // 0x0028(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Set; + +// Function Engine.KismetMathLibrary.Vector_SlerpNormals +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Vector_SlerpNormals final +{ +public: + struct FVector NormalA; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector NormalB; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_SlerpNormals; + +// Function Engine.KismetMathLibrary.Vector_SlerpVectorToDirection +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_Vector_SlerpVectorToDirection final +{ +public: + struct FVector Vector; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double Alpha; // 0x0030(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_SlerpVectorToDirection; + +// Function Engine.KismetMathLibrary.Vector_SnappedToGrid +// 0x0038 (0x0038 - 0x0000) +struct KismetMathLibrary_Vector_SnappedToGrid final +{ +public: + struct FVector InVect; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InGridSize; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_SnappedToGrid; + +// Function Engine.KismetMathLibrary.Vector_ToDegrees +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_ToDegrees final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ToDegrees; + +// Function Engine.KismetMathLibrary.Vector_ToRadians +// 0x0030 (0x0030 - 0x0000) +struct KismetMathLibrary_Vector_ToRadians final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_ToRadians; + +// Function Engine.KismetMathLibrary.Vector_UnitCartesianToSpherical +// 0x0028 (0x0028 - 0x0000) +struct KismetMathLibrary_Vector_UnitCartesianToSpherical final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_UnitCartesianToSpherical; + +// Function Engine.KismetMathLibrary.Vector_UnwindEuler +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_UnwindEuler final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_UnwindEuler; + +// Function Engine.KismetMathLibrary.Vector_Up +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Up final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Up; + +// Function Engine.KismetMathLibrary.Vector_Zero +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Vector_Zero final +{ +public: + struct FVector ReturnValue; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Vector_Zero; + +// Function Engine.KismetMathLibrary.VectorSpringInterp +// 0x00D0 (0x00D0 - 0x0000) +struct KismetMathLibrary_VectorSpringInterp final +{ +public: + struct FVector Current; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVectorSpringState SpringState; // 0x0030(0x0038)(Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) + float Stiffness; // 0x0068(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CriticalDampingFactor; // 0x006C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0070(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0074(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetVelocityAmount; // 0x0078(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClamp; // 0x007C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7D[0x3]; // 0x007D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector MinValue; // 0x0080(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MaxValue; // 0x0098(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitializeFromTarget; // 0x00B0(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x00B8(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VectorSpringInterp; + +// Function Engine.KismetMathLibrary.VInterpTo +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_VInterpTo final +{ +public: + struct FVector Current; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VInterpTo; + +// Function Engine.KismetMathLibrary.VInterpTo_Constant +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_VInterpTo_Constant final +{ +public: + struct FVector Current; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Target; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DeltaTime; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeed; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VInterpTo_Constant; + +// Function Engine.KismetMathLibrary.VLerp +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_VLerp final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector B; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VLerp; + +// Function Engine.KismetMathLibrary.VSize +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_VSize final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSize; + +// Function Engine.KismetMathLibrary.VSize2D +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_VSize2D final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSize2D; + +// Function Engine.KismetMathLibrary.VSize2DSquared +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_VSize2DSquared final +{ +public: + struct FVector2D A; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSize2DSquared; + +// Function Engine.KismetMathLibrary.VSizeSquared +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_VSizeSquared final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSizeSquared; + +// Function Engine.KismetMathLibrary.VSizeXY +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_VSizeXY final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSizeXY; + +// Function Engine.KismetMathLibrary.VSizeXYSquared +// 0x0020 (0x0020 - 0x0000) +struct KismetMathLibrary_VSizeXYSquared final +{ +public: + struct FVector A; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_VSizeXYSquared; + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_Float +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_WeightedMovingAverage_Float final +{ +public: + float CurrentSample; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreviousSample; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Weight; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_WeightedMovingAverage_Float; + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_FRotator +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_WeightedMovingAverage_FRotator final +{ +public: + struct FRotator CurrentSample; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator PreviousSample; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Weight; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_WeightedMovingAverage_FRotator; + +// Function Engine.KismetMathLibrary.WeightedMovingAverage_FVector +// 0x0050 (0x0050 - 0x0000) +struct KismetMathLibrary_WeightedMovingAverage_FVector final +{ +public: + struct FVector CurrentSample; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousSample; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Weight; // 0x0030(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_WeightedMovingAverage_FVector; + +// Function Engine.KismetMathLibrary.Wrap +// 0x0010 (0x0010 - 0x0000) +struct KismetMathLibrary_Wrap final +{ +public: + int32 Value; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 min_0; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 max_0; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Wrap; + +// Function Engine.KismetMathLibrary.Xor_Int64Int64 +// 0x0018 (0x0018 - 0x0000) +struct KismetMathLibrary_Xor_Int64Int64 final +{ +public: + int64 A; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 B; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Xor_Int64Int64; + +// Function Engine.KismetMathLibrary.Xor_IntInt +// 0x000C (0x000C - 0x0000) +struct KismetMathLibrary_Xor_IntInt final +{ +public: + int32 A; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 B; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetMathLibrary_Xor_IntInt; + +// Function Engine.KismetRenderingLibrary.BeginDrawCanvasToRenderTarget +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_BeginDrawCanvasToRenderTarget final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCanvas* Canvas; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Size; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDrawToRenderTargetContext Context; // 0x0028(0x0008)(Parm, OutParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_BeginDrawCanvasToRenderTarget; + +// Function Engine.KismetRenderingLibrary.BreakSkinWeightInfo +// 0x005C (0x005C - 0x0000) +struct KismetRenderingLibrary_BreakSkinWeightInfo final +{ +public: + struct FSkelMeshSkinWeightInfo InWeight; // 0x0000(0x003C)(Parm, NoDestructor, NativeAccessSpecifierPublic) + int32 Bone0; // 0x003C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight0; // 0x0040(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone1; // 0x0044(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight1; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone2; // 0x004C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight2; // 0x0050(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone3; // 0x0054(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight3; // 0x0058(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_BreakSkinWeightInfo; + +// Function Engine.KismetRenderingLibrary.CalculateProjectionMatrix +// 0x08B0 (0x08B0 - 0x0000) +struct KismetRenderingLibrary_CalculateProjectionMatrix final +{ +public: + struct FMinimalViewInfo MinimalViewInfo; // 0x0000(0x0830)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FMatrix ReturnValue; // 0x0830(0x0080)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_CalculateProjectionMatrix; + +// Function Engine.KismetRenderingLibrary.ClearRenderTarget2D +// 0x0020 (0x0020 - 0x0000) +struct KismetRenderingLibrary_ClearRenderTarget2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ClearColor; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ClearRenderTarget2D; + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTexture2DArrayEditorOnly +// 0x0018 (0x0018 - 0x0000) +struct KismetRenderingLibrary_ConvertRenderTargetToTexture2DArrayEditorOnly final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2DArray* RenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2DArray* Texture; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ConvertRenderTargetToTexture2DArrayEditorOnly; + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTexture2DEditorOnly +// 0x0018 (0x0018 - 0x0000) +struct KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* RenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* Texture; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ConvertRenderTargetToTexture2DEditorOnly; + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTextureCubeEditorOnly +// 0x0018 (0x0018 - 0x0000) +struct KismetRenderingLibrary_ConvertRenderTargetToTextureCubeEditorOnly final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTargetCube* RenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureCube* Texture; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ConvertRenderTargetToTextureCubeEditorOnly; + +// Function Engine.KismetRenderingLibrary.ConvertRenderTargetToTextureVolumeEditorOnly +// 0x0018 (0x0018 - 0x0000) +struct KismetRenderingLibrary_ConvertRenderTargetToTextureVolumeEditorOnly final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTargetVolume* RenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVolumeTexture* Texture; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ConvertRenderTargetToTextureVolumeEditorOnly; + +// Function Engine.KismetRenderingLibrary.CreateRenderTarget2D +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_CreateRenderTarget2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureRenderTargetFormat Format; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ClearColor; // 0x0014(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoGenerateMipMaps; // 0x0024(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSupportUAVs; // 0x0025(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_26[0x2]; // 0x0026(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureRenderTarget2D* ReturnValue; // 0x0028(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_CreateRenderTarget2D; + +// Function Engine.KismetRenderingLibrary.CreateRenderTarget2DArray +// 0x0038 (0x0038 - 0x0000) +struct KismetRenderingLibrary_CreateRenderTarget2DArray final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Slices; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureRenderTargetFormat Format; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ClearColor; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoGenerateMipMaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSupportUAVs; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureRenderTarget2DArray* ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_CreateRenderTarget2DArray; + +// Function Engine.KismetRenderingLibrary.CreateRenderTargetVolume +// 0x0038 (0x0038 - 0x0000) +struct KismetRenderingLibrary_CreateRenderTargetVolume final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Depth; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureRenderTargetFormat Format; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ClearColor; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoGenerateMipMaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSupportUAVs; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureRenderTargetVolume* ReturnValue; // 0x0030(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_CreateRenderTargetVolume; + +// Function Engine.KismetRenderingLibrary.DrawMaterialToRenderTarget +// 0x0018 (0x0018 - 0x0000) +struct KismetRenderingLibrary_DrawMaterialToRenderTarget final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_DrawMaterialToRenderTarget; + +// Function Engine.KismetRenderingLibrary.EnablePathTracing +// 0x0001 (0x0001 - 0x0000) +struct KismetRenderingLibrary_EnablePathTracing final +{ +public: + bool bEnablePathTracer; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_EnablePathTracing; + +// Function Engine.KismetRenderingLibrary.EndDrawCanvasToRenderTarget +// 0x0010 (0x0010 - 0x0000) +struct KismetRenderingLibrary_EndDrawCanvasToRenderTarget final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDrawToRenderTargetContext Context; // 0x0008(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_EndDrawCanvasToRenderTarget; + +// Function Engine.KismetRenderingLibrary.ExportRenderTarget +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_ExportRenderTarget final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FilePath; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Filename; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ExportRenderTarget; + +// Function Engine.KismetRenderingLibrary.ExportTexture2D +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_ExportTexture2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* Texture; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FilePath; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Filename; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ExportTexture2D; + +// Function Engine.KismetRenderingLibrary.ImportBufferAsTexture2D +// 0x0020 (0x0020 - 0x0000) +struct KismetRenderingLibrary_ImportBufferAsTexture2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Buffer; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class UTexture2D* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ImportBufferAsTexture2D; + +// Function Engine.KismetRenderingLibrary.ImportFileAsTexture2D +// 0x0020 (0x0020 - 0x0000) +struct KismetRenderingLibrary_ImportFileAsTexture2D final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Filename; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* ReturnValue; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ImportFileAsTexture2D; + +// Function Engine.KismetRenderingLibrary.MakeSkinWeightInfo +// 0x005C (0x005C - 0x0000) +struct KismetRenderingLibrary_MakeSkinWeightInfo final +{ +public: + int32 Bone0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight0; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone1; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight1; // 0x000C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone2; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight2; // 0x0014(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Bone3; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weight3; // 0x001C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSkelMeshSkinWeightInfo ReturnValue; // 0x0020(0x003C)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_MakeSkinWeightInfo; + +// Function Engine.KismetRenderingLibrary.ReadRenderTarget +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTarget final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutSamples; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTarget; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetPixel +// 0x0020 (0x0020 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetPixel final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 X; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTargetPixel; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRaw +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetRaw final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutLinearSamples; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTargetRaw; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawPixel +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetRawPixel final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 X; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Y; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ReturnValue; // 0x001C(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTargetRawPixel; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawPixelArea +// 0x0038 (0x0038 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetRawPixelArea final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinX; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinY; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxX; // 0x0018(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxY; // 0x001C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ReadRenderTargetRawPixelArea; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawUV +// 0x0030 (0x0030 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetRawUV final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float U; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ReturnValue; // 0x001C(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTargetRawUV; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetRawUVArea +// 0x0050 (0x0050 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetRawUVArea final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox2D Area; // 0x0010(0x0028)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bNormalize; // 0x0038(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ReadRenderTargetRawUVArea; + +// Function Engine.KismetRenderingLibrary.ReadRenderTargetUV +// 0x0020 (0x0020 - 0x0000) +struct KismetRenderingLibrary_ReadRenderTargetUV final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float U; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor ReturnValue; // 0x0018(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_ReadRenderTargetUV; + +// Function Engine.KismetRenderingLibrary.ReleaseRenderTarget2D +// 0x0008 (0x0008 - 0x0000) +struct KismetRenderingLibrary_ReleaseRenderTarget2D final +{ +public: + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ReleaseRenderTarget2D; + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTexture2DArrayEditorOnly +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_RenderTargetCreateStaticTexture2DArrayEditorOnly final +{ +public: + class UTextureRenderTarget2DArray* RenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Name_0; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCompressionSettings CompressionSettings; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipGenSettings MipSettings; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture2DArray* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_RenderTargetCreateStaticTexture2DArrayEditorOnly; + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTexture2DEditorOnly +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly final +{ +public: + class UTextureRenderTarget2D* RenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Name_0; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCompressionSettings CompressionSettings; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipGenSettings MipSettings; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture2D* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_RenderTargetCreateStaticTexture2DEditorOnly; + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticTextureCubeEditorOnly +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_RenderTargetCreateStaticTextureCubeEditorOnly final +{ +public: + class UTextureRenderTargetCube* RenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Name_0; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCompressionSettings CompressionSettings; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipGenSettings MipSettings; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_RenderTargetCreateStaticTextureCubeEditorOnly; + +// Function Engine.KismetRenderingLibrary.RenderTargetCreateStaticVolumeTextureEditorOnly +// 0x0028 (0x0028 - 0x0000) +struct KismetRenderingLibrary_RenderTargetCreateStaticVolumeTextureEditorOnly final +{ +public: + class UTextureRenderTargetVolume* RenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Name_0; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureCompressionSettings CompressionSettings; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipGenSettings MipSettings; // 0x0019(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UVolumeTexture* ReturnValue; // 0x0020(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_RenderTargetCreateStaticVolumeTextureEditorOnly; + +// Function Engine.KismetRenderingLibrary.ResizeRenderTarget2D +// 0x0010 (0x0010 - 0x0000) +struct KismetRenderingLibrary_ResizeRenderTarget2D final +{ +public: + class UTextureRenderTarget2D* TextureRenderTarget; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Width; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Height; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetRenderingLibrary_ResizeRenderTarget2D; + +// Function Engine.KismetRenderingLibrary.SetCastInsetShadowForAllAttachments +// 0x0010 (0x0010 - 0x0000) +struct KismetRenderingLibrary_SetCastInsetShadowForAllAttachments final +{ +public: + class UPrimitiveComponent* PrimitiveComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCastInsetShadow; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLightAttachmentsAsGroup; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetRenderingLibrary_SetCastInsetShadowForAllAttachments; + +// Function Engine.KismetStringLibrary.BuildString_Bool +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_BuildString_Bool final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InBool; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Suffix; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Bool; + +// Function Engine.KismetStringLibrary.BuildString_Color +// 0x0050 (0x0050 - 0x0000) +struct KismetStringLibrary_BuildString_Color final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor InColor; // 0x0020(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0030(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Color; + +// Function Engine.KismetStringLibrary.BuildString_Double +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_BuildString_Double final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double InDouble; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Double; + +// Function Engine.KismetStringLibrary.BuildString_Int +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_BuildString_Int final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 inInt; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Suffix; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Int; + +// Function Engine.KismetStringLibrary.BuildString_IntVector +// 0x0050 (0x0050 - 0x0000) +struct KismetStringLibrary_BuildString_IntVector final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector InIntVector; // 0x0020(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Suffix; // 0x0030(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_IntVector; + +// Function Engine.KismetStringLibrary.BuildString_Name +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_BuildString_Name final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InName; // 0x0020(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Name; + +// Function Engine.KismetStringLibrary.BuildString_Object +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_BuildString_Object final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* InObj; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Object; + +// Function Engine.KismetStringLibrary.BuildString_Rotator +// 0x0058 (0x0058 - 0x0000) +struct KismetStringLibrary_BuildString_Rotator final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator InRot; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0038(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0048(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Rotator; + +// Function Engine.KismetStringLibrary.BuildString_Vector +// 0x0058 (0x0058 - 0x0000) +struct KismetStringLibrary_BuildString_Vector final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InVector; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0038(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0048(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Vector; + +// Function Engine.KismetStringLibrary.BuildString_Vector2d +// 0x0050 (0x0050 - 0x0000) +struct KismetStringLibrary_BuildString_Vector2d final +{ +public: + class FString AppendTo; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D InVector2D; // 0x0020(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Suffix; // 0x0030(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0040(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_BuildString_Vector2d; + +// Function Engine.KismetStringLibrary.Concat_StrStr +// 0x0030 (0x0030 - 0x0000) +struct KismetStringLibrary_Concat_StrStr final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Concat_StrStr; + +// Function Engine.KismetStringLibrary.Contains +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Contains final +{ +public: + class FString SearchIn; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Substring; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCase; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSearchFromEnd; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0022(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23[0x5]; // 0x0023(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Contains; + +// Function Engine.KismetStringLibrary.Conv_BoolToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_BoolToString final +{ +public: + bool InBool; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_BoolToString; + +// Function Engine.KismetStringLibrary.Conv_BoxCenterAndExtentsToString +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_Conv_BoxCenterAndExtentsToString final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_BoxCenterAndExtentsToString; + +// Function Engine.KismetStringLibrary.Conv_BoxToString +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_Conv_BoxToString final +{ +public: + struct FBox Box; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_BoxToString; + +// Function Engine.KismetStringLibrary.Conv_ByteToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_ByteToString final +{ +public: + uint8 InByte; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_ByteToString; + +// Function Engine.KismetStringLibrary.Conv_ColorToString +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Conv_ColorToString final +{ +public: + struct FLinearColor InColor; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_ColorToString; + +// Function Engine.KismetStringLibrary.Conv_DoubleToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_DoubleToString final +{ +public: + double InDouble; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_DoubleToString; + +// Function Engine.KismetStringLibrary.Conv_InputDeviceIdToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_InputDeviceIdToString final +{ +public: + struct FInputDeviceId InDeviceId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_InputDeviceIdToString; + +// Function Engine.KismetStringLibrary.Conv_Int64ToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_Int64ToString final +{ +public: + int64 inInt; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_Int64ToString; + +// Function Engine.KismetStringLibrary.Conv_IntPointToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_IntPointToString final +{ +public: + struct FIntPoint InIntPoint; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_IntPointToString; + +// Function Engine.KismetStringLibrary.Conv_IntToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_IntToString final +{ +public: + int32 inInt; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_IntToString; + +// Function Engine.KismetStringLibrary.Conv_IntVectorToString +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Conv_IntVectorToString final +{ +public: + struct FIntVector InIntVec; // 0x0000(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_IntVectorToString; + +// Function Engine.KismetStringLibrary.Conv_MatrixToString +// 0x0090 (0x0090 - 0x0000) +struct KismetStringLibrary_Conv_MatrixToString final +{ +public: + struct FMatrix InMatrix; // 0x0000(0x0080)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0080(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_MatrixToString; + +// Function Engine.KismetStringLibrary.Conv_NameToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_NameToString final +{ +public: + class FName InName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_NameToString; + +// Function Engine.KismetStringLibrary.Conv_ObjectToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_ObjectToString final +{ +public: + class UObject* InObj; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_ObjectToString; + +// Function Engine.KismetStringLibrary.Conv_PlatformUserIdToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_PlatformUserIdToString final +{ +public: + struct FPlatformUserId InPlatformUserId; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_PlatformUserIdToString; + +// Function Engine.KismetStringLibrary.Conv_RotatorToString +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Conv_RotatorToString final +{ +public: + struct FRotator InRot; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_RotatorToString; + +// Function Engine.KismetStringLibrary.Conv_StringToColor +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Conv_StringToColor final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor OutConvertedColor; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool OutIsValid; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToColor; + +// Function Engine.KismetStringLibrary.Conv_StringToDouble +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_StringToDouble final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_StringToDouble; + +// Function Engine.KismetStringLibrary.Conv_StringToInt +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_StringToInt final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToInt; + +// Function Engine.KismetStringLibrary.Conv_StringToInt64 +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_StringToInt64 final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_StringToInt64; + +// Function Engine.KismetStringLibrary.Conv_StringToName +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Conv_StringToName final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_StringToName; + +// Function Engine.KismetStringLibrary.Conv_StringToRotator +// 0x0030 (0x0030 - 0x0000) +struct KismetStringLibrary_Conv_StringToRotator final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator OutConvertedRotator; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool OutIsValid; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToRotator; + +// Function Engine.KismetStringLibrary.Conv_StringToVector +// 0x0030 (0x0030 - 0x0000) +struct KismetStringLibrary_Conv_StringToVector final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutConvertedVector; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool OutIsValid; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToVector; + +// Function Engine.KismetStringLibrary.Conv_StringToVector2D +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Conv_StringToVector2D final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D OutConvertedVector2D; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool OutIsValid; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToVector2D; + +// Function Engine.KismetStringLibrary.Conv_StringToVector3f +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Conv_StringToVector3f final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f OutConvertedVector; // 0x0010(0x000C)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool OutIsValid; // 0x001C(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Conv_StringToVector3f; + +// Function Engine.KismetStringLibrary.Conv_TransformToString +// 0x0070 (0x0070 - 0x0000) +struct KismetStringLibrary_Conv_TransformToString final +{ +public: + struct FTransform InTrans; // 0x0000(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0060(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_TransformToString; + +// Function Engine.KismetStringLibrary.Conv_Vector2dToString +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Conv_Vector2dToString final +{ +public: + struct FVector2D InVec; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_Vector2dToString; + +// Function Engine.KismetStringLibrary.Conv_Vector3fToString +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Conv_Vector3fToString final +{ +public: + struct FVector3f InVec; // 0x0000(0x000C)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_Vector3fToString; + +// Function Engine.KismetStringLibrary.Conv_VectorToString +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Conv_VectorToString final +{ +public: + struct FVector InVec; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Conv_VectorToString; + +// Function Engine.KismetStringLibrary.CullArray +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_CullArray final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray inArray; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0020(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_CullArray; + +// Function Engine.KismetStringLibrary.EndsWith +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_EndsWith final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InSuffix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_EndsWith; + +// Function Engine.KismetStringLibrary.EqualEqual_StriStri +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_EqualEqual_StriStri final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_EqualEqual_StriStri; + +// Function Engine.KismetStringLibrary.EqualEqual_StrStr +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_EqualEqual_StrStr final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_EqualEqual_StrStr; + +// Function Engine.KismetStringLibrary.FindSubstring +// 0x0030 (0x0030 - 0x0000) +struct KismetStringLibrary_FindSubstring final +{ +public: + class FString SearchIn; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Substring; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCase; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSearchFromEnd; // 0x0021(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x2]; // 0x0022(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 StartPosition; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0028(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_FindSubstring; + +// Function Engine.KismetStringLibrary.GetCharacterArrayFromString +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_GetCharacterArrayFromString final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_GetCharacterArrayFromString; + +// Function Engine.KismetStringLibrary.GetCharacterAsNumber +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_GetCharacterAsNumber final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index_0; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0014(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_GetCharacterAsNumber; + +// Function Engine.KismetStringLibrary.GetSubstring +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_GetSubstring final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartIndex; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Length; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_GetSubstring; + +// Function Engine.KismetStringLibrary.IsEmpty +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_IsEmpty final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_IsEmpty; + +// Function Engine.KismetStringLibrary.IsNumeric +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_IsNumeric final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_IsNumeric; + +// Function Engine.KismetStringLibrary.JoinStringArray +// 0x0030 (0x0030 - 0x0000) +struct KismetStringLibrary_JoinStringArray final +{ +public: + TArray SourceArray; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class FString Separator; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_JoinStringArray; + +// Function Engine.KismetStringLibrary.Left +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Left final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Count; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Left; + +// Function Engine.KismetStringLibrary.LeftChop +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_LeftChop final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Count; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_LeftChop; + +// Function Engine.KismetStringLibrary.LeftPad +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_LeftPad final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ChCount; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_LeftPad; + +// Function Engine.KismetStringLibrary.Len +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_Len final +{ +public: + class FString S; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0010(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Len; + +// Function Engine.KismetStringLibrary.MatchesWildcard +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_MatchesWildcard final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Wildcard; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_MatchesWildcard; + +// Function Engine.KismetStringLibrary.Mid +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Mid final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Start; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Count; // 0x0014(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Mid; + +// Function Engine.KismetStringLibrary.NotEqual_StriStri +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_NotEqual_StriStri final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_NotEqual_StriStri; + +// Function Engine.KismetStringLibrary.NotEqual_StrStr +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_NotEqual_StrStr final +{ +public: + class FString A; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString B; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_NotEqual_StrStr; + +// Function Engine.KismetStringLibrary.ParseIntoArray +// 0x0038 (0x0038 - 0x0000) +struct KismetStringLibrary_ParseIntoArray final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Delimiter; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool CullEmptyStrings; // 0x0020(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_ParseIntoArray; + +// Function Engine.KismetStringLibrary.Replace +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_Replace final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString From; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString To; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Replace; + +// Function Engine.KismetStringLibrary.ReplaceInline +// 0x0038 (0x0038 - 0x0000) +struct KismetStringLibrary_ReplaceInline final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SearchText; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReplacementText; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0034(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_ReplaceInline; + +// Function Engine.KismetStringLibrary.Reverse +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Reverse final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Reverse; + +// Function Engine.KismetStringLibrary.Right +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_Right final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Count; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Right; + +// Function Engine.KismetStringLibrary.RightChop +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_RightChop final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Count; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_RightChop; + +// Function Engine.KismetStringLibrary.RightPad +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_RightPad final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ChCount; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_RightPad; + +// Function Engine.KismetStringLibrary.Split +// 0x0048 (0x0048 - 0x0000) +struct KismetStringLibrary_Split final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InStr; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LeftS; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString RightS; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0040(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchDir SearchDir; // 0x0041(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0042(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_43[0x5]; // 0x0043(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_Split; + +// Function Engine.KismetStringLibrary.StartsWith +// 0x0028 (0x0028 - 0x0000) +struct KismetStringLibrary_StartsWith final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InPrefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESearchCase SearchCase; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0021(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringLibrary_StartsWith; + +// Function Engine.KismetStringLibrary.TimeSecondsToString +// 0x0018 (0x0018 - 0x0000) +struct KismetStringLibrary_TimeSecondsToString final +{ +public: + float InSeconds; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_TimeSecondsToString; + +// Function Engine.KismetStringLibrary.ToLower +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_ToLower final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_ToLower; + +// Function Engine.KismetStringLibrary.ToUpper +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_ToUpper final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_ToUpper; + +// Function Engine.KismetStringLibrary.Trim +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_Trim final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_Trim; + +// Function Engine.KismetStringLibrary.TrimTrailing +// 0x0020 (0x0020 - 0x0000) +struct KismetStringLibrary_TrimTrailing final +{ +public: + class FString SourceString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringLibrary_TrimTrailing; + +// Function Engine.KismetStringTableLibrary.GetKeysFromStringTable +// 0x0018 (0x0018 - 0x0000) +struct KismetStringTableLibrary_GetKeysFromStringTable final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetKeysFromStringTable; + +// Function Engine.KismetStringTableLibrary.GetMetaDataIdsFromStringTableEntry +// 0x0028 (0x0028 - 0x0000) +struct KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetMetaDataIdsFromStringTableEntry; + +// Function Engine.KismetStringTableLibrary.GetRegisteredStringTables +// 0x0010 (0x0010 - 0x0000) +struct KismetStringTableLibrary_GetRegisteredStringTables final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetRegisteredStringTables; + +// Function Engine.KismetStringTableLibrary.GetTableEntryMetaData +// 0x0030 (0x0030 - 0x0000) +struct KismetStringTableLibrary_GetTableEntryMetaData final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MetaDataId; // 0x0018(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetTableEntryMetaData; + +// Function Engine.KismetStringTableLibrary.GetTableEntrySourceString +// 0x0028 (0x0028 - 0x0000) +struct KismetStringTableLibrary_GetTableEntrySourceString final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetTableEntrySourceString; + +// Function Engine.KismetStringTableLibrary.GetTableNamespace +// 0x0018 (0x0018 - 0x0000) +struct KismetStringTableLibrary_GetTableNamespace final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//KismetStringTableLibrary_GetTableNamespace; + +// Function Engine.KismetStringTableLibrary.IsRegisteredTableEntry +// 0x0020 (0x0020 - 0x0000) +struct KismetStringTableLibrary_IsRegisteredTableEntry final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Key; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0018(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringTableLibrary_IsRegisteredTableEntry; + +// Function Engine.KismetStringTableLibrary.IsRegisteredTableId +// 0x000C (0x000C - 0x0000) +struct KismetStringTableLibrary_IsRegisteredTableId final +{ +public: + class FName TableId; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//KismetStringTableLibrary_IsRegisteredTableId; + +// Function Engine.BlueprintPathsLibrary.AutomationDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_AutomationDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_AutomationDir; + +// Function Engine.BlueprintPathsLibrary.AutomationLogDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_AutomationLogDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_AutomationLogDir; + +// Function Engine.BlueprintPathsLibrary.AutomationTransientDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_AutomationTransientDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_AutomationTransientDir; + +// Function Engine.BlueprintPathsLibrary.BugItDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_BugItDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_BugItDir; + +// Function Engine.BlueprintPathsLibrary.ChangeExtension +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_ChangeExtension final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InNewExtension; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ChangeExtension; + +// Function Engine.BlueprintPathsLibrary.CloudDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_CloudDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_CloudDir; + +// Function Engine.BlueprintPathsLibrary.CollapseRelativeDirectories +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPathsLibrary_CollapseRelativeDirectories final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_CollapseRelativeDirectories; + +// Function Engine.BlueprintPathsLibrary.Combine +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_Combine final +{ +public: + TArray InPaths; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_Combine; + +// Function Engine.BlueprintPathsLibrary.ConvertFromSandboxPath +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_ConvertFromSandboxPath final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InSandboxName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ConvertFromSandboxPath; + +// Function Engine.BlueprintPathsLibrary.ConvertRelativePathToFull +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_ConvertRelativePathToFull final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InBasePath; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ConvertRelativePathToFull; + +// Function Engine.BlueprintPathsLibrary.ConvertToSandboxPath +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_ConvertToSandboxPath final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InSandboxName; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ConvertToSandboxPath; + +// Function Engine.BlueprintPathsLibrary.CreateTempFilename +// 0x0040 (0x0040 - 0x0000) +struct BlueprintPathsLibrary_CreateTempFilename final +{ +public: + class FString Path; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Prefix; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Extension; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_CreateTempFilename; + +// Function Engine.BlueprintPathsLibrary.DiffDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_DiffDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_DiffDir; + +// Function Engine.BlueprintPathsLibrary.DirectoryExists +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPathsLibrary_DirectoryExists final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_DirectoryExists; + +// Function Engine.BlueprintPathsLibrary.EngineConfigDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineConfigDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineConfigDir; + +// Function Engine.BlueprintPathsLibrary.EngineContentDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineContentDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineContentDir; + +// Function Engine.BlueprintPathsLibrary.EngineDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineDir; + +// Function Engine.BlueprintPathsLibrary.EngineIntermediateDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineIntermediateDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineIntermediateDir; + +// Function Engine.BlueprintPathsLibrary.EnginePluginsDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EnginePluginsDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EnginePluginsDir; + +// Function Engine.BlueprintPathsLibrary.EngineSavedDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineSavedDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineSavedDir; + +// Function Engine.BlueprintPathsLibrary.EngineSourceDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineSourceDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineSourceDir; + +// Function Engine.BlueprintPathsLibrary.EngineUserDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineUserDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineUserDir; + +// Function Engine.BlueprintPathsLibrary.EngineVersionAgnosticUserDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EngineVersionAgnosticUserDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EngineVersionAgnosticUserDir; + +// Function Engine.BlueprintPathsLibrary.EnterpriseDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EnterpriseDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EnterpriseDir; + +// Function Engine.BlueprintPathsLibrary.EnterpriseFeaturePackDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EnterpriseFeaturePackDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EnterpriseFeaturePackDir; + +// Function Engine.BlueprintPathsLibrary.EnterprisePluginsDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_EnterprisePluginsDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_EnterprisePluginsDir; + +// Function Engine.BlueprintPathsLibrary.FeaturePackDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_FeaturePackDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_FeaturePackDir; + +// Function Engine.BlueprintPathsLibrary.FileExists +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPathsLibrary_FileExists final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_FileExists; + +// Function Engine.BlueprintPathsLibrary.GameAgnosticSavedDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GameAgnosticSavedDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GameAgnosticSavedDir; + +// Function Engine.BlueprintPathsLibrary.GameDevelopersDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GameDevelopersDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GameDevelopersDir; + +// Function Engine.BlueprintPathsLibrary.GameSourceDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GameSourceDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GameSourceDir; + +// Function Engine.BlueprintPathsLibrary.GameUserDeveloperDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GameUserDeveloperDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GameUserDeveloperDir; + +// Function Engine.BlueprintPathsLibrary.GeneratedConfigDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GeneratedConfigDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GeneratedConfigDir; + +// Function Engine.BlueprintPathsLibrary.GetBaseFilename +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPathsLibrary_GetBaseFilename final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemovePath; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetBaseFilename; + +// Function Engine.BlueprintPathsLibrary.GetCleanFilename +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_GetCleanFilename final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetCleanFilename; + +// Function Engine.BlueprintPathsLibrary.GetEditorLocalizationPaths +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetEditorLocalizationPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetEditorLocalizationPaths; + +// Function Engine.BlueprintPathsLibrary.GetEngineLocalizationPaths +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetEngineLocalizationPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetEngineLocalizationPaths; + +// Function Engine.BlueprintPathsLibrary.GetExtension +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPathsLibrary_GetExtension final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeDot; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetExtension; + +// Function Engine.BlueprintPathsLibrary.GetGameLocalizationPaths +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetGameLocalizationPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetGameLocalizationPaths; + +// Function Engine.BlueprintPathsLibrary.GetInvalidFileSystemChars +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetInvalidFileSystemChars final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetInvalidFileSystemChars; + +// Function Engine.BlueprintPathsLibrary.GetPath +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_GetPath final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetPath; + +// Function Engine.BlueprintPathsLibrary.GetProjectFilePath +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetProjectFilePath final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetProjectFilePath; + +// Function Engine.BlueprintPathsLibrary.GetPropertyNameLocalizationPaths +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetPropertyNameLocalizationPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetPropertyNameLocalizationPaths; + +// Function Engine.BlueprintPathsLibrary.GetRelativePathToRoot +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetRelativePathToRoot final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetRelativePathToRoot; + +// Function Engine.BlueprintPathsLibrary.GetRestrictedFolderNames +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetRestrictedFolderNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetRestrictedFolderNames; + +// Function Engine.BlueprintPathsLibrary.GetToolTipLocalizationPaths +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_GetToolTipLocalizationPaths final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_GetToolTipLocalizationPaths; + +// Function Engine.BlueprintPathsLibrary.HasProjectPersistentDownloadDir +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPathsLibrary_HasProjectPersistentDownloadDir final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_HasProjectPersistentDownloadDir; + +// Function Engine.BlueprintPathsLibrary.IsDrive +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPathsLibrary_IsDrive final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_IsDrive; + +// Function Engine.BlueprintPathsLibrary.IsProjectFilePathSet +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPathsLibrary_IsProjectFilePathSet final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_IsProjectFilePathSet; + +// Function Engine.BlueprintPathsLibrary.IsRelative +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPathsLibrary_IsRelative final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_IsRelative; + +// Function Engine.BlueprintPathsLibrary.IsRestrictedPath +// 0x0018 (0x0018 - 0x0000) +struct BlueprintPathsLibrary_IsRestrictedPath final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_IsRestrictedPath; + +// Function Engine.BlueprintPathsLibrary.IsSamePath +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPathsLibrary_IsSamePath final +{ +public: + class FString PathA; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathB; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_IsSamePath; + +// Function Engine.BlueprintPathsLibrary.LaunchDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_LaunchDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_LaunchDir; + +// Function Engine.BlueprintPathsLibrary.MakePathRelativeTo +// 0x0038 (0x0038 - 0x0000) +struct BlueprintPathsLibrary_MakePathRelativeTo final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InRelativeTo; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0030(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//BlueprintPathsLibrary_MakePathRelativeTo; + +// Function Engine.BlueprintPathsLibrary.MakePlatformFilename +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_MakePlatformFilename final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_MakePlatformFilename; + +// Function Engine.BlueprintPathsLibrary.MakeStandardFilename +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_MakeStandardFilename final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_MakeStandardFilename; + +// Function Engine.BlueprintPathsLibrary.MakeValidFileName +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_MakeValidFileName final +{ +public: + class FString InString; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InReplacementChar; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_MakeValidFileName; + +// Function Engine.BlueprintPathsLibrary.NormalizeDirectoryName +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_NormalizeDirectoryName final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_NormalizeDirectoryName; + +// Function Engine.BlueprintPathsLibrary.NormalizeFilename +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_NormalizeFilename final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_NormalizeFilename; + +// Function Engine.BlueprintPathsLibrary.ProfilingDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProfilingDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProfilingDir; + +// Function Engine.BlueprintPathsLibrary.ProjectConfigDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectConfigDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectConfigDir; + +// Function Engine.BlueprintPathsLibrary.ProjectContentDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectContentDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectContentDir; + +// Function Engine.BlueprintPathsLibrary.ProjectDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectDir; + +// Function Engine.BlueprintPathsLibrary.ProjectIntermediateDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectIntermediateDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectIntermediateDir; + +// Function Engine.BlueprintPathsLibrary.ProjectLogDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectLogDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectLogDir; + +// Function Engine.BlueprintPathsLibrary.ProjectModsDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectModsDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectModsDir; + +// Function Engine.BlueprintPathsLibrary.ProjectPersistentDownloadDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectPersistentDownloadDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectPersistentDownloadDir; + +// Function Engine.BlueprintPathsLibrary.ProjectPluginsDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectPluginsDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectPluginsDir; + +// Function Engine.BlueprintPathsLibrary.ProjectSavedDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectSavedDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectSavedDir; + +// Function Engine.BlueprintPathsLibrary.ProjectUserDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ProjectUserDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ProjectUserDir; + +// Function Engine.BlueprintPathsLibrary.RemoveDuplicateSlashes +// 0x0020 (0x0020 - 0x0000) +struct BlueprintPathsLibrary_RemoveDuplicateSlashes final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OutPath; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_RemoveDuplicateSlashes; + +// Function Engine.BlueprintPathsLibrary.RootDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_RootDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_RootDir; + +// Function Engine.BlueprintPathsLibrary.SandboxesDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_SandboxesDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_SandboxesDir; + +// Function Engine.BlueprintPathsLibrary.ScreenShotDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ScreenShotDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ScreenShotDir; + +// Function Engine.BlueprintPathsLibrary.SetExtension +// 0x0030 (0x0030 - 0x0000) +struct BlueprintPathsLibrary_SetExtension final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString InNewExtension; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ReturnValue; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_SetExtension; + +// Function Engine.BlueprintPathsLibrary.SetProjectFilePath +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_SetProjectFilePath final +{ +public: + class FString NewGameProjectFilePath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_SetProjectFilePath; + +// Function Engine.BlueprintPathsLibrary.ShaderWorkingDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_ShaderWorkingDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ShaderWorkingDir; + +// Function Engine.BlueprintPathsLibrary.ShouldSaveToUserDir +// 0x0001 (0x0001 - 0x0000) +struct BlueprintPathsLibrary_ShouldSaveToUserDir final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ShouldSaveToUserDir; + +// Function Engine.BlueprintPathsLibrary.SourceConfigDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_SourceConfigDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_SourceConfigDir; + +// Function Engine.BlueprintPathsLibrary.Split +// 0x0040 (0x0040 - 0x0000) +struct BlueprintPathsLibrary_Split final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathPart; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FilenamePart; // 0x0020(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ExtensionPart; // 0x0030(0x0010)(Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_Split; + +// Function Engine.BlueprintPathsLibrary.ValidatePath +// 0x0028 (0x0028 - 0x0000) +struct BlueprintPathsLibrary_ValidatePath final +{ +public: + class FString InPath; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDidSucceed; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText OutReason; // 0x0018(0x0010)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_ValidatePath; + +// Function Engine.BlueprintPathsLibrary.VideoCaptureDir +// 0x0010 (0x0010 - 0x0000) +struct BlueprintPathsLibrary_VideoCaptureDir final +{ +public: + class FString ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//BlueprintPathsLibrary_VideoCaptureDir; + +// Function Engine.ImportanceSamplingLibrary.BreakImportanceTexture +// 0x0060 (0x0060 - 0x0000) +struct ImportanceSamplingLibrary_BreakImportanceTexture final +{ +public: + struct FImportanceTexture ImportanceTexture; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + class UTexture2D* Texture; // 0x0050(0x0008)(Parm, OutParm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EImportanceWeight WeightingFunc; // 0x0058(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ImportanceSamplingLibrary_BreakImportanceTexture; + +// Function Engine.ImportanceSamplingLibrary.ImportanceSample +// 0x0090 (0x0090 - 0x0000) +struct ImportanceSamplingLibrary_ImportanceSample final +{ +public: + struct FImportanceTexture Texture; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + struct FVector2D Rand; // 0x0050(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Samples; // 0x0060(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Intensity; // 0x0064(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D SamplePosition; // 0x0068(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor SampleColor; // 0x0078(0x0010)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SampleIntensity; // 0x0088(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SampleSize; // 0x008C(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_ImportanceSample; + +// Function Engine.ImportanceSamplingLibrary.MakeImportanceTexture +// 0x0060 (0x0060 - 0x0000) +struct ImportanceSamplingLibrary_MakeImportanceTexture final +{ +public: + class UTexture2D* Texture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EImportanceWeight WeightingFunc; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FImportanceTexture ReturnValue; // 0x0010(0x0050)(Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_MakeImportanceTexture; + +// Function Engine.ImportanceSamplingLibrary.NextSobolCell2D +// 0x0028 (0x0028 - 0x0000) +struct ImportanceSamplingLibrary_NextSobolCell2D final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCells; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D PreviousValue; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_NextSobolCell2D; + +// Function Engine.ImportanceSamplingLibrary.NextSobolCell3D +// 0x0038 (0x0038 - 0x0000) +struct ImportanceSamplingLibrary_NextSobolCell3D final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCells; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PreviousValue; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0020(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_NextSobolCell3D; + +// Function Engine.ImportanceSamplingLibrary.NextSobolFloat +// 0x0010 (0x0010 - 0x0000) +struct ImportanceSamplingLibrary_NextSobolFloat final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Dimension; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreviousValue; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_NextSobolFloat; + +// Function Engine.ImportanceSamplingLibrary.RandomSobolCell2D +// 0x0038 (0x0038 - 0x0000) +struct ImportanceSamplingLibrary_RandomSobolCell2D final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCells; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Cell; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Seed; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_RandomSobolCell2D; + +// Function Engine.ImportanceSamplingLibrary.RandomSobolCell3D +// 0x0050 (0x0050 - 0x0000) +struct ImportanceSamplingLibrary_RandomSobolCell3D final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCells; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Cell; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Seed; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0038(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_RandomSobolCell3D; + +// Function Engine.ImportanceSamplingLibrary.RandomSobolFloat +// 0x0010 (0x0010 - 0x0000) +struct ImportanceSamplingLibrary_RandomSobolFloat final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Dimension; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Seed; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ImportanceSamplingLibrary_RandomSobolFloat; + +// Function Engine.LevelInstanceInterface.SetWorldAsset +// 0x0030 (0x0030 - 0x0000) +struct LevelInstanceInterface_SetWorldAsset final +{ +public: + TSoftObjectPtr WorldAsset; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0028(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//LevelInstanceInterface_SetWorldAsset; + +// Function Engine.LevelInstanceInterface.GetLoadedLevel +// 0x0008 (0x0008 - 0x0000) +struct LevelInstanceInterface_GetLoadedLevel final +{ +public: + class ULevel* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelInstanceInterface_GetLoadedLevel; + +// Function Engine.LevelInstanceInterface.GetWorldAsset +// 0x0028 (0x0028 - 0x0000) +struct LevelInstanceInterface_GetWorldAsset final +{ +public: + TSoftObjectPtr ReturnValue; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelInstanceInterface_GetWorldAsset; + +// Function Engine.LevelInstanceInterface.IsLoaded +// 0x0001 (0x0001 - 0x0000) +struct LevelInstanceInterface_IsLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LevelInstanceInterface_IsLoaded; + +// Function Engine.PhysicsConstraintComponent.GetConstrainedComponents +// 0x0020 (0x0020 - 0x0000) +struct PhysicsConstraintComponent_GetConstrainedComponents final +{ +public: + class UPrimitiveComponent* OutComponent1; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OutBoneName1; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* OutComponent2; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OutBoneName2; // 0x0018(0x0008)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetConstrainedComponents; + +// Function Engine.PhysicsConstraintComponent.GetConstraint +// 0x000C (0x000C - 0x0000) +struct PhysicsConstraintComponent_GetConstraint final +{ +public: + struct FConstraintInstanceAccessor ReturnValue; // 0x0000(0x000C)(Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetConstraint; + +// Function Engine.PhysicsConstraintComponent.GetConstraintForce +// 0x0030 (0x0030 - 0x0000) +struct PhysicsConstraintComponent_GetConstraintForce final +{ +public: + struct FVector OutLinearForce; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OutAngularForce; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetConstraintForce; + +// Function Engine.PhysicsConstraintComponent.IsBroken +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_IsBroken final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_IsBroken; + +// Function Engine.PhysicsConstraintComponent.SetAngularBreakable +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetAngularBreakable final +{ +public: + bool bAngularBreakable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularBreakThreshold; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularBreakable; + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveAccelerationMode +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetAngularDriveAccelerationMode final +{ +public: + bool bAccelerationMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularDriveAccelerationMode; + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveMode +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetAngularDriveMode final +{ +public: + EAngularDriveMode DriveMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularDriveMode; + +// Function Engine.PhysicsConstraintComponent.SetAngularDriveParams +// 0x000C (0x000C - 0x0000) +struct PhysicsConstraintComponent_SetAngularDriveParams final +{ +public: + float PositionStrength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VelocityStrength; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InForceLimit; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularDriveParams; + +// Function Engine.PhysicsConstraintComponent.SetAngularOrientationDrive +// 0x0002 (0x0002 - 0x0000) +struct PhysicsConstraintComponent_SetAngularOrientationDrive final +{ +public: + bool bEnableSwingDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularOrientationDrive; + +// Function Engine.PhysicsConstraintComponent.SetAngularOrientationTarget +// 0x0018 (0x0018 - 0x0000) +struct PhysicsConstraintComponent_SetAngularOrientationTarget final +{ +public: + struct FRotator InPosTarget; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularOrientationTarget; + +// Function Engine.PhysicsConstraintComponent.SetAngularPlasticity +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetAngularPlasticity final +{ +public: + bool bAngularPlasticity; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngularPlasticityThreshold; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularPlasticity; + +// Function Engine.PhysicsConstraintComponent.SetAngularSwing1Limit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetAngularSwing1Limit final +{ +public: + EAngularConstraintMotion MotionType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing1LimitAngle; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularSwing1Limit; + +// Function Engine.PhysicsConstraintComponent.SetAngularSwing2Limit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetAngularSwing2Limit final +{ +public: + EAngularConstraintMotion MotionType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Swing2LimitAngle; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularSwing2Limit; + +// Function Engine.PhysicsConstraintComponent.SetAngularTwistLimit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetAngularTwistLimit final +{ +public: + EAngularConstraintMotion ConstraintType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TwistLimitAngle; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularTwistLimit; + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDrive +// 0x0002 (0x0002 - 0x0000) +struct PhysicsConstraintComponent_SetAngularVelocityDrive final +{ +public: + bool bEnableSwingDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableTwistDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularVelocityDrive; + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDriveSLERP +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetAngularVelocityDriveSLERP final +{ +public: + bool bEnableSLERP; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularVelocityDriveSLERP; + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityDriveTwistAndSwing +// 0x0002 (0x0002 - 0x0000) +struct PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing final +{ +public: + bool bEnableTwistDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSwingDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularVelocityDriveTwistAndSwing; + +// Function Engine.PhysicsConstraintComponent.SetAngularVelocityTarget +// 0x0018 (0x0018 - 0x0000) +struct PhysicsConstraintComponent_SetAngularVelocityTarget final +{ +public: + struct FVector InVelTarget; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetAngularVelocityTarget; + +// Function Engine.PhysicsConstraintComponent.SetConstrainedComponents +// 0x0020 (0x0020 - 0x0000) +struct PhysicsConstraintComponent_SetConstrainedComponents final +{ +public: + class UPrimitiveComponent* Component1; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName1; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UPrimitiveComponent* Component2; // 0x0010(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName2; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetConstrainedComponents; + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferenceFrame +// 0x0070 (0x0070 - 0x0000) +struct PhysicsConstraintComponent_SetConstraintReferenceFrame final +{ +public: + EConstraintFrame Frame; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0xF]; // 0x0001(0x000F)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform RefFrame; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetConstraintReferenceFrame; + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferenceOrientation +// 0x0038 (0x0038 - 0x0000) +struct PhysicsConstraintComponent_SetConstraintReferenceOrientation final +{ +public: + EConstraintFrame Frame; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector PriAxis; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SecAxis; // 0x0020(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetConstraintReferenceOrientation; + +// Function Engine.PhysicsConstraintComponent.SetConstraintReferencePosition +// 0x0020 (0x0020 - 0x0000) +struct PhysicsConstraintComponent_SetConstraintReferencePosition final +{ +public: + EConstraintFrame Frame; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector RefPosition; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetConstraintReferencePosition; + +// Function Engine.PhysicsConstraintComponent.SetContactTransferScale +// 0x0004 (0x0004 - 0x0000) +struct PhysicsConstraintComponent_SetContactTransferScale final +{ +public: + float ContactTransferScale; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetContactTransferScale; + +// Function Engine.PhysicsConstraintComponent.SetDisableCollision +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetDisableCollision final +{ +public: + bool bDisableCollision; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetDisableCollision; + +// Function Engine.PhysicsConstraintComponent.SetLinearBreakable +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetLinearBreakable final +{ +public: + bool bLinearBreakable; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearBreakThreshold; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearBreakable; + +// Function Engine.PhysicsConstraintComponent.SetLinearDriveAccelerationMode +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetLinearDriveAccelerationMode final +{ +public: + bool bAccelerationMode; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearDriveAccelerationMode; + +// Function Engine.PhysicsConstraintComponent.SetLinearDriveParams +// 0x000C (0x000C - 0x0000) +struct PhysicsConstraintComponent_SetLinearDriveParams final +{ +public: + float PositionStrength; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VelocityStrength; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InForceLimit; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearDriveParams; + +// Function Engine.PhysicsConstraintComponent.SetLinearPlasticity +// 0x000C (0x000C - 0x0000) +struct PhysicsConstraintComponent_SetLinearPlasticity final +{ +public: + bool bLinearPlasticity; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearPlasticityThreshold; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EConstraintPlasticityType PlasticityType; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicsConstraintComponent_SetLinearPlasticity; + +// Function Engine.PhysicsConstraintComponent.SetLinearPositionDrive +// 0x0003 (0x0003 - 0x0000) +struct PhysicsConstraintComponent_SetLinearPositionDrive final +{ +public: + bool bEnableDriveX; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveY; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveZ; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearPositionDrive; + +// Function Engine.PhysicsConstraintComponent.SetLinearPositionTarget +// 0x0018 (0x0018 - 0x0000) +struct PhysicsConstraintComponent_SetLinearPositionTarget final +{ +public: + struct FVector InPosTarget; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearPositionTarget; + +// Function Engine.PhysicsConstraintComponent.SetLinearVelocityDrive +// 0x0003 (0x0003 - 0x0000) +struct PhysicsConstraintComponent_SetLinearVelocityDrive final +{ +public: + bool bEnableDriveX; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveY; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDriveZ; // 0x0002(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearVelocityDrive; + +// Function Engine.PhysicsConstraintComponent.SetLinearVelocityTarget +// 0x0018 (0x0018 - 0x0000) +struct PhysicsConstraintComponent_SetLinearVelocityTarget final +{ +public: + struct FVector InVelTarget; // 0x0000(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearVelocityTarget; + +// Function Engine.PhysicsConstraintComponent.SetLinearXLimit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetLinearXLimit final +{ +public: + ELinearConstraintMotion ConstraintType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LimitSize; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearXLimit; + +// Function Engine.PhysicsConstraintComponent.SetLinearYLimit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetLinearYLimit final +{ +public: + ELinearConstraintMotion ConstraintType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LimitSize; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearYLimit; + +// Function Engine.PhysicsConstraintComponent.SetLinearZLimit +// 0x0008 (0x0008 - 0x0000) +struct PhysicsConstraintComponent_SetLinearZLimit final +{ +public: + ELinearConstraintMotion ConstraintType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LimitSize; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetLinearZLimit; + +// Function Engine.PhysicsConstraintComponent.SetOrientationDriveSLERP +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetOrientationDriveSLERP final +{ +public: + bool bEnableSLERP; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetOrientationDriveSLERP; + +// Function Engine.PhysicsConstraintComponent.SetOrientationDriveTwistAndSwing +// 0x0002 (0x0002 - 0x0000) +struct PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing final +{ +public: + bool bEnableTwistDrive; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSwingDrive; // 0x0001(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetOrientationDriveTwistAndSwing; + +// Function Engine.PhysicsConstraintComponent.SetProjectionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_SetProjectionEnabled final +{ +public: + bool bProjectionEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetProjectionEnabled; + +// Function Engine.PhysicsConstraintComponent.SetProjectionParams +// 0x0010 (0x0010 - 0x0000) +struct PhysicsConstraintComponent_SetProjectionParams final +{ +public: + float ProjectionLinearAlpha; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularAlpha; // 0x0004(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionLinearTolerance; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularTolerance; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_SetProjectionParams; + +// Function Engine.PhysicsConstraintComponent.GetCurrentSwing1 +// 0x0004 (0x0004 - 0x0000) +struct PhysicsConstraintComponent_GetCurrentSwing1 final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetCurrentSwing1; + +// Function Engine.PhysicsConstraintComponent.GetCurrentSwing2 +// 0x0004 (0x0004 - 0x0000) +struct PhysicsConstraintComponent_GetCurrentSwing2 final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetCurrentSwing2; + +// Function Engine.PhysicsConstraintComponent.GetCurrentTwist +// 0x0004 (0x0004 - 0x0000) +struct PhysicsConstraintComponent_GetCurrentTwist final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_GetCurrentTwist; + +// Function Engine.PhysicsConstraintComponent.IsProjectionEnabled +// 0x0001 (0x0001 - 0x0000) +struct PhysicsConstraintComponent_IsProjectionEnabled final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsConstraintComponent_IsProjectionEnabled; + +// Function Engine.LightWeightInstanceBlueprintFunctionLibrary.ConvertActorToLightWeightInstance +// 0x0028 (0x0028 - 0x0000) +struct LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FActorInstanceHandle ReturnValue; // 0x0008(0x0020)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightWeightInstanceBlueprintFunctionLibrary_ConvertActorToLightWeightInstance; + +// Function Engine.LightWeightInstanceBlueprintFunctionLibrary.CreateNewLightWeightInstance +// 0x00A0 (0x00A0 - 0x0000) +struct LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance final +{ +public: + class UClass* ActorClass; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0010(0x0060)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerInstance* Layer; // 0x0070(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorld* World; // 0x0078(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FActorInstanceHandle ReturnValue; // 0x0080(0x0020)(Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LightWeightInstanceBlueprintFunctionLibrary_CreateNewLightWeightInstance; + +// Function Engine.LocationVolume.IsLoaded +// 0x0001 (0x0001 - 0x0000) +struct LocationVolume_IsLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//LocationVolume_IsLoaded; + +// Function Engine.LODActor.OnSubActorEndPlay +// 0x0010 (0x0010 - 0x0000) +struct LODActor_OnSubActorEndPlay final +{ +public: + class AActor* Actor; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEndPlayReason Reason; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//LODActor_OnSubActorEndPlay; + +// Function Engine.MaterialParameterCollection.GetScalarParameterDefaultValue +// 0x0010 (0x0010 - 0x0000) +struct MaterialParameterCollection_GetScalarParameterDefaultValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bParameterFound; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x000C(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialParameterCollection_GetScalarParameterDefaultValue; + +// Function Engine.MaterialParameterCollection.GetScalarParameterNames +// 0x0010 (0x0010 - 0x0000) +struct MaterialParameterCollection_GetScalarParameterNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//MaterialParameterCollection_GetScalarParameterNames; + +// Function Engine.MaterialParameterCollection.GetVectorParameterDefaultValue +// 0x001C (0x001C - 0x0000) +struct MaterialParameterCollection_GetVectorParameterDefaultValue final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bParameterFound; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ReturnValue; // 0x000C(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MaterialParameterCollection_GetVectorParameterDefaultValue; + +// Function Engine.MaterialParameterCollection.GetVectorParameterNames +// 0x0010 (0x0010 - 0x0000) +struct MaterialParameterCollection_GetVectorParameterNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//MaterialParameterCollection_GetVectorParameterNames; + +// Function Engine.MeshVertexPainterKismetLibrary.PaintVerticesLerpAlongAxis +// 0x0030 (0x0030 - 0x0000) +struct MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis final +{ +public: + class UStaticMeshComponent* StaticMeshComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor StartColor; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor EndColor; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVertexPaintAxis Axis; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bConvertToSRGB; // 0x0029(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MeshVertexPainterKismetLibrary_PaintVerticesLerpAlongAxis; + +// Function Engine.MeshVertexPainterKismetLibrary.PaintVerticesSingleColor +// 0x0020 (0x0020 - 0x0000) +struct MeshVertexPainterKismetLibrary_PaintVerticesSingleColor final +{ +public: + class UStaticMeshComponent* StaticMeshComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FillColor; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bConvertToSRGB; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//MeshVertexPainterKismetLibrary_PaintVerticesSingleColor; + +// Function Engine.MeshVertexPainterKismetLibrary.RemovePaintedVertices +// 0x0008 (0x0008 - 0x0000) +struct MeshVertexPainterKismetLibrary_RemovePaintedVertices final +{ +public: + class UStaticMeshComponent* StaticMeshComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//MeshVertexPainterKismetLibrary_RemovePaintedVertices; + +// Function Engine.AsyncPhysicsInputComponent.ServerRPCBufferInput +// 0x0008 (0x0008 - 0x0000) +struct AsyncPhysicsInputComponent_ServerRPCBufferInput final +{ +public: + class UAsyncPhysicsData* AsyncPhysicsData; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncPhysicsInputComponent_ServerRPCBufferInput; + +// Function Engine.AsyncPhysicsInputComponent.GetDataToConsume +// 0x0008 (0x0008 - 0x0000) +struct AsyncPhysicsInputComponent_GetDataToConsume final +{ +public: + const class UAsyncPhysicsData* ReturnValue; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncPhysicsInputComponent_GetDataToConsume; + +// Function Engine.AsyncPhysicsInputComponent.GetDataToWrite +// 0x0008 (0x0008 - 0x0000) +struct AsyncPhysicsInputComponent_GetDataToWrite final +{ +public: + class UAsyncPhysicsData* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//AsyncPhysicsInputComponent_GetDataToWrite; + +// Function Engine.ClusterUnionActor.GetClusterUnionComponent +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionActor_GetClusterUnionComponent final +{ +public: + class UClusterUnionComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionActor_GetClusterUnionComponent; + +// Function Engine.ClusterUnionComponent.AddComponentToCluster +// 0x0020 (0x0020 - 0x0000) +struct ClusterUnionComponent_AddComponentToCluster final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BoneIds; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bRebuildGeometry; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ClusterUnionComponent_AddComponentToCluster; + +// Function Engine.ClusterUnionComponent.ForceSetChildToParent +// 0x0028 (0x0028 - 0x0000) +struct ClusterUnionComponent_ForceSetChildToParent final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BoneIds; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray ChildToParent; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_ForceSetChildToParent; + +// Function Engine.ClusterUnionComponent.GetActors +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionComponent_GetActors final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_GetActors; + +// Function Engine.ClusterUnionComponent.GetPrimitiveComponents +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionComponent_GetPrimitiveComponents final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_GetPrimitiveComponents; + +// Function Engine.ClusterUnionComponent.HandleComponentPhysicsStateChange +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionComponent_HandleComponentPhysicsStateChange final +{ +public: + class UPrimitiveComponent* ChangedComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EComponentPhysicsStateChange StateChange; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ClusterUnionComponent_HandleComponentPhysicsStateChange; + +// Function Engine.ClusterUnionComponent.HandleComponentPhysicsStateChangePostAddIntoClusterUnion +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion final +{ +public: + class UPrimitiveComponent* ChangedComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EComponentPhysicsStateChange StateChange; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ClusterUnionComponent_HandleComponentPhysicsStateChangePostAddIntoClusterUnion; + +// Function Engine.ClusterUnionComponent.IsComponentAdded +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionComponent_IsComponentAdded final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//ClusterUnionComponent_IsComponentAdded; + +// Function Engine.ClusterUnionComponent.RemoveComponentBonesFromCluster +// 0x0018 (0x0018 - 0x0000) +struct ClusterUnionComponent_RemoveComponentBonesFromCluster final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BoneIds; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_RemoveComponentBonesFromCluster; + +// Function Engine.ClusterUnionComponent.RemoveComponentFromCluster +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionComponent_RemoveComponentFromCluster final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_RemoveComponentFromCluster; + +// Function Engine.ClusterUnionComponent.SetEnableDamageFromCollision +// 0x0001 (0x0001 - 0x0000) +struct ClusterUnionComponent_SetEnableDamageFromCollision final +{ +public: + bool bValue; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_SetEnableDamageFromCollision; + +// Function Engine.ClusterUnionComponent.SetIsAnchored +// 0x0001 (0x0001 - 0x0000) +struct ClusterUnionComponent_SetIsAnchored final +{ +public: + bool bIsAnchored; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_SetIsAnchored; + +// Function Engine.ClusterUnionComponent.IsAuthority +// 0x0001 (0x0001 - 0x0000) +struct ClusterUnionComponent_IsAuthority final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionComponent_IsAuthority; + +// Function Engine.ClusterUnionReplicatedProxyComponent.IsPendingDeletion +// 0x0001 (0x0001 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_IsPendingDeletion final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_IsPendingDeletion; + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetChildClusteredComponent +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent final +{ +public: + class UPrimitiveComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_SetChildClusteredComponent; + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParentClusterUnion +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_SetParentClusterUnion final +{ +public: + class UClusterUnionComponent* InComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_SetParentClusterUnion; + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParticleBoneIds +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_SetParticleBoneIds final +{ +public: + TArray InIds; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_SetParticleBoneIds; + +// Function Engine.ClusterUnionReplicatedProxyComponent.SetParticleChildToParent +// 0x0070 (0x0070 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_SetParticleChildToParent final +{ +public: + int32 BoneID; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ChildToParent; // 0x0010(0x0060)(ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_SetParticleChildToParent; + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetChildClusteredComponent +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_GetChildClusteredComponent final +{ +public: + class UPrimitiveComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_GetChildClusteredComponent; + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetParentClusterUnionComponent +// 0x0008 (0x0008 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent final +{ +public: + class UClusterUnionComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_GetParentClusterUnionComponent; + +// Function Engine.ClusterUnionReplicatedProxyComponent.GetParticleBoneIds +// 0x0010 (0x0010 - 0x0000) +struct ClusterUnionReplicatedProxyComponent_GetParticleBoneIds final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//ClusterUnionReplicatedProxyComponent_GetParticleBoneIds; + +// Function Engine.PhysicsHandleComponent.GrabComponent +// 0x0030 (0x0030 - 0x0000) +struct PhysicsHandleComponent_GrabComponent final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InBoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector GrabLocation; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bConstrainRotation; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//PhysicsHandleComponent_GrabComponent; + +// Function Engine.PhysicsHandleComponent.GrabComponentAtLocation +// 0x0028 (0x0028 - 0x0000) +struct PhysicsHandleComponent_GrabComponentAtLocation final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InBoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector GrabLocation; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_GrabComponentAtLocation; + +// Function Engine.PhysicsHandleComponent.GrabComponentAtLocationWithRotation +// 0x0040 (0x0040 - 0x0000) +struct PhysicsHandleComponent_GrabComponentAtLocationWithRotation final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InBoneName; // 0x0008(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_GrabComponentAtLocationWithRotation; + +// Function Engine.PhysicsHandleComponent.SetAngularDamping +// 0x0004 (0x0004 - 0x0000) +struct PhysicsHandleComponent_SetAngularDamping final +{ +public: + float NewAngularDamping; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetAngularDamping; + +// Function Engine.PhysicsHandleComponent.SetAngularStiffness +// 0x0004 (0x0004 - 0x0000) +struct PhysicsHandleComponent_SetAngularStiffness final +{ +public: + float NewAngularStiffness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetAngularStiffness; + +// Function Engine.PhysicsHandleComponent.SetInterpolationSpeed +// 0x0004 (0x0004 - 0x0000) +struct PhysicsHandleComponent_SetInterpolationSpeed final +{ +public: + float NewInterpolationSpeed; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetInterpolationSpeed; + +// Function Engine.PhysicsHandleComponent.SetLinearDamping +// 0x0004 (0x0004 - 0x0000) +struct PhysicsHandleComponent_SetLinearDamping final +{ +public: + float NewLinearDamping; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetLinearDamping; + +// Function Engine.PhysicsHandleComponent.SetLinearStiffness +// 0x0004 (0x0004 - 0x0000) +struct PhysicsHandleComponent_SetLinearStiffness final +{ +public: + float NewLinearStiffness; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetLinearStiffness; + +// Function Engine.PhysicsHandleComponent.SetTargetLocation +// 0x0018 (0x0018 - 0x0000) +struct PhysicsHandleComponent_SetTargetLocation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetTargetLocation; + +// Function Engine.PhysicsHandleComponent.SetTargetLocationAndRotation +// 0x0030 (0x0030 - 0x0000) +struct PhysicsHandleComponent_SetTargetLocationAndRotation final +{ +public: + struct FVector NewLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator NewRotation; // 0x0018(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetTargetLocationAndRotation; + +// Function Engine.PhysicsHandleComponent.SetTargetRotation +// 0x0018 (0x0018 - 0x0000) +struct PhysicsHandleComponent_SetTargetRotation final +{ +public: + struct FRotator NewRotation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_SetTargetRotation; + +// Function Engine.PhysicsHandleComponent.GetGrabbedComponent +// 0x0008 (0x0008 - 0x0000) +struct PhysicsHandleComponent_GetGrabbedComponent final +{ +public: + class UPrimitiveComponent* ReturnValue; // 0x0000(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_GetGrabbedComponent; + +// Function Engine.PhysicsHandleComponent.GetTargetLocationAndRotation +// 0x0030 (0x0030 - 0x0000) +struct PhysicsHandleComponent_GetTargetLocationAndRotation final +{ +public: + struct FVector TargetLocation; // 0x0000(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator TargetRotation; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//PhysicsHandleComponent_GetTargetLocationAndRotation; + +// Function Engine.RadialForceComponent.AddObjectTypeToAffect +// 0x0001 (0x0001 - 0x0000) +struct RadialForceComponent_AddObjectTypeToAffect final +{ +public: + EObjectTypeQuery ObjectType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RadialForceComponent_AddObjectTypeToAffect; + +// Function Engine.RadialForceComponent.RemoveObjectTypeToAffect +// 0x0001 (0x0001 - 0x0000) +struct RadialForceComponent_RemoveObjectTypeToAffect final +{ +public: + EObjectTypeQuery ObjectType; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RadialForceComponent_RemoveObjectTypeToAffect; + +// Function Engine.PhysicsFieldStatics.EvalPhysicsIntegerField +// 0x0028 (0x0028 - 0x0000) +struct PhysicsFieldStatics_EvalPhysicsIntegerField final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldIntegerType IntegerType; // 0x0020(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsFieldStatics_EvalPhysicsIntegerField; + +// Function Engine.PhysicsFieldStatics.EvalPhysicsScalarField +// 0x0028 (0x0028 - 0x0000) +struct PhysicsFieldStatics_EvalPhysicsScalarField final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldScalarType ScalarType; // 0x0020(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ReturnValue; // 0x0024(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsFieldStatics_EvalPhysicsScalarField; + +// Function Engine.PhysicsFieldStatics.EvalPhysicsVectorField +// 0x0040 (0x0040 - 0x0000) +struct PhysicsFieldStatics_EvalPhysicsVectorField final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldPosition; // 0x0008(0x0018)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFieldVectorType VectorType; // 0x0020(0x0001)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector ReturnValue; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PhysicsFieldStatics_EvalPhysicsVectorField; + +// Function Engine.HealthSnapshotBlueprintLibrary.LogPerformanceSnapshot +// 0x0018 (0x0018 - 0x0000) +struct HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot final +{ +public: + class FString SnapshotTitle; // 0x0000(0x0010)(ConstParm, Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResetStats; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//HealthSnapshotBlueprintLibrary_LogPerformanceSnapshot; + +// Function Engine.SkinnedAsset.FindSocket +// 0x0010 (0x0010 - 0x0000) +struct SkinnedAsset_FindSocket final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USkeletalMeshSocket* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedAsset_FindSocket; + +// Function Engine.SkinnedAsset.FindSocketInfo +// 0x0080 (0x0080 - 0x0000) +struct SkinnedAsset_FindSocketInfo final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform OutTransform; // 0x0010(0x0060)(Parm, OutParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutBoneIndex; // 0x0070(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutIndex; // 0x0074(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USkeletalMeshSocket* ReturnValue; // 0x0078(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkinnedAsset_FindSocketInfo; + +// Function Engine.SkeletalMesh.SetDefaultAnimatingRig +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMesh_SetDefaultAnimatingRig final +{ +public: + TSoftObjectPtr InAnimatingRig; // 0x0000(0x0028)(Parm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetDefaultAnimatingRig; + +// Function Engine.SkeletalMesh.SetLODSettings +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_SetLODSettings final +{ +public: + class USkeletalMeshLODSettings* InLODSettings; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetLODSettings; + +// Function Engine.SkeletalMesh.SetMaterials +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_SetMaterials final +{ +public: + TArray InMaterials; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetMaterials; + +// Function Engine.SkeletalMesh.SetMeshClothingAssets +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_SetMeshClothingAssets final +{ +public: + TArray InMeshClothingAssets; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetMeshClothingAssets; + +// Function Engine.SkeletalMesh.SetMinLODForQualityLevels +// 0x0058 (0x0058 - 0x0000) +struct SkeletalMesh_SetMinLODForQualityLevels final +{ +public: + TMap QualityLevelMinimumLODs; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Default; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMesh_SetMinLODForQualityLevels; + +// Function Engine.SkeletalMesh.SetMorphTargets +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_SetMorphTargets final +{ +public: + TArray InMorphTargets; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetMorphTargets; + +// Function Engine.SkeletalMesh.SetOverlayMaterial +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_SetOverlayMaterial final +{ +public: + class UMaterialInterface* NewOverlayMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetOverlayMaterial; + +// Function Engine.SkeletalMesh.SetOverlayMaterialMaxDrawDistance +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMesh_SetOverlayMaterialMaxDrawDistance final +{ +public: + float InMaxDrawDistance; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetOverlayMaterialMaxDrawDistance; + +// Function Engine.SkeletalMesh.SetSkeleton +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_SetSkeleton final +{ +public: + class USkeleton* InSkeleton; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_SetSkeleton; + +// Function Engine.SkeletalMesh.FindSocketAndIndex +// 0x0018 (0x0018 - 0x0000) +struct SkeletalMesh_FindSocketAndIndex final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutIndex; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeletalMeshSocket* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_FindSocketAndIndex; + +// Function Engine.SkeletalMesh.GetBounds +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMesh_GetBounds final +{ +public: + struct FBoxSphereBounds ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetBounds; + +// Function Engine.SkeletalMesh.GetDefaultAnimatingRig +// 0x0028 (0x0028 - 0x0000) +struct SkeletalMesh_GetDefaultAnimatingRig final +{ +public: + TSoftObjectPtr ReturnValue; // 0x0000(0x0028)(Parm, OutParm, ReturnParm, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetDefaultAnimatingRig; + +// Function Engine.SkeletalMesh.GetDefaultMeshDeformer +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetDefaultMeshDeformer final +{ +public: + class UMeshDeformer* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetDefaultMeshDeformer; + +// Function Engine.SkeletalMesh.GetHasVertexColors +// 0x0001 (0x0001 - 0x0000) +struct SkeletalMesh_GetHasVertexColors final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetHasVertexColors; + +// Function Engine.SkeletalMesh.GetImportedBounds +// 0x0038 (0x0038 - 0x0000) +struct SkeletalMesh_GetImportedBounds final +{ +public: + struct FBoxSphereBounds ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetImportedBounds; + +// Function Engine.SkeletalMesh.GetLODSettings +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetLODSettings final +{ +public: + const class USkeletalMeshLODSettings* ReturnValue; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetLODSettings; + +// Function Engine.SkeletalMesh.GetMaterials +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetMaterials final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetMaterials; + +// Function Engine.SkeletalMesh.GetMeshClothingAssets +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetMeshClothingAssets final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetMeshClothingAssets; + +// Function Engine.SkeletalMesh.GetMinLODForQualityLevels +// 0x0058 (0x0058 - 0x0000) +struct SkeletalMesh_GetMinLODForQualityLevels final +{ +public: + TMap QualityLevelMinimumLODs; // 0x0000(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) + int32 Default; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMesh_GetMinLODForQualityLevels; + +// Function Engine.SkeletalMesh.GetMorphTargetsPtrConv +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetMorphTargetsPtrConv final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetMorphTargetsPtrConv; + +// Function Engine.SkeletalMesh.GetNodeMappingContainer +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetNodeMappingContainer final +{ +public: + class UBlueprint* SourceAsset; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UNodeMappingContainer* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetNodeMappingContainer; + +// Function Engine.SkeletalMesh.GetNodeMappingData +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetNodeMappingData final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetNodeMappingData; + +// Function Engine.SkeletalMesh.GetOverlayMaterial +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetOverlayMaterial final +{ +public: + class UMaterialInterface* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetOverlayMaterial; + +// Function Engine.SkeletalMesh.GetOverlayMaterialMaxDrawDistance +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMesh_GetOverlayMaterialMaxDrawDistance final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetOverlayMaterialMaxDrawDistance; + +// Function Engine.SkeletalMesh.GetPhysicsAsset +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetPhysicsAsset final +{ +public: + class UPhysicsAsset* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetPhysicsAsset; + +// Function Engine.SkeletalMesh.GetShadowPhysicsAsset +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetShadowPhysicsAsset final +{ +public: + class UPhysicsAsset* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetShadowPhysicsAsset; + +// Function Engine.SkeletalMesh.GetSkeleton +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_GetSkeleton final +{ +public: + const class USkeleton* ReturnValue; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetSkeleton; + +// Function Engine.SkeletalMesh.GetSocketByIndex +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_GetSocketByIndex final +{ +public: + int32 Index_0; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USkeletalMeshSocket* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_GetSocketByIndex; + +// Function Engine.SkeletalMesh.IsSectionUsingCloth +// 0x0008 (0x0008 - 0x0000) +struct SkeletalMesh_IsSectionUsingCloth final +{ +public: + int32 InSectionIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCheckCorrespondingSections; // 0x0004(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0005(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SkeletalMesh_IsSectionUsingCloth; + +// Function Engine.SkeletalMesh.K2_GetAllMorphTargetNames +// 0x0010 (0x0010 - 0x0000) +struct SkeletalMesh_K2_GetAllMorphTargetNames final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_K2_GetAllMorphTargetNames; + +// Function Engine.SkeletalMesh.NumSockets +// 0x0004 (0x0004 - 0x0000) +struct SkeletalMesh_NumSockets final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SkeletalMesh_NumSockets; + +// Function Engine.SoundSubmix.AddEnvelopeFollowerDelegate +// 0x0018 (0x0018 - 0x0000) +struct SoundSubmix_AddEnvelopeFollowerDelegate final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate& Envelope)> OnSubmixEnvelopeBP; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_AddEnvelopeFollowerDelegate; + +// Function Engine.SoundSubmix.AddSpectralAnalysisDelegate +// 0x0040 (0x0040 - 0x0000) +struct SoundSubmix_AddSpectralAnalysisDelegate final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray InBandSettings; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TDelegate& Magnitude)> OnSubmixSpectralAnalysisBP; // 0x0018(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UpdateRate; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DecibelNoiseFloor; // 0x002C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDoNormalize; // 0x0030(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDoAutoRange; // 0x0031(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoRangeAttackTime; // 0x0034(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoRangeReleaseTime; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_AddSpectralAnalysisDelegate; + +// Function Engine.SoundSubmix.RemoveEnvelopeFollowerDelegate +// 0x0018 (0x0018 - 0x0000) +struct SoundSubmix_RemoveEnvelopeFollowerDelegate final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate& Envelope)> OnSubmixEnvelopeBP; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_RemoveEnvelopeFollowerDelegate; + +// Function Engine.SoundSubmix.RemoveSpectralAnalysisDelegate +// 0x0018 (0x0018 - 0x0000) +struct SoundSubmix_RemoveSpectralAnalysisDelegate final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate& Magnitude)> OnSubmixSpectralAnalysisBP; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_RemoveSpectralAnalysisDelegate; + +// Function Engine.SoundSubmix.SetDryVolumeModulation +// 0x0058 (0x0058 - 0x0000) +struct SoundSubmix_SetDryVolumeModulation final +{ +public: + struct FSoundModulationDestinationSettings InVolMod; // 0x0000(0x0058)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SoundSubmix_SetDryVolumeModulation; + +// Function Engine.SoundSubmix.SetOutputVolumeModulation +// 0x0058 (0x0058 - 0x0000) +struct SoundSubmix_SetOutputVolumeModulation final +{ +public: + struct FSoundModulationDestinationSettings InVolMod; // 0x0000(0x0058)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SoundSubmix_SetOutputVolumeModulation; + +// Function Engine.SoundSubmix.SetSubmixDryLevel +// 0x0010 (0x0010 - 0x0000) +struct SoundSubmix_SetSubmixDryLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InDryLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_SetSubmixDryLevel; + +// Function Engine.SoundSubmix.SetSubmixOutputVolume +// 0x0010 (0x0010 - 0x0000) +struct SoundSubmix_SetSubmixOutputVolume final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InOutputVolume; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_SetSubmixOutputVolume; + +// Function Engine.SoundSubmix.SetSubmixWetLevel +// 0x0010 (0x0010 - 0x0000) +struct SoundSubmix_SetSubmixWetLevel final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InWetLevel; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_SetSubmixWetLevel; + +// Function Engine.SoundSubmix.SetWetVolumeModulation +// 0x0058 (0x0058 - 0x0000) +struct SoundSubmix_SetWetVolumeModulation final +{ +public: + struct FSoundModulationDestinationSettings InVolMod; // 0x0000(0x0058)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//SoundSubmix_SetWetVolumeModulation; + +// Function Engine.SoundSubmix.StartEnvelopeFollowing +// 0x0008 (0x0008 - 0x0000) +struct SoundSubmix_StartEnvelopeFollowing final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_StartEnvelopeFollowing; + +// Function Engine.SoundSubmix.StartRecordingOutput +// 0x0010 (0x0010 - 0x0000) +struct SoundSubmix_StartRecordingOutput final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExpectedDuration; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_StartRecordingOutput; + +// Function Engine.SoundSubmix.StartSpectralAnalysis +// 0x0018 (0x0018 - 0x0000) +struct SoundSubmix_StartSpectralAnalysis final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFFTSize FFTSize; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFFTPeakInterpolationMethod InterpolationMethod; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFFTWindowType WindowType; // 0x000A(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float HopSize; // 0x000C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioSpectrumType SpectrumType; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//SoundSubmix_StartSpectralAnalysis; + +// Function Engine.SoundSubmix.StopEnvelopeFollowing +// 0x0008 (0x0008 - 0x0000) +struct SoundSubmix_StopEnvelopeFollowing final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_StopEnvelopeFollowing; + +// Function Engine.SoundSubmix.StopRecordingOutput +// 0x0038 (0x0038 - 0x0000) +struct SoundSubmix_StopRecordingOutput final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioRecordingExportType ExportType; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Name_0; // 0x0010(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Path; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundWave* ExistingSoundWaveToOverwrite; // 0x0030(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_StopRecordingOutput; + +// Function Engine.SoundSubmix.StopSpectralAnalysis +// 0x0008 (0x0008 - 0x0000) +struct SoundSubmix_StopSpectralAnalysis final +{ +public: + const class UObject* WorldContextObject; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SoundSubmix_StopSpectralAnalysis; + +// Function Engine.StaticMesh.CreateStaticMeshDescription +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_CreateStaticMeshDescription final +{ +public: + class UObject* Outer_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UStaticMeshDescription* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_CreateStaticMeshDescription; + +// Function Engine.StaticMesh.AddMaterial +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_AddMaterial final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_AddMaterial; + +// Function Engine.StaticMesh.AddSocket +// 0x0008 (0x0008 - 0x0000) +struct StaticMesh_AddSocket final +{ +public: + class UStaticMeshSocket* Socket; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_AddSocket; + +// Function Engine.StaticMesh.BuildFromStaticMeshDescriptions +// 0x0018 (0x0018 - 0x0000) +struct StaticMesh_BuildFromStaticMeshDescriptions final +{ +public: + TArray StaticMeshDescriptions; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bBuildSimpleCollision; // 0x0010(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFastBuild; // 0x0011(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//StaticMesh_BuildFromStaticMeshDescriptions; + +// Function Engine.StaticMesh.GetStaticMeshDescription +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_GetStaticMeshDescription final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UStaticMeshDescription* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetStaticMeshDescription; + +// Function Engine.StaticMesh.RemoveSocket +// 0x0008 (0x0008 - 0x0000) +struct StaticMesh_RemoveSocket final +{ +public: + class UStaticMeshSocket* Socket; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_RemoveSocket; + +// Function Engine.StaticMesh.SetMinimumLODForPlatform +// 0x000C (0x000C - 0x0000) +struct StaticMesh_SetMinimumLODForPlatform final +{ +public: + class FName PlatformName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InMinLOD; // 0x0008(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_SetMinimumLODForPlatform; + +// Function Engine.StaticMesh.SetMinimumLODForPlatforms +// 0x0050 (0x0050 - 0x0000) +struct StaticMesh_SetMinimumLODForPlatforms final +{ +public: + TMap PlatformMinimumLODs; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_SetMinimumLODForPlatforms; + +// Function Engine.StaticMesh.SetMinLODForQualityLevels +// 0x0058 (0x0058 - 0x0000) +struct StaticMesh_SetMinLODForQualityLevels final +{ +public: + TMap QualityLevelMinimumLODs; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + int32 Default; // 0x0050(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//StaticMesh_SetMinLODForQualityLevels; + +// Function Engine.StaticMesh.SetStaticMaterials +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_SetStaticMaterials final +{ +public: + TArray InStaticMaterials; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_SetStaticMaterials; + +// Function Engine.StaticMesh.FindSocket +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_FindSocket final +{ +public: + class FName InSocketName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UStaticMeshSocket* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_FindSocket; + +// Function Engine.StaticMesh.GetBoundingBox +// 0x0038 (0x0038 - 0x0000) +struct StaticMesh_GetBoundingBox final +{ +public: + struct FBox ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetBoundingBox; + +// Function Engine.StaticMesh.GetBounds +// 0x0038 (0x0038 - 0x0000) +struct StaticMesh_GetBounds final +{ +public: + struct FBoxSphereBounds ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetBounds; + +// Function Engine.StaticMesh.GetMaterial +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_GetMaterial final +{ +public: + int32 MaterialIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMaterial; + +// Function Engine.StaticMesh.GetMaterialIndex +// 0x000C (0x000C - 0x0000) +struct StaticMesh_GetMaterialIndex final +{ +public: + class FName MaterialSlotName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMaterialIndex; + +// Function Engine.StaticMesh.GetMinimumLODForPlatform +// 0x000C (0x000C - 0x0000) +struct StaticMesh_GetMinimumLODForPlatform final +{ +public: + class FName PlatformName; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMinimumLODForPlatform; + +// Function Engine.StaticMesh.GetMinimumLODForPlatforms +// 0x0050 (0x0050 - 0x0000) +struct StaticMesh_GetMinimumLODForPlatforms final +{ +public: + TMap PlatformMinimumLODs; // 0x0000(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMinimumLODForPlatforms; + +// Function Engine.StaticMesh.GetMinimumLODForQualityLevel +// 0x000C (0x000C - 0x0000) +struct StaticMesh_GetMinimumLODForQualityLevel final +{ +public: + class FName QualityLevel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0008(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMinimumLODForQualityLevel; + +// Function Engine.StaticMesh.GetMinimumLODForQualityLevels +// 0x0050 (0x0050 - 0x0000) +struct StaticMesh_GetMinimumLODForQualityLevels final +{ +public: + TMap QualityLevelMinimumLODs; // 0x0000(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetMinimumLODForQualityLevels; + +// Function Engine.StaticMesh.GetMinLODForQualityLevels +// 0x0058 (0x0058 - 0x0000) +struct StaticMesh_GetMinLODForQualityLevels final +{ +public: + TMap QualityLevelMinimumLODs; // 0x0000(0x0050)(Parm, OutParm, NativeAccessSpecifierPublic) + int32 Default; // 0x0050(0x0004)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//StaticMesh_GetMinLODForQualityLevels; + +// Function Engine.StaticMesh.GetNumLODs +// 0x0004 (0x0004 - 0x0000) +struct StaticMesh_GetNumLODs final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetNumLODs; + +// Function Engine.StaticMesh.GetNumSections +// 0x0008 (0x0008 - 0x0000) +struct StaticMesh_GetNumSections final +{ +public: + int32 InLOD; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetNumSections; + +// Function Engine.StaticMesh.GetNumTriangles +// 0x0008 (0x0008 - 0x0000) +struct StaticMesh_GetNumTriangles final +{ +public: + int32 LODIndex; // 0x0000(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReturnValue; // 0x0004(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetNumTriangles; + +// Function Engine.StaticMesh.GetSocketsByTag +// 0x0020 (0x0020 - 0x0000) +struct StaticMesh_GetSocketsByTag final +{ +public: + class FString InSocketTag; // 0x0000(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReturnValue; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetSocketsByTag; + +// Function Engine.StaticMesh.GetStaticMaterials +// 0x0010 (0x0010 - 0x0000) +struct StaticMesh_GetStaticMaterials final +{ +public: + TArray ReturnValue; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//StaticMesh_GetStaticMaterials; + +// Function Engine.SubsystemBlueprintLibrary.GetAudioEngineSubsystem +// 0x0018 (0x0018 - 0x0000) +struct SubsystemBlueprintLibrary_GetAudioEngineSubsystem final +{ +public: + class UObject* ContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAudioEngineSubsystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetAudioEngineSubsystem; + +// Function Engine.SubsystemBlueprintLibrary.GetEngineSubsystem +// 0x0010 (0x0010 - 0x0000) +struct SubsystemBlueprintLibrary_GetEngineSubsystem final +{ +public: + TSubclassOf Class_0; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UEngineSubsystem* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetEngineSubsystem; + +// Function Engine.SubsystemBlueprintLibrary.GetGameInstanceSubsystem +// 0x0018 (0x0018 - 0x0000) +struct SubsystemBlueprintLibrary_GetGameInstanceSubsystem final +{ +public: + class UObject* ContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UGameInstanceSubsystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetGameInstanceSubsystem; + +// Function Engine.SubsystemBlueprintLibrary.GetLocalPlayerSubsystem +// 0x0018 (0x0018 - 0x0000) +struct SubsystemBlueprintLibrary_GetLocalPlayerSubsystem final +{ +public: + class UObject* ContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULocalPlayerSubsystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetLocalPlayerSubsystem; + +// Function Engine.SubsystemBlueprintLibrary.GetLocalPlayerSubSystemFromPlayerController +// 0x0018 (0x0018 - 0x0000) +struct SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController final +{ +public: + class APlayerController* PlayerController; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class ULocalPlayerSubsystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetLocalPlayerSubSystemFromPlayerController; + +// Function Engine.SubsystemBlueprintLibrary.GetWorldSubsystem +// 0x0018 (0x0018 - 0x0000) +struct SubsystemBlueprintLibrary_GetWorldSubsystem final +{ +public: + class UObject* ContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class_0; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UWorldSubsystem* ReturnValue; // 0x0010(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//SubsystemBlueprintLibrary_GetWorldSubsystem; + +// Function Engine.UserInterfaceSettings.ShouldDisplayDistanceFieldFontSettings +// 0x0001 (0x0001 - 0x0000) +struct UserInterfaceSettings_ShouldDisplayDistanceFieldFontSettings final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//UserInterfaceSettings_ShouldDisplayDistanceFieldFontSettings; + +// Function Engine.Canvas.K2_Deproject +// 0x0040 (0x0040 - 0x0000) +struct Canvas_K2_Deproject final +{ +public: + struct FVector2D ScreenPosition; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldOrigin; // 0x0010(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector WorldDirection; // 0x0028(0x0018)(Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_Deproject; + +// Function Engine.Canvas.K2_DrawBorder +// 0x00C8 (0x00C8 - 0x0000) +struct Canvas_K2_DrawBorder final +{ +public: + class UTexture* BorderTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* BackgroundTexture; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* LeftBorderTexture; // 0x0010(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* RightBorderTexture; // 0x0018(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* TopBorderTexture; // 0x0020(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* BottomBorderTexture; // 0x0028(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0030(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenSize; // 0x0040(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinatePosition; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinateSize; // 0x0060(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x0070(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D BorderScale; // 0x0080(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D BackgroundScale; // 0x0090(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Rotation; // 0x00A0(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x4]; // 0x00A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D PivotPoint; // 0x00A8(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CornerSize; // 0x00B8(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_DrawBorder; + +// Function Engine.Canvas.K2_DrawBox +// 0x0038 (0x0038 - 0x0000) +struct Canvas_K2_DrawBox final +{ +public: + struct FVector2D ScreenPosition; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenSize; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x0024(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Canvas_K2_DrawBox; + +// Function Engine.Canvas.K2_DrawLine +// 0x0038 (0x0038 - 0x0000) +struct Canvas_K2_DrawLine final +{ +public: + struct FVector2D ScreenPositionA; // 0x0000(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPositionB; // 0x0010(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x0024(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Canvas_K2_DrawLine; + +// Function Engine.Canvas.K2_DrawMaterial +// 0x0060 (0x0060 - 0x0000) +struct Canvas_K2_DrawMaterial final +{ +public: + class UMaterialInterface* RenderMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenSize; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinatePosition; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinateSize; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Rotation; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D PivotPoint; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_DrawMaterial; + +// Function Engine.Canvas.K2_DrawMaterialTriangle +// 0x0018 (0x0018 - 0x0000) +struct Canvas_K2_DrawMaterialTriangle final +{ +public: + class UMaterialInterface* RenderMaterial; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Triangles; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//Canvas_K2_DrawMaterialTriangle; + +// Function Engine.Canvas.K2_DrawPolygon +// 0x0040 (0x0040 - 0x0000) +struct Canvas_K2_DrawPolygon final +{ +public: + class UTexture* RenderTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Radius; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumberOfSides; // 0x0028(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x002C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Canvas_K2_DrawPolygon; + +// Function Engine.Canvas.K2_DrawText +// 0x0088 (0x0088 - 0x0000) +struct Canvas_K2_DrawText final +{ +public: + class UFont* RenderFont; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString RenderText; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Scale; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Kerning; // 0x0048(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ShadowColor; // 0x004C(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D ShadowOffset; // 0x0060(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCentreX; // 0x0070(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCentreY; // 0x0071(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOutlined; // 0x0072(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_73[0x1]; // 0x0073(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor OutlineColor; // 0x0074(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//Canvas_K2_DrawText; + +// Function Engine.Canvas.K2_DrawTexture +// 0x0070 (0x0070 - 0x0000) +struct Canvas_K2_DrawTexture final +{ +public: + class UTexture* RenderTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenPosition; // 0x0008(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ScreenSize; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinatePosition; // 0x0028(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CoordinateSize; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor RenderColor; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlendMode BlendMode; // 0x0058(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Rotation; // 0x005C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D PivotPoint; // 0x0060(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_DrawTexture; + +// Function Engine.Canvas.K2_DrawTriangle +// 0x0018 (0x0018 - 0x0000) +struct Canvas_K2_DrawTriangle final +{ +public: + class UTexture* RenderTexture; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Triangles; // 0x0008(0x0010)(Parm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//Canvas_K2_DrawTriangle; + +// Function Engine.Canvas.K2_Project +// 0x0030 (0x0030 - 0x0000) +struct Canvas_K2_Project final +{ +public: + struct FVector WorldLocation; // 0x0000(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ReturnValue; // 0x0018(0x0018)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_Project; + +// Function Engine.Canvas.K2_StrLen +// 0x0028 (0x0028 - 0x0000) +struct Canvas_K2_StrLen final +{ +public: + class UFont* RenderFont; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString RenderText; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0018(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_StrLen; + +// Function Engine.Canvas.K2_TextSize +// 0x0038 (0x0038 - 0x0000) +struct Canvas_K2_TextSize final +{ +public: + class UFont* RenderFont; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString RenderText; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Scale; // 0x0018(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ReturnValue; // 0x0028(0x0010)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//Canvas_K2_TextSize; + +// Function Engine.InputSettings.GetInputSettings +// 0x0008 (0x0008 - 0x0000) +struct InputSettings_GetInputSettings final +{ +public: + class UInputSettings* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//InputSettings_GetInputSettings; + +// Function Engine.InputSettings.AddActionMapping +// 0x0030 (0x0030 - 0x0000) +struct InputSettings_AddActionMapping final +{ +public: + struct FInputActionKeyMapping KeyMapping; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool bForceRebuildKeymaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputSettings_AddActionMapping; + +// Function Engine.InputSettings.AddAxisMapping +// 0x0030 (0x0030 - 0x0000) +struct InputSettings_AddAxisMapping final +{ +public: + struct FInputAxisKeyMapping KeyMapping; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool bForceRebuildKeymaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputSettings_AddAxisMapping; + +// Function Engine.InputSettings.RemoveActionMapping +// 0x0030 (0x0030 - 0x0000) +struct InputSettings_RemoveActionMapping final +{ +public: + struct FInputActionKeyMapping KeyMapping; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool bForceRebuildKeymaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputSettings_RemoveActionMapping; + +// Function Engine.InputSettings.RemoveAxisMapping +// 0x0030 (0x0030 - 0x0000) +struct InputSettings_RemoveAxisMapping final +{ +public: + struct FInputAxisKeyMapping KeyMapping; // 0x0000(0x0028)(ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) + bool bForceRebuildKeymaps; // 0x0028(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//InputSettings_RemoveAxisMapping; + +// Function Engine.InputSettings.GetActionMappingByName +// 0x0018 (0x0018 - 0x0000) +struct InputSettings_GetActionMappingByName final +{ +public: + class FName InActionName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutMappings; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//InputSettings_GetActionMappingByName; + +// Function Engine.InputSettings.GetActionNames +// 0x0010 (0x0010 - 0x0000) +struct InputSettings_GetActionNames final +{ +public: + TArray ActionNames; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//InputSettings_GetActionNames; + +// Function Engine.InputSettings.GetAxisMappingByName +// 0x0018 (0x0018 - 0x0000) +struct InputSettings_GetAxisMappingByName final +{ +public: + class FName InAxisName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OutMappings; // 0x0008(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//InputSettings_GetAxisMappingByName; + +// Function Engine.InputSettings.GetAxisNames +// 0x0010 (0x0010 - 0x0000) +struct InputSettings_GetAxisNames final +{ +public: + TArray AxisNames; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//InputSettings_GetAxisNames; + +// Function Engine.PlayerInput.InvertAxis +// 0x0008 (0x0008 - 0x0000) +struct PlayerInput_InvertAxis final +{ +public: + class FName AxisName; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerInput_InvertAxis; + +// Function Engine.PlayerInput.InvertAxisKey +// 0x0018 (0x0018 - 0x0000) +struct PlayerInput_InvertAxisKey final +{ +public: + struct FKey AxisKey; // 0x0000(0x0018)(ConstParm, Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerInput_InvertAxisKey; + +// Function Engine.PlayerInput.SetBind +// 0x0018 (0x0018 - 0x0000) +struct PlayerInput_SetBind final +{ +public: + class FName BindName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Command; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerInput_SetBind; + +// Function Engine.PlayerInput.SetMouseSensitivity +// 0x0004 (0x0004 - 0x0000) +struct PlayerInput_SetMouseSensitivity final +{ +public: + float Sensitivity; // 0x0000(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerInput_SetMouseSensitivity; + +// Function Engine.PlayerInput.GetOuterAPlayerController +// 0x0008 (0x0008 - 0x0000) +struct PlayerInput_GetOuterAPlayerController final +{ +public: + class APlayerController* ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//PlayerInput_GetOuterAPlayerController; + +// Function Engine.VisualLoggerKismetLibrary.EnableRecording +// 0x0001 (0x0001 - 0x0000) +struct VisualLoggerKismetLibrary_EnableRecording final +{ +public: + bool bEnabled; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VisualLoggerKismetLibrary_EnableRecording; + +// Function Engine.VisualLoggerKismetLibrary.LogArrow +// 0x0068 (0x0068 - 0x0000) +struct VisualLoggerKismetLibrary_LogArrow final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentStart; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentEnd; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0038(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName CategoryName; // 0x0058(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0060(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogArrow; + +// Function Engine.VisualLoggerKismetLibrary.LogBox +// 0x0070 (0x0070 - 0x0000) +struct VisualLoggerKismetLibrary_LogBox final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox BoxShape; // 0x0008(0x0038)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString Text; // 0x0040(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0060(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x0069(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A[0x6]; // 0x006A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogBox; + +// Function Engine.VisualLoggerKismetLibrary.LogCapsule +// 0x0080 (0x0080 - 0x0000) +struct VisualLoggerKismetLibrary_LogCapsule final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector base; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HalfHeight; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0024(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat Rotation; // 0x0030(0x0020)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0050(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0060(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0070(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0078(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x0079(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7A[0x6]; // 0x007A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogCapsule; + +// Function Engine.VisualLoggerKismetLibrary.LogCircle +// 0x0070 (0x0070 - 0x0000) +struct VisualLoggerKismetLibrary_LogCircle final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector UpAxis; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Text; // 0x0040(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0060(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName CategoryName; // 0x0064(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x006C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6D[0x3]; // 0x006D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogCircle; + +// Function Engine.VisualLoggerKismetLibrary.LogCone +// 0x0070 (0x0070 - 0x0000) +struct VisualLoggerKismetLibrary_LogCone final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Direction; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Angle; // 0x003C(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0040(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0060(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x0069(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A[0x6]; // 0x006A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogCone; + +// Function Engine.VisualLoggerKismetLibrary.LogCylinder +// 0x0070 (0x0070 - 0x0000) +struct VisualLoggerKismetLibrary_LogCylinder final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Start; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0020(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0038(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Text; // 0x0040(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0050(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0060(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0068(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x0069(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6A[0x6]; // 0x006A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogCylinder; + +// Function Engine.VisualLoggerKismetLibrary.LogLocation +// 0x0050 (0x0050 - 0x0000) +struct VisualLoggerKismetLibrary_LogLocation final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0020(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0030(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0040(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0044(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x004C(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogLocation; + +// Function Engine.VisualLoggerKismetLibrary.LogOrientedBox +// 0x00D0 (0x00D0 - 0x0000) +struct VisualLoggerKismetLibrary_LogOrientedBox final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox BoxShape; // 0x0008(0x0038)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FTransform Transform; // 0x0040(0x0060)(Parm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x00A0(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x00B0(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x00C0(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x00C8(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x00C9(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CA[0x6]; // 0x00CA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogOrientedBox; + +// Function Engine.VisualLoggerKismetLibrary.LogSegment +// 0x0068 (0x0068 - 0x0000) +struct VisualLoggerKismetLibrary_LogSegment final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentStart; // 0x0008(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SegmentEnd; // 0x0020(0x0018)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0038(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0048(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0058(0x0004)(ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName CategoryName; // 0x005C(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0064(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_65[0x3]; // 0x0065(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogSegment; + +// Function Engine.VisualLoggerKismetLibrary.LogSphere +// 0x0058 (0x0058 - 0x0000) +struct VisualLoggerKismetLibrary_LogSphere final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Center; // 0x0008(0x0018)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0020(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Text; // 0x0028(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ObjectColor; // 0x0038(0x0010)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0048(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0050(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWireframe; // 0x0051(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_52[0x6]; // 0x0052(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogSphere; + +// Function Engine.VisualLoggerKismetLibrary.LogText +// 0x0028 (0x0028 - 0x0000) +struct VisualLoggerKismetLibrary_LogText final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Text; // 0x0008(0x0010)(Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LogCategory; // 0x0018(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAddToMessageLog; // 0x0020(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//VisualLoggerKismetLibrary_LogText; + +// Function Engine.VisualLoggerKismetLibrary.RedirectVislog +// 0x0010 (0x0010 - 0x0000) +struct VisualLoggerKismetLibrary_RedirectVislog final +{ +public: + class UObject* SourceOwner; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* DestinationOwner; // 0x0008(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VisualLoggerKismetLibrary_RedirectVislog; + +// Function Engine.VOIPTalker.CreateTalkerForPlayer +// 0x0010 (0x0010 - 0x0000) +struct VOIPTalker_CreateTalkerForPlayer final +{ +public: + class APlayerState* OwningState; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UVOIPTalker* ReturnValue; // 0x0008(0x0008)(ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VOIPTalker_CreateTalkerForPlayer; + +// Function Engine.VOIPTalker.BPOnTalkingBegin +// 0x0008 (0x0008 - 0x0000) +struct VOIPTalker_BPOnTalkingBegin final +{ +public: + class UAudioComponent* AudioComponent; // 0x0000(0x0008)(Parm, ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VOIPTalker_BPOnTalkingBegin; + +// Function Engine.VOIPTalker.GetVoiceLevel +// 0x0004 (0x0004 - 0x0000) +struct VOIPTalker_GetVoiceLevel final +{ +public: + float ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VOIPTalker_GetVoiceLevel; + +// Function Engine.VOIPTalker.RegisterWithPlayerState +// 0x0008 (0x0008 - 0x0000) +struct VOIPTalker_RegisterWithPlayerState final +{ +public: + class APlayerState* OwningState; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//VOIPTalker_RegisterWithPlayerState; + +// Function Engine.RuntimeVirtualTexture.GetPageTableSize +// 0x0004 (0x0004 - 0x0000) +struct RuntimeVirtualTexture_GetPageTableSize final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTexture_GetPageTableSize; + +// Function Engine.RuntimeVirtualTexture.GetSize +// 0x0004 (0x0004 - 0x0000) +struct RuntimeVirtualTexture_GetSize final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTexture_GetSize; + +// Function Engine.RuntimeVirtualTexture.GetTileBorderSize +// 0x0004 (0x0004 - 0x0000) +struct RuntimeVirtualTexture_GetTileBorderSize final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTexture_GetTileBorderSize; + +// Function Engine.RuntimeVirtualTexture.GetTileCount +// 0x0004 (0x0004 - 0x0000) +struct RuntimeVirtualTexture_GetTileCount final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTexture_GetTileCount; + +// Function Engine.RuntimeVirtualTexture.GetTileSize +// 0x0004 (0x0004 - 0x0000) +struct RuntimeVirtualTexture_GetTileSize final +{ +public: + int32 ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//RuntimeVirtualTexture_GetTileSize; + +// Function Engine.WorldPartitionBlueprintLibrary.GetActorDescs +// 0x0018 (0x0018 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetActorDescs final +{ +public: + TArray OutActorDescs; // 0x0000(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0010(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldPartitionBlueprintLibrary_GetActorDescs; + +// Function Engine.WorldPartitionBlueprintLibrary.GetActorDescsForActors +// 0x0028 (0x0028 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetActorDescsForActors final +{ +public: + TArray InActors; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + TArray OutActorDescs; // 0x0010(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0020(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldPartitionBlueprintLibrary_GetActorDescsForActors; + +// Function Engine.WorldPartitionBlueprintLibrary.GetDataLayerManager +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetDataLayerManager final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerManager* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_GetDataLayerManager; + +// Function Engine.WorldPartitionBlueprintLibrary.GetEditorWorldBounds +// 0x0038 (0x0038 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetEditorWorldBounds final +{ +public: + struct FBox ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_GetEditorWorldBounds; + +// Function Engine.WorldPartitionBlueprintLibrary.GetIntersectingActorDescs +// 0x0050 (0x0050 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetIntersectingActorDescs final +{ +public: + struct FBox InBox; // 0x0000(0x0038)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray OutActorDescs; // 0x0038(0x0010)(Parm, OutParm, ZeroConstructor, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0048(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldPartitionBlueprintLibrary_GetIntersectingActorDescs; + +// Function Engine.WorldPartitionBlueprintLibrary.GetRuntimeWorldBounds +// 0x0038 (0x0038 - 0x0000) +struct WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds final +{ +public: + struct FBox ReturnValue; // 0x0000(0x0038)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_GetRuntimeWorldBounds; + +// Function Engine.WorldPartitionBlueprintLibrary.LoadActors +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionBlueprintLibrary_LoadActors final +{ +public: + TArray InActorsToLoad; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_LoadActors; + +// Function Engine.WorldPartitionBlueprintLibrary.PinActors +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionBlueprintLibrary_PinActors final +{ +public: + TArray InActorsToPin; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_PinActors; + +// Function Engine.WorldPartitionBlueprintLibrary.UnloadActors +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionBlueprintLibrary_UnloadActors final +{ +public: + TArray InActorsToUnload; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_UnloadActors; + +// Function Engine.WorldPartitionBlueprintLibrary.UnpinActors +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionBlueprintLibrary_UnpinActors final +{ +public: + TArray InActorsToUnpin; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) +}; +//WorldPartitionBlueprintLibrary_UnpinActors; + +// Function Engine.WorldDataLayers.OnDataLayerRuntimeStateChanged +// 0x0010 (0x0010 - 0x0000) +struct WorldDataLayers_OnDataLayerRuntimeStateChanged final +{ +public: + const class UDataLayerInstance* InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldDataLayers_OnDataLayerRuntimeStateChanged; + +// Function Engine.DataLayer.Equals +// 0x000C (0x000C - 0x0000) +struct DataLayer_Equals final +{ +public: + struct FActorDataLayer ActorDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayer_Equals; + +// Function Engine.DataLayer.GetDataLayerLabel +// 0x0008 (0x0008 - 0x0000) +struct DataLayer_GetDataLayerLabel final +{ +public: + class FName ReturnValue; // 0x0000(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_GetDataLayerLabel; + +// Function Engine.DataLayer.GetDebugColor +// 0x0004 (0x0004 - 0x0000) +struct DataLayer_GetDebugColor final +{ +public: + struct FColor ReturnValue; // 0x0000(0x0004)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_GetDebugColor; + +// Function Engine.DataLayer.GetInitialRuntimeState +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_GetInitialRuntimeState final +{ +public: + EDataLayerRuntimeState ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_GetInitialRuntimeState; + +// Function Engine.DataLayer.GetInitialState +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_GetInitialState final +{ +public: + EDataLayerState ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_GetInitialState; + +// Function Engine.DataLayer.IsDynamicallyLoaded +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsDynamicallyLoaded final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsDynamicallyLoaded; + +// Function Engine.DataLayer.IsEffectiveVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsEffectiveVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsEffectiveVisible; + +// Function Engine.DataLayer.IsInitiallyActive +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsInitiallyActive final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsInitiallyActive; + +// Function Engine.DataLayer.IsInitiallyVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsInitiallyVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsInitiallyVisible; + +// Function Engine.DataLayer.IsRuntime +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsRuntime final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsRuntime; + +// Function Engine.DataLayer.IsVisible +// 0x0001 (0x0001 - 0x0000) +struct DataLayer_IsVisible final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayer_IsVisible; + +// Function Engine.DataLayerSubsystem.SetDataLayerInstanceRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_SetDataLayerInstanceRuntimeState final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInIsRecursive; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_SetDataLayerInstanceRuntimeState; + +// Function Engine.DataLayerSubsystem.SetDataLayerRuntimeState +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_SetDataLayerRuntimeState final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInIsRecursive; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_SetDataLayerRuntimeState; + +// Function Engine.DataLayerSubsystem.SetDataLayerRuntimeStateByLabel +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_SetDataLayerRuntimeStateByLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInIsRecursive; // 0x0009(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_SetDataLayerRuntimeStateByLabel; + +// Function Engine.DataLayerSubsystem.SetDataLayerState +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_SetDataLayerState final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_SetDataLayerState; + +// Function Engine.DataLayerSubsystem.SetDataLayerStateByLabel +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_SetDataLayerStateByLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerState InState; // 0x0008(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_SetDataLayerStateByLabel; + +// Function Engine.DataLayerSubsystem.GetActiveDataLayerNames +// 0x0050 (0x0050 - 0x0000) +struct DataLayerSubsystem_GetActiveDataLayerNames final +{ +public: + TSet ReturnValue; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetActiveDataLayerNames; + +// Function Engine.DataLayerSubsystem.GetDataLayer +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayer final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetDataLayer; + +// Function Engine.DataLayerSubsystem.GetDataLayerEffectiveRuntimeState +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerEffectiveRuntimeState final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerEffectiveRuntimeState; + +// Function Engine.DataLayerSubsystem.GetDataLayerEffectiveRuntimeStateByLabel +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerEffectiveRuntimeStateByLabel; + +// Function Engine.DataLayerSubsystem.GetDataLayerFromLabel +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayerFromLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetDataLayerFromLabel; + +// Function Engine.DataLayerSubsystem.GetDataLayerFromName +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayerFromName final +{ +public: + class FName InDataLayerName; // 0x0000(0x0008)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetDataLayerFromName; + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceEffectiveRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerInstanceEffectiveRuntimeState; + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceFromAsset +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayerInstanceFromAsset final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDataLayerInstance* ReturnValue; // 0x0008(0x0008)(Parm, OutParm, ZeroConstructor, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetDataLayerInstanceFromAsset; + +// Function Engine.DataLayerSubsystem.GetDataLayerInstanceRuntimeState +// 0x0010 (0x0010 - 0x0000) +struct DataLayerSubsystem_GetDataLayerInstanceRuntimeState final +{ +public: + const class UDataLayerAsset* InDataLayerAsset; // 0x0000(0x0008)(ConstParm, Parm, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerInstanceRuntimeState; + +// Function Engine.DataLayerSubsystem.GetDataLayerRuntimeState +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerRuntimeState final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerRuntimeState; + +// Function Engine.DataLayerSubsystem.GetDataLayerRuntimeStateByLabel +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerRuntimeStateByLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerRuntimeState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerRuntimeStateByLabel; + +// Function Engine.DataLayerSubsystem.GetDataLayerState +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerState final +{ +public: + struct FActorDataLayer InDataLayer; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerState; + +// Function Engine.DataLayerSubsystem.GetDataLayerStateByLabel +// 0x000C (0x000C - 0x0000) +struct DataLayerSubsystem_GetDataLayerStateByLabel final +{ +public: + class FName InDataLayerLabel; // 0x0000(0x0008)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataLayerState ReturnValue; // 0x0008(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DataLayerSubsystem_GetDataLayerStateByLabel; + +// Function Engine.DataLayerSubsystem.GetLoadedDataLayerNames +// 0x0050 (0x0050 - 0x0000) +struct DataLayerSubsystem_GetLoadedDataLayerNames final +{ +public: + TSet ReturnValue; // 0x0000(0x0050)(ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, NativeAccessSpecifierPublic) +}; +//DataLayerSubsystem_GetLoadedDataLayerNames; + +// Function Engine.WorldPartitionDestructibleInHLODInterface.SetHLODDestructionTag +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag final +{ +public: + struct FWorldPartitionHLODDestructionTag InDestructionTag; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//WorldPartitionDestructibleInHLODInterface_SetHLODDestructionTag; + +// Function Engine.WorldPartitionDestructibleInHLODInterface.GetHLODDestructionTag +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag final +{ +public: + struct FWorldPartitionHLODDestructionTag ReturnValue; // 0x0000(0x0010)(Parm, OutParm, ReturnParm, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//WorldPartitionDestructibleInHLODInterface_GetHLODDestructionTag; + +// Function Engine.WorldPartitionDestructibleInHLODSupportLibrary.DamageInHLOD +// 0x0018 (0x0018 - 0x0000) +struct WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD final +{ +public: + TScriptInterface DestructibleInHLOD; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamagePercent; // 0x0010(0x0004)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldPartitionDestructibleInHLODSupportLibrary_DamageInHLOD; + +// Function Engine.WorldPartitionDestructibleInHLODSupportLibrary.DestroyInHLOD +// 0x0010 (0x0010 - 0x0000) +struct WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD final +{ +public: + TScriptInterface DestructibleInHLOD; // 0x0000(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WorldPartitionDestructibleInHLODSupportLibrary_DestroyInHLOD; + +// Function Engine.WorldPartitionSubsystem.IsAllStreamingCompleted +// 0x0001 (0x0001 - 0x0000) +struct WorldPartitionSubsystem_IsAllStreamingCompleted final +{ +public: + bool ReturnValue; // 0x0000(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//WorldPartitionSubsystem_IsAllStreamingCompleted; + +// Function Engine.WorldPartitionSubsystem.IsStreamingCompleted +// 0x0020 (0x0020 - 0x0000) +struct WorldPartitionSubsystem_IsStreamingCompleted final +{ +public: + EWorldPartitionRuntimeCellState QueryState; // 0x0000(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray QuerySources; // 0x0008(0x0010)(ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, NativeAccessSpecifierPublic) + bool bExactState; // 0x0018(0x0001)(Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool ReturnValue; // 0x0019(0x0001)(Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//WorldPartitionSubsystem_IsStreamingCompleted; + +} + diff --git a/TormentedSouls2/SDK/Engine_structs.hpp b/TormentedSouls2/SDK/Engine_structs.hpp new file mode 100644 index 0000000..14a06a8 --- /dev/null +++ b/TormentedSouls2/SDK/Engine_structs.hpp @@ -0,0 +1,19598 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Engine + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" +#include "IrisCore_structs.hpp" +#include "Slate_structs.hpp" +#include "PhysicsCore_structs.hpp" +#include "InputCore_structs.hpp" +#include "AudioExtensions_structs.hpp" +#include "SlateCore_structs.hpp" +#include "CoreOnline_structs.hpp" +#include "Chaos_structs.hpp" +#include "NetCore_structs.hpp" + + +namespace SDK +{ + +// Enum Engine.ETextGender +// NumValues: 0x0004 +enum class ETextGender : uint8 +{ + Masculine = 0, + Feminine = 1, + Neuter = 2, + ETextGender_MAX = 3, +}; + +// Enum Engine.EFormatArgumentType +// NumValues: 0x0007 +enum class EFormatArgumentType : uint8 +{ + Int = 0, + UInt = 1, + Float = 2, + Double = 3, + Text = 4, + Gender = 5, + EFormatArgumentType_MAX = 6, +}; + +// Enum Engine.EAnimDataModelNotifyType +// NumValues: 0x0017 +enum class EAnimDataModelNotifyType : uint8 +{ + BracketOpened = 0, + BracketClosed = 1, + TrackAdded = 2, + TrackChanged = 3, + TrackRemoved = 4, + SequenceLengthChanged = 5, + FrameRateChanged = 6, + CurveAdded = 7, + CurveChanged = 8, + CurveRemoved = 9, + CurveFlagsChanged = 10, + CurveRenamed = 11, + CurveScaled = 12, + CurveColorChanged = 13, + CurveCommentChanged = 14, + AttributeAdded = 15, + AttributeRemoved = 16, + AttributeChanged = 17, + Populated = 18, + Reset = 19, + SkeletonChanged = 20, + Invalid = 21, + EAnimDataModelNotifyType_MAX = 22, +}; + +// Enum Engine.EMovementMode +// NumValues: 0x0008 +enum class EMovementMode : uint8 +{ + MOVE_None = 0, + MOVE_Walking = 1, + MOVE_NavWalking = 2, + MOVE_Falling = 3, + MOVE_Swimming = 4, + MOVE_Flying = 5, + MOVE_Custom = 6, + MOVE_MAX = 7, +}; + +// Enum Engine.EAudioComponentPlayState +// NumValues: 0x0007 +enum class EAudioComponentPlayState : uint8 +{ + Playing = 0, + Stopped = 1, + Paused = 2, + FadingIn = 3, + FadingOut = 4, + Count = 5, + EAudioComponentPlayState_MAX = 6, +}; + +// Enum Engine.EDataLayerRuntimeState +// NumValues: 0x0004 +enum class EDataLayerRuntimeState : uint8 +{ + Unloaded = 0, + Loaded = 1, + Activated = 2, + EDataLayerRuntimeState_MAX = 3, +}; + +// Enum Engine.EQuartzCommandDelegateSubType +// NumValues: 0x0007 +enum class EQuartzCommandDelegateSubType : uint8 +{ + CommandOnFailedToQueue = 0, + CommandOnQueued = 1, + CommandOnCanceled = 2, + CommandOnAboutToStart = 3, + CommandOnStarted = 4, + Count = 5, + EQuartzCommandDelegateSubType_MAX = 6, +}; + +// Enum Engine.EQuartzCommandQuantization +// NumValues: 0x0015 +enum class EQuartzCommandQuantization : uint8 +{ + Bar = 0, + Beat = 1, + ThirtySecondNote = 2, + SixteenthNote = 3, + EighthNote = 4, + QuarterNote = 5, + HalfNote = 6, + WholeNote = 7, + DottedSixteenthNote = 8, + DottedEighthNote = 9, + DottedQuarterNote = 10, + DottedHalfNote = 11, + DottedWholeNote = 12, + SixteenthNoteTriplet = 13, + EighthNoteTriplet = 14, + QuarterNoteTriplet = 15, + HalfNoteTriplet = 16, + Tick = 17, + Count = 18, + None = 19, + EQuartzCommandQuantization_MAX = 20, +}; + +// Enum Engine.EPlatformInterfaceDataType +// NumValues: 0x0007 +enum class EPlatformInterfaceDataType : uint8 +{ + PIDT_None = 0, + PIDT_Int = 1, + PIDT_Float = 2, + PIDT_String = 3, + PIDT_Object = 4, + PIDT_Custom = 5, + PIDT_MAX = 6, +}; + +// Enum Engine.EEndPlayReason +// NumValues: 0x0006 +enum class EEndPlayReason : uint8 +{ + Destroyed = 0, + LevelTransition = 1, + EndPlayInEditor = 2, + RemovedFromWorld = 3, + Quit = 4, + EEndPlayReason_MAX = 5, +}; + +// Enum Engine.ETickingGroup +// NumValues: 0x0009 +enum class ETickingGroup : uint8 +{ + TG_PrePhysics = 0, + TG_StartPhysics = 1, + TG_DuringPhysics = 2, + TG_EndPhysics = 3, + TG_PostPhysics = 4, + TG_PostUpdateWork = 5, + TG_LastDemotable = 6, + TG_NewlySpawned = 7, + TG_MAX = 8, +}; + +// Enum Engine.EComponentCreationMethod +// NumValues: 0x0005 +enum class EComponentCreationMethod : uint8 +{ + Native = 0, + SimpleConstructionScript = 1, + UserConstructionScript = 2, + Instance = 3, + EComponentCreationMethod_MAX = 4, +}; + +// Enum Engine.ETemperatureSeverityType +// NumValues: 0x0007 +enum class ETemperatureSeverityType : uint8 +{ + Unknown = 0, + Good = 1, + Bad = 2, + Serious = 3, + Critical = 4, + NumSeverities = 5, + ETemperatureSeverityType_MAX = 6, +}; + +// Enum Engine.EPlaneConstraintAxisSetting +// NumValues: 0x0006 +enum class EPlaneConstraintAxisSetting : uint8 +{ + Custom = 0, + X = 1, + Y = 2, + Z = 3, + UseGlobalPhysicsSetting = 4, + EPlaneConstraintAxisSetting_MAX = 5, +}; + +// Enum Engine.EInterpToBehaviourType +// NumValues: 0x0005 +enum class EInterpToBehaviourType : uint8 +{ + OneShot = 0, + OneShot_Reverse = 1, + Loop_Reset = 2, + PingPong = 3, + EInterpToBehaviourType_MAX = 4, +}; + +// Enum Engine.ETeleportType +// NumValues: 0x0004 +enum class ETeleportType : uint8 +{ + None = 0, + TeleportPhysics = 1, + ResetPhysics = 2, + ETeleportType_MAX = 3, +}; + +// Enum Engine.EObjectTypeQuery +// NumValues: 0x0022 +enum class EObjectTypeQuery : uint8 +{ + ObjectTypeQuery1 = 0, + ObjectTypeQuery2 = 1, + ObjectTypeQuery3 = 2, + ObjectTypeQuery4 = 3, + ObjectTypeQuery5 = 4, + ObjectTypeQuery6 = 5, + ObjectTypeQuery7 = 6, + ObjectTypeQuery8 = 7, + ObjectTypeQuery9 = 8, + ObjectTypeQuery10 = 9, + ObjectTypeQuery11 = 10, + ObjectTypeQuery12 = 11, + ObjectTypeQuery13 = 12, + ObjectTypeQuery14 = 13, + ObjectTypeQuery15 = 14, + ObjectTypeQuery16 = 15, + ObjectTypeQuery17 = 16, + ObjectTypeQuery18 = 17, + ObjectTypeQuery19 = 18, + ObjectTypeQuery20 = 19, + ObjectTypeQuery21 = 20, + ObjectTypeQuery22 = 21, + ObjectTypeQuery23 = 22, + ObjectTypeQuery24 = 23, + ObjectTypeQuery25 = 24, + ObjectTypeQuery26 = 25, + ObjectTypeQuery27 = 26, + ObjectTypeQuery28 = 27, + ObjectTypeQuery29 = 28, + ObjectTypeQuery30 = 29, + ObjectTypeQuery31 = 30, + ObjectTypeQuery32 = 31, + ObjectTypeQuery_MAX = 32, + EObjectTypeQuery_MAX = 33, +}; + +// Enum Engine.EDrawDebugTrace +// NumValues: 0x0005 +enum class EDrawDebugTrace : uint8 +{ + None = 0, + ForOneFrame = 1, + ForDuration = 2, + Persistent = 3, + EDrawDebugTrace_MAX = 4, +}; + +// Enum Engine.ETraceTypeQuery +// NumValues: 0x0022 +enum class ETraceTypeQuery : uint8 +{ + TraceTypeQuery1 = 0, + TraceTypeQuery2 = 1, + TraceTypeQuery3 = 2, + TraceTypeQuery4 = 3, + TraceTypeQuery5 = 4, + TraceTypeQuery6 = 5, + TraceTypeQuery7 = 6, + TraceTypeQuery8 = 7, + TraceTypeQuery9 = 8, + TraceTypeQuery10 = 9, + TraceTypeQuery11 = 10, + TraceTypeQuery12 = 11, + TraceTypeQuery13 = 12, + TraceTypeQuery14 = 13, + TraceTypeQuery15 = 14, + TraceTypeQuery16 = 15, + TraceTypeQuery17 = 16, + TraceTypeQuery18 = 17, + TraceTypeQuery19 = 18, + TraceTypeQuery20 = 19, + TraceTypeQuery21 = 20, + TraceTypeQuery22 = 21, + TraceTypeQuery23 = 22, + TraceTypeQuery24 = 23, + TraceTypeQuery25 = 24, + TraceTypeQuery26 = 25, + TraceTypeQuery27 = 26, + TraceTypeQuery28 = 27, + TraceTypeQuery29 = 28, + TraceTypeQuery30 = 29, + TraceTypeQuery31 = 30, + TraceTypeQuery32 = 31, + TraceTypeQuery_MAX = 32, + ETraceTypeQuery_MAX = 33, +}; + +// Enum Engine.EMoveComponentAction +// NumValues: 0x0004 +enum class EMoveComponentAction : uint8 +{ + Move = 0, + Stop = 1, + Return = 2, + EMoveComponentAction_MAX = 3, +}; + +// Enum Engine.EQuitPreference +// NumValues: 0x0003 +enum class EQuitPreference : uint8 +{ + Quit = 0, + Background = 1, + EQuitPreference_MAX = 2, +}; + +// Enum Engine.ETravelFailure +// NumValues: 0x000D +enum class ETravelFailure : uint8 +{ + NoLevel = 0, + LoadMapFailure = 1, + InvalidURL = 2, + PackageMissing = 3, + PackageVersion = 4, + NoDownload = 5, + TravelFailure = 6, + CheatCommands = 7, + PendingNetGameCreateFailure = 8, + CloudSaveFailure = 9, + ServerTravelFailure = 10, + ClientTravelFailure = 11, + ETravelFailure_MAX = 12, +}; + +// Enum Engine.EApplicationState +// NumValues: 0x0005 +enum class EApplicationState : uint8 +{ + Unknown = 0, + Inactive = 1, + Background = 2, + Active = 3, + EApplicationState_MAX = 4, +}; + +// Enum Engine.EScreenOrientation +// NumValues: 0x000B +enum class EScreenOrientation : uint8 +{ + Unknown = 0, + Portrait = 1, + PortraitUpsideDown = 2, + LandscapeLeft = 3, + LandscapeRight = 4, + FaceUp = 5, + FaceDown = 6, + PortraitSensor = 7, + LandscapeSensor = 8, + FullSensor = 9, + EScreenOrientation_MAX = 10, +}; + +// Enum Engine.EComponentPhysicsStateChange +// NumValues: 0x0003 +enum class EComponentPhysicsStateChange : uint8 +{ + Created = 0, + Destroyed = 1, + EComponentPhysicsStateChange_MAX = 2, +}; + +// Enum Engine.ERelativeTransformSpace +// NumValues: 0x0005 +enum class ERelativeTransformSpace : uint8 +{ + RTS_World = 0, + RTS_Actor = 1, + RTS_Component = 2, + RTS_ParentBoneSpace = 3, + RTS_MAX = 4, +}; + +// Enum Engine.EAttachLocation +// NumValues: 0x0005 +enum class EAttachLocation : uint8 +{ + KeepRelativeOffset = 0, + KeepWorldPosition = 1, + SnapToTarget = 2, + SnapToTargetIncludingScale = 3, + EAttachLocation_MAX = 4, +}; + +// Enum Engine.EAttachmentRule +// NumValues: 0x0004 +enum class EAttachmentRule : uint8 +{ + KeepRelative = 0, + KeepWorld = 1, + SnapToTarget = 2, + EAttachmentRule_MAX = 3, +}; + +// Enum Engine.EDetachmentRule +// NumValues: 0x0003 +enum class EDetachmentRule : uint8 +{ + KeepRelative = 0, + KeepWorld = 1, + EDetachmentRule_MAX = 2, +}; + +// Enum Engine.EComponentMobility +// NumValues: 0x0004 +enum class EComponentMobility : uint8 +{ + Static = 0, + Stationary = 1, + Movable = 2, + EComponentMobility_MAX = 3, +}; + +// Enum Engine.EDetailMode +// NumValues: 0x0005 +enum class EDetailMode : uint8 +{ + DM_Low = 0, + DM_Medium = 1, + DM_High = 2, + DM_Epic = 3, + DM_MAX = 4, +}; + +// Enum Engine.ECollisionEnabled +// NumValues: 0x0007 +enum class ECollisionEnabled : uint8 +{ + NoCollision = 0, + QueryOnly = 1, + PhysicsOnly = 2, + QueryAndPhysics = 3, + ProbeOnly = 4, + QueryAndProbe = 5, + ECollisionEnabled_MAX = 6, +}; + +// Enum Engine.ECollisionChannel +// NumValues: 0x0022 +enum class ECollisionChannel : uint8 +{ + ECC_WorldStatic = 0, + ECC_WorldDynamic = 1, + ECC_Pawn = 2, + ECC_Visibility = 3, + ECC_Camera = 4, + ECC_PhysicsBody = 5, + ECC_Vehicle = 6, + ECC_Destructible = 7, + ECC_EngineTraceChannel1 = 8, + ECC_EngineTraceChannel2 = 9, + ECC_EngineTraceChannel3 = 10, + ECC_EngineTraceChannel4 = 11, + ECC_EngineTraceChannel5 = 12, + ECC_EngineTraceChannel6 = 13, + ECC_GameTraceChannel1 = 14, + ECC_GameTraceChannel2 = 15, + ECC_GameTraceChannel3 = 16, + ECC_GameTraceChannel4 = 17, + ECC_GameTraceChannel5 = 18, + ECC_GameTraceChannel6 = 19, + ECC_GameTraceChannel7 = 20, + ECC_GameTraceChannel8 = 21, + ECC_GameTraceChannel9 = 22, + ECC_GameTraceChannel10 = 23, + ECC_GameTraceChannel11 = 24, + ECC_GameTraceChannel12 = 25, + ECC_GameTraceChannel13 = 26, + ECC_GameTraceChannel14 = 27, + ECC_GameTraceChannel15 = 28, + ECC_GameTraceChannel16 = 29, + ECC_GameTraceChannel17 = 30, + ECC_GameTraceChannel18 = 31, + ECC_OverlapAll_Deprecated = 32, + ECC_MAX = 33, +}; + +// Enum Engine.ECollisionResponse +// NumValues: 0x0004 +enum class ECollisionResponse : uint8 +{ + ECR_Ignore = 0, + ECR_Overlap = 1, + ECR_Block = 2, + ECR_MAX = 3, +}; + +// Enum Engine.EWalkableSlopeBehavior +// NumValues: 0x0005 +enum class EWalkableSlopeBehavior : uint8 +{ + WalkableSlope_Default = 0, + WalkableSlope_Increase = 1, + WalkableSlope_Decrease = 2, + WalkableSlope_Unwalkable = 3, + WalkableSlope_Max = 4, +}; + +// Enum Engine.EHLODLevelExclusion +// NumValues: 0x0009 +enum class EHLODLevelExclusion : uint8 +{ + HLOD0 = 1, + HLOD1 = 2, + HLOD2 = 4, + HLOD3 = 8, + HLOD4 = 16, + HLOD5 = 32, + HLOD6 = 64, + HLOD7 = 128, + EHLODLevelExclusion_MAX = 129, +}; + +// Enum Engine.EDOFMode +// NumValues: 0x0008 +enum class EDOFMode : uint8 +{ + Default = 0, + SixDOF = 1, + YZPlane = 2, + XZPlane = 3, + XYPlane = 4, + CustomPlane = 5, + None = 6, + EDOFMode_MAX = 7, +}; + +// Enum Engine.ERendererStencilMask +// NumValues: 0x000B +enum class ERendererStencilMask : uint8 +{ + ERSM_Default = 0, + ERSM_255 = 1, + ERSM_1 = 2, + ERSM_2 = 3, + ERSM_4 = 4, + ERSM_8 = 5, + ERSM_16 = 6, + ERSM_32 = 7, + ERSM_64 = 8, + ERSM_128 = 9, + ERSM_MAX = 10, +}; + +// Enum Engine.EFirstPersonPrimitiveType +// NumValues: 0x0003 +enum class EFirstPersonPrimitiveType : uint8 +{ + None = 0, + FirstPerson = 1, + EFirstPersonPrimitiveType_MAX = 2, +}; + +// Enum Engine.ERuntimeVirtualTextureMainPassType +// NumValues: 0x0004 +enum class ERuntimeVirtualTextureMainPassType : uint8 +{ + Never = 0, + Exclusive = 1, + Always = 2, + ERuntimeVirtualTextureMainPassType_MAX = 3, +}; + +// Enum Engine.ERayTracingGroupCullingPriority +// NumValues: 0x000A +enum class ERayTracingGroupCullingPriority : uint8 +{ + CP_0_NEVER_CULL = 0, + CP_1 = 1, + CP_2 = 2, + CP_3 = 3, + CP_4_DEFAULT = 4, + CP_5 = 5, + CP_6 = 6, + CP_7 = 7, + CP_8_QUICKLY_CULL = 8, + CP_MAX = 9, +}; + +// Enum Engine.ECanBeCharacterBase +// NumValues: 0x0004 +enum class ECanBeCharacterBase : uint8 +{ + ECB_No = 0, + ECB_Yes = 1, + ECB_Owner = 2, + ECB_MAX = 3, +}; + +// Enum Engine.EHasCustomNavigableGeometry +// NumValues: 0x0005 +enum class EHasCustomNavigableGeometry : uint8 +{ + No = 0, + Yes = 1, + EvenIfNotCollidable = 2, + DontExport = 3, + EHasCustomNavigableGeometry_MAX = 4, +}; + +// Enum Engine.EShadowCacheInvalidationBehavior +// NumValues: 0x0005 +enum class EShadowCacheInvalidationBehavior : uint8 +{ + Auto = 0, + Always = 1, + Rigid = 2, + Static = 3, + EShadowCacheInvalidationBehavior_MAX = 4, +}; + +// Enum Engine.EHLODBatchingPolicy +// NumValues: 0x0004 +enum class EHLODBatchingPolicy : uint8 +{ + None = 0, + MeshSection = 1, + Instancing = 2, + EHLODBatchingPolicy_MAX = 3, +}; + +// Enum Engine.ELightmapType +// NumValues: 0x0004 +enum class ELightmapType : uint8 +{ + Default = 0, + ForceSurface = 1, + ForceVolumetric = 2, + ELightmapType_MAX = 3, +}; + +// Enum Engine.EIndirectLightingCacheQuality +// NumValues: 0x0004 +enum class EIndirectLightingCacheQuality : uint8 +{ + ILCQ_Off = 0, + ILCQ_Point = 1, + ILCQ_Volume = 2, + ILCQ_MAX = 3, +}; + +// Enum Engine.ESceneDepthPriorityGroup +// NumValues: 0x0003 +enum class ESceneDepthPriorityGroup : uint8 +{ + SDPG_World = 0, + SDPG_Foreground = 1, + SDPG_MAX = 2, +}; + +// Enum Engine.EMouseLockMode +// NumValues: 0x0005 +enum class EMouseLockMode : uint8 +{ + DoNotLock = 0, + LockOnCapture = 1, + LockAlways = 2, + LockInFullscreen = 3, + EMouseLockMode_MAX = 4, +}; + +// Enum Engine.EWindowTitleBarMode +// NumValues: 0x0003 +enum class EWindowTitleBarMode : uint8 +{ + Overlay = 0, + VerticalBox = 1, + EWindowTitleBarMode_MAX = 2, +}; + +// Enum Engine.AnimationKeyFormat +// NumValues: 0x0004 +enum class EAnimationKeyFormat : uint8 +{ + AKF_ConstantKeyLerp = 0, + AKF_VariableKeyLerp = 1, + AKF_PerTrackCompression = 2, + AKF_MAX = 3, +}; + +// Enum Engine.EAnimCurveType +// NumValues: 0x0005 +enum class EAnimCurveType : uint8 +{ + AttributeCurve = 0, + MaterialCurve = 1, + MorphTargetCurve = 2, + MaxAnimCurveType = 3, + EAnimCurveType_MAX = 4, +}; + +// Enum Engine.EAnimAssetCurveFlags +// NumValues: 0x0009 +enum class EAnimAssetCurveFlags : uint8 +{ + AACF_NONE = 0, + AACF_DriveMorphTarget_DEPRECATED = 1, + AACF_DriveAttribute_DEPRECATED = 2, + AACF_Editable = 4, + AACF_DriveMaterial_DEPRECATED = 8, + AACF_Metadata = 16, + AACF_DriveTrack = 32, + AACF_Disabled = 64, + AACF_MAX = 65, +}; + +// Enum Engine.ERawCurveTrackTypes +// NumValues: 0x0004 +enum class ERawCurveTrackTypes : uint8 +{ + RCT_Float = 0, + RCT_Vector = 1, + RCT_Transform = 2, + RCT_MAX = 3, +}; + +// Enum Engine.ERootMotionRootLock +// NumValues: 0x0004 +enum class ERootMotionRootLock : uint8 +{ + RefPose = 0, + AnimFirstFrame = 1, + Zero = 2, + ERootMotionRootLock_MAX = 3, +}; + +// Enum Engine.ERootMotionMode +// NumValues: 0x0005 +enum class ERootMotionMode : uint8 +{ + NoRootMotionExtraction = 0, + IgnoreRootMotion = 1, + RootMotionFromEverything = 2, + RootMotionFromMontagesOnly = 3, + ERootMotionMode_MAX = 4, +}; + +// Enum Engine.EAdditiveBasePoseType +// NumValues: 0x0006 +enum class EAdditiveBasePoseType : uint8 +{ + ABPT_None = 0, + ABPT_RefPose = 1, + ABPT_AnimScaled = 2, + ABPT_AnimFrame = 3, + ABPT_LocalAnimFrame = 4, + ABPT_MAX = 5, +}; + +// Enum Engine.AnimationCompressionFormat +// NumValues: 0x0008 +enum class EAnimationCompressionFormat : uint8 +{ + ACF_None = 0, + ACF_Float96NoW = 1, + ACF_Fixed48NoW = 2, + ACF_IntervalFixed32NoW = 3, + ACF_Fixed32NoW = 4, + ACF_Float32NoW = 5, + ACF_Identity = 6, + ACF_MAX = 7, +}; + +// Enum Engine.EAnimInstanceLocatorFragmentType +// NumValues: 0x0003 +enum class EAnimInstanceLocatorFragmentType : uint32 +{ + AnimInstance = 0, + PostProcessAnimInstance = 1, + EAnimInstanceLocatorFragmentType_MAX = 2, +}; + +// Enum Engine.AnimPhysTwistAxis +// NumValues: 0x0004 +enum class EAnimPhysTwistAxis : uint8 +{ + AxisX = 0, + AxisY = 1, + AxisZ = 2, + AnimPhysTwistAxis_MAX = 3, +}; + +// Enum Engine.AnimPhysCollisionType +// NumValues: 0x0005 +enum class EAnimPhysCollisionType : uint8 +{ + CoM = 0, + CustomSphere = 1, + InnerSphere = 2, + OuterSphere = 3, + AnimPhysCollisionType_MAX = 4, +}; + +// Enum Engine.ETypeAdvanceAnim +// NumValues: 0x0004 +enum class ETypeAdvanceAnim : uint8 +{ + ETAA_Default = 0, + ETAA_Finished = 1, + ETAA_Looped = 2, + ETAA_MAX = 3, +}; + +// Enum Engine.EBoneAxis +// NumValues: 0x0004 +enum class EBoneAxis : uint8 +{ + BA_X = 0, + BA_Y = 1, + BA_Z = 2, + BA_MAX = 3, +}; + +// Enum Engine.EBoneControlSpace +// NumValues: 0x0005 +enum class EBoneControlSpace : uint8 +{ + BCS_WorldSpace = 0, + BCS_ComponentSpace = 1, + BCS_ParentBoneSpace = 2, + BCS_BoneSpace = 3, + BCS_MAX = 4, +}; + +// Enum Engine.EBoneRotationSource +// NumValues: 0x0004 +enum class EBoneRotationSource : uint8 +{ + BRS_KeepComponentSpaceRotation = 0, + BRS_KeepLocalSpaceRotation = 1, + BRS_CopyFromTarget = 2, + BRS_MAX = 3, +}; + +// Enum Engine.EMontageNotifyTickType +// NumValues: 0x0003 +enum class EMontageNotifyTickType : uint8 +{ + Queued = 0, + BranchingPoint = 1, + EMontageNotifyTickType_MAX = 2, +}; + +// Enum Engine.ENotifyFilterType +// NumValues: 0x0003 +enum class ENotifyFilterType : uint8 +{ + NoFiltering = 0, + LOD = 1, + ENotifyFilterType_MAX = 2, +}; + +// Enum Engine.EAdditiveAnimationType +// NumValues: 0x0004 +enum class EAdditiveAnimationType : uint8 +{ + AAT_None = 0, + AAT_LocalSpaceBase = 1, + AAT_RotationOffsetMeshSpace = 2, + AAT_MAX = 3, +}; + +// Enum Engine.ECurveBlendOption +// NumValues: 0x0008 +enum class ECurveBlendOption : uint8 +{ + Override = 0, + DoNotOverride = 1, + NormalizeByWeight = 2, + BlendByWeight = 3, + UseBasePose = 4, + UseMaxValue = 5, + UseMinValue = 6, + ECurveBlendOption_MAX = 7, +}; + +// Enum Engine.EAnimInterpolationType +// NumValues: 0x0003 +enum class EAnimInterpolationType : uint8 +{ + Linear = 0, + Step = 1, + EAnimInterpolationType_MAX = 2, +}; + +// Enum Engine.EAxisOption +// NumValues: 0x0008 +enum class EAxisOption : uint8 +{ + X = 0, + Y = 1, + Z = 2, + X_Neg = 3, + Y_Neg = 4, + Z_Neg = 5, + Custom = 6, + EAxisOption_MAX = 7, +}; + +// Enum Engine.EComponentType +// NumValues: 0x000C +enum class EComponentType : uint8 +{ + None = 0, + TranslationX = 1, + TranslationY = 2, + TranslationZ = 3, + RotationX = 4, + RotationY = 5, + RotationZ = 6, + Scale = 7, + ScaleX = 8, + ScaleY = 9, + ScaleZ = 10, + EComponentType_MAX = 11, +}; + +// Enum Engine.EAudioOutputTarget +// NumValues: 0x0004 +enum class EAudioOutputTarget : uint8 +{ + Speaker = 0, + Controller = 1, + ControllerFallbackToSpeaker = 2, + EAudioOutputTarget_MAX = 3, +}; + +// Enum Engine.EBlendableLocation +// NumValues: 0x000B +enum class EBlendableLocation : uint8 +{ + BL_SceneColorBeforeDOF = 2, + BL_SceneColorAfterDOF = 1, + BL_TranslucencyAfterDOF = 5, + BL_SSRInput = 4, + BL_SceneColorBeforeBloom = 6, + BL_ReplacingTonemapper = 3, + BL_SceneColorAfterTonemapping = 0, + BL_MAX = 7, + BL_BeforeTranslucency = 2, + BL_BeforeTonemapping = 1, + BL_AfterTonemapping = 0, +}; + +// Enum Engine.EBlendSpaceAxis +// NumValues: 0x0004 +enum class EBlendSpaceAxis : uint8 +{ + BSA_None = 0, + BSA_X = 1, + BSA_Y = 2, + BSA_MAX = 3, +}; + +// Enum Engine.EPreferredTriangulationDirection +// NumValues: 0x0004 +enum class EPreferredTriangulationDirection : uint8 +{ + None = 0, + Tangential = 1, + Radial = 2, + EPreferredTriangulationDirection_MAX = 3, +}; + +// Enum Engine.EBlendSpacePerBoneBlendMode +// NumValues: 0x0003 +enum class EBlendSpacePerBoneBlendMode : uint8 +{ + ManualPerBoneOverride = 0, + BlendProfile = 1, + EBlendSpacePerBoneBlendMode_MAX = 2, +}; + +// Enum Engine.ENotifyTriggerMode +// NumValues: 0x0004 +enum class ENotifyTriggerMode : uint8 +{ + AllAnimations = 0, + HighestWeightedAnimation = 1, + None = 2, + ENotifyTriggerMode_MAX = 3, +}; + +// Enum Engine.EBlueprintStatus +// NumValues: 0x0007 +enum class EBlueprintStatus : uint8 +{ + BS_Unknown = 0, + BS_Dirty = 1, + BS_Error = 2, + BS_UpToDate = 3, + BS_BeingCreated = 4, + BS_UpToDateWithWarnings = 5, + BS_MAX = 6, +}; + +// Enum Engine.EBlueprintType +// NumValues: 0x0007 +enum class EBlueprintType : uint8 +{ + BPTYPE_Normal = 0, + BPTYPE_Const = 1, + BPTYPE_MacroLibrary = 2, + BPTYPE_Interface = 3, + BPTYPE_LevelScript = 4, + BPTYPE_FunctionLibrary = 5, + BPTYPE_MAX = 6, +}; + +// Enum Engine.EBlueprintCompileMode +// NumValues: 0x0004 +enum class EBlueprintCompileMode : uint8 +{ + Default = 0, + Development = 1, + FinalRelease = 2, + EBlueprintCompileMode_MAX = 3, +}; + +// Enum Engine.EBlueprintNativizationFlag +// NumValues: 0x0004 +enum class EBlueprintNativizationFlag : uint8 +{ + Disabled = 0, + Dependency = 1, + ExplicitlyEnabled = 2, + EBlueprintNativizationFlag_MAX = 3, +}; + +// Enum Engine.EShouldCookBlueprintPropertyGuids +// NumValues: 0x0004 +enum class EShouldCookBlueprintPropertyGuids : uint8 +{ + No = 0, + Yes = 1, + Inherit = 2, + EShouldCookBlueprintPropertyGuids_MAX = 3, +}; + +// Enum Engine.ECsgOper +// NumValues: 0x0007 +enum class ECsgOper : uint8 +{ + CSG_Active = 0, + CSG_Add = 1, + CSG_Subtract = 2, + CSG_Intersect = 3, + CSG_Deintersect = 4, + CSG_None = 5, + CSG_MAX = 6, +}; + +// Enum Engine.EBrushType +// NumValues: 0x0004 +enum class EBrushType : uint8 +{ + Brush_Default = 0, + Brush_Add = 1, + Brush_Subtract = 2, + Brush_MAX = 3, +}; + +// Enum Engine.ECameraProjectionMode +// NumValues: 0x0003 +enum class ECameraProjectionMode : uint8 +{ + Perspective = 0, + Orthographic = 1, + ECameraProjectionMode_MAX = 2, +}; + +// Enum Engine.ECameraShakePlaySpace +// NumValues: 0x0004 +enum class ECameraShakePlaySpace : uint8 +{ + CameraLocal = 0, + World = 1, + UserDefined = 2, + ECameraShakePlaySpace_MAX = 3, +}; + +// Enum Engine.ECloudStorageDelegate +// NumValues: 0x0008 +enum class ECloudStorageDelegate : uint8 +{ + CSD_KeyValueReadComplete = 0, + CSD_KeyValueWriteComplete = 1, + CSD_ValueChanged = 2, + CSD_DocumentQueryComplete = 3, + CSD_DocumentReadComplete = 4, + CSD_DocumentWriteComplete = 5, + CSD_DocumentConflictDetected = 6, + CSD_MAX = 7, +}; + +// Enum Engine.EContentBundleClientState +// NumValues: 0x0006 +enum class EContentBundleClientState : uint8 +{ + Unregistered = 0, + Registered = 1, + ContentInjectionRequested = 2, + ContentRemovalRequested = 3, + RegistrationFailed = 4, + EContentBundleClientState_MAX = 5, +}; + +// Enum Engine.EWorldContentState +// NumValues: 0x0003 +enum class EWorldContentState : uint8 +{ + NoContent = 0, + ContentBundleInjected = 1, + EWorldContentState_MAX = 2, +}; + +// Enum Engine.EContentBundleStatus +// NumValues: 0x0006 +enum class EContentBundleStatus : uint64 +{ + Registered = 0, + ReadyToInject = 1, + FailedToInject = 2, + ContentInjected = 3, + Unknown = 18446744073709551615, + EContentBundleStatus_MAX = 4, +}; + +// Enum Engine.ECustomAttributeBlendType +// NumValues: 0x0003 +enum class ECustomAttributeBlendType : uint8 +{ + Override = 0, + Blend = 1, + ECustomAttributeBlendType_MAX = 2, +}; + +// Enum Engine.EDataLayerType +// NumValues: 0x0005 +enum class EDataLayerType : uint8 +{ + Runtime = 0, + Editor = 1, + Unknown = 2, + Size = 3, + EDataLayerType_MAX = 4, +}; + +// Enum Engine.DistributionParamMode +// NumValues: 0x0004 +enum class EDistributionParamMode : uint8 +{ + DPM_Normal = 0, + DPM_Abs = 1, + DPM_Direct = 2, + DPM_MAX = 3, +}; + +// Enum Engine.EDistributionVectorLockFlags +// NumValues: 0x0006 +enum class EDistributionVectorLockFlags : uint8 +{ + EDVLF_None = 0, + EDVLF_XY = 1, + EDVLF_XZ = 2, + EDVLF_YZ = 3, + EDVLF_XYZ = 4, + EDVLF_MAX = 5, +}; + +// Enum Engine.EDistributionVectorMirrorFlags +// NumValues: 0x0004 +enum class EDistributionVectorMirrorFlags : uint8 +{ + EDVMF_Same = 0, + EDVMF_Different = 1, + EDVMF_Mirror = 2, + EDVMF_MAX = 3, +}; + +// Enum Engine.EEdGraphPinDirection +// NumValues: 0x0003 +enum class EEdGraphPinDirection : uint8 +{ + EGPD_Input = 0, + EGPD_Output = 1, + EGPD_MAX = 2, +}; + +// Enum Engine.EPinContainerType +// NumValues: 0x0005 +enum class EPinContainerType : uint8 +{ + None = 0, + Array = 1, + Set = 2, + Map = 3, + EPinContainerType_MAX = 4, +}; + +// Enum Engine.ENodeTitleType +// NumValues: 0x0006 +enum class ENodeTitleType : uint8 +{ + FullTitle = 0, + ListView = 1, + EditableTitle = 2, + MenuTitle = 3, + MAX_TitleTypes = 4, + ENodeTitleType_MAX = 5, +}; + +// Enum Engine.ENodeAdvancedPins +// NumValues: 0x0004 +enum class ENodeAdvancedPins : uint8 +{ + NoPins = 0, + Shown = 1, + Hidden = 2, + ENodeAdvancedPins_MAX = 3, +}; + +// Enum Engine.ENodeEnabledState +// NumValues: 0x0004 +enum class ENodeEnabledState : uint8 +{ + Enabled = 0, + Disabled = 1, + DevelopmentOnly = 2, + ENodeEnabledState_MAX = 3, +}; + +// Enum Engine.EBlueprintPinStyleType +// NumValues: 0x0003 +enum class EBlueprintPinStyleType : uint8 +{ + BPST_Original = 0, + BPST_VariantA = 1, + BPST_MAX = 2, +}; + +// Enum Engine.EGraphType +// NumValues: 0x0006 +enum class EGraphType : uint8 +{ + GT_Function = 0, + GT_Ubergraph = 1, + GT_Macro = 2, + GT_Animation = 3, + GT_StateMachine = 4, + GT_MAX = 5, +}; + +// Enum Engine.ECanCreateConnectionResponse +// NumValues: 0x0008 +enum class ECanCreateConnectionResponse : uint8 +{ + CONNECT_RESPONSE_MAKE = 0, + CONNECT_RESPONSE_DISALLOW = 1, + CONNECT_RESPONSE_BREAK_OTHERS_A = 2, + CONNECT_RESPONSE_BREAK_OTHERS_B = 3, + CONNECT_RESPONSE_BREAK_OTHERS_AB = 4, + CONNECT_RESPONSE_MAKE_WITH_CONVERSION_NODE = 5, + CONNECT_RESPONSE_MAKE_WITH_PROMOTION = 6, + CONNECT_RESPONSE_MAX = 7, +}; + +// Enum Engine.EFullyLoadPackageType +// NumValues: 0x0006 +enum class EFullyLoadPackageType : uint8 +{ + FULLYLOAD_Map = 0, + FULLYLOAD_Game_PreLoadClass = 1, + FULLYLOAD_Game_PostLoadClass = 2, + FULLYLOAD_Always = 3, + FULLYLOAD_Mutator = 4, + FULLYLOAD_MAX = 5, +}; + +// Enum Engine.ETransitionType +// NumValues: 0x0008 +enum class ETransitionType : uint8 +{ + None = 0, + Paused = 1, + Loading = 2, + Saving = 3, + Connecting = 4, + Precaching = 5, + WaitingToConnect = 6, + MAX = 7, +}; + +// Enum Engine.EInputEvent +// NumValues: 0x0006 +enum class EInputEvent : uint8 +{ + IE_Pressed = 0, + IE_Released = 1, + IE_Repeat = 2, + IE_DoubleClick = 3, + IE_Axis = 4, + IE_MAX = 5, +}; + +// Enum Engine.EMouseCaptureMode +// NumValues: 0x0006 +enum class EMouseCaptureMode : uint8 +{ + NoCapture = 0, + CapturePermanently = 1, + CapturePermanently_IncludingInitialMouseDown = 2, + CaptureDuringMouseDown = 3, + CaptureDuringRightMouseDown = 4, + EMouseCaptureMode_MAX = 5, +}; + +// Enum Engine.ENetworkLagState +// NumValues: 0x0003 +enum class ENetworkLagState : uint8 +{ + NotLagging = 0, + Lagging = 1, + ENetworkLagState_MAX = 2, +}; + +// Enum Engine.ETravelType +// NumValues: 0x0004 +enum class ETravelType : uint8 +{ + TRAVEL_Absolute = 0, + TRAVEL_Partial = 1, + TRAVEL_Relative = 2, + TRAVEL_MAX = 3, +}; + +// Enum Engine.EDemoPlayFailure +// NumValues: 0x000A +enum class EDemoPlayFailure : uint8 +{ + Generic = 0, + DemoNotFound = 1, + Corrupt = 2, + InvalidVersion = 3, + InitBase = 4, + GameSpecificHeader = 5, + ReplayStreamerInternal = 6, + LoadMap = 7, + Serialization = 8, + EDemoPlayFailure_MAX = 9, +}; + +// Enum Engine.EViewModeIndex +// NumValues: 0x0026 +enum class EViewModeIndex : uint8 +{ + VMI_BrushWireframe = 0, + VMI_Wireframe = 1, + VMI_Unlit = 2, + VMI_Lit = 3, + VMI_Lit_DetailLighting = 4, + VMI_LightingOnly = 5, + VMI_LightComplexity = 6, + VMI_ShaderComplexity = 8, + VMI_LightmapDensity = 9, + VMI_LitLightmapDensity = 10, + VMI_ReflectionOverride = 11, + VMI_VisualizeBuffer = 12, + VMI_StationaryLightOverlap = 14, + VMI_CollisionPawn = 15, + VMI_CollisionVisibility = 16, + VMI_LODColoration = 18, + VMI_QuadOverdraw = 19, + VMI_PrimitiveDistanceAccuracy = 20, + VMI_MeshUVDensityAccuracy = 21, + VMI_ShaderComplexityWithQuadOverdraw = 22, + VMI_HLODColoration = 23, + VMI_GroupLODColoration = 24, + VMI_MaterialTextureScaleAccuracy = 25, + VMI_RequiredTextureResolution = 26, + VMI_PathTracing = 27, + VMI_RayTracingDebug = 28, + VMI_VisualizeNanite = 29, + VMI_VirtualTexturePendingMips = 30, + VMI_VisualizeLumen = 31, + VMI_VisualizeVirtualShadowMap = 32, + VMI_VisualizeGPUSkinCache = 33, + VMI_VisualizeSubstrate = 34, + VMI_VisualizeGroom = 35, + VMI_LWCComplexity = 36, + VMI_Lit_Wireframe = 37, + VMI_VisualizeActorColoration = 38, + VMI_Max = 39, + VMI_Unknown = 255, +}; + +// Enum Engine.EAspectRatioAxisConstraint +// NumValues: 0x0004 +enum class EAspectRatioAxisConstraint : uint8 +{ + AspectRatio_MaintainYFOV = 0, + AspectRatio_MaintainXFOV = 1, + AspectRatio_MajorAxisFOV = 2, + AspectRatio_MAX = 3, +}; + +// Enum Engine.EOcclusionCombineMode +// NumValues: 0x0003 +enum class EOcclusionCombineMode : uint8 +{ + OCM_Minimum = 0, + OCM_Multiply = 1, + OCM_MAX = 2, +}; + +// Enum Engine.EBlendMode +// NumValues: 0x000B +enum class EBlendMode : uint8 +{ + BLEND_Opaque = 0, + BLEND_Masked = 1, + BLEND_Translucent = 2, + BLEND_Additive = 3, + BLEND_Modulate = 4, + BLEND_AlphaComposite = 5, + BLEND_AlphaHoldout = 6, + BLEND_TranslucentColoredTransmittance = 7, + BLEND_MAX = 8, + BLEND_TranslucentGreyTransmittance = 2, + BLEND_ColoredTransmittanceOnly = 4, +}; + +// Enum Engine.EMaterialFloatPrecisionMode +// NumValues: 0x0005 +enum class EMaterialFloatPrecisionMode : uint8 +{ + MFPM_Default = 0, + MFPM_Full_MaterialExpressionOnly = 1, + MFPM_Full = 2, + MFPM_Half = 3, + MFPM_MAX = 4, +}; + +// Enum Engine.ESamplerSourceMode +// NumValues: 0x0005 +enum class ESamplerSourceMode : uint8 +{ + SSM_FromTextureAsset = 0, + SSM_Wrap_WorldGroupSettings = 1, + SSM_Clamp_WorldGroupSettings = 2, + SSM_TerrainWeightmapGroupSettings = 3, + SSM_MAX = 4, +}; + +// Enum Engine.ETextureMipValueMode +// NumValues: 0x0005 +enum class ETextureMipValueMode : uint8 +{ + TMVM_None = 0, + TMVM_MipLevel = 1, + TMVM_MipBias = 2, + TMVM_Derivative = 3, + TMVM_MAX = 4, +}; + +// Enum Engine.ETranslucencyLightingMode +// NumValues: 0x0007 +enum class ETranslucencyLightingMode : uint8 +{ + TLM_VolumetricNonDirectional = 0, + TLM_VolumetricDirectional = 1, + TLM_VolumetricPerVertexNonDirectional = 2, + TLM_VolumetricPerVertexDirectional = 3, + TLM_Surface = 4, + TLM_SurfacePerPixelLighting = 5, + TLM_MAX = 6, +}; + +// Enum Engine.ERefractionMode +// NumValues: 0x0005 +enum class ERefractionMode : uint8 +{ + RM_IndexOfRefraction = 0, + RM_PixelNormalOffset = 1, + RM_2DOffset = 2, + RM_None = 3, + RM_MAX = 4, +}; + +// Enum Engine.ERefractionCoverageMode +// NumValues: 0x0003 +enum class ERefractionCoverageMode : uint8 +{ + RCM_CoverageIgnored = 0, + RCM_CoverageAccountedFor = 1, + RCM_MAX = 2, +}; + +// Enum Engine.EPixelDepthOffsetMode +// NumValues: 0x0003 +enum class EPixelDepthOffsetMode : uint8 +{ + PDOM_Legacy = 0, + PDOM_AlongCameraVector = 1, + PDOM_MAX = 2, +}; + +// Enum Engine.ETranslucentSortPolicy +// NumValues: 0x0004 +enum class ETranslucentSortPolicy : uint8 +{ + SortByDistance = 0, + SortByProjectedZ = 1, + SortAlongAxis = 2, + ETranslucentSortPolicy_MAX = 3, +}; + +// Enum Engine.EDynamicGlobalIlluminationMethod +// NumValues: 0x0005 +enum class EDynamicGlobalIlluminationMethod : uint8 +{ + None = 0, + Lumen = 1, + ScreenSpace = 2, + Plugin = 3, + EDynamicGlobalIlluminationMethod_MAX = 4, +}; + +// Enum Engine.EReflectionMethod +// NumValues: 0x0004 +enum class EReflectionMethod : uint8 +{ + None = 0, + Lumen = 1, + ScreenSpace = 2, + EReflectionMethod_MAX = 3, +}; + +// Enum Engine.EShadowMapMethod +// NumValues: 0x0003 +enum class EShadowMapMethod : uint8 +{ + ShadowMaps = 0, + VirtualShadowMaps = 1, + EShadowMapMethod_MAX = 2, +}; + +// Enum Engine.ECastRayTracedShadow +// NumValues: 0x0004 +enum class ECastRayTracedShadow : uint8 +{ + Disabled = 0, + UseProjectSetting = 1, + Enabled = 2, + ECastRayTracedShadow_MAX = 3, +}; + +// Enum Engine.EMegaLightsShadowMethod +// NumValues: 0x0004 +enum class EMegaLightsShadowMethod : uint8 +{ + Default = 0, + RayTracing = 1, + VirtualShadowMap = 2, + EMegaLightsShadowMethod_MAX = 3, +}; + +// Enum Engine.ESceneCaptureSource +// NumValues: 0x000B +enum class ESceneCaptureSource : uint8 +{ + SCS_SceneColorHDR = 0, + SCS_SceneColorHDRNoAlpha = 1, + SCS_FinalColorLDR = 2, + SCS_SceneColorSceneDepth = 3, + SCS_SceneDepth = 4, + SCS_DeviceDepth = 5, + SCS_Normal = 6, + SCS_BaseColor = 7, + SCS_FinalColorHDR = 8, + SCS_FinalToneCurveHDR = 9, + SCS_MAX = 10, +}; + +// Enum Engine.ESceneCaptureCompositeMode +// NumValues: 0x0004 +enum class ESceneCaptureCompositeMode : uint8 +{ + SCCM_Overwrite = 0, + SCCM_Additive = 1, + SCCM_Composite = 2, + SCCM_MAX = 3, +}; + +// Enum Engine.EGBufferFormat +// NumValues: 0x0005 +enum class EGBufferFormat : uint8 +{ + Force8BitsPerChannel = 0, + Default = 1, + HighPrecisionNormals = 3, + Force16BitsPerChannel = 5, + EGBufferFormat_MAX = 6, +}; + +// Enum Engine.EMobileLocalLightSetting +// NumValues: 0x0004 +enum class EMobileLocalLightSetting : uint8 +{ + LOCAL_LIGHTS_DISABLED = 0, + LOCAL_LIGHTS_ENABLED = 1, + LOCAL_LIGHTS_BUFFER = 2, + LOCAL_LIGHTS_MAX = 3, +}; + +// Enum Engine.ETrailWidthMode +// NumValues: 0x0004 +enum class ETrailWidthMode : uint8 +{ + ETrailWidthMode_FromCentre = 0, + ETrailWidthMode_FromFirst = 1, + ETrailWidthMode_FromSecond = 2, + ETrailWidthMode_MAX = 3, +}; + +// Enum Engine.EParticleCollisionMode +// NumValues: 0x0003 +enum class EParticleCollisionMode : uint8 +{ + SceneDepth = 0, + DistanceField = 1, + EParticleCollisionMode_MAX = 2, +}; + +// Enum Engine.EMaterialShadingModel +// NumValues: 0x0010 +enum class EMaterialShadingModel : uint8 +{ + MSM_Unlit = 0, + MSM_DefaultLit = 1, + MSM_Subsurface = 2, + MSM_PreintegratedSkin = 3, + MSM_ClearCoat = 4, + MSM_SubsurfaceProfile = 5, + MSM_TwoSidedFoliage = 6, + MSM_Hair = 7, + MSM_Cloth = 8, + MSM_Eye = 9, + MSM_SingleLayerWater = 10, + MSM_ThinTranslucent = 11, + MSM_Strata = 12, + MSM_NUM = 13, + MSM_FromMaterialExpression = 14, + MSM_MAX = 15, +}; + +// Enum Engine.EMaterialSamplerType +// NumValues: 0x0012 +enum class EMaterialSamplerType : uint8 +{ + SAMPLERTYPE_Color = 0, + SAMPLERTYPE_Grayscale = 1, + SAMPLERTYPE_Alpha = 2, + SAMPLERTYPE_Normal = 3, + SAMPLERTYPE_Masks = 4, + SAMPLERTYPE_DistanceFieldFont = 5, + SAMPLERTYPE_LinearColor = 6, + SAMPLERTYPE_LinearGrayscale = 7, + SAMPLERTYPE_Data = 8, + SAMPLERTYPE_External = 9, + SAMPLERTYPE_VirtualColor = 10, + SAMPLERTYPE_VirtualGrayscale = 11, + SAMPLERTYPE_VirtualAlpha = 12, + SAMPLERTYPE_VirtualNormal = 13, + SAMPLERTYPE_VirtualMasks = 14, + SAMPLERTYPE_VirtualLinearColor = 15, + SAMPLERTYPE_VirtualLinearGrayscale = 16, + SAMPLERTYPE_MAX = 17, +}; + +// Enum Engine.EMaterialStencilCompare +// NumValues: 0x000A +enum class EMaterialStencilCompare : uint8 +{ + MSC_Less = 0, + MSC_LessEqual = 1, + MSC_Greater = 2, + MSC_GreaterEqual = 3, + MSC_Equal = 4, + MSC_NotEqual = 5, + MSC_Never = 6, + MSC_Always = 7, + MSC_Count = 8, + MSC_MAX = 9, +}; + +// Enum Engine.EMaterialShadingRate +// NumValues: 0x0009 +enum class EMaterialShadingRate : uint8 +{ + MSR_1x1 = 0, + MSR_2x1 = 1, + MSR_1x2 = 2, + MSR_2x2 = 3, + MSR_4x2 = 4, + MSR_2x4 = 5, + MSR_4x4 = 6, + MSR_Count = 7, + MSR_MAX = 8, +}; + +// Enum Engine.ELightingBuildQuality +// NumValues: 0x0005 +enum class ELightingBuildQuality : uint8 +{ + Quality_Preview = 0, + Quality_Medium = 1, + Quality_High = 2, + Quality_Production = 3, + Quality_MAX = 4, +}; + +// Enum Engine.ENetworkSmoothingMode +// NumValues: 0x0004 +enum class ENetworkSmoothingMode : uint8 +{ + Disabled = 0, + Linear = 1, + Exponential = 2, + ENetworkSmoothingMode_MAX = 3, +}; + +// Enum Engine.EOverlapFilterOption +// NumValues: 0x0004 +enum class EOverlapFilterOption : uint8 +{ + OverlapFilter_All = 0, + OverlapFilter_DynamicOnly = 1, + OverlapFilter_StaticOnly = 2, + OverlapFilter_MAX = 3, +}; + +// Enum Engine.EFilterInterpolationType +// NumValues: 0x0007 +enum class EFilterInterpolationType : uint8 +{ + BSIT_Average = 0, + BSIT_Linear = 1, + BSIT_Cubic = 2, + BSIT_EaseInOut = 3, + BSIT_ExponentialDecay = 4, + BSIT_SpringDamper = 5, + BSIT_MAX = 6, +}; + +// Enum Engine.ETimelineSigType +// NumValues: 0x0006 +enum class ETimelineSigType : uint8 +{ + ETS_EventSignature = 0, + ETS_FloatSignature = 1, + ETS_VectorSignature = 2, + ETS_LinearColorSignature = 3, + ETS_InvalidSignature = 4, + ETS_MAX = 5, +}; + +// Enum Engine.ELightMapPaddingType +// NumValues: 0x0004 +enum class ELightMapPaddingType : uint8 +{ + LMPT_NormalPadding = 0, + LMPT_PrePadding = 1, + LMPT_NoPadding = 2, + LMPT_MAX = 3, +}; + +// Enum Engine.EShadowMapFlags +// NumValues: 0x0003 +enum class EShadowMapFlags : uint8 +{ + SMF_None = 0, + SMF_Streamed = 1, + SMF_MAX = 2, +}; + +// Enum Engine.EUpdateRateShiftBucket +// NumValues: 0x0008 +enum class EUpdateRateShiftBucket : uint8 +{ + ShiftBucket0 = 0, + ShiftBucket1 = 1, + ShiftBucket2 = 2, + ShiftBucket3 = 3, + ShiftBucket4 = 4, + ShiftBucket5 = 5, + ShiftBucketMax = 6, + EUpdateRateShiftBucket_MAX = 7, +}; + +// Enum Engine.ENaniteFallbackTarget +// NumValues: 0x0004 +enum class ENaniteFallbackTarget : uint8 +{ + Auto = 0, + PercentTriangles = 1, + RelativeError = 2, + ENaniteFallbackTarget_MAX = 3, +}; + +// Enum Engine.ENetRole +// NumValues: 0x0005 +enum class ENetRole : uint8 +{ + ROLE_None = 0, + ROLE_SimulatedProxy = 1, + ROLE_AutonomousProxy = 2, + ROLE_Authority = 3, + ROLE_MAX = 4, +}; + +// Enum Engine.ENetDormancy +// NumValues: 0x0006 +enum class ENetDormancy : uint8 +{ + DORM_Never = 0, + DORM_Awake = 1, + DORM_DormantAll = 2, + DORM_DormantPartial = 3, + DORM_Initial = 4, + DORM_MAX = 5, +}; + +// Enum Engine.EPhysicsReplicationMode +// NumValues: 0x0004 +enum class EPhysicsReplicationMode : uint8 +{ + Default = 0, + PredictiveInterpolation = 1, + Resimulation = 2, + EPhysicsReplicationMode_MAX = 3, +}; + +// Enum Engine.EAutoReceiveInput +// NumValues: 0x000A +enum class EAutoReceiveInput : uint8 +{ + Disabled = 0, + Player0 = 1, + Player1 = 2, + Player2 = 3, + Player3 = 4, + Player4 = 5, + Player5 = 6, + Player6 = 7, + Player7 = 8, + EAutoReceiveInput_MAX = 9, +}; + +// Enum Engine.EAutoPossessAI +// NumValues: 0x0005 +enum class EAutoPossessAI : uint8 +{ + Disabled = 0, + PlacedInWorld = 1, + Spawned = 2, + PlacedInWorldOrSpawned = 3, + EAutoPossessAI_MAX = 4, +}; + +// Enum Engine.EPhysicalMaterialMaskColor +// NumValues: 0x0009 +enum class EPhysicalMaterialMaskColor : uint8 +{ + Red = 0, + Green = 1, + Blue = 2, + Cyan = 3, + Magenta = 4, + Yellow = 5, + White = 6, + Black = 7, + MAX = 8, +}; + +// Enum Engine.EComponentSocketType +// NumValues: 0x0004 +enum class EComponentSocketType : uint8 +{ + Invalid = 0, + Bone = 1, + Socket = 2, + EComponentSocketType_MAX = 3, +}; + +// Enum Engine.ESpawnActorCollisionHandlingMethod +// NumValues: 0x0006 +enum class ESpawnActorCollisionHandlingMethod : uint8 +{ + Undefined = 0, + AlwaysSpawn = 1, + AdjustIfPossibleButAlwaysSpawn = 2, + AdjustIfPossibleButDontSpawnIfColliding = 3, + DontSpawnIfColliding = 4, + ESpawnActorCollisionHandlingMethod_MAX = 5, +}; + +// Enum Engine.EMeshBufferAccess +// NumValues: 0x0003 +enum class EMeshBufferAccess : uint8 +{ + Default = 0, + ForceCPUAndGPU = 1, + EMeshBufferAccess_MAX = 2, +}; + +// Enum Engine.EFontImportCharacterSet +// NumValues: 0x0004 +enum class EFontImportCharacterSet : uint8 +{ + FontICS_Default = 0, + FontICS_Ansi = 1, + FontICS_Symbol = 2, + FontICS_MAX = 3, +}; + +// Enum Engine.EStandbyType +// NumValues: 0x0004 +enum class EStandbyType : uint8 +{ + STDBY_Rx = 0, + STDBY_Tx = 1, + STDBY_BadPing = 2, + STDBY_MAX = 3, +}; + +// Enum Engine.ESuggestProjVelocityTraceOption +// NumValues: 0x0004 +enum class ESuggestProjVelocityTraceOption : uint8 +{ + DoNotTrace = 0, + TraceFullPath = 1, + OnlyTraceWhileAscending = 2, + ESuggestProjVelocityTraceOption_MAX = 3, +}; + +// Enum Engine.EHISMViewRelevanceType +// NumValues: 0x0004 +enum class EHISMViewRelevanceType : uint8 +{ + Grass = 0, + Foliage = 1, + HISM = 2, + EHISMViewRelevanceType_MAX = 3, +}; + +// Enum Engine.EHitProxyPriority +// NumValues: 0x0005 +enum class EHitProxyPriority : uint8 +{ + HPP_World = 0, + HPP_Wireframe = 1, + HPP_Foreground = 2, + HPP_UI = 3, + HPP_MAX = 4, +}; + +// Enum Engine.EHierarchicalSimplificationMethod +// NumValues: 0x0005 +enum class EHierarchicalSimplificationMethod : uint8 +{ + None = 0, + Merge = 1, + Simplify = 2, + Approximate = 3, + EHierarchicalSimplificationMethod_MAX = 4, +}; + +// Enum Engine.EAdManagerDelegate +// NumValues: 0x0003 +enum class EAdManagerDelegate : uint8 +{ + AMD_ClickedBanner = 0, + AMD_UserClosedAd = 1, + AMD_MAX = 2, +}; + +// Enum Engine.ERoundingMode +// NumValues: 0x0008 +enum class ERoundingMode : uint8 +{ + HalfToEven = 0, + HalfFromZero = 1, + HalfToZero = 2, + FromZero = 3, + ToZero = 4, + ToNegativeInfinity = 5, + ToPositiveInfinity = 6, + ERoundingMode_MAX = 7, +}; + +// Enum Engine.EMemoryUnitStandard +// NumValues: 0x0003 +enum class EMemoryUnitStandard : uint8 +{ + IEC = 0, + SI = 1, + EMemoryUnitStandard_MAX = 2, +}; + +// Enum Engine.EDateTimeStyle +// NumValues: 0x0007 +enum class EDateTimeStyle : uint8 +{ + Default = 0, + Short = 1, + Medium = 2, + Long = 3, + Full = 4, + Custom = 5, + EDateTimeStyle_MAX = 6, +}; + +// Enum Engine.EViewStatusForScreenPercentage +// NumValues: 0x0006 +enum class EViewStatusForScreenPercentage : uint8 +{ + NonRealtime = 0, + Desktop = 1, + Mobile = 2, + VR = 3, + PathTracer = 4, + EViewStatusForScreenPercentage_MAX = 5, +}; + +// Enum Engine.EScreenPercentageMode +// NumValues: 0x0004 +enum class EScreenPercentageMode : uint32 +{ + Manual = 0, + BasedOnDisplayResolution = 1, + BasedOnDPIScale = 2, + EScreenPercentageMode_MAX = 3, +}; + +// Enum Engine.ELevelInstanceRuntimeBehavior +// NumValues: 0x0005 +enum class ELevelInstanceRuntimeBehavior : uint8 +{ + None = 0, + Embedded_Deprecated = 1, + Partitioned = 2, + LevelStreaming = 3, + ELevelInstanceRuntimeBehavior_MAX = 4, +}; + +// Enum Engine.ELevelInstanceCreationType +// NumValues: 0x0003 +enum class ELevelInstanceCreationType : uint8 +{ + LevelInstance = 0, + PackedLevelActor = 1, + ELevelInstanceCreationType_MAX = 2, +}; + +// Enum Engine.ELevelInstancePivotType +// NumValues: 0x0005 +enum class ELevelInstancePivotType : uint8 +{ + CenterMinZ = 0, + Center = 1, + Actor = 2, + WorldOrigin = 3, + ELevelInstancePivotType_MAX = 4, +}; + +// Enum Engine.EStreamingVolumeUsage +// NumValues: 0x0006 +enum class EStreamingVolumeUsage : uint8 +{ + SVB_Loading = 0, + SVB_LoadingAndVisibility = 1, + SVB_VisibilityBlockingOnLoad = 2, + SVB_BlockingOnLoad = 3, + SVB_LoadingNotVisible = 4, + SVB_MAX = 5, +}; + +// Enum Engine.EMaterialDomain +// NumValues: 0x0008 +enum class EMaterialDomain : uint8 +{ + MD_Surface = 0, + MD_DeferredDecal = 1, + MD_LightFunction = 2, + MD_Volume = 3, + MD_PostProcess = 4, + MD_UI = 5, + MD_RuntimeVirtualTexture = 6, + MD_MAX = 7, +}; + +// Enum Engine.EPositionOrigin +// NumValues: 0x0003 +enum class EPositionOrigin : uint8 +{ + Absolute = 0, + CameraRelative = 1, + EPositionOrigin_MAX = 2, +}; + +// Enum Engine.ETextureColorChannel +// NumValues: 0x0005 +enum class ETextureColorChannel : uint8 +{ + TCC_Red = 0, + TCC_Green = 1, + TCC_Blue = 2, + TCC_Alpha = 3, + TCC_MAX = 4, +}; + +// Enum Engine.EMaterialAttributeBlend +// NumValues: 0x0004 +enum class EMaterialAttributeBlend : uint8 +{ + Blend = 0, + UseA = 1, + UseB = 2, + EMaterialAttributeBlend_MAX = 3, +}; + +// Enum Engine.EMaterialAttributeBlendFunction +// NumValues: 0x0003 +enum class EMaterialAttributeBlendFunction : uint8 +{ + Horizontal = 0, + Vertical = 1, + EMaterialAttributeBlendFunction_MAX = 2, +}; + +// Enum Engine.EMaterialExpressionBoundsType +// NumValues: 0x0004 +enum class EMaterialExpressionBoundsType : uint8 +{ + MEILB_InstanceLocal = 0, + MEILB_ObjectLocal = 1, + MEILB_PreSkinnedLocal = 2, + MEILB_MAX = 3, +}; + +// Enum Engine.EChannelMaskParameterColor +// NumValues: 0x0005 +enum class EChannelMaskParameterColor : uint8 +{ + Red = 0, + Green = 1, + Blue = 2, + Alpha = 3, + EChannelMaskParameterColor_MAX = 4, +}; + +// Enum Engine.EClampMode +// NumValues: 0x0004 +enum class EClampMode : uint8 +{ + CMODE_Clamp = 0, + CMODE_ClampMin = 1, + CMODE_ClampMax = 2, + CMODE_MAX = 3, +}; + +// Enum Engine.ECustomMaterialOutputType +// NumValues: 0x0006 +enum class ECustomMaterialOutputType : uint8 +{ + CMOT_Float1 = 0, + CMOT_Float2 = 1, + CMOT_Float3 = 2, + CMOT_Float4 = 3, + CMOT_MaterialAttributes = 4, + CMOT_MAX = 5, +}; + +// Enum Engine.EDataDrivenShaderPlatformInfoCondition +// NumValues: 0x0003 +enum class EDataDrivenShaderPlatformInfoCondition : uint8 +{ + COND_True = 0, + COND_False = 1, + COND_Max = 2, +}; + +// Enum Engine.EDBufferTextureId +// NumValues: 0x0004 +enum class EDBufferTextureId : uint8 +{ + DBT_A = 0, + DBT_B = 1, + DBT_C = 2, + DBT_MAX = 3, +}; + +// Enum Engine.EDepthOfFieldFunctionValue +// NumValues: 0x0005 +enum class EDepthOfFieldFunctionValue : uint8 +{ + TDOF_NearAndFarMask = 0, + TDOF_NearMask = 1, + TDOF_FarMask = 2, + TDOF_CircleOfConfusionRadius = 3, + TDOF_MAX = 4, +}; + +// Enum Engine.EFloatToIntMode +// NumValues: 0x0005 +enum class EFloatToIntMode : uint8 +{ + Truncate = 0, + Floor = 1, + Round = 2, + Ceil = 3, + EFloatToIntMode_MAX = 4, +}; + +// Enum Engine.EFunctionInputType +// NumValues: 0x000E +enum class EFunctionInputType : uint8 +{ + FunctionInput_Scalar = 0, + FunctionInput_Vector2 = 1, + FunctionInput_Vector3 = 2, + FunctionInput_Vector4 = 3, + FunctionInput_Texture2D = 4, + FunctionInput_TextureCube = 5, + FunctionInput_Texture2DArray = 6, + FunctionInput_VolumeTexture = 7, + FunctionInput_StaticBool = 8, + FunctionInput_MaterialAttributes = 9, + FunctionInput_TextureExternal = 10, + FunctionInput_Bool = 11, + FunctionInput_Substrate = 12, + FunctionInput_MAX = 13, +}; + +// Enum Engine.EPositionIncludedOffsets +// NumValues: 0x0003 +enum class EPositionIncludedOffsets : uint32 +{ + IncludeOffsets = 0, + ExcludeOffsets = 1, + EPositionIncludedOffsets_MAX = 2, +}; + +// Enum Engine.ELocalPositionOrigin +// NumValues: 0x0004 +enum class ELocalPositionOrigin : uint32 +{ + Instance = 0, + InstancePreSkinning = 1, + Primitive = 2, + ELocalPositionOrigin_MAX = 3, +}; + +// Enum Engine.ENeuralIndexType +// NumValues: 0x0003 +enum class ENeuralIndexType : uint8 +{ + NIT_TextureIndex = 0, + NIT_BufferIndex = 1, + NIT_MAX = 2, +}; + +// Enum Engine.ENoiseFunction +// NumValues: 0x0007 +enum class ENoiseFunction : uint8 +{ + NOISEFUNCTION_SimplexTex = 0, + NOISEFUNCTION_GradientTex = 1, + NOISEFUNCTION_GradientTex3D = 2, + NOISEFUNCTION_GradientALU = 3, + NOISEFUNCTION_ValueALU = 4, + NOISEFUNCTION_VoronoiALU = 5, + NOISEFUNCTION_MAX = 6, +}; + +// Enum Engine.EPathTracingBufferTextureId +// NumValues: 0x0006 +enum class EPathTracingBufferTextureId : uint8 +{ + PTBT_Radiance = 0, + PTBT_DenoisedRadiance = 1, + PTBT_Albedo = 2, + PTBT_Normal = 3, + PTBT_Variance = 4, + PTBT_MAX = 5, +}; + +// Enum Engine.ERuntimeVirtualTextureMipValueMode +// NumValues: 0x0007 +enum class ERuntimeVirtualTextureMipValueMode : uint8 +{ + RVTMVM_None = 0, + RVTMVM_MipLevel = 1, + RVTMVM_MipBias = 2, + RVTMVM_RecalculateDerivatives = 3, + RVTMVM_DerivativeUV = 4, + RVTMVM_DerivativeWorld = 5, + RVTMVM_MAX = 6, +}; + +// Enum Engine.ERuntimeVirtualTextureTextureAddressMode +// NumValues: 0x0003 +enum class ERuntimeVirtualTextureTextureAddressMode : uint8 +{ + RVTTA_Clamp = 0, + RVTTA_Wrap = 1, + RVTTA_MAX = 2, +}; + +// Enum Engine.EMaterialSceneAttributeInputMode +// NumValues: 0x0003 +enum class EMaterialSceneAttributeInputMode : uint8 +{ + Coordinates = 0, + OffsetFraction = 1, + EMaterialSceneAttributeInputMode_MAX = 2, +}; + +// Enum Engine.ESpeedTreeGeometryType +// NumValues: 0x0006 +enum class ESpeedTreeGeometryType : uint8 +{ + STG_Branch = 0, + STG_Frond = 1, + STG_Leaf = 2, + STG_FacingLeaf = 3, + STG_Billboard = 4, + STG_MAX = 5, +}; + +// Enum Engine.ESpeedTreeWindType +// NumValues: 0x0008 +enum class ESpeedTreeWindType : uint8 +{ + STW_None = 0, + STW_Fastest = 1, + STW_Fast = 2, + STW_Better = 3, + STW_Best = 4, + STW_Palm = 5, + STW_BestPlus = 6, + STW_MAX = 7, +}; + +// Enum Engine.ESpeedTreeLODType +// NumValues: 0x0003 +enum class ESpeedTreeLODType : uint8 +{ + STLOD_Pop = 0, + STLOD_Smooth = 1, + STLOD_MAX = 2, +}; + +// Enum Engine.ESwitchMaterialOutputType +// NumValues: 0x0005 +enum class ESwitchMaterialOutputType : uint8 +{ + TMMOT_Float1 = 0, + TMMOT_Float2 = 1, + TMMOT_Float3 = 2, + TMMOT_Float4 = 3, + TMMOT_MAX = 4, +}; + +// Enum Engine.ETextureCollectionMemberType +// NumValues: 0x0006 +enum class ETextureCollectionMemberType : uint8 +{ + Texture2D = 0, + TextureCube = 1, + Texture2DArray = 2, + TextureCubeArray = 3, + TextureVolume = 4, + Max = 5, +}; + +// Enum Engine.EMaterialExposedTextureProperty +// NumValues: 0x0003 +enum class EMaterialExposedTextureProperty : uint8 +{ + TMTM_TextureSize = 0, + TMTM_TexelSize = 1, + TMTM_MAX = 2, +}; + +// Enum Engine.EMaterialVectorCoordTransformSource +// NumValues: 0x0008 +enum class EMaterialVectorCoordTransformSource : uint8 +{ + TRANSFORMSOURCE_Tangent = 0, + TRANSFORMSOURCE_Local = 1, + TRANSFORMSOURCE_World = 2, + TRANSFORMSOURCE_View = 3, + TRANSFORMSOURCE_Camera = 4, + TRANSFORMSOURCE_ParticleWorld = 5, + TRANSFORMSOURCE_Instance = 6, + TRANSFORMSOURCE_MAX = 7, +}; + +// Enum Engine.EMaterialVectorCoordTransform +// NumValues: 0x0008 +enum class EMaterialVectorCoordTransform : uint8 +{ + TRANSFORM_Tangent = 0, + TRANSFORM_Local = 1, + TRANSFORM_World = 2, + TRANSFORM_View = 3, + TRANSFORM_Camera = 4, + TRANSFORM_ParticleWorld = 5, + TRANSFORM_Instance = 6, + TRANSFORM_MAX = 7, +}; + +// Enum Engine.EMaterialPositionTransformSource +// NumValues: 0x0009 +enum class EMaterialPositionTransformSource : uint8 +{ + TRANSFORMPOSSOURCE_Local = 0, + TRANSFORMPOSSOURCE_World = 1, + TRANSFORMPOSSOURCE_PeriodicWorld = 2, + TRANSFORMPOSSOURCE_TranslatedWorld = 3, + TRANSFORMPOSSOURCE_View = 4, + TRANSFORMPOSSOURCE_Camera = 5, + TRANSFORMPOSSOURCE_Particle = 6, + TRANSFORMPOSSOURCE_Instance = 7, + TRANSFORMPOSSOURCE_MAX = 8, +}; + +// Enum Engine.EVectorNoiseFunction +// NumValues: 0x0006 +enum class EVectorNoiseFunction : uint8 +{ + VNF_CellnoiseALU = 0, + VNF_VectorALU = 1, + VNF_GradientALU = 2, + VNF_CurlALU = 3, + VNF_VoronoiALU = 4, + VNF_MAX = 5, +}; + +// Enum Engine.EMaterialExposedViewProperty +// NumValues: 0x0011 +enum class EMaterialExposedViewProperty : uint8 +{ + MEVP_BufferSize = 0, + MEVP_FieldOfView = 1, + MEVP_TanHalfFieldOfView = 2, + MEVP_ViewSize = 3, + MEVP_WorldSpaceViewPosition = 4, + MEVP_WorldSpaceCameraPosition = 5, + MEVP_ViewportOffset = 6, + MEVP_TemporalSampleCount = 7, + MEVP_TemporalSampleIndex = 8, + MEVP_TemporalSampleOffset = 9, + MEVP_RuntimeVirtualTextureOutputLevel = 10, + MEVP_RuntimeVirtualTextureOutputDerivative = 11, + MEVP_PreExposure = 12, + MEVP_RuntimeVirtualTextureMaxLevel = 13, + MEVP_ResolutionFraction = 14, + MEVP_PostVolumeUserFlags = 15, + MEVP_MAX = 16, +}; + +// Enum Engine.EWorldPositionIncludedOffsets +// NumValues: 0x0005 +enum class EWorldPositionIncludedOffsets : uint8 +{ + WPT_Default = 0, + WPT_ExcludeAllShaderOffsets = 1, + WPT_CameraRelative = 2, + WPT_CameraRelativeNoOffsets = 3, + WPT_MAX = 4, +}; + +// Enum Engine.EMaterialFunctionUsage +// NumValues: 0x0004 +enum class EMaterialFunctionUsage : uint8 +{ + Default = 0, + MaterialLayer = 1, + MaterialLayerBlend = 2, + EMaterialFunctionUsage_MAX = 3, +}; + +// Enum Engine.EMaterialUsage +// NumValues: 0x0016 +enum class EMaterialUsage : uint8 +{ + MATUSAGE_SkeletalMesh = 0, + MATUSAGE_ParticleSprites = 1, + MATUSAGE_BeamTrails = 2, + MATUSAGE_MeshParticles = 3, + MATUSAGE_StaticLighting = 4, + MATUSAGE_MorphTargets = 5, + MATUSAGE_SplineMesh = 6, + MATUSAGE_InstancedStaticMeshes = 7, + MATUSAGE_GeometryCollections = 8, + MATUSAGE_Clothing = 9, + MATUSAGE_NiagaraSprites = 10, + MATUSAGE_NiagaraRibbons = 11, + MATUSAGE_NiagaraMeshParticles = 12, + MATUSAGE_GeometryCache = 13, + MATUSAGE_Water = 14, + MATUSAGE_HairStrands = 15, + MATUSAGE_LidarPointCloud = 16, + MATUSAGE_VirtualHeightfieldMesh = 17, + MATUSAGE_Nanite = 18, + MATUSAGE_VolumetricCloud = 19, + MATUSAGE_HeterogeneousVolumes = 20, + MATUSAGE_MAX = 21, +}; + +// Enum Engine.EMaterialLayerLinkState +// NumValues: 0x0005 +enum class EMaterialLayerLinkState : uint8 +{ + Uninitialized = 0, + LinkedToParent = 1, + UnlinkedFromParent = 2, + NotFromParent = 3, + EMaterialLayerLinkState_MAX = 4, +}; + +// Enum Engine.ETextureSizingType +// NumValues: 0x0008 +enum class ETextureSizingType : uint8 +{ + TextureSizingType_UseSingleTextureSize = 0, + TextureSizingType_UseAutomaticBiasedSizes = 1, + TextureSizingType_UseManualOverrideTextureSize = 2, + TextureSizingType_UseSimplygonAutomaticSizing = 3, + TextureSizingType_AutomaticFromTexelDensity = 4, + TextureSizingType_AutomaticFromMeshScreenSize = 5, + TextureSizingType_AutomaticFromMeshDrawDistance = 6, + TextureSizingType_MAX = 7, +}; + +// Enum Engine.EMaterialMergeType +// NumValues: 0x0003 +enum class EMaterialMergeType : uint8 +{ + MaterialMergeType_Default = 0, + MaterialMergeType_Simplygon = 1, + MaterialMergeType_MAX = 2, +}; + +// Enum Engine.ESceneTextureId +// NumValues: 0x0027 +enum class ESceneTextureId : uint8 +{ + PPI_SceneColor = 0, + PPI_SceneDepth = 1, + PPI_DiffuseColor = 2, + PPI_SpecularColor = 3, + PPI_SubsurfaceColor = 4, + PPI_BaseColor = 5, + PPI_Specular = 6, + PPI_Metallic = 7, + PPI_WorldNormal = 8, + PPI_SeparateTranslucency = 9, + PPI_Opacity = 10, + PPI_Roughness = 11, + PPI_MaterialAO = 12, + PPI_CustomDepth = 13, + PPI_PostProcessInput0 = 14, + PPI_PostProcessInput1 = 15, + PPI_PostProcessInput2 = 16, + PPI_PostProcessInput3 = 17, + PPI_PostProcessInput4 = 18, + PPI_PostProcessInput5 = 19, + PPI_PostProcessInput6 = 20, + PPI_DecalMask = 21, + PPI_ShadingModelColor = 22, + PPI_ShadingModelID = 23, + PPI_AmbientOcclusion = 24, + PPI_CustomStencil = 25, + PPI_StoredBaseColor = 26, + PPI_StoredSpecular = 27, + PPI_Velocity = 28, + PPI_WorldTangent = 29, + PPI_Anisotropy = 30, + PPI_UserSceneTexture0 = 32, + PPI_UserSceneTexture1 = 33, + PPI_UserSceneTexture2 = 34, + PPI_UserSceneTexture3 = 35, + PPI_UserSceneTexture4 = 36, + PPI_UserSceneTexture5 = 37, + PPI_UserSceneTexture6 = 38, + PPI_MAX = 39, +}; + +// Enum Engine.ELWCFunctionKind +// NumValues: 0x000B +enum class ELWCFunctionKind : uint8 +{ + Constructor = 0, + Promote = 1, + Demote = 2, + Add = 3, + Subtract = 4, + Divide = 5, + MultiplyVectorVector = 6, + MultiplyVectorMatrix = 7, + MultiplyMatrixMatrix = 8, + Other = 9, + Max = 10, +}; + +// Enum Engine.EMaterialParameterAssociation +// NumValues: 0x0004 +enum class EMaterialParameterAssociation : uint8 +{ + LayerParameter = 0, + BlendParameter = 1, + GlobalParameter = 2, + EMaterialParameterAssociation_MAX = 3, +}; + +// Enum Engine.EMeshApproximationType +// NumValues: 0x0003 +enum class EMeshApproximationType : uint8 +{ + MeshAndMaterials = 0, + MeshShapeOnly = 1, + EMeshApproximationType_MAX = 2, +}; + +// Enum Engine.EMeshApproximationBaseCappingType +// NumValues: 0x0004 +enum class EMeshApproximationBaseCappingType : uint8 +{ + NoBaseCapping = 0, + ConvexPolygon = 1, + ConvexSolid = 2, + EMeshApproximationBaseCappingType_MAX = 3, +}; + +// Enum Engine.EOccludedGeometryFilteringPolicy +// NumValues: 0x0003 +enum class EOccludedGeometryFilteringPolicy : uint8 +{ + NoOcclusionFiltering = 0, + VisibilityBasedFiltering = 1, + EOccludedGeometryFilteringPolicy_MAX = 2, +}; + +// Enum Engine.EMeshApproximationSimplificationPolicy +// NumValues: 0x0004 +enum class EMeshApproximationSimplificationPolicy : uint8 +{ + FixedTriangleCount = 0, + TrianglesPerArea = 1, + GeometricTolerance = 2, + EMeshApproximationSimplificationPolicy_MAX = 3, +}; + +// Enum Engine.EMeshApproximationGroundPlaneClippingPolicy +// NumValues: 0x0005 +enum class EMeshApproximationGroundPlaneClippingPolicy : uint8 +{ + NoGroundClipping = 0, + DiscardWithZPlane = 1, + CutWithZPlane = 2, + CutAndFillWithZPlane = 3, + EMeshApproximationGroundPlaneClippingPolicy_MAX = 4, +}; + +// Enum Engine.EMeshApproximationUVGenerationPolicy +// NumValues: 0x0004 +enum class EMeshApproximationUVGenerationPolicy : uint8 +{ + PreferUVAtlas = 0, + PreferXAtlas = 1, + PreferPatchBuilder = 2, + EMeshApproximationUVGenerationPolicy_MAX = 3, +}; + +// Enum Engine.EMeshLODSelectionType +// NumValues: 0x0005 +enum class EMeshLODSelectionType : uint8 +{ + AllLODs = 0, + SpecificLOD = 1, + CalculateLOD = 2, + LowestDetailLOD = 3, + EMeshLODSelectionType_MAX = 4, +}; + +// Enum Engine.EMeshMergeType +// NumValues: 0x0003 +enum class EMeshMergeType : uint8 +{ + MeshMergeType_Default = 0, + MeshMergeType_MergeActor = 1, + MeshMergeType_MAX = 2, +}; + +// Enum Engine.EUVOutput +// NumValues: 0x0003 +enum class EUVOutput : uint8 +{ + DoNotOutputChannel = 0, + OutputChannel = 1, + EUVOutput_MAX = 2, +}; + +// Enum Engine.ELandscapeCullingPrecision +// NumValues: 0x0004 +enum class ELandscapeCullingPrecision : uint8 +{ + High = 0, + Medium = 1, + Low = 2, + ELandscapeCullingPrecision_MAX = 3, +}; + +// Enum Engine.EProxyNormalComputationMethod +// NumValues: 0x0004 +enum class EProxyNormalComputationMethod : uint8 +{ + AngleWeighted = 0, + AreaWeighted = 1, + EqualWeighted = 2, + EProxyNormalComputationMethod_MAX = 3, +}; + +// Enum Engine.EMeshFeatureImportance +// NumValues: 0x0007 +enum class EMeshFeatureImportance : uint8 +{ + Off = 0, + Lowest = 1, + Low = 2, + Normal = 3, + High = 4, + Highest = 5, + EMeshFeatureImportance_MAX = 6, +}; + +// Enum Engine.EStaticMeshReductionTerimationCriterion +// NumValues: 0x0004 +enum class EStaticMeshReductionTerimationCriterion : uint8 +{ + Triangles = 0, + Vertices = 1, + Any = 2, + EStaticMeshReductionTerimationCriterion_MAX = 3, +}; + +// Enum Engine.EMicroTransactionDelegate +// NumValues: 0x0003 +enum class EMicroTransactionDelegate : uint8 +{ + MTD_PurchaseQueryComplete = 0, + MTD_PurchaseComplete = 1, + MTD_MAX = 2, +}; + +// Enum Engine.EMicroTransactionResult +// NumValues: 0x0005 +enum class EMicroTransactionResult : uint8 +{ + MTR_Succeeded = 0, + MTR_Failed = 1, + MTR_Canceled = 2, + MTR_RestoredFromServer = 3, + MTR_MAX = 4, +}; + +// Enum Engine.ENavDataGatheringMode +// NumValues: 0x0004 +enum class ENavDataGatheringMode : uint8 +{ + Default = 0, + Instant = 1, + Lazy = 2, + ENavDataGatheringMode_MAX = 3, +}; + +// Enum Engine.ENavigationDataResolution +// NumValues: 0x0005 +enum class ENavigationDataResolution : uint8 +{ + Low = 0, + Default = 1, + High = 2, + Invalid = 3, + MAX = 3, +}; + +// Enum Engine.ENavigationInvokerPriority +// NumValues: 0x0006 +enum class ENavigationInvokerPriority : uint8 +{ + VeryLow = 1, + Low = 2, + Default = 3, + High = 4, + VeryHigh = 5, + MAX = 6, +}; + +// Enum Engine.ENavLinkDirection +// NumValues: 0x0004 +enum class ENavLinkDirection : uint8 +{ + BothWays = 0, + LeftToRight = 1, + RightToLeft = 2, + ENavLinkDirection_MAX = 3, +}; + +// Enum Engine.EPingType +// NumValues: 0x0007 +enum class EPingType : uint8 +{ + None = 0, + RoundTrip = 1, + RoundTripExclFrame = 2, + ICMP = 4, + UDPQoS = 8, + Max = 8, + Count = 4, +}; + +// Enum Engine.EPingAverageType +// NumValues: 0x0004 +enum class EPingAverageType : uint8 +{ + None = 0, + MovingAverage = 1, + PlayerStateAvg = 2, + EPingAverageType_MAX = 3, +}; + +// Enum Engine.EParticleBurstMethod +// NumValues: 0x0003 +enum class EParticleBurstMethod : uint8 +{ + EPBM_Instant = 0, + EPBM_Interpolated = 1, + EPBM_MAX = 2, +}; + +// Enum Engine.EParticleSubUVInterpMethod +// NumValues: 0x0006 +enum class EParticleSubUVInterpMethod : uint8 +{ + PSUVIM_None = 0, + PSUVIM_Linear = 1, + PSUVIM_Linear_Blend = 2, + PSUVIM_Random = 3, + PSUVIM_Random_Blend = 4, + PSUVIM_MAX = 5, +}; + +// Enum Engine.EEmitterRenderMode +// NumValues: 0x0006 +enum class EEmitterRenderMode : uint8 +{ + ERM_Normal = 0, + ERM_Point = 1, + ERM_Cross = 2, + ERM_LightsOnly = 3, + ERM_None = 4, + ERM_MAX = 5, +}; + +// Enum Engine.EParticleDetailMode +// NumValues: 0x0005 +enum class EParticleDetailMode : uint8 +{ + PDM_Low = 0, + PDM_Medium = 1, + PDM_High = 2, + PDM_Epic = 3, + PDM_MAX = 4, +}; + +// Enum Engine.EParticleSignificanceLevel +// NumValues: 0x0006 +enum class EParticleSignificanceLevel : uint8 +{ + Low = 0, + Medium = 1, + High = 2, + Critical = 3, + Num = 4, + EParticleSignificanceLevel_MAX = 5, +}; + +// Enum Engine.EParticleSystemInsignificanceReaction +// NumValues: 0x0006 +enum class EParticleSystemInsignificanceReaction : uint8 +{ + Auto = 0, + Complete = 1, + DisableTick = 2, + DisableTickAndKill = 3, + Num = 4, + EParticleSystemInsignificanceReaction_MAX = 5, +}; + +// Enum Engine.EModuleType +// NumValues: 0x000A +enum class EModuleType : uint8 +{ + EPMT_General = 0, + EPMT_TypeData = 1, + EPMT_Beam = 2, + EPMT_Trail = 3, + EPMT_Spawn = 4, + EPMT_Required = 5, + EPMT_Event = 6, + EPMT_Light = 7, + EPMT_SubUV = 8, + EPMT_MAX = 9, +}; + +// Enum Engine.EParticleSourceSelectionMethod +// NumValues: 0x0003 +enum class EParticleSourceSelectionMethod : uint8 +{ + EPSSM_Random = 0, + EPSSM_Sequential = 1, + EPSSM_MAX = 2, +}; + +// Enum Engine.EAttractorParticleSelectionMethod +// NumValues: 0x0003 +enum class EAttractorParticleSelectionMethod : uint8 +{ + EAPSM_Random = 0, + EAPSM_Sequential = 1, + EAPSM_MAX = 2, +}; + +// Enum Engine.Beam2SourceTargetMethod +// NumValues: 0x0006 +enum class EBeam2SourceTargetMethod : uint8 +{ + PEB2STM_Default = 0, + PEB2STM_UserSet = 1, + PEB2STM_Emitter = 2, + PEB2STM_Particle = 3, + PEB2STM_Actor = 4, + PEB2STM_MAX = 5, +}; + +// Enum Engine.Beam2SourceTargetTangentMethod +// NumValues: 0x0005 +enum class EBeam2SourceTargetTangentMethod : uint8 +{ + PEB2STTM_Direct = 0, + PEB2STTM_UserSet = 1, + PEB2STTM_Distribution = 2, + PEB2STTM_Emitter = 3, + PEB2STTM_MAX = 4, +}; + +// Enum Engine.BeamModifierType +// NumValues: 0x0003 +enum class EBeamModifierType : uint8 +{ + PEB2MT_Source = 0, + PEB2MT_Target = 1, + PEB2MT_MAX = 2, +}; + +// Enum Engine.EParticleCameraOffsetUpdateMethod +// NumValues: 0x0004 +enum class EParticleCameraOffsetUpdateMethod : uint8 +{ + EPCOUM_DirectSet = 0, + EPCOUM_Additive = 1, + EPCOUM_Scalar = 2, + EPCOUM_MAX = 3, +}; + +// Enum Engine.EParticleCollisionComplete +// NumValues: 0x0007 +enum class EParticleCollisionComplete : uint8 +{ + EPCC_Kill = 0, + EPCC_Freeze = 1, + EPCC_HaltCollisions = 2, + EPCC_FreezeTranslation = 3, + EPCC_FreezeRotation = 4, + EPCC_FreezeMovement = 5, + EPCC_MAX = 6, +}; + +// Enum Engine.EParticleCollisionResponse +// NumValues: 0x0004 +enum class EParticleCollisionResponse : uint8 +{ + Bounce = 0, + Stop = 1, + Kill = 2, + EParticleCollisionResponse_MAX = 3, +}; + +// Enum Engine.ELocationBoneSocketSource +// NumValues: 0x0003 +enum class ELocationBoneSocketSource : uint8 +{ + BONESOCKETSOURCE_Bones = 0, + BONESOCKETSOURCE_Sockets = 1, + BONESOCKETSOURCE_MAX = 2, +}; + +// Enum Engine.ELocationBoneSocketSelectionMethod +// NumValues: 0x0003 +enum class ELocationBoneSocketSelectionMethod : uint8 +{ + BONESOCKETSEL_Sequential = 0, + BONESOCKETSEL_Random = 1, + BONESOCKETSEL_MAX = 2, +}; + +// Enum Engine.ELocationEmitterSelectionMethod +// NumValues: 0x0003 +enum class ELocationEmitterSelectionMethod : uint8 +{ + ELESM_Random = 0, + ELESM_Sequential = 1, + ELESM_MAX = 2, +}; + +// Enum Engine.CylinderHeightAxis +// NumValues: 0x0004 +enum class ECylinderHeightAxis : uint8 +{ + PMLPC_HEIGHTAXIS_X = 0, + PMLPC_HEIGHTAXIS_Y = 1, + PMLPC_HEIGHTAXIS_Z = 2, + PMLPC_HEIGHTAXIS_MAX = 3, +}; + +// Enum Engine.ELocationSkelVertSurfaceSource +// NumValues: 0x0003 +enum class ELocationSkelVertSurfaceSource : uint8 +{ + VERTSURFACESOURCE_Vert = 0, + VERTSURFACESOURCE_Surface = 1, + VERTSURFACESOURCE_MAX = 2, +}; + +// Enum Engine.EOrbitChainMode +// NumValues: 0x0004 +enum class EOrbitChainMode : uint8 +{ + EOChainMode_Add = 0, + EOChainMode_Scale = 1, + EOChainMode_Link = 2, + EOChainMode_MAX = 3, +}; + +// Enum Engine.EParticleAxisLock +// NumValues: 0x000B +enum class EParticleAxisLock : uint8 +{ + EPAL_NONE = 0, + EPAL_X = 1, + EPAL_Y = 2, + EPAL_Z = 3, + EPAL_NEGATIVE_X = 4, + EPAL_NEGATIVE_Y = 5, + EPAL_NEGATIVE_Z = 6, + EPAL_ROTATE_X = 7, + EPAL_ROTATE_Y = 8, + EPAL_ROTATE_Z = 9, + EPAL_MAX = 10, +}; + +// Enum Engine.EEmitterDynamicParameterValue +// NumValues: 0x0007 +enum class EEmitterDynamicParameterValue : uint8 +{ + EDPV_UserSet = 0, + EDPV_AutoSet = 1, + EDPV_VelocityX = 2, + EDPV_VelocityY = 3, + EDPV_VelocityZ = 4, + EDPV_VelocityMag = 5, + EDPV_MAX = 6, +}; + +// Enum Engine.EParticleUVFlipMode +// NumValues: 0x0009 +enum class EParticleUVFlipMode : uint8 +{ + None = 0, + FlipUV = 1, + FlipUOnly = 2, + FlipVOnly = 3, + RandomFlipUV = 4, + RandomFlipUOnly = 5, + RandomFlipVOnly = 6, + RandomFlipUVIndependent = 7, + EParticleUVFlipMode_MAX = 8, +}; + +// Enum Engine.EParticleSortMode +// NumValues: 0x0006 +enum class EParticleSortMode : uint8 +{ + PSORTMODE_None = 0, + PSORTMODE_ViewProjDepth = 1, + PSORTMODE_DistanceToView = 2, + PSORTMODE_Age_OldestFirst = 3, + PSORTMODE_Age_NewestFirst = 4, + PSORTMODE_MAX = 5, +}; + +// Enum Engine.EEmitterNormalsMode +// NumValues: 0x0004 +enum class EEmitterNormalsMode : uint8 +{ + ENM_CameraFacing = 0, + ENM_Spherical = 1, + ENM_Cylindrical = 2, + ENM_MAX = 3, +}; + +// Enum Engine.ETrail2SourceMethod +// NumValues: 0x0004 +enum class ETrail2SourceMethod : uint8 +{ + PET2SRCM_Default = 0, + PET2SRCM_Particle = 1, + PET2SRCM_Actor = 2, + PET2SRCM_MAX = 3, +}; + +// Enum Engine.EBeam2Method +// NumValues: 0x0004 +enum class EBeam2Method : uint8 +{ + PEB2M_Distance = 0, + PEB2M_Target = 1, + PEB2M_Branch = 2, + PEB2M_MAX = 3, +}; + +// Enum Engine.EBeamTaperMethod +// NumValues: 0x0004 +enum class EBeamTaperMethod : uint8 +{ + PEBTM_None = 0, + PEBTM_Full = 1, + PEBTM_Partial = 2, + PEBTM_MAX = 3, +}; + +// Enum Engine.EMeshScreenAlignment +// NumValues: 0x0004 +enum class EMeshScreenAlignment : uint8 +{ + PSMA_MeshFaceCameraWithRoll = 0, + PSMA_MeshFaceCameraWithSpin = 1, + PSMA_MeshFaceCameraWithLockedAxis = 2, + PSMA_MAX = 3, +}; + +// Enum Engine.EMeshCameraFacingUpAxis +// NumValues: 0x0006 +enum class EMeshCameraFacingUpAxis : uint8 +{ + CameraFacing_NoneUP = 0, + CameraFacing_ZUp = 1, + CameraFacing_NegativeZUp = 2, + CameraFacing_YUp = 3, + CameraFacing_NegativeYUp = 4, + CameraFacing_MAX = 5, +}; + +// Enum Engine.EMeshCameraFacingOptions +// NumValues: 0x000E +enum class EMeshCameraFacingOptions : uint8 +{ + XAxisFacing_NoUp = 0, + XAxisFacing_ZUp = 1, + XAxisFacing_NegativeZUp = 2, + XAxisFacing_YUp = 3, + XAxisFacing_NegativeYUp = 4, + LockedAxis_ZAxisFacing = 5, + LockedAxis_NegativeZAxisFacing = 6, + LockedAxis_YAxisFacing = 7, + LockedAxis_NegativeYAxisFacing = 8, + VelocityAligned_ZAxisFacing = 9, + VelocityAligned_NegativeZAxisFacing = 10, + VelocityAligned_YAxisFacing = 11, + VelocityAligned_NegativeYAxisFacing = 12, + EMeshCameraFacingOptions_MAX = 13, +}; + +// Enum Engine.ETrailsRenderAxisOption +// NumValues: 0x0004 +enum class ETrailsRenderAxisOption : uint8 +{ + Trails_CameraUp = 0, + Trails_SourceUp = 1, + Trails_WorldUp = 2, + Trails_MAX = 3, +}; + +// Enum Engine.EParticleScreenAlignment +// NumValues: 0x0008 +enum class EParticleScreenAlignment : uint8 +{ + PSA_FacingCameraPosition = 0, + PSA_Square = 1, + PSA_Rectangle = 2, + PSA_Velocity = 3, + PSA_AwayFromCenter = 4, + PSA_TypeSpecific = 5, + PSA_FacingCameraDistanceBlend = 6, + PSA_MAX = 7, +}; + +// Enum Engine.EParticleSystemUpdateMode +// NumValues: 0x0003 +enum class EParticleSystemUpdateMode : uint8 +{ + EPSUM_RealTime = 0, + EPSUM_FixedTime = 1, + EPSUM_MAX = 2, +}; + +// Enum Engine.ParticleSystemLODMethod +// NumValues: 0x0004 +enum class EParticleSystemLODMethod : uint8 +{ + PARTICLESYSTEMLODMETHOD_Automatic = 0, + PARTICLESYSTEMLODMETHOD_DirectSet = 1, + PARTICLESYSTEMLODMETHOD_ActivateAutomatic = 2, + PARTICLESYSTEMLODMETHOD_MAX = 3, +}; + +// Enum Engine.EParticleSystemOcclusionBoundsMethod +// NumValues: 0x0004 +enum class EParticleSystemOcclusionBoundsMethod : uint8 +{ + EPSOBM_None = 0, + EPSOBM_ParticleBounds = 1, + EPSOBM_CustomBounds = 2, + EPSOBM_MAX = 3, +}; + +// Enum Engine.EParticleSysParamType +// NumValues: 0x000A +enum class EParticleSysParamType : uint8 +{ + PSPT_None = 0, + PSPT_Scalar = 1, + PSPT_ScalarRand = 2, + PSPT_Vector = 3, + PSPT_VectorRand = 4, + PSPT_Color = 5, + PSPT_Actor = 6, + PSPT_Material = 7, + PSPT_VectorUnitRand = 8, + PSPT_MAX = 9, +}; + +// Enum Engine.ParticleReplayState +// NumValues: 0x0004 +enum class EParticleReplayState : uint8 +{ + PRS_Disabled = 0, + PRS_Capturing = 1, + PRS_Replaying = 2, + PRS_MAX = 3, +}; + +// Enum Engine.EParticleEventType +// NumValues: 0x0007 +enum class EParticleEventType : uint8 +{ + EPET_Any = 0, + EPET_Spawn = 1, + EPET_Death = 2, + EPET_Collision = 3, + EPET_Burst = 4, + EPET_Blueprint = 5, + EPET_MAX = 6, +}; + +// Enum Engine.EViewTargetBlendFunction +// NumValues: 0x0007 +enum class EViewTargetBlendFunction : uint8 +{ + VTBlend_Linear = 0, + VTBlend_Cubic = 1, + VTBlend_EaseIn = 2, + VTBlend_EaseOut = 3, + VTBlend_EaseInOut = 4, + VTBlend_PreBlended = 5, + VTBlend_MAX = 6, +}; + +// Enum Engine.EViewTargetBlendOrder +// NumValues: 0x0003 +enum class EViewTargetBlendOrder : uint8 +{ + VTBlendOrder_Base = 0, + VTBlendOrder_Override = 1, + VTBlendOrder_MAX = 2, +}; + +// Enum Engine.ERichCurveInterpMode +// NumValues: 0x0005 +enum class ERichCurveInterpMode : uint8 +{ + RCIM_Linear = 0, + RCIM_Constant = 1, + RCIM_Cubic = 2, + RCIM_None = 3, + RCIM_MAX = 4, +}; + +// Enum Engine.ERichCurveExtrapolation +// NumValues: 0x0007 +enum class ERichCurveExtrapolation : uint8 +{ + RCCE_Cycle = 0, + RCCE_CycleWithOffset = 1, + RCCE_Oscillate = 2, + RCCE_Linear = 3, + RCCE_Constant = 4, + RCCE_None = 5, + RCCE_MAX = 6, +}; + +// Enum Engine.ReverbPreset +// NumValues: 0x0018 +enum class EReverbPreset : uint8 +{ + REVERB_Default = 0, + REVERB_BATHROOM = 1, + REVERB_StoneRoom = 2, + REVERB_Auditorium = 3, + REVERB_ConcertHall = 4, + REVERB_Cave = 5, + REVERB_Hallway = 6, + REVERB_StoneCorridor = 7, + REVERB_Alley = 8, + REVERB_Forest = 9, + REVERB_City = 10, + REVERB_Mountains = 11, + REVERB_Quarry = 12, + REVERB_Plain = 13, + REVERB_ParkingLot = 14, + REVERB_SewerPipe = 15, + REVERB_Underwater = 16, + REVERB_SMALLROOM = 17, + REVERB_MEDIUMROOM = 18, + REVERB_LargeRoom = 19, + REVERB_MediumHall = 20, + REVERB_LargeHall = 21, + REVERB_Plate = 22, + REVERB_MAX = 23, +}; + +// Enum Engine.ERichCurveTangentMode +// NumValues: 0x0006 +enum class ERichCurveTangentMode : uint8 +{ + RCTM_Auto = 0, + RCTM_User = 1, + RCTM_Break = 2, + RCTM_None = 3, + RCTM_SmartAuto = 4, + RCTM_MAX = 5, +}; + +// Enum Engine.ERichCurveTangentWeightMode +// NumValues: 0x0005 +enum class ERichCurveTangentWeightMode : uint8 +{ + RCTWM_WeightedNone = 0, + RCTWM_WeightedArrive = 1, + RCTWM_WeightedLeave = 2, + RCTWM_WeightedBoth = 3, + RCTWM_MAX = 4, +}; + +// Enum Engine.ERichCurveCompressionFormat +// NumValues: 0x0007 +enum class ERichCurveCompressionFormat : uint8 +{ + RCCF_Empty = 0, + RCCF_Constant = 1, + RCCF_Linear = 2, + RCCF_Cubic = 3, + RCCF_Mixed = 4, + RCCF_Weighted = 5, + RCCF_MAX = 6, +}; + +// Enum Engine.ERichCurveKeyTimeCompressionFormat +// NumValues: 0x0003 +enum class ERichCurveKeyTimeCompressionFormat : uint8 +{ + RCKTCF_uint16 = 0, + RCKTCF_float32 = 1, + RCKTCF_MAX = 2, +}; + +// Enum Engine.ERuntimePartitionCellBoundsMethod +// NumValues: 0x0004 +enum class ERuntimePartitionCellBoundsMethod : uint8 +{ + UseContent = 0, + UseCellBounds = 1, + UseMinContentCellBounds = 2, + ERuntimePartitionCellBoundsMethod_MAX = 3, +}; + +// Enum Engine.ERuntimeVirtualTextureMaterialType +// NumValues: 0x000A +enum class ERuntimeVirtualTextureMaterialType : uint8 +{ + BaseColor = 0, + Mask4 = 1, + BaseColor_Normal_Roughness = 2, + BaseColor_Normal_Specular = 3, + BaseColor_Normal_Specular_YCoCg = 4, + BaseColor_Normal_Specular_Mask_YCoCg = 5, + WorldHeight = 6, + Displacement = 7, + Count = 8, + ERuntimeVirtualTextureMaterialType_MAX = 9, +}; + +// Enum Engine.EDepthOfFieldMethod +// NumValues: 0x0004 +enum class EDepthOfFieldMethod : uint8 +{ + DOFM_BokehDOF = 0, + DOFM_Gaussian = 1, + DOFM_CircleDOF = 2, + DOFM_MAX = 3, +}; + +// Enum Engine.EAutoExposureMethod +// NumValues: 0x0004 +enum class EAutoExposureMethod : uint8 +{ + AEM_Histogram = 0, + AEM_Basic = 1, + AEM_Manual = 2, + AEM_MAX = 3, +}; + +// Enum Engine.ELocalExposureMethod +// NumValues: 0x0003 +enum class ELocalExposureMethod : uint8 +{ + Bilateral = 0, + Fusion = 1, + ELocalExposureMethod_MAX = 2, +}; + +// Enum Engine.EBloomMethod +// NumValues: 0x0003 +enum class EBloomMethod : uint8 +{ + BM_SOG = 0, + BM_FFT = 1, + BM_MAX = 2, +}; + +// Enum Engine.ETemperatureMethod +// NumValues: 0x0003 +enum class ETemperatureMethod : uint8 +{ + TEMP_WhiteBalance = 0, + TEMP_ColorTemperature = 1, + TEMP_MAX = 2, +}; + +// Enum Engine.ELightUnits +// NumValues: 0x0005 +enum class ELightUnits : uint8 +{ + Unitless = 0, + Candelas = 1, + Lumens = 2, + EV = 3, + ELightUnits_MAX = 4, +}; + +// Enum Engine.EReflectionsType +// NumValues: 0x0003 +enum class EReflectionsType : uint8 +{ + ScreenSpace = 0, + RayTracing = 1, + EReflectionsType_MAX = 2, +}; + +// Enum Engine.ELumenRayLightingModeOverride +// NumValues: 0x0005 +enum class ELumenRayLightingModeOverride : uint8 +{ + Default = 0, + SurfaceCache = 1, + HitLightingForReflections = 2, + HitLighting = 3, + ELumenRayLightingModeOverride_MAX = 4, +}; + +// Enum Engine.ETranslucencyType +// NumValues: 0x0003 +enum class ETranslucencyType : uint8 +{ + Raster = 0, + RayTracing = 1, + ETranslucencyType_MAX = 2, +}; + +// Enum Engine.EReflectedAndRefractedRayTracedShadows +// NumValues: 0x0004 +enum class EReflectedAndRefractedRayTracedShadows : uint8 +{ + Disabled = 0, + Hard_shadows = 1, + Area_shadows = 2, + EReflectedAndRefractedRayTracedShadows_MAX = 3, +}; + +// Enum Engine.EMobilePlanarReflectionMode +// NumValues: 0x0004 +enum class EMobilePlanarReflectionMode : uint8 +{ + Usual = 0, + MobilePPRExclusive = 1, + MobilePPR = 2, + EMobilePlanarReflectionMode_MAX = 3, +}; + +// Enum Engine.EMobilePixelProjectedReflectionQuality +// NumValues: 0x0005 +enum class EMobilePixelProjectedReflectionQuality : uint8 +{ + Disabled = 0, + BestPerformance = 1, + BetterQuality = 2, + BestQuality = 3, + EMobilePixelProjectedReflectionQuality_MAX = 4, +}; + +// Enum Engine.EMaterialProperty +// NumValues: 0x0024 +enum class EMaterialProperty : uint8 +{ + MP_EmissiveColor = 0, + MP_Opacity = 1, + MP_OpacityMask = 2, + MP_DiffuseColor = 3, + MP_SpecularColor = 4, + MP_BaseColor = 5, + MP_Metallic = 6, + MP_Specular = 7, + MP_Roughness = 8, + MP_Anisotropy = 9, + MP_Normal = 10, + MP_Tangent = 11, + MP_WorldPositionOffset = 12, + MP_WorldDisplacement_DEPRECATED = 13, + MP_TessellationMultiplier_DEPRECATED = 14, + MP_SubsurfaceColor = 15, + MP_CustomData0 = 16, + MP_CustomData1 = 17, + MP_AmbientOcclusion = 18, + MP_Refraction = 19, + MP_CustomizedUVs0 = 20, + MP_CustomizedUVs1 = 21, + MP_CustomizedUVs2 = 22, + MP_CustomizedUVs3 = 23, + MP_CustomizedUVs4 = 24, + MP_CustomizedUVs5 = 25, + MP_CustomizedUVs6 = 26, + MP_CustomizedUVs7 = 27, + MP_PixelDepthOffset = 28, + MP_ShadingModel = 29, + MP_FrontMaterial = 30, + MP_SurfaceThickness = 31, + MP_Displacement = 32, + MP_MaterialAttributes = 33, + MP_CustomOutput = 34, + MP_MAX = 35, +}; + +// Enum Engine.EAntiAliasingMethod +// NumValues: 0x0006 +enum class EAntiAliasingMethod : uint8 +{ + AAM_None = 0, + AAM_FXAA = 1, + AAM_TemporalAA = 2, + AAM_MSAA = 3, + AAM_TSR = 4, + AAM_MAX = 5, +}; + +// Enum Engine.SkeletalMeshTerminationCriterion +// NumValues: 0x0007 +enum class ESkeletalMeshTerminationCriterion : uint8 +{ + SMTC_NumOfTriangles = 0, + SMTC_NumOfVerts = 1, + SMTC_TriangleOrVert = 2, + SMTC_AbsNumOfTriangles = 3, + SMTC_AbsNumOfVerts = 4, + SMTC_AbsTriangleOrVert = 5, + SMTC_MAX = 6, +}; + +// Enum Engine.SkeletalMeshOptimizationType +// NumValues: 0x0004 +enum class ESkeletalMeshOptimizationType : uint8 +{ + SMOT_NumOfTriangles = 0, + SMOT_MaxDeviation = 1, + SMOT_TriangleOrDeviation = 2, + SMOT_MAX = 3, +}; + +// Enum Engine.SkeletalMeshOptimizationImportance +// NumValues: 0x0007 +enum class ESkeletalMeshOptimizationImportance : uint8 +{ + SMOI_Off = 0, + SMOI_Lowest = 1, + SMOI_Low = 2, + SMOI_Normal = 3, + SMOI_High = 4, + SMOI_Highest = 5, + SMOI_MAX = 6, +}; + +// Enum Engine.EBoneVisibilityStatus +// NumValues: 0x0004 +enum class EBoneVisibilityStatus : uint8 +{ + BVS_HiddenByParent = 0, + BVS_Visible = 1, + BVS_ExplicitlyHidden = 2, + BVS_MAX = 3, +}; + +// Enum Engine.EPhysBodyOp +// NumValues: 0x0003 +enum class EPhysBodyOp : uint8 +{ + PBO_None = 0, + PBO_Term = 1, + PBO_MAX = 2, +}; + +// Enum Engine.EVisibilityBasedAnimTickOption +// NumValues: 0x0006 +enum class EVisibilityBasedAnimTickOption : uint8 +{ + AlwaysTickPoseAndRefreshBones = 0, + AlwaysTickPose = 1, + OnlyTickMontagesAndRefreshBonesWhenPlayingMontages = 2, + OnlyTickMontagesWhenNotRendered = 3, + OnlyTickPoseWhenRendered = 4, + EVisibilityBasedAnimTickOption_MAX = 5, +}; + +// Enum Engine.EBoneSpaces +// NumValues: 0x0003 +enum class EBoneSpaces : uint8 +{ + WorldSpace = 0, + ComponentSpace = 1, + EBoneSpaces_MAX = 2, +}; + +// Enum Engine.ESkinWeightProfileLayer +// NumValues: 0x0003 +enum class ESkinWeightProfileLayer : uint8 +{ + Primary = 0, + Secondary = 1, + ESkinWeightProfileLayer_MAX = 2, +}; + +// Enum Engine.ESkyLightSourceType +// NumValues: 0x0003 +enum class ESkyLightSourceType : uint8 +{ + SLS_CapturedScene = 0, + SLS_SpecifiedCubemap = 1, + SLS_MAX = 2, +}; + +// Enum Engine.ESoundDistanceCalc +// NumValues: 0x0005 +enum class ESoundDistanceCalc : uint8 +{ + SOUNDDISTANCE_Normal = 0, + SOUNDDISTANCE_InfiniteXYPlane = 1, + SOUNDDISTANCE_InfiniteXZPlane = 2, + SOUNDDISTANCE_InfiniteYZPlane = 3, + SOUNDDISTANCE_MAX = 4, +}; + +// Enum Engine.ESoundSpatializationAlgorithm +// NumValues: 0x0003 +enum class ESoundSpatializationAlgorithm : uint8 +{ + SPATIALIZATION_Default = 0, + SPATIALIZATION_HRTF = 1, + SPATIALIZATION_MAX = 2, +}; + +// Enum Engine.EAirAbsorptionMethod +// NumValues: 0x0003 +enum class EAirAbsorptionMethod : uint8 +{ + Linear = 0, + CustomCurve = 1, + EAirAbsorptionMethod_MAX = 2, +}; + +// Enum Engine.EReverbSendMethod +// NumValues: 0x0004 +enum class EReverbSendMethod : uint8 +{ + Linear = 0, + CustomCurve = 1, + Manual = 2, + EReverbSendMethod_MAX = 3, +}; + +// Enum Engine.EPriorityAttenuationMethod +// NumValues: 0x0004 +enum class EPriorityAttenuationMethod : uint8 +{ + Linear = 0, + CustomCurve = 1, + Manual = 2, + EPriorityAttenuationMethod_MAX = 3, +}; + +// Enum Engine.ENonSpatializedRadiusSpeakerMapMode +// NumValues: 0x0004 +enum class ENonSpatializedRadiusSpeakerMapMode : uint8 +{ + OmniDirectional = 0, + Direct2D = 1, + Surround2D = 2, + ENonSpatializedRadiusSpeakerMapMode_MAX = 3, +}; + +// Enum Engine.ESoundGroup +// NumValues: 0x001A +enum class ESoundGroup : uint8 +{ + SOUNDGROUP_Default = 0, + SOUNDGROUP_Effects = 1, + SOUNDGROUP_UI = 2, + SOUNDGROUP_Music = 3, + SOUNDGROUP_Voice = 4, + SOUNDGROUP_GameSoundGroup1 = 5, + SOUNDGROUP_GameSoundGroup2 = 6, + SOUNDGROUP_GameSoundGroup3 = 7, + SOUNDGROUP_GameSoundGroup4 = 8, + SOUNDGROUP_GameSoundGroup5 = 9, + SOUNDGROUP_GameSoundGroup6 = 10, + SOUNDGROUP_GameSoundGroup7 = 11, + SOUNDGROUP_GameSoundGroup8 = 12, + SOUNDGROUP_GameSoundGroup9 = 13, + SOUNDGROUP_GameSoundGroup10 = 14, + SOUNDGROUP_GameSoundGroup11 = 15, + SOUNDGROUP_GameSoundGroup12 = 16, + SOUNDGROUP_GameSoundGroup13 = 17, + SOUNDGROUP_GameSoundGroup14 = 18, + SOUNDGROUP_GameSoundGroup15 = 19, + SOUNDGROUP_GameSoundGroup16 = 20, + SOUNDGROUP_GameSoundGroup17 = 21, + SOUNDGROUP_GameSoundGroup18 = 22, + SOUNDGROUP_GameSoundGroup19 = 23, + SOUNDGROUP_GameSoundGroup20 = 24, + SOUNDGROUP_MAX = 25, +}; + +// Enum Engine.ModulationParamMode +// NumValues: 0x0004 +enum class EModulationParamMode : uint8 +{ + MPM_Normal = 0, + MPM_Abs = 1, + MPM_Direct = 2, + MPM_MAX = 3, +}; + +// Enum Engine.ESourceBusSendLevelControlMethod +// NumValues: 0x0004 +enum class ESourceBusSendLevelControlMethod : uint8 +{ + Linear = 0, + CustomCurve = 1, + Manual = 2, + ESourceBusSendLevelControlMethod_MAX = 3, +}; + +// Enum Engine.EDecompressionType +// NumValues: 0x0007 +enum class EDecompressionType : uint8 +{ + DTYPE_Setup = 0, + DTYPE_Invalid = 1, + DTYPE_RealTime = 2, + DTYPE_Procedural = 3, + DTYPE_Xenon = 4, + DTYPE_Streaming = 5, + DTYPE_MAX = 6, +}; + +// Enum Engine.ESoundWaveFFTSize +// NumValues: 0x0006 +enum class ESoundWaveFFTSize : uint8 +{ + VerySmall_64 = 0, + Small_256 = 1, + Medium_512 = 2, + Large_1024 = 3, + VeryLarge_2048 = 4, + ESoundWaveFFTSize_MAX = 5, +}; + +// Enum Engine.ESoundAssetCompressionType +// NumValues: 0x0008 +enum class ESoundAssetCompressionType : uint8 +{ + BinkAudio = 0, + ADPCM = 1, + PCM = 2, + Opus = 3, + PlatformSpecific = 4, + ProjectDefined = 5, + RADAudio = 6, + ESoundAssetCompressionType_MAX = 7, +}; + +// Enum Engine.ESoundWaveLoadingBehavior +// NumValues: 0x0007 +enum class ESoundWaveLoadingBehavior : uint8 +{ + Inherited = 0, + RetainOnLoad = 1, + PrimeOnLoad = 2, + LoadOnDemand = 3, + ForceInline = 4, + Uninitialized = 255, + ESoundWaveLoadingBehavior_MAX = 256, +}; + +// Enum Engine.EStereoLayerType +// NumValues: 0x0004 +enum class EStereoLayerType : uint8 +{ + SLT_WorldLocked = 0, + SLT_TrackerLocked = 1, + SLT_FaceLocked = 2, + SLT_MAX = 3, +}; + +// Enum Engine.EStereoLayerShape +// NumValues: 0x0005 +enum class EStereoLayerShape : uint8 +{ + SLSH_QuadLayer = 0, + SLSH_CylinderLayer = 1, + SLSH_CubemapLayer = 2, + SLSH_EquirectLayer = 3, + SLSH_MAX = 4, +}; + +// Enum Engine.EChunkSeekTableMode +// NumValues: 0x0003 +enum class EChunkSeekTableMode : uint8 +{ + ConstantSamplesPerEntry = 0, + VariableSamplesPerEntry = 1, + EChunkSeekTableMode_MAX = 2, +}; + +// Enum Engine.ESubUVBoundingVertexCount +// NumValues: 0x0003 +enum class ESubUVBoundingVertexCount : uint8 +{ + BVC_FourVertices = 0, + BVC_EightVertices = 1, + BVC_MAX = 2, +}; + +// Enum Engine.EOpacitySourceMode +// NumValues: 0x0006 +enum class EOpacitySourceMode : uint8 +{ + OSM_Alpha = 0, + OSM_ColorBrightness = 1, + OSM_RedChannel = 2, + OSM_GreenChannel = 3, + OSM_BlueChannel = 4, + OSM_MAX = 5, +}; + +// Enum Engine.EHorizTextAligment +// NumValues: 0x0004 +enum class EHorizTextAligment : uint8 +{ + EHTA_Left = 0, + EHTA_Center = 1, + EHTA_Right = 2, + EHTA_MAX = 3, +}; + +// Enum Engine.EVerticalTextAligment +// NumValues: 0x0005 +enum class EVerticalTextAligment : uint8 +{ + EVRTA_TextTop = 0, + EVRTA_TextCenter = 1, + EVRTA_TextBottom = 2, + EVRTA_QuadTop = 3, + EVRTA_MAX = 4, +}; + +// Enum Engine.TextureGroup +// NumValues: 0x0043 +enum class ETextureGroup : uint8 +{ + TEXTUREGROUP_World = 0, + TEXTUREGROUP_WorldNormalMap = 1, + TEXTUREGROUP_WorldSpecular = 2, + TEXTUREGROUP_Character = 3, + TEXTUREGROUP_CharacterNormalMap = 4, + TEXTUREGROUP_CharacterSpecular = 5, + TEXTUREGROUP_Weapon = 6, + TEXTUREGROUP_WeaponNormalMap = 7, + TEXTUREGROUP_WeaponSpecular = 8, + TEXTUREGROUP_Vehicle = 9, + TEXTUREGROUP_VehicleNormalMap = 10, + TEXTUREGROUP_VehicleSpecular = 11, + TEXTUREGROUP_Cinematic = 12, + TEXTUREGROUP_Effects = 13, + TEXTUREGROUP_EffectsNotFiltered = 14, + TEXTUREGROUP_Skybox = 15, + TEXTUREGROUP_UI = 16, + TEXTUREGROUP_Lightmap = 17, + TEXTUREGROUP_RenderTarget = 18, + TEXTUREGROUP_MobileFlattened = 19, + TEXTUREGROUP_ProcBuilding_Face = 20, + TEXTUREGROUP_ProcBuilding_LightMap = 21, + TEXTUREGROUP_Shadowmap = 22, + TEXTUREGROUP_ColorLookupTable = 23, + TEXTUREGROUP_Terrain_Heightmap = 24, + TEXTUREGROUP_Terrain_Weightmap = 25, + TEXTUREGROUP_Bokeh = 26, + TEXTUREGROUP_IESLightProfile = 27, + TEXTUREGROUP_Pixels2D = 28, + TEXTUREGROUP_HierarchicalLOD = 29, + TEXTUREGROUP_Impostor = 30, + TEXTUREGROUP_ImpostorNormalDepth = 31, + TEXTUREGROUP_8BitData = 32, + TEXTUREGROUP_16BitData = 33, + TEXTUREGROUP_Project01 = 34, + TEXTUREGROUP_Project02 = 35, + TEXTUREGROUP_Project03 = 36, + TEXTUREGROUP_Project04 = 37, + TEXTUREGROUP_Project05 = 38, + TEXTUREGROUP_Project06 = 39, + TEXTUREGROUP_Project07 = 40, + TEXTUREGROUP_Project08 = 41, + TEXTUREGROUP_Project09 = 42, + TEXTUREGROUP_Project10 = 43, + TEXTUREGROUP_Project11 = 44, + TEXTUREGROUP_Project12 = 45, + TEXTUREGROUP_Project13 = 46, + TEXTUREGROUP_Project14 = 47, + TEXTUREGROUP_Project15 = 48, + TEXTUREGROUP_Project16 = 49, + TEXTUREGROUP_Project17 = 50, + TEXTUREGROUP_Project18 = 51, + TEXTUREGROUP_Project19 = 52, + TEXTUREGROUP_Project20 = 53, + TEXTUREGROUP_Project21 = 54, + TEXTUREGROUP_Project22 = 55, + TEXTUREGROUP_Project23 = 56, + TEXTUREGROUP_Project24 = 57, + TEXTUREGROUP_Project25 = 58, + TEXTUREGROUP_Project26 = 59, + TEXTUREGROUP_Project27 = 60, + TEXTUREGROUP_Project28 = 61, + TEXTUREGROUP_Project29 = 62, + TEXTUREGROUP_Project30 = 63, + TEXTUREGROUP_Project31 = 64, + TEXTUREGROUP_Project32 = 65, + TEXTUREGROUP_MAX = 66, +}; + +// Enum Engine.TextureMipGenSettings +// NumValues: 0x0017 +enum class ETextureMipGenSettings : uint8 +{ + TMGS_FromTextureGroup = 0, + TMGS_SimpleAverage = 1, + TMGS_Sharpen0 = 2, + TMGS_Sharpen1 = 3, + TMGS_Sharpen2 = 4, + TMGS_Sharpen3 = 5, + TMGS_Sharpen4 = 6, + TMGS_Sharpen5 = 7, + TMGS_Sharpen6 = 8, + TMGS_Sharpen7 = 9, + TMGS_Sharpen8 = 10, + TMGS_Sharpen9 = 11, + TMGS_Sharpen10 = 12, + TMGS_NoMipmaps = 13, + TMGS_LeaveExistingMips = 14, + TMGS_Blur1 = 15, + TMGS_Blur2 = 16, + TMGS_Blur3 = 17, + TMGS_Blur4 = 18, + TMGS_Blur5 = 19, + TMGS_Unfiltered = 20, + TMGS_Angular = 21, + TMGS_MAX = 22, +}; + +// Enum Engine.ETexturePowerOfTwoSetting +// NumValues: 0x0007 +enum class ETexturePowerOfTwoSetting : uint8 +{ + None = 0, + PadToPowerOfTwo = 1, + PadToSquarePowerOfTwo = 2, + StretchToPowerOfTwo = 3, + StretchToSquarePowerOfTwo = 4, + ResizeToSpecificResolution = 5, + ETexturePowerOfTwoSetting_MAX = 6, +}; + +// Enum Engine.ETextureSamplerFilter +// NumValues: 0x0006 +enum class ETextureSamplerFilter : uint8 +{ + Point = 0, + Bilinear = 1, + Trilinear = 2, + AnisotropicPoint = 3, + AnisotropicLinear = 4, + ETextureSamplerFilter_MAX = 5, +}; + +// Enum Engine.ETextureMipLoadOptions +// NumValues: 0x0004 +enum class ETextureMipLoadOptions : uint8 +{ + Default = 0, + AllMips = 1, + OnlyFirstMip = 2, + ETextureMipLoadOptions_MAX = 3, +}; + +// Enum Engine.ETextureAvailability +// NumValues: 0x0003 +enum class ETextureAvailability : uint8 +{ + GPU = 0, + CPU = 1, + ETextureAvailability_MAX = 2, +}; + +// Enum Engine.ETextureDownscaleOptions +// NumValues: 0x000F +enum class ETextureDownscaleOptions : uint8 +{ + Default = 0, + Unfiltered = 1, + SimpleAverage = 2, + Sharpen0 = 3, + Sharpen1 = 4, + Sharpen2 = 5, + Sharpen3 = 6, + Sharpen4 = 7, + Sharpen5 = 8, + Sharpen6 = 9, + Sharpen7 = 10, + Sharpen8 = 11, + Sharpen9 = 12, + Sharpen10 = 13, + ETextureDownscaleOptions_MAX = 14, +}; + +// Enum Engine.ETextureLossyCompressionAmount +// NumValues: 0x0008 +enum class ETextureLossyCompressionAmount : uint8 +{ + TLCA_Default = 0, + TLCA_None = 1, + TLCA_Lowest = 2, + TLCA_Low = 3, + TLCA_Medium = 4, + TLCA_High = 5, + TLCA_Highest = 6, + TLCA_MAX = 7, +}; + +// Enum Engine.ETextureEncodeSpeed +// NumValues: 0x0004 +enum class ETextureEncodeSpeed : uint8 +{ + Final = 0, + FinalIfAvailable = 1, + Fast = 2, + ETextureEncodeSpeed_MAX = 3, +}; + +// Enum Engine.ETextureClass +// NumValues: 0x000B +enum class ETextureClass : uint8 +{ + Invalid = 0, + TwoD = 1, + Cube = 2, + Array = 3, + CubeArray = 4, + Volume = 5, + TwoDDynamic = 6, + RenderTarget = 7, + Other2DNoSource = 8, + OtherUnknown = 9, + ETextureClass_MAX = 10, +}; + +// Enum Engine.ECompositeTextureMode +// NumValues: 0x0006 +enum class ECompositeTextureMode : uint8 +{ + CTM_Disabled = 0, + CTM_NormalRoughnessToRed = 1, + CTM_NormalRoughnessToGreen = 2, + CTM_NormalRoughnessToBlue = 3, + CTM_NormalRoughnessToAlpha = 4, + CTM_MAX = 5, +}; + +// Enum Engine.ETextureSourceCompressionFormat +// NumValues: 0x0006 +enum class ETextureSourceCompressionFormat : uint8 +{ + TSCF_None = 0, + TSCF_PNG = 1, + TSCF_JPEG = 2, + TSCF_UEJPEG = 3, + TSCF_UEDELTA = 4, + TSCF_MAX = 5, +}; + +// Enum Engine.ETextureSourceFormat +// NumValues: 0x000D +enum class ETextureSourceFormat : uint8 +{ + TSF_Invalid = 0, + TSF_G8 = 1, + TSF_BGRA8 = 2, + TSF_BGRE8 = 3, + TSF_RGBA16 = 4, + TSF_RGBA16F = 5, + TSF_RGBA8_DEPRECATED = 6, + TSF_RGBE8_DEPRECATED = 7, + TSF_G16 = 8, + TSF_RGBA32F = 9, + TSF_R16F = 10, + TSF_R32F = 11, + TSF_MAX = 12, +}; + +// Enum Engine.TextureCompressionSettings +// NumValues: 0x0012 +enum class ETextureCompressionSettings : uint8 +{ + TC_Default = 0, + TC_Normalmap = 1, + TC_Masks = 2, + TC_Grayscale = 3, + TC_Displacementmap = 4, + TC_VectorDisplacementmap = 5, + TC_HDR = 6, + TC_EditorIcon = 7, + TC_Alpha = 8, + TC_DistanceFieldFont = 9, + TC_HDR_Compressed = 10, + TC_BC7 = 11, + TC_HalfFloat = 12, + TC_LQ = 13, + TC_EncodedReflectionCapture = 14, + TC_SingleFloat = 15, + TC_HDR_F32 = 16, + TC_MAX = 17, +}; + +// Enum Engine.ETextureSourceEncoding +// NumValues: 0x0012 +enum class ETextureSourceEncoding : uint8 +{ + TSE_None = 0, + TSE_Linear = 1, + TSE_sRGB = 2, + TSE_ST2084 = 3, + TSE_Gamma22 = 4, + TSE_BT1886 = 5, + TSE_Gamma26 = 6, + TSE_Cineon = 7, + TSE_REDLog = 8, + TSE_REDLog3G10 = 9, + TSE_SLog1 = 10, + TSE_SLog2 = 11, + TSE_SLog3 = 12, + TSE_AlexaV3LogC = 13, + TSE_CanonLog = 14, + TSE_ProTune = 15, + TSE_VLog = 16, + TSE_MAX = 17, +}; + +// Enum Engine.ETextureColorSpace +// NumValues: 0x0010 +enum class ETextureColorSpace : uint8 +{ + TCS_None = 0, + TCS_sRGB = 1, + TCS_Rec2020 = 2, + TCS_ACESAP0 = 3, + TCS_ACESAP1 = 4, + TCS_P3DCI = 5, + TCS_P3D65 = 6, + TCS_REDWideGamut = 7, + TCS_SonySGamut3 = 8, + TCS_SonySGamut3Cine = 9, + TCS_AlexaWideGamut = 10, + TCS_CanonCinemaGamut = 11, + TCS_GoProProtuneNative = 12, + TCS_PanasonicVGamut = 13, + TCS_Custom = 99, + TCS_MAX = 100, +}; + +// Enum Engine.TextureCookPlatformTilingSettings +// NumValues: 0x0004 +enum class ETextureCookPlatformTilingSettings : uint8 +{ + TCPTS_FromTextureGroup = 0, + TCPTS_Tile = 1, + TCPTS_DoNotTile = 2, + TCPTS_MAX = 3, +}; + +// Enum Engine.ETextureChromaticAdaptationMethod +// NumValues: 0x0004 +enum class ETextureChromaticAdaptationMethod : uint8 +{ + TCAM_None = 0, + TCAM_Bradford = 1, + TCAM_CAT02 = 2, + TCAM_MAX = 3, +}; + +// Enum Engine.TextureFilter +// NumValues: 0x0005 +enum class ETextureFilter : uint8 +{ + TF_Nearest = 0, + TF_Bilinear = 1, + TF_Trilinear = 2, + TF_Default = 3, + TF_MAX = 4, +}; + +// Enum Engine.TextureAddress +// NumValues: 0x0004 +enum class ETextureAddress : uint8 +{ + TA_Wrap = 0, + TA_Clamp = 1, + TA_Mirror = 2, + TA_MAX = 3, +}; + +// Enum Engine.ETextureMipCount +// NumValues: 0x0004 +enum class ETextureMipCount : uint8 +{ + TMC_ResidentMips = 0, + TMC_AllMips = 1, + TMC_AllMipsBiased = 2, + TMC_MAX = 3, +}; + +// Enum Engine.ETextureCompressionQuality +// NumValues: 0x0007 +enum class ETextureCompressionQuality : uint8 +{ + TCQ_Default = 0, + TCQ_Lowest = 1, + TCQ_Low = 2, + TCQ_Medium = 3, + TCQ_High = 4, + TCQ_Highest = 5, + TCQ_MAX = 6, +}; + +// Enum Engine.ETimelineLengthMode +// NumValues: 0x0003 +enum class ETimelineLengthMode : uint8 +{ + TL_TimelineLength = 0, + TL_LastKeyFrame = 1, + TL_MAX = 2, +}; + +// Enum Engine.ETimelineDirection +// NumValues: 0x0003 +enum class ETimelineDirection : uint8 +{ + Forward = 0, + Backward = 1, + ETimelineDirection_MAX = 2, +}; + +// Enum Engine.ETwitterRequestMethod +// NumValues: 0x0004 +enum class ETwitterRequestMethod : uint8 +{ + TRM_Get = 0, + TRM_Post = 1, + TRM_Delete = 2, + TRM_MAX = 3, +}; + +// Enum Engine.ETwitterIntegrationDelegate +// NumValues: 0x0004 +enum class ETwitterIntegrationDelegate : uint8 +{ + TID_AuthorizeComplete = 0, + TID_TweetUIComplete = 1, + TID_RequestComplete = 2, + TID_MAX = 3, +}; + +// Enum Engine.EVectorFieldConstructionOp +// NumValues: 0x0003 +enum class EVectorFieldConstructionOp : uint8 +{ + VFCO_Extrude = 0, + VFCO_Revolve = 1, + VFCO_MAX = 2, +}; + +// Enum Engine.ESplitScreenType +// NumValues: 0x000C +enum class ESplitScreenType : uint8 +{ + None = 0, + TwoPlayer_Horizontal = 1, + TwoPlayer_Vertical = 2, + ThreePlayer_FavorTop = 3, + ThreePlayer_FavorBottom = 4, + ThreePlayer_Vertical = 5, + ThreePlayer_Horizontal = 6, + FourPlayer_Grid = 7, + FourPlayer_Vertical = 8, + FourPlayer_Horizontal = 9, + SplitTypeCount = 10, + ESplitScreenType_MAX = 11, +}; + +// Enum Engine.EWindSourceType +// NumValues: 0x0003 +enum class EWindSourceType : uint8 +{ + Directional = 0, + Point = 1, + EWindSourceType_MAX = 2, +}; + +// Enum Engine.EVisibilityAggressiveness +// NumValues: 0x0004 +enum class EVisibilityAggressiveness : uint8 +{ + VIS_LeastAggressive = 0, + VIS_ModeratelyAggressive = 1, + VIS_MostAggressive = 2, + VIS_Max = 3, +}; + +// Enum Engine.EVolumeLightingMethod +// NumValues: 0x0003 +enum class EVolumeLightingMethod : uint8 +{ + VLM_VolumetricLightmap = 0, + VLM_SparseVolumeLightingSamples = 1, + VLM_MAX = 2, +}; + +// Enum Engine.EQuartzTimeSignatureQuantization +// NumValues: 0x0007 +enum class EQuartzTimeSignatureQuantization : uint8 +{ + HalfNote = 0, + QuarterNote = 1, + EighthNote = 2, + SixteenthNote = 3, + ThirtySecondNote = 4, + Count = 5, + EQuartzTimeSignatureQuantization_MAX = 6, +}; + +// Enum Engine.EQuartzDelegateType +// NumValues: 0x0004 +enum class EQuartzDelegateType : uint8 +{ + MetronomeTick = 0, + CommandEvent = 1, + Count = 2, + EQuartzDelegateType_MAX = 3, +}; + +// Enum Engine.EQuarztQuantizationReference +// NumValues: 0x0005 +enum class EQuarztQuantizationReference : uint8 +{ + BarRelative = 0, + TransportRelative = 1, + CurrentTimeRelative = 2, + Count = 3, + EQuarztQuantizationReference_MAX = 4, +}; + +// Enum Engine.EQuartzCommandType +// NumValues: 0x0009 +enum class EQuartzCommandType : uint8 +{ + PlaySound = 0, + QueueSoundToPlay = 1, + RetriggerSound = 2, + TickRateChange = 3, + TransportReset = 4, + StartOtherClock = 5, + Notify = 6, + Custom = 7, + EQuartzCommandType_MAX = 8, +}; + +// Enum Engine.EActorUpdateOverlapsMethod +// NumValues: 0x0005 +enum class EActorUpdateOverlapsMethod : uint8 +{ + UseConfigDefault = 0, + AlwaysUpdate = 1, + OnlyUpdateMovable = 2, + NeverUpdate = 3, + EActorUpdateOverlapsMethod_MAX = 4, +}; + +// Enum Engine.ESpawnActorScaleMethod +// NumValues: 0x0004 +enum class ESpawnActorScaleMethod : uint8 +{ + OverrideRootScale = 0, + MultiplyWithRoot = 1, + SelectDefaultAtRuntime = 2, + ESpawnActorScaleMethod_MAX = 3, +}; + +// Enum Engine.ELevelInstanceType +// NumValues: 0x0005 +enum class ELevelInstanceType : uint8 +{ + None = 0, + LevelInstance = 1, + LevelInstanceEdit = 2, + LevelInstancePropertyOverride = 3, + ELevelInstanceType_MAX = 4, +}; + +// Enum Engine.ELevelInstanceFlags +// NumValues: 0x0005 +enum class ELevelInstanceFlags : uint8 +{ + None = 0, + IsInEditHierarchy = 1, + HasPropertyOverrides = 2, + HasEditablePropertyOverrides = 4, + ELevelInstanceFlags_MAX = 5, +}; + +// Enum Engine.FNavigationSystemRunMode +// NumValues: 0x0008 +enum class EFNavigationSystemRunMode : uint8 +{ + InvalidMode = 0, + GameMode = 1, + EditorMode = 2, + SimulationMode = 3, + PIEMode = 4, + InferFromWorldMode = 5, + EditorWorldPartitionBuildMode = 6, + FNavigationSystemRunMode_MAX = 7, +}; + +// Enum Engine.ENavigationOptionFlag +// NumValues: 0x0004 +enum class ENavigationOptionFlag : uint8 +{ + Default = 0, + Enable = 1, + Disable = 2, + MAX = 3, +}; + +// Enum Engine.ENavDataGatheringModeConfig +// NumValues: 0x0004 +enum class ENavDataGatheringModeConfig : uint8 +{ + Invalid = 0, + Instant = 1, + Lazy = 2, + ENavDataGatheringModeConfig_MAX = 3, +}; + +// Enum Engine.ENavigationSortPendingTilesMethod +// NumValues: 0x0004 +enum class ENavigationSortPendingTilesMethod : uint8 +{ + SortWithSeedLocations = 0, + SortByPriority = 1, + None = 2, + ENavigationSortPendingTilesMethod_MAX = 3, +}; + +// Enum Engine.ENavPathEvent +// NumValues: 0x0009 +enum class ENavPathEvent : uint8 +{ + Cleared = 0, + NewPath = 1, + UpdatedDueToGoalMoved = 2, + UpdatedDueToNavigationChanged = 3, + Invalidated = 4, + RePathFailed = 5, + MetaPathUpdate = 6, + Custom = 7, + ENavPathEvent_MAX = 8, +}; + +// Enum Engine.ENavigationQueryResult +// NumValues: 0x0005 +enum class ENavigationQueryResult : uint8 +{ + Invalid = 0, + Error = 1, + Fail = 2, + Success = 3, + ENavigationQueryResult_MAX = 4, +}; + +// Enum Engine.EAlphaBlendOption +// NumValues: 0x0010 +enum class EAlphaBlendOption : uint8 +{ + Linear = 0, + Cubic = 1, + HermiteCubic = 2, + Sinusoidal = 3, + QuadraticInOut = 4, + CubicInOut = 5, + QuarticInOut = 6, + QuinticInOut = 7, + CircularIn = 8, + CircularOut = 9, + CircularInOut = 10, + ExpIn = 11, + ExpOut = 12, + ExpInOut = 13, + Custom = 14, + EAlphaBlendOption_MAX = 15, +}; + +// Enum Engine.EAnimGroupRole +// NumValues: 0x0007 +enum class EAnimGroupRole : uint8 +{ + CanBeLeader = 0, + AlwaysFollower = 1, + AlwaysLeader = 2, + TransitionLeader = 3, + TransitionFollower = 4, + ExclusiveAlwaysLeader = 5, + EAnimGroupRole_MAX = 6, +}; + +// Enum Engine.EAnimSyncGroupScope +// NumValues: 0x0003 +enum class EAnimSyncGroupScope : uint8 +{ + Local = 0, + Component = 1, + EAnimSyncGroupScope_MAX = 2, +}; + +// Enum Engine.EAnimSyncMethod +// NumValues: 0x0004 +enum class EAnimSyncMethod : uint8 +{ + DoNotSync = 0, + SyncGroup = 1, + Graph = 2, + EAnimSyncMethod_MAX = 3, +}; + +// Enum Engine.EAnimExecutionContextConversionResult +// NumValues: 0x0003 +enum class EAnimExecutionContextConversionResult : uint8 +{ + Succeeded = 1, + Failed = 0, + EAnimExecutionContextConversionResult_MAX = 2, +}; + +// Enum Engine.EMontagePlayReturnType +// NumValues: 0x0003 +enum class EMontagePlayReturnType : uint8 +{ + MontageLength = 0, + Duration = 1, + EMontagePlayReturnType_MAX = 2, +}; + +// Enum Engine.EDrawDebugItemType +// NumValues: 0x000B +enum class EDrawDebugItemType : uint8 +{ + DirectionalArrow = 0, + Sphere = 1, + Line = 2, + OnScreenMessage = 3, + CoordinateSystem = 4, + Point = 5, + Circle = 6, + Cone = 7, + InWorldMessage = 8, + Capsule = 9, + EDrawDebugItemType_MAX = 10, +}; + +// Enum Engine.EAnimLinkMethod +// NumValues: 0x0004 +enum class EAnimLinkMethod : uint8 +{ + Absolute = 0, + Relative = 1, + Proportional = 2, + EAnimLinkMethod_MAX = 3, +}; + +// Enum Engine.EAnimNotifyEventType +// NumValues: 0x0003 +enum class EAnimNotifyEventType : uint8 +{ + Begin = 0, + End = 1, + EAnimNotifyEventType_MAX = 2, +}; + +// Enum Engine.EMontageBlendMode +// NumValues: 0x0003 +enum class EMontageBlendMode : uint8 +{ + Standard = 0, + Inertialization = 1, + EMontageBlendMode_MAX = 2, +}; + +// Enum Engine.EMontageSubStepResult +// NumValues: 0x0005 +enum class EMontageSubStepResult : uint8 +{ + Moved = 0, + NotMoved = 1, + InvalidSection = 2, + InvalidMontage = 3, + EMontageSubStepResult_MAX = 4, +}; + +// Enum Engine.EPinHidingMode +// NumValues: 0x0005 +enum class EPinHidingMode : uint8 +{ + NeverAsPin = 0, + PinHiddenByDefault = 1, + PinShownByDefault = 2, + AlwaysAsPin = 3, + EPinHidingMode_MAX = 4, +}; + +// Enum Engine.EAnimNodeDataFlags +// NumValues: 0x0006 +enum class EAnimNodeDataFlags : uint8 +{ + None = 0, + HasInitialUpdateFunction = 1, + HasBecomeRelevantFunction = 2, + HasUpdateFunction = 4, + AllFunctions = 7, + EAnimNodeDataFlags_MAX = 8, +}; + +// Enum Engine.EAnimNodeReferenceConversionResult +// NumValues: 0x0003 +enum class EAnimNodeReferenceConversionResult : uint8 +{ + Succeeded = 1, + Failed = 0, + EAnimNodeReferenceConversionResult_MAX = 2, +}; + +// Enum Engine.EInertializationState +// NumValues: 0x0004 +enum class EInertializationState : uint8 +{ + Inactive = 0, + Pending = 1, + Active = 2, + EInertializationState_MAX = 3, +}; + +// Enum Engine.EInertializationBoneState +// NumValues: 0x0004 +enum class EInertializationBoneState : uint8 +{ + Invalid = 0, + Valid = 1, + Excluded = 2, + EInertializationBoneState_MAX = 3, +}; + +// Enum Engine.EInertializationSpace +// NumValues: 0x0004 +enum class EInertializationSpace : uint8 +{ + Default = 0, + WorldSpace = 1, + WorldRotation = 2, + EInertializationSpace_MAX = 3, +}; + +// Enum Engine.EEvaluatorDataSource +// NumValues: 0x0003 +enum class EEvaluatorDataSource : uint8 +{ + EDS_SourcePose = 0, + EDS_DestinationPose = 1, + EDS_MAX = 2, +}; + +// Enum Engine.EEvaluatorMode +// NumValues: 0x0004 +enum class EEvaluatorMode : uint8 +{ + EM_Standard = 0, + EM_Freeze = 1, + EM_DelayedFreeze = 2, + EM_MAX = 3, +}; + +// Enum Engine.EStripAnimDataOnDedicatedServerSettings +// NumValues: 0x0004 +enum class EStripAnimDataOnDedicatedServerSettings : uint8 +{ + UseProjectSetting = 0, + StripAnimDataOnDedicatedServer = 1, + DoNotStripAnimDataOnDedicatedServer = 2, + EStripAnimDataOnDedicatedServerSettings_MAX = 3, +}; + +// Enum Engine.ETransitionRequestQueueMode +// NumValues: 0x0003 +enum class ETransitionRequestQueueMode : uint8 +{ + Shared = 0, + Unique = 1, + ETransitionRequestQueueMode_MAX = 2, +}; + +// Enum Engine.ETransitionRequestOverwriteMode +// NumValues: 0x0004 +enum class ETransitionRequestOverwriteMode : uint8 +{ + Append = 0, + Ignore = 1, + Overwrite = 2, + ETransitionRequestOverwriteMode_MAX = 3, +}; + +// Enum Engine.ETransitionBlendMode +// NumValues: 0x0003 +enum class ETransitionBlendMode : uint8 +{ + TBM_Linear = 0, + TBM_Cubic = 1, + TBM_MAX = 2, +}; + +// Enum Engine.ETransitionLogicType +// NumValues: 0x0004 +enum class ETransitionLogicType : uint8 +{ + TLT_StandardBlend = 0, + TLT_Inertialization = 1, + TLT_Custom = 2, + TLT_MAX = 3, +}; + +// Enum Engine.EAnimPropertyAccessCallSite +// NumValues: 0x0006 +enum class EAnimPropertyAccessCallSite : uint8 +{ + WorkerThread_Unbatched = 0, + WorkerThread_Batched_PreEventGraph = 1, + WorkerThread_Batched_PostEventGraph = 2, + GameThread_Batched_PreEventGraph = 3, + GameThread_Batched_PostEventGraph = 4, + EAnimPropertyAccessCallSite_MAX = 5, +}; + +// Enum Engine.EBlendProfileMode +// NumValues: 0x0004 +enum class EBlendProfileMode : uint8 +{ + TimeFactor = 0, + WeightFactor = 1, + BlendMask = 2, + EBlendProfileMode_MAX = 3, +}; + +// Enum Engine.ETransformCurveChannel +// NumValues: 0x0005 +enum class ETransformCurveChannel : uint8 +{ + Position = 0, + Rotation = 1, + Scale = 2, + Invalid = 3, + ETransformCurveChannel_MAX = 4, +}; + +// Enum Engine.EVectorCurveChannel +// NumValues: 0x0005 +enum class EVectorCurveChannel : uint8 +{ + X = 0, + Y = 1, + Z = 2, + Invalid = 3, + EVectorCurveChannel_MAX = 4, +}; + +// Enum Engine.EPostCopyOperation +// NumValues: 0x0003 +enum class EPostCopyOperation : uint8 +{ + None = 0, + LogicalNegateBool = 1, + EPostCopyOperation_MAX = 2, +}; + +// Enum Engine.EAnimAlphaInputType +// NumValues: 0x0004 +enum class EAnimAlphaInputType : uint8 +{ + Float = 0, + Bool = 1, + Curve = 2, + EAnimAlphaInputType_MAX = 3, +}; + +// Enum Engine.EMirrorRowType +// NumValues: 0x0006 +enum class EMirrorRowType : uint8 +{ + Bone = 0, + AnimationNotify = 1, + Curve = 2, + SyncMarker = 3, + Custom = 4, + EMirrorRowType_MAX = 5, +}; + +// Enum Engine.EMirrorFindReplaceMethod +// NumValues: 0x0004 +enum class EMirrorFindReplaceMethod : uint8 +{ + Prefix = 0, + Suffix = 1, + RegularExpression = 2, + EMirrorFindReplaceMethod_MAX = 3, +}; + +// Enum Engine.ESkeletalMeshVertexAttributeDataType +// NumValues: 0x0004 +enum class ESkeletalMeshVertexAttributeDataType : uint32 +{ + Float = 0, + HalfFloat = 1, + NUInt8 = 2, + ESkeletalMeshVertexAttributeDataType_MAX = 3, +}; + +// Enum Engine.EBoneTranslationRetargetingMode +// NumValues: 0x0006 +enum class EBoneTranslationRetargetingMode : uint8 +{ + Animation = 0, + Skeleton = 1, + AnimationScaled = 2, + AnimationRelative = 3, + OrientAndScale = 4, + EBoneTranslationRetargetingMode_MAX = 5, +}; + +// Enum Engine.ETimeStretchCurveMapping +// NumValues: 0x0004 +enum class ETimeStretchCurveMapping : uint8 +{ + T_Original = 0, + T_TargetMin = 1, + T_TargetMax = 2, + MAX = 3, +}; + +// Enum Engine.EPreviewAnimationBlueprintApplicationMethod +// NumValues: 0x0003 +enum class EPreviewAnimationBlueprintApplicationMethod : uint8 +{ + LinkedLayers = 0, + LinkedAnimGraph = 1, + EPreviewAnimationBlueprintApplicationMethod_MAX = 2, +}; + +// Enum Engine.EPrimaryAssetCookRule +// NumValues: 0x0009 +enum class EPrimaryAssetCookRule : uint8 +{ + Unknown = 0, + NeverCook = 1, + ProductionNeverCook = 2, + DevelopmentCook = 2, + DevelopmentAlwaysProductionNeverCook = 3, + DevelopmentAlwaysCook = 3, + DevelopmentAlwaysProductionUnknownCook = 4, + AlwaysCook = 5, + EPrimaryAssetCookRule_MAX = 6, +}; + +// Enum Engine.EAttenuationDistanceModel +// NumValues: 0x0007 +enum class EAttenuationDistanceModel : uint8 +{ + Linear = 0, + Logarithmic = 1, + Inverse = 2, + LogReverse = 3, + NaturalSound = 4, + Custom = 5, + EAttenuationDistanceModel_MAX = 6, +}; + +// Enum Engine.EAttenuationShape +// NumValues: 0x0005 +enum class EAttenuationShape : uint8 +{ + Sphere = 0, + Capsule = 1, + Box = 2, + Cone = 3, + EAttenuationShape_MAX = 4, +}; + +// Enum Engine.ENaturalSoundFalloffMode +// NumValues: 0x0004 +enum class ENaturalSoundFalloffMode : uint8 +{ + Continues = 0, + Silent = 1, + Hold = 2, + ENaturalSoundFalloffMode_MAX = 3, +}; + +// Enum Engine.EAudioBusChannels +// NumValues: 0x0007 +enum class EAudioBusChannels : uint8 +{ + Mono = 0, + Stereo = 1, + Quad = 3, + FivePointOne = 5, + SevenPointOne = 7, + MaxChannelCount = 8, + EAudioBusChannels_MAX = 9, +}; + +// Enum Engine.EVoiceSampleRate +// NumValues: 0x0003 +enum class EVoiceSampleRate : uint32 +{ + Low16000Hz = 16000, + Normal24000Hz = 24000, + EVoiceSampleRate_MAX = 24001, +}; + +// Enum Engine.EPanningMethod +// NumValues: 0x0003 +enum class EPanningMethod : uint8 +{ + Linear = 0, + EqualPower = 1, + EPanningMethod_MAX = 2, +}; + +// Enum Engine.EMonoChannelUpmixMethod +// NumValues: 0x0004 +enum class EMonoChannelUpmixMethod : uint8 +{ + Linear = 0, + EqualPower = 1, + FullVolume = 2, + EMonoChannelUpmixMethod_MAX = 3, +}; + +// Enum Engine.EDefaultAudioCompressionType +// NumValues: 0x0007 +enum class EDefaultAudioCompressionType : uint8 +{ + BinkAudio = 0, + ADPCM = 1, + PCM = 2, + Opus = 3, + PlatformSpecific = 4, + RADAudio = 5, + EDefaultAudioCompressionType_MAX = 6, +}; + +// Enum Engine.EAudioVolumeLocationState +// NumValues: 0x0003 +enum class EAudioVolumeLocationState : uint8 +{ + InsideTheVolume = 0, + OutsideTheVolume = 1, + EAudioVolumeLocationState_MAX = 2, +}; + +// Enum Engine.EStructUtilsResult +// NumValues: 0x0003 +enum class EStructUtilsResult : uint8 +{ + Valid = 0, + NotValid = 1, + EStructUtilsResult_MAX = 2, +}; + +// Enum Engine.EInterfaceValidResult +// NumValues: 0x0003 +enum class EInterfaceValidResult : uint8 +{ + Valid = 0, + Invalid = 1, + EInterfaceValidResult_MAX = 2, +}; + +// Enum Engine.ECameraShakePatternUpdateResultFlags +// NumValues: 0x0005 +enum class ECameraShakePatternUpdateResultFlags : uint8 +{ + ApplyAsAbsolute = 1, + SkipAutoScale = 2, + SkipAutoPlaySpace = 4, + Default = 0, + ECameraShakePatternUpdateResultFlags_MAX = 5, +}; + +// Enum Engine.ECameraShakeDurationType +// NumValues: 0x0004 +enum class ECameraShakeDurationType : uint8 +{ + Fixed = 0, + Infinite = 1, + Custom = 2, + ECameraShakeDurationType_MAX = 3, +}; + +// Enum Engine.ECameraShakeAttenuation +// NumValues: 0x0003 +enum class ECameraShakeAttenuation : uint8 +{ + Linear = 0, + Quadratic = 1, + ECameraShakeAttenuation_MAX = 2, +}; + +// Enum Engine.ECameraAlphaBlendMode +// NumValues: 0x0003 +enum class ECameraAlphaBlendMode : uint8 +{ + CABM_Linear = 0, + CABM_Cubic = 1, + CABM_MAX = 2, +}; + +// Enum Engine.EAudioFaderCurve +// NumValues: 0x0006 +enum class EAudioFaderCurve : uint8 +{ + Linear = 0, + Logarithmic = 1, + SCurve = 2, + Sin = 3, + Count = 4, + EAudioFaderCurve_MAX = 5, +}; + +// Enum Engine.EControllerAnalogStick +// NumValues: 0x0003 +enum class EControllerAnalogStick : uint8 +{ + CAS_LeftStick = 0, + CAS_RightStick = 1, + CAS_MAX = 2, +}; + +// Enum Engine.ESyncOption +// NumValues: 0x0004 +enum class ESyncOption : uint8 +{ + Drive = 0, + Passive = 1, + Disabled = 2, + ESyncOption_MAX = 3, +}; + +// Enum Engine.EPhysicsStateAction +// NumValues: 0x000C +enum class EPhysicsStateAction : uint8 +{ + AddForce = 0, + AddTorque = 1, + AddForceAtPosition = 2, + AddLinearVelocity = 3, + AddAngularVelocity = 4, + AddVelocityAtPosition = 5, + AddLinearImpulse = 6, + AddAngularImpulse = 7, + AddImpulseAtPosition = 8, + AddAcceleration = 9, + NumActions = 10, + EPhysicsStateAction_MAX = 11, +}; + +// Enum Engine.EReflectionSourceType +// NumValues: 0x0003 +enum class EReflectionSourceType : uint8 +{ + CapturedScene = 0, + SpecifiedCubemap = 1, + EReflectionSourceType_MAX = 2, +}; + +// Enum Engine.ERuntimeVirtualTextureMaterialQuality +// NumValues: 0x0005 +enum class ERuntimeVirtualTextureMaterialQuality : uint8 +{ + Low = 0, + Medium = 1, + High = 2, + Epic = 3, + ERuntimeVirtualTextureMaterialQuality_MAX = 4, +}; + +// Enum Engine.ESceneCapturePrimitiveRenderMode +// NumValues: 0x0004 +enum class ESceneCapturePrimitiveRenderMode : uint8 +{ + PRM_LegacySceneCapture = 0, + PRM_RenderScenePrimitives = 1, + PRM_UseShowOnlyList = 2, + PRM_MAX = 3, +}; + +// Enum Engine.ECustomBoneAttributeLookup +// NumValues: 0x0004 +enum class ECustomBoneAttributeLookup : uint8 +{ + BoneOnly = 0, + ImmediateParent = 1, + ParentHierarchy = 2, + ECustomBoneAttributeLookup_MAX = 3, +}; + +// Enum Engine.EKinematicBonesUpdateToPhysics +// NumValues: 0x0003 +enum class EKinematicBonesUpdateToPhysics : uint8 +{ + SkipSimulatingBones = 0, + SkipAllBones = 1, + EKinematicBonesUpdateToPhysics_MAX = 2, +}; + +// Enum Engine.EAnimationMode +// NumValues: 0x0004 +enum class EAnimationMode : uint8 +{ + AnimationBlueprint = 0, + AnimationSingleNode = 1, + AnimationCustomMode = 2, + EAnimationMode_MAX = 3, +}; + +// Enum Engine.EPhysicsTransformUpdateMode +// NumValues: 0x0003 +enum class EPhysicsTransformUpdateMode : uint8 +{ + SimulationUpatesComponentTransform = 0, + ComponentTransformIsKinematic = 1, + EPhysicsTransformUpdateMode_MAX = 2, +}; + +// Enum Engine.ESkyAtmosphereTransformMode +// NumValues: 0x0004 +enum class ESkyAtmosphereTransformMode : uint8 +{ + PlanetTopAtAbsoluteWorldOrigin = 0, + PlanetTopAtComponentTransform = 1, + PlanetCenterAtComponentTransform = 2, + ESkyAtmosphereTransformMode_MAX = 3, +}; + +// Enum Engine.ESplinePointType +// NumValues: 0x0006 +enum class ESplinePointType : uint8 +{ + Linear = 0, + Curve = 1, + Constant = 2, + CurveClamped = 3, + CurveCustomTangent = 4, + ESplinePointType_MAX = 5, +}; + +// Enum Engine.ESplineCoordinateSpace +// NumValues: 0x0003 +enum class ESplineCoordinateSpace : uint8 +{ + Local = 0, + World = 1, + ESplineCoordinateSpace_MAX = 2, +}; + +// Enum Engine.ESplineMeshAxis +// NumValues: 0x0004 +enum class ESplineMeshAxis : uint8 +{ + X = 0, + Y = 1, + Z = 2, + ESplineMeshAxis_MAX = 3, +}; + +// Enum Engine.EVolumetricCloudTracingMaxDistanceMode +// NumValues: 0x0003 +enum class EVolumetricCloudTracingMaxDistanceMode : uint8 +{ + DistanceFromCloudLayerEntryPoint = 0, + DistanceFromPointOfView = 1, + EVolumetricCloudTracingMaxDistanceMode_MAX = 2, +}; + +// Enum Engine.ECurveTableMode +// NumValues: 0x0004 +enum class ECurveTableMode : uint8 +{ + Empty = 0, + SimpleCurves = 1, + RichCurves = 2, + ECurveTableMode_MAX = 3, +}; + +// Enum Engine.FDataDrivenCVarType +// NumValues: 0x0004 +enum class EFDataDrivenCVarType : uint8 +{ + CVarFloat = 0, + CVarInt = 1, + CVarBool = 2, + FDataDrivenCVarType_MAX = 3, +}; + +// Enum Engine.EEvaluateCurveTableResult +// NumValues: 0x0003 +enum class EEvaluateCurveTableResult : uint8 +{ + RowFound = 0, + RowNotFound = 1, + EEvaluateCurveTableResult_MAX = 2, +}; + +// Enum Engine.EReporterLineStyle +// NumValues: 0x0003 +enum class EReporterLineStyle : uint8 +{ + Line = 0, + Dash = 1, + EReporterLineStyle_MAX = 2, +}; + +// Enum Engine.EGraphAxisStyle +// NumValues: 0x0004 +enum class EGraphAxisStyle : uint8 +{ + Lines = 0, + Notches = 1, + Grid = 2, + EGraphAxisStyle_MAX = 3, +}; + +// Enum Engine.EGraphDataStyle +// NumValues: 0x0003 +enum class EGraphDataStyle : uint8 +{ + Lines = 0, + Filled = 1, + EGraphDataStyle_MAX = 2, +}; + +// Enum Engine.ELegendPosition +// NumValues: 0x0003 +enum class ELegendPosition : uint8 +{ + Outside = 0, + Inside = 1, + ELegendPosition_MAX = 2, +}; + +// Enum Engine.EGrammaticalGender +// NumValues: 0x0005 +enum class EGrammaticalGender : uint8 +{ + Neuter = 0, + Masculine = 1, + Feminine = 2, + Mixed = 3, + EGrammaticalGender_MAX = 4, +}; + +// Enum Engine.EGrammaticalNumber +// NumValues: 0x0003 +enum class EGrammaticalNumber : uint8 +{ + Singular = 0, + Plural = 1, + EGrammaticalNumber_MAX = 2, +}; + +// Enum Engine.ETypedElementWorldType +// NumValues: 0x0003 +enum class ETypedElementWorldType : uint8 +{ + Game = 0, + Editor = 1, + ETypedElementWorldType_MAX = 2, +}; + +// Enum Engine.ECustomTimeStepSynchronizationState +// NumValues: 0x0005 +enum class ECustomTimeStepSynchronizationState : uint8 +{ + Closed = 0, + Error = 1, + Synchronized = 2, + Synchronizing = 3, + ECustomTimeStepSynchronizationState_MAX = 4, +}; + +// Enum Engine.EVectorQuantization +// NumValues: 0x0004 +enum class EVectorQuantization : uint8 +{ + RoundWholeNumber = 0, + RoundOneDecimal = 1, + RoundTwoDecimals = 2, + EVectorQuantization_MAX = 3, +}; + +// Enum Engine.ERotatorQuantization +// NumValues: 0x0003 +enum class ERotatorQuantization : uint8 +{ + ByteComponents = 0, + ShortComponents = 1, + ERotatorQuantization_MAX = 2, +}; + +// Enum Engine.ETimecodeProviderSynchronizationState +// NumValues: 0x0005 +enum class ETimecodeProviderSynchronizationState : uint32 +{ + Closed = 0, + Error = 1, + Synchronized = 2, + Synchronizing = 3, + ETimecodeProviderSynchronizationState_MAX = 4, +}; + +// Enum Engine.EFontCacheType +// NumValues: 0x0003 +enum class EFontCacheType : uint8 +{ + Offline = 0, + Runtime = 1, + EFontCacheType_MAX = 2, +}; + +// Enum Engine.ERootMotionAccumulateMode +// NumValues: 0x0003 +enum class ERootMotionAccumulateMode : uint8 +{ + Override = 0, + Additive = 1, + ERootMotionAccumulateMode_MAX = 2, +}; + +// Enum Engine.ERootMotionSourceStatusFlags +// NumValues: 0x0004 +enum class ERootMotionSourceStatusFlags : uint8 +{ + Prepared = 1, + Finished = 2, + MarkedForRemoval = 4, + ERootMotionSourceStatusFlags_MAX = 5, +}; + +// Enum Engine.ERootMotionSourceSettingsFlags +// NumValues: 0x0004 +enum class ERootMotionSourceSettingsFlags : uint8 +{ + UseSensitiveLiftoffCheck = 1, + DisablePartialEndTick = 2, + IgnoreZAccumulate = 4, + ERootMotionSourceSettingsFlags_MAX = 5, +}; + +// Enum Engine.ERootMotionFinishVelocityMode +// NumValues: 0x0004 +enum class ERootMotionFinishVelocityMode : uint8 +{ + MaintainLastRootMotionVelocity = 0, + SetVelocity = 1, + ClampVelocity = 2, + ERootMotionFinishVelocityMode_MAX = 3, +}; + +// Enum Engine.EWindowMode +// NumValues: 0x0004 +enum class EWindowMode : uint8 +{ + Fullscreen = 0, + WindowedFullscreen = 1, + Windowed = 2, + EWindowMode_MAX = 3, +}; + +// Enum Engine.EArraySortOrder +// NumValues: 0x0003 +enum class EArraySortOrder : uint8 +{ + Ascending = 0, + Descending = 1, + EArraySortOrder_MAX = 2, +}; + +// Enum Engine.ESlateGesture +// NumValues: 0x0007 +enum class ESlateGesture : uint8 +{ + None = 0, + Scroll = 1, + Magnify = 2, + Swipe = 3, + Rotate = 4, + LongPress = 5, + ESlateGesture_MAX = 6, +}; + +// Enum Engine.EMIDCreationFlags +// NumValues: 0x0003 +enum class EMIDCreationFlags : uint8 +{ + None = 0, + Transient = 1, + EMIDCreationFlags_MAX = 2, +}; + +// Enum Engine.EEasingFunc +// NumValues: 0x000F +enum class EEasingFunc : uint8 +{ + Linear = 0, + Step = 1, + SinusoidalIn = 2, + SinusoidalOut = 3, + SinusoidalInOut = 4, + EaseIn = 5, + EaseOut = 6, + EaseInOut = 7, + ExpoIn = 8, + ExpoOut = 9, + ExpoInOut = 10, + CircularIn = 11, + CircularOut = 12, + CircularInOut = 13, + EEasingFunc_MAX = 14, +}; + +// Enum Engine.ELerpInterpolationMode +// NumValues: 0x0004 +enum class ELerpInterpolationMode : uint8 +{ + QuatInterp = 0, + EulerInterp = 1, + DualQuatInterp = 2, + ELerpInterpolationMode_MAX = 3, +}; + +// Enum Engine.EMatrixColumns +// NumValues: 0x0005 +enum class EMatrixColumns : uint8 +{ + First = 0, + Second = 1, + Third = 2, + Fourth = 3, + EMatrixColumns_MAX = 4, +}; + +// Enum Engine.EEditorPropertyValueState +// NumValues: 0x0005 +enum class EEditorPropertyValueState : uint8 +{ + Default = 0, + Overridden = 1, + NotFound = 2, + AccessDenied = 3, + EEditorPropertyValueState_MAX = 4, +}; + +// Enum Engine.EImportanceWeight +// NumValues: 0x0006 +enum class EImportanceWeight : uint8 +{ + Luminance = 0, + Red = 1, + Green = 2, + Blue = 3, + Alpha = 4, + EImportanceWeight_MAX = 5, +}; + +// Enum Engine.EDecalBlendMode +// NumValues: 0x0012 +enum class EDecalBlendMode : uint8 +{ + DBM_Translucent = 0, + DBM_Stain = 1, + DBM_Normal = 2, + DBM_Emissive = 3, + DBM_DBuffer_ColorNormalRoughness = 4, + DBM_DBuffer_Color = 5, + DBM_DBuffer_ColorNormal = 6, + DBM_DBuffer_ColorRoughness = 7, + DBM_DBuffer_Normal = 8, + DBM_DBuffer_NormalRoughness = 9, + DBM_DBuffer_Roughness = 10, + DBM_DBuffer_Emissive = 11, + DBM_DBuffer_AlphaComposite = 12, + DBM_DBuffer_EmissiveAlphaComposite = 13, + DBM_Volumetric_DistanceFunction = 14, + DBM_AlphaComposite = 15, + DBM_AmbientOcclusion = 16, + DBM_MAX = 17, +}; + +// Enum Engine.EMaterialDecalResponse +// NumValues: 0x0009 +enum class EMaterialDecalResponse : uint8 +{ + MDR_None = 0, + MDR_ColorNormalRoughness = 1, + MDR_Color = 2, + MDR_ColorNormal = 3, + MDR_ColorRoughness = 4, + MDR_Normal = 5, + MDR_NormalRoughness = 6, + MDR_Roughness = 7, + MDR_MAX = 8, +}; + +// Enum Engine.EMaterialTranslucencyPass +// NumValues: 0x0004 +enum class EMaterialTranslucencyPass : uint8 +{ + MTP_BeforeDOF = 0, + MTP_AfterDOF = 1, + MTP_AfterMotionBlur = 2, + MTP_MAX = 3, +}; + +// Enum Engine.EVertexPaintAxis +// NumValues: 0x0004 +enum class EVertexPaintAxis : uint8 +{ + X = 0, + Y = 1, + Z = 2, + EVertexPaintAxis_MAX = 3, +}; + +// Enum Engine.ENetworkMetricEnableMode +// NumValues: 0x0004 +enum class ENetworkMetricEnableMode : uint8 +{ + EnableForAllReplication = 0, + EnableForIrisOnly = 1, + EnableForNonIrisOnly = 2, + ENetworkMetricEnableMode_MAX = 3, +}; + +// Enum Engine.EReplayResult +// NumValues: 0x000D +enum class EReplayResult : uint8 +{ + Success = 0, + ReplayNotFound = 1, + Corrupt = 2, + UnsupportedCheckpoint = 3, + GameSpecific = 4, + InitConnect = 5, + LoadMap = 6, + Serialization = 7, + StreamerError = 8, + ConnectionClosed = 9, + MissingArchive = 10, + Unknown = 11, + EReplayResult_MAX = 12, +}; + +// Enum Engine.EPSCPoolMethod +// NumValues: 0x0006 +enum class EPSCPoolMethod : uint8 +{ + None = 0, + AutoRelease = 1, + ManualRelease = 2, + ManualRelease_OnComplete = 3, + FreeInPool = 4, + EPSCPoolMethod_MAX = 5, +}; + +// Enum Engine.EPerQualityLevels +// NumValues: 0x0007 +enum class EPerQualityLevels : uint8 +{ + Low = 0, + Medium = 1, + High = 2, + Epic = 3, + Cinematic = 4, + Num = 5, + EPerQualityLevels_MAX = 6, +}; + +// Enum Engine.EAngularDriveMode +// NumValues: 0x0003 +enum class EAngularDriveMode : uint8 +{ + SLERP = 0, + TwistAndSwing = 1, + EAngularDriveMode_MAX = 2, +}; + +// Enum Engine.EConstraintTransformComponentFlags +// NumValues: 0x000B +enum class EConstraintTransformComponentFlags : uint8 +{ + None = 0, + ChildPosition = 1, + ChildRotation = 2, + ParentPosition = 4, + ParentRotation = 8, + AllChild = 3, + AllParent = 12, + AllPosition = 5, + AllRotation = 10, + All = 15, + EConstraintTransformComponentFlags_MAX = 16, +}; + +// Enum Engine.EPhysicsAssetSolverType +// NumValues: 0x0003 +enum class EPhysicsAssetSolverType : uint8 +{ + RBAN = 0, + World = 1, + EPhysicsAssetSolverType_MAX = 2, +}; + +// Enum Engine.ESettingsDOF +// NumValues: 0x0005 +enum class ESettingsDOF : uint8 +{ + Full3D = 0, + YZPlane = 1, + XZPlane = 2, + XYPlane = 3, + ESettingsDOF_MAX = 4, +}; + +// Enum Engine.ESettingsLockedAxis +// NumValues: 0x0006 +enum class ESettingsLockedAxis : uint8 +{ + None = 0, + X = 1, + Y = 2, + Z = 3, + Invalid = 4, + ESettingsLockedAxis_MAX = 5, +}; + +// Enum Engine.EDynamicForceFeedbackAction +// NumValues: 0x0004 +enum class EDynamicForceFeedbackAction : uint8 +{ + Start = 0, + Update = 1, + Stop = 2, + EDynamicForceFeedbackAction_MAX = 3, +}; + +// Enum Engine.EVoiceBlockReasons +// NumValues: 0x0006 +enum class EVoiceBlockReasons : uint8 +{ + None = 0, + Muted = 1, + Gameplay = 2, + Blocked = 4, + BlockedBy = 8, + EVoiceBlockReasons_MAX = 9, +}; + +// Enum Engine.EPropertyAccessCopyBatch +// NumValues: 0x0006 +enum class EPropertyAccessCopyBatch : uint8 +{ + InternalUnbatched = 0, + ExternalUnbatched = 1, + InternalBatched = 2, + ExternalBatched = 3, + Count = 4, + EPropertyAccessCopyBatch_MAX = 5, +}; + +// Enum Engine.EPropertyAccessIndirectionType +// NumValues: 0x0006 +enum class EPropertyAccessIndirectionType : uint8 +{ + Offset = 0, + Object = 1, + Array = 2, + ScriptFunction = 3, + NativeFunction = 4, + EPropertyAccessIndirectionType_MAX = 5, +}; + +// Enum Engine.EPropertyAccessObjectType +// NumValues: 0x0005 +enum class EPropertyAccessObjectType : uint8 +{ + None = 0, + Object = 1, + WeakObject = 2, + SoftObject = 3, + EPropertyAccessObjectType_MAX = 4, +}; + +// Enum Engine.EPropertyAccessCopyType +// NumValues: 0x001B +enum class EPropertyAccessCopyType : uint8 +{ + None = 0, + Plain = 1, + Complex = 2, + Bool = 3, + Struct = 4, + Object = 5, + Name = 6, + Array = 7, + PromoteBoolToByte = 8, + PromoteBoolToInt32 = 9, + PromoteBoolToInt64 = 10, + PromoteBoolToFloat = 11, + PromoteBoolToDouble = 12, + PromoteByteToInt32 = 13, + PromoteByteToInt64 = 14, + PromoteByteToFloat = 15, + PromoteByteToDouble = 16, + PromoteInt32ToInt64 = 17, + PromoteInt32ToFloat = 18, + PromoteInt32ToDouble = 19, + PromoteFloatToDouble = 20, + DemoteDoubleToFloat = 21, + PromoteArrayFloatToDouble = 22, + DemoteArrayDoubleToFloat = 23, + PromoteMapValueFloatToDouble = 24, + DemoteMapValueDoubleToFloat = 25, + EPropertyAccessCopyType_MAX = 26, +}; + +// Enum Engine.EClearSceneOptions +// NumValues: 0x0004 +enum class EClearSceneOptions : uint8 +{ + NoClear = 0, + HardwareClear = 1, + QuadAtMaxZ = 2, + EClearSceneOptions_MAX = 3, +}; + +// Enum Engine.ECompositingSampleCount +// NumValues: 0x0005 +enum class ECompositingSampleCount : uint8 +{ + One = 1, + Two = 2, + Four = 4, + Eight = 8, + ECompositingSampleCount_MAX = 9, +}; + +// Enum Engine.ECustomDepthStencil +// NumValues: 0x0005 +enum class ECustomDepthStencil : uint8 +{ + Disabled = 0, + Enabled = 1, + EnabledOnDemand = 2, + EnabledWithStencil = 3, + ECustomDepthStencil_MAX = 4, +}; + +// Enum Engine.EEarlyZPass +// NumValues: 0x0005 +enum class EEarlyZPass : uint8 +{ + None = 0, + OpaqueOnly = 1, + OpaqueAndMasked = 2, + Auto = 3, + EEarlyZPass_MAX = 4, +}; + +// Enum Engine.EVelocityOutputPass +// NumValues: 0x0004 +enum class EVelocityOutputPass : uint8 +{ + DepthPass = 0, + BasePass = 1, + AfterBasePass = 2, + EVelocityOutputPass_MAX = 3, +}; + +// Enum Engine.EVertexDeformationOutputsVelocity +// NumValues: 0x0004 +enum class EVertexDeformationOutputsVelocity : uint8 +{ + Off = 0, + On = 1, + Auto = 2, + EVertexDeformationOutputsVelocity_MAX = 3, +}; + +// Enum Engine.EAlphaChannelMode +// NumValues: 0x0005 +enum class EAlphaChannelMode : uint8 +{ + Disabled = 0, + Enabled = 1, + LinearColorSpaceOnly = 1, + AllowThroughTonemapper = 1, + EAlphaChannelMode_MAX = 2, +}; + +// Enum Engine.EAutoExposureMethodUI +// NumValues: 0x0004 +enum class EAutoExposureMethodUI : uint8 +{ + AEM_Histogram = 0, + AEM_Basic = 1, + AEM_Manual = 2, + AEM_MAX = 3, +}; + +// Enum Engine.EDefaultBackBufferPixelFormat +// NumValues: 0x0006 +enum class EDefaultBackBufferPixelFormat : uint8 +{ + DBBPF_B8G8R8A8 = 0, + DBBPF_A16B16G16R16_DEPRECATED = 1, + DBBPF_FloatRGB_DEPRECATED = 2, + DBBPF_FloatRGBA = 3, + DBBPF_A2B10G10R10 = 4, + DBBPF_MAX = 5, +}; + +// Enum Engine.EFixedFoveationLevels +// NumValues: 0x0006 +enum class EFixedFoveationLevels : uint8 +{ + Disabled = 0, + Low = 1, + Medium = 2, + High = 3, + HighTop = 4, + EFixedFoveationLevels_MAX = 5, +}; + +// Enum Engine.EMobileAntiAliasingMethod +// NumValues: 0x0005 +enum class EMobileAntiAliasingMethod : uint8 +{ + None = 0, + FXAA = 1, + TemporalAA = 2, + MSAA = 3, + EMobileAntiAliasingMethod_MAX = 4, +}; + +// Enum Engine.EMobileFloatPrecisionMode +// NumValues: 0x0004 +enum class EMobileFloatPrecisionMode : uint8 +{ + Half = 0, + Full_MaterialExpressionOnly = 1, + Full = 2, + EMobileFloatPrecisionMode_MAX = 3, +}; + +// Enum Engine.EMobileShadingPath +// NumValues: 0x0003 +enum class EMobileShadingPath : uint8 +{ + Forward = 0, + Deferred = 1, + EMobileShadingPath_MAX = 2, +}; + +// Enum Engine.ELightFunctionAtlasPixelFormat +// NumValues: 0x0003 +enum class ELightFunctionAtlasPixelFormat : uint8 +{ + LFAPF_R8 = 0, + LFAPF_R8G8B8 = 1, + LFAPF_MAX = 2, +}; + +// Enum Engine.EShaderCompressionFormat +// NumValues: 0x0005 +enum class EShaderCompressionFormat : uint8 +{ + None = 0, + LZ4 = 1, + Oodle = 2, + Zlib = 3, + EShaderCompressionFormat_MAX = 4, +}; + +// Enum Engine.ELumenSoftwareTracingMode +// NumValues: 0x0003 +enum class ELumenSoftwareTracingMode : uint8 +{ + DetailTracing = 1, + GlobalTracing = 0, + ELumenSoftwareTracingMode_MAX = 2, +}; + +// Enum Engine.ELumenRayLightingMode +// NumValues: 0x0004 +enum class ELumenRayLightingMode : uint8 +{ + SurfaceCache = 0, + HitLightingForReflections = 2, + HitLighting = 1, + ELumenRayLightingMode_MAX = 3, +}; + +// Enum Engine.ELumenScreenTracingSource +// NumValues: 0x0003 +enum class ELumenScreenTracingSource : uint8 +{ + SceneColor = 0, + AntialiasedSceneColorWithTranslucency = 1, + ELumenScreenTracingSource_MAX = 2, +}; + +// Enum Engine.EWorkingColorSpace +// NumValues: 0x0008 +enum class EWorkingColorSpace : uint8 +{ + sRGB = 1, + Rec2020 = 2, + ACESAP0 = 3, + ACESAP1 = 4, + P3DCI = 5, + P3D65 = 6, + Custom = 7, + EWorkingColorSpace_MAX = 8, +}; + +// Enum Engine.ENeuralProfileFormat +// NumValues: 0x0003 +enum class ENeuralProfileFormat : uint8 +{ + Type32 = 0, + Type16 = 1, + ENeuralProfileFormat_MAX = 2, +}; + +// Enum Engine.ENeuralModelTileType +// NumValues: 0x0006 +enum class ENeuralModelTileType : uint8 +{ + OneByOne = 0, + TwoByTwo = 1, + FourByFour = 2, + EightByEight = 3, + Auto = 4, + ENeuralModelTileType_MAX = 5, +}; + +// Enum Engine.ETileOverlapResolveType +// NumValues: 0x0003 +enum class ETileOverlapResolveType : uint8 +{ + Ignore = 0, + Feathering = 1, + ETileOverlapResolveType_MAX = 2, +}; + +// Enum Engine.ENeuralProfileRuntimeType +// NumValues: 0x0003 +enum class ENeuralProfileRuntimeType : uint8 +{ + NNERuntimeORTDml = 0, + NNERuntimeRDGHlsl = 1, + MAX = 2, +}; + +// Enum Engine.ESpecularProfileFormat +// NumValues: 0x0003 +enum class ESpecularProfileFormat : uint8 +{ + ViewLightVector = 0, + HalfVector = 1, + ESpecularProfileFormat_MAX = 2, +}; + +// Enum Engine.ESkeletalMeshAsyncProperties +// NumValues: 0x003D +enum class ESkeletalMeshAsyncProperties : uint64 +{ + None = 0, + Materials = 1, + Skeleton = 2, + RefSkeleton = 4, + RetargetBasePose = 8, + RefBasesInvMatrix = 16, + MeshClothingAssets = 32, + SourceModels = 64, + HasActiveClothingAssets = 128, + LODSettings = 256, + HasVertexColors = 512, + VertexColorGuid = 1024, + MorphTargets = 2048, + SkeletalMeshRenderData = 4096, + MeshEditorDataObject = 8192, + NeverStream = 16384, + OverrideLODStreamingSettings = 32768, + SupportLODStreaming = 65536, + MaxNumStreamedLODs = 131072, + MaxNumOptionalLODs = 262144, + ImportedModel = 524288, + LODInfo = 1048576, + SkinWeightProfiles = 2097152, + CachedComposedRefPoseMatrices = 4194304, + SamplingInfo = 8388608, + NodeMappingData = 16777216, + ShadowPhysicsAsset = 33554432, + SkelMirrorTable = 67108864, + MinLod = 134217728, + DisableBelowMinLodStripping = 268435456, + SkelMirrorAxis = 536870912, + SkelMirrorFlipAxis = 1073741824, + DefaultAnimationRig = 2147483648, + NegativeBoundsExtension = 4294967296, + PositiveBoundsExtension = 8589934592, + ExtendedBounds = 17179869184, + EnablePerPolyCollision = 68719476736, + BodySetup = 137438953472, + MorphTargetIndexMap = 274877906944, + FloorOffset = 549755813888, + ImportedBounds = 1099511627776, + PhysicsAsset = 2199023255552, + AssetImportData = 4398046511104, + ThumbnailInfo = 8796093022208, + HasCustomDefaultEditorCamera = 17592186044416, + DefaultEditorCameraLocation = 35184372088832, + DefaultEditorCameraRotation = 70368744177664, + RequiresLODScreenSizeConversion = 140737488355328, + PostProcessAnimBlueprint = 281474976710656, + DefaultEditorCameraLookAt = 562949953421312, + PreviewAttachedAssetContainer = 1125899906842624, + DefaultEditorCameraOrthoZoom = 2251799813685248, + RequiresLODHysteresisConversion = 4503599627370496, + bSupportRayTracing = 9007199254740992, + RayTracingMinLOD = 18014398509481984, + ClothLODBiasMode = 36028797018963968, + DefaultMeshDeformer = 72057594037927936, + OverlayMaterial = 144115188075855872, + OverlayMaterialMaxDrawDistance = 288230376151711744, + All = 18446744073709551615, + ESkeletalMeshAsyncProperties_MAX = 288230376151711745, +}; + +// Enum Engine.EClothLODBiasMode +// NumValues: 0x0004 +enum class EClothLODBiasMode : uint8 +{ + MappingsToSameLOD = 0, + MappingsToMinLOD = 1, + MappingsToAnyLOD = 2, + EClothLODBiasMode_MAX = 3, +}; + +// Enum Engine.EBoneFilterActionOption +// NumValues: 0x0004 +enum class EBoneFilterActionOption : uint8 +{ + Remove = 0, + Keep = 1, + Invalid = 2, + EBoneFilterActionOption_MAX = 3, +}; + +// Enum Engine.ESkinCacheUsage +// NumValues: 0x0004 +enum class ESkinCacheUsage : uint8 +{ + Auto = 0, + Disabled = 255, + Enabled = 1, + ESkinCacheUsage_MAX = 256, +}; + +// Enum Engine.ESkinCacheDefaultBehavior +// NumValues: 0x0003 +enum class ESkinCacheDefaultBehavior : uint8 +{ + Exclusive = 0, + Inclusive = 1, + ESkinCacheDefaultBehavior_MAX = 2, +}; + +// Enum Engine.EVirtualizationMode +// NumValues: 0x0004 +enum class EVirtualizationMode : uint8 +{ + Disabled = 0, + PlayWhenSilent = 1, + Restart = 2, + EVirtualizationMode_MAX = 3, +}; + +// Enum Engine.EMaxConcurrentResolutionRule +// NumValues: 0x0009 +enum class EMaxConcurrentResolutionRule : uint8 +{ + PreventNew = 0, + StopOldest = 1, + StopFarthestThenPreventNew = 2, + StopFarthestThenOldest = 3, + StopLowestPriority = 4, + StopQuietest = 5, + StopLowestPriorityThenPreventNew = 6, + Count = 7, + EMaxConcurrentResolutionRule_MAX = 8, +}; + +// Enum Engine.EConcurrencyVolumeScaleMode +// NumValues: 0x0004 +enum class EConcurrencyVolumeScaleMode : uint32 +{ + Default = 0, + Distance = 1, + Priority = 2, + EConcurrencyVolumeScaleMode_MAX = 3, +}; + +// Enum Engine.EModulationRouting +// NumValues: 0x0005 +enum class EModulationRouting : uint8 +{ + Disable = 0, + Inherit = 1, + Override = 2, + Union = 3, + EModulationRouting_MAX = 4, +}; + +// Enum Engine.EModulationDestination +// NumValues: 0x0006 +enum class EModulationDestination : uint8 +{ + Volume = 0, + Pitch = 1, + Lowpass = 2, + Highpass = 3, + Count = 4, + EModulationDestination_MAX = 5, +}; + +// Enum Engine.ESourceBusChannels +// NumValues: 0x0003 +enum class ESourceBusChannels : uint8 +{ + Mono = 0, + Stereo = 1, + ESourceBusChannels_MAX = 2, +}; + +// Enum Engine.EFFTSize +// NumValues: 0x0007 +enum class EFFTSize : uint8 +{ + DefaultSize = 0, + Min = 1, + Small = 2, + Medium = 3, + Large = 4, + VeryLarge = 5, + Max = 6, +}; + +// Enum Engine.EFFTPeakInterpolationMethod +// NumValues: 0x0005 +enum class EFFTPeakInterpolationMethod : uint8 +{ + NearestNeighbor = 0, + Linear = 1, + Quadratic = 2, + ConstantQ = 3, + EFFTPeakInterpolationMethod_MAX = 4, +}; + +// Enum Engine.EFFTWindowType +// NumValues: 0x0005 +enum class EFFTWindowType : uint8 +{ + None = 0, + Hamming = 1, + Hann = 2, + Blackman = 3, + EFFTWindowType_MAX = 4, +}; + +// Enum Engine.EAudioSpectrumType +// NumValues: 0x0004 +enum class EAudioSpectrumType : uint8 +{ + MagnitudeSpectrum = 0, + PowerSpectrum = 1, + Decibel = 2, + EAudioSpectrumType_MAX = 3, +}; + +// Enum Engine.EGainParamMode +// NumValues: 0x0003 +enum class EGainParamMode : uint8 +{ + Linear = 0, + Decibels = 1, + EGainParamMode_MAX = 2, +}; + +// Enum Engine.EAudioSpectrumBandPresetType +// NumValues: 0x0005 +enum class EAudioSpectrumBandPresetType : uint8 +{ + KickDrum = 0, + SnareDrum = 1, + Voice = 2, + Cymbals = 3, + EAudioSpectrumBandPresetType_MAX = 4, +}; + +// Enum Engine.EAudioRecordingExportType +// NumValues: 0x0003 +enum class EAudioRecordingExportType : uint8 +{ + SoundWave = 0, + WavFile = 1, + EAudioRecordingExportType_MAX = 2, +}; + +// Enum Engine.ESendLevelControlMethod +// NumValues: 0x0004 +enum class ESendLevelControlMethod : uint8 +{ + Linear = 0, + CustomCurve = 1, + Manual = 2, + ESendLevelControlMethod_MAX = 3, +}; + +// Enum Engine.ESubmixSendStage +// NumValues: 0x0003 +enum class ESubmixSendStage : uint8 +{ + PostDistanceAttenuation = 0, + PreDistanceAttenuation = 1, + ESubmixSendStage_MAX = 2, +}; + +// Enum Engine.ENormalMode +// NumValues: 0x0006 +enum class ENormalMode : uint8 +{ + NM_PreserveSmoothingGroups = 0, + NM_RecalculateNormals = 1, + NM_RecalculateNormalsSmooth = 2, + NM_RecalculateNormalsHard = 3, + TEMP_BROKEN = 4, + ENormalMode_MAX = 5, +}; + +// Enum Engine.EImportanceLevel +// NumValues: 0x0008 +enum class EImportanceLevel : uint8 +{ + IL_Off = 0, + IL_Lowest = 1, + IL_Low = 2, + IL_Normal = 3, + IL_High = 4, + IL_Highest = 5, + TEMP_BROKEN2 = 6, + EImportanceLevel_MAX = 7, +}; + +// Enum Engine.EOptimizationType +// NumValues: 0x0003 +enum class EOptimizationType : uint8 +{ + OT_NumOfTriangles = 0, + OT_MaxDeviation = 1, + OT_MAX = 2, +}; + +// Enum Engine.EStaticMeshPaintSupport +// NumValues: 0x0004 +enum class EStaticMeshPaintSupport : uint8 +{ + Default = 0, + Enabled = 1, + Disabled = 2, + EStaticMeshPaintSupport_MAX = 3, +}; + +// Enum Engine.ETextureEncodeEffort +// NumValues: 0x0005 +enum class ETextureEncodeEffort : uint8 +{ + Default = 0, + Low = 10, + Normal = 20, + High = 30, + ETextureEncodeEffort_MAX = 31, +}; + +// Enum Engine.ETextureUniversalTiling +// NumValues: 0x0004 +enum class ETextureUniversalTiling : uint8 +{ + Disabled = 0, + Enabled_256KB = 1, + Enabled_64KB = 2, + ETextureUniversalTiling_MAX = 3, +}; + +// Enum Engine.ETextureEncodeSpeedOverride +// NumValues: 0x0005 +enum class ETextureEncodeSpeedOverride : uint8 +{ + Disabled = 255, + Final = 0, + FinalIfAvailable = 1, + Fast = 2, + ETextureEncodeSpeedOverride_MAX = 256, +}; + +// Enum Engine.ETextureRenderTargetFormat +// NumValues: 0x000C +enum class ETextureRenderTargetFormat : uint8 +{ + RTF_R8 = 0, + RTF_RG8 = 1, + RTF_RGBA8 = 2, + RTF_RGBA8_SRGB = 3, + RTF_R16f = 4, + RTF_RG16f = 5, + RTF_RGBA16f = 6, + RTF_R32f = 7, + RTF_RG32f = 8, + RTF_RGBA32f = 9, + RTF_RGB10A2 = 10, + RTF_MAX = 11, +}; + +// Enum Engine.ETextureRenderTargetSampleCount +// NumValues: 0x0005 +enum class ETextureRenderTargetSampleCount : uint8 +{ + RTSC_1 = 0, + RTSC_2 = 1, + RTSC_4 = 2, + RTSC_8 = 3, + RTSC_MAX = 4, +}; + +// Enum Engine.ERenderFocusRule +// NumValues: 0x0005 +enum class ERenderFocusRule : uint8 +{ + Always = 0, + NonPointer = 1, + NavigationOnly = 2, + Never = 3, + ERenderFocusRule_MAX = 4, +}; + +// Enum Engine.EUIScalingRule +// NumValues: 0x0007 +enum class EUIScalingRule : uint8 +{ + ShortestSide = 0, + LongestSide = 1, + Horizontal = 2, + Vertical = 3, + ScaleToFit = 4, + Custom = 5, + EUIScalingRule_MAX = 6, +}; + +// Enum Engine.EFontDPI +// NumValues: 0x0004 +enum class EFontDPI : uint8 +{ + Standard = 0, + Unreal = 1, + Custom = 2, + EFontDPI_MAX = 3, +}; + +// Enum Engine.EHardwareDeviceSupportedFeatures +// NumValues: 0x0017 +enum class EHardwareDeviceSupportedFeatures : uint32 +{ + Unspecified = 0, + Keypress = 1, + Pointer = 2, + Gamepad = 4, + Touch = 8, + Camera = 16, + MotionTracking = 32, + Lights = 64, + TriggerHaptics = 128, + ForceFeedback = 256, + AudioBasedVibrations = 512, + Acceleration = 1024, + Virtual = 2048, + Microphone = 4096, + Orientation = 8192, + Guitar = 16384, + Drums = 32768, + CustomA = 16777216, + CustomB = 33554432, + CustomC = 67108864, + CustomD = 134217728, + All = 2147483647, + EHardwareDeviceSupportedFeatures_MAX = 2147483648, +}; + +// Enum Engine.EHardwareDevicePrimaryType +// NumValues: 0x000E +enum class EHardwareDevicePrimaryType : uint8 +{ + Unspecified = 0, + KeyboardAndMouse = 1, + Gamepad = 2, + Touch = 3, + MotionTracking = 4, + RacingWheel = 5, + FlightStick = 6, + Camera = 7, + Instrument = 8, + CustomTypeA = 9, + CustomTypeB = 10, + CustomTypeC = 11, + CustomTypeD = 12, + EHardwareDevicePrimaryType_MAX = 13, +}; + +// Enum Engine.EDataLayerState +// NumValues: 0x0004 +enum class EDataLayerState : uint8 +{ + Unloaded = 0, + Loaded = 1, + Activated = 2, + EDataLayerState_MAX = 3, +}; + +// Enum Engine.EDataLayerLoadFilter +// NumValues: 0x0004 +enum class EDataLayerLoadFilter : uint8 +{ + None = 0, + ClientOnly = 1, + ServerOnly = 2, + EDataLayerLoadFilter_MAX = 3, +}; + +// Enum Engine.EOverrideBlockOnSlowStreaming +// NumValues: 0x0004 +enum class EOverrideBlockOnSlowStreaming : uint8 +{ + NoOverride = 0, + Blocking = 1, + NotBlocking = 2, + EOverrideBlockOnSlowStreaming_MAX = 3, +}; + +// Enum Engine.EHLODLayerType +// NumValues: 0x0006 +enum class EHLODLayerType : uint8 +{ + Instancing = 0, + MeshMerge = 1, + MeshSimplify = 2, + MeshApproximate = 3, + Custom = 4, + EHLODLayerType_MAX = 5, +}; + +// Enum Engine.EWorldPartitionServerStreamingMode +// NumValues: 0x0005 +enum class EWorldPartitionServerStreamingMode : uint8 +{ + ProjectDefault = 0, + Disabled = 1, + Enabled = 2, + EnabledInPIE = 3, + EWorldPartitionServerStreamingMode_MAX = 4, +}; + +// Enum Engine.EWorldPartitionServerStreamingOutMode +// NumValues: 0x0004 +enum class EWorldPartitionServerStreamingOutMode : uint8 +{ + ProjectDefault = 0, + Disabled = 1, + Enabled = 2, + EWorldPartitionServerStreamingOutMode_MAX = 3, +}; + +// Enum Engine.EWorldPartitionDataLayersLogicOperator +// NumValues: 0x0003 +enum class EWorldPartitionDataLayersLogicOperator : uint8 +{ + Or = 0, + And = 1, + EWorldPartitionDataLayersLogicOperator_MAX = 2, +}; + +// Enum Engine.EWorldPartitionRuntimeCellState +// NumValues: 0x0004 +enum class EWorldPartitionRuntimeCellState : uint8 +{ + Unloaded = 0, + Loaded = 1, + Activated = 2, + EWorldPartitionRuntimeCellState_MAX = 3, +}; + +// Enum Engine.EWorldPartitionStreamingPerformance +// NumValues: 0x0004 +enum class EWorldPartitionStreamingPerformance : uint8 +{ + Good = 0, + Slow = 1, + Critical = 2, + EWorldPartitionStreamingPerformance_MAX = 3, +}; + +// Enum Engine.EWorldPartitionCVarProjectDefaultOverride +// NumValues: 0x0004 +enum class EWorldPartitionCVarProjectDefaultOverride : uint8 +{ + ProjectDefault = 0, + Disabled = 1, + Enabled = 2, + EWorldPartitionCVarProjectDefaultOverride_MAX = 3, +}; + +// Enum Engine.EStreamingSourceTargetBehavior +// NumValues: 0x0003 +enum class EStreamingSourceTargetBehavior : uint8 +{ + Include = 0, + Exclude = 1, + EStreamingSourceTargetBehavior_MAX = 2, +}; + +// Enum Engine.EStreamingSourceTargetState +// NumValues: 0x0003 +enum class EStreamingSourceTargetState : uint8 +{ + Loaded = 0, + Activated = 1, + EStreamingSourceTargetState_MAX = 2, +}; + +// Enum Engine.EStreamingSourcePriority +// NumValues: 0x0007 +enum class EStreamingSourcePriority : uint8 +{ + Highest = 0, + High = 64, + Normal = 128, + Low = 192, + Lowest = 255, + Default = 128, + EStreamingSourcePriority_MAX = 256, +}; + +// ScriptStruct Engine.WorldPartitionRuntimeCellPropertyOverride +// 0x0001 (0x0001 - 0x0000) +struct FWorldPartitionRuntimeCellPropertyOverride final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FWorldPartitionRuntimeCellPropertyOverride; + +// ScriptStruct Engine.CollisionProfileName +// 0x0008 (0x0008 - 0x0000) +struct FCollisionProfileName final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollisionProfileName; + +// ScriptStruct Engine.FXSystemSpawnParameters +// 0x0070 (0x0070 - 0x0000) +struct FFXSystemSpawnParameters final +{ +public: + class UObject* WorldContextObject; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFXSystemAsset* SystemTemplate; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0010(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0040(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachToComponent; // 0x0058(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName AttachPointName; // 0x0060(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttachLocation LocationType; // 0x0068(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoDestroy; // 0x0069(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoActivate; // 0x006A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPSCPoolMethod PoolingMethod; // 0x006B(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPreCullCheck; // 0x006C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsPlayerEffect; // 0x006D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6E[0x2]; // 0x006E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FFXSystemSpawnParameters; + +// ScriptStruct Engine.MaterialInput +// 0x0028 (0x0028 - 0x0000) +struct FMaterialInput +{ +public: + class UMaterialExpression* Expression; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutputIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InputName; // 0x000C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Mask; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskR; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskG; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskB; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskA; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialInput; + +// ScriptStruct Engine.DataCacheDuplicatedObjectData +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FDataCacheDuplicatedObjectData final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDataCacheDuplicatedObjectData; + +// ScriptStruct Engine.InstanceCacheDataBase +// 0x0058 (0x0058 - 0x0000) +struct FInstanceCacheDataBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SavedProperties; // 0x0008(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + struct FDataCacheDuplicatedObjectData UniqueTransientPackage; // 0x0018(0x0010)(NoDestructor, NativeAccessSpecifierPrivate) + TArray DuplicatedObjects; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray ReferencedObjects; // 0x0038(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + TArray ReferencedNames; // 0x0048(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FInstanceCacheDataBase; + +// ScriptStruct Engine.ActorComponentInstanceData +// 0x0010 (0x0068 - 0x0058) +struct FActorComponentInstanceData : public FInstanceCacheDataBase +{ +public: + class UObject* SourceComponentTemplate; // 0x0058(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EComponentCreationMethod SourceComponentCreationMethod; // 0x0060(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SourceComponentTypeSerializedIndex; // 0x0064(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FActorComponentInstanceData; + +// ScriptStruct Engine.SceneComponentInstanceData +// 0x0050 (0x00B8 - 0x0068) +struct FSceneComponentInstanceData : public FActorComponentInstanceData +{ +public: + TMap AttachedInstanceComponents; // 0x0068(0x0050)(ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +////_ASSERTS_FSceneComponentInstanceData; + +// ScriptStruct Engine.PropertyOverrideReferenceTable +// 0x0001 (0x0001 - 0x0000) +struct FPropertyOverrideReferenceTable final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FPropertyOverrideReferenceTable; + +// ScriptStruct Engine.PerBoneBlendWeight +// 0x0008 (0x0008 - 0x0000) +struct FPerBoneBlendWeight final +{ +public: + int32 SourceIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendWeight; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPerBoneBlendWeight; + +// ScriptStruct Engine.PerBoneBlendWeights +// 0x0010 (0x0010 - 0x0000) +struct FPerBoneBlendWeights final +{ +public: + TArray BoneBlendWeights; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPerBoneBlendWeights; + +// ScriptStruct Engine.PoseLinkBase +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FPoseLinkBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LinkID; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPoseLinkBase; + +// ScriptStruct Engine.PoseLink +// 0x0000 (0x0010 - 0x0010) +struct FPoseLink final : public FPoseLinkBase +{ +}; +//_ASSERTS_FPoseLink; + +// ScriptStruct Engine.AnimNode_Base +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FAnimNode_Base +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_Base; + +// ScriptStruct Engine.AnimNode_SingleNode +// 0x0020 (0x0030 - 0x0010) +struct FAnimNode_SingleNode final : public FAnimNode_Base +{ +public: + struct FPoseLink SourcePose; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_20[0x10]; // 0x0020(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_SingleNode; + +// ScriptStruct Engine.DistributionLookupTable +// 0x0020 (0x0020 - 0x0000) +struct FDistributionLookupTable final +{ +public: + float timescale; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeBias; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Values; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Op; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EntryCount; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 EntryStride; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 SubEntryStride; // 0x001B(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 LockFlag; // 0x001C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FDistributionLookupTable; + +// ScriptStruct Engine.FloatDistribution +// 0x0020 (0x0020 - 0x0000) +struct FFloatDistribution final +{ +public: + struct FDistributionLookupTable Table; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFloatDistribution; + +// ScriptStruct Engine.DebugFloatHistory +// 0x0020 (0x0020 - 0x0000) +struct FDebugFloatHistory final +{ +public: + TArray Samples; // 0x0000(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + int32 MaxSamples; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinValue; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxValue; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoAdjustMinMax; // 0x001C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDebugFloatHistory; + +// ScriptStruct Engine.ParticleSystemLOD +// 0x0001 (0x0001 - 0x0000) +struct FParticleSystemLOD final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParticleSystemLOD; + +// ScriptStruct Engine.CurveTableRowHandle +// 0x0010 (0x0010 - 0x0000) +struct FCurveTableRowHandle final +{ +public: + class UCurveTable* CurveTable; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveTableRowHandle; + +// ScriptStruct Engine.ColorMaterialInput +// 0x0008 (0x0030 - 0x0028) +struct FColorMaterialInput final : public FMaterialInput +{ +public: + uint8 UseConstant : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor Constant; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FColorMaterialInput; + +// ScriptStruct Engine.ActorDesc +// 0x00B0 (0x00B0 - 0x0000) +struct FActorDesc final +{ +public: + struct FGuid Guid; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf NativeClass; // 0x0010(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath Class; // 0x0018(0x0020)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0038(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Label; // 0x0040(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBox Bounds; // 0x0048(0x0038)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FName RuntimeGrid; // 0x0080(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsSpatiallyLoaded; // 0x0088(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bActorIsEditorOnly; // 0x0089(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8A[0x2]; // 0x008A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ActorPackage; // 0x008C(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ActorPath; // 0x0094(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9C[0x4]; // 0x009C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DataLayerAssets; // 0x00A0(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActorDesc; + +// ScriptStruct Engine.ExpressionInput +// 0x0028 (0x0028 - 0x0000) +struct FExpressionInput +{ +public: + class UMaterialExpression* Expression; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutputIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InputName; // 0x000C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Mask; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskR; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskG; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskB; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskA; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FExpressionInput; + +// ScriptStruct Engine.AlphaBlend +// 0x0030 (0x0030 - 0x0000) +struct FAlphaBlend final +{ +public: + class UCurveFloat* CustomCurve; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float BlendTime; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_C[0x18]; // 0x000C(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + EAlphaBlendOption BlendOption; // 0x0024(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_25[0xB]; // 0x0025(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAlphaBlend; + +// ScriptStruct Engine.InputAlphaBoolBlend +// 0x0048 (0x0048 - 0x0000) +struct FInputAlphaBoolBlend final +{ +public: + float BlendInTime; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTime; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAlphaBlendOption BlendOption; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInitialized; // 0x0009(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* CustomCurve; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAlphaBlend AlphaBlend; // 0x0018(0x0030)(Transient, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputAlphaBoolBlend; + +// ScriptStruct Engine.InputScaleBias +// 0x0008 (0x0008 - 0x0000) +struct FInputScaleBias final +{ +public: + float Scale; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bias; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputScaleBias; + +// ScriptStruct Engine.InputRange +// 0x0008 (0x0008 - 0x0000) +struct FInputRange final +{ +public: + float Min; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Max; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputRange; + +// ScriptStruct Engine.InputScaleBiasClamp +// 0x0030 (0x0030 - 0x0000) +struct FInputScaleBiasClamp final +{ +public: + bool bMapRange; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClampResult; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInterpResult; // 0x0002(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInputRange InRange; // 0x0004(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FInputRange OutRange; // 0x000C(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + float Scale; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bias; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampMin; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampMax; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedIncreasing; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedDecreasing; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInputScaleBiasClamp; + +// ScriptStruct Engine.AnimNode_ApplyMeshSpaceAdditive +// 0x00C0 (0x00D0 - 0x0010) +struct FAnimNode_ApplyMeshSpaceAdditive final : public FAnimNode_Base +{ +public: + struct FPoseLink base; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FPoseLink Additive; // 0x0020(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + EAnimAlphaInputType AlphaInputType; // 0x0030(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Alpha; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAlphaBoolEnabled : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInputAlphaBoolBlend AlphaBoolBlend; // 0x0040(0x0048)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + class FName AlphaCurveName; // 0x0088(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputScaleBias AlphaScaleBias; // 0x0090(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FInputScaleBiasClamp AlphaScaleBiasClamp; // 0x0098(0x0030)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + int32 LODThreshold; // 0x00C8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_CC[0x4]; // 0x00CC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FAnimNode_ApplyMeshSpaceAdditive; + +// ScriptStruct Engine.EditorElement +// 0x0018 (0x0018 - 0x0000) +struct FEditorElement final +{ +public: + int32 Indices[0x3]; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Weights[0x3]; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEditorElement; + +// ScriptStruct Engine.ExpressionOutput +// 0x001C (0x001C - 0x0000) +struct FExpressionOutput final +{ +public: + class FName OutputName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Mask; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskR; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskG; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskB; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaskA; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FExpressionOutput; + +// ScriptStruct Engine.StreamingTextureBuildInfo +// 0x000C (0x000C - 0x0000) +struct FStreamingTextureBuildInfo final +{ +public: + uint32 PackedRelativeBox; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TextureLevelIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TexelFactor; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStreamingTextureBuildInfo; + +// ScriptStruct Engine.KShapeElem +// 0x0030 (0x0030 - 0x0000) +struct alignas(0x08) FKShapeElem +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float RestOffset; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x000C(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bContributeToMass : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + ECollisionEnabled CollisionEnabled; // 0x0019(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1A[0x16]; // 0x001A(0x0016)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKShapeElem; + +// ScriptStruct Engine.KLevelSetElem +// 0x0070 (0x00A0 - 0x0030) +struct FKLevelSetElem final : public FKShapeElem +{ +public: + struct FTransform Transform; // 0x0030(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_90[0x10]; // 0x0090(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKLevelSetElem; + +// ScriptStruct Engine.InstancedStaticMeshLightMapInstanceData +// 0x0070 (0x0070 - 0x0000) +struct FInstancedStaticMeshLightMapInstanceData final +{ +public: + struct FTransform Transform; // 0x0000(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray MapBuildDataIds; // 0x0060(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInstancedStaticMeshLightMapInstanceData; + +// ScriptStruct Engine.BPEditorBookmarkNode +// 0x0030 (0x0030 - 0x0000) +struct FBPEditorBookmarkNode final +{ +public: + struct FGuid NodeGuid; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ParentGuid; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText DisplayName; // 0x0020(0x0010)(NativeAccessSpecifierPublic) +}; +////_ASSERTS_FBPEditorBookmarkNode; + +// ScriptStruct Engine.CustomPrimitiveData +// 0x0010 (0x0010 - 0x0000) +struct FCustomPrimitiveData final +{ +public: + TArray Data; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +////_ASSERTS_FCustomPrimitiveData; + +// ScriptStruct Engine.FloatRK4SpringInterpolator +// 0x0008 (0x0008 - 0x0000) +struct FFloatRK4SpringInterpolator final +{ +public: + float StiffnessConstant; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DampeningRatio; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFloatRK4SpringInterpolator; + +// ScriptStruct Engine.SubObjectPropertyOverride +// 0x0001 (0x0001 - 0x0000) +struct FSubObjectPropertyOverride final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FSubObjectPropertyOverride; + +// ScriptStruct Engine.AnimSlotDesc +// 0x000C (0x000C - 0x0000) +struct FAnimSlotDesc final +{ +public: + class FName SlotName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumChannels; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimSlotDesc; + +// ScriptStruct Engine.SkeletalMeshSamplingRegionBoneFilter +// 0x000C (0x000C - 0x0000) +struct FSkeletalMeshSamplingRegionBoneFilter final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIncludeOrExclude : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyToChildren : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshSamplingRegionBoneFilter; + +// ScriptStruct Engine.AnimNodeStructData +// 0x0058 (0x0058 - 0x0000) +struct FAnimNodeStructData final +{ +public: + TMap NameToIndexMap; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) + int32 NumProperties; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNodeStructData; + +// ScriptStruct Engine.RichCurveKey +// 0x001C (0x001C - 0x0000) +struct FRichCurveKey final +{ +public: + ERichCurveInterpMode InterpMode; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveTangentMode TangentMode; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveTangentWeightMode TangentWeightMode; // 0x0002(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float Time; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArriveTangent; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArriveTangentWeight; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LeaveTangent; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LeaveTangentWeight; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRichCurveKey; + +// ScriptStruct Engine.KeyHandleMap +// 0x0060 (0x0060 - 0x0000) +struct alignas(0x08) FKeyHandleMap final +{ +public: + uint8 Pad_0[0x60]; // 0x0000(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKeyHandleMap; + +// ScriptStruct Engine.IndexedCurve +// 0x0068 (0x0068 - 0x0000) +struct FIndexedCurve +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FKeyHandleMap KeyHandlesToIndices; // 0x0008(0x0060)(Transient, Protected, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FIndexedCurve; + +// ScriptStruct Engine.RealCurve +// 0x0008 (0x0070 - 0x0068) +struct FRealCurve : public FIndexedCurve +{ +public: + float DefaultValue; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveExtrapolation PreInfinityExtrap; // 0x006C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveExtrapolation PostInfinityExtrap; // 0x006D(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6E[0x2]; // 0x006E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRealCurve; + +// ScriptStruct Engine.RichCurve +// 0x0010 (0x0080 - 0x0070) +struct FRichCurve final : public FRealCurve +{ +public: + TArray Keys; // 0x0070(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRichCurve; + +// ScriptStruct Engine.RuntimeFloatCurve +// 0x0088 (0x0088 - 0x0000) +struct FRuntimeFloatCurve final +{ +public: + struct FRichCurve EditorCurveData; // 0x0000(0x0080)(NativeAccessSpecifierPublic) + class UCurveFloat* ExternalCurve; // 0x0080(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimeFloatCurve; + +// ScriptStruct Engine.TableRowBase +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FTableRowBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTableRowBase; + +// ScriptStruct Engine.BandwidthTestItem +// 0x0010 (0x0010 - 0x0000) +struct FBandwidthTestItem final +{ +public: + TArray Kilobyte; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBandwidthTestItem; + +// ScriptStruct Engine.BandwidthTestGenerator +// 0x0020 (0x0020 - 0x0000) +struct FBandwidthTestGenerator final +{ +public: + TArray ReplicatedBuffers; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBandwidthTestGenerator; + +// ScriptStruct Engine.WorldPartitionActorFilter +// 0x0001 (0x0001 - 0x0000) +struct FWorldPartitionActorFilter final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionActorFilter; + +// ScriptStruct Engine.FormatArgumentData +// 0x0048 (0x0048 - 0x0000) +struct FFormatArgumentData final +{ +public: + class FString ArgumentName; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFormatArgumentType ArgumentValueType; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FText ArgumentValue; // 0x0018(0x0010)(Edit, BlueprintVisible, DisableEditOnTemplate, NativeAccessSpecifierPublic) + int64 ArgumentValueInt; // 0x0028(0x0008)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ArgumentValueFloat; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double ArgumentValueDouble; // 0x0038(0x0008)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextGender ArgumentValueGender; // 0x0040(0x0001)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FFormatArgumentData; + +// ScriptStruct Engine.EdGraphTerminalType +// 0x001C (0x001C - 0x0000) +struct FEdGraphTerminalType final +{ +public: + class FName TerminalCategory; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TerminalSubCategory; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr TerminalSubCategoryObject; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTerminalIsConst; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTerminalIsWeakPointer; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTerminalIsUObjectWrapper; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x1]; // 0x001B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEdGraphTerminalType; + +// ScriptStruct Engine.CollisionResponseContainer +// 0x0020 (0x0020 - 0x0000) +struct FCollisionResponseContainer final +{ +public: + ECollisionResponse WorldStatic; // 0x0000(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse WorldDynamic; // 0x0001(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Pawn; // 0x0002(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Visibility; // 0x0003(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Camera; // 0x0004(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse PhysicsBody; // 0x0005(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Vehicle; // 0x0006(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Destructible; // 0x0007(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel1; // 0x0008(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel2; // 0x0009(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel3; // 0x000A(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel4; // 0x000B(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel5; // 0x000C(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse EngineTraceChannel6; // 0x000D(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel1; // 0x000E(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel2; // 0x000F(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel3; // 0x0010(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel4; // 0x0011(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel5; // 0x0012(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel6; // 0x0013(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel7; // 0x0014(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel8; // 0x0015(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel9; // 0x0016(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel10; // 0x0017(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel11; // 0x0018(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel12; // 0x0019(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel13; // 0x001A(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel14; // 0x001B(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel15; // 0x001C(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel16; // 0x001D(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel17; // 0x001E(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse GameTraceChannel18; // 0x001F(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollisionResponseContainer; + +// ScriptStruct Engine.ResponseChannel +// 0x000C (0x000C - 0x0000) +struct FResponseChannel final +{ +public: + class FName Channel; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse Response; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FResponseChannel; + +// ScriptStruct Engine.CollisionResponse +// 0x0030 (0x0030 - 0x0000) +struct FCollisionResponse final +{ +public: + struct FCollisionResponseContainer ResponseToChannels; // 0x0000(0x0020)(Transient, NoDestructor, NativeAccessSpecifierPrivate) + TArray ResponseArray; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) +}; +////_ASSERTS_FCollisionResponse; + +// ScriptStruct Engine.BuilderPoly +// 0x0020 (0x0020 - 0x0000) +struct FBuilderPoly final +{ +public: + TArray VertexIndices; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 Direction; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ItemName; // 0x0014(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PolyFlags; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBuilderPoly; + +// ScriptStruct Engine.QuaternionAnimationAttribute +// 0x0020 (0x0020 - 0x0000) +struct FQuaternionAnimationAttribute +{ +public: + struct FQuat Value; // 0x0000(0x0020)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FQuaternionAnimationAttribute; + +// ScriptStruct Engine.NamedVector +// 0x0020 (0x0020 - 0x0000) +struct FNamedVector final +{ +public: + struct FVector Value; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNamedVector; + +// ScriptStruct Engine.MaterialAttributesInput +// 0x0008 (0x0030 - 0x0028) +struct FMaterialAttributesInput final : public FExpressionInput +{ +public: + int64 PropertyConnectedMask; // 0x0028(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialAttributesInput; + +// ScriptStruct Engine.ActorDataLayer +// 0x0008 (0x0008 - 0x0000) +struct FActorDataLayer final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActorDataLayer; + +// ScriptStruct Engine.RawDistribution +// 0x0020 (0x0020 - 0x0000) +struct FRawDistribution +{ +public: + struct FDistributionLookupTable Table; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRawDistribution; + +// ScriptStruct Engine.BodyInstanceAsyncPhysicsTickHandle +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FBodyInstanceAsyncPhysicsTickHandle final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBodyInstanceAsyncPhysicsTickHandle; + +// ScriptStruct Engine.ConstraintDrive +// 0x0010 (0x0010 - 0x0000) +struct FConstraintDrive final +{ +public: + float Stiffness; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Damping; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxForce; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnablePositionDrive : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableVelocityDrive : 1; // 0x000C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConstraintDrive; + +// ScriptStruct Engine.LinearDriveConstraint +// 0x0068 (0x0068 - 0x0000) +struct FLinearDriveConstraint final +{ +public: + struct FVector PositionTarget; // 0x0000(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector VelocityTarget; // 0x0018(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FConstraintDrive XDrive; // 0x0030(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FConstraintDrive YDrive; // 0x0040(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FConstraintDrive ZDrive; // 0x0050(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bAccelerationMode; // 0x0060(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLinearDriveConstraint; + +// ScriptStruct Engine.ScalarMaterialInput +// 0x0008 (0x0030 - 0x0028) +struct FScalarMaterialInput final : public FMaterialInput +{ +public: + uint8 UseConstant : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Constant; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FScalarMaterialInput; + +// ScriptStruct Engine.LevelCollection +// 0x0078 (0x0078 - 0x0000) +struct FLevelCollection final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class AGameStateBase* GameState; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UNetDriver* NetDriver; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDemoNetDriver* DemoNetDriver; // 0x0018(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class ULevel* PersistentLevel; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSet Levels; // 0x0028(0x0050)(UObjectWrapper, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FLevelCollection; + +// ScriptStruct Engine.ChaosRemovalEvent +// 0x0028 (0x0028 - 0x0000) +struct FChaosRemovalEvent final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0020(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FChaosRemovalEvent; + +// ScriptStruct Engine.MarkerSyncAnimPosition +// 0x0014 (0x0014 - 0x0000) +struct FMarkerSyncAnimPosition final +{ +public: + class FName PreviousMarkerName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NextMarkerName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PositionBetweenMarkers; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMarkerSyncAnimPosition; + +// ScriptStruct Engine.NetworkPhysicsSettingsPredictiveInterpolation +// 0x0080 (0x0080 - 0x0000) +struct FNetworkPhysicsSettingsPredictiveInterpolation final +{ +public: + uint8 bOverridePosCorrectionTimeBase : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PosCorrectionTimeBase; // 0x0004(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverridePosCorrectionTimeMin : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PosCorrectionTimeMin; // 0x000C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverridePosCorrectionTimeMultiplier : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PosCorrectionTimeMultiplier; // 0x0014(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRotCorrectionTimeBase : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotCorrectionTimeBase; // 0x001C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRotCorrectionTimeMin : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotCorrectionTimeMin; // 0x0024(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRotCorrectionTimeMultiplier : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotCorrectionTimeMultiplier; // 0x002C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverridePosInterpolationTimeMultiplier : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PosInterpolationTimeMultiplier; // 0x0034(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRotInterpolationTimeMultiplier : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotInterpolationTimeMultiplier; // 0x003C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideSoftSnapPosStrength : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SoftSnapPosStrength; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideSoftSnapRotStrength : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SoftSnapRotStrength; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideSoftSnapToSource : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bSoftSnapToSource; // 0x0054(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideDisableSoftSnap : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bDisableSoftSnap; // 0x005C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5D[0x3]; // 0x005D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideSkipVelocityRepOnPosEarlyOut : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bSkipVelocityRepOnPosEarlyOut; // 0x0064(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_65[0x3]; // 0x0065(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverridePostResimWaitForUpdate : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bPostResimWaitForUpdate; // 0x006C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6D[0x3]; // 0x006D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCorrectConnectedBodies : 1; // 0x0070(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_71[0x3]; // 0x0071(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCorrectConnectedBodies; // 0x0074(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_75[0x3]; // 0x0075(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCorrectConnectedBodiesFriction : 1; // 0x0078(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_79[0x3]; // 0x0079(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCorrectConnectedBodiesFriction; // 0x007C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7D[0x3]; // 0x007D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FNetworkPhysicsSettingsPredictiveInterpolation; + +// ScriptStruct Engine.PrimitiveComponentInstanceData +// 0x0078 (0x0130 - 0x00B8) +struct FPrimitiveComponentInstanceData : public FSceneComponentInstanceData +{ +public: + uint8 Pad_B8[0x8]; // 0x00B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform ComponentTransform; // 0x00C0(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 VisibilityId; // 0x0120(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_124[0x4]; // 0x0124(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPrimitiveComponent* LODParent; // 0x0128(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPrimitiveComponentInstanceData; + +// ScriptStruct Engine.PaintedVertex +// 0x0040 (0x0040 - 0x0000) +struct FPaintedVertex final +{ +public: + struct FVector position; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor Color; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector4 Normal; // 0x0020(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +////_ASSERTS_FPaintedVertex; + +// ScriptStruct Engine.StaticMeshVertexColorLODData +// 0x0028 (0x0028 - 0x0000) +struct FStaticMeshVertexColorLODData final +{ +public: + TArray PaintedVertices; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray VertexBufferColors; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint32 LODIndex; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticMeshVertexColorLODData; + +// ScriptStruct Engine.StaticMeshComponentInstanceData +// 0x0040 (0x0170 - 0x0130) +#pragma pack(push, 0x1) +struct alignas(0x10) FStaticMeshComponentInstanceData : public FPrimitiveComponentInstanceData +{ +public: + class UStaticMesh* StaticMesh; // 0x0130(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray VertexColorLODs; // 0x0138(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray CachedStaticLighting; // 0x0148(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray StreamingTextureData; // 0x0158(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +#pragma pack(pop) +//_ASSERTS_FStaticMeshComponentInstanceData; + +// ScriptStruct Engine.ShadingModelMaterialInput +// 0x0000 (0x0028 - 0x0028) +struct FShadingModelMaterialInput final : public FMaterialInput +{ +}; +////_ASSERTS_FShadingModelMaterialInput; + +// ScriptStruct Engine.InputAxisProperties +// 0x0010 (0x0010 - 0x0000) +struct FInputAxisProperties final +{ +public: + float DeadZone; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Sensitivity; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Exponent; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bInvert : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInputAxisProperties; + +// ScriptStruct Engine.InputAxisConfigEntry +// 0x0018 (0x0018 - 0x0000) +struct FInputAxisConfigEntry final +{ +public: + class FName AxisKeyName; // 0x0000(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputAxisProperties AxisProperties; // 0x0008(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputAxisConfigEntry; + +// ScriptStruct Engine.SubstrateMaterialInput +// 0x0000 (0x0028 - 0x0028) +struct FSubstrateMaterialInput final : public FMaterialInput +{ +}; +////_ASSERTS_FSubstrateMaterialInput; + +// ScriptStruct Engine.BoneFilter +// 0x000C (0x000C - 0x0000) +struct FBoneFilter final +{ +public: + bool bExcludeSelf; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBoneFilter; + +// ScriptStruct Engine.A2Pose +// 0x0010 (0x0010 - 0x0000) +struct FA2Pose +{ +public: + TArray Bones; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FA2Pose; + +// ScriptStruct Engine.A2CSPose +// 0x0018 (0x0028 - 0x0010) +struct FA2CSPose final : public FA2Pose +{ +public: + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ComponentSpaceFlags; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FA2CSPose; + +// ScriptStruct Engine.WalkableSlopeOverride +// 0x0010 (0x0010 - 0x0000) +struct FWalkableSlopeOverride final +{ +public: + EWalkableSlopeBehavior WalkableSlopeBehavior; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float WalkableSlopeAngle; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FWalkableSlopeOverride; + +// ScriptStruct Engine.PrimaryAssetRules +// 0x000C (0x000C - 0x0000) +struct FPrimaryAssetRules final +{ +public: + int32 Priority; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ChunkId; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bApplyRecursively; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPrimaryAssetCookRule CookRule; // 0x0009(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPrimaryAssetRules; + +// ScriptStruct Engine.PrimaryAssetRulesOverride +// 0x001C (0x001C - 0x0000) +struct FPrimaryAssetRulesOverride final +{ +public: + struct FPrimaryAssetId PrimaryAssetId; // 0x0000(0x0010)(Edit, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetRules Rules; // 0x0010(0x000C)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPrimaryAssetRulesOverride; + +// ScriptStruct Engine.LinkedAnimLayerInstanceData +// 0x0060 (0x0060 - 0x0000) +struct FLinkedAnimLayerInstanceData final +{ +public: + class UAnimInstance* Instance; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap> LinkedFunctions; // 0x0008(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLinkedAnimLayerInstanceData; + +// ScriptStruct Engine.LinkedAnimLayerClassData +// 0x0020 (0x0020 - 0x0000) +struct FLinkedAnimLayerClassData final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InstancesData; // 0x0008(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLinkedAnimLayerClassData; + +// ScriptStruct Engine.Vector2MaterialInput +// 0x0010 (0x0038 - 0x0028) +struct FVector2MaterialInput final : public FMaterialInput +{ +public: + uint8 UseConstant : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ConstantX; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConstantY; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FVector2MaterialInput; + +// ScriptStruct Engine.SplineMeshInstanceData +// 0x0060 (0x01D0 - 0x0170) +struct FSplineMeshInstanceData final : public FStaticMeshComponentInstanceData +{ +public: + struct FVector StartPos; // 0x0168(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndPos; // 0x0180(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartTangent; // 0x0198(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndTangent; // 0x01B0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C8[0x8]; // 0x01C8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FSplineMeshInstanceData; + +// ScriptStruct Engine.AlphaBlendArgs +// 0x0010 (0x0010 - 0x0000) +struct FAlphaBlendArgs final +{ +public: + class UCurveFloat* CustomCurve; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendTime; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAlphaBlendOption BlendOption; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAlphaBlendArgs; + +// ScriptStruct Engine.MaterialProxySettings +// 0x00A0 (0x00A0 - 0x0000) +struct FMaterialProxySettings final +{ +public: + ETextureSizingType TextureSizingType; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntPoint TextureSize; // 0x0004(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetTexelDensityPerMeter; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MeshMaxScreenSizePercent; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double MeshMinDrawDistance; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GutterSpace; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MetallicConstant; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RoughnessConstant; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnisotropyConstant; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpecularConstant; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OpacityConstant; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OpacityMaskConstant; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionConstant; // 0x003C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialMergeType MaterialMergeType; // 0x0040(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBlendMode BlendMode; // 0x0041(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowTwoSidedMaterial : 1; // 0x0042(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNormalMap : 1; // 0x0042(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTangentMap : 1; // 0x0042(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMetallicMap : 1; // 0x0042(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRoughnessMap : 1; // 0x0042(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAnisotropyMap : 1; // 0x0042(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSpecularMap : 1; // 0x0042(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmissiveMap : 1; // 0x0042(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOpacityMap : 1; // 0x0043(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOpacityMaskMap : 1; // 0x0043(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAmbientOcclusionMap : 1; // 0x0043(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + struct FIntPoint DiffuseTextureSize; // 0x0044(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint NormalTextureSize; // 0x004C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint TangentTextureSize; // 0x0054(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint MetallicTextureSize; // 0x005C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint RoughnessTextureSize; // 0x0064(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint AnisotropyTextureSize; // 0x006C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint SpecularTextureSize; // 0x0074(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint EmissiveTextureSize; // 0x007C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint OpacityTextureSize; // 0x0084(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint OpacityMaskTextureSize; // 0x008C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntPoint AmbientOcclusionTextureSize; // 0x0094(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9C[0x4]; // 0x009C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMaterialProxySettings; + +// ScriptStruct Engine.Vector4Distribution +// 0x0020 (0x0020 - 0x0000) +struct FVector4Distribution final +{ +public: + struct FDistributionLookupTable Table; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVector4Distribution; + +// ScriptStruct Engine.AutoCompleteNode +// 0x0028 (0x0028 - 0x0000) +struct FAutoCompleteNode final +{ +public: + int32 IndexChar; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AutoCompleteListIndices; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_18[0x10]; // 0x0018(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAutoCompleteNode; + +// ScriptStruct Engine.TimecodeCustomAttributeNameSettings +// 0x0038 (0x0038 - 0x0000) +struct FTimecodeCustomAttributeNameSettings final +{ +public: + class FName HourAttributeName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MinuteAttributeName; // 0x0008(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SecondAttributeName; // 0x0010(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FrameAttributeName; // 0x0018(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SubframeAttributeName; // 0x0020(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RateAttributeName; // 0x0028(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TakenameAttributeName; // 0x0030(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTimecodeCustomAttributeNameSettings; + +// ScriptStruct Engine.VectorDistribution +// 0x0020 (0x0020 - 0x0000) +struct FVectorDistribution final +{ +public: + struct FDistributionLookupTable Table; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorDistribution; + +// ScriptStruct Engine.PropertyAccessPath +// 0x0008 (0x0008 - 0x0000) +struct FPropertyAccessPath final +{ +public: + int32 PathSegmentStartIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 PathSegmentCount; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPropertyAccessPath; + +// ScriptStruct Engine.VectorMaterialInput +// 0x0010 (0x0038 - 0x0028) +struct FVectorMaterialInput final : public FMaterialInput +{ +public: + uint8 UseConstant : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector3f Constant; // 0x002C(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorMaterialInput; + +// ScriptStruct Engine.UserSceneTextureOverride +// 0x0010 (0x0010 - 0x0000) +struct FUserSceneTextureOverride final +{ +public: + class FName Key; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Value; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +////_ASSERTS_FUserSceneTextureOverride; + +// ScriptStruct Engine.VectorRK4SpringInterpolator +// 0x0008 (0x0008 - 0x0000) +struct FVectorRK4SpringInterpolator final +{ +public: + float StiffnessConstant; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DampeningRatio; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorRK4SpringInterpolator; + +// ScriptStruct Engine.MaterialParameterInfo +// 0x0010 (0x0010 - 0x0000) +struct FMaterialParameterInfo final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialParameterAssociation Association; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Index; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialParameterInfo; + +// ScriptStruct Engine.StaticParameterBase +// 0x0024 (0x0024 - 0x0000) +struct FStaticParameterBase +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverride; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGuid ExpressionGUID; // 0x0014(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticParameterBase; + +// ScriptStruct Engine.StaticSwitchParameter +// 0x0004 (0x0028 - 0x0024) +struct FStaticSwitchParameter final : public FStaticParameterBase +{ +public: + bool Value; // 0x0024(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticSwitchParameter; + +// ScriptStruct Engine.MaterialLayersFunctionsTree +// 0x0028 (0x0028 - 0x0000) +struct alignas(0x08) FMaterialLayersFunctionsTree final +{ +public: + uint8 Pad_0[0x28]; // 0x0000(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +////_ASSERTS_FMaterialLayersFunctionsTree; + +// ScriptStruct Engine.MaterialLayersFunctionsRuntimeData +// 0x0048 (0x0048 - 0x0000) +struct FMaterialLayersFunctionsRuntimeData +{ +public: + TArray Layers; // 0x0000(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray Blends; // 0x0010(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctionsTree Tree; // 0x0020(0x0028)(NativeAccessSpecifierPublic) +}; +////_ASSERTS_FMaterialLayersFunctionsRuntimeData; + +// ScriptStruct Engine.StaticParameterSetRuntimeData +// 0x0060 (0x0060 - 0x0000) +struct FStaticParameterSetRuntimeData +{ +public: + TArray StaticSwitchParameters; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctionsRuntimeData MaterialLayers; // 0x0010(0x0048)(NativeAccessSpecifierPublic) + uint8 bHasMaterialLayers : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x7]; // 0x0059(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticParameterSetRuntimeData; + +// ScriptStruct Engine.StaticParameterSet +// 0x0000 (0x0060 - 0x0060) +struct FStaticParameterSet final : public FStaticParameterSetRuntimeData +{ +}; +//_ASSERTS_FStaticParameterSet; + +// ScriptStruct Engine.OrbitOptions +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FOrbitOptions final +{ +public: + uint8 bProcessDuringSpawn : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bProcessDuringUpdate : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseEmitterTime : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FOrbitOptions; + +// ScriptStruct Engine.TextureSource +// 0x0070 (0x0070 - 0x0000) +struct alignas(0x08) FTextureSource final +{ +public: + uint8 Pad_0[0x70]; // 0x0000(0x0070)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTextureSource; + +// ScriptStruct Engine.AnimDataModelNotifPayload +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FAnimDataModelNotifPayload final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimDataModelNotifPayload; + +// ScriptStruct Engine.HLODISMComponentDesc +// 0x0030 (0x0030 - 0x0000) +struct FHLODISMComponentDesc final +{ +public: + class UStaticMesh* StaticMesh; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Instances; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray InstancesCustomPrimitiveData; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHLODISMComponentDesc; + +// ScriptStruct Engine.ChaosBreakEvent +// 0x0078 (0x0078 - 0x0000) +struct FChaosBreakEvent final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity; // 0x0020(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0038(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Extents; // 0x0050(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0068(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index; // 0x006C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFromCrumble; // 0x0070(0x0001)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FChaosBreakEvent; + +// ScriptStruct Engine.CollisionChaosEventBodyInfo +// 0x0070 (0x0070 - 0x0000) +struct FCollisionChaosEventBodyInfo final +{ +public: + struct FVector Velocity; // 0x0000(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector DeltaVelocity; // 0x0018(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0030(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0048(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicalMaterial* PhysMaterial; // 0x0050(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr Component; // 0x0058(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BodyIndex; // 0x0060(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0064(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCollisionChaosEventBodyInfo; + +// ScriptStruct Engine.CollisionChaosEvent +// 0x0130 (0x0130 - 0x0000) +struct FCollisionChaosEvent final +{ +public: + struct FVector Location; // 0x0000(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AccumulatedImpulse; // 0x0018(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Normal; // 0x0030(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PenetrationDepth; // 0x0048(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCollisionChaosEventBodyInfo Body1; // 0x0050(0x0070)(BlueprintVisible, BlueprintReadOnly, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FCollisionChaosEventBodyInfo Body2; // 0x00C0(0x0070)(BlueprintVisible, BlueprintReadOnly, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollisionChaosEvent; + +// ScriptStruct Engine.AnimBlueprintMutableData +// 0x0001 (0x0001 - 0x0000) +struct FAnimBlueprintMutableData +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimBlueprintMutableData; + +// ScriptStruct Engine.LODSoloTrack +// 0x0010 (0x0010 - 0x0000) +struct FLODSoloTrack final +{ +public: + TArray SoloEnableSetting; // 0x0000(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLODSoloTrack; + +// ScriptStruct Engine.MaterialCachedParameterEditorInfo +// 0x0030 (0x0030 - 0x0000) +struct FMaterialCachedParameterEditorInfo final +{ +public: + class FString Description; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SortPriority; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AssetIndex; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0020(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialCachedParameterEditorInfo; + +// ScriptStruct Engine.MaterialCachedParameterEditorEntry +// 0x0010 (0x0010 - 0x0000) +struct FMaterialCachedParameterEditorEntry final +{ +public: + TArray EditorInfo; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialCachedParameterEditorEntry; + +// ScriptStruct Engine.AnimBlueprintDebugData +// 0x0001 (0x0001 - 0x0000) +struct FAnimBlueprintDebugData final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimBlueprintDebugData; + +// ScriptStruct Engine.NetDriverDefinition +// 0x001C (0x001C - 0x0000) +struct FNetDriverDefinition final +{ +public: + class FName DefName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName DriverClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName DriverClassNameFallback; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxChannelsOverride; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetDriverDefinition; + +// ScriptStruct Engine.ChaosCrumblingEvent +// 0x00C0 (0x00C0 - 0x0000) +struct FChaosCrumblingEvent final +{ +public: + class UPrimitiveComponent* Component; // 0x0000(0x0008)(BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0008(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FQuat orientation; // 0x0020(0x0020)(BlueprintVisible, BlueprintReadOnly, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LinearVelocity; // 0x0040(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0058(0x0018)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Mass; // 0x0070(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0x4]; // 0x0074(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBox LocalBounds; // 0x0078(0x0038)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TArray Children; // 0x00B0(0x0010)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FChaosCrumblingEvent; + +// ScriptStruct Engine.AnimationAttributeIdentifier +// 0x0040 (0x0040 - 0x0000) +struct FAnimationAttributeIdentifier final +{ +public: + class FName Name; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FName BoneName; // 0x0008(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 BoneIndex; // 0x0010(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UScriptStruct* ScriptStruct; // 0x0018(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FSoftObjectPath ScriptStructPath; // 0x0020(0x0020)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FAnimationAttributeIdentifier; + +// ScriptStruct Engine.Vector_NetQuantize +// 0x0000 (0x0018 - 0x0018) +struct FVector_NetQuantize final : public FVector +{ +}; +//_ASSERTS_FVector_NetQuantize; + +// ScriptStruct Engine.Vector_NetQuantizeNormal +// 0x0000 (0x0018 - 0x0018) +struct FVector_NetQuantizeNormal final : public FVector +{ +}; +//_ASSERTS_FVector_NetQuantizeNormal; + +// ScriptStruct Engine.ActorInstanceHandle +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FActorInstanceHandle final +{ +public: + TWeakObjectPtr ReferenceObject; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_8[0x18]; // 0x0008(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActorInstanceHandle; + +// ScriptStruct Engine.HitResult +// 0x0100 (0x0100 - 0x0000) +struct FHitResult final +{ +public: + int32 FaceIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Distance; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize Location; // 0x0010(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize ImpactPoint; // 0x0028(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantizeNormal Normal; // 0x0040(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantizeNormal ImpactNormal; // 0x0058(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize TraceStart; // 0x0070(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize TraceEnd; // 0x0088(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PenetrationDepth; // 0x00A0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MyItem; // 0x00A4(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Item; // 0x00A8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ElementIndex; // 0x00AC(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bBlockingHit : 1; // 0x00AD(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStartPenetrating : 1; // 0x00AD(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_AE[0x2]; // 0x00AE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr PhysMaterial; // 0x00B0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FActorInstanceHandle HitObjectHandle; // 0x00B8(0x0020)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr Component; // 0x00D8(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E0[0x10]; // 0x00E0(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x00F0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MyBoneName; // 0x00F8(0x0008)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHitResult; + +// ScriptStruct Engine.PlatformInterfaceData +// 0x0030 (0x0030 - 0x0000) +struct FPlatformInterfaceData final +{ +public: + class FName DataName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPlatformInterfaceDataType Type; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 IntValue; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FloatValue; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString StringValue; // 0x0018(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* ObjectValue; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPlatformInterfaceData; + +// ScriptStruct Engine.PlatformInterfaceDelegateResult +// 0x0038 (0x0038 - 0x0000) +struct FPlatformInterfaceDelegateResult final +{ +public: + bool bSuccessful; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPlatformInterfaceData Data; // 0x0008(0x0030)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPlatformInterfaceDelegateResult; + +// ScriptStruct Engine.AnimCurveBase +// 0x000C (0x000C - 0x0000) +struct FAnimCurveBase +{ +public: + class FName CurveName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 CurveTypeFlags; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimCurveBase; + +// ScriptStruct Engine.VectorCurve +// 0x0184 (0x0190 - 0x000C) +struct FVectorCurve final : public FAnimCurveBase +{ +public: + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRichCurve FloatCurves[0x3]; // 0x0010(0x0080)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorCurve; + +// ScriptStruct Engine.TransformCurve +// 0x04B4 (0x04C0 - 0x000C) +struct FTransformCurve final : public FAnimCurveBase +{ +public: + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVectorCurve TranslationCurve; // 0x0010(0x0190)(NativeAccessSpecifierPublic) + struct FVectorCurve RotationCurve; // 0x01A0(0x0190)(NativeAccessSpecifierPublic) + struct FVectorCurve ScaleCurve; // 0x0330(0x0190)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTransformCurve; + +// ScriptStruct Engine.ActorLocatorFragment +// 0x0020 (0x0020 - 0x0000) +struct FActorLocatorFragment final +{ +public: + struct FSoftObjectPath Path; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActorLocatorFragment; + +// ScriptStruct Engine.BookmarkBaseJumpToSettings +// 0x0001 (0x0001 - 0x0000) +struct FBookmarkBaseJumpToSettings +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBookmarkBaseJumpToSettings; + +// ScriptStruct Engine.TimerHandle +// 0x0008 (0x0008 - 0x0000) +struct FTimerHandle final +{ +public: + uint64 Handle; // 0x0000(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FTimerHandle; + +// ScriptStruct Engine.StreamableTextureInstance +// 0x0048 (0x0048 - 0x0000) +struct alignas(0x08) FStreamableTextureInstance +{ +public: + uint8 Pad_0[0x48]; // 0x0000(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStreamableTextureInstance; + +// ScriptStruct Engine.ShaderCompilerCounters +// 0x00E8 (0x00E8 - 0x0000) +struct FShaderCompilerCounters final +{ +public: + double AccumulatedLocalWorkerIdleTime; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double TimesLocalWorkersWereIdle; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 JobsAssigned; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 JobsCompleted; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double AccumulatedPendingTime; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaxPendingTime; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double AccumulatedJobExecutionTime; // 0x0030(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaxJobExecutionTime; // 0x0038(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double AccumulatedJobLifeTime; // 0x0040(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaxJobLifeTime; // 0x0048(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double AccumulatedTaskSubmitJobs; // 0x0050(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double AccumulatedTaskSubmitJobsStall; // 0x0058(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 LocalJobBatchesSeen; // 0x0060(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 TotalJobsReportedInLocalJobBatches; // 0x0068(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 DistributedJobBatchesSeen; // 0x0070(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 TotalJobsReportedInDistributedJobBatches; // 0x0078(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinShaderCodeSize; // 0x0080(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxShaderCodeSize; // 0x0084(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 AccumulatedShaderCodeSize; // 0x0088(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 NumAccumulatedShaderCodes; // 0x0090(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ShaderMapDDCMisses; // 0x0098(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ShaderMapDDCHits; // 0x009C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 TotalCacheSearchAttempts; // 0x00A0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 TotalCacheHits; // 0x00A8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 TotalCacheDuplicates; // 0x00B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 TotalCacheDDCQueries; // 0x00B4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 TotalCacheDDCHits; // 0x00B8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint64 UniqueCacheInputHashes; // 0x00C0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 UniqueCacheOutputs; // 0x00C8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 CacheMemUsed; // 0x00D0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 CacheMemBudget; // 0x00D8(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxRemoteAgents; // 0x00E0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxActiveAgentCores; // 0x00E4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FShaderCompilerCounters; + +// ScriptStruct Engine.VectorSpringState +// 0x0038 (0x0038 - 0x0000) +struct alignas(0x08) FVectorSpringState final +{ +public: + uint8 Pad_0[0x38]; // 0x0000(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FVectorSpringState; + +// ScriptStruct Engine.SubtitleCue +// 0x0018 (0x0018 - 0x0000) +struct FSubtitleCue final +{ +public: + class FText Text; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + float Time; // 0x0010(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSubtitleCue; + +// ScriptStruct Engine.MovementProperties +// 0x0001 (0x0001 - 0x0000) +struct FMovementProperties +{ +public: + uint8 bCanCrouch : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanJump : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanWalk : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanSwim : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanFly : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) +}; +//_ASSERTS_FMovementProperties; + +// ScriptStruct Engine.NavAgentProperties +// 0x0037 (0x0038 - 0x0001) +struct FNavAgentProperties : public FMovementProperties +{ +public: + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AgentRadius; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AgentHeight; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AgentStepHeight; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NavWalkingSearchHeightScale; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSoftClassPath PreferredNavData; // 0x0018(0x0020)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNavAgentProperties; + +// ScriptStruct Engine.NavDataConfig +// 0x0050 (0x0088 - 0x0038) +struct FNavDataConfig final : public FNavAgentProperties +{ +public: + class FName Name; // 0x0038(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor Color; // 0x0040(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector DefaultQueryExtent; // 0x0048(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr NavDataClass; // 0x0060(0x0028)(Edit, BlueprintVisible, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FNavDataConfig; + +// ScriptStruct Engine.HLODBuildInputReferencedAssets +// 0x0050 (0x0050 - 0x0000) +struct FHLODBuildInputReferencedAssets final +{ +public: + TMap StaticMeshes; // 0x0000(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHLODBuildInputReferencedAssets; + +// ScriptStruct Engine.SlateModifierKeysState +// 0x0001 (0x0001 - 0x0000) +struct FSlateModifierKeysState final +{ +public: + uint8 ModifierKeysStateMask; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSlateModifierKeysState; + +// ScriptStruct Engine.SkelMeshSkinWeightInfo +// 0x003C (0x003C - 0x0000) +struct FSkelMeshSkinWeightInfo final +{ +public: + int32 Bones[0xC]; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Weights[0xC]; // 0x0030(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkelMeshSkinWeightInfo; + +// ScriptStruct Engine.BranchingPointNotifyPayload +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FBranchingPointNotifyPayload final +{ +public: + uint8 Pad_0[0x20]; // 0x0000(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBranchingPointNotifyPayload; + +// ScriptStruct Engine.VectorParameterValue +// 0x0030 (0x0030 - 0x0000) +struct FVectorParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ParameterValue; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0020(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorParameterValue; + +// ScriptStruct Engine.TickFunction +// 0x0028 (0x0028 - 0x0000) +struct alignas(0x08) FTickFunction +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + ETickingGroup TickGroup; // 0x0008(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETickingGroup EndTickGroup; // 0x0009(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTickEvenWhenPaused : 1; // 0x000A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCanEverTick : 1; // 0x000A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStartWithTickEnabled : 1; // 0x000A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowTickOnDedicatedServer : 1; // 0x000A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, DisableEditOnInstance, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float TickInterval; // 0x000C(0x0004)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0x18]; // 0x0010(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTickFunction; + +// ScriptStruct Engine.ActorComponentTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FActorComponentTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActorComponentTickFunction; + +// ScriptStruct Engine.GenericStruct +// 0x0004 (0x0004 - 0x0000) +struct FGenericStruct final +{ +public: + int32 Data; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGenericStruct; + +// ScriptStruct Engine.DebugDisplayProperty +// 0x0020 (0x0020 - 0x0000) +struct FDebugDisplayProperty final +{ +public: + class UObject* Obj; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf WithinClass; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDebugDisplayProperty; + +// ScriptStruct Engine.ParticleBurst +// 0x000C (0x000C - 0x0000) +struct FParticleBurst final +{ +public: + int32 Count; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CountLow; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParticleBurst; + +// ScriptStruct Engine.InterpControlPoint +// 0x0028 (0x0028 - 0x0000) +struct FInterpControlPoint final +{ +public: + struct FVector PositionControlPoint; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPositionIsRelative; // 0x0018(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0xF]; // 0x0019(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInterpControlPoint; + +// ScriptStruct Engine.HardwareDeviceIdentifier +// 0x0018 (0x0018 - 0x0000) +struct FHardwareDeviceIdentifier final +{ +public: + class FName InputClassName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName HardwareDeviceIdentifier; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EHardwareDevicePrimaryType PrimaryDeviceType; // 0x0010(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SupportedFeaturesMask; // 0x0014(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHardwareDeviceIdentifier; + +// ScriptStruct Engine.GridBlendSample +// 0x001C (0x001C - 0x0000) +struct FGridBlendSample final +{ +public: + struct FEditorElement GridElement; // 0x0000(0x0018)(NoDestructor, NativeAccessSpecifierPublic) + float BlendWeight; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGridBlendSample; + +// ScriptStruct Engine.NetworkPhysicsData +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FNetworkPhysicsData +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ServerFrame; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LocalFrame; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InputFrame; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNetworkPhysicsData; + +// ScriptStruct Engine.NetworkPhysicsDatas +// 0x0000 (0x0018 - 0x0018) +struct FNetworkPhysicsDatas final : public FNetworkPhysicsData +{ +}; +//_ASSERTS_FNetworkPhysicsDatas; + +// ScriptStruct Engine.BaseComponentReference +// 0x0020 (0x0020 - 0x0000) +struct FBaseComponentReference +{ +public: + class FName ComponentProperty; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString PathToComponent; // 0x0008(0x0010)(Edit, ZeroConstructor, DisableEditOnInstance, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBaseComponentReference; + +// ScriptStruct Engine.SoftComponentReference +// 0x0028 (0x0048 - 0x0020) +struct FSoftComponentReference final : public FBaseComponentReference +{ +public: + TSoftObjectPtr OtherActor; // 0x0020(0x0028)(Edit, BlueprintVisible, DisableEditOnTemplate, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoftComponentReference; + +// ScriptStruct Engine.CameraShakeDuration +// 0x0008 (0x0008 - 0x0000) +struct FCameraShakeDuration final +{ +public: + float duration; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + ECameraShakeDurationType Type; // 0x0004(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCameraShakeDuration; + +// ScriptStruct Engine.IntegerAnimationAttribute +// 0x0004 (0x0004 - 0x0000) +struct FIntegerAnimationAttribute +{ +public: + int32 Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FIntegerAnimationAttribute; + +// ScriptStruct Engine.EmptyPayload +// 0x0000 (0x0000 - 0x0000) +#pragma pack(push, 0x1) +struct alignas(0x01) FEmptyPayload +{ +}; +#pragma pack(pop) +//_ASSERTS_FEmptyPayload; + +// ScriptStruct Engine.SequenceLengthChangedPayload +// 0x0018 (0x0018 - 0x0000) +struct FSequenceLengthChangedPayload final : public FEmptyPayload +{ +public: + float PreviousLength; // 0x0000(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T0; // 0x0004(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float T1; // 0x0008(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber PreviousNumberOfFrames; // 0x000C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber Frame0; // 0x0010(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameNumber Frame1; // 0x0014(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSequenceLengthChangedPayload; + +// ScriptStruct Engine.DPMatchingIfCondition +// 0x0028 (0x0028 - 0x0000) +struct FDPMatchingIfCondition final +{ +public: + class FName Operator; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Arg1; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Arg2; // 0x0018(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingIfCondition; + +// ScriptStruct Engine.DPMatchingRulestructBase +// 0x0048 (0x0048 - 0x0000) +struct FDPMatchingRulestructBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FString RuleName; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray IfConditions; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FString AppendFragments; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SetUserVar; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructBase; + +// ScriptStruct Engine.DPMatchingRulestructA +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestructA final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructA; + +// ScriptStruct Engine.DPMatchingRulestructB +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestructB final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructB; + +// ScriptStruct Engine.DPMatchingRulestructC +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestructC final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructC; + +// ScriptStruct Engine.DPMatchingRulestructD +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestructD final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructD; + +// ScriptStruct Engine.DPMatchingRulestructE +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestructE final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestructE; + +// ScriptStruct Engine.ComponentReference +// 0x0008 (0x0028 - 0x0020) +struct FComponentReference final : public FBaseComponentReference +{ +public: + TWeakObjectPtr OtherActor; // 0x0020(0x0008)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FComponentReference; + +// ScriptStruct Engine.VirtualTextureSpacePoolConfig +// 0x0028 (0x0028 - 0x0000) +struct FVirtualTextureSpacePoolConfig final +{ +public: + TArray Formats; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + int32 MinTileSize; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTileSize; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeInMegabyte; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableResidencyMipMapBias; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowSizeScale; // 0x001D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinScaledSizeInMegabyte; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxScaledSizeInMegabyte; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVirtualTextureSpacePoolConfig; + +// ScriptStruct Engine.LatentActionInfo +// 0x0018 (0x0018 - 0x0000) +struct FLatentActionInfo final +{ +public: + int32 Linkage; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UUID; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ExecutionFunction; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* CallbackTarget; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLatentActionInfo; + +// ScriptStruct Engine.UserActivity +// 0x0018 (0x0018 - 0x0000) +struct FUserActivity final +{ +public: + class FString ActionName; // 0x0000(0x0010)(BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FUserActivity; + +// ScriptStruct Engine.AnimSubsystem +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FAnimSubsystem +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSubsystem; + +// ScriptStruct Engine.FloatAnimationAttribute +// 0x0004 (0x0004 - 0x0000) +struct FFloatAnimationAttribute +{ +public: + float Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFloatAnimationAttribute; + +// ScriptStruct Engine.SkeletalMeshOptimizationSettings +// 0x003C (0x003C - 0x0000) +struct FSkeletalMeshOptimizationSettings final +{ +public: + ESkeletalMeshTerminationCriterion TerminationCriterion; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float NumOfTrianglesPercentage; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NumOfVertPercentage; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxNumOfTriangles; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxNumOfVerts; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDeviationPercentage; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshOptimizationType ReductionMethod; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshOptimizationImportance SilhouetteImportance; // 0x0019(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshOptimizationImportance TextureImportance; // 0x001A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshOptimizationImportance ShadingImportance; // 0x001B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshOptimizationImportance SkinningImportance; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRemapMorphTargets : 1; // 0x001D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecalcNormals : 1; // 0x001D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float WeldingThreshold; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalsThreshold; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxBonesPerVertex; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnforceBoneBoundaries : 1; // 0x002C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMergeCoincidentVertBones : 1; // 0x002C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumeImportance; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockEdges : 1; // 0x0034(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockColorBounaries : 1; // 0x0034(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImproveTrianglesForCloth : 1; // 0x0034(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 BaseLOD; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshOptimizationSettings; + +// ScriptStruct Engine.SoundClassEditorData +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FSoundClassEditorData final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundClassEditorData; + +// ScriptStruct Engine.RuntimePartitionHLODSetup +// 0x0018 (0x0018 - 0x0000) +struct FRuntimePartitionHLODSetup final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsSpatiallyLoaded; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class URuntimePartition* PartitionLayer; // 0x0010(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimePartitionHLODSetup; + +// ScriptStruct Engine.StringAnimationAttribute +// 0x0010 (0x0010 - 0x0000) +struct FStringAnimationAttribute final +{ +public: + class FString Value; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStringAnimationAttribute; + +// ScriptStruct Engine.DataTableRowHandle +// 0x0010 (0x0010 - 0x0000) +struct FDataTableRowHandle final +{ +public: + class UDataTable* DataTable; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDataTableRowHandle; + +// ScriptStruct Engine.WorldPartitionRuntimeContainerInstance +// 0x0018 (0x0018 - 0x0000) +struct FWorldPartitionRuntimeContainerInstance final +{ +public: + struct FGuid ActorGuid; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName ContainerPackage; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FWorldPartitionRuntimeContainerInstance; + +// ScriptStruct Engine.WorldPartitionRuntimeContainer +// 0x0050 (0x0050 - 0x0000) +struct FWorldPartitionRuntimeContainer final +{ +public: + TMap ContainerInstances; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FWorldPartitionRuntimeContainer; + +// ScriptStruct Engine.WorldPartitionRuntimeContainerResolver +// 0x0058 (0x0058 - 0x0000) +struct FWorldPartitionRuntimeContainerResolver final +{ +public: + TMap Containers; // 0x0000(0x0050)(NativeAccessSpecifierPrivate) + class FName MainContainerPackage; // 0x0050(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FWorldPartitionRuntimeContainerResolver; + +// ScriptStruct Engine.SwitchCustomInput +// 0x0030 (0x0030 - 0x0000) +struct FSwitchCustomInput final +{ +public: + class FName InputName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput Input; // 0x0008(0x0028)(NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSwitchCustomInput; + +// ScriptStruct Engine.BPInterfaceDescription +// 0x0018 (0x0018 - 0x0000) +struct FBPInterfaceDescription final +{ +public: + TSubclassOf Interface; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Graphs; // 0x0008(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBPInterfaceDescription; + +// ScriptStruct Engine.TransformAnimationAttribute +// 0x0060 (0x0060 - 0x0000) +struct FTransformAnimationAttribute +{ +public: + struct FTransform Value; // 0x0000(0x0060)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTransformAnimationAttribute; + +// ScriptStruct Engine.ActivatedCells +// 0x00A0 (0x00A0 - 0x0000) +struct FActivatedCells final +{ +public: + TSet Cells; // 0x0000(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_50[0x50]; // 0x0050(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActivatedCells; + +// ScriptStruct Engine.WorldPartitionUpdateStreamingCurrentState +// 0x0100 (0x0100 - 0x0000) +struct FWorldPartitionUpdateStreamingCurrentState final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TSet LoadedCells; // 0x0010(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPublic) + struct FActivatedCells ActivatedCells; // 0x0060(0x00A0)(Transient, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWorldPartitionUpdateStreamingCurrentState; + +// ScriptStruct Engine.VectorAnimationAttribute +// 0x0018 (0x0018 - 0x0000) +struct FVectorAnimationAttribute +{ +public: + struct FVector Value; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVectorAnimationAttribute; + +// ScriptStruct Engine.CompressedRichCurve +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FCompressedRichCurve final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCompressedRichCurve; + +// ScriptStruct Engine.BodyInstance +// 0x016C (0x0178 - 0x000C) +struct FBodyInstance final : public FBodyInstanceCore +{ +public: + uint8 Pad_C[0x6]; // 0x000C(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 PositionSolverIterationCount; // 0x0012(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 VelocitySolverIterationCount; // 0x0013(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ProjectionSolverIterationCount; // 0x0014(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel ObjectType; // 0x0015(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_16[0x1]; // 0x0016(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ECollisionEnabled CollisionEnabled; // 0x0017(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_18[0x21]; // 0x0018(0x0021)(Fixing Size After Last Property [ Dumper-7 ]) + ESleepFamily SleepFamily; // 0x0039(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDOFMode DOFMode; // 0x003A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseCCD : 1; // 0x003B(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_3B_1 : 2; // 0x003B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bUseMACD : 1; // 0x003B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bIgnoreAnalyticCollisions : 1; // 0x003B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bNotifyRigidBodyCollision : 1; // 0x003B(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_3B_6 : 1; // 0x003B(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bSmoothEdgeCollisions : 1; // 0x003B(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockTranslation : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockRotation : 1; // 0x003C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockXTranslation : 1; // 0x003C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockYTranslation : 1; // 0x003C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockZTranslation : 1; // 0x003C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockXRotation : 1; // 0x003C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockYRotation : 1; // 0x003C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLockZRotation : 1; // 0x003C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideMaxAngularVelocity : 1; // 0x003D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_3D_1 : 2; // 0x003D(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bOverrideMaxDepenetrationVelocity : 1; // 0x003D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bOverrideWalkableSlopeOnInstance : 1; // 0x003D(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bInterpolateWhenSubStepping : 1; // 0x003D(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 BitPad_3D_6 : 1; // 0x003D(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bInertiaConditioning : 1; // 0x003D(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bOneWayInteraction : 1; // 0x003E(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bOverrideSolverAsyncDeltaTime : 1; // 0x003E(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3F[0x1]; // 0x003F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float SolverAsyncDeltaTime; // 0x0040(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName CollisionProfileName; // 0x0044(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_4C[0x1C]; // 0x004C(0x001C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCollisionResponse CollisionResponses; // 0x0068(0x0030)(Edit, NativeAccessSpecifierPrivate) + float MaxDepenetrationVelocity; // 0x0098(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float MassInKgOverride; // 0x009C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_A0[0x8]; // 0x00A0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float LinearDamping; // 0x00A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularDamping; // 0x00AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CustomDOFPlaneNormal; // 0x00B0(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector COMNudge; // 0x00C8(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MassScale; // 0x00E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 GravityGroupIndex; // 0x00E4(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E5[0x3]; // 0x00E5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector InertiaTensorScale; // 0x00E8(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_100[0x10]; // 0x0100(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + struct FWalkableSlopeOverride WalkableSlopeOverride; // 0x0110(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, NativeAccessSpecifierProtected) + class UPhysicalMaterial* PhysMaterialOverride; // 0x0120(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float MaxAngularVelocity; // 0x0128(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CustomSleepThresholdMultiplier; // 0x012C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StabilizationThresholdMultiplier; // 0x0130(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PhysicsBlendWeight; // 0x0134(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_138[0x40]; // 0x0138(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBodyInstance; + +// ScriptStruct Engine.DepthFieldGlowInfo +// 0x0038 (0x0038 - 0x0000) +struct FDepthFieldGlowInfo final +{ +public: + uint8 bEnableGlow : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor GlowColor; // 0x0004(0x0010)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D GlowOuterRadius; // 0x0018(0x0010)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D GlowInnerRadius; // 0x0028(0x0010)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDepthFieldGlowInfo; + +// ScriptStruct Engine.FontRenderInfo +// 0x0040 (0x0040 - 0x0000) +struct FFontRenderInfo final +{ +public: + uint8 bClipText : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableShadow : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FDepthFieldGlowInfo GlowInfo; // 0x0008(0x0038)(BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFontRenderInfo; + +// ScriptStruct Engine.RuntimeVectorCurve +// 0x0188 (0x0188 - 0x0000) +struct FRuntimeVectorCurve final +{ +public: + struct FRichCurve VectorCurves[0x3]; // 0x0000(0x0080)(NativeAccessSpecifierPublic) + class UCurveVector* ExternalCurve; // 0x0180(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimeVectorCurve; + +// ScriptStruct Engine.AnimTickRecord +// 0x0078 (0x0078 - 0x0000) +struct FAnimTickRecord final +{ +public: + class UAnimationAsset* SourceAsset; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x70]; // 0x0008(0x0070)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimTickRecord; + +// ScriptStruct Engine.NetworkPhysicsSettingsDefaultReplication +// 0x0020 (0x0020 - 0x0000) +struct FNetworkPhysicsSettingsDefaultReplication final +{ +public: + uint8 bOverrideMaxLinearHardSnapDistance : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxLinearHardSnapDistance; // 0x0004(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideDefaultLegacyHardsnapInPT : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bHardsnapInPhysicsThread; // 0x000C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCorrectConnectedBodies : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCorrectConnectedBodies; // 0x0014(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCorrectConnectedBodiesFriction : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCorrectConnectedBodiesFriction; // 0x001C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNetworkPhysicsSettingsDefaultReplication; + +// ScriptStruct Engine.LightingChannels +// 0x0001 (0x0001 - 0x0000) +struct FLightingChannels final +{ +public: + uint8 bChannel0 : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bChannel1 : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bChannel2 : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) +}; +//_ASSERTS_FLightingChannels; + +// ScriptStruct Engine.NetworkPhysicsRewindDataProxy +// 0x0010 (0x0010 - 0x0000) +struct FNetworkPhysicsRewindDataProxy +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UNetworkPhysicsComponent* Owner; // 0x0008(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetworkPhysicsRewindDataProxy; + +// ScriptStruct Engine.NetworkPhysicsRewindDataInputProxy +// 0x0000 (0x0010 - 0x0010) +struct FNetworkPhysicsRewindDataInputProxy final : public FNetworkPhysicsRewindDataProxy +{ +}; +//_ASSERTS_FNetworkPhysicsRewindDataInputProxy; + +// ScriptStruct Engine.BlendSampleData +// 0x0060 (0x0060 - 0x0000) +struct FBlendSampleData final +{ +public: + int32 SampleDataIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimSequence* Animation; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TotalWeight; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WeightRate; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreviousTime; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SamplePlayRate; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x3C]; // 0x0024(0x003C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendSampleData; + +// ScriptStruct Engine.ShaderCompilerSinglePermutationStat +// 0x0020 (0x0020 - 0x0000) +struct FShaderCompilerSinglePermutationStat final +{ +public: + class FString PermutationString; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Compiled; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Cooked; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 CompiledDouble; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 CookedDouble; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FShaderCompilerSinglePermutationStat; + +// ScriptStruct Engine.PerQualityLevelInt +// 0x0068 (0x0068 - 0x0000) +struct FPerQualityLevelInt final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Default; // 0x0010(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TMap PerQuality; // 0x0018(0x0050)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPerQualityLevelInt; + +// ScriptStruct Engine.AnimNode_Root +// 0x0010 (0x0020 - 0x0010) +struct FAnimNode_Root : public FAnimNode_Base +{ +public: + struct FPoseLink Result; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNode_Root; + +// ScriptStruct Engine.PerQualityLevelFloat +// 0x0068 (0x0068 - 0x0000) +struct FPerQualityLevelFloat final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + float Default; // 0x0010(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TMap PerQuality; // 0x0018(0x0050)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPerQualityLevelFloat; + +// ScriptStruct Engine.AnimSubsystemInstance +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FAnimSubsystemInstance +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSubsystemInstance; + +// ScriptStruct Engine.AnimationGroupReference +// 0x0010 (0x0010 - 0x0000) +struct FAnimationGroupReference final +{ +public: + EAnimSyncMethod Method; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName GroupName; // 0x0004(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimGroupRole GroupRole; // 0x000C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationGroupReference; + +// ScriptStruct Engine.NeuralProfileStruct +// 0x0048 (0x0048 - 0x0000) +struct FNeuralProfileStruct final +{ +public: + ENeuralProfileFormat InputFormat; // 0x0000(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENeuralProfileFormat OutputFormat; // 0x0001(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENeuralProfileRuntimeType RuntimeType; // 0x0002(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x5]; // 0x0003(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* NNEModelData; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector4 InputDimension; // 0x0010(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FIntVector4 OutputDimension; // 0x0020(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BatchSizeOverride; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENeuralModelTileType TileSize; // 0x0034(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FIntPoint TileOverlap; // 0x0038(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETileOverlapResolveType TileOverlapResolveType; // 0x0040(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNeuralProfileStruct; + +// ScriptStruct Engine.KeyHandleLookupTable +// 0x0088 (0x0088 - 0x0000) +struct alignas(0x08) FKeyHandleLookupTable +{ +public: + uint8 Pad_0[0x88]; // 0x0000(0x0088)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKeyHandleLookupTable; + +// ScriptStruct Engine.AnimNode_CustomProperty +// 0x0048 (0x0058 - 0x0010) +struct FAnimNode_CustomProperty : public FAnimNode_Base +{ +public: + TArray SourcePropertyNames; // 0x0010(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + TArray DestPropertyNames; // 0x0020(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) + class UObject* TargetInstance; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_38[0x20]; // 0x0038(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_CustomProperty; + +// ScriptStruct Engine.MontageBlendSettings +// 0x0020 (0x0020 - 0x0000) +struct FMontageBlendSettings final +{ +public: + class UBlendProfile* BlendProfile; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAlphaBlendArgs Blend; // 0x0008(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + EMontageBlendMode BlendMode; // 0x0018(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMontageBlendSettings; + +// ScriptStruct Engine.FunctionExpressionOutput +// 0x0038 (0x0038 - 0x0000) +struct FFunctionExpressionOutput final +{ +public: + class UMaterialExpressionFunctionOutput* ExpressionOutput; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionOutputId; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionOutput Output; // 0x0018(0x001C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FFunctionExpressionOutput; + +// ScriptStruct Engine.LevelNameAndTime +// 0x0018 (0x0018 - 0x0000) +struct FLevelNameAndTime final +{ +public: + class FString LevelName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 LevelChangeTimeInMS; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLevelNameAndTime; + +// ScriptStruct Engine.EncounteredStateMachineStack +// 0x0030 (0x0030 - 0x0000) +struct alignas(0x08) FEncounteredStateMachineStack final +{ +public: + uint8 Pad_0[0x30]; // 0x0000(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEncounteredStateMachineStack; + +// ScriptStruct Engine.ComponentSpacePoseLink +// 0x0000 (0x0010 - 0x0010) +struct FComponentSpacePoseLink final : public FPoseLinkBase +{ +}; +//_ASSERTS_FComponentSpacePoseLink; + +// ScriptStruct Engine.ParticleSysParam +// 0x00E0 (0x00E0 - 0x0000) +struct alignas(0x10) FParticleSysParam final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleSysParamType ParamType; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Scalar; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scalar_Low; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Vector; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Vector_Low; // 0x0030(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor Color; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* Actor; // 0x0050(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0058(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_60[0x80]; // 0x0060(0x0080)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParticleSysParam; + +// ScriptStruct Engine.AnimationStateBase +// 0x0008 (0x0008 - 0x0000) +struct FAnimationStateBase +{ +public: + class FName StateName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationStateBase; + +// ScriptStruct Engine.BoneReference +// 0x0010 (0x0010 - 0x0000) +struct FBoneReference final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBoneReference; + +// ScriptStruct Engine.AnimNodeReference +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FAnimNodeReference +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNodeReference; + +// ScriptStruct Engine.AnimNode_AssetPlayerRelevancyBase +// 0x0000 (0x0010 - 0x0010) +struct FAnimNode_AssetPlayerRelevancyBase : public FAnimNode_Base +{ +}; +//_ASSERTS_FAnimNode_AssetPlayerRelevancyBase; + +// ScriptStruct Engine.AnimNode_AssetPlayerBase +// 0x0028 (0x0038 - 0x0010) +struct FAnimNode_AssetPlayerBase : public FAnimNode_AssetPlayerRelevancyBase +{ +public: + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendWeight; // 0x0020(0x0004)(BlueprintVisible, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float InternalTimeAccumulator; // 0x0024(0x0004)(BlueprintVisible, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_AssetPlayerBase; + +// ScriptStruct Engine.AnimNode_LinkedInputPose +// 0x00A8 (0x00B8 - 0x0010) +struct FAnimNode_LinkedInputPose final : public FAnimNode_Base +{ +public: + class FName Name; // 0x0010(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Graph; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPoseLink InputPose; // 0x0020(0x0010)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_30[0x78]; // 0x0030(0x0078)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 BitPad_A8_0 : 1; // 0x00A8(0x0001)(Fixing Bit-Field Size Between Bits [ Dumper-7 ]) + uint8 bIsOutputLinked : 1; // 0x00A8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A9[0xF]; // 0x00A9(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_LinkedInputPose; + +// ScriptStruct Engine.ActorInstanceData +// 0x0008 (0x0060 - 0x0058) +struct FActorInstanceData final : public FInstanceCacheDataBase +{ +public: + TSubclassOf ActorClass; // 0x0058(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FActorInstanceData; + +// ScriptStruct Engine.AnimNode_ConvertLocalToComponentSpace +// 0x0010 (0x0020 - 0x0010) +struct FAnimNode_ConvertLocalToComponentSpace final : public FAnimNode_Base +{ +public: + struct FPoseLink LocalPose; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNode_ConvertLocalToComponentSpace; + +// ScriptStruct Engine.BranchFilter +// 0x000C (0x000C - 0x0000) +struct FBranchFilter final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BlendDepth; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBranchFilter; + +// ScriptStruct Engine.InputBlendPose +// 0x0010 (0x0010 - 0x0000) +struct FInputBlendPose final +{ +public: + TArray BranchFilters; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputBlendPose; + +// ScriptStruct Engine.SoundWaveCuePoint +// 0x0028 (0x0028 - 0x0000) +struct FSoundWaveCuePoint final +{ +public: + int32 CuePointID; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Label; // 0x0008(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FramePosition; // 0x0018(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FrameLength; // 0x001C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsLoopRegion; // 0x0020(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundWaveCuePoint; + +// ScriptStruct Engine.TentDistribution +// 0x000C (0x000C - 0x0000) +struct FTentDistribution final +{ +public: + float TipAltitude; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TipValue; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Width; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTentDistribution; + +// ScriptStruct Engine.QuartzQuantizationBoundary +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FQuartzQuantizationBoundary final +{ +public: + EQuartzCommandQuantization Quantization; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Multiplier; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EQuarztQuantizationReference CountingReferencePoint; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFireOnClockStart; // 0x0009(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCancelCommandIfClockIsNotRunning; // 0x000A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResetClockOnQueued; // 0x000B(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResumeClockOnQueued; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x13]; // 0x000D(0x0013)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FQuartzQuantizationBoundary; + +// ScriptStruct Engine.PoseSnapshot +// 0x0038 (0x0038 - 0x0000) +struct FPoseSnapshot final +{ +public: + TArray LocalTransforms; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray BoneNames; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + class FName SkeletalMeshName; // 0x0020(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SnapshotName; // 0x0028(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsValid; // 0x0030(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPoseSnapshot; + +// ScriptStruct Engine.OverlapResult +// 0x0048 (0x0048 - 0x0000) +struct FOverlapResult final +{ +public: + struct FActorInstanceHandle OverlapObjectHandle; // 0x0000(0x0020)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr Component; // 0x0020(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bBlockingHit : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FOverlapResult; + +// ScriptStruct Engine.InputAxisKeyMapping +// 0x0028 (0x0028 - 0x0000) +struct FInputAxisKeyMapping final +{ +public: + class FName AxisName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Scale; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FKey Key; // 0x0010(0x0018)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputAxisKeyMapping; + +// ScriptStruct Engine.InertializationRequest +// 0x0050 (0x0050 - 0x0000) +struct FInertializationRequest final +{ +public: + float duration; // 0x0000(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* BlendProfile; // 0x0008(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseBlendMode; // 0x0010(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAlphaBlendOption BlendMode; // 0x0011(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* CustomBlendCurve; // 0x0018(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText Description; // 0x0020(0x0010)(Transient, Deprecated, NativeAccessSpecifierPublic) + class FString DescriptionString; // 0x0030(0x0010)(ZeroConstructor, Transient, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NodeID; // 0x0040(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* AnimInstance; // 0x0048(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInertializationRequest; + +// ScriptStruct Engine.AnimInstanceProxy +// 0x07A0 (0x07A0 - 0x0000) +#pragma pack(push, 0x1) +struct alignas(0x10) FAnimInstanceProxy +{ +public: + uint8 Pad_0[0x6D0]; // 0x0000(0x06D0)(Fixing Size After Last Property [ Dumper-7 ]) + TMap SlotGroupInertializationRequestDataMap; // 0x06D0(0x0050)(Transient, NativeAccessSpecifierPrivate) + uint8 Pad_720[0x78]; // 0x0720(0x0078)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +#pragma pack(pop) +//_ASSERTS_FAnimInstanceProxy; + +// ScriptStruct Engine.RootMotionSourceStatus +// 0x0001 (0x0001 - 0x0000) +struct FRootMotionSourceStatus final +{ +public: + uint8 Flags; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSourceStatus; + +// ScriptStruct Engine.RootMotionSourceSettings +// 0x0001 (0x0001 - 0x0000) +struct FRootMotionSourceSettings final +{ +public: + uint8 Flags; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSourceSettings; + +// ScriptStruct Engine.RootMotionMovementParams +// 0x0070 (0x0070 - 0x0000) +struct FRootMotionMovementParams final +{ +public: + bool bHasRootMotion; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendWeight; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform RootMotionTransform; // 0x0010(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FRootMotionMovementParams; + +// ScriptStruct Engine.RootMotionFinishVelocitySettings +// 0x0020 (0x0020 - 0x0000) +struct FRootMotionFinishVelocitySettings final +{ +public: + ERootMotionFinishVelocityMode Mode; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ClampVelocity; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SetVelocity; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionFinishVelocitySettings; + +// ScriptStruct Engine.RootMotionSource +// 0x00C0 (0x00C0 - 0x0000) +struct FRootMotionSource +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint16 Priority; // 0x0008(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 LocalID; // 0x000A(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName InstanceName; // 0x000C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartTime; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CurrentTime; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreviousTime; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRootMotionSourceStatus Status; // 0x0024(0x0001)(NoDestructor, NativeAccessSpecifierPublic) + struct FRootMotionSourceSettings Settings; // 0x0025(0x0001)(RepSkip, NoDestructor, NativeAccessSpecifierPublic) + ERootMotionAccumulateMode AccumulateMode; // 0x0026(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInLocalSpace; // 0x0027(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRootMotionMovementParams RootMotionParams; // 0x0030(0x0070)(RepSkip, NoDestructor, NativeAccessSpecifierPublic) + struct FRootMotionFinishVelocitySettings FinishVelocityParams; // 0x00A0(0x0020)(RepSkip, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSource; + +// ScriptStruct Engine.RootMotionSource_MoveToForce +// 0x0040 (0x0100 - 0x00C0) +struct FRootMotionSource_MoveToForce final : public FRootMotionSource +{ +public: + struct FVector StartLocation; // 0x00C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetLocation; // 0x00D8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRestrictSpeedToExpected; // 0x00F0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F1[0x7]; // 0x00F1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveVector* PathOffsetCurve; // 0x00F8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSource_MoveToForce; + +// ScriptStruct Engine.KSkinnedLevelSetElem +// 0x0008 (0x0038 - 0x0030) +struct FKSkinnedLevelSetElem final : public FKShapeElem +{ +public: + uint8 Pad_30[0x8]; // 0x0030(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKSkinnedLevelSetElem; + +// ScriptStruct Engine.StartPhysicsTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FStartPhysicsTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStartPhysicsTickFunction; + +// ScriptStruct Engine.SocketReference +// 0x0070 (0x0070 - 0x0000) +struct alignas(0x10) FSocketReference final +{ +public: + uint8 Pad_0[0x60]; // 0x0000(0x0060)(Fixing Size After Last Property [ Dumper-7 ]) + class FName SocketName; // 0x0060(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_68[0x8]; // 0x0068(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSocketReference; + +// ScriptStruct Engine.BoneSocketTarget +// 0x0090 (0x0090 - 0x0000) +struct FBoneSocketTarget final +{ +public: + bool bUseSocket; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBoneReference BoneReference; // 0x0004(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_14[0xC]; // 0x0014(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSocketReference SocketReference; // 0x0020(0x0070)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBoneSocketTarget; + +// ScriptStruct Engine.ConstraintInstanceBase +// 0x0048 (0x0048 - 0x0000) +struct alignas(0x08) FConstraintInstanceBase +{ +public: + uint8 Pad_0[0x48]; // 0x0000(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConstraintInstanceBase; + +// ScriptStruct Engine.NavMovementProperties +// 0x0008 (0x0008 - 0x0000) +struct FNavMovementProperties final +{ +public: + float FixedPathBrakingDistance; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateNavAgentWithOwnersCollision; // 0x0004(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseAccelerationForPaths; // 0x0005(0x0001)(Edit, ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseFixedBrakingDistanceForPaths; // 0x0006(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStopMovementAbortPaths; // 0x0007(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNavMovementProperties; + +// ScriptStruct Engine.AnimationTrackPayload +// 0x0008 (0x0008 - 0x0000) +struct FAnimationTrackPayload : public FEmptyPayload +{ +public: + class FName Name; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationTrackPayload; + +// ScriptStruct Engine.AnimationTrackAddedPayload +// 0x0004 (0x000C - 0x0008) +struct FAnimationTrackAddedPayload final : public FAnimationTrackPayload +{ +public: + int32 TrackIndex; // 0x0008(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationTrackAddedPayload; + +// ScriptStruct Engine.AnimNode_StateMachine +// 0x00B8 (0x00C8 - 0x0010) +struct FAnimNode_StateMachine final : public FAnimNode_Base +{ +public: + int32 StateMachineIndexInClass; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTransitionsPerFrame; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxTransitionsRequests; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipFirstUpdateTransition; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bReinitializeOnBecomingRelevant; // 0x001D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCreateNotifyMetaData; // 0x001E(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowConduitEntryStates; // 0x001F(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_20[0xA8]; // 0x0020(0x00A8)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_StateMachine; + +// ScriptStruct Engine.SpatialHashStreamingGridLayerCell +// 0x0010 (0x0010 - 0x0000) +struct FSpatialHashStreamingGridLayerCell final +{ +public: + TArray GridCells; // 0x0000(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSpatialHashStreamingGridLayerCell; + +// ScriptStruct Engine.SpatialHashStreamingGridLevel +// 0x0060 (0x0060 - 0x0000) +struct FSpatialHashStreamingGridLevel final +{ +public: + TArray LayerCells; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TMap LayerCellsMapping; // 0x0010(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSpatialHashStreamingGridLevel; + +// ScriptStruct Engine.SpatialHashSettings +// 0x0002 (0x0002 - 0x0000) +struct FSpatialHashSettings final +{ +public: + bool bUseAlignedGridLevels; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSnapNonAlignedGridLevelsToLowerLevels; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSpatialHashSettings; + +// ScriptStruct Engine.SpatialHashStreamingGrid +// 0x00B0 (0x00B0 - 0x0000) +struct FSpatialHashStreamingGrid final +{ +public: + class FName GridName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Origin; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CellSize; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LoadingRange; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBlockOnSlowStreaming; // 0x0028(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor DebugColor; // 0x002C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray GridLevels; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FBox WorldBounds; // 0x0050(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + bool bClientOnlyVisible; // 0x0088(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_89[0x3]; // 0x0089(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 GridIndex; // 0x008C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSpatialHashSettings Settings; // 0x0090(0x0002)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_92[0xE]; // 0x0092(0x000E)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InjectedGridLevels; // 0x00A0(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FSpatialHashStreamingGrid; + +// ScriptStruct Engine.WorldPartitionRuntimeCellObjectMapping +// 0x0001 (0x0001 - 0x0000) +struct FWorldPartitionRuntimeCellObjectMapping final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionRuntimeCellObjectMapping; + +// ScriptStruct Engine.RepMovement +// 0x0088 (0x0088 - 0x0000) +struct FRepMovement final +{ +public: + struct FVector LinearVelocity; // 0x0000(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AngularVelocity; // 0x0018(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Location; // 0x0030(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Acceleration; // 0x0060(0x0018)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSimulatedPhysicSleep : 1; // 0x0078(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRepPhysics : 1; // 0x0078(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRepAcceleration : 1; // 0x0078(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_79[0x3]; // 0x0079(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ServerFrame; // 0x007C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ServerPhysicsHandle; // 0x0080(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVectorQuantization LocationQuantizationLevel; // 0x0084(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVectorQuantization VelocityQuantizationLevel; // 0x0085(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERotatorQuantization RotationQuantizationLevel; // 0x0086(0x0001)(Edit, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_87[0x1]; // 0x0087(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRepMovement; + +// ScriptStruct Engine.AnimationCurveIdentifier +// 0x000C (0x000C - 0x0000) +struct FAnimationCurveIdentifier final +{ +public: + class FName CurveName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERawCurveTrackTypes CurveType; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETransformCurveChannel Channel; // 0x0009(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVectorCurveChannel Axis; // 0x000A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationCurveIdentifier; + +// ScriptStruct Engine.CurvePayload +// 0x000C (0x000C - 0x0000) +struct FCurvePayload : public FEmptyPayload +{ +public: + struct FAnimationCurveIdentifier Identifier; // 0x0000(0x000C)(BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurvePayload; + +// ScriptStruct Engine.CurveScaledPayload +// 0x0008 (0x0014 - 0x000C) +struct FCurveScaledPayload final : public FCurvePayload +{ +public: + float Factor; // 0x000C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Origin; // 0x0010(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveScaledPayload; + +// ScriptStruct Engine.Vector_NetQuantize100 +// 0x0000 (0x0018 - 0x0018) +struct FVector_NetQuantize100 final : public FVector +{ +}; +//_ASSERTS_FVector_NetQuantize100; + +// ScriptStruct Engine.RepAttachment +// 0x0060 (0x0060 - 0x0000) +struct FRepAttachment final +{ +public: + class AActor* AttachParent; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 LocationOffset; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 RelativeScale3D; // 0x0020(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator RotationOffset; // 0x0038(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FName AttachSocket; // 0x0050(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USceneComponent* AttachComponent; // 0x0058(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRepAttachment; + +// ScriptStruct Engine.CameraShakePatternStopParams +// 0x0001 (0x0001 - 0x0000) +struct FCameraShakePatternStopParams final +{ +public: + bool bImmediately; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraShakePatternStopParams; + +// ScriptStruct Engine.ConstraintBaseParams +// 0x0014 (0x0014 - 0x0000) +struct FConstraintBaseParams +{ +public: + float Stiffness; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Damping; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Restitution; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactDistance; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSoftConstraint : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConstraintBaseParams; + +// ScriptStruct Engine.TwistConstraint +// 0x0008 (0x001C - 0x0014) +struct FTwistConstraint final : public FConstraintBaseParams +{ +public: + float TwistLimitDegrees; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion TwistMotion; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTwistConstraint; + +// ScriptStruct Engine.ActorTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FActorTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActorTickFunction; + +// ScriptStruct Engine.ActorContainerID +// 0x0010 (0x0010 - 0x0000) +struct FActorContainerID final +{ +public: + struct FGuid Guid; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FActorContainerID; + +// ScriptStruct Engine.WorldPartitionResolveData +// 0x0020 (0x0020 - 0x0000) +struct FWorldPartitionResolveData final +{ +public: + struct FActorContainerID ContainerID; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath SourceWorldAssetPath; // 0x0010(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWorldPartitionResolveData; + +// ScriptStruct Engine.SoundSourceBusSendInfo +// 0x00B8 (0x00B8 - 0x0000) +struct FSoundSourceBusSendInfo final +{ +public: + ESourceBusSendLevelControlMethod SourceBusSendLevelControlMethod; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundSourceBus* SoundSourceBus; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAudioBus* AudioBus; // 0x0010(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SendLevel; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSendLevel; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSendLevel; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSendDistance; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSendDistance; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRuntimeFloatCurve CustomSendLevelCurve; // 0x0030(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundSourceBusSendInfo; + +// ScriptStruct Engine.LocationBoneSocketInfo +// 0x0020 (0x0020 - 0x0000) +struct FLocationBoneSocketInfo final +{ +public: + class FName BoneSocketName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Offset; // 0x0008(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLocationBoneSocketInfo; + +// ScriptStruct Engine.LensImperfectionSettings +// 0x0020 (0x0020 - 0x0000) +struct FLensImperfectionSettings final +{ +public: + class UTexture* DirtMask; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DirtMaskIntensity; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor DirtMaskTint; // 0x000C(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLensImperfectionSettings; + +// ScriptStruct Engine.HLODInstancingKey +// 0x0010 (0x0010 - 0x0000) +struct FHLODInstancingKey final +{ +public: + class UStaticMesh* StaticMesh; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHLODInstancingKey; + +// ScriptStruct Engine.CullDistanceSizePair +// 0x0008 (0x0008 - 0x0000) +struct FCullDistanceSizePair final +{ +public: + float Size; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CullDistance; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCullDistanceSizePair; + +// ScriptStruct Engine.ActorLocatorFragmentResolveParameter +// 0x0028 (0x0028 - 0x0000) +struct FActorLocatorFragmentResolveParameter final +{ +public: + class UWorld* StreamingWorld; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FActorContainerID ContainerID; // 0x0008(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTopLevelAssetPath SourceAssetPath; // 0x0018(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActorLocatorFragmentResolveParameter; + +// ScriptStruct Engine.ComponentSync +// 0x000C (0x000C - 0x0000) +struct FComponentSync final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESyncOption SyncOption; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FComponentSync; + +// ScriptStruct Engine.KSphereElem +// 0x0020 (0x0050 - 0x0030) +struct FKSphereElem final : public FKShapeElem +{ +public: + struct FVector Center; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKSphereElem; + +// ScriptStruct Engine.KBoxElem +// 0x0040 (0x0070 - 0x0030) +struct FKBoxElem final : public FKShapeElem +{ +public: + struct FVector Center; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float X; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Y; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Z; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKBoxElem; + +// ScriptStruct Engine.KSphylElem +// 0x0038 (0x0068 - 0x0030) +struct FKSphylElem final : public FKShapeElem +{ +public: + struct FVector Center; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Radius; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FKSphylElem; + +// ScriptStruct Engine.KConvexElem +// 0x00D0 (0x0100 - 0x0030) +struct FKConvexElem final : public FKShapeElem +{ +public: + TArray VertexData; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray IndexData; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FBox ElemBox; // 0x0050(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0090(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_F0[0x10]; // 0x00F0(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKConvexElem; + +// ScriptStruct Engine.KTaperedCapsuleElem +// 0x0040 (0x0070 - 0x0030) +struct FKTaperedCapsuleElem final : public FKShapeElem +{ +public: + struct FVector Center; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Radius0; // 0x0060(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius1; // 0x0064(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x0068(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKTaperedCapsuleElem; + +// ScriptStruct Engine.KAggregateGeom +// 0x0080 (0x0080 - 0x0000) +struct FKAggregateGeom final +{ +public: + TArray SphereElems; // 0x0000(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray BoxElems; // 0x0010(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SphylElems; // 0x0020(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ConvexElems; // 0x0030(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray TaperedCapsuleElems; // 0x0040(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray LevelSetElems; // 0x0050(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SkinnedLevelSetElems; // 0x0060(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_70[0x10]; // 0x0070(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKAggregateGeom; + +// ScriptStruct Engine.BasedPosition +// 0x0068 (0x0068 - 0x0000) +struct FBasedPosition final +{ +public: + class AActor* base; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector position; // 0x0008(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CachedBaseLocation; // 0x0020(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator CachedBaseRotation; // 0x0038(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector CachedTransPosition; // 0x0050(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBasedPosition; + +// ScriptStruct Engine.GraphReference +// 0x0020 (0x0020 - 0x0000) +struct FGraphReference final +{ +public: + class UEdGraph* MacroGraph; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UBlueprint* GraphBlueprint; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FGuid GraphGuid; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FGraphReference; + +// ScriptStruct Engine.CustomAttribute +// 0x0001 (0x0001 - 0x0000) +struct FCustomAttribute final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCustomAttribute; + +// ScriptStruct Engine.SimpleMemberReference +// 0x0020 (0x0020 - 0x0000) +struct FSimpleMemberReference final +{ +public: + class UObject* MemberParent; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MemberName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid MemberGuid; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSimpleMemberReference; + +// ScriptStruct Engine.EdGraphPinType +// 0x0058 (0x0058 - 0x0000) +struct FEdGraphPinType final +{ +public: + class FName PinCategory; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PinSubCategory; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr PinSubCategoryObject; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSimpleMemberReference PinSubCategoryMemberReference; // 0x0018(0x0020)(NoDestructor, NativeAccessSpecifierPublic) + struct FEdGraphTerminalType PinValueType; // 0x0038(0x001C)(NoDestructor, NativeAccessSpecifierPublic) + EPinContainerType ContainerType; // 0x0054(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsArray : 1; // 0x0055(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bIsReference : 1; // 0x0055(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsConst : 1; // 0x0055(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsWeakPointer : 1; // 0x0055(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsUObjectWrapper : 1; // 0x0055(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSerializeAsSinglePrecisionFloat : 1; // 0x0055(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_56[0x2]; // 0x0056(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEdGraphPinType; + +// ScriptStruct Engine.BPVariableMetaDataEntry +// 0x0018 (0x0018 - 0x0000) +struct FBPVariableMetaDataEntry final +{ +public: + class FName DataKey; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DataValue; // 0x0008(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBPVariableMetaDataEntry; + +// ScriptStruct Engine.BPVariableDescription +// 0x00C8 (0x00C8 - 0x0000) +struct FBPVariableDescription final +{ +public: + class FName VarName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid VarGuid; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FEdGraphPinType VarType; // 0x0018(0x0058)(Edit, NoDestructor, NativeAccessSpecifierPublic) + class FString FriendlyName; // 0x0070(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText Category; // 0x0080(0x0010)(Edit, NativeAccessSpecifierPublic) + uint64 PropertyFlags; // 0x0090(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RepNotifyFunc; // 0x0098(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELifetimeCondition ReplicationCondition; // 0x00A0(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A1[0x7]; // 0x00A1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MetaDataArray; // 0x00A8(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + class FString DefaultValue; // 0x00B8(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBPVariableDescription; + +// ScriptStruct Engine.PSCPoolElem +// 0x0010 (0x0010 - 0x0000) +struct FPSCPoolElem final +{ +public: + class UParticleSystemComponent* PSC; // 0x0000(0x0008)(ExportObject, ZeroConstructor, Transient, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPSCPoolElem; + +// ScriptStruct Engine.PSCPool +// 0x0010 (0x0010 - 0x0000) +struct FPSCPool final +{ +public: + TArray FreeElements; // 0x0000(0x0010)(ZeroConstructor, Transient, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPSCPool; + +// ScriptStruct Engine.CameraExposureSettings +// 0x0040 (0x0040 - 0x0000) +struct FCameraExposureSettings final +{ +public: + EAutoExposureMethod Method; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LowPercent; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HighPercent; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinBrightness; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxBrightness; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpeedUp; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SpeedDown; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bias; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* BiasCurve; // 0x0020(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* MeterMask; // 0x0028(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HistogramLogMin; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HistogramLogMax; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CalibrationConstant; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ApplyPhysicalCameraExposure : 1; // 0x003C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCameraExposureSettings; + +// ScriptStruct Engine.NamedFloat +// 0x000C (0x000C - 0x0000) +struct FNamedFloat final +{ +public: + float Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0004(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNamedFloat; + +// ScriptStruct Engine.AnimNode_LinkedAnimGraph +// 0x0060 (0x00B8 - 0x0058) +struct FAnimNode_LinkedAnimGraph : public FAnimNode_CustomProperty +{ +public: + TArray InputPoses; // 0x0058(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray InputPoseNames; // 0x0068(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TSubclassOf InstanceClass; // 0x0078(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_80[0x18]; // 0x0080(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* PendingBlendOutProfile; // 0x0098(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_A0[0x8]; // 0x00A0(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* PendingBlendInProfile; // 0x00A8(0x0008)(ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 bReceiveNotifiesFromLinkedInstances : 1; // 0x00B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPropagateNotifiesToLinkedInstances : 1; // 0x00B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_LinkedAnimGraph; + +// ScriptStruct Engine.AnimNode_LinkedAnimLayer +// 0x0010 (0x00C8 - 0x00B8) +struct FAnimNode_LinkedAnimLayer final : public FAnimNode_LinkedAnimGraph +{ +public: + TSubclassOf Interface; // 0x00B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Layer; // 0x00C0(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNode_LinkedAnimLayer; + +// ScriptStruct Engine.NamedColor +// 0x000C (0x000C - 0x0000) +struct FNamedColor final +{ +public: + struct FColor Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0004(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNamedColor; + +// ScriptStruct Engine.NamedTransform +// 0x0070 (0x0070 - 0x0000) +struct FNamedTransform final +{ +public: + struct FTransform Value; // 0x0000(0x0060)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0060(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_68[0x8]; // 0x0068(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNamedTransform; + +// ScriptStruct Engine.AnimNode_DeadBlending +// 0x0670 (0x0680 - 0x0010) +struct alignas(0x10) FAnimNode_DeadBlending final : public FAnimNode_Base +{ +public: + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPoseLink Source; // 0x0018(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bAlwaysUseDefaultBlendSettings; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultBlendDuration; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UBlendProfile* DefaultBlendProfile; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EAlphaBlendOption DefaultBlendMode; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* DefaultCustomBlendCurve; // 0x0040(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float BlendTimeMultiplier; // 0x0048(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bLinearlyInterpolateScales; // 0x004C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray FilteredCurves; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray ExtrapolationFilteredCurves; // 0x0060(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray FilteredBones; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + float ExtrapolationHalfLife; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float ExtrapolationHalfLifeMin; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float ExtrapolationHalfLifeMax; // 0x0088(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaximumTranslationVelocity; // 0x008C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaximumRotationVelocity; // 0x0090(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaximumScaleVelocity; // 0x0094(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaximumCurveVelocity; // 0x0098(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bResetOnBecomingRelevant; // 0x009C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_9D[0x313]; // 0x009D(0x0313)(Fixing Size After Last Property [ Dumper-7 ]) + TArray RequestQueue; // 0x03B0(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_3C0[0x290]; // 0x03C0(0x0290)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* InertializationCustomBlendCurve; // 0x0650(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_658[0x18]; // 0x0658(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* InertializationRequestAnimInstance; // 0x0670(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_678[0x8]; // 0x0678(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_DeadBlending; + +// ScriptStruct Engine.LocalSpacePose +// 0x0020 (0x0020 - 0x0000) +struct FLocalSpacePose final +{ +public: + TArray Transforms; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray Names; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLocalSpacePose; + +// ScriptStruct Engine.ComponentSpacePose +// 0x0020 (0x0020 - 0x0000) +struct FComponentSpacePose final +{ +public: + TArray Transforms; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray Names; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FComponentSpacePose; + +// ScriptStruct Engine.AnimationErrorStats +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x04) FAnimationErrorStats final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationErrorStats; + +// ScriptStruct Engine.AnimCompressedCurveIndexedName +// 0x000C (0x000C - 0x0000) +struct FAnimCompressedCurveIndexedName final +{ +public: + class FName CurveName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x4]; // 0x0008(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimCompressedCurveIndexedName; + +// ScriptStruct Engine.AnimCurveType +// 0x0002 (0x0002 - 0x0000) +struct FAnimCurveType final +{ +public: + bool bMaterial; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMorphtarget; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimCurveType; + +// ScriptStruct Engine.CurveMetaData +// 0x0018 (0x0018 - 0x0000) +struct FCurveMetaData final +{ +public: + TArray LinkedBones; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 MaxLOD; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimCurveType Type; // 0x0011(0x0002)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCurveMetaData; + +// ScriptStruct Engine.AnimCurveParam +// 0x000C (0x000C - 0x0000) +struct FAnimCurveParam final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x4]; // 0x0008(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimCurveParam; + +// ScriptStruct Engine.AnimNode_SaveCachedPose +// 0x0070 (0x0080 - 0x0010) +struct FAnimNode_SaveCachedPose final : public FAnimNode_Base +{ +public: + struct FPoseLink Pose; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + class FName CachePoseName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x58]; // 0x0028(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_SaveCachedPose; + +// ScriptStruct Engine.FloatCurve +// 0x0084 (0x0090 - 0x000C) +struct FFloatCurve final : public FAnimCurveBase +{ +public: + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRichCurve FloatCurve; // 0x0010(0x0080)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFloatCurve; + +// ScriptStruct Engine.CachedFloatCurve +// 0x0008 (0x0008 - 0x0000) +struct FCachedFloatCurve final +{ +public: + class FName CurveName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCachedFloatCurve; + +// ScriptStruct Engine.RawCurveTracks +// 0x0010 (0x0010 - 0x0000) +struct FRawCurveTracks final +{ +public: + TArray FloatCurves; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRawCurveTracks; + +// ScriptStruct Engine.BracketPayload +// 0x0010 (0x0010 - 0x0000) +struct FBracketPayload final : public FEmptyPayload +{ +public: + class FString Description; // 0x0000(0x0010)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBracketPayload; + +// ScriptStruct Engine.FrameRateChangedPayload +// 0x0008 (0x0008 - 0x0000) +struct FFrameRateChangedPayload final : public FEmptyPayload +{ +public: + struct FFrameRate PreviousFrameRate; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFrameRateChangedPayload; + +// ScriptStruct Engine.CurveRenamedPayload +// 0x000C (0x0018 - 0x000C) +struct FCurveRenamedPayload final : public FCurvePayload +{ +public: + struct FAnimationCurveIdentifier NewIdentifier; // 0x000C(0x000C)(BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveRenamedPayload; + +// ScriptStruct Engine.CurveFlagsChangedPayload +// 0x0004 (0x0010 - 0x000C) +struct FCurveFlagsChangedPayload final : public FCurvePayload +{ +public: + int32 OldFlags; // 0x000C(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveFlagsChangedPayload; + +// ScriptStruct Engine.AttributePayload +// 0x0040 (0x0040 - 0x0000) +struct FAttributePayload final : public FEmptyPayload +{ +public: + struct FAnimationAttributeIdentifier Identifier; // 0x0000(0x0040)(BlueprintVisible, BlueprintReadOnly, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAttributePayload; + +// ScriptStruct Engine.AnimInstanceLocatorFragment +// 0x0004 (0x0004 - 0x0000) +struct FAnimInstanceLocatorFragment final +{ +public: + EAnimInstanceLocatorFragmentType Type; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimInstanceLocatorFragment; + +// ScriptStruct Engine.AnimNodeConstantData +// 0x0018 (0x0018 - 0x0000) +struct FAnimNodeConstantData final +{ +public: + TScriptInterface AnimClassInterface; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 NodeIndex; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNodeConstantData; + +// ScriptStruct Engine.SlotEvaluationPose +// 0x0080 (0x0080 - 0x0000) +struct alignas(0x08) FSlotEvaluationPose final +{ +public: + EAdditiveAnimationType AdditiveType; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Weight; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x78]; // 0x0008(0x0078)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSlotEvaluationPose; + +// ScriptStruct Engine.AnimSubsystem_BlendSpaceGraph +// 0x0010 (0x0018 - 0x0008) +struct FAnimSubsystem_BlendSpaceGraph final : public FAnimSubsystem +{ +public: + TArray BlendSpaces; // 0x0008(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimSubsystem_BlendSpaceGraph; + +// ScriptStruct Engine.AnimLinkableElement +// 0x0030 (0x0030 - 0x0000) +struct FAnimLinkableElement +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimMontage* LinkedMontage; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 SlotIndex; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 SegmentIndex; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EAnimLinkMethod LinkMethod; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EAnimLinkMethod CachedLinkMethod; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float SegmentBeginTime; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float SegmentLength; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float LinkValue; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UAnimSequenceBase* LinkedSequence; // 0x0028(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, AdvancedDisplay, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FAnimLinkableElement; + +// ScriptStruct Engine.AnimNotifyEvent +// 0x0088 (0x00B8 - 0x0030) +struct FAnimNotifyEvent final : public FAnimLinkableElement +{ +public: + float TriggerTimeOffset; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndTriggerTimeOffset; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TriggerWeightThreshold; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NotifyName; // 0x003C(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimNotify* Notify; // 0x0048(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimNotifyState* NotifyStateClass; // 0x0050(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x0058(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FAnimLinkableElement EndLink; // 0x0060(0x0030)(NativeAccessSpecifierPublic) + bool bConvertedFromBranchingPoint; // 0x0090(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMontageNotifyTickType MontageTickType; // 0x0091(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_92[0x2]; // 0x0092(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float NotifyTriggerChance; // 0x0094(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENotifyFilterType NotifyFilterType; // 0x0098(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_99[0x3]; // 0x0099(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NotifyFilterLOD; // 0x009C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCanBeFilteredViaRequest; // 0x00A0(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTriggerOnDedicatedServer; // 0x00A1(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTriggerOnFollower; // 0x00A2(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A3[0x1]; // 0x00A3(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TrackIndex; // 0x00A4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A8[0x10]; // 0x00A8(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNotifyEvent; + +// ScriptStruct Engine.AnimSyncMarker +// 0x000C (0x000C - 0x0000) +struct FAnimSyncMarker final +{ +public: + class FName MarkerName; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0008(0x0004)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimSyncMarker; + +// ScriptStruct Engine.AnimNotifyTrack +// 0x0038 (0x0038 - 0x0000) +struct alignas(0x08) FAnimNotifyTrack final +{ +public: + class FName TrackName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TrackColor; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x20]; // 0x0018(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNotifyTrack; + +// ScriptStruct Engine.MarkerSyncData +// 0x0020 (0x0020 - 0x0000) +struct FMarkerSyncData final +{ +public: + TArray AuthoredSyncMarkers; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMarkerSyncData; + +// ScriptStruct Engine.TrackToSkeletonMap +// 0x0004 (0x0004 - 0x0000) +struct FTrackToSkeletonMap final +{ +public: + int32 BoneTreeIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTrackToSkeletonMap; + +// ScriptStruct Engine.RawAnimSequenceTrack +// 0x0030 (0x0030 - 0x0000) +struct FRawAnimSequenceTrack final +{ +public: + TArray PosKeys; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray RotKeys; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray ScaleKeys; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRawAnimSequenceTrack; + +// ScriptStruct Engine.AssetLocatorFragment +// 0x0010 (0x0010 - 0x0000) +struct FAssetLocatorFragment final +{ +public: + struct FTopLevelAssetPath Path; // 0x0000(0x0010)(NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAssetLocatorFragment; + +// ScriptStruct Engine.AssetManagerRedirect +// 0x0020 (0x0020 - 0x0000) +struct FAssetManagerRedirect final +{ +public: + class FString Old; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString New; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAssetManagerRedirect; + +// ScriptStruct Engine.PrimaryAssetRulesCustomOverride +// 0x0038 (0x0038 - 0x0000) +struct FPrimaryAssetRulesCustomOverride final +{ +public: + struct FPrimaryAssetType PrimaryAssetType; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDirectoryPath FilterDirectory; // 0x0008(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString FilterString; // 0x0018(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPrimaryAssetRules Rules; // 0x0028(0x000C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPrimaryAssetRulesCustomOverride; + +// ScriptStruct Engine.BlendSpaceBlendProfile +// 0x0010 (0x0010 - 0x0000) +struct FBlendSpaceBlendProfile final +{ +public: + class UBlendProfile* BlendProfile; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetWeightInterpolationSpeedPerSec; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendSpaceBlendProfile; + +// ScriptStruct Engine.InterpolationParameter +// 0x0010 (0x0010 - 0x0000) +struct FInterpolationParameter final +{ +public: + float InterpolationTime; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DampingRatio; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSpeed; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFilterInterpolationType InterpolationType; // 0x000C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInterpolationParameter; + +// ScriptStruct Engine.BlendParameter +// 0x0020 (0x0020 - 0x0000) +struct FBlendParameter final +{ +public: + class FString DisplayName; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float min_0; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float max_0; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 GridNum; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSnapToGrid; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWrapInput; // 0x001D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendParameter; + +// ScriptStruct Engine.BlendSample +// 0x0028 (0x0028 - 0x0000) +struct FBlendSample final +{ +public: + class UAnimSequence* Animation; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SampleValue; // 0x0008(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RateScale; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendSample; + +// ScriptStruct Engine.BlendSpaceSegment +// 0x0010 (0x0010 - 0x0000) +struct FBlendSpaceSegment final +{ +public: + int32 SampleIndices[0x2]; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Vertices[0x2]; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlendSpaceSegment; + +// ScriptStruct Engine.BlendSpaceTriangleEdgeInfo +// 0x0028 (0x0028 - 0x0000) +struct FBlendSpaceTriangleEdgeInfo final +{ +public: + struct FVector2D Normal; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NeighbourTriangleIndex; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AdjacentPerimeterTriangleIndices[0x2]; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AdjacentPerimeterVertexIndices[0x2]; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendSpaceTriangleEdgeInfo; + +// ScriptStruct Engine.BlendSpaceTriangle +// 0x00B8 (0x00B8 - 0x0000) +struct FBlendSpaceTriangle final +{ +public: + int32 SampleIndices[0x3]; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D Vertices[0x3]; // 0x0010(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBlendSpaceTriangleEdgeInfo EdgeInfo[0x3]; // 0x0040(0x0028)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlendSpaceTriangle; + +// ScriptStruct Engine.AnimNode_Inertialization +// 0x0540 (0x0550 - 0x0010) +struct alignas(0x10) FAnimNode_Inertialization final : public FAnimNode_Base +{ +public: + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPoseLink Source; // 0x0018(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + class UBlendProfile* DefaultBlendProfile; // 0x0028(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray FilteredCurves; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray FilteredBones; // 0x0040(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + bool bResetOnBecomingRelevant; // 0x0050(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bForwardRequestsThroughSkippedCachedPoseNodes; // 0x0051(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_52[0x2B6]; // 0x0052(0x02B6)(Fixing Size After Last Property [ Dumper-7 ]) + TArray RequestQueue; // 0x0308(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + uint8 Pad_318[0x230]; // 0x0318(0x0230)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* InertializationRequestAnimInstance; // 0x0548(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimNode_Inertialization; + +// ScriptStruct Engine.WeightedBlendSample +// 0x0008 (0x0008 - 0x0000) +struct FWeightedBlendSample final +{ +public: + int32 SampleIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SampleWeight; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWeightedBlendSample; + +// ScriptStruct Engine.BlendSpaceData +// 0x0020 (0x0020 - 0x0000) +struct FBlendSpaceData final +{ +public: + TArray Segments; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Triangles; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlendSpaceData; + +// ScriptStruct Engine.PerBoneInterpolation +// 0x0014 (0x0014 - 0x0000) +struct FPerBoneInterpolation final +{ +public: + struct FBoneReference BoneReference; // 0x0000(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float InterpolationSpeedPerSec; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPerBoneInterpolation; + +// ScriptStruct Engine.BlueprintMacroCosmeticInfo +// 0x0001 (0x0001 - 0x0000) +struct FBlueprintMacroCosmeticInfo final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlueprintMacroCosmeticInfo; + +// ScriptStruct Engine.InertializationBoneDiff +// 0x0060 (0x0060 - 0x0000) +struct alignas(0x08) FInertializationBoneDiff final +{ +public: + uint8 Pad_0[0x60]; // 0x0000(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInertializationBoneDiff; + +// ScriptStruct Engine.EditedDocumentInfo +// 0x0040 (0x0040 - 0x0000) +struct FEditedDocumentInfo final +{ +public: + struct FSoftObjectPath EditedObjectPath; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D SavedViewOffset; // 0x0020(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SavedZoomAmount; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* EditedObject; // 0x0038(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FEditedDocumentInfo; + +// ScriptStruct Engine.Bookmark2DJumpToSettings +// 0x0001 (0x0001 - 0x0000) +struct FBookmark2DJumpToSettings final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBookmark2DJumpToSettings; + +// ScriptStruct Engine.GeomSelection +// 0x000C (0x000C - 0x0000) +struct FGeomSelection final +{ +public: + int32 Type; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Index; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SelectionIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGeomSelection; + +// ScriptStruct Engine.NonBlendableQuaternionAnimationAttribute +// 0x0000 (0x0020 - 0x0020) +struct FNonBlendableQuaternionAnimationAttribute final : public FQuaternionAnimationAttribute +{ +}; +//_ASSERTS_FNonBlendableQuaternionAnimationAttribute; + +// ScriptStruct Engine.NonBlendableVectorAnimationAttribute +// 0x0000 (0x0018 - 0x0018) +struct FNonBlendableVectorAnimationAttribute final : public FVectorAnimationAttribute +{ +}; +//_ASSERTS_FNonBlendableVectorAnimationAttribute; + +// ScriptStruct Engine.NonBlendableTransformAnimationAttribute +// 0x0000 (0x0060 - 0x0060) +struct FNonBlendableTransformAnimationAttribute final : public FTransformAnimationAttribute +{ +}; +//_ASSERTS_FNonBlendableTransformAnimationAttribute; + +// ScriptStruct Engine.NonBlendableFloatAnimationAttribute +// 0x0000 (0x0004 - 0x0004) +struct FNonBlendableFloatAnimationAttribute final : public FFloatAnimationAttribute +{ +}; +//_ASSERTS_FNonBlendableFloatAnimationAttribute; + +// ScriptStruct Engine.NonBlendableIntegerAnimationAttribute +// 0x0000 (0x0004 - 0x0004) +struct FNonBlendableIntegerAnimationAttribute final : public FIntegerAnimationAttribute +{ +}; +//_ASSERTS_FNonBlendableIntegerAnimationAttribute; + +// ScriptStruct Engine.WeightedBlendable +// 0x0010 (0x0010 - 0x0000) +struct FWeightedBlendable final +{ +public: + float Weight; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* Object; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWeightedBlendable; + +// ScriptStruct Engine.WeightedBlendables +// 0x0010 (0x0010 - 0x0000) +struct FWeightedBlendables final +{ +public: + TArray Array; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWeightedBlendables; + +// ScriptStruct Engine.PostProcessSettings +// 0x0700 (0x0700 - 0x0000) +struct FPostProcessSettings final +{ +public: + uint8 bOverride_TemperatureType : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_WhiteTemp : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_WhiteTint : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorSaturation : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorContrast : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGamma : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGain : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorOffset : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorSaturationShadows : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorContrastShadows : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGammaShadows : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGainShadows : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorOffsetShadows : 1; // 0x0001(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorSaturationMidtones : 1; // 0x0001(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorContrastMidtones : 1; // 0x0001(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGammaMidtones : 1; // 0x0001(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGainMidtones : 1; // 0x0002(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorOffsetMidtones : 1; // 0x0002(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorSaturationHighlights : 1; // 0x0002(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorContrastHighlights : 1; // 0x0002(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGammaHighlights : 1; // 0x0002(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGainHighlights : 1; // 0x0002(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorOffsetHighlights : 1; // 0x0002(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorCorrectionShadowsMax : 1; // 0x0002(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorCorrectionHighlightsMin : 1; // 0x0003(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorCorrectionHighlightsMax : 1; // 0x0003(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BlueCorrection : 1; // 0x0003(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ExpandGamut : 1; // 0x0003(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ToneCurveAmount : 1; // 0x0003(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmSlope : 1; // 0x0003(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmToe : 1; // 0x0003(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmShoulder : 1; // 0x0003(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmBlackClip : 1; // 0x0004(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmWhiteClip : 1; // 0x0004(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_SceneColorTint : 1; // 0x0004(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_SceneFringeIntensity : 1; // 0x0004(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ChromaticAberrationStartOffset : 1; // 0x0004(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_bMegaLights : 1; // 0x0004(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientCubemapTint : 1; // 0x0004(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientCubemapIntensity : 1; // 0x0004(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomMethod : 1; // 0x0005(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomIntensity : 1; // 0x0005(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomThreshold : 1; // 0x0005(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom1Tint : 1; // 0x0005(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom1Size : 1; // 0x0005(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom2Size : 1; // 0x0005(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom2Tint : 1; // 0x0005(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom3Tint : 1; // 0x0005(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom3Size : 1; // 0x0006(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom4Tint : 1; // 0x0006(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom4Size : 1; // 0x0006(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom5Tint : 1; // 0x0006(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom5Size : 1; // 0x0006(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom6Tint : 1; // 0x0006(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Bloom6Size : 1; // 0x0006(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomSizeScale : 1; // 0x0006(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionTexture : 1; // 0x0007(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionScatterDispersion : 1; // 0x0007(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionSize : 1; // 0x0007(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionCenterUV : 1; // 0x0007(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionPreFilter : 1; // 0x0007(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionPreFilterMin : 1; // 0x0007(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionPreFilterMax : 1; // 0x0007(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionPreFilterMult : 1; // 0x0007(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomConvolutionBufferScale : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomDirtMaskIntensity : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomDirtMaskTint : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BloomDirtMask : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_CameraShutterSpeed : 1; // 0x0008(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_CameraISO : 1; // 0x0008(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureMethod : 1; // 0x0008(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureLowPercent : 1; // 0x0008(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureHighPercent : 1; // 0x0009(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureMinBrightness : 1; // 0x0009(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureMaxBrightness : 1; // 0x0009(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureCalibrationConstant : 1; // 0x0009(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureSpeedUp : 1; // 0x0009(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureSpeedDown : 1; // 0x0009(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureBias : 1; // 0x0009(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureBiasCurve : 1; // 0x0009(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureMeterMask : 1; // 0x000A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AutoExposureApplyPhysicalCameraExposure : 1; // 0x000A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_HistogramLogMin : 1; // 0x000A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_HistogramLogMax : 1; // 0x000A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureMethod : 1; // 0x000A(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureContrastScale : 1; // 0x000A(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureHighlightContrastScale : 1; // 0x000A(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureShadowContrastScale : 1; // 0x000A(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureHighlightContrastCurve : 1; // 0x000B(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureShadowContrastCurve : 1; // 0x000B(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureHighlightThreshold : 1; // 0x000B(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureShadowThreshold : 1; // 0x000B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureDetailStrength : 1; // 0x000B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureBlurredLuminanceBlend : 1; // 0x000B(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureBlurredLuminanceKernelSizePercent : 1; // 0x000B(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LocalExposureMiddleGreyBias : 1; // 0x000B(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareIntensity : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareTint : 1; // 0x000C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareTints : 1; // 0x000C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareBokehSize : 1; // 0x000C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareBokehShape : 1; // 0x000C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LensFlareThreshold : 1; // 0x000C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_VignetteIntensity : 1; // 0x000C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_Sharpen : 1; // 0x000C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_GrainIntensity : 1; // 0x000D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_GrainJitter : 1; // 0x000D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainIntensity : 1; // 0x000D(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainIntensityShadows : 1; // 0x000D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainIntensityMidtones : 1; // 0x000D(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainIntensityHighlights : 1; // 0x000D(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainShadowsMax : 1; // 0x000D(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainHighlightsMin : 1; // 0x000D(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainHighlightsMax : 1; // 0x000E(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainTexelSize : 1; // 0x000E(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_FilmGrainTexture : 1; // 0x000E(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionIntensity : 1; // 0x000E(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionStaticFraction : 1; // 0x000E(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionRadius : 1; // 0x000E(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionFadeDistance : 1; // 0x000E(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionFadeRadius : 1; // 0x000E(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionDistance : 1; // 0x000F(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionRadiusInWS : 1; // 0x000F(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionPower : 1; // 0x000F(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionBias : 1; // 0x000F(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionQuality : 1; // 0x000F(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionMipBlend : 1; // 0x000F(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionMipScale : 1; // 0x000F(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionMipThreshold : 1; // 0x000F(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_AmbientOcclusionTemporalBlendWeight : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_10_1 : 7; // 0x0010(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_RayTracingAO : 1; // 0x0014(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingAOSamplesPerPixel : 1; // 0x0014(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingAOIntensity : 1; // 0x0014(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingAORadius : 1; // 0x0014(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_14_4 : 4; // 0x0014(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_LPVIntensity : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVDirectionalOcclusionIntensity : 1; // 0x0018(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVDirectionalOcclusionRadius : 1; // 0x0018(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVDiffuseOcclusionExponent : 1; // 0x0018(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVSpecularOcclusionExponent : 1; // 0x0018(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVDiffuseOcclusionIntensity : 1; // 0x0018(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVSpecularOcclusionIntensity : 1; // 0x0018(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVSize : 1; // 0x0018(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVSecondaryOcclusionIntensity : 1; // 0x0019(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVSecondaryBounceIntensity : 1; // 0x0019(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVGeometryVolumeBias : 1; // 0x0019(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVVplInjectionBias : 1; // 0x0019(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVEmissiveInjectionIntensity : 1; // 0x0019(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVFadeRange : 1; // 0x0019(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LPVDirectionalOcclusionFadeRange : 1; // 0x0019(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_IndirectLightingColor : 1; // 0x0019(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_IndirectLightingIntensity : 1; // 0x001A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGradingIntensity : 1; // 0x001A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ColorGradingLUT : 1; // 0x001A(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldFocalDistance : 1; // 0x001A(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldFstop : 1; // 0x001A(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldMinFstop : 1; // 0x001A(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldBladeCount : 1; // 0x001A(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldSensorWidth : 1; // 0x001A(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldSqueezeFactor : 1; // 0x001B(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldDepthBlurRadius : 1; // 0x001B(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldUseHairDepth : 1; // 0x001B(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldDepthBlurAmount : 1; // 0x001B(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldFocalRegion : 1; // 0x001B(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldNearTransitionRegion : 1; // 0x001B(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldFarTransitionRegion : 1; // 0x001B(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldScale : 1; // 0x001B(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldNearBlurSize : 1; // 0x001C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldFarBlurSize : 1; // 0x001C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MobileHQGaussian : 1; // 0x001C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldOcclusion : 1; // 0x001C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldSkyFocusDistance : 1; // 0x001C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DepthOfFieldVignetteSize : 1; // 0x001C(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MotionBlurAmount : 1; // 0x001C(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MotionBlurMax : 1; // 0x001C(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MotionBlurTargetFPS : 1; // 0x001D(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MotionBlurPerObjectSize : 1; // 0x001D(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ScreenPercentage : 1; // 0x001D(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ReflectionMethod : 1; // 0x001D(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenReflectionQuality : 1; // 0x001D(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ScreenSpaceReflectionIntensity : 1; // 0x001D(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ScreenSpaceReflectionQuality : 1; // 0x001D(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ScreenSpaceReflectionMaxRoughness : 1; // 0x001D(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ScreenSpaceReflectionRoughnessScale : 1; // 0x001E(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_UserFlags : 1; // 0x001E(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_1E_2 : 6; // 0x001E(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_1F[0x1]; // 0x001F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_ReflectionsType : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingReflectionsMaxRoughness : 1; // 0x0020(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingReflectionsMaxBounces : 1; // 0x0020(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingReflectionsSamplesPerPixel : 1; // 0x0020(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingReflectionsShadows : 1; // 0x0020(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingReflectionsTranslucency : 1; // 0x0020(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_TranslucencyType : 1; // 0x0020(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingTranslucencyMaxRoughness : 1; // 0x0020(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingTranslucencyRefractionRays : 1; // 0x0021(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingTranslucencySamplesPerPixel : 1; // 0x0021(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingTranslucencyShadows : 1; // 0x0021(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingTranslucencyRefraction : 1; // 0x0021(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DynamicGlobalIlluminationMethod : 1; // 0x0021(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenSceneLightingQuality : 1; // 0x0021(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenSceneDetail : 1; // 0x0021(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenSceneViewDistance : 1; // 0x0021(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenSceneLightingUpdateSpeed : 1; // 0x0022(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenFinalGatherQuality : 1; // 0x0022(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenFinalGatherLightingUpdateSpeed : 1; // 0x0022(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenFinalGatherScreenTraces : 1; // 0x0022(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenMaxTraceDistance : 1; // 0x0022(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenDiffuseColorBoost : 1; // 0x0022(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenSkylightLeaking : 1; // 0x0022(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenFullSkylightLeakingDistance : 1; // 0x0022(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_23[0x1]; // 0x0023(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_LumenRayLightingMode : 1; // 0x0024(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenReflectionsScreenTraces : 1; // 0x0024(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenFrontLayerTranslucencyReflections : 1; // 0x0024(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_24_3 : 5; // 0x0024(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_LumenMaxRoughnessToTraceReflections : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenMaxReflectionBounces : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_LumenMaxRefractionBounces : 1; // 0x0028(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_28_3 : 5; // 0x0028(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_LumenSurfaceCacheResolution : 1; // 0x002C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_2C_1 : 7; // 0x002C(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverride_RayTracingGI : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingGIMaxBounces : 1; // 0x0030(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_RayTracingGISamplesPerPixel : 1; // 0x0030(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingMaxBounces : 1; // 0x0030(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingSamplesPerPixel : 1; // 0x0030(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingMaxPathIntensity : 1; // 0x0030(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingEnableEmissiveMaterials : 1; // 0x0030(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingEnableReferenceDOF : 1; // 0x0030(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingEnableReferenceAtmosphere : 1; // 0x0031(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingEnableDenoiser : 1; // 0x0031(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeEmissive : 1; // 0x0031(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeDiffuse : 1; // 0x0031(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeIndirectDiffuse : 1; // 0x0031(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeSpecular : 1; // 0x0031(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeIndirectSpecular : 1; // 0x0031(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeVolume : 1; // 0x0031(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_PathTracingIncludeIndirectVolume : 1; // 0x0032(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_32_1 : 7; // 0x0032(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_33[0x1]; // 0x0033(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bMobileHQGaussian : 1; // 0x0034(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EBloomMethod BloomMethod; // 0x0035(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAutoExposureMethod AutoExposureMethod; // 0x0036(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETemperatureMethod TemperatureType; // 0x0037(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WhiteTemp; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WhiteTint; // 0x003C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorSaturation; // 0x0040(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorContrast; // 0x0060(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGamma; // 0x0080(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGain; // 0x00A0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorOffset; // 0x00C0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorSaturationShadows; // 0x00E0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorContrastShadows; // 0x0100(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGammaShadows; // 0x0120(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGainShadows; // 0x0140(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorOffsetShadows; // 0x0160(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorSaturationMidtones; // 0x0180(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorContrastMidtones; // 0x01A0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGammaMidtones; // 0x01C0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGainMidtones; // 0x01E0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorOffsetMidtones; // 0x0200(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorSaturationHighlights; // 0x0220(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorContrastHighlights; // 0x0240(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGammaHighlights; // 0x0260(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorGainHighlights; // 0x0280(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorOffsetHighlights; // 0x02A0(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ColorCorrectionHighlightsMin; // 0x02C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ColorCorrectionHighlightsMax; // 0x02C4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ColorCorrectionShadowsMax; // 0x02C8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlueCorrection; // 0x02CC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExpandGamut; // 0x02D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ToneCurveAmount; // 0x02D4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmSlope; // 0x02D8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmToe; // 0x02DC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmShoulder; // 0x02E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmBlackClip; // 0x02E4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmWhiteClip; // 0x02E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor SceneColorTint; // 0x02EC(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SceneFringeIntensity; // 0x02FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ChromaticAberrationStartOffset; // 0x0300(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomIntensity; // 0x0304(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomThreshold; // 0x0308(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomSizeScale; // 0x030C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom1Size; // 0x0310(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom2Size; // 0x0314(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom3Size; // 0x0318(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom4Size; // 0x031C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom5Size; // 0x0320(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bloom6Size; // 0x0324(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom1Tint; // 0x0328(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom2Tint; // 0x0338(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom3Tint; // 0x0348(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom4Tint; // 0x0358(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom5Tint; // 0x0368(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Bloom6Tint; // 0x0378(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionScatterDispersion; // 0x0388(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionSize; // 0x038C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* BloomConvolutionTexture; // 0x0390(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D BloomConvolutionCenterUV; // 0x0398(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionPreFilterMin; // 0x03A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionPreFilterMax; // 0x03AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionPreFilterMult; // 0x03B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomConvolutionBufferScale; // 0x03B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* BloomDirtMask; // 0x03B8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BloomDirtMaskIntensity; // 0x03C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor BloomDirtMaskTint; // 0x03C4(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDynamicGlobalIlluminationMethod DynamicGlobalIlluminationMethod; // 0x03D4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D5[0x3]; // 0x03D5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor IndirectLightingColor; // 0x03D8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IndirectLightingIntensity; // 0x03E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELumenRayLightingModeOverride LumenRayLightingMode; // 0x03EC(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3ED[0x3]; // 0x03ED(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LumenSceneLightingQuality; // 0x03F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenSceneDetail; // 0x03F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenSceneViewDistance; // 0x03F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenSceneLightingUpdateSpeed; // 0x03FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenFinalGatherQuality; // 0x0400(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenFinalGatherLightingUpdateSpeed; // 0x0404(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 LumenFinalGatherScreenTraces : 1; // 0x0408(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_409[0x3]; // 0x0409(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LumenMaxTraceDistance; // 0x040C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenDiffuseColorBoost; // 0x0410(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenSkylightLeaking; // 0x0414(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenFullSkylightLeakingDistance; // 0x0418(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LumenSurfaceCacheResolution; // 0x041C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReflectionMethod ReflectionMethod; // 0x0420(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReflectionsType ReflectionsType; // 0x0421(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_422[0x2]; // 0x0422(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float LumenReflectionQuality; // 0x0424(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 LumenReflectionsScreenTraces : 1; // 0x0428(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 LumenFrontLayerTranslucencyReflections : 1; // 0x0428(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_429[0x3]; // 0x0429(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LumenMaxRoughnessToTraceReflections; // 0x042C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LumenMaxReflectionBounces; // 0x0430(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LumenMaxRefractionBounces; // 0x0434(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenSpaceReflectionIntensity; // 0x0438(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenSpaceReflectionQuality; // 0x043C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenSpaceReflectionMaxRoughness; // 0x0440(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bMegaLights : 1; // 0x0444(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_445[0x3]; // 0x0445(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor AmbientCubemapTint; // 0x0448(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientCubemapIntensity; // 0x0458(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45C[0x4]; // 0x045C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTextureCube* AmbientCubemap; // 0x0460(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraShutterSpeed; // 0x0468(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraISO; // 0x046C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldFstop; // 0x0470(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldMinFstop; // 0x0474(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DepthOfFieldBladeCount; // 0x0478(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureBias; // 0x047C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureBiasBackup; // 0x0480(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverride_AutoExposureBiasBackup : 1; // 0x0484(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 BitPad_484_1 : 7; // 0x0484(0x0001)(Fixing Bit-Field Size For New Byte [ Dumper-7 ]) + uint8 Pad_485[0x3]; // 0x0485(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 AutoExposureApplyPhysicalCameraExposure : 1; // 0x0488(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_489[0x7]; // 0x0489(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* AutoExposureBiasCurve; // 0x0490(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* AutoExposureMeterMask; // 0x0498(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureLowPercent; // 0x04A0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureHighPercent; // 0x04A4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureMinBrightness; // 0x04A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureMaxBrightness; // 0x04AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureSpeedUp; // 0x04B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureSpeedDown; // 0x04B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HistogramLogMin; // 0x04B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HistogramLogMax; // 0x04BC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AutoExposureCalibrationConstant; // 0x04C0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELocalExposureMethod LocalExposureMethod; // 0x04C4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4C5[0x3]; // 0x04C5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LocalExposureContrastScale; // 0x04C8(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureHighlightContrastScale; // 0x04CC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureShadowContrastScale; // 0x04D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D4[0x4]; // 0x04D4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* LocalExposureHighlightContrastCurve; // 0x04D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* LocalExposureShadowContrastCurve; // 0x04E0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureHighlightThreshold; // 0x04E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureShadowThreshold; // 0x04EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureDetailStrength; // 0x04F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureBlurredLuminanceBlend; // 0x04F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureBlurredLuminanceKernelSizePercent; // 0x04F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LocalExposureMiddleGreyBias; // 0x04FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LensFlareIntensity; // 0x0500(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LensFlareTint; // 0x0504(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LensFlareBokehSize; // 0x0514(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LensFlareThreshold; // 0x0518(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51C[0x4]; // 0x051C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture* LensFlareBokehShape; // 0x0520(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor LensFlareTints[0x8]; // 0x0528(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VignetteIntensity; // 0x05A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Sharpen; // 0x05AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GrainJitter; // 0x05B0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GrainIntensity; // 0x05B4(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainIntensity; // 0x05B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainIntensityShadows; // 0x05BC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainIntensityMidtones; // 0x05C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainIntensityHighlights; // 0x05C4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainShadowsMax; // 0x05C8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainHighlightsMin; // 0x05CC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainHighlightsMax; // 0x05D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FilmGrainTexelSize; // 0x05D4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* FilmGrainTexture; // 0x05D8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionIntensity; // 0x05E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionStaticFraction; // 0x05E4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionRadius; // 0x05E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 AmbientOcclusionRadiusInWS : 1; // 0x05EC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_5ED[0x3]; // 0x05ED(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AmbientOcclusionFadeDistance; // 0x05F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionFadeRadius; // 0x05F4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionDistance; // 0x05F8(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionPower; // 0x05FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionBias; // 0x0600(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionQuality; // 0x0604(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionMipBlend; // 0x0608(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionMipScale; // 0x060C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionMipThreshold; // 0x0610(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AmbientOcclusionTemporalBlendWeight; // 0x0614(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 RayTracingAO : 1; // 0x0618(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_619[0x3]; // 0x0619(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 RayTracingAOSamplesPerPixel; // 0x061C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RayTracingAOIntensity; // 0x0620(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RayTracingAORadius; // 0x0624(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ColorGradingIntensity; // 0x0628(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62C[0x4]; // 0x062C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture* ColorGradingLUT; // 0x0630(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldSensorWidth; // 0x0638(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldSqueezeFactor; // 0x063C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldFocalDistance; // 0x0640(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldDepthBlurAmount; // 0x0644(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldDepthBlurRadius; // 0x0648(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 DepthOfFieldUseHairDepth : 1; // 0x064C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_64D[0x3]; // 0x064D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DepthOfFieldFocalRegion; // 0x0650(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldNearTransitionRegion; // 0x0654(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldFarTransitionRegion; // 0x0658(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldScale; // 0x065C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldNearBlurSize; // 0x0660(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldFarBlurSize; // 0x0664(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldOcclusion; // 0x0668(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldSkyFocusDistance; // 0x066C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DepthOfFieldVignetteSize; // 0x0670(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MotionBlurAmount; // 0x0674(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MotionBlurMax; // 0x0678(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MotionBlurTargetFPS; // 0x067C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MotionBlurPerObjectSize; // 0x0680(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVIntensity; // 0x0684(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVVplInjectionBias; // 0x0688(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVSize; // 0x068C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVSecondaryOcclusionIntensity; // 0x0690(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVSecondaryBounceIntensity; // 0x0694(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVGeometryVolumeBias; // 0x0698(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVEmissiveInjectionIntensity; // 0x069C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVDirectionalOcclusionIntensity; // 0x06A0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVDirectionalOcclusionRadius; // 0x06A4(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVDiffuseOcclusionExponent; // 0x06A8(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVSpecularOcclusionExponent; // 0x06AC(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVDiffuseOcclusionIntensity; // 0x06B0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVSpecularOcclusionIntensity; // 0x06B4(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETranslucencyType TranslucencyType; // 0x06B8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6B9[0x3]; // 0x06B9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RayTracingTranslucencyMaxRoughness; // 0x06BC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RayTracingTranslucencyRefractionRays; // 0x06C0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RayTracingTranslucencySamplesPerPixel; // 0x06C4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReflectedAndRefractedRayTracedShadows RayTracingTranslucencyShadows; // 0x06C8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 RayTracingTranslucencyRefraction : 1; // 0x06C9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_6CA[0x2]; // 0x06CA(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 PathTracingMaxBounces; // 0x06CC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PathTracingSamplesPerPixel; // 0x06D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PathTracingMaxPathIntensity; // 0x06D4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 PathTracingEnableEmissiveMaterials : 1; // 0x06D8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingEnableReferenceDOF : 1; // 0x06D8(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingEnableReferenceAtmosphere : 1; // 0x06D8(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingEnableDenoiser : 1; // 0x06D8(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeEmissive : 1; // 0x06D8(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeDiffuse : 1; // 0x06D8(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeIndirectDiffuse : 1; // 0x06D8(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeSpecular : 1; // 0x06D8(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeIndirectSpecular : 1; // 0x06D9(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeVolume : 1; // 0x06D9(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 PathTracingIncludeIndirectVolume : 1; // 0x06D9(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_6DA[0x2]; // 0x06DA(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float LPVFadeRange; // 0x06DC(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPVDirectionalOcclusionFadeRange; // 0x06E0(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScreenPercentage; // 0x06E4(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UserFlags; // 0x06E8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6EC[0x4]; // 0x06EC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FWeightedBlendables WeightedBlendables; // 0x06F0(0x0010)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPostProcessSettings; + +// ScriptStruct Engine.MinimalViewInfo +// 0x0830 (0x0830 - 0x0000) +struct FMinimalViewInfo final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float FOV; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DesiredFOV; // 0x0034(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FirstPersonFOV; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FirstPersonScale; // 0x003C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoWidth; // 0x0040(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoCalculateOrthoPlanes; // 0x0044(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AutoPlaneShift; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUpdateOrthoPlanes; // 0x004C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseCameraHeightAsViewTarget; // 0x004D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4E[0x2]; // 0x004E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float OrthoNearClipPlane; // 0x0050(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OrthoFarClipPlane; // 0x0054(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerspectiveNearClipPlane; // 0x0058(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AspectRatio; // 0x005C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_60[0x8]; // 0x0060(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bConstrainAspectRatio : 1; // 0x0068(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFirstPersonParameters : 1; // 0x0068(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFieldOfViewForLOD : 1; // 0x0068(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + ECameraProjectionMode ProjectionMode; // 0x006C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6D[0x3]; // 0x006D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PostProcessBlendWeight; // 0x0070(0x0004)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_74[0xC]; // 0x0074(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPostProcessSettings PostProcessSettings; // 0x0080(0x0700)(BlueprintVisible, NativeAccessSpecifierPublic) + struct FVector2D OffCenterProjectionOffset; // 0x0780(0x0010)(Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_790[0x70]; // 0x0790(0x0070)(Fixing Size After Last Property [ Dumper-7 ]) + float OverscanResolutionFraction; // 0x0800(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CropFraction; // 0x0804(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_808[0x28]; // 0x0808(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMinimalViewInfo; + +// ScriptStruct Engine.TTTrackId +// 0x0008 (0x0008 - 0x0000) +struct FTTTrackId final +{ +public: + int32 TrackType; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TrackIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTTTrackId; + +// ScriptStruct Engine.TextSizingParameters +// 0x0038 (0x0038 - 0x0000) +struct FTextSizingParameters final +{ +public: + float DrawX; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawY; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawXL; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DrawYL; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Scaling; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* DrawFont; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D SpacingAdjust; // 0x0028(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextSizingParameters; + +// ScriptStruct Engine.WrappedStringElement +// 0x0020 (0x0020 - 0x0000) +struct FWrappedStringElement final +{ +public: + class FString Value; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D LineExtent; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWrappedStringElement; + +// ScriptStruct Engine.TTTrackBase +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FTTTrackBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FName TrackName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bIsExternalCurve; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTTTrackBase; + +// ScriptStruct Engine.TTPropertyTrack +// 0x0008 (0x0020 - 0x0018) +struct FTTPropertyTrack : public FTTTrackBase +{ +public: + class FName PropertyName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FTTPropertyTrack; + +// ScriptStruct Engine.TTVectorTrack +// 0x0008 (0x0028 - 0x0020) +struct FTTVectorTrack final : public FTTPropertyTrack +{ +public: + class UCurveVector* CurveVector; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTTVectorTrack; + +// ScriptStruct Engine.CharacterNetworkSerializationPackedBits +// 0x0118 (0x0118 - 0x0000) +struct alignas(0x08) FCharacterNetworkSerializationPackedBits +{ +public: + uint8 Pad_0[0x118]; // 0x0000(0x0118)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCharacterNetworkSerializationPackedBits; + +// ScriptStruct Engine.CharacterServerMovePackedBits +// 0x0000 (0x0118 - 0x0118) +struct FCharacterServerMovePackedBits final : public FCharacterNetworkSerializationPackedBits +{ +}; +//_ASSERTS_FCharacterServerMovePackedBits; + +// ScriptStruct Engine.CharacterMoveResponsePackedBits +// 0x0000 (0x0118 - 0x0118) +struct FCharacterMoveResponsePackedBits final : public FCharacterNetworkSerializationPackedBits +{ +}; +//_ASSERTS_FCharacterMoveResponsePackedBits; + +// ScriptStruct Engine.CustomAttributeSetting +// 0x0020 (0x0020 - 0x0000) +struct FCustomAttributeSetting final +{ +public: + class FString Name; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Meaning; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCustomAttributeSetting; + +// ScriptStruct Engine.CustomAttributePerBoneData +// 0x0001 (0x0001 - 0x0000) +struct FCustomAttributePerBoneData final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCustomAttributePerBoneData; + +// ScriptStruct Engine.BakedStringCustomAttribute +// 0x0001 (0x0001 - 0x0000) +struct FBakedStringCustomAttribute final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBakedStringCustomAttribute; + +// ScriptStruct Engine.InputActionKeyMapping +// 0x0028 (0x0028 - 0x0000) +struct FInputActionKeyMapping final +{ +public: + class FName ActionName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShift : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCtrl : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlt : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCmd : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FKey Key; // 0x0010(0x0018)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputActionKeyMapping; + +// ScriptStruct Engine.BakedIntegerCustomAttribute +// 0x0001 (0x0001 - 0x0000) +struct FBakedIntegerCustomAttribute final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBakedIntegerCustomAttribute; + +// ScriptStruct Engine.BakedFloatCustomAttribute +// 0x0001 (0x0001 - 0x0000) +struct FBakedFloatCustomAttribute final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBakedFloatCustomAttribute; + +// ScriptStruct Engine.BakedCustomAttributePerBoneData +// 0x0001 (0x0001 - 0x0000) +struct FBakedCustomAttributePerBoneData final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBakedCustomAttributePerBoneData; + +// ScriptStruct Engine.DataLayerInstanceNames +// 0x0018 (0x0018 - 0x0000) +struct FDataLayerInstanceNames final +{ +public: + bool bIsFirstDataLayerExternal; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DataLayers; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FDataLayerInstanceNames; + +// ScriptStruct Engine.DebugTextInfo +// 0x0080 (0x0080 - 0x0000) +struct FDebugTextInfo final +{ +public: + class AActor* SrcActor; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SrcActorOffset; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SrcActorDesiredOffset; // 0x0020(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DebugText; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeRemaining; // 0x0048(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float duration; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor TextColor; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAbsoluteLocation : 1; // 0x0054(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bKeepAttachedToActor : 1; // 0x0054(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDrawShadow : 1; // 0x0054(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_55[0x3]; // 0x0055(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OrigActorLocation; // 0x0058(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* Font; // 0x0070(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FontScale; // 0x0078(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDebugTextInfo; + +// ScriptStruct Engine.RawDistributionFloat +// 0x0010 (0x0030 - 0x0020) +struct FRawDistributionFloat final : public FRawDistribution +{ +public: + float MinValue; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaxValue; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDistributionFloat* Distribution; // 0x0028(0x0008)(Edit, ExportObject, ZeroConstructor, InstancedReference, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRawDistributionFloat; + +// ScriptStruct Engine.RawDistributionVector +// 0x0040 (0x0060 - 0x0020) +struct FRawDistributionVector final : public FRawDistribution +{ +public: + float MinValue; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float MaxValue; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FVector MinValueVec; // 0x0028(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FVector MaxValueVec; // 0x0040(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UDistributionVector* Distribution; // 0x0058(0x0008)(Edit, ExportObject, ZeroConstructor, InstancedReference, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRawDistributionVector; + +// ScriptStruct Engine.EdGraphPinReference +// 0x0018 (0x0018 - 0x0000) +struct FEdGraphPinReference final +{ +public: + TWeakObjectPtr OwningNode; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid PinId; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FEdGraphPinReference; + +// ScriptStruct Engine.EdGraphSchemaAction +// 0x00E0 (0x00E0 - 0x0000) +struct FEdGraphSchemaAction +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FText MenuDescription; // 0x0008(0x0010)(NativeAccessSpecifierPrivate) + class FText TooltipDescription; // 0x0018(0x0010)(NativeAccessSpecifierPrivate) + class FText Category; // 0x0028(0x0010)(NativeAccessSpecifierPrivate) + class FText Keywords; // 0x0038(0x0010)(NativeAccessSpecifierPrivate) + int32 Grouping; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SectionID; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray MenuDescriptionArray; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FullSearchTitlesArray; // 0x0060(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FullSearchKeywordsArray; // 0x0070(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray FullSearchCategoryArray; // 0x0080(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LocalizedMenuDescriptionArray; // 0x0090(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LocalizedFullSearchTitlesArray; // 0x00A0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LocalizedFullSearchKeywordsArray; // 0x00B0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LocalizedFullSearchCategoryArray; // 0x00C0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FString SearchText; // 0x00D0(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEdGraphSchemaAction; + +// ScriptStruct Engine.EdGraphSchemaAction_NewNode +// 0x0008 (0x00E8 - 0x00E0) +struct FEdGraphSchemaAction_NewNode final : public FEdGraphSchemaAction +{ +public: + class UEdGraphNode* NodeTemplate; // 0x00E0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEdGraphSchemaAction_NewNode; + +// ScriptStruct Engine.FullyLoadedPackagesInfo +// 0x0038 (0x0038 - 0x0000) +struct FFullyLoadedPackagesInfo final +{ +public: + EFullyLoadPackageType FullyLoadType; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Tag; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PackagesToLoad; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LoadedObjects; // 0x0028(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFullyLoadedPackagesInfo; + +// ScriptStruct Engine.LevelStreamingStatus +// 0x0010 (0x0010 - 0x0000) +struct FLevelStreamingStatus final +{ +public: + class FName PackageName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShouldBeLoaded : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldBeVisible : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 LODIndex; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLevelStreamingStatus; + +// ScriptStruct Engine.IrisNetDriverConfig +// 0x0028 (0x0028 - 0x0000) +struct FIrisNetDriverConfig final +{ +public: + class FName NetDriverDefinition; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NetDriverName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NetDriverWildcardName; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCanUseIris; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FIrisNetDriverConfig; + +// ScriptStruct Engine.NamedNetDriver +// 0x0010 (0x0010 - 0x0000) +struct FNamedNetDriver final +{ +public: + class UNetDriver* NetDriver; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNamedNetDriver; + +// ScriptStruct Engine.URL +// 0x0068 (0x0068 - 0x0000) +struct FURL final +{ +public: + class FString protocol; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Host; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Port; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Valid; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Map; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString RedirectURL; // 0x0038(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Op; // 0x0048(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FString Portal; // 0x0058(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FURL; + +// ScriptStruct Engine.WorldContext +// 0x02C8 (0x02C8 - 0x0000) +struct FWorldContext final +{ +public: + uint8 Pad_0[0xC0]; // 0x0000(0x00C0)(Fixing Size After Last Property [ Dumper-7 ]) + struct FURL LastURL; // 0x00C0(0x0068)(NativeAccessSpecifierPublic) + struct FURL LastRemoteURL; // 0x0128(0x0068)(NativeAccessSpecifierPublic) + class UPendingNetGame* PendingNetGame; // 0x0190(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PackagesToFullyLoad; // 0x0198(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_1A8[0x10]; // 0x01A8(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray LoadedLevelsForPendingMapChange; // 0x01B8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_1C8[0x18]; // 0x01C8(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectReferencers; // 0x01E0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray PendingLevelStreamingStatusUpdates; // 0x01F0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class UGameViewportClient* GameViewport; // 0x0200(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UGameInstance* OwningGameInstance; // 0x0208(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ActiveNetDrivers; // 0x0210(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + uint8 Pad_220[0xA8]; // 0x0220(0x00A8)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldContext; + +// ScriptStruct Engine.StatColorMapEntry +// 0x0008 (0x0008 - 0x0000) +struct FStatColorMapEntry final +{ +public: + float In; // 0x0000(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor Out; // 0x0004(0x0004)(ZeroConstructor, Config, GlobalConfig, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStatColorMapEntry; + +// ScriptStruct Engine.StatColorMapping +// 0x0028 (0x0028 - 0x0000) +struct FStatColorMapping final +{ +public: + class FString StatName; // 0x0000(0x0010)(ZeroConstructor, Config, GlobalConfig, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ColorMap; // 0x0010(0x0010)(ZeroConstructor, Config, GlobalConfig, NativeAccessSpecifierPublic) + uint8 DisableBlend : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, GlobalConfig, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStatColorMapping; + +// ScriptStruct Engine.DropNoteInfo +// 0x0040 (0x0040 - 0x0000) +struct FDropNoteInfo final +{ +public: + struct FVector Location; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class FString Comment; // 0x0030(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDropNoteInfo; + +// ScriptStruct Engine.ScreenMessageString +// 0x0038 (0x0038 - 0x0000) +struct FScreenMessageString final +{ +public: + uint64 Key; // 0x0000(0x0008)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ScreenMessage; // 0x0008(0x0010)(ZeroConstructor, Transient, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor DisplayColor; // 0x0018(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeToDisplay; // 0x001C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CurrentTimeDisplayed; // 0x0020(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D TextScale; // 0x0028(0x0010)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FScreenMessageString; + +// ScriptStruct Engine.GameNameRedirect +// 0x0010 (0x0010 - 0x0000) +struct FGameNameRedirect final +{ +public: + class FName OldGameName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewGameName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGameNameRedirect; + +// ScriptStruct Engine.ClassRedirect +// 0x003C (0x003C - 0x0000) +struct FClassRedirect final +{ +public: + class FName ObjectName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OldClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewClassName; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName OldSubobjName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewSubobjName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewClassClass; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewClassPackage; // 0x0030(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool InstanceOnly; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FClassRedirect; + +// ScriptStruct Engine.StructRedirect +// 0x0010 (0x0010 - 0x0000) +struct FStructRedirect final +{ +public: + class FName OldStructName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewStructName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStructRedirect; + +// ScriptStruct Engine.PluginRedirect +// 0x0020 (0x0020 - 0x0000) +struct FPluginRedirect final +{ +public: + class FString OldPluginName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewPluginName; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPluginRedirect; + +// ScriptStruct Engine.TickPrerequisite +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FTickPrerequisite final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTickPrerequisite; + +// ScriptStruct Engine.ExposureSettings +// 0x0008 (0x0008 - 0x0000) +struct FExposureSettings final +{ +public: + float FixedEV100; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFixed; // 0x0004(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FExposureSettings; + +// ScriptStruct Engine.MaterialShadingModelField +// 0x0002 (0x0002 - 0x0000) +struct FMaterialShadingModelField final +{ +public: + uint16 ShadingModelField; // 0x0000(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FMaterialShadingModelField; + +// ScriptStruct Engine.RigidBodyErrorCorrection +// 0x0034 (0x0034 - 0x0000) +struct FRigidBodyErrorCorrection final +{ +public: + float PingExtrapolation; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PingLimit; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorPerLinearDifference; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorPerAngularDifference; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxRestoredStateError; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxLinearHardSnapDistance; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PositionLerp; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngleLerp; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearVelocityCoefficient; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularVelocityCoefficient; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorAccumulationSeconds; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorAccumulationDistanceSq; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ErrorAccumulationSimilarity; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRigidBodyErrorCorrection; + +// ScriptStruct Engine.RigidBodyContactInfo +// 0x0048 (0x0048 - 0x0000) +struct FRigidBodyContactInfo final +{ +public: + struct FVector ContactPosition; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ContactNormal; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactPenetration; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bContactProbe; // 0x0034(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicalMaterial* PhysMaterial[0x2]; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRigidBodyContactInfo; + +// ScriptStruct Engine.CollisionImpactData +// 0x0048 (0x0048 - 0x0000) +struct FCollisionImpactData final +{ +public: + TArray ContactInfos; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FVector TotalNormalImpulse; // 0x0010(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TotalFrictionImpulse; // 0x0028(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsVelocityDeltaUnderThreshold; // 0x0040(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCollisionImpactData; + +// ScriptStruct Engine.FractureEffect +// 0x0010 (0x0010 - 0x0000) +struct FFractureEffect final +{ +public: + class UParticleSystem* ParticleSystem; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundBase* Sound; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFractureEffect; + +// ScriptStruct Engine.LightmassLightSettings +// 0x000C (0x000C - 0x0000) +struct FLightmassLightSettings +{ +public: + float IndirectLightingSaturation; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShadowExponent; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseAreaShadowsForStationaryLight; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLightmassLightSettings; + +// ScriptStruct Engine.LightmassPointLightSettings +// 0x0000 (0x000C - 0x000C) +struct FLightmassPointLightSettings final : public FLightmassLightSettings +{ +}; +//_ASSERTS_FLightmassPointLightSettings; + +// ScriptStruct Engine.BuildPromotionOpenAssetSettings +// 0x0060 (0x0060 - 0x0000) +struct FBuildPromotionOpenAssetSettings final +{ +public: + struct FFilePath BlueprintAsset; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath MaterialAsset; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath ParticleSystemAsset; // 0x0020(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath SkeletalMeshAsset; // 0x0030(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath StaticMeshAsset; // 0x0040(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath TextureAsset; // 0x0050(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBuildPromotionOpenAssetSettings; + +// ScriptStruct Engine.LightmassDirectionalLightSettings +// 0x0004 (0x0010 - 0x000C) +struct FLightmassDirectionalLightSettings final : public FLightmassLightSettings +{ +public: + float LightSourceAngle; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLightmassDirectionalLightSettings; + +// ScriptStruct Engine.VolumetricLightMapGridCell +// 0x0070 (0x0070 - 0x0000) +struct FVolumetricLightMapGridCell final +{ +public: + struct FBox Bounds; // 0x0000(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_38[0x30]; // 0x0038(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 CellID; // 0x0068(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FVolumetricLightMapGridCell; + +// ScriptStruct Engine.LightmassPrimitiveSettings +// 0x0018 (0x0018 - 0x0000) +struct FLightmassPrimitiveSettings final +{ +public: + uint8 bUseTwoSidedLighting : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShadowIndirectOnly : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseEmissiveForStaticLighting : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseVertexNormalForHemisphereGather : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float EmissiveLightFalloffExponent; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmissiveLightExplicitInfluenceRadius; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmissiveBoost; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DiffuseBoost; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FullyOccludedSamplesFraction; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLightmassPrimitiveSettings; + +// ScriptStruct Engine.LightmassDebugOptions +// 0x0010 (0x0010 - 0x0000) +struct FLightmassDebugOptions final +{ +public: + uint8 bDebugMode : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStatsEnabled : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGatherBSPSurfacesAcrossComponents : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float CoplanarTolerance; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseImmediateImport : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bImmediateProcessMappings : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSortMappings : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDumpBinaryFiles : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDebugMaterials : 1; // 0x0008(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPadMappings : 1; // 0x0008(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDebugPaddings : 1; // 0x0008(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOnlyCalcDebugTexelMappings : 1; // 0x0008(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseRandomColors : 1; // 0x0009(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bColorBordersGreen : 1; // 0x0009(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bColorByExecutionTime : 1; // 0x0009(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ExecutionTimeDivisor; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLightmassDebugOptions; + +// ScriptStruct Engine.GaussianSumBloomSettings +// 0x0084 (0x0084 - 0x0000) +struct FGaussianSumBloomSettings final +{ +public: + float Intensity; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Threshold; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SizeScale; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter1Size; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter2Size; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter3Size; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter4Size; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter5Size; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Filter6Size; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter1Tint; // 0x0024(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter2Tint; // 0x0034(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter3Tint; // 0x0044(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter4Tint; // 0x0054(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter5Tint; // 0x0064(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Filter6Tint; // 0x0074(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGaussianSumBloomSettings; + +// ScriptStruct Engine.ConvolutionBloomSettings +// 0x0030 (0x0030 - 0x0000) +struct FConvolutionBloomSettings final +{ +public: + class UTexture2D* Texture; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScatterDispersion; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Size; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D CenterUV; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreFilterMin; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreFilterMax; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PreFilterMult; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BufferScale; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FConvolutionBloomSettings; + +// ScriptStruct Engine.LensBloomSettings +// 0x00C0 (0x00C0 - 0x0000) +struct FLensBloomSettings final +{ +public: + struct FGaussianSumBloomSettings GaussianSum; // 0x0000(0x0084)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FConvolutionBloomSettings Convolution; // 0x0088(0x0030)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + EBloomMethod Method; // 0x00B8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B9[0x7]; // 0x00B9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLensBloomSettings; + +// ScriptStruct Engine.LensSettings +// 0x00E8 (0x00E8 - 0x0000) +struct FLensSettings final +{ +public: + struct FLensBloomSettings Bloom; // 0x0000(0x00C0)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + struct FLensImperfectionSettings Imperfections; // 0x00C0(0x0020)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + float ChromaticAberration; // 0x00E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E4[0x4]; // 0x00E4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLensSettings; + +// ScriptStruct Engine.SwarmDebugOptions +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FSwarmDebugOptions final +{ +public: + uint8 bDistributionEnabled : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceContentExport : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInitialized : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSwarmDebugOptions; + +// ScriptStruct Engine.BlueprintEditorPromotionSettings +// 0x0030 (0x0030 - 0x0000) +struct FBlueprintEditorPromotionSettings final +{ +public: + struct FFilePath FirstMeshPath; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath SecondMeshPath; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath DefaultParticleAsset; // 0x0020(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintEditorPromotionSettings; + +// ScriptStruct Engine.MTDResult +// 0x0020 (0x0020 - 0x0000) +struct FMTDResult final +{ +public: + struct FVector Direction; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Distance; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMTDResult; + +// ScriptStruct Engine.AnimUpdateRateParameters +// 0x0088 (0x0088 - 0x0000) +struct FAnimUpdateRateParameters final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + EUpdateRateShiftBucket ShiftBucket; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bInterpolateSkippedFrames : 1; // 0x0002(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldUseLodMap : 1; // 0x0002(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bShouldUseMinLod : 1; // 0x0002(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipUpdate : 1; // 0x0002(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipEvaluation : 1; // 0x0002(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 UpdateRate; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EvaluationRate; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TickedPoseOffestTime; // 0x000C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdditionalTime; // 0x0010(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 BaseNonRenderedUpdateRate; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxEvalRateForInterpolation; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray BaseVisibleDistanceFactorThesholds; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TMap LODToFrameSkipMap; // 0x0030(0x0050)(NativeAccessSpecifierPublic) + int32 SkippedUpdateFrames; // 0x0080(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SkippedEvalFrames; // 0x0084(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimUpdateRateParameters; + +// ScriptStruct Engine.TimelineLinearColorTrack +// 0x0040 (0x0040 - 0x0000) +struct FTimelineLinearColorTrack final +{ +public: + class UCurveLinearColor* LinearColorCurve; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName LinearColorPropertyName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimelineLinearColorTrack; + +// ScriptStruct Engine.POV +// 0x0038 (0x0038 - 0x0000) +struct FPOV final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float FOV; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPOV; + +// ScriptStruct Engine.TextureSourceLayerColorInfo +// 0x0020 (0x0020 - 0x0000) +struct FTextureSourceLayerColorInfo final +{ +public: + struct FLinearColor ColorMin; // 0x0000(0x0010)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ColorMax; // 0x0010(0x0010)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextureSourceLayerColorInfo; + +// ScriptStruct Engine.MeshBuildSettings +// 0x0048 (0x0048 - 0x0000) +struct FMeshBuildSettings final +{ +public: + uint8 bUseMikkTSpace : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecomputeNormals : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecomputeTangents : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeWeightedNormals : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRemoveDegenerates : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBuildReversedIndexBuffer : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHighPrecisionTangentBasis : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFullPrecisionUVs : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseBackwardsCompatibleF16TruncUVs : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateLightmapUVs : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateDistanceFieldAsIfTwoSided : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportFaceRemap : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MinLightmapResolution; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SrcLightmapIndex; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DstLightmapIndex; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BuildScale; // 0x0010(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector BuildScale3D; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldResolutionScale; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UStaticMesh* DistanceFieldReplacementMesh; // 0x0038(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxLumenMeshCards; // 0x0040(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshBuildSettings; + +// ScriptStruct Engine.SkeletalMeshBuildSettings +// 0x0018 (0x0018 - 0x0000) +struct FSkeletalMeshBuildSettings final +{ +public: + uint8 bRecomputeNormals : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecomputeTangents : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseMikkTSpace : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeWeightedNormals : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRemoveDegenerates : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHighPrecisionTangentBasis : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHighPrecisionSkinWeights : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFullPrecisionUVs : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseBackwardsCompatibleF16TruncUVs : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ThresholdPosition; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ThresholdTangentNormal; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ThresholdUV; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MorphThresholdPosition; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BoneInfluenceLimit; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshBuildSettings; + +// ScriptStruct Engine.MeshDisplacementMap +// 0x0010 (0x0010 - 0x0000) +struct FMeshDisplacementMap final +{ +public: + class UTexture2D* Texture; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Magnitude; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Center; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshDisplacementMap; + +// ScriptStruct Engine.PhysicalAnimationData +// 0x0024 (0x0024 - 0x0000) +struct FPhysicalAnimationData final +{ +public: + class FName BodyName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIsLocalSimulation : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float OrientationStrength; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularVelocityStrength; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PositionStrength; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VelocityStrength; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxLinearForce; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAngularForce; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicalAnimationData; + +// ScriptStruct Engine.PhysicalAnimationProfile +// 0x002C (0x002C - 0x0000) +struct FPhysicalAnimationProfile final +{ +public: + class FName ProfileName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPhysicalAnimationData PhysicalAnimationData; // 0x0008(0x0024)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicalAnimationProfile; + +// ScriptStruct Engine.MeshNaniteSettings +// 0x0040 (0x0040 - 0x0000) +struct FMeshNaniteSettings final +{ +public: + uint8 bEnabled : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPreserveArea : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bExplicitTangents : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLerpUVs : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 PositionPrecision; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NormalPrecision; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TangentPrecision; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 TargetMinimumResidencyInKB; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float KeepPercentTriangles; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TrimRelativeError; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENaniteFallbackTarget FallbackTarget; // 0x001C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FallbackPercentTriangles; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FallbackRelativeError; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxEdgeLengthFactor; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DisplacementUVChannel; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray DisplacementMaps; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshNaniteSettings; + +// ScriptStruct Engine.TextureFormatSettings +// 0x0002 (0x0002 - 0x0000) +struct FTextureFormatSettings final +{ +public: + ETextureCompressionSettings CompressionSettings; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 CompressionNoAlpha : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CompressionForceAlpha : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CompressionNone : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CompressionYCoCg : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 SRGB : 1; // 0x0001(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) +}; +//_ASSERTS_FTextureFormatSettings; + +// ScriptStruct Engine.DisplacementScaling +// 0x0008 (0x0008 - 0x0000) +struct FDisplacementScaling final +{ +public: + float Magnitude; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Center; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDisplacementScaling; + +// ScriptStruct Engine.SceneViewExtensionIsActiveFunctor +// 0x0050 (0x0050 - 0x0000) +struct alignas(0x10) FSceneViewExtensionIsActiveFunctor final +{ +public: + uint8 Pad_0[0x50]; // 0x0000(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSceneViewExtensionIsActiveFunctor; + +// ScriptStruct Engine.DisplacementFadeRange +// 0x0008 (0x0008 - 0x0000) +struct FDisplacementFadeRange final +{ +public: + float StartSizePixels; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndSizePixels; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDisplacementFadeRange; + +// ScriptStruct Engine.ConstrainComponentPropName +// 0x0008 (0x0008 - 0x0000) +struct FConstrainComponentPropName final +{ +public: + class FName ComponentName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FConstrainComponentPropName; + +// ScriptStruct Engine.CollectionReference +// 0x0008 (0x0008 - 0x0000) +struct FCollectionReference final +{ +public: + class FName CollectionName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollectionReference; + +// ScriptStruct Engine.Redirector +// 0x0010 (0x0010 - 0x0000) +struct FRedirector final +{ +public: + class FName OldName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NewName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRedirector; + +// ScriptStruct Engine.MeshDeformerInstanceSet +// 0x0020 (0x0020 - 0x0000) +struct FMeshDeformerInstanceSet final +{ +public: + TArray DeformerInstances; // 0x0000(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshDeformerInstanceSet; + +// ScriptStruct Engine.CanvasUVTri +// 0x0090 (0x0090 - 0x0000) +struct FCanvasUVTri final +{ +public: + struct FVector2D V0_Pos; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V0_UV; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V0_Color; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V1_Pos; // 0x0030(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V1_UV; // 0x0040(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V1_Color; // 0x0050(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V2_Pos; // 0x0060(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D V2_UV; // 0x0070(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor V2_Color; // 0x0080(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCanvasUVTri; + +// ScriptStruct Engine.ExponentialHeightFogData +// 0x000C (0x000C - 0x0000) +struct FExponentialHeightFogData final +{ +public: + float FogDensity; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogHeightFalloff; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FogHeightOffset; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FExponentialHeightFogData; + +// ScriptStruct Engine.SkeletalMeshComponentInstanceData +// 0x0008 (0x00C0 - 0x00B8) +struct FSkeletalMeshComponentInstanceData final : public FSceneComponentInstanceData +{ +public: + uint8 Pad_B8[0x8]; // 0x00B8(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshComponentInstanceData; + +// ScriptStruct Engine.ExternalDataLayerUID +// 0x0004 (0x0004 - 0x0000) +struct FExternalDataLayerUID final +{ +public: + uint32 Value; // 0x0000(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FExternalDataLayerUID; + +// ScriptStruct Engine.ExternalSpatialAccelerationPayload +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x04) FExternalSpatialAccelerationPayload final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FExternalSpatialAccelerationPayload; + +// ScriptStruct Engine.ShaderCompilerMaterialCounters +// 0x0028 (0x0028 - 0x0000) +struct FShaderCompilerMaterialCounters final +{ +public: + uint8 Pad_0[0x4]; // 0x0000(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MaterialTranslateCalls; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaterialTranslateTotalTimeSec; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaterialTranslateTranslationOnlyTimeSec; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MaterialTranslateSerializationOnlyTimeSec; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaterialCacheHits; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FShaderCompilerMaterialCounters; + +// ScriptStruct Engine.FontImportOptionsData +// 0x00B0 (0x00B0 - 0x0000) +struct FFontImportOptionsData final +{ +public: + class FString FontName; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Height; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableAntialiasing : 1; // 0x0014(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableBold : 1; // 0x0014(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableItalic : 1; // 0x0014(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableUnderline : 1; // 0x0014(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlphaOnly : 1; // 0x0014(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EFontImportCharacterSet CharacterSet; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Chars; // 0x0020(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString UnicodeRange; // 0x0030(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString CharsFilePath; // 0x0040(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString CharsFileWildcard; // 0x0050(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCreatePrintableOnly : 1; // 0x0060(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIncludeASCIIRange : 1; // 0x0060(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor ForegroundColor; // 0x0064(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableDropShadow : 1; // 0x0074(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_75[0x3]; // 0x0075(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TexturePageWidth; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TexturePageMaxHeight; // 0x007C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 XPadding; // 0x0080(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 YPadding; // 0x0084(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ExtendBoxTop; // 0x0088(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ExtendBoxBottom; // 0x008C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ExtendBoxRight; // 0x0090(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ExtendBoxLeft; // 0x0094(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bEnableLegacyMode : 1; // 0x0098(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_99[0x3]; // 0x0099(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Kerning; // 0x009C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseDistanceFieldAlpha : 1; // 0x00A0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_A1[0x3]; // 0x00A1(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DistanceFieldScaleFactor; // 0x00A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DistanceFieldScanRadiusScale; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AC[0x4]; // 0x00AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FFontImportOptionsData; + +// ScriptStruct Engine.BaseAttenuationSettings +// 0x00C0 (0x00C0 - 0x0000) +struct FBaseAttenuationSettings +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EAttenuationDistanceModel DistanceAlgorithm; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAttenuationShape AttenuationShape; // 0x0009(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENaturalSoundFalloffMode FalloffMode; // 0x000A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float dBAttenuationAtMax; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector AttenuationShapeExtents; // 0x0010(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeOffset; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FalloffDistance; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeSphereRadius; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeSphereFalloffDistance; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve CustomAttenuationCurve; // 0x0038(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBaseAttenuationSettings; + +// ScriptStruct Engine.SkelMeshComponentLODInfo +// 0x0028 (0x0028 - 0x0000) +struct FSkelMeshComponentLODInfo final +{ +public: + TArray HiddenMaterials; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_10[0x18]; // 0x0010(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkelMeshComponentLODInfo; + +// ScriptStruct Engine.ForceFeedbackAttenuationSettings +// 0x0000 (0x00C0 - 0x00C0) +struct FForceFeedbackAttenuationSettings final : public FBaseAttenuationSettings +{ +}; +//_ASSERTS_FForceFeedbackAttenuationSettings; + +// ScriptStruct Engine.ForceFeedbackParameters +// 0x000C (0x000C - 0x0000) +struct FForceFeedbackParameters final +{ +public: + class FName Tag; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLooping; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnoreTimeDilation; // 0x0009(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPlayWhilePaused; // 0x000A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FForceFeedbackParameters; + +// ScriptStruct Engine.SoundGroup +// 0x0020 (0x0020 - 0x0000) +struct FSoundGroup final +{ +public: + ESoundGroup SoundGroup; // 0x0000(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString DisplayName; // 0x0008(0x0010)(ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAlwaysDecompressOnLoad : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DecompressedDuration; // 0x001C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundGroup; + +// ScriptStruct Engine.PredictProjectilePathParams +// 0x0078 (0x0078 - 0x0000) +struct FPredictProjectilePathParams final +{ +public: + struct FVector StartLocation; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LaunchVelocity; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceWithCollision; // 0x0030(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ProjectileRadius; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSimTime; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceWithChannel; // 0x003C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel TraceChannel; // 0x003D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3E[0x2]; // 0x003E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjectTypes; // 0x0040(0x0010)(Edit, BlueprintVisible, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + TArray ActorsToIgnore; // 0x0050(0x0010)(Edit, BlueprintVisible, ZeroConstructor, AdvancedDisplay, UObjectWrapper, NativeAccessSpecifierPublic) + float SimFrequency; // 0x0060(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideGravityZ; // 0x0064(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDrawDebugTrace DrawDebugType; // 0x0068(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x3]; // 0x0069(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DrawDebugTime; // 0x006C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceComplex; // 0x0070(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPredictProjectilePathParams; + +// ScriptStruct Engine.PredictProjectilePathPointData +// 0x0038 (0x0038 - 0x0000) +struct FPredictProjectilePathPointData final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Velocity; // 0x0018(0x0018)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Time; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPredictProjectilePathPointData; + +// ScriptStruct Engine.SoftWorldReference +// 0x0028 (0x0028 - 0x0000) +struct FSoftWorldReference final +{ +public: + TSoftObjectPtr WorldAsset; // 0x0000(0x0028)(Edit, BlueprintVisible, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoftWorldReference; + +// ScriptStruct Engine.PredictProjectilePathResult +// 0x0148 (0x0148 - 0x0000) +struct FPredictProjectilePathResult final +{ +public: + TArray PathData; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPublic) + struct FPredictProjectilePathPointData LastTraceDestination; // 0x0010(0x0038)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NoDestructor, NativeAccessSpecifierPublic) + struct FHitResult HitResult; // 0x0048(0x0100)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPredictProjectilePathResult; + +// ScriptStruct Engine.ActiveHapticFeedbackEffect +// 0x0048 (0x0048 - 0x0000) +struct FActiveHapticFeedbackEffect final +{ +public: + class UHapticFeedbackEffect_Base* HapticEffect; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x40]; // 0x0008(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActiveHapticFeedbackEffect; + +// ScriptStruct Engine.SkeletalMeshSourceModel +// 0x0060 (0x0060 - 0x0000) +struct FSkeletalMeshSourceModel final +{ +public: + int32 TriangleCount; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 vertexcount; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FBoxSphereBounds Bounds; // 0x0008(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPrivate) + TArray CachedSkinWeightProfileNames; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray CachedMorphTargetNames; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FSkeletalMeshSourceModel; + +// ScriptStruct Engine.HapticFeedbackDetails_Curve +// 0x0110 (0x0110 - 0x0000) +struct FHapticFeedbackDetails_Curve final +{ +public: + struct FRuntimeFloatCurve Frequency; // 0x0000(0x0088)(Edit, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve Amplitude; // 0x0088(0x0088)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHapticFeedbackDetails_Curve; + +// ScriptStruct Engine.VirtualTextureBuildSettings +// 0x0008 (0x0008 - 0x0000) +struct FVirtualTextureBuildSettings final +{ +public: + int32 TileSize; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TileBorderSize; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVirtualTextureBuildSettings; + +// ScriptStruct Engine.ClusterNode_DEPRECATED +// 0x0028 (0x0028 - 0x0000) +struct FClusterNode_DEPRECATED final +{ +public: + struct FVector3f BoundMin; // 0x0000(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FirstChild; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f BoundMax; // 0x0010(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LastChild; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FirstInstance; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LastInstance; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClusterNode_DEPRECATED; + +// ScriptStruct Engine.ClusterNode +// 0x0040 (0x0040 - 0x0000) +struct FClusterNode final +{ +public: + struct FVector3f BoundMin; // 0x0000(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FirstChild; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f BoundMax; // 0x0010(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LastChild; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FirstInstance; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LastInstance; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f MinInstanceScale; // 0x0028(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector3f MaxInstanceScale; // 0x0034(0x000C)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClusterNode; + +// ScriptStruct Engine.ISMComponentDescriptorBase +// 0x01C8 (0x01C8 - 0x0000) +struct FISMComponentDescriptorBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 Hash; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf ComponentClass; // 0x0010(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EComponentMobility Mobility; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureMainPassType VirtualTextureRenderPassType; // 0x0019(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELightmapType LightmapType; // 0x001A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightingChannels LightingChannels; // 0x001B(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + int32 RayTracingGroupId; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERayTracingGroupCullingPriority RayTracingGroupCullingPriority; // 0x0020(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EHasCustomNavigableGeometry bHasCustomNavigableGeometry; // 0x0021(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERendererStencilMask CustomDepthStencilWriteMask; // 0x0022(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23[0x5]; // 0x0023(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBodyInstance BodyInstance; // 0x0028(0x0178)(Edit, NativeAccessSpecifierPublic) + int32 InstanceStartCullDistance; // 0x01A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceEndCullDistance; // 0x01A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InstanceLODDistanceScale; // 0x01A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VirtualTextureCullMips; // 0x01AC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TranslucencySortPriority; // 0x01B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OverriddenLightMapRes; // 0x01B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CustomDepthStencilValue; // 0x01B8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCastShadow : 1; // 0x01BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmissiveLightSource : 1; // 0x01BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDynamicShadow : 1; // 0x01BC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastStaticShadow : 1; // 0x01BC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastContactShadow : 1; // 0x01BC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowAsTwoSided : 1; // 0x01BC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastHiddenShadow : 1; // 0x01BC(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDynamicIndirectLighting : 1; // 0x01BC(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDynamicIndirectLightingWhileHidden : 1; // 0x01BD(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDistanceFieldLighting : 1; // 0x01BD(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReceivesDecals : 1; // 0x01BD(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideLightMapRes : 1; // 0x01BD(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAsOccluder : 1; // 0x01BD(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDensityScaling : 1; // 0x01BD(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDiscardOnLoad : 1; // 0x01BD(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderCustomDepth : 1; // 0x01BD(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInRayTracing : 1; // 0x01BE(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHiddenInGame : 1; // 0x01BE(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsEditorOnly : 1; // 0x01BE(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisible : 1; // 0x01BE(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEvaluateWorldPositionOffset : 1; // 0x01BE(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReverseCulling : 1; // 0x01BE(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseGpuLodSelection : 1; // 0x01BE(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseDefaultCollision : 1; // 0x01BE(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateOverlapEvents : 1; // 0x01BF(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideNavigationExport : 1; // 0x01BF(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceNavigationObstacle : 1; // 0x01BF(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFillCollisionUnderneathForNavmesh : 1; // 0x01BF(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + int32 WorldPositionOffsetDisableDistance; // 0x01C0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EShadowCacheInvalidationBehavior ShadowCacheInvalidationBehavior; // 0x01C4(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetailMode DetailMode; // 0x01C5(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C6[0x2]; // 0x01C6(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FISMComponentDescriptorBase; + +// ScriptStruct Engine.SoundWaveSpectralDataEntry +// 0x0008 (0x0008 - 0x0000) +struct FSoundWaveSpectralDataEntry final +{ +public: + float Magnitude; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalizedMagnitude; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundWaveSpectralDataEntry; + +// ScriptStruct Engine.ISMComponentDescriptor +// 0x0030 (0x01F8 - 0x01C8) +struct FISMComponentDescriptor : public FISMComponentDescriptorBase +{ +public: + class UStaticMesh* StaticMesh; // 0x01C8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OverrideMaterials; // 0x01D0(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UMaterialInterface* OverlayMaterial; // 0x01E0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RuntimeVirtualTextures; // 0x01E8(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FISMComponentDescriptor; + +// ScriptStruct Engine.EndPhysicsTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FEndPhysicsTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEndPhysicsTickFunction; + +// ScriptStruct Engine.HLODISMComponentDescriptor +// 0x0000 (0x01F8 - 0x01F8) +struct FHLODISMComponentDescriptor final : public FISMComponentDescriptor +{ +}; +//_ASSERTS_FHLODISMComponentDescriptor; + +// ScriptStruct Engine.MeshApproximationSettings +// 0x0128 (0x0128 - 0x0000) +struct FMeshApproximationSettings final +{ +public: + EMeshApproximationType OutputType; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ApproximationAccuracy; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ClampVoxelDimension; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAttemptAutoThickening; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TargetMinThicknessMultiplier; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIgnoreTinyParts; // 0x0014(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float TinyPartSizeMultiplier; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshApproximationBaseCappingType BaseCapping; // 0x001C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float WindingThreshold; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bFillGaps; // 0x0024(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float GapDistance; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EOccludedGeometryFilteringPolicy OcclusionMethod; // 0x002C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOccludeFromBottom; // 0x002D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshApproximationSimplificationPolicy SimplifyMethod; // 0x002E(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2F[0x1]; // 0x002F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TargetTriCount; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TrianglesPerM; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GeometricDeviation; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshApproximationGroundPlaneClippingPolicy GroundClipping; // 0x003C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float GroundClippingZHeight; // 0x0040(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEstimateHardNormals; // 0x0044(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float HardNormalAngle; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshApproximationUVGenerationPolicy UVGenerationMethod; // 0x004C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4D[0x3]; // 0x004D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 InitialPatchCount; // 0x0050(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CurvatureAlignment; // 0x0054(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MergingThreshold; // 0x0058(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxAngleDeviation; // 0x005C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bGenerateNaniteEnabledMesh; // 0x0060(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENaniteFallbackTarget NaniteFallbackTarget; // 0x0061(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x2]; // 0x0062(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float NaniteFallbackPercentTriangles; // 0x0064(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NaniteFallbackRelativeError; // 0x0068(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSupportRayTracing; // 0x006C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAllowDistanceField; // 0x006D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6E[0x2]; // 0x006E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 MultiSamplingAA; // 0x0070(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RenderCaptureResolution; // 0x0074(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialProxySettings MaterialSettings; // 0x0078(0x00A0)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + float CaptureFieldOfView; // 0x0118(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NearPlaneDist; // 0x011C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseRenderLODMeshes; // 0x0120(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableSimplifyPrePass; // 0x0121(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableParallelBaking; // 0x0122(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPrintDebugMessages; // 0x0123(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEmitFullDebugMesh; // 0x0124(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_125[0x3]; // 0x0125(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshApproximationSettings; + +// ScriptStruct Engine.MeshProxySettings +// 0x0100 (0x0100 - 0x0000) +struct FMeshProxySettings final +{ +public: + int32 ScreenSize; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VoxelSize; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialProxySettings MaterialSettings; // 0x0008(0x00A0)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + float MergeDistance; // 0x00A8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor UnresolvedGeometryColor; // 0x00AC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxRayCastDist; // 0x00B0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HardAngleThreshold; // 0x00B4(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LightMapResolution; // 0x00B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EProxyNormalComputationMethod NormalCalculationMethod; // 0x00BC(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELandscapeCullingPrecision LandscapeCullingPrecision; // 0x00BD(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCalculateCorrectLODModel : 1; // 0x00BE(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideVoxelSize : 1; // 0x00BE(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideTransferDistance : 1; // 0x00BE(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseHardAngleThreshold : 1; // 0x00BE(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputeLightMapResolution : 1; // 0x00BE(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRecalculateNormals : 1; // 0x00BE(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseLandscapeCulling : 1; // 0x00BE(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportRayTracing : 1; // 0x00BE(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowDistanceField : 1; // 0x00BF(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReuseMeshLightmapUVs : 1; // 0x00BF(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroupIdenticalMeshesForBaking : 1; // 0x00BF(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCreateCollision : 1; // 0x00BF(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowVertexColors : 1; // 0x00BF(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateLightmapUVs : 1; // 0x00BF(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + struct FMeshNaniteSettings NaniteSettings; // 0x00C0(0x0040)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshProxySettings; + +// ScriptStruct Engine.MeshMergingSettings +// 0x0108 (0x0108 - 0x0000) +struct FMeshMergingSettings final +{ +public: + int32 TargetLightMapResolution; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EUVOutput OutputUVs[0x8]; // 0x0004(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMaterialProxySettings MaterialSettings; // 0x0010(0x00A0)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + int32 GutterSize; // 0x00B0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshLODSelectionType LODSelectionType; // 0x00B4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B5[0x3]; // 0x00B5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SpecificLOD; // 0x00B8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bGenerateLightMapUV : 1; // 0x00BC(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bComputedLightMapResolution : 1; // 0x00BC(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPivotPointAtZero : 1; // 0x00BC(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMergePhysicsData : 1; // 0x00BC(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMergeMeshSockets : 1; // 0x00BC(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMergeMaterials : 1; // 0x00BC(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBakeVertexDataToMesh : 1; // 0x00BC(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseVertexDataForBakingMaterial : 1; // 0x00BC(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseTextureBinning : 1; // 0x00BD(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReuseMeshLightmapUVs : 1; // 0x00BD(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bMergeEquivalentMaterials : 1; // 0x00BD(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseLandscapeCulling : 1; // 0x00BD(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIncludeImposters : 1; // 0x00BD(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportRayTracing : 1; // 0x00BD(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowDistanceField : 1; // 0x00BD(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_BE[0x2]; // 0x00BE(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMeshNaniteSettings NaniteSettings; // 0x00C0(0x0040)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_100[0x8]; // 0x0100(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshMergingSettings; + +// ScriptStruct Engine.HierarchicalSimplification +// 0x0350 (0x0350 - 0x0000) +struct FHierarchicalSimplification final +{ +public: + float TransitionScreenSize; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverrideDrawDistance; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseOverrideDrawDistance : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowSpecificExclusion : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOnlyGenerateClustersForVolumes : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReusePreviousLevelClusters : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EHierarchicalSimplificationMethod SimplificationMethod; // 0x0009(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x6]; // 0x000A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMeshProxySettings ProxySetting; // 0x0010(0x0100)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FMeshMergingSettings MergeSetting; // 0x0110(0x0108)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FMeshApproximationSettings ApproximateSettings; // 0x0218(0x0128)(Edit, NoDestructor, AdvancedDisplay, NativeAccessSpecifierPublic) + float DesiredBoundRadius; // 0x0340(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DesiredFillingPercentage; // 0x0344(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinNumberOfActorsToBuild; // 0x0348(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34C[0x4]; // 0x034C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FHierarchicalSimplification; + +// ScriptStruct Engine.ActorPlacementDataLayers +// 0x0028 (0x0028 - 0x0000) +struct FActorPlacementDataLayers final +{ +public: + TArray DataLayerInstanceNames; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FName ExternalDataLayerName; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName CurrentColorizedDataLayerInstanceName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ContextID; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActorPlacementDataLayers; + +// ScriptStruct Engine.SoundWaveSpectralData +// 0x000C (0x000C - 0x0000) +struct FSoundWaveSpectralData final +{ +public: + float FrequencyHz; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Magnitude; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalizedMagnitude; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundWaveSpectralData; + +// ScriptStruct Engine.SoundWaveSpectralDataPerSound +// 0x0020 (0x0020 - 0x0000) +struct FSoundWaveSpectralDataPerSound final +{ +public: + TArray SpectralData; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + float PlaybackTime; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundWave* SoundWave; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundWaveSpectralDataPerSound; + +// ScriptStruct Engine.BoneAnimationTrack +// 0x0040 (0x0040 - 0x0000) +struct FBoneAnimationTrack final +{ +public: + struct FRawAnimSequenceTrack InternalTrackData; // 0x0000(0x0030)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NativeAccessSpecifierPublic) + int32 BoneTreeIndex; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0034(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBoneAnimationTrack; + +// ScriptStruct Engine.StaticComponentMaskParameter +// 0x0004 (0x0028 - 0x0024) +struct FStaticComponentMaskParameter final : public FStaticParameterBase +{ +public: + bool R; // 0x0024(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool G; // 0x0025(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0026(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool A; // 0x0027(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticComponentMaskParameter; + +// ScriptStruct Engine.AnimationCurveData +// 0x0020 (0x0020 - 0x0000) +struct FAnimationCurveData final +{ +public: + TArray FloatCurves; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPublic) + TArray TransformCurves; // 0x0010(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, EditConst, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationCurveData; + +// ScriptStruct Engine.HLODBuildInputStats +// 0x0050 (0x0050 - 0x0000) +struct FHLODBuildInputStats final +{ +public: + TMap BuildersReferencedAssets; // 0x0000(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHLODBuildInputStats; + +// ScriptStruct Engine.AttributeKey +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FAttributeKey final +{ +public: + float Time; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x14]; // 0x0004(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAttributeKey; + +// ScriptStruct Engine.AttributeCurve +// 0x0048 (0x00B0 - 0x0068) +struct FAttributeCurve final : public FIndexedCurve +{ +public: + TArray Keys; // 0x0068(0x0010)(Edit, ZeroConstructor, Protected, NativeAccessSpecifierProtected) + struct FSoftObjectPath ScriptStructPath; // 0x0078(0x0020)(Edit, ZeroConstructor, EditConst, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class UScriptStruct* ScriptStruct; // 0x0098(0x0008)(Edit, ZeroConstructor, Transient, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bShouldInterpolate; // 0x00A0(0x0001)(Edit, ZeroConstructor, Transient, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_A1[0xF]; // 0x00A1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAttributeCurve; + +// ScriptStruct Engine.AnimatedBoneAttribute +// 0x00F0 (0x00F0 - 0x0000) +struct FAnimatedBoneAttribute final +{ +public: + struct FAnimationAttributeIdentifier Identifier; // 0x0000(0x0040)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAttributeCurve Curve; // 0x0040(0x00B0)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimatedBoneAttribute; + +// ScriptStruct Engine.SoundWaveEnvelopeTimeData +// 0x0008 (0x0008 - 0x0000) +struct FSoundWaveEnvelopeTimeData final +{ +public: + float Amplitude; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TimeSec; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundWaveEnvelopeTimeData; + +// ScriptStruct Engine.StreamedAudioPlatformData +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FStreamedAudioPlatformData final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStreamedAudioPlatformData; + +// ScriptStruct Engine.InputDevicePropertyHandle +// 0x0004 (0x0004 - 0x0000) +struct FInputDevicePropertyHandle final +{ +public: + uint32 InternalId; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FInputDevicePropertyHandle; + +// ScriptStruct Engine.SplineMeshComponentDescriptorBase +// 0x01C0 (0x01C0 - 0x0000) +struct FSplineMeshComponentDescriptorBase +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 Hash; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf ComponentClass; // 0x0010(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EComponentMobility Mobility; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERuntimeVirtualTextureMainPassType VirtualTextureRenderPassType; // 0x0019(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELightmapType LightmapType; // 0x001A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLightingChannels LightingChannels; // 0x001B(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + int32 RayTracingGroupId; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERayTracingGroupCullingPriority RayTracingGroupCullingPriority; // 0x0020(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EHasCustomNavigableGeometry bHasCustomNavigableGeometry; // 0x0021(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERendererStencilMask CustomDepthStencilWriteMask; // 0x0022(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23[0x5]; // 0x0023(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBodyInstance BodyInstance; // 0x0028(0x0178)(Edit, NativeAccessSpecifierPublic) + int32 VirtualTextureCullMips; // 0x01A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TranslucencySortPriority; // 0x01A4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OverriddenLightMapRes; // 0x01A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CustomDepthStencilValue; // 0x01AC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCastShadow : 1; // 0x01B0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEmissiveLightSource : 1; // 0x01B0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDynamicShadow : 1; // 0x01B0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastStaticShadow : 1; // 0x01B0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastContactShadow : 1; // 0x01B0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastShadowAsTwoSided : 1; // 0x01B0(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastHiddenShadow : 1; // 0x01B0(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDynamicIndirectLighting : 1; // 0x01B0(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDynamicIndirectLightingWhileHidden : 1; // 0x01B1(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectDistanceFieldLighting : 1; // 0x01B1(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReceivesDecals : 1; // 0x01B1(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideLightMapRes : 1; // 0x01B1(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseAsOccluder : 1; // 0x01B1(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDiscardOnLoad : 1; // 0x01B1(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRenderCustomDepth : 1; // 0x01B1(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibleInRayTracing : 1; // 0x01B1(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHiddenInGame : 1; // 0x01B2(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsEditorOnly : 1; // 0x01B2(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisible : 1; // 0x01B2(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEvaluateWorldPositionOffset : 1; // 0x01B2(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReverseCulling : 1; // 0x01B2(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseDefaultCollision : 1; // 0x01B2(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateOverlapEvents : 1; // 0x01B2(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideNavigationExport : 1; // 0x01B2(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bForceNavigationObstacle : 1; // 0x01B3(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bFillCollisionUnderneathForNavmesh : 1; // 0x01B3(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + int32 WorldPositionOffsetDisableDistance; // 0x01B4(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EShadowCacheInvalidationBehavior ShadowCacheInvalidationBehavior; // 0x01B8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDetailMode DetailMode; // 0x01B9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1BA[0x6]; // 0x01BA(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSplineMeshComponentDescriptorBase; + +// ScriptStruct Engine.InstancedStaticMeshInstanceData +// 0x0080 (0x0080 - 0x0000) +struct FInstancedStaticMeshInstanceData final +{ +public: + struct FMatrix Transform; // 0x0000(0x0080)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInstancedStaticMeshInstanceData; + +// ScriptStruct Engine.InstancedStaticMeshMappingInfo +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FInstancedStaticMeshMappingInfo final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInstancedStaticMeshMappingInfo; + +// ScriptStruct Engine.InstancedStaticMeshRandomSeed +// 0x0008 (0x0008 - 0x0000) +struct FInstancedStaticMeshRandomSeed final +{ +public: + int32 StartInstanceIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RandomSeed; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInstancedStaticMeshRandomSeed; + +// ScriptStruct Engine.MeshSectionInfo +// 0x000C (0x000C - 0x0000) +struct FMeshSectionInfo final +{ +public: + int32 MaterialIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableCollision; // 0x0004(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCastShadow; // 0x0005(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bVisibleInRayTracing; // 0x0006(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAffectDistanceFieldLighting; // 0x0007(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceOpaque; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshSectionInfo; + +// ScriptStruct Engine.InstancedStaticMeshComponentInstanceData +// 0x00C8 (0x0180 - 0x00B8) +struct FInstancedStaticMeshComponentInstanceData final : public FSceneComponentInstanceData +{ +public: + class UStaticMesh* StaticMesh; // 0x00B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInstancedStaticMeshLightMapInstanceData CachedStaticLighting; // 0x00C0(0x0070)(NativeAccessSpecifierPublic) + TArray PerInstanceSMData; // 0x0130(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_140[0x20]; // 0x0140(0x0020)(Fixing Size After Last Property [ Dumper-7 ]) + int32 InstancingRandomSeed; // 0x0160(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_164[0x4]; // 0x0164(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AdditionalRandomSeeds; // 0x0168(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + bool bHasPerInstanceHitProxies; // 0x0178(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_179[0x7]; // 0x0179(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInstancedStaticMeshComponentInstanceData; + +// ScriptStruct Engine.MaterialLayersFunctionsEditorOnlyData +// 0x0070 (0x0070 - 0x0000) +struct FMaterialLayersFunctionsEditorOnlyData final +{ +public: + TArray LayerStates; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray LayerNames; // 0x0010(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray RestrictToLayerRelatives; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray RestrictToBlendRelatives; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray LayerGuids; // 0x0040(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray LayerLinkStates; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray DeletedParentLayerGuids; // 0x0060(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialLayersFunctionsEditorOnlyData; + +// ScriptStruct Engine.MaterialLayersFunctions +// 0x00E0 (0x0128 - 0x0048) +struct FMaterialLayersFunctions final : public FMaterialLayersFunctionsRuntimeData +{ +public: + struct FMaterialLayersFunctionsEditorOnlyData EditorOnly; // 0x0048(0x0070)(Edit, NativeAccessSpecifierPublic) + TArray LayerStates; // 0x00B8(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray LayerNames; // 0x00C8(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray RestrictToLayerRelatives; // 0x00D8(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray RestrictToBlendRelatives; // 0x00E8(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray LayerGuids; // 0x00F8(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray LayerLinkStates; // 0x0108(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) + TArray DeletedParentLayerGuids; // 0x0118(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FMaterialLayersFunctions; + +// ScriptStruct Engine.StaticMaterialLayersParameter +// 0x012C (0x0150 - 0x0024) +struct FStaticMaterialLayersParameter final : public FStaticParameterBase +{ +public: + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMaterialLayersFunctions Value; // 0x0028(0x0128)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticMaterialLayersParameter; + +// ScriptStruct Engine.UniqueNetIdReplNetSerializerStringStruct +// 0x0010 (0x0010 - 0x0000) +struct FUniqueNetIdReplNetSerializerStringStruct final +{ +public: + class FString String; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FUniqueNetIdReplNetSerializerStringStruct; + +// ScriptStruct Engine.UniqueNetIdReplNetSerializerNameStruct +// 0x0008 (0x0008 - 0x0000) +struct FUniqueNetIdReplNetSerializerNameStruct final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FUniqueNetIdReplNetSerializerNameStruct; + +// ScriptStruct Engine.SoundWaveTimecodeInfo +// 0x0070 (0x0070 - 0x0000) +struct FSoundWaveTimecodeInfo final +{ +public: + uint64 NumSamplesSinceMidnight; // 0x0000(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NumSamplesPerSecond; // 0x0008(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Description; // 0x0010(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OriginatorTime; // 0x0020(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OriginatorDate; // 0x0030(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OriginatorDescription; // 0x0040(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString OriginatorReference; // 0x0050(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFrameRate TimecodeRate; // 0x0060(0x0008)(Edit, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTimecodeIsDropFrame; // 0x0068(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_69[0x7]; // 0x0069(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundWaveTimecodeInfo; + +// ScriptStruct Engine.ISMClientHandle +// 0x0014 (0x0014 - 0x0000) +struct FISMClientHandle final +{ +public: + int32 Index; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid Guid; // 0x0004(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FISMClientHandle; + +// ScriptStruct Engine.MaterialRemapIndex +// 0x0018 (0x0018 - 0x0000) +struct FMaterialRemapIndex final +{ +public: + uint32 ImportVersionKey; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MaterialRemap; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialRemapIndex; + +// ScriptStruct Engine.ISMClientInstanceManagerData +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FISMClientInstanceManagerData final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FISMClientInstanceManagerData; + +// ScriptStruct Engine.EquirectProps +// 0x0098 (0x0098 - 0x0000) +struct FEquirectProps final +{ +public: + struct FBox2D LeftUVRect; // 0x0000(0x0028)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox2D RightUVRect; // 0x0028(0x0028)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector2D LeftScale; // 0x0050(0x0010)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D RightScale; // 0x0060(0x0010)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D LeftBias; // 0x0070(0x0010)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D RightBias; // 0x0080(0x0010)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0090(0x0004)(Edit, BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_94[0x4]; // 0x0094(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEquirectProps; + +// ScriptStruct Engine.NewLevelInstanceParams +// 0x0048 (0x0048 - 0x0000) +struct FNewLevelInstanceParams final +{ +public: + ELevelInstanceCreationType Type; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELevelInstancePivotType PivotType; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class AActor* PivotActor; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAlwaysShowDialog; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UWorld* TemplateWorld; // 0x0018(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LevelPackageName; // 0x0020(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPromptForSave; // 0x0030(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf LevelInstanceClass; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableStreaming; // 0x0040(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bExternalActors; // 0x0041(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bForceExternalActors; // 0x0042(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bHideCreationType; // 0x0043(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNewLevelInstanceParams; + +// ScriptStruct Engine.ExpressionExecOutput +// 0x0008 (0x0008 - 0x0000) +struct FExpressionExecOutput final +{ +public: + class UMaterialExpression* Expression; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FExpressionExecOutput; + +// ScriptStruct Engine.ActorContainerPath +// 0x0010 (0x0010 - 0x0000) +struct FActorContainerPath final +{ +public: + TArray ContainerGuids; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActorContainerPath; + +// ScriptStruct Engine.MaterialExpressionCollection +// 0x0030 (0x0030 - 0x0000) +struct FMaterialExpressionCollection final +{ +public: + TArray Expressions; // 0x0000(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray EditorComments; // 0x0010(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UMaterialExpressionExecBegin* ExpressionExecBegin; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialExpressionExecEnd* ExpressionExecEnd; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialExpressionCollection; + +// ScriptStruct Engine.ImportFactorySettingValues +// 0x0020 (0x0020 - 0x0000) +struct FImportFactorySettingValues final +{ +public: + class FString SettingName; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Value; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FImportFactorySettingValues; + +// ScriptStruct Engine.CustomInput +// 0x0030 (0x0030 - 0x0000) +struct FCustomInput final +{ +public: + class FName InputName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput Input; // 0x0008(0x0028)(NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCustomInput; + +// ScriptStruct Engine.TimelineVectorTrack +// 0x0040 (0x0040 - 0x0000) +struct FTimelineVectorTrack final +{ +public: + class UCurveVector* VectorCurve; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName VectorPropertyName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimelineVectorTrack; + +// ScriptStruct Engine.CustomOutput +// 0x000C (0x000C - 0x0000) +struct FCustomOutput final +{ +public: + class FName OutputName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECustomMaterialOutputType OutputType; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCustomOutput; + +// ScriptStruct Engine.CustomDefine +// 0x0020 (0x0020 - 0x0000) +struct FCustomDefine final +{ +public: + class FString DefineName; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DefineValue; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCustomDefine; + +// ScriptStruct Engine.StaticTerrainLayerWeightParameter +// 0x0034 (0x0034 - 0x0000) +struct FStaticTerrainLayerWeightParameter final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0010(0x0010)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverride; // 0x0020(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName LayerName; // 0x0024(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 WeightmapIndex; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsRepeatedLayer; // 0x0030(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWeightBasedBlend; // 0x0031(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticTerrainLayerWeightParameter; + +// ScriptStruct Engine.StaticParameterSetEditorOnlyData +// 0x00A0 (0x00A0 - 0x0000) +struct FStaticParameterSetEditorOnlyData final +{ +public: + TArray StaticSwitchParameters; // 0x0000(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPublic) + TArray StaticComponentMaskParameters; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray TerrainLayerWeightParameters; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctionsEditorOnlyData MaterialLayers; // 0x0030(0x0070)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticParameterSetEditorOnlyData; + +// ScriptStruct Engine.DataDrivenShaderPlatformInfoInput +// 0x000C (0x000C - 0x0000) +struct FDataDrivenShaderPlatformInfoInput final +{ +public: + class FName InputName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataDrivenShaderPlatformInfoCondition PropertyCondition; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDataDrivenShaderPlatformInfoInput; + +// ScriptStruct Engine.FunctionExpressionInput +// 0x0040 (0x0040 - 0x0000) +struct FFunctionExpressionInput final +{ +public: + class UMaterialExpressionFunctionInput* ExpressionInput; // 0x0000(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionInputId; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FExpressionInput Input; // 0x0018(0x0028)(NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFunctionExpressionInput; + +// ScriptStruct Engine.CompositeReroute +// 0x0010 (0x0010 - 0x0000) +struct FCompositeReroute final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialExpressionReroute* Expression; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCompositeReroute; + +// ScriptStruct Engine.MaterialInstanceBasePropertyOverrides +// 0x0020 (0x0020 - 0x0000) +struct FMaterialInstanceBasePropertyOverrides final +{ +public: + uint8 bOverride_OpacityMaskClipValue : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_BlendMode : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_ShadingModel : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DitheredLODTransition : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_CastDynamicShadowAsMasked : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_TwoSided : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_bIsThinSurface : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_OutputTranslucentVelocity : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_bHasPixelAnimation : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_bEnableTessellation : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DisplacementScaling : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_bEnableDisplacementFade : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_DisplacementFadeRange : 1; // 0x0001(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverride_MaxWorldPositionOffsetDisplacement : 1; // 0x0001(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 TwoSided : 1; // 0x0001(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsThinSurface : 1; // 0x0001(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DitheredLODTransition : 1; // 0x0002(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCastDynamicShadowAsMasked : 1; // 0x0002(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOutputTranslucentVelocity : 1; // 0x0002(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPixelAnimation : 1; // 0x0002(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableTessellation : 1; // 0x0002(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableDisplacementFade : 1; // 0x0002(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EBlendMode BlendMode; // 0x0003(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMaterialShadingModel ShadingModel; // 0x0004(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float OpacityMaskClipValue; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDisplacementScaling DisplacementScaling; // 0x000C(0x0008)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FDisplacementFadeRange DisplacementFadeRange; // 0x0014(0x0008)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float MaxWorldPositionOffsetDisplacement; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialInstanceBasePropertyOverrides; + +// ScriptStruct Engine.AnimNodeFunctionRef +// 0x0020 (0x0020 - 0x0000) +struct FAnimNodeFunctionRef final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName FunctionName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSubclassOf Class; // 0x0010(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UFunction* Function; // 0x0018(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimNodeFunctionRef; + +// ScriptStruct Engine.LightmassMaterialInterfaceSettings +// 0x0010 (0x0010 - 0x0000) +struct FLightmassMaterialInterfaceSettings final +{ +public: + float EmissiveBoost; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DiffuseBoost; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExportResolutionScale; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bCastShadowAsMasked : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideCastShadowAsMasked : 1; // 0x000C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideEmissiveBoost : 1; // 0x000C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideDiffuseBoost : 1; // 0x000C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideExportResolutionScale : 1; // 0x000C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLightmassMaterialInterfaceSettings; + +// ScriptStruct Engine.MaterialTextureInfo +// 0x0010 (0x0010 - 0x0000) +struct FMaterialTextureInfo final +{ +public: + float SamplingScale; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UVChannelIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TextureName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialTextureInfo; + +// ScriptStruct Engine.BranchingPoint +// 0x0010 (0x0040 - 0x0030) +struct FBranchingPoint final : public FAnimLinkableElement +{ +public: + class FName EventName; // 0x0030(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TriggerTimeOffset; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBranchingPoint; + +// ScriptStruct Engine.QuartzPulseOverrideStep +// 0x0008 (0x0008 - 0x0000) +struct FQuartzPulseOverrideStep final +{ +public: + int32 NumberOfPulses; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EQuartzCommandQuantization PulseDuration; // 0x0004(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FQuartzPulseOverrideStep; + +// ScriptStruct Engine.ParameterChannelNames +// 0x0040 (0x0040 - 0x0000) +struct FParameterChannelNames final +{ +public: + class FText R; // 0x0000(0x0010)(Edit, NativeAccessSpecifierPublic) + class FText G; // 0x0010(0x0010)(Edit, NativeAccessSpecifierPublic) + class FText B; // 0x0020(0x0010)(Edit, NativeAccessSpecifierPublic) + class FText A; // 0x0030(0x0010)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParameterChannelNames; + +// ScriptStruct Engine.StaticComponentMaskValue +// 0x0004 (0x0004 - 0x0000) +struct FStaticComponentMaskValue final +{ +public: + bool R; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool G; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool B; // 0x0002(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool A; // 0x0003(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticComponentMaskValue; + +// ScriptStruct Engine.RuntimePartitionDesc +// 0x0028 (0x0028 - 0x0000) +struct FRuntimePartitionDesc final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class URuntimePartition* MainLayer; // 0x0010(0x0008)(Edit, ExportObject, ZeroConstructor, EditConst, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray HLODSetups; // 0x0018(0x0010)(Edit, ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimePartitionDesc; + +// ScriptStruct Engine.StaticMeshBudgetInfo +// 0x0010 (0x0010 - 0x0000) +struct FStaticMeshBudgetInfo final +{ +public: + class FName LodGroupName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + double MinimumExtent; // 0x0008(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticMeshBudgetInfo; + +// ScriptStruct Engine.MeshDrawCommandStatsBudget +// 0x0030 (0x0030 - 0x0000) +struct FMeshDrawCommandStatsBudget final +{ +public: + class FName CategoryName; // 0x0000(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LinkedStatNames; // 0x0008(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) + int32 PrimitiveBudget; // 0x0018(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Collection; // 0x001C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Passes; // 0x0020(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshDrawCommandStatsBudget; + +// ScriptStruct Engine.ActorPropertyOverride +// 0x0001 (0x0001 - 0x0000) +struct FActorPropertyOverride final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActorPropertyOverride; + +// ScriptStruct Engine.MeshDrawCommandStatsBudgetTotals +// 0x0008 (0x0008 - 0x0000) +struct FMeshDrawCommandStatsBudgetTotals final +{ +public: + int32 PrimitiveBudget; // 0x0000(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Collection; // 0x0004(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshDrawCommandStatsBudgetTotals; + +// ScriptStruct Engine.MeshInstancingSettings +// 0x0018 (0x0018 - 0x0000) +struct FMeshInstancingSettings final +{ +public: + TSubclassOf ActorClassToUse; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoClear, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceReplacementThreshold; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipMeshesWithVertexColors; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseHLODVolumes; // 0x000D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf ISMComponentToUse; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshInstancingSettings; + +// ScriptStruct Engine.NaniteSettings +// 0x0001 (0x0001 - 0x0000) +struct FNaniteSettings final +{ +public: + bool bAllowMaskedMaterials; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNaniteSettings; + +// ScriptStruct Engine.MeshReductionSettings +// 0x002C (0x002C - 0x0000) +struct FMeshReductionSettings final +{ +public: + float PercentTriangles; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxNumOfTriangles; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PercentVertices; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxNumOfVerts; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDeviation; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PixelError; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WeldingThreshold; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HardAngleThreshold; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BaseLODModel; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshFeatureImportance SilhouetteImportance; // 0x0024(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshFeatureImportance TextureImportance; // 0x0025(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshFeatureImportance ShadingImportance; // 0x0026(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bRecalculateNormals : 1; // 0x0027(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateUniqueLightmapUVs : 1; // 0x0027(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bKeepSymmetry : 1; // 0x0027(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisibilityAided : 1; // 0x0027(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCullOccluded : 1; // 0x0027(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EStaticMeshReductionTerimationCriterion TerminationCriterion; // 0x0028(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshFeatureImportance VisibilityAggressiveness; // 0x0029(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMeshFeatureImportance VertexColorImportance; // 0x002A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2B[0x1]; // 0x002B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMeshReductionSettings; + +// ScriptStruct Engine.MeshUVChannelInfo +// 0x0014 (0x0014 - 0x0000) +struct FMeshUVChannelInfo final +{ +public: + bool bInitialized; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideDensities; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float LocalUVDensities[0x4]; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshUVChannelInfo; + +// ScriptStruct Engine.SplineMeshParams +// 0x00B0 (0x00B0 - 0x0000) +struct FSplineMeshParams final +{ +public: + struct FVector StartPos; // 0x0000(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector StartTangent; // 0x0018(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D StartScale; // 0x0030(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartRoll; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndRoll; // 0x0044(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D StartOffset; // 0x0048(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndPos; // 0x0058(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D EndScale; // 0x0070(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector EndTangent; // 0x0080(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D EndOffset; // 0x0098(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NaniteClusterBoundsScale; // 0x00A8(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_AC[0x4]; // 0x00AC(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSplineMeshParams; + +// ScriptStruct Engine.PurchaseInfo +// 0x0040 (0x0040 - 0x0000) +struct FPurchaseInfo final +{ +public: + class FString Identifier; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DisplayName; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DisplayDescription; // 0x0020(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DisplayPrice; // 0x0030(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPurchaseInfo; + +// ScriptStruct Engine.NavAgentSelector +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FNavAgentSelector final +{ +public: + uint8 bSupportsAgent0 : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent1 : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent2 : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent3 : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent4 : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent5 : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent6 : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent7 : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent8 : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent9 : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent10 : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent11 : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent12 : 1; // 0x0001(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent13 : 1; // 0x0001(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent14 : 1; // 0x0001(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent15 : 1; // 0x0001(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNavAgentSelector; + +// ScriptStruct Engine.QuartzTransportTimeStamp +// 0x0010 (0x0010 - 0x0000) +struct FQuartzTransportTimeStamp final +{ +public: + int32 Bars; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Beat; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BeatFraction; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Seconds; // 0x000C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FQuartzTransportTimeStamp; + +// ScriptStruct Engine.NavAvoidanceMask +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FNavAvoidanceMask final +{ +public: + uint8 bGroup0 : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup1 : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup2 : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup3 : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup4 : 1; // 0x0000(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup5 : 1; // 0x0000(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup6 : 1; // 0x0000(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup7 : 1; // 0x0000(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup8 : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup9 : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup10 : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup11 : 1; // 0x0001(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup12 : 1; // 0x0001(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup13 : 1; // 0x0001(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup14 : 1; // 0x0001(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup15 : 1; // 0x0001(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup16 : 1; // 0x0002(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup17 : 1; // 0x0002(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup18 : 1; // 0x0002(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup19 : 1; // 0x0002(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup20 : 1; // 0x0002(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup21 : 1; // 0x0002(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup22 : 1; // 0x0002(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup23 : 1; // 0x0002(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup24 : 1; // 0x0003(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup25 : 1; // 0x0003(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup26 : 1; // 0x0003(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup27 : 1; // 0x0003(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup28 : 1; // 0x0003(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup29 : 1; // 0x0003(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup30 : 1; // 0x0003(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGroup31 : 1; // 0x0003(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) +}; +//_ASSERTS_FNavAvoidanceMask; + +// ScriptStruct Engine.NavigationLinkBase +// 0x0040 (0x0040 - 0x0000) +struct FNavigationLinkBase +{ +public: + float LeftProjectHeight; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxFallDownLength; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x10]; // 0x0008(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + float SnapRadius; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SnapHeight; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNavAgentSelector SupportedAgents; // 0x0020(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 bSupportsAgent0 : 1; // 0x0024(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent1 : 1; // 0x0024(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent2 : 1; // 0x0024(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent3 : 1; // 0x0024(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent4 : 1; // 0x0024(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent5 : 1; // 0x0024(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent6 : 1; // 0x0024(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent7 : 1; // 0x0024(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent8 : 1; // 0x0025(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent9 : 1; // 0x0025(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent10 : 1; // 0x0025(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent11 : 1; // 0x0025(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent12 : 1; // 0x0025(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent13 : 1; // 0x0025(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent14 : 1; // 0x0025(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSupportsAgent15 : 1; // 0x0025(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_26[0x2]; // 0x0026(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + ENavLinkDirection Direction; // 0x0028(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseSnapHeight : 1; // 0x0029(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSnapToCheapestArea : 1; // 0x0029(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag0 : 1; // 0x0029(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag1 : 1; // 0x0029(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag2 : 1; // 0x0029(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag3 : 1; // 0x0029(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag4 : 1; // 0x0029(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag5 : 1; // 0x0029(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag6 : 1; // 0x002A(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCustomFlag7 : 1; // 0x002A(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2B[0x5]; // 0x002B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf AreaClass; // 0x0030(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNavigationLinkBase; + +// ScriptStruct Engine.LightmassWorldInfoSettings +// 0x0054 (0x0054 - 0x0000) +struct FLightmassWorldInfoSettings final +{ +public: + float StaticLightingLevelScale; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumIndirectLightingBounces; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumSkyLightingBounces; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IndirectLightingQuality; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IndirectLightingSmoothness; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor EnvironmentColor; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EnvironmentIntensity; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EmissiveBoost; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DiffuseBoost; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EVolumeLightingMethod VolumeLightingMethod; // 0x0024(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseAmbientOcclusion : 1; // 0x0025(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateAmbientOcclusionMaterialMask : 1; // 0x0025(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisualizeMaterialDiffuse : 1; // 0x0025(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVisualizeAmbientOcclusion : 1; // 0x0025(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCompressLightmaps : 1; // 0x0025(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_26[0x2]; // 0x0026(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float VolumetricLightmapDetailCellSize; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricLightmapMaximumBrickMemoryMb; // 0x002C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricLightmapLoadingCellSize; // 0x0030(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumetricLightmapSphericalHarmonicSmoothing; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeLightSamplePlacementScale; // 0x0038(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DirectIlluminationOcclusionFraction; // 0x003C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IndirectIlluminationOcclusionFraction; // 0x0040(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionExponent; // 0x0044(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FullyOccludedSamplesFraction; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxOcclusionDistance; // 0x004C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWorldPartition; // 0x0050(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLightmassWorldInfoSettings; + +// ScriptStruct Engine.NavigationLink +// 0x0030 (0x0070 - 0x0040) +struct FNavigationLink final : public FNavigationLinkBase +{ +public: + struct FVector Left; // 0x0040(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Right; // 0x0058(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNavigationLink; + +// ScriptStruct Engine.NavigationSegmentLink +// 0x0060 (0x00A0 - 0x0040) +struct FNavigationSegmentLink final : public FNavigationLinkBase +{ +public: + struct FVector LeftStart; // 0x0040(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LeftEnd; // 0x0058(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RightStart; // 0x0070(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector RightEnd; // 0x0088(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNavigationSegmentLink; + +// ScriptStruct Engine.NavLinkAuxiliaryId +// 0x0008 (0x0008 - 0x0000) +struct FNavLinkAuxiliaryId final +{ +public: + uint64 ID; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FNavLinkAuxiliaryId; + +// ScriptStruct Engine.Vector_NetQuantize10 +// 0x0000 (0x0018 - 0x0018) +struct FVector_NetQuantize10 final : public FVector +{ +}; +//_ASSERTS_FVector_NetQuantize10; + +// ScriptStruct Engine.NetworkPhysicsSettings +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FNetworkPhysicsSettings final +{ +public: + uint8 bOverrideSimProxyRepMode : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EPhysicsReplicationMode SimProxyRepMode; // 0x0004(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNetworkPhysicsSettings; + +// ScriptStruct Engine.NetworkPhysicsSettingsResimulation +// 0x0060 (0x0060 - 0x0000) +struct FNetworkPhysicsSettingsResimulation final +{ +public: + uint32 bOverrideResimulationErrorThreshold; // 0x0000(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 ResimulationErrorThreshold; // 0x0004(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideResimulationErrorPositionThreshold : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorPositionThreshold; // 0x000C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideResimulationErrorRotationThreshold : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorRotationThreshold; // 0x0014(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideResimulationErrorLinearVelocityThreshold : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorLinearVelocityThreshold; // 0x001C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideResimulationErrorAngularVelocityThreshold : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorAngularVelocityThreshold; // 0x0024(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRuntimeCorrectionEnabled : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bRuntimeCorrectionEnabled; // 0x002C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideRuntimeVelocityCorrection : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bRuntimeVelocityCorrection; // 0x0034(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideRuntimeCorrectConnectedBodies : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bRuntimeCorrectConnectedBodies; // 0x003C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverridePosStabilityMultiplier : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float PosStabilityMultiplier; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideRotStabilityMultiplier : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float RotStabilityMultiplier; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideVelStabilityMultiplier : 1; // 0x0050(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VelStabilityMultiplier; // 0x0054(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bOverrideAngVelStabilityMultiplier : 1; // 0x0058(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_59[0x3]; // 0x0059(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AngVelStabilityMultiplier; // 0x005C(0x0004)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetworkPhysicsSettingsResimulation; + +// ScriptStruct Engine.NetworkPhysicsSettingsNetworkPhysicsComponent +// 0x0048 (0x0048 - 0x0000) +struct alignas(0x04) FNetworkPhysicsSettingsNetworkPhysicsComponent final +{ +public: + uint8 bOverrideRedundantInputs : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint16 RedundantInputs; // 0x0004(0x0002)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideRedundantStates : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint16 RedundantStates; // 0x000C(0x0002)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCompareStateToTriggerRewind : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCompareStateToTriggerRewind; // 0x0014(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideCompareInputToTriggerRewind : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCompareInputToTriggerRewind; // 0x001C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideEnableUnreliableFlow : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bEnableUnreliableFlow; // 0x0024(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_25[0x3]; // 0x0025(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideEnableReliableFlow : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bEnableReliableFlow; // 0x002C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D[0x3]; // 0x002D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideApplyDataInsteadOfMergeData : 1; // 0x0030(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bApplyDataInsteadOfMergeData; // 0x0034(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideAllowInputExtrapolation : 1; // 0x0038(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bAllowInputExtrapolation; // 0x003C(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D[0x3]; // 0x003D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bOverrideValidateDataOnGameThread : 1; // 0x0040(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, DisableEditOnInstance, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_41[0x3]; // 0x0041(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + bool bValidateDataOnGameThread; // 0x0044(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_45[0x3]; // 0x0045(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNetworkPhysicsSettingsNetworkPhysicsComponent; + +// ScriptStruct Engine.SoundSubmixSendInfoBase +// 0x00B0 (0x00B0 - 0x0000) +struct FSoundSubmixSendInfoBase +{ +public: + ESendLevelControlMethod SendLevelControlMethod; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundSubmixBase* SoundSubmix; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SendLevel; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool DisableManualSendClamp; // 0x0014(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinSendLevel; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSendLevel; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinSendDistance; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxSendDistance; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve CustomSendLevelCurve; // 0x0028(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundSubmixSendInfoBase; + +// ScriptStruct Engine.AttenuationSubmixSendSettings +// 0x0000 (0x00B0 - 0x00B0) +struct FAttenuationSubmixSendSettings final : public FSoundSubmixSendInfoBase +{ +}; +//_ASSERTS_FAttenuationSubmixSendSettings; + +// ScriptStruct Engine.SoundAttenuationPluginSettings +// 0x0040 (0x0040 - 0x0000) +struct FSoundAttenuationPluginSettings final +{ +public: + TArray SpatializationPluginSettingsArray; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray OcclusionPluginSettingsArray; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ReverbPluginSettingsArray; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray SourceDataOverridePluginSettingsArray; // 0x0030(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundAttenuationPluginSettings; + +// ScriptStruct Engine.SoundAttenuationSettings +// 0x0310 (0x03D0 - 0x00C0) +struct FSoundAttenuationSettings final : public FBaseAttenuationSettings +{ +public: + uint8 bAttenuate : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSpatialize : 1; // 0x00C0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAttenuateWithLPF : 1; // 0x00C0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableListenerFocus : 1; // 0x00C0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableFocusInterpolation : 1; // 0x00C0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableOcclusion : 1; // 0x00C0(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseComplexCollisionForOcclusion : 1; // 0x00C0(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableReverbSend : 1; // 0x00C0(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnablePriorityAttenuation : 1; // 0x00C1(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyNormalizationToStereoSounds : 1; // 0x00C1(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableLogFrequencyScaling : 1; // 0x00C1(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableSubmixSends : 1; // 0x00C1(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableSourceDataOverride : 1; // 0x00C1(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableSendToAudioLink : 1; // 0x00C1(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ESoundSpatializationAlgorithm SpatializationAlgorithm; // 0x00C2(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C3[0x5]; // 0x00C3(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + class UAudioLinkSettingsAbstract* AudioLinkSettingsOverride; // 0x00C8(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BinauralRadius; // 0x00D0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D4[0x4]; // 0x00D4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRuntimeFloatCurve CustomLowpassAirAbsorptionCurve; // 0x00D8(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve CustomHighpassAirAbsorptionCurve; // 0x0160(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + EAirAbsorptionMethod AbsorptionMethod; // 0x01E8(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionChannel OcclusionTraceChannel; // 0x01E9(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EReverbSendMethod ReverbSendMethod; // 0x01EA(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPriorityAttenuationMethod PriorityAttenuationMethod; // 0x01EB(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonSpatializedRadiusStart; // 0x01EC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonSpatializedRadiusEnd; // 0x01F0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENonSpatializedRadiusSpeakerMapMode NonSpatializedRadiusMode; // 0x01F4(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1F5[0x3]; // 0x01F5(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float StereoSpread; // 0x01F8(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPFRadiusMin; // 0x01FC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPFRadiusMax; // 0x0200(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPFFrequencyAtMin; // 0x0204(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LPFFrequencyAtMax; // 0x0208(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HPFFrequencyAtMin; // 0x020C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HPFFrequencyAtMax; // 0x0210(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusAzimuth; // 0x0214(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusAzimuth; // 0x0218(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusDistanceScale; // 0x021C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusDistanceScale; // 0x0220(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusPriorityScale; // 0x0224(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusPriorityScale; // 0x0228(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusVolumeAttenuation; // 0x022C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NonFocusVolumeAttenuation; // 0x0230(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusAttackInterpSpeed; // 0x0234(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FocusReleaseInterpSpeed; // 0x0238(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionLowPassFilterFrequency; // 0x023C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionVolumeAttenuation; // 0x0240(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OcclusionInterpolationTime; // 0x0244(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReverbWetLevelMin; // 0x0248(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReverbWetLevelMax; // 0x024C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReverbDistanceMin; // 0x0250(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ReverbDistanceMax; // 0x0254(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ManualReverbSendLevel; // 0x0258(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PriorityAttenuationMin; // 0x025C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PriorityAttenuationMax; // 0x0260(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PriorityAttenuationDistanceMin; // 0x0264(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PriorityAttenuationDistanceMax; // 0x0268(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ManualPriorityAttenuation; // 0x026C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve CustomReverbSendCurve; // 0x0270(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + TArray SubmixSendSettings; // 0x02F8(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + struct FRuntimeFloatCurve CustomPriorityAttenuationCurve; // 0x0308(0x0088)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundAttenuationPluginSettings PluginSettings; // 0x0390(0x0040)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundAttenuationSettings; + +// ScriptStruct Engine.ParticleCurvePair +// 0x0018 (0x0018 - 0x0000) +struct FParticleCurvePair final +{ +public: + class FString CurveName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* CurveObject; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParticleCurvePair; + +// ScriptStruct Engine.ParticleRandomSeedInfo +// 0x0020 (0x0020 - 0x0000) +struct FParticleRandomSeedInfo final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bGetSeedFromInstance : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInstanceSeedIsIndex : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bResetSeedOnEmitterLooping : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRandomlySelectSeedArray : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray RandomSeeds; // 0x0010(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParticleRandomSeedInfo; + +// ScriptStruct Engine.AnimationFrameSnapshot +// 0x0001 (0x0001 - 0x0000) +struct FAnimationFrameSnapshot final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationFrameSnapshot; + +// ScriptStruct Engine.BeamModifierOptions +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FBeamModifierOptions final +{ +public: + uint8 bModify : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bScale : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLock : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBeamModifierOptions; + +// ScriptStruct Engine.ParticleEvent_GenerateInfo +// 0x0028 (0x0028 - 0x0000) +struct FParticleEvent_GenerateInfo final +{ +public: + EParticleEventType Type; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Frequency; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ParticleFrequency; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 FirstTimeOnly : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 LastTimeOnly : 1; // 0x000C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 UseReflectedImpactVector : 1; // 0x000C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseOrbitOffset : 1; // 0x000C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName CustomName; // 0x0010(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ParticleModuleEventsToSendToGame; // 0x0018(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParticleEvent_GenerateInfo; + +// ScriptStruct Engine.EmitterDynamicParameter +// 0x0048 (0x0048 - 0x0000) +struct FEmitterDynamicParameter final +{ +public: + class FName ParamName; // 0x0000(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseEmitterTime : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSpawnTimeOnly : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EEmitterDynamicParameterValue ValueMethod; // 0x000C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bScaleVelocityByParamValue : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionFloat ParamValue; // 0x0018(0x0030)(Edit, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEmitterDynamicParameter; + +// ScriptStruct Engine.BeamTargetData +// 0x000C (0x000C - 0x0000) +struct FBeamTargetData final +{ +public: + class FName TargetName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TargetPercentage; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBeamTargetData; + +// ScriptStruct Engine.StateMachineStateDebugData +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x04) FStateMachineStateDebugData final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStateMachineStateDebugData; + +// ScriptStruct Engine.GPUSpriteLocalVectorFieldInfo +// 0x00D0 (0x00D0 - 0x0000) +struct FGPUSpriteLocalVectorFieldInfo final +{ +public: + class UVectorField* Field; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0010(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator MinInitialRotation; // 0x0070(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator MaxInitialRotation; // 0x0088(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator RotationRate; // 0x00A0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Intensity; // 0x00B8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Tightness; // 0x00BC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bIgnoreComponentTransform : 1; // 0x00C0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileX : 1; // 0x00C0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileY : 1; // 0x00C0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTileZ : 1; // 0x00C0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUseFixDT : 1; // 0x00C0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_C1[0xF]; // 0x00C1(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FGPUSpriteLocalVectorFieldInfo; + +// ScriptStruct Engine.GPUSpriteEmitterInfo +// 0x0350 (0x0350 - 0x0000) +struct FGPUSpriteEmitterInfo final +{ +public: + class UParticleModuleRequired* RequiredModule; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleModuleSpawn* SpawnModule; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UParticleModuleSpawnPerUnit* SpawnPerUnitModule; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SpawnModules; // 0x0018(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FGPUSpriteLocalVectorFieldInfo LocalVectorField; // 0x0030(0x00D0)(NoDestructor, NativeAccessSpecifierPublic) + struct FFloatDistribution VectorFieldScale; // 0x0100(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFloatDistribution DragCoefficient; // 0x0120(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFloatDistribution PointAttractorStrength; // 0x0140(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFloatDistribution Resilience; // 0x0160(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ConstantAcceleration; // 0x0180(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PointAttractorPosition; // 0x0198(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PointAttractorRadiusSq; // 0x01B0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B4[0x4]; // 0x01B4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector OrbitOffsetBase; // 0x01B8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitOffsetRange; // 0x01D0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D InvMaxSize; // 0x01E8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InvRotationRateScale; // 0x01F8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxLifetime; // 0x01FC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxParticleCount; // 0x0200(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleScreenAlignment ScreenAlignment; // 0x0204(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleAxisLock LockAxisFlag; // 0x0205(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_206[0x2]; // 0x0206(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bEnableCollision : 1; // 0x0208(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_209[0x3]; // 0x0209(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + EParticleCollisionMode CollisionMode; // 0x020C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_20D[0x3]; // 0x020D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bUseVelocityForMotionBlur : 1; // 0x0210(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRemoveHMDRoll : 1; // 0x0210(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_211[0x3]; // 0x0211(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinFacingCameraBlendDistance; // 0x0214(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxFacingCameraBlendDistance; // 0x0218(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21C[0x4]; // 0x021C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRawDistributionVector DynamicColor; // 0x0220(0x0060)(ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat DynamicAlpha; // 0x0280(0x0030)(ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionVector DynamicColorScale; // 0x02B0(0x0060)(ContainsInstancedReference, NativeAccessSpecifierPublic) + struct FRawDistributionFloat DynamicAlphaScale; // 0x0310(0x0030)(ContainsInstancedReference, NativeAccessSpecifierPublic) + uint8 Pad_340[0x10]; // 0x0340(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FGPUSpriteEmitterInfo; + +// ScriptStruct Engine.RootMotionExtractionStep +// 0x0010 (0x0010 - 0x0000) +struct FRootMotionExtractionStep final +{ +public: + class UAnimSequence* AnimSequence; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartPosition; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float EndPosition; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionExtractionStep; + +// ScriptStruct Engine.GPUSpriteResourceData +// 0x0240 (0x0240 - 0x0000) +struct FGPUSpriteResourceData final +{ +public: + TArray QuantizedColorSamples; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray QuantizedMiscSamples; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray QuantizedSimulationAttrSamples; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FVector4 ColorScale; // 0x0030(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 ColorBias; // 0x0050(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 MiscScale; // 0x0070(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 MiscBias; // 0x0090(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 SimulationAttrCurveScale; // 0x00B0(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 SimulationAttrCurveBias; // 0x00D0(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 SubImageSize; // 0x00F0(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 SizeBySpeed; // 0x0110(0x0020)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ConstantAcceleration; // 0x0130(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitOffsetBase; // 0x0148(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitOffsetRange; // 0x0160(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitFrequencyBase; // 0x0178(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitFrequencyRange; // 0x0190(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitPhaseBase; // 0x01A8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector OrbitPhaseRange; // 0x01C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalVectorFieldScale; // 0x01D8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GlobalVectorFieldTightness; // 0x01DC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerParticleVectorFieldScale; // 0x01E0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PerParticleVectorFieldBias; // 0x01E4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DragCoefficientScale; // 0x01E8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DragCoefficientBias; // 0x01EC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ResilienceScale; // 0x01F0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ResilienceBias; // 0x01F4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionRadiusScale; // 0x01F8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionRadiusBias; // 0x01FC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionTimeBias; // 0x0200(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionRandomSpread; // 0x0204(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CollisionRandomDistribution; // 0x0208(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OneMinusFriction; // 0x020C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RotationRateScale; // 0x0210(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CameraMotionBlurAmount; // 0x0214(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleScreenAlignment ScreenAlignment; // 0x0218(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EParticleAxisLock LockAxisFlag; // 0x0219(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21A[0x6]; // 0x021A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D PivotOffset; // 0x0220(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bUseVelocityForMotionBlur : 1; // 0x0230(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRemoveHMDRoll : 1; // 0x0230(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_231[0x3]; // 0x0231(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MinFacingCameraBlendDistance; // 0x0234(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxFacingCameraBlendDistance; // 0x0238(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_23C[0x4]; // 0x023C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FGPUSpriteResourceData; + +// ScriptStruct Engine.NamedEmitterMaterial +// 0x0010 (0x0010 - 0x0000) +struct FNamedEmitterMaterial final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialInterface* Material; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNamedEmitterMaterial; + +// ScriptStruct Engine.GraphAssetPlayerInformation +// 0x0010 (0x0010 - 0x0000) +struct FGraphAssetPlayerInformation final +{ +public: + TArray PlayerNodeIndices; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGraphAssetPlayerInformation; + +// ScriptStruct Engine.ParticleEmitterReplayFrame +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FParticleEmitterReplayFrame final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParticleEmitterReplayFrame; + +// ScriptStruct Engine.ParticleSystemReplayFrame +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FParticleSystemReplayFrame final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParticleSystemReplayFrame; + +// ScriptStruct Engine.PieFixupStructWithSoftObjectPath +// 0x0048 (0x0048 - 0x0000) +struct FPieFixupStructWithSoftObjectPath final +{ +public: + struct FSoftObjectPath Path; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr TypedPtr; // 0x0020(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPieFixupStructWithSoftObjectPath; + +// ScriptStruct Engine.DelegateArray +// 0x0010 (0x0010 - 0x0000) +struct FDelegateArray final +{ +public: + TArray> Delegates; // 0x0000(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDelegateArray; + +// ScriptStruct Engine.AnimSegment +// 0x0020 (0x0020 - 0x0000) +struct FAnimSegment final +{ +public: + class UAnimSequenceBase* AnimReference; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StartPos; // 0x0008(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnimStartTime; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnimEndTime; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AnimPlayRate; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LoopingCount; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSegment; + +// ScriptStruct Engine.AnimTrack +// 0x0010 (0x0010 - 0x0000) +struct FAnimTrack final +{ +public: + TArray AnimSegments; // 0x0000(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimTrack; + +// ScriptStruct Engine.CameraCacheEntry +// 0x0840 (0x0840 - 0x0000) +struct FCameraCacheEntry final +{ +public: + float Timestamp; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMinimalViewInfo POV; // 0x0010(0x0830)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraCacheEntry; + +// ScriptStruct Engine.TViewTarget +// 0x0850 (0x0850 - 0x0000) +struct FTViewTarget final +{ +public: + class AActor* Target; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMinimalViewInfo POV; // 0x0010(0x0830)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + class APlayerState* PlayerState; // 0x0840(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_848[0x8]; // 0x0848(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTViewTarget; + +// ScriptStruct Engine.AnimBlueprintFunction +// 0x0078 (0x0078 - 0x0000) +struct FAnimBlueprintFunction final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Group; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OutputPoseNodeIndex; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray InputPoseNames; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray InputPoseNodeIndices; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_38[0x38]; // 0x0038(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + bool bImplemented; // 0x0070(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimBlueprintFunction; + +// ScriptStruct Engine.ViewTargetTransitionParams +// 0x0010 (0x0010 - 0x0000) +struct FViewTargetTransitionParams final +{ +public: + float BlendTime; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EViewTargetBlendFunction BlendFunction; // 0x0004(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BlendExp; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLockOutgoing : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FViewTargetTransitionParams; + +// ScriptStruct Engine.SpatialHashRuntimeGrid +// 0x0001 (0x0001 - 0x0000) +struct FSpatialHashRuntimeGrid final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSpatialHashRuntimeGrid; + +// ScriptStruct Engine.SpriteCategoryInfo +// 0x0028 (0x0028 - 0x0000) +struct FSpriteCategoryInfo final +{ +public: + class FName Category; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FText DisplayName; // 0x0008(0x0010)(NativeAccessSpecifierPublic) + class FText Description; // 0x0018(0x0010)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSpriteCategoryInfo; + +// ScriptStruct Engine.AnimExecutionContext +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FAnimExecutionContext +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimExecutionContext; + +// ScriptStruct Engine.AnimPoseContext +// 0x0000 (0x0010 - 0x0010) +struct FAnimPoseContext final : public FAnimExecutionContext +{ +}; +//_ASSERTS_FAnimPoseContext; + +// ScriptStruct Engine.AnimNodeData +// 0x0028 (0x0028 - 0x0000) +struct FAnimNodeData final +{ +public: + TScriptInterface AnimClassInterface; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Entries; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + int32 NodeIndex; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint32 Flags; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimNodeData; + +// ScriptStruct Engine.ReverbSettings +// 0x0020 (0x0020 - 0x0000) +struct FReverbSettings final +{ +public: + bool bApplyReverb; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UReverbEffect* ReverbEffect; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundEffectSubmixPreset* ReverbPluginEffect; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Volume; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeTime; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FReverbSettings; + +// ScriptStruct Engine.CompositeSection +// 0x0020 (0x0050 - 0x0030) +struct FCompositeSection final : public FAnimLinkableElement +{ +public: + class FName SectionName; // 0x0030(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName NextSectionName; // 0x0038(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray MetaData; // 0x0040(0x0010)(Edit, ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCompositeSection; + +// ScriptStruct Engine.ColorGradePerRangeSettings +// 0x00A0 (0x00A0 - 0x0000) +struct FColorGradePerRangeSettings final +{ +public: + struct FVector4 Saturation; // 0x0000(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 Contrast; // 0x0020(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 Gamma; // 0x0040(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 Gain; // 0x0060(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4 Offset; // 0x0080(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FColorGradePerRangeSettings; + +// ScriptStruct Engine.ColorGradingSettings +// 0x0290 (0x0290 - 0x0000) +struct FColorGradingSettings final +{ +public: + struct FColorGradePerRangeSettings Global; // 0x0000(0x00A0)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + struct FColorGradePerRangeSettings Shadows; // 0x00A0(0x00A0)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + struct FColorGradePerRangeSettings Midtones; // 0x0140(0x00A0)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + struct FColorGradePerRangeSettings Highlights; // 0x01E0(0x00A0)(Edit, BlueprintVisible, Interp, NoDestructor, NativeAccessSpecifierPublic) + float ShadowsMax; // 0x0280(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HighlightsMin; // 0x0284(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HighlightsMax; // 0x0288(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28C[0x4]; // 0x028C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FColorGradingSettings; + +// ScriptStruct Engine.AnimInitializationContext +// 0x0000 (0x0010 - 0x0010) +struct FAnimInitializationContext final : public FAnimExecutionContext +{ +}; +//_ASSERTS_FAnimInitializationContext; + +// ScriptStruct Engine.FilmStockSettings +// 0x0014 (0x0014 - 0x0000) +struct FFilmStockSettings final +{ +public: + float Slope; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Toe; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Shoulder; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlackClip; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WhiteClip; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, Interp, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFilmStockSettings; + +// ScriptStruct Engine.RPCAnalyticsThreshold +// 0x0018 (0x0018 - 0x0000) +struct FRPCAnalyticsThreshold final +{ +public: + class FName RPC; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CountPerSec; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + double TimePerSec; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRPCAnalyticsThreshold; + +// ScriptStruct Engine.ClusteredActorData +// 0x0058 (0x0058 - 0x0000) +struct alignas(0x08) FClusteredActorData final +{ +public: + uint8 Pad_0[0x50]; // 0x0000(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + bool bWasReplicatingMovement; // 0x0050(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FClusteredActorData; + +// ScriptStruct Engine.ShaderTimings +// 0x0018 (0x0018 - 0x0000) +struct FShaderTimings final +{ +public: + float MinCompileTime; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxCompileTime; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TotalCompileTime; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TotalPreprocessTime; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumCompiled; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AverageCompileTime; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FShaderTimings; + +// ScriptStruct Engine.ShaderStats +// 0x0028 (0x0028 - 0x0000) +struct FShaderStats final +{ +public: + TArray PermutationCompilations; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint32 Compiled; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Cooked; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 CompiledDouble; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 CookedDouble; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CompileTime; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FShaderStats; + +// ScriptStruct Engine.VertexOffsetUsage +// 0x0004 (0x0004 - 0x0000) +struct FVertexOffsetUsage final +{ +public: + int32 Usage; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVertexOffsetUsage; + +// ScriptStruct Engine.DrawToRenderTargetContext +// 0x0008 (0x0008 - 0x0000) +struct FDrawToRenderTargetContext final +{ +public: + class UTextureRenderTarget2D* RenderTarget; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDrawToRenderTargetContext; + +// ScriptStruct Engine.PrecomputedSkyLightInstanceData +// 0x00C8 (0x0180 - 0x00B8) +struct alignas(0x10) FPrecomputedSkyLightInstanceData final : public FSceneComponentInstanceData +{ +public: + struct FGuid OriginalLightGuid; // 0x00B8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid LightGuid; // 0x00C8(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AverageBrightness; // 0x00D8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_DC[0xA4]; // 0x00DC(0x00A4)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPrecomputedSkyLightInstanceData; + +// ScriptStruct Engine.ActorFolderSet +// 0x0050 (0x0050 - 0x0000) +struct FActorFolderSet final +{ +public: + TSet ActorFolders; // 0x0000(0x0050)(Transient, UObjectWrapper, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FActorFolderSet; + +// ScriptStruct Engine.SourceEffectChainEntry +// 0x0010 (0x0010 - 0x0000) +struct FSourceEffectChainEntry final +{ +public: + class USoundEffectSourcePreset* Preset; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bBypass : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSourceEffectChainEntry; + +// ScriptStruct Engine.ReplicatedStaticActorDestructionInfo +// 0x0040 (0x0040 - 0x0000) +struct FReplicatedStaticActorDestructionInfo final +{ +public: + uint8 Pad_0[0x38]; // 0x0000(0x0038)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf ObjClass; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FReplicatedStaticActorDestructionInfo; + +// ScriptStruct Engine.ModulatorContinuousParams +// 0x0020 (0x0020 - 0x0000) +struct FModulatorContinuousParams final +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Default; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinInput; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxInput; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinOutput; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxOutput; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EModulationParamMode ParamMode; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FModulatorContinuousParams; + +// ScriptStruct Engine.SoundTimecodeOffset +// 0x0008 (0x0008 - 0x0000) +struct FSoundTimecodeOffset final +{ +public: + double NumOfSecondsSinceMidnight; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundTimecodeOffset; + +// ScriptStruct Engine.HitResultNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FHitResultNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//_ASSERTS_FHitResultNetSerializerConfig; + +// ScriptStruct Engine.SoundWaveEnvelopeDataPerSound +// 0x0010 (0x0010 - 0x0000) +struct FSoundWaveEnvelopeDataPerSound final +{ +public: + float Envelope; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PlaybackTime; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundWave* SoundWave; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundWaveEnvelopeDataPerSound; + +// ScriptStruct Engine.CharacterNetworkSerializationPackedBitsNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FCharacterNetworkSerializationPackedBitsNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint32 MaxAllowedDataBits; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCharacterNetworkSerializationPackedBitsNetSerializerConfig; + +// ScriptStruct Engine.SoundWaveSpectralTimeData +// 0x0018 (0x0018 - 0x0000) +struct FSoundWaveSpectralTimeData final +{ +public: + TArray Data; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float TimeSec; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundWaveSpectralTimeData; + +// ScriptStruct Engine.DeviceColorData +// 0x0008 (0x0008 - 0x0000) +struct FDeviceColorData final +{ +public: + bool bEnable; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResetAfterCompletion; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FColor LightColor; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceColorData; + +// ScriptStruct Engine.StaticMeshComponentLODInfo +// 0x00A0 (0x00A0 - 0x0000) +struct alignas(0x08) FStaticMeshComponentLODInfo final +{ +public: + uint8 Pad_0[0xA0]; // 0x0000(0x00A0)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticMeshComponentLODInfo; + +// ScriptStruct Engine.DeviceTriggerTriggerResistanceData +// 0x0010 (0x0010 - 0x0000) +struct FDeviceTriggerTriggerResistanceData final +{ +public: + int32 StartPosition; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartStrengh; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndPosition; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndStrengh; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceTriggerTriggerResistanceData; + +// ScriptStruct Engine.StreamingRenderAssetPrimitiveInfo +// 0x0050 (0x0050 - 0x0000) +struct FStreamingRenderAssetPrimitiveInfo final +{ +public: + class UStreamableRenderAsset* RenderAsset; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBoxSphereBounds Bounds; // 0x0008(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float TexelFactor; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PackedRelativeBox; // 0x0044(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bAllowInvalidTexelFactorWhenUnregistered : 1; // 0x0048(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectedByComponentScale : 1; // 0x0048(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStreamingRenderAssetPrimitiveInfo; + +// ScriptStruct Engine.CollectionParameterBase +// 0x0018 (0x0018 - 0x0000) +struct FCollectionParameterBase +{ +public: + class FName ParameterName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ID; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollectionParameterBase; + +// ScriptStruct Engine.CollectionScalarParameter +// 0x0004 (0x001C - 0x0018) +struct FCollectionScalarParameter final : public FCollectionParameterBase +{ +public: + float DefaultValue; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollectionScalarParameter; + +// ScriptStruct Engine.TimelineEventEntry +// 0x0014 (0x0014 - 0x0000) +struct FTimelineEventEntry final +{ +public: + float Time; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate EventFunc; // 0x0004(0x0010)(ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTimelineEventEntry; + +// ScriptStruct Engine.TimelineFloatTrack +// 0x0040 (0x0040 - 0x0000) +struct FTimelineFloatTrack final +{ +public: + class UCurveFloat* FloatCurve; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TDelegate InterpFunc; // 0x0008(0x0010)(ZeroConstructor, InstancedReference, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TrackName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FloatPropertyName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x18]; // 0x0028(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimelineFloatTrack; + +// ScriptStruct Engine.NetDriverReplicationSystemConfig +// 0x001C (0x001C - 0x0000) +struct FNetDriverReplicationSystemConfig final +{ +public: + uint32 MaxReplicatedObjectCount; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 InitialNetObjectListCount; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 NetObjectListGrowCount; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 PreAllocatedMemoryBuffersObjectCount; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxReplicationWriterObjectCount; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxDeltaCompressedObjectCount; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxNetObjectGroupCount; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetDriverReplicationSystemConfig; + +// ScriptStruct Engine.Timeline +// 0x0098 (0x0098 - 0x0000) +struct FTimeline final +{ +public: + ETimelineLengthMode LengthMode; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 bLooping : 1; // 0x0001(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bReversePlayback : 1; // 0x0001(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 bPlaying : 1; // 0x0001(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Deprecated, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate)) + uint8 PlayingStateTracker; // 0x0002(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float Length; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float PlayRate; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float position; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Events; // 0x0010(0x0010)(ZeroConstructor, RepSkip, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TArray InterpVectors; // 0x0020(0x0010)(ZeroConstructor, RepSkip, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TArray InterpFloats; // 0x0030(0x0010)(ZeroConstructor, RepSkip, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TArray InterpLinearColors; // 0x0040(0x0010)(ZeroConstructor, RepSkip, ContainsInstancedReference, NativeAccessSpecifierPrivate) + TDelegate TimelinePostUpdateFunc; // 0x0050(0x0010)(ZeroConstructor, InstancedReference, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TDelegate TimelineFinishedFunc; // 0x0060(0x0010)(ZeroConstructor, InstancedReference, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TWeakObjectPtr PropertySetObject; // 0x0070(0x0008)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName DirectionPropertyName; // 0x0078(0x0008)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_80[0x18]; // 0x0080(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimeline; + +// ScriptStruct Engine.VolumetricLightMapGridDesc +// 0x0068 (0x0068 - 0x0000) +struct FVolumetricLightMapGridDesc final +{ +public: + struct FBox GridBounds; // 0x0000(0x0038)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FGuid Guid; // 0x0038(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CellSize; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DetailCellSize; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BrickSize; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Cells; // 0x0058(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVolumetricLightMapGridDesc; + +// ScriptStruct Engine.SectionReference +// 0x0004 (0x0004 - 0x0000) +struct FSectionReference final +{ +public: + int32 SectionIndex; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSectionReference; + +// ScriptStruct Engine.ContainerPropertyOverride +// 0x0001 (0x0001 - 0x0000) +struct FContainerPropertyOverride final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FContainerPropertyOverride; + +// ScriptStruct Engine.RuntimePartitionStreamingData +// 0x0048 (0x0048 - 0x0000) +struct FRuntimePartitionStreamingData final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + int32 LoadingRange; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SpatiallyLoadedCells; // 0x0010(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + TArray NonSpatiallyLoadedCells; // 0x0020(0x0010)(ZeroConstructor, Protected, UObjectWrapper, NativeAccessSpecifierProtected) + uint8 Pad_30[0x18]; // 0x0030(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRuntimePartitionStreamingData; + +// ScriptStruct Engine.PassiveSoundMixModifier +// 0x0010 (0x0010 - 0x0000) +struct FPassiveSoundMixModifier final +{ +public: + class USoundMix* SoundMix; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinVolumeThreshold; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxVolumeThreshold; // 0x000C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPassiveSoundMixModifier; + +// ScriptStruct Engine.NetViewer +// 0x0048 (0x0048 - 0x0000) +struct FNetViewer final +{ +public: + class UNetConnection* Connection; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* InViewer; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* ViewTarget; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ViewLocation; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ViewDir; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetViewer; + +// ScriptStruct Engine.BroadphaseSettings +// 0x0080 (0x0080 - 0x0000) +struct FBroadphaseSettings final +{ +public: + bool bUseMBPOnClient; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseMBPOnServer; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseMBPOuterBounds; // 0x0002(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x5]; // 0x0003(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + struct FBox MBPBounds; // 0x0008(0x0038)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FBox MBPOuterBounds; // 0x0040(0x0038)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint32 MBPNumSubdivs; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBroadphaseSettings; + +// ScriptStruct Engine.SoundClassAdjuster +// 0x0020 (0x0020 - 0x0000) +struct FSoundClassAdjuster final +{ +public: + class USoundClass* SoundClassObject; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeAdjuster; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PitchAdjuster; // 0x000C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LowPassFilterFrequency; // 0x0010(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bApplyToChildren : 1; // 0x0014(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float VoiceCenterChannelVolumeAdjuster; // 0x0018(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundClassAdjuster; + +// ScriptStruct Engine.QuartzTimeSignature +// 0x0018 (0x0018 - 0x0000) +struct FQuartzTimeSignature final +{ +public: + int32 NumBeats; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EQuartzTimeSignatureQuantization BeatType; // 0x0004(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray OptionalPulseOverride; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FQuartzTimeSignature; + +// ScriptStruct Engine.QuartzClockSettings +// 0x0020 (0x0020 - 0x0000) +struct FQuartzClockSettings final +{ +public: + struct FQuartzTimeSignature TimeSignature; // 0x0000(0x0018)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + bool bIgnoreLevelChange; // 0x0018(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FQuartzClockSettings; + +// ScriptStruct Engine.NavAvoidanceData +// 0x0058 (0x0058 - 0x0000) +struct alignas(0x08) FNavAvoidanceData final +{ +public: + uint8 Pad_0[0x58]; // 0x0000(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNavAvoidanceData; + +// ScriptStruct Engine.NavLinkId +// 0x0008 (0x0008 - 0x0000) +struct FNavLinkId final +{ +public: + uint64 ID; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FNavLinkId; + +// ScriptStruct Engine.BlendFilter +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FBlendFilter final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlendFilter; + +// ScriptStruct Engine.AnimGroupInstance +// 0x0078 (0x0078 - 0x0000) +struct alignas(0x08) FAnimGroupInstance final +{ +public: + uint8 Pad_0[0x78]; // 0x0000(0x0078)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimGroupInstance; + +// ScriptStruct Engine.MaterialFunctionInfo +// 0x0018 (0x0018 - 0x0000) +struct FMaterialFunctionInfo final +{ +public: + struct FGuid StateId; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialFunctionInterface* Function; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialFunctionInfo; + +// ScriptStruct Engine.AnimationRecordingSettings +// 0x0040 (0x0040 - 0x0000) +struct FAnimationRecordingSettings final +{ +public: + bool bRecordInWorldSpace; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemoveRootAnimation; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoSaveAsset; // 0x0002(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FFrameRate SampleFrameRate; // 0x0004(0x0008)(Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Length; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimInterpolationType Interpolation; // 0x0010(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveInterpMode InterpMode; // 0x0011(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ERichCurveTangentMode TangentMode; // 0x0012(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x1]; // 0x0013(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + bool bRecordTransforms; // 0x0014(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecordMorphTargets; // 0x0015(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecordAttributeCurves; // 0x0016(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecordMaterialCurves; // 0x0017(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTransactRecording; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray IncludeAnimationNames; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ExcludeAnimationNames; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationRecordingSettings; + +// ScriptStruct Engine.StateMachineDebugData +// 0x0150 (0x0150 - 0x0000) +struct alignas(0x08) FStateMachineDebugData final +{ +public: + uint8 Pad_0[0x150]; // 0x0000(0x0150)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStateMachineDebugData; + +// ScriptStruct Engine.AnimBlueprintConstantData +// 0x0001 (0x0001 - 0x0000) +struct FAnimBlueprintConstantData +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimBlueprintConstantData; + +// ScriptStruct Engine.ScalarParameterValue +// 0x0024 (0x0024 - 0x0000) +struct FScalarParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ParameterValue; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0014(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FScalarParameterValue; + +// ScriptStruct Engine.CachedPoseIndices +// 0x0010 (0x0010 - 0x0000) +struct FCachedPoseIndices final +{ +public: + TArray OrderedSavedPoseNodeIndices; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCachedPoseIndices; + +// ScriptStruct Engine.AnimGraphBlendOptions +// 0x0020 (0x0020 - 0x0000) +struct FAnimGraphBlendOptions final +{ +public: + float BlendInTime; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* BlendInProfile; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOutTime; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* BlendOutProfile; // 0x0018(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimGraphBlendOptions; + +// ScriptStruct Engine.TextureCollectionParameterValue +// 0x0028 (0x0028 - 0x0000) +struct FTextureCollectionParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTextureCollection* ParameterValue; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0018(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextureCollectionParameterValue; + +// ScriptStruct Engine.BoneMirrorExport +// 0x0014 (0x0014 - 0x0000) +struct FBoneMirrorExport final +{ +public: + class FName BoneName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SourceBoneName; // 0x0008(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAxis BoneFlipAxis; // 0x0010(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBoneMirrorExport; + +// ScriptStruct Engine.AnimUpdateContext +// 0x0000 (0x0010 - 0x0010) +struct FAnimUpdateContext final : public FAnimExecutionContext +{ +}; +//_ASSERTS_FAnimUpdateContext; + +// ScriptStruct Engine.AnimComponentSpacePoseContext +// 0x0000 (0x0010 - 0x0010) +struct FAnimComponentSpacePoseContext final : public FAnimExecutionContext +{ +}; +//_ASSERTS_FAnimComponentSpacePoseContext; + +// ScriptStruct Engine.SlotAnimationTrack +// 0x0018 (0x0018 - 0x0000) +struct FSlotAnimationTrack final +{ +public: + class FName SlotName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FAnimTrack AnimTrack; // 0x0008(0x0010)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSlotAnimationTrack; + +// ScriptStruct Engine.SkelMeshMergeMeshUVTransforms +// 0x0010 (0x0010 - 0x0000) +struct FSkelMeshMergeMeshUVTransforms final +{ +public: + TArray UVTransforms; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkelMeshMergeMeshUVTransforms; + +// ScriptStruct Engine.SkelMeshMergeUVTransformMapping +// 0x0010 (0x0010 - 0x0000) +struct FSkelMeshMergeUVTransformMapping final +{ +public: + TArray UVTransformsPerMesh; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkelMeshMergeUVTransformMapping; + +// ScriptStruct Engine.BranchingPointMarker +// 0x000C (0x000C - 0x0000) +struct FBranchingPointMarker final +{ +public: + int32 NotifyIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TriggerTime; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAnimNotifyEventType NotifyEventType; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBranchingPointMarker; + +// ScriptStruct Engine.AnimMontageInstance +// 0x01D8 (0x01D8 - 0x0000) +struct FAnimMontageInstance final +{ +public: + class UAnimMontage* Montage; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x30]; // 0x0008(0x0030)(Fixing Size After Last Property [ Dumper-7 ]) + bool bPlaying; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x3]; // 0x0039(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DefaultBlendTimeMultiplier; // 0x003C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_40[0xC8]; // 0x0040(0x00C8)(Fixing Size After Last Property [ Dumper-7 ]) + TArray NextSections; // 0x0108(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray PrevSections; // 0x0118(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + uint8 Pad_128[0x10]; // 0x0128(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ActiveStateBranchingPoints; // 0x0138(0x0010)(ZeroConstructor, Transient, ContainsInstancedReference, NativeAccessSpecifierPrivate) + float position; // 0x0148(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float PlayRate; // 0x014C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FAlphaBlend Blend; // 0x0150(0x0030)(Transient, NoDestructor, NativeAccessSpecifierPrivate) + uint8 Pad_180[0x34]; // 0x0180(0x0034)(Fixing Size After Last Property [ Dumper-7 ]) + int32 DisableRootMotionCount; // 0x01B4(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1B8[0x20]; // 0x01B8(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimMontageInstance; + +// ScriptStruct Engine.AnimNode_ConvertComponentToLocalSpace +// 0x0010 (0x0020 - 0x0010) +struct FAnimNode_ConvertComponentToLocalSpace final : public FAnimNode_Base +{ +public: + struct FComponentSpacePoseLink ComponentPose; // 0x0010(0x0010)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNode_ConvertComponentToLocalSpace; + +// ScriptStruct Engine.ChildActorAttachedActorInfo +// 0x0070 (0x0070 - 0x0000) +struct FChildActorAttachedActorInfo final +{ +public: + TWeakObjectPtr Actor; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SocketName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FTransform RelativeTransform; // 0x0010(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FChildActorAttachedActorInfo; + +// ScriptStruct Engine.InertializationPose +// 0x00C0 (0x00C0 - 0x0000) +struct alignas(0x10) FInertializationPose final +{ +public: + uint8 Pad_0[0xC0]; // 0x0000(0x00C0)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInertializationPose; + +// ScriptStruct Engine.InertializationPoseDiff +// 0x0038 (0x0038 - 0x0000) +struct alignas(0x08) FInertializationPoseDiff final +{ +public: + uint8 Pad_0[0x38]; // 0x0000(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInertializationPoseDiff; + +// ScriptStruct Engine.BatchedLine +// 0x0050 (0x0050 - 0x0000) +struct FBatchedLine final +{ +public: + struct FVector Start; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector End; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x0030(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Thickness; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RemainingLifeTime; // 0x0044(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 DepthPriority; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x3]; // 0x0049(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 BatchID; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBatchedLine; + +// ScriptStruct Engine.MaterialSpriteElement +// 0x0028 (0x0028 - 0x0000) +struct FMaterialSpriteElement final +{ +public: + class UMaterialInterface* Material; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* DistanceToOpacityCurve; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSizeIsInScreenSpace : 1; // 0x0010(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float BaseSizeX; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseSizeY; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* DistanceToSizeCurve; // 0x0020(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialSpriteElement; + +// ScriptStruct Engine.InputScaleBiasClampState +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FInputScaleBiasClampState final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInputScaleBiasClampState; + +// ScriptStruct Engine.AnimNode_SequencePlayerBase +// 0x0008 (0x0040 - 0x0038) +struct FAnimNode_SequencePlayerBase : public FAnimNode_AssetPlayerBase +{ +public: + struct FInputScaleBiasClampState PlayRateScaleBiasClampState; // 0x0038(0x0008)(NoDestructor, Protected, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FAnimNode_SequencePlayerBase; + +// ScriptStruct Engine.AnimNode_SequencePlayer +// 0x0008 (0x0048 - 0x0040) +struct FAnimNode_SequencePlayer final : public FAnimNode_SequencePlayerBase +{ +public: + class UAnimSequenceBase* Sequence; // 0x0040(0x0008)(Edit, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FAnimNode_SequencePlayer; + +// ScriptStruct Engine.InputScaleBiasClampConstants +// 0x002C (0x002C - 0x0000) +struct FInputScaleBiasClampConstants final +{ +public: + bool bMapRange; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClampResult; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInterpResult; // 0x0002(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInputRange InRange; // 0x0004(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FInputRange OutRange; // 0x000C(0x0008)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + float Scale; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bias; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampMin; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampMax; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedIncreasing; // 0x0024(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedDecreasing; // 0x0028(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputScaleBiasClampConstants; + +// ScriptStruct Engine.AnimNode_SequencePlayer_Standalone +// 0x0058 (0x0098 - 0x0040) +struct FAnimNode_SequencePlayer_Standalone final : public FAnimNode_SequencePlayerBase +{ +public: + class FName GroupName; // 0x0040(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EAnimGroupRole GroupRole; // 0x0048(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bOverridePositionWhenJoiningSyncGroupAsLeader; // 0x0049(0x0001)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + EAnimSyncMethod Method; // 0x004A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bIgnoreForRelevancyTest; // 0x004B(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_4C[0x4]; // 0x004C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimSequenceBase* Sequence; // 0x0050(0x0008)(Edit, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float PlayRateBasis; // 0x0058(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + float PlayRate; // 0x005C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FInputScaleBiasClampConstants PlayRateScaleBiasClampConstants; // 0x0060(0x002C)(Edit, NoDestructor, Protected, NativeAccessSpecifierProtected) + float StartPosition; // 0x008C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bLoopAnimation; // 0x0090(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bStartFromMatchingPose; // 0x0091(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_92[0x6]; // 0x0092(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_SequencePlayer_Standalone; + +// ScriptStruct Engine.AnimationActiveTransitionEntry +// 0x00C8 (0x00C8 - 0x0000) +struct FAnimationActiveTransitionEntry final +{ +public: + uint8 Pad_0[0xB8]; // 0x0000(0x00B8)(Fixing Size After Last Property [ Dumper-7 ]) + class UBlendProfile* BlendProfile; // 0x00B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C0[0x8]; // 0x00C0(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationActiveTransitionEntry; + +// ScriptStruct Engine.AnimationPotentialTransition +// 0x0030 (0x0030 - 0x0000) +struct alignas(0x08) FAnimationPotentialTransition final +{ +public: + uint8 Pad_0[0x30]; // 0x0000(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationPotentialTransition; + +// ScriptStruct Engine.RootMotionSource_RadialForce +// 0x0060 (0x0120 - 0x00C0) +struct FRootMotionSource_RadialForce final : public FRootMotionSource +{ +public: + struct FVector Location; // 0x00C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class AActor* LocationActor; // 0x00D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x00E0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Strength; // 0x00E4(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsPush; // 0x00E8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNoZForce; // 0x00E9(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_EA[0x6]; // 0x00EA(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* StrengthDistanceFalloff; // 0x00F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* StrengthOverTime; // 0x00F8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseFixedWorldDirection; // 0x0100(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRotator FixedWorldDirection; // 0x0108(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSource_RadialForce; + +// ScriptStruct Engine.AnimNode_StateResult +// 0x0000 (0x0020 - 0x0020) +struct FAnimNode_StateResult final : public FAnimNode_Root +{ +}; +//_ASSERTS_FAnimNode_StateResult; + +// ScriptStruct Engine.AnimNode_TransitionPoseEvaluator +// 0x0098 (0x00A8 - 0x0010) +struct FAnimNode_TransitionPoseEvaluator final : public FAnimNode_Base +{ +public: + uint8 Pad_10[0x78]; // 0x0010(0x0078)(Fixing Size After Last Property [ Dumper-7 ]) + int32 FramesToCachePose; // 0x0088(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8C[0x4]; // 0x008C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + EEvaluatorDataSource DataSource; // 0x0090(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EEvaluatorMode EvaluatorMode; // 0x0091(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_92[0x16]; // 0x0092(0x0016)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_TransitionPoseEvaluator; + +// ScriptStruct Engine.AnimNode_TransitionResult +// 0x0018 (0x0028 - 0x0010) +struct FAnimNode_TransitionResult final : public FAnimNode_Base +{ +public: + bool bCanEnterTransition; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x17]; // 0x0011(0x0017)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNode_TransitionResult; + +// ScriptStruct Engine.AnimNode_UseCachedPose +// 0x0018 (0x0028 - 0x0010) +struct FAnimNode_UseCachedPose final : public FAnimNode_Base +{ +public: + struct FPoseLink LinkToCachingNode; // 0x0010(0x0010)(NoDestructor, NativeAccessSpecifierPublic) + class FName CachePoseName; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNode_UseCachedPose; + +// ScriptStruct Engine.RootMotionSourceGroupNetSerializerConfig +// 0x0000 (0x0028 - 0x0028) +struct FRootMotionSourceGroupNetSerializerConfig final : public FPolymorphicArrayStructNetSerializerConfig +{ +}; +//_ASSERTS_FRootMotionSourceGroupNetSerializerConfig; + +// ScriptStruct Engine.AnimNotifyEventReference +// 0x0030 (0x0030 - 0x0000) +struct FAnimNotifyEventReference final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + class UMirrorDataTable* MirrorTable; // 0x0018(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UObject* NotifySource; // 0x0020(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNotifyEventReference; + +// ScriptStruct Engine.AnimNotifyArray +// 0x0010 (0x0010 - 0x0000) +struct FAnimNotifyArray final +{ +public: + TArray Notifies; // 0x0000(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNotifyArray; + +// ScriptStruct Engine.AnimNotifyContext +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FAnimNotifyContext final +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNotifyContext; + +// ScriptStruct Engine.AnimNotifyQueue +// 0x0070 (0x0070 - 0x0000) +struct FAnimNotifyQueue final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AnimNotifies; // 0x0010(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + TMap UnfilteredMontageAnimNotifies; // 0x0020(0x0050)(Transient, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNotifyQueue; + +// ScriptStruct Engine.NetLevelVisibilityTransactionId +// 0x0004 (0x0004 - 0x0000) +struct FNetLevelVisibilityTransactionId final +{ +public: + uint32 Data; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FNetLevelVisibilityTransactionId; + +// ScriptStruct Engine.UpdateLevelVisibilityLevelInfo +// 0x0018 (0x0018 - 0x0000) +struct FUpdateLevelVisibilityLevelInfo final +{ +public: + class FName PackageName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Filename; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FNetLevelVisibilityTransactionId VisibilityRequestId; // 0x0010(0x0004)(NoDestructor, NativeAccessSpecifierPublic) + uint8 bIsVisible : 1; // 0x0014(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bTryMakeVisible : 1; // 0x0014(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSkipCloseOnError : 1; // 0x0014(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FUpdateLevelVisibilityLevelInfo; + +// ScriptStruct Engine.AnimSequenceTrackContainer +// 0x0020 (0x0020 - 0x0000) +struct FAnimSequenceTrackContainer final +{ +public: + TArray AnimationTracks; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray TrackNames; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimSequenceTrackContainer; + +// ScriptStruct Engine.TranslationTrack +// 0x0020 (0x0020 - 0x0000) +struct FTranslationTrack final +{ +public: + TArray PosKeys; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Times; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTranslationTrack; + +// ScriptStruct Engine.RotationTrack +// 0x0020 (0x0020 - 0x0000) +struct FRotationTrack final +{ +public: + TArray RotKeys; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Times; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRotationTrack; + +// ScriptStruct Engine.ScaleTrack +// 0x0020 (0x0020 - 0x0000) +struct FScaleTrack final +{ +public: + TArray ScaleKeys; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Times; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FScaleTrack; + +// ScriptStruct Engine.NameCurveKey +// 0x000C (0x000C - 0x0000) +struct FNameCurveKey final +{ +public: + float Time; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Value; // 0x0004(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNameCurveKey; + +// ScriptStruct Engine.NameCurve +// 0x0010 (0x0078 - 0x0068) +struct FNameCurve final : public FIndexedCurve +{ +public: + TArray Keys; // 0x0068(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNameCurve; + +// ScriptStruct Engine.CurveTrack +// 0x0018 (0x0018 - 0x0000) +struct FCurveTrack final +{ +public: + class FName CurveName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray CurveWeights; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveTrack; + +// ScriptStruct Engine.LinearConstraint +// 0x0008 (0x001C - 0x0014) +struct FLinearConstraint final : public FConstraintBaseParams +{ +public: + float Limit; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion XMotion; // 0x0018(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion YMotion; // 0x0019(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ELinearConstraintMotion ZMotion; // 0x001A(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x1]; // 0x001B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLinearConstraint; + +// ScriptStruct Engine.ConeConstraint +// 0x000C (0x0020 - 0x0014) +struct FConeConstraint final : public FConstraintBaseParams +{ +public: + float Swing1LimitDegrees; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Swing2LimitDegrees; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing1Motion; // 0x001C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularConstraintMotion Swing2Motion; // 0x001D(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1E[0x2]; // 0x001E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConeConstraint; + +// ScriptStruct Engine.AngularDriveConstraint +// 0x0068 (0x0068 - 0x0000) +struct FAngularDriveConstraint final +{ +public: + struct FConstraintDrive TwistDrive; // 0x0000(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FConstraintDrive SwingDrive; // 0x0010(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FConstraintDrive SlerpDrive; // 0x0020(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FRotator OrientationTarget; // 0x0030(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector AngularVelocityTarget; // 0x0048(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAngularDriveMode AngularDriveMode; // 0x0060(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAccelerationMode; // 0x0061(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_62[0x6]; // 0x0062(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAngularDriveConstraint; + +// ScriptStruct Engine.ConstraintProfileProperties +// 0x0160 (0x0160 - 0x0000) +struct FConstraintProfileProperties final +{ +public: + float ProjectionLinearTolerance; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularTolerance; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionLinearAlpha; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ProjectionAngularAlpha; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShockPropagationAlpha; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearBreakThreshold; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearPlasticityThreshold; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularBreakThreshold; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularPlasticityThreshold; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactTransferScale; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearConstraint LinearLimit; // 0x0028(0x001C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FConeConstraint ConeLimit; // 0x0044(0x0020)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FTwistConstraint TwistLimit; // 0x0064(0x001C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 bDisableCollision : 1; // 0x0080(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bParentDominates : 1; // 0x0080(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableShockPropagation : 1; // 0x0080(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableProjection : 1; // 0x0080(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableMassConditioning : 1; // 0x0080(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAngularBreakable : 1; // 0x0080(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAngularPlasticity : 1; // 0x0080(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLinearBreakable : 1; // 0x0080(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLinearPlasticity : 1; // 0x0081(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_82[0x6]; // 0x0082(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearDriveConstraint LinearDrive; // 0x0088(0x0068)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FAngularDriveConstraint AngularDrive; // 0x00F0(0x0068)(Edit, NoDestructor, NativeAccessSpecifierPublic) + EConstraintPlasticityType LinearPlasticityType; // 0x0158(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_159[0x7]; // 0x0159(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConstraintProfileProperties; + +// ScriptStruct Engine.PhysicsConstraintProfileHandle +// 0x0168 (0x0168 - 0x0000) +struct FPhysicsConstraintProfileHandle final +{ +public: + struct FConstraintProfileProperties ProfileProperties; // 0x0000(0x0160)(NoDestructor, NativeAccessSpecifierPublic) + class FName ProfileName; // 0x0160(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicsConstraintProfileHandle; + +// ScriptStruct Engine.CompressedTrack +// 0x0038 (0x0038 - 0x0000) +struct FCompressedTrack final +{ +public: + TArray ByteStream; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Times; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float Mins[0x3]; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Ranges[0x3]; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCompressedTrack; + +// ScriptStruct Engine.AnimSetMeshLinkup +// 0x0010 (0x0010 - 0x0000) +struct FAnimSetMeshLinkup final +{ +public: + TArray BoneToTrackTable; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimSetMeshLinkup; + +// ScriptStruct Engine.StringCurveKey +// 0x0018 (0x0018 - 0x0000) +struct FStringCurveKey final +{ +public: + float Time; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Value; // 0x0008(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStringCurveKey; + +// ScriptStruct Engine.StringCurve +// 0x0020 (0x0088 - 0x0068) +struct FStringCurve final : public FIndexedCurve +{ +public: + class FString DefaultValue; // 0x0068(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Keys; // 0x0078(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStringCurve; + +// ScriptStruct Engine.AnimSingleNodeInstanceProxy +// 0x0100 (0x08A0 - 0x07A0) +struct FAnimSingleNodeInstanceProxy final : public FAnimInstanceProxy +{ +public: + uint8 Pad_798[0x108]; // 0x0798(0x0108)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSingleNodeInstanceProxy; + +// ScriptStruct Engine.PhysicsReplicationResimulationSettings +// 0x0020 (0x0020 - 0x0000) +struct FPhysicsReplicationResimulationSettings final +{ +public: + bool bEnableResimulationErrorPositionThreshold; // 0x0000(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorPositionThreshold; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableResimulationErrorRotationThreshold; // 0x0008(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorRotationThreshold; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableResimulationErrorLinearVelocityThreshold; // 0x0010(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorLinearVelocityThreshold; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableResimulationErrorAngularVelocityThreshold; // 0x0018(0x0001)(Edit, ZeroConstructor, Config, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorAngularVelocityThreshold; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicsReplicationResimulationSettings; + +// ScriptStruct Engine.PhysicsPredictionSettings +// 0x0030 (0x0030 - 0x0000) +struct FPhysicsPredictionSettings final +{ +public: + bool bEnablePhysicsResimulation; // 0x0000(0x0001)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ResimulationErrorThreshold; // 0x0004(0x0004)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnablePhysicsPrediction; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnablePhysicsHistoryCapture; // 0x0009(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxSupportedLatencyPrediction; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPhysicsReplicationResimulationSettings ResimulationSettings; // 0x0010(0x0020)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicsPredictionSettings; + +// ScriptStruct Engine.AnimationTransitionRule +// 0x0010 (0x0010 - 0x0000) +struct FAnimationTransitionRule final +{ +public: + class FName RuleToExecute; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool TransitionReturnVal; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 TransitionIndex; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationTransitionRule; + +// ScriptStruct Engine.AnimationState +// 0x0020 (0x0028 - 0x0008) +struct FAnimationState final : public FAnimationStateBase +{ +public: + TArray Transitions; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 StateRootNodeIndex; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartNotify; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndNotify; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FullyBlendedNotify; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimationState; + +// ScriptStruct Engine.DebugCameraControllerSettingsViewModeIndex +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FDebugCameraControllerSettingsViewModeIndex final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EViewModeIndex ViewModeIndex; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDebugCameraControllerSettingsViewModeIndex; + +// ScriptStruct Engine.AnimationTransitionBetweenStates +// 0x0038 (0x0040 - 0x0008) +struct FAnimationTransitionBetweenStates final : public FAnimationStateBase +{ +public: + int32 PreviousState; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NextState; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CrossfadeDuration; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartNotify; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndNotify; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InterruptNotify; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAlphaBlendOption BlendMode; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveFloat* CustomCurve; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UBlendProfile* BlendProfile; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETransitionLogicType LogicType; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimationTransitionBetweenStates; + +// ScriptStruct Engine.PropertyAccessIndirection +// 0x0040 (0x0040 - 0x0000) +struct FPropertyAccessIndirection final +{ +public: + TFieldPath Property; // 0x0000(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UFunction* Function; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 ReturnBufferSize; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 ReturnBufferAlignment; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 ArrayIndex; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint32 Offset; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EPropertyAccessObjectType ObjectType; // 0x0038(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EPropertyAccessIndirectionType Type; // 0x0039(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPropertyAccessIndirection; + +// ScriptStruct Engine.BakedStateExitTransition +// 0x0030 (0x0030 - 0x0000) +struct FBakedStateExitTransition final +{ +public: + int32 CanTakeDelegateIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CustomResultNodeIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TransitionIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDesiredTransitionReturnValue; // 0x000C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutomaticRemainingTimeRule; // 0x000D(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E[0x2]; // 0x000E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float AutomaticRuleTriggerTime; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName SyncGroupNameToRequireValidMarkersRule; // 0x0014(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray PoseEvaluatorLinks; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBakedStateExitTransition; + +// ScriptStruct Engine.BakedAnimationState +// 0x0058 (0x0058 - 0x0000) +struct FBakedAnimationState final +{ +public: + class FName StateName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Transitions; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + int32 StateRootNodeIndex; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartNotify; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EndNotify; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FullyBlendedNotify; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsAConduit; // 0x0028(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 EntryRuleNodeIndex; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PlayerNodeIndices; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LayerNodeIndices; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + bool bAlwaysResetOnEntry; // 0x0050(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x7]; // 0x0051(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBakedAnimationState; + +// ScriptStruct Engine.BakedAnimationStateMachine +// 0x0030 (0x0030 - 0x0000) +struct FBakedAnimationStateMachine final +{ +public: + class FName MachineName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InitialState; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray States; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray Transitions; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBakedAnimationStateMachine; + +// ScriptStruct Engine.AnimSubsystem_Base +// 0x0010 (0x0018 - 0x0008) +struct FAnimSubsystem_Base final : public FAnimSubsystem +{ +public: + uint8 Pad_8[0x10]; // 0x0008(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSubsystem_Base; + +// ScriptStruct Engine.SubsurfaceProfileStruct +// 0x009C (0x009C - 0x0000) +struct FSubsurfaceProfileStruct final +{ +public: + struct FLinearColor SurfaceAlbedo; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor MeanFreePathColor; // 0x0010(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MeanFreePathDistance; // 0x0020(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WorldUnitScale; // 0x0024(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableBurley; // 0x0028(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableMeanFreePath; // 0x0029(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x2]; // 0x002A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FLinearColor Tint; // 0x002C(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScatterRadius; // 0x003C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor SubsurfaceColor; // 0x0040(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor FalloffColor; // 0x0050(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor BoundaryColorBleed; // 0x0060(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExtinctionScale; // 0x0070(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float NormalScale; // 0x0074(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ScatteringDistribution; // 0x0078(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float IOR; // 0x007C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Roughness0; // 0x0080(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Roughness1; // 0x0084(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LobeMix; // 0x0088(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor TransmissionTintColor; // 0x008C(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSubsurfaceProfileStruct; + +// ScriptStruct Engine.AnimSubsystemInstance_NodeRelevancy +// 0x00A0 (0x00A8 - 0x0008) +struct FAnimSubsystemInstance_NodeRelevancy final : public FAnimSubsystemInstance +{ +public: + uint8 Pad_8[0xA0]; // 0x0008(0x00A0)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSubsystemInstance_NodeRelevancy; + +// ScriptStruct Engine.PropertyAccessSegment +// 0x0040 (0x0040 - 0x0000) +struct FPropertyAccessSegment final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UStruct* Struct; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TFieldPath Property; // 0x0010(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UFunction* Function; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 ArrayIndex; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint16 Flags; // 0x003C(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_3E[0x2]; // 0x003E(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPropertyAccessSegment; + +// ScriptStruct Engine.PropertyAccessCopy +// 0x0010 (0x0010 - 0x0000) +struct FPropertyAccessCopy final +{ +public: + int32 AccessIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 DestAccessStartIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 DestAccessEndIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EPropertyAccessCopyType Type; // 0x000C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPropertyAccessCopy; + +// ScriptStruct Engine.PropertyAccessCopyBatch +// 0x0010 (0x0010 - 0x0000) +struct FPropertyAccessCopyBatch final +{ +public: + TArray Copies; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPropertyAccessCopyBatch; + +// ScriptStruct Engine.PropertyAccessLibrary +// 0x0078 (0x0078 - 0x0000) +struct FPropertyAccessLibrary final +{ +public: + TArray PathSegments; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray SrcPaths; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray DestPaths; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray CopyBatchArray; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + uint8 Pad_40[0x38]; // 0x0040(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPropertyAccessLibrary; + +// ScriptStruct Engine.AnimSubsystem_PropertyAccess +// 0x0078 (0x0080 - 0x0008) +struct FAnimSubsystem_PropertyAccess final : public FAnimSubsystem +{ +public: + struct FPropertyAccessLibrary Library; // 0x0008(0x0078)(NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimSubsystem_PropertyAccess; + +// ScriptStruct Engine.CameraShakePatternUpdateResult +// 0x0750 (0x0750 - 0x0000) +struct alignas(0x10) FCameraShakePatternUpdateResult final +{ +public: + uint8 Pad_0[0x750]; // 0x0000(0x0750)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCameraShakePatternUpdateResult; + +// ScriptStruct Engine.DummySpacerCameraTypes +// 0x0001 (0x0001 - 0x0000) +struct FDummySpacerCameraTypes final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDummySpacerCameraTypes; + +// ScriptStruct Engine.AnimSubsystem_SharedLinkedAnimLayers +// 0x0020 (0x0028 - 0x0008) +struct FAnimSubsystem_SharedLinkedAnimLayers final : public FAnimSubsystemInstance +{ +public: + TArray ClassesData; // 0x0008(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray> PersistentClasses; // 0x0018(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FAnimSubsystem_SharedLinkedAnimLayers; + +// ScriptStruct Engine.AnimSubsystem_Tag +// 0x0058 (0x0060 - 0x0008) +struct FAnimSubsystem_Tag final : public FAnimSubsystem +{ +public: + TMap NodeIndices; // 0x0008(0x0050)(NativeAccessSpecifierPrivate) + uint8 Pad_58[0x8]; // 0x0058(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimSubsystem_Tag; + +// ScriptStruct Engine.RootMotionSourceGroup +// 0x0048 (0x0048 - 0x0000) +struct FRootMotionSourceGroup final +{ +public: + uint8 Pad_0[0x28]; // 0x0000(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bHasAdditiveSources : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasOverrideSources : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasOverrideSourcesWithIgnoreZAccumulate : 1; // 0x0028(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsAdditiveVelocityApplied : 1; // 0x0028(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + struct FRootMotionSourceSettings LastAccumulatedSettings; // 0x0029(0x0001)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantize10 LastPreAdditiveVelocity; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSourceGroup; + +// ScriptStruct Engine.RepRootMotionMontage +// 0x00C8 (0x00C8 - 0x0000) +struct FRepRootMotionMontage final +{ +public: + class UAnimSequenceBase* Animation; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsActive; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRelativePosition; // 0x0009(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRelativeRotation; // 0x000A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x1]; // 0x000B(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float position; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 Location; // 0x0010(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0028(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class UPrimitiveComponent* MovementBase; // 0x0040(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MovementBaseBoneName; // 0x0048(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRootMotionSourceGroup AuthoritativeRootMotion; // 0x0050(0x0048)(NativeAccessSpecifierPublic) + struct FVector_NetQuantize10 Acceleration; // 0x0098(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize10 LinearVelocity; // 0x00B0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRepRootMotionMontage; + +// ScriptStruct Engine.SimulatedRootMotionReplicatedMove +// 0x00D0 (0x00D0 - 0x0000) +struct FSimulatedRootMotionReplicatedMove final +{ +public: + float Time; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRepRootMotionMontage RootMotion; // 0x0008(0x00C8)(ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSimulatedRootMotionReplicatedMove; + +// ScriptStruct Engine.AssetMapping +// 0x0010 (0x0010 - 0x0000) +struct FAssetMapping final +{ +public: + class UAnimationAsset* SourceAsset; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimationAsset* TargetAsset; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAssetMapping; + +// ScriptStruct Engine.BlendProfileBoneEntry +// 0x0014 (0x0014 - 0x0000) +struct FBlendProfileBoneEntry final +{ +public: + struct FBoneReference BoneReference; // 0x0000(0x0010)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float BlendScale; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlendProfileBoneEntry; + +// ScriptStruct Engine.CachedAnimStateData +// 0x001C (0x001C - 0x0000) +struct FCachedAnimStateData final +{ +public: + class FName StateMachineName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateName; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0xC]; // 0x0010(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedAnimStateData; + +// ScriptStruct Engine.CachedAnimStateArray +// 0x0018 (0x0018 - 0x0000) +struct FCachedAnimStateArray final +{ +public: + TArray States; // 0x0000(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedAnimStateArray; + +// ScriptStruct Engine.CustomChannelSetup +// 0x000C (0x000C - 0x0000) +struct FCustomChannelSetup final +{ +public: + ECollisionChannel Channel; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionResponse DefaultResponse; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTraceType; // 0x0002(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bStaticObject; // 0x0003(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName Name; // 0x0004(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCustomChannelSetup; + +// ScriptStruct Engine.CachedAnimAssetPlayerData +// 0x0018 (0x0018 - 0x0000) +struct FCachedAnimAssetPlayerData final +{ +public: + class FName StateMachineName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateName; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedAnimAssetPlayerData; + +// ScriptStruct Engine.CachedAnimRelevancyData +// 0x001C (0x001C - 0x0000) +struct FCachedAnimRelevancyData final +{ +public: + class FName StateMachineName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName StateName; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0xC]; // 0x0010(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedAnimRelevancyData; + +// ScriptStruct Engine.CachedAnimTransitionData +// 0x0024 (0x0024 - 0x0000) +struct FCachedAnimTransitionData final +{ +public: + class FName StateMachineName; // 0x0000(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FromStateName; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ToStateName; // 0x0010(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0xC]; // 0x0018(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedAnimTransitionData; + +// ScriptStruct Engine.NamedCurveValue +// 0x000C (0x000C - 0x0000) +struct FNamedCurveValue final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNamedCurveValue; + +// ScriptStruct Engine.RigidBodyState +// 0x0080 (0x0080 - 0x0000) +struct FRigidBodyState final +{ +public: + struct FVector_NetQuantize100 position; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18[0x8]; // 0x0018(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FQuat Quaternion; // 0x0020(0x0020)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 LinVel; // 0x0040(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 AngVel; // 0x0058(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Flags; // 0x0070(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0xF]; // 0x0071(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRigidBodyState; + +// ScriptStruct Engine.ExposedValueCopyRecord +// 0x0008 (0x0008 - 0x0000) +struct FExposedValueCopyRecord final +{ +public: + int32 CopyIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPostCopyOperation PostCopyOperation; // 0x0004(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOnlyUpdateWhenActive; // 0x0005(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FExposedValueCopyRecord; + +// ScriptStruct Engine.ExposedValueHandler +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FExposedValueHandler final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FExposedValueHandler; + +// ScriptStruct Engine.AnimNodeExposedValueHandler +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FAnimNodeExposedValueHandler +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNodeExposedValueHandler; + +// ScriptStruct Engine.AnimNodeExposedValueHandler_Base +// 0x0010 (0x0018 - 0x0008) +struct FAnimNodeExposedValueHandler_Base : public FAnimNodeExposedValueHandler +{ +public: + class UFunction* Function; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoundFunction; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimNodeExposedValueHandler_Base; + +// ScriptStruct Engine.ForceFeedbackChannelDetails +// 0x0090 (0x0090 - 0x0000) +struct FForceFeedbackChannelDetails final +{ +public: + uint8 bAffectsLeftLarge : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectsLeftSmall : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectsRightLarge : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAffectsRightSmall : 1; // 0x0000(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRuntimeFloatCurve Curve; // 0x0008(0x0088)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FForceFeedbackChannelDetails; + +// ScriptStruct Engine.AnimNodeExposedValueHandler_PropertyAccess +// 0x0018 (0x0030 - 0x0018) +struct FAnimNodeExposedValueHandler_PropertyAccess final : public FAnimNodeExposedValueHandler_Base +{ +public: + TArray CopyRecords; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAnimNodeExposedValueHandler_PropertyAccess; + +// ScriptStruct Engine.InputClampConstants +// 0x0014 (0x0014 - 0x0000) +struct FInputClampConstants final +{ +public: + bool bClampResult; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bInterpResult; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float ClampMin; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampMax; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedIncreasing; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InterpSpeedDecreasing; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInputClampConstants; + +// ScriptStruct Engine.InputClampState +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FInputClampState final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FInputClampState; + +// ScriptStruct Engine.MirrorTableRow +// 0x0018 (0x0020 - 0x0008) +struct FMirrorTableRow final : public FTableRowBase +{ +public: + class FName Name; // 0x0008(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MirroredName; // 0x0010(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMirrorRowType MirrorEntryType; // 0x0018(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMirrorTableRow; + +// ScriptStruct Engine.DeviceColorCurveData +// 0x0010 (0x0010 - 0x0000) +struct FDeviceColorCurveData final +{ +public: + bool bEnable; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResetAfterCompletion; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveLinearColor* DeviceColorCurve; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceColorCurveData; + +// ScriptStruct Engine.MirrorFindReplaceExpression +// 0x0014 (0x0014 - 0x0000) +struct FMirrorFindReplaceExpression final +{ +public: + class FName FindExpression; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ReplaceExpression; // 0x0008(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EMirrorFindReplaceMethod FindReplaceMethod; // 0x0010(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMirrorFindReplaceExpression; + +// ScriptStruct Engine.TrajectorySample +// 0x0090 (0x0090 - 0x0000) +struct FTrajectorySample final +{ +public: + float AccumulatedSeconds; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0xC]; // 0x0004(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0010(0x0060)(Edit, BlueprintVisible, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LinearVelocity; // 0x0070(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_88[0x8]; // 0x0088(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTrajectorySample; + +// ScriptStruct Engine.TrajectorySampleRange +// 0x0010 (0x0010 - 0x0000) +struct FTrajectorySampleRange final +{ +public: + TArray Samples; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTrajectorySampleRange; + +// ScriptStruct Engine.NodeItem +// 0x0070 (0x0070 - 0x0000) +struct FNodeItem final +{ +public: + class FName ParentName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x0010(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNodeItem; + +// ScriptStruct Engine.DeviceTriggerTriggerVibrationData +// 0x0018 (0x0018 - 0x0000) +struct FDeviceTriggerTriggerVibrationData final +{ +public: + class UCurveFloat* TriggerPositionCurve; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* VibrationFrequencyCurve; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* VibrationAmplitudeCurve; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceTriggerTriggerVibrationData; + +// ScriptStruct Engine.PoseData +// 0x0020 (0x0020 - 0x0000) +struct FPoseData final +{ +public: + TArray LocalSpacePose; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray CurveData; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPoseData; + +// ScriptStruct Engine.PoseAssetInfluence +// 0x0008 (0x0008 - 0x0000) +struct FPoseAssetInfluence final +{ +public: + int32 PoseIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BoneTransformIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPoseAssetInfluence; + +// ScriptStruct Engine.PoseAssetInfluences +// 0x0010 (0x0010 - 0x0000) +struct FPoseAssetInfluences final +{ +public: + TArray Influences; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPoseAssetInfluences; + +// ScriptStruct Engine.PoseDataContainer +// 0x0070 (0x0070 - 0x0000) +struct FPoseDataContainer final +{ +public: + TArray PoseFNames; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + uint8 Pad_10[0x10]; // 0x0010(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Tracks; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray TrackBoneIndices; // 0x0030(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPrivate) + TArray TrackPoseInfluenceIndices; // 0x0040(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray Poses; // 0x0050(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + TArray Curves; // 0x0060(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPoseDataContainer; + +// ScriptStruct Engine.MaterialInstanceCachedData +// 0x0010 (0x0010 - 0x0000) +struct FMaterialInstanceCachedData final +{ +public: + TArray ParentLayerIndexRemap; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialInstanceCachedData; + +// ScriptStruct Engine.PreviewAttachedObjectPair +// 0x0030 (0x0030 - 0x0000) +struct FPreviewAttachedObjectPair final +{ +public: + TSoftObjectPtr AttachedObject; // 0x0000(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName AttachedTo; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPreviewAttachedObjectPair; + +// ScriptStruct Engine.PreviewAssetAttachContainer +// 0x0010 (0x0010 - 0x0000) +struct FPreviewAssetAttachContainer final +{ +public: + TArray AttachedObjects; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPreviewAssetAttachContainer; + +// ScriptStruct Engine.PreviewMeshCollectionEntry +// 0x0050 (0x0050 - 0x0000) +struct FPreviewMeshCollectionEntry final +{ +public: + TSoftObjectPtr SkeletalMesh; // 0x0000(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr AnimBlueprint; // 0x0028(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPreviewMeshCollectionEntry; + +// ScriptStruct Engine.SkeletalMeshVertexAttributeInfo +// 0x0010 (0x0010 - 0x0000) +struct FSkeletalMeshVertexAttributeInfo final +{ +public: + struct FPerPlatformBool EnabledForRender; // 0x0000(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName Name; // 0x0004(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkeletalMeshVertexAttributeDataType DataType; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshVertexAttributeInfo; + +// ScriptStruct Engine.CollectionVectorParameter +// 0x0010 (0x0028 - 0x0018) +struct FCollectionVectorParameter final : public FCollectionParameterBase +{ +public: + struct FLinearColor DefaultValue; // 0x0018(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollectionVectorParameter; + +// ScriptStruct Engine.SkeletonToMeshLinkup +// 0x0020 (0x0020 - 0x0000) +struct FSkeletonToMeshLinkup final +{ +public: + TArray SkeletonToMeshTable; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray MeshToSkeletonTable; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletonToMeshLinkup; + +// ScriptStruct Engine.BoneNode +// 0x0001 (0x0001 - 0x0000) +struct FBoneNode final +{ +public: + EBoneTranslationRetargetingMode TranslationRetargetingMode; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBoneNode; + +// ScriptStruct Engine.ReferencePose +// 0x0018 (0x0018 - 0x0000) +struct FReferencePose final +{ +public: + class FName PoseName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ReferencePose; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FReferencePose; + +// ScriptStruct Engine.BoneReductionSetting +// 0x0010 (0x0010 - 0x0000) +struct FBoneReductionSetting final +{ +public: + TArray BonesToRemove; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBoneReductionSetting; + +// ScriptStruct Engine.ChannelDefinition +// 0x0020 (0x0020 - 0x0000) +struct FChannelDefinition final +{ +public: + class FName ChannelName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ChannelClass; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StaticChannelIndex; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bTickOnCreate : 1; // 0x001C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bServerOpen : 1; // 0x001C(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bClientOpen : 1; // 0x001C(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInitialServer : 1; // 0x001C(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bInitialClient : 1; // 0x001C(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FChannelDefinition; + +// ScriptStruct Engine.NameMapping +// 0x0010 (0x0010 - 0x0000) +struct FNameMapping final +{ +public: + class FName NodeName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName BoneName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNameMapping; + +// ScriptStruct Engine.AnimSlotGroup +// 0x0018 (0x0018 - 0x0000) +struct FAnimSlotGroup final +{ +public: + class FName GroupName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SlotNames; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimSlotGroup; + +// ScriptStruct Engine.VirtualBone +// 0x0018 (0x0018 - 0x0000) +struct FVirtualBone final +{ +public: + class FName SourceBoneName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TargetBoneName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName VirtualBoneName; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVirtualBone; + +// ScriptStruct Engine.SkinWeightProfileInfo +// 0x0010 (0x0010 - 0x0000) +struct FSkinWeightProfileInfo final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPerPlatformBool DefaultProfile; // 0x0008(0x0001)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPerPlatformInt DefaultProfileFromLODIndex; // 0x000C(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkinWeightProfileInfo; + +// ScriptStruct Engine.NetworkMetricConfig +// 0x0038 (0x0038 - 0x0000) +struct FNetworkMetricConfig final +{ +public: + class FName MetricName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr Class; // 0x0008(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ENetworkMetricEnableMode EnableMode; // 0x0030(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x7]; // 0x0031(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNetworkMetricConfig; + +// ScriptStruct Engine.SkinWeightProfileManagerTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FSkinWeightProfileManagerTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkinWeightProfileManagerTickFunction; + +// ScriptStruct Engine.SmartNameMapping +// 0x0070 (0x0070 - 0x0000) +struct alignas(0x08) FSmartNameMapping final +{ +public: + uint8 Pad_0[0x70]; // 0x0000(0x0070)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSmartNameMapping; + +// ScriptStruct Engine.SmartNameContainer +// 0x0050 (0x0050 - 0x0000) +struct alignas(0x08) FSmartNameContainer final +{ +public: + uint8 Pad_0[0x50]; // 0x0000(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSmartNameContainer; + +// ScriptStruct Engine.SmartName +// 0x000C (0x000C - 0x0000) +struct FSmartName final +{ +public: + class FName DisplayName; // 0x0000(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x4]; // 0x0008(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSmartName; + +// ScriptStruct Engine.ComponentKey +// 0x0020 (0x0020 - 0x0000) +struct FComponentKey final +{ +public: + TSubclassOf OwnerClass; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName SCSVariableName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid AssociatedGuid; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FComponentKey; + +// ScriptStruct Engine.TimeStretchCurveMarker +// 0x0010 (0x0010 - 0x0000) +struct FTimeStretchCurveMarker final +{ +public: + float Time[0x3]; // 0x0000(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Alpha; // 0x000C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTimeStretchCurveMarker; + +// ScriptStruct Engine.TimeStretchCurve +// 0x0028 (0x0028 - 0x0000) +struct FTimeStretchCurve final +{ +public: + float SamplingRate; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + float CurveValueMinPrecision; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray Markers; // 0x0008(0x0010)(Edit, ZeroConstructor, EditConst, NativeAccessSpecifierPrivate) + float Sum_dT_i_by_C_i[0x3]; // 0x0018(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimeStretchCurve; + +// ScriptStruct Engine.TimeStretchCurveInstance +// 0x0030 (0x0030 - 0x0000) +struct alignas(0x08) FTimeStretchCurveInstance final +{ +public: + bool bHasValidData; // 0x0000(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1[0x2F]; // 0x0001(0x002F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTimeStretchCurveInstance; + +// ScriptStruct Engine.AnimGroupInfo +// 0x0018 (0x0018 - 0x0000) +struct FAnimGroupInfo final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimGroupInfo; + +// ScriptStruct Engine.BlueprintInputDelegateBinding +// 0x0004 (0x0004 - 0x0000) +struct alignas(0x04) FBlueprintInputDelegateBinding +{ +public: + uint8 bConsumeInput : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bExecuteWhenPaused : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideParentBinding : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlueprintInputDelegateBinding; + +// ScriptStruct Engine.BlueprintInputAxisDelegateBinding +// 0x0010 (0x0014 - 0x0004) +struct FBlueprintInputAxisDelegateBinding final : public FBlueprintInputDelegateBinding +{ +public: + class FName InputAxisName; // 0x0004(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FunctionNameToBind; // 0x000C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintInputAxisDelegateBinding; + +// ScriptStruct Engine.AnimParentNodeAssetOverride +// 0x0018 (0x0018 - 0x0000) +struct FAnimParentNodeAssetOverride final +{ +public: + class UAnimationAsset* NewAsset; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ParentNodeGuid; // 0x0008(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAnimParentNodeAssetOverride; + +// ScriptStruct Engine.AssetCompileData +// 0x0008 (0x0008 - 0x0000) +struct FAssetCompileData final +{ +public: + TWeakObjectPtr Asset; // 0x0000(0x0008)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAssetCompileData; + +// ScriptStruct Engine.PrimaryAssetTypeInfo +// 0x0088 (0x0088 - 0x0000) +struct FPrimaryAssetTypeInfo final +{ +public: + class FName PrimaryAssetType; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftClassPtr AssetBaseClass; // 0x0008(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TSubclassOf AssetBaseClassLoaded; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBlueprintClasses; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsEditorOnly; // 0x0039(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Directories; // 0x0040(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + TArray SpecificAssets; // 0x0050(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + struct FPrimaryAssetRules Rules; // 0x0060(0x000C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AssetScanPaths; // 0x0070(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) + bool bIsDynamicAsset; // 0x0080(0x0001)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x3]; // 0x0081(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 NumberOfAssets; // 0x0084(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPrimaryAssetTypeInfo; + +// ScriptStruct Engine.AssetManagerSearchRules +// 0x0050 (0x0050 - 0x0000) +struct FAssetManagerSearchRules final +{ +public: + TArray AssetScanPaths; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray IncludePatterns; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray ExcludePatterns; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TSubclassOf AssetBaseClass; // 0x0030(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bHasBlueprintClasses; // 0x0038(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceSynchronousScan; // 0x0039(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipVirtualPathExpansion; // 0x003A(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipManagerIncludeCheck; // 0x003B(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x14]; // 0x003C(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAssetManagerSearchRules; + +// ScriptStruct Engine.CurveEdEntry +// 0x0038 (0x0038 - 0x0000) +struct FCurveEdEntry final +{ +public: + class UObject* CurveObject; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FColor CurveColor; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString CurveName; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 bHideCurve; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 bColorCurve; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 bFloatingPointColorCurve; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 bClamp; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampLow; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ClampHigh; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveEdEntry; + +// ScriptStruct Engine.AudioEffectParameters +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FAudioEffectParameters +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAudioEffectParameters; + +// ScriptStruct Engine.AudioReverbEffect +// 0x0040 (0x0048 - 0x0008) +struct FAudioReverbEffect final : public FAudioEffectParameters +{ +public: + uint8 Pad_8[0x40]; // 0x0008(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAudioReverbEffect; + +// ScriptStruct Engine.AudioQualitySettings +// 0x0018 (0x0018 - 0x0000) +struct FAudioQualitySettings final +{ +public: + class FText DisplayName; // 0x0000(0x0010)(Edit, NativeAccessSpecifierPublic) + int32 MaxChannels; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAudioQualitySettings; + +// ScriptStruct Engine.SoundDebugEntry +// 0x0028 (0x0028 - 0x0000) +struct FSoundDebugEntry final +{ +public: + class FName DebugName; // 0x0000(0x0008)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath Sound; // 0x0008(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundDebugEntry; + +// ScriptStruct Engine.ISMClientInstance +// 0x0010 (0x0010 - 0x0000) +struct FISMClientInstance final +{ +public: + TArray ComponentIndices; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FISMClientInstance; + +// ScriptStruct Engine.ISMClientData +// 0x0010 (0x0010 - 0x0000) +struct FISMClientData final +{ +public: + TArray Instances; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FISMClientData; + +// ScriptStruct Engine.DefaultAudioBusSettings +// 0x0020 (0x0020 - 0x0000) +struct FDefaultAudioBusSettings final +{ +public: + struct FSoftObjectPath AudioBus; // 0x0000(0x0020)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDefaultAudioBusSettings; + +// ScriptStruct Engine.SoundSubmixSendInfo +// 0x0008 (0x00B8 - 0x00B0) +struct FSoundSubmixSendInfo final : public FSoundSubmixSendInfoBase +{ +public: + ESubmixSendStage SendStage; // 0x00B0(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B1[0x7]; // 0x00B1(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundSubmixSendInfo; + +// ScriptStruct Engine.AudioVolumeSubmixSendSettings +// 0x0018 (0x0018 - 0x0000) +struct FAudioVolumeSubmixSendSettings final +{ +public: + EAudioVolumeLocationState ListenerLocationState; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAudioVolumeLocationState SourceLocationState; // 0x0001(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + TArray SubmixSends; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAudioVolumeSubmixSendSettings; + +// ScriptStruct Engine.AudioVolumeSubmixOverrideSettings +// 0x0020 (0x0020 - 0x0000) +struct FAudioVolumeSubmixOverrideSettings final +{ +public: + class USoundSubmix* Submix; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray SubmixEffectChain; // 0x0008(0x0010)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + float CrossfadeTime; // 0x0018(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAudioVolumeSubmixOverrideSettings; + +// ScriptStruct Engine.InteriorSettings +// 0x0024 (0x0024 - 0x0000) +struct FInteriorSettings final +{ +public: + bool bIsWorldSettings; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ExteriorVolume; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExteriorTime; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExteriorLPF; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ExteriorLPFTime; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InteriorVolume; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InteriorTime; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InteriorLPF; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InteriorLPFTime; // 0x0020(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FInteriorSettings; + +// ScriptStruct Engine.NodeToCodeAssociation +// 0x0014 (0x0014 - 0x0000) +struct alignas(0x04) FNodeToCodeAssociation final +{ +public: + uint8 Pad_0[0x14]; // 0x0000(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FNodeToCodeAssociation; + +// ScriptStruct Engine.DebuggingInfoForSingleFunction +// 0x0190 (0x0190 - 0x0000) +struct alignas(0x08) FDebuggingInfoForSingleFunction final +{ +public: + uint8 Pad_0[0x190]; // 0x0000(0x0190)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDebuggingInfoForSingleFunction; + +// ScriptStruct Engine.PointerToUberGraphFrame +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FPointerToUberGraphFrame final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPointerToUberGraphFrame; + +// ScriptStruct Engine.DialogueContext +// 0x0018 (0x0018 - 0x0000) +struct FDialogueContext final +{ +public: + class UDialogueVoice* Speaker; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Targets; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDialogueContext; + +// ScriptStruct Engine.BlueprintDebugData +// 0x0001 (0x0001 - 0x0000) +struct FBlueprintDebugData final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlueprintDebugData; + +// ScriptStruct Engine.EventGraphFastCallPair +// 0x0010 (0x0010 - 0x0000) +struct FEventGraphFastCallPair final +{ +public: + class UFunction* FunctionToPatch; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 EventGraphCallOffset; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEventGraphFastCallPair; + +// ScriptStruct Engine.BlueprintComponentChangedPropertyInfo +// 0x0018 (0x0018 - 0x0000) +struct FBlueprintComponentChangedPropertyInfo final +{ +public: + class FName PropertyName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ArrayIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UStruct* PropertyScope; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintComponentChangedPropertyInfo; + +// ScriptStruct Engine.BlueprintCookedComponentInstancingData +// 0x0048 (0x0048 - 0x0000) +struct FBlueprintCookedComponentInstancingData final +{ +public: + TArray ChangedPropertyList; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_10[0x11]; // 0x0010(0x0011)(Fixing Size After Last Property [ Dumper-7 ]) + bool bHasValidCookedData; // 0x0021(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x26]; // 0x0022(0x0026)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlueprintCookedComponentInstancingData; + +// ScriptStruct Engine.AssetImportInfo +// 0x0001 (0x0001 - 0x0000) +struct FAssetImportInfo final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FAssetImportInfo; + +// ScriptStruct Engine.BPComponentClassOverride +// 0x0010 (0x0010 - 0x0000) +struct FBPComponentClassOverride final +{ +public: + class FName ComponentName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ComponentClass; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBPComponentClassOverride; + +// ScriptStruct Engine.BookmarkJumpToSettings +// 0x0000 (0x0001 - 0x0001) +struct FBookmarkJumpToSettings final : public FBookmarkBaseJumpToSettings +{ +}; +//_ASSERTS_FBookmarkJumpToSettings; + +// ScriptStruct Engine.CameraLensInterfaceClassSupport +// 0x0008 (0x0008 - 0x0000) +struct FCameraLensInterfaceClassSupport final +{ +public: + TSubclassOf Class; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraLensInterfaceClassSupport; + +// ScriptStruct Engine.DamageEvent +// 0x0010 (0x0010 - 0x0000) +struct FDamageEvent +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + TSubclassOf DamageTypeClass; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDamageEvent; + +// ScriptStruct Engine.PointDamageEvent +// 0x0120 (0x0130 - 0x0010) +struct FPointDamageEvent final : public FDamageEvent +{ +public: + float Damage; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector_NetQuantizeNormal ShotDirection; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FHitResult HitInfo; // 0x0030(0x0100)(IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPointDamageEvent; + +// ScriptStruct Engine.PooledCameraShakes +// 0x0010 (0x0010 - 0x0000) +struct FPooledCameraShakes final +{ +public: + TArray PooledShakes; // 0x0000(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPooledCameraShakes; + +// ScriptStruct Engine.ActiveCameraShakeInfo +// 0x0018 (0x0018 - 0x0000) +struct FActiveCameraShakeInfo final +{ +public: + class UCameraShakeBase* ShakeInstance; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr ShakeSource; // 0x0008(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsCustomInitialized; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActiveCameraShakeInfo; + +// ScriptStruct Engine.CameraShakePatternStartParams +// 0x0008 (0x0008 - 0x0000) +struct FCameraShakePatternStartParams final +{ +public: + bool bIsRestarting; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideDuration; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x2]; // 0x0002(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float DurationOverride; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraShakePatternStartParams; + +// ScriptStruct Engine.CameraShakePatternUpdateParams +// 0x0840 (0x0840 - 0x0000) +struct FCameraShakePatternUpdateParams final +{ +public: + float DeltaTime; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShakeScale; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DynamicScale; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMinimalViewInfo POV; // 0x0010(0x0830)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraShakePatternUpdateParams; + +// ScriptStruct Engine.CameraShakePatternScrubParams +// 0x0840 (0x0840 - 0x0000) +struct FCameraShakePatternScrubParams final +{ +public: + float AbsoluteTime; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShakeScale; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DynamicScale; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FMinimalViewInfo POV; // 0x0010(0x0830)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraShakePatternScrubParams; + +// ScriptStruct Engine.CameraShakeInfo +// 0x0010 (0x0010 - 0x0000) +struct FCameraShakeInfo final +{ +public: + struct FCameraShakeDuration duration; // 0x0000(0x0008)(NoDestructor, NativeAccessSpecifierPublic) + float BlendIn; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BlendOut; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCameraShakeInfo; + +// ScriptStruct Engine.BasedMovementInfo +// 0x0048 (0x0048 - 0x0000) +struct FBasedMovementInfo final +{ +public: + uint16 BaseID; // 0x0000(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bServerHasBaseComponent : 1; // 0x0002(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bRelativeRotation : 1; // 0x0002(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bServerHasVelocity : 1; // 0x0002(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_3[0x1]; // 0x0003(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + class FName BoneName; // 0x0004(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPrimitiveComponent* MovementBase; // 0x0010(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector_NetQuantize100 Location; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBasedMovementInfo; + +// ScriptStruct Engine.FindFloorResult +// 0x0110 (0x0110 - 0x0000) +struct FFindFloorResult final +{ +public: + uint8 bBlockingHit : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bWalkableFloor : 1; // 0x0000(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bLineTrace : 1; // 0x0000(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float FloorDist; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LineDist; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FHitResult HitResult; // 0x0010(0x0100)(Edit, BlueprintVisible, BlueprintReadOnly, DisableEditOnTemplate, EditConst, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFindFloorResult; + +// ScriptStruct Engine.CollisionResponseTemplate +// 0x0048 (0x0048 - 0x0000) +struct FCollisionResponseTemplate final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionEnabled CollisionEnabled; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x1]; // 0x0009(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + bool bCanModify; // 0x000A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B[0x21]; // 0x000B(0x0021)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ObjectTypeName; // 0x002C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray CustomResponses; // 0x0038(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCollisionResponseTemplate; + +// ScriptStruct Engine.CustomProfile +// 0x0018 (0x0018 - 0x0000) +struct FCustomProfile final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray CustomResponses; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCustomProfile; + +// ScriptStruct Engine.BlueprintComponentDelegateBinding +// 0x0018 (0x0018 - 0x0000) +struct FBlueprintComponentDelegateBinding final +{ +public: + class FName ComponentPropertyName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName DelegatePropertyName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FunctionNameToBind; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintComponentDelegateBinding; + +// ScriptStruct Engine.ActorComponentInstanceSourceInfo +// 0x0010 (0x0010 - 0x0000) +struct FActorComponentInstanceSourceInfo final +{ +public: + class UObject* SourceComponentTemplate; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EComponentCreationMethod SourceComponentCreationMethod; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SourceComponentTypeSerializedIndex; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FActorComponentInstanceSourceInfo; + +// ScriptStruct Engine.AudioComponentParam +// 0x0008 (0x00A8 - 0x00A0) +struct FAudioComponentParam final : public FAudioParameter +{ +public: + class USoundWave* SoundWaveParam; // 0x00A0(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAudioComponentParam; + +// ScriptStruct Engine.CharacterMovementComponentPostPhysicsTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FCharacterMovementComponentPostPhysicsTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCharacterMovementComponentPostPhysicsTickFunction; + +// ScriptStruct Engine.CharacterMovementComponentPrePhysicsTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FCharacterMovementComponentPrePhysicsTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCharacterMovementComponentPrePhysicsTickFunction; + +// ScriptStruct Engine.ChildActorComponentInstanceData +// 0x0040 (0x00F8 - 0x00B8) +struct FChildActorComponentInstanceData final : public FSceneComponentInstanceData +{ +public: + TSubclassOf ChildActorClass; // 0x00B8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ChildActorName; // 0x00C0(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray AttachedActors; // 0x00C8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_D8[0x20]; // 0x00D8(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FChildActorComponentInstanceData; + +// ScriptStruct Engine.CachedKeyToActionInfo +// 0x0070 (0x0070 - 0x0000) +struct alignas(0x08) FCachedKeyToActionInfo final +{ +public: + TWeakObjectPtr PlayerInput; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x68]; // 0x0008(0x0068)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FCachedKeyToActionInfo; + +// ScriptStruct Engine.PrecomputedLightInstanceData +// 0x0098 (0x0150 - 0x00B8) +struct FPrecomputedLightInstanceData final : public FSceneComponentInstanceData +{ +public: + uint8 Pad_B8[0x8]; // 0x00B8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTransform Transform; // 0x00C0(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid OriginalLightGuid; // 0x0120(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid LightGuid; // 0x0130(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PreviewShadowMapChannel; // 0x0140(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_144[0xC]; // 0x0144(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPrecomputedLightInstanceData; + +// ScriptStruct Engine.BatchedPoint +// 0x0038 (0x0038 - 0x0000) +struct FBatchedPoint final +{ +public: + struct FVector position; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor Color; // 0x0018(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PointSize; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RemainingLifeTime; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 DepthPriority; // 0x0030(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x3]; // 0x0031(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 BatchID; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBatchedPoint; + +// ScriptStruct Engine.LODMappingData +// 0x0020 (0x0020 - 0x0000) +struct FLODMappingData final +{ +public: + TArray Mapping; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + TArray InverseMapping; // 0x0010(0x0010)(ZeroConstructor, Transient, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLODMappingData; + +// ScriptStruct Engine.EngineShowFlagsSetting +// 0x0018 (0x0018 - 0x0000) +struct FEngineShowFlagsSetting final +{ +public: + class FString ShowFlagName; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool Enabled; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEngineShowFlagsSetting; + +// ScriptStruct Engine.SkeletalMeshComponentEndPhysicsTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FSkeletalMeshComponentEndPhysicsTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshComponentEndPhysicsTickFunction; + +// ScriptStruct Engine.SkeletalMeshComponentClothTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FSkeletalMeshComponentClothTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshComponentClothTickFunction; + +// ScriptStruct Engine.SplineCurves +// 0x0068 (0x0068 - 0x0000) +struct FSplineCurves final +{ +public: + struct FInterpCurveVector position; // 0x0000(0x0018)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInterpCurveQuat Rotation; // 0x0018(0x0018)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInterpCurveVector Scale; // 0x0030(0x0018)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInterpCurveFloat ReparamTable; // 0x0048(0x0018)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 Version; // 0x0060(0x0004)(ZeroConstructor, Transient, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_64[0x4]; // 0x0064(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSplineCurves; + +// ScriptStruct Engine.SplinePoint +// 0x0088 (0x0088 - 0x0000) +struct FSplinePoint final +{ +public: + float InputKey; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector position; // 0x0008(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector ArriveTangent; // 0x0020(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector LeaveTangent; // 0x0038(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0050(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FVector Scale; // 0x0068(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESplinePointType Type; // 0x0080(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_81[0x7]; // 0x0081(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSplinePoint; + +// ScriptStruct Engine.SplineInstanceData +// 0x00E0 (0x0198 - 0x00B8) +struct FSplineInstanceData final : public FSceneComponentInstanceData +{ +public: + bool bSplineHasBeenEdited; // 0x00B8(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_B9[0x7]; // 0x00B9(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSplineCurves SplineCurves; // 0x00C0(0x0068)(NativeAccessSpecifierPublic) + bool bClosedLoop; // 0x0128(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_129[0x7]; // 0x0129(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSplineCurves SplineCurvesPreUCS; // 0x0130(0x0068)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSplineInstanceData; + +// ScriptStruct Engine.RuntimeCurveLinearColor +// 0x0208 (0x0208 - 0x0000) +struct FRuntimeCurveLinearColor final +{ +public: + struct FRichCurve ColorCurves[0x4]; // 0x0000(0x0080)(NativeAccessSpecifierPublic) + class UCurveLinearColor* ExternalCurve; // 0x0200(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimeCurveLinearColor; + +// ScriptStruct Engine.CurveAtlasColorAdjustments +// 0x0024 (0x0024 - 0x0000) +struct FCurveAtlasColorAdjustments final +{ +public: + uint8 bChromaKeyTexture : 1; // 0x0000(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float AdjustBrightness; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustBrightnessCurve; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustVibrance; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustSaturation; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustRGBCurve; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustHue; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustMinAlpha; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AdjustMaxAlpha; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveAtlasColorAdjustments; + +// ScriptStruct Engine.IntegralKey +// 0x0008 (0x0008 - 0x0000) +struct FIntegralKey final +{ +public: + float Time; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Value; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FIntegralKey; + +// ScriptStruct Engine.IntegralCurve +// 0x0018 (0x0080 - 0x0068) +struct FIntegralCurve final : public FIndexedCurve +{ +public: + TArray Keys; // 0x0068(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPrivate) + int32 DefaultValue; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bUseDefaultValueBeforeFirstKey; // 0x007C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_7D[0x3]; // 0x007D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FIntegralCurve; + +// ScriptStruct Engine.SimpleCurveKey +// 0x0008 (0x0008 - 0x0000) +struct FSimpleCurveKey final +{ +public: + float Time; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Value; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSimpleCurveKey; + +// ScriptStruct Engine.SimpleCurve +// 0x0018 (0x0088 - 0x0070) +struct FSimpleCurve final : public FRealCurve +{ +public: + ERichCurveInterpMode InterpMode; // 0x0070(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_71[0x7]; // 0x0071(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray Keys; // 0x0078(0x0010)(Edit, EditFixedSize, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSimpleCurve; + +// ScriptStruct Engine.DataDrivenConsoleVariable +// 0x0060 (0x0060 - 0x0000) +struct FDataDrivenConsoleVariable final +{ +public: + EFDataDrivenCVarType Type; // 0x0000(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class FString Name; // 0x0008(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ToolTip; // 0x0018(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultValueFloat; // 0x0028(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 DefaultValueInt; // 0x002C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool DefaultValueBool; // 0x0030(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x2F]; // 0x0031(0x002F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FDataDrivenConsoleVariable; + +// ScriptStruct Engine.DataTableCategoryHandle +// 0x0018 (0x0018 - 0x0000) +struct FDataTableCategoryHandle final +{ +public: + class UDataTable* DataTable; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ColumnName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName RowContents; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDataTableCategoryHandle; + +// ScriptStruct Engine.RollbackNetStartupActorInfo +// 0x00D0 (0x00D0 - 0x0000) +struct FRollbackNetStartupActorInfo final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* Archetype; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_10[0xB0]; // 0x0010(0x00B0)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ObjReferences; // 0x00C0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRollbackNetStartupActorInfo; + +// ScriptStruct Engine.MulticastRecordOptions +// 0x0018 (0x0018 - 0x0000) +struct FMulticastRecordOptions final +{ +public: + class FString FuncPathName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bServerSkip; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClientSkip; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_12[0x6]; // 0x0012(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMulticastRecordOptions; + +// ScriptStruct Engine.SelectedFragmentProperties +// 0x0020 (0x0020 - 0x0000) +struct FSelectedFragmentProperties final +{ +public: + class FName Tag; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Fragment; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnabled; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSelectedFragmentProperties; + +// ScriptStruct Engine.DPMatchingRulestruct +// 0x0020 (0x0068 - 0x0048) +struct FDPMatchingRulestruct final : public FDPMatchingRulestructBase +{ +public: + TArray OnTrue; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + TArray OnFalse; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDPMatchingRulestruct; + +// ScriptStruct Engine.DialogueWaveParameter +// 0x0020 (0x0020 - 0x0000) +struct FDialogueWaveParameter final +{ +public: + class UDialogueWave* DialogueWave; // 0x0000(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDialogueContext Context; // 0x0008(0x0018)(Edit, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDialogueWaveParameter; + +// ScriptStruct Engine.DialogueContextMapping +// 0x0038 (0x0038 - 0x0000) +struct FDialogueContextMapping final +{ +public: + struct FDialogueContext Context; // 0x0000(0x0018)(Edit, NativeAccessSpecifierPublic) + class USoundWave* SoundWave; // 0x0018(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString LocalizationKeyFormat; // 0x0020(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UDialogueSoundWaveProxy* Proxy; // 0x0030(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDialogueContextMapping; + +// ScriptStruct Engine.TypedElementPasteOptions +// 0x0078 (0x0078 - 0x0000) +struct FTypedElementPasteOptions final +{ +public: + class UTypedElementSelectionSet* SelectionSetToModify; // 0x0000(0x0008)(BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPasteAtLocation; // 0x0008(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector PasteLocation; // 0x0010(0x0018)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_28[0x50]; // 0x0028(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTypedElementPasteOptions; + +// ScriptStruct Engine.TypedElementDeletionOptions +// 0x0003 (0x0003 - 0x0000) +struct FTypedElementDeletionOptions final +{ +public: + bool bVerifyDeletionCanHappen; // 0x0000(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bWarnAboutReferences; // 0x0001(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bWarnAboutSoftReferences; // 0x0002(0x0001)(BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FTypedElementDeletionOptions; + +// ScriptStruct Engine.RadialDamageParams +// 0x0014 (0x0014 - 0x0000) +struct FRadialDamageParams final +{ +public: + float BaseDamage; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinimumDamage; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InnerRadius; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterRadius; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DamageFalloff; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRadialDamageParams; + +// ScriptStruct Engine.RadialDamageEvent +// 0x0040 (0x0050 - 0x0010) +struct FRadialDamageEvent final : public FDamageEvent +{ +public: + struct FRadialDamageParams Params; // 0x0010(0x0014)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Origin; // 0x0028(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ComponentHits; // 0x0040(0x0010)(ZeroConstructor, ContainsInstancedReference, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRadialDamageEvent; + +// ScriptStruct Engine.FontCharacter +// 0x0018 (0x0018 - 0x0000) +struct FFontCharacter final +{ +public: + int32 StartU; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 StartV; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 USize; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VSize; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 TextureIndex; // 0x0010(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 VerticalOffset; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFontCharacter; + +// ScriptStruct Engine.FontFacePlatformRasterizationOverrides +// 0x0003 (0x0003 - 0x0000) +struct FFontFacePlatformRasterizationOverrides final +{ +public: + EFontRasterizationMode MsdfOverride; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFontRasterizationMode SdfOverride; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFontRasterizationMode SdfApproximationOverride; // 0x0002(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FFontFacePlatformRasterizationOverrides; + +// ScriptStruct Engine.ActiveForceFeedbackEffect +// 0x0070 (0x0070 - 0x0000) +struct FActiveForceFeedbackEffect final +{ +public: + class UForceFeedbackEffect* ForceFeedbackEffect; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x18]; // 0x0008(0x0018)(Fixing Size After Last Property [ Dumper-7 ]) + TSet ActiveDeviceProperties; // 0x0020(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FActiveForceFeedbackEffect; + +// ScriptStruct Engine.ForceFeedbackEffectOverridenChannelDetails +// 0x0010 (0x0010 - 0x0000) +struct FForceFeedbackEffectOverridenChannelDetails final +{ +public: + TArray ChannelDetails; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FForceFeedbackEffectOverridenChannelDetails; + +// ScriptStruct Engine.DeviceTriggerBaseData +// 0x0002 (0x0002 - 0x0000) +struct FDeviceTriggerBaseData final +{ +public: + EInputDeviceTriggerMask AffectedTriggers; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bResetUponCompletion; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceTriggerBaseData; + +// ScriptStruct Engine.DeviceTriggerFeedbackData +// 0x0010 (0x0010 - 0x0000) +struct FDeviceTriggerFeedbackData final +{ +public: + class UCurveFloat* FeedbackPositionCurve; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* FeedbackStrenghCurve; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDeviceTriggerFeedbackData; + +// ScriptStruct Engine.AudioBasedVibrationData +// 0x0008 (0x0008 - 0x0000) +struct FAudioBasedVibrationData final +{ +public: + class USoundBase* Sound; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAudioBasedVibrationData; + +// ScriptStruct Engine.ActivateDevicePropertyParams +// 0x000C (0x000C - 0x0000) +struct FActivateDevicePropertyParams final +{ +public: + struct FPlatformUserId UserId; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FInputDeviceId DeviceID; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLooping : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreTimeDilation : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bPlayWhilePaused : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActivateDevicePropertyParams; + +// ScriptStruct Engine.ActiveDeviceProperty +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FActiveDeviceProperty final +{ +public: + TWeakObjectPtr Property; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8[0x18]; // 0x0008(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FActiveDeviceProperty; + +// ScriptStruct Engine.RootMotionSource_ConstantForce +// 0x0020 (0x00E0 - 0x00C0) +struct FRootMotionSource_ConstantForce final : public FRootMotionSource +{ +public: + struct FVector Force; // 0x00C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* StrengthOverTime; // 0x00D8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSource_ConstantForce; + +// ScriptStruct Engine.RootMotionSource_MoveToDynamicForce +// 0x0060 (0x0120 - 0x00C0) +struct FRootMotionSource_MoveToDynamicForce final : public FRootMotionSource +{ +public: + struct FVector StartLocation; // 0x00C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector InitialTargetLocation; // 0x00D8(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector TargetLocation; // 0x00F0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRestrictSpeedToExpected; // 0x0108(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_109[0x7]; // 0x0109(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveVector* PathOffsetCurve; // 0x0110(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* TimeMappingCurve; // 0x0118(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRootMotionSource_MoveToDynamicForce; + +// ScriptStruct Engine.RootMotionSource_JumpForce +// 0x0050 (0x0110 - 0x00C0) +struct FRootMotionSource_JumpForce final : public FRootMotionSource +{ +public: + struct FRotator Rotation; // 0x00C0(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float Distance; // 0x00D8(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Height; // 0x00DC(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisableTimeout; // 0x00E0(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E1[0x7]; // 0x00E1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UCurveVector* PathOffsetCurve; // 0x00E8(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UCurveFloat* TimeMappingCurve; // 0x00F0(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F8[0x18]; // 0x00F8(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRootMotionSource_JumpForce; + +// ScriptStruct Engine.TouchInputControl +// 0x0098 (0x0098 - 0x0000) +struct FTouchInputControl final +{ +public: + bool bTreatAsButton; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UTexture2D* Image1; // 0x0008(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture2D* Image2; // 0x0010(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Center; // 0x0018(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D VisualSize; // 0x0028(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D ThumbSize; // 0x0038(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D InteractionSize; // 0x0048(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D InputScale; // 0x0058(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FKey MainInputKey; // 0x0068(0x0018)(Edit, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FKey AltInputKey; // 0x0080(0x0018)(Edit, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTouchInputControl; + +// ScriptStruct Engine.UniqueNetIdReplNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FUniqueNetIdReplNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//_ASSERTS_FUniqueNetIdReplNetSerializerConfig; + +// ScriptStruct Engine.GeneratedBlueprintDelegateBinding +// 0x0010 (0x0010 - 0x0000) +struct FGeneratedBlueprintDelegateBinding final +{ +public: + class FName DelegatePropertyName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FunctionNameToBind; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FGeneratedBlueprintDelegateBinding; + +// ScriptStruct Engine.HLODProxyMesh +// 0x0028 (0x0028 - 0x0000) +struct FHLODProxyMesh final +{ +public: + TLazyObjectPtr LODActor; // 0x0000(0x0018)(IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UStaticMesh* StaticMesh; // 0x0018(0x0008)(Edit, ZeroConstructor, EditConst, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName Key; // 0x0020(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FHLODProxyMesh; + +// ScriptStruct Engine.ComponentOverrideRecord +// 0x0078 (0x0078 - 0x0000) +struct FComponentOverrideRecord final +{ +public: + TSubclassOf ComponentClass; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UActorComponent* ComponentTemplate; // 0x0008(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FComponentKey ComponentKey; // 0x0010(0x0020)(NoDestructor, NativeAccessSpecifierPublic) + struct FBlueprintCookedComponentInstancingData CookedComponentInstancingData; // 0x0030(0x0048)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FComponentOverrideRecord; + +// ScriptStruct Engine.BlueprintInputActionDelegateBinding +// 0x0014 (0x0018 - 0x0004) +struct FBlueprintInputActionDelegateBinding final : public FBlueprintInputDelegateBinding +{ +public: + class FName InputActionName; // 0x0004(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInputEvent InputKeyEvent; // 0x000C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName FunctionNameToBind; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintInputActionDelegateBinding; + +// ScriptStruct Engine.BlueprintInputAxisKeyDelegateBinding +// 0x0024 (0x0028 - 0x0004) +struct FBlueprintInputAxisKeyDelegateBinding final : public FBlueprintInputDelegateBinding +{ +public: + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FKey AxisKey; // 0x0008(0x0018)(HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FunctionNameToBind; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintInputAxisKeyDelegateBinding; + +// ScriptStruct Engine.BlueprintInputKeyDelegateBinding +// 0x0034 (0x0038 - 0x0004) +struct FBlueprintInputKeyDelegateBinding final : public FBlueprintInputDelegateBinding +{ +public: + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FInputChord InputChord; // 0x0008(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) + EInputEvent InputKeyEvent; // 0x0028(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x3]; // 0x0029(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName FunctionNameToBind; // 0x002C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_34[0x4]; // 0x0034(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBlueprintInputKeyDelegateBinding; + +// ScriptStruct Engine.BlueprintInputTouchDelegateBinding +// 0x000C (0x0010 - 0x0004) +struct FBlueprintInputTouchDelegateBinding final : public FBlueprintInputDelegateBinding +{ +public: + EInputEvent InputKeyEvent; // 0x0004(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName FunctionNameToBind; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBlueprintInputTouchDelegateBinding; + +// ScriptStruct Engine.CurveEdTab +// 0x0030 (0x0030 - 0x0000) +struct FCurveEdTab final +{ +public: + class FString TabName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray Curves; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + float ViewStartInput; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewEndInput; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewStartOutput; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ViewEndOutput; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCurveEdTab; + +// ScriptStruct Engine.ISMComponentInstance +// 0x000C (0x000C - 0x0000) +struct FISMComponentInstance final +{ +public: + int32 ClientIndex; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceIndex; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 InstanceSubIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FISMComponentInstance; + +// ScriptStruct Engine.ISMComponentData +// 0x0001 (0x0001 - 0x0000) +struct FISMComponentData final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FISMComponentData; + +// ScriptStruct Engine.SoftISMComponentDescriptor +// 0x0070 (0x0238 - 0x01C8) +struct FSoftISMComponentDescriptor final : public FISMComponentDescriptorBase +{ +public: + TSoftObjectPtr StaticMesh; // 0x01C8(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray> OverrideMaterials; // 0x01F0(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TSoftObjectPtr OverlayMaterial; // 0x0200(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray> RuntimeVirtualTextures; // 0x0228(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoftISMComponentDescriptor; + +// ScriptStruct Engine.FloatSpringState +// 0x000C (0x000C - 0x0000) +struct alignas(0x04) FFloatSpringState final +{ +public: + uint8 Pad_0[0xC]; // 0x0000(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FFloatSpringState; + +// ScriptStruct Engine.QuaternionSpringState +// 0x0040 (0x0040 - 0x0000) +struct alignas(0x10) FQuaternionSpringState final +{ +public: + uint8 Pad_0[0x40]; // 0x0000(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FQuaternionSpringState; + +// ScriptStruct Engine.ImportanceTexture +// 0x0050 (0x0050 - 0x0000) +struct FImportanceTexture final +{ +public: + struct FIntPoint Size; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumMips; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MarginalCDF; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray ConditionalCDF; // 0x0020(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureData; // 0x0030(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TWeakObjectPtr Texture; // 0x0040(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EImportanceWeight Weighting; // 0x0048(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FImportanceTexture; + +// ScriptStruct Engine.LatentActionManager +// 0x0060 (0x0060 - 0x0000) +struct alignas(0x08) FLatentActionManager final +{ +public: + uint8 Pad_0[0x60]; // 0x0000(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLatentActionManager; + +// ScriptStruct Engine.LayerActorStats +// 0x0010 (0x0010 - 0x0000) +struct FLayerActorStats final +{ +public: + TSubclassOf Type; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 Total; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLayerActorStats; + +// ScriptStruct Engine.DynamicTextureInstance +// 0x0010 (0x0058 - 0x0048) +struct FDynamicTextureInstance final : public FStreamableTextureInstance +{ +public: + class UTexture2D* Texture; // 0x0048(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAttached; // 0x0050(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float OriginalRadius; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDynamicTextureInstance; + +// ScriptStruct Engine.LevelSimplificationDetails +// 0x0158 (0x0158 - 0x0000) +struct FLevelSimplificationDetails final +{ +public: + bool bCreatePackagePerAsset; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float DetailsPercentage; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialProxySettings StaticMeshMaterialSettings; // 0x0008(0x00A0)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bOverrideLandscapeExportLOD; // 0x00A8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A9[0x3]; // 0x00A9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LandscapeExportLOD; // 0x00AC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMaterialProxySettings LandscapeMaterialSettings; // 0x00B0(0x00A0)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bBakeFoliageToLandscape; // 0x0150(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bBakeGrassToLandscape; // 0x0151(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_152[0x6]; // 0x0152(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLevelSimplificationDetails; + +// ScriptStruct Engine.ClientReceiveData +// 0x0040 (0x0040 - 0x0000) +struct FClientReceiveData final +{ +public: + class APlayerController* LocalPC; // 0x0000(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MessageType; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MessageIndex; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString MessageString; // 0x0018(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* RelatedPlayerState_1; // 0x0028(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class APlayerState* RelatedPlayerState_2; // 0x0030(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* OptionalObject; // 0x0038(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClientReceiveData; + +// ScriptStruct Engine.ParameterGroupData +// 0x0018 (0x0018 - 0x0000) +struct FParameterGroupData final +{ +public: + class FString GroupName; // 0x0000(0x0010)(Edit, ZeroConstructor, EditConst, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 GroupSortPriority; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParameterGroupData; + +// ScriptStruct Engine.MaterialParameterCollectionInfo +// 0x0018 (0x0018 - 0x0000) +struct FMaterialParameterCollectionInfo final +{ +public: + struct FGuid StateId; // 0x0000(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UMaterialParameterCollection* ParameterCollection; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialParameterCollectionInfo; + +// ScriptStruct Engine.MaterialCachedParameterEntry +// 0x0050 (0x0050 - 0x0000) +struct FMaterialCachedParameterEntry final +{ +public: + TSet ParameterInfoSet; // 0x0000(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialCachedParameterEntry; + +// ScriptStruct Engine.MaterialCachedExpressionEditorOnlyData +// 0x02A0 (0x02A0 - 0x0000) +struct FMaterialCachedExpressionEditorOnlyData final +{ +public: + struct FMaterialCachedParameterEntry EditorOnlyEntries; // 0x0000(0x0050)(NativeAccessSpecifierPublic) + struct FMaterialCachedParameterEditorEntry EditorEntries[0xA]; // 0x0050(0x0010)(NativeAccessSpecifierPublic) + TArray StaticSwitchValues; // 0x00F0(0x0010)(ZeroConstructor, Deprecated, NativeAccessSpecifierPublic) + TArray StaticComponentMaskValues; // 0x0100(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray ScalarMinMaxValues; // 0x0110(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray> ScalarCurveValues; // 0x0120(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> ScalarCurveAtlasValues; // 0x0130(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray VectorChannelNameValues; // 0x0140(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorUsedAsChannelMaskValues; // 0x0150(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray TextureChannelNameValues; // 0x0160(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctionsEditorOnlyData MaterialLayers; // 0x0170(0x0070)(NativeAccessSpecifierPublic) + TArray AssetPaths; // 0x01E0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray LandscapeLayerNames; // 0x01F0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TSet ExpressionIncludeFilePaths; // 0x0200(0x0050)(NativeAccessSpecifierPublic) + TSet UserSceneTextureInputs; // 0x0250(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialCachedExpressionEditorOnlyData; + +// ScriptStruct Engine.MaterialCachedExpressionData +// 0x0470 (0x0470 - 0x0000) +struct FMaterialCachedExpressionData final +{ +public: + struct FMaterialCachedParameterEntry RuntimeEntries[0x9]; // 0x0000(0x0050)(NativeAccessSpecifierPublic) + TArray ScalarPrimitiveDataIndexValues; // 0x02D0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorPrimitiveDataIndexValues; // 0x02E0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray ScalarValues; // 0x02F0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray StaticSwitchValues; // 0x0300(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray DynamicSwitchValues; // 0x0310(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray VectorValues; // 0x0320(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray DoubleVectorValues; // 0x0330(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray> TextureValues; // 0x0340(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> TextureCollectionValues; // 0x0350(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> FontValues; // 0x0360(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray FontPageValues; // 0x0370(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray> RuntimeVirtualTextureValues; // 0x0380(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray> SparseVolumeTextureValues; // 0x0390(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ReferencedTextures; // 0x03A0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ReferencedTextureCollections; // 0x03B0(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TArray FunctionInfos; // 0x03C0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint32 FunctionInfosStateCRC; // 0x03D0(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D4[0x4]; // 0x03D4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ParameterCollectionInfos; // 0x03D8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray GrassTypes; // 0x03E8(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + struct FMaterialLayersFunctionsRuntimeData MaterialLayers; // 0x03F8(0x0048)(NativeAccessSpecifierPublic) + TArray DynamicParameterNames; // 0x0440(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray QualityLevelsUsed; // 0x0450(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 bHasMaterialLayers : 1; // 0x0460(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasRuntimeVirtualTextureOutput : 1; // 0x0460(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasFirstPersonOutput : 1; // 0x0460(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasSceneColor : 1; // 0x0460(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPerInstanceCustomData : 1; // 0x0460(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPerInstanceRandom : 1; // 0x0460(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasVertexInterpolator : 1; // 0x0460(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasCustomizedUVs : 1; // 0x0460(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasMeshPaintTexture : 1; // 0x0461(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_462[0x2]; // 0x0462(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 PropertyConnectedBitmask; // 0x0464(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 PropertyConnectedMask; // 0x0468(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialCachedExpressionData; + +// ScriptStruct Engine.ScalarParameterAtlasInstanceData +// 0x0058 (0x0058 - 0x0000) +struct FScalarParameterAtlasInstanceData final +{ +public: + bool bIsUsedAsAtlasPosition; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftObjectPtr Curve; // 0x0008(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSoftObjectPtr Atlas; // 0x0030(0x0028)(UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FScalarParameterAtlasInstanceData; + +// ScriptStruct Engine.DoubleVectorParameterValue +// 0x0040 (0x0040 - 0x0000) +struct FDoubleVectorParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector4d ParameterValue; // 0x0010(0x0020)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0030(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDoubleVectorParameterValue; + +// ScriptStruct Engine.TextureParameterValue +// 0x0028 (0x0028 - 0x0000) +struct FTextureParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UTexture* ParameterValue; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0018(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextureParameterValue; + +// ScriptStruct Engine.RuntimeVirtualTextureParameterValue +// 0x0028 (0x0028 - 0x0000) +struct FRuntimeVirtualTextureParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class URuntimeVirtualTexture* ParameterValue; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0018(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FRuntimeVirtualTextureParameterValue; + +// ScriptStruct Engine.SparseVolumeTextureParameterValue +// 0x0028 (0x0028 - 0x0000) +struct FSparseVolumeTextureParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USparseVolumeTexture* ParameterValue; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x0018(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSparseVolumeTextureParameterValue; + +// ScriptStruct Engine.FontParameterValue +// 0x0030 (0x0030 - 0x0000) +struct FFontParameterValue final +{ +public: + struct FMaterialParameterInfo ParameterInfo; // 0x0000(0x0010)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UFont* FontValue; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 FontPage; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FGuid ExpressionGUID; // 0x001C(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FFontParameterValue; + +// ScriptStruct Engine.MaterialOverrideNanite +// 0x0038 (0x0038 - 0x0000) +struct FMaterialOverrideNanite final +{ +public: + bool bEnableOverride; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + class UMaterialInterface* OverrideMaterial; // 0x0008(0x0008)(ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + TSoftObjectPtr OverrideMaterialRef; // 0x0010(0x0028)(Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FMaterialOverrideNanite; + +// ScriptStruct Engine.MemberReference +// 0x0038 (0x0038 - 0x0000) +struct FMemberReference final +{ +public: + class UObject* MemberParent; // 0x0000(0x0008)(ZeroConstructor, SaveGame, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FString MemberScope; // 0x0008(0x0010)(ZeroConstructor, SaveGame, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + class FName MemberName; // 0x0018(0x0008)(ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + struct FGuid MemberGuid; // 0x0020(0x0010)(ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bSelfContext; // 0x0030(0x0001)(ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + bool bWasDeprecated; // 0x0031(0x0001)(ZeroConstructor, SaveGame, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_32[0x6]; // 0x0032(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FMemberReference; + +// ScriptStruct Engine.PacketSimulationSettings +// 0x003C (0x003C - 0x0000) +struct FPacketSimulationSettings final +{ +public: + int32 PktLoss; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLossMaxSize; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLossMinSize; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktOrder; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktDup; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLag; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLagVariance; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLagMin; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktLagMax; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktIncomingLagMin; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktIncomingLagMax; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktIncomingLoss; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktJitter; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktFrameDelay; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 PktIncomingFrameDelay; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPacketSimulationSettings; + +// ScriptStruct Engine.NetworkEmulationProfileDescription +// 0x0020 (0x0020 - 0x0000) +struct FNetworkEmulationProfileDescription final +{ +public: + class FString ProfileName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ToolTip; // 0x0010(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FNetworkEmulationProfileDescription; + +// ScriptStruct Engine.RPCDoSState +// 0x0048 (0x0048 - 0x0000) +struct alignas(0x08) FRPCDoSState +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + bool bLogEscalate; // 0x0008(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSendEscalateAnalytics; // 0x0009(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bKickPlayer; // 0x000A(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bTrackRecentRPCs; // 0x000B(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 EscalateQuotaRPCsPerFrame; // 0x000C(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 EscalateTimeQuotaMSPerFrame; // 0x000E(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 EscalateQuotaRPCsPerPeriod; // 0x0010(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 EscalateTimeQuotaMSPerPeriod; // 0x0012(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 EscalateQuotaTimePeriod; // 0x0014(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 EscalationCountTolerance; // 0x0015(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 EscalationTimeToleranceMS; // 0x0016(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 RPCRepeatLimitPerPeriod; // 0x0018(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 RPCRepeatLimitMSPerPeriod; // 0x001A(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 RPCRepeatLimitTimePeriod; // 0x001C(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x1]; // 0x001D(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int16 CooloffTime; // 0x001E(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 AutoEscalateTime; // 0x0020(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x26]; // 0x0022(0x0026)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRPCDoSState; + +// ScriptStruct Engine.RPCDoSStateConfig +// 0x0030 (0x0078 - 0x0048) +struct FRPCDoSStateConfig final : public FRPCDoSState +{ +public: + uint8 Pad_48[0x30]; // 0x0048(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRPCDoSStateConfig; + +// ScriptStruct Engine.UniqueNetIdRepl +// 0x002F (0x0030 - 0x0001) +struct FUniqueNetIdRepl final : public FUniqueNetIdWrapper +{ +public: + uint8 Pad_1[0x1F]; // 0x0001(0x001F)(Fixing Size After Last Property [ Dumper-7 ]) + TArray ReplicationBytes; // 0x0020(0x0010)(ZeroConstructor, Transient, Protected, NativeAccessSpecifierProtected) +}; +//_ASSERTS_FUniqueNetIdRepl; + +// ScriptStruct Engine.ParticleSystemWorldManagerTickFunction +// 0x0008 (0x0030 - 0x0028) +struct FParticleSystemWorldManagerTickFunction final : public FTickFunction +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FParticleSystemWorldManagerTickFunction; + +// ScriptStruct Engine.WorldPSCPool +// 0x0058 (0x0058 - 0x0000) +struct FWorldPSCPool final +{ +public: + TMap WorldParticleSystemPools; // 0x0000(0x0050)(ContainsInstancedReference, NativeAccessSpecifierPrivate) + uint8 Pad_50[0x8]; // 0x0050(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPSCPool; + +// ScriptStruct Engine.ClusterUnionBoneData +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FClusterUnionBoneData final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FClusterUnionBoneData; + +// ScriptStruct Engine.ClusteredComponentData +// 0x0028 (0x0028 - 0x0000) +struct alignas(0x08) FClusteredComponentData final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + TWeakObjectPtr ReplicatedProxyComponent; // 0x0010(0x0008)(ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TWeakObjectPtr Owner; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWasReplicating; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bPendingDeletion; // 0x0021(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_22[0x6]; // 0x0022(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FClusteredComponentData; + +// ScriptStruct Engine.ClusterUnionReplicatedData +// 0x0002 (0x0002 - 0x0000) +struct FClusterUnionReplicatedData final +{ +public: + uint8 ObjectState; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsAnchored; // 0x0001(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClusterUnionReplicatedData; + +// ScriptStruct Engine.ClusterUnionPendingAddData +// 0x0050 (0x0050 - 0x0000) +struct FClusterUnionPendingAddData final +{ +public: + TSet BonesData; // 0x0000(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClusterUnionPendingAddData; + +// ScriptStruct Engine.ClusterUnionInitializationData +// 0x0018 (0x0018 - 0x0000) +struct FClusterUnionInitializationData final +{ +public: + class UClusterUnionComponent* ClusterUnionComponent; // 0x0000(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray ProcessedComponents; // 0x0008(0x0010)(ExportObject, ZeroConstructor, ContainsInstancedReference, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClusterUnionInitializationData; + +// ScriptStruct Engine.ConstraintInstance +// 0x0240 (0x0288 - 0x0048) +struct FConstraintInstance final : public FConstraintInstanceBase +{ +public: + class FName JointName; // 0x0048(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ConstraintBone1; // 0x0050(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ConstraintBone2; // 0x0058(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_60[0x8]; // 0x0060(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Pos1; // 0x0068(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PriAxis1; // 0x0080(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SecAxis1; // 0x0098(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector Pos2; // 0x00B0(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector PriAxis2; // 0x00C8(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector SecAxis2; // 0x00E0(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator AngularRotationOffset; // 0x00F8(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 bScaleLinearLimits : 1; // 0x0110(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_111[0x7]; // 0x0111(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FConstraintProfileProperties ProfileInstance; // 0x0118(0x0160)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_278[0x10]; // 0x0278(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FConstraintInstance; + +// ScriptStruct Engine.ConstraintInstanceAccessor +// 0x000C (0x000C - 0x0000) +struct FConstraintInstanceAccessor final +{ +public: + TWeakObjectPtr Owner; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint32 Index; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FConstraintInstanceAccessor; + +// ScriptStruct Engine.NetworkPhysicsRewindDataStateProxy +// 0x0000 (0x0010 - 0x0010) +struct FNetworkPhysicsRewindDataStateProxy final : public FNetworkPhysicsRewindDataProxy +{ +}; +//_ASSERTS_FNetworkPhysicsRewindDataStateProxy; + +// ScriptStruct Engine.NetworkPhysicsRewindDataImportantInputProxy +// 0x0000 (0x0010 - 0x0010) +struct FNetworkPhysicsRewindDataImportantInputProxy final : public FNetworkPhysicsRewindDataProxy +{ +}; +//_ASSERTS_FNetworkPhysicsRewindDataImportantInputProxy; + +// ScriptStruct Engine.NetworkPhysicsRewindDataImportantStateProxy +// 0x0000 (0x0010 - 0x0010) +struct FNetworkPhysicsRewindDataImportantStateProxy final : public FNetworkPhysicsRewindDataProxy +{ +}; +//_ASSERTS_FNetworkPhysicsRewindDataImportantStateProxy; + +// ScriptStruct Engine.PhysicsAssetSolverSettings +// 0x001C (0x001C - 0x0000) +struct FPhysicsAssetSolverSettings final +{ +public: + int32 PositionIterations; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VelocityIterations; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ProjectionIterations; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CullDistance; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationVelocity; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FixedTimeStep; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseLinearJointSolver; // 0x0018(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseManifolds; // 0x0019(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x2]; // 0x001A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FPhysicsAssetSolverSettings; + +// ScriptStruct Engine.SolverIterations +// 0x0018 (0x0018 - 0x0000) +struct FSolverIterations final +{ +public: + int32 SolverIterations; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 JointIterations; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CollisionIterations; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SolverPushOutIterations; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 JointPushOutIterations; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 CollisionPushOutIterations; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSolverIterations; + +// ScriptStruct Engine.PhysicalSurfaceName +// 0x000C (0x000C - 0x0000) +struct FPhysicalSurfaceName final +{ +public: + EPhysicalSurface Type; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FName Name; // 0x0004(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPhysicalSurfaceName; + +// ScriptStruct Engine.ChaosPhysicsSettings +// 0x0003 (0x0003 - 0x0000) +struct FChaosPhysicsSettings final +{ +public: + EChaosThreadingMode DefaultThreadingModel; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EChaosSolverTickMode DedicatedThreadTickMode; // 0x0001(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EChaosBufferMode DedicatedThreadBufferMode; // 0x0002(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FChaosPhysicsSettings; + +// ScriptStruct Engine.UpdateLevelStreamingLevelStatus +// 0x0010 (0x0010 - 0x0000) +struct FUpdateLevelStreamingLevelStatus final +{ +public: + class FName PackageName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBeLoaded; // 0x000C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBeVisible; // 0x000D(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBlockOnLoad; // 0x000E(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bNewShouldBlockOnUnload; // 0x000F(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FUpdateLevelStreamingLevelStatus; + +// ScriptStruct Engine.AsyncPhysicsTimestamp +// 0x0008 (0x0008 - 0x0000) +struct FAsyncPhysicsTimestamp final +{ +public: + int32 ServerFrame; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LocalFrame; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAsyncPhysicsTimestamp; + +// ScriptStruct Engine.PlayerMuteList +// 0x0058 (0x0058 - 0x0000) +struct alignas(0x08) FPlayerMuteList final +{ +public: + uint8 Pad_0[0x50]; // 0x0000(0x0050)(Fixing Size After Last Property [ Dumper-7 ]) + bool bHasVoiceHandshakeCompleted; // 0x0050(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_51[0x3]; // 0x0051(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 VoiceChannelIdx; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FPlayerMuteList; + +// ScriptStruct Engine.PropertyAccessIndirectionChain +// 0x0028 (0x0028 - 0x0000) +struct FPropertyAccessIndirectionChain final +{ +public: + TFieldPath Property; // 0x0000(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 IndirectionStartIndex; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + int32 IndirectionEndIndex; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FPropertyAccessIndirectionChain; + +// ScriptStruct Engine.SpecularProfileStruct +// 0x0420 (0x0420 - 0x0000) +struct FSpecularProfileStruct final +{ +public: + ESpecularProfileFormat Format; // 0x0000(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FRuntimeCurveLinearColor ViewColor; // 0x0008(0x0208)(Edit, NativeAccessSpecifierPublic) + struct FRuntimeCurveLinearColor LightColor; // 0x0210(0x0208)(Edit, NativeAccessSpecifierPublic) + class UTexture2D* Texture; // 0x0418(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSpecularProfileStruct; + +// ScriptStruct Engine.RepMovementNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRepMovementNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//_ASSERTS_FRepMovementNetSerializerConfig; + +// ScriptStruct Engine.SingleAnimationPlayData +// 0x0018 (0x0018 - 0x0000) +struct FSingleAnimationPlayData final +{ +public: + class UAnimationAsset* AnimToPlay; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSavedLooping : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bSavedPlaying : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SavedPosition; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SavedPlayRate; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSingleAnimationPlayData; + +// ScriptStruct Engine.BoneMirrorInfo +// 0x0008 (0x0008 - 0x0000) +struct FBoneMirrorInfo final +{ +public: + int32 SourceIndex; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EAxis BoneFlipAxis; // 0x0004(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5[0x3]; // 0x0005(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FBoneMirrorInfo; + +// ScriptStruct Engine.SkeletalMeshClothBuildParams +// 0x0058 (0x0058 - 0x0000) +struct FSkeletalMeshClothBuildParams final +{ +public: + TWeakObjectPtr TargetAsset; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TargetLod; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemapParameters; // 0x000C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + class FString AssetName; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODIndex; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SourceSection; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRemoveFromMesh; // 0x0028(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TSoftObjectPtr PhysicsAsset; // 0x0030(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshClothBuildParams; + +// ScriptStruct Engine.ClothPhysicsProperties_Legacy +// 0x0050 (0x0050 - 0x0000) +struct FClothPhysicsProperties_Legacy final +{ +public: + float VerticalResistance; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float HorizontalResistance; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BendResistance; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShearResistance; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Friction; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Damping; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TetherStiffness; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TetherLimit; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Drag; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StiffnessFrequency; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float GravityScale; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MassScale; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InertiaBlend; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SelfCollisionThickness; // 0x0034(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SelfCollisionSquashScale; // 0x0038(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SelfCollisionStiffness; // 0x003C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SolverFrequency; // 0x0040(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FiberCompression; // 0x0044(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FiberExpansion; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FiberResistance; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FClothPhysicsProperties_Legacy; + +// ScriptStruct Engine.ClothingAssetData_Legacy +// 0x0070 (0x0070 - 0x0000) +struct FClothingAssetData_Legacy final +{ +public: + class FName AssetName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ApexFileName; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bClothPropertiesChanged; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FClothPhysicsProperties_Legacy PhysicsProperties; // 0x001C(0x0050)(NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FClothingAssetData_Legacy; + +// ScriptStruct Engine.SkeletalMeshLODGroupSettings +// 0x0090 (0x0090 - 0x0000) +struct FSkeletalMeshLODGroupSettings final +{ +public: + struct FPerPlatformFloat ScreenSize; // 0x0000(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float LODHysteresis; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBoneFilterActionOption BoneFilterActionOption; // 0x0008(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BoneList; // 0x0010(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray BonesToPrioritize; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SectionsToPrioritize; // 0x0030(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + float WeightOfPrioritization; // 0x0040(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimSequence* BakePose; // 0x0048(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSkeletalMeshOptimizationSettings ReductionSettings; // 0x0050(0x003C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + bool bAllowMeshDeformer; // 0x008C(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_8D[0x3]; // 0x008D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshLODGroupSettings; + +// ScriptStruct Engine.SkelMeshMergeSectionMapping +// 0x0010 (0x0010 - 0x0000) +struct FSkelMeshMergeSectionMapping final +{ +public: + TArray SectionIDs; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkelMeshMergeSectionMapping; + +// ScriptStruct Engine.SkeletalMeshSamplingRegionBuiltData +// 0x0078 (0x0078 - 0x0000) +struct alignas(0x08) FSkeletalMeshSamplingRegionBuiltData final +{ +public: + uint8 Pad_0[0x78]; // 0x0000(0x0078)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshSamplingRegionBuiltData; + +// ScriptStruct Engine.SkeletalMeshSamplingLODBuiltData +// 0x0048 (0x0048 - 0x0000) +struct alignas(0x08) FSkeletalMeshSamplingLODBuiltData final +{ +public: + uint8 Pad_0[0x48]; // 0x0000(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshSamplingLODBuiltData; + +// ScriptStruct Engine.SkeletalMeshSamplingBuiltData +// 0x0020 (0x0020 - 0x0000) +struct FSkeletalMeshSamplingBuiltData final +{ +public: + TArray WholeMeshBuiltData; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + TArray RegionBuiltData; // 0x0010(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshSamplingBuiltData; + +// ScriptStruct Engine.SkeletalMeshSamplingRegionMaterialFilter +// 0x0008 (0x0008 - 0x0000) +struct FSkeletalMeshSamplingRegionMaterialFilter final +{ +public: + class FName MaterialName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshSamplingRegionMaterialFilter; + +// ScriptStruct Engine.SkeletalMeshSamplingRegion +// 0x0030 (0x0030 - 0x0000) +struct FSkeletalMeshSamplingRegion final +{ +public: + class FName Name; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODIndex; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bSupportUniformlyDistributedSampling : 1; // 0x000C(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray MaterialFilters; // 0x0010(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray BoneFilters; // 0x0020(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSkeletalMeshSamplingRegion; + +// ScriptStruct Engine.SkeletalMeshSamplingInfo +// 0x0030 (0x0030 - 0x0000) +struct FSkeletalMeshSamplingInfo final +{ +public: + TArray Regions; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + struct FSkeletalMeshSamplingBuiltData BuiltData; // 0x0010(0x0020)(NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FSkeletalMeshSamplingInfo; + +// ScriptStruct Engine.MorphTargetImportedSourceFileInfo +// 0x0020 (0x0020 - 0x0000) +struct FMorphTargetImportedSourceFileInfo final +{ +public: + class FString SourceFilename; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FGuid DerivedDataHash; // 0x0010(0x0010)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FMorphTargetImportedSourceFileInfo; + +// ScriptStruct Engine.SkeletalMeshLODInfo +// 0x00F0 (0x00F0 - 0x0000) +struct FSkeletalMeshLODInfo final +{ +public: + struct FPerPlatformFloat ScreenSize; // 0x0000(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + float LODHysteresis; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray LODMaterialMap; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + struct FSkeletalMeshBuildSettings BuildSettings; // 0x0018(0x0018)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FSkeletalMeshOptimizationSettings ReductionSettings; // 0x0030(0x003C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_6C[0x4]; // 0x006C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TArray BonesToRemove; // 0x0070(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray BonesToPrioritize; // 0x0080(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + TArray SectionsToPrioritize; // 0x0090(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) + float WeightOfPrioritization; // 0x00A0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A4[0x4]; // 0x00A4(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UAnimSequence* BakePose; // 0x00A8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UAnimSequence* BakePoseOverride; // 0x00B0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString SourceImportFilename; // 0x00B8(0x0010)(Edit, ZeroConstructor, EditConst, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESkinCacheUsage SkinCacheUsage; // 0x00C8(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C9[0x3]; // 0x00C9(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float MorphTargetPositionErrorTolerance; // 0x00CC(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bHasBeenSimplified : 1; // 0x00D0(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bHasPerLODVertexColors : 1; // 0x00D0(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowCPUAccess : 1; // 0x00D0(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bBuildHalfEdgeBuffers : 1; // 0x00D0(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAllowMeshDeformer : 1; // 0x00D0(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_D1[0x7]; // 0x00D1(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray VertexAttributes; // 0x00D8(0x0010)(Edit, EditFixedSize, ZeroConstructor, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 bSupportUniformlyDistributedSampling : 1; // 0x00E8(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_E9[0x7]; // 0x00E9(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMeshLODInfo; + +// ScriptStruct Engine.SkeletalMaterial +// 0x0028 (0x0028 - 0x0000) +struct FSkeletalMaterial final +{ +public: + class UMaterialInterface* MaterialInterface; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MaterialSlotName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMeshUVChannelInfo UVChannelData; // 0x0010(0x0014)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSkeletalMaterial; + +// ScriptStruct Engine.SoundModulationDestinationSettings +// 0x0058 (0x0058 - 0x0000) +struct FSoundModulationDestinationSettings final +{ +public: + float Value; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TSet Modulators; // 0x0008(0x0050)(Edit, BlueprintVisible, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundModulationDestinationSettings; + +// ScriptStruct Engine.SoundModulationDefaultSettings +// 0x0160 (0x0160 - 0x0000) +struct FSoundModulationDefaultSettings +{ +public: + struct FSoundModulationDestinationSettings VolumeModulationDestination; // 0x0000(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings PitchModulationDestination; // 0x0058(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings HighpassModulationDestination; // 0x00B0(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSoundModulationDestinationSettings LowpassModulationDestination; // 0x0108(0x0058)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundModulationDefaultSettings; + +// ScriptStruct Engine.SoundClassProperties +// 0x0198 (0x0198 - 0x0000) +struct FSoundClassProperties final +{ +public: + float Volume; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float pitch; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LowPassFilterFrequency; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AttenuationDistanceScale; // 0x000C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LFEBleed; // 0x0010(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VoiceCenterChannelVolume; // 0x0014(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RadioFilterVolume; // 0x0018(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RadioFilterVolumeThreshold; // 0x001C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bApplyEffects : 1; // 0x0020(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlwaysPlay : 1; // 0x0020(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsUISound : 1; // 0x0020(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIsMusic : 1; // 0x0020(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCenterChannelOnly : 1; // 0x0020(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bApplyAmbientVolumes : 1; // 0x0020(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bReverb : 1; // 0x0020(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_21[0x3]; // 0x0021(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float Default2DReverbSendAmount; // 0x0024(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoundModulationDefaultSettings ModulationSettings; // 0x0028(0x0160)(Edit, BlueprintVisible, BlueprintReadOnly, NativeAccessSpecifierPublic) + EAudioOutputTarget OutputTarget; // 0x0188(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESoundWaveLoadingBehavior LoadingBehavior; // 0x0189(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, AssetRegistrySearchable, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_18A[0x6]; // 0x018A(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + class USoundSubmix* DefaultSubmix; // 0x0190(0x0008)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundClassProperties; + +// ScriptStruct Engine.SoundConcurrencySettings +// 0x0020 (0x0020 - 0x0000) +struct FSoundConcurrencySettings final +{ +public: + int32 MaxCount; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bLimitToOwner : 1; // 0x0004(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bVolumeScaleCanRelease : 1; // 0x0004(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + EMaxConcurrentResolutionRule ResolutionRule; // 0x0005(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_6[0x2]; // 0x0006(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float RetriggerTime; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeScale; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EConcurrencyVolumeScaleMode VolumeScaleMode; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeScaleAttackTime; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VolumeScaleReleaseTime; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VoiceStealReleaseTime; // 0x001C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundConcurrencySettings; + +// ScriptStruct Engine.SoundNodeEditorData +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FSoundNodeEditorData final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundNodeEditorData; + +// ScriptStruct Engine.AudioEQEffect +// 0x0038 (0x0040 - 0x0008) +struct FAudioEQEffect final : public FAudioEffectParameters +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + float FrequencyCenter0; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Gain0; // 0x0014(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bandwidth0; // 0x0018(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrequencyCenter1; // 0x001C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Gain1; // 0x0020(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bandwidth1; // 0x0024(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrequencyCenter2; // 0x0028(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Gain2; // 0x002C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bandwidth2; // 0x0030(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FrequencyCenter3; // 0x0034(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Gain3; // 0x0038(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bandwidth3; // 0x003C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAudioEQEffect; + +// ScriptStruct Engine.SoundModulationDefaultRoutingSettings +// 0x0008 (0x0168 - 0x0160) +struct FSoundModulationDefaultRoutingSettings final : public FSoundModulationDefaultSettings +{ +public: + EModulationRouting VolumeRouting; // 0x0160(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EModulationRouting PitchRouting; // 0x0161(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EModulationRouting HighpassRouting; // 0x0162(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EModulationRouting LowpassRouting; // 0x0163(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_164[0x4]; // 0x0164(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FSoundModulationDefaultRoutingSettings; + +// ScriptStruct Engine.DistanceDatum +// 0x0014 (0x0014 - 0x0000) +struct FDistanceDatum final +{ +public: + float FadeInDistanceStart; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeInDistanceEnd; // 0x0004(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeOutDistanceStart; // 0x0008(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float FadeOutDistanceEnd; // 0x000C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Volume; // 0x0010(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDistanceDatum; + +// ScriptStruct Engine.DynamicChildSubmix +// 0x0010 (0x0010 - 0x0000) +struct FDynamicChildSubmix final +{ +public: + TArray ChildSubmixes; // 0x0000(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FDynamicChildSubmix; + +// ScriptStruct Engine.SoundSubmixSpectralAnalysisBandSettings +// 0x0010 (0x0010 - 0x0000) +struct FSoundSubmixSpectralAnalysisBandSettings final +{ +public: + float BandFrequency; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 AttackTimeMsec; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReleaseTimeMsec; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float QFactor; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoundSubmixSpectralAnalysisBandSettings; + +// ScriptStruct Engine.SplineMeshComponentDescriptor +// 0x0030 (0x01F0 - 0x01C0) +struct FSplineMeshComponentDescriptor final : public FSplineMeshComponentDescriptorBase +{ +public: + class UStaticMesh* StaticMesh; // 0x01C0(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray OverrideMaterials; // 0x01C8(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + class UMaterialInterface* OverlayMaterial; // 0x01D8(0x0008)(Edit, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray RuntimeVirtualTextures; // 0x01E0(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSplineMeshComponentDescriptor; + +// ScriptStruct Engine.SoftSplineMeshComponentDescriptor +// 0x0070 (0x0230 - 0x01C0) +struct FSoftSplineMeshComponentDescriptor final : public FSplineMeshComponentDescriptorBase +{ +public: + TSoftObjectPtr StaticMesh; // 0x01C0(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray> OverrideMaterials; // 0x01E8(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + TSoftObjectPtr OverlayMaterial; // 0x01F8(0x0028)(Edit, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray> RuntimeVirtualTextures; // 0x0220(0x0010)(Edit, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FSoftSplineMeshComponentDescriptor; + +// ScriptStruct Engine.StaticMeshOptimizationSettings +// 0x001C (0x001C - 0x0000) +struct FStaticMeshOptimizationSettings final +{ +public: + EOptimizationType ReductionMethod; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float NumOfTrianglesPercentage; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDeviationPercentage; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float WeldingThreshold; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bRecalcNormals; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float NormalsThreshold; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 SilhouetteImportance; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 TextureImportance; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ShadingImportance; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1B[0x1]; // 0x001B(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticMeshOptimizationSettings; + +// ScriptStruct Engine.MeshSectionInfoMap +// 0x0050 (0x0050 - 0x0000) +struct FMeshSectionInfoMap final +{ +public: + TMap Map; // 0x0000(0x0050)(NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMeshSectionInfoMap; + +// ScriptStruct Engine.AssetEditorOrbitCameraPosition +// 0x0050 (0x0050 - 0x0000) +struct FAssetEditorOrbitCameraPosition final +{ +public: + bool bIsSet; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x7]; // 0x0001(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector CamOrbitPoint; // 0x0008(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector CamOrbitZoom; // 0x0020(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator CamOrbitRotation; // 0x0038(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FAssetEditorOrbitCameraPosition; + +// ScriptStruct Engine.StaticMaterial +// 0x0030 (0x0030 - 0x0000) +struct FStaticMaterial final +{ +public: + class UMaterialInterface* MaterialInterface; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MaterialSlotName; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ImportedMaterialSlotName; // 0x0010(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMeshUVChannelInfo UVChannelData; // 0x0018(0x0014)(Edit, BlueprintVisible, BlueprintReadOnly, EditConst, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_2C[0x4]; // 0x002C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStaticMaterial; + +// ScriptStruct Engine.StaticMeshSourceModel +// 0x0098 (0x0098 - 0x0000) +struct FStaticMeshSourceModel final +{ +public: + struct FMeshBuildSettings BuildSettings; // 0x0000(0x0048)(Edit, NoDestructor, NativeAccessSpecifierPublic) + struct FMeshReductionSettings ReductionSettings; // 0x0048(0x002C)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint32 CacheMeshDescriptionTrianglesCount; // 0x0074(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 CacheMeshDescriptionVerticesCount; // 0x0078(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LODDistance; // 0x007C(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FPerPlatformFloat ScreenSize; // 0x0080(0x0004)(Edit, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_84[0x4]; // 0x0084(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class FString SourceImportFilename; // 0x0088(0x0010)(Edit, ZeroConstructor, EditConst, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStaticMeshSourceModel; + +// ScriptStruct Engine.StreamableTexture +// 0x0001 (0x0001 - 0x0000) +struct FStreamableTexture final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStreamableTexture; + +// ScriptStruct Engine.ExternalToolDefinition +// 0x0060 (0x0060 - 0x0000) +struct FExternalToolDefinition final +{ +public: + class FString ToolName; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath ExecutablePath; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString CommandLineOptions; // 0x0020(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDirectoryPath WorkingDirectory; // 0x0030(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ScriptExtension; // 0x0040(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDirectoryPath ScriptDirectory; // 0x0050(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FExternalToolDefinition; + +// ScriptStruct Engine.EditorImportExportTestDefinition +// 0x0038 (0x0038 - 0x0000) +struct FEditorImportExportTestDefinition final +{ +public: + struct FFilePath ImportFilePath; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString ExportFileExtension; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSkipExport; // 0x0020(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray FactorySettings; // 0x0028(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEditorImportExportTestDefinition; + +// ScriptStruct Engine.EditorImportWorkflowDefinition +// 0x0020 (0x0020 - 0x0000) +struct FEditorImportWorkflowDefinition final +{ +public: + struct FFilePath ImportFilePath; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray FactorySettings; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FEditorImportWorkflowDefinition; + +// ScriptStruct Engine.BuildPromotionImportWorkflowSettings +// 0x0150 (0x0150 - 0x0000) +struct FBuildPromotionImportWorkflowSettings final +{ +public: + struct FEditorImportWorkflowDefinition Diffuse; // 0x0000(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition Normal; // 0x0020(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition StaticMesh; // 0x0040(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition ReimportStaticMesh; // 0x0060(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition BlendShapeMesh; // 0x0080(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition MorphMesh; // 0x00A0(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition SkeletalMesh; // 0x00C0(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition Animation; // 0x00E0(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition Sound; // 0x0100(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + struct FEditorImportWorkflowDefinition SurroundSound; // 0x0120(0x0020)(Edit, Config, NativeAccessSpecifierPublic) + TArray OtherAssetsToImport; // 0x0140(0x0010)(Edit, ZeroConstructor, Config, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBuildPromotionImportWorkflowSettings; + +// ScriptStruct Engine.BuildPromotionNewProjectSettings +// 0x0020 (0x0020 - 0x0000) +struct FBuildPromotionNewProjectSettings final +{ +public: + struct FDirectoryPath NewProjectFolderOverride; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString NewProjectNameOverride; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBuildPromotionNewProjectSettings; + +// ScriptStruct Engine.MaterialEditorPromotionSettings +// 0x0030 (0x0030 - 0x0000) +struct FMaterialEditorPromotionSettings final +{ +public: + struct FFilePath DefaultMaterialAsset; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath DefaultDiffuseTexture; // 0x0010(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFilePath DefaultNormalTexture; // 0x0020(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FMaterialEditorPromotionSettings; + +// ScriptStruct Engine.ParticleEditorPromotionSettings +// 0x0010 (0x0010 - 0x0000) +struct FParticleEditorPromotionSettings final +{ +public: + struct FFilePath DefaultParticleAsset; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FParticleEditorPromotionSettings; + +// ScriptStruct Engine.BuildPromotionTestSettings +// 0x01F0 (0x01F0 - 0x0000) +struct FBuildPromotionTestSettings final +{ +public: + struct FFilePath DefaultStaticMeshAsset; // 0x0000(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FBuildPromotionImportWorkflowSettings ImportWorkflow; // 0x0010(0x0150)(Edit, NativeAccessSpecifierPublic) + struct FBuildPromotionOpenAssetSettings OpenAssets; // 0x0160(0x0060)(Edit, NativeAccessSpecifierPublic) + struct FBuildPromotionNewProjectSettings NewProjectSettings; // 0x01C0(0x0020)(Edit, NativeAccessSpecifierPublic) + struct FFilePath SourceControlMaterial; // 0x01E0(0x0010)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FBuildPromotionTestSettings; + +// ScriptStruct Engine.EditorMapPerformanceTestDefinition +// 0x0028 (0x0028 - 0x0000) +struct FEditorMapPerformanceTestDefinition final +{ +public: + struct FSoftObjectPath PerformanceTestmap; // 0x0000(0x0020)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 TestTimer; // 0x0020(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_24[0x4]; // 0x0024(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FEditorMapPerformanceTestDefinition; + +// ScriptStruct Engine.LaunchOnTestSettings +// 0x0020 (0x0020 - 0x0000) +struct FLaunchOnTestSettings final +{ +public: + struct FFilePath LaunchOnTestmap; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString DeviceID; // 0x0010(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FLaunchOnTestSettings; + +// ScriptStruct Engine.TextureSourceBlock +// 0x0018 (0x0018 - 0x0000) +struct FTextureSourceBlock final +{ +public: + int32 BlockX; // 0x0000(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 BlockY; // 0x0004(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeX; // 0x0008(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SizeY; // 0x000C(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumSlices; // 0x0010(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumMips; // 0x0014(0x0004)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextureSourceBlock; + +// ScriptStruct Engine.TexturePlatformData +// 0x0038 (0x0038 - 0x0000) +struct alignas(0x08) FTexturePlatformData final +{ +public: + uint8 Pad_0[0x38]; // 0x0000(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTexturePlatformData; + +// ScriptStruct Engine.TextureSourceColorSettings +// 0x0050 (0x0050 - 0x0000) +struct FTextureSourceColorSettings final +{ +public: + ETextureSourceEncoding EncodingOverride; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureColorSpace ColorSpace; // 0x0001(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2[0x6]; // 0x0002(0x0006)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector2D RedChromaticityCoordinate; // 0x0008(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D GreenChromaticityCoordinate; // 0x0018(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D BlueChromaticityCoordinate; // 0x0028(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D WhiteChromaticityCoordinate; // 0x0038(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureChromaticAdaptationMethod ChromaticAdaptationMethod; // 0x0048(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_49[0x7]; // 0x0049(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FTextureSourceColorSettings; + +// ScriptStruct Engine.TextureLODGroup +// 0x0058 (0x0058 - 0x0000) +struct FTextureLODGroup final +{ +public: + ETextureGroup Group; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x1]; // 0x0001(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + ETextureMipGenSettings MipGenSettings; // 0x0002(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureMipLoadOptions MipLoadOptions; // 0x0003(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_4[0x4]; // 0x0004(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + int32 LODBias; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODBias_Smaller; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LODBias_Smallest; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumStreamedMips; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MinLODSize; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxLODSize; // 0x001C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxLODSize_Smaller; // 0x0020(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxLODSize_Smallest; // 0x0024(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxLODSize_VT; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OptionalLODBias; // 0x002C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 OptionalMaxLODSize; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MinMagFilter; // 0x0034(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName MipFilter; // 0x003C(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 HighPriorityLoad : 1; // 0x0044(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 DuplicateNonOptionalMips : 1; // 0x0044(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 CookPlatformTilingDisabled : 1; // 0x0044(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + ETextureDownscaleOptions DownscaleOptions; // 0x0045(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextureLossyCompressionAmount LossyCompressionAmount; // 0x0046(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_47[0x1]; // 0x0047(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float Downscale; // 0x0048(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VirtualTextureTileCountBias; // 0x004C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 VirtualTextureTileSizeBias; // 0x0050(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MaxAniso; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTextureLODGroup; + +// ScriptStruct Engine.TTEventTrack +// 0x0010 (0x0028 - 0x0018) +struct FTTEventTrack final : public FTTTrackBase +{ +public: + class FName FunctionName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class UCurveFloat* CurveKeys; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTTEventTrack; + +// ScriptStruct Engine.TTFloatTrack +// 0x0008 (0x0028 - 0x0020) +struct FTTFloatTrack final : public FTTPropertyTrack +{ +public: + class UCurveFloat* CurveFloat; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTTFloatTrack; + +// ScriptStruct Engine.TTLinearColorTrack +// 0x0008 (0x0028 - 0x0020) +struct FTTLinearColorTrack final : public FTTPropertyTrack +{ +public: + class UCurveLinearColor* CurveLinearColor; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FTTLinearColorTrack; + +// ScriptStruct Engine.HardwareCursorReference +// 0x0018 (0x0018 - 0x0000) +struct FHardwareCursorReference final +{ +public: + class FName CursorPath; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D HotSpot; // 0x0008(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FHardwareCursorReference; + +// ScriptStruct Engine.CanvasIcon +// 0x0018 (0x0018 - 0x0000) +struct FCanvasIcon final +{ +public: + class UTexture* Texture; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float U; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float V; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UL; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float VL; // 0x0014(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FCanvasIcon; + +// ScriptStruct Engine.KeyBind +// 0x0030 (0x0030 - 0x0000) +struct FKeyBind final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Edit, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FString Command; // 0x0018(0x0010)(Edit, ZeroConstructor, Config, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Control : 1; // 0x0028(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Shift : 1; // 0x0028(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Alt : 1; // 0x0028(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Cmd : 1; // 0x0028(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreCtrl : 1; // 0x0028(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreShift : 1; // 0x0028(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreAlt : 1; // 0x0028(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bIgnoreCmd : 1; // 0x0028(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, Config, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bDisabled : 1; // 0x0029(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Transient, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FKeyBind; + +// ScriptStruct Engine.InputActionSpeechMapping +// 0x0010 (0x0010 - 0x0000) +struct FInputActionSpeechMapping final +{ +public: + class FName ActionName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName SpeechKeyword; // 0x0008(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +//_ASSERTS_FInputActionSpeechMapping; + +// ScriptStruct Engine.VoiceSettings +// 0x0018 (0x0018 - 0x0000) +struct FVoiceSettings final +{ +public: + class USceneComponent* ComponentToAttachTo; // 0x0000(0x0008)(Edit, BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundAttenuation* AttenuationSettings; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class USoundEffectSourcePresetChain* SourceEffectChain; // 0x0010(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FVoiceSettings; + +// ScriptStruct Engine.LevelViewportInfo +// 0x0038 (0x0038 - 0x0000) +struct FLevelViewportInfo final +{ +public: + struct FVector CamPosition; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator CamRotation; // 0x0018(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float CamOrthoZoom; // 0x0030(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool CamUpdated; // 0x0034(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x3]; // 0x0035(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FLevelViewportInfo; + +// ScriptStruct Engine.StreamingLevelsToConsider +// 0x0028 (0x0028 - 0x0000) +struct FStreamingLevelsToConsider final +{ +public: + TArray StreamingLevels; // 0x0000(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_10[0x18]; // 0x0010(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FStreamingLevelsToConsider; + +// ScriptStruct Engine.WorldPartitionDestructibleHLODDamagedActorState +// 0x0008 (0x0014 - 0x000C) +struct FWorldPartitionDestructibleHLODDamagedActorState final : public FFastArraySerializerItem +{ +public: + int32 ActorIndex; // 0x000C(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 ActorHealth; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionDestructibleHLODDamagedActorState; + +// ScriptStruct Engine.WorldPartitionDestructibleHLODState +// 0x0040 (0x0148 - 0x0108) +struct FWorldPartitionDestructibleHLODState final : public FFastArraySerializer +{ +public: + TArray DamagedActors; // 0x0108(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) + class UWorldPartitionDestructibleHLODComponent* OwnerComponent; // 0x0118(0x0008)(ExportObject, ZeroConstructor, InstancedReference, RepSkip, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_120[0x28]; // 0x0120(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionDestructibleHLODState; + +// ScriptStruct Engine.WorldPartitionHLODDestructionTag +// 0x0010 (0x0010 - 0x0000) +struct FWorldPartitionHLODDestructionTag final +{ +public: + class UWorldPartitionDestructibleHLODComponent* HLODDestructionComponent; // 0x0000(0x0008)(ExportObject, ZeroConstructor, InstancedReference, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ActorIndex; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionHLODDestructionTag; + +// ScriptStruct Engine.RuntimeCellTransformerInstance +// 0x0001 (0x0001 - 0x0000) +struct FRuntimeCellTransformerInstance final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FRuntimeCellTransformerInstance; + +// ScriptStruct Engine.WorldPartitionPerWorldSettings +// 0x0001 (0x0001 - 0x0000) +struct FWorldPartitionPerWorldSettings final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionPerWorldSettings; + +// ScriptStruct Engine.WorldPartitionRuntimeCellDebugInfo +// 0x0030 (0x0030 - 0x0000) +struct FWorldPartitionRuntimeCellDebugInfo final +{ +public: + class FString Name; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName GridName; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 CoordX; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 CoordY; // 0x0020(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 CoordZ; // 0x0028(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWorldPartitionRuntimeCellDebugInfo; + +// ScriptStruct Engine.WorldPartitionRuntimeCellStreamingData +// 0x0030 (0x0030 - 0x0000) +struct FWorldPartitionRuntimeCellStreamingData final +{ +public: + class FString PackageName; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSoftObjectPath WorldAsset; // 0x0010(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FWorldPartitionRuntimeCellStreamingData; + +// ScriptStruct Engine.WorldPartitionRuntimeSpatialHashGridPreviewer +// 0x0001 (0x0001 - 0x0000) +struct FWorldPartitionRuntimeSpatialHashGridPreviewer final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionRuntimeSpatialHashGridPreviewer; + +// ScriptStruct Engine.WorldPartitionUpdateStreamingTargetState +// 0x0048 (0x0048 - 0x0000) +struct FWorldPartitionUpdateStreamingTargetState final +{ +public: + TArray ToLoadCells; // 0x0000(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ToActivateCells; // 0x0010(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ToDeactivateCells; // 0x0020(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + TArray ToUnloadCells; // 0x0030(0x0010)(ZeroConstructor, Transient, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_40[0x8]; // 0x0040(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionUpdateStreamingTargetState; + +// ScriptStruct Engine.StreamingSourceShape +// 0x0048 (0x0048 - 0x0000) +struct FStreamingSourceShape final +{ +public: + bool bUseGridLoadingRange; // 0x0000(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float LoadingRangeScale; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIsSector; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float SectorAngle; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FVector Location; // 0x0018(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FRotator Rotation; // 0x0030(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//_ASSERTS_FStreamingSourceShape; + +// ScriptStruct Engine.WorldPartitionStreamingQuerySource +// 0x0108 (0x0108 - 0x0000) +struct FWorldPartitionStreamingQuerySource final +{ +public: + struct FVector Location; // 0x0000(0x0018)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Radius; // 0x0018(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseGridLoadingRange; // 0x001C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0x3]; // 0x001D(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + TArray DataLayers; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic) + bool bDataLayersOnly; // 0x0030(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSpatialQuery; // 0x0031(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0xD6]; // 0x0032(0x00D6)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_ASSERTS_FWorldPartitionStreamingQuerySource; + +} + diff --git a/TormentedSouls2/SDK/FieldNotification_classes.hpp b/TormentedSouls2/SDK/FieldNotification_classes.hpp new file mode 100644 index 0000000..d38f3b0 --- /dev/null +++ b/TormentedSouls2/SDK/FieldNotification_classes.hpp @@ -0,0 +1,49 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: FieldNotification + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class FieldNotification.NotifyFieldValueChanged +// 0x0000 (0x0000 - 0x0000) +class INotifyFieldValueChanged final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NotifyFieldValueChanged") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NotifyFieldValueChanged") + } + static class INotifyFieldValueChanged* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_INotifyFieldValueChanged; + +} + diff --git a/TormentedSouls2/SDK/FieldNotification_structs.hpp b/TormentedSouls2/SDK/FieldNotification_structs.hpp new file mode 100644 index 0000000..408720f --- /dev/null +++ b/TormentedSouls2/SDK/FieldNotification_structs.hpp @@ -0,0 +1,27 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: FieldNotification + +#include "Basic.hpp" + + +namespace SDK +{ + +// ScriptStruct FieldNotification.FieldNotificationId +// 0x0008 (0x0008 - 0x0000) +struct FFieldNotificationId final +{ +public: + class FName FieldName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFieldNotificationId; + +} + diff --git a/TormentedSouls2/SDK/ImageCore_classes.hpp b/TormentedSouls2/SDK/ImageCore_classes.hpp new file mode 100644 index 0000000..f4bc08c --- /dev/null +++ b/TormentedSouls2/SDK/ImageCore_classes.hpp @@ -0,0 +1,48 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: ImageCore + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class ImageCore.SharedImageConstRefBlueprintFns +// 0x0000 (0x0028 - 0x0028) +class USharedImageConstRefBlueprintFns final : public UObject +{ +public: + static int32 GetHeight(const struct FSharedImageConstRefBlueprint& Image); + static struct FLinearColor GetPixelLinearColor(const struct FSharedImageConstRefBlueprint& Image, int32 X, int32 Y, bool* bValid, const struct FLinearColor& FailureColor); + static struct FVector4f GetPixelValue(const struct FSharedImageConstRefBlueprint& Image, int32 X, int32 Y, bool* bValid); + static struct FVector2f GetSize(const struct FSharedImageConstRefBlueprint& Image); + static int32 GetWidth(const struct FSharedImageConstRefBlueprint& Image); + static bool IsValid(const struct FSharedImageConstRefBlueprint& Image); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SharedImageConstRefBlueprintFns") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SharedImageConstRefBlueprintFns") + } + static class USharedImageConstRefBlueprintFns* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USharedImageConstRefBlueprintFns; + +} + diff --git a/TormentedSouls2/SDK/ImageCore_structs.hpp b/TormentedSouls2/SDK/ImageCore_structs.hpp new file mode 100644 index 0000000..f0c8c2d --- /dev/null +++ b/TormentedSouls2/SDK/ImageCore_structs.hpp @@ -0,0 +1,27 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: ImageCore + +#include "Basic.hpp" + + +namespace SDK +{ + +// ScriptStruct ImageCore.SharedImageConstRefBlueprint +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FSharedImageConstRefBlueprint final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSharedImageConstRefBlueprint; + +} + diff --git a/TormentedSouls2/SDK/InputCore_classes.hpp b/TormentedSouls2/SDK/InputCore_classes.hpp new file mode 100644 index 0000000..a6447a7 --- /dev/null +++ b/TormentedSouls2/SDK/InputCore_classes.hpp @@ -0,0 +1,40 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: InputCore + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class InputCore.InputCoreTypes +// 0x0000 (0x0028 - 0x0028) +class UInputCoreTypes final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("InputCoreTypes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"InputCoreTypes") + } + static class UInputCoreTypes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UInputCoreTypes; + +} + diff --git a/TormentedSouls2/SDK/InputCore_structs.hpp b/TormentedSouls2/SDK/InputCore_structs.hpp new file mode 100644 index 0000000..8a5554a --- /dev/null +++ b/TormentedSouls2/SDK/InputCore_structs.hpp @@ -0,0 +1,97 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: InputCore + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum InputCore.ETouchIndex +// NumValues: 0x000D +enum class ETouchIndex : uint8 +{ + Touch1 = 0, + Touch2 = 1, + Touch3 = 2, + Touch4 = 3, + Touch5 = 4, + Touch6 = 5, + Touch7 = 6, + Touch8 = 7, + Touch9 = 8, + Touch10 = 9, + CursorPointerIndex = 10, + MAX_TOUCHES = 11, + ETouchIndex_MAX = 12, +}; + +// Enum InputCore.EControllerHand +// NumValues: 0x0014 +enum class EControllerHand : uint8 +{ + Left = 0, + Right = 1, + AnyHand = 2, + Pad = 3, + ExternalCamera = 4, + Gun = 5, + HMD = 6, + Chest = 7, + LeftShoulder = 8, + RightShoulder = 9, + LeftElbow = 10, + RightElbow = 11, + Waist = 12, + LeftKnee = 13, + RightKnee = 14, + LeftFoot = 15, + RightFoot = 16, + Special = 17, + ControllerHand_Count = 18, + EControllerHand_MAX = 19, +}; + +// Enum InputCore.EConsoleForGamepadLabels +// NumValues: 0x0004 +enum class EConsoleForGamepadLabels : uint8 +{ + None = 0, + XBoxOne = 1, + PS4 = 2, + EConsoleForGamepadLabels_MAX = 3, +}; + +// Enum InputCore.ETouchType +// NumValues: 0x0008 +enum class ETouchType : uint8 +{ + Began = 0, + Moved = 1, + Stationary = 2, + ForceChanged = 3, + FirstMove = 4, + Ended = 5, + NumTypes = 6, + ETouchType_MAX = 7, +}; + +// ScriptStruct InputCore.Key +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FKey final +{ +public: + class FName KeyName; // 0x0000(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_8[0x10]; // 0x0008(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FKey; + +} + diff --git a/TormentedSouls2/SDK/IrisCore_classes.hpp b/TormentedSouls2/SDK/IrisCore_classes.hpp new file mode 100644 index 0000000..3d22727 --- /dev/null +++ b/TormentedSouls2/SDK/IrisCore_classes.hpp @@ -0,0 +1,1109 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: IrisCore + +#include "Basic.hpp" + +#include "IrisCore_structs.hpp" +#include "CoreUObject_structs.hpp" +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class IrisCore.DataStream +// 0x0000 (0x0028 - 0x0028) +class UDataStream : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataStream") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataStream") + } + static class UDataStream* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDataStream; + +// Class IrisCore.DataStreamDefinitions +// 0x0018 (0x0040 - 0x0028) +class UDataStreamDefinitions final : public UObject +{ +public: + TArray DataStreamDefinitions; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataStreamDefinitions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataStreamDefinitions") + } + static class UDataStreamDefinitions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDataStreamDefinitions; + +// Class IrisCore.DataStreamManager +// 0x0008 (0x0030 - 0x0028) +class UDataStreamManager final : public UDataStream +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("DataStreamManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"DataStreamManager") + } + static class UDataStreamManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UDataStreamManager; + +// Class IrisCore.NetObjectPrioritizerConfig +// 0x0000 (0x0028 - 0x0028) +class UNetObjectPrioritizerConfig : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectPrioritizerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectPrioritizerConfig") + } + static class UNetObjectPrioritizerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectPrioritizerConfig; + +// Class IrisCore.FieldOfViewNetObjectPrioritizerConfig +// 0x0030 (0x0058 - 0x0028) +class UFieldOfViewNetObjectPrioritizerConfig final : public UNetObjectPrioritizerConfig +{ +public: + float InnerSphereRadius; // 0x0028(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InnerSpherePriority; // 0x002C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterSphereRadius; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterSpherePriority; // 0x0034(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeFieldOfViewDegrees; // 0x0038(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InnerConeLength; // 0x003C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ConeLength; // 0x0040(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinConePriority; // 0x0044(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxConePriority; // 0x0048(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LineOfSightWidth; // 0x004C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LineOfSightPriority; // 0x0050(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutsidePriority; // 0x0054(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FieldOfViewNetObjectPrioritizerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FieldOfViewNetObjectPrioritizerConfig") + } + static class UFieldOfViewNetObjectPrioritizerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UFieldOfViewNetObjectPrioritizerConfig; + +// Class IrisCore.NetObjectPrioritizer +// 0x0000 (0x0028 - 0x0028) +class UNetObjectPrioritizer : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectPrioritizer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectPrioritizer") + } + static class UNetObjectPrioritizer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectPrioritizer; + +// Class IrisCore.LocationBasedNetObjectPrioritizer +// 0x0038 (0x0060 - 0x0028) +class ULocationBasedNetObjectPrioritizer : public UNetObjectPrioritizer +{ +public: + uint8 Pad_28[0x38]; // 0x0028(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("LocationBasedNetObjectPrioritizer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"LocationBasedNetObjectPrioritizer") + } + static class ULocationBasedNetObjectPrioritizer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_ULocationBasedNetObjectPrioritizer; + +// Class IrisCore.FieldOfViewNetObjectPrioritizer +// 0x0008 (0x0068 - 0x0060) +class UFieldOfViewNetObjectPrioritizer final : public ULocationBasedNetObjectPrioritizer +{ +public: + uint8 Pad_60[0x8]; // 0x0060(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FieldOfViewNetObjectPrioritizer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FieldOfViewNetObjectPrioritizer") + } + static class UFieldOfViewNetObjectPrioritizer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UFieldOfViewNetObjectPrioritizer; + +// Class IrisCore.NetObjectFilterConfig +// 0x0000 (0x0028 - 0x0028) +class UNetObjectFilterConfig : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectFilterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectFilterConfig") + } + static class UNetObjectFilterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectFilterConfig; + +// Class IrisCore.FilterOutNetObjectFilterConfig +// 0x0000 (0x0028 - 0x0028) +class UFilterOutNetObjectFilterConfig final : public UNetObjectFilterConfig +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FilterOutNetObjectFilterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FilterOutNetObjectFilterConfig") + } + static class UFilterOutNetObjectFilterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UFilterOutNetObjectFilterConfig; + +// Class IrisCore.NetObjectFilter +// 0x0038 (0x0060 - 0x0028) +class UNetObjectFilter : public UObject +{ +public: + uint8 Pad_28[0x38]; // 0x0028(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectFilter") + } + static class UNetObjectFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectFilter; + +// Class IrisCore.FilterOutNetObjectFilter +// 0x0000 (0x0060 - 0x0060) +class UFilterOutNetObjectFilter final : public UNetObjectFilter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FilterOutNetObjectFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FilterOutNetObjectFilter") + } + static class UFilterOutNetObjectFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UFilterOutNetObjectFilter; + +// Class IrisCore.IrisObjectReferencePackageMap +// 0x0018 (0x00F8 - 0x00E0) +class UIrisObjectReferencePackageMap final : public UPackageMap +{ +public: + uint8 Pad_E0[0x18]; // 0x00E0(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("IrisObjectReferencePackageMap") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"IrisObjectReferencePackageMap") + } + static class UIrisObjectReferencePackageMap* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UIrisObjectReferencePackageMap; + +// Class IrisCore.NetBlobHandler +// 0x0010 (0x0038 - 0x0028) +class UNetBlobHandler : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetBlobHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetBlobHandler") + } + static class UNetBlobHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetBlobHandler; + +// Class IrisCore.NetBlobHandlerDefinitions +// 0x0010 (0x0038 - 0x0028) +class UNetBlobHandlerDefinitions final : public UObject +{ +public: + TArray NetBlobHandlerDefinitions; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetBlobHandlerDefinitions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetBlobHandlerDefinitions") + } + static class UNetBlobHandlerDefinitions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetBlobHandlerDefinitions; + +// Class IrisCore.NetObjectBlobHandler +// 0x0000 (0x0038 - 0x0038) +class UNetObjectBlobHandler final : public UNetBlobHandler +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectBlobHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectBlobHandler") + } + static class UNetObjectBlobHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectBlobHandler; + +// Class IrisCore.NetObjectConnectionFilterConfig +// 0x0008 (0x0030 - 0x0028) +class UNetObjectConnectionFilterConfig final : public UNetObjectFilterConfig +{ +public: + uint16 MaxObjectCount; // 0x0028(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2A[0x6]; // 0x002A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectConnectionFilterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectConnectionFilterConfig") + } + static class UNetObjectConnectionFilterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectConnectionFilterConfig; + +// Class IrisCore.NetObjectConnectionFilter +// 0x0048 (0x00A8 - 0x0060) +class UNetObjectConnectionFilter final : public UNetObjectFilter +{ +public: + uint8 Pad_60[0x48]; // 0x0060(0x0048)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectConnectionFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectConnectionFilter") + } + static class UNetObjectConnectionFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectConnectionFilter; + +// Class IrisCore.NetObjectCountLimiterConfig +// 0x0018 (0x0040 - 0x0028) +class UNetObjectCountLimiterConfig : public UNetObjectPrioritizerConfig +{ +public: + ENetObjectCountLimiterMode Mode; // 0x0028(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 MaxObjectCount; // 0x002C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Priority; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OwningConnectionPriority; // 0x0034(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableOwnedObjectsFastLane; // 0x0038(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectCountLimiterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectCountLimiterConfig") + } + static class UNetObjectCountLimiterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectCountLimiterConfig; + +// Class IrisCore.NetObjectCountLimiter +// 0x0068 (0x0090 - 0x0028) +class UNetObjectCountLimiter final : public UNetObjectPrioritizer +{ +public: + uint8 Pad_28[0x68]; // 0x0028(0x0068)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectCountLimiter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectCountLimiter") + } + static class UNetObjectCountLimiter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectCountLimiter; + +// Class IrisCore.NetObjectFactory +// 0x0010 (0x0038 - 0x0028) +class UNetObjectFactory : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectFactory") + } + static class UNetObjectFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectFactory; + +// Class IrisCore.NetObjectFilterDefinitions +// 0x0010 (0x0038 - 0x0028) +class UNetObjectFilterDefinitions final : public UObject +{ +public: + TArray NetObjectFilterDefinitions; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectFilterDefinitions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectFilterDefinitions") + } + static class UNetObjectFilterDefinitions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectFilterDefinitions; + +// Class IrisCore.NetObjectGridFilterConfig +// 0x0030 (0x0058 - 0x0028) +class UNetObjectGridFilterConfig final : public UNetObjectFilterConfig +{ +public: + uint32 ViewPosRelevancyFrameCount; // 0x0028(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 DefaultFrameCountBeforeCulling; // 0x002C(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2E[0x2]; // 0x002E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float CellSizeX; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CellSizeY; // 0x0034(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxCullDistance; // 0x0038(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultCullDistance; // 0x003C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseExactCullDistance; // 0x0040(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_41[0x7]; // 0x0041(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray FilterProfiles; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectGridFilterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectGridFilterConfig") + } + static class UNetObjectGridFilterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectGridFilterConfig; + +// Class IrisCore.NetObjectGridFilter +// 0x00F8 (0x0158 - 0x0060) +class UNetObjectGridFilter : public UNetObjectFilter +{ +public: + uint8 Pad_60[0xF8]; // 0x0060(0x00F8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectGridFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectGridFilter") + } + static class UNetObjectGridFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectGridFilter; + +// Class IrisCore.NetObjectGridWorldLocFilter +// 0x0008 (0x0160 - 0x0158) +class UNetObjectGridWorldLocFilter final : public UNetObjectGridFilter +{ +public: + uint8 Pad_158[0x8]; // 0x0158(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectGridWorldLocFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectGridWorldLocFilter") + } + static class UNetObjectGridWorldLocFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNetObjectGridWorldLocFilter; + +// Class IrisCore.NetObjectPrioritizerDefinitions +// 0x0010 (0x0038 - 0x0028) +class UNetObjectPrioritizerDefinitions final : public UObject +{ +public: + TArray NetObjectPrioritizerDefinitions; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetObjectPrioritizerDefinitions") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetObjectPrioritizerDefinitions") + } + static class UNetObjectPrioritizerDefinitions* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetObjectPrioritizerDefinitions; + +// Class IrisCore.NetRPCHandler +// 0x0008 (0x0040 - 0x0038) +class UNetRPCHandler final : public UNetBlobHandler +{ +public: + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetRPCHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetRPCHandler") + } + static class UNetRPCHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetRPCHandler; + +// Class IrisCore.NetTokenDataStream +// 0x0050 (0x0078 - 0x0028) +class UNetTokenDataStream final : public UDataStream +{ +public: + uint8 Pad_28[0x50]; // 0x0028(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetTokenDataStream") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetTokenDataStream") + } + static class UNetTokenDataStream* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetTokenDataStream; + +// Class IrisCore.NopNetObjectFilterConfig +// 0x0000 (0x0028 - 0x0028) +class UNopNetObjectFilterConfig final : public UNetObjectFilterConfig +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NopNetObjectFilterConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NopNetObjectFilterConfig") + } + static class UNopNetObjectFilterConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNopNetObjectFilterConfig; + +// Class IrisCore.NopNetObjectFilter +// 0x0000 (0x0060 - 0x0060) +class UNopNetObjectFilter final : public UNetObjectFilter +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NopNetObjectFilter") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NopNetObjectFilter") + } + static class UNopNetObjectFilter* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UNopNetObjectFilter; + +// Class IrisCore.ReplicationBridge +// 0x00E8 (0x0110 - 0x0028) +class UReplicationBridge : public UObject +{ +public: + uint8 Pad_28[0xE8]; // 0x0028(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationBridge") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationBridge") + } + static class UReplicationBridge* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UReplicationBridge; + +// Class IrisCore.ObjectReplicationBridge +// 0x04E0 (0x05F0 - 0x0110) +class alignas(0x10) UObjectReplicationBridge : public UReplicationBridge +{ +public: + uint8 Pad_110[0x478]; // 0x0110(0x0478)(Fixing Size After Last Property [ Dumper-7 ]) + TArray NetObjectFactories; // 0x0588(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPrivate) + uint8 Pad_598[0x58]; // 0x0598(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectReplicationBridge") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectReplicationBridge") + } + static class UObjectReplicationBridge* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UObjectReplicationBridge; + +// Class IrisCore.ObjectReplicationBridgeConfig +// 0x0088 (0x00B0 - 0x0028) +class UObjectReplicationBridgeConfig final : public UObject +{ +public: + TArray PollConfigs; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray FilterConfigs; // 0x0038(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray PrioritizerConfigs; // 0x0048(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray DeltaCompressionConfigs; // 0x0058(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + TArray CriticalClassConfigs; // 0x0068(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + bool bAllClassesCritical; // 0x0078(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_79[0x7]; // 0x0079(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + TArray TypeStatsConfigs; // 0x0080(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + class FName DefaultSpatialFilterName; // 0x0090(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + class FName RequiredNetDriverChannelClassName; // 0x0098(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + TArray CriticalActorClasses; // 0x00A0(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ObjectReplicationBridgeConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ObjectReplicationBridgeConfig") + } + static class UObjectReplicationBridgeConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UObjectReplicationBridgeConfig; + +// Class IrisCore.SequentialPartialNetBlobHandlerConfig +// 0x0008 (0x0030 - 0x0028) +class USequentialPartialNetBlobHandlerConfig : public UObject +{ +public: + uint32 MaxPartBitCount; // 0x0028(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint32 MaxPartCount; // 0x002C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SequentialPartialNetBlobHandlerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SequentialPartialNetBlobHandlerConfig") + } + static class USequentialPartialNetBlobHandlerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USequentialPartialNetBlobHandlerConfig; + +// Class IrisCore.PartialNetObjectAttachmentHandlerConfig +// 0x0010 (0x0040 - 0x0030) +class UPartialNetObjectAttachmentHandlerConfig final : public USequentialPartialNetBlobHandlerConfig +{ +public: + uint32 BitCountSplitThreshold; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint32 ClientUnreliableBitCountSplitThreshold; // 0x0034(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint32 ServerUnreliableBitCountSplitThreshold; // 0x0038(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PartialNetObjectAttachmentHandlerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PartialNetObjectAttachmentHandlerConfig") + } + static class UPartialNetObjectAttachmentHandlerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UPartialNetObjectAttachmentHandlerConfig; + +// Class IrisCore.SequentialPartialNetBlobHandler +// 0x0010 (0x0048 - 0x0038) +class USequentialPartialNetBlobHandler : public UNetBlobHandler +{ +public: + uint8 Pad_38[0x10]; // 0x0038(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SequentialPartialNetBlobHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SequentialPartialNetBlobHandler") + } + static class USequentialPartialNetBlobHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USequentialPartialNetBlobHandler; + +// Class IrisCore.PartialNetObjectAttachmentHandler +// 0x0108 (0x0150 - 0x0048) +class UPartialNetObjectAttachmentHandler final : public USequentialPartialNetBlobHandler +{ +public: + uint8 Pad_48[0x108]; // 0x0048(0x0108)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PartialNetObjectAttachmentHandler") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PartialNetObjectAttachmentHandler") + } + static class UPartialNetObjectAttachmentHandler* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UPartialNetObjectAttachmentHandler; + +// Class IrisCore.ReplicationDataStream +// 0x0010 (0x0038 - 0x0028) +class UReplicationDataStream final : public UDataStream +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationDataStream") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationDataStream") + } + static class UReplicationDataStream* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UReplicationDataStream; + +// Class IrisCore.ReplicationFilteringConfig +// 0x0018 (0x0040 - 0x0028) +class UReplicationFilteringConfig final : public UObject +{ +public: + bool bEnableObjectScopeHysteresis; // 0x0028(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 DefaultHysteresisFrameCount; // 0x0029(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 HysteresisUpdateConnectionThrottling; // 0x002A(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_2B[0x5]; // 0x002B(0x0005)(Fixing Size After Last Property [ Dumper-7 ]) + TArray HysteresisProfiles; // 0x0030(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationFilteringConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationFilteringConfig") + } + static class UReplicationFilteringConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UReplicationFilteringConfig; + +// Class IrisCore.ReplicationSystem +// 0x0030 (0x0058 - 0x0028) +class UReplicationSystem final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class UReplicationBridge* ReplicationBridge; // 0x0038(0x0008)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_40[0x18]; // 0x0040(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationSystem") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationSystem") + } + static class UReplicationSystem* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UReplicationSystem; + +// Class IrisCore.SphereNetObjectPrioritizerConfig +// 0x0018 (0x0040 - 0x0028) +class USphereNetObjectPrioritizerConfig : public UNetObjectPrioritizerConfig +{ +public: + float InnerRadius; // 0x0028(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterRadius; // 0x002C(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float InnerPriority; // 0x0030(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OuterPriority; // 0x0034(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OutsidePriority; // 0x0038(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3C[0x4]; // 0x003C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereNetObjectPrioritizerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereNetObjectPrioritizerConfig") + } + static class USphereNetObjectPrioritizerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USphereNetObjectPrioritizerConfig; + +// Class IrisCore.SphereNetObjectPrioritizer +// 0x0008 (0x0068 - 0x0060) +class USphereNetObjectPrioritizer : public ULocationBasedNetObjectPrioritizer +{ +public: + uint8 Pad_60[0x8]; // 0x0060(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereNetObjectPrioritizer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereNetObjectPrioritizer") + } + static class USphereNetObjectPrioritizer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USphereNetObjectPrioritizer; + +// Class IrisCore.SphereWithOwnerBoostNetObjectPrioritizerConfig +// 0x0008 (0x0048 - 0x0040) +class USphereWithOwnerBoostNetObjectPrioritizerConfig final : public USphereNetObjectPrioritizerConfig +{ +public: + float OwnerPriorityBoost; // 0x0040(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereWithOwnerBoostNetObjectPrioritizerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereWithOwnerBoostNetObjectPrioritizerConfig") + } + static class USphereWithOwnerBoostNetObjectPrioritizerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USphereWithOwnerBoostNetObjectPrioritizerConfig; + +// Class IrisCore.SphereWithOwnerBoostNetObjectPrioritizer +// 0x0038 (0x00A0 - 0x0068) +class USphereWithOwnerBoostNetObjectPrioritizer final : public USphereNetObjectPrioritizer +{ +public: + uint8 Pad_68[0x38]; // 0x0068(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SphereWithOwnerBoostNetObjectPrioritizer") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SphereWithOwnerBoostNetObjectPrioritizer") + } + static class USphereWithOwnerBoostNetObjectPrioritizer* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USphereWithOwnerBoostNetObjectPrioritizer; + +// Class IrisCore.ReplicationStateDescriptorConfig +// 0x0010 (0x0038 - 0x0028) +class UReplicationStateDescriptorConfig final : public UObject +{ +public: + TArray SupportsStructNetSerializerList; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPrivate) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ReplicationStateDescriptorConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ReplicationStateDescriptorConfig") + } + static class UReplicationStateDescriptorConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UReplicationStateDescriptorConfig; + +// Class IrisCore.WorldLocationsConfig +// 0x0030 (0x0058 - 0x0028) +class UWorldLocationsConfig final : public UObject +{ +public: + struct FVector MinPos; // 0x0028(0x0018)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector MaxPos; // 0x0040(0x0018)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("WorldLocationsConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"WorldLocationsConfig") + } + static class UWorldLocationsConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//DUMPER7_ASSERTS_UWorldLocationsConfig; + +} + diff --git a/TormentedSouls2/SDK/IrisCore_structs.hpp b/TormentedSouls2/SDK/IrisCore_structs.hpp new file mode 100644 index 0000000..1341907 --- /dev/null +++ b/TormentedSouls2/SDK/IrisCore_structs.hpp @@ -0,0 +1,763 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: IrisCore + +#include "Basic.hpp" + +#include "NetCore_structs.hpp" + + +namespace SDK +{ + +// Enum IrisCore.EDataStreamSendStatus +// NumValues: 0x0003 +enum class EDataStreamSendStatus : uint8 +{ + Send = 0, + Pause = 1, + EDataStreamSendStatus_MAX = 2, +}; + +// Enum IrisCore.ENetObjectCountLimiterMode +// NumValues: 0x0003 +enum class ENetObjectCountLimiterMode : uint32 +{ + RoundRobin = 0, + Fill = 1, + ENetObjectCountLimiterMode_MAX = 2, +}; + +// ScriptStruct IrisCore.DataStreamDefinition +// 0x0020 (0x0020 - 0x0000) +struct FDataStreamDefinition final +{ +public: + class FName DataStreamName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EDataStreamSendStatus DefaultSendStatus; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bAutoCreate; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1A[0x6]; // 0x001A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FDataStreamDefinition; + +// ScriptStruct IrisCore.NetSerializerConfig +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FNetSerializerConfig +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FNetSerializerConfig; + +// ScriptStruct IrisCore.DateTimeNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FDateTimeNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FDateTimeNetSerializerConfig; + +// ScriptStruct IrisCore.EnumInt8NetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FEnumInt8NetSerializerConfig final : public FNetSerializerConfig +{ +public: + int8 LowerBound; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 UpperBound; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0012(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0xD]; // 0x0013(0x000D)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumInt8NetSerializerConfig; + +// ScriptStruct IrisCore.EnumInt16NetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FEnumInt16NetSerializerConfig final : public FNetSerializerConfig +{ +public: + int16 LowerBound; // 0x0010(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 UpperBound; // 0x0012(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0014(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0xB]; // 0x0015(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumInt16NetSerializerConfig; + +// ScriptStruct IrisCore.EnumInt32NetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FEnumInt32NetSerializerConfig final : public FNetSerializerConfig +{ +public: + int32 LowerBound; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UpperBound; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0xF]; // 0x0019(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumInt32NetSerializerConfig; + +// ScriptStruct IrisCore.EnumInt64NetSerializerConfig +// 0x0020 (0x0030 - 0x0010) +struct FEnumInt64NetSerializerConfig final : public FNetSerializerConfig +{ +public: + int64 LowerBound; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 UpperBound; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumInt64NetSerializerConfig; + +// ScriptStruct IrisCore.EnumUint8NetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FEnumUint8NetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 LowerBound; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 UpperBound; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0012(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0xD]; // 0x0013(0x000D)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumUint8NetSerializerConfig; + +// ScriptStruct IrisCore.EnumUint16NetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FEnumUint16NetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint16 LowerBound; // 0x0010(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 UpperBound; // 0x0012(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0014(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0xB]; // 0x0015(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumUint16NetSerializerConfig; + +// ScriptStruct IrisCore.EnumUint32NetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FEnumUint32NetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint32 LowerBound; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 UpperBound; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0xF]; // 0x0019(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumUint32NetSerializerConfig; + +// ScriptStruct IrisCore.EnumUint64NetSerializerConfig +// 0x0020 (0x0030 - 0x0010) +struct FEnumUint64NetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint64 LowerBound; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 UpperBound; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0xF]; // 0x0021(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FEnumUint64NetSerializerConfig; + +// ScriptStruct IrisCore.FloatNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FFloatNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FFloatNetSerializerConfig; + +// ScriptStruct IrisCore.DoubleNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FDoubleNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FDoubleNetSerializerConfig; + +// ScriptStruct IrisCore.GuidNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FGuidNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FGuidNetSerializerConfig; + +// ScriptStruct IrisCore.BitfieldNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FBitfieldNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 BitMask; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FBitfieldNetSerializerConfig; + +// ScriptStruct IrisCore.ArrayPropertyNetSerializerConfig +// 0x0030 (0x0040 - 0x0010) +struct FArrayPropertyNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint16 MaxElementCount; // 0x0010(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 ElementCountBitCount; // 0x0012(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + TFieldPath Property; // 0x0018(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_38[0x8]; // 0x0038(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FArrayPropertyNetSerializerConfig; + +// ScriptStruct IrisCore.LastResortPropertyNetSerializerConfig +// 0x0020 (0x0030 - 0x0010) +struct FLastResortPropertyNetSerializerConfig final : public FNetSerializerConfig +{ +public: + TFieldPath Property; // 0x0010(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FLastResortPropertyNetSerializerConfig; + +// ScriptStruct IrisCore.NetRoleNetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FNetRoleNetSerializerConfig final : public FNetSerializerConfig +{ +public: + int32 RelativeInternalOffsetToOtherRole; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RelativeExternalOffsetToOtherRole; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 LowerBound; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 UpperBound; // 0x0019(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x001A(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 AutonomousProxyValue; // 0x001B(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 SimulatedProxyValue; // 0x001C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1D[0xB]; // 0x001D(0x000B)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FNetRoleNetSerializerConfig; + +// ScriptStruct IrisCore.FieldPathNetSerializerConfig +// 0x0020 (0x0030 - 0x0010) +struct FFieldPathNetSerializerConfig final : public FNetSerializerConfig +{ +public: + TFieldPath Property; // 0x0010(0x0020)(HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFieldPathNetSerializerConfig; + +// ScriptStruct IrisCore.FieldPathNetSerializerSerializationHelper +// 0x0018 (0x0018 - 0x0000) +struct FFieldPathNetSerializerSerializationHelper final +{ +public: + TWeakObjectPtr Owner; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TArray PropertyPath; // 0x0008(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFieldPathNetSerializerSerializationHelper; + +// ScriptStruct IrisCore.IntNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FIntNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 BitCount; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FIntNetSerializerConfig; + +// ScriptStruct IrisCore.Int8RangeNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FInt8RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + int8 LowerBound; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 UpperBound; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0012(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInt8RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Int16RangeNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FInt16RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + int16 LowerBound; // 0x0010(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 UpperBound; // 0x0012(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0014(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInt16RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Int32RangeNetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FInt32RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + int32 LowerBound; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 UpperBound; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInt32RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Int64RangeNetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FInt64RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + int64 LowerBound; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int64 UpperBound; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInt64RangeNetSerializerConfig; + +// ScriptStruct IrisCore.IrisFastArraySerializer +// 0x0018 (0x0120 - 0x0108) +struct FIrisFastArraySerializer final : public FFastArraySerializer +{ +public: + uint8 Pad_108[0x4]; // 0x0108(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + uint32 ChangeMaskStorage[0x4]; // 0x010C(0x0004)(ZeroConstructor, Transient, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_11C[0x4]; // 0x011C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FIrisFastArraySerializer; + +// ScriptStruct IrisCore.NetBlobHandlerDefinition +// 0x0008 (0x0008 - 0x0000) +struct FNetBlobHandlerDefinition final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FNetBlobHandlerDefinition; + +// ScriptStruct IrisCore.NetObjectFilterDefinition +// 0x0018 (0x0018 - 0x0000) +struct FNetObjectFilterDefinition final +{ +public: + class FName FilterName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ConfigClassName; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FNetObjectFilterDefinition; + +// ScriptStruct IrisCore.NetObjectGridFilterProfile +// 0x000C (0x000C - 0x0000) +struct FNetObjectGridFilterProfile final +{ +public: + class FName FilterProfileName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 FrameCountBeforeCulling; // 0x0008(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_A[0x2]; // 0x000A(0x0002)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FNetObjectGridFilterProfile; + +// ScriptStruct IrisCore.NetObjectPrioritizerDefinition +// 0x0028 (0x0028 - 0x0000) +struct FNetObjectPrioritizerDefinition final +{ +public: + class FName PrioritizerName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ClassName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf Class; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName ConfigClassName; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TSubclassOf ConfigClass; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FNetObjectPrioritizerDefinition; + +// ScriptStruct IrisCore.BoolNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FBoolNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FBoolNetSerializerConfig; + +// ScriptStruct IrisCore.StructNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FStructNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FStructNetSerializerConfig; + +// ScriptStruct IrisCore.NopNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FNopNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FNopNetSerializerConfig; + +// ScriptStruct IrisCore.ObjectNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FObjectNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FObjectNetSerializerConfig; + +// ScriptStruct IrisCore.WeakObjectNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FWeakObjectNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FWeakObjectNetSerializerConfig; + +// ScriptStruct IrisCore.ScriptInterfaceNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FScriptInterfaceNetSerializerConfig final : public FNetSerializerConfig +{ +public: + TSubclassOf InterfaceClass; // 0x0010(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FScriptInterfaceNetSerializerConfig; + +// ScriptStruct IrisCore.ObjectReplicationBridgePollConfig +// 0x0010 (0x0010 - 0x0000) +struct FObjectReplicationBridgePollConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float PollFrequency; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeSubclasses; // 0x000C(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FObjectReplicationBridgePollConfig; + +// ScriptStruct IrisCore.ObjectReplicationBridgeFilterConfig +// 0x001C (0x001C - 0x0000) +struct FObjectReplicationBridgeFilterConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName DynamicFilterName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName FilterProfile; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceEnableOnAllInstances; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x3]; // 0x0019(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FObjectReplicationBridgeFilterConfig; + +// ScriptStruct IrisCore.ObjectReplicationBridgePrioritizerConfig +// 0x0014 (0x0014 - 0x0000) +struct FObjectReplicationBridgePrioritizerConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName PrioritizerName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bForceEnableOnAllInstances; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FObjectReplicationBridgePrioritizerConfig; + +// ScriptStruct IrisCore.ObjectReplicationBridgeDeltaCompressionConfig +// 0x000C (0x000C - 0x0000) +struct FObjectReplicationBridgeDeltaCompressionConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableDeltaCompression; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FObjectReplicationBridgeDeltaCompressionConfig; + +// ScriptStruct IrisCore.ObjectReplicatedBridgeCriticalClassConfig +// 0x000C (0x000C - 0x0000) +struct FObjectReplicatedBridgeCriticalClassConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDisconnectOnProtocolMismatch; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FObjectReplicatedBridgeCriticalClassConfig; + +// ScriptStruct IrisCore.ObjectReplicationBridgeTypeStatsConfig +// 0x0014 (0x0014 - 0x0000) +struct FObjectReplicationBridgeTypeStatsConfig final +{ +public: + class FName ClassName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class FName TypeStatsName; // 0x0008(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bIncludeInMinimalCSVStats; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FObjectReplicationBridgeTypeStatsConfig; + +// ScriptStruct IrisCore.PackedInt64NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FPackedInt64NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FPackedInt64NetSerializerConfig; + +// ScriptStruct IrisCore.PackedUint64NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FPackedUint64NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FPackedUint64NetSerializerConfig; + +// ScriptStruct IrisCore.PackedInt32NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FPackedInt32NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FPackedInt32NetSerializerConfig; + +// ScriptStruct IrisCore.PackedUint32NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FPackedUint32NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FPackedUint32NetSerializerConfig; + +// ScriptStruct IrisCore.VectorNetQuantizeNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVectorNetQuantizeNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVectorNetQuantizeNetSerializerConfig; + +// ScriptStruct IrisCore.VectorNetQuantize10NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVectorNetQuantize10NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVectorNetQuantize10NetSerializerConfig; + +// ScriptStruct IrisCore.VectorNetQuantize100NetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVectorNetQuantize100NetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVectorNetQuantize100NetSerializerConfig; + +// ScriptStruct IrisCore.VectorNetQuantizeNormalNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVectorNetQuantizeNormalNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVectorNetQuantizeNormalNetSerializerConfig; + +// ScriptStruct IrisCore.PolymorphicStructNetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FPolymorphicStructNetSerializerConfig : public FNetSerializerConfig +{ +public: + uint8 Pad_10[0x18]; // 0x0010(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPolymorphicStructNetSerializerConfig; + +// ScriptStruct IrisCore.PolymorphicArrayStructNetSerializerConfig +// 0x0000 (0x0028 - 0x0028) +struct FPolymorphicArrayStructNetSerializerConfig : public FPolymorphicStructNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FPolymorphicArrayStructNetSerializerConfig; + +// ScriptStruct IrisCore.UnitQuatNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FUnitQuatNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FUnitQuatNetSerializerConfig; + +// ScriptStruct IrisCore.UnitQuat4fNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FUnitQuat4fNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FUnitQuat4fNetSerializerConfig; + +// ScriptStruct IrisCore.UnitQuat4dNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FUnitQuat4dNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FUnitQuat4dNetSerializerConfig; + +// ScriptStruct IrisCore.ObjectScopeHysteresisProfile +// 0x000C (0x000C - 0x0000) +struct FObjectScopeHysteresisProfile final +{ +public: + class FName FilterProfileName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 HysteresisFrameCount; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FObjectScopeHysteresisProfile; + +// ScriptStruct IrisCore.RotatorNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRotatorNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FRotatorNetSerializerConfig; + +// ScriptStruct IrisCore.RotatorAsByteNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRotatorAsByteNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FRotatorAsByteNetSerializerConfig; + +// ScriptStruct IrisCore.RotatorAsShortNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRotatorAsShortNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FRotatorAsShortNetSerializerConfig; + +// ScriptStruct IrisCore.Rotator3fNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRotator3fNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//DUMPER7_ASSERTS_FRotator3fNetSerializerConfig; + +// ScriptStruct IrisCore.Rotator3dNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FRotator3dNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//DUMPER7_ASSERTS_FRotator3dNetSerializerConfig; + +// ScriptStruct IrisCore.SoftObjectNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FSoftObjectNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FSoftObjectNetSerializerConfig; + +// ScriptStruct IrisCore.SoftObjectPathNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FSoftObjectPathNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FSoftObjectPathNetSerializerConfig; + +// ScriptStruct IrisCore.SoftClassPathNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FSoftClassPathNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FSoftClassPathNetSerializerConfig; + +// ScriptStruct IrisCore.NameNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FNameNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FNameNetSerializerConfig; + +// ScriptStruct IrisCore.NameAsNetTokenNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FNameAsNetTokenNetSerializerConfig final : public FNetSerializerConfig +{ +}; +//DUMPER7_ASSERTS_FNameAsNetTokenNetSerializerConfig; + +// ScriptStruct IrisCore.StringNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FStringNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FStringNetSerializerConfig; + +// ScriptStruct IrisCore.UintNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FUintNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 BitCount; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_11[0x7]; // 0x0011(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUintNetSerializerConfig; + +// ScriptStruct IrisCore.Uint8RangeNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FUint8RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint8 LowerBound; // 0x0010(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 UpperBound; // 0x0011(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0012(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_13[0x5]; // 0x0013(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUint8RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Uint16RangeNetSerializerConfig +// 0x0008 (0x0018 - 0x0010) +struct FUint16RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint16 LowerBound; // 0x0010(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 UpperBound; // 0x0012(0x0002)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0014(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_15[0x3]; // 0x0015(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUint16RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Uint32RangeNetSerializerConfig +// 0x0010 (0x0020 - 0x0010) +struct FUint32RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint32 LowerBound; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint32 UpperBound; // 0x0014(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUint32RangeNetSerializerConfig; + +// ScriptStruct IrisCore.Uint64RangeNetSerializerConfig +// 0x0018 (0x0028 - 0x0010) +struct FUint64RangeNetSerializerConfig final : public FNetSerializerConfig +{ +public: + uint64 LowerBound; // 0x0010(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint64 UpperBound; // 0x0018(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 BitCount; // 0x0020(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_21[0x7]; // 0x0021(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FUint64RangeNetSerializerConfig; + +// ScriptStruct IrisCore.VectorNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVectorNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVectorNetSerializerConfig; + +// ScriptStruct IrisCore.Vector3fNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVector3fNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVector3fNetSerializerConfig; + +// ScriptStruct IrisCore.Vector3dNetSerializerConfig +// 0x0000 (0x0010 - 0x0010) +struct FVector3dNetSerializerConfig final : public FNetSerializerConfig +{ +}; +DUMPER7_ASSERTS_FVector3dNetSerializerConfig; + +// ScriptStruct IrisCore.SupportsStructNetSerializerConfig +// 0x000C (0x000C - 0x0000) +struct FSupportsStructNetSerializerConfig final +{ +public: + class FName StructName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bCanUseStructNetSerializer; // 0x0008(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FSupportsStructNetSerializerConfig; + +// ScriptStruct IrisCore.InstancedStructNetSerializerConfig +// 0x0158 (0x0168 - 0x0010) +struct FInstancedStructNetSerializerConfig final : public FNetSerializerConfig +{ +public: + TArray> SupportedTypes; // 0x0010(0x0010)(ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic) + uint8 Pad_20[0x148]; // 0x0020(0x0148)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FInstancedStructNetSerializerConfig; + +} + diff --git a/TormentedSouls2/SDK/MeshDescription_classes.hpp b/TormentedSouls2/SDK/MeshDescription_classes.hpp new file mode 100644 index 0000000..3de78a1 --- /dev/null +++ b/TormentedSouls2/SDK/MeshDescription_classes.hpp @@ -0,0 +1,157 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: MeshDescription + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class MeshDescription.MeshDescriptionBase +// 0x02C8 (0x02F0 - 0x0028) +class UMeshDescriptionBase : public UObject +{ +public: + uint8 Pad_28[0x2C8]; // 0x0028(0x02C8)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + void ComputePolygonTriangulation(const struct FPolygonID& PolygonID); + struct FEdgeID CreateEdge(const struct FVertexID& VertexID0, const struct FVertexID& VertexID1); + void CreateEdgeWithID(const struct FEdgeID& EdgeID, const struct FVertexID& VertexID0, const struct FVertexID& VertexID1); + struct FPolygonID CreatePolygon(const struct FPolygonGroupID& PolygonGroupID, TArray* VertexInstanceIDs, TArray* NewEdgeIDs); + struct FPolygonGroupID CreatePolygonGroup(); + void CreatePolygonGroupWithID(const struct FPolygonGroupID& PolygonGroupID); + void CreatePolygonWithID(const struct FPolygonID& PolygonID, const struct FPolygonGroupID& PolygonGroupID, TArray* VertexInstanceIDs, TArray* NewEdgeIDs); + struct FTriangleID CreateTriangle(const struct FPolygonGroupID& PolygonGroupID, const TArray& VertexInstanceIDs, TArray* NewEdgeIDs); + void CreateTriangleWithID(const struct FTriangleID& TriangleID, const struct FPolygonGroupID& PolygonGroupID, const TArray& VertexInstanceIDs, TArray* NewEdgeIDs); + struct FVertexID CreateVertex(); + struct FVertexInstanceID CreateVertexInstance(const struct FVertexID& VertexID); + void CreateVertexInstanceWithID(const struct FVertexInstanceID& VertexInstanceID, const struct FVertexID& VertexID); + void CreateVertexWithID(const struct FVertexID& VertexID); + void DeleteEdge(const struct FEdgeID& EdgeID, TArray* OrphanedVertices); + void DeletePolygon(const struct FPolygonID& PolygonID, TArray* OrphanedEdges, TArray* OrphanedVertexInstances, TArray* OrphanedPolygonGroups); + void DeletePolygonGroup(const struct FPolygonGroupID& PolygonGroupID); + void DeleteTriangle(const struct FTriangleID& TriangleID, TArray* OrphanedEdges, TArray* OrphanedVertexInstances, TArray* OrphanedPolygonGroupsPtr); + void DeleteVertex(const struct FVertexID& VertexID); + void DeleteVertexInstance(const struct FVertexInstanceID& VertexInstanceID, TArray* OrphanedVertices); + void Empty(); + void ReserveNewEdges(int32 NumberOfNewEdges); + void ReserveNewPolygonGroups(int32 NumberOfNewPolygonGroups); + void ReserveNewPolygons(const int32 NumberOfNewPolygons); + void ReserveNewTriangles(int32 NumberOfNewTriangles); + void ReserveNewVertexInstances(int32 NumberOfNewVertexInstances); + void ReserveNewVertices(int32 NumberOfNewVertices); + void ReversePolygonFacing(const struct FPolygonID& PolygonID); + void SetPolygonPolygonGroup(const struct FPolygonID& PolygonID, const struct FPolygonGroupID& PolygonGroupID); + void SetPolygonVertexInstances(const struct FPolygonID& PolygonID, const TArray& VertexInstanceIDs); + void SetVertexPosition(const struct FVertexID& VertexID, const struct FVector& position); + + void GetEdgeConnectedPolygons(const struct FEdgeID& EdgeID, TArray* OutConnectedPolygonIDs) const; + void GetEdgeConnectedTriangles(const struct FEdgeID& EdgeID, TArray* OutConnectedTriangleIDs) const; + int32 GetEdgeCount() const; + struct FVertexID GetEdgeVertex(const struct FEdgeID& EdgeID, int32 VertexNumber) const; + void GetEdgeVertices(const struct FEdgeID& EdgeID, TArray* OutVertexIDs) const; + int32 GetNumEdgeConnectedPolygons(const struct FEdgeID& EdgeID) const; + int32 GetNumEdgeConnectedTriangles(const struct FEdgeID& EdgeID) const; + int32 GetNumPolygonGroupPolygons(const struct FPolygonGroupID& PolygonGroupID) const; + int32 GetNumPolygonInternalEdges(const struct FPolygonID& PolygonID) const; + int32 GetNumPolygonTriangles(const struct FPolygonID& PolygonID) const; + int32 GetNumPolygonVertices(const struct FPolygonID& PolygonID) const; + int32 GetNumVertexConnectedEdges(const struct FVertexID& VertexID) const; + int32 GetNumVertexConnectedPolygons(const struct FVertexID& VertexID) const; + int32 GetNumVertexConnectedTriangles(const struct FVertexID& VertexID) const; + int32 GetNumVertexInstanceConnectedPolygons(const struct FVertexInstanceID& VertexInstanceID) const; + int32 GetNumVertexInstanceConnectedTriangles(const struct FVertexInstanceID& VertexInstanceID) const; + int32 GetNumVertexVertexInstances(const struct FVertexID& VertexID) const; + void GetPolygonAdjacentPolygons(const struct FPolygonID& PolygonID, TArray* OutPolygonIDs) const; + int32 GetPolygonCount() const; + int32 GetPolygonGroupCount() const; + void GetPolygonGroupPolygons(const struct FPolygonGroupID& PolygonGroupID, TArray* OutPolygonIDs) const; + void GetPolygonInternalEdges(const struct FPolygonID& PolygonID, TArray* OutEdgeIDs) const; + void GetPolygonPerimeterEdges(const struct FPolygonID& PolygonID, TArray* OutEdgeIDs) const; + struct FPolygonGroupID GetPolygonPolygonGroup(const struct FPolygonID& PolygonID) const; + void GetPolygonTriangles(const struct FPolygonID& PolygonID, TArray* OutTriangleIDs) const; + void GetPolygonVertexInstances(const struct FPolygonID& PolygonID, TArray* OutVertexInstanceIDs) const; + void GetPolygonVertices(const struct FPolygonID& PolygonID, TArray* OutVertexIDs) const; + void GetTriangleAdjacentTriangles(const struct FTriangleID& TriangleID, TArray* OutTriangleIDs) const; + int32 GetTriangleCount() const; + void GetTriangleEdges(const struct FTriangleID& TriangleID, TArray* OutEdgeIDs) const; + struct FPolygonID GetTrianglePolygon(const struct FTriangleID& TriangleID) const; + struct FPolygonGroupID GetTrianglePolygonGroup(const struct FTriangleID& TriangleID) const; + struct FVertexInstanceID GetTriangleVertexInstance(const struct FTriangleID& TriangleID, int32 Index_0) const; + void GetTriangleVertexInstances(const struct FTriangleID& TriangleID, TArray* OutVertexInstanceIDs) const; + void GetTriangleVertices(const struct FTriangleID& TriangleID, TArray* OutVertexIDs) const; + void GetVertexAdjacentVertices(const struct FVertexID& VertexID, TArray* OutAdjacentVertexIDs) const; + void GetVertexConnectedEdges(const struct FVertexID& VertexID, TArray* OutEdgeIDs) const; + void GetVertexConnectedPolygons(const struct FVertexID& VertexID, TArray* OutConnectedPolygonIDs) const; + void GetVertexConnectedTriangles(const struct FVertexID& VertexID, TArray* OutConnectedTriangleIDs) const; + int32 GetVertexCount() const; + void GetVertexInstanceConnectedPolygons(const struct FVertexInstanceID& VertexInstanceID, TArray* OutConnectedPolygonIDs) const; + void GetVertexInstanceConnectedTriangles(const struct FVertexInstanceID& VertexInstanceID, TArray* OutConnectedTriangleIDs) const; + int32 GetVertexInstanceCount() const; + struct FVertexInstanceID GetVertexInstanceForPolygonVertex(const struct FPolygonID& PolygonID, const struct FVertexID& VertexID) const; + struct FVertexInstanceID GetVertexInstanceForTriangleVertex(const struct FTriangleID& TriangleID, const struct FVertexID& VertexID) const; + struct FEdgeID GetVertexInstancePairEdge(const struct FVertexInstanceID& VertexInstanceID0, const struct FVertexInstanceID& VertexInstanceID1) const; + struct FVertexID GetVertexInstanceVertex(const struct FVertexInstanceID& VertexInstanceID) const; + struct FEdgeID GetVertexPairEdge(const struct FVertexID& VertexID0, const struct FVertexID& VertexID1) const; + struct FVector GetVertexPosition(const struct FVertexID& VertexID) const; + void GetVertexVertexInstances(const struct FVertexID& VertexID, TArray* OutVertexInstanceIDs) const; + bool IsEdgeInternal(const struct FEdgeID& EdgeID) const; + bool IsEdgeInternalToPolygon(const struct FEdgeID& EdgeID, const struct FPolygonID& PolygonID) const; + bool IsEdgeValid(const struct FEdgeID& EdgeID) const; + bool IsEmpty() const; + bool IsPolygonGroupValid(const struct FPolygonGroupID& PolygonGroupID) const; + bool IsPolygonValid(const struct FPolygonID& PolygonID) const; + bool IsTrianglePartOfNgon(const struct FTriangleID& TriangleID) const; + bool IsTriangleValid(const struct FTriangleID& TriangleID) const; + bool IsVertexInstanceValid(const struct FVertexInstanceID& VertexInstanceID) const; + bool IsVertexOrphaned(const struct FVertexID& VertexID) const; + bool IsVertexValid(const struct FVertexID& VertexID) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDescriptionBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDescriptionBase") + } + static class UMeshDescriptionBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMeshDescriptionBase; + +// Class MeshDescription.MeshDescriptionBaseBulkData +// 0x0000 (0x0028 - 0x0028) +class UMeshDescriptionBaseBulkData : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("MeshDescriptionBaseBulkData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"MeshDescriptionBaseBulkData") + } + static class UMeshDescriptionBaseBulkData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UMeshDescriptionBaseBulkData; + +} + diff --git a/TormentedSouls2/SDK/NetCore_classes.hpp b/TormentedSouls2/SDK/NetCore_classes.hpp new file mode 100644 index 0000000..3a7569a --- /dev/null +++ b/TormentedSouls2/SDK/NetCore_classes.hpp @@ -0,0 +1,94 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: NetCore + +#include "Basic.hpp" + +#include "NetCore_structs.hpp" +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class NetCore.NetAnalyticsAggregatorConfig +// 0x0010 (0x0038 - 0x0028) +class UNetAnalyticsAggregatorConfig final : public UObject +{ +public: + TArray NetAnalyticsData; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("NetAnalyticsAggregatorConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"NetAnalyticsAggregatorConfig") + } + static class UNetAnalyticsAggregatorConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UNetAnalyticsAggregatorConfig; + +// Class NetCore.StatePerObjectConfig +// 0x0040 (0x0068 - 0x0028) +class UStatePerObjectConfig : public UObject +{ +public: + uint8 Pad_28[0x28]; // 0x0028(0x0028)(Fixing Size After Last Property [ Dumper-7 ]) + class FString PerObjectConfigSection; // 0x0050(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + bool bEnabled; // 0x0060(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x7]; // 0x0061(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("StatePerObjectConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"StatePerObjectConfig") + } + static class UStatePerObjectConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UStatePerObjectConfig; + +// Class NetCore.EscalationManagerConfig +// 0x0020 (0x0088 - 0x0068) +class UEscalationManagerConfig : public UStatePerObjectConfig +{ +public: + TArray EscalationSeverity; // 0x0068(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + uint8 Pad_78[0x10]; // 0x0078(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EscalationManagerConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EscalationManagerConfig") + } + static class UEscalationManagerConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEscalationManagerConfig; + +} + diff --git a/TormentedSouls2/SDK/NetCore_structs.hpp b/TormentedSouls2/SDK/NetCore_structs.hpp new file mode 100644 index 0000000..7c5c8a2 --- /dev/null +++ b/TormentedSouls2/SDK/NetCore_structs.hpp @@ -0,0 +1,254 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: NetCore + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum NetCore.ENetworkFailure +// NumValues: 0x000C +enum class ENetworkFailure : uint8 +{ + NetDriverAlreadyExists = 0, + NetDriverCreateFailure = 1, + NetDriverListenFailure = 2, + ConnectionLost = 3, + ConnectionTimeout = 4, + FailureReceived = 5, + OutdatedClient = 6, + OutdatedServer = 7, + PendingConnectionFailure = 8, + NetGuidMismatch = 9, + NetChecksumMismatch = 10, + ENetworkFailure_MAX = 11, +}; + +// Enum NetCore.EReplicationSystem +// NumValues: 0x0004 +enum class EReplicationSystem : uint8 +{ + Default = 0, + Generic = 1, + Iris = 2, + EReplicationSystem_MAX = 3, +}; + +// Enum NetCore.ENetCloseResult +// NumValues: 0x0072 +enum class ENetCloseResult : uint8 +{ + NetDriverAlreadyExists = 0, + NetDriverCreateFailure = 1, + NetDriverListenFailure = 2, + ConnectionLost = 3, + ConnectionTimeout = 4, + FailureReceived = 5, + OutdatedClient = 6, + OutdatedServer = 7, + PendingConnectionFailure = 8, + NetGuidMismatch = 9, + NetChecksumMismatch = 10, + SecurityMalformedPacket = 11, + SecurityInvalidData = 12, + SecurityClosed = 13, + Unknown = 14, + Success = 15, + Extended = 16, + HostClosedConnection = 17, + Disconnect = 18, + Upgrade = 19, + PreLoginFailure = 20, + JoinFailure = 21, + JoinSplitFailure = 22, + AddressResolutionFailed = 23, + RPCDoS = 24, + Cleanup = 25, + MissingLevelPackage = 26, + PacketHandlerIncomingError = 27, + ZeroLastByte = 28, + ZeroSize = 29, + ReadHeaderFail = 30, + ReadHeaderExtraFail = 31, + AckSequenceMismatch = 32, + BunchBadChannelIndex = 33, + BunchChannelNameFail = 34, + BunchWrongChannelType = 35, + BunchHeaderOverflow = 36, + BunchDataOverflow = 37, + BunchServerPackageMapExports = 38, + BunchPrematureControlChannel = 39, + BunchPrematureChannel = 40, + BunchPrematureControlClose = 41, + UnknownChannelType = 42, + PrematureSend = 43, + CorruptData = 44, + SocketSendFailure = 45, + BadChildConnectionIndex = 46, + LogLimitInstant = 47, + LogLimitSustained = 48, + EncryptionFailure = 49, + EncryptionTokenMissing = 50, + ReceivedNetGUIDBunchFail = 51, + ReceivedNetExtBunchFail = 52, + MaxReliableExceeded = 53, + ReceivedNextBunchFail = 54, + ReceivedNextBunchQueueFail = 55, + PartialInitialReliableDestroy = 56, + PartialMergeReliableDestroy = 57, + PartialInitialNonByteAligned = 58, + PartialNonByteAligned = 59, + PartialFinalPackageMapExports = 60, + PartialTooLarge = 61, + AlreadyOpen = 62, + ReliableBeforeOpen = 63, + ReliableBufferOverflow = 64, + RPCReliableBufferOverflow = 65, + ControlChannelClose = 66, + ControlChannelEndianCheck = 67, + ControlChannelPlayerChannelFail = 68, + ControlChannelMessageUnknown = 69, + ControlChannelMessageFail = 70, + ControlChannelMessagePayloadFail = 71, + ControlChannelBunchOverflowed = 72, + ControlChannelQueueBunchOverflowed = 73, + ClientHasMustBeMappedGUIDs = 74, + ClientSentDestructionInfo = 75, + UnregisteredMustBeMappedGUID = 76, + ObjectReplicatorReceivedBunchFail = 77, + ContentBlockFail = 78, + ContentBlockHeaderRepLayoutFail = 79, + ContentBlockHeaderIsActorFail = 80, + ContentBlockHeaderObjFail = 81, + ContentBlockHeaderPrematureEnd = 82, + ContentBlockHeaderSubObjectActor = 83, + ContentBlockHeaderBadParent = 84, + ContentBlockHeaderInvalidCreate = 85, + ContentBlockHeaderStablyNamedFail = 86, + ContentBlockHeaderNoSubObjectClass = 87, + ContentBlockHeaderUObjectSubObject = 88, + ContentBlockHeaderAActorSubObject = 89, + ContentBlockHeaderFail = 90, + ContentBlockPayloadBitsFail = 91, + FieldHeaderRepIndex = 92, + FieldHeaderBadRepIndex = 93, + FieldHeaderPayloadBitsFail = 94, + FieldPayloadFail = 95, + ReplicationChannelCountMaxedOut = 96, + BeaconControlFlowError = 97, + BeaconUnableToParsePacket = 98, + BeaconAuthenticationFailure = 99, + BeaconLoginInvalidIdError = 100, + BeaconLoginInvalidAuthHandlerError = 101, + BeaconAuthError = 102, + BeaconSpawnClientWorldPackageNameError = 103, + BeaconSpawnExistingActorError = 104, + BeaconSpawnFailureError = 105, + BeaconSpawnNetGUIDAckNoActor = 106, + BeaconSpawnNetGUIDAckNoHost = 107, + BeaconSpawnUnexpectedError = 108, + IrisProtocolMismatch = 109, + IrisNetRefHandleError = 110, + FaultDisconnect = 111, + NotRecoverable = 112, + ENetCloseResult_MAX = 113, +}; + +// Enum NetCore.EFastArraySerializerDeltaFlags +// NumValues: 0x0005 +enum class EFastArraySerializerDeltaFlags : uint8 +{ + None = 0, + HasBeenSerialized = 1, + HasDeltaBeenRequested = 2, + IsUsingDeltaSerialization = 4, + EFastArraySerializerDeltaFlags_MAX = 5, +}; + +// ScriptStruct NetCore.NetAnalyticsDataConfig +// 0x000C (0x000C - 0x0000) +struct FNetAnalyticsDataConfig final +{ +public: + class FName DataName; // 0x0000(0x0008)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnabled; // 0x0008(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FNetAnalyticsDataConfig; + +// ScriptStruct NetCore.StateStruct +// 0x0018 (0x0018 - 0x0000) +struct FStateStruct +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + class FString StateName; // 0x0008(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FStateStruct; + +// ScriptStruct NetCore.EscalationState +// 0x0018 (0x0030 - 0x0018) +struct FEscalationState : public FStateStruct +{ +public: + bool bLogEscalate; // 0x0018(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDormant; // 0x0019(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 CooloffTime; // 0x001A(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int16 AutoEscalateTime; // 0x001C(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 HighestTimePeriod; // 0x001E(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_1F[0x1]; // 0x001F(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + TArray AllTimePeriods; // 0x0020(0x0010)(ZeroConstructor, Protected, NativeAccessSpecifierProtected) +}; +DUMPER7_ASSERTS_FEscalationState; + +// ScriptStruct NetCore.NetFaultState +// 0x0010 (0x0040 - 0x0030) +struct FNetFaultState final : public FEscalationState +{ +public: + bool bCloseConnection; // 0x0030(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_31[0x1]; // 0x0031(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int16 EscalateQuotaFaultsPerPeriod; // 0x0032(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 EscalateQuotaFaultPercentPerPeriod; // 0x0034(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_35[0x1]; // 0x0035(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + int16 DescalateQuotaFaultsPerPeriod; // 0x0036(0x0002)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 DescalateQuotaFaultPercentPerPeriod; // 0x0038(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int8 EscalateQuotaTimePeriod; // 0x0039(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FNetFaultState; + +// ScriptStruct NetCore.FastArraySerializerItem +// 0x000C (0x000C - 0x0000) +struct FFastArraySerializerItem +{ +public: + int32 ReplicationID; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 ReplicationKey; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 MostRecentArrayReplicationKey; // 0x0008(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FFastArraySerializerItem; + +// ScriptStruct NetCore.FastArraySerializer +// 0x0108 (0x0108 - 0x0000) +struct alignas(0x08) FFastArraySerializer +{ +public: + uint8 Pad_0[0x54]; // 0x0000(0x0054)(Fixing Size After Last Property [ Dumper-7 ]) + int32 ArrayReplicationKey; // 0x0054(0x0004)(ZeroConstructor, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_58[0xA8]; // 0x0058(0x00A8)(Fixing Size After Last Property [ Dumper-7 ]) + EFastArraySerializerDeltaFlags DeltaFlags; // 0x0100(0x0001)(ZeroConstructor, Transient, IsPlainOldData, RepSkip, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_101[0x7]; // 0x0101(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FFastArraySerializer; + +} + diff --git a/TormentedSouls2/SDK/PacketHandler_classes.hpp b/TormentedSouls2/SDK/PacketHandler_classes.hpp new file mode 100644 index 0000000..6e8ef86 --- /dev/null +++ b/TormentedSouls2/SDK/PacketHandler_classes.hpp @@ -0,0 +1,63 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: PacketHandler + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class PacketHandler.HandlerComponentFactory +// 0x0000 (0x0028 - 0x0028) +class UHandlerComponentFactory : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("HandlerComponentFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"HandlerComponentFactory") + } + static class UHandlerComponentFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UHandlerComponentFactory; + +// Class PacketHandler.PacketHandlerProfileConfig +// 0x0010 (0x0038 - 0x0028) +class UPacketHandlerProfileConfig final : public UObject +{ +public: + TArray Components; // 0x0028(0x0010)(ZeroConstructor, Config, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PacketHandlerProfileConfig") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PacketHandlerProfileConfig") + } + static class UPacketHandlerProfileConfig* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UPacketHandlerProfileConfig; + +} + diff --git a/TormentedSouls2/SDK/PhysicsCore_classes.hpp b/TormentedSouls2/SDK/PhysicsCore_classes.hpp new file mode 100644 index 0000000..a46fdf9 --- /dev/null +++ b/TormentedSouls2/SDK/PhysicsCore_classes.hpp @@ -0,0 +1,199 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: PhysicsCore + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" +#include "DeveloperSettings_classes.hpp" +#include "PhysicsCore_structs.hpp" +#include "Chaos_structs.hpp" + + +namespace SDK +{ + +// Class PhysicsCore.PhysicalMaterialPropertyBase +// 0x0000 (0x0028 - 0x0028) +class UPhysicalMaterialPropertyBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicalMaterialPropertyBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicalMaterialPropertyBase") + } + static class UPhysicalMaterialPropertyBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicalMaterialPropertyBase; + +// Class PhysicsCore.BodySetupCore +// 0x0010 (0x0038 - 0x0028) +class UBodySetupCore : public UObject +{ +public: + class FName BoneName; // 0x0028(0x0008)(Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicsType PhysicsType; // 0x0030(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionTraceFlag CollisionTraceFlag; // 0x0031(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EBodyCollisionResponse CollisionReponse; // 0x0032(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_33[0x5]; // 0x0033(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("BodySetupCore") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"BodySetupCore") + } + static class UBodySetupCore* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UBodySetupCore; + +// Class PhysicsCore.ChaosPhysicalMaterial +// 0x0020 (0x0048 - 0x0028) +class UChaosPhysicalMaterial final : public UObject +{ +public: + float Friction; // 0x0028(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StaticFriction; // 0x002C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Restitution; // 0x0030(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float LinearEtherDrag; // 0x0034(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float AngularEtherDrag; // 0x0038(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SleepingLinearVelocityThreshold; // 0x003C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SleepingAngularVelocityThreshold; // 0x0040(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_44[0x4]; // 0x0044(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ChaosPhysicalMaterial") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ChaosPhysicalMaterial") + } + static class UChaosPhysicalMaterial* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UChaosPhysicalMaterial; + +// Class PhysicsCore.PhysicalMaterial +// 0x0070 (0x0098 - 0x0028) +class UPhysicalMaterial final : public UObject +{ +public: + float Friction; // 0x0028(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float StaticFriction; // 0x002C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFrictionCombineMode FrictionCombineMode; // 0x0030(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideFrictionCombineMode; // 0x0031(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_32[0x2]; // 0x0032(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Restitution; // 0x0034(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFrictionCombineMode RestitutionCombineMode; // 0x0038(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bOverrideRestitutionCombineMode; // 0x0039(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x2]; // 0x003A(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float Density; // 0x003C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SleepLinearVelocityThreshold; // 0x0040(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SleepAngularVelocityThreshold; // 0x0044(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SleepCounterThreshold; // 0x0048(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float RaiseMassToPower; // 0x004C(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DestructibleDamageThresholdScale; // 0x0050(0x0004)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x4]; // 0x0054(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UPhysicalMaterialPropertyBase* PhysicalMaterialProperty; // 0x0058(0x0008)(ZeroConstructor, Deprecated, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicalSurface SurfaceType; // 0x0060(0x0001)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_61[0x3]; // 0x0061(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + struct FPhysicalMaterialStrength Strength; // 0x0064(0x000C)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPublic) + struct FPhysicalMaterialDamageModifier DamageModifier; // 0x0070(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, NativeAccessSpecifierPublic) + bool bShowExperimentalProperties; // 0x0074(0x0001)(Edit, ZeroConstructor, Transient, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EPhysicalMaterialSoftCollisionMode SoftCollisionMode; // 0x0075(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_76[0x2]; // 0x0076(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float SoftCollisionThickness; // 0x0078(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float BaseFrictionImpulse; // 0x007C(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_80[0x18]; // 0x0080(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicalMaterial") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicalMaterial") + } + static class UPhysicalMaterial* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicalMaterial; + +// Class PhysicsCore.PhysicsSettingsCore +// 0x00B0 (0x00E8 - 0x0038) +class UPhysicsSettingsCore : public UDeveloperSettings +{ +public: + float DefaultGravityZ; // 0x0038(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultTerminalVelocity; // 0x003C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float DefaultFluidFriction; // 0x0040(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SimulateScratchMemorySize; // 0x0044(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 RagdollAggregateThreshold; // 0x0048(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float TriangleMeshTriangleMinAreaThreshold; // 0x004C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableEnhancedDeterminism; // 0x0050(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableShapeSharing; // 0x0051(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnablePCM; // 0x0052(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnableStabilization; // 0x0053(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bWarnMissingLocks; // 0x0054(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bEnable2DPhysics; // 0x0055(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bDefaultHasComplexCollision; // 0x0056(0x0001)(ZeroConstructor, Config, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_57[0x1]; // 0x0057(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float BounceThresholdVelocity; // 0x0058(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFrictionCombineMode FrictionCombineMode; // 0x005C(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + EFrictionCombineMode RestitutionCombineMode; // 0x005D(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5E[0x2]; // 0x005E(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + float MaxAngularVelocity; // 0x0060(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxDepenetrationVelocity; // 0x0064(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ContactOffsetMultiplier; // 0x0068(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MinContactOffset; // 0x006C(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float MaxContactOffset; // 0x0070(0x0004)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSimulateSkeletalMeshOnDedicatedServer; // 0x0074(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ECollisionTraceFlag DefaultShapeComplexity; // 0x0075(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_76[0x2]; // 0x0076(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + struct FChaosSolverConfiguration SolverOptions; // 0x0078(0x006C)(Edit, Config, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_E4[0x4]; // 0x00E4(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("PhysicsSettingsCore") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"PhysicsSettingsCore") + } + static class UPhysicsSettingsCore* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +//_UPhysicsSettingsCore; + +} + diff --git a/TormentedSouls2/SDK/PhysicsCore_structs.hpp b/TormentedSouls2/SDK/PhysicsCore_structs.hpp new file mode 100644 index 0000000..9830326 --- /dev/null +++ b/TormentedSouls2/SDK/PhysicsCore_structs.hpp @@ -0,0 +1,235 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: PhysicsCore + +#include "Basic.hpp" + + +namespace SDK +{ + +// Enum PhysicsCore.ECollisionTraceFlag +// NumValues: 0x0005 +enum class ECollisionTraceFlag : uint8 +{ + CTF_UseDefault = 0, + CTF_UseSimpleAndComplex = 1, + CTF_UseSimpleAsComplex = 2, + CTF_UseComplexAsSimple = 3, + CTF_MAX = 4, +}; + +// Enum PhysicsCore.EPhysicsType +// NumValues: 0x0004 +enum class EPhysicsType : uint8 +{ + PhysType_Default = 0, + PhysType_Kinematic = 1, + PhysType_Simulated = 2, + PhysType_MAX = 3, +}; + +// Enum PhysicsCore.EBodyCollisionResponse +// NumValues: 0x0003 +enum class EBodyCollisionResponse : uint8 +{ + BodyCollision_Enabled = 0, + BodyCollision_Disabled = 1, + BodyCollision_MAX = 2, +}; + +// Enum PhysicsCore.EPhysicalSurface +// NumValues: 0x0041 +enum class EPhysicalSurface : uint8 +{ + SurfaceType_Default = 0, + SurfaceType1 = 1, + SurfaceType2 = 2, + SurfaceType3 = 3, + SurfaceType4 = 4, + SurfaceType5 = 5, + SurfaceType6 = 6, + SurfaceType7 = 7, + SurfaceType8 = 8, + SurfaceType9 = 9, + SurfaceType10 = 10, + SurfaceType11 = 11, + SurfaceType12 = 12, + SurfaceType13 = 13, + SurfaceType14 = 14, + SurfaceType15 = 15, + SurfaceType16 = 16, + SurfaceType17 = 17, + SurfaceType18 = 18, + SurfaceType19 = 19, + SurfaceType20 = 20, + SurfaceType21 = 21, + SurfaceType22 = 22, + SurfaceType23 = 23, + SurfaceType24 = 24, + SurfaceType25 = 25, + SurfaceType26 = 26, + SurfaceType27 = 27, + SurfaceType28 = 28, + SurfaceType29 = 29, + SurfaceType30 = 30, + SurfaceType31 = 31, + SurfaceType32 = 32, + SurfaceType33 = 33, + SurfaceType34 = 34, + SurfaceType35 = 35, + SurfaceType36 = 36, + SurfaceType37 = 37, + SurfaceType38 = 38, + SurfaceType39 = 39, + SurfaceType40 = 40, + SurfaceType41 = 41, + SurfaceType42 = 42, + SurfaceType43 = 43, + SurfaceType44 = 44, + SurfaceType45 = 45, + SurfaceType46 = 46, + SurfaceType47 = 47, + SurfaceType48 = 48, + SurfaceType49 = 49, + SurfaceType50 = 50, + SurfaceType51 = 51, + SurfaceType52 = 52, + SurfaceType53 = 53, + SurfaceType54 = 54, + SurfaceType55 = 55, + SurfaceType56 = 56, + SurfaceType57 = 57, + SurfaceType58 = 58, + SurfaceType59 = 59, + SurfaceType60 = 60, + SurfaceType61 = 61, + SurfaceType62 = 62, + SurfaceType_Max = 63, + EPhysicalSurface_MAX = 64, +}; + +// Enum PhysicsCore.ERadialImpulseFalloff +// NumValues: 0x0003 +enum class ERadialImpulseFalloff : uint8 +{ + RIF_Constant = 0, + RIF_Linear = 1, + RIF_MAX = 2, +}; + +// Enum PhysicsCore.ESleepFamily +// NumValues: 0x0004 +enum class ESleepFamily : uint8 +{ + Normal = 0, + Sensitive = 1, + Custom = 2, + ESleepFamily_MAX = 3, +}; + +// Enum PhysicsCore.EAngularConstraintMotion +// NumValues: 0x0004 +enum class EAngularConstraintMotion : uint8 +{ + ACM_Free = 0, + ACM_Limited = 1, + ACM_Locked = 2, + ACM_MAX = 3, +}; + +// Enum PhysicsCore.EConstraintFrame +// NumValues: 0x0003 +enum class EConstraintFrame : uint8 +{ + Frame1 = 0, + Frame2 = 1, + EConstraintFrame_MAX = 2, +}; + +// Enum PhysicsCore.EConstraintPlasticityType +// NumValues: 0x0004 +enum class EConstraintPlasticityType : uint8 +{ + CCPT_Free = 0, + CCPT_Shrink = 1, + CCPT_Grow = 2, + CCPT_MAX = 3, +}; + +// Enum PhysicsCore.ELinearConstraintMotion +// NumValues: 0x0004 +enum class ELinearConstraintMotion : uint8 +{ + LCM_Free = 0, + LCM_Limited = 1, + LCM_Locked = 2, + LCM_MAX = 3, +}; + +// Enum PhysicsCore.EFrictionCombineMode +// NumValues: 0x0004 +enum class EFrictionCombineMode : uint8 +{ + Average = 0, + Min = 1, + Multiply = 2, + Max = 3, +}; + +// Enum PhysicsCore.EPhysicalMaterialSoftCollisionMode +// NumValues: 0x0004 +enum class EPhysicalMaterialSoftCollisionMode : uint8 +{ + None = 0, + RelativeThickness = 1, + AbsoluteThickess = 2, + EPhysicalMaterialSoftCollisionMode_MAX = 3, +}; + +// ScriptStruct PhysicsCore.BodyInstanceCore +// 0x000C (0x000C - 0x0000) +struct alignas(0x04) FBodyInstanceCore +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + uint8 bSimulatePhysics : 1; // 0x0008(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bOverrideMass : 1; // 0x0008(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bEnableGravity : 1; // 0x0008(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateKinematicFromSimulation : 1; // 0x0008(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAutoWeld : 1; // 0x0008(0x0001)(BitIndex: 0x04, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bStartAwake : 1; // 0x0008(0x0001)(BitIndex: 0x05, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bGenerateWakeEvents : 1; // 0x0008(0x0001)(BitIndex: 0x06, PropSize: 0x0001 (Edit, BlueprintVisible, BlueprintReadOnly, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bUpdateMassWhenScaleChanges : 1; // 0x0008(0x0001)(BitIndex: 0x07, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_9[0x3]; // 0x0009(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FBodyInstanceCore; + +// ScriptStruct PhysicsCore.PhysicalMaterialStrength +// 0x000C (0x000C - 0x0000) +struct FPhysicalMaterialStrength final +{ +public: + float TensileStrength; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float CompressionStrength; // 0x0004(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ShearStrength; // 0x0008(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FPhysicalMaterialStrength; + +// ScriptStruct PhysicsCore.PhysicalMaterialDamageModifier +// 0x0004 (0x0004 - 0x0000) +struct FPhysicalMaterialDamageModifier final +{ +public: + float DamageThresholdMultiplier; // 0x0000(0x0004)(Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FPhysicalMaterialDamageModifier; + +} + diff --git a/TormentedSouls2/SDK/SlateCore_classes.hpp b/TormentedSouls2/SDK/SlateCore_classes.hpp new file mode 100644 index 0000000..b4c0496 --- /dev/null +++ b/TormentedSouls2/SDK/SlateCore_classes.hpp @@ -0,0 +1,222 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: SlateCore + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" +#include "CoreUObject_classes.hpp" +#include "SlateCore_structs.hpp" + + +namespace SDK +{ + +// Class SlateCore.SlateWidgetStyleAsset +// 0x0008 (0x0030 - 0x0028) +class USlateWidgetStyleAsset final : public UObject +{ +public: + class USlateWidgetStyleContainerBase* CustomStyle; // 0x0028(0x0008)(Edit, ExportObject, ZeroConstructor, InstancedReference, NoDestructor, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateWidgetStyleAsset") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateWidgetStyleAsset") + } + static class USlateWidgetStyleAsset* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USlateWidgetStyleAsset; + +// Class SlateCore.FontBulkData +// 0x0050 (0x0078 - 0x0028) +class UFontBulkData final : public UObject +{ +public: + uint8 Pad_28[0x50]; // 0x0028(0x0050)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FontBulkData") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FontBulkData") + } + static class UFontBulkData* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UFontBulkData; + +// Class SlateCore.FontFaceInterface +// 0x0000 (0x0000 - 0x0000) +class IFontFaceInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FontFaceInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FontFaceInterface") + } + static class IFontFaceInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_IFontFaceInterface; + +// Class SlateCore.FontProviderInterface +// 0x0000 (0x0000 - 0x0000) +class IFontProviderInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("FontProviderInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"FontProviderInterface") + } + static class IFontProviderInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_IFontProviderInterface; + +// Class SlateCore.SlateTypes +// 0x0000 (0x0028 - 0x0028) +class USlateTypes final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateTypes") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateTypes") + } + static class USlateTypes* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USlateTypes; + +// Class SlateCore.SlateWidgetStyleContainerBase +// 0x0008 (0x0030 - 0x0028) +class USlateWidgetStyleContainerBase : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateWidgetStyleContainerBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateWidgetStyleContainerBase") + } + static class USlateWidgetStyleContainerBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USlateWidgetStyleContainerBase; + +// Class SlateCore.SlateWidgetStyleContainerInterface +// 0x0000 (0x0000 - 0x0000) +class ISlateWidgetStyleContainerInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateWidgetStyleContainerInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateWidgetStyleContainerInterface") + } + static class ISlateWidgetStyleContainerInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_ISlateWidgetStyleContainerInterface; + +// Class SlateCore.SlateThemeManager +// 0x07B0 (0x07D8 - 0x0028) +class USlateThemeManager final : public UObject +{ +public: + struct FGuid CurrentThemeId; // 0x0028(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FStyleColorList ActiveColors; // 0x0038(0x07A0)(Edit, Transient, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateThemeManager") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateThemeManager") + } + static class USlateThemeManager* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USlateThemeManager; + +} + diff --git a/TormentedSouls2/SDK/SlateCore_structs.hpp b/TormentedSouls2/SDK/SlateCore_structs.hpp new file mode 100644 index 0000000..576772e --- /dev/null +++ b/TormentedSouls2/SDK/SlateCore_structs.hpp @@ -0,0 +1,1416 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: SlateCore + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Enum SlateCore.EFontRasterizationMode +// NumValues: 0x0005 +enum class EFontRasterizationMode : uint8 +{ + Bitmap = 0, + Msdf = 1, + Sdf = 2, + SdfApproximation = 3, + EFontRasterizationMode_MAX = 4, +}; + +// Enum SlateCore.EUINavigationRule +// NumValues: 0x0008 +enum class EUINavigationRule : uint8 +{ + Escape = 0, + Explicit = 1, + Wrap = 2, + Stop = 3, + Custom = 4, + CustomBoundary = 5, + Invalid = 6, + EUINavigationRule_MAX = 7, +}; + +// Enum SlateCore.EColorVisionDeficiency +// NumValues: 0x0005 +enum class EColorVisionDeficiency : uint8 +{ + NormalVision = 0, + Deuteranope = 1, + Protanope = 2, + Tritanope = 3, + EColorVisionDeficiency_MAX = 4, +}; + +// Enum SlateCore.EButtonClickMethod +// NumValues: 0x0005 +enum class EButtonClickMethod : uint8 +{ + DownAndUp = 0, + MouseDown = 1, + MouseUp = 2, + PreciseClick = 3, + EButtonClickMethod_MAX = 4, +}; + +// Enum SlateCore.EButtonTouchMethod +// NumValues: 0x0004 +enum class EButtonTouchMethod : uint8 +{ + DownAndUp = 0, + Down = 1, + PreciseTap = 2, + EButtonTouchMethod_MAX = 3, +}; + +// Enum SlateCore.EButtonPressMethod +// NumValues: 0x0004 +enum class EButtonPressMethod : uint8 +{ + DownAndUp = 0, + ButtonPress = 1, + ButtonRelease = 2, + EButtonPressMethod_MAX = 3, +}; + +// Enum SlateCore.EUINavigation +// NumValues: 0x0009 +enum class EUINavigation : uint8 +{ + Left = 0, + Right = 1, + Up = 2, + Down = 3, + Next = 4, + Previous = 5, + Num = 6, + Invalid = 7, + EUINavigation_MAX = 8, +}; + +// Enum SlateCore.EUINavigationAction +// NumValues: 0x0005 +enum class EUINavigationAction : uint8 +{ + Accept = 0, + Back = 1, + Num = 2, + Invalid = 3, + EUINavigationAction_MAX = 4, +}; + +// Enum SlateCore.ENavigationSource +// NumValues: 0x0003 +enum class ENavigationSource : uint8 +{ + FocusedWidget = 0, + WidgetUnderCursor = 1, + ENavigationSource_MAX = 2, +}; + +// Enum SlateCore.ENavigationGenesis +// NumValues: 0x0004 +enum class ENavigationGenesis : uint8 +{ + Keyboard = 0, + Controller = 1, + User = 2, + ENavigationGenesis_MAX = 3, +}; + +// Enum SlateCore.EHorizontalAlignment +// NumValues: 0x0005 +enum class EHorizontalAlignment : uint8 +{ + HAlign_Fill = 0, + HAlign_Left = 1, + HAlign_Center = 2, + HAlign_Right = 3, + HAlign_MAX = 4, +}; + +// Enum SlateCore.EVerticalAlignment +// NumValues: 0x0005 +enum class EVerticalAlignment : uint8 +{ + VAlign_Fill = 0, + VAlign_Top = 1, + VAlign_Center = 2, + VAlign_Bottom = 3, + VAlign_MAX = 4, +}; + +// Enum SlateCore.EMenuPlacement +// NumValues: 0x000E +enum class EMenuPlacement : uint8 +{ + MenuPlacement_BelowAnchor = 0, + MenuPlacement_CenteredBelowAnchor = 1, + MenuPlacement_BelowRightAnchor = 2, + MenuPlacement_ComboBox = 3, + MenuPlacement_ComboBoxRight = 4, + MenuPlacement_MenuRight = 5, + MenuPlacement_AboveAnchor = 6, + MenuPlacement_CenteredAboveAnchor = 7, + MenuPlacement_AboveRightAnchor = 8, + MenuPlacement_MenuLeft = 9, + MenuPlacement_Center = 10, + MenuPlacement_RightLeftCenter = 11, + MenuPlacement_MatchBottomLeft = 12, + MenuPlacement_MAX = 13, +}; + +// Enum SlateCore.EOrientation +// NumValues: 0x0003 +enum class EOrientation : uint8 +{ + Orient_Horizontal = 0, + Orient_Vertical = 1, + Orient_MAX = 2, +}; + +// Enum SlateCore.EScrollDirection +// NumValues: 0x0003 +enum class EScrollDirection : uint8 +{ + scroll_down = 0, + scroll_up = 1, + scroll_MAX = 2, +}; + +// Enum SlateCore.ETextCommit +// NumValues: 0x0005 +enum class ETextCommit : uint8 +{ + Default = 0, + OnEnter = 1, + OnUserMovedFocus = 2, + OnCleared = 3, + ETextCommit_MAX = 4, +}; + +// Enum SlateCore.ESelectInfo +// NumValues: 0x0005 +enum class ESelectInfo : uint8 +{ + OnKeyPress = 0, + OnNavigation = 1, + OnMouseClick = 2, + Direct = 3, + ESelectInfo_MAX = 4, +}; + +// Enum SlateCore.ESlatePostRT +// NumValues: 0x0009 +enum class ESlatePostRT : uint8 +{ + None = 0, + ESlatePostRT_0 = 1, + ESlatePostRT_1 = 2, + ESlatePostRT_2 = 4, + ESlatePostRT_3 = 8, + ESlatePostRT_4 = 16, + All = 31, + Num = 5, + ESlatePostRT_MAX = 32, +}; + +// Enum SlateCore.EWidgetPixelSnapping +// NumValues: 0x0004 +enum class EWidgetPixelSnapping : uint8 +{ + Inherit = 0, + Disabled = 1, + SnapToPixel = 2, + EWidgetPixelSnapping_MAX = 3, +}; + +// Enum SlateCore.ESlateDebuggingInputEvent +// NumValues: 0x001B +enum class ESlateDebuggingInputEvent : uint8 +{ + MouseMove = 0, + MouseEnter = 1, + MouseLeave = 2, + PreviewMouseButtonDown = 3, + MouseButtonDown = 4, + MouseButtonUp = 5, + MouseButtonDoubleClick = 6, + MouseWheel = 7, + TouchStart = 8, + TouchEnd = 9, + TouchForceChanged = 10, + TouchFirstMove = 11, + TouchMoved = 12, + DragDetected = 13, + DragEnter = 14, + DragLeave = 15, + DragOver = 16, + DragDrop = 17, + DropMessage = 18, + PreviewKeyDown = 19, + KeyDown = 20, + KeyUp = 21, + KeyChar = 22, + AnalogInput = 23, + TouchGesture = 24, + MotionDetected = 25, + MAX = 26, +}; + +// Enum SlateCore.ESlateDebuggingStateChangeEvent +// NumValues: 0x0003 +enum class ESlateDebuggingStateChangeEvent : uint8 +{ + MouseCaptureGained = 0, + MouseCaptureLost = 1, + ESlateDebuggingStateChangeEvent_MAX = 2, +}; + +// Enum SlateCore.ESlateDebuggingNavigationMethod +// NumValues: 0x0007 +enum class ESlateDebuggingNavigationMethod : uint8 +{ + Unknown = 0, + Explicit = 1, + CustomDelegateBound = 2, + CustomDelegateUnbound = 3, + NextOrPrevious = 4, + HitTestGrid = 5, + ESlateDebuggingNavigationMethod_MAX = 6, +}; + +// Enum SlateCore.ESlateDebuggingFocusEvent +// NumValues: 0x0004 +enum class ESlateDebuggingFocusEvent : uint8 +{ + FocusChanging = 0, + FocusLost = 1, + FocusReceived = 2, + MAX = 3, +}; + +// Enum SlateCore.EFontHinting +// NumValues: 0x0006 +enum class EFontHinting : uint8 +{ + Default = 0, + Auto = 1, + AutoLight = 2, + Monochrome = 3, + None = 4, + EFontHinting_MAX = 5, +}; + +// Enum SlateCore.EFontLoadingPolicy +// NumValues: 0x0004 +enum class EFontLoadingPolicy : uint8 +{ + LazyLoad = 0, + Stream = 1, + Inline = 2, + EFontLoadingPolicy_MAX = 3, +}; + +// Enum SlateCore.EFontLayoutMethod +// NumValues: 0x0003 +enum class EFontLayoutMethod : uint8 +{ + Metrics = 0, + BoundingBox = 1, + EFontLayoutMethod_MAX = 2, +}; + +// Enum SlateCore.ETextShapingMethod +// NumValues: 0x0004 +enum class ETextShapingMethod : uint8 +{ + Auto = 0, + KerningOnly = 1, + FullShaping = 2, + ETextShapingMethod_MAX = 3, +}; + +// Enum SlateCore.EFocusCause +// NumValues: 0x0007 +enum class EFocusCause : uint8 +{ + Mouse = 0, + Navigation = 1, + SetDirectly = 2, + Cleared = 3, + OtherWidgetLostFocus = 4, + WindowActivate = 5, + EFocusCause_MAX = 6, +}; + +// Enum SlateCore.EWidgetClipping +// NumValues: 0x0006 +enum class EWidgetClipping : uint8 +{ + Inherit = 0, + ClipToBounds = 1, + ClipToBoundsWithoutIntersecting = 2, + ClipToBoundsAlways = 3, + OnDemand = 4, + EWidgetClipping_MAX = 5, +}; + +// Enum SlateCore.EFlowDirectionPreference +// NumValues: 0x0005 +enum class EFlowDirectionPreference : uint8 +{ + Inherit = 0, + Culture = 1, + LeftToRight = 2, + RightToLeft = 3, + EFlowDirectionPreference_MAX = 4, +}; + +// Enum SlateCore.ESlateBrushDrawType +// NumValues: 0x0006 +enum class ESlateBrushDrawType : uint8 +{ + NoDrawType = 0, + Box = 1, + Border = 2, + Image = 3, + RoundedBox = 4, + ESlateBrushDrawType_MAX = 5, +}; + +// Enum SlateCore.ESlateBrushTileType +// NumValues: 0x0005 +enum class ESlateBrushTileType : uint8 +{ + NoTile = 0, + Horizontal = 1, + Vertical = 2, + Both = 3, + ESlateBrushTileType_MAX = 4, +}; + +// Enum SlateCore.ESlateBrushMirrorType +// NumValues: 0x0005 +enum class ESlateBrushMirrorType : uint8 +{ + NoMirror = 0, + Horizontal = 1, + Vertical = 2, + Both = 3, + ESlateBrushMirrorType_MAX = 4, +}; + +// Enum SlateCore.ESlateBrushImageType +// NumValues: 0x0005 +enum class ESlateBrushImageType : uint8 +{ + NoImage = 0, + FullColor = 1, + Linear = 2, + Vector = 3, + ESlateBrushImageType_MAX = 4, +}; + +// Enum SlateCore.ESlateBrushRoundingType +// NumValues: 0x0003 +enum class ESlateBrushRoundingType : uint8 +{ + FixedRadius = 0, + HalfHeightRadius = 1, + ESlateBrushRoundingType_MAX = 2, +}; + +// Enum SlateCore.ESlateColorStylingMode +// NumValues: 0x0006 +enum class ESlateColorStylingMode : uint8 +{ + UseColor_Specified = 0, + UseColor_ColorTable = 1, + UseColor_Foreground = 2, + UseColor_Foreground_Subdued = 3, + UseColor_UseStyle = 4, + UseColor_MAX = 5, +}; + +// Enum SlateCore.EConsumeMouseWheel +// NumValues: 0x0004 +enum class EConsumeMouseWheel : uint8 +{ + WhenScrollingPossible = 0, + Always = 1, + Never = 2, + EConsumeMouseWheel_MAX = 3, +}; + +// Enum SlateCore.ESlateParentWindowSearchMethod +// NumValues: 0x0003 +enum class ESlateParentWindowSearchMethod : uint8 +{ + ActiveWindow = 0, + MainWindow = 1, + ESlateParentWindowSearchMethod_MAX = 2, +}; + +// Enum SlateCore.ESlateCheckBoxType +// NumValues: 0x0003 +enum class ESlateCheckBoxType : uint8 +{ + CheckBox = 0, + ToggleButton = 1, + ESlateCheckBoxType_MAX = 2, +}; + +// Enum SlateCore.ECheckBoxState +// NumValues: 0x0004 +enum class ECheckBoxState : uint8 +{ + Unchecked = 0, + Checked = 1, + Undetermined = 2, + ECheckBoxState_MAX = 3, +}; + +// Enum SlateCore.ETextOverflowPolicy +// NumValues: 0x0005 +enum class ETextOverflowPolicy : uint8 +{ + Clip = 0, + Ellipsis = 1, + MultilineEllipsis = 2, + MiddleEllipsis = 3, + ETextOverflowPolicy_MAX = 4, +}; + +// Enum SlateCore.ETextTransformPolicy +// NumValues: 0x0004 +enum class ETextTransformPolicy : uint8 +{ + None = 0, + ToLower = 1, + ToUpper = 2, + ETextTransformPolicy_MAX = 3, +}; + +// Enum SlateCore.EStyleColor +// NumValues: 0x003E +enum class EStyleColor : uint8 +{ + Black = 0, + Background = 1, + Title = 2, + WindowBorder = 3, + Foldout = 4, + Input = 5, + InputOutline = 6, + Recessed = 7, + Panel = 8, + Header = 9, + Dropdown = 10, + DropdownOutline = 11, + Hover = 12, + Hover2 = 13, + White = 14, + White25 = 15, + Highlight = 16, + Primary = 17, + PrimaryHover = 18, + PrimaryPress = 19, + Secondary = 20, + Foreground = 21, + ForegroundHover = 22, + ForegroundInverted = 23, + ForegroundHeader = 24, + Select = 25, + SelectInactive = 26, + SelectParent = 27, + SelectHover = 28, + Notifications = 29, + AccentBlue = 30, + AccentPurple = 31, + AccentPink = 32, + AccentRed = 33, + AccentOrange = 34, + AccentYellow = 35, + AccentGreen = 36, + AccentBrown = 37, + AccentBlack = 38, + AccentGray = 39, + AccentWhite = 40, + AccentFolder = 41, + Warning = 42, + Error = 43, + Success = 44, + User1 = 45, + User2 = 46, + User3 = 47, + User4 = 48, + User5 = 49, + User6 = 50, + User7 = 51, + User8 = 52, + User9 = 53, + User10 = 54, + User11 = 55, + User12 = 56, + User13 = 57, + User14 = 58, + User15 = 59, + User16 = 60, + MAX = 61, +}; + +// ScriptStruct SlateCore.InputEvent +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FInputEvent +{ +public: + uint8 Pad_0[0x20]; // 0x0000(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInputEvent; + +// ScriptStruct SlateCore.Geometry +// 0x0038 (0x0038 - 0x0000) +struct alignas(0x04) FGeometry final +{ +public: + uint8 Pad_0[0x38]; // 0x0000(0x0038)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FGeometry; + +// ScriptStruct SlateCore.FontOutlineSettings +// 0x0020 (0x0020 - 0x0000) +struct FFontOutlineSettings final +{ +public: + int32 OutlineSize; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMiteredCorners; // 0x0004(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bSeparateFillAlpha; // 0x0005(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bApplyOutlineToDropShadows; // 0x0006(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_7[0x1]; // 0x0007(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* OutlineMaterial; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor OutlineColor; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FFontOutlineSettings; + +// ScriptStruct SlateCore.SlateFontInfo +// 0x0060 (0x0060 - 0x0000) +struct FSlateFontInfo final +{ +public: + class UObject* FontObject; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + class UObject* FontMaterial; // 0x0008(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFontOutlineSettings OutlineSettings; // 0x0010(0x0020)(Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_30[0x10]; // 0x0030(0x0010)(Fixing Size After Last Property [ Dumper-7 ]) + class FName TypefaceFontName; // 0x0040(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Size; // 0x0048(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 LetterSpacing; // 0x004C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float SkewAmount; // 0x0050(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_54[0x1]; // 0x0054(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + bool bForceMonospaced; // 0x0055(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bMaterialIsStencil; // 0x0056(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_57[0x1]; // 0x0057(0x0001)(Fixing Size After Last Property [ Dumper-7 ]) + float MonospacedWidth; // 0x0058(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_5C[0x4]; // 0x005C(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSlateFontInfo; + +// ScriptStruct SlateCore.SlateColor +// 0x0014 (0x0014 - 0x0000) +struct FSlateColor final +{ +public: + struct FLinearColor SpecifiedColor; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + ESlateColorStylingMode ColorUseRule; // 0x0010(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_11[0x3]; // 0x0011(0x0003)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSlateColor; + +// ScriptStruct SlateCore.Margin +// 0x0010 (0x0010 - 0x0000) +struct FMargin final +{ +public: + float Left; // 0x0000(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Top; // 0x0004(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Right; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float Bottom; // 0x000C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FMargin; + +// ScriptStruct SlateCore.DeprecateSlateVector2D +// 0x0000 (0x0008 - 0x0008) +struct FDeprecateSlateVector2D final : public FVector2f +{ +}; +DUMPER7_ASSERTS_FDeprecateSlateVector2D; + +// ScriptStruct SlateCore.SlateBrushOutlineSettings +// 0x0040 (0x0040 - 0x0000) +struct FSlateBrushOutlineSettings final +{ +public: + struct FVector4 CornerRadii; // 0x0000(0x0020)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateColor Color; // 0x0020(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + float Width; // 0x0034(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESlateBrushRoundingType RoundingType; // 0x0038(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bUseBrushTransparency; // 0x0039(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3A[0x6]; // 0x003A(0x0006)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FSlateBrushOutlineSettings; + +// ScriptStruct SlateCore.SlateBrush +// 0x00B0 (0x00B0 - 0x0000) +struct FSlateBrush final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateColor TintColor; // 0x0008(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + ESlateBrushDrawType DrawAs; // 0x001C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESlateBrushTileType Tiling; // 0x001D(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESlateBrushMirrorType Mirroring; // 0x001E(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ESlateBrushImageType ImageType; // 0x001F(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FDeprecateSlateVector2D ImageSize; // 0x0020(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMargin Margin; // 0x0028(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + class UObject* ResourceObject; // 0x0038(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + struct FSlateBrushOutlineSettings OutlineSettings; // 0x0040(0x0040)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FBox2f UVRegion; // 0x0080(0x0014)(ZeroConstructor, IsPlainOldData, NoDestructor, Protected, NativeAccessSpecifierProtected) + uint8 bIsDynamicallyLoaded : 1; // 0x0094(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 bHasUObject : 1; // 0x0094(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Deprecated, NoDestructor, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected)) + uint8 Pad_95[0x13]; // 0x0095(0x0013)(Fixing Size After Last Property [ Dumper-7 ]) + class FName ResourceName; // 0x00A8(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, Protected, HasGetValueTypeHash, NativeAccessSpecifierProtected) +}; +//DUMPER7_ASSERTS_FSlateBrush; + +// ScriptStruct SlateCore.SlateWidgetStyle +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FSlateWidgetStyle +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FSlateWidgetStyle; + +// ScriptStruct SlateCore.EditableTextStyle +// 0x0288 (0x0290 - 0x0008) +struct FEditableTextStyle final : public FSlateWidgetStyle +{ +public: + struct FSlateFontInfo Font; // 0x0008(0x0060)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateColor ColorAndOpacity; // 0x0068(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_7C[0x4]; // 0x007C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundImageSelected; // 0x0080(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundImageComposing; // 0x0130(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush CaretImage; // 0x01E0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FEditableTextStyle; + +// ScriptStruct SlateCore.PointerEvent +// 0x0058 (0x0078 - 0x0020) +struct FPointerEvent final : public FInputEvent +{ +public: + uint8 Pad_20[0x58]; // 0x0020(0x0058)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FPointerEvent; + +// ScriptStruct SlateCore.ScrollBorderStyle +// 0x0168 (0x0170 - 0x0008) +struct FScrollBorderStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush TopShadowBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BottomShadowBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FScrollBorderStyle; + +// ScriptStruct SlateCore.SlateSound +// 0x0018 (0x0018 - 0x0000) +struct FSlateSound final +{ +public: + class UObject* ResourceObject; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, Protected, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierProtected) + uint8 Pad_8[0x10]; // 0x0008(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FSlateSound; + +// ScriptStruct SlateCore.ButtonStyle +// 0x0368 (0x0370 - 0x0008) +struct FButtonStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush Normal; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush Hovered; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush Pressed; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush Disabled; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor NormalForeground; // 0x02D0(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor HoveredForeground; // 0x02E4(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor PressedForeground; // 0x02F8(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor DisabledForeground; // 0x030C(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FMargin NormalPadding; // 0x0320(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin PressedPadding; // 0x0330(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateSound PressedSlateSound; // 0x0340(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateSound HoveredSlateSound; // 0x0358(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FButtonStyle; + +// ScriptStruct SlateCore.TextBlockStyle +// 0x02D8 (0x02E0 - 0x0008) +struct FTextBlockStyle final : public FSlateWidgetStyle +{ +public: + struct FSlateFontInfo Font; // 0x0008(0x0060)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateColor ColorAndOpacity; // 0x0068(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FDeprecateSlateVector2D ShadowOffset; // 0x007C(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ShadowColorAndOpacity; // 0x0084(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateColor SelectedBackgroundColor; // 0x0094(0x0014)(Edit, NativeAccessSpecifierPublic) + struct FSlateColor HighlightColor; // 0x00A8(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + uint8 Pad_BC[0x4]; // 0x00BC(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush HighlightShape; // 0x00C0(0x00B0)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateBrush StrikeBrush; // 0x0170(0x00B0)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateBrush UnderlineBrush; // 0x0220(0x00B0)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + ETextTransformPolicy TransformPolicy; // 0x02D0(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + ETextOverflowPolicy OverflowPolicy; // 0x02D1(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_2D2[0xE]; // 0x02D2(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FTextBlockStyle; + +// ScriptStruct SlateCore.DockTabStyle +// 0x0BB8 (0x0BC0 - 0x0008) +struct FDockTabStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FButtonStyle CloseButtonStyle; // 0x0010(0x0370)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush NormalBrush; // 0x0380(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ColorOverlayTabBrush; // 0x0430(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ColorOverlayIconBrush; // 0x04E0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ForegroundBrush; // 0x0590(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredBrush; // 0x0640(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ContentAreaBrush; // 0x06F0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush TabWellBrush; // 0x07A0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FTextBlockStyle TabTextStyle; // 0x0850(0x02E0)(Edit, NativeAccessSpecifierPublic) + struct FMargin TabPadding; // 0x0B30(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FDeprecateSlateVector2D IconSize; // 0x0B40(0x0008)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float OverlapWidth; // 0x0B48(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateColor FlashColor; // 0x0B4C(0x0014)(Edit, NativeAccessSpecifierPublic) + struct FSlateColor NormalForegroundColor; // 0x0B60(0x0014)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor HoveredForegroundColor; // 0x0B74(0x0014)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor ActiveForegroundColor; // 0x0B88(0x0014)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor ForegroundForegroundColor; // 0x0B9C(0x0014)(Edit, AdvancedDisplay, NativeAccessSpecifierPublic) + float IconBorderPadding; // 0x0BB0(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_BB4[0xC]; // 0x0BB4(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FDockTabStyle; + +// ScriptStruct SlateCore.ScrollBarStyle +// 0x0648 (0x0650 - 0x0008) +struct FScrollBarStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush HorizontalBackgroundImage; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush VerticalBackgroundImage; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush VerticalTopSlotImage; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HorizontalTopSlotImage; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush VerticalBottomSlotImage; // 0x02D0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HorizontalBottomSlotImage; // 0x0380(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush NormalThumbImage; // 0x0430(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredThumbImage; // 0x04E0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DraggedThumbImage; // 0x0590(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + float Thickness; // 0x0640(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_644[0xC]; // 0x0644(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FScrollBarStyle; + +// ScriptStruct SlateCore.EditableTextBoxStyle +// 0x0C78 (0x0C80 - 0x0008) +struct FEditableTextBoxStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundImageNormal; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundImageHovered; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundImageFocused; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundImageReadOnly; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin Padding; // 0x02D0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FTextBlockStyle TextStyle; // 0x02E0(0x02E0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor ForegroundColor; // 0x05C0(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor BackgroundColor; // 0x05D4(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor ReadOnlyForegroundColor; // 0x05E8(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor FocusedForegroundColor; // 0x05FC(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin HScrollBarPadding; // 0x0610(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin VScrollBarPadding; // 0x0620(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FScrollBarStyle ScrollBarStyle; // 0x0630(0x0650)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FEditableTextBoxStyle; + +// ScriptStruct SlateCore.CheckBoxStyle +// 0x0948 (0x0950 - 0x0008) +struct FCheckBoxStyle final : public FSlateWidgetStyle +{ +public: + ESlateCheckBoxType CheckBoxType; // 0x0008(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_9[0x7]; // 0x0009(0x0007)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush UncheckedImage; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush UncheckedHoveredImage; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush UncheckedPressedImage; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush CheckedImage; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush CheckedHoveredImage; // 0x02D0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush CheckedPressedImage; // 0x0380(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush UndeterminedImage; // 0x0430(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush UndeterminedHoveredImage; // 0x04E0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush UndeterminedPressedImage; // 0x0590(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin Padding; // 0x0640(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundImage; // 0x0650(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundHoveredImage; // 0x0700(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundPressedImage; // 0x07B0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor ForegroundColor; // 0x0860(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor HoveredForeground; // 0x0874(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor PressedForeground; // 0x0888(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor CheckedForeground; // 0x089C(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor CheckedHoveredForeground; // 0x08B0(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor CheckedPressedForeground; // 0x08C4(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor UndeterminedForeground; // 0x08D8(0x0014)(Edit, BlueprintVisible, AdvancedDisplay, NativeAccessSpecifierPublic) + struct FSlateColor BorderBackgroundColor; // 0x08EC(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateSound CheckedSlateSound; // 0x0900(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateSound UncheckedSlateSound; // 0x0918(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateSound HoveredSlateSound; // 0x0930(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_948[0x8]; // 0x0948(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FCheckBoxStyle; + +// ScriptStruct SlateCore.ComboButtonStyle +// 0x0538 (0x0540 - 0x0008) +struct FComboButtonStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FButtonStyle ButtonStyle; // 0x0010(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DownArrowImage; // 0x0380(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FDeprecateSlateVector2D ShadowOffset; // 0x0430(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FLinearColor ShadowColorAndOpacity; // 0x0438(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_448[0x8]; // 0x0448(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush MenuBorderBrush; // 0x0450(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin MenuBorderPadding; // 0x0500(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin ContentPadding; // 0x0510(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin DownArrowPadding; // 0x0520(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + EVerticalAlignment DownArrowAlign; // 0x0530(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_531[0xF]; // 0x0531(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FComboButtonStyle; + +// ScriptStruct SlateCore.ToolBarStyle +// 0x3658 (0x3660 - 0x0008) +struct FToolBarStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ExpandBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush SeparatorBrush; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FTextBlockStyle LabelStyle; // 0x0220(0x02E0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FEditableTextBoxStyle EditableTextStyle; // 0x0500(0x0C80)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FCheckBoxStyle ToggleButton; // 0x1180(0x0950)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FComboButtonStyle ComboButtonStyle; // 0x1AD0(0x0540)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FButtonStyle SettingsButtonStyle; // 0x2010(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FComboButtonStyle SettingsComboButton; // 0x2380(0x0540)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FCheckBoxStyle SettingsToggleButton; // 0x28C0(0x0950)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FButtonStyle ButtonStyle; // 0x3210(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin LabelPadding; // 0x3580(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float UniformBlockWidth; // 0x3590(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float UniformBlockHeight; // 0x3594(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 NumColumns; // 0x3598(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMargin IconPadding; // 0x359C(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin SeparatorPadding; // 0x35AC(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + float SeparatorThickness; // 0x35BC(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMargin ComboButtonPadding; // 0x35C0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin ButtonPadding; // 0x35D0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin CheckBoxPadding; // 0x35E0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin BlockPadding; // 0x35F0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin IndentedBlockPadding; // 0x3600(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin BackgroundPadding; // 0x3610(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FDeprecateSlateVector2D IconSize; // 0x3620(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bShowLabels; // 0x3628(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3629[0x3]; // 0x3629(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + float ButtonContentMaxWidth; // 0x362C(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + float ButtonContentFillWidth; // 0x3630(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMargin IconPaddingWithVisibleLabel; // 0x3634(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin IconPaddingWithCollapsedLabel; // 0x3644(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TOptional VerticalAlignmentOverride; // 0x3654(0x0002)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3656[0xA]; // 0x3656(0x000A)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FToolBarStyle; + +// ScriptStruct SlateCore.StyleColorList +// 0x07A0 (0x07A0 - 0x0000) +struct alignas(0x08) FStyleColorList final +{ +public: + struct FLinearColor StyleColors[0x3D]; // 0x0000(0x0010)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_3D0[0x3D0]; // 0x03D0(0x03D0)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FStyleColorList; + +// ScriptStruct SlateCore.ScrollBoxStyle +// 0x02E8 (0x02F0 - 0x0008) +struct FScrollBoxStyle final : public FSlateWidgetStyle +{ +public: + float BarThickness; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C[0x4]; // 0x000C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush TopShadowBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BottomShadowBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush LeftShadowBrush; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush RightShadowBrush; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin HorizontalScrolledContentPadding; // 0x02D0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin VerticalScrolledContentPadding; // 0x02E0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FScrollBoxStyle; + +// ScriptStruct SlateCore.CharacterEvent +// 0x0008 (0x0028 - 0x0020) +struct FCharacterEvent final : public FInputEvent +{ +public: + uint8 Pad_20[0x8]; // 0x0020(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FCharacterEvent; + +// ScriptStruct SlateCore.SliderStyle +// 0x0438 (0x0440 - 0x0008) +struct FSliderStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush NormalBarImage; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredBarImage; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DisabledBarImage; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush NormalThumbImage; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredThumbImage; // 0x02D0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DisabledThumbImage; // 0x0380(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + float BarThickness; // 0x0430(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_434[0xC]; // 0x0434(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSliderStyle; + +// ScriptStruct SlateCore.VolumeControlStyle +// 0x07B8 (0x07C0 - 0x0008) +struct FVolumeControlStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSliderStyle SliderStyle; // 0x0010(0x0440)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush HighVolumeImage; // 0x0450(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush MidVolumeImage; // 0x0500(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush LowVolumeImage; // 0x05B0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush NoVolumeImage; // 0x0660(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush MutedImage; // 0x0710(0x00B0)(Edit, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FVolumeControlStyle; + +// ScriptStruct SlateCore.KeyEvent +// 0x0020 (0x0040 - 0x0020) +struct FKeyEvent : public FInputEvent +{ +public: + uint8 Pad_20[0x20]; // 0x0020(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FKeyEvent; + +// ScriptStruct SlateCore.AnalogInputEvent +// 0x0008 (0x0048 - 0x0040) +struct FAnalogInputEvent final : public FKeyEvent +{ +public: + uint8 Pad_40[0x8]; // 0x0040(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FAnalogInputEvent; + +// ScriptStruct SlateCore.TableRowStyle +// 0x0B48 (0x0B50 - 0x0008) +struct FTableRowStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush SelectorFocusedBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveHoveredBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveBrush; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush InactiveHoveredBrush; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush InactiveBrush; // 0x02D0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + bool bUseParentRowBrush; // 0x0380(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_381[0xF]; // 0x0381(0x000F)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush ParentRowBackgroundBrush; // 0x0390(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ParentRowBackgroundHoveredBrush; // 0x0440(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush EvenRowBackgroundHoveredBrush; // 0x04F0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush EvenRowBackgroundBrush; // 0x05A0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush OddRowBackgroundHoveredBrush; // 0x0650(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush OddRowBackgroundBrush; // 0x0700(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor TextColor; // 0x07B0(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor SelectedTextColor; // 0x07C4(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_7D8[0x8]; // 0x07D8(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush DropIndicator_Above; // 0x07E0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DropIndicator_Onto; // 0x0890(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush DropIndicator_Below; // 0x0940(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveHighlightedBrush; // 0x09F0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush InactiveHighlightedBrush; // 0x0AA0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTableRowStyle; + +// ScriptStruct SlateCore.TableColumnHeaderStyle +// 0x0638 (0x0640 - 0x0008) +struct FTableColumnHeaderStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush SortPrimaryAscendingImage; // 0x0010(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush SortPrimaryDescendingImage; // 0x00C0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush SortSecondaryAscendingImage; // 0x0170(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush SortSecondaryDescendingImage; // 0x0220(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush NormalBrush; // 0x02D0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredBrush; // 0x0380(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush MenuDropdownImage; // 0x0430(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush MenuDropdownNormalBorderBrush; // 0x04E0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush MenuDropdownHoveredBorderBrush; // 0x0590(0x00B0)(Edit, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTableColumnHeaderStyle; + +// ScriptStruct SlateCore.SplitterStyle +// 0x0168 (0x0170 - 0x0008) +struct FSplitterStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush HandleNormalBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HandleHighlightBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FSplitterStyle; + +// ScriptStruct SlateCore.HeaderRowStyle +// 0x0F98 (0x0FA0 - 0x0008) +struct FHeaderRowStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FTableColumnHeaderStyle ColumnStyle; // 0x0010(0x0640)(Edit, NativeAccessSpecifierPublic) + struct FTableColumnHeaderStyle LastColumnStyle; // 0x0650(0x0640)(Edit, NativeAccessSpecifierPublic) + struct FSplitterStyle ColumnSplitterStyle; // 0x0C90(0x0170)(Edit, NativeAccessSpecifierPublic) + float SplitterHandleSize; // 0x0E00(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_E04[0xC]; // 0x0E04(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundBrush; // 0x0E10(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateColor ForegroundColor; // 0x0EC0(0x0014)(Edit, NativeAccessSpecifierPublic) + uint8 Pad_ED4[0xC]; // 0x0ED4(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush HorizontalSeparatorBrush; // 0x0EE0(0x00B0)(Edit, NativeAccessSpecifierPublic) + float HorizontalSeparatorThickness; // 0x0F90(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_F94[0xC]; // 0x0F94(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FHeaderRowStyle; + +// ScriptStruct SlateCore.SpinBoxStyle +// 0x0518 (0x0520 - 0x0008) +struct FSpinBoxStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveBackgroundBrush; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredBackgroundBrush; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveFillBrush; // 0x0220(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush HoveredFillBrush; // 0x02D0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush InactiveFillBrush; // 0x0380(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ArrowsImage; // 0x0430(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor ForegroundColor; // 0x04E0(0x0014)(NativeAccessSpecifierPublic) + struct FMargin TextPadding; // 0x04F4(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin InsetPadding; // 0x0504(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_514[0xC]; // 0x0514(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSpinBoxStyle; + +// ScriptStruct SlateCore.ComboBoxStyle +// 0x0598 (0x05A0 - 0x0008) +struct FComboBoxStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FComboButtonStyle ComboButtonStyle; // 0x0010(0x0540)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateSound PressedSlateSound; // 0x0550(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FSlateSound SelectionChangeSlateSound; // 0x0568(0x0018)(Edit, BlueprintVisible, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin ContentPadding; // 0x0580(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + struct FMargin MenuRowPadding; // 0x0590(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FComboBoxStyle; + +// ScriptStruct SlateCore.SearchBoxStyle +// 0x0FD8 (0x0FE0 - 0x0008) +struct FSearchBoxStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FEditableTextBoxStyle TextBoxStyle; // 0x0010(0x0C80)(Edit, NativeAccessSpecifierPublic) + struct FSlateFontInfo ActiveFontInfo; // 0x0C90(0x0060)(Edit, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FSlateBrush UpArrowImage; // 0x0CF0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush DownArrowImage; // 0x0DA0(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush GlassImage; // 0x0E50(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ClearImage; // 0x0F00(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FMargin ImagePadding; // 0x0FB0(0x0010)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + TOptional ImageSizeOverride; // 0x0FC0(0x0018)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLeftAlignButtons; // 0x0FD8(0x0001)(ZeroConstructor, Deprecated, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLeftAlignSearchResultButtons; // 0x0FD9(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + bool bLeftAlignGlassImageAndClearButton; // 0x0FDA(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_FDB[0x5]; // 0x0FDB(0x0005)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FSearchBoxStyle; + +// ScriptStruct SlateCore.WindowStyle +// 0x15F8 (0x1600 - 0x0008) +struct FWindowStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FButtonStyle MinimizeButtonStyle; // 0x0010(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FButtonStyle MaximizeButtonStyle; // 0x0380(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FButtonStyle RestoreButtonStyle; // 0x06F0(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FButtonStyle CloseButtonStyle; // 0x0A60(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FTextBlockStyle TitleTextStyle; // 0x0DD0(0x02E0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ActiveTitleBrush; // 0x10B0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush InactiveTitleBrush; // 0x1160(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush FlashTitleBrush; // 0x1210(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor BackgroundColor; // 0x12C0(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_12D4[0xC]; // 0x12D4(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush OutlineBrush; // 0x12E0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor OutlineColor; // 0x1390(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_13A4[0xC]; // 0x13A4(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BorderBrush; // 0x13B0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateColor BorderColor; // 0x1460(0x0014)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + uint8 Pad_1474[0xC]; // 0x1474(0x000C)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundBrush; // 0x1480(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush ChildBackgroundBrush; // 0x1530(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + int32 WindowCornerRadius; // 0x15E0(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FMargin BorderPadding; // 0x15E4(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) + uint8 Pad_15F4[0xC]; // 0x15F4(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FWindowStyle; + +// ScriptStruct SlateCore.ExpandableAreaStyle +// 0x0178 (0x0180 - 0x0008) +struct FExpandableAreaStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush CollapsedImage; // 0x0010(0x00B0)(Edit, NativeAccessSpecifierPublic) + struct FSlateBrush ExpandedImage; // 0x00C0(0x00B0)(Edit, NativeAccessSpecifierPublic) + float RolloutAnimationSeconds; // 0x0170(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_174[0xC]; // 0x0174(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FExpandableAreaStyle; + +// ScriptStruct SlateCore.InlineTextImageStyle +// 0x00C8 (0x00D0 - 0x0008) +struct FInlineTextImageStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush Image; // 0x0010(0x00B0)(Edit, NativeAccessSpecifierPublic) + int16 Baseline; // 0x00C0(0x0002)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_C2[0xE]; // 0x00C2(0x000E)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FInlineTextImageStyle; + +// ScriptStruct SlateCore.StyleTheme +// 0x0040 (0x0040 - 0x0000) +struct alignas(0x08) FStyleTheme final +{ +public: + uint8 Pad_0[0x40]; // 0x0000(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FStyleTheme; + +// ScriptStruct SlateCore.NavigationEvent +// 0x0008 (0x0028 - 0x0020) +struct FNavigationEvent final : public FInputEvent +{ +public: + uint8 Pad_20[0x8]; // 0x0020(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FNavigationEvent; + +// ScriptStruct SlateCore.FocusEvent +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FFocusEvent final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FFocusEvent; + +// ScriptStruct SlateCore.FontSdfSettings +// 0x0004 (0x0004 - 0x0000) +struct FFontSdfSettings final +{ +public: + int32 BasePpem; // 0x0000(0x0004)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FFontSdfSettings; + +// ScriptStruct SlateCore.MotionEvent +// 0x0060 (0x0080 - 0x0020) +struct FMotionEvent final : public FInputEvent +{ +public: + uint8 Pad_20[0x60]; // 0x0020(0x0060)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FMotionEvent; + +// ScriptStruct SlateCore.FontData +// 0x0028 (0x0028 - 0x0000) +struct FFontData final +{ +public: + class FString FontFilename; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_10[0x4]; // 0x0010(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + EFontHinting Hinting; // 0x0014(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + EFontLoadingPolicy LoadingPolicy; // 0x0015(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_16[0x2]; // 0x0016(0x0002)(Fixing Size After Last Property [ Dumper-7 ]) + int32 SubFaceIndex; // 0x0018(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPrivate) + uint8 Pad_1C[0x4]; // 0x001C(0x0004)(Fixing Size After Last Property [ Dumper-7 ]) + class UObject* FontFaceAsset; // 0x0020(0x0008)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate) +}; +DUMPER7_ASSERTS_FFontData; + +// ScriptStruct SlateCore.TypefaceEntry +// 0x0030 (0x0030 - 0x0000) +struct FTypefaceEntry final +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FFontData Font; // 0x0008(0x0028)(HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTypefaceEntry; + +// ScriptStruct SlateCore.Typeface +// 0x0010 (0x0010 - 0x0000) +struct FTypeface final +{ +public: + TArray Fonts; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FTypeface; + +// ScriptStruct SlateCore.CompositeFallbackFont +// 0x0018 (0x0018 - 0x0000) +struct FCompositeFallbackFont +{ +public: + struct FTypeface Typeface; // 0x0000(0x0010)(NativeAccessSpecifierPublic) + float ScalingFactor; // 0x0010(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FCompositeFallbackFont; + +// ScriptStruct SlateCore.CompositeSubFont +// 0x0020 (0x0038 - 0x0018) +struct FCompositeSubFont final : public FCompositeFallbackFont +{ +public: + TArray CharacterRanges; // 0x0018(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + class FString Cultures; // 0x0028(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCompositeSubFont; + +// ScriptStruct SlateCore.CompositeFont +// 0x0040 (0x0040 - 0x0000) +struct FCompositeFont final +{ +public: + struct FTypeface DefaultTypeface; // 0x0000(0x0010)(NativeAccessSpecifierPublic) + struct FCompositeFallbackFont FallbackTypeface; // 0x0010(0x0018)(NativeAccessSpecifierPublic) + TArray SubTypefaces; // 0x0028(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + bool bEnableAscentDescentOverride; // 0x0038(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_39[0x7]; // 0x0039(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FCompositeFont; + +// ScriptStruct SlateCore.CaptureLostEvent +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FCaptureLostEvent final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FCaptureLostEvent; + +// ScriptStruct SlateCore.SegmentedControlStyle +// 0x1CB8 (0x1CC0 - 0x0008) +struct FSegmentedControlStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FCheckBoxStyle ControlStyle; // 0x0010(0x0950)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FCheckBoxStyle FirstControlStyle; // 0x0960(0x0950)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FCheckBoxStyle LastControlStyle; // 0x12B0(0x0950)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush BackgroundBrush; // 0x1C00(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin UniformPadding; // 0x1CB0(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FSegmentedControlStyle; + +// ScriptStruct SlateCore.HyperlinkStyle +// 0x0668 (0x0670 - 0x0008) +struct FHyperlinkStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FButtonStyle UnderlineStyle; // 0x0010(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FTextBlockStyle TextStyle; // 0x0380(0x02E0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FMargin Padding; // 0x0660(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FHyperlinkStyle; + +// ScriptStruct SlateCore.InlineEditableTextBlockStyle +// 0x0F68 (0x0F70 - 0x0008) +struct FInlineEditableTextBlockStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FEditableTextBoxStyle EditableTextBoxStyle; // 0x0010(0x0C80)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FTextBlockStyle TextStyle; // 0x0C90(0x02E0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FInlineEditableTextBlockStyle; + +// ScriptStruct SlateCore.ProgressBarStyle +// 0x0228 (0x0230 - 0x0008) +struct FProgressBarStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundImage; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush FillImage; // 0x00C0(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + struct FSlateBrush MarqueeImage; // 0x0170(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + bool EnableFillAnimation; // 0x0220(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_221[0xF]; // 0x0221(0x000F)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FProgressBarStyle; + +// ScriptStruct SlateCore.TableViewStyle +// 0x00B8 (0x00C0 - 0x0008) +struct FTableViewStyle final : public FSlateWidgetStyle +{ +public: + uint8 Pad_8[0x8]; // 0x0008(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + struct FSlateBrush BackgroundBrush; // 0x0010(0x00B0)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FTableViewStyle; + +} + diff --git a/TormentedSouls2/SDK/Slate_classes.hpp b/TormentedSouls2/SDK/Slate_classes.hpp new file mode 100644 index 0000000..895f81c --- /dev/null +++ b/TormentedSouls2/SDK/Slate_classes.hpp @@ -0,0 +1,319 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Slate + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" +#include "SlateCore_structs.hpp" +#include "SlateCore_classes.hpp" + + +namespace SDK +{ + +// Class Slate.ToolMenuBase +// 0x0000 (0x0028 - 0x0028) +class UToolMenuBase final : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ToolMenuBase") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ToolMenuBase") + } + static class UToolMenuBase* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UToolMenuBase; + +// Class Slate.SlateSettings +// 0x0008 (0x0030 - 0x0028) +class USlateSettings final : public UObject +{ +public: + bool bExplicitCanvasChildZOrder; // 0x0028(0x0001)(Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_29[0x7]; // 0x0029(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SlateSettings") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SlateSettings") + } + static class USlateSettings* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USlateSettings; + +// Class Slate.ButtonWidgetStyle +// 0x0370 (0x03A0 - 0x0030) +class UButtonWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FButtonStyle ButtonStyle; // 0x0030(0x0370)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ButtonWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ButtonWidgetStyle") + } + static class UButtonWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UButtonWidgetStyle; + +// Class Slate.CheckBoxWidgetStyle +// 0x0950 (0x0980 - 0x0030) +class UCheckBoxWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FCheckBoxStyle CheckBoxStyle; // 0x0030(0x0950)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("CheckBoxWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"CheckBoxWidgetStyle") + } + static class UCheckBoxWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UCheckBoxWidgetStyle; + +// Class Slate.ComboBoxWidgetStyle +// 0x05A0 (0x05D0 - 0x0030) +class UComboBoxWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FComboBoxStyle ComboBoxStyle; // 0x0030(0x05A0)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComboBoxWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComboBoxWidgetStyle") + } + static class UComboBoxWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UComboBoxWidgetStyle; + +// Class Slate.ComboButtonWidgetStyle +// 0x0540 (0x0570 - 0x0030) +class UComboButtonWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FComboButtonStyle ComboButtonStyle; // 0x0030(0x0540)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ComboButtonWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ComboButtonWidgetStyle") + } + static class UComboButtonWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UComboButtonWidgetStyle; + +// Class Slate.EditableTextBoxWidgetStyle +// 0x0C80 (0x0CB0 - 0x0030) +class UEditableTextBoxWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FEditableTextBoxStyle EditableTextBoxStyle; // 0x0030(0x0C80)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EditableTextBoxWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EditableTextBoxWidgetStyle") + } + static class UEditableTextBoxWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEditableTextBoxWidgetStyle; + +// Class Slate.EditableTextWidgetStyle +// 0x0290 (0x02C0 - 0x0030) +class UEditableTextWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FEditableTextStyle EditableTextStyle; // 0x0030(0x0290)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EditableTextWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EditableTextWidgetStyle") + } + static class UEditableTextWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEditableTextWidgetStyle; + +// Class Slate.ProgressWidgetStyle +// 0x0230 (0x0260 - 0x0030) +class UProgressWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FProgressBarStyle ProgressBarStyle; // 0x0030(0x0230)(Edit, BlueprintVisible, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ProgressWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ProgressWidgetStyle") + } + static class UProgressWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UProgressWidgetStyle; + +// Class Slate.ScrollBarWidgetStyle +// 0x0650 (0x0680 - 0x0030) +class UScrollBarWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FScrollBarStyle ScrollBarStyle; // 0x0030(0x0650)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ScrollBarWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ScrollBarWidgetStyle") + } + static class UScrollBarWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UScrollBarWidgetStyle; + +// Class Slate.ScrollBoxWidgetStyle +// 0x02F0 (0x0320 - 0x0030) +class UScrollBoxWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FScrollBoxStyle ScrollBoxStyle; // 0x0030(0x02F0)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("ScrollBoxWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"ScrollBoxWidgetStyle") + } + static class UScrollBoxWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UScrollBoxWidgetStyle; + +// Class Slate.SpinBoxWidgetStyle +// 0x0520 (0x0550 - 0x0030) +class USpinBoxWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FSpinBoxStyle SpinBoxStyle; // 0x0030(0x0520)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("SpinBoxWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"SpinBoxWidgetStyle") + } + static class USpinBoxWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_USpinBoxWidgetStyle; + +// Class Slate.TextBlockWidgetStyle +// 0x02E0 (0x0310 - 0x0030) +class UTextBlockWidgetStyle final : public USlateWidgetStyleContainerBase +{ +public: + struct FTextBlockStyle TextBlockStyle; // 0x0030(0x02E0)(Edit, NativeAccessSpecifierPublic) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TextBlockWidgetStyle") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TextBlockWidgetStyle") + } + static class UTextBlockWidgetStyle* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTextBlockWidgetStyle; + +} + diff --git a/TormentedSouls2/SDK/Slate_structs.hpp b/TormentedSouls2/SDK/Slate_structs.hpp new file mode 100644 index 0000000..1f68d7b --- /dev/null +++ b/TormentedSouls2/SDK/Slate_structs.hpp @@ -0,0 +1,380 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: Slate + +#include "Basic.hpp" + +#include "InputCore_structs.hpp" +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Enum Slate.EVirtualKeyboardTrigger +// NumValues: 0x0003 +enum class EVirtualKeyboardTrigger : uint8 +{ + OnFocusByPointer = 0, + OnAllFocusEvents = 1, + EVirtualKeyboardTrigger_MAX = 2, +}; + +// Enum Slate.EVirtualKeyboardDismissAction +// NumValues: 0x0004 +enum class EVirtualKeyboardDismissAction : uint8 +{ + TextChangeOnDismiss = 0, + TextCommitOnAccept = 1, + TextCommitOnDismiss = 2, + EVirtualKeyboardDismissAction_MAX = 3, +}; + +// Enum Slate.ESelectionMode +// NumValues: 0x0005 +enum class ESelectionMode : uint8 +{ + None = 0, + Single = 1, + SingleToggle = 2, + Multi = 3, + ESelectionMode_MAX = 4, +}; + +// Enum Slate.ETableViewMode +// NumValues: 0x0004 +enum class ETableViewMode : uint8 +{ + List = 0, + Tile = 1, + Tree = 2, + ETableViewMode_MAX = 3, +}; + +// Enum Slate.EMultiBoxType +// NumValues: 0x0009 +enum class EMultiBoxType : uint8 +{ + MenuBar = 0, + ToolBar = 1, + VerticalToolBar = 2, + SlimHorizontalToolBar = 3, + UniformToolBar = 4, + Menu = 5, + ButtonRow = 6, + SlimHorizontalUniformToolBar = 7, + EMultiBoxType_MAX = 8, +}; + +// Enum Slate.EMultiBlockType +// NumValues: 0x000A +enum class EMultiBlockType : uint8 +{ + None = 0, + ButtonRow = 1, + EditableText = 2, + Heading = 3, + MenuEntry = 4, + Separator = 5, + ToolBarButton = 6, + ToolBarComboButton = 7, + Widget = 8, + EMultiBlockType_MAX = 9, +}; + +// Enum Slate.EInputPreProcessorType +// NumValues: 0x0009 +enum class EInputPreProcessorType : uint8 +{ + Overlay = 0, + PreEngine = 1, + Engine = 2, + PreEditor = 3, + Editor = 4, + PreGame = 5, + Game = 6, + Count = 7, + EInputPreProcessorType_MAX = 8, +}; + +// Enum Slate.EDescendantScrollDestination +// NumValues: 0x0005 +enum class EDescendantScrollDestination : uint8 +{ + IntoView = 0, + TopOrLeft = 1, + Center = 2, + BottomOrRight = 3, + EDescendantScrollDestination_MAX = 4, +}; + +// Enum Slate.EScrollWhenFocusChanges +// NumValues: 0x0004 +enum class EScrollWhenFocusChanges : uint8 +{ + NoScroll = 0, + InstantScroll = 1, + AnimatedScroll = 2, + EScrollWhenFocusChanges_MAX = 3, +}; + +// Enum Slate.ECustomizedToolMenuVisibility +// NumValues: 0x0004 +enum class ECustomizedToolMenuVisibility : uint32 +{ + None = 0, + Visible = 1, + Hidden = 2, + ECustomizedToolMenuVisibility_MAX = 3, +}; + +// Enum Slate.EUserInterfaceActionType +// NumValues: 0x0007 +enum class EUserInterfaceActionType : uint8 +{ + None = 0, + Button = 1, + ToggleButton = 2, + RadioButton = 3, + Check = 4, + CollapsedButton = 5, + EUserInterfaceActionType_MAX = 6, +}; + +// Enum Slate.EMultipleKeyBindingIndex +// NumValues: 0x0004 +enum class EMultipleKeyBindingIndex : uint8 +{ + Primary = 0, + Secondary = 1, + NumChords = 2, + EMultipleKeyBindingIndex_MAX = 3, +}; + +// Enum Slate.ETextJustify +// NumValues: 0x0006 +enum class ETextJustify : uint8 +{ + Left = 0, + Center = 1, + Right = 2, + InvariantLeft = 3, + InvariantRight = 4, + ETextJustify_MAX = 5, +}; + +// Enum Slate.ETextWrappingPolicy +// NumValues: 0x0003 +enum class ETextWrappingPolicy : uint8 +{ + DefaultWrapping = 0, + AllowPerCharacterWrapping = 1, + ETextWrappingPolicy_MAX = 2, +}; + +// Enum Slate.ETextFlowDirection +// NumValues: 0x0005 +enum class ETextFlowDirection : uint8 +{ + Auto = 0, + LeftToRight = 1, + RightToLeft = 2, + Culture = 3, + ETextFlowDirection_MAX = 4, +}; + +// Enum Slate.EStretchDirection +// NumValues: 0x0004 +enum class EStretchDirection : uint8 +{ + Both = 0, + DownOnly = 1, + UpOnly = 2, + EStretchDirection_MAX = 3, +}; + +// Enum Slate.EStretch +// NumValues: 0x000A +enum class EStretch : uint8 +{ + None = 0, + Fill = 1, + ScaleToFit = 2, + ScaleToFitX = 3, + ScaleToFitY = 4, + ScaleToFill = 5, + ScaleBySafeZone = 6, + UserSpecified = 7, + UserSpecifiedWithClipping = 8, + EStretch_MAX = 9, +}; + +// Enum Slate.EProgressBarFillType +// NumValues: 0x0008 +enum class EProgressBarFillType : uint8 +{ + LeftToRight = 0, + RightToLeft = 1, + FillFromCenter = 2, + FillFromCenterHorizontal = 3, + FillFromCenterVertical = 4, + TopToBottom = 5, + BottomToTop = 6, + EProgressBarFillType_MAX = 7, +}; + +// Enum Slate.EProgressBarFillStyle +// NumValues: 0x0003 +enum class EProgressBarFillStyle : uint8 +{ + Mask = 0, + Scale = 1, + EProgressBarFillStyle_MAX = 2, +}; + +// Enum Slate.EListItemAlignment +// NumValues: 0x0008 +enum class EListItemAlignment : uint8 +{ + EvenlyDistributed = 0, + EvenlySize = 1, + EvenlyWide = 2, + LeftAligned = 3, + RightAligned = 4, + CenterAligned = 5, + Fill = 6, + EListItemAlignment_MAX = 7, +}; + +// Enum Slate.EScrollIntoViewAlignment +// NumValues: 0x0005 +enum class EScrollIntoViewAlignment : uint8 +{ + IntoView = 0, + TopOrLeft = 1, + CenterAligned = 2, + BottomOrRight = 3, + EScrollIntoViewAlignment_MAX = 4, +}; + +// ScriptStruct Slate.VirtualKeyboardOptions +// 0x0001 (0x0001 - 0x0000) +struct FVirtualKeyboardOptions final +{ +public: + bool bEnableAutocorrect; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FVirtualKeyboardOptions; + +// ScriptStruct Slate.CharRange +// 0x0004 (0x0004 - 0x0000) +struct FCharRange final +{ +public: + uint16 First; // 0x0000(0x0002)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint16 Last; // 0x0002(0x0002)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCharRange; + +// ScriptStruct Slate.InputChord +// 0x0020 (0x0020 - 0x0000) +struct FInputChord final +{ +public: + struct FKey Key; // 0x0000(0x0018)(Edit, BlueprintVisible, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 bShift : 1; // 0x0018(0x0001)(BitIndex: 0x00, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCtrl : 1; // 0x0018(0x0001)(BitIndex: 0x01, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bAlt : 1; // 0x0018(0x0001)(BitIndex: 0x02, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 bCmd : 1; // 0x0018(0x0001)(BitIndex: 0x03, PropSize: 0x0001 (Edit, BlueprintVisible, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +DUMPER7_ASSERTS_FInputChord; + +// ScriptStruct Slate.CustomizedToolMenuEntry +// 0x0004 (0x0004 - 0x0000) +struct FCustomizedToolMenuEntry final +{ +public: + ECustomizedToolMenuVisibility Visibility; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCustomizedToolMenuEntry; + +// ScriptStruct Slate.Anchors +// 0x0020 (0x0020 - 0x0000) +struct FAnchors final +{ +public: + struct FVector2D Minimum; // 0x0000(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + struct FVector2D Maximum; // 0x0010(0x0010)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FAnchors; + +// ScriptStruct Slate.InputPreprocessorRegistrationKey +// 0x0008 (0x0008 - 0x0000) +struct FInputPreprocessorRegistrationKey final +{ +public: + EInputPreProcessorType Type; // 0x0000(0x0001)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_1[0x3]; // 0x0001(0x0003)(Fixing Size After Last Property [ Dumper-7 ]) + int32 Priority; // 0x0004(0x0004)(ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FInputPreprocessorRegistrationKey; + +// ScriptStruct Slate.CharRangeList +// 0x0010 (0x0010 - 0x0000) +struct FCharRangeList final +{ +public: + TArray Ranges; // 0x0000(0x0010)(Edit, ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCharRangeList; + +// ScriptStruct Slate.CustomizedToolMenuSection +// 0x0004 (0x0004 - 0x0000) +struct FCustomizedToolMenuSection final +{ +public: + ECustomizedToolMenuVisibility Visibility; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCustomizedToolMenuSection; + +// ScriptStruct Slate.CustomizedToolMenuNameArray +// 0x0010 (0x0010 - 0x0000) +struct FCustomizedToolMenuNameArray final +{ +public: + TArray Names; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +DUMPER7_ASSERTS_FCustomizedToolMenuNameArray; + +// ScriptStruct Slate.ToolMenuProfile +// 0x01A0 (0x01A0 - 0x0000) +struct FToolMenuProfile +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + TMap Entries; // 0x0008(0x0050)(NativeAccessSpecifierPublic) + TMap Sections; // 0x0058(0x0050)(NativeAccessSpecifierPublic) + TArray SuppressExtenders; // 0x00A8(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) + uint8 Pad_B8[0xE8]; // 0x00B8(0x00E8)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//DUMPER7_ASSERTS_FToolMenuProfile; + +// ScriptStruct Slate.CustomizedToolMenu +// 0x0060 (0x0200 - 0x01A0) +struct FCustomizedToolMenu final : public FToolMenuProfile +{ +public: + TMap EntryOrder; // 0x01A0(0x0050)(NativeAccessSpecifierPublic) + TArray SectionOrder; // 0x01F0(0x0010)(ZeroConstructor, NativeAccessSpecifierPublic) +}; +//DUMPER7_ASSERTS_FCustomizedToolMenu; + +} + diff --git a/TormentedSouls2/SDK/TypedElementFramework_classes.hpp b/TormentedSouls2/SDK/TypedElementFramework_classes.hpp new file mode 100644 index 0000000..6d22159 --- /dev/null +++ b/TormentedSouls2/SDK/TypedElementFramework_classes.hpp @@ -0,0 +1,351 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: TypedElementFramework + +#include "Basic.hpp" + +#include "CoreUObject_classes.hpp" + + +namespace SDK +{ + +// Class TypedElementFramework.EditorDataStorageFactory +// 0x0000 (0x0028 - 0x0028) +class UEditorDataStorageFactory : public UObject +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("EditorDataStorageFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"EditorDataStorageFactory") + } + static class UEditorDataStorageFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UEditorDataStorageFactory; + +// Class TypedElementFramework.Test_PingPongBetweenPhaseFactory +// 0x0000 (0x0028 - 0x0028) +class UTest_PingPongBetweenPhaseFactory final : public UEditorDataStorageFactory +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("Test_PingPongBetweenPhaseFactory") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"Test_PingPongBetweenPhaseFactory") + } + static class UTest_PingPongBetweenPhaseFactory* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTest_PingPongBetweenPhaseFactory; + +// Class TypedElementFramework.TypedElementHandleLibrary +// 0x0000 (0x0028 - 0x0028) +class UTypedElementHandleLibrary final : public UObject +{ +public: + static bool Equal(const struct FScriptTypedElementHandle& LHS, const struct FScriptTypedElementHandle& RHS); + static bool IsSet(const struct FScriptTypedElementHandle& ElementHandle); + static bool NotEqual(const struct FScriptTypedElementHandle& LHS, const struct FScriptTypedElementHandle& RHS); + static void Release(struct FScriptTypedElementHandle& ElementHandle); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementHandleLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementHandleLibrary") + } + static class UTypedElementHandleLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTypedElementHandleLibrary; + +// Class TypedElementFramework.TypedElementListLibrary +// 0x0000 (0x0028 - 0x0028) +class UTypedElementListLibrary final : public UObject +{ +public: + static bool Add(const struct FScriptTypedElementListProxy& ElementList, const struct FScriptTypedElementHandle& ElementHandle); + static void Append(const struct FScriptTypedElementListProxy& ElementList, const TArray& ElementHandles); + static void AppendList(const struct FScriptTypedElementListProxy& ElementList, const struct FScriptTypedElementListProxy& OtherElementList); + static struct FScriptTypedElementListProxy Clone(const struct FScriptTypedElementListProxy& ElementList); + static bool Contains(const struct FScriptTypedElementListProxy& ElementList, const struct FScriptTypedElementHandle& ElementHandle); + static int32 CountElements(const struct FScriptTypedElementListProxy& ElementList, const TSubclassOf BaseInterfaceType); + static int32 CountElementsOfType(const struct FScriptTypedElementListProxy& ElementList, const class FName ElementTypeName); + static struct FScriptTypedElementListProxy CreateScriptElementList(class UTypedElementRegistry* Registry); + static void Empty(const struct FScriptTypedElementListProxy& ElementList, const int32 Slack); + static struct FScriptTypedElementHandle GetElementHandleAt(const struct FScriptTypedElementListProxy& ElementList, const int32 Index_0); + static TArray GetElementHandles(const struct FScriptTypedElementListProxy& ElementList, const TSubclassOf BaseInterfaceType); + static class UObject* GetElementInterface(const struct FScriptTypedElementListProxy& ElementList, const struct FScriptTypedElementHandle& ElementHandle, const TSubclassOf BaseInterfaceType); + static bool HasElements(const struct FScriptTypedElementListProxy& ElementList, const TSubclassOf BaseInterfaceType); + static bool HasElementsOfType(const struct FScriptTypedElementListProxy& ElementList, const class FName ElementTypeName); + static bool IsValidIndex(const struct FScriptTypedElementListProxy& ElementList, const int32 Index_0); + static int32 Num(const struct FScriptTypedElementListProxy& ElementList); + static bool Remove(const struct FScriptTypedElementListProxy& ElementList, const struct FScriptTypedElementHandle& ElementHandle); + static void Reserve(const struct FScriptTypedElementListProxy& ElementList, const int32 Size); + static void Reset(const struct FScriptTypedElementListProxy& ElementList); + static void Shrink(const struct FScriptTypedElementListProxy& ElementList); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementListLibrary") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementListLibrary") + } + static class UTypedElementListLibrary* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTypedElementListLibrary; + +// Class TypedElementFramework.TypedElementCounterInterface +// 0x0000 (0x0000 - 0x0000) +class ITypedElementCounterInterface final +{ +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementCounterInterface") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementCounterInterface") + } + static class ITypedElementCounterInterface* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_ITypedElementCounterInterface; + +// Class TypedElementFramework.TypedElementRegistry +// 0x0920 (0x0948 - 0x0028) +class UTypedElementRegistry final : public UObject +{ +public: + uint8 Pad_28[0x920]; // 0x0028(0x0920)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UTypedElementRegistry* GetInstance(); + + class UObject* GetElementInterface(const struct FScriptTypedElementHandle& InElementHandle, const TSubclassOf InBaseInterfaceType) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TypedElementRegistry") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TypedElementRegistry") + } + static class UTypedElementRegistry* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTypedElementRegistry; + +// Class TypedElementFramework.TestTypedElementInterfaceA +// 0x0000 (0x0000 - 0x0000) +class ITestTypedElementInterfaceA final +{ +public: + class FText GetDisplayName(const struct FScriptTypedElementHandle& InElementHandle); + bool SetDisplayName(const struct FScriptTypedElementHandle& InElementHandle, const class FText& InNewName, bool bNotify); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceA") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceA") + } + static class ITestTypedElementInterfaceA* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_ITestTypedElementInterfaceA; + +// Class TypedElementFramework.TestTypedElementInterfaceB +// 0x0000 (0x0000 - 0x0000) +class ITestTypedElementInterfaceB final +{ +public: + bool MarkAsTested(const struct FScriptTypedElementHandle& InElementHandle); + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceB") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceB") + } + static class ITestTypedElementInterfaceB* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_ITestTypedElementInterfaceB; + +// Class TypedElementFramework.TestTypedElementInterfaceC +// 0x0000 (0x0000 - 0x0000) +class ITestTypedElementInterfaceC final +{ +public: + bool GetIsTested(const struct FScriptTypedElementHandle& InElementHandle) const; + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceC") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceC") + } + static class ITestTypedElementInterfaceC* GetDefaultObj() + { + return GetDefaultObjImpl(); + } + + class UObject* AsUObject() + { + return reinterpret_cast(this); + } + const class UObject* AsUObject() const + { + return reinterpret_cast(this); + } +}; +DUMPER7_ASSERTS_ITestTypedElementInterfaceC; + +// Class TypedElementFramework.TestTypedElementInterfaceA_ImplTyped +// 0x0008 (0x0030 - 0x0028) +class UTestTypedElementInterfaceA_ImplTyped final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceA_ImplTyped") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceA_ImplTyped") + } + static class UTestTypedElementInterfaceA_ImplTyped* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTestTypedElementInterfaceA_ImplTyped; + +// Class TypedElementFramework.TestTypedElementInterfaceA_ImplUntyped +// 0x0008 (0x0030 - 0x0028) +class UTestTypedElementInterfaceA_ImplUntyped final : public UObject +{ +public: + uint8 Pad_28[0x8]; // 0x0028(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceA_ImplUntyped") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceA_ImplUntyped") + } + static class UTestTypedElementInterfaceA_ImplUntyped* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTestTypedElementInterfaceA_ImplUntyped; + +// Class TypedElementFramework.TestTypedElementInterfaceBAndC_Typed +// 0x0010 (0x0038 - 0x0028) +class UTestTypedElementInterfaceBAndC_Typed final : public UObject +{ +public: + uint8 Pad_28[0x10]; // 0x0028(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) + +public: + static class UClass* StaticClass() + { + STATIC_CLASS_IMPL("TestTypedElementInterfaceBAndC_Typed") + } + static const class FName& StaticName() + { + STATIC_NAME_IMPL(L"TestTypedElementInterfaceBAndC_Typed") + } + static class UTestTypedElementInterfaceBAndC_Typed* GetDefaultObj() + { + return GetDefaultObjImpl(); + } +}; +DUMPER7_ASSERTS_UTestTypedElementInterfaceBAndC_Typed; + +} + diff --git a/TormentedSouls2/SDK/TypedElementFramework_structs.hpp b/TormentedSouls2/SDK/TypedElementFramework_structs.hpp new file mode 100644 index 0000000..16096d5 --- /dev/null +++ b/TormentedSouls2/SDK/TypedElementFramework_structs.hpp @@ -0,0 +1,762 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: TypedElementFramework + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" +#include "SlateCore_structs.hpp" + + +namespace SDK +{ + +// Enum TypedElementFramework.FTypedElementAlertColumnType +// NumValues: 0x0003 +enum class EFTypedElementAlertColumnType : uint8 +{ + Error = 0, + Warning = 1, + MAX = 2, +}; + +// Enum TypedElementFramework.ESCCModification +// NumValues: 0x0005 +enum class ESCCModification : uint32 +{ + Modified = 0, + Added = 1, + Removed = 2, + Conflicted = 3, + ESCCModification_MAX = 4, +}; + +// ScriptStruct TypedElementFramework.EditorDataStorageColumn +// 0x0000 (0x0000 - 0x0000) +#pragma pack(push, 0x1) +struct alignas(0x01) FEditorDataStorageColumn +{ +}; +#pragma pack(pop) +//_FEditorDataStorageColumn; + +// ScriptStruct TypedElementFramework.SCCUserInfo +// 0x0010 (0x0010 - 0x0000) +struct FSCCUserInfo final +{ +public: + class FString Name; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FSCCUserInfo; + +// ScriptStruct TypedElementFramework.ScriptTypedElementHandle +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FScriptTypedElementHandle final +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FScriptTypedElementHandle; + +// ScriptStruct TypedElementFramework.TypedElementAlertColumn +// 0x0020 (0x0020 - 0x0000) +struct FTypedElementAlertColumn final : public FEditorDataStorageColumn +{ +public: + class FText Message; // 0x0000(0x0010)(NativeAccessSpecifierPublic) + uint8 Pad_10[0x8]; // 0x0010(0x0008)(Fixing Size After Last Property [ Dumper-7 ]) + EFTypedElementAlertColumnType AlertType; // 0x0018(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + uint8 Pad_19[0x7]; // 0x0019(0x0007)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementAlertColumn; + +// ScriptStruct TypedElementFramework.TypedElementChildAlertColumn +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FTypedElementChildAlertColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementChildAlertColumn; + +// ScriptStruct TypedElementFramework.TypedElementAlertActionColumn +// 0x0040 (0x0040 - 0x0000) +struct alignas(0x10) FTypedElementAlertActionColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x40]; // 0x0000(0x0040)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementAlertActionColumn; + +// ScriptStruct TypedElementFramework.EditorDataStorageTag +// 0x0001 (0x0001 - 0x0000) +struct FEditorDataStorageTag +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FEditorDataStorageTag; + +// ScriptStruct TypedElementFramework.TypedElementUObjectColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FTypedElementUObjectColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementUObjectColumn; + +// ScriptStruct TypedElementFramework.TypedElementUObjectIdColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementUObjectIdColumn final : public FEditorDataStorageColumn +{ +public: + uint32 ID; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) + int32 SerialNumber; // 0x0004(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementUObjectIdColumn; + +// ScriptStruct TypedElementFramework.TypedElementExternalObjectColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FTypedElementExternalObjectColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementExternalObjectColumn; + +// ScriptStruct TypedElementFramework.TypedElementClassDefaultObjectTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementClassDefaultObjectTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementClassDefaultObjectTag; + +// ScriptStruct TypedElementFramework.TypedElementActorTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementActorTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementActorTag; + +// ScriptStruct TypedElementFramework.TypedElementWorldColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FTypedElementWorldColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementWorldColumn; + +// ScriptStruct TypedElementFramework.TypedElementPropertyBagPlaceholderTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementPropertyBagPlaceholderTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementPropertyBagPlaceholderTag; + +// ScriptStruct TypedElementFramework.TypedElementLoosePropertyTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementLoosePropertyTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementLoosePropertyTag; + +// ScriptStruct TypedElementFramework.TypedElementPropertyBagPlaceholderTypeInfoColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FTypedElementPropertyBagPlaceholderTypeInfoColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementPropertyBagPlaceholderTypeInfoColumn; + +// ScriptStruct TypedElementFramework.Test_PingPongPrePhys +// 0x0008 (0x0008 - 0x0000) +struct FTest_PingPongPrePhys final : public FEditorDataStorageColumn +{ +public: + uint64 Value; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTest_PingPongPrePhys; + +// ScriptStruct TypedElementFramework.Test_PingPongDurPhys +// 0x0008 (0x0008 - 0x0000) +struct FTest_PingPongDurPhys final : public FEditorDataStorageColumn +{ +public: + uint64 Value; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTest_PingPongDurPhys; + +// ScriptStruct TypedElementFramework.Test_PingPongPostPhys +// 0x0008 (0x0008 - 0x0000) +struct FTest_PingPongPostPhys final : public FEditorDataStorageColumn +{ +public: + uint64 Value; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTest_PingPongPostPhys; + +// ScriptStruct TypedElementFramework.TypedElementWidgetConstructor +// 0x0028 (0x0028 - 0x0000) +struct alignas(0x08) FTypedElementWidgetConstructor +{ +public: + uint8 Pad_0[0x28]; // 0x0000(0x0028)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementWidgetConstructor; + +// ScriptStruct TypedElementFramework.SimpleWidgetConstructor +// 0x0000 (0x0028 - 0x0028) +struct FSimpleWidgetConstructor final : public FTypedElementWidgetConstructor +{ +}; +//_FSimpleWidgetConstructor; + +// ScriptStruct TypedElementFramework.FolderTag +// 0x0000 (0x0001 - 0x0001) +struct FFolderTag final : public FEditorDataStorageTag +{ +}; +//_FFolderTag; + +// ScriptStruct TypedElementFramework.TedsRowHandle +// 0x0008 (0x0008 - 0x0000) +struct FTedsRowHandle final +{ +public: + uint64 RowHandle; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTedsRowHandle; + +// ScriptStruct TypedElementFramework.TableRowParentColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FTableRowParentColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTableRowParentColumn; + +// ScriptStruct TypedElementFramework.UnresolvedTableRowParentColumn +// 0x0008 (0x0008 - 0x0000) +struct FUnresolvedTableRowParentColumn final : public FEditorDataStorageColumn +{ +public: + uint64 ParentIdHash; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FUnresolvedTableRowParentColumn; + +// ScriptStruct TypedElementFramework.TypedElementIconOverrideColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementIconOverrideColumn final : public FEditorDataStorageColumn +{ +public: + class FName IconName; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementIconOverrideColumn; + +// ScriptStruct TypedElementFramework.TypedElementLabelColumn +// 0x0010 (0x0010 - 0x0000) +struct FTypedElementLabelColumn final : public FEditorDataStorageColumn +{ +public: + class FString Label; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementLabelColumn; + +// ScriptStruct TypedElementFramework.TypedElementLabelHashColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementLabelHashColumn final : public FEditorDataStorageColumn +{ +public: + uint64 LabelHash; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementLabelHashColumn; + +// ScriptStruct TypedElementFramework.ScriptTypedElementListProxy +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FScriptTypedElementListProxy final +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FScriptTypedElementListProxy; + +// ScriptStruct TypedElementFramework.TypedElementSyncBackToWorldTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementSyncBackToWorldTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementSyncBackToWorldTag; + +// ScriptStruct TypedElementFramework.TypedElementSyncFromWorldTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementSyncFromWorldTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementSyncFromWorldTag; + +// ScriptStruct TypedElementFramework.TypedElementSyncFromWorldInteractiveTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementSyncFromWorldInteractiveTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementSyncFromWorldInteractiveTag; + +// ScriptStruct TypedElementFramework.TypedElementRowReferenceColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FTypedElementRowReferenceColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementRowReferenceColumn; + +// ScriptStruct TypedElementFramework.NameColumn +// 0x0008 (0x0008 - 0x0000) +struct FNameColumn final : public FEditorDataStorageColumn +{ +public: + class FName Name; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FNameColumn; + +// ScriptStruct TypedElementFramework.ObjectOverrideColumn +// 0x0001 (0x0001 - 0x0000) +struct FObjectOverrideColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FObjectOverrideColumn; + +// ScriptStruct TypedElementFramework.TypedElementPackageUnresolvedReference +// 0x0018 (0x0018 - 0x0000) +struct alignas(0x08) FTypedElementPackageUnresolvedReference final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x18]; // 0x0000(0x0018)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementPackageUnresolvedReference; + +// ScriptStruct TypedElementFramework.TypedElementPackageReference +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x08) FTypedElementPackageReference final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementPackageReference; + +// ScriptStruct TypedElementFramework.TypedElementPackageUpdatedTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementPackageUpdatedTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementPackageUpdatedTag; + +// ScriptStruct TypedElementFramework.TypedElementPackagePathColumn +// 0x0010 (0x0010 - 0x0000) +struct FTypedElementPackagePathColumn final : public FEditorDataStorageColumn +{ +public: + class FString Path; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementPackagePathColumn; + +// ScriptStruct TypedElementFramework.TypedElementPackageLoadedPathColumn +// 0x000C (0x000C - 0x0000) +struct alignas(0x04) FTypedElementPackageLoadedPathColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0xC]; // 0x0000(0x000C)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementPackageLoadedPathColumn; + +// ScriptStruct TypedElementFramework.TypedElementPivotOffset +// 0x0018 (0x0018 - 0x0000) +struct FTypedElementPivotOffset final : public FEditorDataStorageColumn +{ +public: + struct FVector Offset; // 0x0000(0x0018)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementPivotOffset; + +// ScriptStruct TypedElementFramework.SCCInChangelistTag +// 0x0000 (0x0001 - 0x0001) +struct FSCCInChangelistTag final : public FEditorDataStorageTag +{ +}; +//_FSCCInChangelistTag; + +// ScriptStruct TypedElementFramework.SCCStagedTag +// 0x0000 (0x0001 - 0x0001) +struct FSCCStagedTag final : public FEditorDataStorageTag +{ +}; +//_FSCCStagedTag; + +// ScriptStruct TypedElementFramework.SCCLockedTag +// 0x0000 (0x0001 - 0x0001) +struct FSCCLockedTag final : public FEditorDataStorageTag +{ +}; +//_FSCCLockedTag; + +// ScriptStruct TypedElementFramework.SCCExternallyEditedTag +// 0x0000 (0x0001 - 0x0001) +struct FSCCExternallyEditedTag final : public FEditorDataStorageTag +{ +}; +//_FSCCExternallyEditedTag; + +// ScriptStruct TypedElementFramework.SCCNotCurrentTag +// 0x0000 (0x0001 - 0x0001) +struct FSCCNotCurrentTag final : public FEditorDataStorageTag +{ +}; +//_FSCCNotCurrentTag; + +// ScriptStruct TypedElementFramework.SCCStatusColumn +// 0x0004 (0x0004 - 0x0000) +struct FSCCStatusColumn final : public FEditorDataStorageColumn +{ +public: + ESCCModification Modification; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FSCCStatusColumn; + +// ScriptStruct TypedElementFramework.SCCRevisionId +// 0x0014 (0x0014 - 0x0000) +struct FSCCRevisionId final +{ +public: + uint32 ID[0x5]; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FSCCRevisionId; + +// ScriptStruct TypedElementFramework.SCCRevisionIdColumn +// 0x0014 (0x0014 - 0x0000) +struct FSCCRevisionIdColumn final : public FEditorDataStorageColumn +{ +public: + struct FSCCRevisionId RevisionId; // 0x0000(0x0014)(NoDestructor, NativeAccessSpecifierPublic) +}; +//_FSCCRevisionIdColumn; + +// ScriptStruct TypedElementFramework.SCCExternalRevisionIdColumn +// 0x0014 (0x0014 - 0x0000) +struct FSCCExternalRevisionIdColumn final : public FEditorDataStorageColumn +{ +public: + struct FSCCRevisionId RevisionId; // 0x0000(0x0014)(NoDestructor, NativeAccessSpecifierPublic) +}; +//_FSCCExternalRevisionIdColumn; + +// ScriptStruct TypedElementFramework.SCCExternallyLockedColumn +// 0x0010 (0x0010 - 0x0000) +struct FSCCExternallyLockedColumn final : public FEditorDataStorageColumn +{ +public: + struct FSCCUserInfo LockedBy; // 0x0000(0x0010)(NativeAccessSpecifierPublic) +}; +//_FSCCExternallyLockedColumn; + +// ScriptStruct TypedElementFramework.TypedElementSelectionColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementSelectionColumn final : public FEditorDataStorageColumn +{ +public: + class FName SelectionSet; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementSelectionColumn; + +// ScriptStruct TypedElementFramework.TypedElementSlateWidgetReferenceColumn +// 0x0030 (0x0030 - 0x0000) +struct alignas(0x08) FTypedElementSlateWidgetReferenceColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x30]; // 0x0000(0x0030)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementSlateWidgetReferenceColumn; + +// ScriptStruct TypedElementFramework.TypedElementSlateWidgetReferenceDeletesRowTag +// 0x0000 (0x0001 - 0x0001) +struct FTypedElementSlateWidgetReferenceDeletesRowTag final : public FEditorDataStorageTag +{ +}; +//_FTypedElementSlateWidgetReferenceDeletesRowTag; + +// ScriptStruct TypedElementFramework.DisplayNameColumn +// 0x0010 (0x0010 - 0x0000) +struct FDisplayNameColumn final : public FEditorDataStorageColumn +{ +public: + class FText DisplayName; // 0x0000(0x0010)(NativeAccessSpecifierPublic) +}; +//_FDisplayNameColumn; + +// ScriptStruct TypedElementFramework.DescriptionColumn +// 0x0010 (0x0010 - 0x0000) +struct FDescriptionColumn final : public FEditorDataStorageColumn +{ +public: + class FText Description; // 0x0000(0x0010)(NativeAccessSpecifierPublic) +}; +//_FDescriptionColumn; + +// ScriptStruct TypedElementFramework.SlateColorColumn +// 0x0014 (0x0014 - 0x0000) +struct FSlateColorColumn final : public FEditorDataStorageColumn +{ +public: + struct FSlateColor Color; // 0x0000(0x0014)(NativeAccessSpecifierPublic) +}; +//_FSlateColorColumn; + +// ScriptStruct TypedElementFramework.TestColumnA +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnA final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnA; + +// ScriptStruct TypedElementFramework.TestColumnB +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnB final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnB; + +// ScriptStruct TypedElementFramework.TestColumnC +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnC final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnC; + +// ScriptStruct TypedElementFramework.TestColumnD +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnD final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnD; + +// ScriptStruct TypedElementFramework.TestColumnE +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnE final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnE; + +// ScriptStruct TypedElementFramework.TestColumnF +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnF final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnF; + +// ScriptStruct TypedElementFramework.TestColumnG +// 0x0001 (0x0001 - 0x0000) +struct FTestColumnG final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTestColumnG; + +// ScriptStruct TypedElementFramework.TestColumnInt +// 0x0004 (0x0004 - 0x0000) +struct FTestColumnInt final : public FEditorDataStorageColumn +{ +public: + int32 TestInt; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTestColumnInt; + +// ScriptStruct TypedElementFramework.TestColumnString +// 0x0010 (0x0010 - 0x0000) +struct FTestColumnString final : public FEditorDataStorageColumn +{ +public: + class FString TestString; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTestColumnString; + +// ScriptStruct TypedElementFramework.TestTagColumnA +// 0x0000 (0x0001 - 0x0001) +struct FTestTagColumnA final : public FEditorDataStorageTag +{ +}; +//_FTestTagColumnA; + +// ScriptStruct TypedElementFramework.TestTagColumnB +// 0x0000 (0x0001 - 0x0001) +struct FTestTagColumnB final : public FEditorDataStorageTag +{ +}; +//_FTestTagColumnB; + +// ScriptStruct TypedElementFramework.TestTagColumnC +// 0x0000 (0x0001 - 0x0001) +struct FTestTagColumnC final : public FEditorDataStorageTag +{ +}; +//_FTestTagColumnC; + +// ScriptStruct TypedElementFramework.TestTagColumnD +// 0x0000 (0x0001 - 0x0001) +struct FTestTagColumnD final : public FEditorDataStorageTag +{ +}; +//_FTestTagColumnD; + +// ScriptStruct TypedElementFramework.TEDSProcessorTestsReferenceColumn +// 0x0010 (0x0010 - 0x0000) +struct alignas(0x08) FTEDSProcessorTestsReferenceColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x10]; // 0x0000(0x0010)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTEDSProcessorTestsReferenceColumn; + +// ScriptStruct TypedElementFramework.TEDSProcessorTests_PrimaryTag +// 0x0000 (0x0001 - 0x0001) +struct FTEDSProcessorTests_PrimaryTag final : public FEditorDataStorageTag +{ +}; +//_FTEDSProcessorTests_PrimaryTag; + +// ScriptStruct TypedElementFramework.TEDSProcessorTests_SecondaryTag +// 0x0000 (0x0001 - 0x0001) +struct FTEDSProcessorTests_SecondaryTag final : public FEditorDataStorageTag +{ +}; +//_FTEDSProcessorTests_SecondaryTag; + +// ScriptStruct TypedElementFramework.TEDSProcessorTests_Linked +// 0x0000 (0x0001 - 0x0001) +struct FTEDSProcessorTests_Linked final : public FEditorDataStorageTag +{ +}; +//_FTEDSProcessorTests_Linked; + +// ScriptStruct TypedElementFramework.TypedElementLocalTransformColumn +// 0x0060 (0x0060 - 0x0000) +struct FTypedElementLocalTransformColumn final : public FEditorDataStorageColumn +{ +public: + struct FTransform Transform; // 0x0000(0x0060)(IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementLocalTransformColumn; + +// ScriptStruct TypedElementFramework.TypedElementClassTypeInfoColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FTypedElementClassTypeInfoColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementClassTypeInfoColumn; + +// ScriptStruct TypedElementFramework.TypedElementScriptStructTypeInfoColumn +// 0x0008 (0x0008 - 0x0000) +struct alignas(0x04) FTypedElementScriptStructTypeInfoColumn final : public FEditorDataStorageColumn +{ +public: + uint8 Pad_0[0x8]; // 0x0000(0x0008)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//_FTypedElementScriptStructTypeInfoColumn; + +// ScriptStruct TypedElementFramework.HideRowFromUITag +// 0x0000 (0x0001 - 0x0001) +struct FHideRowFromUITag final : public FEditorDataStorageTag +{ +}; +//_FHideRowFromUITag; + +// ScriptStruct TypedElementFramework.TypedElementU32IntValueCacheColumn +// 0x0004 (0x0004 - 0x0000) +struct FTypedElementU32IntValueCacheColumn final : public FEditorDataStorageColumn +{ +public: + uint32 Value; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementU32IntValueCacheColumn; + +// ScriptStruct TypedElementFramework.TypedElementI32IntValueCacheColumn +// 0x0004 (0x0004 - 0x0000) +struct FTypedElementI32IntValueCacheColumn final : public FEditorDataStorageColumn +{ +public: + int32 Value; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementI32IntValueCacheColumn; + +// ScriptStruct TypedElementFramework.TypedElementU64IntValueCacheColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementU64IntValueCacheColumn final : public FEditorDataStorageColumn +{ +public: + uint64 Value; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementU64IntValueCacheColumn; + +// ScriptStruct TypedElementFramework.TypedElementI64IntValueCacheColumn +// 0x0008 (0x0008 - 0x0000) +struct FTypedElementI64IntValueCacheColumn final : public FEditorDataStorageColumn +{ +public: + int64 Value; // 0x0000(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementI64IntValueCacheColumn; + +// ScriptStruct TypedElementFramework.TypedElementFloatValueCacheColumn +// 0x0004 (0x0004 - 0x0000) +struct FTypedElementFloatValueCacheColumn final : public FEditorDataStorageColumn +{ +public: + float Value; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementFloatValueCacheColumn; + +// ScriptStruct TypedElementFramework.TypedElementViewportOutlineColorColumn +// 0x0001 (0x0001 - 0x0000) +struct FTypedElementViewportOutlineColorColumn final : public FEditorDataStorageColumn +{ +public: + uint8 SelectionOutlineColorIndex; // 0x0000(0x0001)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementViewportOutlineColorColumn; + +// ScriptStruct TypedElementFramework.TypedElementViewportOverlayColorColumn +// 0x0004 (0x0004 - 0x0000) +struct FTypedElementViewportOverlayColorColumn final : public FEditorDataStorageColumn +{ +public: + struct FColor OverlayColor; // 0x0000(0x0004)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//_FTypedElementViewportOverlayColorColumn; + +} + diff --git a/TormentedSouls2/SDK/UniversalObjectLocator_structs.hpp b/TormentedSouls2/SDK/UniversalObjectLocator_structs.hpp new file mode 100644 index 0000000..6897ae6 --- /dev/null +++ b/TormentedSouls2/SDK/UniversalObjectLocator_structs.hpp @@ -0,0 +1,78 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Package: UniversalObjectLocator + +#include "Basic.hpp" + +#include "CoreUObject_structs.hpp" + + +namespace SDK +{ + +// Enum UniversalObjectLocator.ELocatorResolveFlags +// NumValues: 0x0007 +enum class ELocatorResolveFlags : uint8 +{ + None = 0, + Load = 1, + Unload = 2, + Async = 4, + WillWait = 8, + AsyncWait = 12, + ELocatorResolveFlags_MAX = 13, +}; + +// ScriptStruct UniversalObjectLocator.DirectPathObjectLocator +// 0x0020 (0x0020 - 0x0000) +struct FDirectPathObjectLocator final +{ +public: + struct FSoftObjectPath Path; // 0x0000(0x0020)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FDirectPathObjectLocator; + +// ScriptStruct UniversalObjectLocator.SubObjectLocator +// 0x0010 (0x0010 - 0x0000) +struct FSubObjectLocator final +{ +public: + class FString PathWithinContext; // 0x0000(0x0010)(ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) +}; +//FSubObjectLocator; + +// ScriptStruct UniversalObjectLocator.UniversalObjectLocatorFragment +// 0x0020 (0x0020 - 0x0000) +struct alignas(0x08) FUniversalObjectLocatorFragment final +{ +public: + uint8 Pad_0[0x20]; // 0x0000(0x0020)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FUniversalObjectLocatorFragment; + +// ScriptStruct UniversalObjectLocator.UniversalObjectLocator +// 0x0010 (0x0010 - 0x0000) +struct FUniversalObjectLocator final +{ +public: + TArray Fragments; // 0x0000(0x0010)(ZeroConstructor, NativeAccessSpecifierPrivate) +}; +//FUniversalObjectLocator; + +// ScriptStruct UniversalObjectLocator.UniversalObjectLocatorEmptyPayload +// 0x0001 (0x0001 - 0x0000) +struct FUniversalObjectLocatorEmptyPayload final +{ +public: + uint8 Pad_0[0x1]; // 0x0000(0x0001)(Fixing Struct Size After Last Property [ Dumper-7 ]) +}; +//FUniversalObjectLocatorEmptyPayload; + +} + diff --git a/TormentedSouls2/UnrealContainers.hpp b/TormentedSouls2/UnrealContainers.hpp new file mode 100644 index 0000000..4874083 --- /dev/null +++ b/TormentedSouls2/UnrealContainers.hpp @@ -0,0 +1,909 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// Container implementations with iterators. See https://github.com/Fischsalat/UnrealContainers + +#include +#include +#include +#include "UtfN.hpp" + +namespace UC +{ + typedef int8_t int8; + typedef int16_t int16; + typedef int32_t int32; + typedef int64_t int64; + + typedef uint8_t uint8; + typedef uint16_t uint16; + typedef uint32_t uint32; + typedef uint64_t uint64; + + template + class TArray; + + template + class TSparseArray; + + template + class TSet; + + template + class TMap; + + template + class TPair; + + namespace Iterators + { + class FSetBitIterator; + + template + class TArrayIterator; + + template + class TContainerIterator; + + template + using TSparseArrayIterator = TContainerIterator>; + + template + using TSetIterator = TContainerIterator>; + + template + using TMapIterator = TContainerIterator>; + } + + + namespace ContainerImpl + { + namespace HelperFunctions + { + inline uint32 FloorLog2(uint32 Value) + { + uint32 pos = 0; + if (Value >= 1 << 16) { Value >>= 16; pos += 16; } + if (Value >= 1 << 8) { Value >>= 8; pos += 8; } + if (Value >= 1 << 4) { Value >>= 4; pos += 4; } + if (Value >= 1 << 2) { Value >>= 2; pos += 2; } + if (Value >= 1 << 1) { pos += 1; } + return pos; + } + + inline uint32 CountLeadingZeros(uint32 Value) + { + if (Value == 0) + return 32; + + return 31 - FloorLog2(Value); + } + } + + template + struct TAlignedBytes + { + alignas(Alignment) uint8 Pad[Size]; + }; + + template + class TInlineAllocator + { + public: + template + class ForElementType + { + private: + static constexpr int32 ElementSize = sizeof(ElementType); + static constexpr int32 ElementAlign = alignof(ElementType); + + static constexpr int32 InlineDataSizeBytes = NumInlineElements * ElementSize; + + private: + TAlignedBytes InlineData[NumInlineElements]; + ElementType* SecondaryData; + + public: + ForElementType() + : InlineData{ 0x0 }, SecondaryData(nullptr) + { + } + + ForElementType(ForElementType&&) = default; + ForElementType(const ForElementType&) = default; + + public: + ForElementType& operator=(ForElementType&&) = default; + ForElementType& operator=(const ForElementType&) = default; + + public: + inline const ElementType* GetAllocation() const { return SecondaryData ? SecondaryData : reinterpret_cast(&InlineData); } + + inline uint32 GetNumInlineBytes() const { return NumInlineElements; } + }; + }; + + class FBitArray + { + protected: + static constexpr int32 NumBitsPerDWORD = 32; + static constexpr int32 NumBitsPerDWORDLogTwo = 5; + + private: + TInlineAllocator<4>::ForElementType Data; + int32 NumBits; + int32 MaxBits; + + public: + FBitArray() + : NumBits(0), MaxBits(Data.GetNumInlineBytes() * NumBitsPerDWORD) + { + } + + FBitArray(const FBitArray&) = default; + + FBitArray(FBitArray&&) = default; + + public: + FBitArray& operator=(FBitArray&&) = default; + + FBitArray& operator=(const FBitArray& Other) = default; + + private: + inline void VerifyIndex(int32 Index) const { if (!IsValidIndex(Index)) throw std::out_of_range("Index was out of range!"); } + + public: + inline int32 Num() const { return NumBits; } + inline int32 Max() const { return MaxBits; } + + inline const uint32* GetData() const { return reinterpret_cast(Data.GetAllocation()); } + + inline bool IsValidIndex(int32 Index) const { return Index >= 0 && Index < NumBits; } + + inline bool IsValid() const { return GetData() && NumBits > 0; } + + public: + inline bool operator[](int32 Index) const { VerifyIndex(Index); return GetData()[Index / NumBitsPerDWORD] & (1 << (Index & (NumBitsPerDWORD - 1))); } + + inline bool operator==(const FBitArray& Other) const { return NumBits == Other.NumBits && GetData() == Other.GetData(); } + inline bool operator!=(const FBitArray& Other) const { return NumBits != Other.NumBits || GetData() != Other.GetData(); } + + public: + friend Iterators::FSetBitIterator begin(const FBitArray& Array); + friend Iterators::FSetBitIterator end (const FBitArray& Array); + }; + + template + union TSparseArrayElementOrFreeListLink + { + SparseArrayType ElementData; + + struct + { + int32 PrevFreeIndex; + int32 NextFreeIndex; + }; + }; + + template + class SetElement + { + private: + template + friend class TSet; + + private: + SetType Value; + int32 HashNextId; + int32 HashIndex; + }; + } + + + template + class TPair + { + public: + KeyType First; + ValueType Second; + + public: + TPair(KeyType Key, ValueType Value) + : First(Key), Second(Value) + { + } + + public: + inline KeyType& Key() { return First; } + inline const KeyType& Key() const { return First; } + + inline ValueType& Value() { return Second; } + inline const ValueType& Value() const { return Second; } + }; + + template + class TArray + { + private: + template + friend class TAllocatedArray; + + template + friend class TSparseArray; + + protected: + static constexpr uint64 ElementAlign = alignof(ArrayElementType); + static constexpr uint64 ElementSize = sizeof(ArrayElementType); + + protected: + ArrayElementType* Data; + int32 NumElements; + int32 MaxElements; + + public: + TArray() + : TArray(nullptr, 0, 0) + { + } + + TArray(ArrayElementType* Data, int32 NumElements, int32 MaxElements) + : Data(Data), NumElements(NumElements), MaxElements(MaxElements) + { + } + + TArray(const TArray&) = default; + + TArray(TArray&&) = default; + + public: + TArray& operator=(TArray&&) = default; + TArray& operator=(const TArray&) = default; + + private: + inline int32 GetSlack() const { return MaxElements - NumElements; } + + inline void VerifyIndex(int32 Index) const { if (!IsValidIndex(Index)) throw std::out_of_range("Index was out of range!"); } + + inline ArrayElementType& GetUnsafe(int32 Index) { return Data[Index]; } + inline const ArrayElementType& GetUnsafe(int32 Index) const { return Data[Index]; } + + public: + /* Adds to the array if there is still space for one more element */ + inline bool Add(const ArrayElementType& Element) + { + if (GetSlack() <= 0) + return false; + + Data[NumElements] = Element; + NumElements++; + + return true; + } + + inline bool Remove(int32 Index) + { + if (!IsValidIndex(Index)) + return false; + + NumElements--; + + for (int i = Index; i < NumElements; i++) + { + /* NumElements was decremented, acessing i + 1 is safe */ + Data[i] = Data[i + 1]; + } + + return true; + } + + inline void Clear() + { + NumElements = 0; + + if (Data) + memset(Data, 0, NumElements * ElementSize); + } + + public: + inline int32 Num() const { return NumElements; } + inline int32 Max() const { return MaxElements; } + + inline const ArrayElementType* GetDataPtr() const { return Data; } + + inline bool IsValidIndex(int32 Index) const { return Data && Index >= 0 && Index < NumElements; } + + inline bool IsValid() const { return Data && NumElements > 0 && MaxElements >= NumElements; } + + public: + inline ArrayElementType& operator[](int32 Index) { VerifyIndex(Index); return Data[Index]; } + inline const ArrayElementType& operator[](int32 Index) const { VerifyIndex(Index); return Data[Index]; } + + inline bool operator==(const TArray& Other) const { return Data == Other.Data; } + inline bool operator!=(const TArray& Other) const { return Data != Other.Data; } + + inline explicit operator bool() const { return IsValid(); }; + + public: + template friend Iterators::TArrayIterator begin(const TArray& Array); + template friend Iterators::TArrayIterator end (const TArray& Array); + }; + + class FString : public TArray + { + public: + friend std::ostream& operator<<(std::ostream& Stream, const UC::FString& Str) { return Stream << Str.ToString(); } + + public: + using TArray::TArray; + + FString(const wchar_t* Str) + { + const uint32 NullTerminatedLength = static_cast(wcslen(Str) + 0x1); + + Data = const_cast(Str); + NumElements = NullTerminatedLength; + MaxElements = NullTerminatedLength; + } + + FString(wchar_t* Str, int32 Num, int32 Max) + { + Data = Str; + NumElements = Num; + MaxElements = Max; + } + + public: + inline std::string ToString() const + { + if (*this) + { + return UtfN::Utf16StringToUtf8String(Data, NumElements - 1); // Exclude null-terminator + } + + return ""; + } + + inline std::wstring ToWString() const + { + if (*this) + return std::wstring(Data); + + return L""; + } + + public: + inline wchar_t* CStr() { return Data; } + inline const wchar_t* CStr() const { return Data; } + + public: + inline bool operator==(const FString& Other) const { return Other ? NumElements == Other.NumElements && wcscmp(Data, Other.Data) == 0 : false; } + inline bool operator!=(const FString& Other) const { return Other ? NumElements != Other.NumElements || wcscmp(Data, Other.Data) != 0 : true; } + }; + + // Utf8String that assumes C-APIs (strlen, strcmp) behaviour works for char8_t like Ansi strings, execept it's counting/comparing bytes not characters. + class FUtf8String : public TArray + { + public: + friend std::ostream& operator<<(std::ostream& Stream, const UC::FUtf8String& Str) { return Stream << Str.ToString(); } + + private: + inline const char* GetDataAsConstCharPtr() const + { + return reinterpret_cast(Data); + } + + public: + using TArray::TArray; + + FUtf8String(const char8_t* Str) + { + Data = const_cast(Str); + + const uint32 NullTerminatedLength = static_cast(strlen(GetDataAsConstCharPtr()) + 0x1); + + NumElements = NullTerminatedLength; + MaxElements = NullTerminatedLength; + } + + FUtf8String(char8_t* Str, int32 Num, int32 Max) + { + Data = Str; + NumElements = Num; + MaxElements = Max; + } + + public: + inline std::string ToString() const + { + if (*this) + { + return std::string(GetDataAsConstCharPtr(), NumElements - 1); // Exclude null-terminator + } + + return ""; + } + + inline std::wstring ToWString() const + { + if (*this) + return UtfN::StringToWString(ToString()); // Exclude null-terminator + + return L""; + } + + public: + inline char8_t* CStr() { return Data; } + inline const char8_t* CStr() const { return Data; } + + public: + inline bool operator==(const FUtf8String& Other) const { return Other ? NumElements == Other.NumElements && strcmp(GetDataAsConstCharPtr(), Other.GetDataAsConstCharPtr()) == 0 : false; } + inline bool operator!=(const FUtf8String& Other) const { return Other ? NumElements != Other.NumElements || strcmp(GetDataAsConstCharPtr(), Other.GetDataAsConstCharPtr()) != 0 : true; } + }; + + class FAnsiString : public TArray + { + public: + friend std::ostream& operator<<(std::ostream& Stream, const UC::FAnsiString& Str) { return Stream << Str.ToString(); } + + public: + using TArray::TArray; + + FAnsiString(const char* Str) + { + const uint32 NullTerminatedLength = static_cast(strlen(Str) + 0x1); + + Data = const_cast(Str); + NumElements = NullTerminatedLength; + MaxElements = NullTerminatedLength; + } + + FAnsiString(char* Str, int32 Num, int32 Max) + { + Data = Str; + NumElements = Num; + MaxElements = Max; + } + + public: + inline std::string ToString() const + { + if (*this) + { + return std::string(Data, NumElements - 1); // Exclude null-terminator + } + + return ""; + } + + inline std::wstring ToWString() const + { + if (*this) + return UtfN::StringToWString(ToString()); // Exclude null-terminator + + return L""; + } + + public: + inline char* CStr() { return Data; } + inline const char* CStr() const { return Data; } + + public: + inline bool operator==(const FAnsiString& Other) const { return Other ? NumElements == Other.NumElements && strcmp(Data, Other.Data) == 0 : false; } + inline bool operator!=(const FAnsiString& Other) const { return Other ? NumElements != Other.NumElements || strcmp(Data, Other.Data) != 0 : true; } + }; + + + /* + * Class to allow construction of a TArray, that uses c-style standard-library memory allocation. + * + * Useful for calling functions that expect a buffer of a certain size and do not reallocate that buffer. + * This avoids leaking memory, if the array would otherwise be allocated by the engine, and couldn't be freed without FMemory-functions. + */ + template + class TAllocatedArray : public TArray + { + public: + TAllocatedArray() = delete; + + public: + TAllocatedArray(int32 Size) + { + this->Data = static_cast(malloc(Size * sizeof(ArrayElementType))); + this->NumElements = 0x0; + this->MaxElements = Size; + } + + ~TAllocatedArray() + { + if (this->Data) + free(this->Data); + + this->NumElements = 0x0; + this->MaxElements = 0x0; + } + + public: + inline operator TArray() { return *reinterpret_cast< TArray*>(this); } + inline operator const TArray() const { return *reinterpret_cast*>(this); } + }; + + /* + * Class to allow construction of an FString, that uses c-style standard-library memory allocation. + * + * Useful for calling functions that expect a buffer of a certain size and do not reallocate that buffer. + * This avoids leaking memory, if the array would otherwise be allocated by the engine, and couldn't be freed without FMemory-functions. + */ + class FAllocatedString : public FString + { + public: + FAllocatedString() = delete; + + public: + FAllocatedString(int32 Size) + { + Data = static_cast(malloc(Size * sizeof(wchar_t))); + NumElements = 0x0; + MaxElements = Size; + } + + ~FAllocatedString() + { + if (Data) + free(Data); + + NumElements = 0x0; + MaxElements = 0x0; + } + + public: + inline operator FString() { return *reinterpret_cast< FString*>(this); } + inline operator const FString() const { return *reinterpret_cast(this); } + }; + template + class TSparseArray + { + private: + static constexpr uint32 ElementAlign = alignof(SparseArrayElementType); + static constexpr uint32 ElementSize = sizeof(SparseArrayElementType); + + private: + using FElementOrFreeListLink = ContainerImpl::TSparseArrayElementOrFreeListLink>; + + private: + TArray Data; + ContainerImpl::FBitArray AllocationFlags; + int32 FirstFreeIndex; + int32 NumFreeIndices; + + public: + TSparseArray() + : FirstFreeIndex(-1), NumFreeIndices(0) + { + } + + TSparseArray(TSparseArray&&) = default; + TSparseArray(const TSparseArray&) = default; + + public: + TSparseArray& operator=(TSparseArray&&) = default; + TSparseArray& operator=(const TSparseArray&) = default; + + private: + inline void VerifyIndex(int32 Index) const { if (!IsValidIndex(Index)) throw std::out_of_range("Index was out of range!"); } + + public: + inline int32 NumAllocated() const { return Data.Num(); } + + inline int32 Num() const { return NumAllocated() - NumFreeIndices; } + inline int32 Max() const { return Data.Max(); } + + inline bool IsValidIndex(int32 Index) const { return Data.IsValidIndex(Index) && AllocationFlags[Index]; } + + inline bool IsValid() const { return Data.IsValid() && AllocationFlags.IsValid(); } + + public: + const ContainerImpl::FBitArray& GetAllocationFlags() const { return AllocationFlags; } + + public: + inline SparseArrayElementType& operator[](int32 Index) { VerifyIndex(Index); return *reinterpret_cast(&Data.GetUnsafe(Index).ElementData); } + inline const SparseArrayElementType& operator[](int32 Index) const { VerifyIndex(Index); return *reinterpret_cast(&Data.GetUnsafe(Index).ElementData); } + + inline bool operator==(const TSparseArray& Other) const { return Data == Other.Data; } + inline bool operator!=(const TSparseArray& Other) const { return Data != Other.Data; } + + public: + template friend Iterators::TSparseArrayIterator begin(const TSparseArray& Array); + template friend Iterators::TSparseArrayIterator end (const TSparseArray& Array); + }; + + template + class TSet + { + private: + static constexpr uint32 ElementAlign = alignof(SetElementType); + static constexpr uint32 ElementSize = sizeof(SetElementType); + + private: + using SetDataType = ContainerImpl::SetElement; + using HashType = ContainerImpl::TInlineAllocator<1>::ForElementType; + + private: + TSparseArray Elements; + HashType Hash; + int32 HashSize; + + public: + TSet() + : HashSize(0) + { + } + + TSet(TSet&&) = default; + TSet(const TSet&) = default; + + public: + TSet& operator=(TSet&&) = default; + TSet& operator=(const TSet&) = default; + + private: + inline void VerifyIndex(int32 Index) const { if (!IsValidIndex(Index)) throw std::out_of_range("Index was out of range!"); } + + public: + inline int32 NumAllocated() const { return Elements.NumAllocated(); } + + inline int32 Num() const { return Elements.Num(); } + inline int32 Max() const { return Elements.Max(); } + + inline bool IsValidIndex(int32 Index) const { return Elements.IsValidIndex(Index); } + + inline bool IsValid() const { return Elements.IsValid(); } + + public: + const ContainerImpl::FBitArray& GetAllocationFlags() const { return Elements.GetAllocationFlags(); } + + public: + inline SetElementType& operator[] (int32 Index) { return Elements[Index].Value; } + inline const SetElementType& operator[] (int32 Index) const { return Elements[Index].Value; } + + inline bool operator==(const TSet& Other) const { return Elements == Other.Elements; } + inline bool operator!=(const TSet& Other) const { return Elements != Other.Elements; } + + public: + template friend Iterators::TSetIterator begin(const TSet& Set); + template friend Iterators::TSetIterator end (const TSet& Set); + }; + + template + class TMap + { + public: + using ElementType = TPair; + + private: + TSet Elements; + + private: + inline void VerifyIndex(int32 Index) const { if (!IsValidIndex(Index)) throw std::out_of_range("Index was out of range!"); } + + public: + inline int32 NumAllocated() const { return Elements.NumAllocated(); } + + inline int32 Num() const { return Elements.Num(); } + inline int32 Max() const { return Elements.Max(); } + + inline bool IsValidIndex(int32 Index) const { return Elements.IsValidIndex(Index); } + + inline bool IsValid() const { return Elements.IsValid(); } + + public: + const ContainerImpl::FBitArray& GetAllocationFlags() const { return Elements.GetAllocationFlags(); } + + public: + inline decltype(auto) Find(const KeyElementType& Key, bool(*Equals)(const KeyElementType& LeftKey, const KeyElementType& RightKey)) + { + for (auto It = begin(*this); It != end(*this); ++It) + { + if (Equals(It->Key(), Key)) + return It; + } + + return end(*this); + } + + public: + inline ElementType& operator[] (int32 Index) { return Elements[Index]; } + inline const ElementType& operator[] (int32 Index) const { return Elements[Index]; } + + inline bool operator==(const TMap& Other) const { return Elements == Other.Elements; } + inline bool operator!=(const TMap& Other) const { return Elements != Other.Elements; } + + public: + template friend Iterators::TMapIterator begin(const TMap& Map); + template friend Iterators::TMapIterator end (const TMap& Map); + }; + + namespace Iterators + { + class FRelativeBitReference + { + protected: + static constexpr int32 NumBitsPerDWORD = 32; + static constexpr int32 NumBitsPerDWORDLogTwo = 5; + + public: + inline explicit FRelativeBitReference(int32 BitIndex) + : WordIndex(BitIndex >> NumBitsPerDWORDLogTwo) + , Mask(1 << (BitIndex & (NumBitsPerDWORD - 1))) + { + } + + int32 WordIndex; + uint32 Mask; + }; + + class FSetBitIterator : public FRelativeBitReference + { + private: + const ContainerImpl::FBitArray& Array; + + uint32 UnvisitedBitMask; + int32 CurrentBitIndex; + int32 BaseBitIndex; + + public: + explicit FSetBitIterator(const ContainerImpl::FBitArray& InArray, int32 StartIndex = 0) + : FRelativeBitReference(StartIndex) + , Array(InArray) + , UnvisitedBitMask((~0U) << (StartIndex & (NumBitsPerDWORD - 1))) + , CurrentBitIndex(StartIndex) + , BaseBitIndex(StartIndex & ~(NumBitsPerDWORD - 1)) + { + if (StartIndex != Array.Num()) + FindFirstSetBit(); + } + + public: + inline FSetBitIterator& operator++() + { + UnvisitedBitMask &= ~this->Mask; + + FindFirstSetBit(); + + return *this; + } + + inline explicit operator bool() const { return CurrentBitIndex < Array.Num(); } + + inline bool operator==(const FSetBitIterator& Rhs) const { return CurrentBitIndex == Rhs.CurrentBitIndex && &Array == &Rhs.Array; } + inline bool operator!=(const FSetBitIterator& Rhs) const { return CurrentBitIndex != Rhs.CurrentBitIndex || &Array != &Rhs.Array; } + + public: + inline int32 GetIndex() { return CurrentBitIndex; } + + void FindFirstSetBit() + { + const uint32* ArrayData = Array.GetData(); + const int32 ArrayNum = Array.Num(); + const int32 LastWordIndex = (ArrayNum - 1) / NumBitsPerDWORD; + + uint32 RemainingBitMask = ArrayData[this->WordIndex] & UnvisitedBitMask; + while (!RemainingBitMask) + { + ++this->WordIndex; + BaseBitIndex += NumBitsPerDWORD; + if (this->WordIndex > LastWordIndex) + { + CurrentBitIndex = ArrayNum; + return; + } + + RemainingBitMask = ArrayData[this->WordIndex]; + UnvisitedBitMask = ~0; + } + + const uint32 NewRemainingBitMask = RemainingBitMask & (RemainingBitMask - 1); + + this->Mask = NewRemainingBitMask ^ RemainingBitMask; + + CurrentBitIndex = BaseBitIndex + NumBitsPerDWORD - 1 - ContainerImpl::HelperFunctions::CountLeadingZeros(this->Mask); + + if (CurrentBitIndex > ArrayNum) + CurrentBitIndex = ArrayNum; + } + }; + + template + class TArrayIterator + { + private: + TArray& IteratedArray; + int32 Index; + + public: + TArrayIterator(const TArray& Array, int32 StartIndex = 0x0) + : IteratedArray(const_cast&>(Array)), Index(StartIndex) + { + } + + public: + inline int32 GetIndex() { return Index; } + + inline int32 IsValid() { return IteratedArray.IsValidIndex(GetIndex()); } + + public: + inline TArrayIterator& operator++() { ++Index; return *this; } + inline TArrayIterator& operator--() { --Index; return *this; } + + inline ArrayType& operator*() { return IteratedArray[GetIndex()]; } + inline const ArrayType& operator*() const { return IteratedArray[GetIndex()]; } + + inline ArrayType* operator->() { return &IteratedArray[GetIndex()]; } + inline const ArrayType* operator->() const { return &IteratedArray[GetIndex()]; } + + inline bool operator==(const TArrayIterator& Other) const { return &IteratedArray == &Other.IteratedArray && Index == Other.Index; } + inline bool operator!=(const TArrayIterator& Other) const { return &IteratedArray != &Other.IteratedArray || Index != Other.Index; } + }; + + template + class TContainerIterator + { + private: + ContainerType& IteratedContainer; + FSetBitIterator BitIterator; + + public: + TContainerIterator(const ContainerType& Container, const ContainerImpl::FBitArray& BitArray, int32 StartIndex = 0x0) + : IteratedContainer(const_cast(Container)), BitIterator(BitArray, StartIndex) + { + } + + public: + inline int32 GetIndex() { return BitIterator.GetIndex(); } + + inline int32 IsValid() { return IteratedContainer.IsValidIndex(GetIndex()); } + + public: + inline TContainerIterator& operator++() { ++BitIterator; return *this; } + inline TContainerIterator& operator--() { --BitIterator; return *this; } + + inline auto& operator*() { return IteratedContainer[GetIndex()]; } + inline const auto& operator*() const { return IteratedContainer[GetIndex()]; } + + inline auto* operator->() { return &IteratedContainer[GetIndex()]; } + inline const auto* operator->() const { return &IteratedContainer[GetIndex()]; } + + inline bool operator==(const TContainerIterator& Other) const { return &IteratedContainer == &Other.IteratedContainer && BitIterator == Other.BitIterator; } + inline bool operator!=(const TContainerIterator& Other) const { return &IteratedContainer != &Other.IteratedContainer || BitIterator != Other.BitIterator; } + }; + } + + inline Iterators::FSetBitIterator begin(const ContainerImpl::FBitArray& Array) { return Iterators::FSetBitIterator(Array, 0); } + inline Iterators::FSetBitIterator end (const ContainerImpl::FBitArray& Array) { return Iterators::FSetBitIterator(Array, Array.Num()); } + + template inline Iterators::TArrayIterator begin(const TArray& Array) { return Iterators::TArrayIterator(Array, 0); } + template inline Iterators::TArrayIterator end (const TArray& Array) { return Iterators::TArrayIterator(Array, Array.Num()); } + + template inline Iterators::TSparseArrayIterator begin(const TSparseArray& Array) { return Iterators::TSparseArrayIterator(Array, Array.GetAllocationFlags(), 0); } + template inline Iterators::TSparseArrayIterator end (const TSparseArray& Array) { return Iterators::TSparseArrayIterator(Array, Array.GetAllocationFlags(), Array.NumAllocated()); } + + template inline Iterators::TSetIterator begin(const TSet& Set) { return Iterators::TSetIterator(Set, Set.GetAllocationFlags(), 0); } + template inline Iterators::TSetIterator end (const TSet& Set) { return Iterators::TSetIterator(Set, Set.GetAllocationFlags(), Set.NumAllocated()); } + + template inline Iterators::TMapIterator begin(const TMap& Map) { return Iterators::TMapIterator(Map, Map.GetAllocationFlags(), 0); } + template inline Iterators::TMapIterator end (const TMap& Map) { return Iterators::TMapIterator(Map, Map.GetAllocationFlags(), Map.NumAllocated()); } + +#if defined(_WIN64) + static_assert(sizeof(TArray) == 0x10, "TArray has a wrong size!"); + static_assert(sizeof(TSet) == 0x50, "TSet has a wrong size!"); + static_assert(sizeof(TMap) == 0x50, "TMap has a wrong size!"); +#elif defined(_WIN32) + static_assert(sizeof(TArray) == 0x0C, "TArray has a wrong size!"); + static_assert(sizeof(TSet) == 0x3C, "TSet has a wrong size!"); + static_assert(sizeof(TMap) == 0x3C, "TMap has a wrong size!"); +#endif +} diff --git a/TormentedSouls2/UtfN.hpp b/TormentedSouls2/UtfN.hpp new file mode 100644 index 0000000..0feb7d7 --- /dev/null +++ b/TormentedSouls2/UtfN.hpp @@ -0,0 +1,1613 @@ +#pragma once + +/* +* SDK generated by Dumper-7 +* +* https://github.com/Encryqed/Dumper-7 +*/ + +// A simple C++ lib for converting between Utf8, Utf16 and Utf32. See https://github.com/Fischsalat/UTF-N + + +// Lower warning-level and turn off certain warnings for STL compilation +#if (defined(_MSC_VER)) +#pragma warning (push, 2) // Push warnings and set warn-level to 2 +#pragma warning(disable : 4365) // signed/unsigned mismatch +#pragma warning(disable : 4710) // 'FunctionName' was not inlined +#pragma warning(disable : 4711) // 'FunctionName' selected for automatic inline expansion +#elif (defined(__CLANG__) || defined(__GNUC__)) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wsign-compare" +#endif + +#include +#include +#include +#include + +#ifdef _DEBUG +#include +#endif // _DEBUG + + +// Restore warnings-levels after STL includes +#if (defined(_MSC_VER)) +#pragma warning (pop) +#elif (defined(__CLANG__) || defined(__GNUC__)) +#pragma GCC diagnostic pop +#endif // Warnings + + + +#if (defined(_MSC_VER)) +#pragma warning (push) +#pragma warning (disable: 4514) // C4514 "unreferenced inline function has been removed" +#pragma warning (disable: 4820) // C4820 "'n' bytes padding added after data member '...'" +#pragma warning(disable : 4127) // C4127 conditional expression is constant +#pragma warning(disable : 5045) // C5045 Compiler will insert Spectre mitigation for memory load if /Qspectre switch specified +#pragma warning(disable : 5246) // C5246 'ArrayVariable' the initialization of a subobject should be wrapped in braces +#elif (defined(__CLANG__) || defined(__GNUC__)) +#endif // Warnings + +#ifdef __cpp_constexpr +#define UTF_CONSTEXPR constexpr +#else +#define UTF_CONSTEXPR +#endif // __cpp_constexpr + + +#ifdef __cpp_if_constexpr +#define UTF_IF_CONSTEXPR constexpr +#else +#define UTF_IF_CONSTEXPR +#endif // __cpp_if_constexpr + + +#if (defined(__cpp_constexpr) && __cpp_constexpr >= 201304L) +#define UTF_CONSTEXPR14 constexpr +#else +#define UTF_CONSTEXPR14 +#endif + +#if (defined(__cpp_constexpr) && __cpp_constexpr >= 201603L) +#define UTF_CONSTEXPR17 constexpr +#else +#define UTF_CONSTEXPR17 inline +#endif + +#if (defined(__cpp_constexpr) && __cpp_constexpr >= 201907L) +#define UTF_CONSTEXPR20 constexpr +#else +#define UTF_CONSTEXPR20 inline +#endif + +#if (defined(__cpp_constexpr) && __cpp_constexpr >= 202211L) +#define UTF_CONSTEXPR23 constexpr +#else +#define UTF_CONSTEXPR23 inline +#endif + +#if (defined(__cpp_constexpr) && __cpp_constexpr >= 202406L) +#define UTF_CONSTEXPR26 constexpr +#else +#define UTF_CONSTEXPR26 inline +#endif + + +#ifdef __cpp_nodiscard +#define UTF_NODISCARD [[nodiscard]] +#else +#define UTF_NODISCARD +#endif + + +namespace UtfN +{ +#if defined(__cpp_char8_t) + typedef char8_t utf_cp8_t; + typedef char16_t utf_cp16_t; + typedef char32_t utf_cp32_t; +#elif defined(__cpp_unicode_characters) + typedef unsigned char utf_cp8_t; + typedef char16_t utf_cp16_t; + typedef char32_t utf_cp32_t; +#else + typedef unsigned char utf_cp8_t; + typedef uint16_t utf_cp16_t; + typedef uint32_t utf_cp32_t; +#endif + + namespace UtfImpl + { + namespace Utils + { + template + UTF_CONSTEXPR UTF_NODISCARD + bool IsFlagSet(value_type Value, flag_type Flag) noexcept + { + return (Value & Flag) == Flag; + } + + template + UTF_CONSTEXPR UTF_NODISCARD + value_type GetWithClearedFlag(value_type Value, flag_type Flag) noexcept + { + return static_cast(Value & static_cast(~Flag)); + } + + // Does not add/remove cv-qualifiers + template + UTF_CONSTEXPR UTF_NODISCARD + auto ForceCastIfMissmatch(current_type&& Arg) -> std::enable_if_t, std::decay_t>::value, current_type> + { + return static_cast(Arg); + } + + // Does not add/remove cv-qualifiers + template + UTF_CONSTEXPR UTF_NODISCARD + auto ForceCastIfMissmatch(current_type&& Arg) -> std::enable_if_t, std::decay_t>::value, target_type> + { + return reinterpret_cast(Arg); + } + } + + // wchar_t is a utf16 codepoint on windows, utf32 on linux + UTF_CONSTEXPR bool IsWCharUtf32 = sizeof(wchar_t) == 0x4; + + // Any value greater than this is not a valid Unicode symbol + UTF_CONSTEXPR utf_cp32_t MaxValidUnicodeChar = 0x10FFFF; + + namespace Utf8 + { + /* + * Available bits, and max values, for n-byte utf8 characters + * + * 01111111 -> 1 byte -> 7 bits + * 11011111 -> 2 bytes -> 5 + 6 bits -> 11 bits + * 11101111 -> 3 bytes -> 4 + 6 + 6 bits -> 16 bits + * 11110111 -> 4 bytes -> 3 + 6 + 6 + 6 bits -> 21 bits + * + * 10111111 -> follow up byte + */ + UTF_CONSTEXPR utf_cp32_t Max1ByteValue = (1 << 7) - 1; // 7 bits available + UTF_CONSTEXPR utf_cp32_t Max2ByteValue = (1 << 11) - 1; // 11 bits available + UTF_CONSTEXPR utf_cp32_t Max3ByteValue = (1 << 16) - 1; // 16 bits available + UTF_CONSTEXPR utf_cp32_t Max4ByteValue = 0x10FFFF; // 21 bits available, but not fully used + + // Flags for follow-up bytes of multibyte utf8 character + UTF_CONSTEXPR utf_cp8_t FollowupByteMask = 0b1000'0000; + UTF_CONSTEXPR utf_cp8_t FollowupByteDataMask = 0b0011'1111; + UTF_CONSTEXPR utf_cp8_t NumDataBitsInFollowupByte = 0x6; + + // Flags for start-bytes of multibyte utf8 characters + UTF_CONSTEXPR utf_cp8_t TwoByteFlag = 0b1100'0000; + UTF_CONSTEXPR utf_cp8_t ThreeByteFlag = 0b1110'0000; + UTF_CONSTEXPR utf_cp8_t FourByteFlag = 0b1111'0000; + + UTF_CONSTEXPR UTF_NODISCARD + bool IsValidFollowupCodepoint(const utf_cp8_t Codepoint) noexcept + { + // Test the upper 2 bytes for the FollowupByteMask + return (Codepoint & 0b1100'0000) == FollowupByteMask; + } + + template + UTF_CONSTEXPR UTF_NODISCARD + bool IsValidUtf8Sequence(const utf_cp8_t FirstCp, const utf_cp8_t SecondCp, const utf_cp8_t ThirdCp, const utf_cp8_t FourthCp) noexcept + { + switch (ByteSize) + { + case 1: + { + return SecondCp == 0 && ThirdCp == 0 && FourthCp == 0; + } + case 4: + { + const bool bIsOverlongEncoding = Utils::GetWithClearedFlag(FirstCp, ~Utf8::TwoByteFlag) != 0 && SecondCp == Utf8::FollowupByteMask; + return !bIsOverlongEncoding && IsValidFollowupCodepoint(SecondCp) && IsValidFollowupCodepoint(ThirdCp) && IsValidFollowupCodepoint(FourthCp); + } + case 3: + { + const bool bIsOverlongEncoding = Utils::GetWithClearedFlag(FirstCp, ~Utf8::ThreeByteFlag) != 0 && SecondCp == Utf8::FollowupByteMask; + return !bIsOverlongEncoding && IsValidFollowupCodepoint(SecondCp) && IsValidFollowupCodepoint(ThirdCp) && FourthCp == 0; + } + case 2: + { + const bool bIsOverlongEncoding = Utils::GetWithClearedFlag(FirstCp, ~Utf8::FourByteFlag) != 0 && SecondCp == Utf8::FollowupByteMask; + return !bIsOverlongEncoding && IsValidFollowupCodepoint(SecondCp) && ThirdCp == 0 && FourthCp == 0; + } + default: + { + return false; + break; + } + } + } + } + + namespace Utf16 + { + // Surrogate masks and offset for multibyte utf16 characters + UTF_CONSTEXPR utf_cp16_t HighSurrogateRangeStart = 0xD800; + UTF_CONSTEXPR utf_cp16_t LowerSurrogateRangeStart = 0xDC00; + + UTF_CONSTEXPR utf_cp32_t SurrogatePairOffset = 0x10000; + + // Unicode range for 2byte utf16 values + UTF_CONSTEXPR utf_cp32_t SurrogateRangeLowerBounds = 0xD800; + UTF_CONSTEXPR utf_cp32_t SurrogateRangeUpperBounds = 0xDFFF; + + + UTF_CONSTEXPR UTF_NODISCARD + bool IsHighSurrogate(const utf_cp16_t Codepoint) noexcept + { + // Range [0xD800 - 0xDC00[ + return Codepoint >= HighSurrogateRangeStart && Codepoint < LowerSurrogateRangeStart; + } + UTF_CONSTEXPR UTF_NODISCARD + bool IsLowSurrogate(const utf_cp16_t Codepoint) noexcept + { + // Range [0xDC00 - 0xDFFF] + return Codepoint >= LowerSurrogateRangeStart && Codepoint <= SurrogateRangeUpperBounds; + } + + // Tests if a utf16 value is a valid Unicode character + UTF_CONSTEXPR UTF_NODISCARD + bool IsValidUnicodeChar(const utf_cp16_t LowerCodepoint, const utf_cp16_t UpperCodepoint) noexcept + { + const bool IsValidHighSurrogate = IsHighSurrogate(UpperCodepoint); + const bool IsValidLowSurrogate = IsLowSurrogate(LowerCodepoint); + + // Both needt to be valid + if (IsValidHighSurrogate) + return IsValidLowSurrogate; + + // Neither are valid && the codepoints are not in the wrong surrogate ranges + return !IsValidLowSurrogate && !IsHighSurrogate(LowerCodepoint) && !IsLowSurrogate(UpperCodepoint); + } + } + + namespace Utf32 + { + // Tests if a utf32 value is a valid Unicode character + UTF_CONSTEXPR UTF_NODISCARD + bool IsValidUnicodeChar(const utf_cp32_t Codepoint) noexcept + { + // Codepoints must be within the valid unicode range and must not be within the range of Surrogate-values + return Codepoint < MaxValidUnicodeChar && (Codepoint < Utf16::SurrogateRangeLowerBounds || Codepoint > Utf16::SurrogateRangeUpperBounds); + } + } + + namespace Iterator + { + template + class utf_char_iterator_base_child_acessor + { + private: + template + friend class utf_char_iterator_base; + + private: + static UTF_CONSTEXPR + void ReadChar(child_type* This) + { + return This->ReadChar(); + } + }; + + template + class utf_char_iterator_base + { + public: + UTF_CONSTEXPR utf_char_iterator_base(codepoint_iterator_type Begin, codepoint_iterator_type End) + : CurrentIterator(Begin), NextCharStartIterator(Begin), EndIterator(End) + { + utf_char_iterator_base_child_acessor::ReadChar(static_cast(this)); + } + + template())), // Has begin + typename = decltype(std::end(std::declval())), // Has end + typename iterator_deref_type = decltype(*std::end(std::declval())), // Iterator can be dereferenced + typename = std::enable_if::type) == utf_char_type::GetCodepointSize()>::type // Return-value of derferenced iterator has the same size as one codepoint + > + explicit UTF_CONSTEXPR utf_char_iterator_base(container_type& Container) + : CurrentIterator(std::begin(Container)), NextCharStartIterator(std::begin(Container)), EndIterator(std::end(Container)) + { + utf_char_iterator_base_child_acessor::ReadChar(static_cast(this)); + } + + public: + UTF_CONSTEXPR inline + child_iterator_type& operator++() + { + // Skip ahead to the next char + CurrentIterator = NextCharStartIterator; + + // Populate the current char and advance the NextCharStartIterator + utf_char_iterator_base_child_acessor::ReadChar(static_cast(this)); + + + return *static_cast(this); + } + + public: + UTF_CONSTEXPR inline + utf_char_type operator*() const + { + return CurrentChar; + } + + UTF_CONSTEXPR inline bool operator==(const child_iterator_type& Other) const + { + return CurrentIterator == Other.CurrentIterator; + } + UTF_CONSTEXPR inline + bool operator!=(const child_iterator_type& Other) const + { + return CurrentIterator != Other.CurrentIterator; + } + + UTF_CONSTEXPR inline + explicit operator bool() const + { + return this->CurrentIterator != this->EndIterator; + } + + public: + UTF_CONSTEXPR inline + child_iterator_type begin() + { + return *static_cast(this); + } + + UTF_CONSTEXPR inline + child_iterator_type end() + { + return child_iterator_type(EndIterator, EndIterator); + } + + protected: + codepoint_iterator_type CurrentIterator; // Current byte pos + codepoint_iterator_type NextCharStartIterator; // Byte pos of the next character + codepoint_iterator_type EndIterator; // End Iterator + + utf_char_type CurrentChar; // Current character bytes + }; + } + } + + struct utf8_bytes + { + utf_cp8_t Codepoints[4] = { 0 }; + }; + + struct utf16_pair + { + utf_cp16_t Lower = 0; + utf_cp16_t Upper = 0; + }; + + UTF_CONSTEXPR inline + bool operator==(const utf8_bytes Left, const utf8_bytes Right) noexcept + { + return Left.Codepoints[0] == Right.Codepoints[0] + && Left.Codepoints[1] == Right.Codepoints[1] + && Left.Codepoints[2] == Right.Codepoints[2] + && Left.Codepoints[3] == Right.Codepoints[3]; + } + UTF_CONSTEXPR inline + bool operator!=(const utf8_bytes Left, const utf8_bytes Right) noexcept + { + return !(Left == Right); + } + + UTF_CONSTEXPR inline + bool operator==(const utf16_pair Left, const utf16_pair Right) noexcept + { + return Left.Upper == Right.Upper && Left.Lower == Right.Lower; + } + UTF_CONSTEXPR inline + bool operator!=(const utf16_pair Left, const utf16_pair Right) noexcept + { + return !(Left == Right); + } + + + enum class UtfEncodingType + { + Invalid, + Utf8, + Utf16, + Utf32 + }; + + template + struct utf_char; + + typedef utf_char utf_char8; + typedef utf_char utf_char16; + typedef utf_char utf_char32; + + template<> + struct utf_char + { + utf8_bytes Char = { 0 }; + + public: + UTF_CONSTEXPR utf_char() = default; + UTF_CONSTEXPR utf_char(utf_char&&) = default; + UTF_CONSTEXPR utf_char(const utf_char&) = default; + + UTF_CONSTEXPR utf_char(utf8_bytes InChar) noexcept; + + template()))> + UTF_CONSTEXPR utf_char(const char_type* SingleCharString) noexcept; + + public: + UTF_CONSTEXPR utf_char& operator=(utf_char&&) = default; + UTF_CONSTEXPR utf_char& operator=(const utf_char&) = default; + + UTF_CONSTEXPR utf_char& operator=(utf8_bytes inBytse) noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD utf_cp8_t& operator[](const uint8_t Index); + UTF_CONSTEXPR UTF_NODISCARD const utf_cp8_t& operator[](const uint8_t Index) const; + + UTF_CONSTEXPR UTF_NODISCARD bool operator==(utf_char8 Other) const noexcept; + UTF_CONSTEXPR UTF_NODISCARD bool operator!=(utf_char8 Other) const noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD utf_char8 GetAsUtf8() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char16 GetAsUtf16() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char32 GetAsUtf32() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD utf8_bytes Get() const; + + UTF_CONSTEXPR UTF_NODISCARD UtfEncodingType GetEncoding() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD uint8_t GetNumCodepoints() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD static uint8_t GetCodepointSize() noexcept; + }; + + template<> + struct utf_char + { + utf16_pair Char = { 0 }; + + public: + UTF_CONSTEXPR utf_char() = default; + UTF_CONSTEXPR utf_char(utf_char&&) = default; + UTF_CONSTEXPR utf_char(const utf_char&) = default; + + UTF_CONSTEXPR utf_char(utf16_pair InChar) noexcept; + + template()))> + UTF_CONSTEXPR utf_char(const char_type* SingleCharString) noexcept; + + public: + UTF_CONSTEXPR utf_char& operator=(utf_char&&) = default; + UTF_CONSTEXPR utf_char& operator=(const utf_char&) = default; + + UTF_CONSTEXPR utf_char& operator=(utf16_pair inBytse) noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD bool operator==(utf_char16 Other) const noexcept; + UTF_CONSTEXPR UTF_NODISCARD bool operator!=(utf_char16 Other) const noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD utf_char8 GetAsUtf8() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char16 GetAsUtf16() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char32 GetAsUtf32() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD utf16_pair Get() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD UtfEncodingType GetEncoding() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD uint8_t GetNumCodepoints() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD static uint8_t GetCodepointSize() noexcept; + }; + + template<> + struct utf_char + { + utf_cp32_t Char = { 0 }; + + public: + UTF_CONSTEXPR utf_char() = default; + UTF_CONSTEXPR utf_char(utf_char&&) = default; + UTF_CONSTEXPR utf_char(const utf_char&) = default; + + UTF_CONSTEXPR utf_char(utf_cp32_t InChar) noexcept; + + template()))> + UTF_CONSTEXPR utf_char(const char_type* SingleCharString) noexcept; + + public: + UTF_CONSTEXPR utf_char& operator=(utf_char&&) = default; + UTF_CONSTEXPR utf_char& operator=(const utf_char&) = default; + + UTF_CONSTEXPR utf_char& operator=(utf_cp32_t inBytse) noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD bool operator==(utf_char32 Other) const noexcept; + UTF_CONSTEXPR UTF_NODISCARD bool operator!=(utf_char32 Other) const noexcept; + + public: + UTF_CONSTEXPR UTF_NODISCARD utf_char8 GetAsUtf8() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char16 GetAsUtf16() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD utf_char32 GetAsUtf32() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD utf_cp32_t Get() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD UtfEncodingType GetEncoding() const noexcept; + UTF_CONSTEXPR UTF_NODISCARD uint8_t GetNumCodepoints() const noexcept; + + UTF_CONSTEXPR UTF_NODISCARD static uint8_t GetCodepointSize() noexcept; + }; + + UTF_CONSTEXPR UTF_NODISCARD + uint8_t GetUtf8CharLenght(const utf_cp8_t C) noexcept + { + using namespace UtfImpl; + + /* No flag for any other byte-count is set */ + if ((C & 0b1000'0000) == 0) + { + return 0x1; + } + else if (Utils::IsFlagSet(C, Utf8::FourByteFlag)) + { + return 0x4; + } + else if (Utils::IsFlagSet(C, Utf8::ThreeByteFlag)) + { + return 0x3; + } + else if (Utils::IsFlagSet(C, Utf8::TwoByteFlag)) + { + return 0x2; + } + else + { + /* Invalid! This is a follow up codepoint but conversion needs to start at the start-codepoint. */ + return 0x0; + } + } + + UTF_CONSTEXPR UTF_NODISCARD + uint8_t GetUtf16CharLenght(const utf_cp16_t UpperCodepoint) noexcept + { + if (UtfImpl::Utf16::IsHighSurrogate(UpperCodepoint)) + return 0x2; + + return 0x1; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 Utf32ToUtf16Pair(const utf_char32 Character) noexcept + { + using namespace UtfImpl; + + if (!Utf32::IsValidUnicodeChar(Character.Char)) + return utf16_pair{}; + + utf16_pair RetCharPair; + + if (Character.Char > USHRT_MAX) + { + const utf_cp32_t PreparedCodepoint = Character.Char - Utf16::SurrogatePairOffset; + + RetCharPair.Upper = (PreparedCodepoint >> 10) & 0b1111111111; + RetCharPair.Lower = PreparedCodepoint & 0b1111111111; + + // Surrogate-pair starting ranges for higher/lower surrogates + RetCharPair.Upper += Utf16::HighSurrogateRangeStart; + RetCharPair.Lower += Utf16::LowerSurrogateRangeStart; + + return RetCharPair; + } + + RetCharPair.Lower = static_cast(Character.Char); + + return RetCharPair; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char32 Utf16PairToUtf32(const utf_char16 Character) noexcept + { + using namespace UtfImpl; + + // The surrogate-values are not valid Unicode codepoints + if (!Utf16::IsValidUnicodeChar(Character.Char.Lower, Character.Char.Upper)) + return utf_cp32_t{ 0 }; + + if (Character.Char.Upper) + { + // Move the characters back from the surrogate range to the normal range + const utf_cp16_t UpperCodepointWithoutSurrogate = static_cast(Character.Char.Upper - Utf16::HighSurrogateRangeStart); + const utf_cp16_t LowerCodepointWithoutSurrogate = static_cast(Character.Char.Lower - Utf16::LowerSurrogateRangeStart); + + return ((static_cast(UpperCodepointWithoutSurrogate) << 10) | LowerCodepointWithoutSurrogate) + Utf16::SurrogatePairOffset; + } + + return Character.Char.Lower; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 Utf32ToUtf8Bytes(const utf_char32 Character) noexcept + { + using namespace UtfImpl; + using namespace UtfImpl::Utf8; + + if (!Utf32::IsValidUnicodeChar(Character.Char)) + return utf_char8{}; + + utf8_bytes RetBytes; + + if (Character.Char <= Max1ByteValue) + { + RetBytes.Codepoints[0] = static_cast(Character.Char); + } + else if (Character.Char <= Max2ByteValue) + { + /* Upper 3 bits of first byte are reserved for byte-lengh. */ + RetBytes.Codepoints[0] = TwoByteFlag; + RetBytes.Codepoints[0] |= Character.Char >> NumDataBitsInFollowupByte; // Lower bits stored in 2nd byte + + RetBytes.Codepoints[1] |= FollowupByteMask; + RetBytes.Codepoints[1] |= Character.Char & FollowupByteDataMask; + } + else if (Character.Char <= Max3ByteValue) + { + /* Upper 4 bits of first byte are reserved for byte-lengh. */ + RetBytes.Codepoints[0] = ThreeByteFlag; + RetBytes.Codepoints[0] |= Character.Char >> (NumDataBitsInFollowupByte * 2); // Lower bits stored in 2nd and 3rd bytes + + RetBytes.Codepoints[1] = FollowupByteMask; + RetBytes.Codepoints[1] |= (Character.Char >> NumDataBitsInFollowupByte) & FollowupByteDataMask; // Lower bits stored in 2nd byte + + RetBytes.Codepoints[2] = FollowupByteMask; + RetBytes.Codepoints[2] |= Character.Char & FollowupByteDataMask; + } + else if (Character.Char <= Max4ByteValue) + { + /* Upper 5 bits of first byte are reserved for byte-lengh. */ + RetBytes.Codepoints[0] = FourByteFlag; + RetBytes.Codepoints[0] |= Character.Char >> (NumDataBitsInFollowupByte * 3); // Lower bits stored in 2nd, 3rd and 4th bytes + + RetBytes.Codepoints[1] = FollowupByteMask; + RetBytes.Codepoints[1] |= (Character.Char >> (NumDataBitsInFollowupByte * 2)) & FollowupByteDataMask; // Lower bits stored in 3rd and 4th bytes + + RetBytes.Codepoints[2] = FollowupByteMask; + RetBytes.Codepoints[2] |= (Character.Char >> NumDataBitsInFollowupByte) & FollowupByteDataMask; // Lower bits stored in 4th byte + + RetBytes.Codepoints[3] = FollowupByteMask; + RetBytes.Codepoints[3] |= Character.Char & FollowupByteDataMask; + } + else + { + /* Above max allowed value. Invalid codepoint. */ + return RetBytes; + } + + return RetBytes; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_cp32_t Utf8BytesToUtf32(const utf_char8 Character) noexcept + { + using namespace UtfImpl; + using namespace UtfImpl::Utf8; + + /* No flag for any other byte-count is set */ + if ((Character[0] & 0b1000'0000) == 0) + { + if (!Utf8::IsValidUtf8Sequence<1>(Character[0], Character[1], Character[2], Character[3])) // Verifies encoding + return utf_cp32_t{ 0 }; + + return Character[0]; + } + else if (Utils::IsFlagSet(Character[0], FourByteFlag)) + { + utf_cp32_t RetChar = Utils::GetWithClearedFlag(Character[3], FollowupByteMask); + RetChar |= Utils::GetWithClearedFlag(Character[2], FollowupByteMask) << (NumDataBitsInFollowupByte * 1); // Clear the FollowupByteMask and move the bits to the right position + RetChar |= Utils::GetWithClearedFlag(Character[1], FollowupByteMask) << (NumDataBitsInFollowupByte * 2); // Clear the FollowupByteMask and move the bits to the right position + RetChar |= Utils::GetWithClearedFlag(Character[0], FourByteFlag) << (NumDataBitsInFollowupByte * 3); // Clear the FourByteFlag and move the bits to the right position + + if (!Utf8::IsValidUtf8Sequence<4>(Character[0], Character[1], Character[2], Character[3]) // Verifies encoding + || !Utf32::IsValidUnicodeChar(RetChar)) // Verifies ranges + return utf_cp32_t{ 0 }; + + return RetChar; + } + else if (Utils::IsFlagSet(Character[0], ThreeByteFlag)) + { + utf_cp32_t RetChar = Utils::GetWithClearedFlag(Character[2], FollowupByteMask); + RetChar |= Utils::GetWithClearedFlag(Character[1], FollowupByteMask) << (NumDataBitsInFollowupByte * 1); // Clear the FollowupByteMask and move the bits to the right position + RetChar |= Utils::GetWithClearedFlag(Character[0], ThreeByteFlag) << (NumDataBitsInFollowupByte * 2); // Clear the ThreeByteFlag and move the bits to the right position + + if (!Utf8::IsValidUtf8Sequence<3>(Character[0], Character[1], Character[2], Character[3]) // Verifies encoding + || !Utf32::IsValidUnicodeChar(RetChar)) // Verifies ranges + return utf_cp32_t{ 0 }; + + return RetChar; + } + else if (Utils::IsFlagSet(Character[0], TwoByteFlag)) + { + utf_cp32_t RetChar = Utils::GetWithClearedFlag(Character[1], FollowupByteMask); // Clear the FollowupByteMask and move the bits to the right position + RetChar |= Utils::GetWithClearedFlag(Character[0], TwoByteFlag) << NumDataBitsInFollowupByte; // Clear the TwoByteFlag and move the bits to the right position + + if (!Utf8::IsValidUtf8Sequence<2>(Character[0], Character[1], Character[2], Character[3]) // Verifies encoding + || !Utf32::IsValidUnicodeChar(RetChar)) // Verifies ranges + return utf_cp32_t{ 0 }; + + return RetChar; + } + else + { + /* Invalid! This is a follow up codepoint but conversion needs to start at the start-codepoint. */ + return 0; + } + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 Utf16PairToUtf8Bytes(const utf_char16 Character) noexcept + { + return Utf32ToUtf8Bytes(Utf16PairToUtf32(Character)); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 Utf8BytesToUtf16(const utf_char8 Character) noexcept + { + return Utf32ToUtf16Pair(Utf8BytesToUtf32(Character)); + } + + template< + typename codepoint_iterator_type, + typename iterator_deref_type = decltype(*std::declval()), // Iterator can be dereferenced + typename = typename std::enable_if::type) == utf_char8::GetCodepointSize()>::type // Return-value of derferenced iterator has the same size as one codepoint + > + class utf8_iterator : public UtfImpl::Iterator::utf_char_iterator_base, codepoint_iterator_type, utf_char8> + { + private: + typedef typename utf8_iterator own_type; + + friend UtfImpl::Iterator::utf_char_iterator_base_child_acessor; + + public: + using UtfImpl::Iterator::utf_char_iterator_base::utf_char_iterator_base; + + public: + utf8_iterator() = delete; + + private: + void ReadChar() + { + if (this->NextCharStartIterator == this->EndIterator) + return; + + // Reset the bytes of the character + this->CurrentChar = utf8_bytes{ 0 }; + + const int CharCodepointCount = GetUtf8CharLenght(static_cast(*this->NextCharStartIterator)); + + for (int i = 0; i < CharCodepointCount; i++) + { + // The least character ended abruptly + if (this->NextCharStartIterator == this->EndIterator) + { + this->CurrentIterator = this->EndIterator; + this->CurrentChar = utf8_bytes{ 0 }; + break; + } + + this->CurrentChar[static_cast(i)] = static_cast(*this->NextCharStartIterator); + this->NextCharStartIterator++; + } + } + }; + + template< + typename codepoint_iterator_type, + typename iterator_deref_type = decltype(*std::declval()), // Iterator can be dereferenced + typename = typename std::enable_if::type) == utf_char16::GetCodepointSize()>::type // Return-value of derferenced iterator has the same size as one codepoint + > + class utf16_iterator : public UtfImpl::Iterator::utf_char_iterator_base, codepoint_iterator_type, utf_char16> + { + private: + typedef typename utf16_iterator own_type; + + friend UtfImpl::Iterator::utf_char_iterator_base_child_acessor; + + public: + using UtfImpl::Iterator::utf_char_iterator_base::utf_char_iterator_base; + + public: + utf16_iterator() = delete; + + private: + UTF_CONSTEXPR void ReadChar() + { + if (this->NextCharStartIterator == this->EndIterator) + return; + + // Reset the bytes of the character + this->CurrentChar = utf16_pair{ 0 }; + + const int CharCodepointCount = GetUtf16CharLenght(static_cast(*this->NextCharStartIterator)); + + if (CharCodepointCount == 0x1) + { + // Read the only codepoint + this->CurrentChar.Char.Lower = *this->NextCharStartIterator; + this->NextCharStartIterator++; + + return; + } + + // Read the first of two codepoints + this->CurrentChar.Char.Upper = *this->NextCharStartIterator; + this->NextCharStartIterator++; + + // The least character ended abruptly + if (this->NextCharStartIterator == this->EndIterator) + { + this->CurrentChar = utf16_pair{ 0 }; + this->CurrentIterator = this->EndIterator; + return; + } + + // Read the second of two codepoints + this->CurrentChar.Char.Lower = *this->NextCharStartIterator; + this->NextCharStartIterator++; + } + }; + + template< + typename codepoint_iterator_type, + typename iterator_deref_type = decltype(*std::declval()), // Iterator can be dereferenced + typename = typename std::enable_if::type) == utf_char32::GetCodepointSize()>::type // Return-value of derferenced iterator has the same size as one codepoint + > + class utf32_iterator : public UtfImpl::Iterator::utf_char_iterator_base, codepoint_iterator_type, utf_char32> + { + private: + typedef typename utf32_iterator own_type; + + friend UtfImpl::Iterator::utf_char_iterator_base_child_acessor; + + public: + using UtfImpl::Iterator::utf_char_iterator_base::utf_char_iterator_base; + + public: + utf32_iterator() = delete; + + public: + template + auto Replace(const char_type NewChar) -> std::enable_if_t::value> + { + this->CurrentChar = NewChar; + *this->CurrentIterator = NewChar; + } + + private: + void ReadChar() + { + if (this->NextCharStartIterator == this->EndIterator) + return; + + this->CurrentChar = *this->NextCharStartIterator; + this->NextCharStartIterator++; + } + }; + + template::value, int>::type = 0 + > + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 ParseUtf8CharFromStr(const codepoint_type* Str) + { + if (!Str) + return utf8_bytes{}; + + const utf_cp8_t FirstCodepoint = static_cast(Str[0]); + const auto CharLength = GetUtf8CharLenght(FirstCodepoint); + + if (CharLength == 0) + return utf8_bytes{}; + + utf8_bytes RetChar; + RetChar.Codepoints[0] = FirstCodepoint; + + for (int i = 1; i < CharLength; i++) + { + const utf_cp8_t CurrentCodepoint = static_cast(Str[i]); + + // Filters the null-terminator and other invalid followup bytes + if (!UtfImpl::Utf8::IsValidFollowupCodepoint(CurrentCodepoint)) + return utf8_bytes{}; + + RetChar.Codepoints[i] = CurrentCodepoint; + } + + return RetChar; + } + + template::value, int>::type = 0 + > + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 ParseUtf16CharFromStr(const codepoint_type* Str) + { + if (!Str) + return utf_char16{}; + + const utf_cp16_t FirstCodepoint = static_cast(Str[0]); + + if (GetUtf16CharLenght(FirstCodepoint) == 1) + return utf16_pair{ FirstCodepoint }; + + return utf16_pair{ FirstCodepoint, static_cast(Str[1]) }; + } + + template::value, int>::type = 0 + > + UTF_CONSTEXPR UTF_NODISCARD + utf_char32 ParseUtf32CharFromStr(const codepoint_type* Str) + { + if (!Str) + return utf_char32{}; + + return static_cast(Str[0]); + } + + + /* + * Conversions from UTF-16 to UTF-8 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf16StringToUtf8String(utf16_iterator StringIteratorToConvert) + { + utf8_char_string RetString; + + for (const utf_char16 Char : StringIteratorToConvert) + { + const auto NewChar = Utf16PairToUtf8Bytes(Char); + + for (int i = 0; i < NewChar.GetNumCodepoints(); i++) + RetString += static_cast(NewChar[static_cast(i)]); + } + + return RetString; + } + + template())), + typename = utf16_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf16StringToUtf8String(const utf16_char_string& StringToConvert) + { + return Utf16StringToUtf8String(utf16_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf16StringToUtf8String(utf16_char_type(&StringToConvert)[CStrLenght]) + { + return Utf16StringToUtf8String(utf16_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf16StringToUtf8String(const utf16_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf16StringToUtf8String(utf16_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + /* + * Conversions from UTF-32 to UTF-8 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf32StringToUtf8String(utf32_iterator StringIteratorToConvert) + { + utf8_char_string RetString; + + for (const utf_char32 Char : StringIteratorToConvert) + { + const auto NewChar = Utf32ToUtf8Bytes(Char); + + for (int i = 0; i < NewChar.GetNumCodepoints(); i++) + RetString += static_cast(NewChar[static_cast(i)]); + } + + return RetString; + } + + template())), + typename = utf32_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf32StringToUtf8String(const utf32_char_string& StringToConvert) + { + return Utf32StringToUtf8String(utf32_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf32StringToUtf8String(utf32_char_type(&StringToConvert)[cstr_lenght]) + { + return Utf32StringToUtf8String(utf32_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf8_char_string Utf32StringToUtf8String(const utf32_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf32StringToUtf8String(utf32_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + /* + * Conversions from UTF-8 to UTF-16 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf8StringToUtf16String(utf8_iterator StringIteratorToConvert) + { + utf16_char_string RetString; + + for (const utf_char8 Char : StringIteratorToConvert) + { + const auto NewChar = Utf8BytesToUtf16(Char); + + if (NewChar.GetNumCodepoints() > 1) + RetString += NewChar.Get().Upper; + + RetString += NewChar.Get().Lower; + } + + return RetString; + } + + template())), + typename = utf8_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf8StringToUtf16String(const utf8_char_string& StringToConvert) + { + return Utf8StringToUtf16String(utf8_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf8StringToUtf16String(utf8_char_type(&StringToConvert)[cstr_lenght]) + { + return Utf32StringToUtf16String(utf8_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf8StringToUtf16String(const utf8_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf32StringToUtf16String(utf32_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + /* + * Conversions from UTF-32 to UTF-16 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf32StringToUtf16String(utf32_iterator StringIteratorToConvert) + { + utf16_char_string RetString; + + for (const utf_char32 Char : StringIteratorToConvert) + { + const auto NewChar = Utf32ToUtf16Pair(Char); + + if (NewChar.GetNumCodepoints() > 1) + RetString += NewChar.Get().Upper; + + RetString += NewChar.Get().Lower; + } + + return RetString; + } + + template())), + typename = utf32_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf32StringToUtf16String(const utf32_char_string& StringToConvert) + { + return Utf32StringToUtf16String(utf32_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf32StringToUtf16String(utf32_char_type(&StringToConvert)[cstr_lenght]) + { + return Utf32StringToUtf16String(utf32_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf16_char_string Utf32StringToUtf16String(const utf32_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf32StringToUtf16String(utf32_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + /* + * Conversions from UTF-8 to UTF-32 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf8StringToUtf32String(utf8_iterator StringIteratorToConvert) + { + utf32_char_string RetString; + + for (const utf_char8 Char : StringIteratorToConvert) + { + RetString += Utf8BytesToUtf32(Char); + } + + return RetString; + } + + template())), + typename = utf8_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf8StringToUtf32String(const utf8_char_string& StringToConvert) + { + return Utf8StringToUtf32String(utf8_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf8StringToUtf32String(utf8_char_type(&StringToConvert)[cstr_lenght]) + { + return Utf8StringToUtf32String(utf8_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf8StringToUtf32String(const utf8_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf8StringToUtf32String(utf8_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + /* + * Conversions from UTF-16 to UTF-32 + */ + template()))>::type + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf16StringToUtf32String(utf16_iterator StringIteratorToConvert) + { + utf32_char_string RetString; + + for (const utf_char16 Char : StringIteratorToConvert) + { + RetString += Utf16PairToUtf32(Char).Get(); + } + + return RetString; + } + + template())), + typename = utf16_iterator + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf16StringToUtf32String(const utf16_char_string& StringToConvert) + { + return Utf16StringToUtf32String(utf16_iterator(StringToConvert)); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf16StringToUtf32String(utf16_char_type(&StringToConvert)[cstr_lenght]) + { + return Utf16StringToUtf32String(utf16_iterator(std::begin(StringToConvert), std::end(StringToConvert))); + } + + template + > + UTF_CONSTEXPR20 UTF_NODISCARD + utf32_char_string Utf16StringToUtf32String(const utf16_char_type* StringToConvert, int NonNullTermiantedLength) + { + return Utf16StringToUtf32String(utf16_iterator(StringToConvert, StringToConvert + NonNullTermiantedLength)); + } + + + template())), // has 'begin()' + typename = decltype(std::end(std::declval())) // has 'end()' + > + UTF_CONSTEXPR20 UTF_NODISCARD + string_type WStringToString(const wstring_type& WideString) + { + using char_type = typename std::decay()))>::type; + + // Workaround to missing 'if constexpr (...)' in Cpp14. Satisfies the requirements of conversion-functions. Safe because the incorrect function is never going to be invoked. + struct dummy_2byte_str { uint16_t* begin() const { return nullptr; }; uint16_t* end() const { return nullptr; }; }; + struct dummy_4byte_str { uint32_t* begin() const { return nullptr; }; uint32_t* end() const { return nullptr; }; }; + + if UTF_IF_CONSTEXPR (sizeof(char_type) == 0x2) // UTF-16 + { + using type_to_use = typename std::conditional::type; + return Utf16StringToUtf8String(UtfImpl::Utils::ForceCastIfMissmatch(WideString)); + } + else // UTF-32 + { + using type_to_use = typename std::conditional::type; + return Utf32StringToUtf8String(UtfImpl::Utils::ForceCastIfMissmatch(WideString)); + } + } + + template())), // has 'begin()' + typename = decltype(std::end(std::declval())) // has 'end()' + > + UTF_CONSTEXPR20 UTF_NODISCARD + wstring_type StringToWString(const string_type& NarrowString) + { + using char_type = typename std::decay()))>::type; + + // Workaround to missing 'if constexpr (...)' in Cpp14. Satisfies the requirements of conversion-functions. Safe because the incorrect function is never going to be invoked. + struct dummy_2byte_str { uint16_t* begin() const { return nullptr; }; uint16_t* end() const { return nullptr; }; }; + struct dummy_4byte_str { uint32_t* begin() const { return nullptr; }; uint32_t* end() const { return nullptr; }; }; + + if UTF_IF_CONSTEXPR(sizeof(char_type) == 0x2) // UTF-16 + { + using type_to_use = typename std::conditional::type; + return Utf8StringToUtf16String(NarrowString); + } + else // UTF-32 + { + using type_to_use = typename std::conditional::type; + return Utf8StringToUtf32String(NarrowString); + } + } + + + template + UTF_CONSTEXPR byte_iterator_type ReplaceUtf8(byte_iterator_type Begin, byte_iterator_type End, utf_cp8_t CharToReplace, utf_cp8_t ReplacementChar) + { + using namespace UtfImpl; + + if (Begin == End) + return End; + + const auto ToReplaceSize = GetUtf8CharLenght(CharToReplace); + const auto ReplacementSize = GetUtf8CharLenght(ReplacementChar); + + if (ToReplaceSize == ReplacementSize) // Trivial replacement + { + // TODO + } + else if (ToReplaceSize < ReplacementSize) // + { + // TODO + } + else /* if (ToReplaceSize > ReplacementSize) */ // Replace and move following bytes back + { + // TODO + } + } + + // utf_char spezialization-implementation for Utf8 + UTF_CONSTEXPR utf_char::utf_char(utf8_bytes InChar) noexcept + : Char(InChar) + { + } + + template + UTF_CONSTEXPR utf_char::utf_char(const char_type* SingleCharString) noexcept + : utf_char(ParseUtf8CharFromStr(SingleCharString)) + { + } + + UTF_CONSTEXPR utf_char& utf_char::operator=(utf8_bytes inBytse) noexcept + { + Char.Codepoints[0] = inBytse.Codepoints[0]; + Char.Codepoints[1] = inBytse.Codepoints[1]; + Char.Codepoints[2] = inBytse.Codepoints[2]; + Char.Codepoints[3] = inBytse.Codepoints[3]; + + return *this; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator==(utf_char8 Other) const noexcept + { + return Char == Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_cp8_t& utf_char::operator[](const uint8_t Index) + { +#ifdef _DEBUG + if (Index >= 0x4) + throw std::out_of_range("Index was greater than 4!"); +#endif // _DEBUG + return Char.Codepoints[Index]; + } + + UTF_CONSTEXPR UTF_NODISCARD + const utf_cp8_t& utf_char::operator[](const uint8_t Index) const + { +#ifdef _DEBUG + if (Index >= 0x4) + throw std::out_of_range("Index was greater than 4!"); +#endif // _DEBUG + return Char.Codepoints[Index]; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator!=(utf_char8 Other) const noexcept + { + return Char != Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 utf_char::GetAsUtf8() const noexcept + { + return *this; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 utf_char::GetAsUtf16() const noexcept + { + return Utf8BytesToUtf16(*this); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char32 utf_char::GetAsUtf32() const noexcept + { + return Utf8BytesToUtf32(*this); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf8_bytes utf_char::Get() const + { + return Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + UtfEncodingType utf_char::GetEncoding() const noexcept + { + return UtfEncodingType::Utf8; + } + + UTF_CONSTEXPR UTF_NODISCARD + uint8_t utf_char::GetNumCodepoints() const noexcept + { + return GetUtf8CharLenght(Char.Codepoints[0]); + } + + UTF_CONSTEXPR UTF_NODISCARD + /* static */ uint8_t utf_char::GetCodepointSize() noexcept + { + return 0x1; + } + + + + // utf_char spezialization-implementation for Utf8 + UTF_CONSTEXPR utf_char::utf_char(utf16_pair InChar) noexcept + : Char(InChar) + { + } + + template + UTF_CONSTEXPR utf_char::utf_char(const char_type* SingleCharString) noexcept + : utf_char(ParseUtf16CharFromStr(SingleCharString)) + { + } + + UTF_CONSTEXPR utf_char& utf_char::operator=(utf16_pair inBytse) noexcept + { + Char.Upper = inBytse.Upper; + Char.Lower = inBytse.Lower; + + return *this; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator==(utf_char16 Other) const noexcept + { + return Char == Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator!=(utf_char16 Other) const noexcept + { + return Char != Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 utf_char::GetAsUtf8() const noexcept + { + return Utf16PairToUtf8Bytes(Char); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 utf_char::GetAsUtf16() const noexcept + { + return Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char32 utf_char::GetAsUtf32() const noexcept + { + return Utf16PairToUtf32(Char); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf16_pair utf_char::Get() const noexcept + { + return Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + UtfEncodingType utf_char::GetEncoding() const noexcept + { + return UtfEncodingType::Utf16; + } + + UTF_CONSTEXPR UTF_NODISCARD + uint8_t utf_char::GetNumCodepoints() const noexcept + { + return GetUtf16CharLenght(Char.Upper); + } + + UTF_CONSTEXPR UTF_NODISCARD + /* static */ uint8_t utf_char::GetCodepointSize() noexcept + { + return 0x2; + } + + + + // utf_char spezialization-implementation for Utf32 + UTF_CONSTEXPR utf_char::utf_char(utf_cp32_t InChar) noexcept + : Char(InChar) + { + } + + template + UTF_CONSTEXPR utf_char::utf_char(const char_type* SingleCharString) noexcept + : Char(*SingleCharString) + { + } + + UTF_CONSTEXPR utf_char& utf_char::operator=(utf_cp32_t inBytse) noexcept + { + Char = inBytse; + return *this; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator==(utf_char32 Other) const noexcept + { + return Char == Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + bool utf_char::operator!=(utf_char32 Other) const noexcept + { + return Char != Other.Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char8 utf_char::GetAsUtf8() const noexcept + { + return Utf32ToUtf8Bytes(Char); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char16 utf_char::GetAsUtf16() const noexcept + { + return Utf32ToUtf16Pair(Char); + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_char32 utf_char::GetAsUtf32() const noexcept + { + return Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + utf_cp32_t utf_char::Get() const noexcept + { + return Char; + } + + UTF_CONSTEXPR UTF_NODISCARD + UtfEncodingType utf_char::GetEncoding() const noexcept + { + return UtfEncodingType::Utf32; + } + + UTF_CONSTEXPR UTF_NODISCARD + uint8_t utf_char::GetNumCodepoints() const noexcept + { + return 0x1; + } + + UTF_CONSTEXPR UTF_NODISCARD + /* static */ uint8_t utf_char::GetCodepointSize() noexcept + { + return 0x4; + } +} + +#undef UTF_CONSTEXPR +#undef UTF_CONSTEXPR14 +#undef UTF_CONSTEXPR17 +#undef UTF_CONSTEXPR20 +#undef UTF_CONSTEXPR23 +#undef UTF_CONSTEXPR26 + + +// Restore all warnings suppressed for the UTF-N implementation +#if (defined(_MSC_VER)) +#pragma warning (pop) +#elif (defined(__CLANG__) || defined(__GNUC__)) +#pragma GCC diagnostic pop +#endif // Warnings \ No newline at end of file